diff --git a/.github/actions/python-uv-setup/action.yml b/.github/actions/python-uv-setup/action.yml new file mode 100644 index 00000000..6ac9145d --- /dev/null +++ b/.github/actions/python-uv-setup/action.yml @@ -0,0 +1,74 @@ +name: "python-uv-setup" +description: "Common Python + uv setup, deps install, and optional debug" + +inputs: + python-version: + description: "Python version" + required: true + debug: + description: "Enable debug output" + required: false + default: "false" + lockfile: + description: "Lockfile to use" + required: false + default: "uv.lock.cpu" + extras: + description: "Extra dependency set to install" + required: false + default: "cpu" + dependency-groups: + description: "Dependency group to install" + required: false + default: "dev" + +runs: + using: "composite" + steps: + - name: System Dependencies + shell: bash + run: | + sudo apt-get update + sudo apt-get install -y \ + build-essential \ + libcairo2-dev \ + pkg-config \ + python3-dev \ + python3-openssl \ + libopenblas-dev \ + libssl-dev + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ inputs.python-version }} + + - name: Install uv + shell: bash + run: | + python -m pip install --upgrade uv + uv --version + + - name: Cache uv dependencies + uses: actions/cache@v4 + with: + path: ~/.cache/uv + key: ${{ runner.os }}-py${{ inputs.python-version }}-uv-${{ hashFiles('pyproject.toml', 'uv.lock.cpu') }} + restore-keys: | + ${{ runner.os }}-py${{ inputs.python-version }}-uv- + + - name: Install dependencies + shell: bash + run: | + set -euxo pipefail + cp "${{ inputs.lockfile }}" uv.lock + uv venv .venv + . .venv/bin/activate + uv sync --extra "${{ inputs.extras }}" --group "${{ inputs.dependency-groups }}" --locked + + - name: Debug - what is installed + if: ${{ inputs.debug == 'true' }} + shell: bash + run: | + . .venv/bin/activate + uv pip list diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c7d31cb9..ff978b62 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,59 +1,64 @@ +# How to run manually: +# 1. Go to the GitHub repository. +# 2. Click the "Actions" tab. +# 3. Select this workflow, "docker publish". +# 4. Click "Run workflow". +# 5. Choose the desired inputs, then click "Run workflow". + name: docker publish on: - release: - types: [published] + workflow_dispatch: + inputs: + env: + description: "Deployment environment" + required: true + default: "prod" + type: choice + options: + - prod + - staging + target: + description: "Which image(s) to build" + required: true + default: "all" + type: choice + options: + - all + - gpu + - rocm + - cpu-amd64 + - cpu-arm64 jobs: - build-gpu-image: + build-and-push: runs-on: ubuntu-24.04 - steps: - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Log in to DockerHub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Checkout code - uses: actions/checkout@v3 - with: - fetch-depth: 1 + strategy: + fail-fast: false + matrix: + include: + # Uses Dockerfile.gpu + - name: gpu + platform: gpu + arch: "" + # Uses Dockerfile.rocm + - name: rocm + platform: rocm + arch: "" + # Uses Dockerfile.cpu + - name: cpu-amd64 + platform: cpu + arch: "" + # Uses Dockerfile.arm + - name: cpu-arm64 + platform: arm + arch: linux/arm64 - - name: Build and push Docker image (gpu) - run: | - make push-docker - env: - ENV: prod - PLATFORM: gpu - build-cpu-linux-amd64: - runs-on: ubuntu-24.04 steps: - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Log in to DockerHub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} + - name: Set up QEMU + if: ${{ matrix.arch == 'linux/arm64' }} + uses: docker/setup-qemu-action@v3 - - name: Checkout code - uses: actions/checkout@v3 - with: - fetch-depth: 1 - - - name: Build and push Docker image (cpu) - run: | - make push-docker - env: - ENV: prod - PLATFORM: cpu - build-cpu-linux-arm64: - runs-on: ubuntu-24.04 - steps: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -64,14 +69,14 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 - - name: Build and push Docker image (cpu) - run: | - make push-docker + - name: Build and push Docker image + if: ${{ github.event.inputs.target == 'all' || github.event.inputs.target == matrix.name }} + run: make push-docker env: - ARCH: linux/arm64 - ENV: prod - PLATFORM: arm + ENV: ${{ github.event.inputs.env }} + PLATFORM: ${{ matrix.platform }} + ARCH: ${{ matrix.arch }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0be18942..009e3f7d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,9 +7,13 @@ jobs: runs-on: ubuntu-24.04 strategy: matrix: - python-version: ["3.9"] + python-version: ["3.10"] steps: + - name: Update apt cache + run: | + sudo apt-get update || sudo apt-get update --fix-missing + - name: System Dependencies run: | sudo apt install -y build-essential \ @@ -18,30 +22,38 @@ jobs: python3-dev \ python3-openssl - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Cache Python dependencies + - name: Install uv + run: | + python -m pip install --upgrade uv + uv --version + + - name: Cache uv downloads uses: actions/cache@v3 with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('pip/*.txt') }} + path: ~/.cache/uv + key: ${{ runner.os }}-uv-${{ hashFiles('pip/*.txt') }} restore-keys: | - ${{ runner.os }}-pip- + ${{ runner.os }}-uv- - - name: Install dependencies + - name: Create venv run: | - python3.9 -m pip install --upgrade pip - if [ -f pip/cpu_requirements.txt ]; then pip install -r pip/cpu_requirements.txt; fi + uv venv .venv - - name: Install ruff + - name: Install dependencies run: | - python3.9 -m pip install ruff + . .venv/bin/activate + if [ -f pip/cpu_requirements.txt ]; then pip install -r pip/cpu_requirements.txt; fi + uv pip install ruff - name: Lint with ruff run: | # Check all lint rules - python3.9 -m ruff check atomsci/ + . .venv/bin/activate + uv run ruff check atomsci/ diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 00000000..a4f90e24 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,131 @@ +name: Publish Python Package + +# Publish atomsci-ampl to TestPyPI and PyPI +# +# Owner -> ATOMScience-org +# Repository name -> AMPL +# Project -> atomsci-ampl +# +# This workflow is manual only. +# +# Workflow behavior: +# +# 1. Build the package distribution +# 2. Optionally publish to TestPyPI +# 3. Optionally publish to PyPI +# +# How to use: +# +# - Run this workflow manually from the GitHub Actions tab +# - Choose whether to publish to TestPyPI +# - Choose whether to publish to PyPI +# +# Notes: +# +# - Package versions cannot be reused once published +# - For TestPyPI testing, use development version names such as: +# +# 1.2.3.dev1 +# +# - If you want PyPI publication to require approval, configure +# protection rules on the "pypi" environment +# +# Recommended usage: +# +# - TestPyPI only: +# publish_testpypi = true +# publish_pypi = false +# +# - TestPyPI and PyPI: +# publish_testpypi = true +# publish_pypi = true + +on: + workflow_dispatch: + inputs: + publish_testpypi: + description: "Publish to TestPyPI" + required: true + type: boolean + default: true + publish_pypi: + description: "Publish to PyPI" + required: true + type: boolean + default: false + +permissions: + contents: read + +jobs: + # Job 1: Build the source distribution and wheel + build: + name: Build package + runs-on: ubuntu-latest + + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.x" + + - name: Install uv + uses: astral-sh/setup-uv@v4 + + - name: Build sdist and wheel + run: uv build + + - name: Upload dist artifact + uses: actions/upload-artifact@v4 + with: + name: dist + path: dist/ + retention-days: 7 + + # Job 2: Optionally publish to TestPyPI + publish-test: + name: Publish to TestPyPI + runs-on: ubuntu-latest + needs: build + if: ${{ inputs.publish_testpypi }} + environment: testpypi + + steps: + - name: Download dist artifact + uses: actions/download-artifact@v4 + with: + name: dist + path: dist/ + + - name: Publish to TestPyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + repository-url: https://test.pypi.org/legacy/ + user: __token__ + password: ${{ secrets.TEST_PYPI_API_TOKEN }} + + # Job 3: Optionally publish to PyPI + # This runs only if PyPI publishing was selected. + # It also depends on the TestPyPI job, so TestPyPI must be selected too. + publish-pypi: + name: Publish to PyPI + runs-on: ubuntu-latest + needs: publish-test + if: ${{ inputs.publish_testpypi && inputs.publish_pypi }} + environment: pypi + + steps: + - name: Download dist artifact + uses: actions/download-artifact@v4 + with: + name: dist + path: dist/ + + - name: Publish to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + user: __token__ + password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 6ec0bef5..e372a67d 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -1,242 +1,151 @@ name: tests -on: - push: +on: + push: branches: ["**"] pull_request: - types: - - opened - - reopened - - ready_for_review + types: [opened, reopened, ready_for_review] jobs: pytest-unit: runs-on: ubuntu-24.04 + env: + ENV: test + DGLBACKEND: pytorch strategy: matrix: - python-version: ["3.9"] + python-version: ["3.10"] steps: - - name: System Dependencies - run: | - sudo apt install -y build-essential \ - libcairo2-dev \ - pkg-config \ - python3-dev \ - python3-openssl - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: ./.github/actions/python-uv-setup with: python-version: ${{ matrix.python-version }} - - - name: Cache Python dependencies - uses: actions/cache@v3 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('pip/*.txt') }} - restore-keys: | - ${{ runner.os }}-pip- - - - name: Install dependencies + lockfile: uv.lock.cpu + extras: cpu + dependency-groups: dev + debug: "false" + + - name: Run modac unit tests + shell: bash + working-directory: atomsci/modac/test/unit run: | - python3.9 -m pip install --upgrade pip - pip install -e . - if [ -f pip/cpu_requirements.txt ]; then pip install -r pip/cpu_requirements.txt; fi - if [ -f pip/dev_requirements.txt ]; then pip install -r pip/dev_requirements.txt; fi + . "${{ github.workspace }}/.venv/bin/activate" + python -m pytest --capture=sys --capture=fd --cov=atomsci/ -vv - - name: pytest + - name: Run ddm unit tests + shell: bash + working-directory: atomsci/ddm/test/unit run: | - # python3.9 -m pytest --capture=sys --capture=fd --cov=atomsci/ -vv atomsci/ddm/test/unit - python3.9 -m pytest --capture=sys --capture=fd --cov=atomsci/ -vv atomsci/modac/test/unit - cd atomsci/ddm/test/unit && python3.9 -m pytest -n 2 --capture=sys --capture=fd --cov=atomsci -vv - env: - ENV: test + . "${{ github.workspace }}/.venv/bin/activate" + python -m pytest -m "not moe_required" -n 2 --capture=fd --cov=atomsci -vv --durations=4 --durations-min=0.05 - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - pytest-integrative-1: + - name: Save coverage + uses: actions/upload-artifact@v4 + with: + name: coverage-pytest-unit + path: | + atomsci/ddm/test/unit/.coverage* + atomsci/modac/test/unit/.coverage* + include-hidden-files: true + if-no-files-found: error + + pytest-integrative: runs-on: ubuntu-24.04 + env: + ENV: test + DGLBACKEND: pytorch + DEBUG_DGL: "false" strategy: + fail-fast: false matrix: - python-version: ["3.9"] + python-version: ["3.10"] + chunk: [0, 1, 2, 3] + steps: - - name: System Dependencies - run: | - sudo apt install -y build-essential \ - libcairo2-dev \ - pkg-config \ - python3-dev \ - python3-openssl - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: ./.github/actions/python-uv-setup with: python-version: ${{ matrix.python-version }} - - - name: Cache Python dependencies - uses: actions/cache@v3 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('pip/*.txt') }} - restore-keys: | - ${{ runner.os }}-pip- - - - name: Install dependencies + lockfile: uv.lock.cpu + extras: cpu + dependency-groups: dev + debug: "false" + + - name: Debug - dgl + torchdata + shadowing + shell: bash + if: ${{ env.DEBUG_DGL == 'true' }} run: | - python3.9 -m pip install --upgrade pip - pip install -e . - if [ -f pip/cpu_requirements.txt ]; then pip install -r pip/cpu_requirements.txt; fi - if [ -f pip/dev_requirements.txt ]; then pip install -r pip/dev_requirements.txt; fi - - - name: pytest + . "${{ github.workspace }}/.venv/bin/activate" + set -x + + which python + python -V + python -c "import sys, os; print('sys.executable:', sys.executable); print('sys.path[0]:', sys.path[0]); print('cwd:', os.getcwd())" + python -c "import importlib.util; spec = importlib.util.find_spec('torchdata'); print('torchdata spec:', spec); print('torchdata origin:', getattr(spec,'origin',None)); print('torchdata submodule locations:', getattr(spec,'submodule_search_locations',None))" + python -c "import torchdata; print('torchdata file:', torchdata.__file__); print('torchdata version:', getattr(torchdata,'__version__','no __version__'))" + python -c "import torchdata.datapipes.iter as it; print('torchdata.datapipes.iter OK:', it)" + python -c "import dgl; print('dgl OK:', dgl.__version__)" + python -m pip --version + python -m pip show torch torchdata dgl dgllife || true + python -m pip freeze | grep -E '^(torch|torchdata|dgl|dgllife|numpy)=' || true + + - name: Run integrative tests + shell: bash + working-directory: atomsci/ddm/test/integrative run: | - # TODO: Run this test with pytest for paralell testing - # python3.9 -m pytest -n 2 --capture=sys --capture=fd --cov=atomsci -vv atomsci/ddm/test/integrative - cd atomsci/ddm/test/integrative && ./integrative_batch_chunk_tests 0 - env: - ENV: test - - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - pytest-integrative-2: - runs-on: ubuntu-24.04 - strategy: - matrix: - python-version: ["3.9"] - steps: - - name: System Dependencies - run: | - sudo apt install -y build-essential \ - libcairo2-dev \ - pkg-config \ - python3-dev \ - python3-openssl - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} + . "${{ github.workspace }}/.venv/bin/activate" + ./integrative_batch_chunk_tests ${{ matrix.chunk }} - - name: Cache Python dependencies - uses: actions/cache@v3 + - name: Save coverage + uses: actions/upload-artifact@v4 with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('pip/*.txt') }} - restore-keys: | - ${{ runner.os }}-pip- - - - name: Install dependencies - run: | - python3.9 -m pip install --upgrade pip - pip install -e . - if [ -f pip/cpu_requirements.txt ]; then pip install -r pip/cpu_requirements.txt; fi - if [ -f pip/dev_requirements.txt ]; then pip install -r pip/dev_requirements.txt; fi + name: coverage-pytest-integrative-${{ matrix.chunk }} + path: atomsci/ddm/test/integrative/**/.coverage* + include-hidden-files: true + if-no-files-found: error - - name: pytest - run: | - # TODO: Run this test with pytest for paralell testing - # python3.9 -m pytest -n 2 --capture=sys --capture=fd --cov=atomsci -vv atomsci/ddm/test/integrative - cd atomsci/ddm/test/integrative && ./integrative_batch_chunk_tests 1 - env: - ENV: test - - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - pytest-integrative-3: + coverage-merge: runs-on: ubuntu-24.04 - strategy: - matrix: - python-version: ["3.9"] + needs: [pytest-unit, pytest-integrative] steps: - - name: System Dependencies - run: | - sudo apt install -y build-essential \ - libcairo2-dev \ - pkg-config \ - python3-dev \ - python3-openssl - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 with: - python-version: ${{ matrix.python-version }} + fetch-depth: 1 - - name: Cache Python dependencies - uses: actions/cache@v3 + - uses: actions/setup-python@v5 with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('pip/*.txt') }} - restore-keys: | - ${{ runner.os }}-pip- - - - name: Install dependencies - run: | - python3.9 -m pip install --upgrade pip - pip install -e . - if [ -f pip/cpu_requirements.txt ]; then pip install -r pip/cpu_requirements.txt; fi - if [ -f pip/dev_requirements.txt ]; then pip install -r pip/dev_requirements.txt; fi - - - name: pytest - run: | - # TODO: Run this test with pytest for paralell testing - # python3.9 -m pytest -n 2 --capture=sys --capture=fd --cov=atomsci -vv atomsci/ddm/test/integrative - cd atomsci/ddm/test/integrative && ./integrative_batch_chunk_tests 2 - env: - ENV: test + python-version: "3.10" - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - pytest-integrative-4: - runs-on: ubuntu-24.04 - strategy: - matrix: - python-version: ["3.9"] - steps: - - name: System Dependencies + - name: Install coverage + shell: bash run: | - sudo apt install -y build-essential \ - libcairo2-dev \ - pkg-config \ - python3-dev \ - python3-openssl - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} + python -m pip install --upgrade pip + python -m pip install coverage - - name: Cache Python dependencies - uses: actions/cache@v3 + - name: Download all coverage artifacts + uses: actions/download-artifact@v5 with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('pip/*.txt') }} - restore-keys: | - ${{ runner.os }}-pip- + path: coverage-reports - - name: Install dependencies + - name: Merge coverage reports run: | - python3.9 -m pip install --upgrade pip - pip install -e . - if [ -f pip/cpu_requirements.txt ]; then pip install -r pip/cpu_requirements.txt; fi - if [ -f pip/dev_requirements.txt ]; then pip install -r pip/dev_requirements.txt; fi + # List directory structure for debugging + set -euo pipefail + ls -la coverage-reports || true - - name: pytest - run: | - # TODO: Run this test with pytest for paralell testing - # python3.9 -m pytest -n 2 --capture=sys --capture=fd --cov=atomsci -vv atomsci/ddm/test/integrative - cd atomsci/ddm/test/integrative && ./integrative_batch_chunk_tests 3 - env: - ENV: test + # Find and combine all coverage files + find coverage-reports -name ".coverage*" -type f -print + + # Combine all coverage files + find coverage-reports -name ".coverage*" -type f -print0 | xargs -0 coverage combine + # Generate XML report for codecov + coverage xml - - name: Upload coverage reports to Codecov + - name: Upload merged coverage to Codecov uses: codecov/codecov-action@v4 + with: + files: ./coverage.xml + flags: unittests + name: codecov-umbrella env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/.gitignore b/.gitignore index 976e80b8..e70d13d7 100644 --- a/.gitignore +++ b/.gitignore @@ -123,6 +123,8 @@ celerybeat.pid # Environments .env .venv +.venv-* +uv.lock env/ venv/ ENV/ diff --git a/.readthedocs.yml b/.readthedocs.yml index 6c7fb338..73139e0f 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -1,14 +1,21 @@ # .readthedocs.yml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details +# -# Required -version: 1 +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.10" -# Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/source/conf.py -# Optionally set the version of Python and requirements required to build your docs python: - version: 3.7 + install: + - method: pip + path: . + extra_requirements: + - docs diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e608b538..da95a870 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -50,7 +50,19 @@ git fetch upstream git rebase upstream/master ``` -2. Set up a new environment for AMPL by following these [instructions](https://github.com/ATOMScience-org/AMPL#install). +2. Set up a new environment for AMPL by following these [instructions](https://github.com/ATOMScience-org/AMPL#installation). + +This project uses [`uv`](https://docs.astral.sh/uv/) (a fast Python package and project manager) together with `pyproject.toml` and `uv.lock` for dependency management. + +### Prerequisites +- Install **uv** (recommended way): + ```bash + # On macOS / Linux + curl -LsSf https://astral.sh/uv/install.sh | sh + + # On Windows (PowerShell) + powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" + ``` Keep in mind, every contribution must pass the unit tests. diff --git a/Dockerfile.arm b/Dockerfile.arm index 7617ff21..65476b23 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -1,49 +1,20 @@ -FROM python:3.9 +FROM --platform=linux/arm64 python:3.10-slim -# Prevent interactive dialogs from halting the build -ENV DEBIAN_FRONTEND=noninteractive - -RUN apt update -y && apt install -y \ +RUN apt-get update && apt-get install -y \ build-essential \ - libcairo2-dev \ - libhdf5-dev \ - pkg-config \ - python3-dev \ - python3-openssl && \ - apt clean && \ - rm -rf /var/lib/apt/lists/* + git \ + curl \ + ca-certificates \ + && rm -rf /var/lib/apt/lists/* -COPY ./pip/mchip_requirements.txt ./pip/mchip_requirements.txt -RUN pip install -U pip && \ - pip install --no-cache-dir \ - --trusted-host pypi.python.org \ - --trusted-host files.pythonhosted.org \ - --trusted-host pypi.org \ - --trusted-host data.dgl.ai \ - --trusted-host download.pytorch.org \ - -r ./pip/mchip_requirements.txt +RUN pip install --no-cache-dir uv -COPY ./pip/mchip_dev_requirements.txt ./pip/mchip_dev_requirements.txt -RUN pip install -U pip && \ - pip install --no-cache-dir \ - --trusted-host pypi.python.org \ - --trusted-host files.pythonhosted.org \ - --trusted-host pypi.org \ - --trusted-host data.dgl.ai \ - --trusted-host download.pytorch.org \ - -r ./pip/mchip_dev_requirements.txt +WORKDIR /app -COPY setup.py . +COPY pyproject.toml . COPY VERSION . -COPY build.sh . -COPY ./atomsci atomsci/ +COPY atomsci ./atomsci -# Install atomsci-ampl -RUN ./build.sh -RUN pip install -e . +RUN uv sync --extra mchip --group docker --no-dev -# Clean up -RUN apt purge -y build-essential python3-dev && \ - apt autoremove -y && \ - rm -rf /var/lib/apt/lists/* -RUN rm -rf /root/.cache/pip +CMD ["uv", "run", "python", "-c", "import atomsci; print('arm64/mchip-style ok')"] diff --git a/Dockerfile.cpu b/Dockerfile.cpu index 23b9223d..100ee8e3 100644 --- a/Dockerfile.cpu +++ b/Dockerfile.cpu @@ -1,49 +1,12 @@ -FROM python:3.9 +FROM python:3.10-slim -# Prevent interactive dialogs from halting the build -ENV DEBIAN_FRONTEND=noninteractive +RUN pip install uv +WORKDIR /app -RUN apt update -y && apt install -y \ - build-essential \ - libcairo2-dev \ - libhdf5-dev \ - pkg-config \ - python3-dev \ - python3-openssl && \ - apt clean && \ - rm -rf /var/lib/apt/lists/* - -COPY ./pip/cpu_requirements.txt ./pip/cpu_requirements.txt -RUN pip install -U pip && \ - pip install --no-cache-dir \ - --trusted-host pypi.python.org \ - --trusted-host files.pythonhosted.org \ - --trusted-host pypi.org \ - --trusted-host data.dgl.ai \ - --trusted-host download.pytorch.org \ - -r ./pip/cpu_requirements.txt - -COPY ./pip/dev_requirements.txt ./pip/dev_requirements.txt -RUN pip install -U pip && \ - pip install --no-cache-dir \ - --trusted-host pypi.python.org \ - --trusted-host files.pythonhosted.org \ - --trusted-host pypi.org \ - --trusted-host data.dgl.ai \ - --trusted-host download.pytorch.org \ - -r ./pip/dev_requirements.txt - -COPY setup.py . +COPY pyproject.toml . +COPY atomsci ./atomsci COPY VERSION . -COPY build.sh . -COPY ./atomsci atomsci/ -# Install atomsci-ampl -RUN ./build.sh -RUN pip install -e . +RUN uv sync --extra cpu -# Clean up -RUN apt purge -y build-essential python3-dev && \ - apt autoremove -y && \ - rm -rf /var/lib/apt/lists/* -RUN rm -rf /root/.cache/pip +CMD ["uv", "run", "python", "-c", "import atomsci; print('cpu ok')"] diff --git a/Dockerfile.gpu b/Dockerfile.gpu index 62ff8b86..88ed0553 100644 --- a/Dockerfile.gpu +++ b/Dockerfile.gpu @@ -1,49 +1,13 @@ -FROM python:3.9 +FROM nvidia/cuda:12.1.1-cudnn8-runtime-ubuntu22.04 -# Prevent interactive dialogs from halting the build -ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get update && apt-get install -y python3.10 python3-pip +RUN python3.10 -m pip install uv -RUN apt update -y && apt install -y \ - build-essential \ - libcairo2-dev \ - libhdf5-dev \ - pkg-config \ - python3-dev \ - python3-openssl && \ - apt clean && \ - rm -rf /var/lib/apt/lists/* - -COPY ./pip/cuda_requirements.txt ./pip/cuda_requirements.txt -RUN pip install -U pip && \ - pip install --no-cache-dir \ - --trusted-host pypi.python.org \ - --trusted-host files.pythonhosted.org \ - --trusted-host pypi.org \ - --trusted-host data.dgl.ai \ - --trusted-host download.pytorch.org \ - -r ./pip/cuda_requirements.txt - -COPY ./pip/dev_requirements.txt ./pip/dev_requirements.txt -RUN pip install -U pip && \ - pip install --no-cache-dir \ - --trusted-host pypi.python.org \ - --trusted-host files.pythonhosted.org \ - --trusted-host pypi.org \ - --trusted-host data.dgl.ai \ - --trusted-host download.pytorch.org \ - -r ./pip/dev_requirements.txt - -COPY setup.py . +WORKDIR /app +COPY pyproject.toml . +COPY atomsci ./atomsci COPY VERSION . -COPY build.sh . -COPY ./atomsci atomsci/ -# Install atomsci-ampl -RUN ./build.sh -RUN pip install -e . +RUN uv sync --extra cuda -# Clean up -RUN apt purge -y build-essential python3-dev && \ - apt autoremove -y && \ - rm -rf /var/lib/apt/lists/* -RUN rm -rf /root/.cache/pip +CMD ["uv", "run", "python3.10", "-c", "import atomsci; print('cuda ok')"] diff --git a/Dockerfile.rocm b/Dockerfile.rocm new file mode 100644 index 00000000..c75e3f71 --- /dev/null +++ b/Dockerfile.rocm @@ -0,0 +1,22 @@ +FROM rocm/dev-ubuntu-22.04:6.1 + +RUN apt-get update && apt-get install -y \ + python3.10 \ + python3-pip \ + python3.10-venv \ + build-essential \ + git \ + curl \ + ca-certificates + +RUN python3.10 -m pip install --no-cache-dir uv + +WORKDIR /app + +COPY pyproject.toml . +COPY VERSION . +COPY atomsci ./atomsci + +RUN uv sync --extra rocm --group docker --no-dev + +CMD ["uv", "run", "python3.10", "-c", "import atomsci; print('rocm ok')"] diff --git a/Makefile b/Makefile index 78c7d44e..71be804a 100644 --- a/Makefile +++ b/Makefile @@ -46,8 +46,9 @@ VENV ?= atomsci-env # Work Directory WORK_DIR ?= work -.PHONY: build-docker install install-dev install-system install-venv jupyter-notebook jupyter-lab \ - pytest ruff ruff-fix setup uninstall uninstall-dev uninstall-system uninstall-venv +.PHONY: update-lock-cpu update-lock-cuda update-lock-rocm update-lock-mchip sync-cpu sync-cuda sync-rocm sync-mchip \ + build-docker install install-dev install-system install-venv jupyter-notebook jupyter-lab \ + pytest ruff ruff-fix setup # Load Docker image load-docker: @@ -67,7 +68,7 @@ save-docker: # Build Docker image build-docker: - @echo "Building Docker image for $(PLATFORM)" + @echo "Building Docker image for $(PLATFORM) " docker buildx build -t $(IMAGE_REPO):$(TAG) --build-arg ENV=$(ENV) $(PLATFORM_ARG) --load -f Dockerfile.$(PLATFORM) . install: install-system @@ -123,7 +124,7 @@ pytest-integrative: pytest-unit: @echo "Running unit tests" docker run -v $(shell pwd)/$(WORK_DIR):/$(WORK_DIR) $(IMAGE_REPO):$(TAG) \ - /bin/bash -l -c "cd atomsci/ddm/test/unit && python3.9 -m pytest --capture=sys --capture=fd --cov=atomsci -vv" + /bin/bash -l -c "cd atomsci/ddm/test/unit && python3.10 -m pytest --capture=sys --capture=fd --cov=atomsci -vv" # Run ruff linter ruff: @@ -144,7 +145,7 @@ setup: @echo "Removing old environment" rm -rf $(VENV)/ || true @echo "Creating new venv" - python3.9 -m venv $(VENV)/ + python3.10 -m venv $(VENV)/ $(VENV)/bin/pip install -U pip @echo "Installing dependencies" @if [ "$(PLATFORM)" = "gpu" ]; then \ @@ -155,19 +156,30 @@ setup: $(VENV)/bin/pip install -r pip/dev_requirements.txt $(MAKE) install-venv -uninstall: uninstall-system +# for uv env -# Uninstall atomsci-ampl from user space -uninstall-dev: - @echo "Uninstalling atomsci-ampl for user" - $(PYTHON_BIN) -m pip uninstall atomsci-ampl --user --yes +# use these to create/update a lock env. for maintainers only +update-lock-cpu: + ./update_uv_lock.sh cpu -# Uninstall atomsci-ampl system-wide -uninstall-system: - @echo "Uninstalling atomsci-ampl from $(PYTHON_BIN)" - $(PYTHON_BIN) -m pip uninstall atomsci-ampl --yes +update-lock-cuda: + ./update_uv_lock.sh cuda -# Uninstall atomsci-ampl from virtual environment -uninstall-venv: - @echo "Uninstalling atomsci-ampl from $(VENV)/" - $(VENV)/bin/python -m pip uninstall atomsci-ampl --yes +update-lock-rocm: + ./update_uv_lock.sh rocm + +update-lock-mchip: + ./update_uv_lock.sh mchip + +# use the matching lockfile to create or refresh .venv-. for general users +sync-cpu: + ./sync_uv_env.sh cpu + +sync-cuda: + ./sync_uv_env.sh cuda + +sync-rocm: + ./sync_uv_env.sh rocm + +sync-mchip: + ./sync_uv_env.sh mchip \ No newline at end of file diff --git a/Makefile.md b/Makefile.md index 73965288..6050d4cf 100644 --- a/Makefile.md +++ b/Makefile.md @@ -39,13 +39,6 @@ This Makefile is designed to manage Jupyter environments, Docker images, and the - `make save-docker`: Save the Docker image to a tarball (`ampl-$(PLATFORM)-$(ENV).tar.gz`). - `make build-docker`: Build the Docker image for the specified platform and environment. -- **Installation:** - - - `make install`: Install `atomsci-ampl` system-wide. - - `make install-dev`: Install `atomsci-ampl` in user space. - - `make install-system`: Install `atomsci-ampl` system-wide. - - `make install-venv`: Install `atomsci-ampl` in a virtual environment. - - **Jupyter Notebook and Lab:** - `make jupyter-notebook`: Start a Jupyter Notebook server. @@ -63,13 +56,6 @@ This Makefile is designed to manage Jupyter environments, Docker images, and the - `make shell`: Go inside the container's shell. -- **Setup and Uninstallation:** - - `make setup`: Set up a virtual environment and install dependencies. - - `make uninstall`: Uninstall `atomsci-ampl` system-wide. - - `make uninstall-dev`: Uninstall `atomsci-ampl` from user space. - - `make uninstall-system`: Uninstall `atomsci-ampl` system-wide. - - `make uninstall-venv`: Uninstall `atomsci-ampl` from the virtual environment. - ### **Usage Examples** #### **Managing Docker Images** @@ -108,10 +94,10 @@ make jupyter-lab #### **Setting Up the Development Environment** -To set up a virtual environment with the appropriate dependencies: +To set up a virtual environment with a specified platform: ```bash -make setup +make sync- ``` This Makefile provides a comprehensive approach to managing Docker images, running Jupyter servers, and handling the installation and setup of your development environment. It streamlines workflows, making it easier to maintain and develop the `atomsci-ampl` project. diff --git a/README.md b/README.md index 97beb1ca..859e9770 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Develop test](https://github.com/ATOMScience-org/AMPL/actions/workflows/pytest.yml/badge.svg)](https://github.com/ATOMScience-org/AMPL/actions/workflows/pytest.yml) [![Linter](https://github.com/ATOMScience-org/AMPL/actions/workflows/lint.yml/badge.svg)](https://github.com/ATOMScience-org/AMPL/actions/workflows/lint.yml) [![Documentation Status](https://readthedocs.org/projects/ampl/badge/?version=stable)](https://ampl.readthedocs.io/en/latest/?badge=stable) +[![Develop test](https://github.com/ATOMScience-org/AMPL/actions/workflows/pytest.yml/badge.svg)](https://github.com/ATOMScience-org/AMPL/actions/workflows/pytest.yml) [![Linter](https://github.com/ATOMScience-org/AMPL/actions/workflows/lint.yml/badge.svg)](https://github.com/ATOMScience-org/AMPL/actions/workflows/lint.yml) [![Documentation Status](https://readthedocs.org/projects/ampl/badge/?version=stable)](https://ampl.readthedocs.io/en/latest/?badge=stable) [![codecov](https://codecov.io/gh/ATOMScience-org/AMPL/graph/badge.svg)](https://codecov.io/gh/ATOMScience-org/AMPL) ![GitHub Release](https://img.shields.io/github/v/release/ATOMScience-org/AMPL) [![License](http://img.shields.io/:license-mit-blue.svg)](https://github.com/ATOMScience-org/AMPL/blob/master/LICENSE) [![LinkedIn](https://custom-icon-badges.demolab.com/badge/LinkedIn-0A66C2?logo=linkedin-white&logoColor=fff)](https://www.linkedin.com/company/atomscience) [![YouTube](https://img.shields.io/badge/YouTube-%23FF0000.svg?logo=YouTube&logoColor=white)](https://www.youtube.com/channel/UCOF6zZ7ltGwopYCoOGIFM-w) @@ -10,26 +10,39 @@ An open-source, end-to-end software pipeline for data curation, model building, *Created by the [Accelerating Therapeutics for Opportunities in Medicine (ATOM) Consortium](https://atomscience.org)* - - +![AMPL logo](https://raw.githubusercontent.com/ATOMScience-org/AMPL/master/assets/ATOM_cymatics_black_wordmark.jpg) The ATOM Modeling PipeLine (AMPL) extends the functionality of DeepChem and supports an array of machine learning and molecular featurization tools to predict key potency, safety and pharmacokinetic-relevant parameters. AMPL has been benchmarked on a large collection of pharmaceutical datasets covering a wide range of parameters. This is a living software project with active development. Check back for continued updates. Feedback is welcomed and appreciated, and the project is open to contributions! An [article describing the AMPL project](https://pubs.acs.org/doi/abs/10.1021/acs.jcim.9b01053) was published in JCIM. The AMPL pipeline documentation is available [here](https://ampl.readthedocs.io/en/latest/pipeline.html). Check out our new tutorial series that walks through AMPL's end-to-end modeling pipeline to build a machine learning model! View them in our [docs](https://ampl.readthedocs.io/en/latest/) or as Jupyter notebooks in our [repo](https://github.com/ATOMScience-org/AMPL/tree/master/atomsci/ddm/examples/tutorials). -![Static Badge](https://img.shields.io/badge/Announcement-1.7.0-blue) +![Static Badge](https://img.shields.io/badge/Announcement-1.8.0-blue) -In addition to our written tutorials, we now provide a series of video tutorials on our YouTube channel, [ATOMScience-org](https://www.youtube.com/channel/UCOF6zZ7ltGwopYCoOGIFM-w). These videos are created to assist users in exploring and leveraging AMPL's robust capabilities. We provided a playlist for easy streamlined Learning: +In addition to our written tutorials, we now provide a series of video tutorials on our YouTube channel, [ATOMScience-org](https://www.youtube.com/channel/UCOF6zZ7ltGwopYCoOGIFM-w). These videos are created to assist users in exploring and leveraging AMPL's robust capabilities. We provided a playlist for easy streamlined Learning: [![AMPL Tutorial Playlist](https://img.shields.io/badge/AMPL_Tutorial_Playlist-%23FF0000.svg?logo=YouTube&logoColor=white)](https://www.youtube.com/playlist?list=PLe85Q-Gf8eFgYGQmUDSTlSjJorQZyDG8E) --- ## Table of contents -- [Install](#install) - - [Quick Install](#installation-quick-summary) - - [Jupyter kernel](#create-jupyter-notebook-kernel-optional) - - [Docker](#install-with-docker) - - [Uninstall](#uninstall) +- [Installation](#installation) + - [Install the published package from PyPI](#install-the-published-package-from-pypi) + - [Get the latest release version from PyPI](#get-the-latest-release-version-from-pypi) + - [Set up an `uv` environment for development](#set-up-an-uv-environment-for-development) + - [What is `uv`?](#what-is-uv) + - [Requirements](#requirements) + - [Install `uv`](#install-uv) + - [Choose your platform](#choose-your-platform) + - [Create or refresh your environment](#create-or-refresh-your-environment) + - [Daily use](#daily-use) + - [Platform lockfiles](#platform-lockfiles) + - [For maintainers only](#for-maintainers-only) + - [Troubleshooting](#troubleshooting) + - [`uv` not found](#uv-not-found) + - [Wrong Python or missing `pytest`](#wrong-python-or-missing-pytest) + - [Import or package problems](#import-or-package-problems) + - [Building AMPL for Local Development](#building-ampl-for-local-development) + - [Build and install from a local clone](#build-and-install-from-a-local-clone) + - [Optional, for LLNL LC only](#optional-for-llnl-lc-only) - [AMPL Features](#ampl-features) - [Running AMPL](#running-ampl) - [Tests](#tests) @@ -37,132 +50,234 @@ In addition to our written tutorials, we now provide a series of video tutorials - [Advanced testing](#advanced-testing) - [Tutorials](#ampl-tutorials) - [Development](#development) -- [Project information](#project-information) +- [Project information](#project-information) - [Suggestions or Report Issues](#support-suggestions-or-report-issues) ## Useful links - [Pipeline parameters (options)](atomsci/ddm/docs/PARAMETERS.md) - [Library documentation](https://ampl.readthedocs.io/en/latest/index.html) + --- -## Install -AMPL 1.6 supports Python 3.9 CPU or CUDA-enabled machines using CUDA 11.8 on Linux. All other systems are experimental. For a quick install summary, see [here](#install-summary). We do not support other CUDA versions because there are multiple ML package dependency conflicts that can occur. For more information you can look at [DeepChem](https://deepchem.readthedocs.io/en/latest/get_started/installation.html), [TensorFlow](https://www.tensorflow.org/install/pip), [PyTorch](https://pytorch.org/get-started/locally/), [DGL](https://www.dgl.ai/pages/start.html). -For installation on Apple Silicon M Chips, please see the Docker container instructions. +## Installation + +AMPL supports Python 3.10 and provides platform-specific environments for `cpu`, `cuda`, `rocm`, and `mchip`. + +For dependency-specific installation details, see: +- [DeepChem](https://deepchem.readthedocs.io/en/latest/get_started/installation.html) +- [TensorFlow](https://www.tensorflow.org/install/pip) +- [PyTorch](https://pytorch.org/get-started/locally/) +- [DGL](https://www.dgl.ai/pages/start.html) + +AMPL uses [`uv`](https://docs.astral.sh/uv/) for Python environment and dependency management. + +### Install the published package from PyPI -### Create pip environment +Use this option if you want to install the released `atomsci-ampl` package without cloning this repository. -#### 1. Create a virtual env with Python 3.9 -Make sure to create your virtual env in a convenient directory that has at least 12Gb space. +If you are working from a local checkout of this repo, use the local `uv` environment workflow above instead. -Go to the directory where the new environment directory be installed in. Define an environment variable - "ENVROOT". +> **Note:** AMPL requires Python 3.10. For LLNL users on LC, run `module load python/3.10.8`. +### Get the latest release version from PyPI + +Create or activate a Python 3.10 environment, then install: ```bash -export ENVROOT=~/workspace # for LLNL LC users, use your workspace -or -export ENVROOT=~ # or the directory as your environment root +pip install atomsci-ampl +``` + +Or use `uv` install: + +Example: +```bash +uv venv --python 3.10 <.venv_name> +source <.venv_name>/bin/activate +uv pip install atomsci-ampl ``` -> *We use "workspace" and "atomsci-env" as an example here.* +--- + +### Set up an `uv` environment for local development + +Use this workflow if you want to run or develop AMPL from a local clone of this repository. + +#### What is `uv`? + +`uv` is the Python environment and dependency tool used by this project. It creates virtual environments and installs the packages defined in `pyproject.toml`. +#### Requirements + +| Item | Value | +|---|---| +| Python | 3.10 | +| Supported range | `>=3.10,<3.11` | +| Platforms | `cpu`, `cuda`, `rocm`, `mchip` | + +#### Install `uv` + +Install `uv` with one of the following: +```bash +curl -LsSf https://astral.sh/uv/install.sh | sh +``` +or +```bash +pip install uv +``` +Verify the installation: ```bash -# LLNL only: -# module load python/3.9.12 -cd $ENVROOT -python3.9 -m venv atomsci-env +uv --version ``` +#### Choose your platform -#### 2. Activate the environment +| Platform | Use this if... | Environment | +|---|---|---| +| `cpu` | you want a CPU-only environment | `.venv-cpu` | +| `cuda` | you are using NVIDIA GPUs on Linux | `.venv-cuda` | +| `rocm` | you are using AMD GPUs | `.venv-rocm` | +| `mchip` | you are on Apple Silicon | `.venv-mchip` | + +#### Create or refresh your environment + +For most users, use the `make sync-` commands: ```bash -source $ENVROOT/atomsci-env/bin/activate +make sync-cpu ``` +Other options: +```bash +make sync-cuda +make sync-rocm +make sync-mchip +``` +Then activate the environment: +```bash +source .venv-cpu/bin/activate +``` +Replace `cpu` with your platform as needed. -#### 3. Update pip +Example: ```bash -pip install pip --upgrade +make sync-cpu +source .venv-cpu/bin/activate ``` +#### Daily use -#### 4. Clone AMPL repository +If the environment is already working, you can usually just activate it: +```bash +source .venv-cpu/bin/activate +``` +If commands like `pytest` are missing, or imports fail, refresh the environment: ```bash -git clone https://github.com/ATOMScience-org/AMPL.git +make sync-cpu +source .venv-cpu/bin/activate ``` +#### Platform lockfiles -#### 5. Install pip requirements -Depending on system performance, creating the environment can take some time. -> ***Note:*** *Based on which environment (CPU or CUDA) to run on, only run one of the following:* +This project keeps one lockfile per platform: + +| Platform | Lockfile | Environment | +|---|---|---| +| `cpu` | `uv.lock.cpu` | `.venv-cpu` | +| `cuda` | `uv.lock.cuda` | `.venv-cuda` | +| `rocm` | `uv.lock.rocm` | `.venv-rocm` | +| `mchip` | `uv.lock.mchip` | `.venv-mchip` | + +The `make sync-` commands use the matching lockfile to create or refresh `.venv-`. + +#### For maintainers only + +If dependencies change in `pyproject.toml`, you **must** regenerate the platform lockfile: -- CPU-only installation: ```bash -cd AMPL/pip -pip install -r cpu_requirements.txt +make update-lock-cpu ``` -- CUDA installation: +Other supported targets: +```bash +make update-lock-cuda +make update-lock-rocm +make update-lock-mchip +``` -First load the CUDA module. Then run cuda specific package install. +These commands create the lockfile if it does not already exist, or update it if it does. +**Any changes to `pyproject.toml` or `uv.lock.` must be committed and pushed to the AMPL GitHub repository. Do not leave regenerated lockfiles uncommitted.** + +Most users do not need to run `make update-lock-`. + +#### Troubleshooting + +##### `uv` not found ```bash -cd AMPL/pip -# LLNL only: -# module load cuda/11.8 -pip install -r cuda_requirements.txt +uv --version ``` -If you get `out of memory` errors, try setting these environment variables: +If this fails, install `uv` and start a new shell. + +##### Wrong Python or missing `pytest` + +Check: +```bash +which python +python --version +which pytest +``` +They should point into the active environment, for example: +```bash +.venv-cpu/bin/python +.venv-cpu/bin/pytest ``` -export LD_LIBRARY_PATH=/lib:$LD_LIBRARY_PATH -export PYTHONUSERBASE= -export OPENBLAS_NUM_THREADS=1 -export OMP_NUM_THREADS=48 -export PYTORCH_HIP_ALLOC_CONF=gargage_collection_threshold:0.9,max_split_size_mb:128 -export TF_FORCE_GPU_ALLOW_GROWTH=true +If not, refresh the environment: +```bash +make sync-cpu +source .venv-cpu/bin/activate ``` +##### Import or package problems -- Install pytest, plotting packages for development, test use. +Refresh the environment: +```bash +make sync-cpu +source .venv-cpu/bin/activate +``` +### Building AMPL for Local Development +If you want to develop AMPL locally from a repository checkout: ```bash -cd AMPL/pip -pip install -r dev_requirements.txt +git clone https://github.com/ATOMScience-org/AMPL.git +cd AMPL +./install-dev.sh ``` -#### 6. *(Optional) LLNL LC only*: if you use [model_tracker](https://ampl.readthedocs.io/en/latest/pipeline.html#module-pipeline.model_tracker), install atomsci.clients +This installs the package from the local source tree, so code changes are available without reinstalling. + +#### Build and install from a local clone + +If you want to build the package locally and then install the built artifact: +```bash +git clone https://github.com/ATOMScience-org/AMPL.git +cd AMPL +./build.sh +./install.sh +``` +#### Optional, for LLNL LC only + +If you use [model_tracker](https://ampl.readthedocs.io/en/latest/pipeline.html#module-pipeline.model_tracker), install `atomsci.clients`: ```bash -# LLNL only: required for ATOM model_tracker pip install -r clients_requirements.txt ``` -### Install AMPL -Run the following to build the "atomsci" modules. This is required. +--- + +## Create jupyter notebook kernel (optional) +To run AMPL from Jupyter Notebook, first activate your environment and then run: ```bash -# return to AMPL parent directory -cd .. -./build.sh -pip install -e . +python -m ipykernel install --user --name atomsci-env ``` --- -## Installation Quick Summary +#### *(Optional) LLNL LC only*: if you use [model_tracker](https://ampl.readthedocs.io/en/latest/pipeline.html#module-pipeline.model_tracker), install atomsci.clients ```bash -export ENVROOT=~/workspace # set ENVROOT example -# LLNL only: -# module load python/3.9.12 - -python3.9 -m venv atomsci-env # create environment with Python 3.9 -source $ENVROOT/atomsci-env/bin/activate -pip install pip --upgrade - -git clone https://github.com/ATOMScience-org/AMPL.git # clone AMPL -cd AMPL/pip -# LLNL only: -# If use CUDA: -# module load cuda/11.8 -pip install -r cpu_requirements.txt # install cpu_requirements.txt OR cuda_requirements.txt -pip install -r dev_requirements.txt # install pytest, plotting packages. - # LLNL only: required for ATOM model_tracker -# pip install -r clients_requirements.txt - -cd .. -./build.sh -pip install -e . +pip install -r clients_requirements.txt ``` + --- ## Create jupyter notebook kernel (optional) To run AMPL from Jupyter Notebook. To setup a new kernel, first activate your environment and then run the following command: @@ -175,7 +290,7 @@ python -m ipykernel install --user --name atomsci-env ## Install with Docker - Download and install Docker Desktop. - https://www.docker.com/get-started -- Create a workspace folder to mount with Docker environment and transfer files. +- Create a workspace folder to mount with Docker environment and transfer files. - Get the Docker image and run it. Since 1.6.3, there are some changes with the AMPL Docker. To retrieve, run version 1.6.2 or earlier, please specify the desired version tag: @@ -184,7 +299,7 @@ To retrieve, run version 1.6.2 or earlier, please specify the desired version ta docker run -it -p 8888:8888 -v : atomsci/atomsci-ampl:v1.6.2 ``` -For AMPL versions 1.6.3 and later, we offer downloadable images for various platforms (CPU, GPU or Linux/ARM64). To run a Docker container, be sure to append `bash` at the end of the command to open a bash session. +For AMPL versions 1.6.3 and later, we offer downloadable images for various platforms (CPU, GPU or Linux/ARM64). To run a Docker container, be sure to append `bash` at the end of the command to open a bash session. ``` docker pull atomsci/atomsci-ampl:latest- # can be cpu, gpu, or arm (for arm64 chip) @@ -204,22 +319,11 @@ For additional options related to building, running, and other Docker developmen --- -## Uninstall -To remove AMPL from a pip environment use: -```bash -pip uninstall atomsci-ampl -``` - To remove an entire virtual environment named "atomsci-env": ```bash rm -rf $ENVROOT/atomsci-env ``` -To remove cached packages and clear space: -```bash -pip cache purge -``` - --- ## AMPL Features
AMPL enables tasks for modeling and prediction from data ingestion to data analysis and can be broken down into the following stages: @@ -233,28 +337,27 @@ pip cache purge - Extended connectivity fingerprints (ECFP) - Graph convolution latent vectors from DeepChem - Chemical descriptors from Mordred package -- Descriptors generated by MOE (requires MOE license) +- Descriptors generated by MOE (requires MOE license) ### 3. Model training and tuning - Test set selection - Cross-validation - Uncertainty quantification -- Hyperparameter optimization ### 4. Supported models - scikit-learn random forest models - XGBoost models - Fully connected neural networks -- Graph convolution models +- Graph convolution models ### 5. Visualization and analysis -- Visualization and analysis tools +- Visualization and analysis tools
-Details of running specific features are within the [parameter (options) documentation](#Pipeline-parameters). More detailed documentation is in the [library documentation](#Library-documentation). +Details of running specific features are within the [parameter (options) documentation](atomsci/ddm/docs/PARAMETERS.md). More detailed documentation is in the [library documentation](https://ampl.readthedocs.io/en/latest/). --- ## Running AMPL -AMPL can be run from the command line or by importing into Python scripts and Jupyter notebooks. +AMPL can be run from the command line or by importing into Python scripts and Jupyter notebooks. ### Python scripts and Jupyter notebooks AMPL can be used to fit and predict molecular activities and properties by importing the appropriate modules. See the [examples](atomsci/ddm/examples/) for more descriptions on how to fit and make predictions using AMPL. @@ -263,13 +366,13 @@ AMPL can be used to fit and predict molecular activities and properties by impor AMPL includes many parameters to run various model fitting and prediction tasks. - Pipeline options (parameters) can be set within JSON files containing a parameter list. - The parameter list with detailed explanations of each option can be found at [atomsci/ddm/docs/PARAMETERS.md](atomsci/ddm/docs/PARAMETERS.md). -- Example pipeline JSON files can be found in the tests directory and the example directory. +- Example pipeline JSON files can be found in the tests directory and the example directory. ### Library documentation AMPL includes detailed docstrings and comments to explain the modules. Full HTML documentation of the Python library is available with the package at [https://ampl.readthedocs.io/en/latest/](https://ampl.readthedocs.io/en/latest/). ### More information on AMPL usage -- More information on AMPL usage can be found in [Advanced AMPL usage](#advanced-ampl-usage) +- More information on AMPL usage can be found in [Advanced AMPL usage](#advanced-ampl-usage) --- ## Tests @@ -281,7 +384,7 @@ source $ENVROOT/atomsci-env/bin/activate # activate your pip environment. cd atomsci/ddm/test/integrative/delaney_RF pytest ``` -> ***Note***: *This test generally takes a few minutes on a modern system* +> ***Note***: *This test generally takes a few minutes on a modern system* The important files for this test are listed below: @@ -299,7 +402,7 @@ The important files for this test are listed below: AMPL can **fit** models from the command line with: ```bash python model_pipeline.py --config_file filename.json # [filename].json is the name of the config file -``` +``` To get more info on an AMPL config file, please refer to: @@ -308,45 +411,46 @@ To get more info on an AMPL config file, please refer to: - [AMPL Tutorials](atomsci/ddm/examples/tutorials) ### Hyperparameter optimization -
Hyperparameter optimization for AMPL model fitting is available to run on SLURM clusters or with [HyperOpt](https://hyperopt.github.io/hyperopt/) (Bayesian Optimization). To run Bayesian Optimization, the following steps can be followed. +
Hyperparameter optimization for AMPL model fitting is available to run on SLURM clusters or with [Optuna](https://optuna.readthedocs.io/) (Bayesian Optimization). To run Bayesian Optimization, the following steps can be followed. -1. (Optional) Install HyperOpt with "pip install hyperopt" +1. (Optional) Install Optuna with "pip install optuna" 2. Pre-split your dataset with computed_descriptors if you want to use Mordred/MOE/RDKit descriptors. 3. In the config JSON file, set the following parameters. - + - "hyperparam": "True" - - "search_type": "hyperopt" + - "search_type": "optuna" - "descriptor_type": "mordred_filtered,rdkit_raw" (use comma to separate multiple values) - "model_type": "RF|20" (the number after | is the number of evaluations of Bayesian Optimization) - "featurizer": "ecfp,computed_descriptors" (use comma if you want to try multiple featurizers, note the RF and graphconv are not compatible) - "result_dir": "/path/to/save/the/final/results,/temp/path/to/save/models/during/optimization" (Two paths separated by a comma) - + RF model specific parameters: - "rfe": "uniformint|8,512", (RF number of estimators) - "rfd": "uniformint|8,512", (RF max depth of the decision tree) - "rff": "uniformint|8,200", (RF max number of features) - + Use the following schemes to define the searching domains - + method|parameter1,parameter2... - - method: supported searching schemes in HyperOpt include: choice, uniform, loguniform, uniformint, see https://github.com/hyperopt/hyperopt/wiki/FMin for details. - + + method: supported searching schemes in Optuna include: choice, uniform, loguniform, uniformint. For details, see the [Optuna documentation](https://optuna.readthedocs.io/en/stable/reference/generated/optuna.trial.Trial.html). + parameters: - choice: all values to search from, separated by comma, e.g. choice|0.0001,0.0005,0.0002,0.001 - - uniform: low and high bound of the interval to serach, e.g. uniform|0.00001,0.001 - - loguniform: low and high bound (in natural log) of the interval to serach, e.g. uniform|-13.8,-6.9 - - uniformint: low and high bound of the interval as integers, e.g. uniforming|8,256 - + - uniform: low and high bound of the interval to search, e.g. uniform|0.00001,0.001 + - loguniform: low and high bound (in natural log) of the interval to search, e.g. loguniform|-13.8,-6.9 + - **Note**: For backwards compatibility, loguniform values are submitted to Optuna in log scale. Although Optuna supports non-log-scaled value ranges for log-uniform distributions, we maintain the original log-scaled specification format to ensure consistency with existing configurations. + - uniformint: low and high bound of the interval as integers, e.g. uniformint|8,256 + NN model specific parameters: - "lr": "loguniform|-13.8,-6.9", (learning rate) - "ls": "uniformint|3|8,512", (layer_sizes) - The number between two bars (|) is the number of layers, namely 3 layers, each one with 8~512 nodes - - Note that the number of layers (number between two |) can not be changed during optimization, if you want to try different number of layers, just run several optimizations. + - Note that the number of layers (number between two |) can not be changed during optimization, if you want to try different number of layers, just run several optimizations. - "dp": "uniform|3|0,0.4", (dropouts) - 3 layers, each one has a dropout range from 0 to 0.4 - - Note that the number of layers (number between two |) can not be changed during optimization, if you want to try different number of layers, just run several optimizations. - + - Note that the number of layers (number between two |) can not be changed during optimization, if you want to try different number of layers, just run several optimizations. + XGBoost model specific parameters: - "xgbg": "uniform|0,0.4", (xgb_gamma, Minimum loss reduction required to make a further partition on a leaf node of the tree) - "xgbl": "loguniform|-6.9,-2.3", (xgb_learning_rate, Boosting learning rate (xgboost's "eta")) @@ -356,14 +460,14 @@ To get more info on an AMPL config file, please refer to: ``` python hyperparam_search_wrapper.py --config_file filename.json ``` - + 5. Save a checkpoint to continue it later. - + To save a checkpoint file of the hyperparameter search job, you want to set the following two parameters. - "hp_checkpoint_save": "/path/to/the/checkpoint/file.pkl" - "hp_checkpoint_load": "/path/to/the/checkpoint/file.pkl" - - If the "hp_checkpoint_load" is provided, the hyperparameter search will continue from the checkpoint. + + If the "hp_checkpoint_load" is provided, the hyperparameter search will continue from the checkpoint.
--- @@ -393,7 +497,7 @@ sbatch pytest_slurm.sh ### Running tests without internet access
AMPL works without internet access. Curation, fitting, and prediction do not require internet access. -However, the public datasets used in tests and examples are not included in the repo due to licensing concerns. These are automatically downloaded when the tests are run. +However, the public datasets used in tests and examples are not included in the repo due to licensing concerns. These are automatically downloaded when the tests are run. If a system does not have internet access, the datasets will need to be downloaded before running the tests and examples. From a system with internet access, run the following shell script to download the public datasets. Then, copy the AMPL directory to the offline system. @@ -407,20 +511,20 @@ cd ../../.. --- ## AMPL tutorials -Please follow link, ["atomsci/ddm/examples/tutorials"](https://github.com/ATOMScience-org/AMPL/tree/master/atomsci/ddm/examples/tutorials), to access a collection of AMPL tutorial notebooks. The tutorial notebooks give an exhaustive coverage of AMPL features. The AMPL team has prepared the tutorials to help beginners understand the basics to advanced AMPL features, and a reference for advanced AMPL users. +Please follow link, ["atomsci/ddm/examples/tutorials"](https://github.com/ATOMScience-org/AMPL/tree/master/atomsci/ddm/examples/tutorials), to access a collection of AMPL tutorial notebooks. The tutorial notebooks give an exhaustive coverage of AMPL features. The AMPL team has prepared the tutorials to help beginners understand the basics to advanced AMPL features, and a reference for advanced AMPL users. --- ## Development ### Installing the AMPL for development -Using "pip install -e ." will create a namespace package in your environment directory that points back to your git working directory, so every time you reimport a module you'll be in sync with your working code. Since site-packages is already in your sys.path, you won't have to fuss with PYTHONPATH or setting sys.path in your notebooks. +Using "pip install -e ." will create a namespace package in your environment directory that points back to your git working directory, so every time you reimport a module you'll be in sync with your working code. Since site-packages is already in your sys.path, you won't have to fuss with PYTHONPATH or setting sys.path in your notebooks. ### Code Push Policy It's recommended to use a development branch to do the work. After each release, there will be a branch opened for development. -The policy is +The policy is 1. Create a branch based off a development ("1.6.0 "for example) or "master" branch -2. Create a pull request. Assign a reviewer to approve the code changes +2. Create a pull request. Assign a reviewer to approve the code changes > ***Note***: > Step 2 is required for pushing directly to "master". For a development branch, this step is recommended but not required. @@ -429,7 +533,7 @@ The policy is The ["Google docstring"](https://github.com/google/styleguide/blob/gh-pages/pyguide.md#38-comments-and-docstrings) format is used in the AMPL code. When writing new code, please use the same Docstring style. Refer [here](https://www.sphinx-doc.org/en/master/usage/extensions/example_google.html#example-google) and [here](https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html) for examples. ### Versioning -Versions are managed through GitHub tags on this repository. +Versions are managed through GitHub tags on this repository. ### Built with - [DeepChem](https://github.com/deepchem/deepchem): A rich repository of chemistry-specific model types and utilities @@ -454,7 +558,7 @@ Versions are managed through GitHub tags on this repository. - Stacie Calad-Thomson (2) - Jim Brase (1) - Jonathan E. Allen (1) -  +  ### Contributors - [Amanda Paulson](https://github.com/paulsonak) (5) @@ -470,7 +574,7 @@ Versions are managed through GitHub tags on this repository. 5. [University of California, San Francisco](https://www.ucsf.edu/)\ 6. [Schrodinger](https://www.schrodinger.com/)\ 7. [Leidos](https://www.leidos.com) -  +  ### Support, Suggestions or Report Issues - If you have suggestions or like to report issues, please click [here](https://github.com/ATOMScience-org/AMPL/issues). @@ -480,8 +584,8 @@ Versions are managed through GitHub tags on this repository. Thank you for contributing to AMPL! - Contributions must be submitted through pull requests. -- All new contributions must adhere to the MIT license. -  +- All new contributions must adhere to the MIT license. +  ### Release AMPL is distributed under the terms of the MIT license. All new contributions must be made under this license. diff --git a/VERSION b/VERSION index bd8bf882..27f9cd32 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.7.0 +1.8.0 diff --git a/assets/ATOM_cymatics_black_wordmark.jpg b/assets/ATOM_cymatics_black_wordmark.jpg new file mode 100755 index 00000000..f6cea5e8 Binary files /dev/null and b/assets/ATOM_cymatics_black_wordmark.jpg differ diff --git a/atomsci/__init__.py b/atomsci/__init__.py deleted file mode 100644 index 80f4617e..00000000 --- a/atomsci/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# coding: utf-8 -# -# ddm __init__.py -# - -import pkg_resources - -pkg_resources.declare_namespace(__name__) diff --git a/atomsci/ddm/__init__.py b/atomsci/ddm/__init__.py index c25fb4ee..1509b651 100644 --- a/atomsci/ddm/__init__.py +++ b/atomsci/ddm/__init__.py @@ -1,6 +1,21 @@ -import pkg_resources +#import pkg_resources +#try: +# __version__ = pkg_resources.require("atomsci-ampl")[0].version +#except TypeError: +# pass try: - __version__ = pkg_resources.require("atomsci-ampl")[0].version -except TypeError: - pass + from importlib.metadata import version, PackageNotFoundError +except ImportError: + try: + from importlib_metadata import version, PackageNotFoundError + except ImportError: + version = None + PackageNotFoundError = Exception +if version is not None: + try: + __version__ = version("atomsci-ampl") + except PackageNotFoundError: + __version__ = "unknown" +else: + __version__ = "unknown" diff --git a/atomsci/ddm/data/descriptor_sets_sources_by_descr_type.csv b/atomsci/ddm/data/descriptor_sets_sources_by_descr_type.csv index 787842ae..825930b1 100644 --- a/atomsci/ddm/data/descriptor_sets_sources_by_descr_type.csv +++ b/atomsci/ddm/data/descriptor_sets_sources_by_descr_type.csv @@ -9,3 +9,5 @@ moe_informative,ASA+;ASA-;ASA_H;ASA_P;ASA;BCUT_PEOE_0;BCUT_PEOE_1;BCUT_PEOE_2;BC mordred_raw,ABC;ABCGG;nAcid;nBase;SpAbs_A;SpMax_A;SpDiam_A;SpAD_A;SpMAD_A;LogEE_A;VE1_A;VE2_A;VE3_A;VR1_A;VR2_A;VR3_A;nAromAtom;nAromBond;nAtom;nHeavyAtom;nSpiro;nBridgehead;nHetero;nH;nB;nC;nN;nO;nS;nP;nF;nCl;nBr;nI;nX;ATS0dv;ATS1dv;ATS2dv;ATS3dv;ATS4dv;ATS5dv;ATS6dv;ATS7dv;ATS8dv;ATS0d;ATS1d;ATS2d;ATS3d;ATS4d;ATS5d;ATS6d;ATS7d;ATS8d;ATS0s;ATS1s;ATS2s;ATS3s;ATS4s;ATS5s;ATS6s;ATS7s;ATS8s;ATS0Z;ATS1Z;ATS2Z;ATS3Z;ATS4Z;ATS5Z;ATS6Z;ATS7Z;ATS8Z;ATS0m;ATS1m;ATS2m;ATS3m;ATS4m;ATS5m;ATS6m;ATS7m;ATS8m;ATS0v;ATS1v;ATS2v;ATS3v;ATS4v;ATS5v;ATS6v;ATS7v;ATS8v;ATS0se;ATS1se;ATS2se;ATS3se;ATS4se;ATS5se;ATS6se;ATS7se;ATS8se;ATS0pe;ATS1pe;ATS2pe;ATS3pe;ATS4pe;ATS5pe;ATS6pe;ATS7pe;ATS8pe;ATS0are;ATS1are;ATS2are;ATS3are;ATS4are;ATS5are;ATS6are;ATS7are;ATS8are;ATS0p;ATS1p;ATS2p;ATS3p;ATS4p;ATS5p;ATS6p;ATS7p;ATS8p;ATS0i;ATS1i;ATS2i;ATS3i;ATS4i;ATS5i;ATS6i;ATS7i;ATS8i;AATS0dv;AATS1dv;AATS2dv;AATS3dv;AATS4dv;AATS5dv;AATS6dv;AATS7dv;AATS8dv;AATS0d;AATS1d;AATS2d;AATS3d;AATS4d;AATS5d;AATS6d;AATS7d;AATS8d;AATS0s;AATS1s;AATS2s;AATS3s;AATS4s;AATS5s;AATS6s;AATS7s;AATS8s;AATS0Z;AATS1Z;AATS2Z;AATS3Z;AATS4Z;AATS5Z;AATS6Z;AATS7Z;AATS8Z;AATS0m;AATS1m;AATS2m;AATS3m;AATS4m;AATS5m;AATS6m;AATS7m;AATS8m;AATS0v;AATS1v;AATS2v;AATS3v;AATS4v;AATS5v;AATS6v;AATS7v;AATS8v;AATS0se;AATS1se;AATS2se;AATS3se;AATS4se;AATS5se;AATS6se;AATS7se;AATS8se;AATS0pe;AATS1pe;AATS2pe;AATS3pe;AATS4pe;AATS5pe;AATS6pe;AATS7pe;AATS8pe;AATS0are;AATS1are;AATS2are;AATS3are;AATS4are;AATS5are;AATS6are;AATS7are;AATS8are;AATS0p;AATS1p;AATS2p;AATS3p;AATS4p;AATS5p;AATS6p;AATS7p;AATS8p;AATS0i;AATS1i;AATS2i;AATS3i;AATS4i;AATS5i;AATS6i;AATS7i;AATS8i;ATSC0c;ATSC1c;ATSC2c;ATSC3c;ATSC4c;ATSC5c;ATSC6c;ATSC7c;ATSC8c;ATSC0dv;ATSC1dv;ATSC2dv;ATSC3dv;ATSC4dv;ATSC5dv;ATSC6dv;ATSC7dv;ATSC8dv;ATSC0d;ATSC1d;ATSC2d;ATSC3d;ATSC4d;ATSC5d;ATSC6d;ATSC7d;ATSC8d;ATSC0s;ATSC1s;ATSC2s;ATSC3s;ATSC4s;ATSC5s;ATSC6s;ATSC7s;ATSC8s;ATSC0Z;ATSC1Z;ATSC2Z;ATSC3Z;ATSC4Z;ATSC5Z;ATSC6Z;ATSC7Z;ATSC8Z;ATSC0m;ATSC1m;ATSC2m;ATSC3m;ATSC4m;ATSC5m;ATSC6m;ATSC7m;ATSC8m;ATSC0v;ATSC1v;ATSC2v;ATSC3v;ATSC4v;ATSC5v;ATSC6v;ATSC7v;ATSC8v;ATSC0se;ATSC1se;ATSC2se;ATSC3se;ATSC4se;ATSC5se;ATSC6se;ATSC7se;ATSC8se;ATSC0pe;ATSC1pe;ATSC2pe;ATSC3pe;ATSC4pe;ATSC5pe;ATSC6pe;ATSC7pe;ATSC8pe;ATSC0are;ATSC1are;ATSC2are;ATSC3are;ATSC4are;ATSC5are;ATSC6are;ATSC7are;ATSC8are;ATSC0p;ATSC1p;ATSC2p;ATSC3p;ATSC4p;ATSC5p;ATSC6p;ATSC7p;ATSC8p;ATSC0i;ATSC1i;ATSC2i;ATSC3i;ATSC4i;ATSC5i;ATSC6i;ATSC7i;ATSC8i;AATSC0c;AATSC1c;AATSC2c;AATSC3c;AATSC4c;AATSC5c;AATSC6c;AATSC7c;AATSC8c;AATSC0dv;AATSC1dv;AATSC2dv;AATSC3dv;AATSC4dv;AATSC5dv;AATSC6dv;AATSC7dv;AATSC8dv;AATSC0d;AATSC1d;AATSC2d;AATSC3d;AATSC4d;AATSC5d;AATSC6d;AATSC7d;AATSC8d;AATSC0s;AATSC1s;AATSC2s;AATSC3s;AATSC4s;AATSC5s;AATSC6s;AATSC7s;AATSC8s;AATSC0Z;AATSC1Z;AATSC2Z;AATSC3Z;AATSC4Z;AATSC5Z;AATSC6Z;AATSC7Z;AATSC8Z;AATSC0m;AATSC1m;AATSC2m;AATSC3m;AATSC4m;AATSC5m;AATSC6m;AATSC7m;AATSC8m;AATSC0v;AATSC1v;AATSC2v;AATSC3v;AATSC4v;AATSC5v;AATSC6v;AATSC7v;AATSC8v;AATSC0se;AATSC1se;AATSC2se;AATSC3se;AATSC4se;AATSC5se;AATSC6se;AATSC7se;AATSC8se;AATSC0pe;AATSC1pe;AATSC2pe;AATSC3pe;AATSC4pe;AATSC5pe;AATSC6pe;AATSC7pe;AATSC8pe;AATSC0are;AATSC1are;AATSC2are;AATSC3are;AATSC4are;AATSC5are;AATSC6are;AATSC7are;AATSC8are;AATSC0p;AATSC1p;AATSC2p;AATSC3p;AATSC4p;AATSC5p;AATSC6p;AATSC7p;AATSC8p;AATSC0i;AATSC1i;AATSC2i;AATSC3i;AATSC4i;AATSC5i;AATSC6i;AATSC7i;AATSC8i;MATS1c;MATS2c;MATS3c;MATS4c;MATS5c;MATS6c;MATS7c;MATS8c;MATS1dv;MATS2dv;MATS3dv;MATS4dv;MATS5dv;MATS6dv;MATS7dv;MATS8dv;MATS1d;MATS2d;MATS3d;MATS4d;MATS5d;MATS6d;MATS7d;MATS8d;MATS1s;MATS2s;MATS3s;MATS4s;MATS5s;MATS6s;MATS7s;MATS8s;MATS1Z;MATS2Z;MATS3Z;MATS4Z;MATS5Z;MATS6Z;MATS7Z;MATS8Z;MATS1m;MATS2m;MATS3m;MATS4m;MATS5m;MATS6m;MATS7m;MATS8m;MATS1v;MATS2v;MATS3v;MATS4v;MATS5v;MATS6v;MATS7v;MATS8v;MATS1se;MATS2se;MATS3se;MATS4se;MATS5se;MATS6se;MATS7se;MATS8se;MATS1pe;MATS2pe;MATS3pe;MATS4pe;MATS5pe;MATS6pe;MATS7pe;MATS8pe;MATS1are;MATS2are;MATS3are;MATS4are;MATS5are;MATS6are;MATS7are;MATS8are;MATS1p;MATS2p;MATS3p;MATS4p;MATS5p;MATS6p;MATS7p;MATS8p;MATS1i;MATS2i;MATS3i;MATS4i;MATS5i;MATS6i;MATS7i;MATS8i;GATS1c;GATS2c;GATS3c;GATS4c;GATS5c;GATS6c;GATS7c;GATS8c;GATS1dv;GATS2dv;GATS3dv;GATS4dv;GATS5dv;GATS6dv;GATS7dv;GATS8dv;GATS1d;GATS2d;GATS3d;GATS4d;GATS5d;GATS6d;GATS7d;GATS8d;GATS1s;GATS2s;GATS3s;GATS4s;GATS5s;GATS6s;GATS7s;GATS8s;GATS1Z;GATS2Z;GATS3Z;GATS4Z;GATS5Z;GATS6Z;GATS7Z;GATS8Z;GATS1m;GATS2m;GATS3m;GATS4m;GATS5m;GATS6m;GATS7m;GATS8m;GATS1v;GATS2v;GATS3v;GATS4v;GATS5v;GATS6v;GATS7v;GATS8v;GATS1se;GATS2se;GATS3se;GATS4se;GATS5se;GATS6se;GATS7se;GATS8se;GATS1pe;GATS2pe;GATS3pe;GATS4pe;GATS5pe;GATS6pe;GATS7pe;GATS8pe;GATS1are;GATS2are;GATS3are;GATS4are;GATS5are;GATS6are;GATS7are;GATS8are;GATS1p;GATS2p;GATS3p;GATS4p;GATS5p;GATS6p;GATS7p;GATS8p;GATS1i;GATS2i;GATS3i;GATS4i;GATS5i;GATS6i;GATS7i;GATS8i;BCUTc-1h;BCUTc-1l;BCUTdv-1h;BCUTdv-1l;BCUTd-1h;BCUTd-1l;BCUTs-1h;BCUTs-1l;BCUTZ-1h;BCUTZ-1l;BCUTm-1h;BCUTm-1l;BCUTv-1h;BCUTv-1l;BCUTse-1h;BCUTse-1l;BCUTpe-1h;BCUTpe-1l;BCUTare-1h;BCUTare-1l;BCUTp-1h;BCUTp-1l;BCUTi-1h;BCUTi-1l;BalabanJ;SpAbs_DzZ;SpMax_DzZ;SpDiam_DzZ;SpAD_DzZ;SpMAD_DzZ;LogEE_DzZ;SM1_DzZ;VE1_DzZ;VE2_DzZ;VE3_DzZ;VR1_DzZ;VR2_DzZ;VR3_DzZ;SpAbs_Dzm;SpMax_Dzm;SpDiam_Dzm;SpAD_Dzm;SpMAD_Dzm;LogEE_Dzm;SM1_Dzm;VE1_Dzm;VE2_Dzm;VE3_Dzm;VR1_Dzm;VR2_Dzm;VR3_Dzm;SpAbs_Dzv;SpMax_Dzv;SpDiam_Dzv;SpAD_Dzv;SpMAD_Dzv;LogEE_Dzv;SM1_Dzv;VE1_Dzv;VE2_Dzv;VE3_Dzv;VR1_Dzv;VR2_Dzv;VR3_Dzv;SpAbs_Dzse;SpMax_Dzse;SpDiam_Dzse;SpAD_Dzse;SpMAD_Dzse;LogEE_Dzse;SM1_Dzse;VE1_Dzse;VE2_Dzse;VE3_Dzse;VR1_Dzse;VR2_Dzse;VR3_Dzse;SpAbs_Dzpe;SpMax_Dzpe;SpDiam_Dzpe;SpAD_Dzpe;SpMAD_Dzpe;LogEE_Dzpe;SM1_Dzpe;VE1_Dzpe;VE2_Dzpe;VE3_Dzpe;VR1_Dzpe;VR2_Dzpe;VR3_Dzpe;SpAbs_Dzare;SpMax_Dzare;SpDiam_Dzare;SpAD_Dzare;SpMAD_Dzare;LogEE_Dzare;SM1_Dzare;VE1_Dzare;VE2_Dzare;VE3_Dzare;VR1_Dzare;VR2_Dzare;VR3_Dzare;SpAbs_Dzp;SpMax_Dzp;SpDiam_Dzp;SpAD_Dzp;SpMAD_Dzp;LogEE_Dzp;SM1_Dzp;VE1_Dzp;VE2_Dzp;VE3_Dzp;VR1_Dzp;VR2_Dzp;VR3_Dzp;SpAbs_Dzi;SpMax_Dzi;SpDiam_Dzi;SpAD_Dzi;SpMAD_Dzi;LogEE_Dzi;SM1_Dzi;VE1_Dzi;VE2_Dzi;VE3_Dzi;VR1_Dzi;VR2_Dzi;VR3_Dzi;BertzCT;nBonds;nBondsO;nBondsS;nBondsD;nBondsT;nBondsA;nBondsM;nBondsKS;nBondsKD;RNCG;RPCG;C1SP1;C2SP1;C1SP2;C2SP2;C3SP2;C1SP3;C2SP3;C3SP3;C4SP3;HybRatio;FCSP3;Xch-3d;Xch-4d;Xch-5d;Xch-6d;Xch-7d;Xch-3dv;Xch-4dv;Xch-5dv;Xch-6dv;Xch-7dv;Xc-3d;Xc-4d;Xc-5d;Xc-6d;Xc-3dv;Xc-4dv;Xc-5dv;Xc-6dv;Xpc-4d;Xpc-5d;Xpc-6d;Xpc-4dv;Xpc-5dv;Xpc-6dv;Xp-0d;Xp-1d;Xp-2d;Xp-3d;Xp-4d;Xp-5d;Xp-6d;Xp-7d;AXp-0d;AXp-1d;AXp-2d;AXp-3d;AXp-4d;AXp-5d;AXp-6d;AXp-7d;Xp-0dv;Xp-1dv;Xp-2dv;Xp-3dv;Xp-4dv;Xp-5dv;Xp-6dv;Xp-7dv;AXp-0dv;AXp-1dv;AXp-2dv;AXp-3dv;AXp-4dv;AXp-5dv;AXp-6dv;AXp-7dv;SZ;Sm;Sv;Sse;Spe;Sare;Sp;Si;MZ;Mm;Mv;Mse;Mpe;Mare;Mp;Mi;SpAbs_Dt;SpMax_Dt;SpDiam_Dt;SpAD_Dt;SpMAD_Dt;LogEE_Dt;SM1_Dt;VE1_Dt;VE2_Dt;VE3_Dt;VR1_Dt;VR2_Dt;VR3_Dt;DetourIndex;SpAbs_D;SpMax_D;SpDiam_D;SpAD_D;SpMAD_D;LogEE_D;VE1_D;VE2_D;VE3_D;VR1_D;VR2_D;VR3_D;NsLi;NssBe;NssssBe;NssBH;NsssB;NssssB;NsCH3;NdCH2;NssCH2;NtCH;NdsCH;NaaCH;NsssCH;NddC;NtsC;NdssC;NaasC;NaaaC;NssssC;NsNH3;NsNH2;NssNH2;NdNH;NssNH;NaaNH;NtN;NsssNH;NdsN;NaaN;NsssN;NddsN;NaasN;NssssN;NsOH;NdO;NssO;NaaO;NsF;NsSiH3;NssSiH2;NsssSiH;NssssSi;NsPH2;NssPH;NsssP;NdsssP;NsssssP;NsSH;NdS;NssS;NaaS;NdssS;NddssS;NsCl;NsGeH3;NssGeH2;NsssGeH;NssssGe;NsAsH2;NssAsH;NsssAs;NsssdAs;NsssssAs;NsSeH;NdSe;NssSe;NaaSe;NdssSe;NddssSe;NsBr;NsSnH3;NssSnH2;NsssSnH;NssssSn;NsI;NsPbH3;NssPbH2;NsssPbH;NssssPb;SsLi;SssBe;SssssBe;SssBH;SsssB;SssssB;SsCH3;SdCH2;SssCH2;StCH;SdsCH;SaaCH;SsssCH;SddC;StsC;SdssC;SaasC;SaaaC;SssssC;SsNH3;SsNH2;SssNH2;SdNH;SssNH;SaaNH;StN;SsssNH;SdsN;SaaN;SsssN;SddsN;SaasN;SssssN;SsOH;SdO;SssO;SaaO;SsF;SsSiH3;SssSiH2;SsssSiH;SssssSi;SsPH2;SssPH;SsssP;SdsssP;SsssssP;SsSH;SdS;SssS;SaaS;SdssS;SddssS;SsCl;SsGeH3;SssGeH2;SsssGeH;SssssGe;SsAsH2;SssAsH;SsssAs;SsssdAs;SsssssAs;SsSeH;SdSe;SssSe;SaaSe;SdssSe;SddssSe;SsBr;SsSnH3;SssSnH2;SsssSnH;SssssSn;SsI;SsPbH3;SssPbH2;SsssPbH;SssssPb;MAXsLi;MAXssBe;MAXssssBe;MAXssBH;MAXsssB;MAXssssB;MAXsCH3;MAXdCH2;MAXssCH2;MAXtCH;MAXdsCH;MAXaaCH;MAXsssCH;MAXddC;MAXtsC;MAXdssC;MAXaasC;MAXaaaC;MAXssssC;MAXsNH3;MAXsNH2;MAXssNH2;MAXdNH;MAXssNH;MAXaaNH;MAXtN;MAXsssNH;MAXdsN;MAXaaN;MAXsssN;MAXddsN;MAXaasN;MAXssssN;MAXsOH;MAXdO;MAXssO;MAXaaO;MAXsF;MAXsSiH3;MAXssSiH2;MAXsssSiH;MAXssssSi;MAXsPH2;MAXssPH;MAXsssP;MAXdsssP;MAXsssssP;MAXsSH;MAXdS;MAXssS;MAXaaS;MAXdssS;MAXddssS;MAXsCl;MAXsGeH3;MAXssGeH2;MAXsssGeH;MAXssssGe;MAXsAsH2;MAXssAsH;MAXsssAs;MAXsssdAs;MAXsssssAs;MAXsSeH;MAXdSe;MAXssSe;MAXaaSe;MAXdssSe;MAXddssSe;MAXsBr;MAXsSnH3;MAXssSnH2;MAXsssSnH;MAXssssSn;MAXsI;MAXsPbH3;MAXssPbH2;MAXsssPbH;MAXssssPb;MINsLi;MINssBe;MINssssBe;MINssBH;MINsssB;MINssssB;MINsCH3;MINdCH2;MINssCH2;MINtCH;MINdsCH;MINaaCH;MINsssCH;MINddC;MINtsC;MINdssC;MINaasC;MINaaaC;MINssssC;MINsNH3;MINsNH2;MINssNH2;MINdNH;MINssNH;MINaaNH;MINtN;MINsssNH;MINdsN;MINaaN;MINsssN;MINddsN;MINaasN;MINssssN;MINsOH;MINdO;MINssO;MINaaO;MINsF;MINsSiH3;MINssSiH2;MINsssSiH;MINssssSi;MINsPH2;MINssPH;MINsssP;MINdsssP;MINsssssP;MINsSH;MINdS;MINssS;MINaaS;MINdssS;MINddssS;MINsCl;MINsGeH3;MINssGeH2;MINsssGeH;MINssssGe;MINsAsH2;MINssAsH;MINsssAs;MINsssdAs;MINsssssAs;MINsSeH;MINdSe;MINssSe;MINaaSe;MINdssSe;MINddssSe;MINsBr;MINsSnH3;MINssSnH2;MINsssSnH;MINssssSn;MINsI;MINsPbH3;MINssPbH2;MINsssPbH;MINssssPb;ECIndex;ETA_alpha;AETA_alpha;ETA_shape_p;ETA_shape_y;ETA_shape_x;ETA_beta;AETA_beta;ETA_beta_s;AETA_beta_s;ETA_beta_ns;AETA_beta_ns;ETA_beta_ns_d;AETA_beta_ns_d;ETA_eta;AETA_eta;ETA_eta_L;AETA_eta_L;ETA_eta_R;AETA_eta_R;ETA_eta_RL;AETA_eta_RL;ETA_eta_F;AETA_eta_F;ETA_eta_FL;AETA_eta_FL;ETA_eta_B;AETA_eta_B;ETA_eta_BR;AETA_eta_BR;ETA_dAlpha_A;ETA_dAlpha_B;ETA_epsilon_1;ETA_epsilon_2;ETA_epsilon_3;ETA_epsilon_4;ETA_epsilon_5;ETA_dEpsilon_A;ETA_dEpsilon_B;ETA_dEpsilon_C;ETA_dEpsilon_D;ETA_dBeta;AETA_dBeta;ETA_psi_1;ETA_dPsi_A;ETA_dPsi_B;fragCpx;fMF;nHBAcc;nHBDon;IC0;IC1;IC2;IC3;IC4;IC5;TIC0;TIC1;TIC2;TIC3;TIC4;TIC5;SIC0;SIC1;SIC2;SIC3;SIC4;SIC5;BIC0;BIC1;BIC2;BIC3;BIC4;BIC5;CIC0;CIC1;CIC2;CIC3;CIC4;CIC5;MIC0;MIC1;MIC2;MIC3;MIC4;MIC5;ZMIC0;ZMIC1;ZMIC2;ZMIC3;ZMIC4;ZMIC5;Kier1;Kier2;Kier3;Lipinski;GhoseFilter;FilterItLogS;VMcGowan;LabuteASA;PEOE_VSA1;PEOE_VSA2;PEOE_VSA3;PEOE_VSA4;PEOE_VSA5;PEOE_VSA6;PEOE_VSA7;PEOE_VSA8;PEOE_VSA9;PEOE_VSA10;PEOE_VSA11;PEOE_VSA12;PEOE_VSA13;SMR_VSA1;SMR_VSA2;SMR_VSA3;SMR_VSA4;SMR_VSA5;SMR_VSA6;SMR_VSA7;SMR_VSA8;SMR_VSA9;SlogP_VSA1;SlogP_VSA2;SlogP_VSA3;SlogP_VSA4;SlogP_VSA5;SlogP_VSA6;SlogP_VSA7;SlogP_VSA8;SlogP_VSA9;SlogP_VSA10;SlogP_VSA11;EState_VSA1;EState_VSA2;EState_VSA3;EState_VSA4;EState_VSA5;EState_VSA6;EState_VSA7;EState_VSA8;EState_VSA9;EState_VSA10;VSA_EState1;VSA_EState2;VSA_EState3;VSA_EState4;VSA_EState5;VSA_EState6;VSA_EState7;VSA_EState8;VSA_EState9;MDEC-11;MDEC-12;MDEC-13;MDEC-14;MDEC-22;MDEC-23;MDEC-24;MDEC-33;MDEC-34;MDEC-44;MDEO-11;MDEO-12;MDEO-22;MDEN-11;MDEN-12;MDEN-13;MDEN-22;MDEN-23;MDEN-33;MID;AMID;MID_h;AMID_h;MID_C;AMID_C;MID_N;AMID_N;MID_O;AMID_O;MID_X;AMID_X;MPC2;MPC3;MPC4;MPC5;MPC6;MPC7;MPC8;MPC9;MPC10;TMPC10;piPC1;piPC2;piPC3;piPC4;piPC5;piPC6;piPC7;piPC8;piPC9;piPC10;TpiPC10;apol;bpol;nRing;n3Ring;n4Ring;n5Ring;n6Ring;n7Ring;n8Ring;n9Ring;n10Ring;n11Ring;n12Ring;nG12Ring;nHRing;n3HRing;n4HRing;n5HRing;n6HRing;n7HRing;n8HRing;n9HRing;n10HRing;n11HRing;n12HRing;nG12HRing;naRing;n3aRing;n4aRing;n5aRing;n6aRing;n7aRing;n8aRing;n9aRing;n10aRing;n11aRing;n12aRing;nG12aRing;naHRing;n3aHRing;n4aHRing;n5aHRing;n6aHRing;n7aHRing;n8aHRing;n9aHRing;n10aHRing;n11aHRing;n12aHRing;nG12aHRing;nARing;n3ARing;n4ARing;n5ARing;n6ARing;n7ARing;n8ARing;n9ARing;n10ARing;n11ARing;n12ARing;nG12ARing;nAHRing;n3AHRing;n4AHRing;n5AHRing;n6AHRing;n7AHRing;n8AHRing;n9AHRing;n10AHRing;n11AHRing;n12AHRing;nG12AHRing;nFRing;n4FRing;n5FRing;n6FRing;n7FRing;n8FRing;n9FRing;n10FRing;n11FRing;n12FRing;nG12FRing;nFHRing;n4FHRing;n5FHRing;n6FHRing;n7FHRing;n8FHRing;n9FHRing;n10FHRing;n11FHRing;n12FHRing;nG12FHRing;nFaRing;n4FaRing;n5FaRing;n6FaRing;n7FaRing;n8FaRing;n9FaRing;n10FaRing;n11FaRing;n12FaRing;nG12FaRing;nFaHRing;n4FaHRing;n5FaHRing;n6FaHRing;n7FaHRing;n8FaHRing;n9FaHRing;n10FaHRing;n11FaHRing;n12FaHRing;nG12FaHRing;nFARing;n4FARing;n5FARing;n6FARing;n7FARing;n8FARing;n9FARing;n10FARing;n11FARing;n12FARing;nG12FARing;nFAHRing;n4FAHRing;n5FAHRing;n6FAHRing;n7FAHRing;n8FAHRing;n9FAHRing;n10FAHRing;n11FAHRing;n12FAHRing;nG12FAHRing;nRot;RotRatio;SLogP;SMR;TopoPSA(NO);TopoPSA;GGI1;GGI2;GGI3;GGI4;GGI5;GGI6;GGI7;GGI8;GGI9;GGI10;JGI1;JGI2;JGI3;JGI4;JGI5;JGI6;JGI7;JGI8;JGI9;JGI10;JGT10;Diameter;Radius;TopoShapeIndex;PetitjeanIndex;Vabc;VAdjMat;MWC01;MWC02;MWC03;MWC04;MWC05;MWC06;MWC07;MWC08;MWC09;MWC10;TMWC10;SRW02;SRW03;SRW04;SRW05;SRW06;SRW07;SRW08;SRW09;SRW10;TSRW10;MW;AMW;WPath;WPol;Zagreb1;Zagreb2;mZagreb1;mZagreb2,0,mordred mordred_filtered,AATS0Z;AATS0are;AATS0d;AATS0dv;AATS0i;AATS0m;AATS0p;AATS0pe;AATS0s;AATS0se;AATS0v;AATS1Z;AATS1are;AATS1d;AATS1dv;AATS1i;AATS1m;AATS1p;AATS1pe;AATS1s;AATS1se;AATS1v;AATS2Z;AATS2are;AATS2d;AATS2dv;AATS2i;AATS2m;AATS2p;AATS2pe;AATS2s;AATS2se;AATS2v;AATS3Z;AATS3are;AATS3d;AATS3dv;AATS3i;AATS3m;AATS3p;AATS3pe;AATS3s;AATS3se;AATS3v;AATS4Z;AATS4are;AATS4d;AATS4dv;AATS4i;AATS4m;AATS4p;AATS4pe;AATS4s;AATS4se;AATS4v;AATS5Z;AATS5are;AATS5d;AATS5dv;AATS5i;AATS5m;AATS5p;AATS5pe;AATS5s;AATS5se;AATS5v;AATS6Z;AATS6are;AATS6d;AATS6dv;AATS6i;AATS6m;AATS6p;AATS6pe;AATS6s;AATS6se;AATS6v;AATS7Z;AATS7are;AATS7d;AATS7dv;AATS7i;AATS7m;AATS7p;AATS7pe;AATS7s;AATS7se;AATS7v;AATS8Z;AATS8are;AATS8d;AATS8dv;AATS8i;AATS8m;AATS8p;AATS8pe;AATS8s;AATS8se;AATS8v;AATSC0Z;AATSC0are;AATSC0c;AATSC0d;AATSC0dv;AATSC0i;AATSC0m;AATSC0p;AATSC0pe;AATSC0s;AATSC0se;AATSC0v;AATSC1Z;AATSC1are;AATSC1c;AATSC1d;AATSC1dv;AATSC1i;AATSC1m;AATSC1p;AATSC1pe;AATSC1s;AATSC1se;AATSC1v;AATSC2Z;AATSC2are;AATSC2c;AATSC2d;AATSC2dv;AATSC2i;AATSC2m;AATSC2p;AATSC2pe;AATSC2s;AATSC2se;AATSC2v;AATSC3Z;AATSC3are;AATSC3c;AATSC3d;AATSC3dv;AATSC3i;AATSC3m;AATSC3p;AATSC3pe;AATSC3s;AATSC3se;AATSC3v;AATSC4Z;AATSC4are;AATSC4c;AATSC4d;AATSC4dv;AATSC4i;AATSC4m;AATSC4p;AATSC4pe;AATSC4s;AATSC4se;AATSC4v;AATSC5Z;AATSC5are;AATSC5c;AATSC5d;AATSC5dv;AATSC5i;AATSC5m;AATSC5p;AATSC5pe;AATSC5s;AATSC5se;AATSC5v;AATSC6Z;AATSC6are;AATSC6c;AATSC6d;AATSC6dv;AATSC6i;AATSC6m;AATSC6p;AATSC6pe;AATSC6s;AATSC6se;AATSC6v;AATSC7Z;AATSC7are;AATSC7c;AATSC7d;AATSC7dv;AATSC7i;AATSC7m;AATSC7p;AATSC7pe;AATSC7s;AATSC7se;AATSC7v;AATSC8Z;AATSC8are;AATSC8c;AATSC8d;AATSC8dv;AATSC8i;AATSC8m;AATSC8p;AATSC8pe;AATSC8s;AATSC8se;AATSC8v;ABC;ABCGG;AETA_alpha;AETA_beta;AETA_beta_ns;AETA_beta_ns_d;AETA_beta_s;AETA_dBeta;AETA_eta;AETA_eta_B;AETA_eta_BR;AETA_eta_F;AETA_eta_FL;AETA_eta_L;AETA_eta_R;AETA_eta_RL;AMID;AMID_C;AMID_N;AMID_O;AMID_X;AMID_h;AMW;ATS0Z;ATS0are;ATS0d;ATS0dv;ATS0i;ATS0m;ATS0p;ATS0pe;ATS0s;ATS0se;ATS0v;ATS1Z;ATS1are;ATS1d;ATS1dv;ATS1i;ATS1m;ATS1p;ATS1pe;ATS1s;ATS1se;ATS1v;ATS2Z;ATS2are;ATS2d;ATS2dv;ATS2i;ATS2m;ATS2p;ATS2pe;ATS2s;ATS2se;ATS2v;ATS3Z;ATS3are;ATS3d;ATS3dv;ATS3i;ATS3m;ATS3p;ATS3pe;ATS3s;ATS3se;ATS3v;ATS4Z;ATS4are;ATS4d;ATS4dv;ATS4i;ATS4m;ATS4p;ATS4pe;ATS4s;ATS4se;ATS4v;ATS5Z;ATS5are;ATS5d;ATS5dv;ATS5i;ATS5m;ATS5p;ATS5pe;ATS5s;ATS5se;ATS5v;ATS6Z;ATS6are;ATS6d;ATS6dv;ATS6i;ATS6m;ATS6p;ATS6pe;ATS6s;ATS6se;ATS6v;ATS7Z;ATS7are;ATS7d;ATS7dv;ATS7i;ATS7m;ATS7p;ATS7pe;ATS7s;ATS7se;ATS7v;ATS8Z;ATS8are;ATS8d;ATS8dv;ATS8i;ATS8m;ATS8p;ATS8pe;ATS8s;ATS8se;ATS8v;ATSC0Z;ATSC0are;ATSC0c;ATSC0d;ATSC0dv;ATSC0i;ATSC0m;ATSC0p;ATSC0pe;ATSC0s;ATSC0se;ATSC0v;ATSC1Z;ATSC1are;ATSC1c;ATSC1d;ATSC1dv;ATSC1i;ATSC1m;ATSC1p;ATSC1pe;ATSC1s;ATSC1se;ATSC1v;ATSC2Z;ATSC2are;ATSC2c;ATSC2d;ATSC2dv;ATSC2i;ATSC2m;ATSC2p;ATSC2pe;ATSC2s;ATSC2se;ATSC2v;ATSC3Z;ATSC3are;ATSC3c;ATSC3d;ATSC3dv;ATSC3i;ATSC3m;ATSC3p;ATSC3pe;ATSC3s;ATSC3se;ATSC3v;ATSC4Z;ATSC4are;ATSC4c;ATSC4d;ATSC4dv;ATSC4i;ATSC4m;ATSC4p;ATSC4pe;ATSC4s;ATSC4se;ATSC4v;ATSC5Z;ATSC5are;ATSC5c;ATSC5d;ATSC5dv;ATSC5i;ATSC5m;ATSC5p;ATSC5pe;ATSC5s;ATSC5se;ATSC5v;ATSC6Z;ATSC6are;ATSC6c;ATSC6d;ATSC6dv;ATSC6i;ATSC6m;ATSC6p;ATSC6pe;ATSC6s;ATSC6se;ATSC6v;ATSC7Z;ATSC7are;ATSC7c;ATSC7d;ATSC7dv;ATSC7i;ATSC7m;ATSC7p;ATSC7pe;ATSC7s;ATSC7se;ATSC7v;ATSC8Z;ATSC8are;ATSC8c;ATSC8d;ATSC8dv;ATSC8i;ATSC8m;ATSC8p;ATSC8pe;ATSC8s;ATSC8se;ATSC8v;AXp-0d;AXp-0dv;AXp-1d;AXp-1dv;AXp-2d;AXp-2dv;AXp-3d;AXp-3dv;AXp-4d;AXp-4dv;AXp-5d;AXp-5dv;AXp-6d;AXp-6dv;AXp-7d;AXp-7dv;BCUTZ-1h;BCUTZ-1l;BCUTare-1h;BCUTare-1l;BCUTc-1h;BCUTc-1l;BCUTd-1h;BCUTd-1l;BCUTdv-1h;BCUTdv-1l;BCUTi-1h;BCUTi-1l;BCUTm-1h;BCUTm-1l;BCUTp-1h;BCUTp-1l;BCUTpe-1h;BCUTpe-1l;BCUTs-1h;BCUTs-1l;BCUTse-1h;BCUTse-1l;BCUTv-1h;BCUTv-1l;BIC0;BIC1;BIC2;BIC3;BIC4;BIC5;BalabanJ;BertzCT;C1SP1;C1SP2;C1SP3;C2SP1;C2SP2;C2SP3;C3SP2;C3SP3;C4SP3;CIC0;CIC1;CIC2;CIC3;CIC4;CIC5;DPSA1;DPSA2;DPSA3;DPSA4;DPSA5;DetourIndex;Diameter;ECIndex;EState_VSA1;EState_VSA10;EState_VSA2;EState_VSA3;EState_VSA4;EState_VSA5;EState_VSA6;EState_VSA7;EState_VSA8;EState_VSA9;ETA_alpha;ETA_beta;ETA_beta_ns;ETA_beta_ns_d;ETA_beta_s;ETA_dAlpha_A;ETA_dAlpha_B;ETA_dBeta;ETA_dEpsilon_A;ETA_dEpsilon_B;ETA_dEpsilon_C;ETA_dEpsilon_D;ETA_dPsi_A;ETA_dPsi_B;ETA_epsilon_1;ETA_epsilon_2;ETA_epsilon_3;ETA_epsilon_4;ETA_epsilon_5;ETA_eta;ETA_eta_B;ETA_eta_BR;ETA_eta_F;ETA_eta_FL;ETA_eta_L;ETA_eta_R;ETA_eta_RL;ETA_psi_1;ETA_shape_p;ETA_shape_x;ETA_shape_y;FCSP3;FNSA1;FNSA2;FNSA3;FNSA4;FNSA5;FPSA1;FPSA2;FPSA3;FPSA4;FPSA5;FilterItLogS;GATS1Z;GATS1are;GATS1c;GATS1d;GATS1dv;GATS1i;GATS1m;GATS1p;GATS1pe;GATS1s;GATS1se;GATS1v;GATS2Z;GATS2are;GATS2c;GATS2d;GATS2dv;GATS2i;GATS2m;GATS2p;GATS2pe;GATS2s;GATS2se;GATS2v;GATS3Z;GATS3are;GATS3c;GATS3d;GATS3dv;GATS3i;GATS3m;GATS3p;GATS3pe;GATS3s;GATS3se;GATS3v;GATS4Z;GATS4are;GATS4c;GATS4d;GATS4dv;GATS4i;GATS4m;GATS4p;GATS4pe;GATS4s;GATS4se;GATS4v;GATS5Z;GATS5are;GATS5c;GATS5d;GATS5dv;GATS5i;GATS5m;GATS5p;GATS5pe;GATS5s;GATS5se;GATS5v;GATS6Z;GATS6are;GATS6c;GATS6d;GATS6dv;GATS6i;GATS6m;GATS6p;GATS6pe;GATS6s;GATS6se;GATS6v;GATS7Z;GATS7are;GATS7c;GATS7d;GATS7dv;GATS7i;GATS7m;GATS7p;GATS7pe;GATS7s;GATS7se;GATS7v;GATS8Z;GATS8are;GATS8c;GATS8d;GATS8dv;GATS8i;GATS8m;GATS8p;GATS8pe;GATS8s;GATS8se;GATS8v;GGI1;GGI10;GGI2;GGI3;GGI4;GGI5;GGI6;GGI7;GGI8;GGI9;GRAV;GRAVH;GRAVHp;GRAVp;GeomDiameter;GeomPetitjeanIndex;GeomRadius;GeomShapeIndex;GhoseFilter;HybRatio;IC0;IC1;IC2;IC3;IC4;IC5;JGI1;JGI10;JGI2;JGI3;JGI4;JGI5;JGI6;JGI7;JGI8;JGI9;JGT10;Kier1;Kier2;Kier3;LabuteASA;Lipinski;LogEE_A;LogEE_D;LogEE_Dt;LogEE_DzZ;LogEE_Dzare;LogEE_Dzi;LogEE_Dzm;LogEE_Dzp;LogEE_Dzpe;LogEE_Dzse;LogEE_Dzv;MATS1Z;MATS1are;MATS1c;MATS1d;MATS1dv;MATS1i;MATS1m;MATS1p;MATS1pe;MATS1s;MATS1se;MATS1v;MATS2Z;MATS2are;MATS2c;MATS2d;MATS2dv;MATS2i;MATS2m;MATS2p;MATS2pe;MATS2s;MATS2se;MATS2v;MATS3Z;MATS3are;MATS3c;MATS3d;MATS3dv;MATS3i;MATS3m;MATS3p;MATS3pe;MATS3s;MATS3se;MATS3v;MATS4Z;MATS4are;MATS4c;MATS4d;MATS4dv;MATS4i;MATS4m;MATS4p;MATS4pe;MATS4s;MATS4se;MATS4v;MATS5Z;MATS5are;MATS5c;MATS5d;MATS5dv;MATS5i;MATS5m;MATS5p;MATS5pe;MATS5s;MATS5se;MATS5v;MATS6Z;MATS6are;MATS6c;MATS6d;MATS6dv;MATS6i;MATS6m;MATS6p;MATS6pe;MATS6s;MATS6se;MATS6v;MATS7Z;MATS7are;MATS7c;MATS7d;MATS7dv;MATS7i;MATS7m;MATS7p;MATS7pe;MATS7s;MATS7se;MATS7v;MATS8Z;MATS8are;MATS8c;MATS8d;MATS8dv;MATS8i;MATS8m;MATS8p;MATS8pe;MATS8s;MATS8se;MATS8v;MDEC-22;MDEC-23;MDEC-33;MIC0;MIC1;MIC2;MIC3;MIC4;MIC5;MID;MID_C;MID_N;MID_O;MID_X;MID_h;MOMI-X;MOMI-Y;MOMI-Z;MPC10;MPC2;MPC3;MPC4;MPC5;MPC6;MPC7;MPC8;MPC9;MW;MWC01;MWC02;MWC03;MWC04;MWC05;MWC06;MWC07;MWC08;MWC09;MWC10;MZ;Mare;Mi;Mm;Mor01;Mor01m;Mor01p;Mor01se;Mor01v;Mor02;Mor02m;Mor02p;Mor02se;Mor02v;Mor03;Mor03m;Mor03p;Mor03se;Mor03v;Mor04;Mor04m;Mor04p;Mor04se;Mor04v;Mor05;Mor05m;Mor05p;Mor05se;Mor05v;Mor06;Mor06m;Mor06p;Mor06se;Mor06v;Mor07;Mor07m;Mor07p;Mor07se;Mor07v;Mor08;Mor08m;Mor08p;Mor08se;Mor08v;Mor09;Mor09m;Mor09p;Mor09se;Mor09v;Mor10;Mor10m;Mor10p;Mor10se;Mor10v;Mor11;Mor11m;Mor11p;Mor11se;Mor11v;Mor12;Mor12m;Mor12p;Mor12se;Mor12v;Mor13;Mor13m;Mor13p;Mor13se;Mor13v;Mor14;Mor14m;Mor14p;Mor14se;Mor14v;Mor15;Mor15m;Mor15p;Mor15se;Mor15v;Mor16;Mor16m;Mor16p;Mor16se;Mor16v;Mor17;Mor17m;Mor17p;Mor17se;Mor17v;Mor18;Mor18m;Mor18p;Mor18se;Mor18v;Mor19;Mor19m;Mor19p;Mor19se;Mor19v;Mor20;Mor20m;Mor20p;Mor20se;Mor20v;Mor21;Mor21m;Mor21p;Mor21se;Mor21v;Mor22;Mor22m;Mor22p;Mor22se;Mor22v;Mor23;Mor23m;Mor23p;Mor23se;Mor23v;Mor24;Mor24m;Mor24p;Mor24se;Mor24v;Mor25;Mor25m;Mor25p;Mor25se;Mor25v;Mor26;Mor26m;Mor26p;Mor26se;Mor26v;Mor27;Mor27m;Mor27p;Mor27se;Mor27v;Mor28;Mor28m;Mor28p;Mor28se;Mor28v;Mor29;Mor29m;Mor29p;Mor29se;Mor29v;Mor30;Mor30m;Mor30p;Mor30se;Mor30v;Mor31;Mor31m;Mor31p;Mor31se;Mor31v;Mor32;Mor32m;Mor32p;Mor32se;Mor32v;Mp;Mpe;Mse;Mv;NaaCH;NaaN;NaaNH;NaaO;NaaS;NaaaC;NaasC;NaasN;NdCH2;NdO;NdS;NddsN;NddssS;NdsCH;NdsN;NdssC;NsBr;NsCH3;NsCl;NsF;NsNH2;NsOH;NssCH2;NssNH;NssO;NssS;NsssCH;NsssN;NssssC;NtN;NtsC;PEOE_VSA1;PEOE_VSA10;PEOE_VSA11;PEOE_VSA12;PEOE_VSA13;PEOE_VSA2;PEOE_VSA3;PEOE_VSA4;PEOE_VSA5;PEOE_VSA6;PEOE_VSA7;PEOE_VSA8;PEOE_VSA9;PNSA1;PNSA2;PNSA3;PNSA4;PNSA5;PPSA1;PPSA2;PPSA3;PPSA4;PPSA5;PetitjeanIndex;RASA;RNCG;RNCS;RPCG;RPCS;RPSA;Radius;RotRatio;SIC0;SIC1;SIC2;SIC3;SIC4;SIC5;SLogP;SM1_Dt;SM1_DzZ;SM1_Dzare;SM1_Dzi;SM1_Dzm;SM1_Dzp;SM1_Dzpe;SM1_Dzse;SM1_Dzv;SMR;SMR_VSA1;SMR_VSA2;SMR_VSA3;SMR_VSA4;SMR_VSA5;SMR_VSA6;SMR_VSA7;SMR_VSA8;SMR_VSA9;SRW02;SRW03;SRW04;SRW05;SRW06;SRW07;SRW08;SRW09;SRW10;SZ;SaaCH;SaaN;SaaNH;SaaO;SaaS;SaaaC;SaasC;SaasN;Sare;SdCH2;SdO;SdS;SddsN;SddssS;SdsCH;SdsN;SdssC;Si;SlogP_VSA1;SlogP_VSA10;SlogP_VSA11;SlogP_VSA2;SlogP_VSA3;SlogP_VSA4;SlogP_VSA5;SlogP_VSA6;SlogP_VSA7;SlogP_VSA8;SlogP_VSA9;Sm;Sp;SpAD_A;SpAD_D;SpAD_Dt;SpAD_DzZ;SpAD_Dzare;SpAD_Dzi;SpAD_Dzm;SpAD_Dzp;SpAD_Dzpe;SpAD_Dzse;SpAD_Dzv;SpAbs_A;SpAbs_D;SpAbs_Dt;SpAbs_DzZ;SpAbs_Dzare;SpAbs_Dzi;SpAbs_Dzm;SpAbs_Dzp;SpAbs_Dzpe;SpAbs_Dzse;SpAbs_Dzv;SpDiam_A;SpDiam_D;SpDiam_Dt;SpDiam_DzZ;SpDiam_Dzare;SpDiam_Dzi;SpDiam_Dzm;SpDiam_Dzp;SpDiam_Dzpe;SpDiam_Dzse;SpDiam_Dzv;SpMAD_A;SpMAD_D;SpMAD_Dt;SpMAD_DzZ;SpMAD_Dzare;SpMAD_Dzi;SpMAD_Dzm;SpMAD_Dzp;SpMAD_Dzpe;SpMAD_Dzse;SpMAD_Dzv;SpMax_A;SpMax_D;SpMax_Dt;SpMax_DzZ;SpMax_Dzare;SpMax_Dzi;SpMax_Dzm;SpMax_Dzp;SpMax_Dzpe;SpMax_Dzse;SpMax_Dzv;Spe;SsBr;SsCH3;SsCl;SsF;SsNH2;SsOH;Sse;SssCH2;SssNH;SssO;SssS;SsssCH;SsssN;SssssC;StN;StsC;Sv;TASA;TIC0;TIC1;TIC2;TIC3;TIC4;TIC5;TMPC10;TMWC10;TPSA;TSRW10;TopoPSA;TopoPSA(NO);TopoShapeIndex;TpiPC10;VAdjMat;VE1_A;VE1_D;VE1_Dt;VE1_DzZ;VE1_Dzare;VE1_Dzi;VE1_Dzm;VE1_Dzp;VE1_Dzpe;VE1_Dzse;VE1_Dzv;VE2_A;VE2_D;VE2_Dt;VE2_DzZ;VE2_Dzare;VE2_Dzi;VE2_Dzm;VE2_Dzp;VE2_Dzpe;VE2_Dzse;VE2_Dzv;VE3_A;VE3_D;VE3_Dt;VE3_DzZ;VE3_Dzare;VE3_Dzi;VE3_Dzm;VE3_Dzp;VE3_Dzpe;VE3_Dzse;VE3_Dzv;VMcGowan;VR1_A;VR1_D;VR1_Dt;VR1_DzZ;VR1_Dzare;VR1_Dzi;VR1_Dzm;VR1_Dzp;VR1_Dzpe;VR1_Dzse;VR1_Dzv;VR2_A;VR2_D;VR2_Dt;VR2_DzZ;VR2_Dzare;VR2_Dzi;VR2_Dzm;VR2_Dzp;VR2_Dzpe;VR2_Dzse;VR2_Dzv;VR3_A;VR3_D;VR3_Dt;VR3_DzZ;VR3_Dzare;VR3_Dzi;VR3_Dzm;VR3_Dzp;VR3_Dzpe;VR3_Dzse;VR3_Dzv;VSA_EState1;VSA_EState2;VSA_EState3;VSA_EState4;VSA_EState5;VSA_EState6;VSA_EState7;VSA_EState8;VSA_EState9;Vabc;WNSA1;WNSA2;WNSA3;WNSA4;WNSA5;WPSA1;WPSA2;WPSA3;WPSA4;WPSA5;WPath;WPol;Xc-3d;Xc-3dv;Xc-4d;Xc-4dv;Xc-5d;Xc-5dv;Xc-6d;Xc-6dv;Xch-3d;Xch-3dv;Xch-4d;Xch-4dv;Xch-5d;Xch-5dv;Xch-6d;Xch-6dv;Xch-7d;Xch-7dv;Xp-0d;Xp-0dv;Xp-1d;Xp-1dv;Xp-2d;Xp-2dv;Xp-3d;Xp-3dv;Xp-4d;Xp-4dv;Xp-5d;Xp-5dv;Xp-6d;Xp-6dv;Xp-7d;Xp-7dv;Xpc-4d;Xpc-4dv;Xpc-5d;Xpc-5dv;Xpc-6d;Xpc-6dv;ZMIC0;ZMIC1;ZMIC2;ZMIC3;ZMIC4;ZMIC5;Zagreb1;Zagreb2;apol;bpol;fMF;fragCpx;mZagreb1;mZagreb2;n10AHRing;n10ARing;n10FAHRing;n10FARing;n10FHRing;n10FRing;n10FaHRing;n10FaRing;n10HRing;n10Ring;n10aHRing;n10aRing;n11AHRing;n11ARing;n11FAHRing;n11FARing;n11FHRing;n11FRing;n11FaHRing;n11FaRing;n11HRing;n11Ring;n11aHRing;n11aRing;n12AHRing;n12ARing;n12FAHRing;n12FARing;n12FHRing;n12FRing;n12FaHRing;n12FaRing;n12HRing;n12Ring;n12aHRing;n12aRing;n3AHRing;n3ARing;n3HRing;n3Ring;n3aHRing;n3aRing;n4AHRing;n4ARing;n4FAHRing;n4FARing;n4FHRing;n4FRing;n4FaHRing;n4FaRing;n4HRing;n4Ring;n4aHRing;n4aRing;n5AHRing;n5ARing;n5FAHRing;n5FARing;n5FHRing;n5FRing;n5FaHRing;n5FaRing;n5HRing;n5Ring;n5aHRing;n5aRing;n6AHRing;n6ARing;n6FAHRing;n6FARing;n6FHRing;n6FRing;n6FaHRing;n6FaRing;n6HRing;n6Ring;n6aHRing;n6aRing;n7AHRing;n7ARing;n7FAHRing;n7FARing;n7FHRing;n7FRing;n7FaHRing;n7FaRing;n7HRing;n7Ring;n7aHRing;n7aRing;n8AHRing;n8ARing;n8FAHRing;n8FARing;n8FHRing;n8FRing;n8FaHRing;n8FaRing;n8HRing;n8Ring;n8aHRing;n8aRing;n9AHRing;n9ARing;n9FAHRing;n9FARing;n9FHRing;n9FRing;n9FaHRing;n9FaRing;n9HRing;n9Ring;n9aHRing;n9aRing;nAHRing;nARing;nAcid;nAromAtom;nAromBond;nAtom;nB;nBase;nBonds;nBondsA;nBondsD;nBondsKD;nBondsKS;nBondsM;nBondsO;nBondsS;nBondsT;nBr;nBridgehead;nC;nCl;nF;nFAHRing;nFARing;nFHRing;nFRing;nFaHRing;nFaRing;nG12AHRing;nG12ARing;nG12FAHRing;nG12FARing;nG12FHRing;nG12FRing;nG12FaHRing;nG12FaRing;nG12HRing;nG12Ring;nG12aHRing;nG12aRing;nH;nHBAcc;nHBDon;nHRing;nHeavyAtom;nHetero;nI;nN;nO;nP;nRing;nRot;nS;nSpiro;nX;naHRing;naRing;piPC1;piPC10;piPC2;piPC3;piPC4;piPC5;piPC6;piPC7;piPC8;piPC9,0,mordred rdkit_raw,MaxEStateIndex;MinEStateIndex;MaxAbsEStateIndex;MinAbsEStateIndex;qed;MolWt;HeavyAtomMolWt;ExactMolWt;NumValenceElectrons;NumRadicalElectrons;MaxPartialCharge;MinPartialCharge;MaxAbsPartialCharge;MinAbsPartialCharge;FpDensityMorgan1;FpDensityMorgan2;FpDensityMorgan3;BalabanJ;BertzCT;Chi0;Chi0n;Chi0v;Chi1;Chi1n;Chi1v;Chi2n;Chi2v;Chi3n;Chi3v;Chi4n;Chi4v;HallKierAlpha;Ipc;Kappa1;Kappa2;Kappa3;LabuteASA;PEOE_VSA1;PEOE_VSA10;PEOE_VSA11;PEOE_VSA12;PEOE_VSA13;PEOE_VSA14;PEOE_VSA2;PEOE_VSA3;PEOE_VSA4;PEOE_VSA5;PEOE_VSA6;PEOE_VSA7;PEOE_VSA8;PEOE_VSA9;SMR_VSA1;SMR_VSA10;SMR_VSA2;SMR_VSA3;SMR_VSA4;SMR_VSA5;SMR_VSA6;SMR_VSA7;SMR_VSA8;SMR_VSA9;SlogP_VSA1;SlogP_VSA10;SlogP_VSA11;SlogP_VSA12;SlogP_VSA2;SlogP_VSA3;SlogP_VSA4;SlogP_VSA5;SlogP_VSA6;SlogP_VSA7;SlogP_VSA8;SlogP_VSA9;TPSA;EState_VSA1;EState_VSA10;EState_VSA11;EState_VSA2;EState_VSA3;EState_VSA4;EState_VSA5;EState_VSA6;EState_VSA7;EState_VSA8;EState_VSA9;VSA_EState1;VSA_EState10;VSA_EState2;VSA_EState3;VSA_EState4;VSA_EState5;VSA_EState6;VSA_EState7;VSA_EState8;VSA_EState9;FractionCSP3;HeavyAtomCount;NHOHCount;NOCount;NumAliphaticCarbocycles;NumAliphaticHeterocycles;NumAliphaticRings;NumAromaticCarbocycles;NumAromaticHeterocycles;NumAromaticRings;NumHAcceptors;NumHDonors;NumHeteroatoms;NumRotatableBonds;NumSaturatedCarbocycles;NumSaturatedHeterocycles;NumSaturatedRings;RingCount;MolLogP;MolMR;fr_Al_COO;fr_Al_OH;fr_Al_OH_noTert;fr_ArN;fr_Ar_COO;fr_Ar_N;fr_Ar_NH;fr_Ar_OH;fr_COO;fr_COO2;fr_C_O;fr_C_O_noCOO;fr_C_S;fr_HOCCN;fr_Imine;fr_NH0;fr_NH1;fr_NH2;fr_N_O;fr_Ndealkylation1;fr_Ndealkylation2;fr_Nhpyrrole;fr_SH;fr_aldehyde;fr_alkyl_carbamate;fr_alkyl_halide;fr_allylic_oxid;fr_amide;fr_amidine;fr_aniline;fr_aryl_methyl;fr_azide;fr_azo;fr_barbitur;fr_benzene;fr_benzodiazepine;fr_bicyclic;fr_diazo;fr_dihydropyridine;fr_epoxide;fr_ester;fr_ether;fr_furan;fr_guanido;fr_halogen;fr_hdrzine;fr_hdrzone;fr_imidazole;fr_imide;fr_isocyan;fr_isothiocyan;fr_ketone;fr_ketone_Topliss;fr_lactam;fr_lactone;fr_methoxy;fr_morpholine;fr_nitrile;fr_nitro;fr_nitro_arom;fr_nitro_arom_nonortho;fr_nitroso;fr_oxazole;fr_oxime;fr_para_hydroxylation;fr_phenol;fr_phenol_noOrthoHbond;fr_phos_acid;fr_phos_ester;fr_piperdine;fr_piperzine;fr_priamide;fr_prisulfonamd;fr_pyridine;fr_quatN;fr_sulfide;fr_sulfonamd;fr_sulfone;fr_term_acetylene;fr_tetrazole;fr_thiazole;fr_thiocyan;fr_thiophene;fr_unbrch_alkane;fr_urea,0,rdkit +rdkit_scaled,MaxEStateIndex_per_heavyatom;MinEStateIndex_per_heavyatom;MaxAbsEStateIndex_per_heavyatom;MinAbsEStateIndex;qed_per_heavyatom;MolWt_per_heavyatom;HeavyAtomMolWt_per_heavyatom;ExactMolWt_per_heavyatom;NumValenceElectrons;NumRadicalElectrons;MaxPartialCharge;MinPartialCharge;MaxAbsPartialCharge;MinAbsPartialCharge;FpDensityMorgan1_per_heavyatom;FpDensityMorgan2_per_heavyatom;FpDensityMorgan3_per_heavyatom;BalabanJ;BertzCT_per_heavyatom;Chi0_per_heavyatom;Chi0n_per_heavyatom;Chi0v_per_heavyatom;Chi1_per_heavyatom;Chi1n_per_heavyatom;Chi1v_per_heavyatom;Chi2n_per_heavyatom;Chi2v_per_heavyatom;Chi3n_per_heavyatom;Chi3v_per_heavyatom;Chi4n_per_heavyatom;Chi4v_per_heavyatom;HallKierAlpha_per_heavyatom;AvgIpc;Kappa1_per_heavyatom;Kappa2_per_heavyatom;Kappa3;LabuteASA_per_heavyatom;PEOE_VSA1_per_heavyatom;PEOE_VSA10_per_heavyatom;PEOE_VSA11_per_heavyatom;PEOE_VSA12_per_heavyatom;PEOE_VSA13;PEOE_VSA14;PEOE_VSA2_per_heavyatom;PEOE_VSA3;PEOE_VSA4;PEOE_VSA5;PEOE_VSA6_per_heavyatom;PEOE_VSA7_per_heavyatom;PEOE_VSA8_per_heavyatom;PEOE_VSA9_per_heavyatom;SMR_VSA1_per_heavyatom;SMR_VSA10_per_heavyatom;SMR_VSA2;SMR_VSA3_per_heavyatom;SMR_VSA4;SMR_VSA5_per_heavyatom;SMR_VSA6;SMR_VSA7;SMR_VSA8;SMR_VSA9;SlogP_VSA1_per_heavyatom;SlogP_VSA10;SlogP_VSA11;SlogP_VSA12;SlogP_VSA2_per_heavyatom;SlogP_VSA3_per_heavyatom;SlogP_VSA4;SlogP_VSA5_per_heavyatom;SlogP_VSA6;SlogP_VSA7;SlogP_VSA8;SlogP_VSA9;TPSA_per_heavyatom;EState_VSA1_per_heavyatom;EState_VSA10_per_heavyatom;EState_VSA11_per_heavyatom;EState_VSA2;EState_VSA3;EState_VSA4;EState_VSA5;EState_VSA6;EState_VSA7;EState_VSA8;EState_VSA9_per_heavyatom;VSA_EState1_per_heavyatom;VSA_EState10_per_heavyatom;VSA_EState2_per_heavyatom;VSA_EState3_per_heavyatom;VSA_EState4_per_heavyatom;VSA_EState5_per_heavyatom;VSA_EState6_per_heavyatom;VSA_EState7_per_heavyatom;VSA_EState8_per_heavyatom;VSA_EState9_per_heavyatom;FractionCSP3;HeavyAtomCount;NHOHCount;NOCount;NumAliphaticCarbocycles;NumAliphaticHeterocycles;NumAliphaticRings;NumAromaticCarbocycles;NumAromaticHeterocycles;NumAromaticRings;NumHAcceptors;NumHDonors;NumHeteroatoms;NumRotatableBonds;NumSaturatedCarbocycles;NumSaturatedHeterocycles;NumSaturatedRings;RingCount;MolLogP;MolMR_per_heavyatom;fr_Al_COO;fr_Al_OH;fr_Al_OH_noTert;fr_ArN;fr_Ar_COO;fr_Ar_N;fr_Ar_NH;fr_Ar_OH;fr_COO;fr_COO2;fr_C_O;fr_C_O_noCOO;fr_C_S;fr_HOCCN;fr_Imine;fr_NH0;fr_NH1;fr_NH2;fr_N_O;fr_Ndealkylation1;fr_Ndealkylation2;fr_Nhpyrrole;fr_SH;fr_aldehyde;fr_alkyl_carbamate;fr_alkyl_halide;fr_allylic_oxid;fr_amide;fr_amidine;fr_aniline;fr_aryl_methyl;fr_azide;fr_azo;fr_barbitur;fr_benzene;fr_benzodiazepine;fr_bicyclic;fr_diazo;fr_dihydropyridine;fr_epoxide;fr_ester;fr_ether;fr_furan;fr_guanido;fr_halogen;fr_hdrzine;fr_hdrzone;fr_imidazole;fr_imide;fr_isocyan;fr_isothiocyan;fr_ketone;fr_ketone_Topliss;fr_lactam;fr_lactone;fr_methoxy;fr_morpholine;fr_nitrile;fr_nitro;fr_nitro_arom;fr_nitro_arom_nonortho;fr_nitroso;fr_oxazole;fr_oxime;fr_para_hydroxylation;fr_phenol;fr_phenol_noOrthoHbond;fr_phos_acid;fr_phos_ester;fr_piperdine;fr_piperzine;fr_priamide;fr_prisulfonamd;fr_pyridine;fr_quatN;fr_sulfide;fr_sulfonamd;fr_sulfone;fr_term_acetylene;fr_tetrazole;fr_thiazole;fr_thiocyan;fr_thiophene;fr_unbrch_alkane;fr_urea,1,rdkit +mordred_filtered_scaled,AATS0Z;AATS0are;AATS0d;AATS0dv;AATS0i;AATS0m;AATS0p;AATS0pe;AATS0s;AATS0se;AATS0v;AATS1Z;AATS1are;AATS1d;AATS1dv;AATS1i;AATS1m;AATS1p;AATS1pe;AATS1s;AATS1se;AATS1v;AATS2Z;AATS2are;AATS2d;AATS2dv;AATS2i;AATS2m;AATS2p;AATS2pe;AATS2s;AATS2se;AATS2v;AATS3Z;AATS3are;AATS3d;AATS3dv;AATS3i;AATS3m;AATS3p;AATS3pe;AATS3s;AATS3se;AATS3v;AATS4Z;AATS4are;AATS4d;AATS4dv;AATS4i;AATS4m;AATS4p;AATS4pe;AATS4s;AATS4se;AATS4v;AATS5Z;AATS5are;AATS5d;AATS5dv;AATS5i;AATS5m;AATS5p;AATS5pe;AATS5s;AATS5se;AATS5v;AATS6Z;AATS6are;AATS6d;AATS6dv;AATS6i;AATS6m;AATS6p;AATS6pe;AATS6s;AATS6se;AATS6v;AATS7Z;AATS7are;AATS7d;AATS7dv;AATS7i;AATS7m;AATS7p;AATS7pe;AATS7s;AATS7se;AATS7v;AATS8Z;AATS8are;AATS8d;AATS8dv;AATS8i;AATS8m;AATS8p;AATS8pe;AATS8s;AATS8se;AATS8v;AATSC0Z;AATSC0are;AATSC0c;AATSC0d;AATSC0dv;AATSC0i;AATSC0m;AATSC0p;AATSC0pe;AATSC0s;AATSC0se;AATSC0v;AATSC1Z;AATSC1are;AATSC1c;AATSC1d;AATSC1dv;AATSC1i;AATSC1m;AATSC1p;AATSC1pe;AATSC1s;AATSC1se;AATSC1v;AATSC2Z;AATSC2are;AATSC2c;AATSC2d;AATSC2dv;AATSC2i;AATSC2m;AATSC2p;AATSC2pe;AATSC2s;AATSC2se;AATSC2v;AATSC3Z;AATSC3are;AATSC3c;AATSC3d;AATSC3dv;AATSC3i;AATSC3m;AATSC3p;AATSC3pe;AATSC3s;AATSC3se;AATSC3v;AATSC4Z;AATSC4are;AATSC4c;AATSC4d;AATSC4dv;AATSC4i;AATSC4m;AATSC4p;AATSC4pe;AATSC4s;AATSC4se;AATSC4v;AATSC5Z;AATSC5are;AATSC5c;AATSC5d;AATSC5dv;AATSC5i;AATSC5m;AATSC5p;AATSC5pe;AATSC5s;AATSC5se;AATSC5v;AATSC6Z;AATSC6are;AATSC6c;AATSC6d;AATSC6dv;AATSC6i;AATSC6m;AATSC6p;AATSC6pe;AATSC6s;AATSC6se;AATSC6v;AATSC7Z;AATSC7are;AATSC7c;AATSC7d;AATSC7dv;AATSC7i;AATSC7m;AATSC7p;AATSC7pe;AATSC7s;AATSC7se;AATSC7v;AATSC8Z;AATSC8are;AATSC8c;AATSC8d;AATSC8dv;AATSC8i;AATSC8m;AATSC8p;AATSC8pe;AATSC8s;AATSC8se;AATSC8v;ABC;ABCGG;AETA_alpha;AETA_beta;AETA_beta_ns;AETA_beta_ns_d;AETA_beta_s;AETA_dBeta;AETA_eta_per_heavyatom;AETA_eta_B;AETA_eta_BR;AETA_eta_F_per_heavyatom;AETA_eta_FL;AETA_eta_L;AETA_eta_R_per_heavyatom;AETA_eta_RL;AMID;AMID_C;AMID_N;AMID_O;AMID_X;AMID_h;AMW;ATS0Z;ATS0are_per_heavyatom;ATS0d;ATS0dv_per_heavyatom;ATS0i_per_heavyatom;ATS0m_per_heavyatom;ATS0p_per_heavyatom;ATS0pe_per_heavyatom;ATS0s_per_heavyatom;ATS0se_per_heavyatom;ATS0v_per_heavyatom;ATS1Z;ATS1are_per_heavyatom;ATS1d;ATS1dv_per_heavyatom;ATS1i_per_heavyatom;ATS1m_per_heavyatom;ATS1p_per_heavyatom;ATS1pe_per_heavyatom;ATS1s_per_heavyatom;ATS1se_per_heavyatom;ATS1v_per_heavyatom;ATS2Z;ATS2are_per_heavyatom;ATS2d;ATS2dv_per_heavyatom;ATS2i_per_heavyatom;ATS2m_per_heavyatom;ATS2p_per_heavyatom;ATS2pe_per_heavyatom;ATS2s_per_heavyatom;ATS2se_per_heavyatom;ATS2v_per_heavyatom;ATS3Z;ATS3are_per_heavyatom;ATS3d;ATS3dv_per_heavyatom;ATS3i_per_heavyatom;ATS3m_per_heavyatom;ATS3p_per_heavyatom;ATS3pe_per_heavyatom;ATS3s_per_heavyatom;ATS3se_per_heavyatom;ATS3v_per_heavyatom;ATS4Z;ATS4are_per_heavyatom;ATS4d;ATS4dv_per_heavyatom;ATS4i_per_heavyatom;ATS4m_per_heavyatom;ATS4p_per_heavyatom;ATS4pe_per_heavyatom;ATS4s_per_heavyatom;ATS4se_per_heavyatom;ATS4v_per_heavyatom;ATS5Z;ATS5are_per_heavyatom;ATS5d;ATS5dv_per_heavyatom;ATS5i_per_heavyatom;ATS5m_per_heavyatom;ATS5p_per_heavyatom;ATS5pe_per_heavyatom;ATS5s_per_heavyatom;ATS5se_per_heavyatom;ATS5v_per_heavyatom;ATS6Z;ATS6are_per_heavyatom;ATS6d;ATS6dv_per_heavyatom;ATS6i_per_heavyatom;ATS6m_per_heavyatom;ATS6p_per_heavyatom;ATS6pe_per_heavyatom;ATS6s_per_heavyatom;ATS6se_per_heavyatom;ATS6v_per_heavyatom;ATS7Z;ATS7are_per_heavyatom;ATS7d;ATS7dv_per_heavyatom;ATS7i_per_heavyatom;ATS7m_per_heavyatom;ATS7p_per_heavyatom;ATS7pe_per_heavyatom;ATS7s_per_heavyatom;ATS7se_per_heavyatom;ATS7v_per_heavyatom;ATS8Z;ATS8are_per_heavyatom;ATS8d;ATS8dv_per_heavyatom;ATS8i_per_heavyatom;ATS8m_per_heavyatom;ATS8p_per_heavyatom;ATS8pe_per_heavyatom;ATS8s_per_heavyatom;ATS8se_per_heavyatom;ATS8v_per_heavyatom;ATSC0Z;ATSC0are_per_heavyatom;ATSC0c_per_heavyatom;ATSC0d_per_heavyatom;ATSC0dv_per_heavyatom;ATSC0i_per_heavyatom;ATSC0m;ATSC0p_per_heavyatom;ATSC0pe_per_heavyatom;ATSC0s_per_heavyatom;ATSC0se_per_heavyatom;ATSC0v_per_heavyatom;ATSC1Z;ATSC1are;ATSC1c_per_heavyatom;ATSC1d_per_heavyatom;ATSC1dv_per_heavyatom;ATSC1i;ATSC1m;ATSC1p;ATSC1pe;ATSC1s;ATSC1se;ATSC1v;ATSC2Z;ATSC2are;ATSC2c;ATSC2d;ATSC2dv;ATSC2i;ATSC2m;ATSC2p;ATSC2pe;ATSC2s;ATSC2se;ATSC2v;ATSC3Z;ATSC3are;ATSC3c_per_heavyatom;ATSC3d;ATSC3dv;ATSC3i;ATSC3m;ATSC3p;ATSC3pe;ATSC3s;ATSC3se;ATSC3v;ATSC4Z;ATSC4are;ATSC4c_per_heavyatom;ATSC4d;ATSC4dv;ATSC4i;ATSC4m;ATSC4p;ATSC4pe;ATSC4s;ATSC4se;ATSC4v;ATSC5Z;ATSC5are;ATSC5c;ATSC5d;ATSC5dv;ATSC5i;ATSC5m;ATSC5p;ATSC5pe;ATSC5s;ATSC5se;ATSC5v;ATSC6Z;ATSC6are;ATSC6c;ATSC6d;ATSC6dv;ATSC6i;ATSC6m;ATSC6p;ATSC6pe;ATSC6s;ATSC6se;ATSC6v;ATSC7Z;ATSC7are;ATSC7c_per_heavyatom;ATSC7d;ATSC7dv;ATSC7i;ATSC7m;ATSC7p;ATSC7pe;ATSC7s;ATSC7se;ATSC7v;ATSC8Z;ATSC8are;ATSC8c;ATSC8d;ATSC8dv;ATSC8i;ATSC8m;ATSC8p;ATSC8pe;ATSC8s;ATSC8se;ATSC8v;AXp-0d;AXp-0dv;AXp-1d;AXp-1dv;AXp-2d;AXp-2dv;AXp-3d;AXp-3dv;AXp-4d;AXp-4dv;AXp-5d;AXp-5dv;AXp-6d;AXp-6dv;AXp-7d;AXp-7dv;BCUTZ-1h;BCUTZ-1l;BCUTare-1h;BCUTare-1l;BCUTc-1h;BCUTc-1l;BCUTd-1h;BCUTd-1l;BCUTdv-1h;BCUTdv-1l;BCUTi-1h;BCUTi-1l;BCUTm-1h;BCUTm-1l;BCUTp-1h;BCUTp-1l;BCUTpe-1h;BCUTpe-1l;BCUTs-1h;BCUTs-1l;BCUTse-1h;BCUTse-1l;BCUTv-1h;BCUTv-1l;BIC0_per_heavyatom;BIC1_per_heavyatom;BIC2;BIC3;BIC4;BIC5;BalabanJ;BertzCT_per_heavyatom;C1SP1;C1SP2;C1SP3;C2SP1;C2SP2;C2SP3;C3SP2;C3SP3;C4SP3;CIC0_per_heavyatom;CIC1_per_heavyatom;CIC2_per_heavyatom;CIC3_per_heavyatom;CIC4;CIC5;DPSA1_per_heavyatom;DPSA2_per_heavyatom;DPSA3_per_heavyatom;DPSA4_per_heavyatom;DPSA5_per_heavyatom;DetourIndex;Diameter;ECIndex;EState_VSA1_per_heavyatom;EState_VSA10_per_heavyatom;EState_VSA2_per_heavyatom;EState_VSA3;EState_VSA4;EState_VSA5;EState_VSA6;EState_VSA7;EState_VSA8;EState_VSA9;ETA_alpha_per_heavyatom;ETA_beta_per_heavyatom;ETA_beta_ns_per_heavyatom;ETA_beta_ns_d;ETA_beta_s_per_heavyatom;ETA_dAlpha_A;ETA_dAlpha_B;ETA_dBeta_per_heavyatom;ETA_dEpsilon_A;ETA_dEpsilon_B;ETA_dEpsilon_C;ETA_dEpsilon_D;ETA_dPsi_A;ETA_dPsi_B;ETA_epsilon_1;ETA_epsilon_2;ETA_epsilon_3;ETA_epsilon_4;ETA_epsilon_5;ETA_eta_per_heavyatom;ETA_eta_B_per_heavyatom;ETA_eta_BR_per_heavyatom;ETA_eta_F_per_heavyatom;ETA_eta_FL_per_heavyatom;ETA_eta_L_per_heavyatom;ETA_eta_R_per_heavyatom;ETA_eta_RL_per_heavyatom;ETA_psi_1;ETA_shape_p;ETA_shape_x;ETA_shape_y;FCSP3;FNSA1;FNSA2_per_heavyatom;FNSA3;FNSA4;FNSA5;FPSA1;FPSA2_per_heavyatom;FPSA3;FPSA4;FPSA5;FilterItLogS;GATS1Z;GATS1are;GATS1c;GATS1d;GATS1dv;GATS1i;GATS1m;GATS1p;GATS1pe;GATS1s;GATS1se;GATS1v;GATS2Z;GATS2are;GATS2c;GATS2d;GATS2dv;GATS2i;GATS2m;GATS2p;GATS2pe;GATS2s;GATS2se;GATS2v;GATS3Z;GATS3are;GATS3c;GATS3d;GATS3dv;GATS3i;GATS3m;GATS3p;GATS3pe;GATS3s;GATS3se;GATS3v;GATS4Z;GATS4are;GATS4c;GATS4d;GATS4dv;GATS4i;GATS4m;GATS4p;GATS4pe;GATS4s;GATS4se;GATS4v;GATS5Z;GATS5are;GATS5c;GATS5d;GATS5dv;GATS5i;GATS5m;GATS5p;GATS5pe;GATS5s;GATS5se;GATS5v;GATS6Z;GATS6are;GATS6c;GATS6d;GATS6dv;GATS6i;GATS6m;GATS6p;GATS6pe;GATS6s;GATS6se;GATS6v;GATS7Z;GATS7are;GATS7c;GATS7d;GATS7dv;GATS7i;GATS7m;GATS7p;GATS7pe;GATS7s;GATS7se;GATS7v;GATS8Z;GATS8are;GATS8c;GATS8d;GATS8dv;GATS8i;GATS8m;GATS8p;GATS8pe;GATS8s;GATS8se;GATS8v;GGI1_per_heavyatom;GGI10_per_heavyatom;GGI2_per_heavyatom;GGI3_per_heavyatom;GGI4_per_heavyatom;GGI5_per_heavyatom;GGI6_per_heavyatom;GGI7_per_heavyatom;GGI8_per_heavyatom;GGI9_per_heavyatom;GRAV_per_heavyatom;GRAVH_per_heavyatom;GRAVHp_per_heavyatom;GRAVp_per_heavyatom;GeomDiameter_per_heavyatom;GeomPetitjeanIndex;GeomRadius_per_heavyatom;GeomShapeIndex;GhoseFilter;HybRatio;IC0;IC1;IC2_per_heavyatom;IC3_per_heavyatom;IC4_per_heavyatom;IC5_per_heavyatom;JGI1;JGI10;JGI2;JGI3;JGI4;JGI5;JGI6;JGI7;JGI8;JGI9;JGT10;Kier1_per_heavyatom;Kier2_per_heavyatom;Kier3_per_heavyatom;LabuteASA_per_heavyatom;Lipinski;LogEE_A_per_heavyatom;LogEE_D_per_heavyatom;LogEE_Dt;LogEE_DzZ_per_heavyatom;LogEE_Dzare_per_heavyatom;LogEE_Dzi_per_heavyatom;LogEE_Dzm_per_heavyatom;LogEE_Dzp_per_heavyatom;LogEE_Dzpe_per_heavyatom;LogEE_Dzse_per_heavyatom;LogEE_Dzv_per_heavyatom;MATS1Z;MATS1are;MATS1c;MATS1d;MATS1dv;MATS1i;MATS1m;MATS1p;MATS1pe;MATS1s;MATS1se;MATS1v;MATS2Z;MATS2are;MATS2c;MATS2d;MATS2dv;MATS2i;MATS2m;MATS2p;MATS2pe;MATS2s;MATS2se;MATS2v;MATS3Z;MATS3are;MATS3c;MATS3d;MATS3dv;MATS3i;MATS3m;MATS3p;MATS3pe;MATS3s;MATS3se;MATS3v;MATS4Z;MATS4are;MATS4c;MATS4d;MATS4dv;MATS4i;MATS4m;MATS4p;MATS4pe;MATS4s;MATS4se;MATS4v;MATS5Z;MATS5are;MATS5c;MATS5d;MATS5dv;MATS5i;MATS5m;MATS5p;MATS5pe;MATS5s;MATS5se;MATS5v;MATS6Z;MATS6are;MATS6c;MATS6d;MATS6dv;MATS6i;MATS6m;MATS6p;MATS6pe;MATS6s;MATS6se;MATS6v;MATS7Z;MATS7are;MATS7c;MATS7d;MATS7dv;MATS7i;MATS7m;MATS7p;MATS7pe;MATS7s;MATS7se;MATS7v;MATS8Z;MATS8are;MATS8c;MATS8d;MATS8dv;MATS8i;MATS8m;MATS8p;MATS8pe;MATS8s;MATS8se;MATS8v;MDEC-22;MDEC-23;MDEC-33;MIC0;MIC1;MIC2;MIC3;MIC4;MIC5;MID_per_heavyatom;MID_C_per_heavyatom;MID_N_per_heavyatom;MID_O_per_heavyatom;MID_X;MID_h_per_heavyatom;MOMI-X_per_heavyatom;MOMI-Y_per_heavyatom;MOMI-Z_per_heavyatom;MPC10;MPC2;MPC3;MPC4;MPC5;MPC6;MPC7;MPC8;MPC9;MW_per_heavyatom;MWC01;MWC02_per_heavyatom;MWC03_per_heavyatom;MWC04_per_heavyatom;MWC05_per_heavyatom;MWC06_per_heavyatom;MWC07_per_heavyatom;MWC08_per_heavyatom;MWC09_per_heavyatom;MWC10_per_heavyatom;MZ;Mare;Mi;Mm;Mor01;Mor01m;Mor01p;Mor01se;Mor01v;Mor02;Mor02m;Mor02p;Mor02se;Mor02v;Mor03;Mor03m;Mor03p;Mor03se;Mor03v;Mor04;Mor04m;Mor04p;Mor04se;Mor04v;Mor05;Mor05m;Mor05p;Mor05se;Mor05v;Mor06;Mor06m;Mor06p;Mor06se;Mor06v;Mor07;Mor07m;Mor07p;Mor07se;Mor07v;Mor08;Mor08m;Mor08p;Mor08se;Mor08v;Mor09;Mor09m;Mor09p;Mor09se;Mor09v;Mor10;Mor10m;Mor10p;Mor10se;Mor10v;Mor11;Mor11m;Mor11p;Mor11se;Mor11v;Mor12;Mor12m;Mor12p;Mor12se;Mor12v;Mor13;Mor13m;Mor13p;Mor13se;Mor13v;Mor14;Mor14m;Mor14p;Mor14se;Mor14v;Mor15;Mor15m;Mor15p;Mor15se;Mor15v;Mor16;Mor16m;Mor16p;Mor16se;Mor16v;Mor17;Mor17m;Mor17p;Mor17se;Mor17v;Mor18;Mor18m;Mor18p;Mor18se;Mor18v;Mor19;Mor19m;Mor19p;Mor19se;Mor19v;Mor20;Mor20m;Mor20p;Mor20se;Mor20v;Mor21;Mor21m;Mor21p;Mor21se;Mor21v;Mor22;Mor22m;Mor22p;Mor22se;Mor22v;Mor23;Mor23m;Mor23p;Mor23se;Mor23v;Mor24;Mor24m;Mor24p;Mor24se;Mor24v;Mor25;Mor25m;Mor25p;Mor25se;Mor25v;Mor26;Mor26m;Mor26p;Mor26se;Mor26v;Mor27;Mor27m;Mor27p;Mor27se;Mor27v;Mor28;Mor28m;Mor28p;Mor28se;Mor28v;Mor29;Mor29m;Mor29p;Mor29se;Mor29v;Mor30;Mor30m;Mor30p;Mor30se;Mor30v;Mor31;Mor31m;Mor31p;Mor31se;Mor31v;Mor32;Mor32m;Mor32p;Mor32se;Mor32v;Mp;Mpe;Mse;Mv;NaaCH;NaaN;NaaNH;NaaO;NaaS;NaaaC;NaasC;NaasN;NdCH2;NdO;NdS;NddsN;NddssS;NdsCH;NdsN;NdssC;NsBr;NsCH3;NsCl;NsF;NsNH2;NsOH;NssCH2;NssNH;NssO;NssS;NsssCH;NsssN;NssssC;NtN;NtsC;PEOE_VSA1_per_heavyatom;PEOE_VSA10_per_heavyatom;PEOE_VSA11;PEOE_VSA12_per_heavyatom;PEOE_VSA13;PEOE_VSA2_per_heavyatom;PEOE_VSA3;PEOE_VSA4;PEOE_VSA5;PEOE_VSA6_per_heavyatom;PEOE_VSA7_per_heavyatom;PEOE_VSA8_per_heavyatom;PEOE_VSA9;PNSA1_per_heavyatom;PNSA2_per_heavyatom;PNSA3_per_heavyatom;PNSA4_per_heavyatom;PNSA5_per_heavyatom;PPSA1_per_heavyatom;PPSA2_per_heavyatom;PPSA3_per_heavyatom;PPSA4_per_heavyatom;PPSA5_per_heavyatom;PetitjeanIndex;RASA;RNCG_per_heavyatom;RNCS_per_heavyatom;RPCG_per_heavyatom;RPCS;RPSA;Radius;RotRatio;SIC0_per_heavyatom;SIC1_per_heavyatom;SIC2;SIC3;SIC4;SIC5;SLogP;SM1_Dt;SM1_DzZ_per_heavyatom;SM1_Dzare_per_heavyatom;SM1_Dzi_per_heavyatom;SM1_Dzm_per_heavyatom;SM1_Dzp_per_heavyatom;SM1_Dzpe_per_heavyatom;SM1_Dzse_per_heavyatom;SM1_Dzv_per_heavyatom;SMR_per_heavyatom;SMR_VSA1_per_heavyatom;SMR_VSA2;SMR_VSA3_per_heavyatom;SMR_VSA4;SMR_VSA5_per_heavyatom;SMR_VSA6;SMR_VSA7;SMR_VSA8;SMR_VSA9;SRW02_per_heavyatom;SRW03;SRW04_per_heavyatom;SRW05;SRW06_per_heavyatom;SRW07;SRW08_per_heavyatom;SRW09;SRW10_per_heavyatom;SZ_per_heavyatom;SaaCH;SaaN;SaaNH;SaaO;SaaS;SaaaC;SaasC;SaasN;Sare_per_heavyatom;SdCH2;SdO_per_heavyatom;SdS;SddsN;SddssS;SdsCH;SdsN;SdssC_per_heavyatom;Si_per_heavyatom;SlogP_VSA1_per_heavyatom;SlogP_VSA10;SlogP_VSA11;SlogP_VSA2_per_heavyatom;SlogP_VSA3_per_heavyatom;SlogP_VSA4;SlogP_VSA5_per_heavyatom;SlogP_VSA6;SlogP_VSA7;SlogP_VSA8;SlogP_VSA9;Sm_per_heavyatom;Sp_per_heavyatom;SpAD_A_per_heavyatom;SpAD_D_per_heavyatom;SpAD_Dt;SpAD_DzZ_per_heavyatom;SpAD_Dzare_per_heavyatom;SpAD_Dzi_per_heavyatom;SpAD_Dzm_per_heavyatom;SpAD_Dzp_per_heavyatom;SpAD_Dzpe_per_heavyatom;SpAD_Dzse_per_heavyatom;SpAD_Dzv_per_heavyatom;SpAbs_A_per_heavyatom;SpAbs_D_per_heavyatom;SpAbs_Dt;SpAbs_DzZ_per_heavyatom;SpAbs_Dzare_per_heavyatom;SpAbs_Dzi_per_heavyatom;SpAbs_Dzm_per_heavyatom;SpAbs_Dzp_per_heavyatom;SpAbs_Dzpe_per_heavyatom;SpAbs_Dzse_per_heavyatom;SpAbs_Dzv_per_heavyatom;SpDiam_A;SpDiam_D_per_heavyatom;SpDiam_Dt;SpDiam_DzZ_per_heavyatom;SpDiam_Dzare_per_heavyatom;SpDiam_Dzi_per_heavyatom;SpDiam_Dzm_per_heavyatom;SpDiam_Dzp_per_heavyatom;SpDiam_Dzpe_per_heavyatom;SpDiam_Dzse_per_heavyatom;SpDiam_Dzv_per_heavyatom;SpMAD_A;SpMAD_D_per_heavyatom;SpMAD_Dt;SpMAD_DzZ_per_heavyatom;SpMAD_Dzare_per_heavyatom;SpMAD_Dzi_per_heavyatom;SpMAD_Dzm_per_heavyatom;SpMAD_Dzp_per_heavyatom;SpMAD_Dzpe_per_heavyatom;SpMAD_Dzse_per_heavyatom;SpMAD_Dzv_per_heavyatom;SpMax_A;SpMax_D_per_heavyatom;SpMax_Dt;SpMax_DzZ_per_heavyatom;SpMax_Dzare_per_heavyatom;SpMax_Dzi_per_heavyatom;SpMax_Dzm_per_heavyatom;SpMax_Dzp_per_heavyatom;SpMax_Dzpe_per_heavyatom;SpMax_Dzse_per_heavyatom;SpMax_Dzv_per_heavyatom;Spe_per_heavyatom;SsBr;SsCH3;SsCl;SsF;SsNH2;SsOH;Sse_per_heavyatom;SssCH2;SssNH_per_heavyatom;SssO;SssS;SsssCH_per_heavyatom;SsssN;SssssC;StN;StsC;Sv_per_heavyatom;TASA_per_heavyatom;TIC0_per_heavyatom;TIC1_per_heavyatom;TIC2_per_heavyatom;TIC3_per_heavyatom;TIC4_per_heavyatom;TIC5_per_heavyatom;TMPC10;TMWC10_per_heavyatom;TPSA_per_heavyatom;TSRW10_per_heavyatom;TopoPSA_per_heavyatom;TopoPSA(NO)_per_heavyatom;TopoShapeIndex;TpiPC10_per_heavyatom;VAdjMat_per_heavyatom;VE1_A_per_heavyatom;VE1_D_per_heavyatom;VE1_Dt;VE1_DzZ_per_heavyatom;VE1_Dzare_per_heavyatom;VE1_Dzi_per_heavyatom;VE1_Dzm_per_heavyatom;VE1_Dzp_per_heavyatom;VE1_Dzpe_per_heavyatom;VE1_Dzse_per_heavyatom;VE1_Dzv_per_heavyatom;VE2_A_per_heavyatom;VE2_D_per_heavyatom;VE2_Dt;VE2_DzZ_per_heavyatom;VE2_Dzare_per_heavyatom;VE2_Dzi_per_heavyatom;VE2_Dzm_per_heavyatom;VE2_Dzp_per_heavyatom;VE2_Dzpe_per_heavyatom;VE2_Dzse_per_heavyatom;VE2_Dzv_per_heavyatom;VE3_A_per_heavyatom;VE3_D_per_heavyatom;VE3_Dt;VE3_DzZ_per_heavyatom;VE3_Dzare_per_heavyatom;VE3_Dzi_per_heavyatom;VE3_Dzm_per_heavyatom;VE3_Dzp_per_heavyatom;VE3_Dzpe_per_heavyatom;VE3_Dzse_per_heavyatom;VE3_Dzv_per_heavyatom;VMcGowan_per_heavyatom;VR1_A_log_scaled;VR1_D_per_heavyatom;VR1_Dt;VR1_DzZ_per_heavyatom;VR1_Dzare_per_heavyatom;VR1_Dzi_per_heavyatom;VR1_Dzm_per_heavyatom;VR1_Dzp_per_heavyatom;VR1_Dzpe_per_heavyatom;VR1_Dzse_per_heavyatom;VR1_Dzv_per_heavyatom;VR2_A_log_scaled;VR2_D_per_heavyatom;VR2_Dt;VR2_DzZ_per_heavyatom;VR2_Dzare_per_heavyatom;VR2_Dzi_per_heavyatom;VR2_Dzm_per_heavyatom;VR2_Dzp_per_heavyatom;VR2_Dzpe_per_heavyatom;VR2_Dzse_per_heavyatom;VR2_Dzv_per_heavyatom;VR3_A_per_heavyatom;VR3_D_per_heavyatom;VR3_Dt;VR3_DzZ_per_heavyatom;VR3_Dzare_per_heavyatom;VR3_Dzi_per_heavyatom;VR3_Dzm_per_heavyatom;VR3_Dzp_per_heavyatom;VR3_Dzpe_per_heavyatom;VR3_Dzse_per_heavyatom;VR3_Dzv_per_heavyatom;VSA_EState1_per_heavyatom;VSA_EState2_per_heavyatom;VSA_EState3_per_heavyatom;VSA_EState4_per_heavyatom;VSA_EState5_per_heavyatom;VSA_EState6_per_heavyatom;VSA_EState7_per_heavyatom;VSA_EState8_per_heavyatom;VSA_EState9_per_heavyatom;Vabc_per_heavyatom;WNSA1_per_heavyatom;WNSA2_per_heavyatom;WNSA3_per_heavyatom;WNSA4_per_heavyatom;WNSA5_per_heavyatom;WPSA1_per_heavyatom;WPSA2_per_heavyatom;WPSA3_per_heavyatom;WPSA4_per_heavyatom;WPSA5_per_heavyatom;WPath;WPol;Xc-3d_per_heavyatom;Xc-3dv_per_heavyatom;Xc-4d;Xc-4dv;Xc-5d_per_heavyatom;Xc-5dv;Xc-6d;Xc-6dv;Xch-3d;Xch-3dv;Xch-4d;Xch-4dv;Xch-5d;Xch-5dv;Xch-6d;Xch-6dv;Xch-7d;Xch-7dv;ZMIC0_per_heavyatom;ZMIC1_per_heavyatom;ZMIC2_per_heavyatom;ZMIC3_per_heavyatom;ZMIC4_per_heavyatom;ZMIC5;Zagreb1;Zagreb2;apol_per_heavyatom;bpol_per_heavyatom;fMF;fragCpx_per_heavyatom;mZagreb1_per_heavyatom;mZagreb2_per_heavyatom;n10AHRing;n10ARing;n10FAHRing;n10FARing;n10FHRing;n10FRing;n10FaHRing;n10FaRing;n10HRing;n10Ring;n10aHRing;n10aRing;n11AHRing;n11ARing;n11FAHRing;n11FARing;n11FHRing;n11FRing;n11FaHRing;n11FaRing;n11HRing;n11Ring;n11aHRing;n11aRing;n12AHRing;n12ARing;n12FAHRing;n12FARing;n12FHRing;n12FRing;n12FaHRing;n12FaRing;n12HRing;n12Ring;n12aHRing;n12aRing;n3AHRing;n3ARing;n3HRing;n3Ring;n3aHRing;n3aRing;n4AHRing;n4ARing;n4FAHRing;n4FARing;n4FHRing;n4FRing;n4FaHRing;n4FaRing;n4HRing;n4Ring;n4aHRing;n4aRing;n5AHRing;n5ARing;n5FAHRing;n5FARing;n5FHRing;n5FRing;n5FaHRing;n5FaRing;n5HRing;n5Ring;n5aHRing;n5aRing;n6AHRing;n6ARing;n6FAHRing;n6FARing;n6FHRing;n6FRing;n6FaHRing;n6FaRing;n6HRing;n6Ring;n6aHRing;n6aRing;n7AHRing;n7ARing;n7FAHRing;n7FARing;n7FHRing;n7FRing;n7FaHRing;n7FaRing;n7HRing;n7Ring;n7aHRing;n7aRing;n8AHRing;n8ARing;n8FAHRing;n8FARing;n8FHRing;n8FRing;n8FaHRing;n8FaRing;n8HRing;n8Ring;n8aHRing;n8aRing;n9AHRing;n9ARing;n9FAHRing;n9FARing;n9FHRing;n9FRing;n9FaHRing;n9FaRing;n9HRing;n9Ring;n9aHRing;n9aRing;nAHRing;nARing;nAcid;nAromAtom;nAromBond;nAtom;nB;nBase;nBonds;nBondsA;nBondsD;nBondsKD;nBondsKS;nBondsM;nBondsO;nBondsS;nBondsT;nBr;nBridgehead;nC;nCl;nF;nFAHRing;nFARing;nFHRing;nFRing;nFaHRing;nFaRing;nG12AHRing;nG12ARing;nG12FAHRing;nG12FARing;nG12FHRing;nG12FRing;nG12FaHRing;nG12FaRing;nG12HRing;nG12Ring;nG12aHRing;nG12aRing;nH;nHBAcc;nHBDon;nHRing;nHeavyAtom;nHetero;nI;nN;nO;nP;nRing;nRot;nS;nSpiro;nX;naHRing;naRing;piPC1_per_heavyatom;piPC10_per_heavyatom;piPC2_per_heavyatom;piPC3_per_heavyatom;piPC4_per_heavyatom;piPC5_per_heavyatom;piPC6_per_heavyatom;piPC7_per_heavyatom;piPC8_per_heavyatom;piPC9_per_heavyatom,1,mordred diff --git a/atomsci/ddm/data/moe_svl/custom/ksm_svl/smp_WashMinimizeSMILES.svl b/atomsci/ddm/data/moe_svl/custom/ksm_svl/smp_WashMinimizeSMILES.svl new file mode 100644 index 00000000..a3f09839 --- /dev/null +++ b/atomsci/ddm/data/moe_svl/custom/ksm_svl/smp_WashMinimizeSMILES.svl @@ -0,0 +1,196 @@ +#svl +// smp_WashMinimizeSMILES.svl Washing and minimizing a SMILES +// +// 21-mar-2019 (gk) created +// +// COPYRIGHT (C) 2019 CHEMICAL COMPUTING GROUP ULC. ALL RIGHTS RESERVED. +// +// PERMISSION TO USE, COPY, MODIFY AND DISTRIBUTE THIS SOFTWARE IS HEREBY +// GRANTED PROVIDED THAT: (1) UNMODIFIED OR FUNCTIONALLY EQUIVALENT CODE +// DERIVED FROM THIS SOFTWARE MUST CONTAIN THIS NOTICE; (2) ALL CODE DERIVED +// FROM THIS SOFTWARE MUST ACKNOWLEDGE THE AUTHOR(S) AND INSTITUTION(S); (3) +// THE NAMES OF THE AUTHOR(S) AND INSTITUTION(S) NOT BE USED IN ADVERTISING +// OR PUBLICITY PERTAINING TO THE DISTRIBUTION OF THE SOFTWARE WITHOUT +// SPECIFIC, WRITTEN PRIOR PERMISSION; (4) ALL CODE DERIVED FROM THIS SOFTWARE +// BE EXECUTED WITH THE MOLECULAR OPERATING ENVIRONMENT (MOE) LICENSED FROM +// CHEMICAL COMPUTING GROUP ULC. +// +// CHEMICAL COMPUTING GROUP ULC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS +// SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, +// AND IN NO EVENT SHALL CHEMICAL COMPUTING GROUP ULC. BE LIABLE FOR ANY +// SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER +// RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +// CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +// CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +// +// +// DESCRIPTION +// MOE/smp version of ph4_Wash, Minimze and sm_Build +// +// USAGE: invoke MOE/smp +// run ['smp_WashMinimizeSMILES.svl', 'database', 'smilesfield'] +// +// + +#set title 'smp_WashMinimizeSMILES' +#set class 'MOE:SMP' +#set main 'smp_main' +#set version '2019.03' + +//------------------------------------------------------------------------------ +// imports +//------------------------------------------------------------------------------ + +function ph4_Wash, MM; + +//----------------------------------------------------------------------------------- +// constants +//----------------------------------------------------------------------------------- + +//const SCRIPT_FILENAME = 'smp_WashMinimizeSMILES.svl'; +const GLOBAL_FUNCTION = 'smp_WashMinimizeSMILES'; +const OUT_FIELDNAME = 'mol_prep'; +const OUTFIELDTYPE = 'molecule'; + +//----------------------------------------------------------------------------------- +// global functions +//----------------------------------------------------------------------------------- + +global function smp_WashMinimizeSMILES smi + + local mol, chain, atoms; + + if sm_BuildSyntax smi === 0 then + return []; + endif + + // create molecule + atoms = sm_Build smi; + chain = uniq aChain atoms; + + // wash + local washed_atoms = first ph4_Wash[ + atoms, + [ + one_component: 1, delete_atoms: 1, coord_scale: 1, + set_fc: 1, acid_base: 1, add_h: 1 + ] + ]; + + // minimize + pot_FinalizeModel[]; + (MM[]); + + // get db_mol vector of updated molecule + mol = mol_Extract washed_atoms; + + // destroy molecule from system + oDestroy chain; + + // return db_mol vector + return mol; +endfunction + +//----------------------------------------------------------------------------------- +// local functions +//----------------------------------------------------------------------------------- + +local function db_function_call [dbname, smfield] + + // local variables + local mdb_key; + local cmd, entry, task_id; + local src, i, smi; + local udataS, udataR, res, code, seq; + local SCRIPT_FILENAME = (modenv[]).filename; + + // close system at start + Close [force: 1, viewreset: 1, delgobj: 1]; + + // open database and find fields of type molecule + mdb_key = db_Open [dbname, 'read-write']; + + // create fields for output + db_EnsureField [mdb_key, OUT_FIELDNAME, OUTFIELDTYPE]; + db_EnsureField [mdb_key, 'smp_seq', 'int']; + + // initialize variable for loop + cmd = 'call'; + entry = 0; + task_id = task_key -1; + + // distribute script to all nodes + src = freadb [SCRIPT_FILENAME, 'char', INT_MAX]; + mpu_load [igen MPU_HOSTCOUNT, [src]]; + + // loop through database + for i = 1, INT_MAX loop + + // get next molecules + if anytrue cmd then + entry = db_NextEntry [mdb_key, entry]; + smi = token first db_ReadFields [mdb_key, entry, smfield]; + endif + + // set command to '' for collecting the last results + if allfalse entry then cmd = ''; endif + + // MOE/smp call of global function + udataS = [task_id, entry]; + [res, code, seq, udataR] = mpu_batch [cmd, GLOBAL_FUNCTION, smi, udataS]; + + // check return code + if code === 'skip' then + + // do nothing (skip is returned for the first calls when no results are to + // be transferred back to the master + + elseif code === 'error' then + + // we are in trouble ! + exit twrite['{}', res]; + + elseif code === 'eof' then + + // end is reached + break; + + elseif udataR(1) === task_id then + + // write updated molecule to database + db_Write [mdb_key, udataR(2),tag[[OUT_FIELDNAME, 'smp_seq'], [res, i]]]; + + else + + // we are in trouble + exit '!!!'; + + endif + endloop + + // close database + db_Close mdb_key; + + // inform user that run is complete + pr "finished"; + +endfunction + + +//==================================================================================== +// main function +//==================================================================================== + +local function smp_main [database, smilesfield] + + local SCRIPT_FILENAME = (modenv[]).filename; + // check is argument is correct + if isnull database then + pr cat["Usage: run ['", string SCRIPT_FILENAME, "', ['databasefilename', 'smilesfield']];"]; + else + sleep 1; + + // call smp function on database + db_function_call [database, smilesfield]; + endif +endfunction diff --git a/atomsci/ddm/data/moe_svl/custom/svl/db_desc_smp5.svl b/atomsci/ddm/data/moe_svl/custom/svl/db_desc_smp5.svl new file mode 100644 index 00000000..9e56b265 --- /dev/null +++ b/atomsci/ddm/data/moe_svl/custom/svl/db_desc_smp5.svl @@ -0,0 +1,356 @@ +#svl +// db_desc_smp.svl Calculate descriptors for a database with MOE/smp +// +// 26-feb-2019 (gk) renamed mol_desc +// 15-mar-2018 (me) fixed typo in validation if value already calculated +// 05-mar-2018 (me) added calculate_all option to skip over calculated values +// 13-nov-2017 (BB) print entry number +// 01-mar-2011 (ah) bug fix for *acalc* descriptors +// 28-feb-2011 (ah) replicate molecules from main MOE window to other nodes +// 25-feb-2011 (sg) change default options (do nothing == default) +// 25-feb-2011 (sg) make the SVL find itself +// 25-oct-2010 (ah) created, based on from smp_template.svl +// 20-jan-2005 (gk) added set priority = 1 on nodes +// 17-dec-2004 (gk) rewritten as template +// 23-nov-2004 (ms) created +// +// COPYRIGHT (C) 2019 CHEMICAL COMPUTING GROUP ULC ("CCG"). +// ALL RIGHTS RESERVED. +// +// PERMISSION TO USE, COPY, MODIFY AND DISTRIBUTE THIS SOFTWARE IS HEREBY +// GRANTED PROVIDED THAT: (1) UNMODIFIED OR FUNCTIONALLY EQUIVALENT SOFTWARE +// DERIVED FROM THIS SOFTWARE MUST CONTAIN THIS NOTICE; (2) ALL CODE DERIVED +// FROM THIS SOFTWARE MUST ACKNOWLEDGE THE AUTHOR(S) AND INSTITUTION(S); (3) +// THE NAMES OF THE AUTHOR(S) AND INSTITUTION(S) NOT BE USED IN ADVERTISING +// OR PUBLICITY PERTAINING TO THIS SOFTWARE WITHOUT SPECIFIC WRITTEN PRIOR +// PERMISSION; (4) ALL CODE DERIVED FROM THIS SOFTWARE BE EXECUTED WITH THE +// MOLECULAR OPERATING ENVIRONMENT LICENSED FROM CCG. +// +// CCG DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING +// ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, AND IN NO EVENT +// SHALL CCG BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR +// ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER +// IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +// OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +// +// +// DESCRIPTION +// +// Calculate descriptors for a MDB database of compounds, using MOE/smp +// If a molecule field is not specified, the field closest to the left +// edge of the database will be used. +// +// If no descriptor codes are specified, by default no descriptors will be +// calculated. +// +// USAGE: invoke MOE/smp and then +// run ['db_desc_smp.svl', [mdbfile, mfield, codes, opt]] +// +// calculate all descriptors except the ones from MOPAC: +// run ['db_desc_smp.svl', 'lig.mdb'] +// +// calculate 32 VSA binned descriptors as well as Weight and TPSA +// run ['db_desc_smp.svl',['lig.mdb',[],['Weight','TPSA'],[codeset:'VSA_32']]] +// +// calculate Lipinski and Oprea descriptors and no others for washed field +// run['db_desc_smp.svl',['lig.mdb','washed',['lip*','opr*'],[codeset:'None']]] +// +// Run from MOE/batch with 3 CPUs or cores +// +// $MOE/bin/moebatch -mpu 3 -exec "run ['db_desc_smp.svl', 'lig.mdb']" -exit +// + +#set title 'MOE/smp descriptor calculation' +#set main 'db_desc_smp' +#set version '2010.10' + +function QuaSAR_Descriptor_List, PartialChargeMethods, PartialChargeMDB; +function __FlexAlign_Replicate; + +const DEFAULTS = [ + codeset: 'None', // 'All_No_MOPAC': all non-MOPAC descriptors + // 'MOPAC' : all MOPAC descriptors + // '2D' : all 2D descriptors + // '3D' : all 3D descriptors + // 'x3D' : all x3D descriptors + // 'i3D' : all i3D descriptors + // 'i3DNotMOPAC' : all i3D descriptors except MOPAC + // 'VSA_32' : 32 binned property VSA descriptors + // 'All' : all descriptors + // 'None' : only specified descriptors + forcefield: '', // filename of forcefield to use + charge_meth: '', // forcefield partial charges for fragment + // eg '' to leave unchanged, 'FF' for forcefield + // or 'AM1-BCC' for AM1-BCC charges + add_h: 1, // add hydrogens + calculate_all: 1 // calculate all descriptors or just missing +]; + +//const SCRIPT_FILENAME = 'db_desc_smp.svl'; // replaced with local +const GLOBAL_FUNCTION = 'smp_DescriptorCalcMol'; +const OUT_FIELDNAME = 'smp_seq'; +const i3DNotMOPAC = [ +'ASA', 'ASA+', 'ASA-', 'ASA_H', 'ASA_P', 'CASA+', 'CASA-', 'DASA', 'DCASA', +'dens', 'dipole', 'dipoleX', 'dipoleY', 'dipoleZ', 'E', 'E_ang', 'E_ele', +'E_nb', 'E_oop', 'E_rele', 'E_rnb', 'E_rsol', 'E_rvdw', 'E_sol', 'E_stb', +'E_str', 'E_strain', 'E_tor', 'E_vdw', 'FASA+', 'FASA-', 'FASA_H', 'FASA_P', +'FCASA+', 'FCASA-', 'glob', 'npr1', 'npr2', 'pmi', 'pmi1', 'pmi2', 'pmi3', +'pmiX', 'pmiY', 'pmiZ', 'rgyr', 'std_dim1', 'std_dim2', 'std_dim3', 'vol', +'VSA', 'vsurf_A', 'vsurf_CP', 'vsurf_CW1', 'vsurf_CW2', 'vsurf_CW3', 'vsurf_CW4', +'vsurf_CW5', 'vsurf_CW6', 'vsurf_CW7', 'vsurf_CW8', 'vsurf_D1', 'vsurf_D2', 'vsurf_D3', +'vsurf_D4', 'vsurf_D5', 'vsurf_D6', 'vsurf_D7', 'vsurf_D8', 'vsurf_DD12', 'vsurf_DD13', +'vsurf_DD23', 'vsurf_DW12', 'vsurf_DW13', 'vsurf_DW23', 'vsurf_EDmin1', 'vsurf_EDmin2', +'vsurf_EDmin3', 'vsurf_EWmin1', 'vsurf_EWmin2', 'vsurf_EWmin3', 'vsurf_G', 'vsurf_HB1', +'vsurf_HB2', 'vsurf_HB3', 'vsurf_HB4', 'vsurf_HB5', 'vsurf_HB6', 'vsurf_HB7', 'vsurf_HB8', +'vsurf_HL1', 'vsurf_HL2', 'vsurf_ID1', 'vsurf_ID2', 'vsurf_ID3', 'vsurf_ID4', 'vsurf_ID5', +'vsurf_ID6', 'vsurf_ID7', 'vsurf_ID8', 'vsurf_IW1', 'vsurf_IW2', 'vsurf_IW3', 'vsurf_IW4', +'vsurf_IW5', 'vsurf_IW6', 'vsurf_IW7', 'vsurf_IW8', 'vsurf_R', 'vsurf_S', 'vsurf_V', 'vsurf_W1', +'vsurf_W2', 'vsurf_W3', 'vsurf_W4', 'vsurf_W5', 'vsurf_W6', 'vsurf_W7', 'vsurf_W8', 'vsurf_Wp1', +'vsurf_Wp2', 'vsurf_Wp3', 'vsurf_Wp4', 'vsurf_Wp5', 'vsurf_Wp6', 'vsurf_Wp7', 'vsurf_Wp8' +]; //BB + +const VSA_32 = [ + 'PEOE_VSA-6', 'PEOE_VSA-5', 'PEOE_VSA-4', 'PEOE_VSA-3', 'PEOE_VSA-2', + 'PEOE_VSA-1', 'PEOE_VSA-0', 'PEOE_VSA+0', 'PEOE_VSA+1', 'PEOE_VSA+2', + 'PEOE_VSA+3', 'PEOE_VSA+4', 'PEOE_VSA+5', 'PEOE_VSA+6', + + 'SlogP_VSA0', 'SlogP_VSA1', 'SlogP_VSA2', 'SlogP_VSA3', 'SlogP_VSA4', + 'SlogP_VSA5', 'SlogP_VSA6', 'SlogP_VSA7', 'SlogP_VSA8', 'SlogP_VSA9', + + 'SMR_VSA0' , 'SMR_VSA1' , 'SMR_VSA2' , 'SMR_VSA3' , 'SMR_VSA4' , + 'SMR_VSA5' , 'SMR_VSA6' , 'SMR_VSA7' +]; + +global function smp_DescriptorCalcMol [mol, descriptors] + local i, j = 0, codes, fcns, acalc, desc, counts, splcodes, splfcns; + local splacalc, chains, atoms; + + [codes, fcns, acalc] = descriptors; + + counts = mtoc m_uniq fcns; + [splcodes, splfcns, splacalc] = apt split [[codes, fcns, acalc], [counts]]; + + if anytrue acalc then + chains = mol_Create mol; + atoms = cat cAtoms chains; + endif + + for i = 1, length counts loop + j = inc j; + if istrue splacalc(i)(1) then + desc(j) = call [splfcns(i)(1), [atoms, splcodes(i)]]; + endif + endloop + + if anytrue acalc then oDestroy chains;endif + + for i = 1, length counts loop + j = inc j; + if isfalse splacalc(i)(1) then + desc(j) = call [splfcns(i)(1), [ mol, splcodes(i)]]; + endif + endloop + + return cat desc; +endfunction + + +local function desc_smp [mdbfile, mfield, codes, opt] + + local SCRIPT_FILENAME = (modenv[]).filename; + local mdb, cmd = 'call', ent=0, task_id, src, i, mol, udataS, record; + local udataR, res, code, seq; + + mdb = db_Open mdbfile; + + local entno, entries = db_Entries mdb; //(nl) + + // create fields for output + db_EnsureField [mdb, OUT_FIELDNAME, 'int']; + apt db_EnsureField [mdb, codes, 'float']; + + // initialize variable for loop + task_id = task_key -1; + + local descinfo = QuaSAR_Descriptor_List []; + + //ignore unrecognised descriptor codes + local descmask = indexof [codes, descinfo(1)]; + if anyfalse descmask then + write 'Unrecognised descriptor codes:\n'; + apt write ['{}\n', codes | not descmask]; + write '\n'; + codes = codes | descmask; + endif + + local fcns = get [descinfo(5), pack descmask]; + local acalc= get [descinfo(6), pack descmask]; + [codes, fcns, acalc] = apt get [[codes, fcns, acalc],[x_sort fcns]]; + local descs = [codes, fcns, acalc]; + + // Copy molecules from the main MOE window to all the MOE/smp nodes + + __FlexAlign_Replicate []; // replicate to MOE/smp + + // distribute script to all nodes + src = freadb [SCRIPT_FILENAME, 'char', INT_MAX]; + mpu_load [igen MPU_HOSTCOUNT, [src]]; + + for i = 1, INT_MAX loop + // get next molecules + if anytrue cmd then + ent = db_NextEntry [mdb, ent]; + record = db_Read [mdb, ent]; + mol = first db_ReadFields [mdb, ent, mfield]; // (ME) fix + // mol = record.mol; + endif + + // set command to '' for collecting the last results + // or break if end of db and still call (nothing to do) + if ent == 0 and isnull code then break; + elseif ent == 0 then cmd = ''; endif + + // check if something to do for this entry + // if calculate_all is 1 all descriptors will be calculated + // if calculate_all is 0 only descriptos of empyt fields will be calculated + local record_descs; + if opt.calculate_all then + record_descs = descs; + else + record_descs = apt mget [descs, [app isnull tagget [record, codes]]]; + if allfalse record_descs and anytrue record then + continue; + endif + endif + + // MOE/smp call of global function, keep track of the desc calculate for this entry + udataS = [task_id, ent, record_descs(1)]; + [res,code,seq,udataR]=mpu_batch[cmd,GLOBAL_FUNCTION,[mol,record_descs],udataS]; + + // check return code + if code == 'skip' then + // do nothing (skip is returned for the first calls when no results + // are to be transferred back to the master + + elseif code == 'error' then // we are in trouble ! + exit res; + + elseif code == 'eof' then // end is reached + break; + + elseif udataR(1) === task_id then + // only write calculated fields to mdb + local data = tag [udataR(3), res]; + data.(OUT_FIELDNAME) = seq; + db_Write [mdb, udataR(2), data]; + entno = indexof[udataR(2), entries]; // BB + + else // uh oh, we are in trouble + exit 'Error'; + endif + endloop + sleep 1; + db_Close mdb; +endfunction + +local function get_descriptors [codes, codeset] + + local [allcodes, descriptions, classes] = QuaSAR_Descriptor_List []; + local m_mopac = m_findmatch [['PM3_*', 'AM1_*', 'MNDO_*'], allcodes]; + local m_2d = classes == '2D'; + local m_x3d = classes == 'x3D'; + local m_i3d = classes == 'i3D'; + local m_pro = classes == 'Protein'; + + local m_codes = apt m_findmatch [codes, [allcodes]]; + if anytrue app allfalse m_codes then + write ['Ignoring unrecognised descriptor{}:\n', + select ['s', '', length pack app allfalse m_codes > 1]]; + apt write [' {}\n', codes | app allfalse m_codes]; + write '\n'; + endif + + codes = allcodes | orE m_codes; + + if codeset === 'MOPAC' then + allcodes = allcodes | m_mopac; + elseif codeset === '2D' then + allcodes = allcodes | m_2d; + elseif codeset === '3D' then + allcodes = allcodes | m_x3d or m_i3d; + elseif codeset === 'x3D' then + allcodes = allcodes | m_x3d; + elseif codeset === 'i3D' then + allcodes = allcodes | m_i3d; + elseif codeset === 'All_No_MOPAC' then + allcodes = allcodes | not m_mopac; + elseif codeset === 'All_No_MOPAC_Protein' then //BB + allcodes = allcodes | not orE [m_mopac, m_pro]; + elseif codeset === 'VSA_32' then + allcodes = join [VSA_32, allcodes]; + elseif codeset === 'i3DNotMOPAC' then + allcodes = join [i3DNotMOPAC, allcodes]; + elseif codeset === 'All' then + // do nothing + elseif codeset === 'None' then + allcodes = []; + endif + + + return uniq cat [allcodes, codes]; +endfunction + + +//===================================================================== +// main function +//===================================================================== + +global function db_desc_smp [mdbfile, mfield, codes, opt] + + local mdb; + + if MOE_BATCH and isnull mdbfile then + exit 'Usage: run [\'db_desc_smp3.svl\', [mdbfile, mfield, codes, opt]]'; + endif + + if istrue indexof [storage mdbfile, ['tok', 'int']] then + mdb = db_Open [mdbfile, 'read-write']; + else + mdb = dbv_DefaultView []; + mdbfile = db_Filename mdb; + endif + + if isnull mfield then + mfield = db_FirstFieldType [mdb, 'molecule']; + endif + + opt = tagcat [opt, DEFAULTS]; + + if tok_length opt.forcefield then + if ftype opt.forcefield == 'file' then pot_Load opt.forcefield;endif + endif + + if istrue tok_length opt.charge_meth then + if not indexof [opt.charge_meth, first PartialChargeMethods []] then + exit twrite ['{}: invalid partial charge method', + opt.charge_meth + ]; + else + PartialChargeMDB [mdbfile, opt.charge_meth, mfield, mfield, + [add_h: opt.add_h] + ]; + endif + endif + + sleep 1; + + // set priority on all but parent nodes to highest + if MPU_HOSTCOUNT > 1 then + mpu_call [inc igen dec MPU_HOSTCOUNT, 'exe_setpriority', [[0,1]]]; + endif + + // call smp function on database + desc_smp [mdbfile, mfield, get_descriptors [codes, opt.codeset], opt]; + +endfunction diff --git a/atomsci/ddm/docs/PARAMETERS.md b/atomsci/ddm/docs/PARAMETERS.md index aa98e952..a0660a80 100644 --- a/atomsci/ddm/docs/PARAMETERS.md +++ b/atomsci/ddm/docs/PARAMETERS.md @@ -16,7 +16,6 @@ The AMPL pipeline contains many parameters and options to fit models and make pr - [Hybrid model](#Hybrid-model) - [Splitting](#Splitting) - [Transformers](#Transformers) - - [UMAP](#UMAP) - [XGBoost](#XGBoost) - [Additional DeepChem Models](#Auto-DCModels) - [Model Saving](#Model-Saving) @@ -626,16 +625,17 @@ the model will train for max_epochs regardless of validation error.| ||| |-|-| -|*Description:*|type of transformation for the features| -|*Default:*|normalization| -|*Type:*|Choice| +|*Description:*|type of transformation for the features. Choices are {"normalization", "RobustScaler", "PowerTransformer", "Identity"}.| +|*Default:*|"normalizaton"| +|*Type:*|choice| - **response\_transform\_type** ||| |-|-| -|*Description:*|type of transformation for the response column (defaults to "normalization") TODO: Not currently implemented| -|*Default:*|normalization| +|*Description:*|type of transformation for the response column. Choices are {"normalization"}| +|*Default:*|"normalization"| +|*Type:*|choice| - **weight\_transform\_type** @@ -673,46 +673,63 @@ the model will train for max_epochs regardless of validation error.| |*Default:*|TRUE| |*Type:*|Bool| ---- - - -## UMAP - -- **umap\_dim** +- **robustscaler_with_centering** ||| |-|-| -|*Description:*|Dimension of projected feature space, if UMAP transformation is requested. Can be input as a comma separated list for hyperparameter search (e.g. '2,6,10').| -|*Default:*|10| - -- **umap\_metric** +|*Description:*|If `True`, center the data before scaling. This will cause `transform` to raise an exception when attempted on sparse matrices, because centering them entails building a dense matrix which in common use cases is likely to be too large to fit in memory.| +|*Default:*|TRUE| +|*Type:*|Bool| + +- **robustscaler_with_scaling** ||| |-|-| -|*Description:*|Distance metric used, if UMAP transformation is requested. Can be input as a comma separated list for hyperparameter search (e.g. 'euclidean','cityblock')| -|*Default:*|euclidean| - -- **umap\_min\_dist** +|*Description:*|If `True`, scale the data to interquartile range.| +|*Default:*|TRUE| +|*Type:*|Bool| + + - **robustscaler_quartile_range** ||| |-|-| -|*Description:*|Minimum distance used in UMAP projection, if UMAP transformation is requested. Can be input as a comma separated list for hyperparameter search (e.g. '0.01,0.02,0.05')| -|*Default:*|0.05| - -- **umap\_neighbors** +|*Description:*|Quantile range used to calculate `scale_`. By default this is equal to the IQR, i.e., `q_min` is the first quantile and `q_max` is the third quantile. `(q_min, q_max), 0.0 < q_min < q_max < 100.0`| +|*Default:*|(25.0, 75.0)| +|*Type:*|List| + + - **robustscaler_unit_variance** ||| |-|-| -|*Description:*|Number of nearest neighbors used in UMAP projection, if UMAP transformation is requested. Can be input as a comma separated list for hyperparameter search (e.g. '10,20,30')| -|*Default:*|20| +|*Description:*|If `True`, scale data so that normally distributed features have a variance of 1. In general, if the difference between the x-values of `q_max` and `q_min` for a standard normal distribution is greater than 1, the dataset will be scaled down. If less than 1, the dataset will be scaled up.| +|*Default:*|FALSE| +|*Type:*|bool| + + - **powertransformer_method** -- **umap\_targ\_wt** +||| +|-|-| +|*Description:*|The power transform method. Available methods are: ‘yeo-johnson’ , works with positive and negative values ‘box-cox’, only works with strictly positive values. Choices are {"yeo-johnson", "box-cox"}| +|*Default:*|"yeo-johnson"| +|*Type:*|choice| + + - **powertransformer_standardize** ||| |-|-| -|*Description:*|Weight given to training set response values in UMAP projection, if UMAP transformation is requested. Can be input as a comma separated list for hyperparameter search (e.g. '0.0,0.1,0.2')| -|*Default:*|0.0| +|*Description:*|Set to True to apply zero-mean, unit-variance normalization to the transformed output.| +|*Default:*|TRUE| +|*Type:*|Bool| + + - **imputer_strategy** +||| +|-|-| +|*Description:*|This sets the imputer strategy for the SimpleImputer for use with PowerTransformer or RobustScaler. Choices are {"mean", "median", "most_frequent"}| +|*Default:*|"mean"| +|*Type:*|choice| + + --- @@ -903,6 +920,14 @@ in the same way as model parameters. |*Description:*|Computational system you are running on, LC or twintron-blue. LLNL system specific| |*Default:*|twintron-blue| |*Type:*|str| + +- **max_invalid_pred_frac** + +||| +|-|-| +|*Description:*|The amount of invalid (NaN/Inf) predictions acceptable for filtering out of the dataset before calculating model performance metrics, as a fraction from 0-1.| +|*Default:*|0.01| +|*Type:*|float| --- @@ -1088,7 +1113,7 @@ in the same way as model parameters. ## Bayesian Optimization ### Search Domain Specifications The following parameters are used to specify the search domains for certain model parameters in a Bayesian hyperparameter optimization. Each search domain parameter is -tied to a specific model parameter. Only a subset of model parameters may be optimized in this way, but more will be supported in future releases. See the hyperopt package documentation at https://github.com/hyperopt/hyperopt/wiki/FMin#2-defining-a-search-space to learn more about the search domain format. +tied to a specific model parameter. Only a subset of model parameters may be optimized in this way, but more will be supported in future releases. See the Optuna documentation at https://optuna.readthedocs.io/en/stable/reference/generated/optuna.trial.Trial.html to learn more about the search domain format. - **lr** diff --git a/atomsci/ddm/docs/source/advanced/advanced_installation.rst b/atomsci/ddm/docs/source/advanced/advanced_installation.rst index c802365a..aadab39c 100644 --- a/atomsci/ddm/docs/source/advanced/advanced_installation.rst +++ b/atomsci/ddm/docs/source/advanced/advanced_installation.rst @@ -9,15 +9,7 @@ Deployment * Red Hat Enterprise Linux 7 with SLURM * Ubuntu 16.04 - -Uninstallation --------------- -To remove AMPL from a pip environment use: -:: - deactivate - pip uninstall atomsci-ampl - To remove the atomsci pip environment entirely from a system use: :: diff --git a/atomsci/ddm/docs/source/conf.py b/atomsci/ddm/docs/source/conf.py index 7cafdd40..0045ed0b 100644 --- a/atomsci/ddm/docs/source/conf.py +++ b/atomsci/ddm/docs/source/conf.py @@ -23,12 +23,12 @@ project = 'ATOM Data-Driven Modeling Pipeline' author = 'ATOM DDM Team' - + #note: wait on this # import atomsci.ddm #version = atomsci.ddm.__version__ # The short X.Y version -version = '1.7.0' +version = '1.8.0' copyright = f'{datetime.datetime.now().year}, {author}' # The full version, including alpha/beta/rc tags @@ -195,5 +195,10 @@ # -- Extension configuration ------------------------------------------------- -autodoc_mock_imports = ["rdkit", "tensorflow.contrib", "atomsci", "yaml", "sklearn.preprocessing.Imputer"] - +autodoc_mock_imports = [ + "rdkit", + "tensorflow.contrib", + "atomsci", + "yaml", + "sklearn.preprocessing.Imputer" +] diff --git a/atomsci/ddm/docs/source/get_started/install.rst b/atomsci/ddm/docs/source/get_started/install.rst index 7e577a09..f92c9e31 100644 --- a/atomsci/ddm/docs/source/get_started/install.rst +++ b/atomsci/ddm/docs/source/get_started/install.rst @@ -3,39 +3,61 @@ Installation ============ -Setup Repo, Pip Environment ---------------------------- +Python Environment +------------------ -Clone git repository:: +AMPL requires Python 3.10. - git clone https://github.com/ATOMScience-org/AMPL.git - -Please refer to this `install link `_, for details. - -Create pip environment:: +For LLNL users on LC:: - module load python/3.9.12 # use python 3.9.12 - python3 -m venv atomsci-env # create a new pip env - source atomsci-env/bin/activate # activate the environemt + module load python/3.10.8 - python3 -m pip install pip --upgrade - cd $AMPL_HOME/pip # cd to AMPL repo's pip directory +Create and activate a virtual environment:: - pip3 install --force-reinstall -r requirements.txt + make sync- # for example: make sync-cpu + source .venv-/bin/activate .. note:: Depending on system performance, creating the environment can take some time. -Build and Install AMPL +Install AMPL from PyPI ---------------------- -Go to the AMPL root directory and install the `AMPL `_ package:: - source atomsci-env/bin/activate # activate the environemt - cd .. +AMPL is published to PyPI, so most users can install it directly without cloning the repository or building it locally:: + + uv pip install atomsci-ampl + +This installs the released AMPL package into your active virtual environment. + +Install AMPL from a Local Clone +------------------------------- + +If you want to work from the source code, first clone the repository:: + + git clone https://github.com/ATOMScience-org/AMPL.git + cd AMPL + +Then choose one of the following workflows. + +Development Install +~~~~~~~~~~~~~~~~~~~ + +For local development, install AMPL from the source tree in editable mode:: + + ./install-dev.sh + +This is the recommended workflow for development. Changes to the local source code are picked up without reinstalling the package. + +Build and Install Locally +~~~~~~~~~~~~~~~~~~~~~~~~~ + +If you want to build the package locally and install the built artifact:: + ./build.sh - pip3 install -e . + ./install.sh -* The `install.sh` system command installs AMPL directly in the pip environment. If `install.sh` alone is used, then AMPL is installed in the `$HOME/.local` directory. +In this workflow: -* After this process, you will have an `atomsci-env` pip environment with all dependencies installed. The name of the AMPL package is `atomsci-ampl` and is installed in the `install.sh` script to the environment with pip. +* ``build.sh`` builds the package artifacts locally. +* ``install.sh`` installs the locally built package into the active environment. \ No newline at end of file diff --git a/atomsci/ddm/docs/source/get_started/introduction.rst b/atomsci/ddm/docs/source/get_started/introduction.rst index d9fc08a8..be3e06b4 100644 --- a/atomsci/ddm/docs/source/get_started/introduction.rst +++ b/atomsci/ddm/docs/source/get_started/introduction.rst @@ -3,10 +3,25 @@ Introduction ************ -The ATOM Modeling PipeLine `AMPL `_ is a Python 3 package that has been developed and run in a specific pip environment. +The ATOM Modeling PipeLine, `AMPL `_, is a Python 3 package. -There are two alternative paths for installing `AMPL `_: +There are two main ways to use `AMPL `_: -1. Cloning the git repo, setting up the pip environment and running the AMPL install command. Please refer to `Installation `_. +1. Install the AMPL Python package from PyPI, or clone the Git repository for local development. -2. `Install With Docker `_. + To install the released package from PyPI: + + .. code-block:: bash + + uv pip install atomsci-ampl + + To work from a local source checkout instead: + + .. code-block:: bash + + git clone https://github.com/ATOMScience-org/AMPL.git + cd AMPL + + Please refer to `Installation `_. + +2. `Install With Docker `_. \ No newline at end of file diff --git a/atomsci/ddm/docs/source/tutorials/05_hyperopt.rst b/atomsci/ddm/docs/source/tutorials/05_hyperopt.rst index b12432a7..f4fa5d85 100644 --- a/atomsci/ddm/docs/source/tutorials/05_hyperopt.rst +++ b/atomsci/ddm/docs/source/tutorials/05_hyperopt.rst @@ -41,7 +41,7 @@ functions: - `parse_params `_ - `build_search `_ -- `run_search `_ +- `run_search `_ - `get_filesystem_perf_results `_ The first three functions in the above list come from the @@ -250,7 +250,7 @@ Below are some parameters that can be used for **neural networks**, set of parameters can be used to replace the parameters above. Trying them out is left as an exercise for the reader. -Neural Network Hyperopt Search +Neural Network Optuna Search ------------------------------ .. list-table:: diff --git a/atomsci/ddm/docs/source/utils.rst b/atomsci/ddm/docs/source/utils.rst index 6ad9db91..d5d01353 100644 --- a/atomsci/ddm/docs/source/utils.rst +++ b/atomsci/ddm/docs/source/utils.rst @@ -36,6 +36,14 @@ utils.datastore\_functions module :undoc-members: :show-inheritance: +utils.generate\_transformers module +----------------------------------- + +.. automodule:: utils.generate_transformers + :members: + :undoc-members: + :show-inheritance: + utils.hyperparam\_search\_wrapper module ---------------------------------------- diff --git a/atomsci/ddm/examples/tutorials/05_hyperopt.ipynb b/atomsci/ddm/examples/tutorials/05_hyperopt.ipynb index 388c8860..64ce8622 100644 --- a/atomsci/ddm/examples/tutorials/05_hyperopt.ipynb +++ b/atomsci/ddm/examples/tutorials/05_hyperopt.ipynb @@ -27,7 +27,7 @@ "We will use these **[AMPL](https://github.com/ATOMScience-org/AMPL)** functions:\n", "- [parse_params](https://ampl.readthedocs.io/en/latest/utils.html#utils.hyperparam_search_wrapper.parse_params)\n", "- [build_search](https://ampl.readthedocs.io/en/latest/utils.html#utils.hyperparam_search_wrapper.build_search)\n", - "- [run_search](https://ampl.readthedocs.io/en/latest/utils.html#utils.hyperparam_search_wrapper.HyperOptSearch.run_search)\n", + "- [run_search](https://ampl.readthedocs.io/en/latest/utils.html#utils.hyperparam_search_wrapper.OptunaSearch.run_search)\n", "- [get_filesystem_perf_results](https://ampl.readthedocs.io/en/latest/pipeline.html#pipeline.compare_models.get_filesystem_perf_results)\n", "\n", "The first three functions in the above list come from the `hyperparameter_search_wrapper` module. " @@ -496,7 +496,7 @@ "Each set of parameters can be used to replace the parameters above. \n", "Trying them out is left as an exercise for the reader.\n", "\n", - "#### Neural Network Hyperopt Search\n", + "#### Neural Network Optuna Search\n", "\n", "|Parameter|Description|\n", "|---|---|\n", diff --git a/atomsci/ddm/pipeline/compare_models.py b/atomsci/ddm/pipeline/compare_models.py index 8f55d9be..de496a04 100644 --- a/atomsci/ddm/pipeline/compare_models.py +++ b/atomsci/ddm/pipeline/compare_models.py @@ -691,202 +691,6 @@ def get_best_models_info(col_names=None, bucket='public', pred_type="regression" top_models_df.to_csv(os.path.join(output_dir, 'best_models_metadata_%s.csv' % shortened_key), index=False) return top_models_df - -# TODO: This function looks like work in progress, should we delete it? -''' -#--------------------------------------------------------------------------------------------------------- -def _get_best_grouped_models_info(collection='pilot_fixed', pred_type='regression', top_n=1, subset='test'): - """Get results for models in the given collection.""" - - if not mlmt_supported: - print("Model tracker not supported in your environment; can examine models saved in filesystem only.") - return - - res_dir = '/usr/local/data/%s_perf' % collection - plt_dir = '%s/Plots' % res_dir - os.makedirs(plt_dir, exist_ok=True) - res_files = os.listdir(res_dir) - suffix = '_%s_model_perf_metrics.csv' % collection - - if pred_type == 'regression': - metric_type = 'r2_score' - else: - metric_type = 'roc_auc_score' - for res_file in res_files: - try: - if not res_file.endswith(suffix): - continue - res_path = os.path.join(res_dir, res_file) - - res_df = pd.read_csv(res_path, index_col=False) - res_df['combo'] = ['%s/%s' % (m,f) for m, f in zip(res_df.model_type.values, res_df.featurizer.values)] - dset_name = res_file.replace(suffix, '') - datasets.append(dset_name) - res_df['dataset'] = dset_name - print(dset_name) - res_df = res_df.sort_values('{0}_{1}'.format(metric_type, subset), ascending=False) - res_df['model_type/feat'] = ['%s/%s' % (m,f) for m, f in zip(res_df.model_type.values, res_df.featurizer.values)] - res_df = res_df.sort_values('{0}_{1}'.format(metric_type, subset), ascending=False) - grouped_df = res_df.groupby('model_type/feat').apply( - lambda t: t.head(top_n) - ).reset_index(drop=True) - top_grouped_models.append(grouped_df) - top_combo = res_df['model_type/feat'].values[0] - top_combo_dsets.append(top_combo + dset_name.lstrip('ATOM_GSK_dskey')) - top_score = res_df['{0}_{1}'.format(metric_type, subset)].values[0] - top_model_feat.append(top_combo) - top_scores.append(top_score) - num_samples.append(res_df['Dataset Size'][0]) - -#------------------------------------------------------------------------------------------------------------------ -def get_umap_nn_model_perf_table(dataset_key, bucket, collection_name, pred_type='regression'): - """Load performance metrics from model tracker for all NN models with the given prediction_type saved in - the model tracker DB under a given collection that were trained against a particular dataset. Show - parameter settings for UMAP transformer for models where they are available. - - Args: - dataset_key (str): Dataset key for training dataset. - - bucket (str): Dataset bucket for training dataset. - - collection_name (str): Name of model tracker collection to search for models. - - pred_type (str): Prediction type ('classification' or 'regression') of models to query. - - Returns: - pd.DataFrame: Table of model performance metrics. - - """ - if not mlmt_supported: - print("Model tracker not supported in your environment; can examine models saved in filesystem only.") - return None - - query_params = { - "match_metadata": { - "training_dataset.bucket": bucket, - "training_dataset.dataset_key": dataset_key, - "model_parameters.model_type" : "NN", - "model_parameters.prediction_type" : pred_type - }, - - "match_metrics": { - "metrics_type": "training", # match only training metrics - "label": "best", - }, - } - query_params['match_metadata'].update(other_filters) - - print("Finding models trained on %s dataset %s" % (bucket, dataset_key)) - mlmt_client = dsf.initialize_model_tracker() - metadata_list = mlmt_client.model.query_model_metadata( - collection_name=collection_name, - query_params=query_params, - ).result() - if metadata_list == []: - print("No matching models returned") - return - else: - print("Found %d matching models" % len(metadata_list)) - - model_uuid_list = [] - learning_rate_list = [] - dropouts_list = [] - layer_sizes_list = [] - featurizer_list = [] - best_epoch_list = [] - max_epochs_list = [] - - feature_transform_type_list = [] - umap_dim_list = [] - umap_targ_wt_list = [] - umap_neighbors_list = [] - umap_min_dist_list = [] - - subsets = ['train', 'valid', 'test'] - - if pred_type == 'regression': - sort_metric = 'r2_score' - metrics = ['r2_score', 'rms_score', 'mae_score'] - else: - sort_metric = 'roc_auc_score' - metrics = ['roc_auc_score', 'prc_auc_score', 'matthews_cc', 'kappa', 'confusion_matrix'] - score_dict = {} - for subset in subsets: - score_dict[subset] = {} - for metric in metrics: - score_dict[subset][metric] = [] - - for metadata_dict in metadata_list: - model_uuid = metadata_dict['model_uuid'] - #print("Got metadata for model UUID %s" % model_uuid) - - # Get model metrics for this model - metrics_dicts = metadata_dict['training_metrics'] - #print("Got %d metrics dicts for model %s" % (len(metrics_dicts), model_uuid)) - if len(metrics_dicts) < 3: - print("Got no or incomplete metrics for model %s, skipping..." % model_uuid) - continue - if len(metrics_dicts) > 3: - raise Exception('Got more than one set of best epoch metrics for model %s' % model_uuid) - subset_metrics = {} - for metrics_dict in metrics_dicts: - subset = metrics_dict['subset'] - subset_metrics[subset] = metrics_dict['prediction_results'] - - model_uuid_list.append(model_uuid) - model_params = metadata_dict['model_parameters'] - model_type = model_params['model_type'] - if model_type != 'NN': - continue - featurizer = model_params['featurizer'] - featurizer_list.append(featurizer) - feature_transform_type = metadata_dict['training_dataset']['feature_transform_type'] - feature_transform_type_list.append(feature_transform_type) - nn_params = metadata_dict['nn_specific'] - max_epochs_list.append(nn_params['max_epochs']) - best_epoch_list.append(nn_params['best_epoch']) - learning_rate_list.append(nn_params['learning_rate']) - layer_sizes_list.append(','.join(['%d' % s for s in nn_params['layer_sizes']])) - dropouts_list.append(','.join(['%.2f' % d for d in nn_params['dropouts']])) - for subset in subsets: - for metric in metrics: - score_dict[subset][metric].append(subset_metrics[subset][metric]) - if 'umap_specific' in metadata_dict: - umap_params = metadata_dict['umap_specific'] - umap_dim_list.append(umap_params['umap_dim']) - umap_targ_wt_list.append(umap_params['umap_targ_wt']) - umap_neighbors_list.append(umap_params['umap_neighbors']) - umap_min_dist_list.append(umap_params['umap_min_dist']) - else: - umap_dim_list.append(nan) - umap_targ_wt_list.append(nan) - umap_neighbors_list.append(nan) - umap_min_dist_list.append(nan) - - - perf_df = pd.DataFrame(dict( - model_uuid=model_uuid_list, - learning_rate=learning_rate_list, - dropouts=dropouts_list, - layer_sizes=layer_sizes_list, - featurizer=featurizer_list, - best_epoch=best_epoch_list, - max_epochs=max_epochs_list, - feature_transform_type=feature_transform_type_list, - umap_dim=umap_dim_list, - umap_targ_wt=umap_targ_wt_list, - umap_neighbors=umap_neighbors_list, - umap_min_dist=umap_min_dist_list )) - for subset in subsets: - for metric in metrics: - metric_col = '%s_%s' % (metric, subset) - perf_df[metric_col] = score_dict[subset][metric] - sort_by = '%s_valid' % sort_metric - - perf_df = perf_df.sort_values(sort_by, ascending=False) - return perf_df -''' - #------------------------------------------------------------------------------------------------------------------ def get_tarball_perf_table(model_tarball, pred_type='classification'): """Retrieve model metadata and performance metrics for a model saved as a tarball (.tar.gz) file. @@ -966,10 +770,16 @@ def get_filesystem_perf_results(result_dir, pred_type='classification', expand=T subsets = ['train', 'valid', 'test'] if pred_type == 'regression': - metrics = ['r2_score', 'rms_score', 'mae_score', 'num_compounds'] + metrics = [ + 'r2_score', 'rms_score', 'mae_score', 'num_compounds', + 'invalid_prediction_count', 'invalid_prediction_fraction', 'invalid_prediction_threshold' + ] else: - metrics = ['roc_auc_score', 'prc_auc_score', 'precision', 'recall_score', 'num_compounds', - 'accuracy_score', 'bal_accuracy', 'npv', 'matthews_cc', 'kappa', 'cross_entropy', 'confusion_matrix'] + metrics = [ + 'roc_auc_score', 'prc_auc_score', 'precision', 'recall_score', 'num_compounds', + 'accuracy_score', 'bal_accuracy', 'npv', 'matthews_cc', 'kappa', 'cross_entropy', 'confusion_matrix', + 'invalid_prediction_count', 'invalid_prediction_fraction', 'invalid_prediction_threshold' + ] score_dict = {} for subset in subsets: score_dict[subset] = {} @@ -1864,9 +1674,22 @@ def get_multitask_perf_from_files_new(result_dir, pred_type='regression', datase model_list.append(meta) print(f'Found data for {len(model_list)} {pred_type} models under {result_dir}') + if len(model_list) == 0: + logger.warning( + "No %s models found under %s for dataset_key=%s", + pred_type, + result_dir, + dataset_key, + ) + return pd.DataFrame() # unpack metadata dicts metadata=pd.DataFrame(model_list) + + # Ensure optional columns are present for backward compatibility with older metadata. + for req_col in ['model_uuid', 'time_built', 'model_path', 'training_metrics', 'seed']: + if req_col not in metadata.columns: + metadata[req_col] = np.nan # establish initial unpacked models df dropcols=['model_uuid','time_built','model_path','training_metrics','seed'] @@ -1876,13 +1699,13 @@ def get_multitask_perf_from_files_new(result_dir, pred_type='regression', datase dict_cols=['model_uuid','splitting_parameters'] dict_cols.extend([x for x in metadata.columns if 'specific' in x and (x!='descriptor_specific')]) dropcols.extend([x for x in metadata.columns if ('specific' in x) and (x!='descriptor_specific')]) - keep_dicts=metadata[dict_cols] + keep_dicts=metadata[[c for c in dict_cols if c in metadata.columns]] # extract training data training_metrics=metadata[['model_uuid','training_metrics']] # drop info from metadata - metadata=metadata.drop(columns=dropcols) + metadata=metadata.drop(columns=dropcols, errors='ignore') # unpack and re-merge simple dicts into models df for col in metadata.columns: @@ -1925,8 +1748,32 @@ def get_multitask_perf_from_files_new(result_dir, pred_type='regression', datase # get task scores - long form and rename columns taskcols=['response_cols'] - taskcols.extend([x for x in pred.columns if 'task' in x]) - task_preds=pred[['model_uuid']+taskcols].set_index('model_uuid').explode(taskcols).reset_index() + taskcols.extend([x for x in pred.columns if 'task' in x]) + + task_preds = pred[['model_uuid'] + taskcols].copy() + + def _num_tasks_for_row(resp_cols): + if isinstance(resp_cols, list): + return len(resp_cols) + return 1 + + def _normalize_task_col_value(value, n_tasks): + if isinstance(value, list): + if len(value) == n_tasks: + return value + if len(value) == 1 and n_tasks > 1: + return value * n_tasks + return value[:n_tasks] + [np.nan] * max(0, n_tasks - len(value)) + if pd.isna(value): + return [np.nan] * n_tasks + return [value] * n_tasks + + for ridx in task_preds.index: + n_tasks = _num_tasks_for_row(task_preds.at[ridx, 'response_cols']) + for tcol in [c for c in taskcols if c != 'response_cols']: + task_preds.at[ridx, tcol] = _normalize_task_col_value(task_preds.at[ridx, tcol], n_tasks) + + task_preds = task_preds.set_index('model_uuid').explode(taskcols).reset_index() # get full model scores and rename columns predcols=[x for x in pred.columns if 'task' not in x] @@ -1937,9 +1784,44 @@ def get_multitask_perf_from_files_new(result_dir, pred_type='regression', datase # rename task_pred columns to match full model names coldict={} + task_to_full_overrides = { + 'task_r2_scores': 'r2_score', + 'task_rms_scores': 'rms_score', + 'task_mae_scores': 'mae_score', + 'task_roc_auc_scores': 'roc_auc_score', + 'task_roc_auc_stds': 'roc_auc_std', + 'task_prc_auc_scores': 'prc_auc_score', + 'task_cross_entropies': 'cross_entropy', + 'task_precisions': 'precision', + 'task_recalls': 'recall_score', + 'task_npvs': 'npv', + 'task_accuracies': 'accuracy_score', + 'task_bal_accuracies': 'bal_accuracy', + 'task_kappas': 'kappa', + 'task_matthews_ccs': 'matthews_cc', + 'task_invalid_prediction_counts': 'invalid_prediction_count', + 'task_invalid_prediction_fractions': 'invalid_prediction_fraction', + } for task_col in task_preds.columns: if task_col not in ['model_uuid','response_cols']: - coldict[task_col]=[predcol for predcol in pred.columns if predcol.replace(metlabel+'_','').startswith(task_col.replace('task_','')[0:3])][0] + if task_col in task_to_full_overrides: + target_metric = task_to_full_overrides[task_col] + else: + target_metric = task_col.replace('task_', '') + + pred_col = metlabel + '_' + target_metric + if pred_col not in pred.columns: + # Fallback to original prefix matching for unexpected/new metric naming. + prefix = task_col.replace('task_', '')[0:3] + candidates = [ + pcol for pcol in pred.columns + if pcol.replace(metlabel + '_', '').startswith(prefix) + ] + if len(candidates) == 0: + continue + pred_col = candidates[0] + + coldict[task_col] = pred_col task_preds=task_preds.rename(columns=coldict) # concatenate all scores diff --git a/atomsci/ddm/pipeline/featurization.py b/atomsci/ddm/pipeline/featurization.py index 27e601b5..a7379d82 100644 --- a/atomsci/ddm/pipeline/featurization.py +++ b/atomsci/ddm/pipeline/featurization.py @@ -23,6 +23,10 @@ from rdkit.Chem import Descriptors from rdkit.ML.Descriptors import MoleculeDescriptors +from sklearn.preprocessing import RobustScaler, PowerTransformer +from sklearn.feature_selection import VarianceThreshold +from sklearn.impute import SimpleImputer +from sklearn.pipeline import Pipeline subclassed_mordred_classes = ['EState', 'MolecularDistanceEdge'] try: from mordred import Calculator, descriptors @@ -111,7 +115,6 @@ def copy_featurizer_params(source, dest): """Copy all parameters related to featurization from source to target params Returns a deepcopy of dest object with featurization parameters copied from source object - Args: source (argparse.Namespace): Object containing source parameters dest (argparse.Namespace): Destination object for parameters @@ -349,7 +352,7 @@ def compute_all_mordred_descrs(mols, max_cpus=None, quiet=True): res_df = calc.pandas(mols, quiet=quiet, nproc=max_cpus) log.debug("Done computing Mordred descriptors") try: - res_df = res_df.fill_missing().applymap(float) + res_df = res_df.fill_missing().map(float) return res_df except ValueError: log.error('Mordred descriptor calculation failed in MordredDataFrame.fill_missing') @@ -492,14 +495,13 @@ def compute_all_moe_descriptors(smiles_df, params): string prepared by MOE, a sequence index, and columns for each MOE descriptor. """ - # TODO: Get MOE_PATH from params moe_path = os.environ.get('MOE_PATH', '/usr/workspace/atom/moe2022_site/bin') if not os.path.exists(moe_path): raise Exception("MOE is not available, or MOE_PATH environment variable needs to be set.") - moe_root = os.path.abspath('%s/..' % moe_path) - # Make sure we have an environment variable that points to the license server - if os.environ.get('LM_LICENSE_FILE', None) is None: - os.environ['LM_LICENSE_FILE'] = '7002@bribe.llnl.gov' + + # Set MOE_SVL_ROOT + moe_svl_root = os.path.join(os.path.dirname(os.path.dirname(__file__)), + 'data', 'moe_svl') moe_args = [] moe_args.append("{moePath}/moebatch".format(moePath=moe_path)) @@ -515,8 +517,8 @@ def compute_all_moe_descriptors(smiles_df, params): # TODO: Directory with svl scripts should be part of AMPL installation. The code below is specific to the LC environment. moe_template = """db_Close db_Open['{fileMDB}','create']; db_ImportASCII[ascii_file: '{smilesFile}', db_file: '{fileMDB}',delimiter: ',', quotes: 0, names: ['original_smiles','cmpd_id'],types: ['char','char']]; - run ['{moeRoot}/custom/ksm_svl/smp_WashMinimizeSMILES.svl', ['{fileMDB}', 'original_smiles']]; - run ['{moeRoot}/custom/svl/db_desc_smp5.svl',['{fileMDB}','mol_prep', [], [codeset: 'All_No_MOPAC_Protein']]]; + run ['{moe_svl_root}/custom/ksm_svl/smp_WashMinimizeSMILES.svl', ['{fileMDB}', 'original_smiles']]; + run ['{moe_svl_root}/custom/svl/db_desc_smp5.svl',['{fileMDB}','mol_prep', [], [codeset: 'All_No_MOPAC_Protein']]]; dir_export_ASCIIBB ['{fileMDB}',[quotes:1,titles:1]];""" #with tempfile.TemporaryDirectory() as tmpdir: @@ -529,7 +531,7 @@ def compute_all_moe_descriptors(smiles_df, params): smiles_df.to_csv(smiles_file, index=False, columns=[params.smiles_col, params.id_col]) log.debug("Wrote SMILES strings to %s" % smiles_file) os.chdir(tmpdir) - moe_cmds = '"' + moe_template.format(moeRoot=moe_root, smilesFile=smiles_file, fileMDB=file_mdb) + '"' + moe_cmds = '"' + moe_template.format(moe_svl_root=moe_svl_root, smilesFile=smiles_file, fileMDB=file_mdb) + '"' moe_args.append(moe_cmds) moe_args.append("-exit") log.debug('Computing MOE descriptors') @@ -639,12 +641,13 @@ def get_feature_count(self): raise NotImplementedError # **************************************************************************************** - def create_feature_transformer(self, dataset): + def create_feature_transformer(self, dataset, params): """Fit a scaling and centering transformation to the feature matrix of the given dataset, and return a DeepChem transformer object holding its parameters. Args: dataset (deepchem.Dataset): featurized dataset + params (Namespace): Contains parameters used to instantiate the featurizer. Returns: Empty list @@ -838,12 +841,13 @@ def featurize_data(self, dset_df, params, contains_responses): return features, ids, vals, attr, w, featurized_dset_df # **************************************************************************************** - def create_feature_transformer(self, dataset): + def create_feature_transformer(self, dataset, params): """Fit a scaling and centering transformation to the feature matrix of the given dataset, and return a DeepChem transformer object holding its parameters. Args: dataset (deepchem.Dataset): featurized dataset + params (Namespace): Contains parameters used to instantiate the featurizer. Returns: Empty list since we will not be transforming the features of a DynamicFeaturization object @@ -1185,12 +1189,13 @@ def featurize_data(self, dset_df, params, contains_responses): raise NotImplementedError # **************************************************************************************** - def create_feature_transformer(self, dataset): + def create_feature_transformer(self, dataset, params): """Fit a scaling and centering transformation to the feature matrix of the given dataset, and return a DeepChem transformer object holding its parameters. Args: dataset (deepchem.Dataset): featurized dataset + params (Namespace): Contains parameters used to instantiate the featurizer. """ # Leave it to subclasses to determine if features should be scaled and centered. @@ -1623,17 +1628,60 @@ def get_feature_count(self): return len(self.get_feature_columns()) # **************************************************************************************** - def create_feature_transformer(self, dataset): + def create_feature_transformer(self, dataset, params): """Fit a scaling and centering transformation to the feature matrix of the given dataset, and return a DeepChem transformer object holding its parameters. Args: dataset (deepchem.Dataset): featurized dataset + params (Namespace): Contains parameters used to instantiate the featurizer. Returns: (list of DeepChem transformer objects): list of transformers for the feature matrix """ - transformers_x = [trans.NormalizationTransformerMissingData(transform_X=True, dataset=dataset)] + if params.feature_transform_type == 'normalization': + transformers_x = [trans.NormalizationTransformerMissingData(transform_X=True, dataset=dataset)] + elif params.feature_transform_type == 'RobustScaler': + # keep_empty_features is set to true so that feature counts do not change + imputer = SimpleImputer(strategy=params.imputer_strategy, keep_empty_features=True) + # Check quartile_range has length 2 and convert it into a tuple + quartiles = params.robustscaler_quartile_range + assert len(quartiles) == 2, f'robustscaler_quartile_range must have length 2, got {quartiles}.' + quartiles = (quartiles[0], quartiles[1]) + robust_scaler = RobustScaler( + with_centering=params.robustscaler_with_centering, + with_scaling=params.robustscaler_with_scaling, + quantile_range=quartiles, + unit_variance=params.robustscaler_unit_variance + ) + pipeline = Pipeline([('SimpleImputer', imputer), + ('VarianceThreshold', VarianceThreshold(threshold=0.0)), + ('RobustScaler', robust_scaler)]) + transformers_x = [ + trans.SklearnPipelineWrapper(transform_X=True, dataset=dataset, + sklearn_pipeline=pipeline) + ] + elif params.feature_transform_type == 'PowerTransformer': + # keep_empty_features is set to true so that feature counts do not change + imputer = SimpleImputer(strategy=params.imputer_strategy, keep_empty_features=True) + power_transformer = PowerTransformer( + method=params.powertransformer_method, + standardize=params.powertransformer_standardize + ) + pipeline = Pipeline([('SimpleImputer', imputer), + ('VarianceThreshold', VarianceThreshold(threshold=0.0)), + ('PowerTransformer', power_transformer)]) + transformers_x = [ + trans.SklearnPipelineWrapper(transform_X=True, dataset=dataset, + sklearn_pipeline=pipeline) + ] + elif params.feature_transform_type == 'Identity': + transformers_x = [] + else: + raise ValueError(( + "feature_transform_type must be normalization, RobustScaler, " + f"PowerTransformer, or Identity. Got {params.feature_transform_type}")) + return transformers_x @@ -1909,6 +1957,9 @@ def compute_descriptors(self, smiles_df, params): if not mordred_supported: raise Exception("mordred package needs to be installed to use Mordred descriptors") desc_df, is_valid = self.compute_mordred_descriptors(smiles_df[params.smiles_col].values, params) + if descr_scaled: + desc_df = self.scale_by_heavyatomcount_and_log_scale(desc_df, params.descriptor_type) + desc_df = desc_df[descr_cols] # Add the ID and SMILES columns to the returned data frame ret_df = smiles_df[is_valid][[params.id_col, params.smiles_col]].reset_index(drop=True) @@ -1919,6 +1970,10 @@ def compute_descriptors(self, smiles_df, params): elif descr_source == 'rdkit': desc_df, is_valid = self.compute_rdkit_descriptors(smiles_df, smiles_col = params.smiles_col) + if descr_scaled: + desc_df = self.scale_by_heavyatomcount_and_log_scale(desc_df, params.descriptor_type) + # RDKit features do not contain log scale features + desc_df = desc_df[descr_cols] # Add the ID and SMILES columns to the returned data frame ret_df = smiles_df[is_valid][[params.id_col, params.smiles_col]].reset_index(drop=True) @@ -2042,6 +2097,61 @@ def scale_moe_descriptors(self, desc_df, descr_type): scaled_df=pd.concat(scaled_cols, axis=1) return scaled_df.copy() + # **************************************************************************************** + def scale_by_heavyatomcount_and_log_scale(self, desc_df, descr_type, heavy_atom_col=''): + """Scale selected descriptors computed by rdkit or mordred by dividing their values by the heavy atom count per molecule. + + Args: + desc_df (DataFrame): Data frame containing computed descriptors. + + descr_type (str): Descriptor type, used to look up expected set of descriptor columns. + + heavy_atom_col (str): Column containing the heavy atom count. Default value is '', which will try + to infer the heavy atom count column based on descr_type. + + Returns: + scaled_df (DataFrame): Data frame with scaled descriptors. + + Raises: + ValueError: If there are negative feature values in a column that needs log scaling + + """ + cls = self.__class__ + descr_cols = cls.desc_type_cols[descr_type] + if heavy_atom_col != '': + ha_count = desc_df[heavy_atom_col].values + else: + if 'HeavyAtomCount' in descr_cols: + ha_count = desc_df.HeavyAtomCount.values + elif 'nHeavyAtom' in descr_cols: + ha_count = desc_df.nHeavyAtom.values + else: + raise RuntimeError("Could not infer heavy atom column. " + "Should be HeavyAtomCount or nHeavyAtom or set using the heavy_atom_col parameter") + + unscaled_desc_cols = [col.replace('_per_heavyatom', '') for col in descr_cols] + unscaled_desc_cols = [col.replace('_log_scaled', '') for col in unscaled_desc_cols] + nondesc_cols = list(set(desc_df.columns.values) - set(unscaled_desc_cols)) + scaled_cols=[desc_df[nondesc_cols].copy()] + for scaled_col, unscaled_col in zip(descr_cols, unscaled_desc_cols): + if scaled_col.endswith('_per_heavyatom'): + tmp_col=desc_df[unscaled_col] / ha_count + tmp_col=tmp_col.rename(scaled_col) + scaled_cols.append(tmp_col) + elif scaled_col.endswith('_log_scaled'): + feat_vals = desc_df[unscaled_col] + if any(feat_vals < 0): + raise ValueError(f"Cannot log scale {unscaled_col} because of negative values in feature.") + tmp_col=np.log(feat_vals) + tmp_col=tmp_col.rename(scaled_col) + scaled_cols.append(tmp_col) + else: + tmp_col=desc_df[unscaled_col] + tmp_col=tmp_col.rename(scaled_col) + scaled_cols.append(tmp_col) + scaled_df=pd.concat(scaled_cols, axis=1) + return scaled_df.copy() + # **************************************************************************************** def __str__(self): """Returns a human-readable description of this Featurization object. diff --git a/atomsci/ddm/pipeline/model_datasets.py b/atomsci/ddm/pipeline/model_datasets.py index cc7c18f1..a8d09c54 100644 --- a/atomsci/ddm/pipeline/model_datasets.py +++ b/atomsci/ddm/pipeline/model_datasets.py @@ -23,6 +23,25 @@ logging.basicConfig(format='%(asctime)-15s %(message)s') +# ***************************************************************************************** +def create_and_load_model_dataset(params, ds_client=None): + """Factory function for creating and loading a ModelDataset object. + + Args: + params (Namespace object): contains all parameter information. + + ds_client (Datastore client) + Returns: + (ModelDataset): instantiated ModelDataset subclass specified by params, with data loaded + """ + featurization = feat.create_featurization(params) + dataset = create_model_dataset(params, featurization, ds_client=None) + + # Load featurized data (this will use scaled_descriptors if available) + dataset.get_featurized_data() + + return dataset + # **************************************************************************************** def create_model_dataset(params, featurization, ds_client=None): """Factory function for creating DatastoreDataset or FileDataset objects. @@ -1405,7 +1424,6 @@ def load_featurized_data(self): self.dataset_key = self.params.dataset_key return dset_df - # Otherwise, generate the expected path for the featurized dataset featurized_dset_name = self.featurization.get_featurized_dset_name(self.dataset_name) dataset_dir = os.path.dirname(self.params.dataset_key) diff --git a/atomsci/ddm/pipeline/model_pipeline.py b/atomsci/ddm/pipeline/model_pipeline.py index 6061c427..59579ce1 100644 --- a/atomsci/ddm/pipeline/model_pipeline.py +++ b/atomsci/ddm/pipeline/model_pipeline.py @@ -380,6 +380,7 @@ def create_model_metadata(self): featurizer=self.params.featurizer, prediction_type=self.params.prediction_type, model_choice_score_type=self.params.model_choice_score_type, + max_invalid_pred_frac=self.params.max_invalid_pred_frac, num_model_tasks=self.params.num_model_tasks, class_number=self.params.class_number, transformers=self.params.transformers, diff --git a/atomsci/ddm/pipeline/model_tracker.py b/atomsci/ddm/pipeline/model_tracker.py index 61053c7e..9f6a3d85 100644 --- a/atomsci/ddm/pipeline/model_tracker.py +++ b/atomsci/ddm/pipeline/model_tracker.py @@ -459,9 +459,8 @@ def convert_metadata(old_metadata): ("descriptor_specific", 'DescriptorSpecific'), ("nn_specific", "NNSpecific"), ("xgb_specific", "xgbSpecific"), - ("umap_specific", "UmapSpecific"), - ] + for (nkey, okey) in map_keys: value = model_metadata.get(okey) if value is not None: diff --git a/atomsci/ddm/pipeline/model_wrapper.py b/atomsci/ddm/pipeline/model_wrapper.py index 63b96c7b..c4c45ecf 100644 --- a/atomsci/ddm/pipeline/model_wrapper.py +++ b/atomsci/ddm/pipeline/model_wrapper.py @@ -80,7 +80,7 @@ def get_latest_pytorch_checkpoint(model, model_dir=None): print(latest_chkpt) return latest_chkpt - + def dc_restore(model, checkpoint=None, model_dir=None, session=None): """Reload the values of all variables from a checkpoint file. @@ -391,7 +391,7 @@ def create_transformers(self, training_datasets): """Initialize transformers for responses, features and weights, and persist them for later. Args: - training_datasets: A dictionary of dc.Datasets containing the training data from + training_datasets: A dictionary of dc.Datasets containing the training data from each fold. Generated using transformers.get_all_training_datasets. Side effects: @@ -412,7 +412,10 @@ def create_transformers(self, training_datasets): for k, td in training_datasets.items(): self.transformers[k] = self._create_output_transformers(td) - self.transformers_x[k] = self._create_feature_transformers(td) + if self.params.feature_transform_path is None: + self.transformers_x[k] = self._create_feature_transformers(td) + else: + self.transformers_x[k] = self.load_feature_transformers_from_pkl(self.params.feature_transform_path) # Set up transformers for weights, if needed self.transformers_w[k] = trans.create_weight_transformers(self.params, td) @@ -442,7 +445,7 @@ def reload_transformers(self): # for backwards compatibity if this file exists, all folds use the same transformers local_path = f"{self.output_dir}/transformers.pkl" - + if os.path.exists(local_path): self.log.info(f"Reloading transformers from model tarball {local_path}") with open(local_path, 'rb') as txfmr: @@ -488,6 +491,40 @@ def reload_transformers(self): # **************************************************************************************** + def load_feature_transformers_from_pkl(self, transformer_pkl_path): + """Loads feature transformer from pkl path + This loads transformers_x from a pkl created using + generate_transformers.build_and_save_feature_transformers_from_csvs. This also + overwrites any parameters set when creating the transfomers saved at + transformer_pkl_path. + + Args: + transformer_pkl_path (str): Path of saved transformer_pkl. + + Returns: + None + + """ + with open(transformer_pkl_path, 'rb') as transformers_pkl_file: + saved_transformers = pickle.load(transformers_pkl_file) + + # check that the loaded transformers are for the same features + if self.params.featurizer != saved_transformers['params']['featurizer']: + raise ValueError((f"Loaded transformers do not match featurizer. Expected {self.params.featurizer}," + f" got {saved_transformers['params']['featurizer']}")) + if self.params.descriptor_type != saved_transformers['params']['descriptor_type']: + raise ValueError((f"Loaded transformers do not match descriptor_type. Expected {self.params.descriptor_type}," + f" got {saved_transformers['params']['descriptor_type']}")) + + # update self.params with the loaded transformer data + self.params.__dict__.update(saved_transformers['params']) + + return saved_transformers['transformers_x'] + + + # **************************************************************************************** + + def transform_dataset(self, dataset, fold): """Transform the responses and/or features in the given DeepChem dataset using the current transformers. @@ -523,10 +560,7 @@ def get_num_features(self): the number of dimensions of the feature space, taking both featurization method and transformers into account. """ - if self.params.feature_transform_type == 'umap': - return self.params.umap_dim - else: - return self.featurization.get_feature_count() + return self.featurization.get_feature_count() # **************************************************************************************** @@ -705,7 +739,7 @@ def __init__(self, params, pipeline, log): # **************************************************************************************** def __iter__(self): return self - + # **************************************************************************************** def __next__(self): """Returns epoch index or stops when the have been enough iterations.""" @@ -716,7 +750,7 @@ def __next__(self): # If we're running on an LC system, check that we have enough time to complete another epoch # before the current job finishes, by extrapolating from the time elapsed so far. - now = time.time() + now = time.time() elapsed_time = now - self.start_time training_time = now - self.training_start time_remaining = self.time_limit * 60 - elapsed_time @@ -938,8 +972,8 @@ def train_kfold_cv(self, pipeline): # Create PerfData structures for computing cross-validation metrics em = perf.EpochManagerKFold(self, subsets={'train':'train_valid', 'valid':'valid', 'test':'test'}, - prediction_type=self.params.prediction_type, - model_dataset=pipeline.data, + prediction_type=self.params.prediction_type, + model_dataset=pipeline.data, production=self.params.production) em.on_new_best_valid(lambda : 1+1) # does not need to take any action @@ -967,7 +1001,7 @@ def train_kfold_cv(self, pipeline): train_perf = train_perf_data.accumulate_preds(train_pred, train_dset.ids) test_perf = test_perf_data.accumulate_preds(test_pred, test_dset.ids) - + # update the make pred function to include latest transformers def make_pred(x): return self.model.predict(x, self.transformers[k]) @@ -1011,13 +1045,13 @@ def make_pred(x): # Only copy the model files we need, not the entire directory self._copy_model(self.best_model_dir) retrain_time = time.time() - retrain_start - self.log.info("Time to retrain model for %d epochs: %.1f seconds, %.1f sec/epoch" % (self.best_epoch, retrain_time, + self.log.info("Time to retrain model for %d epochs: %.1f seconds, %.1f sec/epoch" % (self.best_epoch, retrain_time, retrain_time/max(1, self.best_epoch))) # **************************************************************************************** def train_with_early_stopping(self, pipeline): """Training method for neural networks without k-fold cross validation that allows - early stopping when validation metric fails to improve for specified number of epochs. + early stopping when validation metric fails to improve for specified number of epochs. Trains a neural net model for up to self.params.max_epochs epochs, while tracking the validation set metric given by params.model_choice_score_type. Saves a model checkpoint each time the metric @@ -1049,8 +1083,8 @@ def train_with_early_stopping(self, pipeline): self.data = pipeline.data em = perf.EpochManager(self, - prediction_type=self.params.prediction_type, - model_dataset=pipeline.data, + prediction_type=self.params.prediction_type, + model_dataset=pipeline.data, production=self.params.production) def make_pred(dset): return self.model.predict(dset, self.transformers['final']) @@ -1134,9 +1168,9 @@ def generate_predictions(self, dataset): # Current (2.1) DeepChem neural net classification models don't support uncertainties. if self.params.uncertainty and self.params.prediction_type == 'classification': self.log.warning("Warning: DeepChem neural net models support uncertainty for regression only.") - + if self.params.uncertainty and self.params.prediction_type == 'regression': - # For the models we use, predict_uncertainty returns a tuple (not a list of tuples) for both singletask and multitask. + # For the models we use, predict_uncertainty returns a tuple (not a list of tuples) for both singletask and multitask. # A list is only returned if we request multiple *outputs* (e.g., predictions and embeddings), which are not the same thing as tasks. # Fully connected NN models return predictions and uncertainties as arrays with shape (num_cmpds, num_tasks, num_classes), with @@ -1177,7 +1211,7 @@ def generate_predictions(self, dataset): # =-=ksm: The second 'isinstance' shouldn't be necessary since NormalizationTransformerMissingData # is a subclass of dc.trans.NormalizationTransformer. - if len(self.transformers) == 1 and (isinstance(self.transformers['final'][0], dc.trans.NormalizationTransformer) + if len(self.transformers) == 1 and (isinstance(self.transformers['final'][0], dc.trans.NormalizationTransformer) or isinstance(self.transformers['final'][0],trans.NormalizationTransformerMissingData)): y_stds = self.transformers['final'][0].y_stds.reshape((1,ntasks,1)) std = std / y_stds @@ -1185,7 +1219,7 @@ def generate_predictions(self, dataset): else: # Classification models and regression models without uncertainty are handled here if (not self.params.transformers or self.transformers is None): - txform = [] + txform = [] else: txform = self.transformers['final'] @@ -1294,15 +1328,15 @@ def __init__(self, params, featurizer, ds_client, random_state=None, seed=None): ("dp1", torch.nn.Dropout(p=self.params.dropouts[0]).to(self.dev)), ("relu1", torch.nn.ReLU().to(self.dev)) ]) - + if len(self.params.layer_sizes) > 1: for i in range(1, len(self.params.layer_sizes)): model_dict[f"layer{i+1}"] = torch.nn.Linear(self.params.layer_sizes[i-1], self.params.layer_sizes[i]).to(self.dev) model_dict[f"dp{i+1}"] = torch.nn.Dropout(p=self.params.dropouts[i]).to(self.dev) model_dict[f"relu{i+1}"] = torch.nn.ReLU().to(self.dev) - + model_dict["last_layer"] = torch.nn.Linear(self.params.layer_sizes[-1], 1).to(self.dev) - + self.model_dict = model_dict self.model = torch.nn.Sequential(model_dict).to(self.dev) else: @@ -1314,7 +1348,7 @@ def _predict_binding(self, activity, conc): is needed. It can be the ratio of concentration and Kd of the radioligand in a competitive binding assay, or the concentration of the substrate and Michaelis constant (Km) of enzymatic inhibition assay. """ - + if self.params.is_ki: if self.params.ki_convert_ratio is None: raise Exception("Ki converting ratio is missing. Cannot convert Ki into IC50") @@ -1323,7 +1357,7 @@ def _predict_binding(self, activity, conc): else: IC50 = 10**(9-activity) pred_frac = 1.0/(1.0 + IC50/conc) - + return pred_frac def _l2_loss(self, yp, yr): @@ -1391,10 +1425,10 @@ def _loss_batch(self, loss_func, xb, yb, opt=None): loss_ki, loss_bind = self.loss_func(self.model(xb), yb) loss = loss_ki + loss_bind - + if opt is not None: loss.backward() - opt.step() + opt.step() opt.zero_grad() return loss_ki.item(), loss_bind.item(), len(xb) @@ -1406,7 +1440,7 @@ def __init__(self, ds, dl, n_ki, n_bind): self.dl = dl self.n_ki = n_ki self.n_bind = n_bind - + def _tensorize(self, x): return torch.tensor(x, dtype=torch.float32) @@ -1425,23 +1459,23 @@ def _load_hybrid_data(self, data): # train train_ki_pos = np.where(np.isnan(y_train[:,1].numpy()))[0] train_bind_pos = np.where(~np.isnan(y_train[:,1].numpy()))[0] - + # valid valid_ki_pos = np.where(np.isnan(y_valid[:,1].numpy()))[0] valid_bind_pos = np.where(~np.isnan(y_valid[:,1].numpy()))[0] - + train_ds = TensorDataset(x_train, y_train) train_dl = DataLoader(train_ds, batch_size=self.params.batch_size, shuffle=True, pin_memory=True) - train_data = self.SubsetData(train_ds, - train_dl, - len(train_ki_pos), + train_data = self.SubsetData(train_ds, + train_dl, + len(train_ki_pos), len(train_bind_pos)) valid_ds = TensorDataset(x_valid, y_valid) valid_dl = DataLoader(valid_ds, batch_size=self.params.batch_size * 2, pin_memory=True) - valid_data = self.SubsetData(valid_ds, - valid_dl, - len(valid_ki_pos), + valid_data = self.SubsetData(valid_ds, + valid_dl, + len(valid_ki_pos), len(valid_bind_pos)) self.train_valid_dsets.append((train_data, valid_data)) @@ -1454,13 +1488,13 @@ def _load_hybrid_data(self, data): test_ds = TensorDataset(x_test, y_test) test_dl = DataLoader(test_ds, batch_size=self.params.batch_size * 2, pin_memory=True) - test_data = self.SubsetData(test_ds, - test_dl, - len(test_ki_pos), + test_data = self.SubsetData(test_ds, + test_dl, + len(test_ki_pos), len(test_bind_pos)) self.test_data = test_data - + def save_model(self, checkpoint_file, model, opt, epoch, model_dict): """Save a model to a checkpoint file. Include epoch, model_dict in checkpoint dict. @@ -1471,7 +1505,7 @@ def save_model(self, checkpoint_file, model, opt, epoch, model_dict): opt_state_dict=opt.state_dict(), model_dict=model_dict ) - + torch.save(checkpoint, checkpoint_file) def train(self, pipeline): @@ -1483,7 +1517,7 @@ def train(self, pipeline): # load hybrid data self._load_hybrid_data(pipeline.data) - checkpoint_file = os.path.join(self.model_dir, + checkpoint_file = os.path.join(self.model_dir, f"{self.params.dataset_name}_model_{self.params.model_uuid}.pt") opt = torch.optim.Adam(self.model.parameters(), lr=self.params.learning_rate) @@ -1491,7 +1525,6 @@ def train(self, pipeline): em = perf.EpochManager(self, prediction_type="hybrid", model_dataset=pipeline.data, - transformers=self.transformers, is_ki=self.params.is_ki, production=self.params.production, ki_convert_ratio=self.params.ki_convert_ratio) @@ -1499,7 +1532,7 @@ def train(self, pipeline): em.set_make_pred(lambda x: self.generate_predictions(x)[0]) # initialize ei here so we can use it in the closure ei = 0 - em.on_new_best_valid(lambda : self.save_model(checkpoint_file, self.model, + em.on_new_best_valid(lambda : self.save_model(checkpoint_file, self.model, opt, ei, self.model_dict)) train_dset, valid_dset = pipeline.data.train_valid_dsets[0] @@ -1532,7 +1565,7 @@ def train(self, pipeline): valid_loss_ep /= (valid_data.n_ki + valid_data.n_bind) train_perf, valid_perf, test_perf = em.update_epoch(ei, - train_dset=train_dset, valid_dset=valid_dset, test_dset=test_dset, fold='final') + train_dset=train_dset, valid_dset=valid_dset, test_dset=test_dset) self.log.info("Epoch %d: training %s = %.3f, training loss = %.3f, validation %s = %.3f, validation loss = %.3f, test %s = %.3f" % ( ei, pipeline.metric_type, train_perf, train_loss_ep, pipeline.metric_type, valid_perf, valid_loss_ep, @@ -1542,7 +1575,7 @@ def train(self, pipeline): self.num_epochs_trained = ei + 1 if em.should_stop(): break - + # Revert to last checkpoint checkpoint = torch.load(checkpoint_file) self.model.load_state_dict(checkpoint['model_state_dict']) @@ -1564,7 +1597,7 @@ def reload_model(self, reload_dir): Side effects: Resets the value of model, transformers, and transformers_x """ - + checkpoint_file = os.path.join(reload_dir, f"{self.params.dataset_name}_model_{self.params.model_uuid}.pt") if os.path.isfile(checkpoint_file): checkpoint = torch.load(checkpoint_file) @@ -1574,7 +1607,7 @@ def reload_model(self, reload_dir): self.model.eval() else: raise Exception(f"Checkpoint file doesn't exist in the reload_dir {reload_dir}") - + # Restore the transformers from the datastore or filesystem self.reload_transformers() @@ -1603,9 +1636,9 @@ def generate_predictions(self, dataset): data_ds = TensorDataset(x_data, y_data) data_dl = DataLoader(data_ds, batch_size=self.params.batch_size * 2, pin_memory=True) - _data_data = self.SubsetData(data_ds, - data_dl, - len(data_ki_pos), + _data_data = self.SubsetData(data_ds, + data_dl, + len(data_ki_pos), len(data_bind_pos)) pred = [] real = [] @@ -2018,7 +2051,7 @@ def get_model_specific_metadata(self): } model_spec_metadata = dict(rf_specific = rf_metadata) return model_spec_metadata - + # **************************************************************************************** class DCxgboostModelWrapper(ForestModelWrapper): """ModelWrapper class for gradient-boosted tree models, as implemented in the xgboost package. @@ -2093,8 +2126,7 @@ def make_dc_model(self, model_dir): missing=np.nan, importance_type='gain', n_jobs=-1, - gpu_id = -1, - n_gpus = 0, + device='cpu', max_bin = 16, ) else: @@ -2127,9 +2159,8 @@ def make_dc_model(self, model_dir): random_state=self.seed, importance_type='gain', missing=np.nan, - gpu_id = -1, - n_jobs=-1, - n_gpus = 0, + device='cpu', + n_jobs=-1, max_bin = 16, ) @@ -2241,8 +2272,7 @@ def reload_model(self, reload_dir): missing=np.nan, importance_type='gain', n_jobs=-1, - gpu_id = -1, - n_gpus = 0, + device='cpu', max_bin = 16, ) else: @@ -2262,12 +2292,11 @@ def reload_model(self, reload_dir): reg_lambda=self.params.xgb_lambda, scale_pos_weight=1, base_score=0.5, - random_state=self.seed, + random_state=self.seed, importance_type='gain', missing=np.nan, - gpu_id = -1, - n_jobs=-1, - n_gpus = 0, + device='cpu', + n_jobs=-1, max_bin = 16, ) @@ -2422,7 +2451,7 @@ def __init__(self, params, featurizer, ds_client, random_state=None, seed=None): featurizer (Featurization): Object managing the featurization of compounds ds_client: datastore client. """ - # use NNModelWrapper init. + # use NNModelWrapper init. super().__init__(params, featurizer, ds_client, random_state=random_state, seed=seed) self.num_epochs_trained = 0 self.model = self.recreate_model() @@ -2452,7 +2481,7 @@ def recreate_model(self, **kwargs): model = chosen_model( sed = self.seed, **extracted_features - ) + ) return model @@ -2563,7 +2592,7 @@ def train_with_early_stopping(self, pipeline): early stopping when validation metric fails to improve for specified number of epochs. Differs from superclass NNModelWrapper implementation by saving mean input feature weights by epoch, providing a way to monitor effects of different weight_decay_penalty settings. - + Trains a neural net model for up to self.params.max_epochs epochs, while tracking the validation set metric given by params.model_choice_score_type. Saves a model checkpoint each time the metric is improved over its previous saved value by more than a threshold percentage. If the metric fails to @@ -2593,12 +2622,11 @@ def train_with_early_stopping(self, pipeline): """ self.data = pipeline.data feature_names = self.data.featurization.get_feature_columns() - nfeatures = len(feature_names) self.feature_weights = dict(zip(feature_names, [[] for f in feature_names])) em = perf.EpochManager(self, - prediction_type=self.params.prediction_type, - model_dataset=pipeline.data, + prediction_type=self.params.prediction_type, + model_dataset=pipeline.data, production=self.params.production) def make_pred(dset): return self.model.predict(dset, self.transformers['final']) @@ -2621,10 +2649,8 @@ def make_pred(dset): pipeline.metric_type, test_perf)) layer1_weights = self.model.model.layers[0].weight - feature_weights = np.zeros(nfeatures, dtype=float) - for node_weights in layer1_weights: - node_feat_weights = torch.abs(node_weights).detach().numpy() - feature_weights += node_feat_weights + feature_weights = layer1_weights.detach().abs().mean(dim=0).cpu().numpy() + for fnum, fname in enumerate(feature_names): self.feature_weights[fname].append(feature_weights[fnum]) @@ -2742,7 +2768,7 @@ def get_model_specific_metadata(self): model_spec_metdata (dict): A dictionary of the parameter sets for the MultitaskDCModelWrapper object. Parameters are saved under the key 'nn_specific' as a subdictionary. """ - + nn_metadata = dict( best_epoch = self.best_epoch, max_epochs = self.params.max_epochs, @@ -2775,7 +2801,7 @@ def _copy_model(self, dest_dir): chkpt_file = os.path.join(self.model_dir, 'checkpoint') with open(chkpt_file, 'r') as chkpt_in: - chkpt_dict = yaml.load(chkpt_in.read()) + chkpt_dict = yaml.safe_load(chkpt_in) chkpt_prefix = chkpt_dict['model_checkpoint_path'] files = [chkpt_file] # files.append(os.path.join(self.model_dir, 'model.pickle')) @@ -2831,7 +2857,7 @@ def count_params(self): class GraphConvDCModelWrapper(KerasDeepChemModelWrapper): """ModelWrapper subclass for Duvenaud style graph convolution models, as implemented in the DeepChem GraphConvModel model class. - + Contains methods to load in a dataset, split and featurize the data, fit a model to the train dataset, generate predictions for an input dataset, and generate performance metrics for these predictions. @@ -2988,4 +3014,4 @@ def get_model_specific_metadata(self): weight_decay_penalty_type=self.params.weight_decay_penalty_type ) model_spec_metadata = dict(nn_specific = nn_metadata) - return model_spec_metadata \ No newline at end of file + return model_spec_metadata diff --git a/atomsci/ddm/pipeline/parameter_parser.py b/atomsci/ddm/pipeline/parameter_parser.py index b1a6cdff..a4183ee7 100644 --- a/atomsci/ddm/pipeline/parameter_parser.py +++ b/atomsci/ddm/pipeline/parameter_parser.py @@ -7,6 +7,7 @@ import deepchem.models as dcm import deepchem.models.torch_models as dcmt +from deepchem.models import GraphConvModel import deepchem.feat as dcf import inspect @@ -32,10 +33,10 @@ 'model_dir':'result_dir', } -model_wl = {'AttentiveFPModel':dcm.AttentiveFPModel, +model_wl = {'AttentiveFPModel':dcm.AttentiveFPModel, 'GCNModel':dcm.GCNModel, - 'MPNNModel':dcm.MPNNModel, - 'GraphConvModel':dcm.GraphConvModel, + 'MPNNModel':dcmt.MPNNModel, + 'GraphConvModel': GraphConvModel, 'PytorchMPNNModel':dcmt.MPNNModel}#, dcm.GCNModel, dcm.GATModel] # featurizer white list @@ -139,7 +140,7 @@ def all_auto_lists(): def extract_model_params(params, strip_prefix=True): """Extract parameters specific to a model. - This function extracts parameters intended for a specific model. It should only be used + This function extracts parameters intended for a specific model. It should only be used for arguments automatically added by an AutoArgumentAdder. Args: @@ -148,7 +149,7 @@ def extract_model_params(params, strip_prefix=True): For example, 'AttentiveFP_mode' becomes 'mode'. Returns: - dict: A dictionary containing a subset of parameters from `params` that are relevant + dict: A dictionary containing a subset of parameters from `params` that are relevant to the specified model. """ assert params.model_type in model_wl @@ -159,7 +160,7 @@ def extract_model_params(params, strip_prefix=True): def extract_featurizer_params(params, strip_prefix=True): """Extract parameters specific to a featurizer. - This function extracts parameters intended for a specific featurizer. It should only be used + This function extracts parameters intended for a specific featurizer. It should only be used for arguments automatically added by an AutoArgumentAdder. Args: @@ -168,7 +169,7 @@ def extract_featurizer_params(params, strip_prefix=True): For example, 'MolGraphConvFeaturizer_use_edges' becomes 'use_edges'. Returns: - dict: A dictionary containing a subset of parameters from `params` that are relevant + dict: A dictionary containing a subset of parameters from `params` that are relevant to the specified featurizer. """ assert params.featurizer in featurizer_wl @@ -298,7 +299,7 @@ def is_list(p, type_annotation): return str(type_annotation).startswith('typing.List') or str(type_annotation) == "" def strip_optional(type_annotation): - """In the upgrade to python 3.9 type_annotaions now use + """In the upgrade to python 3.10 type_annotaions now use typeing.Optional and we need to strip that off. Args: @@ -530,7 +531,7 @@ def get_list_args(self): # Parameters that may take lists of values, usually but not always in the context of a hyperparam search convert_to_float_list = {'dropouts','weight_init_stddevs','bias_init_consts','learning_rate', - 'umap_targ_wt', 'umap_min_dist', 'dropout_list','weight_decay_penalty', + 'dropout_list','weight_decay_penalty', 'xgb_learning_rate', 'xgb_gamma', 'xgb_alpha', @@ -538,10 +539,11 @@ def get_list_args(self): "xgb_min_child_weight", "xgb_subsample", "xgb_colsample_bytree", - "ki_convert_ratio" + "ki_convert_ratio", + "robustscaler_quartile_range" } convert_to_int_list = {'layer_sizes','rf_max_features','rf_estimators', 'rf_max_depth', - 'umap_dim', 'umap_neighbors', 'layer_nums', 'node_nums', + 'layer_nums', 'node_nums', 'xgb_max_depth', 'xgb_n_estimators', 'seed'}.union(all_auto_int_lists()) convert_to_numeric_list = convert_to_float_list | convert_to_int_list keep_as_list = {'dropouts','weight_init_stddevs','bias_init_consts', @@ -557,9 +559,9 @@ def get_list_args(self): 'xgb_max_depth', 'xgb_n_estimators' } convert_to_str_list = \ - {'response_cols','model_type','featurizer','splitter','umap_metric','weight_decay_penalty_type','descriptor_type'} + {'response_cols','model_type','featurizer','splitter','weight_decay_penalty_type','descriptor_type'} not_a_str_list_outside_of_hyperparams = \ - {'model_type','featurizer','splitter','umap_metric','weight_decay_penalty_type','descriptor_type'} + {'model_type','featurizer','splitter','weight_decay_penalty_type','descriptor_type'} #********************************************************************************************************** def to_str(params_obj): @@ -781,8 +783,14 @@ def dict_to_list(inp_dictionary,replace_spaces=False): temp_list_to_command_line = [] # Special case handling for arguments that are False or True by default - default_false = ['previously_split','use_shortlist','datastore', 'save_results','verbose', 'hyperparam', 'split_only', 'is_ki', 'production', 'embedding_and_features'] - default_true = ['transformers','previously_featurized','uncertainty', 'rerun'] + default_false = ['previously_split','use_shortlist','datastore', + 'save_results','verbose', 'hyperparam', 'split_only', 'is_ki', 'production', + 'embedding_and_features', + 'robustscaler_unit_variance'] + default_true = ['transformers','previously_featurized','uncertainty', 'rerun', + 'robustscaler_with_centering', 'robustscaler_with_scaling', + 'powertransformer_standardize'] + for key, value in inp_dictionary.items(): if key in default_false: true_options = ['True','true','ture','TRUE','Ture'] @@ -1026,6 +1034,10 @@ def get_parser(): '--model_choice_score_type', dest='model_choice_score_type', required=False, default=None, help='Type of score function used to choose best epoch and/or hyperparameters (defaults to "roc_auc" ' 'for classification and "r2" for regression). ') + parser.add_argument( + '--max_invalid_pred_frac', dest='max_invalid_pred_frac', required=False, type=float, default=0.01, + help='Maximum fraction of NaN/Inf predictions to filter before applying hard metric penalties. ' + 'Must be between 0.0 and 1.0.') parser.add_argument( '--model_type', dest='model_type', default=None, type=str, help='Type of model to fit (NN, RF, or xgboost). The model_type sets the model subclass in model_wrapper. ' @@ -1244,7 +1256,7 @@ def get_parser(): parser.add_argument( '--sampling_method', dest='sampling_method', type=str, default=None, help='Method for sampling to address class imbalance (e.g., \'undersampling\', \'SMOTE\')') - + parser.add_argument( '--sampling_ratio', dest='sampling_ratio', type=str, default='auto', help='The "sampling_ratio" parameter of SMOTE must be a float in the range (0.0, 1.0], a str ' @@ -1281,11 +1293,13 @@ def get_parser(): # ********************************************************************************************************** # model_building_parameters: transformers parser.add_argument( - '--feature_transform_type', dest='feature_transform_type', choices=['normalization', 'umap'], + '--feature_transform_type', dest='feature_transform_type', + choices=['normalization', 'RobustScaler', 'PowerTransformer', 'Identity'], default='normalization', help='type of transformation for the features') parser.add_argument( '--response_transform_type', dest='response_transform_type', default='normalization', - help='type of normalization for the response column TODO: Not currently implemented') + choices=['normalization'], + help='type of normalization for the response column.') parser.add_argument( '--weight_transform_type', dest='weight_transform_type', choices=[None, 'None', 'balancing'], default=None, help='type of normalization for the weights') @@ -1305,28 +1319,59 @@ def get_parser(): help='Boolean switch for using transformation on regression output. Default is True') parser.set_defaults(transformers=True) - # ********************************************************************************************************** - # model_building_parameters: UMAP - parser.add_argument( - '--umap_dim', dest='umap_dim', required=False, default='10', - help='Dimension of projected feature space, if UMAP transformation is requested. Can be input as a comma ' - 'separated list for hyperparameter search (e.g. \'2,6,10\').') - parser.add_argument( - '--umap_metric', dest='umap_metric', required=False, default='euclidean', - help='Distance metric used, if UMAP transformation is requested. Can be input as a comma separated list ' - 'for hyperparameter search (e.g. \'euclidean\',\'cityblock\')') + # Load transformer parser.add_argument( - '--umap_min_dist', dest='umap_min_dist', required=False, default='0.05', - help='Minimum distance used in UMAP projection, if UMAP transformation is requested. Can be input as a ' - 'comma separated list for hyperparameter search (e.g. \'0.01,0.02,0.05\')') - parser.add_argument( - '--umap_neighbors', dest='umap_neighbors', required=False, default='20', - help='Number of nearest neighbors used in UMAP projection, if UMAP transformation is requested. Can be input ' - 'as a comma separated list for hyperparameter search (e.g. \'10,20,30\')') - parser.add_argument( - '--umap_targ_wt', dest='umap_targ_wt', required=False, default='0.0', - help='Weight given to training set response values in UMAP projection, if UMAP transformation is requested.' - ' Can be input as a comma separated list for hyperparameter search (e.g. \'0.0,0.1,0.2\')') + '--feature_transform_path', dest='feature_transform_path', + type=str, default=None, help='Path to a transformer pkl created using generate_transformers. This ' + 'will overwrite any relevant transformer parameters with values loaded from the pkl' + ) + + # RobustScaler parameters + parser.add_argument( + '--robustscaler_with_centering', action='store_false', + help='If True, center the data before scaling. ' + 'This will cause transform to raise an exception when attempted on sparse matrices, ' + 'because centering them entails building a dense matrix which in common use ' + 'cases is likely to be too large to fit in memory. Default is True') + parser.set_defaults(robustscaler_with_centering=True) + parser.add_argument( + '--robustscaler_with_scaling', action='store_false', + help='If True, scale the data to interquartile range. Default is True') + parser.set_defaults(robustscaler_with_scaling=True) + parser.add_argument( + '--robustscaler_quartile_range', type=str, default='25.0,75.0', + help='Quantile range used to calculate scale_. ' + 'By default this is equal to the IQR, i.e., ' + 'q_min is the first quantile and q_max is the third quantile. ' + '(q_min, q_max), 0.0 < q_min < q_max < 100.0. Default is "25.0,75.0"') + parser.add_argument( + '--robustscaler_unit_variance', action='store_true', + help='If True, scale data so that normally distributed features have a variance of 1. ' + 'In general, if the difference between the x-values of q_max and q_min for a standard ' + 'normal distribution is greater than 1, the dataset will be scaled down. ' + 'If less than 1, the dataset will be scaled up. Default is False.') + parser.set_defaults(robustscaler_unit_variance=False) + + # PowerTransformer parameters + parser.add_argument( + '--powertransformer_method', choices=['yeo-johnson', 'box-cox'], + default='yeo-johnson', + help='The power transform method. Available methods are: "yeo-johnson", ' + 'works with positive and negative values "box-cox", only works with strictly positive values. ' + 'Choices are {"yeo-johnson", "box-cox"}') + parser.add_argument( + '--powertransformer_standardize', action='store_false', + help='Set to True to apply zero-mean, unit-variance normalization to the transformed output. ' + 'Default is True.') + parser.set_defaults(powertransformer_standardize=True) + + # Sklearn parameters + parser.add_argument( + '--imputer_strategy', choices=['mean', 'median', 'most_frequent'], + default='mean', + help='This sets the imputer strategy for the SimpleImputer for use with' + 'PowerTransformer or RobustScaler.' + 'Choices are {"mean", "median", "most_frequent"}') # ********************************************************************************************************** # model_building_parameters: XGBoost @@ -1470,9 +1515,9 @@ def get_parser(): help='Scaling factor for constraining network size based on number of parameters in the network for ' 'hyperparam search') parser.add_argument( - '--python_path', dest='python_path', required=False, + '--python_path', dest='python_path', required=False, # default to the version of python used to run this script - default=sys.executable, + default=sys.executable, help='Path to desired python version') parser.add_argument( '--rerun', dest= 'rerun', required=False, action='store_false', @@ -1480,14 +1525,14 @@ def get_parser(): 'already been built') parser.set_defaults(rerun=True) parser.add_argument( - '--script_dir', dest='script_dir', required=False, + '--script_dir', dest='script_dir', required=False, # use location of this file to generate script dir default=os.path.abspath(os.path.join(__file__, '../..')), help='Path where pipeline file you want to run hyperparam search from is located') parser.add_argument( '--search_type', dest='search_type', required=False, default='grid', - help='Type of hyperparameter search to do. Options = [grid, random, geometric, and user_specified]') + help='Type of hyperparameter search to do. Options = [grid, random, geometric, user_specified, and hyperopt (Optuna Bayesian search)]') parser.add_argument( '--split_only', dest='split_only', required=False, action='store_true', @@ -1528,64 +1573,64 @@ def get_parser(): help='Time limit in minutes for hyperparameter search batch jobs.' 'If set to None then this parameter will not be used.') - # HyperOptSearch specific parameters + # OptunaSearch specific parameters # NN model parser.add_argument( '--lr', dest='lr', required=False, default=None, - help='learning rate shown in HyperOpt domain format, e.g. --lr=uniform|0.00001,0.001') + help='learning rate shown in Optuna domain format, e.g. --lr=uniform|0.00001,0.001') parser.add_argument( '--ls', dest='ls', required=False, default=None, - help='layer sizes shown in HyperOpt domain format, e.g. --ls=choice|2|8,16,32,64,128,256,512') + help='layer sizes shown in Optuna domain format, e.g. --ls=choice|2|8,16,32,64,128,256,512') parser.add_argument( '--ls_ratio', dest='ls_ratio', required=False, default=None, - help='layer size ratios (layer size / previous layer size) shown in HyperOpt domain format, the number of layers is not needed here, taken from ls, e.g. --ls_ratio=uniform|0.1,0.9') + help='layer size ratios (layer size / previous layer size) shown in Optuna domain format, the number of layers is not needed here, taken from ls, e.g. --ls_ratio=uniform|0.1,0.9') parser.add_argument( '--dp', dest='dp', required=False, default=None, - help='dropouts shown in HyperOpt domain format, e.g. --dp=uniform|3|0,0.4') + help='dropouts shown in Optuna domain format, e.g. --dp=uniform|3|0,0.4') parser.add_argument( '--wdp', dest='wdp', required=False, default=None, - help='weight_decay_penalty shown in HyperOpt domain format, e.g. --wdp=loguniform|-6.908,-4.605') + help='weight_decay_penalty shown in Optuna domain format, e.g. --wdp=loguniform|-6.908,-4.605') parser.add_argument( '--wdt', dest='wdt', required=False, default=None, - help='weight_decay_penalty_type shown in HyperOpt domain format, e.g. --wdt=choice|l1,l2') + help='weight_decay_penalty_type shown in Optuna domain format, e.g. --wdt=choice|l1,l2') # RF model parser.add_argument( '--rfe', dest='rfe', required=False, default=None, - help='rf_estimators shown in HyperOpt domain format, e.g. --rfe=uniformint|64,512') + help='rf_estimators shown in Optuna domain format, e.g. --rfe=uniformint|64,512') parser.add_argument( '--rfd', dest='rfd', required=False, default=None, - help='rf_max_depth shown in HyperOpt domain format, e.g. --rfd=uniformint|64,512') + help='rf_max_depth shown in Optuna domain format, e.g. --rfd=uniformint|64,512') parser.add_argument( '--rff', dest='rff', required=False, default=None, - help='rf_max_features shown in HyperOpt domain format, e.g. --rff=uniformint|64,512') + help='rf_max_features shown in Optuna domain format, e.g. --rff=uniformint|64,512') # XGBoost model parser.add_argument( '--xgbg', dest='xgbg', required=False, default=None, - help='xgb_gamma shown in HyperOpt domain format, e.g. --xgbg=uniform|0,0.4') + help='xgb_gamma shown in Optuna domain format, e.g. --xgbg=uniform|0,0.4') parser.add_argument( '--xgba', dest='xgba', required=False, default=None, - help='xgb_alpha shown in HyperOpt domain format, e.g. --xgba=uniform|0,0.4') + help='xgb_alpha shown in Optuna domain format, e.g. --xgba=uniform|0,0.4') parser.add_argument( '--xgbb', dest='xgbb', required=False, default=None, - help='xgb_lambda shown in HyperOpt domain format, e.g. --xgbb=uniform|0,0.4') + help='xgb_lambda shown in Optuna domain format, e.g. --xgbb=uniform|0,0.4') parser.add_argument( '--xgbl', dest='xgbl', required=False, default=None, - help='xgb_learning_rate shown in HyperOpt domain format, e.g. --xgbl=loguniform|-6.9,-2.3') + help='xgb_learning_rate shown in Optuna domain format, e.g. --xgbl=loguniform|-6.9,-2.3') parser.add_argument( '--xgbd', dest='xgbd', required=False, default=None, - help='xgb_max_depth shown in HyperOpt domain format, e.g. --xgbd=uniformint|3,10') + help='xgb_max_depth shown in Optuna domain format, e.g. --xgbd=uniformint|3,10') parser.add_argument( '--xgbc', dest='xgbc', required=False, default=None, - help='xgb_colsample_bytree shown in HyperOpt domain format, e.g. --xgbc=uniform|0.1,1.0') + help='xgb_colsample_bytree shown in Optuna domain format, e.g. --xgbc=uniform|0.1,1.0') parser.add_argument( '--xgbs', dest='xgbs', required=False, default=None, - help='xgb_subsample shown in HyperOpt domain format, e.g. --xgbs=uniform|0.1,1.0') + help='xgb_subsample shown in Optuna domain format, e.g. --xgbs=uniform|0.1,1.0') parser.add_argument( '--xgbn', dest='xgbn', required=False, default=None, - help='xgb_n_estimators shown in HyperOpt domain format, e.g. --xgbn=choice|200,500,1000') + help='xgb_n_estimators shown in Optuna domain format, e.g. --xgbn=choice|200,500,1000') parser.add_argument( '--xgbw', dest='xgbw', required=False, default=None, - help='xgb_min_child_weight shown in HyperOpt domain format, e.g. --xgbw=uniform|1.0,1.2') + help='xgb_min_child_weight shown in Optuna domain format, e.g. --xgbw=uniform|1.0,1.2') # checkpoint parser.add_argument( '--hp_checkpoint_save', dest='hp_checkpoint_save', required=False, default=None, @@ -1686,6 +1731,11 @@ def postprocess_args(parsed_args): else: parsed_args.model_choice_score_type = 'r2' + if parsed_args.max_invalid_pred_frac is None: + parsed_args.max_invalid_pred_frac = 0.01 + if parsed_args.max_invalid_pred_frac < 0.0 or parsed_args.max_invalid_pred_frac > 1.0: + raise Exception("max_invalid_pred_frac must be between 0.0 and 1.0.") + # Convert arguments passed as comma-separated values into lists if parsed_args.hyperparam: for item in convert_to_str_list: @@ -1788,7 +1838,7 @@ def postprocess_args(parsed_args): #*********************************************************************************************************** def validate_sampling_strategy_argument(value): """Validates sampling_strategy parameter for SMOTE and undersampling. - Validates that the input value is either a float in the range (0.0, 1.0] or a string among + Validates that the input value is either a float in the range (0.0, 1.0] or a string among {'auto', 'not majority', 'minority', 'all', 'not minority'}. Raises a ValueError if the validation fails. Args: @@ -1798,7 +1848,7 @@ def validate_sampling_strategy_argument(value): ValueError: If the value is not a float in the range (0.0, 1.0] or a valid string. """ valid_strings = {"auto", "not majority", "minority", "all", "not minority"} - + try: float_value = float(value) if float_value <= 0.0 or float_value > 1.0: diff --git a/atomsci/ddm/pipeline/perf_data.py b/atomsci/ddm/pipeline/perf_data.py index a8931c5a..42d1b2d7 100644 --- a/atomsci/ddm/pipeline/perf_data.py +++ b/atomsci/ddm/pipeline/perf_data.py @@ -7,10 +7,13 @@ import deepchem as dc import numpy as np +import logging from sklearn.metrics import roc_auc_score, confusion_matrix, average_precision_score, precision_score, recall_score from sklearn.metrics import accuracy_score, matthews_corrcoef, cohen_kappa_score, log_loss, balanced_accuracy_score from sklearn.metrics import r2_score, mean_absolute_error, mean_squared_error +log = logging.getLogger('ATOM') + # ****************************************************************************************************************************** def rms_error(y_real, y_pred): """Calculates the root mean squared error. Score function used for model selection. @@ -54,6 +57,234 @@ def negative_predictive_value(y_real, y_pred): npv = negative_predictive_value, cross_entropy = log_loss, accuracy = accuracy_score, bal_accuracy = balanced_accuracy_score, avg_precision = average_precision_score, mcc = matthews_corrcoef, kappa = cohen_kappa_score) +MAX_INVALID_FRAC_TO_FILTER = 0.01 +_ACTIVE_MAX_INVALID_FRAC_TO_FILTER = MAX_INVALID_FRAC_TO_FILTER + + +def _configure_invalid_pred_frac_threshold(params): + """Set module-level invalid prediction filtering threshold from params.""" + global _ACTIVE_MAX_INVALID_FRAC_TO_FILTER + threshold = getattr(params, 'max_invalid_pred_frac', MAX_INVALID_FRAC_TO_FILTER) + if threshold is None: + threshold = MAX_INVALID_FRAC_TO_FILTER + threshold = float(threshold) + clamped_threshold = min(1.0, max(0.0, threshold)) + if clamped_threshold != threshold: + log.warning( + "Clamped max_invalid_pred_frac from %.6f to %.6f; expected range is [0.0, 1.0].", + threshold, + clamped_threshold, + ) + threshold = clamped_threshold + _ACTIVE_MAX_INVALID_FRAC_TO_FILTER = threshold + log.info("Using max_invalid_pred_frac=%.4f for invalid prediction handling.", threshold) + + +def _get_active_invalid_pred_frac_threshold(): + """Return active invalid prediction filtering threshold.""" + return _ACTIVE_MAX_INVALID_FRAC_TO_FILTER + + +def _regression_invalid_penalty(score_type): + """Return a hard penalty for invalid regression predictions. + + Scores where larger is better (for example R2) get a very negative value. + Loss-like scores (for example MAE/RMSE) get a very large positive value. + """ + if score_type == 'r2': + return -1.0e12 + if score_type in {'mae', 'rmse'}: + return 1.0e12 + return np.nan + + +def _finite_row_mask(arr): + """Return a row-wise finite mask for 1D/2D+ arrays.""" + arr = np.asarray(arr) + if arr.ndim <= 1: + return np.isfinite(arr) + reduce_axes = tuple(range(1, arr.ndim)) + return np.all(np.isfinite(arr), axis=reduce_axes) + + +def _invalid_stats(y_real, y_pred): + """Return invalid count, total count, and invalid fraction for paired arrays.""" + y_real = np.asarray(y_real) + y_pred = np.asarray(y_pred) + + if y_real.ndim == 0 or y_pred.ndim == 0 or y_real.shape[0] != y_pred.shape[0]: + return 0, 0, 0.0, np.array([], dtype=bool) + + valid_rows = _finite_row_mask(y_real) & _finite_row_mask(y_pred) + total = int(valid_rows.shape[0]) + invalid_count = int(total - np.sum(valid_rows)) + invalid_frac = float(invalid_count / total) if total > 0 else 0.0 + return invalid_count, total, invalid_frac, valid_rows + + +def _safe_regression_score(score_type, y_real, y_pred, default=np.nan): + """Compute a regression metric with tolerant filtering then hard penalties. + + If invalid values are at most 1% of rows, compute the metric on remaining rows. + Otherwise, return a score-specific worst-case penalty. + """ + y_real = np.asarray(y_real).reshape(-1) + y_pred = np.asarray(y_pred).reshape(-1) + penalty = _regression_invalid_penalty(score_type) + + threshold = _get_active_invalid_pred_frac_threshold() + invalid_count, total_count, invalid_frac, valid_rows = _invalid_stats(y_real, y_pred) + if invalid_frac > 0.0: + if invalid_frac <= threshold and np.any(valid_rows): + log.info( + "Filtered invalid regression rows for %s: %d/%d (%.2f%%) <= threshold %.2f%%", + score_type, + invalid_count, + total_count, + 100.0 * invalid_frac, + 100.0 * threshold, + ) + y_real = y_real[valid_rows] + y_pred = y_pred[valid_rows] + else: + log.warning( + "Applying regression penalty for %s due to invalid rows: %d/%d (%.2f%%) > threshold %.2f%%", + score_type, + invalid_count, + total_count, + 100.0 * invalid_frac, + 100.0 * threshold, + ) + return penalty + + if score_type == 'r2' and y_real.size < 2: + return penalty + + try: + return regr_score_func[score_type](y_real, y_pred) + except ValueError: + return penalty if np.isfinite(penalty) else default + + +def _has_non_finite_values(arr): + """Return True when an array-like contains NaN/Inf numeric values.""" + arr = np.asarray(arr) + if np.issubdtype(arr.dtype, np.number): + return not np.all(np.isfinite(arr)) + if arr.dtype == object: + try: + return not np.all(np.isfinite(arr.astype(float))) + except (TypeError, ValueError): + return False + return False + + +def _classification_invalid_penalty(score_type): + """Return a hard penalty for invalid classification predictions.""" + if score_type == 'cross_entropy': + return 1.0e12 + if score_type in {'mcc', 'kappa'}: + return -1.0 + if score_type in classif_score_func: + return 0.0 + return np.nan + + +def _safe_classification_score(score_type, y_real, y_pred, average=None, default=np.nan): + """Compute a classification metric with tolerant filtering then hard penalties. + + If invalid values are at most 1% of rows, compute the metric on remaining rows. + Otherwise, return a score-specific worst-case penalty. + """ + penalty = _classification_invalid_penalty(score_type) + y_real = np.asarray(y_real) + y_pred = np.asarray(y_pred) + + threshold = _get_active_invalid_pred_frac_threshold() + + if _has_non_finite_values(y_real) or _has_non_finite_values(y_pred): + if y_real.ndim == 0 or y_pred.ndim == 0: + return penalty + + if y_real.shape[0] != y_pred.shape[0]: + return penalty + + invalid_count, total_count, invalid_frac, valid_rows = _invalid_stats(y_real, y_pred) + if invalid_frac <= threshold and np.any(valid_rows): + log.info( + "Filtered invalid classification rows for %s: %d/%d (%.2f%%) <= threshold %.2f%%", + score_type, + invalid_count, + total_count, + 100.0 * invalid_frac, + 100.0 * threshold, + ) + y_real = y_real[valid_rows] + y_pred = y_pred[valid_rows] + else: + log.warning( + "Applying classification penalty for %s due to invalid rows: %d/%d (%.2f%%) > threshold %.2f%%", + score_type, + invalid_count, + total_count, + 100.0 * invalid_frac, + 100.0 * threshold, + ) + return penalty + + try: + if average is None: + return classif_score_func[score_type](y_real, y_pred) + return classif_score_func[score_type](y_real, y_pred, **{'average': average}) + except ValueError: + return penalty if np.isfinite(penalty) else default + + +def _coerce_invalid_pred_classes(y_real_classes, y_pred_classes, y_class_probs, num_classes): + """Force non-finite-probability rows to an explicitly wrong predicted class.""" + pred_classes = np.asarray(y_pred_classes).copy() + real_classes = np.asarray(y_real_classes) + class_probs = np.asarray(y_class_probs) + + if class_probs.ndim == 1: + invalid_rows = ~np.isfinite(class_probs) + else: + invalid_rows = ~np.all(np.isfinite(class_probs), axis=1) + + if not np.any(invalid_rows): + return pred_classes + + bad_idxs = np.where(invalid_rows)[0] + for idx in bad_idxs: + real_class = real_classes[idx] + if not np.isfinite(real_class): + pred_classes[idx] = 0 + continue + real_class = int(real_class) + if num_classes == 2: + pred_classes[idx] = 1 - real_class if real_class in (0, 1) else 0 + else: + pred_classes[idx] = (real_class + 1) % int(num_classes) + + return pred_classes + + +def _safe_confusion_matrix(y_real, y_pred, num_classes): + """Compute confusion matrix and return zeros when predictions are invalid.""" + if _has_non_finite_values(y_real): + return np.zeros((num_classes, num_classes), dtype=int).tolist() + + try: + return confusion_matrix(y_real, y_pred).tolist() + except ValueError: + return np.zeros((num_classes, num_classes), dtype=int).tolist() + + +def _safe_mean(scores, default=np.nan): + """Average only finite values and return a fallback when none are valid.""" + finite_scores = [score for score in scores if np.isfinite(score)] + return float(np.mean(finite_scores)) if finite_scores else default + # The following score types are loss functions, meaning the result must be sign flipped so we can maximize it in model selection loss_funcs = {'mae', 'rmse', 'cross_entropy'} @@ -91,6 +322,8 @@ def create_perf_data(prediction_type, model_dataset, subset, **kwargs): ValueError: if split_strategy not in ['train_valid_test','k_fold_cv'] ValueError: prediction_type not in ['regression','classification'] """ + _configure_invalid_pred_frac_threshold(model_dataset.params) + if subset == 'full': split_strategy = 'train_valid_test' else: @@ -236,9 +469,9 @@ def model_choice_score(self, score_type='r2'): nzrows = np.where(weights[:,i] != 0)[0] task_real_vals = np.squeeze(real_vals[nzrows,i]) task_pred_vals = np.squeeze(pred_vals[nzrows,i]) - scores.append(regr_score_func[score_type](task_real_vals, task_pred_vals)) + scores.append(_safe_regression_score(score_type, task_real_vals, task_pred_vals)) - self.model_score = float(np.mean(scores)) + self.model_score = _safe_mean(scores, default=-np.inf) if score_type in loss_funcs: self.model_score = -self.model_score return self.model_score @@ -287,14 +520,14 @@ def get_prediction_results(self): nzrows = np.where(weights[:,i] != 0)[0] task_real_vals = np.squeeze(real_vals[nzrows,i]) task_pred_vals = np.squeeze(pred_vals[nzrows,i]) - mae_scores.append(regr_score_func['mae'](task_real_vals, task_pred_vals)) - rms_scores.append(regr_score_func['rmse'](task_real_vals, task_pred_vals)) + mae_scores.append(_safe_regression_score('mae', task_real_vals, task_pred_vals)) + rms_scores.append(_safe_regression_score('rmse', task_real_vals, task_pred_vals)) response_means.append(task_real_vals.mean().tolist()) response_stds.append(task_real_vals.std().tolist()) - pred_results['mae_score'] = float(np.mean(mae_scores)) + pred_results['mae_score'] = _safe_mean(mae_scores) if self.num_tasks > 1: pred_results['task_mae_scores'] = mae_scores - pred_results['rms_score'] = float(np.mean(rms_scores)) + pred_results['rms_score'] = _safe_mean(rms_scores) if self.num_tasks > 1: pred_results['task_rms_scores'] = rms_scores @@ -306,6 +539,24 @@ def get_prediction_results(self): pred_results['mean_response_vals'] = response_means pred_results['std_response_vals'] = response_stds + task_invalid_counts = [] + task_invalid_fracs = [] + for i in range(self.num_tasks): + nzrows = np.where(weights[:,i] != 0)[0] + task_real_vals = np.squeeze(real_vals[nzrows,i]) + task_pred_vals = np.squeeze(pred_vals[nzrows,i]) + invalid_count, total_count, invalid_frac, _ = _invalid_stats(task_real_vals, task_pred_vals) + task_invalid_counts.append(int(invalid_count)) + task_invalid_fracs.append(float(invalid_frac)) + + total_scored = int(np.sum(weights != 0)) + total_invalid = int(np.sum(task_invalid_counts)) + pred_results['invalid_prediction_count'] = total_invalid + pred_results['invalid_prediction_fraction'] = float(total_invalid / total_scored) if total_scored > 0 else 0.0 + pred_results['invalid_prediction_threshold'] = _get_active_invalid_pred_frac_threshold() + pred_results['task_invalid_prediction_counts'] = task_invalid_counts + pred_results['task_invalid_prediction_fractions'] = task_invalid_fracs + return pred_results # **************************************************************************************** @@ -408,15 +659,15 @@ def model_choice_score(self, score_type='r2'): bind_real_vals = np.squeeze(real_vals[rowbind,0]) bind_pred_vals = np.squeeze(pred_vals[rowbind,0]) if len(rowki) > 0: - scores.append(regr_score_func[score_type](ki_real_vals, ki_pred_vals)) + scores.append(_safe_regression_score(score_type, ki_real_vals, ki_pred_vals)) if len(rowbind) > 0: - scores.append(regr_score_func[score_type](bind_real_vals, bind_pred_vals)) + scores.append(_safe_regression_score(score_type, bind_real_vals, bind_pred_vals)) else: # if all values are dose response activities, use the r2_score above. scores.append(scores[0]) elif len(rowbind) > 0: # all values are single concentration activities. - scores.append(regr_score_func[score_type](bind_real_vals, bind_pred_vals)) + scores.append(_safe_regression_score(score_type, bind_real_vals, bind_pred_vals)) scores.append(scores[0]) self.model_score = float(np.mean(scores)) @@ -476,19 +727,19 @@ def get_prediction_results(self): bind_real_vals = np.squeeze(real_vals[rowbind,0]) bind_pred_vals = np.squeeze(pred_vals[rowbind,0]) if len(rowki) > 0: - mae_scores.append(regr_score_func['mae'](ki_real_vals, ki_pred_vals)) - rms_scores.append(regr_score_func['rmse'](ki_real_vals, ki_pred_vals)) + mae_scores.append(_safe_regression_score('mae', ki_real_vals, ki_pred_vals)) + rms_scores.append(_safe_regression_score('rmse', ki_real_vals, ki_pred_vals)) if len(rowbind) > 0: - mae_scores.append(regr_score_func['mae'](bind_real_vals, bind_pred_vals)) - rms_scores.append(regr_score_func['rmse'](bind_real_vals, bind_pred_vals)) + mae_scores.append(_safe_regression_score('mae', bind_real_vals, bind_pred_vals)) + rms_scores.append(_safe_regression_score('rmse', bind_real_vals, bind_pred_vals)) else: # if all values are dose response activities, use the r2_score above. mae_scores.append(mae_scores[0]) rms_scores.append(rms_scores[0]) elif len(rowbind) > 0: # all values are single concentration activities. - mae_scores.append(regr_score_func['mae'](bind_real_vals, bind_pred_vals)) - rms_scores.append(regr_score_func['rmse'](bind_real_vals, bind_pred_vals)) + mae_scores.append(_safe_regression_score('mae', bind_real_vals, bind_pred_vals)) + rms_scores.append(_safe_regression_score('rmse', bind_real_vals, bind_pred_vals)) mae_scores.append(mae_scores[0]) rms_scores.append(rms_scores[0]) @@ -497,10 +748,10 @@ def get_prediction_results(self): response_means.append(bind_real_vals.mean().tolist()) response_stds.append(bind_real_vals.std().tolist()) - pred_results['mae_score'] = float(np.mean(mae_scores)) + pred_results['mae_score'] = _safe_mean(mae_scores) if self.num_tasks > 1: pred_results['task_mae_scores'] = mae_scores - pred_results['rms_score'] = float(np.mean(rms_scores)) + pred_results['rms_score'] = _safe_mean(rms_scores) if self.num_tasks > 1: pred_results['task_rms_scores'] = rms_scores @@ -512,6 +763,20 @@ def get_prediction_results(self): pred_results['mean_response_vals'] = response_means pred_results['std_response_vals'] = response_stds + task_invalid_counts = [] + task_invalid_fracs = [] + ki_invalid_count, ki_total_count, ki_invalid_frac, _ = _invalid_stats(ki_real_vals, ki_pred_vals) + bind_invalid_count, bind_total_count, bind_invalid_frac, _ = _invalid_stats(bind_real_vals, bind_pred_vals) + task_invalid_counts.extend([int(ki_invalid_count), int(bind_invalid_count)]) + task_invalid_fracs.extend([float(ki_invalid_frac), float(bind_invalid_frac)]) + total_scored = int(ki_total_count + bind_total_count) + total_invalid = int(ki_invalid_count + bind_invalid_count) + pred_results['invalid_prediction_count'] = total_invalid + pred_results['invalid_prediction_fraction'] = float(total_invalid / total_scored) if total_scored > 0 else 0.0 + pred_results['invalid_prediction_threshold'] = _get_active_invalid_pred_frac_threshold() + pred_results['task_invalid_prediction_counts'] = task_invalid_counts + pred_results['task_invalid_prediction_fractions'] = task_invalid_fracs + return pred_results # **************************************************************************************** @@ -628,12 +893,12 @@ def model_choice_score(self, score_type='roc_auc'): task_pred_vars = task_class_probs task_real_vars = task_real_vals else: - task_pred_vars = pred_classes[nzrows,i] + task_pred_classes = pred_classes[nzrows,i] + task_pred_vars = _coerce_invalid_pred_classes( + task_real_classes, task_pred_classes, task_class_probs, self.num_classes + ) task_real_vars = task_real_classes - if average_param is None: - scores.append(classif_score_func[score_type](task_real_vars, task_pred_vars)) - else: - scores.append(classif_score_func[score_type](task_real_vars, task_pred_vars, average=average_param)) + scores.append(_safe_classification_score(score_type, task_real_vars, task_pred_vars, average=average_param)) self.model_score = float(np.mean(scores)) if score_type in loss_funcs: @@ -683,42 +948,56 @@ def get_prediction_results(self): cross_entropies = [] precisions = [] recalls = [] - if self.num_classes == 2: - npvs = [] + npvs = [] accuracies = [] bal_accs = [] kappas = [] matthews_ccs = [] confusion_matrices = [] + task_invalid_counts = [] + task_invalid_fracs = [] + total_scored = 0 + total_invalid = 0 for i in range(self.num_tasks): nzrows = np.where(weights[:,i] != 0)[0] - task_pred_classes = pred_classes[nzrows,i] task_real_classes = real_classes[nzrows,i] if self.num_classes > 2: # If more than 2 classes, task_real_vals is indicator matrix (one-hot encoded). task_real_vals = real_vals[nzrows,i,:] task_class_probs = class_probs[nzrows,i,:] - prc_aucs.append(average_precision_score(task_real_vals, task_class_probs, average='macro')) - precisions.append(float(precision_score(task_real_classes, task_pred_classes, average='macro'))) - recalls.append(float(recall_score(task_real_classes, task_pred_classes, average='macro'))) + invalid_count, total_count, invalid_frac, _ = _invalid_stats(task_real_vals, task_class_probs) + task_pred_classes = _coerce_invalid_pred_classes( + task_real_classes, pred_classes[nzrows,i], task_class_probs, self.num_classes + ) + prc_aucs.append(_safe_classification_score('avg_precision', task_real_vals, task_class_probs, average='macro')) + precisions.append(float(_safe_classification_score('precision', task_real_classes, task_pred_classes, average='macro'))) + recalls.append(float(_safe_classification_score('recall', task_real_classes, task_pred_classes, average='macro'))) # NPV is not supported for multilabel classifiers, skip it else: # sklearn metrics functions are expecting single array of 1s and 0s for task_real_vals # and task_class_probs for class 1 only task_real_vals = real_vals[nzrows,i] task_class_probs = class_probs[nzrows,i,1] - prc_aucs.append(average_precision_score(task_real_vals, task_class_probs)) - precisions.append(float(precision_score(task_real_vals, task_pred_classes, average='binary'))) - recalls.append(float(recall_score(task_real_vals, task_pred_classes, average='binary'))) - npvs.append(negative_predictive_value(task_real_vals, task_pred_classes)) - - cross_entropies.append(log_loss(task_real_vals, task_class_probs)) - accuracies.append(accuracy_score(task_real_classes, task_pred_classes)) - bal_accs.append(balanced_accuracy_score(task_real_classes, task_pred_classes)) - kappas.append(float(cohen_kappa_score(task_real_classes, task_pred_classes))) - matthews_ccs.append(float(matthews_corrcoef(task_real_classes, task_pred_classes))) - confusion_matrices.append(confusion_matrix(task_real_classes, task_pred_classes).tolist()) + invalid_count, total_count, invalid_frac, _ = _invalid_stats(task_real_vals, task_class_probs) + task_pred_classes = _coerce_invalid_pred_classes( + task_real_classes, pred_classes[nzrows,i], task_class_probs, self.num_classes + ) + prc_aucs.append(_safe_classification_score('avg_precision', task_real_vals, task_class_probs)) + precisions.append(float(_safe_classification_score('precision', task_real_vals, task_pred_classes, average='binary'))) + recalls.append(float(_safe_classification_score('recall', task_real_vals, task_pred_classes, average='binary'))) + npvs.append(float(_safe_classification_score('npv', task_real_vals, task_pred_classes))) + + cross_entropies.append(_safe_classification_score('cross_entropy', task_real_vals, task_class_probs)) + accuracies.append(_safe_classification_score('accuracy', task_real_classes, task_pred_classes)) + bal_accs.append(_safe_classification_score('bal_accuracy', task_real_classes, task_pred_classes)) + kappas.append(float(_safe_classification_score('kappa', task_real_classes, task_pred_classes))) + matthews_ccs.append(float(_safe_classification_score('mcc', task_real_classes, task_pred_classes))) + confusion_matrices.append(_safe_confusion_matrix(task_real_classes, task_pred_classes, self.num_classes)) + task_invalid_counts.append(int(invalid_count)) + task_invalid_fracs.append(float(invalid_frac)) + total_scored += int(total_count) + total_invalid += int(invalid_count) pred_results['prc_auc_score'] = float(np.mean(prc_aucs)) if self.num_tasks > 1: @@ -763,6 +1042,11 @@ def get_prediction_results(self): pred_results['confusion_matrix'] = confusion_matrices pred_results['num_compounds'] = self.num_cmpds + pred_results['invalid_prediction_count'] = int(total_invalid) + pred_results['invalid_prediction_fraction'] = float(total_invalid / total_scored) if total_scored > 0 else 0.0 + pred_results['invalid_prediction_threshold'] = _get_active_invalid_pred_frac_threshold() + pred_results['task_invalid_prediction_counts'] = task_invalid_counts + pred_results['task_invalid_prediction_fractions'] = task_invalid_fracs return pred_results @@ -1155,13 +1439,13 @@ def accumulate_preds(self, predicted_vals, ids, pred_stds=None): # If more than 2 classes, real_vals is indicator matrix (one-hot encoded). task_real_vals = np.squeeze(real_vals[nzrows,i,:]) task_class_probs =np.squeeze(class_probs[nzrows,i,:]) - scores.append(roc_auc_score(task_real_vals, task_class_probs, average='macro')) + scores.append(_safe_classification_score('roc_auc', task_real_vals, task_class_probs, average='macro')) else: # For binary classifier, sklearn metrics functions are expecting single array of 1s and 0s for real_vals_list, # and class_probs for class 1 only. task_real_vals = np.squeeze(real_vals[nzrows,i]) task_class_probs = np.squeeze(class_probs[nzrows,i,1]) - scores.append(roc_auc_score(task_real_vals, task_class_probs)) + scores.append(_safe_classification_score('roc_auc', task_real_vals, task_class_probs)) self.perf_metrics.append(np.array(scores)) return float(np.mean(scores)) @@ -1370,9 +1654,9 @@ def accumulate_preds(self, predicted_vals, ids=None, pred_stds=None): nzrows = np.where(weights[:,i] != 0)[0] task_real_vals = np.squeeze(real_vals[nzrows,i]) task_pred_vals = np.squeeze(pred_vals[nzrows,i]) - scores.append(r2_score(task_real_vals, task_pred_vals)) + scores.append(_safe_regression_score('r2', task_real_vals, task_pred_vals)) self.perf_metrics.append(np.array(scores)) - return float(np.mean(scores)) + return _safe_mean(scores) # **************************************************************************************** @@ -1591,13 +1875,13 @@ def accumulate_preds(self, predicted_vals, ids, pred_stds=None): task_real_vals = np.squeeze(real_vals[nzrows,i,:]) task_class_probs = np.squeeze(class_probs[nzrows,i,:]) - scores.append(roc_auc_score(task_real_vals, task_class_probs, average='macro')) + scores.append(_safe_classification_score('roc_auc', task_real_vals, task_class_probs, average='macro')) else: # For binary classifier, sklearn metrics functions are expecting single array of 1s and 0s for real_vals_list, # and class_probs for class 1 only. task_real_vals = np.squeeze(real_vals[nzrows,i]) task_class_probs = np.squeeze(class_probs[nzrows,i,1]) - scores.append(roc_auc_score(task_real_vals, task_class_probs)) + scores.append(_safe_classification_score('roc_auc', task_real_vals, task_class_probs)) self.perf_metrics.append(np.array(scores)) return float(np.mean(scores)) @@ -1800,19 +2084,19 @@ def accumulate_preds(self, predicted_vals, ids, pred_stds=None): bind_real_vals = np.squeeze(real_vals[rowbind,0]) bind_pred_vals = np.squeeze(pred_vals[rowbind,0]) if len(rowki) > 0: - scores.append(r2_score(ki_real_vals, ki_pred_vals)) + scores.append(_safe_regression_score('r2', ki_real_vals, ki_pred_vals)) if len(rowbind) > 0: - scores.append(r2_score(bind_real_vals, bind_pred_vals)) + scores.append(_safe_regression_score('r2', bind_real_vals, bind_pred_vals)) else: # if all values are dose response activities, use the r2_score above. scores.append(scores[0]) elif len(rowbind) > 0: # all values are single concentration activities. - scores.append(r2_score(bind_real_vals, bind_pred_vals)) + scores.append(_safe_regression_score('r2', bind_real_vals, bind_pred_vals)) scores.append(scores[0]) self.perf_metrics.append(np.array(scores)) - return float(np.mean(scores)) + return _safe_mean(scores) # **************************************************************************************** # class SimpleHybridPerfData diff --git a/atomsci/ddm/pipeline/perf_plots.py b/atomsci/ddm/pipeline/perf_plots.py index bd0b03f9..e6f0b9d4 100644 --- a/atomsci/ddm/pipeline/perf_plots.py +++ b/atomsci/ddm/pipeline/perf_plots.py @@ -12,6 +12,7 @@ import seaborn as sns import umap import sklearn.metrics as metrics +import warnings from sklearn.metrics import ConfusionMatrixDisplay, PrecisionRecallDisplay import matplotlib.pyplot as plt from matplotlib.backends.backend_pdf import PdfPages @@ -86,7 +87,8 @@ def plot_pred_vs_actual(model, epoch_label='best', threshold=None, error_bars=Fa None """ if isinstance(model, str): - return plot_pred_vs_actual_from_file(model, plot_size=plot_size, external_training_data=external_training_data, error_bars=error_bars) + plot_pred_vs_actual_from_file(model, plot_size=plot_size, external_training_data=external_training_data, error_bars=error_bars) + return elif not isinstance(model, mp.ModelPipeline): raise ValueError('model must be either a ModelPipeline or a path to a saved model') params = model.params @@ -266,8 +268,7 @@ def plot_pred_vs_actual_from_df(pred_df, actual_col='avg_pIC50_actual', pred_col #------------------------------------------------------------------------------------------------------------------------ def plot_pred_vs_actual_from_file(model_path, external_training_data=None, plot_size=7, error_bars=False, threshold=None): - """Plot predicted vs actual values from a trained regression model from a model tarball. - This function only works for locally trained models; otherwise see the `predict_from_model` module. + """Plot predicted vs actual values from a trained regression model from a model tarball. This function only works for locally trained models; otherwise see the predict_from_model module. Args: model_path (str): Path to an AMPL model tar.gz file. @@ -276,7 +277,7 @@ def plot_pred_vs_actual_from_file(model_path, external_training_data=None, plot_ error_bars (bool): whether to plot uncertainty as shaded region above and below the predicted values. Returns: - None + Matplotlib Figure Effects: A matplotlib figure is displayed with subplots for each response column and train/valid/test subsets. @@ -286,100 +287,163 @@ def plot_pred_vs_actual_from_file(model_path, external_training_data=None, plot_ reload_dir = tempfile.mkdtemp() with tarfile.open(model_path, mode='r:gz') as tar: futils.safe_extract(tar, path=reload_dir) - + # reload metadata with open(os.path.join(reload_dir, 'model_metadata.json')) as f: - config=json.loads(f.read()) + config = json.loads(f.read()) - if config['model_parameters']['prediction_type']=='classification': - raise ValueError("plot_pred_vs_actual_from_file() should only be called for regression models. Please try plot_confusion_matrices() instead.") - - # load (featurized) data - dataset_dict=config['training_dataset'] + if config['model_parameters']['prediction_type'] == 'classification': + raise ValueError( + "plot_pred_vs_actual_from_file() should only be called for regression models. " + "Please try plot_confusion_matrices() instead." + ) + + # dataset info + dataset_dict = config['training_dataset'] if external_training_data is not None: - dataset_dict['dataset_key']=external_training_data - dataset_key=dataset_dict['dataset_key'] - dataset_name = os.path.splitext(os.path.basename(dataset_key))[0] + dataset_dict['dataset_key'] = external_training_data - is_featurized=False - AD_method=None + original_dataset_key = dataset_dict['dataset_key'] + dataset_name = os.path.splitext(os.path.basename(original_dataset_key))[0] + + response_cols = dataset_dict['response_cols'] + id_col = dataset_dict['id_col'] + smiles_col = dataset_dict['smiles_col'] + + # determine featurized path + is_featurized = False + AD_method = None model_type = config['model_parameters']['model_type'] featurizer = config['model_parameters']['featurizer'] - if featurizer in ['descriptors','computed_descriptors']: - desc=config['descriptor_specific']['descriptor_type'] - dataset_key=dataset_key.rsplit('/', maxsplit=1) - dataset_key=os.path.join(dataset_key[0], 'scaled_descriptors', dataset_key[1].replace('.csv',f'_with_{desc}_descriptors.csv')) - is_featurized=True + + dataset_key_to_read = original_dataset_key + if featurizer in ['descriptors', 'computed_descriptors']: + desc = config['descriptor_specific']['descriptor_type'] + parts = original_dataset_key.rsplit('/', maxsplit=1) + dataset_key_to_read = os.path.join( + parts[0], + 'scaled_descriptors', + parts[1].replace('.csv', f'_with_{desc}_descriptors.csv') + ) + is_featurized = True features_label = f"{desc} descriptors" else: features_label = f"{featurizer} features" - df=pd.read_csv(dataset_key) - - # reload split file - dataset_key=dataset_dict['dataset_key'] - split_dict=config['splitting_parameters'] + + # load dataframes + df = pd.read_csv(dataset_key_to_read) + orig_df = pd.read_csv(original_dataset_key) + + # sanity-check alignment and merge missing response columns + df = merge_response_cols_from_original( + df, + orig_df, + id_col=id_col, + response_cols=response_cols, + max_missing_frac=0.01, + error_on_extra_feat_ids=False, + coerce_id_to_str=True, + sample_n=20, + ) + + # reload split file (use original dataset location) + split_dict = config['splitting_parameters'] split_uuid = split_dict['split_uuid'] - splitter=split_dict['splitter'] - split_strategy=split_dict['split_strategy'] - data_dir=os.path.dirname(os.path.realpath(dataset_key)) - split=[file for file in os.listdir(data_dir) if split_uuid in file] - split_file=os.path.join(data_dir, split[0]) + splitter = split_dict['splitter'] + split_strategy = split_dict['split_strategy'] + + data_dir = os.path.dirname(os.path.realpath(original_dataset_key)) + split = [file for file in os.listdir(data_dir) if split_uuid in file] + split_file = os.path.join(data_dir, split[0]) + split_subsets = ['train', 'valid', 'test'] - split=pd.read_csv(split_file) - split=split.rename(columns={'cmpd_id':dataset_dict['id_col']}) - - # merge - df=df.merge(split, how='left') - - # get other values - response_cols=dataset_dict['response_cols'] - + split = pd.read_csv(split_file) + split = split.rename(columns={'cmpd_id': id_col}) + + # merge split labels + if id_col in df.columns: + df[id_col] = df[id_col].astype(str) + if id_col in split.columns: + split[id_col] = split[id_col].astype(str) + + df = df.merge(split, how='left', on=id_col) + # run predictions - pred_df=pfm.predict_from_model_file(model_path, df, id_col=dataset_dict['id_col'], smiles_col=dataset_dict['smiles_col'], - response_col=response_cols, is_featurized=is_featurized, AD_method=AD_method, dont_standardize=True) - + pred_df = pfm.predict_from_model_file( + model_path, + df, + id_col=id_col, + smiles_col=smiles_col, + response_col=response_cols, + is_featurized=is_featurized, + AD_method=AD_method, + dont_standardize=True + ) + # plot sns.set_context('notebook') nss = len(split_subsets) - fig, axes = plt.subplots(len(response_cols), nss, figsize=(plot_size*nss, plot_size*len(response_cols))) - if error_bars and config['model_parameters']['uncertainty']: - suptitle = f"{dataset_name} {splitter} {split_strategy} split {model_type} model on {features_label}, predicted vs actual values with uncertainty" + fig, axes = plt.subplots(len(response_cols), nss, figsize=(plot_size * nss, plot_size * len(response_cols))) + + if error_bars and config['model_parameters'].get('uncertainty'): + suptitle = ( + f"{dataset_name} {splitter} {split_strategy} split {model_type} model on {features_label}, " + f"predicted vs actual values with uncertainty" + ) else: - error_bars=False - suptitle = f"{dataset_name} {splitter} {split_strategy} split {model_type} model on {features_label}, predicted vs actual values" + error_bars = False + suptitle = ( + f"{dataset_name} {splitter} {split_strategy} split {model_type} model on {features_label}, " + f"predicted vs actual values" + ) + fig.suptitle(suptitle, y=0.95) axes = axes.flatten() - for i,resp in enumerate(response_cols): + + for i, resp in enumerate(response_cols): actual_col = f'{resp}_actual' pred_col = f'{resp}_pred' task_pred_df = pred_df[pred_df[actual_col].notna() & pred_df[pred_col].notna()] + y_actual = task_pred_df[actual_col].values y_pred = task_pred_df[pred_col].values + if error_bars: std_col = f'{resp}_std' y_std = task_pred_df[std_col].values else: - std_col=None + std_col = None y_std = 0 - ymin = min(min(y_actual), min(y_pred), min(y_pred-y_std)) - ymax = max(max(y_actual), max(y_pred), max(y_pred+y_std)) + + ymin = min(min(y_actual), min(y_pred), min(y_pred - y_std)) + ymax = max(max(y_actual), max(y_pred), max(y_pred + y_std)) + for j, subset in enumerate(split_subsets): - ax = axes[nss*i + j] - tmp = task_pred_df[task_pred_df.subset==subset] + ax = axes[nss * i + j] + tmp = task_pred_df[task_pred_df.subset == subset] r2 = metrics.r2_score(tmp[actual_col].values, tmp[pred_col].values) + ax.set_xlabel(f"Actual {resp}") ax.set_ylabel(f"Predicted {resp}") - # Set subplot title + if j == 0: subtitle = f"{resp} {subset}, {score_type_label['r2']} = {r2:.3f}" else: subtitle = f"{subset}, {score_type_label['r2']} = {r2:.3f}" - ax=plot_pred_vs_actual_from_df(tmp, actual_col=actual_col, pred_col=pred_col, std_col = std_col, label=subtitle, threshold=threshold, ax=ax) - # Force axes to have same scale for all subsets for same task (but not different tasks!) - # wont work unless applied after the graph is created + + ax = plot_pred_vs_actual_from_df( + tmp, + actual_col=actual_col, + pred_col=pred_col, + std_col=std_col, + label=subtitle, + threshold=threshold, + ax=ax + ) ax.set_xlim(ymin, ymax) ax.set_ylim(ymin, ymax) + return fig #------------------------------------------------------------------------------------------------------------------------ def plot_perf_vs_epoch(MP, plot_size=7, pdf_dir=None): @@ -1259,3 +1323,100 @@ def plot_umap_train_set_neighbors(MP, num_neighbors=20, min_dist=0.1, if pdf_dir is not None: pdf.close() MP.log.info("Wrote plot to %s" % pdf_path) + +#------------------------------------------------------------------------------------------------------------------------ +def merge_response_cols_from_original( + feat_df: pd.DataFrame, + orig_df: pd.DataFrame, + *, + id_col: str, + response_cols: list, + max_missing_frac: float = 0.01, + error_on_extra_feat_ids: bool = False, + coerce_id_to_str: bool = True, + sample_n: int = 20, +) -> pd.DataFrame: + """ + Sanity-check compound alignment between a featurized dataframe and the original dataframe, + then merge missing response columns from the original into the featurized dataframe. + + Expected behavior: + - Some original compounds may be missing in feat_df due to featurization failures. + - This missing fraction must be <= max_missing_frac, otherwise raise. + - If feat_df contains IDs not found in orig_df, warn or raise (configurable). + + Returns: + A copy of feat_df with missing response columns merged in (left join on id_col). + """ + if id_col not in feat_df.columns: + raise KeyError(f"Featurized dataframe is missing id_col '{id_col}'.") + if id_col not in orig_df.columns: + raise KeyError(f"Original dataframe is missing id_col '{id_col}'.") + + feat = feat_df.copy() + orig = orig_df.copy() + + if coerce_id_to_str: + feat[id_col] = feat[id_col].astype(str) + orig[id_col] = orig[id_col].astype(str) + + feat_ids = pd.Series(feat[id_col]).dropna() + orig_ids = pd.Series(orig[id_col]).dropna() + + n_feat_unique = feat_ids.nunique() + n_orig_unique = orig_ids.nunique() + + feat_set = set(feat_ids.unique()) + orig_set = set(orig_ids.unique()) + + missing_in_feat = orig_set - feat_set + extra_in_feat = feat_set - orig_set + + missing_frac = len(missing_in_feat) / len(orig_set) + if missing_frac > max_missing_frac: + sample = list(sorted(missing_in_feat))[:sample_n] + raise ValueError( + f"Featurized dataframe appears incomplete relative to original: " + f"{len(missing_in_feat)}/{len(orig_set)} unique compounds missing " + f"({missing_frac:.2%}), exceeds allowed {max_missing_frac:.2%}. " + f"Examples: {sample}" + ) + + if len(extra_in_feat) > 0: + sample = list(sorted(extra_in_feat))[:sample_n] + msg = ( + f"Featurized dataframe contains {len(extra_in_feat)} unique compound IDs not found in original. " + f"This may indicate mismatched files or inconsistent '{id_col}' values. " + f"Examples: {sample}" + ) + if error_on_extra_feat_ids: + raise ValueError(msg) + warnings.warn(msg) + + # Duplicate warnings (merge safety) + dup_feat = len(feat) - n_feat_unique + dup_orig = len(orig) - n_orig_unique + if dup_feat > 0: + warnings.warn( + f"Featurized dataframe has {dup_feat} duplicate '{id_col}' rows " + f"({len(feat)} rows, {n_feat_unique} unique IDs)." + ) + if dup_orig > 0: + warnings.warn( + f"Original dataframe has {dup_orig} duplicate '{id_col}' rows " + f"({len(orig)} rows, {n_orig_unique} unique IDs)." + ) + + # Merge in only missing response columns (do not overwrite existing) + available_responses = [c for c in response_cols if c in orig.columns] + if not available_responses: + return feat + + missing_response_cols = [c for c in available_responses if c not in feat.columns] + if not missing_response_cols: + return feat + + orig_subset = orig[[id_col] + missing_response_cols].drop_duplicates(subset=[id_col]) + merged = feat.merge(orig_subset, how='left', on=id_col) + + return merged diff --git a/atomsci/ddm/pipeline/transformations.py b/atomsci/ddm/pipeline/transformations.py index 7f42f003..a81e4403 100644 --- a/atomsci/ddm/pipeline/transformations.py +++ b/atomsci/ddm/pipeline/transformations.py @@ -5,11 +5,11 @@ import logging import numpy as np -import umap +import pandas as pd from deepchem.trans.transformers import Transformer, NormalizationTransformer, BalancingTransformer -from sklearn.impute import SimpleImputer -from sklearn.preprocessing import RobustScaler + +import sklearn.utils as sku logging.basicConfig(format='%(asctime)-15s %(message)s') log = logging.getLogger('ATOM') @@ -80,18 +80,12 @@ def create_feature_transformers(params, featurization, train_dset): Returns: (list of DeepChem transformer objects): list of transformers for the feature matrix """ - if params.feature_transform_type == 'umap': - # Map feature vectors using UMAP for dimension reduction - log.warning("UMAP feature transformation is deprecated and will be removed in a future release.") - if params.split_strategy == 'k_fold_cv': - log.warning("Warning: UMAP transformation may produce misleading results when used with K-fold split strategy.") - transformers_x = [UMAPTransformer(params, train_dset)] - elif params.transformers: + if params.transformers: # TODO: Transformers on responses and features should be controlled only by parameters # response_transform_type and feature_transform_type, rather than params.transformers. # Scale and center feature matrix if featurization type calls for it - transformers_x = featurization.create_feature_transformer(train_dset) + transformers_x = featurization.create_feature_transformer(train_dset, params) else: transformers_x = [] @@ -132,16 +126,21 @@ def get_transformer_specific_metadata(params): meta_dict (dict): Nested dictionary of parameters and values for each currently active transformer. """ - meta_dict = {} - if params.feature_transform_type == 'umap': - umap_dict = dict( - umap_dim = params.umap_dim, - umap_metric = params.umap_metric, - umap_targ_wt = params.umap_targ_wt, - umap_neighbors = params.umap_neighbors, - umap_min_dist = params.umap_min_dist ) - meta_dict['umap_specific'] = umap_dict - return meta_dict + meta_dict = dict( + robustscaler_with_centering = params.robustscaler_with_centering, + robustscaler_with_scaling = params.robustscaler_with_scaling, + robustscaler_quartile_range = params.robustscaler_quartile_range, + robustscaler_unit_variance = params.robustscaler_unit_variance, + powertransformer_method = params.powertransformer_method, + powertransformer_standardize = params.powertransformer_standardize, + imputer_strategy = params.imputer_strategy) + + # this parameter is set only if transformations have been loaded + # from an outside source + if hasattr(params, 'transformer_dataset_key_configs'): + meta_dict['transformer_dataset_key_configs'] = params.transformer_dataset_key_configs + + return dict(transformer_specific=meta_dict) # **************************************************************************************** def get_transformer_keys(params): @@ -207,62 +206,79 @@ def get_all_training_datasets(model_dataset): # **************************************************************************************** -class UMAPTransformer(Transformer): - """Dimension reduction transformations using the UMAP algorithm. - - DEPRECATED: Will be removed in a future release. +def zero_out_inf_nan(d): + """Return a copy of d with NaN and +/-Inf replaced by 0. + + Supports numpy arrays and pandas Series/DataFrame. + """ + # Handle pandas structures + if isinstance(d, (pd.Series, pd.DataFrame)): + arr = d.values.copy() + mask = ~np.isfinite(arr) + if mask.any(): + arr[mask] = 0.0 + if isinstance(d, pd.Series): + return pd.Series(arr, index=d.index, name=d.name) + else: + return pd.DataFrame(arr, index=d.index, columns=d.columns) + else: + # Fallback to numpy array + arr = np.array(d, copy=True) + mask = ~np.isfinite(arr) + if mask.any(): + arr[mask] = 0.0 + return arr - Attributes: - mapper (UMAP) : UMAP transformer - scaler (RobustScaler): Centering/scaling transformer +class SklearnPipelineWrapper(Transformer): + """ + This wraps a given sklearn transformer and converts it to a DeepChem style transformer """ - def __init__(self, params, dataset): - """Initializes a UMAPTransformer object. + def __init__(self, dataset, sklearn_pipeline, + transform_X=False, transform_y=False, transform_w=False): - Args: - params (Namespace): Contains parameters used to instantiate the transformer. + self.transform_X = transform_X + self.transform_y = transform_y + self.transform_w = transform_w - dataset (Dataset): Dataset used to "train" the projection mapping. - """ + assert (self.transform_X ^ self.transform_y) ^ self.transform_w, \ + "This transformer can operate on only one of X, y, or w." - # TODO: decide whether to make n_epochs a parameter - #default_n_epochs = None - default_n_epochs = 500 + self.sklearn_pipeline = sklearn_pipeline - if params.prediction_type == 'classification': - target_metric = 'categorical' + if self.transform_X: + data = dataset.X + elif self.transform_y: + data = dataset.y else: - target_metric = 'l2' - self.scaler = RobustScaler() - # Use SimpleImputer to replace missing values (NaNs) with means for each column - self.imputer = SimpleImputer() - scaled_X = self.scaler.fit_transform(self.imputer.fit_transform(dataset.X)) - self.mapper = umap.UMAP(n_neighbors=params.umap_neighbors, - n_components=params.umap_dim, - metric=params.umap_metric, - target_metric=target_metric, - target_weight=params.umap_targ_wt, - min_dist=params.umap_min_dist, - n_epochs=default_n_epochs) - # TODO: How to deal with multitask data? - self.mapper.fit(scaled_X, y=dataset.y.flatten()) - - # **************************************************************************************** + data = dataset.w + + # Fit the sklearn pipeline + try: + sku.assert_all_finite(data) + except ValueError: + # data contains inf or nan values + log.warning("SklearnPipelineWrapper: data contains NaN or Inf; replacing with zeros") + data = zero_out_inf_nan(data) + + self.sklearn_pipeline.fit(data) + def transform(self, dataset, parallel=False): - return super(UMAPTransformer, self).transform(dataset, parallel=parallel) + return dataset.transform(self) - # **************************************************************************************** def transform_array(self, X, y, w, ids): - X = self.mapper.transform(self.scaler.transform(self.imputer.transform(X))) - return (X, y, w, ids) + """Transform the data in a set of (X, y, w) arrays.""" + if self.transform_X: + X = self.sklearn_pipeline.transform(X) + elif self.transform_y: + y = self.sklearn_pipeline.transform(y) + else: + w = self.sklearn_pipeline.transform(w) - # **************************************************************************************** - def untransform(self, z): - """Reverses stored transformation on provided data.""" - raise NotImplementedError("Can't reverse a UMAP transformation") - # **************************************************************************************** + return (X, y, w, ids) + def untransform(self, z: np.ndarray) -> np.ndarray: + raise NotImplementedError("SklearnPipelineWrapper does not support inverse transforms") # **************************************************************************************** @@ -310,7 +326,7 @@ def transform_array(self, X, y, w, ids): X = np.nan_to_num(X * X_weight / self.X_stds) # zero out large values, especially for out of range test data X[np.abs(X) > 1e30] = 1e30 - if self.transform_y: + elif self.transform_y: if not hasattr(self, 'move_mean') or self.move_mean: y = np.nan_to_num((y - self.y_means) / self.y_stds) else: diff --git a/atomsci/ddm/test/integrative/balancing_trans/jsons/Identity_transformer.json b/atomsci/ddm/test/integrative/balancing_trans/jsons/Identity_transformer.json new file mode 100644 index 00000000..45870aef --- /dev/null +++ b/atomsci/ddm/test/integrative/balancing_trans/jsons/Identity_transformer.json @@ -0,0 +1,24 @@ +{ + "dataset_key" : "replaced", + "datastore" : "False", + "uncertainty": "False", + "splitter": "scaffold", + "split_valid_frac": "0.20", + "split_test_frac": "0.20", + "split_strategy": "train_valid_test", + "prediction_type": "classification", + "model_choice_score_type": "roc_auc", + "response_cols" : "active", + "id_col": "compound_id", + "smiles_col" : "rdkit_smiles", + "result_dir": "replaced", + "system": "LC", + "transformers": "True", + "model_type": "RF", + "featurizer": "computed_descriptors", + "descriptor_type": "mordred_filtered", + "feature_transform_type": "Identity", + "save_results": "False", + "verbose": "False", + "seed":"0" + } \ No newline at end of file diff --git a/atomsci/ddm/test/integrative/balancing_trans/jsons/PowerTransformer_transformer.json b/atomsci/ddm/test/integrative/balancing_trans/jsons/PowerTransformer_transformer.json new file mode 100644 index 00000000..851deb1d --- /dev/null +++ b/atomsci/ddm/test/integrative/balancing_trans/jsons/PowerTransformer_transformer.json @@ -0,0 +1,24 @@ +{ + "dataset_key" : "replaced", + "datastore" : "False", + "uncertainty": "False", + "splitter": "scaffold", + "split_valid_frac": "0.20", + "split_test_frac": "0.20", + "split_strategy": "train_valid_test", + "prediction_type": "classification", + "model_choice_score_type": "roc_auc", + "response_cols" : "active", + "id_col": "compound_id", + "smiles_col" : "rdkit_smiles", + "result_dir": "replaced", + "system": "LC", + "transformers": "True", + "model_type": "RF", + "featurizer": "computed_descriptors", + "descriptor_type": "mordred_filtered", + "feature_transform_type": "PowerTransformer", + "save_results": "False", + "verbose": "False", + "seed":"0" + } \ No newline at end of file diff --git a/atomsci/ddm/test/integrative/balancing_trans/jsons/RobustScaler_transformer.json b/atomsci/ddm/test/integrative/balancing_trans/jsons/RobustScaler_transformer.json new file mode 100644 index 00000000..9a171a04 --- /dev/null +++ b/atomsci/ddm/test/integrative/balancing_trans/jsons/RobustScaler_transformer.json @@ -0,0 +1,29 @@ +{ + "dataset_key" : "replaced", + "datastore" : "False", + "uncertainty": "False", + "splitter": "scaffold", + "split_valid_frac": "0.20", + "split_test_frac": "0.20", + "split_strategy": "train_valid_test", + "prediction_type": "classification", + "model_choice_score_type": "roc_auc", + "response_cols" : "active", + "id_col": "compound_id", + "smiles_col" : "rdkit_smiles", + "result_dir": "replaced", + "system": "LC", + "transformers": "True", + "model_type": "RF", + "featurizer": "computed_descriptors", + "descriptor_type": "mordred_filtered", + "feature_transform_type": "RobustScaler", + "robustscaler_with_center": "True", + "robustscaler_with_scaling": "True", + "robustscaler_quartile_range": "30.0,80.0", + "robustscaler_unit_variance": "True", + "imputer_strategy": "median", + "save_results": "False", + "verbose": "False", + "seed":"0" + } \ No newline at end of file diff --git a/atomsci/ddm/test/integrative/balancing_trans/test_balancing_transformer.py b/atomsci/ddm/test/integrative/balancing_trans/test_balancing_transformer.py index b1b156c7..8bdeb266 100644 --- a/atomsci/ddm/test/integrative/balancing_trans/test_balancing_transformer.py +++ b/atomsci/ddm/test/integrative/balancing_trans/test_balancing_transformer.py @@ -1,12 +1,22 @@ import tempfile +import pytest +import re import atomsci.ddm.pipeline.parameter_parser as parse import atomsci.ddm.pipeline.model_pipeline as mp import atomsci.ddm.pipeline.transformations as trans +import atomsci.ddm.pipeline.featurization as feat +import atomsci.ddm.pipeline.compare_models as cm +import atomsci.ddm.utils.model_file_reader as mfr import numpy as np import os import json +from sklearn.impute import SimpleImputer +from sklearn.preprocessing import RobustScaler, PowerTransformer +from sklearn.feature_selection import VarianceThreshold +from sklearn.pipeline import Pipeline + import sys sys.path.append(os.path.join(os.path.dirname(__file__), '..')) import make_test_datasets @@ -361,9 +371,99 @@ def test_kfold_regression_transformers(): # transformer means should be around expected_mean np.testing.assert_array_almost_equal(transformer.y_means, expected_y_means) +def test_sklearn_pipelines(): + """ + Test the balancing transformer to ensure that it correctly adjusts weights for imbalanced datasets. + """ + dset_key = make_relative_to_file('../../test_datasets/MRP3_dataset.csv') + res_dir = tempfile.mkdtemp() + + robustscaler_params = read_params( + make_relative_to_file('jsons/RobustScaler_transformer.json'), + dset_key, + res_dir + ) + + robustscaler_pipe = make_pipeline(robustscaler_params) + transformers_x = robustscaler_pipe.model_wrapper.transformers_x + assert len(transformers_x[0])==1 + assert isinstance(transformers_x[0][0], trans.SklearnPipelineWrapper) + assert isinstance(transformers_x[0][0].sklearn_pipeline, Pipeline) + scaler = transformers_x[0][0].sklearn_pipeline.named_steps['RobustScaler'] + assert isinstance(scaler, RobustScaler) + imputer = transformers_x[0][0].sklearn_pipeline.named_steps['SimpleImputer'] + assert isinstance(imputer, SimpleImputer) + assert imputer.strategy == 'median' + thresholder = transformers_x[0][0].sklearn_pipeline.named_steps['VarianceThreshold'] + assert isinstance(thresholder, VarianceThreshold) + + tar_path = cm.get_filesystem_perf_results(res_dir)['model_path'].values[0] + reader = mfr.ModelFileReader(tar_path) + + assert reader.get_robustscaler_with_centering() + assert reader.get_robustscaler_with_scaling() + assert reader.get_robustscaler_quartile_range() == [30.0, 80.0] + assert reader.get_robustscaler_unit_variance() + assert reader.get_imputer_strategy() == 'median' + + res_dir = tempfile.mkdtemp() + powertransformer_params = read_params( + make_relative_to_file('jsons/PowerTransformer_transformer.json'), + dset_key, + res_dir + ) + + powertransformer_pipe = make_pipeline(powertransformer_params) + transformers_x = powertransformer_pipe.model_wrapper.transformers_x + assert len(transformers_x[0])==1 + assert isinstance(transformers_x[0][0], trans.SklearnPipelineWrapper) + assert isinstance(transformers_x[0][0].sklearn_pipeline, Pipeline) + scaler = transformers_x[0][0].sklearn_pipeline.named_steps['PowerTransformer'] + assert isinstance(scaler, PowerTransformer) + + tar_path = cm.get_filesystem_perf_results(res_dir)['model_path'].values[0] + reader = mfr.ModelFileReader(tar_path) + + assert reader.get_powertransformer_method() == 'yeo-johnson' + assert reader.get_powertransformer_standardize() + + res_dir = tempfile.mkdtemp() + identity_params = read_params( + make_relative_to_file('jsons/Identity_transformer.json'), + dset_key, + res_dir + ) + + # borrow the pipeline from PowerTransforer to test + # the Identity transformer since MRP3 contains nans in the dataset + # So it cannot train. Since it cannot train it will never make a model_wrapper + # which is what makes the feature transformers. + identity_pparams = parse.wrapper(identity_params) + transformers_x = powertransformer_pipe.model_wrapper.featurization.create_feature_transformer( + dataset=None, + params=identity_pparams + ) + assert len(transformers_x)==0 + + res_dir = tempfile.mkdtemp() + with pytest.raises( + ValueError, + match=re.escape( + "feature_transform_type must be normalization, RobustScaler, " + "PowerTransformer, or Identity. Got NOTREALTRANSFORMER", + ), + ): + # Test that an unrecognized transformer raises the correct error + identity_pparams.feature_transform_type = 'NOTREALTRANSFORMER' + transformers_x = powertransformer_pipe.model_wrapper.featurization.create_feature_transformer( + dataset=None, + params=identity_pparams + ) + if __name__ == '__main__': - test_kfold_regression_transformers() - test_kfold_transformers() - test_all_transformers() + #test_sklearn_pipelines() + #test_kfold_regression_transformers() + #test_kfold_transformers() + #test_all_transformers() test_balancing_transformer() \ No newline at end of file diff --git a/atomsci/ddm/test/integrative/curation_funcs/test_curation_funcs.py b/atomsci/ddm/test/integrative/curation_funcs/test_curation_funcs.py index 3923fdb5..b97a39b7 100644 --- a/atomsci/ddm/test/integrative/curation_funcs/test_curation_funcs.py +++ b/atomsci/ddm/test/integrative/curation_funcs/test_curation_funcs.py @@ -33,42 +33,48 @@ def write_to_file(filt_df, filt_file): print(f"Wrote outlier-filtered data to {filt_file}") return filt_df -def test_remove_outlier_replicates(): - """Test outlier removal using curate_data.remove_outlier_replicates""" +def create_raw_and_filt_file(): + """Create filtered file for testing aggregation function""" raw_df = get_raw_data() - print(f"Raw data has {len(raw_df)} rows, {len(set(raw_df.base_rdkit_smiles.values))} unique compounds") filt_df = curate_data.remove_outlier_replicates(raw_df, response_col='log_efflux_ratio', id_col='base_rdkit_smiles', max_diff_from_median=0.5) + write_to_file(filt_df, filt_file) + + return raw_df, filt_df + +def test_remove_outlier_replicates(capsys): + """Test outlier removal using curate_data.remove_outlier_replicates""" + # Clean up old files + clean() + + raw_df, filt_df = create_raw_and_filt_file() + + captured = capsys.readouterr() + assert 'Removed 1 rows with missing log_efflux_ratio values' in captured.out, "Error: expected message about removed rows with missing values" n_filt_rows = len(filt_df) n_filt_cmpds = len(set(filt_df.base_rdkit_smiles.values)) print(f"Filtered data has {n_filt_rows} rows, {n_filt_cmpds} unique compounds") assert (n_filt_rows == 1093), "Error: expected 1093 rows in filtered data" assert (n_filt_cmpds == 803), "Error: expected 803 unique compounds in filtered data" n_removed = len(raw_df) - n_filt_rows - assert (n_removed == 7), f"Error: {n_removed} rows were removed, expected 7" - - write_to_file(filt_df, filt_file) + assert (n_removed == 8), f"Error: {n_removed} rows were removed, expected 8" def test_aggregate_assay_data(): """Test curate_data.aggregate_assay_data, the preferred function for averaging replicate values over compounds""" - if not os.path.exists(filt_file): - test_remove_outlier_replicates() - else: - try: - filt_df = pd.read_csv(filt_file) - agg_df = curate_data.aggregate_assay_data(filt_df, value_col='log_efflux_ratio', label_actives=False, - id_col='compound_id', smiles_col='base_rdkit_smiles', relation_col='relation') - n_agg_rows = len(agg_df) - n_agg_cmpds = len(set(agg_df.base_rdkit_smiles.values)) - print(f"Aggregated data has {n_agg_rows} rows, {n_agg_cmpds} unique compounds") - assert (n_agg_rows == 803), "Error: expected 803 rows in aggregated data" - assert (n_agg_cmpds == 803), "Error: expected 803 unique compounds in aggregated data" - - agg_file = f"{script_path}/{test_file_prefix}-aggregated.csv" - agg_df.to_csv(agg_file, index=False) - print(f"Wrote aggregated data to {agg_file}") - except Exception as e: - pytest.fail(f"Could not read file {filt_file}: {e}") + # Clean up old files + clean() + raw_df, filt_df = create_raw_and_filt_file() + agg_df = curate_data.aggregate_assay_data(filt_df, value_col='log_efflux_ratio', label_actives=False, + id_col='compound_id', smiles_col='base_rdkit_smiles', relation_col='relation') + n_agg_rows = len(agg_df) + n_agg_cmpds = len(set(agg_df.base_rdkit_smiles.values)) + print(f"Aggregated data has {n_agg_rows} rows, {n_agg_cmpds} unique compounds") + assert (n_agg_rows == 803), "Error: expected 803 rows in aggregated data" + assert (n_agg_cmpds == 803), "Error: expected 803 unique compounds in aggregated data" + + agg_file = f"{script_path}/{test_file_prefix}-aggregated.csv" + agg_df.to_csv(agg_file, index=False) + print(f"Wrote aggregated data to {agg_file}") def test_average_and_remove_duplicates(): """Test outlier removal and averaging using deprecated curation function""" @@ -90,23 +96,3 @@ def test_average_and_remove_duplicates(): curated_df.to_csv(curated_file, index=False) print(f"Wrote curated data to {curated_file}") - -def test(): - """Test data curation functions""" - - # Clean up old files - clean() - - # Filter out outliers (preferred method) - test_remove_outlier_replicates() - - # Average replicate values per compound (preferred method) - test_aggregate_assay_data() - - # Remove outliers and average over replicates (old method) - test_average_and_remove_duplicates() - - - -if __name__ == '__main__': - test() \ No newline at end of file diff --git a/atomsci/ddm/test/integrative/dc_models/test_retrain_dc_models.py b/atomsci/ddm/test/integrative/dc_models/test_retrain_dc_models.py index d2a20dce..cd8ee002 100644 --- a/atomsci/ddm/test/integrative/dc_models/test_retrain_dc_models.py +++ b/atomsci/ddm/test/integrative/dc_models/test_retrain_dc_models.py @@ -7,7 +7,10 @@ import sys import tarfile import tempfile +from contextlib import contextmanager import pytest +import tensorflow as tf +import torch import rdkit.Chem as rdC import rdkit.Chem.Descriptors as rdCD @@ -23,6 +26,31 @@ import integrative_utilities +TEST_DIR = os.path.dirname(os.path.realpath(__file__)) + + +@contextmanager +def _in_test_dir(): + prev_cwd = os.getcwd() + os.chdir(TEST_DIR) + try: + yield + finally: + os.chdir(prev_cwd) + + +def _skip_if_unsupported_apple_backend(model_type): + if sys.platform != 'darwin': + return + + if model_type in {'AttentiveFPModel', 'GCNModel'}: + if hasattr(torch.backends, 'mps') and torch.backends.mps.is_available(): + pytest.skip(f"{model_type} retrain is unsupported on Apple MPS backends") + + if model_type == 'GraphConvModel' and tf.config.list_physical_devices('GPU'): + pytest.skip("GraphConvModel retrain is unsupported on TensorFlow Metal backends") + + def clean(prefix='delaney-processed'): """Clean test files""" for f in ['%s_curated.csv'%prefix, @@ -156,37 +184,37 @@ def train_and_predict(train_json_f, prefix='delaney-processed'): def verify_saved_params(original_json_f, tar_f, keep_seed=False): """compares saved params in a tar file with original json""" - reload_dir = tempfile.mkdtemp() - with tarfile.open(tar_f, mode='r:gz') as tar: - futils.safe_extract(tar, path=reload_dir) - - # read config from tar file - config_file_path = os.path.join(reload_dir, 'model_metadata.json') - with open(config_file_path) as f: - tar_config = json.loads(f.read()) - - # read original config - with open(original_json_f) as f: - original_config = json.loads(f.read()) - - original_pp = parse.wrapper(original_config) - original_model_params = parse.extract_model_params(original_pp) - original_feat_params = parse.extract_featurizer_params(original_pp) - - tar_pp = parse.wrapper(tar_config) - tar_model_params = parse.extract_model_params(tar_pp) - tar_feat_params = parse.extract_featurizer_params(tar_pp) - - print('-----------------------------------') - print('model params') - print(original_model_params) - print(tar_model_params) - assert original_model_params == tar_model_params - print('-----------------------------------') - print('feat params') - print(original_feat_params) - print(tar_feat_params) - assert original_feat_params == tar_feat_params + with tempfile.TemporaryDirectory() as reload_dir: + with tarfile.open(tar_f, mode='r:gz') as tar: + futils.safe_extract(tar, path=reload_dir) + + # read config from tar file + config_file_path = os.path.join(reload_dir, 'model_metadata.json') + with open(config_file_path) as f: + tar_config = json.loads(f.read()) + + # read original config + with open(original_json_f) as f: + original_config = json.loads(f.read()) + + original_pp = parse.wrapper(original_config) + original_model_params = parse.extract_model_params(original_pp) + original_feat_params = parse.extract_featurizer_params(original_pp) + + tar_pp = parse.wrapper(tar_config) + tar_model_params = parse.extract_model_params(tar_pp) + tar_feat_params = parse.extract_featurizer_params(tar_pp) + + print('-----------------------------------') + print('model params') + print(original_model_params) + print(tar_model_params) + assert original_model_params == tar_model_params + print('-----------------------------------') + print('feat params') + print(original_feat_params) + print(tar_feat_params) + assert original_feat_params == tar_feat_params print('-----------------------------------') print('seeds') @@ -226,13 +254,15 @@ def H1_init(): # ----- @pytest.mark.dgl_required def run_test_reg_config_H1_fit_AttentiveFPModel(keep_seed): - H1_init() - json_f = 'reg_config_H1_fit_AttentiveFPModel.json' - tar_f = train_and_predict(json_f, prefix='H1') # crashes during run + _skip_if_unsupported_apple_backend('AttentiveFPModel') + with _in_test_dir(): + H1_init() + json_f = 'reg_config_H1_fit_AttentiveFPModel.json' + tar_f = train_and_predict(json_f, prefix='H1') # crashes during run - re_tar_f = retrain(tar_f, 'H1', keep_seed=keep_seed) + re_tar_f = retrain(tar_f, 'H1', keep_seed=keep_seed) - verify_saved_params(json_f, re_tar_f, keep_seed=keep_seed) + verify_saved_params(json_f, re_tar_f, keep_seed=keep_seed) def test_reg_config_H1_fit_AttentiveFPModel(): run_test_reg_config_H1_fit_AttentiveFPModel(True) @@ -241,13 +271,15 @@ def test_reg_config_H1_fit_AttentiveFPModel(): # ----- @pytest.mark.dgl_required def run_test_reg_config_H1_fit_GCNModel(keep_seed): - H1_init() - json_f = 'reg_config_H1_fit_GCNModel.json' - tar_f = train_and_predict(json_f, prefix='H1') # crashes during run + _skip_if_unsupported_apple_backend('GCNModel') + with _in_test_dir(): + H1_init() + json_f = 'reg_config_H1_fit_GCNModel.json' + tar_f = train_and_predict(json_f, prefix='H1') # crashes during run - re_tar_f = retrain(tar_f, 'H1', keep_seed=keep_seed) + re_tar_f = retrain(tar_f, 'H1', keep_seed=keep_seed) - verify_saved_params(json_f, re_tar_f, keep_seed=keep_seed) + verify_saved_params(json_f, re_tar_f, keep_seed=keep_seed) def test_reg_config_H1_fit_GCNModel(): run_test_reg_config_H1_fit_GCNModel(True) @@ -259,27 +291,30 @@ def run_test_reg_config_H1_fit_MPNNModel(keep_seed): if not llnl_utils.is_lc_system(): assert True return - - H1_init() - json_f = 'reg_config_H1_fit_MPNNModel.json' - tar_f = train_and_predict(json_f, prefix='H1') # crashes during run - re_tar_f = retrain(tar_f, 'H1', keep_seed=keep_seed) + with _in_test_dir(): + H1_init() + json_f = 'reg_config_H1_fit_MPNNModel.json' + tar_f = train_and_predict(json_f, prefix='H1') # crashes during run + + re_tar_f = retrain(tar_f, 'H1', keep_seed=keep_seed) - verify_saved_params(json_f, re_tar_f, keep_seed=keep_seed) + verify_saved_params(json_f, re_tar_f, keep_seed=keep_seed) def test_reg_config_H1_fit_MPNNModel(): run_test_reg_config_H1_fit_MPNNModel(True) run_test_reg_config_H1_fit_MPNNModel(False) def run_test_reg_config_H1_fit_GraphConvModel(keep_seed): - H1_init() - json_f = 'reg_config_H1_fit_GraphConvModel.json' - tar_f = train_and_predict(json_f, prefix='H1') # crashes during run + _skip_if_unsupported_apple_backend('GraphConvModel') + with _in_test_dir(): + H1_init() + json_f = 'reg_config_H1_fit_GraphConvModel.json' + tar_f = train_and_predict(json_f, prefix='H1') # crashes during run - re_tar_f = retrain(tar_f, 'H1', keep_seed=keep_seed) + re_tar_f = retrain(tar_f, 'H1', keep_seed=keep_seed) - verify_saved_params(json_f, re_tar_f, keep_seed=keep_seed) + verify_saved_params(json_f, re_tar_f, keep_seed=keep_seed) def test_reg_config_H1_fit_GraphConvModel(): run_test_reg_config_H1_fit_GraphConvModel(True) @@ -290,14 +325,15 @@ def run_test_reg_config_H1_fit_PytorchMPNNModel(keep_seed): if not llnl_utils.is_lc_system(): assert True return - - H1_init() - json_f = 'reg_config_H1_fit_PytorchMPNNModel.json' - tar_f = train_and_predict(json_f, prefix='H1') # crashes during run - re_tar_f = retrain(tar_f, 'H1', keep_seed=keep_seed) + with _in_test_dir(): + H1_init() + json_f = 'reg_config_H1_fit_PytorchMPNNModel.json' + tar_f = train_and_predict(json_f, prefix='H1') # crashes during run + + re_tar_f = retrain(tar_f, 'H1', keep_seed=keep_seed) - verify_saved_params(json_f, re_tar_f, keep_seed) + verify_saved_params(json_f, re_tar_f, keep_seed) def test_reg_config_H1_fit_PytorchMPNNModel(): run_test_reg_config_H1_fit_PytorchMPNNModel(True) diff --git a/atomsci/ddm/test/integrative/delaney_Panel/jsons/class_config_delaney_fit_XGB_mordred_filtered_scaled.json b/atomsci/ddm/test/integrative/delaney_Panel/jsons/class_config_delaney_fit_XGB_mordred_filtered_scaled.json new file mode 100644 index 00000000..77c7294e --- /dev/null +++ b/atomsci/ddm/test/integrative/delaney_Panel/jsons/class_config_delaney_fit_XGB_mordred_filtered_scaled.json @@ -0,0 +1,36 @@ +{ + "comment": "System", + "comment": "----------------------------------------", + "system": "LC", + "datastore": "False", + "save_results": "False", + "data_owner": "username", + + "comment": "Input file", + "comment": "----------------------------------------", + "comment": "Note: dataset_key must be a path/file name: E.G. ./dataset.csv", + "dataset_key": "./delaney-processed_curated_fit.csv", + "id_col": "Compound ID", + "smiles_col": "smiles", + + "comment": "Prediction Type", + "comment": "----------------------------------------", + "response_cols": "measured log solubility in mols per litre_class", + "prediction_type": "classification", + + "comment": "Features", + "comment": "----------------------------------------", + "featurizer": "computed_descriptors", + + "comment": "Descriptors", + "comment": "----------------------------------------", + "descriptor_type": "mordred_filtered_scaled", + + "comment": "Model", + "comment": "----------------------------------------", + "model_type": "xgboost", + + "comment": "Results", + "comment": "----------------------------------------", + "result_dir": "result" +} diff --git a/atomsci/ddm/test/integrative/delaney_Panel/jsons/class_config_delaney_fit_XGB_rdkit_scaled.json b/atomsci/ddm/test/integrative/delaney_Panel/jsons/class_config_delaney_fit_XGB_rdkit_scaled.json new file mode 100644 index 00000000..7b1b731c --- /dev/null +++ b/atomsci/ddm/test/integrative/delaney_Panel/jsons/class_config_delaney_fit_XGB_rdkit_scaled.json @@ -0,0 +1,36 @@ +{ + "comment": "System", + "comment": "----------------------------------------", + "system": "LC", + "datastore": "False", + "save_results": "False", + "data_owner": "username", + + "comment": "Input file", + "comment": "----------------------------------------", + "comment": "Note: dataset_key must be a path/file name: E.G. ./dataset.csv", + "dataset_key": "./delaney-processed_curated_fit.csv", + "id_col": "Compound ID", + "smiles_col": "smiles", + + "comment": "Prediction Type", + "comment": "----------------------------------------", + "response_cols": "measured log solubility in mols per litre_class", + "prediction_type": "classification", + + "comment": "Features", + "comment": "----------------------------------------", + "featurizer": "computed_descriptors", + + "comment": "Descriptors", + "comment": "----------------------------------------", + "descriptor_type": "rdkit_scaled", + + "comment": "Model", + "comment": "----------------------------------------", + "model_type": "xgboost", + + "comment": "Results", + "comment": "----------------------------------------", + "result_dir": "result" +} diff --git a/atomsci/ddm/test/integrative/delaney_Panel/jsons/multi_class_random_config_delaney_fit_NN_mordred_filtered_powertransformer.json b/atomsci/ddm/test/integrative/delaney_Panel/jsons/multi_class_random_config_delaney_fit_NN_mordred_filtered_powertransformer.json new file mode 100644 index 00000000..ec2a8592 --- /dev/null +++ b/atomsci/ddm/test/integrative/delaney_Panel/jsons/multi_class_random_config_delaney_fit_NN_mordred_filtered_powertransformer.json @@ -0,0 +1,57 @@ +{ + "comment": "System", + "comment": "----------------------------------------", + "system": "LC", + "datastore": "False", + "save_results": "False", + "data_owner": "username", + + "comment": "Input file", + "comment": "----------------------------------------", + "comment": "Note: dataset_key must be a path/file name: E.G. ./dataset.csv", + "dataset_key": "./delaney-processed_curated_fit.csv", + "id_col": "Compound ID", + "smiles_col": "smiles", + + "comment": "Prediction Type", + "comment": "----------------------------------------", + "response_cols": ["measured log solubility in mols per litre_class", + "measured log solubility in mols per litre_class2"], + "num_model_tasks": 2, + "prediction_type": "classification", + + "comment": "Features", + "comment": "----------------------------------------", + "featurizer": "computed_descriptors", + + "comment": "Descriptors", + "comment": "----------------------------------------", + "descriptor_type": "mordred_filtered", + + "comment": "Splitting", + "comment": "----------------------------------------", + "base_spliter": "random", + "spliter": "random", + + "comment": "Model", + "comment": "----------------------------------------", + "model_type": "NN", + "dropout": ".01,.01,.01", + "layer_sizes": "64,64,64", + "learning_rate": "0.007", + "max_epochs": "50", + + "comment": "Transformers", + "comment": "----------------------------------------", + "comment": "Feature transformer type", + "feature_transformer_type": "PowerTransformer", + + "comment": "Training", + "comment": "----------------------------------------", + "comment": "This regulates how long to train the model", + "early_stopping_patience": "50", + + "comment": "Results", + "comment": "----------------------------------------", + "result_dir": "result" +} diff --git a/atomsci/ddm/test/integrative/delaney_Panel/jsons/multi_class_random_config_delaney_fit_NN_mordred_filtered_robustscaler.json b/atomsci/ddm/test/integrative/delaney_Panel/jsons/multi_class_random_config_delaney_fit_NN_mordred_filtered_robustscaler.json new file mode 100644 index 00000000..6f73e363 --- /dev/null +++ b/atomsci/ddm/test/integrative/delaney_Panel/jsons/multi_class_random_config_delaney_fit_NN_mordred_filtered_robustscaler.json @@ -0,0 +1,57 @@ +{ + "comment": "System", + "comment": "----------------------------------------", + "system": "LC", + "datastore": "False", + "save_results": "False", + "data_owner": "username", + + "comment": "Input file", + "comment": "----------------------------------------", + "comment": "Note: dataset_key must be a path/file name: E.G. ./dataset.csv", + "dataset_key": "./delaney-processed_curated_fit.csv", + "id_col": "Compound ID", + "smiles_col": "smiles", + + "comment": "Prediction Type", + "comment": "----------------------------------------", + "response_cols": ["measured log solubility in mols per litre_class", + "measured log solubility in mols per litre_class2"], + "num_model_tasks": 2, + "prediction_type": "classification", + + "comment": "Features", + "comment": "----------------------------------------", + "featurizer": "computed_descriptors", + + "comment": "Descriptors", + "comment": "----------------------------------------", + "descriptor_type": "mordred_filtered", + + "comment": "Splitting", + "comment": "----------------------------------------", + "base_spliter": "random", + "spliter": "random", + + "comment": "Model", + "comment": "----------------------------------------", + "model_type": "NN", + "dropout": ".01,.01,.01", + "layer_sizes": "64,64,64", + "learning_rate": "0.007", + "max_epochs": "50", + + "comment": "Transformers", + "comment": "----------------------------------------", + "comment": "Feature transformer type", + "feature_transformer_type": "RobustScaler", + + "comment": "Training", + "comment": "----------------------------------------", + "comment": "This regulates how long to train the model", + "early_stopping_patience": "50", + + "comment": "Results", + "comment": "----------------------------------------", + "result_dir": "result" +} diff --git a/atomsci/ddm/test/integrative/delaney_Panel/test_delaney_panel.py b/atomsci/ddm/test/integrative/delaney_Panel/test_delaney_panel.py index f981b561..49a60f94 100644 --- a/atomsci/ddm/test/integrative/delaney_Panel/test_delaney_panel.py +++ b/atomsci/ddm/test/integrative/delaney_Panel/test_delaney_panel.py @@ -299,6 +299,14 @@ def test_class_config_delaney_fit_XGB_mordred_filtered(): init() train_and_predict('jsons/class_config_delaney_fit_XGB_mordred_filtered.json') # breaks because labels aren't numbers +def test_class_config_delaney_fit_XGB_rdkit_scaled(): + init() + train_and_predict('jsons/class_config_delaney_fit_XGB_rdkit_scaled.json') # fine + +def test_class_config_delaney_fit_XGB_mordred_filtered_scaled(): + init() + train_and_predict('jsons/class_config_delaney_fit_XGB_mordred_filtered_scaled.json') # fine + def test_class_config_delaney_fit_NN_ecfp(): init() train_and_predict('jsons/class_config_delaney_fit_NN_ecfp.json') # only works for class @@ -307,6 +315,14 @@ def test_multi_class_random_config_delaney_fit_NN_mordred_filtered(): init() train_and_predict('jsons/multi_class_random_config_delaney_fit_NN_mordred_filtered.json') # crashes during run +def test_multi_class_random_config_delaney_fit_NN_mordred_filtered_robustscaler(): + init() + train_and_predict('jsons/multi_class_random_config_delaney_fit_NN_mordred_filtered_robustscaler.json') # crashes during run + +def test_multi_class_random_config_delaney_fit_NN_mordred_filtered_powertransformer(): + init() + train_and_predict('jsons/multi_class_random_config_delaney_fit_NN_mordred_filtered_powertransformer.json') # crashes during run + def test_multi_class_config_delaney_fit_NN_graphconv(): init() train_and_predict('jsons/multi_class_config_delaney_fit_NN_graphconv.json') # fine @@ -349,5 +365,6 @@ def test_class_config_H1_fit_NN_moe(): train_and_predict('jsons/class_config_H1_fit_NN_moe.json', prefix='H1') if __name__ == '__main__': - test_reg_kfold_config_delaney_fit_NN_graphconv() + test_class_config_delaney_fit_XGB_rdkit_scaled() + test_class_config_delaney_fit_XGB_mordred_filtered_scaled() #pass diff --git a/atomsci/ddm/test/integrative/hybrid/test_hybrid.py b/atomsci/ddm/test/integrative/hybrid/test_hybrid.py index 64cfc271..2aa88ad6 100644 --- a/atomsci/ddm/test/integrative/hybrid/test_hybrid.py +++ b/atomsci/ddm/test/integrative/hybrid/test_hybrid.py @@ -20,6 +20,26 @@ def clean(): if os.path.isfile("./output/"+f): os.remove("./output/"+f) +def test_is_hybrid(): + """Test to see of the model pipeline is built correctly""" + with open("H1_hybrid.json", "r") as f: + hp_params = json.load(f) + + script_dir = parse.__file__.strip("parameter_parser.py").replace("/pipeline/", "") + python_path = sys.executable + hp_params["script_dir"] = script_dir + hp_params["python_path"] = python_path + hp_params["descriptor_type"] = "rdkit_raw" + + params = parse.wrapper(hp_params) + if not os.path.isfile(params.dataset_key): + params.dataset_key = os.path.join(params.script_dir, params.dataset_key) + + print("Train a hybrid models with MOE descriptors") + pl = mp.ModelPipeline(params) + + assert pl.params.model_type == 'hybrid' + @pytest.mark.moe_required def test(): """Test full model pipeline: Curate data, fit model, and predict property for new compounds""" diff --git a/atomsci/ddm/test/integrative/hyperopt/H1_NN_hyperopt.json b/atomsci/ddm/test/integrative/hyperopt/H1_NN_hyperopt.json new file mode 100644 index 00000000..788cd594 --- /dev/null +++ b/atomsci/ddm/test/integrative/hyperopt/H1_NN_hyperopt.json @@ -0,0 +1,30 @@ +{ + "system": "LC", + "lc_account": "None", + "datastore": "False", + "save_results": "False", + "data_owner": "username", + "hyperparam": "True", + "slurm_partition": "norm", + "slurm_time_limit": "600", + "prediction_type": "regression", + "dataset_key": "../../test_datasets/H1_std.csv", + "id_col": "compound_id", + "smiles_col": "base_rdkit_smiles", + "response_cols": "pKi_mean", + "split_uuid": "002251a2-83f8-4511-acf5-e8bbc5f86677", + "previously_split": "True", + "uncertainty": "False", + "search_type": "hyperopt", + "verbose": "True", + "transformers": "True", + "model_type": "NN|3", + "featurizer": "ecfp", + "max_epochs": 3, + "lr": "loguniform|-13.8,-3", + "ls": "uniformint|1|8,32", + "dp": "uniform|1|0,0.2", + "wdp": "loguniform|-6.908,-4.605", + "wdt": "choice|l1,l2", + "result_dir": "./output,./tmp" +} diff --git a/atomsci/ddm/test/integrative/hyperopt/H1_NN_ls_ratio_hyperopt.json b/atomsci/ddm/test/integrative/hyperopt/H1_NN_ls_ratio_hyperopt.json new file mode 100644 index 00000000..51ecf2b4 --- /dev/null +++ b/atomsci/ddm/test/integrative/hyperopt/H1_NN_ls_ratio_hyperopt.json @@ -0,0 +1,29 @@ +{ + "system": "LC", + "lc_account": "None", + "datastore": "False", + "save_results": "False", + "data_owner": "username", + "hyperparam": "True", + "slurm_partition": "norm", + "slurm_time_limit": "600", + "prediction_type": "regression", + "dataset_key": "../../test_datasets/H1_std.csv", + "id_col": "compound_id", + "smiles_col": "base_rdkit_smiles", + "response_cols": "pKi_mean", + "split_uuid": "002251a2-83f8-4511-acf5-e8bbc5f86677", + "previously_split": "True", + "uncertainty": "False", + "search_type": "hyperopt", + "verbose": "True", + "transformers": "True", + "model_type": "NN|2", + "featurizer": "ecfp", + "max_epochs": 3, + "lr": "loguniform|-13.8,-3", + "ls": "uniformint|2|16,64", + "ls_ratio": "uniform|0.5,0.9", + "dp": "uniform|2|0.1,0.3", + "result_dir": "./output,./tmp" +} diff --git a/atomsci/ddm/test/integrative/hyperopt/H1_RF_classify_hyperopt.json b/atomsci/ddm/test/integrative/hyperopt/H1_RF_classify_hyperopt.json new file mode 100644 index 00000000..4e8fdc9b --- /dev/null +++ b/atomsci/ddm/test/integrative/hyperopt/H1_RF_classify_hyperopt.json @@ -0,0 +1,27 @@ +{ + "system": "LC", + "lc_account": "None", + "datastore": "False", + "save_results": "False", + "data_owner": "username", + "hyperparam": "True", + "slurm_partition": "norm", + "slurm_time_limit": "600", + "prediction_type": "classification", + "dataset_key": "../../test_datasets/H1_std.csv", + "id_col": "compound_id", + "smiles_col": "base_rdkit_smiles", + "response_cols": "active", + "split_uuid": "002251a2-83f8-4511-acf5-e8bbc5f86677", + "previously_split": "True", + "uncertainty": "False", + "search_type": "hyperopt", + "verbose": "True", + "transformers": "True", + "model_type": "RF|3", + "featurizer": "ecfp", + "rfe": "uniformint|8,512", + "rfd": "uniformint|4,32", + "rff": "uniformint|8,200", + "result_dir": "./output,./tmp" +} diff --git a/atomsci/ddm/test/integrative/hyperopt/H1_xgboost_hyperopt.json b/atomsci/ddm/test/integrative/hyperopt/H1_xgboost_hyperopt.json new file mode 100644 index 00000000..902fa552 --- /dev/null +++ b/atomsci/ddm/test/integrative/hyperopt/H1_xgboost_hyperopt.json @@ -0,0 +1,28 @@ +{ + "system": "LC", + "lc_account": "None", + "datastore": "False", + "save_results": "False", + "data_owner": "username", + "hyperparam": "True", + "slurm_partition": "norm", + "slurm_time_limit": "600", + "prediction_type": "regression", + "dataset_key": "../../test_datasets/H1_std.csv", + "id_col": "compound_id", + "smiles_col": "base_rdkit_smiles", + "response_cols": "pKi_mean", + "split_uuid": "002251a2-83f8-4511-acf5-e8bbc5f86677", + "previously_split": "True", + "uncertainty": "False", + "search_type": "hyperopt", + "verbose": "True", + "transformers": "True", + "model_type": "xgboost|2", + "featurizer": "ecfp", + "xgbg": "uniform|0,0.2", + "xgba": "uniform|0,0.2", + "xgbb": "uniform|0,0.2", + "xgbl": "loguniform|-6.9,-2.3", + "result_dir": "./output,./tmp" +} diff --git a/atomsci/ddm/test/integrative/hyperopt/test_hyperopt.py b/atomsci/ddm/test/integrative/hyperopt/test_hyperopt.py index 93063f84..7116703e 100644 --- a/atomsci/ddm/test/integrative/hyperopt/test_hyperopt.py +++ b/atomsci/ddm/test/integrative/hyperopt/test_hyperopt.py @@ -3,61 +3,199 @@ import json import pandas as pd import os -import sys import glob import atomsci.ddm.pipeline.parameter_parser as parse +import atomsci.ddm.utils.hyperparam_search_wrapper as hsw + + +def _script_dir(): + return parse.__file__.replace("pipeline/parameter_parser.py", "") + + +def _resolve_dataset(hp_params): + """Make dataset_key absolute if needed.""" + params = parse.wrapper(hp_params) + if not os.path.isfile(params.dataset_key): + hp_params["dataset_key"] = os.path.join(_script_dir(), hp_params["dataset_key"]) + return hp_params + + +def _run_search(hp_params): + """Parse params and run OptunaSearch directly (in-process for coverage tracking).""" + hp_params = _resolve_dataset(hp_params) + ampl_param = hsw.parse_params(hp_params) + hs = hsw.build_search(ampl_param) + hs.run_search() + def clean(): - """Clean test files""" - if "output" not in os.listdir(): - os.mkdir("output") - for f in os.listdir("./output"): - if os.path.isfile("./output/"+f): - os.remove("./output/"+f) - if "tmp" not in os.listdir(): - os.mkdir("tmp") - for f in os.listdir("./tmp"): - if os.path.isfile("./tmp/"+f): - os.remove("./tmp/"+f) + """Clean test output and tmp directories.""" + for d in ("output", "tmp"): + if d not in os.listdir(): + os.mkdir(d) + for f in os.listdir(f"./{d}"): + if os.path.isfile(f"./{d}/{f}"): + os.remove(f"./{d}/{f}") + def test(): - """Test full model pipeline: Curate data, fit model, and predict property for new compounds""" + """Test Optuna search with RF regression model (10 trials).""" - # Clean - # ----- clean() - # Run HyperOpt - # ------------ with open("H1_RF_hyperopt.json", "r") as f: hp_params = json.load(f) - script_dir = parse.__file__.strip("parameter_parser.py").replace("/pipeline/", "") - python_path = sys.executable - hp_params["script_dir"] = script_dir - hp_params["python_path"] = python_path + hp_params["script_dir"] = _script_dir() - params = parse.wrapper(hp_params) - if not os.path.isfile(params.dataset_key): - hp_params["dataset_key"] = os.path.join(script_dir, hp_params["dataset_key"]) + _run_search(hp_params) + + perf_table = glob.glob("./output/performance*") + best_model = glob.glob("./output/best*") - with open("H1_RF_hyperopt_temp.json", "w") as f: - json.dump(hp_params, f, indent=4) + try: + assert (len(perf_table) == 1), 'Error: No performance table returned.' + assert (len(best_model) == 1), 'Error: No best model saved' + perf_df = pd.read_csv(perf_table[0]) + assert (len(perf_df) == 10), 'Error: Size of performance table WRONG.' + except AssertionError as e: + print(f"WARNING: {e}. Continuing.") - run_cmd = f"{python_path} {script_dir}/utils/hyperparam_search_wrapper.py --config_file ./H1_RF_hyperopt_temp.json" - os.system(run_cmd) - # check results - # ------------- +def test_nn(): + """Test Optuna search with NN regression model (3 trials).""" + + clean() + + with open("H1_NN_hyperopt.json", "r") as f: + hp_params = json.load(f) + + hp_params["script_dir"] = _script_dir() + + _run_search(hp_params) + perf_table = glob.glob("./output/performance*") best_model = glob.glob("./output/best*") assert (len(perf_table) == 1), 'Error: No performance table returned.' assert (len(best_model) == 1), 'Error: No best model saved' perf_df = pd.read_csv(perf_table[0]) - assert (len(perf_df) == 10), 'Error: Size of performance table WRONG.' + assert (len(perf_df) == 3), 'Error: Size of performance table WRONG.' + + +def test_classify(): + """Test Optuna search with RF classification model (3 trials).""" + + clean() + + with open("H1_RF_classify_hyperopt.json", "r") as f: + hp_params = json.load(f) + + hp_params["script_dir"] = _script_dir() + + _run_search(hp_params) + + perf_table = glob.glob("./output/performance*") + best_model = glob.glob("./output/best*") + + assert (len(perf_table) == 1), 'Error: No performance table returned.' + assert (len(best_model) == 1), 'Error: No best model saved' + perf_df = pd.read_csv(perf_table[0]) + assert ("valid_roc_auc" in perf_df.columns), 'Error: Missing valid_roc_auc column in performance table.' + assert (len(perf_df) == 3), 'Error: Size of performance table WRONG.' + + +def test_xgboost(): + """Test Optuna search with XGBoost model (2 trials).""" + + clean() + + with open("H1_xgboost_hyperopt.json", "r") as f: + hp_params = json.load(f) + + hp_params["script_dir"] = _script_dir() + + _run_search(hp_params) + + perf_table = glob.glob("./output/performance*") + best_model = glob.glob("./output/best*") + + assert (len(perf_table) == 1), 'Error: No performance table returned.' + assert (len(best_model) == 1), 'Error: No best model saved' + perf_df = pd.read_csv(perf_table[0]) + assert (len(perf_df) == 2), 'Error: Size of performance table WRONG.' + + +def test_nn_ls_ratio(): + """Test Optuna search with NN using ls_ratio (2 trials).""" + + clean() + + with open("H1_NN_ls_ratio_hyperopt.json", "r") as f: + hp_params = json.load(f) + + hp_params["script_dir"] = _script_dir() + + _run_search(hp_params) + + perf_table = glob.glob("./output/performance*") + best_model = glob.glob("./output/best*") + + assert (len(perf_table) == 1), 'Error: No performance table returned.' + assert (len(best_model) == 1), 'Error: No best model saved' + perf_df = pd.read_csv(perf_table[0]) + assert (len(perf_df) == 2), 'Error: Size of performance table WRONG.' + + +def test_checkpoint(): + """Test Optuna search with checkpoint save (RF regression, 5 trials).""" + + clean() + + hp_params = { + "system": "LC", + "lc_account": "None", + "datastore": "False", + "save_results": "False", + "data_owner": "username", + "hyperparam": "True", + "slurm_partition": "norm", + "slurm_time_limit": "600", + "prediction_type": "regression", + "dataset_key": "../../test_datasets/H1_std.csv", + "id_col": "compound_id", + "smiles_col": "base_rdkit_smiles", + "response_cols": "pKi_mean", + "split_uuid": "002251a2-83f8-4511-acf5-e8bbc5f86677", + "previously_split": "True", + "uncertainty": "False", + "search_type": "hyperopt", + "verbose": "True", + "transformers": "True", + "model_type": "RF|5", + "featurizer": "ecfp", + "rfe": "uniformint|8,512", + "rfd": "uniformint|4,32", + "rff": "uniformint|8,200", + "result_dir": "./output,./tmp", + "hp_checkpoint_save": "./tmp/checkpoint_ckpt.pkl", + "script_dir": _script_dir(), + } + + _run_search(hp_params) + + perf_table = glob.glob("./output/performance*") + assert (len(perf_table) == 1), 'Error: No performance table returned.' + perf_df = pd.read_csv(perf_table[0]) + assert (len(perf_df) == 5), 'Error: Size of performance table WRONG.' + assert os.path.isfile("./tmp/checkpoint_ckpt.pkl"), 'Error: Checkpoint file not created.' if __name__ == '__main__': test() + test_nn() + test_classify() + test_xgboost() + test_nn_ls_ratio() + test_checkpoint() diff --git a/atomsci/ddm/test/integrative/import_transformer/data/H1_std_short.csv b/atomsci/ddm/test/integrative/import_transformer/data/H1_std_short.csv new file mode 100644 index 00000000..4929e0f8 --- /dev/null +++ b/atomsci/ddm/test/integrative/import_transformer/data/H1_std_short.csv @@ -0,0 +1,241 @@ +base_rdkit_smiles,compound_id,NofA,pKi_mean,pKi_std,active +C1=C(N2CCNCC2)c2nccn2Cc2ccccc21,CHEMBL1222552,1,9.199970640755865,0.1140853274850961,1 +C=CCN(CC=C)CCc1c[nH]c2ccc(Br)cc12,CHEMBL3754166,2,6.0,1.0,1 +C=CCN(CC=C)CCc1c[nH]c2ccc(C)cc12,CHEMBL3753318,2,5.585000955651308,0.5850009556513105,0 +CC(=O)c1ccc(OCCCN2CC[C@H](NC(=O)[C@@H](N)CO)C2)cc1,CHEMBL104994,1,4.366531544420414,0.4719824216245228,0 +CC(C#Cc1ccc(CN2CCN([C@H](c3ccccc3)c3ccc(Cl)cc3)CC2)o1)N(O)C(N)=O,CHEMBL312082,1,6.721246399047171,0.0956684631251178,1 +CC(C)(C)OC(=O)N[C@H](Cc1ccccc1)C(=O)N1CCN(CCCOc2ccc(C(=O)C3CC3)cc2)CC1,CHEMBL60143,1,5.2599999003114535,0.1819195644711213,0 +CC(C)(C)OC[C@@H](N)C(=O)N1CCN(CCCOc2ccc(C(=O)C3CC3)cc2)CC1,CHEMBL293033,1,4.790000026071144,0.4719824216245228,0 +CC(C)(CN1CCN(C2=Cc3ccccc3Cn3cc(F)nc32)CC1)C(=O)O,CHEMBL1222763,1,7.400007822415903,0.4081691649627073,1 +CC(C)CN/C(=N/C#N)NC[C@H]1CC[C@H](c2c[nH]cn2)C1,CHEMBL3806255,1,5.057991946977686,0.1819195644711213,0 +CC(C)N1CCC(Oc2ccc(N3CCN(C(=O)c4cc(F)cc(F)c4)CC3=O)cc2)CC1,CHEMBL430368,1,5.599999383023619,0.1819195644711213,0 +CC(C)N1CCC(Oc2ccc(N3CCN(C(=O)c4ccc(C#N)cc4)CC3=O)cc2)CC1,CHEMBL238456,1,5.4999996786570655,0.1819195644711213,0 +CC(C)N1CCC(Oc2ccc(N3CCN(C(=O)c4ccc(F)cc4)CC3=O)cc2)CC1,CHEMBL535631,1,5.599999383023619,0.1819195644711213,0 +CC(C1=C(CCN(C(C)C)C(C)C)Cc2ccccc21)c1ccccn1,CHEMBL352375,2,6.1349960950815525,0.524996286921775,1 +CC(C1=C(CCN(C)C)Cc2ccccc21)c1ccccn1,CHEMBL22108,1,9.160019442321657,0.1140853274850961,1 +CC(CN1c2ccccc2Sc2ccccc21)N(C)C,CHEMBL643,1,9.476253533188435,0.1140853274850961,1 +CC(c1cccc(F)n1)c1c(CCN(C)C)sc2ccccc12,CHEMBL1091793,1,7.420216403383192,0.4081691649627073,1 +CC(c1ccccn1)c1c(CCN(C)C)sc2ccccc12,CHEMBL1090432,1,7.920818753952375,0.4081691649627073,1 +CC(c1cccnc1)c1c(CCN(C)C)sc2ccccc12,CHEMBL1091776,1,5.0,0.1819195644711213,0 +CC1=C(C(=O)NCCCN2CCC(C#N)(c3ccc(F)cc3F)CC2)[C@@H](c2ccc(F)c(F)c2)CC(=O)N1,CHEMBL295001,1,6.966576244513051,0.0956684631251178,1 +CC1NC(N)=Nc2cccc(Cl)c21,CHEMBL270177,1,5.958607314841776,0.1819195644711213,1 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)CC)CC2)cc1,CHEMBL294502,1,5.720000163638921,0.1819195644711213,0 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)OC)CC2)cc1,CHEMBL64408,1,5.969999718407896,0.1819195644711213,1 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)OCC(C)C)CC2)cc1,CHEMBL64775,1,6.5600045260461926,0.0956684631251178,1 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)[C@@H](C)NC(=O)OC(C)(C)C)CC2)cc1,CHEMBL63125,1,5.169999984192581,0.1819195644711213,0 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)[C@@H](CO)NC(=O)OC(C)(C)C)CC2)cc1,CHEMBL60837,1,4.769999911123512,0.4719824216245228,0 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)[C@@H](N)C(C)C)CC2)cc1,CHEMBL62592,1,4.719999935717911,0.4719824216245228,0 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)[C@@H](NC(=O)OC(C)(C)C)C(C)C)CC2)cc1,CHEMBL312958,1,4.6700000181810175,0.4719824216245228,0 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)[C@H](N)CC(C)C)CC2)cc1,CHEMBL62741,1,4.8399999311187,0.4719824216245228,0 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)c3ccc(C)s3)CC2)cc1,CHEMBL60383,1,7.010016541698601,0.4081691649627073,1 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)c3ccco3)CC2)cc1,CHEMBL62312,1,6.399996913372259,0.0956684631251178,1 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)c3cccs3)CC2)cc1,CHEMBL62726,1,7.130005999878257,0.4081691649627073,1 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)c3sccc3Cl)CC2)cc1,CHEMBL291882,1,7.100015437450608,0.4081691649627073,1 +CCCCCC(=O)c1ccc(OCCCN2CCN(S(=O)(=O)C(C)C)CC2)cc1,CHEMBL63631,1,4.950000175844591,0.4719824216245228,0 +CCCCCC(=O)c1ccc(OCCCN2CCN(S(C)(=O)=O)CC2)cc1,CHEMBL431172,1,4.579999998661814,0.4719824216245228,0 +CCCCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)OCC)CC2)cc1,CHEMBL449040,1,6.2500010234416505,0.0956684631251178,1 +CCCCN1CCC[C@@H]1Cn1nc(Cc2ccc(Cl)cc2)c2cnccc2c1=O,CHEMBL2146806,1,9.4000078224159,0.1140853274850961,1 +CCCCN1CCC[C@@H]1Cn1nc(Cc2ccc(Cl)cc2)c2ncccc2c1=O,CHEMBL2146810,1,9.199970640755865,0.1140853274850961,1 +CCCc1ccc(N2CCN(Cc3c[nH]c4ncccc34)CC2)cc1,CHEMBL28833,1,5.0,0.1819195644711213,0 +CCCc1nc(CN2CC[C@H](c3ccccc3)C2)cs1,CHEMBL4167807,1,6.508638306165728,0.0956684631251178,1 +CCN(C)CCC1=C(Cc2cnccn2)c2ccccc2C1,CHEMBL1669405,1,8.142667503568731,0.1639776038099834,1 +CCNC(=O)c1ccc(-c2ccc3c(c2)CCN(CCN2CCC[C@H]2C)C3=O)cc1,CHEMBL2031884,1,5.140861702705468,0.1819195644711213,0 +CCOC(=O)N1CCN(CCCOc2ccc(-c3ccc(C#N)cc3)cc2)CC1,CHEMBL320178,1,6.799998134593397,0.0956684631251178,1 +CCOC(=O)N1CCN(CCCOc2ccc(-c3ccc(OC(F)(F)F)cc3)cc2)CC1,CHEMBL446885,1,6.359995853468939,0.0956684631251178,1 +CCOC(=O)N1CCN(CCCOc2ccc(-c3ccc(OC)cc3)cc2)CC1,CHEMBL105483,1,6.4500041484693496,0.0956684631251178,1 +CCOC(=O)N1CCN(CCCOc2ccc(C(=O)C=C(C)C)cc2)CC1,CHEMBL305313,1,6.4500041484693496,0.0956684631251178,1 +CCOC(=O)N1CCN(CCCOc2ccc(C(=O)c3ccc(F)cc3)cc2)CC1,CHEMBL440864,1,6.679999195735272,0.0956684631251178,1 +CCOC(=O)N1CCN(CCCOc2ccc(C(=O)c3cccc(C)c3)cc2)CC1,CHEMBL64021,1,6.41999931041096,0.0956684631251178,1 +CCOc1cc(CN2CCC(Nc3nc4cc(S(=O)(=O)CC)ccc4o3)CC2)cc(OC2CCOCC2)c1,CHEMBL1082036,1,4.4156687756324695,0.4719824216245228,0 +CCOc1cc(CN2CCC(Nc3nc4ccccc4o3)CC2)ccc1F,CHEMBL393436,1,6.083019952679617,0.0956684631251178,1 +CCc1cc(N2CCN(CCc3ccc(OCCCN4CCCCCC4)cc3)CC2)c2nc(CCC(=O)O)ccc2c1,CHEMBL3926412,1,7.799970733446231,0.4081691649627073,1 +CCc1nc2cc3c(c(Br)c2o1)CCN(CCCCSc1nnc(-c2cccc4nc(C)ccc24)n1C)CC3,CHEMBL256482,1,5.700000503883016,0.1819195644711213,0 +CCc1nc2cc3c(c(Br)c2o1)CCN(CCCSc1nnc(-c2cccc4nc(C)ccc24)n1C)CC3,CHEMBL255778,1,6.299997602857746,0.0956684631251178,1 +CCc1nc2cc3c(c(C)c2o1)CCN(C(C)CCSc1nnc(-c2cccc4nc(C)ccc24)n1C)CC3,CHEMBL257524,1,5.599999383023619,0.1819195644711213,0 +CCc1nc2cc3c(c(C)c2o1)CCN(CCSc1nnc(-c2cccc4nc(C)ccc24)n1C)CC3,CHEMBL401777,1,5.599999383023619,0.1819195644711213,0 +CCc1nc2cc3c(cc2o1)CCN(CCCSc1nnc(-c2cccnc2)n1C)CC3,CHEMBL272302,1,5.599999383023619,0.1819195644711213,0 +CCc1nc2ccc3c(c2s1)CCN(CCCSc1nnc(-c2cccc4nc(C)ccc24)n1C)CC3,CHEMBL256442,1,6.399996913372259,0.0956684631251178,1 +CCc1nc2ccc3c(c2s1)CCN(CCCSc1nnc(-c2ocnc2C)n1C)CC3,CHEMBL403804,1,5.599999383023619,0.1819195644711213,0 +CN(C)CCC=C1c2ccccc2CCc2ccccc21,CHEMBL629,2,9.10324449710357,0.1524625197737537,1 +CN(C)CCC=C1c2ccccc2COc2ccccc21,CHEMBL1628227,3,9.843501557586258,0.2460153756562471,1 +CN(C)CCCC(c1ccccc1)c1ccccc1,CHEMBL608689,1,7.154901959985742,0.4081691649627073,1 +CN(C)CCCC1c2ccccc2Cc2ccccc21,CHEMBL346230,1,9.30102999566398,0.1140853274850961,1 +CN(C)CCCn1nc(Cc2ccc(Cl)cc2)c2ccccc2c1=O,CHEMBL1767135,1,8.0,0.1639776038099834,1 +CN(C)CCOC(c1ccccc1)c1ccccc1,CHEMBL657,3,7.653600035424044,0.1657132375715435,1 +CN(C)C[C@@H]1CC2c3ccccc3Oc3ccc(Cl)cc3[C@H]2O1,CHEMBL364270,1,7.853871964321763,0.4081691649627073,1 +CN(C)C[C@@H]1CC2c3ccccc3Oc3ccc(F)cc3[C@H]2O1,CHEMBL195706,1,7.481486060122112,0.4081691649627073,1 +CN(C)C[C@H]1CC2c3ccccc3Oc3ccc(Cl)cc3[C@H]2O1,CHEMBL435301,1,8.366531544420411,0.1639776038099834,1 +CN(CC1CCOCC1)C1CCN(c2nc3ccccc3n2Cc2ccc(F)cc2)CC1,CHEMBL550818,3,8.4089353929735,0.1639776038099834,1 +CN1CCC[C@@H]1Cn1nc(Cc2ccc(Cl)cc2)c2ncccc2c1=O,CHEMBL2146809,1,9.500038134403807,0.1140853274850961,1 +CN1CCN(C2=Nc3ccc(Cl)cc3Oc3ccccc32)CC1,CHEMBL213912,3,8.100011269054365,0.0141634797008088,1 +CN1CCN([C@H]2Cc3ccccc3Sc3ccc(Cl)cc32)CC1,CHEMBL303313,1,7.823908740944319,0.4081691649627073,1 +CN1CCN(c2cc(NCc3c(Cl)cccc3Cl)nc(N)n2)CC1,CHEMBL595180,1,6.0,0.0956684631251178,1 +CN1CCN(c2nc(N)nc3cc(-c4ccco4)ccc23)CC1,CHEMBL1935573,1,5.192329698769516,0.1819195644711213,0 +CNC1CCN(c2nc3ccccc3n2Cc2ccc(F)cc2)CC1,CHEMBL549599,1,8.619788758288394,0.1639776038099834,1 +CNC[C@@H]1C[C@H]2c3ccccc3Cc3ccccc3[C@@H]2O1,CHEMBL2112371,1,8.455931955649724,0.1639776038099834,1 +COCCN1CCC[C@@H]1Cn1nc(Cc2ccc(Cl)cc2)c2cccnc2c1=O,CHEMBL2146808,1,9.0,0.1140853274850961,1 +COc1c(OCCF)cccc1[C@H](O)C1CCN(CCc2ccc(F)cc2)CC1,CHEMBL515472,1,6.293282217663242,0.0956684631251178,1 +COc1cc2c(cc1OC)C1=NO[C@@H](CN3CCN(C/C(C)=C/c4ccc(F)cc4)CC3)[C@@H]1CO2,CHEMBL318235,1,7.130768280269022,0.4081691649627073,1 +COc1cc2c(cc1OC)CN(CCCCc1nc3cc(Cl)ccc3s1)CC2,CHEMBL3959919,2,6.487728577663157,0.0022763303234438,1 +COc1ccc(CN(CCN(C)CCN2CCN(C(=O)c3cc4cc(Cl)ccc4[nH]3)CC2)c2ccccn2)cc1,CHEMBL1910382,1,7.0,0.4081691649627073,1 +COc1ccc(CN(CCN(C)CCN2CCN(C(=O)c3cc4ccccc4[nH]3)CC2)c2ccccn2)cc1,CHEMBL1910381,1,8.15002808767115,0.1639776038099834,1 +COc1ccc(N2CCC(Cc3c[nH]cn3)CC2)cc1,CHEMBL1172775,1,6.0,0.0956684631251178,1 +COc1ccc(NC(=O)N2CCN(c3ccccc3F)CC2)cc1N1CCN(C)CC1,CHEMBL196169,1,5.0,0.1819195644711213,0 +COc1ccc2c(c1)CC(CCN(C)C)=C2[C@@H](C)c1nccs1,CHEMBL1093623,1,8.602059991327963,0.1639776038099834,1 +COc1cccc(C(C)c2c(CCN(C)C)sc3ccccc23)n1,CHEMBL1091792,1,7.229147988357855,0.4081691649627073,1 +COc1cccc(CCN2C3C4C5CC6C7C5C3C7C2(O)C64)c1,CHEMBL2205811,1,5.05266432405126,0.1819195644711213,0 +COc1ccccc1N1CCN(Cc2c[nH]c3ncccc23)CC1,CHEMBL435949,1,5.0,0.1819195644711213,0 +COc1ncccc1[C@@H](C)c1c(CCN(C)C)sc2ccccc12,CHEMBL1093294,1,8.537602002101043,0.1639776038099834,1 +COc1nccnc1CC1=C(CCN(C)C)Cc2ccccc21,CHEMBL1088900,1,8.657577319177793,0.1639776038099834,1 +COc1nccnc1[C@H](C)C1=C(CCN(C)C)Cc2ccccc21,CHEMBL1092597,1,9.0,0.1140853274850961,1 +CS(=O)(=O)c1ccc(C(=O)N2CCN(c3ccc(OC4CCN(C5CCC5)CC4)cc3)C(=O)C2)cc1,CHEMBL398996,1,5.599999383023619,0.1819195644711213,0 +CS(=O)(=O)c1cccc(C(=O)N2CCN(c3ccc(OCCCN4CCCCC4)cc3)C(=O)C2)c1,CHEMBL240393,1,5.4999996786570655,0.1819195644711213,0 +CS(=O)(=O)c1ccccc1C(=O)NC[C@@H](O)CN1CCC(Oc2ccc(Cl)c(Cl)c2)CC1,CHEMBL2208428,1,6.699991797446188,0.0956684631251178,1 +C[C@@H](CN)C(=O)N1CCN(CCCOc2ccc(C(=O)C3CC3)cc2)CC1,CHEMBL64608,1,5.820000358220838,0.1819195644711213,1 +C[C@@H]1CCCN1C(=O)c1ccc(-c2ccc3c(c2)CCN(CCN2CCCC2)C3=O)cc1,CHEMBL2031876,1,5.0,0.1819195644711213,0 +C[C@@H]1CCCN1CCCOc1ccc(C2=NNC(=O)[C@H]3C[C@@H]23)cc1,CHEMBL3417586,1,5.0,0.1819195644711213,0 +C[C@@H]1CC[C@@H](C)N1CCCOc1ccc(-c2ccc(C#N)cc2)cc1,CHEMBL105762,1,6.2500010234416505,0.0956684631251178,1 +C[C@@H]1C[C@@H](C)N1C(=O)[C@@H]1C=C2c3cccc4[nH]cc(c34)CC2N(C)C1,CHEMBL138989,1,5.853871964321763,0.1819195644711213,1 +C[C@@H]1NC(NCC(F)F)=Nc2ccc(Cl)c(Cl)c21,CHEMBL256694,1,8.585026652029184,0.1639776038099834,1 +C[C@@]1(O)CCN(CCCOc2ccc(-c3ccc(C#N)cc3)cc2)C1,CHEMBL2112461,1,5.4100001618584095,0.1819195644711213,0 +C[C@H](C1=C(CCN(C)CC#N)Cc2ccccc21)c1cnccn1,CHEMBL1669409,1,7.494850021680094,0.4081691649627073,1 +C[C@H](C1=C(CCN(C)CCC(F)(F)F)Cc2ccccc21)c1cnccn1,CHEMBL1669411,1,7.040958607678906,0.4081691649627073,1 +C[C@H]1CCCN1CCCOc1ccc(N2CCN(C(=O)c3cc(F)cc(F)c3)CC2=O)cc1,CHEMBL392713,1,5.700000503883016,0.1819195644711213,0 +C[C@H]1CCCN1CCCOc1ccc(N2CCN(C(=O)c3ccc(F)cc3)CC2=O)cc1,CHEMBL239300,1,5.700000503883016,0.1819195644711213,0 +Cc1c(Cl)ccc(OC2CCN(C[C@H](O)CNC(=O)c3c[nH]nc3C(F)(F)F)CC2)c1Cl,CHEMBL2207660,1,7.400007822415903,0.4081691649627073,1 +Cc1c(OC2CCN(CC3CCN([C@@H](Cc4ccc(F)cc4)C(=O)O)CC3)CC2)ccc(C#N)c1Cl,CHEMBL2158785,1,6.299997602857746,0.0956684631251178,1 +Cc1c(OC2CCN(CC3CCN([C@@H](Cc4ccc(F)cc4)C(=O)O)CC3)CC2)ccc(Cl)c1Cl,CHEMBL2158784,1,7.500038134403808,0.4081691649627073,1 +Cc1c(OC2CCN(CC3CCN([C@@](C)(Cc4ccc(F)cc4)C(=O)O)CC3)CC2)ccc(Cl)c1Cl,CHEMBL2158790,1,7.500038134403808,0.4081691649627073,1 +Cc1cc(Cl)ccc1OC1CCN(CC2CCN([C@@H](Cc3ccc(F)cc3)C(=O)O)CC2)CC1,CHEMBL2158780,1,7.100015437450608,0.4081691649627073,1 +Cc1cc(Cl)ccc1OC1CCN(C[C@H](O)CNC(=O)c2c[nH]c(=O)cc2C(F)(F)F)CC1,CHEMBL2207663,1,8.0,0.1639776038099834,1 +Cc1cc(Cl)ccc1OC1CCN(C[C@H](O)CNC(=O)c2c[nH]nc2C(F)(F)F)CC1,CHEMBL2207659,1,7.599980364934843,0.4081691649627073,1 +Cc1cc(F)ccc1OC1CCN(CC2CCN([C@@](C)(Cc3ccc(F)cc3)C(=O)O)CC2)CC1,CHEMBL2158793,1,7.100015437450608,0.4081691649627073,1 +Cc1ccc(-c2nnc(SCCCN3CCc4ccc5oc(C(F)(F)F)nc5c4CC3)n2C)cn1,CHEMBL404404,1,5.700000503883016,0.1819195644711213,0 +Cc1ccc(Cn2c(C3CNCCS3)nc3ccccc32)cc1,CHEMBL1935444,3,8.303541613061299,0.7802680688384991,1 +Cc1ccc(Cn2c([C@H]3CNCCO3)nc3ccccc32)cc1,CHEMBL1935441,1,9.0,0.1140853274850961,1 +Cc1ccc(S(=O)(=O)NC(=O)N2CCC(N3CCC(Oc4ccc(F)c(F)c4)CC3)CC2)cc1,CHEMBL2171050,1,6.0,0.0956684631251178,1 +Cc1ccc(S(=O)(=O)N[C@H]2CCN(CCCOc3ccc(C(=O)C4CC4)cc3)C2)cc1,CHEMBL107293,1,5.259637310505756,0.1819195644711213,0 +Cc1ccc2[nH]c(/C(=N\O)C3CCN(C)CC3)cc2c1,CHEMBL1632412,1,5.0,0.1819195644711213,0 +Cc1ccc2c(-c3nnc(SCCC(C)N4CCc5cc6c(cc5CC4)C(=O)N(C(C)C)C6)n3C)cccc2n1,CHEMBL272086,1,5.599999383023619,0.1819195644711213,0 +Cc1ccc2c(-c3nnc(SCCC(C)N4CCc5cc6nc(C(F)(F)F)oc6c(C)c5CC4)n3C)cccc2n1,CHEMBL257525,1,5.700000503883016,0.1819195644711213,0 +Cc1ccc2c(-c3nnc(SCCCCN4CCc5cc6c(cc5CC4)C(=O)N(C(C)C)C6)n3C)cccc2n1,CHEMBL270852,1,5.599999383023619,0.1819195644711213,0 +Cc1ccc2c(-c3nnc(SCCCCN4CCc5cc6nc(C(F)(F)F)oc6c(C)c5CC4)n3C)cccc2n1,CHEMBL271097,1,5.599999383023619,0.1819195644711213,0 +Cc1ccc2c(-c3nnc(SCCCN4CCc5c(Cl)cc6oc(C)nc6c5CC4)n3C)cccc2n1,CHEMBL403815,1,5.800000874803202,0.1819195644711213,1 +Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6c(cc5CC4)C(=O)N(C)C6)n3C)cccc2n1,CHEMBL272480,1,5.4999996786570655,0.1819195644711213,0 +Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6c(cc5CC4)OCC(=O)N6)n3C)cccc2n1,CHEMBL271066,1,6.799998134593397,0.0956684631251178,1 +Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6nc(C(C)(C)C)oc6c(Br)c5CC4)n3C)cccc2n1,CHEMBL255566,1,6.0,0.0956684631251178,1 +Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6nc(C(C)(C)C)oc6c(C)c5CC4)n3C)cccc2n1,CHEMBL402087,1,5.800000874803202,0.1819195644711213,1 +Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6nc(C(F)(F)C(F)(F)F)oc6cc5CC4)n3C)cccc2n1,CHEMBL270227,1,5.599999383023619,0.1819195644711213,0 +Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6nc(C(F)(F)F)oc6cc5CC4)n3C)cccc2n1,CHEMBL402016,1,5.800000874803202,0.1819195644711213,1 +Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6nc(C)sc6cc5CC4)n3C)cccc2n1,CHEMBL271632,1,6.0,0.0956684631251178,1 +Cc1ccc2c(-c3nnc(SCCCN4CCc5ccc6nc(C(C)(F)F)oc6c5CC4)n3C)cccc2n1,CHEMBL256488,1,5.800000874803202,0.1819195644711213,1 +Cc1ccc2c(-c3nnc(SCCCN4CCc5nc6cc(C(F)(F)F)ccn6c5CC4)n3C)cccc2n1,CHEMBL411293,1,6.0999990348465305,0.0956684631251178,1 +Cc1ccc2c(-c3nnc(SCCN4CCc5cc6nc(C)oc6c(C)c5CC4)n3C)cccc2n1,CHEMBL257901,1,5.599999383023619,0.1819195644711213,0 +Cc1ccc2c(c1)CC(CCN(C)C)=C2Cc1cnccn1,CHEMBL1092600,1,7.924453038607469,0.4081691649627073,1 +Cc1cncc(CC2=C(CCN(C)C)Cc3ccccc32)n1,CHEMBL1088882,1,7.920818753952375,0.4081691649627073,1 +Cc1cnn(C2CCN(c3nc4ccccc4n3Cc3ccc(F)cc3)CC2)c1,CHEMBL556450,3,8.161150909262744,0.1639776038099834,1 +Cc1nc2cc3c(cc2o1)CCN(CCCSc1nnc(-c2ccc(F)c(F)c2)n1C)CC3,CHEMBL269995,1,5.40000018605658,0.1819195644711213,0 +Cc1nc2cc3c(cc2o1)CCN(CCCSc1nnc(-c2cccnc2)n1C)CC3,CHEMBL256653,1,5.40000018605658,0.1819195644711213,0 +Cc1nc2cc3c(cc2o1)CCN(CCCSc1nnc(-c2ocnc2C)n1C)CC3,CHEMBL255827,1,5.599999383023619,0.1819195644711213,0 +Cc1nc2n(c1C)Cc1ccccc1C=C2N1CCN(CC(C)(C)C(=O)O)CC1,CHEMBL1222693,1,7.400007822415903,0.4081691649627073,1 +Cc1nccnc1CC1=C(CCN(C)C)Cc2ccccc21,CHEMBL1088898,1,7.200659450546419,0.4081691649627073,1 +Cc1ncoc1-c1nnc(SCCCN2CCc3cc4c(cc3CC2)N(C)C(=O)CO4)n1C,CHEMBL257534,1,5.700000503883016,0.1819195644711213,0 +Cc1ncoc1-c1nnc(SCCCN2CCc3cc4ncoc4cc3CC2)n1C,CHEMBL255621,1,5.3000002024454185,0.1819195644711213,0 +Cc1ncoc1-c1nnc(SCCCN2CCc3nc4ccc(C(F)(F)F)cn4c3CC2)n1C,CHEMBL271511,1,5.4999996786570655,0.1819195644711213,0 +Clc1ccc2c(c1)C(N1CCNCC1)=Nc1ccccc1O2,CHEMBL1113,1,7.958607314841775,0.4081691649627073,1 +Clc1cccc2c1CN(CCCCc1nc3ccccc3s1)CC2,CHEMBL3899099,2,6.531566868713572,0.0015655109323189,1 +Cn1cc(C(=O)NC[C@@H](O)CN2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)c(C(F)(F)F)cc1=O,CHEMBL2207665,1,8.299988937677888,0.1639776038099834,1 +FC(F)(F)c1ccc(SC[C@@H](c2c[nH]cn2)C2CCNCC2)cc1,CHEMBL1243395,1,7.3187587626244115,0.4081691649627073,1 +FC(F)(F)c1ccc(SC[C@H](c2c[nH]cn2)C2CCNCC2)cc1,CHEMBL1243394,1,6.552841968657781,0.0956684631251178,1 +FC1CCN(CCC2=C(Cc3cnccn3)c3ccccc3C2)C1,CHEMBL1669417,1,7.978810700930063,0.4081691649627073,1 +Fc1ccc(Cn2c(C3CNCCS3)nc3ccccc32)cc1,CHEMBL1935445,2,7.710108201691595,0.6878318069804426,1 +Fc1ccc(Cn2c([C@H]3CNCCO3)nc3ccccc32)cc1,CHEMBL1935442,1,9.096910013008056,0.1140853274850961,1 +Fc1ccc(Cn2c([C@H]3CNCCS3)nc3ccccc32)cc1,CHEMBL1935446,1,8.886056647693161,0.1639776038099834,1 +N#C/N=C(/NCCCc1ccccc1)NC[C@H]1CC[C@H](c2c[nH]cn2)C1,CHEMBL3806098,1,5.0,0.1819195644711213,0 +N#C/N=C(/NCCSc1ccccc1)NC[C@@H]1CC[C@H](c2c[nH]cn2)C1,CHEMBL3806079,2,5.467958282018203,0.0477418786350116,0 +N#C/N=C(/NCCSc1ccccc1)NC[C@H]1CC[C@H](c2c[nH]cn2)C1,CHEMBL3805361,2,5.200924412497672,0.0151720082295931,0 +N#Cc1ccc(-c2ccc(OCCCN3CCC(O)CC3)cc2)cc1,CHEMBL102416,1,6.239999952707271,0.0956684631251178,1 +N#Cc1ccc(-c2ccc(OCCCN3CCNCC3)cc2)cc1,CHEMBL105594,1,5.049999969853415,0.1819195644711213,0 +N#Cc1ccc(-c2ccc(OCCCN3CC[C@@H](N)C3)cc2)cc1,CHEMBL105267,1,4.860000083248981,0.4719824216245228,0 +N#Cc1ccc(C(=O)N2CCN(c3ccc(OC4CCN(C5CCC5)CC4)cc3)C(=O)C2)cc1,CHEMBL239099,1,5.599999383023619,0.1819195644711213,0 +N#Cc1ccc(C(=O)N2CCN(c3ccc(OCCCN4CCCC4)cc3)C(=O)C2)cc1,CHEMBL240141,1,5.599999383023619,0.1819195644711213,0 +N#Cc1ccc(OC2CCN(C[C@H](O)CNC(=O)c3c[nH]c(=O)c4ccccc34)CC2)cc1,CHEMBL2207668,1,6.299997602857746,0.0956684631251178,1 +N#Cc1ccc(OC[C@@H](O)CNC2CCN(Cc3ccc(Cl)c(Cl)c3)CC2)cc1,CHEMBL2208417,1,6.299997602857746,0.0956684631251178,1 +NC(=O)N(O)CCC#Cc1ccc(OCCCCN2CCN([C@H](c3ccccc3)c3ccc(Cl)cc3)CC2)cc1,CHEMBL186125,1,7.522878745280337,0.4081691649627073,1 +NC(=O)N(O)CCC#Cc1ccc(OCCN2CCN([C@H](c3ccccc3)c3ccc(Cl)cc3)CC2)cc1,CHEMBL425358,1,6.515700160653214,0.0956684631251178,1 +NCCC1c2ccccc2Cc2ccccc21,CHEMBL160893,1,6.863279432843593,0.0956684631251178,1 +NCCOc1ccccc1Cc1ccccc1,CHEMBL3916710,1,5.800000874803202,0.1819195644711213,1 +N[C@H](Cc1ccc(F)cc1)C(=O)N1CCN(CCCOc2ccc(C(=O)C3CC3)cc2)CC1,CHEMBL417215,1,5.030000139977383,0.1819195644711213,0 +O=C(NC[C@@H](O)CN1CCC(Oc2ccc(Cl)c(Cl)c2)CC1)c1c[nH]c(=O)c2c(F)cccc12,CHEMBL2207656,1,8.599980364934842,0.1639776038099834,1 +O=C(NC[C@@H](O)CN1CCC(Oc2ccc(Cl)c(Cl)c2)CC1)c1c[nH]c(=O)c2cc(S(=O)(=O)N3CCC3)ccc12,CHEMBL2207654,1,8.599980364934842,0.1639776038099834,1 +O=C(NC[C@@H](O)CN1CCC(Oc2ccc(Cl)c(Cl)c2)CC1)c1c[nH]c(=O)c2cc(S(=O)(=O)NCCO)ccc12,CHEMBL2207281,1,7.299988937677887,0.4081691649627073,1 +O=C(NS(=O)(=O)c1cccc(Cl)c1)N1CCC(N2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)CC1,CHEMBL2171043,1,8.100015437450608,0.1639776038099834,1 +O=C(O)C1(F)CCN(C2CC[C@]3(Cc4ccccc4Cc4ccccc43)C2)CC1,CHEMBL1277678,1,7.400007822415903,0.4081691649627073,1 +O=C(O)C1=CCCN(C2CCC3(Cc4ccccc4Oc4ccccc43)C2)C1,CHEMBL1277125,1,7.0,0.4081691649627073,1 +O=C(O)C1CN(C2CC[C@]3(Cc4ccccc4Cc4ccccc43)C2)C1,CHEMBL1276948,1,8.199970640755867,0.1639776038099834,1 +O=C(O)CC1CN(C2CCC3(Cc4ccccc4Cc4ccccc43)C2)C1,CHEMBL1277034,1,6.499996931948306,0.0956684631251178,1 +O=C(O)CCN1CCN(C2=Cc3ccccc3Cn3ccnc32)CC1,CHEMBL1222553,1,7.299988937677887,0.4081691649627073,1 +O=C(O)CCNC1CC[C@@]2(Cc3ccccc3Cc3ccccc32)C1,CHEMBL1278115,1,7.599980364934843,0.4081691649627073,1 +O=C(O)CCc1ccc2cccc(N3CCN(CCc4ccc(OCCCN5CCCCCC5)cc4)CC3)c2n1,CHEMBL3935303,1,7.899974269892138,0.4081691649627073,1 +O=C(O)[C@@H]1CCCN(C2CC[C@]3(Cc4ccccc4Cc4ccccc43)C2)C1,CHEMBL1277584,1,7.700057099977232,0.4081691649627073,1 +O=C(O)[C@]12C[C@H]1CN(C1CC[C@]3(Cc4ccccc4Cc4ccccc43)C1)C2,CHEMBL1276947,1,7.500038134403808,0.4081691649627073,1 +O=C(O)c1ccc(CCCCN2CCC(C(O)(c3ccccc3)c3ccccc3)CC2)cc1,CHEMBL570033,1,6.692503962086787,0.0956684631251178,1 +O=C(O)c1ccc(N2CCC(CN3CCC(Oc4ccc(Cl)c(Cl)c4)CC3)CC2)cc1,CHEMBL2158824,1,7.199970640755867,0.4081691649627073,1 +O=C(O)c1ccc2cccnc2c1N1CCN(CCc2ccc(OCCCN3CCCCCC3)cc2)CC1,CHEMBL3925977,1,5.599999383023619,0.1819195644711213,0 +O=C(O)c1cccc(N2CCC(CN3CCC(Oc4ccc(Cl)c(Cl)c4)CC3)CC2)c1,CHEMBL2158823,1,8.299988937677888,0.1639776038099834,1 +O=C(O)c1ccccc1CN1CCC(CN2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)CC1,CHEMBL2158831,1,7.199970640755867,0.4081691649627073,1 +O=C(O)c1ccccc1N1CCC(CN2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)CC1,CHEMBL2158822,1,8.199970640755867,0.1639776038099834,1 +O=C(O)c1cnc2c(N3CCN(CCc4ccc(OCCCN5CCCCCC5)cc4)CC3)cccc2c1,CHEMBL3967709,1,6.399996913372259,0.0956684631251178,1 +O=C(c1cc(F)cc(F)c1)N1CCN(c2ccc(OCCCN3CCCCCC3)cc2)C(=O)C1,CHEMBL238871,1,5.599999383023619,0.1819195644711213,0 +O=C(c1ccc(Cl)cc1)N1CCN(c2ccc(OC3CCN(C4CCC4)CC3)cc2)C(=O)C1,CHEMBL540634,1,5.700000503883016,0.1819195644711213,0 +O=C(c1ccc(F)cc1)N1CCN(c2ccc(OC3CCN(C4CCCC4)CC3)cc2)C(=O)C1,CHEMBL239963,1,5.599999383023619,0.1819195644711213,0 +O=C(c1ccc(F)cc1)N1CCN(c2ccc(OCCCN3CCCC3)cc2)C(=O)C1,CHEMBL429458,1,5.599999383023619,0.1819195644711213,0 +O=C(c1ccc(F)cc1F)N1CCN(c2ccc(OC3CCN(C4CCCC4)CC3)cc2)C(=O)C1,CHEMBL392354,1,5.599999383023619,0.1819195644711213,0 +O=C(c1ccc(OCCCN2CC[C@H](NS(=O)(=O)c3ccc(Br)cc3)C2)cc1)C1CC1,CHEMBL321709,1,5.823908740944319,0.1819195644711213,1 +O=C(c1ccc(OCCCN2CC[C@H](NS(=O)(=O)c3cccc(Cl)c3)C2)cc1)C1CC1,CHEMBL321320,1,5.443697499232711,0.1819195644711213,0 +O=C1NCN(c2ccccc2)C12CCN(CCCCc1nc3ccccc3s1)CC2,CHEMBL3819567,2,7.613765798473357,1.3161963349188852,1 +OC1(c2ccc(Cl)cc2)CC2CCC(C1)N2CCCCc1ccc(F)cc1,CHEMBL3321788,1,5.764724123312948,0.1819195644711213,0 +OC12CC3CC(CC(C3)N1Cc1cccc(F)c1)C2,CHEMBL1824778,1,5.0,0.1819195644711213,0 +OCCOCCN1CCN(C(c2ccccc2)c2ccc(Cl)cc2)CC1,CHEMBL896,1,8.698970004336019,0.1639776038099834,1 +c1ccc(OCCn2c(C3CCCNC3)nc3ccccc32)cc1,CHEMBL1935438,1,9.0,0.1140853274850961,1 +c1ccc2c(c1)CC(CCN1CCC1)=C2Cc1cnccn1,CHEMBL1669412,1,8.366531544420411,0.1639776038099834,1 +CC(c1nccs1)c1c(CCN(C)C)sc2ccccc12,CHEMBL1092767,1,7.455931955649724,0.4081691649627073,1 +CC1(C)CCCN(CCCOc2ccc(C3CCN(C(=O)c4ccc(CCC(=O)O)c5ccccc45)CC3)cc2)C1,CHEMBL2151156,1,7.899974269892138,0.4081691649627073,1 +CCN1CCN(CCCNC(=O)c2ccc(F)cc2Cl)CC1,CHEMBL4166021,1,5.0,0.1819195644711213,0 +CCOc1cc(CN2CCC(Nc3nc4cc(NS(=O)(=O)c5ccccc5)ccc4o3)CC2)ccc1OC,CHEMBL1077908,1,6.701146923590295,0.0956684631251178,1 +CN(C)CCc1sc2ccccc2c1Cc1ccc(F)cc1,CHEMBL540982,1,7.958607314841775,0.4081691649627073,1 +CN1CCC(/C(=N/O)c2nc3cc(Cl)ccc3[nH]2)CC1,CHEMBL1632414,1,6.0,0.0956684631251178,1 +CN1CCN(c2nc(N)nc3c2CCc2ccccc2-3)CC1,CHEMBL494093,1,5.039999923502187,0.1819195644711213,0 +COc1ccc(N2CCN(CCCNC(=O)Cn3c(=O)c4cccn4c4c(C)ccnc43)CC2)cc1,CHEMBL1729417,1,6.0,0.0956684631251178,1 +C[C@@H](c1cscn1)c1c(CCN(C)C)sc2ccccc12,CHEMBL1091782,1,8.337242168318426,0.1639776038099834,1 +C[C@H](C1=C(CCN(C)Cc2ccco2)Cc2ccccc21)c1cnccn1,CHEMBL1669418,1,8.09151498112135,0.1639776038099834,1 +Cc1cccc(N2CCN(CCCNC(=O)c3cn[nH]c3C)CC2)c1,CHEMBL3461530,1,7.356547323513813,0.4081691649627073,1 +Nc1nc2c(c(N3CCNCC3)n1)CCC1=C2[C@@H]2CCCC[C@@H]2O1,CHEMBL519240,1,5.450000476425332,0.1819195644711213,0 +O=C(O)c1cccnc1N1CCC(CN2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)CC1,CHEMBL2158834,1,8.0,0.1639776038099834,1 +O=C(c1c[nH]c(=O)c2ccccc12)N1CCC(N2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)CC1,CHEMBL2171020,1,7.599980364934843,0.4081691649627073,1 +O=c1c2ccccc2c(Cc2ccc(Cl)cc2)nn1C1CCCN(CCCCc2ccc(OCCCN3CCCCCC3)cc2)CC1,CHEMBL1767161,1,7.700057099977232,0.4081691649627073,1 +O=c1c2ccccc2c(Cc2ccc(Cl)cc2)nn1C[C@H]1CCCN1CCCCCc1ccc(OCCCN2CCCCCC2)cc1,CHEMBL1767167,1,7.899974269892138,0.4081691649627073,1 +OC1(c2ccc(Cl)cc2)CCN(CCCSc2ccc(F)cc2)CC1,CHEMBL1940403,1,6.939302159646387,0.0956684631251178,1 +c1ccc(CCCCNCC2c3ccccc3Cc3ccccc32)cc1,CHEMBL597528,1,6.015922966097169,0.0956684631251178,1 +c1ccc(CCCNCC2c3ccccc3Cc3ccccc32)cc1,CHEMBL609328,1,6.139661993429006,0.0956684631251178,1 +c1ccc(Cc2ccccc2OCCN2CCCCCC2)cc1,CHEMBL3943575,1,7.199970640755867,0.4081691649627073,1 +C=CCn1c(=N)n(CC(=O)c2ccccc2)c2ccccc21,CHEMBL1617548,1,4.970000123715015,0.4719824216245228,0 +CC(=O)c1ccc(OCCCN2CC[C@H](NC(=O)c3ccc(C#N)cc3)C2)cc1,CHEMBL430502,1,4.886056647693163,0.4719824216245228,0 +CC(=O)c1ccc(OCCCN2CC[C@H](NS(=O)(=O)c3ccc(C#N)cc3)C2)cc1,CHEMBL102840,1,4.853871964321762,0.4719824216245228,0 +CC(C)(C)c1ccc(SCC(c2ccccn2)c2c[nH]cn2)cc1,CHEMBL1243335,1,5.0,0.1819195644711213,0 +CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)c3cccnc3)CC2)cc1,CHEMBL418658,1,6.139997578098903,0.0956684631251178,1 +CCCc1ccc2c(c1)sc(=O)n2CCN1CCCCCC1,CHEMBL272899,1,6.507239610973163,0.0956684631251178,1 +CCOC(=O)N1CCN(CCCOc2ccc(-c3cc[nH]c3)cc2)CC1,CHEMBL101692,1,6.299997602857746,0.0956684631251178,1 +CN(C)CCCC1(c2ccc(F)cc2)OCc2cc(C#N)ccc21,CHEMBL549,1,6.430626090384954,0.0956684631251178,1 +CN(CCCCc1c[nH]cn1)CCC(c1ccc(Cl)cc1)c1ccccn1,CHEMBL292195,2,8.154901959985743,0.1639776038099834,1 +CN1CCC[C@@H]1Cn1nc(CC2CCCCC2)c2ccccc2c1=O,CHEMBL1767151,1,7.100015437450608,0.4081691649627073,1 +CN1CCc2c(c3cccc4c3n2CCc2ccccc2-4)C1,CHEMBL3104093,1,5.0,0.1819195644711213,0 +COc1ccc(CN(CCN[C@H]2CCN(C(=O)c3cc4ccccc4[nH]3)C2)c2ccccn2)cc1,CHEMBL1910384,1,6.3399982798971175,0.0956684631251178,1 +C[C@H](C1=C(CCN(C)Cc2ccncc2)Cc2ccccc21)c1cnccn1,CHEMBL1669425,1,8.309803919971486,0.1639776038099834,1 +Cc1noc2cc3c(cc12)CCN(CCCSc1nnc(-c2ccc(C(F)(F)F)cc2)n1C)CC3,CHEMBL401576,1,6.19999817218203,0.0956684631251178,1 +Fc1ccc(CCCCN2CCN(c3ccccn3)CC2)cc1,CHEMBL1940418,1,6.777283528852418,0.0956684631251178,1 +Fc1ccc(SCCCN2CCN(c3ccccn3)CC2)cc1,CHEMBL1940419,1,6.673664139071248,0.0956684631251178,1 +N#Cc1ccc(-c2ccc(OCCCN3CCCNCC3)cc2)cc1,CHEMBL105967,1,5.4100001618584095,0.1819195644711213,0 +O=C(OCc1ccccc1)N(O)CCC#Cc1ccc(OCCCCN2CCN(C(c3ccc(F)cc3)c3ccc(F)cc3)CC2)cc1,CHEMBL360666,1,7.749579997691106,0.4081691649627073,1 +O=C(c1ccc(C(=O)N2CCN(c3ccc(OCCCN4CCCCC4)cc3)C(=O)C2)cc1)N1CCC1,CHEMBL240395,1,5.599999383023619,0.1819195644711213,0 +c1ccc(COc2ccc3c(c2)CCN(CC2CC2)CC3)cc1,CHEMBL3094114,1,6.0,0.0956684631251178,1 diff --git a/atomsci/ddm/test/integrative/import_transformer/data/H1_std_short_train_valid_test_scaffold_test-split.csv b/atomsci/ddm/test/integrative/import_transformer/data/H1_std_short_train_valid_test_scaffold_test-split.csv new file mode 100644 index 00000000..74268d91 --- /dev/null +++ b/atomsci/ddm/test/integrative/import_transformer/data/H1_std_short_train_valid_test_scaffold_test-split.csv @@ -0,0 +1,241 @@ +cmpd_id,fold,subset +CHEMBL403804,0,train +CHEMBL3926412,0,train +CHEMBL3805361,0,train +CHEMBL346230,0,train +CHEMBL440864,0,train +CHEMBL352375,0,train +CHEMBL64408,0,train +CHEMBL1767135,0,train +CHEMBL1669417,0,train +CHEMBL2158780,0,train +CHEMBL272086,0,train +CHEMBL449040,0,train +CHEMBL312082,0,train +CHEMBL1935446,0,train +CHEMBL2158793,0,train +CHEMBL3754166,0,train +CHEMBL2146808,0,train +CHEMBL1935438,0,train +CHEMBL64608,0,train +CHEMBL2158822,0,train +CHEMBL404404,0,train +CHEMBL1935444,0,train +CHEMBL1088898,0,train +CHEMBL550818,0,train +CHEMBL2171050,0,train +CHEMBL105594,0,train +CHEMBL291882,0,train +CHEMBL1276947,0,train +CHEMBL1632412,0,train +CHEMBL1628227,0,train +CHEMBL105483,0,train +CHEMBL160893,0,train +CHEMBL105267,0,train +CHEMBL270227,0,train +CHEMBL104994,0,train +CHEMBL2158824,0,train +CHEMBL3916710,0,train +CHEMBL2207659,0,train +CHEMBL1277125,0,train +CHEMBL1113,0,train +CHEMBL3967709,0,train +CHEMBL2112461,0,train +CHEMBL2207665,0,train +CHEMBL2158784,0,train +CHEMBL2031884,0,train +CHEMBL2158785,0,train +CHEMBL2207654,0,train +CHEMBL60383,0,train +CHEMBL2146809,0,train +CHEMBL398996,0,train +CHEMBL255566,0,train +CHEMBL240393,0,train +CHEMBL60143,0,train +CHEMBL608689,0,train +CHEMBL402016,0,train +CHEMBL271632,0,train +CHEMBL256488,0,train +CHEMBL1910382,0,train +CHEMBL392713,0,train +CHEMBL1669412,0,train +CHEMBL417215,0,train +CHEMBL1092600,0,train +CHEMBL3935303,0,train +CHEMBL1669405,0,train +CHEMBL1088882,0,train +CHEMBL3753318,0,train +CHEMBL595180,0,train +CHEMBL1935573,0,train +CHEMBL107293,0,train +CHEMBL257901,0,train +CHEMBL303313,0,train +CHEMBL257525,0,train +CHEMBL570033,0,train +CHEMBL431172,0,train +CHEMBL305313,0,train +CHEMBL1091792,0,train +CHEMBL1243395,0,train +CHEMBL1935442,0,train +CHEMBL293033,0,train +CHEMBL629,0,train +CHEMBL3819567,0,train +CHEMBL312958,0,train +CHEMBL1222553,0,train +CHEMBL1091793,0,train +CHEMBL62726,0,train +CHEMBL1091776,0,train +CHEMBL425358,0,train +CHEMBL295001,0,train +CHEMBL401777,0,train +CHEMBL1088900,0,train +CHEMBL62592,0,train +CHEMBL255621,0,train +CHEMBL272302,0,train +CHEMBL63631,0,train +CHEMBL1278115,0,train +CHEMBL3925977,0,train +CHEMBL255778,0,train +CHEMBL195706,0,train +CHEMBL3417586,0,train +CHEMBL269995,0,train +CHEMBL239300,0,train +CHEMBL256482,0,train +CHEMBL1910381,0,train +CHEMBL435949,0,train +CHEMBL256653,0,train +CHEMBL2171043,0,train +CHEMBL2207656,0,train +CHEMBL2208428,0,train +CHEMBL2208417,0,train +CHEMBL1277678,0,train +CHEMBL392354,0,train +CHEMBL3806098,0,train +CHEMBL239963,0,train +CHEMBL403815,0,train +CHEMBL105762,0,train +CHEMBL321320,0,train +CHEMBL270177,0,train +CHEMBL2205811,0,train +CHEMBL257524,0,train +CHEMBL556450,0,train +CHEMBL22108,0,train +CHEMBL1222552,0,train +CHEMBL3806079,0,train +CHEMBL1092597,0,train +CHEMBL402087,0,train +CHEMBL1093623,0,train +CHEMBL256694,0,train +CHEMBL1090432,0,train +CHEMBL1935441,0,train +CHEMBL255827,0,train +CHEMBL411293,0,train +CHEMBL239099,0,train +CHEMBL318235,0,train +CHEMBL1277584,0,train +CHEMBL213912,0,train +CHEMBL1243394,0,train +CHEMBL321709,0,train +CHEMBL435301,0,train +CHEMBL1172775,0,train +CHEMBL540634,0,train +CHEMBL1222693,0,train +CHEMBL3321788,0,train +CHEMBL63125,0,train +CHEMBL2158831,0,train +CHEMBL1276948,0,train +CHEMBL28833,0,train +CHEMBL62312,0,train +CHEMBL271511,0,train +CHEMBL257534,0,train +CHEMBL138989,0,train +CHEMBL446885,0,train +CHEMBL270852,0,train +CHEMBL3806255,0,train +CHEMBL429458,0,train +CHEMBL535631,0,train +CHEMBL238871,0,train +CHEMBL240141,0,train +CHEMBL1935445,0,train +CHEMBL62741,0,train +CHEMBL60837,0,train +CHEMBL657,0,train +CHEMBL2146810,0,train +CHEMBL64775,0,train +CHEMBL1824778,0,train +CHEMBL1669411,0,train +CHEMBL2207281,0,train +CHEMBL549599,0,train +CHEMBL272480,0,train +CHEMBL2207660,0,train +CHEMBL196169,0,train +CHEMBL430368,0,train +CHEMBL1082036,0,train +CHEMBL393436,0,train +CHEMBL643,0,train +CHEMBL294502,0,train +CHEMBL1277034,0,train +CHEMBL256442,0,train +CHEMBL1222763,0,train +CHEMBL896,0,train +CHEMBL271097,0,train +CHEMBL2112371,0,train +CHEMBL4167807,0,train +CHEMBL3899099,0,train +CHEMBL238456,0,train +CHEMBL1669409,0,train +CHEMBL3959919,0,train +CHEMBL186125,0,train +CHEMBL2158790,0,train +CHEMBL320178,0,train +CHEMBL271066,0,train +CHEMBL2207663,0,train +CHEMBL102416,0,train +CHEMBL64021,0,train +CHEMBL2158823,0,train +CHEMBL2146806,0,train +CHEMBL1093294,0,train +CHEMBL2207668,0,train +CHEMBL2031876,0,train +CHEMBL364270,0,train +CHEMBL515472,0,train +CHEMBL1091782,0,valid +CHEMBL1077908,0,valid +CHEMBL1729417,0,valid +CHEMBL2158834,0,valid +CHEMBL3461530,0,valid +CHEMBL1669418,0,valid +CHEMBL1632414,0,valid +CHEMBL597528,0,valid +CHEMBL2171020,0,valid +CHEMBL494093,0,valid +CHEMBL609328,0,valid +CHEMBL4166021,0,valid +CHEMBL1767167,0,valid +CHEMBL519240,0,valid +CHEMBL1767161,0,valid +CHEMBL3943575,0,valid +CHEMBL2151156,0,valid +CHEMBL540982,0,valid +CHEMBL1940403,0,valid +CHEMBL1092767,0,valid +CHEMBL1767151,0,test +CHEMBL1617548,0,test +CHEMBL1940419,0,test +CHEMBL105967,0,test +CHEMBL272899,0,test +CHEMBL1669425,0,test +CHEMBL430502,0,test +CHEMBL240395,0,test +CHEMBL549,0,test +CHEMBL3094114,0,test +CHEMBL292195,0,test +CHEMBL102840,0,test +CHEMBL101692,0,test +CHEMBL418658,0,test +CHEMBL1910384,0,test +CHEMBL401576,0,test +CHEMBL3104093,0,test +CHEMBL1243335,0,test +CHEMBL360666,0,test +CHEMBL1940418,0,test diff --git a/atomsci/ddm/test/integrative/import_transformer/data/aurka_chembl_base_smiles_union_short.csv b/atomsci/ddm/test/integrative/import_transformer/data/aurka_chembl_base_smiles_union_short.csv new file mode 100644 index 00000000..b5424cb7 --- /dev/null +++ b/atomsci/ddm/test/integrative/import_transformer/data/aurka_chembl_base_smiles_union_short.csv @@ -0,0 +1,201 @@ +Unnamed: 0,base_rdkit_smiles,compound_id,pIC50,relation,active +0,CC(=O)c1ccccc1Nc1ncc2c(n1)-c1c(c(C(N)=O)nn1C)CC2,CHEMBL1099104,5.0,<,0 +1,N#Cc1ccccc1-c1ccc(CSc2nnc(-c3ccc4c(c3)OCO4)o2)cc1,CHEMBL2064533,4.0,<,0 +2,CN(C)c1ccc(-c2nc3c(Cl)ccnc3[nH]2)cc1,CHEMBL237369,5.619788758288393,,1 +3,CN1CCN(C(=O)c2nn(C)c3c2CCc2cnc(NC4CCCC4)nc2-3)CC1,CHEMBL604092,5.0,<,0 +4,COC1CCN(C(=O)c2ccc(Nc3cc4c(cn3)cc(-c3cnn(C)c3)n4C(=O)OC(C)(C)C)c(Cl)c2)CC1,CHEMBL3109937,4.187086643357143,,1 +5,Nc1nc(-c2ccc3c(N)n[nH]c3c2)cc(N2CCC[C@H](C(=O)NC3CCCCC3)C2)n1,CHEMBL1765734,5.0,<,0 +6,CCn1cc(-c2ccnc3[nH]c(C(=O)NCCN4CCOCC4)cc23)c(-c2ccc(NC(=O)Nc3ccccc3)cc2)n1,CHEMBL1094704,6.705533773838407,,1 +7,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(C(NC(C)(C)C)c3ccccn3)ns2)n1,CHEMBL4225923,8.397940008672037,>,1 +8,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(CN3CCOCC34CCC4)ns2)n1,CHEMBL1269880,8.397940008672037,>,1 +9,Cc1nsc(Nc2nccn3c(-c4cnn(C)c4)cnc23)n1,CHEMBL1801104,5.0,<,0 +10,COc1ccc(-c2ccc(CSc3nnc(-c4ccc5c(c4)OCO5)o3)cc2)cc1,CHEMBL2391119,4.3979400086720375,,1 +11,CN1CCN(c2ccc(C(=O)Nc3n[nH]c4c3CN(C(=O)c3ccco3)C4)cc2)CC1,CHEMBL427170,6.795880017344077,,1 +12,O=C(O)c1ccc(Nc2ccnc(Nc3ccc(C(=O)O)cc3)n2)cc1,CHEMBL2170598,6.591760034688151,,1 +13,CN(C)C[C@@H](Nc1ncnc2c(C(N)=O)cccc12)c1ccccc1,CHEMBL3675442,6.886056647693162,,1 +14,Cc1cc(CN2CCN(c3c(Br)cnc4[nH]c(N5CCNCC5)nc34)CC2)no1,CHEMBL1084636,8.0,,1 +15,CN(C)CC(Nc1ncnc2c(C(N)=O)cc(OCc3ccc(F)cc3)cc12)c1cccc(F)c1,CHEMBL3680514,6.522878745280337,,1 +16,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(Cc3cccc(CN4CCCCC4)n3)ns2)n1,CHEMBL4227557,8.397940008672037,>,1 +17,CN1CCN(c2ccc(C(=O)Nc3cc(-c4cccc(NS(=O)(=O)c5ccccc5)c4)n[nH]3)cc2)CC1,CHEMBL1807392,6.468521082957745,,1 +18,CNC(=O)c1nn(C)c2c1CCc1cnc(Nc3ccccc3)nc1-2,CHEMBL562104,6.505845405981558,,1 +19,COc1ccc(C2=NN(C(=O)c3ccc(Cl)cc3O)C(c3ccc(Cl)cc3)C2)cc1,CHEMBL2159053,4.6020599913279625,<,0 +20,Cc1cc(Nc2nn(-c3ccc(C(C)(C)C)cc3)c(=O)c3ccccc23)n[nH]1,CHEMBL1651472,6.619788758288393,,1 +21,NC(=O)c1ccc(Nc2nc(Nc3ccc(O)cc3)ncc2F)cc1,CHEMBL491975,6.795880017344077,,1 +22,CC1(C)CN(c2ccc(-c3oc(-c4ccc(Cl)c5[nH]ccc45)nc3C(N)=O)cc2)CCN1,CHEMBL3959866,7.4680104485874494,,1 +23,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(CN3CCC(F)CC3)ns2)n1,CHEMBL1650537,8.397940008672037,>,1 +24,Cn1cc(-c2nc3c(N4CCN(Cc5cccnc5)CC4)c(Br)cnc3[nH]2)cn1,CHEMBL3898132,7.494850021680094,,1 +25,COc1ccc(-n2nc(Nc3cc(C)[nH]n3)c3ccccc3c2=O)cc1,CHEMBL1651469,7.5376020021010435,,1 +26,CN1CCN(Cc2ccc(-c3cnc4[nH]cc(-c5ccc6[nH]ccc6c5)c4c3)cc2)CC1,CHEMBL2436978,6.966576244513051,,1 +27,COc1cc(Nc2nccc(Nc3cnc4ccccc4c3)n2)cc(OC)c1OC,CHEMBL1760035,5.301029995663981,<,0 +28,COc1ccccc1Nc1cc2[nH]c(-c3cnn(C)c3C)cc2cn1,CHEMBL3109961,4.0,<,0 +29,COc1cc2c(Nc3ccc(-c4nc5ccccc5s4)c(O)c3)ncnc2cc1OCCCN1CCN(C)CC1,CHEMBL606466,7.040958607678906,,1 +30,N#CCc1ccc(Nc2cccc(CNc3ncnc4c(C(N)=O)cccc34)c2)nc1,CHEMBL3680577,9.0,,1 +31,Cc1cc(COC(=O)NCc2ccc(-c3cc(NC(=O)c4ccc(OCCN5CCCC5)cc4)[nH]n3)cc2)no1,CHEMBL2063332,6.0,<,0 +32,Cc1cc(CN2CCN(c3c(Br)cnc4[nH]c(N5CCN(C)CC5)nc34)CC2)no1,CHEMBL1086579,7.823908740944319,,1 +33,Nc1nc(-c2ccc3c(N)n[nH]c3c2)cc(N2CCC[C@@H](C(=O)Nc3ccccc3)C2)n1,CHEMBL1765733,5.100000128334196,,1 +34,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(CN3C[C@H](C)O[C@H](C)C3)ns2)n1,CHEMBL1269881,8.397940008672037,>,1 +35,CC(=O)Nc1cc(-c2nnc(SCc3cccc(C#N)c3)o2)ccn1,CHEMBL2391101,4.0,<,0 +36,FC(F)(F)c1ccccc1Nc1ccnc(Nc2ccccc2)n1,CHEMBL2170428,5.7512912643990814,,1 +37,CNCC(Nc1ncnc2c(C(N)=O)cc(OCCN(C)C)cc12)c1cccc(F)c1,CHEMBL3680400,6.0,,1 +38,COc1ccc(-c2nn(-c3ccccc3)cc2C(=O)Nc2ccc(Br)cc2)cc1,CHEMBL2030981,4.907630300370879,,1 +39,COc1ccc(C(CN)Nc2ncnc3c(C(N)=O)cccc23)cc1,CHEMBL3670495,5.698970004336019,,1 +40,COc1ccccc1CN1Cc2c([nH]c3cc(-c4ccco4)nn3c2=O)C1=O,CHEMBL402349,5.2518119729937975,,1 +41,NC(=O)c1cccc2c(NCc3cccc(NC(=O)Nc4cccc(C(F)(F)F)c4)c3)ncnc12,CHEMBL3670436,5.107905397309518,,1 +42,Cc1cc(NC(=O)Nc2ccc(-c3cnc(NC(=O)c4ccc(OCCN5CCOCC5)cc4)s3)cc2)no1,CHEMBL3593296,7.602059991327962,,1 +43,Cc1cc(CN2CCN(c3c(Cl)cnc4[nH]c(-c5nccn5C)nc34)CC2)no1,CHEMBL2207507,6.248720896016657,,1 +44,CC(C)(C)CNC(=O)CC1CNC(=O)c2cc(-c3ccsc3)cn21,CHEMBL3298400,5.0,<,0 +45,CS(=O)(=O)c1ccc(Nc2nccc(Nc3ccccc3Cl)n2)cc1,CHEMBL2170405,6.239369831963633,,1 +46,COc1cc2ncnc(N3CCN(CCc4ccccc4)CC3)c2cc1OC,CHEMBL236277,4.1191864077192095,,1 +47,O=C(Nc1ccc(Nc2ccnc3[nH]c(=O)c4ccccc4c23)nc1)c1ccccc1,CHEMBL2380847,6.2111248842245805,,1 +48,c1ccc2[nH]c(Nc3ncc(CCNc4ncnc5ccsc45)s3)nc2c1,CHEMBL1078827,5.853871964321763,,1 +49,CC(=O)Nc1c[nH]nc1-c1nc2ccccc2[nH]1,CHEMBL504155,7.154901959985742,,1 +50,COc1ccc(-c2nc3cccnc3[nH]2)cc1,CHEMBL235451,5.180456064458131,,1 +51,NC(=O)c1cccc2c(NCc3cccc(OCCN(CCO)CCO)c3)ncnc12,CHEMBL3670491,7.236572006437062,,1 +52,O=c1[nH]c2sc(Cl)cc2c(NC2CCCNC2)c1-c1nc2ccccc2[nH]1,CHEMBL3330148,5.978186592759715,,1 +53,Cc1cn2c(-c3cnn(CC(=O)Nc4ccc(F)cc4)c3)cnc2c(Nc2cc(CN3CCCCC3)ns2)n1,CHEMBL2022372,7.275724130399211,,1 +54,CCOC(=O)N1CCN(Cc2cc(Nc3nc(C)cn4c(-c5cn[nH]c5)cnc34)sn2)CC1,CHEMBL1271103,8.397940008672037,>,1 +55,CN1CCN(c2ccc(C(=O)Nc3cc(-c4ccc(CNC(=O)Oc5ccccc5)cc4)n[nH]3)cc2)CC1,CHEMBL2063321,6.0,<,0 +56,CN1CCN(c2ccc(Nc3ncc4c(n3)-c3c(c(C(N)=O)nn3C)C(C)(C)C4)cc2)CC1,CHEMBL563641,6.235077015350112,,1 +57,Cn1nc(C(N)=O)c2c1-c1nc(Nc3ccccc3Oc3ccccc3)ncc1CC2,CHEMBL1096095,5.0,<,0 +58,COC[C@H]1COc2ccc(-c3nnc(SCc4ccc(-c5ccccc5C#N)cc4)o3)cc2O1,CHEMBL2064539,4.0,<,0 +59,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4ccc(F)cc4F)c3)ncnc12,CHEMBL3675441,9.795880017344077,,1 +60,COc1cc2ncnc(Nc3ccc(NC(=O)c4ccccc4)cc3)c2cc1OC,CHEMBL382590,6.45712287789515,,1 +61,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4ccccc4OCCO)c3)ncnc12,CHEMBL3685264,9.040958607678906,,1 +62,CN(C)CC(Nc1ncnc2c(C(N)=O)cccc12)c1cccc(Br)c1,CHEMBL3675414,6.318758762624412,,1 +63,COc1cc(C(N)=O)c2ncnc(N[C@H](CN(C)C)c3cccc(F)c3)c2c1,CHEMBL3675434,6.958607314841776,,1 +64,CS(=O)(=O)N(CCO)c1ccc(Nc2ncc3cnn(C4CCCCCC4)c3n2)cn1,CHEMBL1825100,6.958607314841776,,1 +65,Nc1cccc(-c2n[nH]c3ccccc23)c1,CHEMBL3970521,4.867740310468956,,1 +66,CC(=O)N1CC[C@@H](Nc2cncc(C(=O)c3cn(C(C)C)c4ncnc(N)c34)n2)[C@H]1c1ccc(F)cc1,CHEMBL1940252,6.337242168318426,,1 +67,COc1cccc(NC(=O)Nc2ncc(CCNc3ncnc4ccsc34)s2)c1,CHEMBL470119,7.301029995663981,,1 +68,Cc1cc(CN2CCN(c3c(Cl)cnc4[nH]c(-c5ccc(N6CCN(C)CC6)cc5F)nc34)CC2)no1,CHEMBL2203771,7.060480747381384,,1 +69,CCCCNC(=O)N1Cc2n[nH]c(NC(=O)Cc3ccccc3F)c2C1,CHEMBL204294,5.0,<,0 +70,COc1ccc2[nH]c(-c3cccc4c3C(=O)NC4)nc2c1,CHEMBL507927,6.688246138944246,,1 +71,NC(=O)c1cccc2c(NCc3ccccc3Cl)ncnc12,CHEMBL3675350,6.130768280269022,,1 +72,O=C(O)c1ccc(Nc2nc(Cl)c(Cl)c(Nc3ccccc3C(=O)O)n2)cc1,CHEMBL2170423,5.826813731587727,,1 +73,CC(CO)NC(=N)c1c(O)nsc1Nc1ccc(Nc2ccccc2)cc1,CHEMBL253116,6.576754126063192,,1 +74,c1cc(N2CCOCC2)ccc1Nc1ncc2ccn(C3CCCCC3)c2n1,CHEMBL385744,7.309803919971486,,1 +75,Cn1cc(-c2cc3cnc(Nc4ccc(C(=O)N5CCS(=O)(=O)CC5)cc4Cl)cc3n2C(=O)OC(C)(C)C)cn1,CHEMBL3109939,4.275724130399212,,1 +76,O=C(O)/C=C\C(=O)Nc1cccc(-c2n[nH]c3ccc(NC(=O)Nc4ccccc4)cc23)c1,CHEMBL3901797,6.585026652029183,,1 +77,Cc1cccc(Cc2cc(Nc3nc(C)cn4c(-c5cn[nH]c5)cnc34)sn2)n1,CHEMBL4228308,8.397940008672037,>,1 +78,CNCCC(Nc1ncnc2c(C(N)=O)cccc12)c1cccc([N+](=O)[O-])c1,CHEMBL3675485,6.0,,1 +79,Cc1cc(Nc2cc(N3CCOCC3)nc(Nc3ccc([N+](=O)[O-])cc3)n2)n[nH]1,CHEMBL3237168,7.958607314841775,,1 +80,Cc1cn2c(-c3cnn(Cc4noc(-c5ccccc5)n4)c3)cnc2c(Nc2cc(CN3CCCCC3)ns2)n1,CHEMBL2023291,8.397940008672037,>,1 +81,Cn1cc(-c2ccc(Nc3cc4[nH]c(-c5cnn(C)c5)cc4cn3)c(Cl)c2)cn1,CHEMBL3109942,4.0,<,0 +82,Cc1cc(Nc2nn(Cc3ccc([N+](=O)[O-])cc3)c(=O)c3ccccc23)n[nH]1,CHEMBL1651483,6.962573502059376,,1 +83,O=C(Nc1ncc(CCNc2ncnc3ccsc23)s1)Nc1cccc2cc[nH]c12,CHEMBL486877,7.522878745280337,,1 +84,Cc1nn(C)cc1-c1nc2c(Oc3ccc(C(=O)Nc4ccncc4)cc3)c(Cl)cnc2[nH]1,CHEMBL3087819,6.478909202742116,,1 +85,Nc1ncnn2ccc(C(=O)Nc3ccc(NC(=O)Nc4ccsc4)cc3)c12,CHEMBL2063467,8.096910013008056,,1 +86,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(CN3C[C@@H]4CC[C@H](C3)O4)ns2)n1,CHEMBL1269988,8.397940008672037,>,1 +87,CO/N=C1C(=C2\C(=O)Nc3c(F)cccc32)\Nc2ccccc2\1,CHEMBL397720,4.0,<,0 +88,COc1ccc(NC(=O)CC(=O)Nc2ccc3c(c2)NC(=O)/C3=C\c2[nH]c(C)c(C(=O)O)c2C)cc1,CHEMBL3322565,6.692503962086787,,1 +89,COc1ccc(/C=N/Nc2[nH]nc(C)c2C(=O)OCc2ccccc2)cc1,CHEMBL517571,5.279840696594043,,1 +90,CC1=C(C(=O)Nc2ccc(Cl)cc2)C(c2ccccc2)C2=C(CC(C)(C)CC2=O)N1,CHEMBL1277474,4.394264106123253,,1 +91,NC(=O)c1cccc2c(NC(CCN3CCCCC3)c3cccc(NC(=O)c4c(F)cccc4F)c3)ncnc12,CHEMBL3680419,8.508638306165727,,1 +92,Cc1cn2c(-c3cnn(CC(=O)Nc4cccnc4)c3)cnc2c(Nc2cc(CN3CCCC(C)C3)ns2)n1,CHEMBL2022378,6.730487055782082,,1 +93,COc1cc(O)c2c(c1)CCC[C@H](O)CC(=O)/C=C\C[C@H](C)OC2=O,CHEMBL1651521,5.0,<,0 +94,Cc1csc(Nc2nccn3c(-c4cnn(C)c4)cnc23)c1,CHEMBL1801106,5.6020599913279625,,1 +95,c1cc2c(ncc3[nH]nc(C4CCCCC4)c32)[nH]1,CHEMBL2322135,6.886056647693162,,1 +96,CNc1cc(C(=O)Nc2cccc(CNc3ncnc4c(C(N)=O)cccc34)c2)ccn1,CHEMBL3675532,9.82390874094432,,1 +97,CC(C)c1ccccc1Nc1ncc2c(n1)-c1c(c(C(N)=O)nn1C)CC2,CHEMBL1095772,5.0,<,0 +98,CC1=C(C(=O)Nc2ccc(F)c(Cl)c2)C(c2ccco2)n2c(nc3ccccc32)N1,CHEMBL1277383,5.24184537803261,,1 +99,CC(=O)Nc1ccc(Sc2nc(Nc3cc(C)[nH]n3)cc(N3CCN(C)CC3)n2)cc1,CHEMBL4228587,9.0,,1 +100,O=C(Nc1ccc(F)cc1)c1ccc(Nc2nc(Nc3ccc(O)cc3)ncc2F)cc1,CHEMBL522791,7.602059991327962,,1 +101,Cc1cc(Nc2nc(C(F)(F)F)cn3c(-c4cn[nH]c4)cnc23)sn1,CHEMBL1801112,7.568636235841013,,1 +102,Cc1[nH]nc2c1Cc1c-2[nH]c2ccccc12,CHEMBL469204,6.060480747381384,,1 +103,COc1cc2nc(Nc3cc(C)[nH]n3)nc(Nc3cccc(-c4nc5ccccc5s4)c3)c2cc1OC,CHEMBL522785,5.259637310505756,,1 +104,CN1CCN(c2ccc(C(=O)Nc3cc(-c4ccc(NC(=O)OCc5ccccc5)cc4)n[nH]3)cc2)CC1,CHEMBL2063319,6.0,<,0 +105,Cc1cc(Nc2nc(SC(C)(C)C)cn3c(-c4cn[nH]c4)cnc23)sn1,CHEMBL1801133,6.978810700930063,,1 +106,CCn1cc(-c2ccnc3[nH]c(-c4cccc(CN5CCCC5)c4)cc23)c(-c2ccc(NC(=O)Nc3ccccc3)cc2)n1,CHEMBL1099349,7.657577319177793,,1 +107,CNCC(Nc1ncnc2c(C(N)=O)cccc12)c1cccc(NC(=O)c2ccc(OC)cc2F)c1,CHEMBL3675427,9.468521082957745,,1 +108,NC(=O)c1cccc2c(NCc3ccc(F)c(NC(=O)c4ccc(OC(F)(F)F)cc4)c3)ncnc12,CHEMBL3685287,9.657577319177792,,1 +109,COc1cnc(C(=O)Nc2cccc([C@@H](C)Nc3ncnc4c(C(N)=O)cccc34)c2)cn1,CHEMBL3680563,9.292429823902063,,1 +110,O=C(Nc1cccc(C(F)(F)F)c1)Nc1nc(CCNc2ncnc3ccsc23)cs1,CHEMBL513076,4.698970004336019,<,0 +111,COc1ccc(C(=O)Nc2ccc(C)c(CNc3ncnc4c(C(N)=O)cccc34)c2)cc1,CHEMBL3685211,8.040958607678906,,1 +112,COc1cc2ncnc(Nc3ccc(-c4nc5ccccc5s4)c(O)c3)c2cc1OCCCN1CCN(C)CC1,CHEMBL604485,6.522878745280337,,1 +113,CN(O)C(=O)c1nn(C)c2c1CCc1cnc(NC3CCCC3)nc1-2,CHEMBL599824,5.514704561273911,,1 +114,NC(=O)c1cccc2c(NCc3ccc(Cl)c(C(F)(F)F)c3)ncnc12,CHEMBL3675365,6.130768280269022,,1 +115,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4ccc(F)c(F)c4)c3)ncnc12,CHEMBL3670473,8.958607314841776,,1 +116,COc1cc2ncnc(Nc3ccc(-c4nc5ccccc5s4)cc3F)c2cc1OCCCN1CCN(C)CC1,CHEMBL594661,6.4089353929735005,,1 +117,COc1cc2c(Nc3cnc(NC(=O)c4ccc(C)c(Br)c4)nc3)ncnc2cc1OCCCN1CCOCC1,CHEMBL203007,7.154901959985742,,1 +118,Cn1cc(-c2cc3cnc(Nc4ccc(-c5cnccn5)cc4Cl)cc3n2C(=O)OC(C)(C)C)cn1,CHEMBL3109947,4.0,<,0 +119,OCCOCCNc1ncnc2oc(-c3ccccc3)c(-c3ccccc3)c12,CHEMBL1172831,6.1191864077192095,,1 +120,Cn1nc(C(N)=O)c2c1-c1nc(Nc3ccccc3Cc3ccccc3)ncc1CC2,CHEMBL1094488,5.0,<,0 +121,CCOC(=O)c1[nH]cc2c1NC1=C(C(=O)CCC1)C2c1ccc(Sc2nc3cccc(Cl)c3[nH]2)o1,CHEMBL3393479,8.397940008672037,,1 +122,C[C@@H](O)CNc1ncnc2oc(-c3ccccc3)c(-c3ccccc3)c12,CHEMBL1172716,6.011887159731648,,1 +123,CN1CCC(Oc2ccc(-c3n[nH]c4ccc(C(=O)NC(c5ccccn5)C5CCCC5)cc34)cc2)CC1,CHEMBL3422071,5.0,<,0 +124,Cc1cn2c(-c3cnn(Cc4nc(-c5ccccc5)c[nH]4)c3)cnc2c(Nc2cc(CN3CCCCC3)ns2)n1,CHEMBL2023292,6.234331445240986,,1 +125,COc1cc(C(N)=O)c2ncnc(NC(CN(C)C)c3ccccc3OC)c2c1,CHEMBL3680524,6.327902142064282,,1 +126,CNC(=O)c1nn(C)c2c1C(C)(C)Cc1cnc(Nc3cccc(OC4CCN(C)CC4)c3)nc1-2,CHEMBL560102,5.800244822746524,,1 +127,Cc1cc(C(N)=O)c2ncnc(NCc3cccc(F)c3)c2c1,CHEMBL3670456,5.886056647693162,,1 +128,CCNCc1cncc(/C=C/c2c[nH]nc2-c2nc3ccc(OC)cc3[nH]2)c1,CHEMBL245967,6.229147988357855,,1 +129,COc1ccc(C(=O)Nc2cccc(C(C)Nc3ncnc4c(C(N)=O)cc(C#N)cc34)c2)cc1F,CHEMBL3685310,9.585026652029182,,1 +130,NC(=O)c1cccc2c(NC(CCN3CCC3)c3cccc(NC(=O)c4ccc(Br)cc4)c3)ncnc12,CHEMBL3675518,9.236572006437065,,1 +131,Cc1ccnc(Cc2cc(Nc3nc(C)cn4c(-c5cn[nH]c5)cnc34)sn2)c1,CHEMBL4226657,8.397940008672037,>,1 +132,Cc1cc(Nc2cc(N3CCN(C)CC3)nc(Nc3ccc(N4CCOCC4)cc3)n2)n[nH]1,CHEMBL3237190,6.950781977329817,,1 +133,CC(=O)Nc1ccc(Cn2nc(Nc3cc[nH]n3)c3ccccc3c2=O)cc1,CHEMBL1651491,6.259637310505756,,1 +134,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4ccc(CO)cc4)c3)ncnc12,CHEMBL3680571,9.080921907623924,,1 +135,OCCNc1ncnc2oc(-c3ccccc3)c(-c3ccccc3)c12,CHEMBL189434,6.536939436767204,,1 +136,O=C(CCc1cn(Cc2ccc(Cl)cc2)c2ccccc12)Nc1ccncc1,CHEMBL185140,4.0,<,0 +137,Cc1cc2[nH]nc(/C=C/c3cccc(NC(=O)N4CCN(C)CC4)c3)c2cc1NC(=O)Cc1cccs1,CHEMBL1093265,7.886056647693162,,1 +138,Cc1ccc(C(=O)Nc2cccc([C@@H](C)Nc3ncnc4c(C(N)=O)cccc34)c2)cc1C,CHEMBL3675455,9.568636235841012,,1 +139,CC(Nc1ncnc2c(C(N)=O)cccc12)c1cccc(NC(=O)C2=CCC(Br)C=C2)c1,CHEMBL3675466,9.585026652029182,,1 +140,CN(C)C(=O)[C@]1(Cc2cccc(Nc3cc[nH]n3)n2)CC[C@@H](Oc2cccc(Cl)c2F)CC1,CHEMBL3986649,8.886056647693161,,1 +141,Cc1cc(CN2CCN(c3c(Br)cnc4[nH]c(-c5ccc(CN(C)C)cc5)nc34)CC2)no1,CHEMBL1085833,7.853871964321763,,1 +142,Cn1cc(C2=C(c3nn(CCn4ccnc4)c4ncccc34)C(=O)NC2=O)c2ccccc21,CHEMBL563560,4.3979400086720375,<,0 +143,O=C(Nc1n[nH]c2cc(C(=O)NCc3ccccc3)sc12)c1ccc(N2CCOCC2)cc1,CHEMBL1258794,7.958607314841775,,1 +144,O=C(Nc1ccc(CCNc2ncnc3oc(-c4ccccc4)c(Cl)c23)cc1)Nc1cccc(CN2CCCCC2)c1,CHEMBL4171792,7.044793462458057,,1 +145,O=C(Nc1ccc(Nc2ccnc3[nH]c(=O)c4ccccc4c23)cc1)c1ccccc1C(F)(F)F,CHEMBL2380824,8.397940008672037,,1 +146,O=C(O)c1cccc(Nc2ncc(F)c(Nc3ccccc3Cl)n2)c1,CHEMBL2170589,8.346787486224656,,1 +147,Cc1nc(Nc2cc(-c3ccc(CNC(=O)OCc4cccnc4)cc3)n[nH]2)cc(N2CCN(CCO)CC2)n1,CHEMBL2063434,6.0,<,0 +148,CC(C)N(C)C[C@@H](Nc1ncnc2c(C(N)=O)cccc12)c1ccccc1,CHEMBL3675526,6.853871964321763,,1 +149,O=C1OC(Nc2ncc3nnn(-c4ccccc4)c3n2)c2ccccc21,CHEMBL253956,5.136677139879544,,1 +150,CCNC(=O)c1cc(NC(C)(C)C(=O)Nc2nc3c(C(F)(F)F)cc4[nH]ncc4c3s2)ccc1Cl,CHEMBL3719096,6.787812395596043,,1 +151,CC(C)NC[C@@H](Nc1ncnc2c(C(N)=O)cccc12)c1ccccc1,CHEMBL3680414,6.096910013008058,,1 +152,O=C(Nc1ccc(CCNc2ncnc3ccsc23)cc1)c1cccc(C(F)(F)F)c1,CHEMBL459888,5.494850021680094,,1 +153,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(CN3CC[C@@H](F)C3)ns2)n1,CHEMBL1650544,8.397940008672037,>,1 +154,COc1ccc(Nc2nc(Nc3cc(C)[nH]n3)cc(N3CCN(C)CC3)n2)c(OC)c1OC,CHEMBL4164598,7.026872146400303,,1 +155,COc1cc2ncnc(Nc3ccc(-c4nc5ccccc5s4)cc3O)c2cc1OC,CHEMBL593293,5.0,<,0 +156,O=C(O)c1ccc(Nc2nccc(Nc3ccccc3)n2)cc1,CHEMBL2170597,8.012652498338772,,1 +157,COc1ccc(NC(=O)Nc2ccc(CCNc3ncnc4oc(-c5ccccc5)c(-c5ccccc5)c34)cc2)cc1,CHEMBL2398653,6.435333935747911,,1 +158,CC(C)S(=O)(=O)Nc1cccc(-c2cc(NC(=O)c3ccc(N4CCN(C)CC4)cc3)[nH]n2)c1,CHEMBL1807474,6.0,<,0 +159,CC(=O)Nc1cccc(-c2ccc(C(N)=O)c3[nH]c4cc(C(=O)N5CCN(C)CC5)ccc4c23)c1C,CHEMBL3621515,5.698970004336019,<,0 +160,Cc1cn2c(-c3cnn(CC(=O)N(C)Cc4ccccc4)c3)cnc2c(Nc2cc(CN3CCCC(C)C3)ns2)n1,CHEMBL2022122,5.788612447063142,,1 +161,NC(=O)CCCCc1cccc(Nc2nccc(Nc3cccc(C(F)(F)F)c3)n2)c1,CHEMBL3917769,5.089668776347804,,1 +162,CNC(=O)Nc1sc2c(C(C)C)cc(NS(=O)(=O)N(C)C)cc2c1C(N)=O,CHEMBL4290876,8.045757490560675,,1 +163,COc1cc2c(Oc3ccc(-c4cnc(Cc5ccccc5)n(C)c4=O)cc3F)ccnc2cc1OCCCN1CCOCC1,CHEMBL505896,6.935542010773082,,1 +164,O=C(O)c1cccc(Nc2ncc3ccn(C4CCCCC4)c3n2)c1,CHEMBL1643136,9.221848749616356,,1 +165,Nc1nc(-c2ccccc2)cc(-c2ccc3c(N)n[nH]c3c2)n1,CHEMBL1765758,5.800000874803202,,1 +166,COc1ccccc1Nc1nc(Nc2ccc(O)cc2)ncc1F,CHEMBL522476,7.698970004336019,,1 +167,[N-]=[N+]=NC[C@@H](Nc1ncnc2c(C(N)=O)cccc12)c1ccccc1,CHEMBL3670458,6.346787486224656,,1 +168,Cc1nc(Nc2cc(-c3ccc(CNC(=O)Nc4cc(C(C)(C)C)on4)cc3)n[nH]2)cc(N2CCNCC2)n1,CHEMBL2386809,6.1487416512809245,,1 +169,COc1cc2c(Nc3ncc(CC(=O)Nc4cccc(F)c4)s3)ncnc2cc1OCCN1CCC(CCO)CC1,CHEMBL202593,9.0,>,1 +170,O=C(Nc1cccc(C(F)(F)F)c1)Nc1cn(CCNc2ncnc3ccsc23)cn1,CHEMBL462354,5.920818753952375,,1 +171,COc1ccc(CCNC(=O)c2c(N)ncnc2Nc2ccc(OCc3ccccc3)c(Cl)c2)cc1,CHEMBL461115,4.0,<,0 +172,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4c(F)cc(Cl)cc4F)c3)ncnc12,CHEMBL3685305,10.096910013008056,,1 +173,NC(=O)c1cccc2c(NCc3cccc(NS(=O)(=O)c4ccccc4)c3)ncnc12,CHEMBL3675370,5.309803919971486,,1 +174,Cn1nc(C(N)=O)c2c1-c1nc(NC3CCN(C(=O)C4CCN(S(C)(=O)=O)CC4)CC3)ncc1CC2,CHEMBL597753,5.907630300370879,,1 +175,Cc1ccc(C(CN)Nc2ncnc3c(C(N)=O)cccc23)cc1,CHEMBL3670404,6.180456064458131,,1 +176,COc1ccc(C(=O)Nc2cccc(C(C)Nc3ncnc4c(C(N)=O)cc(C)cc34)c2)cc1F,CHEMBL3685300,8.619788758288394,,1 +177,O=C(NCc1ccc(-c2cc(NC(=O)c3ccc(OCCN4CCOCC4)cc3)[nH]n2)cc1)Nc1ccc(Cl)cc1,CHEMBL2386800,6.0,<,0 +178,CCc1cccc(CC)c1NC(=O)c1nn(C)c2c1CCc1cnc(Nc3ccc(C(=O)N4CCC[C@@H]4CN4CCCC4)cc3OC(F)(F)F)nc1-2,CHEMBL1807300,5.0,<,0 +179,O=C1CNCC2=C1C(c1cccc(Oc3ccc(Cl)cc3)c1)c1c[nH]nc1N2,CHEMBL3393458,5.562407967746038,,1 +180,COc1cc(C(N)=O)c2ncnc(NCc3cccc(C(F)(F)F)c3)c2c1,CHEMBL3670460,6.698970004336019,,1 +181,CCc1cccc(CC)c1NC(=O)c1nn(C)c2c1CCc1cnc(Nc3ccc(C(=O)NCCN(C)C)cc3OC(F)(F)F)nc1-2,CHEMBL1808342,5.861381566100508,,1 +182,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4ccc(Cl)c(Cl)c4)c3)ncnc12,CHEMBL3680403,9.537602002101044,,1 +183,CC(=O)c1ccc(Nc2ncc3c(n2)-c2c(c(C(N)=O)nn2C)CC3)cc1,CHEMBL1099106,6.935542010773082,,1 +184,O=C(O)/C=C\C(=O)Nc1cccc(-c2n[nH]c3ccc(NS(=O)(=O)c4ccccc4)cc23)c1,CHEMBL3986609,7.585026652029183,,1 +185,Cc1cc(CN2CCN(c3c(Cl)cnc4[nH]c(N5CCN(C)CC5)nc34)CC2)no1,CHEMBL1086582,8.0,,1 +186,CN(C)CCN(c1ccc(Nc2ncc3cnn(C4CCCCCC4)c3n2)cn1)S(C)(=O)=O,CHEMBL1825099,6.585026652029183,,1 +187,Cc1noc(C2(Cc3ccc(F)c(Nc4cc(C)[nH]n4)n3)CCN(C(=O)c3cccc(Cl)c3F)CC2)n1,CHEMBL3692217,9.096910013008056,,1 +188,Cc1cc(Nc2nc(-c3ccccc3)nc3cc(N4CCN(C)CC4)ccc23)n[nH]1,CHEMBL4292755,8.0,,1 +189,CN(CCO)c1ccc(C(=O)Nc2cccc(CNc3ncnc4c(C(N)=O)cccc34)c2)cn1,CHEMBL3680387,9.161150909262744,,1 +190,O=C(Nc1ccccc1)Nc1ccc(-c2nn(CC3CCCO3)cc2-c2ccnc3[nH]ccc23)cc1,CHEMBL1964276,5.207958689287918,,1 +191,Cc1cnc(C(=O)Nc2cccc([C@@H](C)Nc3ncnc4c(C(N)=O)cccc34)c2)cn1,CHEMBL3680438,8.508638306165727,,1 +192,CNC(=O)c1nn(C)c2c1CCc1cnc(Nc3ccc(N4CCN(C)CC4)cc3)nc1-2,CHEMBL559844,6.7569619513137065,,1 +193,Cc1ccc(C(=O)Nc2cccc(C(C)Nc3ncnc4c(C(N)=O)cc(Cl)cc34)c2)cn1,CHEMBL3680573,9.065501548756432,,1 +194,CCOC(=O)c1cc(NC(C)(C)C(=O)Nc2nc3ccc4[nH]ncc4c3s2)ccc1Cl,CHEMBL3715109,6.97061622231479,,1 +195,CCN(CCO)CCCOc1cc2ncnc(Nc3ncc(CC(=O)Nc4cccc(F)c4)s3)c2cc1OC,CHEMBL202198,9.0,>,1 +196,COCCNC(=O)c1cccc2cc(Oc3ccnc4cc(OC)c(OC)cc34)ccc12,CHEMBL271188,5.142667503568732,,1 +197,C[C@@H](NC(=O)c1cc2[nH]nc(NC(=O)c3ccc(N4CCOCC4)cc3)c2s1)c1ccccc1,CHEMBL1258912,8.301029995663981,,1 +198,COc1ccc(-c2nc3c(N4CCN(CC(=O)Nc5nccs5)CC4)c(Cl)cnc3[nH]2)cc1,CHEMBL1082831,7.2839966563652,,1 +199,COc1ccc(C2=Nc3c(n[nH]c3C)Nc3nc(SC)ncc32)cc1,CHEMBL4291146,7.031517051446066,,1 diff --git a/atomsci/ddm/test/integrative/import_transformer/data/delaney-processed_curated_fit_short.csv b/atomsci/ddm/test/integrative/import_transformer/data/delaney-processed_curated_fit_short.csv new file mode 100644 index 00000000..73695496 --- /dev/null +++ b/atomsci/ddm/test/integrative/import_transformer/data/delaney-processed_curated_fit_short.csv @@ -0,0 +1,201 @@ +Unnamed: 0,Compound ID,ESOL predicted log solubility in mols per litre,Minimum Degree,Molecular Weight,Number of H-Bond Donors,Number of Rings,Number of Rotatable Bonds,Polar Surface Area,measured log solubility in mols per litre,smiles,rdkit_smiles,inchi_key,compound_id,VALUE_NUM_mean,VALUE_NUM_std,Perc_Var,Remove_BadDuplicate,measured log solubility in mols per litre_class,measured log solubility in mols per litre2,measured log solubility in mols per litre_class2 +117,Anilofos,-5.106,1,367.86,0,1,7,38.77,-4.432,COP(=S)(OC)SCC(=O)N(C(C)C)c1ccc(Cl)cc1,COP(=S)(OC)SCC(=O)N(c1ccc(Cl)cc1)C(C)C,NXQDBZGWYSEGFL-UHFFFAOYSA-N,NXQDBZGWYSEGFL-UHFFFAOYSA-N,-4.432,,-0.0,0,0.0,-4.432,0.0 +118,Hexylbenzene ,-4.22,1,162.276,0,1,5,0.0,-5.21,CCCCCCc1ccccc1,CCCCCCc1ccccc1,LTEQMZWBSYACLV-UHFFFAOYSA-N,LTEQMZWBSYACLV-UHFFFAOYSA-N,-5.21,,-0.0,0,0.0,-5.21,0.0 +119,2-Chlorobiphenyl,-4.5280000000000005,1,188.657,0,2,1,0.0,-4.54,Clc1ccccc1c2ccccc2,Clc1ccccc1-c1ccccc1,LAXBNTIAOJWAOP-UHFFFAOYSA-N,LAXBNTIAOJWAOP-UHFFFAOYSA-N,-4.54,,-0.0,0,0.0,-4.54,0.0 +120,2-Methyl-1-Pentene,-2.3480000000000003,1,84.16199999999999,0,0,2,0.0,-3.03,CCCC(=C)C,C=C(C)CCC,WWUVJRULCWHUSA-UHFFFAOYSA-N,WWUVJRULCWHUSA-UHFFFAOYSA-N,-3.03,,-0.0,0,1.0,-3.03,1.0 +121,"2,3,4-Trimethylpentane",-3.276,1,114.232,0,0,2,0.0,-4.8,CC(C)C(C)C(C)C,CC(C)C(C)C(C)C,RLPGDEORIPLBNF-UHFFFAOYSA-N,RLPGDEORIPLBNF-UHFFFAOYSA-N,-4.8,,-0.0,0,0.0,-4.8,0.0 +122,Pentachlorobenzene,-5.167999999999999,1,250.339,0,1,0,0.0,-5.65,Clc1cc(Cl)c(Cl)c(Cl)c1Cl,Clc1cc(Cl)c(Cl)c(Cl)c1Cl,CEOCDNVZRAIOQZ-UHFFFAOYSA-N,CEOCDNVZRAIOQZ-UHFFFAOYSA-N,-5.65,,-0.0,0,0.0,-5.65,0.0 +123,m-Nitrophenol,-2.318,1,139.11,1,1,1,63.37,-1.01,Oc1cccc(c1)N(=O)=O,O=[N+]([O-])c1cccc(O)c1,RTZZCYNQPHTPPL-UHFFFAOYSA-N,RTZZCYNQPHTPPL-UHFFFAOYSA-N,-1.01,,-0.0,0,1.0,-1.01,1.0 +124,1-Decene,-3.781,1,140.26999999999998,0,0,7,0.0,-5.51,CCCCCCCCC=C,C=CCCCCCCCC,AFFLGGQVNFXPEV-UHFFFAOYSA-N,AFFLGGQVNFXPEV-UHFFFAOYSA-N,-5.51,,-0.0,0,0.0,-5.51,0.0 +125,Glyceryl triacetate,-1.285,1,218.205,0,0,5,78.9,-0.6,CC(=O)OCC(COC(=O)C)OC(=O)C,CC(=O)OCC(COC(C)=O)OC(C)=O,URAYPUMNDPQOKB-UHFFFAOYSA-N,URAYPUMNDPQOKB-UHFFFAOYSA-N,-0.6,,-0.0,0,1.0,-0.6,1.0 +126,dimethirimol,-3.57,1,209.293,1,1,4,49.25000000000001,-2.24,CCCCc1c(C)nc(nc1O)N(C)C ,CCCCc1c(C)nc(N(C)C)nc1O,CJHXCRMKMMBYJQ-UHFFFAOYSA-N,CJHXCRMKMMBYJQ-UHFFFAOYSA-N,-2.24,,-0.0,0,1.0,-2.24,1.0 +127,Cyfluthrin,-6.84,1,434.29400000000015,0,3,6,59.32000000000001,-7.337000000000001,CC1(C)C(C=C(Cl)Cl)C1C(=O)OC(C#N)c2ccc(F)c(Oc3ccccc3)c2,CC1(C)C(C=C(Cl)Cl)C1C(=O)OC(C#N)c1ccc(F)c(Oc2ccccc2)c1,QQODLKZGRKWIFG-UHFFFAOYSA-N,QQODLKZGRKWIFG-UHFFFAOYSA-N,-7.337000000000001,,-0.0,0,0.0,-7.337000000000001,0.0 +128,Pyridine,-1.481,2,79.10199999999998,0,1,0,12.89,0.76,c1ccncc1,c1ccncc1,JUJWROOIHBZHMG-UHFFFAOYSA-N,JUJWROOIHBZHMG-UHFFFAOYSA-N,0.76,,0.0,0,1.0,0.76,1.0 +129,1-Bromoheptane,-3.366,1,179.101,0,0,5,0.0,-4.43,CCCCCCCBr,CCCCCCCBr,LSXKDWGTSHCFPP-UHFFFAOYSA-N,LSXKDWGTSHCFPP-UHFFFAOYSA-N,-4.43,,-0.0,0,0.0,-4.43,0.0 +130,"3,4-Dimethylpyridine",-2.067,1,107.156,0,1,0,12.89,0.36,Cc1ccncc1C,Cc1ccncc1C,NURQLCJSMXZBPC-UHFFFAOYSA-N,NURQLCJSMXZBPC-UHFFFAOYSA-N,0.36,,0.0,0,1.0,0.36,1.0 +131,Fludrocortisone,-3.172,1,380.4560000000001,3,4,2,94.83,-3.43,CC34CC(O)C1(F)C(CCC2=CC(=O)CCC12C)C3CCC4(O)C(=O)CO ,CC12CCC(=O)C=C1CCC1C3CCC(O)(C(=O)CO)C3(C)CC(O)C12F,AAXVEMMRQDVLJB-UHFFFAOYSA-N,AAXVEMMRQDVLJB-UHFFFAOYSA-N,-3.43,,-0.0,0,0.0,-3.43,0.0 +132,ethiofencarb,-2.855,1,225.313,1,1,4,38.33,-2.09,CCSCc1ccccc1OC(=O)NC ,CCSCc1ccccc1OC(=O)NC,HEZNVIYQEUHLNI-UHFFFAOYSA-N,HEZNVIYQEUHLNI-UHFFFAOYSA-N,-2.09,,-0.0,0,1.0,-2.09,1.0 +133,Malonic acid diethylester,-1.413,1,160.16899999999998,0,0,4,52.60000000000001,-0.82,CCOC(=O)CC(=O)OCC,CCOC(=O)CC(=O)OCC,IYXGSMUGOJNHAZ-UHFFFAOYSA-N,IYXGSMUGOJNHAZ-UHFFFAOYSA-N,-0.82,,-0.0,0,1.0,-0.82,1.0 +134,d-Limonene,-3.429,1,136.238,0,1,1,0.0,-4.26,CC1=CCC(CC1)C(C)=C,C=C(C)C1CC=C(C)CC1,XMGQYMWWDOXHJM-UHFFFAOYSA-N,XMGQYMWWDOXHJM-UHFFFAOYSA-N,-4.26,,-0.0,0,0.0,-4.26,0.0 +135,Indan,-3.057,2,118.17899999999996,0,2,0,0.0,-3.04,C1Cc2ccccc2C1,c1ccc2c(c1)CCC2,PQNFLJBBNBOBRQ-UHFFFAOYSA-N,PQNFLJBBNBOBRQ-UHFFFAOYSA-N,-3.04,,-0.0,0,1.0,-3.04,1.0 +136,p-t-Butylphenol,-3.192,1,150.22099999999998,1,1,0,20.23,-2.41,CC(C)(C)c1ccc(O)cc1,CC(C)(C)c1ccc(O)cc1,QHPQWRBYOIRBIT-UHFFFAOYSA-N,QHPQWRBYOIRBIT-UHFFFAOYSA-N,-2.41,,-0.0,0,1.0,-2.41,1.0 +137,Cyclopropyl-5-spirobarbituric acid,-0.088,1,154.125,2,2,0,75.27,-1.886,O=C2NC(=O)C1(CC1)C(=O)N2 ,O=C1NC(=O)C2(CC2)C(=O)N1,PQVZDTWRGIHYCU-UHFFFAOYSA-N,PQVZDTWRGIHYCU-UHFFFAOYSA-N,-1.886,,-0.0,0,1.0,-1.886,1.0 +138,m-Chloroiodobenzene,-4.384,1,238.455,0,1,0,0.0,-3.55,Clc1cccc(I)c1,Clc1cccc(I)c1,JMLWXCJXOYDXRN-UHFFFAOYSA-N,JMLWXCJXOYDXRN-UHFFFAOYSA-N,-3.55,,-0.0,0,0.0,-3.55,0.0 +139,1-Bromonapthalene,-4.434,1,207.07,0,2,0,0.0,-4.35,Brc1cccc2ccccc12,Brc1cccc2ccccc12,DLKQHBOKULLWDQ-UHFFFAOYSA-N,DLKQHBOKULLWDQ-UHFFFAOYSA-N,-4.35,,-0.0,0,0.0,-4.35,0.0 +140,trans-2-Pentene ,-2.076,1,70.135,0,0,1,0.0,-2.54,CC/C=C/C,C/C=C/CC,QMMOXUPEWRXHJS-HWKANZROSA-N,QMMOXUPEWRXHJS-HWKANZROSA-N,-2.54,,-0.0,0,1.0,-2.54,1.0 +141,"2,6-Dimethylpyridine",-2.0980000000000003,1,107.156,0,1,0,12.89,0.45,Cc1cccc(C)n1,Cc1cccc(C)n1,OISVCGZHLKNMSJ-UHFFFAOYSA-N,OISVCGZHLKNMSJ-UHFFFAOYSA-N,0.45,,0.0,0,1.0,0.45,1.0 +142,Trichloroethylene,-2.312,1,131.389,0,0,0,0.0,-1.96,ClC=C(Cl)Cl,ClC=C(Cl)Cl,XSTXAVWGXDQKEL-UHFFFAOYSA-N,XSTXAVWGXDQKEL-UHFFFAOYSA-N,-1.96,,-0.0,0,1.0,-1.96,1.0 +143,1-Napthylamine,-2.721,1,143.189,1,2,0,26.02,-1.92,Nc1cccc2ccccc12,Nc1cccc2ccccc12,RUFPHBVGCFYCNW-UHFFFAOYSA-N,RUFPHBVGCFYCNW-UHFFFAOYSA-N,-1.92,,-0.0,0,1.0,-1.92,1.0 +144,m-Xylene ,-3.035,1,106.168,0,1,0,0.0,-2.82,Cc1cccc(C)c1,Cc1cccc(C)c1,IVSZLXZYQVIEFR-UHFFFAOYSA-N,IVSZLXZYQVIEFR-UHFFFAOYSA-N,-2.82,,-0.0,0,1.0,-2.82,1.0 +145,2-hydroxypteridine,-1.404,1,148.125,1,2,0,71.79,-1.947,Oc2ncc1nccnc1n2,Oc1ncc2nccnc2n1,VWXIHLCLIOQWRA-UHFFFAOYSA-N,VWXIHLCLIOQWRA-UHFFFAOYSA-N,-1.947,,-0.0,0,1.0,-1.947,1.0 +146,Methanol,0.441,1,32.042,1,0,0,20.23,1.57,CO,CO,OKKJLVBELUTLKV-UHFFFAOYSA-N,OKKJLVBELUTLKV-UHFFFAOYSA-N,1.57,,0.0,0,1.0,1.57,1.0 +147,Amobarbital,-2.312,1,226.276,2,1,4,75.27000000000001,-2.468,CCC1(CCC(C)C)C(=O)NC(=O)NC1=O,CCC1(CCC(C)C)C(=O)NC(=O)NC1=O,VIROVYVQCGLCII-UHFFFAOYSA-N,VIROVYVQCGLCII-UHFFFAOYSA-N,-2.563,0.1343502884254441,-3.706593835349191,0,1.0,-2.468,1.0 +148,2-Butanone,-0.491,1,72.107,0,0,1,17.07,0.52,CCC(=O)C,CCC(C)=O,ZWEHNKRNPOVVGH-UHFFFAOYSA-N,ZWEHNKRNPOVVGH-UHFFFAOYSA-N,0.52,,0.0,0,1.0,0.52,1.0 +149,5-fluorouracil,-0.792,1,130.078,2,1,0,65.72,-1.077,Fc1c[nH]c(=O)[nH]c1=O ,O=c1[nH]cc(F)c(=O)[nH]1,GHASVSINZRGABV-UHFFFAOYSA-N,GHASVSINZRGABV-UHFFFAOYSA-N,-1.077,,-0.0,0,1.0,-1.077,1.0 +150,tubercidin,-0.892,1,266.257,4,3,2,126.65,-1.95,Nc1ncnc2n(ccc12)C3OC(CO)C(O)C3O ,Nc1ncnc2c1ccn2C1OC(CO)C(O)C1O,HDZZVAMISRMYHH-UHFFFAOYSA-N,HDZZVAMISRMYHH-UHFFFAOYSA-N,-1.95,,-0.0,0,1.0,-1.95,1.0 +151,"1,3-Benzenediol",-1.59,1,110.11199999999998,2,1,0,40.46,0.81,Oc1cccc(O)c1,Oc1cccc(O)c1,GHMLBKRAJCXXBS-UHFFFAOYSA-N,GHMLBKRAJCXXBS-UHFFFAOYSA-N,0.81,,0.0,0,1.0,0.81,1.0 +152,1-Hexanol,-1.3969999999999998,1,102.177,1,0,4,20.23,-1.24,CCCCCCO,CCCCCCO,ZSIAUFGUXNUGDI-UHFFFAOYSA-N,ZSIAUFGUXNUGDI-UHFFFAOYSA-N,-1.24,,-0.0,0,1.0,-1.24,1.0 +153,1-Chloropentane,-2.294,1,106.596,0,0,3,0.0,-2.73,CCCCCCl,CCCCCCl,SQCZQTSHSZLZIQ-UHFFFAOYSA-N,SQCZQTSHSZLZIQ-UHFFFAOYSA-N,-2.73,,-0.0,0,1.0,-2.73,1.0 +154,"1,3-Butadiene",-1.376,1,54.09199999999999,0,0,1,0.0,-1.87,C=CC=C,C=CC=C,KAKZBPTYRLMSJV-UHFFFAOYSA-N,KAKZBPTYRLMSJV-UHFFFAOYSA-N,-1.87,,-0.0,0,1.0,-1.87,1.0 +155,Propyl acetate,-1.125,1,102.13299999999998,0,0,2,26.3,-0.72,CCCOC(=O)C,CCCOC(C)=O,YKYONYBAUNKHLG-UHFFFAOYSA-N,YKYONYBAUNKHLG-UHFFFAOYSA-N,-0.72,,-0.0,0,1.0,-0.72,1.0 +156,"5,6,7,8-tetrahydro-2-naphthol",-3.0860000000000003,1,148.205,1,2,0,20.23,-1.99,Oc2ccc1CCCCc1c2 ,Oc1ccc2c(c1)CCCC2,UMKXSOXZAXIOPJ-UHFFFAOYSA-N,UMKXSOXZAXIOPJ-UHFFFAOYSA-N,-1.99,,-0.0,0,1.0,-1.99,1.0 +157,chloroacetamide,-0.106,1,93.513,1,0,1,43.09,-0.02,NC(=O)CCl ,NC(=O)CCl,VXIVSQZSERGHQP-UHFFFAOYSA-N,VXIVSQZSERGHQP-UHFFFAOYSA-N,-0.02,,-0.0,0,1.0,-0.02,1.0 +158,Iodofenphos,-6.148,1,413.0,0,1,4,27.69,-6.62,COP(=S)(OC)Oc1cc(Cl)c(I)cc1Cl,COP(=S)(OC)Oc1cc(Cl)c(I)cc1Cl,LFVLUOAHQIVABZ-UHFFFAOYSA-N,LFVLUOAHQIVABZ-UHFFFAOYSA-N,-6.62,,-0.0,0,0.0,-6.62,0.0 +159,4-Chlorotoluene,-3.297,1,126.586,0,1,0,0.0,-3.08,Cc1ccc(Cl)cc1,Cc1ccc(Cl)cc1,NPDACUSDTOMAMK-UHFFFAOYSA-N,NPDACUSDTOMAMK-UHFFFAOYSA-N,-3.08,,-0.0,0,0.0,-3.08,0.0 +160,Metribuzin,-2.324,1,214.294,1,1,1,73.8,-2.253,CSc1nnc(c(=O)n1N)C(C)(C)C,CSc1nnc(C(C)(C)C)c(=O)n1N,FOXFZRUHNHCZPX-UHFFFAOYSA-N,FOXFZRUHNHCZPX-UHFFFAOYSA-N,-2.253,,-0.0,0,1.0,-2.253,1.0 +161,Tricresyl phosphate,-6.39,1,368.3690000000001,0,3,6,44.760000000000005,-6.01,Cc1ccc(OP(=O)(Oc2cccc(C)c2)Oc3ccccc3C)cc1,Cc1ccc(OP(=O)(Oc2cccc(C)c2)Oc2ccccc2C)cc1,FSNFYCPCXFQJSI-UHFFFAOYSA-N,FSNFYCPCXFQJSI-UHFFFAOYSA-N,-6.01,,-0.0,0,0.0,-6.01,0.0 +162,Caproaldehyde,-1.457,1,100.161,0,0,4,17.07,-1.3,CCCCCC=O,CCCCCC=O,JARKCYVAAOWBJS-UHFFFAOYSA-N,JARKCYVAAOWBJS-UHFFFAOYSA-N,-1.3,,-0.0,0,1.0,-1.3,1.0 +163,Butamben,-3.039,1,193.246,1,1,4,52.32,-3.082,CCCCOC(=O)c1ccc(N)cc1,CCCCOC(=O)c1ccc(N)cc1,IUWVALYLNVXWKX-UHFFFAOYSA-N,IUWVALYLNVXWKX-UHFFFAOYSA-N,-3.082,,-0.0,0,0.0,-3.082,0.0 +164,RTI 3,-3.049,1,255.277,1,3,0,68.45,-3.043,O2c1cc(C)ccc1N(C)C(=O)c3cc(N)cnc23 ,Cc1ccc2c(c1)Oc1ncc(N)cc1C(=O)N2C,MUKSMBAVCDPKRC-UHFFFAOYSA-N,MUKSMBAVCDPKRC-UHFFFAOYSA-N,-3.043,,-0.0,0,1.0,-3.043,1.0 +165,Nerol,-2.603,1,154.253,1,0,4,20.23,-2.46,CC(C)=CCC/C(C)=C\CO,CC(C)=CCC/C(C)=C\CO,GLZPCOQZEFWAFX-YFHOEESVSA-N,GLZPCOQZEFWAFX-YFHOEESVSA-N,-2.46,,-0.0,0,1.0,-2.46,1.0 +166,"2,4'-PCB",-5.142,1,223.102,0,2,1,0.0,-5.28,Clc1ccc(cc1)c2ccccc2Cl ,Clc1ccc(-c2ccccc2Cl)cc1,UFNIBRDIUNVOMX-UHFFFAOYSA-N,UFNIBRDIUNVOMX-UHFFFAOYSA-N,-5.28,,-0.0,0,0.0,-5.28,0.0 +167,3-Octanoyloxymethylphenytoin,-4.84,1,408.498,1,3,10,75.71,-6.523,O=C1N(COC(=O)CCCCCCC)C(=O)C(N1)(c2ccccc2)c3ccccc3,CCCCCCCC(=O)OCN1C(=O)NC(c2ccccc2)(c2ccccc2)C1=O,IDZYLIZKJFAXAS-UHFFFAOYSA-N,IDZYLIZKJFAXAS-UHFFFAOYSA-N,-6.523,,-0.0,0,0.0,-6.523,0.0 +168,Nitroethane,-0.462,1,75.067,0,0,1,43.14,-0.22,CCN(=O)=O,CC[N+](=O)[O-],MCSAJNNLRCFZED-UHFFFAOYSA-N,MCSAJNNLRCFZED-UHFFFAOYSA-N,-0.22,,-0.0,0,1.0,-0.22,1.0 +169,Ethalfluralin,-5.063,1,333.266,0,1,6,89.51999999999998,-6.124,CCN(CC(C)=C)c1c(cc(cc1N(=O)=O)C(F)(F)F)N(=O)=O,C=C(C)CN(CC)c1c([N+](=O)[O-])cc(C(F)(F)F)cc1[N+](=O)[O-],PTFJIKYUEPWBMS-UHFFFAOYSA-N,PTFJIKYUEPWBMS-UHFFFAOYSA-N,-6.124,,-0.0,0,0.0,-6.124,0.0 +170,"1,2,3,4-Tetrachlorobenzene",-4.546,1,215.894,0,1,0,0.0,-4.57,Clc1ccc(Cl)c(Cl)c1Cl,Clc1ccc(Cl)c(Cl)c1Cl,GBDZXPJXOMHESU-UHFFFAOYSA-N,GBDZXPJXOMHESU-UHFFFAOYSA-N,-4.57,,-0.0,0,0.0,-4.57,0.0 +171,Meprobamate,-1.376,1,218.253,2,0,6,104.64,-1.807,CCCC(C)(COC(N)=O)COC(N)=O ,CCCC(C)(COC(N)=O)COC(N)=O,NPPQSCRMBWNHMW-UHFFFAOYSA-N,NPPQSCRMBWNHMW-UHFFFAOYSA-N,-1.807,,-0.0,0,1.0,-1.807,1.0 +172,pregnenolone,-4.342,1,316.48500000000007,1,4,1,37.3,-4.65,CC(=O)C3CCC4C2CC=C1CC(O)CCC1(C)C2CCC34C ,CC(=O)C1CCC2C3CC=C4CC(O)CCC4(C)C3CCC12C,ORNBQBCIOKFOEO-UHFFFAOYSA-N,ORNBQBCIOKFOEO-UHFFFAOYSA-N,-4.65,,-0.0,0,0.0,-4.65,0.0 +173,Iodomethane,-1.646,1,141.939,0,0,0,0.0,-1.0,CI,CI,INQOMBQAUSQDDS-UHFFFAOYSA-N,INQOMBQAUSQDDS-UHFFFAOYSA-N,-1.0,,-0.0,0,1.0,-1.0,1.0 +174,cycloheximide,-1.5319999999999998,1,281.35200000000003,2,2,3,83.47,-1.13,CC1CC(C)C(=O)C(C1)C(O)CC2CC(=O)NC(=O)C2 ,CC1CC(C)C(=O)C(C(O)CC2CC(=O)NC(=O)C2)C1,YPHMISFOHDHNIV-UHFFFAOYSA-N,YPHMISFOHDHNIV-UHFFFAOYSA-N,-1.13,,-0.0,0,1.0,-1.13,1.0 +175,3-Heptanoyloxymethylphenytoin,-4.496,1,394.471,1,3,9,75.71,-6.301,O=C1N(COC(=O)CCCCCC)C(=O)C(N1)(c2ccccc2)c3ccccc3,CCCCCCC(=O)OCN1C(=O)NC(c2ccccc2)(c2ccccc2)C1=O,FFGKFDRZZAJYCH-UHFFFAOYSA-N,FFGKFDRZZAJYCH-UHFFFAOYSA-N,-6.301,,-0.0,0,0.0,-6.301,0.0 +176,isophorone,-2.015,1,138.20999999999998,0,1,0,17.07,-1.06,CC1=CC(=O)CC(C)(C)C1 ,CC1=CC(=O)CC(C)(C)C1,HJOVHMDZYOCNQW-UHFFFAOYSA-N,HJOVHMDZYOCNQW-UHFFFAOYSA-N,-1.06,,-0.0,0,1.0,-1.06,1.0 +177,Butabarbital,-1.958,1,212.249,2,1,3,75.27000000000001,-2.39,O=C1NC(=O)NC(=O)C1(CC)C(C)CC,CCC(C)C1(CC)C(=O)NC(=O)NC1=O,ZRIHAIZYIMGOAB-UHFFFAOYSA-N,ZRIHAIZYIMGOAB-UHFFFAOYSA-N,-2.39,,-0.0,0,1.0,-2.39,1.0 +178,5-Nonanone,-2.329,1,142.242,0,0,6,17.07,-2.58,CCCCC(=O)CCCC,CCCCC(=O)CCCC,WSGCRAOTEDLMFQ-UHFFFAOYSA-N,WSGCRAOTEDLMFQ-UHFFFAOYSA-N,-2.58,,-0.0,0,1.0,-2.58,1.0 +179,Glutethimide,-2.591,1,217.268,1,2,2,46.17,-2.337,CCC1(CCC(=O)NC1=O)c2ccccc2 ,CCC1(c2ccccc2)CCC(=O)NC1=O,JMBQKKAJIKAWKF-UHFFFAOYSA-N,JMBQKKAJIKAWKF-UHFFFAOYSA-N,-2.337,,-0.0,0,1.0,-2.337,1.0 +180,3-Methylpentane,-2.6,1,86.178,0,0,2,0.0,-3.68,CCC(C)CC,CCC(C)CC,PFEOZHBOMNWTJB-UHFFFAOYSA-N,PFEOZHBOMNWTJB-UHFFFAOYSA-N,-3.68,,-0.0,0,0.0,-3.68,0.0 +181,Etofenprox,-6.896,1,376.496,0,3,9,27.69,-8.6,CCOc1ccc(cc1)C(C)(C)COCc3cccc(Oc2ccccc2)c3,CCOc1ccc(C(C)(C)COCc2cccc(Oc3ccccc3)c2)cc1,YREQHYQNNWYQCJ-UHFFFAOYSA-N,YREQHYQNNWYQCJ-UHFFFAOYSA-N,-8.6,,-0.0,0,0.0,-8.6,0.0 +182,Methaqualone,-3.881,1,250.301,0,3,1,34.89,-2.925,Cc1ccccc1n3c(C)nc2ccccc2c3=O,Cc1ccccc1-n1c(C)nc2ccccc2c1=O,JEYCTXHKTXCGPB-UHFFFAOYSA-N,JEYCTXHKTXCGPB-UHFFFAOYSA-N,-2.925,,-0.0,0,1.0,-2.925,1.0 +183,Chloroacetonitrile,-0.4479999999999999,1,75.498,0,0,0,23.79,-0.092,ClCC#N,N#CCCl,RENMDAKOXSCIGH-UHFFFAOYSA-N,RENMDAKOXSCIGH-UHFFFAOYSA-N,-0.092,,-0.0,0,1.0,-0.092,1.0 +184,Trichloronate,-5.225,1,333.60400000000004,0,1,5,18.46,-5.752000000000001,CCOP(=S)(CC)Oc1cc(Cl)c(Cl)cc1Cl,CCOP(=S)(CC)Oc1cc(Cl)c(Cl)cc1Cl,ANIAQSUBRGXWLS-UHFFFAOYSA-N,ANIAQSUBRGXWLS-UHFFFAOYSA-N,-5.752000000000001,,-0.0,0,0.0,-5.752000000000001,0.0 +185,Ethisterone,-3.858,1,312.45300000000003,1,4,0,37.3,-5.66,CC12CCC(=O)C=C1CCC3C2CCC4(C)C3CCC4(O)C#C ,C#CC1(O)CCC2C3CCC4=CC(=O)CCC4(C)C3CCC21C,CHNXZKVNWQUJIB-UHFFFAOYSA-N,CHNXZKVNWQUJIB-UHFFFAOYSA-N,-5.66,,-0.0,0,0.0,-5.66,0.0 +186,Pyridazine,-0.619,2,80.08999999999999,0,1,0,25.78,1.1,c1ccnnc1,c1ccnnc1,PBMFSQRYOILNGV-UHFFFAOYSA-N,PBMFSQRYOILNGV-UHFFFAOYSA-N,1.1,,0.0,0,1.0,1.1,1.0 +187,"1,2,3,5-Tetrachlorobenzene",-4.621,1,215.894,0,1,0,0.0,-4.63,Clc1cc(Cl)c(Cl)c(Cl)c1,Clc1cc(Cl)c(Cl)c(Cl)c1,QZYNWJQFTJXIRN-UHFFFAOYSA-N,QZYNWJQFTJXIRN-UHFFFAOYSA-N,-4.63,,-0.0,0,0.0,-4.63,0.0 +188,Diosgenin,-5.681,1,414.63000000000017,1,6,0,38.69,-7.32,C1C(O)CCC2(C)CC3CCC4(C)C5(C)CC6OCC(C)CC6OC5CC4C3C=C21,CC1COC2CC3(C)C(CC4C5C=C6CC(O)CCC6(C)CC5CCC43C)OC2C1,CPMZWWWXIWHTMU-UHFFFAOYSA-N,CPMZWWWXIWHTMU-UHFFFAOYSA-N,-7.32,,-0.0,0,0.0,-7.32,0.0 +189,o-Aminophenol,-1.465,1,109.128,2,1,0,46.25,-0.72,Nc1ccccc1O,Nc1ccccc1O,CDAWCLOXVUBKRW-UHFFFAOYSA-N,CDAWCLOXVUBKRW-UHFFFAOYSA-N,-0.72,,-0.0,0,1.0,-0.72,1.0 +190,Ethyl nonanoate,-3.3160000000000003,1,186.295,0,0,8,26.3,-3.8,CCCCCCCCC(=O)OCC,CCCCCCCCC(=O)OCC,BYEVBITUADOIGY-UHFFFAOYSA-N,BYEVBITUADOIGY-UHFFFAOYSA-N,-3.8,,-0.0,0,0.0,-3.8,0.0 +191,metalaxyl,-2.87,1,279.336,0,1,5,55.84,-1.601,COCC(=O)N(C(C)C(=O)OC)c1c(C)cccc1C ,COCC(=O)N(c1c(C)cccc1C)C(C)C(=O)OC,ZQEIXNIJLIKNTD-UHFFFAOYSA-N,ZQEIXNIJLIKNTD-UHFFFAOYSA-N,-1.601,,-0.0,0,1.0,-1.601,1.0 +192,Propoxur,-2.4090000000000003,1,209.245,1,1,3,47.56,-2.05,CNC(=O)Oc1ccccc1OC(C)C,CNC(=O)Oc1ccccc1OC(C)C,ISRUGXGCCGIOQO-UHFFFAOYSA-N,ISRUGXGCCGIOQO-UHFFFAOYSA-N,-2.05,,-0.0,0,1.0,-2.05,1.0 +193,2-Chlorobutane,-1.94,1,92.569,0,0,1,0.0,-1.96,CCC(C)Cl,CCC(C)Cl,BSPCSKHALVHRSR-UHFFFAOYSA-N,BSPCSKHALVHRSR-UHFFFAOYSA-N,-1.96,,-0.0,0,1.0,-1.96,1.0 +194,2-Napthol,-3.08,1,144.17299999999997,1,2,0,20.23,-2.28,Oc1ccc2ccccc2c1,Oc1ccc2ccccc2c1,JWAZRIHNYRIHIV-UHFFFAOYSA-N,JWAZRIHNYRIHIV-UHFFFAOYSA-N,-2.28,,-0.0,0,1.0,-2.28,1.0 +195,Oxadiazon,-5.265,1,345.22600000000017,0,2,3,57.26,-5.696000000000001,CC(C)Oc1cc(c(Cl)cc1Cl)n2nc(oc2=O)C(C)(C)C,CC(C)Oc1cc(-n2nc(C(C)(C)C)oc2=O)c(Cl)cc1Cl,CHNUNORXWHYHNE-UHFFFAOYSA-N,CHNUNORXWHYHNE-UHFFFAOYSA-N,-5.696000000000001,,-0.0,0,0.0,-5.696000000000001,0.0 +196,1-Hexyne ,-1.801,1,82.14599999999999,0,0,2,0.0,-2.36,CCCCC#C,C#CCCCC,CGHIBGNXEGJPQZ-UHFFFAOYSA-N,CGHIBGNXEGJPQZ-UHFFFAOYSA-N,-2.36,,-0.0,0,1.0,-2.36,1.0 +197,1-Nonyne ,-2.864,1,124.227,0,0,5,0.0,-4.24,CCCCCCCC#C,C#CCCCCCCC,OSSQSXOTMIGBCF-UHFFFAOYSA-N,OSSQSXOTMIGBCF-UHFFFAOYSA-N,-4.24,,-0.0,0,0.0,-4.24,0.0 +198,2-Chlorotoluene,-3.297,1,126.586,0,1,0,0.0,-3.52,Cc1ccccc1Cl,Cc1ccccc1Cl,IBSQPLPBRSHTTG-UHFFFAOYSA-N,IBSQPLPBRSHTTG-UHFFFAOYSA-N,-3.52,,-0.0,0,0.0,-3.52,0.0 +199,Diisopropyl ether ,-1.281,1,102.177,0,0,2,9.23,-1.1,CC(C)OC(C)C,CC(C)OC(C)C,ZAFNJMIOTHYJRJ-UHFFFAOYSA-N,ZAFNJMIOTHYJRJ-UHFFFAOYSA-N,-1.1,,-0.0,0,1.0,-1.1,1.0 +200,Dapsone,-2.464,1,248.307,2,2,2,86.18,-3.094,Nc1ccc(cc1)S(=O)(=O)c2ccc(N)cc2,Nc1ccc(S(=O)(=O)c2ccc(N)cc2)cc1,MQJKPEGWNLWLTK-UHFFFAOYSA-N,MQJKPEGWNLWLTK-UHFFFAOYSA-N,-3.094,,-0.0,0,0.0,-3.094,0.0 +201,Methyl hydrazine,0.5429999999999999,1,46.073,2,0,0,38.05,1.34,CNN,CNN,HDZGCSFEDULWCS-UHFFFAOYSA-N,HDZGCSFEDULWCS-UHFFFAOYSA-N,1.34,,0.0,0,1.0,1.34,1.0 +202,Propyne,-0.672,1,40.065000000000005,0,0,0,0.0,-0.41,CC#C,C#CC,MWWATHDPGQKSAR-UHFFFAOYSA-N,MWWATHDPGQKSAR-UHFFFAOYSA-N,-0.41,,-0.0,0,1.0,-0.41,1.0 +203,Phoxim,-4.557,1,298.304,0,1,7,63.84,-4.862,CCOP(=S)(OCC)ON=C(C#N)c1ccccc1,CCOP(=S)(OCC)ON=C(C#N)c1ccccc1,ATROHALUCMTWTB-UHFFFAOYSA-N,ATROHALUCMTWTB-UHFFFAOYSA-N,-4.862,,-0.0,0,0.0,-4.862,0.0 +204,Propetamphos,-2.826,1,281.314,1,0,7,56.790000000000006,-3.408,CCNP(=S)(OC)OC(=CC(=O)OC(C)C)C,CCNP(=S)(OC)OC(C)=CC(=O)OC(C)C,BZNDWPRGXNILMS-UHFFFAOYSA-N,BZNDWPRGXNILMS-UHFFFAOYSA-N,-3.408,,-0.0,0,0.0,-3.408,0.0 +205,Acrolein,-0.184,1,56.064,0,0,1,17.07,0.57,C=CC=O,C=CC=O,HGINCPLSRVDWNT-UHFFFAOYSA-N,HGINCPLSRVDWNT-UHFFFAOYSA-N,0.57,,0.0,0,1.0,0.57,1.0 +206,Hypoxanthine,-0.6559999999999999,1,136.114,2,2,0,74.43,-2.296,O=c1[nH]cnc2nc[nH]c12 ,O=c1[nH]cnc2nc[nH]c12,FDGQSTZJBFJUBT-UHFFFAOYSA-N,FDGQSTZJBFJUBT-UHFFFAOYSA-N,-2.296,,-0.0,0,1.0,-2.296,1.0 +207,6-hydroxyquinoline,-2.725,1,145.161,1,2,0,33.120000000000005,-2.16,Oc2ccc1ncccc1c2 ,Oc1ccc2ncccc2c1,OVYWMEWYEJLIER-UHFFFAOYSA-N,OVYWMEWYEJLIER-UHFFFAOYSA-N,-2.16,,-0.0,0,1.0,-2.16,1.0 +208,Fluorobenzene,-2.514,1,96.10399999999998,0,1,0,0.0,-1.8,Fc1ccccc1,Fc1ccccc1,PYLWMHQQBFSUBP-UHFFFAOYSA-N,PYLWMHQQBFSUBP-UHFFFAOYSA-N,-1.8,,-0.0,0,1.0,-1.8,1.0 +209,1-Chloropropane,-1.585,1,78.542,0,0,1,0.0,-1.47,CCCCl,CCCCl,SNMVRZFUUCLYTO-UHFFFAOYSA-N,SNMVRZFUUCLYTO-UHFFFAOYSA-N,-1.47,,-0.0,0,1.0,-1.47,1.0 +210,Ethyl acetate,-0.77,1,88.106,0,0,1,26.3,-0.04,CCOC(=O)C,CCOC(C)=O,XEKOWRVHYACXOJ-UHFFFAOYSA-N,XEKOWRVHYACXOJ-UHFFFAOYSA-N,-0.04,,-0.0,0,1.0,-0.04,1.0 +211,"2,2-Dimethylpentane",-2.938,1,100.20499999999998,0,0,1,0.0,-4.36,CCCC(C)(C)C,CCCC(C)(C)C,CXOWYJMDMMMMJO-UHFFFAOYSA-N,CXOWYJMDMMMMJO-UHFFFAOYSA-N,-4.36,,-0.0,0,0.0,-4.36,0.0 +212,Pentamethylbenzene,-3.993,1,148.249,0,1,0,0.0,-4.0,Cc1cc(C)c(C)c(C)c1C,Cc1cc(C)c(C)c(C)c1C,BEZDDPMMPIDMGJ-UHFFFAOYSA-N,BEZDDPMMPIDMGJ-UHFFFAOYSA-N,-4.0,,-0.0,0,0.0,-4.0,0.0 +213,eucalyptol,-2.579,1,154.253,0,3,0,9.23,-1.64,CC12CCC(CC1)C(C)(C)O2 ,CC12CCC(CC1)C(C)(C)O2,WEEGYLXZBRQIMU-UHFFFAOYSA-N,WEEGYLXZBRQIMU-UHFFFAOYSA-N,-1.69,0.0707106781186548,-2.9585798816568074,0,1.0,-1.64,1.0 +214,dibutyl sebacate,-4.726,1,314.46600000000007,0,0,15,52.60000000000001,-3.896,CCCCOC(=O)CCCCCCCCC(=O)OCCCC,CCCCOC(=O)CCCCCCCCC(=O)OCCCC,PYGXAGIECVVIOZ-UHFFFAOYSA-N,PYGXAGIECVVIOZ-UHFFFAOYSA-N,-3.896,,-0.0,0,0.0,-3.896,0.0 +215,"4,4'-PCB",-5.299,1,223.102,0,2,1,0.0,-6.56,Clc1ccc(cc1)c2ccc(Cl)cc2 ,Clc1ccc(-c2ccc(Cl)cc2)cc1,YTBRNEUEFCNVHC-UHFFFAOYSA-N,YTBRNEUEFCNVHC-UHFFFAOYSA-N,-6.56,,-0.0,0,0.0,-6.56,0.0 +216,"2,3-Dimethylpyridine",-2.067,1,107.156,0,1,0,12.89,0.38,Cc1cccnc1C,Cc1cccnc1C,HPYNZHMRTTWQTB-UHFFFAOYSA-N,HPYNZHMRTTWQTB-UHFFFAOYSA-N,0.38,,0.0,0,1.0,0.38,1.0 +217,Carvone,-2.042,1,150.22099999999998,0,1,1,17.07,-2.06,CC(=C)C1CC=C(C)C(=O)C1,C=C(C)C1CC=C(C)C(=O)C1,ULDHMXUKGWMISQ-UHFFFAOYSA-N,ULDHMXUKGWMISQ-UHFFFAOYSA-N,-2.06,,-0.0,0,1.0,-2.06,1.0 +218,Carbophenthion,-5.827999999999999,1,342.875,0,1,8,18.46,-5.736000000000001,CCOP(=S)(OCC)SCSc1ccc(Cl)cc1,CCOP(=S)(OCC)SCSc1ccc(Cl)cc1,VEDTXTNSFWUXGQ-UHFFFAOYSA-N,VEDTXTNSFWUXGQ-UHFFFAOYSA-N,-5.736000000000001,,-0.0,0,0.0,-5.736000000000001,0.0 +219,"Etoposide (148-167,25mg/ml)",-3.292,1,588.5620000000001,3,7,5,160.83,-3.571,COc1cc(cc(OC)c1O)C6C2C(COC2=O)C(OC4OC3COC(C)OC3C(O)C4O)c7cc5OCOc5cc67,COc1cc(C2c3cc4c(cc3C(OC3OC5COC(C)OC5C(O)C3O)C3COC(=O)C23)OCO4)cc(OC)c1O,VJJPUSNTGOMMGY-UHFFFAOYSA-N,VJJPUSNTGOMMGY-UHFFFAOYSA-N,-3.571,,-0.0,0,0.0,-3.571,0.0 +220,Perylene,-6.007000000000001,2,252.316,0,5,0,0.0,-8.804,c1cc2cccc3c4cccc5cccc(c(c1)c23)c54,c1cc2cccc3c4cccc5cccc(c(c1)c23)c54,CSHWQDPOILHKBI-UHFFFAOYSA-N,CSHWQDPOILHKBI-UHFFFAOYSA-N,-8.804,,-0.0,0,0.0,-8.804,0.0 +221,"2,4-Dinitrotoluene",-2.604,1,182.135,0,1,2,86.28,-2.82,Cc1ccc(cc1N(=O)=O)N(=O)=O,Cc1ccc([N+](=O)[O-])cc1[N+](=O)[O-],RMBFBMJGBANMMK-UHFFFAOYSA-N,RMBFBMJGBANMMK-UHFFFAOYSA-N,-2.82,,-0.0,0,1.0,-2.82,1.0 +222,2-bromonaphthalene,-4.434,1,207.07,0,2,0,0.0,-4.4,c1c(Br)ccc2ccccc12 ,Brc1ccc2ccccc2c1,APSMUYYLXZULMS-UHFFFAOYSA-N,APSMUYYLXZULMS-UHFFFAOYSA-N,-4.4,0.0,-0.0,0,0.0,-4.4,0.0 +223,Formetanate,-1.846,1,221.26,1,1,3,53.93,-2.34,CNC(=O)Oc1cccc(N=CN(C)C)c1,CNC(=O)Oc1cccc(N=CN(C)C)c1,RMFNNCGOSPBBAD-UHFFFAOYSA-N,RMFNNCGOSPBBAD-UHFFFAOYSA-N,-2.34,,-0.0,0,1.0,-2.34,1.0 +224,6-methoxypteridine,-1.589,1,162.15200000000002,0,2,1,60.790000000000006,-1.139,COc2cnc1ncncc1n2,COc1cnc2ncncc2n1,AWIJPALBOQNRBS-UHFFFAOYSA-N,AWIJPALBOQNRBS-UHFFFAOYSA-N,-1.139,,-0.0,0,1.0,-1.139,1.0 +225,nevirapine,-3.397,1,266.30400000000003,1,4,1,58.120000000000005,-3.19,Cc3ccnc4N(C1CC1)c2ncccc2C(=O)Nc34 ,Cc1ccnc2c1NC(=O)c1cccnc1N2C1CC1,NQDJXKOVJZTUJA-UHFFFAOYSA-N,NQDJXKOVJZTUJA-UHFFFAOYSA-N,-3.19,,-0.0,0,0.0,-3.19,0.0 +226,Isazofos,-3.76,1,313.747,0,1,7,58.4,-3.658,CCOP(=S)(OCC)Oc1nc(Cl)n(n1)C(C)C,CCOP(=S)(OCC)Oc1nc(Cl)n(C(C)C)n1,XRHGWAGWAHHFLF-UHFFFAOYSA-N,XRHGWAGWAHHFLF-UHFFFAOYSA-N,-3.658,,-0.0,0,0.0,-3.658,0.0 +227,"2-Methyl-1,3-Butadiene ",-1.714,1,68.11900000000001,0,0,1,0.0,-2.03,CC(=C)C=C,C=CC(=C)C,RRHGJUQNOFWUDK-UHFFFAOYSA-N,RRHGJUQNOFWUDK-UHFFFAOYSA-N,-2.03,,-0.0,0,1.0,-2.03,1.0 +228,linalool,-2.399,1,154.253,1,0,4,20.23,-1.99,CC(C)=CCCC(O)(C)C=C,C=CC(C)(O)CCC=C(C)C,CDOSHBSSFJOMGT-UHFFFAOYSA-N,CDOSHBSSFJOMGT-UHFFFAOYSA-N,-1.99,,-0.0,0,1.0,-1.99,1.0 +229,Fenthion,-4.265,1,278.335,0,1,5,27.69,-4.57,COP(=S)(OC)Oc1ccc(SC)c(C)c1,COP(=S)(OC)Oc1ccc(SC)c(C)c1,PNVJTZOFSHSLTO-UHFFFAOYSA-N,PNVJTZOFSHSLTO-UHFFFAOYSA-N,-4.57,,-0.0,0,0.0,-4.57,0.0 +230,Cyclohexanol ,-1.261,1,100.161,1,1,0,20.23,-0.44,OC1CCCCC1,OC1CCCCC1,HPXRVTGHNJAIIH-UHFFFAOYSA-N,HPXRVTGHNJAIIH-UHFFFAOYSA-N,-0.44,,-0.0,0,1.0,-0.44,1.0 +231,5-Allyl-5-methylbarbital,-1.013,1,182.179,2,1,2,75.27000000000001,-1.16,O=C1NC(=O)NC(=O)C1(C)CC=C,C=CCC1(C)C(=O)NC(=O)NC1=O,WMSQREUDUHHDDC-UHFFFAOYSA-N,WMSQREUDUHHDDC-UHFFFAOYSA-N,-1.16,,-0.0,0,1.0,-1.16,1.0 +232,Epiandrosterone,-3.882,1,290.447,1,4,0,37.3,-4.16,CC34CCC1C(CCC2CC(O)CCC12C)C3CCC4=O,CC12CCC3C(CCC4CC(O)CCC43C)C1CCC2=O,QGXBDMJGAMFCBF-UHFFFAOYSA-N,QGXBDMJGAMFCBF-UHFFFAOYSA-N,-4.281000000000001,0.1711198410471441,-2.826442419995338,0,0.0,-4.16,0.0 +233,mannitol,0.647,1,182.172,6,0,5,121.38,0.06,OCC(O)C(O)C(O)C(O)CO ,OCC(O)C(O)C(O)C(O)CO,FBPFZTCFMRRESA-UHFFFAOYSA-N,FBPFZTCFMRRESA-UHFFFAOYSA-N,0.5750000000000001,0.728319984622144,89.56521739130436,0,1.0,0.06,1.0 +234,4-Methylbiphenyl,-4.424,1,168.239,0,2,1,0.0,-4.62,Cc1ccc(cc1)c2ccccc2,Cc1ccc(-c2ccccc2)cc1,ZZLCFHIKESPLTH-UHFFFAOYSA-N,ZZLCFHIKESPLTH-UHFFFAOYSA-N,-4.62,,-0.0,0,0.0,-4.62,0.0 +235,Atrazine,-3.069,1,215.688,2,1,4,62.73,-3.85,CCNc1nc(Cl)nc(NC(C)C)n1,CCNc1nc(Cl)nc(NC(C)C)n1,MXWJVTOOROXGIU-UHFFFAOYSA-N,MXWJVTOOROXGIU-UHFFFAOYSA-N,-3.85,,-0.0,0,0.0,-3.85,0.0 +236,Phenylthiourea,-1.7009999999999998,1,152.22199999999998,2,1,1,38.05,-1.77,NC(=S)Nc1ccccc1,NC(=S)Nc1ccccc1,FULZLIGZKMKICU-UHFFFAOYSA-N,FULZLIGZKMKICU-UHFFFAOYSA-N,-1.77,,-0.0,0,1.0,-1.77,1.0 +237,4-Heptanone,-1.62,1,114.188,0,0,4,17.07,-1.3,CCCC(=O)CCC,CCCC(=O)CCC,HCFAJYNVAYBARA-UHFFFAOYSA-N,HCFAJYNVAYBARA-UHFFFAOYSA-N,-1.3,,-0.0,0,1.0,-1.3,1.0 +238,"3,3-Dimethyl-2-butanone",-1.25,1,100.161,0,0,0,17.07,-0.72,CC(=O)C(C)(C)C,CC(=O)C(C)(C)C,PJGSXYOJTGTZAV-UHFFFAOYSA-N,PJGSXYOJTGTZAV-UHFFFAOYSA-N,-0.72,,-0.0,0,1.0,-0.72,1.0 +239,4-Chlorophenol ,-2.761,1,128.558,1,1,0,20.23,-0.7,Oc1ccc(Cl)cc1,Oc1ccc(Cl)cc1,WXNZTHHGJRFXKQ-UHFFFAOYSA-N,WXNZTHHGJRFXKQ-UHFFFAOYSA-N,-0.7,,-0.0,0,1.0,-0.7,1.0 +240,Cyclohexanone,-0.996,1,98.145,0,1,0,17.07,-0.6,O=C1CCCCC1,O=C1CCCCC1,JHIVVAPYMSGYDF-UHFFFAOYSA-N,JHIVVAPYMSGYDF-UHFFFAOYSA-N,-0.6,,-0.0,0,1.0,-0.6,1.0 +241,m-Methylaniline,-1.954,1,107.156,1,1,0,26.02,-0.85,Cc1cccc(N)c1,Cc1cccc(N)c1,JJYPMNFTHPTTDI-UHFFFAOYSA-N,JJYPMNFTHPTTDI-UHFFFAOYSA-N,-0.85,,-0.0,0,1.0,-0.85,1.0 +242,Trichloroacetonitrile,-2.019,1,144.388,0,0,0,23.79,-2.168,ClC(Cl)(Cl)C#N,N#CC(Cl)(Cl)Cl,DRUIESSIVFYOMK-UHFFFAOYSA-N,DRUIESSIVFYOMK-UHFFFAOYSA-N,-2.168,,-0.0,0,1.0,-2.168,1.0 +243,norflurazon,-4.029,1,303.67100000000005,1,2,2,46.92,-4.046,CNc2cnn(c1cccc(c1)C(F)(F)F)c(=O)c2Cl,CNc1cnn(-c2cccc(C(F)(F)F)c2)c(=O)c1Cl,NVGOPFQZYCNLDU-UHFFFAOYSA-N,NVGOPFQZYCNLDU-UHFFFAOYSA-N,-4.046,,-0.0,0,0.0,-4.046,0.0 +244,2-Decanone,-2.617,1,156.269,0,0,7,17.07,-3.3,CCCCCCCCC(=O)C,CCCCCCCCC(C)=O,ZAJNGDIORYACQU-UHFFFAOYSA-N,ZAJNGDIORYACQU-UHFFFAOYSA-N,-3.3,,-0.0,0,0.0,-3.3,0.0 +245,Ipazine,-3.497,1,243.742,1,1,5,53.940000000000005,-3.785,CCN(CC)c1nc(Cl)nc(NC(C)C)n1,CCN(CC)c1nc(Cl)nc(NC(C)C)n1,OWYWGLHRNBIFJP-UHFFFAOYSA-N,OWYWGLHRNBIFJP-UHFFFAOYSA-N,-3.785,,-0.0,0,0.0,-3.785,0.0 +246,Benzocaine,-2.383,1,165.19199999999998,1,1,2,52.32,-2.616,CCOC(=O)c1ccc(N)cc1,CCOC(=O)c1ccc(N)cc1,BLFLLBZGZJTVJG-UHFFFAOYSA-N,BLFLLBZGZJTVJG-UHFFFAOYSA-N,-2.616,,-0.0,0,1.0,-2.616,1.0 +247,"1,2,4-Trichlorobenzene",-4.083,1,181.449,0,1,0,0.0,-3.59,Clc1ccc(Cl)c(Cl)c1,Clc1ccc(Cl)c(Cl)c1,PBKONEOXTCPAFI-UHFFFAOYSA-N,PBKONEOXTCPAFI-UHFFFAOYSA-N,-3.59,,-0.0,0,0.0,-3.59,0.0 +248,Triazolam,-3.948,1,343.2170000000001,0,4,1,43.07,-4.09,Cc3nnc4CN=C(c1ccccc1Cl)c2cc(Cl)ccc2n34,Cc1nnc2n1-c1ccc(Cl)cc1C(c1ccccc1Cl)=NC2,JOFWLTCLBGQGBO-UHFFFAOYSA-N,JOFWLTCLBGQGBO-UHFFFAOYSA-N,-4.09,,-0.0,0,0.0,-4.09,0.0 +249,"1,2-Benzenediol",-1.635,1,110.11199999999998,2,1,0,40.46,0.62,Oc1ccccc1O,Oc1ccccc1O,YCIMNLLNPGFGHC-UHFFFAOYSA-N,YCIMNLLNPGFGHC-UHFFFAOYSA-N,0.62,,0.0,0,1.0,0.62,1.0 +250,Reverse Transcriptase inhibitor 1,-2.794,1,254.293,0,3,1,49.330000000000005,-2.62,CCN2c1ncccc1N(C)C(=O)c3cccnc23 ,CCN1c2ncccc2C(=O)N(C)c2cccnc21,SVFKQHLOBRUZGV-UHFFFAOYSA-N,SVFKQHLOBRUZGV-UHFFFAOYSA-N,-2.62,,-0.0,0,1.0,-2.62,1.0 +251,Dimethyl sulfide,-0.758,1,62.137,0,0,0,0.0,-0.45,CSC,CSC,QMMFVYPAHWMCMS-UHFFFAOYSA-N,QMMFVYPAHWMCMS-UHFFFAOYSA-N,-0.45,,-0.0,0,1.0,-0.45,1.0 +252,2-Bromotoluene,-3.667,1,171.03699999999998,0,1,0,0.0,-2.23,Cc1ccccc1Br,Cc1ccccc1Br,QSSXJPIWXQTSIX-UHFFFAOYSA-N,QSSXJPIWXQTSIX-UHFFFAOYSA-N,-2.23,,-0.0,0,1.0,-2.23,1.0 +253,O-Ethyl carbamate,-0.218,1,89.09400000000001,1,0,1,52.32,0.85,CCOC(=O)N,CCOC(N)=O,JOYRKODLDBILNP-UHFFFAOYSA-N,JOYRKODLDBILNP-UHFFFAOYSA-N,0.85,,0.0,0,1.0,0.85,1.0 +254,megestrol acetate,-4.417,1,384.5160000000002,0,4,2,60.440000000000005,-5.35,CC(=O)OC3(CCC4C2C=C(C)C1=CC(=O)CCC1(C)C2CCC34C)C(C)=O ,CC(=O)OC1(C(C)=O)CCC2C3C=C(C)C4=CC(=O)CCC4(C)C3CCC21C,RQZAXGRLVPAYTJ-UHFFFAOYSA-N,RQZAXGRLVPAYTJ-UHFFFAOYSA-N,-5.35,,-0.0,0,0.0,-5.35,0.0 +255,"2,4-Dimethyl-3-pentanol",-1.6469999999999998,1,116.20399999999998,1,0,2,20.23,-1.22,CC(C)C(O)C(C)C,CC(C)C(O)C(C)C,BAYAKMPRFGNNFW-UHFFFAOYSA-N,BAYAKMPRFGNNFW-UHFFFAOYSA-N,-1.22,,-0.0,0,1.0,-1.22,1.0 +256,Napthalene,-3.468,2,128.17399999999995,0,2,0,0.0,-3.6,c1ccc2ccccc2c1,c1ccc2ccccc2c1,UFWIBTONFRDIAS-UHFFFAOYSA-N,UFWIBTONFRDIAS-UHFFFAOYSA-N,-3.6,,-0.0,0,0.0,-3.6,0.0 +257,N-Ethylaniline,-2.389,1,121.18299999999996,1,1,2,12.03,-1.7,CCNc1ccccc1,CCNc1ccccc1,OJGMBLNIHDZDGS-UHFFFAOYSA-N,OJGMBLNIHDZDGS-UHFFFAOYSA-N,-1.7,,-0.0,0,1.0,-1.7,1.0 +258,Phenytoin,-3.057,1,252.273,2,3,2,58.2,-4.097,O=C1NC(=O)C(N1)(c2ccccc2)c3ccccc3,O=C1NC(=O)C(c2ccccc2)(c2ccccc2)N1,CXOFVDLJLONNDW-UHFFFAOYSA-N,CXOFVDLJLONNDW-UHFFFAOYSA-N,-4.097,,-0.0,0,0.0,-4.097,0.0 +259,"7,12-Dimethylbenz(a)anthracene",-6.297000000000001,1,256.348,0,4,0,0.0,-7.02,Cc1c2ccccc2c(C)c3ccc4ccccc4c13,Cc1c2ccccc2c(C)c2c1ccc1ccccc12,ARSRBNBHOADGJU-UHFFFAOYSA-N,ARSRBNBHOADGJU-UHFFFAOYSA-N,-7.02,,-0.0,0,0.0,-7.02,0.0 +260,Dialifor,-5.026,1,393.85400000000016,0,2,8,55.84,-6.34,CCOP(=S)(OCC)SC(CCl)N1C(=O)c2ccccc2C1=O,CCOP(=S)(OCC)SC(CCl)N1C(=O)c2ccccc2C1=O,MUMQYXACQUZOFP-UHFFFAOYSA-N,MUMQYXACQUZOFP-UHFFFAOYSA-N,-6.34,0.0,-0.0,0,0.0,-6.34,0.0 +261,Methoxychlor,-5.537999999999999,1,345.6529999999999,0,2,4,18.46,-6.89,COc1ccc(cc1)C(c2ccc(OC)cc2)C(Cl)(Cl)Cl,COc1ccc(C(c2ccc(OC)cc2)C(Cl)(Cl)Cl)cc1,IAKOZHOLGAGEJT-UHFFFAOYSA-N,IAKOZHOLGAGEJT-UHFFFAOYSA-N,-6.89,,-0.0,0,0.0,-6.89,0.0 +262,TEFLUBENZURON,-5.462000000000001,1,381.1120000000001,2,2,2,58.2,-7.28,Fc1cccc(F)c1C(=O)NC(=O)Nc2cc(Cl)c(F)c(Cl)c2F ,O=C(NC(=O)c1c(F)cccc1F)Nc1cc(Cl)c(F)c(Cl)c1F,CJDWRQLODFKPEL-UHFFFAOYSA-N,CJDWRQLODFKPEL-UHFFFAOYSA-N,-7.28,,-0.0,0,0.0,-7.28,0.0 +263,3-Pentanoyloxymethylphenytoin,-3.81,1,366.417,1,3,7,75.71,-4.678,O=C1N(COC(=O)CCCC)C(=O)C(N1)(c2ccccc2)c3ccccc3,CCCCC(=O)OCN1C(=O)NC(c2ccccc2)(c2ccccc2)C1=O,XCEYNQCFXXAOBL-UHFFFAOYSA-N,XCEYNQCFXXAOBL-UHFFFAOYSA-N,-4.678,,-0.0,0,0.0,-4.678,0.0 +264,Monuron,-2.6710000000000003,1,198.653,1,1,1,32.34,-2.89,CN(C)C(=O)Nc1ccc(Cl)cc1,CN(C)C(=O)Nc1ccc(Cl)cc1,BMLIZLVNXIYGCK-UHFFFAOYSA-N,BMLIZLVNXIYGCK-UHFFFAOYSA-N,-2.89,,-0.0,0,1.0,-2.89,1.0 +265,Flutriafol,-3.569,1,301.296,1,3,4,50.94,-3.37,OC(Cn1cncn1)(c2ccc(F)cc2)c3ccccc3F,OC(Cn1cncn1)(c1ccc(F)cc1)c1ccccc1F,JWUCHKBSVLQQCO-UHFFFAOYSA-N,JWUCHKBSVLQQCO-UHFFFAOYSA-N,-3.37,,-0.0,0,0.0,-3.37,0.0 +266,triamcinolone diacetate,-3.876,1,478.51300000000026,2,4,4,127.20000000000002,-4.13,CC(=O)OCC(=O)C3(O)C(CC4C2CCC1=CC(=O)C=CC1(C)C2(F)C(O)CC34C)OC(C)=O ,CC(=O)OCC(=O)C1(O)C(OC(C)=O)CC2C3CCC4=CC(=O)C=CC4(C)C3(F)C(O)CC21C,XGMPVBXKDAHORN-UHFFFAOYSA-N,XGMPVBXKDAHORN-UHFFFAOYSA-N,-4.13,,-0.0,0,0.0,-4.13,0.0 +267,1-Bromobutane,-2.303,1,137.01999999999998,0,0,2,0.0,-2.37,CCCCBr,CCCCBr,MPPPKRYCTPRNTB-UHFFFAOYSA-N,MPPPKRYCTPRNTB-UHFFFAOYSA-N,-2.37,,-0.0,0,1.0,-2.37,1.0 +268,"1,2,4,5-Tetrabromobenzene",-6.001,1,393.698,0,1,0,0.0,-6.98,Brc1cc(Br)c(Br)cc1Br,Brc1cc(Br)c(Br)cc1Br,QCKHVNQHBOGZER-UHFFFAOYSA-N,QCKHVNQHBOGZER-UHFFFAOYSA-N,-6.98,,-0.0,0,0.0,-6.98,0.0 +269,4-Methyl-2-pentanone,-1.1840000000000002,1,100.161,0,0,2,17.07,-0.74,CC(C)CC(=O)C,CC(=O)CC(C)C,NTIZESTWPVYFNL-UHFFFAOYSA-N,NTIZESTWPVYFNL-UHFFFAOYSA-N,-0.74,,-0.0,0,1.0,-0.74,1.0 +270,cycloate,-3.35,1,215.362,0,1,3,20.31,-3.4,CCSC(=O)N(CC)C1CCCCC1 ,CCSC(=O)N(CC)C1CCCCC1,DFCAFRGABIXSDS-UHFFFAOYSA-N,DFCAFRGABIXSDS-UHFFFAOYSA-N,-3.4,,-0.0,0,0.0,-3.4,0.0 +271,4-Chloroanisole,-3.057,1,142.585,0,1,1,9.23,-2.78,COc1ccc(Cl)cc1,COc1ccc(Cl)cc1,YRGAYAGBVIXNAQ-UHFFFAOYSA-N,YRGAYAGBVIXNAQ-UHFFFAOYSA-N,-2.78,,-0.0,0,1.0,-2.78,1.0 +272,Deltamethrin,-7.44,1,505.2060000000002,0,3,6,59.32000000000001,-8.402000000000001,CC1(C)C(C=C(Br)Br)C1C(=O)OC(C#N)c2cccc(Oc3ccccc3)c2,CC1(C)C(C=C(Br)Br)C1C(=O)OC(C#N)c1cccc(Oc2ccccc2)c1,OWZREIFADZCYQD-UHFFFAOYSA-N,OWZREIFADZCYQD-UHFFFAOYSA-N,-8.402000000000001,,-0.0,0,0.0,-8.402000000000001,0.0 +273,Talbutal,-2.06,1,224.26,2,1,4,75.27000000000001,-2.016,CCC(C)C1(CC=C)C(=O)NC(=O)NC1=O,C=CCC1(C(C)CC)C(=O)NC(=O)NC1=O,BJVVMKUXKQHWJK-UHFFFAOYSA-N,BJVVMKUXKQHWJK-UHFFFAOYSA-N,-2.016,,-0.0,0,1.0,-2.016,1.0 +274,Fenitrothion,-3.845,1,277.238,0,1,5,70.83000000000001,-4.04,COP(=S)(OC)Oc1ccc(N(=O)=O)c(C)c1,COP(=S)(OC)Oc1ccc([N+](=O)[O-])c(C)c1,ZNOLGFHPUIJIMJ-UHFFFAOYSA-N,ZNOLGFHPUIJIMJ-UHFFFAOYSA-N,-4.04,,-0.0,0,0.0,-4.04,0.0 +275,1-Iodonapthalene,-4.888999999999999,1,254.07,0,2,0,0.0,-4.55,Ic1cccc2ccccc12,Ic1cccc2ccccc12,NHPPIJMARIVBGU-UHFFFAOYSA-N,NHPPIJMARIVBGU-UHFFFAOYSA-N,-4.55,,-0.0,0,0.0,-4.55,0.0 +277,Ethanethiol,-0.968,1,62.137,1,0,0,0.0,-0.6,CCS,CCS,DNJIEGIFACGWOD-UHFFFAOYSA-N,DNJIEGIFACGWOD-UHFFFAOYSA-N,-0.6,,-0.0,0,1.0,-0.6,1.0 +278,"1,1,2-Trichloroethane",-1.961,1,133.405,0,0,1,0.0,-1.48,ClCC(Cl)Cl,ClCC(Cl)Cl,UBOXGVDOUJQMTN-UHFFFAOYSA-N,UBOXGVDOUJQMTN-UHFFFAOYSA-N,-1.48,,-0.0,0,1.0,-1.48,1.0 +279,Pyrolan,-3.141,1,245.282,0,2,2,47.36000000000001,-2.09,CN(C)C(=O)Oc1cc(C)nn1c2ccccc2,Cc1cc(OC(=O)N(C)C)n(-c2ccccc2)n1,GEDIWDLJKRKBFT-UHFFFAOYSA-N,GEDIWDLJKRKBFT-UHFFFAOYSA-N,-2.09,,-0.0,0,1.0,-2.09,1.0 +280,o-Hydroxybenzamide,-1.942,1,137.13799999999998,2,1,1,63.32000000000001,-1.82,NC(=O)c1ccccc1O,NC(=O)c1ccccc1O,SKZKKFZAGNVIMN-UHFFFAOYSA-N,SKZKKFZAGNVIMN-UHFFFAOYSA-N,-1.82,,-0.0,0,1.0,-1.82,1.0 +281,o-Nitrotoluene,-2.589,1,137.138,0,1,1,43.14,-2.33,Cc1ccccc1N(=O)=O,Cc1ccccc1[N+](=O)[O-],PLAZTCDQAHEYBI-UHFFFAOYSA-N,PLAZTCDQAHEYBI-UHFFFAOYSA-N,-2.33,,-0.0,0,1.0,-2.33,1.0 +282,"5,5-Diisopropylbarbital",-1.942,1,212.249,2,1,2,75.27000000000001,-2.766,O=C1NC(=O)NC(=O)C1(C(C)C)C(C)C,CC(C)C1(C(C)C)C(=O)NC(=O)NC1=O,NSQYIEOSFPLTJA-UHFFFAOYSA-N,NSQYIEOSFPLTJA-UHFFFAOYSA-N,-2.766,,-0.0,0,1.0,-2.766,1.0 +283,2-Ethyltoluene,-3.2960000000000003,1,120.19499999999996,0,1,1,0.0,-3.21,CCc1ccccc1C,CCc1ccccc1C,HYFLWBNQFMXCPA-UHFFFAOYSA-N,HYFLWBNQFMXCPA-UHFFFAOYSA-N,-3.21,,-0.0,0,0.0,-3.21,0.0 +284,1-Chloroheptane,-3.003,1,134.65,0,0,5,0.0,-4.0,CCCCCCCCl,CCCCCCCCl,DZMDPHNGKBEVRE-UHFFFAOYSA-N,DZMDPHNGKBEVRE-UHFFFAOYSA-N,-4.0,,-0.0,0,0.0,-4.0,0.0 +285,Barbital,-1.265,1,184.195,2,1,2,75.27000000000001,-2.4,O=C1NC(=O)NC(=O)C1(CC)CC,CCC1(CC)C(=O)NC(=O)NC1=O,FTOAOBMCPZCFFF-UHFFFAOYSA-N,FTOAOBMCPZCFFF-UHFFFAOYSA-N,-2.4,,-0.0,0,1.0,-2.4,1.0 +286,Bibenzyl ,-4.301,2,182.266,0,2,3,0.0,-4.62,C(Cc1ccccc1)c2ccccc2,c1ccc(CCc2ccccc2)cc1,QWUWMCYKGHVNAV-UHFFFAOYSA-N,QWUWMCYKGHVNAV-UHFFFAOYSA-N,-4.62,,-0.0,0,0.0,-4.62,0.0 +287,"1,1,2,2-Tetrachloroethane",-2.549,1,167.85,0,0,1,0.0,-1.74,ClC(Cl)C(Cl)Cl,ClC(Cl)C(Cl)Cl,QPFMBZIOSGYJDE-UHFFFAOYSA-N,QPFMBZIOSGYJDE-UHFFFAOYSA-N,-1.74,,-0.0,0,1.0,-1.74,1.0 +288,RTI 23,-4.228,1,283.331,1,3,2,54.46,-5.153,CCN2c1cc(OC)cc(C)c1NC(=O)c3cccnc23 ,CCN1c2cc(OC)cc(C)c2NC(=O)c2cccnc21,PVVKNINYCJVIFZ-UHFFFAOYSA-N,PVVKNINYCJVIFZ-UHFFFAOYSA-N,-5.153,,-0.0,0,0.0,-5.153,0.0 +289,2-Methylphenanthrene,-4.87,1,192.261,0,3,0,0.0,-5.84,Cc1ccc2c(ccc3ccccc32)c1,Cc1ccc2c(ccc3ccccc32)c1,KANLOADZXMMCQA-UHFFFAOYSA-N,KANLOADZXMMCQA-UHFFFAOYSA-N,-5.84,,-0.0,0,0.0,-5.84,0.0 +290,dibutylphthalate,-4.378,1,278.348,0,1,8,52.60000000000001,-4.4,CCCCOC(=O)c1ccccc1C(=O)OCCCC ,CCCCOC(=O)c1ccccc1C(=O)OCCCC,DOIRQSBPFJWKBE-UHFFFAOYSA-N,DOIRQSBPFJWKBE-UHFFFAOYSA-N,-4.4,,-0.0,0,0.0,-4.4,0.0 +291,tetrachloroguaiacol,-4.299,1,261.919,1,1,1,29.46,-4.02,COc1c(O)c(Cl)c(Cl)c(Cl)c1Cl ,COc1c(O)c(Cl)c(Cl)c(Cl)c1Cl,YZZVKLJKDFFSFL-UHFFFAOYSA-N,YZZVKLJKDFFSFL-UHFFFAOYSA-N,-4.02,,-0.0,0,0.0,-4.02,0.0 +292,Dimecron,-2.426,1,299.6909999999999,0,0,8,65.07000000000001,0.523,CCN(CC)C(=O)C(=CCOP(=O)(OC)OC)Cl,CCN(CC)C(=O)C(Cl)=CCOP(=O)(OC)OC,RWXKUYSKUSXRGL-UHFFFAOYSA-N,RWXKUYSKUSXRGL-UHFFFAOYSA-N,0.523,,0.0,0,1.0,0.523,1.0 +293,Equilin,-3.555,1,268.356,1,4,0,37.3,-5.282,CC34CCC1C(=CCc2cc(O)ccc12)C3CCC4=O,CC12CCC3C(=CCc4cc(O)ccc43)C1CCC2=O,WKRLQDKEXYKHJB-UHFFFAOYSA-N,WKRLQDKEXYKHJB-UHFFFAOYSA-N,-5.282,,-0.0,0,0.0,-5.282,0.0 +294,Chlorimuron-ethyl (ph 7),-3.719,1,414.82700000000017,1,2,8,127.79,-4.5760000000000005,CCOC(=O)c1ccccc1S(=O)(=O)NN(C=O)c2nc(Cl)cc(OC)n2,CCOC(=O)c1ccccc1S(=O)(=O)NN(C=O)c1nc(Cl)cc(OC)n1,MBDMKWJEKDHRRP-UHFFFAOYSA-N,MBDMKWJEKDHRRP-UHFFFAOYSA-N,-4.5760000000000005,,-0.0,0,0.0,-4.5760000000000005,0.0 +295,p-Nitroanisole,-2.522,1,153.13699999999997,0,1,2,52.37,-2.41,COc1ccc(cc1)N(=O)=O,COc1ccc([N+](=O)[O-])cc1,BNUHAJGCKIQFGE-UHFFFAOYSA-N,BNUHAJGCKIQFGE-UHFFFAOYSA-N,-2.41,,-0.0,0,1.0,-2.41,1.0 +296,1-Chlorohexane,-2.648,1,120.623,0,0,4,0.0,-3.12,CCCCCCCl,CCCCCCCl,MLRVZFYXUZQSRU-UHFFFAOYSA-N,MLRVZFYXUZQSRU-UHFFFAOYSA-N,-3.12,,-0.0,0,0.0,-3.12,0.0 +297,"2,2',3,3',4,4',5,5'-PCB",-8.468,1,429.77200000000016,0,2,1,0.0,-9.16,Clc1cc(c(Cl)c(Cl)c1Cl)c2cc(Cl)c(Cl)c(Cl)c2Cl,Clc1cc(-c2cc(Cl)c(Cl)c(Cl)c2Cl)c(Cl)c(Cl)c1Cl,DTMRKGRREZAYAP-UHFFFAOYSA-N,DTMRKGRREZAYAP-UHFFFAOYSA-N,-9.16,,-0.0,0,0.0,-9.16,0.0 +298,Raffinose,0.496,1,504.4380000000001,11,3,8,268.67999999999995,-0.41,OCC1OC(CO)(OC2OC(COC3OC(CO)C(O)C(O)C3O)C(O)C(O)C2O)C(O)C1O,OCC1OC(OCC2OC(OC3(CO)OC(CO)C(O)C3O)C(O)C(O)C2O)C(O)C(O)C1O,MUPFEKGTMRGPLJ-UHFFFAOYSA-N,MUPFEKGTMRGPLJ-UHFFFAOYSA-N,-0.41,,-0.0,0,1.0,-0.41,1.0 +299,hexacosane,-9.702,1,366.7180000000002,0,0,23,0.0,-8.334,CCCCCCCCCCCCCCCCCCCCCCCCCC,CCCCCCCCCCCCCCCCCCCCCCCCCC,HMSWAIKSFDFLKN-UHFFFAOYSA-N,HMSWAIKSFDFLKN-UHFFFAOYSA-N,-8.334,,-0.0,0,0.0,-8.334,0.0 +300,RTI 5,-3.471,1,253.30499999999995,0,3,1,36.44,-3.324,CCN2c1ccccc1N(C)C(=O)c3cccnc23 ,CCN1c2ccccc2N(C)C(=O)c2cccnc21,QIBWCUCLHZVYNL-UHFFFAOYSA-N,QIBWCUCLHZVYNL-UHFFFAOYSA-N,-3.324,,-0.0,0,0.0,-3.324,0.0 +301,"1,1-Dichloroethane",-1.5759999999999998,1,98.96,0,0,0,0.0,-1.29,CC(Cl)Cl,CC(Cl)Cl,SCYULBFZEHDVBN-UHFFFAOYSA-N,SCYULBFZEHDVBN-UHFFFAOYSA-N,-1.29,,-0.0,0,1.0,-1.29,1.0 +302,Sulfanilamide,-0.954,1,172.20899999999995,2,1,1,86.18,-1.34,Nc1ccc(cc1)S(N)(=O)=O,Nc1ccc(S(N)(=O)=O)cc1,FDDDEECHVMSUSB-UHFFFAOYSA-N,FDDDEECHVMSUSB-UHFFFAOYSA-N,-1.34,,-0.0,0,1.0,-1.34,1.0 +303,Isopropalin,-5.306,1,309.36600000000004,0,1,8,89.51999999999998,-6.49,CCCN(CCC)c1c(cc(cc1N(=O)=O)C(C)C)N(=O)=O,CCCN(CCC)c1c([N+](=O)[O-])cc(C(C)C)cc1[N+](=O)[O-],NEKOXWSIMFDGMA-UHFFFAOYSA-N,NEKOXWSIMFDGMA-UHFFFAOYSA-N,-6.49,,-0.0,0,0.0,-6.49,0.0 +304,Lindane,-4.009,1,290.832,0,1,0,0.0,-4.64,ClC1C(Cl)C(Cl)C(Cl)C(Cl)C1Cl,ClC1C(Cl)C(Cl)C(Cl)C(Cl)C1Cl,JLYXXMFPNIAWKQ-UHFFFAOYSA-N,JLYXXMFPNIAWKQ-UHFFFAOYSA-N,-4.64,,-0.0,0,0.0,-4.64,0.0 +305,Isofenphos,-4.538,1,345.4010000000002,1,1,8,56.790000000000006,-4.194,CCOP(=S)(NC(C)C)Oc1ccccc1C(=O)OC(C)C,CCOP(=S)(NC(C)C)Oc1ccccc1C(=O)OC(C)C,HOQADATXFBOEGG-UHFFFAOYSA-N,HOQADATXFBOEGG-UHFFFAOYSA-N,-4.194,,-0.0,0,0.0,-4.194,0.0 +306,"1,2,3-Trichlorobenzene",-4.008,1,181.449,0,1,0,0.0,-4.0,Clc1cccc(Cl)c1Cl,Clc1cccc(Cl)c1Cl,RELMFMZEBKVZJC-UHFFFAOYSA-N,RELMFMZEBKVZJC-UHFFFAOYSA-N,-4.0,,-0.0,0,0.0,-4.0,0.0 +307,Tetrachloromethane,-2.607,1,153.823,0,0,0,0.0,-2.31,ClC(Cl)(Cl)Cl,ClC(Cl)(Cl)Cl,VZGDMQKNWNREIO-UHFFFAOYSA-N,VZGDMQKNWNREIO-UHFFFAOYSA-N,-2.31,,-0.0,0,1.0,-2.31,1.0 +308,"3,4-Dichloronitrobenzene",-3.448,1,192.001,0,1,1,43.14,-3.2,O=N(=O)c1cc(Cl)c(Cl)cc1,O=[N+]([O-])c1ccc(Cl)c(Cl)c1,NTBYINQTYWZXLH-UHFFFAOYSA-N,NTBYINQTYWZXLH-UHFFFAOYSA-N,-3.2,,-0.0,0,0.0,-3.2,0.0 +309,Cyclooctanol,-2.14,1,128.215,1,1,0,20.23,-1.29,OC1CCCCCCC1,OC1CCCCCCC1,FHADSMKORVFYOS-UHFFFAOYSA-N,FHADSMKORVFYOS-UHFFFAOYSA-N,-1.29,,-0.0,0,1.0,-1.29,1.0 +310,17a-Methyltestosterone,-4.073,1,302.4580000000001,1,4,0,37.3,-3.999,CC1(O)CCC2C3CCC4=CC(=O)CCC4(C)C3CCC21C,CC12CCC(=O)C=C1CCC1C2CCC2(C)C1CCC2(C)O,GCKMFJBGXUYNAG-UHFFFAOYSA-N,GCKMFJBGXUYNAG-UHFFFAOYSA-N,-3.999,,-0.0,0,0.0,-3.999,0.0 +311,Dulcin,-2.167,1,180.207,2,1,3,64.35,-2.17,CCOc1ccc(NC(N)=O)cc1,CCOc1ccc(NC(N)=O)cc1,GGLIEWRLXDLBBF-UHFFFAOYSA-N,GGLIEWRLXDLBBF-UHFFFAOYSA-N,-2.17,,-0.0,0,1.0,-2.17,1.0 +312,"trans-1,4-Dimethylcyclohexane",-3.305,1,112.216,0,1,0,0.0,-4.47,C/C1CCC(\C)CC1,CC1CCC(C)CC1,QRMPKOFEUHIBNM-UHFFFAOYSA-N,QRMPKOFEUHIBNM-UHFFFAOYSA-N,-4.47,,-0.0,0,0.0,-4.47,0.0 +313,"1,7-phenantroline",-2.994,2,180.21,0,3,0,25.78,-2.68,c1cnc2c(c1)ccc3ncccc23,c1cnc2c(c1)ccc1ncccc12,OZKOMUDCMCEDTM-UHFFFAOYSA-N,OZKOMUDCMCEDTM-UHFFFAOYSA-N,-2.68,,-0.0,0,1.0,-2.68,1.0 +314,Methyl t-butyl ether ,-0.984,1,88.14999999999999,0,0,0,9.23,-0.24,COC(C)(C)C,COC(C)(C)C,BZLVMXJERCGZMT-UHFFFAOYSA-N,BZLVMXJERCGZMT-UHFFFAOYSA-N,-0.24,,-0.0,0,1.0,-0.24,1.0 +315,Anethole,-3.254,1,148.20499999999998,0,1,2,9.23,-3.13,COc1ccc(C=CC)cc1,CC=Cc1ccc(OC)cc1,RUVINXPYWBROJD-UHFFFAOYSA-N,RUVINXPYWBROJD-UHFFFAOYSA-N,-3.13,,-0.0,0,0.0,-3.13,0.0 +316,1-Hexadecanol,-4.94,1,242.44699999999992,1,0,14,20.23,-7.0,CCCCCCCCCCCCCCCCO,CCCCCCCCCCCCCCCCO,BXWNKGSJHAJOGX-UHFFFAOYSA-N,BXWNKGSJHAJOGX-UHFFFAOYSA-N,-7.0,,-0.0,0,0.0,-7.0,0.0 +317,uracil,-0.441,1,112.088,2,1,0,65.72,-1.4880000000000002,O=c1cc[nH]c(=O)[nH]1 ,O=c1cc[nH]c(=O)[nH]1,ISAKRJDGNUQOIC-UHFFFAOYSA-N,ISAKRJDGNUQOIC-UHFFFAOYSA-N,-1.4880000000000002,,-0.0,0,1.0,-1.4880000000000002,1.0 diff --git a/atomsci/ddm/test/integrative/import_transformer/data/scaled_descriptors/H1_std_short_with_rdkit_scaled_descriptors.csv b/atomsci/ddm/test/integrative/import_transformer/data/scaled_descriptors/H1_std_short_with_rdkit_scaled_descriptors.csv new file mode 100644 index 00000000..606cc9df --- /dev/null +++ b/atomsci/ddm/test/integrative/import_transformer/data/scaled_descriptors/H1_std_short_with_rdkit_scaled_descriptors.csv @@ -0,0 +1,241 @@ +compound_id,base_rdkit_smiles,pKi_mean,MaxEStateIndex_per_heavyatom,MinEStateIndex_per_heavyatom,MaxAbsEStateIndex_per_heavyatom,MinAbsEStateIndex,qed_per_heavyatom,MolWt_per_heavyatom,HeavyAtomMolWt_per_heavyatom,ExactMolWt_per_heavyatom,NumValenceElectrons,NumRadicalElectrons,MaxPartialCharge,MinPartialCharge,MaxAbsPartialCharge,MinAbsPartialCharge,FpDensityMorgan1_per_heavyatom,FpDensityMorgan2_per_heavyatom,FpDensityMorgan3_per_heavyatom,BalabanJ,BertzCT_per_heavyatom,Chi0_per_heavyatom,Chi0n_per_heavyatom,Chi0v_per_heavyatom,Chi1_per_heavyatom,Chi1n_per_heavyatom,Chi1v_per_heavyatom,Chi2n_per_heavyatom,Chi2v_per_heavyatom,Chi3n_per_heavyatom,Chi3v_per_heavyatom,Chi4n_per_heavyatom,Chi4v_per_heavyatom,HallKierAlpha_per_heavyatom,AvgIpc,Kappa1_per_heavyatom,Kappa2_per_heavyatom,Kappa3,LabuteASA_per_heavyatom,PEOE_VSA1_per_heavyatom,PEOE_VSA10_per_heavyatom,PEOE_VSA11_per_heavyatom,PEOE_VSA12_per_heavyatom,PEOE_VSA13,PEOE_VSA14,PEOE_VSA2_per_heavyatom,PEOE_VSA3,PEOE_VSA4,PEOE_VSA5,PEOE_VSA6_per_heavyatom,PEOE_VSA7_per_heavyatom,PEOE_VSA8_per_heavyatom,PEOE_VSA9_per_heavyatom,SMR_VSA1_per_heavyatom,SMR_VSA10_per_heavyatom,SMR_VSA2,SMR_VSA3_per_heavyatom,SMR_VSA4,SMR_VSA5_per_heavyatom,SMR_VSA6,SMR_VSA7,SMR_VSA8,SMR_VSA9,SlogP_VSA1_per_heavyatom,SlogP_VSA10,SlogP_VSA11,SlogP_VSA12,SlogP_VSA2_per_heavyatom,SlogP_VSA3_per_heavyatom,SlogP_VSA4,SlogP_VSA5_per_heavyatom,SlogP_VSA6,SlogP_VSA7,SlogP_VSA8,SlogP_VSA9,TPSA_per_heavyatom,EState_VSA1_per_heavyatom,EState_VSA10_per_heavyatom,EState_VSA11_per_heavyatom,EState_VSA2,EState_VSA3,EState_VSA4,EState_VSA5,EState_VSA6,EState_VSA7,EState_VSA8,EState_VSA9_per_heavyatom,VSA_EState1_per_heavyatom,VSA_EState10_per_heavyatom,VSA_EState2_per_heavyatom,VSA_EState3_per_heavyatom,VSA_EState4_per_heavyatom,VSA_EState5_per_heavyatom,VSA_EState6_per_heavyatom,VSA_EState7_per_heavyatom,VSA_EState8_per_heavyatom,VSA_EState9_per_heavyatom,FractionCSP3,HeavyAtomCount,NHOHCount,NOCount,NumAliphaticCarbocycles,NumAliphaticHeterocycles,NumAliphaticRings,NumAromaticCarbocycles,NumAromaticHeterocycles,NumAromaticRings,NumHAcceptors,NumHDonors,NumHeteroatoms,NumRotatableBonds,NumSaturatedCarbocycles,NumSaturatedHeterocycles,NumSaturatedRings,RingCount,MolLogP,MolMR_per_heavyatom,fr_Al_COO,fr_Al_OH,fr_Al_OH_noTert,fr_ArN,fr_Ar_COO,fr_Ar_N,fr_Ar_NH,fr_Ar_OH,fr_COO,fr_COO2,fr_C_O,fr_C_O_noCOO,fr_C_S,fr_HOCCN,fr_Imine,fr_NH0,fr_NH1,fr_NH2,fr_N_O,fr_Ndealkylation1,fr_Ndealkylation2,fr_Nhpyrrole,fr_SH,fr_aldehyde,fr_alkyl_carbamate,fr_alkyl_halide,fr_allylic_oxid,fr_amide,fr_amidine,fr_aniline,fr_aryl_methyl,fr_azide,fr_azo,fr_barbitur,fr_benzene,fr_benzodiazepine,fr_bicyclic,fr_diazo,fr_dihydropyridine,fr_epoxide,fr_ester,fr_ether,fr_furan,fr_guanido,fr_halogen,fr_hdrzine,fr_hdrzone,fr_imidazole,fr_imide,fr_isocyan,fr_isothiocyan,fr_ketone,fr_ketone_Topliss,fr_lactam,fr_lactone,fr_methoxy,fr_morpholine,fr_nitrile,fr_nitro,fr_nitro_arom,fr_nitro_arom_nonortho,fr_nitroso,fr_oxazole,fr_oxime,fr_para_hydroxylation,fr_phenol,fr_phenol_noOrthoHbond,fr_phos_acid,fr_phos_ester,fr_piperdine,fr_piperzine,fr_priamide,fr_prisulfonamd,fr_pyridine,fr_quatN,fr_sulfide,fr_sulfonamd,fr_sulfone,fr_term_acetylene,fr_tetrazole,fr_thiazole,fr_thiocyan,fr_thiophene,fr_unbrch_alkane,fr_urea +CHEMBL2207659,Cc1cc(Cl)ccc1OC1CCN(C[C@H](O)CNC(=O)c2c[nH]nc2C(F)(F)F)CC1,7.599980364934843,0.43874562960605656,-0.18316170267975374,0.43874562960605656,0.6028811285675255,0.01905292447644109,14.867225806451602,14.086838709677423,14.843512998967764,170,0,0.4354635549704211,-0.49006041498566405,0.49006041498566405,0.4354635549704211,0.05619146722164412,0.08116545265348594,0.10301768990634755,2.349431362092717,60.02842294225498,1.4073185110653155,1.2427566821105913,0.4929479384337672,0.7792412277908787,0.625495115892252,0.25695605110339553,0.16568276664168954,0.17787516899682587,0.09733882459609847,0.1034350257736666,0.057724985029701005,0.06229713591287713,-0.07419354838709676,3.326335289008119,0.2374133238833272,0.318805313913497,6.344500622466353,6.96758826769709,0.6469482009369715,0.3815977374268998,0.27476168230660847,0.04616773087847207,5.907179729351506,6.176298517443475,0.31891108844048077,0.0,18.269926951325495,0.0,0.3742238674268553,1.3964015978916553,1.7742847900655732,0.7293399344518948,1.9168086228462777,0.5647780522446458,1.4311996572326342,0.6580681112910637,0.0,1.2236798868160608,25.98743873726378,46.14361562578842,0.0,5.749511833283905,0.3240863324867234,13.171245143024459,5.749511833283905,11.600939890232516,2.118869692438378,0.1992354360465637,6.851892117295679,2.0370047627273458,24.300151333804646,7.846317470397728,0.0,0.0,2.918709677419355,4.420104905119595,0.5795413653902026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.20748999940825,1.5928585915321367,7.827847594629559,0.18621375464506043,0.3806642549820143,0.11031723573510652,-0.19043945456445666,-0.1389434610091266,-0.12891876556744458,-0.8482392643387194,-0.7379284178094856,0.0,0.5,31,3,7,0,1,1,1,1,2,5,3,11,9,0,1,1,3,3.02442,3.490603225806453,0,1,0,0,0,2,1,0,0,0,1,1,0,1,0,2,2,0,0,0,1,1,0,0,0,3,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1935573,CN1CCN(c2nc(N)nc3cc(-c4ccco4)ccc23)CC1,5.192329698769516,0.3769391554931151,-0.1676386209921192,0.3769391554931151,0.2475478447551862,0.034019766917972885,13.450999999999985,12.618304347826086,13.441693922956544,118,0,0.22206402554279359,-0.46437409740133856,0.46437409740133856,0.22206402554279359,0.05671077504725898,0.09640831758034027,0.12854442344045366,2.1989196901440127,68.27084072467174,1.403546712234958,1.3106224464332024,0.48453548991146317,0.8193478653307645,0.6744500111614586,0.2659966550310275,0.18356968141146504,0.18356968141146504,0.12175005403938155,0.12175005403938155,0.08054971893325467,0.08054971893325467,-0.11304347826086954,3.0645880806772663,0.18568382682991016,0.2413196322336399,2.614228489024196,6.995338143774104,0.8668124945426338,0.5629942936034648,0.12276887637636527,0.2586234469994128,0.0,0.0,0.0,4.9839785209472085,4.9839785209472085,0.0,0.2627138568549259,1.3541522491711055,2.023148884200745,1.0475105373038687,1.3279882847218907,0.9856142169957645,0.0,0.6464289901193432,0.0,0.0,43.582892344122776,36.451308173157216,0.0,11.323698910571437,0.4617229002859457,11.766202058821523,0.0,0.0,2.079614452621344,0.0,0.0,1.0131693676040754,40.86845911021056,2.8236841566564013,22.226623842652497,0.0,3.1052173913043477,4.709013454044685,0.0,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.3279882847218907,6.9480036958543145,0.0,0.28923737037060904,-0.03698412698412695,-0.07484434185782883,-0.12551590255689674,-0.1880006163709258,-0.03538781708456238,-0.8308560874575409,0.0,0.29411764705882354,23,2,6,0,1,1,1,2,3,6,1,6,4,0,1,1,4,2.2237999999999998,3.9722782608695666,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL28833,CCCc1ccc(N2CCN(Cc3c[nH]c4ncccc34)CC2)cc1,5.0,0.35519400873409923,-0.16783432383513563,0.35519400873409923,0.0712343937133908,0.030795111479624472,13.378679999999983,12.330360000000002,13.368629873280028,130,0,0.16747672292240906,-0.3689656264186583,0.3689656264186583,0.16747672292240906,0.0512,0.0848,0.1168,2.072267149595895,75.37146197150588,1.5977884435288225,1.5315541752799933,0.49155417527999334,0.9013349978319221,0.7873312629199899,0.2694427190999916,0.17897058314499203,0.17897058314499203,0.11784597134749386,0.11784597134749386,0.07448529157249593,0.07448529157249593,-0.09319999999999999,3.2033149264098664,0.15949696042260122,0.2910674473959148,3.5395246294393687,7.42478531991635,0.3950765200431892,0.2258870888307091,0.056473683133128026,0.0,0.0,0.0,0.19599638923401913,4.9839785209472085,0.0,0.0,1.012386177358066,1.6667801086150618,2.9489424225028182,0.6579641069617055,1.4272322393033479,0.6688315083966434,0.0,0.5944356608810776,0.0,1.0437840641708152,30.887348468114254,59.72720565100328,0.0,0.0,0.19599638923401913,5.687386274683562,0.0,0.0,1.6339332103716289,0.514791383425813,0.0,2.3448273562509843,48.60030266760929,1.4118420783282006,11.033401435232523,0.0,1.4063999999999999,5.533194126566181,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.4272322393033479,8.662984592385902,0.0,0.09999270314102145,-0.03453641577555161,-0.20271098993142092,0.0,-0.33043091929988433,-0.3931818024493113,-0.975450501404086,0.0,0.38095238095238093,25,1,4,0,1,1,1,2,3,3,1,4,6,0,1,1,4,3.837600000000003,4.160828000000001,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2146808,COCCN1CCC[C@@H]1Cn1nc(Cc2ccc(Cl)cc2)c2cccnc2c1=O,9.0,0.48566455663591585,-0.16127780580218293,0.48566455663591585,0.6845800833193363,0.020559741351444255,14.238655172413782,13.36968965517242,14.21264150758623,152,0,0.29278637004160046,-0.38336010618732247,0.38336010618732247,0.29278637004160046,0.04994054696789536,0.07966706302021404,0.10820451843043995,2.273117459920625,72.59210098120111,1.4579853234966909,1.3442522564116133,0.5082498062743187,0.8224702243672705,0.6910416915241462,0.2730404664554989,0.17414861825068514,0.18718187594065852,0.11413957746045965,0.12065620630544632,0.07372737508613478,0.07698568950862814,-0.07862068965517241,3.0809144163273734,0.2035580149034952,0.3113732499829384,4.498087395385941,7.232710636620929,0.1633401018551741,0.19023105922814695,0.0,0.0,5.559266895052007,0.0,0.5061526012368796,4.681802935145185,5.098681808301038,0.0,0.8167509415710037,1.6888219244594784,1.985714702405893,1.3082894037401305,1.3450285123467436,0.7759953387004681,0.0,0.6780818274222038,0.0,1.090811270919094,26.590657070430765,69.06122433620514,0.0,0.0,0.1916988584500692,0.0,0.0,11.600939890232516,1.80251457013877,0.6071257772222542,0.0,2.009385972188268,47.22194464086635,5.022633313741326,10.902924932081056,0.0,2.0775862068965516,4.930189954389468,0.2125964048359325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.819523283048294,1.534453284079925,7.289109666524386,0.20158134511864292,0.5710965715540093,0.05577070963205597,-0.2108762469842867,0.0,-0.3934038659853747,-0.4684953404352817,-0.6180435427940771,-0.13267799394808244,0.4090909090909091,29,0,6,0,1,1,1,2,3,6,0,7,8,0,1,1,4,3.1465000000000014,3.949206896551726,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2207663,Cc1cc(Cl)ccc1OC1CCN(C[C@H](O)CNC(=O)c2c[nH]c(=O)cc2C(F)(F)F)CC1,8.0,0.42394293288974094,-0.18053251418962277,0.42394293288974094,0.7886450174564144,0.01690788106762842,14.785030303030295,14.021393939393946,14.762077836969718,180,0,0.41693939732523144,-0.49006041498566405,0.49006041498566405,0.41693939732523144,0.049586776859504134,0.07254361799816346,0.09274563820018365,2.386122430913821,62.6604410095766,1.3961959878853785,1.226863389102795,0.4921945692851724,0.7725661217869322,0.6180143253906589,0.2566594463465816,0.16680348277048088,0.17825695164954836,0.09803161769249934,0.10375835213203305,0.05882731987486457,0.06312237070451486,-0.07757575757575756,3.0585683065539224,0.242313414324184,0.3206222733981381,6.958762422014737,6.920730754830376,0.7585574999780414,0.3584706018252695,0.0855661865653455,0.21183231976620126,5.907179729351506,6.176298517443475,0.290578011155868,0.0,13.171245143024459,0.0,0.351543633037349,1.3117711980194338,1.8498559757483655,0.8952650913901805,1.842176541345601,0.530549079381334,1.4311996572326342,0.46020382892024564,0.0,1.1495174694332693,25.98743873726378,62.40936190942408,0.0,5.749511833283905,0.47290736976183134,13.171245143024459,5.749511833283905,11.600939890232516,1.8324719809071162,0.18716056113465074,6.851892117295679,1.9511342332595902,35.137107225539765,7.846317470397728,0.0,0.0,2.868484848484848,4.496356299118712,0.6897066518535789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.53785984526262,7.6417520855776555,0.17496449746277376,0.7031754549344309,0.039659632798985614,-0.2618929015469861,-0.13740123837850868,-0.19017119302231136,-0.8227572206901527,-0.7045681743749436,0.0,0.45454545454545453,33,3,7,0,1,1,1,1,2,5,3,11,9,0,1,1,3,2.9896200000000004,3.5358696969696988,0,1,0,0,0,1,1,0,0,0,1,1,0,1,0,1,2,0,0,0,1,1,0,0,0,3,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL549,CN(C)CCCC1(c2ccc(F)cc2)OCc2cc(C#N)ccc21,6.430626090384954,0.6109930241572745,-0.19201149402662313,0.6109930241572745,0.9763272879233822,0.03495278155179161,13.516624999999983,12.634625,13.506824646333358,124,0,0.12273124998647017,-0.3608398495431719,0.3608398495431719,0.12273124998647017,0.05902777777777778,0.0920138888888889,0.12152777777777778,2.7539011371861406,65.9043769722918,1.4758236275765932,1.3616933314363753,0.4866933314363753,0.8301381172467851,0.6975690715820164,0.26006907158201636,0.1826378997483079,0.1826378997483079,0.12230587561781632,0.12230587561781632,0.0813768605269053,0.0813768605269053,-0.09249999999999999,3.1123461727503043,0.19542023970696099,0.2800449339934921,3.0558017290424,7.139086565618077,0.401532195193772,0.47576131883456596,0.0,0.0,0.0,0.0,0.0,4.39041504767482,5.261891554738487,0.0,0.7553023384579118,3.085599691386807,0.6853792780851099,1.272020210539064,1.5797169867103957,0.0,5.261891554738487,0.20416290545210325,0.0,1.0377452440232806,20.448513484880436,70.36795776147694,0.0,6.069221312792274,0.0,4.39041504767482,0.0,0.0,1.056184300655455,0.7040374586541677,17.148333708576654,2.6577327270425593,42.29693095364306,0.0,0.0,0.0,1.5108333333333333,5.025927784740275,0.4021794417672211,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,1.3967830263906114,8.018930108731427,0.0,-0.04129611200243114,0.39540085634530603,-0.38510508727290566,-0.07664747235487189,-0.36578440061442513,-0.3811649577848117,-0.6747496017139535,0.0,0.35,24,0,3,0,1,1,2,0,2,3,0,4,7,0,0,0,3,3.812980000000003,3.788083333333336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL105594,N#Cc1ccc(-c2ccc(OCCCN3CCNCC3)cc2)cc1,5.049999969853415,0.3827329381374685,-0.18455881849154313,0.3827329381374685,0.6919428077799925,0.03463551849815691,13.39266666666665,12.426666666666668,13.382671348166694,124,0,0.12229880622798209,-0.4935496913657206,0.4935496913657206,0.12229880622798209,0.04861111111111111,0.07465277777777778,0.10069444444444443,2.251686563388394,66.45907772386586,1.541546555459494,1.4479120448734892,0.48957871154015575,0.8687507575717325,0.7373792780193207,0.26041204487348907,0.1625534283005733,0.1625534283005733,0.09983770465251411,0.09983770465251411,0.05781404991905417,0.05781404991905417,-0.09791666666666665,2.9296886785124188,0.17675978913384693,0.353649432896274,4.575317432291989,7.3162667495037335,0.6227744182474543,0.2983897463171711,0.0,0.0,0.0,0.0,0.0,0.0,5.261891554738487,0.0,1.0070697846105492,1.736229279807356,2.0388917123176,1.3291351503794897,1.5127247194947122,0.0,5.261891554738487,0.4254051285057856,0.0,0.2655385375553908,39.04328366449601,53.90280115300335,0.0,22.94563612947017,0.4186115127953511,0.0,5.749511833283905,0.0,1.83096639147277,0.0,11.33111286753076,1.753877692865468,48.33934966130636,1.4118420783282006,11.126902983393991,0.0,2.0120833333333334,5.266881150818564,0.21924548144743694,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,1.5127247194947122,8.007495250886683,0.0,-0.03742107965176276,0.3511071628443945,-0.098058358924394,-0.058835542511757793,-0.2980189888514299,-0.1830748998790341,-1.026943543912697,0.0,0.35,24,1,4,0,1,1,2,0,2,4,1,4,6,0,1,1,3,2.8993800000000007,4.000612500000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1617548,C=CCn1c(=N)n(CC(=O)c2ccccc2)c2ccccc21,4.970000123715015,0.6144202894401306,-0.16529694264069275,0.6144202894401306,0.09218253968253975,0.02590791774863378,13.243363636363624,12.464454545454545,13.23350737109093,110,0,0.2032300504476876,-0.30654401049813684,0.30654401049813684,0.2032300504476876,0.05785123966942149,0.08884297520661157,0.11983471074380164,2.6498224518042606,74.23429472610134,1.3681550739363553,1.2613585944074426,0.4886313216801698,0.8079822322497635,0.6462084238628064,0.2622441695218993,0.17480749689690026,0.17480749689690026,0.118360736770438,0.118360736770438,0.07779969438996313,0.07779969438996313,-0.13090909090909086,3.2448688922059477,0.1963703028307761,0.2660927844820164,2.3926343362441957,6.906520409393005,0.4151908770719413,0.0,0.32704941021332457,0.2553719752095107,0.0,0.0,0.46349297905206305,0.0,0.0,6.531038962001867,2.197681940894483,0.549310791605754,0.5481959625460427,1.7937453644669092,1.2790234618692518,0.7643930173453394,5.402308355073566,0.4151908770719413,0.0,0.5906236076650859,0.0,78.14651402331333,0.0,0.0,0.2553719752095107,0.0,0.0,0.0,0.6780656473612567,0.5906236076650859,5.402308355073566,1.4677329806587425,66.96487907700708,1.4118420783282006,11.033401435232523,0.0,2.308181818181818,4.907130898797396,0.21793350836690098,0.0,9.13419929558271,0.0,0.0,0.0,0.0,0.0,5.402308355073566,1.0610899535023508,6.196106055639814,0.0,0.6144202894401306,0.13736714747627443,-0.1891745831329164,-0.08250279629247885,-0.4704906065575367,0.0,-0.3799679308157101,0.0,0.1111111111111111,22,1,4,0,0,0,2,1,3,4,1,4,5,0,0,0,3,2.991170000000001,3.9432818181818203,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3806098,N#C/N=C(/NCCCc1ccccc1)NC[C@H]1CC[C@H](c2c[nH]cn2)C1,5.0,0.359377563016757,-0.1743225422907287,0.359377563016757,0.12758240836762003,0.011920895997679202,13.479615384615368,12.471615384615387,13.470072878153875,136,0,0.20866794756688606,-0.35547827779776575,0.35547827779776575,0.20866794756688606,0.0591715976331361,0.09319526627218934,0.1227810650887574,2.293285315877202,70.51602440997507,1.5818028401163378,1.4878185220384519,0.48781852203845183,0.885643136520012,0.7519736754519093,0.25806441443268346,0.15838592264422674,0.15838592264422674,0.09576610360817081,0.09576610360817081,0.057041630995911946,0.057041630995911946,-0.10807692307692306,3.3203659443430835,0.1675991246492964,0.36983151306977524,5.3477067278275925,7.346802587229932,0.5998703837233078,0.05272148292962386,0.16290485519171544,0.4674119486354875,0.0,0.0,0.0,4.9839785209472085,5.261891554738487,4.992404732635669,1.1620035976275567,1.6662320647579603,1.8074118909051262,0.7777635017629232,1.375498962573064,0.22921363725937827,5.261891554738487,0.7915618652982004,10.886362417998747,1.452253161231153,12.99371936863189,53.94573994964291,0.0,6.19315609577884,0.40844718102218275,0.0,0.0,0.0,1.1120867587904688,0.24511249620497613,17.349005335880406,2.852710906505428,47.68076519573313,4.235526234984602,0.0,0.0,3.418846153846154,4.891199248883402,0.20238044441301872,0.0,4.977003270229252,0.0,6.19315609577884,0.0,0.0,0.0,9.976383253582878,1.375498962573064,8.313173906771668,0.0,0.23229711130671357,0.2840035599154811,-0.11150013533525523,-0.4057043518305614,-0.23318799602737783,-0.8751027163198016,-0.3417998913013796,0.0,0.45,26,3,6,1,0,1,1,1,2,3,3,6,7,1,0,1,3,2.9424800000000007,3.941773076923078,0,0,0,0,0,2,1,0,0,0,0,0,0,0,1,3,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3819567,O=C1NCN(c2ccccc2)C12CCN(CCCCc1nc3ccccc3s1)CC2,7.613765798473357,0.471689657174941,-0.16056260410904324,0.471689657174941,0.09438738833112592,0.02038318464225748,14.019399999999987,13.078600000000003,14.00661275053336,156,0,0.2469252527185972,-0.3390833042976031,0.3390833042976031,0.2469252527185972,0.03888888888888889,0.06444444444444444,0.09222222222222222,1.8046628183050353,72.27276201420446,1.5076389379532245,1.4201783654309186,0.5140615847951762,0.8569971288788838,0.7348551336231848,0.29716456647077705,0.18429841754715576,0.2176007764392485,0.12501068015858371,0.15455180397352963,0.08057997477716441,0.10483841196633814,-0.0813333333333333,3.611926345802368,0.18268577072097855,0.27865130680841527,3.6990528046876086,7.355371877365133,0.503654427166311,0.1846308417461115,0.04706140261094002,0.19690599097838352,0.0,0.0,0.15981790613572738,4.9839785209472085,0.0,11.336785877934737,1.0070697846105492,2.0843719673872005,1.3537747514012997,1.230779430537102,1.440562009299866,1.1049324172018389,0.0,0.5064567201695354,0.0,1.2467849919676748,31.01128325110082,59.38939206582242,0.0,0.0,0.3403241028046285,5.687386274683562,0.0,11.336785877934737,1.581378891792763,0.37224873618004006,0.0,2.250326810625543,54.38176836896965,1.4118420783282006,10.216620634085363,0.0,1.6156666666666668,5.327504493273761,0.15981790613572738,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.2807441031641384,7.979103177866405,0.0031462462777041974,0.5394904481953371,-0.06483359285516099,-0.224525033874771,-0.08219194705290032,-0.3310816425695963,-0.7516883788167409,-0.6118637216147206,0.0,0.4166666666666667,30,1,5,0,2,2,2,1,3,5,1,6,6,0,2,2,5,4.047500000000003,4.0964566666666675,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,3,1,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL318235,COc1cc2c(cc1OC)C1=NO[C@@H](CN3CCN(C/C(C)=C/c4ccc(F)cc4)CC3)[C@@H]1CO2,7.130768280269022,0.4131186545779974,-0.1372528503370768,0.4131186545779974,1.0901915893990317,0.017189509072864276,13.759085714285705,12.837485714285723,13.749648134971453,186,0,0.16395364126742099,-0.4928411220525508,0.4928411220525508,0.16395364126742099,0.035918367346938776,0.05714285714285714,0.0783673469387755,1.782193956659682,69.25396158934997,1.495728242347325,1.3957885263247016,0.48150281203898726,0.8432595739742537,0.7175906578060869,0.2604478006632298,0.17961568222803176,0.17961568222803176,0.11759171447221846,0.11759171447221846,0.07611498856424774,0.07611498856424774,-0.08857142857142855,3.3973937012747415,0.18875568860160252,0.2930205613602988,5.134068922437889,7.148666662880193,0.5442336412896223,0.6810686548576227,0.5022583341005085,0.0,0.0,0.0,0.27999484176288447,4.39041504767482,0.0,0.0,0.8247350405194847,0.8726457066280732,2.0719761486851276,1.1971999857671942,1.9229390368645345,0.33610733568017914,0.0,0.27999484176288447,11.049670412113619,0.3694831469784476,59.616048266577124,58.77174060048892,0.0,17.248535499851716,0.4060168246114328,4.39041504767482,17.248535499851716,0.0,2.320216307371394,0.13821681667818952,11.711178526408974,1.7669448256610505,46.98332950279958,0.0,6.052071746035566,0.0,1.5931428571428572,5.029307668772394,0.2037694902861503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.89257568055059,1.5838306050412394,8.537061996785363,0.0,0.07754020846634133,0.09450868578761816,-0.18362474807285736,-0.28951183508692935,-0.30989073313179455,-0.12869101156191545,-1.0505324666208378,-0.2040029537078452,0.4444444444444444,35,0,7,0,3,3,2,0,2,7,0,8,10,0,1,1,5,3.675500000000002,3.7963428571428577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL4166021,CCN1CCN(CCCNC(=O)c2ccc(F)cc2Cl)CC1,5.0,0.6358602245852848,-0.21337848379391045,0.6358602245852848,0.9858120403901016,0.03699764581296874,14.901409090909072,13.84759090909091,14.870516738909119,122,0,0.25229777130509623,-0.35194429116099324,0.35194429116099324,0.25229777130509623,0.07024793388429752,0.10330578512396695,0.13636363636363635,2.8483373944777206,60.08148684666114,1.6487955769043756,1.5229917283173722,0.5118975895000294,0.8854020224162608,0.7644616634427706,0.2613139760568281,0.15333475553034379,0.17051495884894505,0.09046200020820011,0.10334715269715106,0.049678624628306925,0.05927130436437699,-0.05318181818181818,2.824287529582445,0.18525696283531753,0.3845133197903031,4.934532997276711,7.643055659086283,0.6868014915904243,0.2644191291384498,0.06417463992400912,0.0,5.907179729351506,0.0,0.21793350836690098,4.39041504767482,0.0,0.0,0.8387650912512815,1.7042681996795979,2.660395954036998,0.6681072942704082,1.852431024809986,0.795823619072001,0.0,0.6868014915904243,0.0,0.601128046301139,45.47801779021161,34.5305617694741,0.0,0.0,0.24135515242219888,4.39041504767482,0.0,11.600939890232516,2.781137135512003,0.0,5.817220841045895,2.442704269551762,18.127256122989884,6.434475392069527,0.0,0.0,1.6172727272727272,5.193191323756892,0.41749782871575647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9622486456502535,8.998303733492532,0.2587596310268153,0.49674095405064606,-0.10405931730315364,-0.06367253920307403,-0.176480687713791,-0.1913514578453538,-0.2109590859702468,-1.5969276951808409,0.0,0.5625,22,1,4,0,1,1,1,0,1,3,1,6,7,0,1,1,2,2.2364999999999995,3.950645454545456,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1091792,COc1cccc(C(C)c2c(CCN(C)C)sc3ccccc23)n1,7.229147988357855,0.3917286804768203,-0.17397811665887705,0.3917286804768203,0.058906420592929054,0.027398395124214648,14.18716666666665,13.179166666666669,14.173372266166696,126,0,0.2126590830478459,-0.48097712174917484,0.48097712174917484,0.2126590830478459,0.05555555555555555,0.09375,0.12847222222222224,2.7505673860452626,72.35470683925128,1.5710093380089336,1.4879551571636516,0.5219758480356403,0.8820123972837021,0.7576887737365676,0.2917094646085562,0.17500619967621686,0.21753206326620259,0.1151115217911779,0.15763738538116365,0.07666493759754467,0.11684002926431362,-0.07958333333333331,3.2893324811868845,0.17702234091516125,0.3051906393752977,3.4465007495922984,7.5490599505486715,0.401532195193772,0.0,0.0,0.24499951401814046,0.0,0.0,0.0,4.9839785209472085,0.0,11.336785877934737,1.2925652894978692,1.8066288259742604,1.9667051239123265,1.1016444173097186,1.5681278459118893,0.8926220837028597,0.0,0.4118286771582369,0.0,0.7966156126661724,27.486465943763026,58.43145763388982,0.0,5.879988336435371,0.1973692897416687,0.0,5.879988336435371,11.336785877934737,1.5570980914816965,0.2655385375553908,0.0,2.574107576291286,42.29693095364306,0.0,10.086144130933896,0.0,1.0566666666666666,5.245947519994197,0.057114939840425843,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.313643616329794,8.302546800271712,-0.0024544341913720438,0.0607196230831486,-0.03927130738483661,-0.11541881548143951,-0.21220362306067772,-0.324908338736708,-0.16745207486929972,-0.6625051892865108,-0.14113597367735087,0.35,24,0,3,0,0,0,1,2,3,4,0,4,10,0,0,0,3,4.560800000000003,4.266208333333336,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL105267,N#Cc1ccc(-c2ccc(OCCCN3CC[C@@H](N)C3)cc2)cc1,4.860000083248981,0.3827197574436938,-0.1826490962693209,0.3827197574436938,0.6904559998215152,0.03461725477159924,13.39266666666665,12.426666666666668,13.382671348166694,124,0,0.11883005300340703,-0.4935496913902037,0.4935496913902037,0.11883005300340703,0.05555555555555555,0.08506944444444443,0.1111111111111111,2.2459021393960845,67.70907772386585,1.541546555459494,1.4479120448734892,0.48957871154015575,0.870362221513183,0.7362795612589031,0.2615117616339066,0.16831162001411537,0.16831162001411537,0.10268777546240972,0.10268777546240972,0.06051214361045987,0.06051214361045987,-0.09791666666666665,3.0179113134865805,0.17675978913384693,0.3316549587086243,4.34744247029096,7.309936963905525,0.6398537358490334,0.35721649958084606,0.0,0.0,0.0,0.0,0.0,0.0,5.261891554738487,0.0,1.0070697846105492,2.2724703042092447,1.4204148314522482,1.3291351503794897,1.5144365329179614,0.0,5.261891554738487,0.20416290545210325,5.719716975726273,0.7818225946253502,26.049564295864123,53.90280115300335,0.0,22.94563612947017,0.4356908303969301,0.0,5.749511833283905,0.0,1.5403069372943434,0.0,11.33111286753076,1.9623012905804336,48.33934966130636,2.8236841566564013,11.126902983393991,0.0,2.595,5.258839551797107,0.21924548144743694,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,1.5144365329179614,8.005595024126803,0.0,-0.03460857965176276,0.3827197574436938,-0.1348090028264039,-0.05850975376004311,-0.45958247920280154,-0.34687689263481697,-0.6976780734946685,0.0,0.35,24,2,4,0,1,1,2,0,2,4,1,4,7,0,1,1,3,3.0271800000000013,3.9890583333333347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1940418,Fc1ccc(CCCCN2CCN(c3ccccn3)CC2)cc1,6.777283528852418,0.615915208788739,-0.2026800171893772,0.615915208788739,0.4754723077048495,0.03314673798308263,13.626956521739112,12.57513043478261,13.6171924342609,122,0,0.12804668339083827,-0.35405531157025844,0.35405531157025844,0.12804668339083827,0.04725897920604915,0.08128544423440454,0.11531190926275992,2.3604225657405875,68.01822377942833,1.6179417513326821,1.531287185196048,0.4878089243264827,0.8983202816465174,0.7816450703697586,0.25990593993497596,0.16156666172301987,0.16156666172301987,0.09677050904900923,0.09677050904900923,0.05586565236281992,0.05586565236281992,-0.08434782608695653,2.9018551448042267,0.1663751816005224,0.3506476500940475,4.763822712487064,7.435928078935285,0.21303955351523818,0.5058732008209097,0.0,0.0,0.0,0.0,0.21303955351523818,9.374393568622029,0.0,0.0,0.7881415705647775,2.406467856984968,2.1134537661791835,0.7151783771322886,1.6212443650330481,0.2529505555580447,0.0,0.4297342718172907,0.0,0.8312510740864407,37.384208152430205,59.85049849720071,0.0,0.0,0.21303955351523818,10.208277825509848,0.0,0.0,1.8420950727555394,0.27708369136214694,5.817220841045895,2.2264133322800466,48.46982616445782,0.0,0.0,0.0,0.8421739130434783,5.524837124448026,0.1908876107684704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.4303567542645772,9.21236663755383,0.0,0.08112866732344326,0.0,-0.06987274955573115,-0.13795349494130724,-0.4133804673132195,-0.6292013626214749,-0.9416379550832192,0.0,0.42105263157894735,23,0,3,0,1,1,1,1,2,3,0,4,6,0,1,1,3,3.3656000000000024,4.009913043478263,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL556450,Cc1cnn(C2CCN(c3nc4ccccc4n3Cc3ccc(F)cc3)CC2)c1,8.161150909262744,0.5027086878950023,-0.1470462283373571,0.5027086878950023,0.0559342931132254,0.017696948203471365,13.430275862068955,12.596068965517246,13.420743930620711,148,0,0.20636695423876183,-0.34205757782838037,0.34205757782838037,0.20636695423876183,0.04280618311533888,0.07015457788347206,0.09631391200951249,1.9828536308648754,74.56681448435648,1.4097885750681376,1.314276981052035,0.4866907741554834,0.8177895493279386,0.6844364486811856,0.2706433452329098,0.18666368328032465,0.18666368328032465,0.12295311730826394,0.12295311730826394,0.08129213449680414,0.08129213449680414,-0.10862068965517238,3.5642651352656376,0.1898208528875177,0.25349299729595604,3.5041092398903784,6.988506694251081,0.3264485992635115,0.20059382210503085,0.0,0.20511514762022395,0.0,0.0,0.16144148052224774,9.374393568622029,5.098681808301038,0.0,0.8334370631259717,1.892907577034538,1.1808606447351404,1.6393417251353712,1.285814496405521,0.5855772660765177,0.0,0.6666056176615444,0.0,1.1073273818144835,17.893629099482368,77.62926390737577,0.0,0.0,0.16896240451208544,10.338754328661313,0.0,0.0,1.1146649062350578,0.22402964428675673,12.669112958341575,2.1651327793961292,60.68514008293588,0.0,11.033401435232523,0.0,1.340689655172414,4.986797510196456,0.15139362233361447,0.0,9.24890258293654,0.0,0.0,0.0,0.0,0.0,10.082660329248245,1.1344208740719062,7.509535419087399,0.0,0.11526011149391657,0.11536510312613997,-0.16021992562528597,-0.11501167407875046,-0.4884992443281514,-0.3894306662811698,-0.5381485486814523,0.0,0.30434782608695654,29,0,5,0,1,1,2,2,4,5,0,6,5,0,1,1,5,4.570120000000004,3.8856206896551737,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2158831,O=C(O)c1ccccc1CN1CCC(CN2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)CC1,7.199970640755867,0.3963321852149201,-0.1617695482062648,0.3963321852149201,0.7779066224582374,0.017975746303129456,14.919749999999992,13.974750000000009,14.880104630625027,172,0,0.33551200303114864,-0.49028401771600605,0.49028401771600605,0.33551200303114864,0.03515625,0.0576171875,0.0810546875,2.097265499115052,67.09488507311548,1.5335771125067965,1.4179719065128111,0.5277174656389647,0.8517099600031511,0.7248234415906466,0.28256346207672756,0.1724179094110687,0.19604068897414537,0.10601884208326842,0.12675880329337819,0.0641421535824643,0.0712533433948123,-0.05593749999999999,3.1159420411656655,0.20160081350091721,0.3401855121715543,6.164033227618866,7.551636520148023,0.46079940236742933,0.3696728081323092,0.0,0.0,1.4311996572326342,5.969305287951849,0.15312217908907744,4.794537184071822,0.0,0.0,1.2915354969829662,2.12719013356248,1.90049334764068,0.8304620802669189,1.6997564518098598,0.9115995333880276,1.4311996572326342,0.3062443581781549,5.893957685363079,1.1896430411432328,32.48429842157972,63.4691005645197,0.0,5.749511833283905,0.14802696730625153,0.0,5.749511833283905,23.20187978046503,1.8575702934153038,0.20302686513487328,5.893957685363079,2.536410559428741,42.29693095364306,10.045266627482652,1.4311996572326342,0.0,1.6565625000000002,5.04483033034321,0.19266549188256382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.1172244363832484,8.222576291760634,0.3656062690730967,0.32279778019810024,0.06389989725831846,-0.10718815426554523,-0.2722922483127959,-0.2950766354422379,-0.744615112392653,-0.9029303100991415,0.0,0.48,32,1,5,0,2,2,2,0,2,5,1,7,7,0,2,2,4,5.447000000000006,3.9985718750000023,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL404404,Cc1ccc(-c2nnc(SCCCN3CCc4ccc5oc(C(F)(F)F)nc5c4CC3)n2C)cn1,5.700000503883016,0.3914491206178681,-0.1564409356606929,0.3914491206178681,0.00629253552299236,0.00781423983030382,14.359028571428562,13.639028571428575,14.347893288000021,184,0,0.4684762316104793,-0.43282887204396986,0.4684762316104793,0.43282887204396986,0.035102040816326535,0.060408163265306125,0.08408163265306123,1.7266360269412353,68.72348826276779,1.3280069998329513,1.1895334735130043,0.49857623296808223,0.7587792503088003,0.6147635675268946,0.28094918412482967,0.17952163891759465,0.20161868640713673,0.11560960465733738,0.13420738108576064,0.07319569327728688,0.08597760191156471,-0.08342857142857144,3.6703976372225844,0.23731778092565642,0.2747231539511921,5.05871553496485,6.841004717891911,0.396690294734148,0.15762002050332177,0.47325317489893937,0.0,0.0,12.067022439469383,0.14239938631277738,4.9839785209472085,13.171245143024459,10.197363616602075,0.5086943902015546,1.763476731770961,2.0148556849951125,0.19582265088146003,1.4816388566952385,0.6531887373899892,0.0,0.846638001061095,6.975826900282246,1.0658114805870855,25.19553593809799,53.0541249417363,0.0,11.387855989696924,0.0,13.171245143024459,0.0,11.761884949391115,1.5665104564353234,0.7399421491538423,6.851892117295679,1.8100983915958089,39.91615746034199,0.0,22.487576848955428,0.0,2.0820000000000003,4.619378889424618,0.37632128980069884,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,24.582471595549837,0.9791132544073,7.321413234571163,-0.018139750349923118,0.15592295019587407,0.16358151715278765,-0.34709240540849634,-0.09275610720332862,-0.14911457474126616,-0.5595078017432178,-0.5838308719974025,0.0,0.4166666666666667,35,0,7,0,1,1,1,3,4,8,0,11,8,0,0,0,5,4.928520000000004,3.6334571428571447,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,0,0,1,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL430502,CC(=O)c1ccc(OCCCN2CC[C@H](NC(=O)c3ccc(C#N)cc3)C2)cc1,4.886056647693163,0.46596272440441766,-0.16006497449984822,0.46596272440441766,0.8957103403985822,0.019050166224733867,13.49899999999999,12.630034482758628,13.489296264137957,150,0,0.2510402174032376,-0.49354966274608536,0.49354966274608536,0.2510402174032376,0.04756242568370987,0.07253269916765755,0.09631391200951249,2.2475259694301926,66.55486586324476,1.4707523403243832,1.3471167468238436,0.4850477813066022,0.8248753581643966,0.6846672745837089,0.25545301266991727,0.1650192754777301,0.1650192754777301,0.09892354482675875,0.09892354482675875,0.05631562116403444,0.05631562116403444,-0.10931034482758618,3.110753868899786,0.19675176003373823,0.33974582124200436,5.901198549197879,7.0971797769552625,0.5153995185496174,0.19825902873392776,0.24810644912734967,0.0,5.907179729351506,0.0,0.33065773683253946,0.0,5.261891554738487,0.0,0.0,2.3426583303883035,1.877766749479461,1.1472414539751026,1.677102922357145,0.4031180922660843,5.261891554738487,0.35205941669444324,0.0,0.8832977375277269,26.049564295864123,65.02970413639734,0.0,11.818733146076179,0.3464371140375319,0.0,5.749511833283905,0.0,1.6778548679579548,0.0,11.33111286753076,2.716392279699116,48.33934966130636,1.4118420783282006,0.0,0.0,2.8424137931034483,4.977398703920854,0.5121022732028321,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,1.346445185524605,7.200725892495002,0.0,0.8561485319833614,0.28275187919510486,-0.12577737075216155,-0.19463040769064538,-0.47855753062144346,-0.3083623871782619,-0.738045733867741,0.0,0.34782608695652173,29,1,6,0,1,1,2,0,2,5,1,6,9,0,1,1,3,3.034080000000002,3.7940241379310358,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3806255,CC(C)CN/C(=N/C#N)NC[C@H]1CC[C@H](c2c[nH]cn2)C1,5.057991946977686,0.43683693258163425,-0.2142204765504086,0.43683693258163425,0.12158075655633649,0.020897290973008225,13.733285714285692,12.581285714285714,13.724106893714318,114,0,0.20866794887250528,-0.355232531566265,0.355232531566265,0.20866794887250528,0.09297052154195011,0.1360544217687075,0.17006802721088438,2.952383747631424,66.04546799302402,1.7220367727565251,1.627775312999988,0.4849181701428452,0.9333950032846368,0.8119674077023641,0.24807975120236994,0.15443018994047122,0.15443018994047122,0.08849144729761607,0.08849144729761607,0.0527658288520815,0.0527658288520815,-0.09666666666666668,3.163552199673515,0.15087985538551024,0.3653831939060296,4.778322948171639,7.59594162742739,0.7426966655621906,0.06527421696048667,0.20169172547545722,0.5787005078344132,0.0,0.0,0.0,4.9839785209472085,5.261891554738487,4.992404732635669,0.65256115402816,1.4717471464149665,2.4335707062878074,0.6365742030945194,1.5724502816456771,0.28378831279732547,5.261891554738487,0.9800289760834863,16.780320103361824,1.8436436487591703,12.99371936863189,18.17019491962945,0.0,6.19315609577884,0.5056965098369881,0.0,0.0,0.0,1.376869320407247,0.0,23.242963021243483,3.485541633255508,17.468671657416657,4.235526234984602,0.0,0.0,4.232857142857143,4.678453693250031,0.2505662645113565,0.0,4.977003270229252,0.0,6.19315609577884,0.0,0.0,0.0,9.976383253582878,1.5724502816456771,9.246572048991565,0.0,0.2837085362283642,0.34095951852721196,-0.06805372298685533,-0.704627219228037,0.0,-0.6826203720062308,-0.8127641863514147,0.0,0.6666666666666666,21,3,6,1,0,1,0,1,1,3,3,6,7,1,0,1,2,1.9656799999999999,3.931480952380954,0,0,0,0,0,2,1,0,0,0,0,0,0,0,1,3,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL392713,C[C@H]1CCCN1CCCOc1ccc(N2CCN(C(=O)c3cc(F)cc(F)c3)CC2=O)cc1,5.700000503883016,0.4388626107121859,-0.14254944350008772,0.4388626107121859,0.6893171939254854,0.018037635933824,13.864272727272718,12.978454545454552,13.855081764484872,176,0,0.25409449540035095,-0.4935477576635119,0.4935477576635119,0.25409449540035095,0.03764921946740129,0.06060606060606061,0.08264462809917354,1.9013936836773055,66.86980366135553,1.485517010830612,1.3582519576942398,0.47946407890636117,0.824748906595153,0.6956643101117201,0.25627037071778075,0.17148421430423846,0.17148421430423846,0.10747265281665583,0.10747265281665583,0.06554350636894679,0.06554350636894679,-0.0909090909090909,3.1868260752643645,0.198893198372907,0.31189212176084063,5.681537221177103,7.060981462320664,0.5889876407985298,0.7236610060512617,0.0,0.17900544634398502,5.907179729351506,0.0,0.290578011155868,8.78083009534964,0.0,0.0,0.0,2.082486022775137,1.8785559933855895,0.8218291995596844,1.904811077158478,0.5303559313147447,0.0,0.2969642261121502,0.0,0.9693502815040443,43.94319339534649,59.49482412743185,0.0,5.749511833283905,0.2920234146863796,14.468216370033202,5.749511833283905,0.0,2.020465304643928,0.145289005577934,11.63444168209179,2.3054743523026984,42.29693095364306,0.0,0.0,0.0,1.6087878787878789,5.105383449720705,0.5566637716210087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3481473055374684,8.240201134795024,0.0,0.7477589763383317,0.0,-0.10646230578622928,-0.3296143166664074,-0.5084145827530088,-0.39678293513709223,-0.9320395061441547,0.0,0.44,33,0,6,0,2,2,2,0,2,4,0,8,8,0,2,2,4,3.7070000000000025,3.679924242424244,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1276947,O=C(O)[C@]12C[C@H]1CN(C1CC[C@]3(Cc4ccccc4Cc4ccccc43)C1)C2,7.500038134403808,0.4689164302924934,-0.17197298314166937,0.4689164302924934,0.8402172566557491,0.03085741685257079,13.339142857142845,12.367142857142863,13.328720682285743,144,0,0.3107869542463976,-0.4807775425336558,0.4807775425336558,0.3107869542463976,0.042091836734693876,0.07015306122448979,0.10076530612244898,1.9351613294002217,76.7569271860057,1.5282146624943327,1.4558467920152744,0.49156107772956015,0.8703895918255553,0.7674041776492022,0.28853816727549286,0.22571718823893544,0.22571718823893544,0.16588256105036853,0.16588256105036853,0.11517007667661192,0.11517007667661192,-0.07607142857142855,3.432401372375459,0.1706408489874589,0.2034903672146338,2.287960646329521,7.283781552989331,0.18245743539668616,0.0,0.0,0.0,1.4311996572326342,5.969305287951849,0.34623024696151067,0.0,0.0,0.0,1.7264053450466557,2.3709040378616906,1.7535805827657966,0.5850378185270906,1.6265381369858851,0.2131894745697089,1.4311996572326342,0.17499677610180278,11.308948154759857,1.7739440123472392,12.99371936863189,70.59315562809434,0.0,0.0,0.0,0.0,0.0,0.0,1.2496298231032525,0.8198349091474058,11.308948154759857,2.978043858304685,48.33934966130636,0.0,1.4311996572326342,0.0,1.4478571428571427,5.551266804143256,0.6118344353429929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,0.883360539718799,8.577926295694265,0.0,0.43890867112621673,0.13575467683577452,-0.5330562195681179,-0.219863771436591,-0.58064684243705,-0.9301536876018,-0.3114881702317444,0.0,0.48,28,1,3,3,1,4,2,0,2,3,1,3,2,2,1,3,6,4.030300000000003,3.873564285714288,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL398996,CS(=O)(=O)c1ccc(C(=O)N2CCN(c3ccc(OC4CCN(C5CCC5)CC4)cc3)C(=O)C2)cc1,5.599999383023619,0.3909438054449689,-0.15947294676461296,0.3909438054449689,0.7222370833043845,0.01646575674414983,14.212333333333326,13.288333333333345,14.200391448777802,192,0,0.25388338663987287,-0.49033877792872865,0.49033877792872865,0.25388338663987287,0.02854938271604938,0.04783950617283951,0.06635802469135803,1.6877917511673892,72.60493550962414,1.5145017043725053,1.3969758480356402,0.5029896419502995,0.83827885508459,0.7172372051242982,0.30010285089080907,0.17960104457143922,0.21890998528950623,0.11489916362214132,0.13549865317206344,0.06840025062375794,0.07869999539871901,-0.08083333333333333,3.1625928142202406,0.19267331988412972,0.2838985116129949,5.416453841423428,7.1847403030125365,0.5399053373986523,0.5090663762374956,0.2732570315671528,0.1640883258153196,5.907179729351506,0.0,0.266363176892879,8.417796984328938,0.0,0.0,0.17702569170359386,2.0508624796284405,2.058715196782622,0.7071350505019742,1.888299073885832,0.7594166352723354,0.0,0.272217207269471,0.0,1.357167179929564,43.56813225354666,53.90280115300335,0.0,5.749511833283905,0.2676881301291813,5.687386274683562,5.749511833283905,0.0,2.2443919145202424,0.4064386200135923,0.0,2.4293790426675823,53.23483313682413,0.0,0.0,0.0,2.423055555555555,5.256035612466758,0.5001908709020161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3881082029838152,8.498432283475697,0.0,0.6576175907469997,0.0,-0.09802867427037848,-0.18897274711643944,-0.517525901003614,-0.8221292008611878,-0.6199204042064643,-0.15947294676461296,0.48148148148148145,36,0,8,1,2,3,2,0,2,6,0,9,7,1,2,3,5,2.974800000000001,3.8086749999999987,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +CHEMBL272480,Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6c(cc5CC4)C(=O)N(C)C6)n3C)cccc2n1,5.4999996786570655,0.3645977828545527,-0.12854143188851896,0.3645977828545527,0.00579315916166534,0.007563144665567964,13.85629729729729,12.984513513513521,13.844211639027051,190,0,0.2537529171893267,-0.3373451166963703,0.3373451166963703,0.2537529171893267,0.029218407596785977,0.053323593864134405,0.07596785975164354,1.5663871861046732,77.35013620330403,1.4446698048034683,1.3513453555115533,0.5085479658068973,0.8261355407849837,0.7018719136877167,0.2915069564154931,0.191295104675007,0.21219771716511432,0.1305055582349521,0.14809804945102822,0.08628567088844111,0.09837666554248777,-0.08729729729729728,3.6510417705103695,0.1956968468246949,0.26785787053918647,4.64027199917013,7.200129297813535,0.38829511106735976,0.0,0.2967794859410982,0.0,5.907179729351506,0.0,0.2642842082437576,0.0,0.0,10.197363616602075,0.9711232372984945,1.8185172190183954,2.510315992521208,0.4825277763013038,1.3151029995005108,0.772215935427667,0.0,0.7986016553254485,6.975826900282246,1.0168638645248775,32.17136283838023,70.24466491527951,0.0,11.387855989696924,0.0,0.0,0.0,11.761884949391115,1.827751454453333,0.7086090915474852,6.851892117295679,2.2426883741752617,47.45336743546377,0.0,22.29078092177798,0.0,1.814864864864865,5.318256289286056,0.1295820860559952,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,15.181342137549283,1.1855209134445153,7.38777039937234,-0.01788171865403662,0.425943111133749,0.1387380673000032,-0.35519386331921576,-0.08048756243926884,-0.23238213369249894,-0.356876473230089,-0.7587289255700832,0.0,0.3793103448275862,37,0,7,0,2,2,2,2,4,7,0,8,9,0,0,0,6,4.5073200000000035,3.99744594594594,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL60143,CC(C)(C)OC(=O)N[C@H](Cc1ccccc1)C(=O)N1CCN(CCCOc2ccc(C(=O)C3CC3)cc2)CC1,5.2599999003114535,0.38868792389755663,-0.13953610305529987,0.38868792389755663,1.390763094883981,0.008730891291440971,13.735512820512845,12.675820512820524,13.725759523384644,210,0,0.40781954712180357,-0.4935496626856032,0.4935496626856032,0.40781954712180357,0.029585798816568046,0.04733727810650888,0.06377383300460224,2.0394949150973516,71.03737833727658,1.6360645745586246,1.535458518944082,0.4841764676620306,0.8942880275110955,0.779870179336495,0.2555826512467526,0.1706904716406765,0.1706904716406765,0.09789208574790823,0.09789208574790823,0.05679767673494723,0.05679767673494723,-0.08692307692307691,3.5899924141939956,0.1725739808865719,0.33614732853600715,9.096040926816828,7.406506887546594,0.5047038203009988,0.44534500288762147,0.1844894108895677,0.15146614690644886,0.0,6.093240070938415,0.371512412794721,4.794537184071822,0.0,0.0,0.7746690650850377,1.7796814712365472,2.1336625089244725,0.7305415933753796,2.0538338919218613,0.45599140376038105,0.0,0.3874264824356239,5.893957685363079,1.478623570167638,39.043283664496016,65.50867135236365,0.0,5.749511833283905,0.2576070847971391,4.794537184071822,5.749511833283905,0.0,2.006300285953466,0.4078032061333654,5.893957685363079,2.8314418838499913,54.38176836896965,1.4118420783282006,0.0,0.0,2.261025641025641,5.301411316248432,0.2810213570336888,0.12293685087363646,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.5284176595581254,8.977390303939261,0.0,1.0114836647270427,-0.04409490583770925,-0.2175340336607987,-0.27346806307971205,-0.5234331204068989,-0.509481795470804,-1.1388107681591046,0.0,0.5161290322580645,39,1,8,1,1,2,2,0,2,6,1,8,11,1,1,2,4,4.328400000000004,3.844415384615379,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,2,1,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL64775,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)OCC(C)C)CC2)cc1,6.5600045260461926,0.450340031124174,-0.16521754399049282,0.450340031124174,1.2883579196143748,0.01219562835413848,13.952599999999983,12.675800000000006,13.942771923200034,168,0,0.4093513306266167,-0.4935496626976447,0.4935496626976447,0.4093513306266167,0.04,0.06555555555555555,0.08888888888888888,2.8396455565538328,69.26262587483484,1.8395905418089786,1.7509140117618458,0.48424734509517897,0.9712140817162526,0.8772128552630488,0.2438795219297155,0.14790804959070003,0.14790804959070003,0.0824058509489574,0.0824058509489574,0.04486829451095898,0.04486829451095898,-0.06933333333333332,3.0830650058452873,0.15060257786698653,0.4422831667897208,8.73799207698234,7.815107034366384,0.4791211879483525,0.19165039444279683,0.19277483154549796,0.0,0.0,6.093240070938415,0.32314823049741,4.794537184071822,0.0,0.0,1.1100508718181932,1.4269827439558338,2.6686799091677273,0.9855691053291739,2.3717208470070714,0.3958828339101118,0.0,0.3266606487233652,5.893957685363079,1.747343361951131,45.602268907412295,29.733126322350174,0.0,5.749511833283905,0.15789543179333496,4.794537184071822,5.749511833283905,0.0,2.2426191128805537,0.15789543179333496,5.893957685363079,3.8289038222923653,24.16967483065318,0.0,0.0,0.0,1.9693333333333334,5.369182336198259,0.31963581227145477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,1.7362941711489468,10.458020601735042,0.0,0.8102748832356769,0.0,-0.06092820203665181,-0.2962153213805542,-0.24555234721921257,-0.8555344649617422,-1.53228737159478,0.0,0.6666666666666666,30,0,6,0,1,1,1,0,1,5,0,6,15,0,1,1,2,4.628700000000005,3.974183333333336,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1669412,c1ccc2c(c1)CC(CCN1CCC1)=C2Cc1cnccn1,8.366531544420411,0.4037691219164433,-0.1840078613516115,0.4037691219164433,0.45057391669043856,0.038512577157501074,13.245363636363617,12.283181818181816,13.23516125781821,112,0,0.08597264088465967,-0.30292118920015076,0.30292118920015076,0.08597264088465967,0.05785123966942149,0.09917355371900825,0.14256198347107438,2.1870867082097543,71.58352315659984,1.5190803209926467,1.447347308477267,0.4928018539318125,0.8666899752852124,0.7529657992840842,0.275693072011357,0.18538382660794836,0.18538382660794836,0.1247466904999961,0.1247466904999961,0.08139160431533869,0.08139160431533869,-0.0909090909090909,3.1050140837046163,0.1695154019534185,0.2732599431818182,2.68698347107438,7.307964597795823,0.22272316958411265,0.0,0.0,0.0,0.0,0.0,0.4530889564497462,0.0,0.0,0.0,1.3519445163964747,2.2187500720946947,2.2990495456578515,0.6949653585472727,1.3084513490715735,0.2533229331849667,0.0,0.6758121260338588,0.0,1.1587136184235236,19.490579052947837,65.08229597140917,0.0,0.0,0.0,0.0,0.0,0.0,1.5617475375314875,0.5793568092117618,0.0,2.652391384567086,48.26146499316672,0.0,5.573104530069267,0.0,1.3190909090909093,5.478981313208831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.3084513490715735,7.915323252672693,0.0,0.29276832508291784,0.0,-0.2746593939203066,0.0,-0.19316882026855128,-0.7911638273273224,-0.5059177180576134,0.0,0.3684210526315789,22,0,3,1,1,2,1,1,2,3,0,3,5,0,1,1,4,3.1248000000000022,4.0216363636363655,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL256694,C[C@@H]1NC(NCC(F)F)=Nc2ccc(Cl)c(Cl)c21,8.585026652029184,0.7415056933440797,-0.2728683956721692,0.7415056933440797,0.343084057697153,0.048640507538087116,16.340666666666657,15.72466666666667,16.279433841777795,98,0,0.25517335840078914,-0.3503428640341404,0.3503428640341404,0.25517335840078914,0.10493827160493827,0.14814814814814814,0.1851851851851852,2.949182155783487,49.36245453093048,1.2724032891051769,1.075194371029821,0.5480753650318717,0.7118494592509215,0.5412220513065691,0.28352770436315455,0.16432235955235155,0.20631841210893243,0.10224858339960291,0.1443691321204818,0.06490336666882146,0.08534718779269768,-0.05944444444444441,2.5705907261366456,0.2851800476948961,0.29339847529221114,2.6716439494869397,7.1529845231647435,0.5899792614764862,0.0761532531205678,0.48795770696667984,0.0,6.401496384060876,0.0,0.0,13.77323482798531,0.0,0.0,1.2889933211369462,1.052040529590126,0.5375403977893142,1.9500665464268283,1.3300745143076675,1.9360455902162461,0.0,0.5899792614764862,4.992404732635669,1.0706267205392335,6.496859684315945,27.69355553450624,0.0,0.0,0.5899792614764862,14.4682163700332,0.0,23.20187978046503,1.0476617020622587,0.0,0.0,1.709447949048572,17.07724214796226,12.868950784139054,0.0,0.0,2.0233333333333334,3.9121361325135644,0.48782389418609107,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,4.992404732635669,2.131243941258523,6.137513078092283,0.6541730505058183,0.1940903635116598,-0.13276442341339825,-0.09074673336412752,-0.07989510721984265,-0.2724412482328322,-0.2728683956721692,-0.42101120149134197,0.0,0.36363636363636365,18,2,3,0,1,1,1,0,1,3,2,7,3,0,0,0,2,3.4998000000000014,3.83968888888889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL352375,CC(C1=C(CCN(C(C)C)C(C)C)Cc2ccccc21)c1ccccn1,6.1349960950815525,0.3650695988865632,-0.20104076070717955,0.3650695988865632,1.1486552604573117,0.024517913106826664,13.405153846153825,12.164538461538463,13.394482654769265,138,0,0.08399085744789728,-0.29822323753741115,0.29822323753741115,0.08399085744789728,0.04437869822485207,0.07396449704142012,0.10355029585798817,2.9704282181247392,75.35401446558332,1.7803850211477428,1.7267087381153816,0.49593950734615067,0.9709499927385861,0.8795397687980728,0.2641551534134575,0.18140926101922591,0.18140926101922591,0.12043194576441942,0.12043194576441942,0.07893918053124774,0.07893918053124774,-0.07423076923076921,3.273777928191545,0.14611482399991493,0.31450948018488856,3.908194971218445,7.825994164750892,0.0,0.0,0.0,0.0,0.0,0.0,0.38014954814606483,0.0,0.0,0.0,1.6398880840646701,2.651471661562743,2.661216571543341,0.4217718634369908,1.6870874537479639,0.21435017423343336,0.0,0.38014954814606483,0.0,2.497502038892289,6.496859684315945,70.86376167276954,0.0,0.0,0.0,0.0,0.0,0.0,1.0929435720312661,0.24511249620497613,0.0,4.123517228802315,54.04293069452709,0.0,5.573104530069267,0.0,0.6203846153846155,5.875718793430954,0.15816444878887156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.528923004959092,10.369263847434384,0.0,0.07520512494493373,0.0,-0.3359760731809344,-0.16231625930286658,-0.7552376443270226,-0.4019699888063212,-1.0806356734288434,0.0,0.4583333333333333,26,0,2,1,0,1,1,1,2,2,0,2,12,0,0,0,3,5.703900000000006,4.281269230769233,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL417215,N[C@H](Cc1ccc(F)cc1)C(=O)N1CCN(CCCOc2ccc(C(=O)C3CC3)cc2)CC1,5.030000139977383,0.43629965851639274,-0.14896290288216604,0.43629965851639274,1.264562438781772,0.0134029616352622,13.74418181818181,12.766727272727282,13.734629397090934,176,0,0.23941645207724835,-0.4935496626856032,0.4935496626856032,0.23941645207724835,0.03673094582185491,0.05785123966942149,0.07713498622589532,1.895142782465836,68.79650995208613,1.5612745865881876,1.4528590948757785,0.4831621251788088,0.8646090320770382,0.7413682906873367,0.2597189818691574,0.17227125521162895,0.17227125521162895,0.10511480753269188,0.10511480753269188,0.05883358009108825,0.05883358009108825,-0.08393939393939392,3.47082063673773,0.1839446161173438,0.330284995727592,6.617235732326304,7.246147780601266,0.4653481715265697,0.43607323730261216,0.17524984685954362,0.17900544634398502,0.0,0.0,0.439060124211943,4.39041504767482,0.0,0.0,0.36620719440383603,2.039686767969523,1.9546389679149434,1.0041895773884615,1.8988725215570175,0.3542552932035286,0.0,0.2969642261121502,11.613674661089352,0.9548361234444596,39.043283664496016,65.28347348574624,0.0,5.749511833283905,0.3168660584704946,4.39041504767482,5.749511833283905,0.0,2.0167097051594864,0.3384079419818546,11.711178526408974,2.3079688350472902,48.33934966130636,2.8236841566564013,0.0,0.0,2.2990909090909093,5.293629692596975,0.4236208913884383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4752516301685783,8.59192398729964,0.0,0.7546207288062339,0.0,-0.13583112823360982,-0.359581679274613,-0.5377541905899682,-0.4756676228314367,-0.8730636305297846,0.0,0.46153846153846156,33,2,6,1,1,2,2,0,2,5,1,7,11,1,1,2,4,2.9015000000000013,3.779027272727275,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL256442,CCc1nc2ccc3c(c2s1)CCN(CCCSc1nnc(-c2cccc4nc(C)ccc24)n1C)CC3,6.399996913372259,0.2465521929179516,-0.12647311144222223,0.2465521929179516,0.02137338562850588,0.005083492611607191,14.290567567567585,13.418783783783793,14.276026676324351,190,0,0.19072974801178502,-0.3051661288400337,0.3051661288400337,0.19072974801178502,0.029948867786705625,0.056245434623813005,0.08108108108108109,1.571974244660492,79.57737413406892,1.440260704619238,1.3513453555115535,0.5306154409671062,0.8278011071852415,0.7013453555115534,0.3130478733995385,0.18641355924184227,0.23431808434715995,0.127167594157214,0.17147078232097507,0.08445819300798167,0.11897662518341146,-0.07594594594594593,3.7957817521098045,0.20085095251651902,0.28418901621584475,4.898159455479954,7.31529711002918,0.2558651183416712,0.0,0.2967794859410982,0.0,0.0,0.0,0.1347021221877624,4.9839785209472085,0.0,21.534149494536813,1.156309510738918,1.8403948787381896,2.0699208313332447,0.8198987822093494,1.1855209134445153,1.195086929553845,0.0,0.8008737847875222,6.975826900282246,1.1987005492359346,25.19553593809799,64.12538562873829,0.0,11.387855989696924,0.0,0.0,0.0,23.098670827325854,1.4818342155469275,0.7052595028181184,6.851892117295679,2.1329066348964147,47.45336743546377,0.0,32.50740155586334,0.0,1.6143243243243244,5.130212568241975,0.0,0.0,15.903885525726093,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.1855209134445153,7.3662350729119845,-0.01744531677674991,0.17810993511435977,0.11455369395727963,-0.28413656584802005,-0.028891695727158936,-0.2094166435902745,-0.435635531464239,-0.6450846602888942,0.0,0.3793103448275862,37,0,6,0,1,1,2,3,5,8,0,8,10,0,0,0,6,6.093820000000007,4.180108108108099,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0 +CHEMBL305313,CCOC(=O)N1CCN(CCCOc2ccc(C(=O)C=C(C)C)cc2)CC1,6.4500041484693496,0.48525399095025284,-0.17668900447354957,0.48525399095025284,1.0966046909635345,0.014688722284228208,13.869666666666651,12.749666666666672,13.860020645925957,148,0,0.4093313385597905,-0.4935496593580485,0.4935496593580485,0.4093313385597905,0.04801097393689986,0.07544581618655694,0.10013717421124829,2.8226367152781204,64.76407407471483,1.697867288616615,1.5936081612168655,0.4824970501057544,0.913670908219951,0.7987550243663505,0.24319946881079493,0.1504533884341111,0.1504533884341111,0.0854671650315836,0.0854671650315836,0.047751233969436264,0.047751233969436264,-0.08666666666666664,2.9385749217230717,0.16503360430504196,0.3971390237689523,7.057099246774587,7.534408061269441,0.5323568754981695,0.21294488271421871,0.21419425727277552,0.0,0.0,6.093240070938415,0.3590535894415666,4.794537184071822,0.0,0.0,0.20641127889145436,2.1166795492557466,2.272246124747056,1.145845619112794,2.2290947022537186,0.43986981545567977,0.0,0.36295627635929467,0.0,0.9973556019709784,45.602268907412295,41.358302598455005,0.0,5.749511833283905,0.17543936865926107,4.794537184071822,5.749511833283905,0.0,2.4917990143117263,0.17543936865926107,0.0,2.904049874595995,35.79485110675801,0.0,0.0,0.0,2.1881481481481484,5.233888484124888,0.35515090252383863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.6985044310706177,9.140326557590868,0.0,0.8791619277527006,0.0,-0.11906391594887876,-0.1362337220415506,-0.30397532324559035,-0.27351220439766605,-1.5786786283518561,0.0,0.5238095238095238,27,0,6,0,1,1,1,0,1,5,0,6,11,0,1,1,2,3.3785000000000025,3.9018703703703723,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1935445,Fc1ccc(Cn2c(C3CNCCS3)nc3ccccc32)cc1,7.710108201691595,0.6226490162346667,-0.15469741835274106,0.6226490162346667,0.1716529667422526,0.03465233274400362,14.23599999999999,13.447130434782613,14.222632469391327,118,0,0.12416257573364495,-0.3225022933865065,0.3225022933865065,0.12416257573364495,0.062381852551984876,0.09829867674858223,0.13610586011342155,2.2632945635409794,69.29362414381113,1.3728029391398908,1.266428415216216,0.5193195709087257,0.8003107997239679,0.6569431176834039,0.30343368226721984,0.17989035266166653,0.21539020400635028,0.11891286089722586,0.1481013213110523,0.07929549333145645,0.10159349292905824,-0.08043478260869563,3.289671454631254,0.21015391197525685,0.27548842430414733,2.985828884823036,7.122341496150634,0.4294310000469448,0.5675420616249575,0.0,0.0,0.0,0.0,0.0,9.374393568622029,0.0,11.761884949391115,1.0508554274197035,1.2927446227108772,1.4530472728312749,1.3625102270560345,1.2654414165607286,0.9910994080271146,0.0,0.6461257183489973,0.0,0.5096891023260784,18.698676253782047,65.54442649204918,0.0,0.0,0.23086145014297285,4.39041504767482,0.0,11.761884949391115,1.228250192283505,0.28247216018764976,5.817220841045895,1.7355104832075885,48.33934966130636,1.4118420783282006,11.033401435232523,0.0,1.297826086956522,4.8830072559935624,0.1908876107684704,0.0,16.32898459718247,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.0745538057922581,7.096432000356337,-0.01591365464597004,0.16964099488426607,-0.16594071069197924,-0.26362915129326336,-0.1235548444953344,-0.3842038936564942,0.0,-0.4541350882836489,0.0,0.2777777777777778,23,1,3,0,1,1,2,1,3,4,1,5,3,0,1,1,4,3.601200000000002,4.056682608695653,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL402087,Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6nc(C(C)(C)C)oc6c(C)c5CC4)n3C)cccc2n1,5.800000874803202,0.23026212009687547,-0.12212443802752596,0.23026212009687547,0.0458662499679936,0.004286122830401613,13.869100000000046,12.911500000000009,13.857069520900026,208,0,0.20037543242277545,-0.43983384862068775,0.43983384862068775,0.20037543242277545,0.027500000000000004,0.050624999999999996,0.071875,1.6266113224905303,80.56498016058606,1.519741151772795,1.4374944538481869,0.50790686837138,0.8584991457814777,0.7424944538481868,0.2879068683713799,0.19430754229870417,0.21364245885205344,0.12766416138269673,0.1439372157575671,0.08398303021513878,0.09516720027013195,-0.08074999999999999,3.8194646027548704,0.18483845712387142,0.26584928475119923,5.1472423312824125,7.3336152102235515,0.3471040078923795,0.13791751794040655,0.41409652803657193,0.14726809805064772,0.0,0.0,0.12459946302368022,4.9839785209472085,0.0,10.197363616602075,1.261120435606701,1.8534257305244075,2.2899342780479577,0.3435313013659395,1.412649401788044,0.844113268518267,0.0,0.7408082509284581,6.975826900282246,1.5987415560421003,25.19553593809799,64.52951863794513,0.0,11.387855989696924,0.0,0.0,0.0,11.761884949391115,1.370696649380908,0.6284166793084446,13.703784234591359,2.6823108194912506,45.82809966485382,0.0,33.390501781036484,0.0,1.8217500000000002,5.267571004482188,0.068537927808511,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.3441114739795328,8.259857967790573,-0.017983577337987704,0.15428522316007826,0.12563565420655365,-0.501276479915917,-0.07530506433591393,-0.17975181657082656,-0.34401232766431455,-0.9506162459989171,0.0,0.4375,40,0,7,0,1,1,2,3,5,8,0,8,9,0,0,0,6,6.668840000000007,4.07779999999999,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL3899099,Clc1cccc2c1CN(CCCCc1nc3ccccc3s1)CC2,6.531566868713572,0.361919216139845,-0.1801512475810798,0.361919216139845,0.22890393212713156,0.0239227139137768,14.871749999999984,13.98975,14.837974889666691,124,0,0.09381251855118408,-0.298689277544775,0.298689277544775,0.09381251855118408,0.052083333333333336,0.09027777777777778,0.13020833333333334,1.980254198940838,70.98080255205402,1.4582132221261608,1.3616933314363753,0.5522110617257995,0.8326602551225557,0.7068860214882656,0.31915523206897195,0.1794396503598292,0.23681611868366284,0.11632419690010685,0.1650619914503276,0.07415187482765546,0.11214135423557618,-0.05916666666666665,3.3590728272739194,0.20193732926566751,0.30082855110256734,3.4851531713760657,7.547767381521261,0.0,0.0,0.0,0.0,0.0,0.0,0.20416290545210325,4.9839785209472085,0.0,11.336785877934737,1.490442280036904,2.551779933167389,1.5502905195315126,1.0341480926720694,1.1994137366489424,1.3814311000938588,0.0,0.4118286771582369,0.0,1.332856637068061,12.99371936863189,63.45409094763115,0.0,0.0,0.0,0.0,0.0,22.937725768167255,0.9532336508512325,0.8017795619572793,0.0,2.402762756770008,42.29693095364306,5.022633313741326,10.216620634085363,0.0,0.6720833333333335,4.952207502265136,0.0,0.0,16.036705794403836,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.682786232075298,7.311977961689933,0.2633202499975649,0.13062241905320268,-0.08187868091375898,-0.11707350788974531,0.0,-0.24869576995328632,-0.6577771520573313,-0.5021158902969477,0.0,0.35,24,0,2,0,1,1,2,1,3,3,0,4,5,0,0,0,4,5.330700000000004,4.291291666666669,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL257525,Cc1ccc2c(-c3nnc(SCCC(C)N4CCc5cc6nc(C(F)(F)F)oc6c(C)c5CC4)n3C)cccc2n1,5.700000503883016,0.3387099702234779,-0.13620006927730555,0.3387099702234779,0.09563659468676322,0.005003119182583891,14.162926829268324,13.400780487804882,14.151785738341484,214,0,0.4684762316075941,-0.4325420439072766,0.4684762316075941,0.4325420439072766,0.028554431885782272,0.05056513979773944,0.07019631171921475,1.6569602991749897,74.69379934944511,1.3607230749002879,1.2349675993403695,0.49878458911909457,0.7765845324697347,0.640651825937593,0.28251759620412287,0.18919180877721442,0.2080551419999942,0.12689200725920177,0.1427681578688314,0.08296560116876206,0.09512164601041352,-0.08390243902439024,3.810873885954377,0.22629276025335318,0.26234207249862745,5.324524466530986,6.909183826530553,0.21912806304499272,0.134553676039421,0.40399661271860676,0.0,0.0,12.067022439469383,0.2410704451657972,4.9839785209472085,13.171245143024459,10.197363616602075,0.7290034407897805,1.8168795525355135,2.0147552006751135,0.33515248913750195,1.4654124712525534,0.8235251400178214,0.0,0.7227397570033738,6.975826900282246,1.390855573743634,18.698676253782047,64.52951863794513,0.0,11.387855989696924,0.0,13.171245143024459,0.0,11.761884949391115,1.3255828965675616,0.6316579322044995,13.703784234591359,2.048618015899201,45.82809966485382,0.0,33.390501781036484,0.0,1.7773170731707317,4.811741384799428,0.3546830170535287,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,24.582471595549837,1.0029940654904053,7.641177385428691,-0.019753210787130295,0.13338287338093502,0.11859582208413279,-0.39657923199049994,-0.084748459834606,-0.303731085538521,-0.4804037635348846,-0.6242004918097465,0.0,0.4,41,0,7,0,1,1,2,3,5,8,0,11,10,0,0,0,6,6.778640000000007,3.7563170731707243,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,0,0,2,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL2207665,Cn1cc(C(=O)NC[C@@H](O)CN2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)c(C(F)(F)F)cc1=O,8.299988937677888,0.4167430095737301,-0.17810716176722008,0.4167430095737301,0.7835940098969851,0.017155367204163555,15.363264705882363,14.651735294117653,15.326752831411781,186,0,0.4169396453185904,-0.49028401760240736,0.49028401760240736,0.4169396453185904,0.04411764705882353,0.06574394463667821,0.0847750865051903,2.3792334490296883,60.07652523656141,1.3551314000063968,1.17248400921769,0.5110680648658344,0.7498435887931989,0.5914661228425406,0.2650092716676768,0.1666795284023666,0.18891273269702702,0.09843131461308359,0.1179512781049516,0.05823674368179766,0.06492962821106638,-0.06676470588235293,3.05541812191799,0.2644314829570685,0.3230253034714066,6.878300282797786,6.983362514425684,0.7241909963775727,0.34792734883040866,0.04152476700965296,0.042094107565665714,11.466446624403513,6.176298517443475,0.28203159906304837,0.0,13.171245143024459,0.0,0.6824082288372068,0.7303143299407456,2.0306135145264776,1.164382783628195,1.7464701113551953,0.8561488091122511,1.4311996572326342,0.43461243329206495,6.975826900282246,0.9141818933530061,25.98743873726378,61.86854373146841,0.0,5.749511833283905,0.4589983294747186,13.171245143024459,5.749511833283905,23.20187978046503,1.7665197572793216,0.38682721816840354,0.0,1.7301170060549844,35.137107225539765,11.457108705810853,0.0,0.0,2.4647058823529413,4.339793260397368,0.6694211620931795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.792308020752083,7.158215900335023,0.3409064605585847,0.7251016420656172,0.017719722892518695,-0.22259223284683627,-0.12903409947852573,-0.1762215485596677,-0.796792244988444,-0.6901794169717355,0.0,0.45454545454545453,34,2,7,0,1,1,1,1,2,6,2,12,9,0,1,1,3,3.3450000000000015,3.5757941176470602,0,1,0,0,0,1,0,0,0,0,1,1,0,1,0,2,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2171043,O=C(NS(=O)(=O)c1cccc(Cl)c1)N1CCC(N2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)CC1,8.100015437450608,0.4059308897014267,-0.1809748575037205,0.4059308897014267,0.7767262193562436,0.016693285265988542,16.08541176470592,15.314588235294124,16.031498833882374,184,0,0.330798060408127,-0.49028401431764895,0.49028401431764895,0.330798060408127,0.03114186851211073,0.05190311418685121,0.0726643598615917,2.0203160539090135,64.72396527374258,1.3954326790653107,1.2357875193484373,0.5617958552008813,0.7758058094165592,0.6297591761576403,0.32466338652023913,0.16829263596782992,0.24696465287909194,0.10244827118552358,0.16036698319695658,0.06024877804075385,0.09598179223790276,-0.050294117647058795,3.10233119929479,0.24752610705652375,0.32096656515923333,6.287111538721253,7.38510762764977,0.2834344907250155,0.34792734883040866,0.04152476700965296,0.0,10.023291153407584,6.031114512338072,0.1441149920838376,17.92745378213489,0.0,0.0,1.201330540540025,1.6383468571657056,1.9521552553503478,0.7619652515400643,1.5773530324936633,1.4958007451895061,0.0,0.42690997280691434,0.0,1.2495615757686742,25.98743873726378,57.36483089486704,0.0,5.749511833283905,0.27799948728041707,4.794537184071822,5.749511833283905,34.802819670697545,1.8333552997332756,0.294802680982576,0.0,1.757666573810973,47.192414429160834,16.479742019552177,0.0,0.0,2.322058823529412,4.7693005818450125,0.3885980637764929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.21236731197298,7.40118029586536,0.5114684398106147,0.2790493920022734,-0.08278177131883485,0.0,-0.04317082477543155,-0.5010891588426709,-0.6999251974605387,-0.5685602393456792,-0.1809748575037205,0.43478260869565216,34,1,7,0,2,2,2,0,2,5,1,11,5,0,2,2,4,5.0529000000000055,3.924985294117646,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1 +CHEMBL195706,CN(C)C[C@@H]1CC2c3ccccc3Oc3ccc(F)cc3[C@H]2O1,7.481486060122112,0.6557905973740269,-0.1892892573696146,0.6557905973740269,0.8894544963046949,0.036205905165309485,13.624869565217375,12.748347826086956,13.61512204782611,120,0,0.13298184657817558,-0.45668067709541593,0.45668067709541593,0.13298184657817558,0.05860113421550094,0.0945179584120983,0.13232514177693763,2.2965731177605844,67.08953743245266,1.453033350514706,1.353985854323344,0.4844206369320396,0.8298165734176237,0.7033173569861859,0.26853474829053375,0.1916007199201839,0.1916007199201839,0.1289099762119665,0.1289099762119665,0.09205572347602907,0.09205572347602907,-0.08304347826086955,2.9062781535564297,0.19038311114579756,0.24439380521019724,2.620324075079709,7.099273884990361,0.6249406799326337,0.7528801959832044,0.0,0.0,0.0,0.0,0.0,4.39041504767482,0.0,0.0,0.7881415705647775,1.9345327622846542,1.6780897596063236,1.0650810025839978,1.7947526990730145,0.0,0.0,0.21303955351523818,0.0,1.0620399408953232,20.448513484880436,59.24105477808295,0.0,11.49902366656781,0.20595056320869778,4.39041504767482,11.49902366656781,0.0,1.3664539670730829,0.20595056320869778,5.817220841045895,2.47343368349743,42.29693095364306,0.0,0.0,0.0,0.9434782608695653,5.239800882651048,0.1191963961887148,0.1908876107684704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4846686921158285,8.309284293888224,0.0,-0.03867193462194325,0.0,-0.11969163873278779,-0.355093183677121,-0.38511685411434055,-0.5403273963570936,-0.5334267646458071,0.0,0.3684210526315789,23,0,3,0,2,2,2,0,2,3,0,4,4,0,1,1,4,4.106800000000003,3.7583478260869585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL64608,C[C@@H](CN)C(=O)N1CCN(CCCOc2ccc(C(=O)C3CC3)cc2)CC1,5.820000358220838,0.5102846343586563,-0.179901741879322,0.5102846343586563,1.1610409307504392,0.01953770429193141,13.833222222222206,12.675888888888894,13.82357562414818,148,0,0.22626431146216824,-0.4935496626856032,0.4935496626856032,0.22626431146216824,0.053497942386831275,0.08093278463648834,0.10425240054869685,2.2513095048653686,67.33308527014816,1.7243688793434233,1.6320883576996836,0.48394020955153566,0.9298767251110858,0.8250433835621295,0.2548794135250955,0.16700614024459826,0.16700614024459826,0.1019995710759531,0.1019995710759531,0.054208073675422304,0.054208073675422304,-0.07111111111111111,3.346368824649463,0.15967007077199913,0.3455292969109447,5.5287847222222215,7.587415509817788,0.5687588763102519,0.3175257774051965,0.21419425727277552,0.21878443442042614,0.0,0.0,0.5366290407034859,0.0,0.0,0.0,0.2537737821220622,1.6032759086904194,3.0509976865019612,0.7506137335043883,2.107467392871723,0.43297869169320163,0.0,0.36295627635929467,17.507632346452432,0.9618765489364377,45.54014334881195,29.733126322350174,0.0,5.749511833283905,0.38728073813060454,0.0,5.749511833283905,0.0,2.4826069439344205,0.17757545126191931,11.787915370726157,2.8178019861477424,24.16967483065318,2.8236841566564013,0.0,0.0,2.81,5.407086104059249,0.35515090252383863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7523164903478838,9.462791743082356,0.0,0.9020039453193127,0.0,-0.095429551442486,-0.5390394210973147,-0.2326107903479323,-0.41427225301665005,-1.3766535490404965,0.0,0.6190476190476191,27,2,6,1,1,2,1,0,1,5,1,6,11,1,1,2,3,1.7871999999999986,3.883218518518521,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3805361,N#C/N=C(/NCCSc1ccccc1)NC[C@H]1CC[C@H](c2c[nH]cn2)C1,5.200924412497672,0.35807733450298684,-0.1702732062101426,0.35807733450298684,0.1004218399982606,0.00883525843311726,14.173461538461526,13.243000000000004,14.160704452615413,136,0,0.2086679513210789,-0.35521068876815215,0.35521068876815215,0.2086679513210789,0.060650887573964495,0.09467455621301776,0.1242603550295858,2.2266838766976207,67.55367499968875,1.5128454086235126,1.407366533210139,0.5156933247842822,0.8557633883070246,0.7099832250851349,0.2859392171785138,0.1548570107389907,0.18626072539005697,0.09316598932206249,0.11630435301426847,0.05532374468611263,0.07061117971555204,-0.09461538461538462,3.305389640217459,0.1874256084770924,0.379871633642451,5.529413757879869,7.383272853023509,0.5998703837233078,0.05272148292962386,0.16290485519171544,0.4674119486354875,0.0,0.0,0.0,4.9839785209472085,5.261891554738487,16.754289682026783,0.697202158576534,1.4268296078722231,2.109678169686953,0.7777635017629232,1.270055996713816,0.681593827620575,5.261891554738487,0.7915618652982004,10.886362417998747,1.1503159948026538,18.698676253782047,48.38228845794592,0.0,6.19315609577884,0.40844718102218275,0.0,0.0,11.761884949391115,1.33150817745009,0.0,17.349005335880406,2.2881765409143986,52.5762486712509,4.235526234984602,0.0,0.0,3.418846153846154,4.594704597587717,0.20238044441301872,0.0,16.738888219620367,0.0,6.19315609577884,0.0,0.0,0.0,9.976383253582878,1.270055996713816,7.649467584464505,-0.013462731496654744,0.2035395156766628,0.29461821380766484,-0.19325179720272018,-0.3941089672593246,-0.18218906440344618,-0.5423981670268618,-0.3222145865598248,0.0,0.42105263157894735,26,3,6,1,0,1,1,1,2,4,3,7,7,1,0,1,3,3.101980000000001,4.034196153846155,0,0,0,0,0,2,1,0,0,0,0,0,0,0,1,3,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL440864,CCOC(=O)N1CCN(CCCOc2ccc(C(=O)c3ccc(F)cc3)cc2)CC1,6.679999195735272,0.46974679477899445,-0.1583024048028344,0.46974679477899445,1.0843252091136053,0.01626699041598753,13.81589999999999,12.908700000000007,13.806516185466693,160,0,0.4093313385597905,-0.4935496593340977,0.4935496593340977,0.4093313385597905,0.03666666666666667,0.05777777777777778,0.07888888888888888,2.201949065493061,64.32334648862039,1.5050605956469036,1.3801794941954866,0.48017949419548656,0.8355943998724743,0.7001789298132025,0.25017892981320256,0.1583741241408538,0.1583741241408538,0.09635452034710158,0.09635452034710158,0.05496762921003109,0.05496762921003109,-0.09766666666666662,3.0141505277557825,0.19506886236658813,0.35780105923169286,6.032181474550337,7.12221901124532,0.4791211879483525,0.38555775581099333,0.19277483154549796,0.0,0.0,6.093240070938415,0.32314823049741,9.184952231746642,0.0,0.0,0.0,2.0521388893310473,1.9563181840948722,1.1683369128185366,2.015456544667152,0.3958828339101118,0.0,0.3266606487233652,0.0,0.4408272339541686,45.602268907412295,65.28347348574624,0.0,5.749511833283905,0.15789543179333496,9.184952231746642,5.749511833283905,0.0,2.2426191128805537,0.15789543179333496,5.817220841045895,2.2052246067562296,48.33934966130636,0.0,0.0,0.0,1.9693333333333336,5.051212524135729,0.4659829805272821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.3915781323465337,8.004225291977539,0.0,0.8006854273328882,0.0,-0.08499386953042007,-0.16843026115450227,-0.37915299708492495,-0.2449452236369525,-1.1746105901258468,0.0,0.391304347826087,30,0,6,0,1,1,2,0,2,5,0,7,9,0,1,1,3,3.599700000000003,3.714050000000001,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3943575,c1ccc(Cc2ccccc2OCCN2CCCCCC2)cc1,7.199970640755867,0.38031482326830995,-0.20193359610821313,0.38031482326830995,0.9953790555568991,0.03378082874823289,13.454478260869545,12.27117391304348,13.443881064521772,122,0,0.12238551660823349,-0.4919618861759742,0.4919618861759742,0.12238551660823349,0.04158790170132325,0.07183364839319471,0.1058601134215501,2.4625372638272887,72.25655029458538,1.726637403506595,1.667628777650601,0.49371573417234005,0.9522317294233842,0.8512638558136435,0.26430733407451307,0.1610464645092957,0.1610464645092957,0.09724101564376605,0.09724101564376605,0.05811509184299143,0.05811509184299143,-0.07826086956521738,2.9539755722985443,0.14924621624363446,0.3797172158900846,5.105955251671193,7.720640330688799,0.20595056320869778,0.5351520467913128,0.0,0.0,0.0,0.0,0.21303955351523818,0.0,0.0,0.0,2.6558782375637007,1.8656039505368667,1.5131270210595151,0.6555801790379313,1.8151019117563483,0.0,0.0,0.21303955351523818,0.0,1.3854184568107346,26.049564295864123,65.50867135236365,0.0,5.749511833283905,0.20595056320869778,0.0,5.749511833283905,0.0,1.3456293055093302,0.27708369136214694,0.0,3.201264504578586,54.38176836896965,0.0,0.0,0.0,0.5421739130434783,5.829229639956918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8151019117563483,9.900142151940589,0.0,-0.04868911363492267,0.0,-0.1197701221458005,-0.07269280424193299,-0.48243736373548307,-0.917370885191071,-0.7917905586435559,0.0,0.42857142857142855,23,0,2,0,1,1,2,0,2,2,0,2,6,0,1,1,3,4.532200000000004,4.177956521739133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL295001,CC1=C(C(=O)NCCCN2CCC(C#N)(c3ccc(F)cc3F)CC2)[C@@H](c2ccc(F)c(F)c2)CC(=O)N1,6.966576244513051,0.4150981675134969,-0.1368430018877635,0.4150981675134969,0.7557815528454532,0.010979246709373017,13.909210526315807,13.166473684210533,13.900390500421071,200,0,0.24909465025223548,-0.3521926012804412,0.3521926012804412,0.24909465025223548,0.03462603878116344,0.054709141274238225,0.07340720221606647,2.1078500416772776,64.6233643345501,1.373072681468143,1.2136107593411702,0.4767686540780123,0.7673238636435414,0.6209857581442647,0.2553429373284775,0.17981249635092886,0.17981249635092886,0.11818535807246114,0.11818535807246114,0.0744664453015186,0.0744664453015186,-0.0976315789473684,3.1733678064244173,0.23459467048529936,0.2987948506520734,5.72820371505069,6.771550437276843,0.4084088536165061,0.3061695179497839,0.3804769957565314,0.31090419628165816,0.0,0.0,0.2523440623195696,17.56166019069928,5.261891554738487,0.0,0.31802203724543654,1.8197882497083822,1.8172349325499533,0.5186516610318519,1.7266879256822398,0.31090419628165816,5.261891554738487,0.4084088536165061,0.0,1.148751049404554,25.98743873726378,81.92044243668244,0.0,6.069221312792274,0.27946386069938817,17.56166019069928,0.0,0.0,1.1237291559688756,0.39484381151422165,34.59999623171434,2.236951969784104,47.524656089104866,2.8236841566564013,0.0,0.0,2.2428947368421053,4.70774518282762,0.621889368900836,0.23107447619341157,0.0,0.0,6.069221312792274,0.0,0.0,0.0,0.0,1.0121949109758455,7.761872364557895,0.0,0.6923586998572002,0.2064297647814878,-0.3566836500704427,-0.5165691121084763,-0.29352188204418433,-0.5104726711517892,-0.6435012331199357,0.0,0.39285714285714285,38,2,6,0,2,2,2,0,2,4,2,10,8,0,1,1,4,4.184180000000003,3.4607473684210532,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,2,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2158790,Cc1c(OC2CCN(CC3CCN([C@@](C)(Cc4ccc(F)cc4)C(=O)O)CC3)CC2)ccc(Cl)c1Cl,7.500038134403808,0.4103189057562764,-0.15287009756869574,0.4103189057562764,0.9912120667295079,0.012289717759024103,14.930638888888918,13.950638888888896,14.894468793333358,196,0,0.3236777305711513,-0.4900045364121047,0.4900045364121047,0.3236777305711513,0.034722222222222224,0.05478395061728395,0.07253086419753087,2.2133969246244116,68.36016730673482,1.5715129888949302,1.451474041150533,0.5212478714848916,0.8610759904432536,0.7398147879834807,0.277250361748886,0.17861005931691085,0.1996080855952012,0.11199619032169565,0.133056464682135,0.06537801781951078,0.0730114520728799,-0.05166666666666665,3.180495989824023,0.20013071557586776,0.3244182261245952,6.3350721555788585,7.553821746991449,0.4095994687710483,0.6440465542684204,0.0,0.0,1.4311996572326342,5.969305287951849,0.269290192081175,4.39041504767482,0.0,0.0,0.9801865887719896,2.4393413115626124,1.9010399017380617,0.5455715700187276,1.8232337301789292,0.8103106963449134,1.4311996572326342,0.272217207269471,5.893957685363079,1.5885375561269883,32.48429842157972,63.2439026979023,0.0,5.749511833283905,0.13157952649444582,4.39041504767482,5.749511833283905,23.20187978046503,1.8050326289353629,0.31020728015003335,18.563070643704652,2.5021190448831843,36.25451224597977,10.045266627482652,1.4311996572326342,0.0,1.4725000000000001,5.009115205787596,0.29321418855324616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.072360409586528,8.955358673599157,0.3306567775276705,0.3051834937889022,0.043017119766941156,-0.2483370645692012,-0.3453513534713965,-0.2883809266038051,-0.8451981798596979,-0.9725349599316571,0.0,0.5357142857142857,36,1,5,0,2,2,2,0,2,5,1,8,10,0,2,2,4,6.082120000000007,3.936966666666665,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1091793,CC(c1cccc(F)n1)c1c(CCN(C)C)sc2ccccc12,7.420216403383192,0.6388096371404902,-0.17991544125030587,0.6388096371404902,0.041420566683463944,0.027462377013783023,14.280695652173899,13.36034782608696,14.266997734434806,120,0,0.21257294050812306,-0.30903977364072377,0.30903977364072377,0.21257294050812306,0.05860113421550094,0.09640831758034027,0.13232514177693763,2.7424789671356873,70.61275722705797,1.4998746665664286,1.3991582588901308,0.5216146319739449,0.8471237444757103,0.7158810659007989,0.29485917811504775,0.17755409120890886,0.2219289053897635,0.11560133170945024,0.1599761458903049,0.0776670712454107,0.11958890602812611,-0.07739130434782605,3.2541032144857005,0.19290450477939966,0.2942800530572892,3.4327361220295463,7.376068494421194,0.21303955351523818,0.0,0.0,0.2585955367042331,0.0,0.0,0.0,4.9839785209472085,4.39041504767482,11.336785877934737,1.3487637803456025,2.1478917622193716,1.7895001854883703,0.6647494733930435,1.4424497707499755,0.9314317395160275,0.0,0.4297342718172907,0.0,0.8312510740864407,20.448513484880436,64.37915497808717,0.0,0.0,0.0,4.39041504767482,0.0,11.336785877934737,1.3188000755077447,0.27708369136214694,5.947697344197361,2.50723070271653,42.29693095364306,0.0,10.086144130933896,0.0,0.7013043478260871,5.170978131684353,0.25048580886282784,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.1919639618871476,8.033107142312062,-0.0018008942036288672,0.048882923723958326,-0.03988703210752897,-0.12032364616539049,-0.2430257136094725,-0.3408732143283401,-0.1728983607331823,-0.6849203353232585,0.0,0.3157894736842105,23,0,2,0,0,0,1,2,3,3,0,4,8,0,0,0,3,4.691300000000004,4.165000000000002,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL2158785,Cc1c(OC2CCN(CC3CCN([C@@H](Cc4ccc(F)cc4)C(=O)O)CC3)CC2)ccc(C#N)c1Cl,6.299997602857746,0.4058023668449008,-0.1498560161021061,0.4058023668449008,1.0499621318086436,0.015005203763859736,14.278916666666662,13.354916666666675,14.25609577266669,192,0,0.3207640020854561,-0.49000481746768443,0.49000481746768443,0.3207640020854561,0.03780864197530864,0.05787037037037038,0.07561728395061729,2.1465231117449886,68.28131047853878,1.5217103994834453,1.397842072330831,0.5021734319424548,0.8412983460671641,0.7129988035736298,0.26771314197766766,0.1733605527473382,0.1838595658864834,0.10859280372568439,0.11909181686482956,0.06486442108837141,0.06973455076835072,-0.07388888888888888,3.1751059070060457,0.20145379414411996,0.3347524547553435,6.555098329114442,7.311582092942874,0.4095994687710483,0.8259406800672697,0.0,0.0,1.4311996572326342,5.969305287951849,0.269290192081175,4.39041504767482,5.261891554738487,0.0,0.657938258487753,2.426036666674659,1.6097843303536157,0.5986709237444466,1.7470804770583614,0.4880623660606768,6.693091211971121,0.272217207269471,5.893957685363079,1.4115118644233946,32.48429842157972,63.78472087585797,0.0,11.818733146076179,0.13157952649444582,4.39041504767482,5.749511833283905,11.600939890232516,1.818337273823316,0.31020728015003335,29.89418351123541,2.390175774384876,36.25451224597977,5.022633313741326,1.4311996572326342,0.0,2.1333333333333337,4.847112241249437,0.43937784285153747,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,5.1088081911072125,1.6739588261817242,8.439759064149522,0.1677549116666877,0.2970253575778824,0.3310114184086952,-0.12563235342314666,-0.33545231943033826,-0.3840080896417893,-0.827898800630558,-0.8187320281831297,0.0,0.5,36,1,6,0,2,2,2,0,2,6,1,8,9,0,2,2,4,4.910300000000005,3.800522222222221,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1222763,CC(C)(CN1CCN(C2=Cc3ccccc3Cn3cc(F)nc32)CC1)C(=O)O,7.400007822415903,0.5399057165089929,-0.1768989988818053,0.5399057165089929,0.12493859337812241,0.031361175632046726,13.730535714285702,12.830535714285718,13.721291223571454,148,0,0.3098703883855453,-0.48080127069077727,0.48080127069077727,0.3098703883855453,0.05102040816326531,0.07908163265306123,0.10586734693877552,2.268313112637507,67.43869456710374,1.4848024142934817,1.374404122712028,0.4815469798548852,0.8372638648638208,0.7041126283100754,0.26096090365065167,0.18843352848357822,0.18843352848357822,0.11938402237305677,0.11938402237305677,0.07578597248754547,0.07578597248754547,-0.09535714285714285,3.226600538884867,0.18828607789952392,0.25190464578588373,3.539389037227865,7.094900307340319,0.520564913205323,0.0,0.20801444635714025,0.2124177622927629,1.4311996572326342,5.969305287951849,0.34623024696151067,0.0,9.374393568622029,0.0,0.8632026725233278,1.1029556772864613,1.9796521707120838,1.2047867024039292,1.685427348962113,0.6328005838229732,1.4311996572326342,0.6911034868014114,5.41499046939678,0.7214515685324037,32.48429842157972,53.241574867059214,0.0,0.0,0.0,4.39041504767482,0.0,0.0,2.246903911824225,0.4032641738709917,11.36268781359414,2.2697606094310943,30.34257004146794,0.0,13.180310716324033,0.0,2.2,4.959276553060259,0.17123347085970791,0.15680053741695785,4.567099647791355,0.0,0.0,0.0,0.0,0.0,10.092786712054421,1.2260501787613538,8.030632753324287,0.0,0.5138014167802014,0.1272313146743986,-0.3192483523546206,-0.2210936979218296,-0.2278779485385262,-0.05582943725711924,-1.2851160487067919,0.0,0.42857142857142855,28,1,6,0,2,2,1,1,2,6,1,7,6,0,1,1,4,2.6104000000000003,3.751064285714288,1,0,0,0,0,2,0,0,1,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2158793,Cc1cc(F)ccc1OC1CCN(CC2CCN([C@@](C)(Cc3ccc(F)cc3)C(=O)O)CC2)CC1,7.100015437450608,0.423258002033925,-0.15821931069934067,0.423258002033925,1.5202833694752362,0.016413576370041316,13.902942857142847,12.866142857142865,13.893411412914313,190,0,0.3236777305711513,-0.49005861716267396,0.49005861716267396,0.3236777305711513,0.03428571428571429,0.05469387755102041,0.07346938775510205,2.2133969246244125,70.12496081667439,1.616413360006214,1.5107171716688559,0.4821457430974274,0.8856781615987751,0.7698385751685912,0.2581743382981951,0.17831371139726213,0.17831371139726213,0.11012605395680847,0.11012605395680847,0.06534500467517065,0.06534500467517065,-0.07171428571428572,3.180495989824023,0.18010940608701367,0.31548134330411015,6.385166477144321,7.340044466886359,0.4213023107359354,0.8286541941345436,0.0,0.0,1.4311996572326342,5.969305287951849,0.27698419756920856,8.78083009534964,0.0,0.0,0.34528106900933114,2.840633069017552,1.7963995705963778,0.313316241410336,2.0399310825796135,0.17055157965576712,1.4311996572326342,0.27999484176288447,5.893957685363079,1.6339243434449022,32.48429842157972,65.05827561912884,0.0,5.749511833283905,0.13533894153714426,8.78083009534964,5.749511833283905,0.0,1.8566049897620875,0.3190703452971772,24.38029148475055,2.6127726906275672,42.29693095364306,0.0,1.4311996572326342,0.0,1.5145714285714287,5.2040720094165716,0.4270321667311909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.5078243863091487,9.804252959944746,0.0,0.3114241534005133,0.1056155746160314,-0.26617643957816933,-0.4219508876762631,-0.3721570311477064,-0.8789798996326157,-1.012980810878921,0.0,0.5357142857142857,35,1,5,0,2,2,2,0,2,5,1,7,10,0,2,2,4,4.914420000000004,3.761965714285715,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3094114,c1ccc(COc2ccc3c(c2)CCN(CC2CC2)CC3)cc1,6.0,0.3800865595281023,-0.1867509693784379,0.3800865595281023,0.8356554467066704,0.035877757510319186,13.366826086956502,12.27117391304348,13.356244105217423,120,0,0.1196063544186901,-0.4889064515080956,0.4889064515080956,0.1196063544186901,0.04914933837429111,0.0831758034026465,0.11720226843100189,2.0766076995115066,73.30746109284296,1.6396808817674644,1.5806722559114703,0.49371573417234005,0.9179415061801315,0.8186551601614696,0.27517689929190436,0.18278559494407828,0.18278559494407828,0.11320583689264464,0.11320583689264464,0.06682978890924392,0.06682978890924392,-0.07826086956521737,3.263131215647175,0.15537479128767953,0.29373102677867036,3.9418465453859923,7.554737193564239,0.41899011672393593,0.5351520467913128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.576283141129555,2.615689094830355,1.7413894519783109,0.5959819809435739,1.6959055155676332,0.0,0.0,0.21303955351523818,5.893957685363079,1.3935080368797308,19.490579052947837,65.02970413639734,0.0,5.749511833283905,0.20595056320869778,0.0,5.749511833283905,0.0,1.0604560340781874,0.8393406541554368,5.893957685363079,2.7697899209567534,48.33934966130636,0.0,0.0,0.0,0.5421739130434783,5.787580316829413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6959055155676332,9.271553715252354,0.0,-0.03633284550898567,0.0,-0.18814431588354977,-0.2242915197945788,-0.4258941044954074,-0.6532139550122789,-0.7110682789053786,0.0,0.42857142857142855,23,0,2,1,1,2,2,0,2,2,0,2,5,1,0,1,4,4.076200000000004,4.077739130434785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL364270,CN(C)C[C@@H]1CC2c3ccccc3Oc3ccc(Cl)cc3[C@H]2O1,7.853871964321763,0.41034792056919384,-0.18664734915705425,0.41034792056919384,0.8414435223677947,0.03487082303970852,14.340304347826072,13.463782608695654,14.309489415652196,120,0,0.1328780768127826,-0.4566824898844559,0.4566824898844559,0.1328780768127826,0.05860113421550094,0.0945179584120983,0.13232514177693763,2.2965731177605844,67.08953743245266,1.453033350514706,1.353985854323344,0.5172871128458855,0.8298165734176237,0.7033173569861859,0.2849679862474567,0.1916007199201839,0.2080339578771068,0.1289099762119665,0.13712659519042797,0.09205572347602907,0.09821818770987516,-0.06739130434782606,2.9062781535564297,0.19739791200966603,0.25316847311693885,2.735040188354364,7.366131746901468,0.6249406799326337,0.4999575507203396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2925302614444523,1.9345327622846542,1.8964651210733385,1.0650810025839978,1.6038650883045436,0.5043886908796746,0.0,0.21303955351523818,0.0,1.0620399408953232,20.448513484880436,58.446467250778376,0.0,11.49902366656781,0.20595056320869778,0.0,11.49902366656781,11.600939890232516,1.3664539670730829,0.20595056320869778,0.0,2.47343368349743,42.29693095364306,5.022633313741326,0.0,0.0,0.9434782608695653,5.205253598855197,0.1191963961887148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9890573829955045,7.726974419377785,0.26265255975952156,-0.03658450097251281,-0.038321347325833165,-0.10567335025797756,-0.25959063859037984,-0.3275167318503697,-0.5266628000838017,-0.5274032139211694,0.0,0.3684210526315789,23,0,3,0,2,2,2,0,2,3,0,4,4,0,1,1,4,4.621100000000004,3.978000000000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3806079,N#C/N=C(/NCCSc1ccccc1)NC[C@@H]1CC[C@H](c2c[nH]cn2)C1,5.467958282018203,0.35807733450298684,-0.1702732062101426,0.35807733450298684,0.1004218399982606,0.00883525843311726,14.173461538461526,13.243000000000004,14.160704452615413,136,0,0.2086679513210789,-0.35521068876815215,0.35521068876815215,0.2086679513210789,0.060650887573964495,0.09467455621301776,0.1242603550295858,2.2266838766976207,67.55367499968875,1.5128454086235126,1.407366533210139,0.5156933247842822,0.8557633883070246,0.7099832250851349,0.2859392171785138,0.1548570107389907,0.18626072539005697,0.09316598932206249,0.11630435301426847,0.05532374468611263,0.07061117971555204,-0.09461538461538462,3.305389640217459,0.1874256084770924,0.379871633642451,5.529413757879869,7.383272853023509,0.5998703837233078,0.05272148292962386,0.16290485519171544,0.4674119486354875,0.0,0.0,0.0,4.9839785209472085,5.261891554738487,16.754289682026783,0.697202158576534,1.4268296078722231,2.109678169686953,0.7777635017629232,1.270055996713816,0.681593827620575,5.261891554738487,0.7915618652982004,10.886362417998747,1.1503159948026538,18.698676253782047,48.38228845794592,0.0,6.19315609577884,0.40844718102218275,0.0,0.0,11.761884949391115,1.33150817745009,0.0,17.349005335880406,2.2881765409143986,52.5762486712509,4.235526234984602,0.0,0.0,3.418846153846154,4.594704597587717,0.20238044441301872,0.0,16.738888219620367,0.0,6.19315609577884,0.0,0.0,0.0,9.976383253582878,1.270055996713816,7.649467584464505,-0.013462731496654744,0.2035395156766628,0.29461821380766484,-0.19325179720272018,-0.3941089672593246,-0.18218906440344618,-0.5423981670268618,-0.3222145865598248,0.0,0.42105263157894735,26,3,6,1,0,1,1,1,2,4,3,7,7,1,0,1,3,3.101980000000001,4.034196153846155,0,0,0,0,0,2,1,0,0,0,0,0,0,0,1,3,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL401576,Cc1noc2cc3c(cc12)CCN(CCCSc1nnc(-c2ccc(C(F)(F)F)cc2)n1C)CC3,6.19999817218203,0.38963587113351944,-0.1556163772544417,0.38963587113351944,0.13815698593826697,0.007305221772362786,14.330799999999993,13.582000000000006,14.319457603200023,184,0,0.4159102500489165,-0.3560135525116388,0.4159102500489165,0.3560135525116388,0.03346938775510204,0.05551020408163265,0.07591836734693877,1.7336170917497722,69.32378192956087,1.3528710994901822,1.2196130850701485,0.5000844159537978,0.7714751676612053,0.6306958431655572,0.2825957454777779,0.1821314261871849,0.20422847367672695,0.11835762551455706,0.13695540194298036,0.07325269100983664,0.08603459964411454,-0.08142857142857139,3.6862624850756345,0.2307526881024485,0.27591017564321946,5.084666795373655,6.902052684320215,0.39971726616043374,0.0,0.47325317489893937,0.0,0.0,6.176298517443475,0.0,0.0,13.171245143024459,10.197363616602075,0.82866816062409,1.9361172662756267,1.8296957138180154,0.5566265949590506,1.5238303582978163,0.6494608372999472,0.0,0.7091724643534101,6.975826900282246,1.0658114805870855,25.19553593809799,58.63879471591921,0.0,11.387855989696924,0.0,13.171245143024459,0.0,11.761884949391115,1.4290449197276385,0.7399421491538423,6.851892117295679,1.8399122809055606,45.934043664773824,0.0,22.357100345803957,0.0,1.7137142857142857,4.7752129828826595,0.37632128980069884,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,15.35402687372752,1.1475090684971165,7.587380788507962,-0.019881033132691194,-0.028531540673084634,0.22158066923914846,-0.35864568464052,-0.035928461817692645,-0.2625806154964046,-0.5214275898562916,-0.5867284368923319,0.0,0.4,35,0,6,0,1,1,2,2,4,7,0,10,8,0,0,0,5,5.533520000000005,3.696457142857144,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1088898,Cc1nccnc1CC1=C(CCN(C)C)Cc2ccccc21,7.200659450546419,0.4084829266302481,-0.1951803083747529,0.4084829266302481,0.869277620394143,0.03849216162528687,13.336999999999978,12.283181818181816,13.326781715272757,114,0,0.08566561618174233,-0.30908131660906474,0.30908131660906474,0.08566561618174233,0.05991735537190082,0.09917355371900825,0.1384297520661157,2.7017198150067756,71.10495137290472,1.6099894119017377,1.5382563993863578,0.4928018539318124,0.8990229237127209,0.7870567083749933,0.2643294356477206,0.18030185393181244,0.18030185393181244,0.1174236542386335,0.1174236542386335,0.07773008618465742,0.07773008618465742,-0.09090909090909088,3.077085656206858,0.16206509539842873,0.2911739665121559,3.0945865556216536,7.481408786607864,0.22272316958411265,0.0,0.0,0.0,0.0,0.0,0.4530889564497462,0.0,0.0,0.0,1.3519445163964747,2.284063783362827,2.2053850210076646,0.8914730603053745,1.4330657632688661,0.2533229331849667,0.0,0.6758121260338589,0.0,1.1804848555129008,20.448513484880436,64.60332875544289,0.0,0.0,0.0,0.0,0.0,0.0,1.6052900117102424,0.5793568092117618,6.851892117295679,2.746142303015246,42.08856978235197,0.0,5.573104530069267,0.0,1.3190909090909093,5.522523787387586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.4330657632688661,8.536061974042768,0.0,0.2733661855748899,0.0,-0.369248943755392,0.0,-0.2084500378555991,-0.6264211697530788,-0.7075807355263138,0.0,0.3684210526315789,22,0,3,1,0,1,1,1,2,3,0,3,8,0,0,0,3,3.2891200000000023,4.123181818181821,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL138989,C[C@@H]1C[C@@H](C)N1C(=O)[C@@H]1C=C2c3cccc4[nH]cc(c34)CC2N(C)C1,5.853871964321763,0.5839905118837656,-0.17879712301587297,0.5839905118837656,0.09901078398913898,0.03479716970944618,13.418039999999984,12.410040000000002,13.407990496800029,130,0,0.23079786146094716,-0.36087066449583927,0.36087066449583927,0.23079786146094716,0.0592,0.0944,0.1264,2.05696662629573,75.60944755588073,1.5633161507461906,1.4899955630785495,0.4899955630785495,0.8789144571605613,0.7776076849092689,0.27971914108927054,0.21323241381133207,0.21323241381133207,0.15652420987883273,0.15652420987883273,0.11110470879828074,0.11110470879828074,-0.0828,3.1924279342552357,0.1635703806050072,0.20850443770863233,2.066152739118949,7.3289155057405795,0.3950765200431892,0.0,0.056473683133128026,0.23628718917406022,0.0,0.0,0.38777787659689195,0.0,0.0,0.0,0.7254763664544862,2.246715486346356,2.5423397652393707,0.6744010453889935,1.5641833844194124,0.8953283676600734,0.0,0.5910729092772083,5.893957685363079,1.7801324576919617,13.47268658459819,41.4791260632342,0.0,0.0,0.0,0.0,0.0,0.0,2.0884146580371534,0.44669848341604806,5.893957685363079,2.564072698696003,30.35222307984021,1.4118420783282006,16.476029462150326,0.0,1.5736,5.501284417147893,0.3014421718564905,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,0.0,1.2627412125629214,8.43853786347898,0.0,0.5271758529603043,-0.03161776371042243,-0.1764422028858987,-0.28243560248173355,-0.6944887493866031,-0.356821215543916,-0.6705748490973782,0.0,0.47619047619047616,25,1,4,1,2,3,1,1,2,2,1,4,4,0,1,1,5,3.0469000000000017,4.010988000000001,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,2,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL431172,CCCCCC(=O)c1ccc(OCCCN2CCN(S(C)(=O)=O)CC2)cc1,4.579999998661814,0.49724813581427474,-0.2384047627071129,0.49724813581427474,1.2779264134512878,0.015740577232500958,14.68714814814813,13.492481481481487,14.674380685333366,152,0,0.21078955891973206,-0.4935496627218369,0.4935496627218369,0.21078955891973206,0.04526748971193416,0.07270233196159122,0.09739368998628259,2.857418803622616,70.70897222246462,1.7741947853293771,1.6642840238266383,0.5093394527498873,0.9352819371297145,0.8314977069942968,0.29224079324617225,0.149120131527182,0.19783424453927181,0.08403851874238295,0.1086048435079416,0.04538651954951568,0.05731273990174852,-0.05333333333333333,2.985503628146022,0.16651435297162245,0.39929297176810513,7.598198942614053,7.705530671676395,0.3569175068389084,0.21294488271421871,0.21419425727277552,0.3712330056817624,0.0,0.0,0.17757545126191931,8.417796984328938,4.305215991296234,0.0,0.7258422933316458,1.3672416530856273,2.9651998990752526,0.7765726178168172,2.2893878118388113,0.5854272629545378,0.0,0.34093058230173007,0.0,1.4339450601460213,45.22720776561247,29.733126322350174,0.0,5.749511833283905,0.17543936865926107,0.0,5.749511833283905,0.0,2.541976867350113,0.3712330056817624,0.0,3.4421770035984585,24.16967483065318,0.0,0.0,0.0,2.4785185185185186,5.349556458041052,0.4893457099407688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.62460273323878,10.52314477593333,0.0,0.44991752790867146,0.0,-0.0663201038332408,-0.15937153785857688,-0.26655163399648335,-0.9956743366027315,-1.1973572127944752,-0.2384047627071129,0.65,27,0,6,0,1,1,1,0,1,5,0,7,13,0,1,1,2,2.795700000000001,3.99567777777778,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL1910384,COc1ccc(CN(CCN[C@H]2CCN(C(=O)c3cc4ccccc4[nH]3)C2)c2ccccn2)cc1,6.3399982798971175,0.4081078352218688,-0.13773938180407222,0.4081078352218688,0.13690293033056067,0.01104146203419512,13.416828571428562,12.524028571428579,13.407079292342882,180,0,0.269855109785071,-0.49676820001250693,0.49676820001250693,0.269855109785071,0.03918367346938775,0.0636734693877551,0.08897959183673469,1.8066806464126637,75.29834555952456,1.464874857797832,1.372930415955072,0.4872161302407862,0.8429512907956926,0.7054308914198703,0.2655901145341584,0.17593762732517534,0.17593762732517534,0.113364102908315,0.113364102908315,0.07100231850862097,0.07100231850862097,-0.10971428571428568,3.487839933500115,0.18501250610182385,0.30318979802209134,5.463936519726464,7.112843084703015,0.7092428296862467,0.5335184195513026,0.040338345095091446,0.0,5.907179729351506,0.0,0.13698677668776635,4.9839785209472085,0.0,0.0,1.0358432070279935,1.3768825325430327,1.8620948836004783,1.062704019846498,1.4887737835275623,0.6465133554076454,0.0,0.5763058535804376,0.0,0.5396479158284277,37.92530092699684,89.93929918931977,0.0,5.749511833283905,0.42704531536968293,5.817862777835028,5.749511833283905,0.0,1.7088958547392703,0.185624562409027,0.0,1.776481134310946,78.68191970277431,2.8236841566564013,10.902924932081056,0.0,2.099714285714286,5.295413700771486,0.13698677668776635,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.2164480653026513,7.634882539821116,0.0,0.45829520763820814,-0.0595952562089667,-0.11460832703772976,-0.1501491441928362,-0.5729506889342897,-0.1675164399521353,-0.6488817494780726,-0.09852376070291168,0.2857142857142857,35,2,7,0,1,1,2,2,4,5,2,7,10,0,1,1,5,4.0824000000000025,3.968311428571425,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,3,2,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL239099,N#Cc1ccc(C(=O)N2CCN(c3ccc(OC4CCN(C5CCC5)CC4)cc3)C(=O)C2)cc1,5.599999383023619,0.4110947293432874,-0.13450749988452648,0.4110947293432874,0.632181986885652,0.02017836871968464,13.487117647058813,12.597705882352948,13.477405612352966,176,0,0.2538834810672837,-0.49033877792872865,0.49033877792872865,0.2538834810672837,0.030276816608996535,0.05103806228373703,0.07093425605536331,1.6919430341754682,69.36333798056799,1.4773284746646098,1.3680470368644535,0.48569409568798294,0.8310211388264952,0.7074283693655152,0.2662518987772799,0.17999647266239982,0.17999647266239982,0.11771713168745525,0.11771713168745525,0.07045339164539653,0.07045339164539653,-0.09911764705882352,3.1387502637519717,0.18934902399494782,0.2900059311384122,4.778640318330188,7.123615314930293,0.5716644748926907,0.5390114571926423,0.0,0.17374058027504427,5.907179729351506,0.0,0.28203159906304837,0.0,5.261891554738487,0.0,0.18743896768615823,2.171501449018349,1.8769866857219801,0.9468838572659578,1.6308439413838336,0.5147572274525463,5.261891554738487,0.2882299841676752,0.0,1.2930157353513685,37.3842081524302,59.46625264470035,0.0,11.818733146076179,0.2834344907250155,5.687386274683562,5.749511833283905,0.0,1.9469525834495096,0.14101579953152418,11.33111286753076,2.6149653340946846,48.33934966130636,0.0,0.0,0.0,2.261176470588236,5.11364920080731,0.43679311537888615,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,1.3488123423207847,7.590616192967885,0.0,0.7492683582428963,0.27229171967494625,-0.11907073581134829,-0.18795463363784806,-0.4399010061417003,-0.7451475410617407,-0.6397101973703474,0.0,0.4444444444444444,34,0,7,1,2,3,2,0,2,5,0,7,5,1,2,3,5,3.442980000000002,3.7858088235294134,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1632412,Cc1ccc2[nH]c(/C(=N\O)C3CCN(C)CC3)cc2c1,5.0,0.44762448034769464,-0.20685612717309154,0.44762448034769464,0.01294064153439134,0.025049537057456578,13.568199999999987,12.509799999999998,13.558423114600021,106,0,0.3295741295902806,-0.4105720294325462,0.4105720294325462,0.3295741295902806,0.08249999999999999,0.1275,0.16499999999999998,2.590435079466156,70.27520505412217,1.6132533261729491,1.5374944538481867,0.4874944538481868,0.9056074378619636,0.7814838429149376,0.2637107486167465,0.18414639397087013,0.18414639397087013,0.11987588413962165,0.11987588413962165,0.07763757631681321,0.07763757631681321,-0.09049999999999998,3.01891405744252,0.15840572475411502,0.26440605020021574,2.4322704835433484,7.4144234817758585,0.7543223411061764,0.2855842501385351,0.07059210391641003,0.0,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.8380791463055415,2.8847272155929224,1.8679130479998722,0.558848110976467,1.7048494061919406,0.830730496742588,0.0,0.4938456500539865,11.049670412113619,0.9798870959977218,19.969546268914137,35.42705431719864,0.0,0.0,0.0,0.0,0.0,0.0,2.038383904690418,0.0,12.745849802658757,2.502382092821922,29.32538755740372,2.843041735560835,10.902924932081056,0.0,2.581,5.120140992856626,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,10.365246547794337,1.4443727151397505,8.517952893048724,0.0,-0.036281663625492525,0.30520450417821443,-0.23576104574571383,-0.2041761444160998,-0.21593287069029993,-0.413712254346183,-0.7547934184031474,0.0,0.4375,20,2,4,0,1,1,1,1,2,3,2,4,5,0,1,1,3,2.9964200000000014,4.079010000000001,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2207654,O=C(NC[C@@H](O)CN1CCC(Oc2ccc(Cl)c(Cl)c2)CC1)c1c[nH]c(=O)c2cc(S(=O)(=O)N3CCC3)ccc12,8.599980364934842,0.3565122230893894,-0.15179056925108367,0.3565122230893894,0.6688148391636917,0.008503367669044954,15.238300000000033,14.482300000000004,15.203157776000022,214,0,0.2553967764065704,-0.49028401760240736,0.49028401760240736,0.2553967764065704,0.0325,0.051875000000000004,0.07062500000000001,1.726186520602166,72.05999158332038,1.3740304736541404,1.2225630340316331,0.530771895855749,0.7742687440598484,0.6233438381195697,0.30817675795345273,0.17544782416019894,0.2374342813554176,0.1122611286696206,0.16343615846446855,0.06802609640813219,0.09684670922496666,-0.06674999999999999,3.2146765286965127,0.24209417846972295,0.3014024318181074,6.2949125281618885,7.09442531208915,0.6258099374818842,0.29573824650584735,0.07059210391641003,0.28636227026600547,11.466446624403513,0.0,0.2397268592035911,8.417796984328938,4.305215991296234,0.0,0.7311074622032081,1.082211238366033,2.0975264338006694,1.0415640934879964,1.5723042621640106,1.247619977303843,1.4311996572326342,0.48729855864160854,0.0,0.9043573558351472,38.981158105895666,68.389929655098,0.0,5.749511833283905,0.39014858005351083,0.0,5.749511833283905,23.20187978046503,2.154707692854798,0.2505822788351896,0.0,1.6621811099088242,52.11742811638413,12.868950784139054,10.772448428929591,0.0,3.3009999999999997,4.7673804575241165,0.4501717838118145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.7301026891187525,7.087337139118615,0.2923546187719846,0.5963135158369102,-0.05580168581209667,-0.09634788919363098,-0.10097338690774978,-0.22764234483380297,-0.6046867055996613,-0.674873803240599,-0.15179056925108367,0.4074074074074074,40,3,10,0,2,2,2,1,3,7,3,13,10,0,2,2,5,2.8634000000000004,3.8209124999999937,0,1,0,0,0,1,1,0,0,0,1,1,0,1,0,2,2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL515472,COc1c(OCCF)cccc1[C@H](O)C1CCN(CCc2ccc(F)cc2)CC1,6.293282217663242,0.4959637598242864,-0.17274221219066846,0.4959637598242864,1.1703278613889188,0.02344767382631301,13.98224137931033,12.97424137931035,13.972812076827614,158,0,0.2109572896967165,-0.4924717392652009,0.4924717392652009,0.2109572896967165,0.04875148632580261,0.07609988109393578,0.09988109393579073,2.615023820650651,66.31606813933672,1.590581856656027,1.4802719797555173,0.4802719797555173,0.8757393572546611,0.749229444237334,0.2523932962903042,0.16371904832932935,0.16371904832932935,0.10404425605719686,0.10404425605719686,0.06295896663001652,0.06295896663001652,-0.07517241379310344,3.0369472727998783,0.18442384693044764,0.3639575494644281,5.67244679116097,7.291036995884614,0.6718084079157858,0.6552724253324297,0.3965180574678555,0.0493517123183667,0.0,0.0,0.0,8.78083009534964,0.0,0.0,0.8334370631259717,2.1274882542299993,1.0303507726284757,1.161356856151237,2.129124267821489,0.0,1.4311996572326342,0.16896240451208544,5.893957685363079,0.8689238872737285,39.714211005424986,59.24105477808295,0.0,11.49902366656781,0.3266802037103482,8.78083009534964,11.49902366656781,0.0,1.7639354684350108,0.21975603108032343,11.711178526408974,2.356345185716171,42.29693095364306,0.0,0.0,0.0,1.4458620689655173,5.049894813697499,0.3500547810868917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.58253409870731,1.3255751956492616,9.557266504612182,0.0,-0.040356133151342025,0.14520797371417893,-0.13351157266298042,-0.3766279443574547,-0.40796914501487375,-0.6562274110068362,-0.80352791138841,-0.13770263660653595,0.4782608695652174,29,1,4,0,1,1,2,0,2,4,1,6,11,0,1,1,3,4.170700000000004,3.7479931034482776,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1767167,O=c1c2ccccc2c(Cc2ccc(Cl)cc2)nn1C[C@H]1CCCN1CCCCCc1ccc(OCCCN2CCCCCC2)cc1,7.899974269892138,0.31533837885435684,-0.11599072427883168,0.31533837885435684,0.9563543486409845,0.0025768457550896283,13.943127659574515,12.849340425531919,13.92276711812769,250,0,0.2741955264344912,-0.4935500919702729,0.4935500919702729,0.2741955264344912,0.01810774105930285,0.033952014486192846,0.05070167496604798,1.5802191048738912,83.95141888498577,1.6530482926326489,1.5741130943816337,0.5050903059990476,0.9105947526933563,0.8088045925946854,0.2742931984033924,0.17240512494152715,0.18044692223959582,0.10913734826534409,0.1131582469143784,0.06814786533479622,0.07015831465931341,-0.06787234042553189,1.4667831943468281,0.17148168399071106,0.3676409870191078,9.682836830477344,7.593269222692038,0.20503771669469206,0.12233003900604053,0.0,0.0,5.559266895052007,0.0,0.2062648279770702,4.681802935145185,5.098681808301038,0.0,1.5535456499545468,2.5172305206299854,1.6441081712374217,0.9801730645801924,1.5882031769889642,0.47602953870557674,0.0,0.41660221713079104,0.0,1.893401084438684,39.04328366449601,104.70629286306715,0.0,5.749511833283905,0.21906659252876715,0.0,5.749511833283905,11.600939890232516,1.3753506454892093,0.40941935078669583,0.0,3.201250348004623,77.30356167603136,5.022633313741326,10.772448428929591,0.0,1.0765957446808512,5.509541978109984,0.30616695909070984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.63087615564941,9.513796788758704,0.12580392111217814,0.25535192955357666,-0.01096351528159251,-0.16587490949233527,-0.04343147556644001,-0.5244778111452162,-1.234500776022294,-0.746673419056062,0.0,0.5,47,0,6,0,2,2,3,1,4,6,0,7,15,0,2,2,6,8.16300000000001,4.124957446808496,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL240393,CS(=O)(=O)c1cccc(C(=O)N2CCN(c3ccc(OCCCN4CCCCC4)cc3)C(=O)C2)c1,5.4999996786570655,0.4006748000971922,-0.16809368479422618,0.4006748000971922,0.7306733663792406,0.014839443818376716,14.275228571428565,13.324828571428583,14.26325977588574,188,0,0.2539259294458514,-0.4935477593530564,0.4935477593530564,0.2539259294458514,0.03183673469387755,0.053877551020408164,0.07510204081632653,1.9191083702779543,72.87119654457645,1.543487467354577,1.422603729408087,0.5030750602917367,0.8479439652298639,0.7234439824135639,0.29439150377340356,0.16790777523088163,0.20833982854089342,0.10333150627053249,0.12451955266473806,0.061667174703012466,0.07371922750891477,-0.08314285714285713,3.1334616775568835,0.19115094459369297,0.32054941585424596,6.609781599001355,7.2369011413595405,0.555331204181471,0.3498963290742815,0.2810643753262143,0.1687765636957573,5.907179729351506,0.0,0.2739735533755327,8.417796984328938,0.0,0.0,0.35472410311407643,2.1259835721789453,1.720806753581104,0.9539030176330738,1.942250475996856,0.7811142534229735,0.0,0.27999484176288447,0.0,0.8682052308810084,56.62397718077889,53.90280115300335,0.0,5.749511833283905,0.2753363624185865,5.687386274683562,5.749511833283905,0.0,2.335886952990324,0.41805115201398063,0.0,2.3167063038486746,53.23483313682413,0.0,0.0,0.0,2.492285714285714,5.2514940451259005,0.5144820386420736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4277684373547814,8.622951641873703,0.0,0.666264847218639,0.0,-0.10347261966003171,-0.1953558407754798,-0.40192346411567026,-0.6154395211260308,-0.8977885014780493,-0.16809368479422618,0.46153846153846156,35,0,8,0,2,2,2,0,2,6,0,9,9,0,2,2,4,2.8339000000000016,3.847237142857142,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +CHEMBL3104093,CN1CCc2c(c3cccc4c3n2CCc2ccccc2-4)C1,5.0,0.40744286508795435,-0.17151957022988776,0.40744286508795435,0.19559051398337113,0.027716234301186752,13.108818181818163,12.192454545454545,13.098302210909116,110,0,0.06300300072529696,-0.34337873244504136,0.34337873244504136,0.06300300072529696,0.047520661157024795,0.08884297520661157,0.1322314049586777,2.2371582228984117,78.57562534741461,1.4653456503197282,1.4042921450454509,0.4952012359545417,0.8513111133253517,0.7428018539318124,0.28825639938635794,0.21379291751703927,0.21379291751703927,0.16011556754260764,0.16011556754260764,0.11910401078834693,0.11910401078834693,-0.09363636363636361,3.178041131133705,0.16840008924397806,0.2030525224994344,1.5878677386915334,7.210296718990298,0.4303186081200833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9225877706201393,1.3654139216683006,2.617520535143633,0.8115239874158291,1.246144141972927,0.4955874969127753,0.0,0.4303186081200833,0.0,1.1699804168768475,13.47268658459819,59.11776193188552,0.0,11.126902983393991,0.0,0.0,0.0,0.0,1.0427134528745465,1.1699804168768475,0.0,2.010727368256676,42.29693095364306,0.0,22.029827915475046,0.0,0.37136363636363634,5.693625242459087,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,0.0,1.246144141972927,7.746217395834457,0.0,-0.018015817666586734,-0.03789725486154058,-0.2582002702526015,0.0,-0.31200716447806864,-0.32660974111866986,-0.6646992686691113,0.0,0.3,22,0,2,0,2,2,2,1,3,2,0,2,1,0,0,0,5,3.852300000000003,4.141636363636366,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2151156,CC1(C)CCCN(CCCOc2ccc(C3CCN(C(=O)c4ccc(CCC(=O)O)c5ccccc45)CC3)cc2)C1,7.899974269892138,0.36565602846680956,-0.12485809725587797,0.36565602846680956,1.044806314349592,0.006811593890115411,13.57919512195127,12.497439024390255,13.569027021658565,218,0,0.3031781489088887,-0.4935500890254628,0.4935500890254628,0.3031781489088887,0.027364663890541346,0.04640095181439619,0.06484235574063058,1.7918257775956092,78.81003978119614,1.6453955840528198,1.561644398850131,0.48847366714281387,0.9072705949530461,0.7992807269054485,0.2649332076258422,0.18245599319664618,0.18245599319664618,0.11495202790694496,0.11495202790694496,0.07355559946962695,0.07355559946962695,-0.08243902439024388,1.7275259465906345,0.16784993114522484,0.31881472374541997,7.476324993300544,7.457274695402008,0.47915830747824917,0.1402319959337538,0.0,0.0,7.33837938658414,5.969305287951849,0.23387986263764984,0.0,0.0,0.0,1.365871102152059,2.3431698727406225,1.9613983017455363,0.5611728760233884,1.9116430104480582,0.5524130108837304,1.4311996572326342,0.239019986870755,5.41499046939678,1.5660540543721972,39.04328366449601,77.11454155172393,0.0,5.749511833283905,0.11553324277561096,0.0,5.749511833283905,0.0,1.6055706423075007,0.27237712403417563,5.41499046939678,3.3722634366442157,60.42418707663295,0.0,12.203648086162225,0.0,1.7092682926829268,5.462909674538896,0.2673129981539967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.5546322431751705,9.310017467931456,0.0,0.608297386619735,0.013923793227741134,-0.25616738650274606,-0.2842052551267514,-0.43096446298051067,-0.7902944522005759,-0.9449973348707874,0.0,0.4857142857142857,41,1,6,0,2,2,3,0,3,5,1,6,12,0,2,2,5,6.767700000000008,3.994934146341454,1,0,0,0,0,0,0,0,1,1,2,1,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL102416,N#Cc1ccc(-c2ccc(OCCCN3CCC(O)CC3)cc2)cc1,6.239999952707271,0.36789322151481174,-0.18153769024167737,0.36789322151481174,0.7056449000797846,0.03284123017426857,13.457399999999984,12.489720000000002,13.447351120320027,130,0,0.21044716786214596,-0.49354969142859634,0.49354969142859634,0.21044716786214596,0.0496,0.07519999999999999,0.0992,2.2696469707093985,66.53006638164673,1.5450749537209914,1.4484369508771056,0.4884369508771057,0.8702391126048861,0.7366019166863831,0.26027198506782845,0.16579984911282888,0.16579984911282888,0.1009266793710522,0.1009266793710522,0.05816739972439203,0.05816739972439203,-0.09399999999999999,2.96833346683039,0.17942308094502227,0.34641096693550083,5.058967742813959,7.305331991885236,0.5898232350303095,0.2299804733313562,0.0,0.057247986289305365,0.0,0.0,0.0,0.0,5.261891554738487,0.0,0.9667869932261272,2.1766141007214124,1.4375872690796192,1.5740008076891192,1.6549247174728934,0.0,6.693091211971121,0.19599638923401913,0.0,1.007951709237525,26.049564295864123,53.90280115300335,0.0,22.94563612947017,0.18947451815200198,0.0,5.749511833283905,0.0,1.7427799960801773,0.0,11.33111286753076,2.24838691950401,48.33934966130636,0.0,11.126902983393991,0.0,2.2596,5.077099309093361,0.21047566218953948,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,5.1088081911072125,1.5078203761179103,8.04210355208793,0.0,-0.03978256979902559,0.5203837243800647,-0.09637919954378692,-0.05794701214890611,-0.29357578935301265,-0.6768905324682294,-0.6979121731550331,0.0,0.38095238095238093,25,1,4,0,1,1,2,0,2,4,1,4,7,0,1,1,3,3.4508800000000024,3.9354320000000014,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1090432,CC(c1ccccn1)c1c(CCN(C)C)sc2ccccc12,7.920818753952375,0.4219677751150966,-0.1864099141690908,0.4219677751150966,0.005454433316536056,0.031224693013208713,14.112090909090892,13.10409090909091,14.097744077454571,114,0,0.0839908574726945,-0.3090397736407238,0.3090397736407238,0.0839908574726945,0.05991735537190082,0.09917355371900825,0.1384297520661157,2.7424789671356877,73.55566302230302,1.5680507877739935,1.4910307037028991,0.5281441846541594,0.8856293692246062,0.7625582854188072,0.2996717663700675,0.17748807063998842,0.22387992182906374,0.1167876071570353,0.1631794583461106,0.07820282483386108,0.12203019756124539,-0.0777272727272727,3.2541032144857005,0.17494940142935245,0.29958897802132023,3.057231472317194,7.585864112224047,0.22272316958411265,0.0,0.0,0.0,0.0,0.0,0.2265444782248731,0.0,0.0,11.336785877934737,1.4100712249067664,2.2455232059566157,2.410242157813444,0.4984576567891709,1.3707585561702198,0.9737695458576652,0.0,0.4492676478089857,0.0,0.8690352138176426,20.448513484880436,64.60435284470458,0.0,0.0,0.0,0.0,0.0,11.336785877934737,1.3787455334853693,0.2896784046058809,0.0,2.683502941756837,48.46982616445783,0.0,10.086144130933896,0.0,0.7331818181818183,5.416258858879888,0.06230720709864637,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.3084513490715735,8.139970866921892,0.00024792878711527526,0.07040295767183147,-0.03891714766714762,-0.11348229674866578,-0.16525002362055938,-0.32037734191565526,-0.22790355410130694,-0.7083277529638669,0.0,0.3157894736842105,22,0,2,0,0,0,1,2,3,3,0,3,8,0,0,0,3,4.552200000000004,4.356227272727275,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL609328,c1ccc(CCCNCC2c3ccccc3Cc3ccccc32)cc1,6.139661993429006,0.3817423709714474,-0.17539580971277413,0.3817423709714474,0.9611498488284189,0.025280965839610644,13.098839999999981,12.09084,13.087947992000027,126,0,0.12222811013213666,-0.3157770236247485,0.3157770236247485,0.12222811013213666,0.0384,0.062400000000000004,0.08960000000000001,2.148715240343533,74.4949899080241,1.5587862045841157,1.4978885438199985,0.4978885438199983,0.8941451884327383,0.7757770876399966,0.27788854381999833,0.18341640786499874,0.18341640786499874,0.12368033988749896,0.12368033988749896,0.08256230589874906,0.08256230589874906,-0.09519999999999997,3.015297987960226,0.16505158130060427,0.30678835854558245,3.670074781788698,7.418463775380684,0.21239253413153503,0.056473683133128026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1420577279849136,2.137315673871562,1.0987664595020576,0.7127944492085143,1.3724018970565393,0.0,0.0,0.21239253413153503,0.0,1.0005092955740487,12.99371936863189,106.36870065810783,0.0,0.0,0.21239253413153503,0.0,0.0,0.0,0.5197487747452756,0.5098339921063504,0.0,2.91929381573051,78.55144319962284,1.4118420783282006,0.0,0.0,0.48119999999999996,5.987398630775175,0.05483034224680881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3175715548097304,8.466132333237022,0.0,0.0,-0.038445993953136755,-0.2597805857377022,-0.15370405486702393,-0.6230463063983045,-0.46449647053314247,-0.34665892174771173,0.0,0.25,25,1,1,1,0,1,3,0,3,1,1,1,6,0,0,0,4,4.9451000000000045,4.206628000000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL256488,Cc1ccc2c(-c3nnc(SCCCN4CCc5ccc6nc(C(C)(F)F)oc6c5CC4)n3C)cccc2n1,5.800000874803202,0.3868462743954896,-0.12967806098814175,0.3868462743954896,0.01686735511223514,0.004558405531252755,14.068282051282086,13.292897435897443,14.056845821025663,202,0,0.3192034752316757,-0.43468492639831324,0.43468492639831324,0.3192034752316757,0.028928336620644313,0.052596975673898747,0.07495069033530571,1.5719742446604923,75.8245160280076,1.3664011813054309,1.2501463358960494,0.5018513764326576,0.7853497683552292,0.649429298126582,0.28574972327857495,0.1883767881124607,0.20820747175692153,0.12479148934027726,0.1414818015196315,0.0821996587569812,0.09367060240312802,-0.0864102564102564,3.7957817521098045,0.2196229829622753,0.26439746305327994,5.147993114692982,6.957463817186199,0.3560041106588508,0.14145386455426312,0.4247143877298174,0.0,5.890723922025908,5.922529168094576,0.1277943210499284,4.9839785209472085,8.78083009534964,10.197363616602075,0.9213220456421615,1.4399547210329906,2.2118178783585187,0.38748745155917436,1.392839428654093,0.8657571984802738,0.0,0.7598033342855981,6.975826900282246,1.1256801176537123,25.19553593809799,65.00848585391142,0.0,11.387855989696924,0.0,8.78083009534964,0.0,11.761884949391115,1.4058427173137518,0.6575437402829636,6.851892117295679,1.9758750924102577,51.87051837251712,0.0,33.390501781036484,0.0,1.8684615384615386,4.900863326719605,0.0,0.22514948962434972,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.1676899390297428,7.404895125601726,-0.01731195021327877,0.150993462333034,0.13053975111391958,-0.33793942917755027,-0.21121758853653314,-0.2133868352383596,-0.3386901596737397,-0.6426687009955432,0.0,0.3793103448275862,39,0,7,0,1,1,2,3,5,8,0,10,10,0,0,0,6,6.174620000000006,3.8267435897435838,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,2,0,4,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL2112371,CNC[C@@H]1C[C@H]2c3ccccc3Cc3ccccc3[C@@H]2O1,8.455931955649724,0.4492062367274952,-0.19618488599143374,0.4492062367274952,0.8288352833417325,0.04329387386209962,13.303952380952358,12.295952380952377,13.293443537714314,108,0,0.1219756231915971,-0.3682996546528112,0.3682996546528112,0.1219756231915971,0.06349206349206349,0.09750566893424036,0.1360544217687075,2.3802717724265183,73.11265801978509,1.5577457276500806,1.4931172326649438,0.4931172326649439,0.8873957148315267,0.7763178800697038,0.2788315183792296,0.19566272194427659,0.19566272194427659,0.13948696533836186,0.13948696533836186,0.09989566926257679,0.09989566926257679,-0.07809523809523808,2.9537590574296266,0.1652923921437422,0.2516145770465453,2.1908663657322864,7.393203541340763,0.4784131574804012,0.06723057515848574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.301873793395541,1.9988325080823328,1.2427810919705342,1.2317915055048654,1.598279816930126,0.0,0.0,0.25284825491849405,0.0,1.4666592162819914,13.47268658459819,70.59315562809434,0.0,0.0,0.25284825491849405,0.0,0.0,0.0,0.9310811719784847,0.5290375169109252,0.0,3.238851319230232,48.33934966130636,1.4118420783282006,0.0,0.0,1.0123809523809524,5.722642814662035,0.13054843392097334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4677313830091525,8.658302076539156,0.0,0.0,-0.039468346825796786,-0.2438057032777837,-0.18418263866393128,-0.4539214444626558,-0.7354985175287049,-0.37047304482790305,0.0,0.3684210526315789,21,1,2,1,1,2,2,0,2,2,1,2,3,0,1,1,4,3.424000000000002,4.028033333333336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL312082,CC(C#Cc1ccc(CN2CCN([C@H](c3ccccc3)c3ccc(Cl)cc3)CC2)o1)N(O)C(N)=O,6.721246399047171,0.3501214116931507,-0.13002907262208982,0.3501214116931507,0.696593103106852,0.00866684518486626,14.085914285714278,13.250714285714293,14.062651956228594,182,0,0.3392020287236811,-0.45139504078949944,0.45139504078949944,0.3392020287236811,0.036734693877551024,0.05795918367346938,0.07755102040816327,2.1280348450997706,66.43617332142365,1.4272223650779523,1.3111875350400186,0.5042140763548315,0.8187807252598418,0.6656875862642586,0.26783870030841433,0.1700941529501253,0.18089313789324607,0.1062060735582717,0.11160556602983208,0.0655529320860298,0.06825267832180998,-0.0937142857142857,3.448879692696173,0.2106473610585456,0.32661506906142784,6.441366097459392,7.1750588173167795,0.2896247975079892,0.3365182824921168,0.24525518787230982,0.04089141877807526,0.0,6.031114512338072,0.42883866522127867,4.794537184071822,5.063217724965349,0.0,1.7090944332208922,1.3733972642913854,1.3168118905393589,0.9450322998633967,1.55188080618525,0.5037729829305883,0.0,0.424658205333323,5.719716975726273,0.7252724782374547,25.98743873726378,94.13663691918046,0.0,11.840868637711289,0.16342048502075066,4.794537184071822,0.0,11.600939890232516,1.6602576207331885,0.185624562409027,11.840868637711289,2.033054424777542,70.88375672134958,9.277517127630361,0.0,0.0,2.4622857142857146,4.91778517341388,0.17615130686405836,0.0,0.0,0.0,0.0,0.0,11.840868637711289,0.0,5.209533821043797,1.5583411012980124,7.157988808124907,0.16995228396662135,0.3044895514171276,0.06255566327949762,-0.11273888556046172,0.007159148134071496,-0.7136369209047944,0.0,-0.748785521472841,0.0,0.2962962962962963,35,3,7,0,1,1,2,1,3,5,2,8,8,0,1,1,4,4.350100000000003,3.8526828571428577,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL2158780,Cc1cc(Cl)ccc1OC1CCN(CC2CCN([C@@H](Cc3ccc(F)cc3)C(=O)O)CC2)CC1,7.100015437450608,0.42940470956034116,-0.15838954504615851,0.42940470956034116,1.0700238602037067,0.016585766516577075,14.383264705882343,13.375264705882362,14.35953526023532,184,0,0.3207640020854561,-0.49006041509926324,0.49006041509926324,0.3207640020854561,0.03892733564013841,0.06055363321799307,0.08044982698961937,2.1429869589632076,69.3086966727249,1.5904255176534556,1.4816206178944105,0.5038538221890709,0.8749628134105037,0.7557161803206086,0.26953136216017815,0.17291695588321132,0.1840335580305415,0.10523665932345122,0.11079496039711631,0.06378451365274937,0.06795323945799818,-0.06323529411764706,3.165115637217177,0.1880758213801103,0.3387940590718194,6.70988080392198,7.466600119124876,0.43369355516934527,0.6960189167538069,0.0,0.0,1.4311996572326342,5.969305287951849,0.28513079161536176,4.39041504767482,0.0,0.0,0.6966405089870326,2.9100938294014127,1.6885711092580733,0.36284785310388173,1.8901663450079775,0.5167719170054225,1.4311996572326342,0.2882299841676752,5.893957685363079,1.494541974095359,32.48429842157972,64.26368809182428,0.0,5.749511833283905,0.1393194986411779,4.39041504767482,5.749511833283905,11.600939890232516,1.9252982899305697,0.3284547672176824,18.563070643704652,2.407459851244964,42.29693095364306,5.022633313741326,1.4311996572326342,0.0,1.5591176470588237,5.146323761792531,0.31046208199755476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.8127434205503616,9.155124781883469,0.17129070474284655,0.3144704896015532,0.07600438220122406,-0.1027933454837673,-0.35467458717433353,-0.48233176761978636,-0.8745406735978652,-0.8649682852069357,0.0,0.5185185185185185,34,1,5,0,2,2,2,0,2,5,1,7,9,0,2,2,4,5.038620000000004,3.8854058823529423,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1767135,CN(C)CCCn1nc(Cc2ccc(Cl)cc2)c2ccccc2c1=O,8.0,0.5506033868455044,-0.17696165760279225,0.5506033868455044,0.5928067698272725,0.027112630616843613,14.234759999999987,13.347720000000004,14.205805600160023,130,0,0.2741395958627216,-0.3093308570548342,0.3093308570548342,0.2741395958627216,0.048,0.0768,0.1056,2.6447291868403595,72.09524519591558,1.4777884435288227,1.3651141419989186,0.5153512998396568,0.8328820032157145,0.6973898867294568,0.27250846564982584,0.17254247967652053,0.18766105859688959,0.10791761040743461,0.11547689986761915,0.06908352789612665,0.07286317262621893,-0.08679999999999997,2.8943691230759296,0.19843809934197096,0.312309588436975,4.271315841156488,7.324460342455583,0.19599638923401913,0.0,0.0,0.0,5.559266895052007,0.0,0.19178148736287287,4.681802935145185,5.098681808301038,0.0,1.6725213371419596,2.020485840035868,1.5891097915157641,0.9915095108406181,1.2062675294297933,0.8949355327664843,0.0,0.587215778971868,0.0,0.7697083794789882,20.448513484880436,74.97316654071697,0.0,0.0,0.22237067580208028,0.0,0.0,11.600939890232516,1.4051563183670857,0.514791383425813,0.0,1.9114797049447885,53.13388684537818,5.022633313741326,10.772448428929591,0.0,1.5252000000000001,5.208960536937024,0.19178148736287287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.670305125039095,7.109720315554354,0.23256226091559917,0.5128731309085447,0.017219045439680815,-0.1798017908114679,0.0,-0.35251858081162546,-0.31912411193637763,-0.6631524914809307,0.0,0.3,25,0,4,0,0,0,2,1,3,4,0,5,8,0,0,0,3,3.5924000000000023,4.137280000000002,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3461530,Cc1cccc(N2CCN(CCCNC(=O)c3cn[nH]c3C)CC2)c1,7.356547323513813,0.5290769555596102,-0.189079962941967,0.5290769555596102,0.23662372706818546,0.03154787264422429,13.658359999999984,12.569720000000004,13.64886241936003,134,0,0.2542383721734693,-0.36895836825753264,0.36895836825753264,0.2542383721734693,0.0608,0.096,0.128,2.330099161734288,69.83692411323861,1.6516004219936524,1.565772650718546,0.4857726507185462,0.9097879924481296,0.7913847725492655,0.25560768490926894,0.16570454976633178,0.16570454976633178,0.1010459921779837,0.1010459921779837,0.05847401525493303,0.05847401525493303,-0.09359999999999999,3.2404077322914446,0.15934116853562766,0.32640052956957655,4.600274818784317,7.472428707177179,0.40838892336555416,0.0,0.11294736626625605,0.0,5.907179729351506,0.0,0.5914461389002151,0.0,5.098681808301038,0.0,0.4833934966130636,1.7688743090904109,2.6319099835934123,0.9629269483217493,1.6754874097993495,0.4637826401614027,0.0,0.8160044580009189,0.0,0.8030683654368295,43.88106783674614,47.163401019710385,0.0,0.0,0.40838892336555416,5.687386274683562,0.0,0.0,2.3991454372792704,0.0,13.703784234591359,2.490290278715969,30.34257004146794,2.8236841566564013,0.0,0.0,2.5704,5.31701868322205,0.19178148736287287,0.0,5.091706557583081,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.4837059224364761,8.835907710753336,0.0,0.4614087679604293,0.07195964377082359,-0.22959483657974059,-0.08830188208492544,-0.22451044955971142,-0.24021792000087466,-1.3499843675926704,0.0,0.47368421052631576,25,2,6,0,1,1,1,1,2,4,2,6,8,0,1,1,3,1.9686399999999997,4.004276000000002,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,3,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL257524,CCc1nc2cc3c(c(C)c2o1)CCN(C(C)CCSc1nnc(-c2cccc4nc(C)ccc24)n1C)CC3,5.599999383023619,0.24301540316797945,-0.1308515639019337,0.24301540316797945,0.07697377569887331,0.005734315924462148,13.865051282051317,12.934589743589752,13.853003353128233,202,0,0.19470616781160996,-0.44042671577617193,0.44042671577617193,0.19470616781160996,0.030243261012491782,0.055226824457593686,0.07758053911900066,1.6606351237342767,80.94219463570195,1.494606309510559,1.4102507218955764,0.5081096085860308,0.8484606623399775,0.7294814911263455,0.28887883935526154,0.1893360279698244,0.20916671161428527,0.12992318929979246,0.14661350147914676,0.08548219719106576,0.09826162894767367,-0.0828205128205128,3.837277947539458,0.18813978061751252,0.2753111067136402,4.959277138103622,7.286403212672042,0.23036539961140262,0.14145386455426312,0.5757585908586867,0.0,0.0,0.0,0.25343303209737655,4.9839785209472085,0.0,10.197363616602075,0.9420777740942737,1.9100528629219498,2.45722258743231,0.35233979627275847,1.3785758707482387,0.8657571984802738,0.0,0.7598033342855981,6.975826900282246,1.6429127442223224,18.698676253782047,64.52951863794513,0.0,11.387855989696924,0.0,0.0,0.0,11.761884949391115,1.3935615066479492,0.6690923488274457,13.703784234591359,2.5051031679490756,45.82809966485382,0.0,33.390501781036484,0.0,1.8684615384615386,5.239228596870721,0.38662420815057486,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.16532065849649,0.991951662597663,8.05864984229636,-0.020180842156061553,0.1562873721471809,0.12679471800098618,-0.39464039422304875,-0.06845555735959535,-0.3136006326000849,-0.4517031016250937,-0.7448608061900464,0.0,0.41935483870967744,39,0,7,0,1,1,2,3,5,8,0,8,12,0,0,0,6,6.322240000000007,4.061153846153837,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL550818,CN(CC1CCOCC1)C1CCN(c2nc3ccccc3n2Cc2ccc(F)cc2)CC1,8.4089353929735,0.4609696858372586,-0.16387546469693395,0.4609696858372586,0.26784616222522084,0.017740059240660497,13.642968749999985,12.603468750000005,13.63324499675003,170,0,0.20636633515367026,-0.3814289683316687,0.3814289683316687,0.20636633515367026,0.037109375,0.060546875,0.083984375,1.9964334803110744,75.3188244172239,1.5984943084189722,1.5179708482960288,0.48672084829602885,0.8903275539682688,0.7830282906943202,0.2674032906943202,0.18066363849538444,0.18066363849538444,0.11798957020653372,0.11798957020653372,0.07609486330617951,0.07609486330617951,-0.07624999999999997,3.5175460692617238,0.17007646910537633,0.2996973890180595,4.664534517519413,7.36575941888523,0.5969931894778863,0.18178815128268422,0.0,0.18588560253082795,0.0,0.0,0.0,9.374393568622029,0.0,0.0,0.7553023384579118,2.1279565785410317,2.020964205448884,1.1475275283103612,1.6988221985966305,0.5306793973818442,0.0,0.45159337186215753,5.893957685363079,1.1877016174369721,44.48428616991314,59.72002199404925,0.0,0.0,0.15312217908907744,10.338754328661313,0.0,0.0,1.8766642752187919,0.3510538324411248,11.711178526408974,2.3840682328322442,48.33934966130636,0.0,11.033401435232523,0.0,1.0478125,5.312074001699315,0.1800366751201575,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.3707585561702207,9.471843448661033,0.0,0.04481077744720181,0.0,-0.12524197938470244,-0.27451346966355183,-0.5147898118708072,-0.6071425400375546,-1.0131955918182878,0.0,0.5,32,0,5,0,2,2,2,1,3,5,0,6,7,0,2,2,5,4.550900000000004,3.9575937500000022,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL312958,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)[C@@H](NC(=O)OC(C)(C)C)C(C)C)CC2)cc1,4.6700000181810175,0.4040568249974756,-0.155627130476315,0.4040568249974756,1.5602606836684068,0.007984270048350402,13.992189189189183,12.711756756756765,13.98247490821625,208,0,0.40781803630510094,-0.49354966269764505,0.49354966269764505,0.40781803630510094,0.03140978816654492,0.05113221329437546,0.06866325785244703,3.123872510476966,70.74116807479837,1.8470923457472597,1.7535914118599782,0.4833211415897079,0.971670448442967,0.8760793782195488,0.24237090266549605,0.15626833497260492,0.15626833497260492,0.08473410830534947,0.08473410830534947,0.04804349709899841,0.04804349709899841,-0.07054054054054054,3.2359845374665306,0.15265614258515586,0.4043201137795508,11.121437686208786,7.802489108658799,0.5319851078848365,0.4694177057464119,0.19446181147819297,0.15965350619868934,0.0,6.093240070938415,0.3915941648376789,4.794537184071822,0.0,0.0,0.9000412474201567,1.7125718559611365,2.4972222778530746,0.5847926854267218,2.3871371114046993,0.48063958774742865,0.0,0.40836845445917114,5.893957685363079,2.2863492024257916,39.04328366449601,29.733126322350174,0.0,5.749511833283905,0.27153179208347095,4.794537184071822,5.749511833283905,0.0,2.114748950059059,0.2576054091316722,5.893957685363079,3.9564556613518844,24.16967483065318,1.4118420783282006,0.0,0.0,2.3832432432432435,5.348867501537614,0.3887462581679856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,1.7423442070853619,10.601057240521381,0.0,1.0576298234654111,-0.0522103442534712,-0.18667410665090617,-0.3706581645025641,-0.3671876558955862,-0.722179893364667,-1.6084255479682426,0.0,0.6896551724137931,37,1,8,0,1,1,1,0,1,6,1,8,16,0,1,1,2,4.912000000000004,3.9470864864864823,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,2,1,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1278115,O=C(O)CCNC1CC[C@@]2(Cc3ccccc3Cc3ccccc32)C1,7.599980364934843,0.4854141797053705,-0.1880289588057445,0.4854141797053705,1.1887589233224158,0.03583240966407308,13.417879999999984,12.409880000000003,13.40754116160003,130,0,0.3041336415794309,-0.4811951595653779,0.4811951595653779,0.3041336415794309,0.054400000000000004,0.0848,0.1184,2.463986338264408,73.55782588000297,1.5716004219936526,1.4905484070571076,0.4905484070571074,0.8863833482284145,0.7684369508771057,0.2742184754385529,0.1943868429626089,0.1943868429626089,0.13249889076963736,0.13249889076963736,0.0931380477570996,0.0931380477570996,-0.08519999999999998,3.0321434278688293,0.16908311755250274,0.2656825691605872,3.209312600583187,7.356034543715091,0.41674486177582354,0.056473683133128026,0.0,0.0,1.4311996572326342,5.969305287951849,0.19178148736287287,0.0,0.0,0.0,1.9335739864522543,2.164737218937395,1.5396448385846273,0.6935597340276455,1.7137053698168925,0.23877221151807398,1.4311996572326342,0.21239253413153503,0.0,1.9868172938289077,6.496859684315945,70.59315562809434,0.0,0.0,0.21239253413153503,0.0,0.0,0.0,0.943714625268986,0.9182150982450945,0.0,3.1709180945608217,48.33934966130636,1.4118420783282006,1.4311996572326342,0.0,1.9731999999999998,5.5215826519749305,0.4111028563501081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.1554981721118005,8.627669925138854,0.0,0.4854141797053705,0.09101154778983753,-0.4317281410138283,-0.09601592402581346,-0.6350250269890505,-1.0458255926829976,-0.17883430125570293,0.0,0.4090909090909091,25,2,3,2,0,2,2,0,2,3,2,3,4,1,0,1,4,3.688100000000002,3.9586600000000027,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL186125,NC(=O)N(O)CCC#Cc1ccc(OCCCCN2CCN([C@H](c3ccccc3)c3ccc(Cl)cc3)CC2)cc1,7.522878745280337,0.3004886728771629,-0.12635159419104697,0.3004886728771629,0.75842210069447,0.0035407185019934026,14.028150000000045,13.09575000000001,14.006385468100026,210,0,0.33803932509116646,-0.4935994359007106,0.4935994359007106,0.33803932509116646,0.028125,0.04625,0.06375,1.990731370164429,69.7400056450653,1.5151870829026897,1.409789093160016,0.5036873168104776,0.8554663972002079,0.7137266379812264,0.2656088627698625,0.16223574704408578,0.17168485886931645,0.09891231864691258,0.1036368745595279,0.059425862344638314,0.06178814030094597,-0.08849999999999994,3.280076665908576,0.19604941383803262,0.3825187374393707,9.003578271760103,7.3445216229012615,0.38391224150942,0.14373779583209761,0.07059210391641003,0.03577999143081585,0.0,6.031114512338072,0.2527360887973569,9.85775490903717,0.0,0.0,1.6434684870396716,1.6656031179087116,1.6219646335688762,1.0936847851661464,1.640040217064806,0.44080136006426474,0.0,0.3715759296666576,5.719716975726273,0.6284166793084445,45.54014334881195,100.26443098845516,0.0,17.590380470995193,0.26141449823815804,4.794537184071822,5.749511833283905,11.600939890232516,1.7910957217215036,0.0,11.840868637711289,2.210820313930406,78.55144319962284,9.277517127630363,0.0,0.0,2.05675,5.082615550440488,0.15413239350605107,0.0,0.0,0.0,0.0,5.920434318855644,5.920434318855644,0.0,5.209533821043797,1.645692975288473,7.988785111846182,0.14871799358776758,0.24617623353724022,0.0483522052845821,-0.13439406265704365,0.0393946171350094,-0.634480674654728,-0.3403396411781615,-0.8240173384564061,0.0,0.34375,40,3,7,0,1,1,3,0,3,5,2,8,12,0,1,1,4,5.417700000000005,3.9622974999999903,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL2171020,O=C(c1c[nH]c(=O)c2ccccc12)N1CCC(N2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)CC1,7.599980364934843,0.4261979733867527,-0.14742713950568498,0.4261979733867527,0.44879735994978454,0.016144187338557433,14.718411764705877,13.917941176470597,14.680674914235315,178,0,0.2554704057828397,-0.49028401431764895,0.49028401431764895,0.2554704057828397,0.03114186851211073,0.05190311418685121,0.07352941176470588,1.8365623535087219,71.30311497401028,1.4022577028173364,1.2741857236444094,0.5245344851749068,0.795413652553814,0.6597214421010806,0.28644836417515407,0.18202433968105522,0.2042575439757156,0.1206396229864952,0.14015958647836319,0.07577871874804776,0.08247160327731644,-0.07470588235294115,3.12627181869569,0.22005722875312783,0.293614097088635,4.8063706204126815,7.23375176912002,0.4298169398494053,0.34792734883040866,0.04152476700965296,0.0,11.466446624403513,0.0,0.4261465911468859,0.0,0.0,0.0,1.2155628206898506,1.2829104625972765,2.3028232061151406,0.8219277977856361,1.3700871963713477,1.1729855276101804,0.0,0.43461243329206495,0.0,1.1055767676652104,25.98743873726378,74.4323483627613,0.0,5.749511833283905,0.30282734849564874,0.0,5.749511833283905,23.20187978046503,1.7285103439366212,0.0,0.0,2.1026297276915322,53.26436334852965,11.457108705810853,10.772448428929591,0.0,1.9305882352941177,5.012377139413696,0.3223480271857019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.871163197554378,7.003585479717697,0.34490535561249,0.7315422123574444,-0.1209313597789692,-0.09653242433428323,-0.11381785685175363,-0.3948969041858454,-0.7402742308421488,-0.5580247161390757,0.0,0.38461538461538464,34,1,6,0,2,2,2,1,3,4,1,8,4,0,2,2,5,4.982900000000005,3.9758588235294106,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,2,1,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2031884,CCNC(=O)c1ccc(-c2ccc3c(c2)CCN(CCN2CCC[C@H]2C)C3=O)cc1,5.140861702705468,0.47652440750572417,-0.15871870601615845,0.47652440750572417,0.7887323429364432,0.026639285035595543,13.518066666666652,12.476466666666672,13.508054241066695,158,0,0.2536872200778153,-0.35231762019515095,0.35231762019515095,0.2536872200778153,0.043333333333333335,0.07111111111111111,0.09777777777777777,2.0634394404710643,73.25590563394866,1.6104984858741214,1.5219379122475867,0.48860457891425335,0.8903631766908874,0.7798105422654551,0.2649034224154565,0.1808517571022272,0.1808517571022272,0.12047646238901995,0.12047646238901995,0.07427728006735076,0.07427728006735076,-0.08866666666666666,3.1544205095625766,0.16804332009530862,0.30014417759874645,4.263366559170309,7.407526612240042,0.3403241028046285,0.0,0.04706140261094002,0.0,11.814359458703011,0.0,0.4829661366331373,0.0,0.0,0.0,0.8056558276884392,2.4712343073658767,2.3972721289527352,0.411227566851066,1.7374557710526162,0.39381198195676703,0.0,0.503654427166311,0.0,1.2946817135643047,32.48429842157972,58.98728542873405,0.0,11.126902983393991,0.17699377844294586,0.0,0.0,0.0,2.003878993677778,0.21243083004431265,0.0,3.1283939855197094,42.29693095364306,1.4118420783282006,11.126902983393991,0.0,1.7550000000000001,5.612097683810977,0.31963581227145477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4178199587811606,8.545468359004984,0.0,0.8465236495792863,-0.02629107809788144,-0.23662782104028365,-0.14518479932673192,-0.4950731834006229,-0.41982261981683483,-0.9995480624574734,0.0,0.44,30,1,5,0,2,2,2,0,2,3,1,5,8,0,1,1,4,3.585900000000003,3.992056666666669,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL22108,CC(C1=C(CCN(C)C)Cc2ccccc21)c1ccccn1,9.160019442321657,0.42302838117570263,-0.19838908083575751,0.42302838117570263,0.9032073990957472,0.03740210496580538,13.292090909090886,12.192454545454542,13.281543125818212,114,0,0.08399085744789728,-0.3090813151163052,0.3090813151163052,0.08399085744789728,0.06198347107438016,0.1012396694214876,0.14049586776859505,2.809238007360981,73.38905110300101,1.649545934083696,1.5861103268636327,0.4952012359545417,0.9202136277819654,0.8121833631249952,0.26672881767044976,0.18270123595454166,0.18270123595454166,0.1220007724715885,0.1220007724715885,0.08312781345738467,0.08312781345738467,-0.08772727272727271,3.1116455363607374,0.15631104022364195,0.29319854503438475,2.97495342380739,7.580741628390651,0.22272316958411265,0.0,0.0,0.0,0.0,0.0,0.2265444782248731,0.0,0.0,0.0,1.93804955389461,2.5219249332733225,2.0995353397302634,0.4984576567891709,1.4953729703675125,0.2533229331849667,0.0,0.4492676478089857,0.0,1.1587136184235236,20.448513484880436,70.86376167276954,0.0,0.0,0.0,0.0,0.0,0.0,1.378745533485369,0.2896784046058809,0.0,3.1289914104689056,54.04293069452709,0.0,5.573104530069267,0.0,0.7331818181818183,5.785317682903967,0.06230720709864637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.4330657632688661,8.994337025913547,0.0,0.11759153133361938,0.0,-0.331050970542538,-0.17722919028722608,-0.37762383903442415,-0.42047301465067827,-0.7411576033383601,0.0,0.35,22,0,2,1,0,1,1,1,2,2,0,2,8,0,0,0,3,4.146700000000004,4.222227272727275,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL104994,CC(=O)c1ccc(OCCCN2CC[C@H](NC(=O)[C@@H](N)CO)C2)cc1,4.366531544420414,0.5300636612917398,-0.1886308589615319,0.5300636612917398,1.1214582398488426,0.017340624794461947,13.977239999999984,12.888600000000004,13.968006253760029,138,0,0.2390560707983295,-0.49354966274608536,0.49354966274608536,0.2390560707983295,0.07200000000000001,0.1056,0.1344,2.8550655337485398,63.3535079126241,1.6706026609383593,1.558985357934213,0.4789853579342131,0.908240275374958,0.7744860235849309,0.24449046050638132,0.15497697841380517,0.15497697841380517,0.08869459178324188,0.08869459178324188,0.04794091341671978,0.04794091341671978,-0.0784,3.0671611277806377,0.1718479338842975,0.3801701705577141,6.116824329031037,7.435213229228587,1.0310044481908955,0.5836435383315981,0.2878034809877256,0.2935351754633656,0.0,0.0,0.38356297472574574,0.0,0.0,0.0,0.0,1.7506966700243047,1.955671369728295,1.073022241901391,2.207908741598024,0.4676169870286578,1.4311996572326342,0.40838892336555416,5.719716975726273,1.265341074266149,32.608549538780416,29.733126322350174,0.0,5.749511833283905,0.6306557313125879,0.0,5.749511833283905,0.0,2.710987069215459,0.19178148736287287,0.0,2.4593270955055355,24.16967483065318,4.235526234984602,0.0,0.0,4.1956,5.093783171465992,0.38356297472574574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.677241425517294,8.788879734396271,0.0,0.9771054761172988,0.08968725076697563,-0.09875225011270125,-0.2494467608774948,-0.5933389376651139,-0.36553329402443924,-1.0352678852674655,0.0,0.5555555555555556,25,4,7,0,1,1,1,0,1,6,3,7,12,0,1,1,2,0.16820000000000224,3.7842960000000017,0,1,0,0,0,0,0,0,0,0,2,2,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL101692,CCOC(=O)N1CCN(CCCOc2ccc(-c3cc[nH]c3)cc2)CC1,6.299997602857746,0.4961003553745119,-0.17974642725984277,0.4961003553745119,0.11459992038235,0.02973840443215254,13.748230769230755,12.701461538461542,13.738663143230799,140,0,0.4093313385597905,-0.49354969128384435,0.49354969128384435,0.4093313385597905,0.05029585798816568,0.08136094674556213,0.10798816568047337,2.204730826596483,66.62564892817053,1.6152737435010716,1.5217840637650564,0.4833225253035179,0.8940947996587809,0.7694880270638248,0.2522875041599804,0.15648182842746294,0.15648182842746294,0.09602034015831852,0.09602034015831852,0.05533764969336688,0.05533764969336688,-0.09499999999999997,3.137827022000742,0.1664777359824736,0.35728007471055334,5.01685054280988,7.3939149143556,0.7442553426415318,0.22113507051091943,0.05430161839723849,0.0,0.0,6.093240070938415,0.18845806657117223,4.794537184071822,0.0,0.0,0.46480143905102267,1.6338067740388051,2.3041704985031424,1.2953595703225338,1.9738395242471491,0.2343553873437852,0.0,0.5683393358434695,0.0,0.5086468084086561,45.602268907412295,42.557883959946,0.0,16.876414816677897,0.18218703668461728,4.794537184071822,5.749511833283905,0.0,2.5566281427031123,0.18218703668461728,0.0,1.8794053645788773,42.557883959946,1.4118420783282006,11.126902983393991,0.0,2.223076923076923,5.159786316742332,0.1844052763104547,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.6072472112520764,8.715065062090364,0.0,0.41755177332528653,0.0,-0.061298228368941575,-0.05677841527552051,-0.22948361886318186,-0.34789639209821027,-1.3378012064508258,0.0,0.45,26,1,6,0,1,1,1,1,2,4,1,6,8,0,1,1,3,3.224700000000002,3.8990653846153864,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL60837,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)[C@@H](CO)NC(=O)OC(C)(C)C)CC2)cc1,4.769999911123512,0.40089790964246724,-0.1459165415080645,0.40089790964246724,1.4688254984832212,0.008692062866332725,14.045999999999985,12.842000000000008,14.036532947111143,202,0,0.40789170987719436,-0.49354966269764505,0.49354966269764505,0.40789170987719436,0.034722222222222224,0.05555555555555555,0.07407407407407407,2.9738148077750703,68.04878087789513,1.7791534326065321,1.6747536258134181,0.48030918136897366,0.9447907434491556,0.8340919286060863,0.2408846539959801,0.15302751296117634,0.15302751296117634,0.08319536642193577,0.08319536642193577,0.04670143992422406,0.04670143992422406,-0.07361111111111111,3.218232713720593,0.16203964066192672,0.41109992505780674,10.53711121693035,7.645089855589837,0.6886738106346156,0.48245708646159,0.19986352846369834,0.20384387184955943,0.0,6.093240070938415,0.40247178052761445,4.794537184071822,0.0,0.0,0.5443817199987344,1.5964222495888605,2.300053177427007,0.8593842143345953,2.4049746814508333,0.49399068740707947,1.4311996572326342,0.4197120226385926,0.0,1.9691982293100816,45.602268907412295,29.733126322350174,0.0,5.749511833283905,0.2790743418635674,4.794537184071822,5.749511833283905,0.0,2.537352895651148,0.2647611149408853,0.0,3.4953134015160354,24.16967483065318,1.4118420783282006,0.0,0.0,3.0113888888888893,5.135259468884821,0.3995447653393185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.58253409870731,1.6401150705149972,9.901227322454504,0.0,1.0684905525953086,0.051801602805725516,-0.1861719319111413,-0.21940076040574477,-0.3588037854569757,-0.7301780038543935,-1.4714094406717244,0.0,0.6666666666666666,36,2,9,0,1,1,1,0,1,7,2,9,15,0,1,1,2,3.248300000000002,3.841388888888887,0,1,0,0,0,0,0,0,0,0,3,3,0,0,0,2,1,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL62726,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)c3cccs3)CC2)cc1,7.130005999878257,0.4502656568833819,-0.15834259033508574,0.4502656568833819,0.02021774967425194,0.012773588234635968,14.286599999999986,13.211400000000005,14.273778796133362,162,0,0.26350518253937244,-0.493549662697645,0.493549662697645,0.26350518253937244,0.03888888888888889,0.06555555555555555,0.08888888888888888,2.2067620585256296,69.9805599545265,1.6499039110342621,1.5509140117618458,0.5114638977927698,0.9002167164086792,0.7855461885963823,0.2794294079606397,0.15602035593976754,0.1832369086373584,0.09422288809292091,0.11705391440394392,0.053299570941123316,0.06945902173748517,-0.07266666666666666,3.3364707559026088,0.17454017879524375,0.3954931196733308,6.673662535804007,7.6049177273122295,0.3212257561550176,0.19165039444279683,0.19277483154549796,0.0,5.907179729351506,0.0,0.4829661366331373,0.0,0.0,11.336785877934737,0.854672020920591,1.6104685916880943,2.3488362460613437,0.9751997888943481,1.939673703979693,0.767573685121706,0.0,0.3266606487233652,0.0,1.290550554131419,39.04328366449601,52.05122534104566,0.0,5.749511833283905,0.15789543179333496,0.0,5.749511833283905,11.336785877934737,2.0177842600637805,0.0,0.0,3.420348782497715,41.610626655647366,0.0,0.0,0.0,1.6616666666666666,5.235026053339522,0.31963581227145477,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,0.0,1.6200378917082374,8.841933952162218,0.0006739249891417313,0.8032066246062058,-0.025900308789551393,-0.05874602732285745,-0.20812250561661924,-0.3016459883668363,-0.7438089042142036,-1.0298129896697235,0.0,0.5,30,0,5,0,1,1,1,1,2,5,0,6,12,0,1,1,3,4.738000000000005,4.056300000000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL1767161,O=c1c2ccccc2c(Cc2ccc(Cl)cc2)nn1C1CCCN(CCCCc2ccc(OCCCN3CCCCCC3)cc2)CC1,7.700057099977232,0.3187741148508831,-0.11674170673296766,0.3187741148508831,0.9708033142700205,0.002887694356324724,13.943127659574515,12.849340425531919,13.92276711812769,250,0,0.27440602701710726,-0.49355009197027283,0.49355009197027283,0.27440602701710726,0.017202354006337708,0.03168854685377999,0.04843820733363513,1.596677249543275,83.95141888498577,1.6530482926326489,1.5741130943816337,0.5050903059990476,0.9105947526933565,0.8088045925946854,0.2742931984033924,0.17240512494152715,0.18044692223959582,0.10913734826534409,0.1131582469143784,0.06815767583382566,0.07016812515834284,-0.06787234042553189,1.4626676718798182,0.17148168399071106,0.3676409870191078,9.682836830477344,7.593269222692038,0.3092911152234256,0.12233003900604053,0.0,0.0,5.559266895052007,0.0,0.10201142944833663,4.681802935145185,5.098681808301038,0.0,1.4179515031177519,2.652824667466781,1.683464038729688,0.9408171970879259,1.5882031769889642,0.47602953870557674,0.0,0.41660221713079104,0.0,1.7551700273255786,45.54014334881195,104.70629286306715,0.0,5.749511833283905,0.21906659252876715,0.0,5.749511833283905,11.600939890232516,1.3855414373182795,0.2711882936735906,0.0,3.329290613288658,77.30356167603136,5.022633313741326,10.772448428929591,0.0,1.0765957446808512,5.509541978109984,0.36449711041710214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.572546004323018,9.557122712415898,0.12588764927002632,0.2552674385854974,-0.01326638539061998,-0.1698442275025707,-0.04360145072441921,-0.5298030376015568,-1.2519912709005347,-0.7607406952912026,0.0,0.5,47,0,6,0,2,2,3,1,4,6,0,7,13,0,2,2,6,8.335500000000007,4.127425531914879,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL346230,CN(C)CCCC1c2ccccc2Cc2ccccc21,9.30102999566398,0.4708764408541194,-0.22380663029100548,0.4708764408541194,0.9317519500083988,0.040269059449411955,13.269999999999992,12.110799999999996,13.259152486800014,104,0,0.06259340556876943,-0.3093993666182311,0.3093993666182311,0.06259340556876943,0.06,0.09,0.12,2.7026776579948315,70.54395492022405,1.7002776749732569,1.647360679774998,0.4973606797749979,0.9444764047840349,0.8460410196624968,0.27104101966249683,0.1848606797749979,0.1848606797749979,0.1240102549156242,0.1240102549156242,0.0854426274578121,0.0854426274578121,-0.07999999999999999,2.8111091578481315,0.1478791225126887,0.29011505653640146,2.637684461805555,7.705570807343551,0.2449954865425239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.416967483065318,3.0910547077828276,1.3227668013958187,0.548303422468088,1.5763723395957527,0.0,0.0,0.2449954865425239,0.0,1.2506366194675609,20.448513484880436,70.59315562809434,0.0,0.0,0.0,0.0,0.0,0.0,1.267421160786546,0.318646245066469,0.0,3.621053012336245,48.33934966130636,0.0,0.0,0.0,0.162,6.047715561658825,0.068537927808511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5078344117872418,9.49398277762985,0.0,-0.04658759750041994,0.0,-0.2574269731040564,-0.19434344293272873,-0.4848220055833015,-0.6077397782029482,-0.6155629803063969,0.0,0.3684210526315789,20,0,1,1,0,1,2,0,2,1,0,1,6,0,0,0,3,4.064500000000003,4.266050000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL403804,CCc1nc2ccc3c(c2s1)CCN(CCCSc1nnc(-c2ocnc2C)n1C)CC3,5.599999383023619,0.2825747190807689,-0.1438145103957737,0.2825747190807689,0.0002965248158290912,0.009103226600522488,14.64537499999999,13.763375000000007,14.630518797375027,168,0,0.20172690393297518,-0.4398506952554453,0.4398506952554453,0.20172690393297518,0.0419921875,0.072265625,0.1005859375,1.7406336541864675,73.4685969554423,1.4541453511550189,1.3565008263872294,0.5325318626952122,0.8271584313548902,0.6986883263872293,0.31221936269521217,0.17800525640511283,0.23339486355813635,0.11938124778038185,0.17060680909473058,0.07636891514244534,0.11628085234528605,-0.06968750000000001,3.766056182350552,0.20181496987779873,0.2914983708544318,4.207988782683421,7.348711743835928,0.43388000986547437,0.04283620488031938,0.5401992199589799,0.18201264056249772,0.0,0.0,0.0,9.967957041894417,0.0,21.534149494536813,0.7705061179484403,1.7503054093120756,1.8732333455724957,0.7393652949414696,1.3374497034318602,1.0411028581691004,0.0,0.9260103136605726,6.975826900282246,1.3859975100540494,25.19553593809799,40.28298322841401,0.0,11.58465191687437,0.0,0.0,0.0,23.098670827325854,1.713370811726135,0.8154563001334495,6.851892117295679,2.2948284770777025,28.02811597219285,0.0,21.80127255095973,0.0,2.2771875,4.852166675616411,0.0,0.0,15.903885525726093,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.3374497034318602,7.495739117496454,-0.017651069257212555,0.19473370292493208,0.1519307783743681,-0.2688993953733024,-0.06109782709889537,-0.07825355958482492,-0.5287928086529406,-0.7340631054952478,0.0,0.4782608695652174,32,0,7,0,1,1,1,3,4,9,0,9,10,0,0,0,5,4.5336200000000035,4.044500000000001,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +CHEMBL411293,Cc1ccc2c(-c3nnc(SCCCN4CCc5nc6cc(C(F)(F)F)ccn6c5CC4)n3C)cccc2n1,6.0999990348465305,0.3575169688844378,-0.1419711765979531,0.3575169688844378,0.006062925349107573,0.005195675920378481,14.1446666666667,13.420974358974364,14.133535886051304,202,0,0.41609822927159335,-0.3051661288400337,0.41609822927159335,0.3051661288400337,0.028928336620644313,0.05193951347797501,0.07363576594345825,1.558904614595399,74.41050160123139,1.3246125527926893,1.1967342789228526,0.49972137074151207,0.7642605466867308,0.6225460760571124,0.28450752685013103,0.18661920948036756,0.20644989312482837,0.124752483033118,0.14144279521247233,0.08186527743661928,0.09333622108276612,-0.0882051282051282,3.7557526506276058,0.23168770895439458,0.2633636355930396,5.1240407823144185,6.845484814304003,0.35558215345906735,0.14479941591712123,0.281560025123606,0.0,0.0,6.176298517443475,0.1277943210499284,4.9839785209472085,13.171245143024459,10.197363616602075,0.7663882326251539,1.1254192700921586,2.4191269483795086,0.7112858629108584,1.3218585824561708,0.7259483872369205,0.0,0.87264165752308,6.975826900282246,0.9564974825781538,25.19553593809799,71.11506164070019,0.0,11.387855989696924,0.0,13.171245143024459,0.0,11.761884949391115,1.5186810405512337,0.6640506466765251,6.851892117295679,1.7281897423163584,53.626262646278526,0.0,27.93795814254571,0.0,1.644615384615385,4.748450746728611,0.3377242344365246,0.0,8.967794254053148,0.0,0.0,0.0,0.0,0.0,20.16532065849649,0.9841343480196454,7.182988046307865,-0.016825759910887923,0.15888208218782468,0.1311518082333276,-0.35170524977923834,-0.027939377411432008,-0.22654405844142358,-0.5182615483348787,-0.5283271394323534,0.0,0.35714285714285715,39,0,7,0,1,1,1,4,5,8,0,11,8,0,0,0,6,5.588220000000006,3.7399999999999944,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,1,0,4,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL256653,Cc1nc2cc3c(cc2o1)CCN(CCCSc1nnc(-c2cccnc2)n1C)CC3,5.40000018605658,0.28586572874609495,-0.14696008195580534,0.28586572874609495,0.09982612927527401,0.010853004584320414,14.018354838709667,13.172935483870972,14.006092917806479,160,0,0.19184289128045412,-0.44100321262426384,0.44100321262426384,0.19184289128045412,0.04162330905306972,0.07075962539021852,0.09885535900104057,1.7207912747799299,71.65012928796992,1.4187175804565582,1.3225734888363703,0.5102024108017807,0.8176112546904137,0.6838638114170154,0.2908475720921032,0.17899015787736086,0.20393843730103736,0.11708168107906354,0.1380791705950254,0.07501601258736701,0.08944719975510011,-0.08741935483870966,3.6527416791042904,0.2000277336403107,0.2839544325767313,4.357435858497056,7.160599590426108,0.4478761392159735,0.1779580876650407,0.7243414530157672,0.0,0.0,0.0,0.1607735006757164,4.9839785209472085,0.0,10.197363616602075,0.3794156435287456,1.9649100710435887,2.5113163970351895,0.26530810764584906,1.2921572063702929,0.7374711551177298,0.0,0.9558816141012363,6.975826900282246,1.0041001065517587,25.19553593809799,53.53309215770259,0.0,11.387855989696924,0.0,0.0,0.0,11.761884949391115,1.7686408379108491,0.6361831194497098,6.851892117295679,1.9042023957153245,46.08905267115675,0.0,22.487576848955428,0.0,2.3506451612903225,5.031642897689819,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.2921572063702929,7.2398508291786765,-0.017079994113413204,0.1970216296426622,0.19179842332652888,-0.3065210737739081,-0.0650005115529508,-0.14239165136467383,-0.45980658019963067,-0.6405592431863033,0.0,0.391304347826087,31,0,7,0,1,1,1,3,4,8,0,8,8,0,0,0,5,3.9097200000000027,3.9409354838709687,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL270177,CC1NC(N)=Nc2cccc(Cl)c21,5.958607314841776,0.6367450142450142,-0.2441419559276703,0.6367450142450142,0.024516250944822238,0.05115642800805759,15.050230769230776,14.274846153846152,15.004332692307692,68,0,0.19381577806854763,-0.36964893439758645,0.36964893439758645,0.19381577806854763,0.15384615384615385,0.22485207100591714,0.28402366863905326,3.0053068554911144,54.0032893781224,1.3771737849148602,1.2476619430391618,0.5365795542713504,0.7963050308547233,0.6268197701349526,0.28346005371259503,0.17575404844265774,0.20482823867413677,0.11306553633199332,0.13487117900560258,0.07347188835485616,0.09087589626649553,-0.09384615384615383,2.4333410202846872,0.20292334860721567,0.22488575271455574,1.3533346101056534,7.371739600070248,0.8484254099242037,0.0,0.7842369849021875,0.0,0.0,0.0,0.0,4.992404732635669,0.0,0.0,1.3571814306073702,1.4566715025094052,1.130643113380691,1.3221779205933912,1.0639104713981646,1.7882985179738393,0.0,0.40844718102218275,10.712121708361941,0.9899834296650248,0.0,28.713340928428206,0.0,0.0,0.8484254099242037,5.687386274683562,0.0,11.600939890232516,0.45842727451875653,0.0,0.0,2.1560419977333733,23.119660855625554,9.258159548725928,0.0,0.0,3.8776923076923073,4.094620489038532,0.0,0.0,11.029530329014648,0.0,0.0,0.0,0.0,0.0,4.992404732635669,1.9562904629545117,5.87545625230149,0.45569247000794605,0.28137642450142447,-0.04236725245653815,-0.09777880739190259,-0.06479186047638426,-0.3728469799600751,0.0,-0.2441419559276703,0.0,0.2222222222222222,13,3,3,0,1,1,1,0,1,3,2,4,1,0,0,0,2,1.9504000000000001,4.175776923076925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1277584,O=C(O)[C@@H]1CCCN(C2CC[C@]3(Cc4ccccc4Cc4ccccc43)C2)C1,7.700057099977232,0.46630856869547366,-0.18160447710830377,0.46630856869547366,1.2152172566557486,0.030165404061097332,13.411142857142844,12.367142857142863,13.400708184571458,146,0,0.30729558289958125,-0.48099092486474093,0.48099092486474093,0.30729558289958125,0.042091836734693876,0.07015306122448979,0.10076530612244898,2.212586800054019,76.68551505255027,1.599643233922904,1.5272753634438458,0.49156107772956015,0.8971753061112696,0.7941898919349165,0.27960959584692147,0.20339575966750686,0.20339575966750686,0.14261950849712013,0.14261950849712013,0.09919258667358721,0.09919258667358721,-0.07607142857142855,3.097785236354348,0.16489287729661953,0.2513682680804001,3.0604896554177192,7.420059129913076,0.18245743539668616,0.0,0.0,0.0,1.4311996572326342,5.969305287951849,0.34623024696151067,0.0,0.0,0.0,1.7264053450466557,2.620040712871771,1.6194612051952428,0.6021437905258871,1.7244494624266153,0.2131894745697089,1.4311996572326342,0.17499677610180278,5.893957685363079,2.0015484731090027,12.99371936863189,70.59315562809434,0.0,0.0,0.0,0.0,0.0,0.0,1.2496298231032525,0.8198349091474058,5.893957685363079,3.3035596445071778,48.33934966130636,0.0,1.4311996572326342,0.0,1.4478571428571427,5.58547874814085,0.6118344353429929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,0.981271865159529,9.162485358298657,0.0,0.4229079523863398,0.12957255220020603,-0.41239098810916325,-0.26300613254770216,-0.6090000595528934,-1.1519077921651113,-0.3441370809865226,0.0,0.48,28,1,3,2,1,3,2,0,2,3,1,3,2,1,1,2,5,4.420400000000004,3.951564285714288,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2208417,N#Cc1ccc(OC[C@@H](O)CNC2CCN(Cc3ccc(Cl)c(Cl)c3)CC2)cc1,6.299997602857746,0.31638837661610053,-0.16399458365314074,0.31638837661610053,0.7680756199172463,0.022781975374633563,14.978172413793091,14.109206896551727,14.935599393103471,154,0,0.21069040698251354,-0.49084792745917605,0.49084792745917605,0.21069040698251354,0.04875148632580261,0.07491082045184305,0.09869203329369798,2.3431933170510715,63.26823434981718,1.4725594521453242,1.341864355636071,0.5319284208787229,0.8256334628949142,0.6788772269368524,0.27889333245597764,0.16276463090792787,0.18883114628787456,0.0948077083816253,0.11769318282036713,0.05377131374130563,0.06191709979753897,-0.062413793103448245,3.0450926333467527,0.21899989393980113,0.37311551516155544,6.881882930685451,7.469574609700174,0.5226029137308841,0.682770937292358,0.0,0.0493517123183667,0.0,0.0,0.16896240451208544,0.0,5.261891554738487,0.0,1.0084240857975286,2.329570100309221,1.2700507954204967,1.2201905170232457,1.4753434487982944,0.8000648200160355,6.693091211971121,0.35205941669444324,0.0,1.080711033871529,26.049564295864123,63.4691005645197,0.0,11.818733146076179,0.3464371140375319,0.0,5.749511833283905,23.20187978046503,1.709910081736347,0.22402964428675673,11.33111286753076,1.9103517095850986,42.29693095364306,11.457108705810853,0.0,0.0,2.362758620689655,4.71787999172693,0.18144453637029265,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,5.1088081911072125,2.1485941814393463,7.39748523466363,0.4038481706193014,-0.029114054529427592,0.35017908633339245,-0.07939216627339082,-0.049165913151302774,-0.4085289225522594,-0.47755388523540515,-0.7638878180737769,0.0,0.4090909090909091,29,2,5,0,1,1,2,0,2,5,2,7,9,0,1,1,3,3.8589800000000025,3.9800862068965523,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL272302,CCc1nc2cc3c(cc2o1)CCN(CCCSc1nnc(-c2cccnc2)n1C)CC3,5.599999383023619,0.2780645993482934,-0.14384049390914921,0.2780645993482934,0.08333269826316347,0.009699095213557338,14.018624999999991,13.136625000000008,14.006391578625028,166,0,0.19469072857363684,-0.4407084982610511,0.4407084982610511,0.19469072857363684,0.0400390625,0.068359375,0.095703125,1.7246743483735294,72.68991308219121,1.4525076560672907,1.3593680673102337,0.5098835854642251,0.8311234029813384,0.7015555673102336,0.28957108546422505,0.1773029654436933,0.20147161113537995,0.116764526537389,0.13710584450597704,0.07434258619003489,0.08832279875877631,-0.08468749999999999,3.6867567581075753,0.19500962428504243,0.2944092239232102,4.424776823437996,7.223545950560676,0.43388000986547437,0.17239689742550818,0.7017057826090245,0.0,0.0,0.0,0.15574932877960027,4.9839785209472085,0.0,10.197363616602075,0.5816805333339623,1.9035066313234765,2.5035424438895317,0.2570172292819163,1.3374497034318602,0.7144251815203007,0.0,0.9260103136605726,6.975826900282246,1.1718758813885595,25.19553593809799,53.53309215770259,0.0,11.387855989696924,0.0,0.0,0.0,11.761884949391115,1.713370811726135,0.8154563001334495,0.0,2.1444901092753494,46.08905267115675,0.0,22.487576848955428,0.0,2.2771875,5.073557960303556,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.3374497034318602,7.529658818459615,-0.017267793333650215,0.18940421598301255,0.1847406169263286,-0.31151509328371924,-0.07003867532684248,-0.14505887655014937,-0.5601079880606405,-0.6383568914806241,0.0,0.4166666666666667,32,0,7,0,1,1,1,3,4,8,0,8,9,0,0,0,5,4.163700000000003,3.962812500000001,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL392354,O=C(c1ccc(F)cc1F)N1CCN(c2ccc(OC3CCN(C4CCCC4)CC3)cc2)C(=O)C1,5.599999383023619,0.43117155101917665,-0.13533257330725948,0.43117155101917665,0.7271735107214568,0.018245711959275494,13.815971428571421,12.923171428571438,13.806667094057168,186,0,0.2568617782069856,-0.49033877792872865,0.49033877792872865,0.2568617782069856,0.02857142857142857,0.04897959183673469,0.06938775510204082,1.7128635634195142,67.59042922758273,1.48634461021172,1.3663518458259976,0.4806375601117119,0.8276203976468586,0.7059120638196218,0.263054920962479,0.17888688984730947,0.17888688984730947,0.11612305354655018,0.11612305354655018,0.07210081864939746,0.07210081864939746,-0.08571428571428572,3.2052087203869375,0.19572924291124336,0.2948013524936602,5.320612244897959,7.072753780919473,0.555331204181471,0.8560237493326178,0.0,0.1687765636957573,5.907179729351506,0.0,0.2739735533755327,8.78083009534964,0.0,0.0,0.36416713721882166,1.7641774814656366,1.9153723326529728,0.7072591793737164,1.8742937902448635,0.5000498780967593,0.0,0.27999484176288447,0.0,1.4381559972364544,37.3842081524302,59.49482412743185,0.0,5.749511833283905,0.2753363624185865,14.4682163700332,5.749511833283905,0.0,1.8913253667795236,0.13698677668776635,11.63444168209179,2.6025443807149102,42.29693095364306,0.0,0.0,0.0,1.516857142857143,5.1504448346145555,0.39941398330909894,0.12544042993356627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3494393770021973,8.445076931386174,0.0,0.7055946731761239,0.0,-0.10502443828476214,-0.3187202702466174,-0.49453519862934436,-0.8987908527687537,-0.6455056065375793,0.0,0.48148148148148145,35,0,6,1,2,3,2,0,2,4,0,8,5,1,2,3,5,4.239600000000004,3.672442857142859,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1172775,COc1ccc(N2CCC(Cc3c[nH]cn3)CC2)cc1,6.0,0.4396900136266118,-0.2106460853022339,0.4396900136266118,0.048347757893143495,0.04646598427280915,13.568199999999987,12.509799999999998,13.558423114600021,106,0,0.16690685660000237,-0.4967658898692446,0.4967658898692446,0.16690685660000237,0.08,0.12,0.1525,2.4343894140935256,66.85956765119717,1.6132533261729491,1.537494453848187,0.4874944538481869,0.9034554441715009,0.7835354735106838,0.2611747937356858,0.16864135021738863,0.16864135021738863,0.10584765178346714,0.10584765178346714,0.06333162329329513,0.06333162329329513,-0.0985,3.0784298106626564,0.15530734414443487,0.299474332516357,2.9510135857613666,7.44509427051207,0.730688797743989,0.35601351947270626,0.07059210391641003,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,2.45912036100022,1.9966172486001323,1.5000660308529516,1.6781938077766323,0.2843693137341781,0.0,0.4980490895588231,5.893957685363079,0.9559387351994069,24.931581558364954,42.33986975028263,0.0,5.749511833283905,0.4818386342325264,5.687386274683562,5.749511833283905,0.0,1.4996326809345468,0.318646245066469,5.893957685363079,2.292747446045582,36.645941755434166,1.4118420783282006,0.0,0.0,2.0575,5.186054090298313,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.4413506600866297,8.794847927524325,0.0,0.14024243296339947,0.0,-0.13661892029447736,-0.26832072510374594,-0.2642566123575999,-0.7312016006692703,-0.40797654478458056,-0.1642159572780515,0.4375,20,1,4,0,1,1,1,1,2,3,1,4,5,0,1,1,3,2.8774000000000015,4.011135000000001,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL255778,CCc1nc2cc3c(c(Br)c2o1)CCN(CCCSc1nnc(-c2cccc4nc(C)ccc24)n1C)CC3,6.299997602857746,0.23836558450743228,-0.12225110492298352,0.23836558450743228,0.029958383259384158,0.004224448321810674,15.567868421052669,14.745552631578954,15.53016691347371,196,0,0.1947530011512487,-0.43950844009729345,0.43950844009729345,0.1947530011512487,0.03116343490304709,0.05609418282548477,0.0796398891966759,1.5537187466414373,75.83638835101469,1.402359107129258,1.299414279656229,0.5468483091310298,0.806016867522472,0.6747042208008444,0.30916461160308323,0.18648115601191517,0.22770207526695008,0.1272232226941557,0.16426377456538277,0.08444289469350316,0.11111291800373468,-0.07236842105263157,3.80273734477347,0.2143517033581183,0.2838465167619149,4.872044748126689,7.323224636058385,0.36537263988671526,0.14517633467411215,0.5909101327233891,0.0,0.0,0.0,0.13115732949861075,4.9839785209472085,0.0,10.197363616602075,0.9668692944651758,2.0434639344719203,2.1831577805436684,0.4793150413281577,1.2344912152192158,1.3077493325968428,0.0,0.7797981588720612,6.975826900282246,1.167155797940252,25.19553593809799,63.43878666208054,0.0,11.387855989696924,0.0,0.0,0.0,27.691828847340464,1.4428385782956927,0.6867000422176417,6.851892117295679,2.063944398951849,50.30081918068623,0.0,33.390501781036484,0.0,1.9176315789473686,5.0003780600912755,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,36.09526455644584,1.2344912152192158,7.070394228870704,0.059829916170830534,0.17174230313626038,0.13839525496532395,-0.2975087672115418,-0.06052201638172408,-0.17105730521162024,-0.422255337016463,-0.6249831896024718,0.0,0.3793103448275862,38,0,7,0,1,1,2,3,5,8,0,9,10,0,0,0,6,6.387820000000008,4.1250789473684115,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1277678,O=C(O)C1(F)CCN(C2CC[C@]3(Cc4ccccc4Cc4ccccc43)C2)CC1,7.400007822415903,0.5761746388130695,-0.18209130125479778,0.5761746388130695,1.3060603515480247,0.028137774421260295,13.569034482758608,12.595793103448283,13.558979564000028,152,0,0.3410492015049584,-0.47887845379040483,0.47887845379040483,0.3410492015049584,0.039239001189060645,0.06302021403091558,0.089179548156956,2.187729297569231,73.2231011211205,1.544483122408321,1.4531611948081693,0.487643953428859,0.8662382265901913,0.756079283126975,0.27648451449029016,0.20615705604990045,0.20615705604990045,0.1438478390246628,0.1438478390246628,0.09633750446365816,0.09633750446365816,-0.07586206896551721,3.09781860997514,0.17791868330724273,0.23948001489880227,3.179173519200147,7.2593869151836055,0.34512820420543755,0.0,0.0,0.19547447650847166,1.4311996572326342,5.969305287951849,0.0,9.184952231746642,0.0,0.0,1.6668741262519433,1.86615277494603,2.179891885388666,0.3781402913573021,1.7691117737741322,0.20583811337764998,1.4311996572326342,0.16896240451208544,0.0,2.1280040367516464,12.99371936863189,70.59315562809434,0.0,0.0,0.0,4.39041504767482,0.0,0.0,1.4020136160564396,0.7915647398664608,0.0,3.1423762582769226,48.33934966130636,0.0,1.4311996572326342,0.0,1.3979310344827587,5.385110589011255,0.496201623353909,0.15139362233361447,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,0.9947024407116217,9.064406930082228,0.0,0.3890510961095034,0.11687040050069263,-0.5841521208046436,-0.10085659656396757,-0.5942017093942558,-1.1475275699229157,-0.34473985529399603,0.0,0.48,29,1,3,2,1,3,2,0,2,3,1,4,2,1,1,2,5,4.512500000000005,3.8273379310344855,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2158824,O=C(O)c1ccc(N2CCC(CN3CCC(Oc4ccc(Cl)c(Cl)c4)CC3)CC2)cc1,7.199970640755867,0.3907473913346064,-0.1636132716796644,0.3907473913346064,0.6995917400031,0.019920805492825922,14.948548387096764,14.038096774193555,14.907990261806479,166,0,0.3351808374205753,-0.490284017716006,0.490284017716006,0.3351808374205753,0.036420395421436005,0.05931321540062435,0.08116545265348594,2.0820989049363736,64.97566276808487,1.502402180652177,1.3830677744648372,0.5286115774337701,0.839054896265953,0.707882262287119,0.28361389633726714,0.1735218225815867,0.19790662729185937,0.10699697888837352,0.12840597110526103,0.06345060413063298,0.07079118716273416,-0.0629032258064516,3.0928931881507054,0.20446743580389073,0.3262241588604804,5.848399392878459,7.499273726774339,0.6337255034389747,0.3815977374268998,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,0.0,0.7484477348537106,2.1819409527954954,2.266403741005187,0.8572511796303679,1.666151269212099,1.1244700433258208,1.4311996572326342,0.15806160422098317,5.893957685363079,1.0184425042666938,37.3842081524302,57.905649072822705,0.0,5.749511833283905,0.31086363498872666,5.687386274683562,5.749511833283905,23.20187978046503,1.7594303115625562,0.0,5.893957685363079,2.35032804186072,42.29693095364306,10.045266627482652,1.4311996572326342,0.0,1.7100000000000002,5.001988569988817,0.1988805077497433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.097085962965275,7.91965559859507,0.37731242304028334,0.32870574053672114,0.06553219742162655,-0.09456944040478375,-0.2668445575986401,-0.31119885967698635,-0.7513756037044739,-0.7627372114704704,0.0,0.4583333333333333,31,1,5,0,2,2,2,0,2,5,1,7,6,0,2,2,4,5.451400000000006,4.028719354838711,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL255566,Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6nc(C(C)(C)C)oc6c(Br)c5CC4)n3C)cccc2n1,6.0,0.22876212009687547,-0.11849521289997492,0.22876212009687547,0.0030284787648380274,0.0037011088650025156,15.490825000000035,14.608825000000001,15.454441071000025,208,0,0.20042226334472463,-0.43891557250616114,0.43891557250616114,0.20042226334472463,0.028749999999999998,0.05125,0.0725,1.5780200645977969,76.35747213084792,1.457241151772795,1.3594435656734174,0.5445058936744782,0.8282160241463483,0.7034690097608022,0.3062063810229291,0.19278209821131953,0.23194197150360257,0.12620869834672177,0.16139722262438735,0.08289406835246485,0.10823059049718478,-0.06874999999999999,3.8133074233908157,0.20506206732229448,0.27278469393934807,5.309466009678274,7.415807559992087,0.3471040078923795,0.13791751794040655,0.41409652803657193,0.14726809805064772,0.0,0.0,0.12459946302368022,4.9839785209472085,0.0,10.197363616602075,1.261120435606701,1.941290737748325,2.1871273863351917,0.45534928926174983,1.3098425100752773,1.2423618659670006,0.0,0.7408082509284581,6.975826900282246,1.4274442531097082,25.19553593809799,63.438786662080545,0.0,11.387855989696924,0.0,0.0,0.0,27.691828847340464,1.370696649380908,0.6284166793084446,6.851892117295679,2.4404176404860602,50.30081918068623,0.0,33.390501781036484,0.0,1.8217500000000002,5.069005402153182,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,36.09526455644584,1.3098425100752773,7.584279332838911,0.054237035016484046,0.160835265072268,0.1290423137247813,-0.4080887436393038,-0.06880700317851213,-0.1707766469312115,-0.3259072929420923,-0.8214809266279935,0.0,0.41935483870967744,40,0,7,0,1,1,2,3,5,8,0,9,8,0,0,0,6,7.122920000000008,4.151874999999989,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1093294,COc1ncccc1[C@@H](C)c1c(CCN(C)C)sc2ccccc12,8.537602002101043,0.3948940716332829,-0.17483335476680387,0.3948940716332829,0.0774232200596292,0.027398395124214648,14.187166666666654,13.179166666666672,14.173372266166695,126,0,0.21632609552995197,-0.4807735895380581,0.4807735895380581,0.21632609552995197,0.057291666666666664,0.0954861111111111,0.13020833333333334,2.800636476604654,72.35470683925129,1.5710093380089336,1.4879551571636516,0.5219758480356403,0.8820123972837021,0.7576887737365675,0.2917094646085561,0.17555605805642563,0.21808192164641135,0.11778767335088595,0.1603135369408717,0.07917839933900708,0.11935349100577601,-0.07958333333333333,3.273572887584971,0.17702234091516125,0.3051906393752977,3.3016756944553105,7.5490599505486715,0.401532195193772,0.0,0.0,0.24499951401814046,0.0,0.0,0.0,4.9839785209472085,0.0,11.336785877934737,1.2925652894978692,1.8066288259742604,2.2039521236976793,0.864397417524366,1.5681278459118893,0.8926220837028597,0.0,0.4118286771582369,0.0,0.7966156126661724,27.486465943763026,58.43145763388982,0.0,5.879988336435371,0.1973692897416687,0.0,5.879988336435371,11.336785877934737,1.557098091481696,0.2655385375553908,0.0,2.5686710553266416,42.42740745679453,0.0,10.086144130933896,0.0,1.0566666666666666,5.245947519994197,0.057114939840425843,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.5110129060714632,8.33628785485191,-0.0032259675024845502,0.05233010877000066,-0.04043859441924914,-0.11766676442953726,-0.2206895595815487,-0.27970943204542215,-0.21581789595211595,-0.6665262301187121,-0.1466268529061734,0.35,24,0,3,0,0,0,1,2,3,4,0,4,10,0,0,0,3,4.560800000000004,4.266208333333336,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL270227,Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6nc(C(F)(F)C(F)(F)F)oc6cc5CC4)n3C)cccc2n1,5.599999383023619,0.34144421577098116,-0.1534385344157546,0.34144421577098116,0.0402459852527266,0.0027717260334672875,14.348404761904785,13.70040476190476,14.33782670438097,220,0,0.46277901128010224,-0.43471294975176406,0.46277901128010224,0.43471294975176406,0.024943310657596373,0.04421768707482993,0.06235827664399093,1.553718746641438,68.93741047446909,1.2688010969264714,1.1164190599755621,0.49300231190241267,0.7292533563298556,0.5808259365821558,0.2788377599375777,0.18677270965306195,0.20518691589434696,0.12313951046730962,0.13863765749099569,0.07800014239415969,0.0886517329227246,-0.08523809523809522,3.80273734477347,0.2582995175413716,0.2599901408611654,5.349400658182837,6.657685323298505,0.33057524561178997,0.13135001708610147,0.39437764574911616,0.0,5.890723922025908,12.098827685538051,0.11866615526064782,4.9839785209472085,21.9520752383741,10.197363616602075,0.7116462160090714,1.6134310552296884,1.6603161423447372,0.35980977644780476,1.5090406474291298,0.8039173985888256,0.0,0.7055316675509125,6.975826900282246,1.0291888330629184,25.19553593809799,65.00848585391142,0.0,11.387855989696924,0.0,21.9520752383741,0.0,11.761884949391115,1.4524801069685667,0.6105763302627519,6.851892117295679,1.573689543290327,51.87051837251712,0.0,33.390501781036484,0.0,1.735,4.534716098624104,0.5226684580565262,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,24.582471595549837,0.8812019289665701,7.229276476480808,-0.016732471509553714,0.1301033667443197,0.11898629120586403,-0.32946215886055613,-0.22988096018882964,-0.21339844108511988,-0.4725928910239836,-0.5000293704931063,0.0,0.3793103448275862,42,0,7,0,1,1,2,3,5,8,0,13,9,0,0,0,6,6.717020000000006,3.562476190476185,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,2,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL269995,Cc1nc2cc3c(cc2o1)CCN(CCCSc1nnc(-c2ccc(F)c(F)c2)n1C)CC3,5.40000018605658,0.4396624049319898,-0.1399711413514214,0.4396624049319898,0.07473169385397727,0.00905700463636697,14.229121212121203,13.465484848484854,14.217417813939418,172,0,0.19184289128045412,-0.44100321262426384,0.44100321262426384,0.19184289128045412,0.03581267217630854,0.06152433425160698,0.08631772268135905,1.7257114225753467,68.24433792513898,1.3591057115804963,1.2366210152862416,0.5037875783446575,0.7810142197070119,0.6403190615586892,0.2862735034049839,0.18079542941158933,0.20423169190049756,0.11779454965098173,0.13751946404476403,0.07482748148935671,0.08838405125298476,-0.08424242424242422,3.6834119664985896,0.22294828565151278,0.27959337324230726,4.651928416187786,6.96015271599841,0.4207321307786418,0.1671727490186746,1.033000809866078,0.0,0.0,0.0,0.0,13.764808616296849,0.0,10.197363616602075,0.356420756042155,2.02892820939438,1.9850005420139822,0.20769069032882126,1.438392270807834,0.6927759335954431,0.0,0.7469197429148823,6.975826900282246,0.943245554639531,25.19553593809799,58.86416212582816,0.0,11.387855989696924,0.0,8.78083009534964,0.0,11.761884949391115,1.510420831948155,0.597626566755788,18.48633379938747,1.7472580518486314,39.78568095719053,0.0,22.487576848955428,0.0,1.8175757575757576,4.888242418076059,0.2660857604651406,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,15.181342137549283,1.1723065103426926,7.3978324156861115,-0.019262428389871862,0.07913129450606102,0.16812129196479372,-0.3054666052900627,-0.1900246528158857,-0.2092636647183718,-0.382779538178671,-0.6115204359964266,0.0,0.375,33,0,6,0,1,1,2,2,4,7,0,9,8,0,0,0,5,4.792920000000004,3.766363636363638,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL2207281,O=C(NC[C@@H](O)CN1CCC(Oc2ccc(Cl)c(Cl)c2)CC1)c1c[nH]c(=O)c2cc(S(=O)(=O)NCCO)ccc12,7.299988937677887,0.3556517736854522,-0.15486580073256515,0.3556517736854522,0.6931279035193691,0.005467106446865719,15.338000000000033,14.582000000000004,15.303030641500024,216,0,0.2553967752919758,-0.49028401760240736,0.49028401760240736,0.2553967752919758,0.03375,0.05375,0.0725,2.006204086346468,70.4021678471851,1.3792081431838041,1.2202692412932297,0.5284781031173457,0.7767521267192141,0.6129933189557142,0.30143969164050155,0.16700202870891043,0.2244241312582526,0.10366648008315218,0.14655037526962408,0.06330998477320963,0.08549345929207368,-0.06774999999999999,3.2428159958340386,0.2484959081324385,0.33253869103880446,7.518408382592067,7.078672266966622,0.7535301422595645,0.33103429846405236,0.07059210391641003,0.3221422616968213,11.466446624403513,0.0,0.2397268592035911,13.132916598063069,0.0,0.0,0.7311074622032081,0.9228881158327985,1.7980290860757502,1.274076652369415,1.6667825910913847,1.247619977303843,2.8623993144652684,0.4975461492025559,0.0,0.7450342333019128,39.04328366449601,68.389929655098,0.0,5.749511833283905,0.5080265703968642,0.0,5.749511833283905,23.20187978046503,2.2121306282458972,0.2505822788351896,0.0,1.4343200595670784,52.11742811638413,14.280792862467255,10.772448428929591,0.0,4.0264999999999995,4.619858064516839,0.4501717838118145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,1.7326408046992625,6.999972825862349,0.29212741540856035,0.5910498649539538,0.02949868153439115,-0.09761043393658808,-0.10154075462478743,-0.23162265478746452,-0.5153378548278763,-0.6915323999610856,-0.15486580073256515,0.38461538461538464,40,5,11,0,1,1,2,1,3,8,5,14,13,0,1,1,4,1.7395999999999987,3.7933749999999953,0,2,0,0,0,1,1,0,0,0,1,1,0,1,0,1,3,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL271066,Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6c(cc5CC4)OCC(=O)N6)n3C)cccc2n1,6.799998134593397,0.34089905532057774,-0.12741954539573594,0.34089905532057774,0.008198409975851195,0.00821907681931678,13.90959459459459,13.092297297297305,13.8977052756757,190,0,0.26190955095815616,-0.4815734949803399,0.4815734949803399,0.26190955095815616,0.03360116873630387,0.0577063550036523,0.08108108108108109,1.5619091691113172,75.22768762217109,1.396213231322024,1.2948115255240902,0.5060681898734881,0.8061842348676092,0.6716517809367395,0.2897405102726251,0.18579361525849009,0.2066962277485974,0.12402442914676004,0.14161692036283613,0.08158019722212292,0.09367119187616958,-0.0927027027027027,3.5579630040884105,0.20469952522885856,0.27415289783719954,4.930547303088527,7.086257602149146,0.5273969104251421,0.15539221171037582,0.5122072513801385,0.0,5.907179729351506,0.0,0.2642842082437576,0.0,0.0,10.197363616602075,0.8078146235778649,1.8314622789093762,1.8846831886075397,0.636240918860319,1.3701416309496346,0.9259290779866821,0.0,0.6661716625997599,6.975826900282246,0.8412730622460682,37.06433453430265,59.11776193188552,0.0,17.137367822980828,0.27153179208347095,5.687386274683562,5.749511833283905,11.761884949391115,1.6840554709880244,0.662600375324671,6.851892117295679,1.701236594824548,47.45336743546377,1.4118420783282006,22.29078092177798,0.0,2.301891891891892,5.007347750152032,0.1295820860559952,0.0,9.87691300107973,0.0,0.0,0.0,0.0,0.0,15.181342137549283,1.2405595448936393,7.061141703810443,-0.017345053172940564,0.4150988780296143,0.12975311551837337,-0.3070359761522184,-0.11450276728138961,-0.22465448271784058,-0.35110762668224715,-0.649906349910351,0.0,0.35714285714285715,37,1,8,0,2,2,2,2,4,8,1,9,8,0,0,0,6,4.252620000000003,3.9522351351351306,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,2,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL320178,CCOC(=O)N1CCN(CCCOc2ccc(-c3ccc(C#N)cc3)cc2)CC1,6.799998134593397,0.4459030662615796,-0.16224748103170636,0.4459030662615796,0.7396746596376682,0.02310988096964893,13.568517241379299,12.630034482758628,13.558801438758648,152,0,0.4093313385597905,-0.4935496913414225,0.4935496913414225,0.4093313385597905,0.040428061831153383,0.06302021403091558,0.084423305588585,2.2325867356883307,66.11786170613082,1.52695084073807,1.4160822640652229,0.4850477813066022,0.8515570067624846,0.7184782176003279,0.2529609762210176,0.15844554280565715,0.15844554280565715,0.09754564640702751,0.09754564640702751,0.05579734289642441,0.05579734289642441,-0.10482758620689653,3.0039675283092637,0.18463005716111838,0.36170647683410784,5.966672103410348,7.232141121236492,0.49564260822243367,0.19825902873392776,0.0,0.0,0.0,6.093240070938415,0.16896240451208544,4.794537184071822,5.261891554738487,0.0,0.8334370631259717,1.6731515459542148,1.6400911220500751,1.6097510410015654,1.7682325554575138,0.21011172658408328,5.261891554738487,0.3379248090241709,0.0,0.4560281730560365,45.602268907412295,53.90280115300335,0.0,22.94563612947017,0.1633401018551741,4.794537184071822,5.749511833283905,0.0,2.1205285668983334,0.1633401018551741,11.33111286753076,1.924094811273036,48.33934966130636,0.0,11.126902983393991,0.0,2.2689655172413796,5.017219359598553,0.3467734047865623,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,4.736862953800049,1.4395635851860693,7.879897801427107,0.0,0.3705859328667754,0.31824008479979443,-0.08761536044349279,-0.05251922328455352,-0.2676366774708067,-0.2508528492154246,-1.2060767201736524,0.0,0.391304347826087,29,0,6,0,1,1,2,0,2,5,0,6,8,0,1,1,3,3.7682800000000034,3.8531034482758635,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL643,CC(CN1c2ccccc2Sc2ccccc21)N(C)C,9.476253533188435,0.447688137755102,-0.213890837585034,0.447688137755102,0.07710648148148191,0.041607694643439046,14.22139999999998,13.213399999999998,14.206735982000026,104,0,0.06451820325786212,-0.3380650900563811,0.3380650900563811,0.06451820325786212,0.06,0.09,0.11750000000000001,2.658784199646814,64.7240735435133,1.5645005274920656,1.490133774073189,0.5309586031195753,0.8878332969745326,0.7624944538481868,0.30331928289457316,0.17943772742273462,0.2304687637307175,0.11808338363468958,0.16803692197282863,0.07665177755183154,0.12096346327425041,-0.07249999999999998,2.788684247083926,0.17373464964627863,0.2752505217861837,2.433756182332631,7.6524782056571485,0.4899909730850478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7965779890022149,2.2486610374256673,1.8006652332701674,1.2541179055534661,1.3707585561702198,1.156832874937912,0.0,0.2449954865425239,0.0,1.1330375768340437,25.348423215730914,48.33934966130636,0.0,0.0,0.2449954865425239,11.374772549367124,0.0,11.761884949391115,1.568315784204028,0.0,0.0,1.7133531620350038,58.13031661234191,0.0,0.0,0.0,0.324,5.386164848154265,0.0,0.0,4.899909730850478,11.761884949391115,0.0,0.0,0.0,0.0,0.0,1.3707585561702198,8.144381498278323,0.019980528785588248,-0.09046893896447468,0.0,-0.08792228835978835,0.0,-0.5774571103132612,0.0,-0.8043470227597215,0.0,0.29411764705882354,20,0,2,0,1,1,2,0,2,3,0,3,6,0,0,0,3,4.239400000000003,4.358100000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL62741,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)[C@H](N)CC(C)C)CC2)cc1,4.8399999311187,0.45958100594205314,-0.16401904369214873,0.45958100594205314,1.4055821910401005,0.012269212923579504,13.92325806451611,12.590096774193555,13.913380392645198,174,0,0.23908207245580199,-0.49354966269764505,0.49354966269764505,0.23908207245580199,0.04058272632674297,0.06555671175858481,0.0874089490114464,2.9609387723933867,71.60232369389516,1.888966443299111,1.8085930857384345,0.486012440577144,0.995376502516107,0.9040700437476611,0.2461852956508897,0.15309578017674652,0.15309578017674652,0.08704085464575938,0.08704085464575938,0.0481853892169602,0.0481853892169602,-0.06193548387096774,3.1439624517201947,0.14639696623948778,0.43493426094051657,8.994713541666664,7.915339463802389,0.4953706342057032,0.2765547093529131,0.18655628859241738,0.1905541848177905,0.0,0.0,0.46738658383852,0.0,0.0,0.0,1.0742427791788967,1.5865292651614322,2.6710294963668466,0.8921039299722048,2.2777162957818944,0.37711047341020787,0.0,0.31612320844196634,11.613674661089352,2.0906812331681595,39.04328366449601,29.733126322350174,0.0,5.749511833283905,0.33730902998472007,0.0,5.749511833283905,0.0,2.1468200087181635,0.15466248980876846,5.893957685363079,3.955187036331308,24.16967483065318,2.8236841566564013,0.0,0.0,2.44741935483871,5.562611575704834,0.3093249796175369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9683913161643576,10.88684041626244,0.0,0.804229942002385,0.0,-0.10847897679726864,-0.40420460818508525,-0.406496048166421,-0.9016980323844132,-1.3836335529466892,0.0,0.68,31,2,6,0,1,1,1,0,1,5,1,6,17,0,1,1,2,3.736100000000003,4.047641935483873,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL256482,CCc1nc2cc3c(c(Br)c2o1)CCN(CCCCSc1nnc(-c2cccc4nc(C)ccc24)n1C)CC3,5.700000503883016,0.23216993398525054,-0.12361038101829816,0.23216993398525054,0.00030279021306212073,0.003658968977295151,15.528358974359012,14.675435897435904,15.491333148102589,202,0,0.1947530011512487,-0.43950844009729345,0.43950844009729345,0.1947530011512487,0.029585798816568046,0.05391190006574622,0.07692307692307693,1.535816672404277,76.67526385951874,1.430503745407995,1.330198528895813,0.5456470704353623,0.8174010504065112,0.6894553946264637,0.30764757027992723,0.18490471611417375,0.22506868872164368,0.12556365288148505,0.16165444701242423,0.08306345110247378,0.10918776842652547,-0.0705128205128205,3.8330506563395423,0.20949262110878272,0.2920798275087974,5.362331335299834,7.370703058588489,0.3560041106588508,0.14145386455426312,0.5757585908586867,0.0,0.0,0.0,0.1277943210499284,4.9839785209472085,0.0,10.197363616602075,0.9420777740942737,2.1544757541349324,2.1974746864871753,0.4670249120633332,1.2731329048889908,1.274217298427693,0.0,0.7598033342855981,6.975826900282246,1.3006370570015118,25.19553593809799,63.43878666208054,0.0,11.387855989696924,0.0,0.0,0.0,27.691828847340464,1.4058427173137518,0.6690923488274457,6.851892117295679,2.2447263890728215,50.30081918068623,0.0,33.390501781036484,0.0,1.8684615384615386,5.035571568840971,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,36.09526455644584,1.2731329048889908,7.336055845550645,0.056544776942505114,0.16410504553212063,0.1321892855717454,-0.2969635620214054,-0.060258889599717536,-0.169926090332962,-0.5399864209273445,-0.6196232385788337,0.0,0.4,39,0,7,0,1,1,2,3,5,8,0,9,11,0,0,0,6,6.777920000000008,4.137692307692297,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL597528,c1ccc(CCCCNCC2c3ccccc3Cc3ccccc32)cc1,6.015922966097169,0.3676774532728041,-0.1752601264568032,0.3676774532728041,1.0434315600474953,0.022014483674647253,13.134538461538444,12.087769230769233,13.123628840923105,132,0,0.12222790204518,-0.3157885411652549,0.3157885411652549,0.12222790204518,0.03550295857988166,0.0591715976331361,0.08579881656804735,2.115045252623125,75.56456271325168,1.5949867351770344,1.536431292134614,0.49796975367307533,0.907831911954556,0.7940164304230737,0.2768159075192292,0.18116962294711417,0.18116962294711417,0.12132724989182593,0.12132724989182593,0.0805887556718741,0.0805887556718741,-0.0915384615384615,3.05057604941059,0.16167323454410903,0.3205108984631274,3.8886880230858747,7.4860183653557435,0.20422359051109137,0.05430161839723849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.021209353831648,2.3002237210814784,1.1619491769189183,0.6853792780851099,1.4250601745674585,0.0,0.0,0.20422359051109137,0.0,1.2071406650261767,12.99371936863189,106.36870065810783,0.0,0.0,0.20422359051109137,0.0,0.0,0.0,0.4997584372550727,0.49022499240995226,0.0,3.1575687464204814,78.55144319962284,1.4118420783282006,0.0,0.0,0.4626923076923077,6.002226564258029,0.05272148292962386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3723386916378346,8.802772295265479,0.0,0.0,-0.04060283099469604,-0.2593405838977568,-0.15064715600373527,-0.6179427288767662,-0.6312030752798136,-0.34342053559732605,0.0,0.28,26,1,1,1,0,1,3,0,3,1,1,1,7,0,0,0,4,5.335200000000005,4.2224115384615395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL294502,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)CC)CC2)cc1,5.720000163638921,0.4982911344710117,-0.17965338279411114,0.4982911344710117,1.1543443141721985,0.016182641241911037,13.871296296296277,12.601962962962967,13.861368257333368,150,0,0.22187514222272398,-0.49354966269764505,0.49354966269764505,0.22187514222272398,0.04252400548696845,0.07133058984910837,0.09739368998628259,2.8471180089200416,69.22670057195099,1.8326151656697336,1.745154520829315,0.4858952615700558,0.9690109594453796,0.8762273099047259,0.24659768027509635,0.14897638473070973,0.14897638473070973,0.08737856474526973,0.08737856474526973,0.04710662957094568,0.04710662957094568,-0.06962962962962962,3.024565745668098,0.14975196645962902,0.43531992189627144,7.332054762929558,7.814440724889636,0.3569175068389084,0.21294488271421871,0.21419425727277552,0.21878443442042614,0.0,0.0,0.5366290407034859,0.0,0.0,0.0,0.9796160754537081,1.3672416530856273,3.0996964838526195,0.7506137335043883,2.256730675249305,0.43297869169320163,0.0,0.36295627635929467,0.0,1.9237530978728752,39.04328366449601,29.733126322350174,0.0,5.749511833283905,0.17543936865926107,0.0,5.749511833283905,0.0,2.241982511181978,0.17757545126191931,0.0,4.033522712152733,24.16967483065318,0.0,0.0,0.0,1.8462962962962963,5.479907392596858,0.35515090252383863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.726140404066204,10.256000902320615,0.0,0.8961480603425035,0.0,-0.06630613415924368,-0.2605212402338743,-0.2663260272137762,-0.9906049422650218,-1.333822717556637,0.0,0.6363636363636364,27,0,5,0,1,1,1,0,1,4,0,5,13,0,1,1,2,3.772700000000003,4.012500000000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL240141,N#Cc1ccc(C(=O)N2CCN(c3ccc(OCCCN4CCCC4)cc3)C(=O)C2)cc1,5.599999383023619,0.43296312079621113,-0.14075617146235922,0.43296312079621113,0.5960881998879248,0.01965744151101025,13.51637499999999,12.634375000000006,13.506754398625024,166,0,0.2538834810672837,-0.49354775935305634,0.49354775935305634,0.2538834810672837,0.0341796875,0.056640625,0.078125,1.8788515761603286,67.71834949564088,1.475911504331148,1.3597999766684818,0.4847999766684819,0.8282724600031511,0.6969551424508599,0.2594551424508599,0.16893795621970747,0.16893795621970747,0.10687860332640714,0.10687860332640714,0.06358099656061376,0.06358099656061376,-0.10531249999999999,3.1549887439178526,0.1920894534459931,0.32166426312682705,5.267094855202019,7.114653957250949,0.6073935045734838,0.38269910992499534,0.0,0.18459936654223455,5.907179729351506,0.0,0.29965857400448886,0.0,5.261891554738487,0.0,0.0,2.5141201166851994,1.474703734167846,1.253868592066534,1.6470992779596842,0.5469295541683304,5.261891554738487,0.3062443581781549,0.0,0.5974617094996293,50.440053079662434,59.46625264470035,0.0,11.818733146076179,0.30114914639532897,5.687386274683562,5.749511833283905,0.0,2.0985725709129976,0.14982928700224443,11.33111286753076,2.29442045138188,48.33934966130636,0.0,0.0,0.0,2.4025000000000003,5.064879920522575,0.4640926850900665,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,1.3474407039551948,7.367397751191017,0.0,0.7927370601842081,0.2883488821195321,-0.12333832343111209,-0.1939521119725447,-0.3236850841200469,-0.38719113223998625,-0.925525375064401,0.0,0.4,32,0,7,0,2,2,2,0,2,5,0,7,7,0,2,2,4,2.9119800000000016,3.8012968750000016,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL64021,CCOC(=O)N1CCN(CCCOc2ccc(C(=O)c3cccc(C)c3)cc2)CC1,6.41999931041096,0.4543405218123955,-0.15896582105690998,0.4543405218123955,1.0898679490854115,0.016326239471887733,13.683799999999989,12.675800000000008,13.674018581333362,160,0,0.4093313385597905,-0.49354965933409767,0.49354965933409767,0.4093313385597905,0.03777777777777778,0.06444444444444444,0.08888888888888888,2.2240322727179644,68.33225330258867,1.5883939289802371,1.4842473450951792,0.48424734509517897,0.8759718953859804,0.7522128552630487,0.25221285526304876,0.16040804959069999,0.16040804959069999,0.09737148307202467,0.09737148307202467,0.0565177772391593,0.0565177772391593,-0.0953333333333333,3.01659322725837,0.17674092137989422,0.35947875803980783,6.066937215093504,7.336029618311113,0.4791211879483525,0.19165039444279683,0.19277483154549796,0.0,0.0,6.093240070938415,0.32314823049741,4.794537184071822,0.0,0.0,0.7896902538228959,1.6762934224745736,2.0933940397118946,1.1683369128185366,2.0061852320283466,0.3958828339101118,0.0,0.3266606487233652,0.0,0.6692236378640246,45.602268907412295,65.02970413639734,0.0,5.749511833283905,0.15789543179333496,4.794537184071822,5.749511833283905,0.0,2.2426191128805537,0.15789543179333496,6.851892117295679,2.5277488454298167,48.33934966130636,0.0,0.0,0.0,1.9693333333333336,5.271149949733954,0.31963581227145477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.528653987963556,8.363673146080746,0.0,0.8109404671366055,0.0,-0.12764230615679031,-0.11451051448144248,-0.3692849169619664,-0.24596493727108742,-1.2894331605682872,0.0,0.4166666666666667,30,0,6,0,1,1,2,0,2,5,0,6,10,0,1,1,3,3.769020000000003,3.8733500000000016,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL540634,O=C(c1ccc(Cl)cc1)N1CCN(c2ccc(OC3CCN(C4CCC4)CC3)cc2)C(=O)C1,5.700000503883016,0.4228134916288104,-0.13827613371795477,0.4228134916288104,0.6152352467570932,0.02000414418425259,14.181727272727265,13.265363636363645,14.157502106060631,174,0,0.25388374624162663,-0.49033877792872865,0.49033877792872865,0.25388374624162663,0.030303030303030304,0.05142332415059688,0.07254361799816346,1.6919434471518913,68.61190417831007,1.500668525982127,1.392253034269718,0.5060690629369438,0.8399004217466681,0.7202406059752168,0.27714862030882964,0.18021390630761266,0.19166737518668017,0.1169718241439635,0.12269855858349724,0.07043209623127697,0.07329546345104386,-0.07787878787878788,3.1269259825403943,0.192394332245493,0.29501820799413725,5.017800291818734,7.325717125413526,0.5889876407985298,0.5553451377136316,0.0,0.17900544634398502,5.907179729351506,0.0,0.290578011155868,0.0,0.0,0.0,0.5446625694412696,2.237304523231026,2.08606607964511,0.6230720709864636,1.6802634547591013,0.8818995643520936,0.0,0.2969642261121502,0.0,1.332198030362016,37.3842081524302,58.925434466744676,0.0,5.749511833283905,0.2920234146863796,5.687386274683562,5.749511833283905,11.600939890232516,2.0059511465843434,0.145289005577934,0.0,2.5256172687127973,48.33934966130636,5.022633313741326,0.0,0.0,1.6087878787878789,5.252219837863421,0.290578011155868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7412290766405825,7.8117592784986565,0.17413979885899258,0.7713438726549294,-0.025240707650519903,-0.09285013365929956,-0.1912816023831474,-0.4820400677094157,-0.7663251650309842,-0.6557342298081686,0.0,0.46153846153846156,33,0,6,1,2,3,2,0,2,4,0,7,5,1,2,3,5,4.224700000000003,3.9094696969696994,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1940419,Fc1ccc(SCCCN2CCN(c3ccccn3)CC2)cc1,6.673664139071248,0.6098868312541503,-0.19122168385604385,0.6098868312541503,0.4105128169641086,0.025888568888075027,14.411304347826071,13.447130434782611,14.397906388000026,122,0,0.128046683390899,-0.3540553115334669,0.3540553115334669,0.128046683390899,0.05103969754253308,0.08506616257088848,0.11909262759924387,2.2766355289778346,64.74194756503223,1.5399898722538363,1.440341458694477,0.5193195709087257,0.8645431749709663,0.7341776047377526,0.29141658651721897,0.15757745696057915,0.19307730830526285,0.09377860547717869,0.12040349398569142,0.05389737195362753,0.07141305893687284,-0.06913043478260869,2.884247123222803,0.18804935013079097,0.3615208914208495,4.942824211592631,7.477155335919328,0.21303955351523818,0.5058732008209097,0.0,0.0,0.0,0.0,0.21303955351523818,9.374393568622029,0.0,11.761884949391115,0.2627138568549259,2.383880596381533,2.207104477621676,0.7151783771322886,1.5020479688443331,0.7643368577054844,0.0,0.4297342718172907,0.0,0.48993079899335457,43.08916503758036,54.287047005503716,0.0,0.0,0.21303955351523818,10.208277825509848,0.0,11.761884949391115,2.0901366764577203,0.0,5.817220841045895,1.5882440494380097,53.36530963997559,0.0,0.0,0.0,0.8421739130434783,5.701055559913386,0.1908876107684704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.3111603580758624,8.459182845266639,-0.021264517235175518,0.047361341654139015,0.0,-0.16599233749036332,-0.1283310222270471,-0.3572823968238067,-0.23252098057258566,-0.9091239470645528,0.0,0.3888888888888889,23,0,3,0,1,1,1,1,2,4,0,5,6,0,1,1,3,3.525100000000002,4.114391304347828,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1222693,Cc1nc2n(c1C)Cc1ccccc1C=C2N1CCN(CC(C)(C)C(=O)O)CC1,7.400007822415903,0.4518875534436004,-0.17359042696254098,0.4518875534436004,0.20889692671145532,0.029776322033770786,13.604103448275849,12.561344827586213,13.594375041379337,154,0,0.3098703883855453,-0.48080127069077727,0.48080127069077727,0.3098703883855453,0.046373365041617126,0.07491082045184305,0.09988109393579073,2.3763758278749116,71.59543491219681,1.6060161241454307,1.520874171135433,0.4863914125147434,0.8919323429999089,0.776764529523362,0.26268700226598735,0.19209445005396594,0.19209445005396594,0.12414640338483485,0.12414640338483485,0.07784232880029855,0.07784232880029855,-0.0896551724137931,3.4122959322619155,0.16645639021117947,0.25299018095602005,3.6891701768719023,7.387807239042585,0.5026143989568637,0.0,0.20084153441379057,0.0,1.4311996572326342,5.969305287951849,0.33429127292835514,4.9839785209472085,0.0,0.0,0.8334370631259717,1.5374670068486989,2.3913358659244177,1.0994586860404651,1.7122532242798432,0.6109798740359741,1.4311996572326342,0.6672723320841214,5.41499046939678,1.169118212189609,32.48429842157972,52.50883830174402,0.0,0.0,0.0,0.0,0.0,0.0,2.169424466588907,0.38935851270302646,19.118774703988137,2.8205153736075372,24.16967483065318,0.0,13.180310716324033,0.0,2.124137931034483,5.235544522584946,0.2125964048359325,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,10.092786712054421,1.3728427320689243,8.733885135350798,0.0,0.5087282308509358,0.12340305589831087,-0.43352351230094865,-0.15372930513087707,-0.23767012359348316,0.0,-1.532472791419568,0.0,0.4782608695652174,29,1,6,0,2,2,1,1,2,6,1,6,8,0,1,1,4,3.088140000000001,3.949855172413796,1,0,0,0,0,2,0,0,1,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1669418,C[C@H](C1=C(CCN(C)Cc2ccco2)Cc2ccccc21)c1cnccn1,8.09151498112135,0.3480693728878787,-0.16732615511339433,0.3480693728878787,0.8522146007418381,0.022697856162161686,13.313814814814801,12.380481481481484,13.303694904444471,138,0,0.11723796344994993,-0.467994413855063,0.467994413855063,0.11723796344994993,0.05075445816186557,0.08641975308641976,0.11796982167352538,2.3072777248144116,74.42539271602341,1.4976398118438254,1.4166625584060644,0.49073663248013843,0.8575704436802255,0.7304998472116191,0.2675368842486562,0.18055144729495318,0.18055144729495318,0.12021935259717052,0.12021935259717052,0.08031198976109431,0.08031198976109431,-0.10074074074074071,3.389418803809089,0.17831164738473917,0.29208262740061103,3.857048193793762,7.231568806512945,0.16359818285382768,0.2641113324090616,0.0,0.0,0.0,0.0,0.5506617323238849,0.0,0.0,0.0,1.3553582028895603,1.7965378382122537,1.804791267864304,1.2410498678473174,1.4328190681966244,0.20641127889145436,0.0,0.5506617323238849,0.0,1.1847614551716097,13.47268658459819,89.16659544045095,0.0,0.0,0.0,0.0,0.0,0.0,1.04965012434604,0.4766586883572342,0.0,2.8136598890874276,71.0026679803874,0.0,5.573104530069267,0.0,1.5614814814814817,5.374105762059349,0.05076883541371186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.3820502327829123,7.9848627299573245,0.0,0.22262366672338962,0.0,-0.2745725110956459,-0.19993127677987646,-0.26897856529400066,-0.4790841396044111,-0.6176359532894964,0.0,0.30434782608695654,27,0,4,1,0,1,1,2,3,4,0,4,9,0,0,0,4,4.705100000000004,3.969333333333335,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL657,CN(C)CCOC(c1ccccc1)c1ccccc1,7.653600035424044,0.47460677984644156,-0.22424059901738483,0.47460677984644156,0.8637716259343242,0.041292128426058734,13.440052631578954,12.32594736842105,13.42959548905263,100,0,0.10759604464030842,-0.36745986260344343,0.36745986260344343,0.10759604464030842,0.05817174515235458,0.08587257617728532,0.11080332409972299,3.132065963443507,62.46927760408803,1.669087383192194,1.597655888734938,0.49239273084020113,0.930209744529309,0.8067930886165158,0.25416150966914736,0.15686641505072743,0.15686641505072743,0.09287706313103335,0.09287706313103335,0.0565063421698979,0.0565063421698979,-0.08631578947368419,2.7574515623195994,0.15785289057961183,0.3722772120769178,4.194495435474983,7.615314068462015,0.5071985623500277,0.3200009487868415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.180220372454366,1.3199240412609727,0.9191014807198791,1.2830971827962707,1.7643575070197195,0.0,0.0,0.25788998583423567,0.0,0.3200009487868415,27.007498727796726,71.55109006002695,0.0,0.0,0.0,0.0,0.0,0.0,1.6793372872972214,0.24930857651579205,0.0,2.42067635210098,60.42418707663295,0.0,0.0,0.0,0.6563157894736843,5.7651850813486405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7643575070197195,9.043963438312595,0.0,-0.04546166452285917,0.0,-0.13976384413414483,0.0,-0.6101979951404413,-0.19919923817480206,-0.851972275287714,0.0,0.29411764705882354,19,0,2,0,0,0,2,0,2,2,0,2,8,0,0,0,2,3.3542000000000023,4.170157894736845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL494093,CN1CCN(c2nc(N)nc3c2CCc2ccccc2-3)CC1,5.039999923502187,0.39808177437641723,-0.18101342160741973,0.39808177437641723,0.34615410052910045,0.03933297186034916,13.426818181818163,12.464636363636362,13.417258894181844,114,0,0.22206210820493996,-0.3677126677856951,0.3677126677856951,0.22206210820493996,0.05578512396694215,0.09504132231404959,0.1322314049586777,2.2807067991909675,67.58254643199214,1.5190803209926471,1.4425485444318087,0.4880030898863541,0.8652039720828892,0.7433682711931676,0.2708943079658986,0.1904024719090833,0.1904024719090833,0.1306334403721541,0.1306334403721541,0.08935863878920171,0.08935863878920171,-0.09727272727272723,2.8024034641495046,0.16691781285299523,0.23851077805553847,2.216415642573609,7.270489890299634,0.7054334744285105,0.26444830808341035,0.12834927984801825,0.2703790582266588,0.0,0.0,0.0,4.9839785209472085,4.9839785209472085,0.0,1.098621583211508,1.1493240088471817,2.372394810842283,0.757272565645919,1.312186214722299,0.5348273663100692,0.0,0.6758121260338588,0.0,0.5793568092117618,43.582892344122776,35.29657781404717,0.0,11.257379486545457,0.48271030484439775,11.766202058821523,0.0,0.0,2.1741423822859507,0.5793568092117618,0.0,1.6896052523012808,24.16967483065318,2.8236841566564013,11.257379486545457,0.0,2.649090909090909,4.951326569566793,0.0,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.312186214722299,7.887253721051582,0.0,0.29040632203393124,0.0,-0.19573971858809883,-0.11676246056082365,-0.17866903539804024,-0.3184528050487874,-0.8945511750049134,0.0,0.4117647058823529,22,2,5,1,1,2,1,1,2,5,1,5,3,0,1,1,4,1.5762,4.04538181818182,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3753318,C=CCN(CC=C)CCc1c[nH]c2ccc(C)cc12,5.585000955651308,0.45612384134940526,-0.2235800065640292,0.45612384134940526,0.0030020681111952996,0.039292392770954,13.388263157894746,12.221105263157893,13.377805194947367,100,0,0.16593663088215158,-0.3608889570384938,0.3608889570384938,0.16593663088215158,0.08310249307479224,0.12742382271468145,0.16620498614958448,3.2184423410545744,73.62218673105642,1.7148896720344613,1.6523382732105218,0.49444353636841665,0.953767310697346,0.8323814518026239,0.25621231519736287,0.16410705203946815,0.16410705203946815,0.10264888897039005,0.10264888897039005,0.06473796015624655,0.06473796015624655,-0.09473684210526312,3.0575186132747345,0.14701199423151326,0.33637046649818997,3.3556952662721895,7.681828544398995,0.2619475405383817,0.0,0.0743074778067474,0.0,0.0,0.0,0.25788998583423567,0.0,0.0,13.062077924003734,1.247895457443759,1.6249003118762444,2.718144384932427,0.7214518716685369,1.5893564083106744,0.5738381543200556,0.0,0.5198375263726174,0.0,0.6960430009802663,19.490579052947837,60.5932757332735,0.0,0.0,0.0,0.0,0.0,0.0,1.5456574765277666,0.33541710006996733,6.851892117295679,2.1006754033141384,49.46637274987951,1.4118420783282006,10.902924932081056,0.0,1.0015789473684211,5.7427108667251545,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,0.0,1.5893564083106744,9.272576605009414,0.0,-0.04082539005693247,-0.05342618561394665,-0.1757185464905759,0.0,-0.3576255253100063,-0.2795839659775542,-0.9838180441919788,0.0,0.29411764705882354,19,1,2,0,0,0,1,1,2,1,1,2,8,0,0,0,2,3.692820000000002,4.398615789473687,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL608689,CN(C)CCCC(c1ccccc1)c1ccccc1,7.154901959985742,0.48776467458328365,-0.23849498498229718,0.48776467458328365,0.9631466259343244,0.03931028026042421,13.336263157894745,12.116052631578944,13.32542367031579,100,0,0.06258304663883926,-0.30939936662908935,0.30939936662908935,0.06258304663883926,0.055401662049861494,0.08310249307479224,0.10803324099722993,3.336584086954519,66.34586313277555,1.7634501841823755,1.707748083973682,0.4972217681842083,0.9719409665721224,0.8642537049078914,0.25899054701315455,0.16169545239473462,0.16169545239473462,0.0976423735953939,0.0976423735953939,0.060334344692433796,0.060334344692433796,-0.08421052631578946,2.8100076134434917,0.143708567785774,0.3738522286430518,4.216306288434834,7.829068694000192,0.25788998583423567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.180220372454366,2.332698224785957,1.2480957323987334,0.7214518716685369,1.6593393048376344,0.0,0.0,0.25788998583423567,0.0,0.9810424993695704,20.448513484880436,71.55109006002695,0.0,0.0,0.0,0.0,0.0,0.0,1.3341275376700483,0.0,0.0,3.2260082770174185,60.42418707663295,0.0,0.0,0.0,0.1705263157894737,6.081016882304196,0.0721451871668537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5871941176707807,9.81679159004112,0.0,-0.050691927680753916,0.0,-0.15730770378326764,-0.21345362413971442,-0.6645146399270109,-0.47385956209969404,-0.6517009745159432,0.0,0.3333333333333333,19,0,1,0,0,0,2,0,2,1,0,1,8,0,0,0,2,4.160300000000003,4.3428947368421085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1243395,FC(F)(F)c1ccc(SC[C@@H](c2c[nH]cn2)C2CCNCC2)cc1,7.3187587626244115,0.5621916575124629,-0.2266252371774037,0.5621916575124629,0.20381808230383225,0.03273811795688072,14.809541666666656,13.969541666666672,14.797208470833356,130,0,0.4159108286252466,-0.35089294907939983,0.4159108286252466,0.35089294907939983,0.06076388888888889,0.09027777777777778,0.11458333333333333,2.554606706413579,60.4855737354516,1.4485444384774577,1.3076576039996424,0.5083449615382977,0.8063250397450469,0.6650526240615623,0.28680551530855436,0.16772643960443392,0.20174713047642245,0.10311281680365614,0.1328809213166461,0.06063712693184209,0.08592816634211604,-0.061250000000000006,3.134073738988062,0.2194485013875239,0.31711554390125457,4.329150365305546,7.134004715614595,0.42861735931323447,0.11594169310410087,0.05882675326367503,0.0,0.0,6.176298517443475,0.0,4.9839785209472085,13.171245143024459,11.761884949391115,0.0,2.3251334036377878,1.6298498304536846,1.017272665890116,1.694524304614368,0.49007853955796316,0.0,0.6362831310193683,5.893957685363079,1.237982895040962,18.698676253782047,47.903321241979626,0.0,0.0,0.22124222305368232,13.171245143024459,0.0,11.761884949391115,1.1941524185399377,0.25734577156014476,5.893957685363079,2.273785041067971,41.541425230951944,2.8236841566564013,0.0,0.0,1.69625,4.96996845686614,0.6059168207997783,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.0886074838145892,8.574469864714484,-0.028463216883975805,0.07571201538955717,-0.034352218959454894,-0.32404791610308475,-0.3692421688003907,-0.27404276566253477,-0.7037498644107071,-0.3398948403950059,0.0,0.47058823529411764,24,2,3,0,1,1,1,1,2,3,2,7,5,0,1,1,3,4.304000000000003,3.7121000000000013,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1243335,CC(C)(C)c1ccc(SCC(c2ccccn2)c2c[nH]cn2)cc1,5.0,0.3848973293020912,-0.16595172855605142,0.3848973293020912,0.049150085568181456,0.02767481754384533,14.062166666666648,13.096166666666667,14.048386197333363,124,0,0.16690731925565178,-0.35087941211133383,0.35087941211133383,0.16690731925565178,0.052083333333333336,0.08680555555555557,0.11631944444444443,2.4855596034559366,69.698490480042,1.532565599225168,1.4479120448734892,0.5235994024121443,0.8727086058798436,0.7373792780193207,0.2944327357454777,0.17768662001411537,0.21170731088610384,0.10610163945180462,0.13586974396479456,0.06203381140749533,0.08710037207405182,-0.08625,3.1723774298099614,0.18174594846571157,0.3008879980344177,4.06217661612096,7.494966198432298,0.20737513625955217,0.057114939840425843,0.05882675326367503,0.0,0.0,0.0,0.20766577170613368,4.9839785209472085,0.0,11.761884949391115,1.6117888531198716,1.46450486632279,1.6414722273475046,1.4967505164399257,1.315355429753043,0.49007853955796316,0.0,0.6227066796718196,0.0,1.5316711659235278,5.704956885150159,77.89740057063273,0.0,0.0,0.0,0.0,0.0,11.761884949391115,0.8604132165530762,0.2256246028915325,0.0,3.0649012397662037,65.84157656475658,1.4118420783282006,0.0,0.0,1.7320833333333334,5.015102726581149,0.057114939840425843,0.0,16.738888219620367,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.2582404899126172,7.838710893488487,-0.013517120968757892,0.2571478621118391,0.0,-0.46711811333383507,-0.14083197515117166,-0.35998167250589885,-0.130443576861398,-0.4978551856681543,0.0,0.3,24,1,3,0,0,0,1,2,3,3,1,4,5,0,0,0,3,5.026400000000005,4.188904166666668,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL105483,CCOC(=O)N1CCN(CCCOc2ccc(-c3ccc(OC)cc3)cc2)CC1,6.4500041484693496,0.4466861820917305,-0.1633399798553533,0.4466861820917305,0.9706553304854182,0.02177127947555362,13.741482758620677,12.698724137931041,13.73174336000003,156,0,0.4093313385597905,-0.49676781835201905,0.49676781835201905,0.4093313385597905,0.036860879904875146,0.05945303210463733,0.08085612366230677,2.226015961647594,66.79834316578722,1.6131577372897943,1.5181869087191509,0.483704150098461,0.8910896484661647,0.7679486139008067,0.2507072345904619,0.15652770897713675,0.15652770897713675,0.09641877559174966,0.09641877559174966,0.05523390748878548,0.05523390748878548,-0.09413793103448273,3.0170728953910286,0.17036584142568897,0.36951154428489635,6.123881860745419,7.402343778082754,0.6589827100776078,0.3965180574678555,0.0,0.0,0.0,6.093240070938415,0.16896240451208544,4.794537184071822,0.0,0.0,0.8334370631259717,1.6731515459542148,1.6400911220500751,1.5931150176534268,2.0733752665716767,0.21011172658408328,0.0,0.3379248090241709,0.0,0.4560281730560365,52.64022136629488,48.33934966130636,0.0,22.6259266499618,0.3266802037103482,4.794537184071822,11.49902366656781,0.0,2.3632165827218707,0.1633401018551741,0.0,1.874054265645921,48.33934966130636,0.0,11.126902983393991,0.0,1.7668965517241382,5.266323249269914,0.16532886841626973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,1.5813661944450579,8.812000906558074,0.0,0.3702353369240659,0.0,-0.06897920633447631,-0.09163602290425732,-0.35122246287136133,-0.2526171395522737,-1.2128436482276321,-0.11298374060363435,0.43478260869565216,29,0,6,0,1,1,2,0,2,5,0,6,10,0,1,1,3,3.9052000000000033,3.916448275862071,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL238871,O=C(c1cc(F)cc(F)c1)N1CCN(c2ccc(OCCCN3CCCCCC3)cc2)C(=O)C1,5.599999383023619,0.4267084889283688,-0.14426980300498712,0.4267084889283688,0.7144531728732777,0.01679268949909169,13.869058823529404,12.950000000000008,13.859804361529438,182,0,0.25409449540035095,-0.4935477593530564,0.4935477593530564,0.25409449540035095,0.029411764705882353,0.04930795847750865,0.06920415224913495,1.9172105973785374,66.90308067049558,1.5153547458061822,1.3918327824679386,0.48006807658558576,0.8372562916952956,0.7119683009907872,0.2560859480496107,0.16682869626955518,0.16682869626955518,0.10286159247278391,0.10286159247278391,0.06289070619816908,0.06289070619816908,-0.08823529411764705,3.140377770978945,0.19422206752523494,0.33592522568103744,6.315555555555555,7.12315504033277,0.5716644748926907,0.7023768588144599,0.0,0.17374058027504427,5.907179729351506,0.0,0.28203159906304837,8.78083009534964,0.0,0.0,0.37487793537231645,2.010794303488229,1.7269403654622133,0.7976577525138113,1.9294200781932418,0.5147572274525463,0.0,0.2882299841676752,0.0,0.9371948384307911,50.440053079662434,59.49482412743185,0.0,5.749511833283905,0.2834344907250155,14.4682163700332,5.749511833283905,0.0,1.9751271255651743,0.14101579953152418,11.63444168209179,2.4916508359909564,42.29693095364306,0.0,0.0,0.0,1.5614705882352942,5.1426640806503725,0.5402913077498025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3891287704434383,8.539415204864072,0.0,0.7192953537303757,0.0,-0.10483487689510711,-0.3237359965820968,-0.37023411299424097,-0.6708641271886109,-0.9410022292481196,0.0,0.46153846153846156,34,0,6,0,2,2,2,0,2,4,0,8,7,0,2,2,4,4.098700000000004,3.7081323529411785,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL238456,CC(C)N1CCC(Oc2ccc(N3CCN(C(=O)c4ccc(C#N)cc4)CC3=O)cc2)CC1,5.4999996786570655,0.42284297029981793,-0.13983679252915637,0.42284297029981793,0.641510570390059,0.021345969587009437,13.531848484848476,12.615484848484856,13.522175479393963,172,0,0.2538834810672837,-0.4903387779556776,0.4903387779556776,0.2538834810672837,0.03581267217630854,0.05693296602387512,0.07621671258034894,1.9795251107986165,68.13389092040653,1.5069444890483858,1.3943514925270126,0.48526058343610373,0.8410520824272981,0.7137140775281067,0.25916862298265203,0.17408727486429076,0.17408727486429076,0.11032057813631782,0.11032057813631782,0.06561243083730292,0.06561243083730292,-0.10212121212121211,3.1032123379238867,0.18762710784604708,0.3046059252570892,5.345389367159445,7.177085143841293,0.5889876407985298,0.5553451377136316,0.0,0.17900544634398502,5.907179729351506,0.0,0.290578011155868,0.0,5.261891554738487,0.0,0.0,2.2663328393501962,1.9338650701377977,0.9755773074861384,1.6802634547591013,0.5303559313147447,5.261891554738487,0.2969642261121502,0.0,1.1681074100772653,37.3842081524302,59.46625264470035,0.0,11.818733146076179,0.2920234146863796,5.687386274683562,5.749511833283905,0.0,2.005951146584343,0.145289005577934,11.33111286753076,2.5301160875703794,48.33934966130636,0.0,0.0,0.0,2.3296969696969696,5.10451764721369,0.45002927039036755,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,1.3896854436032327,7.722758066663685,0.0,0.7648009184900956,0.28028023512161476,-0.12314636047103455,-0.19459645257812008,-0.4664161199152369,-0.41934415234812156,-0.9254472460739959,0.0,0.4230769230769231,33,0,7,0,2,2,2,0,2,5,0,7,7,0,2,2,4,3.2988800000000023,3.82468181818182,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL255827,Cc1nc2cc3c(cc2o1)CCN(CCCSc1nnc(-c2ocnc2C)n1C)CC3,5.599999383023619,0.2855273498446661,-0.14731891287935608,0.2855273498446661,0.05720802647859968,0.010702948610444433,14.14699999999999,13.301580645161296,14.134961131354865,162,0,0.20172690393297518,-0.44100321262426384,0.44100321262426384,0.20172690393297518,0.04058272632674297,0.06971904266389177,0.0967741935483871,1.7123361668994916,70.17071680689516,1.4204081044180839,1.3196137562706884,0.5072426782360989,0.8135183807534351,0.6809040788513335,0.28788783952642144,0.17971510338592295,0.20466338280959945,0.11813665022318576,0.13913413973914757,0.0754615445283074,0.08989273169604049,-0.08548387096774193,3.729744236060992,0.20092052762861948,0.273222782108565,4.115494960043883,7.133479312312348,0.5903648791209202,0.22217610560601556,0.9277457774953388,0.18788401606451377,0.0,0.0,0.0,9.967957041894417,0.0,10.197363616602075,0.3794156435287456,1.7961053840103334,2.0662529697830676,0.27211113248996455,1.43464594627524,0.7374711551177298,0.0,0.9558816141012363,6.975826900282246,1.225128884529039,25.19553593809799,41.166083453587156,0.0,11.58465191687437,0.0,0.0,0.0,11.761884949391115,1.7686408379108491,0.6361831194497098,13.703784234591359,2.0878774923233396,32.4452669092462,0.0,22.684372776132875,0.0,2.774516129032258,4.860084166733616,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.43464594627524,7.353442825789255,-0.0177805257199228,0.19526870194994211,0.1883124859408219,-0.3140240601401262,-0.09769003857092544,-0.08466358198744883,-0.4362385002557247,-0.7436165543177011,0.0,0.45454545454545453,31,0,8,0,1,1,1,3,4,9,0,9,9,0,0,0,5,3.8111400000000026,3.84425806451613,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL239963,O=C(c1ccc(F)cc1)N1CCN(c2ccc(OC3CCN(C4CCCC4)CC3)cc2)C(=O)C1,5.599999383023619,0.4204559267715227,-0.13896827399276712,0.4204559267715227,0.6802985107214563,0.019626800305452385,13.693205882352931,12.744500000000007,13.683610885411792,180,0,0.25388547503043585,-0.49033877792872865,0.49033877792872865,0.25388547503043585,0.028546712802768166,0.04844290657439446,0.06833910034602077,1.7128635634195142,69.44838554668792,1.5300606281591234,1.424833827379432,0.4836573567911968,0.8519621740482367,0.7358217646230045,0.26523352932888683,0.1785899678868005,0.1785899678868005,0.11536971166914105,0.11536971166914105,0.07111791693035706,0.07111791693035706,-0.08617647058823528,3.2052087203869375,0.18368452931393486,0.2981188187944906,5.091822365622827,7.1995828655712675,0.5716644748926907,0.710106187811639,0.0,0.17374058027504427,5.907179729351506,0.0,0.28203159906304837,4.39041504767482,0.0,0.0,0.37487793537231645,2.171501449018349,1.957619541967287,0.6047464218398029,1.8406066519725182,0.5147572274525463,0.0,0.2882299841676752,0.0,1.4804547030375266,37.3842081524302,59.72002199404925,0.0,5.749511833283905,0.2834344907250155,10.077801322358383,5.749511833283905,0.0,1.9469525834495096,0.14101579953152418,5.817220841045895,2.719406231799767,48.33934966130636,0.0,0.0,0.0,1.5614705882352942,5.308551972886083,0.4111614534064254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4294451985660919,8.516809778486289,0.0,0.7364689465882855,0.0,-0.09722014616459719,-0.2474801606567345,-0.5318493751690689,-0.9230613693875228,-0.6570990462456674,0.0,0.48148148148148145,34,0,6,1,2,3,2,0,2,4,0,7,5,1,2,3,5,4.100500000000004,3.7816911764705905,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1935444,Cc1ccc(Cn2c(C3CNCCS3)nc3ccccc32)cc1,8.303541613061299,0.3960928742135608,-0.15580503603150497,0.3960928742135608,0.16878306878306915,0.034589342180594465,14.063695652173896,13.143347826086957,14.049809507478287,118,0,0.12416257564579218,-0.3225023191032008,0.3225023191032008,0.12416257564579218,0.06427221172022683,0.10207939508506617,0.13988657844990549,2.258892997653308,73.14829889432467,1.481498591313804,1.4021690903027713,0.5246254633865854,0.8529770982198457,0.7248134552266814,0.3060866285061497,0.18254329890059642,0.2180431502452801,0.12023933401669078,0.1494277944305172,0.07995872989118892,0.10225672948879069,-0.07739130434782605,3.2961342357917967,0.1844670191900183,0.2773320561187672,3.0104119622820424,7.401224896671234,0.4294310000469448,0.3146194163620925,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,11.761884949391115,1.8181723364207287,1.0652252619269245,1.6318418671143475,1.3625102270560345,1.2533484000753303,0.9910994080271146,0.0,0.6461257183489973,0.0,0.8075974552519776,18.698676253782047,65.29065714270027,0.0,0.0,0.23086145014297285,0.0,0.0,11.761884949391115,1.228250192283505,0.28247216018764976,6.851892117295679,2.1561942727818355,48.33934966130636,1.4118420783282006,11.033401435232523,0.0,1.297826086956522,5.169882158947771,0.0,0.0,16.32898459718247,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.2533484000753303,7.566667597858683,-0.01639245450224023,0.17065548763788926,-0.16750077776588032,-0.31229532324185183,-0.05342656436568182,-0.3740675998887774,0.0,-0.596249061384315,0.0,0.3157894736842105,23,1,3,0,1,1,2,1,3,4,1,4,4,0,1,1,4,3.770520000000002,4.264465217391306,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1276948,O=C(O)C1CN(C2CC[C@]3(Cc4ccccc4Cc4ccccc43)C2)C1,8.199970640755867,0.47977592065687336,-0.17931470397988256,0.47977592065687336,0.7304255899890819,0.0346767682556938,13.363769230769217,12.394538461538465,13.353404963076951,134,0,0.30860760712743207,-0.48095523369926796,0.48095523369926796,0.30860760712743207,0.04585798816568047,0.07396449704142012,0.10502958579881658,2.1579991991953915,74.01079052700089,1.5303850211477428,1.452450391401065,0.49091192986260324,0.8700349450429058,0.7591275759299101,0.2818872570659154,0.20942620271885354,0.20942620271885354,0.1485287668214176,0.1485287668214176,0.1031366956650952,0.1031366956650952,-0.0819230769230769,3.0329880584183404,0.17178798255263888,0.2289198305104475,2.488475957385373,7.285072669542371,0.1964926227348928,0.0,0.0,0.0,1.4311996572326342,5.969305287951849,0.37286334288162687,0.0,0.0,0.0,1.8592057562040907,2.0814780951321104,1.7830284309654563,0.648462543643263,1.6462134893563205,0.22958866492122498,1.4311996572326342,0.18845806657117223,5.893957685363079,1.6652887478612814,12.99371936863189,70.59315562809434,0.0,0.0,0.0,0.0,0.0,0.0,1.3457551941111952,0.8828991329279755,5.893957685363079,2.8565686930331315,48.33934966130636,0.0,1.4311996572326342,0.0,1.5592307692307692,5.524905967126347,0.5534556568178216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,0.9513113504663989,8.419517498596731,0.0,0.45168262873421633,0.13923420325903926,-0.4122367574505021,-0.23793377664681314,-0.6041630724211678,-0.8376693755028446,-0.3158672460045567,0.0,0.43478260869565216,26,1,3,2,1,3,2,0,2,3,1,3,2,1,1,2,5,3.6402000000000028,3.9003769230769256,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2112461,C[C@@]1(O)CCN(CCCOc2ccc(-c3ccc(C#N)cc3)cc2)C1,5.4100001618584095,0.3679103515719233,-0.1800764657518814,0.3679103515719233,0.7047349880712261,0.032841230174268564,13.457399999999984,12.489720000000002,13.447351120320027,130,0,0.21090897062758,-0.4935496913583162,0.4935496913583162,0.21090897062758,0.054400000000000004,0.0832,0.1072,2.2728546802959757,67.50967538147364,1.5450749537209914,1.4484369508771056,0.4884369508771057,0.8702391126048861,0.7366019166863831,0.26027198506782845,0.17488233201746747,0.17488233201746747,0.10294724775458323,0.10294724775458323,0.06118437261981703,0.06118437261981703,-0.09399999999999999,3.039997405169782,0.17942308094502227,0.3075753494541373,4.818956418101454,7.305331991885236,0.5898232350303095,0.2299804733313562,0.0,0.057247986289305365,0.0,0.0,0.0,0.0,5.261891554738487,0.0,0.9667869932261272,2.1957727893600643,1.492417611326428,1.5000117768036583,1.6549247174728934,0.0,6.693091211971121,0.19599638923401913,0.0,1.007951709237525,26.049564295864123,53.90280115300335,0.0,22.94563612947017,0.18947451815200198,0.0,5.749511833283905,0.0,1.7236213074415252,0.0,11.33111286753076,2.267545608142662,48.33934966130636,0.0,11.126902983393991,0.0,2.2596000000000003,5.077099309093359,0.21047566218953948,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,5.1088081911072125,1.5078203761179099,8.024666747852088,0.0,-0.03719923646569226,0.5272313189524723,-0.2632883222936133,-0.057724919165196974,-0.2927921736644027,-0.34537426590901615,-0.8555191493066385,0.0,0.38095238095238093,25,1,4,0,1,1,2,0,2,4,1,4,8,0,1,1,3,3.4508800000000024,3.9354320000000014,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1935442,Fc1ccc(Cn2c([C@H]3CNCCO3)nc3ccccc32)cc1,9.096910013008056,0.6219243785535074,-0.1627489481434013,0.6219243785535074,0.06748630007558609,0.035140558192947736,13.537391304347814,12.748521739130437,13.527973496347848,118,0,0.14029346329562511,-0.3676223888023823,0.3676223888023823,0.14029346329562511,0.062381852551984876,0.09829867674858223,0.13610586011342155,2.2632945635409794,69.29362414381113,1.3728029391398908,1.266428415216216,0.48381971956404196,0.8003107997239679,0.6569431176834039,0.26793383092253614,0.17989035266166653,0.17989035266166653,0.11891286089722586,0.11891286089722586,0.07929549333145645,0.07929549333145645,-0.09739130434782606,3.289671454631254,0.20209353177817227,0.26528939933573126,2.8505184620371877,6.904534331113314,0.6353815632556425,0.8318906714923482,0.0,0.0,0.0,0.0,0.0,9.374393568622029,0.0,0.0,1.0508554274197035,1.2927446227108772,1.085809272940379,1.5396629525374643,1.4713919797694264,0.4797131058796749,0.0,0.6461257183489973,0.0,0.5468207700550406,19.55270461154818,65.54442649204918,0.0,0.0,0.23086145014297285,4.39041504767482,0.0,0.0,1.265381860012467,0.48842272339634757,5.817220841045895,1.7726421509365509,48.33934966130636,1.4118420783282006,11.033401435232523,0.0,1.6991304347826086,4.957270591451488,0.1908876107684704,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.2805043690009559,7.246235374604588,0.0,0.1651120093770197,-0.026037395803221782,-0.1298015068547548,-0.1325009887071791,-0.3964095609475652,-0.1625482424249894,-0.6328902689540415,0.0,0.2777777777777778,23,1,4,0,1,1,2,1,3,4,1,5,3,0,1,1,4,2.8846000000000007,3.7738130434782624,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2031876,C[C@@H]1CCCN1C(=O)c1ccc(-c2ccc3c(c2)CCN(CCN2CCCC2)C3=O)cc1,5.0,0.4465527142745637,-0.14462381258948892,0.4465527142745637,0.7530970103720458,0.022400072793516565,13.486874999999987,12.447375000000006,13.47678991550003,168,0,0.25368721860355825,-0.3370235549011613,0.3370235549011613,0.25368721860355825,0.0341796875,0.05859375,0.0830078125,1.7842257814270164,74.50457239874052,1.6035923305069888,1.5205667927321125,0.48931679273211254,0.888194380191619,0.7865846709441773,0.27095967094417733,0.1878425909278682,0.1878425909278682,0.12680773796107286,0.12680773796107286,0.0797959514270863,0.0797959514270863,-0.08312499999999999,3.2412294602002283,0.16732425061956435,0.28329153388997974,4.182961115013386,7.403490853036182,0.4593665372672323,0.0,0.0,0.0,11.814359458703011,0.0,0.29965857400448886,0.0,0.0,0.0,0.7553023384579118,2.7039952059579795,2.3331150306538277,0.42836204880319373,1.7132533350550296,0.3691987330844691,0.0,0.4593665372672323,0.0,1.3979502841341318,38.981158105895666,58.98728542873405,0.0,11.126902983393991,0.0,0.0,0.0,0.0,2.2347856007968674,0.1991539031665431,0.0,3.24556415373328,42.29693095364306,0.0,11.126902983393991,0.0,1.3706250000000002,5.635745133174076,0.29965857400448886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4135947610505402,8.642963159852375,0.0,0.8050198191697234,0.0,-0.23425150298012684,-0.14329893949109146,-0.4775678807362099,-0.6334520135375992,-0.9411834756104078,0.0,0.48148148148148145,32,0,5,0,3,3,2,0,2,3,0,5,6,0,2,2,5,4.072200000000003,3.965375000000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2207668,N#Cc1ccc(OC2CCN(C[C@H](O)CNC(=O)c3c[nH]c(=O)c4ccccc34)CC2)cc1,6.299997602857746,0.4207377968749288,-0.1483093265252384,0.4207377968749288,0.4118912508998518,0.015488873000193502,13.530515151515145,12.736333333333341,13.521072888242447,170,0,0.2553518553443619,-0.49033992867778786,0.49033992867778786,0.2553518553443619,0.0440771349862259,0.06611570247933884,0.08723599632690542,1.981413380625732,71.44101746164255,1.3966962260049254,1.2703590164804632,0.48248022860167533,0.8009516453231849,0.6473378966552505,0.25937803358059064,0.17210839468950337,0.17210839468950337,0.10870557603502222,0.10870557603502222,0.06688277575723028,0.06688277575723028,-0.11121212121212119,3.1339178733138504,0.20965601138943793,0.312061692717729,5.579555425210146,6.899955002203548,0.7585574999780414,0.3584706018252695,0.0855661865653455,0.0433696865828071,11.466446624403513,0.0,0.290578011155868,0.0,5.261891554738487,0.0,0.549310791605754,1.3017558588174314,1.7163747860215262,1.2453334410105796,1.4845860387136538,0.5054432775236696,6.693091211971121,0.46020382892024564,0.0,0.7547238138351132,25.98743873726378,75.99295193463894,0.0,11.818733146076179,0.47290736976183134,0.0,5.749511833283905,0.0,1.8324719809071162,0.0,11.33111286753076,1.8240829321830212,59.306782056192944,2.8236841566564013,10.772448428929591,0.0,3.589393939393939,4.839624414858266,0.45002927039036755,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,5.1088081911072125,1.2278543502910353,6.7403758285784034,0.0,0.7613977238446539,0.2971179476875827,-0.1229303046952015,-0.11628121667309492,-0.25428521326026565,-0.6063339645298683,-0.5727981746895832,0.0,0.32,33,3,8,0,1,1,2,1,3,6,3,8,8,0,1,1,4,2.0338799999999995,3.7622939393939396,0,1,0,0,0,1,1,0,0,0,1,1,0,1,0,2,2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1767151,CN1CCC[C@@H]1Cn1nc(CC2CCCCC2)c2ccccc2c1=O,7.100015437450608,0.5662050710412723,-0.18899627267573701,0.5662050710412723,0.8571710837112625,0.03415483093373215,13.57931999999998,12.410040000000002,13.569242501920032,134,0,0.27419514898370173,-0.30157130982626995,0.30157130982626995,0.27419514898370173,0.0512,0.0832,0.1152,2.359983744427749,78.57638881194916,1.7192243789233124,1.6499955630785497,0.48999556307854947,0.9358649439939968,0.8498305972692722,0.2698305972692722,0.18392746212633515,0.18392746212633515,0.1223183055648413,0.1223183055648413,0.0791643706433297,0.0791643706433297,-0.0672,3.074817455660331,0.15184922337086687,0.29137032081967723,3.499196264600516,7.605154964933453,0.19599638923401913,0.0,0.0,0.0,5.559266895052007,0.0,0.19178148736287287,4.681802935145185,5.098681808301038,0.0,1.9996752251854713,1.7811135072645081,1.7172625389891807,1.0320625292260208,1.5900799251574558,0.43089793715718366,0.0,0.587215778971868,5.893957685363079,2.5399260545320246,13.47268658459819,40.21740690462547,0.0,0.0,0.22237067580208028,0.0,0.0,0.0,1.3668389410897814,0.514791383425813,5.893957685363079,3.6022560173236178,28.964212014725,0.0,10.772448428929591,0.0,1.5252000000000001,5.545673057949633,0.19178148736287287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.5900799251574558,9.699363100033285,0.0,0.5299156992301562,0.009587679516250915,-0.16846014844209292,-0.18899627267573701,-0.40927864758264293,-1.4102899603397723,-0.5185081164061139,0.0,0.6190476190476191,25,0,4,1,1,2,1,1,2,4,0,4,5,1,1,2,4,3.613500000000003,4.077360000000003,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1935441,Cc1ccc(Cn2c([C@H]3CNCCO3)nc3ccccc32)cc1,9.0,0.39140818072398037,-0.16385656582216523,0.39140818072398037,0.06461640211640218,0.0351361517896048,13.365086956521722,12.444739130434781,13.355150534434808,118,0,0.14029346320775596,-0.36762238880238246,0.36762238880238246,0.14029346320775596,0.06427221172022683,0.10207939508506617,0.13988657844990549,2.258892997653308,73.14829889432467,1.481498591313804,1.4021690903027713,0.48912561204190164,0.8529770982198457,0.7248134552266814,0.27058677716146595,0.18254329890059642,0.18254329890059642,0.12023933401669078,0.12023933401669078,0.07995872989118892,0.07995872989118892,-0.0943478260869565,3.2961342357917967,0.17720231227726033,0.26711084587490486,2.874597774358794,7.183417731633915,0.6353815632556425,0.5789680262294833,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,1.8181723364207287,1.0652252619269245,1.264603867223451,1.5396629525374643,1.459298963284028,0.4797131058796749,0.0,0.6461257183489973,0.0,0.8447291229809397,19.55270461154818,65.29065714270027,0.0,0.0,0.23086145014297285,0.0,0.0,0.0,1.265381860012467,0.48842272339634757,6.851892117295679,2.1933259405107974,48.33934966130636,1.4118420783282006,11.033401435232523,0.0,1.6991304347826086,5.244145494405696,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.459298963284028,7.716716809931824,0.0,0.1661265021306429,-0.02632934693509384,-0.1783909942665687,-0.06147809415634205,-0.38627326717984856,-0.16381635836701838,-0.776700178693826,0.0,0.3157894736842105,23,1,4,0,1,1,2,1,3,4,1,4,4,0,1,1,4,3.0539200000000015,3.981595652173915,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1222552,C1=C(N2CCNCC2)c2nccn2Cc2ccccc21,9.199970640755865,0.4425288170823885,-0.18566441680839013,0.4425288170823885,0.21076199924414185,0.0425869243233726,13.317399999999992,12.410199999999998,13.307657328800014,102,0,0.1561236907416847,-0.36597484212791476,0.36597484212791476,0.1561236907416847,0.065,0.1075,0.1525,2.304838151975184,68.99859008003406,1.4645005274920657,1.3894427190999916,0.48944271909999165,0.8500341437673471,0.7216640786499874,0.27430339887498956,0.1862132289312401,0.1862132289312401,0.128036954353119,0.128036954353119,0.08602360463437154,0.08602360463437154,-0.10349999999999997,3.059815473788185,0.16954906637869982,0.23979773704073287,1.926697856829972,7.18189140823605,0.7388411365965105,0.07059210391641003,0.2912202248999963,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,1.208483741532659,0.858948736471478,2.5156561533945068,1.1758450271634344,1.235736876661097,0.58745555295457,0.0,0.9880400626438709,0.0,0.32484298421579727,25.98743873726378,53.46677273367662,0.0,0.0,0.26549066766441876,0.0,0.0,0.0,2.021921331842641,0.32484298421579727,0.0,2.012710146814384,36.5154652522827,1.4118420783282006,11.7491110590914,0.0,1.6545,5.150499778381806,0.0,0.0,9.467009378641833,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.235736876661097,7.477450779341811,0.0,0.17316104497354495,-0.028025372553048888,-0.1501906441588981,-0.0499610260770975,-0.2522171331629529,-0.09830726410934745,-0.8927437175873439,0.0,0.3125,20,1,4,0,2,2,1,1,2,4,1,4,1,0,1,1,4,1.6480999999999995,4.004235000000002,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3417586,C[C@@H]1CCCN1CCCOc1ccc(C2=NNC(=O)[C@H]3C[C@@H]23)cc1,5.0,0.5147626390799802,-0.18928466922568246,0.5147626390799802,0.2925259648614422,0.03402093063207202,13.642833333333316,12.592833333333337,13.633111543333362,128,0,0.2433838718531894,-0.49354967745203715,0.49354967745203715,0.2433838718531894,0.06597222222222222,0.10243055555555557,0.13715277777777776,1.8801618470886623,68.41018684104678,1.6119881772612235,1.5274223903094832,0.4857557236428167,0.8917684256984729,0.7865675008310685,0.2679336010185704,0.18415131019780218,0.18415131019780218,0.12132925041448579,0.12132925041448579,0.07360863389109097,0.07360863389109097,-0.07833333333333332,3.2692428076670237,0.16365888348410748,0.2730506040526902,3.1765267352538586,7.407945748831495,0.401532195193772,0.23956299305349604,0.05882675326367503,0.2461324887229794,0.0,0.0,0.19977238266965924,5.418816146392429,5.101407525739723,0.0,0.0,2.857232405386638,2.040680063935656,0.8539675659461795,1.8267269818452236,0.48411936383842535,0.0,0.4299469115517878,16.889322896465877,1.5983951746234517,19.55270461154818,29.733126322350174,0.0,5.749511833283905,0.4231532958413533,0.0,5.749511833283905,0.0,1.7537238142862712,0.19977238266965924,11.787915370726157,2.9502186900998133,29.271082356392903,1.4118420783282006,0.0,0.0,2.2470833333333333,5.070979866326831,0.19977238266965924,0.0,5.418816146392429,0.0,0.0,0.0,0.0,0.0,5.101407525739723,1.626954599175564,8.707794950756105,0.0,0.4753635142192885,0.1410570303156428,-0.10123272455049183,-0.3780618394717621,-0.40597845220399903,-0.6566338910460291,-0.716336365796535,0.0,0.5789473684210527,24,1,5,1,2,3,1,0,1,4,1,5,7,1,1,2,4,2.4098000000000006,3.8791541666666682,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL105762,C[C@@H]1CC[C@@H](C)N1CCCOc1ccc(-c2ccc(C#N)cc2)cc1,6.2500010234416505,0.368597793151854,-0.18905979908521472,0.368597793151854,0.7238983657384706,0.028294559463783925,13.378519999999982,12.330200000000001,13.368180538080031,130,0,0.11883005302191901,-0.49354968804854177,0.49354968804854177,0.11883005302191901,0.048,0.07200000000000001,0.0944,2.3572814106732887,69.0760870804641,1.6167906824735294,1.532107019258551,0.4921070192585512,0.8978127057336931,0.7821070192585512,0.2621070192585512,0.17157915521355074,0.17157915521355074,0.10828846837641272,0.10828846837641272,0.06318182780979098,0.06318182780979098,-0.09239999999999998,3.0727935301299483,0.16617627085926195,0.3272189921887453,4.405415696671881,7.4770911560615945,0.18947451815200198,0.2299804733313562,0.0,0.0,0.0,0.0,0.19599638923401913,0.0,5.261891554738487,0.0,0.9667869932261272,2.724765470105067,1.618591260789551,1.27596974436431,1.6150634165690314,0.0,5.261891554738487,0.19599638923401913,0.0,1.7943337550111513,13.055844927232233,53.90280115300335,0.0,22.94563612947017,0.18947451815200198,0.0,5.749511833283905,0.0,1.19966158379128,0.0,11.33111286753076,2.96102931562809,48.33934966130636,0.0,11.126902983393991,0.0,1.4504,5.343732580121712,0.21047566218953948,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,1.6150634165690314,8.74447913005783,0.0,-0.04279090313235892,0.368597793151854,-0.09950014327559976,-0.060173221634332766,-0.6624298327754918,-0.5309013898389217,-0.7072814325529777,0.0,0.4090909090909091,25,0,3,0,1,1,2,0,2,3,0,3,8,0,1,1,3,4.866980000000004,4.062760000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL303313,CN1CCN([C@H]2Cc3ccccc3Sc3ccc(Cl)cc32)CC1,7.823908740944319,0.41921655054936635,-0.1821978006178318,0.41921655054936635,0.18765051545309408,0.03302793583210039,14.996130434782595,14.075782608695654,14.961365102260896,120,0,0.06423546904473859,-0.3038253073576784,0.3038253073576784,0.06423546904473859,0.05293005671077505,0.0888468809073724,0.12476370510396975,2.346647563439724,67.86227578122744,1.490870023906144,1.3991582588901308,0.5544811078877907,0.8475956439653581,0.7256031005855804,0.3210144507567524,0.18656232113410076,0.24737037327187836,0.12416639012585032,0.17675782328516645,0.0825718259948884,0.12621864359336446,-0.04347826086956523,2.9174532493190606,0.19935070272047342,0.2818035426731079,3.1574344023323615,7.673124083280714,0.21303955351523818,0.0,0.0,0.0,0.0,0.0,0.21303955351523818,0.0,0.0,0.0,1.8039165635918921,2.1150143311155998,2.8103822913305736,0.47678558475485916,1.251562159981505,1.0157749930271145,0.0,0.42607910703047636,0.0,0.9644254052484598,32.96326563754602,58.446467250778376,0.0,0.0,0.0,0.0,0.0,23.36282483962363,1.8592645695324774,0.27708369136214694,0.0,1.9969880491877514,52.08789790467861,5.022633313741326,0.0,0.0,0.2817391304347826,5.364840724814781,0.1787945942830722,0.0,11.761884949391115,0.0,0.0,0.0,0.0,0.0,0.0,1.577156256578108,7.7657532013991695,0.2739468399182778,-0.11990298542186138,-0.039832670588364164,-0.09962273003001519,0.0,-0.47807945711376043,-0.16661957103694952,-0.8880580860636955,0.0,0.3684210526315789,23,0,2,0,2,2,2,0,2,3,0,4,2,0,1,1,4,4.335800000000004,4.240521739130437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3926412,CCc1cc(N2CCN(CCc3ccc(OCCCN4CCCCCC4)cc3)CC2)c2nc(CCC(=O)O)ccc2c1,7.799970733446231,0.2954573779251645,-0.11968230225464595,0.2954573779251645,0.8872296499687957,0.006162005926503479,13.637952380952434,12.48595238095239,13.627920033238127,226,0,0.30323709841859964,-0.49355009191814947,0.49355009191814947,0.30323709841859964,0.023242630385487528,0.0419501133786848,0.060090702947845805,1.8096895471914818,79.18777402231606,1.7045470347181555,1.6312761726997957,0.4884190298426529,0.9330295405907854,0.8317718963486036,0.2625278894327975,0.1697377938578303,0.1697377938578303,0.10600732787562325,0.10600732787562325,0.06631546842759374,0.06631546842759374,-0.07523809523809523,1.075353806578096,0.160464118690239,0.36549758506388047,8.679051141585745,7.584548718515632,0.46774977634781467,0.136893138887712,0.0,0.0,1.4311996572326342,5.969305287951849,0.3494863199016549,0.0,0.0,0.0,0.8982142391177219,2.052317628499744,2.4206968469084638,1.0315861172125858,1.8825204873566537,0.5371337260646779,1.4311996572326342,0.3519951900630515,0.0,1.5287670530776212,63.43377244829432,65.1601806395488,0.0,5.749511833283905,0.22944696868215542,5.687386274683562,5.749511833283905,0.0,2.009423194741692,0.5693645687633323,0.0,3.0079982057979655,48.33934966130636,0.0,12.33412458931369,0.0,1.6461904761904762,5.497883740638206,0.24470408116077863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,1.5502542982464813,9.912502159161722,0.0,0.29829914182573647,0.04851007525613654,-0.22510605778585677,-0.1039936816208688,-0.36100412939002835,-0.9640989625423679,-1.1428069576028892,0.0,0.5428571428571428,42,1,7,0,2,2,2,1,3,7,1,7,14,0,2,2,5,5.824000000000007,4.068971428571418,1,0,0,0,0,1,0,0,1,1,1,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL393436,CCOc1cc(CN2CCC(Nc3nc4ccccc4o3)CC2)ccc1F,6.083019952679617,0.5595551558380387,-0.16231998557882235,0.5595551558380387,0.5871326530422301,0.02577769215549332,13.68296296296295,12.786962962962967,13.673527971407431,142,0,0.2954046647222661,-0.4907975874773762,0.4907975874773762,0.2954046647222661,0.05486968449931413,0.08641975308641976,0.11796982167352538,2.0002673398777655,68.57461179379162,1.473391643755705,1.3717074755717344,0.4828185866828455,0.8376909730343194,0.7043681480437834,0.261878755617859,0.17231969322782612,0.17231969322782612,0.10839980017345928,0.10839980017345928,0.068584566681911,0.068584566681911,-0.09629629629629627,3.427740297801983,0.18729730957319574,0.2949074074074075,4.218735827664401,7.091258147647165,0.5356973053385842,0.2043222488006023,0.6874664775666757,0.0,6.014658705012475,0.0,0.18147813817964734,4.39041504767482,4.9839785209472085,0.0,0.6713798564070328,1.82706919415943,1.6047530648707544,0.7506137335043883,1.7216191781026482,0.633865909787814,0.0,0.3660699352517661,0.0,1.18935163231926,24.862517964836556,53.67760328638595,0.0,5.749511833283905,0.3720991224847565,10.405073752687294,5.749511833283905,0.0,1.313129086359093,0.2406244327524424,5.817220841045895,2.099579266798761,46.71408189069641,1.4118420783282006,11.099720859258504,0.0,1.8714814814814815,5.12653394267585,0.0,0.162607964728697,0.0,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.3835718447146892,8.223090901206108,0.0,0.1024107358405198,-0.021745653816378892,-0.11912462770772932,-0.14349833474132853,-0.52490309738716,-0.32261044509376047,-0.7615207128681726,0.0,0.38095238095238093,27,1,5,0,1,1,2,1,3,5,1,6,7,0,1,1,4,4.4421000000000035,3.833322222222224,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL435949,COc1ccccc1N1CCN(Cc2c[nH]c3ncccc23)CC1,5.0,0.36902691606477983,-0.1719999429169817,0.36902691606477983,0.09867093189839915,0.03341922085735704,13.433833333333318,12.509833333333335,13.424140055166694,124,0,0.16747672292240906,-0.49458625454928706,0.49458625454928706,0.16747672292240906,0.05555555555555555,0.0920138888888889,0.12847222222222224,2.1146241356644984,72.2896914644359,1.4854924112252963,1.4040459446859874,0.4873792780193207,0.8544375621775157,0.7225637443109839,0.26642984449848556,0.17835211651969582,0.17835211651969582,0.12014237397408507,0.12014237397408507,0.07688165340068791,0.07688165340068791,-0.10541666666666666,3.1442027452369805,0.1735845800488137,0.27211716467164215,2.827181582289739,7.1826421665812985,0.6089073314533241,0.47486204391881803,0.05882675326367503,0.0,0.0,0.0,0.20416290545210325,4.9839785209472085,0.0,0.0,0.5035348923052746,1.2388802634312572,2.435036016445641,1.3869465448383103,1.4556097796542862,0.6966994879131702,0.0,0.6192038134177892,0.0,0.2707024868464977,37.92530092699684,54.16375415930628,0.0,5.749511833283905,0.401532195193772,5.687386274683562,5.749511833283905,0.0,1.9952617799238876,0.2707024868464977,0.0,1.4312242154696506,48.60030266760929,1.4118420783282006,11.033401435232523,0.0,1.8495833333333334,5.248171835194565,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.4556097796542862,7.805639391474493,0.0,0.11045882466702028,-0.03446410546924614,-0.14158024270907335,-0.05819340510633592,-0.2849631606879857,-0.08577376626947279,-0.8456964948402201,-0.14598259661473145,0.3157894736842105,24,1,5,0,1,1,1,2,3,4,1,5,5,0,1,1,4,2.893700000000001,4.024070833333335,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL360666,O=C(OCc1ccccc1)N(O)CCC#Cc1ccc(OCCCCN2CCN(C(c3ccc(F)cc3)c3ccc(F)cc3)CC2)cc1,7.749579997691106,0.31441713515163355,-0.10758708339267609,0.31441713515163355,0.957744033171164,0.00147400490349844,13.620208333333371,12.759208333333339,13.610552359000025,250,0,0.4336004997818015,-0.4935994359007106,0.4935994359007106,0.4336004997818015,0.01953125,0.03298611111111111,0.04600694444444445,1.6219113248855241,71.82923297398172,1.4521112800675473,1.3381367269661204,0.48397006029945383,0.8264135453728286,0.6828804595305757,0.25770862014591195,0.16387228326736053,0.16387228326736053,0.0996557021503242,0.0996557021503242,0.059568222465867265,0.059568222465867265,-0.09895833333333331,0.6594545631738131,0.20652321294342035,0.3743797258979206,10.640381036730389,7.05225268925356,0.29945074246772035,0.498811224131083,0.0,0.02981665952567988,0.0,6.093240070938415,0.21061340733113074,13.575367279421462,5.063217724965349,0.0,1.3796382709725197,1.7556752838202516,1.2469990006044525,1.0827488071597333,1.7608368523355586,0.12694250147788363,0.0,0.309646608055548,0.0,0.6603260919844599,45.54014334881195,136.60936567915581,0.0,17.590380470995193,0.09868464487083435,13.575367279421462,5.749511833283905,0.0,1.4938740505720933,0.2353301707649237,23.47531031980308,2.1296003205403022,102.72111803027605,1.4311996572326342,0.0,0.0,1.3641666666666667,5.011478136127304,0.12844366125504256,0.18293396031978415,0.0,0.0,0.0,5.920434318855644,5.920434318855644,0.0,9.946396774843846,1.2422426312848192,8.077731220150435,0.0,0.22208431118575067,0.06019211942454077,-0.13515251027839353,-0.056924480288813306,-0.6564386880856611,-0.34468815553403953,-0.7883315943515975,0.0,0.3076923076923077,48,1,7,0,1,1,4,0,4,6,1,9,14,0,1,1,5,7.300600000000009,3.759197916666656,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL255621,Cc1ncoc1-c1nnc(SCCCN2CCc3cc4ncoc4cc3CC2)n1C,5.3000002024454185,0.29401187032158205,-0.15038036975494895,0.29401187032158205,0.07569760981193308,0.011445243829219829,14.150999999999991,13.344600000000007,14.138938166933356,156,0,0.20172690393297518,-0.4434702879824985,0.4434702879824985,0.20172690393297518,0.04,0.0688888888888889,0.09777777777777777,1.7040219822972946,69.22347329693497,1.3844217078986867,1.2802675481463779,0.5074841008439688,0.8002581645983767,0.6619342148130446,0.2891507675106355,0.17857675778242194,0.20435664652022106,0.11851011403910948,0.1402075198722699,0.07441250482106841,0.0893247315610592,-0.08833333333333333,3.6826892852739976,0.206615103253311,0.27444840387577213,3.745265899162083,7.065432518898352,0.6100437084249509,0.2752739276652234,0.974636210610727,0.19414681659999758,0.0,0.0,0.0,9.967957041894417,0.0,10.197363616602075,0.3920628316463705,1.8559755634773447,1.769655809248958,0.28118150357296334,1.3910835740730663,0.7620535269549874,0.0,0.9877443345712774,6.975826900282246,1.0375701101034842,25.19553593809799,41.645050669553456,0.0,11.58465191687437,0.0,0.0,0.0,11.761884949391115,1.8275955325078772,0.6573892234313667,6.851892117295679,1.8697320409219056,38.814958047238406,0.0,22.684372776132875,0.0,2.8669999999999995,4.809656142247089,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.3910835740730663,7.064333501174501,-0.017497208622497692,0.2019992995283631,0.19586274990189248,-0.30490042649165516,-0.06307441851452596,-0.07896718286851186,-0.47292840837106287,-0.6553834612920617,0.0,0.42857142857142855,30,0,8,0,1,1,1,3,4,9,0,9,8,0,0,0,5,3.502720000000002,3.8145000000000016,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL63125,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)[C@@H](C)NC(=O)OC(C)(C)C)CC2)cc1,5.169999984192581,0.40905054833066473,-0.14815106174162826,0.40905054833066473,1.455225961446184,0.00995326180587615,13.990199999999986,12.751800000000008,13.980579185028605,196,0,0.4077983428601289,-0.49354966269764505,0.49354966269764505,0.4077983428601289,0.03428571428571429,0.05551020408163265,0.07428571428571429,2.9465561108752913,69.21953882163147,1.8097833369328173,1.7109394925376913,0.48236806396626264,0.955765902639708,0.8547124855463804,0.24193495424638156,0.15448366839961092,0.15448366839961092,0.08281024595494119,0.08281024595494119,0.04613642735657055,0.04613642735657055,-0.07457142857142857,3.1864470443620156,0.15626168929044934,0.4020354099800283,10.678291473362309,7.724066594026022,0.5623842569068273,0.4962415746462069,0.20557391499123256,0.1687765636957573,0.0,6.093240070938415,0.4139709742569749,4.794537184071822,0.0,0.0,0.5599354834272696,1.8378026600712758,2.483262573025226,0.6182094103082487,2.3668868256369433,0.5081047070472817,0.0,0.4317037947139809,0.0,2.2212293820702462,39.04328366449601,29.733126322350174,0.0,5.749511833283905,0.28704789448824075,4.794537184071822,5.749511833283905,0.0,2.235591747205291,0.2723257182249106,0.0,3.830112375086948,24.16967483065318,1.4118420783282006,0.0,0.0,2.5194285714285716,5.290349935835227,0.410960330063299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,1.6852486124993569,10.175383674184202,0.0,1.0941252691204006,-0.048015221067955235,-0.1905295255235483,-0.2241604349649264,-0.36634846007439464,-0.7490784508164795,-1.5056625651430147,0.0,0.6666666666666666,35,1,8,0,1,1,1,0,1,6,1,8,14,0,1,1,2,4.275900000000003,3.9108057142857127,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,2,1,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1113,Clc1ccc2c(c1)C(N1CCNCC1)=Nc1ccccc1O2,7.958607314841775,0.3855290361093933,-0.16556895485466916,0.3855290361093933,0.13785068657092436,0.03678863075615236,14.263090909090897,13.530000000000001,14.231735900545472,112,0,0.15264513990783043,-0.45432313146931597,0.45432313146931597,0.15264513990783043,0.05578512396694215,0.09297520661157024,0.1322314049586777,2.2546883003630063,63.608803749881424,1.3215667091007948,1.2103569795442257,0.5174446589087008,0.7795687631640003,0.6299859866690132,0.28592920837397995,0.18194258113451395,0.1991227844531152,0.12157922190546944,0.13016932356477,0.08138064372652692,0.08782321997100238,-0.09272727272727271,2.993786478475278,0.21487041653075156,0.2558903514597384,2.4456707425611706,7.111861819157681,0.6793902744517684,0.8492890896387698,0.2613414469674502,0.0,0.0,0.0,0.0,4.992404732635669,0.0,0.0,1.0766262411617775,1.373276979014385,1.6587775579857271,0.9382634367986097,1.2140946988491612,1.051088452303334,0.0,0.46407832200631155,4.992404732635669,0.0,25.98743873726378,52.88301575908138,0.0,11.49902366656781,0.4566671048676557,5.687386274683562,11.49902366656781,11.600939890232516,1.6692258297214329,0.0,0.0,1.1874922651931952,47.28933568627873,6.434475392069527,0.0,0.0,1.6754545454545455,4.872831708029191,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.992404732635669,1.7414101484051854,6.233111703886784,0.2748665378749704,0.1745086136306374,-0.05599145182691004,-0.07106395588538444,-0.12053326872275281,-0.265549187817679,0.0,-0.6567227285134032,0.0,0.23529411764705882,22,1,4,0,2,2,2,0,2,4,1,5,0,0,1,1,4,3.4292000000000025,4.027622727272729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1910382,COc1ccc(CN(CCN(C)CCN2CCN(C(=O)c3cc4cc(Cl)ccc4[nH]3)CC2)c2ccccn2)cc1,7.0,0.35933835952616483,-0.13198627816301253,0.35933835952616483,0.19468334563726675,0.007215847972911124,14.028250000000046,13.09585000000001,14.006666302600028,210,0,0.2698893660270169,-0.49676820001250693,0.49676820001250693,0.2698893660270169,0.028749999999999998,0.05,0.06999999999999999,1.8190970290606636,74.67368425164007,1.5086992573028435,1.4094435656734174,0.5033417893238789,0.8520161361759715,0.7206569257925006,0.26892569773023245,0.17198557462526695,0.18143468645049762,0.10808353794483279,0.11280809385744814,0.06602988094743069,0.06957329788189218,-0.08974999999999997,3.500946888899515,0.19046641443970488,0.3293996104397613,7.1273350608433494,7.317229301506124,0.6103398854145183,0.43153256514918487,0.03529605195820502,0.0,5.907179729351506,0.0,0.24236117287305747,4.9839785209472085,0.0,0.0,0.7432049003305601,1.52196570133214,2.4597512961423362,0.9641349812699413,1.5072637559582012,0.8557226832375026,0.0,0.6165177745931973,0.0,0.16242149210789864,70.88856656454287,88.91951379539779,0.0,5.749511833283905,0.2409193171162632,5.817862777835028,5.749511833283905,11.600939890232516,2.413913688669295,0.16242149210789864,0.0,1.6349806173186316,72.639500995111,6.434475392069527,10.902924932081056,0.0,1.6985,5.234553712733991,0.2569392852188176,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.4219263941501952,8.044138155556976,0.14825830397109369,0.32168097220072306,-0.04183406192180089,-0.1069035257350591,-0.14064215781528575,-0.37909160116512236,-0.03678410570143587,-1.2283151580218625,-0.08814571025711646,0.3548387096774194,40,1,8,0,1,1,2,2,4,6,1,9,13,0,1,1,5,4.621300000000004,4.035754999999989,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,5,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1669411,C[C@H](C1=C(CCN(C)CCC(F)(F)F)Cc2ccccc21)c1cnccn1,7.040958607678906,0.5122723995070425,-0.23407252649778731,0.5122723995070425,1.0869778569186457,0.025619635226163662,13.905111111111099,13.009111111111114,13.89600860844447,144,0,0.38983961059774075,-0.30571243311020935,0.38983961059774075,0.30571243311020935,0.05075445816186557,0.0823045267489712,0.1111111111111111,2.779090658095431,66.50225895276195,1.4970284096977122,1.3694642298343538,0.480575340945465,0.8265622020842471,0.6993405293986553,0.25489608495421084,0.1746074020571299,0.1746074020571299,0.10969853590753281,0.10969853590753281,0.07226114867864232,0.07226114867864232,-0.08185185185185186,3.1704684112109893,0.2014397719161227,0.30414436115306026,4.945780540702569,7.082313120115287,0.18147813817964734,0.0,0.0,0.0,0.0,6.176298517443475,0.3691835941442377,0.0,13.171245143024459,0.0,1.3553582028895603,1.348951267274232,2.2484910422715942,0.8023023255321993,1.7062759441151767,0.20641127889145436,0.0,0.5506617323238849,0.0,1.40892307496631,19.969546268914137,65.08229597140918,0.0,0.0,0.0,13.171245143024459,0.0,0.0,1.5190263540408335,0.23603425560479183,0.0,2.785582812283158,48.26146499316672,0.0,5.573104530069267,0.0,1.074814814814815,4.946880723160498,0.5385927295998029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.1676832145153724,8.8444794907885,0.0,0.19056375418622284,0.0,-0.30604218475165873,-0.15069905045351484,-0.19884186766000933,-0.8958445279733257,-0.696578577099177,0.0,0.42857142857142855,27,0,3,1,0,1,1,1,2,3,0,6,9,0,0,0,3,4.864300000000005,3.7147777777777797,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL257901,Cc1ccc2c(-c3nnc(SCCN4CCc5cc6nc(C)oc6c(C)c5CC4)n3C)cccc2n1,5.599999383023619,0.2521444871795906,-0.12414531927887304,0.2521444871795906,0.03456157719080588,0.008470306300279907,13.851555555555548,13.011555555555564,13.83944946055558,184,0,0.19185833094443724,-0.44072143016592386,0.44072143016592386,0.19185833094443724,0.0308641975308642,0.05787037037037038,0.08256172839506173,1.6130486295329052,78.69098352275552,1.4108235019697721,1.3194382820535409,0.5087854093015333,0.8149990508683089,0.6861049487202076,0.2921187426348666,0.19159171366522687,0.21307495428005938,0.13123552941068675,0.14901739594669725,0.08786523427373924,0.1014103136851079,-0.0897222222222222,3.7497621468295352,0.20004762466047482,0.25925785176451444,4.180083909929147,7.129029887500347,0.3856711198804217,0.1532416866004517,0.623738473430244,0.0,0.0,0.0,0.13844384780408914,4.9839785209472085,0.0,10.197363616602075,0.8302539186772501,1.7018679065369717,2.460140666799205,0.38170144596215505,1.264997433948888,0.9379036316869632,0.0,0.8231202788093979,6.975826900282246,1.0682767398990696,25.19553593809799,64.52951863794513,0.0,11.387855989696924,0.0,0.0,0.0,11.761884949391115,1.5229962770898977,0.5478243528594723,20.555676351887037,1.9277156410297782,45.82809966485382,0.0,33.390501781036484,0.0,2.024166666666667,5.1447539048325,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.264997433948888,7.242700169933973,-0.016637417989088115,0.18014673229535708,0.14674677404448863,-0.38013988616925243,-0.06331576182331626,-0.18217092051575445,-0.23359185108998354,-0.7539230238716086,0.0,0.35714285714285715,36,0,7,0,1,1,2,3,5,8,0,8,9,0,0,0,6,5.289660000000005,4.014777777777773,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1632414,CN1CCC(/C(=N/O)c2nc3cc(Cl)ccc3[nH]2)CC1,6.0,0.44319169571120637,-0.20045557847624657,0.44319169571120637,0.1306093710632401,0.02540360738766806,14.638499999999985,13.7817,14.605454442200022,106,0,0.32957523717879067,-0.4105252831532182,0.4105252831532182,0.32957523717879067,0.09,0.1325,0.16999999999999998,2.50595845492144,63.680976620338605,1.4447411517727953,1.328753357273646,0.5165498045745689,0.823665176845276,0.6757936345151662,0.2769187638674364,0.17786601562734922,0.19676423927781062,0.11519060999598649,0.12463972182121716,0.07358337164215951,0.08042081319159614,-0.07949999999999999,3.077501814454555,0.1993636235831718,0.27101659746983664,2.50900189170627,7.291327986413876,0.7543223411061764,0.2855842501385351,0.3618123288164064,0.0,0.0,1.4311996572326342,0.0,4.9839785209472085,0.0,0.0,0.8378326308491527,2.5421326097281387,1.368284683657352,0.7572838551871591,1.4306976949578964,1.417301316411787,0.0,0.7430445761013469,11.049670412113619,0.637292490132938,19.969546268914137,28.974293934731136,0.0,0.0,0.0,0.0,0.0,11.600939890232516,2.2875828307377786,0.0,5.893957685363079,1.9565816321606,23.282968849740424,7.865675049302161,11.033401435232523,0.0,3.2254999999999994,4.461432193026042,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,15.349225068741546,1.7502679984173326,6.870183396392507,0.29295218710384996,0.16339447545483346,0.31922179369922055,-0.13216681363903587,-0.25017989024313425,-0.10800648613184691,-0.400911156952493,-0.5822652834616784,0.0,0.42857142857142855,20,2,5,0,1,1,1,1,2,4,2,6,4,0,1,1,3,2.7364000000000006,3.9824100000000016,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,3,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL240395,O=C(c1ccc(C(=O)N2CCN(c3ccc(OCCCN4CCCCC4)cc3)C(=O)C2)cc1)N1CCC1,5.599999383023619,0.38264271647206183,-0.12792718028904976,0.38264271647206183,0.41226217970028634,0.013951677860051893,13.638675675675668,12.657918918918929,13.62901771978381,196,0,0.2538827709482434,-0.4935477593530564,0.4935477593530564,0.2538827709482434,0.021913805697589484,0.039444850255661065,0.0577063550036523,1.6081821941305396,71.07754611336657,1.5588314025889038,1.4573472309150077,0.48437425794203476,0.8638035365809823,0.7487541161934974,0.2622676297070109,0.17319947997132645,0.17319947997132645,0.11143724506698592,0.11143724506698592,0.06600067486199626,0.06600067486199626,-0.09162162162162162,3.1972662648506764,0.17827676735968434,0.31817163729958203,6.12837080559699,7.267335243951587,0.6577432939784313,0.33098301398918517,0.0,0.15965350619868934,11.814359458703011,0.0,0.3887462581679856,0.0,0.0,0.0,0.1722412135494427,2.346615368520426,2.07334483251518,0.7700303281524271,1.8504806088687429,0.6326736611550832,0.0,0.3972899781770658,0.0,0.8612060677472134,63.43377244829432,59.46625264470035,0.0,5.749511833283905,0.2604533158013656,5.687386274683562,5.749511833283905,0.0,2.458246786433779,0.1295820860559952,0.0,2.7548083751435772,48.33934966130636,0.0,0.0,0.0,1.983783783783784,5.368184218600407,0.3887462581679856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4617343507007572,8.194708651785051,0.0,1.0416225442724296,0.0,-0.13423705313915665,-0.23585835891683424,-0.3743987858366997,-0.5636474052944422,-1.0362977009784622,0.0,0.4827586206896552,37,0,8,0,3,3,2,0,2,5,0,8,8,0,3,3,5,3.2763000000000027,3.8395675675675642,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,3,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL293033,CC(C)(C)OC[C@@H](N)C(=O)N1CCN(CCCOc2ccc(C(=O)C3CC3)cc2)CC1,4.790000026071144,0.4604100662942375,-0.16468511080343354,0.4604100662942375,1.362225023246745,0.014584614094963597,13.921838709677404,12.718741935483878,13.912206666580678,172,0,0.24146339065478498,-0.4935496626856032,0.4935496626856032,0.24146339065478498,0.0437044745057232,0.06659729448491154,0.08636836628511967,2.288476064657513,67.8018398725013,1.7666150491438382,1.6766010951082364,0.48305270801146216,0.9456057535221246,0.8446586982787535,0.25129007921424007,0.1695574047922249,0.1695574047922249,0.09457079222218416,0.09457079222218416,0.05091720867669641,0.05091720867669641,-0.0632258064516129,3.4305709058503506,0.15909712324142794,0.34098483880201813,7.593209231176208,7.661239139960769,0.6481726649734468,0.47068027284806296,0.18655628859241738,0.1905541848177905,0.0,0.0,0.46738658383852,0.0,0.0,0.0,0.0,2.059487931823495,2.390270833367247,1.1786736299041656,2.253646254785738,0.37711047341020787,0.0,0.31612320844196634,11.613674661089352,1.6546256237164034,45.602268907412295,29.733126322350174,0.0,5.749511833283905,0.33730902998472007,0.0,5.749511833283905,0.0,2.539079236263324,0.3074645205765119,5.893957685363079,3.1615802966968265,24.16967483065318,2.8236841566564013,0.0,0.0,2.7451612903225806,5.3381361353794095,0.3093249796175369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.791519244400458,10.002407688815309,0.0,0.7948392703399173,0.0,-0.25216172868408,-0.3325135948733952,-0.37422413712753777,-0.3678696073300655,-1.5564993965164924,0.0,0.6666666666666666,31,2,7,1,1,2,1,0,1,6,1,7,11,1,1,2,3,2.3348000000000004,3.8809322580645182,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL213912,CN1CCN(C2=Nc3ccc(Cl)cc3Oc3ccccc32)CC1,8.100011269054365,0.37468833413666064,-0.16838658000774123,0.37468833413666064,0.24865315570672708,0.032043168602258774,14.252826086956508,13.463956521739133,14.222340864173935,118,0,0.15413113279734045,-0.4542688267788124,0.4542688267788124,0.15413113279734045,0.05103969754253308,0.08695652173913043,0.1228733459357278,2.2464486601440807,64.87389049289614,1.3728029391398908,1.2664284152162157,0.5166861954778877,0.7983407676092693,0.6580906482160135,0.2832195383468494,0.1837540688134472,0.20018730677037014,0.12115418612153554,0.12937080509999702,0.07982779570285996,0.08561331551776559,-0.08869565217391302,2.9872800900358967,0.20621182088442622,0.25525045153014825,2.799077045717136,7.208163390893832,0.6320296702391741,0.7509790388575972,0.2499787753601698,0.0,0.0,0.0,0.0,4.992404732635669,0.0,0.0,1.0298164045895264,1.3541522491711055,2.028165245733042,0.8974693743291049,1.2787181289071305,1.005388954377102,0.0,0.42607910703047636,4.992404732635669,0.0,32.96326563754602,52.88301575908139,0.0,11.49902366656781,0.20595056320869778,5.687386274683562,11.49902366656781,11.600939890232516,2.1129871689132282,0.0,0.0,1.3146567609896065,47.28933568627873,5.022633313741326,0.0,0.0,1.2204347826086956,4.946444384977676,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.992404732635669,1.783106819786806,6.703012798082287,0.25975042362364176,0.13564632563909096,-0.02719790375914898,-0.0751299764068268,-0.12439468779326009,-0.2746026944322628,0.0,-0.8350069902675313,0.0,0.2777777777777778,23,0,4,0,2,2,2,0,2,4,0,5,1,0,1,1,4,3.7714000000000025,4.053695652173915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2205811,COc1cccc(CCN2C3C4C5CC6C7C5C3C7C2(O)C64)c1,5.05266432405126,0.4174087447646798,-0.18273159958427834,0.4174087447646798,0.26111618953136784,0.04014093574352867,13.452565217391287,12.444565217391306,13.44229908591307,120,0,0.21257904056520696,-0.49675795557648167,0.49675795557648167,0.21257904056520696,0.06427221172022683,0.10775047258979206,0.14744801512287334,1.5834628370635597,74.80960030619221,1.541550671595673,1.4897265294098994,0.4897265294098993,0.8820244986075962,0.8018017878004172,0.3057909925628579,0.26069672378249015,0.26069672378249015,0.2255072901171213,0.2255072901171213,0.19586975840499643,0.19586975840499643,-0.04608695652173913,3.3102758479400216,0.16119228831355076,0.15113714679711512,1.017058486502184,7.329313487555096,0.4280726584742287,0.49889119248931124,0.0,0.06222607205359279,0.0,0.0,0.21303955351523818,0.0,0.0,0.0,0.5254277137098518,2.8590384705156877,1.9506106898236988,0.7231853196553968,1.7392330165500918,0.0,1.4311996572326342,0.21303955351523818,47.15166148290462,1.0647272984773328,13.534812143198533,29.733126322350174,0.0,5.749511833283905,0.20595056320869778,0.0,5.749511833283905,0.0,1.5964177297699458,0.27708369136214694,47.15166148290462,1.830133244729184,24.16967483065318,0.0,0.0,0.0,1.4217391304347828,5.245993028118082,0.5363837828492165,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.0591247425457697,8.953449643611345,0.0,-0.011352877805711646,0.20917453630108124,-0.22751809996677147,-1.2855900448257052,-0.3895922489463196,-0.3312977508264296,-0.18273159958427834,-0.14758503621808128,0.7,23,1,3,5,2,7,1,0,1,3,1,3,6,5,2,7,8,1.9981999999999998,3.681686956521741,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL403815,Cc1ccc2c(-c3nnc(SCCCN4CCc5c(Cl)cc6oc(C)nc6c5CC4)n3C)cccc2n1,5.800000874803202,0.24399927541711747,-0.12533814462137877,0.24399927541711747,0.03497537673450335,0.005277569527561,14.40813513513516,13.61808108108109,14.383275898054077,190,0,0.19185410007143003,-0.44094642183800864,0.44094642183800864,0.19185410007143003,0.03140978816654492,0.056245434623813005,0.07962016070124178,1.569133217498903,76.88406623873193,1.3726931370516702,1.266966016944235,0.5256802203752129,0.7940173234014576,0.6591556862278942,0.2995465255234875,0.1881428088771022,0.21926067739448596,0.12823988077241652,0.15349381400894985,0.08621990469053135,0.10446111756066276,-0.07945945945945945,3.7675964698424087,0.21720245440708,0.27244202410799645,4.736338428768973,7.176847883154769,0.37524757609986975,0.1491000193950341,0.6068806768510483,0.0,0.0,0.0,0.1347021221877624,4.9839785209472085,0.0,10.197363616602075,1.121353539530095,1.504845051468117,2.4800675077213463,0.37138519066588055,1.1937607855672905,1.226093800836843,0.0,0.8008737847875222,6.975826900282246,1.026459335686492,25.19553593809799,63.98870045998945,0.0,11.387855989696924,0.0,0.0,0.0,23.36282483962363,1.4818342155469275,0.5330182892686758,13.703784234591359,1.8604453494738966,45.82809966485382,5.022633313741326,33.390501781036484,0.0,1.9694594594594597,4.978144734595893,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.5072997015195215,6.826754290994059,0.15478696335397338,0.17569420977227593,0.11047625230158134,-0.3106188733318783,-0.06030518434316546,-0.1679592203467321,-0.34033650427331813,-0.6332366788715416,0.0,0.35714285714285715,37,0,7,0,1,1,2,3,5,8,0,9,9,0,0,0,6,6.024740000000007,4.038432432432425,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL418658,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)c3cccnc3)CC2)cc1,6.139997578098903,0.44124070835348367,-0.155099649910834,0.44124070835348367,0.8728141743384872,0.012989647211853885,13.66312903225805,12.590096774193555,13.653296513419384,166,0,0.25500574075162474,-0.493549662697645,0.493549662697645,0.25500574075162474,0.036420395421436005,0.06243496357960458,0.0874089490114464,2.224987842697043,70.74079612912193,1.6475634709747577,1.5505285696094022,0.486012440577144,0.9005543578962366,0.7856564826750826,0.25339841815895353,0.15670234143077838,0.15670234143077838,0.0946181445501688,0.0946181445501688,0.05352496571831071,0.05352496571831071,-0.08806451612903224,3.0907266105302473,0.1694098748479078,0.39366045230957963,7.173490000073737,7.455864097744184,0.31086363498872666,0.18546812365431953,0.18655628859241738,0.0,5.907179729351506,0.0,0.6281600845142363,0.0,0.0,0.0,0.6321852232243367,1.5806568402786623,2.671318638821605,1.0100985974514953,1.921321602437452,0.37711047341020787,0.0,0.47689670911768267,0.0,1.2489198910949217,39.04328366449601,59.727205651003274,0.0,5.749511833283905,0.1528020307677435,0.0,5.749511833283905,0.0,2.11346794589873,0.0,0.0,3.3763718170676564,48.60030266760929,0.0,0.0,0.0,2.0238709677419355,5.313766513230428,0.3093249796175369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.6119966228199145,8.823887595186083,0.0,0.9139969574027237,0.0,-0.10452253829396102,-0.21015447519926625,-0.31175344017667517,-0.8016010600478368,-1.0141541141398849,0.0,0.48,31,0,6,0,1,1,1,1,2,5,0,6,12,0,1,1,3,4.071500000000004,3.9228064516129044,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL570033,O=C(O)c1ccc(CCCCN2CCC(C(O)(c3ccccc3)c3ccccc3)CC2)cc1,6.692503962086787,0.3667427812313616,-0.1539274313686729,0.3667427812313616,1.2888283555114677,0.01325678528302696,13.442030303030293,12.434030303030312,13.431698300484877,172,0,0.33517857451214234,-0.4776392487069998,0.4776392487069998,0.33517857451214234,0.030303030303030304,0.048668503213957756,0.06519742883379247,2.246652860164775,71.24940347264759,1.5745823923080489,1.490059347481562,0.490059347481562,0.8909591946114193,0.7605966487840442,0.26615735845290095,0.1784686087776697,0.1784686087776697,0.11783108054597824,0.11783108054597824,0.07262021447279933,0.07262021447279933,-0.08939393939393936,3.2006587268296895,0.17614777671369464,0.3266169048654804,5.520737578088425,7.351554967663331,0.4581068519110576,0.16972881245405116,0.0,0.0433696865828071,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,0.0,2.197243166423016,2.606798579859861,0.706148347117992,0.7501233720630325,1.7425960244716097,0.18088803902884393,2.8623993144652684,0.1484821130560751,5.893957685363079,1.135323494473654,19.490579052947837,106.84766787407415,0.0,0.0,0.0,0.0,0.0,0.0,1.2729881851877947,0.3628477488579717,5.893957685363079,2.879804787801639,84.59386190728614,0.0,1.4311996572326342,0.0,1.8415151515151513,5.471730149964182,0.3529796959067552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.3215433323029764,8.641697774289053,0.0,0.32702128819211307,0.25489170939191963,-0.3438349272067452,-0.20864599688007796,-0.6522090808922921,-0.7376529117817012,-0.4580355318799452,0.0,0.3448275862068966,33,2,4,0,1,1,3,0,3,4,2,4,10,0,1,1,4,5.355600000000005,3.9813969696969687,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1077908,CCOc1cc(CN2CCC(Nc3nc4cc(NS(=O)(=O)c5ccccc5)ccc4o3)CC2)ccc1OC,6.701146923590295,0.35882906595980374,-0.1498564625342561,0.35882906595980374,0.6876337907762973,0.0075789998418080195,14.12247368421056,13.273631578947379,14.110772134842124,200,0,0.2954059392479352,-0.492869653871004,0.492869653871004,0.2954059392479352,0.03185595567867036,0.05401662049861496,0.07479224376731301,1.7331362555152448,75.75021234562526,1.4350035012346831,1.3220616874942899,0.5014431764660721,0.8184090166385587,0.6744225818103068,0.29404458543664164,0.17141894932163637,0.21197040079414256,0.1078369455405421,0.13791494926824974,0.06812774778912298,0.08873165066945798,-0.0989473684210526,3.6527236252960678,0.2017916464460897,0.2979614952056459,6.029226633505396,7.037959864292604,0.505281320998469,0.14517633467411215,0.523834946443854,0.0,16.03794985842006,0.0,0.2530270880153845,8.417796984328938,4.9839785209472085,0.0,0.6360440744908731,1.7752137990866972,1.1402192829344833,1.2495448133393154,1.7435556492301432,0.8638172892726874,0.0,0.26010232241572856,0.0,0.9738941460036263,36.61559003745327,72.03005727599324,0.0,11.49902366656781,0.5131226019637528,11.702044979696037,11.49902366656781,0.0,1.3397430203922902,0.4347408115190402,0.0,1.7443144762304765,75.77924019686736,2.8236841566564013,11.099720859258504,0.0,2.7876315789473685,5.128358296088547,0.22152097327181414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.3973803877004325,8.093947058571162,0.0,0.029157024046531387,-0.020541249080321025,-0.14648770338313657,-0.08808655374834783,-0.570103567397569,-0.2421278769893068,-0.5641242383461422,-0.24601885858515055,0.32142857142857145,38,2,9,0,1,1,3,1,4,8,2,10,12,0,1,1,5,5.1124000000000045,3.8774789473684153,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL1935438,c1ccc(OCCn2c(C3CCCNC3)nc3ccccc32)cc1,9.0,0.3802861093751771,-0.17310715457975825,0.3802861093751771,0.20538973922902448,0.032520454473496316,13.392666666666651,12.42666666666667,13.382671348166694,124,0,0.12221682244205538,-0.4917369143001354,0.4917369143001354,0.12221682244205538,0.05555555555555555,0.09027777777777778,0.12847222222222224,2.202804724099196,74.52154328859395,1.523936150009062,1.4479120448734892,0.48957871154015575,0.8717986732886267,0.7466962279255697,0.2697289947797382,0.17493732811307158,0.17493732811307158,0.11583081310410633,0.11583081310410633,0.07606394874555257,0.07606394874555257,-0.0970833333333333,3.388571205519071,0.16976115407835204,0.29393528403663544,3.1478743879554236,7.266395455929676,0.6089073314533242,0.8143643188553465,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,1.2588372307631863,1.8088493465678284,1.0303185156337917,1.472921764573389,1.5127247194947122,0.45972505980135514,0.0,0.6192038134177892,0.0,1.047361132180741,19.55270461154818,60.20617286696958,0.0,5.749511833283905,0.4186115127953511,0.0,5.749511833283905,0.0,1.2126576158452809,0.2707024868464977,0.0,2.2758708425736107,54.38176836896965,1.4118420783282006,11.033401435232523,0.0,1.6283333333333332,5.291177969694182,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.5127247194947122,8.159585139878972,0.0,0.15565086698876227,-0.030651557374115807,-0.08889578794310636,-0.2925376018409779,-0.4023994087970361,-0.33967659660421773,-0.6645472765305035,0.0,0.35,24,1,4,0,1,1,2,1,3,4,1,4,5,0,1,1,4,3.582300000000002,4.021445833333336,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3925977,O=C(O)c1ccc2cccnc2c1N1CCN(CCc2ccc(OCCCN3CCCCCC3)cc2)CC1,5.599999383023619,0.3459463369416294,-0.13060378167957407,0.3459463369416294,0.6409580765246039,0.01007423142406422,13.596999999999998,12.535947368421063,13.587106345789502,202,0,0.33738876616334207,-0.49355009191814947,0.49355009191814947,0.33738876616334207,0.025623268698060944,0.045706371191135735,0.06578947368421052,1.726333791541121,76.1907364162449,1.6208151436358562,1.5398315592997742,0.48719998035240586,0.9008394448303031,0.7877478854379305,0.26384661463624987,0.17150484060931276,0.17150484060931276,0.11015705641985916,0.11015705641985916,0.06943480413916281,0.06943480413916281,-0.0831578947368421,3.2621290707592223,0.1689125923584843,0.3439754415059891,6.8255995507322265,7.417145097861235,0.5169865949107425,0.1513029429811554,0.0,0.0,1.4311996572326342,5.969305287951849,0.26010232241572856,4.794537184071822,0.0,0.0,0.9714611745608405,1.7952248762184098,2.195749549454223,1.1549447913017483,1.79209978998994,0.5936741182820122,1.4311996572326342,0.3890473153328464,0.0,1.006251300209902,63.43377244829432,65.6391478555151,0.0,5.749511833283905,0.25359928117501385,5.687386274683562,5.749511833283905,0.0,2.220941425767134,0.16770855003498367,0.0,2.664359167493453,54.51224487212112,0.0,12.33412458931369,0.0,1.8194736842105264,5.405774144775977,0.1261720311597848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,1.5691485868860873,9.108975241853553,0.0,0.360323225201369,0.07501341940881709,-0.16857836672617288,-0.10501318595972371,-0.33300748647068595,-0.7589729882926647,-1.1151433677864209,0.0,0.4838709677419355,38,1,7,0,2,2,2,1,3,7,1,7,10,0,2,2,5,4.942600000000005,4.013718421052625,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2208428,CS(=O)(=O)c1ccccc1C(=O)NC[C@@H](O)CN1CCC(Oc2ccc(Cl)c(Cl)c2)CC1,6.699991797446188,0.42896383370849644,-0.18858075391344323,0.42896383370849644,0.7603149398515956,0.018051864584673623,15.669749999999995,14.85075000000001,15.627935884125021,174,0,0.25219716260601727,-0.49028401760240736,0.49028401760240736,0.25219716260601727,0.0458984375,0.0693359375,0.091796875,2.375144486704866,66.00359751073336,1.4398271125067965,1.2843701837437984,0.5446312610239433,0.7979174110488618,0.6456105797639958,0.31384902687802785,0.16404811467670613,0.23189345254760824,0.09613697390645401,0.14324080062947497,0.056938844899160464,0.08256457829480039,-0.05749999999999998,3.0847302130132492,0.23692320691012222,0.33913392945643067,6.827216367337472,7.325530468182329,0.6267310696576911,0.3696728081323092,0.3515342254608032,0.04472498928851982,5.907179729351506,0.0,0.14982928700224443,8.417796984328938,0.0,0.0,1.1027099123684883,1.153610144790998,1.7510513367580134,1.3019551168599954,1.7927516481162984,1.2170722701948138,1.4311996572326342,0.3190538463793392,0.0,0.9312927916273909,32.17136283838023,57.905649072822705,0.0,5.749511833283905,0.3139586345965133,0.0,5.749511833283905,23.20187978046503,2.1905091620359682,0.30741416051304693,0.0,1.7500638695785284,47.192414429160834,11.457108705810853,0.0,0.0,2.998125,4.736939032077227,0.4128854427625237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.989999681809727,7.655603103524488,0.36359396117870185,0.3264899319599963,0.02969826988877225,-0.06244228872678546,-0.12676565866503792,-0.3119455094426021,-0.7102298473596862,-0.5986850973332971,-0.18858075391344323,0.4090909090909091,32,2,7,0,1,1,2,0,2,6,2,10,10,0,1,1,3,3.0310000000000015,3.8888687500000017,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +CHEMBL540982,CN(C)CCc1sc2ccccc2c1Cc1ccc(F)cc1,7.958607314841775,0.6504573869633178,-0.18349890033173777,0.6504573869633178,0.054717471865288525,0.02989517175416665,14.247318181818166,13.330954545454546,14.233184039090935,114,0,0.12272759812768391,-0.3090397752129819,0.3090397752129819,0.12272759812768391,0.05371900826446281,0.08884297520661157,0.12396694214876032,2.6427828444350316,70.11898788803373,1.493970946319588,1.396973925407866,0.524996497268217,0.8482439308122683,0.7167295872826552,0.29929761368846086,0.17711391795838183,0.2235057691474572,0.11181848089293728,0.15821033208201263,0.07358789500589237,0.11509567517382294,-0.07772727272727273,3.238227561267759,0.19188828050950188,0.29958897802132023,3.3682875283507054,7.393637035280751,0.22272316958411265,0.2644191291384498,0.0,0.0,0.0,0.0,0.0,4.39041504767482,0.0,11.336785877934737,1.373276979014385,2.7880857692759964,1.478319521296772,0.4984576567891709,1.4457084623217824,0.9737695458576652,0.0,0.22272316958411265,0.0,0.5793568092117618,20.448513484880436,70.16062067944753,0.0,0.0,0.0,4.39041504767482,0.0,11.336785877934737,1.1522010552604962,0.5793568092117618,5.817220841045895,1.9736009682045326,48.33934966130636,0.0,10.086144130933896,0.0,0.14727272727272728,5.3791380831259605,0.19956432034885543,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,0.0,1.246144141972927,7.994930268437295,0.0024871578120585695,-0.0865544060295552,-0.03530393217893216,-0.10673660857440614,-0.07514617328975401,-0.40287088836042245,-0.3334717551793446,-0.5293033596066361,0.0,0.2631578947368421,22,0,1,0,0,0,2,1,3,2,0,3,7,0,0,0,3,4.735300000000004,4.240409090909093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL535631,CC(C)N1CCC(Oc2ccc(N3CCN(C(=O)c4ccc(F)cc4)CC3=O)cc2)CC1,5.599999383023619,0.4455412916388837,-0.14434327504698474,0.4455412916388837,0.6634527191503894,0.022341753920042094,13.73534374999999,12.790343750000007,13.725847501250025,170,0,0.25388547503043585,-0.4903387779556776,0.4903387779556776,0.25388547503043585,0.0361328125,0.0576171875,0.078125,1.9787103070462504,67.33963990033905,1.5319394174190686,1.4201359415906465,0.4826359415906466,0.8505223099262516,0.7271231249119423,0.25837312491194225,0.17412684087972563,0.17412684087972563,0.10932083743361894,0.10932083743361894,0.0654391899162392,0.0654391899162392,-0.09156249999999998,3.0908062365136697,0.18578745600081387,0.30285344720550816,5.09864828168258,7.195369479806985,0.6073935045734838,0.7544878245498667,0.0,0.18459936654223455,5.907179729351506,0.0,0.29965857400448886,4.39041504767482,0.0,0.0,0.0,2.33715574057989,1.994298353579604,0.6425430732047905,1.8699721579601616,0.5469295541683304,0.0,0.3062443581781549,0.0,1.2046107666421797,37.3842081524302,59.72002199404925,0.0,5.749511833283905,0.30114914639532897,10.077801322358383,5.749511833283905,0.0,2.0686371199151035,0.14982928700224443,5.817220841045895,2.4353243561914235,48.33934966130636,0.0,0.0,0.0,1.6590625,5.271964115856272,0.436859044244327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4331131137158337,8.3588614801445,0.0,0.7803241701756508,0.0,-0.10202770456876134,-0.2602140204851582,-0.5562195037214889,-0.43287958476286076,-0.9571156701152121,0.0,0.44,32,0,6,0,2,2,2,0,2,4,0,7,7,0,2,2,4,3.5663000000000027,3.7955468750000017,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL270852,Cc1ccc2c(-c3nnc(SCCCCN4CCc5cc6c(cc5CC4)C(=O)N(C(C)C)C6)n3C)cccc2n1,5.599999383023619,0.35347998395214664,-0.1256390595360269,0.35347998395214664,0.0599008759306594,0.005159516244295535,13.869100000000046,12.911500000000009,13.857069520900026,208,0,0.2542428025382048,-0.3318590902367052,0.3318590902367052,0.2542428025382048,0.027500000000000004,0.049375,0.06999999999999999,1.5564450516597759,79.24766815655246,1.5238195694432084,1.4374944538481869,0.50790686837138,0.8579253752261098,0.7429815201611379,0.28839393468433105,0.1887881417681309,0.20812305832148023,0.1278703113110802,0.1441433656859506,0.0845165340712358,0.09583539137245942,-0.08074999999999999,3.731509367326459,0.18483845712387142,0.2833434173310365,5.266567042494928,7.348235834082452,0.3591729777373078,0.0,0.27452102449551585,0.0,5.907179729351506,0.0,0.24446289262547577,0.0,0.0,10.197363616602075,0.8982889945011074,2.184046155990034,2.4694387518050798,0.48060715698296147,1.422084057963506,0.714299740270592,0.0,0.7387065311760399,6.975826900282246,1.592964114792271,25.19553593809799,70.24466491527951,0.0,11.387855989696924,0.0,0.0,0.0,11.761884949391115,1.6667217345710181,0.6554634096814238,6.851892117295679,2.782018257935665,47.45336743546377,0.0,22.29078092177798,0.0,1.6787500000000002,5.397356435189306,0.11986342960179555,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,15.181342137549283,1.30222062836171,8.133016922515827,-0.0184953281457858,0.397676024619958,0.12398904178207455,-0.35909727978892814,-0.08478373162671601,-0.33989224451245653,-0.4684071804851852,-0.8506728910254526,0.0,0.4375,40,0,7,0,2,2,2,2,4,7,0,8,12,0,0,0,6,5.676020000000006,4.043362499999991,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL239300,C[C@H]1CCCN1CCCOc1ccc(N2CCN(C(=O)c3ccc(F)cc3)CC2=O)cc1,5.700000503883016,0.4450111910988763,-0.14664467653398164,0.4450111910988763,0.6452431198514113,0.019353005306893864,13.73534374999999,12.790343750000007,13.725847501250025,170,0,0.25388547503043585,-0.4935477576635119,0.4935477576635119,0.25388547503043585,0.0390625,0.0634765625,0.0869140625,1.9013936836773055,68.82432036922427,1.5319394174190686,1.4201359415906465,0.4826359415906466,0.8505223099262516,0.7271231249119422,0.2583731249119422,0.17093740111047673,0.17093740111047673,0.10787832577179172,0.10787832577179172,0.06408085778330604,0.06408085778330604,-0.09156249999999998,3.1868260752643645,0.18578745600081387,0.3164417879702599,5.2727402390686935,7.195369479806984,0.6073935045734838,0.5644872612076794,0.0,0.18459936654223455,5.907179729351506,0.0,0.29965857400448886,4.39041504767482,0.0,0.0,0.0,2.5252148802158167,1.7484352835644112,0.8903475669262438,1.8699721579601616,0.5469295541683304,0.0,0.3062443581781549,0.0,0.9996424778010458,43.94319339534649,59.72002199404925,0.0,5.749511833283905,0.30114914639532897,10.077801322358383,5.749511833283905,0.0,2.083604845414051,0.14982928700224443,5.817220841045895,2.420356630692477,48.33934966130636,0.0,0.0,0.0,1.6590625,5.271964115856271,0.436859044244327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4331131137158337,8.313794035467994,0.0,0.7807902184458009,0.0,-0.10072029623047873,-0.25686738835302325,-0.5447030112717514,-0.40826204451682147,-0.953302346875056,0.0,0.44,32,0,6,0,2,2,2,0,2,4,0,7,8,0,2,2,4,3.5679000000000025,3.796234375000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2146806,CCCCN1CCC[C@@H]1Cn1nc(Cc2ccc(Cl)cc2)c2cnccc2c1=O,9.4000078224159,0.49094930655120755,-0.16584207978763918,0.49094930655120755,0.7448909298801829,0.02007900185268212,14.170655172413781,13.23217241379311,14.144391005655198,152,0,0.2743099716543186,-0.29854125796981473,0.29854125796981473,0.2743099716543186,0.04756242568370987,0.07728894173602853,0.10582639714625447,2.3064082709568825,75.38939988263068,1.5198092275937065,1.4163816257059627,0.5114136583272889,0.8498113698435965,0.7286883021978061,0.27620431850846916,0.17618559948837753,0.1892188571783509,0.11550559837494129,0.12202222721992795,0.07453161107833996,0.0777899255008333,-0.07724137931034482,3.1161979768340498,0.19006189497628573,0.31226848877934765,4.513921038399136,7.372756770594217,0.0,0.0,0.0,0.0,5.559266895052007,0.0,0.5061526012368796,4.681802935145185,5.098681808301038,0.0,1.2727791146270402,1.9242483340450658,2.0627282527785753,1.0315116861779716,1.2762234833308947,0.7714961489366243,0.0,0.6780818274222038,0.0,1.7665954750554538,12.99371936863189,69.19170083935661,0.0,0.0,0.1916988584500692,0.0,0.0,11.600939890232516,1.3336546493870842,0.44378567536708013,0.0,2.7797052491639516,47.35242114401782,5.022633313741326,10.772448428929591,0.0,1.7593103448275864,5.137114237774142,0.2125964048359325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.082660329248245,1.6289883569192507,7.779321117089611,0.20168670910331724,0.5693501145595398,0.0059176393489671205,-0.16880121790943073,0.0,-0.3677423282344068,-0.8333908241466257,-0.6250385278186361,0.0,0.43478260869565216,29,0,5,0,1,1,1,2,3,5,0,6,8,0,1,1,4,4.300200000000004,4.053758620689657,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL629,CN(C)CCC=C1c2ccccc2CCc2ccccc21,9.10324449710357,0.42132556329410076,-0.19999353246589652,0.42132556329410076,0.8334822740824732,0.038746589969274214,13.210047619047597,12.106047619047615,13.199192844571458,108,0,0.06293426572889531,-0.30909168874709037,0.30909168874709037,0.06293426572889531,0.05442176870748299,0.08163265306122448,0.10884353741496598,2.821451388484995,70.42464192614068,1.6504882875163995,1.5927244569285695,0.4974863616904742,0.9251525347750243,0.8176581139642827,0.27003906634523506,0.1820101712142837,0.1820101712142837,0.12108119515773734,0.12108119515773734,0.081373930912202,0.081373930912202,-0.08857142857142855,2.8959159506414505,0.15393328819208785,0.29885500144022537,3.0846273208160424,7.6088931061468275,0.23332903480240372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.590067686063901,2.8998732857814224,1.2232133081285248,0.58746795264438,1.501306990091193,0.26538593000329846,0.0,0.23332903480240372,0.0,0.9104178430470542,20.448513484880436,76.6452273741299,0.0,0.0,0.0,0.0,0.0,0.0,1.2070677721776628,0.6069452286980361,0.0,2.864484650477737,54.39142140734192,0.0,5.573104530069267,0.0,0.1542857142857143,6.032644277329441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.501306990091193,9.01792431738742,0.0,-0.039689632099165394,0.0,-0.2940124656564565,0.0,-0.5360221774690656,-0.5389224075873739,-0.5695950948928213,0.0,0.3,21,0,1,1,0,1,2,0,2,1,0,1,5,0,0,0,3,4.168600000000003,4.311523809523813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL435301,CN(C)C[C@H]1CC2c3ccccc3Oc3ccc(Cl)cc3[C@H]2O1,8.366531544420411,0.41034792056919384,-0.18664734915705425,0.41034792056919384,0.8414435223677947,0.03487082303970852,14.340304347826072,13.463782608695654,14.309489415652196,120,0,0.1328780768127826,-0.4566824898844559,0.4566824898844559,0.1328780768127826,0.05860113421550094,0.0945179584120983,0.13232514177693763,2.2965731177605844,67.08953743245266,1.453033350514706,1.353985854323344,0.5172871128458855,0.8298165734176237,0.7033173569861859,0.2849679862474567,0.1916007199201839,0.2080339578771068,0.1289099762119665,0.13712659519042797,0.09205572347602907,0.09821818770987516,-0.06739130434782606,2.9062781535564297,0.19739791200966603,0.25316847311693885,2.735040188354364,7.366131746901468,0.6249406799326337,0.4999575507203396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2925302614444523,1.9345327622846542,1.8964651210733385,1.0650810025839978,1.6038650883045436,0.5043886908796746,0.0,0.21303955351523818,0.0,1.0620399408953232,20.448513484880436,58.446467250778376,0.0,11.49902366656781,0.20595056320869778,0.0,11.49902366656781,11.600939890232516,1.3664539670730829,0.20595056320869778,0.0,2.47343368349743,42.29693095364306,5.022633313741326,0.0,0.0,0.9434782608695653,5.205253598855197,0.1191963961887148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9890573829955045,7.726974419377785,0.26265255975952156,-0.03658450097251281,-0.038321347325833165,-0.10567335025797756,-0.25959063859037984,-0.3275167318503697,-0.5266628000838017,-0.5274032139211694,0.0,0.3684210526315789,23,0,3,0,2,2,2,0,2,3,0,4,4,0,1,1,4,4.621100000000004,3.978000000000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3754166,C=CCN(CC=C)CCc1c[nH]c2ccc(Br)cc12,6.0,0.4545126705653022,-0.2159395326112902,0.4545126705653022,0.13900473460989327,0.03999132404284568,16.802421052631562,15.794421052631582,16.740692668842133,100,0,0.1659366378047773,-0.360888165306013,0.360888165306013,0.1659366378047773,0.08033240997229918,0.12188365650969529,0.16066481994459836,3.1394401193842585,69.10166332474391,1.5833107246660403,1.488020613895218,0.5714941159538868,0.8900133704128625,0.7502226221449719,0.29473760499009793,0.16089559080286886,0.2026323418322032,0.1010431583520904,0.12191153386675756,0.06353366219252184,0.07918494382852219,-0.06947368421052628,3.0480960998100644,0.18234714336655056,0.3543596396063592,3.581606022344659,7.854865070227486,0.2619475405383817,0.0,0.0743074778067474,0.0,0.0,0.0,0.25788998583423567,0.0,0.0,13.062077924003734,1.4754782836852884,1.5822964482113822,2.7371151137388345,0.7214518716685369,1.3729208468101135,1.4122562542121266,0.0,0.5198375263726174,0.0,0.33541710006996733,19.490579052947837,59.50254375740892,0.0,0.0,0.0,0.0,0.0,15.929943897949348,1.5456574765277666,0.33541710006996733,0.0,1.5914266054084711,53.93909226571193,1.4118420783282006,10.902924932081056,0.0,1.0015789473684211,5.089271729409751,0.0,0.0,9.449722786061667,0.0,0.0,0.0,0.0,0.0,15.929943897949348,1.3729208468101135,8.015425198841706,0.15159289382407548,-0.028736947223658774,-0.03730776456131508,-0.0940514287261363,0.0,-0.2861410030539529,-0.26114501144837404,-0.7885833060733975,0.0,0.25,19,1,2,0,0,0,1,1,2,1,1,3,7,0,0,0,2,4.146900000000003,4.554563157894739,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL271097,Cc1ccc2c(-c3nnc(SCCCCN4CCc5cc6nc(C(F)(F)F)oc6c(C)c5CC4)n3C)cccc2n1,5.599999383023619,0.3372488286225569,-0.13562499512521858,0.3372488286225569,0.05307970676995222,0.003785900274930156,14.162926829268324,13.400780487804882,14.151785738341484,214,0,0.4684762316075941,-0.4325420439072885,0.4684762316075941,0.4325420439072885,0.026769779892920884,0.04878048780487805,0.06900654372397381,1.5680688625608998,74.73062313003845,1.3607230749002879,1.2349675993403695,0.49878458911909457,0.7765845324697347,0.640651825937593,0.28251759620412287,0.18646489660953175,0.20532822983231158,0.12416509509151911,0.14004124570114873,0.08172724451149062,0.0927700321224405,-0.08390243902439024,3.813175610912972,0.22629276025335318,0.27053209238577924,5.567733491969067,6.909183826530555,0.33863805648037026,0.134553676039421,0.40399661271860676,0.0,0.0,12.067022439469383,0.12156045173041972,4.9839785209472085,13.171245143024459,10.197363616602075,0.7290034407897805,1.963657417617212,1.8679773355934157,0.33515248913750195,1.4654124712525534,0.8235251400178214,0.0,0.7227397570033738,6.975826900282246,1.2323955814432452,25.19553593809799,64.52951863794513,0.0,11.387855989696924,0.0,13.171245143024459,0.0,11.761884949391115,1.3372650237862518,0.6316579322044995,13.703784234591359,2.0369358886805102,45.82809966485382,0.0,33.390501781036484,0.0,1.7773170731707317,4.811741384799428,0.3212498815371819,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,24.582471595549837,1.0364272010067521,7.598805633045312,-0.017774944664467746,0.13449845810906633,0.121082976544407,-0.38531342501028903,-0.08312154982634888,-0.1746778550294018,-0.589359942096464,-0.6203995136734392,0.0,0.4,41,0,7,0,1,1,2,3,5,8,0,11,10,0,0,0,6,6.780240000000007,3.7568536585365786,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,0,0,2,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL429458,O=C(c1ccc(F)cc1)N1CCN(c2ccc(OCCCN3CCCC3)cc2)C(=O)C1,5.599999383023619,0.458492247499393,-0.14543768176893054,0.458492247499393,0.6180303486482552,0.020636722826170354,13.725935483870957,12.815483870967748,13.716499031483897,164,0,0.25388547503043585,-0.49354775935305634,0.49354775935305634,0.25388547503043585,0.03433922996878252,0.05723204994797086,0.08012486992715921,1.875419300802037,66.90705391419954,1.5007116566906515,1.3853016171258286,0.48207581067421584,0.8376359328270984,0.7102561289413598,0.2586432257155533,0.16881269150516975,0.16881269150516975,0.10573558147814019,0.10573558147814019,0.06333663708478383,0.06333663708478383,-0.09451612903225806,3.142130792712086,0.19016180394865112,0.3199328838676105,5.411726145586889,7.131514201261009,0.626986843430693,0.5826965276982498,0.0,0.1905541848177905,5.907179729351506,0.0,0.3093249796175369,4.39041504767482,0.0,0.0,0.0,2.5952207656105286,1.5222748223668088,0.9190684561819291,1.8418578045930556,0.5645724430124701,0.0,0.31612320844196634,0.0,0.6167346678705851,50.440053079662434,59.72002199404925,0.0,5.749511833283905,0.31086363498872666,10.077801322358383,5.749511833283905,0.0,2.166268460297288,0.15466248980876846,5.817220841045895,2.188967837178167,48.33934966130636,0.0,0.0,0.0,1.7125806451612904,5.236449251808751,0.45095127147801495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3909065331150399,8.01196400391853,0.0,0.8096622277852364,0.0,-0.10215188230593271,-0.2610583210495622,-0.41197204243916624,-0.3999936158453211,-0.9582783270530333,0.0,0.4166666666666667,31,0,6,0,2,2,2,0,2,4,0,7,7,0,2,2,4,3.179400000000002,3.770467741935486,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL446885,CCOC(=O)N1CCN(CCCOc2ccc(-c3ccc(OC(F)(F)F)cc3)cc2)CC1,6.359995853468939,0.40417159741859,-0.17270401492204362,0.40417159741859,1.099693705552836,0.01684711162820725,14.13978124999999,13.289281250000005,14.131009125125024,174,0,0.572596303414261,-0.49354969134142224,0.572596303414261,0.49354969134142224,0.033203125,0.0517578125,0.0693359375,2.226015961647594,60.97568186298461,1.461924199418876,1.3175410553713454,0.4737910553713453,0.8075499939224619,0.6667955160199136,0.2449205160199136,0.15578263436143178,0.15578263436143178,0.09099600014475966,0.09099600014475966,0.05367221342644837,0.05367221342644837,-0.09187499999999996,3.0170728953910286,0.21211281226827847,0.3462942033540083,7.3332235500379985,6.967177008521099,0.597203081007832,0.35934448958024406,0.0,0.0,0.0,12.455598929968797,0.15312217908907744,4.794537184071822,0.0,13.171245143024459,0.7553023384579118,1.5162935885210072,1.4863325793578805,1.095315855767378,2.1620891314091386,0.19041375221682547,0.0,0.3062443581781549,0.0,0.6120992461767325,45.602268907412295,48.33934966130636,0.0,22.6259266499618,0.29605393461250307,17.96578232709628,11.49902366656781,0.0,2.120552728096314,0.14802696730625153,0.0,1.5698530636006574,48.33934966130636,0.0,11.126902983393991,0.0,1.6012500000000003,4.751493144655479,0.5614306977217588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,1.3046044990748753,8.430532583747006,0.0,0.33301030030031775,0.0,-0.0726467329089865,-0.10294765092227245,-0.36898980142161564,-0.4037763716208835,-1.1068489938402322,0.0,0.43478260869565216,32,0,6,0,1,1,2,0,2,5,0,9,9,0,1,1,3,4.795200000000005,3.5533750000000017,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2158784,Cc1c(OC2CCN(CC3CCN([C@@H](Cc4ccc(F)cc4)C(=O)O)CC3)CC2)ccc(Cl)c1Cl,7.500038134403808,0.41719359274613826,-0.15365423835442912,0.41719359274613826,0.9712584281049399,0.013769102766239447,14.956457142857152,14.006057142857152,14.919577899885738,190,0,0.3207640020854561,-0.4900045364121047,0.4900045364121047,0.3207640020854561,0.036734693877551024,0.05714285714285714,0.07591836734693877,2.142986958963207,67.45726907246659,1.5449847885776424,1.4215161566119767,0.521854953527317,0.8499638758844893,0.7252380676401516,0.27802894351313995,0.17337596390096574,0.19497393378720726,0.10729992514543109,0.12896192163045445,0.06386305548756839,0.07171458786246236,-0.053142857142857124,3.165115637217177,0.20460557084390285,0.3404815608233074,6.880767128809454,7.507505707913135,0.4213023107359354,0.6761326619894125,0.0,0.0,1.4311996572326342,5.969305287951849,0.27698419756920856,4.39041504767482,0.0,0.0,1.0081919198797606,2.4953520000082205,1.655778168363719,0.6003238593384117,1.7969970621171718,0.8334624305261966,1.4311996572326342,0.27999484176288447,5.893957685363079,1.4518407748354916,32.48429842157972,63.2439026979023,0.0,5.749511833283905,0.13533894153714426,4.39041504767482,5.749511833283905,23.20187978046503,1.870289767361125,0.3190703452971772,18.563070643704652,2.2995107538902446,36.25451224597977,10.045266627482652,1.4311996572326342,0.0,1.5145714285714287,4.970149214486402,0.30159173679762463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.053241646650702,8.671933408100676,0.33981364136926306,0.306016613452712,0.04390259381622239,-0.09694664497855317,-0.3425811364217991,-0.4263481486957356,-0.8473597846837096,-0.8373194308479661,0.0,0.5185185185185185,35,1,5,0,2,2,2,0,2,5,1,8,9,0,2,2,4,5.692020000000006,3.917537142857141,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1092600,Cc1ccc2c(c1)CC(CCN(C)C)=C2Cc1cnccn1,7.924453038607469,0.4043280970847935,-0.19518030837475286,0.4043280970847935,0.8692776203941426,0.03849216162528687,13.336999999999978,12.283181818181816,13.326781715272757,114,0,0.08597264088465971,-0.30908131660906546,0.30908131660906546,0.08597264088465971,0.06404958677685951,0.10743801652892562,0.14669421487603304,2.6932473975380424,71.10495137290472,1.6099894119017377,1.5382563993863578,0.4928018539318125,0.8990229237127209,0.7870567083749933,0.26432943564772066,0.1809016994374948,0.1809016994374948,0.11518259065340662,0.11518259065340662,0.07803000893749851,0.07803000893749851,-0.0909090909090909,3.0493319159433883,0.16206509539842873,0.2911739665121559,3.25125,7.481408786607862,0.22272316958411265,0.0,0.0,0.0,0.0,0.0,0.4530889564497462,0.0,0.0,0.0,1.3301732793070975,2.284063783362827,2.485971166953791,0.6326581514486264,1.4330657632688661,0.2533229331849667,0.0,0.6758121260338588,0.0,1.1804848555129008,20.448513484880436,64.60332875544287,0.0,0.0,0.0,0.0,0.0,0.0,1.6052900117102424,0.5793568092117618,6.851892117295679,2.740211552871998,42.21904628550343,0.0,5.573104530069267,0.0,1.3190909090909093,5.522523787387585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.4330657632688661,8.539152733770463,0.0,0.2705556334280774,0.0,-0.3630942973200471,0.0,-0.17590024155004313,-0.6675052068998129,-0.7054813487013636,0.0,0.3684210526315789,22,0,3,1,0,1,1,1,2,3,0,3,8,0,0,0,3,3.2891200000000023,4.123181818181821,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1729417,COc1ccc(N2CCN(CCCNC(=O)Cn3c(=O)c4cccn4c4c(C)ccnc43)CC2)cc1,6.0,0.3915016174251342,-0.13748633951181316,0.3915016174251342,0.2705693268280598,0.010649740104791024,13.571999999999992,12.676000000000009,13.562599691222248,188,0,0.27645924930785043,-0.49676588986906284,0.49676588986906284,0.27645924930785043,0.034722222222222224,0.05787037037037038,0.07947530864197531,1.7221295460730373,77.46089567682436,1.475442207904024,1.3724451790108705,0.48355629012198165,0.8362382695448249,0.7039283039007596,0.26095014847020526,0.17659435310526486,0.17659435310526486,0.11819030799884689,0.11819030799884689,0.07686356396419951,0.07686356396419951,-0.10694444444444443,3.3878070160493827,0.18657904170121373,0.2892154954410033,4.787797501271976,7.068593149917997,0.5374244623389083,0.49341867320044763,0.19608386941933134,0.1640883258153196,5.559266895052008,0.0,0.5293356596329298,4.9839785209472085,0.0,0.0,0.0,1.8772794207855847,1.8982593430029355,1.034119644098967,1.4843543738188036,0.7854206850009811,0.0,0.671152662753867,0.0,0.5478243528594723,50.91902029562873,70.5599769460934,0.0,5.749511833283905,0.5696070259164142,5.687386274683562,5.749511833283905,0.0,1.966054799999461,0.31364991301077133,6.851892117295679,1.511941434286201,59.4372585593444,1.4118420783282006,16.68057865600025,0.0,2.336388888888889,5.14465599960669,0.266363176892879,0.0,4.400694606261793,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.2195932588779177,7.555993882951315,0.0,0.8279152704373307,-0.037371232309621,-0.24113451518233653,-0.11360073610274471,-0.26707138937406166,-0.20580595296860993,-0.9974528284536601,-0.09554657307168801,0.37037037037037035,36,1,9,0,1,1,1,3,4,8,1,9,10,0,1,1,5,2.29472,3.915797222222218,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1091776,CC(c1cccnc1)c1c(CCN(C)C)sc2ccccc12,5.0,0.42333141147873293,-0.18667900065469514,0.42333141147873293,0.0001339023263622341,0.031224693013208706,14.112090909090892,13.10409090909091,14.097744077454571,114,0,0.08430107202434343,-0.3090397736724947,0.3090397736724947,0.08430107202434343,0.06198347107438016,0.10330578512396695,0.14256198347107438,2.755718558691644,73.55566302230302,1.5680507877739935,1.4910307037028991,0.5281441846541594,0.8856293692246062,0.7625582854188072,0.2996717663700675,0.17808791614567074,0.22447976733474606,0.1173874526627176,0.16377930385179293,0.07850274758670223,0.12233012031408654,-0.0777272727272727,3.2346387607231817,0.17494940142935245,0.29958897802132023,3.057231472317194,7.585864112224047,0.22272316958411265,0.0,0.0,0.0,0.0,0.0,0.2265444782248731,0.0,0.0,11.336785877934737,1.4100712249067664,2.2237519688672385,2.432013394902821,0.4984576567891709,1.3707585561702198,0.9737695458576652,0.0,0.4492676478089857,0.0,0.8690352138176426,20.448513484880436,64.60435284470458,0.0,0.0,0.0,0.0,0.0,11.336785877934737,1.3787455334853693,0.2896784046058809,0.0,2.6775721916135886,48.60030266760929,0.0,10.086144130933896,0.0,0.7331818181818183,5.416258858879888,0.06230720709864637,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.3084513490715735,8.158546949279847,6.0864693801015495e-06,0.06246920557076708,-0.03929301518587229,-0.11291832368469273,-0.16613912294715874,-0.27836487244412883,-0.27831939859839616,-0.7096238720961089,0.0,0.3157894736842105,22,0,2,0,0,0,1,2,3,3,0,3,8,0,0,0,3,4.5522000000000045,4.356227272727275,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL4167807,CCCc1nc(CN2CC[C@H](c3ccccc3)C2)cs1,6.508638306165728,0.44533956457353374,-0.19652502598261523,0.44533956457353374,0.03524654224510004,0.04114487195142981,14.322199999999977,13.213399999999998,14.30751848520003,106,0,0.09282376897302144,-0.2968529901618912,0.2968529901618912,0.09282376897302144,0.08,0.125,0.1675,2.353316495951192,69.79193482797481,1.6593858127134677,1.590133774073189,0.5309586031195753,0.920623945894771,0.813814113960688,0.3046389430070742,0.16952536497576604,0.2092726960523085,0.10555892883665749,0.1396644072974798,0.06666657397982935,0.0928480225019932,-0.05949999999999998,3.25254081684393,0.1627781780350817,0.3253624075037357,3.276595355221532,7.7965699506228905,0.0,0.0,0.0,0.0,0.0,0.0,0.2449954865425239,4.9839785209472085,0.0,11.336785877934737,1.8531992827806079,1.853652178268208,2.0140985338511515,0.9463051514361271,1.5078344117872418,0.5668392938967368,0.0,0.4941944125898843,0.0,1.9180742095481418,12.99371936863189,51.83321113138229,0.0,0.0,0.0,0.0,0.0,11.336785877934737,1.1438803810214786,0.6434892292822662,0.0,3.5956695512230303,35.56820794798407,0.0,0.0,0.0,0.8065000000000001,5.404416221091376,0.0,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.5078344117872418,8.959421261531052,-0.0017623271122550021,0.15223647429618975,-0.10642345453001119,-0.1298831886883158,-0.18895171762460725,-0.28429388857732985,-0.5508710700142363,-0.7578054226138174,0.0,0.47058823529411764,20,0,2,0,1,1,1,1,2,3,0,3,6,0,1,1,3,4.085100000000003,4.259300000000002,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL1088882,Cc1cncc(CC2=C(CCN(C)C)Cc3ccccc32)n1,7.920818753952375,0.4063995932969147,-0.1945397885936081,0.4063995932969147,0.8624540819796955,0.03849216162528687,13.336999999999978,12.283181818181816,13.326781715272757,114,0,0.08597306227713478,-0.30908131660907556,0.30908131660907556,0.08597306227713478,0.06198347107438016,0.10330578512396695,0.14256198347107438,2.669021748480638,71.10495137290474,1.609989411901738,1.5382563993863578,0.4928018539318125,0.8990229237127209,0.7870567083749933,0.2643294356477206,0.18030185393181244,0.18030185393181244,0.11458274514772442,0.11458274514772442,0.07758012480823684,0.07758012480823684,-0.09090909090909088,3.059701051117976,0.16206509539842873,0.2911739665121559,3.25125,7.481408786607863,0.22272316958411265,0.0,0.0,0.0,0.0,0.0,0.4530889564497462,0.0,0.0,0.0,1.3519445163964747,2.284063783362827,2.2053850210076646,0.8914730603053745,1.4330657632688661,0.2533229331849667,0.0,0.6758121260338588,0.0,1.1804848555129008,20.448513484880436,64.60332875544289,0.0,0.0,0.0,0.0,0.0,0.0,1.6052900117102424,0.5793568092117618,6.851892117295679,2.746142303015246,42.08856978235197,0.0,5.573104530069267,0.0,1.3190909090909093,5.522523787387586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.4330657632688661,8.517046457403733,0.0,0.27367634641191024,0.0,-0.357862381557654,0.0,-0.20637121530670444,-0.6298919904227241,-0.6988699438012888,0.0,0.3684210526315789,22,0,3,1,0,1,1,1,2,3,0,3,8,0,0,0,3,3.2891200000000023,4.123181818181821,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL401777,CCc1nc2cc3c(c(C)c2o1)CCN(CCSc1nnc(-c2cccc4nc(C)ccc24)n1C)CC3,5.599999383023619,0.2465810225611232,-0.12257932966873342,0.2465810225611232,0.01607199385747271,0.007472808190483187,13.85629729729729,12.984513513513523,13.844211639027055,190,0,0.19470616781160993,-0.4404267157761837,0.4404267157761837,0.19470616781160993,0.030679327976625273,0.05697589481373264,0.08108108108108109,1.6159557247430223,79.48251535016819,1.440260704619238,1.3513453555115535,0.5085479658068973,0.8267558332772735,0.7013453555115534,0.2909803982393297,0.18979193762022065,0.21069455011032803,0.13057869714946493,0.14787997269801573,0.08693553518182041,0.10011453136585477,-0.08729729729729727,3.7788017416508217,0.1956968468246949,0.26785787053918647,4.5288248352994565,7.184323217966076,0.37524757609986975,0.1491000193950341,0.6068806768510482,0.0,0.0,0.0,0.1347021221877624,4.9839785209472085,0.0,10.197363616602075,0.9930008970182886,1.655871476630567,2.4548003757066357,0.37138519066588055,1.304903371202714,0.9125548848846129,0.0,0.8008737847875222,6.975826900282246,1.2116456091269157,25.19553593809799,64.52951863794513,0.0,11.387855989696924,0.0,0.0,0.0,11.761884949391115,1.4818342155469275,0.7052595028181184,13.703784234591359,2.1348965488299485,45.82809966485382,0.0,33.390501781036484,0.0,1.9694594594594597,5.177947715548631,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.304903371202714,7.500214022283369,-0.016898029358104017,0.17401477716666833,0.1413124777232281,-0.3860845930494568,-0.06777444317830503,-0.18189245167996268,-0.32817498371369086,-0.7513834428604133,0.0,0.3793103448275862,37,0,7,0,1,1,2,3,5,8,0,8,10,0,0,0,6,5.543640000000005,4.031702702702696,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL160893,NCCC1c2ccccc2Cc2ccccc21,6.863279432843593,0.5383020152505447,-0.22304227246454153,0.5383020152505447,0.7050940098261527,0.04891668115021843,13.136411764705889,12.128411764705879,13.12565291435294,86,0,0.11837975100166408,-0.33043928983692994,0.33043928983692994,0.11837975100166408,0.0726643598615917,0.10726643598615916,0.14186851211072662,2.7727292675349746,67.29245471534641,1.5591502058508904,1.4968949173823507,0.4968949173823505,0.8951104920511956,0.7716490581617587,0.2778592233970576,0.19040019993382293,0.19040019993382293,0.1356412764374997,0.1356412764374997,0.09520009996691146,0.09520009996691146,-0.09411764705882351,2.7289808450145516,0.15873763242452205,0.2554721216624248,1.7668486067222067,7.428408064350609,0.3364539397486043,0.16609906803861185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.843491156547433,2.4409714972801577,0.911133386973801,0.6450628499624564,1.3755919117182176,0.0,0.0,0.0,5.719716975726273,1.0964592640012845,6.496859684315945,70.59315562809434,0.0,0.0,0.3364539397486043,0.0,0.0,0.0,0.3821682167244673,0.37487793537231645,0.0,3.2401215821196345,48.33934966130636,2.8236841566564013,0.0,0.0,1.5305882352941176,5.9676199868328474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3755919117182176,8.182207463232206,0.0,0.0,0.0,-0.2861414287937396,-0.2026211873638345,-0.4846796743388713,-0.40404168611889224,-0.21648819249922208,0.0,0.25,17,2,1,1,0,1,2,0,2,1,1,1,3,0,0,0,3,3.071500000000002,4.1884941176470605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3967709,O=C(O)c1cnc2c(N3CCN(CCc4ccc(OCCCN5CCCCCC5)cc4)CC3)cccc2c1,6.399996913372259,0.32445001930142375,-0.13044615130683565,0.32445001930142375,0.5765304026772875,0.01007423142406422,13.596999999999998,12.535947368421063,13.587106345789502,202,0,0.3367815505741062,-0.49355009191814947,0.49355009191814947,0.3367815505741062,0.02631578947368421,0.046398891966759004,0.06648199445983378,1.7063307241815013,76.1907364162449,1.6208151436358562,1.5398315592997742,0.48719998035240575,0.9008394448303029,0.7877478854379305,0.26384661463624987,0.17150484060931276,0.17150484060931276,0.1085123195777539,0.1085123195777539,0.06662078477743977,0.06662078477743977,-0.08315789473684208,3.2584467770909624,0.1689125923584843,0.3439754415059891,7.025343170008114,7.417145097861234,0.5169865949107425,0.1513029429811554,0.0,0.0,1.4311996572326342,5.969305287951849,0.26010232241572856,4.794537184071822,0.0,0.0,0.9714611745608405,1.7952248762184098,2.195749549454223,1.1549447913017483,1.79209978998994,0.5936741182820123,1.4311996572326342,0.3890473153328464,0.0,1.006251300209902,63.43377244829432,65.63914785551512,0.0,5.749511833283905,0.25359928117501385,5.687386274683562,5.749511833283905,0.0,2.220941425767134,0.16770855003498367,0.0,2.664359167493453,54.51224487212112,0.0,12.33412458931369,0.0,1.8194736842105264,5.405774144775977,0.1261720311597848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,1.5691485868860873,9.108853737524498,0.0,0.3415299861519394,0.07108777934269124,-0.15373787441283193,-0.09611734334780321,-0.34131922253791064,-0.7604654830889923,-1.106235088403519,0.0,0.4838709677419355,38,1,7,0,2,2,2,1,3,7,1,7,10,0,2,2,5,4.942600000000005,4.013718421052625,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL271632,Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6nc(C)sc6cc5CC4)n3C)cccc2n1,6.0,0.24991318810847515,-0.12828570620252328,0.24991318810847515,0.04068874721035076,0.005821693955480356,14.297888888888885,13.457888888888895,14.283259360000025,184,0,0.19072974801178502,-0.3051661288400337,0.3051661288400337,0.19072974801178502,0.03009259259259259,0.05555555555555555,0.07947530864197531,1.5561589435571674,76.81625505065348,1.4108235019697721,1.3194382820535409,0.531465869882859,0.8160733601626092,0.6861049487202076,0.3147992032161923,0.18811949144300463,0.2373546978012478,0.12631214477120709,0.16617586190529676,0.08390154825318324,0.1151262394078209,-0.07805555555555554,3.7744180154292546,0.20544961138857012,0.27550606333545974,4.649852477300849,7.263641943231867,0.2629724827400509,0.0,0.30502336055057316,0.0,0.0,0.0,0.13844384780408914,4.9839785209472085,0.0,21.534149494536813,0.8302539186772501,2.07266656769285,2.051265379083045,0.8426737483818313,1.1422987968085172,1.2282837887081186,0.0,0.8231202788093979,6.975826900282246,1.0549720950111168,25.19553593809799,64.12538562873829,0.0,11.387855989696924,0.0,0.0,0.0,23.098670827325854,1.5229962770898977,0.5478243528594723,13.703784234591359,1.9256704517092014,47.45336743546377,0.0,32.50740155586334,0.0,1.6591666666666667,5.0956927812117705,0.0,0.0,15.903885525726093,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.1422987968085172,7.106069538209553,-0.009878896155932872,0.18435175927062858,0.12728403217329998,-0.2852400940465361,-0.02909400380802388,-0.20846313877765033,-0.34903288604689764,-0.6424777922999216,0.0,0.35714285714285715,36,0,6,0,1,1,2,3,5,8,0,8,9,0,0,0,6,5.839840000000006,4.167305555555549,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0 +CHEMBL449040,CCCCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)OCC)CC2)cc1,6.2500010234416505,0.4566129810275631,-0.16323778168217046,0.4566129810275631,1.1524896658031554,0.011366583318860483,13.952599999999983,12.675800000000006,13.942771923200034,168,0,0.4093313385597905,-0.4935496626976447,0.4935496626976447,0.4093313385597905,0.035555555555555556,0.06111111111111111,0.08555555555555557,2.8302133318125393,69.84628504164571,1.8395905418089786,1.7509140117618458,0.48424734509517897,0.9712140817162526,0.8772128552630488,0.2438795219297155,0.14374138292403332,0.14374138292403332,0.0831704485284252,0.0831704485284252,0.04525059330069288,0.04525059330069288,-0.06933333333333332,3.09079751734209,0.15060257786698653,0.4672519679961905,8.73799207698234,7.815107034366383,0.4791211879483525,0.19165039444279683,0.19277483154549796,0.0,0.0,6.093240070938415,0.32314823049741,4.794537184071822,0.0,0.0,1.0781197240871065,1.4589138916869204,2.6686799091677273,0.9855691053291739,2.3717208470070714,0.3958828339101118,0.0,0.3266606487233652,0.0,1.9438086181299001,45.602268907412295,29.733126322350174,0.0,5.749511833283905,0.15789543179333496,4.794537184071822,5.749511833283905,0.0,2.2426191128805537,0.15789543179333496,0.0,4.025369078471134,24.16967483065318,0.0,0.0,0.0,1.9693333333333334,5.369182336198259,0.31963581227145477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,1.7362941711489468,10.464004213131894,0.0,0.8091724705699865,0.0,-0.06368786556528042,-0.15062674692805172,-0.2520687955454461,-1.1877905781567228,-1.3412249197286068,0.0,0.6666666666666666,30,0,6,0,1,1,1,0,1,5,0,6,15,0,1,1,2,4.772800000000005,3.976516666666669,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL60383,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)c3ccc(C)s3)CC2)cc1,7.010016541698601,0.4430511404116116,-0.1550242876343272,0.4430511404116116,0.15686558365908176,0.011647243259197198,14.278225806451598,13.172677419354844,14.265452062838738,168,0,0.26351576436137525,-0.493549662697645,0.493549662697645,0.26351576436137525,0.036420395421436005,0.06243496357960458,0.08532778355879292,2.2161380309814493,70.88888556050793,1.6773263655170279,1.5815296888017862,0.5110940946381644,0.9102524631505021,0.8005285696094021,0.2784800722199739,0.15831202421964488,0.1912352734506016,0.09484573158372936,0.12023259809813762,0.05423445692069943,0.0731649600338227,-0.07032258064516128,3.405962757868071,0.17124917209213356,0.38740656685874647,7.181253870215983,7.6555617720677125,0.31086363498872666,0.18546812365431953,0.18655628859241738,0.0,5.907179729351506,0.0,0.46738658383852,0.0,0.0,11.336785877934737,0.6321852232243367,1.8016856182559422,2.5630487175500716,0.8995237132471039,1.965539620378427,0.7428132436661671,0.0,0.31612320844196634,0.0,1.4699486690722017,39.04328366449601,51.57225812507936,0.0,5.749511833283905,0.1528020307677435,0.0,5.749511833283905,11.336785877934737,1.9526944452230135,0.0,6.851892117295679,3.5557783155152634,36.25451224597977,0.0,0.0,0.0,1.6080645161290323,5.271732467790806,0.3093249796175369,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,0.0,1.6562146407608893,9.074132087925156,-0.005060180118034895,0.7454434295115027,0.0,-0.057428039957092725,-0.20686746756807842,-0.30671086865336206,-0.7233397351737735,-1.1142552474716938,0.0,0.52,31,0,5,0,1,1,1,1,2,5,0,6,13,0,1,1,3,5.046420000000006,4.078258064516131,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL2158823,O=C(O)c1cccc(N2CCC(CN3CCC(Oc4ccc(Cl)c(Cl)c4)CC3)CC2)c1,8.299988937677888,0.3989020406519605,-0.16396860833611704,0.3989020406519605,0.721102983389343,0.019920805492825922,14.948548387096766,14.038096774193557,14.907990261806479,166,0,0.3352566383750717,-0.490284017716006,0.490284017716006,0.3352566383750717,0.03746097814776275,0.06243496357960458,0.08636836628511967,2.09598052377853,65.91921115518163,1.502402180652177,1.3830677744648372,0.5286115774337701,0.8390548962659529,0.707882262287119,0.28361389633726714,0.1735218225815867,0.19790662729185937,0.10699697888837352,0.12840597110526103,0.06435224444414096,0.07169282747624214,-0.0629032258064516,3.0922200919842524,0.20446743580389073,0.3262241588604804,5.848399392878459,7.499273726774338,0.6337255034389747,0.3815977374268998,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,0.0,0.9433644673589784,1.987024220290228,2.266403741005187,0.8572511796303679,1.666151269212099,1.1244700433258208,1.4311996572326342,0.15806160422098317,5.893957685363079,1.0184425042666938,37.3842081524302,57.905649072822705,0.0,5.749511833283905,0.31086363498872666,5.687386274683562,5.749511833283905,23.20187978046503,1.7594303115625562,0.0,5.893957685363079,2.35032804186072,42.29693095364306,10.045266627482652,1.4311996572326342,0.0,1.7100000000000002,5.001988569988817,0.1988805077497433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.097085962965275,7.919952439211297,0.3773261150667432,0.3359769029883247,0.06643449060691493,-0.1003049556329155,-0.27090804404899943,-0.3056702579287783,-0.7531130624682854,-0.7652133410559501,0.0,0.4583333333333333,31,1,5,0,2,2,2,0,2,5,1,7,6,0,2,2,4,5.451400000000006,4.028719354838711,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2171050,Cc1ccc(S(=O)(=O)NC(=O)N2CCC(N3CCC(Oc4ccc(F)c(F)c4)CC3)CC2)cc1,6.0,0.42723849474663844,-0.18715239350514526,0.42723849474663844,1.367123859711116,0.020225604035348965,14.516941176470581,13.657176470588244,14.505431877882376,184,0,0.3307980550271379,-0.4902275111996596,0.4902275111996596,0.3307980550271379,0.032871972318339104,0.0527681660899654,0.07179930795847751,2.0117299452533004,67.54952850113946,1.4689620908300167,1.3276120936716953,0.49868552252251086,0.811433011340241,0.6756714633192693,0.293108220181054,0.17008727607063545,0.2154094865399069,0.10334559123692634,0.13618603868282622,0.060130146338653434,0.08185279164728654,-0.07999999999999996,3.1070539369745807,0.21065250503051874,0.3020150328174856,5.84785966011434,7.032199561182343,0.2834344907250155,0.34792734883040866,0.3837142282476468,0.0,10.023291153407584,6.031114512338072,0.1441149920838376,26.708283877484533,0.0,0.0,0.5190673207948113,1.6621548986254815,1.9253800304906226,0.46651623308469214,1.9565620255483784,0.4721884019336957,0.0,0.42690997280691434,0.0,1.4510878145126649,25.98743873726378,59.49482412743185,0.0,5.749511833283905,0.27799948728041707,13.575367279421462,5.749511833283905,0.0,1.8333552997332756,0.294802680982576,18.48633379938747,2.042246784405316,47.192414429160834,1.4118420783282006,0.0,0.0,2.322058823529412,5.033473680370322,0.646857772463247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3097042530851304,8.856314742442695,0.0,0.2682815474421364,0.0,-0.04029891932176868,-0.18853727519041263,-0.5991613035097191,-0.7231558038333927,-0.685310202367531,-0.18715239350514526,0.4583333333333333,34,1,7,0,2,2,2,0,2,5,1,10,6,0,2,2,4,3.6793200000000024,3.6197794117647075,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1 +CHEMBL425358,NC(=O)N(O)CCC#Cc1ccc(OCCN2CCN([C@H](c3ccccc3)c3ccc(Cl)cc3)CC2)cc1,6.515700160653214,0.3160600787127674,-0.12393979698218187,0.3160600787127674,0.7385569471619657,0.006270917754593199,14.028210526315814,13.152842105263167,14.005897857789499,198,0,0.33803932509116646,-0.4922632690103867,0.4922632690103867,0.33803932509116646,0.030470914127423823,0.04916897506925208,0.06717451523545707,2.013224346051265,67.74807250903693,1.4633548241080945,1.3524095717473854,0.5038813861162922,0.8347014707370611,0.6855017241907646,0.26643038186301315,0.16419552320430084,0.17414195670454363,0.10086061991025763,0.10583383666037903,0.06080569021077508,0.06329229858583578,-0.09315789473684205,3.228064085485355,0.204502335436843,0.3643719011702265,7.977481698569786,7.2481868075417255,0.2751731560401664,0.3239078177947419,0.0743074778067474,0.03766314887454301,0.0,6.031114512338072,0.3949829811248619,9.85775490903717,0.0,0.0,1.7299668284628122,1.2468793481414147,1.734010810589213,0.9786422674665672,1.5820677488924044,0.4640014316465944,0.0,0.3911325575438501,5.719716975726273,0.32607414130734275,45.54014334881195,100.26443098845516,0.0,17.590380470995193,0.2751731560401664,4.794537184071822,5.749511833283905,11.600939890232516,1.8853639176015826,0.0,11.840868637711289,1.8474718034178068,78.55144319962284,9.277517127630363,0.0,0.0,2.165,5.014704531972652,0.16224462474321164,0.0,0.0,0.0,0.0,0.0,11.840868637711289,0.0,5.209533821043797,1.5880180207067904,7.491123860124624,0.15656256453188003,0.26592346365288766,0.052781150269961497,-0.1366179140873285,0.044427467252993035,-0.6482000464746684,-0.09772178118461837,-0.8380740857231578,0.0,0.3,38,3,7,0,1,1,3,0,3,5,2,8,10,0,1,1,4,4.637500000000004,3.927839473684203,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL1935446,Fc1ccc(Cn2c([C@H]3CNCCS3)nc3ccccc32)cc1,8.886056647693161,0.6226490162346667,-0.15469741835274106,0.6226490162346667,0.1716529667422526,0.03465233274400362,14.23599999999999,13.447130434782613,14.222632469391327,118,0,0.12416257573364495,-0.3225022933865065,0.3225022933865065,0.12416257573364495,0.062381852551984876,0.09829867674858223,0.13610586011342155,2.2632945635409794,69.29362414381113,1.3728029391398908,1.266428415216216,0.5193195709087257,0.8003107997239679,0.6569431176834039,0.30343368226721984,0.17989035266166653,0.21539020400635028,0.11891286089722586,0.1481013213110523,0.07929549333145645,0.10159349292905824,-0.08043478260869563,3.289671454631254,0.21015391197525685,0.27548842430414733,2.985828884823036,7.122341496150634,0.4294310000469448,0.5675420616249575,0.0,0.0,0.0,0.0,0.0,9.374393568622029,0.0,11.761884949391115,1.0508554274197035,1.2927446227108772,1.4530472728312749,1.3625102270560345,1.2654414165607286,0.9910994080271146,0.0,0.6461257183489973,0.0,0.5096891023260784,18.698676253782047,65.54442649204918,0.0,0.0,0.23086145014297285,4.39041504767482,0.0,11.761884949391115,1.228250192283505,0.28247216018764976,5.817220841045895,1.7355104832075885,48.33934966130636,1.4118420783282006,11.033401435232523,0.0,1.297826086956522,4.8830072559935624,0.1908876107684704,0.0,16.32898459718247,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.0745538057922581,7.096432000356337,-0.01591365464597004,0.16964099488426607,-0.16594071069197924,-0.26362915129326336,-0.1235548444953344,-0.3842038936564942,0.0,-0.4541350882836489,0.0,0.2777777777777778,23,1,3,0,1,1,2,1,3,4,1,5,3,0,1,1,4,3.601200000000002,4.056682608695653,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL291882,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)c3sccc3Cl)CC2)cc1,7.100015437450608,0.43688791167925844,-0.15288076687589383,0.43688791167925844,0.0757733052298073,0.010693534591634983,14.936870967741923,13.928870967741942,14.908851339741961,168,0,0.26504535359163617,-0.493549662697645,0.493549662697645,0.26504535359163617,0.03850156087408949,0.06347554630593132,0.08532778355879292,2.2067620585256296,67.9302165488323,1.5966812042267053,1.4808188653504708,0.531542269445509,0.8711774674922702,0.7501731578837444,0.28870415962364615,0.15708364240960132,0.195614644149503,0.09547592253324055,0.13362172013838527,0.05412837873669989,0.08232914564128015,-0.06096774193548386,3.3364707559026088,0.19234422184483166,0.39433310040335534,7.05720028388643,7.64663959826067,0.31086363498872666,0.3427954524833937,0.18655628859241738,0.0,5.907179729351506,0.0,0.46738658383852,0.0,0.0,11.336785877934737,1.006409090651192,1.5585179919562204,2.2730673348980743,0.9042168138935565,1.8328855665555022,1.1170371110930224,0.0,0.31612320844196634,0.0,1.2489198910949217,39.04328366449601,51.03143994712369,0.0,5.749511833283905,0.1528020307677435,0.0,5.749511833283905,22.937725768167255,1.9526944452230135,0.0,0.0,3.2657969328632657,35.56820794798407,5.022633313741326,0.0,0.0,1.6080645161290323,5.033257942137537,0.3093249796175369,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,0.0,1.8977844543648206,8.311410557088037,0.1923896839965006,0.7833131501454809,-0.051006550451504526,-0.05673898701495165,-0.19934787662179582,-0.25327971327309556,-0.7192236972237319,-0.9931796490822153,0.0,0.5,31,0,5,0,1,1,1,1,2,5,0,7,12,0,1,1,3,5.391400000000006,4.0870645161290335,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL1824778,OC12CC3CC(CC(C3)N1Cc1cccc(F)c1)C2,5.0,0.7741614151762392,-0.22372159938536829,0.7741614151762392,0.6778448601662883,0.04655459011928018,13.754736842105261,12.693684210526314,13.744889077894745,102,0,0.21254892347288082,-0.37561469099427536,0.37561469099427536,0.21254892347288082,0.08033240997229918,0.12188365650969529,0.16066481994459836,2.325344768819976,64.40831549223121,1.618345192921786,1.538601387314371,0.48596980836700254,0.9001111608477474,0.801167108707913,0.2796803565782359,0.2107274034554731,0.2107274034554731,0.141171972357143,0.141171972357143,0.10289059066082956,0.10289059066082956,-0.048947368421052635,2.7913330779984546,0.1642941833986683,0.21215012102845945,1.9084681196801132,7.419421783667601,0.2688846416372217,0.6074845492113762,0.0,0.07532629774908602,0.0,0.0,0.25788998583423567,4.39041504767482,0.0,0.0,0.6360440744908731,3.2263594097050863,1.7408489734325727,0.2885807486674148,1.8707176740008533,0.0,1.4311996572326342,0.25788998583423567,11.787915370726157,2.6370716975411965,0.0,35.55034716339607,0.0,0.0,0.0,4.39041504767482,0.0,0.0,1.220147139026854,0.3419399833850497,17.605136211772052,3.340657292925165,24.16967483065318,0.0,0.0,0.0,1.2352631578947368,5.38644918517134,0.23107447619341157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.4460848539193059,9.661987503327952,0.0,-0.03567604527190991,0.22983340046544928,-0.30749749497752316,-0.5351137668355193,-0.527312374417531,-1.1095201441988631,-0.21880634124995033,0.0,0.625,19,1,2,2,2,4,1,0,1,2,1,3,3,2,2,4,5,2.9086000000000016,3.7234631578947393,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL402016,Cc1ccc2c(-c3nnc(SCCCN4CCc5cc6nc(C(F)(F)F)oc6cc5CC4)n3C)cccc2n1,5.800000874803202,0.3484783862149028,-0.13876011297022278,0.3484783862149028,0.004329435728505526,0.0047872042600772425,14.169897435897468,13.472051282051288,14.158767054974378,202,0,0.4684760513527742,-0.43282942938324964,0.4684760513527742,0.43282942938324964,0.02827087442472058,0.049967126890203814,0.07034845496383958,1.5561589435571686,71.31936024695393,1.3022986172028668,1.1700941428962859,0.4987222603559712,0.7532984863039471,0.6094032016267003,0.28418516524023174,0.18641181438437954,0.20624249802884032,0.12281379134472566,0.13950410352407988,0.08055656570397486,0.09202750935012169,-0.08820512820512819,3.7744180154292546,0.23859719356200082,0.2633636355930396,5.247418035294408,6.792994119443279,0.3560041106588508,0.14145386455426312,0.4247143877298174,0.0,0.0,12.067022439469383,0.1277943210499284,4.9839785209472085,13.171245143024459,10.197363616602075,0.7663882326251539,1.737541136401203,1.788032768678948,0.38748745155917436,1.3999712076070203,0.8657571984802738,0.0,0.7598033342855981,6.975826900282246,0.9564974825781538,25.19553593809799,65.00848585391142,0.0,11.387855989696924,0.0,13.171245143024459,0.0,11.761884949391115,1.4058427173137518,0.6640506466765251,6.851892117295679,1.6947425850818907,51.87051837251712,0.0,33.390501781036484,0.0,1.8684615384615386,4.731680691644046,0.3377242344365246,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,24.582471595549837,0.9489866927332294,7.082103983049499,-0.016794368120236873,0.14716441915200384,0.13125437798214165,-0.3297503111152702,-0.08225821405557945,-0.21623344692783228,-0.47318249738915924,-0.5286287289003536,0.0,0.35714285714285715,39,0,7,0,1,1,2,3,5,8,0,11,8,0,0,0,6,6.081720000000006,3.7096666666666622,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,2,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL2158822,O=C(O)c1ccccc1N1CCC(CN2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)CC1,8.199970640755867,0.4105388031458263,-0.1644312737103986,0.4105388031458263,0.747656271371202,0.019920805492825922,14.948548387096764,14.038096774193555,14.907990261806479,166,0,0.3373044832712717,-0.490284017716006,0.490284017716006,0.3373044832712717,0.03746097814776275,0.061394380853277836,0.08532778355879292,2.1105587109338115,65.91921115518163,1.502402180652177,1.3830677744648372,0.5286115774337701,0.839054896265953,0.707882262287119,0.28361389633726714,0.17352182258158666,0.19790662729185934,0.10880025951538948,0.13020925173227696,0.06672625722406067,0.07406684025616184,-0.0629032258064516,3.096122362838969,0.20446743580389073,0.3262241588604804,5.648639682889429,7.499273726774338,0.6337255034389747,0.3815977374268998,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,0.0,1.138281199864246,1.7921074877849603,2.0829396676282985,1.040715253007257,1.666151269212099,1.1244700433258208,1.4311996572326342,0.15806160422098317,5.893957685363079,1.0184425042666938,37.3842081524302,57.905649072822705,0.0,5.749511833283905,0.31086363498872666,5.687386274683562,5.749511833283905,23.20187978046503,1.7594303115625562,0.0,5.893957685363079,2.35032804186072,42.29693095364306,10.045266627482652,1.4311996572326342,0.0,1.7100000000000002,5.001988569988817,0.1988805077497433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.097085962965275,7.91898578092962,0.3773428249416889,0.3465176846830723,0.06799321134613699,-0.10706048142510273,-0.2761622977475527,-0.2991580770029335,-0.7554132959037644,-0.768565063082813,0.0,0.4583333333333333,31,1,5,0,2,2,2,0,2,5,1,7,6,0,2,2,4,5.451400000000006,4.028719354838711,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2158834,O=C(O)c1cccnc1N1CCC(CN2CCC(Oc3ccc(Cl)c(Cl)c3)CC2)CC1,8.0,0.4070262583429589,-0.16341892320568058,0.4070262583429589,0.7083044195193509,0.021285542092553685,14.9804193548387,14.102483870967749,14.940095067225831,166,0,0.33897042942380684,-0.490284017716006,0.490284017716006,0.33897042942380684,0.04058272632674297,0.06555671175858481,0.0894901144640999,2.089635092268977,64.37447382555023,1.4743298100714324,1.3491069227067716,0.5269087901918332,0.8252639170747088,0.6900504427871177,0.2819111090953303,0.17186397734771502,0.19624878205798774,0.10716488528555043,0.12857387750243796,0.0654379785101745,0.07277856154227566,-0.06516129032258061,3.0734232178636383,0.21038877803171085,0.32473642465574065,5.617842788386426,7.4287794519607475,0.6337255034389747,0.7487369074118038,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,9.77851570501903,0.0,0.0,0.7484477348537106,1.7921074877849603,2.282065319590064,0.6335669845378772,1.621933251271124,1.1286789627823195,1.4311996572326342,0.31883510489669953,5.893957685363079,1.0184425042666938,37.3842081524302,51.99370686831087,0.0,5.749511833283905,0.31086363498872666,5.817862777835028,5.749511833283905,23.20187978046503,1.9202038122382727,0.0,5.893957685363079,2.306110023919745,36.38498874913124,10.045266627482652,1.4311996572326342,0.0,2.1258064516129034,4.815489676396547,0.15466248980876846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,2.097085962965275,7.620606110156424,0.37721370496883894,0.4520585651219413,0.06804978982298421,-0.049315973938764524,-0.32758960995001724,-0.19903231172153188,-0.7938952812498953,-0.7618942763641032,0.0,0.4782608695652174,31,1,6,0,2,2,1,1,2,6,1,8,6,0,2,2,4,4.846400000000005,3.957590322580647,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL102840,CC(=O)c1ccc(OCCCN2CC[C@H](NS(=O)(=O)c3ccc(C#N)cc3)C2)cc1,4.853871964321762,0.4566806335909371,-0.20837551257004222,0.4566806335909371,1.0138584885467308,0.01625857428933689,14.25086666666666,13.410866666666674,14.238552576000023,158,0,0.2403608056364093,-0.493549662758313,0.493549662758313,0.2403608056364093,0.04777777777777778,0.07222222222222222,0.09444444444444446,2.2901981160088143,69.10646635485782,1.452482253340583,1.312762741293973,0.5066459606582305,0.8084906240033612,0.6632550561448656,0.29635004725488834,0.1629693534516106,0.21433452531678504,0.09626835848467483,0.1343671632064378,0.054746242632639865,0.08068389570065164,-0.09099999999999997,3.1100216250933697,0.21299253654948644,0.3283071674519765,5.890159078117612,7.068417506989244,0.3212257561550176,0.23871179705373685,0.19277483154549796,0.3341097051135861,0.0,0.0,0.15981790613572738,13.132916598063069,5.261891554738487,0.0,0.0,2.4811317088525584,1.4588561038353878,1.2264909028208515,1.7419748182871442,0.5268845366590841,5.261891554738487,0.3205009781528203,0.0,1.017037262127395,26.049564295864123,59.46625264470035,0.0,11.818733146076179,0.3150660855844727,0.0,5.749511833283905,0.0,1.7056136141919374,0.3341097051135861,11.33111286753076,2.2805795811835194,53.23483313682413,1.4118420783282006,0.0,0.0,3.316666666666667,4.906600402734246,0.6158075241046415,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,1.3015636793404513,7.8131967834851865,0.0,0.3121894022873588,0.306042089928579,-0.07831355704905447,-0.11650267227911335,-0.5057502402238984,-0.30667239519068723,-0.729702787277218,-0.20837551257004222,0.36363636363636365,30,1,7,0,1,1,2,0,2,6,1,8,10,0,1,1,3,2.582580000000001,3.7627333333333346,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL63631,CCCCCC(=O)c1ccc(OCCCN2CCN(S(=O)(=O)C(C)C)CC2)cc1,4.950000175844591,0.47556855948344745,-0.2460291468882315,0.47556855948344745,1.406115188961492,0.013068790813675468,14.641620689655156,13.390310344827594,14.628950987310379,164,0,0.21602211848818323,-0.4935496627218369,0.4935496627218369,0.21602211848818323,0.04280618311533888,0.06777645659928656,0.09036860879904875,2.9240183065011536,72.32191570211897,1.824250317375627,1.7219196083903183,0.5086953525602399,0.9569866311207688,0.8603599340981384,0.2893276350912638,0.15018509298158086,0.2096171392502115,0.0871377160561563,0.1277997259816209,0.04540424554325692,0.06280362952068251,-0.0496551724137931,3.049131467320244,0.16084601784549693,0.40241829929545464,7.39024527343796,7.806865322921624,0.33230250636725955,0.19825902873392776,0.1994222395298255,0.3456307294278477,0.0,0.0,0.16532886841626973,8.417796984328938,4.305215991296234,0.0,0.6757842041363599,1.7454934092380447,2.9497734999900924,0.6899836637628092,2.3205691429078894,0.5450529689576732,0.0,0.3174181283498866,0.0,1.987803121645441,39.04328366449601,29.733126322350174,0.0,5.749511833283905,0.1633401018551741,0.0,5.749511833283905,0.0,2.3336358960869124,0.3456307294278477,0.0,3.8663999157389837,24.16967483065318,0.0,0.0,0.0,2.3075862068965516,5.420133592060937,0.45559772994485376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.7016313111078605,11.011391159511659,0.0,0.4166404507639444,-0.17404957160961484,-0.06329084379876447,-0.15204133315047066,-0.25563674205659603,-0.7842618383760641,-1.4826071918671317,-0.2460291468882315,0.6818181818181818,29,0,6,0,1,1,1,0,1,5,0,7,15,0,1,1,2,3.5743000000000027,4.037768965517244,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL2207656,O=C(NC[C@@H](O)CN1CCC(Oc2ccc(Cl)c(Cl)c2)CC1)c1c[nH]c(=O)c2c(F)cccc12,8.599980364934842,0.44462913987642894,-0.14398963950568502,0.44462913987642894,0.522707743547667,0.013341986697794177,14.952264705882348,14.240735294117655,14.915082053764726,180,0,0.2583332739941283,-0.49028401760240736,0.49028401760240736,0.2583332739941283,0.04411764705882353,0.06747404844290657,0.08996539792387542,1.9798033288959735,66.87633749662575,1.3348196669698822,1.1796625696289118,0.5182466252770564,0.7615705733295386,0.6016320735702096,0.27672776370417074,0.17308000986448419,0.1953132141591446,0.10932099440817955,0.12884095790004757,0.06805276621621703,0.07474565074548577,-0.07794117647058821,3.1224829006861956,0.24945619758334803,0.31573423544761203,5.696618416548488,7.026562356858992,0.736246985272805,0.5190220794494056,0.08304953401930593,0.042094107565665714,11.466446624403513,0.0,0.28203159906304837,4.39041504767482,0.0,0.0,1.037844623405636,0.9080325272249601,1.6851930127032018,1.2398030728960845,1.4894187415554399,1.1729855276101804,1.4311996572326342,0.44666842218729724,0.0,0.7325260546046687,25.98743873726378,74.2071504961439,0.0,5.749511833283905,0.45899832947471864,4.39041504767482,5.749511833283905,23.20187978046503,1.7785757461745542,0.0,5.817220841045895,1.5261696517059482,47.221944640866354,12.868950784139054,10.772448428929591,0.0,2.7841176470588236,4.644758948583167,0.28203159906304837,0.12912985434337704,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.7935163596390822,6.489383496625102,0.34295901533382345,0.7302227983688063,-0.04796352076381391,-0.10082052885078119,-0.1683026213883917,-0.2233388031861679,-0.5875122273117057,-0.5555426415066098,0.0,0.3333333333333333,34,3,7,0,1,1,2,1,3,5,3,10,8,0,1,1,4,3.608100000000001,3.806432352941177,0,1,0,0,0,1,1,0,0,0,1,1,0,1,0,1,2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL271511,Cc1ncoc1-c1nnc(SCCCN2CCc3nc4ccc(C(F)(F)F)cn4c3CC2)n1C,5.4999996786570655,0.41301500421031295,-0.16491760538435105,0.41301500421031295,0.013096773252555316,0.008757537263187457,14.457147058823521,13.745617647058829,14.446221001411786,180,0,0.4173279146252547,-0.4398506952554453,0.4398506952554453,0.4173279146252547,0.03806228373702422,0.06401384083044982,0.08823529411764706,1.7290861626324294,67.9284192086219,1.3206733742636374,1.1788495637780916,0.49698181615831877,0.754311475243678,0.6084572134320956,0.2795306422829111,0.17873575537499362,0.2014827160259928,0.11687492596718828,0.13601969581997697,0.07374751011728659,0.08690535724080793,-0.08411764705882352,3.7253165659210667,0.2378830766364682,0.2665632812289543,4.43389554503461,6.807843837927242,0.5377898506457933,0.20640987579229259,0.5084227952555105,0.17130601464705666,0.0,6.176298517443475,0.0,9.967957041894417,13.171245143024459,10.197363616602075,0.3459377926291505,0.9354857093608115,2.2853631554644314,0.6195171514677816,1.4849000420047977,0.5120312402987895,0.0,1.00097131304118,6.975826900282246,1.097158877074941,25.19553593809799,47.27265924037593,0.0,11.58465191687437,0.0,13.171245143024459,0.0,11.761884949391115,1.7420164876911208,0.76170515354072,6.851892117295679,1.8210695801663854,34.20101118300761,0.0,17.231829137642098,0.0,2.2729411764705882,4.430619050505526,0.38738956303013117,0.0,8.967794254053148,0.0,0.0,0.0,0.0,0.0,20.16532065849649,1.0975104789746657,7.284257859297481,-0.01792842139602814,0.17248633120434745,0.16794895934305187,-0.34792704220779014,-0.05900344684982971,-0.09331921434901616,-0.6306926906841204,-0.5983713539659414,0.0,0.45454545454545453,34,0,8,0,1,1,0,4,4,9,0,12,8,0,0,0,5,4.028020000000002,3.5476470588235314,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1092767,CC(c1nccs1)c1c(CCN(C)C)sc2ccccc12,7.455931955649724,0.43715627587013645,-0.19062769949249544,0.43715627587013645,0.10194113756613699,0.03251973161320986,15.071190476190461,14.111190476190478,15.052704316190503,110,0,0.09971959826142177,-0.30903977362391755,0.30903977362391755,0.09971959826142177,0.07029478458049887,0.11337868480725624,0.14965986394557823,2.6624748533272142,69.59041566945527,1.5261677892302457,1.4386154177108401,0.5639960444658616,0.8640781983566577,0.7349776461751248,0.33654874912062255,0.1757336888557229,0.26218927684098514,0.11572271636907215,0.1968051113869818,0.07785211212705112,0.1467842604049648,-0.05857142857142857,3.335627639606809,0.1901021240230279,0.298101966523991,3.0255298865516886,7.700925368524043,0.23332903480240372,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,22.673571755869474,1.189483249537408,1.776984434081855,2.5089292327007096,0.6301035730416231,1.305484339209733,1.5599864708001605,0.0,0.4706613453236993,0.0,0.9104178430470542,20.448513484880436,51.146906833386595,0.0,0.0,0.0,0.0,0.0,22.673571755869474,1.4444000826989583,0.30347261434901807,0.0,2.6480592051578222,35.698684451135534,0.0,10.086144130933896,0.0,0.7680952380952382,5.033345184954264,0.06527421696048667,0.0,22.673571755869474,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.2402101222492465,7.712790321953563,0.016310453634716598,0.08790073341211853,-0.10038440255153516,-0.05012527894755786,-0.15708622403988054,-0.16684116011189887,-0.217429635547732,-0.7203729030398899,0.0,0.35294117647058826,21,0,2,0,0,0,1,2,3,4,0,4,8,0,0,0,3,4.613700000000004,4.46257142857143,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0 +CHEMBL1243394,FC(F)(F)c1ccc(SC[C@H](c2c[nH]cn2)C2CCNCC2)cc1,6.552841968657781,0.5621916575124629,-0.2266252371774037,0.5621916575124629,0.20381808230383225,0.03273811795688072,14.809541666666656,13.969541666666672,14.797208470833356,130,0,0.4159108286252466,-0.35089294907939983,0.4159108286252466,0.35089294907939983,0.06076388888888889,0.09027777777777778,0.11458333333333333,2.554606706413579,60.4855737354516,1.4485444384774577,1.3076576039996424,0.5083449615382977,0.8063250397450469,0.6650526240615623,0.28680551530855436,0.16772643960443392,0.20174713047642245,0.10311281680365614,0.1328809213166461,0.06063712693184209,0.08592816634211604,-0.061250000000000006,3.134073738988062,0.2194485013875239,0.31711554390125457,4.329150365305546,7.134004715614595,0.42861735931323447,0.11594169310410087,0.05882675326367503,0.0,0.0,6.176298517443475,0.0,4.9839785209472085,13.171245143024459,11.761884949391115,0.0,2.3251334036377878,1.6298498304536846,1.017272665890116,1.694524304614368,0.49007853955796316,0.0,0.6362831310193683,5.893957685363079,1.237982895040962,18.698676253782047,47.903321241979626,0.0,0.0,0.22124222305368232,13.171245143024459,0.0,11.761884949391115,1.1941524185399377,0.25734577156014476,5.893957685363079,2.273785041067971,41.541425230951944,2.8236841566564013,0.0,0.0,1.69625,4.96996845686614,0.6059168207997783,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.0886074838145892,8.574469864714484,-0.028463216883975805,0.07571201538955717,-0.034352218959454894,-0.32404791610308475,-0.3692421688003907,-0.27404276566253477,-0.7037498644107071,-0.3398948403950059,0.0,0.47058823529411764,24,2,3,0,1,1,1,1,2,3,2,7,5,0,1,1,3,4.304000000000003,3.7121000000000013,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL62312,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)c3ccco3)CC2)cc1,6.399996913372259,0.4493572544556593,-0.1592106458906413,0.4493572544556593,0.8454322771351612,0.013579674712343762,13.750999999999985,12.675800000000006,13.741206916800028,162,0,0.2891330544350442,-0.493549662697645,0.493549662697645,0.2891330544350442,0.03888888888888889,0.06555555555555555,0.08888888888888888,2.2067620585256296,69.87238953793194,1.6499039110342621,1.5509140117618458,0.48424734509517897,0.9002167164086792,0.7855461885963823,0.2522128552630488,0.15602035593976754,0.15602035593976754,0.09422288809292091,0.09422288809292091,0.053299570941123316,0.053299570941123316,-0.08666666666666666,3.3364707559026088,0.1688497490689556,0.38502387152777773,6.455392391230106,7.443383260434407,0.46846412072346244,0.2373423463151375,0.3847830788413127,0.0,5.907179729351506,0.0,0.4829661366331373,0.0,0.0,0.0,0.6532580639984812,1.6333454016212843,2.3488362460613437,0.9749100850599889,2.086912068548138,0.3896808225238815,0.0,0.3266606487233652,0.0,1.290550554131419,39.04328366449601,53.81742579139195,0.0,5.749511833283905,0.15789543179333496,0.0,5.749511833283905,0.0,2.0177842600637805,0.0,0.0,3.449785456670153,46.91087781787386,0.0,0.0,0.0,2.099666666666667,5.293899401684397,0.31963581227145477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.417150937053347,1.6200378917082374,8.965227086206438,0.0,0.8302602778634587,0.0,-0.05899294090310436,-0.26411116867572315,-0.3152160229991419,-0.7849404568637763,-1.038893441294818,0.0,0.5,30,0,6,0,1,1,1,1,2,5,0,6,12,0,1,1,3,4.269500000000004,3.869266666666668,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3935303,O=C(O)CCc1ccc2cccc(N3CCN(CCc4ccc(OCCCN5CCCCCC5)cc4)CC3)c2n1,7.899974269892138,0.3068751711351626,-0.12473325363751261,0.3068751711351626,0.707722847247708,0.00779989349775273,13.618500000000035,12.50970000000001,13.60853353170003,214,0,0.30323709841859964,-0.49355009191814947,0.49355009191814947,0.30323709841859964,0.023125,0.042499999999999996,0.061875,1.7379780937482432,77.80925270724035,1.6647743864540634,1.5878399813347854,0.48783998133478557,0.9181478959851951,0.810860491166034,0.2631542839044373,0.16884968355072189,0.16884968355072189,0.10505769426940444,0.10505769426940444,0.0650262206060047,0.0650262206060047,-0.07899999999999999,1.1332882320434732,0.16435931117864264,0.3616341290703917,8.179568498246361,7.505031998704794,0.4911372651652054,0.14373779583209761,0.0,0.0,1.4311996572326342,5.969305287951849,0.36696063589673766,0.0,0.0,0.0,1.073948583524381,1.7054636324074892,2.37038686973261,1.1174343869774703,1.8395706561074647,0.5639904123679116,1.4311996572326342,0.3695949495662041,0.0,1.2745849802658757,63.43377244829432,65.6391478555151,0.0,5.749511833283905,0.2409193171162632,5.687386274683562,5.749511833283905,0.0,2.1098943544787767,0.4385096746682645,0.0,2.710938670246027,54.38176836896965,0.0,12.33412458931369,0.0,1.7285000000000004,5.454131682603647,0.11986342960179555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,1.6277670131588053,9.522538968182554,0.0,0.3182183962269415,0.05829174388166418,-0.17203085626188,-0.10591074165883771,-0.3807184283024557,-0.8959730317722212,-1.0714993836290978,0.0,0.5151515151515151,40,1,7,0,2,2,2,1,3,7,1,7,12,0,2,2,5,5.261600000000006,4.037969999999992,1,0,0,0,0,1,0,0,1,1,1,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1669409,C[C@H](C1=C(CCN(C)CC#N)Cc2ccccc21)c1cnccn1,7.494850021680094,0.3899830132383293,-0.18220195064265424,0.3899830132383293,0.8618905266677643,0.031904659449997035,13.26766666666665,12.343666666666666,13.25768527933336,122,0,0.08631118457957102,-0.29336108089118423,0.29336108089118423,0.08631118457957102,0.06423611111111112,0.10243055555555557,0.13715277777777776,2.7886519928094877,70.10358301439449,1.5052864101260326,1.4078689325833265,0.4912022659166597,0.8490766511689372,0.7203689325833263,0.26203559924999303,0.17514350772395268,0.17514350772395268,0.11725925386197629,0.11725925386197629,0.07840678107421707,0.07840678107421707,-0.10458333333333332,3.1328590340236815,0.1816674904598814,0.30722388182323973,3.3663622647541507,7.247647691711271,0.0,0.0,0.0,0.0,0.0,0.0,0.6194944488643706,0.0,5.261891554738487,0.0,1.5247779782507553,1.5175701756835112,2.030390176347342,1.2748681665620274,1.2565286764893682,0.23221268875288614,5.261891554738487,0.6194944488643706,0.0,1.0621541502215632,19.969546268914137,65.08229597140918,0.0,6.069221312792274,0.0,0.0,0.0,0.0,1.4515588767357928,0.2655385375553908,11.33111286753076,2.754012246582312,48.26146499316672,0.0,5.573104530069267,0.0,2.200416666666667,5.042356504440025,0.2763604212878628,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,9.967957041894417,1.1994137366489424,7.60485758846431,0.0,0.24846434492926375,0.3899830132383293,-0.2989101244278575,-0.16049812479003955,-0.16307632152944607,-0.4778717195101088,-0.6741986563744512,0.0,0.35,24,0,4,1,0,1,1,1,2,4,0,4,8,0,0,0,3,3.435480000000002,3.968333333333335,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1093623,COc1ccc2c(c1)CC(CCN(C)C)=C2[C@@H](C)c1nccs1,8.602059991327963,0.40318908360445627,-0.18938199373952488,0.40318908360445627,0.07336984694398074,0.034513718946115796,14.281782608695632,13.22995652173913,14.267866712521768,122,0,0.11868805505577633,-0.4967570114891364,0.4967570114891364,0.11868805505577633,0.06994328922495274,0.11153119092627599,0.14366729678638943,2.744323583757633,68.55420393827221,1.610848851036311,1.5309097292142453,0.5229313196893639,0.8952585767660532,0.7797621986816358,0.29352291959153687,0.17875144872774998,0.2133143453160478,0.11952134025663551,0.1491782780486549,0.0813400737024152,0.1023562873473602,-0.07173913043478261,3.2884181424280965,0.17145845412190192,0.2978563338759536,3.331823353580933,7.64761593212649,0.41899011672393593,0.2499787753601698,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,11.336785877934737,0.8029311023925322,2.412276023131004,1.993563647342823,1.0005062871781352,1.6363073174732756,0.7352126264349567,0.0,0.4297342718172907,0.0,1.1083347654485878,27.486465943763026,51.36389695378826,0.0,5.749511833283905,0.20595056320869778,0.0,5.749511833283905,11.336785877934737,1.62479800850264,0.27708369136214694,0.0,2.963108988361749,35.22937027354151,0.0,5.573104530069267,0.0,1.102608695652174,5.241938634655324,0.0595981980943574,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.3707585561702198,8.739117595225776,0.003189993345390467,0.1167010807757757,-0.07680163504912349,-0.252554347826087,-0.21478548880636528,-0.17365198494856884,-0.3915961818265036,-0.7023679422641974,-0.1487003639884154,0.42105263157894735,23,0,3,1,0,1,1,1,2,4,0,4,10,0,0,0,3,4.216800000000004,4.23121739130435,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL105967,N#Cc1ccc(-c2ccc(OCCCN3CCCNCC3)cc2)cc1,5.4100001618584095,0.36823164701325567,-0.18550979908521475,0.36823164701325567,0.7133832543630378,0.032925129192679134,13.418039999999984,12.410040000000002,13.407990496800029,130,0,0.12224522896423472,-0.49354969139721966,0.49354969139721966,0.12224522896423472,0.0464,0.07519999999999999,0.10400000000000001,2.301051026314827,68.93038516736807,1.5798846932411144,1.4899955630785495,0.4899955630785495,0.8840007272688634,0.7578841068985479,0.25999556307854954,0.16105129116855035,0.16105129116855035,0.09831633242141312,0.09831633242141312,0.05685558988854169,0.05685558988854169,-0.09399999999999999,2.9832709375718154,0.1722683497473249,0.3686468907307163,5.3173668877584275,7.390611404112874,0.5978634415175561,0.28645415646448424,0.0,0.0,0.0,0.0,0.0,0.0,5.261891554738487,0.0,0.9667869932261272,2.4414458794135125,1.547247953573237,1.27596974436431,1.5618764152085416,0.0,5.261891554738487,0.40838892336555416,0.0,0.5098339921063504,39.04328366449601,53.90280115300335,0.0,22.94563612947017,0.40186705228353703,0.0,5.749511833283905,0.0,1.7577277358138594,0.0,11.33111286753076,2.048300265697643,48.33934966130636,1.4118420783282006,11.126902983393991,0.0,1.9316,5.311122900838996,0.21047566218953948,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,1.5618764152085416,8.405811443046378,0.0,-0.04364923646569226,0.33014590273190464,-0.09771773584851477,-0.05894302616108171,-0.2981805921710409,-0.35277137475255366,-1.044695380379401,0.0,0.38095238095238093,25,1,4,0,1,1,2,0,2,4,1,4,6,0,1,1,3,3.289480000000001,4.025268000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1222553,O=C(O)CCN1CCN(C2=Cc3ccccc3Cn3ccnc32)CC1,7.299988937677887,0.48201543447374545,-0.17401021208095524,0.48201543447374545,0.13632173720038976,0.03686368289561965,13.536439999999986,12.649400000000004,13.526971037760024,130,0,0.3041432304174746,-0.48119504728995577,0.48119504728995577,0.3041432304174746,0.054400000000000004,0.08800000000000001,0.1216,2.230345249663985,68.11696801087001,1.4629787040086994,1.3642140385171024,0.4842140385171024,0.8377355286474792,0.7010468542470999,0.2647169226285453,0.17888529015260132,0.17888529015260132,0.11769238627463269,0.11769238627463269,0.07711676152084734,0.07711676152084734,-0.10399999999999998,3.194317263588361,0.1826328401787463,0.2688631807752687,3.3003753544558996,7.101875098932242,0.5830327027899618,0.0,0.23297617991999708,0.0,1.4311996572326342,5.969305287951849,0.38777787659689195,4.9839785209472085,0.0,0.0,0.9667869932261272,0.6871589891771823,2.491720679075479,1.1955930177839227,1.5475710021901465,0.7087366538817299,1.4311996572326342,0.7740359052175808,0.0,0.514791383425813,32.48429842157972,53.46677273367661,0.0,0.0,0.0,0.0,0.0,0.0,2.5165323812431324,0.4516558747355107,0.0,2.0844064824919184,36.5154652522827,0.0,13.180310716324033,0.0,2.464,5.0535636619858355,0.19178148736287287,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,10.092786712054421,1.20868517347229,7.377411180944574,0.0,0.5725102872827397,0.1388591316069241,-0.14246309275148142,-0.14146263651153695,-0.22922972126891888,-0.25655339508703806,-0.9890717542152629,0.0,0.3684210526315789,25,1,6,0,2,2,1,1,2,6,1,6,4,0,1,1,4,1.8352,3.836312000000002,1,0,0,0,0,2,0,0,1,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1910381,COc1ccc(CN(CCN(C)CCN2CCN(C(=O)c3cc4ccccc4[nH]3)CC2)c2ccccn2)cc1,8.15002808767115,0.36819603826045394,-0.13550540574584335,0.36819603826045394,0.21937470366195821,0.00818246060769559,13.504743589743603,12.522589743589753,13.495016011692334,204,0,0.26988935889569177,-0.49676820001250693,0.49676820001250693,0.26988935889569177,0.02827087442472058,0.04930966469428008,0.07034845496383958,1.8190970290606638,76.41733074571842,1.5473838536439422,1.4615327731776278,0.48717379881865325,0.873862703770227,0.7471101229537285,0.2612841333255245,0.17154976278220677,0.17154976278220677,0.10843206152669242,0.10843206152669242,0.06590581792841019,0.06590581792841019,-0.09948717948717946,3.500946888899515,0.17626817311720727,0.327649489659116,6.95947693405591,7.276689136757202,0.6259896260661727,0.4425975027171127,0.036201078931492325,0.0,5.907179729351506,0.0,0.2485755619210846,4.9839785209472085,0.0,0.0,0.9296028781020453,1.2511228368707437,2.394036372614157,1.0240040463325097,1.5810591998589298,0.5802042933145536,0.0,0.6323259226596896,0.0,0.1665861457516909,70.88856656454287,89.93929918931977,0.0,5.749511833283905,0.24709673550385966,5.817862777835028,5.749511833283905,0.0,2.475808911455687,0.1665861457516909,0.0,1.7120508525362943,78.68191970277431,1.4118420783282006,10.902924932081056,0.0,1.742051282051282,5.3949213821354265,0.26352747201930005,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.1960737033832176,8.445915429490189,0.0,0.3281371892174032,-0.023512305331584986,-0.11125257023265939,-0.14483094701786278,-0.4231190306302315,-0.03778426795588863,-1.2614841397574528,-0.09044542615797954,0.3548387096774194,39,1,8,0,1,1,2,2,4,6,1,8,13,0,1,1,5,3.967900000000003,4.010774358974351,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,5,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL896,OCCOCCN1CCN(C(c2ccccc2)c2ccc(Cl)cc2)CC1,8.698970004336019,0.3717769666075267,-0.17880801125615348,0.3717769666075267,0.797666475164446,0.027703556276860195,14.419692307692289,13.372923076923078,14.39138868400003,140,0,0.2101556301226801,-0.39398033266424715,0.39398033266424715,0.2101556301226801,0.04289940828402367,0.0695266272189349,0.09615384615384616,2.6259968580609567,63.847444071067315,1.6152737435010716,1.5226495478821873,0.5132621996521279,0.8981027200623513,0.7712016826601595,0.2700369204503658,0.16060287355166694,0.17513996866740647,0.1015420766872542,0.10881062424512396,0.06427218171832967,0.06790645549726454,-0.054999999999999986,2.9843537549349812,0.18293958131958002,0.38641198993155546,5.286236403307169,7.635335827432717,0.37867965941951004,0.0,0.0,0.055046140662793626,0.0,0.0,0.37691613314234446,0.0,0.0,0.0,2.072995032456753,0.8927592461046376,1.9697891268085879,1.8318071190700793,1.7494382155897308,0.4461899957781737,1.4311996572326342,0.37691613314234446,0.0,0.2314574026288325,52.16125415032858,70.53130466610497,0.0,0.0,0.0,0.0,0.0,11.600939890232516,2.6346569792449768,0.18218703668461728,0.0,2.0301737658526693,54.38176836896965,5.022633313741326,0.0,0.0,1.3823076923076925,5.327318105634007,0.05272148292962386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,1.8192732096815645,8.837723333703822,0.22664328750708046,-0.0724994398730645,0.09948570414826446,-0.12063239162155065,0.0,-0.6245692329181515,0.0,-1.3707239105190523,0.0,0.42857142857142855,26,1,4,0,1,1,2,0,2,4,1,5,9,0,1,1,3,3.055900000000001,4.063646153846156,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1091782,C[C@@H](c1cscn1)c1c(CCN(C)C)sc2ccccc12,8.337242168318426,0.43733484729870786,-0.1911753309127884,0.43733484729870786,0.08802272297807967,0.03251973161320987,15.071190476190461,14.111190476190478,15.052704316190503,110,0,0.095963707508856,-0.30903977364069335,0.30903977364069335,0.095963707508856,0.07029478458049887,0.11337868480725624,0.14965986394557823,2.6768507362625575,70.5189870980267,1.5261677892302457,1.4386154177108401,0.5639960444658616,0.8640781983566577,0.734977646175125,0.33654874912062255,0.1768259711121055,0.253561361705371,0.11681499862545473,0.18817719625136767,0.07815401151765358,0.144399563311891,-0.05857142857142857,3.328588214891733,0.1901021240230279,0.298101966523991,3.0255298865516886,7.700925368524043,0.23332903480240372,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,22.673571755869474,1.189483249537408,1.776984434081855,2.21498184170953,0.9240509640328021,1.305484339209733,1.5599864708001605,0.0,0.4706613453236993,0.0,0.9104178430470542,20.448513484880436,51.146906833386595,0.0,0.0,0.0,0.0,0.0,22.673571755869474,1.4444000826989583,0.30347261434901807,0.0,2.6807403622052366,35.012380153139844,0.0,10.086144130933896,0.0,0.7680952380952382,5.033345184954264,0.06527421696048667,0.0,11.336785877934737,11.336785877934737,0.0,0.0,0.0,0.0,4.9839785209472085,1.2402101222492465,7.729020377108152,0.02029648177692171,0.08651888444972344,-0.07021648430095137,-0.12578871904003536,-0.1607182787136019,-0.16885333807244227,-0.18198991402116413,-0.723507104424699,0.0,0.35294117647058826,21,0,2,0,0,0,1,2,3,4,0,4,8,0,0,0,3,4.613700000000003,4.46257142857143,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0 +CHEMBL107293,Cc1ccc(S(=O)(=O)N[C@H]2CCN(CCCOc3ccc(C(=O)C4CC4)cc3)C2)cc1,5.259637310505756,0.44692571377186646,-0.20612972605216776,0.44692571377186646,1.1735177864366042,0.014542529980498518,14.276806451612893,13.301322580645168,14.26427833677422,166,0,0.2403596501536084,-0.49354966273433587,0.49354966273433587,0.2403596501536084,0.04162330905306972,0.06555671175858481,0.0874089490114464,1.8828041016156327,73.27650041772368,1.5602374457751915,1.4495376981715882,0.5081343620724825,0.8605818962272658,0.7394853189224513,0.30377079419021524,0.1742670066023654,0.22397523743963096,0.10494546542842649,0.14181527644948733,0.05987956825321565,0.08498052283516239,-0.07161290322580645,3.3698481667873543,0.18771447824138182,0.30664798569280693,5.93391126410792,7.303511325945537,0.31086363498872666,0.2310114165036163,0.18655628859241738,0.32333197269056724,0.0,0.0,0.15466248980876846,13.132916598063069,0.0,0.0,0.5692996421620511,2.4224181823519007,1.823013986492769,0.8116791703269761,1.90687217191824,0.5098882612829846,0.0,0.31016223692208417,5.893957685363079,1.3953860537574392,26.049564295864123,59.46625264470035,0.0,5.749511833283905,0.30490266346884454,0.0,5.749511833283905,0.0,1.6505938201857457,0.32333197269056724,12.745849802658757,2.618230254894184,53.23483313682413,1.4118420783282006,0.0,0.0,2.442258064516129,5.349607082904814,0.4262043280129277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4806678439053114,8.916367278226845,0.0,0.32253361050119383,0.0,-0.08885300333137532,-0.22244941361367163,-0.5687478332949347,-0.5092970492736013,-0.7133163362805687,-0.20612972605216776,0.4583333333333333,31,1,6,1,1,2,2,0,2,5,1,7,11,1,1,2,4,3.4094200000000017,3.8694838709677435,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL1669417,FC1CCN(CCC2=C(Cc3cnccn3)c3ccccc3C2)C1,7.978810700930063,0.6421441377809872,-0.19280832960236038,0.6421441377809872,0.9237471430354589,0.03515057405093235,13.475624999999985,12.551625000000001,13.46582399683336,124,0,0.11395319575831388,-0.3000257199769698,0.3000257199769698,0.11395319575831388,0.05902777777777778,0.09722222222222222,0.13368055555555555,2.220684588041533,69.67751791067853,1.4966569609099265,1.404983552479546,0.48831688581287924,0.8465491440114445,0.7293429091981029,0.2710095758647695,0.18301776757831156,0.18301776757831156,0.12068460261927061,0.12068460261927061,0.08074393388326387,0.08074393388326387,-0.08624999999999998,3.1833519288610157,0.18174594846571157,0.28390655033705164,3.2427048282100337,7.196277882041617,0.20416290545210325,0.25615529311299906,0.0,0.0,0.0,0.0,0.41533154341226736,4.39041504767482,0.0,0.0,1.239282473363435,1.4924492590604748,2.6488670572126924,0.6941665185087591,1.4394626368091525,0.23221268875288614,0.0,0.6194944488643706,0.0,1.3183094433345623,19.490579052947837,65.08229597140918,0.0,0.0,0.0,4.39041504767482,0.0,0.0,1.6877572025168626,0.5310770751107816,0.0,2.488473709026921,48.261464993166726,0.0,5.573104530069267,0.0,1.2091666666666667,5.278554830221095,0.0,0.18293396031978415,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.2565286764893682,8.250316152312163,0.0,0.2453015393455978,0.0,-0.2786639457094566,0.0,-0.19100856643289899,-0.9839233824070384,-0.542021797108368,0.0,0.4,24,0,3,1,1,2,1,1,2,3,0,4,5,0,1,1,4,3.462900000000002,3.8905000000000025,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1669425,C[C@H](C1=C(CCN(C)Cc2ccncc2)Cc2ccccc21)c1cnccn1,8.309803919971486,0.33678911750696244,-0.1637269216824738,0.33678911750696244,0.8854090451862828,0.02191803639023781,13.232142857142843,12.29614285714286,13.221990958285742,142,0,0.08598397508629632,-0.30179512796581914,0.30179512796581914,0.08598397508629632,0.04336734693877551,0.07525510204081633,0.10586734693877552,2.3246469872136286,74.12196249219116,1.5004866138918895,1.4210305136428512,0.4924590850714226,0.8594673422103233,0.732587899276779,0.2683021849910647,0.18043039225445862,0.18043039225445862,0.11962972461829995,0.11962972461829995,0.07951334971874734,0.07951334971874734,-0.10178571428571426,3.250005102334151,0.17865587664305835,0.3015765451671781,4.020609724691565,7.252951678317392,0.17499677610180278,0.0,0.0,0.0,0.0,0.0,0.5339976986729152,0.0,0.0,0.0,1.3069525527863617,1.9310704686938516,2.5111975518079315,0.7418668611686028,1.27284723072949,0.19903944750247385,0.0,0.7089944747747179,0.0,1.1424485460583378,13.47268658459819,95.07637530006228,0.0,0.0,0.0,0.0,0.0,0.0,1.190161852796082,0.45963516377304725,0.0,2.7550992726554755,72.69209283012283,0.0,5.573104530069267,0.0,1.4967857142857144,5.393236979829062,0.14686698816109503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.951935562841626,1.1259802425683947,7.881235818561623,0.0,0.32921978412037456,0.0,-0.32160081276409214,-0.14108428094598802,-0.2736440222059204,-0.5091949943901801,-0.6048124447567705,0.0,0.2916666666666667,28,0,4,1,0,1,1,2,3,4,0,4,9,0,0,0,4,4.507100000000004,4.025035714285716,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL549599,CNC1CCN(c2nc3ccccc3n2Cc2ccc(F)cc2)CC1,8.619788758288394,0.5788646512808323,-0.1718482847352798,0.5788646512808323,0.06609823790627356,0.03165173700498202,13.537199999999984,12.609840000000002,13.527626998240025,130,0,0.20636633324506656,-0.3420989089522756,0.3420989089522756,0.20636633324506656,0.054400000000000004,0.0848,0.1152,2.292961851971336,71.6284814715914,1.4977884435288227,1.406672754200362,0.4866727542003623,0.8528820032157146,0.7248905523801744,0.26700200856017614,0.18058560069517746,0.18058560069517746,0.11944527619008723,0.11944527619008723,0.07782674006129327,0.07782674006129327,-0.09599999999999997,3.347294124822299,0.17856790123456792,0.27370706799247513,3.2408942492462,7.168212591437399,0.5910729092772083,0.28916251677496385,0.0,0.23793357123945977,0.0,0.0,0.0,9.374393568622029,0.0,0.0,0.9667869932261272,1.978192121011647,1.418428580440967,1.2495138672500266,1.4383578144699145,0.6792696286487606,0.0,0.5944356608810776,0.0,1.010424078212974,24.86945599976461,59.72002199404925,0.0,0.0,0.40838892336555416,10.338754328661313,0.0,0.0,1.4215406762400937,0.2598743873726378,5.817220841045895,1.9386395812040251,48.33934966130636,1.4118420783282006,11.033401435232523,0.0,1.3236,5.285665360745825,0.1756166019069928,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.2627412125629214,8.229690037606561,0.0,0.13015269431846807,-0.037753757520476265,-0.13592223500638906,-0.133086675537558,-0.5690489903229102,-0.34369656947055943,-0.6436678374004692,0.0,0.35,25,1,4,0,1,1,2,1,3,4,1,5,5,0,1,1,4,3.411900000000002,3.9811880000000013,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3959919,COc1cc2c(cc1OC)CN(CCCCc1nc3cc(Cl)ccc3s1)CC2,6.487728577663157,0.31654173582777284,-0.16202755553830886,0.31654173582777284,0.18127776432655485,0.017363727284013506,14.891928571428556,13.991928571428573,14.861875954285738,148,0,0.16055674003168807,-0.49285922397583204,0.49285922397583204,0.16055674003168807,0.044642857142857144,0.0739795918367347,0.10331632653061225,2.0300331017440802,69.34255358712885,1.4789761033357485,1.374897733407169,0.5381986450838184,0.8340267480955843,0.7064914677373607,0.3027222196636804,0.175675858726132,0.2248556887179894,0.1140875044145336,0.15248807409142612,0.07331585944668696,0.10419092897039925,-0.06499999999999999,3.4206739534643296,0.20195055964416492,0.31005418874217316,4.266971749249647,7.490116923035304,0.33834735384286063,0.0,0.41067941666313607,0.0,0.0,0.0,0.17499677610180278,4.9839785209472085,0.0,11.336785877934737,0.4143192817940184,2.6188412789765687,1.3288204453127253,1.5849461916634198,1.5622389218519863,1.1840838000804506,0.0,0.3529960089927745,0.0,1.142448546058338,27.069624286397065,51.369253532304555,0.0,11.49902366656781,0.33834735384286063,0.0,11.49902366656781,22.937725768167255,1.3197683049355269,0.6872396245348108,0.0,2.255333585255753,30.212093538316473,5.022633313741326,10.216620634085363,0.0,1.235357142857143,4.726538257977488,0.0,0.0,16.036705794403836,0.0,0.0,0.0,0.0,0.0,14.457704428547306,1.6382108498031445,7.737629039495638,0.21709672990984422,0.10585010092645498,-0.057059261998397025,-0.1274159070272264,-0.10583663888699255,-0.1843628146165823,-0.5906803984550232,-0.4599257807933453,-0.2545411003004057,0.4090909090909091,28,0,4,0,1,1,2,1,3,5,0,6,9,0,0,0,4,5.3479000000000045,4.146250000000001,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,2,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL62592,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)[C@@H](N)C(C)C)CC2)cc1,4.719999935717911,0.470348218611777,-0.16762554451469994,0.470348218611777,1.3706921447438063,0.013897095655572171,13.91979999999998,12.609400000000004,13.909971403600036,168,0,0.23933750696142606,-0.49354966269764505,0.49354966269764505,0.23933750696142606,0.042222222222222223,0.06777777777777777,0.09000000000000001,2.942876481338107,70.53050230456587,1.8685986580757477,1.7855461885963821,0.48554618859638216,0.9868890525999773,0.8925390452059164,0.24605813883925268,0.15403230618263805,0.15403230618263805,0.08972227311520117,0.08972227311520117,0.04762705780536702,0.04762705780536702,-0.064,3.113898266699591,0.14809284438988624,0.4233979003366052,7.725697699652777,7.873354675438061,0.5118829886792267,0.28577319966467685,0.19277483154549796,0.19690599097838352,0.0,0.0,0.4829661366331373,0.0,0.0,0.0,1.1100508718181932,1.4269827439558338,2.6686799091677273,0.9218407276379449,2.2622562685632763,0.3896808225238815,0.0,0.3266606487233652,11.613674661089352,1.9479397775627858,39.04328366449601,29.733126322350174,0.0,5.749511833283905,0.34855266431754406,0.0,5.749511833283905,0.0,2.2183806756754354,0.15981790613572738,5.893957685363079,3.7832118704200246,24.16967483065318,2.8236841566564013,0.0,0.0,2.5290000000000004,5.53560113151735,0.31963581227145477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9426204562918212,10.676765364562632,0.0,0.8288628725794134,0.0,-0.10908833604571973,-0.41256989883251727,-0.4127534396031295,-0.7597444293140929,-1.4170276889021418,0.0,0.6666666666666666,30,2,6,0,1,1,1,0,1,5,1,6,16,0,1,1,2,3.346000000000002,4.028663333333336,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3916710,NCCOc1ccccc1Cc1ccccc1,5.800000874803202,0.5010391100884799,-0.21490745989753943,0.5010391100884799,0.6919329469365545,0.05010686600308341,13.371000000000008,12.362999999999998,13.360647892,88,0,0.12238507776527427,-0.4919801753127712,0.4919801753127712,0.12238507776527427,0.06574394463667821,0.11072664359861592,0.15916955017301038,2.993838920410754,65.6445633634871,1.5713329576853934,1.4914977579978717,0.4914977579978719,0.8958047085839683,0.7515460164243388,0.25775618165963776,0.1555912758434619,0.1555912758434619,0.09422528025333302,0.09422528025333302,0.05746740696831256,0.05746740696831256,-0.10588235294117643,2.7200086352572197,0.16356681154099034,0.3566847540898529,3.328180901990427,7.413963021329405,0.6150929370309601,0.8901283078150939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.843491156547433,1.009960099473958,1.0795775770780118,0.8869614186983776,1.6542309090005731,0.0,0.0,0.0,5.719716975726273,0.37487793537231645,13.055844927232233,65.50867135236365,0.0,5.749511833283905,0.6150929370309601,0.0,5.749511833283905,0.0,0.7679908780724842,0.37487793537231645,0.0,1.8640165485851345,54.38176836896965,2.8236841566564013,0.0,0.0,2.073529411764706,5.670980587643263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6542309090005731,8.118198414498693,0.0,0.0,0.0,-0.16990790439224354,-0.0744261315637366,-0.5368610710404966,-0.19423470777199772,-0.4221803644361022,0.0,0.2,17,2,2,0,0,0,2,0,2,2,1,2,6,0,0,0,2,2.6149000000000004,4.1317294117647085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL196169,COc1ccc(NC(=O)N2CCN(c3ccccc3F)CC2)cc1N1CCN(C)CC1,5.0,0.5010574635930474,-0.14351623333236485,0.5010574635930474,0.7053056960054818,0.026234728091602443,13.791096774193536,12.815612903225812,13.781882368387125,166,0,0.3214645659860238,-0.49458350009296803,0.49458350009296803,0.3214645659860238,0.03433922996878252,0.05723204994797086,0.08116545265348594,2.095916502552014,66.78531253283106,1.5515939234387037,1.449371904239895,0.481629968756024,0.8645176532572059,0.7380343043935509,0.2558661238935521,0.17085272289717032,0.17085272289717032,0.11007424335663064,0.11007424335663064,0.06722392094223043,0.06722392094223043,-0.09677419354838708,3.048431450299659,0.17695555305112223,0.304118901626233,4.847744900890548,7.24929579067859,0.956332749370656,0.3731204088493484,0.04554329284929679,0.0,0.0,6.031114512338072,0.0,9.184952231746642,0.0,0.0,0.3898334650105351,1.1996103367289908,2.1695991497549247,1.5667552659353092,1.7769566255745586,0.7449443011738309,0.0,0.31612320844196634,0.0,0.0,81.09828964868173,48.11415179468896,0.0,5.749511833283905,0.6402095409286898,26.247111055797326,5.749511833283905,0.0,2.639341638959078,0.0,5.817220841045895,1.2823225202882707,42.29693095364306,1.4118420783282006,0.0,0.0,1.6545161290322583,5.414678905636914,0.15466248980876846,0.14162629186047807,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.3278658131375678,8.664637019366687,0.0,0.3516359099105722,-0.030302090532359775,-0.17896653597051268,-0.1255775527411983,-0.4459156035593045,0.0,-1.2521888821880778,-0.12310721052236627,0.43478260869565216,31,1,7,0,2,2,2,0,2,5,1,8,6,0,2,2,4,2.9402000000000017,3.9325387096774214,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4,1,0,0,1,0,0,0,0,0,0,0,2,0,3,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL272899,CCCc1ccc2c(c1)sc(=O)n2CCN1CCCCCC1,6.507239610973163,0.605185373075998,-0.20779684423648426,0.605185373075998,0.22472568657092595,0.03797282532673449,14.476636363636343,13.285363636363638,14.462572020545487,120,0,0.30768797011158283,-0.30156276954293737,0.30768797011158283,0.30156276954293737,0.05991735537190082,0.09710743801652892,0.1322314049586777,2.5102529814584384,75.39731359652578,1.7456026910860538,1.6686783532694383,0.5239736524025168,0.9425427271512256,0.8501824191907122,0.29638680923288163,0.16653338743255278,0.2102430823506217,0.10632178552959536,0.14526405805083648,0.06720871611987697,0.10334162427719001,-0.05136363636363637,3.222417974050783,0.1568233852273084,0.3374782027965226,3.607544772617158,7.847371421301326,0.22272316958411265,0.0,0.0,0.0,0.0,4.872962597056311,0.42552894690287163,0.0,0.0,0.0,1.9704487003128113,2.261853771801982,1.8990749567366605,0.7759278824971119,1.6199873845648056,0.9797002960009137,0.0,0.4303186081200833,0.0,2.344831873163086,19.490579052947837,33.358207395815015,0.0,0.0,0.22149829986619596,0.0,0.0,11.336785877934737,1.316254019617712,0.5849902084384238,0.0,3.632713208002968,22.921793307061705,0.0,10.216620634085363,0.0,1.1472727272727274,5.216230947237037,0.21793350836690098,0.0,15.903885525726093,0.0,0.0,0.0,0.0,0.0,0.0,1.6199873845648056,9.604141460468439,-0.010214803935042089,0.47894291757118457,0.0,-0.11743980735537951,0.0,-0.19072774721479704,-1.13473836299281,-0.9822363838143218,0.0,0.6111111111111112,22,0,3,0,1,1,1,1,2,4,0,4,6,0,1,1,3,3.8915000000000033,4.317636363636366,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL1277034,O=C(O)CC1CN(C2CCC3(Cc4ccccc4Cc4ccccc43)C2)C1,6.499996931948306,0.4557137316981293,-0.17635592946026146,0.4557137316981293,0.8294973020072227,0.033231128649841,13.38833333333332,12.380333333333338,13.377932559407437,140,0,0.3032224571125467,-0.4812216022973878,0.4812216022973878,0.3032224571125467,0.04663923182441701,0.07407407407407407,0.10425240054869685,2.1247466880168666,75.05156274736589,1.5662966870311597,1.4912485250528773,0.4912485250528772,0.8841077248561314,0.7773080360806541,0.2807062475449556,0.20629930632185897,0.20629930632185897,0.1438772542496627,0.1438772542496627,0.10178632468253364,0.10178632468253364,-0.07888888888888887,3.06762140615271,0.1681355374294755,0.240262347050967,2.9825638728671096,7.355065648993847,0.189215118189156,0.0,0.0,0.0,1.4311996572326342,5.969305287951849,0.3590535894415666,0.0,0.0,0.0,1.7903462837520874,2.2226810429184427,1.8185280117571225,0.6421849389144866,1.6867802902075846,0.2210853810352537,1.4311996572326342,0.18147813817964734,5.893957685363079,1.8396456424341738,12.99371936863189,70.59315562809434,0.0,0.0,0.0,0.0,0.0,0.0,1.2959124091441139,0.8501991650417542,5.893957685363079,3.0883417789826364,48.33934966130636,0.0,1.4311996572326342,0.0,1.5014814814814814,5.556314075800533,0.5329572991579022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.017615267572845,8.765575475993446,0.0,0.4249916094015655,0.13045802276000318,-0.40662711413038377,-0.24461433826917048,-0.5970462390992479,-0.977384115291058,-0.3206619433404647,0.0,0.4583333333333333,27,1,3,2,1,3,2,0,2,3,1,3,3,1,1,2,5,4.030300000000003,3.926918518518521,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL292195,CN(CCCCc1c[nH]cn1)CCC(c1ccc(Cl)cc1)c1ccccn1,8.154901959985743,0.3498921280433577,-0.1795867607445357,0.3498921280433577,0.12695017389416696,0.018710418548688743,14.182925925925913,13.174925925925931,14.15527498311114,142,0,0.16690685491410892,-0.35090496234570856,0.35090496234570856,0.16690685491410892,0.04663923182441701,0.07956104252400549,0.10836762688614542,2.5555789620489984,72.53262403263746,1.5796969581261893,1.487659957592928,0.515657325963982,0.8843177975197472,0.7555058152501622,0.27145955145420936,0.1612677711390543,0.17526645532458124,0.09724895215285972,0.10424829424562318,0.05773574454286455,0.06123541558924628,-0.08037037037037036,3.290114615809905,0.18022385724786755,0.37919722655468313,6.190637369345517,7.561812772724424,0.3658115926325826,0.05076883541371186,0.05229044734548891,0.0,0.0,0.0,0.18459179707211884,4.9839785209472085,0.0,0.0,1.1010442967860148,2.7849767480215495,1.8847572709002205,0.9012639523832098,1.3722801681019972,0.42966444037898205,0.0,0.7349951867768203,0.0,1.1624317515066889,19.969546268914137,82.92003388437406,0.0,0.0,0.0,0.0,0.0,11.600939890232516,1.474608011551418,0.23603425560479183,0.0,2.874213419672995,60.94609308923881,6.434475392069527,0.0,0.0,1.6596296296296298,5.154635080548863,0.05076883541371186,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.7511757730672683,8.375367087639294,0.21729263426654286,0.19555958575690882,-0.03458954896978551,-0.17156861411745994,-0.15576275064672607,-0.339461641079843,-0.8051712088878614,-0.524463897870534,0.0,0.36363636363636365,27,1,4,0,0,0,1,2,3,3,1,5,11,0,0,0,3,4.934800000000004,4.117470370370372,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1669405,CCN(C)CCC1=C(Cc2cnccn2)c2ccccc2C1,8.142667503568731,0.4037691219164433,-0.20133166569798525,0.4037691219164433,0.9123134645344722,0.03715590656519088,13.336999999999978,12.283181818181816,13.326781715272757,114,0,0.08597264088465967,-0.30632399996057225,0.30632399996057225,0.08597264088465967,0.06404958677685951,0.10743801652892562,0.1487603305785124,2.6520283518726213,71.99175932764686,1.609989411901738,1.5382563993863578,0.4928018539318125,0.9007808843761214,0.7870567083749933,0.2643294356477206,0.1746200357499943,0.1746200357499943,0.11458274514772442,0.11458274514772442,0.07503913847016887,0.07503913847016887,-0.09090909090909088,3.0936383544889074,0.16206509539842873,0.3109090909090909,3.25125,7.481408786607862,0.22272316958411265,0.0,0.0,0.0,0.0,0.0,0.4530889564497462,0.0,0.0,0.0,1.663394158091733,1.950842904578191,2.4236639598551446,0.6949653585472727,1.4330657632688661,0.2533229331849667,0.0,0.6758121260338588,0.0,1.1804848555129008,19.969546268914137,65.08229597140918,0.0,0.0,0.0,0.0,0.0,0.0,1.5835187746208648,0.5793568092117618,0.0,2.7987770358537563,48.261464993166726,0.0,5.573104530069267,0.0,1.3190909090909093,5.522523787387586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.4330657632688661,8.560440638106469,0.0,0.2660510490164682,0.0,-0.2992815365484015,0.0,-0.20547492385105526,-0.6657084218269287,-0.7582995321692795,0.0,0.3684210526315789,22,0,3,1,0,1,1,1,2,3,0,3,8,0,0,0,3,3.370800000000002,4.117727272727276,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL321320,O=C(c1ccc(OCCCN2CC[C@H](NS(=O)(=O)c3cccc(Cl)c3)C2)cc1)C1CC1,5.443697499232711,0.44222928621637586,-0.200278471571881,0.44222928621637586,1.0700958909150862,0.013856340475102449,14.935451612903218,14.057516129032267,14.907677613677443,166,0,0.24041286537935955,-0.49354966273433587,0.49354966273433587,0.24041286537935955,0.04266389177939646,0.06763787721123829,0.09157127991675339,1.873057354125922,70.28644397942395,1.4795922844848688,1.348826874720273,0.5285825368798271,0.8215069005690339,0.6891299071967936,0.31399488159388744,0.1722986916509014,0.23419932484330333,0.10396130795269443,0.1469273201513236,0.06000968044261608,0.09313626303147901,-0.06225806451612901,3.364931518793478,0.2117552670598141,0.3126229132443955,6.068248577720867,7.294589152138492,0.31086363498872666,0.2310114165036163,0.18655628859241738,0.32333197269056724,0.0,0.0,0.15466248980876846,13.132916598063069,0.0,0.0,0.569140599932123,2.3963061368798884,1.8523803621453712,0.8116791703269761,1.7742181180953152,0.88411212870984,0.0,0.31016223692208417,5.893957685363079,1.1743572757801592,26.049564295864123,58.925434466744676,0.0,5.749511833283905,0.30490266346884454,0.0,5.749511833283905,11.600939890232516,1.650593820185746,0.32333197269056724,5.893957685363079,2.306110023919745,53.23483313682413,6.434475392069527,0.0,0.0,2.442258064516129,5.111132557251546,0.4262043280129277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7222376575092426,8.148662253946679,0.185069281463394,0.32932939403140954,-0.03614493313566971,-0.044928005551511406,-0.220420892533382,-0.5236066077763128,-0.5040747780653202,-0.595076774857583,-0.200278471571881,0.43478260869565216,31,1,6,1,1,2,2,0,2,5,1,8,10,1,1,2,4,3.754400000000003,3.878290322580647,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL1628227,CN(C)CCC=C1c2ccccc2COc2ccccc21,9.843501557586258,0.41834937281791024,-0.19659976424432218,0.41834937281791024,0.7945644500083988,0.040136366998728745,13.303952380952358,12.295952380952377,13.293443537714314,108,0,0.127143343491757,-0.4882394427370874,0.4882394427370874,0.127143343491757,0.06122448979591837,0.09750566893424036,0.1383219954648526,2.720508631881899,70.82525261047407,1.565112419953854,1.4931172326649438,0.4931172326649439,0.8881585607970398,0.7656699373197048,0.26566993731970473,0.17764104218875337,0.17764104218875337,0.11671206613220701,0.11671206613220701,0.07755094301486297,0.07755094301486297,-0.09809523809523808,2.9190935343556426,0.16502460621048187,0.29270686103651294,3.006125990520758,7.415496063993238,0.45889393736431083,0.5861189083904854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3023334618894586,2.0508097582390676,1.2270427017959589,0.7180163865653533,1.596323458732127,0.26538593000329846,0.0,0.23332903480240372,0.0,0.6158052449640794,20.448513484880436,71.08177588243291,0.0,5.749511833283905,0.2255649025619071,0.0,5.749511833283905,0.0,1.2070677721776628,0.3123326306150614,0.0,2.4690099550473823,54.39142140734192,0.0,5.573104530069267,0.0,0.5938095238095238,5.74689169551251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.596323458732127,8.366822035866347,0.0,-0.03783640238135232,0.0,-0.20666331854611325,-0.05098450866237149,-0.4884466141749648,-0.19228828105316215,-0.7199679904134637,0.0,0.2631578947368421,21,0,2,0,1,1,2,0,2,2,0,2,5,0,0,0,3,3.9624000000000033,4.1650476190476216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL257534,Cc1ncoc1-c1nnc(SCCCN2CCc3cc4c(cc3CC2)N(C)C(=O)CO4)n1C,5.700000503883016,0.3940257331354258,-0.1425238209893475,0.3940257331354258,0.013712275244181171,0.01221309823413556,14.199484848484841,13.344212121212129,14.187707871393963,174,0,0.2642579395287904,-0.4815576440825986,0.4815576440825986,0.2642579395287904,0.03856749311294766,0.06519742883379247,0.08999081726354453,1.7497295847393273,69.44370056383917,1.4364513553019296,1.3277659010562182,0.5040233732055431,0.8145627391820992,0.6829017390113106,0.2834016354030598,0.17869203258574418,0.20212829507465244,0.1187045899502023,0.13842950434398457,0.07390499049629515,0.08746156025992316,-0.08636363636363636,3.636578471879951,0.20098712079681613,0.27831687721812953,4.36639354422785,7.151851878190239,0.7127555454650214,0.21576576937739775,0.7225866752001106,0.1764971059999978,5.907179729351506,0.0,0.145289005577934,4.9839785209472085,0.0,10.197363616602075,0.356420756042155,1.6872505122521315,1.9447811165533837,0.511040863460997,1.5857512317482247,0.7077712410129147,0.0,0.7469197429148823,6.975826900282246,0.9432455546395311,43.630257812147,35.27535953156125,0.0,17.334163750158275,0.2920234146863796,5.687386274683562,5.749511833283905,11.761884949391115,2.0995721008133073,0.7429155723337221,6.851892117295679,1.8659089531011532,28.02811597219285,0.0,11.58465191687437,0.0,2.712727272727273,4.927244605500908,0.145289005577934,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,15.181342137549283,1.4404622261702904,7.435607069064869,-0.01860826140784611,0.4520525857578717,0.17384070843610777,-0.30131522647050446,-0.16655037262561403,-0.101043398567334,-0.4280868946285148,-0.8464012600640871,0.0,0.4782608695652174,33,0,9,0,2,2,1,2,3,9,0,10,9,0,0,0,5,2.7167200000000005,3.8113030303030326,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1092597,COc1nccnc1[C@H](C)C1=C(CCN(C)C)Cc2ccccc21,9.0,0.39239407163328294,-0.18450663814265425,0.39239407163328294,0.9380299512162793,0.03394555138578947,13.47666666666665,12.42666666666667,13.466656767500028,126,0,0.23546225894526157,-0.47968010238293807,0.47968010238293807,0.23546225894526157,0.05902777777777778,0.0954861111111111,0.13020833333333334,2.8216152822621727,70.25263033213285,1.6094530767926993,1.5312453782068225,0.4895787115401557,0.8959012861725909,0.7801456614464048,0.25931232811307153,0.17813535940726433,0.17813535940726433,0.12047547524186249,0.12047547524186249,0.08215189764341521,0.08215189764341521,-0.09166666666666663,3.1149710676841003,0.1650183642390039,0.29740555302685484,3.195134779750165,7.453309235400504,0.401532195193772,0.23724699978535255,0.0,0.24499951401814046,0.0,0.0,0.20766577170613368,4.9839785209472085,0.0,0.0,1.5247779782507553,1.8082296298619378,1.944531028751337,0.8072824776839402,1.625242785752315,0.23221268875288614,0.0,0.6194944488643707,0.0,1.0621541502215632,27.486465943763026,58.909400760594416,0.0,5.879988336435371,0.1973692897416687,0.0,5.879988336435371,0.0,1.76476386318783,0.2655385375553908,0.0,2.925357066103589,42.08856978235197,0.0,5.573104530069267,0.0,1.5937500000000002,5.343357037792921,0.057114939840425843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.704819995694464,1.3707585561702198,8.73421601959131,0.0,0.24667064243717118,0.0,-0.32229655535696783,-0.23056374073549182,-0.20913371934384695,-0.4426239942943157,-0.690781604561442,-0.14798704773642032,0.4,24,0,4,1,0,1,1,1,2,4,0,4,10,0,0,0,3,3.5503000000000027,4.0515000000000025,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1940403,OC1(c2ccc(Cl)cc2)CCN(CCCSc2ccc(F)cc2)CC1,6.939302159646387,0.5635406266330253,-0.18118493270765101,0.5635406266330253,0.5371857127602946,0.022693970334334627,15.19711999999999,14.269760000000005,15.164691650240025,134,0,0.21135472726321602,-0.3850687863737489,0.3850687863737489,0.21135472726321602,0.0496,0.0768,0.1024,2.3958670134245836,63.23300347443315,1.5167906824735296,1.4007855648978456,0.5436825859756927,0.850026603324499,0.7127762236967529,0.3042247342356765,0.170528774982837,0.2183072171403152,0.10309631578087583,0.13515050266889214,0.05898828590680366,0.07888236266148169,-0.042800000000000005,2.952743406613508,0.2102133861154352,0.34168575635170256,5.204992461829446,7.597966957070562,0.4003487168783076,0.2326888336418358,0.0,0.057247986289305365,0.0,0.0,0.0,4.39041504767482,0.0,11.761884949391115,0.9474310922223643,2.925542200445241,1.6840982377709637,0.6626847704138179,1.5862364589810753,0.9345129935849452,1.4311996572326342,0.19599638923401913,0.0,1.184612359619584,25.19553593809799,64.74265530779057,0.0,0.0,0.0,4.39041504767482,0.0,23.36282483962363,1.4654181406915328,0.22404203243934753,5.817220841045895,2.193556577257201,53.23483313682413,5.022633313741326,0.0,0.0,0.9388,5.448611796664792,0.1756166019069928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.7275531113284004,8.230898939135859,0.20979680134792159,-0.08135289725966502,0.1394857305541869,-0.38422027224090455,-0.06629798906203914,-0.4078625222882202,-0.5250868378955501,-0.5375831745138114,0.0,0.4,25,1,2,0,1,1,2,0,2,3,1,5,7,0,1,1,3,4.944900000000004,4.110552000000002,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL595180,CN1CCN(c2cc(NCc3c(Cl)cccc3Cl)nc(N)n2)CC1,6.0,0.35815150150209263,-0.16349344914388028,0.35815150150209263,0.2954176114890399,0.03608920044644579,15.303499999999985,14.463500000000002,15.254693750000028,128,0,0.22344338246467182,-0.3676692186326552,0.3676692186326552,0.22344338246467182,0.05902777777777778,0.09027777777777778,0.11805555555555557,2.412807703855764,59.35066933551979,1.4373798887928275,1.3099671049590917,0.5396278504606297,0.8131890913913518,0.6615205679274513,0.2829492412407254,0.16730940219829327,0.19880644161572888,0.10214613931278403,0.12576891887586072,0.06084835787534711,0.07819647474345577,-0.07333333333333332,2.8396958668394015,0.2136005317044299,0.30924079068040883,4.007276162733483,7.4750478081319365,0.8678895746131502,0.48482189815291904,0.17648025979102508,0.24784747004110394,0.0,0.0,0.0,0.0,9.967957041894417,0.0,1.218512437005347,0.7941943464837015,2.655447714233926,0.5711493984042583,1.147434237078264,1.6994143590467328,0.0,0.6194944488643706,0.0,0.2707024868464977,48.89270569741115,39.77839294983282,0.0,0.0,0.663726669161047,17.58406483665655,0.0,23.20187978046503,1.992963850428788,0.2707024868464977,0.0,1.2027644561079471,24.16967483065318,14.280792862467255,0.0,0.0,2.9295833333333334,4.6809216477407745,0.0,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,2.114179227930975,6.763536068443209,0.5033229768885836,0.25019112018614154,-0.08200512903203146,-0.056022154909171125,-0.16345465005703927,-0.164359831195007,0.0,-0.9516713632876487,0.0,0.375,24,3,6,0,1,1,1,1,2,6,2,8,6,0,1,1,3,2.7295000000000007,4.164295833333335,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,1,1,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1088900,COc1nccnc1CC1=C(CCN(C)C)Cc2ccccc21,8.657577319177793,0.3913387414144401,-0.18707539762415976,0.3913387414144401,0.8739355634611772,0.035740912989807964,13.452739130434766,12.444739130434785,13.442787493739159,120,0,0.23517328925853037,-0.4796876962187733,0.4796876962187733,0.23517328925853037,0.05860113421550094,0.09640831758034027,0.1342155009451796,2.6721184155497895,69.03956775625237,1.5707336453489036,1.4891256120419016,0.4891256120419016,0.8805056899192252,0.7597172119440746,0.2597172119440746,0.17501080981627581,0.17501080981627581,0.11513085679857413,0.11513085679857413,0.076749057645673,0.076749057645673,-0.09565217391304345,3.081731606828116,0.16901876477333122,0.3008838051604315,3.4246615424927955,7.3784581971686904,0.41899011672393593,0.2475620867325418,0.0,0.2556516668015379,0.0,0.0,0.21669471830205253,4.9839785209472085,0.0,0.0,1.2931643200314107,1.8868483094211526,1.9307041214633893,0.8423817158441116,1.5767091193789182,0.24230889261170727,0.0,0.6464289901193433,0.0,0.8312510740864407,27.486465943763026,58.909400760594416,0.0,5.879988336435371,0.20595056320869778,0.0,5.879988336435371,0.0,1.8414927268046921,0.5541673827242939,0.0,2.3791827248472583,42.08856978235197,0.0,5.573104530069267,0.0,1.6630434782608698,5.298593217639161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.704819995694464,1.3707585561702198,8.324265699178856,0.0,0.2611513683875598,0.0,-0.2982357775705558,-0.05725127208693461,-0.20051661594550688,-0.6003873321283352,-0.5300580708956882,-0.1489679989393939,0.3684210526315789,23,0,4,1,0,1,1,1,2,4,0,4,9,0,0,0,3,2.989300000000002,4.022826086956524,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2146810,CCCCN1CCC[C@@H]1Cn1nc(Cc2ccc(Cl)cc2)c2ncccc2c1=O,9.199970640755865,0.4898791160228889,-0.16563794521235314,0.4898791160228889,0.7390783826390641,0.02007900185268212,14.170655172413781,13.23217241379311,14.144391005655198,152,0,0.2757846921765481,-0.298541257903375,0.298541257903375,0.2757846921765481,0.04875148632580261,0.07847800237812129,0.1070154577883472,2.298886102198054,75.38939988263068,1.5198092275937065,1.4163816257059627,0.5114136583272889,0.8498113698435965,0.7286883021978061,0.27620431850846916,0.1757305442771703,0.18876380196714368,0.11484703628657902,0.12136366513156568,0.07424595884149998,0.07750427326399333,-0.07724137931034482,3.1178228273492756,0.19006189497628573,0.31226848877934765,4.513921038399136,7.372756770594217,0.0,0.0,0.0,0.0,5.559266895052007,0.0,0.5061526012368796,4.681802935145185,5.098681808301038,0.0,1.2727791146270402,2.132607599826559,1.6641379277689345,1.221742745406119,1.2762234833308947,0.7759953387004681,0.0,0.6780818274222038,0.0,1.7665954750554538,12.99371936863189,69.06122433620514,0.0,0.0,0.1916988584500692,0.0,0.0,11.600939890232516,1.3336546493870842,0.44378567536708013,0.0,2.7797052491639516,47.221944640866354,5.022633313741326,10.902924932081056,0.0,1.7593103448275864,5.137114237774142,0.2125964048359325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.082660329248245,1.6289883569192507,7.766949783456082,0.20163205833462955,0.5748766782042418,0.04615857599876609,-0.20855515473588612,0.0,-0.40841566758216435,-0.7868760665404663,-0.6244675251428663,0.0,0.43478260869565216,29,0,5,0,1,1,1,2,3,5,0,6,8,0,1,1,4,4.300200000000004,4.053758620689657,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL64408,CCCCCC(=O)c1ccc(OCCCN2CCN(C(=O)OC)CC2)cc1,5.969999718407896,0.4974529902876848,-0.17701378528844217,0.4974529902876848,1.0293443141721985,0.01708116219385457,13.944333333333315,12.74966666666667,13.934674352000032,150,0,0.40906367990182585,-0.4935496626976447,0.4935496626976447,0.40906367990182585,0.0438957475994513,0.07270233196159122,0.09876543209876543,2.814315485469932,66.25575675269157,1.7662117131210875,1.6676822352909397,0.4824970501057544,0.9402378685736139,0.8357920614033877,0.243199468810795,0.14667331167055686,0.14667331167055686,0.08589194146462124,0.08589194146462124,0.04634676638733598,0.04634676638733598,-0.07703703703703703,2.9835471513630925,0.15741623395930351,0.4294444403433684,7.212091196420899,7.664020803214623,0.5323568754981695,0.21294488271421871,0.21419425727277552,0.0,0.0,6.093240070938415,0.3590535894415666,4.794537184071822,0.0,0.0,0.7258422933316458,1.3672416530856273,2.609818051179271,1.163585145630064,2.3306323730811425,0.43986981545567977,0.0,0.36295627635929467,0.0,1.4339450601460213,46.081236123378595,29.733126322350174,0.0,5.749511833283905,0.17543936865926107,4.794537184071822,5.749511833283905,0.0,2.5095385408289967,0.17543936865926107,0.0,3.4421770035984585,24.16967483065318,0.0,0.0,0.0,2.188148148148148,5.257655384517022,0.35515090252383863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.8000421018980417,9.770909046849773,0.0,0.8836413598477632,0.0,-0.06563391053728462,-0.1576265874834918,-0.2630280473819136,-0.9223202483405483,-1.1586408417165566,-0.1397699070402147,0.6190476190476191,27,0,6,0,1,1,1,0,1,5,0,6,12,0,1,1,2,3.6025000000000027,3.905351851851854,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL519240,Nc1nc2c(c(N3CCNCC3)n1)CCC1=C2[C@@H]2CCCC[C@@H]2O1,5.450000476425332,0.38858753976127486,-0.17273041473342476,0.38858753976127486,0.4810740268329554,0.03407324968435751,13.642999999999981,12.593000000000002,13.63357960083336,128,0,0.2220529238104005,-0.49374655837830544,0.49374655837830544,0.2220529238104005,0.05381944444444445,0.09027777777777778,0.1267361111111111,2.027589860914436,68.53796891462375,1.5965613652610948,1.5268465111651521,0.48517984449848556,0.8915654830268815,0.7910815439359803,0.27684651116515224,0.19689824780540344,0.19689824780540344,0.1415601105163429,0.1415601105163429,0.10252046472348596,0.10252046472348596,-0.07583333333333334,3.1934834804244066,0.15827111012462278,0.23411442548247233,2.1931631176038704,7.388688550745108,0.8610959589027156,0.794536989782058,0.11765350652735006,0.24784747004110394,0.0,0.0,0.0,4.9839785209472085,4.9839785209472085,0.0,0.2655385375553908,1.0621541502215632,3.0289072000256767,0.5228216989874817,1.6303782260220627,0.7224711078704497,0.0,0.6365737664659497,5.893957685363079,1.8465653097885941,36.607065443840526,17.01654435820163,0.0,0.0,0.663726669161047,11.766202058821523,0.0,0.0,1.7514755752545075,0.46290782729705954,5.893957685363079,3.053278842872384,5.759164871656176,4.235526234984602,5.573104530069267,0.0,3.1791666666666667,5.270177286021279,0.057114939840425843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.5732632861816367,9.032977884159932,0.0,0.2835174752771479,-0.029198887337432127,-0.2053765040609865,-0.35821363614890406,0.0,-1.1726669452089695,-0.6552060533474565,0.0,0.6666666666666666,24,3,6,2,2,4,0,1,1,6,2,6,2,1,1,2,5,1.7146999999999994,3.8999625000000013,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL430368,CC(C)N1CCC(Oc2ccc(N3CCN(C(=O)c4cc(F)cc(F)c4)CC3=O)cc2)CC1,5.599999383023619,0.4394659083196731,-0.14036489935351942,0.4394659083196731,0.7075267932244635,0.020823419283638237,13.864272727272718,12.978454545454552,13.855081764484872,176,0,0.25409449540035095,-0.4903387779556776,0.4903387779556776,0.25409449540035095,0.03489439853076217,0.05509641873278237,0.0743801652892562,1.9787103070462504,65.43011350970926,1.485517010830612,1.3582519576942398,0.47946407890636117,0.824748906595153,0.6956643101117201,0.25627037071778075,0.17457700438351015,0.17457700438351015,0.10887145200388222,0.10887145200388222,0.06686067692209409,0.06686067692209409,-0.0909090909090909,3.0908062365136697,0.198893198372907,0.29903198653198654,5.499739854318419,7.060981462320665,0.5889876407985298,0.9079039765648979,0.0,0.17900544634398502,5.907179729351506,0.0,0.290578011155868,8.78083009534964,0.0,0.0,0.0,1.9001256449463602,2.1169686673397146,0.5815339329206993,1.904811077158478,0.5303559313147447,0.0,0.2969642261121502,0.0,1.1681074100772653,37.3842081524302,59.49482412743185,0.0,5.749511833283905,0.2920234146863796,14.468216370033202,5.749511833283905,0.0,2.005951146584343,0.145289005577934,11.63444168209179,2.319988510362283,42.29693095364306,0.0,0.0,0.0,1.6087878787878789,5.105383449720706,0.5566637716210087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3481473055374684,8.284122326179862,0.0,0.7473070507430345,0.0,-0.10773009569001848,-0.3330833414644932,-0.5193582848221934,-0.42100631464859,-0.9356048756511368,0.0,0.44,33,0,6,0,2,2,2,0,2,4,0,8,7,0,2,2,4,3.7054000000000027,3.679257575757578,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2207660,Cc1c(Cl)ccc(OC2CCN(C[C@H](O)CNC(=O)c3c[nH]nc3C(F)(F)F)CC2)c1Cl,7.400007822415903,0.42499817261124173,-0.1772502533245474,0.42499817261124173,0.5977174745642575,0.017051851451439365,15.47903124999999,14.754531250000003,15.44093533175002,176,0,0.4354635549704211,-0.48875989606111614,0.48875989606111614,0.4354635549704211,0.052734375,0.076171875,0.0966796875,2.3322712339071754,58.277446444934405,1.3633398075945244,1.1844819255761736,0.5129774847023271,0.7548899394224137,0.5962290884113882,0.26664325917872195,0.1664108750749059,0.19003365463798255,0.0998134562551939,0.11994153077065905,0.057820074283944124,0.06939554981057783,-0.06281249999999998,3.3215065962325534,0.2604686618016085,0.3214349852133781,6.0632077626884495,7.027922875791365,0.6267310696576911,0.3696728081323092,0.26617537973452693,0.04472498928851982,5.907179729351506,6.176298517443475,0.3089451169267157,0.0,18.269926951325495,0.0,0.7250587431395322,1.1639384633430632,1.718838390376024,0.8206691476743703,1.8140721485020121,0.9096581096817669,1.4311996572326342,0.6375034828132179,0.0,1.185439890353059,25.98743873726378,45.12383023186645,0.0,5.749511833283905,0.3139586345965133,13.171245143024459,5.749511833283905,23.20187978046503,2.0526550145496785,0.1930093286701086,6.851892117295679,1.9305121590117966,18.25773262614135,12.868950784139054,0.0,0.0,2.8275,4.250108333274546,0.5614306977217588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.20748999940825,1.8627749272362053,7.326018944463913,0.37244815112936547,0.36944170140843147,0.06785339807320323,-0.1745834960773656,-0.12990608001924425,-0.08125737615050144,-0.8153570846443852,-0.7037553804056391,0.0,0.5,32,3,7,0,1,1,1,1,2,5,3,12,9,0,1,1,3,3.6778200000000014,3.5380843750000013,0,1,0,0,0,2,1,0,0,0,1,1,0,1,0,2,2,0,0,0,1,1,0,0,0,3,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3321788,OC1(c2ccc(Cl)cc2)CC2CCC(C1)N2CCCCc1ccc(F)cc1,5.764724123312948,0.531491022207936,-0.18238574016140527,0.531491022207936,0.96650074851015,0.02511673851492066,14.367629629629617,13.359629629629636,14.339871125333362,144,0,0.21135523241556076,-0.38504581084377015,0.38504581084377015,0.21135523241556076,0.0438957475994513,0.06858710562414266,0.09190672153635117,2.212385683987281,68.62834179867626,1.5819503807648774,1.4856070678511955,0.5136044362222493,0.8806495754314869,0.765228048220554,0.28262494387038234,0.18809547710581637,0.2020941612913433,0.12200488419625799,0.12900422628902145,0.07883214741835996,0.0823318184647417,-0.05259259259259259,3.1386911265070365,0.18529489236562705,0.2927768581159634,4.206904865711591,7.538331151545579,0.189215118189156,0.21545262374244056,0.0,0.053007394712319786,0.0,0.0,0.18147813817964734,4.39041504767482,0.0,0.0,1.3248375822550258,3.2001448817655103,1.5456323059816517,0.6135970096424239,1.671812803674362,0.42966444037898205,1.4311996572326342,0.18147813817964734,0.0,2.305455928036616,6.496859684315945,70.30610679948757,0.0,0.0,0.0,4.39041504767482,0.0,11.600939890232516,1.1100948963039097,0.443480581937521,5.817220841045895,3.148302772288739,48.33934966130636,5.022633313741326,0.0,0.0,0.8692592592592592,5.33148838043121,0.26414563555612075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.7011238850203871,9.120316771632902,0.21605645056442185,-0.03842372587657227,0.1301799957018926,-0.28703498365511837,-0.06851521110818674,-0.7917114987255496,-1.1962186838867908,-0.18238574016140527,0.0,0.4782608695652174,27,1,2,0,2,2,2,0,2,2,1,4,7,0,2,2,4,5.316400000000005,3.9791407407407426,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2146809,CN1CCC[C@@H]1Cn1nc(Cc2ccc(Cl)cc2)c2ncccc2c1=O,9.500038134403807,0.5338632102859194,-0.16608585780584795,0.5338632102859194,0.5429598310517623,0.0272911234517946,14.187230769230759,13.373076923076926,14.159245729692328,134,0,0.2757846905762061,-0.3015713097526053,0.3015713097526053,0.2757846905762061,0.056213017751479286,0.08875739644970414,0.11982248520710059,2.2766597186877227,72.20686062819458,1.4067102923160573,1.2913487363643432,0.5127306189035145,0.8036357586717038,0.6685369524513991,0.27922789372098483,0.182091630198575,0.19662872531431447,0.11924457515378105,0.1265131227116508,0.07636260415734673,0.07999687793628162,-0.08615384615384615,3.0022223364224105,0.20753386181001654,0.2758983829343941,3.3690233083739676,7.16481911550137,0.18845806657117223,0.0,0.0,0.0,5.559266895052007,0.0,0.3760967578853473,4.681802935145185,5.098681808301038,0.0,0.9109914348291964,2.1519870272925816,1.5398249449337602,1.3627130621837482,1.1071511415221005,0.8655332623966759,0.0,0.7563220382786119,0.0,1.2166741098712972,13.47268658459819,69.06122433620514,0.0,0.0,0.21381795750200025,0.0,0.0,11.600939890232516,1.505959694161221,0.4949917148325124,0.0,2.030352268029957,47.221944640866354,5.022633313741326,10.902924932081056,0.0,1.9623076923076925,4.9945206996716145,0.1844052763104547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.082660329248245,1.5533411373002752,6.671667593348001,0.2241683720497988,0.6441943886126411,0.0625096990458009,-0.20892591058265664,0.0,-0.4119654969415973,-0.4889009822703836,-0.4724485179624602,0.0,0.35,26,0,5,0,1,1,1,2,3,5,0,6,5,0,1,1,4,3.129900000000002,3.988769230769232,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL321709,O=C(c1ccc(OCCCN2CC[C@H](NS(=O)(=O)c3ccc(Br)cc3)C2)cc1)C1CC1,5.823908740944319,0.44291402845257744,-0.19940929594464088,0.44291402845257744,0.6063613230138512,0.012600897109703097,16.36935483870967,15.491419354838719,16.325402917548413,166,0,0.2403606420428485,-0.49354966273433587,0.49354966273433587,0.2403606420428485,0.04058272632674297,0.06347554630593132,0.08532778355879292,1.8730573541259226,70.28644397942395,1.4795922844848688,1.348826874720273,0.5553589108506739,0.821506900569034,0.6891299071967936,0.3273830685793109,0.1722986916509014,0.24758751182872668,0.10396130795269443,0.15362141364403528,0.059387489515349584,0.09088359143243636,-0.056129032258064496,3.364931518793478,0.21465136209601726,0.3165562625901016,6.1569006450044235,7.40956597080816,0.31086363498872666,0.2310114165036163,0.18655628859241738,0.32333197269056724,0.0,0.0,0.15466248980876846,13.132916598063069,0.0,0.0,0.5138691579983661,2.5912228693851564,1.834641207374116,0.8116791703269761,1.7742181180953152,1.0237574192813508,0.0,0.31016223692208417,5.893957685363079,1.1743572757801592,26.049564295864123,58.37552066883577,0.0,5.749511833283905,0.30490266346884454,0.0,5.749511833283905,15.929943897949348,1.650593820185746,0.32333197269056724,5.893957685363079,2.306110023919745,57.707552652656545,1.4118420783282006,0.0,0.0,2.442258064516129,5.093393402480291,0.4262043280129277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.929943897949348,1.3480137900823865,8.150391736370256,0.08663239232756761,0.33091433633636036,0.0,-0.04480320863717326,-0.22003002933105145,-0.5121848903907718,-0.5031738962294258,-0.5937134885871401,-0.19940929594464088,0.43478260869565216,31,1,6,1,1,2,2,0,2,5,1,8,10,1,1,2,4,3.863500000000003,3.9650645161290337,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL272086,Cc1ccc2c(-c3nnc(SCCC(C)N4CCc5cc6c(cc5CC4)C(=O)N(C(C)C)C6)n3C)cccc2n1,5.599999383023619,0.3552634518952822,-0.12906998772002054,0.3552634518952822,0.10287440894098943,0.006855075109375708,13.869100000000046,12.911500000000009,13.857069520900026,208,0,0.25424280253821613,-0.3318590902367052,0.3318590902367052,0.25424280253821613,0.027500000000000004,0.049375,0.06937499999999999,1.639662720454007,79.2099237814443,1.5238195694432084,1.4374944538481869,0.50790686837138,0.8579253752261098,0.7429815201611379,0.28839393468433105,0.19158322674000566,0.21091814329335495,0.13066539628295495,0.14693845065782535,0.08578584964493902,0.09824579560763178,-0.08074999999999999,3.729526405178513,0.18483845712387142,0.27438734212887284,5.031927465531618,7.348235834082452,0.23667523446604583,0.0,0.27452102449551585,0.0,5.907179729351506,0.0,0.36696063589673766,0.0,0.0,10.197363616602075,0.8982889945011074,2.0335988442812933,2.61988606351382,0.48060715698296147,1.422084057963506,0.714299740270592,0.0,0.7387065311760399,6.975826900282246,1.7553856069001696,18.698676253782047,70.24466491527951,0.0,11.387855989696924,0.0,0.0,0.0,11.761884949391115,1.6547475541718608,0.6554634096814238,6.851892117295679,2.793992438334823,47.45336743546377,0.0,22.29078092177798,0.0,1.6787500000000002,5.397356435189305,0.42828410474009504,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,15.181342137549283,0.9937999532234099,8.176341220488213,-0.020542290435255968,0.3978731712162976,0.12145555111235777,-0.369747840309684,-0.08659083480121024,-0.47466233013616177,-0.3554530289935852,-0.8553402848076421,0.0,0.4375,40,0,7,0,2,2,2,2,4,7,0,8,12,0,0,0,6,5.674420000000006,4.04281249999999,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1082036,CCOc1cc(CN2CCC(Nc3nc4cc(S(=O)(=O)CC)ccc4o3)CC2)cc(OC2CCOCC2)c1,4.4156687756324695,0.35092802019073127,-0.1585302053820119,0.35092802019073127,0.898578044188389,0.010294394818056912,14.307526315789513,13.326052631578959,14.295797550105288,206,0,0.29540534642366184,-0.4937348501812253,0.4937348501812253,0.29540534642366184,0.03185595567867036,0.05332409972299169,0.07409972299168975,1.8361539220650738,76.10872795462689,1.5577838932572927,1.452615232098603,0.5004177737019643,0.8610668244838384,0.7404483148790121,0.2940259373025499,0.1701255017661997,0.21273723889994572,0.10621724384674416,0.1328043586646343,0.06701306127607122,0.08065770419642193,-0.07421052631578946,3.6553175390131027,0.18636931914440064,0.3137456805298222,6.594998570812276,7.2622185150993825,0.629935609256365,0.6077826950298437,0.4429504041154722,0.0,6.014658705012475,0.0,0.12894499291711783,8.417796984328938,4.9839785209472085,0.0,0.18031295045514945,1.4571917618412606,1.9593007438780101,1.301789891468419,2.047491760085226,0.709253492123381,0.0,0.26010232241572856,0.0,1.6496246709221636,43.68544533581928,41.81796373767676,0.0,11.49902366656781,0.3890405068654862,6.014658705012475,11.49902366656781,0.0,1.8098744135251885,0.5544993624877236,0.0,2.4764800882561513,45.56714665855089,1.4118420783282006,11.099720859258504,0.0,2.713947368421053,5.040518754385398,0.29366616043866783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.6291713113886628,9.365974741849374,0.0,0.013320797416779537,-0.023646790636536553,-0.23795450511532845,-0.10797828243415572,-0.4561101289306244,-0.6008792863816776,-0.9170033579296824,-0.1585302053820119,0.5357142857142857,38,1,9,0,2,2,2,1,3,9,1,10,12,0,2,2,5,4.654400000000004,3.835197368421048,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +CHEMBL1277125,O=C(O)C1=CCCN(C2CCC3(Cc4ccccc4Oc4ccccc43)C2)C1,7.0,0.45474746933607885,-0.17081806432890626,0.45474746933607885,0.9322235869656508,0.029895950467119008,13.409571428571416,12.509571428571434,13.399408702142882,144,0,0.33206055513659827,-0.4778465199803098,0.4778465199803098,0.33206055513659827,0.04591836734693878,0.07525510204081633,0.10714285714285714,2.1476990723656413,72.95495440949226,1.469707781050254,1.3811413738175553,0.4882842309604124,0.8443838197608841,0.7194844737371974,0.2763327490777737,0.19929970120607218,0.19929970120607218,0.13852345003568542,0.13852345003568542,0.0955061340582959,0.0955061340582959,-0.09249999999999999,3.0885622846085075,0.18265212984142498,0.24224288445614056,2.9239478357704467,7.150027632850745,0.35163111231811645,0.41067941666313607,0.0,0.0,1.4311996572326342,5.969305287951849,0.17499677610180278,4.794537184071822,0.0,0.0,1.5109494282862619,1.768318336202517,2.004447738239212,0.440600964483285,1.6978004884665856,0.2131894745697089,1.4311996572326342,0.17499677610180278,0.0,1.5463395515854756,12.99371936863189,71.09142892080517,0.0,11.49902366656781,0.16917367692143032,0.0,11.49902366656781,0.0,1.2496298231032525,0.5922304483856422,0.0,2.4827431405998865,59.964525937411196,0.0,1.4311996572326342,0.0,1.7774999999999999,5.348246229257164,0.5139231099022629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.0525342166402292,8.01565494003121,0.0,0.4214537698015914,0.13256006395192235,-0.34015779618142533,-0.17620091873575,-0.6141485576683056,-0.7977918639957882,-0.3110124943463109,0.0,0.375,28,1,4,1,2,3,2,0,2,4,1,4,2,1,0,1,5,4.542000000000004,3.8531357142857163,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/atomsci/ddm/test/integrative/import_transformer/data/scaled_descriptors/aurka_chembl_base_smiles_union_short_with_rdkit_scaled_descriptors.csv b/atomsci/ddm/test/integrative/import_transformer/data/scaled_descriptors/aurka_chembl_base_smiles_union_short_with_rdkit_scaled_descriptors.csv new file mode 100644 index 00000000..9e8abf60 --- /dev/null +++ b/atomsci/ddm/test/integrative/import_transformer/data/scaled_descriptors/aurka_chembl_base_smiles_union_short_with_rdkit_scaled_descriptors.csv @@ -0,0 +1,201 @@ +compound_id,base_rdkit_smiles,pIC50,MaxEStateIndex_per_heavyatom,MinEStateIndex_per_heavyatom,MaxAbsEStateIndex_per_heavyatom,MinAbsEStateIndex,qed_per_heavyatom,MolWt_per_heavyatom,HeavyAtomMolWt_per_heavyatom,ExactMolWt_per_heavyatom,NumValenceElectrons,NumRadicalElectrons,MaxPartialCharge,MinPartialCharge,MaxAbsPartialCharge,MinAbsPartialCharge,FpDensityMorgan1_per_heavyatom,FpDensityMorgan2_per_heavyatom,FpDensityMorgan3_per_heavyatom,BalabanJ,BertzCT_per_heavyatom,Chi0_per_heavyatom,Chi0n_per_heavyatom,Chi0v_per_heavyatom,Chi1_per_heavyatom,Chi1n_per_heavyatom,Chi1v_per_heavyatom,Chi2n_per_heavyatom,Chi2v_per_heavyatom,Chi3n_per_heavyatom,Chi3v_per_heavyatom,Chi4n_per_heavyatom,Chi4v_per_heavyatom,HallKierAlpha_per_heavyatom,AvgIpc,Kappa1_per_heavyatom,Kappa2_per_heavyatom,Kappa3,LabuteASA_per_heavyatom,PEOE_VSA1_per_heavyatom,PEOE_VSA10_per_heavyatom,PEOE_VSA11_per_heavyatom,PEOE_VSA12_per_heavyatom,PEOE_VSA13,PEOE_VSA14,PEOE_VSA2_per_heavyatom,PEOE_VSA3,PEOE_VSA4,PEOE_VSA5,PEOE_VSA6_per_heavyatom,PEOE_VSA7_per_heavyatom,PEOE_VSA8_per_heavyatom,PEOE_VSA9_per_heavyatom,SMR_VSA1_per_heavyatom,SMR_VSA10_per_heavyatom,SMR_VSA2,SMR_VSA3_per_heavyatom,SMR_VSA4,SMR_VSA5_per_heavyatom,SMR_VSA6,SMR_VSA7,SMR_VSA8,SMR_VSA9,SlogP_VSA1_per_heavyatom,SlogP_VSA10,SlogP_VSA11,SlogP_VSA12,SlogP_VSA2_per_heavyatom,SlogP_VSA3_per_heavyatom,SlogP_VSA4,SlogP_VSA5_per_heavyatom,SlogP_VSA6,SlogP_VSA7,SlogP_VSA8,SlogP_VSA9,TPSA_per_heavyatom,EState_VSA1_per_heavyatom,EState_VSA10_per_heavyatom,EState_VSA11_per_heavyatom,EState_VSA2,EState_VSA3,EState_VSA4,EState_VSA5,EState_VSA6,EState_VSA7,EState_VSA8,EState_VSA9_per_heavyatom,VSA_EState1_per_heavyatom,VSA_EState10_per_heavyatom,VSA_EState2_per_heavyatom,VSA_EState3_per_heavyatom,VSA_EState4_per_heavyatom,VSA_EState5_per_heavyatom,VSA_EState6_per_heavyatom,VSA_EState7_per_heavyatom,VSA_EState8_per_heavyatom,VSA_EState9_per_heavyatom,FractionCSP3,HeavyAtomCount,NHOHCount,NOCount,NumAliphaticCarbocycles,NumAliphaticHeterocycles,NumAliphaticRings,NumAromaticCarbocycles,NumAromaticHeterocycles,NumAromaticRings,NumHAcceptors,NumHDonors,NumHeteroatoms,NumRotatableBonds,NumSaturatedCarbocycles,NumSaturatedHeterocycles,NumSaturatedRings,RingCount,MolLogP,MolMR_per_heavyatom,fr_Al_COO,fr_Al_OH,fr_Al_OH_noTert,fr_ArN,fr_Ar_COO,fr_Ar_N,fr_Ar_NH,fr_Ar_OH,fr_COO,fr_COO2,fr_C_O,fr_C_O_noCOO,fr_C_S,fr_HOCCN,fr_Imine,fr_NH0,fr_NH1,fr_NH2,fr_N_O,fr_Ndealkylation1,fr_Ndealkylation2,fr_Nhpyrrole,fr_SH,fr_aldehyde,fr_alkyl_carbamate,fr_alkyl_halide,fr_allylic_oxid,fr_amide,fr_amidine,fr_aniline,fr_aryl_methyl,fr_azide,fr_azo,fr_barbitur,fr_benzene,fr_benzodiazepine,fr_bicyclic,fr_diazo,fr_dihydropyridine,fr_epoxide,fr_ester,fr_ether,fr_furan,fr_guanido,fr_halogen,fr_hdrzine,fr_hdrzone,fr_imidazole,fr_imide,fr_isocyan,fr_isothiocyan,fr_ketone,fr_ketone_Topliss,fr_lactam,fr_lactone,fr_methoxy,fr_morpholine,fr_nitrile,fr_nitro,fr_nitro_arom,fr_nitro_arom_nonortho,fr_nitroso,fr_oxazole,fr_oxime,fr_para_hydroxylation,fr_phenol,fr_phenol_noOrthoHbond,fr_phos_acid,fr_phos_ester,fr_piperdine,fr_piperzine,fr_priamide,fr_prisulfonamd,fr_pyridine,fr_quatN,fr_sulfide,fr_sulfonamd,fr_sulfone,fr_term_acetylene,fr_tetrazole,fr_thiazole,fr_thiocyan,fr_thiophene,fr_unbrch_alkane,fr_urea +CHEMBL3680571,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4ccc(CO)cc4)c3)ncnc12,9.080921907623924,0.42371128694298893,-0.11350754148329678,0.42371128694298893,0.27624881447357597,0.011204945386334935,13.358249999999993,12.696750000000005,13.348888735375018,160,0,0.25515814544104914,-0.39168046244051546,0.39168046244051546,0.25515814544104914,0.03515625,0.0615234375,0.0869140625,1.9945482694255452,68.98881302868729,1.267346158540634,1.1394004015278556,0.48315040152785566,0.7589161536301974,0.5803730089971657,0.2617135504826752,0.17631889340805676,0.17631889340805676,0.11385845471270419,0.11385845471270419,0.07092488435584396,0.07092488435584396,-0.13437499999999997,3.073701382793689,0.23087197986075003,0.2885789545685426,4.550413124802291,6.672077837186144,0.6702547460440699,0.4216247827491086,0.17648025979102508,0.04472498928851982,11.814359458703011,0.0,0.29965857400448886,9.967957041894417,0.0,0.0,0.9441279230723898,1.48066922591793,0.7229350520362905,1.1937661185869644,1.3211683678527248,1.069454170103208,1.4311996572326342,0.31149865755920053,5.719716975726273,0.4079951539760073,10.619626706576751,95.02378346505047,0.0,0.0,0.5106044900719695,11.50524905251859,0.0,0.0,0.8850726359042899,0.4079951539760073,0.0,1.6804692885517247,72.76997749826246,5.6473683133128025,10.902924932081056,0.0,4.069687500000001,4.625683712853488,0.29965857400448886,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,15.07676523300163,0.9065845271646548,5.332548292480825,0.0,1.0447056049573735,0.07395593838391043,-0.22594665412413803,-0.14043830985413325,-0.4102562438784982,-0.03372554179738344,-0.21375975283462276,0.0,0.08333333333333333,32,5,8,0,0,0,3,1,4,6,4,8,8,0,0,0,4,3.085400000000001,3.81695625,0,1,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL4226657,Cc1ccnc(Cc2cc(Nc3nc(C)cn4c(-c5cn[nH]c5)cnc34)sn2)c1,8.397940008672037,0.3035007768539515,-0.10705377067766297,0.3035007768539515,0.26618345832585777,0.015946241443907626,13.878862068965509,13.253206896551728,13.866810812965538,144,0,0.18931052607557564,-0.32753824940691695,0.32753824940691695,0.18931052607557564,0.046373365041617126,0.08085612366230677,0.11058263971462544,1.7374586207411915,71.61650017984331,1.216884347272821,1.1029640363608113,0.5104294357031468,0.7417477977556601,0.5728145065712624,0.2927789710931265,0.1834830456290788,0.2094087939993234,0.11841130964303508,0.14048535086015146,0.07945534442335472,0.09802961666877724,-0.12379310344827586,3.5648176952424824,0.23227491795631355,0.244789642032234,3.473220756220889,6.752704278645,0.18309701218235777,0.1724511026444092,0.4927146260434192,0.0,0.0,0.0,0.49918550637214076,9.967957041894417,9.472221789717487,0.0,0.0,1.687137188304997,1.6246571886096863,1.3928842363978167,0.8536490019096523,0.9654692616157688,0.0,1.1695365005656546,0.0,0.6923003150317496,5.309813353288376,71.63696765330607,0.0,11.257379486545457,0.18309701218235777,10.818944754522896,0.0,11.532486611566675,1.1695365005656546,0.21975603108032343,13.703784234591359,1.5371507715505492,48.99173217706369,2.8236841566564013,16.904556707313183,0.0,3.333793103448276,4.118523387967685,0.0,0.0,5.091706557583081,16.84229996485505,4.400694606261793,0.0,0.0,0.0,24.424157352559114,0.8536490019096523,5.209721756527352,0.01147153301961075,0.39583367262295194,0.12296899989915074,-0.17292712568314236,-0.023835886136820347,-0.09490934606531898,-0.2376450906445343,-0.2135520767576408,0.0,0.15,29,2,8,0,0,0,0,5,5,8,2,9,7,0,0,0,5,3.9221400000000015,3.8787034482758624,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,6,2,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2386809,Cc1nc(Nc2cc(-c3ccc(CNC(=O)Nc4cc(C(C)(C)C)on4)cc3)n[nH]2)cc(N2CCNCC2)n1,6.1487416512809245,0.34517144908897573,-0.10334200827877446,0.34517144908897573,0.15661701585674637,0.006140445446348993,13.606076923076943,12.7273076923077,13.597092828923104,204,0,0.32026306004225935,-0.35866642681121197,0.35866642681121197,0.32026306004225935,0.03155818540433925,0.052596975673898747,0.07232084155161078,1.6295056288905339,70.61341096243264,1.4567843614690803,1.3535546804083924,0.4817598086135207,0.8332719888872108,0.687225969571752,0.2580960214307317,0.17695284327312216,0.17695284327312216,0.10505592041713435,0.10505592041713435,0.06464956395441243,0.06464956395441243,-0.11410256410256413,3.7296836941220133,0.18944958582041968,0.28501301003007196,6.709609045260962,7.040851128132067,0.6500626853253578,0.7807713417617348,0.29398028438840595,0.0,0.0,6.031114512338072,0.2667056387402938,14.76249422596624,5.098681808301038,0.0,1.2790260112734784,0.318342143820325,2.1415931642150476,0.6029176724374696,1.439201042092887,0.7513478365045688,0.0,0.9214009069610444,0.0,1.008190221099883,41.50697517469101,59.44503436221443,0.0,11.257379486545457,0.6702349524103585,28.065988295411934,0.0,0.0,1.4700913311411752,0.30543205522340316,6.851892117295679,1.9860455869075593,46.82002589061641,7.059210391641003,11.257379486545457,0.0,3.8184615384615372,4.772850939059306,0.12293685087363646,0.0,10.401519910871457,0.0,0.0,0.0,0.0,0.0,24.74639704429425,1.2002873979635234,7.301208685532553,0.0,0.5154439735350971,0.10645928478890951,-0.19660344307797042,-0.22472695628117648,-0.3150512857923601,0.0,-0.8961319681067638,0.0,0.37037037037037035,39,5,12,0,1,1,1,3,4,9,5,12,8,0,1,1,5,3.9355200000000012,3.8517820512820458,0,0,0,0,0,5,1,0,0,0,1,1,0,0,0,5,5,0,0,0,0,1,0,0,0,0,0,2,0,4,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL3685300,COc1ccc(C(=O)Nc2cccc(C(C)Nc3ncnc4c(C(N)=O)cc(C)cc34)c2)cc1F,8.619788758288394,0.43333851804935436,-0.11676032497625986,0.43333851804935436,0.5238030158083711,0.010304006531747841,13.528799999999995,12.837600000000007,13.519609081371447,178,0,0.2552687619482497,-0.493686909639851,0.493686909639851,0.2552687619482497,0.035918367346938776,0.06204081632653061,0.08489795918367347,2.1333994765474413,68.89204667172733,1.3015736306657228,1.1668222091971603,0.4811079234828745,0.7616888044644003,0.5944798394051994,0.25765542849091866,0.17920326770483855,0.17920326770483855,0.11598575081722348,0.11598575081722348,0.07396384122423509,0.07396384122423509,-0.12942857142857142,3.086862185931617,0.22891923573110326,0.2788709043575668,5.033222126606421,6.709984661181802,0.6021773324600878,0.3854855156563278,0.4918314567897886,0.0,11.814359458703011,0.0,0.2739735533755327,14.358372089569237,0.0,0.0,0.34528106900933114,1.9179319477608114,0.7103318090819049,1.1987388104788106,1.47939690875245,0.9777866698086474,0.0,0.28479877262555475,5.719716975726273,0.5634764772268858,17.65757916545934,88.75616689076978,0.0,5.749511833283905,0.6021773324600878,15.89566410019341,5.749511833283905,0.0,0.8234362559851433,0.0,12.669112958341575,2.060795315542325,60.68514008293588,5.6473683133128025,10.902924932081056,0.0,3.406571428571428,4.909348143185228,0.31313808355182465,0.12544042993356627,0.0,0.0,0.0,0.0,0.0,0.0,14.704819995694464,0.9054794537299136,6.134002259688086,0.0,0.9636915577441231,-0.06389914485936171,-0.2531873093994479,-0.24819538141984557,-0.4916782346197811,-0.03635414672256551,-0.21613140006161838,-0.09777200987339903,0.15384615384615385,35,4,8,0,0,0,3,1,4,6,3,9,10,0,0,0,4,4.610220000000003,3.7765085714285713,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3109942,Cn1cc(-c2ccc(Nc3cc4[nH]c(-c5cnn(C)c5)cc4cn3)c(Cl)c2)cn1,4.0,0.301222603172832,-0.10301959322020429,0.301222603172832,0.22155395715369663,0.01562866274606591,13.926793103448269,13.301137931034487,13.9010765950345,144,0,0.16810950541383085,-0.3542794610912069,0.3542794610912069,0.16810950541383085,0.036860879904875146,0.06420927467300833,0.0915576694411415,1.7303620682581415,72.30531696692512,1.2207026391352083,1.1037399876382392,0.509116847845772,0.7424963279806188,0.5747134827760096,0.28104235456943416,0.1905670143536008,0.20360027204357414,0.12481729357072643,0.13424824743201832,0.08182343049551176,0.08816806463740438,-0.12344827586206895,3.5223105775862606,0.23245868047524154,0.2340800140010245,3.3624468968790797,6.790214499727136,0.3547178146040561,0.20061595785638028,0.09736841919504832,0.0,0.0,0.0,0.3228829610444955,4.9839785209472085,10.197363616602075,0.0,0.6083916757895108,0.816920952230582,2.3773918851862286,1.457934354805962,0.8536490019096523,1.1727280646493852,0.0,1.0179983199334104,13.951653800564491,0.0,5.309813353288376,66.0992029061316,0.0,22.384282469939446,0.18309701218235777,11.50524905251859,0.0,11.600939890232516,1.0179983199334104,0.4810915103642928,0.0,0.7562805827146041,61.07656959239027,7.846317470397728,33.287207402020506,0.0,2.632758620689655,4.30494183314604,0.0,0.0,14.673419223578744,4.977003270229252,0.0,0.0,0.0,0.0,15.181342137549283,1.2536814119176705,5.06934868508293,0.21994339732434304,0.14625711498147248,0.2090656716460968,-0.12320925605057437,-0.026501812065857694,-0.13901485667967772,-0.14047220123220197,-0.2058381989452276,0.0,0.09523809523809523,29,2,7,0,0,0,1,4,5,6,2,8,6,0,0,0,5,4.760900000000003,3.9735310344827584,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,5,2,0,0,0,0,1,0,0,0,0,0,0,0,2,2,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL522785,COc1cc2nc(Nc3cc(C)[nH]n3)nc(Nc3cccc(-c4nc5ccccc5s4)c3)c2cc1OC,5.259637310505756,0.2505206364953389,-0.09307551668013256,0.2505206364953389,0.020874240706208802,0.006092894960272915,13.772837837837837,13.146243243243253,13.761172810162178,184,0,0.23049449041344733,-0.4928420694790266,0.4928420694790266,0.23049449041344733,0.02556610664718773,0.04967129291453616,0.07304601899196493,1.7184477133848424,73.52591439187033,1.217248776660155,1.1041956767538188,0.504641530292406,0.7426395991892565,0.5729639792132761,0.28850062230592066,0.1844424053737026,0.21144431798891292,0.12242509177263665,0.14913578872032168,0.08183994099449206,0.10426737851587524,-0.127027027027027,3.7087247342597336,0.23520949478475275,0.25396718654896144,4.49697621370678,6.718181528507307,0.5430635841669419,0.2925807155321025,0.5824976399834442,0.1607659265131485,0.0,0.0,0.13761369074548868,9.967957041894417,10.082660329248245,11.336785877934737,0.6532344548825183,1.0017293420435718,1.041300082690029,1.435462749307043,1.1114708990807867,1.5061562852821964,0.0,0.679522268343939,0.0,0.18518627344042377,24.69553162434193,72.16053377914471,0.0,22.07009885511757,0.5430635841669419,23.271451111340113,11.49902366656781,11.336785877934737,1.059952130986241,0.0,6.851892117295679,0.8948405167095367,66.46660578429623,4.235526234984602,31.69062075471618,0.0,2.9694594594594594,3.900680595024097,0.038157894008870284,0.0,30.93557759509796,11.336785877934737,0.0,0.0,0.0,0.0,20.05061737114266,1.0733130050719164,5.366254794301762,0.01604274223446716,0.3309904867510976,0.06949026193452268,-0.09802635382015093,-0.14564559550962042,-0.25351094445468386,0.0,-0.08411294648653724,-0.18571667918509002,0.1111111111111111,37,3,9,0,0,0,3,3,6,9,3,10,10,0,0,0,6,6.442420000000004,3.9888675675675622,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,4,3,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,3,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL3670456,Cc1cc(C(N)=O)c2ncnc(NCc3cccc(F)c3)c2c1,5.886056647693162,0.625396400943553,-0.14977978449834045,0.625396400943553,0.2486725245653818,0.03374735562814593,13.492695652173904,12.835304347826089,13.483608231304368,116,0,0.2504275048780572,-0.36553056911190474,0.36553056911190474,0.2504275048780572,0.06616257088846882,0.1058601134215501,0.14177693761814744,2.522564595975367,63.670731018790896,1.270833397330293,1.133698571542301,0.48152465849882276,0.7504589186629885,0.5782606414124466,0.25905886808636513,0.17776356486578318,0.17776356486578318,0.11290791657850802,0.11290791657850802,0.07381737704762117,0.07381737704762117,-0.1313043478260869,2.7863129643607376,0.22883700251739664,0.2608499921853774,3.1051795076536597,6.659557475878346,0.47954479691368035,0.839531038652929,0.1841533145645479,0.0,5.907179729351506,0.0,0.2084581384379053,14.358372089569237,0.0,0.0,0.5254277137098518,1.8325421709279501,0.6954504159691912,0.9585313329858702,1.298677440903212,0.9838246712725041,0.0,0.43338943660410506,5.719716975726273,0.5803805131135489,5.309813353288376,65.06545927608288,0.0,0.0,0.47954479691368035,10.208277825509848,0.0,0.0,0.6902233378802576,0.28247216018764976,12.669112958341575,1.6493041014437158,42.557883959946,4.235526234984602,10.902924932081056,0.0,3.5173913043478264,4.641821543160364,0.3993457492063758,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,0.8993316916968365,5.768396538410425,0.0,0.8571271551399099,-0.04849535211293319,-0.20435078992823935,-0.18920019744965633,-0.3033398410703201,-0.045184943274142714,-0.2914743088454779,0.0,0.11764705882352941,23,3,5,0,0,0,2,1,3,4,2,6,5,0,0,0,3,2.7883200000000015,3.761721739130435,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3680400,CNCC(Nc1ncnc2c(C(N)=O)cc(OCCN(C)C)cc12)c1cccc(F)c1,6.0,0.49127088529416213,-0.14056135668265313,0.49127088529416213,0.7003919207145684,0.014719509933272002,13.757935483870957,12.880000000000006,13.748966204000023,164,0,0.25055698342046173,-0.49221113908270125,0.49221113908270125,0.25055698342046173,0.04786680541103018,0.07700312174817898,0.10301768990634755,2.693615459554813,67.15447115088483,1.4706766276826626,1.350894923449571,0.47992718151408714,0.8307873425120889,0.6781771170064513,0.24950439500645666,0.16627206691941301,0.16627206691941301,0.10410288085457534,0.10410288085457534,0.06757072696420495,0.06757072696420495,-0.10645161290322577,3.0427703648776747,0.19814105915829763,0.32714757411986406,5.648805176700686,7.043079878540495,0.837939237643663,1.0654694530176054,0.13662987854789038,0.0,5.907179729351506,0.0,0.15466248980876846,14.358372089569237,0.0,0.0,0.3898334650105351,1.6342131297805458,1.167735639139018,0.9495119897804799,1.6482783964765995,0.7299344335247611,0.0,0.6508929072913958,5.719716975726273,0.19412556349514984,45.789998665683285,59.50200778438588,0.0,5.749511833283905,0.6798776334226798,10.208277825509848,5.749511833283905,0.0,1.9759752198223004,0.0,5.817220841045895,1.724734820249373,42.557883959946,5.6473683133128025,10.902924932081056,0.0,3.4000000000000004,5.019897362930176,0.1988805077497433,0.14162629186047807,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.3077715968663777,7.673217393609981,0.0,0.6218190932995148,-0.09922592264951137,-0.170215544923058,-0.23795821393875835,-0.4478234742953718,-0.04546110191421313,-0.8024167453176152,0.0,0.3181818181818182,31,4,8,0,0,0,2,1,3,7,3,9,13,0,0,0,3,2.1808000000000005,3.832106451612904,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,2,1,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2203771,Cc1cc(CN2CCN(c3c(Cl)cnc4[nH]c(-c5ccc(N6CCN(C)CC6)cc5F)nc34)CC2)no1,7.060480747381384,0.4530455473399092,-0.11418594120859062,0.4530455473399092,0.07014309299576116,0.011412552735127817,14.190054054054068,13.372756756756765,14.168149012972998,194,0,0.16971427102895906,-0.3688818859765382,0.3688818859765382,0.16971427102895906,0.032140248356464576,0.05405405405405406,0.07450693937180423,1.606347360440255,70.99294786240286,1.402038716446992,1.2903212432562698,0.4999409445000117,0.8026773021109354,0.667848798833129,0.27408530903608214,0.18517266385002223,0.19538791987729862,0.12243584605787892,0.12955806144160897,0.08043113904930944,0.0862764474296299,-0.08675675675675676,3.678982101181184,0.2075002776415407,0.26817319086993724,4.882742980339684,7.069163645844824,0.6540493891825414,0.6194209047442304,0.19078430538097105,0.0,0.0,0.0,0.1324299927256886,14.358372089569237,0.0,0.0,0.4529081931718368,0.863647976772103,2.490099433511184,1.2421663652972432,1.3534418970787239,0.9226916318373954,0.0,0.8081471089445964,0.0,0.36077707571923306,68.75052383651075,52.63659960997806,0.0,11.387855989696924,0.2648599854513772,15.765187597041944,0.0,11.600939890232516,2.4014093893448614,0.17559080227880933,12.669112958341575,1.3839506362880898,34.86566497844129,6.434475392069527,22.551733928080914,0.0,2.1772972972972973,4.823302734790526,0.0,0.1186598661533735,4.977003270229252,0.0,0.0,0.0,0.0,0.0,19.64771523599321,1.426075137770193,7.421272336277613,0.17254053140302889,0.13782816314433663,0.05309382426940721,-0.21858644491481483,-0.1261386790977032,-0.17121413689633383,-0.03298995800901883,-1.1990188493897285,0.0,0.4230769230769231,37,1,9,0,2,2,1,3,4,8,1,11,7,0,2,2,6,3.7878200000000026,3.857640540540537,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,7,1,0,0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2063434,Cc1nc(Nc2cc(-c3ccc(CNC(=O)OCc4cccnc4)cc3)n[nH]2)cc(N2CCN(CCO)CC2)n1,6.0,0.32611188595951557,-0.10825349445430528,0.32611188595951557,0.18448792099140254,0.005890554234401784,13.590800000000035,12.759200000000007,13.581765897900024,208,0,0.40723531326578066,-0.444623651020666,0.444623651020666,0.40723531326578066,0.031875,0.05375,0.074375,1.6544587617547943,70.86011113246013,1.4149761786917576,1.30624168077228,0.48124168077228024,0.8171523705805654,0.6635327004347771,0.25728547351068365,0.1666098076097744,0.1666098076097744,0.10196537003219945,0.10196537003219945,0.06261275852799106,0.06261275852799106,-0.11375000000000002,3.519515226945507,0.20038163739205692,0.3250316937215886,7.302659044295895,6.965401027277021,0.6341301895583622,0.7459244518605326,0.10588815587461504,0.03577999143081585,0.0,6.093240070938415,0.3743898702345192,14.76249422596624,5.098681808301038,0.0,0.7553023384579118,0.46144405791639925,2.1718878982944427,0.9917021090292291,1.4656933173225029,0.5886707101110875,1.4311996572326342,0.8838011753216148,0.0,0.49769342611319783,49.25300674863486,77.63644756432981,0.0,11.257379486545457,0.3879884109356807,22.248125517576906,0.0,0.0,2.0429691310837628,0.44481769702580704,6.851892117295679,1.4175826402582588,60.685140082935874,4.235526234984602,11.257379486545457,0.0,3.610499999999999,4.6625327244833015,0.11986342960179555,0.0,10.401519910871457,0.0,0.0,0.0,0.0,0.0,29.89628851604992,1.135468100528841,6.961831404390926,0.0,0.5454538576515169,0.150644470807813,-0.12029414528060652,-0.14937978004039182,-0.26596663779575264,-0.10936049565522894,-0.9150120074116128,0.0,0.32142857142857145,40,4,12,0,1,1,1,3,4,10,4,12,12,0,1,1,5,2.85442,3.7768974999999942,0,1,0,0,0,5,1,0,0,0,1,1,0,1,0,6,3,0,0,0,0,1,0,0,1,0,0,1,0,3,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL469204,Cc1[nH]nc2c1Cc1c-2[nH]c2ccccc12,6.060480747381384,0.5313408210506425,-0.17701358296983916,0.5313408210506425,0.17268518518518472,0.02870366422178817,13.078250000000004,12.385249999999997,13.0684560845,78,0,0.1896539439028483,-0.3529461034545916,0.3529461034545916,0.1896539439028483,0.09375,0.15234375,0.2109375,2.248513116589326,71.97738695630588,1.2632912675407304,1.177602549156242,0.49010254915624213,0.7695806416572867,0.6243033988749895,0.28715169943749475,0.2160144118671816,0.2160144118671816,0.1610015932226513,0.1610015932226513,0.11694574517148007,0.11694574517148007,-0.12687499999999996,3.1137259466210776,0.18774632419062312,0.1596784842198909,0.8177667853225091,6.754464130641414,0.31106270438932826,0.3558704996780288,0.17648025979102508,0.0,0.0,0.0,0.3182316598489426,0.0,5.098681808301038,0.0,1.1329535076868678,1.153610144790998,2.2116888813004376,0.6985601387205838,0.9475319476367738,0.681432808255066,0.0,0.9479619772570856,0.0,0.8265510636640662,0.0,40.99050580889563,0.0,11.387855989696922,0.0,0.0,0.0,0.0,0.9479619772570856,0.3983078063330862,6.851892117295679,1.8223536239859017,24.16967483065318,2.8236841566564013,22.29078092177798,0.0,2.779375,2.6930262402579186,0.0,0.0,33.41768390517197,10.068709827812334,0.0,0.0,0.0,0.0,5.098681808301038,0.9475319476367738,5.478667571629346,0.0,0.04008435492252457,0.24370391038359784,-0.1165061977723187,0.0,-0.1353840850576341,-0.15646863780234313,-0.17701358296983916,0.0,0.15384615384615385,16,2,3,1,0,1,1,2,3,1,2,3,1,0,0,0,4,2.770620000000001,3.963962500000002,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,1,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL604485,COc1cc2ncnc(Nc3ccc(-c4nc5ccccc5s4)c(O)c3)c2cc1OCCCN1CCN(C)CC1,6.522878745280337,0.22867979368833374,-0.11895894212360195,0.22867979368833374,0.05450518242805824,0.005800842108271014,13.917300000000036,13.110900000000006,13.905641497100024,206,0,0.2931303077252128,-0.5071379208047093,0.5071379208047093,0.2931303077252128,0.028749999999999998,0.051875000000000004,0.07375000000000001,1.5840030197380104,74.42287510327114,1.3826538482214215,1.28290686837138,0.5033192828945732,0.8080295464865923,0.6603706517771761,0.28439651915127373,0.17940939024812066,0.20438615941719024,0.1179743528409986,0.14268174751760715,0.07597630902875373,0.09776335540269984,-0.09974999999999998,3.66207679899921,0.20700586709672578,0.2907328824046177,5.64703417785832,7.042037807883683,0.742304172842416,0.6062282144527036,0.3227716436224003,0.0,1.4311996572326342,0.0,0.0,14.951935562841626,0.0,11.336785877934737,0.30212093538316476,1.0890211334982023,1.9051031167151986,1.3521082582895154,1.427928321553554,1.0990395124154937,1.4311996572326342,0.6187938756135646,0.0,0.1593231225332345,58.366876376949214,60.68514008293588,0.0,27.819610688401475,0.36958848152221185,11.50524905251859,17.248535499851716,11.336785877934737,2.1087206474135822,0.0,0.0,1.1873920396609001,60.68514008293588,1.4118420783282006,31.69062075471618,0.0,2.39675,4.3783777111443865,0.0,0.0,20.534057684226504,11.336785877934737,0.0,0.0,0.0,0.0,20.060743753948838,1.3359881082066893,6.946916998918352,0.01375416170804004,0.2389152559695325,0.07844906944996644,-0.07532404125309819,-0.1345329502126163,-0.2154190359710991,-0.14741435058383798,-0.7730799138359874,-0.09268186085592052,0.3,40,2,9,0,1,1,3,2,5,10,2,10,12,0,1,1,6,5.380600000000005,4.003562499999992,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,5,1,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL1651521,COc1cc(O)c2c(c1)CCC[C@H](O)CC(=O)/C=C\C[C@H](C)OC2=O,5.0,0.549555961829176,-0.1902313681027967,0.549555961829176,1.610585163351894,0.030312068444209833,13.935799999999986,12.968120000000004,13.926291539520026,136,0,0.34197606723683255,-0.5068974994747927,0.5068974994747927,0.34197606723683255,0.0608,0.09759999999999999,0.128,3.515895964990775,62.44086640921295,1.5640771926656982,1.4379795897113272,0.47797958971132715,0.8611898249786681,0.7179795897113271,0.2453197264742181,0.16048809399827416,0.16048809399827416,0.09545025426073366,0.09545025426073366,0.05824489742783178,0.05824489742783178,-0.09360000000000002,2.9425429021880287,0.18720986298069855,0.3466943125351326,5.322553795003368,7.220458044188586,0.7876536915925808,0.9256997274085919,0.23132979785459756,0.057247986289305365,1.4311996572326342,5.969305287951849,0.19178148736287287,4.794537184071822,0.0,0.0,0.24208286984142266,1.745144350667187,1.464325189621397,1.018191899654582,2.3774841957481225,0.47010200937267155,2.8623993144652684,0.0,0.0,2.035062107113702,7.037952458882589,35.31588389079171,0.0,11.49902366656781,0.18947451815200198,0.0,11.49902366656781,0.0,1.7612221777511616,0.63617300156805,0.0,3.1368688050329534,24.18898090739772,0.0,0.0,0.0,3.7224,4.659278517136058,0.38356297472574574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.69134228981452,1.3207635020084043,8.079962010387685,0.0,1.0777450434948697,0.3177725876142723,-0.16052618837658522,-0.3452978065067981,-0.3211041456591656,-1.2940400725673908,-0.17196322595153768,-0.14588153576868632,0.47368421052631576,25,2,6,0,1,1,1,0,1,6,2,6,5,0,0,0,2,2.548800000000001,3.6744840000000014,0,1,0,0,0,0,0,1,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1825100,CS(=O)(=O)N(CCO)c1ccc(Nc2ncc3cnn(C4CCCCCC4)c3n2)cn1,6.958607314841776,0.4231971571773202,-0.19989501037816892,0.4231971571773202,0.24588010204081634,0.01714861881950187,14.372548387096764,13.494612903225812,14.36095512012906,166,0,0.2329936204428848,-0.3944905418382244,0.3944905418382244,0.2329936204428848,0.04474505723204995,0.07180020811654526,0.0967741935483871,2.089811677492332,72.23645869296394,1.469067335657996,1.3472093009791988,0.5025801584284801,0.8249496832606319,0.6818227763337356,0.2974550809413748,0.16765044445254806,0.2100788654630778,0.10557669694605015,0.12960703329323894,0.0673540699120055,0.08256652030751235,-0.09,3.405419736601108,0.19883978153609244,0.2950066974639548,4.932693274885069,7.065276294866205,0.33608456594824476,0.187672992833388,0.22771029997083642,0.5613816158589263,0.0,0.0,0.13887793520310432,23.06755696136854,10.082660329248245,0.0,0.8223128904941135,0.8009899102575919,0.8623959210763888,2.0124079990057564,1.5873358438070928,1.2422671265208127,1.4311996572326342,0.7978200098802531,0.0,1.4275948992363199,28.854798372933306,30.603523047770874,0.0,0.0,0.31016223692208417,17.453588333505085,0.0,0.0,1.900967553784043,0.32333197269056724,0.0,2.533045347760691,30.603523047770874,1.4118420783282006,11.033401435232523,0.0,4.0687096774193545,4.416588092447966,0.2715418382041593,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,25.159425562249876,1.19716147225214,7.936075585790925,0.0,0.34174886322170156,0.19033933146589666,-0.0830315100087241,-0.09925981320507506,-0.24229611425634104,-1.1047930023577373,-0.2684582227455975,-0.19989501037816892,0.5,31,2,10,1,0,1,0,3,3,9,2,11,9,1,0,1,4,2.6185,3.834106451612905,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL1084636,Cc1cc(CN2CCN(c3c(Br)cnc4[nH]c(N5CCNCC5)nc34)CC2)no1,8.0,0.30759303477969513,-0.14202661359856003,0.30759303477969513,0.058611454590475454,0.02096148739254419,15.909241379310338,15.040275862068974,15.866671362758648,154,0,0.2047303118006544,-0.3661434405301379,0.3661434405301379,0.2047303118006544,0.04518430439952437,0.07372175980975029,0.09988109393579073,1.8185018840759124,67.85041714312234,1.4452183066689985,1.3401352250852674,0.5327557953995675,0.8222414104347443,0.689483797174867,0.289434524021675,0.17902020457573356,0.2063649724915042,0.11744020119441828,0.13650534515108467,0.07761078800948132,0.0932578359766764,-0.07482758620689654,3.5249062544038012,0.1980323911544778,0.2732388001908255,3.836842728135863,7.322724041256386,0.8486114145583424,0.43754449016616914,0.24341445858951477,0.20511514762022395,0.0,0.0,0.16896240451208544,9.967957041894417,0.0,0.0,0.17781597438363606,0.7855805522498285,3.0519624933632543,1.019366184381608,1.3404905477774074,1.3355016342070134,0.0,1.0452188501168265,0.0,0.46030178626246976,61.77469693622851,28.142208848033373,0.0,0.0,0.5210218212065287,11.635725555670057,0.0,15.929943897949348,2.6543589922285227,0.22402964428675673,6.851892117295679,1.4821249036426891,21.211128371283817,2.8236841566564013,11.16387793838399,0.0,3.081034482758621,4.361212575943638,0.0,0.0,14.776822731930208,0.0,0.0,0.0,0.0,0.0,35.57765913394256,1.1845217568472917,7.373541601699526,0.09911902324206853,0.21863676053177344,0.0878699826115485,-0.1566060989054656,-0.08836696549309014,-0.04499256692857273,-0.03514593013701724,-1.324745461793185,0.0,0.5263157894736842,29,2,9,0,2,2,0,3,3,8,2,10,5,0,2,2,5,1.7486199999999998,3.979358620689657,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,6,2,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL4292755,Cc1cc(Nc2nc(-c3ccccc3)nc3cc(N4CCN(C)CC4)ccc23)n[nH]1,8.0,0.30370989972635143,-0.1332667194220728,0.30370989972635143,0.011337657829708192,0.018115810517878705,13.316733333333323,12.476733333333337,13.307238126666693,152,0,0.18970436296571433,-0.3689032577806308,0.3689032577806308,0.18970436296571433,0.03777777777777778,0.06666666666666667,0.09222222222222222,1.9812487806256827,73.43178412808061,1.4081891998847265,1.321016505616657,0.48768317228332353,0.8233020059368205,0.6824974119833207,0.26934983894999026,0.1848361657291578,0.1848361657291578,0.12045936132874364,0.12045936132874364,0.07858255692832952,0.07858255692832952,-0.11499999999999999,3.3428782690757752,0.18722203138405652,0.2586290031713402,3.713684665954324,7.0185846940385295,0.503654427166311,0.19392875926116762,0.48219838108304525,0.0,0.0,0.0,0.16972355191943606,9.967957041894417,5.098681808301038,0.0,1.0070697846105492,1.065165838018927,2.268947766077437,0.7778853982609706,1.1450376982857153,0.9408678920811558,0.0,0.8352751712876338,0.0,0.22839640390985597,43.17298872168488,60.07569636381811,0.0,11.387855989696924,0.3403241028046285,17.323111830353618,0.0,0.0,1.9340506925391678,0.0,6.851892117295679,1.2407124928921176,54.38176836896965,2.8236841566564013,22.29078092177798,0.0,2.4323333333333332,4.813488553388065,0.0,0.0,15.301429641721935,0.0,0.0,0.0,0.0,0.0,15.066638850195455,1.1450376982857153,6.925260979610764,0.0,0.23472929015777252,0.0909091144441731,-0.14035014749700533,-0.09698803189696964,-0.32104467404101467,0.0,-0.7647387529999425,0.0,0.2608695652173913,30,2,7,0,1,1,2,2,4,6,2,7,6,0,1,1,5,3.8237200000000007,4.043046666666668,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,5,2,0,0,1,0,1,0,0,0,0,0,0,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3680524,COc1cc(C(N)=O)c2ncnc(NC(CN(C)C)c3ccccc3OC)c2c1,6.327902142064282,0.4491804728506466,-0.15745865451864025,0.4491804728506466,0.6705020781573228,0.020822447256254595,13.636655172413784,12.76768965517242,13.627439298620713,152,0,0.2505569809816753,-0.49671446803449604,0.49671446803449604,0.2505569809816753,0.04875148632580261,0.07847800237812129,0.10582639714625447,2.834061910292269,67.65415488271388,1.4558873093158435,1.3434763051341856,0.48140733961694415,0.8287640859090694,0.6758044651779077,0.25023064495377406,0.17055066156824628,0.17055066156824628,0.1115612788819035,0.1115612788819035,0.07355839907162315,0.07355839907162315,-0.11689655172413792,2.9631023425939516,0.19324052307073777,0.30150596257077,4.377449291885084,7.0517477286468075,0.8759712402574216,0.8617591970530788,0.14605262879257247,0.0,5.907179729351506,0.0,0.16532886841626973,9.967957041894417,0.0,0.0,0.6250777973444788,1.1061693077087715,0.9797449599944653,1.6894417526083096,1.677947502151772,0.7802747392850894,0.0,0.5126850611291343,5.719716975726273,0.20751353339136708,39.834231755933985,53.68478694333999,0.0,11.49902366656781,0.707008835745336,5.817862777835028,11.49902366656781,0.0,1.9068781001635176,0.0,0.0,1.7964145128124256,42.557883959946,4.235526234984602,10.902924932081056,0.0,3.537931034482759,4.975294102759856,0.2125964048359325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.465351097315839,7.30872346164162,0.0,0.6604219871342271,-0.06615556980029134,-0.16814467923192591,-0.22131223163242097,-0.4461588785930706,-0.046649416870835195,-0.44295909479252316,-0.250179370958227,0.2857142857142857,29,3,8,0,0,0,2,1,3,7,2,8,12,0,0,0,3,2.460700000000001,3.8799862068965525,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL594661,COc1cc2ncnc(Nc3ccc(-c4nc5ccccc5s4)cc3F)c2cc1OCCCN1CCN(C)CC1,6.4089353929735005,0.41319510793780234,-0.11922335262152892,0.41319510793780234,0.1785929494834002,0.005679581761240204,13.967075000000037,13.185875000000006,13.955533086300022,206,0,0.16818100852424817,-0.4927859630535336,0.4927859630535336,0.16818100852424817,0.028125,0.050624999999999996,0.0725,1.5695763316120488,73.27628889655912,1.3649761786917576,1.2571497729350143,0.5025621874582071,0.7945794264250726,0.6497858967973966,0.28401797143309077,0.17903084252993773,0.20400761169900727,0.11756574589261821,0.14227314056922674,0.0753385410026878,0.09608392070996725,-0.09649999999999996,3.6427611325390803,0.2143775953850632,0.2927562388714626,5.695062809973893,6.98902933019456,0.6145839680647358,0.6079209396467534,0.3227716436224003,0.0,0.0,0.0,0.0,19.342350610516448,0.0,11.336785877934737,0.30212093538316476,1.2400816011897846,1.750944279448953,1.3552066278641797,1.4099684929677443,1.0990395124154937,0.0,0.6187938756135646,0.0,0.1593231225332345,58.366876376949214,66.50236092398177,0.0,22.07009885511757,0.36958848152221185,15.89566410019341,11.49902366656781,11.336785877934737,1.945220451205086,0.0,5.817220841045895,1.1873920396609001,60.68514008293588,1.4118420783282006,31.69062075471618,0.0,1.891,4.505261028759756,0.0,0.10976037619187048,15.526433987373737,11.336785877934737,0.0,0.0,0.0,0.0,14.951935562841626,1.3002081167758734,7.12175224360634,0.012369902448780784,0.2330255588728297,-0.04553782598469882,-0.08827296638642315,-0.16054702550650446,-0.22932573870394815,-0.14882761139397363,-0.7745458251135492,-0.09300737850552035,0.3,40,1,8,0,1,1,3,2,5,9,1,10,11,0,1,1,6,5.814100000000006,3.960892499999992,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,1,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,2,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL1269881,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(CN3C[C@H](C)O[C@H](C)C3)ns2)n1,8.397940008672037,0.2952676235617704,-0.1393106947694594,0.2952676235617704,0.05545584404305437,0.01692110424556045,14.151133333333323,13.34473333333334,14.139312612933356,156,0,0.18931052607557564,-0.37290478202504435,0.37290478202504435,0.18931052607557564,0.051111111111111114,0.0811111111111111,0.10666666666666667,1.7606376035527247,70.45831384621643,1.382674833138443,1.279806844830913,0.5070233975285039,0.8041529109621856,0.6581158592926818,0.287414841663817,0.18099751613576978,0.20605907289367298,0.11512142055574888,0.13645966039896143,0.07834458306148691,0.09613908898498279,-0.094,3.6120094449635376,0.20394078649452102,0.259448988501819,3.807736468098459,7.055792107095513,0.3348892102362809,0.16670273255626222,0.47629080517530525,0.0,0.0,0.0,0.4797436964898451,9.967957041894417,9.472221789717487,0.0,0.0,1.2710193890372339,1.9320399769609231,1.7060973451088812,1.2572411782067099,0.9332869528952432,0.0,1.1277496575435753,0.0,1.3070857363367654,18.303532721920263,42.12185554061926,0.0,11.257379486545457,0.17699377844294586,10.818944754522896,0.0,11.532486611566675,1.9662081716279707,0.3744574212705331,6.851892117295679,1.8416109486677723,30.733999550922338,2.8236841566564013,16.904556707313183,0.0,3.208666666666667,4.231718606401356,0.0,0.0,21.934006522438132,4.400694606261793,0.0,0.0,0.0,0.0,24.17704178541195,1.0993457464133745,6.891246396740344,0.001848528134768479,0.23467724231269074,0.09888372246909392,-0.13907751037610303,-0.029331813180072556,-0.0405061106321929,-0.3883570540851124,-0.7849389569389764,0.0,0.4,30,2,9,0,1,1,0,4,4,9,2,10,8,0,1,1,5,3.2371200000000018,3.8662800000000006,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,6,2,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3393479,CCOC(=O)c1[nH]cc2c1NC1=C(C(=O)CCC1)C2c1ccc(Sc2nc3cccc(Cl)c3[nH]2)o1,8.397940008672037,0.40224781563278683,-0.11082537598156011,0.40224781563278683,0.21746922838855243,0.008055112526482033,14.542485714285712,13.937685714285722,14.517062966628592,178,0,0.35642083624295495,-0.4612637516558063,0.4612637516558063,0.35642083624295495,0.04244897959183674,0.06857142857142857,0.09387755102040816,1.6736321067632616,70.60998790377279,1.2151466584833706,1.0773731516379534,0.5222995952649873,0.7237962950597113,0.5629277304817077,0.30157973812276717,0.19042911267207902,0.22808704986664669,0.13446421363339756,0.16330526636328835,0.09492941485307076,0.1190937744891059,-0.09799999999999998,3.6655392156569,0.25433431299576575,0.24731431216299918,3.7502048822747285,6.819973949166398,0.6976523938457221,0.32726215467779723,0.5790710590247277,0.0,0.0,5.969305287951849,0.13698677668776635,9.77851570501903,0.0,0.0,0.5040959599398803,1.5865514771428209,1.231057171676242,1.2903552114656733,1.3614933858584464,1.4810332223959,0.0,0.42679957318302036,0.0,1.2032382968903663,11.868798596204664,69.69539281141755,0.0,0.0,0.15170895295109643,5.687386274683562,0.0,23.36282483962363,0.9499863011039652,0.2723257182249106,0.0,2.2385840744915013,62.32099941382561,9.258159548725928,11.033401435232523,0.0,3.228857142857143,3.8802187129856303,0.31313808355182465,0.0,33.08210300814126,4.977003270229252,0.0,0.0,0.0,0.0,9.720841474747257,1.2444717862046921,5.273763173863139,0.1834428354849975,0.910307593522172,-0.05413073311220995,-0.21596027997297662,-0.25384465212040336,-0.1142265567738873,-0.3699761634743534,-0.2133434713847327,0.0,0.24,35,3,8,1,1,2,1,3,4,7,3,10,6,0,0,0,6,6.029800000000004,3.7723885714285714,0,0,0,0,0,3,2,0,0,0,2,2,0,0,0,1,3,0,0,0,0,2,0,0,0,0,2,0,0,1,0,0,0,0,1,0,2,0,0,0,1,1,1,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3680387,CN(CCO)c1ccc(C(=O)Nc2cccc(CNc3ncnc4c(C(N)=O)cccc34)c2)cn1,9.161150909262744,0.39309566236792476,-0.11111111546672608,0.39309566236792476,0.31919269735767486,0.008315830672828524,13.472028571428563,12.752028571428577,13.46291107600002,178,0,0.2567273451983368,-0.3945355398491168,0.3945355398491168,0.2567273451983368,0.035918367346938776,0.06204081632653061,0.08653061224489796,1.9628295288719002,69.95998417330601,1.3217766815567669,1.1958640011397514,0.48157828685403703,0.77799442940474,0.6054277221902626,0.2569390744055857,0.17176090800164942,0.17176090800164942,0.11024482911497935,0.11024482911497935,0.06823064891662582,0.06823064891662582,-0.13057142857142856,3.1282772328271986,0.22056807838823284,0.30211319084774146,5.503670871861511,6.766735390587742,0.7528017601217347,0.5517101664516144,0.16135338038036579,0.04089141877807526,11.814359458703011,0.0,0.2739735533755327,14.951935562841626,0.0,0.0,0.5179216035139967,1.1947989639336218,1.1808093610682264,1.2895635955042883,1.3645834855990877,1.1440113206039337,1.4311996572326342,0.4271981589383322,5.719716975726273,0.185624562409027,35.55120826494171,83.54838976884163,0.0,0.0,0.6068358118043858,17.323111830353618,0.0,0.0,1.523942134211399,0.185624562409027,0.0,1.5341314276182594,66.85803529375065,5.6473683133128025,10.902924932081056,0.0,4.181714285714286,4.744193073190713,0.2739735533755327,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,20.060743753948838,0.985535402684281,5.795514368669974,0.0,1.0439592114898832,0.05806521957617922,-0.18675348908017703,-0.17539697027848547,-0.328927060022539,-0.07413381725231817,-0.43232746310251724,0.0,0.16,35,5,10,0,0,0,2,2,4,8,4,10,11,0,0,0,4,2.4166,3.8391599999999992,0,1,0,0,0,3,0,0,0,0,2,2,0,0,0,4,2,1,0,1,0,0,0,0,0,0,0,2,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL203007,COc1cc2c(Nc3cnc(NC(=O)c4ccc(C)c(Br)c4)nc3)ncnc2cc1OCCCN1CCOCC1,7.154901959985742,0.3356608409215071,-0.11459300131265496,0.3356608409215071,0.05700343523553286,0.006179074460917861,15.21242500000003,14.456425000000001,15.178856613500022,208,0,0.2575580105417451,-0.49284175653831674,0.49284175653831674,0.2575580105417451,0.030625000000000003,0.051875000000000004,0.071875,1.6659314744596774,68.26345131854686,1.3537863347619399,1.2285363200841097,0.5181862335619772,0.781156672558329,0.6279095102594434,0.2753737872233793,0.16877058761431357,0.18859554435324738,0.10672785941363838,0.12159657696783874,0.06513123912524095,0.07256559790234111,-0.09675,3.1673057143289647,0.22665045332282935,0.3247137285952296,6.816966500146701,7.056098241967996,0.4880100553672131,0.3372998261992869,0.3580676955806053,0.14870848202466236,5.907179729351506,0.0,0.3751065067052669,19.935914083788834,0.0,0.0,0.5493090651403161,0.9228881158327985,1.4008434275119446,1.8049230625071082,1.5052512443723647,1.2548409223221748,0.0,0.6208955953659828,0.0,0.3306204254656265,56.825113947156034,64.46087817313864,0.0,11.49902366656781,0.5023338153544212,17.453588333505085,11.49902366656781,15.929943897949348,1.9237122696142528,0.11842157384500122,6.851892117295679,1.5168901160390353,53.333975189744635,2.8236841566564013,10.902924932081056,0.0,3.0905,4.363845220617473,0.11986342960179555,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,40.60272093553823,1.2669662409255673,6.503318188730246,0.07046670024336515,0.672787095281518,-0.032763574282473555,-0.09923927985366218,-0.17753107003404422,-0.14877987487879296,-0.20619999972354358,-0.7099760952097414,-0.09291542360620705,0.32142857142857145,40,2,11,0,1,1,2,2,4,10,2,12,12,0,1,1,5,4.596320000000004,3.890197499999993,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,2,0,1,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL4227557,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(Cc3cccc(CN4CCCCC4)n3)ns2)n1,8.397940008672037,0.2558669358910952,-0.11774505694777841,0.2558669358910952,0.164949456753676,0.009927762768485681,13.874885714285707,13.097285714285722,13.863171796114308,178,0,0.18931052607557564,-0.3275382494069151,0.3275382494069151,0.18931052607557564,0.035918367346938776,0.06204081632653061,0.08653061224489796,1.532067437725361,75.23816400970456,1.3533427525743265,1.2552334471418138,0.5071333494540345,0.7964774725342453,0.6509268881090441,0.2903260158557315,0.1815323461533774,0.20301368051729446,0.11729842782922754,0.13558834769483843,0.07845329099720737,0.09384340228627178,-0.1037142857142857,3.7567802800319803,0.20585842415624597,0.272910027260044,4.798793589165422,7.001482047739214,0.15170895295109643,0.1428880564767962,0.40824926157883307,0.0,0.0,0.0,0.5536082690183589,9.967957041894417,9.472221789717487,0.0,0.35472410311407643,1.7786058292326539,1.7078814271061171,1.316787738582433,1.059789944597483,0.79996024533878,0.0,1.1090419499215562,0.0,1.1097271830551183,18.303532721920263,71.63696765330606,0.0,11.257379486545457,0.15170895295109643,10.818944754522896,0.0,11.532486611566675,1.48029107473961,0.3677081310184378,6.851892117295679,2.1760985882182142,48.861255673912225,2.8236841566564013,16.904556707313183,0.0,2.8548571428571434,4.459844274901535,0.0,0.0,21.934006522438132,4.400694606261793,0.0,0.0,0.0,0.0,24.42415735255911,1.059789944597483,6.596653491410072,0.0047128416215336,0.308612405707804,0.09084385350704495,-0.19160932838103906,-0.023718735991893405,-0.14391673730271995,-0.5364175167512722,-0.44325551191476875,0.0,0.32,35,2,9,0,1,1,0,5,5,9,2,10,8,0,1,1,6,4.5996200000000025,3.9106685714285683,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,7,2,0,0,0,1,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL597753,Cn1nc(C(N)=O)c2c1-c1nc(NC3CCN(C(=O)C4CCN(S(C)(=O)=O)CC4)CC3)ncc1CC2,5.907630300370879,0.4062129921711819,-0.18330039397023248,0.4062129921711819,0.18686966050488696,0.015796104200682858,14.350777777777775,13.454777777777785,14.33963118066669,194,0,0.26901235323494516,-0.3641910642224725,0.3641910642224725,0.26901235323494516,0.035493827160493825,0.05709876543209876,0.0763888888888889,1.8132336196519447,70.81174473040359,1.4917840031170668,1.3644152837866383,0.4982068554790751,0.8231576677000666,0.6951117418781596,0.29506792360873635,0.18307825085708204,0.2196138356161495,0.12075908093083607,0.13918382450500505,0.07844306451830749,0.08765543630539199,-0.085,3.556270747233853,0.19640310957700124,0.26196188338209975,4.685107253945072,7.082863148049666,0.4424844461073646,0.0,0.2758181730509184,0.6077447267707107,5.907179729351506,0.0,0.39641325842468966,22.690970017519586,5.098681808301038,0.0,0.0,1.2166944694353685,2.600609541954621,0.5642582556431617,1.7220665476776005,0.7718330525860302,0.0,0.8042657640968708,18.5895015613716,1.2293178298979421,37.48117619166861,22.993726189057213,0.0,11.387855989696922,0.3063758424726291,5.948339280986494,0.0,0.0,2.4270827571458105,0.9594306955672336,5.893957685363079,2.412751830460226,6.172895210814761,4.235526234984602,11.387855989696922,0.0,4.344722222222223,4.769411595093448,0.5001908709020161,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,15.066638850195453,1.2218756767755834,8.12545295898725,0.0,0.920510761689434,0.06934266691183116,-0.20788592426156152,-0.3371028977844787,-0.1321787468969609,-0.925908157956433,-0.650689525978111,-0.18330039397023248,0.6086956521739131,36,3,12,1,2,3,0,2,2,9,2,13,7,0,2,2,5,0.1491000000000029,3.6812611111111107,0,0,0,0,0,4,0,0,0,0,2,2,0,0,0,6,1,1,0,0,1,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL3675532,CNc1cc(C(=O)Nc2cccc(CNc3ncnc4c(C(N)=O)cccc34)c2)ccn1,9.82390874094432,0.42492952959305824,-0.11358730355907068,0.42492952959305824,0.2768776603197045,0.01112355815797976,13.358374999999993,12.696875000000006,13.349239778500019,160,0,0.2553517454785741,-0.37313159124809586,0.37313159124809586,0.2553517454785741,0.037109375,0.0654296875,0.0927734375,1.9932073222476374,69.2630219794611,1.2673461585406343,1.1389684921696073,0.48271849216960727,0.7564943747494028,0.5797251449597932,0.25984802066292473,0.17419248471302493,0.17419248471302493,0.11255683358798549,0.11255683358798549,0.07083824250832804,0.07083824250832804,-0.14156249999999998,3.056616485726993,0.22704305780134,0.2839766113597298,4.460984312382373,6.67041104926332,0.6765361573622313,0.6034329945564533,0.22060032473878136,0.0,11.814359458703011,0.0,0.29965857400448886,14.951935562841626,0.0,0.0,0.5664767538434339,1.3068113668023988,1.2623412326490304,0.8602892151048717,1.2056381768283804,1.2512623819105526,0.0,0.4672479863388008,5.719716975726273,0.20302686513487328,22.905266960147372,83.54838976884163,0.0,0.0,0.6765361573622313,17.323111830353618,0.0,0.0,1.05444131005709,0.20302686513487328,0.0,1.5066114294361932,66.85803529375065,7.059210391641003,10.902924932081056,0.0,4.2162500000000005,4.461912173446994,0.29965857400448886,0.0,15.929440059865126,0.0,0.0,0.0,0.0,0.0,14.951935562841626,0.9059796028238911,5.312425291530212,0.0,1.1514093780741956,-0.056751029471573226,-0.19208344765106228,-0.1757634353305043,-0.33171523059922825,-0.06913331195343407,-0.21651321459860526,0.0,0.08695652173913043,32,5,9,0,0,0,2,2,4,7,4,9,8,0,0,0,4,3.0298000000000007,3.8612968750000003,0,0,0,0,0,3,0,0,0,0,2,2,0,0,0,3,3,1,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL237369,CN(C)c1ccc(-c2nc3c(Cl)ccnc3[nH]2)cc1,5.619788758288393,0.43541184309981307,-0.17437780171501321,0.43541184309981307,0.14746150391081825,0.040952225238281056,14.354684210526303,13.665,14.320151268210545,96,0,0.169712159818587,-0.3776608814775039,0.3776608814775039,0.169712159818587,0.06925207756232687,0.11080332409972299,0.14958448753462603,2.397330079391456,63.360876380045525,1.28932196479094,1.166674676579424,0.522249884264606,0.7629374869067764,0.5999293164081254,0.280495152066508,0.18110701155944509,0.20099987855993076,0.1176676062724275,0.13206222006071516,0.07314990515448845,0.08204626573057809,-0.10894736842105263,2.963510962284978,0.22178750312755327,0.23957412955274082,2.14858393036585,7.049172394763242,0.5198375263726174,0.5969002745061152,0.3715273315313647,0.0,0.0,0.0,0.0,9.967957041894417,0.0,0.0,0.6105757836964482,1.590110186227183,2.0842072691990077,0.6972202447769814,0.9400497238089917,1.497484426489477,0.0,0.7865768585328247,0.0,0.0,18.85156353141497,41.40762206287256,0.0,11.387855989696924,0.25788998583423567,5.687386274683562,0.0,11.600939890232516,1.5208744269835874,0.0,0.0,0.8657422460022441,36.38498874913124,6.434475392069527,22.55173392808091,0.0,2.358421052631579,3.547993937582959,0.0,0.0,21.086420982975792,4.977003270229252,0.0,0.0,0.0,0.0,9.967957041894417,1.5506255075054396,5.345432678424833,0.31616723705791067,0.425594324187018,-0.01632044915442801,-0.10379576402794162,-0.024986971396745824,-0.21630568205243522,-0.029076553233916346,-0.34875560343002643,0.0,0.14285714285714285,19,1,4,0,0,0,1,2,3,3,1,5,4,0,0,0,3,3.3443000000000014,4.1400894736842115,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2064539,COC[C@H]1COc2ccc(-c3nnc(SCc4ccc(-c5ccccc5C#N)cc4)o3)cc2O1,4.0,0.28422521694335606,-0.11191640900936377,0.28422521694335606,0.020332457442985064,0.009797461593761762,13.868764705882352,13.246176470588246,13.856625798588253,170,0,0.2766866667479507,-0.485738509410016,0.485738509410016,0.2766866667479507,0.035467128027681656,0.06055363321799307,0.08564013840830449,1.5756132398874034,67.54868536665889,1.2265841068613206,1.0994965364358587,0.5058640829337328,0.736678082947388,0.5709429954579193,0.2861340713675582,0.1746097793845701,0.19688887182473433,0.11395488187524767,0.1329486946848025,0.07222470246207266,0.08674485391526279,-0.1117647058823529,3.5039634940051654,0.24855103351989818,0.2939734265635113,4.760701344456514,6.774979175405669,0.5478746999545145,0.19291133067400848,0.5170306380446411,0.1732565859419385,5.222755905846688,0.0,0.0,0.0,5.261891554738487,10.197363616602075,1.5899651736186524,1.2017655678160049,0.61905523376677,1.301060900430581,1.3945196905302397,0.3459377926291505,5.261891554738487,0.29992245931182576,0.0,0.5002273769984363,20.155922944715165,77.59350876769025,0.0,40.14932337647698,0.2786389972823558,0.0,11.49902366656781,11.761884949391115,1.0715677820078597,0.30711234820441785,11.33111286753076,1.173906843028489,76.10651262719628,0.0,22.581078397116894,0.0,2.658823529411765,4.37756660570697,0.15476151631583784,0.0,11.761884949391115,0.0,0.0,0.0,6.069221312792274,0.0,14.934226570402124,1.2552001918890614,5.6284141703061685,0.000598013454205443,0.0,0.4763655331099013,-0.19587968500316338,-0.08193841392088383,-0.2529192748521973,-0.1091353660111219,-0.21738216484078973,-0.10351496910486462,0.19230769230769232,34,0,7,0,1,1,3,1,4,8,0,8,8,0,0,0,5,5.353780000000005,3.755147058823529,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL505896,COc1cc2c(Oc3ccc(-c4cnc(Cc5ccccc5)n(C)c4=O)cc3F)ccnc2cc1OCCCN1CCOCC1,6.935542010773082,0.37207222646150373,-0.1038100068065489,0.37207222646150373,0.4551981843467008,0.0039570272911083814,13.570800000000036,12.786800000000007,13.5613144097778,232,0,0.2606062308333178,-0.4928417284205577,0.4928417284205577,0.2606062308333178,0.023209876543209877,0.04246913580246914,0.06074074074074074,1.5745216678589697,75.6724947409235,1.3740243990053154,1.2601791179406305,0.48240134016285274,0.7942038088480874,0.6502703893575953,0.26138150046870634,0.1755716371339422,0.1755716371339422,0.11548812952673375,0.11548812952673375,0.07285244480280233,0.07285244480280233,-0.10666666666666665,3.2811596558252236,0.21342089497785047,0.30841125808604775,6.973242630385489,6.878042117474918,0.42105448478222657,0.2571981406951963,0.5125723631310579,0.0,5.559266895052008,0.0,0.4276783351924636,9.374393568622029,0.0,0.0,0.8056558276884392,0.9259889492305899,1.6540805650784425,1.5100388585042133,1.5847648073073948,0.24228722071291237,0.0,0.43188814267858333,6.975826900282246,0.2832411067257502,46.20548724057928,106.3712771157924,0.0,34.12495031652961,0.439330127921159,4.39041504767482,22.99804733313562,0.0,1.4586767480247895,0.40190255012025944,5.817220841045895,1.4608295634885347,83.60693338999758,0.0,22.029827915475046,0.0,1.9542222222222225,4.933306411166522,0.1065452707571516,0.09756477883721822,0.0,0.0,0.0,0.0,0.0,0.0,14.704819995694466,1.3819364072746203,7.260145710291483,0.0,0.45178307740731266,-0.027391100787129214,-0.1664284886458855,-0.228941022067579,-0.3361155771452734,-0.24958571290471634,-0.6590260079300297,-0.08518161895892476,0.2857142857142857,45,0,9,0,1,1,3,2,5,9,0,10,13,0,1,1,6,5.627400000000007,3.7746666666666564,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1801133,Cc1cc(Nc2nc(SC(C)(C)C)cn3c(-c4cn[nH]c4)cnc23)sn1,6.978810700930063,0.3408697322114981,-0.14453239772109272,0.3408697322114981,0.2198560850481499,0.0193320574029497,14.827769230769219,14.091153846153848,14.812089831076944,134,0,0.1893105260756153,-0.3275137675262816,0.3275137675262816,0.1893105260756153,0.056213017751479286,0.09171597633136094,0.11982248520710059,2.1626848493553696,66.97465452921284,1.323188258652449,1.209499682670286,0.5415378812031879,0.7797916034752655,0.6181790532896353,0.3180046706766269,0.18225341480252674,0.25744732306144236,0.10901413343533804,0.15987016283967734,0.07431171053098712,0.11477619738863847,-0.09192307692307691,3.477906179691803,0.2231534570923161,0.2462468984612619,3.4462202681108716,7.1465248710777205,0.20422359051109137,0.38565545982142724,0.5495663136638137,0.0,0.0,0.0,0.3650923524555721,9.967957041894417,9.472221789717487,0.0,1.2429831269722367,0.9394922090971404,1.5040525784841052,1.1764399689299054,1.0048684465980822,1.5292497513941699,0.0,1.1127915382867992,0.0,1.4300211885026737,5.309813353288376,36.4279275457708,0.0,11.257379486545457,0.20422359051109137,10.818944754522896,0.0,23.294371560957792,1.295369324949013,0.0,6.851892117295679,1.9058653769857412,35.75995952959158,2.8236841566564013,16.904556707313183,0.0,3.222692307692308,3.8973838426413994,0.0,0.0,16.853591506974198,21.242994571116846,0.0,0.0,0.0,0.0,19.440178831611902,1.0048684465980822,5.908772340287737,0.000781072595534103,0.30617703669786994,0.09899202934076981,-0.09127185753910591,-0.029047582708297017,-0.02898246505829024,-0.12447043137688428,-0.5441552704444608,0.0,0.29411764705882354,26,2,7,0,0,0,0,4,4,8,2,9,5,0,0,0,4,4.518520000000002,4.088938461538462,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,5,2,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL606466,COc1cc2c(Nc3ccc(-c4nc5ccccc5s4)c(O)c3)ncnc2cc1OCCCN1CCN(C)CC1,7.040958607678906,0.22655373108091537,-0.11832220869457319,0.22655373108091537,0.021136156487853608,0.005800842108271023,13.917300000000036,13.110900000000006,13.905641497100024,206,0,0.2931303077252128,-0.5071379208047093,0.5071379208047093,0.2931303077252128,0.028749999999999998,0.051875000000000004,0.07375000000000001,1.5552233013776846,74.42287510327114,1.3826538482214215,1.28290686837138,0.5033192828945732,0.8080295464865923,0.6603706517771761,0.28439651915127373,0.17940939024812066,0.2043861594171902,0.11797435284099858,0.14268174751760715,0.07597630902875371,0.09776335540269983,-0.09974999999999998,3.662118653947553,0.20700586709672578,0.2907328824046177,5.64703417785832,7.042037807883682,0.742304172842416,0.6062282144527036,0.3227716436224003,0.0,1.4311996572326342,0.0,0.0,14.951935562841626,0.0,11.336785877934737,0.30212093538316476,1.0890211334982023,1.9051031167151986,1.3521082582895154,1.427928321553554,1.0990395124154937,1.4311996572326342,0.6187938756135646,0.0,0.1593231225332345,58.366876376949214,60.68514008293588,0.0,27.819610688401475,0.36958848152221185,11.50524905251859,17.248535499851716,11.336785877934737,2.1087206474135822,0.0,0.0,1.1873920396609001,60.68514008293588,1.4118420783282006,31.69062075471618,0.0,2.39675,4.3783777111443865,0.0,0.0,20.534057684226504,11.336785877934737,0.0,0.0,0.0,0.0,20.060743753948838,1.3359881082066893,6.9364335066525955,0.01405351241396901,0.23936172383461476,0.08139708014131086,-0.07549582204700597,-0.13261375659979638,-0.21257501007543017,-0.14768416297502002,-0.7696095763299897,-0.09368416168191551,0.3,40,2,9,0,1,1,3,2,5,10,2,10,12,0,1,1,6,5.380600000000006,4.003562499999992,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,5,1,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL189434,OCCNc1ncnc2oc(-c3ccccc3)c(-c3ccccc3)c12,6.536939436767204,0.3405888957126061,-0.14136115783166656,0.3405888957126061,0.23248860964138718,0.023161397012704237,13.25499999999999,12.569560000000003,13.245283071360017,124,0,0.23207761921995312,-0.43684642800553086,0.43684642800553086,0.23207761921995312,0.0432,0.07200000000000001,0.1008,2.3179894451509764,68.62120404806693,1.2719232895739634,1.166325494697104,0.48632549469710395,0.7724144645106663,0.6023790043263796,0.2681605288878267,0.17836884992489133,0.17836884992489133,0.12420907842092341,0.12420907842092341,0.08755252281928247,0.08755252281928247,-0.12719999999999995,3.295995921296715,0.2163257066048591,0.26983015524824316,2.855292745607225,6.74256347388583,0.5934308992579573,0.7700896186738366,0.056473683133128026,0.2857878520810537,0.0,0.0,0.0,9.967957041894417,0.0,0.0,2.416967483065318,0.22253805966787982,0.7049505067083974,1.2454331697505665,1.2599671819616822,0.6767033454837413,1.4311996572326342,0.39871828167577666,0.0,0.0,18.36565828052061,66.72755879059918,0.0,22.450601893965427,0.21239253413153503,5.817862777835028,0.0,0.0,1.1825523926986599,0.0,0.0,0.8224551337021319,71.14470972765253,1.4118420783282006,33.55032275322393,0.0,2.8472000000000004,4.766063569955616,0.0,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,15.07676523300163,1.1128628406066992,5.712358800840341,0.0,0.29722607604770296,0.11825440610971188,-0.10701970322079445,-0.06683346035945242,-0.33583860626547796,-0.03696758209456623,-0.2811799310574654,0.0,0.1,25,2,5,0,0,0,2,2,4,5,2,5,6,0,0,0,4,3.961000000000002,3.930060000000001,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2170423,O=C(O)c1ccc(Nc2nc(Cl)c(Cl)c(Nc3ccccc3C(=O)O)n2)cc1,5.826813731587727,0.43696895747263076,-0.05579335064863177,0.43696895747263076,0.13863128987948636,0.015187846815808367,14.972285714285714,14.540285714285721,14.929412865142867,142,0,0.33731048446030654,-0.47763923618930254,0.47763923618930254,0.33731048446030654,0.03571428571428571,0.061224489795918366,0.08673469387755102,2.289121100246391,55.43742328774804,1.084836875304954,0.8992063032097765,0.5246297993539517,0.6647597764456323,0.4533656859951582,0.27640158506983,0.16777646874947097,0.19406138162302614,0.10352730277901526,0.1291796994168009,0.061758631301612174,0.07200439766889698,-0.11999999999999998,2.925644380582956,0.32938466880135797,0.28984649328270334,4.30256450147752,6.624344286804112,0.7441872531711134,0.17937976120504737,0.4926663125494365,0.21244068860666052,2.8623993144652684,11.938610575903699,0.0,9.589074368143644,9.967957041894417,0.0,1.2602398998497009,1.2948040087849917,0.2031209383815558,0.9921556324085469,1.1998729770134366,2.081480891591335,2.8623993144652684,0.35599846578194344,0.0,0.0,10.619626706576751,69.64199577533446,0.0,0.0,0.37927238237774114,23.140974608188646,0.0,23.20187978046503,1.1472922857147336,0.0,0.0,1.131501635746407,48.33934966130636,12.99942728729052,2.8623993144652684,0.0,4.444285714285714,3.7400564628366726,0.34246694171941583,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,20.185573424108842,1.4233582750338738,3.376198929487272,0.4346034463121274,1.1274436504312262,0.2363213270709094,-0.12525817141591084,-0.16644832988774266,-0.2677814869185168,0.0,0.0,0.0,0.0,28,4,8,0,0,0,2,1,3,8,4,10,6,0,0,0,3,4.667000000000002,3.7650000000000006,0,0,0,0,2,2,0,0,2,2,2,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3237190,Cc1cc(Nc2cc(N3CCN(C)CC3)nc(Nc3ccc(N4CCOCC4)cc3)n2)n[nH]1,6.950781977329817,0.2709222054890045,-0.12655672229643086,0.2709222054890045,0.1328217431136478,0.015893720649955048,13.623121212121202,12.676212121212128,13.614095654909118,174,0,0.23065774039129358,-0.3777778199763259,0.3777778199763259,0.23065774039129358,0.031221303948576674,0.05601469237832874,0.07805325987144168,1.877497782257593,69.46590844195359,1.5090327951317906,1.422217292423136,0.4828233530291966,0.8584489906091374,0.7257096434610102,0.26081143780949895,0.1726391388779567,0.1726391388779567,0.1070342425877516,0.1070342425877516,0.06709377903273311,0.06709377903273311,-0.10212121212121214,3.3986146778412643,0.17619439785754407,0.29194968765490376,5.345389367159445,7.189119221516407,0.910794510694795,0.3525977441112138,0.30464815190362515,0.18025270548443922,0.0,0.0,0.15429413810857823,0.0,15.066638850195455,0.0,0.0,1.1514361772191244,2.4800691402163637,1.1452007423301984,1.4349584473197223,1.0538393989048094,0.0,0.7593410648069397,0.0,0.20763309446350542,79.4944016602882,41.948440240828226,0.0,0.0,0.6187710960084154,34.776700163858706,0.0,0.0,2.5494912312315,0.1435413016303045,6.851892117295679,1.3356111384125648,36.25451224597977,4.235526234984602,0.0,0.0,2.9536363636363636,4.768233854743775,0.0,0.0,15.711333264159833,0.0,0.0,0.0,0.0,0.0,19.803501803995502,1.2914171456894175,7.959027862044102,0.0,0.17361127084672973,0.08424645340858833,-0.1194301176358931,-0.1745868259258847,-0.26566774795985926,0.0,-1.1824534200303083,0.0,0.43478260869565216,33,3,10,0,2,2,1,2,3,9,3,10,8,0,2,2,5,2.5837200000000005,3.972912121212122,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,6,3,0,0,1,0,1,0,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3087819,Cc1nn(C)cc1-c1nc2c(Oc3ccc(C(=O)Nc4ccncc4)cc3)c(Cl)cnc2[nH]1,6.478909202742116,0.40369390664379856,-0.09468680948288091,0.40369390664379856,0.12924920452379451,0.01187098124077057,13.936272727272723,13.38645454545455,13.912759105939411,164,0,0.25516393138846716,-0.45330730084324794,0.45330730084324794,0.25516393138846716,0.03948576675849403,0.06427915518824609,0.08723599632690542,1.6907629628727059,68.08261945452679,1.16339213231769,1.0249986734071717,0.502451065710761,0.7093758669439301,0.5318990979984863,0.27382447018058675,0.1815307012573549,0.1929841701364224,0.1178069469064483,0.12556931717027267,0.07609989732456797,0.08126161920606882,-0.12848484848484845,3.5484822974928285,0.2606577478684293,0.2533671732850447,4.133124839125763,6.617827043665649,0.45526301749447506,0.5029257468189442,0.5980931493431604,0.0,5.907179729351506,0.0,0.43819147394437014,9.967957041894417,5.098681808301038,0.0,0.351543633037349,1.3062546776750137,1.3627242920038918,0.9435715230018913,1.0390067028258116,1.04119344947429,0.0,0.9002855629247605,6.975826900282246,0.20763309446350542,5.309813353288376,77.22610588952558,0.0,22.886879656264732,0.3044447365784371,5.687386274683562,11.49902366656781,11.600939890232516,1.0792910092687455,0.21138869394794685,6.851892117295679,1.1510319263436608,60.94609308923881,7.846317470397728,22.55173392808091,0.0,3.3518181818181816,4.1423984395693125,0.145289005577934,0.0,9.99161628843356,4.977003270229252,0.0,0.0,0.0,0.0,20.05061737114266,1.2452613302852273,4.565987354731691,0.19039187691977383,0.7546015871598246,0.08319973357768208,-0.14245243778454084,-0.11955677058425965,-0.18564383819956143,-0.10537352191844368,-0.1893021320503143,0.0,0.08695652173913043,33,2,9,0,0,0,1,4,5,7,2,10,7,0,0,0,5,4.759820000000002,3.7740575757575754,0,0,0,0,0,6,1,0,0,0,1,1,0,0,0,5,2,0,0,0,0,1,0,0,0,0,0,1,0,1,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL563641,CN1CCN(c2ccc(Nc3ncc4c(n3)-c3c(c(C(N)=O)nn3C)C(C)(C)C4)cc2)CC1,6.235077015350112,0.4011460510383543,-0.1255935511320127,0.4011460510383543,0.18106797408403708,0.019197304282197486,13.532090909090897,12.615727272727279,13.522856290303055,172,0,0.2690346494519933,-0.36896471545672516,0.36896471545672516,0.2690346494519933,0.03856749311294766,0.06336088154269973,0.08448117539026631,1.884840865021594,70.36416131097052,1.4876053169140164,1.3935138501352584,0.48442294104434935,0.8445972699671207,0.7143476877494386,0.2646009972494423,0.19546174352373386,0.19546174352373386,0.13022219283762324,0.13022219283762324,0.09014089844999434,0.09014089844999434,-0.10484848484848484,3.4603671715131497,0.18059680702937253,0.23762261113033428,3.8203284559201203,7.1360317916546565,0.6311924179004729,0.0,0.3008925524191837,0.18025270548443922,5.907179729351506,0.0,0.28716182179445476,9.967957041894417,5.098681808301038,0.0,0.41526618892701084,1.4696020785866235,2.4469102697117826,0.7189297877342091,1.3951680132015873,0.7039482290819734,0.0,0.7469197429148823,12.695543876008518,0.7724757456156823,43.17298872168488,47.16340101971039,0.0,11.387855989696922,0.4827103048443978,17.323111830353618,0.0,0.0,1.9248120267602618,0.5685982506366183,0.0,2.1918070731364123,30.34257004146794,4.235526234984602,11.387855989696922,0.0,3.1878787878787875,4.931269004535925,0.145289005577934,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.066638850195455,1.2498790076236532,7.593068360334868,0.0,0.5912411304511256,0.09966277012727401,-0.4458100107067432,-0.10030741329283976,-0.18194237503167004,-0.16656956637823878,-0.9701509763118568,0.0,0.4166666666666667,33,3,9,1,1,2,1,2,3,8,2,9,8,0,1,1,5,2.3050999999999995,3.9065636363636376,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,6,1,1,0,1,0,0,0,0,0,0,0,1,0,3,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1807300,CCc1cccc(CC)c1NC(=O)c1nn(C)c2c1CCc1cnc(Nc3ccc(C(=O)N4CCC[C@@H]4CN4CCCC4)cc3OC(F)(F)F)nc1-2,5.0,0.2884615070691734,-0.1210759833355122,0.2884615070691734,0.4336254238820936,0.003586330954136251,13.784788461538499,12.951250000000005,13.775788882615409,274,0,0.5726710405840992,-0.4035358934426411,0.5726710405840992,0.4035358934426411,0.021819526627218935,0.03698224852071006,0.05103550295857988,1.5369652616845768,73.74399302758435,1.4296064254553165,1.3064682125849798,0.47954513566190266,0.8035044050809165,0.6736381931382909,0.2622069010036771,0.18447552412295032,0.18447552412295032,0.12397969369078873,0.12397969369078873,0.08340497296644103,0.08340497296644103,-0.09576923076923077,1.485758302355695,0.2077060307898605,0.2801284110989248,7.207128839525169,6.935539499753473,0.48377517542457227,0.0,0.27436776893824555,0.11439114001897105,11.814359458703011,6.362358859030383,0.27443994814016975,9.967957041894417,5.098681808301038,13.171245143024459,0.612135391491947,1.8998986380259195,1.8117241453802557,0.5392559752642738,1.6638839889346841,0.5603359863280121,0.0,0.5682357932123383,6.975826900282246,1.4820660533193541,36.607065443840526,75.93859291012797,0.0,17.137367822980828,0.2953171088534,30.494356973378082,5.749511833283905,0.0,1.533275207122854,0.6243755097230724,0.0,2.6634008550839385,42.42740745679453,2.8236841566564013,11.387855989696922,0.0,2.259807692307692,4.948949644918094,0.4640591936026601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.803501803995502,1.1087312769897164,7.965157746290301,0.0,0.6666443098263256,0.035246825221547554,-0.358674890212099,-0.1869689370038222,-0.3240463421434632,-0.8204808775271515,-0.5970701421439496,0.0,0.4473684210526316,52,2,11,1,2,3,2,2,4,9,2,14,13,0,2,2,7,6.695400000000007,3.6717961538461448,0,0,0,0,0,4,0,0,0,0,2,2,0,0,0,6,2,0,0,0,2,0,0,0,0,3,0,2,0,3,1,0,0,0,2,0,3,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3675370,NC(=O)c1cccc2c(NCc3cccc(NS(=O)(=O)c4ccccc4)c3)ncnc12,5.309803919971486,0.4363823132872921,-0.18175664136739225,0.4363823132872921,0.3054245380174314,0.013253963099962877,13.983645161290319,13.365838709677426,13.971640660258082,156,0,0.26138903396349067,-0.3655307152432796,0.3655307152432796,0.26138903396349067,0.03537981269510926,0.061394380853277836,0.0874089490114464,2.046908913776732,71.82682779342886,1.2345361297717459,1.0925503593340402,0.5059857329123539,0.7369892003972466,0.5565117604397394,0.30332495227202333,0.17398916552051594,0.22369739635778155,0.11082827202434867,0.14769808304540968,0.06983090442866655,0.09508730150778685,-0.12838709677419352,3.0283519342287923,0.24557922329688048,0.27115657063390985,4.459619948237844,6.635000494931479,0.3557913009359564,0.4352255821926282,0.18217317139718717,0.0,15.930470882759089,0.0,0.3067631225098694,18.385754026223353,0.0,0.0,1.1695003950316054,1.3489665721831214,0.5667893604343323,1.1343953377811005,1.2716477685247378,1.2367304795922174,0.0,0.3215470013514328,5.719716975726273,0.36749494063979743,10.024932967022508,89.93929918931978,0.0,0.0,0.5078919336370574,11.50524905251859,0.0,0.0,0.7836430243733825,0.5329080915394686,0.0,1.1768651132264234,83.70787968144354,5.6473683133128025,10.902924932081056,0.0,4.099032258064516,4.842100767934601,0.4262043280129277,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,0.8454434405118095,5.826786233989026,0.0,0.5910887544496881,-0.03722840689045858,-0.16648022509669289,-0.0869254001354115,-0.4640572297403704,-0.035087870606267973,-0.11838222535480983,-0.18175664136739225,0.045454545454545456,31,4,8,0,0,0,3,1,4,6,3,9,7,0,0,0,4,3.1416000000000013,3.841132258064516,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL3675442,CN(C)C[C@@H](Nc1ncnc2c(C(N)=O)cccc12)c1ccccc1,6.886056647693162,0.5074255959550505,-0.17230586577223492,0.5074255959550505,0.4841657218442941,0.02890761637378555,13.416439999999987,12.569720000000002,13.406984411680023,128,0,0.2504173870671443,-0.36553071524327246,0.36553071524327246,0.2504173870671443,0.055999999999999994,0.08960000000000001,0.12,2.7069506524403812,67.88648361319096,1.4322607363114546,1.325772650718546,0.48577265071854614,0.8266102267051195,0.6712733163692639,0.25760768490926883,0.1733438699913339,0.1733438699913339,0.11103991043213422,0.11103991043213422,0.07216742327999176,0.07216742327999176,-0.11959999999999996,2.902197264570417,0.19182893373666357,0.2909155643293251,3.7477642165080116,7.036953097691168,0.6371776023946051,0.5396797219188589,0.16942104939938407,0.0,5.907179729351506,0.0,0.19178148736287287,9.967957041894417,0.0,0.0,1.4501804898391908,1.2639977083035232,0.9139660939256998,1.1773948673277952,1.3481486972048151,0.9051186975707037,0.0,0.5947146709097957,5.719716975726273,0.2407156987339858,25.758326838168813,65.76962435866658,0.0,0.0,0.4411812131605859,5.817862777835028,0.0,0.0,1.6489423994790735,0.0,0.0,1.864519465875178,54.642721375272586,4.235526234984602,10.902924932081056,0.0,3.3655999999999993,5.2317375124411765,0.2466118296096817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.1015368675951336,6.824858491058413,0.0,0.7602432841404155,-0.059132957503989295,-0.1618774945237101,-0.11818789644798844,-0.5483259620077898,-0.04780321974468802,-0.48977424497066485,0.0,0.21052631578947367,25,3,6,0,0,0,2,1,3,5,2,6,8,0,0,0,3,2.4434999999999993,3.9766239999999997,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1825099,CN(C)CCN(c1ccc(Nc2ncc3cnn(C4CCCCCC4)c3n2)cn1)S(C)(=O)=O,6.585026652029183,0.41036836636921215,-0.19823751255502506,0.41036836636921215,0.33112191410081104,0.015090846574719487,14.321787878787868,13.34433333333334,14.310208886787905,178,0,0.23295824102053622,-0.32272817123857556,0.32272817123857556,0.23295824102053622,0.03764921946740129,0.06244260789715335,0.08539944903581267,2.103089218229632,74.53636821507301,1.5579191179818472,1.4485592010724622,0.503604552009666,0.8599638003964911,0.733180424966665,0.29356981082426137,0.16794894851251457,0.20780595006786076,0.10269810478011453,0.12527205710626158,0.06490705784101464,0.07930533031622988,-0.08454545454545455,3.425877858040344,0.18368407218888141,0.3030745900838864,5.772233374483719,7.262340349404992,0.3093855480042077,0.1762988720556069,0.21390967573017966,0.48398880104224484,0.0,0.0,0.13046109064534042,23.06755696136854,10.082660329248245,0.0,0.7724757456156823,1.1752224551075707,1.536183677920053,1.411735937260781,1.5855501304222424,1.1669782097619754,0.0,0.8979493950647977,0.0,1.3410739962523006,42.744326614897446,30.603523047770874,0.0,0.0,0.29136452559347303,17.453588333505085,0.0,0.0,2.156952251266064,0.30373609555780556,0.0,2.6287562762909915,30.603523047770874,1.4118420783282006,11.033401435232523,0.0,3.3072727272727267,4.718292995112168,0.29662289516664114,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,20.05061737114266,1.2889272352556005,8.741931275315608,0.0,0.2847584311192657,0.06426453377159862,-0.08382025146560801,-0.10299788973041235,-0.23974990689289685,-1.0623482086387772,-0.5376388547621364,-0.19823751255502506,0.5454545454545454,33,1,10,1,0,1,0,3,3,9,1,11,11,1,0,1,4,3.187800000000002,3.949257575757577,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,7,1,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL3670458,[N-]=[N+]=NC[C@@H](Nc1ncnc2c(C(N)=O)cccc12)c1ccccc1,6.346787486224656,0.5014907015565196,-0.1457086435500127,0.5014907015565196,0.2577768329554049,0.016290913813053923,13.334199999999992,12.729400000000004,13.325352324000017,124,0,0.2504173870670899,-0.3655307152432725,0.3655307152432725,0.2504173870670899,0.0576,0.09119999999999999,0.1216,2.6166215801234403,63.936898656825505,1.2257352680387934,1.0815497383585428,0.48154973835854276,0.734395617424935,0.5493847725492655,0.2557191410892705,0.1675051708903348,0.1675051708903348,0.1103566288591345,0.1103566288591345,0.0707202096844918,0.0707202096844918,-0.14559999999999998,2.877262137058796,0.24069085519870473,0.29149522507146886,3.4877074773900887,6.5655203424420225,0.4411812131605859,0.5396797219188589,0.16942104939938407,0.0,5.907179729351506,0.0,0.19178148736287287,9.967957041894417,0.0,0.0,1.6547504948643665,0.9271767162323534,0.521578118962308,1.4372692547004333,1.0191666437239626,0.9051186975707037,0.0,0.39871828167577666,10.833967101355672,0.2407156987339858,11.80667303760432,76.21246500470431,0.0,0.0,0.4411812131605859,5.817862777835028,0.0,0.0,0.8948798582224746,0.0,0.0,1.5355374123943244,59.75697150090198,4.235526234984602,21.345765578118773,0.0,5.1864,4.265282437053042,0.19178148736287287,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,19.993918814776276,1.0486303163124997,4.856552539136112,0.0,0.8821552380955511,0.07104645222235408,0.2216148720414822,-0.10558761867541631,-0.4778357518425075,-0.04223708742756362,-0.1457086435500127,0.0,0.11764705882352941,25,3,8,0,0,0,2,1,3,5,2,8,6,0,0,0,3,3.1922000000000015,3.7949839999999995,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2170598,O=C(O)c1ccc(Nc2ccnc(Nc3ccc(C(=O)O)cc3)n2)cc1,6.591760034688151,0.45274247160629105,-0.05801977439079426,0.45274247160629105,0.09558471013647774,0.02051034934741706,13.47438461538461,12.931615384615387,13.465442497230784,130,0,0.33518083886401184,-0.47763923618935883,0.47763923618935883,0.33518083886401184,0.034023668639053255,0.05473372781065089,0.07544378698224852,2.2382393408833154,58.258247429107385,1.1682858657130273,1.0162249055328956,0.47776336707135714,0.7158951438645271,0.5121644128790462,0.25405196011259845,0.16652893633674676,0.16652893633674676,0.09964892625341502,0.09964892625341502,0.05816179042790935,0.05816179042790935,-0.1515384615384615,2.916009784005599,0.2597833578035511,0.28096847158256527,4.119440027368461,6.449424945272592,0.8014324264919683,0.22376395299365492,0.10860323679447698,0.2287822800379421,2.8623993144652684,11.938610575903699,0.0,14.573052889090853,4.9839785209472085,0.0,0.0,2.091606475729602,0.674910298468534,0.9551726363498534,1.3976138641814104,1.3492148147727825,2.8623993144652684,0.38338296314978526,0.0,0.0,10.619626706576751,71.6815665631784,0.0,0.0,0.40844718102218275,23.140974608188646,0.0,0.0,1.2355455384620209,0.0,0.0,1.323983188970763,60.55466357978442,2.8236841566564013,2.8623993144652684,0.0,4.786153846153846,4.106198144125799,0.3688105526209094,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,20.185573424108842,0.7459103474163027,4.248876879782893,0.0,1.1865124070106086,0.2941907670281553,-0.13433508505350925,-0.1840720699287381,-0.33652255399425957,-0.03618880638361161,0.0,0.0,0.0,26,4,8,0,0,0,2,1,3,8,4,8,6,0,0,0,3,3.3602000000000007,3.6692307692307695,0,0,0,0,2,2,0,0,2,2,2,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1258794,O=C(Nc1n[nH]c2cc(C(=O)NCc3ccccc3)sc12)c1ccc(N2CCOCC2)cc1,7.958607314841775,0.4151691663572427,-0.1124541167748742,0.4151691663572427,0.14902602051474023,0.01233831449034355,13.986272727272722,13.28372727272728,13.974307896848503,168,0,0.261218925228485,-0.37777781997653226,0.37777781997653226,0.261218925228485,0.03673094582185491,0.05968778696051424,0.08264462809917354,1.592561570830189,69.0324695971101,1.3000114101491222,1.1778503375562193,0.505622961220696,0.7673248844221914,0.6069347526557962,0.2879909888505796,0.17551664527256192,0.20644454606527882,0.11321566316172614,0.1453627583344304,0.07022659682265797,0.09601657986613224,-0.11181818181818176,3.6047838972070396,0.22449701075092598,0.28586661140182784,4.738321736275812,6.8666146611809955,0.6138302845826448,0.0,0.30464815190362515,0.0,11.814359458703011,0.0,0.44487214926444624,0.0,5.098681808301038,11.336785877934737,0.9155179860095901,1.0841074251519234,0.9315580854341937,1.6856639223340513,1.3932313539494765,1.3597883340376273,0.0,0.4697030823991665,0.0,0.19687453588836196,36.32141293860332,76.42823725372824,0.0,0.0,0.4702889829523403,11.50524905251859,0.0,11.336785877934737,1.4580738690621693,0.3404158375186665,0.0,1.6063119899588902,60.42418707663295,4.235526234984602,10.216620634085363,0.0,3.0106060606060603,4.481297857306182,0.290578011155868,0.0,26.638215519656672,0.0,0.0,0.0,0.0,0.0,9.835544762101087,0.959112041163303,5.816493465987419,0.005788861478983616,0.7886984333360747,0.09622783090021739,-0.1296292232011567,-0.12923331547797048,-0.34467822833204415,0.0,-0.5506375216612196,0.0,0.20833333333333334,33,3,8,0,1,1,2,2,4,6,3,9,6,0,1,1,5,3.6433000000000026,3.9093969696969704,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,2,3,0,0,0,0,1,0,0,0,0,0,2,0,2,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL2023291,Cc1cn2c(-c3cnn(Cc4noc(-c5ccccc5)n4)c3)cnc2c(Nc2cc(CN3CCCCC3)ns2)n1,8.397940008672037,0.22527916059780512,-0.10073227699637652,0.22527916059780512,0.049987815754400255,0.006811728669398047,13.816700000000035,13.111100000000008,13.805420662900023,202,0,0.25748838474770863,-0.3339259677406673,0.3339259677406673,0.25748838474770863,0.028125,0.050624999999999996,0.0725,1.3660993785802877,75.07005292815835,1.2878315177510848,1.1822158133981826,0.5026282279213758,0.7692639597203985,0.6167284853720882,0.2873830620379386,0.18228397164029364,0.2010801392087211,0.11837318729229426,0.13437686717470373,0.07886097565459685,0.09220685509721878,-0.1105,3.997512056203091,0.2196984947916877,0.2656243246613211,5.102442486249316,6.840779619556358,0.2458227072565431,0.28744854152509525,0.46753216437327205,0.0,5.890723922025908,0.0,0.3495601818064364,9.967957041894417,14.456200310664695,0.0,0.7414211070361177,1.556280100578572,1.26327328579732,1.1469169270054393,1.0736354507974375,0.6999652146714325,0.0,1.0890806970485503,0.0,0.9741096547478927,18.303532721920263,78.15835357693565,0.0,22.71155490026836,0.13274533383220938,10.818944754522896,0.0,11.532486611566675,1.4139236812643474,0.32484298421579727,6.851892117295679,1.8335379052070242,65.46918802621215,1.4118420783282006,28.358732121036088,0.0,2.87725,4.35485114354732,0.0,0.0,21.524102900000237,4.400694606261793,0.0,0.0,0.0,0.0,29.580820609684555,1.0736354507974375,6.119297142055707,0.0012496953938600063,0.276571734356052,0.16236154088229543,-0.13535063273466755,-0.06684342294949559,-0.12776885474305655,-0.40172790676921866,-0.461122628824809,0.0,0.2857142857142857,40,1,11,0,1,1,1,5,6,12,1,12,9,0,1,1,7,5.185520000000004,3.807642499999994,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,9,1,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2207507,Cc1cc(CN2CCN(c3c(Cl)cnc4[nH]c(-c5nccn5C)nc34)CC2)no1,6.248720896016657,0.3055554062301804,-0.1392869432975,0.3055554062301804,0.22809346655328788,0.01897950983603436,14.23741379310344,13.507482758620695,14.212161550758644,150,0,0.17562568762400604,-0.36585068300349227,0.36585068300349227,0.17562568762400604,0.04875148632580261,0.07966706302021404,0.1070154577883472,1.8094752160803675,68.9399861699705,1.3197633866540261,1.2022041906025087,0.5041327749479728,0.7714766327220862,0.6223385007783167,0.2751230137958776,0.18328250794642248,0.19631576563639577,0.12129549081079723,0.13038245526590103,0.08059326626400697,0.0880510735078641,-0.10034482758620691,3.5751161604081356,0.2169729523482922,0.24695384523280664,3.360682405893092,6.945308973652209,0.6540381926153253,0.38886028056864497,0.6450975274170958,0.0,0.0,0.0,0.16896240451208544,14.951935562841626,0.0,0.0,0.5778483843916539,0.23627214197571308,2.5619805905240485,1.156652111843099,1.1500037289208946,0.9811104863206921,0.0,1.1914693609944194,6.975826900282246,0.46030178626246976,30.887348468114254,41.03791306757181,0.0,11.648808995999854,0.16896240451208544,5.687386274683562,0.0,11.600939890232516,2.087587938141446,0.4645753994689031,6.851892117295679,1.3403222943837005,29.084199277080927,6.434475392069527,22.81268693438384,0.0,3.1689655172413795,4.163790118849908,0.0,0.0,14.444012648871084,0.0,0.0,0.0,0.0,0.0,24.631693756940418,1.3940673479987975,6.174280719495445,0.21849031102610433,0.37456971486487706,0.07585078393920713,-0.13948442216154167,-0.09583877929738972,-0.04363050952030934,-0.0973318102751448,-0.9027297628605185,0.0,0.3684210526315789,29,1,9,0,1,1,0,4,4,8,1,10,6,0,1,1,5,2.630420000000001,3.78726551724138,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,7,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3670404,Cc1ccc(C(CN)Nc2ncnc3c(C(N)=O)cccc23)cc1,6.180456064458131,0.5247135286866222,-0.15974919230809612,0.5247135286866222,0.348260109599396,0.0278018556091932,13.390999999999986,12.593000000000002,13.381623342833356,122,0,0.2504173870671443,-0.36553071524327246,0.36553071524327246,0.2504173870671443,0.06076388888888889,0.09722222222222222,0.12847222222222224,2.623066103560007,67.26766275968278,1.3877716003244318,1.2768465111651521,0.48517984449848556,0.8105804500926167,0.6449602710304815,0.2601241053013235,0.1770077730482658,0.1770077730482658,0.11621643174701525,0.11621643174701525,0.07336599510676244,0.07336599510676244,-0.12458333333333332,2.8816794270558366,0.19861114946050926,0.2765088474607817,3.0436276206314425,6.935213109118039,0.6978853043642049,0.6798198835261616,0.17648025979102508,0.0,5.907179729351506,0.0,0.19977238266965924,9.967957041894417,0.0,0.0,1.4906477095838946,1.0208408760133028,0.7807031949846599,1.1693380469593608,1.2935153067539955,0.9428319766361497,0.0,0.41533154341226736,11.439433951452546,0.5362410244018885,11.80667303760432,65.29065714270027,0.0,0.0,0.6978853043642049,5.817862777835028,0.0,0.0,0.9321665189817444,0.0,6.851892117295679,1.9455584964123152,48.60030266760929,7.059210391641003,10.902924932081056,0.0,4.454999999999999,4.9468626168075716,0.19977238266965924,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.0937429240843366,6.370415507521138,0.0,0.8243610790690511,-0.05152846889784723,-0.23350672219610136,-0.1151071330882709,-0.5061756848245115,-0.04627079339456083,-0.29427111752223206,0.0,0.16666666666666666,24,5,6,0,0,0,2,1,3,5,3,6,7,0,0,0,3,2.14902,3.9438750000000002,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL4171792,O=C(Nc1ccc(CCNc2ncnc3oc(-c4ccccc4)c(Cl)c23)cc1)Nc1cccc(CN2CCCCC2)c1,7.044793462458057,0.3309095854342277,-0.10134175147899069,0.3309095854342277,0.38039044277057554,0.003913996143728168,13.836190476190511,13.044190476190481,13.815127428000023,214,0,0.32317859321836356,-0.4358923179648692,0.4358923179648692,0.32317859321836356,0.023242630385487528,0.0419501133786848,0.06122448979591837,1.4429083690455902,75.43080286637381,1.3777256702394953,1.2708986339746833,0.5031826564989322,0.8032030713878164,0.655949614986905,0.27586208371331816,0.17667515200823472,0.18567430612750202,0.11320914940131553,0.12179545963317186,0.07307130182203558,0.0801764430468601,-0.10476190476190472,3.6076537904907813,0.20982495290885322,0.31091327932461216,6.726297315724351,7.0525959124200215,0.48444264278377325,0.5690678708613713,0.23799461080616774,0.1360356343998502,0.0,6.031114512338072,0.11666451740120186,14.76249422596624,0.0,0.0,1.7227531704888466,1.6049779020635047,1.2348590549623708,0.42428241024316327,1.299285024790867,1.0934383473578868,0.0,0.3539968279224975,0.0,0.761632364038892,35.42001911281296,101.0043512107244,0.0,11.323698910571437,0.3792723823777411,21.987172511273975,0.0,11.600939890232516,0.9616561985245428,0.30642344251536485,0.0,1.699248437440209,89.27196585064243,9.258159548725928,22.42341976982994,0.0,2.2695238095238093,5.086909419050076,0.11415564723980529,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.4613422320804077,6.767598612179573,0.1555766935707537,0.48552674638122334,-0.07423229896483723,-0.18485020779349723,-0.04293336325491178,-0.45379965149754087,-0.41454096571237303,-0.3983984749613001,0.0,0.24242424242424243,42,3,8,0,1,1,3,2,5,6,3,9,9,0,1,1,6,7.827700000000006,4.026121428571419,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,3,0,0,0,1,0,0,0,0,0,0,2,0,3,0,0,0,0,3,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL2063332,Cc1cc(COC(=O)NCc2ccc(-c3cc(NC(=O)c4ccc(OCCN5CCCC5)cc4)[nH]n3)cc2)no1,6.0,0.3441351556743674,-0.10677170505337699,0.3441351556743674,0.19388495307646014,0.006269980098074541,13.615300000000039,12.808900000000008,13.606085453100025,208,0,0.40729137097114254,-0.49226400219491073,0.49226400219491073,0.40729137097114254,0.030625000000000003,0.050624999999999996,0.06937499999999999,1.4969356808250742,70.26890278389952,1.397298509162094,1.2806130756329765,0.48061307563297645,0.8042727459327785,0.6534787991614559,0.2574377794989591,0.16680454583661236,0.16680454583661236,0.10056782721325701,0.10056782721325701,0.05974976179582434,0.05974976179582434,-0.11599999999999999,3.7944660321415,0.20495045773090145,0.323508988397195,7.475477862868283,6.9129182990571705,0.615411188778755,0.9034880127668604,0.10588815587461504,0.0,5.907179729351506,6.093240070938415,0.3696538368126345,4.794537184071822,5.098681808301038,0.0,0.7331584521944656,1.5581146902734124,1.3506330249391343,0.6906516223392993,1.6893354894159534,0.44545706445312366,0.0,0.6389193676787104,0.0,0.8163396711796669,31.3593776491525,83.00526547374986,0.0,17.00689131982936,0.38391224150942,10.61239996190685,5.749511833283905,0.0,1.457423636250352,0.44481769702580715,6.851892117295679,1.9968365878195964,64.9472820136063,4.235526234984602,11.257379486545457,0.0,3.3652500000000005,4.801328173804556,0.2397268592035911,0.0,5.091706557583081,0.0,0.0,0.0,0.0,0.0,19.51530295619988,1.2181096829430265,6.877201760567535,0.0,0.6476525774712412,0.1295488363124001,-0.1545868391460935,-0.14763268161547385,-0.34997731395749326,-0.250350500984608,-0.6747725053141755,0.0,0.3103448275862069,40,3,11,0,1,1,2,2,4,8,3,11,12,0,1,1,5,4.526420000000003,3.696314999999994,0,0,0,0,0,3,1,0,0,0,2,2,0,0,0,3,3,0,0,0,1,1,0,0,1,0,0,2,0,1,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1651483,Cc1cc(Nc2nn(Cc3ccc([N+](=O)[O-])cc3)c(=O)c3ccccc23)n[nH]1,6.962573502059376,0.48813721633452734,-0.12717391817838256,0.48813721633452734,0.00020092886277089939,0.014569197068481405,13.441999999999995,12.866000000000005,13.433156727571445,140,0,0.2745917840005467,-0.3214970364730338,0.3214970364730338,0.2745917840005467,0.048469387755102046,0.07525510204081633,0.09948979591836735,2.1927302326063476,69.34041178338764,1.1978060434055442,1.0502866587282622,0.47885808729969065,0.7172115119390948,0.5411626460679211,0.2592188178179241,0.17828927632565775,0.17828927632565775,0.11467415155334192,0.11467415155334192,0.07334115382257143,0.07334115382257143,-0.14321428571428568,3.219426806471947,0.24502774822490078,0.24827248454220516,3.323712508963797,6.46186159116876,0.18963619118887057,0.0,0.516407489725945,0.0,11.24665316973557,0.0,0.7143057860864455,4.681802935145185,10.197363616602075,0.0,1.0790033406541597,0.6592057970234275,1.1899887143147787,1.1387406809096725,0.9620576782806125,1.0034128664029718,0.0,0.7132454681903694,0.0,0.4767411357718437,5.309813353288376,86.10727020340451,0.0,0.0,0.38818143744072797,17.323111830353618,0.0,0.0,0.8890780056481432,0.23203070301128376,16.966210386061253,1.0874285454617332,59.17630555304147,2.8236841566564013,10.772448428929591,0.0,4.240714285714286,4.198787066438558,0.5324591233156212,0.0,15.083322846016642,0.0,0.0,0.0,0.0,0.0,10.197363616602075,0.7862251408228386,4.615460371130072,0.0,0.8493197272434317,0.5978512479586108,-0.1835320303843788,-0.0711304249387892,-0.36209543649940984,0.0,-0.2375401211762043,0.0,0.10526315789473684,28,2,9,0,0,0,2,2,4,7,2,9,6,0,0,0,4,3.128120000000001,3.7431714285714284,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,4,2,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1940252,CC(=O)N1CC[C@@H](Nc2cncc(C(=O)c3cn(C(C)C)c4ncnc(N)c34)n2)[C@H]1c1ccc(F)cc1,6.337242168318426,0.40147337007247225,-0.12150407360589556,0.40147337007247225,0.18501056818177242,0.010348419277059241,13.582540540540535,12.846972972972981,13.573624333081105,190,0,0.21953248606045148,-0.38301200315450035,0.38301200315450035,0.21953248606045148,0.03725346968590212,0.05989773557341125,0.08035062089116143,1.9353890372219238,70.41760268975118,1.3386522445112965,1.2100586437280167,0.4803289139982871,0.7747101144126456,0.6213564020329188,0.26077151591130054,0.18487993279783027,0.18487993279783027,0.1251808011297922,0.1251808011297922,0.0847372629126086,0.0847372629126086,-0.11918918918918919,3.476113707467024,0.21737231882248587,0.258531524859278,4.478215395661424,6.767975930818283,0.5539605326393644,0.985626537364016,0.11447368202661086,0.315957423668012,0.0,0.0,0.3938662942997528,19.342350610516448,0.0,0.0,0.32661722744125915,1.0195945417011978,1.1718756948915923,1.3253739628700765,1.3814384053753614,0.9286365315302437,0.0,0.7946736070927206,0.0,1.2157372610341985,17.52639001333059,71.62978399635205,0.0,0.0,0.2980954142976932,16.026140603344878,0.0,0.0,1.4488675754273705,0.1295820860559952,5.817220841045895,2.5264313432517613,48.99173217706369,4.235526234984602,11.033401435232523,0.0,3.565405405405406,4.6864301098761505,0.451919095355646,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,19.935914083788834,0.9295193100197147,6.472161019534873,0.0,1.11753875151925,-0.050858010536301006,-0.1718909452418305,-0.2512097305447189,-0.5325365307699338,-0.27640758625753004,-0.44193210283894413,0.0,0.3076923076923077,37,3,10,0,1,1,1,3,4,9,2,11,10,0,1,1,5,3.528500000000002,3.6850162162162152,0,0,0,1,0,5,0,0,0,0,2,2,0,0,0,6,1,1,0,0,1,0,0,0,0,0,0,1,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1277383,CC1=C(C(=O)Nc2ccc(F)c(Cl)c2)C(c2ccco2)n2c(nc3ccccc32)N1,5.24184537803261,0.47832373322302385,-0.11914649091804079,0.47832373322302385,0.014359532907813666,0.015551973320762864,14.094899999999996,13.557300000000005,14.069819388400017,150,0,0.25544082705878596,-0.466761277244615,0.466761277244615,0.25544082705878596,0.04777777777777778,0.07666666666666666,0.10333333333333333,2.0025600313409195,67.70413300459067,1.1564423251244833,1.0120426636315338,0.503906961832149,0.7038204801581922,0.5299075093151584,0.279358752048802,0.18934065699604677,0.201939472763021,0.13089931632833798,0.1395796765927775,0.09135242756920854,0.0959107219354996,-0.11933333333333332,3.5232929061937677,0.2640902567228775,0.23449594573347413,2.946740857089731,6.603844365549738,0.5012259214543366,0.6322039761480067,0.09412280522188005,0.19827797603288314,5.907179729351506,0.0,0.3120545610621059,9.374393568622029,0.0,0.0,0.7895259101853036,1.638294102364625,0.5165567085416685,1.3858646491862026,1.187213570394649,1.3392415536828866,0.0,0.3183692722912854,0.0,0.4289928195215108,10.619626706576751,88.4912284205972,0.0,0.0,0.35398755688589173,16.026140603344878,0.0,11.600939890232516,0.5152752632696689,0.15981790613572738,5.817220841045895,1.2606883930300952,76.30827778398884,7.846317470397728,11.033401435232523,0.0,2.403,4.3312439908832205,0.3518570262638954,0.0,10.619626706576751,4.567099647791355,0.0,0.0,0.0,0.0,4.9839785209472085,1.2220545404718375,5.097429717637885,0.19198063099827742,0.609081288951148,-0.048885945479874925,-0.17872677463496364,-0.18455352590786853,-0.4172967056954956,-0.03506738013625339,-0.11914649091804079,0.0,0.09090909090909091,30,2,6,0,1,1,2,2,4,5,2,8,4,0,0,0,5,5.349400000000003,3.7647466666666674,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,2,0,3,0,0,0,0,0,1,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2322135,c1cc2c(ncc3[nH]nc(C4CCCCC4)c32)[nH]1,6.886056647693162,0.4959888615940203,-0.21256709551104397,0.4959888615940203,0.16728788737717282,0.03798426982306887,13.350555555555564,12.454555555555554,13.340972028444444,92,0,0.190143155718729,-0.34613674444938275,0.34613674444938275,0.190143155718729,0.08024691358024691,0.12962962962962965,0.17901234567901236,2.294950536279632,74.31598108612481,1.4548731252371863,1.3771585767777685,0.48826968788887953,0.8412084986517627,0.7186704431944329,0.2800911548055486,0.19683522159721642,0.19683522159721642,0.14135706616666202,0.14135706616666202,0.09890737624791271,0.09890737624791271,-0.1022222222222222,3.1636399805994024,0.16690506687812035,0.21295502970041325,1.3796655732746668,7.0777925197392095,0.2765001816794029,0.31373206782042934,0.15687134203646674,0.0,0.0,0.0,0.2828725865323934,4.9839785209472085,5.098681808301038,0.0,1.0621541502215632,1.043792695017892,2.1065358579433258,1.1942110884327857,1.2230168857244155,1.218684798184088,0.0,1.1195205642811432,0.0,2.097699010667221,0.0,24.08213712414128,0.0,0.0,0.0,0.0,0.0,0.0,1.1195205642811432,0.0,0.0,3.4801738874023087,18.388209129292818,2.8236841566564013,21.936326367313583,0.0,3.1866666666666665,4.654280315748046,0.0,0.0,5.091706557583081,4.977003270229252,0.0,0.0,0.0,0.0,10.082660329248245,1.2230168857244155,7.2843065798421565,0.0,0.22721292272052857,0.15078378264886197,-0.11991186833958542,-0.20433030465272534,-0.039422214144574155,-1.1412314906672547,0.0,0.0,0.42857142857142855,18,2,4,1,0,1,0,3,3,2,2,4,1,1,0,1,4,3.486900000000001,3.97618888888889,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL513076,O=C(Nc1cccc(C(F)(F)F)c1)Nc1nc(CCNc2ncnc3ccsc23)cs1,4.698970004336019,0.434961855422008,-0.17403033008803848,0.434961855422008,0.07839609851694918,0.011361672093626672,14.9838064516129,14.496064516129037,14.97000276645163,160,0,0.41598552440603315,-0.368387830616811,0.41598552440603315,0.368387830616811,0.03954214360041623,0.06763787721123829,0.09469302809573361,1.7234440512463711,60.894652862611025,1.12919964582373,0.9529651568844845,0.5217713879120797,0.6761304797429651,0.4874996708120362,0.3033497474364097,0.16701067288817362,0.21829755169661547,0.10112757948186604,0.14773181340612346,0.06172657424838622,0.09950057799086057,-0.10483870967741936,3.4817910617129204,0.3060318795097861,0.2857133148959347,5.272109835307366,6.554294750435096,0.3425686034379597,0.4352255821926282,0.3021640230588366,0.0,0.0,12.207413029781547,0.17128430171897985,19.746472746913447,13.171245143024459,22.673571755869474,0.19491673250526756,0.952444814203896,0.948268370796044,1.0022358068974955,1.2467874592297914,1.7921972398274462,0.0,0.4823205020271492,0.0,0.40481365867009206,22.426299744181073,58.48507355816335,0.0,0.0,0.5138529051569395,34.60258985945421,0.0,22.673571755869474,0.8864487019192142,0.40481365867009206,0.0,0.8937574890512288,47.2276940716179,4.235526234984602,10.216620634085363,0.0,2.962258064516129,3.2307347628893206,0.5795413653902026,0.0,37.52914762826445,11.336785877934737,0.0,0.0,0.0,0.0,14.951935562841626,0.6672460938395883,5.183859980058532,0.02035837891208146,0.7685710940761611,-0.10141702516041404,-0.15494351555629296,-0.02260795539337786,-0.2671496061133287,-0.31080250796037545,-0.11318067081997489,0.0,0.15789473684210525,31,3,7,0,0,0,1,3,4,7,3,12,6,0,0,0,4,5.465200000000001,3.735745161290323,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,2,0,3,1,0,0,0,1,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1 +CHEMBL3685211,COc1ccc(C(=O)Nc2ccc(C)c(CNc3ncnc4c(C(N)=O)cccc34)c2)cc1,8.040958607678906,0.4141681698470353,-0.11645853738422213,0.4141681698470353,0.3736694913241978,0.012122444914095233,13.378515151515145,12.675969696969704,13.369093624121232,166,0,0.25516238106481504,-0.49676776983835946,0.49676776983835946,0.25516238106481504,0.03673094582185491,0.06336088154269973,0.08723599632690542,2.070794013626468,69.7383138313272,1.304699305251524,1.1806306923906478,0.4836609954209509,0.7699729744319397,0.6020549134144657,0.25996841699022843,0.17716147679665897,0.17716147679665897,0.11539492798249994,0.11539492798249994,0.07116903592162836,0.07116903592162836,-0.13515151515151513,3.0725355852285383,0.2205147445437613,0.2834430290816111,4.743410798707933,6.754970155268862,0.6386729283667598,0.5830759054925871,0.171132373130691,0.0,11.814359458703011,0.0,0.290578011155868,9.967957041894417,0.0,0.0,0.36620719440383603,2.009640750363516,0.8256423434446047,1.1721055457802774,1.3944763091663843,1.0370464679788685,0.0,0.3020593042998308,5.719716975726273,0.4045076303518674,17.65757916545934,88.98136475738718,0.0,5.749511833283905,0.6386729283667598,11.50524905251859,5.749511833283905,0.0,0.8733414836206065,0.19687453588836196,6.851892117295679,1.754160390974723,66.72755879059918,5.6473683133128025,10.902924932081056,0.0,3.613030303030303,4.859686200711595,0.290578011155868,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,14.704819995694464,0.9603569963802113,5.8018281706555,0.0,1.017590174069402,-0.052729093287415985,-0.24499138360725153,-0.17634996240113562,-0.3817773933754332,-0.034615687855235534,-0.22595186506489548,-0.09946760559818162,0.12,33,4,8,0,0,0,3,1,4,6,3,8,9,0,0,0,4,3.910120000000002,3.8639030303030304,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1095772,CC(C)c1ccccc1Nc1ncc2c(n1)-c1c(c(C(N)=O)nn1C)CC2,5.0,0.4714739624184731,-0.1425898500254617,0.4714739624184731,0.02143552051470543,0.027531665532235308,13.42359259259258,12.602259259259263,13.414278123111135,138,0,0.2690123532349573,-0.3641910642224725,0.3641910642224725,0.2690123532349573,0.056241426611796985,0.08916323731138547,0.11934156378600823,2.209601891621582,68.91075981426083,1.4050472192512329,1.2996862912393932,0.4848714764245783,0.8105065198963851,0.6659938114530222,0.26445156010117493,0.1892072870290128,0.1892072870290128,0.12854112114644942,0.12854112114644942,0.08699217046318877,0.08699217046318877,-0.11925925925925927,3.3633624061940535,0.19207548286741277,0.24066407361502204,2.9463866031512573,6.973173351066565,0.4085011232968388,0.0,0.36775756406789123,0.22030886225875904,5.907179729351506,0.0,0.3509755599710002,9.967957041894417,5.098681808301038,0.0,1.1789274206511573,1.3262640436695972,1.6144510986615062,0.6756166211314082,1.299054666158911,0.6497372327785763,0.0,0.7314237698274311,12.695543876008518,1.1979108045412294,5.309813353288376,52.72685251140738,0.0,11.387855989696922,0.4085011232968388,11.635725555670057,0.0,0.0,0.9502082042478572,0.7304324704792964,0.0,2.697073116340737,30.34257004146794,4.235526234984602,11.387855989696922,0.0,3.656296296296296,4.692472199435096,0.17757545126191931,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.066638850195455,1.1214792148969916,6.62714450172354,0.0,0.7495126511449925,0.12443612134435715,-0.3237088298267659,-0.2510478908444364,-0.1838530068652538,-0.2999508232133259,-0.41166852593224484,0.0,0.3,27,3,7,1,0,1,1,2,3,6,2,7,7,0,0,0,4,2.941600000000001,3.850874074074076,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL402349,COc1ccccc1CN1Cc2c([nH]c3cc(-c4ccco4)nn3c2=O)C1=O,5.2518119729937975,0.48989916080565077,-0.13107993546645053,0.48989916080565077,0.09897893571008631,0.021091030604727244,13.441857142857135,12.865857142857147,13.432755535428585,140,0,0.2796442130479303,-0.496406384377026,0.496406384377026,0.2796442130479303,0.05102040816326531,0.08290816326530613,0.11224489795918367,1.784725489085685,71.17075954297177,1.1845830616911486,1.050780269423403,0.4793516979948316,0.7166791074658713,0.5503861731746922,0.2665571161925508,0.18939942223227105,0.18939942223227105,0.13195854341792262,0.13195854341792262,0.08864312216784494,0.08864312216784494,-0.13607142857142857,3.4542242088205235,0.23792020817214637,0.21862051532128035,2.418156833337779,6.4662062771425095,0.6796759604261832,0.8626894142828133,0.25614605347152297,0.0,11.466446624403513,0.0,0.34246694171941583,0.0,9.61407970191666,0.0,0.6474020043924958,0.6474020043924958,0.4144953642628675,1.8223199193012622,1.2829204105645255,0.41265560536140117,0.0,0.696106882249871,0.0,0.4640614060225675,7.037952458882589,75.71078064585008,0.0,17.20368724700681,0.36771892317328775,0.0,5.749511833283905,0.0,1.15843303182966,0.4640614060225675,0.0,1.5063123751738428,57.747833709608976,1.4118420783282006,17.10135263449063,0.0,3.315714285714286,4.275212838800671,0.34246694171941583,0.0,9.87691300107973,4.5153978936156225,0.0,0.0,0.0,0.0,5.098681808301038,1.1116869397048175,4.969450933399128,0.0,0.9693014319932336,0.1355466898359472,-0.22948341078246828,-0.12740308264538872,-0.23825180582794678,-0.027441857232493174,-0.25608118023243454,-0.12123295660281588,0.15,28,1,8,0,1,1,1,3,4,6,1,8,5,0,0,0,5,2.4472000000000005,3.5745071428571444,0,0,0,0,0,3,1,0,0,0,1,1,0,0,0,3,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3917769,NC(=O)CCCCc1cccc(Nc2nccc(Nc3cccc(C(F)(F)F)c3)n2)c1,5.089668776347804,0.4423113159857891,-0.17609668329270373,0.4423113159857891,0.25516572989133435,0.013151130870798384,13.853096774193538,13.137741935483874,13.844440160774216,162,0,0.4159855115581602,-0.36967998171916017,0.4159855115581602,0.36967998171916017,0.036420395421436005,0.061394380853277836,0.08636836628511967,2.3456760177800735,64.32476476995969,1.3374586756827618,1.186393860870688,0.4767164415158495,0.7658905140908909,0.5991092392417876,0.2510816785321156,0.16315319422825816,0.16315319422825816,0.09308160911701052,0.09308160911701052,0.05634474679298081,0.05634474679298081,-0.11677419354838707,3.017702391175281,0.2328268875582108,0.320121881102675,6.984769535300218,6.723027776954649,0.5270756026549362,0.187672992833388,0.18217317139718717,0.3824360971076774,0.0,6.176298517443475,0.15466248980876846,4.9839785209472085,18.155223663971668,0.0,0.5847501975158027,1.9657012400537064,1.1253761648668719,0.6216463565612643,1.5576388597249375,0.9370372366948436,0.0,0.3215470013514328,5.719716975726273,1.021548326540677,10.619626706576751,71.6815665631784,0.0,0.0,0.5270756026549362,36.31221975121311,0.0,0.0,0.5121011861692233,0.5594761484788605,0.0,1.7715913451111658,60.55466357978442,5.6473683133128025,0.0,0.0,2.9977419354838712,4.455401161264705,0.5795413653902026,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,9.967957041894417,0.978097494334734,7.028623090208477,0.0,0.6172182539442049,-0.017844659754451923,-0.23714420068065478,-0.15672505114702726,-0.418338075469659,-0.764714088283686,0.0,0.0,0.22727272727272727,31,4,6,0,0,0,2,1,3,5,3,9,9,0,0,0,3,5.180700000000003,3.6526709677419364,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,2,1,0,0,0,0,0,0,0,3,0,1,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1271103,CCOC(=O)N1CCN(Cc2cc(Nc3nc(C)cn4c(-c5cn[nH]c5)cnc34)sn2)CC1,8.397940008672037,0.3944492874376179,-0.12879686534698576,0.3944492874376179,0.03867538844509699,0.01347370266633211,14.168454545454537,13.404818181818188,14.157127031515175,172,0,0.40933134178244857,-0.44970849687419634,0.44970849687419634,0.40933134178244857,0.04499540863177227,0.07254361799816346,0.09641873278236913,1.6740081773042925,69.23529091047466,1.352574107046441,1.2348384009360973,0.5020049639945133,0.7853732151651134,0.6323763732503733,0.2802239329817084,0.17268678120510697,0.19547001462138258,0.111846976141408,0.13124537599887393,0.0729720598980338,0.08914888346484821,-0.10636363636363637,3.6539684486514443,0.2120227623433897,0.2774748471410672,4.522136839568758,6.950455502959907,0.45292684963451224,0.15154793868751112,0.4329916410684593,0.0,0.0,6.093240070938415,0.43613063317258643,14.76249422596624,9.472221789717487,0.0,0.0,0.9478390773885251,2.025534636634815,1.5474213262716257,1.329773669286162,1.0330863229635063,0.0,1.1737090744593253,0.0,0.6121407248153728,37.85623733346844,42.12185554061926,0.0,11.257379486545457,0.16090343494813258,15.613481938594717,0.0,11.532486611566675,2.34460798509928,0.3404158375186665,6.851892117295679,1.508096815118415,30.73399955092234,2.8236841566564013,16.904556707313183,0.0,3.5324242424242422,4.19652983133885,0.145289005577934,0.0,21.934006522438132,4.400694606261793,0.0,0.0,0.0,0.0,24.17704178541195,1.040943362077923,6.457214221041364,0.0011719814680332423,0.5797470875565894,0.08835006341599937,-0.12876132483603964,-0.027221223455579372,-0.03728910106522814,-0.179120685873811,-0.9662122303725413,0.0,0.38095238095238093,33,2,11,0,1,1,0,4,4,10,2,12,8,0,1,1,5,2.902020000000001,3.774981818181819,0,0,0,0,0,6,1,0,0,0,1,1,0,0,0,7,2,0,0,0,0,1,0,0,0,0,0,1,0,2,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3670473,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4ccc(F)c(F)c4)c3)ncnc12,8.958607314841776,0.4445723778180657,-0.11337902403083375,0.4445723778180657,0.2882323822294963,0.013363179705051284,13.544312499999993,13.008812500000003,13.535469725750016,160,0,0.2552676012127987,-0.3655307152432796,0.3655307152432796,0.2552676012127987,0.0341796875,0.060546875,0.0869140625,2.009839051416725,65.3459326562842,1.1671240716285545,1.0096404220139366,0.4783904220139366,0.7035416212181659,0.5183602601632105,0.2593335607257157,0.17712834342034622,0.17712834342034622,0.11378453126279588,0.11378453126279588,0.07106809877795026,0.07106809877795026,-0.13749999999999998,3.0285400614569005,0.26934472318339103,0.273868366546683,4.36131705779019,6.405369795950562,0.5106044900719695,0.4216247827491086,0.5400565623563935,0.0,11.814359458703011,0.0,0.29965857400448886,18.748787137244054,0.0,0.0,0.5664767538434339,1.4956369514168768,0.7229350520362905,0.8602892151048717,1.3074104377193425,1.069454170103208,0.0,0.31149865755920053,5.719716975726273,0.20302686513487328,10.619626706576751,95.05235494778195,0.0,0.0,0.5106044900719695,20.28607914786823,0.0,0.0,0.6806973906436696,0.20302686513487328,11.63444168209179,1.3781028147952348,66.72755879059918,5.6473683133128025,10.902924932081056,0.0,3.4375,4.587539950137975,0.5740595144841651,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,0.7333509232351768,5.182063243260213,0.0,1.0302589994977018,-0.049208578145162434,-0.19792924996614406,-0.2682829602170428,-0.3961332748906993,-0.03374332217469982,-0.11337902403083375,0.0,0.043478260869565216,32,4,7,0,0,0,3,1,4,5,3,9,6,0,0,0,4,3.8713000000000015,3.6292437500000005,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3670436,NC(=O)c1cccc2c(NCc3cccc(NC(=O)Nc4cccc(C(F)(F)F)c4)c3)ncnc12,5.107905397309518,0.3902372377059273,-0.15727821228311709,0.3902372377059273,0.34294864311902895,0.008837183164836237,13.727142857142852,13.179942857142862,13.718633100228589,178,0,0.4159855244059726,-0.3655307152432796,0.4159855244059726,0.3655307152432796,0.029387755102040815,0.04979591836734694,0.07102040816326531,1.9635677211308438,65.11746466522519,1.1835805874658105,1.0181049020844328,0.4752477592272901,0.7038668670545558,0.5191696500779218,0.2552819935779278,0.17430666867245787,0.17430666867245787,0.10855328589222234,0.10855328589222234,0.06827038859684338,0.06827038859684338,-0.1334285714285714,3.062945824065521,0.27222438318555586,0.2763852975092266,5.638934793252118,6.397719165826367,0.61854734387404,0.3854855156563278,0.20169172547545725,0.0,5.907179729351506,12.207413029781547,0.13698677668776635,14.76249422596624,13.171245143024459,0.0,0.6905621380186623,1.3674394984382874,0.6645101842327961,0.9846704266063747,1.4002899911197775,1.1438244143135081,0.0,0.28479877262555475,5.719716975726273,0.3620902343359835,15.929440059865126,89.46033197335346,0.0,0.0,0.61854734387404,35.15841765429843,0.0,0.0,0.6258928938166856,0.3620902343359835,0.0,1.1621574698727402,72.76997749826246,7.059210391641003,10.902924932081056,0.0,3.4865714285714287,4.5287625245253915,0.6502948431762317,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,0.749995147943545,5.571254177034446,0.0,0.9446905136526885,-0.07195009707048865,-0.2566733959800787,-0.07899665040919394,-0.49380170091066133,-0.18936363578651497,-0.10611159148257815,0.0,0.08333333333333333,35,5,8,0,0,0,3,1,4,5,4,11,6,0,0,0,4,5.003600000000002,3.5974285714285714,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,3,1,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL1094704,CCn1cc(-c2ccnc3[nH]c(C(=O)NCCN4CCOCC4)cc23)c(-c2ccc(NC(=O)Nc3ccccc3)cc2)n1,6.705533773838407,0.3311547413572986,-0.10593042021865014,0.3311547413572986,0.23444332223525244,0.004617594146334589,13.457604651162828,12.660581395348844,13.448264812744208,220,0,0.32317843438896315,-0.3787927180120614,0.3787927180120614,0.32317843438896315,0.025959978366684695,0.043807463493780424,0.06165494862087614,1.6210426313723765,75.56197540002078,1.382368102773219,1.2744756659393315,0.4837779915207268,0.8043363735802859,0.6542572029517958,0.26381872895179975,0.1761814264846781,0.1761814264846781,0.11574222249828699,0.11574222249828699,0.07591346169690003,0.07591346169690003,-0.11627906976744184,3.7561765606523054,0.20405025358211706,0.2996943807303613,6.579329365655393,6.902586402420103,0.5963559600905681,0.39616356303406164,0.13133414682122796,0.0,5.907179729351506,6.031114512338072,0.33433139186203453,9.77851570501903,5.098681808301038,0.0,0.7026068264724761,1.1318571129063357,1.9780189673480721,0.9745093061722608,1.4208386586130963,0.798755075029982,0.0,0.6965392934595706,0.0,0.31043608840957265,49.72503592967311,84.50632420077426,0.0,22.384282469939446,0.37045209441546806,16.169309733438947,0.0,0.0,1.7601181332618394,0.26124936367711615,0.0,1.3596073018912238,78.81239620592578,5.6473683133128025,33.41768390517198,0.0,3.0046511627906973,4.988850830521549,0.22300172949171265,0.0,9.658806205374436,0.0,0.0,0.0,0.0,0.0,14.819523283048294,1.0876773255446377,6.710109813384701,0.0,0.7031970004080262,0.017894801896499748,-0.2344952447149585,-0.05384314245821549,-0.3661697949087075,-0.0650272872833626,-0.7698056812077042,0.0,0.25,43,4,11,0,1,1,2,3,5,7,4,11,10,0,1,1,6,4.819300000000004,3.8860534883720845,0,0,0,0,0,4,1,0,0,0,2,2,0,0,0,4,4,0,0,0,0,1,0,0,0,0,0,3,0,2,1,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL2022122,Cc1cn2c(-c3cnn(CC(=O)N(C)Cc4ccccc4)c3)cnc2c(Nc2cc(CN3CCCC(C)C3)ns2)n1,5.788612447063142,0.34453282319616507,-0.10658143028103931,0.34453282319616507,0.036488112092805114,0.006515216000429227,13.896073170731746,13.035585365853665,13.884598237561002,212,0,0.2438416582715289,-0.3398245821658665,0.3398245821658665,0.2438416582715289,0.03331350386674599,0.05591909577632361,0.07674003569303986,1.5468337222119106,77.45503339485634,1.436388789426433,1.3375955839128622,0.5038515980818311,0.8251448999984036,0.6886967129036213,0.2820182511142071,0.1797704409427239,0.19810816539972628,0.11306773933748178,0.12868108556422272,0.07386764187004317,0.086888012057967,-0.09975609756097556,3.899312424967657,0.19625709947123404,0.2877093971533992,6.307635406703699,7.136707970084383,0.24901763619850864,0.2804376014878978,0.3140702945592916,0.14407755437442696,0.0,0.0,0.45797425503242145,9.967957041894417,9.472221789717487,0.0,0.9039996501368817,1.3445589292819617,1.7509955851210006,1.1858096144526347,1.2881017115167692,0.8269704467368,0.0,0.9346950203590204,5.893957685363079,1.1204930021999497,25.279359622202513,77.89740057063274,0.0,11.257379486545457,0.12950764276313112,10.818944754522896,0.0,11.532486611566675,1.5658346788533046,0.5923199082199917,12.745849802658757,2.028166836856972,60.94609308923881,1.4118420783282006,16.904556707313183,0.0,2.353170731707317,4.710527274829183,0.11693993131882492,0.0,21.524102900000237,4.400694606261793,0.0,0.0,0.0,0.0,19.440178831611902,1.1711617801979441,7.264382453594235,-0.0020297266425932767,0.4923960422147333,0.05974499171085739,-0.17884293934013817,-0.19390394357364663,-0.18283805745515727,-0.33624915800405414,-0.7946108820164303,0.0,0.36666666666666664,41,1,10,0,1,1,1,4,5,10,1,11,12,0,1,1,6,4.991820000000004,3.92518780487804,0,0,0,0,0,6,0,0,0,0,1,1,0,0,0,8,1,0,0,1,1,0,0,0,0,0,0,1,0,2,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3675434,COc1cc(C(N)=O)c2ncnc(N[C@H](CN(C)C)c3cccc(F)c3)c2c1,6.958607314841776,0.542334855940064,-0.16000151705854307,0.542334855940064,0.6511512660619805,0.02326456047372056,13.69382142857142,12.901821428571434,13.684848327285737,146,0,0.2505569809816751,-0.49671446803449615,0.49671446803449615,0.2505569809816751,0.05484693877551021,0.08673469387755102,0.11479591836734694,2.7585708149391115,65.02333965662513,1.3933437567490325,1.2653760368370268,0.4796617511227409,0.7982038242676966,0.6385379798642884,0.2513365232035785,0.17245590014770926,0.17245590014770926,0.10980760801027122,0.10980760801027122,0.07243382248617757,0.07243382248617757,-0.11642857142857141,2.9322653087017603,0.20961967508886764,0.29213552423121986,4.1745398779964304,6.891886453188453,0.738082250488042,0.8949544900821884,0.1512687941065929,0.0,5.907179729351506,0.0,0.17123347085970791,14.358372089569237,0.0,0.0,0.4316013362616639,1.5601707186755238,0.8160411552908035,1.351556524937418,1.5786340709916247,0.8081416942595568,0.0,0.5309952418837462,5.719716975726273,0.21492473101248732,32.7962792970514,59.50200778438588,0.0,5.749511833283905,0.5630854743862391,10.208277825509848,5.749511833283905,0.0,1.7236254444949795,0.0,5.817220841045895,1.7137051858232026,42.557883959946,4.235526234984602,10.902924932081056,0.0,3.3346428571428572,4.904045911746971,0.22018913358007294,0.15680053741695785,0.0,0.0,0.0,0.0,0.0,0.0,14.704819995694464,1.0324707230731627,7.0275082181347335,0.0,0.6792433265648027,-0.06641234260459036,-0.17061596718270589,-0.2385506755992787,-0.4736722650155264,-0.04708755925760959,-0.451312569914284,-0.1251715936969722,0.25,28,3,7,0,0,0,2,1,3,6,2,8,10,0,0,0,3,2.5912000000000006,3.783057142857144,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1094488,Cn1nc(C(N)=O)c2c1-c1nc(Nc3ccccc3Cc3ccccc3)ncc1CC2,5.0,0.4131259150195686,-0.11051135085849643,0.4131259150195686,0.04816509482170206,0.016946050322165177,13.241322580645154,12.52596774193549,13.23179062335486,154,0,0.2690123532349573,-0.3641910642224725,0.3641910642224725,0.2690123532349573,0.04266389177939646,0.06971904266389177,0.0967741935483871,1.9061527759628814,71.59096234563222,1.3032379527393885,1.1965009633375359,0.4868235439826971,0.7761000812175918,0.6203817067494064,0.2706513587977975,0.18898699192849505,0.18898699192849505,0.12808420228884307,0.12808420228884307,0.08696250815443061,0.08696250815443061,-0.1290322580645161,3.4737505745691193,0.20960277449212783,0.24772852003170925,3.5446153846153847,6.793641627615101,0.3557913009359564,0.0,0.3203049751559052,0.1918819122898869,5.907179729351506,0.0,0.30568839094248407,9.967957041894417,5.098681808301038,0.0,1.5593338600421405,1.3500499318304005,1.1850447381615985,0.8095303726257781,1.1314347092351809,0.5659001704845665,0.0,0.6370465092045368,12.695543876008518,0.6167346678705851,5.309813353288376,88.50239754142086,0.0,11.387855989696922,0.3557913009359564,11.635725555670057,0.0,0.0,0.8276006940223272,0.8417613420732382,0.0,1.8963446359013711,60.55466357978441,4.235526234984602,11.387855989696922,0.0,3.1845161290322586,4.814434754714067,0.15466248980876846,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.066638850195453,0.9767722194264121,5.900708639059973,0.0,0.6607387184539518,0.11336250321799493,-0.2985128062942152,-0.09170984395548253,-0.31020221415064825,-0.36981987808339944,-0.10994146233419626,0.0,0.16666666666666666,31,3,7,1,0,1,2,2,4,6,2,7,6,0,0,0,5,3.4090000000000025,3.8429870967741935,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3670495,COc1ccc(C(CN)Nc2ncnc3c(C(N)=O)cccc23)cc1,5.698970004336019,0.5042080894189624,-0.15372026486520535,0.5042080894189624,0.3529458380574457,0.025276855732614706,13.49531999999999,12.729240000000004,13.486154993920023,128,0,0.2504173870671443,-0.4967681969587725,0.4967681969587725,0.2504173870671443,0.0592,0.0944,0.12480000000000001,2.5827533057650625,65.44118556049735,1.3605450075589163,1.2421025823371008,0.48210258233710074,0.7970822939474052,0.6254917918078167,0.25604907270782507,0.17217491084025105,0.17217491084025105,0.11473274028641191,0.11473274028641191,0.07201383820713057,0.07201383820713057,-0.1276,2.9071393691727425,0.20614336530753785,0.28576608241280116,3.360256184338629,6.862346393933592,0.8594444103416388,0.882607561516471,0.16942104939938407,0.0,5.907179729351506,0.0,0.19178148736287287,9.967957041894417,0.0,0.0,0.7250902449195954,1.189325052894007,0.5849840404448472,1.568573650176717,1.4312492126358378,0.9051186975707037,0.0,0.39871828167577666,11.439433951452546,0.2407156987339858,18.84462549648691,59.72720565100328,0.0,5.749511833283905,0.8594444103416388,5.817862777835028,5.749511833283905,0.0,1.176397956577778,0.0,0.0,1.6451980968879423,48.60030266760929,7.059210391641003,10.902924932081056,0.0,4.646,4.763872939462221,0.19178148736287287,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,14.704819995694464,1.0499932071209632,6.2623091038064835,0.0,0.7918640133822928,-0.049904988848666704,-0.1804741631861158,-0.156836165284834,-0.4869835212561938,-0.04465421326575728,-0.15372026486520535,-0.13159980048200304,0.16666666666666666,25,5,7,0,0,0,2,1,3,6,3,7,8,0,0,0,3,1.8491999999999995,3.85872,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2063467,Nc1ncnn2ccc(C(=O)Nc3ccc(NC(=O)Nc4ccsc4)cc3)c12,8.096910013008056,0.4794797957909274,-0.058832877640493615,0.4794797957909274,0.09447245743879673,0.015114831473791834,14.051142857142851,13.511142857142861,14.039314061428586,140,0,0.3232048024846241,-0.3818267561054635,0.3818267561054635,0.3232048024846241,0.039540816326530615,0.0663265306122449,0.09183673469387756,1.8182517243857577,64.3231434913686,1.1571563048186084,1.012687144281832,0.5061334507435366,0.7118253923454818,0.5155659332652596,0.2862955262448286,0.17170597678897387,0.19357642092096652,0.10916860179626166,0.1270091512027399,0.06937015107666684,0.08337321610938844,-0.13999999999999996,3.3457913723806705,0.25871320606051856,0.2631278403125671,3.6174149659863954,6.575682538141896,0.7731841798425501,0.47110110670545385,0.45989547033842976,0.0,5.907179729351506,6.031114512338072,0.17123347085970791,14.293913598634653,16.435467686235775,0.0,0.0,1.4860938091302631,0.8179922203517673,0.8424165989968763,1.084138225767387,1.8454215156830818,0.0,0.5213592222451381,0.0,0.0,21.6491570355914,65.00645948179294,0.0,0.0,0.7731841798425501,27.674558785957533,0.0,11.336785877934737,0.9477268737340516,0.0,0.0,0.8594847941953934,59.44300799009595,7.059210391641003,5.516700717616262,0.0,4.515714285714286,3.7621955729637326,0.34246694171941583,0.0,21.6491570355914,15.85218377155036,0.0,0.0,0.0,0.0,10.082660329248245,0.7416712840479714,4.295553732000632,0.016610192838362736,1.063965529631924,0.07542034740136853,-0.15305985302188424,-0.08080287326013946,-0.2748619753983816,-0.05592033828711927,0.0,0.0,0.0,28,5,9,0,0,0,1,3,4,7,4,10,5,0,0,0,4,3.269300000000001,3.8841071428571428,0,0,0,1,0,3,0,0,0,0,2,2,0,0,0,3,3,1,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +CHEMBL604092,CN1CCN(C(=O)c2nn(C)c3c2CCc2cnc(NC4CCCC4)nc2-3)CC1,5.0,0.49747107080611214,-0.1476620938952687,0.49747107080611214,0.2629702853363569,0.029398160137781727,13.638310344827573,12.630310344827592,13.629081329241409,154,0,0.2742511805257151,-0.35147704946505115,0.35147704946505115,0.2742511805257151,0.04518430439952437,0.07372175980975029,0.09988109393579073,1.8817101300642431,69.93395965979063,1.570673226683971,1.4840946020332266,0.4840946020332266,0.8717109228174268,0.7657048174821233,0.26752503832695235,0.18884933581149105,0.18884933581149105,0.12853491926927982,0.12853491926927982,0.08653567924555525,0.08653567924555525,-0.08551724137931034,3.445210422652993,0.16811676205341655,0.2553401428831762,3.3913029481095367,7.298619849880794,0.5210218212065287,0.0,0.2450265542474711,0.20511514762022395,5.907179729351506,0.0,0.3267703489385175,9.967957041894417,5.098681808301038,0.0,0.43951206216064687,1.3114130343895434,2.7887652773845604,0.6762899078178704,1.537504097764352,0.40881100035648277,0.0,1.0189055602428136,6.975826900282246,1.5260497198733076,38.2730789908344,22.993726189057213,0.0,11.387855989696922,0.18309701218235777,5.948339280986494,0.0,0.0,2.566779278699613,0.6800578173427932,0.0,2.947872666910273,6.172895210814761,1.4118420783282006,11.387855989696922,0.0,2.730344827586207,5.018664428215023,0.16532886841626973,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,15.066638850195453,1.3721752293480818,8.298382665654398,0.0,0.6875755368370553,0.09891104238289017,-0.2523484479902105,-0.13585702184772178,-0.1394953936412454,-0.8592480712025934,-0.850219160767288,0.0,0.6190476190476191,29,1,8,2,1,3,0,2,2,7,1,8,5,1,1,2,5,1.7177999999999995,3.8248689655172434,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,6,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL507927,COc1ccc2[nH]c(-c3cccc4c3C(=O)NC4)nc2c1,6.688246138944246,0.6063345756493647,-0.1458375003701784,0.6063345756493647,0.06444024783671276,0.03604738128966167,13.29995238095237,12.675952380952381,13.290513174095254,104,0,0.2521444964662983,-0.49668356501926575,0.49668356501926575,0.2521444964662983,0.07029478458049887,0.11564625850340135,0.15873015873015875,2.136481547107967,67.2668255403435,1.2215151366384338,1.102768446067981,0.48372082702036195,0.7389746485975138,0.5761162101521707,0.2716196772474128,0.1942558462383941,0.1942558462383941,0.13666017871697883,0.13666017871697883,0.09375459914895735,0.09375459914895735,-0.13428571428571429,3.1550484638442193,0.21871410224435428,0.2068182313222622,1.7784875507670332,6.613982129939738,0.7154133132056036,0.5511388729182778,0.13446115031697148,0.0,5.907179729351506,0.0,0.22831129447961057,4.9839785209472085,0.0,0.0,0.8632026725233278,0.8403947098582659,0.8620347563655351,1.8434833096992638,1.306353733923842,0.8066943411706682,0.0,0.7271807211649921,0.0,0.30937427068171164,7.037952458882589,47.38141522937376,0.0,17.137367822980828,0.4784131574804012,0.0,5.749511833283905,0.0,1.0907673323528835,0.30937427068171164,0.0,1.4761802040637253,36.25451224597977,2.8236841566564013,22.421257424929443,0.0,3.190952380952381,4.52353220762558,0.22831129447961057,0.0,5.309813353288376,4.977003270229252,0.0,0.0,0.0,0.0,9.720841474747257,0.8524775368823247,5.1113846822262285,0.0,0.8156112241394483,-0.0030685832303196554,-0.1343693100418195,-0.12648173978002875,-0.22410080913052804,0.0,-0.1344078050826445,-0.1458375003701784,0.125,21,2,5,0,1,1,2,1,3,3,2,5,3,0,0,0,4,2.4819000000000004,3.773900000000001,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,1,2,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1765733,Nc1nc(-c2ccc3c(N)n[nH]c3c2)cc(N2CCC[C@@H](C(=O)Nc3ccccc3)C2)n1,5.100000128334196,0.44267184880399346,-0.13932238954726292,0.44267184880399346,0.12881081153222862,0.012240048563449226,13.390624999999993,12.634625000000007,13.381478355875021,162,0,0.22877357490145206,-0.381711956674357,0.381711956674357,0.22877357490145206,0.041015625,0.0693359375,0.095703125,1.8793221533147086,71.98288418744285,1.3406367667162824,1.2339361579519852,0.48393615795198525,0.7933266495917178,0.632634190280669,0.26753164112442684,0.18414417950494666,0.18414417950494666,0.12032436441209561,0.12032436441209561,0.07758575989877445,0.07758575989877445,-0.129375,3.4574559958898,0.20129884716714805,0.2556280473259766,3.9189790401391864,6.827070833556478,0.6765361573622313,0.18180821180734463,0.4465286014938823,0.3704849690730625,0.0,0.0,0.3089451169267157,4.9839785209472085,10.082660329248245,0.0,0.7553023384579118,1.153610144790998,1.414640935947878,1.005716578615632,1.1856013645345311,1.252548617899146,0.0,0.6299482939930792,5.893957685363079,0.3983078063330862,34.64287640422329,54.38176836896965,0.0,11.257379486545457,0.6765361573622313,23.271451111340113,0.0,0.0,1.2206013908050604,0.14982928700224443,5.893957685363079,1.1693594941788352,54.38176836896965,8.471052469969203,22.160304418626517,0.0,4.338749999999999,4.790114704525209,0.14982928700224443,0.0,10.811423533309355,0.0,0.0,0.0,0.0,0.0,15.066638850195453,1.0357720775322863,6.282056600077746,0.0,0.6561653562016072,0.07924896029687532,-0.14297271169600034,-0.32523051239036826,-0.3170172591928607,-0.270071755079071,-0.26686617821792813,0.0,0.21739130434782608,32,6,9,0,1,1,2,2,4,7,4,9,6,0,1,1,5,3.0394000000000014,3.9360375,0,0,0,2,0,4,1,0,0,0,1,1,0,0,0,4,2,2,0,0,0,1,0,0,0,0,0,1,0,4,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL236277,COc1cc2ncnc(N3CCN(CCc4ccccc4)CC3)c2cc1OC,4.1191864077192095,0.316268723042568,-0.15602670282612813,0.316268723042568,0.46267156670723564,0.023473073513337165,13.516999999999987,12.581000000000005,13.507342002571454,146,0,0.16241566872489438,-0.492842070365072,0.492842070365072,0.16241566872489438,0.03826530612244898,0.06505102040816327,0.09183673469387756,2.120864520894729,70.34527072825212,1.5023582654207215,1.4144768201045557,0.4859053915331271,0.8544327197043672,0.7250915913724113,0.26080587708669706,0.17278679344895062,0.17278679344895062,0.11466621586403244,0.11466621586403244,0.07242000092948755,0.07242000092948755,-0.10214285714285712,2.963746133186631,0.17850289774179104,0.3013452158483085,3.869742657088049,7.207112656593444,0.5133441299446634,0.4818568945704098,0.41067941666313607,0.0,0.0,0.0,0.17499677610180278,9.967957041894417,0.0,0.0,1.0790033406541597,0.642099825024631,1.9599646354667715,1.5319821817955428,1.6111945845723514,0.5971709896398602,0.0,0.5309952418837462,0.0,0.22760446076176355,51.46011307019537,54.163754159306286,0.0,11.49902366656781,0.5133441299446634,5.817862777835028,11.49902366656781,0.0,2.1938596468603495,0.22760446076176355,0.0,1.4715419268615262,48.60030266760929,0.0,10.902924932081056,0.0,1.8114285714285718,5.182732615648767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.6111945845723514,8.026266130591372,0.0,0.2074900164606335,-0.04072711759471365,-0.0891822829618857,-0.14555885680826966,-0.310857498963329,-0.19052969239234624,-0.7676587672712564,-0.24876574058401382,0.36363636363636365,28,0,6,0,1,1,2,1,3,6,0,6,8,0,1,1,4,3.011700000000001,3.9800357142857163,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3330148,O=c1[nH]c2sc(Cl)cc2c(NC2CCCNC2)c1-c1nc2ccccc2[nH]1,5.978186592759715,0.5110910292614987,-0.1497735162675322,0.5110910292614987,0.15323046579743016,0.015552286577674908,14.811370370370366,14.139370370370377,14.781187365777798,138,0,0.26169090680867807,-0.3796975447625217,0.3796975447625217,0.26169090680867807,0.05486968449931413,0.0877914951989026,0.12208504801097393,2.0088642591992376,74.35708478334922,1.2706117928809764,1.145575149312472,0.5371464651252935,0.7536989454342882,0.5954176678407419,0.31414384087545005,0.18932332770952115,0.24862489281632955,0.12961945820689524,0.17021139772879804,0.09031735385466065,0.1279061633363936,-0.08703703703703702,3.4537935565833524,0.23464545874875012,0.24703911487259408,3.0135981184869323,7.001693840256278,0.7619864165568613,0.6529664625053958,0.15687134203646672,0.0,5.559266895052008,0.0,0.17757545126191931,4.9839785209472085,0.0,11.336785877934737,0.877251011317004,1.3840728003690588,1.0691498080182273,1.084506224543816,0.9199254851739214,1.8472271893395813,0.0,0.7499184598034847,0.0,0.6949534174447557,18.303532721920263,44.90222663318593,0.0,11.387855989696924,0.5992182815418059,5.687386274683562,0.0,22.937725768167255,1.257392477718046,0.0,0.0,1.1828322070015493,35.006630722388294,9.983697329058433,32.6378780590148,0.0,3.17037037037037,4.277786250953376,0.17757545126191931,0.0,15.263819893746879,11.336785877934737,0.0,0.0,0.0,0.0,4.9839785209472085,1.3495899255529038,5.561807179476047,0.24334339312655034,0.6544559597101298,-0.063236973402245,-0.17865763720102132,-0.033934362353766366,-0.2905954767757079,-0.2940989747183576,-0.28323948646245245,0.0,0.2631578947368421,27,4,6,0,1,1,1,3,4,5,4,8,3,0,1,1,5,3.9502000000000015,4.1502888888888885,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,1,4,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL2159053,COc1ccc(C2=NN(C(=O)c3ccc(Cl)cc3O)C(c3ccc(Cl)cc3)C2)cc1,4.6020599913279625,0.4745756510289839,-0.12076584735403077,0.4745756510289839,0.13673304043839796,0.018841204869249135,14.710466666666663,14.105666666666675,14.668981593200016,152,0,0.29313201896893376,-0.5070646374675671,0.5070646374675671,0.29313201896893376,0.04111111111111111,0.06555555555555555,0.08888888888888888,2.1911214013331843,63.16745136185084,1.2248558665513931,1.0791700336136651,0.5295652966815623,0.7297527502024826,0.5574509912550252,0.2857070131068448,0.18091481316241625,0.20611244469636475,0.11915495441980177,0.131753770186776,0.07593756651851273,0.08352283565168393,-0.10066666666666663,3.2093909912722007,0.2636807934249386,0.27937806820703354,3.9928028671555627,6.968057864101171,0.32818903816357536,0.38330078888559366,0.0,0.0,7.33837938658414,0.0,0.15981790613572738,5.008912523954532,5.101407525739723,0.0,1.1762239065263875,2.183622378412122,0.6386569547050823,1.4964119921417753,1.2647701261290942,1.160691483752908,1.4311996572326342,0.16696375079848438,5.101407525739723,0.41302724565596743,7.037952458882589,93.20222688686991,0.0,11.49902366656781,0.15789543179333496,0.0,11.49902366656781,23.20187978046503,1.006857918776639,0.0,0.0,1.9059534827911875,71.56801331003598,10.045266627482652,0.0,0.0,2.0709999999999997,4.524962837137385,0.20550985800806806,0.0,5.008912523954532,0.0,0.0,0.0,0.0,0.0,14.947078670646984,1.552173877880707,5.093173745258464,0.392966011925482,0.4745756510289839,0.21649693960460387,-0.15505081546287752,-0.13097792172800501,-0.5183733505848591,-0.12076584735403077,0.0,-0.1085258941692422,0.13043478260869565,30,1,5,0,1,1,3,0,3,4,1,7,6,0,0,0,4,5.699100000000005,3.9209099999999997,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,2,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3986649,CN(C)C(=O)[C@]1(Cc2cccc(Nc3cc[nH]n3)n2)CC[C@@H](Oc2cccc(Cl)c2F)CC1,8.886056647693161,0.4698078394504944,-0.1611077133029294,0.4698078394504944,0.032319997871766315,0.01537761154467084,14.301939393939383,13.477212121212126,14.278294878909113,174,0,0.2281687308684326,-0.4873030015144482,0.4873030015144482,0.2281687308684326,0.0440771349862259,0.06795224977043159,0.08999081726354453,2.2893804345084945,66.8491007412289,1.4246553087567548,1.2972270758923021,0.501952195468619,0.8072237034572823,0.6620371296804469,0.2675988654989109,0.176062672333255,0.1875161412123225,0.110559124303096,0.11845036090713192,0.06820458517905707,0.07223691717126401,-0.09484848484848483,3.345960941349279,0.21047297229258907,0.2965377079858104,5.273454412926218,7.118484031986408,0.45292684963451224,0.1762988720556069,0.612372109358219,0.17900544634398502,0.0,0.0,0.29958314368651223,9.374393568622029,5.098681808301038,0.0,0.717750827441185,1.5048901344233543,1.8232108337558772,0.8743778428975779,1.5458928256502613,0.8831468234925478,0.0,0.6083114126570244,5.41499046939678,1.149837652533239,19.261467153852866,65.0036083140935,0.0,5.749511833283905,0.3044447365784371,16.026140603344878,5.749511833283905,11.600939890232516,1.3943372174105393,0.3384079419818546,11.232211310442676,1.9834724698309558,48.46982616445783,7.846317470397728,0.0,0.0,2.5193939393939395,4.56082490808508,0.22836528170946252,0.1330428802325703,10.401519910871457,0.0,0.0,0.0,0.0,0.0,10.082660329248245,1.5360282967455776,7.5153840298447045,0.17239951324096517,0.5192219313868234,0.05255324169434879,-0.22264055426857238,-0.291906943033138,-0.298030100260758,-0.9405532341893312,-0.26821239619955556,0.0,0.375,33,2,7,1,0,1,1,2,3,5,2,9,9,1,0,1,4,4.979500000000004,3.7949212121212135,0,0,0,0,0,3,1,0,0,0,1,1,0,0,0,3,2,0,0,0,0,1,0,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL522476,COc1ccccc1Nc1nc(Nc2ccc(O)cc2)ncc1F,7.698970004336019,0.6242299193587092,-0.13625725070553904,0.6242299193587092,0.07289664168136367,0.025779157649571366,13.597124999999986,12.967124999999998,13.588245997500017,122,0,0.2930920966378609,-0.5079643157845182,0.5079643157845182,0.2930920966378609,0.052083333333333336,0.08680555555555557,0.11979166666666667,2.2757340377401274,60.122603079537534,1.2383638320899775,1.103471476497366,0.4784714764973661,0.747431381034938,0.5580368556526675,0.2537587105916767,0.164755416133722,0.164755416133722,0.1004677789433694,0.1004677789433694,0.06021690126587761,0.06021690126587761,-0.1395833333333333,2.854376744845356,0.23437104834314795,0.28428998238034986,3.515986150636414,6.616675391036705,0.8527207438118339,0.4791259861069921,0.6024486573140552,0.24784747004110394,1.4311996572326342,0.0,0.0,9.374393568622029,4.9839785209472085,0.0,0.5035348923052746,1.5106046769158237,0.2369744281118151,1.4728056924343147,1.3962030426367134,0.9642072753411935,1.4311996572326342,0.41533154341226736,0.0,0.0,17.65757916545934,60.32946571316701,0.0,11.49902366656781,0.6398537358490334,27.531389655863464,11.49902366656781,0.0,0.9810798895465355,0.0,5.817220841045895,0.6853792780851099,54.512244872121116,2.8236841566564013,0.0,0.0,3.3041666666666667,4.250309018616919,0.18293396031978415,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,19.813628186801676,0.8626661036638198,5.68131356677988,0.0,0.29156644878887766,0.16955154792161395,-0.07619040473954941,-0.23665793496706733,-0.31099544457694994,-0.052469417390155655,0.0,-0.13625725070553904,0.058823529411764705,24,3,6,0,0,0,2,1,3,6,3,7,7,0,0,0,3,3.817100000000001,3.735675000000001,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL185140,O=C(CCc1cn(Cc2ccc(Cl)cc2)c2ccccc12)Nc1ccncc1,4.0,0.48110714464199084,-0.1442212035069743,0.48110714464199084,0.10712949645218783,0.017337171371089876,13.924499999999993,13.204500000000007,13.89748178357145,140,0,0.2242066752935058,-0.34276609057597585,0.34276609057597585,0.2242066752935058,0.04081632653061224,0.06760204081632652,0.09566326530612244,2.1267290752214265,71.65783405109579,1.3181718822627972,1.2009947696418917,0.5137065177139792,0.778290527131226,0.621627412910227,0.2798685156784152,0.17669924951028423,0.1901979806891852,0.11254314953415794,0.11929251512360842,0.0728477772417877,0.07622246003651297,-0.11107142857142853,3.331183349356683,0.22121241177063547,0.2955791646778722,4.23518527568294,7.017782912701101,0.35274689289570466,0.0,0.05042293136886431,0.21097070461969664,0.0,0.0,0.34923270375067966,0.0,0.0,0.0,1.4933226224481781,1.7039971936799942,2.088730320117016,0.7343349408054749,1.151813993915507,1.2178011009410228,0.0,0.3411099345978058,0.0,0.6872396245348108,5.309813353288376,95.09240900621256,0.0,0.0,0.18963619118887057,5.687386274683562,0.0,11.600939890232516,0.5520806392175024,0.6308686346327553,0.0,1.5551514447127703,78.94287270907722,6.434475392069527,10.902924932081056,0.0,1.6757142857142857,5.076515099378279,0.17123347085970791,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.394899804849818,5.954076162554064,0.2087575186607624,0.5978291443372197,-0.07753354397208577,-0.16247279479689763,-0.07735011985102173,-0.37121185309382115,-0.4053129526172866,-0.12412283106220255,0.0,0.13043478260869565,28,1,4,0,0,0,2,2,4,3,1,5,6,0,0,0,4,5.309300000000004,4.059989285714287,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3685305,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4c(F)cc(Cl)cc4F)c3)ncnc12,10.096910013008056,0.44892176851781773,-0.11030494743838272,0.44892176851781773,0.29643282096023826,0.011691616994979413,14.177666666666662,13.688939393939398,14.154426026424257,166,0,0.2611363846003232,-0.3655307152432796,0.3655307152432796,0.2611363846003232,0.03489439853076217,0.05785123966942149,0.0808080808080808,2.009839051416725,63.532021615222746,1.1317566755185984,0.9601956962865211,0.4982541491961714,0.6822221781509488,0.49322759277961664,0.2686551712950528,0.17748755230168767,0.18894102118075518,0.11498099852120597,0.12070773296073971,0.07370323997745036,0.07873110936171937,-0.12454545454545453,3.0285400614569005,0.29692102862595815,0.27794298243871285,4.726606258454637,6.480913005973692,0.4951316267364553,0.9299965521745532,0.171132373130691,0.0,11.814359458703011,0.0,0.290578011155868,18.748787137244054,0.0,0.0,0.9008544246431031,1.2672110223538413,0.6846394996122918,0.7926817068844143,1.2262538015408708,1.3885901010162172,0.0,0.3020593042998308,5.719716975726273,0.19687453588836196,10.619626706576751,94.03256955386,0.0,0.0,0.4951316267364553,20.28607914786823,0.0,11.600939890232516,0.6600701969878009,0.19687453588836196,11.63444168209179,1.294803985372039,60.68514008293588,10.670001627054129,10.902924932081056,0.0,3.3333333333333335,4.417621000317976,0.5566637716210087,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.0211336629572108,4.82868510427691,0.1674906368094696,0.9964778910929881,-0.08165877698168246,-0.20381528577630545,-0.2610066575245796,-0.3325201774013927,-0.0328090665183034,-0.11030494743838272,0.0,0.043478260869565216,33,4,7,0,0,0,3,1,4,5,3,10,6,0,0,0,4,4.524700000000002,3.671084848484849,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3675485,CNCCC(Nc1ncnc2c(C(N)=O)cccc12)c1cccc([N+](=O)[O-])c1,6.0,0.4535464694598498,-0.15951067339965094,0.4535464694598498,0.5879016301953612,0.01439417587641196,13.58599999999999,12.866000000000003,13.577131732142876,144,0,0.26927707325855754,-0.3655307152432725,0.3655307152432725,0.26927707325855754,0.05357142857142857,0.08418367346938775,0.11224489795918367,2.7240973844414635,66.23418095454036,1.335138167034857,1.193143801585405,0.47885808729969065,0.7719505144552058,0.6015783884429167,0.2519764462286369,0.16841809053101406,0.16841809053101406,0.11010269091119285,0.11010269091119285,0.07013837051267198,0.07013837051267198,-0.1282142857142857,2.9596587030222854,0.22181424773512734,0.3000210171038972,4.042423372542729,6.750711350366221,0.5835479886536794,0.5322798259392741,0.1512687941065929,0.0,11.594566004035068,0.0,0.5324591233156212,9.967957041894417,0.0,0.0,0.6474020043924958,1.339067871176827,0.9666561258208187,1.1781222919943688,1.3320483373187793,1.0112626326411127,0.0,0.545634656970814,5.719716975726273,0.4425291917742508,18.782499937886566,69.84152391976886,0.0,0.0,0.5835479886536794,11.50524905251859,0.0,0.0,1.223969085880778,0.0,10.114318268765572,1.7944426584238713,48.60030266760929,5.6473683133128025,10.902924932081056,0.0,4.859642857142858,4.827454216084013,0.5814147860359862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,0.9360266662809321,5.807100317012475,0.0,1.0772847697694228,0.3285382673494599,-0.2173525362019934,-0.11078419128717232,-0.49708929454052153,-0.20454261926882752,-0.2902975699757008,0.0,0.21052631578947367,28,4,9,0,0,0,2,1,3,7,3,9,9,0,0,0,3,2.3995999999999995,3.7878464285714295,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL4290876,CNC(=O)Nc1sc2c(C(C)C)cc(NS(=O)(=O)N(C)C)cc2c1C(N)=O,8.045757490560675,0.49748341435072135,-0.23526218294273335,0.49748341435072135,0.2789690150751667,0.02136215111840656,15.31574074074073,14.45707407407408,15.300709119111135,148,0,0.3191078334810201,-0.36548592227527044,0.36548592227527044,0.3191078334810201,0.053497942386831275,0.0823045267489712,0.10562414266117968,3.495931462849301,64.75725037850667,1.476568919223368,1.3216873229734434,0.53031669933846,0.8115320917729596,0.64962594983077,0.31545528366168946,0.16591767564682117,0.25637916445946524,0.10361466144785167,0.1767950168179286,0.06689544128911723,0.12328387350037238,-0.08777777777777779,3.2699590468112922,0.21538703200811657,0.2853782830336319,4.31281575904223,7.1942992971495965,0.4085011232968388,0.18522525839584691,0.26145223672744455,0.0,5.907179729351506,16.240443682735737,0.5488692648553455,4.794537184071822,12.72301297562517,11.336785877934737,0.5075475642441244,0.8719350589772839,1.9609541381668223,0.5182353658785555,1.8422124353769467,2.0095933952713816,0.0,0.35611219794757815,5.719716975726273,0.7258422933316458,30.952413667869244,23.21174039872058,0.0,0.0,0.779794936890265,15.48300543544325,0.0,11.336785877934737,1.6884736265985734,0.37812330260732097,0.0,2.229364299943862,12.08483741532659,7.059210391641003,10.086144130933896,0.0,4.949259259259259,4.889588077823989,0.6669211612026881,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,0.0,1.1752912741742576,7.491368416160259,-0.010332185743524692,0.9634337509507073,-0.1491383405463551,-0.2162848827252203,-0.2276684447212814,-0.20911832449638598,0.0,-0.7434175590218869,-0.23526218294273335,0.375,27,5,9,0,0,0,1,1,2,5,4,11,11,0,0,0,2,2.0932,4.027400000000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,3,1,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1 +CHEMBL3986609,O=C(O)/C=C\C(=O)Nc1cccc(-c2n[nH]c3ccc(NS(=O)(=O)c4ccccc4)cc23)c1,7.585026652029183,0.4117941222386176,-0.1688290610518057,0.4117941222386176,0.10619860701945272,0.009371581619119622,14.014757575757573,13.464939393939401,14.003023959878801,166,0,0.3280008965482678,-0.47807151112888013,0.47807151112888013,0.3280008965482678,0.03305785123966942,0.05785123966942149,0.08172635445362718,2.082320181053982,70.85122096629354,1.1795551685243446,1.022374064387364,0.5016618395669921,0.7114805162536566,0.5197068838124166,0.29819701265595905,0.17255509729776572,0.219250708084288,0.1074619459930781,0.14209722301286265,0.0691584969788879,0.09288420332594033,-0.13454545454545452,3.4232991880494485,0.2676332662198793,0.27176621853208105,5.075648446792034,6.48250820693653,0.31571580437562385,0.17254327257116547,0.12834927984801822,0.17900544634398502,11.454490810640218,5.969305287951849,0.44246555622391015,13.212334168400758,5.098681808301038,0.0,0.9155179860095901,1.2817251804134262,1.0432906590181832,0.8970546660459731,1.4103583504529547,1.3387113227927008,1.4311996572326342,0.3087996474510339,0.0,0.14834798410659925,10.024932967022508,84.6131679840307,0.0,11.257379486545457,0.30378584748553056,11.374772549367124,0.0,0.0,1.078590259352231,0.5943141067136735,0.0,0.5815339329206993,89.50865145954847,4.235526234984602,23.591504075859152,0.0,4.280303030303029,4.535109824605672,0.5456627682567449,0.0,10.401519910871457,0.0,0.0,0.0,0.0,0.0,10.20748999940825,0.7532528993515246,5.20665447260709,0.0,0.6926463796298549,0.1865261686178954,-0.1522332899877073,-0.11039954555877952,-0.5104257303171535,0.0,0.0,-0.1688290610518057,0.0,33,4,9,0,0,0,3,1,4,6,4,10,7,0,0,0,4,3.610000000000001,3.76320303030303,1,0,0,0,0,2,1,0,1,1,2,1,0,0,0,1,3,0,0,0,0,1,0,0,0,0,0,1,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL3970521,Nc1cccc(-c2n[nH]c3ccccc23)c1,4.867740310468956,0.5118685633975812,-0.04201291782144957,0.5118685633975812,0.040797850004199,0.03783321017001711,13.078250000000004,12.385249999999997,13.0684560845,78,0,0.1900885621932158,-0.3987103963511289,0.3987103963511289,0.1900885621932158,0.078125,0.13671875,0.1953125,2.5595958945765003,69.11217620230678,1.2729600511894335,1.177602549156242,0.49010254915624213,0.781292679709184,0.6070288237343633,0.27317627457812105,0.18723877457812108,0.18723877457812108,0.12519470593359083,0.12519470593359083,0.08309428107421711,0.08309428107421711,-0.14312499999999997,2.927208842194552,0.19402638723236296,0.21120543489978855,1.3358058857067674,6.783509995202213,0.35748231098289207,0.0,0.2647203896865376,0.0,0.0,0.0,0.3182316598489426,0.0,5.098681808301038,0.0,1.8882558461447796,1.1329535076868678,1.0398163738028345,1.386043572614155,0.9500996677716476,1.0368944504227888,0.0,0.6368992728677574,0.0,0.0,5.719716975726273,48.33934966130636,0.0,11.257379486545457,0.35748231098289207,5.687386274683562,0.0,0.0,0.6368992728677574,0.0,0.0,0.68537927808511,48.33934966130636,4.235526234984602,22.160304418626517,0.0,3.4187499999999997,3.724386714230432,0.0,0.0,22.316569902655793,5.091706557583081,0.0,0.0,0.0,0.0,5.098681808301038,0.9500996677716476,5.379492489318258,0.0,0.0,0.2519384507275132,-0.1005775817271352,0.0,-0.3016866916519693,0.0,0.0,0.0,0.0,16,3,3,0,0,0,2,1,3,2,2,3,2,0,0,0,3,2.812100000000001,4.121381250000001,0,0,0,1,0,2,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL271188,COCCNC(=O)c1cccc2cc(Oc3ccnc4cc(OC)c(OC)cc34)ccc12,5.142667503568732,0.42629204390528563,-0.12456648240905804,0.42629204390528563,0.7973317827633126,0.012842693798685897,13.514874999999995,12.758875000000009,13.50526630837502,164,0,0.2514904467528262,-0.49284204149667443,0.49284204149667443,0.2514904467528262,0.033203125,0.060546875,0.0869140625,2.0782581441706647,71.45181289720301,1.3487465487160901,1.232364645103726,0.482364645103726,0.786372343854998,0.6305861904246017,0.2572357655652281,0.17352437192706172,0.17352437192706172,0.11776541186113415,0.11776541186113415,0.07739732417333409,0.07739732417333409,-0.11999999999999998,3.031575014553537,0.213350511479296,0.29784967952504715,4.2858503401360535,6.8501262779469565,0.7580395365152679,0.35934448958024406,0.40346455452800034,0.0,5.907179729351506,0.0,0.3055786157818447,0.0,0.0,0.0,0.3776511692289559,1.4695925210909175,1.1468688052449494,1.8024699271941513,1.771289933422354,0.8619547840738173,0.0,0.321680996069862,0.0,0.0,34.16970230388,66.11811507148141,0.0,22.99804733313562,0.6100125692090164,0.0,22.99804733313562,0.0,1.4081518923180847,0.14802696730625153,0.0,1.3089198583651218,60.55466357978441,1.4118420783282006,21.67537336101065,0.0,2.4659375000000003,4.880569723504611,0.14982928700224443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.4734336791138574,6.574101744890898,0.0,0.5414759680308605,-0.11293822750262472,-0.06613955852574116,-0.20430770599752487,-0.3282180032778805,-0.03246037137420551,-0.24781756726599416,-0.32421711231112044,0.2,32,1,7,0,0,0,3,1,4,6,1,7,11,0,0,0,4,4.573700000000003,3.8461937500000016,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1082831,COc1ccc(-c2nc3c(N4CCN(CC(=O)Nc5nccs5)CC4)c(Cl)cnc3[nH]2)cc1,7.2839966563652,0.40509642943371277,-0.126227910895802,0.40509642943371277,0.19023430294029509,0.013110552612180578,14.666212121212114,13.994212121212128,14.640133988606083,170,0,0.23983363001372726,-0.4967677870083467,0.4967677870083467,0.23983363001372726,0.043158861340679526,0.06795224977043159,0.08999081726354453,1.7587156225814413,66.18518761433735,1.275228463325008,1.1434304397848645,0.5244130315105062,0.750829043639075,0.588840573262541,0.29490220547275425,0.1748153854720517,0.20970511684002746,0.11442960826629055,0.1393392902784608,0.07425764227443382,0.09300590231585702,-0.09727272727272726,3.5469555195515934,0.24039596302388322,0.28303698042696285,4.631953652399745,6.9684186270754,0.6037451305505501,0.5178974863303059,0.41219454112919585,0.17900544634398502,0.0,0.0,0.29377111863400907,14.951935562841626,0.0,11.336785877934737,0.351543633037349,0.7324143888076721,1.4716040628522433,1.5863595103382349,1.205159255088869,1.5402341875886558,0.0,0.7523893504218593,0.0,0.0,49.73197396460116,46.89421297569163,0.0,17.137367822980828,0.45292684963451224,10.818944754522896,5.749511833283905,22.937725768167255,2.1290387628404592,0.145289005577934,0.0,0.8307627613152847,41.8715796619503,7.846317470397728,22.55173392808091,0.0,3.0081818181818183,4.13162860097708,0.145289005577934,0.0,26.523512232302842,0.0,0.0,0.0,0.0,0.0,19.688798516641672,1.2678725809179796,5.684005755342637,0.19997039235071856,0.719071221989782,-0.0828126564897429,-0.1133206748916171,-0.12189072437612007,-0.12611259798507313,-0.054590075570255255,-0.6245179610225312,-0.09764779719291751,0.2727272727272727,33,2,9,0,1,1,1,3,4,8,2,11,7,0,1,1,5,3.504100000000001,3.9479818181818183,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,5,2,0,0,0,0,1,0,0,0,0,0,1,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL1099349,CCn1cc(-c2ccnc3[nH]c(-c4cccc(CN5CCCC5)c4)cc23)c(-c2ccc(NC(=O)Nc3ccccc3)cc2)n1,7.657577319177793,0.30921969638269764,-0.09196251504533062,0.30921969638269764,0.03944532829477021,0.00385829385814495,13.221000000000037,12.419181818181825,13.211143380454565,220,0,0.32317843438896315,-0.3392084965497678,0.3392084965497678,0.32317843438896315,0.022727272727272728,0.04080578512396694,0.058884297520661155,1.5523316557742535,80.78686086375642,1.3760027889731903,1.284971442249172,0.4895168967946265,0.8113801019957193,0.6676422750052615,0.2735140753120826,0.18729217633715448,0.18729217633715448,0.12548757661317778,0.12548757661317778,0.08494965175380412,0.08494965175380412,-0.1184090909090909,3.960465545885866,0.19775339894640284,0.276928613432889,5.845171276692056,6.946827491729686,0.3544688631092274,0.2577523912640043,0.09626195988601367,0.0,0.0,6.031114512338072,0.2177661969544469,9.77851570501903,5.098681808301038,0.0,1.098621583211508,2.0813351526663726,1.744118153694287,0.5919184674371404,1.2021440276478066,0.6463474658394935,0.0,0.5600312787607536,0.0,0.7407150292860529,23.613346075208643,108.545522528276,0.0,33.6416619564849,0.24135515242219888,16.169309733438947,0.0,0.0,0.9924138669646164,0.29531180383254296,0.0,1.5687606183886031,102.98207103657899,4.235526234984602,44.67506339171742,0.0,2.065227272727273,5.145940380069448,0.20242756483142008,0.0,14.968619558662812,0.0,0.0,0.0,0.0,0.0,10.082660329248245,0.9997164628163863,6.793500531445823,0.0,0.38327725310752553,0.047343166539102643,-0.27055546142875475,0.0,-0.4733519221441054,-0.23724420971690466,-0.4456208729541993,0.0,0.19444444444444445,44,3,8,0,1,1,3,3,6,5,3,8,9,0,1,1,7,8.020100000000006,4.033070454545445,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,4,3,0,0,0,1,1,0,0,0,0,0,2,0,2,1,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL3675455,Cc1ccc(C(=O)Nc2cccc([C@@H](C)Nc3ncnc4c(C(N)=O)cccc34)c2)cc1C,9.568636235841012,0.42030047862071307,-0.12188488483232936,0.42030047862071307,0.44716002946571054,0.012144898323159056,13.31875757575757,12.55512121212122,13.309115910303053,166,0,0.25516816452253316,-0.3655307152432725,0.3655307152432725,0.25516816452253316,0.03397612488521579,0.06060606060606061,0.08539944903581267,2.133225862828102,73.09726867299747,1.3590294027913254,1.244017107831137,0.4864413502553794,0.7935145942361117,0.6351382985519244,0.26274877182465683,0.18263472470657088,0.18263472470657088,0.11847909629175943,0.11847909629175943,0.07356867008478093,0.07356867008478093,-0.1290909090909091,3.0810789128138274,0.208164694979827,0.2751299736671853,4.66911438120334,6.878041000275691,0.4951316267364553,0.40884827418095376,0.171132373130691,0.0,11.814359458703011,0.0,0.290578011155868,9.967957041894417,0.0,0.0,0.7324143888076721,2.2272891840290243,0.8779966359508281,0.9750420847131914,1.3340112836676086,1.0370464679788685,0.0,0.3020593042998308,5.719716975726273,0.8052596612192935,10.619626706576751,94.54481624908418,0.0,0.0,0.4951316267364553,11.50524905251859,0.0,0.0,0.6600701969878009,0.0,13.703784234591359,2.3958195785408654,66.72755879059918,5.6473683133128025,10.902924932081056,0.0,3.3333333333333335,5.202432187725048,0.33211614922163224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.0018951344459757,6.217015614870192,0.0,1.0249520611373275,-0.05942470740673803,-0.29529792986579145,-0.15005629902551282,-0.5301480757060635,-0.03632634680336453,-0.3323304788162107,0.0,0.15384615384615385,33,4,7,0,0,0,3,1,4,5,3,7,9,0,0,0,4,4.770940000000002,3.951660606060606,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3719096,CCNC(=O)c1cc(NC(C)(C)C(=O)Nc2nc3c(C(F)(F)F)cc4[nH]ncc4c3s2)ccc1Cl,6.787812395596043,0.40743787169891704,-0.1551088037941827,0.40743787169891704,0.01748670585757872,0.007680970271778048,14.99874285714287,14.422742857142861,14.974311634857157,184,0,0.4181153606974719,-0.3716371112505057,0.4181153606974719,0.3716371112505057,0.03918367346938775,0.06204081632653061,0.08244897959183674,2.0640377015855353,64.02968178953512,1.2190950207814903,1.0405681238979498,0.5140659960964122,0.7033064812791796,0.5299242253270229,0.28437013023951213,0.18251022346205742,0.2212383743299183,0.116179386202206,0.15189993427147422,0.07503877944499285,0.10681434487116663,-0.09657142857142853,3.5641234708431675,0.28392314849258243,0.2572787154864568,4.889627913806469,6.689507892708838,0.30341790590219286,0.15825500721095273,0.3079693369472039,0.0,11.814359458703011,6.176298517443475,0.5711598365432885,4.9839785209472085,18.269926951325495,0.0,0.6553635933762073,1.2778671766440064,0.9328232654667634,1.2831298754429377,1.43828070637727,1.9054450156445593,0.0,0.5852622925748486,0.0,0.922025717763253,17.116486390892696,46.49210633860326,0.0,0.0,0.4551268588532893,23.990189897547353,0.0,22.937725768167255,1.1149860366352466,0.31345244861472277,0.0,1.6688358119450406,30.34257004146794,10.670001627054129,21.119545566166423,0.0,3.1942857142857144,4.141204456682586,0.6502948431762317,0.0,16.428492435517818,0.0,0.0,0.0,0.0,0.0,10.082660329248245,1.1194412886362526,5.7857098878813105,0.16868609223270264,0.8870168019648735,-0.06164778740955059,-0.3352668178226143,-0.1334755784782088,-0.17364284253713327,-0.1802312922520134,-0.46825957469047724,0.0,0.2727272727272727,35,4,8,0,0,0,2,2,4,6,4,13,9,0,0,0,4,5.423700000000003,3.7161228571428566,0,0,0,0,0,3,1,0,0,0,2,2,0,0,0,2,4,0,0,0,0,1,0,0,0,3,0,2,0,2,0,0,0,0,2,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL2436978,CN1CCN(Cc2ccc(-c3cnc4[nH]cc(-c5ccc6[nH]ccc6c5)c4c3)cc2)CC1,6.966576244513051,0.2866620516062356,-0.12993092731296488,0.2866620516062356,0.28001318598431557,0.013224391069960593,13.173374999999991,12.322875000000007,13.163332683250024,160,0,0.1674899430691223,-0.36117570914541375,0.36117570914541375,0.1674899430691223,0.0322265625,0.05859375,0.0849609375,1.6594469100867433,81.20734972961257,1.4106519847164751,1.3355021242968685,0.4917521242968685,0.8308372799504016,0.6977408988749895,0.2791650491562422,0.19758973051171183,0.19758973051171183,0.134623521330073,0.134623521330073,0.08901835586327764,0.08901835586327764,-0.10656249999999996,3.4543695511510455,0.18525318056325482,0.24788496157247242,3.595549202325009,7.0406467206354755,0.4641848834784057,0.1764742881489915,0.08824012989551254,0.0,0.0,0.0,0.15312217908907744,4.9839785209472085,0.0,0.0,0.9441279230723898,1.66319001314035,2.839146037490996,0.5140344585638325,1.159145251903497,0.6855101989785495,0.0,0.7730563913470834,0.0,0.20302686513487328,32.96326563754602,78.46390549311093,0.0,22.253805966787983,0.0,0.0,0.0,0.0,1.8031584425203966,0.20302686513487328,0.0,1.244762981123516,72.90045400141395,2.8236841566564013,44.19013233410156,0.0,1.5921874999999999,5.372311956586732,0.04283620488031938,0.0,4.977003270229252,4.977003270229252,0.0,0.0,0.0,0.0,4.9839785209472085,1.1163090470231776,7.15272146390569,0.0,0.09698668093061746,-0.03396386691269236,-0.18010459577271695,0.0,-0.29923068518839585,-0.08332349487176466,-0.7624605020907406,0.0,0.2222222222222222,32,2,5,0,1,1,2,3,5,3,2,5,5,0,1,1,6,5.125600000000004,4.1123875,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,3,2,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL202198,CCN(CCO)CCCOc1cc2ncnc(Nc3ncc(CC(=O)Nc4cccc(F)c4)s3)c2cc1OC,9.0,0.3716968252756357,-0.12388250014654471,0.3716968252756357,0.003928337926544678,0.005039035507086268,14.221743589743628,13.420512820512828,14.210542376717973,206,0,0.22919079397735562,-0.49284175650236756,0.49284175650236756,0.22919079397735562,0.03353057199211045,0.057856673241288625,0.08021038790269559,1.9553853490794244,68.89076016386373,1.3993359774689225,1.2718586538032894,0.49792266869887225,0.8005597118167842,0.6418343397582967,0.2703938551291672,0.15991930680188682,0.1849839428881921,0.09900105907222927,0.11855546118596096,0.061828702070457736,0.07812617753372546,-0.0992307692307692,3.6186173397241914,0.21955989052113672,0.35345904780585763,7.818518083987821,7.003610082050844,0.7718479624649882,0.49510804843634276,0.49882734110419336,0.18816357401497794,0.0,0.0,0.12293685087363646,19.342350610516448,0.0,11.336785877934737,0.33062335448612756,0.9497297286230384,1.5122987743633975,1.3137479064113828,1.6659592323045274,1.1482999505570568,1.4311996572326342,0.5090216741972333,0.0,0.5025062030757548,50.26612870423975,59.42514720550795,0.0,11.49902366656781,0.5152141695942782,21.027222580032742,11.49902366656781,11.336785877934737,1.844757304334525,0.2863451816769539,5.817220841045895,1.4482872765408352,48.730779170760755,2.8236841566564013,10.902924932081056,0.0,3.1212820512820514,4.457052565836476,0.23551159568581134,0.0,16.646599231223114,0.0,0.0,0.0,0.0,0.0,20.060743753948838,1.3361499819039828,7.068028223910092,-0.0011704214330177098,0.5621659447183655,0.030257685499716375,-0.061378516861182175,-0.21035279964017994,-0.20557758149493133,-0.27539617259103455,-0.6926140742433271,-0.096440920343136,0.3333333333333333,39,3,10,0,0,0,2,2,4,10,3,12,17,0,0,0,4,4.241900000000003,3.83415897435897,0,1,0,0,0,3,0,0,0,0,1,1,0,0,0,4,2,0,0,1,0,0,0,0,0,0,0,1,0,3,0,0,0,0,2,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL3680514,CN(C)CC(Nc1ncnc2c(C(N)=O)cc(OCc3ccc(F)cc3)cc12)c1cccc(F)c1,6.522878745280337,0.4400247351095982,-0.1312214149710746,0.4400247351095982,0.7326694359766148,0.010669357837435972,13.643285714285708,12.923285714285722,13.634218042285735,180,0,0.25055698595893977,-0.4888632780559177,0.4888632780559177,0.25055698595893977,0.035918367346938776,0.059591836734693884,0.0816326530612245,2.3088569609077463,67.87189963183002,1.3279350515460193,1.1945283858413134,0.48024267155559913,0.7721466731439558,0.6090870192201339,0.2564687110344232,0.17485170037875541,0.17485170037875541,0.10920563575611,0.10920563575611,0.07081387707608786,0.07081387707608786,-0.11742857142857138,3.1024028962629804,0.22736236882005795,0.2982035984706255,5.8784083851035716,6.754581765679155,0.5904658003904336,1.0695694801789561,0.12101503528527434,0.0,5.907179729351506,0.0,0.13698677668776635,18.748787137244058,0.0,0.0,0.6905621380186623,1.7523734008553786,0.6528329242326427,0.9976544545107361,1.5058412772557423,0.6465133554076455,0.0,0.42479619350699693,5.719716975726273,0.35933936317902665,25.758326838168813,95.05235494778196,0.0,5.749511833283905,0.4504683795089913,14.598692873184667,5.749511833283905,0.0,1.1778159996279096,0.1873995783690368,11.63444168209179,1.647413496093067,66.72755879059918,4.235526234984602,10.902924932081056,0.0,2.6677142857142853,4.9252761564670005,0.30159173679762463,0.12544042993356627,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.0788091105245508,6.881134331904917,0.0,0.5541229826474843,-0.059950734199986935,-0.1888760729791262,-0.25608944492554336,-0.5624440699227007,-0.04046192731529471,-0.477435065209749,0.0,0.19230769230769232,35,3,7,0,0,0,3,1,4,6,2,9,11,0,0,0,4,4.300700000000001,3.7173028571428572,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,3,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL593293,COc1cc2ncnc(Nc3ccc(-c4nc5ccccc5s4)cc3O)c2cc1OC,5.0,0.28646876556512224,-0.1069827286910525,0.28646876556512224,0.02093367536400148,0.011684652368880317,13.886741935483867,13.301451612903232,13.874514885032275,154,0,0.2932119832642298,-0.5057499181694909,0.5057499181694909,0.2932119832642298,0.03433922996878252,0.06243496357960458,0.09053069719042664,1.8029285969780406,69.16645395396705,1.1823049480799228,1.0619950820598478,0.5076885201542907,0.7286816468353164,0.5507479124060379,0.29142645095326064,0.1844992306349671,0.2167273198853794,0.12569696314071982,0.15757747240085987,0.08238191441088985,0.10915014629125042,-0.1261290322580645,3.442028352167742,0.24683651447064595,0.2494022066240268,3.4663800405051584,6.675596591140119,0.6416886274837318,0.7822299541325208,0.4164795401579358,0.0,1.4311996572326342,0.0,0.0,14.951935562841626,0.0,11.336785877934737,0.3898334650105351,1.1695003950316054,0.5481320778653254,1.8083222866678614,1.2234359056696464,1.4181154998909595,1.4311996572326342,0.4823205020271492,0.0,0.0,19.385718271053552,60.68514008293588,0.0,27.819610688401475,0.47688836325446693,11.50524905251859,17.248535499851716,11.336785877934737,1.1473499460950531,0.0,0.0,0.7074882870555973,60.68514008293588,1.4118420783282006,31.69062075471618,0.0,2.883548387096775,3.8703614831241753,0.0,0.0,20.534057684226504,11.336785877934737,0.0,0.0,0.0,0.0,20.060743753948838,1.1048033723188533,4.9871282854777474,0.021744313225164336,0.3764075914646821,0.12588404582739493,-0.06881573913862582,-0.12326271655097061,-0.21126935094854465,-0.02956817109686589,0.0,-0.21265686041051898,0.08695652173913043,31,2,7,0,0,0,3,2,5,8,2,8,8,0,0,0,5,5.372900000000003,3.9563064516129036,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL461115,COc1ccc(CCNC(=O)c2c(N)ncnc2Nc2ccc(OCc3ccccc3)c(Cl)c2)cc1,4.0,0.39165163554860116,-0.11513507469464059,0.39165163554860116,0.2016313498253779,0.007736192057490136,13.999722222222218,13.27172222222223,13.977011593666687,184,0,0.2583372641038927,-0.4967682187769527,0.4967682187769527,0.2583372641038927,0.03240740740740741,0.05555555555555555,0.07716049382716049,1.9083907234440607,67.14131260243956,1.328875947879902,1.2038549256083502,0.5026307296644184,0.7798780659914,0.6114144034559421,0.2666674615395364,0.16634463046804843,0.17684364360719362,0.10305966563764629,0.11045227429002571,0.061300697473051814,0.06617082715303113,-0.11944444444444441,3.1606487719864202,0.2252455035990207,0.33060697757208973,6.426136032299333,6.965545712640266,0.7170297108306423,1.1925365618607668,0.15687134203646674,0.0,5.907179729351506,0.0,0.1331815884464395,9.967957041894417,0.0,0.0,1.497163078996544,1.3253311506399958,0.4907577828800107,0.9823189229866016,1.390897767798044,0.9675342069427122,0.0,0.4243825109772998,0.0,0.35921972622904635,24.564342472213184,100.5253839947581,0.0,11.49902366656781,0.7170297108306423,17.323111830353618,11.49902366656781,11.600939890232516,0.8169430254012348,0.35921972622904635,0.0,1.4344883304141025,78.81239620592578,10.670001627054129,0.0,0.0,3.0941666666666667,4.798637551041387,0.1331815884464395,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,14.704819995694464,1.4483849831413957,6.1515230913552275,0.1742555273942964,0.5837959039079424,-0.05935403372365106,-0.15818603561063826,-0.19969673791228723,-0.3943666781790377,-0.14386507405521137,-0.2103749440921531,-0.0924964511832527,0.14814814814814814,36,4,8,0,0,0,3,1,4,7,3,9,12,0,0,0,4,5.015900000000003,3.9162305555555506,0,0,0,1,0,2,0,0,0,0,1,1,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,3,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2022378,Cc1cn2c(-c3cnn(CC(=O)Nc4cccnc4)c3)cnc2c(Nc2cc(CN3CCCC(C)C3)ns2)n1,6.730487055782082,0.345228254781536,-0.11099618754460486,0.345228254781536,0.02054066112897912,0.007612064405856042,13.914692307692345,13.139307692307701,13.903396835384639,200,0,0.24564459696870136,-0.3275376996307338,0.3275376996307338,0.24564459696870136,0.03616042077580539,0.0611439842209073,0.08481262327416172,1.5285638819904352,75.38834410853651,1.3595306891918124,1.2509905778442898,0.5026956183808983,0.7935404806088335,0.6450611698025234,0.2829834639341659,0.17869730452311947,0.19797542510612198,0.11222915808340965,0.12864318873203479,0.07470632793176016,0.0883944094113724,-0.10666666666666662,3.8505466691073185,0.20973252559606054,0.27971481913631674,5.8103428583661625,6.972257004369654,0.27229812068145515,0.2948190169488157,0.3663775424425425,0.15146614690644886,0.0,0.0,0.6092544353147817,9.967957041894417,9.472221789717487,0.0,0.17568954146911997,1.5807256929279492,1.5481731268632555,1.4452871797319404,1.179473356756267,1.0152096048946762,0.0,0.9847837083286302,5.893957685363079,1.0113680360482566,23.61334607520864,66.55248337757536,0.0,11.257379486545457,0.27229812068145515,16.506331029206457,0.0,11.532486611566675,1.4694221467384607,0.45610914237701833,12.745849802658757,1.7786368585235277,55.16462738787845,2.8236841566564013,16.904556707313183,0.0,3.02974358974359,4.335935667542922,0.12293685087363646,0.0,26.83391625328861,4.400694606261793,0.0,0.0,0.0,0.0,24.42415735255911,1.0565365058826302,6.542596334071786,-0.0008949304969756262,0.6090633097486288,0.057875009911471764,-0.16515689633599448,-0.1887842917818387,-0.08513585926876026,-0.3874007930460932,-0.6107943614347027,0.0,0.3333333333333333,39,2,11,0,1,1,0,5,5,11,2,12,10,0,1,1,6,4.366920000000003,3.868805128205122,0,0,0,0,0,7,0,0,0,0,1,1,0,0,0,8,2,0,0,0,1,0,0,0,0,0,0,1,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1085833,Cc1cc(CN2CCN(c3c(Br)cnc4[nH]c(-c5ccc(CN(C)C)cc5)nc34)CC2)no1,7.853871964321763,0.27247267320555246,-0.12470368089610644,0.27247267320555246,0.13023397246923674,0.012704518634903518,15.467878787878783,14.61260606060607,15.428905170181844,172,0,0.16971259248459167,-0.3661442341287827,0.3661442341287827,0.16971259248459167,0.03948576675849403,0.06427915518824609,0.08631772268135905,1.8062419822009426,71.5469377077896,1.4332752193742146,1.330809331271903,0.5303849839723485,0.8205167184901958,0.6848667553657946,0.2862541697311702,0.1823630040892817,0.20639325468192862,0.11679917067842757,0.13355338809489206,0.07757923994791434,0.09132967604029792,-0.08333333333333333,3.59180239949104,0.2023878647118595,0.2801410181116129,4.802576664225204,7.292847670493603,0.5848459899667745,0.5182228071057767,0.21390967573017966,0.0,0.0,0.0,0.1484821130560751,9.967957041894417,0.0,0.0,0.8886769117508674,1.2817254941668639,2.4261460294231645,0.895806646880807,1.301376303996894,0.993369942758088,0.0,0.9061043342712142,0.0,0.6013821662402294,44.83900226867875,57.87533517038354,0.0,11.387855989696924,0.1484821130560751,5.687386274683562,0.0,15.929943897949348,2.1163798657205555,0.3937490717767239,6.851892117295679,1.6372153915762389,45.380803201937,1.4118420783282006,22.551733928080914,0.0,2.3430303030303032,4.718150874503177,0.0,0.0,9.87691300107973,0.0,0.0,0.0,0.0,0.0,35.57765913394256,1.1643128210583074,7.2099407045091795,0.08835328430183072,0.1978771555295686,0.09637212847133111,-0.20087295711882222,-0.06682519829198949,-0.1987916118310512,-0.029767312997401006,-1.0508316471181007,0.0,0.375,33,1,8,0,1,1,1,3,4,7,1,9,9,0,1,1,5,4.067620000000003,4.03471818181818,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,6,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3680577,N#CCc1ccc(Nc2cccc(CNc3ncnc4c(C(N)=O)cccc34)c2)nc1,9.0,0.40724094539422295,-0.11420303880864276,0.40724094539422295,0.01632141161153866,0.013724896915500091,13.208161290322574,12.590354838709683,13.198874458967758,152,0,0.2504173870626155,-0.3655307152432796,0.3655307152432796,0.2504173870626155,0.03850156087408949,0.06763787721123829,0.09573361082206036,2.0244162159672303,69.56060180841742,1.2292736553583095,1.0980239825472118,0.48512075674076033,0.7402294502811224,0.5621374225881133,0.26249695865263484,0.1740002240776876,0.1740002240776876,0.11163585020333264,0.11163585020333264,0.07092892349495188,0.07092892349495188,-0.14548387096774193,3.0271344320617635,0.2361323923632205,0.28648299099098473,4.567793050079144,6.621495204569975,0.5270756026549362,0.6228985750260163,0.18217317139718717,0.0,5.907179729351506,0.0,0.15466248980876846,14.951935562841626,5.261891554738487,0.0,0.7796669300210702,1.3335160168293698,0.8543510482780485,1.2894000354025021,1.000105930320578,1.101071499735038,5.261891554738487,0.4823205020271492,5.719716975726273,0.4151543414724298,10.619626706576751,83.54838976884163,0.0,6.069221312792274,0.5270756026549362,17.323111830353618,0.0,0.0,0.6728746868449397,0.4151543414724298,11.33111286753076,1.3563312903779396,66.85803529375065,5.6473683133128025,10.902924932081056,0.0,4.1809677419354845,4.3958421878064335,0.15466248980876846,0.0,10.619626706576751,0.0,0.0,6.069221312792274,0.0,0.0,14.951935562841626,1.015181877761438,5.02833914109778,0.0,0.7573794177249101,0.2615903955079016,-0.17465374748010667,-0.1154952641614217,-0.2747510608070456,-0.16390476780455981,-0.11420303880864276,0.0,0.08695652173913043,31,4,8,0,0,0,2,2,4,7,3,8,7,0,0,0,4,3.5454800000000004,3.827783870967742,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,4,2,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2170589,O=C(O)c1cccc(Nc2ncc(F)c(Nc3ccccc3Cl)n2)c1,8.346787486224656,0.5927543093096844,-0.06244513405198833,0.5927543093096844,0.043153617533127075,0.024962798021680995,14.350399999999995,13.866560000000003,14.322531260960012,126,0,0.33525673710140996,-0.47763832599459877,0.47763832599459877,0.33525673710140996,0.0512,0.0848,0.1184,2.2620619561243553,57.369600909352,1.1236390183265015,0.9544511963578405,0.5046883541985787,0.6865834134197584,0.48510970507746803,0.268121264739286,0.1668103735679751,0.1819289524883442,0.10101079626219477,0.11195070274129337,0.06029425251309719,0.06576420575264649,-0.1276,2.858011335280669,0.29461250399947414,0.2857660824128013,4.017530806662382,6.557461639271843,0.6291373959073586,0.0,0.578350711021493,0.23793357123945977,1.4311996572326342,5.969305287951849,0.0,14.16893075269385,4.9839785209472085,0.0,1.189127840528896,1.208483741532659,0.22749545098734247,1.3913277318587454,1.1781708634016892,1.6284487914549206,1.4311996572326342,0.39871828167577666,0.0,0.0,10.619626706576751,70.91555051860533,0.0,0.0,0.42478506826307005,27.531389655863467,0.0,11.600939890232516,0.8418428208381391,0.0,5.817220841045895,0.9077926272520318,54.51224487212112,7.846317470397728,1.4311996572326342,0.0,3.4856,4.001033216589835,0.36739808926986567,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,15.07676523300163,1.1277060283861409,4.352346959294808,0.23862063604448344,0.7558904748847556,0.1266346531318199,-0.10268877251314908,-0.20646723581401683,-0.2781707832238801,-0.048388154027042926,0.0,0.0,0.0,25,3,6,0,0,0,2,1,3,6,3,8,5,0,0,0,3,4.454500000000001,3.7363480000000004,0,0,0,0,1,2,0,0,1,1,1,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3680563,COc1cnc(C(=O)Nc2cccc([C@@H](C)Nc3ncnc4c(C(N)=O)cccc34)c2)cn1,9.292429823902063,0.4059190115978771,-0.11947955606049669,0.4059190115978771,0.38586494430239293,0.011976659730220723,13.438393939393935,12.796939393939402,13.429411743393958,166,0,0.2753624565448749,-0.47989532638530047,0.47989532638530047,0.2753624565448749,0.03673094582185491,0.06427915518824609,0.08999081726354453,2.0486580307841815,67.71277921171742,1.25195727567558,1.1168254557542818,0.4804618193906453,0.7452346236664148,0.5685527070811299,0.2567692409599229,0.1736357862300371,0.1736357862300371,0.1124058442621391,0.1124058442621391,0.07001110804802503,0.07001110804802503,-0.13939393939393938,3.0483262017245227,0.23531139140369373,0.280758407886821,4.689011023989644,6.622526366225147,0.6386729283667598,0.5813915467521193,0.171132373130691,0.17818146474046578,11.814359458703011,0.0,0.290578011155868,19.935914083788834,0.0,0.0,0.549310791605754,1.1086369224135106,0.4601783684139096,1.6455045087390274,1.3114000330348559,1.0370464679788685,0.0,0.6041186085996616,5.719716975726273,0.38999347229228254,17.65757916545934,77.76692406748127,0.0,5.879988336435371,0.6386729283667598,11.50524905251859,5.879988336435371,0.0,1.1754007879204373,0.0,0.0,1.8964419814219762,60.94609308923881,5.6473683133128025,10.902924932081056,0.0,4.394242424242424,4.509294340023088,0.33211614922163224,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,24.67277703758888,0.8357425821829186,5.288904467241204,0.0,1.214312815934931,-0.05211189437598184,-0.19582822803524905,-0.1713975471605915,-0.3823973915946941,-0.10478253509841616,-0.11947955606049669,-0.09590699953757553,0.13043478260869565,33,4,10,0,0,0,2,2,4,8,3,10,9,0,0,0,4,2.9527,3.7294787878787883,0,0,0,0,0,4,0,0,0,0,2,2,0,0,0,4,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3675441,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4ccc(F)cc4F)c3)ncnc12,9.795880017344077,0.46183946267288845,-0.11359893143824112,0.46183946267288845,0.2934389937997448,0.013363179705051284,13.544312499999993,13.008812500000003,13.535469725750016,160,0,0.25813750015280496,-0.3655307152432796,0.3655307152432796,0.25813750015280496,0.0341796875,0.060546875,0.0869140625,2.009839051416725,65.3459326562842,1.1671240716285545,1.0096404220139366,0.4783904220139366,0.7035416212181659,0.5183602601632105,0.2593335607257157,0.17712834342034622,0.17712834342034622,0.11414488355691675,0.11414488355691675,0.07215094685318589,0.07215094685318589,-0.13749999999999998,3.0285400614569005,0.26934472318339103,0.273868366546683,4.36131705779019,6.405369795950562,0.5106044900719695,0.785201085314477,0.17648025979102508,0.0,11.814359458703011,0.0,0.29965857400448886,18.748787137244054,0.0,0.0,0.5664767538434339,1.3068113668023988,0.7379027775352374,1.0341470742204029,1.3074104377193425,1.069454170103208,0.0,0.31149865755920053,5.719716975726273,0.20302686513487328,10.619626706576751,95.05235494778195,0.0,0.0,0.5106044900719695,20.28607914786823,0.0,0.0,0.6806973906436696,0.20302686513487328,11.63444168209179,1.3781028147952348,66.72755879059918,5.6473683133128025,10.902924932081056,0.0,3.4375,4.587539950137975,0.5740595144841651,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,0.7333509232351768,5.190184536700144,0.0,1.0289133920918165,-0.05061342602892204,-0.2036647628709237,-0.26445103064716025,-0.3993042048974005,-0.033819739575979856,-0.11359893143824112,0.0,0.043478260869565216,32,4,7,0,0,0,3,1,4,5,3,9,6,0,0,0,4,3.8713000000000015,3.6292437500000005,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3959866,CC1(C)CN(c2ccc(-c3oc(-c4ccc(Cl)c5[nH]ccc45)nc3C(N)=O)cc2)CCN1,7.4680104485874494,0.4107746897634787,-0.13494567295184873,0.4107746897634787,0.334187493829605,0.013362707553128805,14.060687499999993,13.304687500000007,14.036307896500023,164,0,0.27086667861245634,-0.43520771368413064,0.43520771368413064,0.27086667861245634,0.04296875,0.0693359375,0.09375,1.9164639203894709,71.48455397294852,1.3473724838920274,1.2322040322323984,0.505826811795475,0.7876228375694627,0.6351961572406258,0.27860584758466955,0.19467931755607112,0.20649070733760946,0.12830166646001484,0.13684846839681064,0.08600509568517954,0.09175492037626973,-0.10281249999999999,3.5686206479508957,0.2142086337191161,0.24024098643037362,3.6331880396521936,7.0020328371054745,0.7913623208483664,0.04412006494775627,0.4903031765221096,0.18408512256330964,5.907179729351506,0.0,0.14982928700224443,4.9839785209472085,0.0,0.0,0.3625293715697661,1.7500223496323257,2.0115306699390647,0.8433886470437569,1.3210696111825744,1.065575963323395,0.0,0.4772123482645262,5.719716975726273,0.6013346714679595,24.39048878379831,59.18638747304761,0.0,22.77787432429434,0.4977950018707852,5.687386274683562,0.0,11.600939890232516,1.2780520570580982,0.0,0.0,1.6127318917786275,52.88697710151117,10.670001627054129,33.6807992563754,0.0,3.130625,4.97264004166393,0.14982928700224443,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,4.9839785209472085,1.5337696957500964,6.4256945626696105,0.19281909370142195,0.5247388486569644,-0.06077565451777667,-0.307057005779075,-0.1171491685638126,-0.25841209953245053,-0.02499274580498801,-0.6526436086076711,0.0,0.25,32,4,7,0,1,1,2,2,4,5,3,8,6,0,1,1,5,4.430400000000003,3.9704468750000013,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,2,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3680573,Cc1ccc(C(=O)Nc2cccc(C(C)Nc3ncnc4c(C(N)=O)cc(Cl)cc34)c2)cn1,9.065501548756432,0.410293059300107,-0.11950062557307006,0.410293059300107,0.3795003518817901,0.011778128599719447,13.967424242424238,13.325969696969704,13.943680351272747,166,0,0.256724801952046,-0.36552995273658884,0.36552995273658884,0.256724801952046,0.03764921946740129,0.06519742883379247,0.08999081726354453,2.0959781954230445,68.74494606545319,1.2569008122457779,1.1175073523314152,0.5040506537259137,0.7438526178623616,0.5710836267944872,0.2707536295523477,0.1791861135551943,0.19063958243426177,0.11446095431834355,0.12018768875787729,0.0727202601344834,0.07844699457401713,-0.1224242424242424,3.053520857138854,0.24460368694566997,0.2792587736088747,4.908216659074495,6.803437669753277,0.4951316267364553,0.40884827418095376,0.171132373130691,0.0,11.814359458703011,0.0,0.44160766330578344,9.967957041894417,0.0,0.0,0.717750827441185,1.6824772112808521,1.0965944953204314,1.102093385789761,1.1678587314045512,1.3885901010162174,0.0,0.4530889564497462,5.719716975726273,0.597626566755788,10.619626706576751,88.22253236976813,0.0,0.0,0.4951316267364553,11.50524905251859,0.0,11.600939890232516,0.8110998491377163,0.0,6.851892117295679,2.0650314205643086,60.815616586087344,10.670001627054129,10.902924932081056,0.0,3.723939393939394,4.642311298334135,0.33211614922163224,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,14.951935562841626,1.187286215220268,5.20352985203886,0.18461790897270222,1.1183589599448989,-0.07767328158123124,-0.22627884719292854,-0.14013602418323715,-0.4168218794145947,-0.07219488130213611,-0.2139741978547235,0.0,0.125,33,4,8,0,0,0,2,2,4,6,3,9,8,0,0,0,4,4.510920000000001,3.893115151515152,0,0,0,0,0,3,0,0,0,0,2,2,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,2,0,2,1,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3422071,CN1CCC(Oc2ccc(-c3n[nH]c4ccc(C(=O)NC(c5ccccn5)C5CCCC5)cc34)cc2)CC1,5.0,0.3893338444833588,-0.12118394064810972,0.3893338444833588,0.054883189019763634,0.008710998254721894,13.411947368421044,12.483526315789483,13.402080930526342,196,0,0.2513468237353057,-0.4903407016778149,0.4903407016778149,0.2513468237353057,0.03254847645429363,0.05401662049861496,0.07479224376731301,1.640250378678227,77.76437646352566,1.4953427964666162,1.409278014695461,0.4882253831165137,0.8531861653826689,0.7294542317485664,0.27170614777488433,0.18563992919705635,0.18563992919705635,0.12309999458818287,0.12309999458818287,0.07995402765583112,0.07995402765583112,-0.0976315789473684,3.617518227671472,0.18119689950755305,0.28827288285102487,5.292155013637092,7.169778819696898,0.393331211524708,0.3113034173745762,0.0743074778067474,0.0,5.907179729351506,0.0,0.3913216384895293,0.0,5.098681808301038,0.0,0.49442811869268566,2.440611909471908,1.6603924447555236,1.0721660633125185,1.5155293854775154,0.44237117530085696,0.0,0.66800236765711,5.893957685363079,1.3246173658756817,19.969546268914137,77.85446177399317,0.0,17.00689131982936,0.26438621860759015,0.0,5.749511833283905,0.0,1.369237385339406,0.0,5.893957685363079,2.77743133948843,66.5970822874477,2.8236841566564013,22.160304418626517,0.0,2.187894736842105,5.212635386761768,0.19831721832663848,0.0,5.091706557583081,0.0,0.0,0.0,0.0,0.0,10.082660329248245,1.3172121671508765,7.9852262363186215,0.0,0.45809324981720306,0.04170342029091776,-0.17653417772428398,-0.22615777303468287,-0.5012434900374269,-0.8314438150541035,-0.3242050540850157,0.0,0.3870967741935484,38,2,7,1,1,2,2,2,4,5,2,7,8,1,1,2,6,5.759200000000005,3.9231289473684146,0,0,0,0,0,3,1,0,0,0,1,1,0,0,0,3,2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL385744,c1cc(N2CCOCC2)ccc1Nc1ncc2ccn(C3CCCCC3)c2n1,7.309803919971486,0.32543652649908494,-0.1478097860913099,0.32543652649908494,0.11578281259405676,0.025877331356255952,13.481857142857129,12.509857142857147,13.472198588714315,146,0,0.22868192826515993,-0.3777778199763259,0.3777778199763259,0.22868192826515993,0.04081632653061224,0.06887755102040817,0.09693877551020409,1.8084254466185101,72.95641953836802,1.52791337076443,1.4515827238558447,0.4872970095701305,0.8687474107265517,0.7513836949629847,0.2711260665522719,0.18050205693652419,0.18050205693652419,0.12011090167752922,0.12011090167752922,0.07779115555531853,0.07779115555531853,-0.09285714285714286,3.2814690187387128,0.16978414422959462,0.27839589522009184,3.5635930993456277,7.252923206564068,0.6969173459189378,0.20168490074170456,0.05042293136886431,0.21244068860666052,0.0,0.0,0.0,4.9839785209472085,4.9839785209472085,0.0,0.6828133822852906,1.5342122621776866,2.2080708780051856,1.2517895494484321,1.4924438390197852,1.0127326166280766,0.0,0.5191091674887776,0.0,1.352947034821305,36.32141293860332,42.557883959946,0.0,0.0,0.36463296729067335,17.323111830353618,0.0,0.0,1.451669519433937,0.16917367692143032,0.0,2.625794265550796,42.557883959946,1.4118420783282006,11.033401435232523,0.0,1.9717857142857143,4.81816443053547,0.0,0.0,14.77682273193021,0.0,0.0,0.0,0.0,0.0,14.704819995694464,1.3232701620983545,8.219000810656487,0.0,0.25452958611112336,-0.03583375412676073,-0.13122606568769782,-0.043274436124758585,-0.3802916679649397,-0.8177824462000896,-0.529407740949079,0.0,0.45454545454545453,28,1,6,1,1,2,1,2,3,6,1,6,4,1,1,2,5,4.516700000000004,4.014525000000002,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2063321,CN1CCN(c2ccc(C(=O)Nc3cc(-c4ccc(CNC(=O)Oc5ccccc5)cc4)n[nH]3)cc2)CC1,6.0,0.3644583719420202,-0.10640312054466704,0.3644583719420202,0.17577393905628247,0.008981744667805875,13.436789473684204,12.641000000000007,13.427314179473706,194,0,0.4123702412416933,-0.4103523682049475,0.4123702412416933,0.4103523682049475,0.02908587257617729,0.04847645429362881,0.06717451523545707,1.5804342584687283,70.91237441683563,1.3836847657811218,1.2738954327471406,0.48442174853661407,0.8058782689111064,0.6524057615901933,0.26183626720861775,0.17240818105393602,0.17240818105393602,0.10700243724406518,0.10700243724406518,0.06443542846651384,0.06443542846651384,-0.12184210526315786,3.5023004327225236,0.20273321805413433,0.3056490092498308,6.374865229642326,6.928761039701709,0.66200813479152,0.3044045950294456,0.1114612167101211,0.0,5.907179729351506,6.093240070938415,0.2601643089909185,4.794537184071822,5.098681808301038,0.0,1.1130771303590279,1.2840471220515528,1.7088504284345298,0.8712920820592857,1.4624195940401126,0.618570232968645,0.0,0.5368450381584993,0.0,0.17096999169252486,43.17298872168488,95.72076489068016,0.0,17.00689131982936,0.5330631418744021,16.29978623659041,5.749511833283905,0.0,1.5803679877518562,0.17096999169252486,0.0,1.3929452943174159,84.59386190728614,4.235526234984602,11.257379486545457,0.0,2.6997368421052634,5.160865698775204,0.2523440623195696,0.0,5.091706557583081,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.2100755317205425,6.648730947460427,0.0,0.6729963122082065,0.06028194097519888,-0.1671136111695477,-0.11466291648549451,-0.46601148384481195,-0.05450240531863834,-0.6235784329481463,0.0,0.20689655172413793,38,3,9,0,1,1,3,1,4,6,3,9,8,0,1,1,5,4.369400000000002,3.8798578947368365,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,2,0,2,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL253116,CC(CO)NC(=N)c1c(O)nsc1Nc1ccc(Nc2ccccc2)cc1,6.576754126063192,0.3223038053912439,-0.1430228650733688,0.3223038053912439,0.0942192430444111,0.010160213086757375,14.202851851851845,13.418851851851858,14.190429478222244,140,0,0.29488764807399404,-0.49208574704919367,0.49208574704919367,0.29488764807399404,0.04938271604938271,0.07681755829903977,0.10150891632373114,2.2935242342398516,63.34301447532369,1.3705625563161348,1.2578078832922732,0.5102707196229298,0.8144967380572355,0.6273759987577127,0.2817480616912836,0.16475502120899452,0.19260119538444248,0.10011504922240705,0.12698385567591838,0.06086811310677347,0.08541119219680447,-0.11481481481481479,3.446860772700637,0.21103739433943433,0.3156247494458714,4.747912246476902,7.068141253063988,0.9684094978547982,0.6074130834867456,0.20916178938195565,0.2707847405062224,1.4311996572326342,0.0,0.20008549463235428,0.0,4.3735399814164495,0.0,0.6713798564070328,2.0236626286978563,1.0071232207744811,0.852151404331812,1.3491245569659456,1.4604202665949073,8.264707669538835,0.3586427161001787,0.0,0.4766586883572342,17.17861194949304,59.94521986066665,0.0,5.879988336435371,0.5899792614764862,22.06324080073855,5.879988336435371,11.532486611566675,1.3283723398192349,0.0,5.402308355073566,1.2213600722794804,54.38176836896965,5.6473683133128025,0.0,0.0,4.195925925925926,4.387505628349921,0.0,0.0,22.152113318143428,0.0,0.0,0.0,0.0,0.0,19.99346471870444,1.076709110012273,6.362178751592936,0.007440410575410845,0.0,0.37254351530034036,-0.13174555371313984,-0.08189860550135054,-0.4603241854322398,0.0,-0.2811572957849192,0.0,0.15789473684210525,27,6,7,0,0,0,2,1,3,7,6,8,10,0,0,0,3,3.6316700000000015,4.064459259259259,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3675350,NC(=O)c1cccc2c(NCc3ccccc3Cl)ncnc12,6.130768280269022,0.562650688004407,-0.1440967659159624,0.562650688004407,0.050276832955404416,0.03525942723068532,14.216363636363626,13.620727272727272,14.185354032545472,110,0,0.2504173870626155,-0.3655307152432796,0.3655307152432796,0.2504173870626155,0.06198347107438016,0.1012396694214876,0.14049586776859505,2.4325975918476255,62.34527146535547,1.2149621881180335,1.07159396115786,0.5150452768859718,0.7295104665383433,0.5477270342039215,0.2766508381361648,0.1744800905415006,0.19166029386010178,0.11450580183781077,0.1273909543267617,0.07137753404092835,0.07759338999496165,-0.1209090909090909,2.782177643073275,0.2507447622695737,0.27229751871470925,2.7090202596191584,6.824212257019325,0.501342287682484,0.6132724112714306,0.19252391977202735,0.0,5.907179729351506,0.0,0.21793350836690098,9.967957041894417,0.0,0.0,1.6259370327675315,1.0768503461221308,0.7684416914782758,1.0644081461293289,1.0335294991253918,1.5558594240681864,0.0,0.4530889564497462,5.719716975726273,0.29531180383254296,5.309813353288376,64.7498389647446,0.0,0.0,0.501342287682484,5.817862777835028,0.0,11.600939890232516,0.7215971259657238,0.29531180383254296,0.0,1.3467738967803642,48.60030266760929,9.258159548725928,10.902924932081056,0.0,3.6772727272727277,4.527017412002473,0.21793350836690098,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.3429114403145144,4.687619456867783,0.2729964622689626,0.8935473907625678,-0.06472701765520371,-0.12506640027186108,-0.10480432368985106,-0.2668451890602825,-0.04130038098292065,-0.1440967659159624,0.0,0.0625,22,3,5,0,0,0,2,1,3,4,2,6,4,0,0,0,3,2.994200000000001,3.947027272727274,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2063319,CN1CCN(c2ccc(C(=O)Nc3cc(-c4ccc(NC(=O)OCc5ccccc5)cc4)n[nH]3)cc2)CC1,6.0,0.36416370095974737,-0.10632999205298341,0.36416370095974737,0.16642307030989612,0.00866315746147901,13.436789473684206,12.641000000000009,13.427314179473706,194,0,0.4114521916328755,-0.4444389274573398,0.4444389274573398,0.4114521916328755,0.028393351800554016,0.04778393351800554,0.06648199445983378,1.5663611585283181,70.91237441683563,1.3836847657811218,1.2738954327471406,0.48442174853661407,0.8056141451971047,0.6524057615901933,0.26183626720861775,0.17266453174496296,0.17266453174496296,0.10713061258957865,0.10713061258957865,0.06448775583219933,0.06448775583219933,-0.12184210526315786,3.4883211753599905,0.20273321805413433,0.3056490092498308,6.374865229642326,6.928761039701709,0.5222762044418259,0.3257065268618768,0.1114612167101211,0.0,5.907179729351506,6.093240070938415,0.3998962393406126,4.794537184071822,5.098681808301038,0.0,1.1130771303590279,1.2840471220515528,1.6875484966020984,0.8712920820592857,1.4624195940401126,0.7682382928287388,0.0,0.39711310780880515,0.0,0.17260487481358655,48.48280207497325,95.72076489068016,0.0,11.257379486545457,0.4084088536165061,21.98717251127397,0.0,0.0,1.5803679877518562,0.2972591630714826,0.0,1.3929452943174159,84.59386190728614,4.235526234984602,11.257379486545457,0.0,2.6997368421052634,5.160865698775204,0.2523440623195696,0.0,5.091706557583081,0.0,0.0,0.0,0.0,0.0,9.835544762101087,1.0854212434626462,6.6341869652336936,0.0,0.6757012942270882,0.06586907225242351,-0.19412610147265968,-0.0841877186409601,-0.46590703686099333,-0.055308829842080076,-0.6200872940193211,0.0,0.20689655172413793,38,3,9,0,1,1,3,1,4,6,3,9,8,0,1,1,5,4.829500000000003,3.9046999999999943,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,2,0,3,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2386800,O=C(NCc1ccc(-c2cc(NC(=O)c3ccc(OCCN4CCOCC4)cc3)[nH]n2)cc1)Nc1ccc(Cl)cc1,6.0,0.33651009788214764,-0.10619825822253835,0.33651009788214764,0.1849169694543078,0.005149919550793137,14.026073170731742,13.263926829268298,14.005110515902462,212,0,0.3190025938545345,-0.49226397289825863,0.49226397289825863,0.3190025938545345,0.026769779892920884,0.044616299821534804,0.062462819750148724,1.5320131604343092,69.23879902302555,1.3606616556309554,1.2364448587284007,0.49878458911909473,0.7892468154456425,0.6307867381742879,0.26710649649159024,0.1665853140746279,0.17580395975777977,0.10096806026711255,0.10557738310868846,0.05977243640636401,0.06207709782715196,-0.10682926829268292,3.5438772553418096,0.22092948497824216,0.33659078074217236,8.306561702667764,6.983603139640522,0.6195894138406153,0.4421063379032981,0.13774069056860494,0.0,5.907179729351506,6.031114512338072,0.36063788957330195,4.794537184071822,5.098681808301038,0.0,0.8724540175825779,1.3147024671464231,1.5144227159455437,1.1609226380550168,1.5053816976988423,0.8547434923034312,0.0,0.4975636939029993,0.0,0.1584599923003889,49.787161488273455,94.70097949675818,0.0,17.00689131982936,0.5040561710650042,16.29978623659041,5.749511833283905,11.600939890232516,1.6145396858566068,0.2739932350759999,0.0,1.2910224679039464,78.55144319962284,10.670001627054129,11.257379486545457,0.0,2.941707317073171,4.918174594329854,0.23387986263764984,0.0,5.091706557583081,0.0,0.0,0.0,0.0,0.0,9.835544762101087,1.4389183457058867,6.463004979777274,0.14020142613654551,0.6383799608836767,0.02747723011939419,-0.14591166114327367,-0.11680366193919169,-0.45757720864816687,0.0,-0.6903699811754174,0.0,0.23333333333333334,41,4,10,0,1,1,3,1,4,6,4,11,10,0,1,1,5,5.015100000000005,3.865446341463406,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,2,4,0,0,0,0,1,0,0,0,0,0,3,0,2,0,0,0,0,3,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL2064533,N#Cc1ccccc1-c1ccc(CSc2nnc(-c3ccc4c(c3)OCO4)o2)cc1,4.0,0.3202297449179596,-0.09413838849019524,0.3202297449179596,0.14761851621068733,0.013695879031973085,13.781933333333331,13.27793333333334,13.769447078000011,146,0,0.2766866667480944,-0.45359502028952303,0.45359502028952303,0.2766866667480944,0.03444444444444445,0.06111111111111111,0.09000000000000001,1.5808745995640994,65.48578295739112,1.1165584284032783,0.9824877982785108,0.5097043509761018,0.6946649346341548,0.5167937851701797,0.29401033786777053,0.17949184897762957,0.20474148707648235,0.11894265886368409,0.1404689800478462,0.07505052461595128,0.09150669626290006,-0.1253333333333333,3.549453321390359,0.27225513806836416,0.2644003077289076,3.607737549139432,6.590369913002971,0.4630292281551148,0.09138390374468135,0.38330078888559366,0.4211923168843035,5.222755905846688,0.0,0.0,0.0,5.261891554738487,10.197363616602075,1.8019605301011394,1.3620009768581387,0.46699751630625314,0.8903672307453896,1.148408506240225,0.3920628316463705,5.261891554738487,0.33991212055340253,0.0,0.36425709303322823,6.745045584503197,77.59350876769025,0.0,40.14932337647698,0.3157908635866699,0.0,11.49902366656781,11.761884949391115,0.5647469733701757,0.19016522950500528,11.33111286753076,1.0562760441982428,76.10651262719628,0.0,22.581078397116894,0.0,2.7056666666666667,4.311545640229167,0.17539638515794956,0.0,11.761884949391115,0.0,0.0,0.0,6.069221312792274,0.0,10.197363616602075,1.148408506240225,4.608405232910729,0.004920617207022911,0.0,0.5467093507856461,-0.19702828927413563,-0.05086215616136939,-0.23318495365604566,0.0,-0.09007091292296003,0.0,0.08695652173913043,30,0,6,0,1,1,3,1,4,7,0,7,5,0,0,0,5,5.296280000000003,3.7337,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL3901797,O=C(O)/C=C\C(=O)Nc1cccc(-c2n[nH]c3ccc(NC(=O)Nc4ccccc4)cc23)c1,6.585026652029183,0.4037998083514466,-0.05570871735494415,0.4037998083514466,0.14914171099083462,0.008533998076466584,13.377181818181814,12.796818181818189,13.367991032969714,164,0,0.3280008965482678,-0.47807151112888013,0.47807151112888013,0.3280008965482678,0.02938475665748393,0.05234159779614325,0.07713498622589532,1.9966525303392697,68.19217669354954,1.1993945787782614,1.0566382163440984,0.4808806405865225,0.7289759789563725,0.5379531404664016,0.2592530594826533,0.17132207315708076,0.17132207315708076,0.10610483140871602,0.10610483140871602,0.06893177081233176,0.06893177081233176,-0.14909090909090905,3.453720015076884,0.24880084052562088,0.28725442174752297,5.416112970873076,6.506101468695302,0.6375226742718891,0.17254327257116547,0.171132373130691,0.17900544634398502,1.4311996572326342,12.000419800289922,0.29958314368651223,9.589074368143644,5.098681808301038,0.0,0.9155179860095901,1.2817251804134262,1.215635697644958,0.7487066819393738,1.343345692212684,1.390081311690096,1.4311996572326342,0.3087996474510339,0.0,0.0,15.929440059865126,84.6131679840307,0.0,11.257379486545457,0.48271030484439775,21.85669600812251,0.0,0.0,1.0062665480797806,0.290578011155868,0.0,0.5815339329206993,84.6131679840307,5.6473683133128025,23.591504075859152,0.0,4.127575757575757,4.295249416859071,0.435867016733802,0.0,21.02114661744821,0.0,0.0,0.0,0.0,0.0,10.20748999940825,0.7960359926341973,4.655133955070379,0.0,1.1404841708131404,0.174587586326242,-0.1714784059786661,-0.10951667521567533,-0.5225439643487534,0.0,0.0,0.0,0.0,33,5,9,0,0,0,3,1,4,5,5,9,6,0,0,0,4,4.453200000000002,3.8187454545454544,1,0,0,0,0,2,1,0,1,1,3,2,0,0,0,1,4,0,0,0,0,1,0,0,0,0,0,3,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL1086582,Cc1cc(CN2CCN(c3c(Cl)cnc4[nH]c(N5CCN(C)CC5)nc34)CC2)no1,8.0,0.2969477011100839,-0.13990356056680536,0.2969477011100839,0.1605144843208861,0.022420548016228344,14.364799999999992,13.457600000000008,14.339987838800027,160,0,0.20473081942390012,-0.365849902986847,0.365849902986847,0.20473081942390012,0.042222222222222223,0.0688888888888889,0.09333333333333332,1.8196046515498423,68.84448550989296,1.4803776964466986,1.378797384249092,0.5039950157830403,0.8352108589337591,0.7090474440107054,0.2734058065943477,0.18050642434820838,0.19310524011518257,0.11725230778377065,0.12603637342370433,0.07669042840916528,0.08389964207822719,-0.07866666666666668,3.5192212104287086,0.19015042556240683,0.2683687380291801,3.843607975566522,7.270717126225491,0.8066609133251343,0.3758982712163568,0.2353006433031976,0.19827797603288314,0.0,0.0,0.1633303243616826,9.967957041894417,0.0,0.0,0.5585867715785987,0.4609239672525975,2.8815430921743417,1.2094809451930106,1.3858219825242426,1.1466847794762187,0.0,0.9967147676983356,0.0,0.4449583933870541,68.75052383651075,28.692122645942288,0.0,0.0,0.3266606487233652,11.635725555670057,0.0,11.600939890232516,2.9617382468586624,0.21656198947719815,6.851892117295679,1.5697965958049551,16.738408855451404,6.434475392069527,11.16387793838399,0.0,2.6853333333333333,4.779694041327323,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,19.64771523599321,1.6217501476328822,7.7036388810155625,0.21115585951235427,0.16911196212158733,0.06548543181840089,-0.16849849277368306,-0.09098342928011373,-0.04461163968880957,-0.04052037233246363,-1.4594078300224635,0.0,0.55,30,1,9,0,2,2,0,3,3,8,1,10,6,0,2,2,5,1.98172,3.911290000000002,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,7,1,0,0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL560102,CNC(=O)c1nn(C)c2c1C(C)(C)Cc1cnc(Nc3cccc(OC4CCN(C)CC4)c3)nc1-2,5.800244822746524,0.3926854264298415,-0.12595938357288555,0.3926854264298415,0.2850031514607734,0.016698473150165396,13.588485714285705,12.638085714285722,13.579130665600028,184,0,0.27135670343803964,-0.4902606164845029,0.4902606164845029,0.27135670343803964,0.03918367346938775,0.06448979591836734,0.08653061224489796,1.9021980428830054,72.20080292871967,1.5205923420045562,1.427056907126498,0.48419976426935524,0.8552615100815527,0.7310655655770119,0.2626533601198715,0.19042078588894598,0.19042078588894598,0.12528320870004944,0.12528320870004944,0.08693476432008235,0.08693476432008235,-0.09885714285714284,3.523786599312212,0.17891366404524742,0.2559715528575226,4.477114418032603,7.198270607644595,0.5787542683207794,0.3379865674352541,0.2433603471858532,0.1699525508853284,5.907179729351506,0.0,0.2707525748347716,9.967957041894417,5.098681808301038,0.0,0.5641772269215616,1.4045108851625927,2.4194425359517275,0.5603544950490926,1.5671028438801466,0.5012258652863303,0.0,0.855947567699414,6.975826900282246,1.2662162124264646,32.255186522484756,47.16340101971039,0.0,17.137367822980828,0.4387568474393371,11.635725555670057,5.749511833283905,0.0,1.8165977840482566,0.5361069220288115,0.0,2.587386212595462,30.34257004146794,2.8236841566564013,11.387855989696922,0.0,2.777142857142857,4.865490420464472,0.13698677668776635,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.066638850195453,1.4301160671923803,8.007430176196605,0.0,0.5810394640443851,0.06651045440577744,-0.3841161604940595,-0.1526239602977217,-0.170895787583242,-0.5375237471148354,-0.8145823439188163,0.0,0.46153846153846156,35,2,9,1,1,2,1,2,3,8,2,9,10,0,1,1,5,3.2870000000000026,3.863597142857141,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,5,2,0,0,0,1,0,0,0,0,0,0,1,0,2,1,0,0,0,1,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3109947,Cn1cc(-c2cc3cnc(Nc4ccc(-c5cnccn5)cc4Cl)cc3n2C(=O)OC(C)(C)C)cn1,4.0,0.3992784284770823,-0.12204166322294155,0.3992784284770823,0.002478785852928489,0.008847733208300759,13.943833333333329,13.27183333333334,13.921333352444464,182,0,0.4190134596400247,-0.44317773126566273,0.44317773126566273,0.4190134596400247,0.031635802469135804,0.05632716049382716,0.0787037037037037,1.912490646473032,70.72545017330798,1.2747761212912154,1.1479154506232403,0.5022468102348643,0.7541490807782673,0.5924739843388909,0.27110595315859276,0.18601165608712808,0.19651066922627328,0.11691641437494343,0.12451357165209526,0.07914086204275782,0.08425181732372684,-0.11777777777777779,3.562275030580033,0.23373808287839243,0.2523613286158446,4.7801973877995385,6.835134906653334,0.2790743418635674,0.3171920441338532,0.039217835509116686,0.0,0.0,6.093240070938415,0.4069377771399889,14.345615352810384,5.098681808301038,0.0,0.4900932943859948,1.0745259020799145,1.9631126756418338,1.5288530787566679,1.1797413613365317,1.1139542762714048,0.0,0.8138755542799778,6.975826900282246,0.7265757545241869,5.309813353288376,72.27209811694635,0.0,22.514758973090913,0.14749481536912154,16.29978623659041,0.0,11.600939890232516,1.1387169676667028,0.32535249594673044,0.0,1.4467534206611705,67.24946480320503,6.434475392069527,33.41768390517197,0.0,2.7708333333333335,4.3450229224646755,0.1331815884464395,0.0,14.558715936224914,0.0,0.0,0.0,0.0,0.0,20.050617371142664,1.3688081031743295,5.585947088755692,0.17839173887819942,0.7035509000831092,0.04533368073786664,-0.2773726436460807,-0.03151662318191826,-0.14856745173363387,-0.22848609493176428,-0.44224973076394036,0.0,0.19230769230769232,36,1,9,0,0,0,1,4,5,9,1,10,5,0,0,0,5,6.074000000000003,3.8702138888888857,0,0,0,0,0,6,0,0,0,0,1,1,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3322565,COc1ccc(NC(=O)CC(=O)Nc2ccc3c(c2)NC(=O)/C3=C\c2[nH]c(C)c(C(=O)O)c2C)cc1,6.692503962086787,0.376291982649611,-0.11534999305064411,0.376291982649611,0.2516334706053831,0.007006174913274561,13.569444444444441,12.897444444444453,13.560266235777796,184,0,0.33730426566996025,-0.4967658883917624,0.4967658883917624,0.33730426566996025,0.03395061728395062,0.05478395061728395,0.07407407407407407,1.9222139296408203,66.36702671341997,1.2895922378139824,1.1455095590217503,0.47884289235508365,0.7528554147626153,0.5809673908635291,0.25604787218398206,0.17914858260801284,0.17914858260801284,0.11619312107665086,0.11619312107665086,0.07521220387597714,0.07521220387597714,-0.13499999999999998,3.6007401832240085,0.23246230969952725,0.2718306319049981,4.969737787557153,6.6652883787417245,0.854225402083379,0.3367343537392579,0.15687134203646674,0.3281766516306392,7.33837938658414,5.969305287951849,0.3995447653393185,4.794537184071822,0.0,0.0,0.1678449641017582,1.710383881063991,1.0914485688923006,1.081673302033468,1.6865444656039326,1.4549494326711634,1.4311996572326342,0.13825009083970144,0.0,0.5576863648866871,22.967392518747715,70.37514141843096,0.0,5.749511833283905,0.5740639726018105,17.062158824050687,5.749511833283905,0.0,1.1337391221173727,0.3995447653393185,13.703784234591359,1.8136134754839819,42.29693095364306,5.6473683133128025,13.056375933337469,0.0,4.156111111111111,4.6176978091460255,0.532726353785758,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,9.84567114490726,0.9200827927161003,5.457624195923009,0.0,1.4611221435664465,0.06181568095792367,-0.32633494817961767,-0.2631725900397096,-0.3007449858358935,-0.11534999305064411,-0.19812855783160216,-0.09164576032472865,0.15384615384615385,36,5,10,0,1,1,2,1,3,6,5,10,10,0,0,0,4,3.7983400000000014,3.75108611111111,0,0,0,0,1,1,1,0,1,1,4,3,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,3,0,3,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1964276,O=C(Nc1ccccc1)Nc1ccc(-c2nn(CC3CCCO3)cc2-c2ccnc3[nH]ccc23)cc1,5.207958689287918,0.3736581896911517,-0.11213241264351728,0.3736581896911517,0.1977558084949993,0.00784294066797265,13.293222222222218,12.56522222222223,13.283659002000022,180,0,0.32317843438896315,-0.3762919842804886,0.3762919842804886,0.32317843438896315,0.033179012345679014,0.05555555555555555,0.07716049382716049,1.6774769554693307,75.80222886939838,1.3113827114355427,1.20832717094243,0.48610494872020765,0.7829929608254654,0.6281579999290399,0.271445755859599,0.18379111825482608,0.18379111825482608,0.12226199182579342,0.12226199182579342,0.08205051255932871,0.08205051255932871,-0.12305555555555554,3.663178961479015,0.20932960243549126,0.26867028312066854,4.583081276754851,6.793955784973367,0.5648192480723904,0.315030700433783,0.11765350652735004,0.0,0.0,6.031114512338072,0.1300500815318107,9.77851570501903,5.098681808301038,0.0,0.8392248205087909,1.5156614872315424,1.6235723568685383,1.0728136188472255,1.2581770323547652,0.7899802360260478,0.0,0.5483740704061856,0.0,0.7034090976090193,17.17861194949304,84.98529141674052,0.0,22.384282469939446,0.2949896307382431,16.169309733438947,0.0,0.0,1.0669884532451954,0.31204785105877764,0.0,1.229813794293718,84.98529141674052,4.235526234984602,33.41768390517197,0.0,2.690555555555556,4.80556634704853,0.1712582150067234,0.0,14.968619558662812,0.0,0.0,0.0,0.0,0.0,10.082660329248245,1.0869188173480415,6.199297711303014,0.0,0.48383955804363576,0.06922228769903131,-0.19620019738257555,0.0,-0.39190558421188765,-0.41851024504912493,-0.21565093780950162,0.0,0.17857142857142858,36,3,8,0,1,1,2,3,5,5,3,8,6,0,1,1,6,5.916400000000004,3.911336111111107,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,3,3,0,0,0,0,1,0,0,0,0,0,2,0,2,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL3670460,COc1cc(C(N)=O)c2ncnc(NCc3cccc(C(F)(F)F)c3)c2c1,6.698970004336019,0.5055043726602672,-0.20269835554611357,0.5055043726602672,0.4326648715041572,0.026392777513258567,13.938444444444436,13.378444444444446,13.930174458518534,140,0,0.41592062626835913,-0.49671446803897107,0.49671446803897107,0.41592062626835913,0.053497942386831275,0.0850480109739369,0.11248285322359397,2.5126397313759306,59.811331665369565,1.2013435155475292,1.0273794215538976,0.47182386599834225,0.7016669089302316,0.5217113894799764,0.24979876775775883,0.17420463119625676,0.17420463119625676,0.11074031344600853,0.11074031344600853,0.07001893035957282,0.07001893035957282,-0.12444444444444441,2.820454833947462,0.27172472289389027,0.2629982966604925,3.9141031153556205,6.406643707220662,0.5839404919560999,0.7126483289353844,0.15687134203646672,0.0,5.907179729351506,6.176298517443475,0.17757545126191931,9.967957041894417,13.171245143024459,0.0,0.44758657093802184,1.1012269008277842,0.44011421847336074,1.4355518621394547,1.6069360811082811,0.838072868121022,0.0,0.3691835941442377,5.719716975726273,0.46937622969479337,12.347765812170964,59.24823843503698,0.0,5.749511833283905,0.5839404919560999,18.98910792085949,5.749511833283905,0.0,0.8486329344492041,0.46937622969479337,0.0,1.4049627530816837,42.557883959946,4.235526234984602,10.902924932081056,0.0,3.3381481481481483,4.383939211009079,0.6653993454480104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.704819995694464,0.7660973670010088,6.0336816009016605,0.0,0.7272903407922208,-0.05297113732895992,-0.2335895721335828,-0.15369240341539392,-0.3204540081775373,-0.24538484083410164,-0.1387578166554688,-0.12538142240809697,0.16666666666666666,27,3,6,0,0,0,2,1,3,5,2,9,6,0,0,0,3,3.3682000000000016,3.4584666666666672,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,1,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1172716,C[C@@H](O)CNc1ncnc2oc(-c3ccccc3)c(-c3ccccc3)c12,6.011887159731648,0.3294753025854217,-0.1469418184278845,0.3294753025854217,0.3581136096413875,0.021637395152904974,13.284692307692298,12.548076923076927,13.274912571076943,130,0,0.23207762074355387,-0.4368464279992275,0.4368464279992275,0.23207762074355387,0.04733727810650888,0.07544378698224852,0.10207100591715976,2.30638989150932,69.82424583559998,1.319157009205734,1.2176206679779846,0.48685143720875385,0.7907831389525638,0.6272875041599804,0.2674620470075257,0.18024166618224038,0.18024166618224038,0.12158187153694539,0.12158187153694539,0.0852601507769542,0.0852601507769542,-0.12230769230769226,3.326442538204194,0.2080214312935828,0.26833373781364517,3.0457426733664206,6.836114229302998,0.570606633901882,0.7404707871863814,0.05430161839723849,0.2747960116163978,0.0,0.0,0.0,9.967957041894417,0.0,0.0,2.3240071952551133,0.4775132157304875,0.8360014744700229,1.1263885950626014,1.3169498715916346,0.6506762937343666,1.4311996572326342,0.38338296314978526,0.0,0.4973811593940641,11.80667303760432,66.72755879059918,0.0,22.450601893965427,0.20422359051109137,5.817862777835028,0.0,0.0,1.1186477923653921,0.0,0.0,1.1597995220072852,71.14470972765253,1.4118420783282006,33.55032275322393,0.0,2.737692307692308,4.827865928854607,0.0,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,15.07676523300163,1.1755033895195353,6.1338039020309445,0.0,0.28449574093051266,0.11023987897781035,-0.11359608076373948,-0.07167220488029022,-0.33970919746651096,-0.18507224118323962,-0.289643643799334,0.0,0.14285714285714285,26,2,5,0,0,0,2,2,4,5,2,5,7,0,0,0,4,4.349500000000003,3.9556346153846156,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL517571,COc1ccc(/C=N/Nc2[nH]nc(C)c2C(=O)OCc2ccccc2)cc1,5.279840696594043,0.4935954316585542,-0.13159490410711736,0.4935954316585542,0.1483133267846477,0.014085578303873268,13.496481481481474,12.74981481481482,13.487168166666686,138,0,0.3437325796964025,-0.49676780893861777,0.49676780893861777,0.3437325796964025,0.053497942386831275,0.08367626886145405,0.1111111111111111,2.1893792964130876,64.42872384436977,1.3443734162721883,1.2227258982737563,0.4819851575330156,0.7866481589860924,0.6188694484503515,0.25240918211702124,0.16136240133407562,0.16136240133407562,0.0987294598874967,0.0987294598874967,0.057073721005055526,0.057073721005055526,-0.13370370370370366,3.290557700330228,0.2107920751632863,0.3208097412066568,4.724091002861701,6.843963725576561,0.35087873731852215,0.6619240210332292,0.32005729387005294,0.0,0.0,5.969305287951849,0.38927861866575963,4.794537184071822,10.200089334040761,0.0,1.1189664273450546,1.561054441901587,0.15230650624113556,1.462367074630421,1.5468741207182333,0.6658451957231066,0.0,0.3774217913290414,5.101407525739723,0.49669916148933213,12.456768605275018,76.76605083890911,0.0,5.749511833283905,0.37613626297009184,5.817862777835028,5.749511833283905,0.0,1.0884554937576132,0.41836474802653106,6.851892117295679,1.9204619875953806,59.483175894709376,2.8236841566564013,0.0,0.0,3.2814814814814817,4.479341213918944,0.17757545126191931,0.0,10.51052270397551,0.0,0.0,0.0,0.0,0.0,14.93695228784081,1.1938593007970522,6.147736528167704,0.0,0.4935954316585542,0.24273853546024848,-0.18227972902375467,-0.15533501152116658,-0.34525053603276773,-0.04671314756525782,-0.2557596064024982,-0.11786826721019814,0.15,27,2,7,0,0,0,2,1,3,6,2,7,9,0,0,0,3,3.529720000000003,3.8184037037037033,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL462354,O=C(Nc1cccc(C(F)(F)F)c1)Nc1cn(CCNc2ncnc3ccsc23)cn1,5.920818753952375,0.4357265403949041,-0.1752811597707678,0.4357265403949041,0.12736786194939143,0.012885148765750545,14.433741935483866,13.913483870967747,14.422868186838729,160,0,0.41598552440601233,-0.3669862679312475,0.41598552440601233,0.3669862679312475,0.04058272632674297,0.06867845993756504,0.09573361082206036,1.7698566960623379,62.469797582335886,1.1572720164044745,0.9864801667243586,0.4966897338510594,0.6899214589342091,0.5040342547728772,0.27741669975442085,0.16773062976907557,0.19406922915384092,0.10174124380332426,0.12703710321727305,0.06226300060606866,0.08244658264023781,-0.11838709677419355,3.4236922410431667,0.28474431082843144,0.27730907503965396,5.091124722672622,6.463447625833995,0.48989439852800337,0.47944360013360304,0.3243028713812784,0.0,0.0,12.207413029781547,0.17128430171897985,19.746472746913447,13.171245143024459,11.336785877934737,0.19491673250526756,0.952444814203896,0.8017419630364585,1.1987673534716456,1.291005477170766,1.4486333178939288,0.0,0.6296462971171929,0.0,0.40881155489546517,22.426299744181073,59.91129807842828,0.0,0.0,0.5138529051569395,35.2888941574499,0.0,11.336785877934737,1.0337744970092582,0.40881155489546517,0.0,0.7543004103841888,54.347846586731286,4.235526234984602,10.216620634085363,0.0,3.1212903225806454,3.6469409359281326,0.5795413653902026,0.0,20.093533635165095,11.336785877934737,0.0,0.0,0.0,0.0,14.951935562841626,0.7114641117805632,5.444915549494376,0.01655633282631105,0.7606306413614101,-0.05507134355294846,-0.12482792942424907,-0.06648458977109885,-0.2786028453640271,-0.29047088738382276,-0.23729008947627364,0.0,0.15789473684210525,31,3,8,0,0,0,1,3,4,7,3,12,6,0,0,0,4,4.662700000000002,3.619906451612904,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,3,0,0,0,0,0,0,0,0,3,0,2,0,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +CHEMBL1269988,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(CN3C[C@@H]4CC[C@H](C3)O4)ns2)n1,8.397940008672037,0.2952676235617704,-0.13108152810279272,0.2952676235617704,0.1336451444545772,0.017010751112078348,14.083933333333325,13.34473333333334,14.072124277466687,154,0,0.18931052607557564,-0.3723240948748688,0.3723240948748688,0.18931052607557564,0.051111111111111114,0.0811111111111111,0.10777777777777778,1.5501503482481545,70.74531700096479,1.3160081664717764,1.2131401781642464,0.5070233975285039,0.7791529109621855,0.6331158592926818,0.29574817499715034,0.1893308494691031,0.2143924062270063,0.12477348964294774,0.14611172948616025,0.0856933754632689,0.10348788138676479,-0.094,3.6402831614208178,0.21153852933517617,0.23835608730072982,3.2620327715944173,6.928599701966686,0.3348892102362809,0.16670273255626222,0.47629080517530525,0.0,0.0,0.0,0.4797436964898451,9.967957041894417,9.472221789717487,0.0,0.0,1.239088241306147,1.8406560732162416,1.7060973451088812,1.1658572744620284,0.9332869528952432,0.0,1.1277496575435753,0.0,1.2751545886056788,18.303532721920263,42.12185554061926,0.0,11.257379486545457,0.17699377844294586,10.818944754522896,0.0,11.532486611566675,1.9662081716279707,0.3744574212705331,6.851892117295679,1.7182958971920042,30.733999550922338,2.8236841566564013,16.904556707313183,0.0,3.208666666666667,4.1997874586702695,0.0,0.0,21.934006522438132,4.400694606261793,0.0,0.0,0.0,0.0,19.440178831611902,1.1658572744620284,6.453620076493195,0.004454838148485907,0.24439212287372516,0.10478060923154521,-0.12956278754636186,-0.02749526588897982,-0.03703388840997067,-0.6087161437485292,-0.49332845004199927,0.0,0.4,30,2,9,0,2,2,0,4,4,9,2,10,6,0,2,2,6,2.9911200000000013,3.7958133333333337,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,6,2,0,0,0,1,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1269880,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(CN3CCOCC34CCC4)ns2)n1,8.397940008672037,0.2912137164786084,-0.13128857558334786,0.2912137164786084,0.05890608602256209,0.015967965045568185,14.08209677419354,13.30170967741936,14.070302528645183,160,0,0.18931052607557564,-0.3781968846004648,0.3781968846004648,0.18931052607557564,0.04994797086368366,0.08116545265348594,0.10926118626430802,1.5968678245552512,72.27767336603421,1.3542014514243,1.2546517853202386,0.5067968363179071,0.794341526737599,0.6530153477025953,0.2942724274165971,0.19191639150294001,0.21616951094607212,0.1307177230458853,0.15136763257157487,0.08608251962293816,0.1033030092263213,-0.09096774193548386,3.6404784681364633,0.20539501441315963,0.23865235760040004,3.3077078846248185,7.001060457217187,0.3240863324867234,0.16132522505444732,0.4609265856535212,0.0,0.0,0.0,0.46426809337726943,9.967957041894417,9.472221789717487,0.0,0.0,1.4046958755004448,1.7503789601469242,1.7703990934690157,1.2166850111677838,0.903180922156687,0.0,1.0913706363324922,0.0,1.2260145728381648,24.9246435234369,42.12185554061926,0.0,11.257379486545457,0.17128430171897985,10.818944754522896,0.0,11.532486611566675,1.9027821015754554,0.362378149616645,6.851892117295679,1.9568812557880633,30.733999550922338,2.8236841566564013,16.904556707313183,0.0,3.105161290322581,4.269888666497984,0.0,0.0,21.934006522438132,4.400694606261793,0.0,0.0,0.0,0.0,24.17704178541195,1.0638829804000398,6.793613776911071,0.0019001963233084545,0.23266223976461378,0.09612242734929706,-0.26327083160829057,-0.02843018167776404,-0.03919946190212216,-0.4769468796313906,-0.6202147263889414,0.0,0.42857142857142855,31,2,9,1,1,2,0,4,4,9,2,10,6,1,1,2,6,3.3828200000000015,3.823012903225807,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,6,2,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL599824,CN(O)C(=O)c1nn(C)c2c1CCc1cnc(NC3CCCC3)nc1-2,5.514704561273911,0.5301531201396252,-0.15683064762584967,0.5301531201396252,0.08784178949357546,0.026081794114910847,13.696119999999986,12.809080000000003,13.687216957760027,132,0,0.29723660825271087,-0.3514770494650511,0.3514770494650511,0.29723660825271087,0.06559999999999999,0.1008,0.13119999999999998,2.1364003011585417,64.77403229756834,1.467171203433283,1.359991126157099,0.479991126157099,0.8296108517990614,0.6960733996912231,0.26185492425267026,0.1861189733797357,0.1861189733797357,0.12646660653986636,0.12646660653986636,0.08569484363284706,0.08569484363284706,-0.0992,3.334865220746415,0.18473962067362737,0.2442780330159839,2.7586093211804052,7.057854147236361,0.21239253413153503,0.0,0.2842308029270665,0.2951815575287651,5.907179729351506,0.0,0.5874349576104322,15.031174766859767,5.098681808301038,0.0,0.5098339921063504,1.2422060438805806,2.2551818792995966,0.5651749240814944,1.610491354563235,0.47422076041352,0.0,0.9924663804122394,6.975826900282246,1.7702176750530367,12.285640253570621,22.993726189057213,0.0,11.387855989696922,0.21239253413153503,5.948339280986494,0.0,0.0,1.9568836971733274,0.7888670681176402,0.0,2.980889555641448,6.172895210814761,2.843041735560835,11.387855989696922,0.0,3.8468,4.592689117769451,0.19178148736287287,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,20.27617267123925,1.210328514358609,7.110175469298589,0.0,0.8185440756257375,0.2477967596829228,-0.24430400664551097,-0.13478592461063604,-0.15683064762584967,-0.9535560816680309,-0.28370631072388774,0.0,0.5294117647058824,25,2,8,2,0,2,0,2,2,7,2,8,6,1,0,1,4,1.7913999999999994,3.656028000000002,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,5,1,0,2,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL427170,CN1CCN(c2ccc(C(=O)Nc3n[nH]c4c3CN(C(=O)c3ccco3)C4)cc2)CC1,6.795880017344077,0.44478917358131437,-0.12934512781181023,0.44478917358131437,0.1217048809611807,0.021658241669355597,13.563645161290315,12.783258064516136,13.554548020258084,160,0,0.289702703224035,-0.4591967047360286,0.4591967047360286,0.289702703224035,0.04058272632674297,0.06659729448491154,0.0894901144640999,1.6548600018484632,67.7823825215463,1.3697167401988908,1.2550976272384302,0.48090407885133346,0.7929652365901502,0.6473487787960442,0.26365757908636955,0.18236219982356763,0.18236219982356763,0.12025381559323868,0.12025381559323868,0.07539931225221409,0.07539931225221409,-0.1158064516129032,3.5691829972249924,0.20086665333778966,0.25538353881687187,3.793126807019376,6.870897166173814,0.787957854286876,0.044218017940974845,0.4645740113988991,0.0,11.814359458703011,0.0,0.4735735782492492,0.0,5.098681808301038,0.0,0.0,1.3945270692342586,1.6902270286623513,1.4231445737001354,1.5156966999225243,0.7522454358458581,0.0,0.6448454137930669,0.0,0.4191522376978029,43.17298872168488,65.0748052779374,0.0,0.0,0.32934590593996305,11.50524905251859,0.0,0.0,2.0892849330269065,0.4191522376978029,0.0,2.01054325809695,46.91087781787386,2.8236841566564013,0.0,0.0,3.1519354838709677,4.821323600333106,0.3093249796175369,0.0,9.991616288433558,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.2063717203049868,6.532898840972196,0.0,0.8311638235696166,0.09477786931279784,-0.16624229223882492,-0.19650246868236337,-0.25840674029448235,-0.03240791408522124,-0.8617327314569442,0.0,0.3181818181818182,31,2,9,0,2,2,1,2,3,6,2,9,5,0,1,1,5,2.1628,3.7089806451612906,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,4,2,0,0,1,0,1,0,0,0,0,0,2,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1801112,Cc1cc(Nc2nc(C(F)(F)F)cn3c(-c4cn[nH]c4)cnc23)sn1,7.568636235841013,0.5512489961891297,-0.20947888794406652,0.5512489961891297,0.1871008125472413,0.023160404365225994,14.613759999999996,14.210560000000003,14.602681959200016,128,0,0.43440535354241505,-0.3275339498937109,0.43440535354241505,0.3275339498937109,0.0592,0.0944,0.1216,2.0834238782713106,58.98396918438384,1.047831517751085,0.8669054751196501,0.49956533835675904,0.6420582057557831,0.44925415218321973,0.284412931028582,0.17986215187143856,0.20993601998092237,0.11494503596693172,0.14055092377878675,0.07552788025403846,0.095248294200378,-0.11800000000000002,3.3406758305530224,0.3181242244114278,0.22197229331055598,2.819684990324644,6.257743279469363,0.21239253413153503,0.20004327906751468,0.7993060860043046,0.0,0.0,6.176298517443475,0.37969604655379496,9.967957041894417,22.643466932741944,0.0,0.0,0.977071897461026,0.8808607032734871,1.2234975676871016,1.0784399099617046,1.119944343474292,0.0,1.157303199818271,0.0,0.5211276253895661,5.309813353288376,42.12185554061926,0.0,11.257379486545457,0.21239253413153503,23.990189897547353,0.0,11.532486611566675,1.157303199818271,0.247051940697739,6.851892117295679,0.8941569775623472,30.73399955092234,2.8236841566564013,16.904556707313183,0.0,3.3516000000000004,3.3149419054877796,0.5268498057209784,0.0,10.401519910871457,15.93318121782847,0.0,0.0,0.0,0.0,19.440178831611902,0.5515901042407265,4.937601582669884,0.013538241950182757,0.28332402840765936,0.12921078401064945,-0.17452325828198845,-0.036716912320483755,-0.030418273801715356,-0.3552655247720453,-0.11341733452880845,0.0,0.14285714285714285,25,2,7,0,0,0,0,4,4,7,2,11,4,0,0,0,4,3.646720000000001,3.428176,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,5,2,0,0,0,0,1,0,0,0,3,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL459888,O=C(Nc1ccc(CCNc2ncnc3ccsc23)cc1)c1cccc(C(F)(F)F)c1,5.494850021680094,0.4378864571664615,-0.176149516294468,0.4378864571664615,0.20538509994484588,0.013127601645635749,14.273096774193544,13.720322580645167,14.261532800774209,158,0,0.415934217535096,-0.36844722945864544,0.415934217535096,0.36844722945864544,0.03746097814776275,0.06347554630593132,0.08844953173777315,1.878954012966779,64.31870686129047,1.1853443869852192,1.023846592966298,0.5017980955768698,0.7037124381254533,0.5278258296196576,0.2833764551011998,0.17390313908193117,0.20024173846669654,0.10801915113500862,0.1333150105489574,0.06516562760725078,0.08534920964141993,-0.11161290322580639,3.2551050122542744,0.27687626281373123,0.28150141689768554,4.999636465739374,6.565327361181264,0.3425686034379597,0.4352255821926282,0.09108658569859358,0.0,5.907179729351506,6.176298517443475,0.15466248980876846,9.967957041894417,13.171245143024459,11.336785877934737,0.5847501975158027,1.7273226789894756,0.7493784411412059,0.9512147641124049,1.333898220203419,1.2569624288351675,0.0,0.3215470013514328,0.0,0.40481365867009206,17.116486390892696,82.73160896769446,0.0,0.0,0.3425686034379597,24.67649419554305,0.0,11.336785877934737,0.7216773050181248,0.40481365867009206,0.0,1.3563312903779396,66.04125449260349,2.8236841566564013,10.216620634085363,0.0,2.1583870967741934,4.016126909869088,0.5795413653902026,0.0,15.526433987373737,11.336785877934737,0.0,0.0,0.0,0.0,9.967957041894417,0.7543568548132161,5.771010031167661,0.016267590522334875,0.6599466640933291,-0.03639235166519233,-0.21438589715769954,-0.09007057706098978,-0.39862111162126596,-0.322716283664364,-0.11890903235574814,0.0,0.13636363636363635,31,2,5,0,0,0,2,2,4,5,2,9,6,0,0,0,4,5.617000000000003,3.724125806451613,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,2,0,0,0,0,0,0,0,0,3,0,1,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL245967,CCNCc1cncc(/C=C/c2c[nH]nc2-c2nc3ccc(OC)cc3[nH]2)c1,6.229147988357855,0.3117806279020784,-0.13219130496986886,0.3117806279020784,0.11252702176535334,0.01640539456296428,13.373142857142847,12.581142857142861,13.363768190142878,142,0,0.189336623992466,-0.496684971198891,0.496684971198891,0.189336623992466,0.05102040816326531,0.08673469387755102,0.11989795918367348,2.0003565015182696,73.57972415782088,1.3705511610192396,1.271126066552272,0.4854117808379862,0.8067447639726287,0.6494984662308402,0.2622970095701305,0.17435157138295426,0.17435157138295426,0.11321672609309978,0.11321672609309978,0.07292797307550017,0.07292797307550017,-0.12321428571428569,3.46425251019635,0.19805598483511763,0.2877909996834962,3.7922386001823294,6.91142687086965,0.5365599849042028,0.4591172109450202,0.3088603090948689,0.0,0.0,0.0,0.3598458956617961,4.9839785209472085,5.098681808301038,0.0,0.6770012717631004,1.2768220996678505,1.6505973360468602,1.232873448862777,1.2506000627149583,0.8263408902608449,0.0,1.0873272154034344,0.0,0.4767411357718437,13.534812143198533,59.378714938188445,0.0,17.26784432613229,0.3588098681103009,0.0,5.749511833283905,0.0,1.38107717218594,0.23203070301128376,0.0,1.7709521128436028,42.68836046309746,4.235526234984602,34.65587742015204,0.0,3.2682142857142864,4.713481481775818,0.0,0.0,5.091706557583081,4.977003270229252,0.0,0.0,0.0,0.0,15.066638850195453,1.2506000627149583,6.456143330438534,0.0,0.27701448529267036,0.11335701645598394,-0.1734823344114895,-0.056560308400684614,-0.2184753835227276,-0.11547171846220523,-0.38995079393788973,-0.11281238869028856,0.19047619047619047,28,3,7,0,0,0,1,3,4,5,3,7,9,0,0,0,4,3.6365000000000016,3.956182142857144,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,3,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2022372,Cc1cn2c(-c3cnn(CC(=O)Nc4ccc(F)cc4)c3)cnc2c(Nc2cc(CN3CCCCC3)ns2)n1,7.275724130399211,0.3642613557783312,-0.10394259989848478,0.3642613557783312,0.008779661203195843,0.007353072101464901,13.990974358974395,13.26728205128206,13.979798865025664,200,0,0.24560174970305232,-0.3275376996307437,0.3275376996307437,0.24560174970305232,0.032215647600262985,0.05391190006574622,0.07495069033530571,1.51806767657301,72.63198999690196,1.3177420606790708,1.1979329080368353,0.5009199998554948,0.7724512589403352,0.6192090836744375,0.2827724034471058,0.17814786964823856,0.19742599023124108,0.11244414066039245,0.12885817130901756,0.0742573871761811,0.08794546865579334,-0.10666666666666662,3.8520145579499165,0.222281116500534,0.27971481913631674,5.8103428583661625,6.863821217375999,0.27229812068145515,0.4439785256935822,0.3663775424425425,0.15146614690644886,0.0,0.0,0.4814601142648533,14.358372089569237,9.472221789717487,0.0,0.16340833080331743,1.9060523445761401,1.2988427234584452,1.1411773980524962,1.22175279099561,1.0152096048946762,0.0,0.8569893872787017,0.0,0.9990868253824541,23.61334607520864,72.10875121231832,0.0,11.257379486545457,0.27229812068145515,20.89674607688128,0.0,11.532486611566675,1.3416278256885321,0.45610914237701833,12.669112958341575,1.6960603372848932,54.90367438157551,2.8236841566564013,16.904556707313183,0.0,2.6992307692307693,4.4511448030993845,0.23551159568581134,0.0,21.524102900000237,4.400694606261793,0.0,0.0,0.0,0.0,19.440178831611902,0.9862411953097981,6.446617438691626,0.00022511951803066263,0.5266636330354364,0.05626497973676708,-0.16721238457910131,-0.12253019822483725,-0.16613452665128411,-0.4287488174985461,-0.49129909018193973,0.0,0.2962962962962963,39,2,10,0,1,1,1,4,5,10,2,12,9,0,1,1,6,4.865020000000003,3.8076769230769174,0,0,0,0,0,6,0,0,0,0,1,1,0,0,0,7,2,0,0,0,1,0,0,0,0,0,0,1,0,3,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL491975,NC(=O)c1ccc(Nc2nc(Nc3ccc(O)cc3)ncc2F)cc1,6.795880017344077,0.5958025999533576,-0.06499389948408708,0.5958025999533576,0.07675242513085223,0.021266246868901467,13.573199999999991,13.00872,13.564526116320017,126,0,0.2930920966378609,-0.5079643157845182,0.5079643157845182,0.2930920966378609,0.048,0.07519999999999999,0.1024,2.2340420930533678,58.07208955522774,1.1867330290940865,1.0372211612574695,0.4772211612574697,0.7230107575206769,0.5222717751672793,0.25438766826873155,0.16812385335079658,0.16812385335079658,0.10001297897764502,0.10001297897764502,0.05867730988207242,0.05867730988207242,-0.14719999999999997,2.8776120380738863,0.2528199428137518,0.2732674811100911,3.994422658278738,6.475968788669575,0.8579260749364095,0.2299804733313562,0.6912980772877491,0.47422076041352,1.4311996572326342,0.0,0.19178148736287287,9.374393568622029,4.9839785209472085,0.0,0.0,1.9335739864522543,0.6775289616425648,0.7403888886538695,1.2911182296679453,1.1619261735016062,1.4311996572326342,0.39871828167577666,5.719716975726273,0.0,10.619626706576751,65.892917204864,0.0,5.749511833283905,0.6535737472921209,27.531389655863464,5.749511833283905,0.0,0.8966057847834308,0.0,5.817220841045895,0.9077926272520318,54.512244872121116,5.6473683133128025,0.0,0.0,4.526400000000001,4.256412014056574,0.36739808926986567,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,15.07676523300163,0.7766157990430966,4.9621076282951915,0.0,0.759967046514986,0.1638481152095342,-0.12922249374214123,-0.24231085399252933,-0.31131440051851306,-0.049741708433194746,0.0,0.0,0.0,25,5,7,0,0,0,2,1,3,6,4,8,6,0,0,0,3,2.907400000000001,3.6648840000000003,0,0,0,0,0,2,0,1,0,0,1,1,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL4164598,COc1ccc(Nc2nc(Nc3cc(C)[nH]n3)cc(N3CCN(C)CC3)n2)c(OC)c1OC,7.026872146400303,0.2735150951280251,-0.12776214136048755,0.2735150951280251,0.15283621288359583,0.014228134713608323,13.77378787878787,12.85742424242425,13.764972327878814,176,0,0.23076302179465927,-0.4927124725256527,0.4927124725256527,0.23076302179465927,0.032139577594123045,0.05785123966942149,0.0808080808080808,2.2608816873585718,67.18649053911356,1.4889377434100775,1.3879531404664016,0.47886223137549255,0.8436888124601267,0.69982104308761,0.25007435258761374,0.16748000686495268,0.16748000686495268,0.10670039881743189,0.10670039881743189,0.06736386084383024,0.06736386084383024,-0.11303030303030305,3.3538787283242133,0.1828111447127732,0.29756588929890615,5.031392784609076,7.119518473873231,1.049395000899329,0.3525977441112138,0.6531034145268919,0.3544803367960727,0.0,0.0,0.15429413810857823,0.0,15.066638850195453,0.0,0.0,0.7852289828152884,1.7416299911860926,1.5183072456431852,1.6805029125145676,0.8814943602780346,0.0,0.7593410648069397,0.0,0.20763309446350542,69.59665945162101,29.86360282550164,0.0,17.248535499851716,0.9009128878432539,29.08931388917514,17.248535499851716,0.0,2.398041762206751,0.0,6.851892117295679,1.2940730003468006,24.16967483065318,4.235526234984602,0.0,0.0,3.4148484848484846,4.613336368515373,0.0,0.0,10.401519910871457,0.0,0.0,0.0,0.0,0.0,19.803501803995502,1.5369616108842628,7.820486563493436,0.0,0.1826232171426939,0.07920577272808586,-0.08103780926090456,-0.3242293323448833,-0.17707978575894862,0.0,-0.7279130688101242,-0.3351868703206705,0.4090909090909091,33,3,11,0,1,1,1,2,3,10,3,11,13,0,1,1,4,2.772920000000001,3.870609090909092,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,5,3,0,0,1,0,1,0,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL559844,CNC(=O)c1nn(C)c2c1CCc1cnc(Nc3ccc(N4CCN(C)CC4)cc3)nc1-2,6.7569619513137065,0.41434260599214656,-0.12546638014001618,0.41434260599214656,0.060574776805126795,0.020310858651427875,13.51662499999999,12.634625000000007,13.507456484875027,166,0,0.2713344070378389,-0.36896471545672516,0.36896471545672516,0.2713344070378389,0.037109375,0.0634765625,0.0869140625,1.8010571792170733,69.89438840297319,1.4559679830675791,1.3589361579519852,0.48393615795198525,0.8307198366975054,0.6984333405619216,0.2642324908431742,0.18553252922369395,0.18553252922369395,0.12574617529805693,0.12574617529805693,0.08330615936542408,0.08330615936542408,-0.10812499999999999,3.4785233191387768,0.1845640149212096,0.2572860566234925,3.685144350094415,7.077065027007138,0.6381076927586784,0.0,0.26617537973452693,0.18588560253082795,5.907179729351506,0.0,0.29613562872553145,9.967957041894417,5.098681808301038,0.0,0.0,1.5454625945403493,2.6985346013937757,0.7413963436009031,1.3518107437860614,0.7259466112407851,0.0,0.9361926521712342,6.975826900282246,0.3983078063330862,50.14881562196712,47.16340101971039,0.0,11.387855989696922,0.4849855136696009,17.323111830353618,0.0,0.0,2.20295699323034,0.6163023969669064,0.0,1.7892215819606265,30.34257004146794,2.8236841566564013,11.387855989696922,0.0,2.8503125,4.892248457027221,0.14982928700224443,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.066638850195453,1.2019814567838165,7.224424571786373,0.0,0.6133206813890248,0.08478210691838327,-0.2701025140245979,-0.09866210451984343,-0.181050969001688,-0.2623437263387168,-0.8421388795422655,0.0,0.391304347826087,32,2,9,1,1,2,1,2,3,8,2,9,7,0,1,1,5,1.8306999999999998,3.889590625000001,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,6,2,0,0,1,0,0,0,0,0,0,0,1,0,3,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL522791,O=C(Nc1ccc(F)cc1)c1ccc(Nc2nc(Nc3ccc(O)cc3)ncc2F)cc1,7.602059991327962,0.4744985934420784,-0.054165465255305335,0.4744985934420784,0.03180358682394835,0.009753050251695448,13.544312499999997,13.008812500000007,13.535469725750016,160,0,0.2930920966378609,-0.5079643157845182,0.5079643157845182,0.2930920966378609,0.0283203125,0.0478515625,0.0693359375,1.8551260156751315,62.10493272090628,1.16038835445281,1.0096404220139366,0.4783904220139366,0.7099376046283987,0.5163178068105194,0.25850877315540255,0.1711715239656092,0.1711715239656092,0.10296773863561459,0.10296773863561459,0.06159152032458454,0.06159152032458454,-0.14156249999999998,3.0563013403793695,0.26691814640872374,0.2839766113597298,5.140225042567681,6.42152111501844,0.6574452578428855,0.3614603960728062,0.4959565579332977,0.18588560253082795,7.33837938658414,0.0,0.14982928700224443,13.764808616296849,4.9839785209472085,0.0,0.0,2.2659070153737355,0.7070503223671151,0.749773638782113,1.2731113417414421,1.0854856441319911,1.4311996572326342,0.31149865755920053,0.0,0.0,15.929440059865126,95.87981287656308,0.0,5.749511833283905,0.4977950018707852,37.609190978221854,5.749511833283905,0.0,0.7004732693620553,0.0,11.63444168209179,0.8805578095619273,78.68191970277431,4.235526234984602,0.0,0.0,3.0990625,4.261402041314709,0.2870297572420826,0.1372004702398381,15.929440059865126,0.0,0.0,0.0,0.0,0.0,15.07676523300163,0.7339558475759405,5.161296026325048,0.0,0.6319374851078645,0.11482825932899918,-0.13252977011471512,-0.254912799022459,-0.42215241037028306,-0.041175124587788305,0.0,0.0,0.0,32,4,7,0,0,0,3,1,4,6,4,9,7,0,0,0,4,5.199900000000003,3.6705437499999998,0,0,0,0,0,2,0,1,0,0,1,1,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2030981,COc1ccc(-c2nn(-c3ccccc3)cc2C(=O)Nc2ccc(Br)cc2)cc1,4.907630300370879,0.48181881266834076,-0.11077641289546362,0.48181881266834076,0.13830396011582913,0.014997225817199795,15.45931034482758,14.833655172413799,15.415801341931052,144,0,0.2590221706140754,-0.49676780283928856,0.49676780283928856,0.2590221706140754,0.03804994054696789,0.06302021403091558,0.08680142687277051,2.148030173410601,66.34406669293153,1.2334696559629008,1.1046931669116147,0.5386930475707425,0.7434455001681095,0.5712621467741469,0.2900823079485399,0.1760879865046862,0.20343275442045697,0.11388108525634046,0.12755346921422583,0.07198714610995119,0.07882333808889389,-0.11655172413793098,3.325825188231033,0.24638410478112244,0.2870582276518744,4.222501943791672,6.964820902672487,0.3464371140375319,0.3946013733838747,0.04868420959752416,0.0,5.907179729351506,0.0,0.16532886841626973,4.681802935145185,5.098681808301038,0.0,1.1743862076185942,2.083592657814929,0.7550500859664735,1.4341960579364448,1.1809012990032346,0.9491210311029109,0.0,0.3372580946015939,0.0,0.0,12.347765812170964,94.76050941796703,0.0,22.694277594512922,0.3464371140375319,5.687386274683562,5.749511833283905,15.929943897949348,0.7836419631613902,0.0,0.0,1.16072014243664,89.19705792627002,1.4118420783282006,16.944765761229018,0.0,1.9362068965517243,4.538433998605696,0.16532886841626973,0.0,9.78253286912079,4.681802935145185,0.0,0.0,0.0,0.0,25.765488660050437,0.8522323287317909,5.19441278427912,0.09956622156238079,0.48181881266834076,0.13246107557174658,-0.15537086825624916,-0.09100189066205451,-0.40385003747649234,-0.03806428249247763,0.0,-0.11077641289546362,0.043478260869565216,29,1,5,0,0,0,3,1,4,4,1,6,6,0,0,0,4,5.562700000000003,4.0568,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,3,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2391119,COc1ccc(-c2ccc(CSc3nnc(-c4ccc5c(c4)OCO5)o3)cc2)cc1,4.3979400086720375,0.28682066318432964,-0.10464890811014081,0.28682066318432964,0.1186555877358122,0.01288880628360622,13.94913333333333,13.344333333333342,13.936624268533347,150,0,0.2766866667480943,-0.49676781835201944,0.49676781835201944,0.2766866667480943,0.03333333333333333,0.05777777777777778,0.08444444444444445,1.5584667818581626,65.21683735357573,1.1998917617366118,1.0811889547773077,0.5084055074748987,0.7328798216143789,0.5646151682606425,0.2918317209582334,0.17763794294339313,0.20288758104224594,0.11577001707558217,0.13729633825974427,0.07149084206460875,0.08794701371155751,-0.11499999999999999,3.5583625858043972,0.24510186235006762,0.2706427040809378,3.839456820359244,6.754899147954357,0.6209246599484498,0.28303429818747816,0.38330078888559366,0.4211923168843035,5.222755905846688,0.0,0.0,0.0,0.0,10.197363616602075,1.6005465731790296,1.5634149337802485,0.46699751630625314,0.8742857415088554,1.4433797936505826,0.3920628316463705,0.0,0.33991212055340253,0.0,0.36425709303322823,13.782998043385785,72.03005727599324,0.0,39.82961389696861,0.4736862953800049,0.0,17.248535499851716,11.761884949391115,0.7993453886662621,0.19016522950500528,0.0,1.0079035167586983,76.10651262719628,0.0,22.581078397116894,0.0,2.220333333333334,4.552346066911484,0.0,0.0,11.761884949391115,0.0,0.0,0.0,0.0,0.0,14.934226570402124,1.2854843618572471,5.522200005200337,0.003955186257860407,0.0,0.22502520392805106,-0.18744013191354794,-0.08347886552865892,-0.3211411845343219,0.0,-0.09058241641068919,-0.10464890811014081,0.13043478260869565,30,0,6,0,1,1,3,1,4,7,0,7,7,0,0,0,5,5.433200000000004,3.7949333333333333,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1807474,CC(C)S(=O)(=O)Nc1cccc(-c2cc(NC(=O)c3ccc(N4CCN(C)CC4)cc3)[nH]n2)c1,6.0,0.4065309125810093,-0.18757627593260592,0.4065309125810093,0.2687339968159672,0.014027628194379449,14.194411764705873,13.305000000000007,14.182647347647087,180,0,0.2563011539127396,-0.36896615334119043,0.36896615334119043,0.2563011539127396,0.03633217993079585,0.058823529411764705,0.07958477508650519,1.9452303326204212,72.89366181693008,1.4803371304167265,1.3622433745545646,0.5039050386994978,0.8324735555282866,0.6889844520994675,0.2948204092259606,0.17279102120620285,0.2181132316754743,0.10579086655213443,0.1334038076233391,0.06247717838839767,0.07491636889582619,-0.09911764705882353,3.3981183150749703,0.19534735544600698,0.2900059311384122,5.572092206154674,7.1201904699959355,0.4444009651467451,0.17111361111279494,0.12457430102895888,0.294802680982576,5.907179729351506,0.0,0.4294518633937951,8.417796984328938,5.098681808301038,0.0,0.3554363945684291,1.6745330406133345,2.168298610707978,0.8452876145366228,1.6017159241170982,0.9742090061753307,0.0,0.44383229696278226,0.0,0.5567580559933888,47.888108335419005,59.94521986066665,0.0,11.257379486545457,0.43896596170214663,17.19263532720215,0.0,0.0,1.9883685328572034,0.294802680982576,0.0,1.7962427625575348,54.38176836896965,4.235526234984602,11.257379486545457,0.0,3.247941176470588,5.17774992727112,0.3885980637764929,0.0,5.091706557583081,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.2131178603406045,7.9365128056173795,0.0,0.36966955048094075,-0.054577987634447274,-0.20989539872035612,-0.09942922977999882,-0.3965994785049803,0.0,-0.8409471227808345,-0.18757627593260592,0.3333333333333333,34,3,9,0,1,1,2,1,3,6,3,10,10,0,1,1,4,3.230900000000002,3.9943352941176453,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,1,0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL3685264,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4ccccc4OCCO)c3)ncnc12,9.040958607678906,0.4088509524702854,-0.11152424264063451,0.4088509524702854,0.317550467366138,0.008909418337800885,13.455588235294112,12.773705882352948,13.446323653411783,172,0,0.2589243216577219,-0.4903621926434476,0.4903621926434476,0.2589243216577219,0.033737024221453284,0.058823529411764705,0.0847750865051903,2.0115249871912333,69.50617787399557,1.2871230545437304,1.157913562922213,0.481442974686919,0.7649542194890776,0.5876524875992107,0.25832593840910206,0.1706015552800494,0.1706015552800494,0.11071356949132741,0.11071356949132741,0.07056359794273563,0.07056359794273563,-0.13235294117647056,3.125596474127282,0.22879517036909722,0.30620236260184547,5.1059224006874215,6.699850562770463,0.7701474949179495,0.7588379448285786,0.16609906803861185,0.042094107565665714,11.814359458703011,0.0,0.28203159906304837,9.967957041894417,0.0,0.0,0.8885909864210727,1.2299401099316696,0.516778534513656,1.3678083646711858,1.4634049363949322,1.0065451012736075,1.4311996572326342,0.2931752071145417,5.719716975726273,0.19108410836223366,23.73759719240933,89.46033197335346,0.0,5.749511833283905,0.6198884304736199,11.50524905251859,5.749511833283905,0.0,1.2188322010226427,0.19108410836223366,0.0,1.4986200839499597,72.76997749826246,5.6473683133128025,10.902924932081056,0.0,4.101764705882353,4.708139345561859,0.28203159906304837,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,15.07676523300163,1.0732083804532189,5.626591391925118,0.0,0.9940934540616743,0.05889222172121961,-0.19424757323408687,-0.18211683145406227,-0.40051142325621314,-0.03272529976398847,-0.3283092733329936,0.0,0.12,34,5,9,0,0,0,3,1,4,7,4,9,10,0,0,0,4,2.9642000000000017,3.7882529411764705,0,1,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1650544,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(CN3CC[C@@H](F)C3)ns2)n1,8.397940008672037,0.5417684358217927,-0.15578244369355493,0.5417684358217927,0.1520029119442896,0.01917762914227967,14.231107142857132,13.547107142857145,14.219419351000022,144,0,0.18931052607557564,-0.32753769963065005,0.32753769963065005,0.18931052607557564,0.05994897959183674,0.09438775510204081,0.12244897959183673,1.7300535207758945,67.99746259621605,1.2776120790345271,1.1558543402668842,0.5064435038714458,0.7559814481313936,0.5990789187436144,0.29118497128411647,0.18244990562492425,0.20930157357982052,0.11822266608519952,0.14108506591721298,0.07966546601408873,0.09873100807497719,-0.10178571428571427,3.5552838500990624,0.2259548383653109,0.24825585181445514,3.2463022931941583,6.820393452023303,0.18963619118887057,0.3981717504071373,0.5103115769735413,0.0,0.0,0.0,0.5140111033819769,14.358372089569237,9.472221789717487,0.0,0.0,1.0999900834948224,1.8742201815766715,1.3447187765427226,1.0898926664008912,0.999950306673475,0.0,1.2083032045109736,0.0,0.9239072763447493,18.303532721920263,42.12185554061926,0.0,11.257379486545457,0.18963619118887057,15.209359802197715,0.0,11.532486611566675,1.891926290344683,0.23203070301128376,6.851892117295679,1.466559869497145,30.733999550922338,2.8236841566564013,16.904556707313183,0.0,3.1082142857142863,4.057442494271097,0.0,0.15680053741695785,21.934006522438132,4.400694606261793,0.0,0.0,0.0,0.0,19.440178831611902,0.9330921289839335,6.198145919431588,0.005428675426581772,0.2571452659760786,0.11344589124698769,-0.13514468804435045,-0.028618993066803433,-0.03855550240232521,-0.4085261117679088,-0.5228442663236579,0.0,0.3333333333333333,28,2,8,0,1,1,0,4,4,8,2,10,6,0,1,1,5,3.1717200000000014,3.767585714285715,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,6,2,0,0,0,1,1,0,0,0,1,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1651469,COc1ccc(-n2nc(Nc3cc(C)[nH]n3)c3ccccc3c2=O)cc1,7.5376020021010435,0.5259813355252116,-0.1225246775023908,0.5259813355252116,0.047600087494984455,0.022777669522595786,13.360692307692299,12.701615384615387,13.351470184000018,130,0,0.2790173235647993,-0.4967658662189471,0.4967658662189471,0.2790173235647993,0.04881656804733728,0.07988165680473373,0.10798816568047337,2.179752106932158,71.10741908147284,1.2564740664366216,1.1366370984010583,0.48279094455490446,0.754295123376266,0.5854633542671371,0.26260076999790954,0.17997587580793376,0.17997587580793376,0.11928940397895979,0.11928940397895979,0.07775762347081049,0.07775762347081049,-0.1388461538461538,3.205987517538822,0.21926811425770137,0.24465886566856115,2.7930328718265205,6.646064021534624,0.3864106271957087,0.22113507051091943,0.5561311427817869,0.0,5.559266895052007,0.0,0.380240143909804,0.0,9.780484743446223,5.098681808301038,0.697202158576534,1.4255379098312368,0.8167248686725851,1.3292563700797533,1.0816125174234517,0.861852845561525,0.0,0.7681105042050131,0.0,0.26353431220367995,12.347765812170964,70.42950044294193,0.0,11.436898107967467,0.6002285846977089,11.635725555670057,5.749511833283905,0.0,1.038800983392805,0.0,6.851892117295679,1.009819474515452,59.17630555304147,2.8236841566564013,16.459834703613154,0.0,3.262692307692307,4.360379997215981,0.1844052763104547,0.0,15.083322846016642,0.0,0.0,0.0,0.0,0.0,14.934226570402124,0.8994254807388345,5.372976109367493,0.0,0.5259813355252116,0.23118777519292866,-0.12515672590048998,-0.10604124406504851,-0.33878720893688763,0.0,-0.11712254316799547,-0.1225246775023908,0.10526315789473684,26,2,7,0,0,0,2,2,4,6,2,7,6,0,0,0,4,3.1694200000000015,3.86536153846154,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,3,2,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL202593,COc1cc2c(Nc3ncc(CC(=O)Nc4cccc(F)c4)s3)ncnc2cc1OCCN1CCC(CCO)CC1,9.0,0.35434284628587664,-0.11628789251935431,0.35434284628587664,0.01418948621270033,0.0053698014651688015,14.163073170731744,13.351756097560981,14.151873237951245,216,0,0.22919079397735562,-0.49284174511857454,0.49284174511857454,0.22919079397735562,0.03331350386674599,0.05532421177870315,0.0761451516954194,1.6901910989689823,70.22320598496866,1.4042464175923897,1.2829874999592266,0.4980240019330735,0.804190945386697,0.6532082744042335,0.2754965939033541,0.1673622674456972,0.19120423835706069,0.10468153666474235,0.1232820655046335,0.065811951151569,0.08131442781175043,-0.09439024390243901,3.668447629277241,0.2151240747314999,0.33320534264740875,7.658655557486314,7.016458226233728,0.6146868489093674,0.6309316861447234,0.4744943000747205,0.17898486308741804,0.0,0.0,0.2364499247542024,19.342350610516444,0.0,11.336785877934737,0.14737606604056816,1.5164908924057627,1.5069096310027632,0.9297121430295443,1.6515591993223662,1.0922853188225663,1.4311996572326342,0.4841913486266367,5.893957685363079,0.6217487708614029,50.26612870423975,59.425147205507955,0.0,11.49902366656781,0.4900817710774842,21.027222580032742,11.49902366656781,11.336785877934737,1.7547691431474746,0.27237712403417563,11.711178526408974,1.5882604532389295,48.73077917076076,2.8236841566564013,10.902924932081056,0.0,2.9690243902439026,4.527145498496311,0.22402322516455225,0.0,16.646599231223114,0.0,0.0,0.0,0.0,0.0,20.060743753948838,1.3378382050389213,7.278190614038799,-0.0013863963166613432,0.5386175852375679,0.027848251748909002,-0.05910138515679273,-0.3176229300325012,-0.19734110704526162,-0.48948254577897904,-0.5633024434771452,-0.09243590338053818,0.3793103448275862,41,3,10,0,1,1,2,2,4,10,3,12,14,0,1,1,5,4.632000000000004,3.8190780487804807,0,1,0,0,0,3,0,0,0,0,1,1,0,0,0,4,2,0,0,0,1,0,0,0,0,0,0,1,0,3,0,0,0,0,2,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL204294,CCCCNC(=O)N1Cc2n[nH]c(NC(=O)Cc3ccccc3F)c2C1,5.0,0.573003672232731,-0.16507061250369365,0.573003672232731,0.29061945719390714,0.026636075288764403,13.823269230769219,12.970346153846158,13.814452044769256,138,0,0.317560298232596,-0.33796989405534594,0.33796989405534594,0.317560298232596,0.060650887573964495,0.09319526627218934,0.1257396449704142,2.164773825932278,63.80314949624327,1.4564369545781128,1.3242511165937207,0.4780972704398747,0.8151560980123466,0.6692820189699293,0.2522958348737803,0.16512883743261642,0.16512883743261642,0.10341514803640005,0.10341514803640005,0.06431530446684135,0.06431530446684135,-0.11153846153846152,3.370535403711339,0.1956056364693632,0.307163497049537,4.0111852475755345,6.9844640658771855,0.5969052475933551,0.44750321611080474,0.16290485519171544,0.2271992203596733,0.0,6.031114512338072,0.380240143909804,9.184952231746642,5.098681808301038,0.0,1.2058489669851902,0.691492119257295,1.0437944343802061,1.3856400274681344,1.7022857006937409,0.6829291161355617,0.0,0.7846196711547297,0.0,1.4986302380736807,11.80667303760432,46.80772664994153,0.0,0.0,0.40844718102218275,15.002815009581669,0.0,0.0,1.2894404624130815,0.9292762097705035,5.817220841045895,2.4024225179011975,24.16967483065318,4.235526234984602,0.0,0.0,3.4661538461538464,4.8286409992740404,0.5376726698391716,0.0,5.091706557583081,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.1646130308545684,7.239536955066019,0.0,0.9996356518531591,0.0493688962642785,-0.1646670854769387,-0.21817846329515217,-0.29065995086973184,-0.47129809860549804,-0.6020712382694687,0.0,0.3888888888888889,26,3,7,0,1,1,1,1,2,3,3,8,7,0,0,0,3,2.5553,3.6490423076923095,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,2,3,0,0,0,0,1,0,0,0,0,0,3,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL1643136,O=C(O)c1cccc(Nc2ncc3ccn(C4CCCCC4)c3n2)c1,9.221848749616356,0.48267022682571015,-0.16226027041120145,0.48267022682571015,0.024922288359788602,0.02955666555837988,13.455799999999988,12.649400000000004,13.446345035200022,128,0,0.3352567371014098,-0.47763832599459877,0.47763832599459877,0.3352567371014098,0.0576,0.0928,0.1264,2.1364767701619987,69.63742922885753,1.3912629752561614,1.2842140385171024,0.4842140385171024,0.8093270316322925,0.6610468542471,0.26682837880854704,0.18010820251260476,0.18010820251260476,0.1175945292917724,0.1175945292917724,0.07603039093788513,0.07603039093788513,-0.11560000000000001,3.192980323263896,0.19367766757099728,0.2618890793776762,3.196463422780097,6.933084332144618,0.5994288476874777,0.2258870888307091,0.056473683133128026,0.23793357123945977,1.4311996572326342,5.969305287951849,0.0,9.77851570501903,4.9839785209472085,0.0,1.0064477364660573,1.4766209853324777,1.72579515763319,0.6611807976423502,1.439553658582848,1.1455372911541772,1.4311996572326342,0.5814022675874309,0.0,1.5153006789998615,5.309813353288376,48.121335451642985,0.0,0.0,0.21239253413153503,11.635725555670057,0.0,0.0,1.0245268067497932,0.0,0.0,2.916566386473173,42.557883959946,1.4118420783282006,12.464601092465157,0.0,3.2016000000000004,4.585691388219759,0.19178148736287287,0.0,9.87691300107973,0.0,0.0,0.0,0.0,0.0,15.07676523300163,1.1006678298649917,6.581749498148673,0.0,0.7807457716732789,0.11817885173583502,-0.12335260811567693,-0.10792437288466758,-0.36844444204225546,-0.8942860318485222,0.0,0.0,0.3157894736842105,25,2,6,1,0,1,1,2,3,6,2,6,4,1,0,1,4,4.378300000000003,3.8533600000000017,0,0,0,0,1,3,0,0,1,1,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL4225923,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(C(NC(C)(C)C)c3ccccn3)ns2)n1,8.397940008672037,0.28970848001413607,-0.13320461718431126,0.28970848001413607,0.0300071846410217,0.01039241187746057,13.926757575757568,13.163121212121219,13.915010993939417,168,0,0.18931052607557564,-0.32753735727074323,0.32753735727074323,0.18931052607557564,0.03948576675849403,0.06795224977043159,0.09274563820018365,1.8981496877983508,72.92307935535959,1.3444544345485279,1.2403991106049541,0.50756567366337,0.7940624790269155,0.636546905502016,0.2859940532485038,0.18535844595434,0.20814167937061567,0.1151587841124388,0.13455718396990482,0.07854467274395334,0.0961046340822455,-0.10999999999999999,3.694564031816002,0.21024675020836905,0.25383475715432935,4.4785348710909245,6.980786749724723,0.16090343494813258,0.19433103197018387,0.4329916410684593,0.0,0.0,0.0,0.5995816072145593,9.967957041894417,9.472221789717487,0.0,0.18310359720191802,1.7293124607193722,1.3960656075929485,1.662029710032583,1.0421883172948316,0.8484426844502212,0.0,1.1886779354452233,0.0,1.180738975451991,5.309813353288376,72.11593486927235,0.0,11.257379486545457,0.32180686989626517,10.818944754522896,0.0,11.532486611566675,1.195620720266283,0.0,6.851892117295679,2.236728516379604,55.034150884726984,4.235526234984602,16.904556707313183,0.0,3.2942424242424244,4.367079874979169,0.04153813806576425,0.0,21.934006522438132,4.400694606261793,0.0,0.0,0.0,0.0,24.42415735255911,1.0006501792290672,6.434913235620932,0.0009093086254855061,0.34461877293303916,0.06413994074621189,-0.3048998125770529,-0.02772764842345248,-0.2619656690831172,-0.1387240674360551,-0.4850014341433644,0.0,0.2608695652173913,33,3,9,0,0,0,0,5,5,9,3,10,7,0,0,0,5,4.500420000000002,3.9294272727272728,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,6,3,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3237168,Cc1cc(Nc2cc(N3CCOCC3)nc(Nc3ccc([N+](=O)[O-])cc3)n2)n[nH]1,7.958607314841775,0.39305969470221525,-0.13090110389753995,0.39305969470221525,0.056444760513122194,0.014636229198257,13.669344827586198,12.974172413793106,13.660890913793125,150,0,0.26907546243275593,-0.3777758792539834,0.3777758792539834,0.26907546243275593,0.04518430439952437,0.07253269916765755,0.09631391200951249,2.1225924982413074,62.41878921488044,1.30071489552274,1.1656018494962501,0.475946677082457,0.7600048812243697,0.5929494005908122,0.2535824769184028,0.16676439238992152,0.16676439238992152,0.10151323441313527,0.10151323441313527,0.06296114840724991,0.06296114840724991,-0.12862068965517245,3.243994292496414,0.22028868936571175,0.2794481802052088,4.579136350962898,6.6931271645460235,0.6984965307319752,0.40123191571276057,0.3466685866489528,0.20511514762022395,5.687386274683562,0.0,0.5243456836671949,0.0,15.066638850195455,0.0,0.0,0.652990673538699,1.8157580737009573,1.2838586662425286,1.2827101962929675,1.199196557374438,0.0,0.6951153588889151,0.0,0.23627214197571308,41.6312262918917,52.0627585095938,0.0,0.0,0.535156428876801,34.776700163858706,0.0,0.0,1.7652878038296784,0.1633401018551741,16.966210386061253,0.9998904637842136,36.25451224597977,4.235526234984602,0.0,0.0,4.625172413793103,3.9521390836298185,0.3487695954746749,0.0,20.61124299501031,0.0,0.0,0.0,0.0,0.0,19.803501803995502,0.9496007479268392,5.75274389388907,0.0,0.5933458908696028,0.5009839084181074,-0.11932111262575698,-0.17279950985914566,-0.2578262816096211,0.0,-0.627586559197199,0.0,0.2777777777777778,29,3,11,0,1,1,1,2,3,9,3,11,7,0,1,1,4,2.74012,3.7258793103448284,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,5,3,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3393458,O=C1CNCC2=C1C(c1cccc(Oc3ccc(Cl)cc3)c1)c1c[nH]nc1N2,5.562407967746038,0.49002150108672915,-0.12621894232612524,0.49002150108672915,0.07362789504061418,0.02252853499597676,14.030214285714278,13.418214285714289,14.003714409428591,140,0,0.18938514188139507,-0.45737154595343815,0.45737154595343815,0.18938514188139507,0.044642857142857144,0.07525510204081633,0.10586734693877552,1.948227890022787,66.66796322497756,1.215663186262687,1.0886898369977425,0.5085444422126872,0.7346412930716874,0.5690941516142913,0.2846771404181968,0.1905231190961171,0.20402185027501804,0.13066756710368987,0.13741693269314034,0.09123312319325774,0.09460780598798298,-0.11035714285714283,3.280436568853942,0.24130163405733945,0.24341912338644683,2.964371609746028,6.7917131132979875,0.5484460592991715,0.4611023480320004,0.5151711386020131,0.0,0.0,0.0,0.35308013363053226,0.0,5.098681808301038,0.0,0.8459206180556824,1.4934987049170272,1.5904363177702814,0.7705429929352986,1.177055219972841,0.828644557658303,0.0,0.5535786328275891,0.0,0.2104984887629671,18.303532721920266,81.93192501238153,0.0,11.49902366656781,0.5484460592991715,5.817862777835028,11.49902366656781,11.600939890232516,1.0345483100314625,0.17123347085970791,0.0,1.2932671591121483,65.78238871524621,9.258159548725928,0.0,0.0,2.8228571428571425,4.6153409575154525,0.22018913358007294,0.0,10.401519910871457,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.3711853681867867,5.283361636807949,0.2081662720869281,0.49002150108672915,0.09996721322900474,-0.15777159646569086,-0.2797030337635367,-0.2762416983824008,-0.036505936057574885,-0.24696896171601243,0.0,0.14285714285714285,28,3,6,0,2,2,2,1,3,5,3,7,3,0,0,0,5,3.8392000000000017,3.818717857142858,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3898132,Cn1cc(-c2nc3c(N4CCN(Cc5cccnc5)CC4)c(Br)cnc3[nH]2)cn1,7.494850021680094,0.307799861194491,-0.1379503630688121,0.307799861194491,0.13010907449399545,0.017663865198387717,15.632689655172403,14.902758620689657,15.58990533696554,148,0,0.1697143983711371,-0.36614425259207484,0.36614425259207484,0.1697143983711371,0.046373365041617126,0.07728894173602853,0.10582639714625447,1.8273276499852535,70.43709129800258,1.3179562748330846,1.2053680426554791,0.5359196474525378,0.7752711961579736,0.6254314273708349,0.29252745061419344,0.18297520013376925,0.21031996804953998,0.12062186415211297,0.1396870081087794,0.08000805942343331,0.09565510739062841,-0.09586206896551723,3.417847482496259,0.21920260231140837,0.260890271945942,3.6281301887217348,7.097795430994338,0.3405832069337838,0.3910725936419375,0.24341445858951477,0.0,0.0,0.0,0.5022652133428577,9.967957041894417,5.098681808301038,0.0,0.20835926578149291,0.9495108309417117,2.6375356265742393,1.2749929865827643,0.9940349379907791,1.1303864865867896,0.0,1.193425286460951,6.975826900282246,0.22402964428675673,30.887348468114254,52.9854844769298,0.0,11.387855989696924,0.16896240451208544,5.687386274683562,0.0,15.929943897949348,2.089543863607978,0.4645753994689031,0.0,1.1371938832793584,47.4220329852328,1.4118420783282006,22.55173392808091,0.0,2.7158620689655173,4.330504818358853,0.0,0.0,9.581712665995664,4.977003270229252,0.0,0.0,0.0,0.0,35.98056126909201,0.9940349379907791,6.065721438335078,0.10207634693060424,0.3761966169028011,0.12019181540811526,-0.14783974555096394,-0.024861071858645653,-0.0766268554659767,-0.16465761806464468,-0.7818101220386665,0.0,0.3,29,1,8,0,1,1,0,4,4,7,1,9,5,0,1,1,5,2.8381000000000007,3.9833689655172426,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,7,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1801104,Cc1nsc(Nc2nccn3c(-c4cnn(C)c4)cnc23)n1,5.0,0.3794101874756637,-0.13125884521327383,0.3794101874756637,0.24414915274853954,0.028308247667316058,14.198272727272718,13.648454545454547,14.185934699272742,110,0,0.207795140674502,-0.31184346781954536,0.31184346781954536,0.207795140674502,0.06404958677685951,0.10950413223140497,0.14669421487603304,1.9716089601727507,64.38005355859889,1.1511611116260931,1.0220889570210694,0.5137478925177843,0.7101788540439098,0.529000631491665,0.293827134520484,0.17786453400204055,0.21105984051750504,0.11635845729995901,0.14409015484306928,0.07748187683459716,0.09855138918675084,-0.12772727272727272,3.3990383865907607,0.24689909068130422,0.2217927096787628,2.1119014564736593,6.642203618799749,0.24135515242219888,0.2647456589999967,0.5853128216786798,0.23325265817451513,0.0,0.0,0.41284079733668083,14.951935562841626,9.472221789717487,0.0,0.0,0.31144964169525813,2.3097728169550695,1.131523236242231,0.7495539180091192,1.2785947768185801,0.0,1.5230297679075497,6.975826900282246,0.31144964169525813,5.309813353288376,36.688880552073734,0.0,11.257379486545457,0.24135515242219888,10.949421257674361,0.0,11.532486611566675,1.5230297679075497,0.31708304092192025,6.851892117295679,0.9501249370851066,30.864476054073805,1.4118420783282006,16.904556707313183,0.0,3.9009090909090913,2.813541538144712,0.0,0.0,16.47266369545552,21.524102900000237,4.400694606261793,0.0,0.0,0.0,24.42415735255911,0.7495539180091192,4.479668798291403,0.025717089470143527,0.5254167815110132,0.17385102745895362,-0.050110655971189,-0.041698981038967915,0.0,-0.14999984703523744,-0.2507230005649058,0.0,0.15384615384615385,22,1,8,0,0,0,0,4,4,9,1,9,5,0,0,0,4,2.0333199999999994,3.7780772727272733,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1172831,OCCOCCNc1ncnc2oc(-c3ccccc3)c(-c3ccccc3)c12,6.1191864077192095,0.307874737361876,-0.14434711895160615,0.307874737361876,0.4282581674645165,0.01619985832343027,13.408142857142849,12.652142857142863,13.398510411857163,142,0,0.23207761922460904,-0.4368464280055217,0.4368464280055217,0.23207761922460904,0.03826530612244898,0.06505102040816327,0.09183673469387756,2.189270118352782,69.30323952120257,1.3394710364477014,1.2345137734961236,0.4845137734961237,0.7952667283554717,0.6327758356651199,0.26293791116641185,0.17019312378464932,0.17019312378464932,0.1160341321359185,0.1160341321359185,0.08064227482852745,0.08064227482852745,-0.11499999999999996,3.370257686255612,0.21032135899464777,0.30877160214645977,3.7361807183543667,6.858121368075609,0.6990226941160351,0.6875800166730685,0.05042293136886431,0.25516772507236934,0.0,0.0,0.0,9.967957041894417,0.0,0.0,2.1580066813083194,0.19869469613203555,0.6294200952753549,1.7763154983670593,1.4899670259829645,0.6041994156104833,1.4311996572326342,0.35599846578194344,0.0,0.0,31.483628766353185,66.72755879059918,0.0,22.450601893965427,0.18963619118887057,5.817862777835028,0.0,0.0,1.5243492965463956,0.16917367692143032,0.0,0.9301575916869348,71.14470972765253,1.4118420783282006,33.55032275322393,0.0,2.8717857142857146,4.913549038857549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.813628186801676,1.1894501871374412,6.415512220420444,0.0,0.2631852868801677,0.08531631038936638,-0.11215095745930673,-0.07063519327994437,-0.32744622459981754,-0.03768944662706098,-0.5553777100095628,0.0,0.18181818181818182,28,2,6,0,0,0,2,2,4,6,2,6,9,0,0,0,4,3.9776000000000025,3.8953750000000005,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3675427,CNCC(Nc1ncnc2c(C(N)=O)cccc12)c1cccc(NC(=O)c2ccc(OC)cc2F)c1,9.468521082957745,0.43299090555117625,-0.12170318093103119,0.43299090555117625,0.6020028246575317,0.007876660657327207,13.570083333333328,12.87008333333334,13.56103380222224,184,0,0.2581386710735635,-0.49665754381310045,0.49665754381310045,0.2581386710735635,0.034722222222222224,0.05941358024691358,0.08256172839506173,2.196960404050542,68.73653085603755,1.3092340928469421,1.1746108588166824,0.480166414372238,0.766735661923002,0.595867265838386,0.2559764886856141,0.17349225465053694,0.17349225465053694,0.11402706664204011,0.11402706664204011,0.07262169409874633,0.07262169409874633,-0.12694444444444442,3.1449148243942937,0.22889395561767337,0.299639286920049,5.231637717070287,6.718398679371593,0.732944999705318,0.7352935500174854,0.15687134203646674,0.0,11.814359458703011,0.0,0.266363176892879,14.358372089569237,0.0,0.0,0.5035348923052746,1.355383073276639,0.8462967128327414,1.3580574559618224,1.4775203856851098,0.9506259289806294,0.0,0.4243825109772998,5.719716975726273,0.16716367967637902,31.130265750057532,89.23513410673607,0.0,5.749511833283905,0.732944999705318,15.89566410019341,5.749511833283905,0.0,1.174804320668839,0.0,5.817220841045895,1.658680345416354,66.72755879059918,7.059210391641003,10.902924932081056,0.0,3.646111111111111,4.927357442520681,0.30443980345316285,0.12195597354652277,0.0,0.0,0.0,0.0,0.0,0.0,14.704819995694466,0.9195450821909772,6.233765327490478,0.0,0.9364278447150391,-0.09251556117689992,-0.21925504365872822,-0.24410127007852112,-0.5254889106047573,-0.036192397815829336,-0.2310361877191817,-0.09475194929975034,0.15384615384615385,36,5,9,0,0,0,3,1,4,7,4,10,11,0,0,0,4,3.5013000000000014,3.7692638888888874,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,3,1,0,1,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2023292,Cc1cn2c(-c3cnn(Cc4nc(-c5ccccc5)c[nH]4)c3)cnc2c(Nc2cc(CN3CCCCC3)ns2)n1,6.234331445240986,0.22572397486473475,-0.1010533580434259,0.22572397486473475,0.035028180355204386,0.006422265985321397,13.767400000000034,13.011400000000005,13.755939049000023,202,0,0.18048314939138985,-0.34640574154979814,0.34640574154979814,0.18048314939138985,0.028749999999999998,0.05125,0.073125,1.3892491794948227,77.62486066418629,1.331343692151239,1.2345096061365861,0.5049220206597792,0.7902190586566866,0.6425815369266619,0.28955577370501345,0.18439614277170413,0.20319231034013158,0.12043120932244888,0.13643488920485838,0.08047697212958896,0.09382285157221089,-0.10874999999999999,3.9607461475469132,0.2084364324571497,0.26665625431146095,5.12648332630088,6.94357523212625,0.2571704155879407,0.27063716186719483,0.3572181038814789,0.0,0.0,0.0,0.3495601818064364,14.951935562841626,9.472221789717487,0.0,0.9146254609911463,1.2541591651954076,1.4175956660676892,1.4859555828888051,1.0301230932355643,0.6999652146714325,0.0,1.0845891973761455,0.0,0.9741096547478927,18.303532721920263,84.33124878775043,0.0,22.514758973090913,0.13274533383220938,10.818944754522896,0.0,11.532486611566675,1.4094321815919426,0.32484298421579727,6.851892117295679,1.8678068691112795,67.11898830005356,2.8236841566564013,28.16193619385864,0.0,2.62125,4.504253625638252,0.0,0.0,26.501106170229487,4.400694606261793,0.0,0.0,0.0,0.0,24.42415735255911,1.0301230932355643,6.439049770200441,0.0008757045088801096,0.27911603827511955,0.07393448422274633,-0.16044784127824882,-0.051863696832131365,-0.1359445982735391,-0.4320733880632214,-0.46681313942671226,0.0,0.27586206896551724,40,2,10,0,1,1,1,5,6,10,2,11,9,0,1,1,7,5.5256200000000035,3.9148849999999924,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,8,2,0,0,0,1,1,0,0,0,0,0,0,0,2,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL4291146,COc1ccc(C2=Nc3c(n[nH]c3C)Nc3nc(SC)ncc32)cc1,7.031517051446066,0.34539656872441865,-0.12573821364021578,0.34539656872441865,0.15730354691948611,0.01734145095694455,14.09691999999999,13.451800000000002,14.08442520528002,126,0,0.18979992354428454,-0.4967678029089578,0.4967678029089578,0.18979992354428454,0.0512,0.08800000000000001,0.12,2.1509172056388435,62.58591795250446,1.2392097997661322,1.119991126157099,0.5126509893942081,0.7447886681898952,0.5758796699770974,0.2927624455742097,0.18071493837695043,0.20348583905303216,0.1229502831296746,0.13755621799647905,0.08024984207826436,0.08918580267352202,-0.11479999999999999,3.0816284983004683,0.2336269720772329,0.24842605321241573,2.7393643860810526,6.844542718377709,0.40186705228353703,0.6901904354320999,0.5519193366524855,0.0,0.0,0.0,0.20366826230332324,14.960361774530085,5.098681808301038,0.0,0.47047539797564464,1.4882196419626126,0.7984359215813229,1.3989234159024204,1.070046675873581,1.3918672713006175,0.0,0.8063338163111413,4.992404732635669,0.48033314396465543,18.531689913287423,47.16340101971039,0.0,5.749511833283905,0.40186705228353703,17.323111830353618,5.749511833283905,11.761884949391115,1.5636762788219314,0.0,6.851892117295679,1.4404580305850214,40.49141125592431,2.8236841566564013,0.0,0.0,3.5232,4.0471165938093625,0.0,0.0,16.853591506974198,5.309813353288376,0.0,0.0,0.0,0.0,24.795906536631172,0.8805721577215792,5.251449615042548,0.006292141876779444,0.4797882307537339,0.15090091697223726,-0.1319310984900541,-0.08437136040366561,-0.14949586205107487,-0.13849019393238365,-0.12173750946123789,-0.12573821364021578,0.17647058823529413,25,2,7,0,1,1,1,2,3,7,2,8,6,0,0,0,4,3.4647200000000016,3.9485360000000003,0,0,0,0,0,4,1,0,0,0,0,0,0,0,1,4,2,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL3593296,Cc1cc(NC(=O)Nc2ccc(-c3cnc(NC(=O)c4ccc(OCCN5CCOCC5)cc4)s3)cc2)no1,7.602059991327962,0.35019772097704815,-0.11045375941921357,0.35019772097704815,0.165446307105376,0.007027179418442516,14.06730769230773,13.343615384615395,14.056004846051302,202,0,0.32443883706991117,-0.4922639728982129,0.4922639728982129,0.32443883706991117,0.030243261012491782,0.05062458908612755,0.06969099276791585,1.4847109304058483,66.79707752405628,1.3230524909659052,1.195712085020075,0.49869917683873466,0.773077421741466,0.6101183039082579,0.27614024735512593,0.16486335837000204,0.18992799445630726,0.09958059292601301,0.12175197126066692,0.05971389339879323,0.07760690389737185,-0.1092307692307692,3.77562368123612,0.22765802240757319,0.32110162039867557,7.4074467555962835,6.876399415318531,0.4950419025092775,0.46330114089934965,0.3893576280168965,0.0,5.907179729351506,6.031114512338072,0.5208736826025397,9.77851570501903,0.0,0.0,0.7327765782150454,1.2479450219223702,1.4177835318804732,1.0237757584168568,1.5920611628706987,1.023381734666211,0.0,0.38565516689546486,0.0,0.17568954146911997,55.09697484156182,71.87836249035587,0.0,16.1901105186822,0.5299052054785942,21.43134471642974,5.749511833283905,11.336785877934737,1.6960610392899849,0.12145802445641152,6.851892117295679,1.291979487151251,65.07775851675777,4.235526234984602,10.440598685398296,0.0,3.3551282051282056,4.296484908023807,0.2458737017472729,0.0,27.266225937799863,0.0,0.0,0.0,0.0,0.0,19.40059966884605,1.1087526434112864,6.19198366223609,0.004242213002701949,0.7422979876276001,0.039313947666489546,-0.08036430378814753,-0.13582406167738487,-0.3333127593985942,-0.02377050774930118,-0.7015747249280017,0.0,0.25925925925925924,39,3,11,0,1,1,2,2,4,9,3,12,10,0,1,1,5,4.713820000000004,3.8097589743589677,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,3,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1 +CHEMBL1086579,Cc1cc(CN2CCN(c3c(Br)cnc4[nH]c(N5CCN(C)CC5)nc34)CC2)no1,7.823908740944319,0.2982079891759275,-0.13864327250096176,0.2982079891759275,0.12270584234557758,0.020496048027701094,15.846499999999992,14.939300000000008,15.804970652800028,160,0,0.20473060133636686,-0.36614344053013786,0.36614344053013786,0.20473060133636686,0.042222222222222223,0.0688888888888889,0.09333333333333332,1.8196046515498423,68.84448550989296,1.4803776964466986,1.378797384249092,0.5316639355529154,0.8352108589337591,0.7090474440107054,0.2872402664792852,0.18050642434820838,0.20693970000012,0.11725230778377065,0.13568194694188154,0.07669042840916528,0.09181590811078719,-0.07233333333333333,3.5192212104287086,0.19294592030765328,0.27208206479116814,3.908662358294515,7.38952650551748,0.8066609133251343,0.3758982712163568,0.2353006433031976,0.19827797603288314,0.0,0.0,0.1633303243616826,9.967957041894417,0.0,0.0,0.17188877523751483,0.9919220971842424,3.0873062658681674,0.9853873115688877,1.3858219825242426,1.2909849130667796,0.0,0.9967147676983356,0.0,0.4449583933870541,68.75052383651075,28.142208848033373,0.0,0.0,0.3266606487233652,11.635725555670057,0.0,15.929943897949348,2.9617382468586624,0.21656198947719815,6.851892117295679,1.5697965958049551,21.211128371283817,1.4118420783282006,11.16387793838399,0.0,2.6853333333333333,4.598033257035343,0.0,0.0,9.87691300107973,0.0,0.0,0.0,0.0,0.0,35.57765913394256,1.2350521512917974,7.695785200391026,0.09528561365190594,0.18016391685409766,0.10531795248736635,-0.1582467495180818,-0.08934817947567202,-0.044157935985105874,-0.03547922006908913,-1.449320598336449,0.0,0.55,30,1,9,0,2,2,0,3,3,8,1,10,6,0,2,2,5,2.09082,4.000956666666669,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,7,1,0,0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2170597,O=C(O)c1ccc(Nc2nccc(Nc3ccccc3)n2)cc1,8.012652498338772,0.509932483894179,-0.06424765556199341,0.509932483894179,0.1461555702527928,0.028979666884868815,13.318478260869552,12.704913043478259,13.309203290782625,114,0,0.33518083886401184,-0.47763923618930254,0.47763923618930254,0.33518083886401184,0.04536862003780718,0.0775047258979206,0.10964083175803403,2.234900467221047,60.63941755798467,1.2213467590505451,1.0915369983881547,0.48284134621424174,0.74628631893452,0.5543381806055424,0.2585696814114651,0.16488238548652828,0.16488238548652828,0.09833686684160256,0.09833686684160256,0.05859323819607293,0.05859323819607293,-0.14826086956521736,2.8603000091599387,0.23238570190300575,0.28562308283789895,3.821618607347724,6.6207687109706,0.6838449955514767,0.2529505555580447,0.12276887637636527,0.2586234469994128,1.4311996572326342,5.969305287951849,0.0,9.77851570501903,4.9839785209472085,0.0,0.7881415705647775,1.838996997984481,0.7629420765296472,0.8974693743291049,1.2089292891177326,1.2656643433104564,1.4311996572326342,0.43338943660410506,0.0,0.0,10.619626706576751,72.16053377914471,0.0,0.0,0.4617229002859457,23.140974608188646,0.0,0.0,0.9150465443892817,0.0,0.0,1.1059275127670103,66.5970822874477,2.8236841566564013,1.4311996572326342,0.0,3.7886956521739132,4.403078855447184,0.2084581384379053,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,15.07676523300163,0.8405751274678894,4.807816784455537,0.0,0.8299100774544158,0.17635588970129243,-0.10360283681116829,-0.1351947326062809,-0.37023389146993957,-0.03838462405718822,0.0,0.0,0.0,23,3,6,0,0,0,2,1,3,6,3,6,5,0,0,0,3,3.662000000000001,3.8452478260869576,0,0,0,0,1,2,0,0,1,1,1,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3715109,CCOC(=O)c1cc(NC(C)(C)C(=O)Nc2nc3ccc4[nH]ncc4c3s2)ccc1Cl,6.97061622231479,0.4575884306704218,-0.13868767728118736,0.4575884306704218,0.19059356009489226,0.011534653713350981,14.772354838709669,14.12203225806452,14.745081876774215,160,0,0.33921415921947345,-0.46235196704902676,0.46235196704902676,0.33921415921947345,0.046826222684703434,0.0749219562955255,0.10093652445369407,2.004974718929024,67.56739400120809,1.2676800722370674,1.1208717939472408,0.5264339077196984,0.7408659652679179,0.5723942669805132,0.29345298528493513,0.18073938754090674,0.224464719165911,0.1154336751797629,0.15576332622571087,0.07294550906959306,0.1070562148232123,-0.102258064516129,3.524527825539764,0.25012242950067853,0.2633052239914532,4.190250555722479,6.928285623719179,0.3240863324867234,0.17867500814139822,0.3021640230588366,0.0,5.907179729351506,5.969305287951849,0.49019539015946056,9.77851570501903,5.098681808301038,0.0,0.7399266376828146,1.637669996458178,0.7551754030542043,1.6134630664591219,1.3504631939297431,2.1533129389083845,0.0,0.489495706026817,0.0,0.8417613420732382,17.17861194949304,46.97107355456955,0.0,0.0,0.3425686034379597,10.818944754522896,0.0,22.937725768167255,1.2628633032075587,0.3074645205765119,0.0,1.7489213058886983,36.38498874913124,9.258159548725928,21.119545566166423,0.0,3.516129032258064,3.649890459499584,0.3093249796175369,0.0,20.912658201838532,16.428492435517818,0.0,0.0,0.0,0.0,14.819523283048294,1.2625600509713182,5.3182438766526685,0.20241634581853757,1.0017794853409208,0.018516256725180296,-0.2599377310506896,-0.14075697738192175,-0.18047488610947607,-0.01898506151805157,-0.509797724247778,0.0,0.23809523809523808,31,3,8,0,0,0,2,2,4,7,3,10,9,0,0,0,4,4.831900000000004,3.968116129032259,0,0,0,0,0,3,1,0,0,0,2,2,0,0,0,2,3,0,0,0,0,1,0,0,0,0,0,1,0,2,0,0,0,0,2,0,3,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +CHEMBL504155,CC(=O)Nc1c[nH]nc1-c1nc2ccccc2[nH]1,7.154901959985742,0.6652944280428447,-0.17903303044816146,0.6652944280428447,0.14176492819349962,0.0355630354043004,13.403000000000006,12.786999999999999,13.394242220666666,90,0,0.22085012527359268,-0.3365175159497646,0.3365175159497646,0.22085012527359268,0.08950617283950618,0.1388888888888889,0.1882716049382716,2.3377206177010774,64.6735543587917,1.2220620739459922,1.0913509037757585,0.4802397926646474,0.738027076990198,0.5574788507628688,0.26072102929065355,0.17613334159212982,0.17613334159212982,0.11329856312964834,0.11329856312964834,0.0753668477740946,0.0753668477740946,-0.14611111111111108,3.1296996921984594,0.21907671848250296,0.2217206500020949,1.7318558552045644,6.559241452257139,0.571489812417646,0.0,0.8752143737684994,0.3281766516306392,0.0,0.0,0.5492357634252724,4.9839785209472085,5.098681808301038,0.0,0.6713798564070328,0.6713798564070328,0.952059055367839,1.3096989161537325,1.1108962149121213,1.257109302181533,0.0,1.1195205642811432,0.0,0.38066067318309327,5.309813353288376,30.34257004146794,0.0,11.518332492848387,0.2949896307382431,5.687386274683562,0.0,0.0,1.4476972159117822,0.266363176892879,0.0,0.9898866981476354,30.34257004146794,4.235526234984602,22.551733928080907,0.0,4.803333333333334,3.3504089253137264,0.266363176892879,0.0,21.43492134610398,4.977003270229252,0.0,0.0,0.0,0.0,10.082660329248245,0.8445330380192423,4.671109197251736,0.0,0.9090963670283154,0.20283887629125724,-0.10729285206881102,-0.12143860287599256,-0.12986900410381244,-0.04633687700045724,-0.17903303044816146,0.0,0.08333333333333333,18,3,6,0,0,0,1,2,3,3,3,6,3,0,0,0,3,1.9113999999999995,3.7766166666666674,0,0,0,0,0,4,2,0,0,0,1,1,0,0,0,2,3,0,0,0,0,2,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1093265,Cc1cc2[nH]nc(/C=C/c3cccc(NC(=O)N4CCN(C)CC4)c3)c2cc1NC(=O)Cc1cccs1,7.886056647693162,0.37681786777279286,-0.11409488644394931,0.37681786777279286,0.030099842513228836,0.009059151873631276,13.90959459459459,13.092297297297305,13.8977052756757,190,0,0.3214289167310829,-0.32550907149973574,0.32550907149973574,0.3214289167310829,0.03433162892622352,0.05843681519357195,0.07962016070124178,1.7643138303329005,74.70990585004964,1.4033870421973882,1.2948115255240902,0.5060681898734881,0.8111711318643597,0.6632815929845228,0.28422364148257295,0.17721737887046451,0.19928485403067334,0.11148199799806213,0.12803260436821873,0.06991298066002359,0.08192723653249145,-0.10675675675675675,3.662823459204505,0.2040930627788577,0.29674181065986843,6.070012993134821,7.0770143563850345,0.5518769234669652,0.0,0.11447368202661086,0.15965350619868934,0.0,6.031114512338072,0.2671957768014839,4.794537184071822,5.098681808301038,11.336785877934737,0.6534953478114987,1.7993216674322041,1.7317482532118829,1.0309441069283085,1.3739211248574112,1.5582951646795573,0.0,0.540275887232029,0.0,0.3574274869898664,43.582892344122776,75.3934422429177,0.0,0.0,0.28701693801558786,16.169309733438947,0.0,11.336785877934737,1.7538315596438019,0.30182329960543786,6.851892117295679,1.586715113203777,53.695464070973955,4.235526234984602,23.00706842415219,0.0,2.5232432432432437,5.089759629258796,0.2591641721119904,0.0,16.428492435517818,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.1147569527454202,6.730833124049705,0.004345085967750745,0.6780739898872212,0.021221241026844622,-0.20424058435172765,-0.05459450346904589,-0.4123765647573445,-0.093893639753899,-0.6536023828337397,0.0,0.25,37,3,8,0,1,1,2,2,4,5,3,9,8,0,1,1,5,5.063720000000004,4.079516216216211,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,3,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +CHEMBL1078827,c1ccc2[nH]c(Nc3ncc(CCNc4ncnc5ccsc45)s3)nc2c1,5.853871964321763,0.31787970174049884,-0.12244930156183902,0.31787970174049884,0.03511470798475469,0.0146462018909389,14.574111111111105,14.014111111111115,14.55863094370372,134,0,0.20701550314521433,-0.3684159572710412,0.3684159572710412,0.20701550314521433,0.04526748971193416,0.08093278463648834,0.11796982167352538,1.5669436281757094,70.44209653740396,1.15601095561934,1.0350737684973124,0.5399994411586254,0.7189080018213039,0.5384678717010114,0.3270364781956624,0.17676542500080142,0.243210513456121,0.11496039447718027,0.1722490361167338,0.07404821425944484,0.11904107359454257,-0.11259259259259258,3.5805278851912155,0.2534768326024668,0.25681585489393305,3.339342711067889,6.790953165776303,0.577652962103926,0.49970344622116575,0.3469290635119976,0.22030886225875904,0.0,0.0,0.0,19.935914083788834,0.0,22.673571755869474,0.44758657093802184,0.8697544641724994,1.0889948598089727,1.1424197023151639,0.7660973670010088,2.2526427542166005,0.0,0.9227006427414105,0.0,0.23603425560479183,17.116486390892696,52.92162206646636,0.0,0.0,0.3933195076509908,16.897760538660854,0.0,22.673571755869474,1.1633250754938531,0.23603425560479183,0.0,0.7898611062127384,48.04447487276506,4.235526234984602,21.250022069317886,0.0,3.3855555555555554,2.6403938545719132,0.0,0.0,37.95836853993715,32.9603883793871,0.0,0.0,0.0,0.0,19.935914083788834,0.7660973670010088,4.548641864214345,0.03643009389858408,0.5565652333487784,-0.011588670926453833,-0.03067967718921443,-0.04212817550334714,-0.10089951167225385,-0.17339802744810603,-0.12244930156183902,0.0,0.1111111111111111,27,3,7,0,0,0,1,4,5,8,3,9,6,0,0,0,5,4.422300000000003,4.114781481481482,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,4,3,0,0,0,0,1,0,0,0,0,0,0,0,3,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0 +CHEMBL235451,COc1ccc(-c2nc3cccnc3[nH]2)cc1,5.180456064458131,0.4768399720999511,-0.17602349539703646,0.4768399720999511,0.21696362958763715,0.042881005300376446,13.250058823529416,12.597823529411764,13.240600704235293,84,0,0.16971127952449283,-0.4967677870083468,0.4967677870083468,0.16971127952449283,0.07958477508650519,0.13148788927335642,0.17993079584775085,2.3394299195209847,64.28390178735776,1.2427572848838107,1.1323464162919847,0.48528759276257283,0.7557017841037018,0.5851236866155114,0.26469935746845513,0.17642471803516432,0.17642471803516432,0.1157440962820208,0.1157440962820208,0.0729229262803477,0.0729229262803477,-0.1388235294117647,2.913542247430992,0.2097223997949041,0.22938480848977658,1.7346826340830452,6.694696336364191,0.5714038955311354,1.005330414641182,0.415236429358584,0.0,0.0,0.0,0.0,9.967957041894417,0.0,0.0,0.0,2.1326183674105748,0.6903733354418681,1.2203257659167521,1.1680170937547323,0.6566987022578817,0.0,0.8791153124778629,0.0,0.0,7.037952458882589,42.42740745679453,0.0,17.137367822980828,0.2786389972823558,0.0,5.749511833283905,0.0,1.2931125159415444,0.0,0.0,0.8063285624530705,42.42740745679453,1.4118420783282006,22.55173392808091,0.0,2.988235294117647,3.917807514038702,0.0,0.0,11.16387793838399,4.977003270229252,0.0,0.0,0.0,0.0,14.704819995694464,0.8893780964723765,5.242695175892008,0.0,0.4826796147369263,0.0,-0.0536649443728108,-0.06911656637963824,-0.23203983455437058,-0.032765244042724746,0.0,-0.17602349539703646,0.07692307692307693,17,1,4,0,0,0,1,2,3,3,1,4,3,0,0,0,3,2.6334999999999997,3.8751000000000007,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3680414,CC(C)NC[C@@H](Nc1ncnc2c(C(N)=O)cccc12)c1ccccc1,6.096910013008058,0.4898488748909807,-0.17124762734509766,0.4898488748909807,0.5431793272864707,0.02345324450023349,13.439923076923064,12.548230769230772,13.430394629076947,134,0,0.2504173870671443,-0.36553071524327246,0.36553071524327246,0.2504173870671443,0.051775147928994084,0.08431952662721895,0.11390532544378698,2.7005278997570605,69.2370613018463,1.4733276310687062,1.3709352410755251,0.4863198564601405,0.8443819539316463,0.6925169118069837,0.2583302048069901,0.17148449037628255,0.17148449037628255,0.1089192100092635,0.1089192100092635,0.06950524737379005,0.06950524737379005,-0.11499999999999996,2.981006841889722,0.1860029978393119,0.30486992074664426,3.973889284248377,7.113338296255939,0.6284362954731932,0.5732244279346029,0.16290485519171544,0.0,5.907179729351506,0.0,0.1844052763104547,9.967957041894417,0.0,0.0,1.921472941560428,0.6787803425778302,1.1629924374100908,1.1321104493536491,1.4033199255622617,0.8703064399718305,0.0,0.5876065536608766,5.719716975726273,0.9899834296650248,11.80667303760432,65.76962435866658,0.0,0.0,0.6284362954731932,5.817862777835028,0.0,0.0,1.0919188047658273,0.0,0.0,2.3725972860631175,54.642721375272586,5.6473683133128025,10.902924932081056,0.0,3.5742307692307693,5.268206320609378,0.23712675924007856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.166193166322183,7.219363172120324,0.0,0.7640743576096541,-0.1019285522561587,-0.16234756596191768,-0.11715315424764833,-0.7114198668327274,-0.04760095618850582,-0.48721820347378775,0.0,0.25,26,4,6,0,0,0,2,1,3,5,3,6,9,0,0,0,3,2.879900000000001,4.000011538461539,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3675365,NC(=O)c1cccc2c(NCc3ccc(Cl)c(C(F)(F)F)c3)ncnc12,6.130768280269022,0.5226114521141075,-0.20627418042565804,0.5226114521141075,0.330872071050643,0.027544205235218947,14.644499999999992,14.179269230769231,14.617891282461555,134,0,0.4173531948338292,-0.3655307152432796,0.4173531948338292,0.3655307152432796,0.05325443786982249,0.08431952662721895,0.11242603550295857,2.454929763759485,57.86560518675003,1.124198774561413,0.9311138678654078,0.49864959655842533,0.6638675049711052,0.4756515946923121,0.26551019801959486,0.17639696388290946,0.19093405899864901,0.11260003827649073,0.12350285961329535,0.07070134609546538,0.0784564989952794,-0.11038461538461537,2.785284285179574,0.31602046967830766,0.2613806595597295,3.547264058364783,6.445740287593562,0.42421270496210184,0.5189228095373644,0.16290485519171544,0.0,5.907179729351506,6.176298517443475,0.1844052763104547,9.967957041894417,13.171245143024459,0.0,0.9109914348291964,1.143581781628853,0.4570416884146438,1.2550886716966667,1.3283898295235717,1.316496435750004,0.0,0.38338296314978526,5.719716975726273,0.4874291616061316,5.309813353288376,64.2708717487783,0.0,0.0,0.42421270496210184,18.98910792085949,0.0,11.600939890232516,0.6105821835094586,0.4874291616061316,0.0,1.300835333257492,42.557883959946,9.258159548725928,10.902924932081056,0.0,3.1115384615384616,4.049681321751215,0.6909916279652416,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.0835881973365036,5.219360919177157,0.2125309291543742,0.7477074428775965,-0.09611201183538058,-0.2171216314771338,-0.10155810524452298,-0.2784596605294657,-0.24694002986134872,-0.13898050183392446,0.0,0.11764705882352941,26,3,5,0,0,0,2,1,3,4,2,9,4,0,0,0,3,4.013000000000002,3.532176923076923,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,1,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL470119,COc1cccc(NC(=O)Nc2ncc(CCNc3ncnc4ccsc34)s2)c1,7.301029995663981,0.4508783465493243,-0.1184672851515791,0.4508783465493243,0.058232807001954434,0.013912278095314298,14.707827586206891,14.082172413793108,14.692871235034502,148,0,0.3249836567802375,-0.49668772390036975,0.49668772390036975,0.3249836567802375,0.046373365041617126,0.07966706302021404,0.11177170035671818,1.7084069490940674,65.44969953496579,1.2314584759214544,1.0971129218915587,0.5327333757486433,0.7390748764998015,0.5587514267628669,0.31017737074064555,0.16296609248550423,0.2248287610473535,0.10088741694080512,0.15422511777763082,0.06221720684384944,0.10398445417578905,-0.11172413793103446,3.5077882859648426,0.2490577936778578,0.3048967279008821,4.78747611733145,6.897068544300673,0.5295341262198897,0.6635001683191509,0.32300292120082535,0.0,0.0,6.031114512338072,0.18309701218235777,19.746472746913447,0.0,22.673571755869474,0.20835926578149291,0.8097713976778442,1.4183677999030737,1.067660643264488,1.1837346453589574,1.9157970494707184,0.0,0.5155839849255733,0.0,0.21975603108032343,29.46425220306366,52.92162206646636,0.0,5.749511833283905,0.7126311384022476,21.431344716429745,5.749511833283905,22.673571755869474,1.1902711109785595,0.21975603108032343,0.0,0.877190535732917,48.04447487276506,4.235526234984602,10.216620634085363,0.0,3.4848275862068965,3.306575123424365,0.16532886841626973,0.0,42.83896098155282,11.336785877934737,0.0,0.0,0.0,0.0,19.688798516641672,0.8550656750875137,5.120621880635323,0.023265513640241518,0.7996525220356765,-0.05756353755215327,-0.04489433988599446,-0.05897607956332764,-0.21883908737207852,-0.17562278050745095,-0.1184672851515791,-0.1111308292671623,0.15789473684210525,29,3,8,0,0,0,1,3,4,8,3,10,8,0,0,0,4,4.455000000000002,4.046831034482759,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,0,3,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1 +CHEMBL3680419,NC(=O)c1cccc2c(NC(CCN3CCCCC3)c3cccc(NC(=O)c4c(F)cccc4F)c3)ncnc12,8.508638306165727,0.3830455642661651,-0.12858590280391455,0.3830455642661651,0.7053923206694459,0.0066003870371365665,13.615150000000034,12.859150000000005,13.605995766000024,206,0,0.2611344806469358,-0.3655307152432725,0.3655307152432725,0.2611344806469358,0.028125,0.046875,0.06625,2.0550148256598773,71.57500081078952,1.3606330140325842,1.2313926774986483,0.4813926774986482,0.7844839320691438,0.6314587179618166,0.2617373584118209,0.1768932695394001,0.1768932695394001,0.11568251316899827,0.11568251316899827,0.07367022426194716,0.07367022426194716,-0.11099999999999999,3.2372885923908115,0.2194472192084907,0.30418573609229993,6.069974897608667,6.813626182251257,0.5309813353288375,0.7672471555440065,0.14118420783282007,0.0,11.814359458703011,0.0,0.2397268592035911,18.748787137244054,0.0,0.0,0.763564993299564,1.8482614452574198,0.9190272489961847,0.8044097198883831,1.4914248809307966,0.8555633360825665,0.0,0.37169666931862233,5.719716975726273,0.7877398018416791,30.110205759524582,95.05235494778198,0.0,0.0,0.4084835920575756,20.28607914786823,0.0,0.0,1.1543201321098935,0.0,11.63444168209179,2.335718584433186,66.72755879059918,5.6473683133128025,10.902924932081056,0.0,2.8310000000000004,5.037857823271329,0.3778298028745626,0.21952075238374097,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,0.8940743256724917,7.156643627508283,0.0,0.8151231124050031,-0.07692281911579152,-0.2314788561190023,-0.2614496175601058,-0.5273095133519254,-0.49731961855043155,-0.36061964854936646,0.0,0.26666666666666666,40,4,8,0,1,1,3,1,4,6,3,10,9,0,1,1,5,5.288400000000005,3.7520199999999946,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,2,1,0,0,1,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1801106,Cc1csc(Nc2nccn3c(-c4cnn(C)c4)cnc23)c1,5.6020599913279625,0.3856223086877849,-0.1325294121575137,0.3856223086877849,0.28944410540321597,0.028675511120493255,14.108454545454537,13.467000000000002,14.095457520363654,110,0,0.18046276376675183,-0.32882210780888893,0.32882210780888893,0.18046276376675183,0.06404958677685951,0.10950413223140497,0.14669421487603304,2.01165231298912,68.74681599810484,1.2302741559900094,1.1177968119756188,0.5185466565632426,0.74827903392807,0.5790337935892532,0.30036483838142447,0.18280626769955577,0.21894020504186704,0.11964460734181004,0.1511393595652137,0.07988204795916906,0.10419898989455802,-0.12136363636363634,3.33454108032741,0.22366771830003868,0.22525076896037535,2.153011411905386,6.83445612104962,0.24135515242219888,0.0,0.5853128216786798,0.0,0.0,0.0,0.41284079733668083,9.967957041894417,5.098681808301038,11.336785877934737,0.0,1.082448942105617,1.7855688800656757,1.4834595584707904,0.8741683322064119,1.263768538782971,0.0,1.0976880178001105,6.975826900282246,0.31144964169525813,5.309813353288376,47.82646066310169,0.0,11.257379486545457,0.24135515242219888,10.818944754522896,0.0,11.336785877934737,1.0976880178001105,0.31708304092192025,6.851892117295679,1.0628778509959025,42.2630091714047,1.4118420783282006,16.904556707313183,0.0,2.729090909090909,3.5786100884118226,0.0,0.0,15.33006213260078,16.646599231223114,4.400694606261793,0.0,0.0,0.0,15.066638850195453,0.8741683322064119,5.0804239498785115,0.02261313324118731,0.35305219678359556,0.14387693289992062,-0.08360715501427217,-0.02256455033612772,-0.02903410688091914,-0.15947348289440064,-0.2598323722229504,0.0,0.13333333333333333,22,1,6,0,0,0,0,4,4,7,1,7,5,0,0,0,4,3.2433200000000015,3.9785318181818194,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL1760035,COc1cc(Nc2nccc(Nc3cnc4ccccc4c3)n2)cc(OC)c1OC,5.301029995663981,0.2889269514826048,-0.11565452965190988,0.2889269514826048,0.05988409961984953,0.01549551621485256,13.448066666666659,12.742466666666672,13.438814651066686,152,0,0.22863676760364482,-0.4926335364441249,0.4926335364441249,0.22863676760364482,0.030000000000000002,0.056666666666666664,0.08333333333333333,2.0020940064289694,66.96880396093154,1.295566544670048,1.182027094963046,0.482027094963046,0.7721032672076701,0.6035080013297098,0.257027094963046,0.17068698788895117,0.17068698788895117,0.11087465859263408,0.11087465859263408,0.07093788281119215,0.07093788281119215,-0.13566666666666666,2.977648298886071,0.21547787647749908,0.2840553227731328,4.022176918166942,6.7680626724375665,0.8276738522658966,0.19392875926116762,0.4774235941074737,0.38992837047567996,0.0,0.0,0.16613261736490695,4.9839785209472085,4.9839785209472085,0.0,0.6042418707663295,0.6042418707663295,0.9777114371763236,2.151175071566553,1.4359561861763583,1.1347966513423235,0.0,0.4983978520947209,0.0,0.0,31.733484083224518,60.68514008293588,0.0,17.248535499851716,0.8276738522658966,23.140974608188646,17.248535499851716,0.0,1.2021930979829798,0.0,0.0,0.8681470855744725,60.68514008293588,2.8236841566564013,10.902924932081056,0.0,3.0140000000000007,4.436381083323503,0.0,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,14.951935562841626,1.4359561861763583,6.041749728528655,0.0,0.37331268764646725,-0.015435742813797589,-0.0811183683610019,-0.2003453073900711,-0.24249356896805263,-0.06519836605828623,0.0,-0.3465821736950266,0.13636363636363635,30,2,8,0,0,0,2,2,4,8,2,8,10,0,0,0,4,4.5378000000000025,3.881280000000001,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1651472,Cc1cc(Nc2nn(-c3ccc(C(C)(C)C)cc3)c(=O)c3ccccc23)n[nH]1,6.619788758288393,0.49902308151062413,-0.14401171481850913,0.49902308151062413,0.002036918934241072,0.019854454878132723,13.337857142857132,12.509857142857147,13.328223584142881,142,0,0.279017292200729,-0.32148475995447207,0.32148475995447207,0.279017292200729,0.042091836734693876,0.06887755102040817,0.09311224489795919,2.271664539375478,74.66239968673095,1.4093292480773434,1.308725580998702,0.48729700957013045,0.817448095047164,0.6719213900172035,0.2649775617672066,0.1918995197556564,0.1918995197556564,0.12133572707932229,0.12133572707932229,0.07748700491518241,0.07748700491518241,-0.12178571428571426,3.2735911587961235,0.1909532350249659,0.2370211447040784,3.2880781239085426,6.9717417383782125,0.18963619118887057,0.0,0.516407489725945,0.0,5.559266895052008,0.0,0.35308013363053226,0.0,9.780484743446223,5.098681808301038,1.8131346389358398,1.284199650049262,1.1989883425363996,0.8360870533814405,1.1289147798653933,0.800291928021416,0.0,0.7132454681903694,0.0,1.1722342478064107,5.309813353288376,75.99295193463894,0.0,5.687386274683562,0.38818143744072797,11.635725555670057,0.0,0.0,0.7132454681903694,0.1933925167641707,6.851892117295679,2.1642494827859706,59.17630555304147,2.8236841566564013,16.459834703613154,0.0,2.6999999999999997,4.718447641015351,0.17123347085970791,0.0,15.083322846016642,0.0,0.0,0.0,0.0,0.0,10.197363616602075,1.1289147798653933,6.6758237858260925,0.0,0.49902308151062413,0.19564936345856365,-0.3370559519606332,-0.07247670906490453,-0.39655711650473263,0.0,-0.5435731199316753,0.0,0.22727272727272727,28,2,6,0,0,0,2,2,4,5,2,6,4,0,0,0,4,4.458320000000002,4.02312142857143,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,3,2,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2380847,O=C(Nc1ccc(Nc2ccnc3[nH]c(=O)c4ccccc4c23)nc1)c1ccccc1,6.2111248842245805,0.42546199052667266,-0.05086256796357182,0.42546199052667266,0.0967294582859397,0.012318987121489083,13.142999999999995,12.590225806451619,13.133491122064532,150,0,0.2569651323227108,-0.33957399267590754,0.33957399267590754,0.2569651323227108,0.03121748178980229,0.05619146722164412,0.08324661810613944,1.78353405184084,74.83496655185823,1.161376478403,1.0339536954331459,0.4855665986589522,0.7183649981653232,0.5398695824020492,0.270784395740763,0.1850760036110261,0.1850760036110261,0.1245373813677197,0.1245373813677197,0.08286097301451409,0.08286097301451409,-0.14580645161290318,3.042297473754604,0.24599921072463896,0.2489608164941706,3.5984342113676115,6.464975600619451,0.5031170960260001,0.3698399999549276,0.13662987854789038,0.0,11.466446624403513,0.0,0.3093249796175369,9.967957041894417,0.0,0.0,1.1695003950316054,1.1695003950316054,0.8998393337389078,1.1851060498891925,0.9103446195303064,1.4485698361521218,0.0,0.4820954939394732,0.0,0.0,10.619626706576751,100.77207048440991,0.0,0.0,0.5218997936009276,17.19263532720215,0.0,0.0,0.6726496787572637,0.0,0.0,0.953180918133932,89.64935209766091,4.235526234984602,21.805849864162116,0.0,3.2183870967741934,4.544619297453351,0.3093249796175369,0.0,15.596629976806003,0.0,0.0,0.0,0.0,0.0,9.967957041894417,0.755682129721538,4.496752926233095,0.0,1.0900539155204347,-0.0617722905696503,-0.15288115014713521,-0.08104402541182161,-0.3546207920803604,-0.06552084160907912,0.0,0.0,0.0,31,3,7,0,0,0,2,3,5,5,3,7,4,0,0,0,5,4.467200000000002,3.9285354838709674,0,0,0,0,0,3,1,0,0,0,1,1,0,0,0,2,3,0,0,0,0,1,0,0,0,0,0,1,0,3,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1765758,Nc1nc(-c2ccccc2)cc(-c2ccc3c(N)n[nH]c3c2)n1,5.800000874803202,0.37733740839330904,-0.031932348892321286,0.37733740839330904,0.011147122113794206,0.022938843811085626,13.145260869565206,12.531695652173912,13.135999758608712,112,0,0.22063375770434365,-0.3817119566743571,0.3817119566743571,0.22063375770434365,0.04158790170132325,0.0775047258979206,0.11153119092627599,2.174800916495026,68.33129957852498,1.2029706837979202,1.0949252857825977,0.48622963360868476,0.747785225134983,0.5641270591086793,0.2712545383478188,0.1888275647282563,0.1888275647282563,0.12587174999945236,0.12587174999945236,0.0824859488883129,0.0824859488883129,-0.1482608695652174,3.193787112233909,0.21985713310215751,0.22164769792087827,2.3571473984880225,6.595802850138488,0.49736669354141505,0.0,0.5598727464989579,0.2586234469994128,0.0,0.0,0.2213785459818731,9.967957041894417,5.098681808301038,0.0,1.576283141129555,0.7881415705647775,0.7179620520808168,1.2713645092541375,0.8433059737901295,0.9856142169957642,0.0,0.8764498003381971,0.0,0.0,11.439433951452546,54.38176836896965,0.0,22.514758973090913,0.49736669354141505,11.766202058821523,0.0,0.0,0.8764498003381971,0.0,0.0,0.5363837828492165,54.38176836896965,7.059210391641003,33.41768390517197,0.0,4.630434782608695,4.0947578312390585,0.0,0.0,16.82565816591734,5.091706557583081,0.0,0.0,0.0,0.0,15.066638850195453,0.8433059737901295,4.880628988589997,0.0,0.33680183620628434,0.15946503103326654,-0.11768981547512791,-0.05361777098183807,-0.2780520374885249,0.0,0.0,0.0,0.0,23,5,6,0,0,0,2,2,4,5,3,6,4,0,0,0,4,2.8512999999999993,3.973065217391305,0,0,0,2,0,4,1,0,0,0,0,0,0,0,0,3,1,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL563560,Cn1cc(C2=C(c3nn(CCn4ccnc4)c4ncccc34)C(=O)NC2=O)c2ccccc21,4.3979400086720375,0.4171015780841992,-0.11063962417402125,0.4171015780841992,0.07771126793701422,0.012902907446815262,13.256454545454543,12.676090909090917,13.247273419636379,162,0,0.2607430916333022,-0.34990229253027966,0.34990229253027966,0.2607430916333022,0.03305785123966942,0.05876951331496786,0.08448117539026631,1.8169389613986806,75.55206725925486,1.183487184039403,1.0589997499826496,0.4832421742250737,0.7216692600572442,0.5578655712791971,0.2715863714155621,0.1953024213353555,0.1953024213353555,0.1404300629700535,0.1404300629700535,0.10017214158798332,0.10017214158798332,-0.13727272727272724,3.7172285150489826,0.23646600691407474,0.22016296514069333,2.9692682702376962,6.493281120101624,0.2767939180479609,0.21408141063692973,0.21390967573017966,0.0,11.814359458703011,0.0,0.45148144610400054,14.6497599770396,5.098681808301038,0.0,0.549310791605754,0.549310791605754,1.9433073858972953,1.3071836437819337,1.0810475896222973,1.360511966247125,0.0,1.0361349828549007,6.975826900282246,0.3937490717767239,0.0,78.50684428975052,0.0,0.0,0.16090343494813258,0.0,0.0,0.0,1.2332424405947382,0.8957157768805387,0.0,1.0888191968972551,67.24946480320503,1.4118420783282006,33.082535427452115,0.0,3.019090909090909,4.344645013479387,0.290578011155868,0.0,19.12581558401627,0.0,0.0,0.0,0.0,0.0,15.066638850195453,0.790469578466429,4.797428770398485,0.0,1.0488086760707769,0.06453090172611178,-0.17274410623266265,-0.0965292819657831,-0.1724610485323982,-0.1565386597569319,-0.3200710092833549,0.0,0.125,33,1,9,0,1,1,1,4,5,8,1,9,6,0,0,0,6,2.3869000000000007,3.7162939393939403,0,0,0,0,0,6,0,0,0,0,2,2,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL486877,O=C(Nc1ncc(CCNc2ncnc3ccsc23)s1)Nc1cccc2cc[nH]c12,7.522878745280337,0.4414820796373878,-0.11379807745703087,0.4414820796373878,0.036769215648253084,0.010084181450044107,14.51793333333333,13.94673333333334,14.503120005466686,150,0,0.3250460953037067,-0.36841595727099713,0.36841595727099713,0.3250460953037067,0.042222222222222223,0.07444444444444445,0.10666666666666667,1.5259300438036398,70.49151432155944,1.174574660936817,1.0451746679963765,0.5329411067248916,0.7219801203049898,0.5396656758886399,0.31780363521716054,0.17473480199105607,0.23453538160084372,0.11376409473712931,0.1653238722127276,0.0729941783083752,0.11336918406258345,-0.11666666666666664,3.6173743989639253,0.25457617728531856,0.2696327123794424,3.8217993079584773,6.7693470508545355,0.5198876658935334,0.44973310159904917,0.3592975597717379,0.0,0.0,6.031114512338072,0.17699377844294586,19.746472746913447,0.0,22.673571755869474,0.4028279138442196,0.7827790177552494,1.3653993546707277,1.0795592025248981,0.942058890919916,2.2153679788910634,0.0,0.6642979611023627,0.0,0.21243083004431265,22.426299744181073,59.09451727728111,0.0,0.0,0.5309813353288375,21.431344716429745,0.0,22.673571755869474,1.0818971009908298,0.21243083004431265,0.0,0.7565669474638052,54.217370083579816,5.6473683133128025,21.119545566166423,0.0,3.5873333333333335,3.3393011476678636,0.15981790613572738,0.0,47.81596425178208,11.336785877934737,0.0,0.0,0.0,0.0,14.951935562841626,0.7822409847841887,4.63971615161428,0.024356042002721463,0.7918556808263095,-0.06111142849777258,-0.05460184057898389,-0.021293836418443277,-0.1731751962311643,-0.1930586063710268,-0.11379807745703087,0.0,0.1,30,4,8,0,0,0,1,4,5,7,4,10,6,0,0,0,5,4.927700000000002,4.088760000000001,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,3,4,0,0,0,0,1,0,0,0,0,0,2,0,3,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1 +CHEMBL1277474,CC1=C(C(=O)Nc2ccc(Cl)cc2)C(c2ccccc2)C2=C(CC(C)(C)CC2=O)N1,4.394264106123253,0.4878350379503651,-0.15239025854874821,0.4878350379503651,0.5814545934114377,0.02268914852102265,14.031333333333324,13.19133333333334,14.005348524000024,154,0,0.25380961782667794,-0.3617019017218066,0.3617019017218066,0.25380961782667794,0.043333333333333335,0.06777777777777777,0.09000000000000001,2.4326569417468265,68.68167313364079,1.4349001794597507,1.3196296081645622,0.5114939063651774,0.8160540414296771,0.6795361636322769,0.2789874063659206,0.1947562045714981,0.2073550203384724,0.12632390124169668,0.1326233091251838,0.089193203585151,0.09234290752689454,-0.09499999999999997,3.0130644451851945,0.2034702562614612,0.2588707646607484,3.9226479863665156,7.226942900138238,0.35398755688589173,0.0,0.286897636767378,0.0,5.907179729351506,0.0,0.31963581227145477,0.0,0.0,0.0,1.8505605887713448,1.6124311270124003,2.1569269882583555,0.411227566851066,1.4646735105571707,0.9659583613544174,0.0,0.17699377844294586,5.41499046939678,1.3065161279969624,5.309813353288376,87.50814086065819,0.0,0.0,0.35398755688589173,5.687386274683562,0.0,11.600939890232516,0.3896808225238815,0.31963581227145477,5.41499046939678,2.5428794041173646,76.92205605521985,7.846317470397728,0.0,0.0,1.9400000000000002,5.3372017608980205,0.3653277641437954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.486043742754459,7.030018540162861,0.19395685545403568,0.9754774892562963,-0.06963075918270839,-0.514683570293926,-0.3013417130515071,-0.3867899467396065,-0.30230848777650876,-0.42932803745856385,0.0,0.28,30,2,4,1,1,2,2,0,2,3,2,5,6,0,0,0,4,5.582700000000004,4.004946666666669,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,1,0,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL397720,CO/N=C1C(=C2\C(=O)Nc3c(F)cccc32)\Nc2ccccc2\1,4.0,0.6433317198511846,-0.13691593203775396,0.6433317198511846,0.003343608276643373,0.02733299920682862,13.447826086956512,12.921913043478261,13.438754558434796,114,0,0.25814699814108044,-0.39857552052314116,0.39857552052314116,0.25814699814108044,0.05293005671077505,0.0888468809073724,0.12665406427221174,2.181726355865732,61.07073031633654,1.143761669903755,1.0015696452363838,0.47983051480160116,0.7005502018323054,0.5235767779371019,0.267297334850149,0.1921627380651325,0.1921627380651325,0.1394704685924845,0.1394704685924845,0.09999174304494884,0.09999174304494884,-0.13695652173913042,3.213144018414611,0.25249327723804865,0.21500788867909892,1.9161132836100105,6.433799561296644,0.6720528387092777,0.807254708813008,0.12276887637636527,0.0,5.907179729351506,0.0,0.2084581384379053,4.39041504767482,0.0,0.0,1.537730707176827,0.5254277137098518,0.7310560546990241,1.3332658991091677,1.3284265449496464,1.2420322526764607,0.0,0.0,5.15571272675054,0.0,17.65757916545934,64.93809409113878,0.0,0.0,0.4617229002859457,15.765187597041944,0.0,0.0,0.8111659648262954,0.4187880768612372,5.817220841045895,1.0797603715259212,53.14968299344944,2.8236841566564013,5.573104530069267,0.0,2.7269565217391305,4.37142558093826,0.3993457492063758,0.0,5.309813353288376,5.309813353288376,0.0,0.0,0.0,0.0,9.993301310487173,0.7187508573199392,4.729704167616127,0.0,0.7607920732369705,0.16269787011020193,-0.20818564378918503,-0.12186928656325652,-0.25506382828325075,0.0,0.0,-0.13691593203775396,0.058823529411764705,23,2,5,0,2,2,2,0,2,4,2,6,2,0,0,0,4,2.9651000000000005,3.7200173913043484,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL253956,O=C1OC(Nc2ncc3nnn(-c4ccccc4)c3n2)c2ccccc21,5.136677139879544,0.4808564671601661,-0.11172440228288896,0.4808564671601661,0.10519988242210476,0.021943137714675993,13.24361538461538,12.77838461538462,13.234698985538474,126,0,0.34030595740593295,-0.4336420960552424,0.4336420960552424,0.34030595740593295,0.04585798816568047,0.07692307692307693,0.11094674556213018,1.734336585543886,65.38396800073178,1.077122654635986,0.9422991597664413,0.4807606982279798,0.6814171124348252,0.4989248927286756,0.27018590828636946,0.18611354701209964,0.18611354701209964,0.1272811377282874,0.1272811377282874,0.0849043952199729,0.0849043952199729,-0.14653846153846148,3.4191231079690048,0.26275231489909234,0.21631155516457573,2.273244114303375,6.304945086701542,0.3864106271957087,0.05272148292962386,0.48368153910431505,0.46739584965088643,0.0,5.969305287951849,0.0,9.77851570501903,9.665781456092393,5.098681808301038,1.5949191285244089,0.697202158576534,0.21397890352680754,1.1973584053422122,1.0008302436181726,0.8877508656662434,0.0,0.9600702646536733,0.0,0.2386135696129444,5.309813353288376,71.68156656317841,0.0,5.687386274683562,0.20422359051109137,5.948339280986494,0.0,0.0,1.1896589295748983,0.18218703668461728,0.0,1.4309129652028767,60.55466357978442,1.4118420783282006,16.85126421306755,0.0,3.6469230769230774,3.672713469874495,0.1844052763104547,0.0,16.473691291672363,0.0,4.681802935145185,0.0,0.0,0.0,20.28002394585032,0.816424967307718,3.953246812552791,0.0,0.7801361087413949,0.2907790841480416,-0.0950397611488564,-0.07963883398859482,-0.24805024346193247,-0.13668957709925425,0.0,0.0,0.05555555555555555,26,1,8,0,1,1,2,2,4,8,1,8,3,0,0,0,5,2.4916,3.5644692307692307,0,0,0,0,0,5,0,0,0,0,1,1,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1765734,Nc1nc(-c2ccc3c(N)n[nH]c3c2)cc(N2CCC[C@H](C(=O)NC3CCCCC3)C2)n1,5.0,0.4550162336065256,-0.15428994449458913,0.4550162336065256,0.11547054108390209,0.015468853428444009,13.57962499999999,12.634625000000007,13.570445549375027,168,0,0.2246144209886049,-0.381711956674357,0.381711956674357,0.2246144209886049,0.0400390625,0.068359375,0.0947265625,1.8875180370578923,73.4415251466942,1.5136335912432277,1.4214361579519852,0.48393615795198525,0.8579701013202599,0.726384190280669,0.26753164112442684,0.18414417950494666,0.18414417950494666,0.12032436441209561,0.12032436441209561,0.07758575989877445,0.07758575989877445,-0.10500000000000001,3.4911871340310756,0.17425915935533012,0.2700927929242619,4.191481625575924,7.156963031300017,0.6765361573622313,0.18180821180734463,0.4465286014938823,0.3704849690730625,0.0,0.0,0.3089451169267157,4.9839785209472085,10.082660329248245,0.0,0.7862872941141074,1.1742667818951285,1.8533313033031378,0.8343717590943543,1.442618593816448,1.0748177968152848,0.0,0.7958799612833409,5.893957685363079,1.582136461801728,29.33306305093491,24.16967483065318,0.0,11.257379486545457,0.6765361573622313,17.58406483665655,0.0,0.0,1.4086605304409867,0.14982928700224443,5.893957685363079,2.422146239293467,24.16967483065318,8.471052469969203,22.160304418626517,0.0,4.338749999999999,4.852084615837599,0.14982928700224443,0.0,10.811423533309355,0.0,0.0,0.0,0.0,0.0,15.066638850195453,1.2927893068142031,7.904945909703626,0.0,0.6574397796990763,0.04999694456319376,-0.11593281077199824,-0.3705864169500177,-0.3000250309480585,-0.9862041106973989,-0.28494676459842216,0.0,0.4782608695652174,32,6,9,1,1,2,1,2,3,7,4,9,6,1,1,2,5,2.8496000000000006,3.934287500000001,0,0,0,2,0,4,1,0,0,0,1,1,0,0,0,4,2,2,0,0,0,1,0,0,0,0,0,1,0,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3109939,Cn1cc(-c2cc3cnc(Nc4ccc(C(=O)N5CCS(=O)(=O)CC5)cc4Cl)cc3n2C(=O)OC(C)(C)C)cn1,4.275724130399212,0.36126268336443496,-0.15359614692181317,0.36126268336443496,0.09897296061138583,0.00928772048401388,14.627150000000032,13.896350000000004,14.604021667700016,210,0,0.4190134596400247,-0.44317773126566273,0.44317773126566273,0.4190134596400247,0.03,0.049375,0.06687499999999999,1.877207153557639,71.86559383227026,1.3455756566432853,1.2002683947198036,0.5145790328934583,0.7651422535909803,0.6137790601869805,0.299126913314572,0.18401315796800805,0.22884031643949906,0.11343389788079043,0.1382721310402351,0.07480691308418888,0.09125586067607484,-0.0975,3.6311565935368293,0.23286560617071683,0.2562696434356956,5.822980481638901,6.923973813572251,0.37366465094847257,0.2854728397204679,0.2812273803686426,0.0,5.907179729351506,6.093240070938415,0.23690850298042515,22.76341233713932,5.098681808301038,0.0,0.2900234972558129,1.1181337795635053,1.920075487369731,1.398813998901184,1.5634203989341764,1.3961696702884896,0.0,0.6057868160758816,6.975826900282246,0.6539181790717682,29.713446492220584,59.31686397619907,0.0,11.257379486545457,0.13274533383220938,16.29978623659041,0.0,11.600939890232516,1.8663593344392502,0.5387485747624949,0.0,1.7323726150105518,48.730779170760755,6.434475392069527,22.160304418626517,0.0,3.2105000000000006,4.431404682924681,0.4501717838118145,0.0,14.558715936224914,0.0,0.0,0.0,0.0,0.0,10.082660329248245,1.4032721123781744,6.686843360056464,0.15805942785641064,0.7796195175127802,0.01712454185711415,-0.5029370496754194,-0.09289326810189061,-0.18706975298958653,-0.16017885426143225,-0.6255273308881815,-0.15359614692181317,0.3333333333333333,40,1,11,0,1,1,1,3,4,10,1,13,5,0,1,1,5,4.487600000000004,3.8214749999999933,0,0,0,0,0,4,0,0,0,0,2,2,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0 +CHEMBL1651491,CC(=O)Nc1ccc(Cn2nc(Nc3cc[nH]n3)c3ccccc3c2=O)cc1,6.259637310505756,0.49083128363086737,-0.12763352786551135,0.49083128363086737,0.09409669187398384,0.01779224817868896,13.371571428571423,12.723571428571434,13.362468707714301,140,0,0.2745917838337495,-0.3263387337844047,0.3263387337844047,0.2745917838337495,0.04591836734693878,0.0739795918367347,0.09948979591836735,2.130456925103991,71.17582782146998,1.2541399815908882,1.1249920769259814,0.48213493406883845,0.7497359263149149,0.5772267948826268,0.26145390965048837,0.17554080415863754,0.17554080415863754,0.11175538222963448,0.11175538222963448,0.07281465928609752,0.07281465928609752,-0.1407142857142857,3.2274450856607193,0.22504730825789657,0.2626925824313396,3.61005579572257,6.615124030744568,0.37927238237774114,0.0,0.5668304210948093,0.21097070461969664,5.559266895052007,0.0,0.5243136044902402,4.681802935145185,10.197363616602075,0.0,1.0790033406541597,0.8460967005245313,1.223324721194027,1.0118638061722633,1.0568372057717756,1.2143835710226685,0.0,0.7132454681903694,0.0,0.4767411357718437,10.619626706576751,76.47191915060523,0.0,0.0,0.5778176286295985,17.323111830353618,0.0,0.0,0.924216172810066,0.4032641738709917,0.0,1.1777400696980702,65.34920076385623,4.235526234984602,10.772448428929591,0.0,3.7392857142857148,4.440667396788148,0.34246694171941583,0.0,15.083322846016642,0.0,0.0,0.0,0.0,0.0,10.197363616602075,0.8856037349120678,5.16700932456452,0.0,0.9254673597231043,0.1896918284884869,-0.1435787442657086,-0.13227173754663624,-0.35142795977486335,-0.02955501767028348,-0.25033505351861957,0.0,0.1,28,3,8,0,0,0,2,2,4,6,3,8,6,0,0,0,4,2.8699000000000003,3.8471821428571435,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,3,3,0,0,0,0,1,0,0,0,0,0,1,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3670491,NC(=O)c1cccc2c(NCc3cccc(OCCN(CCO)CCO)c3)ncnc12,7.236572006437062,0.40886860426924715,-0.15004088553488534,0.40886860426924715,0.39641140822006893,0.010895812241705032,13.725451612903214,12.847516129032263,13.716332398193572,164,0,0.2504173870626155,-0.49225296248185046,0.49225296248185046,0.2504173870626155,0.04058272632674297,0.06763787721123829,0.09365244536940687,2.399402647200239,67.42471651354356,1.465414153269226,1.3506148754630725,0.47964713352758853,0.8377750781630691,0.6746718087447435,0.2502157646341758,0.15912169626948802,0.15912169626948802,0.10015764453530805,0.10015764453530805,0.062069191040190715,0.062069191040190715,-0.10548387096774194,3.0946868159667225,0.198591440551925,0.3616427035269343,6.108889009757837,7.042704194729975,0.8381938601622296,0.8322738749732796,0.13662987854789038,0.09233546175694414,5.907179729351506,0.0,0.3127240940297516,9.967957041894417,0.0,0.0,0.5847501975158027,0.9591331071725863,1.277361751249997,1.4438548721838438,1.7464913222843799,0.7299344335247611,2.8623993144652684,0.4796086055724159,5.719716975726273,0.20957611884890145,44.47734813498508,59.72720565100328,0.0,5.749511833283905,0.5085933317036999,5.817862777835028,5.749511833283905,0.0,2.3555676445313805,0.20957611884890145,0.0,1.4863912388132479,48.60030266760929,4.235526234984602,10.902924932081056,0.0,4.317096774193549,4.828984498368792,0.15466248980876846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.185573424108842,1.3545637657740248,7.195463003135477,0.0,0.6005423084150106,0.19043558615768216,-0.1300660957326911,-0.1467932472056276,-0.300439013225064,-0.03743605983735252,-0.976545191384854,0.0,0.3181818181818182,31,5,9,0,0,0,2,1,3,8,4,9,14,0,0,0,3,1.0061999999999993,3.8042322580645176,0,2,0,0,0,2,0,0,0,0,1,1,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3109937,COC1CCN(C(=O)c2ccc(Nc3cc4c(cn3)cc(-c3cnn(C)c3)n4C(=O)OC(C)(C)C)c(Cl)c2)CC1,4.187086643357143,0.3625650951326946,-0.1129300246439751,0.3625650951326946,0.10329947339734158,0.008080594932456834,14.126850000000038,13.295250000000006,14.105629530400023,210,0,0.4190134596400247,-0.44317773126566273,0.44317773126566273,0.4190134596400247,0.03125,0.051875000000000004,0.06999999999999999,1.8531385800133482,71.36885702147242,1.4257533261729491,1.3048559801966106,0.49875420384707214,0.807819923120644,0.6679457268536473,0.26621449879137893,0.18335379009107527,0.19280290191630595,0.11545669067845943,0.12229413222789606,0.07627311119166276,0.08087297094453492,-0.09724999999999999,3.655719217211336,0.20819753736811145,0.27347001188614467,5.826753120681756,7.094921640501871,0.4920862247934738,0.2854728397204679,0.03529605195820502,0.0,5.907179729351506,6.093240070938415,0.23690850298042515,14.345615352810384,5.098681808301038,0.0,0.2900234972558129,1.4367800246299742,2.2331001544588163,1.265566605317426,1.6084729037879761,1.1502383418780522,0.0,0.6057868160758816,6.975826900282246,1.1245648748119867,25.341485180802856,59.316863976199066,0.0,11.257379486545457,0.13274533383220938,16.29978623659041,0.0,11.600939890232516,1.6986158277193333,0.4112388201970586,0.0,2.188094715694041,48.730779170760755,6.434475392069527,22.160304418626513,0.0,2.58775,4.546821017469019,0.2397268592035911,0.0,14.558715936224914,0.0,0.0,0.0,0.0,0.0,14.819523283048294,1.5403479679951968,7.009016989574066,0.15945972289433197,0.7888149658318289,0.01645043055470658,-0.28250286081111586,-0.09342870449228458,-0.1887881534294009,-0.4879975345519939,-0.6269248783273809,-0.09757219946497955,0.3793103448275862,40,1,10,0,1,1,1,3,4,9,1,11,7,0,1,1,5,5.868000000000006,3.855904999999993,0,0,0,0,0,4,0,0,0,0,2,2,0,0,0,5,1,0,0,0,1,0,0,0,0,0,0,1,0,2,1,0,0,0,1,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL562104,CNC(=O)c1nn(C)c2c1CCc1cnc(Nc3ccccc3)nc1-2,6.505845405981558,0.5214809668812582,-0.1370087639453156,0.5214809668812582,0.05939275207583328,0.030636916930639663,13.37531999999999,12.649560000000003,13.366168367840022,126,0,0.2713344070378389,-0.35370573798651256,0.35370573798651256,0.2713344070378389,0.055999999999999994,0.09119999999999999,0.1232,2.1255567282780303,65.9482751746,1.3174509967913315,1.2036611945385445,0.48366119453854445,0.775347041488096,0.6203290444592647,0.264551956819268,0.1838160059463335,0.1838160059463335,0.12565015269651592,0.12565015269651592,0.08521547612274405,0.08521547612274405,-0.12879999999999997,3.3027647635836863,0.20555469117904515,0.2404001084590681,2.630861268456753,6.803113164147592,0.42478506826307005,0.0,0.3407044860601945,0.23793357123945977,5.907179729351506,0.0,0.3790536047686803,9.967957041894417,5.098681808301038,0.0,0.7250902449195954,1.2157655483872938,1.8033188935784816,0.7844962930687296,1.1820143295780696,0.7017162114008625,0.0,1.0023302055451606,6.975826900282246,0.5098339921063504,12.285640253570621,53.20581972737369,0.0,11.387855989696922,0.42478506826307005,11.635725555670057,0.0,0.0,1.3052579365989758,0.7888670681176402,0.0,1.7419002024415127,36.38498874913124,2.8236841566564013,11.387855989696922,0.0,3.3892,4.565755918344153,0.19178148736287287,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.066638850195453,0.9902328422151967,5.767824401204183,0.0,0.8248777537433858,0.12351224509560897,-0.2369149822149551,-0.1103233543423437,-0.17031137157402967,-0.3136284167128233,-0.2717029418656931,0.0,0.2222222222222222,25,2,7,1,0,1,1,2,3,6,2,7,5,0,0,0,4,2.0789,3.7902760000000013,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2170428,FC(F)(F)c1ccccc1Nc1ccnc(Nc2ccccc2)n1,5.7512912643990814,0.57406115222012,-0.22447007623647772,0.57406115222012,0.06946256666246775,0.02949966046650955,13.763041666666659,13.217041666666669,13.75455129483335,122,0,0.41790264604393584,-0.3395747398958845,0.41790264604393584,0.3395747398958845,0.03819444444444444,0.06770833333333333,0.09895833333333333,2.3069278272557665,58.52086358564358,1.1794382669910985,1.0176144917094796,0.4759478250428131,0.7053009081631418,0.520842845104733,0.25440837881306977,0.16677485236114667,0.16677485236114667,0.0998749519299726,0.0998749519299726,0.06161068758731489,0.06161068758731489,-0.12875,2.821041780420369,0.2678270889366428,0.27389702268798555,3.8081955830083993,6.430287081273651,0.44248444610736465,0.24241094907645952,0.11765350652735006,0.24784747004110394,0.0,6.176298517443475,0.0,4.9839785209472085,18.155223663971668,0.0,1.2588372307631863,1.2588372307631863,0.4941783952290968,1.0970492451772074,1.2947197257313865,0.9642072753411935,0.0,0.41533154341226736,0.0,0.25734577156014476,10.619626706576751,72.16053377914471,0.0,0.0,0.44248444610736465,36.31221975121311,0.0,0.0,0.41533154341226736,0.25734577156014476,0.0,0.8600748170653922,66.5970822874477,2.8236841566564013,0.0,0.0,2.0766666666666667,4.228241954365703,0.5488018809593525,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,9.967957041894417,0.7459178447720342,5.967673664708986,0.0,0.2949117449513241,-0.00801763526269563,-0.17509445552232042,-0.0869474210723384,-0.43631437177153914,-0.26801708158697185,0.0,0.0,0.058823529411764705,24,2,4,0,0,0,2,1,3,4,2,7,4,0,0,0,3,4.982600000000002,3.603475000000001,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3692217,Cc1noc(C2(Cc3ccc(F)c(Nc4cc(C)[nH]n4)n3)CCN(C(=O)c3cccc(Cl)c3F)CC2)n1,9.096910013008056,0.42782127279400844,-0.12894444224846466,0.42782127279400844,0.17085351394961412,0.009907936326155,14.269270270270288,13.615432432432439,14.247697489945965,192,0,0.25638338140918016,-0.33874137413982647,0.33874137413982647,0.25638338140918016,0.03725346968590212,0.05989773557341125,0.07962016070124178,1.9299888892243466,65.69524645017891,1.2725010618844665,1.1238077072555435,0.4955895706614478,0.7389974872492423,0.5793372418868222,0.2680814927519387,0.18235911361934246,0.19257436964661886,0.11739017374842375,0.12442830369256389,0.07388899302599244,0.07771971403622108,-0.10432432432432433,3.7190448359237513,0.24750937647279092,0.2672615902654984,5.036242381539156,6.746599604104701,0.3981842708408703,0.0,0.8626555646599505,0.1592087546493489,5.907179729351506,0.0,0.2671957768014839,13.764808616296849,10.082660329248245,0.0,0.6162168068924664,1.3680894288622512,1.58727178016338,0.6547466651853087,1.380509043480975,0.7876714912230832,0.0,0.8166194161014719,0.0,1.033447281296656,18.303532721920263,81.57802314323263,0.0,0.0,0.14350846900779393,20.4165556510197,0.0,11.600939890232516,1.32745452685778,0.31859230731692323,25.33822591668315,2.063878679024194,40.77760718295311,7.846317470397728,0.0,0.0,3.0494594594594595,4.196002890154402,0.35186725732684165,0.237319732306747,10.401519910871457,0.0,0.0,0.0,0.0,0.0,20.223302107320897,1.1048609697996163,6.442914519833804,0.15434942488943762,0.5399023010829606,0.1216461318252997,-0.25866701474752996,-0.35061039597609645,-0.23965876764460742,-0.38242394677301783,-0.43435915939715875,0.0,0.32,37,2,9,0,1,1,1,3,4,7,2,12,8,0,1,1,5,4.896440000000004,3.5612675675675676,0,0,0,0,0,5,1,0,0,0,1,1,0,0,0,5,2,0,0,0,1,1,0,0,0,0,0,1,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2398653,COc1ccc(NC(=O)Nc2ccc(CCNc3ncnc4oc(-c5ccccc5)c(-c5ccccc5)c34)cc2)cc1,6.435333935747911,0.3217314647670517,-0.09691963557221103,0.3217314647670517,0.4307123625649756,0.00399648132316067,13.229476190476227,12.5334761904762,13.21969142352383,208,0,0.3231784645958106,-0.4967658883302846,0.4967658883302846,0.3231784645958106,0.0209750566893424,0.036281179138321996,0.052154195011337875,1.5526975544722152,75.06569164065574,1.2847222923141306,1.1776384011640804,0.48716221068789,0.7734372512156672,0.6094840354799839,0.26801639770617736,0.17837476124855253,0.17837476124855253,0.11805023683693407,0.11805023683693407,0.07837618594505688,0.07837618594505688,-0.134047619047619,3.650209345514371,0.21877063542838884,0.2919882983169434,5.925213569987349,6.758995391452417,0.5972250940647268,0.5952798166697576,0.10084586273772861,0.1360356343998502,0.0,6.031114512338072,0.0,14.76249422596624,0.0,0.0,1.7264053450466557,1.2798652412072176,0.8209897486132843,0.9811930084029052,1.281519042150847,0.8172254928285412,0.0,0.23733231052129564,0.0,0.15173630717450903,29.46425220306366,120.6303599436026,0.0,28.20011372724933,0.49205483365869473,21.987172511273975,5.749511833283905,0.0,0.703187707081691,0.15173630717450903,0.0,0.9810279512410174,119.48405938895894,4.235526234984602,33.55032275322393,0.0,2.4121428571428574,5.214074320810566,0.11415564723980529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.704819995694464,1.054580943630088,6.039347015049316,0.0,0.5005329247402505,-0.05332650057444684,-0.17965354317644394,-0.07732909215031607,-0.5411943086646064,-0.1224676942871139,-0.09691963557221103,-0.0781161494914121,0.08823529411764706,42,3,8,0,0,0,4,2,6,6,3,8,10,0,0,0,6,7.864000000000006,3.9749309523809435,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,4,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +CHEMBL3675518,NC(=O)c1cccc2c(NC(CCN3CCC3)c3cccc(NC(=O)c4ccc(Br)cc4)c3)ncnc12,9.236572006437065,0.3748494668135616,-0.12720044741441758,0.3748494668135616,0.4482399523823457,0.007199570443241134,15.120756756756789,14.385189189189195,15.084807735243265,188,0,0.2551591047088469,-0.3655307152432725,0.3655307152432725,0.2551591047088469,0.03287070854638422,0.05478451424397371,0.07669831994156318,1.9955455676395941,71.77320017019206,1.3358194746298206,1.2129119628901812,0.5260470044878758,0.7805231698044798,0.6234963914045419,0.2857705505277182,0.17937158229922676,0.20080396796293895,0.11657617000690045,0.12729236283875656,0.07258838294895673,0.07794647936488477,-0.10324324324324323,3.1849120177088093,0.22544848002081133,0.2989784399295082,5.785069000616665,7.05774941514979,0.5740338760311757,0.3646484607559858,0.15263157603548114,0.0,11.814359458703011,0.0,0.2591641721119904,9.967957041894417,0.0,0.0,0.9204648654307901,2.1524964952511896,1.1166007227755657,0.9066796581542039,1.263888904685717,1.3554723605743784,0.0,0.40183423710121335,5.719716975726273,0.5071281694867136,30.110205759524582,93.93305148918587,0.0,0.0,0.44160388330548717,11.50524905251859,0.0,15.929943897949348,1.2479136563350202,0.0,0.0,2.0694761596258946,77.2426970140949,5.6473683133128025,10.902924932081056,0.0,3.060540540540541,5.071598909989143,0.4084646517562839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.897900939843765,0.8554242529294324,6.196854172033886,0.07602261586898945,0.9024572073048032,-0.06301125553855465,-0.20256519831558895,-0.13975215728462134,-0.5035208609755577,-0.26265444277386346,-0.33040665689607035,0.0,0.21428571428571427,37,4,8,0,1,1,3,1,4,6,3,9,9,0,1,1,5,4.992500000000004,4.017048648648643,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,2,1,0,0,1,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3685310,COc1ccc(C(=O)Nc2cccc(C(C)Nc3ncnc4c(C(N)=O)cc(C#N)cc34)c2)cc1F,9.585026652029182,0.4204928851650057,-0.11183043640524576,0.4204928851650057,0.4564844217040629,0.009919236284498374,13.45808333333333,12.87008333333334,13.449053243111129,180,0,0.2552687619482497,-0.493686909639851,0.493686909639851,0.2552687619482497,0.036265432098765434,0.0609567901234568,0.08256172839506173,2.1046776433285324,66.9589090004045,1.21561621818019,1.0634997477055714,0.480166414372238,0.721827447036378,0.5425111438036656,0.2567096331925592,0.17733104912623163,0.17733104912623163,0.11586957437438367,0.11586957437438367,0.07346211506349232,0.07346211506349232,-0.13999999999999999,3.095144321754862,0.2555574942422066,0.2796350230259824,4.90191923303567,6.528531425620233,0.5854501843361964,0.3747775846658743,0.4781694718789612,0.0,11.814359458703011,0.0,0.266363176892879,14.358372089569237,5.261891554738487,0.0,0.3356899282035164,1.5197854045176593,0.5763704902598892,1.488570310312435,1.3240726704951409,0.9506259289806294,5.261891554738487,0.2768876956081783,5.719716975726273,0.35749401626792565,17.65757916545934,88.75616689076978,0.0,11.818733146076179,0.5854501843361964,15.89566410019341,5.749511833283905,0.0,0.8005630266522226,0.0,17.148333708576654,1.8893211215408536,60.68514008293588,5.6473683133128025,10.902924932081056,0.0,3.972777777777777,4.582647024838536,0.4506034577514542,0.12195597354652277,0.0,0.0,0.0,6.069221312792274,0.0,0.0,14.704819995694464,0.7660973670010088,5.287402934471932,0.0,0.9336816489960328,0.21457939710705048,-0.22541344062754065,-0.23377412851930165,-0.4192597758711066,-0.033593435352909956,-0.11183043640524576,-0.09466313416928111,0.11538461538461539,36,4,9,0,0,0,3,1,4,7,3,10,9,0,0,0,4,4.173480000000002,3.670994444444444,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1099106,CC(=O)c1ccc(Nc2ncc3c(n2)-c2c(c(C(N)=O)nn2C)CC3)cc1,6.935542010773082,0.4677277418632628,-0.12414611585834529,0.4677277418632628,0.01250677122700905,0.025411272041436898,13.421962962962953,12.749962962962966,13.412930511703724,136,0,0.2690123532349573,-0.3641910642224725,0.3641910642224725,0.2690123532349573,0.05212620027434842,0.08367626886145405,0.1111111111111111,2.0852388467946894,64.80908754338458,1.278282414406404,1.1481399316269436,0.48147326496027687,0.7516429496194577,0.5902206316467974,0.2627524543690242,0.1875081812968621,0.1875081812968621,0.12562113496787428,0.12562113496787428,0.08346174406140137,0.08346174406140137,-0.1314814814814815,3.3178305040059124,0.22154820870488298,0.23381379036722727,2.9462871898832685,6.683421424584192,0.4085011232968388,0.0,0.5819518213406668,0.22030886225875904,5.907179729351506,0.0,0.5285510112329196,9.967957041894417,5.098681808301038,0.0,0.0,1.82706919415943,1.6174295159583993,0.6756166211314082,1.273554775765983,0.8639314900513518,0.0,0.7314237698274311,12.695543876008518,0.7258422933316458,5.309813353288376,52.72685251140739,0.0,11.387855989696922,0.4085011232968388,11.635725555670057,0.0,0.0,1.1644024615206328,0.7304324704792964,0.0,2.1995047147382265,30.34257004146794,4.235526234984602,11.387855989696922,0.0,4.288518518518519,4.434597945498289,0.35515090252383863,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.066638850195455,0.9184038732421445,5.330254792976338,0.0,1.204577959099036,0.13197378177458796,-0.2806653300257131,-0.16272504376015254,-0.16842078021060433,-0.28889680781059723,-0.24758005352437712,0.0,0.21052631578947367,27,3,8,1,0,1,1,2,3,7,2,8,6,0,0,0,4,2.0208000000000004,3.699596296296297,0,0,0,0,0,4,0,0,0,0,2,2,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL382590,COc1cc2ncnc(Nc3ccc(NC(=O)c4ccccc4)cc3)c2cc1OC,6.45712287789515,0.44095281699031985,-0.11179541688442222,0.44095281699031985,0.054662503743717394,0.01634377665921278,13.347933333333327,12.67593333333334,13.338451350000017,150,0,0.2551576401155064,-0.4928420696142627,0.4928420696142627,0.2551576401155064,0.03222222222222222,0.05555555555555556,0.08,1.9803039467078505,67.61594701437951,1.270249443870253,1.1504533084463806,0.48378664177971403,0.7605616853938039,0.5901300766386469,0.2603158369386497,0.17363885955347177,0.17363885955347177,0.11341526546100478,0.11341526546100478,0.07120793358891295,0.07120793358891295,-0.13766666666666663,3.004705278956362,0.22332742911845777,0.2827809135281208,3.999699884691664,6.7155079520849865,0.6697784204725618,0.44973310159904917,0.4774235941074737,0.0,5.907179729351506,0.0,0.15981790613572738,9.967957041894417,0.0,0.0,0.6042418707663295,1.4098976984547689,0.945562232106407,1.4298500363425066,1.39218670864641,1.1334246662878238,0.0,0.3322652347298139,0.0,0.0,24.69553162434193,78.33342898995949,0.0,11.49902366656781,0.6697784204725618,17.19263532720215,11.49902366656781,0.0,0.99836805630037,0.0,0.0,1.1677214228944262,72.76997749826248,2.8236841566564013,10.902924932081056,0.0,2.8456666666666672,4.597036585430908,0.15981790613572738,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.232368802510682,5.650289267246796,0.0,0.6863350932034867,-0.03086250663988145,-0.12733408123747586,-0.15907200946648253,-0.3813790299705594,-0.03254942416797636,0.0,-0.22209397563457373,0.08695652173913043,30,2,7,0,0,0,3,1,4,6,2,7,8,0,0,0,4,4.642900000000004,3.8920633333333337,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,3,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL4228308,Cc1cccc(Cc2cc(Nc3nc(C)cn4c(-c5cn[nH]c5)cnc34)sn2)n1,8.397940008672037,0.3035007768539515,-0.10705377067766297,0.3035007768539515,0.266183458325858,0.015946241443907626,13.878862068965507,13.253206896551724,13.86681081296554,144,0,0.18931052607557564,-0.3275382494069152,0.3275382494069152,0.18931052607557564,0.04518430439952437,0.07847800237812129,0.10820451843043995,1.736742081620874,71.61650017984331,1.2168843472728208,1.1029640363608113,0.5104294357031468,0.74174779775566,0.5728145065712624,0.2927789710931265,0.18302799041787154,0.20895373878811618,0.11818378203743143,0.14025782325454783,0.07945534442335472,0.09802961666877721,-0.12379310344827588,3.5746420544371285,0.23227491795631355,0.244789642032234,3.473220756220889,6.752704278644999,0.18309701218235777,0.1724511026444092,0.4927146260434192,0.0,0.0,0.0,0.49918550637214076,9.967957041894417,9.472221789717487,0.0,0.20835926578149291,1.4952940334188938,1.6081410777142966,1.3928842363978167,0.8536490019096523,0.9654692616157688,0.0,1.1695365005656548,0.0,0.6923003150317496,5.309813353288376,71.63696765330606,0.0,11.257379486545457,0.18309701218235777,10.818944754522896,0.0,11.532486611566675,1.1695365005656548,0.21975603108032343,13.703784234591359,1.5416499613143928,48.86125567391222,2.8236841566564013,16.904556707313183,0.0,3.333793103448276,4.118523387967685,0.0,0.0,5.091706557583081,16.84229996485505,4.400694606261793,0.0,0.0,0.0,24.42415735255911,0.8536490019096523,5.203712018340888,0.01147153301961075,0.39784516687582544,0.12296899989915074,-0.17337412440600317,-0.023835886136820347,-0.12430540961528064,-0.2050242505939341,-0.21233161060182978,0.0,0.15,29,2,8,0,0,0,0,5,5,8,2,9,7,0,0,0,5,3.9221400000000015,3.878703448275862,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,6,2,0,0,0,0,1,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2380824,O=C(Nc1ccc(Nc2ccnc3[nH]c(=O)c4ccccc4c23)cc1)c1ccccc1C(F)(F)F,8.397940008672037,0.3993279449092185,-0.15948522092423817,0.3993279449092185,0.008336418104636145,0.007863046339527112,13.55548571428571,13.06588571428572,13.546581726971443,174,0,0.4166858625006782,-0.3548607972750462,0.4166858625006782,0.3548607972750462,0.026938775510204082,0.045714285714285714,0.06693877551020408,1.8269670498534558,70.93131667331252,1.1249404090998878,0.9639784109130071,0.4782641251987212,0.6830902903845364,0.5030197190993545,0.26468712519935816,0.18675738237812758,0.18675738237812758,0.12502087079196392,0.12502087079196392,0.08375606848883181,0.08375606848883181,-0.13314285714285712,3.0704048556987,0.2831105297716235,0.24576742564473705,4.309143133616887,6.287318398898051,0.4456179993373144,0.16134792059336364,0.12101503528527434,0.0,11.466446624403513,6.176298517443475,0.2739735533755327,4.9839785209472085,13.171245143024459,0.0,0.8632026725233278,1.3811242760373246,0.9630382972450363,1.0287116869845896,1.182626524241828,1.2792910976446945,0.0,0.2845994797478989,0.0,0.17646567192695642,10.619626706576751,106.20504547295543,0.0,0.0,0.4622541029036788,30.233403967075148,0.0,0.0,0.4533760434436562,0.17646567192695642,0.0,1.0032017129671114,89.51887559450944,4.235526234984602,21.805849864162116,0.0,2.482285714285714,4.504908816490851,0.6502948431762317,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.6693184577533623,5.192762643914075,0.0,0.8605697096050205,-0.07925106644170421,-0.271850329765496,-0.06118925331799959,-0.45465256818546895,-0.18877008818937913,0.0,0.0,0.038461538461538464,35,3,6,0,0,0,3,2,5,4,3,9,4,0,0,0,5,6.091000000000003,3.6854742857142853,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,1,3,0,0,0,0,1,0,0,0,3,0,1,0,3,0,0,0,0,3,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1099104,CC(=O)c1ccccc1Nc1ncc2c(n1)-c1c(c(C(N)=O)nn1C)CC2,5.0,0.4750289239974144,-0.12858763763253453,0.4750289239974144,0.0631716528821511,0.025411272041436894,13.421962962962953,12.749962962962966,13.412930511703724,136,0,0.2690123532349573,-0.3641910642224725,0.3641910642224725,0.2690123532349573,0.053497942386831275,0.08641975308641976,0.11659807956104253,2.1561291377342857,65.8924208767179,1.278282414406404,1.1481399316269436,0.48147326496027687,0.7516429496194577,0.5902206316467974,0.2627524543690243,0.1875081812968621,0.1875081812968621,0.12769156828037406,0.12769156828037406,0.08637742823424867,0.08637742823424867,-0.1314814814814815,3.3274950544090673,0.22154820870488298,0.23381379036722727,2.8446111236092073,6.683421424584191,0.4085011232968388,0.0,0.5819518213406668,0.22030886225875904,5.907179729351506,0.0,0.5285510112329196,9.967957041894417,5.098681808301038,0.0,0.44758657093802184,1.3794826232214081,1.4067855798590077,0.8862605572307993,1.273554775765983,0.8639314900513518,0.0,0.7314237698274311,12.695543876008518,0.7258422933316458,5.309813353288376,52.72685251140738,0.0,11.387855989696922,0.4085011232968388,11.635725555670057,0.0,0.0,1.1644024615206328,0.7304324704792964,0.0,2.1995047147382265,30.34257004146794,4.235526234984602,11.387855989696922,0.0,4.288518518518519,4.434597945498289,0.35515090252383863,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.066638850195455,0.9184038732421445,5.33769501201485,0.0,1.22202034831944,0.12889784718865877,-0.2946395660231027,-0.16954971740740496,-0.1604053675214504,-0.292452543454085,-0.2530474945983873,0.0,0.21052631578947367,27,3,8,1,0,1,1,2,3,7,2,8,6,0,0,0,4,2.0208,3.699596296296298,0,0,0,0,0,4,0,0,0,0,2,2,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3680438,Cc1cnc(C(=O)Nc2cccc([C@@H](C)Nc3ncnc4c(C(N)=O)cccc34)c2)cn1,8.508638306165727,0.41784618518758776,-0.12301157619218736,0.41784618518758776,0.3811792158443428,0.013424388461711002,13.358374999999995,12.696875000000007,13.349239778500019,160,0,0.2753572488153813,-0.3655307152432725,0.3655307152432725,0.2753572488153813,0.037109375,0.0654296875,0.091796875,2.0781739291892123,69.1456817450185,1.2689838536283622,1.1389684921696073,0.48271849216960727,0.7537380010790427,0.5813747201004195,0.25984802066292473,0.17723040957239858,0.17723040957239858,0.1135385807450408,0.1135385807450408,0.07109316162827478,0.07109316162827478,-0.13749999999999998,3.0428136104156036,0.22920441229493424,0.273868366546683,4.36131705779019,6.6696820267475925,0.5106044900719695,0.5995600325881231,0.17648025979102508,0.0,11.814359458703011,0.0,0.45540790278408916,14.951935562841626,0.0,0.0,0.5664767538434339,1.357403454904423,0.7959705324057637,1.3335141701571358,1.2043543167609434,1.069454170103208,0.0,0.6229973151184011,5.719716975726273,0.6163023969669064,10.619626706576751,83.46085206232972,0.0,0.0,0.5106044900719695,11.50524905251859,0.0,0.0,0.9921960482028701,0.0,6.851892117295679,2.1336410431804262,60.94609308923881,5.6473683133128025,10.902924932081056,0.0,4.243124999999999,4.638581016799627,0.3424947788848082,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,19.935914083788834,0.8618595378761349,5.337932661779494,0.0,1.251393460013331,-0.05334093533607128,-0.23211829707956974,-0.144355018553734,-0.3930444341966812,-0.10791303880766834,-0.21845023115243287,0.0,0.13043478260869565,32,4,9,0,0,0,2,2,4,7,3,9,8,0,0,0,4,3.2525200000000005,3.7893062500000005,0,0,0,0,0,4,0,0,0,0,2,2,0,0,0,4,2,1,0,0,0,0,0,0,0,0,0,2,0,2,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3680403,NC(=O)c1cccc2c(NCc3cccc(NC(=O)c4ccc(Cl)c(Cl)c4)c3)ncnc12,9.537602002101044,0.4182244893593722,-0.11115938445323961,0.4182244893593722,0.2290866317958673,0.011704728143367243,14.572749999999994,14.037250000000004,14.533622817000015,160,0,0.2552131465586821,-0.3655307152432796,0.3655307152432796,0.2552131465586821,0.0341796875,0.060546875,0.0869140625,2.009839051416725,65.3459326562842,1.1671240716285545,1.0096404220139366,0.52563598114009,0.7035416212181659,0.5183602601632105,0.2829563402887924,0.17712834342034622,0.2007511229834229,0.11378453126279588,0.13452449247290565,0.07106809877795026,0.0784502173914117,-0.11499999999999998,3.0285400614569005,0.28291163559164073,0.2879537138668323,4.6375715371247255,6.788977972447777,0.5106044900719695,0.4216247827491086,0.17648025979102508,0.0,11.814359458703011,0.0,0.29965857400448886,9.967957041894417,0.0,0.0,1.2915354969829662,1.4956369514168768,0.7229350520362905,1.174203797213705,1.0330094972396657,1.7945129132427402,0.0,0.31149865755920053,5.719716975726273,0.20302686513487328,10.619626706576751,93.4631798931728,0.0,0.0,0.5106044900719695,11.50524905251859,0.0,23.20187978046503,0.6806973906436696,0.20302686513487328,0.0,1.3781028147952348,66.72755879059918,15.692634940795456,10.902924932081056,0.0,3.4375,4.3719465623911775,0.29965857400448886,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.45840966637471,4.360559458508192,0.3665748139785539,1.0392645072065383,-0.07761022240810769,-0.1754074002189414,-0.13237272611241163,-0.3266756096874365,-0.03258315903537002,-0.11115938445323961,0.0,0.043478260869565216,32,4,7,0,0,0,3,1,4,5,3,9,6,0,0,0,4,4.899900000000002,3.94499375,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1807392,CN1CCN(c2ccc(C(=O)Nc3cc(-c4cccc(NS(=O)(=O)c5ccccc5)c4)n[nH]3)cc2)CC1,6.468521082957745,0.37473761207832684,-0.15307184314928146,0.37473761207832684,0.20463149862061725,0.009294704705642918,13.962891891891891,13.200081081081088,13.951198912324347,190,0,0.26138921019555744,-0.36896615334119043,0.36896615334119043,0.26138921019555744,0.02848794740686632,0.04894083272461651,0.06866325785244703,1.6703368723973009,74.17641991075725,1.3593395689001744,1.238277695536627,0.503588413940079,0.7899872261758025,0.6331208478751863,0.29794307874817993,0.17567283029759184,0.21732026694503068,0.11010679825374423,0.14099772100111965,0.06734410760285409,0.08850487272319815,-0.11216216216216215,3.4587284256647384,0.21415714196132685,0.2825183323778928,5.816547602516694,6.898346022767579,0.40836845445917114,0.15723953453608183,0.11447368202661086,0.0,15.930470882759089,0.0,0.3946314420375414,8.417796984328938,5.098681808301038,0.0,0.816543068603148,1.4950047719348272,1.7331579154291823,0.9530558238224377,1.3977520083146187,0.8952190867557093,0.0,0.40784589450634046,0.0,0.1323103642031831,47.888108335419005,90.15731339898315,0.0,11.257379486545457,0.40337412696954017,17.19263532720215,0.0,0.0,1.6859064985935421,0.2708997609029077,0.0,1.2061338535141715,89.48934538280392,4.235526234984602,11.257379486545457,0.0,2.984594594594595,5.195170287493977,0.35709011265948,0.0,5.091706557583081,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.0406618956551381,6.97365199942376,0.0,0.3013369279099734,0.0783892057491201,-0.17799030440583902,-0.08844812275556879,-0.5054957447030989,0.0,-0.5409847306816764,-0.15307184314928146,0.18518518518518517,37,3,9,0,1,1,3,1,4,6,3,10,8,0,1,1,5,3.8816000000000024,3.9291729729729683,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,1,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +CHEMBL1808342,CCc1cccc(CC)c1NC(=O)c1nn(C)c2c1CCc1cnc(Nc3ccc(C(=O)NCCN(C)C)cc3OC(F)(F)F)nc1-2,5.861381566100508,0.31579963233829367,-0.13024626646880785,0.31579963233829367,0.38374289849308596,0.004258778098171771,13.844808510638334,13.051276595744687,13.836044078808534,248,0,0.572671040580532,-0.4035358944935851,0.572671040580532,0.4035358944935851,0.024898143956541424,0.04164780443639656,0.05658669081032141,1.8934385391036406,69.78515194794547,1.4008411515675843,1.2646031288174242,0.47736908626423274,0.7887426425277122,0.6436764434242788,0.2534287671157709,0.1765299332158187,0.1765299332158187,0.11436755391276224,0.11436755391276224,0.07583712030949426,0.07583712030949426,-0.10595744680851064,1.3292978926109154,0.21826497202874504,0.2934283400469073,7.538701089307387,6.856452507806211,0.5439619732875671,0.0,0.33359502261950996,0.1265604102337552,11.814359458703011,6.362358859030383,0.30363568730401763,9.967957041894417,5.098681808301038,13.171245143024459,0.6772561778208775,1.5800205107226142,1.6430998860013182,0.6257887078704779,1.666776587441282,0.6199461976395028,0.0,0.6374077631804147,6.975826900282246,0.9693158021050905,37.56499987577313,75.93859291012797,0.0,17.137367822980828,0.4397085747588335,30.494356973378082,5.749511833283905,0.0,1.4844775107046995,0.6907984362893567,0.0,2.2002092545926772,42.42740745679453,4.235526234984602,11.387855989696922,0.0,2.6872340425531913,4.734506905985085,0.4842621172588959,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,19.803501803995502,1.081730152016428,7.476221027418674,0.0,0.7377535493194944,0.015426249381979673,-0.37737873248557885,-0.19232932367376368,-0.2339727506800493,-0.5132233758320369,-0.6252626008955272,0.0,0.36363636363636365,47,3,11,1,0,1,2,2,4,9,3,14,16,0,0,0,5,5.286400000000004,3.661448936170205,0,0,0,0,0,4,0,0,0,0,2,2,0,0,0,5,3,0,0,1,0,0,0,0,0,3,0,2,0,3,1,0,0,0,2,0,3,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1258912,C[C@@H](NC(=O)c1cc2[nH]nc(NC(=O)c3ccc(N4CCOCC4)cc3)c2s1)c1ccccc1,8.301029995663981,0.40557085482194505,-0.11208926675398567,0.40557085482194505,0.0965086594036293,0.011415227988046584,13.98747058823529,13.246294117647068,13.975523842941197,174,0,0.2614230698287242,-0.37777781997653226,0.37777781997653226,0.2614230698287242,0.037197231833910036,0.05968858131487889,0.08131487889273356,1.6318377780366082,70.05906272903735,1.33530519220356,1.2167370923339778,0.5054575800083227,0.7815212113509504,0.625848436401214,0.28687360682556257,0.1773191968491039,0.20733745350085855,0.11520642893454285,0.14640802130804986,0.07149265641458358,0.09652411054501449,-0.10852941176470586,3.633694625764705,0.21771222091934006,0.284149329157079,4.660409603631597,6.934504909814855,0.5957764526831552,0.0,0.29568791214175383,0.0,11.814359458703011,0.0,0.43178767428608017,0.0,5.098681808301038,11.336785877934737,0.8885909864210727,1.2537481513914457,0.8340244942212679,1.7727659808589156,1.4328868174315639,1.3197945595071088,0.0,0.45588828585801455,0.0,0.37852307604839186,36.32141293860332,76.42823725372824,0.0,0.0,0.45645695404197734,11.50524905251859,0.0,11.336785877934737,1.4151893435015173,0.1393194986411779,0.0,2.0182234519596807,60.42418707663295,4.235526234984602,10.216620634085363,0.0,2.9220588235294116,4.536933946836277,0.28203159906304837,0.0,26.638215519656672,0.0,0.0,0.0,0.0,0.0,9.835544762101087,1.0115357197273365,6.14853790489595,0.0029800454250799415,0.772650176701467,0.08587530346633299,-0.13616416432403178,-0.1335391787939899,-0.47153948849069827,0.0,-0.5482123635859921,0.0,0.24,34,3,8,0,1,1,2,2,4,6,3,9,7,0,1,1,5,4.2043000000000035,3.9329735294117625,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,2,3,0,0,0,0,1,0,0,0,0,0,2,0,2,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL3675414,CN(C)CC(Nc1ncnc2c(C(N)=O)cccc12)c1cccc(Br)c1,6.318758762624412,0.48851018841831784,-0.16327487093484125,0.48851018841831784,0.42166572184429363,0.024898925387869128,15.934884615384602,15.159500000000001,15.887889321538484,134,0,0.2504173870671443,-0.36553071524327246,0.36553071524327246,0.2504173870671443,0.057692307692307696,0.09023668639053255,0.12130177514792899,2.7069506524403817,65.49854593501463,1.3771737849148602,1.25085695157588,0.5426260492341378,0.7948175256779996,0.6334928902206235,0.28546817803052643,0.17394534562646008,0.2044452790709736,0.11040341842521781,0.12565338514747457,0.07211745848803938,0.08355493352973194,-0.09653846153846149,2.902197264570417,0.22082930519734287,0.3000137861230935,4.000515828913412,7.245630944144336,0.6126707715332741,0.5189228095373644,0.16290485519171544,0.0,5.907179729351506,0.0,0.1844052763104547,9.967957041894417,0.0,0.0,1.3098923084976628,1.6801838508813334,1.0508412255374966,1.0793889664240253,1.243575341305775,1.4829965898929593,0.0,0.5718410297209574,5.719716975726273,0.2314574026288325,25.758326838168813,64.1999251668357,0.0,0.0,0.42421270496210184,5.817862777835028,0.0,15.929943897949348,1.5855215379606475,0.0,0.0,1.7400856957965087,53.07302218344171,4.235526234984602,10.902924932081056,0.0,3.2361538461538455,4.9701437930460965,0.23712675924007856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.897900939843765,1.0064485820656968,6.261977754779819,0.10794256724686471,0.7355877584945124,-0.05310260336922046,-0.1477080609736529,-0.1111609231742484,-0.4462731722307656,-0.044896258301516265,-0.4658286009333316,0.0,0.21052631578947367,26,3,6,0,0,0,2,1,3,5,2,7,8,0,0,0,3,3.2060000000000004,4.119830769230769,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL2391101,CC(=O)Nc1cc(-c2nnc(SCc3cccc(C#N)c3)o2)ccn1,4.0,0.47898893292471867,-0.13080810122911393,0.47898893292471867,0.1494366301387402,0.028135304400211218,14.055639999999993,13.531480000000004,14.043159826240014,124,0,0.2766866792852502,-0.41121807214620787,0.41121807214620787,0.2766866792852502,0.0608,0.09759999999999999,0.13119999999999998,2.075053642612003,60.05275776514391,1.1561157889985472,0.9984325139556551,0.5110923771927642,0.6973393008288129,0.5093232762363787,0.2840945956534895,0.1611287703633276,0.19142833608195095,0.09537947671871551,0.12121106213971006,0.05845141706797327,0.07819882304431185,-0.12719999999999998,3.254076612545988,0.27906708732619095,0.30371823218330113,4.425618385085176,6.639073355577527,0.38907857161366893,0.23271451111340113,0.056473683133128026,0.4719161460550966,5.222755905846688,0.0,0.19178148736287287,4.9839785209472085,5.261891554738487,10.197363616602075,0.9538688945887083,1.189325052894007,1.2458795394323476,0.8491193079072323,1.0829053149398402,0.9394770982631059,5.261891554738487,0.6072536855019713,0.0,0.711184196331701,5.309813353288376,53.554310440188516,0.0,17.523396726515177,0.21239253413153503,5.817862777835028,0.0,11.761884949391115,0.8435408746760316,0.4199797627688793,11.33111286753076,1.3771159109892923,52.067314299694566,1.4118420783282006,11.454175413722904,0.0,4.188,3.7805253307756193,0.4022571495524123,0.0,17.07169830267949,0.0,0.0,6.069221312792274,0.0,0.0,15.181342137549283,0.8911238275769675,4.2734418907609975,0.005977465205549608,0.6171072341159178,0.6226970878670992,-0.18688624136970236,-0.1320011711254822,-0.12802862768402126,-0.03483286987457746,-0.13080810122911393,0.0,0.11764705882352941,25,1,7,0,0,0,1,2,3,7,1,8,6,0,0,0,3,3.253980000000001,3.7020280000000003,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +CHEMBL1650537,Cc1cn2c(-c3cn[nH]c3)cnc2c(Nc2cc(CN3CCC(F)CC3)ns2)n1,8.397940008672037,0.5277373270791984,-0.159117239668739,0.5277373270791984,0.09276615782906306,0.017972538452557967,14.224068965517231,13.494137931034485,14.212392823862091,150,0,0.18931052607557564,-0.3275376996307504,0.3275376996307504,0.18931052607557564,0.05469678953626635,0.08561236623067776,0.11296076099881094,1.7376240710773019,69.06101289425763,1.3197633866540261,1.2022041906025087,0.5062213140827752,0.7730165706096214,0.6215244732696967,0.28976479986052617,0.18046887439647857,0.20639462276672327,0.11647318954397637,0.13854723076109282,0.07726738593194041,0.09567549550797064,-0.0982758620689655,3.5813990671975087,0.21800095593508928,0.25948535138745193,3.7253640282778777,6.901582750737405,0.18309701218235777,0.3844416900482705,0.4927146260434192,0.0,0.0,0.0,0.4962865825757018,14.358372089569237,9.472221789717487,0.0,0.0,1.2818154220408418,1.9041269722926637,1.298349163558491,1.146845233502255,0.9654692616157688,0.0,1.1666375767692159,0.0,1.1118044358269779,18.303532721920263,42.12185554061926,0.0,11.257379486545457,0.18309701218235777,15.209359802197715,0.0,11.532486611566675,1.8266874527465904,0.22402964428675673,6.851892117295679,1.7302799434341345,30.733999550922338,2.8236841566564013,16.904556707313183,0.0,3.0010344827586213,4.137286715204142,0.0,0.15139362233361447,21.934006522438132,4.400694606261793,0.0,0.0,0.0,0.0,19.440178831611902,0.9954516111686406,6.587989871578686,0.003198833028588381,0.24333288025290048,0.10498844507907937,-0.13839384824696452,-0.02920879125401254,-0.04002992561294173,-0.5634420829973855,-0.5276307841268014,0.0,0.3684210526315789,29,2,8,0,1,1,0,4,4,8,2,10,6,0,1,1,5,3.5618200000000018,3.7968758620689664,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,6,2,0,0,0,1,1,0,0,0,1,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3109961,COc1ccccc1Nc1cc2[nH]c(-c3cnn(C)c3C)cc2cn1,4.0,0.3475972694633409,-0.13023437688097128,0.3475972694633409,0.08560344764016126,0.023666960074794078,13.335799999999988,12.569720000000002,13.326358409120024,126,0,0.1681891258278749,-0.4945800966620745,0.4945800966620745,0.1681891258278749,0.054400000000000004,0.0928,0.128,2.0832235526259812,72.64569985856596,1.3436390183265017,1.245772650718546,0.4857726507185462,0.7964925788266057,0.6406054664485437,0.264828378808547,0.18480162399390918,0.18480162399390918,0.12436454306012207,0.12436454306012207,0.07942138038048552,0.07942138038048552,-0.13119999999999998,3.3561826803565893,0.19513672317140848,0.2390331961591221,2.7144660073966005,6.8732833778500675,0.6009471830927071,0.4626949844447573,0.11294736626625605,0.0,0.0,0.0,0.18727211740580738,4.9839785209472085,5.098681808301038,0.0,0.4833934966130636,0.9991659296114226,1.990128954065614,1.5797311511947845,1.2345377026140074,0.896326959383986,0.0,0.7896586613849073,6.975826900282246,0.2740756846918272,12.347765812170964,54.29423066245774,0.0,17.00689131982936,0.40186705228353703,11.50524905251859,5.749511833283905,0.0,1.0711767597402109,0.27903307601128985,6.851892117295679,1.1598729379896877,48.600302667609284,2.8236841566564013,22.160304418626513,0.0,2.7103999999999995,4.58299869773389,0.0,0.0,14.968619558662812,0.0,0.0,0.0,0.0,0.0,10.082660329248245,1.2345377026140074,6.275363638740439,0.0,0.1614868328504241,0.12071152334933974,-0.16434157512625358,-0.07607404689356002,-0.22009916203774504,-0.07326075364527881,-0.2568854136897275,-0.13023437688097128,0.15789473684210525,25,2,6,0,0,0,1,3,4,5,2,6,7,0,0,0,4,4.024020000000002,3.9723760000000006,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,3,2,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3675466,CC(Nc1ncnc2c(C(N)=O)cccc12)c1cccc(NC(=O)C2=CCC(Br)C=C2)c1,9.585026652029182,0.4263609539423119,-0.12401061761562002,0.4263609539423119,0.4108305227253646,0.01373651868131094,15.386781249999993,14.693781250000006,15.346740220125021,162,0,0.2548233985488989,-0.3655307152432725,0.3655307152432725,0.2548233985488989,0.044921875,0.072265625,0.0986328125,2.109171173378947,69.54741203206292,1.302914679804203,1.1697040322323982,0.5317664240797327,0.7636244253059901,0.5983920652724413,0.28602156175861376,0.17862275474442044,0.20340395066808767,0.11536879049626157,0.12775938845809517,0.07246130224762266,0.07865660122853947,-0.10999999999999996,3.065678602438501,0.23498528448412337,0.2911131339009521,4.6999502743484225,7.020175817120639,0.5106044900719695,0.4216247827491086,0.17648025979102508,0.0,11.814359458703011,0.0,0.29965857400448886,9.967957041894417,0.0,0.0,1.6316692268451853,1.342435729405476,0.927327877054295,1.0055121498604787,1.2471905216412629,1.5672649169141253,0.0,0.31149865755920053,5.719716975726273,0.7514354748897876,10.619626706576751,83.45652541917926,0.0,0.0,0.5106044900719695,11.50524905251859,0.0,15.929943897949348,0.8307981940654977,0.14982928700224443,0.0,1.8699313645470166,72.32962243578527,5.6473683133128025,10.902924932081056,0.0,3.4375,4.939510554414318,0.3424947788848082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.897900939843765,0.9046957427564543,5.687088579836673,0.08128601656209666,0.9631414978397866,-0.05678851833819267,-0.2102669430277542,-0.14942471763984524,-0.5205753282980887,-0.13659580265238994,-0.12401061761562002,0.0,0.16666666666666666,32,4,7,1,0,1,2,1,3,5,3,8,7,0,0,0,4,4.490100000000003,4.053759375000001,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,0,0,0,0,0,0,0,1,2,2,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3685287,NC(=O)c1cccc2c(NCc3ccc(F)c(NC(=O)c4ccc(OC(F)(F)F)cc4)c3)ncnc12,9.657577319177792,0.4311338265993487,-0.1533893267527361,0.4311338265993487,0.3808123484670549,0.00886627136889568,13.872888888888886,13.396888888888894,13.864632007888902,184,0,0.5725963035812469,-0.4057992426418035,0.5725963035812469,0.4057992426418035,0.031635802469135804,0.05324074074074074,0.07330246913580246,1.977110615398609,61.580112208076784,1.126529918702786,0.9436852983591191,0.47146307613689686,0.6721606469680227,0.48260391913043954,0.25235796407488864,0.173084769722867,0.173084769722867,0.10758358241341115,0.10758358241341115,0.06783970176835902,0.06783970176835902,-0.13166666666666665,3.0541497572177123,0.3025987408881567,0.2738784509241693,5.658967430109299,6.243927545004833,0.5854501843361964,0.6960757145083687,0.15687134203646674,0.0,11.814359458703011,6.362358859030383,0.266363176892879,14.358372089569237,0.0,13.171245143024459,0.3356899282035164,1.4973000320278709,0.484625983068826,0.9226844766122072,1.5376340848935743,0.9506259289806294,0.0,0.2768876956081783,5.719716975726273,0.3572005150929536,10.619626706576751,89.23513410673608,0.0,5.749511833283905,0.5854501843361964,29.06690924321787,5.749511833283905,0.0,0.7817965377674392,0.18046832456433182,5.817220841045895,1.2249802798179865,66.72755879059918,5.6473683133128025,10.902924932081056,0.0,3.3119444444444444,4.252664673768988,0.6322310975324474,0.12195597354652277,5.309813353288376,0.0,0.0,0.0,0.0,0.0,14.704819995694464,0.6518674873201573,5.415436316894145,0.0,0.9179614509025608,-0.054410587313876185,-0.19792120354333184,-0.2389825782588931,-0.39510080250674195,-0.1850170080752757,-0.10455818069118011,0.0,0.08333333333333333,36,4,8,0,0,0,3,1,4,6,3,12,7,0,0,0,4,4.6308000000000025,3.4127999999999994,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,1,0,0,0,0,0,0,0,3,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL1096095,Cn1nc(C(N)=O)c2c1-c1nc(Nc3ccccc3Oc3ccccc3)ncc1CC2,5.0,0.4118583782759153,-0.10916999030748743,0.4118583782759153,0.038453483245149744,0.01672315705335356,13.304935483870963,12.654612903225814,13.295637867096792,154,0,0.2690123532349573,-0.455188600630201,0.455188600630201,0.2690123532349573,0.04162330905306972,0.06867845993756504,0.09573361082206036,1.8475953645369603,68.95539947348915,1.245402687616374,1.1290251017395958,0.4838638114170153,0.7515564138543047,0.5851639096675955,0.2676916262321157,0.18528732622139277,0.18528732622139277,0.124793561562557,0.124793561562557,0.08441180056956496,0.08441180056956496,-0.13548387096774192,3.4666014539032544,0.222989845979692,0.24402280658263575,3.4803555098308188,6.662630728091702,0.5085933317036999,0.18546812365431953,0.5057730988102248,0.1918819122898869,5.907179729351506,0.0,0.30568839094248407,9.967957041894417,5.098681808301038,0.0,0.9745836625263379,1.3702895524196428,0.9131446289027594,0.9929944460026671,1.1958007041209748,0.5659001704845665,0.0,0.6370465092045368,12.695543876008518,0.41115644524705675,5.309813353288376,77.37549455802687,0.0,22.886879656264732,0.5085933317036999,11.635725555670057,11.49902366656781,0.0,0.8276006940223272,0.6361831194497098,0.0,1.4489762457163884,60.55466357978441,4.235526234984602,11.387855989696922,0.0,3.4822580645161296,4.6208604250961445,0.15466248980876846,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.066638850195453,1.041138214312206,5.463493361544602,0.0,0.660705546423926,0.11690872422572621,-0.21212118866623925,-0.14939363231486041,-0.2716687613430019,-0.2546325919792149,-0.10866780197695816,0.0,0.13043478260869565,31,3,8,1,0,1,2,2,4,7,2,8,6,0,0,0,5,3.6105000000000027,3.754858064516129,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,2,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3675526,CC(C)N(C)C[C@@H](Nc1ncnc2c(C(N)=O)cccc12)c1ccccc1,6.853871964321763,0.47439737590256875,-0.1755146905298471,0.47439737590256875,0.6056259993576676,0.024934275403954338,13.461666666666655,12.52833333333334,13.452070756296322,140,0,0.2504173870671443,-0.36553071524327246,0.36553071524327246,0.2504173870671443,0.05075445816186557,0.0823045267489712,0.10973936899862825,2.8020952246621826,70.23637228526032,1.511352533621717,1.4127524543690242,0.48682652844309826,0.8579724321343701,0.7141419596011702,0.25704415269376746,0.17341494620493803,0.17341494620493803,0.111096465131605,0.111096465131605,0.06889212153471438,0.06889212153471438,-0.1107407407407407,2.9820448866202667,0.18094683293696828,0.3014079959808111,4.228626415764229,7.195318284138653,0.5899792614764862,0.49970344622116575,0.15687134203646672,0.0,5.907179729351506,0.0,0.17757545126191931,9.967957041894417,0.0,0.0,1.3427597128140656,1.4195518534035996,1.272225149673075,1.0901804327109215,1.451361172400047,0.838072868121022,0.0,0.5506617323238849,5.719716975726273,0.9533173767144684,18.782499937886566,65.76962435866658,0.0,0.0,0.4085011232968388,5.817862777835028,0.0,0.0,1.4913194650016381,0.0,0.0,2.4370298187463595,54.642721375272586,4.235526234984602,10.902924932081056,0.0,3.1162962962962957,5.316269911618081,0.2283442866756312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.2230168857244152,7.624034870318334,0.0,0.6956433513136909,-0.06544680086254899,-0.16662553707694844,-0.1181867260934972,-0.7254386292784084,-0.048240292630541026,-0.658703198653044,0.0,0.2857142857142857,27,3,6,0,0,0,2,1,3,5,2,6,10,0,0,0,3,3.222100000000001,4.023244444444445,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3621515,CC(=O)Nc1cccc(-c2ccc(C(N)=O)c3[nH]c4cc(C(=O)N5CCN(C)CC5)ccc4c23)c1C,5.698970004336019,0.401593984061293,-0.11820578441902813,0.401593984061293,0.10881106229094994,0.011403368724933938,13.432555555555549,12.620555555555564,13.422973327444467,184,0,0.2535177033402239,-0.36553191610112384,0.36553191610112384,0.2535177033402239,0.03240740740740741,0.05632716049382716,0.07716049382716049,2.097051688845637,75.68476697060895,1.4030863055258411,1.2905781346914271,0.48502257913587166,0.8059531475928172,0.662802822026261,0.2658902003040435,0.1924421909159793,0.1924421909159793,0.13330576297695995,0.13330576297695995,0.09183071603420884,0.09183071603420884,-0.11583333333333333,3.423001997879085,0.1999535615310234,0.2534784477414371,4.093063451710322,6.9326370654294776,0.7168431405818017,0.0,0.15687134203646674,0.1640883258153196,11.814359458703011,0.0,0.3995447653393185,0.0,0.0,0.0,0.6713798564070328,1.5191041200922801,2.1721994166027416,0.7647015245376637,1.5083317713828837,1.2559659813027833,0.0,0.41046729810917243,5.719716975726273,0.38066067318309327,38.2730789908344,65.02970413639734,0.0,11.126902983393991,0.3063758424726291,5.687386274683562,0.0,0.0,1.818378543264743,0.1331815884464395,6.851892117295679,1.872230135132941,48.33934966130636,5.6473683133128025,32.93275284755611,0.0,3.098055555555555,5.246327280820683,0.3995447653393185,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,0.0,1.1087870060435643,6.707244110986467,0.0,1.085488303561933,-0.07782365437684471,-0.32312159688736053,-0.17660061722751083,-0.32387611163505414,0.0,-0.7871437677549638,0.0,0.25,36,4,8,0,1,1,3,1,4,4,3,8,7,0,1,1,5,3.7414200000000024,3.9499944444444406,0,0,0,0,0,1,1,0,0,0,3,3,0,0,0,2,2,1,0,1,0,1,0,0,0,0,0,3,0,1,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL4228587,CC(=O)Nc1ccc(Sc2nc(Nc3cc(C)[nH]n3)cc(N3CCN(C)CC3)n2)cc1,9.0,0.3962613670773012,-0.13028389698013762,0.3962613670773012,0.02649049666162817,0.016282888486435172,14.147129032258055,13.30170967741936,14.135323498451639,162,0,0.2207474129907662,-0.3538504003611028,0.3538504003611028,0.2207474129907662,0.04058272632674297,0.06763787721123829,0.09053069719042664,2.0947281269500726,66.30511522101106,1.4289703948177124,1.3191679143524966,0.5067968363179071,0.8191467190678771,0.6687652253611398,0.2808573477620382,0.1678127271319736,0.19934565640184138,0.09896798136937443,0.1239162607930509,0.062144328306043814,0.08314181782200558,-0.10032258064516128,3.3359760493129413,0.20100023137399636,0.3018297524790683,5.736199248305543,7.158170385794745,0.6586918118799261,0.375345985666776,0.4906395320851722,0.1905541848177905,0.0,0.0,0.31891108844048077,9.967957041894417,5.098681808301038,0.0,0.0,1.6051380257297492,2.5490589433918927,0.44218017940974835,1.3083067809990807,1.3164528802235893,0.0,0.8083308109235164,0.0,0.7663130384493497,48.48280207497325,41.948440240828226,0.0,0.0,0.5006302076589428,23.140974608188646,0.0,11.761884949391115,2.062216145339566,0.15466248980876846,6.851892117295679,1.421718287227717,46.30643220331825,4.235526234984602,0.0,0.0,3.2925806451612902,4.60726442654302,0.15466248980876846,0.0,22.16340486026257,0.0,0.0,0.0,0.0,0.0,15.066638850195453,1.1536442911903118,6.826105371415976,-0.0008545321503751023,0.5823238737555906,0.06126558212849996,-0.07085542462108327,-0.18264107472750768,-0.22947009562949075,0.0,-0.8595296141501072,0.0,0.3333333333333333,31,3,9,0,1,1,1,2,3,8,3,10,9,0,1,1,4,3.113120000000001,3.9747774193548393,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,5,3,0,0,1,0,1,0,0,0,0,0,1,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +CHEMBL3298400,CC(C)(C)CNC(=O)CC1CNC(=O)c2cc(-c3ccsc3)cn21,5.0,0.5720958519405788,-0.19659819916859259,0.5720958519405788,0.21821109693877538,0.037269360659773425,14.394499999999981,13.4285,14.38129574900003,128,0,0.2675106305419178,-0.35551069113533446,0.35551069113533446,0.2675106305419178,0.07291666666666667,0.1076388888888889,0.13715277777777776,2.4552165540072886,66.5402925128671,1.5505275116938204,1.4402660690788112,0.5159534266174662,0.8611395642505671,0.730257139840729,0.2895100310877211,0.18263050554853075,0.2081460237025222,0.1066995283346686,0.12796246012966148,0.0688211148683638,0.08795775348385738,-0.08666666666666666,3.2651213127173175,0.1815668928653538,0.2680750839529566,3.6966381000726614,7.418532742902453,0.6327802647653377,0.23724699978535255,0.11765350652735006,0.2461324887229794,5.907179729351506,0.0,0.3995447653393185,0.0,11.336785877934737,0.0,0.8564865146619599,1.407312841489815,2.0384521751119133,0.7076650382379751,1.7166120085156116,0.9646310556932395,0.0,0.6327802647653377,5.41499046939678,1.3727705717319194,12.99371936863189,34.66388944032501,0.0,11.126902983393991,0.44248444610736465,0.0,0.0,11.336785877934737,1.2239657697969275,0.19977238266965924,5.41499046939678,3.0092036908358746,28.969961445476546,2.8236841566564013,11.126902983393991,0.0,2.6304166666666666,4.982499256191395,0.3995447653393185,0.0,4.567099647791355,11.336785877934737,0.0,0.0,0.0,0.0,0.0,1.3170672431762922,7.74547937343146,0.0148978197431509,1.1189967303618509,-0.1359743433895837,-0.31503428740393097,-0.1921580787704731,-0.25904937238378467,-0.247907800755333,-0.9167500408333574,0.0,0.4444444444444444,24,2,5,0,1,1,0,2,2,4,2,6,4,0,0,0,3,3.0535000000000014,4.008204166666668,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +CHEMBL2170405,CS(=O)(=O)c1ccc(Nc2nccc(Nc3ccccc3Cl)n2)cc1,6.239369831963633,0.4968192910783362,-0.21422619321191988,0.4968192910783362,0.031005343495423165,0.028050354748724464,14.994119999999993,14.389320000000005,14.962416976000018,128,0,0.22863250688908268,-0.3388541823881425,0.3388541823881425,0.22863250688908268,0.044800000000000006,0.07519999999999999,0.1056,2.267547714428736,64.40623308874835,1.2322607363114546,1.0756625490560259,0.5385595701338732,0.7270888718366162,0.5445538173320624,0.32322183851621056,0.1660552222821883,0.2377786758365739,0.09760653740049036,0.13820970883147668,0.057474089093495086,0.07777567480898825,-0.10559999999999997,2.8550612859849185,0.2634050565139798,0.28326458098728524,4.461696774176289,6.8627555740317145,0.42478506826307005,0.23271451111340113,0.5064374917229562,0.23793357123945977,0.0,0.0,0.0,13.401775505276145,4.9839785209472085,0.0,0.9474310922223643,1.6918772381457226,0.8862592502050177,1.1725235450257943,1.1624536948479276,1.7831667053935467,0.0,0.39871828167577666,0.0,0.195819339020711,16.80355080769321,65.57729689352574,0.0,0.0,0.42478506826307005,23.140974608188646,0.0,11.600939890232516,0.9827871250935926,0.3934901254567001,0.0,0.7127944492085143,65.45014705530218,7.846317470397728,0.0,0.0,3.3592,4.385397288590647,0.3367118793731575,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.289779411084071,5.713516910515324,0.24076137186543903,0.23449212201390157,-0.01705096680595622,-0.0659634726841973,-0.0707973042933631,-0.35614463043775546,-0.18681005918369414,0.0,-0.21422619321191988,0.058823529411764705,25,2,6,0,0,0,2,1,3,6,2,8,6,0,0,0,3,4.020700000000002,3.984048,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 diff --git a/atomsci/ddm/test/integrative/import_transformer/data/scaled_descriptors/delaney-processed_curated_fit_short_with_rdkit_scaled_descriptors.csv b/atomsci/ddm/test/integrative/import_transformer/data/scaled_descriptors/delaney-processed_curated_fit_short_with_rdkit_scaled_descriptors.csv new file mode 100644 index 00000000..d056ae71 --- /dev/null +++ b/atomsci/ddm/test/integrative/import_transformer/data/scaled_descriptors/delaney-processed_curated_fit_short_with_rdkit_scaled_descriptors.csv @@ -0,0 +1,201 @@ +Compound ID,smiles,dummy_response,MaxEStateIndex_per_heavyatom,MinEStateIndex_per_heavyatom,MaxAbsEStateIndex_per_heavyatom,MinAbsEStateIndex,qed_per_heavyatom,MolWt_per_heavyatom,HeavyAtomMolWt_per_heavyatom,ExactMolWt_per_heavyatom,NumValenceElectrons,NumRadicalElectrons,MaxPartialCharge,MinPartialCharge,MaxAbsPartialCharge,MinAbsPartialCharge,FpDensityMorgan1_per_heavyatom,FpDensityMorgan2_per_heavyatom,FpDensityMorgan3_per_heavyatom,BalabanJ,BertzCT_per_heavyatom,Chi0_per_heavyatom,Chi0n_per_heavyatom,Chi0v_per_heavyatom,Chi1_per_heavyatom,Chi1n_per_heavyatom,Chi1v_per_heavyatom,Chi2n_per_heavyatom,Chi2v_per_heavyatom,Chi3n_per_heavyatom,Chi3v_per_heavyatom,Chi4n_per_heavyatom,Chi4v_per_heavyatom,HallKierAlpha_per_heavyatom,AvgIpc,Kappa1_per_heavyatom,Kappa2_per_heavyatom,Kappa3,LabuteASA_per_heavyatom,PEOE_VSA1_per_heavyatom,PEOE_VSA10_per_heavyatom,PEOE_VSA11_per_heavyatom,PEOE_VSA12_per_heavyatom,PEOE_VSA13,PEOE_VSA14,PEOE_VSA2_per_heavyatom,PEOE_VSA3,PEOE_VSA4,PEOE_VSA5,PEOE_VSA6_per_heavyatom,PEOE_VSA7_per_heavyatom,PEOE_VSA8_per_heavyatom,PEOE_VSA9_per_heavyatom,SMR_VSA1_per_heavyatom,SMR_VSA10_per_heavyatom,SMR_VSA2,SMR_VSA3_per_heavyatom,SMR_VSA4,SMR_VSA5_per_heavyatom,SMR_VSA6,SMR_VSA7,SMR_VSA8,SMR_VSA9,SlogP_VSA1_per_heavyatom,SlogP_VSA10,SlogP_VSA11,SlogP_VSA12,SlogP_VSA2_per_heavyatom,SlogP_VSA3_per_heavyatom,SlogP_VSA4,SlogP_VSA5_per_heavyatom,SlogP_VSA6,SlogP_VSA7,SlogP_VSA8,SlogP_VSA9,TPSA_per_heavyatom,EState_VSA1_per_heavyatom,EState_VSA10_per_heavyatom,EState_VSA11_per_heavyatom,EState_VSA2,EState_VSA3,EState_VSA4,EState_VSA5,EState_VSA6,EState_VSA7,EState_VSA8,EState_VSA9_per_heavyatom,VSA_EState1_per_heavyatom,VSA_EState10_per_heavyatom,VSA_EState2_per_heavyatom,VSA_EState3_per_heavyatom,VSA_EState4_per_heavyatom,VSA_EState5_per_heavyatom,VSA_EState6_per_heavyatom,VSA_EState7_per_heavyatom,VSA_EState8_per_heavyatom,VSA_EState9_per_heavyatom,FractionCSP3,HeavyAtomCount,NHOHCount,NOCount,NumAliphaticCarbocycles,NumAliphaticHeterocycles,NumAliphaticRings,NumAromaticCarbocycles,NumAromaticHeterocycles,NumAromaticRings,NumHAcceptors,NumHDonors,NumHeteroatoms,NumRotatableBonds,NumSaturatedCarbocycles,NumSaturatedHeterocycles,NumSaturatedRings,RingCount,MolLogP,MolMR_per_heavyatom,fr_Al_COO,fr_Al_OH,fr_Al_OH_noTert,fr_ArN,fr_Ar_COO,fr_Ar_N,fr_Ar_NH,fr_Ar_OH,fr_COO,fr_COO2,fr_C_O,fr_C_O_noCOO,fr_C_S,fr_HOCCN,fr_Imine,fr_NH0,fr_NH1,fr_NH2,fr_N_O,fr_Ndealkylation1,fr_Ndealkylation2,fr_Nhpyrrole,fr_SH,fr_aldehyde,fr_alkyl_carbamate,fr_alkyl_halide,fr_allylic_oxid,fr_amide,fr_amidine,fr_aniline,fr_aryl_methyl,fr_azide,fr_azo,fr_barbitur,fr_benzene,fr_benzodiazepine,fr_bicyclic,fr_diazo,fr_dihydropyridine,fr_epoxide,fr_ester,fr_ether,fr_furan,fr_guanido,fr_halogen,fr_hdrzine,fr_hdrzone,fr_imidazole,fr_imide,fr_isocyan,fr_isothiocyan,fr_ketone,fr_ketone_Topliss,fr_lactam,fr_lactone,fr_methoxy,fr_morpholine,fr_nitrile,fr_nitro,fr_nitro_arom,fr_nitro_arom_nonortho,fr_nitroso,fr_oxazole,fr_oxime,fr_para_hydroxylation,fr_phenol,fr_phenol_noOrthoHbond,fr_phos_acid,fr_phos_ester,fr_piperdine,fr_piperzine,fr_priamide,fr_prisulfonamd,fr_pyridine,fr_quatN,fr_sulfide,fr_sulfonamd,fr_sulfone,fr_term_acetylene,fr_tetrazole,fr_thiazole,fr_thiocyan,fr_thiophene,fr_unbrch_alkane,fr_urea +Carbophenthion,CCOP(=S)(OCC)SCSc1ccc(Cl)cc1,0,0.454454758755354,-0.26863254288054955,0.454454758755354,0.0276363693625592,0.019744837117602356,19.0486111111111,18.152611111111113,18.99854761455558,102,0,0.2476397515720412,-0.32194896053617705,0.32194896053617705,0.2476397515720412,0.07716049382716049,0.1111111111111111,0.1419753086419753,3.518993551043863,51.0786626601621,1.5162515966602195,1.3536899733793613,0.6925703000350028,0.8205485205869394,0.6633277614446941,0.510782931505912,0.12520560039835094,0.5265714140306619,0.06551372329546652,0.3426797903586053,0.033914269055140674,0.26341297049975404,0.04333333333333335,2.577656267044616,0.27266377348437226,0.4918350375435543,6.286951762872694,8.30855893883306,0.5026385735235352,0.0,0.0,0.31630764448766974,0.0,0.0,0.0,0.0,0.0,11.761884949391115,1.276814704796982,2.760017508549066,1.0079260070155789,1.7701413842503173,1.7210906234526193,2.9024968513974168,0.0,0.0,0.0,1.0332926505616185,18.154959354803516,29.192308144394506,0.0,0.0,0.0,0.0,0.0,40.438087236514846,1.0086088530446398,1.158575022892349,0.0,1.979773396295271,29.065158306170954,5.022633313741326,0.0,0.0,1.0255555555555556,3.9800040450047334,0.0,0.0,23.143609745504275,0.0,0.0,0.0,0.0,0.0,0.0,3.0215237333899094,7.27482585655303,0.5787013953947702,-0.031064136817278314,-0.18956677247380652,-0.26863254288054955,0.0,-0.15724010489678067,0.0,-0.7903570282127184,0.0,0.45454545454545453,18,0,2,0,0,0,1,0,1,5,0,7,10,0,0,0,1,5.420300000000004,4.850222222222224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +Perylene,c1cc2cccc3c4cccc5cccc(c(c1)c23)c54,0,0.4259781273620559,-0.027969130553455967,0.4259781273620559,0.021239606953892265,0.012172709186238084,12.615800000000004,12.010999999999997,12.6046950192,92,0,0.06294722286756059,-0.06101065729867257,0.06294722286756059,0.06101065729867257,0.0225,0.0375,0.052500000000000005,2.4408230397617183,72.21145955831491,1.177350269189626,1.1,0.5,0.7464101615137755,0.6,0.3,0.225,0.225,0.175,0.175,0.134375,0.134375,-0.12999999999999995,2.7593809320513794,0.20975581770590562,0.1743260783821579,1.1198586037116531,6.6498366064293535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6254512245979766,2.154489685785918,0.0,0.822455133702132,0.822455133702132,2.154489685785918,0.0,0.0,0.0,0.0,0.0,72.50902449195954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.822455133702132,72.50902449195954,0.0,43.089793715718365,0.0,0.0,3.6254512245979766,0.0,0.0,43.089793715718365,0.0,0.0,0.0,0.0,0.0,0.0,0.822455133702132,5.013934555303604,0.0,0.0,-0.038825585789871386,0.0,0.0,-0.30844230284706464,0.0,0.0,0.0,0.0,20,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,5,5.737200000000003,4.382600000000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Methanol,CO,0,3.0520833333333335,-1.2708333333333333,3.0520833333333335,2.5416666666666665,0.19264220223692158,16.020999999999997,14.004999999999999,16.013107374,14,0,0.20962966438668965,-0.3996302435573072,0.3996302435573072,0.20962966438668965,1.75,2.0,2.0,3.1684898726705697,18.65148445440323,2.603553390593274,2.4541241452319316,0.45412414523193156,1.2803300858899107,1.0561862178478973,0.10206207261596577,0.0,0.0,0.0,0.0,0.0,0.0,-0.02,1.3516441151533922,0.03671175858480749,0.4800000000000008,-27.040000000000028,9.620018519412026,2.5544040955536063,0.0,0.0,0.7155998286163171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5189762294412943,2.0561378342553303,4.610541929808937,0.0,1.4311996572326342,0.0,0.0,0.0,7.037952458882589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.7889801536112175,0.0,0.0,2.0561378342553303,0.0,0.0,0.0,0.0,10.115,3.5189762294412943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.7717376628716472,12.052083333333334,0.0,0.0,1.59375,0.0,0.0,0.0,0.0,0.0,-1.2708333333333333,1.0,2,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-0.3915,4.0714,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +d-Limonene,CC1=CCC(CC1)C(C)=C,0,0.8264120370370371,-0.3838425925925928,0.8264120370370371,1.523816609977324,0.048503449155951596,13.623800000000003,12.010999999999997,13.612520051199999,56,0,0.057545605380062356,-0.099849370815529,0.099849370815529,0.057545605380062356,0.22999999999999998,0.32999999999999996,0.4,4.183901939448396,65.34983971489392,2.1309401076758503,2.1,0.5,1.1092093147209607,1.05,0.25,0.1625,0.1625,0.0875,0.0875,0.04375,0.04375,-0.052000000000000005,2.3147519262307004,0.10500287602059302,0.30462804076265615,1.7285097165599768,8.611822084218621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.372931976817597,3.8716516623942576,1.781986123021286,0.41122756685106604,2.1932136898723518,0.0,0.0,0.0,5.893957685363079,3.2822558938579496,0.0,23.72931976817597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.893957685363079,5.475469583730307,23.72931976817597,0.0,0.0,0.0,0.0,6.244583639211853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1932136898723518,12.24399352796674,0.0,0.0,0.0,-0.31782454648526065,-0.37644675925925924,-0.16012731481481476,-1.1132523148148152,-0.8596759259259258,0.0,0.6,10,0,0,1,0,1,0,0,0,0,0,0,3,0,0,0,1,3.308900000000002,4.591200000000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Fenitrothion,COP(=S)(OC)Oc1ccc(N(=O)=O)c(C)c1,0,0.6577537757591048,-0.28456078264639195,0.6577537757591048,1.205038580246913,0.02752672958898329,16.308117647058808,15.596588235294114,16.295140006705903,94,0,0.3795196463794277,-0.4241224514170116,0.4241224514170116,0.3795196463794277,0.08996539792387542,0.13148788927335642,0.16262975778546712,3.7835839547429773,49.736663032428474,1.362516013405119,1.1672892313990055,0.5620494532771021,0.7461632386650888,0.5694955499091827,0.36690958530275775,0.14152444719526472,0.3052768316073209,0.08111992037094129,0.17077962462593704,0.04310161988511817,0.08135480149055785,-0.05941176470588235,2.4073276537259276,0.26977208663356883,0.32652030832053186,3.472275419065506,7.103494998760817,0.7983083226550266,0.338206578428465,0.0,0.0,5.687386274683562,6.718607232363179,0.5949598981626807,0.0,0.0,0.0,0.0,1.1139252666248394,2.4471121690749875,1.0153022384911559,2.055509129882104,1.4242852703344346,0.0,0.0,0.0,0.4030524774879811,14.075904917765177,33.80502588345245,0.0,5.749511833283905,0.2661027742183422,5.687386274683562,5.749511833283905,6.718607232363179,1.1176009392107558,1.226726494827193,16.966210386061253,1.294856127396449,18.127256122989884,0.0,0.0,0.0,4.166470588235295,3.9821953552291793,0.5949598981626807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.85435041206228,1.2336970491620267,5.969453967039833,0.27563427531506435,0.5824651881018197,0.6577537757591048,-0.156211952373542,-0.07088462236746547,-0.22310132386287845,0.0,-0.4798557524861798,-0.39512283617150595,0.3333333333333333,17,0,6,0,0,0,1,0,1,6,0,8,8,0,0,0,1,2.7993200000000007,3.9273176470588242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Dialifor,CCOP(=S)(OCC)SC(CCl)N1C(=O)c2ccccc2C1=O,0,0.577347996565776,-0.2331650309524418,0.577347996565776,0.32551256613756685,0.016492638809130253,17.124086956521737,16.37904347826088,17.087065840608712,126,0,0.2620782456005316,-0.3219183835718298,0.3219183835718298,0.2620782456005316,0.06049149338374291,0.0831758034026465,0.10207939508506617,2.8361856967751575,53.037992664650616,1.383368381142012,1.205299191599666,0.6089230741593976,0.7590187142011106,0.60264000431541,0.42601811214907076,0.15306774032987813,0.4201660723986393,0.1008044188536547,0.2902351089344405,0.06554482049881696,0.21834193987202677,-0.018695652173913047,2.9701569062056223,0.27739204216478497,0.35211798665655225,3.9780820758722486,7.522078018858662,0.3933693184097233,0.23260541096393153,0.0,0.24754511307730673,11.814359458703011,0.0,0.6299558303910487,0.0,0.0,11.600939890232516,0.5254277137098518,2.1294435884639027,0.47678558475485916,1.8440785738318382,1.8234549628896102,2.2738007754115386,0.0,0.21303955351523818,0.0,0.8284221168157297,18.950077209206285,35.29657781404717,0.0,0.0,0.0,0.0,0.0,28.67620228712373,1.783229167431748,0.9067108874809687,0.0,2.509680740914034,24.16967483065318,0.0,0.0,0.0,2.427826086956522,4.443042850678674,0.4169162768758106,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,0.0,2.4242689459647213,6.102232081106265,0.4349731322793923,1.1405432728647011,-0.16139691987906277,-0.3201277625023887,-0.3081485247077898,-0.17623725905313117,0.0,-0.6574901940210307,0.0,0.42857142857142855,23,0,5,0,1,1,1,0,1,6,0,9,10,0,0,0,2,3.878200000000003,4.199043478260871,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"7,12-Dimethylbenz(a)anthracene",Cc1c2ccccc2c(C)c3ccc4ccccc4c13,0,0.43065547052154196,-0.15896001629818599,0.43065547052154196,0.4993722180230111,0.013843259711468395,12.817400000000003,12.010999999999997,12.8062600256,96,0,0.06295681735762937,-0.06162899004742313,0.06295681735762937,0.06162899004742313,0.0325,0.065,0.1025,2.698207629461001,82.09615720255705,1.3696152422706633,1.3,0.5,0.8175426480542942,0.6875,0.2875,0.2125,0.2125,0.159375,0.159375,0.1140625,0.1140625,-0.11699999999999995,2.7711713161995633,0.1823584014233803,0.20380118073865203,1.4213973098015722,7.034290447309037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0212093538316473,2.8574016252387064,0.41122756685106604,0.68537927808511,1.0966068449361759,1.6158672643394385,0.0,0.0,0.0,0.6851892117295679,0.0,71.55109006002695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.703784234591359,1.6529519941058755,60.42418707663295,0.0,32.31734528678877,0.0,0.0,5.878610979070354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0966068449361759,6.596031579749732,0.0,0.0,-0.17617434859746361,-0.07864158163265304,0.0,-0.39907385530192835,0.0,-0.3171417942176872,0.0,0.1,20,0,0,0,0,0,4,0,4,0,0,0,2,0,0,0,4,5.763040000000005,4.421700000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Hexyne ,CCCCC#C,0,1.2102430555555557,-0.5682291666666667,1.2102430555555557,1.3722859977324262,0.05863406361705498,13.69099999999999,12.010999999999997,13.679708386666666,34,0,0.12382475651592365,-0.12010931716807507,0.12382475651592365,0.12010931716807507,0.3888888888888889,0.5555555555555556,0.6666666666666666,5.583773441038952,52.071086402273345,2.235702260395516,2.1666666666666665,0.5,1.1351100286299702,1.0416666666666667,0.20833333333333334,0.08333333333333333,0.08333333333333333,0.03125,0.03125,0.010416666666666666,0.010416666666666666,-0.07333333333333333,2.0052437236705822,0.09089300809081026,0.7599999999999997,3.5599999999999987,8.935481998891671,0.0,0.22845975936170337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.319835853677588,2.2041361697708433,1.0621541502215632,3.1182919844768926,0.0,2.284597593617033,0.0,0.0,0.0,0.0,4.328444470213969,0.0,0.0,0.0,12.319835853677588,0.0,0.0,0.0,0.0,0.0,0.0,12.319835853677588,6.6130420638310055,0.0,0.0,0.0,0.0,0.0,4.328444470213969,0.0,0.0,0.0,0.0,0.0,12.319835853677588,0.0,0.0,0.0,2.284597593617033,11.710371787603933,0.0,0.0,0.0,0.0,0.25422453703703707,0.0,-1.4102902966742255,-0.5543060279667423,0.0,0.6666666666666666,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1.8098,4.726333333333331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +"1,3-Benzenediol",Oc1cccc(O)c1,0,0.9139467592592593,-0.06759259259259257,0.9139467592592593,0.4923611111111106,0.06557301753637214,13.763999999999994,13.007999999999997,13.754597429,42,0,0.2930955253024167,-0.5078233297968214,0.5078233297968214,0.2930955253024167,0.171875,0.25,0.3125,3.5553379241657663,41.8530926650916,1.3597893971888562,1.2270620726159658,0.4770620726159658,0.8175139025074156,0.5905931089239487,0.2385310363079829,0.1447810363079829,0.1447810363079829,0.07239051815399145,0.07239051815399145,0.03879942574366239,0.03879942574366239,-0.14750000000000002,2.1641757289633556,0.17569698404160816,0.21726506702454224,0.9041418956093399,6.952879267643794,1.2772020477768031,1.4373779583209763,0.0,0.0,2.8623993144652684,0.0,0.0,0.0,0.0,0.0,0.7553023384579118,1.5106046769158237,0.7553023384579118,0.6853792780851101,1.962581325861913,0.0,2.8623993144652684,0.0,0.0,0.0,0.0,24.16967483065318,0.0,11.49902366656781,0.0,0.0,11.49902366656781,0.0,1.6350019620849616,0.0,0.0,0.6853792780851101,24.16967483065318,0.0,0.0,0.0,5.0575,4.458587312152623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,1.0431791923932687,5.275069444444444,0.0,0.0,0.9906018518518518,0.0,-0.1230902777777777,-0.26758101851851834,0.0,0.0,0.0,0.0,8,2,2,0,0,0,1,0,1,2,2,2,2,0,0,0,1,1.0977999999999999,3.721449999999999,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +nevirapine,Cc3ccnc4N(C1CC1)c2ncccc2C(=O)Nc34 ,0,0.6606787131519273,-0.16057300524376422,0.6606787131519273,0.06943263416477707,0.04308580625432095,13.31519999999999,12.609599999999999,13.305838053400015,100,0,0.259040848923194,-0.3184743028957275,0.3184743028957275,0.259040848923194,0.075,0.11750000000000001,0.1575,2.2561509939783906,63.0608931811301,1.2959883530919116,1.1848551336231847,0.4848551336231847,0.7667564324352896,0.6206899460240851,0.27332926624908715,0.1959503473204158,0.1959503473204158,0.13656774513810382,0.13656774513810382,0.0912973639798205,0.0912973639798205,-0.12150000000000001,3.057425241892186,0.20183107045365561,0.2015211227464718,1.5916576426488964,6.796985157041073,0.5104861542069428,0.2908931388917514,0.36148524280816147,0.0,5.907179729351506,0.0,0.2397268592035911,9.967957041894417,0.0,0.0,0.0,2.1644224767320663,1.397949639158535,0.9737694551700938,1.201312024630644,1.161514577985256,0.0,0.4983978520947209,0.0,1.2807817194152042,10.209723084138854,41.5999495280134,0.0,0.0,0.5104861542069428,17.323111830353618,0.0,0.0,1.0946514619797783,0.0,6.851892117295679,2.3243575600168733,30.473046544619407,1.4118420783282006,0.0,0.0,2.906,4.52229377380113,0.2397268592035911,0.0,5.309813353288376,4.899909730850478,0.0,0.0,0.0,0.0,9.967957041894417,0.9615851654270529,5.620782621960821,0.0,1.0485260298563868,-0.0034716317082388536,-0.14314734504913074,-0.1615078184051398,-0.29013975169543127,-0.39380243304883694,-0.16057300524376422,0.0,0.26666666666666666,20,1,5,1,1,2,0,2,2,4,1,5,2,1,0,1,4,2.6512200000000004,3.816260000000001,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +Diisopropyl ether ,CC(C)OC(C)C,0,1.0674107142857143,-0.5549107142857146,1.0674107142857143,3.7072916666666664,0.0737773043203177,14.596714285714276,12.580714285714285,14.586352152571427,44,0,0.05975191070812216,-0.37614367594581366,0.37614367594581366,0.05975191070812216,0.1836734693877551,0.24489795918367346,0.2857142857142857,6.154787845104639,43.269481572065025,2.5295866830266496,2.486892612923409,0.486892612923409,1.243872397312364,1.2011783272091232,0.2011783272091233,0.10861576615426127,0.10861576615426127,0.029160592175990218,0.029160592175990218,0.014580296087995109,0.014580296087995109,-0.005714285714285714,2.0920500810351244,0.08865079715686741,0.4324073759507766,5.960000000000001,9.335299118809841,0.6766947076857213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9153669241689597,2.3498718105775196,2.1287933094629166,3.418211820026161,0.0,0.0,0.0,0.0,5.652514931868955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7371480076999966,0.6766947076857213,0.0,6.656884036509404,0.0,0.0,0.0,0.0,1.3185714285714287,5.652514931868955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,2.7415171123404396,14.799702380952384,0.0,0.0,0.0,0.0,0.0,0.0,-1.1098214285714287,-2.118452380952381,0.0,1.0,7,0,1,0,0,0,0,0,0,1,0,1,6,0,0,0,0,1.8197999999999999,4.479571428571425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2-Napthol,Oc1ccc2ccccc2c1,0,0.7077651515151515,-0.04945028516457086,0.7077651515151515,0.2066666666666661,0.05472873363670379,13.106636363636369,12.373545454545452,13.096137716,54,0,0.29309261584145274,-0.507943524733119,0.507943524733119,0.29309261584145274,0.09917355371900825,0.17355371900826447,0.24793388429752064,3.177052230002994,63.31453159532918,1.3164190430075278,1.2189316627694422,0.49165893549671486,0.802133965694951,0.6238520396087086,0.26855674047563016,0.17764764956653922,0.17764764956653922,0.11155109751054235,0.11155109751054235,0.0694587776783613,0.0694587776783613,-0.13636363636363635,2.3824747226782095,0.1823162228567634,0.20673440709112526,1.0493060628195763,6.93033960571799,0.46443710828247387,0.5226828939349004,0.0,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,2.74655395802877,2.077935076750562,0.0,0.8723008993810492,1.336738007663523,0.9793134935390537,1.4311996572326342,0.0,0.0,0.0,0.0,42.29693095364306,0.0,5.749511833283905,0.0,0.0,5.749511833283905,0.0,0.5945461680308951,0.0,0.0,0.8723008993810492,42.29693095364306,0.0,10.772448428929591,0.0,1.839090909090909,4.367858435175179,0.0,0.0,10.772448428929591,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.0024099591294704,5.49767103432282,0.0,0.0,0.3374261964886966,0.0,-0.04524153095581665,-0.3201587301587299,0.0,0.0,0.0,0.0,11,1,1,0,0,0,2,0,2,1,1,1,1,0,0,0,2,2.5454,4.146618181818184,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +o-Nitrotoluene,Cc1ccccc1N(=O)=O,0,1.0712668178382463,-0.2973425925925926,1.0712668178382463,0.7993287037037036,0.04379118656914492,13.713800000000006,13.008199999999999,13.7047678464,52,0,0.271791321288604,-0.2583009410225935,0.271791321288604,0.2583009410225935,0.16999999999999998,0.24,0.3,3.8558408071727808,49.62211814320376,1.354145188432738,1.1763710176427682,0.47637101764276835,0.7586110083065902,0.5838755169420089,0.23387551694200898,0.14807165828350277,0.14807165828350277,0.08502792841475397,0.08502792841475397,0.044283233881378635,0.044283233881378635,-0.13799999999999998,2.1712453423467966,0.20514226647277453,0.24731969036707446,1.1271362188713587,6.828411445756807,0.0,0.0,0.0,0.0,5.687386274683562,0.0,1.0114318268765572,0.0,0.0,0.0,1.8127256122989883,0.6851892117295679,1.5718145867870947,1.0406345273498552,1.451862094200921,0.5687386274683562,0.0,0.0,0.0,0.6851892117295679,0.0,39.847444591115746,0.0,0.0,0.0,5.687386274683562,0.0,0.0,0.49233110488176707,0.0,16.966210386061253,1.5158761384888533,24.16967483065318,0.0,0.0,0.0,4.314,4.719571576314708,1.0114318268765572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.959530989319154,5.0459871976568405,0.0,0.9601117252456536,1.0712668178382463,-0.20652777777777773,0.0,-0.34849537037037026,0.0,-0.2973425925925926,0.0,0.14285714285714285,10,0,3,0,0,0,1,0,1,2,0,3,2,0,0,0,1,1.9032200000000001,3.7833400000000013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Nerol,CC(C)=CCC/C(C)=C\CO,0,0.7189920033670034,-0.36110690235690246,0.7189920033670034,1.7545840944402455,0.056102844839251896,14.023000000000014,12.373545454545452,14.012342290545455,64,0,0.21049878284230902,-0.39229736991721587,0.39229736991721587,0.21049878284230902,0.1487603305785124,0.23140495867768596,0.2892561983471074,7.255129943687736,59.47509751778007,2.183318896176823,2.128022571860351,0.49165893549671486,1.124007107672238,1.0329429486996178,0.2231021950210847,0.12291473387417871,0.12291473387417871,0.05009373057345299,0.05009373057345299,0.02168463966436208,0.02168463966436208,-0.05090909090909091,2.4123575284576284,0.1123268520614864,0.5608712838518625,7.335554906673255,8.619536091488573,0.46443710828247387,0.0,0.0,0.1301090597484213,0.0,0.0,0.0,0.0,0.0,0.0,2.113668413837243,3.0274114685950724,1.6199873845648052,1.0947290425088334,2.58288214963645,0.0,1.4311996572326342,0.0,0.0,3.0274114685950724,6.558985242916289,23.25035255220967,0.0,0.0,0.0,0.0,0.0,0.0,1.1908175537505576,0.0,0.0,5.145856509949054,23.25035255220967,0.0,0.0,0.0,1.839090909090909,5.7373512681519765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.2485541011023975,12.151385157317696,0.0,0.0,0.3236204304954306,-0.32807383405101653,0.0,-0.33561486463272167,-0.719758254311826,-1.3036798469387758,0.0,0.6,11,1,1,0,0,0,0,0,0,1,1,1,8,0,0,0,0,2.6714000000000016,4.500709090909094,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +tetrachloroguaiacol,COc1c(O)c(Cl)c(Cl)c(Cl)c1Cl ,0,0.5345313196503673,-0.2149414452390643,0.5345313196503673,0.1541896573444188,0.047031299713265994,20.147615384615378,19.83746153846154,19.992041545230776,72,0,0.29334819146295604,-0.5031513036231219,0.5031513036231219,0.29334819146295604,0.08875739644970414,0.13609467455621302,0.17751479289940827,3.4699914846886513,34.51734146961803,1.0291011675008348,0.7560272671511257,0.6809284813106502,0.5912736791896962,0.3674268978598547,0.336935328750089,0.1550953314690987,0.27139209239501483,0.09885476074213033,0.2348066955977768,0.0525048121694222,0.1183938849522013,-0.001538461538461544,2.216829706246537,0.4970151240932497,0.3084080673307645,1.7678263672950296,7.740287798609357,0.7573593188390201,0.7727128174986656,0.8845402820436777,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,3.5695199662253896,0.0,0.0,1.6304226734519922,1.073688216416763,3.5695199662253896,1.4311996572326342,0.0,0.0,0.0,7.037952458882589,20.090533254965305,0.0,11.49902366656781,0.36437407336923455,0.0,11.49902366656781,46.40375956093006,1.0444584851709566,0.0,0.0,0.31632889757774313,0.0,20.090533254965305,0.0,0.0,2.266153846153846,1.4259212404192614,0.0,0.0,20.090533254965305,0.0,0.0,0.0,0.0,0.0,9.84567114490726,3.9959411451287203,2.4770727222512936,1.7605616121092307,0.0,0.2516476854274475,0.0,-0.06707561728395052,0.0,0.0,0.0,-0.2149414452390643,0.14285714285714285,13,1,2,0,0,0,1,0,1,2,1,6,3,0,0,0,1,4.014400000000001,4.207600000000001,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Tricresyl phosphate,Cc1ccc(OP(=O)(Oc2cccc(C)c2)Oc3ccccc3C)cc1,0,0.5543170251540785,-0.23411804011134382,0.5543170251540785,1.0841912306776604,0.018538601189305767,14.168038461538451,13.35388461538462,14.158374837769255,134,0,0.6465882870477924,-0.38593010416813583,0.6465882870477924,0.38593010416813583,0.02958579881656805,0.0591715976331361,0.08875739644970414,2.4728368633667692,69.20595613600368,1.404370199575881,1.291546413744439,0.5182551518598202,0.8107551414319756,0.6574103530398467,0.3097408717583254,0.1666710503826283,0.22213834840205451,0.09486495113590124,0.14173198770340517,0.056910497528695286,0.09930005973393655,-0.1042307692307692,2.908293478551906,0.20770259183884532,0.29506256060960434,4.676969996810606,7.0398094131282525,0.5219708263513636,0.6634052115327583,0.0,0.0,0.0,7.822697123132171,0.0,0.0,4.565048284931329,0.0,1.840783940205387,2.3805643412922115,0.4744933463666146,0.6326577951554861,1.804700748063132,0.30087296627431426,0.0,0.0,0.0,0.7906029366110399,0.0,89.19937896705054,0.0,17.248535499851716,0.5219708263513636,0.0,17.248535499851716,7.822697123132171,0.0,0.1755787801896665,20.555676351887037,1.7490878521025244,72.50902449195954,0.0,0.0,0.0,1.7215384615384617,5.185626459304672,0.1755787801896665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.629121967873465,7.530540055127871,0.0,0.0,0.0,-0.13889235091841512,-0.16285514116615316,-0.570235657711838,0.0,-0.3838405746218321,-0.23411804011134382,0.14285714285714285,26,0,4,0,0,0,3,0,3,4,0,5,9,0,0,0,3,6.256760000000005,3.962596153846155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4-Chloroanisole,COc1ccc(Cl)cc1,0,0.8225977366255144,-0.3150011547829008,0.8225977366255144,0.36769274376417216,0.06500697497550073,15.842777777777785,15.058777777777777,15.779838058222222,48,0,0.11846265561702203,-0.49676675880782234,0.49676675880782234,0.11846265561702203,0.1728395061728395,0.2469135802469136,0.30864197530864196,3.4019145833133173,44.302124721958315,1.4079120440360338,1.2540236403858989,0.5602379677212828,0.794283669667252,0.6219145029964974,0.2750216666641893,0.13835205048361232,0.1803481030401931,0.07484614038713759,0.095844166665428,0.037423070193568796,0.047922083332714,-0.07666666666666667,2.172226073828985,0.210495534410911,0.3042399600946999,1.6113178169128046,7.671994465717424,0.5263181059777833,0.6388346481426561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2889933211369462,2.685519425628131,0.5580703681934807,1.8481402613415696,1.592463649665732,1.2889933211369462,0.0,0.0,0.0,0.0,7.037952458882589,29.192308144394506,0.0,5.749511833283905,0.5263181059777833,0.0,5.749511833283905,11.600939890232516,0.7819947176536209,0.0,0.0,1.066145543687949,24.16967483065318,5.022633313741326,0.0,0.0,1.0255555555555556,4.1063487914244075,0.0,0.0,5.022633313741326,0.0,0.0,0.0,0.0,0.0,4.736862953800049,2.355138864824895,6.0488245709806545,0.6133602082808431,0.0,-0.04085474930713024,0.0,-0.06950617283950611,-0.25225480109739357,0.0,0.0,-0.3150011547829008,0.14285714285714285,9,0,1,0,0,0,1,0,1,1,0,2,2,0,0,0,1,2.3486000000000002,4.222666666666668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Tetrachloromethane,ClC(Cl)(Cl)Cl,0,0.9652777777777777,-0.32222222222222213,0.9652777777777777,1.6111111111111107,0.09395910727055093,30.7646,30.7646,30.375082143999997,32,0,0.26568521128753525,-0.06642130282188381,0.26568521128753525,0.06642130282188381,0.16,0.16,0.16,3.0237157840738176,3.8238830957527497,0.9,0.40237157840738175,1.0071147352221455,0.4,0.15118578920369088,0.4535573676110727,0.08571428571428569,0.7714285714285715,0.0,0.0,0.0,0.0,0.23199999999999998,0.7219280948873623,1.232,0.34836965138416415,38.291985731272305,9.99046318707125,0.0,0.0,0.0,0.0,3.2517177575741014,0.0,0.0,0.0,0.0,0.0,9.280751912186012,0.0,0.0,0.0,0.0,9.280751912186012,0.0,0.0,0.0,0.6503435515148203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.40375956093006,0.6503435515148203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6503435515148203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.280751912186012,-0.32222222222222213,3.8611111111111107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,2.5529,5.2286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6-methoxypteridine,COc2cnc1ncncc1n2,0,0.6226429831191735,-0.23060780620118418,0.6226429831191735,0.1223223733938017,0.050668367930107545,13.512666666666673,13.008666666666668,13.504513400999999,60,0,0.23229375639217859,-0.47987891704366287,0.47987891704366287,0.23229375639217859,0.125,0.20833333333333334,0.2847222222222222,2.6107592661144574,51.24064018635695,1.1249696267558744,0.9747585560386414,0.4747585560386413,0.6883199010280766,0.49559188937197457,0.2455918893719746,0.15418738548119534,0.15418738548119534,0.09558155583826854,0.09558155583826854,0.05659788701953267,0.05659788701953267,-0.14833333333333334,2.1768465504597048,0.24415476111787837,0.22411142921772828,1.0480546041026457,6.408330826660713,0.3947385794833374,1.099235915646059,0.470598101730644,0.4899990280362809,0.0,0.0,0.0,19.935914083788834,0.0,0.0,0.0,0.0,0.0,2.1864613051136006,1.0801178575684474,0.9303231615319992,0.0,1.6613261736490694,0.0,0.0,7.037952458882589,18.64916213559575,0.0,5.879988336435371,0.3947385794833374,0.0,5.879988336435371,0.0,2.247822211889285,0.0,0.0,0.6853792780851101,18.64916213559575,0.0,11.16387793838399,0.0,5.065833333333334,2.1161839766749124,0.0,0.0,17.33677314919875,0.0,0.0,0.0,0.0,0.0,24.67277703758888,0.6853792780851101,3.9439785420340976,0.0,1.19201668398841,0.0,-0.020513747165532836,-0.04418745275888131,0.0,-0.11151955323024264,0.0,-0.23060780620118418,0.14285714285714285,12,0,5,0,0,0,0,2,2,5,0,5,2,0,0,0,2,0.42839999999999984,3.473333333333334,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Anilofos,COP(=S)(OC)SCC(=O)N(C(C)C)c1ccc(Cl)cc1,0,0.6520682836626713,-0.23725033068783083,0.6520682836626713,0.6513630637440162,0.03192662460187582,17.517142857142844,16.605142857142862,17.477297608476217,118,0,0.24679590095409168,-0.32503075994946856,0.32503075994946856,0.24679590095409168,0.07482993197278912,0.10430839002267575,0.1292517006802721,4.155661701619035,53.96336054392457,1.5352439284322217,1.3720777674442124,0.6236658292953468,0.825211375931128,0.6741236168582143,0.43306154448555695,0.14166169237650145,0.4345031061027426,0.08095059812518737,0.25407628408591654,0.043516086084551875,0.12047716773242138,-0.004761904761904771,2.6713926203186147,0.24756392114072023,0.40528609571245555,5.5482975261266425,7.918909636817792,0.6641620978225768,0.0,0.0,0.5524151109585504,0.0,0.0,0.22831129447961057,0.0,0.0,0.0,1.0944126041116988,2.3657292930420564,1.9890421630429282,0.9896810001439322,1.8993544797490307,2.4798868752284497,0.0,0.0,0.0,0.9391274620448097,24.680771533765814,29.192308144394506,0.0,0.0,0.23332903480240372,5.687386274683562,0.0,28.67620228712373,1.5098063809817375,1.2213755998159097,0.0,1.8927712762774072,24.16967483065318,5.022633313741326,0.0,0.0,1.8461904761904764,4.869742132477505,0.22831129447961057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.047494323423635,2.354867073624066,7.410892130533896,0.4679463522820907,0.6210509949129562,-0.04058476145258793,-0.4927411377910956,-0.11307843375445416,-0.43591127331904567,0.0,-0.38736498038368794,-0.335764446583629,0.46153846153846156,21,0,4,0,0,0,1,0,1,5,0,8,11,0,0,0,1,4.331900000000004,4.515952380952383,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +m-Methylaniline,Cc1cccc(N)c1,0,0.9432436342592593,-0.34865740740740736,0.9432436342592593,0.08592592592592574,0.06253524995348568,13.394499999999994,12.260499999999999,13.384187411,42,0,0.1562158971724655,-0.39872085761311676,0.39872085761311676,0.1562158971724655,0.234375,0.359375,0.453125,3.747723312541782,56.235399461651795,1.6926814855409225,1.6184016994374948,0.49340169943749473,0.9482637603832378,0.796004248593737,0.24670084971874737,0.1529508497187474,0.1529508497187474,0.07647542485937368,0.07647542485937368,0.04173156864453026,0.04173156864453026,-0.12250000000000001,2.1129569318075276,0.12391249000547067,0.23307777493719298,0.9971092570832982,7.737135462111663,0.7149646219657841,0.0,0.35296051958205016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5106046769158237,3.062522628039908,1.2249577428992777,0.6853792780851101,1.5523742562309928,0.7109232843354453,0.0,0.0,0.0,0.8564865146619599,5.719716975726273,29.733126322350174,0.0,0.0,0.7149646219657841,5.687386274683562,0.0,0.0,0.0,0.0,6.851892117295679,1.8948451731110667,24.16967483065318,2.8236841566564013,0.0,0.0,3.2525,5.284050589291177,0.0,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,0.0,1.5523742562309928,8.16248263888889,0.0,0.0,0.0,-0.17623553240740725,0.0,-0.3563396990740739,0.0,-0.34865740740740736,0.0,0.14285714285714285,8,2,1,0,0,0,1,0,1,1,1,1,2,0,0,0,1,1.5772199999999998,4.448924999999999,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2,3,4-Trimethylpentane",CC(C)C(C)C(C)C,0,1.015625,-0.5729166666666667,1.015625,4.141666666666667,0.06468634612207945,14.278999999999987,12.010999999999997,14.267606321999999,50,0,0.03051272547142897,-0.06250911399286939,0.06250911399286939,0.03051272547142897,0.125,0.1875,0.21875,7.684494187794893,54.97003846166289,2.75,2.75,0.5,1.34375,1.34375,0.21875,0.140625,0.140625,0.0625,0.0625,0.015625,0.015625,0.0,2.2788128975337743,0.0784,0.3888888888888889,2.34375,9.822914353953301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2824325733098,2.2102341320111547,3.0842067513829945,0.0,3.0842067513829945,0.0,0.0,0.0,17.681873056089238,4.2824325733098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.681873056089238,7.366639324692802,0.0,0.0,0.0,0.0,0.0,6.492666705320953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0842067513829945,16.785156249999996,0.0,0.0,0.0,0.0,-1.6833333333333336,0.0,0.0,-2.6018229166666673,0.0,1.0,8,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,2.9345000000000017,4.8549999999999995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1,2,4,5-Tetrabromobenzene",Brc1cc(Br)c(Br)cc1Br,0,0.7585324074074073,0.03238425925925927,0.7585324074074073,0.32384259259259274,0.05587235867194692,39.3698,39.1682,38.96889984640001,54,0,0.06473655909890537,-0.049563737364908905,0.06473655909890537,0.049563737364908905,0.08,0.1,0.12,3.6035674514745475,23.181286524684438,0.9464101615137755,0.651185789203691,1.0855844048495726,0.5464101615137755,0.3255928946018455,0.5427922024247863,0.1505928946018454,0.4677922024247863,0.08243930444377985,0.42675324406953596,0.041219652221889926,0.21337662203476798,0.11399999999999999,2.0815718239857546,0.6633922145076208,0.36955458608251657,2.061452680853266,9.571153454239802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.580461300712399,1.7890878063329656,0.274151711234044,0.274151711234044,6.371977559179739,0.0,0.0,0.0,0.0,0.0,29.97571547865624,0.0,0.0,0.0,0.0,0.0,63.719775591797394,0.0,0.0,0.0,0.274151711234044,29.97571547865624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.97571547865624,0.0,0.0,0.0,0.0,63.719775591797394,0.274151711234044,1.751351851851852,1.2838796296296295,0.0,0.0,0.0,0.0,0.06476851851851854,0.0,0.0,0.0,0.0,10,0,0,0,0,0,1,0,1,0,0,4,0,0,0,0,1,4.7366,5.724200000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5-Nonanone,CCCCC(=O)CCCC,0,1.2396425736961447,-0.4326814058956918,1.2396425736961447,2.684027777777777,0.05569438384242685,14.22420000000001,12.409799999999997,14.2135765196,60,0,0.1324109690533248,-0.2997179119890417,0.2997179119890417,0.1324109690533248,0.13,0.18,0.22000000000000003,6.544330958441349,55.35262630036713,2.3577350269189625,2.2908248290463864,0.4908248290463863,1.1654700538379252,1.120412414523193,0.22041241452319316,0.10791241452319315,0.10791241452319315,0.04770620726159658,0.04770620726159658,0.02072810363079829,0.02072810363079829,-0.033,2.42363212143803,0.1021924091603285,0.6785340253748557,5.8003780964797915,8.910977904606675,0.0,0.5783244946364939,0.0,0.0,0.0,0.0,0.4794537184071822,0.0,0.0,0.0,2.644963403725012,1.274584980265876,3.7419503813722725,0.0,2.946819119513578,0.5783244946364939,0.0,0.0,0.0,5.194133364256762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5783244946364939,0.4794537184071822,0.0,7.661498765363158,0.0,0.0,0.0,0.0,1.707,5.772457858893256,0.4794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4673654011063957,13.181699333900223,0.0,1.2396425736961447,0.0,0.0,-0.26840277777777766,0.0,-2.523009755291006,-0.7632627078609222,0.0,0.8888888888888888,10,0,1,0,0,0,0,0,0,1,0,1,8,0,0,0,0,2.935900000000001,4.405700000000001,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Cyfluthrin,CC1(C)C(C=C(Cl)Cl)C1C(=O)OC(C#N)c2ccc(F)c(Oc3ccccc3)c2,0,0.525124467174687,-0.13683758339329483,0.525124467174687,0.8980957559299358,0.017231943382668584,14.975655172413788,14.350000000000007,14.933268172965535,150,0,0.31128524235333754,-0.45428041475133146,0.45428041475133146,0.31128524235333754,0.04994054696789536,0.07491082045184305,0.09631391200951249,2.320372094238232,60.19075416215175,1.2683301510828977,1.0967535133075597,0.5281968888950392,0.7273748507016413,0.5624542839111545,0.2781759717048942,0.17810863802778548,0.2108463292152958,0.11382060702737141,0.1203372358723581,0.06930675166313792,0.07582338050812458,-0.0879310344827586,3.463125823652308,0.273798973229745,0.29113346316016525,4.720388162449269,7.009834944277587,0.3266802037103482,0.5624207351804864,0.3988528508389586,0.2096557940327582,0.0,5.969305287951849,0.16532886841626973,4.39041504767482,5.261891554738487,0.0,2.1060461670934334,1.4320929217740896,0.5699834462434054,0.6759152843815612,1.4942183500141628,1.0059029333936855,5.261891554738487,0.0,17.202905840122938,0.6822000779841844,0.0,70.26356191424276,0.0,17.568244979360085,0.1633401018551741,4.39041504767482,11.49902366656781,23.20187978046503,0.20583811337764998,0.3286689702714438,34.351239548699596,1.7248588884242186,58.88288958149985,0.0,0.0,0.0,2.0455172413793106,4.3006413438078175,0.3467734047865623,0.15139362233361447,0.0,0.0,6.069221312792274,0.0,0.0,0.0,0.0,1.9775606792803155,5.807436415121339,0.3821769267046107,0.46884634989379254,0.3415809299150563,-0.18443343626477945,-0.5006047472388712,-0.34914366647434514,-0.13279663169013875,-0.27367516678658965,0.0,0.2727272727272727,29,0,4,1,0,1,2,0,2,4,0,7,8,1,0,1,3,6.317080000000003,3.7211034482758616,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4-Heptanone,CCCC(=O)CCC,0,1.4928993055555555,-0.49822048611111136,1.4928993055555555,2.428472222222222,0.06837358796069481,14.27349999999999,12.509499999999997,14.2630581335,48,0,0.13239048773034137,-0.2997182890076654,0.2997182890076654,0.13239048773034137,0.1875,0.25,0.296875,6.068504104299369,49.88601946894661,2.3221687836487033,2.238531036307983,0.4885310363079829,1.1443375672974065,1.0880155181539914,0.21301551815399145,0.10364051815399145,0.10364051815399145,0.04400775907699572,0.04400775907699572,0.01809762953849786,0.01809762953849786,-0.04125,2.2358249683399594,0.09983345276020603,0.6024906296851574,3.84636684303351,8.845001602075294,0.0,0.7229056182956174,0.0,0.0,0.0,0.0,0.5993171480089777,0.0,0.0,0.0,1.7129730293239198,1.5932312253323448,3.9920586986302293,0.0,2.9981446213068623,0.7229056182956174,0.0,0.0,0.0,4.899435479988609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7229056182956174,0.5993171480089777,0.0,7.2982629532865,0.0,0.0,0.0,0.0,2.13375,5.622341098284227,0.5993171480089777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3988274732978847,12.455366679657972,0.0,1.4928993055555555,0.0,0.0,-0.30355902777777777,0.0,-1.9594234221466371,-0.9144502019557824,0.0,0.8571428571428571,8,0,1,0,0,0,0,0,0,1,0,1,6,0,0,0,0,2.1557000000000004,4.352874999999998,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"4,4'-PCB",Clc1ccc(cc1)c2ccc(Cl)cc2 ,0,0.5644093510420041,-0.038087139617751835,0.5644093510420041,0.33975308641975244,0.04706794109303885,15.935857142857145,15.35985714285714,15.857164686857143,70,0,0.06386223696464148,-0.08434373915237964,0.08434373915237964,0.06386223696464148,0.04591836734693878,0.0663265306122449,0.08673469387755102,3.026914071477952,48.369935348934256,1.2091573735911079,1.0539949247156037,0.5905562027182402,0.721916858944971,0.5448546052149448,0.313135244216263,0.1698546052149448,0.2238495299305487,0.10278444546461525,0.12978190782241722,0.06032079416087905,0.07381952533978005,-0.07000000000000002,2.499719362818697,0.2771132262718806,0.28821633798029217,2.087884157696137,7.452485270047627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3836824722227297,2.521184129574798,0.7175190448201895,0.78329060352584,0.78329060352584,1.6572771271760736,0.0,0.0,0.0,0.0,0.0,58.38461628878901,0.0,11.126902983393991,0.0,0.0,0.0,23.20187978046503,0.0,0.0,0.0,0.78329060352584,48.33934966130636,10.045266627482652,11.126902983393991,0.0,0.0,3.4528106900933113,0.0,0.0,21.172169610876644,0.0,0.0,0.0,0.0,0.0,0.0,2.440567730701914,4.456854501353746,0.8158656072658338,0.0,-0.05317875239454976,-0.048536155202821805,0.0,-0.29798932800633465,0.0,0.0,0.0,0.0,14,0,0,0,0,0,2,0,2,0,0,2,1,0,0,0,2,4.660400000000002,4.421285714285716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Dimecron,CCN(CC)C(=O)C(=CCOP(=O)(OC)OC)Cl,0,0.7135308099577277,-0.3341943260500361,0.7135308099577277,1.0234013605442165,0.028247467739378942,16.649499999999975,15.585499999999996,16.614940945444474,106,0,0.4740462421151277,-0.3384522103646234,0.4740462421151277,0.3384522103646234,0.08333333333333333,0.11728395061728396,0.14506172839506173,6.901981152161601,49.30521855036705,1.6905956344621194,1.5174240620182478,0.5535549585192683,0.8732998086062755,0.7309219974456944,0.3052863285395649,0.11812715234203061,0.21924460909282562,0.06423855077959954,0.12080886771702562,0.02558613803696054,0.04738289399096708,-0.021666666666666678,2.526679492648399,0.21285417275037702,0.481496793938151,5.5014872085806354,7.730190827140425,0.272217207269471,0.27957146400631094,0.0,0.0,5.907179729351506,7.822697123132171,1.020321037178182,4.565048284931329,0.0,0.0,0.6444966605684731,1.0975475544792737,2.265400547116627,1.0497673471360147,2.720846640076268,1.4072675968175663,0.0,0.272217207269471,0.0,0.7613213463661865,33.62860952931336,11.084358098149163,0.0,0.0,0.0,0.0,0.0,19.423637013364687,2.4686499438619633,1.2739348307854779,0.0,2.208233155656975,11.084358098149163,0.0,0.0,0.0,3.615,4.280363246966001,0.519976970500175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.571241485135452,2.0914084698592617,9.05488215491429,0.3086123460872688,0.6566751788163824,-0.10799550684471323,0.0,-0.13478891530892184,-0.11366465979395876,0.0,-1.1263378082865794,-0.7503457525467307,0.7,18,0,6,0,0,0,0,0,0,5,0,8,12,0,0,0,0,2.3950000000000005,3.857805555555558,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Ethalfluralin,CCN(CC(C)=C)c1c(cc(cc1N(=O)=O)C(F)(F)F)N(=O)=O,0,0.5873168037532374,-0.2538652095634282,0.5873168037532374,1.1068608276643999,0.01943176400705562,14.48982608695651,13.876260869565217,14.482332199478277,126,0,0.41641444366819114,-0.3566436486925832,0.41641444366819114,0.3566436486925832,0.062381852551984876,0.08695652173913043,0.10207939508506617,4.741147620714779,48.58607813819504,1.2978631722211253,1.0699359724949133,0.4612403203210004,0.701978746079322,0.5289251061566939,0.2245772800697373,0.1572528707320703,0.1572528707320703,0.09317603988812814,0.09317603988812814,0.05947514632173837,0.05947514632173837,-0.11521739130434785,2.5499653790471117,0.28076633533503065,0.2882372994725594,4.175406041838033,6.457755357148693,0.21303955351523818,0.0,0.24727766411667662,0.0,11.374772549367124,6.176298517443475,0.8795059364143976,0.0,13.171245143024459,0.0,0.5262671083509189,0.5958167058517982,1.5671576188400107,1.0275923881023328,1.8351516098714304,0.7418329923500299,0.0,0.0,0.0,0.8643514240015145,17.893629099482368,49.98106893662587,0.0,0.0,0.21303955351523818,30.233403967075148,0.0,0.0,0.9930583246203143,0.2685347181497163,20.228636537531145,1.6720806744639758,24.188980907397724,0.0,0.0,0.0,3.8921739130434774,4.105866311839041,1.4521687687198088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8343747733210034,6.384014253581197,0.0,0.8037170989571351,1.021005314968177,-0.5114119834058153,0.0,-0.20276767228630585,-0.2538652095634282,-0.824025135584293,0.0,0.38461538461538464,23,0,7,0,0,0,1,0,1,5,0,10,8,0,0,0,1,3.9242000000000035,3.3675565217391306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4-Methyl-2-pentanone,CC(C)CC(=O)C,0,1.6384027777777777,-0.5562996031746031,1.6384027777777777,2.220138888888888,0.07357418815616426,14.308714285714276,12.580714285714283,14.298402143428572,42,0,0.12959512117371577,-0.3000199627172533,0.3000199627172533,0.12959512117371577,0.30612244897959184,0.40816326530612246,0.4693877551020408,6.146307928925497,48.840938976187566,2.2967643241699465,2.2011783272091234,0.486892612923409,1.1292429340541787,1.064874877890276,0.20773202074741878,0.11844630646170451,0.11844630646170451,0.03407586232971184,0.03407586232971184,0.016218719472568983,0.016218719472568983,-0.047142857142857146,2.092914074948499,0.09811170266429532,0.3970700331992924,5.669999999999999,8.797875671695735,0.6849338834388317,0.8261778494807056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9576834620844799,1.8208356860941082,3.260289653624574,0.0,3.0348056940163515,0.8261778494807056,0.0,0.0,5.893957685363079,3.8469430361737738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8261778494807056,0.6849338834388317,5.893957685363079,6.196814846751297,0.0,0.0,0.0,0.0,2.4385714285714286,5.515114840706348,0.6849338834388317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3498718105775196,12.061008597883598,0.0,1.6384027777777777,0.0,0.0,-0.8709490740740742,0.0,-0.5562996031746031,-1.5697817460317463,0.0,0.8333333333333334,7,0,1,0,0,0,0,0,0,1,0,1,5,0,0,0,0,1.6215,4.3051428571428545,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4-Chlorophenol ,Oc1ccc(Cl)cc1,0,0.9066724537037036,-0.055439814814814775,0.9066724537037036,0.26777777777777745,0.07088846935439169,16.069749999999996,15.439749999999998,16.0003615575,42,0,0.2930920867052697,-0.5079651858460357,0.5079651858460357,0.2930920867052697,0.1875,0.265625,0.328125,3.5637576760479117,40.54540340653495,1.271401049540538,1.0982765954341362,0.5677677136864431,0.7502633021998175,0.537669334025051,0.28388385684322154,0.14288829771706812,0.19013385684322154,0.07144414885853406,0.09506692842161077,0.03572207442926703,0.047533464210805385,-0.08625000000000001,2.1268719300323427,0.24008775054260995,0.2565836934864397,1.138019488647966,7.45505323219262,0.6386010238884016,0.7186889791604881,0.0,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,1.4501174862790644,3.0212093538316473,0.6278291642176658,0.6853792780851101,1.3239803019735117,1.4501174862790644,1.4311996572326342,0.0,0.0,0.0,0.0,29.192308144394506,0.0,5.749511833283905,0.0,0.0,5.749511833283905,11.600939890232516,0.8175009810424808,0.0,0.0,0.6853792780851101,24.16967483065318,5.022633313741326,0.0,0.0,2.52875,3.7398983329921354,0.0,0.0,5.022633313741326,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.3143967215182535,4.440681925547997,0.6856722411186695,0.0,0.46262345679012346,0.0,-0.05215277777777774,-0.21043595679012328,0.0,0.0,0.0,0.0,8,1,1,0,0,0,1,0,1,1,1,2,1,0,0,0,1,2.0456,4.1396,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Butamben,CCCCOC(=O)c1ccc(N)cc1,0,0.8789204392074288,-0.27990523937749706,0.8789204392074288,0.23747088912470415,0.03235152485893754,13.803285714285723,12.723285714285712,13.793591337142857,76,0,0.3376198178852672,-0.46209728634871794,0.46209728634871794,0.3376198178852672,0.12244897959183673,0.17857142857142858,0.22448979591836735,3.4898090483142257,56.17544886140068,1.6661363524788253,1.554550726887692,0.48312215545912035,0.9085657308607991,0.7664576017461207,0.23828423096041243,0.14037060153908398,0.14037060153908398,0.07665623712125261,0.07665623712125261,0.039741049725482216,0.039741049725482216,-0.10785714285714285,2.506398108023622,0.155856521938115,0.37639178308014615,3.0883626680736613,7.504410177502657,0.7468985663947373,0.0,0.20169172547545725,0.0,0.0,5.969305287951849,0.0,4.794537184071822,0.0,0.0,0.9446297870446471,2.181614266570183,1.0916211548482215,1.453356290831043,2.155353251767223,0.8326208259025295,0.0,0.0,0.0,1.399838708568174,12.278702218642561,29.733126322350174,0.0,0.0,0.40855121255187665,5.687386274683562,0.0,0.0,0.8948778950620098,0.33834735384286063,0.0,3.4125422732811534,24.16967483065318,2.8236841566564013,0.0,0.0,3.737142857142857,4.824753217704022,0.34246694171941583,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.474538956204947,8.254465040995846,0.0,0.8789204392074288,0.0,-0.159267412070539,-0.13754774727351263,-0.30422809136882256,-0.5527699914446044,-0.5390960475696067,0.0,0.36363636363636365,14,2,3,0,0,0,1,0,1,3,1,3,6,0,0,0,1,2.2257,4.0032071428571445,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Raffinose,OCC1OC(CO)(OC2OC(COC3OC(CO)C(O)C(O)C3O)C(O)C(O)C2O)C(O)C1O,0,0.2674829917331947,-0.1597302373945447,0.2674829917331947,3.6518515550258877,0.00430682491710772,14.836411764705874,13.88770588235295,14.828501027764727,200,0,0.22355033369268296,-0.3935665150995826,0.3935665150995826,0.22355033369268296,0.020761245674740487,0.039792387543252594,0.058823529411764705,2.636011957516158,52.95623667140117,1.5386384852642576,1.3979991955124063,0.45682272492417086,0.8662586998679636,0.6772746542639135,0.2363707955844283,0.16854178917713722,0.16854178917713722,0.11021971151770431,0.11021971151770431,0.06388221885991079,0.06388221885991079,-0.018823529411764708,3.419547689765725,0.2264435703530288,0.3287381161698893,5.08976591342448,7.004191169954247,2.349447202093518,2.159975986451945,0.3685928452080528,0.633244334768517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4253789825977508,3.1960921926692394,0.0,15.743196229558976,0.0,0.0,2.5058666525321835,26.235940971665155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.393396867338172,0.6965974932058896,0.0,0.846644990575724,0.0,0.0,0.0,0.0,7.902352941176469,3.2775119752282174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.67061600977945,1.727638669721581,8.383058757324392,0.0,0.0,1.2515960417378058,0.0,-0.15350836138940052,0.0,-1.902575776914317,-0.5638647784055403,0.0,1.0,34,11,16,0,3,3,0,0,0,16,11,16,19,0,3,3,3,-7.571399999999989,2.9786705882352944,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3-Heptanoyloxymethylphenytoin,O=C1N(COC(=O)CCCCCC)C(=O)C(N1)(c2ccccc2)c3ccccc3,0,0.5003707696028359,-0.16283162620406275,0.5003707696028359,0.6797559392394255,0.013685865092524362,13.602448275862058,12.69872413793104,13.592733010758646,152,0,0.32786640076668144,-0.44359585955322295,0.44359585955322295,0.32786640076668144,0.03804994054696789,0.05945303210463733,0.07966706302021404,2.3553179845627294,64.3002238359476,1.5007607364624205,1.3802558742363922,0.483704150098461,0.8388536640441648,0.7012368382899831,0.2547811970658467,0.1672812822919732,0.1672812822919732,0.11284594690165164,0.11284594690165164,0.07380443482547293,0.07380443482547293,-0.10862068965517237,3.2428128472531967,0.1898208528875177,0.32294094787105043,4.312663151098256,7.1376595327739825,0.3464371140375319,0.0,0.47012715022808277,0.0,5.907179729351506,12.000419800289922,0.33065773683253946,9.694446914922299,0.0,0.0,2.9791328930316134,0.60344234085253,0.8342340045359391,0.5672104370359531,1.8896993271930778,0.617503432056601,0.0,0.35205941669444324,0.0,1.5260497198733076,6.682920025902854,71.55109006002695,0.0,0.0,0.18309701218235777,4.794537184071822,0.0,0.0,1.0169113547032675,0.6849952611836908,0.0,2.900427017641105,60.42418707663295,1.4118420783282006,0.0,0.0,2.6106896551724135,5.19333705434607,0.49598660524880916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.230372620089093,7.334314275253731,0.0,1.3980180347657576,-0.02343985997377329,-0.23416209330492602,-0.1824604880158491,-0.5343941357264976,-0.7901600866181618,-0.295301853276835,0.0,0.34782608695652173,29,1,6,0,1,1,2,0,2,4,1,6,10,0,1,1,3,3.9531000000000027,3.7503344827586216,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +"1,2,3,5-Tetrachlorobenzene",Clc1cc(Cl)c(Cl)c(Cl)c1,0,0.7295432098765432,-0.016876543209876506,0.7295432098765432,0.002098765432098082,0.044741511729822034,21.5894,21.3878,21.389106078399998,54,0,0.0779030660373676,-0.08423147288483936,0.08423147288483936,0.0779030660373676,0.1,0.13999999999999999,0.18,3.6035674514745475,23.181286524684438,0.9464101615137755,0.651185789203691,0.7535573676110726,0.5464101615137755,0.3255928946018455,0.3767786838055363,0.1505928946018454,0.3017786838055364,0.08243930444377985,0.21517505618848248,0.04300536650760421,0.12365895666566984,0.03799999999999999,2.0815718239857546,0.595884022643223,0.3185466950118093,1.7010964859316502,8.145440902735926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.640375956093006,1.208483741532659,0.5022633313741326,1.7809417053564416,0.274151711234044,4.640375956093006,0.0,0.0,0.0,0.0,0.0,32.1753706702919,0.0,0.0,0.0,0.0,0.0,46.40375956093006,0.0,0.0,0.0,0.274151711234044,12.08483741532659,20.090533254965305,0.0,0.0,0.0,0.0,0.0,0.0,32.1753706702919,0.0,0.0,0.0,0.0,0.0,0.0,4.914527667327051,1.4590864197530864,2.233234567901234,0.0,-0.014123456790123213,0.0,0.0,-0.03375308641975301,0.0,0.0,0.0,0.0,10,0,0,0,0,0,1,0,1,0,0,4,0,0,0,0,1,4.3002,4.648200000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2-Ethyltoluene,CCc1ccccc1C,0,0.8509387860082305,-0.36516492399428924,0.8509387860082305,0.8507251511715792,0.059331007394378465,13.354999999999992,12.010999999999997,13.343766709333332,48,0,0.06257013944568376,-0.061984846716096755,0.06257013944568376,0.061984846716096755,0.1851851851851852,0.2839506172839506,0.3703703703703704,3.9821067934401584,62.64518475446344,1.8849001794597504,1.8333333333333333,0.5,1.0151945939942368,0.9166666666666666,0.25,0.1527777777777778,0.1527777777777778,0.09027777777777778,0.09027777777777778,0.04513888888888889,0.04513888888888889,-0.08666666666666667,2.26891889848091,0.11645051156696064,0.29714858458552007,1.3174550052099938,8.153986162744504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4468407719943177,2.7057466668910055,1.2184520499290845,0.6092260249645424,1.8276780748936265,0.0,0.0,0.0,0.0,2.2307454595467484,0.0,35.29657781404717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7081027668143755,6.851892117295679,3.8253219749702563,24.16967483065318,0.0,0.0,0.0,0.0,6.152587438885323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8276780748936265,9.898077286470144,0.0,0.0,0.0,-0.2280735596707818,0.0,-0.4094941525993112,-0.3587834362139919,-0.7072816935416143,0.0,0.3333333333333333,9,0,0,0,0,0,1,0,1,0,0,0,3,0,0,0,1,2.5574200000000005,4.506333333333335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +RTI 23,CCN2c1cc(OC)cc(C)c1NC(=O)c3cccnc23 ,0,0.6351462937467753,-0.177249076548609,0.6351462937467753,0.017840136054421585,0.04379534211056481,13.491952380952362,12.675952380952378,13.482479846857164,108,0,0.25899656081476785,-0.4966744376742702,0.4966744376742702,0.25899656081476785,0.07709750566893424,0.12244897959183675,0.16099773242630386,2.7361776392511175,63.38996605081243,1.4046246348108504,1.2932446365441714,0.48372082702036195,0.8070047816905651,0.660706362640267,0.25845809618788806,0.1804658556014878,0.1804658556014878,0.1255653452497157,0.1255653452497157,0.08462285789473906,0.08462285789473906,-0.1219047619047619,2.8109580827129124,0.19052979625629207,0.24223757828058143,2.1051981129706134,7.002587763972118,0.7117421922828049,0.5508273624342349,0.06723057515848574,0.0,5.907179729351506,0.0,0.22831129447961057,4.9839785209472085,0.0,0.0,0.0,1.7806900880608685,1.4132496215312265,1.6639164261575463,1.5654942435677897,1.099991193169222,0.0,0.23733231052129564,0.0,0.65256115402816,23.744535227337387,41.46947302486193,0.0,5.749511833283905,0.7117421922828049,17.192635327202154,5.749511833283905,0.0,1.1631414473093926,0.0,6.851892117295679,2.12883186588024,30.34257004146794,1.4118420783282006,0.0,0.0,2.5933333333333333,4.645590299642352,0.22831129447961057,0.0,10.209723084138854,0.0,0.0,0.0,0.0,0.0,9.720841474747257,1.1116180465262722,6.64338607926937,0.0,0.8047815529430464,-0.011080651837454563,-0.22662617615388309,-0.19090017264254316,-0.22086964797828745,-0.04931549431206934,-0.5165664142641185,-0.1613805035954894,0.25,21,1,5,0,1,1,1,1,2,4,1,5,5,0,0,0,3,3.122320000000001,3.933390476190478,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +Caproaldehyde,CCCCCC=O,0,1.5367689099449302,-0.5527976190476193,1.5367689099449302,2.1085955215419494,0.05548488247399498,14.308714285714276,12.580714285714283,14.298402143428572,42,0,0.11949019725434507,-0.303402908155129,0.303402908155129,0.11949019725434507,0.2857142857142857,0.40816326530612246,0.4897959183673469,5.989640448872497,52.12944612028098,2.2967643241699465,2.2011783272091234,0.486892612923409,1.1347679532820092,1.064874877890276,0.20773202074741878,0.08600886751656654,0.08600886751656654,0.03407586232971184,0.03407586232971184,0.012573645450570206,0.012573645450570206,-0.047142857142857146,2.139733248300212,0.09811170266429532,0.8100000000000002,5.669999999999999,8.797875671695735,0.6849338834388317,1.0904243883573517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.799677417136348,0.9104178430470542,3.064467002743114,0.0,3.0348056940163515,0.8946017374758916,0.0,0.0,0.0,4.620513103230457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8946017374758916,0.6849338834388317,0.0,6.970384913807982,0.0,0.0,0.0,0.0,2.4385714285714286,5.515114840706348,0.6849338834388317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3498718105775196,12.146176978727997,0.0,1.5367689099449302,0.0,0.0,0.0,0.0,-2.4693694660403844,-0.511195470251593,0.0,0.8333333333333334,7,0,1,0,0,0,0,0,0,1,0,1,5,0,0,0,0,1.7656,4.315142857142854,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Metribuzin,CSc1nnc(c(=O)n1N)C(C)(C)C,0,0.9096805488068241,-0.2726232318324155,0.9096805488068241,0.09986111111111073,0.03856149508440125,15.306714285714294,14.298714285714285,15.292059433428571,78,0,0.29465358329853397,-0.3339599872840598,0.3339599872840598,0.29465358329853397,0.11224489795918367,0.1683673469387755,0.20918367346938774,4.091170157516211,52.71128752208698,1.6077194063934124,1.4718107830662543,0.5301319674182345,0.8701683955344205,0.7179447726925449,0.28380687197310267,0.16429992996317663,0.20496225259903683,0.08986960514488762,0.1210953619261825,0.04743801366601309,0.06536868364327618,-0.07428571428571429,2.34146799074798,0.182179518304165,0.2575746855864607,1.8938937182449325,7.6052744142001645,0.41633712634502335,0.4067091424891758,0.20169172547545725,0.36831689155862196,5.559266895052007,0.0,0.34246694171941583,0.0,4.676102440895408,10.197363616602075,2.3083972358055824,0.4417088643654613,1.5617209388171012,0.0,1.3766276307642171,0.8401346392422225,0.0,1.0623904326783917,0.0,2.2233645216503235,12.012643869946785,16.047732073972288,0.0,0.0,0.8134276188487382,0.0,0.0,11.761884949391115,1.5040992970438531,0.3867850335283414,0.0,3.049907644341297,9.95097366589253,2.8236841566564013,0.0,0.0,5.271428571428571,3.8852101473536975,0.34246694171941583,0.0,16.437987390286523,0.0,0.0,0.0,0.0,0.0,10.197363616602075,1.3766276307642171,7.417512527332361,-0.007322491496598709,0.9096805488068241,0.3943022824209049,-0.5109194387080229,-0.034871166720656425,0.0,-0.20170304232804234,-0.8178696954972465,0.0,0.625,14,2,5,0,0,0,0,1,1,6,1,6,3,0,0,0,1,0.3714999999999997,4.065957142857144,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +2-Chlorotoluene,Cc1ccccc1Cl,0,0.9242505787037038,-0.33067129629629627,0.9242505787037038,0.44351851851851776,0.06268770825084556,15.823249999999994,14.941249999999998,15.752953488,42,0,0.06385044413527102,-0.08405299355229609,0.08405299355229609,0.06385044413527102,0.203125,0.296875,0.390625,3.6807357198826747,47.471916475878245,1.4955127018922192,1.3597455591261534,0.5792366773784602,0.8344283100678678,0.6798727795630767,0.2896183386892301,0.14862277956307668,0.1958683386892301,0.08021708467230752,0.11565125401692257,0.03715569489076918,0.04896708467230752,-0.061250000000000006,2.094639700632517,0.18896314229450825,0.27317010236609646,1.014610261986002,7.991800620243744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7160245016528,2.307220289581996,1.1418636227814984,0.6853792780851101,1.1994137366489426,1.4501174862790644,0.0,0.0,0.0,0.8564865146619599,0.0,34.7557596360915,0.0,0.0,0.0,0.0,0.0,11.600939890232516,0.0,0.0,6.851892117295679,1.8948451731110667,24.16967483065318,5.022633313741326,0.0,0.0,0.0,5.200956469173397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.649531222928007,6.3305314429012345,0.698695023148148,0.0,-0.05543981481481472,-0.0665316358024691,0.0,-0.2814448302469135,0.0,-0.33067129629629627,0.0,0.14285714285714285,8,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,1,2.6484200000000007,4.523625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1,2,3-Trichlorobenzene",Clc1cccc(Cl)c1Cl,0,0.8044307270233195,-0.03452674897119339,0.8044307270233195,0.037654320987653866,0.05956690614160024,20.161,19.825,19.992225903999998,48,0,0.07779504102309424,-0.08265556792103128,0.08265556792103128,0.07779504102309424,0.1234567901234568,0.1728395061728395,0.2222222222222222,3.6035674514745475,25.811454471390828,1.0515668461264172,0.7926548243364091,0.7112978063425605,0.6071224016819728,0.39632741216820455,0.35564890317128023,0.1463274121682045,0.27231556983794697,0.0811002140206102,0.20758635634754494,0.038565980026178115,0.0859360353166296,0.00999999999999999,2.0815718239857546,0.45223671238799706,0.30913336463671315,1.5113363246814933,8.061790366738379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.538359819817872,1.3427597128140656,0.0,2.1311306233038483,0.45691951872340675,3.8669799634108384,0.0,0.0,0.0,0.0,0.0,33.19515606421386,0.0,0.0,0.0,0.0,0.0,34.802819670697545,0.0,0.0,0.0,0.45691951872340675,18.127256122989884,15.067899941223978,0.0,0.0,0.0,0.0,0.0,0.0,33.19515606421386,0.0,0.0,0.0,0.0,0.0,0.0,4.323899482134246,2.4110699588477362,1.8532098765432095,0.0,-0.022153635116597896,0.0,0.0,-0.09397805212620017,0.0,0.0,0.0,0.0,9,0,0,0,0,0,1,0,1,0,0,3,0,0,0,0,1,3.6468000000000007,4.6080000000000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +RTI 3,O2c1cc(C)ccc1N(C)C(=O)c3cc(N)cnc23 ,0,0.6956099139217088,-0.1761258180172654,0.6956099139217088,0.0012178760393044552,0.041273258635890354,13.435631578947374,12.745947368421051,13.426356666105264,96,0,0.26320341937309805,-0.4359639517646389,0.4359639517646389,0.26320341937309805,0.08033240997229918,0.13019390581717452,0.17174515235457063,2.519093646117166,60.152412239939885,1.28932196479094,1.1662177561804,0.4820072298646106,0.7629374869067764,0.5972863375366098,0.26073753801029836,0.18672220718630364,0.18672220718630364,0.1220749605297674,0.1220749605297674,0.07905323066548074,0.07905323066548074,-0.13473684210526315,2.7197815028214998,0.20867851114880032,0.20949270158905375,1.7929658628507017,6.765929576820685,0.8082362979145684,0.29281323640510504,0.45122084157580555,0.30947307033870375,5.907179729351506,0.0,0.2523440623195696,4.9839785209472085,0.0,0.0,0.31802203724543654,1.6075052490517137,0.8000199072265034,1.2842873968964728,1.4438646532842465,0.9095764357220332,0.0,0.2623146589972215,0.0,0.3606259009102989,17.595453606858996,41.46947302486193,0.0,11.629500169719275,0.8082362979145684,11.374772549367124,11.629500169719275,0.0,0.9403676395042609,0.0,6.851892117295679,1.63156759396517,30.34257004146794,2.8236841566564013,0.0,0.0,3.6026315789473684,4.432033920572514,0.2523440623195696,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.191520590964677,5.597390779525674,0.0,0.8844182939988859,0.0,-0.19332455754951383,-0.16924906512312526,-0.21007083059832113,-0.045262292498220835,-0.3375865382816949,0.0,0.14285714285714285,19,2,5,0,1,1,1,1,2,4,1,5,3,0,0,0,3,2.35452,3.822942105263159,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3-Octanoyloxymethylphenytoin,O=C1N(COC(=O)CCCCCCC)C(=O)C(N1)(c2ccccc2)c3ccccc3,0,0.48545179708308756,-0.16158474433286157,0.48545179708308756,0.7034849574739379,0.012012818729776782,13.616599999999988,12.675800000000006,13.606830245866693,158,0,0.32786640076668144,-0.4435958595532159,0.4435958595532159,0.32786640076668144,0.035555555555555556,0.05555555555555556,0.07555555555555556,2.335374754749551,65.57976289685737,1.534068711913673,1.4175806784285123,0.48424734509517897,0.8525585419093594,0.719528943680317,0.25462182383031845,0.1658719062155741,0.1658719062155741,0.11116774867159658,0.11116774867159658,0.07238595366462383,0.07238595366462383,-0.10499999999999995,3.276803509131161,0.18504748721542674,0.3350699087491939,4.531654643104171,7.205566985505923,0.3348892102362809,0.0,0.45445624522048,0.0,5.907179729351506,12.000419800289922,0.31963581227145477,9.694446914922299,0.0,0.0,3.0922592933082056,0.5833275961574457,0.8978101081294224,0.5483034224680879,1.9180932533646566,0.5969199843213809,0.0,0.3403241028046285,0.0,1.6876122259218431,6.682920025902854,71.55109006002695,0.0,0.0,0.17699377844294586,4.794537184071822,0.0,0.0,0.9830143095464919,0.6621620858109012,0.0,3.1075608508420607,60.42418707663295,1.4118420783282006,0.0,0.0,2.5236666666666663,5.232656649245514,0.4794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.2807441031641382,7.6512180649312045,0.0,1.3574304742687076,-0.023449498582464597,-0.2292177632893514,-0.17964490411831832,-0.5245244864278269,-0.9382612582943145,-0.2885506284876378,0.0,0.375,30,1,6,0,1,1,2,0,2,4,1,6,11,0,1,1,3,4.343200000000004,3.7792233333333343,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +chloroacetamide,NC(=O)CCl ,0,2.0416666666666665,-0.5270833333333333,2.0416666666666665,0.3958333333333335,0.08900887744436652,18.702599999999997,17.8962,18.599628285599998,30,0,0.2318448802577767,-0.3686410268217003,0.3686410268217003,0.2318448802577767,0.52,0.64,0.64,4.055701378201075,24.04525357538189,1.5309401076758502,1.2466852717946098,0.5978710609983006,0.7708118550994046,0.552228074097288,0.2489355304991503,0.07992873653215796,0.11772518383308068,0.01616671004538976,0.04850013013616929,0.0,0.0,-0.04800000000000001,1.6151713102472967,0.22350600488893613,0.40519148936170213,3.759999999999999,8.12897348626245,1.1439433951452547,1.1664213446747418,0.5647368313312803,1.1814359458703012,0.0,0.0,0.9589074368143644,0.0,0.0,11.600939890232516,0.0,0.0,0.0,0.548303422468088,2.0719476906137326,3.5016239239168043,0.0,0.0,5.719716975726273,0.0,5.832106723373709,0.0,0.0,0.0,1.1439433951452547,0.0,0.0,11.600939890232516,2.3478572905450426,0.9589074368143644,0.0,0.548303422468088,0.0,2.8236841566564013,0.0,0.0,8.618,3.491800685690298,0.9589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4332282318458716,5.093774691358025,0.956148148148148,2.0416666666666665,0.0,-0.07916666666666669,-0.806867283950617,0.0,0.0,0.0,0.0,0.5,5,2,2,0,0,0,0,0,0,1,1,3,1,0,0,0,0,-0.2895000000000001,3.98288,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +p-t-Butylphenol,CC(C)(C)c1ccc(O)cc1,0,0.7153135521885523,-0.33862568070157373,0.7153135521885523,0.8803004535147385,0.054772838135188094,13.656454545454556,12.373545454545452,13.645860460727272,60,0,0.29309207052778113,-0.5079666394035982,0.5079666394035982,0.29309207052778113,0.12396694214876032,0.18181818181818182,0.2231404958677686,4.272374187450083,54.646090265337484,1.833746217847664,1.7643862082239876,0.49165893549671486,0.9966755711821572,0.8738520396087086,0.24582946774835743,0.17764764956653922,0.17764764956653922,0.08882382478326961,0.08882382478326961,0.044411912391634806,0.044411912391634806,-0.0890909090909091,2.3700689218200357,0.1284523651883214,0.23378827342504707,1.970338740534148,7.9492420536141815,0.46443710828247387,0.5226828939349004,0.0,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,2.967319433383057,2.0966617614927605,1.1215297277756344,0.498457656789171,2.0844244928472793,0.0,1.4311996572326342,0.0,0.0,2.3609697110258017,0.0,29.733126322350174,0.0,5.749511833283905,0.0,0.0,5.749511833283905,0.0,0.5945461680308951,0.4922718608542527,0.0,3.9944535521633564,24.16967483065318,0.0,0.0,0.0,1.839090909090909,5.586664088810718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.7500964443132268,9.640204865405762,0.0,0.0,0.3613689402528688,-0.451081907510479,-0.08002731395588532,-0.4091329966329965,0.0,-1.0158770421047212,0.0,0.4,11,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,2.689700000000001,4.25516363636364,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Chloropropane,CCCCl,0,1.7065972222222223,-0.7608506944444444,1.7065972222222223,2.8767361111111107,0.10460900911503544,19.635499999999993,17.8715,19.505906976,26,0,0.04350896633594125,-0.12672788713835664,0.12672788713835664,0.04350896633594125,0.625,0.8125,0.8125,4.748408577925169,31.186281472928236,2.375,2.2194911182523067,0.6584733547569204,1.125,1.0472455591261534,0.2667366773784602,0.0548727795630767,0.1021183386892301,0.01181138978153835,0.03543416934461505,0.0,0.0,0.0725,1.5812853946781595,0.10963730390115231,0.8225000000000001,2.29,10.401798746169789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,1.7129730293239198,1.5932312253323448,3.856854154141312,0.0,2.398827473297885,2.900234972558129,0.0,0.0,0.0,3.3062042546562647,5.832106723373709,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,1.4580266808434272,0.0,0.0,5.705031727954149,0.0,0.0,0.0,0.0,0.0,4.7642309354996915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.299062445856014,11.724920910493825,1.2269502314814813,0.0,0.0,0.0,-0.7191840277777777,0.0,-0.7565586419753085,-0.7608506944444444,0.0,1.0,4,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1.6352,5.252749999999999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Propetamphos,CCNP(=S)(OC)OC(=CC(=O)OC(C)C)C,0,0.7306746819098009,-0.32301104160800126,0.7306746819098009,0.8207259778911564,0.01967200307519649,16.54788235294115,15.361999999999997,16.534415632352975,100,0,0.33390469682376844,-0.45972006878455374,0.45972006878455374,0.33390469682376844,0.11072664359861592,0.15916955017301038,0.19377162629757785,7.0281784155764315,53.75681530790573,1.7900424364893028,1.6432746260776019,0.5674466126615808,0.9262031189012239,0.7905390398185154,0.35781413596679223,0.11974712931667267,0.2895462502156877,0.053225607127294655,0.15211545672006913,0.027634652826912687,0.07844863122677082,-0.02470588235294118,2.591453811284149,0.18700732758677566,0.4599841202620156,7.494481955592466,7.993710638460323,0.8108445457190402,0.4218239382343751,0.0,0.0,0.0,12.611703828186428,0.0,9.87485699643102,0.0,0.0,0.4030524774879811,1.903678378854452,1.9250254076224476,1.1168166208139207,2.70794994746223,1.4363858774602984,0.0,0.29884234190348224,0.0,1.9698580291842769,13.534812143198533,11.811236617691742,0.0,0.0,0.29884234190348224,0.0,0.0,6.642398540234578,1.5049491445941394,1.7873970911725972,0.0,3.1442341786127614,11.811236617691742,1.4118420783282006,0.0,0.0,3.340588235294118,4.5015093469158,0.28203159906304837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.59121336586233,1.61507380268014,9.428356153584025,0.27571906308819827,0.7306746819098009,-0.04827799869947979,0.0,-0.25891722661286737,-0.12029756346983239,-0.237812240656134,-1.450878789895971,-0.21725888970525478,0.7,17,1,5,0,0,0,0,0,0,5,1,7,12,0,0,0,0,2.3388,4.178864705882354,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5-fluorouracil,Fc1c[nH]c(=O)[nH]c1=O ,0,1.3902057613168723,-0.17596707818930038,1.3902057613168723,0.17685185185185182,0.05361827810094033,14.453111111111111,14.11711111111111,14.446428395111111,48,0,0.3253471361874118,-0.3111557027192775,0.3253471361874118,0.3111557027192775,0.19753086419753085,0.271604938271605,0.345679012345679,3.8583763540399607,44.433857529408016,1.0515668461264172,0.7876542494374299,0.45432091610409653,0.6071224016819728,0.3762316565520342,0.22129530199648806,0.13745768704145783,0.13745768704145783,0.07051774848862534,0.07051774848862534,0.03396344957752864,0.03396344957752864,-0.15444444444444444,2.0815718239857546,0.3281816532594568,0.2053307080528835,1.0421707281064696,5.854478161042652,0.5530003633588058,0.0,0.3137426840729335,0.6463578712273217,5.559266895052008,5.689743398203474,1.085726717144564,4.794537184071822,4.39041504767482,0.0,0.0,0.0,0.6858772456460845,0.1523065062411356,0.9538730845001601,0.0,0.0,1.1060007267176115,0.0,0.0,0.0,32.82820071325978,0.0,0.0,1.2498900325839424,4.39041504767482,0.0,0.0,1.1060007267176115,0.0,5.817220841045895,0.1523065062411356,15.761969578958404,2.8236841566564013,0.0,0.0,7.302222222222222,2.5821251494573487,1.553276601757607,0.0,9.954006540458504,0.0,0.0,0.0,0.0,0.0,0.0,0.46604919031406905,3.6230349794238683,0.0,2.297438271604938,0.0,-0.3209979423868312,-0.17596707818930038,0.0,-0.12721193415637855,0.0,0.0,0.0,9,2,4,0,0,0,0,1,1,2,2,5,0,0,0,0,1,-0.7977000000000001,3.071266666666666,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Meprobamate,CCCC(C)(COC(N)=O)COC(N)=O ,0,0.7761525861887963,-0.32716666666666677,0.7761525861887963,0.9930538627488024,0.04618773401809668,14.550200000000011,13.340599999999998,14.541777137066667,88,0,0.4040084341077012,-0.44899376515492334,0.44899376515492334,0.4040084341077012,0.09333333333333332,0.13333333333333333,0.16,7.746498282072661,47.21185489194702,1.8149076426087731,1.668494690190358,0.46849469019035794,0.9436247762612465,0.7973875232594254,0.2114638977927698,0.12933755525337606,0.12933755525337606,0.05552458111431494,0.05552458111431494,0.027067846112713026,0.027067846112713026,-0.09733333333333333,2.494250737612747,0.1521894027993819,0.40695546467542676,6.589461808150546,7.627359968540206,1.3942106572701762,0.8745313657221718,0.3764912208875202,0.0,0.0,12.18648014187683,0.0,9.589074368143644,0.0,0.0,1.3384472757280492,0.4248616600886253,1.274838402073265,0.3655356149787254,2.9267192250293084,0.8124320094584553,0.0,0.0,16.854424420849327,1.7633089358166745,13.117970485832577,0.0,0.0,0.0,0.7626289300968364,9.589074368143644,0.0,0.0,1.6869633751806272,0.6315817271733398,5.41499046939678,3.0426835882422147,0.0,5.6473683133128025,0.0,0.0,6.975999999999999,4.57390060572059,0.6392716245429095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,1.6558658733130582,9.517587976960328,0.0,1.5523051723775927,0.0,-0.4595738483665072,0.0,0.0,-0.9344108542593995,-1.2036862244897963,0.0,0.7777777777777778,15,4,6,0,0,0,0,0,0,4,2,6,8,0,0,0,0,0.9834000000000005,3.605720000000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1,7-phenantroline",c1cnc2c(c1)ccc3ncccc23,0,0.5693961235287766,-0.03493312007342618,0.5693961235287766,0.04259259259259207,0.035498569310389395,12.87214285714286,12.296142857142854,12.862053446857143,66,0,0.08400615536864035,-0.25618358226738563,0.25618358226738563,0.08400615536864035,0.0663265306122449,0.12755102040816327,0.1989795918367347,2.7537081915492223,69.24115520703927,1.1673154851891863,1.063887656499994,0.4924590850714226,0.7322710939551758,0.5638876564999941,0.2781733707857083,0.188887656499994,0.188887656499994,0.13132324939731582,0.13132324939731582,0.08811919241517442,0.08811919241517442,-0.13999999999999999,2.4707886068052676,0.21578110744035753,0.1979306400031417,0.9729204896447569,6.605270867585917,0.0,0.0,0.0,0.0,0.0,0.0,0.7119969315638869,0.0,0.0,0.0,0.8632026725233278,1.7264053450466557,1.6513027750399367,1.5713907060424486,0.78329060352584,1.557560704583008,0.0,0.7119969315638869,0.0,0.0,0.0,48.60030266760929,0.0,0.0,0.0,0.0,0.0,0.0,0.7119969315638869,0.0,0.0,0.78329060352584,48.60030266760929,0.0,21.805849864162113,0.0,1.8414285714285714,3.471450190543521,0.0,0.0,21.805849864162113,0.0,0.0,0.0,0.0,0.0,9.967957041894417,0.78329060352584,4.446297383591885,0.0,0.5442587868480725,-0.011578663211316223,-0.014845858978511983,0.0,-0.18012812841185846,-0.06971780555255609,0.0,0.0,0.0,14,0,2,0,0,0,1,2,3,2,0,2,0,0,0,0,3,2.7830000000000004,4.0745714285714305,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +4-Methylbiphenyl,Cc1ccc(cc1)c2ccccc2,0,0.6155604977033549,-0.22236808422324295,0.6155604977033549,0.4999149659863942,0.04686166590802391,12.941461538461546,12.010999999999997,12.930300029538461,64,0,0.06293378257414767,-0.062225394893631124,0.06293378257414767,0.062225394893631124,0.0650887573964497,0.11242603550295857,0.15976331360946747,3.0271275404460685,63.23340321294996,1.4944771715596548,1.4230769230769231,0.5,0.87062776081806,0.7307692307692307,0.2692307692307692,0.17307692307692307,0.17307692307692307,0.10576923076923077,0.10576923076923077,0.0625,0.0625,-0.11999999999999997,2.5089953766476163,0.16057623332199372,0.26478751787931826,1.7800147824188792,7.362545033997794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.611170758512819,1.38298423851459,0.31632889757774313,0.9489866927332292,1.2653155903109723,0.0,0.0,0.0,0.0,0.5270686244073599,0.0,59.94521986066665,0.0,11.126902983393991,0.0,0.0,0.0,0.0,0.0,0.0,6.851892117295679,1.6932733973645873,54.38176836896965,0.0,11.126902983393991,0.0,0.0,5.99415499702741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2653155903109723,7.120078575708536,0.0,0.0,0.0,-0.13898086775070895,0.0,-0.5087296237345839,0.0,-0.22236808422324295,0.0,0.07692307692307693,13,0,0,0,0,0,2,0,2,0,0,0,2,0,0,0,2,3.662020000000002,4.355000000000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +pregnenolone,CC(=O)C3CCC4C2CC=C1CC(O)CCC1(C)C2CCC34C ,0,0.6047389285282376,-0.24245597846626576,0.6047389285282376,2.5211280654237003,0.03140959572066744,13.760217391304321,12.357782608695652,13.749575228869604,128,0,0.21046072331113358,-0.3927966848471336,0.3927966848471336,0.21046072331113358,0.06049149338374291,0.10207939508506617,0.13610586011342155,2.6888347055863333,76.06440582932609,1.9321372864676274,1.8833259383012055,0.4920215904751185,1.0213943354985424,0.9702824600403359,0.2786194908897332,0.22427166480277666,0.22427166480277666,0.16648365848834484,0.16648365848834484,0.11646124465556258,0.11646124465556258,-0.027391304347826093,3.048232842237842,0.1349514305485073,0.2252618789680117,2.1288816425048305,8.057680338486845,0.22212209526553098,0.25144543245064954,0.0,0.06222607205359279,0.0,0.0,0.2084581384379053,0.0,0.0,0.0,1.101259152638965,3.7542237096875435,1.9846067745347602,0.3835450060561056,2.278124374628517,0.25144543245064954,1.4311996572326342,0.0,34.405811680245876,3.374743199542263,0.0,11.625176276104835,0.0,0.0,0.0,0.0,0.0,0.0,0.8001422096371641,0.2084581384379053,34.405811680245876,4.957938730599946,11.625176276104835,0.0,0.0,0.0,1.6217391304347826,5.627535934442944,0.625645525098407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.4925828263181702,12.214281107980057,0.0,0.6047389285282376,0.17136239887005425,-0.5769340542510618,-1.08763111691196,-0.11212287380733281,-1.9699847610519068,-0.6350139771821774,0.0,0.8571428571428571,23,1,2,4,0,4,0,0,0,2,1,2,5,3,0,3,4,4.515300000000004,3.99481739130435,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pentamethylbenzene,Cc1cc(C)c(C)c(C)c1C,0,0.7269991582491582,-0.3142887205387206,0.7269991582491582,1.2983796296296293,0.048145838906439246,13.477181818181831,12.010999999999997,13.465927319272726,60,0,0.0628513559763136,-0.05583637483205296,0.0628513559763136,0.05583637483205296,0.08264462809917356,0.1322314049586777,0.1652892561983471,4.584975676946604,60.606356797472586,1.996736510467069,1.9545454545454546,0.5,1.0473387220148809,0.9772727272727273,0.25,0.18181818181818182,0.18181818181818182,0.11363636363636363,0.11363636363636363,0.056818181818181816,0.056818181818181816,-0.07090909090909091,2.292849435246873,0.11488271167391866,0.24448519551024903,1.3010636682869154,8.33960379037863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.549310791605754,5.643338004087578,1.8692162129593906,0.12461441419729274,1.9938306271566832,0.0,0.0,0.0,0.0,3.1144964169525817,0.0,33.85967616614827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.2594605864784,4.522672214291685,6.042418707663295,0.0,0.0,0.0,0.0,6.192648795693333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9938306271566832,11.024754775647631,0.0,0.0,0.0,-0.6052609427609426,0.0,-0.12119107744107738,0.0,-1.548302755445613,0.0,0.45454545454545453,11,0,0,0,0,0,1,0,1,0,0,0,5,0,0,0,1,3.2287000000000017,4.557000000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Phenytoin,O=C1NC(=O)C(N1)(c2ccccc2)c3ccccc3,0,0.6924672793093843,-0.16302387914230015,0.6924672793093843,0.20420823885109662,0.0421155018177257,13.277526315789476,12.640894736842101,13.267888296,94,0,0.3224087250655885,-0.31568219910677586,0.3224087250655885,0.31568219910677586,0.04709141274238227,0.07202216066481995,0.09141274238227147,2.680102533305212,55.581646882475894,1.2493475951070536,1.1163644090488234,0.48478546168040226,0.7493475951070534,0.5761632985507209,0.26593028849809364,0.18535493392728872,0.18535493392728872,0.13124490804347205,0.13124490804347205,0.08929100785058053,0.08929100785058053,-0.1378947368421052,2.8990243611491606,0.22095174119971514,0.2232819513708577,1.688635569813371,6.682948439421875,0.27946386069938817,0.0,0.4401373373178814,0.0,5.907179729351506,6.031114512338072,0.5318079230189577,4.794537184071822,0.0,0.0,3.180220372454366,0.5856264728102101,0.0,0.7214518716685369,1.3747549519211706,0.6283312758783989,0.0,0.5589277213987763,0.0,0.2915223817043866,0.0,71.55109006002695,0.0,0.0,0.5589277213987763,4.794537184071822,0.0,0.0,0.6283312758783989,0.5438664440239562,0.0,1.3070783444787468,60.42418707663295,2.8236841566564013,0.0,0.0,3.0631578947368423,4.685700502847362,0.5046881246391391,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,0.0,0.8700668272820317,5.02913062804719,0.0,1.3422620622323003,-0.027850429645542442,-0.26681231849464926,-0.08603502804630622,-0.5915721070754487,0.0,0.0,0.0,0.06666666666666667,19,2,4,0,1,1,2,0,2,2,2,4,2,0,1,1,3,1.7695999999999998,3.7020210526315807,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +Etofenprox,CCOc1ccc(cc1)C(C)(C)COCc3cccc(Oc2ccccc2)c3,0,0.31341292129435033,-0.16561194366068688,0.31341292129435033,0.89602676073676,0.015501172995238415,13.446285714285699,12.438285714285717,13.435851598428599,146,0,0.12729001402663895,-0.49388975853917044,0.49388975853917044,0.12729001402663895,0.03188775510204082,0.05994897959183674,0.08673469387755102,2.43852430511901,71.03759051119916,1.5719151853204612,1.490169459692557,0.49016945969255676,0.8881538861366493,0.7580266025496997,0.2580266025496996,0.16874088826398534,0.16874088826398534,0.09895074021998777,0.09895074021998777,0.05767678665949114,0.05767678665949114,-0.09928571428571424,3.0154208403609326,0.173277639827572,0.33665711754700206,5.606466204536241,7.3849998580578795,0.507521030764291,0.6160191249947041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0000255424369437,1.936903833809623,0.6339934812474556,1.6329060105708242,1.8782795869345126,0.0,0.0,0.0,0.0,1.1617732880071467,13.117970485832577,89.67834618301686,0.0,17.248535499851716,0.33834735384286063,0.0,17.248535499851716,0.0,0.46849894592259206,0.5968156666468971,0.0,2.5022792467159727,78.55144319962284,0.0,0.0,0.0,0.9889285714285715,5.449089436889332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.7091059100130817,8.676429853374506,0.0,0.0,0.0,-0.28264490998650144,-0.1355337707895096,-0.6086478728316997,0.0,-0.8906747283382227,0.0,0.28,28,0,3,0,0,0,3,0,3,3,0,3,12,0,0,0,3,6.372000000000007,4.044678571428573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Ethyl nonanoate,CCCCCCCCC(=O)OCC,0,0.935857046167517,-0.35707507522239673,0.935857046167517,2.6762103568279176,0.03301698487764411,14.330384615384629,12.62453846153846,14.320152303384615,78,0,0.3052674256589853,-0.4659692078794497,0.4659692078794497,0.3052674256589853,0.09467455621301776,0.15384615384615385,0.21301775147928995,6.779217734036211,61.47692797621006,2.252650542336629,2.178192044686748,0.48588435237905586,1.1252174680647367,1.0663363412073688,0.22018249505352266,0.1051216633690151,0.1051216633690151,0.047753139376815246,0.047753139376815246,0.02147272353456147,0.02147272353456147,-0.04076923076923077,2.575590449089804,0.11265189773707808,0.7351679967809002,9.383611364256268,8.659468500387543,0.36437407336923455,0.0,0.0,0.0,0.0,5.969305287951849,0.3688105526209094,0.0,0.0,0.0,2.978193586457121,1.0172936168173121,2.5990843095949057,0.7154232580966714,3.052929874893594,0.45917732984244997,0.0,0.0,0.0,4.485712195684385,6.558985242916289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9637146562206259,0.7331846259901439,0.0,6.80545744458783,0.0,0.0,0.0,0.0,2.023076923076923,5.449426851905011,0.3688105526209094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,2.3197452489034487,12.94460430428026,0.0,0.935857046167517,0.0,0.0,-0.20586233514060906,0.0,-2.4234944780798418,-0.8921301782529688,0.0,0.9090909090909091,13,0,2,0,0,0,0,0,0,2,0,2,10,0,0,0,0,3.3001000000000023,4.2020000000000035,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +m-Nitrophenol,Oc1cccc(c1)N(=O)=O,0,1.0478484504913077,-0.10092592592592595,1.0478484504913077,0.6753703703703706,0.047072821158342534,13.911000000000005,13.407,13.902694302,52,0,0.29309848492433116,-0.5077002302184715,0.5077002302184715,0.29309848492433116,0.18,0.26,0.32,3.678891125029374,43.551092236395874,1.1748558665513928,0.9671958466891546,0.4671958466891547,0.69127900201215,0.4701127605115884,0.22928793146520215,0.14348407280669592,0.14348407280669592,0.0771439657326011,0.0771439657326011,0.04085416018923873,0.04085416018923873,-0.158,2.1482651039416476,0.25740375043587765,0.2344994095834573,1.2226169416633605,6.399013535315909,0.5108808191107213,0.5749511833283905,0.0,0.0,7.118585931916196,0.0,1.0114318268765572,0.0,0.0,0.0,0.6042418707663295,0.6042418707663295,0.6042418707663295,1.6448763981161842,1.5515153464605762,0.5687386274683562,1.4311996572326342,0.0,0.0,0.0,0.0,34.28399309941875,0.0,5.749511833283905,0.0,5.687386274683562,5.749511833283905,0.0,1.1463318897157517,0.0,10.114318268765572,0.548303422468088,24.16967483065318,0.0,0.0,0.0,6.337,4.052988398743832,1.0114318268765572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,0.6914233881913516,3.5374049508692367,0.0,0.9469225245653817,1.4348114134542707,-0.09321759259259255,-0.0691944444444444,-0.30672685185185183,0.0,0.0,0.0,0.0,10,1,4,0,0,0,1,0,1,3,1,4,2,0,0,0,1,1.3003999999999998,3.4761200000000003,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1,2,4-Trichlorobenzene",Clc1ccc(Cl)c(Cl)c1,0,0.8078600823045268,-0.02972565157750336,0.8078600823045268,0.08086419753086393,0.059566906141600255,20.161,19.825,19.992225903999998,48,0,0.06547384247015099,-0.08428709445773132,0.08428709445773132,0.06547384247015099,0.1234567901234568,0.19753086419753085,0.271604938271605,3.6035674514745475,25.811454471390828,1.0515668461264172,0.7926548243364091,0.7112978063425605,0.6071224016819728,0.39632741216820455,0.35564890317128023,0.14632741216820452,0.27231556983794697,0.07713196005235623,0.17187207063325918,0.038565980026178115,0.0859360353166296,0.00999999999999999,2.0815718239857546,0.45223671238799706,0.30913336463671315,1.751071234522005,8.061790366738379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8669799634108384,2.0141395692210984,0.5580703681934807,1.5730602551103678,0.45691951872340675,3.8669799634108384,0.0,0.0,0.0,0.0,0.0,33.19515606421386,0.0,0.0,0.0,0.0,0.0,34.802819670697545,0.0,0.0,0.0,0.45691951872340675,18.127256122989884,15.067899941223978,0.0,0.0,0.0,0.0,0.0,0.0,33.19515606421386,0.0,0.0,0.0,0.0,0.0,0.0,4.323899482134246,2.4179286694101507,1.8463511659807952,0.0,-0.03620027434842236,0.0,0.0,-0.0799314128943757,0.0,0.0,0.0,0.0,9,0,0,0,0,0,1,0,1,0,0,3,0,0,0,0,1,3.6468000000000007,4.6080000000000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Nitroethane,CCN(=O)=O,0,1.947652777777778,-0.6680555555555555,1.947652777777778,1.458333333333334,0.06633295009928733,15.013399999999995,14.0054,15.00640568,30,0,0.20064608791858585,-0.26456002874527473,0.26456002874527473,0.20064608791858585,0.52,0.64,0.64,4.568979241768044,30.043433104406624,1.7154700538379253,1.452742035285537,0.4527420352855368,0.8386751345948129,0.6677510338840179,0.16775103388401794,0.07378263679200758,0.07378263679200758,0.01825741858350554,0.01825741858350554,0.0,0.0,-0.12000000000000002,1.6172521756325944,0.14417233560090706,0.33882352941176486,3.4000000000000026,7.3564042731130055,0.0,0.548303422468088,0.0,1.299371936863189,0.0,0.0,2.0228636537531144,0.0,0.0,0.0,0.0,0.0,3.177495766924802,0.0,2.3554207659337543,0.0,0.0,0.0,0.0,1.3703784234591359,6.496859684315945,10.114318268765572,0.0,0.0,0.0,0.0,0.0,0.0,2.2840341466267233,0.0,10.114318268765572,2.7411369796293554,0.0,0.0,0.0,0.0,8.628,3.6544125700858587,2.0228636537531144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3707585561702202,6.403999999999999,0.0,1.6559861111111112,1.947652777777778,0.0,0.0,0.0,0.0,-1.307638888888889,0.0,1.0,5,0,3,0,0,0,0,0,0,2,0,3,2,0,0,0,0,0.2829999999999999,3.5070799999999998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Benzocaine,CCOC(=O)c1ccc(N)cc1,0,0.9923324908667169,-0.2833253121850594,0.9923324908667169,0.1690824593726381,0.04438483994728785,13.766000000000005,12.841999999999997,13.756581549333333,64,0,0.3376097259808516,-0.46239131153211466,0.46239131153211466,0.3376097259808516,0.15277777777777776,0.2152777777777778,0.2638888888888889,3.4321808787484573,50.863328154086055,1.527159077891963,1.3969758480356405,0.4803091813689737,0.8516600193375988,0.6858672020371408,0.23633160278714782,0.14293236846226462,0.14293236846226462,0.07997135694912946,0.07997135694912946,0.042111971654064016,0.042111971654064016,-0.12583333333333332,2.340589625775362,0.1704723060271016,0.31323944623615446,1.985036469518851,7.2259980212977295,0.8713816607938601,0.0,0.23530701305470011,0.0,0.0,5.969305287951849,0.0,4.794537184071822,0.0,0.0,0.0,2.5851305789957384,0.8166384952661851,1.6955823393028835,2.05765927500502,0.9713909635529511,0.0,0.0,0.0,0.5709910097746399,12.278702218642561,29.733126322350174,0.0,0.0,0.47664308131052274,5.687386274683562,0.0,0.0,1.044024210905678,0.3947385794833374,0.0,2.4622256498830395,24.16967483065318,2.8236841566564013,0.0,0.0,4.36,4.566724603766462,0.3995447653393185,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.263375930182365,6.98266990399555,0.0,0.9923324908667169,0.0,-0.1569060544742588,-0.14149797650541704,-0.3110745779793398,0.0,-0.5599682303476948,0.0,0.2222222222222222,12,2,3,0,0,0,1,0,1,3,1,3,4,0,0,0,1,1.4455,3.900908333333335,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +cycloheximide,CC1CC(C)C(=O)C(C1)C(O)CC2CC(=O)NC(=O)C2 ,0,0.692581601158982,-0.26044690098261536,0.692581601158982,0.9732206980779763,0.037857780022861706,14.067599999999976,12.908399999999997,14.05813541080003,112,0,0.22633805541365917,-0.39236825383180585,0.39236825383180585,0.22633805541365917,0.0775,0.11499999999999999,0.145,3.3150133405519293,60.69636273177466,1.7508253928972526,1.6290103378677707,0.47901033786777053,0.9220714226792122,0.8184586031195753,0.25068550882138424,0.17526784090779096,0.17526784090779096,0.10433366087196763,0.10433366087196763,0.06557187136648661,0.06557187136648661,-0.061499999999999985,2.84389418186605,0.16200582572999359,0.3018865981791513,3.4497455881035557,7.556224447624208,0.2554404095553606,0.28916224731824697,0.07059210391641003,0.6622779557967823,0.0,0.0,0.984671245275192,0.0,0.0,0.0,0.6851892117295679,1.545334503735715,2.597446814839468,0.37253882915601044,2.4845095750612765,0.8798802202533975,1.4311996572326342,0.26549066766441876,23.575830741452314,2.5824213384094117,0.0,0.0,0.0,0.0,0.26549066766441876,0.0,0.0,0.0,1.5108815140178893,0.7191805776107734,23.575830741452314,3.717716921040644,0.0,1.4118420783282006,0.0,0.0,4.1735,4.906583763399845,0.7191805776107734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.5814485707567725,9.277848180915436,0.0,1.944460491686344,0.14304837316488425,0.0,-1.3882123521090537,0.0,-1.4527641270682854,-0.44938056658932873,0.0,0.8,20,2,5,1,1,2,0,0,0,4,2,5,6,1,1,2,2,1.0414999999999999,3.6278250000000023,0,1,0,0,0,0,0,0,0,0,3,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Phenylthiourea,NC(=S)Nc1ccccc1,0,0.7565277777777778,-0.0630990173847316,0.7565277777777778,0.05252125850340139,0.05963188254322658,15.222200000000006,14.415799999999999,15.204081925599999,52,0,0.16884362041934023,-0.3760476532583297,0.3760476532583297,0.16884362041934023,0.16999999999999998,0.24,0.3,3.466509795679717,47.570422261547364,1.4196152422706632,1.2802675481463779,0.5619172062391504,0.8196152422706635,0.6216585324981742,0.27831928289457314,0.1367984382460024,0.17331327541301345,0.06942503442087429,0.07855374371262705,0.03949469453337533,0.0486234038251281,-0.10900000000000001,2.324109840727561,0.19495907509089935,0.31730950170589967,2.027699097944099,7.645881225977672,1.1029530329014647,0.0,0.934796311970936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8127256122989883,2.4302710858373286,0.5687386274683562,0.6853792780851101,1.1089319015835701,2.3017696602455016,0.0,0.0,5.719716975726273,0.0,5.309813353288376,30.212093538316473,0.0,0.0,1.1029530329014647,5.687386274683562,0.0,12.217873443046695,0.5112436884724758,0.0,0.0,0.6853792780851101,30.212093538316473,4.235526234984602,0.0,0.0,3.8049999999999997,4.101191669772479,0.0,0.0,11.029530329014648,0.0,0.0,0.0,0.0,0.0,12.217873443046695,1.1089319015835701,5.8657122543461835,0.45746352985638705,0.0,-0.034376795162509376,-0.054279903628117875,0.0,-0.30118575207860915,0.0,0.0,0.0,0.0,10,3,2,0,0,0,1,0,1,1,2,3,1,0,0,0,1,1.3421,4.685010000000001,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"trans-1,4-Dimethylcyclohexane",C/C1CCC(\C)CC1,0,0.9888020833333333,-0.5039062500000002,0.9888020833333333,3.8504251700680276,0.05646941213893629,14.026999999999989,12.010999999999997,14.015650063999999,48,0,0.029985121152745674,-0.0625093764618009,0.0625093764618009,0.029985121152745674,0.15625,0.203125,0.234375,4.100488766578836,55.39699375973562,2.5,2.5,0.5,1.25,1.25,0.25,0.15625,0.15625,0.078125,0.078125,0.0390625,0.0390625,0.0,2.3077515242870215,0.08506944444444445,0.315,1.5,9.345942834720198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.899435479988609,1.4734894213407697,2.7415171123404396,0.0,2.7415171123404396,0.0,0.0,0.0,11.787915370726157,4.899435479988609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.787915370726157,7.6409525923290555,0.0,0.0,0.0,0.0,0.0,6.3729249013293785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7415171123404396,15.229272959183671,0.0,0.0,0.0,0.0,-1.0010416666666666,0.0,-2.0156250000000004,-0.962606292517007,0.0,1.0,8,0,0,1,0,1,0,0,0,0,0,0,2,1,0,1,1,2.832600000000001,4.599499999999999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Decene,CCCCCCCCC=C,0,0.7804369803476947,-0.44271352985638723,0.7804369803476947,1.5858225775196815,0.037115110068804844,14.027000000000006,12.010999999999997,14.015650063999999,60,0,0.05695960705350676,-0.10308297893627165,0.10308297893627165,0.05695960705350676,0.15,0.22999999999999998,0.31,6.890754252199405,67.21909798420049,2.5154700538379253,2.5,0.5,1.2604059275497026,1.225,0.225,0.1,0.1,0.04375,0.04375,0.01875,0.01875,-0.026000000000000002,2.509308327366756,0.09007583455247997,0.8739999999999999,7.739999999999999,9.343353702857094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.531038962001867,4.476858836997814,1.274584980265876,2.3302895454893737,0.41122756685106604,2.7415171123404396,0.0,0.0,0.0,0.0,5.146236642660133,0.0,12.583110708037434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.887753755000571,12.583110708037434,0.0,0.0,0.0,0.0,6.4045477134638755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7415171123404396,15.013905338471986,0.0,0.0,0.0,0.0,0.0,-0.1714289060531619,-2.9661056258923333,-0.5430374731931598,0.0,0.8,10,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,3.9230000000000036,4.819000000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +mannitol,OCC(O)C(O)C(O)C(O)CO ,0,0.6587847222222222,-0.35394097222222237,0.6587847222222222,3.4960711923658354,0.02177188772669321,15.18100000000001,14.004999999999997,15.173253180666668,74,0,0.21072018131770873,-0.393579134968567,0.393579134968567,0.21072018131770873,0.08333333333333333,0.125,0.14583333333333334,6.970575799753662,36.736964772301995,1.7702200572599402,1.6207908118985983,0.45412414523193156,0.9678300858899108,0.7436862178478973,0.20622873928263244,0.12671839384663816,0.12671839384663816,0.06700680198309969,0.06700680198309969,0.0249105368547735,0.0249105368547735,-0.02,2.636137421333304,0.18507567315045106,0.4511217775374077,3.015404674173516,7.459914388675121,2.5544040955536063,2.026672675649996,0.0,0.7155998286163171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.007003244599528,3.468243133000421,0.0,8.587197943395806,0.0,0.0,2.026672675649996,13.117970485832577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.389840806972637,0.0,0.0,0.9138390374468134,0.0,0.0,0.0,0.0,10.115,3.1198368828027103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.652849146643273,1.6294388660631307,8.436151364480978,0.0,0.0,1.8095793965734444,0.0,0.0,0.0,-1.391539824263039,-0.6458576034580502,0.0,1.0,12,6,6,0,0,0,0,0,0,6,6,6,11,0,0,0,0,-3.5854000000000004,3.183233333333334,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Propyl acetate,CCCOC(=O)C,0,1.5541097748623258,-0.5113756613756616,1.5541097748623258,2.0040509259259256,0.06932072480645557,14.590428571428564,13.150428571428572,14.581154222857142,42,0,0.30212269736284525,-0.46588873984264995,0.46588873984264995,0.30212269736284525,0.30612244897959184,0.42857142857142855,0.5102040816326531,5.116432891332881,42.68550973046825,2.0406367214823105,1.9023566544182466,0.47378522584681804,1.0182610121202251,0.9089103479565421,0.1946246336708278,0.08808308911388521,0.08808308911388521,0.027822825084373618,0.027822825084373618,0.010266338520188031,0.010266338520188031,-0.07571428571428572,1.980691454762246,0.11555806629747516,0.5218307652128492,5.47,8.217684545234968,0.6766947076857213,0.0,0.0,0.0,0.0,5.969305287951849,0.6849338834388317,0.0,0.0,0.0,0.9788417310422399,0.9104178430470542,2.5454229380939197,1.328643193608104,3.319855099939152,0.8527578982788356,0.0,0.0,0.0,2.868101305131534,6.558985242916289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7897557901240195,1.361628591124553,0.0,4.8263278139461345,0.0,0.0,0.0,0.0,3.757142857142857,4.657857095255553,0.6849338834388317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.9582265088145998,10.300446226109491,0.0,1.5541097748623258,0.0,0.0,-0.28629298941798936,0.0,-0.5038392857142859,-1.4691856306014472,0.0,0.8,7,0,2,0,0,0,0,0,0,2,0,2,4,0,0,0,0,0.9595,3.8462857142857123,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Cyclohexanone,O=C1CCCCC1,0,1.6415674603174604,-0.4978869047619048,1.6415674603174604,1.9211805555555548,0.064089362939321,14.020714285714277,12.580714285714283,14.010452134285714,40,0,0.13241132759858107,-0.2997179089731855,0.2997179089731855,0.13241132759858107,0.1836734693877551,0.2653061224489796,0.3469387755102041,3.6230345496975236,48.14177320741454,2.011050038455661,1.9154640414948376,0.486892612923409,1.0221000769113215,0.9577320207474188,0.2434463064617045,0.13630344931884736,0.13630344931884736,0.06815172465942368,0.06815172465942368,0.03407586232971184,0.03407586232971184,-0.047142857142857146,2.1331975836253716,0.1102358136651014,0.3002811373321616,1.298148750019123,8.252765364000755,0.0,0.8261778494807056,0.0,0.0,0.0,0.0,0.6849338834388317,0.0,0.0,0.0,0.9104178430470542,1.8208356860941084,3.779062194908708,0.0,2.6431603922534315,0.8261778494807056,0.0,0.0,0.0,4.552089215235271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8261778494807056,0.6849338834388317,0.0,6.5103157240498755,0.0,0.0,0.0,0.0,2.4385714285714286,5.378267064715977,0.6849338834388317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9582265088145998,10.377433862433861,0.0,1.6415674603174604,0.0,0.0,-0.274454365079365,0.0,-2.470737433862434,0.0,0.0,0.8333333333333334,7,0,1,1,0,1,0,0,0,1,0,1,0,1,0,1,1,1.5196,4.013142857142855,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Epiandrosterone,CC34CCC1C(CCC2CC(O)CCC12C)C3CCC4=O,0,0.6695649152618398,-0.2693354524349424,0.6695649152618398,2.8984717994814497,0.03490346358946471,13.830809523809494,12.390809523809521,13.820218104761945,118,0,0.2104451809645517,-0.39311972765861136,0.39311972765861136,0.2104451809645517,0.05895691609977324,0.10430839002267575,0.14285714285714285,2.6695869881934433,74.99140540597212,1.9659265262083894,1.919833170520368,0.49126174194893935,1.0340647957218607,0.9912617419489393,0.28134515668875537,0.22777372811732682,0.22777372811732682,0.16934220084989987,0.16934220084989987,0.11564802986085426,0.11564802986085426,-0.017619047619047618,3.0065398348615266,0.1316148637483055,0.21740888982658452,1.837078375399089,8.117925028012042,0.24327658052891488,0.27539261649356855,0.0,0.06815236463012544,0.0,0.0,0.22831129447961057,0.0,0.0,0.0,0.65256115402816,3.808296210546863,2.389007378261541,0.3547988849104861,2.3645401668626405,0.27539261649356855,1.4311996572326342,0.0,34.405811680245876,3.673339351119322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8763462296026083,0.22831129447961057,34.405811680245876,5.27676697502343,0.0,0.0,0.0,0.0,1.776190476190476,5.587103952386504,0.48940816232155726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.7000077886422924,12.519133109442366,0.0,0.6695649152618398,0.18484940513001735,-0.5089172560558618,-1.182753231633156,0.0,-2.4133211637513816,-0.4749049847430339,0.0,0.9473684210526315,21,1,2,4,0,4,0,0,0,2,1,2,3,4,0,4,4,3.959100000000003,3.940038095238098,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Iodonapthalene,Ic1cccc2ccccc12,0,0.7097151515151515,-0.038389679103964805,0.7097151515151515,0.005925925925926334,0.057408212299063496,23.097272727272728,22.455818181818177,23.087204384,54,0,0.06340806529432398,-0.06162848939625385,0.06340806529432398,0.06162848939625385,0.09090909090909091,0.15702479338842976,0.23966942148760328,3.2161246449441516,51.56374976119334,1.2521366083542054,1.1252694975462934,0.6850420694714136,0.7532244381985159,0.5853620215004194,0.36524830746297954,0.17627111240951032,0.2743392165538886,0.11515787976167821,0.18870895786996192,0.07109010165930062,0.12012415373148976,-0.051818181818181826,2.350090679770045,0.2482357563693993,0.25588351313486757,1.2472473417222327,8.10997266122277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2958647496345246,3.5823397966964494,0.32456202464230877,0.8723008993810492,0.8723008993810492,3.0330290050906954,0.0,0.0,0.0,0.0,0.0,45.86711322470846,0.0,0.0,0.0,0.0,0.0,22.590870627068057,0.0,0.0,3.5701822710653963,0.8723008993810492,42.29693095364306,0.0,10.772448428929591,0.0,0.0,0.549310791605754,0.0,0.0,50.59714294597476,0.0,0.0,0.0,22.590870627068057,0.0,0.0,0.8723008993810492,4.9182144025286885,0.16153555967841682,0.0,0.01380471380471389,0.0,0.0,-0.20385770631484904,0.0,0.0,0.0,0.0,11,0,0,0,0,0,2,0,2,0,0,1,0,0,0,0,2,3.4444000000000017,5.151363636363638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"3,4-Dichloronitrobenzene",O=N(=O)c1cc(Cl)c(Cl)cc1,0,0.9489848599372408,-0.08415263748597077,0.9489848599372408,0.3127160493827157,0.04605174017247163,17.454636363636368,17.179727272727273,17.359462154181816,58,0,0.2705217811246272,-0.258308876852088,0.2705217811246272,0.258308876852088,0.1322314049586777,0.19008264462809918,0.23966942148760328,3.682463305848331,35.91118392621343,1.0037683531206711,0.729058102040558,0.5937724558620953,0.5795259288782467,0.3606108765844834,0.29296805349525196,0.14624373234947766,0.21496454562388265,0.08127946426626764,0.14161389687749612,0.04093716063414019,0.06195897420150742,-0.07272727272727275,2.112066060343762,0.4504382669671925,0.27889848695244446,1.8172839506172838,6.991438436023958,0.0,0.0,0.0,0.0,5.687386274683562,0.0,0.9194834789786884,0.0,0.0,0.0,2.1092617982240935,0.549310791605754,1.098621583211508,1.734623031346453,0.8214169743025757,2.626296914104418,0.0,0.0,0.0,0.0,0.0,38.28684101923811,0.0,0.0,0.0,5.687386274683562,0.0,23.20187978046503,0.44757373171069736,0.0,10.114318268765572,0.37384324259187823,18.127256122989884,10.045266627482652,0.0,0.0,3.921818181818182,2.6125412224082836,0.9194834789786884,0.0,10.045266627482652,0.0,0.0,0.0,0.0,0.0,0.0,2.4831050408159716,1.9707800224466892,0.9963400444352825,0.86483222245127,0.8864119081976224,-0.07286195286195282,0.0,-0.1707547699214365,0.0,0.0,0.0,0.0,11,0,3,0,0,0,1,0,1,2,0,5,1,0,0,0,1,2.901600000000001,3.9196727272727285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Trichloroacetonitrile,ClC(Cl)(Cl)C#N,0,1.2928240740740742,-0.2893518518518518,1.2928240740740742,1.400462962962963,0.07938430875861442,24.064666666666668,24.064666666666668,23.818272006666664,34,0,0.2771407646015829,-0.19353009583571426,0.2771407646015829,0.19353009583571426,0.2222222222222222,0.25,0.25,3.552734354515761,12.629072918469559,0.867851130197758,0.4301845024212732,0.8081489754305006,0.4267766952966369,0.17342558454396995,0.36240782104858366,0.10159374465293736,0.48179914861952994,0.021128856368212916,0.06338656910463875,0.0,0.0,0.05999999999999999,1.3516441151533922,1.06,0.31349519533711406,4.360000000000002,8.401095250723316,0.0,1.011536885465379,0.0,0.0,3.792535935529771,0.0,0.0,0.0,5.261891554738487,0.0,5.800469945116258,0.0,0.0,0.0,0.0,5.800469945116258,5.261891554738487,0.0,0.0,0.6320893225882952,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,34.802819670697545,0.6320893225882952,0.0,11.33111286753076,0.0,0.0,0.0,0.0,0.0,3.965,0.6320893225882952,0.0,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,6.677451870906005,-0.2893518518518518,2.4436728395061724,0.0,1.2928240740740742,0.0,0.0,0.2334104938271605,0.0,0.0,0.0,0.5,6,0,1,0,0,0,0,0,0,1,0,4,0,0,0,0,0,1.88018,4.317166666666666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Fenthion,COP(=S)(OC)Oc1ccc(SC)c(C)c1,0,0.5077651112528345,-0.3001781121399178,0.5077651112528345,0.04662396594440299,0.037853413480519335,17.39593749999998,16.4509375,17.376251435625026,90,0,0.3795195926841465,-0.42412997233664196,0.42412997233664196,0.3795195926841465,0.08984375,0.140625,0.1796875,3.7890854234677227,53.28050775240045,1.5495330462427468,1.4055284404887045,0.6259922125421651,0.8411589291656912,0.6875573418437424,0.4295907907573988,0.13946157733327313,0.3517217630020701,0.08024465898114852,0.20740249244457093,0.041717049375198725,0.09830825367722308,-0.003750000000000007,2.419651872283562,0.23228914242341556,0.37694927805093686,3.468896825543079,7.9255876810437105,0.8482025928209658,0.35934448958024406,0.0,0.0,0.0,6.718607232363179,0.0,0.0,0.0,11.761884949391115,0.0,2.295407739568689,2.4376747386839335,0.7710516878457487,2.133288739230547,1.8929592668995587,0.0,0.0,0.0,0.734210974550841,20.259829018881636,23.69070761468688,0.0,5.749511833283905,0.2827341976069886,0.0,5.749511833283905,18.480492181754293,1.2662393136801022,1.3033969007538926,6.851892117295679,1.6328018646406433,23.02273959850766,0.0,0.0,0.0,1.730625,4.260376955751816,0.0,0.0,11.761884949391115,0.0,0.0,0.0,0.0,0.0,9.047494323423635,2.3057488495564855,7.842415958459289,0.29461892492336444,-0.044899814381771194,0.0,-0.06111444751511712,-0.06841144849143362,-0.19559695058578974,-0.17704806164571224,-0.4978092259280256,-0.4168077126125809,0.4,16,0,3,0,0,0,1,0,1,5,0,6,9,0,0,0,1,3.6130200000000023,4.493187500000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +1-Hexadecanol,CCCCCCCCCCCCCCCCO,0,0.4801916461028856,-0.3028996320750524,0.4801916461028856,3.4202560553180286,0.023586378975325624,14.261588235294134,12.245588235294115,14.250645041647058,104,0,0.2100365348450359,-0.39637656934228244,0.39637656934228244,0.2100365348450359,0.041522491349480974,0.06574394463667821,0.08996539792387542,7.7152954441943535,74.30548660105944,2.512182751834503,2.494602840615521,0.49460284061552134,1.2535682453988128,1.2271983785703409,0.2325955379548195,0.10894482780093917,0.10894482780093917,0.05079594331223429,0.05079594331223429,0.023559736361999498,0.023559736361999498,-0.0023529411764705885,2.9004818875291747,0.10181173564104429,0.9388235294117646,15.960000000000003,9.227251985871028,0.3005181288886596,0.0,0.0,0.08418821513133143,0.0,0.0,0.0,0.0,0.0,0.0,5.276465637328095,0.37487793537231645,2.8854412049525378,0.16126571249061414,2.9614023849837947,0.0,1.4311996572326342,0.0,0.0,5.651343572700412,6.558985242916289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.770529005368008,0.0,0.0,8.312227828795539,0.0,0.0,0.0,0.0,1.19,6.03716623404843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.745072471226466,15.705850940586155,0.0,0.0,0.2011915326657664,0.0,0.0,0.0,-4.038448173117972,-0.486241358957479,0.0,1.0,17,1,1,0,0,0,0,0,0,1,1,1,16,0,0,0,0,5.460000000000006,4.552811764705886,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +metalaxyl,COCC(=O)N(C(C)C(=O)OC)c1c(C)cccc1C ,0,0.6796626747921388,-0.23232348356009092,0.6796626747921388,1.0290277777777783,0.03858957653513468,13.966799999999978,12.908399999999997,13.95735290760003,110,0,0.32817794243626075,-0.46747856729214543,0.46747856729214543,0.32817794243626075,0.0725,0.11000000000000001,0.1375,4.717517520164533,57.45864182796547,1.6555182992539865,1.5290103378677706,0.47901033786777053,0.8857851073916272,0.7572782632320763,0.2322782632320763,0.1528210026473286,0.1528210026473286,0.09616495014920055,0.09616495014920055,0.05835377125886805,0.05835377125886805,-0.09399999999999997,2.654328890675423,0.17351540015306063,0.3525044220860888,3.35960302457467,7.426511549094755,0.4736862953800049,0.6288438855632966,0.0,0.0,5.907179729351506,5.969305287951849,0.48472234574611495,4.794537184071822,0.0,0.0,0.9063628061494942,1.5841289667640515,0.9687389732207283,1.4587220703804393,2.3924364977659196,0.8781935645993458,0.0,0.0,0.0,1.3286784410118342,25.534799891531943,29.254159106383874,0.0,0.0,0.2449954865425239,5.687386274683562,0.0,0.0,1.926463382316723,0.953140013787187,13.703784234591359,2.3382362390132156,18.127256122989884,0.0,0.0,0.0,2.7920000000000003,4.946319955506971,0.4794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,1.4392964839787308,8.44039737851159,0.0,1.278582835333207,0.0,-0.2748579459561602,-0.27470828609221454,-0.45917319906357623,0.0,-0.8208603552532129,-0.38521376081296743,0.4666666666666667,20,0,5,0,0,0,1,0,1,4,0,5,10,0,0,0,1,1.8443399999999999,3.8378000000000023,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Isofenphos,CCOP(=S)(NC(C)C)Oc1ccccc1C(=O)OC(C)C,0,0.6023850501901095,-0.27105667944085604,0.6023850501901095,0.9772287178760384,0.02589785319761824,15.700045454545437,14.600409090909094,15.68710753990912,124,0,0.3416872759332931,-0.45927591953502317,0.45927591953502317,0.3416872759332931,0.07024793388429752,0.10537190082644629,0.13636363636363635,4.316368787800997,61.38062725182238,1.6927328407762117,1.5652576656054196,0.552117837056676,0.9025225164073425,0.7699619853143073,0.3446745596107031,0.14202575772156323,0.27323416932534755,0.07464104603885022,0.1597507976749726,0.045996713318363906,0.11087114637130938,-0.042727272727272725,2.8060767055120643,0.1897208966908666,0.39224988103542047,6.048272534848685,7.767941726288566,0.6265616944192584,0.5784002456049592,0.0,0.0,0.0,12.611703828186428,0.0,9.87485699643102,0.0,0.0,0.549310791605754,2.6432342768383466,1.2704558803215074,1.0106505983208096,2.3417356059790366,1.109934541673867,0.0,0.230923627834509,0.0,2.10715323098991,6.558985242916289,29.733126322350174,0.0,5.749511833283905,0.4365484988214098,0.0,5.749511833283905,6.642398540234578,1.1193727739167167,0.9576121001886597,0.0,3.4611316388255577,24.16967483065318,1.4118420783282006,0.0,0.0,2.5813636363636365,4.822319005494273,0.21793350836690098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.260610115511867,2.23954055093608,9.023540299685209,0.2243690286510227,0.6023850501901095,-0.04441948717618356,-0.07785594035594033,-0.1862485595037679,-0.45668864992135255,-0.18810484204429748,-1.3679364954843982,0.0,0.5333333333333333,22,1,5,0,0,0,1,0,1,5,1,7,13,0,0,0,1,3.8896000000000033,4.172918181818184,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Bromoheptane,CCCCCCCBr,0,0.9502604166666666,-0.5048958333333335,0.9502604166666666,2.2094005102040817,0.05600566745744153,22.387625000000018,20.497625,22.2544640725,50,0,0.03865474351025575,-0.09280780398759336,0.09280780398759336,0.03865474351025575,0.171875,0.265625,0.34375,6.370990656665334,49.96527438819279,2.4375,2.3597455591261536,0.6829951265154914,1.1875,1.1486227795630768,0.3102475632577457,0.08993638978153835,0.13949878162887286,0.03715569489076918,0.06193689081443643,0.014671597445384588,0.027062195407218215,0.06,2.2407403893236806,0.11735901267714442,0.9349999999999999,6.48,10.233876102795962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0341919525703185,0.7966156126661724,3.2304464085022615,0.0,2.570172292819162,1.9912429872436685,0.0,0.0,0.0,4.839564577992822,5.282192925464797,0.0,0.0,0.0,0.0,0.0,0.0,15.929943897949348,0.6602741156830996,0.0,0.0,7.40973687081199,0.0,0.0,0.0,0.0,0.0,5.499838693675922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.929943897949348,2.570172292819162,13.827335645195578,0.2761750637755102,0.0,-0.3924073926445577,0.0,0.0,0.0,-2.4402779549319735,-0.45832536139455804,0.0,1.0,8,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,3.351700000000002,5.319125000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +dibutylphthalate,CCCCOC(=O)c1ccccc1C(=O)OCCCC ,0,0.6474432525334514,-0.21173216320791416,0.6474432525334514,1.303733142208521,0.02691411896600246,13.917399999999978,12.808599999999998,13.907590459200032,110,0,0.33850596455259063,-0.4620783967394106,0.4620783967394106,0.33850596455259063,0.052500000000000005,0.075,0.095,3.8112158706827066,57.375535970879426,1.7016507857945051,1.5816496580927726,0.4816496580927726,0.9077185821959348,0.7862372435695795,0.23623724356957948,0.13665816237971967,0.13665816237971967,0.08051339208225469,0.08051339208225469,0.04577540330272392,0.04577540330272392,-0.092,2.763672797103508,0.16578033285185953,0.45627900793702514,5.034776863662885,7.527015496312808,0.4736862953800049,0.0,0.0,0.0,0.0,11.938610575903699,0.0,9.589074368143644,0.0,0.0,1.9267235726288354,1.2415343608992675,0.9595309893191539,1.7605470959294167,2.4609744255744306,0.5969305287951849,0.0,0.0,0.0,1.9597741919954437,13.117970485832577,35.29657781404717,0.0,0.0,0.0,0.0,0.0,0.0,1.2528290530868138,0.4736862953800049,0.0,4.503407471359564,24.16967483065318,0.0,0.0,0.0,2.6300000000000003,4.977432135784617,0.4794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,1.5078344117872418,8.737844665137498,0.0,1.2948865050669025,0.0,-0.16848956364953388,-0.2342074396888385,-0.2813422374382873,-0.8243966647629429,-0.80762859799813,0.0,0.5,20,0,4,0,0,0,1,0,1,4,0,4,10,0,0,0,1,3.600400000000003,3.8411500000000025,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Trichloronate,CCOP(=S)(CC)Oc1cc(Cl)c(Cl)cc1Cl,0,0.4651055213752168,-0.3007479380641145,0.4651055213752168,0.45843545288485754,0.031256046907091876,19.62376470588234,18.91223529411765,19.525654134941195,96,0,0.23738092894430646,-0.4417758027941692,0.4417758027941692,0.23738092894430646,0.07958477508650519,0.12110726643598614,0.15916955017301038,3.770943340003117,48.63491913126187,1.375195010441815,1.1650501109364253,0.6932095585824845,0.7415094004818714,0.5733249620725205,0.442265976457715,0.14205756403378497,0.38674782814896025,0.07935559533810539,0.2369630473852764,0.042638477974445144,0.13197430539705385,0.029411764705882346,2.52210296830545,0.32204234753367017,0.3884778401156381,4.27100646352724,8.128292033167153,0.5322055484366844,0.338206578428465,0.0,0.38186308447169953,0.0,0.0,0.0,0.0,0.0,0.0,2.4502771639996017,1.453009818446919,1.360147086052726,1.5947011416953616,1.4997998233803689,3.123608717373829,0.0,0.0,0.0,0.8061049549759622,12.672998548787579,27.15273735655057,0.0,5.749511833283905,0.2661027742183422,0.0,5.749511833283905,41.29449210671644,0.7454705028698576,0.9606237206088508,0.0,1.7736992299196468,12.08483741532659,15.067899941223978,0.0,0.0,1.0858823529411765,3.8688649652489584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5237471617118175,3.9754426820641573,5.883926524540962,1.311130111539395,0.0,-0.1019175054280971,0.0,-0.05289396314081188,-0.08712210115527688,-0.21171773107391112,-0.9293138320142874,0.0,0.4,17,0,2,0,0,0,1,0,1,3,0,7,7,0,0,0,1,5.391500000000002,4.620705882352943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Chlorohexane,CCCCCCCl,0,1.060734126984127,-0.5539980158730159,1.060734126984127,3.3802862811791385,0.056497207904080325,17.231857142857134,15.359857142857141,17.152939728,44,0,0.043519418078373846,-0.12671696965000712,0.12671696965000712,0.043519418078373846,0.22448979591836735,0.3469387755102041,0.42857142857142855,6.082753304270883,46.291160093254106,2.4285714285714284,2.33970921042989,0.5905562027182402,1.1785714285714286,1.134140319500659,0.2595638156448344,0.0849273026074724,0.11192476496527434,0.033535079875164776,0.04703381105406574,0.012303254223296672,0.019052619812747158,0.041428571428571426,2.123974153271652,0.110730261082469,0.8985714285714285,6.290000000000001,9.875977761267979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,3.7100952601834023,0.9104178430470542,3.378852564798081,0.0,2.5456944614589796,1.6572771271760736,0.0,0.0,0.0,4.620513103230457,5.832106723373709,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,0.8331581033391012,0.0,0.0,7.166207564689443,0.0,0.0,0.0,0.0,0.0,5.453671206569559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.202971588635053,13.385587387071231,0.7240479564841807,0.0,0.0,0.0,-0.48289804016844834,0.0,-2.1702402998236336,-0.5120525591188859,0.0,1.0,7,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,2.805500000000001,4.9802857142857135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6-hydroxyquinoline,Oc2ccc1ncccc1c2 ,0,0.7029166666666666,-0.04490483061911633,0.7029166666666666,0.153472222222222,0.05582757788933799,13.19645454545455,12.555,13.186614894909091,54,0,0.2930926378735071,-0.5079415533428902,0.5079415533428902,0.2930926378735071,0.1322314049586777,0.2231404958677686,0.3057851239669422,3.083073414970928,59.78471036972791,1.2373059986436117,1.1232238078148928,0.4868601714512565,0.7632684788832631,0.5735987301087048,0.2637579764301718,0.17284888552108088,0.17284888552108088,0.10735217897076631,0.10735217897076631,0.06645955014994984,0.06645955014994984,-0.1427272727272727,2.3324040262388777,0.20053001329591338,0.20317948482189643,1.02612164813026,6.731673922152418,0.46443710828247387,0.5226828939349004,0.0,0.0,1.4311996572326342,0.0,0.4530889564497462,0.0,0.0,0.0,0.549310791605754,2.197243166423016,1.0508290386617778,1.2492047322397801,1.2121235934662302,0.9911749938255506,1.4311996572326342,0.4530889564497462,0.0,0.0,0.0,36.38498874913124,0.0,5.749511833283905,0.0,0.0,5.749511833283905,0.0,1.0476351244806414,0.0,0.0,0.7476864851837565,36.38498874913124,0.0,10.902924932081056,0.0,3.010909090909091,3.8304091438559214,0.0,0.0,10.902924932081056,0.0,0.0,0.0,0.0,0.0,10.092786712054421,0.8777955449321777,4.750006978801622,0.0,0.3315924551638837,0.3611013837353123,-0.015420875420875396,-0.041672507386793074,-0.2049964783893354,-0.044247320140177265,0.0,0.0,0.0,11,1,2,0,0,0,1,1,2,2,1,2,1,0,0,0,2,1.9403999999999997,3.9461636363636385,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +Methyl hydrazine,CNN,0,2.1666666666666665,-0.9062499999999999,2.1666666666666665,0.22916666666666652,0.09110501203899114,15.357666666666672,13.341666666666667,15.351032730666665,20,0,0.14056673575175682,-0.2717217592299514,0.2717217592299514,0.14056673575175682,1.1111111111111112,1.4444444444444444,1.4444444444444444,3.877604668586773,28.516291673878232,2.551566846126417,2.4648090636666384,0.4648090636666386,1.2846864251656744,1.0884158614166175,0.14120226591665966,0.03333333333333333,0.03333333333333333,0.0,0.0,0.0,0.0,-0.02666666666666667,1.6151713102472967,0.05720232629323538,0.6399999999999998,1.9200000000000033,9.401044275469058,0.0,1.4118420783282006,0.0,0.0,0.0,0.0,3.749178638407585,0.0,0.0,0.0,0.0,2.3252756334274154,1.3707585561702202,0.0,2.782600634498421,0.0,0.0,1.8062720487974764,5.828719768830327,0.0,6.975826900282246,0.0,0.0,0.0,3.749178638407585,0.0,0.0,0.0,2.3252756334274154,0.0,0.0,1.3707585561702202,0.0,4.235526234984602,0.0,0.0,12.683333333333332,2.3252756334274154,0.0,0.0,11.247535915222755,0.0,0.0,0.0,0.0,0.0,0.0,2.782600634498421,12.836805555555557,0.0,0.0,0.0,-0.07638888888888884,-0.10416666666666667,0.0,0.0,-0.9062499999999999,0.0,1.0,3,3,2,0,0,0,0,0,0,2,2,2,2,0,0,0,0,-0.9205000000000001,4.4157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1,3-Butadiene",C=CC=C,0,1.6956018518518519,-0.21134259259259253,1.6956018518518519,0.694444444444444,0.0990834921703523,13.523000000000003,12.011,13.511737548,22,0,0.06162185686488817,-0.0990867373646055,0.0990867373646055,0.06162185686488817,0.4375,0.5625,0.625,4.708295226687178,39.98112429114694,2.0773502691896257,2.0,0.5,1.1160254037844386,0.9375,0.1875,0.0625,0.0625,0.015625,0.015625,0.0,0.0,-0.13,1.8406191515407482,0.07440993236027055,0.62,1.48,8.721173576914437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.291555354018717,0.0,0.0,2.0561378342553303,2.0561378342553303,0.0,0.0,0.0,0.0,0.0,0.0,25.16622141607487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0561378342553303,25.16622141607487,0.0,0.0,0.0,0.0,6.291555354018717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0561378342553303,9.936574074074073,0.0,0.0,0.0,0.0,0.0,-0.3472222222222221,0.0,-0.42268518518518505,0.0,0.0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1.3584,5.098499999999999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Ethisterone,CC12CCC(=O)C=C1CCC3C2CCC4(C)C3CCC4(O)C#C ,0,0.5752223123639433,-0.234781109303625,0.5752223123639433,1.1302727443645555,0.029965539721879455,13.584913043478238,12.357782608695652,13.574301310260903,124,0,0.2122126893177757,-0.3770338698968244,0.3770338698968244,0.2122126893177757,0.062381852551984876,0.10207939508506617,0.13610586011342155,2.6945701639521706,73.52275845838649,1.7762335283099357,1.7094128948229446,0.4920215904751185,0.9590744761908694,0.8833259383012055,0.2786194908897332,0.22870914622086214,0.22870914622086214,0.17313988061547306,0.17313988061547306,0.11646124465556258,0.11646124465556258,-0.04652173913043479,3.0205855902242535,0.1490889528280938,0.2055920253447295,1.835105544595314,7.769825703321109,0.22212209526553098,0.303122146397996,0.25144543245064954,0.06222607205359279,0.0,0.0,0.2084581384379053,0.0,0.0,6.399401534821945,1.0955357862398378,3.2069308513403145,2.0024730119557255,0.0595981980943574,2.039731582251087,0.25144543245064954,1.4311996572326342,0.0,28.5118539948828,3.056010185052612,0.0,11.625176276104835,0.0,12.319835853677588,0.0,0.0,0.0,0.0,0.779317548073412,0.2084581384379053,40.83168984856039,4.421637585296618,11.625176276104835,0.0,0.0,0.0,1.6217391304347826,5.052543890154899,0.625645525098407,0.0,0.0,0.0,6.399401534821945,5.920434318855644,0.0,0.0,5.1088081911072125,1.2541900339407406,10.730868763194996,0.0,0.5752223123639433,0.18827917773844424,-0.7404871164112453,-0.7427464200824749,-0.09639601087842235,-1.647403773936935,-0.41951084503178643,0.0,0.7619047619047619,23,1,2,4,0,4,0,0,0,2,1,2,3,3,0,3,4,3.8826000000000027,3.9344695652173933,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +Triazolam,Cc3nnc4CN=C(c1ccccc1Cl)c2cc(Cl)ccc2n34,0,0.37218586710046336,-0.1289099256452166,0.37218586710046336,0.4760596182917609,0.028847312253323997,14.922478260869557,14.396565217391306,14.871473988869582,114,0,0.1588744327428707,-0.28096197159767616,0.28096197159767616,0.1588744327428707,0.05103969754253308,0.0888468809073724,0.12665406427221174,2.302159139705286,62.25824238533161,1.1460402021997245,1.0019471012181862,0.5459409226110955,0.6964551139368603,0.52796574161996,0.2999626523164146,0.18940907210365615,0.222275548017502,0.13182178715676804,0.1523633346029217,0.09076397239985189,0.10492619272564953,-0.09434782608695648,3.192358132339071,0.2774043365933721,0.23812330512946628,2.3467292305180467,6.948824743514355,0.0,0.5357071383615597,0.2532349781739099,0.0,0.0,0.0,0.41563062523595756,0.0,0.0,10.197363616602075,1.796918952324127,1.3487637803456025,1.099323707799448,1.031995577521141,0.7151783771322886,1.2571115123145973,0.0,0.64193318540841,4.992404732635669,0.5803805131135489,0.0,75.11790956051956,0.0,5.687386274683562,0.0,0.0,0.0,23.20187978046503,0.8902673159636578,0.28247216018764976,6.851892117295679,1.7054267240624563,47.28933568627873,10.045266627482652,5.687386274683562,0.0,1.872608695652174,4.34198837563415,0.0,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,15.189768349237745,1.7239557588916383,4.284724666912863,0.5379589993874628,0.17173745987928177,0.2643426228289581,-0.09065981465049783,-0.06355818736512316,-0.2104609556083567,0.0,-0.25398817302710014,0.0,0.11764705882352941,23,0,4,0,1,1,2,1,3,4,0,6,2,0,0,0,4,4.233520000000003,3.995695652173914,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pyrolan,CN(C)C(=O)Oc1cc(C)nn1c2ccccc2,0,0.6932963569515597,-0.19681643632849655,0.6932963569515597,0.2493428760393046,0.04526773892713114,13.626777777777782,12.786777777777775,13.617579262222222,94,0,0.4155435322821291,-0.39100310386757764,0.4155435322821291,0.39100310386757764,0.08024691358024691,0.1234567901234568,0.16049382716049382,2.8408677096864547,58.64751371685025,1.4356898218138114,1.314340964857089,0.48100763152375564,0.8170631731463298,0.6613340678997593,0.24466740123309272,0.15930829706626412,0.15930829706626412,0.09349279386682385,0.09349279386682385,0.05681081796550261,0.05681081796550261,-0.12777777777777774,2.925522726767249,0.18756132512016246,0.27289103716759555,2.5050425693523346,7.0369420967988585,0.5353762602583626,0.0,0.0,0.32666601869085393,0.0,6.093240070938415,0.0,9.476340119217006,5.098681808301038,0.0,1.0070697846105492,1.052040529590126,1.7961610840977649,1.0892147559196301,1.6718210266902869,0.3385133372743564,0.0,0.8155774707942611,0.0,0.38066067318309327,13.951653800564491,41.948440240828226,0.0,11.567374611118932,0.26315905298889164,4.794537184071822,5.879988336435371,0.0,1.9291826858777559,0.0,6.851892117295679,1.4586281298556532,36.25451224597977,0.0,5.687386274683562,0.0,2.6311111111111116,4.739583920644236,0.266363176892879,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.4054578497974082,6.569315183650777,0.0,0.6590007774371751,0.19685242924330223,-0.10218385193583607,-0.06465248908205255,-0.3052342122155208,-0.11372898061831045,-0.5662207083313864,0.0,0.23076923076923078,18,0,5,0,0,0,1,1,2,4,0,5,5,0,0,0,2,2.2411200000000004,3.778444444444446,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Indan,C1Cc2ccccc2C1,0,0.8594264403292181,-0.33088991769547316,0.8594264403292181,0.6310185185185178,0.054386327842303725,13.130999999999993,12.010999999999997,13.11980559111111,46,0,0.06257048931006724,-0.06197440107740022,0.06257048931006724,0.06197440107740022,0.1358024691358025,0.19753086419753085,0.2592592592592593,3.022927750677691,58.23315985951993,1.662677957237528,1.6111111111111112,0.5,0.9318612606609035,0.8333333333333334,0.2777777777777778,0.18055555555555555,0.18055555555555555,0.11805555555555555,0.11805555555555555,0.07291666666666667,0.07291666666666667,-0.08666666666666667,2.3881423340762513,0.12888338579559466,0.2078418721570862,0.7477845773511872,7.730011478981743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.685519425628131,3.36063085415357,0.9138390374468135,0.6092260249645424,1.5230650624113555,0.0,0.0,0.0,0.0,2.1243083004431265,0.0,35.29657781404717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.416205533628751,0.0,3.467490382936174,24.16967483065318,0.0,0.0,0.0,0.0,6.046150279781701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5230650624113555,8.499974279835392,0.0,0.0,0.0,-0.14022633744855956,0.0,-0.31638374485596693,-0.9600308641975306,0.0,0.0,0.3333333333333333,9,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,2,2.1753,4.274111111111113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Bromobutane,CCCCBr,0,1.4291666666666667,-0.6541666666666666,1.4291666666666667,2.296666666666667,0.10227642394040723,27.404000000000014,25.589599999999997,27.197752477599998,32,0,0.0386545709247684,-0.09280798507522109,0.09280798507522109,0.0386545709247684,0.44000000000000006,0.6,0.64,5.300082077607573,37.16645878435746,2.4,2.2755928946018456,0.7927922024247863,1.15,1.0877964473009227,0.34639610121239317,0.06889822365046136,0.14819805060619656,0.02194911182523068,0.061599025303098284,0.00472455591261534,0.02454951265154914,0.096,1.8096798835528565,0.12105613327580592,0.8960000000000005,4.480000000000002,10.869271895634217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.830952183314881,1.274584980265876,3.523803986199355,0.0,2.467365401106396,3.1859887795898696,0.0,0.0,0.0,3.9195483839908873,5.282192925464797,0.0,0.0,0.0,0.0,0.0,0.0,15.929943897949348,1.0564385850929594,0.0,0.0,6.386913785097283,0.0,0.0,0.0,0.0,0.0,4.975986969083847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.929943897949348,2.467365401106396,12.572458333333334,0.45933333333333337,0.0,-0.5504166666666667,0.0,0.0,0.0,-1.2864583333333333,-0.6449166666666667,0.0,1.0,5,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,2.1814,5.7403999999999975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Chlorimuron-ethyl (ph 7),CCOC(=O)c1ccccc1S(=O)(=O)NN(C=O)c2nc(Cl)cc(OC)n2,0,0.49982151751304077,-0.22122283344064628,0.49982151751304077,0.5643512613378685,0.010920547027265151,15.363962962962956,14.803962962962967,15.334817884444462,144,0,0.3390012405396835,-0.4808255562116606,0.4808255562116606,0.3390012405396835,0.05761316872427984,0.08641975308641976,0.11248285322359397,2.862801431208335,57.487028705031435,1.2189381812370725,1.019428032898374,0.5221104598223069,0.6947203512983561,0.504541227936902,0.2960528652076395,0.14822754207841304,0.21784581518048846,0.09001523098443431,0.1411034749975118,0.05439806725091114,0.09631466530056365,-0.10222222222222223,2.8005914698582735,0.2994505772961084,0.3241645707907908,4.903537463631899,6.6955232091347,0.35087873731852215,0.24162475455788937,0.05229044734548891,0.4543013067315992,15.97163043439408,5.969305287951849,0.17757545126191931,13.212334168400758,14.976869565848947,4.824122406838185,0.877251011317004,0.701360353060084,0.3760997917101465,1.3986466011376246,1.7808540416586662,1.4788156502924537,0.0,0.5478547943975037,0.0,0.43508798491901685,18.60585022575341,40.92865484690626,0.0,5.879988336435371,0.5396258475775099,5.948339280986494,5.879988336435371,11.600939890232516,1.642153480047848,0.7242478256029428,0.0,1.3481666881276881,35.107577013834245,6.564951895220993,0.0,0.0,4.732962962962963,4.085669410237423,0.6669211612026881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.441682949494513,1.1927185835164367,5.479650548066239,0.211410084458347,1.0656056103140603,-0.05711279941017474,-0.0629068639832473,-0.1779002023799087,-0.24751502361240899,-0.08055884851200779,-0.2775926967141162,-0.3427917423831609,0.2,27,1,10,0,0,0,1,1,2,8,1,12,9,0,0,0,2,1.1715999999999998,3.513222222222223,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,2,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +o-Aminophenol,Nc1ccccc1O,0,0.9214467592592592,-0.07254050925925923,0.9214467592592592,0.012175925925925757,0.04812084447944921,13.640999999999993,12.758999999999997,13.6315954805,42,0,0.29321092290285933,-0.5057961642180998,0.5057961642180998,0.29321092290285933,0.21875,0.328125,0.421875,3.6216180431329392,49.225272391920804,1.468569833189241,1.3569327357454777,0.4819327357454776,0.8640987525151875,0.6538008030557112,0.2409663678727388,0.1472163678727388,0.1472163678727388,0.0793136272437149,0.0793136272437149,0.0368040919681847,0.0368040919681847,-0.14750000000000002,2.189369290352048,0.15119041909521008,0.21726506702454224,0.7293748574130688,7.2003880740605375,1.3535656458541858,0.7186889791604881,0.35296051958205016,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,1.5106046769158237,1.5106046769158237,0.0,1.3963025624205552,1.6769408215555617,0.7109232843354453,1.4311996572326342,0.0,0.0,0.0,5.719716975726273,24.16967483065318,0.0,5.749511833283905,0.7149646219657841,5.687386274683562,5.749511833283905,0.0,0.8175009810424808,0.0,0.0,0.6853792780851101,24.16967483065318,2.8236841566564013,0.0,0.0,5.78125,4.4508216173275805,0.0,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.2172397548212395,6.227054398148149,0.0,0.0,0.5014467592592592,-0.06274884259259253,-0.06701388888888885,-0.2862384259259258,0.0,0.0,0.0,0.0,8,3,2,0,0,0,1,0,1,2,2,2,2,0,0,0,1,0.9743999999999999,4.0649,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2-Decanone,CCCCCCCCC(=O)C,0,1.0795545394100958,-0.41342249020820465,1.0795545394100958,2.480492764235323,0.046967320638921735,14.206272727272744,12.373545454545452,14.195583205454545,66,0,0.1293399502822748,-0.30003102349469607,0.30003102349469607,0.1293399502822748,0.11570247933884298,0.18181818181818182,0.24793388429752064,6.874717678033681,62.884505839976434,2.370668206289966,2.309840753678533,0.49165893549671486,1.1731545943981139,1.1321931041119937,0.2231021950210847,0.10946583138472105,0.10946583138472105,0.044411912391634806,0.044411912391634806,0.019365047104908314,0.019365047104908314,-0.030000000000000002,2.502412260211883,0.10303614219963014,0.7066738742126539,9.67,8.93496928734536,0.43586701673380196,0.5257495405786309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.519683329449325,1.202256092602278,3.071645093157616,0.0,2.928155300679656,0.5257495405786309,0.0,0.0,0.0,5.301296231263364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5257495405786309,0.43586701673380196,0.0,7.793584515209215,0.0,0.0,0.0,0.0,1.5518181818181818,5.827045771841995,0.43586701673380196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.492288283945854,13.550382693187975,0.0,1.0795545394100958,0.0,0.0,-0.2254993422032112,0.0,-2.802483408346505,-0.700439330533208,0.0,0.9,11,0,1,0,0,0,0,0,0,1,0,1,9,0,0,0,0,3.3260000000000023,4.424909090909093,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Napthylamine,Nc1cccc2ccccc12,0,0.7101515151515151,-0.05323816395244963,0.7101515151515151,0.030442176870748128,0.05117767642495475,13.017181818181824,12.192454545454542,13.006681753454545,54,0,0.15623629874633813,-0.39822585696205237,0.39822585696205237,0.15623629874633813,0.09917355371900825,0.17355371900826447,0.25619834710743805,3.223713014899283,65.17825126412522,1.395532087371444,1.3133830541363598,0.4952012359545417,0.8360138566096942,0.6698212717045359,0.27032789070454355,0.17941879979545264,0.17941879979545264,0.11751864530113493,0.11751864530113493,0.07266394535227177,0.07266394535227177,-0.13636363636363635,2.388594840157859,0.16409658717351025,0.20673440709112526,0.9444444444444444,7.110346010384714,0.5199742705205703,0.0,0.2566985596960365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2958647496345246,1.038967538375281,1.0066918626498507,0.8723008993810492,1.1289994590770855,1.4963486094193776,0.0,0.0,0.0,0.0,5.719716975726273,42.29693095364306,0.0,0.0,0.5199742705205703,5.687386274683562,0.0,0.0,0.0,0.0,0.0,0.8723008993810492,42.29693095364306,2.8236841566564013,10.772448428929591,0.0,2.3654545454545453,4.3622106571206025,0.0,0.0,16.492165404655864,0.0,0.0,0.0,0.0,0.0,0.0,1.1289994590770855,6.220171614100185,0.0,0.0,-0.046422558922558844,-0.03696316910602621,0.0,-0.3489070981928124,0.0,0.0,0.0,0.0,11,2,1,0,0,0,2,0,2,1,1,1,1,0,0,0,2,2.4220000000000006,4.396400000000001,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Iodomethane,CI,0,3.12875,-0.8900000000000001,3.12875,1.3775000000000002,0.17495366742252746,70.96950000000001,69.4575,70.963974048,14,0,0.03407723111748125,-0.09013435838830033,0.09013435838830033,0.03407723111748125,1.5,1.5,1.5,3.0237157840738176,11.182263988300141,2.25,1.9389822365046137,1.5177313820927747,1.0,0.8444911182523068,0.6338656910463873,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.7219280948873623,0.1826007580599743,0.865,0.09986301369863015,16.108000324688312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.295435313534028,2.4293114483320397,2.0561378342553303,0.0,2.0561378342553303,11.295435313534028,0.0,0.0,0.0,0.0,4.858622896664079,0.0,0.0,0.0,0.0,0.0,0.0,22.590870627068057,2.4293114483320397,0.0,0.0,2.0561378342553303,0.0,0.0,0.0,0.0,0.0,2.4293114483320397,0.0,0.0,0.0,0.0,0.0,22.590870627068057,0.0,0.0,0.0,2.0561378342553303,9.38625,0.6887500000000001,-0.8900000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1.0512000000000001,9.971999999999998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +ethiofencarb,CCSCc1ccccc1OC(=O)NC ,0,0.7968494661753589,-0.2218096996731558,0.7968494661753589,0.44977532911312657,0.05705085650546756,15.020866666666674,14.012866666666664,15.005489981333334,82,0,0.41184865886107275,-0.4100361565009396,0.41184865886107275,0.4100361565009396,0.12000000000000001,0.17777777777777776,0.23111111111111113,3.6743129867241593,55.57284377453614,1.6022010477260067,1.4781305644594365,0.5325636698546182,0.876559238651666,0.7276698611439716,0.2856220601724894,0.13267222358261155,0.17349705262899784,0.07585844218765363,0.10307499488524449,0.04240803341520402,0.06219615662897609,-0.07733333333333334,2.533514798446472,0.18288764449129638,0.42314868455944166,3.8330126495837664,7.689117824317294,0.6697784204725618,0.38330078888559366,0.09412280522188005,0.0,0.0,6.093240070938415,0.0,4.794537184071822,11.761884949391115,0.0,1.665276549352371,0.7831583728542302,2.13012138925544,0.3655356149787254,2.008924133505543,1.1903416680219687,0.0,0.35398755688589173,0.0,0.8371232668297225,12.680783785432403,29.733126322350174,0.0,5.749511833283905,0.6697784204725618,4.794537184071822,5.749511833283905,11.761884949391115,1.2516015904247213,0.38033045901001056,0.0,2.1070642263583834,24.16967483065318,1.4118420783282006,0.0,0.0,2.555333333333333,5.592347287808682,0.31963581227145477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.3734974576474184,7.77543793046246,-0.029985021940875104,0.7968494661753589,-0.041502354182413694,-0.5025059996220711,-0.08016408415217934,-0.2803003957755942,-0.12864739491475605,-0.4425154793832645,0.0,0.36363636363636365,15,1,3,0,0,0,1,0,1,3,1,4,6,0,0,0,1,2.6579000000000006,4.224113333333336,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +Pentachlorobenzene,Clc1cc(Cl)c(Cl)c(Cl)c1Cl,0,0.6664534231200898,-0.010291806958473588,0.6664534231200898,0.010246913580247652,0.04100247996359572,22.75809090909091,22.666454545454545,22.532008039272725,60,0,0.08084510227674689,-0.08259779741439219,0.08259779741439219,0.08084510227674689,0.0743801652892562,0.10743801652892562,0.14049586776859505,3.6035674514745475,20.92756588840069,0.8603728741034323,0.535438396822376,0.7881333722853099,0.4967365104670685,0.267719198411188,0.39406668614265494,0.15408283477482432,0.3258848679608368,0.09002843037442515,0.2798255508635354,0.045014215187212575,0.1399127754317677,0.060909090909090906,2.0815718239857546,0.752408650405005,0.32640250474200294,1.8772480467474577,8.213882250370283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2731544955602345,0.549310791605754,0.0,2.4076295568069863,0.12461441419729274,5.2731544955602345,0.0,0.0,0.0,0.0,0.0,31.15558527636993,0.0,0.0,0.0,0.0,0.0,58.00469945116258,0.0,0.0,0.0,0.12461441419729274,6.042418707663295,25.11316656870663,0.0,0.0,0.0,0.0,0.0,0.0,31.15558527636993,0.0,0.0,0.0,0.0,0.0,0.0,5.397768909757527,0.6664534231200898,2.557901234567901,0.0,0.018260381593715215,0.0,0.0,-0.010291806958473588,0.0,0.0,0.0,0.0,11,0,0,0,0,0,1,0,1,0,0,5,0,0,0,0,1,4.9536,4.681090909090909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2-Chlorobiphenyl,Clc1ccccc1c2ccccc2,0,0.606757078899936,-0.0459773581797391,0.606757078899936,0.30123456790123426,0.048816711004647975,14.512076923076926,13.814230769230765,14.464559843692307,64,0,0.06386294087473798,-0.08366422144619928,0.08366422144619928,0.06386294087473798,0.0650887573964497,0.11242603550295857,0.1715976331360947,3.0269140714779517,51.896136144007606,1.3021694792519622,1.1829203440776328,0.5487610322328986,0.777448925017661,0.6106909412695857,0.29361128534721853,0.16838324896189333,0.19745743919337236,0.10705666749065079,0.12886231016426006,0.06496085525017745,0.07949795036591695,-0.09769230769230769,2.499719362818697,0.22000606385164265,0.27918377048451803,1.7318439497925535,7.341269081073303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.610791503964529,0.8927592461046376,0.8143142158029478,0.9489866927332292,0.9489866927332292,0.8923799915563474,0.0,0.0,0.0,0.0,0.0,59.40440168271098,0.0,11.126902983393991,0.0,0.0,0.0,11.600939890232516,0.0,0.0,0.0,0.9489866927332292,54.38176836896965,5.022633313741326,11.126902983393991,0.0,0.0,4.183212951459204,0.0,0.0,16.149536297135317,0.0,0.0,0.0,0.0,0.0,0.0,1.8413666842895764,5.332828588225414,0.4578366959319339,0.0,-0.029591836734693847,-0.04966761633428293,0.0,-0.3951665148490544,0.0,0.0,0.0,0.0,13,0,0,0,0,0,2,0,2,0,0,1,1,0,0,0,2,4.007000000000002,4.376000000000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Lindane,ClC1C(Cl)C(Cl)C(Cl)C(Cl)C1Cl,0,0.6412718621399177,-0.24689557613168725,0.6412718621399177,2.962746913580246,0.04980032851468069,24.23599999999999,23.732,23.988338856000013,72,0,0.06926690850591896,-0.11966378726349973,0.11966378726349973,0.06926690850591896,0.041666666666666664,0.04861111111111111,0.05555555555555555,3.71651637688805,21.642106257572138,1.25,0.9389822365046135,0.8169467095138409,0.625,0.46949111825230677,0.4084733547569204,0.15699111825230674,0.34597335475692054,0.09635270198329626,0.33370096309274605,0.048176350991648124,0.16685048154637303,0.145,2.1398378409810777,0.47692495347316544,0.37551741193434274,2.0438996745290456,9.150629234048353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.60563934139509,0.0,0.0,0.0,3.3619490317888165,0.6853792780851101,5.800469945116258,0.0,0.0,0.0,2.676569753703705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.60563934139509,2.676569753703705,0.0,0.0,0.6853792780851101,0.0,0.0,0.0,0.0,0.0,2.676569753703705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.485849223201366,3.847631172839506,2.8142978395061724,0.0,-1.4813734567901233,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12,0,0,1,0,1,0,0,0,0,0,6,0,1,0,1,1,3.644400000000001,4.820500000000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Barbital,O=C1NC(=O)NC(=O)C1(CC)CC,0,0.9543910256410256,-0.32311431623931625,0.9543910256410256,0.8040277777777791,0.04615610780489309,14.16884615384616,13.238384615384613,14.160368634153846,72,0,0.32763186661647103,-0.2768230397499671,0.32763186661647103,0.2768230397499671,0.10059171597633136,0.13609467455621302,0.16568047337278105,4.054649175325472,43.91002057373474,1.5682116419960097,1.3937824663378082,0.470705543260885,0.8305719191131608,0.6847097552073559,0.2312922789765931,0.16280662403092314,0.16280662403092314,0.10853646147560855,0.10853646147560855,0.054079509594283356,0.054079509594283356,-0.10692307692307691,2.4030374014314764,0.18035478167171876,0.2430525013870294,1.298668956980418,7.142158816070334,0.0,0.4165377284151369,0.21720647358895395,0.9087968814386932,0.0,6.031114512338072,1.5545154672861843,4.794537184071822,0.0,0.0,1.0541372488147198,0.9804499848199045,1.0544296585924768,0.0,2.3780677900441587,1.3727287670031603,0.0,0.8168943620443655,5.41499046939678,2.0345872336346242,0.0,0.0,0.0,0.0,0.8168943620443655,4.794537184071822,0.0,0.0,1.3727287670031603,0.7376211052418188,5.41499046939678,3.0890168922271024,0.0,2.8236841566564013,0.0,0.0,5.790000000000001,4.640748091097286,1.1064316578627282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.271636132181431,6.809408105122391,0.0,2.7930908773765917,-0.1236965811965814,-0.32311431623931625,-0.35779914529914525,-0.1489808637130066,-0.6423433048433049,-0.6027186173614747,0.0,0.625,13,2,5,0,1,1,0,0,0,3,2,5,4,0,1,1,1,0.15879999999999939,3.4381846153846167,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +Oxadiazon,CC(C)Oc1cc(c(Cl)cc1Cl)n2nc(oc2=O)C(C)(C)C,0,0.580566419223413,-0.17779120273040808,0.580566419223413,0.1016847757621564,0.03799385830236926,15.692090909090899,14.867363636363642,15.639520354363658,120,0,0.44152683903044454,-0.48936880999689736,0.48936880999689736,0.44152683903044454,0.06404958677685951,0.09710743801652892,0.12603305785123967,3.038198402382079,58.98144508287462,1.4462487621030127,1.289777318564089,0.5403163136566759,0.7948585450055545,0.6486093451099465,0.27387884265623985,0.1737185085866756,0.20807891522387803,0.09741606297794254,0.12194477086263,0.05994290481164264,0.08041878557935299,-0.06636363636363637,3.0508842977651933,0.22800981764378736,0.2713908627462731,3.4705748809425008,7.437555054256442,0.41609154049333613,0.2613414469674502,0.0,0.2677601782739049,0.0,5.756062822229453,0.0,4.794537184071822,4.681802935145185,5.098681808301038,1.9889798241978212,0.8975546791933934,1.4553994327096986,1.1784066635284938,1.5376212682689705,1.0546308991120468,0.0,0.4445674883384647,0.0,2.079748594673871,0.0,38.57142797113643,0.0,11.436898107967467,0.4769511716377046,0.0,5.749511833283905,23.20187978046503,0.7209319441089186,0.24613593042712634,0.0,2.9465381145258323,21.296525536451757,10.045266627482652,5.687386274683562,0.0,2.6027272727272726,4.1349208171753284,0.21793350836690098,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,9.515832745354384,2.3914725793331404,6.732045356742656,0.5445358980304245,0.580566419223413,0.06625975779621615,-0.22725006846557516,-0.21531110781854837,-0.10508120998820408,-0.17253523762424683,-0.8711591008254275,0.0,0.4666666666666667,22,0,5,0,0,0,1,1,2,5,0,7,5,0,0,0,2,4.217000000000003,3.935636363636365,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Monuron,CN(C)C(=O)Nc1ccc(Cl)cc1,0,0.9362474562474562,-0.2634288011065459,0.9362474562474562,0.30970679012345714,0.05683089744797765,15.281000000000006,14.42807692307692,15.235076203999999,70,0,0.3208166500333932,-0.33065304343602014,0.33065304343602014,0.3208166500333932,0.1242603550295858,0.1715976331360947,0.21301775147928995,3.523760346079837,48.30184717808791,1.4766271094389718,1.3215876888056157,0.5335822231147277,0.8168309348859236,0.6506426127681844,0.2607003725765898,0.14556744735304658,0.1746416375845256,0.07538681195219825,0.08992390706793778,0.037860961881531284,0.04512950943940104,-0.09384615384615383,2.3939041255880693,0.20292334860721567,0.31852176997921483,2.951371503336312,7.524111213654451,0.7853633141645273,0.0,0.10860323679447698,0.0,0.0,6.031114512338072,0.0,4.794537184071822,0.0,0.0,0.8923799915563474,1.8592057562040907,2.5297095943085157,0.42177186343699086,1.5318434480078633,1.79380312901955,0.0,0.37691613314234446,0.0,0.0,19.261467153852866,29.192308144394506,0.0,0.0,0.40844718102218275,10.481923458755384,0.0,11.600939890232516,1.9140521572117726,0.0,0.0,1.0544296585924768,24.16967483065318,6.434475392069527,0.0,0.0,2.487692307692308,4.597105574063931,0.3688105526209094,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,0.0,2.055412886943301,6.219071227493846,0.4293915249702286,0.8951703224024652,-0.06669412102447818,-0.07066239316239316,0.0,-0.39651297556059445,0.0,-0.5268576022130917,0.0,0.2222222222222222,13,1,3,0,0,0,1,0,1,1,1,4,3,0,0,0,1,2.4335000000000004,4.165976923076925,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +Glutethimide,CCC1(CCC(=O)NC1=O)c2ccccc2 ,0,0.8219857804232802,-0.2594272604875285,0.8219857804232802,0.7721971844293276,0.047956240136529986,13.579250000000007,12.634249999999998,13.56939242,84,0,0.2367039782146347,-0.29567988249602595,0.29567988249602595,0.2367039782146347,0.1015625,0.1484375,0.19140625,3.326681753531348,59.693563755289134,1.5435095264191647,1.4227318860267304,0.4852318860267303,0.8532183889980071,0.7220422175914862,0.25659136787273884,0.17794428298074724,0.17794428298074724,0.12145758967340176,0.12145758967340176,0.07242897088929334,0.07242897088929334,-0.10249999999999998,2.6348880129154844,0.17379762568111082,0.25514074455726904,1.621896084964598,7.249105455324691,0.0,0.0,0.08824012989551254,0.7383974661689382,0.0,0.0,0.9311804825895011,0.0,0.0,0.0,2.31649910347576,1.1443313308972347,1.1693594941788348,0.7667989531404924,1.8869710145534324,0.7383974661689382,0.0,0.3318633345805235,0.0,1.9616035806675374,0.0,35.77554503001347,0.0,0.0,0.3318633345805235,0.0,0.0,0.0,0.7383974661689382,0.9377540523462764,0.0,3.170296131210246,30.212093538316473,1.4118420783282006,0.0,0.0,2.885625,5.267835945792841,0.5993171480089777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.287653866544455,7.384605722014887,0.0,1.5824961649397409,-0.048262324026832976,-0.34716579861111113,-0.2688591302647602,-0.3852780074221045,-0.7601838639101478,-0.24589442938633804,0.0,0.38461538461538464,16,1,3,0,1,1,1,0,1,2,1,3,3,0,1,1,2,1.771,3.799668750000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Isazofos,CCOP(=S)(OCC)Oc1nc(Cl)n(n1)C(C)C,0,0.44716429936172,-0.28852769116906024,0.44716429936172,0.11074963781809011,0.040029625284661745,17.430388888888874,16.47838888888889,17.391204261888916,104,0,0.38243802813138045,-0.3879013890457807,0.3879013890457807,0.38243802813138045,0.08641975308641975,0.1234567901234568,0.15432098765432098,3.659032054336998,51.28886133635732,1.570421372972312,1.4055451120480285,0.5981480408228116,0.8337981745779699,0.6860936335716958,0.3768715821661405,0.13050098065362167,0.3039372160367527,0.07046518410495416,0.177806185997622,0.040226780703314285,0.10861390618276762,-0.011111111111111118,2.8760097231838726,0.2304663760073987,0.37883281304197014,4.172492283950618,7.817844882202702,0.2513192867617676,0.0,0.0,0.29353257333579214,0.0,12.729072071950014,0.5026385735235352,4.681802935145185,4.9839785209472085,5.098681808301038,0.0,2.167139353300846,1.904102846168385,1.1095424037046486,2.0485631633349555,1.6736890672907967,0.0,0.8202479591329683,0.0,1.8569700520851313,13.117970485832577,5.283586320044258,0.0,6.010464839586836,0.2513192867617676,0.0,6.010464839586836,18.319547122595694,1.5490240972347784,1.158575022892349,0.0,3.1515753551347867,0.0,5.283586320044258,0.0,0.0,3.2444444444444445,3.586449434186623,0.0,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,19.13015465267188,2.8463576997487094,7.772789649926555,0.5840719977977473,0.18462103874471597,0.1233927215433499,0.0,0.0,-0.2676208147868201,0.0,-1.4991064450773983,0.0,0.7777777777777778,18,0,6,0,0,0,0,1,1,7,0,9,11,0,0,0,1,3.1887000000000016,4.08788888888889,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Carvone,CC(=C)C1CC=C(C)C(=O)C1,0,1.1212085996014565,-0.3407407407407407,1.1212085996014565,1.4798351284958422,0.04770120341534632,13.656454545454556,12.373545454545452,13.645860460727272,60,0,0.15836923542949272,-0.2945568590881993,0.2945568590881993,0.15836923542949272,0.2066115702479339,0.2892561983471074,0.34710743801652894,4.077253376937906,59.82549093753021,1.8533410314498298,1.7643862082239876,0.49165893549671486,0.9775251590665971,0.8821931041119938,0.24582946774835743,0.16628401320290287,0.16628401320290287,0.09346300990217715,0.09346300990217715,0.046731504951088576,0.046731504951088576,-0.07727272727272728,2.320326004370184,0.13245893992585867,0.27595022128790814,1.7934452549147415,7.951800176535852,0.0,0.0,0.5257495405786309,0.0,0.0,0.0,0.43586701673380196,0.0,0.0,0.0,1.6505650216460637,2.867615577395735,1.9501153653819814,0.37384324259187823,2.1804688154959,0.5257495405786309,0.0,0.0,5.893957685363079,2.404512185204556,0.0,23.72931976817597,0.0,0.0,0.0,0.0,0.0,0.0,0.5257495405786309,0.43586701673380196,5.893957685363079,4.149113983966656,23.72931976817597,0.0,0.0,0.0,1.5518181818181818,5.623286948832191,0.43586701673380196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7446017987620979,9.581573816395245,0.0,1.1212085996014565,0.0,-0.2824520287913145,-0.5127840909090909,-0.14220328282828285,-0.6685521885521886,-0.7710332491582492,0.0,0.5,11,0,1,1,0,1,0,0,0,1,0,1,3,0,0,0,1,2.4879000000000007,4.2092727272727295,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Glyceryl triacetate,CC(=O)OCC(COC(=O)C)OC(=O)C,0,0.7731783667170571,-0.2939614197530866,0.7731783667170571,2.3592541021038036,0.031913210703586485,14.547000000000006,13.606199999999998,14.538602544533335,86,0,0.3026525572077403,-0.46178258082648094,0.46178258082648094,0.3026525572077403,0.07555555555555556,0.10666666666666667,0.13333333333333333,6.363403135891395,41.19730110229235,1.5902247434085681,1.3966326495188786,0.46329931618554526,0.8255654169683151,0.6724744871391589,0.20580782047249227,0.11345379626717032,0.11345379626717032,0.04450751067367862,0.04450751067367862,0.022706207261596573,0.022706207261596573,-0.10600000000000001,2.419951576675206,0.19739869597775217,0.4535723102738151,8.73232070910556,7.143571795600244,0.9473725907600098,0.8745313657221718,0.4053345351299992,0.0,0.0,17.90791586385555,0.9589074368143644,0.0,0.0,0.0,0.0,0.0,2.1928335571612676,0.45691951872340675,3.185654679999915,1.19386105759037,0.0,0.0,0.0,1.7757129585891351,13.117970485832577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.473726958442541,1.906280027574374,0.0,2.6497530758846755,0.0,0.0,0.0,0.0,5.260000000000001,3.844105381901676,0.9589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.210588861400147,1.2793746524255385,7.379673994289074,0.0,2.2982623246829594,0.0,0.0,-0.4769057749643066,0.0,-0.2939614197530866,-1.3070691242546408,0.0,0.6666666666666666,15,0,6,0,0,0,0,0,0,6,0,6,8,0,0,0,0,0.044299999999999784,3.2546666666666684,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +N-Ethylaniline,CCNc1ccccc1,0,0.8406378600823046,-0.35828405822205434,0.8406378600823046,0.19425925925925913,0.07017353707984432,13.464777777777769,12.232777777777775,13.454349928,48,0,0.16003748364723341,-0.3853248321134123,0.3853248321134123,0.16003748364723341,0.19753086419753085,0.2839506172839506,0.3580246913580247,3.568311289047386,56.133362946658046,1.7823835427030421,1.716357066166662,0.4941348439444398,0.9817900092295447,0.8493807989999907,0.24413484394443977,0.13302373283332866,0.13302373283332866,0.07272316635416375,0.07272316635416375,0.03946723314583159,0.03946723314583159,-0.1088888888888889,2.322408978030132,0.12139059996616543,0.3474357549864553,1.7620129800279678,7.9137646295536115,0.5899792614764862,0.0,0.15687134203646674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0141395692210984,2.104081059180252,2.1153376377611783,0.761532531205678,1.6799364044478222,0.6319318082981735,0.0,0.0,0.0,0.7613213463661865,11.80667303760432,30.212093538316473,0.0,0.0,0.5899792614764862,5.687386274683562,0.0,0.0,0.7218732982573273,0.0,0.0,2.2843864087775416,30.212093538316473,1.4118420783282006,0.0,0.0,1.3366666666666667,5.47202573495685,0.0,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,0.0,1.6799364044478222,8.983031948118754,0.0,0.0,-0.02158436213991768,-0.09134516460905344,0.0,-0.43322751322751313,0.0,-0.7146526859200473,0.0,0.25,9,1,1,0,0,0,1,0,1,1,1,1,3,0,0,0,1,2.1184,4.511744444444446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2,2-Dimethylpentane",CCCC(C)(C)C,0,1.1011904761904763,-0.6101190476190477,1.1011904761904763,3.8020833333333357,0.06786010680460638,14.314999999999987,12.010999999999997,14.303600073142857,44,0,0.02718059103532162,-0.0653625715831776,0.0653625715831776,0.02718059103532162,0.22448979591836735,0.32653061224489793,0.38775510204081637,7.117623435314137,55.60955771624406,2.7857142857142856,2.7857142857142856,0.5,1.3571428571428572,1.3571428571428572,0.21428571428571427,0.14285714285714285,0.14285714285714285,0.03571428571428571,0.03571428571428571,0.013392857142857142,0.013392857142857142,0.0,2.0577600293808547,0.0743801652892562,0.33482142857142855,6.0,9.915490245270604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.825784767216014,1.683987910103737,3.1331624141033596,0.0,3.1331624141033596,0.0,0.0,0.0,5.41499046939678,5.736202610263068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.41499046939678,8.869365024366434,0.0,0.0,0.0,0.0,0.0,6.50977267731975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1331624141033596,16.754761904761907,0.0,0.0,0.0,-0.6074404761904763,0.0,0.0,-1.1898809523809528,-2.2788690476190476,0.0,1.0,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2.832600000000001,4.908999999999998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Hypoxanthine,O=c1[nH]cnc2nc[nH]c12 ,0,1.1334537037037038,-0.0874074074074074,1.1334537037037038,0.14953703703703658,0.05192368565638923,13.611400000000003,13.2082,13.6038510748,50,0,0.2762579987223569,-0.33867482420436507,0.33867482420436507,0.2762579987223569,0.15,0.22000000000000003,0.3,3.0701790797847317,57.309581843817035,1.0455665446700477,0.8697102672463695,0.46971026724636944,0.6519744507803583,0.4387405718231679,0.2492978527231763,0.1624579755408399,0.1624579755408399,0.1039531724725469,0.1039531724725469,0.061745164291757706,0.061745164291757706,-0.16500000000000004,2.391108061230241,0.25310377477591206,0.166292345242604,0.5397705083562873,6.08786893802777,0.9954006540458504,0.274151711234044,1.3987562095040391,0.0,5.559266895052008,0.0,0.4794537184071822,9.967957041894417,0.0,0.0,0.0,0.0,0.0,1.2606743427932454,0.5565201268996842,1.116387793838399,0.0,1.9921963582352924,0.0,0.0,0.0,22.960547507056283,0.0,0.0,0.5559266895052007,0.0,0.0,0.0,1.9921963582352924,0.0,0.0,0.274151711234044,17.40128061200428,2.8236841566564013,11.16387793838399,0.0,7.4430000000000005,1.8166010322984463,0.4794537184071822,0.0,16.140881208613244,4.977003270229252,0.0,0.0,0.0,0.0,9.967957041894417,0.5565201268996842,2.8599629629629626,0.0,1.9038055555555555,0.0,-0.1286574074074073,0.0,0.0,-0.1017777777777777,0.0,0.0,0.0,10,2,5,0,0,0,0,2,2,3,2,5,0,0,0,0,2,-0.35380000000000006,3.45094,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +hexacosane,CCCCCCCCCCCCCCCCCCCCCCCCCC,0,0.32304367150656677,-0.21477193223343724,0.32304367150656677,4.256952300254151,0.0060641930454600045,14.104538461538425,12.011000000000003,14.093175066461596,158,0,0.02665298639455785,-0.06538238322279266,0.06538238322279266,0.02665298639455785,0.01183431952662722,0.01775147928994083,0.02366863905325444,8.259978913728348,79.80018584918695,2.576923076923077,2.576923076923077,0.5,1.2788461538461537,1.2788461538461537,0.2403846153846154,0.11538461538461539,0.11538461538461539,0.055288461538461536,0.055288461538461536,0.026442307692307692,0.026442307692307692,0.0,3.203489611624521,0.10014420765902901,0.9615384615384616,24.0,9.374277342184865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.409768533326789,0.0,2.846960078199689,0.0,2.846960078199689,0.0,0.0,0.0,0.0,6.409768533326789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.256728611526468,0.0,0.0,0.0,0.0,0.0,6.409768533326789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.846960078199689,16.847835382275466,0.0,0.0,0.0,0.0,0.0,0.0,-4.885762128409768,-0.3274578692503195,0.0,1.0,26,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,10.388599999999993,4.698307692307697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Amobarbital,CCC1(CCC(C)C)C(=O)NC(=O)NC1=O,0,0.8108912627551019,-0.3058087384259261,0.8108912627551019,1.0117233560090702,0.04417397931403574,14.142250000000008,13.008249999999997,14.13323390225,90,0,0.3276318689614549,-0.2768228775012217,0.3276318689614549,0.2768228775012217,0.08984375,0.12890625,0.16015625,4.384537819159772,52.94039540400552,1.7429219591217582,1.6011982538994691,0.4761982538994691,0.9092146842794431,0.7907016761059767,0.23479997666848196,0.16353038202512504,0.16353038202512504,0.09990462494893196,0.09990462494893196,0.05370522654535524,0.05370522654535524,-0.086875,2.6057609451589,0.15905410641133386,0.28964016214085847,2.229701431998784,7.52329462206944,0.0,0.3384369043372987,0.17648025979102508,0.7383974661689382,0.0,6.031114512338072,1.2630438171700247,4.794537184071822,0.0,0.0,1.2847297719929398,1.5632957743344509,1.3707585561702198,0.0,2.4462145379747118,1.1153421231900678,0.0,0.663726669161047,11.308948154759857,2.4796531909921984,0.0,0.0,0.0,0.0,0.663726669161047,4.794537184071822,0.0,0.0,1.1153421231900678,0.5993171480089777,11.308948154759857,3.8504117471624215,0.0,2.8236841566564013,0.0,0.0,4.704375000000001,4.965531243015804,0.8989757220134666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5472388159612447,8.628323707955404,0.0,2.3618622227536843,-0.12646541950113377,-0.2963194444444445,-0.6174978520053858,-0.1341372935169438,-0.8927880822467882,-0.7979778389943943,0.0,0.7272727272727273,16,2,5,0,1,1,0,0,0,3,2,5,7,0,1,1,1,1.1849999999999998,3.654837500000002,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +Bibenzyl ,C(Cc1ccccc1)c2ccccc2,0,0.5877625256451787,-0.23749358870532347,0.5877625256451787,0.7935923430692549,0.048675728724989445,13.019000000000007,12.010999999999997,13.007825032,70,0,0.06256052920239656,-0.06224873598769184,0.06256052920239656,0.06224873598769184,0.05102040816326531,0.07653061224489796,0.10204081632653061,2.923629996653056,59.962102398004525,1.566300230733965,1.5,0.5,0.900060925791849,0.7678571428571429,0.26785714285714285,0.16071428571428573,0.16071428571428573,0.09375,0.09375,0.05357142857142857,0.05357142857142857,-0.1114285714285714,2.6078450845752674,0.15444582735813436,0.3295303045295054,2.4617954580094508,7.491997754050253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.316013362616639,1.7051966275751964,0.39164530176292006,0.9791132544072999,1.3707585561702198,0.0,0.0,0.0,0.0,0.9104178430470542,0.0,71.55109006002695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9104178430470542,0.0,2.165537340698362,60.42418707663295,0.0,0.0,0.0,0.0,6.021209990191837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3707585561702198,7.869671400123883,0.0,0.0,0.0,-0.14347735125796346,0.0,-0.6440640143124167,-0.47498717741064683,0.0,0.0,0.14285714285714285,14,0,0,0,0,0,2,0,2,0,0,0,3,0,0,0,2,3.4718000000000018,4.306571428571432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Ethyl acetate,CCOC(=O)C,0,1.7753587962962962,-0.5488618827160495,1.7753587962962962,1.876273148148148,0.07297514629644374,14.684333333333326,13.340333333333332,14.675404916,36,0,0.30211277772699074,-0.4661718899744166,0.4661718899744166,0.30211277772699074,0.3888888888888889,0.5277777777777778,0.611111111111111,4.623366599396542,37.41270473148147,1.9640761750626954,1.802749430154621,0.4694160968212877,0.979637847473596,0.8520620726159658,0.18539540594929912,0.08193027063286608,0.08193027063286608,0.02395478988043874,0.02395478988043874,0.007724808581220797,0.007724808581220797,-0.08833333333333333,1.8028080996246356,0.11714350527874752,0.448952274422073,3.4699999999999998,8.058151450318757,0.7894771589666748,0.0,0.0,0.0,0.0,5.969305287951849,0.799089530678637,0.0,0.0,0.0,0.0,1.1419820195492798,2.5127405757194996,1.5500837258761215,3.4162447645389378,0.9948842146586415,0.0,0.0,0.0,2.2839640390985596,6.558985242916289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.088048421811356,1.5885666896453117,0.0,4.111642113992186,0.0,0.0,0.0,0.0,4.383333333333334,4.372012460909916,0.799089530678637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.8276780748936268,9.469398148148148,0.0,1.7753587962962962,0.0,0.0,-0.3127121913580247,0.0,0.0,-1.6126003086419756,0.0,0.75,6,0,2,0,0,0,0,0,0,2,0,2,3,0,0,0,0,0.5694,3.7178333333333318,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Cyclopropyl-5-spirobarbituric acid,O=C2NC(=O)C1(CC1)C(=O)N2 ,0,1.0557954545454544,-0.2581649831649832,1.0557954545454544,0.3640277777777783,0.040480427139252935,14.011363636363638,13.461545454545451,14.003440186545454,58,0,0.327631871364974,-0.2768227066031354,0.327631871364974,0.2768227066031354,0.11570247933884298,0.15702479338842976,0.19008264462809918,2.611748129752489,38.424281300350394,1.2169773950861935,1.0108338238537733,0.4653792783992278,0.6861304498610079,0.5137478925177843,0.2506181478814283,0.19240782840018184,0.19240782840018184,0.1282703635620828,0.1282703635620828,0.06675305679324396,0.06675305679324396,-0.12636363636363637,2.5906549394504625,0.23474575122929317,0.14617094944347248,0.6748606350441604,6.425684202325914,0.0,0.4922718608542527,0.2566985596960365,1.07403267806391,0.0,6.031114512338072,1.8371546431563994,4.794537184071822,0.0,0.0,0.0,1.1587136184235236,0.498457656789171,0.0,2.062757266686613,1.6223158155491895,0.0,0.9654206096887955,5.41499046939678,1.1587136184235236,0.0,0.0,0.0,0.0,0.9654206096887955,4.794537184071822,0.0,0.0,1.6223158155491895,0.8717340334676039,5.41499046939678,1.6571712752126944,0.0,2.8236841566564013,0.0,0.0,6.842727272727273,3.273301294826966,1.307601050201406,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,0.0,0.7551562164852075,3.9416265546622693,0.0,3.1183018965161824,-0.06618686868686878,-0.2540214646464646,-0.28686868686868694,-0.14106691919191916,-0.5163299663299663,0.0,0.0,0.5,11,2,5,1,1,2,0,0,0,3,2,5,0,1,1,2,2,-0.8674000000000002,3.0316727272727273,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +Dimethyl sulfide,CSC,0,2.1745756172839505,-0.8038194444444443,2.1745756172839505,0.013888888888888618,0.13427227026184302,20.712333333333337,18.69633333333333,20.673007064,20,0,0.034369685216840785,-0.1688616875245137,0.1688616875245137,0.034369685216840785,0.6666666666666666,0.8888888888888888,0.8888888888888888,3.746417931251032,25.403810890556134,2.569035593728849,2.4694160968212877,0.7415816237971963,1.235702260395516,1.1360827634879545,0.40824829046386296,0.03402069087198859,0.10206207261596574,0.0,0.0,0.0,0.0,0.11666666666666665,1.1431558784658322,0.08844765558702955,0.7833333333333333,2.3500000000000014,11.219042056199426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.761884949391115,0.0,0.0,4.122616067410973,2.7415171123404405,0.0,2.7415171123404405,3.9206283164637052,0.0,0.0,0.0,0.0,12.367848202232917,0.0,0.0,0.0,0.0,0.0,0.0,11.761884949391115,4.122616067410973,0.0,0.0,2.7415171123404405,0.0,0.0,0.0,0.0,0.0,4.122616067410973,0.0,0.0,11.761884949391115,0.0,0.0,0.0,0.0,0.0,0.0,2.7415171123404405,13.047453703703704,0.004629629629629539,0.0,0.0,0.0,0.0,0.0,-1.6076388888888886,0.0,0.0,1.0,3,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0.9792,6.479666666666666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +Equilin,CC34CCC1C(=CCc2cc(O)ccc12)C3CCC4=O,0,0.6815221082362136,-0.21827614205404405,0.6815221082362136,1.0629738021751909,0.036388696820080696,13.417799999999989,12.409799999999997,13.407316494000018,104,0,0.2930923269321341,-0.5079558292226948,0.5079558292226948,0.2930923269321341,0.08,0.1275,0.16999999999999998,2.454144924898481,70.34826693216267,1.5701629601946592,1.4908248290463864,0.4908248290463863,0.8803082846547785,0.7783248290463863,0.28291241452319316,0.22041241452319316,0.22041241452319316,0.16218431089239488,0.16218431089239488,0.11205543135389698,0.11205543135389698,-0.0785,2.871717410714051,0.16310236078653034,0.19845793719197222,1.4788916842205588,7.362272405660377,0.2554404095553606,0.5766378389824423,0.0,0.0,1.4311996572326342,0.0,0.2397268592035911,0.0,0.0,0.0,1.2259743550531903,2.7298698844700584,1.9121625699321274,0.274151711234044,1.797387897120661,0.28916224731824697,1.4311996572326342,0.0,11.308948154759857,2.2305237154652824,0.0,40.879335382488705,0.0,5.749511833283905,0.0,0.0,5.749511833283905,0.0,0.6161626397352393,0.55837310427006,11.308948154759857,3.770443247930222,29.75243239909472,0.0,0.0,0.0,1.8649999999999998,5.416575731310155,0.3768027148206131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.2367047556063187,8.456709842961455,0.0,0.6815221082362136,0.20769019596474952,-0.4328456809807255,-0.5759202798151323,-0.27514943940539177,-1.0131655965295265,-0.21134115043164262,0.0,0.5,20,1,2,3,0,3,1,0,1,2,1,2,2,2,0,2,4,3.7375000000000025,3.8853400000000016,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Malonic acid diethylester,CCOC(=O)CC(=O)OCC,0,1.0411761750154607,-0.34873737373737385,1.0411761750154607,2.31484552154195,0.040332705443127226,14.56081818181819,13.461181818181815,14.55214171490909,64,0,0.3166348316492712,-0.46554520948592226,0.46554520948592226,0.3166348316492712,0.11570247933884298,0.15702479338842976,0.19008264462809918,5.272196795170048,39.343756632516595,1.7335376455229403,1.5575448328959502,0.4666357419868593,0.8868776517893774,0.7477040792174172,0.20224953376287177,0.10074211341767207,0.10074211341767207,0.04468923852701786,0.04468923852701786,0.020642006601451438,0.020642006601451438,-0.09636363636363637,2.2354907052110793,0.16470826109055675,0.5185767835474526,5.387427293064876,7.485334943211289,0.8612478097818271,0.5793568092117618,0.0,0.0,0.0,11.938610575903699,0.8717340334676039,0.0,0.0,0.0,0.0,1.2457985667810325,0.7476864851837565,1.9402292566230814,3.228354813616944,1.0853282341730635,0.0,0.0,0.0,1.8251553759927943,13.117970485832577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.277871005612389,1.7329818432494308,0.0,3.320528346360308,0.0,0.0,0.0,0.0,4.781818181818182,4.103026381605183,0.8717340334676039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,1.4953729703675125,8.218164854325568,0.0,2.082352350030921,0.0,0.0,-0.4208810039167182,0.0,-0.34873737373737385,-1.2960503418539135,0.0,0.7142857142857143,11,0,4,0,0,0,0,0,0,4,0,4,6,0,0,0,0,0.5027,3.443909090909091,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Deltamethrin,CC1(C)C(C=C(Br)Br)C1C(=O)OC(C#N)c2cccc(Oc3ccccc3)c2,0,0.48889774069687775,-0.13813854450089935,0.48889774069687775,0.529231019134518,0.015055941899229697,18.04307142857143,17.359071428571443,17.963327416714304,144,0,0.31128477437783336,-0.45737081541460906,0.45737081541460906,0.31128477437783336,0.048469387755102046,0.0739795918367347,0.09693877551020409,2.320372094238232,62.13856778474765,1.3136276564787155,1.1581388361753573,0.5928528746835503,0.7533525239409856,0.5936497141756737,0.31100673342977025,0.17772029522504162,0.2723681926071919,0.11313323743039075,0.12729392081534346,0.06940579715569946,0.08356648054065212,-0.07499999999999998,3.463125823652308,0.2607322434431559,0.30366203744426606,4.653011757455608,7.41618611567182,0.33834735384286063,0.6274373206914315,0.0,0.21714350096249957,0.0,5.969305287951849,0.17123347085970791,0.0,5.261891554738487,0.0,1.78456962567655,2.404946813618276,0.5903399978949555,0.8701407993419856,1.4397384163895042,1.3510426101375195,5.261891554738487,0.0,17.202905840122938,0.7065643664836195,0.0,69.38893218504232,0.0,17.568244979360085,0.16917367692143032,0.0,11.49902366656781,31.859887795898697,0.2131894745697089,0.34040714778113823,28.534018707653697,1.8354166543025916,63.82548069334532,0.0,0.0,0.0,2.1185714285714288,4.422998901472368,0.35915816924322524,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,31.859887795898697,1.2685049455297956,5.863472396888879,0.19564613205463813,0.48889774069687775,0.35642657820567336,-0.18057403860835305,-0.4170857425293559,-0.34389046829732844,-0.13304408083780245,-0.2762770890017987,0.0,0.2727272727272727,28,0,4,1,0,1,2,0,2,4,0,6,8,1,0,1,3,6.490180000000005,4.0750714285714285,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +TEFLUBENZURON,Fc1cccc(F)c1C(=O)NC(=O)Nc2cc(Cl)c(F)c(Cl)c2F ,0,0.5900193860300131,-0.08794389154838893,0.5900193860300131,0.5995564058956919,0.019041325708741685,15.879666666666665,15.62766666666667,15.83226023633334,126,0,0.32574412022662935,-0.30478900142902493,0.32574412022662935,0.30478900142902493,0.04513888888888889,0.06944444444444445,0.09375,2.5333125850896088,43.71115823676922,0.968233512793084,0.7074462754159585,0.5204403542508298,0.5728987681383929,0.3575415038121407,0.2684374102712465,0.16328474019879907,0.19478177961623475,0.10067262523750631,0.12534971637479558,0.058371432114239015,0.07571954898234769,-0.09666666666666662,2.718190400407497,0.4696678266473963,0.2942017930388567,3.5992629714607736,6.268990018858734,0.22124222305368232,0.9258552703137547,0.6024219099478413,0.0,5.907179729351506,6.031114512338072,0.42101460572334154,22.3561973747711,0.0,0.0,1.218512437005347,0.7553023384579118,0.0,0.6747105755460736,1.4773938725075084,1.7011483457015906,0.0,0.22124222305368232,0.0,0.0,5.309813353288376,63.0472763140164,0.0,0.0,0.44248444610736465,28.04358364945466,0.0,23.20187978046503,0.49742892673706574,0.0,23.26888336418358,0.6600426208520707,24.16967483065318,12.868950784139054,0.0,0.0,2.4250000000000003,3.8038576473735954,1.131280606618455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3128582567417628,4.170667985385741,0.4470858245569567,1.0151704033808309,-0.1595893014287901,-0.12882905378372198,-0.39230288370204597,-0.3040548262608233,0.0,0.0,0.0,0.0,24,2,4,0,0,0,2,0,2,2,2,10,2,0,0,0,2,4.511700000000001,3.300870833333334,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +Propoxur,CNC(=O)Oc1ccccc1OC(C)C,0,0.7939590419501135,-0.2506573837868481,0.7939590419501135,0.6532452286470152,0.05530945568018715,13.949666666666674,12.941666666666665,13.940346222666667,82,0,0.41197148550607754,-0.4870953014626587,0.4870953014626587,0.41197148550607754,0.10666666666666667,0.15555555555555556,0.2,3.7222904982326863,54.221866274103455,1.6022010477260067,1.4781305644594365,0.4781305644594365,0.8776272230033845,0.7276698611439716,0.23118895477730772,0.13794716659807363,0.13794716659807363,0.07370495571929693,0.07370495571929693,0.0430323247246251,0.0430323247246251,-0.11399999999999998,2.565653552119955,0.16721359834097219,0.3493482090241398,3.4971815387145706,7.355146837926737,0.9855692840592316,0.0,0.8607243829930674,0.0,0.0,6.093240070938415,0.0,4.794537184071822,0.0,0.0,0.8056558276884392,1.7192414433278633,1.287510260387615,0.8622540538534058,2.3247149970922134,0.40621600472922764,0.0,0.35398755688589173,0.0,1.318920150769423,6.975826900282246,24.16967483065318,0.0,11.49902366656781,0.9855692840592316,4.794537184071822,11.49902366656781,0.0,1.27660566654471,0.0,0.0,2.1929602680649625,24.16967483065318,1.4118420783282006,0.0,0.0,3.170666666666667,4.922092072218091,0.31963581227145477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.6892883212340883,7.9928612554589735,0.0,0.7939590419501135,-0.04354968190980101,0.0,-0.17542180020156206,-0.2964962548290922,-0.38193957073570173,-0.7116352119551524,0.0,0.36363636363636365,15,1,4,0,0,0,1,0,1,3,1,4,6,0,0,0,1,2.192,3.819313333333336,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Reverse Transcriptase inhibitor 1,CCN2c1ncccc1N(C)C(=O)c3cccnc23 ,0,0.7028185791860602,-0.18533943986951518,0.7028185791860602,0.04924981103552506,0.04119197731769066,13.383842105263163,12.641105263157892,13.374566371999999,96,0,0.2613880398817792,-0.30889687167067015,0.30889687167067015,0.2613880398817792,0.06925207756232687,0.11080332409972299,0.15235457063711913,2.6625240647728368,61.81281090551156,1.3378824769388544,1.2209001406559838,0.48405803539282605,0.780796244668726,0.6284311643543012,0.2600101117227222,0.17925317606754237,0.17925317606754237,0.12711552896557113,0.12711552896557113,0.08433370957086483,0.08433370957086483,-0.12789473684210526,2.752005464884291,0.19930152208999632,0.22886563302678772,1.6591599615269081,6.8806582649637384,0.5157799716684713,0.3062033040965804,0.3062033040965804,0.0,5.907179729351506,0.0,0.2523440623195696,9.967957041894417,0.0,0.0,0.0,1.6327140498920452,1.93602870818892,1.0250204791264146,1.262376682655521,1.2226469241950064,0.0,0.524629317994443,0.0,0.3606259009102989,23.272506046299146,42.07891674397969,0.0,0.0,0.5157799716684713,17.323111830353618,0.0,0.0,1.5446222818865323,0.0,0.0,1.9158158199709252,36.5154652522827,0.0,0.0,0.0,2.5963157894736844,4.507041421346247,0.2523440623195696,0.0,9.799819461700956,0.0,0.0,0.0,0.0,0.0,9.967957041894417,1.0100326203359515,5.806970350396494,0.0,1.0864279498349045,0.0,-0.10671065063452281,-0.18825250129291482,-0.20704686926752497,-0.1002987683052428,-0.5498614405557546,0.0,0.21428571428571427,19,0,5,0,1,1,0,2,2,4,0,5,3,0,0,0,3,2.2245999999999997,3.8888157894736857,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +dimethirimol,CCCCc1c(C)nc(nc1O)N(C)C ,0,0.5444388857394811,-0.2696330624842532,0.5444388857394811,0.3953778108465609,0.0548301940294328,13.952866666666678,12.676066666666665,13.9435208152,84,0,0.29484500258609153,-0.4929458223521831,0.4929458223521831,0.29484500258609153,0.10222222222222223,0.16444444444444445,0.20888888888888887,4.158266399173715,58.730661276307465,1.8338714459671848,1.749992605130916,0.4833259384642492,0.9768699181256744,0.8618413346630432,0.23462478196545236,0.15085175710222734,0.15085175710222734,0.08760116767581289,0.08760116767581289,0.049022239107665545,0.049022239107665545,-0.08800000000000001,2.5551878454562975,0.13729959295209362,0.330491227587514,2.811743232272333,7.850698071058749,0.667247861463846,0.0,0.0,0.7885551744947911,1.4311996572326342,0.0,0.0,4.9839785209472085,4.9839785209472085,0.0,0.8816544679083372,1.3065161279969624,3.32551248654493,0.0,1.9854974801447445,0.39655595206576627,1.4311996572326342,0.6645304694596278,0.0,2.1881705959052997,18.85156353141497,11.257379486545457,0.0,5.879988336435371,0.3266606487233652,5.948339280986494,5.879988336435371,0.0,2.030641246053251,0.4248616600886253,6.851892117295679,3.701918361170927,0.0,0.0,0.0,0.0,3.2833333333333337,4.983988638264119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.07676523300163,1.7403235778864394,9.585137274904097,0.0,0.41344804264298307,0.27081725560594605,-0.20315583270345172,-0.18906421905181825,0.0,-0.7942867457168056,-0.9551179979031713,0.0,0.6363636363636364,15,1,4,0,0,0,0,1,1,4,1,4,9,0,0,0,1,1.89922,4.091520000000003,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2,4-Dinitrotoluene",Cc1ccc(cc1N(=O)=O)N(=O)=O,0,0.830461654747369,-0.24036819001104717,0.830461654747369,1.132662037037037,0.03961872441251532,14.01038461538462,13.545153846153845,14.002519744,68,0,0.278670384106092,-0.25830597628015206,0.278670384106092,0.25830597628015206,0.10650887573964497,0.15976331360946747,0.1952662721893491,3.969497306585688,44.936616171882825,1.1629847810397698,0.9251861809888745,0.46364771945041294,0.6535995142760662,0.45596233375693695,0.22519310298770617,0.15087947428231194,0.15087947428231194,0.08805052837366037,0.08805052837366037,0.04730931778221607,0.04730931778221607,-0.15230769230769228,2.196911456325328,0.2938018822441241,0.2443500435748889,1.7815394056397549,6.271701513838464,0.0,0.0,0.0,0.0,11.374772549367124,0.0,1.5560489644254727,0.0,0.0,0.0,0.0,0.9918700634583827,1.2090881436823806,1.538562805677638,1.3900902642043584,0.8749825037974711,0.0,0.0,0.0,0.5270686244073599,0.0,43.919344152218024,0.0,0.0,0.0,11.374772549367124,0.0,0.0,0.7574324690488724,0.0,27.080528654826825,1.0606156022091011,18.127256122989884,0.0,0.0,0.0,6.636923076923077,3.9818457214603873,1.5560489644254727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6326577951554863,3.3294465157858015,0.0,1.4579290583754867,1.6496628437699867,-0.2877136752136752,0.0,-0.27434116809116804,0.0,-0.24036819001104717,0.0,0.14285714285714285,13,0,6,0,0,0,1,0,1,4,0,6,3,0,0,0,1,1.8114200000000005,3.4221384615384625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Fludrocortisone,CC34CC(O)C1(F)C(CCC2=CC(=O)CCC12C)C3CCC4(O)C(=O)CO ,0,0.7388617908583184,-0.23648556258923334,0.7388617908583184,2.459861934577167,0.025181294967366055,14.090962962962946,13.008296296296301,14.081477861037065,150,0,0.21153165747264105,-0.38972547908371763,0.38972547908371763,0.21153165747264105,0.05486968449931413,0.0877914951989026,0.11385459533607681,2.733199931824074,66.86898408944751,1.6641007933451166,1.5525631824195756,0.47848910834550157,0.8990397652795953,0.7938647345946614,0.26702233195052855,0.224225706700614,0.224225706700614,0.17384392583646496,0.17384392583646496,0.1193340248706922,0.1193340248706922,-0.04111111111111111,3.1254114861291113,0.1772600960763955,0.2113812316526289,2.095427165272189,7.377800066974465,0.5676453545674681,0.6603257730609502,0.42838851454555105,0.15902218413695937,0.0,0.0,0.35515090252383863,4.39041504767482,0.0,0.0,0.7139588431355788,1.858651068124997,1.972353768934478,0.42826119450484695,2.4053939425765147,0.42838851454555105,4.293598971697903,0.0,22.617896309519715,2.8023736000213466,6.558985242916289,11.625176276104835,0.0,0.0,0.0,4.39041504767482,0.0,0.0,2.0405676791609277,0.35515090252383863,22.617896309519715,3.4797770742341725,11.625176276104835,0.0,0.0,0.0,3.5122222222222224,4.741949441549893,0.6089950795923978,0.162607964728697,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,1.225167727824908,10.016495302325367,0.0,1.018661115338441,0.4334258280312021,-0.9615079952118912,-0.6578749536963252,-0.09110599757693211,-1.5874864140130738,-0.5625821938387661,0.0,0.8095238095238095,27,3,5,4,0,4,0,0,0,5,3,6,7,3,0,3,4,1.8737,3.5367185185185197,0,3,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17a-Methyltestosterone,CC1(O)CCC2C3CCC4=CC(=O)CCC4(C)C3CCC21C,0,0.6017739140919607,-0.2523278490689207,0.6017739140919607,2.265794608738557,0.03296956959675389,13.748090909090882,12.373545454545452,13.737480918181857,122,0,0.21086947757898503,-0.3896027937584239,0.3896027937584239,0.21086947757898503,0.05785123966942149,0.09917355371900825,0.13429752066115702,2.707794521843368,74.81372743229085,1.9063253449434285,1.8552952991330784,0.49165893549671486,1.0112751263913717,0.9575680264058057,0.2799203768392665,0.2334231983218104,0.2334231983218104,0.1730084644476317,0.1730084644476317,0.11607311941263361,0.11607311941263361,-0.02863636363636364,3.0118701110505164,0.13634688905003575,0.2029815421937095,1.7355442328204815,8.006898394112056,0.23221855414123693,0.0,0.26287477028931544,0.06505452987421065,0.0,0.0,0.21793350836690098,0.0,0.0,0.0,0.876222216575483,3.910286007614532,2.03428020336798,0.3169004257797231,2.257061068368884,0.26287477028931544,1.4311996572326342,0.0,28.511853994882795,3.5063693806138976,0.0,11.625176276104835,0.0,0.0,0.0,0.0,0.0,0.0,0.8147410729858398,0.21793350836690098,28.511853994882795,5.05868516779356,11.625176276104835,0.0,0.0,0.0,1.6954545454545453,5.593654617766289,0.6540839580574255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.4358130860444305,11.98135779611182,0.0,0.6017739140919607,0.1902527262215049,-0.8216499336477018,-0.8613049178842567,-0.10299066403357077,-1.8299338797317481,-0.6688686774916465,0.0,0.85,22,1,2,4,0,4,0,0,0,2,1,2,4,3,0,3,4,4.269300000000004,3.9697181818181844,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +trans-2-Pentene ,CC/C=C/C,0,1.417824074074074,-0.6330092592592594,1.417824074074074,1.2883101851851848,0.08272793608800619,14.026999999999996,12.011,14.015650063999999,30,0,0.057225458550391815,-0.0916744470464646,0.0916744470464646,0.057225458550391815,0.48,0.6799999999999999,0.8,5.437342168877584,52.90355704391254,2.5309401076758506,2.5,0.5,1.263076828180442,1.2,0.2,0.075,0.075,0.025,0.025,0.00625,0.00625,-0.052000000000000005,1.9725948902944757,0.07023896060970108,0.7480000000000001,3.740000000000001,9.511824290981977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.791207121873362,2.644963403725012,2.193213689872352,0.548303422468088,2.74151711234044,0.0,0.0,0.0,0.0,4.015341827184147,0.0,12.104143492071133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.756858939524588,12.104143492071133,0.0,0.0,0.0,0.0,6.436170525598373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.74151711234044,13.79414351851852,0.0,0.0,0.0,0.0,0.0,-0.5238657407407408,-0.625300925925926,-1.2283101851851854,0.0,0.6,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1.9725,5.020999999999998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2-Bromotoluene,Cc1ccccc1Br,0,0.9310561342592593,-0.3200376157407407,0.9310561342592593,0.10324074074074052,0.07030794477188604,21.379625000000008,20.497625,21.2466390405,42,0,0.06346947093520952,-0.061925959628569845,0.06346947093520952,0.061925959628569845,0.203125,0.296875,0.390625,3.6807357198826747,47.471916475878245,1.4955127018922192,1.3597455591261534,0.6829951265154914,0.8344283100678678,0.6798727795630767,0.3414975632577457,0.14862277956307668,0.24774756325774572,0.08021708467230752,0.1545606724433093,0.03715569489076918,0.06193689081443643,-0.037500000000000006,2.094639700632517,0.19994735989633952,0.28919518546072914,1.0997729059306491,8.437335792588705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.257150002617404,2.307220289581996,1.0731243980428844,0.6853792780851101,1.1994137366489426,1.9912429872436685,0.0,0.0,0.0,0.8564865146619599,0.0,34.20584583818259,0.0,0.0,0.0,0.0,0.0,15.929943897949348,0.0,0.0,6.851892117295679,1.8948451731110667,28.64239434648559,0.0,0.0,0.0,0.0,3.1223935300356955,0.0,0.0,16.078589715192702,0.0,0.0,0.0,0.0,0.0,15.929943897949348,1.1994137366489426,6.367013888888888,0.3601186342592593,0.0,0.0,-0.047627314814814775,0.0,-0.23446759259259242,0.0,-0.3200376157407407,0.0,0.14285714285714285,8,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,1,2.7575200000000013,4.8598750000000015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +cycloate,CCSC(=O)N(CC)C1CCCCC1 ,0,0.93422858627578,-0.32699796188316604,0.93422858627578,0.97037178760393,0.051265800333236,15.383000000000012,13.870999999999997,15.366741806571428,82,0,0.281358522577794,-0.3309053582870657,0.3309053582870657,0.281358522577794,0.1173469387755102,0.17346938775510204,0.21938775510204084,4.203533063290475,58.87946887666793,2.0615576656832713,1.9831221554591205,0.5414433398111007,1.0535596823406943,0.9845137734961237,0.2928349578481041,0.13506086126073266,0.18916722861541735,0.08165207362631621,0.11445612253359351,0.045524006439124985,0.06806171682621424,-0.01285714285714286,2.565346821943469,0.13381306678564986,0.45221291315413736,3.192350350333724,8.63797766552877,0.34999355220360556,0.0,0.0,0.0,5.239211713172287,0.0,0.34246694171941583,0.0,0.0,0.0,2.6951822693339236,1.8073356289360427,2.8521373768621427,0.09791132544073002,2.398604775974746,1.2143640473259574,0.0,0.34999355220360556,0.0,3.6847358006848494,12.201816569466104,0.0,0.0,0.0,0.0,4.794537184071822,0.0,11.761884949391115,2.0256307487027505,0.0,0.0,5.3110241729152055,0.0,0.0,0.0,0.0,1.4507142857142858,6.12065172660485,0.34246694171941583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.05613783425533,11.64459076537361,-0.06931227054313785,0.857282488392182,-0.17036632113162722,-0.2606115362811794,0.0,-0.32699796188316604,-1.5266821971844295,-0.8621886810279673,0.0,0.9090909090909091,14,0,2,1,0,1,0,0,0,2,0,3,5,1,0,1,1,3.5141000000000027,4.484357142857146,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +"1,2,3,4-Tetrachlorobenzene",Clc1ccc(Cl)c(Cl)c1Cl,0,0.7275432098765432,-0.02119753086419751,0.7275432098765432,0.017901234567901714,0.044741511729822034,21.5894,21.3878,21.389106078399998,54,0,0.07932005703926587,-0.08265371040725315,0.08265371040725315,0.07932005703926587,0.09,0.12,0.15,3.6035674514745475,23.181286524684438,0.9464101615137755,0.651185789203691,0.7535573676110726,0.5464101615137755,0.3255928946018455,0.3767786838055363,0.1505928946018454,0.3017786838055364,0.08601073301520842,0.24731791333133968,0.041219652221889926,0.10758752809424126,0.03799999999999999,2.0815718239857546,0.595884022643223,0.3185466950118093,1.5109747192982683,8.145440902735928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.640375956093006,1.208483741532659,0.0,2.2832050367305743,0.274151711234044,4.640375956093006,0.0,0.0,0.0,0.0,0.0,32.1753706702919,0.0,0.0,0.0,0.0,0.0,46.40375956093006,0.0,0.0,0.0,0.274151711234044,12.08483741532659,20.090533254965305,0.0,0.0,0.0,0.0,0.0,0.0,32.1753706702919,0.0,0.0,0.0,0.0,0.0,0.0,4.914527667327051,1.4550864197530864,2.237234567901234,0.0,-0.005481481481481265,0.0,0.0,-0.042395061728395,0.0,0.0,0.0,0.0,10,0,0,0,0,0,1,0,1,0,0,4,0,0,0,0,1,4.3002,4.648200000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Dulcin,CCOc1ccc(NC(N)=O)cc1,0,0.8807761518083487,-0.2557521210050972,0.8807761518083487,0.2193177201436134,0.05701272688571912,13.862076923076929,12.931615384615382,13.85306750953846,70,0,0.3161185555385829,-0.4938874337286278,0.4938874337286278,0.3161185555385829,0.14792899408284024,0.20710059171597633,0.2544378698224852,3.523547338817442,50.70300136774763,1.531019938761014,1.4008402901482802,0.47776336707135714,0.8562002949672419,0.6826795088804313,0.23332252530351782,0.13663328253260673,0.13663328253260673,0.07303119428835826,0.07303119428835826,0.04215692725059247,0.04215692725059247,-0.13153846153846155,2.4712805471310895,0.1695283605293632,0.3345330213176989,3.0248891562770948,7.209605043968226,1.2127994832934383,0.44227014102183887,0.3258097103834309,0.0,0.0,6.031114512338072,0.0,4.794537184071822,0.0,0.0,0.0,2.3862743806114506,0.7538201494764786,1.137195121533662,2.007981029106803,0.9014231374632027,0.0,0.0,5.719716975726273,0.5270686244073599,11.868798596204664,24.16967483065318,0.0,5.749511833283905,1.2127994832934383,10.481923458755384,5.749511833283905,0.0,0.9684692119426431,0.0,0.0,1.476055317140589,24.16967483065318,4.235526234984602,0.0,0.0,4.949999999999999,4.674483214376689,0.3688105526209094,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.2747964031166603,7.091315364571362,0.0,0.8807761518083487,-0.01687059385720103,-0.10983946864222838,-0.07839550991336706,-0.43776738775994717,0.0,-0.5087057356941468,0.0,0.2222222222222222,13,3,4,0,0,0,1,0,1,2,2,4,4,0,0,0,1,1.5758999999999999,3.9090076923076933,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +tubercidin,Nc1ncnc2n(ccc12)C3OC(CO)C(O)C3O ,0,0.4588890877988622,-0.1983181850956757,0.4588890877988622,0.1309767784524274,0.027766626217280006,14.013526315789463,13.270789473684209,14.005342364631593,102,0,0.2108201790747053,-0.3935668539603635,0.3935668539603635,0.2108201790747053,0.08587257617728532,0.13573407202216067,0.1772853185595568,2.497752474055643,58.0534944835638,1.3348127810861208,1.2064130286239625,0.4695709233608044,0.791096856434618,0.6015077458184734,0.25313026885049944,0.17972016495190027,0.17972016495190027,0.12446056679728812,0.12446056679728812,0.08004329327273682,0.08004329327273682,-0.09157894736842107,3.0764600296363183,0.21711197758466413,0.23277019154419776,1.7667966294822195,6.719590692816,1.597373902665227,1.967327597346798,0.47513878771541873,0.22597889324725803,0.0,0.0,0.0,9.967957041894417,0.0,0.0,0.0,0.31802203724543654,0.32488922162182954,1.2058567319338338,1.853884141542635,0.8869086427930291,4.293598971697903,0.7650029836676722,0.0,1.2865266784624483,12.278702218642561,18.51868563244428,0.0,0.0,0.30103773556454066,5.817862777835028,0.0,0.0,3.102848397814293,0.24930857651579205,0.0,0.975830516603607,18.51868563244428,2.8236841566564013,11.033401435232523,0.0,6.665789473684211,3.4933127357481384,0.0,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,25.294381615216054,1.273209109878228,6.038566580751576,0.0,0.3733399985640673,0.6012360423168456,-0.04797009002237979,-0.037180518121803625,-0.04548438584335621,-0.8853405262771127,-0.1945355224204692,0.0,0.45454545454545453,19,5,8,0,1,1,0,2,2,8,4,8,6,0,1,1,3,-1.3750000000000007,3.4184105263157907,0,3,0,1,0,3,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Formetanate,CNC(=O)Oc1cccc(N=CN(C)C)c1,0,0.7385018338956719,-0.21117947623399747,0.7385018338956719,0.37206849988235247,0.038942258848842046,13.828750000000008,12.88375,13.81977667,86,0,0.4118395859616191,-0.41028281685145285,0.4118395859616191,0.41028281685145285,0.11328125,0.16796875,0.21484375,3.6428945874440495,54.64991566261196,1.5429822658918346,1.416133585464225,0.4786335854642251,0.8566960697896212,0.6953021009653504,0.22985125124660302,0.13779484557132582,0.13779484557132582,0.07070801556405432,0.07070801556405432,0.03964495194219686,0.03964495194219686,-0.1275,2.5596865196118355,0.17473436403040202,0.3591986646891633,3.9964613932952346,7.241800843466104,0.9341616273711815,0.44501689934088284,0.08824012989551254,0.0,0.0,6.093240070938415,0.0,9.786941916707491,0.0,0.0,0.3776511692289559,0.7553023384579118,2.4566704008776266,1.0928129688180006,1.8833663751614467,1.1309508342090966,0.0,0.6381076927586784,4.992404732635669,0.0,20.927480700846736,24.16967483065318,0.0,5.749511833283905,0.6279172691930266,10.481923458755384,5.749511833283905,0.0,2.38970109402245,0.0,0.0,1.1994137366489424,29.16207956328885,1.4118420783282006,0.0,0.0,3.370625,4.6407308790886095,0.29965857400448886,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,9.729267686435719,1.287653866544455,7.187456553794501,0.0,0.9216774601194837,-0.036833187705752696,-0.061764219576719556,-0.06896022297808017,-0.2589952478387189,-0.2070148468337952,-0.6266079556475848,0.0,0.2727272727272727,16,1,5,0,0,0,1,0,1,3,1,5,5,0,0,0,1,1.6262,3.960293750000002,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Napthalene,c1ccc2ccccc2c1,0,0.7691666666666667,-0.05022864701436129,0.7691666666666667,0.1740740740740736,0.05114311994891171,12.817399999999996,12.010999999999997,12.8062600256,48,0,0.06292384158258316,-0.06162971144687501,0.06292384158258316,0.06162971144687501,0.06999999999999999,0.1,0.13,3.2161246449441507,56.285273182752995,1.3773502691896258,1.3,0.5,0.8285468820183676,0.675,0.275,0.175,0.175,0.1125,0.1125,0.06875,0.06875,-0.12999999999999998,2.350090679770045,0.16464713205017714,0.21430528861057718,0.7805335436910606,7.135283165257467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.833934966130636,1.077244842892959,0.0,1.096606844936176,1.096606844936176,1.077244842892959,0.0,0.0,0.0,0.0,0.0,48.33934966130636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.096606844936176,48.33934966130636,0.0,10.772448428929591,0.0,0.0,4.833934966130636,0.0,0.0,10.772448428929591,0.0,0.0,0.0,0.0,0.0,0.0,1.096606844936176,6.080914588057444,0.0,0.0,-0.03481481481481474,0.0,0.0,-0.3794331065759636,0.0,0.0,0.0,0.0,10,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,2,2.839800000000001,4.394800000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Ethanethiol,CCS,0,2.23533950617284,-0.898341049382716,2.23533950617284,0.04513888888888906,0.13216783026391077,20.712333333333337,18.69633333333333,20.673007064,20,0,0.10220111102712578,-0.179652169871682,0.179652169871682,0.10220111102712578,1.1111111111111112,1.4444444444444444,1.4444444444444444,4.1447263667447585,31.24040255866511,2.569035593728849,2.4694160968212877,0.7415816237971963,1.2702200572599405,1.1207908118985983,0.2874574785652648,0.03402069087198859,0.10206207261596574,0.0,0.0,0.0,0.0,0.11666666666666665,1.6364527976600283,0.08844765558702955,0.7833333333333333,2.3500000000000014,11.456659558146342,0.0,0.3745997243440627,0.0,0.0,0.0,0.0,0.0,0.0,12.53269603815698,0.0,2.2839640390985596,1.901652295050053,2.284597593617034,0.0,2.284597593617034,4.177565346052327,1.1237991730321881,0.0,0.0,2.2839640390985596,5.704956885150159,0.0,0.0,0.0,0.0,0.0,0.0,12.53269603815698,2.2762520193941156,0.0,0.0,4.568561632715593,0.0,0.0,0.0,0.0,0.0,4.185616334148612,0.0,0.0,12.53269603815698,0.0,0.0,0.0,0.0,0.0,0.0,2.6591973179610964,13.170331790123457,-0.015046296296296354,0.0,0.0,-0.8125,0.0,0.0,0.0,-0.898341049382716,0.0,1.0,3,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0.9360999999999999,6.5089999999999995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"3,3-Dimethyl-2-butanone",CC(=O)C(C)(C)C,0,1.6834623015873016,-0.5637400793650793,1.6834623015873016,2.3055555555555562,0.06454132841856028,14.308714285714276,12.580714285714283,14.298402143428572,42,0,0.13463290995980942,-0.29943568716997876,0.29943568716997876,0.13463290995980942,0.22448979591836735,0.30612244897959184,0.32653061224489793,6.551269741164645,44.90538540166833,2.2967643241699465,2.2011783272091234,0.486892612923409,1.1292429340541787,1.064874877890276,0.20773202074741878,0.15416059217599024,0.15416059217599024,0.04865615841770695,0.04865615841770695,0.0,0.0,-0.047142857142857146,1.9218993572610479,0.09811170266429532,0.2350068844961148,2.3754673721340387,8.797875671695735,0.0,0.8261778494807056,0.0,0.0,0.0,0.0,0.6849338834388317,0.0,0.0,0.0,2.9365251931267196,0.9788417310422399,3.1234418776342023,0.0,3.0348056940163515,0.8261778494807056,0.0,0.0,5.41499046939678,3.9153669241689597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8261778494807056,0.6849338834388317,5.41499046939678,6.265238734746483,0.0,0.0,0.0,0.0,2.4385714285714286,5.515114840706348,0.6849338834388317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3498718105775196,12.07328373015873,0.0,1.6834623015873016,0.0,-0.5637400793650793,-0.32936507936507947,0.0,0.0,-2.1612599206349214,0.0,0.8333333333333334,7,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,1.6215,4.3051428571428545,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1,1,2-Trichloroethane",ClCC(Cl)Cl,0,1.3214506172839506,-0.4785493827160493,1.3214506172839506,2.2692901234567895,0.09605150969974732,26.681000000000004,26.0762,26.386006627199997,32,0,0.12082872501594434,-0.12377171147587997,0.12377171147587997,0.12082872501594434,0.4,0.44000000000000006,0.44000000000000006,4.020391543176799,13.501955000865388,1.4,1.0267786838055364,0.8803360514166089,0.65,0.46338934190276815,0.39016802570830456,0.07098038523709835,0.2986554414255808,0.014285714285714282,0.1285714285714286,0.0,0.0,0.174,1.253297578463043,0.449548501781652,0.6150677618069815,4.87,10.045780664674925,0.0,0.962464265890348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.802819670697545,0.0,0.0,0.548303422468088,1.440573055908786,0.8224551337021321,6.960563934139509,0.0,0.0,0.0,0.962464265890348,5.832106723373709,0.0,0.0,0.0,0.0,0.0,0.0,34.802819670697545,2.1288856105650895,0.0,0.0,0.8224551337021321,0.0,0.0,0.0,0.0,0.0,2.1288856105650895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.783019067841643,3.9470679012345684,2.952006172839506,-0.4538580246913579,0.0,0.0,-0.4785493827160493,0.0,0.0,0.0,0.0,1.0,5,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,2.0289,5.242799999999999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2-bromonaphthalene,c1c(Br)ccc2ccccc12 ,0,0.7120265151515152,-0.04148800934515218,0.7120265151515152,0.033449074074073826,0.05623226114894806,18.824545454545458,18.183090909090904,18.72482839309091,54,0,0.06411674422553322,-0.06162969636397052,0.06411674422553322,0.06162969636397052,0.09090909090909091,0.15702479338842976,0.23140495867768596,3.2161246449441507,51.56374976119334,1.2521366083542054,1.1252694975462934,0.6330873647385392,0.7532244381985159,0.5853620215004194,0.3392709550965423,0.17627111240951032,0.24836186418745143,0.11086282893202788,0.14690820482099845,0.06894257624447546,0.09597660816120338,-0.07454545454545455,2.350090679770045,0.2359677749953213,0.24233327983706834,1.2864543031768623,7.619582614368016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.194730676024165,2.077935076750562,0.40661086507567396,0.8723008993810492,0.8723008993810492,2.427490211534449,0.0,0.0,0.0,0.0,0.0,46.76965046947548,0.0,0.0,0.0,0.0,0.0,15.929943897949348,0.0,0.0,0.0,0.8723008993810492,46.76965046947548,0.0,10.772448428929591,0.0,0.0,1.098621583211508,0.0,0.0,45.45726148307848,0.0,0.0,0.0,0.0,0.0,15.929943897949348,0.8723008993810492,4.901771144695251,0.27320076831237544,0.0,-0.010683922558922506,0.0,0.0,-0.21731829347900755,0.0,0.0,0.0,0.0,11,0,0,0,0,0,2,0,2,0,0,1,0,0,0,0,2,3.6023000000000014,4.695272727272729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Trichloroethylene,ClC=C(Cl)Cl,0,1.282716049382716,-0.06419753086419741,1.282716049382716,0.1975308641975302,0.09475501172296388,26.277800000000003,26.0762,25.9828766144,30,0,0.1176031867403948,-0.0903590844896965,0.1176031867403948,0.0903590844896965,0.36,0.4,0.4,3.675948764555208,11.772476622436802,1.0309401076758502,0.6267786838055364,0.8803360514166089,0.5285468820183673,0.26338934190276814,0.39016802570830456,0.07098038523709835,0.2986554414255808,0.014285714285714282,0.1285714285714286,0.0,0.0,0.12199999999999997,1.3609640474436813,0.7576506238859179,0.5653839479392624,4.6099999999999985,9.345871858170948,0.0,0.8982936348315855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.960563934139509,0.0,1.1022507136159796,0.274151711234044,0.274151711234044,6.960563934139509,0.0,0.0,0.0,0.0,0.0,10.002721742237824,0.0,0.0,0.0,0.0,0.0,34.802819670697545,0.0,0.0,0.0,0.274151711234044,10.002721742237824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.002721742237824,0.0,0.0,0.0,0.0,0.0,0.0,7.234715645373553,1.2432098765432102,2.9543209876543206,0.0,0.0,-0.06419753086419741,0.0,0.0,0.0,0.0,0.0,0.0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2.5017000000000005,5.1284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Cyclohexanol ,OC1CCCCC1,0,1.0794642857142858,-0.5138392857142858,1.0794642857142858,3.5708333333333337,0.06947498342054466,14.308714285714276,12.580714285714283,14.298402143428572,42,0,0.21044493502697398,-0.39313138246784024,0.39313138246784024,0.21044493502697398,0.22448979591836735,0.32653061224489793,0.40816326530612246,3.7616554503537105,50.811549542712804,2.243872397312364,2.2011783272091234,0.486892612923409,1.1515228816828316,1.0874817765279707,0.2434463064617045,0.13630344931884736,0.13630344931884736,0.06815172465942368,0.06815172465942368,0.03407586232971184,0.03407586232971184,-0.005714285714285714,2.244719052146579,0.09824875439680758,0.3305867456449512,1.4750627509406329,8.756954351231485,0.7298297415867446,0.0,0.0,0.2044570938903763,0.0,0.0,0.0,0.0,0.0,0.0,2.7312535291411626,1.8208356860941084,1.9582265088145998,1.0643966547314583,2.8838789012828046,0.0,1.4311996572326342,0.0,0.0,5.420663219085269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8028608393271193,0.0,0.0,6.706138374931336,0.0,0.0,0.0,0.0,2.89,5.420663219085269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.3585062535864365,12.687857142857144,0.0,0.0,0.5276785714285714,0.0,0.0,0.0,-3.072678571428572,0.0,0.0,1.0,7,1,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1.3114,4.155971428571426,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2-Methyl-1-Pentene,CCCC(=C)C,0,1.2336033950617284,-0.5884452160493829,1.2336033950617284,1.4508101851851853,0.0750704687606988,14.026999999999989,12.010999999999997,14.015650063999999,36,0,0.05371744828358774,-0.10014110520911675,0.10014110520911675,0.05371744828358774,0.3888888888888889,0.5555555555555556,0.638888888888889,6.010320112964545,56.09326436507909,2.5257834230632086,2.5,0.5,1.2608973568170352,1.2083333333333333,0.20833333333333334,0.10416666666666667,0.10416666666666667,0.03125,0.03125,0.010416666666666666,0.010416666666666666,-0.043333333333333335,1.9512076606644553,0.0767019522702261,0.4918284106891703,3.7400000000000007,9.455667428273687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.531038962001867,3.132986924782388,2.2041361697708433,2.284597593617033,0.45691951872340675,2.7415171123404396,0.0,0.0,0.0,0.0,4.4082723395416865,0.0,12.104143492071135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.149789451882129,12.104143492071135,0.0,0.0,0.0,0.0,6.4256295882202075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.7415171123404396,14.15860339506173,0.0,0.0,0.0,-0.2436535493827159,0.0,0.0,-1.1690779320987656,-1.3569830246913581,0.0,0.6666666666666666,6,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2.3626000000000005,4.953666666666664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +p-Nitroanisole,COc1ccc(cc1)N(=O)=O,0,0.9627755982443482,-0.2701467266199409,0.9627755982443482,0.8374074074074069,0.04351117236334907,13.921545454545459,13.280090909090909,13.912963007636364,58,0,0.2691952053150494,-0.49675973475200186,0.49675973475200186,0.2691952053150494,0.1487603305785124,0.2066115702479339,0.24793388429752064,3.536618573317064,43.976015677371294,1.2953235150467206,1.1065416788083224,0.47017804244468614,0.7326578754116568,0.545182132716723,0.22700031453490482,0.13971843642572046,0.13971843642572046,0.07940924817654334,0.07940924817654334,0.03970462408827166,0.03970462408827166,-0.14363636363636365,2.198478748741359,0.22518325631931477,0.2732020949300233,1.6689819002348796,6.672514517006811,0.43062390489091357,0.5226828939349004,0.0,0.0,5.687386274683562,0.0,0.9194834789786884,0.0,0.0,0.0,0.0,1.098621583211508,1.098621583211508,1.9596884909901633,1.7504985359826597,0.5170351158803238,0.0,0.0,0.0,0.0,7.037952458882589,34.28399309941875,0.0,5.749511833283905,0.43062390489091357,5.687386274683562,5.749511833283905,0.0,1.0873875916091145,0.0,10.114318268765572,0.8723008993810492,24.16967483065318,0.0,0.0,0.0,4.760909090909091,4.324348767847355,0.9194834789786884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,0.8723008993810492,4.926961064728922,0.0,0.8655412221706864,0.9627755982443482,-0.09319092283377996,-0.07612794612794609,-0.3385395622895622,0.0,0.0,-0.2701467266199409,0.14285714285714285,11,0,4,0,0,0,1,0,1,3,0,4,3,0,0,0,1,1.6033999999999997,3.6044000000000014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Chloroacetonitrile,ClCC#N,0,1.9114583333333335,-0.5451388888888888,1.9114583333333335,1.2029320987654324,0.09747970860353672,18.874499999999998,18.3705,18.746894186,22,0,0.10946980530287262,-0.19700783941595343,0.19700783941595343,0.10946980530287262,0.625,0.6875,0.6875,3.55273435451576,19.632331253245205,1.301776695296637,0.9562945171272963,0.6452767536319098,0.6401650429449554,0.41564725856364815,0.260138376815955,0.051573629281824074,0.09881918840797747,0.010564428184106456,0.03169328455231937,0.0,0.0,-0.055,1.3516441151533922,0.31964330106265637,0.6949999999999998,1.7799999999999987,8.152495012728043,0.0,1.4580266808434272,0.0,0.0,0.0,0.0,0.0,0.0,5.261891554738487,11.600939890232516,0.0,0.0,0.0,2.2026846062831784,0.6853792780851101,2.900234972558129,5.261891554738487,0.0,0.0,0.0,5.832106723373709,0.0,0.0,6.069221312792274,0.0,0.0,0.0,11.600939890232516,1.4580266808434272,0.0,11.33111286753076,0.6853792780851101,0.0,0.0,0.0,0.0,5.9475,1.4580266808434272,0.0,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,11.600939890232516,2.000852166769732,3.1257716049382713,1.1724537037037035,0.0,1.9114583333333335,0.0,-0.5451388888888888,0.3007330246913581,0.0,0.0,0.0,0.5,4,0,1,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0.74878,4.08325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Phoxim,CCOP(=S)(OCC)ON=C(C#N)c1ccccc1,0,0.49324782276458334,-0.2702534999406953,0.49324782276458334,0.7984137219702696,0.023111627619411153,15.700210526315777,14.90442105263158,15.687057893157915,102,0,0.40167169406128617,-0.3124124219088059,0.40167169406128617,0.3124124219088059,0.07756232686980609,0.11080332409972299,0.13850415512465375,3.6610600417794226,53.5446639466906,1.4251045152768484,1.2618228393871225,0.5623977747517351,0.7900765786506371,0.6193859376388999,0.359177442991046,0.12985573022116914,0.275356554713561,0.07314267952336342,0.1551769445195604,0.03920814846969232,0.08303960741097617,-0.06578947368421052,2.642406886008952,0.24437218417525663,0.42253192151977575,5.092737356974408,7.297795671943905,0.2433933048236001,0.31943270067327756,0.3006150001458264,0.0,0.0,6.718607232363179,0.47618391175913866,0.0,5.261891554738487,0.0,1.8614634876351062,0.7212518018205978,1.3470978377556295,1.3397261837560293,1.8017550240855438,1.275639385461712,5.261891554738487,0.0,5.15571272675054,0.7212518018205978,13.117970485832577,35.77554503001347,0.0,6.069221312792274,0.0,0.0,0.0,6.718607232363179,0.9910344994001726,1.340990694932141,11.33111286753076,2.0962428457285087,35.36780626506702,0.0,0.0,0.0,3.36,3.9488206308195415,0.2769416607757098,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,18.827679841822576,1.7035912858522075,6.595288911172956,0.24948809965831692,0.0,0.6581290072071713,-0.09746452357746216,0.0,-0.1568619100079498,0.0,-1.0307433271430901,0.0,0.3333333333333333,19,0,5,0,0,0,1,0,1,6,0,7,9,0,0,0,1,3.2283800000000014,4.063894736842108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Isopropalin,CCCN(CCC)c1c(cc(cc1N(=O)=O)C(C)C)N(=O)=O,0,0.5607614087301586,-0.2189585963804716,0.5607614087301586,1.2865381708238854,0.024025830763597912,14.062090909090891,13.008272727272727,14.053129828000028,122,0,0.2994513905113812,-0.36036502017357175,0.36036502017357175,0.2994513905113812,0.05578512396694215,0.07851239669421488,0.09504132231404959,5.02371791157635,57.4845466672471,1.6680069283048469,1.5215742703797874,0.4761197249252422,0.8786421372237361,0.754469578731369,0.23174230600409623,0.15313895262704463,0.15313895262704463,0.09588979830318306,0.09588979830318306,0.06141780400097827,0.06141780400097827,-0.0990909090909091,2.7411829259059624,0.17403110655081858,0.3509927018767563,3.9292396656650084,7.3679994894604075,0.22272316958411265,0.0,0.2585175579401619,0.0,11.374772549367124,0.0,0.9194834789786884,0.0,0.0,0.0,1.2457985667810325,1.100148135441765,2.4483857483424156,0.57218814590799,1.8806394949795644,0.7755526738204858,0.0,0.0,0.0,2.0930625435092978,17.893629099482368,37.87692544455473,0.0,0.0,0.22272316958411265,17.062158824050687,0.0,0.0,1.038197339375783,0.0,20.228636537531145,3.779012465491663,12.08483741532659,0.0,0.0,0.0,4.069090909090908,4.931730676608932,0.9194834789786884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4330657632688661,8.168687255323423,0.0,0.8864602015048443,1.1215228174603171,-0.4259959322533727,-0.1948200757575758,-0.20005557273414415,-0.4141845753452897,-1.2029777545618385,0.0,0.6,22,0,7,0,0,0,1,0,1,5,0,7,12,0,0,0,1,4.252800000000004,3.937945454545456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Anethole,COc1ccc(C=CC)cc1,0,0.7030976430976431,-0.27354765769944345,0.7030976430976431,0.7092436696900981,0.05692868680598635,13.473181818181827,12.373545454545452,13.462619545818182,58,0,0.11840058959106642,-0.49676782421707494,0.49676782421707494,0.11840058959106642,0.14049586776859505,0.21487603305785125,0.2727272727272727,3.689068413772875,56.75191637705544,1.6659917213366868,1.5825680264058057,0.49165893549671486,0.9255677361323976,0.7871134809512603,0.24165893549671483,0.14147147434980886,0.14147147434980886,0.08105674047563015,0.08105674047563015,0.04336927932872416,0.04336927932872416,-0.11272727272727275,2.381429455501447,0.1437962507864108,0.3467529943331693,2.114270889670092,7.652250888765429,0.43062390489091357,0.5226828939349004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1989982643088837,2.227289184029024,0.37384324259187823,1.7613435876740515,1.9259968752584262,0.5501883405486878,0.0,0.0,0.0,0.6228992833905163,7.037952458882589,35.78519806838574,0.0,5.749511833283905,0.43062390489091357,0.0,5.749511833283905,0.0,0.6398138598984171,0.0,0.0,2.624040571185028,30.221746576688744,0.0,6.052071746035566,0.0,0.8390909090909091,5.588784202171225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.4953729703675125,8.405792634393825,0.0,0.0,0.0,-0.06447669724455438,-0.07601310726310721,-0.5101719612508301,0.0,-0.2694619988146775,-0.27354765769944345,0.2,11,0,1,0,0,0,1,0,1,1,0,1,4,0,0,0,1,2.728300000000001,4.336545454545457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2-hydroxypteridine,Oc2ncc1nccnc1n2,0,0.673956228956229,-0.03185769257197828,0.673956228956229,0.010925925925926228,0.052207753421978316,13.465909090909093,13.099363636363636,13.458046431636363,54,0,0.31552054569622995,-0.47895947840527925,0.47895947840527925,0.31552054569622995,0.12396694214876032,0.2066115702479339,0.2892561983471074,2.7981486028411773,48.54646255546788,0.999966865551863,0.8361002429512451,0.47246387931488143,0.6466720184481993,0.4228388016086933,0.24936168429379668,0.1579465066781764,0.1579465066781764,0.09548218975386141,0.09548218975386141,0.057374703551767214,0.057374703551767214,-0.16181818181818183,2.205377663710037,0.28008037432488647,0.1926434887787236,0.9579786750787127,6.1356768714557015,0.46443710828247387,0.5015182470560238,0.5133797473425207,0.0,1.4311996572326342,6.010464839586836,0.0,14.951935562841626,4.9839785209472085,0.0,0.0,0.0,1.1223445837845019,0.9350155344841291,0.8382803508743522,1.0148979943985446,1.4311996572326342,1.812355825798985,0.0,0.0,0.0,18.51868563244428,0.0,6.010464839586836,0.0,0.0,6.010464839586836,0.0,2.40690199382988,0.0,0.0,0.37384324259187823,18.51868563244428,0.0,11.16387793838399,0.0,6.526363636363637,0.0,0.0,0.0,35.69302841041511,0.0,0.0,0.0,0.0,0.0,25.044722274896046,0.5039523023402995,2.5856671519617946,0.0,1.3084037655466227,0.36410222548615406,-0.0016792929292928688,0.0,-0.030393046107331824,-0.0897371675943104,0.0,0.0,0.0,11,1,5,0,0,0,0,2,2,5,1,5,1,0,0,0,2,0.1253999999999998,3.344800000000001,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +dibutyl sebacate,CCCCOC(=O)CCCCCCCCC(=O)OCCCC,0,0.5818563957595171,-0.23348566508893412,0.5818563957595171,3.0626151802785024,0.014630279383843196,14.293909090909063,12.73609090909091,14.28389588945459,130,0,0.3052775141617927,-0.465675191765929,0.465675191765929,0.3052775141617927,0.03305785123966942,0.05165289256198347,0.07024793388429752,7.212637406698896,62.184503453341996,2.11676882276147,2.0287724164479752,0.48331787099342965,1.0684388258946886,0.9988520396087086,0.22612476688143587,0.11287105670883606,0.11287105670883606,0.05255198620059829,0.05255198620059829,0.024334222023389272,0.024334222023389272,-0.04818181818181819,2.935816765515525,0.13007158135316851,0.7414964357742331,15.331143339748435,8.33010902897176,0.43062390489091357,0.0,0.0,0.0,0.0,11.938610575903699,0.43586701673380196,0.0,0.0,0.0,2.360969711025801,1.1587136184235236,2.448573022171155,0.845500214114248,2.9849359629786947,0.5426641170865317,0.0,0.0,0.0,4.0990401386610875,13.117970485832577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1389355028061945,0.8664909216247154,0.0,6.217485180015058,0.0,0.0,0.0,0.0,2.390909090909091,5.237975641467282,0.43586701673380196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,2.1184450413539775,12.264520536367739,0.0,1.1637127915190342,0.0,0.0,-0.27841956184350036,0.0,-2.625694498442552,-0.7816950251764787,0.0,0.8888888888888888,22,0,4,0,0,0,0,0,0,4,0,4,17,0,0,0,0,4.7938000000000045,4.030454545454549,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2,6-Dimethylpyridine",Cc1cccc(C)n1,0,0.9224103009259259,-0.3471498842592593,0.9224103009259259,0.7333333333333332,0.061423472114704517,13.394499999999994,12.260499999999999,13.384187411,42,0,0.06418518299543609,-0.25848808574390264,0.25848808574390264,0.06418518299543609,0.1875,0.265625,0.328125,3.6272141987154662,50.73478852388136,1.6992322658918346,1.6184016994374948,0.49340169943749473,0.9324038738774454,0.8059016994374948,0.24340169943749473,0.14800212429686843,0.14800212429686843,0.07317627457812106,0.07317627457812106,0.039669599718747374,0.039669599718747374,-0.10625000000000001,2.0968576182755445,0.12960484381140436,0.2435327644898325,1.0594030875809968,7.753208728843379,0.0,0.0,0.0,0.0,0.0,0.0,0.6229973151184011,0.0,0.0,0.0,0.7553023384579118,3.2235777062397437,2.45155091583978,0.5140344585638326,1.5421033756914975,0.0,0.0,0.6229973151184011,0.0,1.7129730293239198,0.0,29.515112112686808,0.0,0.0,0.0,0.0,0.0,0.0,0.6229973151184011,0.0,13.703784234591359,2.9655853744036125,18.127256122989884,0.0,0.0,0.0,1.61125,5.40236204340977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.5421033756914975,8.094635416666668,0.0,0.41939814814814813,0.0,-0.18990162037037028,0.0,-0.27566550925925914,0.0,-0.6942997685185185,0.0,0.2857142857142857,8,0,1,0,0,0,0,1,1,1,0,1,2,0,0,0,1,1.69844,4.213874999999999,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +isophorone,CC1=CC(=O)CC(C)(C)C1 ,0,1.2163634259259257,-0.3994675925925926,1.2163634259259257,1.5748842592592591,0.05017552817864146,13.821000000000007,12.409799999999997,13.8104465068,56,0,0.15567809158093762,-0.2948441306074027,0.2948441306074027,0.15567809158093762,0.18,0.26,0.32,4.212374418182015,57.083704926623874,1.9732050807568875,1.8908248290463863,0.4908248290463863,1.0187392608830357,0.9454124145231931,0.24541241452319315,0.18291241452319315,0.18291241452319315,0.08520620726159658,0.08520620726159658,0.05650775907699572,0.05650775907699572,-0.05900000000000001,2.1789489526865435,0.12144476186531314,0.22238446727901678,1.693077005206639,8.179446285968202,0.0,0.0,0.5783244946364939,0.0,0.0,0.0,0.4794537184071822,0.0,0.0,0.0,1.9276888764660627,2.4691879234057406,2.4192786131542237,0.137075855617022,2.39851569704549,0.5783244946364939,0.0,0.0,5.41499046939678,3.3301526154545797,0.0,11.625176276104835,0.0,0.0,0.0,0.0,0.0,0.0,0.5783244946364939,0.4794537184071822,5.41499046939678,5.2492145940928925,11.625176276104835,0.0,0.0,0.0,1.707,5.6124937846412335,0.4794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9190619786383079,10.55673611111111,0.0,1.2163634259259257,0.0,-0.5617476851851851,-0.19898148148148137,-0.1574884259259259,-0.770627314814815,-1.1342546296296294,0.0,0.6666666666666666,10,0,1,1,0,1,0,0,0,1,0,1,3,0,0,0,1,2.3218000000000005,4.177900000000002,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Chloropentane,CCCCCCl,0,1.2125231481481482,-0.6070601851851852,1.2125231481481482,3.2548611111111105,0.06383251281376541,17.76599999999999,15.918,17.675821338666665,38,0,0.043519416708896266,-0.12671697108785232,0.12671697108785232,0.043519416708896266,0.3055555555555555,0.4444444444444444,0.5277777777777778,5.733228775936007,42.536227624944324,2.4166666666666665,2.3129940788348713,0.6056489031712803,1.1666666666666667,1.114830372750769,0.26115778491897346,0.07824851970871781,0.1097455591261534,0.028707593187692237,0.04445611289641003,0.009145463260512783,0.017019723114871686,0.04833333333333333,1.9839765572031232,0.11055250063340645,0.8816666666666667,4.29,9.992826869023938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,3.266290319992406,1.0621541502215632,3.485075140207688,0.0,2.5130573529787363,1.9334899817054192,0.0,0.0,0.0,4.328444470213969,5.832106723373709,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,0.9720177872289515,0.0,0.0,6.841501823192709,0.0,0.0,0.0,0.0,0.0,5.300462257442921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.446547334684156,12.966183206307214,0.8389119583018391,0.0,0.0,0.0,-0.5424768518518518,0.0,-1.7937011316872429,-0.5753986625514406,0.0,1.0,6,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,2.415400000000001,5.040833333333331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1,2-Benzenediol",Oc1ccccc1O,0,0.9097280092592592,-0.06733217592592591,0.9097280092592592,0.4944444444444438,0.06134095861269008,13.763999999999994,13.007999999999997,13.754597429,42,0,0.29329362056729674,-0.5042601246702529,0.5042601246702529,0.29329362056729674,0.15625,0.21875,0.265625,3.5656858355463434,41.3843426650916,1.3597893971888562,1.2270620726159658,0.4770620726159658,0.8175139025074156,0.5905931089239487,0.2385310363079829,0.1447810363079829,0.1447810363079829,0.07759885148732477,0.07759885148732477,0.03619525907699572,0.03619525907699572,-0.14750000000000002,2.1959309188744975,0.17569698404160816,0.21726506702454224,0.7293748574130688,6.952879267643794,1.2772020477768031,0.0,1.4373779583209763,0.0,2.8623993144652684,0.0,0.0,0.0,0.0,0.0,1.5106046769158237,1.5106046769158237,0.0,0.6853792780851101,1.962581325861913,0.0,2.8623993144652684,0.0,0.0,0.0,0.0,24.16967483065318,0.0,11.49902366656781,0.0,0.0,11.49902366656781,0.0,1.6350019620849616,0.0,0.0,0.6853792780851101,24.16967483065318,0.0,0.0,0.0,5.0575,4.458587312152623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,1.0431791923932687,5.271215277777777,0.0,0.0,0.9944560185185185,0.0,-0.123611111111111,-0.26706018518518515,0.0,0.0,0.0,0.0,8,2,2,0,0,0,1,0,1,2,2,2,2,0,0,0,1,1.0977999999999999,3.721449999999999,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Sulfanilamide,Nc1ccc(cc1)S(N)(=O)=O,0,1.0541922627636913,-0.4377272727272725,1.0541922627636913,0.1703316326530615,0.05277736197058207,15.655363636363642,14.922272727272725,15.639149863272728,60,0,0.237547699257619,-0.3987277210995827,0.3987277210995827,0.237547699257619,0.12396694214876032,0.18181818181818182,0.2231404958677686,3.8277946476405766,53.37732296530499,1.374436559410637,1.1926520056719552,0.5396062403017483,0.7754077960036334,0.5665902585591028,0.35306379917735814,0.1502542984372789,0.27374347753911327,0.07698356646137723,0.14244099049776995,0.038491783230688616,0.07122049524888498,-0.09727272727272727,2.255661387329797,0.22392310211431107,0.22902639278821676,1.9239700742334507,6.940359176021212,0.5199742705205703,0.2566985596960365,0.2566985596960365,0.9112082866734167,0.0,0.0,0.0,13.542820220500968,0.0,0.0,0.0,2.197243166423016,0.5170351158803238,0.9435016091089686,1.7771090474838742,1.4282434025537405,0.0,0.0,5.12502323617203,0.4450439523197977,5.719716975726273,24.16967483065318,0.0,0.0,0.9858854738089367,5.687386274683562,0.0,0.0,0.7652542713026307,0.9112082866734167,0.0,0.498457656789171,29.065158306170954,5.6473683133128025,0.0,0.0,7.834545454545455,4.536441724584921,0.7652542713026307,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,0.0,1.011854776181244,7.308240483061912,0.0,-0.10369528619528622,-0.06600589225589225,-0.0815233113447399,0.0,-0.3541372053872052,0.0,0.0,-0.4377272727272725,0.0,11,4,4,0,0,0,1,0,1,3,2,5,3,0,0,0,1,-0.08379999999999999,3.8388727272727277,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +uracil,O=c1cc[nH]c(=O)[nH]1 ,0,1.341712962962963,-0.1561342592592592,1.341712962962963,0.010648148148148184,0.05683674763843598,14.010999999999997,13.507,14.003409671,42,0,0.3251675603228361,-0.3141180372098682,0.3251675603228361,0.3141180372098682,0.21875,0.3125,0.40625,3.85837635403996,49.58245065835445,1.1830127018922194,0.9638654714909553,0.46386547149095525,0.6830127018922194,0.4621378340579618,0.22533443518297236,0.13101711835856333,0.13101711835856333,0.06394605917928167,0.06394605917928167,0.032926666682666486,0.032926666682666486,-0.165,2.0815718239857546,0.23617865308813418,0.20640043322219623,0.8412053770519652,6.241217318328182,0.6221254087786565,0.0,0.35296051958205016,0.0,5.559266895052007,5.689743398203474,1.2214425567876344,4.794537184071822,0.0,0.0,0.0,0.0,1.526914239809757,0.34268963904255506,0.6956501586246052,0.0,0.0,1.244250817557313,0.0,0.0,0.0,33.05339857987718,0.0,0.0,1.406126286656935,0.0,0.0,0.0,1.244250817557313,0.0,0.0,0.34268963904255506,21.8043882866217,2.8236841566564013,0.0,0.0,8.215,2.9330405264666917,1.1986342960179555,0.0,9.954006540458504,0.0,0.0,0.0,0.0,0.0,0.0,0.6956501586246052,3.428101851851852,0.0,2.6653472222222225,0.0,-0.3044560185185184,0.0,-0.10421296296296298,-0.10144675925925925,0.0,0.0,0.0,8,2,4,0,0,0,0,1,1,2,2,4,0,0,0,0,1,-0.9368000000000001,3.460425,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5-Allyl-5-methylbarbital,O=C1NC(=O)NC(=O)C1(C)CC=C,0,0.9378784376998662,-0.2936627492877494,0.9378784376998662,0.6672174981103556,0.035655757352533485,14.013769230769235,13.238384615384613,14.00531862923077,70,0,0.32763189261420234,-0.2768218958613851,0.32763189261420234,0.2768218958613851,0.13609467455621302,0.1834319526627219,0.21893491124260356,3.901043521340523,44.90134997828049,1.4262655295636446,1.2399363124916543,0.470705543260885,0.7808841710744703,0.6077866782842789,0.2312922789765931,0.16280662403092314,0.16280662403092314,0.09892107686022393,0.09892107686022393,0.05066160684463122,0.05066160684463122,-0.12692307692307692,2.4026018319629094,0.20518114549480926,0.23121779805624032,1.4446353767848295,6.8729631212611135,0.0,0.4165377284151369,0.21720647358895395,0.9087968814386932,0.0,6.031114512338072,1.5545154672861843,4.794537184071822,0.0,6.531038962001867,0.46554398046427437,1.0172936168173121,0.5272148292962385,0.31632889757774313,2.1671818583256632,1.3727287670031603,0.0,0.8168943620443655,5.41499046939678,1.0172936168173121,0.0,12.583110708037434,0.0,0.0,0.8168943620443655,4.794537184071822,0.0,0.0,1.3727287670031603,0.7376211052418188,5.41499046939678,1.8608373436912937,12.583110708037434,2.8236841566564013,0.0,0.0,5.790000000000001,4.591386067205931,1.1064316578627282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0607502004629354,5.629012103416866,0.0,2.7517143196309863,-0.10264884586313167,-0.2936627492877494,-0.3237891737891739,-0.2642713965928251,-0.2881143162393162,-0.4095219925577069,0.0,0.375,13,2,5,0,1,1,0,0,0,3,2,5,3,0,1,1,1,-0.06520000000000037,3.430953846153847,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +"2,4'-PCB",Clc1ccc(cc1)c2ccccc2Cl ,0,0.5651809559802757,-0.04092518356548969,0.5651809559802757,0.2765432098765428,0.04706794109303885,15.935857142857145,15.35985714285714,15.857164686857143,70,0,0.06386294087483058,-0.0843437391002565,0.0843437391002565,0.06386294087483058,0.061224489795918366,0.10714285714285714,0.15816326530612246,3.026914071477952,48.369935348934256,1.2091573735911079,1.0539949247156037,0.5905562027182402,0.721916858944971,0.5448546052149448,0.313135244216263,0.1698546052149448,0.2238495299305487,0.1061591282593405,0.13990595620659294,0.0636954769556043,0.08394357372395578,-0.06999999999999999,2.499719362818697,0.2771132262718806,0.28821633798029217,1.9176574475475268,7.452485270047629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8152838084843936,1.6921934010490627,1.1149084370842606,0.78329060352584,0.78329060352584,1.6572771271760736,0.0,0.0,0.0,0.0,0.0,58.38461628878901,0.0,11.126902983393991,0.0,0.0,0.0,23.20187978046503,0.0,0.0,0.0,0.78329060352584,48.33934966130636,10.045266627482652,11.126902983393991,0.0,0.0,3.4528106900933113,0.0,0.0,21.172169610876644,0.0,0.0,0.0,0.0,0.0,0.0,2.440567730701914,4.431556472383192,0.8344160847760619,0.0,-0.05225985014817204,-0.0418165784832451,0.0,-0.29888025551196357,0.0,0.0,0.0,0.0,14,0,0,0,0,0,2,0,2,0,0,2,1,0,0,0,2,4.660400000000002,4.421285714285716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"Etoposide (148-167,25mg/ml)",COc1cc(cc(OC)c1O)C6C2C(COC2=O)C(OC4OC3COC(C)OC3C(O)C4O)c7cc5OCOc5cc67,0,0.3485435862587913,-0.12237867762265657,0.3485435862587913,1.4270083262703321,0.010234029963009483,14.013380952380988,13.245380952380959,14.004387882952399,226,0,0.3099403857906003,-0.5016994790132149,0.5016994790132149,0.3099403857906003,0.02437641723356009,0.04308390022675737,0.060090702947845805,1.708447446145564,64.29387727198412,1.3569246398500883,1.2335054232388147,0.4716006613340529,0.783703876894507,0.6360827634879543,0.2616840760738689,0.193086429050573,0.193086429050573,0.13912424957299532,0.13912424957299532,0.09799499324565288,0.09799499324565288,-0.07928571428571428,3.6382281873230973,0.22226198853061283,0.24847146960060917,4.258657173456175,6.79639415963341,1.3799569323219545,0.6443235528604855,0.8459572397668909,0.36564182695838976,1.4311996572326342,5.969305287951849,0.11415564723980529,0.0,0.0,0.0,0.0,1.1359981291199963,0.47648730256541605,1.6179471617972734,2.4405887254888134,0.14212631637980594,4.293598971697903,0.0,11.787915370726157,1.325668968440059,33.93892098810095,40.86002930574416,0.0,28.747559166419524,0.4511298051238142,0.0,28.747559166419524,0.0,2.294773301570145,0.678067903644573,11.787915370726157,1.7921004865151464,24.16967483065318,0.0,0.0,0.0,3.8292857142857146,4.2138530188910766,0.4405267320422386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.063287527121684,1.6245932183174412,7.62259033169223,0.0,0.3485435862587913,0.3029719699300128,-0.14273378043025436,-0.5969472229145005,-0.1776389045016929,-0.8031175671633699,-0.4024464658023043,-0.1829679788149475,0.5517241379310345,42,3,13,1,4,5,2,0,2,13,3,13,11,0,3,3,7,1.338599999999999,3.293938095238094,0,2,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Propyne,CC#C,0,2.1238425925925926,-0.7494212962962963,2.1238425925925926,1.5451388888888888,0.11590936515984529,13.355000000000004,12.011000000000001,13.343766709333332,16,0,0.1238138422083394,-0.1204050604029647,0.1238138422083394,0.1204050604029647,1.0,1.3333333333333333,1.3333333333333333,3.722076581642847,33.442959103225995,1.9714045207910316,1.8333333333333333,0.5,1.0202200572599405,0.8333333333333334,0.16666666666666666,0.041666666666666664,0.041666666666666664,0.0,0.0,0.0,0.0,-0.14666666666666667,1.2958363892911637,0.06717664717147147,0.5200000000000001,1.5599999999999996,8.696080883051096,0.0,0.45691951872340675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.319835853677588,0.0,2.2839640390985596,1.3707585561702202,0.0,1.827678074893627,0.0,0.0,0.0,0.0,2.2839640390985596,0.0,0.0,0.0,12.319835853677588,0.0,0.0,0.0,0.0,0.0,0.0,12.319835853677588,4.111642113992186,0.0,0.0,0.0,0.0,0.0,2.2839640390985596,0.0,0.0,0.0,0.0,0.0,0.0,12.319835853677588,0.0,0.0,1.827678074893627,8.41724537037037,0.0,0.0,0.0,0.0,0.5671296296296297,0.0,0.5150462962962963,-0.7494212962962963,0.0,0.3333333333333333,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6395,4.8356666666666674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +Cyclooctanol,OC1CCCCCCC1,0,0.8678240740740741,-0.4561342592592595,0.8678240740740741,3.7016921768707483,0.05881490048149632,14.246111111111102,12.454111111111109,14.235568348,54,0,0.21044493502697376,-0.3931313824680339,0.3931313824680339,0.21044493502697376,0.1358024691358025,0.19753086419753085,0.2592592592592593,4.143767762200193,56.259774385295394,2.3007896423540606,2.267583143384874,0.4898053656070959,1.1734066857533134,1.1235969372995327,0.24490268280354796,0.13379157169243683,0.13379157169243683,0.06689578584621841,0.06689578584621841,0.03344789292310921,0.03344789292310921,-0.0044444444444444444,2.4300944983358934,0.1012517349696837,0.43188722762536097,2.8502759632909154,8.8498274097872,0.567645354567468,0.0,0.0,0.15902218413695934,0.0,0.0,0.0,0.0,0.0,0.0,3.5405138340718776,1.416205533628751,2.1322910873758976,0.8278640647911343,2.852242948184501,0.0,1.4311996572326342,0.0,0.0,5.6322769262506265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4022250972544261,0.0,0.0,7.241316961317667,0.0,0.0,0.0,0.0,2.247777777777778,5.6322769262506265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.4436197777539928,13.612343159486018,0.0,0.0,0.41129913076341645,0.0,0.0,0.0,-3.634753401360545,0.0,0.0,1.0,9,1,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,2.0915999999999997,4.258422222222222,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Methyl t-butyl ether ,COC(C)(C)C,0,1.1777777777777778,-0.6276041666666666,1.1777777777777778,3.4750000000000014,0.07249789672999273,14.691666666666656,12.675666666666665,14.681469167333333,38,0,0.05942520764405295,-0.3791035972502146,0.3791035972502146,0.05942520764405295,0.25,0.3611111111111111,0.3888888888888889,6.097880982711177,41.91857179204029,2.534517796864425,2.484708048410644,0.48470804841064385,1.242851130197758,1.1930413817439771,0.1930413817439772,0.1305413817439772,0.1305413817439772,0.025515518153991442,0.025515518153991442,0.0,0.0,-0.006666666666666667,1.8990671321187291,0.08495846683279933,0.26760998810939357,3.9600000000000004,9.362035119489443,0.7894771589666748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4259460586478396,3.229129910735761,1.6188877465823914,3.5309942713071147,0.0,0.0,0.0,0.0,4.359454527145121,7.037952458882589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1065005449777128,0.7894771589666748,0.0,6.167463170988281,0.0,0.0,0.0,0.0,1.5383333333333333,5.532446603625552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,2.7415171123404396,14.66614583333333,0.0,0.0,0.0,-0.6276041666666666,0.0,0.0,0.0,-1.8343750000000003,-0.5791666666666669,1.0,6,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,1.4313,4.460333333333331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Acrolein,C=CC=O,0,2.4416203703703703,-0.32175925925925913,2.4416203703703703,0.87037037037037,0.07828281611069988,14.016000000000004,13.008000000000001,14.006553687,22,0,0.14174582194221017,-0.29858708973922715,0.29858708973922715,0.14174582194221017,0.625,0.8125,0.8125,4.2266192868964705,33.55471227508702,1.6830127018922192,1.4770620726159658,0.4770620726159658,0.8883545031536988,0.6760310363079829,0.1760310363079829,0.056765518153991446,0.056765518153991446,0.012757759076995721,0.012757759076995721,0.0,0.0,-0.14750000000000002,1.6403360647604435,0.1205070385342715,0.6025000000000001,1.4100000000000017,7.640234081288382,0.0,1.9082426796253653,0.0,0.0,0.0,0.0,1.1986342960179555,0.0,0.0,0.0,1.6327597405004668,1.5130179365088916,0.0,1.0280689171276651,2.5693928521881757,1.5655530405828102,0.0,0.0,0.0,0.0,0.0,12.583110708037434,0.0,0.0,0.0,0.0,0.0,0.0,1.5655530405828102,1.1986342960179555,0.0,1.3707585561702202,12.583110708037434,0.0,0.0,0.0,4.2675,4.711330717592169,1.1986342960179555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3707585561702202,6.325740740740741,0.0,2.4416203703703703,0.0,0.0,0.0,-0.2175925925925925,-0.32175925925925913,-0.22800925925925924,0.0,0.0,4,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0.37129999999999996,4.06525,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +triamcinolone diacetate,CC(=O)OCC(=O)C3(O)C(CC4C2CCC1=CC(=O)C=CC1(C)C2(F)C(O)CC34C)OC(C)=O ,0,0.5934811528586793,-0.1875872196968269,0.5934811528586793,2.258098260679378,0.017220766232808833,14.073911764705873,13.154852941176479,14.064714593294141,186,0,0.30256569469468375,-0.4589531200440186,0.4589531200440186,0.30256569469468375,0.04065743944636678,0.06487889273356402,0.0847750865051903,2.696454702297699,65.03259651617736,1.5278596846547998,1.3865867881388274,0.47482208225647443,0.832071613691127,0.7072564785221075,0.2567712849654097,0.2069781567209109,0.2069781567209109,0.1537363025896593,0.1537363025896593,0.10819765904442875,0.10819765904442875,-0.07029411764705883,3.2237117917235105,0.20236349081515137,0.22978294146670686,3.086801125193764,7.072057025965482,0.5791571261710153,0.17882405961617612,0.6944717887944292,0.25428365473030023,0.0,11.938610575903699,0.5640631981260967,4.39041504767482,0.0,0.0,0.5434431880411916,1.4806380264719825,1.7818944439556734,0.4610390564747508,2.441526594197441,0.6913264843715758,2.8623993144652684,0.0,22.61789630951972,2.244973963474399,6.558985242916289,23.729319768175966,0.0,0.0,0.0,4.39041504767482,0.0,0.0,1.9580572968193797,0.8427021954084524,22.61789630951972,2.7250372412775454,23.729319768175966,0.0,0.0,0.0,3.7411764705882358,4.4923651925698564,0.7455788235758006,0.27014565387490125,0.0,0.0,0.0,0.0,0.0,0.0,19.69134228981452,0.9308332057070555,8.669792505203764,0.0,1.5895623589938865,0.24207494383390019,-0.781623574438579,-0.7192932004066771,-0.21247148002315322,-1.0133135709932637,-0.7281593547188985,0.0,0.68,34,2,8,4,0,4,0,0,0,8,2,9,10,3,0,3,4,1.7620999999999996,3.408282352941178,0,2,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,5,0,0,0,2,2,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pyridazine,c1ccnnc1,0,1.164567901234568,-0.06003086419753086,1.164567901234568,0.3472222222222221,0.07542619051633219,13.34833333333333,12.676333333333332,13.339574687999999,30,0,0.08598140941410494,-0.15917583224964102,0.15917583224964102,0.08598140941410494,0.19444444444444445,0.2777777777777778,0.3611111111111111,3.3421538077705124,39.1132763960928,1.287269106521933,1.149071198499986,0.48240453183331927,0.7709829429477049,0.5662022659166596,0.2328689325833263,0.11226779962499649,0.11226779962499649,0.054050566479164903,0.054050566479164903,0.02598361657291579,0.02598361657291579,-0.15333333333333335,1.9321601728882982,0.17094684546566016,0.24996713993427988,0.5163568727137455,6.909839108410996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.197363616602075,0.0,0.0,2.0141395692210984,2.0576317369382537,0.9138390374468135,0.9138390374468135,0.0,0.0,1.6995606027670125,0.0,0.0,0.0,24.430627836956113,0.0,0.0,0.0,0.0,0.0,0.0,1.6995606027670125,0.0,0.0,0.9138390374468135,24.430627836956113,0.0,0.0,0.0,4.296666666666667,0.0,0.0,0.0,24.430627836956113,0.0,0.0,0.0,0.0,0.0,10.197363616602075,0.9138390374468135,4.626666666666666,0.0,0.0,1.0535802469135802,0.0,0.0,-0.1157407407407407,-0.12006172839506173,0.0,0.0,0.0,6,0,2,0,0,0,0,1,1,2,0,2,0,0,0,0,1,0.4765999999999999,3.6719999999999993,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4-Chlorotoluene,Cc1ccc(Cl)cc1,0,0.9242505787037038,-0.3345293209876543,0.9242505787037038,0.3629629629629625,0.06268770825084556,15.823249999999994,14.941249999999998,15.752953488,42,0,0.06385012839856423,-0.08434413556465584,0.08434413556465584,0.06385012839856423,0.1875,0.265625,0.328125,3.6807357198826742,47.471916475878245,1.4955127018922194,1.3597455591261534,0.5792366773784602,0.834428310067868,0.6798727795630767,0.2896183386892301,0.14862277956307668,0.1958683386892301,0.07431138978153834,0.09793416934461505,0.03715569489076918,0.04896708467230752,-0.061250000000000006,2.094639700632517,0.18896314229450825,0.27317010236609646,1.2392064029119825,7.991800620243745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6561535996570127,2.3670911915777837,1.1418636227814984,0.6853792780851101,1.1994137366489426,1.4501174862790644,0.0,0.0,0.0,0.8564865146619599,0.0,34.7557596360915,0.0,0.0,0.0,0.0,0.0,11.600939890232516,0.0,0.0,6.851892117295679,1.8948451731110667,24.16967483065318,5.022633313741326,0.0,0.0,0.0,4.573127304955731,0.0,0.0,5.022633313741326,0.0,0.0,0.0,0.0,0.0,0.0,2.649531222928007,6.344134897014362,0.6889495937263793,0.0,-0.04537037037037031,-0.0744328703703703,0.0,-0.2836130401234567,0.0,-0.3345293209876543,0.0,0.14285714285714285,8,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,1,2.6484200000000007,4.523625000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2-Chlorobutane,CCC(C)Cl,0,1.4207947530864198,-0.6625385802469136,1.4207947530864198,3.1892361111111116,0.08687512049005953,18.513799999999993,16.6994,18.407855593599997,32,0,0.04686899348538178,-0.12332141991372317,0.12332141991372317,0.04686899348538178,0.52,0.6799999999999999,0.72,5.300082077607573,37.16645878435746,2.4,2.2755928946018456,0.6267786838055363,1.15,1.0877964473009227,0.26338934190276814,0.08779644730092273,0.16338934190276816,0.02194911182523068,0.04084733547569204,0.0,0.0,0.057999999999999996,1.8096798835528565,0.11024281397612219,0.5046200466200467,4.289999999999999,10.156415619882278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,1.3703784234591359,2.644963403725012,3.5379933025878776,0.0,2.467365401106396,2.320187978046503,0.0,0.0,0.0,5.08596972866563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,1.070627901481482,0.0,0.0,6.482707228290543,0.0,0.0,0.0,0.0,0.0,5.08596972866563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.787553379152898,12.38601697530864,1.031560185185185,0.0,-0.6378472222222223,0.0,0.0,0.0,-0.6625385802469136,-1.2949691358024693,0.0,1.0,5,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,2.0237,5.121199999999997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Hexylbenzene ,CCCCCCc1ccccc1,0,0.6721279368228773,-0.34918179366654084,0.6721279368228773,0.9285309108530153,0.0481208675639106,13.523000000000012,12.010999999999997,13.511737548,66,0,0.06256033944053933,-0.06538238174359431,0.06538238174359431,0.06256033944053933,0.10416666666666667,0.17361111111111113,0.23611111111111113,3.8743316190381134,66.79534897253417,2.038675134594813,2.0,0.5,1.0771188733785786,1.0,0.25,0.13541666666666666,0.13541666666666666,0.07291666666666667,0.07291666666666667,0.0390625,0.0390625,-0.065,2.559621506674956,0.1143807603673143,0.48482954794042304,3.5646069197864145,8.409210400741431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.681896696633358,1.5257751078629795,1.4849884358510714,0.5711493984042585,2.05613783425533,0.0,0.0,0.0,0.0,3.226376385328548,0.0,35.77554503001347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5310770751107816,0.0,5.215058102114518,30.212093538316473,0.0,0.0,0.0,0.0,6.207671804496338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.05613783425533,11.518692524796817,0.0,0.0,0.0,-0.1093657486142605,0.0,-0.4528196084273035,-1.6847954022143845,-0.3133784322075344,0.0,0.5,12,0,0,0,0,0,1,0,1,0,0,0,6,0,0,0,1,3.809400000000003,4.524000000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Chloroheptane,CCCCCCCCl,0,0.945534336419753,-0.511701388888889,0.945534336419753,3.47953691893424,0.05003906099322773,16.83125,14.941249999999998,16.76077852,50,0,0.04351941808357943,-0.12671696964453744,0.12671696964453744,0.04351941808357943,0.171875,0.265625,0.34375,6.370990656665334,49.96527438819279,2.4375,2.3597455591261536,0.5792366773784602,1.1875,1.1486227795630768,0.2583683386892301,0.08993638978153835,0.11355916934461505,0.03715569489076918,0.04896708467230752,0.014671597445384588,0.02057729233615376,0.03625,2.2407403893236806,0.11084075190789221,0.9112499999999994,6.289999999999997,9.788340930451005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,4.04294896532665,0.7966156126661724,3.2991856332408758,0.0,2.570172292819162,1.4501174862790644,0.0,0.0,0.0,4.839564577992822,5.832106723373709,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,0.7290133404217136,0.0,0.0,7.40973687081199,0.0,0.0,0.0,0.0,0.0,5.568577918414535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.020289779098227,13.72663364545278,0.6367509543362097,0.0,0.0,0.0,-0.43494211486678,0.0,-2.4848198144998745,-0.460983781533447,0.0,1.0,8,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,3.1956000000000016,4.934875000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3-Pentanoyloxymethylphenytoin,O=C1N(COC(=O)CCCC)C(=O)C(N1)(c2ccccc2)c3ccccc3,0,0.5324647885567346,-0.16352154616844342,0.5324647885567346,0.6210349035734599,0.022340281334863675,13.570999999999989,12.74966666666667,13.561405821629652,140,0,0.32786640076668144,-0.4435958605585316,0.4435958605585316,0.32786640076668144,0.0438957475994513,0.06584362139917695,0.08641975308641976,2.4131793159605692,61.53449624791192,1.4267430132374146,1.2973118649205693,0.4824970501057544,0.8083983798992882,0.6605877152003522,0.25513535981146496,0.1704132291284157,0.1704132291284157,0.116575276301774,0.116575276301774,0.07695661518291537,0.07695661518291537,-0.11666666666666661,3.169611288447935,0.20143417018889948,0.297543411732642,3.556381478076956,6.986754082258555,0.3720991224847565,0.0,0.5049513835783112,0.0,5.907179729351506,12.000419800289922,0.35515090252383863,9.694446914922299,0.0,0.0,2.7277408924169637,0.648141773508273,0.6929537743281984,0.6092260249645421,1.8266017134784578,0.6632444270237565,0.0,0.37813789200514275,0.0,1.1670219286543395,6.682920025902854,71.55109006002695,0.0,0.0,0.1966597538254954,4.794537184071822,0.0,0.0,1.0922381217183244,0.7357356509010012,0.0,2.44012961052787,60.42418707663295,1.4118420783282006,0.0,0.0,2.804074074074074,5.105960176791751,0.5327263537857581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.1184359910334376,6.641983425900621,0.0,1.4833982365177831,-0.02300129272494296,-0.24367107706203017,-0.18622675784117407,-0.5526567316497687,-0.4785971667569625,-0.3078953030501894,0.0,0.2857142857142857,27,1,6,0,1,1,2,0,2,4,1,6,8,0,1,1,3,3.172900000000002,3.6861370370370383,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +Methaqualone,Cc1ccccc1n3c(C)nc2ccccc2c3=O,0,0.7084547181445676,-0.17072496469347978,0.7084547181445676,0.17602088057445187,0.03500636164102657,13.173736842105267,12.430999999999997,13.163716477263158,94,0,0.2654677569072256,-0.2681674320933315,0.2681674320933315,0.2654677569072256,0.05817174515235458,0.09972299168975068,0.1440443213296399,2.7693762072875114,72.96827950909301,1.335124253633207,1.2264566042875673,0.48961449902440946,0.7854385582188061,0.6353767438937803,0.2669556912622014,0.18543087121886206,0.18543087121886206,0.12660428709715235,0.12660428709715235,0.08365540191769132,0.08365540191769132,-0.12736842105263155,2.6914058359136095,0.19955548621686212,0.2291608247823854,1.8340679152322232,6.862127507208993,0.0,0.30654760515789087,0.0,0.0,5.559266895052007,0.0,0.4927177279927988,4.9839785209472085,0.0,0.0,1.590110186227183,1.9681311499620127,0.4328711230011222,1.4503357713750724,1.0100326203359515,0.5738381543200556,0.0,0.5026883246704507,0.0,0.7212518018205978,0.0,70.08100973012712,0.0,5.687386274683562,0.2925929944764214,0.0,0.0,0.0,0.5026883246704507,0.0,13.703784234591359,1.6093934618989472,53.13388684537818,0.0,16.59031120676462,0.0,1.8363157894736843,5.030556209863751,0.2523440623195696,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.0100326203359515,5.805396677989512,0.0,0.9055760432828099,-0.04030686836137962,-0.21708952993153077,-0.059183176194454366,-0.3787497690228712,0.0,-0.34020478127085807,0.0,0.125,19,0,3,0,0,0,2,1,3,3,0,3,3,0,0,0,3,3.0025400000000015,4.042842105263159,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +m-Xylene ,Cc1cccc(C)c1,0,0.9491030092592593,-0.3579282407407407,0.9491030092592593,0.7886574074074069,0.05946971066754013,13.270999999999992,12.010999999999997,13.25978129,42,0,0.06283107966352146,-0.06174087142677341,0.06283107966352146,0.06174087142677341,0.171875,0.25,0.3125,3.834543489724933,54.88960951404367,1.8080127018922192,1.75,0.5,0.9858439182435164,0.875,0.25,0.15625,0.15625,0.078125,0.078125,0.04296875,0.04296875,-0.0975,2.0941531485135068,0.11775020874897647,0.24921808903590698,1.0935372033822537,8.026374043746042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.412072226755896,1.7129730293239198,1.0280689171276651,0.6853792780851101,1.713448195212775,0.0,0.0,0.0,0.0,1.7129730293239198,0.0,35.29657781404717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.703784234591359,3.1043110681370236,24.16967483065318,0.0,0.0,0.0,0.0,6.125045256079816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.713448195212775,9.133738425925925,0.0,0.0,0.0,-0.19916087962962953,0.0,-0.4062210648148147,0.0,-0.7158564814814814,0.0,0.25,8,0,0,0,0,0,1,0,1,0,0,0,2,0,0,0,1,2.30344,4.4895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Talbutal,CCC(C)C1(CC=C)C(=O)NC(=O)NC1=O,0,0.8157730418556309,-0.29532696759259275,0.8157730418556309,0.9467243008314434,0.03446147121160327,14.016250000000007,13.008249999999997,14.00725577325,88,0,0.3276324784995045,-0.27680308492813477,0.3276324784995045,0.27680308492813477,0.109375,0.15234375,0.18359375,4.538823638574631,52.96474410336483,1.6275907427704612,1.4761982538994691,0.4761982538994691,0.8688433889980071,0.7282016761059767,0.23479997666848196,0.16353038202512507,0.16353038202512507,0.11162337494893194,0.11162337494893194,0.06429477252944758,0.06429477252944758,-0.10312500000000001,2.614341880029089,0.17353099580946071,0.27918973051461915,1.7271946728041057,7.304573120036949,0.0,0.3384369043372987,0.17648025979102508,0.7383974661689382,0.0,6.031114512338072,1.2630438171700247,4.794537184071822,0.0,6.531038962001867,1.633048805122269,0.7666801616682786,0.9423965073670262,0.2570172292819163,2.274869718453434,1.1153421231900678,0.0,0.663726669161047,11.308948154759857,1.6531021273281323,0.0,12.583110708037434,0.0,0.0,0.663726669161047,4.794537184071822,0.0,0.0,1.1153421231900678,0.5993171480089777,11.308948154759857,2.8525158639770765,12.583110708037434,2.8236841566564013,0.0,0.0,4.704375000000001,4.925424598604078,0.8989757220134666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3758939964399672,7.6531206055917735,0.0,2.372838322684397,-0.11834053760393043,-0.28788483796296305,-0.6157841435185187,-0.25440924981103546,-0.5518021305744523,-0.6456546954719391,0.0,0.5454545454545454,16,2,5,0,1,1,0,0,0,3,2,5,6,0,1,1,1,0.9609999999999999,3.6489625000000014,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +Iodofenphos,COP(=S)(OC)Oc1cc(Cl)c(I)cc1Cl,0,0.49158403486394564,-0.27709518298059965,0.49158403486394564,0.15129432791635167,0.02583144439997098,25.812499999999993,25.308500000000002,25.739709694125015,90,0,0.3795716380340057,-0.42248134615232347,0.42248134615232347,0.3795716380340057,0.0859375,0.125,0.16015625,3.428693762278984,40.522870348050205,1.1928388724185874,0.9508812610239432,0.7871487582202479,0.6601729118361477,0.463100993034366,0.48752078636545304,0.14013410806239457,0.42878839722561785,0.07884517750751192,0.2789531489468825,0.04050081619022839,0.14219290897200632,0.056249999999999994,2.3454732743328477,0.43068750907243436,0.3862370012779888,3.6983453449981365,8.374374107260827,0.8482025928209658,0.35934448958024406,0.0,0.0,0.0,6.718607232363179,0.0,0.0,0.0,0.0,1.4501174862790644,1.7895805834207095,2.2184601240707824,1.3132084423027757,1.5335818709060756,4.019888358033432,0.0,0.0,0.0,0.0,14.075904917765177,25.70028631387464,0.0,5.749511833283905,0.2827341976069886,0.0,5.749511833283905,52.51135763989627,0.8797440573603236,1.3033969007538926,3.5701822710653963,0.68537927808511,12.08483741532659,10.045266627482652,0.0,0.0,1.730625,2.350567250301055,0.0,0.0,14.635234292470017,0.0,0.0,0.0,22.590870627068057,0.0,9.047494323423635,3.1561594675110802,4.517894901633493,1.1411176843847106,0.0,-0.03844756826341643,0.0,-0.0370997685185185,-0.05137966702884855,0.0,-0.27709518298059965,-0.39158762144904274,0.25,16,0,3,0,0,0,1,0,1,4,0,8,6,0,0,0,1,4.494100000000002,4.881875000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3-Methylpentane,CCC(C)CC,0,1.2760416666666667,-0.6684027777777778,1.2760416666666667,3.692708333333334,0.08064838301414477,14.362999999999987,12.010999999999997,14.351591741333332,38,0,0.0299644834169315,-0.06512847364618164,0.06512847364618164,0.0299644834169315,0.3055555555555555,0.4166666666666667,0.47222222222222227,6.495149892610001,54.22184884591326,2.8333333333333335,2.8333333333333335,0.5,1.375,1.375,0.20833333333333334,0.10416666666666667,0.10416666666666667,0.041666666666666664,0.041666666666666664,0.005208333333333333,0.005208333333333333,0.0,2.096431457271331,0.06925207756232686,0.5333333333333333,2.25,10.038924767027002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5502543590909665,0.9823262808938464,3.198436631063846,0.0,3.198436631063846,0.0,0.0,0.0,5.893957685363079,5.5502543590909665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.893957685363079,8.74869099015482,0.0,0.0,0.0,0.0,0.0,6.532580639984812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.198436631063846,16.756597222222222,0.0,0.0,0.0,0.0,-0.6684027777777778,0.0,-1.304513888888889,-1.8670138888888896,0.0,1.0,6,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,2.442500000000001,4.957666666666664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Hexanol,CCCCCCO,0,1.0642261904761905,-0.5671130952380954,1.0642261904761905,3.420839710884354,0.07627541167199674,14.596714285714274,12.580714285714283,14.586352152571427,44,0,0.21003653484502316,-0.396376569347818,0.396376569347818,0.21003653484502316,0.24489795918367346,0.38775510204081637,0.4897959183673469,6.137022423171064,54.20224228820514,2.5295866830266496,2.486892612923409,0.486892612923409,1.2586657388256888,1.1946246336708277,0.20773202074741878,0.08600886751656654,0.08600886751656654,0.03407586232971184,0.03407586232971184,0.012573645450570206,0.012573645450570206,-0.005714285714285714,2.257924097331966,0.08865079715686741,0.8514285714285713,5.960000000000001,9.302064658926465,0.7298297415867446,0.0,0.0,0.2044570938903763,0.0,0.0,0.0,0.0,0.0,0.0,3.7100952601834023,0.9104178430470542,3.0910470515412434,0.39164530176292006,3.275524203045724,0.0,1.4311996572326342,0.0,0.0,4.620513103230457,6.558985242916289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.871284727322305,0.0,0.0,7.166207564689443,0.0,0.0,0.0,0.0,2.89,5.55751099507564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.750151555349356,14.351866344752187,0.0,0.0,0.4886913872691934,0.0,0.0,0.0,-2.229891277939748,-1.0392378826530615,0.0,1.0,7,1,1,0,0,0,0,0,0,1,1,1,6,0,0,0,0,1.559,4.461114285714283,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"3,4-Dimethylpyridine",Cc1ccncc1C,0,0.9281394675925926,-0.3582146990740741,0.9281394675925926,0.713773148148148,0.061423472114704517,13.394499999999994,12.260499999999999,13.384187411,42,0,0.08427711679149251,-0.26443900509098867,0.26443900509098867,0.08427711679149251,0.203125,0.3125,0.40625,3.7564184723101874,55.51603852388138,1.6992322658918346,1.6184016994374948,0.49340169943749473,0.9324038738774454,0.8059016994374948,0.24340169943749473,0.15130127457812106,0.15130127457812106,0.08181356214843422,0.08181356214843422,0.035763349718747374,0.035763349718747374,-0.10625000000000001,2.0590546098819176,0.12960484381140436,0.2435327644898325,0.8609369312528817,7.753208728843379,0.0,0.0,0.0,0.0,0.0,0.0,0.6229973151184011,0.0,0.0,0.0,0.0,3.8591382407060806,2.571292719831355,0.5140344585638326,1.5421033756914975,0.0,0.0,0.6229973151184011,0.0,1.7129730293239198,0.0,29.515112112686808,0.0,0.0,0.0,0.0,0.0,0.0,0.6229973151184011,0.0,13.703784234591359,2.932966248615746,18.388209129292818,0.0,0.0,0.0,1.61125,5.402362043409771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.5421033756914975,8.14339699074074,0.0,0.4061950231481481,0.0,-0.19606481481481475,0.0,-0.09639756944444441,-0.18851273148148145,-0.7144502314814816,0.0,0.2857142857142857,8,0,1,0,0,0,0,1,1,1,0,1,2,0,0,0,1,1.69844,4.213874999999999,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +o-Hydroxybenzamide,NC(=O)c1ccccc1O,0,1.1400445956160241,-0.13062499999999996,1.1400445956160241,0.3488170823885115,0.059127122083569586,13.713800000000006,13.008199999999999,13.7047678464,52,0,0.2931306834408045,-0.5071219157350979,0.5071219157350979,0.2931306834408045,0.18,0.26,0.32999999999999996,3.637125670095916,47.60253935187034,1.3325908934703554,1.1763710176427684,0.47637101764276846,0.782347362264446,0.5684530569677622,0.23818550882138417,0.15092767096404144,0.15092767096404144,0.0866958580414904,0.0866958580414904,0.04516188786161758,0.04516188786161758,-0.151,2.293441923803925,0.1985036469518851,0.2389632707443791,1.0748936229840518,6.812956880692468,1.0828525166833487,0.5749511833283905,0.28236841566564014,0.0,7.33837938658414,0.0,0.4794537184071822,0.0,0.0,0.0,1.208483741532659,1.208483741532659,0.0,1.1046485716377874,1.8210063756516317,0.5907179729351506,1.4311996572326342,0.0,5.719716975726273,0.0,0.0,29.733126322350174,0.0,5.749511833283905,0.5719716975726273,0.0,5.749511833283905,0.0,1.2447187577691352,0.0,0.0,1.5841022900449695,24.16967483065318,2.8236841566564013,0.0,0.0,6.332000000000001,4.138981788498558,0.4794537184071822,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,0.9737918038569916,4.964817554799697,0.0,1.1400445956160241,0.3989074074074074,-0.10608541194255483,-0.20094907407407397,-0.28006840513983366,0.0,0.0,0.0,0.0,10,3,3,0,0,0,1,0,1,2,2,3,2,0,0,0,1,0.49110000000000004,3.6624700000000017,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +Atrazine,CCNc1nc(Cl)nc(NC(C)C)n1,0,0.5630540455269409,-0.25511236075117877,0.5630540455269409,0.30436224489795904,0.05727595133090281,15.406285714285724,14.398285714285715,15.363840937714285,78,0,0.22849708692226087,-0.3543182635074518,0.3543182635074518,0.22849708692226087,0.11224489795918367,0.1683673469387755,0.21938775510204084,3.572074415397684,49.939564782636204,1.6077194063934124,1.4724308893220728,0.5264258140376766,0.8696826775863107,0.7192483860717372,0.2537867633581165,0.13488986013897283,0.1590371245597876,0.06801575169895259,0.08008938390935996,0.0413913094858449,0.05219029442896568,-0.07857142857142858,2.4804032802272262,0.180322964027584,0.3535888099156193,3.3341936893355397,7.7216963210888085,0.7585447647554823,0.0,0.20169172547545725,1.2271617772869463,0.0,0.0,0.0,0.0,14.951935562841626,0.0,0.0,2.2969011601513967,1.9709354478955718,0.09791132544073002,1.3766276307642171,1.6784013180146788,0.0,1.0679953973458305,0.0,1.8981120585883346,17.116486390892696,5.283586320044258,0.0,0.0,0.7585447647554823,11.896678561972989,0.0,11.600939890232516,1.9619062653933725,0.0,0.0,2.6431985018521202,0.0,8.10727047670066,0.0,0.0,4.480714285714286,3.589335241897848,0.0,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,14.951935562841626,2.205266194352254,7.412471143550012,0.3995243494223085,0.7178672434582298,-0.10822916666666664,0.0,-0.154586606467984,-0.25511236075117877,0.0,-0.9861409517510709,0.0,0.625,14,2,5,0,0,0,0,1,1,5,2,6,7,0,0,0,1,1.7770999999999997,4.12567142857143,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +RTI 5,CCN2c1ccccc1N(C)C(=O)c3cccnc23 ,0,0.7069161246369892,-0.18884821179933978,0.7069161246369892,0.08500000000000041,0.041250762250018835,13.331842105263163,12.536052631578945,13.32218484736842,96,0,0.261343319649893,-0.32416973676675515,0.32416973676675515,0.261343319649893,0.06925207756232687,0.11357340720221606,0.15512465373961218,2.7262801621860917,64.1964384518545,1.3836847657811218,1.2763099514191443,0.4868362672086178,0.8032973159807557,0.657525185643777,0.2627883435385139,0.18195808144912243,0.18195808144912243,0.12974710791293956,0.12974710791293956,0.08658328164356188,0.08658328164356188,-0.12421052631578947,2.7979146386384794,0.1893046335562751,0.23093471561668094,1.6782012787896072,6.9956752396595965,0.5157799716684713,0.3062033040965804,0.0,0.0,5.907179729351506,0.0,0.2523440623195696,4.9839785209472085,0.0,0.0,0.6360440744908731,1.6327140498920452,1.6111394865670898,1.3965017860134556,1.3345218698223746,1.2157797398186136,0.0,0.2623146589972215,0.0,0.3606259009102989,23.272506046299146,47.99085894849152,0.0,0.0,0.5157799716684713,17.192635327202154,0.0,0.0,1.2823076228893107,0.0,0.0,1.9879610071377791,42.427407456794526,0.0,0.0,0.0,1.917894736842105,4.811329089838897,0.2523440623195696,0.0,9.799819461700956,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.082177807502805,6.280668335438463,0.0,0.8960908222938295,0.0,-0.16679931475514176,-0.14004492879022956,-0.3254536528711549,-0.05152964532141639,-0.5587210896785618,0.0,0.2,19,0,4,0,1,1,1,1,2,3,0,4,3,0,0,0,3,2.829600000000001,4.004868421052633,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +"2,2',3,3',4,4',5,5'-PCB",Clc1cc(c(Cl)c(Cl)c1Cl)c2cc(Cl)c(Cl)c(Cl)c2Cl,0,0.4039252960443437,-0.01292025699168554,0.4039252960443437,0.0032098765432093668,0.01571638727303449,21.4886,21.387800000000006,21.288323575200003,106,0,0.07995712549757195,-0.08263047890614486,0.08263047890614486,0.07995712549757195,0.025,0.04,0.05500000000000001,3.0269140714779517,33.85895474425398,0.8464101615137757,0.5511857892036909,0.7535573676110727,0.5053418012614795,0.2880928946018454,0.3892786838055364,0.1755928946018454,0.32677868380553643,0.11573528892782378,0.2864915810691856,0.06941876404712063,0.15468486356993322,0.03799999999999999,2.499719362818697,0.7179238172975546,0.3239924026590692,2.953511058082786,7.886228407047499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.640375956093005,0.6042418707663295,0.5563451491696996,2.1461291811135528,0.137075855617022,4.640375956093005,0.0,0.0,0.0,0.0,0.0,52.26590392525719,0.0,11.126902983393991,0.0,0.0,0.0,92.80751912186011,0.0,0.0,0.0,0.137075855617022,12.08483741532659,40.18106650993061,11.126902983393991,0.0,0.0,0.0,0.0,0.0,63.39280690865118,0.0,0.0,0.0,0.0,0.0,0.0,4.777451811710027,0.8078505920886873,2.4000202261974746,0.0,-0.037264872204025426,-0.0003209876543209478,0.0,-0.02584051398337108,0.0,0.0,0.0,0.0,20,0,0,0,0,0,2,0,2,0,0,8,1,0,0,0,2,8.580799999999998,4.597900000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +norflurazon,CNc2cnn(c1cccc(c1)C(F)(F)F)c(=O)c2Cl,0,0.6613918730107251,-0.2637504173128159,0.6613918730107251,0.028858654572940345,0.04638198392810641,15.183549999999988,14.729949999999997,15.151931212400012,106,0,0.4159868878382713,-0.38544538577543713,0.4159868878382713,0.38544538577543713,0.0775,0.11499999999999999,0.14750000000000002,2.948798579388798,52.730145467455074,1.131765500573103,0.9130873484500321,0.500883795750955,0.650632450181718,0.461265033775012,0.25780257765047543,0.1662258831040329,0.18512410675449428,0.10314132915172647,0.12017501136067929,0.05966173745900549,0.06789021673451551,-0.101,2.5488778436246866,0.33108510520891826,0.25814545192157934,2.622204679359811,6.452507521215405,0.26549066766441876,0.2511316656870663,0.07059210391641003,0.0,5.559266895052008,6.176298517443475,0.2397268592035911,0.0,22.95172988647068,0.0,0.8821679298947906,0.9063628061494942,0.5544051284396453,1.498245601636499,1.2774577835357208,0.864416308245804,0.0,0.48902423717231114,0.0,0.30881492587217374,12.285640253570621,51.28245892603008,0.0,5.687386274683562,0.5434540124170192,18.858631417708022,0.0,11.600939890232516,0.8378155821864235,0.30881492587217374,0.0,0.8264759970529377,35.137107225539765,6.434475392069527,5.687386274683562,0.0,2.346,3.5507409854525553,0.8982891163548141,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,5.098681808301038,1.1989425208961237,5.3319242093015955,0.2863161390970997,0.6235387613378685,0.0968846634332745,-0.27819992638258995,0.0,-0.2689607500809476,-0.31955762630752493,-0.15805658150988697,0.0,0.16666666666666666,20,1,4,0,0,0,1,1,2,4,1,8,3,0,0,0,2,2.9464000000000006,3.4696350000000002,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2-Butanone,CCC(=O)C,0,2.167097222222222,-0.664236111111111,2.167097222222222,1.8888888888888877,0.09021016100499238,14.421399999999995,12.808600000000002,14.4115029752,30,0,0.1290650325260376,-0.3000423849594125,0.3000423849594125,0.1290650325260376,0.48,0.64,0.6799999999999999,4.981152025564042,41.832873272359166,2.215470053837925,2.081649658092773,0.4816496580927726,1.0809401076758502,0.9908248290463864,0.1908248290463863,0.09082482904638631,0.09082482904638631,0.022706207261596577,0.022706207261596577,0.0,0.0,-0.066,1.8095206296602784,0.09237135038171247,0.3884959128065395,3.67,8.647072694481134,0.9589074368143644,1.1566489892729879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3703784234591359,1.3703784234591359,3.4677986701382273,0.0,3.1521211266867164,1.1566489892729879,0.0,0.0,0.0,4.015341827184147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1566489892729879,0.9589074368143644,0.0,6.2085555170564986,0.0,0.0,0.0,0.0,3.414,5.171990816457136,0.9589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.193213689872352,10.65341203703704,0.0,2.167097222222222,0.0,0.0,-0.37777777777777755,0.0,-0.664236111111111,-1.2951620370370374,0.0,0.75,5,0,1,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0.9854,4.194399999999999,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Fluorobenzene,Fc1ccccc1,0,1.8191534391534392,-0.1724867724867725,1.8191534391534392,0.5774074074074071,0.06597719004163735,13.72914285714285,13.009142857142853,13.71964691142857,36,0,0.12270724034937247,-0.20701252212638083,0.20701252212638083,0.12270724034937247,0.1836734693877551,0.2653061224489796,0.3469387755102041,3.6035674514745475,32.886174967486795,1.3520145164482504,1.1968520675727468,0.48256635328703246,0.7805859450196794,0.5984260337863734,0.24128317664351623,0.1341403195006591,0.1341403195006591,0.06707015975032955,0.06707015975032955,0.033535079875164776,0.033535079875164776,-0.12142857142857144,2.0815718239857546,0.18743116261566262,0.2478524971531965,0.9995769964301435,6.945970146180325,0.0,0.8310315487208422,0.0,0.0,0.0,0.0,0.0,4.39041504767482,0.0,0.0,2.5896080175699834,1.7264053450466557,0.0,0.9791132544073002,1.6063154040751313,0.0,0.0,0.0,0.0,0.0,0.0,36.02931437936237,0.0,0.0,0.0,4.39041504767482,0.0,0.0,0.0,0.0,5.817220841045895,0.9791132544073002,30.212093538316473,0.0,0.0,0.0,0.0,5.147044911337481,0.6272021496678314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9791132544073002,6.808015873015873,0.0,0.0,0.0,0.0,-0.1724867724867725,-0.49267195767195765,0.0,0.0,0.0,0.0,7,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,1.8256999999999999,3.771428571428571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Ipazine,CCN(CC)c1nc(Cl)nc(NC(C)C)n1,0,0.4992279177295918,-0.2400907201711706,0.4992279177295918,0.5126955782312921,0.05370835624708865,15.23387500000001,14.099874999999999,15.195317078499999,90,0,0.2309391561761837,-0.3518666696279305,0.3518666696279305,0.2309391561761837,0.09375,0.140625,0.1796875,3.9839551908805495,52.94197574228142,1.7192544805942358,1.6008770281568137,0.523122587282967,0.914805146975846,0.7872419129533964,0.25166384279772563,0.13899176491066179,0.1601206212788747,0.0762453513811138,0.08680977956522024,0.044214323907536004,0.05366343573276668,-0.06875,2.5492344697536704,0.16622796583549676,0.365063224413525,3.483474762113614,7.912839348691545,0.6381076927586784,0.0,0.08824012989551254,1.073766555126078,0.0,0.0,0.0,0.0,14.951935562841626,0.0,0.0,2.438031772463452,2.558984295981567,0.08567240976063877,1.5446710958263712,1.468601153262844,0.0,0.9344959726776016,0.0,2.0890913085957727,23.203442452770744,5.283586320044258,0.0,0.0,0.6381076927586784,11.896678561972989,0.0,11.600939890232516,2.1227217124889477,0.0,0.0,3.1694039952547812,0.0,6.695428398372459,0.0,0.0,3.3712500000000003,4.613073017020022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.951935562841626,2.2697298389659037,8.522856926335347,0.3548718584656084,0.591085049760645,-0.09888375141723356,0.0,-0.1728664729780801,-0.23444492669753086,0.0,-1.4087992390243138,0.0,0.7,16,1,5,0,0,0,0,1,1,5,1,6,9,0,0,0,1,2.1914999999999996,4.197293750000002,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +m-Chloroiodobenzene,Clc1cccc(I)c1,0,0.9199537037037037,-0.030430246913580178,0.9199537037037037,0.03864197530864155,0.0762166242040234,29.806875,29.302874999999997,29.738078226,42,0,0.06496169145044563,-0.08430510745469268,0.08430510745469268,0.06496169145044563,0.203125,0.296875,0.390625,3.6035674514745475,29.226608155855548,1.1830127018922194,0.9694911182523068,0.8336695229016539,0.6830127018922194,0.4847455591261534,0.41683476145082693,0.1409955591261534,0.32308476145082693,0.07049777956307669,0.16154238072541346,0.03748103263868121,0.12569219883926502,0.029999999999999992,2.0815718239857546,0.36037239950446415,0.336060791015625,1.63398193359375,9.07704868351169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2054198247369765,5.089765843757243,1.0741019481008403,0.6853792780851101,0.6853792780851101,4.273976314662572,0.0,0.0,0.0,0.0,0.0,32.7624904154599,0.0,0.0,0.0,0.0,0.0,34.191810517300574,0.0,0.0,3.5701822710653963,0.6853792780851101,24.16967483065318,5.022633313741326,0.0,0.0,0.0,0.0,0.0,0.0,29.192308144394506,3.5701822710653963,0.0,0.0,22.590870627068057,0.0,0.0,2.1354967643641745,3.6926253086419756,0.918885185185185,0.0,-0.0068981481481481255,0.0,0.0,-0.07572345679012327,0.0,0.0,0.0,0.0,8,0,0,0,0,0,1,0,1,0,0,2,0,0,0,0,1,2.9446000000000003,5.521125000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2,3-Dimethylpyridine",Cc1cccnc1C,0,0.9318894675925926,-0.35623553240740735,0.9318894675925926,0.6906249999999996,0.061423472114704517,13.394499999999994,12.260499999999999,13.384187411,42,0,0.08399055741230749,-0.2613343140404534,0.2613343140404534,0.08399055741230749,0.21875,0.34375,0.4375,3.7135596604498895,55.51603852388138,1.6992322658918346,1.6184016994374948,0.49340169943749473,0.9324038738774454,0.8059016994374948,0.24340169943749473,0.14965169943749476,0.14965169943749476,0.08098877457812106,0.08098877457812106,0.03617574350390395,0.03617574350390395,-0.10625,2.0908396585361104,0.12960484381140436,0.2435327644898325,0.8609369312528817,7.753208728843379,0.0,0.0,0.0,0.0,0.0,0.0,0.6229973151184011,0.0,0.0,0.0,0.7553023384579118,3.1637068042439562,2.5114218178355676,0.5140344585638326,1.5421033756914975,0.0,0.0,0.6229973151184011,0.0,1.7129730293239198,0.0,29.515112112686808,0.0,0.0,0.0,0.0,0.0,0.0,0.6229973151184011,0.0,13.703784234591359,2.949275811509679,18.25773262614135,0.0,0.0,0.0,1.61125,5.40236204340977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.5421033756914975,8.121611689814815,0.0,0.4134866898148148,0.0,-0.19768518518518507,0.0,-0.18399884259259253,-0.0892216435185185,-0.7100260416666666,0.0,0.2857142857142857,8,0,1,0,0,0,0,1,1,1,0,1,2,0,0,0,1,1.69844,4.213874999999999,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +megestrol acetate,CC(=O)OC3(CCC4C2C=C(C)C1=CC(=O)CCC1(C)C2CCC34C)C(C)=O ,0,0.5175223179930084,-0.20689814252420552,0.5175223179930084,2.275790952649043,0.023364107663831225,13.732714285714268,12.58071428571429,13.722502125142887,152,0,0.30314190910215305,-0.4506405377961875,0.4506405377961875,0.30314190910215305,0.044642857142857144,0.07525510204081633,0.10076530612244898,2.7659404621140733,72.30530939343525,1.7231628094826401,1.6297497557805518,0.486892612923409,0.9197361536607961,0.8400221687914163,0.26859359736284494,0.21799835926760683,0.21799835926760683,0.1628298859048968,0.1628298859048968,0.11627243493782749,0.11627243493782749,-0.061071428571428575,3.0957093141812124,0.15986410872965048,0.21934522841513207,2.38729327796658,7.58169844698122,0.16917367692143032,0.0,0.6131264537040559,0.0,0.0,5.969305287951849,0.5137004125791238,0.0,0.0,0.0,0.9046057325248641,2.8675160193867533,2.1343772918974464,0.09791132544073002,2.2494552965522363,0.6262783993100617,0.0,0.0,28.511853994882795,2.789216457337084,0.0,23.25035255220967,0.0,0.0,0.0,0.0,0.0,0.0,0.8263159282737648,0.682874089500554,28.511853994882795,4.155760135425056,23.25035255220967,0.0,0.0,0.0,2.158571428571429,5.264145090471877,0.9053457143420437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.1749359052887598,10.148227749222187,0.0,1.4747672810549415,0.0,-0.7665824675064395,-0.9192770029896609,-0.17733837416148407,-1.135391398071347,-0.8595248351672462,0.0,0.7083333333333334,28,0,4,4,0,4,0,0,0,4,0,4,7,2,0,2,4,4.575300000000004,3.80039285714286,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"5,5-Diisopropylbarbital",O=C1NC(=O)NC(=O)C1(C(C)C)C(C)C,0,0.869361111111111,-0.3182268518518519,0.869361111111111,1.0040277777777793,0.04398669980264292,14.14993333333334,13.07473333333333,14.1410728248,84,0,0.3276324522286933,-0.2768043358742236,0.3276324522286933,0.2768043358742236,0.07555555555555556,0.10222222222222223,0.12444444444444444,4.595059777570795,46.628456060597614,1.692450089729875,1.541278137492767,0.47461147082610033,0.8864956632314059,0.760081787846375,0.23378664177971403,0.17443240749346672,0.17443240749346672,0.11906493327886074,0.11906493327886074,0.0673766064144426,0.0673766064144426,-0.09266666666666666,2.53704427830519,0.16455846382727038,0.2426491270409071,1.5150228923572002,7.413188722558586,0.0,0.360999364626452,0.1882456104437601,0.7876239639135341,0.0,6.031114512338072,1.3472467383146929,4.794537184071822,0.0,0.0,1.8271712312788477,0.7858610247150771,1.2793746524255385,0.0,2.4265276996836636,1.1896982647360723,0.0,0.7079751137717835,17.202905840122938,1.8271712312788477,0.0,0.0,0.0,0.0,0.7079751137717835,4.794537184071822,0.0,0.0,1.1896982647360723,0.6392716245429095,17.202905840122938,3.106545883704389,0.0,2.8236841566564013,0.0,0.0,5.018000000000001,4.871704999128231,0.9589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4676202628692987,8.12918329554044,0.0,2.5278272864701434,-0.13387037037037058,-0.3182268518518519,-0.9813734567901237,-0.14243874401612502,0.0,-1.164434492315445,0.0,0.7,15,2,5,0,1,1,0,0,0,3,2,5,6,0,1,1,1,0.6507999999999994,3.5860266666666685,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +Butabarbital,O=C1NC(=O)NC(=O)C1(CC)C(C)CC,0,0.8633577097505667,-0.3182793209876544,0.8633577097505667,0.9835345804988673,0.04527618146544848,14.14993333333334,13.07473333333333,14.1410728248,84,0,0.32763216162124753,-0.27681353168006506,0.32763216162124753,0.27681353168006506,0.09777777777777777,0.14222222222222222,0.17333333333333334,4.484364897112023,51.529107727552734,1.692450089729875,1.541278137492767,0.47461147082610033,0.8864956632314059,0.760081787846375,0.23378664177971403,0.1660990741601334,0.1660990741601334,0.11489826661219407,0.11489826661219407,0.06233109069807742,0.06233109069807742,-0.09266666666666666,2.5463186140655467,0.16455846382727038,0.26676710970423906,1.619082727033103,7.413188722558586,0.0,0.360999364626452,0.1882456104437601,0.7876239639135341,0.0,6.031114512338072,1.3472467383146929,4.794537184071822,0.0,0.0,1.795240083547761,0.8177921724461638,1.2793746524255385,0.0,2.4265276996836636,1.1896982647360723,0.0,0.7079751137717835,11.308948154759857,2.2201017436363863,0.0,0.0,0.0,0.0,0.7079751137717835,4.794537184071822,0.0,0.0,1.1896982647360723,0.6392716245429095,11.308948154759857,3.499476396061928,0.0,2.8236841566564013,0.0,0.0,5.018000000000001,4.871704999128231,0.9589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4676202628692987,8.113869110607208,0.0,2.5133129645376666,-0.13113794406651563,-0.31350462962962966,-0.6674922839506173,-0.14109237213403886,-0.6046657218442936,-0.8526224568531119,0.0,0.7,15,2,5,0,1,1,0,0,0,3,2,5,6,0,1,1,1,0.7948999999999993,3.590693333333335,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +linalool,CC(C)=CCCC(O)(C)C=C,0,0.7264204545454546,-0.3803872053872055,0.7264204545454546,1.6570125503905262,0.05610263701212077,14.023000000000014,12.373545454545452,14.012342290545455,64,0,0.21130810256100602,-0.38609150256085306,0.38609150256085306,0.21130810256100602,0.19008264462809918,0.2727272727272727,0.32231404958677684,7.4209090615089695,59.47509751778007,2.183318896176823,2.128022571860351,0.49165893549671486,1.1310389503258405,1.0329429486996178,0.2231021950210847,0.14147147434980886,0.14147147434980886,0.05473291569236052,0.05473291569236052,0.019365047104908314,0.019365047104908314,-0.05090909090909091,2.4221864116677367,0.1123268520614864,0.3950239630201583,5.863728813559322,8.619536091488575,0.46443710828247387,0.0,0.0,0.1301090597484213,0.0,0.0,0.0,0.0,0.0,6.531038962001867,1.6070225474673092,3.0274114685950724,1.6199873845648052,1.0076440941513243,2.58288214963645,0.0,1.4311996572326342,0.0,0.0,3.5365979059572257,0.0,24.20828698414227,0.0,0.0,0.0,0.0,0.0,0.0,1.1037326053930487,0.0,0.0,5.145856509949054,24.20828698414227,0.0,0.0,0.0,1.839090909090909,5.7373512681519765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.2485541011023975,12.212050937378319,0.0,0.0,0.3525196694839552,-0.5240543186971758,0.0,-0.3412475949975949,-0.7501262626262629,-1.1612636426624527,0.0,0.6,11,1,1,0,0,0,0,0,0,1,1,1,8,0,0,0,0,2.6698000000000013,4.498709090909093,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Dapsone,Nc1ccc(cc1)S(=O)(=O)c2ccc(N)cc2,0,0.7682520786092214,-0.3028540305010891,0.7682520786092214,0.22353919963046964,0.04656627492241733,14.606294117647064,13.89476470588235,14.591879330823529,88,0,0.2060918054967559,-0.39872772934829437,0.39872772934829437,0.2060918054967559,0.04844290657439446,0.06920415224913495,0.08650519031141869,3.0053144151191873,57.607622052231356,1.3284061040385156,1.1834807095524416,0.5256275672540724,0.7748364803606944,0.5869205647821758,0.33364461569950277,0.16817051021512336,0.27542757823361036,0.10089343656159856,0.18813833347891573,0.056450369611150214,0.11208012073051066,-0.11823529411764705,2.576315777569403,0.22028369036990153,0.24128293071217613,2.236161413591126,6.875620566608241,0.6729078794972086,0.0,0.3321981360772237,0.5786619492010295,0.0,0.0,0.0,8.417796984328938,0.0,0.0,0.0,2.843491156547433,0.6691042676098309,1.2210020823763121,1.4724255145296172,1.2477662168108603,0.0,0.0,0.0,0.5759392324138559,11.439433951452546,48.33934966130636,0.0,0.0,0.6729078794972086,11.374772549367124,0.0,0.0,0.4951645284899375,0.5786619492010295,0.0,0.6450628499624564,58.13031661234191,5.6473683133128025,0.0,0.0,5.069411764705883,4.6671966057721495,0.4951645284899375,0.0,11.439433951452546,0.0,0.0,0.0,0.0,0.0,0.0,0.9772609860396803,6.905281488475401,0.0,-0.1470312569472233,0.0,-0.12347661837921582,0.0,-0.5132921316674817,0.0,0.0,-0.3028540305010891,0.0,17,4,4,0,0,0,2,0,2,4,2,5,4,0,0,0,2,1.6838000000000002,3.9506235294117658,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1-Bromonapthalene,Brc1cccc2ccccc12,0,0.7074242424242424,-0.039980588194873906,0.7074242424242424,0.033449074074073826,0.05623226114894806,18.824545454545458,18.183090909090904,18.72482839309091,54,0,0.0634822091776175,-0.06162840710618613,0.0634822091776175,0.06162840710618613,0.09090909090909091,0.15702479338842976,0.23966942148760328,3.2161246449441516,51.56374976119334,1.2521366083542054,1.1252694975462934,0.6330873647385392,0.7532244381985159,0.5853620215004194,0.3392709550965423,0.17627111240951032,0.24836186418745143,0.11515787976167821,0.16922594359513402,0.07109010165930062,0.10713547754827117,-0.07454545454545455,2.350090679770045,0.2359677749953213,0.24233327983706834,1.1621153719595982,7.619582614368017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.74404146762992,1.528624285144808,0.40661086507567396,0.8723008993810492,0.8723008993810492,2.427490211534449,0.0,0.0,0.0,0.0,0.0,46.76965046947548,0.0,0.0,0.0,0.0,0.0,15.929943897949348,0.0,0.0,0.0,0.8723008993810492,46.76965046947548,0.0,10.772448428929591,0.0,0.0,1.098621583211508,0.0,0.0,45.45726148307848,0.0,0.0,0.0,0.0,0.0,15.929943897949348,0.8723008993810492,4.8897932986325845,0.27915893630179345,0.0,0.0038615319865320315,0.0,0.0,-0.22584406995121273,0.0,0.0,0.0,0.0,11,0,0,0,0,0,2,0,2,0,0,1,0,0,0,0,2,3.6023000000000014,4.695272727272729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1-Nonyne ,CCCCCCCC#C,0,0.8514660493827161,-0.46004661123708757,0.8514660493827161,1.2689265636810279,0.04335543474746451,13.80299999999999,12.010999999999997,13.791688945777777,52,0,0.1238247565210833,-0.12010931578969078,0.1238247565210833,0.12010931578969078,0.1728395061728395,0.271604938271605,0.3580246913580247,6.527118385281662,61.59778078907362,2.323801506930344,2.2777777777777777,0.5,1.1734066857533134,1.1111111111111112,0.2222222222222222,0.09722222222222222,0.09722222222222222,0.041666666666666664,0.041666666666666664,0.017361111111111112,0.017361111111111112,-0.04888888888888889,2.3544400769369576,0.09793192110019287,0.8400000000000003,7.560000000000003,9.015282370838516,0.0,0.1523065062411356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.319835853677588,3.593732413623689,0.7081027668143755,2.9927003604314084,0.0,2.4369040998581686,0.0,0.0,0.0,0.0,5.009937947252439,0.0,0.0,0.0,12.319835853677588,0.0,0.0,0.0,0.0,0.0,0.0,12.319835853677588,7.446842047110612,0.0,0.0,0.0,0.0,0.0,5.009937947252439,0.0,0.0,0.0,0.0,0.0,12.319835853677588,0.0,0.0,0.0,2.4369040998581686,13.149464294462641,0.0,0.0,0.0,0.0,0.1557552148945998,0.0,-2.4757052049214754,-0.41284763776909955,0.0,0.7777777777777778,9,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,2.980100000000002,4.68988888888889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +eucalyptol,CC12CCC(CC1)C(C)(C)O2 ,0,0.7702651515151515,-0.387310606060606,0.7702651515151515,4.039583333333335,0.04736595695208639,14.023000000000014,12.373545454545452,14.012342290545455,64,0,0.06617640341770793,-0.3691300164664661,0.3691300164664661,0.06617640341770793,0.1322314049586777,0.1983471074380165,0.24793388429752064,3.3066235150020677,58.57635777621922,2.1551915255624134,2.128022571860351,0.49165893549671486,1.109736980107868,1.0825680264058057,0.26438620822398756,0.21267586439197822,0.21267586439197822,0.1259373057345299,0.1259373057345299,0.07920580078344132,0.07920580078344132,-0.0036363636363636364,2.3891149837925556,0.11011663404910478,0.18245744905734226,1.0992889094512,8.583189271169816,0.43062390489091357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.721939422051602,2.243059455551269,1.0183728747243068,2.6736833604421824,0.0,0.0,0.0,5.893957685363079,5.204497961742902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0183728747243068,0.43062390489091357,5.893957685363079,6.4291845425698675,0.0,0.0,0.0,0.0,0.8390909090909091,5.740312296775909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6736833604421824,13.389015151515157,0.0,0.0,0.0,-0.766666666666667,-0.387310606060606,0.0,-1.4861742424242435,-1.1125,0.0,1.0,11,0,1,1,2,3,0,0,0,1,0,1,3,1,2,3,3,2.7441000000000013,4.138818181818184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2-Methylphenanthrene,Cc1ccc2c(ccc3ccccc32)c1,0,0.5485474930713026,-0.19274195763696422,0.5485474930713026,0.26287792894935724,0.03104553899328871,12.817400000000005,12.010999999999997,12.8062600256,72,0,0.06320586110328505,-0.06162899271075562,0.06320586110328505,0.06162899271075562,0.05777777777777778,0.11111111111111112,0.17333333333333334,2.820143550725723,76.17682742799526,1.3721935845769841,1.3,0.5,0.8212107260423187,0.6833333333333333,0.2833333333333333,0.2,0.2,0.1375,0.1375,0.09375,0.09375,-0.1213333333333333,2.562759524134355,0.1764492525506516,0.20630822982060862,1.298346533052511,7.067954686625181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.9963479907111097,1.8931192650103241,0.274151711234044,0.822455133702132,1.0966068449361759,1.4363264571906122,0.0,0.0,0.0,0.45679280781971193,0.0,59.94521986066665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.851892117295679,1.467503611049309,54.38176836896965,0.0,21.544896857859182,0.0,0.0,4.453140798530821,0.0,0.0,21.544896857859182,0.0,0.0,0.0,0.0,0.0,0.0,1.0966068449361759,6.343279132898016,0.0,0.0,-0.0824579554043839,-0.04857492791355219,0.0,-0.38061540305422575,0.0,-0.19274195763696422,0.0,0.06666666666666667,15,0,0,0,0,0,3,0,3,0,0,0,1,0,0,0,3,4.301420000000003,4.412733333333335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Diosgenin,C1C(O)CCC2(C)CC3CCC4(C)C5(C)CC6OCC(C)CC6OC5CC4C3C=C21,0,0.34533193578357263,-0.2015410761526834,0.34533193578357263,2.8395690839977465,0.01771168808899146,13.820999999999978,12.409800000000006,13.810446506800039,168,0,0.21046072330367727,-0.3927966863933903,0.3927966863933903,0.21046072330367727,0.04,0.07222222222222222,0.1,2.118969426846915,80.39527919279952,1.9258673627312966,1.8908248290463865,0.4908248290463863,1.025052758015344,0.9809623005541174,0.2840206908719886,0.23325609329252078,0.23325609329252078,0.1712085452172779,0.1712085452172779,0.12112262552494596,0.12112262552494596,-0.012666666666666666,3.2573174746921834,0.13775861347900234,0.21920437374648521,2.669865168589599,8.053997050838893,0.48608446995691035,0.0,0.0,0.04770665524108781,0.0,0.0,0.0,0.0,0.0,0.0,1.301091491509585,3.0587378597403427,1.9526588874033535,1.1305127333663831,2.3594544967228797,0.0,1.4311996572326342,0.0,39.82080214964265,3.636132156298236,6.558985242916289,11.625176276104835,0.0,0.0,0.0,0.0,0.0,0.0,1.2473021733018694,0.3157908635866699,39.82080214964265,4.698833112804199,11.625176276104835,0.0,0.0,0.0,1.2896666666666665,5.569630945253697,0.7767631818297912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.4601043637639346,13.079868649692736,0.0,0.0,0.13321322705738808,-0.6705985007429492,-0.74558854011625,-0.10165879067782777,-2.341863808079555,-0.8505944593557638,0.0,0.9259259259259259,30,1,3,4,2,6,0,0,0,3,1,3,5,3,2,5,6,5.508800000000006,3.933293333333337,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"5,6,7,8-tetrahydro-2-naphthol",Oc2ccc1CCCCc1c2 ,0,0.72059132996633,-0.3066755995327425,0.72059132996633,0.8132534958427813,0.05436670683580329,13.473181818181827,12.373545454545452,13.462619545818182,58,0,0.29309232466607765,-0.507956035151618,0.507956035151618,0.29309232466607765,0.12396694214876032,0.1983471074380165,0.2727272727272727,3.1063858688217625,61.741305190372394,1.6519280360294821,1.5825680264058057,0.49165893549671486,0.9249778316735376,0.8056702214268904,0.26855674047563016,0.17764764956653922,0.17764764956653922,0.11155109751054235,0.11155109751054235,0.0694587776783613,0.0694587776783613,-0.0890909090909091,2.4035479460770888,0.13985483102745241,0.23378827342504707,1.2287392649941784,7.602353675990102,0.46443710828247387,0.5226828939349004,0.0,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,0.549310791605754,4.427585454912554,0.9969153135783418,0.37384324259187823,1.8351956644526937,0.0,1.4311996572326342,0.0,0.0,2.317427236847047,0.0,29.254159106383874,0.0,5.749511833283905,0.0,0.0,5.749511833283905,0.0,0.5945461680308951,1.1587136184235236,0.0,3.541008809447744,18.127256122989884,0.0,0.0,0.0,1.839090909090909,5.499579140453208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,1.5008676159186414,8.444952683725006,0.0,0.0,0.3685456177420463,-0.1650420875420875,-0.07393213598570739,-0.2489531797567511,-1.1892072618188692,0.0,0.0,0.4,11,1,1,1,0,1,1,0,1,1,1,1,1,0,0,0,2,2.271,4.068072727272729,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Methoxychlor,COc1ccc(cc1)C(c2ccc(OC)cc2)C(Cl)(Cl)Cl,0,0.42818275789151644,-0.1517278439153439,0.42818275789151644,1.0125949385978246,0.03373951994713745,16.45966666666665,15.739666666666661,16.38160775047621,112,0,0.20085905887536595,-0.4967682126013862,0.4967682126013862,0.20085905887536595,0.04308390022675737,0.06122448979591837,0.07482993197278912,3.0753203420383146,50.581906489690006,1.349638894888029,1.1881138095216859,0.5818179446671797,0.760464561181948,0.6015925376400746,0.2984446052128214,0.16595864308278235,0.27458875850180886,0.10436769739146587,0.13136515974926785,0.0648855952375644,0.09188305759536634,-0.0519047619047619,2.6919205278343616,0.262908249001727,0.32287214559569233,3.9690873213681592,7.626652972634444,0.4511298051238142,0.547572555550848,0.0,0.18059694931094147,0.0,0.0,0.0,0.0,0.0,0.0,2.8082140238738442,1.6807894197165318,0.06527421696048667,1.8647848756910168,1.430243059531114,1.6572771271760736,0.0,0.0,0.0,0.46126160099489766,14.075904917765177,59.46625264470035,0.0,11.49902366656781,0.4511298051238142,0.0,11.49902366656781,34.802819670697545,0.8508781358711881,0.0,0.0,1.789630429110018,48.33934966130636,0.0,0.0,0.0,0.8790476190476191,4.5108416595202945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,2.636390381583376,5.895371728524128,0.8602657475394624,0.0,0.0,-0.09914624425607982,-0.24816545711513674,-0.42295152350201126,0.0,0.0,-0.30283456865068054,0.25,21,0,2,0,0,0,2,0,2,2,0,5,6,0,0,0,2,5.205900000000002,4.196238095238097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Flutriafol,OC(Cn1cncn1)(c2ccc(F)cc2)c3ccccc3F,0,0.7048295239813097,-0.16795153920153935,0.7048295239813097,0.027704554043839646,0.036603047711008606,13.695272727272716,13.099636363636364,13.686484930727289,112,0,0.21195469277087936,-0.3783120463266,0.3783120463266,0.21195469277087936,0.05578512396694215,0.09090909090909091,0.12190082644628099,2.71677024616709,56.17892754512513,1.2173442900638198,1.0684462737719178,0.4775371828628268,0.730509786410389,0.5481077680661326,0.2568237548632297,0.1770254948855497,0.1770254948855497,0.11559742294245176,0.11559742294245176,0.0730995469752152,0.0730995469752152,-0.11818181818181815,3.156940943735455,0.2522887064260781,0.2568232530178249,2.6031861872552517,6.526315841667404,0.23221855414123693,1.481079683334017,0.0,0.06505452987421065,0.0,0.0,0.0,18.446611551442032,5.098681808301038,0.0,1.373276979014385,1.0768503461221308,0.2528841587134998,0.9183838748190065,1.379033680022704,0.0,1.4311996572326342,0.6711119665633377,0.0,0.5499050225136197,0.0,83.7074377547246,0.0,0.0,0.0,8.78083009534964,0.0,0.0,0.9683850505787853,0.5499050225136197,11.63444168209179,1.253454802610756,60.946093089238815,0.0,0.0,0.0,2.3154545454545454,4.354788556819284,0.19956432034885543,0.19956432034885543,4.681802935145185,0.0,0.0,0.0,0.0,0.0,15.191468520355459,0.812741015057967,6.067314454541637,0.0,0.1480243382425922,0.3578803697404887,-0.29510732323232325,-0.16287614189895938,-0.47535187475663676,-0.09314440464738087,-0.16795153920153935,0.0,0.125,22,1,4,0,0,0,2,1,3,4,1,6,5,0,0,0,3,2.492400000000001,3.4464000000000015,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pyridine,c1ccncc1,0,1.1784567901234568,-0.07006172839506171,1.1784567901234568,0.3972222222222219,0.07552466091404841,13.183666666666662,12.343666666666666,13.17369986,30,0,0.08397776710017825,-0.264736970888988,0.264736970888988,0.08397776710017825,0.19444444444444445,0.3055555555555555,0.4166666666666667,3.4555464838177836,45.194086379598126,1.4323096878557795,1.324535599249993,0.49120226591665966,0.8394302100348646,0.6578689325833263,0.24120226591665964,0.11840169943749473,0.11840169943749473,0.058101132958329825,0.058101132958329825,0.028500708098956138,0.028500708098956138,-0.1416666666666667,1.9718983443825908,0.14348948854214696,0.25876378546517115,0.5490008483363183,7.279317266880425,0.0,0.0,0.0,0.0,0.0,0.0,0.8306630868245347,0.0,0.0,0.0,1.0070697846105492,2.0141395692210984,2.0576317369382537,1.142298796808517,1.142298796808517,0.0,0.0,0.8306630868245347,0.0,0.0,0.0,30.473046544619407,0.0,0.0,0.0,0.0,0.0,0.0,0.8306630868245347,0.0,0.0,1.142298796808517,30.473046544619407,0.0,0.0,0.0,2.1483333333333334,5.0788410907699015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,1.142298796808517,5.850679012345679,0.0,0.5453086419753087,0.0,0.0,0.0,-0.2003086419753086,-0.14012345679012342,0.0,0.0,0.0,6,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,1,1.0816,4.039499999999999,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +"1,1,2,2-Tetrachloroethane",ClC(Cl)C(Cl)Cl,0,1.1104681069958848,-0.3617541152263373,1.1104681069958848,2.170524691358024,0.0878852812624548,27.975000000000005,27.639,27.648510130666665,38,0,0.13734361253139798,-0.10236499019348498,0.13734361253139798,0.10236499019348498,0.16666666666666666,0.19444444444444445,0.19444444444444445,4.020391543176799,11.169925001442314,1.1666666666666667,0.7519763153394848,0.9225956126851211,0.5416666666666666,0.3343214910030758,0.4196311396758939,0.08680360264439502,0.4032679507903279,0.023809523809523805,0.2142857142857143,0.0,0.0,0.19333333333333333,1.253297578463043,0.6800531846725618,0.5332155675540714,3.3537984496124036,9.854533175014748,0.0,1.6041071098172466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.40375956093006,0.0,0.0,0.0,0.45691951872340675,0.45691951872340675,7.733959926821677,0.0,0.0,0.0,1.6041071098172466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.40375956093006,1.6041071098172466,0.0,0.0,0.45691951872340675,0.0,0.0,0.0,0.0,0.0,1.6041071098172466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.190879445545084,2.2209362139917697,3.326646090534979,-0.7235082304526746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,2.5938,5.164666666666666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"1,1-Dichloroethane",CC(Cl)Cl,0,1.6379243827160495,-0.6537422839506172,1.6379243827160495,2.3680555555555554,0.10149572252787546,24.739999999999995,23.732,24.492251372,26,0,0.10458917262570656,-0.10570628923282722,0.10570628923282722,0.10458917262570656,0.5625,0.625,0.625,4.020391543176799,16.75488750216347,1.75,1.4389822365046137,0.8169467095138407,0.8125,0.6569911182523068,0.3459733547569204,0.06510270198329625,0.30245096309274594,0.0,0.0,0.0,0.0,0.145,1.253297578463043,0.25540719571710024,0.4648324022346369,19.145992865636153,10.332651899165192,0.0,1.2030803323629349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.20187978046503,0.0,1.7129730293239198,1.0280689171276651,0.34268963904255506,1.3707585561702202,5.800469945116258,0.0,0.0,0.0,2.9160533616868545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.20187978046503,1.2030803323629349,0.0,0.0,3.0837315854941396,0.0,0.0,0.0,0.0,0.0,2.9160533616868545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.171228501286477,6.486882716049383,2.4394290123456788,-0.5920138888888888,0.0,0.0,0.0,0.0,0.0,-0.6537422839506172,0.0,1.0,4,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,1.81,5.291999999999998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2,4-Dimethyl-3-pentanol",CC(C)C(O)C(C)C,0,0.984375,-0.5390625,0.984375,3.675833333333333,0.07267607723915709,14.525499999999989,12.509499999999997,14.5150143915,50,0,0.21047279161185978,-0.39259643422498974,0.39259643422498974,0.21047279161185978,0.171875,0.234375,0.265625,7.1718964394277505,47.87591055624715,2.5258883476483183,2.488531036307983,0.4885310363079829,1.2575825214724778,1.2015465544619743,0.21301551815399145,0.13489051815399145,0.13489051815399145,0.056765518153991446,0.056765518153991446,0.015625,0.015625,-0.005,2.2946109309646077,0.09143191006325195,0.38494240274234687,2.3141072195146584,9.28616696590218,0.6386010238884016,0.0,0.0,0.17889995715407928,0.0,0.0,0.0,0.0,0.0,0.0,3.4259460586478396,1.4734894213407697,2.3988274732978847,0.931347072890026,3.2087733167075636,0.0,1.4311996572326342,0.0,11.787915370726157,4.185948312016588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5775032344112294,0.0,11.787915370726157,5.996118351467007,0.0,0.0,0.0,0.0,2.52875,5.659437733357357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,2.7490722499732416,14.657708333333328,0.0,0.0,0.4594791666666666,0.0,-1.055729166666667,0.0,-0.5390625,-1.991145833333334,0.0,1.0,8,1,1,0,0,0,0,0,0,1,1,1,7,0,0,0,0,1.6593,4.460349999999999,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +O-Ethyl carbamate,CCOC(=O)N,0,1.740636574074074,-0.5316743827160494,1.740636574074074,0.5520138888888892,0.08250323239115749,14.848999999999995,13.673,14.841279744,36,0,0.40397583424515676,-0.4500081277705684,0.4500081277705684,0.40397583424515676,0.4444444444444444,0.5833333333333334,0.6666666666666666,4.435198622708063,33.06742676583027,1.8103012199276332,1.6272850294046142,0.4606183627379474,0.9295309703265578,0.7467344040742817,0.18099653890762893,0.0783386107333867,0.0783386107333867,0.023056874905568903,0.023056874905568903,0.007275851093785877,0.007275851093785877,-0.12166666666666666,1.8275819057038027,0.1260861206486375,0.4173653395784543,3.2699999999999982,7.6725000081395835,1.7427633215877203,0.0,0.47061402610940023,0.0,0.0,6.093240070938415,0.0,4.794537184071822,0.0,0.0,0.0,1.1419820195492798,0.6853792780851101,1.5500837258761215,3.201479512563228,1.015540011823069,0.0,0.0,5.719716975726273,1.1419820195492798,6.558985242916289,0.0,0.0,0.0,0.9532861626210455,4.794537184071822,0.0,0.0,2.108704218975784,0.7894771589666748,0.0,2.2842808163577963,0.0,2.8236841566564013,0.0,0.0,8.72,4.2039724011461095,0.799089530678637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,1.6129128229179173,8.299753086419752,0.0,1.740636574074074,0.0,-0.09200231481481487,0.0,0.0,-0.2822337962962963,-1.055042438271605,0.0,0.6666666666666666,6,2,3,0,0,0,0,0,0,2,1,3,2,0,0,0,0,0.10160000000000013,3.5349,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +"2-Methyl-1,3-Butadiene ",CC(=C)C=C,0,1.4033564814814814,-0.5576851851851853,1.4033564814814814,0.8680555555555551,0.082102936447801,13.623799999999997,12.011,13.612520051199999,28,0,0.06190242168807648,-0.09882310718358248,0.09882310718358248,0.06190242168807648,0.52,0.72,0.76,5.369075525460887,49.639635298459254,2.1618802153517005,2.1,0.5,1.1350852961085884,1.0,0.2,0.1,0.1,0.025,0.025,0.0,0.0,-0.10400000000000001,1.8176188699962486,0.08233466474037567,0.3534712643678163,3.4800000000000026,8.811915484478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.937450840021714,1.3703784234591359,0.8224551337021321,1.3707585561702202,2.193213689872352,0.0,0.0,0.0,0.0,1.3703784234591359,0.0,24.68725420010857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.563592113331487,24.68725420010857,0.0,0.0,0.0,0.0,6.3078292634808495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.193213689872352,10.908124999999998,0.0,0.0,0.0,-0.17361111111111102,0.0,-0.1805555555555555,0.0,-0.9706250000000001,0.0,0.2,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1.7485,5.0021999999999975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/atomsci/ddm/test/integrative/import_transformer/test_generate_transformers.py b/atomsci/ddm/test/integrative/import_transformer/test_generate_transformers.py new file mode 100644 index 00000000..887a61b5 --- /dev/null +++ b/atomsci/ddm/test/integrative/import_transformer/test_generate_transformers.py @@ -0,0 +1,199 @@ +import atomsci.ddm.utils.generate_transformers as gt +import atomsci.ddm.pipeline.parameter_parser as pp +import atomsci.ddm.pipeline.model_pipeline as mp +import atomsci.ddm.pipeline.transformations as trans +import atomsci.ddm.pipeline.compare_models as cm +import atomsci.ddm.utils.model_file_reader as mfr +from sklearn.preprocessing import PowerTransformer +from sklearn.pipeline import Pipeline + +import os +import shutil +import pandas as pd +import pickle as pkl +import tempfile +import pytest + +def rel_path(filename): + """ + Returns the absolute path to `filename` relative to the location of this file. + """ + return os.path.join(os.path.dirname(os.path.abspath(__file__)), filename) + +def clean(temp_dir, transformers_pkl_path): + if os.path.exists(temp_dir): + shutil.rmtree(temp_dir) + + if os.path.exists(transformers_pkl_path): + os.remove(transformers_pkl_path) + +def test_transformer_generation(): + descriptor_type = 'rdkit_scaled' + temp_root = rel_path('temp') + transformers_pkl_path = rel_path('feature_transformers.pkl') + clean(temp_root, transformers_pkl_path) + assert not os.path.exists(temp_root) + os.makedirs(temp_root, exist_ok=True) + + prepared_H1 = gt.prepare_csv_and_descriptor_with_dummy_response( + rel_path('data/H1_std_short.csv'), + descriptor_type=descriptor_type, + temp_root=temp_root, + split_uuid='test-split' + ) + + assert os.path.exists(temp_root) + assert os.path.exists(os.path.join(temp_root, 'H1_std_short.csv')) + assert os.path.exists(os.path.join(temp_root, 'H1_std_short_train_valid_test_scaffold_test-split.csv')) + assert 'dummy_response' in pd.read_csv(os.path.join(temp_root, 'H1_std_short.csv')).columns + + H1_config = { + 'dataset_key':prepared_H1, + 'previously_split':'True', + 'id_col':'compound_id', + 'smiles_col':'base_rdkit_smiles', + 'response_cols':'dummy_response', + 'split_uuid':'test-split', + 'splitter':'scaffold', + } + + prepared_delaney = gt.prepare_csv_and_descriptor_with_dummy_response( + rel_path('data/delaney-processed_curated_fit_short.csv'), + descriptor_type=descriptor_type, + temp_root=temp_root + ) + + assert os.path.exists(os.path.join(temp_root, 'scaled_descriptors/delaney-processed_curated_fit_short_with_rdkit_scaled_descriptors.csv')) + + delaney_config = { + 'dataset_key': prepared_delaney, + 'id_col':'Compound ID', + 'smiles_col':'smiles', + 'response_cols':'dummy_response', + } + + aurk_config = { + 'dataset_key': rel_path('data/aurka_chembl_base_smiles_union_short.csv'), + 'id_col':'compound_id', + 'smiles_col':'base_rdkit_smiles', + 'response_cols':'pIC50', + } + + transformer_dataset_key_configs = [H1_config, delaney_config, aurk_config] + combined_dataset = gt.load_all_datasets(transformer_dataset_key_configs, + featurizer='computed_descriptors', + descriptor_type=descriptor_type) + + # aurka and delaney should have 200 each. H1 uses only 200 compounds from the training set + # some compounds fail to featurize. There should be less than 600 compouds total + assert len(combined_dataset) < 600 + + # fit transformers + gt.build_and_save_feature_transformers_from_csvs( + transformer_dataset_key_configs, + dest_pkl_path=transformers_pkl_path, + featurizer='computed_descriptors', + descriptor_type=descriptor_type, + feature_transform_type='PowerTransformer', + powertransformer_standardize='False', + ) + + with open(transformers_pkl_path, 'rb') as transformers_pkl_file: + saved_transformers = pkl.load(transformers_pkl_file) + + assert 'transformers_x' in saved_transformers + assert 'params' in saved_transformers + + assert transformer_dataset_key_configs == saved_transformers['params']['transformer_dataset_key_configs'] + assert saved_transformers['params']['featurizer'] == 'computed_descriptors' + assert saved_transformers['params']['descriptor_type'] == descriptor_type + assert saved_transformers['params']['feature_transform_type'] == 'PowerTransformer' + + # test load transformers + # first create a params json this uses a RobustScaler, we will check + # that the PowerTransformer is used instead + params_json = { + "dataset_key" : rel_path('data/H1_std_short.csv'), + "datastore" : "False", + "uncertainty": "False", + "splitter": "scaffold", + "previously_split": "True", + "split_uuid": "test-split", + "prediction_type": "regression", + "response_cols" : "pKi_mean", + "id_col": "compound_id", + "smiles_col" : "base_rdkit_smiles", + "result_dir": temp_root, + "model_type": "RF", + "featurizer": "ecfp", + "descriptor_type": 'rdkit_raw', + "feature_transform_type": "RobustScaler", + "feature_transform_path": transformers_pkl_path, + "save_results": "False", + "verbose": "False", + "seed":"0" + } + + # this one will fail because it has the wrong featurizer + with pytest.raises(ValueError) as excinfo: + bad_params1 = pp.wrapper(params_json) + model_pipeline = mp.ModelPipeline(bad_params1) + model_pipeline.train_model() + assert 'Loaded transformers do not match featurizer.' in str(excinfo.value) + + # This one will fail because it ahas the wrong descriptor type + params_json['featurizer'] = 'computed_descriptors' + with pytest.raises(ValueError) as excinfo: + bad_params2 = pp.wrapper(params_json) + model_pipeline = mp.ModelPipeline(bad_params2) + model_pipeline.train_model() + assert 'Loaded transformers do not match descriptor_type.' in str(excinfo.value) + + # This one will succeed. + params_json['descriptor_type'] = descriptor_type + test_params = pp.wrapper(params_json) + model_pipeline = mp.ModelPipeline(test_params) + model_pipeline.train_model() + + # check that the PowerTransformer was used instead of RobustScaler + assert model_pipeline.params.feature_transform_type == 'PowerTransformer' + transformers_x = model_pipeline.model_wrapper.transformers_x + assert len(transformers_x[0])==1 + assert isinstance(transformers_x[0][0], trans.SklearnPipelineWrapper) + assert isinstance(transformers_x[0][0].sklearn_pipeline, Pipeline) + scaler = transformers_x[0][0].sklearn_pipeline.named_steps['PowerTransformer'] + assert isinstance(scaler, PowerTransformer) + + # check that the saved transformer pkl is a PowerTransformer + # reload the pipeline and see that it was loaded correctly works + results = cm.get_filesystem_perf_results(temp_root, pred_type='regression') + model_path = results['model_path'].values[0] + pred_params = { + 'featurizer': 'computed_descriptors', + 'result_dir': tempfile.mkdtemp(), + 'id_col': 'compound_id', + 'smiles_col':'base_rdkit_smiles' + } + pred_params = pp.wrapper(pred_params) + reloaded_pipeline = mp.create_prediction_pipeline_from_file(pred_params, reload_dir=None, model_path=model_path) + + assert reloaded_pipeline.params.feature_transform_type == 'PowerTransformer' + rl_formers_x = reloaded_pipeline.model_wrapper.transformers_x + scaler = rl_formers_x[0][0].sklearn_pipeline.named_steps['PowerTransformer'] + assert isinstance(scaler, PowerTransformer) + + # check that model metadata shows that this was a PowerTransformer + # check that standardize is set to false + reader = mfr.ModelFileReader(model_path) + assert not reader.get_powertransformer_standardize() + + # check that the dataset_key configs were also saved in the parameters + loaded_trans_dskey_configs = reader.get_transformer_dataset_key_configs() + assert loaded_trans_dskey_configs == transformer_dataset_key_configs + + + # cleanup + clean(temp_root, transformers_pkl_path) + +if __name__ == '__main__': + test_transformer_generation() \ No newline at end of file diff --git a/atomsci/ddm/test/integrative/integrative_batch_chunk_tests b/atomsci/ddm/test/integrative/integrative_batch_chunk_tests index cceb7ba5..18911cad 100755 --- a/atomsci/ddm/test/integrative/integrative_batch_chunk_tests +++ b/atomsci/ddm/test/integrative/integrative_batch_chunk_tests @@ -41,7 +41,7 @@ for folder in "${folders[@]}"; do if [[ -f "$file" && "$folder" != "__pycache__/" ]]; then cd "$folder" echo "Testing $folder" - pytest --capture=sys --capture=fd --cov=atomsci -vv + pytest -m "not moe_required" --capture=fd --cov=atomsci -vv --durations=8 --durations-min=0.05 cd .. else echo "Skipping folder: $folder. Not a test directory." diff --git a/atomsci/ddm/test/integrative/shortlist_test/test_shortlist.py b/atomsci/ddm/test/integrative/shortlist_test/test_shortlist.py index d78c8eb0..17cc8b28 100644 --- a/atomsci/ddm/test/integrative/shortlist_test/test_shortlist.py +++ b/atomsci/ddm/test/integrative/shortlist_test/test_shortlist.py @@ -6,6 +6,7 @@ import os import time import pandas as pd +from contextlib import contextmanager import tempfile import tarfile @@ -16,6 +17,19 @@ from atomsci.ddm.utils import llnl_utils import atomsci.ddm.utils.file_utils as futils + +TEST_DIR = os.path.dirname(os.path.realpath(__file__)) + + +@contextmanager +def _in_test_dir(): + prev_cwd = os.getcwd() + os.chdir(TEST_DIR) + try: + yield + finally: + os.chdir(prev_cwd) + def init_data(): """Copy files necessary for running tests""" if not os.path.exists('data'): @@ -171,42 +185,41 @@ def wait_to_finish(split_json, search_json, max_time=1200): def test(): """Test full model pipeline: Split data, featurize data, fit model, get results""" - # Clean - # ----- - clean() + with _in_test_dir(): + # Clean + # ----- + clean() - # Init Data - # ----- - init_data() + # Init Data + # ----- + init_data() - # Run shortlist hyperparam search - # ------------ - if llnl_utils.is_lc_system(): - result_df = wait_to_finish("test_shortlist_split_config.json", - "test_shortlist_RF-NN-XG_hyperconfig.json", max_time=-1) - assert len(result_df) == 18 # Timed out - else: - assert True + # Run shortlist hyperparam search + # ------------ + if llnl_utils.is_lc_system(): + result_df = wait_to_finish("test_shortlist_split_config.json", + "test_shortlist_RF-NN-XG_hyperconfig.json", max_time=-1) + assert len(result_df) == 18 # Timed out + else: + assert True - # Clean - # ----- - clean() + # Clean + # ----- + clean() def extract_split_uuid(tar_file): """Given a tar file, return split uuid used to train the model.""" + with tempfile.TemporaryDirectory() as tmpdir: + with tarfile.open(tar_file, mode='r:gz') as tar: + futils.safe_extract(tar, path=tmpdir) - tmpdir = tempfile.mkdtemp() - - with tarfile.open(tar_file, mode='r:gz') as tar: - futils.safe_extract(tar, path=tmpdir) - - # make metadata path - metadata_path = os.path.join(tmpdir, 'model_metadata.json') + # make metadata path + metadata_path = os.path.join(tmpdir, 'model_metadata.json') - with open(metadata_path, 'r') as json_file: - json_dat = json.load(json_file) + with open(metadata_path, 'r') as json_file: + json_dat = json.load(json_file) - split_uuid = json_dat['splitting_parameters']['split_uuid'] + split_uuid = json_dat['splitting_parameters']['split_uuid'] return split_uuid diff --git a/atomsci/ddm/test/integrative/wenzel_NN/config_wenzel_fit_NN.json b/atomsci/ddm/test/integrative/wenzel_NN/config_wenzel_fit_NN.json index a1100018..6859fef1 100644 --- a/atomsci/ddm/test/integrative/wenzel_NN/config_wenzel_fit_NN.json +++ b/atomsci/ddm/test/integrative/wenzel_NN/config_wenzel_fit_NN.json @@ -35,6 +35,8 @@ "comment": "Results", "comment": "----------------------------------------", - "result_dir": "result" + "result_dir": "result", + + "seed":0 } diff --git a/atomsci/ddm/test/integrative/wenzel_NN/test_wenzel_NN.py b/atomsci/ddm/test/integrative/wenzel_NN/test_wenzel_NN.py index ff04ecb5..b7975ada 100644 --- a/atomsci/ddm/test/integrative/wenzel_NN/test_wenzel_NN.py +++ b/atomsci/ddm/test/integrative/wenzel_NN/test_wenzel_NN.py @@ -7,6 +7,7 @@ import shutil import sys import tarfile +from contextlib import contextmanager import atomsci.ddm.pipeline.model_pipeline as mp import atomsci.ddm.pipeline.parameter_parser as parse @@ -19,6 +20,19 @@ sys.path.append(os.path.join(os.path.dirname(__file__), '..')) import integrative_utilities + +TEST_DIR = os.path.dirname(os.path.realpath(__file__)) + + +@contextmanager +def _in_test_dir(): + prev_cwd = os.getcwd() + os.chdir(TEST_DIR) + try: + yield + finally: + os.chdir(prev_cwd) + def clean(): """Clean test files""" for f in ['hlm_clearance_curated_predict.csv', @@ -86,78 +100,80 @@ def check_for_data_zip(): def test(): """Test full model pipeline: Curate data, fit model, and predict property for new compounds""" - # Clean - # ----- - integrative_utilities.clean_fit_predict() - clean() - - # Check for data - # -------- - check_for_data_zip() - - # Curate - # ------ - curate() - - # Train model - # ----------- - # Read parameter JSON file - with open('config_wenzel_fit_NN.json') as f: - config = json.loads(f.read()) - - # Parse parameters - params = parse.wrapper(config) - - # Create model pipeline - model = mp.ModelPipeline(params) - - # Train model - model.train_model() - - # Get uuid and reload directory - # ----------------------------- - uuid = integrative_utilities.get_subdirectory('result/hlm_clearance_curated_fit/NN_computed_descriptors_scaffold_regression') - reload_dir = 'result/hlm_clearance_curated_fit/NN_computed_descriptors_scaffold_regression/'+uuid - - # Check training statistics - # ------------------------- - integrative_utilities.training_statistics_file(reload_dir, 'valid', 0.1) - - # Make prediction using the trained model - # ------------------------- - result_df = cm.get_filesystem_perf_results('result', pred_type='regression') - - # There should only be one model trained - # ------------------------- - assert len(result_df) == 1 - model_path = result_df.model_path[0] # this is the path to a tar file - - # Load second test set - # -------------------- - data = pd.read_csv('hlm_clearance_curated_external.csv') - # Make prediction pipeline - # ------------------------ - predict = pfm.predict_from_model_file(model_path, data, - id_col=params.id_col, - smiles_col=params.smiles_col, - response_col=params.response_cols, - is_featurized=False) - - # Check predictions - # ----------------- - assert (predict['VALUE_NUM_mean_pred'].shape[0] == 348), 'Error: Incorrect number of predictions' - assert (np.all(np.isfinite(predict['VALUE_NUM_mean_pred'].values))), 'Error: Predictions are not numbers' - - # Save predictions with experimental values - # ----------------------------------------- - predict.reset_index(level=0, inplace=True) - combined = pd.merge(data, predict, on=params.id_col, how='inner') - combined.to_csv('hlm_clearance_curated_predict.csv') - assert (os.path.isfile('hlm_clearance_curated_predict.csv') - and os.path.getsize('hlm_clearance_curated_predict.csv') > 0), 'Error: Prediction file not created' - - clean() - integrative_utilities.clean_fit_predict() + with _in_test_dir(): + # Clean + # ----- + integrative_utilities.clean_fit_predict() + clean() + + try: + # Check for data + # -------- + check_for_data_zip() + + # Curate + # ------ + curate() + + # Train model + # ----------- + # Read parameter JSON file + with open('config_wenzel_fit_NN.json') as f: + config = json.loads(f.read()) + + # Parse parameters + params = parse.wrapper(config) + + # Create model pipeline + model = mp.ModelPipeline(params) + + # Train model + model.train_model() + + # Get uuid and reload directory + # ----------------------------- + uuid = integrative_utilities.get_subdirectory('result/hlm_clearance_curated_fit/NN_computed_descriptors_scaffold_regression') + reload_dir = 'result/hlm_clearance_curated_fit/NN_computed_descriptors_scaffold_regression/'+uuid + + # Check training statistics + # ------------------------- + integrative_utilities.training_statistics_file(reload_dir, 'valid', 0.1) + + # Make prediction using the trained model + # ------------------------- + result_df = cm.get_filesystem_perf_results('result', pred_type='regression') + + # There should only be one model trained + # ------------------------- + assert len(result_df) == 1 + model_path = result_df.model_path[0] # this is the path to a tar file + + # Load second test set + # -------------------- + data = pd.read_csv('hlm_clearance_curated_external.csv') + # Make prediction pipeline + # ------------------------ + predict = pfm.predict_from_model_file(model_path, data, + id_col=params.id_col, + smiles_col=params.smiles_col, + response_col=params.response_cols, + is_featurized=False) + + # Check predictions + # ----------------- + assert (predict['VALUE_NUM_mean_pred'].shape[0] == 348), 'Error: Incorrect number of predictions' + assert (np.all(np.isfinite(predict['VALUE_NUM_mean_pred'].values))), 'Error: Predictions are not numbers' + + # Save predictions with experimental values + # ----------------------------------------- + predict.reset_index(level=0, inplace=True) + combined = pd.merge(data, predict, on=params.id_col, how='inner') + combined.to_csv('hlm_clearance_curated_predict.csv') + assert (os.path.isfile('hlm_clearance_curated_predict.csv') + and os.path.getsize('hlm_clearance_curated_predict.csv') > 0), 'Error: Prediction file not created' + finally: + clean() + integrative_utilities.clean_fit_predict() if __name__ == '__main__': test() diff --git a/atomsci/ddm/test/test_datasets/Molport_test.csv b/atomsci/ddm/test/test_datasets/Molport_test.csv new file mode 100644 index 00000000..d91d501c --- /dev/null +++ b/atomsci/ddm/test/test_datasets/Molport_test.csv @@ -0,0 +1,101 @@ +compound_id,SMILES,base_rdkit_smiles,dummy_response +MolPort-008-351-270,O=CN1CCN(C(=O)Cn2ccc3ccc(Br)cc32)CC1,O=CN1CCN(C(=O)Cn2ccc3ccc(Br)cc32)CC1,0 +MolPort-008-351-272,O=C(Nc1ccc(O)cc1)C1CC(=O)N(Cc2ccc(Cl)cc2)C1,O=C(Nc1ccc(O)cc1)C1CC(=O)N(Cc2ccc(Cl)cc2)C1,0 +MolPort-008-351-275,O=C(C1c2ccccc2C(=O)N(Cc2ccccc2)C12CCCC2)N1CCCC1,O=C(C1c2ccccc2C(=O)N(Cc2ccccc2)C12CCCC2)N1CCCC1,0 +MolPort-008-351-276,COc1ccccc1NC(=O)c1nnn2c1[nH]c(=O)c1cc(Cl)ccc12,COc1ccccc1NC(=O)c1nnn2c1[nH]c(=O)c1cc(Cl)ccc12,0 +MolPort-008-351-277,COc1ccc(NC(=O)C2CC(=O)N(c3ccc(OC)cc3OC)C2)c(OC)c1,COc1ccc(NC(=O)C2CC(=O)N(c3ccc(OC)cc3OC)C2)c(OC)c1,0 +MolPort-008-351-280,COc1ccc(N2CC(C(=O)Nc3ccc4oc(=O)ccc4c3)CC2=O)c(OC)c1,COc1ccc(N2CC(C(=O)Nc3ccc4oc(=O)ccc4c3)CC2=O)c(OC)c1,0 +MolPort-008-351-281,O=c1c(-c2nc(-c3ccc(F)cc3)no2)c[nH]c2ccccc12,O=c1c(-c2nc(-c3ccc(F)cc3)no2)c[nH]c2ccccc12,0 +MolPort-008-351-282,O=C1CC(C(=O)Nc2ccc(Cl)cc2)n2nc(-c3ccccc3)cc2N1,O=C1CC(C(=O)Nc2ccc(Cl)cc2)n2nc(-c3ccccc3)cc2N1,0 +MolPort-008-351-283,COc1ccc(NC(=O)CCC(=O)N2CCc3[nH]c4ccc(F)cc4c3C2)cc1OC,COc1ccc(NC(=O)CCC(=O)N2CCc3[nH]c4ccc(F)cc4c3C2)cc1OC,0 +MolPort-008-351-285,COC(=O)c1nnsc1NC(=O)Cc1c(C)c2ccc(OC)cc2oc1=O,COC(=O)c1nnsc1NC(=O)Cc1c(C)c2ccc(OC)cc2oc1=O,0 +MolPort-008-351-286,O=C1Nc2ccccc2CCC1Sc1nc2ccccc2c(=O)[nH]1,O=C1Nc2ccccc2CCC1Sc1nc2ccccc2c(=O)[nH]1,0 +MolPort-008-351-288,Cc1nn(-c2ncccn2)c2c1C(c1ccc(F)cc1Cl)SCC(=O)N2,Cc1nn(-c2ncccn2)c2c1C(c1ccc(F)cc1Cl)SCC(=O)N2,0 +MolPort-008-351-290,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)Nc2ccc(C(C)(C)C)cc2)C1,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)Nc2ccc(C(C)(C)C)cc2)C1,0 +MolPort-008-351-291,O=C(Nc1nc2ccccc2s1)[C@@H](c1ccccc1)n1cnnn1,O=C(Nc1nc2ccccc2s1)[C@@H](c1ccccc1)n1cnnn1,0 +MolPort-008-351-292,COc1ccc(C2CC(=O)Nc3c2c(C)nn3-c2ccc(OC)nn2)c(OC)c1,COc1ccc(C2CC(=O)Nc3c2c(C)nn3-c2ccc(OC)nn2)c(OC)c1,0 +MolPort-008-351-293,Cc1ccc(NC(=O)c2sc3c(c2C)C(c2ccsc2)CC(=O)N3)cc1,Cc1ccc(NC(=O)c2sc3c(c2C)C(c2ccsc2)CC(=O)N3)cc1,0 +MolPort-008-351-294,O=C(CC[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCCC(c1ccccc1)c1ccccc1,O=C(CC[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCCC(c1ccccc1)c1ccccc1,0 +MolPort-008-351-295,O=C(CCCCCn1c(=O)[nH]c2ccccc2c1=O)N1CCc2ccccc2C1,O=C(CCCCCn1c(=O)[nH]c2ccccc2c1=O)N1CCc2ccccc2C1,0 +MolPort-008-351-296,NC(=O)C1CCN(C(=O)[C@H]2CC[C@H](Cn3c(=O)[nH]c4ccccc4c3=O)CC2)CC1,NC(=O)C1CCN(C(=O)[C@H]2CC[C@H](Cn3c(=O)[nH]c4ccccc4c3=O)CC2)CC1,0 +MolPort-008-351-297,CC(C)CN1C(=O)C2(CC(=O)Nc3c2cnn3-c2ccc(F)cc2)c2ccc(F)cc21,CC(C)CN1C(=O)C2(CC(=O)Nc3c2cnn3-c2ccc(F)cc2)c2ccc(F)cc21,0 +MolPort-008-351-298,COc1ccccc1C1CC(=O)Nc2sc(C(=O)Nc3ccccc3F)c(C)c21,COc1ccccc1C1CC(=O)Nc2sc(C(=O)Nc3ccccc3F)c(C)c21,0 +MolPort-008-351-299,COCCCN1C(=O)c2ccc(C(=O)Nc3nnc(C)s3)cc2C1=O,COCCCN1C(=O)c2ccc(C(=O)Nc3nnc(C)s3)cc2C1=O,0 +MolPort-008-351-301,O=C1CC2(C(=O)Nc3c(Cl)cccc32)c2cnn(-c3ccc(C(F)(F)F)cc3)c2N1,O=C1CC2(C(=O)Nc3c(Cl)cccc32)c2cnn(-c3ccc(C(F)(F)F)cc3)c2N1,0 +MolPort-008-351-302,CC(C)(C)c1cc(-c2nn3c(-c4ccccc4Cl)nnc3s2)[nH]n1,CC(C)(C)c1cc(-c2nn3c(-c4ccccc4Cl)nnc3s2)[nH]n1,0 +MolPort-008-351-305,CC(C)(C)n1ncc2c1NC(=O)CC21C(=O)N(Cc2ccccc2)c2ccccc21,CC(C)(C)n1ncc2c1NC(=O)CC21C(=O)N(Cc2ccccc2)c2ccccc21,0 +MolPort-008-351-306,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)Nc2ccc(C(F)(F)F)cc2)C1,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)Nc2ccc(C(F)(F)F)cc2)C1,0 +MolPort-008-351-307,O=C1CC2(C(=O)Nc3ccc(Br)cc32)c2sc(C(=O)O)c(-c3ccccc3)c2N1,O=C1CC2(C(=O)Nc3ccc(Br)cc32)c2sc(C(=O)O)c(-c3ccccc3)c2N1,0 +MolPort-008-351-308,O=C(CCCCCn1c(=O)[nH]c2ccccc2c1=O)NCc1ccccn1,O=C(CCCCCn1c(=O)[nH]c2ccccc2c1=O)NCc1ccccn1,0 +MolPort-008-351-309,Cc1c(-c2ccccc2)nn2c1NC(=O)CC2C(=O)Nc1ccccc1Cl,Cc1c(-c2ccccc2)nn2c1NC(=O)CC2C(=O)Nc1ccccc1Cl,0 +MolPort-008-351-311,COc1ccccc1CN1CC(C(=O)Nc2nc(C)cs2)CC1=O,COc1ccccc1CN1CC(C(=O)Nc2nc(C)cs2)CC1=O,0 +MolPort-008-351-312,Nc1nc(N2CCN(Cc3ccccc3Cl)CC2)c2nc[nH]c2n1,Nc1nc(N2CCN(Cc3ccccc3Cl)CC2)c2nc[nH]c2n1,0 +MolPort-008-351-313,O=C(CC[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NC1CCN(Cc2ccccc2)CC1,O=C(CC[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NC1CCN(Cc2ccccc2)CC1,0 +MolPort-008-351-314,CCCc1cc(=O)oc2cc(OCC(=O)Nc3nnc(COC)s3)c(Cl)cc12,CCCc1cc(=O)oc2cc(OCC(=O)Nc3nnc(COC)s3)c(Cl)cc12,0 +MolPort-008-351-315,CN1C(=O)C2(CC(=O)Nc3[nH]ncc32)c2cc(Cl)ccc21,CN1C(=O)C2(CC(=O)Nc3[nH]ncc32)c2cc(Cl)ccc21,0 +MolPort-008-351-316,CCOC(=O)Cc1csc(NC(=O)c2snnc2C)n1,CCOC(=O)Cc1csc(NC(=O)c2snnc2C)n1,0 +MolPort-008-351-317,COc1cc(C2SCC(=O)Nc3c2c(C)nn3-c2ncccn2)cc(OC)c1OC,COc1cc(C2SCC(=O)Nc3c2c(C)nn3-c2ncccn2)cc(OC)c1OC,0 +MolPort-008-351-318,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2ccc(OC)cc2)c2cccc(C)c21,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2ccc(OC)cc2)c2cccc(C)c21,0 +MolPort-008-351-319,CN(Cc1ccccc1)C(=O)CCCCCn1c(=O)[nH]c2ccccc2c1=O,CN(Cc1ccccc1)C(=O)CCCCCn1c(=O)[nH]c2ccccc2c1=O,0 +MolPort-008-351-320,Cc1csc(NC(=O)c2ccc3c(c2)C(=O)N(CCc2ccccc2)C3=O)n1,Cc1csc(NC(=O)c2ccc3c(c2)C(=O)N(CCc2ccccc2)C3=O)n1,0 +MolPort-008-351-321,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2nc3ccccc3s2)c2cc(C)ccc21,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2nc3ccccc3s2)c2cc(C)ccc21,0 +MolPort-008-351-322,O=c1[nH]c2ccccc2c(=O)n1C[C@H]1CC[C@H](C(=O)N2CCSCC2)CC1,O=c1[nH]c2ccccc2c(=O)n1C[C@H]1CC[C@H](C(=O)N2CCSCC2)CC1,0 +MolPort-008-351-323,O=C(C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCCc1c[nH]cn1,O=C(C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCCc1c[nH]cn1,0 +MolPort-008-351-325,Cc1nnc(NC(=O)C2CC(=O)N(Cc3ccc(Cl)cc3)C2)s1,Cc1nnc(NC(=O)C2CC(=O)N(Cc3ccc(Cl)cc3)C2)s1,0 +MolPort-008-351-326,O=C(Cn1ccc2c(Cl)cccc21)Nc1nnc(C2CC2)s1,O=C(Cn1ccc2c(Cl)cccc21)Nc1nnc(C2CC2)s1,0 +MolPort-008-351-327,COCc1nnc(NC(=O)c2ccc3nc(-n4cccc4)sc3c2)s1,COCc1nnc(NC(=O)c2ccc3nc(-n4cccc4)sc3c2)s1,0 +MolPort-008-351-328,Cc1ccc(N2CCN(C(=O)CC[C@@H]3NC(=O)c4ccccc4NC3=O)CC2)c(C)c1,Cc1ccc(N2CCN(C(=O)CC[C@@H]3NC(=O)c4ccccc4NC3=O)CC2)c(C)c1,0 +MolPort-008-351-329,Cc1cc(C)nc(N2CCN(c3ncnc4[nH]cnc34)CC2)n1,Cc1cc(C)nc(N2CCN(c3ncnc4[nH]cnc34)CC2)n1,0 +MolPort-008-351-330,CCOC(=O)Cc1csc(NC(=O)Cn2ccc3ccc(Cl)cc32)n1,CCOC(=O)Cc1csc(NC(=O)Cn2ccc3ccc(Cl)cc32)n1,0 +MolPort-008-351-331,c1ccc2c(c1)CCCN2c1ncnc2[nH]ncc12,c1ccc2c(c1)CCCN2c1ncnc2[nH]ncc12,0 +MolPort-008-351-334,O=C(CC[C@@H]1NC(=O)c2ccccc2NC1=O)Nc1cc(F)c(F)c(F)c1,O=C(CC[C@@H]1NC(=O)c2ccccc2NC1=O)Nc1cc(F)c(F)c(F)c1,0 +MolPort-008-351-335,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2ccc(SC)cc2)nn1,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2ccc(SC)cc2)nn1,0 +MolPort-008-351-336,COc1cccc(C2CC(=O)Nc3c2c(C)nn3-c2ccc(Cl)nn2)c1OCC(C)C,COc1cccc(C2CC(=O)Nc3c2c(C)nn3-c2ccc(Cl)nn2)c1OCC(C)C,0 +MolPort-008-351-338,C#CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2nc3ccccc3s2)c2cc(C)ccc21,C#CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2nc3ccccc3s2)c2cc(C)ccc21,0 +MolPort-008-351-339,COCCN1C(=O)c2ccccc2C(C(=O)Nc2cc(Cl)ccc2O)C12CCCC2,COCCN1C(=O)c2ccccc2C(C(=O)Nc2cc(Cl)ccc2O)C12CCCC2,0 +MolPort-008-351-340,Cc1ccc(Cn2ncc3c2NC(=O)CC32C(=O)Nc3c(Cl)cccc32)cc1,Cc1ccc(Cn2ncc3c2NC(=O)CC32C(=O)Nc3c(Cl)cccc32)cc1,0 +MolPort-008-351-341,CC(C)CCN1C(=O)c2ccc(C(=O)Nc3nnc(C(C)C)s3)cc2C1=O,CC(C)CCN1C(=O)c2ccc(C(=O)Nc3nnc(C(C)C)s3)cc2C1=O,0 +MolPort-008-351-342,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2ccccc2C(F)(F)F)nn1,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2ccccc2C(F)(F)F)nn1,0 +MolPort-008-351-343,C[C@H](NC(=O)C1CC(=O)N(c2ccccc2)C1)C(=O)Nc1nc2ccccc2[nH]1,C[C@H](NC(=O)C1CC(=O)N(c2ccccc2)C1)C(=O)Nc1nc2ccccc2[nH]1,0 +MolPort-008-351-344,COc1ccccc1CN1CC(C(=O)Nc2nnc(Cc3ccccc3)s2)CC1=O,COc1ccccc1CN1CC(C(=O)Nc2nnc(Cc3ccccc3)s2)CC1=O,0 +MolPort-008-351-346,COc1cccc(N2CC(C(=O)Nc3nnc(C(C)C)s3)CC2=O)c1,COc1cccc(N2CC(C(=O)Nc3nnc(C(C)C)s3)CC2=O)c1,0 +MolPort-008-351-347,COCc1nnc(NC(=O)C2CC(=O)N(Cc3ccc(Cl)cc3)C2)s1,COCc1nnc(NC(=O)C2CC(=O)N(Cc3ccc(Cl)cc3)C2)s1,0 +MolPort-008-351-348,CN1C(=O)C2(CC(=O)Nc3c2sc(C(=O)O)c3-c2ccccc2)c2ccccc21,CN1C(=O)C2(CC(=O)Nc3c2sc(C(=O)O)c3-c2ccccc2)c2ccccc21,0 +MolPort-008-351-349,O=C1CN(C(=O)c2ccc3nc(NS(=O)(=O)c4ccc(F)cc4)sc3c2)CCN1,O=C1CN(C(=O)c2ccc3nc(NS(=O)(=O)c4ccc(F)cc4)sc3c2)CCN1,0 +MolPort-008-351-350,COc1ccc(-c2cc3n(n2)C(C(=O)Nc2cccc(C(F)(F)F)c2)CC(=O)N3)cc1,COc1ccc(-c2cc3n(n2)C(C(=O)Nc2cccc(C(F)(F)F)c2)CC(=O)N3)cc1,0 +MolPort-008-351-351,CN(C)CCNC(=O)C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O,CN(C)CCNC(=O)C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O,0 +MolPort-008-351-352,O=C(CC[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCCCN1CCCC1=O,O=C(CC[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCCCN1CCCC1=O,0 +MolPort-008-351-353,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2cccc(OC)c2OC)nn1,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2cccc(OC)c2OC)nn1,0 +MolPort-008-351-354,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2ccccc2OCC(C)C)nn1,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2ccccc2OCC(C)C)nn1,0 +MolPort-008-351-355,CC(=O)c1cccc(NC(=O)CC[C@@H]2NC(=O)c3ccccc3NC2=O)c1,CC(=O)c1cccc(NC(=O)CC[C@@H]2NC(=O)c3ccccc3NC2=O)c1,0 +MolPort-008-351-356,COC(=O)CCNC(=O)N1CCc2nc[nH]c2C1c1ccc(Cl)cc1F,COC(=O)CCNC(=O)N1CCc2nc[nH]c2C1c1ccc(Cl)cc1F,0 +MolPort-008-351-357,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2nc3ccccc3s2)c2cccc(C)c21,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2nc3ccccc3s2)c2cccc(C)c21,0 +MolPort-008-351-358,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2ccc(C)c(C)c2)c2cccc(Cl)c21,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2ccc(C)c(C)c2)c2cccc(Cl)c21,0 +MolPort-008-351-359,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)Nc2cccc3ccccc23)C1,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)Nc2cccc3ccccc23)C1,0 +MolPort-008-351-360,Cc1cccc(NC(=O)CCCCCn2c(=O)[nH]c3ccccc3c2=O)n1,Cc1cccc(NC(=O)CCCCCn2c(=O)[nH]c3ccccc3c2=O)n1,0 +MolPort-008-351-361,COC(=O)C[C@H](NC(=O)N1CCc2nc[nH]c2C1c1cccc(Cl)c1Cl)C(=O)OC,COC(=O)C[C@H](NC(=O)N1CCc2nc[nH]c2C1c1cccc(Cl)c1Cl)C(=O)OC,0 +MolPort-008-351-363,O=C1Nc2ccccc2CCC1Sc1nnc(-c2ccncc2)n1Cc1ccccc1,O=C1Nc2ccccc2CCC1Sc1nnc(-c2ccncc2)n1Cc1ccccc1,0 +MolPort-008-351-364,COc1ccc(Cc2nnc(NC(=O)c3cc(=O)[nH]c4ccccc34)s2)cc1,COc1ccc(Cc2nnc(NC(=O)c3cc(=O)[nH]c4ccccc34)s2)cc1,0 +MolPort-008-351-365,O=C(CC[C@@H]1NC(=O)c2ccccc2NC1=O)Nc1ccc(F)cc1,O=C(CC[C@@H]1NC(=O)c2ccccc2NC1=O)Nc1ccc(F)cc1,0 +MolPort-008-351-367,O/N=C/c1ccc2[nH]ccc2c1,O/N=C/c1ccc2[nH]ccc2c1,0 +MolPort-008-351-368,Cc1nnc(NC(=O)c2ccc3nc(NS(C)(=O)=O)sc3c2)s1,Cc1nnc(NC(=O)c2ccc3nc(NS(C)(=O)=O)sc3c2)s1,0 +MolPort-008-351-369,COCc1nnc(NC(=O)Cc2c(C)c3ccc(OC)cc3oc2=O)s1,COCc1nnc(NC(=O)Cc2c(C)c3ccc(OC)cc3oc2=O)s1,0 +MolPort-008-351-370,CC(C)c1nnc(NC(=O)Cn2ccc3c(Cl)cccc32)s1,CC(C)c1nnc(NC(=O)Cn2ccc3c(Cl)cccc32)s1,0 +MolPort-008-351-371,C#CCOc1ccc(C2CC(=O)Nc3c2c(C)nn3-c2ccc(=O)[nH]n2)cc1OCC,C#CCOc1ccc(C2CC(=O)Nc3c2c(C)nn3-c2ccc(=O)[nH]n2)cc1OCC,0 +MolPort-008-351-372,CCCOc1c(OC)cccc1C1CC(=O)Nc2c1c(C)nn2-c1ccc(Cl)nn1,CCCOc1c(OC)cccc1C1CC(=O)Nc2c1c(C)nn2-c1ccc(Cl)nn1,0 +MolPort-008-351-373,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)NCCc2ccc(Cl)cc2Cl)C1,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)NCCc2ccc(Cl)cc2Cl)C1,0 +MolPort-008-351-374,COC(=O)CCNC(=O)N1CCc2nc[nH]c2C1c1ccc(F)c(F)c1F,COC(=O)CCNC(=O)N1CCc2nc[nH]c2C1c1ccc(F)c(F)c1F,0 +MolPort-008-351-375,CC(=O)Nc1cccc(NC(=O)C[C@@H]2NC(=O)N(Cc3ccc4c(c3)OCO4)C2=O)c1,CC(=O)Nc1cccc(NC(=O)C[C@@H]2NC(=O)N(Cc3ccc4c(c3)OCO4)C2=O)c1,0 +MolPort-008-351-376,Cc1nn(-c2ccc(=O)[nH]n2)c2c1C(c1ccc(C(F)(F)F)cc1)CC(=O)N2,Cc1nn(-c2ccc(=O)[nH]n2)c2c1C(c1ccc(C(F)(F)F)cc1)CC(=O)N2,0 +MolPort-008-351-377,O=C(C[C@@H]1NC(=O)c2ccccc2NC1=O)Nc1cccc(Br)c1,O=C(C[C@@H]1NC(=O)c2ccccc2NC1=O)Nc1cccc(Br)c1,0 +MolPort-008-351-378,COC(=O)CCCNC(=O)N1CCc2nc[nH]c2C1c1cc(F)ccc1F,COC(=O)CCCNC(=O)N1CCc2nc[nH]c2C1c1cc(F)ccc1F,0 +MolPort-008-351-379,COc1ccc(Cc2nnc(NC(=O)C3CC(=O)N(c4ccc(F)cc4)C3)s2)cc1,COc1ccc(Cc2nnc(NC(=O)C3CC(=O)N(c4ccc(F)cc4)C3)s2)cc1,0 +MolPort-008-351-380,Cc1nn(-c2ncccn2)c2c1C(c1cccc(F)c1)CC(=O)N2,Cc1nn(-c2ncccn2)c2c1C(c1cccc(F)c1)CC(=O)N2,0 +MolPort-008-351-381,CC(C)c1nnc(NC(=O)C2CC(=O)N(c3ccccc3F)C2)s1,CC(C)c1nnc(NC(=O)C2CC(=O)N(c3ccccc3F)C2)s1,0 +MolPort-008-351-382,CN1CCN(C2(CNC(=O)C[C@@H]3NC(=O)N(Cc4ccc5c(c4)OCO5)C3=O)CCCCC2)CC1,CN1CCN(C2(CNC(=O)C[C@@H]3NC(=O)N(Cc4ccc5c(c4)OCO5)C3=O)CCCCC2)CC1,0 +MolPort-008-351-383,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)NCc2ccccc2)C1,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)NCc2ccccc2)C1,0 +MolPort-008-351-384,COc1ccc(-c2nn3c(c2C)NC(=O)CC3C(=O)Nc2cccc(Cl)c2)cc1,COc1ccc(-c2nn3c(c2C)NC(=O)CC3C(=O)Nc2cccc(Cl)c2)cc1,0 +MolPort-008-351-385,O=C(C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)Nc1cccc(O)c1,O=C(C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)Nc1cccc(O)c1,0 +MolPort-008-351-386,O=C(C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCc1ccc(Cl)cc1Cl,O=C(C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCc1ccc(Cl)cc1Cl,0 +MolPort-008-351-387,CN1C(=O)C2(CC(=O)Nc3c2sc(C(=O)O)c3-c2ccccc2)c2cc(Cl)ccc21,CN1C(=O)C2(CC(=O)Nc3c2sc(C(=O)O)c3-c2ccccc2)c2cc(Cl)ccc21,0 +MolPort-009-019-503,[Na]S,[Na]S,0 \ No newline at end of file diff --git a/atomsci/ddm/test/test_datasets/Molport_test_train_valid_test_random_e28e63fb-4d30-4cef-b303-7f0622f64688.csv b/atomsci/ddm/test/test_datasets/Molport_test_train_valid_test_random_e28e63fb-4d30-4cef-b303-7f0622f64688.csv new file mode 100644 index 00000000..e1a1a456 --- /dev/null +++ b/atomsci/ddm/test/test_datasets/Molport_test_train_valid_test_random_e28e63fb-4d30-4cef-b303-7f0622f64688.csv @@ -0,0 +1,101 @@ +cmpd_id,subset,fold +MolPort-008-351-270,train,0 +MolPort-008-351-272,train,0 +MolPort-008-351-275,train,0 +MolPort-008-351-276,train,0 +MolPort-008-351-280,train,0 +MolPort-008-351-283,train,0 +MolPort-008-351-285,train,0 +MolPort-008-351-286,train,0 +MolPort-008-351-288,train,0 +MolPort-008-351-291,train,0 +MolPort-008-351-292,train,0 +MolPort-008-351-293,train,0 +MolPort-008-351-294,train,0 +MolPort-008-351-295,train,0 +MolPort-008-351-296,train,0 +MolPort-008-351-297,train,0 +MolPort-008-351-298,train,0 +MolPort-008-351-299,train,0 +MolPort-008-351-301,train,0 +MolPort-008-351-305,train,0 +MolPort-008-351-311,train,0 +MolPort-008-351-313,train,0 +MolPort-008-351-316,train,0 +MolPort-008-351-317,train,0 +MolPort-008-351-318,train,0 +MolPort-008-351-319,train,0 +MolPort-008-351-320,train,0 +MolPort-008-351-321,train,0 +MolPort-008-351-323,train,0 +MolPort-008-351-325,train,0 +MolPort-008-351-326,train,0 +MolPort-008-351-327,train,0 +MolPort-008-351-328,train,0 +MolPort-008-351-329,train,0 +MolPort-008-351-330,train,0 +MolPort-008-351-334,train,0 +MolPort-008-351-335,train,0 +MolPort-008-351-336,train,0 +MolPort-008-351-339,train,0 +MolPort-008-351-341,train,0 +MolPort-008-351-342,train,0 +MolPort-008-351-343,train,0 +MolPort-008-351-344,train,0 +MolPort-008-351-346,train,0 +MolPort-008-351-347,train,0 +MolPort-008-351-348,train,0 +MolPort-008-351-349,train,0 +MolPort-008-351-350,train,0 +MolPort-008-351-352,train,0 +MolPort-008-351-353,train,0 +MolPort-008-351-354,train,0 +MolPort-008-351-356,train,0 +MolPort-008-351-358,train,0 +MolPort-008-351-361,train,0 +MolPort-008-351-363,train,0 +MolPort-008-351-364,train,0 +MolPort-008-351-365,train,0 +MolPort-008-351-367,train,0 +MolPort-008-351-370,train,0 +MolPort-008-351-372,train,0 +MolPort-008-351-374,train,0 +MolPort-008-351-375,train,0 +MolPort-008-351-376,train,0 +MolPort-008-351-381,train,0 +MolPort-008-351-382,train,0 +MolPort-008-351-383,train,0 +MolPort-008-351-384,train,0 +MolPort-008-351-385,train,0 +MolPort-008-351-386,train,0 +MolPort-008-351-306,valid,0 +MolPort-008-351-307,valid,0 +MolPort-008-351-308,valid,0 +MolPort-008-351-309,valid,0 +MolPort-008-351-312,valid,0 +MolPort-008-351-314,valid,0 +MolPort-008-351-315,valid,0 +MolPort-008-351-322,valid,0 +MolPort-008-351-340,valid,0 +MolPort-008-351-351,valid,0 +MolPort-008-351-357,valid,0 +MolPort-008-351-359,valid,0 +MolPort-008-351-373,valid,0 +MolPort-008-351-377,valid,0 +MolPort-008-351-387,valid,0 +MolPort-008-351-277,test,0 +MolPort-008-351-281,test,0 +MolPort-008-351-282,test,0 +MolPort-008-351-290,test,0 +MolPort-008-351-302,test,0 +MolPort-008-351-331,test,0 +MolPort-008-351-338,test,0 +MolPort-008-351-355,test,0 +MolPort-008-351-360,test,0 +MolPort-008-351-368,test,0 +MolPort-008-351-369,test,0 +MolPort-008-351-371,test,0 +MolPort-008-351-378,test,0 +MolPort-008-351-379,test,0 +MolPort-008-351-380,test,0 +MolPort-009-019-503,test,0 \ No newline at end of file diff --git a/atomsci/ddm/test/test_datasets/Molport_test_train_valid_test_scaffold_e28e63fb-4d30-4cef-b303-7f0622f64688.csv b/atomsci/ddm/test/test_datasets/Molport_test_train_valid_test_scaffold_e28e63fb-4d30-4cef-b303-7f0622f64688.csv new file mode 100644 index 00000000..ca3b982d --- /dev/null +++ b/atomsci/ddm/test/test_datasets/Molport_test_train_valid_test_scaffold_e28e63fb-4d30-4cef-b303-7f0622f64688.csv @@ -0,0 +1,101 @@ +cmpd_id,subset,fold +MolPort-008-351-282,train,0 +MolPort-008-351-288,train,0 +MolPort-008-351-290,train,0 +MolPort-008-351-292,train,0 +MolPort-008-351-297,train,0 +MolPort-008-351-299,train,0 +MolPort-008-351-301,train,0 +MolPort-008-351-306,train,0 +MolPort-008-351-307,train,0 +MolPort-008-351-309,train,0 +MolPort-008-351-317,train,0 +MolPort-008-351-318,train,0 +MolPort-008-351-321,train,0 +MolPort-008-351-325,train,0 +MolPort-008-351-327,train,0 +MolPort-008-351-328,train,0 +MolPort-008-351-329,train,0 +MolPort-008-351-330,train,0 +MolPort-008-351-331,train,0 +MolPort-008-351-334,train,0 +MolPort-008-351-335,train,0 +MolPort-008-351-336,train,0 +MolPort-008-351-338,train,0 +MolPort-008-351-339,train,0 +MolPort-008-351-340,train,0 +MolPort-008-351-341,train,0 +MolPort-008-351-342,train,0 +MolPort-008-351-343,train,0 +MolPort-008-351-344,train,0 +MolPort-008-351-346,train,0 +MolPort-008-351-347,train,0 +MolPort-008-351-348,train,0 +MolPort-008-351-349,train,0 +MolPort-008-351-350,train,0 +MolPort-008-351-351,train,0 +MolPort-008-351-352,train,0 +MolPort-008-351-353,train,0 +MolPort-008-351-354,train,0 +MolPort-008-351-355,train,0 +MolPort-008-351-356,train,0 +MolPort-008-351-357,train,0 +MolPort-008-351-358,train,0 +MolPort-008-351-359,train,0 +MolPort-008-351-360,train,0 +MolPort-008-351-361,train,0 +MolPort-008-351-363,train,0 +MolPort-008-351-364,train,0 +MolPort-008-351-365,train,0 +MolPort-008-351-367,train,0 +MolPort-008-351-368,train,0 +MolPort-008-351-369,train,0 +MolPort-008-351-370,train,0 +MolPort-008-351-371,train,0 +MolPort-008-351-372,train,0 +MolPort-008-351-373,train,0 +MolPort-008-351-374,train,0 +MolPort-008-351-375,train,0 +MolPort-008-351-376,train,0 +MolPort-008-351-377,train,0 +MolPort-008-351-378,train,0 +MolPort-008-351-379,train,0 +MolPort-008-351-380,train,0 +MolPort-008-351-381,train,0 +MolPort-008-351-382,train,0 +MolPort-008-351-383,train,0 +MolPort-008-351-384,train,0 +MolPort-008-351-385,train,0 +MolPort-008-351-386,train,0 +MolPort-008-351-387,train,0 +MolPort-008-351-298,valid,0 +MolPort-008-351-302,valid,0 +MolPort-008-351-305,valid,0 +MolPort-008-351-308,valid,0 +MolPort-008-351-311,valid,0 +MolPort-008-351-312,valid,0 +MolPort-008-351-313,valid,0 +MolPort-008-351-314,valid,0 +MolPort-008-351-315,valid,0 +MolPort-008-351-316,valid,0 +MolPort-008-351-319,valid,0 +MolPort-008-351-320,valid,0 +MolPort-008-351-322,valid,0 +MolPort-008-351-323,valid,0 +MolPort-008-351-326,valid,0 +MolPort-008-351-270,test,0 +MolPort-008-351-272,test,0 +MolPort-008-351-275,test,0 +MolPort-008-351-276,test,0 +MolPort-008-351-277,test,0 +MolPort-008-351-280,test,0 +MolPort-008-351-281,test,0 +MolPort-008-351-283,test,0 +MolPort-008-351-285,test,0 +MolPort-008-351-286,test,0 +MolPort-008-351-291,test,0 +MolPort-008-351-293,test,0 +MolPort-008-351-294,test,0 +MolPort-008-351-295,test,0 +MolPort-008-351-296,test,0 +MolPort-009-019-503,test,0 \ No newline at end of file diff --git a/atomsci/ddm/test/test_datasets/pGP_MDCK_efflux_ratio_chembl29.csv b/atomsci/ddm/test/test_datasets/pGP_MDCK_efflux_ratio_chembl29.csv index aa8ed72d..d9c87ed8 100644 --- a/atomsci/ddm/test/test_datasets/pGP_MDCK_efflux_ratio_chembl29.csv +++ b/atomsci/ddm/test/test_datasets/pGP_MDCK_efflux_ratio_chembl29.csv @@ -1099,3 +1099,4 @@ activity_id,compound_id,base_rdkit_smiles,relation,efflux_ratio,log_efflux_ratio 20668378,CHEMBL3892073,NC(=O)c1cc(-c2ccc(F)cc2)c2ccc(CN3C(=O)CCC3=O)cc2n1,=,7.0,0.8450980400142568 20679457,CHEMBL4644751,C[C@H](C(=O)Nc1ccc(F)cc1)C12CC(NC(=O)c3ccc(F)c(F)c3)(C1)C2,=,1.3,0.11394335230683678 20717398,CHEMBL4643105,COc1cc(/C=C2\CCCN3C2=NO[C@H](c2cc(F)cc(F)c2)[C@@H]3C)ccc1-n1cnc(C)c1,=,2.46,0.39093510710337914 +20717398,CHEMBL4643105,COc1cc(/C=C2\CCCN3C2=NO[C@H](c2cc(F)cc(F)c2)[C@@H]3C)ccc1-n1cnc(C)c1,=,, diff --git a/atomsci/ddm/test/test_datasets/scaled_descriptors/MRP3_dataset_with_mordred_filtered_descriptors.csv b/atomsci/ddm/test/test_datasets/scaled_descriptors/MRP3_dataset_with_mordred_filtered_descriptors.csv new file mode 100644 index 00000000..f1529725 --- /dev/null +++ b/atomsci/ddm/test/test_datasets/scaled_descriptors/MRP3_dataset_with_mordred_filtered_descriptors.csv @@ -0,0 +1,729 @@ +compound_id,rdkit_smiles,active,AATS0Z,AATS0are,AATS0d,AATS0dv,AATS0i,AATS0m,AATS0p,AATS0pe,AATS0s,AATS0se,AATS0v,AATS1Z,AATS1are,AATS1d,AATS1dv,AATS1i,AATS1m,AATS1p,AATS1pe,AATS1s,AATS1se,AATS1v,AATS2Z,AATS2are,AATS2d,AATS2dv,AATS2i,AATS2m,AATS2p,AATS2pe,AATS2s,AATS2se,AATS2v,AATS3Z,AATS3are,AATS3d,AATS3dv,AATS3i,AATS3m,AATS3p,AATS3pe,AATS3s,AATS3se,AATS3v,AATS4Z,AATS4are,AATS4d,AATS4dv,AATS4i,AATS4m,AATS4p,AATS4pe,AATS4s,AATS4se,AATS4v,AATS5Z,AATS5are,AATS5d,AATS5dv,AATS5i,AATS5m,AATS5p,AATS5pe,AATS5s,AATS5se,AATS5v,AATS6Z,AATS6are,AATS6d,AATS6dv,AATS6i,AATS6m,AATS6p,AATS6pe,AATS6s,AATS6se,AATS6v,AATS7Z,AATS7are,AATS7d,AATS7dv,AATS7i,AATS7m,AATS7p,AATS7pe,AATS7s,AATS7se,AATS7v,AATS8Z,AATS8are,AATS8d,AATS8dv,AATS8i,AATS8m,AATS8p,AATS8pe,AATS8s,AATS8se,AATS8v,AATSC0Z,AATSC0are,AATSC0c,AATSC0d,AATSC0dv,AATSC0i,AATSC0m,AATSC0p,AATSC0pe,AATSC0s,AATSC0se,AATSC0v,AATSC1Z,AATSC1are,AATSC1c,AATSC1d,AATSC1dv,AATSC1i,AATSC1m,AATSC1p,AATSC1pe,AATSC1s,AATSC1se,AATSC1v,AATSC2Z,AATSC2are,AATSC2c,AATSC2d,AATSC2dv,AATSC2i,AATSC2m,AATSC2p,AATSC2pe,AATSC2s,AATSC2se,AATSC2v,AATSC3Z,AATSC3are,AATSC3c,AATSC3d,AATSC3dv,AATSC3i,AATSC3m,AATSC3p,AATSC3pe,AATSC3s,AATSC3se,AATSC3v,AATSC4Z,AATSC4are,AATSC4c,AATSC4d,AATSC4dv,AATSC4i,AATSC4m,AATSC4p,AATSC4pe,AATSC4s,AATSC4se,AATSC4v,AATSC5Z,AATSC5are,AATSC5c,AATSC5d,AATSC5dv,AATSC5i,AATSC5m,AATSC5p,AATSC5pe,AATSC5s,AATSC5se,AATSC5v,AATSC6Z,AATSC6are,AATSC6c,AATSC6d,AATSC6dv,AATSC6i,AATSC6m,AATSC6p,AATSC6pe,AATSC6s,AATSC6se,AATSC6v,AATSC7Z,AATSC7are,AATSC7c,AATSC7d,AATSC7dv,AATSC7i,AATSC7m,AATSC7p,AATSC7pe,AATSC7s,AATSC7se,AATSC7v,AATSC8Z,AATSC8are,AATSC8c,AATSC8d,AATSC8dv,AATSC8i,AATSC8m,AATSC8p,AATSC8pe,AATSC8s,AATSC8se,AATSC8v,ABC,ABCGG,AETA_alpha,AETA_beta,AETA_beta_ns,AETA_beta_ns_d,AETA_beta_s,AETA_dBeta,AETA_eta,AETA_eta_B,AETA_eta_BR,AETA_eta_F,AETA_eta_FL,AETA_eta_L,AETA_eta_R,AETA_eta_RL,AMID,AMID_C,AMID_N,AMID_O,AMID_X,AMID_h,AMW,ATS0Z,ATS0are,ATS0d,ATS0dv,ATS0i,ATS0m,ATS0p,ATS0pe,ATS0s,ATS0se,ATS0v,ATS1Z,ATS1are,ATS1d,ATS1dv,ATS1i,ATS1m,ATS1p,ATS1pe,ATS1s,ATS1se,ATS1v,ATS2Z,ATS2are,ATS2d,ATS2dv,ATS2i,ATS2m,ATS2p,ATS2pe,ATS2s,ATS2se,ATS2v,ATS3Z,ATS3are,ATS3d,ATS3dv,ATS3i,ATS3m,ATS3p,ATS3pe,ATS3s,ATS3se,ATS3v,ATS4Z,ATS4are,ATS4d,ATS4dv,ATS4i,ATS4m,ATS4p,ATS4pe,ATS4s,ATS4se,ATS4v,ATS5Z,ATS5are,ATS5d,ATS5dv,ATS5i,ATS5m,ATS5p,ATS5pe,ATS5s,ATS5se,ATS5v,ATS6Z,ATS6are,ATS6d,ATS6dv,ATS6i,ATS6m,ATS6p,ATS6pe,ATS6s,ATS6se,ATS6v,ATS7Z,ATS7are,ATS7d,ATS7dv,ATS7i,ATS7m,ATS7p,ATS7pe,ATS7s,ATS7se,ATS7v,ATS8Z,ATS8are,ATS8d,ATS8dv,ATS8i,ATS8m,ATS8p,ATS8pe,ATS8s,ATS8se,ATS8v,ATSC0Z,ATSC0are,ATSC0c,ATSC0d,ATSC0dv,ATSC0i,ATSC0m,ATSC0p,ATSC0pe,ATSC0s,ATSC0se,ATSC0v,ATSC1Z,ATSC1are,ATSC1c,ATSC1d,ATSC1dv,ATSC1i,ATSC1m,ATSC1p,ATSC1pe,ATSC1s,ATSC1se,ATSC1v,ATSC2Z,ATSC2are,ATSC2c,ATSC2d,ATSC2dv,ATSC2i,ATSC2m,ATSC2p,ATSC2pe,ATSC2s,ATSC2se,ATSC2v,ATSC3Z,ATSC3are,ATSC3c,ATSC3d,ATSC3dv,ATSC3i,ATSC3m,ATSC3p,ATSC3pe,ATSC3s,ATSC3se,ATSC3v,ATSC4Z,ATSC4are,ATSC4c,ATSC4d,ATSC4dv,ATSC4i,ATSC4m,ATSC4p,ATSC4pe,ATSC4s,ATSC4se,ATSC4v,ATSC5Z,ATSC5are,ATSC5c,ATSC5d,ATSC5dv,ATSC5i,ATSC5m,ATSC5p,ATSC5pe,ATSC5s,ATSC5se,ATSC5v,ATSC6Z,ATSC6are,ATSC6c,ATSC6d,ATSC6dv,ATSC6i,ATSC6m,ATSC6p,ATSC6pe,ATSC6s,ATSC6se,ATSC6v,ATSC7Z,ATSC7are,ATSC7c,ATSC7d,ATSC7dv,ATSC7i,ATSC7m,ATSC7p,ATSC7pe,ATSC7s,ATSC7se,ATSC7v,ATSC8Z,ATSC8are,ATSC8c,ATSC8d,ATSC8dv,ATSC8i,ATSC8m,ATSC8p,ATSC8pe,ATSC8s,ATSC8se,ATSC8v,AXp-0d,AXp-0dv,AXp-1d,AXp-1dv,AXp-2d,AXp-2dv,AXp-3d,AXp-3dv,AXp-4d,AXp-4dv,AXp-5d,AXp-5dv,AXp-6d,AXp-6dv,AXp-7d,AXp-7dv,BCUTZ-1h,BCUTZ-1l,BCUTare-1h,BCUTare-1l,BCUTc-1h,BCUTc-1l,BCUTd-1h,BCUTd-1l,BCUTdv-1h,BCUTdv-1l,BCUTi-1h,BCUTi-1l,BCUTm-1h,BCUTm-1l,BCUTp-1h,BCUTp-1l,BCUTpe-1h,BCUTpe-1l,BCUTs-1h,BCUTs-1l,BCUTse-1h,BCUTse-1l,BCUTv-1h,BCUTv-1l,BIC0,BIC1,BIC2,BIC3,BIC4,BIC5,BalabanJ,BertzCT,C1SP1,C1SP2,C1SP3,C2SP1,C2SP2,C2SP3,C3SP2,C3SP3,C4SP3,CIC0,CIC1,CIC2,CIC3,CIC4,CIC5,DPSA1,DPSA2,DPSA3,DPSA4,DPSA5,DetourIndex,Diameter,ECIndex,EState_VSA1,EState_VSA10,EState_VSA2,EState_VSA3,EState_VSA4,EState_VSA5,EState_VSA6,EState_VSA7,EState_VSA8,EState_VSA9,ETA_alpha,ETA_beta,ETA_beta_ns,ETA_beta_ns_d,ETA_beta_s,ETA_dAlpha_A,ETA_dAlpha_B,ETA_dBeta,ETA_dEpsilon_A,ETA_dEpsilon_B,ETA_dEpsilon_C,ETA_dEpsilon_D,ETA_dPsi_A,ETA_dPsi_B,ETA_epsilon_1,ETA_epsilon_2,ETA_epsilon_3,ETA_epsilon_4,ETA_epsilon_5,ETA_eta,ETA_eta_B,ETA_eta_BR,ETA_eta_F,ETA_eta_FL,ETA_eta_L,ETA_eta_R,ETA_eta_RL,ETA_psi_1,ETA_shape_p,ETA_shape_x,ETA_shape_y,FCSP3,FNSA1,FNSA2,FNSA3,FNSA4,FNSA5,FPSA1,FPSA2,FPSA3,FPSA4,FPSA5,FilterItLogS,GATS1Z,GATS1are,GATS1c,GATS1d,GATS1dv,GATS1i,GATS1m,GATS1p,GATS1pe,GATS1s,GATS1se,GATS1v,GATS2Z,GATS2are,GATS2c,GATS2d,GATS2dv,GATS2i,GATS2m,GATS2p,GATS2pe,GATS2s,GATS2se,GATS2v,GATS3Z,GATS3are,GATS3c,GATS3d,GATS3dv,GATS3i,GATS3m,GATS3p,GATS3pe,GATS3s,GATS3se,GATS3v,GATS4Z,GATS4are,GATS4c,GATS4d,GATS4dv,GATS4i,GATS4m,GATS4p,GATS4pe,GATS4s,GATS4se,GATS4v,GATS5Z,GATS5are,GATS5c,GATS5d,GATS5dv,GATS5i,GATS5m,GATS5p,GATS5pe,GATS5s,GATS5se,GATS5v,GATS6Z,GATS6are,GATS6c,GATS6d,GATS6dv,GATS6i,GATS6m,GATS6p,GATS6pe,GATS6s,GATS6se,GATS6v,GATS7Z,GATS7are,GATS7c,GATS7d,GATS7dv,GATS7i,GATS7m,GATS7p,GATS7pe,GATS7s,GATS7se,GATS7v,GATS8Z,GATS8are,GATS8c,GATS8d,GATS8dv,GATS8i,GATS8m,GATS8p,GATS8pe,GATS8s,GATS8se,GATS8v,GGI1,GGI10,GGI2,GGI3,GGI4,GGI5,GGI6,GGI7,GGI8,GGI9,GRAV,GRAVH,GRAVHp,GRAVp,GeomDiameter,GeomPetitjeanIndex,GeomRadius,GeomShapeIndex,GhoseFilter,HybRatio,IC0,IC1,IC2,IC3,IC4,IC5,JGI1,JGI10,JGI2,JGI3,JGI4,JGI5,JGI6,JGI7,JGI8,JGI9,JGT10,Kier1,Kier2,Kier3,LabuteASA,Lipinski,LogEE_A,LogEE_D,LogEE_Dt,LogEE_DzZ,LogEE_Dzare,LogEE_Dzi,LogEE_Dzm,LogEE_Dzp,LogEE_Dzpe,LogEE_Dzse,LogEE_Dzv,MATS1Z,MATS1are,MATS1c,MATS1d,MATS1dv,MATS1i,MATS1m,MATS1p,MATS1pe,MATS1s,MATS1se,MATS1v,MATS2Z,MATS2are,MATS2c,MATS2d,MATS2dv,MATS2i,MATS2m,MATS2p,MATS2pe,MATS2s,MATS2se,MATS2v,MATS3Z,MATS3are,MATS3c,MATS3d,MATS3dv,MATS3i,MATS3m,MATS3p,MATS3pe,MATS3s,MATS3se,MATS3v,MATS4Z,MATS4are,MATS4c,MATS4d,MATS4dv,MATS4i,MATS4m,MATS4p,MATS4pe,MATS4s,MATS4se,MATS4v,MATS5Z,MATS5are,MATS5c,MATS5d,MATS5dv,MATS5i,MATS5m,MATS5p,MATS5pe,MATS5s,MATS5se,MATS5v,MATS6Z,MATS6are,MATS6c,MATS6d,MATS6dv,MATS6i,MATS6m,MATS6p,MATS6pe,MATS6s,MATS6se,MATS6v,MATS7Z,MATS7are,MATS7c,MATS7d,MATS7dv,MATS7i,MATS7m,MATS7p,MATS7pe,MATS7s,MATS7se,MATS7v,MATS8Z,MATS8are,MATS8c,MATS8d,MATS8dv,MATS8i,MATS8m,MATS8p,MATS8pe,MATS8s,MATS8se,MATS8v,MDEC-22,MDEC-23,MDEC-33,MIC0,MIC1,MIC2,MIC3,MIC4,MIC5,MID,MID_C,MID_N,MID_O,MID_X,MID_h,MOMI-X,MOMI-Y,MOMI-Z,MPC10,MPC2,MPC3,MPC4,MPC5,MPC6,MPC7,MPC8,MPC9,MW,MWC01,MWC02,MWC03,MWC04,MWC05,MWC06,MWC07,MWC08,MWC09,MWC10,MZ,Mare,Mi,Mm,Mor01,Mor01m,Mor01p,Mor01se,Mor01v,Mor02,Mor02m,Mor02p,Mor02se,Mor02v,Mor03,Mor03m,Mor03p,Mor03se,Mor03v,Mor04,Mor04m,Mor04p,Mor04se,Mor04v,Mor05,Mor05m,Mor05p,Mor05se,Mor05v,Mor06,Mor06m,Mor06p,Mor06se,Mor06v,Mor07,Mor07m,Mor07p,Mor07se,Mor07v,Mor08,Mor08m,Mor08p,Mor08se,Mor08v,Mor09,Mor09m,Mor09p,Mor09se,Mor09v,Mor10,Mor10m,Mor10p,Mor10se,Mor10v,Mor11,Mor11m,Mor11p,Mor11se,Mor11v,Mor12,Mor12m,Mor12p,Mor12se,Mor12v,Mor13,Mor13m,Mor13p,Mor13se,Mor13v,Mor14,Mor14m,Mor14p,Mor14se,Mor14v,Mor15,Mor15m,Mor15p,Mor15se,Mor15v,Mor16,Mor16m,Mor16p,Mor16se,Mor16v,Mor17,Mor17m,Mor17p,Mor17se,Mor17v,Mor18,Mor18m,Mor18p,Mor18se,Mor18v,Mor19,Mor19m,Mor19p,Mor19se,Mor19v,Mor20,Mor20m,Mor20p,Mor20se,Mor20v,Mor21,Mor21m,Mor21p,Mor21se,Mor21v,Mor22,Mor22m,Mor22p,Mor22se,Mor22v,Mor23,Mor23m,Mor23p,Mor23se,Mor23v,Mor24,Mor24m,Mor24p,Mor24se,Mor24v,Mor25,Mor25m,Mor25p,Mor25se,Mor25v,Mor26,Mor26m,Mor26p,Mor26se,Mor26v,Mor27,Mor27m,Mor27p,Mor27se,Mor27v,Mor28,Mor28m,Mor28p,Mor28se,Mor28v,Mor29,Mor29m,Mor29p,Mor29se,Mor29v,Mor30,Mor30m,Mor30p,Mor30se,Mor30v,Mor31,Mor31m,Mor31p,Mor31se,Mor31v,Mor32,Mor32m,Mor32p,Mor32se,Mor32v,Mp,Mpe,Mse,Mv,NaaCH,NaaN,NaaNH,NaaO,NaaS,NaaaC,NaasC,NaasN,NdCH2,NdO,NdS,NddsN,NddssS,NdsCH,NdsN,NdssC,NsBr,NsCH3,NsCl,NsF,NsNH2,NsOH,NssCH2,NssNH,NssO,NssS,NsssCH,NsssN,NssssC,NtN,NtsC,PEOE_VSA1,PEOE_VSA10,PEOE_VSA11,PEOE_VSA12,PEOE_VSA13,PEOE_VSA2,PEOE_VSA3,PEOE_VSA4,PEOE_VSA5,PEOE_VSA6,PEOE_VSA7,PEOE_VSA8,PEOE_VSA9,PNSA1,PNSA2,PNSA3,PNSA4,PNSA5,PPSA1,PPSA2,PPSA3,PPSA4,PPSA5,PetitjeanIndex,RASA,RNCG,RNCS,RPCG,RPCS,RPSA,Radius,RotRatio,SIC0,SIC1,SIC2,SIC3,SIC4,SIC5,SLogP,SM1_Dt,SM1_DzZ,SM1_Dzare,SM1_Dzi,SM1_Dzm,SM1_Dzp,SM1_Dzpe,SM1_Dzse,SM1_Dzv,SMR,SMR_VSA1,SMR_VSA2,SMR_VSA3,SMR_VSA4,SMR_VSA5,SMR_VSA6,SMR_VSA7,SMR_VSA8,SMR_VSA9,SRW02,SRW03,SRW04,SRW05,SRW06,SRW07,SRW08,SRW09,SRW10,SZ,SaaCH,SaaN,SaaNH,SaaO,SaaS,SaaaC,SaasC,SaasN,Sare,SdCH2,SdO,SdS,SddsN,SddssS,SdsCH,SdsN,SdssC,Si,SlogP_VSA1,SlogP_VSA10,SlogP_VSA11,SlogP_VSA2,SlogP_VSA3,SlogP_VSA4,SlogP_VSA5,SlogP_VSA6,SlogP_VSA7,SlogP_VSA8,SlogP_VSA9,Sm,Sp,SpAD_A,SpAD_D,SpAD_Dt,SpAD_DzZ,SpAD_Dzare,SpAD_Dzi,SpAD_Dzm,SpAD_Dzp,SpAD_Dzpe,SpAD_Dzse,SpAD_Dzv,SpAbs_A,SpAbs_D,SpAbs_Dt,SpAbs_DzZ,SpAbs_Dzare,SpAbs_Dzi,SpAbs_Dzm,SpAbs_Dzp,SpAbs_Dzpe,SpAbs_Dzse,SpAbs_Dzv,SpDiam_A,SpDiam_D,SpDiam_Dt,SpDiam_DzZ,SpDiam_Dzare,SpDiam_Dzi,SpDiam_Dzm,SpDiam_Dzp,SpDiam_Dzpe,SpDiam_Dzse,SpDiam_Dzv,SpMAD_A,SpMAD_D,SpMAD_Dt,SpMAD_DzZ,SpMAD_Dzare,SpMAD_Dzi,SpMAD_Dzm,SpMAD_Dzp,SpMAD_Dzpe,SpMAD_Dzse,SpMAD_Dzv,SpMax_A,SpMax_D,SpMax_Dt,SpMax_DzZ,SpMax_Dzare,SpMax_Dzi,SpMax_Dzm,SpMax_Dzp,SpMax_Dzpe,SpMax_Dzse,SpMax_Dzv,Spe,SsBr,SsCH3,SsCl,SsF,SsNH2,SsOH,Sse,SssCH2,SssNH,SssO,SssS,SsssCH,SsssN,SssssC,StN,StsC,Sv,TASA,TIC0,TIC1,TIC2,TIC3,TIC4,TIC5,TMPC10,TMWC10,TPSA,TSRW10,TopoPSA,TopoPSA(NO),TopoShapeIndex,TpiPC10,VAdjMat,VE1_A,VE1_D,VE1_Dt,VE1_DzZ,VE1_Dzare,VE1_Dzi,VE1_Dzm,VE1_Dzp,VE1_Dzpe,VE1_Dzse,VE1_Dzv,VE2_A,VE2_D,VE2_Dt,VE2_DzZ,VE2_Dzare,VE2_Dzi,VE2_Dzm,VE2_Dzp,VE2_Dzpe,VE2_Dzse,VE2_Dzv,VE3_A,VE3_D,VE3_Dt,VE3_DzZ,VE3_Dzare,VE3_Dzi,VE3_Dzm,VE3_Dzp,VE3_Dzpe,VE3_Dzse,VE3_Dzv,VMcGowan,VR1_A,VR1_D,VR1_Dt,VR1_DzZ,VR1_Dzare,VR1_Dzi,VR1_Dzm,VR1_Dzp,VR1_Dzpe,VR1_Dzse,VR1_Dzv,VR2_A,VR2_D,VR2_Dt,VR2_DzZ,VR2_Dzare,VR2_Dzi,VR2_Dzm,VR2_Dzp,VR2_Dzpe,VR2_Dzse,VR2_Dzv,VR3_A,VR3_D,VR3_Dt,VR3_DzZ,VR3_Dzare,VR3_Dzi,VR3_Dzm,VR3_Dzp,VR3_Dzpe,VR3_Dzse,VR3_Dzv,VSA_EState1,VSA_EState2,VSA_EState3,VSA_EState4,VSA_EState5,VSA_EState6,VSA_EState7,VSA_EState8,VSA_EState9,Vabc,WNSA1,WNSA2,WNSA3,WNSA4,WNSA5,WPSA1,WPSA2,WPSA3,WPSA4,WPSA5,WPath,WPol,Xc-3d,Xc-3dv,Xc-4d,Xc-4dv,Xc-5d,Xc-5dv,Xc-6d,Xc-6dv,Xch-3d,Xch-3dv,Xch-4d,Xch-4dv,Xch-5d,Xch-5dv,Xch-6d,Xch-6dv,Xch-7d,Xch-7dv,Xp-0d,Xp-0dv,Xp-1d,Xp-1dv,Xp-2d,Xp-2dv,Xp-3d,Xp-3dv,Xp-4d,Xp-4dv,Xp-5d,Xp-5dv,Xp-6d,Xp-6dv,Xp-7d,Xp-7dv,Xpc-4d,Xpc-4dv,Xpc-5d,Xpc-5dv,Xpc-6d,Xpc-6dv,ZMIC0,ZMIC1,ZMIC2,ZMIC3,ZMIC4,ZMIC5,Zagreb1,Zagreb2,apol,bpol,fMF,fragCpx,mZagreb1,mZagreb2,n10AHRing,n10ARing,n10FAHRing,n10FARing,n10FHRing,n10FRing,n10FaHRing,n10FaRing,n10HRing,n10Ring,n10aHRing,n10aRing,n11AHRing,n11ARing,n11FAHRing,n11FARing,n11FHRing,n11FRing,n11FaHRing,n11FaRing,n11HRing,n11Ring,n11aHRing,n11aRing,n12AHRing,n12ARing,n12FAHRing,n12FARing,n12FHRing,n12FRing,n12FaHRing,n12FaRing,n12HRing,n12Ring,n12aHRing,n12aRing,n3AHRing,n3ARing,n3HRing,n3Ring,n3aHRing,n3aRing,n4AHRing,n4ARing,n4FAHRing,n4FARing,n4FHRing,n4FRing,n4FaHRing,n4FaRing,n4HRing,n4Ring,n4aHRing,n4aRing,n5AHRing,n5ARing,n5FAHRing,n5FARing,n5FHRing,n5FRing,n5FaHRing,n5FaRing,n5HRing,n5Ring,n5aHRing,n5aRing,n6AHRing,n6ARing,n6FAHRing,n6FARing,n6FHRing,n6FRing,n6FaHRing,n6FaRing,n6HRing,n6Ring,n6aHRing,n6aRing,n7AHRing,n7ARing,n7FAHRing,n7FARing,n7FHRing,n7FRing,n7FaHRing,n7FaRing,n7HRing,n7Ring,n7aHRing,n7aRing,n8AHRing,n8ARing,n8FAHRing,n8FARing,n8FHRing,n8FRing,n8FaHRing,n8FaRing,n8HRing,n8Ring,n8aHRing,n8aRing,n9AHRing,n9ARing,n9FAHRing,n9FARing,n9FHRing,n9FRing,n9FaHRing,n9FaRing,n9HRing,n9Ring,n9aHRing,n9aRing,nAHRing,nARing,nAcid,nAromAtom,nAromBond,nAtom,nB,nBase,nBonds,nBondsA,nBondsD,nBondsKD,nBondsKS,nBondsM,nBondsO,nBondsS,nBondsT,nBr,nBridgehead,nC,nCl,nF,nFAHRing,nFARing,nFHRing,nFRing,nFaHRing,nFaRing,nG12AHRing,nG12ARing,nG12FAHRing,nG12FARing,nG12FHRing,nG12FRing,nG12FaHRing,nG12FaRing,nG12HRing,nG12Ring,nG12aHRing,nG12aRing,nH,nHBAcc,nHBDon,nHRing,nHeavyAtom,nHetero,nI,nN,nO,nP,nRing,nRot,nS,nSpiro,nX,naHRing,naRing,piPC1,piPC10,piPC2,piPC3,piPC4,piPC5,piPC6,piPC7,piPC8,piPC9 +44259,CN[C@@H]1C[C@H]2O[C@@](C)([C@@H]1OC)n1c3ccccc3c3c4c(c5c6ccccc6n2c5c31)C(=O)NC4,0,23.311475409836067,6.152288524590163,4.032786885245901,8.065573770491802,159.99041035734385,92.10657788524594,1.580635205345475,6.235691803278687,3.376252276867031,7.650429573770489,234.24720701582336,26.323529411764707,6.3935,4.9411764705882355,8.352941176470589,145.54369006951777,100.84029714705888,1.8905736476470594,6.543580882352941,2.889093137254902,7.777227294117644,280.6811589944888,23.792,6.407024000000002,4.816,7.664,152.77867939396165,90.39005152000004,1.6920690761867123,6.5202463999999996,2.7936666666666654,7.838158911999997,249.73158182400758,22.405882352941177,6.381699411764707,4.535294117647059,7.023529411764706,154.23724240461954,84.3716574411765,1.6132996103554889,6.4862464705882354,2.7486928104575163,7.835931976470586,236.11039033850307,21.408653846153847,6.293926923076925,4.259615384615385,6.1875,153.20733905171198,80.0239613557692,1.5886849731063992,6.404602403846154,2.700186965811965,7.758468076923075,229.4422633088319,18.91869918699187,6.237982926829268,3.682926829268293,5.044715447154472,156.09886213370746,69.06725845934957,1.4769987984614923,6.335623577235772,2.6852416440831073,7.729122195121949,207.89443661103198,16.316981132075473,6.037486792452829,3.147169811320755,3.818867924528302,157.0908844470521,58.44814766415092,1.3751507618790946,6.13334754716981,2.5509958071278827,7.572486777358489,187.0054563720991,13.61023622047244,5.926283464566928,2.7007874015748032,2.6653543307086616,159.09405613111105,46.86855862598424,1.2525908763708855,6.0114771653543295,2.520778652668417,7.499045559055117,162.91036395491577,10.83495145631068,5.8076601941747565,2.203883495145631,1.6019417475728155,161.73241454028425,35.101439859223305,1.123460426326971,5.8816631067961165,2.3887540453074436,7.420750815533979,138.5910100511919,7.048105348024726,0.10713926363880669,0.01673409290038925,0.7809728567589356,3.9333512496640686,1.5448546087313582,33.611414036549306,0.22960557910147533,0.10154334856221439,0.8171265191555438,0.06374633700618111,50.129528360540746,0.5984713154275422,-0.0008683861074662071,-0.008003970823852955,0.4494996601166671,1.4841993771440307,-0.19675091289162716,2.8496464562182937,-0.0036549857101764245,0.001651130704902425,-0.05672324582435321,-0.0026884623678012716,1.9390546589139352,0.9212061273851115,0.004324998656275358,-2.8586267203810646e-05,0.24879763504434302,0.7541241601719968,0.16937504456574812,4.469942136172003,0.04073386161221601,0.005085635044343109,0.0022396010630355984,0.0015609789282449963,8.55372046340092,0.5949997628720938,0.0022277855415212522,0.0009189276913684412,0.09665491566150784,0.4178541505287952,0.19024668469952222,2.902451773383188,0.03313921036732355,0.002665359248778971,-0.015193860846318298,0.0013172066775217562,6.527681258010758,0.2136380315465244,-0.0029491785190084215,-0.0003538077990322131,-0.03980009509437083,-0.010353141215140731,-0.04102780573303539,1.043634344677046,0.0022165818196971418,-0.00179409730118027,-0.008377329194775789,-0.0032559079393463994,1.2516756058271585,-0.7031766528361328,-0.009410914978270886,0.00014089924515902513,-0.12443547171295417,-0.4002978043755176,0.027381542974046356,-3.3401650836637984,-0.01234007237519105,-0.009480267128121313,-0.005684429324809249,-0.004937059917016855,-3.570625846455396,-0.47328320141167163,-0.006503470258045866,-0.0005587738067757054,-0.17447734175738921,-0.4408674884515727,-0.128503022391645,-2.275071959592927,-0.020397436131290556,-0.006013283607064439,0.00709376128573899,-0.0038386450791783456,-3.9959421667903205,-0.9279943373108999,-0.002767584279054659,0.00031354298048213357,-0.22398305425474058,-0.7653507333351671,-0.19016202219494313,-4.496535592958249,-0.03598113064505118,-0.004057534698783507,0.015677487413307406,-6.240128912933666e-05,-8.164354308911976,-1.307376396886734,-0.008094953595833768,-0.0009073489287263354,-0.12046036272742222,-0.7293085948813216,-0.21171946491838028,-6.297932983071682,-0.044660301144126245,-0.00939178083978898,-0.07974047303461762,-0.003341667899066632,-10.426425120812736,,,0.4742857142857143,1.2642857142857142,0.5571428571428572,0.0,0.7071428571428572,-0.15,1.0954526697713867,0.009552805978808924,0.02920994883595178,1.101555437242616,0.24355748777552333,0.24443866517061333,2.1970081070140024,0.4879961529461367,2.145291227752187,1.7320842259370222,0.2472595204054758,0.16594748140968904,0.0,0.4132070018151649,7.642630994950832,1422.0,375.28959999999995,246.0,492.0,9759.415031797975,5618.501251000002,96.41874752607399,380.3771999999999,205.95138888888889,466.6762039999998,14289.079627965226,1790.0,434.75800000000004,336.0,568.0,9896.970924727208,6857.140206000004,128.55900804000004,444.9635,196.45833333333334,528.8514559999998,19086.31881162524,2974.0,800.8780000000002,602.0,958.0,19097.334924245206,11298.756440000005,211.50863452333903,815.0308,349.2083333333332,979.7698639999996,31216.44772800095,3809.0,1084.8889000000001,771.0,1194.0,26220.331208785323,14343.181765000003,274.2609337604331,1102.6619,467.27777777777777,1332.1084359999995,40138.76635754552,4453.0,1309.1368000000004,886.0,1287.0,31867.12652275609,16644.983961999995,330.446474406131,1332.1573,561.6388888888887,1613.7613599999995,47723.99076823704,4654.0,1534.5438,906.0,1241.0,38400.32008489203,16990.545580999995,363.3417044215271,1558.5634,660.5694444444443,1901.3640599999994,51142.031406313865,4324.0,1599.9339999999997,834.0,1012.0,41629.084378468804,15488.759130999995,364.41495189796007,1625.3370999999995,676.0138888888889,2006.7089959999996,49556.44593860626,3457.0,1505.2759999999996,686.0,677.0,40409.890257302206,11904.613890999997,318.15808259820494,1526.9151999999997,640.2777777777779,1904.7575719999995,41379.2324445486,2232.0,1196.378,454.0,330.0,33316.87739529856,7230.896611,231.432847823356,1211.6226,492.08333333333337,1528.6746679999997,28549.748070545527,429.9344262295083,6.535495081967208,1.0207796669237441,47.63934426229507,239.93442622950818,94.23613113261285,2050.2962562295074,14.005940325189995,6.194144262295078,49.84471766848817,3.8885265573770478,3057.9012299929855,40.696049449072866,-0.05905025530770208,-0.544270016022001,30.565976887933363,100.92555764579409,-13.379062076630646,193.77595902284398,-0.24853902829199687,0.1122768879333649,-3.857180716056018,-0.18281544101048647,131.8557168061476,115.15076592313895,0.5406248320344197,-0.003573283400476331,31.099704380542878,94.2655200214996,21.171880570718514,558.7427670215004,5.091732701527001,0.6357043805428886,0.2799501328794498,0.19512236603062452,1069.215057925115,101.14995968825593,0.37872354205861286,0.156217707532635,16.431335662456334,71.03520558989518,32.341936398918776,493.41680147514194,5.633665762445004,0.4531110722924251,-2.5829563438741108,0.22392513517869855,1109.7058138618288,44.436710561677074,-0.6134291319537517,-0.07359202219870033,-8.278419779629132,-2.153453372749272,-8.53378359247136,217.07594369282558,0.4610490184970055,-0.3731722386454962,-1.7424844725133641,-0.6772288513840511,260.348526012049,-172.9814565976887,-2.315085084654638,0.034661214309120184,-30.611126041386726,-98.47325987637733,6.7358595716154035,-821.6806105812944,-3.0356578042969984,-2.3321457135178427,-1.3983696139030752,-1.2145167395861465,-878.3739582280275,-125.42004837409299,-1.7234196183821544,-0.14807505879556193,-46.23649556570814,-116.82988443966677,-34.05330093378592,-602.8940692921257,-5.405320574791998,-1.5935201558720764,1.8798467407208324,-1.0172409459822616,-1058.924674199435,-235.71056167696855,-0.7029664068798834,0.07963991704246193,-56.891695780704104,-194.39908626713245,-48.301153637515554,-1142.1200406113953,-9.139207183843,-1.0306138134910108,3.9820818029800815,-0.01584992743885151,-2073.745994463642,-269.3195377586672,-1.6675604407417564,-0.1869138793176251,-24.814834721848978,-150.23757054555224,-43.61420977318634,-1297.3741945127665,-9.200022035690006,-1.93470685299653,-16.42653744513123,-0.6883835872077262,-2147.8435748874235,0.6753456926755909,0.568121102452871,0.4066634607884473,0.29174098769600704,0.24002206369815599,0.149080491112789,0.14219511732980147,0.07675214705604586,0.08559518222085742,0.03964479227933705,0.0510119728668094,0.02008210490470905,0.029838848976385286,0.010034515209323365,0.018263595179147992,0.005232024970827681,8.022343781645713,5.64392779096961,3.544095568241608,2.1435651142795367,0.44024739222019527,-0.44813687680486375,4.029238581422155,0.9778952386881979,6.022176999178399,0.9950351637751105,14.55308265761613,10.904493558223681,16.010563107931905,11.655171452052736,2.054907940091168,0.7518426395629493,3.489337020672558,2.193453326453831,7.008273181302014,1.1391879060964496,3.702249822176493,2.389403508611498,20.952545256971185,14.70237617531003,0.24048102902704108,0.5846629164084771,0.7863923227917079,0.8437722207117814,0.8646376381372625,0.8855030555627437,1.350659640083091,1748.0125745405267,0.0,1.0,3.0,0.0,12.0,4.0,6.0,0.0,0.0,4.419217344122046,2.255895745482571,0.9879452869916481,0.6272895492867292,0.4961420083031234,0.3649944673195167,242.2786084832793,1706.1190365668688,51.480203152697484,27.969164533883102,56.61951060602591,,10.0,655.0,5.724985593970254,4.794537184071822,24.280888116982638,6.544756405912575,61.15942433464423,0.0,7.109797541277533,7.04767198267719,75.22245025097888,9.473725907600098,16.6,44.25,19.5,0.0,24.75,0.0,0.025714285714285672,-5.25,0.13959646910466617,0.0668603444698076,-0.07273612463485857,0.027644787644787505,0.1294929577464785,0.0,0.5934426229508191,0.811428571428571,0.4538461538461529,0.5265822784810115,0.7837837837837835,38.34084344199853,0.3343482092583123,1.0223482092583123,38.55444030349156,8.524512072143317,8.555353280971467,76.89528374549009,17.079865353114783,0.5845070422535215,0.11044176706827308,0.03012048192771084,0.46987951807228917,0.32142857142857145,0.30744299242443746,-0.8337736782051434,-0.03818473637269014,-0.013668420954182678,-0.04632075990028574,0.6925570075755624,1.8781882098514393,0.043645631818066535,0.03078997065330229,0.04367879557794046,-6.381398395137548,0.7203560902741328,0.8048447374771969,1.557506691427063,0.5371240030767986,0.4596844203655772,1.2543399929877754,0.7236170399440562,0.9936636562871509,0.7630095419701157,0.653500128707875,0.8422234455570308,0.8691566205943659,0.7753740562800273,1.0369160889889564,1.2760003811710543,0.8866620784583622,0.8212243782454223,0.9897935583963391,0.7713775404674802,0.7759672841377417,0.9929235967973987,0.7019466649613095,1.084700998633559,0.7343108062534828,0.8500612324545465,1.1293289088039735,1.2011389244616253,1.1075867373790538,0.9664405253765896,0.9480518794518106,0.8451729176581995,0.8118694254555152,1.0868186919191234,0.8661704113761638,1.1822284149027957,0.7817918326025314,0.8910124421449059,1.0727241878263152,1.1540979738589012,1.2867111811106997,1.0417509775684826,1.0783757277071344,0.8891459281562084,0.960540359066912,1.0385025506333894,0.8379589749797427,1.1339939465136344,0.9052898077043096,1.049224098967139,1.15528784798776,1.1227100119136726,1.2364242190253978,1.1278488058179297,1.027895860187009,1.0472768637228937,1.0136075373884985,1.1394357266192547,0.7928756707879706,1.164883139552395,1.0068529789028466,1.0311357445945184,0.9907915355049236,0.9736529301543405,1.2024308847017886,1.0767092772022462,1.0723429621572014,1.0325779620649163,1.075445609763782,0.9924455555251279,0.8515124212098368,0.9838823582128132,1.062612575205034,1.1252402646649262,0.9440042958786543,0.8430990682220787,1.17020988343422,1.135644931169611,1.0697887536413941,1.1284996917492336,1.1535392748149649,0.9709735742370849,1.0665834286062452,0.9084700918496567,1.1712805863758737,1.2129869639481752,0.9858532145069068,0.8801410969551652,0.9018000922096235,1.1004220209776665,1.047579146744251,1.2161730665581143,1.196752791996828,1.025339687421864,1.2736358837023427,0.9401757690625047,1.2403528749784085,5.5,0.024691358024691357,4.666666666666668,4.840277777777779,3.9216666666666673,2.588055555555555,2.0862585034013597,0.9731788548752833,0.4109898589065255,0.14719135802469135,8692.33669628706,9539.541249902197,3632.630427396324,3364.5749335308674,12.558017803195433,0.4265502469342912,7.201392208237196,0.7438319480545926,0.0,0.32142857142857145,1.5115199934408408,3.6748415920803157,4.942792050571239,5.3034477882761575,5.434595329259763,5.56574287024337,0.13095238095238093,0.006172839506172839,0.06862745098039215,0.056944444444444436,0.04001700680272109,0.02668098510882015,0.02397998279771678,0.015447283410718783,0.011742567397329302,0.00919945987654321,0.3897644012772397,22.936507936507937,8.007352941176471,2.7755102040816326,201.11658967130901,1.0,4.564823063881086,161.46441690463473,,120.14291163884556,117.95527274927852,117.89557903583325,120.16703327951384,162.37397851602447,119.29343617279322,120.266849044749,146.65051951696827,0.08491236805863966,-0.008105208846625588,-0.47830323827512494,0.5755637423586093,0.3773371059273667,-0.1273588542116594,0.0847821056596895,-0.015918540500974,0.01626035312289113,-0.06941794752050591,-0.042174381996891636,0.03868088773881731,0.13070266148097304,0.040368008042840506,-0.0017082651192372492,0.3185739848589128,0.19172560808964198,0.10963817799322854,0.13298881538608745,0.17740797837588032,0.05008338917666479,0.0027408253318593864,0.02448735098447519,0.17063237463319017,0.08441981688580265,0.020793362450498776,0.05491350483342101,0.12376219586251576,0.10623362217256402,0.12314860157342164,0.08635315878787606,0.14433103279549453,0.02624848684348771,-0.01859425742542334,0.020663252813946535,0.13021629110616162,0.030311412925517315,-0.027526589401910034,-0.02114293264285531,-0.05096220022235166,-0.002632142556814612,-0.02655771326385699,0.0310499981804452,0.00965386742069326,-0.017668289716495297,-0.010252181269839714,-0.051076000477183386,0.024968828687652482,-0.09976818139263517,-0.08783815250025834,0.008419891415551285,-0.15933392644318742,-0.10177016466803095,0.01772434947553557,-0.09937591676540826,-0.05374465386896063,-0.09336177368932115,-0.0069566085441503,-0.07744852722342521,-0.0712279960181313,-0.06715041533031456,-0.06070109161820165,-0.03339134126372084,-0.2234102507499124,-0.11208444414650877,-0.08318130500136338,-0.06768748131569224,-0.08883684887411124,-0.05921888230207587,0.008681349973893896,-0.06021750047859432,-0.07971234315333615,-0.13166578697223585,-0.025831652981906608,0.01873677780734923,-0.2868000498561218,-0.1945798086048208,-0.12309379867863751,-0.13378001853979374,-0.15670843359232636,-0.039958645802363954,0.01918611995301443,-0.0009788999973957086,-0.1628651730012787,-0.18549331094393107,-0.0755554343095346,-0.05422157831484429,-0.15424398131752864,-0.18541659480414033,-0.13704814920560407,-0.18737482975941633,-0.1945087803131665,-0.09249035976034166,-0.09758644611978216,-0.05242133204834358,-0.20798969114219423,9.969810229239837,34.47535919930975,31.45063788846493,13.751830160597093,34.30171699123715,41.11690735077678,43.28421882618661,44.13792374421941,44.99162866225218,75.08519297132655,60.622947907795776,8.654083214191653,5.8081618493391165,0.0,14.462245063530771,6386.105452826841,3756.0847912367285,3316.015064560787,1550.0,68.0,112.0,185.0,284.0,421.0,626.0,899.0,1188.0,466.20049069200076,42.0,5.3981627015177525,6.364750756851911,7.356918242356021,8.348301054933943,9.35296777022594,10.354149073430555,11.363717549532126,12.36930057362903,13.380801483048689,0.6721311475409835,0.9834754098360657,1.11786683026673,0.6367673894558405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6960107784431139,0.9712632594021214,1.0030566069275133,0.6593444758469503,8.0,0.0,0.0,0.0,0.0,8.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,0.0,3.0,0.0,1.0,0.0,0.0,29.24150241119547,12.331867558483172,5.724985593970254,0.0,5.907179729351506,4.794537184071822,0.0,0.0,0.0,36.39820241076966,31.667594810988028,47.66211325712326,27.63025436216204,193.41508608378808,-524.5343420344166,-24.022352938897466,-8.598923639908469,-29.140796779689808,435.6936945670674,1181.5846945324522,27.457850213800022,19.370240893974632,27.478713826336104,0.4,0.8898853101594967,0.13819933930665523,12.133015208006968,0.09297086528281938,96.04778047709796,0.11011468984050318,6.0,0.047619047619047616,0.25486206982519455,0.6196264280337216,0.8334194838246498,0.8942307653192241,0.9163439585899782,0.9384571518607324,4.354000000000003,,1.3214285714285716,1.599813866914844,1.4204008994654953,1.3177974512248314,-5.319610065744728,1.4208996328029375,1.306536373105155,-2.474281947147792,135.6479,14.268263091671919,0.0,19.76777650359537,0.0,43.98800921013059,14.157469523954724,59.65783953108687,0.0,0.0,4.442651256490317,0.0,5.877735781779639,3.4339872044851463,7.528869256642251,6.008813185442595,9.284055409798464,8.31996102188653,11.098394384848318,40.99999999999999,16.88581662834887,0.0,0.0,0.0,0.0,8.777627734735871,1.8842078451751076,4.700250850340137,59.99200000000001,0.0,13.322080739735185,0.0,0.0,0.0,0.0,0.0,0.0035672293608803862,68.18987664627053,10.633577208012662,0.0,0.0,41.3446557657852,21.743467907482927,0.0,35.49390016081732,48.53093654769288,0.0,43.611699728324226,0.0,38.84281075680627,42.45665748502994,47.71540503262058,324.12380204578113,,241.08365294985617,236.66778590682685,236.90512587844393,241.13291472489544,328.4611437380879,239.37505287317612,241.33334465845283,295.54794897208734,47.71540503262058,324.1238020457811,,239.91324478659084,235.2652363597923,235.72822227602975,239.9657226966678,331.3489320594922,238.11654176983637,240.17612672798833,296.891130600539,5.270881217835159,209.6065322487358,,156.67462998916176,153.50431278393626,152.93059368283997,156.70813901729483,217.01811895772514,155.41898539283758,156.85695844745698,194.99670866882212,1.3632972866463022,9.26068005845089,,6.888104369995891,6.761936740195053,6.768717882241255,6.8895118492827265,9.384604106802511,6.839287224947889,6.895238418812938,8.44422711348821,2.7492415555297183,161.46441690463473,,120.14291163884556,117.95527274927852,117.89557903583325,120.16703327951384,162.37397851602447,119.29343617279322,120.266849044749,146.65051951696827,59.24705882352941,0.0,5.921656598755716,0.0,0.0,0.0,0.0,61.186453022578306,1.285595631771227,6.640111067383795,13.257545797640045,0.0,-0.3352347358696579,0.0,-0.7598920540438403,0.0,0.0,40.22001302666397,559.8346623935494,92.20271959989128,224.16533711689925,301.51031508484556,323.5103150848456,331.51031508484556,339.51031508484556,5410.0,161.28906920552598,69.27411825730611,90.99446750137326,69.45,69.45,0.6666666666666666,11.229947830111925,6.392317422778761,5.105777021711639,5.829074761792581,,5.812734078255245,5.812818840596137,5.81175554397637,5.812730261782022,5.7812981150234215,5.812747961788828,5.812729336391347,5.8010343921342775,0.14587934347747541,0.16654499319407376,,0.16607811652157842,0.16608053830274677,0.16605015839932488,0.16607800747948634,0.16517994614352632,0.16607851319396652,0.16607798103975277,0.16574383977526508,2.8831356165043944,3.0156212533115934,,3.0128140101257506,3.0128285922005102,3.0126456527504186,3.0128133535544324,3.0073912133379794,3.0128163985916285,3.0128131943537286,3.0107992136178625,333.0300000000013,362.32337259115326,269.81266583470034,,272.63701067705705,272.6950724980672,273.0546766388315,272.63745564453365,275.7250096356649,272.67291269755077,272.632624040587,273.5453122932931,10.352096359747236,7.708933309562867,,7.7896288764873445,7.791287785659063,7.8015621896809,7.789641589843819,7.877857418161854,7.790654648501451,7.789503544016772,7.815580351236945,7.145300076021801,6.850490856440295,,6.860904247716824,6.86111718886964,6.862435024355141,6.860905879803063,6.8721669956342275,6.861035923371371,6.860888157928613,6.864230252295743,17.95779664798018,13.322080739735185,11.034434758279907,5.507619834971026,0.0035672293608803862,16.96973514791719,0.3367121231208525,2.68314240047871,3.7682444514894007,383.4855074017452,121.67912896565218,-329.9891603267706,-15.112673165754282,-5.409658366012634,-18.332731129265035,274.0987289263541,743.3453064130247,17.273974667297566,12.18598862972172,17.287100149140112,2737.0,85.0,2.82295834022627,1.4839816237266303,0.11785113019775792,0.05270462766947299,1.1498760527919565,0.4328565209786814,0.08739623249838813,0.02559875679236708,0.0,0.0,0.0,0.0,0.22452510468485445,0.10009587326165396,0.8578562669029913,0.3117589804125247,1.715229691381955,0.5604942732578578,23.63709924364568,19.884238585850483,17.079865353114787,12.253121483232295,16.321500331474606,10.137473395669653,15.925853140937766,8.596240470277136,15.835108710858622,7.334286571677355,14.487400294173868,5.70331779293737,12.562155419058206,4.224530903125137,11.433010582146643,3.2752476317381283,8.354493745622323,3.827920277522692,17.379597780494908,6.859327076032979,32.62196775777637,11.002304348043284,112.61000726763325,58.416120192806495,35.23970882638041,29.21657063199028,27.2856920286786,25.48141915242023,220.0,290.0,70.902618,34.983382000000006,0.47540983606557374,574.07,9.340277777777779,7.347222222222218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,20.0,24.0,61.0,0.0,1.0,68.0,24.0,1.0,10.0,58.0,25.0,42.0,43.0,0.0,0.0,2.0,28.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,6.0,2.0,5.0,35.0,7.0,0.0,4.0,3.0,0.0,8.0,2.0,0.0,0.0,0.0,2.0,5.0,4.02535169073515,10.430664888202363,4.787491742782046,5.611758555843027,6.453428129121409,7.231400058718203,7.931228615501295,8.645356883364318,9.318572385933773,9.871405129186703 +4497,COCCOC(=O)C1=C(C)NC(C)=C(C(=O)OC(C)C)C1c1cccc([N+](=O)[O-])c1,0,23.714285714285715,6.45874642857143,3.107142857142857,8.785714285714286,164.1282063706781,93.57379125000001,1.37587970582275,6.494837500000001,6.23313492063492,7.980288999999999,208.9892156631067,25.035087719298247,6.513491228070175,3.7017543859649122,7.508771929824562,147.74696561173334,94.80302742105268,1.697585965789474,6.637371929824561,3.435185185185185,7.927612842105259,253.02576914978374,20.757575757575758,6.410909090909093,3.4545454545454546,6.282828282828283,156.43105981998818,77.60525263636362,1.4104550391962938,6.490169696969696,3.850729517396185,7.92546,207.1545766489208,19.983193277310924,6.415857142857143,3.3529411764705883,5.663865546218488,156.3400956671545,73.46060837815128,1.4331903320856128,6.501160504201682,3.3307656395891687,7.921209983193277,208.57127021738035,19.26896551724138,6.371055172413793,3.0551724137931036,5.337931034482758,158.2719095909705,71.12656860689653,1.3092529894625788,6.44367172413793,3.793869731800766,7.904440662068966,191.15686984929636,19.406666666666666,6.608053333333333,3.0,5.22,158.67198849585657,70.43129811333331,1.3110029089115662,6.668320666666667,4.055740740740741,8.145932133333334,194.61978354598406,19.363057324840764,6.467611464968153,2.8535031847133756,4.89171974522293,156.71789056302953,70.39945682802548,1.3360750221976878,6.542047133757962,4.041755130927106,7.977996738853503,192.72526224296627,15.24468085106383,6.286015425531917,2.3085106382978724,3.50531914893617,163.02495517426414,53.39636073404256,1.1375773001854574,6.337077659574468,3.2928486997635926,7.8595026808510635,156.95706959738143,14.45,6.271650000000001,2.0444444444444443,3.3777777777777778,165.47701972768667,50.549824166666674,1.0301613829566945,6.304174999999999,4.487808641975308,7.869775866666667,139.62793483308934,7.998724489795918,0.1783524234693877,0.024979960046940475,0.6377551020408163,4.927295918367347,1.3742324506349224,37.739271187499995,0.21946298633871808,0.16332343749999995,2.6050170068027207,0.11787299999999996,47.65568051240632,0.4123030791263868,0.016438240691013285,-0.010698214962274662,0.29896168993913347,1.8214509488005726,-0.0853068755192906,1.8438130624999958,-0.01735520741757342,0.01505441337719304,-0.12689461749612121,0.008526526315789477,-1.7614594452357304,1.3551716141001848,0.02121348562152136,-0.0002947492695490264,0.11440940012368585,0.7761672850958564,0.060177014030106404,6.438166176136362,0.03406589702025949,0.020579592803030327,0.5139604663414186,0.0133650505050505,8.133169561401825,-0.3795768307322931,-0.019639518307322888,-0.0023843872655733736,0.038415366146458595,0.08050720288115244,0.09851130783852645,-1.6895209543067258,0.012166173556729934,-0.017327849264705836,-0.12128184607176207,-0.011895092436974782,1.637897041950412,0.9190095003518644,0.006504078993666442,0.0053629526402222665,-0.024208304011259667,0.06580752990851516,0.0015622981287979859,4.345228060775861,-0.000655281296555067,0.008253890086206906,-0.08978027992806313,-0.0003254068965517238,3.2852043828928226,-1.1377721088435373,-0.04555437585034003,-0.004058461020973939,-0.07251700680272108,-0.9656292517006799,-0.01241504013912921,-5.16209262416667,0.008714715359409016,-0.04105027083333323,-0.523548752834467,-0.029933679999999973,-0.401539699821262,-0.6757035616794491,0.004073577440530398,0.00019593357100416552,-0.12205901468867801,-0.35814214220720136,-0.3102058362918264,-3.3450232145700642,-0.043108721945246564,0.002702040207006427,0.08924419024510016,0.004420891719745228,-8.616315804706801,-0.7329570125922709,-0.007004152192792006,-0.002763693958105458,-0.15371254884932695,-0.3366804168475901,-0.07877292333200925,-3.5291873204787234,-0.0303250427538321,-0.007285339095744667,-0.272549090558209,-0.005419021276595744,-6.2978691767116155,0.4334183673469388,0.04243156462585032,0.004289631649153315,-0.08696145124716555,0.2520691609977325,-0.10498886946033958,1.7808561416666682,-0.025544565833434577,0.03682531249999998,0.9236866969009825,0.030259199999999986,-4.452061424333888,,,0.4544444444444445,1.0583333333333333,0.43333333333333335,0.016666666666666666,0.625,-0.19166666666666668,1.0773638234208154,0.024913444894270144,0.030646778227603474,1.0086718207453873,0.2231778950675858,0.24904911211724726,2.086035644166203,0.47222700718483307,1.9757273362976178,1.4162006718501579,0.1342334846364216,0.42529317981103865,0.0,0.5595266644474602,7.467392878071442,1328.0,361.6898000000001,174.0,492.0,9191.179556757974,5240.132310000001,77.049263526074,363.71090000000004,349.05555555555554,446.89618399999995,11703.396077133975,1427.0,371.269,211.0,428.0,8421.5770398688,5403.772563000002,96.76240005000002,378.3302,195.80555555555554,451.8739319999998,14422.468841537673,2055.0,634.6800000000002,342.0,622.0,15486.67492217883,7682.920010999998,139.6350488804331,642.5267999999999,381.2222222222223,784.62054,20508.30308824316,2378.0,763.487,399.0,674.0,18604.471384391385,8741.812397000002,170.54964951818792,773.6381000000001,396.3611111111111,942.6239879999999,24819.98115586826,2794.0,923.8029999999999,443.0,774.0,22949.426890690724,10313.352447999996,189.84168347207392,934.3323999999999,550.1111111111111,1146.143896,27717.74612814797,2911.0,991.208,450.0,783.0,23800.798274378485,10564.694716999997,196.65043633673494,1000.2481000000001,608.3611111111111,1221.88982,29192.96753189761,3040.0,1015.415,448.0,768.0,24604.708818395637,11052.714722,209.763778485037,1027.1014,634.5555555555555,1252.545488,30257.866172145703,2866.0,1181.7709000000004,434.0,659.0,30648.691572761658,10038.515818000002,213.864532434866,1191.3706,619.0555555555554,1477.5865039999999,29507.92908430771,2601.0,1128.8970000000002,368.0,608.0,29785.8635509836,9098.968350000001,185.429048932205,1134.7514999999999,807.8055555555554,1416.5596560000001,25133.02826995608,447.9285714285714,9.987735714285712,1.3988777626286666,35.714285714285715,275.9285714285714,76.95701723555565,2113.3991865,12.289927234968212,9.146112499999997,145.88095238095235,6.600887999999998,2668.718108694754,23.50127551020405,0.9369797193877571,-0.6097982528496557,17.040816326530607,103.82270408163264,-4.8624919045995645,105.09734456249976,-0.9892468228016851,0.8581015625000032,-7.232993197278909,0.4860120000000002,-100.40318837843664,134.1619897959183,2.1001350765306146,-0.029180177685353616,11.326530612244898,76.84056122448979,5.957524388980534,637.3784514374998,3.37252380500569,2.0373796875000023,50.88208616780044,1.3231399999999995,805.1837865787807,-45.169642857142875,-2.3371026785714237,-0.28374208460323147,4.571428571428573,9.58035714285714,11.722845632784647,-201.05299356250038,1.4477746532508622,-2.0620140624999945,-14.432539682539685,-1.415515999999999,194.90974799209903,133.25637755102034,0.9430914540816341,0.7776281328322286,-3.5102040816326516,9.542091836734697,0.22653322867570796,630.0580688124999,-0.09501578800048471,1.1968140625000014,-13.018140589569153,-0.04718399999999995,476.3546355194593,-170.6658163265306,-6.8331563775510045,-0.6087691531460908,-10.877551020408161,-144.844387755102,-1.8622560208693815,-774.3138936250004,1.3072073039113523,-6.157540624999984,-78.53231292517005,-4.490051999999996,-60.2309549731893,-106.0854591836735,0.6395516581632724,0.030761570647653988,-19.163265306122447,-56.22831632653062,-48.70231629781675,-525.1686446875001,-6.768069345403711,0.424220312500009,14.011337868480727,0.6940800000000009,-1352.7615813389677,-137.79591836734693,-1.316780612244897,-0.5195744641238261,-28.897959183673468,-63.295918367346935,-14.809309586417738,-663.48721625,-5.701108037720435,-1.3696437499999974,-51.23922902494329,-1.018776,-1183.9994052217837,78.01530612244898,7.637681632653058,0.7721336968475967,-15.653061224489798,45.37244897959186,-18.897996502861126,320.5541055000003,-4.598021850018224,6.628556249999996,166.26360544217684,5.446655999999997,-801.3710563800998,0.7473973590983786,0.5901923131101087,0.45699387792080626,0.30719344935235116,0.3007674836706017,0.16551889530740205,0.174716354804797,0.08200844317310511,0.11275073304324874,0.04375987381701753,0.06648517920128141,0.022943991885890042,0.04451907882555841,0.012591816969159989,0.02720630496133454,0.006476970372872242,8.0550308850294,5.6869484899986,3.607887432920399,2.1858490363600693,0.46939310154903374,-0.4915025081491715,3.284446065770337,0.9724526995769459,7.004124580712448,0.9884412912543594,14.59478789858445,10.94830206613413,16.028642931260286,11.698764271028388,1.9964667924848958,0.6692073678775698,3.5533868692852617,2.2355103913506453,8.001939590925687,1.2404835351052506,3.757323348390378,2.4313487756622965,20.9017272724766,14.651497126815348,0.2642241847313895,0.5877443901297603,0.7751977005943378,0.8167096121483222,0.8285701583066037,0.834500431385744,2.3301979771263874,902.3708831618353,0.0,2.0,6.0,0.0,7.0,1.0,3.0,1.0,0.0,4.2160996965076,2.2677420246520965,1.1388292412645953,0.8888292412645953,0.8174006698360223,0.7816863841217385,210.90285647691007,1907.161757033014,64.43931746334424,34.056459947018105,73.82721038856262,,12.0,565.0,22.779827670882764,19.703392636909218,36.15132565159623,16.957530117808663,0.0,25.30889874666236,33.761315867224106,0.0,5.316788604006331,14.210588861400147,13.633333333333335,31.75,13.0,0.5,18.75,0.0,0.04555555555555551,-5.75,0.18804112554112562,0.049152236652237,-0.13888888888888862,0.019534050179211393,0.21215950920245363,0.0,0.6244047619047615,0.9055555555555551,0.43636363636363584,0.5752525252525245,0.8860215053763437,32.320914702624464,0.7474033468281043,0.9194033468281042,30.26015462236162,6.695336852027574,7.4714733635174175,62.58106932498608,14.166810215544992,0.5018404907975463,0.2811735941320293,0.0,0.3960880195599022,0.42857142857142855,0.33872944707437413,-0.9879684853367643,-0.06328392539848848,-0.017642294381013647,-0.06586456568911762,0.6612705529256259,1.9287206123189176,0.035265373848211976,0.034441439505694955,0.04704196615411994,-4.767677733271602,0.7518037639146503,0.5966326044657451,1.447515766008761,0.7970175438596492,0.4004023779355196,1.3532099362533043,0.7630967819329645,1.2769254998386026,0.5879077231379557,0.5716846724831228,0.6268402229007913,1.099199518952877,0.7522280692428995,0.7859472414859272,1.1306271733992312,1.1044444444444443,0.8033480024160843,1.0445001511427197,0.7536348314583883,0.9228207673313417,0.7732459495161954,0.45466635233242064,0.8082587608751362,0.8472520209768151,0.9487650904724831,0.9759378844920351,1.3539490988250604,1.203529411764706,0.9045088395182044,1.0723231009529817,0.9495975339518767,1.0175190581063658,0.9654597821219238,0.6828422571901294,0.9687887015028456,0.9741394710067307,0.826486453791124,0.8985142048719998,0.9668615788623731,1.3275862068965516,0.9883867281994521,1.0531724987806195,0.8278540906599234,1.0501227577184646,0.8801293521116778,1.0803927031098457,0.9504223548773104,0.9363822933799604,1.1288258119385532,1.4263079314654712,1.403351224846628,1.3398,1.300276123910605,1.0476139346428617,1.1193204273369142,0.9842287992932384,1.3998147664740985,1.4439158188709358,1.473826814412445,0.9668556799170761,1.0081082975216014,0.915429396665285,1.1461386569233527,1.324203821656051,1.0156787157600031,1.3284928916673509,1.0138934293066018,1.2519205569936864,0.9124121188483432,0.914499689342741,0.9142534244784531,1.1758570401621282,1.065572866657393,0.9997291549099099,1.1427283297964799,1.1877659574468085,1.0183698591657901,1.0641863349748977,1.0679212634218085,1.1101165677940898,1.0053409507230762,1.0015422667023188,0.9954809561792809,1.1066778192213467,0.9584241393362746,0.7870022854219543,0.7482457541327309,0.945388888888889,0.9290850519170479,1.0061513351062128,0.9640781716335625,1.0555732474320043,0.8017711228556271,0.6610645654631293,0.7624134392557824,1.05990105492035,6.5,0.08672584430160188,3.333333333333335,3.0625,2.377777777777778,1.7916666666666667,1.0220408163265307,1.0503472222222223,0.3575207860922146,0.2725000000000001,6577.874610384859,7349.12363679384,2890.217598798202,2631.1713788888746,12.809963517352902,0.4587527019019426,6.9333581425019455,0.8475842808158106,1.0,0.42857142857142855,1.5912552255500043,3.539612897405507,4.6685256807930084,4.9185256807930084,4.989954252221581,5.025668537935865,0.2096774193548387,0.005420365268850117,0.07751937984496127,0.06249999999999999,0.04246031746031746,0.031432748538011694,0.01762139338494018,0.021006944444444446,0.008512399668862252,0.012386363636363638,0.48853733160158974,26.253902185223726,12.296376419686316,6.997685950413223,174.38701541226436,1.0,4.295508679913573,159.65981896188632,,131.82734492139377,129.67831382142674,134.0166008901913,131.86433676022796,201.82963060673984,131.1910488798428,131.929330627951,166.89320612488666,0.05154610333839695,0.09216718433789453,-0.42827190044224955,0.46877192982456123,0.36966542683397596,-0.06207601594612116,0.0488566155223131,-0.07908033927319061,0.09217546242983676,-0.04871162728103104,0.07233655133736717,-0.03696221366049249,0.1694234644322349,0.11894139260273312,-0.011799429182238707,0.1793939393939394,0.15752398434251916,0.04378954521289571,0.17059593292487354,0.1552238834829412,0.12600514119738837,0.19729639576220281,0.11338517306805208,0.1706652695744109,-0.047454669956006675,-0.11011635236172611,-0.09545200477073666,0.06023529411764708,0.016339023313182377,0.0716846031346533,-0.04476824541503941,0.055436106833763404,-0.10609530101707443,-0.046557026597157575,-0.10091447945648949,0.03436939782077006,0.11489450618336179,0.036467567230914565,0.2146902008708023,-0.03795862068965516,0.013355708891606496,0.001136851431558157,0.11513810214265845,-0.0029858396966480224,0.05053708281278925,-0.0344643738192924,-0.0027606567793449213,0.0689362600128557,-0.14224419284537287,-0.25541775639599845,-0.16246867542412327,-0.11370666666666664,-0.1959754940029338,-0.009034163131130557,-0.1367830501686121,0.039709271730945864,-0.2513434168524235,-0.20097709591425927,-0.2539485717679196,-0.008425851766333044,-0.08447641402594294,0.02284004535116162,0.007843630279471296,-0.19138853503184713,-0.07268533251111724,-0.22573025120204754,-0.08863507718394951,-0.1964282117200063,0.01654410566154308,0.03425858257817457,0.03750555020865873,-0.18080354140496838,-0.09163423662451609,-0.039271415866093874,-0.11063644429022829,-0.24102127659574465,-0.0683296522931687,-0.057321396606239805,-0.09351498344906196,-0.13817839290233927,-0.0446068194942607,-0.10462468761105069,-0.04597338895757083,-0.13215358817658843,0.05418593525753469,0.23790853973528006,0.17172291873536064,-0.13635555555555556,0.05115770702102571,-0.07639818824816184,0.04718840840404262,-0.11639578162856684,0.22547475771810147,0.3545799104147399,0.25671018808378504,-0.09342142167448163,4.23912187421989,15.046354100074575,16.853754725729267,15.296046391631565,35.5664090843116,39.74585365543593,40.39081794115022,41.391175084007365,41.82013936972164,59.271820088928536,42.48602015550473,4.027004539092648,12.758795394331159,0.0,16.785799933423807,5589.899959653354,4315.715777320023,2758.648156822876,104.0,43.0,55.0,75.0,95.0,109.0,117.0,124.0,114.0,418.1740011720007,31.0,5.003946305945459,5.84354441703136,6.736966958001855,7.613324979540639,8.521384396034705,9.415157006597509,10.330551060196788,11.233436404613535,12.152677143050752,0.6607142857142857,1.0024285714285714,1.1329632932895723,0.6221172258762799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6439330410607358,0.9867647058823533,1.0211216314639473,0.617201469861301,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,6.0,0.0,5.0,0.0,0.0,0.0,0.0,2.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,19.527377465406477,6.606881964512918,0.0,0.0,5.687386274683562,10.114318268765572,9.589074368143644,0.0,0.0,12.13273413692322,33.25840029045949,30.636610304312416,34.69827450737882,221.48807288388167,-646.0118474411847,-41.380029997689995,-11.53592584716401,-43.06745649607898,432.39092936079174,1261.1499095918293,23.059287465654243,22.520534099854096,30.75975389248364,0.5,0.7717863835808899,0.15764611738529638,0.0,0.11537253995745485,33.78499795001325,0.22821361641911017,6.0,0.25806451612903225,0.2740068838407084,0.6095051783319259,0.8038988047830394,0.8469476632315639,0.8592473370739998,0.8653971739952172,2.9708000000000014,,2.0357142857142856,2.371335504885993,1.6624384720634042,2.0298594106552312,-8.6124234867377,2.1334149326805387,2.019989587756737,-3.4316106028930373,108.43610000000007,28.72297427836146,0.0,5.316788604006331,0.0,39.71682123267219,20.32356147030337,62.48352572055921,0.0,0.0,4.143134726391533,0.0,5.459585514144159,0.0,6.970730078143525,0.0,8.590257762273243,0.0,10.27756518740266,37.0,5.843378794993153,0.0,0.0,0.0,0.0,0.0,0.267420076182703,0.0,56.135999999999996,0.0,37.093989728470774,0.0,-0.5273681658282126,0.0,0.0,0.0,0.13343970458554022,63.44594442421605,5.316788604006331,5.687386274683562,0.0,43.289449482773044,23.79966322954379,10.114318268765572,39.17630633662088,46.80575596009664,0.0,0.0,0.0,34.83856464907168,36.060250299401204,36.10294548538506,319.3196379237727,,263.51897555707325,259.19853860919443,267.92237254891177,263.5933495597456,405.7187680533948,262.2398700975069,263.72399528338485,334.4727343703519,36.10294548538506,319.3196379237727,,261.6480435711322,257.0355601047972,266.44631781200593,261.72773137818024,412.2716847002173,260.28606050685084,261.8666537735443,337.2180228526662,5.0156395685458985,206.4941226967727,,173.39135928764995,170.64774749642524,176.55639456438504,173.43964964447935,266.9048047562243,172.59265691941982,173.52033694958212,219.26312163278345,1.203431516179502,10.643987930792424,,8.783965851902442,8.639951286973147,8.930745751630392,8.786444985324854,13.52395893511316,8.74132900325023,8.790799842779496,11.149091145678396,2.5078197842729493,159.65981896188632,,131.82734492139377,129.67831382142674,134.0166008901913,131.86433676022796,201.82963060673984,131.1910488798428,131.929330627951,166.89320612488666,55.258823529411785,0.0,8.294183169026104,0.0,0.0,0.0,0.0,57.18281136198105,0.24238886754579525,3.034431531872008,15.59458962650972,0.0,-1.2637852571010046,0.0,0.0,0.0,0.0,34.56328231223286,504.6549104418971,89.11029263080025,198.2183222547084,261.43743812440846,275.43743812440846,279.4374381244086,281.43743812440846,897.0,137.8509886710126,149.22409180277637,65.44127326835512,117.0,117.0,1.0,8.294549515143679,5.954196310386875,4.3264805528290164,5.368515836301746,,5.367155875269876,5.3692584738854645,5.361081225370941,5.367108345533648,5.289836888297234,5.36760549154706,5.367073169826088,5.32585807787995,0.14421601842763387,0.17895052787672486,,0.1789051958423292,0.17897528246284883,0.1787027075123647,0.17890361151778827,0.17632789627657447,0.17892018305156868,0.17890243899420294,0.1775286025959983,2.563366694825869,2.7791637784117764,,2.778910424718467,2.7793021008542955,2.7777779645591396,2.7789015690139207,2.764399700092664,2.7789941930039617,2.778895015052166,2.771186128667626,311.68000000000086,428.64020330359006,189.64640262442842,,188.73445137757557,188.47489522134427,189.29000810586786,188.73977626147698,197.09797891360208,188.67096839362753,188.74544084943386,193.36208917685127,14.288006776786336,6.321546754147614,,6.291148379252519,6.282496507378142,6.3096669368622615,6.291325875382566,6.569932630453403,6.289032279787585,6.291514694981129,6.445402972561709,7.159230168763451,6.343773588125504,,6.338953296596541,6.337577104837052,6.34189256210872,6.338981509828131,6.382313248657529,6.338616878616189,6.3390115220654355,6.363176829601841,15.59458962650972,36.56662156264256,14.321763455615438,1.6535443098267792,-2.134679993911144,5.843378794993153,-0.3817897922483966,7.051902192491118,1.4846698440807804,398.59266902720054,144.82640010640804,-422.4135822430801,-27.05753272774419,-7.543099682912143,-28.160905482872003,282.73134947008157,824.6394445648655,15.0779838805151,14.72570436722974,20.113157184508914,2290.0,49.0,2.3510573320459267,1.003676160363753,0.0,0.0,0.6105659768236507,0.16922431040236466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12869425449598476,0.04581997368995358,0.26551430732207915,0.09307408205899381,22.421920772951356,17.70576939330326,14.166810215544993,9.522996929922886,12.933001797835873,7.117312498218288,9.609399514263835,4.510464374520781,8.456304978243656,3.2819905362763144,6.316092024121734,2.179679229159554,4.852579591985867,1.3725080496384388,3.183137680476141,0.7578055336260523,4.753668823924453,1.761586461992247,8.25790500788073,2.6103983528992463,13.32496731122642,3.674843728278556,103.62624712066065,45.15859187415747,32.80128119999887,30.911364101680245,29.007686640651446,28.191824871639092,148.0,172.0,60.22061799999998,34.76338200000001,0.21428571428571427,91.09,12.722222222222221,6.8055555555555545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,56.0,0.0,0.0,57.0,6.0,5.0,8.0,49.0,11.0,31.0,46.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,8.0,1.0,1.0,30.0,9.0,0.0,2.0,7.0,0.0,2.0,8.0,0.0,0.0,0.0,0.0,1.0,3.6888794541139363,6.790940524390302,4.212127597878484,4.684443366882599,5.2074348700708635,5.676111472731156,5.9468920386112885,6.260537030310592,6.523011493687225,6.7024209478791095 +135398744,CCCc1nn(C)c2c(=O)[nH]c(-c3cc(S(=O)(=O)N4CCN(C)CC4)ccc3OCC)nc12,0,25.841269841269842,6.257190476190475,3.3015873015873014,7.499118165784832,165.92985272980272,102.1140393650794,1.475190526118571,6.312625396825395,4.628210257582686,7.790568269841267,209.08110405344982,29.060606060606062,6.434843939393939,3.984848484848485,6.393939393939394,149.26471491879406,110.98467339393946,1.7818981407575767,6.578366666666668,2.744154508043397,7.879768848484844,254.49596013283283,22.9,6.420424166666668,3.5833333333333335,6.172222222222222,161.43942684319617,86.19982710833332,1.476024627367758,6.499837499999997,3.3022376543209875,7.908028033333332,208.08462299689128,21.126666666666665,6.311390666666667,3.2666666666666666,5.082222222222222,160.50585812901775,77.77838311333332,1.4372493977414997,6.399336666666668,3.056995884773662,7.854604506666668,196.76851755156414,19.196428571428573,6.351694642857142,2.994047619047619,4.420634920634921,161.77024119555347,69.47137418452381,1.3192406099102558,6.423123214285715,3.447677836566728,7.908264297619047,181.2058960513726,18.52760736196319,6.3159607361963195,2.914110429447853,3.9734151329243352,162.82932968610658,66.90575777300614,1.30462497938881,6.384569325153373,3.178993410588503,7.86684809815951,179.57718828513342,19.10062893081761,6.2819358490566035,2.981132075471698,4.576519916142558,160.86693319426539,69.2888752138365,1.3543562507498426,6.357066037735849,3.4496952403136896,7.822242830188679,182.0273080748896,18.22222222222222,6.241530864197533,2.8703703703703702,3.5925925925925926,162.05513210742927,65.75124404320987,1.2835532268309937,6.3143882716049395,3.0518213686937963,7.811930567901235,173.65427601656341,18.441558441558442,6.42545194805195,2.7662337662337664,3.4415584415584415,163.2384097561388,65.81530862987015,1.259620192097273,6.485306493506495,3.722372534872534,7.9861517532467525,172.9809733337617,9.841269841269842,0.136671554547745,0.017609060749351983,0.6802721088435373,4.300887433162567,1.5543759198026965,45.36771122197026,0.25988411790388255,0.1275353489543965,1.7351112497023402,0.08254149206349207,49.09109484265716,2.1515151515151514,0.002597877871687596,-0.007465545886135065,0.32622139764996877,1.336812315648294,-0.4858990992666686,9.37399631338327,-0.03949546167807202,0.00786585354680622,-0.2591432939675803,0.0065081717171716486,-1.9108341461427338,1.8333333333333333,0.016891130637440348,-0.001160178446600942,0.10623582766439908,1.1936745891772353,0.11503704503609105,8.589920695886873,0.048853968511756725,0.017266648400101003,0.3466169094778081,0.009082066666666591,8.798151853634154,-0.02,0.0035177364575461026,0.0006927470585315579,-0.005351473922902491,0.6660143892948128,0.1115324863230327,0.2826521114688876,0.0032016116156047326,0.00426620660115913,0.0678818879581503,-0.0029370755555556123,3.7742955842468047,-0.6130952380952381,-0.0040966962711008765,0.0010643846107677142,-0.022392290249433105,-0.13424176254864087,-0.12725869083885147,-2.658971642510705,-0.01589437812386377,-0.0037569570420759035,-0.09088748414063592,-0.005045888888888965,-1.3345704713980548,-0.17177914110429449,-0.025642145647170322,-0.004671731960724383,-0.02694656594744237,-0.6473995894906727,0.018104771371631596,-0.985774822028695,0.005205352181453673,-0.022414246607527166,-0.34159125344527635,-0.01244835514655766,-0.4610815303785135,-0.16981132075471697,0.03541421963614245,0.005406934964616902,-0.04894536430924572,0.32137693962591657,0.06678528804525106,-0.7976163675228265,-0.01500258869555623,0.029341230859919198,0.3154154235402533,0.023155811320754678,-3.0807490123975994,0.024691358024691357,-0.010387623526776872,-0.0008584006070028156,-0.0850340136054422,-0.6165187611395725,-0.1475646199905497,0.062349199840432426,-0.01159202018710196,-0.00805611125108469,-0.24567320026962491,-0.007115267489711975,-1.5637295434404501,-1.2467532467532467,-0.01793232552280148,-0.0026520163631223287,-0.12141826427540714,-1.140737177774215,-0.20039857418720777,-5.831868417703104,-0.025680860804634994,-0.01709832566023017,0.09960706315383294,-0.008726746031746136,-5.739168553831033,,,0.47171717171717176,1.2045454545454546,0.5303030303030303,0.030303030303030304,0.6742424242424242,-0.14393939393939395,1.0093733369626856,0.01995837199453597,0.03038261441877839,1.0644473132724088,0.22320311860991174,0.2542389203765552,2.0738206502350947,0.4774420389864669,2.0326158454734267,1.3602659897101113,0.3831043373084867,0.22075568390644004,0.0,0.6723498557633153,7.527062292698426,1628.0,394.2029999999999,208.0,472.44444444444446,10453.58072197757,6433.184480000003,92.93700314546997,397.6953999999999,291.5772462277092,490.8058009999998,13172.109555367339,1918.0,424.6997,263.0,422.0,9851.471184640408,7324.988444000004,117.60527729000006,434.17220000000003,181.1141975308642,520.0647439999997,16796.733368766967,2748.0,770.4509000000002,430.0,740.6666666666666,19372.73122118354,10343.979253,177.12295528413097,779.9804999999997,396.2685185185185,948.9633639999998,24970.154759626956,3169.0,946.7086,490.0,762.3333333333333,24075.878719352662,11666.757466999998,215.58740966122497,959.9005000000002,458.5493827160493,1178.1906760000002,29515.277632734622,3225.0,1067.0846999999999,503.0,742.6666666666667,27177.40052085298,11671.190863,221.63242246492297,1079.0847,579.2098765432103,1328.5884019999999,30442.5905366306,3020.0,1029.5016,475.0,647.6666666666666,26541.180738835374,10905.638517000001,212.65387164037602,1040.6847999999998,518.175925925926,1282.2962400000001,29271.081690476745,3037.0,998.8277999999999,474.0,727.6666666666666,25577.842377888195,11016.931159000005,215.34264386922496,1010.7735,548.5015432098767,1243.73661,28942.341983907445,2952.0,1011.1280000000004,465.0,582.0,26252.93140140354,10651.701534999998,207.93562274662096,1022.9309000000002,494.395061728395,1265.532752,28131.992714683274,2840.0,989.5196000000002,426.0,530.0,25138.715102445374,10135.557529000003,193.98150958298004,998.7372000000001,573.2453703703702,1229.86737,26639.069893399304,620.0,8.610307936507935,1.109370827209175,42.85714285714285,270.9559082892417,97.92568294756988,2858.1658069841264,16.3726994279446,8.03472698412698,109.31200873124743,5.200114,3092.738975087401,142.0,0.17145993953138133,-0.4927260284849143,21.530612244897938,88.22961283278741,-32.06934055160013,618.6837566832958,-2.6067004707527532,0.5191463340892105,-17.1034574018603,0.42953933333332883,-126.11505364542043,220.0,2.0269356764928417,-0.13922141359211304,12.74829931972789,143.24095070126825,13.804445404330925,1030.7904835064248,5.862476221410807,2.0719978080121204,41.594029137336975,1.089847999999991,1055.7782224360985,-3.0,0.5276604686319154,0.10391205877973368,-0.8027210884353737,99.90215839422193,16.729872948454904,42.39781672033314,0.4802417423407099,0.6399309901738695,10.182283193722544,-0.44056133333334185,566.1443376370207,-103.0,-0.6882449735449472,0.178816614608976,-3.761904761904762,-22.552616108171666,-21.379460060927048,-446.70723594179844,-2.6702555248091135,-0.6311687830687518,-15.269097335626835,-0.8477093333333461,-224.2078391948732,-28.0,-4.179669740488762,-0.7614923095980745,-4.392290249433106,-105.52613308697964,2.9510777335759504,-160.68129599067728,0.8484724055769487,-3.6535221970269283,-55.67937431158005,-2.0290818888888986,-75.1562894516977,-27.0,5.630860922146649,0.8597026593740875,-7.78231292517007,51.098933400520735,10.61886079919492,-126.82100243612942,-2.3854116025934404,4.6652557067271525,50.15105234290028,3.6817739999999937,-489.8390929712183,4.0,-1.6827950113378534,-0.13906089833445612,-13.775510204081638,-99.87603930461074,-23.90546843846905,10.100570374150053,-1.8779072703105175,-1.3050900226757198,-39.799058443679236,-1.1526733333333399,-253.32418603735292,-192.0,-2.7615781305114284,-0.40841051992083865,-18.6984126984127,-175.6735253772291,-30.861380424829996,-898.1077363262781,-3.9548525639137893,-2.6331421516754463,15.339487725690272,-1.3439188888889049,-883.8319572899791,0.7197075120514408,0.6144122511097436,0.4376552024042614,0.35046068580571593,0.2775936247886939,0.1918551636722359,0.170284753655036,0.10616485078677027,0.1081513740205583,0.056551489723692595,0.06705595014629895,0.03237700710735807,0.04325300397144595,0.018497470158879252,0.02650574589040586,0.009788112506166473,16.013124191672084,5.693123908891465,3.581095363298197,2.182568687721651,0.4933350819809581,-0.5242264180730551,4.048491842659415,0.9713500306632016,6.0228482102158285,0.6449047982732427,14.692721578310707,10.319763776259823,32.06654454718672,11.705077086685955,2.9546223876378024,0.7486457086032935,3.5371272008328183,2.235349872263026,7.014579968879285,0.29758747468874325,3.7684029294685657,2.433678829770106,24.441834346889202,14.701014100021109,0.2745677105480124,0.5882728432302604,0.7767127890551541,0.8397961346751049,0.8397961346751049,0.8397961346751049,1.4979644016816145,1322.639953437774,0.0,2.0,7.0,0.0,8.0,2.0,1.0,0.0,0.0,4.2670474362317945,2.3130350424761175,1.139276785885989,0.7463420636294273,0.7463420636294273,0.7463420636294273,326.27374958103144,2149.9685172453433,60.29904652814551,34.12648440071973,67.90153680672071,,15.0,803.0,10.023291153407584,13.212334168400758,16.27915486856971,61.553093971302644,12.114749617774471,8.987018926441419,25.24677318806202,20.89514638205844,14.982570060098723,9.720841474747257,15.566666666666668,39.75,17.5,1.0,22.25,0.0,0.028282828282828236,-4.75,0.15859361665813276,0.03386243386243415,-0.12473118279569861,0.016874628639334532,0.17411560693641592,0.0,0.6005291005290997,0.8737373737373735,0.4419354838709669,0.5666666666666655,0.856862745098039,33.30932011976863,0.658626275819687,1.0026262758196869,35.12676133798949,7.3657029141270876,8.389884372426321,68.43608145775812,15.755587286553409,0.539884393063584,0.19271948608137043,0.05353319057815845,0.33404710920770875,0.5,0.28081051165573784,-0.8111721766320537,-0.04510117775306593,-0.012875748835429421,-0.04506512092400298,0.719189488344262,2.0775094893396155,0.03591617147054111,0.03297634110062882,0.04616687754088033,-5.371828494381849,0.8287878787878787,0.7044329765219491,1.514726837163112,0.7452525252525255,0.5265930629982389,1.6507953766093517,0.824829682504947,1.4082605196819409,0.6551603880112193,0.6879611487368067,0.6326603609074722,1.110470203612038,0.7691666666666667,0.8685510113938735,1.2880191304488529,1.0608888888888892,0.7765032675484272,1.0776818609662018,0.7657462717121815,0.8083435353776846,0.8421116875989505,0.5414366789656374,0.8574437855272656,0.7908188800940982,1.1963333333333332,0.9644171530100316,1.136926132824634,1.2152000000000003,0.8739210581128928,1.0642707804623812,1.1644920758715398,1.1832354526630664,0.9464909031786227,0.848635786770907,1.033340328051782,0.9350154210034703,1.1547619047619047,1.1799907742547044,1.0058566135351727,1.158194444444445,1.134033762497396,1.133786970746288,1.138770271393989,1.1397841716509307,1.1589132037556023,1.4624646512169999,1.2630758259750234,1.0070471209685015,0.945398773006135,1.295847001067489,1.3408717025206636,1.065030674846626,1.2370603868314751,1.0261956391128242,0.9536434819402718,0.9245705977682388,1.2664108003640455,1.482548499748907,1.2861141121136954,0.969065353548411,1.059119496855346,0.7260994227782628,0.8697816065319501,1.1509643605870026,0.9323875627326067,1.0328338538572646,1.051359818238751,1.1335471628789926,0.7474962514285566,0.8030820628597132,0.7183113556946861,1.0637536537979089,1.0138888888888888,1.1476114843358864,1.2080186457897877,1.2680658436213996,1.215897946608345,1.113822710190035,1.0106470373423548,1.0715517407357056,1.123277621028752,1.3849049244294556,1.1944187553115226,1.0173985954778453,1.1785714285714286,1.4055149911427012,1.5344328855269125,1.230606060606061,1.4016433602847889,1.1537492195569417,1.172704802946426,1.1087127526226472,1.37770656374068,1.3276754973124942,1.4516366247095607,1.0650613345902777,8.0,0.2380410162228344,5.1111111111111125,3.479166666666667,2.2050000000000005,1.864722222222222,1.1722902494331067,0.8142715419501134,0.5175107079868984,0.49907407407407417,7663.44309981953,8539.632099305878,3645.4053794655338,3345.45917198046,16.2391486707234,0.4732058846779573,8.554687957576858,0.8982748115716412,1.0,0.5,1.7102324872681225,3.6642448810237993,4.838003137613928,5.230937859870489,5.230937859870489,5.230937859870489,0.2222222222222222,0.0076787424588011105,0.09643605870020967,0.058968926553672314,0.038017241379310354,0.03518343815513627,0.02170907869320567,0.015966108665688497,0.010781473083060383,0.012476851851851854,0.5194401417631584,26.074074074074073,10.947668209327162,5.404391067742541,192.78073394335604,1.0,4.431123590592277,194.1661799805712,,133.71451950448184,147.172146361625,147.82455079510626,133.7322258223473,190.54523726561388,148.02322068232263,147.83825696300067,179.75719530015164,0.21862170087976537,0.01900818264842411,-0.4239604821858428,0.47954545454545416,0.3108224375603566,-0.31260076348091254,0.20662264110083023,-0.15197335641987678,0.06167586956318168,-0.1493525524729533,0.07884727492162938,-0.03892425199045135,0.18629032258064515,0.12358921864417353,-0.06588531115401125,0.15616666666666668,0.2775414627161009,0.07400850950566268,0.18933996149506047,0.18798366327959,0.13538715769127765,0.19976638935242366,0.11003031856609206,0.17922093369140138,-0.002032258064516129,0.025738614514091974,0.03934037529838445,-0.007866666666666664,0.1548551083107686,0.07175386912658167,0.006230248426815224,0.012319381582174407,0.03345116970420978,0.039122498900168785,-0.03558301991071803,0.0768835080240902,-0.062298387096774197,-0.02997475432731492,0.06044528018377606,-0.03291666666666667,-0.031212572901478858,-0.08187124441235871,-0.058609340671853034,-0.061159482357218395,-0.029458162563379183,-0.05238135834588575,-0.061131544423834706,-0.027185591922028084,-0.017454977241242824,-0.18761874577355792,-0.265302734042547,-0.039611451942740294,-0.1505269783391241,0.011647614416163698,-0.021728555297965153,0.02002951247439776,-0.17574928669808984,-0.19686994335601052,-0.15081330413778093,-0.00939236600561334,-0.017255021302495434,0.2591191689692152,0.3070541377294004,-0.07194968553459122,0.07472340176771351,0.04296598216326486,-0.017581146283098453,-0.05772799360176714,0.23006351651110388,0.1817839770183976,0.2805354100328463,-0.06275576094344136,0.002508960573476702,-0.07600428312350868,-0.048747665717173747,-0.12500000000000006,-0.14334687217940706,-0.0949349627143482,0.0013743078096970104,-0.04460457330212553,-0.06316767325398824,-0.14158930749355142,-0.08620231245927577,-0.031853629430192806,-0.12668621700879765,-0.13120744533960052,-0.1506052140356165,-0.17848484848484852,-0.2652329770313003,-0.12892542378850363,-0.12854667473017461,-0.09881658414437235,-0.1340673452529942,0.05740673007043244,-0.1057255667856525,-0.11690854669723208,9.071613901345833,17.078698789845888,10.517865912701527,18.488070272782366,39.2939101988944,42.70470974671668,43.100787946751296,43.100787946751296,43.100787946751296,67.07632290062308,44.88877766043367,12.64244313118006,7.284937568912522,0.0,22.187545240189404,10443.111634954877,7967.390868352821,3124.2500400067083,244.0,53.0,73.0,98.0,126.0,150.0,175.0,196.0,216.0,474.20492444000087,36.0,5.187385805840755,6.066108090103747,6.980075940561763,7.8826922062890254,8.803724602110622,9.714685039642484,10.63875987814672,11.55361625088301,12.479129539536409,0.6666666666666665,0.9895873015873018,1.1385931103078966,0.6271764110412018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6601253683109971,0.9752878929349517,1.0110463704782717,0.6146261844991748,3.0,2.0,1.0,0.0,0.0,2.0,5.0,1.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,14.620751205597735,17.090617048900093,5.516700717616262,10.023291153407584,5.559266895052007,9.476340119217006,13.401775505276145,9.40389779959727,0.0,13.344558822616634,38.591332010678656,33.22669760632749,22.75974492657615,208.99975462277678,-603.7337593713929,-33.56760054319146,-9.583075545577664,-33.54076440952183,535.2735042038082,1546.2347578739502,26.731445984954053,24.54340885514207,34.360772397198886,0.4666666666666667,0.8322938123637647,0.17070505594339266,25.78443576394724,0.09584247883033052,96.1277939988107,0.1677061876362351,8.0,0.19444444444444445,0.28612220092692575,0.6130288237995468,0.8093987900069936,0.8751368393012424,0.8751368393012424,0.8751368393012424,1.6109,,2.4821428571428577,2.232273493580697,1.9571337609892996,2.4774220897208385,-7.014130035413034,2.013616891064872,1.9069132637078843,-3.3543468065212076,125.98550000000004,13.154659938128987,0.0,28.95356750748735,7.04767198267719,31.584601120751042,39.833579570840406,34.24683327935712,0.0,17.137367822980828,4.290459441148391,0.0,5.652489180268651,2.3978952727983707,7.217443431696533,4.844187086458591,8.876963340262272,7.034387929915503,10.586912626197837,41.99999999999999,4.714448223733938,9.154593056060513,2.803084502128063,0.0,0.0,0.9113416172545068,2.0297100478325345,1.535366823816048,62.344000000000015,0.0,39.57096070613461,0.0,0.0,-3.6980905452171675,0.0,0.0,0.0,71.73136594939749,10.296129848852056,0.0,5.749511833283905,77.20494406265668,23.491784759010784,0.0,25.96222401715572,27.889121864974427,0.0,22.421257424929443,0.0,39.51211389559571,41.587898203592815,41.69168706912688,388.3323599611424,,268.0976828273106,294.32414097852364,295.7164076727802,268.1338329909777,383.31993812134226,296.0194471515669,295.63407899566744,360.334383456802,41.69168706912688,388.3323599611424,,266.06683867146637,292.37667394981037,294.04546558913097,266.10685128120605,388.1046045666408,294.25331613889995,293.95830673362104,362.86873740682455,5.006184751122994,278.5440966064908,,189.68822008309195,211.87158163656068,212.6017552964616,189.7085467589024,263.85121393623933,212.71651029063008,212.04096820264442,253.41561242795768,1.2633844566402084,11.76764727154977,,8.1241722068882,8.918913362985565,8.96110326281152,8.125267666393263,11.615755700646735,8.97028627732021,8.958608454414165,10.919223741115212,2.5251338994357635,194.1661799805712,,133.71451950448184,147.172146361625,147.82455079510626,133.7322258223473,190.54523726561388,148.02322068232263,147.83825696300067,179.75719530015164,61.443137254901956,0.0,7.571701612118262,0.0,0.0,0.0,0.0,63.695921340131115,4.141834065197577,0.0,5.755543897540651,0.0,0.0,3.5908676212574053,0.0,0.0,0.0,38.72144962344802,619.4540280291815,107.74464669789171,230.84742750449936,304.79419766967743,329.54908517184083,329.54908517184083,329.54908517184083,1400.0,148.30617735311455,124.81923079740345,83.90073830874616,121.79999999999998,113.41999999999999,0.875,9.574849741811768,6.169925001442312,4.791278842892312,5.648384879250996,,5.612902398372041,5.624582994960393,5.625509391914704,5.612884574648231,5.593901755388395,5.623739433772565,5.622661073929162,5.610203752927603,0.1451902679664337,0.17116317815912108,,0.17008795146581943,0.17044190893819375,0.17046998157317286,0.1700874113529767,0.16951217440570895,0.1704163464779565,0.1703836689069443,0.1700061743311395,2.760719826076635,2.925292110684962,,2.918990415785331,2.921069279585577,2.9212339710253534,2.9189872402887977,2.9155995006003748,2.9209192907859576,2.9207275210110915,2.918509506942437,347.0100000000013,370.72289627774563,225.01118577054103,,227.82026714454378,226.68401750887014,226.89262348784112,227.82360022610297,231.67188337131148,226.83171500549994,226.95651610943003,229.35342123413807,11.234027159931685,6.8185207809254855,,6.903644458925569,6.869212651783943,6.875534045086095,6.90374546139706,7.020360102160954,6.873688333499999,6.877470185134243,6.95010367376176,7.109377341700825,6.610072583976867,,6.622479484555855,6.617479522878092,6.618399349759921,6.6224941147607055,6.639244543265133,6.618130867434687,6.618680908614776,6.62918660649238,35.442187232994414,22.66037344908063,4.454356276546136,1.7456064624421626,0.7175832231040571,4.714448223733938,1.543898142707389,6.479860064113433,-0.008313074722150704,408.1375813140382,155.55292846705072,-449.342892550972,-24.983467447270154,-7.132426865888443,-24.963494030609553,398.3897553372941,1150.8211821537807,19.895500416368588,18.267002891329852,25.57380404786179,3086.0,59.0,2.842715030590636,1.6474356098902248,0.16666666666666666,0.04564354645876384,1.0286283745864064,0.3657395676452814,0.16666666666666666,0.03803628871563654,0.0,0.0,0.0,0.0,0.07856742013183861,0.025,0.44196972303846715,0.1543896954927707,0.8068979571790393,0.2816159342610478,23.750347897697544,20.27560428662154,15.75558728655341,12.616584689005773,14.712462113800779,10.168323674628503,12.430787016817629,7.75003410743423,10.598834654014713,5.542045992921874,8.449049718433667,4.079502895527117,6.487950595716892,2.7746205238318877,4.638505530821026,1.7129196885791327,6.8157384935597545,3.5142280665546206,10.955610799252408,4.621878102067633,16.808414747628873,6.169611321031134,108.42498685631016,43.85170971757302,32.15993024304049,29.44571751595253,29.44571751595253,29.44571751595253,178.0,215.0,69.45178999999997,46.19621000000004,0.3492063492063492,240.11,11.784722222222221,7.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,15.0,16.0,63.0,0.0,1.0,66.0,16.0,3.0,9.0,57.0,19.0,36.0,47.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,8.0,1.0,3.0,33.0,11.0,0.0,6.0,4.0,0.0,4.0,7.0,1.0,0.0,0.0,2.0,3.0,3.871201010907891,8.508139833162842,4.5512418439625355,5.176855698010844,5.8120761842914686,6.371825499620234,6.850506787555913,7.327035969248854,7.760788335751776,8.122027981768236 +5339,O=C(O)c1cc(N=Nc2ccc(S(=O)(=O)Nc3ccccn3)cc2)ccc1O,1,34.142857142857146,6.789599999999999,3.761904761904762,10.962962962962964,160.7307625098116,135.7963541666667,1.7354952539972857,6.8475190476190475,7.852368296426938,8.240398976190475,255.01105876181242,35.63636363636363,6.673288636363637,4.340909090909091,8.803030303030305,146.51863526546586,138.7707369545455,2.012748083681819,6.831061363636365,3.813096240179574,8.114435272727269,297.0896765721255,30.88235294117647,6.758630882352941,3.985294117647059,9.333333333333332,149.71131206800482,118.83339039705879,1.835121815294117,6.878852941176472,5.397785039941901,8.161955558823527,268.67431639806387,25.954545454545453,6.612770454545455,3.3636363636363638,6.7765151515151505,157.24336341204267,97.54150861363637,1.5451397640124318,6.709661363636365,4.332807239057238,8.108685000000001,222.11280863587683,24.471264367816094,6.868931034482759,2.954022988505747,6.938697318007662,163.8020758333889,90.55786112643678,1.368906150826931,6.919671264367815,5.53419894990776,8.38012420689655,198.50347381438547,23.025974025974026,6.6957896103896095,2.948051948051948,6.471861471861471,162.69181546351496,85.45830222077922,1.377817705705701,6.753584415584415,4.83177008177008,8.230841870129872,201.21923989772543,22.80597014925373,6.574995522388059,3.1194029850746268,6.5273631840796025,157.8694330005175,84.6635326716418,1.5199473410484328,6.653944776119403,4.690160309563292,8.052973582089553,218.01484225720768,19.65671641791045,6.21514776119403,3.029850746268657,5.4726368159203975,156.0284527388036,72.11605911940298,1.5050090175513875,6.31379552238806,3.622489404827714,7.71697119402985,207.00443846535615,20.1875,6.101310937499997,3.0,5.34375,155.95594709174358,75.06581128124998,1.4241444301279376,6.204603124999999,3.5037615740740744,7.6485369375,194.16696254580538,10.086167800453515,0.17490589569160994,0.03144190927554323,0.6575963718820861,4.268833459309649,1.7004903801808195,45.820740533446724,0.2780080834585079,0.15667460317460313,3.002857455853855,0.11532020011337865,44.85793979346873,1.6162131519274376,-0.021039878375592666,-0.019754040996189836,0.07725211296639874,-0.12465356512975542,0.023337394114352424,6.913453517419083,-0.0041919822936919045,-0.014591161616161618,-0.6863798305413533,-0.0031410139661925407,3.0151291410687056,-0.23952914499133038,0.04064634520474858,0.006247749926946535,-0.1134787248232626,0.2880448475686574,-0.2194659614805711,-1.1856759872282254,-0.02720136386354574,0.0334424836601307,0.6680176757488547,0.026377217253568085,-7.014579385162843,-0.8199340342197489,-0.02895091733663161,-0.0037998765711870597,-0.09915481344052773,-0.4949036853798757,-0.4417222721955436,-3.679396239615544,-0.04073877940389646,-0.023412373737373756,-0.26305969502985965,-0.021783105416408988,-5.189338654198728,-1.872703104230198,-0.020057346156853523,0.002523588928275949,-0.01720228321213543,-0.2850713720992865,-0.11129773414253792,-8.37469501073188,-0.01591212994231035,-0.019433716475095814,-0.02241259414302899,-0.014053187798107738,-4.154122881845945,-0.627293341579056,-0.029351659451659445,-0.0035316255245809005,0.011544011544011537,-0.2969376302709636,0.17586741014885413,-2.4998052409297062,0.033391503717660885,-0.026057720057720064,-0.49907718548407853,-0.021297980261801686,6.484258161208893,-1.0136731309439195,0.013092185331844178,0.004505623537787929,0.017599079432768127,-0.4229833448028188,0.358277286871489,-4.769935060454531,0.007180341529210608,0.006468822553897208,-0.051717755813980006,0.011562775366365454,-2.2188744939076,-0.1366297762886247,0.015998155481097905,-0.003227750614471262,0.006938098622533591,0.054075803898120715,0.21856829912809184,-0.8970762320963204,-0.0017893752170580503,0.011465837479270368,0.06355742008976588,0.01280719363217924,-3.7704905311313475,2.0938917233560095,0.029281083475056664,0.0021199421465732805,-0.062358276643990934,0.7858127047115141,-0.20417016001953792,9.533282284261624,-0.017486103084055543,0.030014236111111134,0.2965255153558906,0.013553575928287973,0.040616290700091484,,,0.4678571428571429,1.5357142857142858,0.9107142857142857,0.07142857142857142,0.625,0.2857142857142857,0.5921899942929088,0.0202157066756873,0.029429992389973014,1.2187167799048237,0.3091866712174881,0.1675338207630066,1.8109067741977325,0.4767204919804947,2.0181598098366837,1.3374438908295745,0.29061779050936526,0.30999106901527745,0.0,0.6807159190071085,9.477821203523819,1434.0,285.16319999999996,158.0,460.44444444444446,6750.692025412087,5703.4468750000015,72.890800667886,287.5958,329.7994684499314,346.09675699999997,10710.464467996122,1568.0,293.6247,191.0,387.33333333333337,6446.819951680498,6105.912426000002,88.56091568200003,300.5667,167.77623456790124,357.0351519999998,13071.945769173522,2100.0,459.5869,271.0,634.6666666666666,10180.369220624327,8080.670546999998,124.78828343999996,467.7620000000001,367.04938271604925,555.0129779999999,18269.853515068342,2284.0,581.9238,296.0,596.3333333333333,13837.415980259755,8583.652758,135.972299233094,590.4502000000001,381.28703703703695,713.56428,19545.927159957162,2129.0,597.597,257.0,603.6666666666666,14250.780597504834,7878.533917999999,119.09483512194299,602.0113999999999,481.4753086419752,729.0708059999998,17269.802221851536,1773.0,515.5758,227.0,498.3333333333333,12527.26979069065,6580.289271,106.09196333933899,520.026,372.0462962962962,633.7748240000001,15493.881472124858,1528.0,440.5247,209.0,437.33333333333337,10577.252011034672,5672.456689000001,101.83647185024499,445.8143,314.2407407407406,539.5492300000001,14606.994431232913,1317.0,416.4149,203.0,366.66666666666663,10453.906333499841,4831.775960999999,100.83560417594296,423.0243,242.70679012345684,517.03707,13869.297377178862,1292.0,390.48389999999984,192.0,342.0,9981.18061387159,4804.211921999999,91.145243528188,397.09459999999996,224.24074074074076,489.506364,12426.685602931544,423.6190476190476,7.346047619047617,1.3205601895728158,27.619047619047613,179.29100529100526,71.42059596759442,1924.4711024047624,11.676339505257333,6.580333333333331,126.12001314586192,4.8434484047619035,1884.0334713256866,71.11337868480726,-0.9257546485260773,-0.8691778038323528,3.3990929705215445,-5.4847568657092385,1.0268453410315066,304.19195476643966,-0.1844472209224438,-0.6420111111111112,-30.200712543819545,-0.1382046145124718,132.66568220702305,-16.287981859410465,2.7639514739229036,0.42484699503236434,-7.716553287981857,19.587049634668702,-14.923685380678835,-80.62596713151933,-1.8496927427211105,2.2740888888888877,45.42520195092212,1.7936507732426297,-476.99139819107336,-72.1541950113379,-2.547680725623582,-0.33438913826446126,-8.72562358276644,-43.55152431342906,-38.871559953207836,-323.7868690861679,-3.5850125875428884,-2.0602888888888904,-23.149253162627648,-1.916913276643991,-456.6618015694881,-162.92517006802723,-1.7449891156462565,0.21955223676000754,-1.4965986394557824,-24.801209372637928,-9.682902870400799,-728.5984659336737,-1.3843553049810005,-1.6907333333333356,-1.949895690443522,-1.2226273384353732,-361.4086907205972,-48.30158730158731,-2.260077777777777,-0.2719351653927293,0.8888888888888884,-22.864197530864196,13.541790581461768,-192.4850035515874,2.5711457862598883,-2.006444444444445,-38.42894328227405,-1.6399444801587297,499.28787841308474,-67.9160997732426,0.8771764172335599,0.3018767770317912,1.1791383219954645,-28.339884101788858,24.004578220389764,-319.5856490504536,0.4810828824571107,0.43341111111111297,-3.4650896395366604,0.7747059495464854,-148.6645910918092,-9.154195011337855,1.0718764172335595,-0.21625929116957454,0.46485260770975056,3.623078861174088,14.644076041582153,-60.10410755045346,-0.11988813954288936,0.7682111111111146,4.258347146014314,0.858081973356009,-252.62286558580027,134.0090702947846,1.8739893424036265,0.13567629738068995,-3.99092970521542,50.2920131015369,-13.066890241250427,610.1300661927439,-1.1191105973795548,1.9209111111111126,18.977632982777,0.8674288594104302,2.599442604805855,0.7195733429330569,0.5370146671917448,0.4449391258484618,0.31177260354912967,0.2989517663320336,0.1715091599881247,0.1901484280062105,0.09633270485217682,0.125329496103209,0.05234415325721332,0.08088943067404021,0.029023798475747806,0.053056309955801184,0.01689863416333834,0.034346900760209756,0.009099166874451177,16.013123253595044,5.692445059513659,3.581149987018731,2.1878921804504383,0.47452133928323265,-0.3797603543009156,4.043821377015534,0.9706478472922946,6.022597372010495,0.6442355225169702,14.737105005744882,10.319768279869052,32.06654420652447,11.704633111059945,2.954582579177412,0.7414680417708938,3.5371119901081856,2.2400632519008026,7.01458505596349,0.2989400029264227,3.768362960061183,2.436058396898117,24.441832038141925,14.6999737104793,0.32045730233398495,0.5927156694529444,0.7480488940131111,0.8999758725389458,0.9163036440221757,0.9163036440221757,1.3766367263332724,1130.3973704840953,0.0,3.0,0.0,0.0,14.0,0.0,1.0,0.0,0.0,3.5231252240286883,1.935072113187712,1.0290304987827055,0.14285714285714324,0.04761904761904834,0.04761904761904834,-13.80097400018309,1645.8023058527228,89.53160487371775,39.185769186969594,79.26352897053538,,16.0,742.0,15.992596441359433,18.318861563241462,27.713695853017267,5.687386274683562,0.0,54.727780119305955,12.13273413692322,0.0,19.93457363665809,5.106527394840706,13.100000000000001,43.0,25.5,2.0,17.5,0.0,0.03214285714285709,8.0,0.2623809523809525,0.11100164203612506,-0.15137931034482743,0.05841013824884789,0.1962134387351776,0.0,0.7023809523809523,0.9035714285714282,0.43999999999999984,0.5913793103448273,0.8451612903225804,16.581319840201445,0.5660397869192444,0.8240397869192444,34.124069837335064,8.657226794089667,4.690946981364185,50.70538967753651,13.348173775453851,0.5177865612648224,0.12722646310432567,0.06361323155216285,0.2671755725190839,0.0,0.5115921786209355,-1.4144476716250234,-0.09288568629555143,-0.03367732551488152,-0.07444461429605388,0.48840782137906436,1.350347668753037,0.057519112076128386,0.0321511349703104,0.05871076820665379,-4.189898244084004,0.808375316792021,0.7863893223496218,1.5477523077919781,1.0121473354231976,0.6915215052609552,1.113822963995202,0.7896188056959789,1.146614474013151,0.7361273952226793,0.8605610433669562,0.7145446857200388,0.8044122579129954,0.8518509640816759,0.5172530370377713,0.5885863681013115,1.2661764705882355,0.6951901444636169,1.2123315376067207,0.8440164800725156,1.079616391132325,0.5161528932022634,0.529632353366039,0.5337583197564848,1.0176558060528371,1.1163278184270766,1.0433670268843214,0.9772613016904188,1.1977076802507838,1.0433457032402764,1.3098190881710827,1.1036275116614644,1.1873401523798526,1.0231744557934344,0.932728211750859,1.0490203786521435,1.0626883581943996,1.3104921235425455,1.2679694273899953,0.9837270762752379,1.0067181926278241,1.1320024341249666,1.103467494989135,1.2944503050327112,1.0910741478795096,1.2650479747209118,1.1687083036673434,1.2687448592053079,1.0180514217160725,1.1167991742969263,1.2833645562563605,1.0643002684363376,1.0025078369905958,1.1628615732965615,0.865935054365438,1.1067532319984164,0.8752801015016359,1.2793502809434119,1.3547521799574762,1.3035401381358929,0.8341615928204953,0.9274032266723935,0.7949674382145548,0.54280503870619,0.7976325270200721,1.0277259749766776,0.7838502780952349,0.9406464658639443,0.8601072444592845,0.8295602303562475,0.8824815363043668,0.7588498087248783,1.0046371200436457,0.7721137455707077,0.567190674164554,0.5899892865837232,0.742241379310345,0.8398151924671045,0.8250500064350719,0.7995076970520573,0.8581625923057719,0.6085661177925777,0.5384352172074556,0.5085697513210851,1.1233364494998495,0.7153021723246404,0.5306008008841813,0.5808994381701725,1.0669719827586208,0.7322873476509475,1.0168483503622598,0.7291594130295954,1.025678396962797,0.5389544602603717,0.5222861710453761,0.5482174927298576,1.1150490961031627,7.0,0.16926844199571472,3.5555555555555567,1.875,1.626666666666667,0.9861111111111112,0.3232653061224491,0.4097222222222222,0.3484504913076341,0.14562500000000006,6446.091248802066,6885.344114874564,3049.2273180943644,2891.1857768742693,13.169661047460353,0.49159979864637215,6.695458328287873,0.9669543744032277,1.0,0.0,1.8691921987500724,3.4572453095910487,4.363286923996055,5.2494602799216175,5.344698375159712,5.344698375159712,0.23333333333333334,0.009403802333095262,0.08465608465608468,0.044642857142857144,0.04396396396396397,0.02988215488215488,0.010775510204081634,0.015758547008547008,0.01451877047115142,0.0066193181818181845,0.4935543421770875,22.68,10.346938775510203,6.4975009611687815,159.6375871519161,1.0,4.249578285431663,179.27102712330895,,114.06747465851647,126.27305437321832,125.9735445560635,114.08470911117038,169.5242292399171,127.22479962366896,127.25043552462606,159.7197082237588,0.16024055755395683,-0.12029256242276531,-0.6282710386024589,0.11747648902821327,-0.029200849908516752,0.013723920103488543,0.15088044053702335,-0.015078634554586783,-0.09313035629584947,-0.2285755619879009,-0.027237326705160148,0.06721506058795204,-0.023748280787135048,0.23238979477521604,0.19870771435010415,-0.17256592292089246,0.06747624387652726,-0.12906039577667852,-0.025876403860447095,-0.09784378758039057,0.2134518484968578,0.2224606680702083,0.22873024177581167,-0.15637319541331585,-0.08129292020928716,-0.165522821412934,-0.12085387493127697,-0.15078369905956115,-0.1159341750146212,-0.2597617001212166,-0.08029979866715116,-0.14653811104012962,-0.1494331133635122,-0.08760312432314882,-0.18889236573464688,-0.11568383831471216,-0.18567042917390228,-0.11467507185817326,0.08026194930340623,-0.026159334126040434,-0.06677968930307905,-0.06545037563264733,-0.18277083506799274,-0.0572362132221425,-0.12403871515435254,-0.007463755596968895,-0.12186232580494268,-0.09260618969511349,-0.062193427076520626,-0.16781400841634073,-0.11232223506630175,0.017554858934169273,-0.06955943189195861,0.10342158485492489,-0.05455619468011391,0.1201098302691781,-0.16631744730625245,-0.16620075805168955,-0.1846855992346725,0.1445509577805665,-0.10050131536561793,0.07485273884036488,0.14329993443790584,0.02676273803396809,-0.09908640119945629,0.2106905696422652,-0.10409991206870021,0.025827815651562728,0.0412882651228939,-0.01722284742925774,0.10026669529707155,-0.049464476169069765,-0.013546252550198626,0.09146721680157362,-0.10265758946712356,0.010550694801852807,0.012667583407403716,0.12853251137172012,-0.01957795141790653,-0.006436414347373141,0.07318248935657094,0.021165646729539307,0.11105767783603973,-0.08405402808267906,0.2076003259892087,0.16741050013936865,0.06742409082079044,-0.09482758620689657,0.18408136841173348,-0.12006546017498067,0.20805605001741145,-0.06289782248963025,0.19157052580922973,0.09874778264210823,0.11752993764286385,0.0009054426236936806,10.93137817601961,16.025492650015636,4.6425005423287145,21.315280599110515,37.92610238025444,47.73195776282364,49.67312526750136,50.38812526750138,50.38812526750138,56.508474675427145,37.44842894322809,8.137298134262227,8.679749932427768,0.0,19.060045732199036,5710.36096310683,5335.956717177592,1828.0391454764567,82.0,42.0,51.0,61.0,73.0,70.0,72.0,75.0,80.0,398.0684905480004,30.0,4.976733742420574,5.802118375377063,6.670766320845874,7.5126175446745105,8.382289428951436,9.229848838364227,10.100328195429285,10.950648639613158,11.821813591219062,0.8174603174603173,1.0287619047619048,1.1199275795324748,0.7897383747437866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7229127744510978,1.0143790849673202,1.0380380120001387,0.7044214087018891,11.0,1.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.213054789681411,17.130826102815927,0.0,0.0,10.023291153407584,4.722094864452088,18.196312689347966,10.228500251258795,0.0,6.06636706846161,54.59730361615449,6.196843571613076,16.2702560248849,304.5359542292273,-841.9795872305541,-55.29214927895076,-20.047133029298912,-44.3147151173976,290.7349802290442,803.8227186221688,34.239455594766994,19.138636157670685,34.94881385313778,0.5,0.6520716527967088,0.18339516900350872,129.60145731610726,0.12263153267740615,58.94699585254469,0.3479283472032913,8.0,0.2,0.346639867833827,0.6411427663710246,0.8091672989361173,0.9735072823692329,0.9911690941230775,0.9911690941230775,3.7016000000000013,,2.4464285714285716,2.1466522744089893,1.6797687759523052,2.441687311855157,-7.060060663388549,1.9499694002447983,1.8748820777026522,-3.1146920280923758,100.7296,23.425388958082173,0.0,4.9839785209472085,10.228500251258795,4.895483475517775,4.722094864452088,72.42396574792619,0.0,5.749511833283905,4.110873864173311,0.0,5.43372200355424,0.0,6.946013991099227,0.0,8.538758969330798,0.0,10.171642709679686,34.33333333333333,15.748834461903803,3.912233869679549,0.0,0.0,0.0,0.0,0.14637430376046145,0.0,43.208,0.0,35.693170864146516,0.0,0.0,-3.794932348136936,0.0,7.832342178007312,-1.2874857384094855,47.03695834036394,4.722094864452088,17.192635327202154,5.749511833283905,29.584135582909404,10.023291153407584,0.0,10.357988675768818,81.98449798300575,0.0,0.0,0.0,33.16901173923904,30.36233652694611,35.28988627498378,358.5420542466179,,228.7075009560204,252.39277644112173,251.8271056281304,228.74299957069445,342.14688838075597,254.310315718749,254.36695090084476,320.5518064575506,35.28988627498378,358.54205424661785,,226.6625812575084,250.47599643654087,250.37067808959358,226.70195851976416,346.10851914322257,252.56161204613312,252.67670209302827,322.55410847560995,4.761059410984426,279.96217336030736,,178.69084490369988,197.7295855427297,196.7650173591133,178.71812041402382,266.15254425574756,199.18230318685093,199.2207283192908,250.6923471958362,1.2603530812494206,12.805073365950639,,8.168125034143586,9.01402773004006,8.993825201004658,8.169392841810517,12.219531727884142,9.082511275669606,9.084533960744455,11.448278802055379,2.380529705492213,179.27102712330895,,114.06747465851647,126.27305437321832,125.9735445560635,114.08470911117038,169.5242292399171,127.22479962366896,127.25043552462606,159.7197082237588,42.60392156862745,0.0,0.0,0.0,0.0,0.0,18.471070830221226,43.59759650400583,0.0,2.3617249121609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.58569916547934,388.1593020940464,78.50607234750304,145.20430300282405,183.2580508078343,220.47733175670794,224.4773317567079,224.4773317567079,664.0,133.4471646768952,207.11163236422516,63.20101153783727,149.69,141.31,1.0,8.675606203158516,5.906890595608519,4.471033135696322,5.215348005742326,,5.207067077847307,5.213752486655029,5.212634372386104,5.20705522954093,5.203307294688999,5.213325297890618,5.2128834694960755,5.210686555368156,0.1596797548462972,0.18626242877651164,,0.18596668135168953,0.1862054459519653,0.1861655132995037,0.18596625819789034,0.18583240338174997,0.18619018921037922,0.18617440962485984,0.18609594840600557,2.527238925654996,2.681225235093403,,2.6796361735234826,2.6809192606518084,2.6807047828488404,2.679633898092865,2.6789138588041013,2.680837322303697,2.680752568889553,2.6803310407268968,270.22000000000025,242.1814982539375,169.07984024831424,,168.99704041155047,168.72364463161182,169.05179839989984,168.99828926443755,170.01621442132392,168.7634684433485,168.77325351410946,169.25122125800465,8.649339223354911,6.03856572315408,,6.035608586126803,6.025844451128994,6.0375642285678515,6.035653188015627,6.072007657904426,6.02726673011959,6.02761619693248,6.044686473500166,6.519306855018663,6.15999044805031,,6.159500619593199,6.157881554775619,6.1598245845505755,6.159508009357361,6.1655132286321015,6.1581175567465305,6.158175536042572,6.161003544652116,27.043745149378164,14.946439995769998,26.30341300822854,0.2953147727715013,-1.4594817065817247,14.27618463847453,1.4726498234292698,0.0,-3.794932348136936,327.5609693314344,181.28140205017354,-501.20597568552165,-32.91380936948727,-11.933475611560043,-26.37926187818536,173.06608336065023,478.4923008530067,20.381752727239444,11.392673829833493,20.80401308056551,2428.0,42.0,2.512305175861954,1.0542312639448965,0.2041241452319315,0.05103103630798288,0.5807695208822299,0.1491640809351884,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.25343678769327627,0.07667923874400985,0.32819862965661417,0.0924105953757002,20.148053602125593,15.036410681368857,13.348173775453853,9.35317810647389,12.55597418594541,7.203384719501237,9.697569828316736,4.912967947461018,7.64509926229575,3.1929933486900124,5.9049284392049355,2.11873728872959,3.713941696906083,1.1829043914336836,2.4729768547351023,0.6551400149604848,4.731171694026535,1.8013628637079033,6.779894044566808,2.0406033156301966,9.177829473554764,2.278677795661476,89.69709554555625,57.324158963757476,34.61673626974732,29.032655871936786,27.740344472782972,27.740344472782972,144.0,165.0,50.70510199999999,24.418898,0.5238095238095238,144.1,9.590277777777777,6.097222222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,18.0,18.0,42.0,0.0,0.0,44.0,18.0,4.0,13.0,31.0,22.0,30.0,22.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,7.0,3.0,1.0,28.0,10.0,0.0,4.0,5.0,0.0,3.0,6.0,1.0,0.0,0.0,1.0,3.0,3.784189633918261,7.494534492130671,4.412798293340635,4.914491433543353,5.428797232998827,5.947871790485873,6.122629861525839,6.466290514542822,6.71375327053879,7.126639773375963 +53469059,Cc1cccc(CC(=O)N2CCc3c2ccc(-c2cn(C)c4ncnc(N)c24)c3F)n1,0,24.76923076923077,6.365373076923076,3.75,9.076923076923077,164.5382020208025,98.72107204134176,1.5710581538813266,6.429251923076922,4.96741452991453,7.790021999999998,235.51859990886012,26.714285714285715,6.460410714285715,4.410714285714286,8.839285714285714,148.52830916790535,102.69650026491429,1.8670145801785714,6.602017857142856,3.372519841269842,7.8150057142857134,278.10638169985856,23.739583333333332,6.390382291666666,4.208333333333333,7.541666666666667,155.97740590550305,90.65285437156665,1.6677477032134373,6.498670833333333,3.214699074074074,7.792369250000001,245.05394041322202,21.61864406779661,6.400940677966101,3.7457627118644066,6.296610169491525,156.9005105175529,80.87121225712542,1.5628465331012125,6.502724576271187,3.3707627118644066,7.826073661016949,226.93475259055876,20.146153846153847,6.431989230769232,3.3384615384615386,5.6692307692307695,159.37884052451264,74.4320492633846,1.4531615282203152,6.51590923076923,3.6899572649572656,7.8668462153846175,207.56666078118823,17.237037037037037,6.283807407407407,3.022222222222222,4.792592592592593,161.5470724715762,62.14257759133629,1.3249131230043258,6.35992,3.3497942386831276,7.7720095111111105,184.03746918723522,17.765625,6.280921875,2.8984375,4.953125,165.69684682901695,65.75634126823749,1.2646931531857186,6.339338281250001,3.8702256944444438,7.768085781249999,177.6377599314288,16.29310344827586,6.324326724137932,2.9913793103448274,4.0,166.18501803350634,58.0053452556,1.2941350078744227,6.384539655172414,3.1767241379310347,7.8219175517241375,179.38360065185987,16.405940594059405,6.13007623762376,2.9207920792079207,4.089108910891089,160.83287166471027,58.75267440478416,1.344933964594426,6.212915841584158,2.9829482948294825,7.623322376237622,181.47044177259485,7.193786982248522,0.14226715976331356,0.01729383543774066,0.6875,4.270710059171598,2.073934263065642,34.57933112658339,0.22315264872141236,0.1301172707100591,1.7112405489809335,0.07786576331360943,48.03026162019316,0.3453613693998306,-0.005611802620456447,-0.008981574577097659,0.3169642857142857,1.5486580726965342,-0.3506983193430428,1.6435583889091205,-0.007699947856022523,-0.002844468512256942,-0.1059101155255001,-0.004632554522400724,0.5438761368659175,1.1387450690335303,0.01152282421104537,0.0022860953689697243,0.052083333333333336,0.4728796844181456,0.19371721252772514,5.480459077152193,0.03401890494170827,0.011903923200197251,0.07371538050624588,0.005427755917159726,8.172365712863195,-0.5617791595627323,-0.019636651288737317,-0.003943637490039062,-0.11758474576271187,-0.6204493029786383,-0.264020196924415,-2.5502895407332855,-0.015674405071994465,-0.016451820905626288,-0.15008507310088143,-0.01151810751178423,-2.5779229271725455,-0.8153846153846157,0.0018302366863905495,0.004065693663152203,-0.14134615384615384,-0.5704142011834322,-0.04173386404693636,-4.002859706894868,-0.034919926730612345,-0.000420318047337237,-0.08211497370151212,0.001737126627218867,-7.987778756475596,-1.0239864124479507,-0.015686333552487386,-0.0024488963186913124,-0.04675925925925926,-0.29093797939951793,-0.29382572323638245,-4.96354689513267,-0.036441498538305646,-0.014916458744247187,-0.22657768098473222,-0.008714416305062487,-7.946263069382736,1.213063979289941,0.03153554456360945,0.0019464608850222175,0.0546875,0.4249029215976332,0.06931428390684613,5.935325803116605,0.012989266583010264,0.029434381934171586,0.45355645956607504,0.016653265532544356,4.665443443947437,-1.3685217302591306,-0.04220303509487855,-0.00242292613716204,-0.02586206896551724,-1.1158692103652315,0.1919097835207041,-6.615029776700129,0.02024606854053989,-0.03975251606814932,-0.4350423099594188,-0.021435312385227553,-0.2001168347710295,-0.7608090690725876,0.010022825004393915,0.0026854429413120315,-0.0983910891089109,-0.1560870584099829,0.0327715435094283,-3.726850310759039,-0.036782585529166544,0.006498799358486142,0.05443601867583203,0.006618905384029567,-8.41227673395982,,,0.4683563748079878,1.4112903225806452,0.7258064516129032,0.03225806451612903,0.6854838709677419,0.04032258064516129,0.8057227824517793,0.01544041343863067,0.029311381180566153,1.1227910740517593,0.2778533721143372,0.2039389100074546,1.9285138565035382,0.48179228212179176,2.0698772867427007,1.5585535185574368,0.39532650670620106,0.057743086473197425,0.05825417500586559,0.5113237681852641,8.003386298307705,1288.0,330.9993999999999,195.0,472.0,8555.98650508173,5133.495746149772,81.69502400182898,334.32109999999994,258.30555555555554,405.0811439999999,12246.967195260726,1496.0,361.783,247.0,495.0,8317.5853134027,5751.0040148352,104.55281649,369.71299999999997,188.86111111111114,437.64032,15573.957375192078,2279.0,613.4766999999999,404.0,724.0,14973.830966928292,8702.674019670398,160.10377950849,623.8724,308.6111111111111,748.0674480000001,23525.178279669315,2551.0,755.3109999999999,442.0,743.0,18514.260241071242,9542.8030463408,184.41589090594306,767.3215,397.75,923.476692,26778.300805685933,2619.0,836.1586000000001,434.0,737.0,20719.249268186642,9676.166404239997,188.91099866864099,847.0681999999999,479.6944444444445,1022.6900080000003,26983.665901554472,2327.0,848.314,408.0,647.0,21808.854783662788,8389.2479748304,178.863271605584,858.5892,452.22222222222223,1049.221284,24845.058340276755,2274.0,803.958,371.0,634.0,21209.19639411417,8416.811682334399,161.88072360777198,811.4353000000001,495.3888888888888,994.3149799999999,22737.633271222887,1890.0,733.6219000000001,347.0,464.0,19277.462091886737,6728.620049649599,150.11966091343302,740.6066000000001,368.5,907.3424359999999,20808.497675615745,1657.0,619.1376999999998,295.0,413.0,16244.120038135738,5934.0201148832,135.83833042403703,627.5044999999999,301.2777777777777,769.9555599999999,18328.51461903208,374.07692307692315,7.397892307692304,0.8992794427625143,35.75,222.07692307692307,107.84458167941338,1798.1252185823364,11.603937733513442,6.766098076923074,88.98450854700855,4.049019692307691,2497.5736042500444,19.34023668639051,-0.314260946745561,-0.5029681763174689,17.75,86.72485207100591,-19.639105883210398,92.03926977891075,-0.4311970799372613,-0.15929023668638875,-5.9309664694280055,-0.25942305325444054,30.457063664491383,109.31952662721892,1.1061911242603555,0.21946515542109354,5.0,45.39644970414198,18.596852402661614,526.1240714066105,3.265814874403994,1.1427766272189361,7.076676528599604,0.5210645680473337,784.5471084348668,-66.28994082840241,-2.3171248520710033,-0.46534922382460936,-13.875,-73.21301775147933,-31.154383237080967,-300.9341658065277,-1.849579798495347,-1.9413148668639022,-17.71003862590401,-1.359136686390539,-304.19490540636036,-106.00000000000004,0.23793076923077144,0.5285401762097863,-18.375,-74.15384615384619,-5.425402326101727,-520.3717618963328,-4.5395904749796046,-0.05464134615384081,-10.674946581196576,0.2258264615384527,-1038.4112383418276,-138.23816568047334,-2.117655029585797,-0.3306010030233272,-6.3125,-39.27662721893492,-39.66647263691163,-670.0788308429105,-4.9196023026712625,-2.0137219304733702,-30.58798693293885,-1.1764462011834358,-1072.7455143666693,155.27218934911244,4.0365497041420095,0.24914699328284384,7.0,54.38757396449705,8.872228340076305,759.7217027989254,1.6626261226253138,3.767600887573963,58.055226824457606,2.1316179881656776,597.1767608252719,-158.74852071005915,-4.895552071005912,-0.28105943191079663,-3.0,-129.44082840236686,22.261534888401673,-767.3434540972149,2.348543950702627,-4.611291863905321,-50.46490795529258,-2.486496236686396,-23.213552833439422,-76.84171597633134,1.0123053254437855,0.2712297370725152,-9.9375,-15.764792899408274,3.3099258944522583,-376.41188138666297,-3.715041138445821,0.6563787352071003,5.498037886259035,0.6685094437869863,-849.6399501299418,0.6999336017706534,0.5568517173564366,0.4267303070221586,0.2868315136026679,0.2701203480716987,0.14958537007162434,0.1671057331088301,0.07766233042348247,0.10643202408007671,0.0413458829667335,0.06658618300201459,0.02159427359170663,0.04248384713086748,0.011477721653499317,0.02555690562225305,0.0060245567696256734,9.00407010762064,5.677491114769595,4.10772499801952,2.176266535677388,0.42650499140743825,-0.44971544135796293,3.3087410991788997,0.9778899171888308,7.004067957708953,0.9953920597233922,17.424773536307477,10.938981824681296,19.000142546180793,11.68942117703013,2.0114423847494765,0.5458515632638251,3.9886791392199368,2.2258857729698915,8.001920093524712,1.3514190686553684,4.009960961756539,2.4215958166718625,20.911762609402068,13.304119242800319,0.2683026931613258,0.6614083157491067,0.8474077445185367,0.8842127287194441,0.8842127287194441,0.8842127287194441,1.2255675232574361,1345.651976349164,0.0,4.0,2.0,0.0,9.0,2.0,4.0,0.0,0.0,4.072891651384465,1.6882778834965544,0.5599887592069948,0.3367264423909013,0.3367264423909013,0.3367264423909013,312.5965481858741,1661.898145790558,59.69032487426968,31.9595797267415,62.632615686346384,,15.0,800.0,0.0,4.794537184071822,18.14522219332341,57.88851098652915,5.693927994848461,6.3273200747645415,21.599743515565052,38.367353959365715,14.951935562841626,5.733667477162185,14.519047619047623,43.75,22.5,1.0,21.25,0.0,0.03164362519201218,1.25,0.17490519284637007,0.06804584304584371,-0.10685934980052636,0.032611832611832536,0.15516568914955986,0.0,0.620787545787546,0.838095238095238,0.44588235294117595,0.5527417027417023,0.8054834054834055,24.977406256005157,0.47865281659755077,0.9086528165975507,34.806523295604535,8.613454535544452,6.322106210231093,59.78392955160969,14.935560745775545,0.5588343108504401,0.1390619875368973,0.0,0.43391275828140363,0.21739130434782608,0.2689320681559506,-0.6607428767336679,-0.04026307587699012,-0.012706593783339767,-0.04404952511557786,0.7310679318440496,1.7961708013722504,0.0479817879888495,0.03454174618023558,0.0485451567938446,-6.158648289116242,0.6975026438706264,0.6775367282365247,1.568000515361208,0.5986513486513487,0.39983732495422836,1.2180987165954922,0.697605748419519,1.0090308136813058,0.6526062974679397,0.5984354913541667,0.6951831376946073,0.8912233472434631,0.6916191137158132,0.6794684439746872,0.9302231550657567,1.0996503496503498,0.8085599237963285,0.9133556926484514,0.689693559749648,0.806032076014991,0.667115015727449,0.5447753018087514,0.6761035900123669,0.7573012668715988,0.9630145651878416,1.0615339689231758,1.2723741911754276,1.2875429655090673,1.110300118004145,1.1656616974470149,0.9576643413825922,1.0365550620943895,1.0377330198298773,1.0018367627473748,1.0916262383189554,0.979048917660241,1.058698334361505,1.156712046882376,0.788018995415289,1.240021516944594,1.1314686525805335,1.1483296059857615,1.064098319622301,1.1529244628810955,1.1455728801766503,1.3656007059713409,1.1947539438605996,1.1082205802405816,1.137139854228071,1.2789276317324847,1.0919068529916833,1.0514374514374516,1.0861601816572375,1.2047901395221172,1.1410197042754562,1.1702847544954191,1.266369136297578,1.4676816005218745,1.3244826338718467,1.1425928013583473,0.8648789327575569,0.8982451253332548,0.9169265153174087,0.8804632867132868,0.9320566873051611,0.9660596593497808,0.8617019701390259,0.9148781022829479,0.8879621599029781,0.9147996221012252,0.9158009416253575,0.883564047000767,1.2311339318002932,1.6338318491602775,1.1447013651692566,1.0145888594164456,1.3452351802969316,1.0618140553183462,1.2370918676667348,0.9026198305052894,1.6140816107893352,1.6743155520493433,1.6384282183889964,0.9704857771841916,1.056263399319574,0.7553344839186921,0.719693118733485,1.0805234369590806,0.9424751446395072,0.9264407056318662,1.0591016542799845,1.1528644826982453,0.7876061263736672,0.7101905503284827,0.7114878747847456,1.1721921115561353,6.0,0.10672584430160188,4.222222222222223,3.326388888888889,2.3800000000000003,1.2538888888888888,0.7340136054421768,0.5199829931972789,0.3678980851599899,0.2906327160493828,6558.843464910887,7144.954340208583,3057.0052794486046,2841.387074044596,17.30244183310435,0.4828574451321582,8.947828975023807,0.9337027877265965,1.0,0.21739130434782608,1.6275480667566269,4.012161834644537,5.140450958934097,5.36371327575019,5.36371327575019,5.36371327575019,0.17142857142857143,0.004851174740981903,0.08119658119658124,0.060479797979797974,0.04490566037735849,0.027864197530864197,0.016311413454270597,0.01405359441073727,0.011496815161249684,0.012109696502057614,0.4446975027824704,22.775510204081634,9.330621301775148,4.295105916727539,177.91593531684586,1.0,4.392400745591992,185.05067093684127,,141.3747988249505,139.06788994815673,137.21202613298436,141.33513692269844,179.20231234254055,140.38974991677813,141.5420758691549,166.09587579559658,0.04800828412796328,-0.039445523687916935,-0.5193512225458675,0.461038961038961,0.36262308872284627,-0.16909808839584367,0.047530080408224255,-0.03450529447058131,-0.021860806768651674,-0.06189084029628154,-0.05949411301270892,0.011323613874242525,0.15829563369662067,0.08099426621165148,0.13219134512987996,0.07575757575757576,0.11072624408266936,0.0934056666971579,0.1584894472680822,0.15244678983926407,0.09148611199141132,0.04307715858541592,0.06970657816965187,0.17015034765972045,-0.0780922705869642,-0.13802659251373503,-0.22803718147061747,-0.17103235747303544,-0.14528012774976082,-0.1273040335107567,-0.07375184706139995,-0.07024073055732655,-0.1264384106417814,-0.08770542118713764,-0.1479226173561582,-0.05367288955362925,-0.11334567139625748,0.012864786851972516,0.23509496651503714,-0.2055944055944056,-0.13356425355039842,-0.020123040922833457,-0.11575873727116741,-0.15648448239665302,-0.0032303017504404434,-0.04798564044687503,0.022309248035269062,-0.16630720897671164,-0.14234316570323144,-0.11025969435662006,-0.1416051591046738,-0.06801346801346801,-0.06812402981436583,-0.14167552389151236,-0.14354085904561836,-0.16330300691971553,-0.11463857689949244,-0.13240551196596073,-0.11191589132652058,-0.16544284376835294,0.16862661937075876,0.22166425910290455,0.11255229599180873,0.07954545454545454,0.09949233633529618,0.03342163979893333,0.1716437423670619,0.05820798748047257,0.2262142586725505,0.265045413887705,0.21387147346738572,0.09713549929917442,-0.19023662135619415,-0.296646360024975,-0.14010345743630956,-0.03761755485893417,-0.2612842349175256,0.09253416896494467,-0.19130010793108496,0.09072743996785551,-0.3055129872553969,-0.25422627474465365,-0.2752854588851256,-0.004166473969129813,-0.10575918788670967,0.07045072820086272,0.15528324824067305,-0.14311431143114312,-0.03654826861279822,0.015801630790836234,-0.1077768189649558,-0.16483149870690786,0.04994570915161174,0.03181085131967531,0.08500405187542431,-0.17514534483449662,9.007529519669806,25.115907179380812,14.570442002945445,15.65645327460448,38.80089745208707,45.08947604258549,45.31452445793611,45.31452445793611,45.31452445793611,64.16619588902373,48.31515907528054,12.255121707892233,1.7900356806691202,1.8058794251818333,15.851036813743187,10224.370720768422,10076.265075827068,1086.701913125722,277.0,52.0,74.0,104.0,130.0,150.0,175.0,213.0,239.0,416.17608751200066,35.0,5.1647859739235145,6.056784013228625,6.974478911025045,7.8826922062890254,8.805824812903607,9.721305985943088,10.647589220094883,11.567782900254944,12.49637752541347,0.6987179487179487,0.9978461538461539,1.1319544926047196,0.6667932651479733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6952055849838785,0.9842383107088988,1.0113171606252453,0.6653524440651962,7.0,3.0,0.0,0.0,0.0,2.0,8.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,15.20067685580402,23.609580914413193,0.0,5.907179729351506,0.0,9.77851570501903,14.358372089569237,0.0,0.0,6.06636706846161,37.61002709646307,53.5548686996743,11.807045837390806,181.91021906660845,-446.93770541199416,-27.234628444650543,-8.59495587330758,-29.795847027466277,494.5067672524825,1214.9604403785638,32.45569642961913,23.36462385343392,32.8367686588801,0.4666666666666667,0.838530050262297,0.1558922047800621,44.04977393344657,0.09463836482500959,78.87915713148793,0.16146994973770304,8.0,0.08571428571428572,0.2855127230934685,0.7038337449436093,0.9017639363109331,0.9409297424338507,0.9409297424338507,0.9409297424338507,3.1918200000000008,,1.4404761904761907,1.7899647028112904,1.87833489214073,1.4720556229092903,-6.189589841293614,1.5851226758025132,1.4035727588914488,-2.8616019128193058,117.05040000000004,9.184952231746642,0.0,19.51903521063298,7.04767198267719,19.765380445542643,17.17833361392524,65.62452731112548,0.0,11.126902983393991,4.2626798770413155,0.0,5.631211781821365,3.044522437723423,7.193685818395112,5.476463551931511,8.84779106484485,7.653020413804189,10.55087871125787,36.33333333333333,12.315461933654298,12.727889310444532,0.0,0.0,0.0,1.2686653482603023,3.770450361520786,1.8056061810273918,51.888000000000005,0.0,12.9048667245186,0.0,0.0,0.0,0.0,0.0,-0.09092097320001358,58.86163361544541,10.633577208012664,15.89566410019341,0.0,31.97097134589706,24.68385241260103,12.740958040736519,16.95130748139392,42.85599898868567,0.0,22.160304418626517,0.0,34.673249787694616,36.150690419161684,40.22312599715539,370.1013418736826,,282.6566637021283,278.02029830258374,274.3028693697015,282.5753025148866,359.7782146476435,280.67723385447226,282.99359865709096,332.7456100259324,40.22312599715539,370.1013418736825,,281.3700533441838,276.4639200871918,272.7440250614317,281.2587885610984,364.5942145263749,279.2763258804756,281.7389233870605,335.0533535040124,4.979187846589063,281.64913308114444,,217.82263127836194,214.42633340826774,211.57870016924034,217.79301306115383,273.139953769617,216.37052513239604,218.0557598162439,254.65153067995988,1.2975201934566256,11.93875296366718,,9.117956893617041,8.968396719438186,8.848479657087145,9.115332339189889,11.605748859601404,9.054104317886202,9.128825763131966,10.733729355675239,2.549069166629018,185.05067093684127,,141.3747988249505,139.06788994815673,137.21202613298436,141.33513692269844,179.20231234254055,140.38974991677813,141.5420758691549,166.09587579559658,51.18039215686274,0.0,3.7265803558894497,0.0,15.60367736450258,6.070551645844166,0.0,52.58849235251276,1.0848906313877456,0.0,0.0,0.0,0.0,1.645614449483497,0.0,0.0,0.0,34.5983270913902,567.1959695364187,84.6324994713446,208.63241540151594,267.30344986457305,278.9130903390099,278.9130903390099,278.9130903390099,1480.0,145.3176215490762,109.22101678267217,83.66025365681962,89.93,89.93,0.875,9.490780660896501,6.129283016944966,4.615657094358815,5.481149916508078,,5.485266953861785,5.485849644474808,5.487004108104016,5.48513120713445,5.474802815219422,5.485526336127438,5.485288397310731,5.480296113356826,0.1488921643341553,0.17681128762929282,,0.17694409528586405,0.17696289175725186,0.1770001325194844,0.1769397163591758,0.17660654242643298,0.1769524624557238,0.17694478701002356,0.17678374559215568,2.6608563516201196,2.832717029216794,,2.8334678738355596,2.8335740964991047,2.8337845182653107,2.8334431260141315,2.831558371060055,2.833515159799089,2.8334717831087475,2.832561246275264,300.84000000000077,573.8292132427599,209.27070872146598,,208.5082549337603,208.3513198584135,208.27973480442242,208.49315646621116,211.53091580946415,208.4419069751204,208.52547528390878,210.09252036291122,18.510619782024513,6.7506680232730965,,6.7260727397987194,6.721010318013338,6.718701122723304,6.7255856924584245,6.823577929337553,6.7239324830684,6.7266282349647994,6.777178076222943,7.483733925632883,6.475030782374662,,6.471380743954657,6.470627804153098,6.47028416652026,6.471308329487257,6.485773273335069,6.471062490286658,6.471463328882016,6.478950118341433,17.409283545529973,27.278370484446633,0.625278938551777,10.51198939923528,-0.11852195536181642,9.112223027858088,3.842551069685845,2.3355735267428437,1.8365852966447163,352.81912542420855,123.0471621616809,-302.3162557671507,-18.421965296050708,-5.813774149368283,-20.15441705114338,334.4927772193203,821.8198795777835,21.95358436781025,15.804228453418915,22.211348096696852,2766.0,55.0,2.3199638427820037,1.0146635655511476,0.0,0.0,0.6855408591173606,0.19518823876160982,0.0,0.0,0.0,0.0,0.0,0.0,0.17479246499677625,0.08817656065588989,0.6109275815006514,0.22394370403109157,1.2006821585079963,0.333138618997995,21.697941654890258,17.262403238049533,14.93556074577555,10.039102976093377,14.046258099728332,7.778439243724466,12.365824250053427,5.747012451337703,11.068930504327978,4.299971828540284,8.656203790261896,2.807255566921862,6.372577069630122,1.7216582480248974,4.472458483894283,1.0542974346844929,5.853461499953831,2.1528494004188015,10.32752137298964,3.1739961736079505,16.25914566961045,4.057580896883225,99.89037852130534,42.97964713637218,26.31030615183148,25.234140921242293,25.234140921242293,25.234140921242293,174.0,213.0,60.371652999999995,29.318346999999996,0.5,295.08,9.694444444444443,6.611111111111109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,21.0,22.0,52.0,0.0,0.0,56.0,22.0,1.0,11.0,45.0,23.0,35.0,33.0,0.0,0.0,0.0,23.0,0.0,1.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,6.0,1.0,4.0,31.0,8.0,0.0,6.0,1.0,0.0,5.0,3.0,0.0,0.0,1.0,3.0,4.0,3.871201010907891,8.408377059209245,4.55650501400681,5.212895634494042,5.868060273103374,6.41202350116367,6.775241225835133,7.210247066110885,7.688807805312105,8.015723404582692 +6918537,N#C[C@@H]1CCCN1C(=O)CNC12CC3CC(CC(O)(C3)C1)C2,0,19.404255319148938,5.957972340425529,3.25531914893617,5.48936170212766,165.5971939185367,76.13650651063828,1.3498517153452132,6.019882978723401,4.175236406619385,7.520398127659572,194.45968115118362,22.26,6.21508,4.14,5.02,146.9756934447829,83.09911138000002,1.7598347883200012,6.3576900000000025,2.5625,7.646728719999994,250.784612054612,18.346534653465348,6.056831683168312,3.772277227722772,3.4653465346534653,153.34876403232963,66.96325468316836,1.5143082486979227,6.172139603960392,2.272483498349834,7.548152594059404,208.47209112270812,12.89240506329114,5.964283544303798,2.740506329113924,2.3354430379746836,160.69884583689424,43.35214677848101,1.2204560106606082,6.041736075949365,2.365770042194093,7.53526032911392,156.56202099038995,10.069767441860465,5.6773255813953485,2.2151162790697674,1.7325581395348837,167.27404893229235,33.806803796511645,0.9765402987243079,5.731962790697676,2.250726744186047,7.334516581395346,119.88347996503306,10.682926829268293,5.977934959349594,2.2357723577235773,1.7886178861788617,169.10453401652788,34.68987967479673,0.9892163288688294,6.0171512195121934,2.85964317976513,7.603381398373984,124.39446048461247,11.01980198019802,5.883147524752475,2.405940594059406,2.3366336633663365,171.31255435272934,37.565066376237624,0.98805859596,5.919065346534653,2.4500825082508255,7.529305821782183,127.24740604695461,15.430379746835444,5.980721518987339,2.911392405063291,3.0253164556962027,159.3884458947213,55.36454688607593,1.2864724946744555,6.063198734177214,2.8735935302391002,7.541649822784809,172.74477438566896,12.031578947368422,5.8849789473684195,2.6,1.736842105263158,160.96991699661402,40.038108378947385,1.2082768380977054,5.9629421052631555,2.3969298245614032,7.481350736842104,153.6556233279941,7.228610230873698,0.10466129470348569,0.013868411161768885,0.7089180624717067,3.2711634223630615,1.4168232829863956,34.4637130131281,0.2197549255622228,0.10049751018560424,1.6851076404607424,0.06029383431416927,49.71830995777143,0.37947487550928016,-0.0037399755545496037,-0.006943817786874874,0.14384789497510198,0.8041557265731092,-0.07191133218557942,1.8652328919782852,0.012741859685702898,-0.002168148483476793,0.018763517931693584,-0.0033707823992757137,3.2308334082227157,0.22346476385981692,0.006164532134517192,-6.326259439129824e-05,-0.08009986150267352,-0.18542506129291061,-0.1164370327152991,1.009944174780051,-0.010288615237690339,0.006124819706959315,0.06632747645520547,0.0032007660650175363,-0.8862973953301836,-1.676361375500685,-0.010327898527886495,0.0005265133442086606,-0.08610631994544753,-0.2914973841190527,-0.07502687549636886,-8.038864635670526,-0.041713061533789245,-0.012675452550269048,-0.1036932406043809,-0.0038300653941585397,-11.32770664625925,1.004937517765589,0.011239732015960086,0.00042538512061846283,-0.08138218914167203,0.19271584532620253,-0.15237910100548246,4.7354066062434805,-0.0015477922019670584,0.01251556502468762,0.04274641968550078,0.004083049901565489,2.9138602466431425,-1.1130592881302281,-0.01851223744695573,-0.0017034185593656408,0.07278060557880364,-0.46126894043951755,-0.08009666421734177,-5.249657062946486,-0.015040546494664879,-0.018092182387645525,-0.08881759068081091,-0.009887486623458376,-5.0786567328184695,0.8082551577928275,-0.010380886024319955,-0.000873728147856802,0.11770928111371574,0.24895454688067267,0.3881870525968185,4.032096300543676,0.05680865672461525,-0.0075057890986020386,-0.18963681678262886,-0.007695433640059349,11.545637182017327,0.7953596048386636,0.023259981892258922,0.004825968292029089,-0.05661534229933927,0.1344385167697165,0.014744751528416731,3.6874120921775755,0.006223279699722898,0.021260071284904623,0.27512592329423347,0.014971372257336203,2.3307291566109654,-1.6140525601010216,-0.022354575778513717,-0.0026165718252965597,-0.09436039169903028,-0.8422720449834411,-0.018888816358445235,-7.623172519511089,-0.01702905595579405,-0.02287757737485406,-0.2207241640391911,-0.010936020204426864,-7.070286729292721,,,0.47121212121212125,0.8636363636363636,0.20454545454545456,0.0,0.6590909090909091,-0.45454545454545453,1.1778888675511419,0.018442418479032163,0.0379878730244867,0.4823973996195838,0.11446457332754058,0.3631936246649316,1.6602862671707257,0.47765819799247217,2.069488734067203,1.63495374155881,0.2720457638111742,0.16248922869721832,0.0,0.4345349925083925,6.450950575319164,912.0,280.0246999999999,153.0,258.0,7783.068114171226,3578.4158059999995,63.44303062122502,282.93449999999984,196.23611111111111,353.4587119999999,9139.60501410563,1113.0,310.754,207.0,251.0,7348.784672239145,4154.955569000002,87.99173941600006,317.8845000000001,128.125,382.3364359999997,12539.2306027306,1853.0,611.7399999999996,381.0,350.0,15488.225167265293,6763.288723000004,152.9451331184902,623.3860999999996,229.52083333333326,762.3634119999998,21055.68120339352,2037.0,942.3568,433.0,369.0,25390.41764222929,6849.639190999999,192.83204968437607,954.5942999999997,373.7916666666667,1190.5711319999994,24736.79931648161,1732.0,976.5,381.0,298.0,28771.136416354286,5814.770253000003,167.96493138058096,985.8976000000002,387.12500000000006,1261.5368519999995,20619.958553985685,1314.0,735.2860000000001,275.0,220.0,20799.85768403293,4266.855199999997,121.67360845086601,740.1095999999998,351.736111111111,935.215912,15300.518639607333,1113.0,594.1979,243.0,236.0,17302.567989625662,3794.071704,99.79391819196,597.8256,247.45833333333337,760.4598880000004,12851.988010742416,1219.0,472.4769999999998,230.0,239.0,12591.687225682981,4373.799203999998,101.63132707928197,478.9926999999999,227.0138888888889,595.7903359999999,13646.837176467849,1143.0,559.0729999999999,247.0,165.0,15292.142114678332,3803.6202960000014,114.78629961928202,566.4794999999998,227.70833333333331,710.7283199999998,14597.28421615944,339.7446808510638,4.9190808510638275,0.6518153246031376,33.319148936170215,153.7446808510639,66.5906943003606,1619.7945116170206,10.328481501424472,4.723382978723399,79.20005910165489,2.8338102127659557,2336.7605680152574,18.97374377546401,-0.1869987777274802,-0.3471908893437437,7.192394748755098,40.20778632865546,-3.595566609278971,93.26164459891426,0.6370929842851449,-0.10840742417383964,0.9381758965846791,-0.16853911996378568,161.54167041113578,22.569941149841508,0.6226177455862364,-0.006389522033521122,-8.090086011770026,-18.727931190583973,-11.760140304245208,102.00436165278515,-1.0391501390067241,0.6186067904028908,6.699075121975752,0.3232773725667712,-89.51603692834854,-264.8650973291082,-1.6318079674060662,0.08318910838496837,-13.604798551380709,-46.05658669081032,-11.85424632842628,-1270.1406124359432,-6.5906637223387,-2.0027215029425096,-16.383532015492182,-0.6051503322770493,-1789.7776501089616,172.84925305568132,1.9332339067451347,0.07316624074637561,-13.99773653236759,33.14712539610684,-26.209205372942982,814.4899362738787,-0.26622025873833405,2.1526771842462704,7.352384185906135,0.7022845830692641,501.18396242262054,-136.90629244001806,-2.277005205975555,-0.20952048280197383,8.952014486192848,-56.73607967406066,-9.851889698733038,-645.7078187424178,-1.84998721884378,-2.2253384336803994,-10.924563653739742,-1.2161608546853802,-624.6747781366718,81.63377093707558,-1.0484694884563155,-0.08824654293353701,11.88863739248529,25.14440923494794,39.20689231227867,407.2417263549113,5.73767432918614,-0.7580846989588059,-19.153318495045514,-0.7772387976459942,1166.10935538375,62.83340878225442,1.837538569488455,0.38125149507029804,-4.472612041647802,10.620642824807604,1.1648353707449217,291.3055552820285,0.4916390962781089,1.6795456315074653,21.734947940244446,1.18273840832956,184.12760337226626,-153.33499320959706,-2.123684698958803,-0.24857432340317318,-8.964237211407877,-80.01584427342691,-1.7944375540522972,-724.2013893535534,-1.6177603158004346,-2.173369850611136,-20.968795583723153,-1.0389219194205521,-671.6772392828085,0.6987287600084865,0.5933185316544587,0.42033921423337545,0.3469684594733565,0.2705315833566568,0.21009000180486717,0.16496014979816648,0.12244218529781771,0.107666393883209,0.07772824939887632,0.06515414067574811,0.04569245732019986,0.04194006405335386,0.028450505920314336,0.025028891189549058,0.016185472821041633,8.022111472559628,5.754882861612522,3.5438678751412898,2.2537144379102787,0.384210875950489,-0.4076560219803508,4.025767596401652,0.9113404528353805,6.021983232327301,1.8561917259183722,14.56341593657255,11.015969966978632,16.010209400325014,11.766683417974365,1.9270162848418548,0.7518118339183208,3.489090236213245,2.3033875971076125,7.008271080720379,1.1177544194089535,3.70200283993457,2.4992792002501223,20.832368001194222,14.70255050904137,0.2552911785396562,0.4866931037073101,0.6874340533037596,0.8360156958978409,0.8360156958978409,0.8360156958978409,1.3904036832455027,512.4873168599722,1.0,1.0,2.0,0.0,0.0,9.0,0.0,4.0,0.0,4.092301288250795,2.766849467857688,1.6170212765957448,0.7659574468085077,0.7659574468085077,0.7659574468085077,203.37853238623117,918.0086641869902,50.608563538727275,19.532099238021072,38.57230825321293,,10.0,408.0,5.601050810983688,9.901064578912528,17.487945810882813,24.925324904147935,44.94575136048208,6.4208216229260096,4.899909730850478,0.0,11.386009916798605,5.261891554738487,10.366666666666667,19.0,4.5,0.0,14.5,0.0,0.028787878787878765,-10.0,0.098723404255319,0.0,-0.098723404255319,0.04368686868686855,0.14230882352941143,0.0,0.545390070921986,0.8242424242424239,0.446666666666667,0.545390070921986,0.7805555555555553,25.913555086125122,0.4057332065387076,0.8357332065387075,10.612742791630843,2.5182206132058926,7.990259742628496,36.526297877755965,10.508480355834388,0.5716911764705885,0.10289389067524116,0.09646302250803858,0.2315112540192926,0.8823529411764706,0.30401981412921586,-0.5378804023628895,-0.06242772903182261,-0.011444263880061476,-0.035858693490859295,0.6959801858707841,1.2313477116121994,0.03510739989847774,0.026198887481110628,0.03847961598788123,-2.284409794460131,0.9125676352705413,0.7917125410040275,1.494169595009826,1.1734993614303957,0.6223304732908937,1.3956623300290798,0.9183942400785995,1.1940360895590147,0.7874292676994045,0.587583736609791,0.7935885296302072,1.09836549532035,0.9256514266156076,0.7001237529547497,0.9607546595164072,1.7018132847767533,1.0012742763343587,1.3024319309109849,0.933277554230806,1.196478399839677,0.7123196300188492,0.4624217651921936,0.6623579603248003,1.115360762578978,1.2147059149945463,1.0909167296520768,1.0404756814649763,1.118450619978337,1.018785889211602,1.1133660265031662,1.2165660701036733,1.2155025675261388,1.1128562359244294,0.8855963651300304,1.0643931315492767,1.2338144520463832,0.8214273750990354,0.8074637867161274,0.8233556008955052,1.123733998633758,0.8993315482205727,0.9739437345657895,0.8231949013211805,0.9417464573321551,0.8022237241378736,0.8815411613581045,0.8428840873406056,0.8956421200748174,1.192693822604559,1.505558218264365,1.498749614093714,0.656620876553593,1.2271956057506876,0.9853663866855704,1.1844371672820648,0.9502668310276055,1.4723416171544328,1.3978635273698492,1.5465690909043275,1.0036578661003275,0.9169378360681761,1.3641615161962573,1.397219926375523,0.8201509806153028,1.0990318240238082,0.6145370577958544,0.9058728802144442,0.6067967419545346,1.312768610722937,1.350505570643776,1.4279514792202201,0.6639492069441746,0.8766449037315138,0.770313714648234,0.7166801197158608,1.1970916791955637,1.0093176188657693,1.0403583545356183,0.8803785356803786,1.0275602891326592,0.777173343408264,0.8857878233471289,0.7797403624905836,0.9812466003493143,1.19789645079633,1.1798930835684485,0.9812969358573875,1.0754049875646972,1.2660771774440247,1.0342880023746568,1.1965593654364428,1.1063806516963164,1.1929701153229477,1.1844145423425059,1.170672209526645,1.1512002029120885,7.5,0.037037037037037035,2.4444444444444455,2.625,1.481666666666667,0.4619444444444445,0.3958730158730158,0.2786989795918367,0.23958333333333331,0.14124228395061728,4043.0698410088457,4790.3265785611575,2079.1652824931325,1821.7699286293307,11.551295193760275,0.4647797392556211,6.182487225539665,0.8683896581366523,1.0,0.9375,1.4622875634268424,2.78773938381995,3.937567575081893,4.78863140486913,4.78863140486913,4.78863140486913,0.30000000000000004,0.009259259259259259,0.06267806267806271,0.075,0.0510919540229885,0.023097222222222217,0.019793650793650787,0.011612457482993197,0.011979166666666667,0.009416152263374486,0.5739279253892178,15.5232,5.522682445759369,2.8106508875739644,131.21303163157827,1.0,4.065226837026154,97.72837635687091,,88.52061189775698,86.63043266856339,85.30499743534749,88.53763410355732,120.23569991666436,87.73007914465722,88.6333111993369,109.79647144744166,0.052496242484969945,-0.03573408455480386,-0.500693100736509,0.20291187739463618,0.24583171879324625,-0.05075532922779468,0.05412164647691242,0.05798213465797875,-0.021574151234916558,0.011134907635077402,-0.055905922017030645,0.06498276813847544,0.030913931824044068,0.0588998268364808,-0.004561632450420459,-0.112988885095406,-0.05668474403487952,-0.08218176120727762,0.029304566643627107,-0.04681858762149636,0.06094498953902108,0.039360973069394074,0.05308612566153128,-0.017826378170999094,-0.23190645531569473,-0.09867925441918435,0.037964936146406045,-0.12146159690899973,-0.08911122633808291,-0.05295429316931211,-0.23325590694793447,-0.18981627568560844,-0.12612703067826592,-0.06153508423712867,-0.063523334313115,-0.22783772529437366,0.1390222305075267,0.10739148648794378,0.030672952774224344,-0.11479773679051947,0.05891354861964866,-0.10754982843329347,0.13740268219038515,-0.007043265119119283,0.12453607061083599,0.025367174570410857,0.06771919464086823,0.058607387280823674,-0.15397970738224415,-0.17687758879156298,-0.12282723229763065,0.1026643408196534,-0.14101066834083778,-0.05653257197221741,-0.15232418691934788,-0.06844236349280919,-0.18002617531749696,-0.05270736927910813,-0.1639883536339433,-0.10214861963594618,0.11181335443163554,-0.09918553036946355,-0.0630013155555564,0.16604074200523503,0.0761058115221984,0.273984100387307,0.1169954119281271,0.2585091395757138,-0.07468631894203091,-0.11253691587961605,-0.12763218208948596,0.23222103067911376,0.11002939423150102,0.22224053274093752,0.3479827815700229,-0.07986161630858266,0.04109807411352112,0.010406909390518753,0.10699404590483176,0.028319181851333745,0.21154823881348275,0.16326904981512547,0.2483068530577409,0.046878688326103306,-0.2232867049889252,-0.21358971185906045,-0.18867134776834968,-0.1331047926329233,-0.2574839395749267,-0.013331808268022799,-0.22119417361116112,-0.07749112295083613,-0.22764322551476665,-0.1309852016212096,-0.18137874840474127,-0.14220689993883368,13.235512442968048,13.08661463594317,1.455856501921552,13.511998398736072,26.981602654103817,32.82275713047032,33.68062947089586,33.68062947089586,33.68062947089586,45.52875214947846,35.96898231429382,5.985006803845832,3.574763031338803,0.0,9.559769835184635,3961.433521077648,3823.256267875402,804.0044546717359,103.0,39.0,52.0,77.0,93.0,112.0,117.0,131.0,98.0,303.19467704000067,25.0,4.859812404361672,5.739792912179234,6.688354713946762,7.580189417944541,8.534836626588833,9.431321587125709,10.390256111708327,11.28969440982767,12.252283295134513,0.5815602836879434,0.9677446808510641,1.1379171806956505,0.5374612279169625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6365629379538797,0.9541093032957859,0.9946537323147019,0.5846029032830831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,10.0,1.0,0.0,0.0,3.0,1.0,2.0,1.0,1.0,15.323225729697514,6.041840829147961,0.0,5.907179729351506,0.0,4.794537184071822,0.0,5.261891554738487,0.0,0.0,63.202385075730874,12.08368165829592,18.21502852968854,157.7483543532862,-279.09282345513844,-32.39220295226317,-5.938145179896562,-18.60618823034256,361.1268867395174,638.9158407318519,18.216360586464106,13.59395405812451,19.96612002287037,0.5,0.8260210091729584,0.22032170608507534,120.2470718948033,0.13402174730330055,58.16759002744984,0.1739789908270415,5.0,0.12,0.26325756999731703,0.5018804196422164,0.7088855143423693,0.8621036646884913,0.8621036646884913,0.8621036646884913,1.1742799999999989,,0.9285714285714287,1.1284318287575617,1.022017128129546,0.9260316936439501,-3.719133983223758,1.0009944920440637,0.9177785797741316,-1.7559628408463377,80.71350000000005,9.901064578912528,5.261891554738487,10.216698334856808,11.835812092322787,68.54838987592308,13.08951281182515,0.0,0.0,6.069221312792274,3.9318256327243257,0.0,5.332718793265369,2.3978952727983707,6.942156705699469,4.59511985013459,8.66544076787644,6.580639137284949,10.451637862362272,27.33333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.484000000000016,0.0,12.437354733560092,0.0,0.0,0.0,0.0,0.0,0.04794926303854874,53.48210749269557,5.316788604006331,0.0,0.0,46.18494655938283,4.794537184071822,23.166924959853546,51.36657298340809,0.0,0.0,0.0,0.0,25.260677712097237,29.91845808383235,28.157662458579285,195.45675271374182,,176.95680821109838,173.15828062542153,170.5170842226832,176.99108350769245,242.5000183696326,175.36915879003772,177.18318798233068,220.55074080807225,28.157662458579285,195.45675271374176,,176.11265236694254,172.13243350836916,169.58797774256544,176.14923651347073,244.1905338165525,174.45916379727043,176.34884381889964,221.3489057357297,5.155242070750656,149.3537416101958,,135.41682756812168,132.19006446316178,129.66028607524422,135.44508987471553,188.3271058985616,134.05455732835588,135.6105805023165,171.40890581607755,1.2798937481172403,8.884397850624628,,8.043491282322654,7.87083093751916,7.7507765555765085,8.045049250349656,11.022728107710574,7.971325399547169,8.053781271924121,10.025033673094192,2.5778315981228723,97.72837635687091,,88.52061189775698,86.63043266856339,85.30499743534749,88.53763410355732,120.23569991666436,87.73007914465722,88.6333111993369,109.79647144744166,44.84313725490194,0.0,0.0,0.0,0.0,0.0,10.746187431762827,46.74872541879099,8.892606956126752,3.51317791005291,0.0,0.0,0.9952206291467203,1.7244267290249433,-0.5423391833585287,9.12004164343653,2.2320405538758714,27.476336454304903,428.6018502823397,68.72751548106159,131.02375103953764,185.06567602884897,225.0656760288491,225.0656760288491,225.0656760288491,869.0,123.76654147881726,90.27339081046381,70.89743402214577,76.36,76.36,1.0,6.903747257584598,5.643856189774724,3.7019742502764195,4.635689327702702,,4.638982702118466,4.638396272117627,4.637573522106915,4.638986820195823,4.640303224674266,4.638730261158847,4.639017374691824,4.6420138403208755,0.16827155683074635,0.21071315125921372,,0.2108628500962939,0.21083619418716487,0.21079879645940522,0.21086303728162833,0.21092287384883027,0.21085137550722033,0.21086442612235565,0.21100062910549433,2.0973236188664313,2.322242270589984,,2.322952457331595,2.3228260358491384,2.322648641995747,2.3229533450424995,2.3232370746125226,2.3228980385409557,2.3229599314797027,2.323605649754698,235.7299999999999,443.1629212252863,124.55936535399967,,123.7566683811927,123.80024331157682,123.98847288518029,123.75673495080868,124.02210705396163,123.78118087124913,123.75351268055942,123.67510837065943,20.143769146603923,5.661789334272712,,5.625303108236031,5.627283786889856,5.635839676599104,5.625306134127667,5.6373685024528015,5.626417312329506,5.625159667298155,5.621595835029974,6.882394830802234,5.6132397927742685,,5.606774646269905,5.607126685972906,5.608645961044818,5.6067751841770646,5.608917192772076,5.606972696711165,5.606749146707665,5.606115393731222,0.0,14.161781462585035,23.379406985252267,-0.5423391833585287,1.2840523431594857,1.9911581029016547,7.870159039460086,1.0224479166666662,0.0,292.0237308152639,81.85171539705439,-144.81435605755624,-16.807512116382576,-3.081156511862898,-9.654290403837079,187.37980042206064,331.5176108977509,9.452018491135007,7.05356618931385,10.359925340554716,1047.0,35.0,2.580583457497185,1.7193357859539513,0.30177669529663687,0.16744528915252793,0.1642664266089148,0.05862717505313164,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.3712879178910342,0.3112002957312514,0.9889291989185723,0.7131389788805008,15.372032720186704,13.053007696398092,10.508480355834386,8.674211486833913,10.550731750909614,8.19351007038982,8.577927789504656,6.366993635486521,8.290312329007094,5.9850752037134765,6.059335082844575,4.249398530778587,4.697287173975632,3.1864566630752056,2.92838026917724,1.8937003200618712,4.505343803266117,2.885132543856815,9.205832678696353,5.725164865955781,13.100971097220915,7.755633160330172,74.66037700285526,44.37462077135479,29.135034635068642,24.6381307808357,24.6381307808357,24.6381307808357,128.0,155.0,49.96382499999997,28.798174999999993,0.3829787234042553,163.05,6.680555555555555,4.597222222222221,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,0.0,0.0,0.0,47.0,0.0,1.0,50.0,0.0,1.0,1.0,48.0,2.0,25.0,48.0,1.0,0.0,4.0,17.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,4.0,2.0,1.0,22.0,5.0,0.0,3.0,2.0,0.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,3.367295829986474,4.836281906951478,3.784189633918261,4.0943445622221,4.477336814478207,4.700480365792417,4.820281565605037,4.867534450455582,5.017279836814924,4.795790545596741 +2446,CCN(CC)CCNC(=O)c1cc(Br)c(N)cc1OC,0,48.23809523809524,6.053864285714286,2.7142857142857144,5.6920765562740865,166.36899905401137,226.83867778571428,1.5010712358732858,6.134966666666666,3.655302844731857,7.643898404761904,201.88598900700535,26.214285714285715,6.343142857142858,3.261904761904762,5.358024691358025,151.0762436530714,101.44477197619051,1.6995304473809525,6.4775,2.958921222810112,7.786716238095235,239.43145547909097,22.027397260273972,6.185780821917809,2.9315068493150687,3.9563673262303403,161.81054676948125,85.13778378082189,1.4026925732313147,6.27471369863014,2.667639100287502,7.728270410958907,190.18083932650242,22.741573033707866,6.127288764044944,2.696629213483146,3.3662089055347484,162.32162742250205,88.20401988764046,1.3744186841492356,6.223926966292133,2.6523789707310317,7.698147977528089,182.49951525732416,18.80808080808081,6.0765252525252516,2.2525252525252526,2.909839132061354,159.94744708468065,68.58823821212121,1.2915913348644843,6.172341414141412,2.8832148646963462,7.671021979797977,163.397180276443,17.336363636363636,5.866289090909088,1.9454545454545455,1.7013468013468014,167.88607957006553,66.75680932727272,1.0288438254101002,5.930148181818183,2.431144781144782,7.523510345454545,128.7020987452645,15.175824175824175,5.918526373626375,2.021978021978022,1.6459096459096458,170.28238081169192,55.731989747252754,1.0704753184650437,5.972892307692309,2.6030219780219785,7.568981714285714,131.16781562320276,16.356164383561644,6.025150684931508,2.1780821917808217,1.7742262810755964,165.7587139697388,56.1760217260274,1.1890798130154931,6.11043287671233,2.66787163876205,7.6993974520547965,145.06841727606232,17.566666666666666,6.055913333333333,2.3,1.6382716049382717,161.4381211851265,62.92356548333332,1.2602846485748327,6.149406666666666,2.637654320987654,7.674364033333335,159.97156434624333,30.276643990929703,0.11535946712018133,0.02185820436184896,0.5351473922902494,3.564697392445776,1.3920109775231053,159.65606553571428,0.30134502052469386,0.11378548752834462,1.1560318257389834,0.0713117103174603,52.40193625363842,-0.021541950113378693,-0.0055742630385487,-0.010377458348273772,0.27437641723356015,1.3643654992861347,-0.2829962707040227,-0.11884014285713894,-0.017827220414966,-0.0034783446712018306,-0.0962467806052462,-0.005427444444444443,-1.7728863290382066,1.7298791662783837,-0.003488332090827168,-0.0005457019388878059,0.014754760351629181,0.39901273598615206,0.11512860245306733,8.818656489726028,0.04884682930614368,-0.0013883577175162456,0.08209626862219915,-0.0035582187975646876,7.969342896236346,1.274452852301969,-0.0042778459323804165,-0.0017037913221554888,-0.06698259828275885,0.10124854080491547,0.1702488508257171,6.27222031741573,0.022592270045477866,-0.0013313409258834737,0.01649407974659066,-0.00336262390761548,5.03382976139261,-2.5291692434549584,0.015858714698000424,0.0033974236347830027,-0.056551913694770854,0.3183356949768866,-0.34147245062694637,-13.023360169191916,-0.05984204987952071,0.010730096887239747,0.0996321363721667,0.01020984090909091,-11.778594913083497,4.282663368377654,0.012390229849515549,-0.002250058025292563,0.004679447536590401,-0.013605640119455559,-0.19467312590473942,21.161915236363637,-0.009203902023728928,0.01756135229849515,-0.03307732111009595,0.011172123232323222,2.024343620597388,1.0488400488400487,-0.003732413221698937,0.0013580323148901779,-0.0003488574917146242,-0.3103056283538354,0.26008562383123723,5.444345568681316,0.04054781026596703,-0.003167538810395954,0.01742405814459015,-0.0028590619658119655,5.175123071140311,-6.031373279905569,-0.017236538222594952,-0.00044381128684309285,-0.010685552759916752,-0.6449975471582426,0.04022289060040596,-30.866822304794507,-0.023074837089341636,-0.020457437952349878,-0.16511422041773344,-0.012678291856925416,-3.6582602164187876,-3.32108843537415,-0.023989982993197243,-0.00017339425146918434,-0.09705215419501138,-1.2123393024333649,-0.1759392634319583,-16.707754358333315,-0.04875435012497484,-0.02402755102040814,-0.33111439563251,-0.012653063888888882,-9.51215594642003,,,0.51,1.0625,0.45,0.075,0.6125,-0.1625,0.9098955102851234,0.019330389853490358,0.023630389853490356,0.7380880231248126,0.21222027865816026,0.26416000960700414,1.647983533409936,0.47638028826516443,1.9466511699352487,1.3819033168190598,0.2930871469111155,0.18360873889632726,0.08805196730874607,0.5647478531161888,8.16879854866668,2026.0,254.2623,114.0,239.06721536351165,6987.497960268478,9527.224467,63.04499190667801,257.66859999999997,153.522719478738,321.043733,8479.211538294225,1101.0,266.41200000000003,137.0,225.03703703703707,6345.202233428999,4260.680423000002,71.38027879,272.055,124.2746913580247,327.0420819999999,10056.12113012182,1608.0,451.56200000000007,214.0,288.81481481481484,11812.169914172131,6215.0582159999985,102.39655784588598,458.0541000000002,194.73765432098767,564.1637400000002,13883.201270834677,2024.0,545.3287,240.0,299.5925925925926,14446.624840602683,7850.157770000001,122.32326288928198,553.9294999999998,236.06172839506183,685.1351699999999,16242.45685790185,1862.0,601.5759999999999,223.0,288.0740740740741,15834.797261383383,6790.235583,127.86754215158395,611.0617999999998,285.4382716049383,759.4311759999997,16176.320847367857,1907.0,645.2917999999997,214.0,187.14814814814815,18467.46875270721,7343.2490259999995,113.17282079511102,652.3163000000001,267.42592592592604,827.5861379999999,14157.230861979093,1381.0,538.5859000000002,184.0,149.77777777777777,15495.696653863964,5071.611067000001,97.41325398031898,543.5332000000001,236.87500000000006,688.777336,11936.271221711451,1194.0,439.83600000000007,159.0,129.51851851851853,12100.386119790934,4100.849586,86.802826350131,446.06160000000006,194.75462962962965,562.0560140000001,10589.99446115255,1054.0,363.35479999999995,138.0,98.2962962962963,9686.28727110759,3775.4139289999994,75.61707891448997,368.96439999999996,158.25925925925924,460.4618420000001,9598.2938607746,1271.6190476190475,4.845097619047616,0.9180445831976562,22.476190476190474,149.7172904827226,58.464461055970425,6705.554752499999,12.656490862037142,4.778990476190474,48.55333668103731,2.9950918333333325,2200.8813226528137,-0.9047619047619051,-0.23411904761904542,-0.4358532506274984,11.523809523809526,57.303350970017654,-11.885843369568954,-4.991285999999835,-0.7487432574285721,-0.14609047619047688,-4.04236478542034,-0.2279526666666666,-74.46122581960468,126.281179138322,-0.25464824263038327,-0.03983624153880983,1.0770975056689303,29.1279297269891,8.404387979073915,643.76192375,3.5658185393484887,-0.10135011337868594,5.993027609420539,-0.2597499722222222,581.7620314252532,113.42630385487524,-0.3807282879818571,-0.1516374276718385,-5.961451247165537,9.011120131637476,15.152147723488824,558.22760825,2.01071203404753,-0.11848934240362917,1.4679730974465688,-0.2992735277777777,448.0108487639423,-250.38775510204087,1.570012755102042,0.33634493984351727,-5.5986394557823145,31.51523380271177,-33.80577261206769,-1289.3126567499996,-5.92436293807255,1.062279591836735,9.863581500844504,1.01077425,-1166.080896395266,471.09297052154193,1.3629252834467105,-0.2475063827821819,0.5147392290249442,-1.4966204131401115,-21.414043849521338,2327.810676,-1.012429222610182,1.9317487528344666,-3.6385053221105546,1.2289335555555545,222.6777982657127,95.44444444444443,-0.33964960317460324,0.12358094065500619,-0.0317460317460308,-28.237812180199022,23.667791768642587,495.43544674999976,3.6898507342029996,-0.2882460317460318,1.5855892911577039,-0.26017463888888887,470.9361994737683,-440.29024943310657,-1.2582672902494314,-0.03239822393954578,-0.7800453514739228,-47.084820942551715,2.936271013829635,-2253.278028249999,-1.6844631075219394,-1.4933929705215412,-12.053338090494542,-0.9255153055555554,-267.0529957985715,-199.265306122449,-1.4393989795918345,-0.01040365508815106,-5.823129251700683,-72.7403581460019,-10.556355805917498,-1002.465261499999,-2.92526100749849,-1.4416530612244884,-19.8668637379506,-0.759183833333333,-570.7293567852018,0.756047793231507,0.6894074560433342,0.4763802882651643,0.372915150549032,0.30187939900903255,0.20042788766148303,0.20553770255739193,0.12056882315812845,0.12984403131562897,0.06346930327991882,0.08364320263319369,0.03271316338585051,0.056712613263226665,0.019777757529345102,0.038331137336347396,0.011181268415627514,35.000417975955735,5.69229294934416,3.5439331620946137,2.187303184495117,0.42369990755447673,-0.527941978506308,3.214506531498903,0.9778281842448778,6.022054750471612,0.25601218331666337,14.544074263628891,10.951673876199283,79.9041785073006,11.704541538211407,3.0589810881577195,0.7518722909317341,3.489167034158656,2.2376899429648245,7.008269783419019,1.0433680760138717,3.70209083535127,2.4337884932413223,26.523891673802215,14.702493291335216,0.2944613857747566,0.5958697056659017,0.750950334120039,0.8112978663800524,0.8112978663800524,0.8112978663800524,2.417543310091892,461.97739235477394,0.0,1.0,6.0,0.0,5.0,0.0,1.0,0.0,0.0,3.7658417147854877,2.100994185795696,1.2443967263450109,0.9110633930116769,0.9110633930116769,0.9110633930116769,227.13217368288983,1132.0154880411917,46.765712134733064,26.95274971526647,56.34198390708628,,11.0,341.0,0.0,4.794537184071822,5.907179729351506,28.01782552140945,19.634269217737724,7.109797541277533,12.13273413692322,0.0,39.994116632187406,10.470530430962235,10.2,21.25,9.0,1.5,12.25,0.009999999999999964,0.0,-3.25,0.1238095238095237,0.03214285714285714,-0.09166666666666656,0.07043478260869551,0.10685714285714265,0.0,0.5571428571428574,0.8399999999999996,0.4333333333333337,0.5250000000000002,0.7695652173913041,18.197910205702467,0.3866077970698072,0.47260779706980716,14.761760462496252,4.244405573163205,5.283200192140083,32.95967066819872,9.527605765303289,0.6071428571428573,0.34967320261437906,0.0,0.28431372549019607,0.5,0.2986021929594533,-0.5994478923495454,-0.03800792630713739,-0.014272568865465369,-0.05449526294086777,0.7013978070405468,1.4080654698545405,0.044926267610932206,0.033525368329870006,0.045421466769501304,-4.410540083262718,0.553493858597963,0.9054210908326089,1.5990140586779993,0.7600635593220341,0.5802776980325668,1.567759987186559,0.5450675375064018,0.9949390159939678,0.8609142895291694,0.7690476549835809,0.8863930493839615,1.079220276034613,0.5933919396406675,1.0826698465822708,1.2000048041940674,1.2993963315532855,1.0438256330299154,1.0587900791204528,0.5858001633780255,0.7128930073645687,1.0286717149279345,0.6173423718775078,1.0634239622338348,0.8109057338796809,0.8774269393635428,1.0478438242438293,1.1827159748925207,1.3732384307750904,1.0693724344999371,0.9854452060874415,0.8792032651792081,0.8988896707077336,1.0073351197924318,0.8976476384767296,1.0379841022788345,0.8906515872818535,1.0874468925322731,0.8829667505958367,0.8234773623276412,1.041056753980483,0.8978776130526853,1.287197663077832,1.0871508714072644,1.2259665547445442,0.9162084622193748,1.1268020988844807,0.9187629468867923,1.2340644808868033,0.5438700024511139,0.929214601754592,1.0333578795112632,0.8374518489984593,0.984495488342528,1.0329237449761102,0.5420775488552689,0.8662783869491382,0.8663177111433267,1.1530750261768272,0.8694423393027848,0.8856463575986883,0.7360824653177859,1.1170193065132528,1.0662702872693333,0.9120762711864407,1.0933606792470711,0.7318346019488361,0.728382942934946,0.7118124547959146,1.0911633673763153,1.2120609515231584,1.0912104732647574,0.8100649939510902,1.7046491931843364,1.3448345744169639,1.0706054595386767,1.0745008126306015,1.3267936370067352,0.8843750585690857,1.71357432393689,1.2405604781462682,1.3714290932353892,1.8166817808013629,1.4669925333389218,1.0712212322671835,1.110749325943679,1.292418920253708,0.8416038132815477,1.276906779661017,1.4276892084805466,1.1474278691426854,1.1065560939098456,1.1736695621083946,1.2776600058988348,1.8584910524169205,1.3101686726244508,1.1752399580760413,4.5,0.05774920926436078,2.666666666666668,1.5,1.2044444444444447,0.6041666666666667,0.3053061224489796,0.1996527777777778,0.16855631141345426,0.17125000000000007,4197.623765087579,4789.028607186929,2007.0695995720453,1783.8655069899098,12.992254357368653,0.4775185789905937,6.7882115187536245,0.9139436538586448,1.0,0.5,1.6264757079932732,3.2913232369830645,4.14792069643375,4.481254029767084,4.481254029767084,4.481254029767084,0.22500000000000003,0.007218651158045097,0.10256410256410262,0.051724137931034475,0.048177777777777785,0.028769841269841268,0.017959183673469388,0.013310185185185184,0.012039736529532446,0.01317307692307692,0.5199366930120652,18.05,9.106508875739644,5.37890625,128.143141520686,1.0,3.870178762388324,93.52463205173123,,76.42752235593572,75.99827192653191,75.34016668497662,76.40832406186875,111.22820834169194,76.98796161114977,77.82180407710513,99.28567881602177,-0.0007115038945476336,-0.048320811266763575,-0.4747626189453357,0.5127118644067798,0.38274370839372407,-0.20330031535209311,-0.0007443509424986737,-0.05915883522457323,-0.0305693172895652,-0.08325616861259097,-0.07610874034969768,-0.033832458412547874,0.0571357633559592,-0.03023880204988316,-0.02496554290801066,0.027571395402832495,0.11193453246037954,0.08270667711106923,0.05523533640977353,0.16209602276185914,-0.012201535957477862,0.07101557828628101,-0.04989669693412859,0.15208107688354763,0.04209359705401201,-0.0370827469922669,-0.07794745139858174,-0.12516663492668073,0.028403123647880744,0.12230424441670125,0.03928582541709113,0.07497143973423159,-0.011700445766880676,0.01426784226813735,-0.047153881075716664,0.0960619038393471,-0.0835353232746882,0.13747215632921428,0.15543013408332956,-0.10567539804827944,0.08930230533775355,-0.2453087340119618,-0.08157134603995772,-0.19858317146015997,0.09430110219079404,0.08618459643918341,0.14317201008978023,-0.22477403995287817,0.14145105942589467,0.10740540121087266,-0.10293883193899434,0.008744221879815115,-0.0038167728201244553,-0.1398502806717328,0.13254689175357276,-0.030542738047250096,0.15433736480779692,-0.028612811839286136,0.15666603959697467,0.038631084370605334,0.03464188597501958,-0.03235463299956573,0.062129180073934656,-0.0006518904823989377,-0.0870496410190183,0.1868416471068528,0.03410046182970382,0.13455609850584646,-0.02783781024453494,0.015072299703731746,-0.04009246101494693,0.09875824141481006,-0.19920877894235742,-0.1494158966999904,-0.020304105474359804,-0.019967494775946136,-0.18094033690632658,0.028895526867163887,-0.19333322665332595,-0.07657281692979147,-0.17978951794932382,-0.14282843840582468,-0.1777869553329336,-0.06981154663277894,-0.10969143199520673,-0.20795851083643194,-0.007932685073245292,-0.1813559322033899,-0.34009599384299105,-0.12639215226953046,-0.10464841597011466,-0.16178913472698198,-0.21116533876451285,-0.28642325259587725,-0.17743318499249128,-0.1815229861045368,4.000913745780976,8.39043208271309,5.085675264759766,24.25255774672566,38.936613330809756,41.89587309374558,42.23187309374558,42.23187309374558,42.23187309374558,38.933023398704975,27.638066336381197,5.86174293822231,3.672174777926545,1.7610393461749214,11.294957062323776,5815.7459562031545,4582.745541505286,1405.05990211295,21.0,26.0,32.0,35.0,40.0,37.0,30.0,24.0,24.0,343.0895390440006,20.0,4.532599493153256,5.342334251964811,6.180016653652572,7.014814351275545,7.85979918056211,8.703672758358856,9.553575403548212,10.402716190456456,11.256393161510664,0.7063492063492063,0.9747619047619048,1.1406744766590418,0.6824161185579884,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6558803250641576,0.9622782446311857,1.0021243020150523,0.5941034282225003,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,3.0,0.0,0.0,1.0,0.0,4.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,20.687228765819043,5.749511833283905,0.0,0.0,5.907179729351506,4.794537184071822,0.0,0.0,0.0,13.847474399381248,35.08582377823611,29.315985670802736,12.673249032974528,168.37860885869506,-338.02230719316566,-21.43226643371839,-8.048150171265851,-30.729300653924152,395.5107825415849,793.993180848026,25.33344570101467,18.904599544000618,25.61268325316213,0.45454545454545453,0.9000252015535002,0.24699327554413167,17.481021723219964,0.1268401713206508,61.833477285271584,0.09997479844649997,6.0,0.35,0.3016283316561732,0.6103726800428201,0.7692278423580357,0.8310441834964921,0.8310441834964921,0.8310441834964921,2.1115,,1.7571428571428571,1.216023069633474,1.068869114789215,1.7757138121862008,-3.2666749668303154,1.1395080055575773,1.0647186232658992,-1.5319089842139564,85.22760000000004,9.53140013787187,0.0,10.216698334856808,0.0,13.847474399381248,39.02249064209002,22.16890514445263,0.0,5.749511833283905,3.713572066704308,0.0,4.976733742420574,0.0,6.444131256700441,0.0,8.006700845440367,0.0,9.62251624577579,29.666666666666664,3.3237071680524064,0.0,0.0,0.0,0.0,0.0,2.187865867281001,0.0,40.940000000000005,0.0,12.174788359788359,0.0,0.0,0.0,0.0,0.0,-0.15767951625094456,47.90832801967976,15.787319034968565,5.687386274683562,5.749511833283905,44.09591262512983,0.0,0.0,24.205463075150064,16.605453652755635,0.0,0.0,0.0,28.661476979435516,27.546973652694618,24.777474305635796,187.0492641034625,,153.11750825793416,151.87494154610044,150.57344645847434,153.16274769951002,223.43641917343297,153.86197242174376,155.53713629188366,199.03093032730777,24.777474305635796,187.04926410346252,,151.71179397221994,150.78052078343032,149.61146425516404,151.7421766497611,225.72309165021426,152.836415216742,154.5788895309444,200.10326661625754,4.7472906430883395,140.72024632376124,,117.7891020099618,116.26692947862503,114.62230124081475,117.77952151667758,169.57824213357455,117.87266201395346,119.23400133690308,152.48272642858655,1.2388737152817897,9.352463205173125,,7.655875412896708,7.593747077305022,7.5286723229237165,7.658137384975501,11.171820958671649,7.693098621087188,7.776856814594183,9.951546516365388,2.3736453215441693,93.52463205173123,,76.42752235593572,75.99827192653191,75.34016668497662,76.40832406186875,111.22820834169194,76.98796161114977,77.82180407710513,99.28567881602177,40.4156862745098,3.32272112259734,5.7284000424345844,0.0,0.0,5.7758913963121215,0.0,42.089220684632195,3.384009148010546,2.897211829176115,5.199979135172588,0.0,0.0,2.246438780759217,0.0,0.0,0.0,24.95234398534501,507.5146631489175,68.31197973571747,138.2355759532887,174.2126692502175,188.21266925021752,188.21266925021752,188.21266925021752,309.0,110.84592144448247,56.37472825136251,52.76365415704148,67.59,67.59,0.8333333333333334,6.904562688082973,5.321928094887363,3.5515060837015473,4.401851784789167,,4.395524027895548,4.395444164575852,4.395271943583364,4.395466570147258,4.378576627089848,4.395340780124517,4.39513491589363,4.38759884730618,0.17757530418507736,0.22009258923945835,,0.2197762013947774,0.2197722082287926,0.21976359717916819,0.21977332850736292,0.21892883135449243,0.21976703900622585,0.2197567457946815,0.21937994236530903,1.9605189430091507,2.175172493126712,,2.1737339373301663,2.173715767927673,2.1736765854559854,2.173720865367991,2.1698708811497345,2.1736922468309814,2.1736454088126433,2.1719292983987026,239.23999999999967,289.7727668542411,97.70682523557555,,97.38079448993827,97.73302552441231,97.90743935911637,97.37210945618955,99.26857117147365,97.74009981320988,97.75155234703841,98.54182365262565,14.488638342712056,4.885341261778778,,4.869039724496913,4.886651276220616,4.8953719679558185,4.868605472809477,4.963428558573683,4.887004990660494,4.887577617351921,4.927091182631282,6.362244233823275,5.275118596284058,,5.271776189937393,5.275386712422009,5.277169716577253,5.271686999649818,5.290976197701222,5.275459093612911,5.275576260087439,5.283628244228948,5.887194796128328,14.421227140547575,2.897211829176115,6.798727554178493,0.3201345322079454,3.3237071680524064,0.0,7.589235768298494,1.5231734221466364,286.7523123456853,94.94691127415534,-190.60719308287264,-12.08542767563811,-4.538266501973159,-17.327926643897513,223.02433445962276,447.72433152436577,14.285261278417202,10.660103131532518,14.442720371753735,902.0,29.0,1.2139803565731002,0.7070459561542378,0.0,0.0,0.33093309327558146,0.12623285496302084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05555555555555555,0.020833333333333332,0.18246983613200962,0.07186582441202959,15.120955864630139,13.788149120866684,9.527605765303287,7.45830301098064,7.848864374234846,5.211125079198559,6.577206481836542,3.8582023410601103,4.544541096047014,2.2214256147971585,3.3457281053277477,1.3085265354340203,2.0983666907393865,0.7317770285857688,1.1499341200904218,0.3354380524688254,3.0791985404917352,1.5662328134121837,3.939960633469934,1.5947758685421558,5.73213269187477,1.8076236349366968,68.68050613019889,36.85243877599035,29.799697129895677,28.121665421402636,28.121665421402636,28.121665421402636,92.0,104.0,46.00344599999997,27.764553999999993,0.14285714285714285,20.06,8.666666666666666,4.833333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,42.0,0.0,1.0,42.0,6.0,1.0,4.0,38.0,7.0,20.0,35.0,0.0,1.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,4.0,2.0,0.0,20.0,6.0,0.0,3.0,2.0,0.0,1.0,7.0,0.0,0.0,1.0,0.0,1.0,3.2188758248682006,4.5129178262830045,3.7013019741124933,4.178226046202803,4.593856426087818,5.056643815303811,5.117245029154514,4.959780500044607,4.574710978503383,4.620058798481842 +5453,S=P(N1CC1)(N1CC1)N1CC1,0,37.21739130434783,5.82834347826087,3.4782608695652173,4.337090713902308,166.5564618963995,150.15579014924538,2.0558980373125224,5.924882608695653,1.7077199426121414,7.458202000000003,210.33057986371642,39.48,6.191959999999999,4.48,3.228148148148148,150.62758459434804,155.28292574888,2.210289268799999,6.358500000000001,1.8009785093735713,7.687722440000003,252.53601284067042,28.214285714285715,6.13655,3.5714285714285716,2.182539682539683,169.34786082073555,106.8749202688571,1.7715351606927148,6.223271428571428,1.6805555555555554,7.748680142857146,178.48751627814357,30.285714285714285,5.742,3.4285714285714284,3.0476190476190474,157.00201279411965,112.28914945600003,2.0353061413854285,5.914142857142856,1.5097001763668434,7.448008285714288,211.33189910528077,16.5,6.2814999999999985,2.75,1.0,165.73915559175745,51.20467825000003,1.5473860750000006,6.388625000000001,1.8865740740740746,7.940689000000003,183.41197433039142,6.0,5.5,2.0,0.0,153.1225477129,12.107087999999997,1.1135443100000006,5.61,1.5,7.117632000000003,114.73661637051866,1.0,4.840000000000001,1.0,0.0,184.917652024249,1.016064,0.4446129048490001,4.840000000000001,1.0,6.718463999999998,31.083744430930263,,,,,,,,,,,,,,,,,,,,,,,18.313799621928172,0.08711077504725889,0.010244496441069223,0.7485822306238188,2.831431305281336,1.8336162469524901,82.4752929436412,0.5895333048016407,0.08320378071833645,0.1606139374300047,0.04228903969754251,55.669825527679954,7.0792438563327025,-0.01944747069943295,-0.0052736608376544,0.33663516068052923,0.02737706830964555,-1.1685132146494963,31.31874729806582,0.024399167748696902,-0.01028551984877147,-0.06215172991921966,-0.01250862404536854,-2.376234002198531,2.7079395085066165,-0.00852009181744536,0.0029637275064911617,-0.07156359708344587,-0.5870098652077225,0.5446800971518266,12.241210282848686,0.1343141261903779,-0.009473967053740309,-0.05246641409192849,0.006970587631650099,1.937322544340112,-2.9846070753443144,0.05047493923845528,0.0010169760307792413,-0.21442073994058872,1.436953021074004,-0.553697420415711,-12.893385806142927,-0.19527327746473364,0.054299324871725556,0.13918691619308907,0.01655099756953819,11.249195534313516,-13.509451795841215,-0.06552599243856337,-0.006025574198629184,-0.30293005671077505,-1.9935354383999628,0.7961338715509649,-60.2948713426567,-0.14690552688655376,-0.07200486767485842,-0.0789799573235787,-0.03842675708884669,-14.840500439128327,-5.531190926275993,-0.020375992438563265,0.000820637164635193,-0.226843100189036,-0.9484468715722655,-1.2026478233133624,-27.317328902134857,-0.2497965065407712,-0.028864650283553752,-0.06246189605243103,-0.0029894744801513,-55.87079886364172,11.207939508506614,0.0384500945179585,0.0020141091861545567,0.42533081285444224,1.5056594086209711,0.5837008497492086,52.111300675517334,0.29609103664788033,0.04707013232514209,0.05945168419448254,0.017218003780718135,47.07315549408653,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5484848484848485,0.9545454545454546,0.13636363636363635,0.0,0.8181818181818182,-0.6818181818181818,0.7514212283624606,0.008972583255043435,0.03242712870958889,0.3657976303975778,0.14839479066300457,0.3348338590249606,1.1172188587600385,0.4832286496879652,1.9365123102924506,1.0285271503427407,0.5493475070703283,0.0,0.0,0.9079851599497097,8.21951978321739,856.0,134.05190000000002,80.0,99.75308641975309,3830.7986236171882,3453.5831734326434,47.28565485818802,136.27230000000003,39.27755868007925,171.53864600000006,4837.603336865478,987.0,154.79899999999998,112.0,80.7037037037037,3765.6896148587007,3882.0731437219997,55.25723171999998,158.96250000000003,45.02446273433928,192.19306100000006,6313.40032101676,1185.0,257.7351,150.0,91.66666666666669,7112.610154470893,4488.746651291998,74.40447674909402,261.37739999999997,70.58333333333333,325.4445660000001,7496.475683682031,1272.0,241.164,144.0,128.0,6594.084537353026,4716.144277152001,85.48285793818799,248.39399999999998,63.40740740740742,312.8163480000001,8875.939762421793,792.0,301.51199999999994,132.0,48.0,7955.479468404358,2457.8245560000014,74.27453160000003,306.65400000000005,90.55555555555559,381.1530720000002,8803.774767858788,288.0,264.0,96.0,0.0,7349.8822902192005,581.1402239999999,53.45012688000003,269.28000000000003,72.0,341.64633600000013,5507.3575857848955,48.0,232.32000000000005,48.0,0.0,8876.047297163952,48.771072000000004,21.341419432752005,232.32000000000005,48.0,322.48627199999993,1492.0197326846526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,421.2173913043479,2.0035478260869546,0.23562341814459212,17.21739130434783,65.12292002147073,42.17317367990727,1896.9317377037476,13.559266010437735,1.9136869565217383,3.6941205608901084,0.9726479130434778,1280.405987136639,176.98109640831757,-0.4861867674858238,-0.13184152094136,8.41587901701323,0.6844267077411388,-29.21283036623741,782.9686824516455,0.6099791937174226,-0.25713799621928674,-1.5537932479804915,-0.3127156011342135,-59.40585005496327,113.7334593572779,-0.35784385633270516,0.1244765552726288,-3.005671077504726,-24.654414338724344,22.876564080376717,514.1308318796448,5.641193299995872,-0.397906616257093,-2.2035893918609966,0.29276468052930416,81.36754686228471,-125.3534971644612,2.1199474480151217,0.04271299329272813,-9.005671077504726,60.35202688510817,-23.255291657459864,-541.522203858003,-8.201477653518813,2.2805716446124733,5.845850480109741,0.695141897920604,472.46621244116767,-648.4536862003783,-3.1452476370510416,-0.2892275615342008,-14.540642722117202,-95.68970104319821,38.21442583444632,-2894.1538244475214,-7.051465290554581,-3.456233648393204,-3.791037951531777,-1.8444843402646414,-712.3440210781597,-265.4971644612477,-0.9780476370510367,0.039390583902489264,-10.888468809073728,-45.52544983546874,-57.7270955190414,-1311.231787302473,-11.990232313957017,-1.38550321361058,-2.9981710105166894,-0.1434947750472624,-2681.7983454548025,537.9810964083175,1.845604536862008,0.09667724093541873,20.41587901701323,72.27165161380661,28.01764078796201,2501.342432424832,14.212369759098257,2.25936635160682,2.8536808413351618,0.8264641814744705,2259.5114637161532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6795174086080149,0.7409697392282385,0.4088857805052013,0.5261949437397327,0.24708792792996878,0.36036051582981754,0.14604099323121342,0.299772140372717,0.09553418012614798,0.18081595520348526,0.05892556509887894,0.09486832980505139,0.041666666666666664,0.0670820393249937,,,16.042454115614586,5.899999999999998,3.140722781224669,1.9440443023653011,0.33692887175489405,-0.36322758977194725,4.043697029179967,0.9853101869523075,5.015904310356037,0.3898339477730104,14.550052003641001,10.201572157033027,32.09924777009675,11.910999999999989,3.697036386872271,1.061109221042654,3.122388717038202,2.0715607998547636,2.0651188671581173,0.2522972843932183,3.2910731060087426,2.3969406274067424,24.640731131220118,15.593050318323638,0.3770018469887702,0.3770018469887702,0.4325008174809518,0.5434987584653153,0.5434987584653153,0.5434987584653153,1.820792880013236,193.94279476994834,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,2.751487500658447,2.751487500658447,2.490617935441056,1.9688788050062733,1.9688788050062733,1.9688788050062733,236.854539868144,283.75025500275507,17.024177999703614,12.336967608815435,24.38597974064308,,4.0,86.0,6.489981155977373,0.0,0.0,0.0,0.0,39.26853843547545,0.0,0.0,14.011248569763898,11.806856088638648,6.033333333333333,10.5,1.5,0.0,9.0,0.04848484848484847,0.0,-7.5,0.09465267366316821,0.0,-0.09465267366316821,0.0,0.0411375464684014,0.0,0.5463768115942031,0.815151515151515,0.45172413793103494,0.5463768115942031,0.815151515151515,8.265633511987067,0.09869841580547778,0.3566984158054778,4.023773934373356,1.6323426972930504,3.6831724492745668,12.289407446360423,5.315515146567617,0.6728624535315986,0.13812154696132597,0.16574585635359115,0.1988950276243094,1.0,0.1687712880401062,-0.13394024327527995,-0.016523282910511652,-0.005823488838055649,-0.03348506081881999,0.8312287119598938,0.6596796006607979,0.031091565883663387,0.02868172176786077,0.03471997898214726,0.23451368689564012,0.5212510322047893,1.3690733828686505,1.7573390132082791,0.7666666666666664,1.0896241469124,1.8682701143427898,0.5431166593128052,1.0955843931793432,1.2025415087652336,1.6699154705848978,1.3875661499925216,1.0599000872003461,0.9084213165034798,1.6359800564960545,1.407226654668946,1.4603174603174598,1.676452545015237,0.8195525176946961,0.9134178705372431,0.9097377911889792,1.5532918148311148,1.7694324453557446,1.3792306216096504,0.8652308650457121,1.8429574141795442,0.5432220855426649,1.1162198918802786,1.916666666666666,0.49213675777257604,1.550521043155035,1.827316782150078,2.285867578669219,0.3952206335790953,0.633370883952378,0.7396094329525533,0.9515991844793937,1.9390225020644092,2.1568489375368913,2.114521534108876,1.2777777777777775,2.1301597375622303,0.798030524975616,1.8877750687195567,1.0875966887626667,2.235423084962331,1.5542066148522151,2.425945420081854,1.195000480400068,0.6528695293146158,0.49412346793514106,0.03301533494790788,0.6388888888888887,0.6756453793148925,1.4259310913940013,0.7020421834536156,0.8164650744971709,0.7041381535301751,0.7444261644068757,0.2682121623884453,1.934075264181953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,3.0,0.0,1.1666666666666674,0.8333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,2414.6587145065187,2717.2293500619653,1562.5565811961922,1443.7201861130095,6.804797756678306,0.45795676856939854,3.688494565261617,0.8448712981079468,1.0,1.0,1.7720744553985661,1.7720744553985661,2.032944020615957,2.5546831510507397,2.5546831510507397,2.5546831510507397,0.23076923076923073,0.0,0.09722222222222228,0.0462962962962963,0.0,0.0,0.0,0.0,0.0,0.0,0.3742877492877494,6.508875739644971,1.836734693877551,1.1111111111111112,72.11451460594036,1.0,3.5449564320646734,26.017030060555484,,14.571677145250572,23.28872403473286,20.766450759947876,14.439543798163315,26.230400901419113,23.32046740597531,22.93768857892484,29.787862784293495,0.3865524360033029,-0.22324988715669683,-0.5147798984548221,0.44969696969696943,0.00966898552635919,-0.6372725026796586,0.3797349021781253,0.04138725929471695,-0.12361841925897903,-0.38696349092559473,-0.2957887938537284,-0.0426844161927008,0.14786333608587943,-0.09780755380517603,0.28929948129122846,-0.09559884559884559,-0.2073191265890154,0.29705239471841327,0.14842275602723368,0.22783127788780377,-0.11386462215956056,-0.3266616517311473,0.1648320151392601,0.03480022662145481,-0.16297039046832595,0.5794339358256412,0.09927047528683597,-0.2864357864357864,0.5075005769674592,-0.30197017578567387,-0.15633028202704918,-0.33123366546769895,0.6526064609436562,0.8665930144060286,0.3913779477593575,0.20206989024458558,-0.7376651527663091,-0.7522145498420206,-0.5881767086641002,-0.40467171717171707,-0.7040733902607895,0.4341878366720172,-0.731065864583939,-0.2491895295652259,-0.8654037959958951,-0.49173788145252356,-0.9086694179787614,-0.2665806888823351,-0.3020231213872832,-0.2339089788549004,0.0801051734807907,-0.30303030303030304,-0.3349708219313574,-0.6558885073756241,-0.3312183312983432,-0.4237190749126885,-0.34691512854766904,-0.38889461930818936,-0.07069147234206465,-1.0036100945899649,0.6119942196531789,0.4413930939897935,0.19660402028938997,0.5681818181818179,0.5317661798160298,0.3183331576164489,0.6318413529143467,0.5022464960609911,0.5657210756381984,0.37015270994393923,0.4071505029166861,0.8455775646482129,,,,,,,,,,,,,,,,,,,,,,,,,4.948154665398354,,,24.335354971497157,24.335354971497157,27.46865931932324,27.994572362801502,27.994572362801502,27.994572362801502,21.301635413216957,11.313798653770148,6.042822577773611,0.0,0.0,9.987836759446807,727.0637818490011,565.8479133438933,497.0608998265243,0.0,21.0,24.0,30.0,24.0,12.0,0.0,0.0,0.0,189.04895501399997,13.0,4.23410650459726,5.176149732573829,6.129050210060545,7.0825485693553,8.038834757787749,8.994048295611075,9.950705052145238,10.906304543749371,11.862899004573702,0.7246376811594205,0.9584347826086954,1.1397955495046275,0.684940116487423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.725111064826868,0.9478260869565219,0.9917033471610879,0.6043029141850815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,6.489981155977373,0.0,0.0,0.0,0.0,14.011248569763898,0.0,0.0,0.0,11.806856088638648,39.26853843547545,0.0,60.34236213274523,-47.888896018523575,-5.907722412896193,-2.082125913848851,-11.972224004630894,297.1969020008892,235.86135898423152,11.11645558680742,10.254841694966585,12.413755736012185,0.5,0.9570400513974214,0.3138993439625076,17.37852140777904,0.18316098676609105,0.0,0.042959948602578464,2.0,0.23076923076923078,0.39174316006123727,0.39174316006123727,0.4494122199197164,0.564750339636675,0.564750339636675,0.564750339636675,0.15770000000000017,,1.6535714285714285,0.31882086038485535,0.5150776051573761,1.6650794131362232,-0.5904626199297043,0.33079697691185617,0.40029617693524056,-0.6428161343873504,49.00400000000002,0.0,0.0,14.011248569763898,0.0,0.0,39.26853843547545,0.0,0.0,0.0,3.295836866004329,2.9444389791664403,4.709530201312334,4.795790545596741,6.361302477572996,6.6293632534374485,8.10258642539079,8.503702601233739,9.89176915958193,16.66666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043999999999993,0.0,0.0,5.75,0.0,0.0,0.0,0.0,0.0,26.21529763860643,0.0,0.0,0.0,53.27978700523934,11.806856088638648,0.0,0.0,0.0,0.0,0.0,0.0,15.753622679210729,16.677554491017965,15.203358263766305,52.03406012107066,,29.623230061237756,46.519480639607636,41.43925103704931,29.373633553386703,53.41295131663188,46.580789906384176,45.802596033772815,59.692601229383776,15.203358263766305,52.03406012107067,,28.768872363659085,46.258627208383665,41.01782390555691,28.5362811870324,53.78870025658715,46.31013783436538,45.475080979916704,60.218541702973425,4.863481377143124,34.2919472781707,,18.63853212288081,30.852563253181316,27.28330168464714,18.453012756663043,34.69296694502566,30.900994608715468,30.369357314251893,39.82872201957178,1.3821234785242096,4.730369101915515,,2.693020914657978,4.229043694509785,3.7672046397317556,2.670330323035155,4.855722846966535,4.234617264216744,4.163872366706619,5.426600111762162,2.601679131883153,26.01703006053533,,14.57167403252401,23.28872403438426,20.76645075535714,14.439540223054232,26.230400901400206,23.32046740563862,22.937688578425973,29.78786278429304,21.800000000000004,0.0,0.0,0.0,0.0,0.0,0.0,22.809176984705022,7.525462962962963,0.0,0.0,0.0,0.0,7.465277777777779,0.0,0.0,0.0,13.898967026256875,342.17939572304977,40.75771247416702,40.75771247416702,46.757712474167015,58.757712474167015,58.757712474167015,58.757712474167015,135.0,96.37464667045407,15.359868410584662,66.23432050929675,50.93000000000001,9.03,1.0,5.0238805208462765,4.700439718141093,3.1599449799818182,3.272411776721854,,3.231208747440236,3.273731321509265,3.2710227715403244,3.2301928208390778,3.236231862969948,3.272208070219429,3.269784782561927,3.258886314424363,0.2872677254528926,0.2974919797019867,,0.2937462497672942,0.2976119383190241,0.29736570650366584,0.29365389280355253,0.29420289663363164,0.297473460929039,0.29725316205108426,0.29626239222039663,1.2458647958534068,1.2808374392579243,,1.2681664722477946,1.2812405910941989,1.2804128899811957,1.2678520121113075,1.2697198275369503,1.2807751876658517,1.280034346817239,1.2766956954748574,129.57,44.10486528536134,47.174079258082955,,48.403692103534354,46.80754268826319,46.99363558731467,48.451981701005764,48.09052433227836,46.83543298228144,46.895782383914245,47.12594599647501,4.009533207760122,4.288552659825723,,4.400335645775851,4.255231153478472,4.27214868975588,4.404725609182342,4.371865848388942,4.257766634752858,4.263252943992204,4.284176908770456,3.881880280102984,3.949154753286761,,3.974886273748376,3.9413545382943025,3.9453223593093525,3.97588341928618,3.9683953381801915,3.9419502112669567,3.9432379233644967,3.948133899566772,7.465277777777779,0.0,0.0,0.0,0.0,0.0,0.0,6.256944444444445,0.0,146.58955366331904,21.574763753027018,-17.122160642635055,-2.112242724212684,-0.7444417670710893,-4.280540160658764,106.25956164419381,84.32969672878113,3.974569350281355,3.6665085534252655,4.43840509098848,139.0,18.0,1.029237746757157,2.005900603509299,0.09622504486493763,0.14696938456699069,0.6443375672974063,1.1659006035092991,0.14433756729740643,0.220454076850486,0.8660254037844386,0.6708203932499369,0.4330127018922193,0.8999999999999999,0.9330127018922195,1.9072548561523543,1.3514443484839533,2.3043205611699156,2.0096926389478185,3.331321671789357,7.474691494688164,8.150667131510623,5.315515146567617,6.840534268616526,5.188846486529345,7.567570832426169,3.5049838375491222,7.194531368945208,2.8660254037844393,5.424478656104558,1.4142135623730945,2.2768399153212333,0.5,0.8049844718999243,0.0,0.0,2.7554745547291786,5.20491974787601,3.9813804754348543,6.785560662422604,5.109256145711587,8.378538967214315,38.22860827151455,38.22860827151455,33.82127169863314,34.01348209932089,34.01348209932089,34.01348209932089,68.0,88.0,27.851515999999982,23.778484,0.43478260869565216,59.05,2.8958333333333335,2.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,23.0,0.0,0.0,25.0,0.0,1.0,1.0,24.0,1.0,13.0,24.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,1.0,0.0,3.0,11.0,5.0,0.0,3.0,0.0,1.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,2.70805020110221,0.0,3.2188758248682006,3.4339872044851463,3.6109179126442243,3.2188758248682006,2.5649493574615367,0.0,0.0,0.0 +2153,Cn1c(=O)c2[nH]cnc2n(C)c1=O,0,27.80952380952381,6.889028571428572,3.7142857142857144,11.333333333333334,170.6078348413806,110.22369319047617,1.3907433923234283,6.89862380952381,7.255291005291006,8.287680952380956,219.9679292622951,28.954545454545453,6.909272727272728,4.363636363636363,10.590909090909092,157.56170889575458,111.55025736363632,1.597943748636363,7.001227272727274,3.9494949494949494,8.22537781818182,252.3963231120503,26.243243243243242,6.971802702702703,4.081081081081081,9.837837837837839,171.2746677065323,100.96963775675677,1.423340120245784,6.997732432432431,3.9639639639639643,8.328284216216217,222.95824163518483,26.85,6.92097,3.625,8.1,158.56932762667375,102.33619105000001,1.4380993541212252,6.991470000000001,4.856944444444443,8.2879654,226.2794807807358,20.68888888888889,7.331286666666666,2.533333333333333,5.688888888888889,175.13679018122002,73.74460284444446,1.120336480666667,7.304855555555554,6.255555555555555,8.784455644444442,173.8233445798545,12.333333333333334,6.277212121212123,1.9393939393939394,1.696969696969697,164.4299570743409,38.72819130303031,1.0947497056363635,6.328487878787879,3.5404040404040393,7.81289781818182,138.3319212822709,3.433333333333333,5.596066666666667,1.2,0.0,181.9950900662577,6.323654400000001,0.5777155452427334,5.582133333333335,2.3333333333333335,7.3865088000000005,56.31401810226749,1.0,4.840000000000001,1.0,0.0,184.91765202424895,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,,,,,,,,,,,,7.773242630385488,0.18339501133786837,0.03535045116971281,0.7755102040816326,5.2018140589569155,1.6299415469662033,36.61791566439909,0.18823856832720182,0.1658344671201814,2.831947593852356,0.11298307482993189,41.58837269894055,0.36312100597814845,-0.023644794887652063,-0.026441819774370153,0.4452690166975883,2.2029478458049883,-1.325923294551295,1.7163910282415884,-0.06305841408242246,-0.014683168418882758,-0.183258320163082,-0.018682122448979568,-5.679521138372523,2.2434883863455286,0.03414514310228591,0.0074033490734917795,0.023717595146166642,1.3129864558435986,0.8145666928022047,10.729644106514671,0.09191367318741082,0.03158149169577737,0.10724159533683345,0.020100796469939355,18.80644131371207,0.4458049886621315,0.01347689342403623,0.0010891129565755023,-0.3362244897959183,-0.9351473922902496,-0.6630835817905358,1.851100651077091,-0.09031252480998624,0.015483509070294743,-0.01749653565129759,0.0018630632653061404,-10.906892435805378,-4.03673469387755,-0.07713543461829184,-0.0036753570511688007,-0.2802721088435374,-3.091761148904006,0.3407020092106974,-18.82555582524566,0.020469981510546298,-0.07613002267573699,-0.5146636432350717,-0.038006008163265145,-7.709963367050339,-4.6606885178313755,-0.022056771799628845,0.0025158443048385855,-0.16079158936301804,-1.2508761080189652,-0.4508889734100564,-22.48138353164295,-0.14608280862740386,-0.028117151102865303,-0.05593348450491306,-0.005236477427334642,-35.326749825795574,3.6251700680272116,0.017862448979592,-0.0013023354983633993,0.36734693877551006,1.5918367346938778,0.23035300853556726,17.458955500680297,0.09892960028972822,0.02267061224489805,-0.25390526581002776,0.002513687074829759,25.327558357142713,12.08390022675737,0.1517287981859413,0.004830044655255929,0.510204081632653,6.131519274376418,0.35915244230222415,57.32580952607714,0.18472357829360755,0.15583696145124726,1.2169942050894433,0.07136530612244861,60.53775519480853,,,,,,,,,,,,,,,0.44358974358974357,1.3846153846153846,0.6153846153846154,0.07692307692307693,0.7692307692307693,-0.15384615384615385,0.5406019789507283,0.02217814651437429,0.035408915745143515,0.8734613222115766,0.2818569915827023,0.18936590516239227,1.4140633011623047,0.47122289674509454,1.994502745599352,1.0884792544152588,0.6352159281140859,0.2708075630700073,0.0,0.9060234911840934,8.574510737904761,584.0,144.6696,78.0,238.0,3582.7645316689923,2314.6975569999995,29.20561123879199,144.8711,152.36111111111111,174.04130000000006,4619.326514508197,637.0,152.00400000000002,96.0,233.0,3466.357595706601,2454.105661999999,35.15476246999999,154.02700000000002,86.88888888888889,180.958312,5552.719108465107,971.0,257.9567,151.0,364.0,6337.162705141695,3735.8765970000004,52.66358444909401,258.9161,146.66666666666669,308.146516,8249.454940501839,1074.0,276.8388,145.0,324.0,6342.77310506695,4093.4476420000005,57.52397416484901,279.65880000000004,194.27777777777774,331.51861599999995,9051.179231229433,931.0,329.9079,114.0,256.0,7881.155558154901,3318.5071280000006,50.41514163000001,328.71849999999995,281.49999999999994,395.30050399999993,7822.050506093453,407.0,207.14800000000005,64.0,56.0,5426.1885834532495,1278.0303130000002,36.12674028599999,208.8401,116.8333333333333,257.82562800000005,4564.95340231494,103.0,167.882,36.0,0.0,5459.852701987731,189.70963200000003,17.331466357282,167.46400000000006,70.0,221.59526400000001,1689.4205430680247,3.0,14.520000000000003,3.0,0.0,554.7529560727469,3.0481920000000002,1.3338387145469999,14.520000000000003,3.0,20.155392,93.25123329279079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,163.23809523809524,3.851295238095236,0.742359474563969,16.285714285714285,109.23809523809523,34.22877248629027,768.9762289523809,3.953009934871238,3.4825238095238094,59.470899470899475,2.3726445714285695,873.3558266777517,7.988662131519266,-0.5201854875283454,-0.5817200350361433,9.795918367346943,48.464852607709744,-29.17031248012849,37.760602621314945,-1.3872851098132943,-0.3230297052154207,-4.031683043587804,-0.4110066938775505,-124.94946504419549,83.00907029478456,1.2633702947845786,0.27392391571919583,0.8775510204081658,48.58049886621315,30.138967633681574,396.99683194104284,3.4008059079342003,1.1685151927437627,3.967939027462837,0.7437294693877562,695.8383286073466,17.83219954648526,0.5390757369614492,0.043564518263020095,-13.448979591836732,-37.405895691609985,-26.523343271621435,74.04402604308365,-3.6125009923994496,0.6193403628117897,-0.6998614260519036,0.07452253061224562,-436.27569743221517,-181.65306122448976,-3.471094557823133,-0.16539106730259603,-12.612244897959183,-139.12925170068027,15.331590414481383,-847.1500121360548,0.9211491679745833,-3.4258510204081642,-23.15986394557823,-1.7102703673469315,-346.9483515172652,-153.8027210884354,-0.7278734693877519,0.08302286205967332,-5.306122448979595,-41.27891156462585,-14.87933612253186,-741.8856565442173,-4.8207326847043275,-0.927865986394555,-1.845804988662131,-0.17280375510204318,-1165.782744251254,108.75510204081635,0.53587346938776,-0.03907006495090198,11.020408163265301,47.75510204081633,6.910590256067017,523.7686650204089,2.9678880086918467,0.6801183673469415,-7.617157974300833,0.07541061224489276,759.8267507142814,36.25170068027211,0.45518639455782384,0.014490133965767787,1.5306122448979589,18.394557823129254,1.0774573269066725,171.9774285782314,0.5541707348808227,0.4675108843537418,3.65098261526833,0.21409591836734582,181.6132655844256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7373401506690307,0.556575972047479,0.4375641184061591,0.2655416781825463,0.27119428125766093,0.1336620949422848,0.1821194861015237,0.0676465381840506,0.10974274071526892,0.034295223933224324,0.06761077503608558,0.016567974026843974,0.04473213189512926,0.008696676388785317,0.029336513626315782,0.0042262234371564875,8.02384525812936,5.758498762228532,3.5505061170330263,2.239518874974406,0.5095138479841058,-0.4331490084602718,3.31799632080631,0.9772510412195714,6.023832910904767,0.9960264515210527,14.564801778816108,11.036065409091641,16.01125687634447,11.783543707472502,1.9409686051027408,0.743655235934314,3.497516236137847,2.2838388720621667,7.0093694785507195,1.4095563053032387,3.709241189491747,2.4770846614672255,20.80014680698999,14.701775846068317,0.3909176459853888,0.7165377336026539,0.7570607914223421,0.7773223203321863,0.8381069070617186,0.8381069070617186,2.1852638813143517,574.1705593822571,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.5548325930668208,1.0242750002060452,0.8337988097298554,0.7385607144917596,0.4528464287774736,0.4528464287774736,139.82252450866932,538.8303840668452,46.391716658490765,25.658589717468818,51.59273109697753,,5.0,122.0,0.0,9.589074368143644,11.24901029325548,11.16387793838399,4.567099647791355,17.942091705233086,7.04767198267719,0.0,9.967957041894417,0.0,5.766666666666667,18.0,8.0,1.0,10.0,0.0,0.05641025641025642,-2.0,0.2562848562848561,0.03450655624568655,-0.22177830003916954,0.045787545787545736,0.2426103542234332,0.0,0.696825396825397,0.941025641025641,0.4405405405405409,0.6623188405797105,0.8952380952380953,7.027825726359468,0.28831590468686574,0.46031590468686573,11.354997188750495,3.66414089057513,2.4617567671110994,18.382822915109962,6.125897657686229,0.4713896457765668,0.2890173410404624,0.0,0.48554913294797686,0.2857142857142857,0.2908281707175803,-0.4688615293615987,-0.07469959020554207,-0.02232673949340946,-0.07814358822693313,0.7091718292824194,1.1432984213224924,0.06410265601490218,0.05444278196773772,0.07621989475483282,-0.9520325196985004,0.6376630953643789,0.7831957809887314,1.8215446323748277,0.5582137161084529,0.33704525640009514,2.090738101440715,0.6431718569047423,1.378522200494764,0.7241743871377553,0.5373564380459397,0.8016340711864552,1.0374600619552885,0.5794884733041092,0.6606692749140806,0.9345881982644686,1.1450924608819346,0.6556469285327177,0.6285427855774517,0.5769877305487746,0.421063409289572,0.6489856873131181,0.5564585938251418,0.6161955273784198,0.4378410628865667,0.724401983663944,0.7777253663578859,1.2202185837388904,1.611842105263158,1.0367262423714037,1.561845605787374,0.7325321837547758,1.5337950866560985,0.738767382713686,0.9489935498220639,0.8777484099719474,1.1859188329145183,1.5138078568650333,1.7579713442107296,1.1132028834732053,1.2690058479532165,1.694565533275211,0.6835325466354734,1.4975464878254392,0.7056596920903503,1.7691703243861634,1.8574288256227756,1.7682888281757108,0.9634502906126216,1.5055160708602948,0.8889649987882865,0.7273847559253228,0.9117490696438065,1.051359277165729,1.222980502359901,1.5245096840976389,1.7923432147172556,0.9494246472491582,0.6996319961177611,0.7918825180142752,1.8680126964286001,0.9250291715285881,0.9590453180871744,0.4101502904271183,0.12280701754385966,0.8635571054925895,0.23855110979901872,0.9167324746744379,0.3946449916473961,0.9853773262412314,1.0985765124555158,0.9583253053213522,0.6179774644629406,0.0,0.0,0.04505866258979976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,2.5,0.0,2.4444444444444455,1.3055555555555556,1.1916666666666669,0.16000000000000003,0.0,0.0,0.0,0.0,2531.350677922011,2723.1497982887663,1376.369435245011,1294.9618879788713,7.514485670335745,0.4019184099463267,4.494275538149945,0.6720126762474959,0.0,0.2857142857142857,1.83748482971194,3.3680424225727155,3.5585186130489053,3.653756708287001,3.939470994001287,3.939470994001287,0.17857142857142855,0.0,0.11640211640211644,0.05934343434343435,0.07447916666666668,0.03200000000000001,0.0,0.0,0.0,0.0,0.46079614598364604,9.551020408163266,3.292517006802721,1.3333333333333333,72.45404341715741,1.0,3.5146506699342055,33.269584104738925,,19.97895513001091,19.154527879554454,18.649654493205038,19.986592999042216,33.33799880217372,19.637348618965017,20.02779466675732,28.869633532120215,0.04671422509812236,-0.1289282337352748,-0.7479910128282804,0.5741626794258375,0.4234960767218831,-0.813479045932184,0.04687298545259116,-0.3349919978822431,-0.08854111376160279,-0.06471105629246196,-0.16535328390646908,-0.1365651207246492,0.2886167964931091,0.18618359819711977,0.20942728673954644,0.0305832147937412,0.2524093404651382,0.49975208885149963,0.2930162438750253,0.48828289549909765,0.19043985393512944,0.03786849571991921,0.17790980197871353,0.45220430839774495,0.05735122520420069,0.07348560533747435,0.030809025642892535,-0.4335526315789473,-0.1797733217088056,-0.40681433209965584,0.05055177547630818,-0.4797769426985991,0.09336725554811073,-0.006178269572953748,0.01648975537363027,-0.26225821613076067,-0.5193115519253207,-0.4205972346553382,-0.10396916954535887,-0.3614035087719299,-0.5943621040395234,0.20902713342379867,-0.5141077935123535,0.10874488524033382,-0.45907237498803566,-0.18173487544483982,-0.3363867395224798,-0.18538747411116538,-0.5995809907711892,-0.12026920273743807,0.07116866183009524,-0.20733652312599699,-0.24046920821114373,-0.2766289222145986,-0.6139449262400248,-0.7760514220097469,-0.16954950072284194,-0.019750889679715295,-0.046347450139915786,-0.8494381369890798,0.4663652275379231,0.09739877245997731,-0.03684070373277727,0.4736842105263156,0.30601569311246735,0.14132593218715198,0.476787255197443,0.5255543599214263,0.1367062748690747,-0.08965747330960855,0.022248350725216973,0.6090057560195887,1.5545507584597433,0.8273332904699983,0.13663318275819247,0.6578947368421052,1.1787271142109856,0.2203468234616828,1.56551263188939,0.9813269402501809,0.9397139458247309,0.4297375444839858,0.631645989719004,1.4556413551701843,,,,,,,,,,,,,,1.519671371303185,3.5327755290014426,18.431936825140177,32.937276185972344,35.79499047168663,36.938895233591396,37.22689523359139,37.22689523359139,25.928535692791577,14.150230307398365,8.257807065483117,3.520498319910095,0.0,11.778305385393214,966.2366462328969,570.7657001362625,402.07949253628834,3.0,21.0,30.0,37.0,40.0,39.0,30.0,24.0,12.0,180.064725496,14.0,4.2626798770413155,5.153291594497779,6.056784013228625,6.961296045910167,7.8674885686991285,8.773848885262895,9.680531483645991,10.587215511179581,11.493977072711385,0.7460317460317459,1.0358095238095235,1.1544230361789396,0.7142936435251814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6566394069004846,1.0175536881419236,1.041202788471543,0.6489887470559159,1.0,1.0,1.0,0.0,0.0,2.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,5.516700717616262,5.647177220767728,0.0,5.559266895052008,13.928736479654532,9.77851570501903,0.0,0.0,0.0,0.0,14.09534396535438,6.3273200747645415,97.20316824562974,-156.70705492521185,-24.96675895155977,-7.462240710724373,-26.11784248753531,237.02569275429906,382.1233291416334,21.424957706930996,18.196349006744445,25.474888609442225,0.2,0.6577165621847642,0.21010404120465204,37.876652094401216,0.20575082966028707,43.85955028700901,0.3422834378152357,4.0,0.0,0.41834062815739564,0.7668030559690181,0.8101688176255805,0.8318516984538618,0.8969003409387056,0.8969003409387056,-1.0397000000000005,,1.0714285714285716,1.314099581200558,1.247266713587194,1.0685318721261376,-4.237315801405576,1.1621787025703796,1.0580415728862167,-2.0752874690897665,46.57570000000001,0.0,0.0,19.102156337477126,14.09534396535438,0.0,0.0,27.165404736163666,0.0,0.0,3.367295829986474,0.0,4.727387818712341,2.3978952727983707,6.300785794663244,4.59511985013459,7.976938756959434,6.6293632534374485,9.708019964072157,15.666666666666664,1.3943518518518516,3.8750925925925923,2.692546296296296,0.0,0.0,0.733981481481482,0.0,2.368796296296296,21.751999999999995,0.0,22.814120370370368,0.0,0.0,0.0,0.0,0.0,0.0,24.24288375975773,11.24901029325548,0.0,0.0,19.102156337477126,14.09534396535438,0.0,0.0,15.916394442908185,0.0,11.16387793838399,0.0,15.00016651402881,13.789427544910177,16.64237804774791,66.53916820947782,,39.7930750647327,38.106886520978165,37.10742168101419,39.808796449084916,67.69231428109735,39.09590047107427,39.892813677965755,58.1806228835933,16.64237804774791,66.53916820947784,,38.89620604529752,37.03339353403449,36.13906234914006,38.914216781898475,70.91331340575299,38.13192260598464,39.006120530695085,59.814554533327296,4.890560137752896,44.984180412337324,,26.875089492019022,25.77355362795979,25.046933620602953,26.885145840394912,44.64230351037332,26.415806318166496,26.940693082971,38.70348404540942,1.2801829267498392,5.118397554575217,,3.0610057742102077,2.9312989631521664,2.8544170523857066,3.0622151114680705,5.20710109854595,3.0073769593134054,3.068677975228135,4.475432529507177,2.4763465753798,33.269584104738904,,19.97895511478393,19.154527843658357,18.64965443385995,19.986592983936777,33.33799880217371,19.637348597273323,20.02779465228182,28.869633532118772,21.368627450980394,0.0,3.0098148148148147,0.0,0.0,0.0,0.0,21.8652585579024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.628763688174235,219.8278574398026,38.58718142395074,70.72889087402703,74.72889087402702,76.72889087402702,82.72889087402703,82.72889087402703,263.0,97.83711305217687,114.4010035601262,58.70280654076406,72.68,72.68,0.25,7.959417896234464,4.807354922057604,3.363659168714361,3.5643483698512726,,3.5583610288770493,3.5596550643014853,3.5604622625784024,3.558350018454056,3.540208524604527,3.558901901639064,3.5582847001385676,3.5453125369870597,0.25874301297802776,0.2741806438347133,,0.2737200791443884,0.2738196203308835,0.27388171250603094,0.27371923218877353,0.2723237326618867,0.27376168474146645,0.2737142077029667,0.2727163489990046,1.4753936841784148,1.5333455161709897,,1.531664318174754,1.5320279125869476,1.5322546499406504,1.5316612239299772,1.5265498951338439,1.531816307153758,1.5316428674123046,1.5279905833262808,122.23000000000002,51.329341182242516,55.07387239878301,,55.21285362366896,55.13563545448917,55.19384402447711,55.21384042046948,56.62338885275565,55.18577327982445,55.216873430095404,56.138051107316734,3.948410860172501,4.2364517229833085,,4.247142586436074,4.241202727268398,4.245680309575162,4.247218493882268,4.35564529636582,4.24505948306342,4.247451802315031,4.318311623639749,4.200626806011737,4.271039683024979,,4.273560046145156,4.272160513040013,4.273215690235874,4.273577918577344,4.298786394934429,4.273069454094381,4.273632849121953,4.290178119930764,2.368796296296296,29.381759259259262,0.0,0.011944444444445201,0.0,0.0,1.3943518518518516,0.0,3.0098148148148147,134.13709812215242,32.48810420832128,-52.376020478306856,-8.344611407239599,-2.494096213252707,-8.729336746384476,79.22082731698848,127.71664506050907,7.160839211359195,6.081745002881383,8.514443004033938,211.0,22.0,1.0419658858954097,0.42257517325512906,0.0,0.0,0.546023729152566,0.11255748889045919,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.032274861218395144,0.17311980052499137,0.043071187338938215,0.4544603219217528,0.0897188474883818,9.585421958697399,7.2354876366172265,6.125897657686227,3.7175834945556483,5.6950799064108795,2.8069039937879805,5.463584583045711,2.029396145521518,4.06048140646495,1.2689232855293,2.704431001443423,0.6627189610737589,1.744553143910041,0.3391703791626274,0.8800954087894735,0.12678670311469462,3.2870903412070627,0.9346373641314164,5.071883638011066,1.165343496339026,7.654467376768004,1.356267493697704,44.36099995952391,26.288859150252975,22.8712628319976,21.50422430469546,20.812205800074654,20.812205800074654,70.0,86.0,23.028343999999983,14.891655999999998,0.42857142857142855,40.06,5.416666666666666,2.833333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,21.0,0.0,0.0,22.0,10.0,2.0,4.0,18.0,12.0,14.0,10.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,5.0,1.0,2.0,13.0,6.0,0.0,4.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,2.0,3.091042453358316,5.04196235405471,3.876395827784995,4.616357375378656,5.2440591548180215,5.713939054865571,6.104269937037696,6.230250736911705,6.418766313366987,6.154567778524388 +1983,CC(=O)Nc1ccc(O)cc1,0,23.7,6.374245,2.95,8.1,163.03781756766207,93.56947974999999,1.4404562071820497,6.42444,6.429166666666665,7.884768600000003,217.19923205117033,24.45,6.4777000000000005,3.35,7.3,148.81235215063754,92.28243215,1.7469015227999996,6.604575000000001,3.858333333333333,7.898313399999999,259.21170993903905,21.451612903225808,6.299677419354839,3.193548387096774,5.483870967741935,152.74065100397894,80.24840200000003,1.5115154533724837,6.406680645161291,3.9444444444444438,7.763566193548389,218.22128249324817,16.405405405405407,6.493243243243244,2.5405405405405403,3.7837837837837838,162.3743921829621,56.900928405405416,1.261261925829676,6.548459459459459,3.935435435435436,8.029015891891893,177.62072537627228,13.147058823529411,5.967441176470589,2.2058823529411766,3.0,163.27554525076002,45.55339247058823,1.1183733160482647,6.031764705882353,3.151960784313726,7.574407764705883,148.01634759129809,13.615384615384615,6.055192307692308,2.0384615384615383,3.0,161.62849475759975,47.10975992307692,1.1164355815805385,6.115580769230771,3.7094017094017095,7.6548036923076905,147.4167987163106,10.333333333333334,6.030666666666667,1.619047619047619,2.2857142857142856,167.674346060164,33.04977233333333,0.9229232460520953,6.064690476190476,3.3095238095238093,7.692975047619047,117.4465890584632,11.0,5.913846153846155,1.6153846153846154,2.6923076923076925,172.74679763375713,38.744060769230764,0.7345393518417692,5.917353846153846,5.205128205128204,7.606567384615385,91.97330427221267,7.6,7.260000000000001,1.0,0.0,178.7719308995,15.323011200000002,0.6505232507999998,7.176400000000001,5.4,9.0004608,88.55822777447717,7.7,0.1567027499999999,0.03211018198061666,0.5475000000000001,4.1,1.4446697682706264,36.44233668749999,0.22328053011012755,0.14440399999999998,2.5285416666666674,0.10122658999999998,48.41663506034471,-0.35,-0.02285450000000004,-0.020832053301142565,0.09499999999999996,0.9,0.012005088981374834,-1.5154503500000076,0.015229571040000112,-0.02003600000000009,-0.38791666666666663,-0.014400979999999985,2.133719948885232,0.8064516129032258,0.027197733870967713,0.0077337643137249,-0.10395161290322584,-0.3225806451612903,-0.3593042661722547,3.62914172379032,-0.03741793256981935,0.02575793548387093,0.28485439068100366,0.01402496483870967,-3.7696522743407237,-3.1621621621621623,-0.06604329054054058,-0.005037559456184861,-0.042094594594594595,-1.6216216216216217,0.0309718492194793,-14.787796113175677,-0.01695656810373695,-0.06318129729729736,-0.7667548798798799,-0.03709020621621619,-10.015313473510227,0.20588235294117646,-0.0045646617647058406,-0.0021194105776598375,-0.08720588235294116,0.0,-0.08768606827617302,0.9618293345588249,-0.013666275361334869,-0.002241058823529355,-0.005134803921568624,-0.004716631176470603,-0.33822143618546174,-0.07692307692307693,0.019100134615384637,0.01114629920467501,-0.030192307692307685,0.0,-0.14532955154056962,-0.5407911490384597,-0.036125812802665976,0.01597676923076928,-0.024107905982906002,0.010627917692307677,-6.4416124311410545,-0.9047619047619048,-0.02574798809523806,-0.01661993625939996,-0.03797619047619045,0.09523809523809523,-0.09894790098656307,-4.238584104166664,-0.02191843174594423,-0.022980190476190425,-0.5487797619047621,-0.017259018571428576,-4.4807447245493135,4.846153846153846,0.1242268653846154,0.020840485319727712,-0.03596153846153843,1.6153846153846154,-0.010808343879454431,22.500364062500005,0.0203133608616224,0.1165421538461539,2.1679326923076925,0.0782797638461538,13.531722508126755,-10.8,-0.2367077500000001,-0.02530348381295986,0.30250000000000005,-4.8,0.38525281311437237,-50.06454328750001,0.05571760022987234,-0.23133600000000012,-3.3393750000000004,-0.13506674999999985,-21.451447214778813,,,0.4606060606060606,1.3636363636363635,0.7727272727272727,0.09090909090909091,0.5909090909090909,0.18181818181818182,0.45993327189529915,0.021152092001912672,0.028970273820094487,0.7665175280881716,0.2915988528246571,0.17945028811643884,1.2264507999834708,0.47104914094109596,1.9447815369026509,1.45178517377394,0.17894967546342366,0.3140466876652871,0.0,0.4929963631287107,7.5531664264,474.0,127.48490000000001,59.0,162.0,3260.7563513532414,1871.3895949999996,28.809124143640993,128.4888,128.58333333333331,157.69537200000005,4343.984641023407,489.0,129.554,67.0,146.0,2976.2470430127505,1845.648643,34.93803045599999,132.09150000000002,77.16666666666666,157.96626799999999,5184.234198780781,665.0,195.29,99.0,170.0,4734.960181123347,2487.7004620000007,46.856979054547,198.60710000000003,122.27777777777776,240.67055200000004,6764.859757290693,607.0,240.25000000000003,94.0,140.0,6007.852510769598,2105.3343510000004,46.66669125569801,242.29299999999998,145.61111111111114,297.07358800000003,6571.966838922074,447.0,202.89300000000003,75.0,102.0,5551.36853852584,1548.8153439999999,38.024692745641,205.08,107.16666666666667,257.52986400000003,5032.555818104135,354.0,157.435,53.0,78.0,4202.340863697594,1224.853758,29.027325121093998,159.00510000000006,96.44444444444444,199.02489599999996,3832.836766624076,217.0,126.644,34.0,48.0,3521.161267263444,694.045219,19.381388167094002,127.3585,69.5,161.55247599999998,2466.3783702277274,143.0,76.88000000000001,21.0,35.0,2245.708369238843,503.6727899999999,9.549011573943,76.9256,67.66666666666666,98.88537600000001,1195.6529555387647,38.0,36.300000000000004,5.0,0.0,893.8596544975001,76.61505600000001,3.2526162539999994,35.882000000000005,27.0,45.002304,442.7911388723859,154.0,3.134054999999998,0.6422036396123332,10.950000000000001,82.0,28.893395365412527,728.8467337499998,4.465610602202551,2.8880799999999995,50.57083333333335,2.0245317999999997,968.3327012068942,-7.0,-0.45709000000000083,-0.4166410660228513,1.8999999999999992,18.0,0.24010177962749668,-30.309007000000154,0.30459142080000223,-0.4007200000000018,-7.758333333333333,-0.2880195999999997,42.67439897770464,25.0,0.8431297499999991,0.2397466937254719,-3.222500000000001,-10.0,-11.138432251339896,112.50339343749991,-1.1599559096643999,0.7984959999999988,8.830486111111114,0.43477390999999976,-116.85922050456243,-117.0,-2.4436017500000013,-0.18638969987883985,-1.5574999999999999,-60.0,1.145958421120734,-547.1484561875001,-0.6273930198382672,-2.3377080000000023,-28.369930555555555,-1.372337629999999,-370.5665985198784,7.0,-0.15519849999999857,-0.07205995964043448,-2.9649999999999994,0.0,-2.981326321389883,32.70219737500005,-0.4646533622853855,-0.07619599999999807,-0.1745833333333332,-0.1603654600000005,-11.4995288303057,-2.0,0.49660350000000053,0.28980377932155027,-0.7849999999999998,0.0,-3.77856834005481,-14.060569874999953,-0.9392711328693153,0.4153960000000013,-0.6268055555555561,0.2763258599999996,-167.48192320966743,-19.0,-0.5407077499999993,-0.3490186614473992,-0.7974999999999994,2.0,-2.0779059207178245,-89.01026618749995,-0.46028706666482877,-0.4825839999999989,-11.524375000000003,-0.3624393900000001,-94.09563921553558,63.0,1.6149492500000002,0.27092630915646027,-0.4674999999999996,21.0,-0.1405084704329076,292.50473281250004,0.2640736912010912,1.5150480000000008,28.183125000000004,1.0176369299999994,175.91239260564782,-54.0,-1.1835387500000005,-0.1265174190647993,1.5125000000000002,-24.0,1.926264065571862,-250.32271643750005,0.2785880011493617,-1.1566800000000006,-16.696875000000002,-0.6753337499999993,-107.25723607389406,0.7515986103183288,0.5604420875202113,0.47104914094109596,0.29537255891162084,0.33967476915707845,0.15914716015641936,0.2100118805742081,0.08483380820703279,0.13946776101105474,0.046751662447120715,0.09697547065203799,0.025227823771517454,0.06574926101610211,0.012832512554930757,0.05326569984497611,0.007400723517722868,8.022109791494499,5.69881840520562,3.543869780001472,2.19744914595031,0.37481822278161503,-0.3628351801275165,3.062932082542549,0.9729068890943715,6.0219117323037885,0.9959582875611446,14.540288507486729,10.960084599689855,16.010205905415805,11.710806647213102,1.9774204870918894,0.7517898782883605,3.4890928724703136,2.2470853569049574,7.0082695441859055,1.5228295112982684,3.702019381798968,2.4429746453982957,20.88332490106408,14.702552557309891,0.34797707592752963,0.7162945649528494,0.803536281747062,0.8907779985412748,0.8907779985412748,0.8907779985412748,2.1712966618489173,253.29949758389105,0.0,1.0,1.0,0.0,6.0,0.0,0.0,0.0,0.0,2.7264662506490405,1.0377443751081739,0.6377443751081735,0.23774437510817314,0.23774437510817314,0.23774437510817314,89.0663464193498,422.3162629579107,49.20183750981703,21.115813147895537,42.83955312732014,,7.0,115.0,0.0,4.794537184071822,11.65669156263541,5.687386274683562,0.0,19.056471336613843,12.13273413692322,0.0,5.316788604006331,5.106527394840706,5.066666666666666,15.0,8.5,1.0,6.5,0.0,0.03939393939393942,2.0,0.18333333333333307,0.07307692307692304,-0.11025641025641003,0.08857808857808835,0.1880484429065743,0.0,0.6166666666666669,0.8757575757575755,0.43333333333333385,0.5435897435897439,0.7871794871794872,5.05926599084829,0.2326730120210394,0.31867301202103937,8.431692808969888,3.207587381071228,1.9739531692808272,13.490958799818179,5.1815405503520555,0.5259515570934257,0.23026315789473684,0.0,0.2960526315789474,0.125,0.3718325089991692,-0.4519385666332909,-0.083285834460042,-0.022596928331664545,-0.06456265237618443,0.6281674910008309,0.7634972968143041,0.05831817917206563,0.03817486484071521,0.058730561293408014,-1.5864600110429774,0.8327922077922079,0.8679434470677767,1.5389986386971781,0.9977168949771689,0.5676829268292684,1.178692273871088,0.8348088050617544,1.000668180254107,0.8494994944738371,0.7835132240257061,0.869649516001675,0.9213809259739685,0.7283200670297445,0.5299349122112799,0.5412135088429925,1.4552953306819856,0.9268292682926829,1.3385788292820273,0.7394044631721944,1.195012692887794,0.527532076227001,0.5265335448964819,0.5478242489958546,1.0539673781217016,1.3554756054756054,1.5356225961815209,1.2199276317431762,0.9613723312353449,1.3651944627554384,1.009150790356811,1.3466849454642178,0.9798323548512086,1.5293495276390483,1.4079276607084135,1.4917139213472814,1.0825246037916298,0.9216959511077158,0.8370348431326566,0.976337582332384,1.0461993016384634,0.8961621233859397,0.9691350801699136,0.9250369701329705,1.00615690929363,0.8412402418378502,0.7426731094514099,0.8229578867393962,0.9876000520358019,0.9656593406593407,0.7746973906868998,0.38782674571481285,0.9009483667017915,0.975844277673546,0.9808309794176947,0.9715703039656333,1.121721010755464,0.7957016426137777,1.040630156144698,0.7942515590328286,1.1086480503104967,1.1485776128633274,1.2336907814013358,1.2650405662616755,0.7849532507066753,1.009581881533101,0.8725570463445214,1.144224869694535,0.9928483569297888,1.2347089053066727,1.3828238719068406,1.2478752112557816,1.0374670183810568,0.49350649350649356,0.3171119057726026,0.4271007997160262,1.0677906568317528,0.7218574108818011,0.6936720764239016,0.5014874859536904,0.7820732683380025,0.3244090297946145,0.2713465710911536,0.3318380157746178,0.7055826758048656,2.726623376623377,4.152766942507392,3.781336857615008,0.0,2.595121951219512,0.35959968285012067,2.658959617928041,0.4593193212712784,4.126793579125231,4.207959133228967,4.256132109162227,1.0966698339403873,3.0,0.0,0.8888888888888893,0.5,0.5022222222222223,0.1736111111111111,0.1616326530612245,0.0,0.0,0.0,1588.7456439987682,1791.6288771823117,990.6009379289762,891.2498798510215,9.062168397001814,0.4743661073147308,4.76338285068549,0.9024648408636089,0.0,0.125,1.595461844238322,3.2841837197791888,3.684183719779189,4.0841837197791895,4.0841837197791895,4.0841837197791895,0.2727272727272727,0.0,0.0634920634920635,0.04545454545454546,0.0627777777777778,0.028935185185185185,0.05387755102040817,0.0,0.0,0.0,0.5272643956572529,9.090909090909092,4.13265306122449,3.2653061224489797,64.66690538413799,1.0,3.2859576592794153,31.249201689739795,,23.084662096106214,22.566203525563417,22.51822741546975,23.090274325941206,33.52399697638597,22.881996629719158,23.11415396450944,29.501156479486806,-0.045454545454545456,-0.14584619606229027,-0.6487678367477909,0.17351598173515972,0.21951219512195122,0.00830991915595063,-0.04158488416907193,0.06820823576730362,-0.13874961912412462,-0.15341517673230612,-0.1422647942600851,0.044069976077970766,0.10473397570171764,0.17356258183706239,0.24085084034694645,-0.1898659596405951,-0.07867820613690008,-0.24871031017861456,0.09958586780290475,-0.16758260360347538,0.17837411348626725,0.11265560478444568,0.13855020542240604,-0.0778586175937747,-0.41067041067041066,-0.42145584899142247,-0.15688355361006015,-0.07688510428236454,-0.3955174686882004,0.021438705162740983,-0.40578616678682977,-0.07594288716250158,-0.43753149010621156,-0.30323996238143053,-0.36640774144635513,-0.2068568677072975,0.0267379679144385,-0.029129429858160395,-0.06600431535826304,-0.15928015041633087,0.0,-0.06069627135697562,0.026393185014635466,-0.06120674899237439,-0.015519368047487296,-0.00203073731758502,-0.0465947847939025,-0.006985645238747283,-0.00999000999000999,0.12188767979748058,0.3471266282889173,-0.05514576747453458,0.0,-0.10059707396974157,-0.014839639776006882,-0.16179562447674153,0.11063938139365449,-0.009534312327424304,0.10499136335924858,-0.13304543826956305,-0.11750154607297464,-0.16431101620895663,-0.5175908460884028,-0.06936290497934328,0.023228803716608595,-0.06849170873493866,-0.1163093393410344,-0.09816544118349016,-0.1591381850654444,-0.21703409880059796,-0.17049886370200337,-0.09254556246969,0.6293706293706294,0.792754852002377,0.6490304331600515,-0.0656831752722163,0.39399624765478425,-0.007481532539019485,0.6174237468756445,0.09097685701302906,0.8070562716140407,0.8573846027088178,0.7733122675193723,0.27948498468060234,-1.4025974025974026,-1.5105526227204071,-0.788020567066058,0.5525114155251142,-1.170731707317073,0.26667188694309546,-1.3738016778894573,0.24954079158801276,-1.6020054846126157,-1.3206723242976022,-1.3343010961843114,-0.4430594399640231,3.3019272488946267,6.294690380529889,0.9654893846056297,15.215235042528173,27.218966693073373,32.02336669307338,32.42656669307337,32.42656669307337,32.42656669307337,21.39259690592916,15.969636911513339,1.9684464300976603,3.454513564318158,0.0,5.422959994415818,998.4641162062072,966.0285848780553,149.94477851020406,0.0,14.0,14.0,16.0,18.0,12.0,10.0,4.0,0.0,151.063328528,11.0,3.9318256327243257,4.672828834461906,5.484796933490655,6.251903883165888,7.063903961472068,7.842671474979457,8.651549243915316,9.436599066190539,10.242563539313103,0.6666666666666666,0.9973999999999998,1.128915690523343,0.629277329114978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6606328443113771,0.9827450980392157,1.0159868900218498,0.63128934459597,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.423315998847038,5.749511833283905,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,0.0,24.26546827384644,12.611123474374185,0.0,129.19720436862312,-157.03091564679283,-28.93855893533344,-7.851545782339642,-22.43298794954184,218.26355078797292,265.28534731111785,20.263278574483593,13.264267365555893,20.406565177778297,0.42857142857142855,0.698069623346189,0.417927700727649,73.17097735892807,0.2411415570760613,106.08188132485628,0.301930376653811,4.0,0.09090909090909091,0.3691551106844369,0.7598885607708799,0.8524398460347836,0.9449911312986874,0.9449911312986874,0.9449911312986874,1.3505999999999998,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,42.41050000000002,9.901064578912528,0.0,0.0,0.0,6.923737199690624,5.316788604006331,24.26546827384644,0.0,5.749511833283905,3.1354942159291497,0.0,4.3694478524670215,0.0,5.777652323222656,0.0,7.266128779556451,0.0,8.79527937019457,13.333333333333332,6.309537037037037,0.0,0.0,0.0,0.0,0.0,0.8837055933484512,0.0,19.947999999999997,0.0,10.524468537414966,0.0,0.0,0.0,0.0,0.0,-0.11510204081632636,22.57831381046686,5.316788604006331,5.687386274683562,5.749511833283905,11.013707124192212,4.794537184071822,0.0,6.923737199690624,24.26546827384644,0.0,0.0,0.0,12.58554658229956,13.212656886227544,13.221782261237905,62.49840337947934,,46.052441074264365,44.994753172239456,44.932542473215,46.06399749870015,68.51132323287743,45.64060669976487,46.112443820067575,59.61175673225914,13.221782261237905,62.49840337947933,,45.52646704829036,44.375310725435455,44.4649368718579,45.539517314144135,69.73076429963203,45.08536718713552,45.591055334435794,60.119626543331634,4.439872441417649,47.88540643574612,,35.55903734253271,34.68530456500927,34.42371591219001,35.567948166989275,52.41277604910377,35.20863079182979,35.60969940329948,46.189088664001645,1.2019802055670823,5.681673034498122,,4.186585552205852,4.090432106567223,4.084776588474091,4.187636136245468,6.228302112079766,4.149146063614988,4.19204034727887,5.419250612023558,2.2199362207088247,31.249201689739667,,23.08466209557374,22.56620352465351,22.51822741453607,23.09027432541185,33.52399697638596,22.881996629063472,23.114153963992877,29.50115647948607,19.654901960784315,0.0,1.437358276643991,0.0,0.0,0.0,8.878088151927438,20.319737800436997,0.0,2.5819444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.6257868919194,242.5517984797474,31.90923688476644,65.68367439558378,73.68367439558378,81.6836743955838,81.6836743955838,81.6836743955838,110.0,85.57864256971325,104.90895667684863,40.344002541369846,49.33,49.33,0.75,6.032636480392525,4.459431618637297,3.09615683644216,3.266901188718957,,3.262276170627951,3.2625107726103106,3.25991522657208,3.2622661841906666,3.246481030526798,3.262256236852423,3.2622738256980313,3.2553377277329574,0.2814688033129236,0.29699101715626886,,0.29657056096617734,0.29659188841911915,0.29635592968837093,0.2965696531082424,0.29513463913879984,0.2965687488047657,0.2965703477907301,0.2959397934302688,1.2254717920143,1.2791520667007727,,1.2777353433955128,1.2778072543972059,1.2770113707258344,1.277732282203864,1.2728818297001543,1.2777292329881202,1.277734624593474,1.2756062066825007,117.24000000000007,39.74357732297207,39.56809549042232,,39.680482730021055,39.66680043848506,39.79831246128835,39.681016111906196,40.3746331282005,39.68105885659775,39.680665401046035,40.00660114571265,3.613052483906552,3.597099590038393,,3.607316611820096,3.6060727671350055,3.618028405571668,3.6073651010823813,3.6704211934727726,3.607368986963432,3.6073332182769122,3.636963740519332,3.7777584310691545,3.7733333039049355,,3.7761696277221244,3.775824756640841,3.7791346907256496,3.776183069552053,3.793511874697825,3.776184146759058,3.7761742312599833,3.784354648945349,0.0,10.524468537414966,11.460032596371882,0.6900925925925929,0.07851095993953194,6.309537037037037,0.0,1.437358276643991,0.0,141.69926050059215,44.89095819404285,-54.562080533566366,-10.055013540814617,-2.7281040266783183,-7.794582933366626,75.83801817994912,92.17624710870086,7.040694075438541,4.6088123554350435,7.0904805468231435,166.0,11.0,0.9010475702906073,0.2599310051992921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.1422588984322123,0.026311488763887718,8.267584713501616,6.164862962722324,5.1815405503520555,3.249098148027829,4.755446768199098,2.228060242189871,2.9401663280389134,1.187673314898459,2.2314841761768758,0.7480265991539314,1.7455584717366839,0.45410082788731415,0.7889911321932253,0.15399015065916907,0.5326569984497611,0.07400723517722868,1.0504768156519497,0.27498904442197425,1.3844708273710706,0.3094837478854465,1.7444062609526056,0.30500966722527906,36.87439173532016,24.823155681218058,18.864214539623557,17.87105768269114,17.87105768269114,17.87105768269114,50.0,53.0,22.065136999999986,10.466862999999998,0.3,11.03,4.583333333333334,2.4999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,20.0,0.0,0.0,20.0,6.0,1.0,4.0,16.0,7.0,11.0,13.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,2.0,2.0,0.0,11.0,3.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.772588722239781,0.0,3.2771447329921766,3.590439381300684,4.066887715989061,4.541298109393681,4.22683374526818,4.2018901887852635,3.840795496139778,0.0 +5281006,C/C=C/C1=C(C(=O)O)N2C(=O)[C@@H](NC(=O)[C@H](N)c3ccc(O)cc3)[C@H]2SC1,0,30.217391304347824,6.5203978260869535,3.5,8.835748792270532,162.26174397224634,119.83328578260874,1.6066057650463252,6.5772652173913,6.949953778254906,8.03233567391304,230.92541341150203,28.770833333333332,6.555458333333335,4.270833333333333,7.965277777777779,148.2853656394333,110.26520931250002,1.8934723585833337,6.693958333333334,3.6597865226337443,7.9814081666666645,276.097794634142,26.151898734177216,6.416415189873417,3.911392405063291,6.784810126582278,151.36692728081178,98.61936821518987,1.7113603190410758,6.542025316455698,3.774496015002343,7.902197189873416,239.92627319766638,23.310679611650485,6.426947572815533,3.3980582524271843,5.679611650485437,156.19721441801772,86.94066,1.5276844820824274,6.52155631067961,3.7929102241399977,7.93657390291262,212.51667500964132,21.587719298245613,6.418342105263158,2.9649122807017543,4.9415204678362565,159.52941289092502,79.4607527280702,1.3743655381117104,6.501273684210528,3.728909465020576,7.971540491228072,192.6073444071896,21.780701754385966,6.544035087719299,2.6403508771929824,4.7368421052631575,162.57221165565716,80.03181861403507,1.2599696588459037,6.602153508771929,4.6914663201212905,8.117224684210527,176.8398480533844,17.847619047619048,6.354940000000001,2.6,3.844444444444444,164.78039888541653,63.42358461904761,1.213656809701695,6.409816190476189,3.9002351557907113,7.962745219047619,162.91347708485057,18.551724137931036,6.497885057471264,2.7011494252873565,4.195402298850575,162.2903063043236,65.96156497701149,1.2754299196935515,6.553594252873564,4.260536398467433,8.08240156321839,174.84380468562168,18.443037974683545,6.310316455696205,2.6835443037974684,4.3924050632911396,163.12283847704737,66.64255841772153,1.2677272317016834,6.372129113924052,4.250351617440224,7.90515827848101,171.0857463604616,10.550094517958415,0.16671044423440443,0.035308227739916175,0.698015122873346,4.2350346565847525,1.5739465584589285,48.16381060491492,0.2821516937653767,0.1521423440453686,2.922531739363811,0.10872261862003776,48.59467384777745,0.02508664146187739,-0.025475888074984233,-0.022094148999668325,0.27254647132955256,0.8880531050899667,0.09965565150926771,0.277155866099562,0.04078959458869911,-0.022182380277252698,-0.3316499415367315,-0.016707718257718968,4.857815291817929,-0.32499820535522017,0.02581280837979468,0.0008845436754330172,-0.0034636644253548117,0.4979806922809005,-0.2010390219499742,-1.3547918366155363,-0.029798874123148984,0.02243052331841783,0.35316870220578656,0.015741629316120696,-2.668130547356164,0.18017141703525597,0.013654055554535935,0.007634083820982914,-0.04056472186026028,-0.09723624187624755,0.034120228344214056,0.7175360810285046,-0.004143297795137263,0.010674540716134124,-0.039625548226690975,0.007566332414153832,-2.771408040608234,-0.17518986502172268,-0.022933613570788974,-0.008241720982110762,-0.10648194209531388,-0.2980908477873954,-0.22721372186632224,-0.8216585702086019,-0.02891728295464474,-0.017670948164361773,-0.37764504934300086,-0.01673562014559082,-2.8331358279829795,0.6791198222399099,0.0003855130501110947,0.0011613386339361833,-0.06395715185885316,-0.22054190296156265,-0.2155230513414528,2.7271349564885763,-0.02696389478543768,0.0022737124000928475,0.056795016199276765,0.0058835003730971875,-3.660926483779335,-1.1310468989107936,-0.0019412516878206916,0.004769616794389992,-0.034247006931316944,-0.27073744011362166,0.10298188739280892,-4.875271638869386,-0.009980438346667153,-0.0031313295526149954,-0.09086948896833613,-0.0046682442929156555,0.2493494579815674,-2.0508441431458184,-0.033595851530756345,-0.0036313000899268373,-0.01885470308324098,-0.7862035165991881,0.0021043277855826103,-9.357618660387196,0.0031671566988137304,-0.03345828607435412,-0.38743337633682096,-0.020811685836429613,-4.3657836986449094,0.04979541049508276,0.005543876073795795,-0.0006863762513878342,-0.002362948960302444,0.1781005479648727,0.06386780261834459,0.4512646086238651,0.02059688312041473,0.004942135866574141,0.3073201849631318,0.0033098945885477746,3.519384082701809,,,0.4703703703703705,1.1203703703703705,0.48148148148148145,0.018518518518518517,0.6388888888888888,-0.1574074074074074,0.9283361761244163,0.021065575995334304,0.03062113155088986,0.9363640414525746,0.2198278054964119,0.2559293430405907,1.864700217576991,0.47575714853700257,2.0081577547995932,1.3828927907963893,0.224360911419333,0.324466243140327,0.0,0.625264964003204,8.458794384956533,1390.0,299.93829999999986,161.0,406.44444444444446,7464.040222723332,5512.331146000002,73.90386519213097,302.5541999999998,319.69787379972564,369.4874409999999,10622.569016929094,1381.0,314.6620000000001,205.0,382.33333333333337,7117.697550692798,5292.730047000001,90.88667321200002,321.31,175.66975308641972,383.1075919999999,13252.694142438817,2066.0,506.8968,309.0,536.0,11957.98725518413,7790.9300889999995,135.197465204245,516.8200000000002,298.1851851851851,624.2735779999998,18954.175582615644,2401.0,661.9755999999999,350.0,585.0,16088.313085055825,8954.88798,157.35150165449002,671.7202999999998,390.66975308641975,817.4671119999999,21889.217525993055,2461.0,731.691,338.0,563.3333333333333,18186.35306956545,9058.525811000003,156.677671344735,741.1452000000002,425.09567901234567,908.7556160000001,21957.237262419614,2483.0,746.0200000000001,301.0,540.0,18533.232128744916,9123.627321999998,143.63654110843302,752.6454999999999,534.8271604938271,925.363614,20159.742678085822,1874.0,667.2687000000001,273.0,403.66666666666663,17301.941882968735,6659.476384999999,127.43396501867798,673.0306999999998,409.5246913580247,836.088248,17105.91509390931,1614.0,565.316,235.0,365.0,14119.256648476152,5738.656153,110.96240301333897,570.1627000000001,370.6666666666667,703.1689359999999,15211.411007649087,1457.0,498.51500000000016,212.0,347.0,12886.704239686742,5264.762115,100.15045130443299,503.3982000000001,335.77777777777766,624.5075039999998,13515.773962476465,485.3043478260871,7.668680434782604,1.624178476036144,32.108695652173914,194.81159420289862,72.40154168911072,2215.5352878260865,12.978977913207327,6.9985478260869565,134.4364600107353,5.001240456521737,2235.3549969977626,1.2041587901701147,-1.2228426275992432,-1.0605191519840795,13.082230623818523,42.6265490443184,4.78347127244485,13.303481572778976,1.9579005402575573,-1.0647542533081296,-15.919197193763111,-0.8019704763705104,233.17513400726062,-25.674858223062394,2.03921186200378,0.06987895035920837,-0.27362948960303013,39.340474690191144,-15.882082734047962,-107.02855509262737,-2.3541110557287697,1.7720113421550088,27.90032747425714,1.243588715973535,-210.78231324113696,18.557655954631365,1.4063677221172013,0.7863106335612402,-4.178166351606809,-10.015332913253497,3.514383519454048,73.90621634593597,-0.4267596728991381,1.0994776937618147,-4.08143146734917,0.7793322386578447,-285.4550281826481,-19.971644612476386,-2.614431947069943,-0.9395561919606268,-12.138941398865782,-33.982356647763076,-25.902364292760737,-93.66907700378061,-3.2965702568295003,-2.014488090737242,-43.0515356251021,-1.9078606965973537,-322.97748439005966,77.41965973534973,0.0439484877126648,0.1323926042687249,-7.291115311909261,-25.141776937618143,-24.56962785292562,310.8933850396977,-3.0738840055398953,0.2592032136105846,6.474631846717552,0.6707190425330793,-417.3456191508442,-118.75992438563333,-0.20383142722117262,0.5008097634109492,-3.5959357277882793,-28.427431211930273,10.813098176244937,-511.90352208128553,-1.047946026400051,-0.3287896030245745,-9.541296341675293,-0.4901656507561438,26.181693088064577,-178.4234404536862,-2.922839083175802,-0.31592310782363486,-1.6403591682419654,-68.39970594412937,0.1830765173456871,-814.112823453686,0.27554263279679453,-2.9108708884688084,-33.70670374130342,-1.8106166677693765,-379.8231817821071,3.933837429111538,0.4379662098298678,-0.0542237238596389,-0.1866729678638931,14.069943289224943,5.045556406849222,35.64990408128534,1.6271537665127638,0.39042873345935714,24.27829461208741,0.2614816724952742,278.0313425334429,0.7301782959912893,0.5656200000876245,0.44294631070686447,0.3201302496281635,0.2810405552646807,0.1726014296480684,0.17174542859350056,0.09832450900856536,0.10741108129057769,0.05723087339560614,0.0696091664233841,0.03362610197501213,0.04361656939523718,0.01891098568672647,0.02689814761218427,0.011141112077580475,16.00200349314221,5.693175162359425,3.555788552878728,2.1923969062074153,0.4787638147161683,-0.383337667373237,3.2708823287810302,0.9725352285312236,6.024497555070684,0.6549467178550201,14.54424645553951,10.338078277093377,32.06099907145426,11.704671022656676,2.9162828144795236,0.7413662933151591,3.5018884964212758,2.2422138277827126,7.010461656839719,0.6222007575994137,3.7147639821480176,2.4382089893324976,24.43422808411674,14.700439184683537,0.3067700929346634,0.694227076977606,0.8599264848483552,0.9183592851280414,0.9183592851280414,0.9183592851280414,1.5761135767588241,849.0579977661422,0.0,3.0,3.0,0.0,8.0,2.0,2.0,0.0,0.0,3.742039146912827,1.49193892354545,0.5296636516652242,0.19032364135137936,0.19032364135137936,0.19032364135137936,20.023445694032546,2043.056369897598,103.52052600746376,44.41426891081734,92.59573444268884,,15.0,644.0,35.24121921791952,24.596666341896878,11.446551146339738,16.889409628513054,0.0,40.92726295408803,19.075777413358384,0.0,5.316788604006331,5.733667477162185,12.700000000000003,30.25,13.0,0.5,17.25,0.0,0.029629629629629523,-4.25,0.20974025974025967,0.0625,-0.14724025974025967,0.09317129629629617,0.18920661157024754,0.0,0.65,0.8962962962962959,0.44025974025974035,0.5875,0.8031249999999998,25.06507675535924,0.5687705518740263,0.8267705518740263,25.281829119219513,5.935350748403121,6.910092262095948,50.34690587457875,12.84544301049907,0.5247933884297524,0.20209973753280833,0.0,0.4251968503937007,0.2777777777777778,0.48423703069212365,-1.5576416760645462,-0.10599821639029855,-0.03386177556662057,-0.08653564867025257,0.5157629693078766,1.6590509296996132,0.056989802667499326,0.036066324558687246,0.05925181891784333,-1.1941243554095669,0.755324986561548,0.8476421635092258,1.6098197378964516,0.8029366960054163,0.5298923151316766,1.119320584328843,0.7529196066114262,0.8462660828156964,0.824494704957426,0.7493689509082053,0.8520239327711835,0.8326734328410332,1.0551906445693908,0.5324526032196364,0.7978478766223255,1.2152155841039396,0.712957591829124,1.2862627517975855,1.0354195739810006,1.2566794211241856,0.5366447826813099,0.5066512489961396,0.5280073477405458,1.0429559480545962,0.9110487559211816,0.7619913877357433,0.69042784639549,1.1565690096035652,0.9343107316150072,1.0487555188740012,0.9106408232943759,1.021566693866638,0.769587878322318,0.835038937827278,0.766460823462731,1.0224554285301342,1.022825328416903,1.1041845112606754,1.2257856726196106,1.180201689056765,1.0465577255890801,1.1734391752087396,1.017775159489158,1.1121622720351618,1.077779040071536,1.1148247378804788,1.1160397781304767,1.0191608621244244,0.993950339026207,1.1481200532935334,1.0002473018208435,1.0634108969105227,1.107007494185545,1.1220112352986797,0.9946404273059443,1.0905012205444038,1.1229857867866277,1.2078598411591708,1.1108689030848744,1.0165747380804295,1.2738692502623694,1.0758351171950478,0.8930070644788097,1.0477802495405746,1.1239186345569319,0.9170845789790025,1.254791061260521,1.1022088170123758,1.0854904948337993,1.1111678094790347,1.0945588637495212,0.9808111389173167,1.2118239840839298,1.365708367110965,1.1853861336603966,1.0229262484532953,1.2449399463339297,0.9570422583848764,1.2084180352622422,0.9638964375451327,1.3708003870753733,1.3709577633458527,1.3813058617511929,1.034205429160646,1.0493219535539884,0.9692749867197968,0.9380434138848367,0.9845907287265496,0.993819673458779,0.9246934008601279,1.041025806130169,0.9335086723690758,0.9740696147563089,0.9396640567745159,0.9622417825101932,0.9187694844941807,5.5,0.1526374859708193,3.7777777777777795,3.125,2.106666666666667,1.4999999999999996,0.728979591836735,0.4479166666666667,0.2952884857646762,0.25250000000000006,5680.875646183276,6252.613190302175,2646.1111602116976,2434.189513419149,16.758500402989544,0.48912720470219934,8.561461945874587,0.9574344322192273,1.0,0.2777777777777778,1.781522809144186,4.031623032511563,4.993898304391789,5.333238314705634,5.333238314705634,5.333238314705634,0.1896551724137931,0.008033551893201017,0.0944444444444445,0.07102272727272728,0.04899224806201552,0.03846153846153847,0.0235154707044108,0.016589506172839504,0.011811539430587048,0.011477272727272728,0.5140034715828299,21.702734839476815,9.212018140589569,4.451843043995244,159.26557050154196,1.0,4.227312132046562,150.33324163783084,,120.5511534499674,122.64448297286852,121.73697946525363,120.56656438115576,158.33857267495634,123.91521482251653,124.80717784846598,149.9307227834903,0.0023778594039299654,-0.15281518918612966,-0.6257507219681476,0.39045926427443006,0.20969205144737044,0.06331577840027926,0.005754442238240995,0.14456618723195655,-0.14580017428046163,-0.11348035577157718,-0.15367288306501206,0.0999660025918686,-0.030805241109641897,0.15483618017057404,0.02505205534383237,-0.004962162440115627,0.11758597807614772,-0.1277292553991249,-0.028128834068566935,-0.10561295495155967,0.14743116690596722,0.12084341033800572,0.14478706929543625,-0.05490582271863926,0.01707770643462648,0.08190282028963675,0.21621260283060126,-0.05811438825748866,-0.022959963674691983,0.021678136503962123,0.01489782623128418,-0.0146846461910047,0.07016153709943493,-0.013558637428285667,0.0695929927938596,-0.05703110693343996,-0.016605525639937516,-0.13756554771423318,-0.2334221089435606,-0.15254962049673945,-0.07038687329840743,-0.1443592354805173,-0.017059666996629932,-0.10248842588444966,-0.1161474688407083,-0.12921845954877748,-0.15392951676484382,-0.058301365224875515,0.06437097042911884,0.002312470894559199,0.03289144509009957,-0.09162717219589253,-0.05207558399047758,-0.13693161955414435,0.05662207624847448,-0.09556524161027902,0.014944638945583946,0.019433498508946954,0.05411477802662903,-0.07533596161684648,-0.10720727638842674,-0.011644451532329795,0.1350851373658132,-0.04906341683592867,-0.06392803414080009,0.0654290876900165,-0.10122271426696218,-0.03537259767423685,-0.020581578207321673,-0.031092729548291235,-0.04293719515007423,0.005131209621092493,-0.19439106821790678,-0.20152217628020147,-0.10284571960607441,-0.027011883360959995,-0.1856427586434922,0.0013369753720501062,-0.19428734028433142,0.011225013950996801,-0.21991435904508547,-0.13256772240261766,-0.19142002005269937,-0.08984078609768435,0.004719901836928646,0.03325452163033522,-0.019439555461229833,-0.0033852403520649773,0.0420540945722739,0.04057812654127112,0.009369370964551866,0.0729993247445896,0.03248363167784771,0.10515546531926821,0.030443477452609436,0.07242324732389933,4.342984188429732,15.738891533603926,12.573842458373845,19.909287018272515,39.323123620457274,45.57643171810299,46.570269057195,46.570269057195,46.570269057195,54.22025937958902,37.33810535150251,6.0577446083219915,8.76058856478883,0.0,16.882154028086507,7857.943049656278,7414.289930746398,1224.779315156752,113.0,42.0,58.0,75.0,95.0,104.0,115.0,114.0,114.0,389.1045417080005,29.0,4.962844630259907,5.8377304471659395,6.7464121285733745,7.650168700845001,8.56845648535378,9.48440514846878,10.408828161071545,11.332230584420795,12.261237685030071,0.7391304347826084,1.0082608695652175,1.1257487869077547,0.704835784588765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.689131306951315,0.9940323955669221,1.0250878748535421,0.6561370675846688,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,0.0,2.0,0.0,5.0,0.0,1.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,21.263510870849927,28.9041056176044,0.0,5.907179729351506,5.907179729351506,14.48898409899412,4.794537184071822,0.0,11.761884949391115,24.284774350590983,30.193027358380107,5.752853606746789,0.0,307.55924527044374,-989.3235500958417,-67.32391239558224,-21.507033697735686,-54.96241944976898,327.5826909644763,1053.7328198017562,36.196613611881524,22.90723521308166,37.633314992919864,0.4666666666666667,0.6195209605141229,0.1579158121352416,204.79767865003845,0.10957371460063149,81.71000401181765,0.3804790394858773,8.0,0.1724137931034483,0.3225315155903354,0.7298955030441139,0.9041083170825291,0.9655433137411132,0.9655433137411132,0.9655433137411132,0.7067000000000008,,2.303571428571429,1.9609845219659927,1.4545191904946573,2.2991871333729694,-6.541878845206731,1.7887851897184825,1.734619084590567,-2.7953673998489466,99.53370000000001,24.596666341896878,0.0,10.216698334856808,5.733667477162185,24.381291670955285,5.752853606746789,53.2511038223363,0.0,5.749511833283905,4.07753744390572,0.0,5.459585514144159,0.0,7.0587581525186645,0.0,8.760766624241956,0.0,10.521075708675037,33.999999999999986,5.890617954175855,0.0,0.0,0.0,0.0,0.0,0.5476041528542857,0.0,46.38000000000001,0.0,36.520031191941925,0.0,0.0,0.0,3.3947903863389417,0.0,-1.6759917587289508,51.78444419775672,11.050456081168516,0.0,5.749511833283905,50.06519651605024,14.383611552215466,0.0,18.52902952053558,47.6876523306393,0.0,0.0,0.0,32.42244609108319,31.700040119760487,33.89975344639572,300.66648327566173,,241.23201557990717,245.1437078329988,243.36621676824842,241.26387144001916,318.62436152582507,247.69792703838723,249.48586539436968,300.48263832250257,33.89975344639572,300.66648327566185,,239.26971399260555,243.32798142377106,242.03291775454085,239.30530462270144,323.21902419511946,246.04164445531458,247.87973661234147,302.6568129668296,5.146235302416105,226.51271305886297,,185.14703482439694,188.30487285751917,186.11146417414034,185.1700200112081,243.6045500072616,190.42824022032028,192.00100004668178,232.74638749084852,1.2555464239405822,11.135795676876361,,8.934519095552117,9.079396586407363,9.013563584009201,8.935698942222931,11.800902278734261,9.173997297718046,9.240217236828506,11.128986604537133,2.5731176512080522,150.33324163783084,,120.5511534499674,122.64448297286852,121.73697946525363,120.56656438115576,158.33857267495634,123.91521482251653,124.80717784846598,149.9307227834903,45.72549019607842,0.0,1.7727121451580325,0.0,0.0,5.928350569400804,18.791598154113935,47.15404224326294,0.4273870768080723,2.6125026769967246,0.0,1.389545222460987,-2.3103170555795023,1.2111692840588941,0.0,0.0,0.0,30.182305108894766,393.48374239905735,81.95004922063255,185.4546594955319,229.7193220020223,245.32896247645914,245.32896247645914,245.32896247645914,886.0,133.25231397118918,241.65819383586265,62.87772344348553,158.26000000000002,132.96,0.875,7.717768408135982,5.857980995127572,3.8174883933889734,5.110210340674938,,5.115514467287877,5.12026187869848,5.118046697492596,5.11551824973345,5.118348353919883,5.120723434565141,5.120939130878092,5.126441624185646,0.14138845901440641,0.18926704965462735,,0.18946349878843988,0.18963932884068446,0.18955728509231837,0.18946363887901665,0.18956845755258825,0.18965642350241263,0.18966441225474415,0.18986820830317208,2.3328444907466914,2.624492338937438,,2.6255297474709645,2.6264573589369733,2.6260246348744065,2.625530486877372,2.6260835728942578,2.6265474978938905,2.6265896192412024,2.6276635510034594,273.1400000000003,566.3752686630378,164.1131466902255,,162.6562320316706,162.32157868392665,162.75261090956158,162.65664005624964,163.08121140113377,162.27830417339794,162.2312439297452,161.98122132356497,20.97686180233473,6.078264692230574,,6.024304890061875,6.011910321626913,6.027874478131911,6.0243200020833205,6.040044866708659,6.010307561977702,6.008564589990563,5.999304493465369,7.33250865035287,6.093807881792723,,6.084890740791504,6.082831194231698,6.085483096425347,6.084893249297094,6.0875000791967695,6.082564561290218,6.082274522095639,6.080732183767913,0.0,37.731200476000815,20.925928537501857,6.934895997427564,-1.707545957093353,4.058473192205154,3.3947903863389417,1.7727121451580325,0.0,346.27358557694,195.34377454802024,-628.3608751706777,-42.76024007384023,-13.660019025449511,-34.90893750948209,208.06150461622283,669.2699034431694,22.989987254597686,14.549345727025422,23.90249655154176,1954.0,44.0,2.070331990314877,0.8997887303340192,0.0,0.0,0.6796454388165997,0.21566965820398504,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.33239598128474673,0.1962517231400299,0.681441707735664,0.3817487224170892,1.1061377881472494,0.5265807297392783,19.71481399176481,15.271740002365862,12.84544301049907,9.283777239216741,11.80370332111659,7.249260045218874,9.961234858423033,5.702821522496791,8.055831096793327,4.29231550467046,6.61287081022149,3.1944796876261523,4.536123217104667,1.966742511419553,3.093286975401191,1.2812278889217545,5.1479752484249754,2.178537316722284,7.815592748779379,3.0803845349916426,12.46864071646845,4.277118030203295,88.45238701677013,42.37375049885584,27.73097278364549,25.212556436732832,25.212556436732832,25.212556436732832,142.0,171.0,52.93906699999999,25.834932999999996,0.3695652173913043,139.09,10.472222222222221,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,6.0,6.0,46.0,0.0,1.0,48.0,6.0,5.0,8.0,40.0,11.0,29.0,37.0,0.0,0.0,0.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,6.0,4.0,2.0,27.0,9.0,0.0,3.0,5.0,0.0,3.0,5.0,1.0,0.0,0.0,0.0,1.0,3.6375861597263857,5.962293169807702,4.1666652238017265,4.646791860678911,5.086824432453803,5.5035514973186785,5.560200746178177,5.732531887942187,5.769687249543919,5.823600475402954 +65348,COc1cccc2c1C(=O)c1c(O)c3c(c(O)c1C2=O)C[C@@](O)(C(=O)CO)C[C@@H]3O[C@H]1C[C@H](N)[C@@H](O)[C@H](C)O1,0,25.794117647058822,6.665954411764706,3.661764705882353,9.529411764705882,162.31270190839297,102.00648798529414,1.4188135035385439,6.696157352941175,7.081392973856208,8.169116176470588,219.99996552291898,26.5,6.641430555555555,4.513888888888889,8.347222222222221,146.53620261857156,101.0160877638889,1.7682738798611113,6.767583333333333,3.6705246913580245,8.067791499999998,271.19309336464966,24.0,6.555421875000001,4.234375,7.4765625,150.93858979890737,90.88817846093748,1.5813866109635861,6.659090624999999,3.5211588541666674,8.029752343750001,240.53396380755564,22.38121546961326,6.639651933701656,3.6685082872928176,6.9502762430939224,155.0744598927234,83.61702348618786,1.419313165200453,6.716430386740333,4.226289134438305,8.139256685082874,215.7904393797268,20.624413145539908,6.665338028169015,3.1690140845070425,6.370892018779343,158.39107026224826,75.94482283568074,1.275171093906451,6.720231455399061,4.5597287428273345,8.192400000000001,192.22562084504503,18.609865470852018,6.562363228699553,2.977578475336323,5.6591928251121075,161.49218381438772,67.87539380269058,1.1939205193116909,6.6040242152466355,4.506726457399103,8.127959856502242,176.32565349276652,19.237864077669904,6.511961165048545,3.1650485436893203,5.553398058252427,158.825881108795,70.51582813592232,1.258700566693524,6.569328640776697,4.173948220064725,8.06012427184466,185.2777039363337,19.441747572815533,6.609966019417476,3.0728155339805827,5.402912621359223,158.4291492735897,70.69024403398059,1.2657735576481892,6.664935436893203,4.41477885652643,8.148119747572816,186.81901177683966,18.13953488372093,6.529395348837208,2.8232558139534882,4.674418604651163,160.19963956092215,65.42670062790698,1.1956314881635721,6.578268837209305,4.372222222222222,8.086068706976745,173.90444626889672,8.104671280276818,0.20314366349480958,0.03658324474241494,0.8016868512110726,4.663494809688583,1.352883286622538,38.11820389684256,0.22336078837721002,0.18390369809688578,2.9379730752595155,0.13872707525951553,46.86802700951389,-0.2059784698193006,-0.03084217248173773,-0.015548320578289108,0.35088667820069214,0.9582372164552093,0.2050431470148986,-0.7571857303801492,0.030084690937884535,-0.026610703815839944,-0.46014537010337914,-0.0211487884948097,5.384778980866023,0.5835180579584772,-0.012757231969074367,-0.0016690529046377617,0.06550064878892732,0.36522761678200666,0.10725317887086844,2.899441650951553,0.023508249664590076,-0.009080616754973996,-0.16615121174848624,-0.011013444744809687,6.4048848628621915,0.14963486206962442,-0.010544256604981884,-0.0007918852027035749,-0.021218862910780175,0.17742166739949125,0.011700973599270817,0.7654808562448586,0.0011462068317224777,-0.007983589224607537,-0.013301226777949822,-0.008907552022596512,1.6529080695917417,-0.05247575417905375,0.00034082283493353145,0.00010975113746719546,-0.021032335883815003,0.2798909953376543,-0.0782729389786008,-0.2983629754120186,-0.017936883899507015,0.0007627062113164235,-0.03549447818688358,-0.0008551768888997483,-2.4184884630051187,0.42671885425233125,0.007711856156997245,0.0016765862312536671,0.028503072291960845,0.2969377938461061,0.11487335664891737,2.0347552552940784,0.0181428654787786,0.007118578347324187,0.2212188339406369,0.005671656737319018,3.554672159644971,0.3606342594147881,0.010632585791312535,-0.00028039172698794083,-0.041763950011757985,-0.04256391305808456,-0.028013125096284664,1.6575208266011858,-0.0021026217579231603,0.009971737368562515,-0.02900141620754527,0.0068884136039909895,0.4611694461038267,-0.7013303322471194,-0.004157519862599476,-0.00032367518479039825,-0.1011585816508214,-0.5142943528067995,-0.1140318532118537,-3.3659284987843097,-0.019190241795104916,-0.005045602722813783,-0.1307210684697446,-0.0010799347683676753,-5.070500238391369,-0.4002937152973364,0.0018887646857648846,0.0001283163982094829,-0.16105757624527237,-0.5759435100989779,-0.15788711239623263,-1.9675679204403715,-0.02323200084590746,0.0008768490987366523,-0.006797649662920322,0.0014219460811136944,-4.868943378018431,,,0.45042735042735044,1.108974358974359,0.46153846153846156,0.038461538461538464,0.6474358974358975,-0.1858974358974359,1.179028221247224,0.025293242182955786,0.03631888320859681,1.2050893291423912,0.21858103289876418,0.25392607267143635,2.384117550389615,0.47250710557020054,2.0348100428890232,1.4710882121754218,0.04513235845135104,0.5185894722622494,0.0,0.5637218307136004,7.987853834529422,1754.0,453.2849,249.0,648.0,11037.263729770722,6936.441183000002,96.47931824062098,455.3386999999999,481.5347222222222,555.4999,14959.99765555849,1908.0,478.183,325.0,601.0,10550.606588537154,7273.158319000001,127.31571935000001,487.26599999999996,264.27777777777777,580.8809879999999,19525.902722254774,3072.0,839.0940000000002,542.0,957.0,19320.139494260144,11633.686842999998,202.41748620333902,852.3635999999999,450.7083333333334,1027.8083000000001,30788.34736736712,4051.0,1201.7769999999998,664.0,1258.0,28068.477240582935,15134.681251000002,256.895682901282,1215.6739000000002,764.9583333333333,1473.2054600000001,39058.06952773055,4393.0,1419.717,675.0,1357.0,33737.29796585888,16176.247263999996,271.61144300207405,1431.4093,971.2222222222223,1744.9812000000002,40944.05723999459,4150.0,1463.4070000000004,664.0,1262.0,36012.75699060846,15136.212817999998,266.24427580650706,1472.6973999999998,1005.0,1812.5350480000002,39320.620728886934,3963.0,1341.4640000000002,652.0,1144.0,32718.131508411767,14526.260595999996,259.29231673886596,1353.2816999999995,859.8333333333333,1660.3856,38167.20701088474,4005.0,1361.653,633.0,1113.0,32636.40475035948,14562.190271000003,260.749352875527,1372.9767,909.4444444444446,1678.5126679999998,38484.71642602897,3900.0,1403.8199999999997,607.0,1005.0,34442.92250559826,14066.740635000002,257.060769955168,1414.3278000000005,940.0277777777777,1738.504772,37389.45594781279,551.1176470588236,13.813769117647052,2.487660642484216,54.51470588235294,317.11764705882365,91.99606349033259,2592.037864985294,15.188533609650282,12.505451470588234,199.78216911764704,9.433441117647055,3187.0258366469443,-14.830449826989643,-2.2206364186851166,-1.1194790816368159,25.263840830449833,68.99307958477507,14.763106585072698,-54.517372587370744,2.1660977475276866,-1.9159706747404759,-33.1304666474433,-1.5227127716262983,387.70408662235366,74.69031141868508,-1.632925692041519,-0.2136387717936335,8.384083044982697,46.74913494809685,13.72840689547116,371.1285313217988,3.0090559570675297,-1.1623189446366715,-21.26735510380624,-1.40972092733564,819.8252624463605,27.08391003460202,-1.908510445501721,-0.14333122168934706,-3.840614186851212,32.11332179930792,2.117876221468018,138.5520349803194,0.20746343654176844,-1.445029649653964,-2.407522046808918,-1.6122669160899687,299.17636059610527,-11.177335640138448,0.0725952638408422,0.023376992280512633,-4.4798875432525955,59.616782006920374,-16.67213600244197,-63.55131376275996,-3.8205562705949943,0.1624564230103982,-7.560323853806203,-0.18215267733564638,-515.1380426200902,95.15830449826987,1.7197439230103855,0.37387872956956775,6.356185121107268,66.21712802768165,25.616758532708573,453.7504219305795,4.045859001767628,1.5874429714532938,49.33179996876203,1.264779452422141,792.6918916008285,74.29065743944635,2.190312673010382,-0.057760695759515805,-8.603373702422145,-8.768166089965419,-5.770703769834641,341.44929027984426,-0.43314008213217103,2.054177897923878,-5.974291738754326,1.4190132024221438,95.00090589738831,-144.4740484429066,-0.8564490916954921,-0.06667708806682204,-20.838667820069208,-105.94463667820068,-23.490561761641864,-693.3812707495678,-3.953189809791613,-1.0393941608996393,-26.928540104767386,-0.22246656228374112,-1044.523049108622,-86.06314878892734,0.4060844074394502,0.027588025615038824,-34.62737889273356,-123.82785467128026,-33.945729165190016,-423.0271028946799,-4.994880181870104,0.18852255622838024,-1.4614946775278692,0.3057184074394443,-1046.8228262739626,0.7278467278997208,0.543849673531687,0.42855295621483286,0.28864655198588396,0.26404895002420076,0.15164079194804028,0.1655727234358389,0.07964571859837571,0.0999654995067042,0.04166854038187092,0.05961755468305516,0.021435470123376266,0.036149905268114284,0.011284729567755208,0.021875619241067488,0.005778444526482974,8.028246509193567,5.668289728931745,3.5498872737346736,2.1662672689967626,0.45552479699737364,-0.5282409125908801,4.0240350050363975,0.9771727576983384,6.025410546566299,0.9937247848020622,14.53782724776338,10.92893885872441,16.01730632867622,11.68048593300418,2.020489350277153,0.7518956926508678,3.4953142339613086,2.2158315752152054,7.01046571233248,1.1579630805628724,3.7083322497218227,2.4119084391326537,20.924359361691987,14.701788826267832,0.24733910928116898,0.639866624091654,0.851124059414603,0.8963788297664949,0.9102963978599826,0.9149355872244788,1.4853559533774496,1376.5187409654486,0.0,0.0,3.0,0.0,9.0,7.0,6.0,1.0,0.0,4.51936998856064,2.0308044226570923,0.6914639707154953,0.4045555147695108,0.31632022065186494,0.2869084559459818,291.68865345189914,3616.5434742731163,118.8809241127085,53.18446285695758,118.01688446172173,,14.0,919.0,95.6690042321333,39.91624852641899,34.4241394229979,0.0,0.0,25.30889874666236,6.923737199690624,0.0,0.0,19.944256338562333,17.566666666666666,43.25,18.0,1.5,25.25,0.0,0.04957264957264958,-7.25,0.2161944594351503,0.053897058823529576,-0.16229740061162073,0.09533630620587186,0.22783763837638366,0.0,0.6593137254901947,0.9264957264957263,0.4431192660550444,0.6054166666666652,0.8311594202898545,45.98210062864174,0.9864364451352756,1.4164364451352756,46.998483836553255,8.524660283051803,9.903116834186017,92.980584465195,18.42777711723782,0.4861623616236163,0.23149905123339656,0.028462998102466795,0.4838709677419355,0.4444444444444444,0.30972907764496155,-1.4613644991607937,-0.08862140106810265,-0.021490654399423437,-0.0913352811975496,0.6902709223550385,3.256837970792437,0.06647261999620631,0.04789467604106524,0.0626314994383161,-3.008689530206607,0.7800814743658163,0.8847869294048957,1.3165000009783259,0.8108158738722536,0.5458016447165026,1.0649676141368225,0.7811405485493419,1.0256371365367887,0.8603402904168734,0.8727648117562684,0.9188217012827024,0.8873437053272557,0.7593447306276015,0.8680534147487967,0.8717991753700058,1.219424399784192,0.8013710640419214,1.0495941853663748,0.7600553506008928,1.0055002547026477,0.8444535626492069,0.7292538783688525,0.9087264643772093,0.8697578621664617,0.882566168314572,0.9973177893901738,0.9516027472682398,1.1916800677231518,0.9157327897631715,1.0682852582134144,0.8819369286846924,1.0435583935468076,0.976927005666421,0.893400249257573,1.0307603913882122,0.9388189766799294,0.9665761674326028,1.0425200293465224,1.0423785130906003,1.0616939656100437,0.9393442208932812,1.0784626883853845,0.9662847236322866,1.0836108465049756,1.0290147214786263,1.0788337117236013,1.0690213523838694,1.0099742495789374,0.9529432768212313,1.0255698233196138,1.0135635113525043,0.9699937459248712,0.9881749436238603,0.8833277764228024,0.9501588948440435,0.8952793348718607,1.0204270634361974,0.9396692003359624,1.0320117504635204,0.8942598333766877,0.9173899774820284,0.9224472299869229,1.0401902803076375,1.1484831897669328,1.0004939011981488,1.0203876328377792,0.9187015767558342,1.0207381838666856,0.9174179366830355,1.0230087668309775,0.9352027543799767,0.9781861829184278,1.0448626279394864,1.0410165930532886,1.100165491813128,1.1902462148493667,1.09690233452734,1.098867496154699,1.0456224609165325,1.0918586385382782,1.0392488623188352,1.1256623739703249,1.0445765624923369,1.0747926241358479,1.0296792738050025,1.0010587817089824,1.0815160995921311,1.2604663709763428,1.1006112685656106,1.1077801143361834,1.0311948347830362,1.0915387619466366,1.0020612345749587,1.0676769154103554,1.0061530451725726,1.0786959333705375,9.5,0.3466993163962861,6.222222222222223,5.0,4.786666666666668,2.687499999999999,1.7665306122448978,1.4062499999999998,1.0055429579239101,0.6631250000000002,9407.58864112436,10386.760621495256,3826.997804900293,3502.382532636844,15.602502754106498,0.4710791552052234,8.252488937614837,0.8906420683571358,0.0,0.4444444444444444,1.5680928526896996,4.056658418593247,5.395998870534844,5.682907326480828,5.771142620598474,5.800554385304357,0.22093023255813954,0.00806277479991363,0.0928689883913765,0.06024096385542169,0.056984126984126984,0.034455128205128215,0.023243823845327607,0.018750000000000003,0.014162576872167747,0.011433189655172416,0.5411318051667743,30.457544618712816,11.588772555134774,5.127863390254061,222.08139702756714,0.0,4.610174789661353,233.495039621242,,191.48004437992347,189.01351537347153,196.3951845748666,191.529581674164,274.97354131228286,190.85811462673308,191.58606293569602,233.2811918362436,-0.025414783980265924,-0.15182443769665385,-0.4250120700819697,0.43768545994065294,0.20547620519796356,0.1515601153790488,-0.019864150273955303,0.13469101338896483,-0.1446991229171512,-0.15662000920914967,-0.1524488889803728,0.11489237598529482,0.07199774522360973,-0.06279906421693689,-0.045623424504569625,0.08170353385486916,0.07831629104062318,0.0792774808672706,0.0760644876867276,0.10524788095253998,-0.049377020956860064,-0.05655300695150512,-0.07938929530667992,0.13665787257402673,0.01846279224596924,-0.05190541719875646,-0.02164611718504718,-0.026467769651860675,0.03804478714780408,0.008648915774901914,0.020081766137681676,0.005131638547885013,-0.0434117927329637,-0.004527348085644013,-0.06420918199229123,0.03526728507808133,-0.006474754171308157,0.0016777428794486598,0.003000038357449169,-0.026235101463922463,0.060017434726456736,-0.05785638698664727,-0.007827309393156713,-0.08030453344037872,0.004147313073142269,-0.01208128096400213,-0.0061644555491419135,-0.05160209672393895,0.05265097614640781,0.03796257301027894,0.04582934737086943,0.03555387274832127,0.06367280461623047,0.08491002718770942,0.05338014510863727,0.08122672565132186,0.03870818488692877,0.07529641296018219,0.04088356023299057,0.07584428845113103,0.04449708654963123,0.05234022862634946,-0.0076644849018231605,-0.05209509167908523,-0.00912704201356812,-0.02070623931368034,0.04348370744557781,-0.009413567050866012,0.05422260385057138,-0.00987123280732705,0.049654428244125345,0.009839745249148475,-0.08653408731750131,-0.02046590964775873,-0.008847634677279633,-0.12618216389355222,-0.1102808888600742,-0.08428801977185577,-0.08830238979500078,-0.08591589389761904,-0.027436113438869585,-0.04449362370626824,-0.007784599843595426,-0.10818676530510006,-0.04939049363685781,0.009297679549887332,0.0035075182399201383,-0.20089836324740745,-0.12350040765617108,-0.11670416358708702,-0.05161754015916135,-0.10401109798499383,0.004767979697040691,-0.002313720884702075,0.01024995357577944,-0.10388624588421587,4.007877741131215,25.19206083488012,35.786183518824636,14.939148189993471,39.50411310266924,46.107507858556865,47.04394687626806,48.33832922920924,48.36797628803277,79.3575916726719,57.37244027484145,1.7601619796026904,20.224989418227725,0.0,21.985151397830414,12161.795777854544,8368.112283659617,4725.939348063859,568.0,67.0,98.0,138.0,192.0,243.0,307.0,387.0,485.0,543.1740607480007,43.0,5.3981627015177525,6.311734809152915,7.256297239690681,8.189522110748094,9.140454244512016,10.082177523096034,11.03735436608764,11.984384284912215,12.942621689883977,0.7009803921568626,1.0168823529411763,1.1267012489480224,0.6654745404947426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6547111394857343,1.0007497116493655,1.0319716378904076,0.6393714245519094,3.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,1.0,5.0,4.0,0.0,3.0,0.0,5.0,0.0,1.0,0.0,0.0,45.47689331276586,29.456468275348325,17.85651662206509,5.783244946364939,0.0,14.383611552215466,0.0,0.0,0.0,12.13273413692322,12.990104268152233,41.994660173016975,42.112051179613424,237.41004793306814,-1120.1486745495172,-67.92907929552337,-16.472774625728192,-70.00929215934482,529.0987013849673,2496.394799723599,50.951844817185126,36.71168823122939,48.007592302376906,0.5,0.6456942503664914,0.10742395179778191,141.2609632229896,0.06213134420586006,292.03720560967616,0.35430574963350864,7.0,0.11627906976744186,0.2575938274421762,0.6663955944181216,0.8864117960556666,0.9335428362653599,0.9480374289090701,0.952868959790307,0.0012999999999993017,,2.892857142857143,3.328524895300139,2.1297256301189615,2.8844215485678184,-12.42341872591249,3.007114443084455,2.8737057955204044,-4.708263886881712,131.75439999999995,54.12683738781914,0.0,0.0,5.733667477162185,62.43101960118041,13.716679505790452,51.579810155566804,0.0,17.248535499851716,4.465908118654584,0.0,5.872117789475416,0.0,7.490529402060711,0.0,9.212238569259263,0.0,10.991156851161252,47.66666666666666,4.36342757100796,0.0,0.0,0.0,0.0,0.0,-2.6548202502380427,0.0,69.148,0.0,39.73908207424436,0.0,0.0,0.0,0.0,0.0,-2.5085012273580993,76.61568492846553,10.470530430962235,0.0,17.248535499851716,86.73990246405225,20.68908471459793,0.0,68.83913015161656,18.19910120538483,0.0,0.0,0.0,45.2522687536425,44.52035748502993,49.7823439037901,466.99007924248406,,382.8117371114953,377.8563371625687,392.68115245075273,382.91124429455533,555.077981638201,381.56201825638493,383.02475634341664,468.2525296831627,49.7823439037901,466.99007924248417,,380.13861852124126,374.79399781651847,390.69327601279866,380.2456759769674,562.3705013504782,378.78601527810827,380.3688799097034,471.27064755936897,5.249452411697408,324.99624654125984,,265.63934068706646,262.3232353160755,272.44842086614403,265.70657369892695,389.60676999296163,264.80483628631987,265.78211639281045,325.6783173898733,1.2764703565074385,11.97410459596113,,9.815685566961418,9.688624029809453,10.068747498737249,9.818237033193727,14.23276875995387,9.78364149375346,9.821147598549144,12.006475120081095,2.624726205848704,233.495039621242,,191.48004437992347,189.01351537347153,196.3951845748666,191.529581674164,274.97354131228286,190.85811462673308,191.58606293569602,233.2811918362436,68.05098039215686,0.0,2.9008342117511594,0.0,0.0,6.003095557169348,53.69213165007618,70.17407137654772,-2.043298941296604,0.0,16.992219914907572,0.0,-4.826766751033268,0.0,-2.2407371425638924,0.0,0.0,43.47725686952984,494.9302922902657,106.63031398289957,275.8527724643408,366.92792319636936,386.43769820069633,392.4376982006962,394.4376982006963,2567.0,164.3427089696013,271.5784570277697,77.03195073061123,206.07,206.07,1.0,9.504162539777164,6.426264754702098,4.977026380792846,6.14427116955261,,6.13782711046415,6.138909975848551,6.13620833460824,6.137807158937169,6.101249949846178,6.138139483263925,6.137776008071403,6.119416895438765,0.1276160610459704,0.15754541460391308,,0.1573801823195936,0.1574079480986808,0.1573386752463651,0.1573796707419787,0.15644230640631226,0.15738819187856218,0.15737887200183084,0.1569081255240709,2.9658091535390283,3.176496683676392,,3.1754473418566396,3.1756237511711984,3.175183569461238,3.1754440912666424,3.1694702131345673,3.1754982336210404,3.175439016010283,3.172443366597471,372.84000000000134,636.960688735551,293.1928330516247,,293.2413632122897,292.95888804871583,293.6870108611352,293.246662835984,301.07483545130424,293.1647183926263,293.25403271807477,297.5279862781904,16.332325352193614,7.517764950041658,,7.519009313135633,7.511766360223483,7.5304361759265435,7.519145200922667,7.719867575674468,7.5170440613493925,7.519334172258327,7.628922725081805,7.817684493672427,7.04180707895993,,7.041972588273967,7.041008838480853,7.043491164489303,7.0419906606759906,7.068335409744767,7.041711183003782,7.042015792383922,7.056484845220166,16.992219914907572,39.73908207424436,53.69213165007618,2.373741684889566,-3.774704747880252,3.63515611968848,-5.122799847545572,0.5596546492817411,1.3221851690045994,475.92689178761964,181.9768789167109,-858.6037595792054,-52.06823361313727,-12.626525876164786,-53.66273497370034,405.558783864388,1913.5084557401833,39.05503484626719,28.139830231473276,36.798239533465065,4392.0,83.0,3.6944324224192266,1.6697095557032773,0.14433756729740643,0.05590169943749474,1.443807744383566,0.3636053980596706,0.10206207261596575,0.016137430609197572,0.0,0.0,0.0,0.0,0.0,0.0,0.24578353380607562,0.12346566799556523,0.8269233539906417,0.29179150791694597,28.386022388089113,21.210137267735792,18.427777117237813,12.411801735393011,17.69127965162145,10.159933060518698,16.226126896712213,7.80528042264082,13.79523893192518,5.750258572698187,11.44657049914659,4.115610263688243,8.784426980151771,2.7421892849645153,6.715815107007719,1.773982469630273,9.850050681266465,3.5619545265125305,16.743045198667406,5.073891706755671,28.40297042595831,7.033324613037861,138.95919454607937,52.64909537715869,32.204801271679024,29.62400765867116,26.97917876139153,26.85895926606064,220.0,275.0,74.34899699999998,36.33500300000002,0.36764705882352944,367.12,15.45138888888889,8.416666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,12.0,12.0,68.0,0.0,1.0,72.0,12.0,3.0,9.0,63.0,15.0,43.0,57.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,12.0,6.0,1.0,39.0,12.0,0.0,1.0,11.0,0.0,5.0,5.0,0.0,0.0,0.0,0.0,2.0,3.970291913552122,8.414630840574542,4.584967478670572,5.204006687076795,5.784594117392615,6.3707567809121235,6.7737952230660605,7.236519312160031,7.649930690609437,8.091235155309176 +5215,Nc1ccc(S(=O)(=O)Nc2ncccn2)cc1,0,35.18518518518518,6.6316000000000015,3.5555555555555554,9.57201646090535,164.4560263402811,139.9024314074074,1.735982853647778,6.693148148148148,6.840309531067419,8.105319444444447,242.5489609401737,38.107142857142854,6.624385714285714,4.107142857142857,6.976190476190475,150.37437648622145,148.23718478571436,2.0004652524999997,6.787092857142858,3.305500440917108,8.099384857142857,285.0271420778823,30.954545454545453,6.787629545454546,3.7045454545454546,8.333333333333334,155.6599946326427,118.5236941363636,1.774518314882931,6.888161363636365,5.280162738496073,8.207939954545457,249.952032428107,26.22222222222222,6.5157703703703715,3.1666666666666665,5.34567901234568,158.86089093783812,97.77721012962964,1.5331298900258514,6.617609259259258,4.03292181069959,8.055906444444444,209.3094986627956,23.264150943396228,6.712792452830189,2.69811320754717,5.861635220125787,167.5326357066095,85.37397320754721,1.3108976624140187,6.756800000000002,5.0091427905893315,8.262022452830191,177.6491041632121,22.953488372093023,6.468925581395351,2.744186046511628,5.767441860465116,163.9352123513756,85.39014499999999,1.322266685174186,6.53912093023256,4.223083548664945,8.066091534883721,185.4566342422802,23.0,6.839849999999998,2.8529411764705883,6.117647058823529,164.80840298677467,83.78747973529413,1.3973558973102065,6.892523529411764,5.659313725490198,8.343364588235294,202.4788662601072,15.903225806451612,6.564612903225806,2.4838709677419355,3.4193548387096775,165.3044392795839,54.02768041935482,1.3099746066451619,6.6124193548387105,3.9139784946236555,8.077190322580647,181.85829384787021,12.76923076923077,5.764992307692308,2.3076923076923075,2.769230769230769,160.8799665425421,44.04016146153845,1.2243422218882307,5.848969230769232,2.769230769230769,7.3278064615384615,152.82734804667416,12.002743484224968,0.1536323731138545,0.024391290364380126,0.6529492455418384,4.185032769394909,1.8274651858180102,53.97914447187929,0.3073443544366666,0.1395481481481481,2.565512211139148,0.09411335253772289,46.76495431682729,2.823976092494612,-0.028984224965706473,-0.01863167478309727,0.07324123064863806,-0.45751954188168176,-0.26014991720674474,12.117325996374683,-0.027404789194841257,-0.01702142857142857,-0.8225764108473804,-8.80139133842938e-05,2.944448281448075,-0.029679511160992576,0.05897831712183555,0.009723791761527515,-0.0915014340940267,0.4977206911363287,0.25008148348290693,-0.10772286076817637,-0.0038760090286843424,0.047725,0.7147560348784119,0.03564842018954981,-4.68214459517895,-0.9725651577503429,-0.027240877914951993,-0.005506883911571781,-0.08299039780521263,-0.5714067977442464,-0.5815783888319541,-4.4728951790123475,-0.060986029073839494,-0.02179814814814816,-0.27945458668036516,-0.017778270233196156,-7.908673176988873,-1.065636565985972,0.0009381370189196292,0.0004037446911005878,0.039573465848797784,0.32975875168592,-0.004718399320992712,-4.660584631208428,0.0025672418766394096,-0.0016000000000000044,0.007740830706175861,-0.003055953516059738,-2.883730003021425,0.7870928637509172,-0.021121262002743484,-0.0011569887528699834,-0.058634000063801935,0.7009850313515735,-0.2582743737398884,4.273495391169809,0.00974946514529717,-0.012693023255813986,-0.3315369149031093,-0.02100653169362299,9.774001285203207,-4.231501654159607,-0.011466904704268631,0.010729626878498185,-0.10719761155491005,-0.7829509490124353,0.15063059315118238,-18.59193383026709,-0.035430587825937915,-0.015711764705882352,0.1554386654010732,-0.012926131404825302,-2.6310887237076197,-5.0242488605690525,-0.10206941015089159,-0.015148790466040826,0.0005752466923315242,-2.8734703108790463,0.2892337016870672,-23.46221675981238,0.017998952916272386,-0.0997354838709677,-1.259743293963199,-0.05332572649232264,-10.896997740509873,1.5072280257465447,0.05739640181492049,0.012299159430168096,-0.03186662445921705,0.47910145029486617,0.07217181038278372,6.437625137807326,-0.035271875386042734,0.04958461538461541,0.4702529845197377,0.03521742524005488,-6.63173050404312,,,0.4764705882352942,1.588235294117647,0.9411764705882353,0.058823529411764705,0.6470588235294118,0.29411764705882354,0.47431793315386545,0.01981745498519667,0.029935102044020195,1.0319182173265107,0.3127332609839229,0.1624030229940037,1.506236150480376,0.4751362839779266,2.00108288288952,1.2053713942830377,0.45901683386550546,0.20511203325284144,0.0,0.7957114886064826,9.261201724444444,950.0,179.05320000000003,96.0,258.44444444444446,4440.31271118759,3777.3656479999995,46.871537048490005,180.715,184.6883573388203,218.84362500000006,6548.8219453846905,1067.0,185.4828,115.0,195.33333333333331,4210.4825416142,4150.641174000002,56.01302706999999,190.03860000000003,92.55401234567903,226.782776,7980.759978180704,1362.0,298.6557,163.0,366.6666666666667,6849.039763836279,5215.042541999998,78.07880585484897,303.07910000000004,232.3271604938272,361.1493580000001,10997.889426836708,1416.0,351.8516000000001,171.0,288.6666666666667,8578.488110643259,5279.969347,82.78901406139597,357.35089999999997,217.77777777777786,435.018948,11302.712927790963,1233.0,355.778,143.0,310.6666666666667,8879.229692450304,4524.820580000002,69.477576107943,358.1104000000001,265.4845679012346,437.8871900000001,9415.402520650241,987.0,278.1638000000001,118.0,248.0,7049.214131109151,3671.776235,56.85746746249,281.1822000000001,181.59259259259264,346.84193600000003,7974.635272418048,782.0,232.55489999999995,97.0,208.0,5603.4857015503385,2848.774311,47.51010050854702,234.34579999999997,192.4166666666667,283.674396,6884.281452843645,493.0,203.503,77.0,106.0,5124.437617667101,1674.8580929999996,40.609212806000016,204.985,121.33333333333333,250.39290000000003,5637.607109283977,332.0,149.8898,60.0,72.0,4182.879130106095,1145.0441979999998,31.832897769093996,152.0732,72.0,190.522968,3973.511049213528,324.07407407407413,4.148074074074072,0.6585648398382634,17.629629629629637,112.99588477366254,49.34156001708627,1457.4369007407408,8.298297569789998,3.7677999999999985,69.268829700757,2.541060518518518,1262.653766554337,79.07133058984914,-0.8115582990397813,-0.5216868939267235,2.0507544581618657,-12.81054717268709,-7.284197681788853,339.2851278984911,-0.7673340974555551,-0.47659999999999997,-23.03213950372665,-0.0024643895747602264,82.4445518805461,-1.3058984910836733,2.5950459533607644,0.42784683750721064,-4.026063100137175,21.899710409998463,11.003585273247905,-4.73980587379976,-0.17054439726211107,2.0999,31.449265534650124,1.5685304883401918,-206.0143621878738,-52.51851851851852,-1.4710074074074075,-0.2973717312248762,-4.481481481481482,-30.85596707818931,-31.40523299692552,-241.53633966666675,-3.2932455699873326,-1.1771000000000007,-15.09054768073972,-0.9600265925925924,-427.0683515573991,-56.47873799725651,0.04972126200274035,0.021398468628331155,2.0973936899862826,17.47721383935376,-0.25007516401261376,-247.01098545404668,0.1360638194618887,-0.08480000000000024,0.4102640274273206,-0.16196553635116612,-152.8376901601355,33.84499314128944,-0.9082142661179698,-0.04975051637340929,-2.5212620027434833,30.142356348117662,-11.105798070815199,183.76030182030178,0.41922700124777834,-0.5458000000000014,-14.2560873408337,-0.9032808628257886,420.2820552637379,-143.87105624142663,-0.3898747599451335,0.3648073138689383,-3.6447187928669416,-26.620332266422803,5.121440167140201,-632.1257502290811,-1.204639986081889,-0.5342,5.284914623636489,-0.43948846776406025,-89.45701660605907,-155.75171467764062,-3.1641517146776392,-0.4696125044472656,0.01783264746227725,-89.07757963725044,8.966244752299083,-727.3287195541839,0.557967540404444,-3.0917999999999988,-39.05204211285917,-1.6530975212620018,-337.8069299558061,39.18792866941016,1.4923064471879328,0.3197781451843705,-0.8285322359396433,12.45663770766652,1.8764670699523769,167.37825358299048,-0.917068760037111,1.2892000000000006,12.22657759751318,0.9156530562414269,-172.42499310512113,0.7237128599667269,0.5620276939315435,0.4487398237569308,0.3452814029274037,0.3061414745821756,0.19717339478698384,0.19519125724882969,0.11468608841916736,0.12775004364531692,0.06282022937390593,0.08279728700677647,0.03611939647372979,0.056666746671632504,0.023226433920023482,0.03362973117273195,0.013083676716320483,16.013121854050084,5.699276171911721,3.5807427619325467,2.1877299646275365,0.46333288040732523,-0.3641616608830384,4.043805980294698,0.9716810571756423,6.0175477402208575,0.6442377915901822,14.559165670280589,10.31977276166868,32.06654356622263,11.711043610436796,2.9545634319290937,0.7610560353577954,3.5367686800907245,2.2413772103837157,7.01420378241729,0.2989435126894509,3.7681124677588995,2.440357692238193,24.441828972785494,14.702146932316381,0.3721194511645804,0.6330484420506689,0.807894247713784,0.8910650256493329,0.8910650256493329,0.8910650256493329,1.8372408138595144,595.9628413066204,0.0,2.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,2.831057848064712,1.4820745344816104,0.5781348323865476,0.14814814814814703,0.14814814814814703,0.14814814814814703,59.09724989825597,723.1251422506723,54.78610501171045,26.782412675950823,54.065240421631074,,10.0,268.0,10.023291153407584,8.417796984328938,10.84382275650427,5.687386274683562,0.0,36.6591554170726,6.06636706846161,0.0,14.690051906346504,5.733667477162185,8.100000000000001,27.0,16.0,1.0,11.0,0.0,0.0235294117647058,5.0,0.2390022675736958,0.08634920634920618,-0.15265306122448963,0.08999999999999986,0.1845882352941174,0.0,0.6777777777777778,0.8999999999999997,0.438775510204082,0.5914285714285716,0.8099999999999998,8.063404863615713,0.33689673474834336,0.5088967347483433,17.54260969455068,5.3164654367266895,2.760851390898063,25.606014558166393,8.077316827624752,0.5294117647058826,0.1316872427983539,0.10288065843621398,0.18518518518518515,0.0,0.4317664144800304,-0.7209800310111152,-0.07236075070721447,-0.026702964111522783,-0.06554363918282866,0.5682335855199695,0.9488581195068684,0.0541511390358275,0.035142893315069194,0.059303632469179274,-2.733430537748493,0.8567265306122447,0.8392139017788585,1.8292088970001408,1.1060924369747893,0.7852512408561648,1.3612395529984767,0.8352958188024505,1.2931881306433435,0.7524834499859715,0.9052757283691443,0.6449335912195209,0.8486134196095322,0.8998363636363634,0.4933532701070962,0.5513892203242985,1.256923223834988,0.7542064243572003,0.9763865828539421,0.8886758507822838,1.0078338137207998,0.5097410352798112,0.5811002687204574,0.5142698167750086,0.9762943633300564,1.1759428571428567,1.100771442347185,1.247738216968566,1.2426470588235288,1.0617124335348533,1.3404212192970066,1.1617045826659906,1.3017681732732873,1.072049609458708,1.0703133860140326,1.1230065446281876,1.1246320602942057,1.1996442048517517,1.2299529270569862,1.033673916788438,0.9043523069605196,1.0221703954032026,0.9513768500255588,1.1885682608003143,1.0194464808178665,1.2322219963203593,1.3234615604630597,1.2999795604139925,0.9925450578708644,1.062562126245847,1.2973894259739693,0.9847762255474056,1.2004103967168256,0.9599261112532125,1.023533217183389,1.042363326613952,1.0402669029478282,1.2500558588874888,1.46120156547948,1.437475003103735,0.8010460404907345,1.3615260504201676,1.2978198665312306,0.7016070071178511,1.192844784972812,1.2835796274952551,0.9141432947071602,1.3454439920624621,1.096684877981837,1.307365352850626,1.3134680809506603,1.4075235182756254,0.9379440229897755,1.0015631336405528,1.741181150124225,1.438527174222673,0.5708864190837623,1.6626354855157088,0.7435451307773919,1.045265859714398,0.5789235239588205,1.779414358340368,1.5918707673561387,1.6700269249569393,1.0975031873753762,0.5399999999999999,0.15187771210200177,0.13752882960706259,0.6806722689075627,0.6637409862335204,0.7755812504892665,0.5814742734792006,0.8489656986500769,0.22758638993577116,0.10907583668145883,0.06533177733869465,1.2480791930594077,4.5,0.012345679012345678,2.2222222222222228,1.1875,0.8933333333333335,0.5694444444444445,0.12081632653061225,0.1111111111111111,0.08163265306122447,0.030000000000000006,3590.612629225382,3857.8864528243007,1990.783178300524,1879.5132164423464,10.000424108119784,0.352971600608279,6.470558403915123,0.5455272147870351,1.0,0.0,1.9238296540987558,3.272812967681858,4.176752669776921,4.606739354015321,4.606739354015321,4.606739354015321,0.25,0.012345679012345678,0.08888888888888892,0.05163043478260869,0.047017543859649125,0.03349673202614379,0.008054421768707484,0.012345679012345678,0.013605442176870746,0.010000000000000002,0.52738482152756,13.432098765432098,5.76,3.728894173602854,98.57832206048985,1.0,3.7519629609548115,65.21307501835986,,37.39627943395746,46.6164702129589,46.69833827008415,37.39880032405608,57.27473658428823,46.744484220896965,46.35550974787262,57.59197817262613,0.2352775510204082,-0.18865961892176675,-0.7638658924870197,0.11216986794717883,-0.10932280990187611,-0.14235560777060519,0.22448162368870564,-0.08916639853389097,-0.12197530957815478,-0.32062853073778086,-0.0009351905017836412,0.06296271052677117,-0.0024727272727272666,0.383892508632459,0.3986583578098712,-0.14013559969442316,0.11892874406531624,0.13684609995509459,-0.0019956385345139206,-0.01261129079721898,0.34199665587345407,0.27860168888498227,0.3787817480549433,-0.10012079908082339,-0.08102857142857141,-0.1773120948588369,-0.22577255361667012,-0.12710084033613442,-0.13653580013110936,-0.3182432110582878,-0.08286339516445143,-0.19842898752970808,-0.156205212590902,-0.10892740462002351,-0.18890274072502303,-0.1691153833575567,-0.08878274932614554,0.006106375888787391,0.016552822137290337,0.06060726177263355,0.07879478366273296,-0.002581936639674294,-0.08634046865334043,0.00835298205280173,-0.011465576729125786,0.003017265196620814,-0.032470987736143375,-0.0616643391434637,0.06557607973421926,-0.13747924070072687,-0.04743450369315411,-0.08979871018174705,0.1674980985759223,-0.14132929904450112,0.07916937982216647,0.031721634071226155,-0.09095802004007053,-0.12922835193050947,-0.223204583910695,0.20900269075396607,-0.35254453781512607,-0.07463859648754297,0.4398958283144879,-0.16417449332674242,-0.18708358862519445,0.08242597140571907,-0.3444280937048318,-0.11527977434587619,-0.11259027736579004,0.06058777063160216,-0.13734641319513294,-0.05626197570689988,-0.4185917050691244,-0.6643743638279257,-0.6210737619754384,0.0008809975603144559,-0.6866064065000155,0.15827043050212766,-0.43465336454221026,0.058562822633468514,-0.7147030268369151,-0.4910299348775437,-0.5666116980685435,-0.2330163238626075,0.12557362637362637,0.3735957510230278,0.504243902082737,-0.048804137039431136,0.11447973688486478,0.03949285105011627,0.11926134066761727,-0.11476337494694763,0.3553226326728108,0.18329789368296723,0.3742022177558587,-0.1418098360390538,5.72915340683671,7.153374515887005,0.7937005259840998,22.723395927059027,35.77816644567777,42.383370040953594,42.816796618665904,42.816796618665904,42.816796618665904,34.01840900912184,20.49131370281164,7.803286175713593,3.4869045652983046,0.0,13.527095306310203,2168.8332467947753,1715.0835389771769,777.2601942203712,20.0,25.0,29.0,34.0,40.0,36.0,30.0,28.0,24.0,250.05244656,18.0,4.465908118654584,5.272999558563747,6.137727054086234,6.966967138613983,7.837159650001675,8.674025985443025,9.547740749170218,10.388102662282032,11.264117891900502,0.8024691358024691,1.018074074074074,1.1325266973677761,0.7717493532163416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7157225548902197,1.0039215686274512,1.0307383129670094,0.6799128238761862,7.0,2.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.733667477162185,0.0,0.0,5.948339280986494,10.023291153407584,0.0,23.10784889067544,0.0,0.0,0.0,30.33183534230805,18.081073417909714,4.895483475517775,186.97689341513953,-312.2211498899348,-31.335898112214302,-11.563746292219806,-28.38374089908498,246.0741433133955,410.90399236073756,23.450206899496145,15.21866638373102,25.681499522546098,0.5,0.6976403753693734,0.2387822538392445,80.00414026306129,0.15793350715281415,1.9126078851237647,0.30235962463062654,5.0,0.16666666666666666,0.4046004565246634,0.688305026394995,0.8784125108904266,0.9688429751322739,0.9688429751322739,0.9688429751322739,0.8596000000000001,,1.6964285714285716,1.289509417266132,1.1603662183174015,1.693890574559076,-3.8131778703710935,1.1738066095471238,1.129397677045838,-1.9177085939182985,63.69490000000001,8.417796984328938,0.0,9.967957041894417,0.0,4.895483475517775,10.455762341614273,42.725522485534206,0.0,0.0,3.6109179126442243,0.0,4.919980925828125,0.0,6.428105272684596,0.0,8.017307507688582,0.0,9.645817254152318,21.666666666666668,10.365799221688471,7.5618024061476445,0.0,0.0,0.0,0.0,0.642027011421854,0.0,27.487999999999996,0.0,23.76190098261527,0.0,0.0,-3.6606481481481468,0.0,0.0,0.0,30.578220828929958,10.455762341614273,11.635725555670057,0.0,18.385754026223353,10.023291153407584,0.0,0.0,47.62100596105198,0.0,0.0,0.0,20.837232536841224,19.324508982035933,21.13906916070555,130.4261500367198,,75.31304160346156,93.0812334356512,93.26016286742508,75.31903522728271,116.40950536084027,93.35087354655309,92.57814918079866,115.87405950455336,21.13906916070555,130.42615003671983,,74.01577269589853,91.94343100865166,92.23631032185091,74.02370714085521,118.36265103894755,92.31516183224684,91.5816218186994,117.10166493917058,4.7404784521184755,98.10892978524487,,55.96170522898062,72.08864773319979,72.25608162110473,55.964777002872964,88.64782099791518,72.1842810761823,71.41633109162021,89.4938522412614,1.243474656512091,7.672126472748224,,4.43017891785068,5.4753666726853645,5.485891933377946,4.4305314839578065,6.847617962402369,5.491227855679593,5.44577348122345,6.816121147326668,2.3702392260592378,65.21307501835986,,37.39627943395746,46.6164702129589,46.69833827008415,37.39880032405608,57.27473658428823,46.744484220896965,46.35550974787262,57.59197817262613,27.10588235294118,0.0,0.0,0.0,0.0,5.482601141543241,0.0,27.829934450109253,0.0,2.263184051398337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.35764624465703,302.1138878173915,51.943400660666406,88.36595012741016,112.77232208397686,124.38196255841368,124.38196255841368,124.38196255841368,301.0,105.554748808716,130.93714891114354,49.62212887299785,106.35,97.97,1.0,7.4608857972285545,5.169925001442312,3.68049123172689,4.063024141271126,,4.036268106129947,4.06667373569085,4.069780577773509,4.036248998831552,4.053066728591511,4.065652251125382,4.063581807509481,4.0630503452420115,0.21649948421922882,0.2390014200747721,,0.2374275356547028,0.23921610209946179,0.23939885751608875,0.23742641169597367,0.2384156899171477,0.2391560147720813,0.23903422397114593,0.2390029614848242,1.833674481216736,1.9325558097855564,,1.9259487800216635,1.9334536524163963,1.934217336968404,1.9259440461082764,1.9301020625726912,1.9332024365717544,1.9326930543481067,1.9325622591408826,172.2499999999998,95.3399156951147,79.83374612714726,,80.28223310531749,78.87147812317235,78.82914523048679,80.28330175919824,79.82526074903207,78.93263731838509,79.03020189311914,79.26512305016324,5.608230335006747,4.696102713361604,,4.722484300312793,4.639498713127786,4.637008542969811,4.722547162305779,4.695603573472475,4.643096312846182,4.648835405477596,4.662654297068426,5.088076816583317,4.910574549926618,,4.9161765910623,4.898447919556406,4.897911042874473,4.916189902186405,4.910468256166069,4.899223047608089,4.900458332914779,4.903426472745776,26.025085034013607,7.672129314688839,0.0,5.982518837016492,0.03178240740740779,7.46136506530987,2.904434156378601,0.0,-3.6606481481481468,199.2611603725551,80.97053753770697,-135.2076926484116,-13.570043164314148,-5.00769232031154,-12.291608422582872,106.56266287395202,177.94239988771145,10.15513640932545,6.5904592551004235,11.121399992981965,536.0,23.0,1.6876136627761005,0.8044733353288007,0.2041241452319315,0.05103103630798288,0.34846171252933794,0.11735402420532191,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.0470227867507653,0.19716878364870322,0.05968070283597195,12.303118619434356,9.55447079683624,8.077316827624754,6.215065252693267,7.653536864554391,4.929334869674596,5.660546460216061,3.3258965641558533,4.343501483940775,2.1358877987128015,3.3118914802710586,1.4447758589491915,2.04000288017877,0.8361516211208454,1.0088919351819585,0.39251030148961447,2.8192718153982885,1.3170716823783553,3.9539361509883735,1.457118282886004,5.231206374456328,1.6331602055817331,55.84642909034924,37.01810491811854,26.102699925602916,24.730494456303457,24.730494456303457,24.730494456303457,86.0,97.0,32.27192999999999,18.968069999999997,0.5185185185185185,52.07,5.895833333333334,3.708333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,27.0,0.0,0.0,28.0,12.0,2.0,8.0,20.0,14.0,18.0,14.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,5.0,2.0,1.0,17.0,7.0,0.0,4.0,2.0,0.0,2.0,3.0,1.0,0.0,0.0,1.0,2.0,3.295836866004329,5.768125664217802,3.9318256327243257,4.356708826689592,4.844187086458591,5.326661839557179,5.340238756511593,5.395330640718035,5.454786784594254,5.5575517380066 +46846503,CN(C(=O)CN1C(=O)COc2cc(Cl)c(Cl)cc21)[C@@H](CN1CCCC1)c1ccc(-c2cccc(C(N)=O)c2)cc1,0,30.571428571428573,6.22024857142857,3.4857142857142858,7.617283950617285,161.06349276444675,124.0066678571428,1.627471473506714,6.350671428571427,4.470786247740981,7.801915114285715,235.4968728996878,27.27027027027027,6.363621621621623,4.1891891891891895,7.246246246246246,145.96621518590277,104.82633051351351,1.8958700713513514,6.534047297297297,3.044850405961517,7.789279513513511,276.6115823354858,23.79230769230769,6.322292307692307,3.8,5.72991452991453,154.2341589144419,90.20549488461539,1.6596149734256846,6.456602307692308,2.973987021209243,7.808273692307692,236.68837107503236,21.614942528735632,6.22783735632184,3.3045977011494254,4.612033489428125,156.40949517688455,80.60830959770115,1.5173921284441492,6.360520689655173,2.967167755476019,7.783331362068965,208.0466505252617,18.186528497409327,6.082073056994819,2.9274611398963732,3.983304548071388,157.37828706814875,66.2187739896373,1.376621532277047,6.200703626943005,2.831147785667072,7.658855730569947,186.67401197896754,17.74641148325359,6.05993827751196,2.8038277511961724,3.860180754917597,162.12968140266486,65.4470381674641,1.2947893231490333,6.155282775119618,2.955677634040208,7.6459555502392345,176.07420393791887,18.385,6.1216745,2.83,3.59,158.67737551470543,66.70435287,1.3835072950373501,6.243271000000001,2.9846810699588486,7.71182365,186.3141928794772,16.267942583732058,6.023622488038279,2.6411483253588517,3.0111642743221685,159.17297922001137,57.73768859808611,1.284888181782603,6.138462679425837,2.778393092720578,7.640433779904305,169.31575747282386,15.014563106796116,5.905354854368931,2.679611650485437,3.01294498381877,163.197497192424,54.05231428640777,1.2128629636550485,5.9938004854368945,2.459072475927924,7.527852504854371,159.18973568074023,11.711020408163268,0.11652538775510199,0.01896947186753848,0.6440816326530612,3.8672209624590574,1.472193391421713,54.999469482448966,0.25282275640383656,0.1192290612244898,1.5633703174914224,0.08288484408163266,51.01147676130771,0.2372421400992837,-0.002363688913403107,-0.009399717340187146,0.19684500827357967,1.0637099684718738,-0.2208193657547305,1.1468740326089246,-0.007659667739612717,-0.0009877484831769202,-0.062288018260975325,-0.0037697691781577686,0.3435186519845714,0.4935949764521195,0.0020819089481947405,-0.0012828672636533453,-0.06232339089481948,-0.025462720700815757,0.14588466298083794,2.391685113814751,0.025368883836401755,0.0017286530612245917,0.11178404118145448,0.0008014350392464461,3.9017810972941533,0.19160684963640673,0.0015632821956369223,0.002827991358585895,-0.06378606615059819,-0.2099807994717682,0.09344615898469522,0.7741935489139087,0.0006804898324333962,0.0002101341778091249,0.006976195678277606,0.00380683391508326,-2.849524300853252,-0.08111663318177016,-0.003849577244369257,-0.002033592711531717,0.004474992069366606,0.12111872190826056,-0.2775074775947668,-0.48753926394416747,-0.03086068697283154,-0.0012969812837052043,-0.10041501480392959,-0.0010192723569842294,-4.745088165546834,1.8639625036617515,0.011878098232594447,-0.00014607435213051975,-0.02466946587247339,0.2636618000026521,0.10203765091922494,8.781816856853824,0.029884460779066875,0.01553923679328185,0.18023423572976477,0.009083242863001677,7.470478057928414,-0.6025918367346942,-0.0004720877551020318,0.001122327070595687,-0.05979591836734695,-0.3285084404132024,-0.018062669351724993,-2.91213254444898,-0.01888865062566887,-0.0013481897959183573,-0.024177152250932393,0.001110462061224492,-4.030185722611829,-0.6950258763792603,-0.006824526511082923,-0.0006232715378614607,0.038488428864368714,-0.1992885050529161,-0.2572993062599568,-3.4324219784161674,-0.04202792044878889,-0.004625165120593726,-0.19043562698038397,-0.0006525256947563508,-7.534148245283054,1.7462611452347923,0.0024606871408756927,-0.0003855262366449472,0.04676441450366556,0.16279564684557743,0.10453232260002432,8.280057282322176,0.03808799010201969,0.007257249455121731,-0.04448637630235548,0.0034051941985338277,8.173268427529706,,,0.48404761904761895,1.24375,0.5875,0.025,0.65625,-0.06875,1.0053275494241727,0.017694896719211338,0.028444896719211337,1.1507699751621145,0.24750660429034274,0.2326538380497733,2.1560975245862872,0.48016044234011607,2.0441718859147424,1.5657072487364179,0.20727308175238965,0.18283276394817372,0.08835879147776096,0.47846463717832427,8.288063011428585,2140.0,435.41739999999993,244.0,533.2098765432099,11274.444493511272,8680.466749999996,113.92300314546998,444.5469999999999,312.95503734186866,546.1340580000001,16484.781102978144,2018.0,470.9080000000001,310.0,536.2222222222222,10801.499923756804,7757.148458,140.29438528,483.5195,225.31893004115227,576.4066839999998,20469.257092825952,3093.0,821.8979999999999,494.0,744.8888888888889,20050.440658877447,11726.714335,215.74994654533901,839.3583000000001,386.6183127572016,1015.07558,30769.488239754206,3761.0,1083.6437,575.0,802.4938271604938,27215.25216077791,14025.84587,264.02623034928195,1106.7306,516.2871894528273,1354.2996569999998,36200.11719139553,3510.0,1173.8401000000001,565.0,768.7777777777778,30374.009404152708,12780.22338,265.68795572947005,1196.7358,546.4115226337449,1478.1591559999997,36028.08431194074,3709.0,1266.5270999999996,586.0,806.7777777777778,33885.103413156954,13678.430976999998,270.610968538148,1286.4541000000002,617.7366255144035,1598.00471,36799.508623025045,3677.0,1224.3349,566.0,718.0,31735.475102941084,13340.870573999999,276.70145900747,1248.6542000000002,596.9362139917697,1542.36473,37262.83857589544,3400.0,1258.9371000000003,552.0,629.3333333333333,33267.152656982376,12067.176916999997,268.541629992564,1282.9387,580.6841563786008,1596.8506599999998,35386.99331182019,3093.0,1216.5031,552.0,620.6666666666666,33618.684421639344,11134.776743,249.84977051293998,1234.7229000000002,506.5689300411523,1550.7376160000003,32793.085550232485,819.7714285714287,8.15677714285714,1.3278630307276935,45.08571428571428,270.705467372134,103.0535373995199,3849.9628637714277,17.69759294826856,8.346034285714286,109.43592222439958,5.801939085714286,3570.80337329154,17.555918367346994,-0.17491297959182991,-0.6955790831738488,14.566530612244897,78.71453766691866,-16.340633065850056,84.86867841306042,-0.5668154127313411,-0.0730933877550921,-4.609313351312174,-0.2789629191836749,25.420380246858283,64.16734693877554,0.27064816326531627,-0.16677274427493488,-8.102040816326532,-3.3101536911060485,18.965006187508934,310.9190647959176,3.297954898732228,0.22472489795919692,14.531925353589083,0.104186555102038,507.23154264823995,33.33959183673477,0.27201110204082446,0.49207049639394573,-11.098775510204085,-36.53665910808767,16.259631663336968,134.70967751102012,0.11840523084341095,0.03656334693878773,1.2138580480203034,0.6623891012244872,-495.81722834846585,-15.655510204081642,-0.7429684081632666,-0.39248339332562143,0.8636734693877549,23.37591332829429,-53.55894317578999,-94.09507794122432,-5.956112585756487,-0.2503173877551044,-19.38009785715841,-0.19671956489795628,-915.802015950539,389.56816326530605,2.4825225306122394,-0.03052953959527863,-5.155918367346938,55.10531620055429,21.32586904211801,1835.3997230824493,6.245852302824977,3.2477004897959065,37.668955267520836,1.8983977583673504,1561.3299141070386,-120.51836734693883,-0.09441755102040636,0.22446541411913742,-11.95918367346939,-65.70168808264047,-3.6125338703449983,-582.426508889796,-3.7777301251337745,-0.26963795918367145,-4.835430450186479,0.2220924122448984,-806.0371445223659,-145.2604081632654,-1.426326040816331,-0.13026375141304528,8.04408163265306,-41.65129755605946,-53.77555500833097,-717.376193488979,-8.783835373796878,-0.9666595102040887,-39.801046038900246,-0.13637787020407732,-1574.6369832641583,359.7297959183672,0.5069015510203927,-0.07941840474885913,9.633469387755104,33.53590325018895,21.53365845560501,1705.6918001583683,7.846125961016057,1.4949933877550765,-9.164193518285229,0.7014700048979685,1683.6932960711194,0.7097044024800558,0.590509287124801,0.4365094930364691,0.31523521287331263,0.28247904065088253,0.17320985388120552,0.18158263844220865,0.09794034589666388,0.1120880943224114,0.05152242871946837,0.07212364282483005,0.027202449184125847,0.04640094869820561,0.015452575557059966,0.029904968489651473,0.008674194515846013,17.002143256769646,5.673710680726904,3.5478338045361655,2.173515051955774,0.4492039721674921,-0.5112390879089461,3.2222254088791957,0.9725357865859893,6.024780369377164,0.7729040739049577,14.546603332695323,10.934116228092133,35.45153240515048,11.684835632488813,2.217293675414837,0.7508602056005014,3.4934084817949937,2.223462979345603,7.01045485043028,1.249203456279559,3.706226400993272,2.419453474879217,22.457544029320655,14.70177603222237,0.2592849810265947,0.585294316829785,0.7681997928399632,0.8765254528200709,0.9076477311005697,0.9076477311005697,1.2181391688154222,1440.1212955575306,0.0,3.0,5.0,0.0,14.0,3.0,4.0,0.0,0.0,4.4630490819501585,2.3680267775742756,1.1926277636480576,0.4964983928880482,0.296498392888048,0.296498392888048,82.24380570074175,2849.079196696265,89.39845265473423,40.70113138137522,85.00387422533692,,18.0,1195.0,5.907179729351506,14.383611552215466,36.03047197201779,28.567739319318363,42.621510532768156,4.899909730850478,42.279417055835715,30.33183534230805,4.899909730850478,33.67241021142727,19.361904761904757,49.75,23.5,1.0,26.25,0.0,0.015952380952381072,-2.75,0.1719727891156465,0.06439703153988896,-0.10757575757575755,0.026235827664399247,0.14516955791829877,0.0,0.6148299319727878,0.8509523809523808,0.4428571428571413,0.5504329004328988,0.8247165532879815,40.21310197696691,0.7077958687684536,1.1377958687684535,46.030799006484585,9.90026417161371,9.306153521990932,86.2439009834515,19.206417693604642,0.5688304420817012,0.17191342843089036,0.0,0.3718642400393508,0.3,0.4517711669118322,-1.5095815623447058,-0.06618316572858143,-0.02156545089063865,-0.05806082932095021,0.5482288330881676,1.8318923361861312,0.038665655764773994,0.026169890516944728,0.04163391673150297,-6.954372918329693,0.5937383431109905,0.7144957291785242,1.5622935775244804,0.7858904531908335,0.5352085618747943,1.3374223430139471,0.5989338392090295,0.9507767340729333,0.6673634834028032,0.5804983993835654,0.6895362018520768,0.9050442211303854,0.6804804877264098,0.8721784670610045,1.2483457811091634,1.3008555133079849,0.9956790219357814,1.0443594531933733,0.6831562659862972,0.8091531424909647,0.8283139395071254,0.5172873005656723,0.8011799570832678,0.8415919998911369,0.8494377863347707,0.9457387442746391,0.8759266302003255,1.2093822385385256,1.051677184406038,0.9925737518265392,0.8531812400835004,0.9513620644786811,0.9319711212244062,0.8878240296826136,0.8873442392413728,1.0068521072156247,0.8046284317485908,0.9611102252515896,1.0199020650179735,0.9594850174353318,0.9152741550056255,1.1960964850506521,0.8106821441467452,1.0702840679241512,0.9108853749811252,1.0459662832009995,0.8855954409725137,1.0699598202024962,0.6330857942163495,0.884517039860985,1.0151386359069074,1.0507895646478798,0.9576464155668698,0.9426846432805779,0.637503065811284,0.8051741972420405,0.8167340269683754,0.8109223404525004,0.7720733288073625,0.8310710750181658,0.9445956189878711,0.9703321374828713,0.8821903276568379,1.1019011406844108,1.073368297608965,1.0227732616321645,0.947894708399884,1.0365384959586956,0.9608516422855402,1.082206919223028,0.9225291309381349,1.052730937972598,0.931506006375583,1.0273544671678256,0.8227559694652388,0.8457574544726838,1.0019799460152166,1.1377334676712412,0.9374577473557983,1.1341727364543415,0.990183278142317,1.2930762813635486,0.9431445312982887,1.141858204493242,0.6398539425759218,0.9145426558086619,0.863635043054922,0.9026495994684189,0.9626946539004786,0.8885764425928003,0.6446872777251863,0.788360223236944,0.8498244597209778,0.8574999817726839,0.7890257535614422,0.8505115214617248,8.5,0.3852749719416386,5.555555555555555,2.7222222222222223,2.8083333333333336,1.8816666666666668,1.183764172335601,0.7952097505668934,0.6155045351473922,0.38405092592592605,9136.075331458838,10130.496913207699,3907.099741433105,3601.928215559071,15.894759497374439,0.4879306449725609,8.139219244136791,0.9528604673998021,0.0,0.3,1.6662339349948077,3.7612562393706908,4.936655253296909,5.632784624056918,5.832784624056918,5.832784624056918,0.19318181818181818,0.0066426719300282525,0.08818342151675487,0.04063018242122719,0.04388020833333334,0.02767156862745098,0.018211756497470786,0.013951048255559532,0.011190991548134398,0.0064008487654321,0.4499445160772097,31.425619834710744,14.18896447467876,7.571995464852607,242.73727028835017,0.0,4.6216955029915,292.1531853397677,,234.8151127604237,232.93648435045054,229.76252567792653,234.791214594086,308.1238521243224,235.06885168254868,237.0437792790685,285.56507324531964,0.020258024649492716,-0.020284754755511333,-0.49551813597258965,0.30562121056417635,0.2750579754293353,-0.1499934499376355,0.02085245627641748,-0.030296591369243064,-0.008284460793641103,-0.039842139488053235,-0.04548200844107218,0.006734144427771807,0.04214790507136807,0.017866569580272308,-0.06762799052137307,-0.09676318611679832,-0.00658424252143708,0.09909340975913196,0.043485603339828,0.10034256487529056,0.014498588208874737,0.07150195953625542,0.0096692591767093,0.07648829920277196,0.016361242911236456,0.013415807711555759,0.14908118572480117,-0.09903413312355233,-0.054297595485272535,0.06347410573175666,0.014076382121485077,0.0026915687579421935,0.0017624409321941644,0.004462279730033241,0.04592919196824377,-0.05586045497539135,-0.006926521375133726,-0.03303638218702864,-0.10720344381393686,0.00694786474648174,0.03131931769195949,-0.1884993365761375,-0.00886443575787122,-0.12206451433326444,-0.010878063371338554,-0.06422983325221059,-0.012297451582105356,-0.09302001170736525,0.15916311633804858,0.101935710847479,-0.007700496521491966,-0.03830176894015197,0.06817862298589655,0.0693099503868076,0.15967093754706516,0.11820320767064217,0.13033094980110496,0.1152856963658923,0.10958870664045238,0.14644700628613802,-0.051455109438170936,-0.004051372530887474,0.059164908671826014,-0.09283903675538657,-0.0849469020783113,-0.01226922322636001,-0.05294837517256923,-0.07471103825597812,-0.01130756027156773,-0.015464763517914905,0.01339764915441967,-0.07900547050362462,-0.05934802025404947,-0.058566863775865154,-0.032856557220659076,0.05975706636102874,-0.051532743276762265,-0.1747727627084918,-0.06240827431092762,-0.16623472129881076,-0.03879226317051393,-0.12181095217795626,-0.007872678075061383,-0.147695160454514,0.1491126378720633,0.021117176164624718,-0.020323509232994474,0.07260634697970889,0.04209628785784721,0.07100447754291055,0.1505479481936539,0.1506509565981526,0.060868125443489476,-0.028455431067501737,0.041083436136769194,0.1602241092876798,23.94003380869101,37.017642156623296,12.183530602121426,19.096283063238268,38.86791119614084,46.41597513357844,49.43221639644737,50.61795925359024,50.61795925359024,81.7668754365897,62.628289949456715,8.290923270095586,7.313310557926949,3.5343516591104382,19.13858548713297,15678.366362217635,11211.204873183184,6241.661307349466,214.0,63.0,84.0,107.0,138.0,151.0,171.0,191.0,209.0,580.164410800001,44.0,5.3706380281276624,6.2324480165505225,7.117205503164344,7.9966538754626075,8.883640232503673,9.768869855811184,10.657424047232336,11.545382974518763,12.435194292370886,0.7238095238095237,0.988228571428571,1.1219012814933889,0.6916207761932516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7020683490162531,0.9789355742296918,1.0117677661013422,0.660002564624466,10.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,2.0,0.0,1.0,0.0,7.0,0.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,20.27034989266319,12.29426823919648,6.606881964512918,11.814359458703011,5.907179729351506,19.28352128306594,0.0,0.0,0.0,59.60008219123469,60.820611738152984,25.22224694874837,21.774493731314177,385.19882913992456,-1287.1318333156976,-56.430511317687746,-18.387597618795677,-49.50507051214221,467.4426348406663,1561.9473633805678,32.967941337046476,22.31353376257954,35.49880371319471,0.5,0.8303860150589852,0.14410106604872439,113.45199332895784,0.07930862571529314,45.8714747785484,0.16961398494101462,9.0,0.18181818181818182,0.2718480987724585,0.6136535429955432,0.8054213257324015,0.918995681629412,0.9516259255661141,0.9516259255661141,4.780200000000003,,2.8655462184873945,2.1187437003323097,1.856856910534675,2.8894325648792374,-5.9340144218269995,2.065696512402585,1.974599518647834,-2.706699165730599,155.8908999999997,19.120474506015515,0.0,9.799819461700956,5.733667477162185,18.88348407499998,44.73348930169088,81.83584029549276,0.0,16.876414816677897,4.48863636973214,0.0,5.831882477283517,2.3978952727983707,7.3632795869630385,4.442651256490317,8.980801413573113,6.259581464064923,10.645639160023887,50.66666666666666,18.282557365794027,0.0,0.0,0.0,0.0,0.0,4.659966730858409,0.0,69.17599999999997,0.0,38.0821990908722,0.0,0.0,0.0,0.0,0.0,-1.01665930272149,78.53308970453722,15.370440161812713,5.687386274683562,5.749511833283905,67.35493822059588,9.589074368143644,0.0,34.804924242465795,60.6636706846161,10.045266627482652,11.126902983393991,0.0,48.41345433352761,49.14478443113772,52.1316738905704,584.3063706795355,,469.48694820992307,465.76703151588447,459.43220851032635,469.437957559928,618.3246092962843,470.03441853947726,473.98882858220463,572.0774911986451,52.1316738905704,584.3063706795355,,466.7646793023601,463.7988630589275,457.6681944453185,466.6929966232928,622.1817186704718,468.0798364869401,472.1129590394895,573.8368456563701,4.917783868605535,426.19521147976434,,345.44034631430225,341.5374010354472,336.293347993731,345.43133658631893,454.38170422680207,344.8590883558586,347.88028650839004,420.77095641852407,1.3032918472642598,14.607659266988387,,11.737173705248077,11.644175787897112,11.485805212758159,11.7359489389982,15.458115232407106,11.750860463486932,11.849720714555115,14.301937279966129,2.4592658186930674,292.1531853397677,,234.8151127604237,232.93648435045054,229.76252567792653,234.791214594086,308.1238521243224,235.06885168254868,237.0437792790685,285.56507324531964,68.52549019607842,0.0,1.7718148364037312,12.347517112819315,0.0,5.455071895246942,0.0,70.82374362709396,4.545215184940911,0.0,5.525890255239016,0.0,-0.2351641803840887,5.470479899819912,0.0,0.0,0.0,46.20017952371262,708.0215475489023,116.63637544963653,263.28793675594835,345.5658677307836,394.2949236839843,408.2949236839843,408.2949236839843,1412.0,164.00745682574194,144.6199164316886,90.41036700092931,96.18,96.18,1.0,8.869333337433833,6.459431618637297,4.837585943513128,6.225989977854905,,6.235208083356494,6.230454610154533,6.2292292313237185,6.23529136042511,6.238860695866357,6.231736064982822,6.232418520296694,6.238498309332212,0.1209396485878282,0.1556497494463726,,0.15588020208391234,0.15576136525386333,0.15573073078309296,0.15588228401062776,0.15597151739665893,0.15579340162457056,0.15581046300741735,0.1559624577333053,2.9627101854188806,3.215026823413454,,3.2165063131282885,3.215743662389338,3.215546967376791,3.216519668979671,3.2170919460406773,3.2159493172161993,3.2160588240920784,3.2170338589832967,415.5400000000014,784.9536533054503,298.07865136750706,,295.7880290961741,296.75707443664965,297.0296528573817,295.7661447902205,296.3555103609236,296.5668569439808,296.4745576127201,296.15270239854107,19.623841332636257,7.451966284187677,,7.394700727404353,7.418926860916241,7.425741321434542,7.394153619755512,7.40888775902309,7.4141714235995195,7.411863940318002,7.403817559963526,8.051919036784126,7.083651743565145,,7.075937440990704,7.079208234044629,7.080126336209427,7.07586345180449,7.077854143278807,7.0785670413027715,7.078255766812524,7.077169568901826,5.525890255239016,43.552678990692115,0.5893733410345323,9.114495346594177,-0.6054893642448478,18.047393185409938,2.2537791722410576,2.2914360126998536,1.7718148364037312,510.8862998085044,328.4364936014748,-1097.4619706943183,-48.11499378308659,-15.678028152775974,-42.210075795935325,398.5609724974905,1331.7810865734316,28.109833766045547,19.02544409390616,30.267751967577976,5641.0,67.0,2.9142982336743994,1.4426095400307912,0.0,0.0,0.9191802141949073,0.32876092895488257,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.11180339887498948,0.3798398503937435,0.17158326100229593,0.6072521767140773,0.20504826723919314,28.388176099202234,23.62037148499204,19.20641769360464,13.870349366425756,17.796179561005598,10.912220794515948,15.252941629145527,8.226989055319766,11.99342609249802,5.512899872983115,9.953062709826547,3.753937987409367,7.006543253429047,2.333338909116055,5.113749611730402,1.4832872622096682,7.271513390743866,3.215428939949049,10.121335090252966,3.8025832744077754,16.129312959798508,4.929902670333497,129.15559176626672,66.73478090352744,39.516788537677755,30.840898341894235,27.884022871679555,27.884022871679555,214.0,254.0,82.07179,40.01621000000003,0.45714285714285713,376.1,13.166666666666668,8.666666666666664,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,18.0,18.0,70.0,0.0,1.0,74.0,18.0,3.0,12.0,62.0,21.0,44.0,53.0,0.0,0.0,0.0,30.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,5.0,1.0,2.0,40.0,10.0,0.0,4.0,4.0,0.0,5.0,8.0,0.0,0.0,2.0,0.0,3.0,4.04305126783455,7.523882197902455,4.61015772749913,5.1343267664388055,5.639688299226896,6.193256772511156,6.4123312723894905,6.75110146893676,7.034085020606987,7.333523297720634 +54897,CCCN(CCC)C(=O)Cc1c(-c2ccc(Cl)cc2)nc2ccc(Cl)cn12,0,31.36,5.982249999999999,3.22,6.184197530864197,161.42555608628055,128.21754322000004,1.65142001623054,6.148041999999999,3.186322969059595,7.619667639999998,231.2611254420582,26.423076923076923,6.217307692307693,3.8846153846153846,6.465811965811966,145.3608798740327,101.24741744230768,1.906312675576923,6.403442307692306,2.7604067742956633,7.667676923076922,270.327899516553,22.692307692307693,6.123405494505495,3.5164835164835164,5.157509157509158,154.73658851324987,85.95157635164834,1.626821915421308,6.2726450549450545,2.5545041378374718,7.64427876923077,223.8133123894847,19.555555555555557,6.049163247863248,3.076923076923077,3.922127255460589,160.23523969797253,72.12795984615384,1.4445368025942482,6.1925846153846145,2.4803735359290915,7.656386666666667,194.1850419469857,18.483333333333334,6.109249166666666,3.0416666666666665,3.9194444444444447,160.2245311168375,67.17945646666665,1.428557297134425,6.232918333333332,2.644110082304527,7.691142416666667,191.9967865563697,19.056451612903224,6.053943548387098,2.911290322580645,3.900537634408602,157.51362747443412,70.44488402419354,1.4197777118212018,6.175803225806452,2.8497942386831276,7.621862741935484,191.5326935758296,16.91304347826087,5.966073188405797,2.63768115942029,3.0668276972624797,160.47195897059927,61.233249978260865,1.3337522205613768,6.0848,2.6176417963857577,7.583973188405796,175.4916051050385,18.080291970802918,5.917957664233578,2.5693430656934306,2.45823195458232,161.89296235534903,66.9134161970803,1.3246824030136202,6.0450708029197076,2.4444594635186685,7.552310321167884,172.67394355648545,17.885245901639344,5.914475409836066,2.5,1.7012750455373407,159.47326703921672,64.35033813114754,1.4325334386076312,6.077090163934426,2.266713890575457,7.578963950819672,180.50632314342218,13.382400000000002,0.08026563999999996,0.010346513138335007,0.5956,3.3915851851851846,1.4606848029054185,62.822826330000005,0.2652321910460915,0.09348963999999997,0.8234605852766346,0.06068723039999999,53.409081242271895,0.2883692307692304,0.004061129230769263,-0.005231269528445872,0.24709230769230756,1.4634765432098766,-0.3627082863354933,1.3454764419230736,-0.017665989558290452,0.004519513846153854,-0.01118264335877505,-0.00014430424615385622,-1.4512111687085076,1.158698901098901,0.012407305054945071,0.0005837382045710597,0.08813626373626367,0.7678124542124541,-0.07569612980399185,5.476799074615383,0.014155993629344223,0.012300008351648349,0.046042145645849346,0.0056430557538461445,2.857822405948221,0.06170256410256387,-0.004407366495726477,-0.0005483066190587432,0.05209230769230765,0.25564917167880125,0.05932866833138585,0.4189678917094007,0.016463415495337974,-0.003496409230769232,-0.006029384070856412,-0.004807898092307699,4.869504315697781,-0.8157333333333333,-0.008020523333333302,4.19781734023572e-05,-0.017433333333333363,-0.05130123456790132,0.20062460964429427,-3.7400938633333345,0.013679380273599061,-0.010403056666666653,-0.07728075369608293,-0.006304927066666676,1.0638816009785763,0.8572774193548385,0.00798197290322582,0.0006386098789446311,-0.0036645161290322775,0.2228353643966547,-0.12544554014948306,3.9746099480645163,-0.005210175005278045,0.009111005161290325,0.06544930380400311,0.0047307076645161225,-0.8409064076085623,0.29470144927536246,-0.0073073646376811486,-0.0005910164933925997,0.026428985507246386,-0.009631347289318276,-0.02902216671898243,1.4546993588405808,0.012558073261197825,-0.005491683478260868,-0.06621732304858088,-0.004744936486956524,1.9283032940445344,2.014096350364964,0.0025956446715328487,0.0008527427314716091,-0.09195036496350366,-0.5485753627106426,0.07481478678300228,9.441646583430657,0.027390489056165635,0.009456082627737221,-0.02392219374160741,0.006888872081751825,5.381674597770811,-1.2892852459016395,-0.018899984262295066,-0.0013473493319829555,-0.20035409836065576,-1.2804255009107468,0.07019192448589492,-6.010553797704917,-0.0006972285415132469,-0.020292771147540967,-0.10121325192830963,-0.010826417940983605,-4.3775009980742,,,0.49858906525573193,1.25,0.6111111111111112,0.037037037037037035,0.6388888888888888,-0.027777777777777776,0.9233527580097876,0.014289128121124874,0.02384468367668043,0.9213050686603849,0.23251756626507955,0.2500160301461325,1.8446578266701723,0.482533596411212,2.025110398368411,1.585743058384451,0.24231049741094812,0.06597991834209982,0.13107692423091194,0.43936733998395994,8.062436354320013,1568.0,299.11249999999995,161.0,309.2098765432099,8071.277804314028,6410.877161000001,82.571000811527,307.40209999999996,159.31614845297975,380.9833819999999,11563.05627210291,1374.0,323.3,202.0,336.22222222222223,7558.765753449699,5264.865706999999,99.12825913,332.9789999999999,143.5411522633745,398.71919999999994,14057.050774860754,2065.0,557.2299,320.0,469.33333333333337,14081.02955470574,7821.593447999999,148.04079430333903,570.8107,232.45987654320993,695.629368,20367.011427443107,2288.0,707.7521,360.0,458.8888888888889,18747.523044662787,8438.971302,169.01080590352703,724.5323999999999,290.2037037037037,895.7972400000001,22719.649907797328,2218.0,733.1098999999999,365.0,470.33333333333337,19226.9437340205,8061.534775999999,171.426875656131,747.9501999999999,317.29320987654324,922.93709,23039.614386764362,2363.0,750.6890000000001,361.0,483.66666666666663,19531.68980682983,8735.165619,176.05243626582902,765.7996,353.3744855967078,945.11098,23750.05400340287,2334.0,823.3181000000001,364.0,423.22222222222223,22145.1303379427,8450.188497,184.05780643747,839.7024,361.2345679012346,1046.5883,24217.841504495314,2477.0,810.7602000000002,352.0,336.7777777777778,22179.335842682816,9167.138019,181.48148921286597,828.1746999999999,334.8909465020576,1034.666514,23656.330267238507,2182.0,721.566,305.0,207.55555555555557,19455.73857878444,7850.741252,174.769079510131,741.405,276.53909465020575,924.633602,22021.771423497506,669.1200000000001,4.013281999999998,0.5173256569167504,29.78,169.57925925925923,73.03424014527093,3141.1413165000004,13.261609552304577,4.6744819999999985,41.17302926383173,3.0343615199999996,2670.454062113595,14.995199999999981,0.21117872000000168,-0.27202601547918537,12.848799999999994,76.10078024691359,-18.86083088944565,69.96477497999983,-0.9186314570311035,0.2350147200000004,-0.5814974546563026,-0.007503820800000524,-75.4629807728424,105.4416,1.1290647600000014,0.053120176615966436,8.020399999999993,69.87093333333333,-6.888347812163258,498.3887157899999,1.2881954202703243,1.1193007599999998,4.189835253772291,0.5135180735999991,260.0618389412881,7.219199999999972,-0.5156618799999978,-0.06415187442987295,6.094799999999996,29.910953086419745,6.941454194772144,49.01924332999988,1.9262196129545428,-0.4090798800000002,-0.7054379362902002,-0.5625240768000008,569.7320049366404,-97.88799999999999,-0.9624627999999962,0.005037380808282864,-2.0920000000000036,-6.156148148148158,24.074953157315313,-448.81126360000013,1.6415256328318875,-1.2483667999999983,-9.273690443529953,-0.7565912480000011,127.66579211742915,106.30239999999998,0.9897646400000015,0.07918762498913426,-0.4544000000000024,27.63158518518518,-15.555246978535898,492.85163356000004,-0.6460617006544777,1.1297646400000003,8.115713671696387,0.5866077503999992,-104.27239454346173,40.66880000000002,-1.0084163199999985,-0.08156027608817876,3.647200000000001,-1.329125925925922,-4.005059007219575,200.74851152000014,1.7330141100452998,-0.7578523199999998,-9.137990580704162,-0.6548012352000002,266.10585457814574,275.93120000000005,0.3556033200000003,0.11682575421161044,-12.5972,-75.15482469135803,10.249625789271313,1293.50558193,3.752497000694692,1.2954833199999993,-3.277340542600215,0.9437754752,737.2894198946011,-157.29280000000003,-2.305798079999998,-0.16437661850192056,-24.443200000000004,-156.2119111111111,8.56341478727918,-733.2875633199999,-0.08506188206461612,-2.475718079999998,-12.348016735253774,-1.3208229887999998,-534.0551217650524,0.7180940954863613,0.6331356187140452,0.4492554173483698,0.34443973312116133,0.28689844927257757,0.18549876677113603,0.1777117795177561,0.09307562636304463,0.11026529442142738,0.04954810461040003,0.07214882950524383,0.02710399197474937,0.0439673752083336,0.013924822968515502,0.02727380476932882,0.007037287819035925,17.002125992276625,5.691384370113206,3.5438084208816183,2.188407445888071,0.39947543233716115,-0.44512884070110387,3.276152896552319,0.9778619858152354,6.021986166498744,0.7730717992969068,14.560384016218785,10.95174213997009,35.451527985030964,11.702951705328648,2.2098619469458454,0.7518438647219483,3.4890412318653845,2.238980958671071,7.008270464203127,1.304212024747932,3.701963715059584,2.435046025231474,22.457019324822625,14.702709136774377,0.26801691968954716,0.5858633987859754,0.7556370170322798,0.8149229466458893,0.8216946989498407,0.8216946989498407,1.7131167614075835,928.499757606402,0.0,3.0,4.0,0.0,10.0,3.0,1.0,0.0,0.0,4.060709567396574,2.1832251891746033,1.1803910001730769,0.8301955000865382,0.7901955000865373,0.7901955000865373,85.53548978701446,1085.243067347914,38.619095253341676,21.704861346958275,47.38081086529334,,12.0,518.0,0.0,4.794537184071822,12.328001352277514,10.045266627482652,48.52964075983882,0.0,0.0,51.895650319495005,13.847474399381248,28.18585830141224,13.461904761904762,33.75,16.5,1.0,17.25,0.0,0.0014109347442680725,-0.75,0.14250216450216457,0.05472811059907834,-0.08777405390308624,0.0,0.10864668094218388,0.0,0.5827619047619049,0.82363315696649,0.44025974025974035,0.5280337941628266,0.82363315696649,24.930524466264263,0.3858064592703716,0.6438064592703716,24.87523685383039,6.2779742891571475,6.750432813945577,49.80576132009465,13.028407103102724,0.6053533190578161,0.20516448532012735,0.0,0.31941987973116376,0.3333333333333333,0.43058822930118024,-0.758413310342991,-0.03620610168049066,-0.015168266206859817,-0.047400831896436936,0.5694117706988199,1.0029291015800006,0.02647243774204947,0.02005858203160001,0.02949791475235296,-6.776752591122239,0.5837316751278372,0.6911257898915881,1.620262054439767,0.7119517487213928,0.4938980593050361,1.4377651591034963,0.58963847336066,0.9599778476555366,0.632434122770592,0.5707068511640516,0.6270608669545136,0.9558833757268971,0.6252759077364528,0.7918705936936402,1.2702525797959456,1.0487162266880197,0.8315312082369551,1.1831565340096142,0.6290716534504912,0.8383474097736935,0.7289906873432919,0.5808185933959135,0.6930444920951734,0.8750137789918715,0.8975431948889624,1.1862375937962952,1.4267542091561447,1.0547433314391004,1.031160025970712,1.011902342234487,0.8961057303175908,0.869789121355086,1.0919527014679378,1.0348184253290915,1.1184252348831842,0.850696636200636,0.8589328770125935,1.382532945188834,1.4515255904734714,1.1449238862771434,1.1822442544802243,0.9296077963279273,0.8595742056081204,0.8474019852022674,1.236985278083575,1.5706878879766764,1.2242200928209328,0.9011952282344138,0.6295461733080329,1.114408477617812,1.1976602085565498,1.0748174787148768,1.0393901419569769,1.118263096998969,0.6348948647982972,0.9171588098590211,0.9516538323770245,1.6098334300267747,0.9641529028294346,0.9523109142545312,0.7614911906791701,1.3191744818576296,1.229150517862472,0.9419316533808313,1.0774764584230696,1.0103489706842652,0.7635937380785698,0.8732942004120602,1.1490088905704618,1.7437370796226244,1.1688909301157662,0.9145790537219946,0.6820593646039508,1.0730019692239656,1.02480254262143,1.1830062796272418,1.232446364825425,0.9456562346368144,0.6852492880033833,0.8258268546556736,0.9192989405810018,1.2194401145249723,0.8678929222847888,0.8592840433384381,1.1233680547388887,1.187635043902296,1.038864269454801,1.3014841074987062,1.343552250559715,0.9470848987737035,1.1215425239009253,0.99222180242663,1.1906210090037432,0.9817619538796729,1.1612270147929278,1.0592035608381736,5.5,0.09896949290888685,3.333333333333335,1.9513888888888888,1.6805555555555558,1.118611111111111,0.7568707482993196,0.5999149659863945,0.3635755228017132,0.24281635802469143,5840.917192676414,6529.139653239765,2633.8034964190992,2406.141475895629,12.244200917126346,0.44104736962919244,6.843928309416425,0.789060370530152,1.0,0.3333333333333333,1.5831466223781498,3.460631000600121,4.4634651896016475,4.813660689688186,4.853660689688187,4.853660689688187,0.1896551724137931,0.007613037916068218,0.08333333333333337,0.046461640211640204,0.040989159891598924,0.026014211886304907,0.01846026215364194,0.014997874149659862,0.0110174400849004,0.010557232957595279,0.4490993649985362,21.702734839476815,10.15625,5.331434674261303,169.2737308409032,0.0,4.215032264592088,139.46274221714037,,109.95813416451936,110.67574601146778,109.25619538815289,109.91258439067721,137.09850440392128,111.24807553230804,111.94661453377475,129.85349545871208,0.021548394216973812,0.050596110998046805,-0.5056070058098534,0.4148628403161645,0.4315022219116012,-0.24831386320583165,0.021416999529047985,-0.06660575207185349,0.048342402924579184,-0.013580059032234477,-0.002377835422752399,-0.027171618289511257,0.08658378923802165,0.15457803681556742,0.05641883374295861,0.14797895187418345,0.22638748912052778,-0.05182235733090822,0.08717848900726753,0.053372079661643416,0.1315654691968902,0.05591299264236414,0.09298588379551664,0.05350817388122994,0.004610724840280059,-0.0549097533605473,-0.05299433845274935,0.08746190008782345,0.07537748802403808,0.0406170230657404,0.0066690392041360525,0.06207170943468545,-0.037398895008786355,-0.0073220068800632305,-0.0792242134073019,0.09117371432788653,-0.06095568308624262,-0.09992474156230868,0.00405722902402968,-0.029270203716140634,-0.015126034513887703,0.13734969327074253,-0.05953399555262152,0.051575113185344405,-0.11127496765060445,-0.09384875861437998,-0.10389215367235932,0.019919488900261063,0.06406006541090076,0.09944445597426027,0.06172223148091398,-0.0061526462878312245,0.06570242297614223,-0.08588132080238109,0.06326697126274478,-0.01964382598028092,0.09745470365797032,0.07948079722846234,0.07795227485807497,-0.015744633460255196,0.022021569320552548,-0.09103976044645197,-0.05712228704401064,0.044373716432582914,-0.002839777497374695,-0.01986887702347216,0.02315558601580956,0.04734747019834974,-0.05874109129376121,-0.08041346997359411,-0.07818673641360513,0.036104408636004254,0.15050337386156173,0.032338179469233036,0.08241836839815148,-0.15438274842764213,-0.16174600747369688,0.05121898073711023,0.15029006389866853,0.10326985177830758,0.10114578072754611,-0.02905080603654023,0.1135143593857568,0.10076328730237277,-0.09634185541469686,-0.23546793201044777,-0.13022255072492714,-0.33639035990707816,-0.3775301020017971,0.04805412115350114,-0.09567467987085256,-0.002628747810600727,-0.21705903614069935,-0.12291207829250005,-0.1783969686806404,-0.08196173564973296,13.844806348137233,22.669278084213328,6.553105012248863,18.635637402655263,36.88879703445385,41.31273498441958,43.48365204850681,43.523972048506806,43.523972048506806,54.67798075594709,42.81506257638018,6.542383430095599,1.7814577952366952,3.5390769542346225,11.862918179566918,6715.754213997077,4807.669766945439,2600.6945483248905,138.0,40.0,53.0,71.0,93.0,104.0,123.0,143.0,146.0,403.1218177160007,29.0,4.9344739331306915,5.783825182329737,6.668228248417403,7.549082710812286,8.445267451844648,9.340929941679784,10.244485248089557,11.148405543793823,12.056789267813016,0.7066666666666666,0.9717600000000002,1.1232135893359856,0.6732744983764882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7050088502994012,0.9649411764705883,1.00122359796067,0.6480284266232447,7.0,1.0,0.0,0.0,0.0,1.0,5.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,9.300604337112272,5.647177220767728,0.0,5.907179729351506,0.0,4.794537184071822,4.9839785209472085,0.0,0.0,49.1820883167695,37.10711151969846,29.87244118887655,22.83131092636426,265.30496714749546,-467.2928907307197,-22.308223874282124,-9.345857814614392,-29.20580567066998,350.8404569345099,617.9501766171941,16.310871379059552,12.35900353234388,18.175005194623356,0.5,0.9553925995776168,0.19438984728642747,3.0813959228098433,0.12950628606245204,17.511477504688898,0.044607400422383134,6.0,0.2413793103448276,0.2805079663876661,0.6131678207658677,0.7908538133357023,0.8529027898353173,0.8599901426407397,0.8599901426407397,5.4992000000000045,,1.9726890756302522,1.0759330907464562,1.1122047674421236,1.9991356491009686,-2.1689498106277254,1.1283495111785946,1.0888521248789345,-1.1903911033130932,111.51400000000004,4.794537184071822,0.0,14.28458285805948,0.0,33.10993926815928,13.08951281182515,58.33424060471384,0.0,11.257379486545457,4.07753744390572,0.0,5.389071729816501,2.3978952727983707,6.8966943316227125,4.844187086458591,8.498418036089904,7.050122520269059,10.152259863484153,35.33333333333333,13.008015540578372,4.74855646888385,0.0,0.0,0.0,0.7682250461913165,3.835457117904811,1.9169099584278155,48.58800000000001,0.0,12.987453126312253,0.0,0.0,0.0,0.0,0.0,0.1071194815374712,56.16067946679928,0.0,0.0,0.0,33.28127539923614,11.21535880699783,0.0,32.383045640081725,42.59504598238274,10.045266627482652,16.904556707313183,0.0,33.663724918824414,35.25044251497006,34.51476733873047,278.92548443428075,,219.77014321232537,221.29050338937185,218.48458530280342,219.67708465919878,274.67899765464875,222.41256961934357,223.8125733545955,259.971522273716,34.51476733873047,278.9254844342807,,218.00906040487013,220.37396779355083,217.5371516120193,217.89178794157846,276.36595861847024,221.44589528361826,222.86705886607115,260.89738202073715,4.852797408643489,191.29643914035236,,156.08427322319437,156.20526435707748,154.28458442944648,156.04459413503088,193.13140471004658,157.10390284706597,158.0813501929641,182.67624976436468,1.2783247162492768,10.330573497565954,,8.139634933789829,8.195944569976735,8.092021677881608,8.136188320711065,10.173296209431435,8.237502578494206,8.289354568688722,9.62857489902652,2.5044691334236826,139.46274221714037,,109.95813416451936,110.67574601146778,109.25619538815289,109.91258439067721,137.09850440392128,111.24807553230804,111.94661453377475,129.85349545871208,48.247058823529414,0.0,4.172765546044628,12.23380820954593,0.0,0.0,0.0,50.06117989803351,3.6844058164069287,0.0,0.0,0.0,0.0,1.9261725770555136,0.0,0.0,0.0,32.40142133116223,588.6607784315602,79.15733111890749,173.03155003000606,223.17325948008238,240.68303448440932,242.68303448440935,242.68303448440935,967.0,132.17148752791095,27.48464565044508,76.306186284445,37.61,37.61,1.0,9.17560091547697,5.857980995127572,4.105732556235957,5.1032864702682605,,5.0935617217334785,5.0876661540653085,5.087542223112534,5.093663041838842,5.096179064340394,5.089069700046468,5.089602008684607,5.093432925402351,0.15206416874947987,0.18901061000993558,,0.18865043413827698,0.1884320797801966,0.18842748974490867,0.18865418673477194,0.1887473727533479,0.188484062964684,0.1885037780994299,0.18864566390379078,2.4056359546186235,2.6231365111351677,,2.621229107729715,2.6200709825214306,2.6200466231278563,2.621248999330758,2.621742828877176,2.6203468167398243,2.620451409687481,2.6212038213060747,300.0600000000004,378.23446571242584,165.42625435825514,,165.55335407953226,166.53851518973295,166.6047635864772,165.52975960777715,165.8421841953262,166.3590572282975,166.29379853979756,166.07395221953186,14.00868391527503,6.126898309565005,,6.131605706649343,6.168093155175295,6.170546799499156,6.130731837325079,6.142303118345415,6.161446564011019,6.1590295755480575,6.150887119241921,6.928766055998457,6.101777275519859,,6.102545297018975,6.108478378140726,6.1088760952903005,6.102402768023568,6.104288411548703,6.107400220811336,6.10700786771287,6.105684957461643,1.9169099584278155,19.66218217225162,1.2735919860495986,3.330090178046529,0.1071194815374712,11.192636526832956,3.971125888240035,5.7014244879569365,0.0,353.11374502804813,163.46644149415607,-287.9203763297854,-13.745110059535875,-5.758407526595708,-17.99502352061159,216.16874212303813,380.7471736333511,10.04986876299769,7.614943472667022,11.198446283333856,1809.0,42.0,1.7213008200490045,0.8948943179517974,0.0,0.0,0.3650450047968234,0.10807487045660566,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.025,0.3634023029066286,0.10833953491251952,0.6685434149566991,0.18100536423320512,19.388540578131753,17.094661705279222,13.028407103102724,9.988752260513678,11.475937970903102,7.4199506708454415,9.418724314441073,4.9330081972413655,7.828835903921344,3.5179154273384023,6.709841143987676,2.5206712536516913,4.572607021666695,1.4481815887256122,3.354677986627445,0.8655864017414188,3.9663783418696625,1.6507217133384662,6.220247147460581,2.2143694996438037,10.008492135620878,2.964086761575962,90.4170119988249,47.656859762661995,34.530961041249434,29.799226880902083,29.653472633311093,29.653472633311093,138.0,162.0,58.86823899999998,29.521760999999994,0.3,139.06,9.25,6.138888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,50.0,0.0,0.0,52.0,16.0,1.0,8.0,44.0,17.0,29.0,35.0,0.0,0.0,0.0,21.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,3.0,0.0,2.0,27.0,6.0,0.0,3.0,1.0,0.0,3.0,7.0,0.0,0.0,2.0,2.0,3.0,3.6635616461296463,7.977008485046741,4.273187854639731,4.881854504230331,5.521710886617454,6.1231778818163045,6.517094112295545,6.993094033960817,7.4559557125484535,7.733042014869674 +82146,C=C(c1ccc(C(=O)O)cc1)c1cc2c(cc1C)C(C)(C)CCC2(C)C,0,18.88888888888889,5.741111111111109,3.185185185185185,5.407407407407407,159.10484026748097,74.12453144444443,1.4938735062179997,5.837911111111108,3.626800411522634,7.329496444444442,212.36170444404956,21.464285714285715,6.003571428571428,3.767857142857143,5.678571428571429,141.47916035918658,79.96809807142859,1.8891168635000004,6.172267857142858,2.8343253968253967,7.460150285714284,264.22858432613725,18.82,5.821200000000002,3.7,4.49,148.37881091849187,70.33483435999999,1.6798450006728205,5.962800999999998,2.7002777777777784,7.339830080000001,231.05541574674976,16.579710144927535,5.820579710144927,3.152173913043478,3.2028985507246377,146.34917848284306,59.010064927536234,1.6209824865586526,5.966927536231883,2.5902274557165854,7.336693101449278,214.76316624085422,11.689473684210526,5.601473684210526,2.4157894736842107,1.936842105263158,156.40164592187156,39.670226663157884,1.275711771273174,5.705815789473684,2.280847953216374,7.214410147368422,159.06843459723004,10.817679558011049,5.532651933701657,2.408839779005525,1.6464088397790055,158.228279223113,36.43180776243095,1.227641765004674,5.63106906077348,2.090239410681399,7.164551977900553,150.84241046969552,10.86624203821656,5.5406369426751585,2.2802547770700636,1.6560509554140128,154.91041735574188,35.709622764331215,1.2788675312431081,5.652509554140127,2.0847487615003546,7.1488414267515905,155.15025879058544,9.023809523809524,5.405059523809523,1.9821428571428572,1.4642857142857142,162.77130972049608,29.86582420833334,1.0695631508894645,5.48663988095238,2.0658068783068777,7.078641404761907,126.63076560124881,9.833333333333334,5.533106060606062,2.0454545454545454,1.6136363636363635,161.8729977496504,32.67467659848485,1.1007498261117576,5.613617424242426,2.2548400673400675,7.193040212121215,133.46818583217149,6.768175582990398,0.06965706447187922,0.010781891457034738,0.7654320987654318,3.212620027434841,1.3513779622657291,32.47758624691358,0.244686283833358,0.07079780521261997,1.1587982014936746,0.04069639506172837,54.05082468388875,0.13790907309425854,-0.002739075053889833,-0.007096649278106202,0.35427689594356243,1.5241524593376445,0.10405024268119832,0.7152931261022923,0.017883883886753153,-0.002414339604154466,-0.1400224813290657,-0.0016712363315697508,3.018590673941904,1.7658984910836757,0.018676268861454053,0.0017558757085703732,-0.07135802469135806,0.5218244170096021,0.3575007719182129,8.47304807975309,0.06454701847836423,0.018849713305898453,0.33749295076969976,0.011061320493827133,14.151810347137657,-1.2201347885727913,-0.004654380628615712,0.0001290388527752174,-0.07541599570585077,-0.3457386533070913,-0.2581797995839007,-5.903760992485237,-0.04769630136616797,-0.006245255561519662,0.026515584514555705,-0.0012768137412775323,-10.790953438555055,-0.39527109955959855,-0.0015069670059923521,-0.00031645513570895866,-0.05217673814165041,-0.219247707746733,-0.09026197399407396,-1.9152447586094863,-0.016510858100424106,-0.0019813919572593927,0.006947954018562639,-0.00047914359974005337,-3.6273141357099576,-0.02784409127769074,-0.0006986032482247077,-0.000430661369501904,-0.11308914807993997,-0.324958885630054,0.016175998714375268,-0.12258933346975014,0.0025350110084222067,-0.0007612797368680154,-0.01367963295583055,-0.0002737455835208438,0.24849072856429125,-1.2503647785553895,-0.002108114247769837,-4.084803689310799e-05,-0.045922780529999215,-0.046307217809930724,-0.3131387083996979,-6.084125734528581,-0.05706777127809403,-0.003933922221348476,-0.0042806265939342196,0.0002960748604231264,-12.277289230318178,1.0638349990201839,0.009712424064275879,0.0004448644991129613,0.05930335097001764,0.5638349990201841,0.07744722847932224,5.057080771604939,0.017072264092901215,0.01096032970801491,0.1496937395214144,0.004077292768959538,5.936056404955224,0.4585359770544955,0.0025763810948995947,-0.0004363817497456604,0.03423120089786757,0.1945067963586482,0.04409334217997709,2.19279326318743,0.009327682954283378,0.003348350791869323,-0.018882454517742585,0.000600413019079733,2.925549647401009,,,0.4871794871794872,1.1153846153846154,0.5576923076923077,0.0,0.5576923076923077,0.0,1.1295519618298016,0.034142401725417285,0.04406547864849421,0.8297741496826911,0.19513185877834746,0.26742626112596973,1.9593261115124927,0.46255811990431717,2.001436270887591,1.8700198540185098,0.0,0.13141641686908112,0.0,0.13141641686908112,6.4483135210370515,1020.0,310.01999999999987,172.0,292.0,8591.661374443973,4002.7246979999995,80.66916933577198,315.24719999999985,195.84722222222223,395.79280799999987,11467.532039978676,1202.0,336.2,211.0,318.0,7922.832980114448,4478.213492000001,105.79054435600003,345.64700000000005,158.72222222222223,417.7684159999999,14796.800722263686,1882.0,582.1200000000002,370.0,449.0,14837.881091849187,7033.483435999999,167.98450006728206,596.2800999999998,270.0277777777778,733.9830080000002,23105.541574674975,2288.0,803.24,435.0,442.0,20196.186630632343,8143.38896,223.69558314509408,823.4359999999998,357.4513888888888,1012.4636480000004,29637.31694123788,2221.0,1064.28,459.0,368.0,29716.312725155596,7537.343065999998,242.38523654190305,1084.105,433.36111111111103,1370.7379280000002,30223.002573473706,1958.0,1001.41,436.0,298.0,28639.318539383454,6594.157205000001,222.203159465846,1019.2234999999998,378.33333333333326,1296.783908,27302.47629501489,1706.0,869.8799999999999,358.0,260.0,24320.935524851477,5606.410774000001,200.78220240516796,887.444,327.30555555555566,1122.3681039999997,24358.590630121915,1516.0,908.05,333.0,246.0,27345.58003304334,5017.458467000001,179.68660934943006,921.7554999999998,347.05555555555543,1189.2117560000004,21273.9686210098,1298.0,730.3700000000001,270.0,213.0,21367.235702953854,4313.0573110000005,145.29897704675201,740.9975000000002,297.6388888888889,949.4813080000004,17617.800529846638,365.48148148148147,3.761481481481478,0.5822221386798758,41.33333333333332,173.4814814814814,72.97440996234937,1753.7896573333335,13.213059327001332,3.8230814814814784,62.575102880658434,2.197605333333332,2918.7445329299926,7.722908093278479,-0.15338820301783063,-0.3974123595739473,19.839506172839496,85.3525377229081,5.826813590147106,40.05641506172837,1.0014974976581765,-0.1352030178326501,-7.841258954427679,-0.09358923456790605,169.04107774074663,176.58984910836756,1.8676268861454053,0.17558757085703733,-7.135802469135806,52.18244170096022,35.75007719182129,847.3048079753089,6.454701847836423,1.8849713305898455,33.74929507696998,1.1061320493827134,1415.1810347137657,-168.37860082304522,-0.6423045267489682,0.017807361682980003,-10.407407407407407,-47.711934156378604,-35.62881234257829,-814.7190169629628,-6.582089588531179,-0.8618452674897134,3.6591506630086874,-0.17620029629629946,-1489.1515745205977,-75.10150891632372,-0.2863237311385469,-0.06012647578470215,-9.913580246913577,-41.657064471879266,-17.149775058874052,-363.8965041358024,-3.13706303908058,-0.3764644718792846,1.3201112635269014,-0.09103728395061014,-689.1896857848919,-5.039780521262024,-0.1264471879286721,-0.07794970787984462,-20.469135802469136,-58.817558299039774,2.9278557673019234,-22.188669358024775,0.45883699252441945,-0.1377916323731108,-2.4760135650053297,-0.049547950617272726,44.97682187013672,-196.30727023319616,-0.33097393689986443,-0.006413141792217955,-7.209876543209877,-7.270233196159124,-49.16277721875257,-955.2077403209872,-8.959640090660763,-0.6176257887517108,-0.6720583752476724,0.04648375308643085,-1927.534409159954,178.7242798353909,1.6316872427983475,0.0747372358509775,9.962962962962964,94.72427983539092,13.011134384526136,849.5895696296298,2.868140367607404,1.841335390946505,25.14854823959762,0.6849851851852023,997.2574760324776,60.526748971193406,0.3400823045267465,-0.05760239096642718,4.518518518518519,25.674897119341562,5.820321167756976,289.44871074074075,1.231254149965406,0.44198230452675064,-2.4924839963420213,0.07925451851852475,386.1725534569332,0.7413714001157458,0.6323416863331239,0.42951825419686596,0.32908781636381795,0.28592466119801957,0.2009440094870278,0.17487473773836937,0.10531951611298457,0.1054406259190659,0.05578810425454114,0.06737442738202591,0.03544597529302682,0.04251000081718424,0.017684717514339063,0.026959033295343833,0.009006037194179707,8.028652203572571,5.665325249358307,3.554778026565318,2.1652928914777787,0.45609586387380463,-0.35084537582771314,4.026402191649537,0.9725786950244412,6.022039693618558,0.9910626988493387,13.642554683459243,10.925630490768837,16.01390824743798,11.676342826161175,2.0211142210496673,0.7415704848099227,3.5008373104031776,2.2152854341159927,7.0082937558511595,1.152220712871535,3.713758343280553,2.4112867632303088,20.930317600978086,14.701440214027636,0.19789780025279827,0.511693332885521,0.6774065203755648,0.7314490358210183,0.7499675543395368,0.7684860728580553,1.6918991772927563,883.1718169872787,0.0,2.0,5.0,0.0,6.0,2.0,7.0,0.0,2.0,4.567500700646678,2.684727504850342,1.6904483799100793,1.3661932872373583,1.2550821761262476,1.143971065015137,145.65300729775075,979.9582311998162,53.392983875408305,18.147374651848445,35.74095779201278,,12.0,522.0,5.969305287951849,4.794537184071822,10.82998093879356,5.563451491696996,16.70000751346326,29.531997720943007,12.13273413692322,12.13273413692322,53.33035581897482,5.106527394840706,12.666666666666668,29.0,14.5,0.0,14.5,0.0,0.012820512820512775,0.0,0.08044711378044705,0.04549745824255619,-0.03494965553789087,0.01699905033238358,0.07210810810810775,0.0,0.5209876543209878,0.7589743589743586,0.44054054054054076,0.4754901960784316,0.741975308641975,29.36835100757484,0.8877024448608495,1.1457024448608495,21.57412789174997,5.073428328237034,6.9530827892752125,50.94247889932481,12.026511117512246,0.6418918918918922,0.28947368421052627,0.07894736842105263,0.3157894736842105,0.375,0.376630348612289,-0.6252328020111869,-0.052950366567069924,-0.011578385222429387,-0.026051366750466126,0.6233696513877109,1.0348373551465793,0.03749848758934565,0.01916365472493665,0.03449457850488598,-6.81000208007095,0.9477712953847937,0.7699284026332077,1.584673966241083,0.9158986175115209,0.5128171892155668,1.029277745293771,0.9512155966628311,1.0278149736296782,0.795807419193138,0.8146322114989394,0.7358111140541899,1.010193366399862,0.6946179570328335,0.3818442300118157,0.43324274316755573,1.8079838709677423,0.9623505550811277,0.794772755075787,0.6999493364652017,0.7972421078063906,0.43247521874927314,0.2907384131003074,0.3075101929130133,0.7829704946999104,1.1243853650799247,0.6718367381886056,0.5690372455817685,1.3240708274894812,1.0925235770244686,1.2525471847397818,1.1318176540702336,1.258075491760461,0.7470787975032236,0.5375899170007912,0.5587253973310397,1.2439104893579933,1.0063221364111536,0.7226785825335297,0.5850977778917859,0.9684422750424451,0.9711942109757746,1.0560293266098109,1.0104656645038856,1.0630688134238673,0.7734659685847854,0.6480218918224321,0.6416233398676124,1.0660441206727636,0.9429928089454838,0.6422325533826997,0.543786241599867,1.2432944216717166,1.030456921646985,0.9655818780296983,0.9468800354270631,0.9765619702124838,0.6996531337830642,0.5861510866191483,0.546292320516941,0.991375623051733,1.100537605952716,0.4734125351522616,0.4044211558211548,1.0249897267310462,0.8377149205589434,1.2269879148584002,1.1099770241169196,1.2406200289868827,0.5837406885964949,0.3470087083634449,0.29969396567028755,1.240791845156393,0.7729774089408769,0.4357056701175942,0.4077725291958918,0.7365351382488481,0.635565984506527,0.887072918988933,0.7788288575609981,0.8890240559880268,0.4895800608362679,0.388690339180902,0.3575722151852216,0.8712747794988688,0.8991978203191217,0.8480801765190306,0.8283178516781942,0.7382697947214079,0.823946122195482,0.9184482352706866,0.9001175944954324,0.9185154038501353,0.8560135287592147,0.9018569436950437,0.8368877509315377,0.9150673867761193,8.5,0.18987858381797776,5.333333333333336,2.875,2.693333333333334,1.4027777777777781,0.7518367346938776,0.49826388888888884,0.27966742252456533,0.19812500000000005,4701.317122045428,5478.049622647091,2344.5347323417054,2060.183074146867,14.381826950264292,0.4756616210791062,7.540943829022401,0.9071653729754323,0.0,0.375,1.1873868015167897,3.070159997313126,4.064439122253389,4.38869421492611,4.499805326037221,4.610916437148331,0.30357142857142855,0.017261689437997975,0.12121212121212127,0.05989583333333333,0.06412698412698413,0.03791291291291292,0.025061224489795916,0.01845421810699588,0.012159453153241968,0.011006944444444448,0.6706628097892564,20.727040816326532,7.43801652892562,4.077562326869806,156.12812436484657,0.0,4.19621882615377,130.06859614545732,,105.48866065665692,105.35856928883474,105.76994324147624,105.49133985008959,110.59458760360033,105.45685876537597,105.49415185265822,107.9168820472143,0.02037610747582377,-0.03932228661452717,-0.6582007717649515,0.4628456221198156,0.4744266194949374,0.07699566337958258,0.02202420834677233,0.07308903305316802,-0.0341018990193795,-0.12083422389556583,-0.04106595508115194,0.055847263970454704,0.26091203891366027,0.2681173690429306,0.16285414442980106,-0.09322580645161298,0.16242954739538862,0.2645453617719389,0.26088909487718787,0.2637950009585481,0.26624714211533806,0.2912439373263404,0.27180099065406904,0.26182413367239465,-0.18027528594843228,-0.06681850095039105,0.011968109054837951,-0.09852734922861152,-0.1076189061745814,-0.19104928953483505,-0.18177954936679708,-0.19492838184036185,-0.0882125588888513,0.022881968991993157,-0.03137412390804784,-0.19964456604806585,-0.0584014251274721,-0.021634087187247453,-0.02935061412647452,-0.06816638370118845,-0.06824576385455526,-0.06679254547169035,-0.058971277731315275,-0.06747766095327484,-0.027986629688715296,0.005995827409472006,-0.011773612847361234,-0.06710932084614747,-0.0041139729512437275,-0.010029180148795044,-0.03994302587983441,-0.14774549991088937,-0.10115073767049933,0.01197000333441466,-0.003774582647175637,0.01036024973982056,-0.010752871993443018,-0.011805017420805189,-0.006726531504955807,0.00459735313970816,-0.18474177615867024,-0.03026418445498646,-0.0037885780111852584,-0.05999589069241834,-0.014414159600102268,-0.23171808120556256,-0.18733306374043635,-0.23322832152275305,-0.05556559570645052,-0.003694022469500342,0.007275210985494895,-0.22714342106935034,0.1571819445248711,0.13943200360096733,0.04126033923507045,0.07747695852534565,0.17550628278638528,0.05730982052532048,0.1557098712065009,0.06977205189207977,0.15481171591547008,0.12918016210972824,0.10018805751160742,0.10982360472151351,0.06774883001068652,0.03698664470621911,-0.04047358030681522,0.04472140762463345,0.060544600574489585,0.032628430691625236,0.067517125395851,0.03812098826363285,0.0472945564034585,-0.016294860048456553,0.014753469396221098,0.05412590213952914,6.941843593534025,19.54787523995496,8.78056401589082,9.558098341683358,26.228343647703895,31.76720814562357,33.31661283459323,33.836131353111746,35.17068690866731,52.037343043077364,48.620516204481255,0.0,3.416826838596109,0.0,3.416826838596109,6724.5834323522395,6167.49314385928,913.6682520207023,126.0,44.0,57.0,72.0,100.0,108.0,115.0,116.0,132.0,348.2089301360008,28.0,4.976733742420574,5.849324779946859,6.776506992372183,7.676473646389156,8.6020856584342,9.51332968849511,10.43878137346933,11.35640030162027,12.282473344518774,0.580246913580247,0.9525925925925928,1.1154227257283127,0.5372945170630624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6692637391882902,0.9417574437182279,0.9831674354616821,0.6113923604043696,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,5.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,5.106527394840706,0.0,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,58.53935275620742,76.11845750981367,0.0,5.563451491696996,222.32916401206822,-369.0820102422689,-31.25720159399046,-6.834852041523498,-15.378417093427872,367.98217130981897,610.8762209575473,22.135782281417846,11.312522610324947,20.36254069858491,0.5,0.8243826730654739,0.28772232578867496,94.26390692600326,0.20190650509698924,48.08769019094349,0.17561732693452609,6.0,0.10714285714285714,0.20632667468658744,0.5334874046032947,0.7062586576584547,0.7626029550145407,0.7819102153335895,0.8012174756526383,6.103720000000005,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,108.00230000000006,9.901064578912528,0.0,0.0,0.0,58.2903101830987,0.0,76.35784704455014,0.0,0.0,4.04305126783455,0.0,5.4510384535657,0.0,7.051855622955894,0.0,8.740176729929082,0.0,10.478892321614516,31.33333333333334,11.633108360628203,0.0,0.0,0.0,0.0,0.0,6.498739755965136,0.0,51.44000000000001,4.31614772297808,11.07665062264678,0.0,0.0,0.0,0.0,0.0,0.039373075651034206,60.23282718932888,0.0,0.0,0.0,11.075832682792555,10.82998093879356,6.923737199690624,78.7118381788683,42.97713809436816,0.0,5.573104530069267,0.0,29.013903921405372,36.14024191616767,31.971437582992593,260.13719229091464,,210.9388597748523,210.67318253371346,211.5132504543558,210.9443311495486,222.0217092566923,210.87391431071615,210.950073736052,216.14068292370402,31.971437582992593,260.1371922909146,,210.4773213133139,210.14571000624096,211.19361811119586,210.4841485419817,223.35376373587897,210.3962756702868,210.49131410487865,216.63175305054463,5.090227463996603,194.85428134557588,,157.1650152505562,157.01124146210634,157.49783545394297,157.1681831909218,163.28374973317145,157.12741509058293,157.17150821203046,160.05377648554835,1.2296706762689458,10.00527662657364,,8.11303306826355,8.102814712835134,8.135125017475223,8.11324350575187,8.53929650987278,8.110535165796774,8.113464374463538,8.313103189373232,2.5451137319983026,130.06859614545732,,105.48866065665692,105.35856928883474,105.76994324147624,105.49133985008959,110.59458760360033,105.45685876537597,105.49415185265822,107.9168820472143,50.854901960784304,0.0,11.456914088614957,0.0,0.0,0.0,9.092131807558118,53.09104151493083,2.3736798424531527,0.0,0.0,0.0,0.0,0.0,0.3465880568378763,0.0,0.0,33.01518746183596,486.6424365535066,64.11888728190664,165.7886398549088,219.479712601683,236.98948760600993,242.9894876060099,248.9894876060099,924.0,131.47210952766645,103.66889876838053,61.76501439589974,37.3,37.3,1.0,8.575980832899326,5.807354922057604,4.133947439980521,5.019895886497384,,5.015882932462221,5.016381512849923,5.014790728667284,5.015872619840382,4.993985928147663,5.016005206589155,5.015861794103877,5.00592581283268,0.15899797846078928,0.19307291871143784,,0.19291857432547002,0.19293775049422782,0.19287656648720325,0.19291817768616853,0.1920763818518332,0.19292327717650598,0.19291776131168759,0.1925356081858723,2.374744192123102,2.5689206387744457,,2.56812090926238,2.5682203046463097,2.567903136491348,2.5681188532669394,2.5637458191292786,2.56814528635376,2.5681166949688707,2.5661338182773226,293.7800000000006,368.48246223356375,155.07624103425658,,155.7972621409447,155.74981025816618,155.89967687543745,155.79823884340115,157.60360383188672,155.78566700424443,155.79926393713714,156.67137433322233,14.172402393598606,5.964470809009868,,5.992202390036335,5.9903773176217765,5.996141418286056,5.992239955515429,6.061677070457181,5.9917564232401705,5.992279382197582,6.025822089739321,6.864904563213732,5.999428318654896,,6.00406700540175,6.003762384448133,6.004724148449106,6.004073274442564,6.015594489143366,6.003992578110515,6.004079854044305,6.0096618995474325,0.0,11.07665062264678,9.092131807558118,7.791085560346474,-0.9063846718924278,11.633108360628203,2.3736798424531527,15.773061811593037,0.0,361.2795097981387,131.24342568896287,-217.8732943094002,-18.45148041137393,-4.034690635359263,-9.078053929558342,217.22404692054667,360.60715770983796,13.06700319693834,6.677910327959961,12.020238590327931,1631.0,48.0,3.5675576719794275,2.57575604139036,0.408248290463863,0.3535533905932738,1.0483864369238964,0.4811545287190235,0.16666666666666666,0.10206207261596575,0.0,0.0,0.0,0.0,0.0,0.0,0.18055555555555555,0.0798611111111111,0.46500340269657364,0.24094550293546274,19.27565640300939,16.440883844661222,12.026511117512246,9.214458858186903,12.580685092712862,8.841536417429223,9.967860051087055,6.00321241844012,7.591725066172745,4.0167435063269625,6.737442738202591,3.5445975293026826,4.591080088255898,1.909949491548619,3.100288828964541,1.0356942773306663,6.9491095245466346,3.9979138168062502,9.712933613262898,5.066622303543715,16.49219227121083,8.426038678563025,91.44968051586778,51.49628091760589,35.507326174995605,31.80835626558499,30.6957970056847,27.412588669947514,144.0,173.0,60.35420399999998,28.957795999999995,0.3148148148148148,134.02,11.01388888888889,5.388888888888888,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,12.0,12.0,54.0,0.0,0.0,56.0,12.0,2.0,8.0,48.0,14.0,28.0,42.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,1.0,1.0,0.0,26.0,2.0,0.0,0.0,2.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,2.0,3.6109179126442243,7.253779959672162,4.248495242049359,4.816241156068032,5.341137363730965,5.904339527297615,6.210349041501808,6.546516364527791,6.650319474678427,7.001900007184228 +3519,NC(N)=NC(=O)Cc1c(Cl)cccc1Cl,0,46.75,6.5146875,3.2916666666666665,7.967078189300412,165.03743345393923,194.39511720833335,1.7866508393183749,6.7338375,5.448358037392674,8.184945583333333,251.90337621158037,31.916666666666668,6.588166666666669,3.7916666666666665,7.6759259259259265,152.93948126761254,124.49253454166661,1.9492229479166665,6.779916666666668,3.737825788751715,8.051215000000001,284.1852432405166,31.027027027027028,6.426072972972972,3.5405405405405403,6.024024024024024,154.03074986187423,121.39017945945946,1.8125242987715402,6.622254054054054,3.897341786230676,7.958302486486487,253.13126614122277,28.977777777777778,6.512155555555555,2.933333333333333,4.311111111111111,161.97006004904398,110.3535473111111,1.6817916747044002,6.730400000000001,3.325605852766347,8.184814044444442,227.15879332524509,32.883720930232556,6.39662558139535,2.558139534883721,4.499856445592879,160.37326910484148,126.59263479069766,1.625799107308023,6.692018604651166,3.8263027119377018,8.216267558139535,209.81100566194868,28.72222222222222,6.757338888888889,2.2777777777777777,4.19753086419753,168.71085223755765,108.97159691666667,1.2907396953721113,6.938641666666666,4.296124828532236,8.480911666666666,183.44660731140763,20.82758620689655,6.15803448275862,2.310344827586207,3.8352490421455943,168.88629492878928,79.47071351724135,1.2390921093272411,6.262586206896553,3.3155952887753646,7.8043471724137925,169.00990221267108,35.95238095238095,6.721733333333333,2.4285714285714284,2.7301587301587302,164.25570809397385,140.70123604761906,1.5301230183809524,6.966290476190478,3.977660199882423,8.378397523809529,210.69565041874608,13.130434782608695,6.159739130434781,1.5217391304347827,0.782608695652174,169.85655316095742,34.251520434782606,1.2286373004347826,6.450521739130434,2.6274825550187866,8.120570782608697,131.4697357241378,19.1875,0.12432482638888882,0.026118944983516617,0.6510416666666666,3.7036179698216736,1.5340102852166222,89.25487366493057,0.27650304400453996,0.1396414930555555,1.8502720595395346,0.10324422222222222,49.08107239589327,-0.6770833333333334,-0.03181510416666662,-0.021842225191479516,0.13541666666666666,0.7071759259259262,0.23460097974548524,-2.9296255347222218,0.04292174911458333,-0.030412326388888886,-0.3852148348193872,-0.02053644444444444,5.879069101918979,1.8327702702702702,0.04840681775525524,0.014651223818222184,-0.05532094594594594,-0.1544020872724577,0.3650082306833594,8.580815667276653,0.025955146359226966,0.040955466403903906,0.45229066264767276,0.024863847597597598,2.266224047011924,-2.8430555555555554,-0.0544590856481481,-0.013416805099636065,-0.0954861111111111,-1.1631973022405122,0.24885883954703295,-12.896430384375,0.04031912604050543,-0.057673715277777766,-0.47823372414576587,-0.039723898148148154,-0.04040532103524362,-1.4549418604651163,0.025124301518087838,0.0076326131359990895,-0.09193313953488372,0.6801268861454047,-0.3828443829474544,-6.977537808341407,-0.057673512082474024,0.01247420461886304,0.6170879955900834,0.00456717506459947,-9.242289577472535,-0.4444444444444444,-0.02414866898148144,-0.0013793642884356013,0.13368055555555555,-0.5821330589849107,-0.14264045405536951,-2.416623682291665,-0.05180242555514989,-0.007929571759259228,-0.7246077542591741,0.005319953703703685,-5.795769774249346,5.303879310344827,0.00034184027777775327,-0.002557922955715628,-0.14816810344827586,0.2270972281349037,-0.20410057185725525,25.37134037242576,0.11379941475373592,0.011000460967432901,-0.10850399038481186,-0.006370087164750942,23.280077372940873,1.7648809523809523,0.009061284722222238,0.011016600764620185,-0.3474702380952381,-2.554783950617284,-0.8272353078890056,7.497463333085323,-0.12810643838793473,0.03123410218253973,-0.3473611145132493,0.03393713888888888,-21.236457345675017,-19.796195652173914,-0.06310326841787436,-0.008715728098204211,0.06453804347826086,-0.1808053020814694,-0.4190839394435212,-92.8481467482639,-0.2753201641471451,-0.10413207276570045,-0.16043218723746006,-0.06392578381642512,-47.531394742210146,,,0.4974603174603175,1.2833333333333334,0.6666666666666666,0.06666666666666667,0.6166666666666667,0.05,0.6338489683151588,0.02742038713167473,0.033153720465008064,0.8426613220732933,0.2705781665335464,0.19628235049298523,1.476510290388452,0.4668605170265316,1.9376865269147798,1.2311174420430855,0.3540878963352802,0.11678500602116679,0.2356961825152471,0.706569084871694,10.208844469499999,1122.0,156.3525,79.0,191.20987654320987,3960.8984028945415,4665.4828130000005,42.879620143641,161.6121,130.76059289742417,196.438694,6045.6810290779285,766.0,158.11600000000004,91.0,184.22222222222223,3670.547550422701,2987.820828999999,46.781350749999994,162.71800000000002,89.70781893004116,193.22916000000004,6820.445837772399,1148.0,237.76469999999995,131.0,222.8888888888889,5699.137744889346,4491.43664,67.06339905454699,245.0234,144.201646090535,294.457192,9365.856847225243,1304.0,293.04699999999997,132.0,194.0,7288.652702206979,4965.909629,75.680625361698,302.86800000000005,149.6522633744856,368.3166319999999,10222.145699636028,1414.0,275.05490000000003,110.0,193.49382716049382,6896.050571508184,5443.483295999999,69.90936161424499,287.7568000000001,164.53101661332119,353.299505,9021.873243463793,1034.0,243.2642,82.0,151.1111111111111,6073.590680552075,3922.977489,46.46662903339601,249.7911,154.6604938271605,305.31282,6604.077863210675,604.0,178.583,67.0,111.22222222222223,4897.702552934889,2304.6506919999993,35.933671170489994,181.61500000000004,96.15226337448557,226.326068,4901.287164167461,755.0,141.1564,51.0,57.333333333333336,3449.369869973451,2954.7259570000006,32.132583386,146.29210000000003,83.53086419753087,175.94634800000009,4424.608658793668,302.0,141.67399999999998,35.0,18.0,3906.7007227020204,787.7849699999999,28.25865791,148.362,60.432098765432094,186.77312800000004,3023.8039216551692,460.5,2.983795833333332,0.6268546796043988,15.625,88.88683127572017,36.81624684519893,2142.1169679583336,6.636073056108959,3.3513958333333322,44.40652942894883,2.4778613333333332,1177.9457375014385,-16.25,-0.7635624999999989,-0.5242134045955084,3.25,16.97222222222223,5.630423513891646,-70.31101283333332,1.03012197875,-0.7298958333333333,-9.245156035665293,-0.49287466666666657,141.0976584460555,67.8125,1.7910522569444438,0.5420952812742208,-2.046875,-5.712877229080934,13.5053045352843,317.49017968923613,0.9603404152913978,1.5153522569444446,16.734754517963893,0.9199623611111111,83.85028973944118,-127.9375,-2.4506588541666647,-0.603756229483623,-4.296875,-52.343878600823054,11.198647779616483,-580.339367296875,1.8143606718227443,-2.5953171874999996,-21.520517586559464,-1.7875754166666669,-1.818239446585963,-62.5625,1.080344965277777,0.32820236484796084,-3.953125,29.2454561042524,-16.462308466740538,-300.0341257586805,-2.479961019546383,0.5363907986111107,26.534783810373586,0.19638852777777718,-397.418451831319,-16.0,-0.8693520833333318,-0.049657114383681644,4.8125,-20.956790123456788,-5.135056345993303,-86.99845256249993,-1.8648873199853961,-0.28546458333333224,-26.085879153330268,0.19151833333333268,-208.64771187297646,153.8125,0.009913368055554844,-0.07417976571575322,-4.296875,6.585819615912207,-5.918916583860402,735.768870800347,3.300183027858342,0.31901336805555414,-3.146615721159544,-0.18473252777777732,675.1222438152853,37.0625,0.190286979166667,0.2313486160570239,-7.296875,-53.65046296296296,-17.371941465669117,157.44672999479178,-2.6902352061466295,0.6559161458333344,-7.294583404778235,0.7126799166666664,-445.96560425917534,-455.3125,-1.4513751736111102,-0.20046174625869687,1.484375,-4.158521947873796,-9.638930607200987,-2135.5073752100698,-6.332363775384337,-2.3950376736111103,-3.6899403064615814,-1.4702930277777777,-1093.2220790708334,0.7614856834587246,0.614473790076924,0.46686051702653164,0.32091367639946916,0.3259874562560076,0.18108982611409602,0.19677469797446143,0.10689593240212582,0.13773033942900456,0.060270700448643806,0.08599460544263364,0.0314946408609785,0.05841310993912406,0.019176392945919243,0.0417199802817146,0.00977627638913567,17.002123897133533,5.693811272736227,3.5438331384715167,2.187706693130248,0.40306096128186586,-0.36110827017292535,3.230056295600655,0.9778382482568935,6.021981716176725,0.7730833712270194,14.557339801508517,10.952499574269222,35.451526957073455,11.70503759374423,2.2124180990513747,0.75173497296206,3.489089183669034,2.2396611350909477,7.008269292289368,1.2881130204614601,3.7019897036359333,2.4361722969481443,22.45704545075022,14.702710821477266,0.3964744007125053,0.725003908497528,0.7829402499953166,0.8408765914931052,0.8408765914931052,0.8408765914931052,2.3987640191095942,393.5685257115055,0.0,1.0,0.0,0.0,5.0,1.0,1.0,0.0,0.0,2.658897397005212,1.0629072918469555,0.7814536459234778,0.5,0.5,0.5,-14.65513051565756,614.9723079108542,51.876198961031335,25.623846162952262,53.02717225457488,,8.0,187.0,5.907179729351506,4.794537184071822,12.380376191669844,15.608718119179649,0.0,0.0,18.19910120538483,0.0,4.992404732635669,34.6692147347894,7.461904761904762,19.25,10.0,1.0,9.25,0.0,0.0025396825396825306,0.75,0.25575396825396796,0.07781746031746017,-0.17793650793650778,0.13106098579782777,0.17477081899518232,0.0,0.6890873015873017,0.9225396825396824,0.43333333333333374,0.6112698412698415,0.7914786967418547,9.507734524727383,0.411305806975121,0.49730580697512095,12.639919831099398,4.058672498003196,2.9442352573947783,22.14765435582678,7.002907755397974,0.5392291810048176,0.3433312061263561,0.0,0.33503509891512445,0.1111111111111111,0.5179424423435306,-0.7799359246420999,-0.07310350626614032,-0.032497330193420826,-0.07799359246420998,0.4820575576564694,0.7258992046690433,0.053921730099427835,0.030245800194543475,0.05184994319064594,-2.9103247061838133,0.5400380021715527,0.9627348274220057,1.9031425135766054,0.9506666666666667,0.5917179795828607,1.1075368379706907,0.5395005064572392,0.6033576734650461,0.8480720097969132,0.8942345112584078,0.8234775614293185,0.6785855008482146,0.5669513161369839,0.33389448495207236,0.2513652878253902,1.273081081081081,0.9533478940641142,0.8890718385821808,0.5682401387073448,0.7633172806642037,0.4076510409220038,0.42349993055182483,0.4634270410932112,0.8511584754890971,1.0860417420678008,1.393566825999507,1.3309687860027213,1.1939555555555554,1.3191941171477735,0.8675434453652018,1.0811537636925277,0.793277403131425,1.3524696384798212,1.2046244249599602,1.35272073336361,0.9017738366920467,1.3990606772214227,0.7023876673919559,0.5822974668147985,1.1296744186046512,0.7680587998107191,1.102118618411016,1.3966551658595574,1.3242817799159319,0.935265633996942,0.6124720709897099,1.0830578947126046,1.196280090867486,1.0065448184340693,1.681266358613865,1.144171049280545,0.5724444444444444,1.3311824347785828,0.9825887908102654,1.0082298419493572,1.1263336134035893,1.3962677242691166,2.2789018724142354,1.3417368503985871,1.0069347314831685,0.470178591486016,1.0879471151144502,1.01897195483446,1.2435862068965517,1.078590580401366,1.013173481119758,0.46786399328236444,0.49850137550309775,0.9271540872380547,1.164728775134428,0.9586177384635217,0.5584819949417326,0.8788066801096117,0.8950623576512576,0.9822161033277481,1.6121904761904764,1.4894061701163719,1.6098747341623363,0.8844022895084004,1.3397697518979987,0.7330463763765807,1.094303041493859,0.6289944585084586,1.2655139671991886,2.626492942453855,1.2840355754903916,1.4062344562899216,0.448,0.7247389985879301,1.0501201251652343,2.629050886921289,2.168199094443221,1.7571633709834833,0.6012673920678288,1.675230951853103,2.018551985978406,4.0,0.0,1.7777777777777786,1.3125,0.8533333333333335,0.22916666666666669,0.34530612244897957,0.06597222222222222,0.04081632653061224,0.0,3094.7977864029826,3343.1136778700748,1429.3711263613725,1327.0255461378015,8.788012388550069,0.36077402001564485,5.617525831185572,0.5643919854829346,1.0,0.1111111111111111,1.9260651037159442,3.5220552088742005,3.8035088547976783,4.084962500721156,4.084962500721156,4.084962500721156,0.26666666666666666,0.0,0.08888888888888895,0.06907894736842103,0.050196078431372554,0.017628205128205125,0.03453061224489796,0.0073302469135802465,0.02040816326530612,0.0,0.5547278089073386,13.066666666666666,5.915,4.1652892561983474,96.86938789637945,1.0,3.5918212763179103,52.884939915884246,,39.267622182013874,40.666270345540646,40.18025643262095,39.222746114819685,50.84227157436807,40.71095983871177,40.93053617003279,48.10955034517137,-0.03528773072747014,-0.2559030653069145,-0.8362598567922214,0.208,0.1909419199518508,0.15293312046624025,-0.03282314359348324,0.1552306567513904,-0.2177886079805057,-0.20819361824836352,-0.19891131922367458,0.11978281677502414,0.09551897174047011,0.3893576139317373,0.5609424051189056,-0.08497297297297297,-0.04168952859894781,0.23794379620591363,0.0961383430947387,0.09386929700058132,0.29329009241980836,0.24444549130803578,0.24082555965292474,0.04617307520773617,-0.14817227651103873,-0.438038702566129,-0.5136809740249182,-0.14666666666666667,-0.31407054175636784,0.16222762125215534,-0.14448992928710155,0.14581801869726765,-0.41301273723013426,-0.2584667058447507,-0.3847566216601127,-0.0008232363121435062,-0.07582758881902887,0.2020859569873749,0.2922251699222901,-0.1412093023255814,0.18363851015069796,-0.24957093615144293,-0.07817542641464716,-0.20858183420768084,0.08933021515245654,0.3335120326811043,0.04423661650304373,-0.18830659409646192,-0.02316322837495476,-0.1942385095792875,-0.05281087307722817,0.2053333333333333,-0.15717956434176714,-0.09298533095247587,-0.027075537537186486,-0.18734848197294834,-0.056785211800224,-0.39162227550444806,0.051527858791488114,-0.11808563854310346,0.27642367741210827,0.002749573739266482,-0.09793362470535871,-0.2275862068965517,0.061317670986956105,-0.13305032816545528,0.28425719885808876,0.41156658930621914,0.07877644908205354,-0.0586421817404596,-0.061699212097699824,0.4743188409813306,0.09198076624786722,0.07288395234816965,0.42178582525337993,-0.5337142857142857,-0.6898076344359823,-0.5392632082464748,0.08400060439535614,-0.4633093239502684,0.22367350490955745,-0.18773515641785934,0.3287073906745386,-0.43268120089918655,-1.0317235519048293,-0.5075677179752253,-0.33369372705155637,0.09913043478260869,-0.04881856162129352,-0.273194999722144,-1.0402585644434694,-0.9957220005962197,-0.7457101072692781,-0.08670735009498322,-0.6191705689721956,-0.968426165565755,2.94168275343288,7.944603360181127,4.114023331641588,25.808938539715562,38.892484839554506,42.2730245807414,45.42714652249893,45.42714652249893,45.42714652249893,29.065297903721696,18.466761630646282,5.311318445029203,1.7517750903175018,3.5354427377287063,10.59853627307541,1872.421038654782,1321.9055432850432,859.0712962307608,6.0,20.0,22.0,26.0,26.0,21.0,18.0,12.0,10.0,245.012267268,15.0,4.2626798770413155,5.043425116919247,5.8888779583328805,6.693323668269949,7.541683099882111,8.35772841676521,9.205428327615163,10.028665401264357,10.87504268351396,0.875,1.0111666666666668,1.1355688310554188,0.8537000804817808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7358567115768464,1.0070261437908499,1.0352634134498666,0.6920261126942128,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.46733495432437,0.0,5.959554568743835,0.0,5.907179729351506,4.794537184071822,0.0,4.992404732635669,0.0,29.268246848926644,17.696185628620217,10.045266627482652,6.4208216229260096,211.52399285484546,-318.52025913298564,-29.854949648723952,-13.2716774638744,-31.852025913298554,196.8688623391879,296.4520487778686,22.021249312307383,12.35216869907786,21.175146341276324,0.5,0.8586024960698706,0.24554990763040568,84.76881575885163,0.16793659922986873,29.962404005884572,0.14139750393012931,4.0,0.13333333333333333,0.42008306576400545,0.768175357665461,0.8295616058363476,0.8909478540072342,0.8909478540072342,0.8909478540072342,1.3359,,1.9726890756302522,1.0759330907464562,1.1122047674421236,1.9991356491009686,-2.1689498106277254,1.1283495111785946,1.0888521248789345,-1.1903911033130932,60.98280000000001,4.794537184071822,0.0,0.0,16.459739686960038,6.4208216229260096,0.0,33.80781932456448,0.0,0.0,3.4339872044851463,0.0,4.709530201312334,0.0,6.163314804034641,0.0,7.7102051944325325,0.0,9.306650052113591,21.0,4.982475907029478,0.0,0.0,0.0,0.0,0.0,1.3602954144620825,0.0,24.268,0.0,11.262534643487024,0.0,0.0,0.0,0.0,3.3709019904258,-0.7563184996220702,27.253651945330052,11.46733495432437,0.0,0.0,11.866734298095341,11.21535880699783,0.0,5.563451491696996,23.191505938020498,10.045266627482652,0.0,0.0,20.48880193156274,17.660561077844314,17.5073095301954,105.76987983176849,,78.27221915394372,81.18908294564842,80.21221889624962,78.17894080975924,102.55212307298723,81.27147307593307,81.71589205674839,96.69525713166797,17.5073095301954,105.76987983176849,,76.5625552883975,80.25660760033486,79.2483080977998,76.44635658053843,103.85349295936385,80.29357016624493,80.77222021518664,97.40949179365585,4.636876270588774,78.62440235700507,,60.86016204299933,62.03977195647009,61.30821594570225,60.81647881936817,77.72992195140543,62.2353589941623,62.59293794644104,73.26809707319168,1.1671539686796932,7.0513253221179,,5.218147943596248,5.412605529709895,5.347481259749975,5.211929387317283,6.836808204865815,5.418098205062205,5.447726137116559,6.4463504754445315,2.3184381352943877,52.884939915884246,,39.267622182013874,40.666270345540646,40.18025643262095,39.222746114819685,50.84227157436807,40.71095983871177,40.93053617003279,48.10955034517137,24.168627450980395,0.0,0.0,11.72502015621063,0.0,10.128099647266314,0.0,24.846321922796797,-0.017453703703703916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.608626704661106,350.64712484669826,46.225562489182664,84.52932501298082,91.28421251514428,98.03910001730775,98.03910001730775,98.03910001730775,191.0,97.8968545496042,57.74573034733507,46.323687456378245,81.47,81.47,1.0,6.74597137340573,4.906890595608519,3.379117408519608,3.8178819808644278,,3.824062389812496,3.822667422435363,3.8244802128963173,3.824010955140977,3.802857220371819,3.8227888283238616,3.822260771431992,3.807614383058405,0.2252744939013072,0.2545254653909618,,0.25493749265416643,0.2548444948290242,0.25496534752642114,0.25493406367606514,0.2535238146914546,0.2548525885549241,0.2548173847621328,0.25384095887056035,1.6230796617651133,1.7451609216883914,,1.7467784184917612,1.7464135651683517,1.7468876740992516,1.746764968131337,1.7412177924030896,1.7464453241332913,1.7463071806495065,1.7424679549564916,165.5999999999998,82.05557534134772,63.55139460442716,,62.508416977868976,63.101417828394524,63.03822828497369,62.49299831492941,64.08756656481364,63.04136150304793,63.053441304093994,63.91577720554759,5.470371689423181,4.236759640295144,,4.167227798524598,4.206761188559635,4.20254855233158,4.166199887661961,4.272504437654243,4.2027574335365285,4.203562753606266,4.2610518137031725,4.812861873870133,4.55731405049776,,4.5407663274290115,4.55020834694956,4.549206448646312,4.540519631613902,4.565715483872621,4.5492561508713925,4.549447749586235,4.563031343640881,0.0,14.633436633912824,0.8363756613756623,10.652019400352735,-0.7563184996220702,4.982475907029478,-0.017453703703703916,0.0,0.0,199.9842170804692,86.38488738403265,-130.08139806446337,-12.192548128716478,-5.420058252685974,-13.008139806446335,80.39983678950205,121.06889862851459,8.993320881592856,5.044537442854776,8.647778473465326,384.0,19.0,1.304410709337662,0.5548005046890903,0.0,0.0,0.19245008972987526,0.11572751247156893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.18419528592042317,0.07156481799499238,11.422285251880869,9.217106851153861,7.002907755397975,4.813705145992038,6.5197491251201525,3.6217965222819206,4.329043355438151,2.351710512846768,3.5809888251541184,1.567038211664739,2.2358597415084747,0.8188606623854411,1.2266753087216054,0.4027042518643041,0.7509596450708628,0.17597297500444206,2.051050824209047,1.0326203790609758,3.2803236374588383,1.3670915627588747,4.116618533113208,1.4996311761678613,52.99097550607968,35.57117865121195,30.967419276392246,26.753509379627417,26.753509379627417,26.753509379627417,70.0,77.0,29.49313699999999,10.916863,0.25,15.06,6.805555555555555,3.388888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,24.0,0.0,3.0,24.0,6.0,2.0,5.0,19.0,8.0,15.0,16.0,0.0,0.0,0.0,9.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,1.0,2.0,0.0,15.0,6.0,0.0,3.0,1.0,0.0,1.0,2.0,0.0,0.0,2.0,0.0,1.0,3.044522437723423,4.523146350509501,3.597312260588446,3.984343667007772,4.435271149192694,4.755205265481663,4.6913478822291435,4.656338472562491,4.6913478822291435,4.765906277173684 +42884,CC(C)N1CCC(N(C(=O)Cc2ccccc2)c2ccc(Cl)cc2)CC1,0,23.962264150943398,5.797899999999998,3.0,5.124621476822735,161.47817505422876,96.34541488679248,1.531621743979679,5.925233962264149,2.9382550692629117,7.417367792452828,214.4079815083243,23.345454545454544,6.097727272727273,3.672727272727273,5.183838383838383,144.5728836351327,87.99193085454547,1.8517388430909092,6.270218181818183,2.5892630003741117,7.548853854545452,259.2548067948739,19.22222222222222,6.007414141414141,3.323232323232323,3.6734006734006734,153.9739912069711,70.88071224242424,1.5560178322559497,6.140243434343433,2.357401172215987,7.525160363636362,210.5588341727746,15.474452554744525,5.934554744525548,2.846715328467153,2.712895377128954,160.33025479183695,54.66214613868613,1.3588663407910655,6.046116788321169,2.2300621789672883,7.520300321167883,177.43628038616487,13.467105263157896,5.765492763157896,2.5657894736842106,2.415204678362573,159.05917881257332,46.71077167105262,1.269703190366546,5.872635526315788,2.259069742256877,7.375860934210526,161.5575721478739,12.582822085889571,5.749945398773007,2.374233128834356,2.3367416496250852,161.11546227666233,43.72167238036809,1.178828595096638,5.836079141104293,2.407104445959252,7.377185656441715,150.2066169837703,12.833333333333334,5.728955128205129,2.423076923076923,2.284900284900285,161.9947169352135,45.02322357692307,1.196563023882058,5.817692948717948,2.279795821462488,7.364289307692305,151.26411289993501,15.138686131386862,5.739890510948905,2.562043795620438,2.119221411192214,160.32260267242924,54.40967223357665,1.3253769395661605,5.862703649635038,2.089528701450842,7.374689547445256,168.53706130352393,14.828125,5.730812500000001,2.4375,1.7829861111111112,155.97476979180604,51.28652157812501,1.3848043233802965,5.890058593750001,2.2141364454732515,7.391256578124999,171.55264323486074,10.005695977216089,0.06774802420790313,0.00793263008270799,0.5475258098967605,2.971049844195686,1.4134542074111902,47.366280589533645,0.2532113190886429,0.07613734425062293,0.762406734857133,0.04429852616589534,53.81753365871472,0.35107932295543526,0.004813896889867008,-0.003149668201834145,0.17425806660409712,0.9930439236716683,-0.26088068486097277,1.6412699641541812,-0.011780344206363575,0.005315417327421564,-0.009101142243364375,0.0010331547946534794,-0.5908449821914913,0.3486017167042441,0.006141188675649357,0.0006816650714993881,-0.045524666386182994,-0.03646053154906948,-0.13118714077077806,1.609637926761384,-0.004726202460876917,0.005841443628164858,0.038122309442994176,0.0033026991056883674,-0.9267243606524745,-0.8920752638157331,-0.014112726039606767,-0.0016081546280707858,-0.06191776692747248,-0.2656356663029686,0.15400600235972975,-4.158650483763086,0.002830367273534875,-0.014528640215366156,-0.04856023890580743,-0.007780021689927896,-1.155988751799599,-0.42314880740477046,0.0019093740046092467,0.000674333967355919,-0.019844578516422778,0.14373309498314968,-0.06142838514241179,-2.0626493642357278,-0.024252715163526128,0.0009631274474902083,0.06755821140305715,0.0002950789731314744,-3.8578177348454217,0.5718014183157994,0.0004110335534117976,0.0002302439194276647,0.06134095709015938,0.24285094164629775,-0.04808443684639133,2.6946942730661965,0.004036128958318854,0.0023825886119768383,-0.030918227147097726,0.00038016581234288465,1.5246328232985855,0.902383364825515,0.0018315597301713305,0.0001398983228111391,0.016818650674115254,0.10598671502116772,0.05438270127973482,4.339294358095772,0.03048331975737228,0.002843654781791128,-0.04861320906992253,0.0005142009748884111,5.2417511379915505,0.8991380676813058,-0.001374824924057964,-0.0005153894862270226,-0.08367785506960165,-0.3641902646050765,0.20859870772756736,4.249760913702827,0.027955008341723684,0.001892624073299325,-0.02413301087547517,0.002731322890708438,4.896905286408415,-1.890129939480242,-0.00521099590601637,0.00014245164792846366,-0.10177109291562836,-0.6150014805804974,-0.2209966642311602,-8.996057573024208,-0.051045678061189925,-0.008662712764773935,0.011494005572665026,-0.004045732091602891,-10.128163766018599,,,0.4941391941391941,1.1730769230769231,0.5576923076923077,0.038461538461538464,0.6153846153846154,-0.057692307692307696,0.9661751995814534,0.014326910258265439,0.024249987181342362,0.8178696686943882,0.2198236615146811,0.2625499498567879,1.7840448682758416,0.482373611371469,2.028581206470924,1.7206440989520841,0.17114539554272684,0.06899455404785487,0.06779715792825826,0.30793710751883996,6.984550776679259,1270.0,307.2886999999999,159.0,271.60493827160496,8558.343277874124,5106.3069890000015,81.17595243092299,314.0373999999999,155.72751867093433,393.1204929999999,11363.623019941188,1284.0,335.375,202.0,285.1111111111111,7951.508599932299,4839.556197000001,101.84563637000001,344.862,142.40946502057614,415.1869619999999,14259.014373718064,1903.0,594.7339999999999,329.0,363.6666666666667,15243.425129490139,7017.190512,154.04576539333902,607.8840999999999,233.38271604938274,744.9908759999998,20845.324583104684,2120.0,813.0340000000001,390.0,371.6666666666667,21965.24490648166,7488.714021,186.16468868837597,828.3180000000001,305.5185185185185,1030.281144,24308.77041290459,2047.0,876.3549000000002,390.0,367.1111111111111,24176.995179511145,7100.037293999998,192.994884935715,892.6405999999998,343.3786008230453,1121.130862,24556.750966476837,2051.0,937.2411000000002,387.0,380.8888888888889,26261.82035109596,7126.632597999999,192.14906100075197,951.2808999999999,392.3580246913581,1202.4812619999996,24483.678568354557,2002.0,893.7170000000001,378.0,356.44444444444446,25271.175841893302,7023.622877999999,186.66383172560103,907.5600999999999,355.6481481481481,1148.8291319999996,23597.20161238986,2074.0,786.365,351.0,290.3333333333333,21964.196566122806,7454.125096000001,181.576640720564,803.1904000000002,286.26543209876536,1010.3324680000001,23089.577398582776,1898.0,733.5440000000001,312.0,228.22222222222223,19964.770533351173,6564.6747620000015,177.25495339267795,753.9275000000001,283.4094650205762,946.0808419999998,21958.738334062175,530.3018867924527,3.590645283018866,0.4204293943835234,29.018867924528305,157.46564174237136,74.91307299279308,2510.412871245283,13.420199911698075,4.035279245283015,40.40755694742805,2.347821886792453,2852.3292839118803,19.30936276254894,0.2647643289426854,-0.17323175110087796,9.584193663225342,54.61741580194175,-14.348437667353501,90.26984802847997,-0.6479189313499967,0.292347953008186,-0.5005628233850407,0.05682351370594137,-32.49647402053202,34.51156995372017,0.6079776788892863,0.06748484207843942,-4.5069419722321165,-3.609592623357879,-12.987526936307027,159.35415474937702,-0.46789404362681475,0.5783029191883209,3.7741086348564234,0.3269672114631484,-91.74571170459498,-122.21431114275543,-1.933443467426127,-0.22031718404569767,-8.48273406906373,-36.3920862835067,21.098822323282974,-569.7351162755429,0.3877603164742779,-1.9904237095051633,-6.652752730095617,-1.0658629715201218,-158.37045899654507,-64.31861872552511,0.2902248487006055,0.1024987630380997,-3.016375934496262,21.847430437438753,-9.337114541646592,-313.5227033638306,-3.686412704855971,0.14639537201851166,10.268848133264687,0.04485200391598411,-586.3882956965041,93.2036311854753,0.06699846920612301,0.037529758866709347,9.998576005695979,39.584703488346534,-7.837763205961787,439.23516650979,0.6578890202059732,0.38836194375222466,-5.039671024976929,0.061967027411890196,248.51515019766944,140.77180491278034,0.28572331790672756,0.0218241383585377,2.6237095051619796,16.533927543302163,8.483701399638631,676.9299198629406,4.755397882150076,0.443610145959416,-7.583660614907915,0.08021535208259213,817.7131775266819,123.18191527233888,-0.18835101459594106,-0.07060835961310209,-11.463866144535427,-49.89406625089548,28.57802295867673,582.2172451772874,3.829836142816145,0.2592894980420075,-3.3062224899400987,0.374191236027056,670.8760242379528,-241.93663225347098,-0.6670074759700954,0.018233810934843348,-13.02669989320043,-78.72018951430367,-28.287573021588507,-1151.4953693470986,-6.53384679183231,-1.1088272338910636,1.4712327133011234,-0.51785370772517,-1296.4049620503806,0.7122421957741797,0.6278059910580803,0.44791835341636405,0.3491961596370046,0.29561055139017395,0.2026278746397189,0.1874043787966978,0.11287828630737544,0.1214533590308837,0.06337012686789195,0.07807629529613976,0.0362782660185453,0.04808181731386461,0.020637030860579043,0.03162791372746252,0.011903334668896539,17.001103175016652,5.694157450452073,3.5438000103632654,2.194034070601945,0.3763560273227958,-0.39971872788231677,3.190811790614872,0.9778847348437815,6.021984833969105,0.7739952678827223,14.544532055058632,10.954489494664656,35.450517448140474,11.705203518054276,2.20782451136536,0.7518446546212556,3.4890271174512124,2.2440228950076646,7.008270173256532,1.2318816637123269,3.701947902176139,2.4400173119444926,22.45586644385152,14.702710019012006,0.23794959528913065,0.5179872565998223,0.7249867014536818,0.821729396893546,0.836796897838196,0.836796897838196,1.6280896336102761,706.681923483035,0.0,1.0,4.0,0.0,11.0,5.0,1.0,0.0,0.0,4.311121852234606,2.6437226424891174,1.4112073116881358,0.8351823114432158,0.7454674529118295,0.7454674529118295,181.60233462864204,1014.1759131957684,33.0307621752485,19.135394588599404,38.72773638198332,,12.0,504.0,0.0,4.794537184071822,11.949020558499466,17.485295765815298,37.18199382405773,0.0,0.0,59.497213347004966,18.747384130231726,11.600939890232516,12.847619047619046,30.5,14.5,1.0,16.0,0.0,0.0058608058608059085,-1.5,0.0981836283723076,0.044072154260833496,-0.0541114741114741,0.0,0.08582770663562256,0.0,0.5387241689128484,0.7866300366300363,0.44054054054054076,0.49465201465201486,0.7866300366300363,25.120555189117788,0.3724996667149014,0.6304996667149014,21.264611386054092,5.715415199381709,6.826298696276486,46.38516657517188,12.541713895658194,0.6281722933643774,0.15937731653076354,0.0,0.29577464788732394,0.4090909090909091,0.3563198688878744,-0.5718190446126459,-0.022740238621249655,-0.010789038577597089,-0.03176772470070255,0.6436801311121255,1.032972308722141,0.029526316759527157,0.019490043560795114,0.02951349453491831,-5.120045871367532,0.7184929778824322,0.722563463224573,1.5009716690707162,0.895968790637191,0.6345916083916081,1.3907190933778184,0.7264825092241632,1.0615556157807635,0.6926176070249707,0.5796550370117838,0.6444037379969035,1.0383629371364205,0.77851596445491,0.9382776511384286,1.3058227813164893,1.4299299890977393,1.12724864024864,1.2427341637865665,0.7841138678705861,0.9725090835669762,0.877364837972647,0.5648777147040516,0.7967989525635565,0.9920015031480252,1.0084876803716485,1.4611675320259625,1.7650084008690488,1.3276033905062028,1.2306355979786634,0.9820473838770294,1.007663518658292,0.9200157979061533,1.3427336201881697,1.0063178881272565,1.3185501641846777,0.9654670319680618,0.8744522615511954,1.0083002911294543,1.1030401286824918,1.090488330709739,0.9533160425101211,1.0458430937638057,0.8797496909853505,1.046650539319533,0.9639325076826131,1.0331688980234728,0.9445405769273842,1.0434510687460001,0.6897101638451106,1.2809929827364617,1.074591493718006,0.8135176749343821,0.9864653138272768,0.9856344868837591,0.6953345909458419,0.9065250682656393,1.1071781491596915,1.9483603671671368,1.1814300587693827,0.9257875399688403,0.7093443867264405,1.1856179036861336,0.9530373405453098,0.941915908105765,1.0407783530571988,0.9182595466625824,0.7121788082398054,0.8092274071550972,1.0613309281316639,1.6800710827522793,1.1117082665780307,0.859073323718458,0.8775059589323215,0.9430844555543982,1.0897529722408232,1.190265108729699,1.1514183043234132,0.8643486209671324,0.8784044614874486,0.8642374340248851,0.9075890316048962,0.7077417248089115,0.822889969277622,0.8888595921299051,1.4099575046253472,0.8387498311913242,0.763779762674964,1.1059614759427827,1.1054990985576918,1.1306076124617785,1.4048487443623432,1.2686532460876894,1.0059503638428615,0.6915116342069425,1.0331268757098104,1.2109893593162435,5.0,0.14039383736353434,2.88888888888889,1.9375,1.3155555555555558,0.826388888888889,0.7281632653061225,0.39236111111111116,0.2620307382212143,0.23625000000000002,5029.444098086773,5808.547085738291,2448.741650079366,2179.9852312032963,12.624711992339614,0.4320589538928247,7.170092135731162,0.7607461317583507,1.0,0.4090909090909091,1.416798602328592,3.0841978120740814,4.316713142875063,4.892738143119983,4.982453001651369,4.982453001651369,0.17857142857142855,0.010799525951041103,0.07602339181286552,0.04967948717948719,0.03555555555555557,0.022334834834834838,0.020226757369614514,0.01089891975308642,0.00845260445874885,0.011812500000000004,0.4243550054866626,20.727040816326532,9.97229916897507,5.75,161.11654298333005,1.0,4.175617125218549,135.60578518769134,,113.5143565228806,112.62742446077853,110.80975200131876,113.50199014357271,146.78341059837163,113.63099581033286,114.58970503333113,137.11043588466697,0.035087946281285774,0.07105590083475001,-0.3970521969378071,0.31826457028017474,0.3342400753093061,-0.18456960508030068,0.03465059835238249,-0.04652376619166686,0.06981353736117575,-0.011937384374063581,0.023322554587581003,-0.010978670742110739,0.034840326699716144,0.09064749485244704,0.08593178610273552,-0.08314615596800262,-0.012271935329627554,-0.09281315240559061,0.03398278071926678,-0.018665052091223426,0.0767224505353963,0.05000258746420688,0.07455550763291664,-0.01721974787119233,-0.08915674290394915,-0.20831199440293716,-0.20272653726490228,-0.11308648068873223,-0.08940801408024869,0.10895719263646977,-0.08779769979832464,0.011177886058656149,-0.19082147346172093,-0.063693349869092,-0.17562710011597626,-0.021479779417807057,-0.042290792001707836,0.028183464048336174,0.08500761542201138,-0.03624409691328451,0.048377880722516343,-0.04345976319595161,-0.043546787684475785,-0.09578053323530872,0.012649869219497085,0.08861177153126389,0.00666114651368809,-0.07168328744512657,0.05714759069412513,0.006067092852042888,0.029024915699720308,0.11203299640198809,0.08173910044650956,-0.03401909774951981,0.05689056095448697,0.015939765144961416,0.03129329812363851,-0.040553454912608394,0.008581906560935828,0.02832966729703899,0.09018696619208966,0.027034880376004683,0.01763580569779721,0.030717548597912706,0.0356731527840995,0.038475035833908884,0.09161146503562728,0.1203868763335214,0.037349014596971084,-0.06376282743492834,0.011607631661666557,0.0973985759219709,0.08986262122382369,-0.020293210615839392,-0.0649708206299067,-0.15282906039695124,-0.12257965490433198,0.14758080356181189,0.08972122912774963,0.11040189057242475,0.024858025873207946,-0.03165372205165192,0.061657195557247135,0.09099089002224192,-0.18890539386607844,-0.07691731186174552,0.01795768193439249,-0.18587451235370614,-0.20699803531804722,-0.15635219243213141,-0.18992535324827753,-0.2015931919825437,-0.11377744850488478,0.015075949682971887,-0.09132881930319454,-0.1881944986599834,20.896071740481684,22.273931925937866,3.685402916894657,14.883604125614385,29.838731417325164,36.431977360046574,37.9997431487143,38.090175726113934,38.090175726113934,52.743111368244016,44.736746572754186,4.449780284110898,1.7938584052442268,1.7627261061347146,8.006364795489839,6544.5671205515155,4024.9118207870265,2970.0874827018615,88.0,38.0,48.0,60.0,74.0,76.0,90.0,92.0,84.0,370.1811911640007,28.0,4.890349128221754,5.720311776607412,6.580639137284949,7.429520842786462,8.296795865770052,9.154933364704444,10.026457114879811,10.890068980025717,11.764407656955795,0.622641509433962,0.9575094339622644,1.1235640878229893,0.5826750007461713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6770467856739353,0.9484276729559747,0.9888345311877312,0.6157784430217869,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,9.799819461700956,0.0,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,41.932775232540564,56.5180374107767,35.88321405854596,6.4208216229260096,225.18256199986416,-361.3710284191566,-14.371090810073863,-6.81832129092748,-20.0761682455087,406.7848966285062,652.8048847766119,18.65967136517464,12.317073297671923,18.651568136474623,0.5,0.9889203538710465,0.19254198272392672,0.44442410087101525,0.14404502059272087,28.37202015308789,0.011079646128953517,6.0,0.17857142857142858,0.24734955968180156,0.5384498329785686,0.7536265870166048,0.8541910073527889,0.8698537350814733,0.8698537350814733,4.788500000000004,,1.1827731092436975,0.7736575644518693,0.7552942693890363,1.195450703340925,-1.8847129465743477,0.7741273259687342,0.7388049591049789,-0.9543551048072738,108.81500000000005,4.794537184071822,0.0,4.899909730850478,0.0,45.193620926455196,17.98942254267563,65.18338842159281,0.0,0.0,4.04305126783455,0.0,5.342334251964811,0.0,6.838405200847344,0.0,8.418256443556213,0.0,10.040506606194215,32.999999999999986,17.61496892887856,0.0,0.0,0.0,0.0,0.0,2.6881883415628613,0.0,50.74800000000001,0.0,13.192006960191486,0.0,0.0,0.0,0.0,0.0,0.15418461829176144,59.54889665461844,4.899909730850478,5.687386274683562,0.0,35.980283930323054,11.21535880699783,0.0,32.25256913693026,54.59730361615449,5.022633313741326,0.0,0.0,30.881775039547076,35.88347964071857,33.45981831161049,271.2115703753827,,226.93773049889631,225.19533680121458,221.58189961120348,226.91202254073457,294.2917107915796,227.202443364822,229.12257891596187,274.587931425029,33.45981831161049,271.2115703753827,,225.87589932013384,224.53325168443237,220.94280446018206,225.83833233038692,295.45153414331776,226.52647229461581,228.46943617920613,275.1752268741411,4.808671593378866,185.25734142717533,,158.84242037399775,157.0644368736015,154.43284853014495,158.83756318626666,206.63352079193555,158.5757484769887,159.97010165863162,192.47920643383395,1.2869160889080957,10.431214245207027,,8.72837424995755,8.661359107739022,8.522380754277057,8.727385482335945,11.318911953522292,8.738555514031615,8.812406881383149,10.561074285578039,2.404335796689433,135.60578518769134,,113.5143565228806,112.62742446077853,110.80975200131876,113.50199014357271,146.78341059837163,113.63099581033286,114.58970503333113,137.11043588466697,50.26666666666666,0.0,4.467947913478216,6.0553158350754845,0.0,0.0,0.0,52.408230152949756,4.492672237619327,0.0,0.0,0.0,0.7938332781970048,4.485326331149744,0.0,0.0,0.0,32.636257480154704,624.965482821754,75.09032592341536,163.46248403992632,228.78579657237833,259.3151215853591,264.0700090875226,264.0700090875226,704.0,128.7534838672364,7.001975806616416,60.682553770397135,23.55,23.55,1.0,7.7406644019172415,5.807354922057604,4.375879466321436,5.005810456257617,,5.009795637817668,5.006020548312071,5.0057512990909565,5.009858994066668,5.0174720167681865,5.007110597816136,5.007645772752481,5.014418498448551,0.16830305639697832,0.19253117139452372,,0.19268444760837183,0.19253925185815657,0.19252889611888294,0.1926868843871795,0.19297969295262257,0.19258117683908216,0.19260176049048003,0.19286224994032888,2.4316189655084965,2.566110774007684,,2.566906568437483,2.5661527427653246,2.5660989562377683,2.566919214831262,2.5684376695738202,2.566370466770426,2.566477344045729,2.567828907265399,296.2300000000006,212.75648291948994,155.34316378535678,,154.25686803318652,154.81164179311182,154.9250424359848,154.244977744861,153.47503729810384,154.67685321838195,154.60497871218416,153.78390095245302,8.182941650749614,5.974737068667569,,5.932956462814866,5.954293915119686,5.958655478307108,5.932499144033115,5.902886049927071,5.949109739168536,5.946345335084006,5.914765421248193,6.315659684023661,6.001148074654312,,5.994130632158414,5.99772060873714,5.998452847788656,5.994053548092343,5.989049375364937,5.996849567742565,5.996384784492654,5.991059821408529,0.0,17.67733329134123,0.6933661431361651,1.9948221984266963,0.15418461829176144,18.408802207075563,2.427116559586797,6.533503591510746,0.0,357.7383605720211,142.30805143447964,-228.374730451975,-9.082061736959908,-4.308957178339149,-12.687485025109723,257.07481733072143,412.55144401246156,11.792305091489991,7.783989509669087,11.787184114641759,1692.0,39.0,1.6729459846667047,1.0268661903202674,0.0,0.0,0.3563451979096164,0.20152478005007074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2687287392826324,0.12440251516954727,0.29983968427944296,0.13273541295823793,18.518297090128673,16.322955767510088,12.541713895658193,9.77749246983613,11.23320095282661,7.699859236309318,8.995410182241494,5.418157742754021,7.287201541853022,3.8022076120735173,5.777645851914341,2.6845916853723524,3.65421811585371,1.5684143454040074,2.846512235471627,1.0713001202006884,3.6237158722612635,2.036824615805174,5.407583180692979,2.522818800486326,7.911327264146698,3.1975799019883233,88.08702614943533,52.910958938370534,32.297313804595255,27.32341777392934,26.944118524478608,26.944118524478608,132.0,152.0,59.925410999999976,31.884588999999995,0.39622641509433965,134.04,8.38888888888889,5.777777777777779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,53.0,0.0,1.0,55.0,12.0,1.0,7.0,48.0,13.0,28.0,42.0,0.0,0.0,0.0,22.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,2.0,0.0,1.0,26.0,4.0,0.0,2.0,1.0,0.0,3.0,5.0,0.0,0.0,1.0,0.0,2.0,3.58351893845611,6.209972370017663,4.07753744390572,4.51085950651685,4.980176086611547,5.43153621033426,5.374989013961989,5.663177470480727,5.8696499581506805,5.905872616772578 +2187,CC(C)(C#N)c1cc(Cn2cncn2)cc(C(C)(C)C#N)c1,0,21.365853658536587,5.983768292682927,3.2439024390243905,7.073170731707317,164.02779892782272,84.21403702439024,1.509974272978805,6.0661097560975605,4.273373983739837,7.4840919024390224,219.6816912203585,23.738095238095237,6.223807142857143,3.761904761904762,7.023809523809524,146.85933557893088,89.71093035714283,1.834758140238096,6.372216666666667,3.35515873015873,7.617605999999995,262.45562091490166,20.013698630136986,6.03895616438356,3.589041095890411,5.013698630136986,155.5248021143978,75.24318676712325,1.6219875036032463,6.154906849315067,2.700913242009132,7.512969753424657,228.0102483991025,17.21276595744681,5.968255319148937,3.0106382978723403,3.4680851063829787,149.6957786556436,61.13867864893618,1.5842618603191496,6.10212234042553,3.0815602836879417,7.446377914893621,211.05153600294878,12.859504132231406,5.805033057851243,2.4628099173553717,2.793388429752066,162.5811446251741,44.35600874380163,1.2530677744278678,5.888582644628102,2.830406336088154,7.375162115702477,160.63944610590764,15.048543689320388,5.7989223300970885,2.8446601941747574,3.4466019417475726,159.24349486085893,54.32651313592233,1.3576529427774167,5.897815533980585,2.5833333333333326,7.3513833398058255,179.98496949150964,16.357142857142858,5.995887755102042,2.704081632653061,3.4489795918367347,153.84958564550914,57.67950721428571,1.4394400726468983,6.110642857142856,2.895408163265306,7.484059714285718,190.36575090196177,11.8,5.867766400000003,1.872,2.352,169.85362785970375,40.23768427199999,1.0614018008340962,5.919181600000001,3.026666666666667,7.450952511999998,134.12730942573717,10.326732673267326,5.902026732673268,1.5841584158415842,1.99009900990099,176.78643930246054,34.22776428712871,0.9341075227664657,5.92530495049505,3.49009900990099,7.506495722772279,115.71866787949398,6.8887566924449715,0.07649732302201065,0.008300956187172356,0.73051754907793,3.815585960737657,1.6418745257737541,33.01338034622248,0.22041643840980488,0.07555502676977983,1.2745637517350783,0.03518648899464603,50.189922704839674,0.34759638537151955,0.011624279765445764,-0.0023733613548187443,0.27354749157247665,1.7726834933854563,-0.15478173118152616,1.5792108483187444,-0.014475342510261866,0.010747005750545288,0.08683771942249041,0.005499218322427115,-1.6348663532953502,1.549933584868759,0.009535520279025048,-0.0012659971194628886,-0.17388540741404754,0.08752128951292848,0.5614051658845378,7.507690968177778,0.07206081941153425,0.010253092174423224,0.08946620705766027,0.004138982438698421,15.014908875488503,-2.1897426810282625,-0.010076202108673896,0.00045441368197714617,-0.024757299986077216,-1.0122647360360473,-0.44845638295493473,-10.584599038749731,-0.08335000491984038,-0.012594985254471109,-0.07578758844153048,-0.003211586036680293,-18.881819670026406,-0.39812980270500153,-0.009275795104252194,-0.00010316817073368554,0.08907527494948403,-0.22880910123352388,0.06328103612765881,-1.8525503954061193,0.0039001134891900784,-0.008726967910678894,-0.23175904166318426,-0.004340332171424914,-0.20618441191154882,0.9705850077681454,0.0046923525640655194,-4.414954095789924e-05,-0.18303945293774515,-0.05972519824653609,-0.008000812677247015,4.662229169998209,0.022989085413058257,0.006293422200146694,0.000329688946901281,0.001083164805969637,6.3973865758862996,-1.8178258810960426,-0.003751429542667733,-0.0003053560906961208,-0.21807354708688947,-0.34719372579489854,-0.8463528933697778,-8.882919672006459,-0.10640411611941833,-0.005487953599048179,-0.05189907610873026,-0.001201074360499704,-21.233028624239992,0.3126091612135632,0.0005878086853063583,0.00012645607119729721,0.06050684116597266,0.2815847709696609,-0.07992673229434741,1.4977721817775134,0.0034683657129599855,0.0014710610350981558,0.029151695419393216,-0.0003312257751338492,1.5782985320540948,0.46767895111938296,-0.004557525871563953,0.0001807670455848781,0.06349355934998621,-0.20269052485260433,0.3865103971060089,2.3469020273587726,0.0455650460343663,-0.003519938626819255,0.01643882413226452,-0.002340230602953218,8.424531068687587,,,0.47727272727272735,1.3295454545454546,0.7272727272727273,0.0,0.6022727272727273,0.125,0.8681952698596643,0.0287754565902362,0.03659363840841801,0.9307223711773073,0.23519842875693356,0.23212673112433457,1.7989176410369716,0.46732515988126816,1.9744065936010413,1.5384530325242542,0.43595356107678696,0.0,0.0,0.43595356107678696,7.150342575804891,876.0,245.33450000000002,133.0,290.0,6725.139756040731,3452.775518,61.90894519213101,248.7105,175.20833333333331,306.8477679999999,9006.949340034698,997.0,261.3999,158.0,295.0,6168.092094315097,3767.859074999999,77.05984189000003,267.6331,140.91666666666666,319.9394519999998,11023.13607842587,1461.0,440.8437999999999,262.0,366.0,11353.31055435104,5492.752633999997,118.40508776303697,449.3081999999999,197.16666666666666,548.446792,16644.748133134482,1618.0,561.0160000000001,283.0,326.0,14071.4031936305,5747.035793000001,148.92061487000007,573.5994999999998,289.6666666666665,699.9595240000004,19838.844384277185,1556.0,702.4090000000003,298.0,338.0,19672.318499646066,5367.077057999997,151.621200705772,712.5185000000004,342.47916666666663,892.3946159999998,19437.372978814823,1550.0,597.2890000000001,293.0,355.0,16402.07997066847,5595.630853000001,139.83825310607392,607.4750000000003,266.08333333333326,757.192484,18538.451857625492,1603.0,587.5970000000001,265.0,338.0,15077.259393259896,5652.591707,141.06512711939604,598.8429999999998,283.75,733.4378520000004,18655.843588392254,1475.0,733.4708000000004,234.0,294.0,21231.70348246297,5029.710533999999,132.675225104262,739.8977000000001,378.33333333333337,931.3690639999998,16765.913678217144,1043.0,596.1047000000001,160.0,201.0,17855.430369548514,3457.0041929999998,94.34485979941303,598.4558000000001,352.5,758.1560680000001,11687.585455828892,282.43902439024384,3.1363902439024365,0.3403392036740666,29.951219512195127,156.43902439024393,67.31685555672392,1353.5485941951217,9.037073974802,3.0977560975609735,52.25711382113821,1.442646048780487,2057.7868308984266,14.599048185603822,0.4882197501487221,-0.09968117690238726,11.48899464604402,74.45270672218916,-6.500832709624099,66.32685562938727,-0.6079643854309984,0.45137424152290206,3.6471842157445975,0.2309671695419388,-68.66438683840471,113.1451516954194,0.6960929803688285,-0.09241778972079087,-12.69363474122547,6.389054134443779,40.98257710957126,548.0614406769778,5.260439817042,0.7484757287328954,6.531033115209199,0.30214571802498474,1096.0883479106608,-205.8358120166567,-0.9471629982153462,0.04271488610585174,-2.3271861986912583,-95.15288518738843,-42.15489999776386,-994.9523096424747,-7.834900462464995,-1.1839286139202843,-7.124033313503865,-0.30188908744794757,-1774.891048982482,-48.17370612730519,-1.1223712076145154,-0.01248334865877595,10.778108268887568,-27.68590124925639,7.657005371446717,-224.15859784414044,0.4719137321919995,-1.0559631171921462,-28.042844041245296,-0.5251801927424146,-24.948313841297406,99.97025580011898,0.48331231409874853,-0.0045474027186636215,-18.85306365258775,-6.151695419393217,-0.8240837057564425,480.20960450981556,2.3678757975450004,0.6482224866151095,0.03395796153083194,0.1115659750148726,658.9308173162889,-178.14693634741218,-0.3676400951814378,-0.029924896888219837,-21.371207614515168,-34.02498512790006,-82.94258355023823,-870.5261278566329,-10.427603379702996,-0.5378194527067216,-5.0861094586555655,-0.11770528732897098,-2080.836805175519,39.0761451516954,0.07347608566329479,0.01580700889966215,7.563355145746582,35.19809637120761,-9.990841536793425,187.22152272218918,0.4335457141199982,0.1838826293872695,3.643961927424152,-0.04140322189173115,197.28731650676184,47.235574063057676,-0.4603101130279592,0.01825747160407269,6.412849494348608,-20.471743010113038,39.0375501077069,237.03710476323602,4.602069649470996,-0.35551380130874477,1.6603212373587164,-0.236363290898275,850.8776379374464,0.7445667676647265,0.6059057320288395,0.4470066746690391,0.3079061355942431,0.2952186153543301,0.19074349700671053,0.19460865063572336,0.09283762868613185,0.11304932253882115,0.046424157872845234,0.07055894539103365,0.02809892637956583,0.04574534457727671,0.015466348757555941,0.030860363299675248,0.008149813980382089,7.179797531217375,5.679027167329369,3.2702946452482506,2.178458854375938,0.3763799006338797,-0.4084296268232498,4.024769724519874,0.910962845542696,5.164167350790975,0.9910829283041381,14.69309537960361,10.939860335352046,14.171877376158351,11.690408964817632,2.001392437848999,0.9138373428732358,3.2471266835349457,2.2282453356794267,6.028455519356922,1.1876106859417384,3.4053874054956372,2.4241033559211114,20.908495220492394,15.443250268955588,0.24875366643954822,0.5642927478103272,0.641229164950615,0.6616741878314484,0.690718792877593,0.6993183750429043,2.0840700597725097,698.0918659440513,2.0,0.0,5.0,0.0,3.0,0.0,3.0,0.0,2.0,3.9465154031980663,2.1566435216480535,1.720227439340995,1.6042545734345688,1.4395012197232648,1.3907207319183872,95.48105752657042,774.2249726518817,51.5856078807863,18.883535918338573,38.76446866130355,,9.0,328.0,10.82998093879356,10.523783109476973,0.0,6.544756405912575,16.690354475090988,6.3273200747645415,11.009123009909725,45.894050004147324,22.221102954832794,0.0,10.500000000000002,29.25,16.0,0.0,13.25,0.0,0.022727272727272648,2.75,0.1259146341463413,0.033627400103788174,-0.09228723404255312,0.0,0.11055172413793068,0.0,0.5634146341463416,0.7909090909090907,0.43750000000000033,0.5297872340425535,0.7909090909090907,19.100295936912616,0.6330600449851964,0.8050600449851963,20.47589216590076,5.174365432652539,5.106788084735361,39.576188102813376,10.2811535173879,0.6034482758620693,0.2666666666666666,0.09523809523809522,0.18095238095238092,0.4117647058823529,0.4115280455740029,-0.5904525595230784,-0.06224798379726019,-0.014401281939587276,-0.039363503968205225,0.588471954425997,0.844328291681145,0.03334960734161557,0.020593372967832802,0.03247416506465942,-4.013149319073246,0.8126490665350771,0.6049265450861196,1.2654903084568698,1.0334263998759112,0.4200632544879504,1.2654844139775878,0.8190612343993434,1.127438323288642,0.6161449147560258,0.47992250710984313,0.6124764057085168,1.0300231707697654,0.7003572527030545,0.7242249459264598,1.0860366017393681,1.9483735665521393,0.9964931165131068,0.7280945353557734,0.7001521366416179,0.7034612827896503,0.718522746490783,0.391242531101706,0.731716329258458,0.6995417605398891,1.1894866424135526,0.7737991708560672,0.6430600065050245,1.0584586596437728,1.1302071930418167,1.334727846409648,1.1972467337738202,1.4447779726635894,0.8383487654320984,0.7343441243822205,0.7091679201126149,1.394002089192464,1.0299890092636208,1.0152483040730012,0.8173246358824257,0.722938595310523,1.0026878187436057,0.9021405618629682,1.029377762728118,0.9735604599070002,1.0248954188348127,1.3603536259826314,0.9990196394711696,0.9969573348632387,0.8091788654694235,0.7141535024299024,0.7315998550643231,1.542961955662376,0.9830437665180233,0.9544511171121643,0.8116997482880939,0.9227153767255958,0.722709157377442,0.804925946352242,0.711122630041102,0.8898756905735772,1.1741743329456136,0.858519779692392,0.9960776470196725,1.4990360965232996,0.9666673030297244,1.5547646583219281,1.1818685341019495,1.501112611585403,0.8925815696649028,0.7275317120099825,0.8377661319085621,1.4113455719577135,0.9907979274611401,1.1750884658454648,1.106977532624245,0.6570684039087947,0.9521920798253819,0.9673902978625618,0.9876307268561145,0.8977953332626118,1.1442037037037038,1.0831486487362494,1.2080366362027717,0.9125417010548393,1.0222131021392298,1.483808333240939,1.1315489104033392,0.39007320927532485,1.1531396357596468,0.6703941179097281,1.012326081700284,0.6449174507950773,1.4226714338100481,1.6279938022778766,1.5356111557712513,0.737399436828825,7.5,0.0,3.3333333333333344,1.6597222222222223,1.2438888888888893,1.319722222222222,0.7835827664399092,0.3393565759637188,0.18749999999999994,0.04938271604938271,3942.963727356688,4462.24309567865,2042.2254425132608,1852.3811379980202,10.351006424409627,0.45023864413751985,5.6905833264246795,0.8189710668753236,1.0,0.4666666666666667,1.4110366014200175,3.2009084829700303,3.6373245652770887,3.753297431183515,3.918050784894819,3.9668312726996966,0.3260869565217391,0.0,0.09803921568627454,0.050294612794612795,0.04146296296296296,0.03999158249158249,0.025276863433545457,0.01305217599860457,0.011029411764705878,0.012345679012345678,0.6175794606663735,18.340264650283554,7.26643598615917,4.521118381915526,130.38501715597528,1.0,4.007107219411538,95.52364243626585,,75.80079811998607,75.00146294282497,74.27387998840165,75.80751742525446,89.80696445951185,75.4570258859467,75.84964945821118,85.26104174557051,0.050458508100995204,0.15195668693009165,-0.2859142129296321,0.37445711183496183,0.46459010794838657,-0.09427135189187694,0.04783547857738366,-0.06567269943518857,0.14224077748383285,0.06813132674162216,0.1562877820308777,-0.032573597750085885,0.22499467669813336,0.12465168586724773,-0.15251220352412664,-0.23803043148453898,0.022937837179799307,0.341929396596228,0.22741357865938247,0.32693033210869965,0.13570364028411952,0.07019359128632749,0.11762987888130037,0.29916182504980543,-0.31787197295410274,-0.13171966953372552,0.05474232988717146,-0.03389008247279787,-0.2652973216832858,-0.27313681765273384,-0.32061542707064417,-0.378147861934297,-0.166699500919359,-0.05946159094698869,-0.09127327359001257,-0.37620738691047406,-0.05779414493498339,-0.12125646673391774,-0.012428468288161007,0.12193447653915523,-0.059966962764819706,0.03854194406106448,-0.05611513804335688,0.01769429502321814,-0.11550479542903778,-0.18183401289083265,-0.12335223818680342,-0.0041080838702241525,0.14089407582541041,0.06134008849846136,-0.005318609080978461,-0.25056133582113155,-0.015652955761214084,-0.004872974488398576,0.1412224110679923,0.10429841612047218,0.0832958767829318,0.0002586680709007075,0.03078354325532312,0.12746356700942713,-0.26388301434563455,-0.04904001074113836,-0.036785652617706145,-0.298519244831483,-0.09099355364222393,-0.5154796423745739,-0.2690702854069555,-0.4827412913804033,-0.07263518833459306,-0.0407190899930109,-0.03413453273733731,-0.42305362271842173,0.045379620034542295,0.0076840425531914044,0.01523391623156769,0.08282736156351793,0.07379856563766758,-0.048680170768031696,0.04536864041397367,0.01573551291356725,0.019470061728395074,0.022871900585363956,-0.009413436367130818,0.03144652246897969,0.06789018280066346,-0.0595775863980575,0.021776653376899067,0.08691585770954952,-0.05312172938528654,0.23540799923420513,0.07108941897939616,0.20672254012947253,-0.04658774905268308,0.012897608385524976,-0.06650935259011798,0.1678530393089295,7.27410751230321,9.71230902565699,1.5000000000000004,12.028954750574016,29.75528399920843,30.934509146425277,32.327459238827366,33.03026232668543,33.61616476570982,43.43694505922291,33.84596671553359,9.590978343689313,0.0,0.0,9.590978343689313,3287.260252942094,2219.6351286287104,1649.9721318918205,45.0,34.0,41.0,46.0,56.0,64.0,72.0,64.0,56.0,293.16404560800055,23.0,4.74493212836325,5.579729825986222,6.472346294500901,7.334981878871814,8.228710798793687,9.10219821335648,9.99620346103587,10.875534604665138,11.769542476341977,0.6341463414634146,0.9721951219512195,1.131681534716291,0.5957425205756512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6799922155688624,0.9598278335724535,0.993906880073899,0.632614194297856,5.0,2.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,0.0,12.654640149529083,0.0,0.0,0.0,0.0,9.665781456092393,15.62246491777801,0.0,18.19910120538483,44.38530327385348,0.0,29.513179970290683,222.06547401479347,-318.6152898300148,-33.58975937866676,-7.771104630000359,-21.241019322000984,317.5465315413639,455.6096828218669,17.995848502119532,11.112431288338216,17.523449339302573,0.4444444444444444,0.9437050041174446,0.1732359448919982,7.038820614718601,0.09567052175980928,273.5923970392411,0.05629499588255533,5.0,0.17391304347826086,0.26337338400145016,0.5974572865015445,0.6789154005676101,0.7005620156273352,0.7313136263572526,0.7404186220274449,2.9287600000000014,,0.7142857142857145,0.9283387622149836,1.1262479272882393,0.7125008924109377,-2.5909090909090904,0.8059210526315791,0.7013149655604256,-1.5966231412171439,82.84400000000004,0.0,10.523783109476973,14.76446326439343,0.0,45.06968614346863,0.0,47.5440958300049,0.0,12.138442625584547,3.8501476017100584,0.0,5.209486152841421,2.3978952727983707,6.75343791859778,4.442651256490317,8.372629740224884,6.259581464064923,10.033945476892105,26.0,9.098611347316705,8.0512855095742,0.0,0.0,0.0,0.0,2.820861678004536,1.723851095993953,39.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.39894292336793,0.0,0.0,0.0,14.76446326439343,17.374737344706134,22.66222573506152,44.38530327385348,30.853741354913915,0.0,0.0,0.0,24.4254433436017,27.879680838323356,27.105559765634258,191.0472848725317,,151.53666117503707,149.9185314527213,148.44537380159525,151.55026204210793,180.3205404892716,150.84078622165418,151.6355430104623,170.95752616601845,27.105559765634258,191.04728487253163,,150.88731052568647,149.07458712343495,147.42151204951506,150.90253395809793,182.20483800993276,150.1081307192619,150.99798395086196,172.11870663235817,4.8797294268375335,130.61054632801412,,103.3666152640084,102.11744211774928,100.98723446694497,103.37714851395265,126.2628035047484,102.82843367347786,103.44320732059674,118.65540500978726,1.2320708984379207,8.683967494205985,,6.888030053410776,6.814478702396423,6.747516990981603,6.88864827464127,8.196388204057799,6.856399373711554,6.8925246822937405,7.77079664390993,2.441446187434637,95.52364243626585,,75.80079811998607,75.00146294282497,74.27387998840165,75.80751742525446,89.80696445951185,75.4570258859467,75.84964945821118,85.26104174557051,39.352941176470594,0.0,7.518782438901487,0.0,0.0,0.0,0.0,40.75018208302986,0.5593820861678005,0.0,0.0,0.0,0.0,0.0,-1.2248767006802719,18.806734536407156,4.645368008314437,25.937181966212098,509.2345499251961,57.85250065822072,131.23724780177125,149.13030717636065,153.8851946785241,160.64008218068759,162.64008218068756,523.0,119.10417968191534,30.377455630961308,69.31977488361986,78.28999999999999,78.28999999999999,0.8,8.13310116796676,5.523561956057013,4.073873867842657,4.617497848143377,,4.619356734384981,4.620089220434571,4.620704380405655,4.619350340565144,4.600891866272757,4.619678688970155,4.619310162550892,4.607653279723793,0.18517608490193896,0.20988626582469896,,0.20997076065386278,0.21000405547429868,0.21003201729116616,0.20997047002568836,0.2091314484669435,0.20998539495318888,0.20996864375231328,0.20943878544199057,2.193051717415343,2.3183103274334114,,2.318712820782222,2.3188713770538225,2.319004517127839,2.3187114366448562,2.3147075290385897,2.318782515197397,2.318702738844079,2.316176037811459,239.86999999999978,152.83423599294852,118.28487132074932,,118.5754057566903,118.53016139025571,118.49077426747517,118.57579405534996,119.50979309118567,118.55571201065737,118.57823167646079,119.19486391249048,6.947010726952206,5.37658506003406,,5.38979117075865,5.387734608647987,5.385944284885235,5.389808820697725,5.432263322326621,5.388896000484426,5.389919621657309,5.417948359658658,5.817811269545022,5.561553239153419,,5.5640064540633665,5.56362481505313,5.563292463625745,5.564009728756136,5.571855678931928,5.563840354006456,5.564030286038293,5.569217026084743,1.723851095993953,3.9402126637692114,22.917807382212146,1.595984977324264,0.0,10.604680650037793,3.1392987055933483,8.078164525069287,0.0,287.3309623167555,119.82919579790146,-171.92863554603065,-18.125437424471123,-4.193381354781234,-11.461909036402043,171.351920742437,245.85245469831236,9.710775901913491,5.99640133410518,9.455863642242782,1015.0,33.0,2.7978770563625757,1.8661674549571972,0.408248290463863,0.25,0.6969234250586759,0.3333333333333333,0.2041241452319315,0.08333333333333333,0.0,0.0,0.0,0.0,0.14433756729740643,0.029814239699997195,0.17010345435994292,0.045138112284023604,0.17507946927532494,0.051607532186123295,16.380468888623984,13.329926104634469,10.2811535173879,7.081841118667592,10.037432922047223,6.485278898228158,7.9789546760646575,3.8063427761314057,5.200268836785773,2.1355112621508807,3.951300941897884,1.5735398772556866,2.9277020529457096,0.9898463204835802,2.221946157576618,0.5867866065875104,5.369687884561988,2.4802833433722746,6.212803286520353,2.3437933659747605,8.41661088465608,2.9618581273179454,76.4425179218668,40.23444793464405,37.07905786456904,34.462377446829805,33.043565896180176,32.06086774848707,114.0,132.0,46.559066999999985,23.050932999999997,0.2926829268292683,67.05,9.069444444444445,4.833333333333335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,11.0,41.0,0.0,0.0,42.0,11.0,0.0,5.0,35.0,13.0,23.0,29.0,2.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,5.0,0.0,1.0,22.0,5.0,0.0,5.0,0.0,0.0,2.0,4.0,0.0,0.0,0.0,1.0,2.0,3.5115454388310208,6.653588572534838,4.038655656361512,4.586242176102573,5.033293317988839,5.423020845048994,5.762837237437516,6.163709462988655,6.385721241642017,6.494746161256209 +23685176,CC1(C)S[C@@H]2[C@H](NC(=O)[C@H](NC(=O)N3CCNC3=O)c3ccccc3)C(=O)N2[C@H]1C(=O)[O-],0,30.12962962962963,6.630705555555554,3.6666666666666665,9.823045267489713,164.45024634071444,119.48643850000005,1.553309405679222,6.673999999999999,7.7038958111060305,8.119978759259256,227.14579957644935,29.105263157894736,6.584421052631579,4.491228070175438,8.309941520467836,149.49895904508776,111.90069882456142,1.8413561191228074,6.719394736842105,3.467971626597358,7.980195228070174,271.36183947647896,26.85148514851485,6.56020396039604,4.02970297029703,6.917491749174917,156.76544379871305,102.02322742574262,1.6524337383048717,6.657595049504951,3.794432220999877,8.014892376237622,232.67912400426584,21.426470588235293,6.412835294117648,3.25,5.3088235294117645,158.11310054620387,77.8135977132353,1.4464445186399775,6.504175000000001,3.4423565722585328,7.955872426470588,197.5978056925584,21.34013605442177,6.5656387755102035,2.8435374149659864,5.253968253968253,164.45317198241432,78.85958774149658,1.2209809500549254,6.617608843537414,4.30348744436046,8.115902448979591,178.1748119794284,20.330827067669173,6.760675939849625,2.8947368421052633,5.56390977443609,165.64924823130139,74.07534650375939,1.1977975178077673,6.789116541353384,5.475447878956652,8.29028652631579,175.72843244603988,20.221311475409838,6.57962049180328,3.0655737704918034,5.355191256830601,165.1288526041092,74.06518691803281,1.2892659118207457,6.628545901639343,3.9787239425217567,8.11083963934426,186.4719467884944,22.173553719008265,6.546577685950413,3.165289256198347,5.666666666666666,159.83878418277249,82.32212382644627,1.394248983576322,6.618218181818181,4.365944801550863,8.062079619834712,200.089349480597,21.03937007874016,6.577603937007874,2.9606299212598426,4.900262467191601,161.59661812249178,76.43564174015746,1.3499035121589602,6.638598425196849,4.629046369203849,8.123470866141734,187.97849112863983,10.211591220850481,0.1762830246913579,0.03551094716479518,0.7640603566529494,4.829751562261851,1.5993003905672407,46.76818225000001,0.2654439654011303,0.16016172839506157,3.499005210597227,0.11369891529492453,46.92525705725657,0.40049454913002686,-0.012926299545159125,-0.020069838382920015,0.22034510143671934,1.176457375720966,-0.316942325786525,1.9278895482456213,0.003201920209568205,-0.009218258609486597,-0.06645635621134943,-0.010138823352104536,0.858659062227622,1.0352001249507672,0.04093996760787193,0.007740372734881788,-0.03432071602221952,0.5388260362387404,0.20159910594114455,4.691144517326736,0.0235541040396328,0.034564344212199054,0.48954199088789824,0.02689194334093903,1.5167302051854783,-2.3006435084321795,0.003266852759622343,0.002286532750902167,-0.09848301460501896,0.10963962631234478,-0.16289238884052196,-10.35297721323529,-0.0619474104440987,0.00017863108206245422,-0.1838633719211208,-0.001325892010610802,-8.641347263235442,1.0307872120041435,-0.012815866717057133,-0.004852956351105658,-0.09512611629013747,-0.2617943382199703,-0.15572023897574083,4.606323481292518,-0.020726072810681832,-0.006767850844041277,-0.3006299249040221,-0.00804592764060363,1.1670420029449655,-0.48825510277751955,-0.01049889770723087,0.0016726352566679898,0.04574192683354478,-0.7388452842210697,-0.03569082234458553,-2.4114235808270674,0.005772305299471461,-0.011009848695813467,-0.004112154244256351,-0.0027583470688038432,-2.3319307646321104,-0.35655175515527665,-0.03149276968225047,0.00037460844560430347,0.03314668645573321,-0.4580319373546116,0.2103808041251645,-1.474693266393443,0.032171548704422195,-0.027710089050799355,-0.5304293851990913,-0.02049560548921726,4.897764362158031,0.043841898219002744,-0.006224301091725285,-0.002892229378277888,-0.05698964958224218,-0.3589832733117433,-0.08825561609171069,0.26442272107438203,0.000322442990271586,-0.004927384960718247,-0.06662562536971646,-0.00649767424809263,-0.3898114514941125,-1.2826031776892086,-0.013226200544376317,0.0022619092648254653,-0.012529298035276446,-0.6458625113561764,0.03715383119229268,-6.108778899606297,-0.005451739344185725,-0.015020346067852543,0.060204586037706065,-0.00266532809749096,-5.210176299828063,,,0.46354166666666674,1.109375,0.421875,0.0,0.6875,-0.265625,1.0355044048587518,0.025009858579348565,0.03575985857934856,1.007174935185847,0.21337449818111287,0.2589348170636978,2.042679340044599,0.4723093152448107,2.0173603288952595,1.2971282978094576,0.32738230649075484,0.3294729503305233,0.0,0.7202320310858019,8.520919037109454,1627.0,358.0580999999999,198.0,530.4444444444445,8880.31330239858,6452.267679000002,83.87870790667799,360.3959999999999,416.01037379972564,438.47885299999984,12265.873177128266,1659.0,375.312,256.0,473.66666666666663,8521.440665570002,6378.339833000001,104.95729879000002,383.0055,197.6743827160494,454.8711279999999,15467.6248501593,2712.0,662.5806,407.0,698.6666666666666,15833.309823670017,10304.345970000004,166.89580756879204,672.4171,383.2376543209876,809.5041299999998,23500.59152443085,2914.0,872.1456000000001,442.0,722.0,21503.381674283726,10582.649289,196.71645453503695,884.5678000000001,468.16049382716045,1081.99865,26873.301574187943,3137.0,965.1488999999999,418.0,772.3333333333333,24174.616281414903,11592.359397999997,179.48419965807403,972.7884999999999,632.6126543209876,1193.03766,26191.697360975973,2704.0,899.1699000000001,385.0,740.0,22031.350014763084,9852.021084999998,159.30706986843305,902.9525000000001,728.2345679012348,1102.608108,23371.881515323304,2467.0,802.7137000000001,374.0,653.3333333333333,20145.720017701322,9035.952804000002,157.29044124213098,808.6825999999998,485.40432098765433,989.5224359999997,22749.577508196315,2683.0,792.1359,383.0,685.6666666666666,19340.49288611547,9960.976982999999,168.70412701273497,800.8043999999999,528.2793209876544,975.5116340000001,24210.81128715224,2672.0,835.3557,376.0,622.3333333333333,20522.770501556457,9707.326500999998,171.43774604418795,843.1019999999999,587.8888888888888,1031.6808,23873.268373337258,551.425925925926,9.519283333333327,1.9175911468989395,41.25925925925927,260.80658436214,86.362221090631,2525.4818415000004,14.333974131661037,8.648733333333325,188.94628137225027,6.139741425925925,2533.963881091855,22.82818930041153,-0.7367990740740701,-1.1439807878264407,12.559670781893002,67.05807041609506,-18.065712569831923,109.88970425000042,0.18250945194538767,-0.525440740740736,-3.7880123040469176,-0.5779129310699586,48.94356654697445,104.55521262002749,4.134936728395065,0.7817776462230606,-3.4663923182441714,54.42142966011278,20.3615097000556,473.8055962500003,2.378964508002913,3.4909987654321046,49.44374107967772,2.716086277434842,153.1897507237333,-312.8875171467764,0.4442919753086387,0.3109684541226947,-13.39368998628258,14.91098917847889,-22.153364882310985,-1408.0049009999993,-8.424847820397423,0.024293827160493775,-25.005418581272426,-0.18032131344306906,-1175.2232278000201,151.52572016460908,-1.8839324074073984,-0.7133845836125318,-13.983539094650208,-38.483767718335635,-22.8908751294339,677.1295517500001,-3.046732703170229,-0.9948740740740677,-44.19259896089125,-1.1827513631687336,171.55517443290992,-64.9379286694101,-1.3963533950617055,0.22246048913684263,6.083676268861455,-98.26642280140227,-4.746879371829875,-320.71933624999997,0.7677166048297043,-1.464309876543191,-0.5469165144860947,-0.36686016015091116,-310.1467916960707,-43.49931412894375,-3.8421179012345568,0.045702230363725026,4.043895747599452,-55.879896357262616,25.666458103270067,-179.91257850000002,3.9249289419395077,-3.380630864197521,-64.71238499428914,-2.5004638696845056,597.5272521832798,5.304869684499332,-0.7531404320987595,-0.34995975477162444,-6.895747599451304,-43.43697607072094,-10.678929547096994,31.995149250000225,0.03901560182286191,-0.5962135802469078,-8.061700669735691,-0.7862185840192082,-47.167185630787614,-162.8906035665295,-1.6797274691357922,0.2872624766328341,-1.5912208504801086,-82.02453894223441,4.71853656142117,-775.8149202499998,-0.692370896711587,-1.907583950617273,7.64598242678867,-0.3384966683813519,-661.6923900781641,0.7251993069789855,0.5671482491499932,0.4318256596523985,0.3114521253405991,0.2789932282440886,0.188639962959115,0.16516075007411668,0.0998648517753773,0.10762701379743596,0.057611396103003705,0.06757181932092789,0.03359423070265011,0.03968852237628554,0.018055181267062938,0.026443128828997638,0.009412734560442034,16.002004761330575,5.693944149122735,3.557131528109074,2.1937481659811233,0.44764973403990094,-0.6294629940226693,4.023087215388767,0.9723740445620248,7.00412334877279,0.6593552678555469,14.549803739974134,10.337823193850761,32.06099949237647,11.705084726582108,2.9164482633077635,0.741271837049809,3.5033055683614998,2.2436894120262654,8.00194158532473,0.6173160433765605,3.7160661768483627,2.4396643149399515,24.43423625599491,14.70025852304843,0.3047234207384889,0.6245920950110173,0.7876031444458482,0.8686729187811949,0.8894439034143004,0.8894439034143004,1.4370336871358387,985.9522448712286,0.0,3.0,5.0,0.0,5.0,3.0,1.0,1.0,0.0,3.919730981232065,1.993364172897107,1.0116516756127911,0.5234196760461192,0.3983291667467963,0.3983291667467963,35.31327944979711,2585.1793157946086,116.62937902571986,47.87369103323349,104.88071635882446,,13.0,720.0,58.09231152496118,29.079213315199816,6.544756405912575,12.10820789760957,4.899909730850478,16.66179468024159,44.179309741689295,0.0,15.950365812018994,0.0,14.833333333333336,35.5,13.5,0.0,22.0,0.0,0.03645833333333326,-8.5,0.2219753086419753,0.03641975308641998,-0.1855555555555553,0.05267857142857135,0.20716628701594497,0.0,0.6641975308641968,0.9145833333333329,0.44222222222222146,0.6277777777777768,0.8619047619047615,33.13614095548006,0.8003154745391541,1.144315474539154,32.229597925947104,6.827983941795612,8.28591414603833,65.36573888142716,15.113898087833942,0.506833712984055,0.20224719101123592,0.03370786516853932,0.39101123595505616,0.45,0.4746876029167617,-2.008593977344432,-0.12728372709733807,-0.03719618476563764,-0.10042969886722161,0.5253123970832381,1.697495425413828,0.03991508306513581,0.03143510047062644,0.049926336041583176,-2.4505217286982126,0.6905064488133723,0.6782125441958398,1.489091599610444,0.9465180005669467,0.4412910748216159,1.453948604297688,0.6911298939677343,1.0096862844012993,0.6493544942591741,0.5202491010725763,0.6801400348449791,0.9380703347690331,0.8807319224718925,0.4920613893039797,0.7064703283288076,1.341793021312903,0.6914700195720151,1.0724848257713053,0.869803225278431,1.0211656447998732,0.502874474226219,0.44656486087004454,0.45399983495869056,0.9439339582229785,1.4077940139349556,0.8065042304737681,0.8906419098495904,1.2137204298236348,0.8650780658293357,1.2054910220671329,1.3787714539879021,1.4627296399233354,0.823364109308538,0.8286197594983328,0.8260497586067733,1.204235024951295,0.8823568114823589,1.15854759974678,1.175980300505529,1.1360055691935658,1.093186952892745,1.0645552605446815,0.885343119234005,1.0212179143511315,1.1223280071369037,1.1846443449271309,1.1653015910685471,0.9263056326378698,0.9242885903006837,1.298971586246364,1.300192304917627,0.9030554393164237,1.2650476188894348,0.956650463308566,0.9379247261011857,0.8078732349067734,1.2906557281657953,1.3665399370023243,1.2990028509773235,0.948741331716813,0.9402671882853803,1.2317367189412507,1.0165906286991657,0.9107742001942488,1.0832619836438053,0.8655213983185508,0.9433493034445893,0.7648776381904789,1.219181042462266,1.1427291166476425,1.2281368536747377,0.8284784520060436,0.9079241091562987,1.0037959631223832,1.0510456238636603,1.0563118536433371,1.0147723882231923,1.075722963899688,0.9083995138672523,0.9712220879605905,0.991829851865759,0.9835356483142901,1.0400371444849357,0.9722641384018036,1.1495893755128344,1.1106313984382499,0.7758784307446888,0.9406621524194573,1.0888842767176823,0.9924129253645225,1.1472522420359244,1.052667000623888,1.119771183703748,1.0266931761788738,1.0773994096020063,1.072530035356009,7.5,0.29895724926027956,4.888888888888891,4.284722222222222,2.613333333333334,1.1805555555555554,0.9771428571428571,0.706703514739229,0.5238410178886369,0.4840663580246915,7284.297135752219,7990.866594830908,3178.78822175584,2950.6480498740566,15.525660489986985,0.4963169268120489,7.820012388869395,0.9853754339424596,0.0,0.45,1.8351565209314031,3.7615233292663612,4.743235826550677,5.231467826117349,5.356558335416672,5.356558335416672,0.2142857142857143,0.009059310583644837,0.09586056644880178,0.08239850427350429,0.04839506172839506,0.02511820330969267,0.02124223602484472,0.01413407029478458,0.011640911508636376,0.01241195789806901,0.5345465363560876,25.103673469387754,9.932360270558918,4.8977294051416775,187.41730742947271,1.0,4.4130407054097205,188.3371288041337,,156.14804594968922,158.50023748695438,156.2461950107311,156.18324679967304,225.25253556493257,160.5997317084183,162.0147307208796,209.26097347613268,0.03921960255442651,-0.07332696706214857,-0.5651732771244367,0.28838703581215147,0.2435854847925163,-0.19817560706910833,0.041222246739034234,0.012062508954496542,-0.05755593862441629,-0.018992928621562797,-0.08917256005306086,0.01829844131018645,0.10137500635915092,0.23223998839111687,0.2179714525484534,-0.04491885454254583,0.11156392400158972,0.12605455931242615,0.10030632561792018,0.08873475049258928,0.21580901104501823,0.139908905938537,0.2365189084802067,0.03232225671848354,-0.22529725864218136,0.01853186241467127,0.06438951741532224,-0.12889428661949517,0.022700883243981756,-0.10185227853458298,-0.2213679624727191,-0.23337283388788208,0.0011153168978161585,-0.052547327270123755,-0.011661430605310174,-0.1841513036932663,0.10094285892481049,-0.07270051520556543,-0.13666085358367402,-0.12450078774777415,-0.05420451442379527,-0.09736772397117335,0.09849267727938082,-0.07808078356334551,-0.04225635494734056,-0.08591868454311594,-0.07076521020216626,0.02487023143039965,-0.04781381199245212,-0.05955705449014551,0.047101961232005836,0.05986690244462143,-0.15297790677147302,-0.022316521996175273,-0.051561199619364444,0.021745852427831766,-0.06874206969505298,-0.0011752352445209616,-0.024260100121878424,-0.04969457624466008,-0.034916375660166796,-0.17864890699140792,0.010549097546338686,0.043382288018365356,-0.09483550684750082,0.13154552163308517,-0.03153197741384192,0.12119902087736519,-0.17301317442359573,-0.1515943398976977,-0.1802621022025896,0.1043737353677562,0.004293346381657386,-0.03530856758682803,-0.08144613447948762,-0.07458788966867962,-0.07432748220772366,-0.05518388953835504,0.005653902040941136,0.001214730912357795,-0.030765058607285723,-0.01904130498803815,-0.057148075962187156,-0.008307071200877559,-0.12560267542538645,-0.0750282142454339,0.063696111915254,-0.016398309277767555,-0.13372582482352538,0.023231302519168984,-0.13061826664444065,-0.02053819281951742,-0.09378236747547287,0.017206200738246417,-0.023441983510373375,-0.11103138536824182,6.455151738943465,13.22984067790712,12.277764760420368,20.41141867958989,38.29550147877762,45.16147045283332,47.58520140443921,48.26651486003515,48.26651486003515,64.5555305246483,41.50810552990264,10.476233807704155,10.543134410576746,0.0,23.04742499474566,9575.507447313474,8727.77135144761,1922.9877020273243,167.0,53.0,73.0,99.0,114.0,128.0,136.0,142.0,153.0,460.12962800391057,35.0,5.176149732573829,6.061456918928017,6.9930151229329605,7.902117546276448,8.840290669088972,9.761866382868549,10.704434770699056,11.63486872377421,12.581075109721608,0.743827160493827,1.0162222222222224,1.133300763975435,0.7099741903255351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6795458638278999,1.0008714596949888,1.0304213536187319,0.6523291305757216,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,1.0,4.0,2.0,1.0,0.0,0.0,30.751340121782,17.45755447126466,0.0,11.814359458703011,0.0,9.589074368143644,14.48898409899412,0.0,11.761884949391115,30.33183534230805,19.410925891078243,17.83653526504271,12.011146117099809,331.1179087075524,-1401.09291486489,-88.78664888234682,-25.94616509009056,-70.0546457432445,366.4311881573495,1184.0864009297184,27.842730143373032,21.927525943142932,34.82607061557995,0.46153846153846156,0.6303197107447236,0.12946822263833885,272.46181903395853,0.10089087130182979,76.09811425005749,0.36968028925527613,7.0,0.14285714285714285,0.3188866020824042,0.6536223910288897,0.8242099997206765,0.909047800526188,0.930784195764548,0.930784195764548,-1.2404999999999977,,2.8392857142857144,2.6180343125662713,2.078152547288254,2.8334530694360387,-8.66053674590952,2.3698745410036723,2.2636398710336754,-3.8330111343938302,110.84910000000004,29.079213315199816,0.0,25.75018527371995,0.0,42.09389215301143,13.08951281182515,35.89528683400505,0.0,0.0,4.2626798770413155,0.0,5.673323267171493,3.044522437723423,7.275864600546533,5.53338948872752,8.967376693212666,7.765993079407675,10.711101163782413,40.16666666666666,8.422287672714122,0.0,0.0,0.0,0.0,0.0,0.46629725424120316,0.0,54.87600000000001,0.0,61.751637890948274,0.0,0.0,0.0,0.0,0.0,-3.802792527172416,61.1982412546735,21.056893206859698,9.589074368143644,0.0,74.93980296933933,14.383611552215466,0.0,25.452766720226204,30.33183534230805,0.0,0.0,0.0,38.3386062775789,36.695476646706595,40.326698671094135,376.67425760826745,,312.2992493071053,316.83684782937337,312.3625054872566,312.37142946558197,452.61795421490785,321.05134625802384,323.8879839498196,419.4367166569884,40.326698671094135,376.6742576082675,,309.8303299043419,314.38244066134257,310.4142374741739,309.90753515181603,459.16560787577464,318.8295888758331,321.7658215707256,422.3549580866593,5.120492009084202,273.10832008036766,,229.30910300714265,233.4320263153472,229.70645410034413,229.36150318877856,331.76970662020204,236.52641397283935,238.59838375881912,309.6796163714963,1.2602093334716917,11.771070550258358,,9.75935154084704,9.901151494667918,9.76132829647677,9.761607170799437,14.14431106921587,10.032854570563245,10.121499498431863,13.107397395530887,2.6315201944635427,188.3371288041337,,156.14804594968922,158.50023748695438,156.2461950107311,156.18324679967304,225.25253556493257,160.5997317084183,162.0147307208796,209.26097347613268,54.0470588235294,0.0,3.410127693810816,0.0,0.0,0.0,0.0,55.64275309541152,0.4835606661615377,7.712234432802354,0.0,1.2710376177687683,-3.7482277366359273,2.175468893046454,-0.7829366779871831,0.0,0.0,35.225773051088964,439.67894496612826,99.09845213029577,203.1222597803835,256.13473463373657,282.49926261033687,289.25415011250027,289.25415011250027,1132.0,146.65527497686364,257.8701518987736,85.23425060761305,176.28,150.98,0.8571428571428571,7.718352106297228,6.129283016944966,3.740179578639027,5.577668867090063,,5.5780620263493965,5.5792610945927,5.578010991779982,5.578053735741298,5.569765582789152,5.5796518490655025,5.579994773240834,5.574419659282613,0.11688061183246959,0.17430215209656447,,0.17431443832341864,0.17435190920602187,0.17431284349312443,0.17431417924191556,0.174055174462161,0.17436412028329695,0.17437483666377607,0.17420061435258166,2.48228443575829,2.881921733156007,,2.8819922187679765,2.8822071571066665,2.8819830695683732,2.881990732478613,2.8805037771840496,2.8822771916118075,2.8823386495032706,2.88133902474373,314.140000000001,1675.5745129978088,213.42375151096093,,211.73851313339048,211.68224531071672,212.0959214539506,211.7396683828754,212.88773480277086,211.64039417802488,211.5791890126471,212.05959328610305,52.361703531181526,6.669492234717529,,6.616828535418453,6.615070165959898,6.6279975454359565,6.6168646369648565,6.6527417125865895,6.613762318063277,6.611849656645222,6.62686229019072,8.587062188090766,6.526430442906147,,6.518502894562466,6.518237117215073,6.52018944183712,6.518508350567215,6.5239157699129935,6.518039390332907,6.517750154351231,6.520018145382523,-0.7829366779871831,63.92710678399472,18.715423281407038,0.46629725424120316,-2.5077899141487627,3.9338399614185278,0.0,3.8936883599723533,0.0,397.97461574997214,230.97099817474825,-977.3310973878171,-61.933046741542185,-18.098724025700317,-48.86655486939085,255.6037443622921,825.9583995785373,19.42167126576304,15.29552591812106,24.292894105251097,2922.0,52.0,3.2017008964962383,2.508058788354794,0.2041241452319315,0.3535533905932738,0.9609583112716031,0.4534511562158258,0.06804138174397717,0.07905694150420949,0.0,0.0,0.1111111111111111,0.07453559924999299,0.5182884932264819,0.3492058641612493,1.0632074295184941,0.7066394114958625,1.7193678802909216,1.1791782598961231,23.206377823327536,18.14874397279978,15.113898087833947,10.900824386920968,14.786641096936696,9.997918036833095,12.056734755410519,7.290134179602543,10.65507436594616,5.703528214197367,7.703187402585779,3.829742300102112,5.080130864164549,2.311063202184056,3.5962655207436787,1.2801319002201166,6.80383761691568,4.0520371613933985,11.923664419636225,6.219054515524998,17.780734459075827,8.189799564147025,105.03495781134522,54.28202988777533,35.56037358200554,29.758091215482587,28.270260427684335,28.270260427684335,176.0,214.0,61.28144599999999,34.86855400000001,0.42592592592592593,233.12,12.145833333333332,6.819444444444441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,1.0,6.0,6.0,54.0,0.0,0.0,57.0,6.0,5.0,8.0,49.0,11.0,35.0,46.0,0.0,0.0,0.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,7.0,3.0,3.0,32.0,12.0,0.0,5.0,6.0,0.0,4.0,5.0,1.0,0.0,0.0,0.0,1.0,3.784189633918261,6.04055228604527,4.283586561860629,4.6798137289838575,5.106702762842489,5.40352161999756,5.426875475372379,5.655554652342945,5.798334791597424,5.86220971125072 +2083,CC(C)(C)NCC(O)c1ccc(O)c(CO)c1,0,19.210526315789473,6.028023684210527,2.710526315789474,5.315789473684211,165.76819057622973,75.28607813157893,1.2824258684691845,6.076707894736843,4.61641081871345,7.6150325263157885,185.55170683962038,20.86842105263158,6.314578947368421,3.1842105263157894,4.7368421052631575,149.08305743155393,76.6436342368421,1.6428118296842102,6.437157894736842,3.1589912280701755,7.784773368421051,234.63004301472037,17.46969696969697,6.076484848484848,3.0606060606060606,3.5303030303030303,155.89970897042707,63.64112345454544,1.4059445844142273,6.17553787878788,2.8634259259259265,7.610496848484849,195.38619723028245,14.382022471910112,6.104269662921348,2.393258426966292,2.730337078651685,158.8568191005488,49.07352429213484,1.2592050388403593,6.185506741573033,3.035580524344569,7.652429932584269,166.4893427047161,9.929203539823009,5.734548672566371,1.9115044247787611,1.9646017699115044,166.83549783060266,33.00047484955752,0.9568836957186282,5.78348761061947,2.636184857423795,7.408522973451326,117.98659874260929,11.146067415730338,5.7749213483146065,2.056179775280899,1.8651685393258426,165.89623410836478,38.18377511235955,0.9917673396501798,5.830623595505617,2.554307116104869,7.42955617977528,126.50428087558794,11.802631578947368,6.14742105263158,2.026315789473684,1.8421052631578947,166.34399424342996,39.13108818421053,1.0148482443549998,6.179542105263158,3.6491228070175445,7.7902278947368435,131.88311932393248,9.867647058823529,5.85379411764706,1.838235294117647,1.25,165.3081293565681,31.323143676470576,1.0376635098548674,5.904488235294117,2.6966911764705883,7.500809764705883,126.39772784729038,8.295081967213115,5.512262295081968,1.819672131147541,0.9508196721311475,166.60296979675527,26.480089967213118,0.96918057750941,5.572803278688525,1.9426229508196722,7.19994255737705,113.633435367638,7.506925207756231,0.13207292243767316,0.024262703504819044,0.6156509695290857,3.2963988919667586,1.2946847241942463,35.62425733864266,0.21725776380546608,0.12439203601108031,1.7724540243151743,0.08347449584487532,48.81934751308733,-0.37811634349030454,-0.020357202216066538,-0.01275882784826746,0.17520775623268706,0.7354570637119112,0.07589786936609644,-1.6431966565097043,0.02094127390304721,-0.018514196675900273,-0.38023718836565107,-0.012699518005540159,2.4719996772445456,0.7163602786871486,-0.0035334487534626306,-5.2622024895446956e-05,-0.1296063124317972,-0.11298581381683868,-0.008945113713464754,3.476432487114912,0.017506985346311912,-0.0009652816251154313,-0.0012635006575449621,-0.00444708755141442,5.339378868575033,-1.859379376886925,-0.013431792928506978,0.0005252211382011819,-0.00033458868934609104,-0.13613869090230007,-0.15744439928111967,-8.954495599435093,-0.0601890871000544,-0.014808150736095104,-0.0655087585289856,-0.00569038466805689,-13.876282690338776,0.71291643174074,0.011656467408624041,0.0002045015062694426,0.02291447061995932,0.55082979923026,-0.0583562502143427,3.338859561916263,0.00017204841633340027,0.01189636641090382,0.12618360959260444,0.006150941509572716,2.0693203834297513,1.093311338666003,0.008075066917737878,-0.0021034900972503974,-0.07721217591583929,0.14830838183572473,-0.12836606674267517,5.139689281996019,-0.009802428824444485,0.010797999470882986,0.0627232212331539,0.0011610842852251813,2.785671732654891,-1.0263157894736843,-0.005083760387811659,0.003233142324490372,-0.03047091412742382,-0.7382271468144043,0.029142754295145942,-4.832602037396122,0.008991372302659268,-0.00807995152354569,0.05442059095106179,0.001421434903047098,-3.0083350432066482,-1.319618706208245,-0.0046818233664656875,-0.0013070032683715868,0.016701971647384725,-0.5131171582206291,0.0899865188626675,-6.26719560605752,-0.005520992496442467,-0.008569009695290834,-0.19023061960241158,8.976886100700849e-05,-5.964805448649288,0.5379410562644749,0.006220477044639255,-0.001878800324748936,-0.1665569229371963,-0.1514463466690887,0.06229562089942891,2.5397682083806394,0.0061682748433216665,0.0067615446619136215,-0.009994169075982951,0.0030601374596975544,2.7125763474851983,,,0.46470588235294114,0.9558823529411765,0.38235294117647056,0.029411764705882353,0.5735294117647058,-0.19117647058823528,0.9270382649385221,0.03427626133906922,0.03933508486848098,0.6559928446790136,0.18734862148661394,0.2733288561374401,1.5830311096175358,0.4606774776240541,1.9327965727515277,1.5087239129308543,0.11422905921870115,0.3098436006019721,0.0,0.4240726598206732,6.293477461368421,730.0,229.06490000000002,103.0,202.0,6299.1912418967295,2860.8709689999996,48.732183001829014,230.91490000000002,175.4236111111111,289.37123599999995,7050.9648599055745,793.0,239.954,121.0,180.0,5665.15618239905,2912.4581009999997,62.42684952799999,244.612,120.04166666666667,295.82138799999996,8915.941634559375,1153.0,401.048,202.0,233.0,10289.380792048187,4200.3141479999995,92.792342571339,407.5855000000001,188.98611111111114,502.292792,12895.48901719864,1280.0,543.28,213.0,243.0,14138.256899948843,4367.543662000001,112.06924845679198,550.5101,270.16666666666663,681.0662639999999,14817.551500719734,1122.0,648.0039999999999,216.0,222.0,18852.4112548581,3729.053658,108.12785761620499,653.5341000000001,297.88888888888886,837.1630959999999,13332.485657914849,992.0,513.968,183.0,166.0,14764.764835644464,3398.3559849999997,88.26729322886601,518.9254999999999,227.33333333333334,661.2304999999999,11258.880997927326,897.0,467.20400000000006,154.0,140.0,12642.143562500678,2973.9627020000003,77.12846657097998,469.6452,277.33333333333337,592.0573200000001,10023.117068618869,671.0,398.05800000000005,125.0,85.0,11240.952796246629,2129.973769999999,70.56111867013098,401.5052,183.375,510.055064,8595.045493615746,506.0,336.24800000000005,111.0,58.0,10162.781157602072,1615.2854880000002,59.12001522807401,339.94100000000003,118.5,439.1964960000001,6931.639557425918,285.26315789473676,5.01877105263158,0.9219827331831236,23.394736842105257,125.26315789473682,49.19801951938136,1353.7217788684209,8.25579502460771,4.726897368421052,67.35325292397663,3.172030842105262,1855.1352054973186,-14.368421052631572,-0.7735736842105284,-0.48483545823416346,6.657894736842108,27.947368421052627,2.884119035911665,-62.44147294736876,0.795768408315794,-0.7035394736842104,-14.44901315789474,-0.482581684210526,93.93598773529273,47.279778393351805,-0.23320761772853363,-0.0034730536430994993,-8.554016620498617,-7.457063711911353,-0.5903775050886737,229.44454414958417,1.1554610328565862,-0.06370858725761847,-0.0833910433979675,-0.29350777839335174,352.3990053259522,-165.48476454293632,-1.195429570637121,0.046744681299905194,-0.0297783933518021,-12.116343490304706,-14.01255153601965,-796.9501083497232,-5.356828751904842,-1.3179254155124642,-5.830279509079719,-0.5064442354570632,-1234.989159440151,80.55955678670362,1.3171808171745167,0.023108670208447014,2.589335180055403,62.243767313019376,-6.594256274220725,377.29113049653773,0.01944147104567423,1.3442894044321316,14.258747883964302,0.6950563905817169,233.8332033275619,97.30470914127426,0.7186809556786711,-0.18721061865528538,-6.871883656509697,13.199445983379501,-11.424579940098091,457.43234609764573,-0.8724161653755591,0.9610219529085857,5.582366689750696,0.10333650138504114,247.92478420628532,-78.00000000000001,-0.3863657894736861,0.24571881666126827,-2.31578947368421,-56.105263157894726,2.2148493264310916,-367.2777548421053,0.6833442950021044,-0.6140763157894724,4.135964912280696,0.10802905263157946,-228.63346328370525,-89.73407202216066,-0.3183639889196668,-0.0888762222492679,1.1357340720221614,-34.89196675900278,6.119083282661389,-426.1693012119113,-0.37542748975808776,-0.5826926592797768,-12.935682132963988,0.0061042825484765775,-405.60677050815156,32.81440443213297,0.37944909972299457,-0.1146068198096851,-10.159972299168974,-9.238227146814411,3.8000328748651633,154.925860711219,0.37626476544262166,0.4124542243767309,-0.6096443136349601,0.1866683850415508,165.4671571965971,0.7677671625810466,0.6214856132724398,0.4606774776240541,0.33471161949834044,0.32480680023253133,0.2163734257908435,0.2032732244773572,0.09937643063299109,0.12718314027646582,0.05407623592906939,0.08504316478923399,0.030284156584035632,0.057287250561297326,0.017403745025322926,0.03627860422759266,0.010173510455413872,8.00836905571662,5.6881193837024595,3.5151030282512257,2.1873468597859445,0.37553154112724124,-0.30113043619608354,4.0170393974676015,0.9871829403820535,5.012891810973403,0.9899185793698633,14.540229323066587,10.948563713280391,16.00416897714978,11.699582571471396,1.989126336482079,0.7869031709813601,3.4568711008660173,2.2371804203417027,6.004812267299942,1.1970192786687188,3.670545135104846,2.433207234207303,20.89662385184726,14.707201501912788,0.26682441487652114,0.6046493194500207,0.7632224242066091,0.7964017936783623,0.7964017936783623,0.7964017936783623,2.392571803360345,371.41759115181975,0.0,0.0,5.0,0.0,4.0,1.0,2.0,1.0,0.0,3.818401834640832,2.008487339933167,1.158923684665993,0.9811634872406376,0.9811634872406376,0.9811634872406376,153.10128591799406,885.0312147980284,63.04356512705495,23.2902951262639,48.887705326731115,,9.0,238.0,6.103966387748303,10.213054789681411,17.89531905018017,17.671659389306566,0.0,6.06636706846161,12.13273413692322,20.771211599071872,5.316788604006331,5.106527394840706,7.8999999999999995,16.25,6.5,0.5,9.75,0.0,0.03529411764705886,-3.25,0.11666666666666653,0.03409090909090906,-0.08257575757575747,0.10644257703081206,0.172904109589041,0.0,0.5500000000000003,0.8588235294117644,0.43333333333333374,0.5159090909090912,0.7523809523809524,15.759650503954877,0.5826964427641768,0.6686964427641767,11.151878359543232,3.184926565272437,4.646590554336482,26.91152886349811,7.831517119608919,0.541095890410959,0.31645569620253167,0.06329113924050633,0.25316455696202533,0.5384615384615384,0.3378627385724927,-0.6333341072377177,-0.08329420250438731,-0.016666687032571514,-0.057575827930701595,0.6621372614275072,1.24119668569205,0.05023453879962056,0.032663070676106576,0.04597024761822407,-2.345364527059776,1.0615313653136536,1.0676966420275873,1.4509773983382126,1.2069741282339712,0.8045168067226893,1.305488101222675,1.0634208552114575,1.1948328859035142,1.0564507374092607,1.1277984138138737,1.0780267683731624,1.1365661940465492,0.8774726042714975,0.8502410464166664,0.7568575017555224,2.0488291236322738,1.1479469060351415,1.2224312512289333,0.881109147035043,1.075062514525165,0.8378971403819122,0.7622530900816212,0.8527502300411957,0.9936162194994815,1.229280857415316,1.0059824312907544,0.9161690178973582,0.9951340352118909,1.0056132565385707,1.3127445627493042,1.2364297175691459,1.3574696654224283,1.0223564805084004,0.8194486587579198,0.9359123403158409,1.330867435809263,0.8488203311236655,0.8030188380483771,0.8001273122284407,0.7207959624515964,0.7253755484494685,0.9311315835770917,0.8506696095510825,0.9274275260674942,0.8056725414373268,0.831086369584743,0.8106124911768819,0.9049729679155891,0.8030038558812557,0.8202164650501294,0.9511691708573605,1.1195257896133772,0.8861344537815128,1.0250069371995176,0.805555824432967,0.9902853226631889,0.804680380505967,0.8308504290327782,0.8513880548358509,0.9035601600397933,1.2006226937269378,1.4306525816500466,1.0861304090580945,1.0404949381327337,1.3836134453781515,0.8957512266686134,1.1910579579263696,0.8778738575495114,1.4215181483792914,1.4729444834855934,1.445999695430054,0.9796078369184161,1.1358706859127419,0.9764858313191452,1.1175400133630025,0.6744855422483956,1.0620582056351955,0.8956887967950181,1.1364184786328628,0.984837068840026,1.012084250932439,1.029315802216881,0.9313141680379188,1.0850443798286509,0.8005550178452606,0.5416723496026514,0.7005300833518248,1.270427262166,0.9055035128805623,0.8544459030220447,0.8073563846226356,0.9208243116260608,0.5702622886385669,0.5260779334486463,0.49477276140693727,0.9178871433553695,5.5,0.0,2.4444444444444455,1.0625,1.0133333333333334,0.6597222222222223,0.26448979591836735,0.2065972222222222,0.2093726379440665,0.0,2696.243094975657,3247.306716736068,1524.4574478557076,1294.513315600797,11.628840788079772,0.47118780253339654,6.1494728511337335,0.891030511003207,1.0,0.5384615384615384,1.429525678802753,3.239440173510418,4.089003828777592,4.266764026202948,4.266764026202948,4.266764026202948,0.3235294117647059,0.0,0.10185185185185189,0.04829545454545454,0.0562962962962963,0.03880718954248366,0.018892128279883385,0.020659722222222225,0.02617157974300831,0.0,0.6345036342459062,15.058823529411764,6.25,5.0176,101.9185613604693,1.0,3.7207323752475077,68.14021103675046,,57.566169132660384,56.75508541138306,56.87181482904431,57.57551825301458,75.05829399452247,57.25769219812994,57.61144303751452,67.97113405554761,-0.05036900369003689,-0.15413607755725517,-0.5258617550897949,0.28458942632170997,0.22310924369747898,0.058622665385452716,-0.04612577999562342,0.0963890704582514,-0.14883747601213881,-0.2145258399650529,-0.15213650441375876,0.0506356558039179,0.0954265906295427,-0.026753771236720444,-0.0021688442462726876,-0.210519139652998,-0.034275528393175436,-0.006909105781742957,0.0975861041556065,0.08058163280179839,-0.007759995382899337,-0.0007128538400498952,-0.05327480575239002,0.10937013992543981,-0.24768854430117346,-0.1016998237079641,0.021647263591085916,-0.0005434713919187352,-0.04129921631573978,-0.12160829299898165,-0.25135950243998195,-0.27703998258008433,-0.11904420259489971,-0.03695935557724625,-0.06816914089102864,-0.2842373648402176,0.09496783463409861,0.08825781389160123,0.008428636414273646,0.03721990503399468,0.16710046850598645,-0.045073714954550814,0.09372432750463282,0.0007919091742445323,0.09563607761709232,0.07119147118152087,0.07368647689712685,0.042387301118168665,0.1456403665160248,0.06114097249228812,-0.08669644323983118,-0.12541550283742628,0.04499103011991314,-0.09914851418561724,0.14427498749344736,-0.045118888516323126,0.0868061960970005,0.03538778460411031,0.013909449508780267,0.057060814504088106,-0.13671586715867162,-0.038492071606962046,0.13325564992574745,-0.04949381327334084,-0.22394957983193275,0.0225095374576873,-0.13565481496098616,0.041385735290501276,-0.06495553720839461,0.03070352754119439,0.017028373620711877,-0.06162177899653787,-0.17578684610375517,-0.03544877541931502,-0.053868822495893365,0.027128961820948875,-0.15565991102323287,0.06950458067594105,-0.17592494761313418,-0.025412175840058806,-0.06888712469122656,-0.10732612355116589,0.0010754046502279007,-0.12218117923534849,0.07165930675700201,0.04709880670335568,-0.07743573688627774,-0.27053790407346623,-0.04594296735087482,0.04811644081009677,0.07129322540643339,0.028391504797245257,0.05435673278401305,-0.005638605537226509,0.036659550066458095,0.055563551863490594,3.61939931847957,10.325124803665261,2.94168275343288,13.396315621514553,26.903963669430055,30.505219286210544,30.684401565215303,30.684401565215303,30.684401565215303,32.85754173677597,25.648306519824523,1.9418940067179196,5.267341210233526,0.0,7.209235216951445,2878.6182378377293,2754.7706035481365,475.83040724966395,10.0,24.0,25.0,27.0,33.0,30.0,24.0,20.0,19.0,239.152143532,17.0,4.418840607796598,5.198497031265826,6.061456918928017,6.8679744089702925,7.727094484779841,8.544224530467268,9.400547423044127,10.223866701574616,11.078119080959949,0.5701754385964913,0.9712631578947373,1.1389325726107138,0.5243329579464436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.618005877718248,0.9567595459236321,0.9994058343236102,0.5681987583960919,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,3.0,2.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,20.63637078852845,5.749511833283905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.06636706846161,38.46739722769209,17.647133149992914,12.71084835226122,159.51675538306569,-299.01906995380193,-39.32609136437528,-7.868922893521102,-27.183551813981992,312.61804130105975,586.0121448442264,23.717473762679667,15.4213722327428,21.704153512749123,0.4444444444444444,0.716153868423614,0.27077908309798676,90.17694822978896,0.15636444264510382,137.1659934637271,0.28384613157638583,5.0,0.23529411764705882,0.2723981371962066,0.617279900534442,0.7791654549920545,0.8130379116847181,0.8130379116847181,0.8130379116847181,1.3059999999999998,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,66.74510000000004,15.319582184522117,0.0,5.316788604006331,0.0,39.020985203716435,6.544756405912575,29.32600418877882,0.0,5.749511833283905,3.5553480614894135,0.0,4.875197323201151,0.0,6.364750756851911,0.0,7.924072324923417,0.0,9.519661619531444,21.66666666666667,4.758963529856387,0.0,0.0,0.0,0.0,0.0,1.1603141140715556,0.0,36.908000000000015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.27943775920713,5.316788604006331,0.0,5.749511833283905,27.403263842818035,6.606881964512918,0.0,38.002080970214166,18.19910120538483,0.0,0.0,0.0,19.92465240196486,23.484223353293423,19.9339969060726,136.28042207350092,,115.02729624851403,113.38748722163837,113.65602352360716,115.04629569240818,151.44543432240948,114.40510827846882,115.11868049929151,136.47743566253672,19.9339969060726,136.28042207350097,,114.23948112246356,112.46736021318023,112.99897751499606,114.26073959025089,153.8816526002443,113.57803739503589,114.33713868126014,137.4585761735127,4.6566234336322125,102.85275340844245,,87.53076900164956,86.27926401712358,86.02805253301386,87.54389673460798,112.36523861154026,87.0345202995112,87.6027512240756,102.97219758497508,1.1725880532983883,8.01649541608829,,6.766311544030238,6.6698521895081395,6.685648442565127,6.7674291583769515,8.908554960141734,6.729712251674636,6.771687088193619,8.028084450737454,2.3283117168161067,68.14021103675046,,57.566169132660384,56.75508541138306,56.87181482904431,57.57551825301458,75.05829399452247,57.25769219812994,57.61144303751452,67.97113405554761,36.35686274509802,0.0,6.070516975308642,0.0,0.0,0.0,28.414128716301335,37.977421704297186,0.19269498771730897,3.1972066326530615,0.0,0.0,-0.6526620370370377,0.0,-0.05782958553791895,0.0,0.0,21.591552819051493,338.12116106273294,54.32197579450462,123.0987265933959,155.3821454935485,162.13703299571202,162.13703299571202,162.13703299571202,246.0,103.52062118778653,134.01363562139247,49.23903008599734,72.72,72.72,0.8,6.666797746703225,5.087462841250339,3.622135128607326,4.062198144566426,,4.056469931723718,4.05705137677261,4.0559055402758375,4.056460437589939,4.035583139562814,4.056649404051145,4.056441696759549,4.046687825337283,0.21306677227101917,0.23895283203331918,,0.23861587833668926,0.2386500809866241,0.23858267883975515,0.2386153198582317,0.23738724350369492,0.23862643553242027,0.23861421745644407,0.23804046031395784,1.8176919175600343,1.9323524930814742,,1.930941371518328,1.931084698941226,1.9308022281932342,1.9309390310239944,1.9257790626797728,1.930985614014963,1.9309344110174715,1.928526976678288,197.85999999999962,89.5907558653212,76.63488360272851,,77.00920691253454,76.96030567835663,77.16625424313294,77.0103494971938,78.83123714265587,76.99948881613446,77.01103671136457,77.90274537502934,5.270044462665953,4.507934329572265,,4.529953347796149,4.527076804609214,4.539191426066644,4.5300205586584585,4.637131596626816,4.529381695066733,4.530060983021445,4.5825144338252555,5.025880394574577,4.869680623659256,,4.874553236060553,4.8739180293238515,4.876590491324636,4.8745680729382315,4.897937579815939,4.874427034142317,4.874576996558356,4.886089445616072,0.0,0.0,31.6113353489544,1.0541228898966999,0.048361638636936766,4.758963529856387,-0.6526620370370377,6.2632119630259515,0.0,239.60587251911093,75.31341087049509,-141.17730779731457,-18.567216150700666,-3.7151923104556457,-12.83430070884678,147.5978553694654,276.6767248604571,11.197844652803846,7.280966443696239,10.247286105942855,560.0,22.0,2.3653980259041862,1.6041239328352215,0.3535533905932738,0.25,0.23570226039551584,0.056781344807245726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.1554376142423653,0.04165752139768156,13.052041763877792,10.565255425631475,7.831517119608919,5.690097531471787,7.795363205580752,5.192962218980244,5.08183061193393,2.4844107658247774,3.433944787464577,1.4600583700848735,2.8064244380447216,0.9993771672731758,1.7186175168389197,0.5221123507596878,0.8706865014622238,0.2441642509299329,2.7960034803231486,1.2175483357439623,3.2713469507077906,1.2029564476654278,4.460859301335658,1.2657994652079063,59.130148629737796,32.18880068120853,24.825403044700952,24.201225213094155,24.201225213094155,24.201225213094155,82.0,90.0,39.21865299999997,21.637347,0.15789473684210525,17.04,8.006944444444445,3.7638888888888884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,38.0,0.0,1.0,38.0,6.0,0.0,3.0,35.0,6.0,17.0,32.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,4.0,4.0,0.0,17.0,4.0,0.0,1.0,3.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,1.0,3.044522437723423,4.2018901887852635,3.56953269648137,3.9367156180185177,4.342180726126682,4.8217925203120355,4.808111029984782,4.709248630143361,4.443753589874033,4.4270896234513915 +5280723,CCCCC[C@H](O)/C=C/[C@H]1[C@H](O)CC(=O)[C@@H]1CCCCCCC(=O)O,1,18.203389830508474,5.94593220338983,2.4745762711864407,4.711864406779661,165.26006304469436,71.18082374576275,1.256116250251966,5.9962372881355925,4.905367231638418,7.559265694915253,179.8159191603391,19.83050847457627,6.141525423728814,3.1864406779661016,3.7796610169491527,145.84670462819236,72.36954354237292,1.6711674164067802,6.28006779661017,2.75894538606403,7.627793830508471,233.6756194021726,14.9009009009009,5.900090090090087,2.7387387387387387,2.5135135135135136,152.79939173387285,52.147955738738766,1.3628349232422174,6.009014414414412,2.652152152152152,7.459850630630628,179.26073660408403,10.865030674846626,5.773865030674844,2.128834355828221,1.656441717791411,162.6075691865645,36.24418065030673,1.0739535155294417,5.840748466257668,2.4234832992501705,7.425681914110433,135.17291266057708,10.41358024691358,5.742592592592592,2.067901234567901,1.5555555555555556,163.61262522387375,34.56111380246914,1.0447323583005863,5.804945061728394,2.5584705075445813,7.403067950617285,129.83609721663373,10.454545454545455,5.75474025974026,2.0974025974025974,1.4805194805194806,163.70884126525291,34.69724456493507,1.044071985494468,5.817110389610389,2.381313131313132,7.416664129870131,130.59317459699272,11.208053691275168,5.843087248322149,2.1073825503355703,1.6174496644295302,163.60567858693727,37.71117516778522,1.046813352528537,5.9017322147651,2.696308724832215,7.495988187919463,133.2425775487447,10.435374149659864,5.884081632653062,2.0340136054421767,1.3673469387755102,164.36637292652077,33.95174631292516,1.0244790872337148,5.93597006802721,2.7860922146636438,7.545668190476191,128.49786022323303,9.805755395683454,5.749352517985612,2.0215827338129495,1.3093525179856116,164.9607393429435,31.96026919424459,1.0074408673208706,5.805406474820143,2.367505995203837,7.4233933812949635,124.50509816478973,7.391554151106003,0.12884228669922432,0.018051708056278253,0.4475725366274059,3.0525711002585454,1.2276542626405187,35.08170476587187,0.21913779726562768,0.12177592645791431,2.1931118133358862,0.08339751795461071,49.042672456022956,-0.23269175524274668,-0.010772766446423308,-0.010239573087209219,0.09767308244757261,0.5484056305659298,0.0948210208075995,-1.0139498592358547,0.015514914018959996,-0.010124676817006404,-0.14870407609563022,-0.006565458201666223,1.7489517168065312,-0.53310247909501,0.009859805223206565,0.0013857440926191953,-0.031325781397599825,0.08790836225481441,-0.22513050650410193,-2.689531143639475,-0.040695134543380675,0.007641297545750354,0.21106778999625864,0.007658008079898348,-8.084587314716806,-0.1902439712162255,-0.006709604989751565,-0.0010420387600778274,-0.028003024305476,-0.058706069583699734,-0.04293442491353062,-0.8890627803254475,-0.0069135830025045765,-0.005823758422144415,-0.13330741603018972,-0.004924208190651077,-1.1617713445806028,0.014911636715716037,0.0020878242026379236,0.0009249907528504388,0.008275967243696822,-0.021393029532453072,-0.01184194089686821,0.05504904862906595,-0.0021385633376487237,0.0018211545213699415,0.04370551246448973,0.0014603715620245521,-0.36052615747367706,-0.06379716233206602,-0.006685121830195107,-0.0007276283169435008,-0.00810522427873764,-0.14744233072299717,-0.008702948228607992,-0.2717254960061483,-0.0007023057931335262,-0.0055953189298492585,-0.15902090424497772,-0.005076690307681387,0.14879448137723544,0.062205375682757226,0.0006742643188623274,0.000748041364876056,-0.04124788641696343,-0.1899843638235561,-0.029436451780834084,0.28139976330569166,-0.004450596996369589,0.0009382016276276502,-0.023971025408840278,-1.748564884348697e-05,-0.33712876376626844,-0.8302720111313701,-0.011957702357012866,-0.00014331936383873075,-0.006779270168279891,-0.4784906206090592,-0.011384344654525026,-3.9031829598070775,-0.004781891644195201,-0.012418795130807231,-0.13320366928730695,-0.00612906367120248,-3.2393720280076788,-0.24669376822586736,-0.010506717866155245,-8.684921006256097e-06,0.0027384010631196216,-0.22852525219123754,0.01827728615903209,-1.1131673864059568,0.003149127077632521,-0.009479804033819792,-0.21241162772166636,-0.0070645483167616875,0.13428431534171303,,,0.46666666666666673,0.71,0.16,0.0,0.55,-0.39,1.233643971045567,0.018504696079655075,0.021944696079655074,0.4730521890067918,0.1040098864377967,0.37405395997747204,1.7066961600523587,0.4780638464152688,1.9560987474814444,1.608381607711439,0.0,0.34771713977000573,0.0,0.34771713977000573,6.004078376067811,1074.0,350.81,146.0,278.0,9750.343719636967,4199.668601000002,74.110858764866,353.77799999999996,289.41666666666663,445.9966759999999,10609.139230460007,1170.0,362.35,188.0,223.0,8604.95557306335,4269.803069000002,98.59887756800003,370.524,162.77777777777777,450.0398359999998,13786.861544728183,1654.0,654.9099999999996,304.0,279.0,16960.732482459887,5788.423087000003,151.27467647988612,667.0005999999997,294.38888888888886,828.0434199999997,19897.941763053328,1771.0,941.1399999999995,347.0,270.0,26505.03377741001,5907.801445999997,175.054423031299,952.0419999999998,395.02777777777777,1210.3861520000005,22033.184763674064,1687.0,930.2999999999998,335.0,252.0,26505.24528626755,5598.900436,169.246642044695,940.4010999999998,414.4722222222222,1199.2970080000002,21033.447749094663,1610.0,886.2300000000001,323.0,228.0,25211.16155484895,5343.375663000001,160.78708576614807,895.8349999999999,366.7222222222223,1142.1662760000002,20111.348887936878,1670.0,870.6200000000002,314.0,241.0,24377.246109453652,5618.965099999998,155.97518952675202,879.3580999999999,401.75,1116.90224,19853.14405476296,1534.0,864.96,299.0,201.0,24161.856820198554,4990.906707999999,150.59842582335608,872.5875999999998,409.55555555555566,1109.213224,18889.185452815254,1363.0,799.1600000000001,281.0,182.0,22929.542768669147,4442.477417999998,140.03428055760102,806.9514999999999,329.08333333333337,1031.85168,17306.20864490577,436.10169491525414,7.601694915254234,1.0650507753204168,26.406779661016948,180.10169491525417,72.4316014957906,2069.8205811864404,12.929130038672033,7.184779661016944,129.3935969868173,4.920453559322032,2893.5176749053544,-13.728813559322054,-0.6355932203389751,-0.6041348121453439,5.762711864406784,32.35593220338986,5.59444022764837,-59.82304169491543,0.9153799271186398,-0.5973559322033779,-8.773540489642183,-0.3873620338983072,103.18815129158534,-59.17437517954611,1.0944383797759287,0.15381759428073066,-3.477161735133581,9.7578282102844,-24.989486221955314,-298.5379569439817,-4.517159934315255,0.8481840275782893,23.42852468958471,0.8500388968687167,-897.3891919335656,-31.009767308244754,-1.093665613329505,-0.16985231789268587,-4.564492961792588,-9.569089342143057,-6.99831126090549,-144.91723319304793,-1.126914029408246,-0.9492726228095396,-21.729108812920927,-0.8026459350761255,-189.36872916663825,2.415685147945998,0.33822752082734364,0.14984850196177107,1.3407066934788852,-3.4656707842573975,-1.9183944252926501,8.917945877908684,-0.34644726069909326,0.2950270324619305,7.080293019247336,0.23658019304797745,-58.40523751073568,-9.824762999138168,-1.0295087618500465,-0.11205476080929912,-1.2482045389255967,-22.706118931341564,-1.3402540272056307,-41.84572638494684,-0.10815509214256303,-0.8616791151967859,-24.48921925372657,-0.7818103073829337,22.91435013209426,9.268600976730827,0.10046538351048678,0.11145816336653235,-6.14593507612755,-28.30767020970986,-4.386031315344279,41.92856473254806,-0.6631389524590687,0.1397920425165199,-3.571682785917201,-0.002605361677679559,-50.232185801174,-122.0499856363114,-1.7577822464808912,-0.02106794648429342,-0.996552714737144,-70.33812122953171,-1.6734986642151788,-573.7678950916404,-0.7029380716966944,-1.825562884228663,-19.58093938523412,-0.9009723596667645,-476.1876881171288,-34.290433783395564,-1.4604337833955792,-0.0012072040198695974,0.3806377477736274,-31.765010054582017,2.5405427761054606,-154.730266710428,0.4377286637909204,-1.3176927607009512,-29.525216253311623,-0.9819722160298746,18.665519832498113,0.7462595908225151,0.6160165430246953,0.47806384641526883,0.38970212410937316,0.3252159300643984,0.23278338562375012,0.20335785432989048,0.1442141835090869,0.1323771846416745,0.08640240863053038,0.08851323830994878,0.05342451056848115,0.061702006769662164,0.03517199446938524,0.039919951796189894,0.022278013375325933,8.029324903306657,5.7441099356432295,3.555243215055182,2.243573006459059,0.42534821919817023,-0.39013530165073557,3.179033926111983,0.9726003945137611,6.02319095579342,0.9879349480982955,13.643297507757625,11.00449942274509,16.014947656462965,11.755413016403027,1.9394414875918624,0.7415144176517928,3.501270298731499,2.293452774057191,7.009375577780893,1.1662683601699364,3.7141971896832158,2.4894741130590514,20.846161717412144,14.70059114473976,0.21649451851316187,0.4580455051216844,0.6878862083787364,0.8457267753034138,0.9118225360428006,0.9118225360428006,2.272924181706281,431.80244996317316,0.0,1.0,1.0,0.0,3.0,13.0,0.0,2.0,0.0,4.59359218601179,3.155350192777016,1.7868335254671521,0.8470198042548658,0.4534726695281952,0.4534726695281952,295.0396514466063,1661.0191769911853,84.33252753378072,28.152867406630264,55.99028678864414,,17.0,612.0,18.177238063448456,19.802129157825053,30.460700284539744,6.4208216229260096,51.36657298340809,0.0,6.076020106833881,6.076020106833881,6.923737199690624,5.106527394840706,11.666666666666668,17.75,4.0,0.0,13.75,0.0,0.033333333333333284,-9.75,0.10112994350282484,0.007687320552005272,-0.09344262295081956,0.059285714285714275,0.16712499999999975,0.0,0.5344632768361585,0.853333333333333,0.4333333333333336,0.5267759562841532,0.7940476190476188,30.841099276139172,0.4626174019913769,0.5486174019913769,11.826304725169795,2.6002471609449174,9.351348999436802,42.66740400130897,11.951596160381719,0.5468750000000002,0.1857142857142857,0.0,0.2571428571428571,0.8,0.2827116970318776,-0.691678667476758,-0.07828185132856672,-0.01172336724536878,-0.0406869804398093,0.7172883029681226,1.7549079956805387,0.045935159523914464,0.029744203316619307,0.041783523706679496,-3.220317190136764,1.061717839098329,0.8315273132664437,1.462720177942715,1.2657252888318358,0.682288725766987,1.3386892069660585,1.0702308128307354,1.3313941964731124,0.8463116475034325,0.784639343307912,0.8232339887641611,1.2573078933836703,1.0364141833244052,0.5890815229945664,0.5936305071962095,1.464270432178006,0.8065513282904591,1.422441290903334,1.0508053536655433,1.4241032129478628,0.6273371616021567,0.5341695395109847,0.550574557381619,1.3408926257930904,0.9897224361526854,0.9310322752734062,0.8126841868571802,1.125152586688928,0.9611815676099488,1.0496904186688771,0.9917423554832244,1.048938575257166,0.935468146894584,0.9332703106343874,0.9273512603672789,1.034300452811499,0.9519101495588089,0.8456447417316981,0.7409473967993739,0.9558431987828651,0.9372962428517987,1.001668744169996,0.9547357707866633,1.0064278692120947,0.8573571512073807,0.8358857568295821,0.8303275247768606,1.0034041941889187,0.9702699360491823,0.945064355933921,0.8681494291376487,1.0768092626244103,0.9922604686862172,0.9970911291537332,0.9711525121332985,0.9966572296554969,0.9469026656308153,0.9507817621192339,0.9436404029104456,0.9899447518679295,0.9822996684725481,0.9977728894974299,0.9191221302560888,1.2161306441746864,1.0558166179701054,1.0161078358347064,0.9824686988194303,1.011143139762479,0.9934984957109406,0.9838571058224027,1.006042057260789,0.9951954026286928,1.1232323632912165,1.1966450526698973,1.0813846532272384,1.0160243815112695,1.1939588558931953,0.984516392075677,1.119805001746591,0.9920855031037107,1.1950828289570334,1.1450061365874873,1.1918786593821216,1.0358257951384462,0.9989089800837141,1.0187807479768693,0.9216965061882829,0.9875924677459573,1.0460516961924535,0.946691795475292,0.9977738365701044,0.9502669683901909,1.019275786866579,1.043037933860864,1.0153328253497125,0.9679624150221299,4.5,0.1591735537190083,2.4444444444444455,1.8888888888888888,0.8100000000000002,0.6911111111111111,0.4931972789115646,0.26913265306122447,0.21064814814814814,0.22469135802469142,3967.822131611585,4905.689824851688,2201.1944453959904,1845.9083015384394,16.524492452218922,0.41289021985220875,9.701691130676087,0.7032589710024474,1.0,0.8,1.2890508633500515,2.7272928565848256,4.095809523894689,5.035623245106976,5.429170379833646,5.429170379833646,0.18,0.007579693034238489,0.07885304659498213,0.06296296296296296,0.028928571428571432,0.025596707818930035,0.017614188532555877,0.011213860544217686,0.009574915824915825,0.010213243546576885,0.43253719028795135,23.04,13.211238293444328,9.482448979591837,150.6834624723272,1.0,4.084637269347052,158.51891293830815,,148.98844394962663,148.7061706894184,149.59865595186255,148.9942569250505,160.03948384893314,148.91944311527402,149.00035803734556,154.25083430102376,-0.03148076175670429,-0.08361204013377825,-0.5672356906773689,0.2182284980744546,0.1796536796536799,0.07723756084522712,-0.028902525290682102,0.07079980821452543,-0.08314185825969049,-0.06780505909064447,-0.07872486331355195,0.03566183548367666,-0.07212319198327749,0.07652615826528888,0.07676526167490526,-0.06999040118423941,0.028798137493789674,-0.18338266184151603,-0.07666477902339286,-0.1857056840543674,0.0627488352420064,0.09624123526798609,0.09182537163835303,-0.16484801724388765,-0.025738020357702333,-0.052076109184671586,-0.057725216740108644,-0.06256644904195248,-0.019231679674464413,-0.0349727331383874,-0.02534263332579961,-0.03154902115824539,-0.04782356079349642,-0.060784596216012905,-0.05904502090015542,-0.02368898933112535,0.0020173885506182486,0.01620449509338376,0.051241176179377325,0.018490784323047904,-0.007008200244915224,-0.009645990127055637,0.0015691668633680163,-0.00975898892994925,0.014954963385142723,0.01992853816149501,0.01751097152338949,-0.007351274704635323,-0.008631089081924673,-0.05188608492956338,-0.04030800380080582,-0.018109297634329734,-0.04830103079679591,-0.007089087289029669,-0.007745504325390934,-0.00320485923422068,-0.04594766053192786,-0.07250925524088764,-0.060873398060172335,0.0030339798776394355,0.008415736989960277,0.0052332532752726035,0.04143881357619744,-0.09215910951055821,-0.062237490162789295,-0.023977802771213655,0.008021268213266607,-0.020309581696555987,0.007704327570456975,-0.010930142851393683,-0.00020966629789874054,-0.006874192348889125,-0.11232712284291876,-0.09280883367839868,-0.007939379663792276,-0.015146751897164508,-0.1567500329700862,-0.009273249807351164,-0.11125978585864407,-0.02182139139784651,-0.1019807074520526,-0.0607372904916755,-0.07349215925752413,-0.06605211065755962,-0.033375087726165736,-0.08154712350520942,-0.0004811135311506184,0.006118340244364187,-0.07486320373402015,0.014887975153297732,-0.03173070960590452,0.014370533595422197,-0.0778462895710016,-0.09685398912633297,-0.08470933536183395,0.002738111701847551,16.81684261724123,18.468527504661736,4.440279380190142,11.644182292193943,24.708056556889296,31.37818727241222,34.49061906509298,34.88731457689747,34.88731457689747,48.90246868703611,40.20954019278597,0.0,8.692928494250143,0.0,8.692928494250143,9082.664492976824,7576.264262112494,1910.7429007390929,39.0,31.0,35.0,41.0,42.0,41.0,40.0,40.0,40.0,354.2406241880009,25.0,4.727387818712341,5.501258210544727,6.322565239927284,7.130098510125578,7.967973179662935,8.796187635470453,9.645817254152318,10.48868754154148,11.346882686945893,0.5480225988700564,0.9647457627118645,1.1374043109607974,0.5002293095735688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6097732873236578,0.9504818876703224,0.9957040749564853,0.555679121804138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,3.0,11.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,15.319582184522117,5.783244946364939,0.0,0.0,0.0,9.589074368143644,0.0,0.0,0.0,57.600707150914445,19.26246486877803,24.677455338174806,12.207932775496605,191.93661005397203,-469.5895503296706,-53.1465564760836,-7.959144920841875,-27.622914725274743,486.97626150057835,1191.4296266615147,31.185971057697113,20.19372248578839,28.367372063369398,0.47058823529411764,0.6865516989376371,0.19669460192519558,147.15870555621166,0.12378043299778041,53.62863324539677,0.31344830106236315,9.0,0.52,0.21912783973691718,0.46361692077860933,0.696253280970194,0.8560137344476898,0.9229134479649604,0.9229134479649604,3.475100000000002,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,97.23740000000005,24.90865655266576,0.0,0.0,11.835812092322787,89.76070782737335,0.0,12.152040213667762,0.0,0.0,3.9318256327243257,0.0,5.1647859739235145,2.3978952727983707,6.558197802812269,4.844187086458591,8.04012466444838,6.985641817639208,9.582662261491093,32.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.92000000000001,0.0,22.598378221991908,0.0,0.0,0.0,3.5726983202984286,0.0,-0.6620857682904724,67.10685434668704,0.0,0.0,0.0,39.280065194335506,9.589074368143644,11.835812092322787,77.55277505187675,12.152040213667762,0.0,0.0,0.0,29.51352926484056,35.97662395209581,30.120915239618856,317.0378258766163,,297.87688789925323,297.29805566455104,299.12805822937383,297.88880761846156,320.5118854036019,297.73539785845503,297.9013181546036,308.6612663932707,30.120915239618856,317.03782587661624,,296.7268878992533,295.98376995026535,298.33164097433354,296.7421859546075,325.49043901956213,296.5452815793851,296.75824207359653,310.4966409923377,4.624477228753832,234.5524789352773,,221.56647605277414,221.25865457741247,222.2319235623625,221.57281516665768,233.62491023486297,221.491229926953,221.57946849765796,227.30613047738927,1.2048366095847542,12.681513035064652,,11.915075515970129,11.891922226582041,11.965122329174953,11.915552304738462,12.820475416144077,11.9094159143382,11.916052726184143,12.346450655730827,2.405206390631583,158.51891293830815,,148.98844394962663,148.7061706894184,149.59865595186255,148.9942569250505,160.03948384893314,148.91944311527402,149.00035803734556,154.25083430102376,56.07843137254902,0.0,2.120027211799717,0.0,0.0,0.0,28.743531832721928,58.74654042243263,8.325937918627568,0.0,0.0,0.0,-1.5318210704824093,0.0,0.0,0.0,0.0,32.78506818644414,466.10878539640623,76.05400093765304,160.9102785385047,241.65276190978668,297.10177146131156,320.32105241018513,320.32105241018513,399.0,121.92685807708301,212.80408615814412,72.50532051229574,94.83,94.83,0.8888888888888888,6.419994928147142,5.643856189774724,3.409341957993218,4.899227796398353,,4.898135754566427,4.8982102394155,4.897938166340838,4.898134106294841,4.888795946244558,4.898154969344909,4.898132371398722,4.895018593878281,0.13637367831972871,0.19596911185593413,,0.19592543018265707,0.19592840957661997,0.19591752665363352,0.19592536425179363,0.19555183784978233,0.19592619877379636,0.19592529485594887,0.19580074375513123,2.1428100303521274,2.505368331999957,,2.5051454063463834,2.5051606130059114,2.5051050660575678,2.5051450698363427,2.5032367772800543,2.5051493292145435,2.505144715640972,2.504508806394518,298.25000000000057,1153.5631852960678,137.22631655780125,,136.76536085745218,136.71290637401486,136.87916588902542,136.76644239902825,138.8544174539981,136.75252681785634,136.76757760643454,137.7580893726873,46.142527411842714,5.489052662312051,,5.470614434298088,5.468516254960594,5.475166635561017,5.47065769596113,5.5541766981599245,5.470101072714254,5.470703104257382,5.510323574907492,7.966901585010789,5.83792224041822,,5.83455749489317,5.834173885002618,5.835389267700671,5.834565402869963,5.849716759697759,5.834463650649823,5.834573703171375,5.841789903211515,0.0,22.598378221991908,28.743531832721928,0.0,-1.0362429079982076,0.0,10.740972308151322,2.120027211799717,0.0,378.1614623913733,130.3082350881881,-318.81039006632665,-36.081881270413994,-5.403565933327571,-18.753552356842746,330.6144520742572,808.8769090919345,21.172557162998242,13.709778120202284,19.258974025998445,1888.0,30.0,1.4404934728256165,0.5876638077568845,0.0,0.0,0.24800564528543081,0.10844081938422322,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.06804138174397717,0.2682459513747883,0.14560304124867512,0.41864077255181875,0.1716656749852946,18.656489770562878,15.400413575617383,11.95159616038172,9.742553102734329,10.08169383199635,7.2162849543362535,7.117524901546167,5.047496422818042,5.427464570308655,3.5424987538517456,3.7175560090178488,2.2438294438762085,2.5297822775561487,1.4420517732447948,1.5967980718475958,0.8911205350130373,2.581238448773038,1.1880013469933781,3.786365193329608,1.6588285953837154,4.971680272597118,1.906835874082002,91.13707122390748,52.981548247865845,34.42055163698512,23.832215744272023,21.147154143251495,21.147154143251495,112.0,122.0,60.08096199999996,35.84503800000001,0.0847457627118644,25.05,9.916666666666668,5.916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,59.0,0.0,0.0,59.0,0.0,3.0,3.0,56.0,3.0,25.0,56.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,4.0,3.0,0.0,25.0,5.0,0.0,0.0,5.0,0.0,1.0,13.0,0.0,0.0,0.0,0.0,0.0,3.367295829986474,4.31748811353631,3.6375861597263857,3.8066624897703196,4.04305126783455,4.174387269895637,4.23410650459726,4.290459441148391,4.30406509320417,4.290459441148391 +4171,COCCc1ccc(OCC(O)CNC(C)C)cc1,0,18.318181818181817,5.930111363636363,2.477272727272727,4.954545454545454,165.73751277667557,71.66962425,1.2747371504823866,5.983634090909091,3.133207070707071,7.53013918181818,182.32576457108988,20.65909090909091,6.251227272727274,2.977272727272727,4.204545454545454,148.1865811844124,75.8448777954545,1.6072104412727284,6.379090909090909,2.795454545454546,7.719377545454541,228.3134789927999,15.41025641025641,6.132141025641024,2.6794871794871793,2.730769230769231,159.11899993132354,54.3243272179487,1.2739748995004743,6.20975641025641,2.5427350427350417,7.700964256410257,174.1868735273781,12.704081632653061,6.04130612244898,2.2653061224489797,2.316326530612245,162.87810113551868,42.830060499999995,1.1455015998059184,6.101063265306118,2.6218820861678,7.641639959183671,148.7732222813823,10.19811320754717,5.711103773584903,2.009433962264151,1.820754716981132,165.04810660571854,33.86988254716981,1.02835218783266,5.771222641509435,2.084119496855346,7.369005509433966,127.01577483334013,11.263157894736842,5.718052631578946,2.126315789473684,1.8736842105263158,163.87929275549442,38.79086988421051,1.0386679124059368,5.783421052631579,2.2991228070175436,7.372958778947369,132.16424133248375,11.535714285714286,6.037619047619047,2.0238095238095237,1.7619047619047619,163.34883769604733,37.81222979761903,1.0456322438110834,6.090089285714287,2.753306878306878,7.674485095238094,134.82189565467002,9.425,5.796725,1.925,1.6,168.9987144132146,30.641416299999992,0.9466880606895997,5.833819999999999,2.1958333333333337,7.479182099999998,116.14629407546326,11.508771929824562,5.650052631578947,2.3157894736842106,1.4736842105263157,161.22643596958915,39.439429403508754,1.1486807831102102,5.733929824561405,2.014619883040935,7.274164070175438,144.19630281008978,7.307851239669421,0.11872453512396687,0.01842507942949573,0.4271694214876035,3.21694214876033,1.28380460150479,34.744943381714876,0.21824167169590647,0.11292536157024789,0.8489870293847563,0.07401246900826443,49.131031015300934,0.14669421487603262,-0.0023005165289256796,-0.006332888548156448,0.11363636363636358,0.7293388429752065,-0.18479274159021203,0.6556327747933992,-0.021853676599173533,-0.0004382747933885023,-0.11277548209366389,-0.0034782520661157394,-1.9634228132681144,-0.38011231193049394,-0.017780828830260685,-0.003072950688645635,-0.061493430811612675,-0.41566009747827903,-0.026831594912081716,-1.7162527179619582,0.001578590674104562,-0.0156694757893622,-0.06560027724800456,-0.011831636840432326,-0.0915820030146391,-1.0703744307640413,-0.004663751264968819,0.0017522802870065441,0.019954882779558102,-0.1292798110979929,0.05845742918862176,-5.108687679256617,-0.010952473757978634,-0.007018589770619007,-0.013540729652742674,0.00044098832012141274,-5.313203939482548,0.23503040698581013,0.003979967448931868,-0.000737187286686795,0.00722165912989241,0.32508186496179625,0.049949437481514515,1.0978168489883822,0.0006205832181217926,0.003977811671604564,-0.00415903243411818,0.0017330678699516715,0.8679713210622781,1.1419095258808176,0.009679196933449328,0.0006815985961705394,-0.04367659852109615,0.15626359286646374,-0.08105887902295092,5.380489361586558,-0.0033453567317938255,0.011960714984775982,0.12879739379440336,0.002379258264462819,3.6549890837250305,-1.4712711530893345,-0.024750022136953976,-0.0016202206972141416,0.017094647776465955,-0.580578512396694,-0.2511829210613344,-6.960233655524395,-0.03491222982987187,-0.023885128886265268,-0.1922710601687874,-0.015195795848091331,-8.899834143720062,0.11146694214876052,-0.0017318078512396646,0.001409986833964139,0.0018078512396694246,-0.07319214876033057,0.156624851437579,0.6260144205578497,0.03335088958332417,-0.0022790263429752,-0.0477401859504132,0.0004783650826446266,4.6610056914859,0.5143178193417428,0.008163263919095274,0.0007623304564085319,-0.13051870378425406,-0.4194939828911123,-0.06436723905612339,2.3774151868656666,-0.010383510248913678,0.008888195048571855,0.06967325769658307,0.003782864325068894,0.35685293243648886,,,0.46842105263157885,0.9342105263157895,0.34210526315789475,0.02631578947368421,0.5921052631578947,-0.25,0.8781219269299996,0.015832703128573843,0.020359018918047523,0.6129911011702978,0.19286214318226372,0.28679007802458856,1.4911130281002973,0.47965222120685225,1.9609042551360851,1.5617950588837006,0.10187560525676961,0.29723359099561514,0.0,0.3991091962523847,6.072350992272734,806.0,260.9249,109.0,218.0,7292.450562173725,3153.463467,56.08843462122501,263.2799,137.86111111111111,331.32612399999994,8022.333641127954,909.0,275.05400000000003,131.0,185.0,6520.209572114146,3337.1746229999976,70.71725941600005,280.68,123.00000000000001,339.6526119999998,10045.793075683196,1202.0,478.3069999999999,209.0,213.0,12411.281994643237,4237.297522999998,99.37004216103699,484.361,198.33333333333326,600.6752120000001,13586.576135135492,1245.0,592.0480000000001,222.0,227.0,15962.05391128083,4197.345928999999,112.25915678098,597.9041999999996,256.9444444444444,748.8807159999998,14579.775783575464,1081.0,605.3769999999997,213.0,193.0,17495.099300206166,3590.2075499999996,109.00533191026197,611.7496000000001,220.91666666666666,781.1145840000004,13463.672132334053,1070.0,543.2149999999998,202.0,178.0,15568.53281177197,3685.1326389999986,98.673451678564,549.425,218.41666666666663,700.431084,12555.602926585956,969.0,507.1599999999999,170.0,148.0,13721.302366467975,3176.2273029999988,87.83310848013102,511.5675000000001,231.27777777777777,644.6567479999999,11325.03923499228,754.0,463.73800000000006,154.0,128.0,13519.897153057169,2451.3133039999993,75.73504485516797,466.70559999999995,175.66666666666669,598.3345679999999,9291.703526037061,656.0,322.053,132.0,84.0,9189.906850266581,2248.047475999999,65.47480463728198,326.83400000000006,114.8333333333333,414.627352,8219.189260175117,321.5454545454545,5.223879545454542,0.8107034948978122,18.795454545454554,141.5454545454545,56.48740246621075,1528.7775087954547,9.602633554619885,4.968715909090907,37.35542929292928,3.256548636363635,2161.765364673241,6.4545454545454355,-0.10122272727272989,-0.2786470961188837,4.999999999999997,32.090909090909086,-8.13088062996933,28.847842090909566,-0.9615617703636354,-0.019284090909094102,-4.962121212121211,-0.15304309090909254,-86.39060378379703,-29.648760330578526,-1.3869046487603334,-0.23969015371435953,-4.796487603305788,-32.42148760330576,-2.0928644031423738,-133.86771200103274,0.12313007258015585,-1.2222191115702514,-5.116821625344356,-0.9228676735537215,-7.14339623514185,-104.89669421487605,-0.45704762396694426,0.17172346812664133,1.955578512396694,-12.669421487603307,5.728828060484933,-500.6513925671485,-1.0733424282819062,-0.6878217975206627,-1.326991505968782,0.04321685537189845,-520.6939860692897,24.913223140495873,0.42187654958677806,-0.07814185238880027,0.7654958677685955,34.458677685950406,5.294640373040538,116.36858599276852,0.06578182112091002,0.42164803719008376,-0.44085743801652705,0.1837051942148772,92.00496003260149,108.48140495867767,0.9195237086776862,0.06475186663620125,-4.149276859504134,14.845041322314055,-7.700593507180337,511.14648935072296,-0.3178088895204134,1.1362679235537183,12.235752410468319,0.22602953512396778,347.2239629538779,-123.5867768595041,-2.079001859504134,-0.1360985385659879,1.4359504132231402,-48.7685950413223,-21.09936536915209,-584.6596270640492,-2.932627305709237,-2.0063508264462824,-16.15076905417814,-1.2764468512396718,-747.5860680724852,8.917355371900841,-0.13854462809917317,0.11279894671713113,0.14462809917355396,-5.855371900826446,12.52998811500632,50.081153644627975,2.6680711666659334,-0.182322107438016,-3.8192148760330555,0.03826920661157013,372.880455318872,29.31611570247934,0.4653060433884306,0.04345283601528632,-7.4395661157024815,-23.9111570247934,-3.668932626199033,135.51266565134299,-0.5918600841880797,0.5066271177685957,3.971375688705235,0.21562326652892697,20.340617148879865,0.7414513510426595,0.6345388903321911,0.47965222120685236,0.35454041235614936,0.33403039022414616,0.21367506085905372,0.2181992822549236,0.11343016803237095,0.13784778769032116,0.06135933935438704,0.09783970210263883,0.035676004051073,0.0645353784312034,0.019219890031966273,0.041633336419366986,0.010633507677755947,8.012379301270805,5.693622002980113,3.5233145826072567,2.193115172879795,0.3669291291854064,-0.521731066446592,3.0615145228039435,0.987139824329438,6.00796332298408,0.9887490981622851,14.540224638909665,10.95400846255175,16.006043502279603,11.704917027635165,1.9826518412022076,0.7769464825017801,3.4660293099154944,2.243004568855364,6.002600950304009,1.2491794190159824,3.679537448852804,2.439024115864364,20.89079618880631,14.705686319579367,0.2486082869409466,0.5707990120247352,0.8099377338733845,0.8590371865979372,0.8590371865979372,0.8590371865979372,2.0526818739133668,337.7488527229999,0.0,0.0,5.0,0.0,5.0,3.0,1.0,0.0,0.0,4.07851479956044,2.2888777898960937,0.9605605115111464,0.687833238783873,0.687833238783873,0.687833238783873,279.31019653839763,1018.9688420507166,44.002101413643196,23.15838277387992,44.74038080013595,,14.0,393.0,6.103966387748303,5.106527394840706,0.0,19.193479199573453,18.777215420722833,5.563451491696996,7.109797541277533,38.11294267322769,5.316788604006331,9.473725907600098,8.899999999999999,17.75,6.5,0.5,11.25,0.0,0.03157894736842113,-4.75,0.1007575757575756,0.028090909090908944,-0.07266666666666666,0.05162907268170425,0.15774999999999983,0.0,0.5340909090909093,0.8421052631578945,0.4333333333333337,0.5060000000000003,0.7904761904761902,16.684316611669992,0.300821359442903,0.38682135944290297,11.646830922235658,3.6643807204630106,5.449011482467182,28.33114753390565,9.113392202930193,0.5562500000000001,0.2059925093632959,0.0,0.22471910112359555,0.6,0.24302411998565804,-0.4556651882814151,-0.04028986027511598,-0.010356027006395797,-0.03797209902345126,0.756975880014342,1.4193140866494276,0.040677314381515714,0.03225713833294153,0.04435356520779461,-3.6287889426710374,1.0364009047215157,0.9509827466263971,1.354016845369552,1.1178960096735182,0.7732819524727041,1.521125039840191,1.043804712314661,1.4131267741959568,0.93439223139324,1.0678964357540015,0.984226929039626,1.262117754557408,1.1161240512385553,1.3484454619165112,1.3961006665307947,1.5691873624158987,1.3456309800240442,1.1594677840510867,1.1115928504831118,1.0736617378631295,1.3140990016028609,1.0631728380456644,1.3876268758271415,1.0492642513134738,1.1844581768245892,1.2056567456125893,1.1679037463504862,0.9571354539397375,1.1330102368500392,1.0255962215676389,1.1825793568228258,1.054805818860746,1.20842805749872,1.2075503064621773,1.1701812465826849,1.1009043746244513,0.9133953195598019,0.8264666569327026,0.9816642428323094,0.8417330200086692,0.8053283406648007,0.9170908508560036,0.9157872162758417,0.9672348751101079,0.8362437344360129,0.7713244281125734,0.8196890460889006,0.9575277671911603,0.7946326800886866,0.7938954515394469,0.801086905124613,1.276344428180487,0.9193624716898221,1.0096337562163413,0.7976999604859183,1.0053369646561379,0.7805722142115746,0.8579430357509772,0.845175420512454,0.9148647391937763,1.2640588607509728,1.5654318423302815,1.4611112922093097,0.8443024126216384,1.3308866256843142,1.1648213503335414,1.256396152004365,1.1366951602557749,1.532716475933239,2.074576429412414,1.641690600292729,1.1450247609130582,0.9762227876731695,1.143325080149854,1.2646286885297948,0.8293228536880287,1.118324502247913,0.7610184105646414,0.9694523990889617,0.7308989526927647,1.1358298055789975,1.0319970931706415,1.138719120786968,0.8108790269542123,0.8328745244507936,0.5118433285973071,0.6272346229759763,1.705806232631154,1.0206255845136287,1.1072478427927068,0.8428972626812051,1.1046019253164148,0.5382348304557393,0.440639632916433,0.46235466571186873,1.0394474509137244,4.0,0.07427813488419549,1.5555555555555562,0.375,0.7822222222222224,0.4027777777777778,0.18204081632653063,0.22395833333333331,0.13151927437641722,0.07562500000000003,2989.3052921510766,3626.7698856550733,1742.9188819835374,1485.6466827766476,12.294431271811797,0.4062246940695229,7.300129689661275,0.6841387474559041,1.0,0.6,1.3809168190768573,3.1705538287412036,4.498871107126151,4.771598379853424,4.771598379853424,4.771598379853424,0.21052631578947367,0.01061116212631364,0.06763285024154593,0.017857142857142856,0.043456790123456795,0.021198830409356724,0.01213605442176871,0.018663194444444444,0.010959939531368099,0.0075625000000000015,0.4206047799448709,17.05263157894737,9.833648393194707,8.0,115.28706854388426,1.0,3.8109632724973004,99.61173250473962,,82.43958228061868,80.94129626922243,83.44440331784631,82.46371737220441,126.71924376250276,81.9731252185131,82.5128370685286,105.72814029317956,0.020073508623126887,-0.01937692597847263,-0.3437102440936272,0.2660217654171702,0.22671804752729613,-0.14394148562297593,0.018869876044709206,-0.10013521445906079,-0.003881101528427369,-0.13283534163695054,-0.04699548755395998,-0.039962988211190674,-0.052014237764873926,-0.1497654112664643,-0.16678086520084745,-0.14395560102936167,-0.12920968990333148,-0.020900061333813197,-0.04939575520693367,0.007233222976334869,-0.13875958041201075,-0.07726888041569227,-0.15986004789424296,-0.001864035847041712,-0.1464691050296285,-0.03928211856209113,0.09510299772175806,0.046714211682254494,-0.04018717313515002,0.045534522247468096,-0.1470339906193415,-0.05018507085685995,-0.06215246666492122,-0.015949277414232542,0.005958297649442971,-0.10814354654653698,0.03216135622876226,0.03352270400365151,-0.040009992331792664,0.016905842896580047,0.10105306528035288,0.038907351962258994,0.03159644950137196,0.0028435596799611246,0.03522514000657038,-0.004898817402584048,0.023415890500263575,0.017666458511566036,0.15625790515304375,0.08152650943920514,0.03699298007255287,-0.10224654744479093,0.048575195213467225,-0.06313957663645942,0.15485676008953098,-0.015328679925322318,0.10591699524765778,0.15170713961053117,0.03214672198271273,0.07439268031209753,-0.2013274634139774,-0.20846594270603888,-0.08793561533419586,0.04001842574998558,-0.18047527296082208,-0.19565510262770094,-0.2003236436179469,-0.15997050223532866,-0.21151252964027004,-0.22647113973946376,-0.20531399711033188,-0.1811448683205605,0.015253039298840854,-0.014586773066168573,0.07652541414323381,0.004232164449818627,-0.022752087347463076,0.12200053750702702,0.018017425260427985,0.15281632203493484,-0.020181705077450453,-0.0562319379425732,0.006463303941275234,0.09486887604769209,0.07037880253361706,0.06875801965087973,0.04137460895762314,-0.30554318080570225,-0.13040146931233038,-0.05013787844402211,0.06842478229844583,-0.04757803662437965,0.07870858171255661,0.08206633939634374,0.051111175937752995,0.007263290125651012,8.734913183032234,10.08697814557873,1.3218021521667296,12.788618344458872,27.86660147059009,31.706227105383938,31.98113619629303,31.98113619629303,31.98113619629303,37.257180847585616,29.674106118790313,1.9356364998786226,5.647438228916688,0.0,7.58307472879531,4126.871125438638,3884.1688618510498,781.1565981850827,18.0,23.0,24.0,26.0,32.0,27.0,26.0,28.0,24.0,267.1834436600003,19.0,4.442651256490317,5.187385805840755,5.978885764901122,6.75110146893676,7.545918151209323,8.33110454805304,9.128153700988236,9.920492151351953,10.719493753007932,0.5530303030303031,0.9642727272727275,1.1388640238876244,0.5059169246372643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6154848258029397,0.9501782531194294,0.9943885320797196,0.5608001915141646,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,19.897041906447136,18.460360185545127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.980208536304467,24.117007251546223,19.69639477633807,6.606881964512918,132.0729297881515,-247.63400613218033,-21.895768566526876,-5.628045593913189,-20.636167177681692,411.38312632654913,771.3348359185363,22.10633284711632,17.530337179966732,24.10421362245426,0.5,0.8910477809838709,0.2617890870878911,36.82909226327676,0.11236945910956492,122.9165713690506,0.10895221901612921,7.0,0.47368421052631576,0.2529414993243457,0.5807479697918793,0.8240548506492866,0.8740101008984595,0.8740101008984595,0.8740101008984595,1.6132,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,76.66250000000005,14.580253302440804,0.0,5.316788604006331,0.0,32.41410323920352,26.868317876215947,29.828919765543436,0.0,5.749511833283905,3.6635616461296463,0.0,4.875197323201151,0.0,6.251903883165888,0.0,7.704811922932594,0.0,9.202207388745993,24.333333333333336,7.890255784412531,0.0,0.0,0.0,0.0,0.0,2.0009136018069107,0.0,42.42800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.11001705105548,10.05365155780638,0.0,5.749511833283905,44.12065248795291,11.157684576726059,0.0,19.410925891078243,24.26546827384644,0.0,0.0,0.0,22.26034468403963,27.08133233532935,23.554036156848092,199.22346500947924,,164.78517959883135,161.77282300059372,166.8104221995776,164.83371927959007,254.62745529696318,163.84758233163421,164.93243756929203,211.93511471133309,23.554036156848092,199.22346500947924,,163.98630741838025,160.83978192885894,166.14415449260008,164.03713782863053,257.20355213620485,163.00890343580232,164.13992674328824,212.97258864877665,4.485099808685729,154.40504741431866,,126.75233077449096,124.43065166127064,128.55198476420003,126.79043442756715,197.34870063659906,126.03936332844745,126.86493273833048,163.52718867375768,1.2396861135183206,10.485445526814697,,8.672904189412176,8.514359105294407,8.779495905240926,8.675458909452109,13.40144501562964,8.623556964822853,8.680654608910107,11.15447972164911,2.242549904342865,99.61173250473962,,82.43958228061868,80.94129626922243,83.44440331784631,82.46371737220441,126.71924376250276,81.9731252185131,82.5128370685286,105.72814029317956,41.80784313725489,0.0,5.794343982297903,0.0,0.0,0.0,9.72607924092502,43.75309541150766,2.4704660350307757,3.169905382911613,10.568141544202149,0.0,-0.12010557158690316,0.0,0.0,0.0,0.0,24.675208426623243,484.24531286325,60.76034003938172,139.50436846461295,197.95032871355065,209.95032871355068,209.95032871355068,209.95032871355068,266.0,106.00518660077944,59.210743251450666,50.697682164175276,50.72,50.72,1.0,6.664329297784893,5.247927513443585,3.5934487690927788,4.278831712148656,,4.2687104026052705,4.268995754628728,4.270590938505111,4.268712439618296,4.266873536800962,4.26890007691935,4.26868635225644,4.267117986893737,0.18912888258383045,0.22520166906045558,,0.22466896855817212,0.22468398708572251,0.22476794413184797,0.22466907576938402,0.22457229141057697,0.2246789514168079,0.22466770275033893,0.22458515720493355,1.9209662874485776,2.095533894053275,,2.0931656543562958,2.0932324994826814,2.0936060969300194,2.093166131552532,2.0927352524422136,2.0932100870027757,2.093160020238655,2.092792541013959,226.03999999999962,167.5750294216237,89.9456124310938,,90.68211199312816,90.66086466854543,90.58479519294555,90.68210400273982,90.80067744375089,90.6702862458384,90.68366492196033,90.81157525938251,8.819738390611773,4.733979601636516,,4.77274273648043,4.771624456239233,4.767620799628713,4.772742315933675,4.77898302335531,4.772120328728337,4.772824469576859,4.7795565925990795,5.7632850739892705,5.141059067514821,,5.149214002157265,5.14897966912633,5.148140261659971,5.1492139140429884,5.150520632586072,5.149083584832527,5.149231126984877,5.150640644484856,10.568141544202149,0.0,12.895984623836634,1.2187249207789435,0.782188681027967,8.260365096363474,0.4102944713749186,5.665825091731929,1.6984755706839871,274.1978429668255,71.77583354218258,-134.5782003324783,-11.899388030764927,-3.0585954621017795,-11.214850027706524,223.56865138556202,419.1865878721674,12.013820464252696,9.526967906185622,13.099580871005232,906.0,21.0,1.105171715522539,0.6036670914101285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.11785113019775792,0.030982085323622514,14.08757566981053,12.056238916311631,9.113392202930195,6.736267834766838,7.682698975155361,4.914526399758236,5.236782774118167,2.722324032776903,3.58404247994835,1.595342823214063,3.1308704672844425,1.141632129634336,1.7424552176424917,0.5189370308630894,1.0824667469035416,0.2764711996216546,1.5629488288431146,0.6674745347237898,1.677807669338016,0.5906918890196285,2.4472096680160846,0.7060266167453367,66.42824595337234,32.91635028078852,22.924329700114274,21.715497146188227,21.715497146188227,21.715497146188227,84.0,89.0,45.22582499999997,29.122174999999995,0.13636363636363635,19.04,7.194444444444445,4.500000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,44.0,0.0,1.0,44.0,6.0,0.0,3.0,41.0,6.0,19.0,38.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,4.0,2.0,0.0,19.0,4.0,0.0,1.0,3.0,0.0,1.0,9.0,0.0,0.0,0.0,0.0,1.0,3.1354942159291497,4.298135385020496,3.5115454388310208,3.834061463958434,4.2176677782541,4.71009310591487,4.586242176102573,4.621289567867975,4.725172978382788,4.665206399432151 +4495,CS(=O)(=O)Nc1ccc([N+](=O)[O-])cc1Oc1ccccc1,0,34.96969696969697,6.8298000000000005,3.5757575757575757,10.983164983164983,161.34560046344208,139.0212740606061,1.6859719653996366,6.876366666666668,8.833148875587147,8.319817484848484,243.7601249680074,37.088235294117645,6.684258823529412,4.088235294117647,8.127450980392156,146.55216026274118,144.33704570588236,1.9779688149999999,6.840111764705883,3.437772331154684,8.152479294117645,286.47573665781414,28.490909090909092,6.749218181818182,3.672727272727273,8.648484848484848,150.87514127105032,107.95045683636363,1.673602159719036,6.858616363636363,5.867732884399551,8.220542145454546,245.7383838284516,22.333333333333332,6.722014492753623,3.1739130434782608,5.908212560386473,160.44688029757674,82.21691423188405,1.386249102322391,6.783146376811594,4.264805868670603,8.245817333333331,202.38141042155345,24.1875,6.6140625,3.171875,6.125,159.28393658607297,90.35490862500001,1.4049669623693908,6.688996875,4.122034143518518,8.17797640625,202.94579512861503,26.4,6.833931666666667,3.216666666666667,7.588888888888889,155.76548646600344,99.26079658333335,1.5194144236707499,6.906066666666665,5.430658436213991,8.345828133333333,221.06416923757973,22.78125,6.51941875,2.9375,5.369791666666666,157.98623176859056,84.16999565625,1.450083761972578,6.600959375,4.070360725308642,8.05105971875,201.95511367520297,23.723076923076924,6.395415384615386,2.6153846153846154,4.5487179487179485,160.47317833177306,88.3053987076923,1.345980460618277,6.479270769230769,3.981623931623932,7.988724184615385,184.5668682683236,21.086206896551722,6.961465517241379,1.9827586206896552,6.0,166.02417201681038,76.0483462413793,1.1118671100335,6.975118965517241,8.27809706257982,8.533461689655171,163.6350418096374,11.461891643709826,0.19839467401285577,0.02354033200248772,0.6960514233241506,5.007856341189675,1.6038256372960757,51.735853616161606,0.302032475465517,0.17768154269972447,3.851134489929851,0.13380289439853071,46.387920527461134,2.6994274293739533,0.01727876627234915,-0.009468531588993386,0.030330038351428713,0.61038489469862,0.006472273453064683,11.571890307189554,-0.02246689685755271,0.019353038405444833,-0.6263076998797493,0.025053938043536957,0.5431079957708173,-1.7753902662993575,0.05585314967860421,0.0031272098690854214,-0.050321395775941254,1.0978675645342313,-0.34286589811744533,-7.615158985858577,-0.07858256691933796,0.047462975206611545,1.2267876419765684,0.030279223507805316,-6.6703870960211,-1.4491555874955082,-0.05789463009542059,-0.0017702306162160457,0.05274084720725034,-1.16532474503489,0.0842244237061006,-6.677340492753623,0.018302703727460172,-0.05285901305545573,-0.6350303986803847,-0.03785987683155666,-2.078686675177344,0.34682047750229583,-0.030645336891643702,-0.007014913699670258,-0.04690369605142334,-0.3765432098765433,0.023168428391047362,1.7065293611111105,0.009960908460400153,-0.024357063533057857,-0.4040914807485315,-0.022365465421258033,3.6271410239525013,-0.7588613406795228,0.03978456841138659,0.007802378679731732,-0.04100091827364557,0.2555555555555555,0.021432285827739907,-3.2868041277777733,-0.0009375779137003414,0.03146360881542699,0.19625538966167472,0.026606675298438943,-2.241733969447076,-0.529126492194674,-0.019466454315886127,-0.0018771622295023916,-0.09567263544536271,-0.5333719135802469,-0.14032433311606035,-2.7273635034722226,-0.00753694894570402,-0.018977376033057825,-0.34564821157272,-0.010741299228076219,-6.267594737998866,1.5059405241223425,0.014778193120011286,-0.0017595254213195624,-0.22239174966447692,0.10693257359924037,-0.2502371569276668,6.796573018803417,-0.04745689240889227,0.018444984106802287,-0.19727518622486817,0.008259478095641714,-0.8897670246373441,-1.8009721034799409,0.006282650961020884,0.003651869467767368,-0.02363763022070229,0.005959982971477281,-0.0706746119501031,-8.208063544061304,-0.03356481484358644,0.002849230550014227,1.0939824324513328,0.005151466625502701,-7.440129839938263,,,0.4666666666666667,1.4761904761904763,0.8571428571428571,0.07142857142857142,0.6190476190476191,0.23809523809523808,0.5983868736280404,0.026907540598054103,0.03509801678853029,1.0926596042684906,0.29551074080925116,0.17349665013427074,1.691046477896531,0.4690073909435219,1.9908050696246031,1.2763492862283934,0.19114154011385787,0.4223063484448207,0.0,0.7144557833962094,9.33474825709092,1154.0,225.38340000000002,118.0,362.44444444444446,5324.404815293588,4587.702044000001,55.63707485818801,226.92010000000002,291.49391289437585,274.553977,8044.084123944244,1261.0,227.26479999999998,139.0,276.3333333333333,4982.773448933201,4907.459554,67.25093971,232.56380000000001,116.88425925925925,277.18429599999996,9740.17504636568,1567.0,371.207,202.0,475.66666666666663,8298.132769907768,5937.275126,92.04811878454699,377.22389999999996,322.7253086419753,452.12981800000006,13515.611110564838,1541.0,463.819,219.0,407.66666666666663,11070.834740532795,5672.967081999999,95.65118806024499,468.03709999999995,294.2716049382716,568.9613959999999,13964.317319087188,1548.0,423.3,203.0,392.0,10194.17194150867,5782.7141520000005,89.91788559164101,428.0958,263.81018518518516,523.39049,12988.530888231362,1584.0,410.0359,193.0,455.3333333333333,9345.929187960206,5955.647795000001,91.164865420245,414.3639999999999,325.8395061728395,500.749688,13263.850154254784,1458.0,417.2428,188.0,343.66666666666663,10111.118833189796,5386.879722,92.80536076624499,422.4614,260.50308641975306,515.267822,12925.12727521299,1542.0,415.70200000000006,170.0,295.66666666666663,10430.756591565249,5739.850915999999,87.48872994018801,421.1526,258.8055555555556,519.267072,11996.846437441034,1223.0,403.765,115.0,348.0,9629.401976975003,4410.804082,64.488292381943,404.5569,480.12962962962956,494.94077799999997,9490.83242495897,378.24242424242425,6.54702424242424,0.7768309560820947,22.96969696969697,165.25925925925927,52.9262460307705,1707.283169333333,9.96707169036206,5.863490909090907,127.08743816768508,4.415495515151513,1530.8013774062174,91.78053259871442,0.5874780532598711,-0.3219300740257751,1.0312213039485763,20.75308641975308,0.22005729740419921,393.44427044444484,-0.7638744931567921,0.6580033057851243,-21.294461795911477,0.8518338934802565,18.465671856207788,-97.64646464646466,3.0719232323232317,0.17199654279969817,-2.767676767676769,60.382716049382715,-18.857624396459492,-418.83374422222175,-4.322041180563588,2.610463636363635,67.47332030871127,1.6653572929292924,-366.8712902811605,-99.99173553719007,-3.9947294765840207,-0.12214591251890715,3.6391184573002735,-80.40740740740742,5.811485235720942,-460.736494,1.2628865571947518,-3.6472719008264454,-43.817097508946546,-2.6123315013774095,-143.42938058723675,22.196510560146933,-1.961301561065197,-0.4489544767788965,-3.0018365472910937,-24.098765432098773,1.4827794170270312,109.21787911111107,0.6374981414656098,-1.5588520661157028,-25.861854767906017,-1.431389786960514,232.13702553296008,-45.53168044077137,2.3870741046831956,0.46814272078390395,-2.460055096418734,15.33333333333333,1.2859371496643943,-197.2082476666664,-0.056254674822020484,1.8878165289256192,11.775323379700483,1.5964005179063365,-134.50403816682456,-33.864095500459136,-1.2458530762167122,-0.12013838268815306,-6.1230486685032135,-34.135802469135804,-8.980757319427862,-174.55126422222224,-0.4823647325250573,-1.2145520661157008,-22.12148554065408,-0.687443150596878,-401.12606323192745,97.88613406795226,0.9605825528007336,-0.11436915238577156,-14.455463728190999,6.950617283950624,-16.265415200298342,441.7772462222221,-3.084698006577997,1.1989239669421488,-12.82288710461643,0.5368660762167115,-57.83485660142737,-104.45638200183657,0.3643937557392113,0.21180842913050735,-1.370982552800733,0.3456790123456823,-4.09912749310598,-476.0676855555556,-1.9467592609280138,0.16525537190082518,63.4509810821773,0.2987850642791567,-431.5275307164192,0.7360866265625529,0.5645002218939656,0.44768887317336187,0.35396315697833347,0.3174784146374232,0.19427228623949075,0.18701798903212757,0.09016595754339918,0.1200811063739437,0.051086140212390184,0.07881594370583013,0.026787792736327462,0.04972520768882696,0.013734964301861032,0.03379943328411852,0.008407809762037356,16.013330822407067,5.697523513207483,3.607858315189111,2.195250824260812,0.47973060665189315,-0.49126455711882355,4.038016097868191,0.96788811265588,7.004119881862408,0.61589417635597,14.594779081217169,10.318108208715714,32.06664830336324,11.710082536045382,2.9558940684900277,0.6692161508101002,3.5535815237918262,2.2447166434374797,8.00193788116756,0.2992587933389456,3.7691152926904667,2.4405680452345537,24.442360890850978,14.651534402120701,0.3447323617260939,0.6015082437879403,0.720151789010343,0.8541800313003113,0.8919027687495382,0.8919027687495382,1.967722679528948,759.3860166888998,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,3.1737850551189357,1.7804511364291957,1.1366598486159676,0.4093871213432392,0.20469356067161826,0.20469356067161826,-34.58655483107333,963.4381604808743,67.41333640989754,29.195095772147702,64.26215207867757,,9.0,317.0,14.946602202225254,18.53211525309451,17.12428438265103,5.749511833283905,6.255769183511404,18.19910120538483,30.33183534230805,0.0,4.722094864452088,4.736862953800049,9.8,31.0,18.0,1.5,13.0,0.0,0.0333333333333333,5.0,0.2653253849975159,0.10747474747474728,-0.15785063752276862,0.028787878787878696,0.21399999999999975,0.0,0.7030303030303031,0.933333333333333,0.4377049180327872,0.5955555555555558,0.9045454545454543,12.56612434618885,0.5650583525591362,0.7370583525591361,22.945851689638303,6.205725556994274,3.6434296528196857,35.51197603582715,9.84915520981396,0.5000000000000002,0.18707482993197275,0.08503401360544217,0.24489795918367344,0.07692307692307693,0.5342906948709052,-1.0207054464837537,-0.10201156284794333,-0.03093046807526526,-0.08505878720697947,0.4657093051290947,0.8896880083945417,0.03166177700056013,0.026960242678622477,0.04236609563783531,-3.8006824319115893,0.7862993298585257,0.532919256890627,1.3571995482206376,1.1677789849449016,0.5299654599625596,1.1977288094492555,0.7696293014206091,1.2818066284705536,0.4919133424923993,0.6908379148384778,0.44433081160428506,0.9156817284022752,1.1259734016984457,0.5224658160681838,0.9728143487213567,1.2158311345646438,0.5912717493174687,1.294078494131747,1.102797213299856,1.3542912153009445,0.5218510846780696,0.4326096274787663,0.5931524127234782,1.0765714335399388,0.9042586542011801,1.2868543562238315,1.2500603400387102,0.827807732017896,1.165396683101748,0.9202826838590699,0.9193689051007685,0.7537307311377142,1.2859886244566094,0.96273155099781,1.2803085185661534,0.9501191509267122,0.9471438871975645,1.1294711499742192,1.531558702629834,1.1319261213720317,1.0676826535186015,0.9513505600388593,0.9434415581622358,0.9487340819557705,1.111313226374608,0.9324720733774512,1.146861543086911,0.8933680483013078,1.0046466912353789,0.8087990009803205,0.8954141202739,1.1029023746701847,0.9151053339309725,0.9677309333635741,0.9970192062894171,1.0026139110396417,0.8179973456705903,0.8731625586600126,0.8408450921517769,0.9771114481049605,0.9002163114885435,0.9292084120567381,1.0015341835102163,1.0557387862796834,0.9545607350963693,1.0901127407137121,0.9129635852139529,0.9307825666777662,0.9408388425139229,0.8456623225480953,0.8985013655627876,1.0948043126989921,1.0301899350449262,0.7646118484263781,0.8059820643894288,1.3609904607266086,0.8882391476743786,1.1680909038788505,1.0189305860289373,1.2652167313302745,0.749654755896151,0.9606783870431468,0.7443535969978194,1.0616566584418756,1.1661924205338445,1.2617514363014668,0.6036756062374005,0.852697661723228,1.1840677599344658,0.9424666987788735,1.170188615227938,1.0163539329881104,1.2677019093122652,1.3517714801504,1.270319222007801,1.0753805191474803,6.0,0.0,2.000000000000001,1.25,1.4444444444444446,0.6736111111111112,0.6693877551020408,0.48958333333333337,0.1443688586545729,0.078125,4542.120425508521,4895.887879723428,2385.767847633016,2259.266287837895,10.221156554142976,0.39655590824672876,6.1678965334828035,0.6571543472976245,1.0,0.07692307692307693,1.8706090642395177,3.2639429829292577,3.907734270742486,4.635006998015214,4.839700558686835,4.839700558686835,0.2727272727272727,0.0,0.06451612903225809,0.04464285714285714,0.053497942386831275,0.02322796934865901,0.026775510204081632,0.020399305555555556,0.007598360981819626,0.015625,0.529010347379335,17.355371900826448,7.513007284079085,5.6055363321799305,120.93059846798744,1.0,3.9539192338829903,92.4194710936269,,59.86882690814703,64.2343562050812,66.42930095539602,59.88789376278164,107.36998207604408,65.04736087698511,65.16399228227701,89.85529784952688,0.23551325673675974,0.08709289379023101,-0.40222591542008673,0.04357442185317397,0.12188546418119013,0.004035521881279082,0.22367255004708467,-0.07438569916339263,0.10891980174975621,-0.16262940219757363,0.1872451127171736,0.011707961676128668,-0.15489504887037334,0.2815254489895479,0.1328447648382759,-0.07229551451187338,0.21922904527117887,-0.2137800332806067,-0.14719306735241922,-0.2601791969496662,0.26712383563003106,0.31855227211213666,0.22629722356841492,-0.1437957774389198,-0.12643249757912262,-0.29181544506416074,-0.07519990015557,0.07577148101411033,-0.23269931596281643,0.05251470094223982,-0.12906601565510284,0.06059846279526915,-0.2974929880296323,-0.1648943708252453,-0.28295259980543735,-0.04481094758164002,0.030258572344175626,-0.15446653013305142,-0.29799552949928354,-0.06738538918205807,-0.0751904975347378,0.014445727672808321,0.03298542967459636,0.032979594148104745,-0.1370826882914926,-0.10492790677790433,-0.16715232896713503,0.07819149862096694,-0.06620733856753729,0.20053244175702314,0.33144726586299567,-0.05890501319261217,0.051030927835051525,0.01336322685542866,-0.06353048994152516,-0.003104228815975071,0.17707865621472782,0.05096040924430285,0.19884977390093822,-0.04832581292623356,-0.04616397612562089,-0.0981198432505538,-0.07974238550688303,-0.1374505277044855,-0.1065070316001793,-0.0874935091776162,-0.05271708714244989,-0.024954101157789284,-0.10680555641690326,-0.08975230869670721,-0.08027703194583635,-0.1351126471446057,0.13138673536045753,0.07448886011452946,-0.07474514043105328,-0.3195047696366958,0.021352963486535897,-0.15602516327744145,0.13137065581692184,-0.15712513144736456,0.10380922985328679,-0.051225213437939836,0.061728695278002975,-0.01918100691990735,-0.15712695246672453,0.03166743760779473,0.15513245384055935,-0.03395960331180052,0.0011901265861914518,-0.044066268992466635,-0.15865329303269118,-0.11112982069843194,0.01603560227315972,0.28406757419454853,0.038500412481056685,-0.16038938058311514,8.663041300244087,11.211582451965935,2.6207413942088964,21.828614231547256,35.090043827509724,42.822620985434405,45.807955142595155,46.01428625175215,46.01428625175215,41.806906462116665,26.80333501079626,4.013972342391015,8.868433317341234,0.0,15.003571451320397,3681.391170480901,2112.3328516617553,1846.0586346031498,39.0,31.0,34.0,43.0,55.0,54.0,62.0,60.0,44.0,308.04669248400035,22.0,4.672828834461906,5.4680601411351315,6.343880434126331,7.166265974133638,8.043342170441608,8.880029117468442,9.756320761816548,10.601547644956717,11.476603745670717,0.808080808080808,1.030060606060606,1.1224300660486197,0.7778425332334249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7044368717111233,1.0149732620320857,1.0419232382087444,0.6826649766543925,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,5.749511833283905,5.749511833283905,10.023291153407584,5.687386274683562,14.836413133217661,8.417796984328938,0.0,0.0,18.19910120538483,18.19910120538483,6.06636706846161,22.932833575474245,269.4502762841942,-514.756044228473,-51.445859075277674,-15.598668006923422,-42.896337019039414,234.8637214531209,448.68211625240133,15.96747733461986,13.596427765224282,21.365815059638155,0.4444444444444444,0.6060015074937136,0.2381178520793433,55.1899888361727,0.14280547554796508,46.64946367630074,0.39399849250628644,5.0,0.22727272727272727,0.37082928494045225,0.6470436103324072,0.7746687071389006,0.9188431530811266,0.9594215765405636,0.9594215765405636,2.7586000000000013,,2.1607142857142856,1.7753167695229957,1.2292696050370093,2.156686954890782,-6.023697027024913,1.6276009791921666,1.594356091478482,-2.476042771605518,78.07890000000003,18.077970986946656,0.0,0.0,0.0,0.0,10.977864047963493,58.645254816458454,0.0,11.49902366656781,3.8066624897703196,0.0,5.1298987149230735,0.0,6.6240652277998935,0.0,8.193400231952097,0.0,9.803390935997843,26.666666666666664,12.220362234399934,0.0,0.0,0.0,0.0,0.0,0.43269368858654644,0.0,33.992,0.0,33.46061267794155,0.0,-0.5812707860922148,-3.5249093495422854,0.0,0.0,0.0,37.04019217960445,9.458957818252138,11.374772549367124,11.49902366656781,19.59687721665801,10.023291153407584,10.114318268765572,0.0,48.53093654769288,0.0,0.0,0.0,25.66880359670302,23.24641676646707,25.53343722649842,184.8389421872538,,120.24143841249573,128.29963462258877,132.74152861507423,120.28066443874535,218.1234532801175,129.9397121369043,130.17614112727034,180.88966368553258,25.53343722649842,184.8389421872538,,118.49228875263184,126.6933956406395,131.62933230575504,118.53477499907187,220.7636611791131,128.4671207747781,128.73362847307558,182.18663847065937,4.7557480610099425,126.2651682696434,,83.7011713878909,88.13090523549754,92.02956463957857,83.73299860806969,155.6695278234597,89.41545718571199,89.6806155915779,126.5617048031231,1.2158779631665915,8.801854389869229,,5.725782781547416,6.109506410599465,6.321025172146392,5.7276506875593025,10.386831108577024,6.187605339852586,6.19886386320335,8.613793508834885,2.377874030504971,92.4194710936269,,59.86882690814703,64.2343562050812,66.42930095539602,59.88789376278164,107.36998207604408,65.04736087698511,65.16399228227701,89.85529784952688,33.49411764705883,0.0,0.9868153187200805,0.0,0.0,0.0,0.0,34.38346686088857,0.0,2.260750897581255,5.514814814814814,0.0,0.0,0.0,0.0,0.0,0.0,22.527944229594954,305.61504287899425,61.73009911990408,107.7101184366655,128.95523093450203,152.95523093450208,159.71011843666557,159.71011843666557,465.0,115.40887882421104,198.69895485832092,54.55741760044323,106.92,98.54,0.8,8.043482700239176,5.459431618637297,4.025015150034615,4.507928644179959,,4.516708050181291,4.5094078780767655,4.510228264155789,4.5167048653027715,4.494965837793854,4.50992299720698,4.510727138132331,4.502488258750116,0.1916673880968864,0.21466326877047423,,0.2150813357229186,0.21473370847984596,0.214772774483609,0.21508118406203675,0.21404599227589782,0.21475823796223711,0.21479653038725383,0.21440420279762457,2.1344660195765752,2.247775112072661,,2.2497207657467646,2.248103198732491,2.2482851098580285,2.2497200606138215,2.2448954125782192,2.2482174243081787,2.24839571321539,2.2465675350760423,207.86999999999986,133.0222901919742,110.23818782203877,,108.5276801711205,109.76375185105098,109.72473550803198,108.52745082007159,110.6440890451999,109.72748171819828,109.6459159962717,110.47697815948061,6.334394771046391,5.249437515335179,,5.167984770053357,5.2268453262405234,5.22498740514438,5.167973848574838,5.268766145009519,5.225118177057061,5.221234095060557,5.260808483784791,5.6324540543369634,5.444580713380283,,5.428942601957659,5.440267690439177,5.439912169802087,5.428940488660011,5.448255989512128,5.4399371976664765,5.439193573083596,5.446744501532743,30.422714553413954,10.232193050831443,10.813463836923658,-0.06302295918367329,0.49571664777021973,12.220362234399934,0.9868153187200805,0.0,-3.5249093495422854,252.88981675541706,135.88754602430606,-259.59867852430745,-25.94486685728382,-7.866626621948709,-21.633223210358953,118.44506228948663,226.27667176048732,8.05262232840211,6.856868841226888,10.775079607642251,936.0,28.0,2.598117650345086,1.127231119163313,0.3535533905932738,0.10206207261596575,0.25,0.029868957932835283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.056131276171213614,0.20767753857956014,0.04697175875468734,15.45781915781361,11.854504659773278,9.849155209813961,7.787189453523336,9.84183085376012,6.022440873424213,6.358611627092338,3.0656425564755723,5.163487574079579,2.196704029132778,4.334876903820657,1.4733286004980104,2.685161215196656,0.7416880723004957,2.095564863615348,0.521284205246316,2.9027518037274236,0.9370531090705052,4.132726507323197,1.2957322391971124,6.182367922671882,1.5653078854458577,70.04165036558076,47.82675820817773,33.177093351245,27.0880472019735,26.41863840050752,26.41863840050752,106.0,118.0,38.82151599999999,22.166483999999997,0.3939393939393939,64.08,8.118055555555555,4.513888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,33.0,0.0,0.0,34.0,12.0,3.0,9.0,25.0,15.0,22.0,19.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,5.0,1.0,0.0,21.0,8.0,0.0,2.0,5.0,0.0,2.0,5.0,1.0,0.0,0.0,0.0,2.0,3.4657359027997265,6.56134002398102,4.0943445622221,4.430816798843313,4.976733742420574,5.528932932700948,5.639466151053152,6.030309588744016,6.321105467617081,6.342121418721152 +60795,O=C1CCc2ccc(OCCCCN3CCN(c4cccc(Cl)c4Cl)CC3)cc2N1,0,29.964912280701753,6.021447368421053,3.210526315789474,6.056313623565085,162.28049842795656,122.09539754385966,1.5889553759811053,6.168433333333334,3.018704358824206,7.654210280701753,223.69852333841484,26.116666666666667,6.275900000000001,3.9166666666666665,5.92037037037037,146.26749826674506,99.8027041166667,1.8576474060000003,6.450766666666667,2.6205932784636494,7.72499573333333,265.67866010872063,21.65137614678899,6.198486238532112,3.4220183486238533,4.189602446483181,155.55703608073938,80.9290325229358,1.5715835691788071,6.333932110091742,2.4900894778570626,7.721031816513758,217.18685478544614,19.375838926174495,6.050898657718121,2.865771812080537,2.8832546192725164,160.75072502854738,71.74332954362414,1.3847801208921005,6.179111409395972,2.2895099576611435,7.667341791946307,182.51979352840794,15.470588235294118,5.861765359477125,2.5294117647058822,2.187363834422658,159.71602827006822,54.713165189542494,1.2942542876491439,5.989366013071896,2.1345921084483175,7.506501424836601,163.25623377134602,13.620915032679738,5.747156862745098,2.320261437908497,1.916485112563544,163.29520760098362,47.284741150326795,1.193149843771595,5.8697718954248375,1.9693778746066326,7.443915712418303,146.53171958416445,14.053435114503817,5.828558015267177,2.3282442748091605,1.9694656488549618,163.47203668844728,48.2116263053435,1.1861770952497326,5.961290076335877,2.1023701818867218,7.5369314961832075,145.70150838558652,13.214285714285714,5.844572321428571,2.3660714285714284,1.7361111111111112,164.69985446738195,45.27479736607142,1.148262696671143,5.9498830357142865,1.9956183862433863,7.528200500000001,143.21057094999037,13.989795918367347,5.871836734693879,2.5510204081632653,1.9807256235827664,163.51317567263527,48.8357474387755,1.2276195261436122,5.9729551020408165,2.0814121945074326,7.522681469387756,155.6721466336128,12.822406894429054,0.09435814096645118,0.015123322641589495,0.5484764542936288,3.3623641082346323,1.4275627539560996,60.21426533579564,0.2613092338872545,0.10387903970452442,0.7761705394303969,0.06930774946137272,52.87990595070185,0.3375346260387804,0.0021847537703909912,-0.005838567551429231,0.1339796860572484,0.9669586843435203,-0.2928399361670953,1.5955540264850716,-0.014068436878348323,0.0031003462603878926,0.016404661272676993,-0.0016302827947060673,-0.40979786145538794,0.1632683027381745,-0.004570888431443885,-0.0006994662794074978,-0.053063610256931536,-0.1652803352615951,-0.060479996055367885,0.797970230436465,0.0047229090240983014,-0.004139574067955919,0.04707659986652287,-0.0034616902307273104,-0.22821039976544832,1.1447425227380232,-0.011001576737085806,-0.0008275335974038846,-0.06772760229786759,-0.4397655412230195,0.12690753236385585,5.3239347727643604,0.022868695043647143,-0.007182654446076298,-0.06198044361411038,-0.002716731799769055,1.4100915687418674,-0.4555911622882455,-0.0012648374462127287,0.0012929685071661882,-0.055184400630058104,-0.2274166775260122,-0.16069414271266902,-2.238805551596569,-0.025518812307192506,-0.0017074882769358994,-0.01196685495998914,0.0002874249452320182,-6.185069174922498,-0.08625278366194092,0.0031496677710788246,-0.0008804329729546228,0.0022631397896185172,0.17158473951614928,-0.0027298209545497686,-0.35283137317666385,0.0016750546320845057,0.001829973023373655,0.0248551728739899,-0.0006287160936396715,1.0528469815569976,-1.2631461471409875,0.006565416017611962,0.0008222347392793811,-0.004081114799856215,0.09582476230190105,-0.12309212863581666,-5.991033517662513,-0.03360384681528845,0.0029386246854580947,0.09278793348218226,0.002514350177036268,-4.656593096754867,-0.5479708042034909,-0.008789813898782063,-0.0008843082406865189,0.0022754254056193057,-0.29852008459528717,-0.015987182999963934,-2.5229077610775836,-0.0014171068464856153,-0.008481843589236274,-0.04812124834526865,-0.006053714373653429,-0.11587502626828197,-0.21606962267824914,-0.008448420236053807,0.00039563881082180653,-0.04793939736559445,-0.5023856789161867,0.1949567116952792,-0.8960122206864272,0.029494294474265128,-0.009282226242297487,-0.06746482971006175,-0.005235573306700331,3.228663907521886,,,0.49317460317460315,1.1583333333333334,0.5,0.05,0.6583333333333333,-0.15833333333333333,0.9465212303886604,0.010561892468302502,0.022028559134969167,0.7961180139313988,0.2196077211755684,0.2669708384352323,1.7426392443200593,0.4865785596108007,2.0595643162124184,1.5976238199012356,0.21697775872147834,0.12726014391638832,0.11770259367331626,0.46194049631118295,7.844702323929838,1708.0,343.2225,183.0,345.2098765432099,9249.988410393524,6959.4376600000005,90.570456430923,351.6007,172.06614845297975,436.28998599999994,12750.815830289646,1567.0,376.55400000000003,235.0,355.22222222222223,8776.049896004704,5988.162247000002,111.45884436000001,387.04600000000005,157.23559670781896,463.4997439999998,15940.719606523237,2360.0,675.6350000000002,373.0,456.6666666666667,16955.71693280059,8821.264545000002,171.30260904048998,690.3985999999999,271.4197530864198,841.5924679999996,23673.36717161363,2887.0,901.5839000000001,427.0,429.60493827160496,23951.85802925356,10689.756101999998,206.33223801292297,920.6875999999999,341.1369836915104,1142.4339269999998,27195.449235732784,2367.0,896.8501000000001,387.0,334.6666666666667,24436.552325320437,8371.114274000001,198.020906010319,916.373,326.59259259259255,1148.494718,24978.20376701594,2084.0,879.3149999999999,355.0,293.22222222222223,24984.166762950492,7234.565396,182.55192609705404,898.0751000000001,301.3148148148148,1138.9191040000003,22419.35309637716,1841.0,763.5411000000001,305.0,258.0,21414.836806186595,6315.723045999998,155.38919947771498,780.9289999999999,275.41049382716056,987.3380260000001,19086.897598511834,1480.0,654.5921,265.0,194.44444444444446,18446.383700346778,5070.777304999999,128.605422027168,666.3869000000001,223.50925925925927,843.1584560000001,16039.583946398921,1371.0,575.4400000000002,250.0,194.11111111111111,16024.291215918256,4785.903248999999,120.306713562074,585.3496,203.9783950617284,737.222784,15255.870370094057,730.8771929824561,5.378414035087717,0.8620293905706012,31.263157894736842,191.65475416937403,81.37107697549767,3432.2131241403513,14.894626331573509,5.921105263157892,44.241720747532625,3.9505417192982453,3014.154639190005,20.252077562326825,0.13108522622345947,-0.35031405308575386,8.038781163434903,58.017521060611216,-17.570396170025717,95.7332415891043,-0.8441062127008994,0.18602077562327354,0.9842796763606195,-0.09781696768236403,-24.587871687323275,17.79624499846102,-0.49822683902738346,-0.07624182445541726,-5.783933518005537,-18.015556543513867,-6.5923195700351,86.97875511757468,0.5147970836267148,-0.45121357340719515,5.131349385450993,-0.3773242351492768,-24.874933574433868,170.56663588796548,-1.6392349338257852,-0.1233025060131788,-10.091412742382271,-65.5250656422299,18.90922232221452,793.2662811418897,3.407435561503424,-1.0702155124653685,-9.235086098502446,-0.40479303816558915,210.10364374253822,-69.70544783010156,-0.1935201292705475,0.19782418159642678,-8.44321329639889,-34.794751661479864,-24.58620383503836,-342.5372493942751,-3.904378283000453,-0.2612457063711926,-1.8309288088783382,0.043976016620498784,-946.3155837631422,-13.196675900276961,0.48189916897506013,-0.1347062448620573,0.34626038781163315,26.252465145970838,-0.4176626060461146,-53.98320009602957,0.2562833587089294,0.2799858725761692,3.8028414497204546,-0.09619356232686974,161.08558817822063,-165.47214527546936,0.8600694983071671,0.10771275084559892,-0.5346260387811642,12.553043861549037,-16.12506885129198,-784.8253908137891,-4.4021039328027864,0.3849598337950104,12.155219286165876,0.3293798731917511,-610.0136956748876,-61.37273007079098,-0.9844591566635911,-0.09904252295689012,0.2548476454293622,-33.434249474672164,-1.7905644959959606,-282.5656692406894,-0.15871596680638891,-0.9499664819944627,-5.389579814670089,-0.6780160098491841,-12.978002942047581,-21.174823022468416,-0.827945183133273,0.03877260346053704,-4.698060941828256,-49.23379653378629,19.10575774613736,-87.80919762726987,2.8904408584779824,-0.9096581717451537,-6.611553311586051,-0.5130861840566324,316.4090629371448,0.6974691494688162,0.617129334566208,0.44234414510072795,0.3431733351719985,0.2881652541924667,0.19132212101861323,0.1892297186427838,0.11323010750815968,0.1211704344258539,0.06155832733359264,0.07906741454739538,0.03494564692716382,0.05359108584418155,0.020236834061397493,0.035340438043883926,0.01227114264089926,17.00214123024063,5.6920838710307144,3.543885203230649,2.190820243769537,0.38660340866212306,-0.5247160853187112,3.241005256512221,0.9779152588030033,6.022022759231915,0.7729060145985438,14.545232284546097,10.953403056627337,35.451531485234355,11.704017539214355,2.2171677604422744,0.7518857728639551,3.489104007078734,2.240470190410989,7.008271580154389,1.280580316706636,3.70203869062379,2.4363408203753707,22.457532595061085,14.702508199707097,0.26403888634899353,0.5593562471870446,0.7512157373612086,0.8690090666133122,0.8690090666133122,0.8690090666133122,1.061452506215271,898.0121087625582,0.0,1.0,6.0,0.0,11.0,4.0,1.0,0.0,0.0,4.2312065798226035,2.4397851294883846,1.275948350056149,0.5614035087719298,0.5614035087719298,0.5614035087719298,210.0608174628649,1604.1321163042262,59.447261027466205,28.142668707091687,59.30334158866853,,18.0,949.0,0.0,4.794537184071822,5.907179729351506,23.072970214921583,69.11053128099192,5.563451491696996,0.0,30.33183534230805,21.182975134168895,27.938742734265084,14.795238095238094,34.75,15.0,1.5,19.75,0.0,0.00682539682539686,-4.75,0.13968253968254002,0.049137336093858286,-0.09054520358868173,0.017316948284690215,0.12466009104704079,0.0,0.5825396825396825,0.8368253968253966,0.44285714285714245,0.5334023464458242,0.8195084485407064,28.395636911659814,0.3168567740490751,0.6608567740490751,23.883540417941965,6.588231635267052,8.009125153056969,52.27917732960178,14.59735678832402,0.5893399089529592,0.11908593498551658,0.0,0.2906340521403283,0.43478260869565216,0.3538694299288129,-0.7897855858596446,-0.046658061822781614,-0.013855887471221835,-0.046457975638802614,0.6461305700711871,1.4420703447826948,0.036051909965746004,0.025299479733029727,0.036051758619567366,-7.026848497187906,0.6053000480076812,0.7734287417930544,1.456569965837022,0.8209876543209875,0.6203369986551698,1.4410112454215818,0.6111768417038683,0.9942762668509924,0.7039597870241154,0.5562425409718452,0.7230482137120009,0.969607242453478,0.7096160706814008,1.079336627523204,1.3688873560438684,1.2818089148364378,1.1286742063287585,1.2005023370817265,0.7131847877784533,0.8894895740299309,0.9758778087110174,0.6049101588439515,0.9440249396782358,0.9398227016282654,0.7875431344182854,1.2272907606752026,1.2763895387510773,1.1961674914695049,1.2017424923374405,0.9562946701618263,0.7897020174512741,0.849290480580737,1.11340857879921,1.0559513565864405,1.0731434677828284,0.9236063268842016,0.9039187446462023,0.9144416401467634,0.8133306091345682,0.9834290618604344,0.9735020343079089,1.0916303870639676,0.9084062163033566,1.0625178187499522,0.9091625329343475,0.8331468030410645,0.8595146931388284,1.103922457077097,0.9835437199363664,0.8476892072027709,0.8966892577271429,0.8722079179595519,0.8532819598846579,0.9171475217484824,0.9839848026912709,0.9799842104228766,0.8937922352818011,0.6668108002092769,0.8894850149196547,0.9823379073891857,1.1881989057180447,0.9020917447245632,0.8582238674039216,0.8819492636286529,0.897380207745184,1.001881670084929,1.1874364828583879,1.1333311501729002,0.9794705268438326,0.6592626728047661,0.981081931195279,1.083401013600372,0.961173787806049,1.1938045226924001,1.2312588713248966,0.8716329966329965,1.0862510877304012,0.9393683980889167,0.9617347030501648,0.9533666063174154,1.1384445471595808,0.8114320096551385,1.1318292066522626,0.9731948544789618,0.84360469103628,1.1511359434017125,1.0851564016146198,1.0966810966810967,1.186952078513551,0.8328081970932143,0.8449810959420663,0.8163732019510922,1.090028152130711,1.0232957998078733,1.0393274081012964,0.904721837047218,5.5,0.1236608509335782,3.333333333333335,1.5625,1.5422222222222226,0.7361111111111112,0.44163265306122457,0.2986111111111111,0.1803980851599899,0.12250000000000003,6076.508783005939,6880.57566406993,2949.9554179957504,2678.5558214329167,17.31415669672797,0.45327491514472196,9.46608378921618,0.8290728333138528,1.0,0.43478260869565216,1.601683434342138,3.3931048846763567,4.556941664108592,5.2714865053928115,5.2714865053928115,5.2714865053928115,0.16666666666666666,0.0056209477697081,0.0740740740740741,0.033967391304347824,0.04168168168168169,0.023003472222222224,0.0163567649281935,0.01298309178743961,0.007843395006956083,0.005326086956521738,0.3875235723978116,23.168044077134986,11.227654320987654,6.292508917954816,187.44232758419403,1.0,4.329886353156746,219.59992519419347,,180.50297895351648,178.94761737366963,179.50388859566166,180.48762489995798,263.8814456730652,181.03933957825652,182.61001410509118,231.706861685586,0.026323811809889526,0.023153844999635756,-0.3860638095079075,0.24427609427609429,0.28758297829059626,-0.20513279388634198,0.026497940605721564,-0.05383826919954288,0.029845734704581198,0.02113538254713426,-0.023522373866932043,-0.007749595126690064,0.012733046461745775,-0.04844190850547866,-0.04625083362858033,-0.09674728940783982,-0.04915598963741422,-0.04236591063178422,0.0132521791304177,0.018074022696557543,-0.039849945472451465,0.060652392064597896,-0.04994665470499245,-0.004315635507714427,0.0892767272293768,-0.11659382671599466,-0.05471903344362618,-0.12348315368449596,-0.1307905768283712,0.0888980410928811,0.08841650301759034,0.08751583211756749,-0.06914440551728994,-0.07985415635537463,-0.03919809575238293,0.02666592429374682,-0.03553086140841358,-0.013404645675060924,0.08549500250761656,-0.10061398296692413,-0.06763594608003787,-0.11256537918725407,-0.03718065045071079,-0.09765752219151562,-0.01643727437019742,-0.015417816513328597,0.004147082360425059,-0.11696445112229643,-0.006726723334557034,0.033379926086066936,-0.05821690073141806,0.00412622961642568,0.051030981176585825,-0.0019122248370411856,-0.005859597741648702,0.006410238961579257,0.017616383714932928,0.03202282438113433,-0.00907136789934398,0.019910152308866273,-0.0985108457047784,0.06957975168190608,0.05436865685971786,-0.007440820417919666,0.028499222338003324,-0.0862253713853913,-0.09949525223387583,-0.12859800748483036,0.02828890884837573,0.11954580696953007,0.0362780525493414,-0.08805978401504821,-0.04273540909402645,-0.09315374178373502,-0.05847314519724986,0.0041486291486291385,-0.08878279537430032,-0.011198935357244248,-0.0418988382073274,-0.005423102832627207,-0.08165115516433533,-0.06199829277285257,-0.08734541837961922,-0.00219128654230793,-0.01685094104852692,-0.08953567916368364,0.026160839135560752,-0.08740465883323029,-0.14941441876738273,0.13656612373432273,-0.01488039778762814,0.11287122936876715,-0.08935610368270668,-0.08692011134508108,-0.07554095101036677,0.06105653649482397,22.46592761766756,20.043130703385895,3.680839385021866,18.717028008124256,35.43760810699409,42.61789467737823,44.54675236862079,44.54675236862079,44.54675236862079,61.78692948637256,47.928714597037064,6.50933276164435,3.8178043174916496,3.5310778101994877,13.858214889335489,15077.026589808796,13769.609570160386,1953.1470166912623,88.0,45.0,58.0,72.0,91.0,89.0,93.0,100.0,98.0,447.1480324640008,33.0,5.056245805348308,5.8944028342648505,6.75343791859778,7.605392364814935,8.46779284112111,9.32500744695431,10.189079943122826,11.048713034316156,11.913759867893699,0.6900584795321638,0.9738245614035088,1.1263271023130326,0.6549376521814068,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6899612459291943,0.9657378740970075,1.002938883990749,0.6350855446166813,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,10.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,14.953561288656857,5.749511833283905,0.0,5.907179729351506,0.0,9.694446914922299,0.0,0.0,0.0,35.33461391738825,49.56977397177243,44.35360058972148,22.339534866679134,254.34138007452086,-567.6533175270766,-33.53518227894357,-9.958830132053976,-33.39137161923979,464.40219753738575,1036.4787987771497,25.91207874852263,18.18383857503771,25.911969969428743,0.5,0.894094382411843,0.22112527218369576,44.075707690385244,0.10046127500661708,61.60912093538998,0.1059056175881568,9.0,0.21212121212121213,0.2745951715963388,0.5817193323440787,0.7812493726167298,0.9037520838883293,0.9037520838883293,0.9037520838883293,4.859300000000005,,2.2226890756302518,1.3616473764607417,1.2853389533204247,2.248401228199662,-3.2512440749668774,1.3870704414111525,1.3373469250978727,-1.5893855813711188,123.23670000000006,9.53140013787187,0.0,4.899909730850478,0.0,25.683286491704038,49.5473623289326,52.006920529949305,0.0,5.749511833283905,4.204692619390966,0.0,5.5093883366279774,0.0,7.01301578963963,0.0,8.608677881538416,0.0,10.251217609993054,39.333333333333336,11.796141392195612,0.0,0.0,0.0,0.0,0.0,5.173532877079344,0.0,55.508,0.0,11.54706748439649,0.0,0.0,0.0,0.0,0.0,0.08090768122471603,64.20064483184285,14.953561288656857,11.374772549367124,5.749511833283905,50.13775345427777,11.21535880699783,0.0,24.825916360475023,36.39820241076966,10.045266627482652,0.0,0.0,37.331446174340186,39.327791017964074,39.335465918496105,439.19985038838706,,360.9017498470604,357.96416095897405,359.14117163584706,360.8671288625793,529.0633889761169,362.11080934212873,365.2303427807344,464.04947760372056,39.335465918496105,439.1998503883872,,358.97541931484756,356.7840665660415,358.027211209636,358.9185144648062,531.0141354210971,360.9086816262392,364.0713087789828,465.00310895254324,4.751646035921647,351.8430887544476,,294.34491018843505,290.3879313427042,291.76694770490417,294.3562936792174,434.8885105001432,294.0750486888034,296.7156557301267,379.03759312913496,1.3111821972832034,14.639995012946235,,12.030058328235347,11.932138698632468,11.97137238786157,12.028904295419311,17.6354462992039,12.070360311404292,12.174344759357814,15.468315920124018,2.3758230179608244,219.59992519419347,,180.50297895351648,178.94761737366963,179.50388859566166,180.48762489995798,263.8814456730652,181.03933957825652,182.61001410509118,231.706861685586,55.047058823529426,0.0,0.0,12.502648897781196,0.0,0.0,0.0,57.16751638747269,9.178572039921946,2.9215401557418708,5.890788191640256,0.0,0.0,4.797690168907458,0.0,0.0,0.0,36.19987604315084,642.6245951373962,91.29595575750187,193.40697842655234,259.74567485418976,300.47473080739024,300.47473080739024,300.47473080739024,797.0,139.25383205643396,76.11898247451028,65.58699223719005,44.81,44.81,1.0,7.842818696179576,6.044394119358453,4.617244196688432,5.410873181339739,,5.422742200975535,5.419032056563794,5.42011422979097,5.422817026420393,5.4265276693744475,5.419815308441876,5.420097585826628,5.423453193572694,0.1539081398896144,0.18036243937799132,,0.18075807336585117,0.18063440188545982,0.18067047432636568,0.18076056754734643,0.18088425564581492,0.18066051028139588,0.18066991952755426,0.1807817731190898,2.628410321565018,2.787022769859401,,2.7892139173139974,2.7885295008211917,2.788729179504767,2.7892277156702256,2.789911746494719,2.7886740276058335,2.788726108722641,2.7893450218298783,327.55000000000103,291.0455898910886,189.03340181059906,,187.3466211929307,188.07119822286955,187.94770675690128,187.32862743528798,186.98874355728722,187.9413044259657,187.90044869475952,187.48127743588128,9.701519663036287,6.301113393686635,,6.244887373097691,6.269039940762318,6.2649235585633765,6.244287581176266,6.23295811857624,6.26471014753219,6.263348289825317,6.249375914529376,6.772092209861121,6.340536017269603,,6.331572779013023,6.335432893755465,6.334776057257232,6.331476729125968,6.329660708830095,6.334741992250032,6.334524583029114,6.332291275417565,5.890788191640256,16.344757653303947,4.175626149159894,3.0972571578001964,0.9030974070858401,11.796141392195612,3.467462302252992,5.711109737668954,0.0,397.6759424272531,182.8062334495108,-407.99717628267865,-24.103196887035317,-7.1578451979417315,-23.99983389898109,333.786096908852,744.9624799519801,18.624140183074612,13.06951719214,18.6240619987995,3204.0,46.0,1.7611585386720214,0.9543081210330024,0.0,0.0,0.3660248986971034,0.1911223326231659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2874574785652648,0.12936252243246882,0.5910085549915427,0.2133696531530625,20.924074484064487,18.51388003698624,14.597356788324023,11.32472006067595,12.967436438661002,8.609495445837595,10.97532368128146,6.567346235473261,8.724271278661481,4.43219956801867,7.19513472381298,3.180053870371908,4.7696066401321575,1.801078231464377,3.2866607380812054,1.141216265603631,4.177168821539659,2.2121115208464848,6.127819108549588,2.7704418483160853,9.13382363353113,3.596487707278698,99.86981618326807,54.451577757746904,34.33719555645243,27.904130599873046,27.904130599873046,27.904130599873046,156.0,181.0,65.67741099999999,34.70058900000001,0.47368421052631576,219.07,8.5,6.611111111111112,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,57.0,0.0,1.0,60.0,12.0,1.0,7.0,53.0,13.0,33.0,47.0,0.0,0.0,0.0,23.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,4.0,1.0,2.0,30.0,7.0,0.0,3.0,2.0,0.0,4.0,7.0,0.0,0.0,2.0,0.0,2.0,3.713572066704308,5.912488978172641,4.23410650459726,4.709530201312334,5.177561165412237,5.65730214077366,5.71332017913669,5.824801011170733,6.008813185442595,6.0489223952796625 +150311,O=C1[C@H](CC[C@H](O)c2ccc(F)cc2)[C@@H](c2ccc(O)cc2)N1c1ccc(F)cc1,0,25.254901960784313,6.498723529411764,3.549019607843137,9.098039215686274,162.7654329130731,101.36578329999101,1.569227078467235,6.5514352941176455,6.8877995642701535,7.927782588235293,236.54389785318628,26.074074074074073,6.406018518518518,4.314814814814815,7.944444444444445,144.3135691815259,100.11995408648889,1.9136810715185186,6.55849074074074,3.5252057613168724,7.797630888888888,284.2744224220621,22.877777777777776,6.328655555555555,3.888888888888889,6.411111111111111,148.50366747810938,86.34984515934221,1.699070475618867,6.460501111111111,3.538271604938271,7.751389377777777,246.52029753272063,18.08730158730159,6.261166666666666,3.1984126984126986,4.531746031746032,157.89214209047645,66.0344474527238,1.3958457319966981,6.350734126984127,3.41710758377425,7.7620026031746026,197.10738075443962,15.93984962406015,6.196646616541353,2.969924812030075,3.8496240601503757,160.23492187310853,56.61827743137444,1.3070140376314283,6.274011278195488,3.1842105263157894,7.73612989473684,180.0590735833305,16.06015037593985,6.030323308270677,2.9849624060150375,4.052631578947368,157.91467298826146,58.00408730419248,1.3347674259618272,6.1195729323308266,2.965747702589808,7.584592812030075,182.5638810210345,17.007518796992482,6.177962406015037,2.8721804511278197,4.56390977443609,157.70545130942804,61.7485522235188,1.3413551412757743,6.260345864661653,3.7410192147034254,7.706953864661654,185.0317588974825,16.015037593984964,6.134796992481202,2.7142857142857144,4.2180451127819545,160.12266989132837,57.737641729359396,1.2818555807073233,6.212986466165415,3.566416040100251,7.6740574736842095,176.14575998288845,16.146341463414632,6.185349593495934,2.707317073170732,4.219512195121951,161.5753713299937,58.43421220014308,1.2323473058530325,6.2547853658536585,3.7416440831074973,7.735296000000001,171.67563307418453,7.647827758554403,0.20256016916570538,0.019421527174330336,0.6389850057670127,4.275278738946559,2.2969690860786485,36.915486123297455,0.24435146553435985,0.18125520953479424,2.9916912298688545,0.121565723952326,49.58905756414273,0.010850527574863888,-0.011642267931137595,-0.01028173625670277,0.1485966935793926,0.6074373104361568,0.020673906129976286,0.13885375744971656,0.019574048910214165,-0.010166356956726044,-0.21824049154883446,-0.0074598691956085225,3.1361228245156267,-0.40360117903370524,0.0029064103549916675,0.0016594210964865235,-0.10042291426374467,-0.18573625528642848,-0.3349566905299145,-1.972761752324974,-0.03909530677984028,0.002429169550173011,0.06531675851168352,0.001391387158785104,-6.959454927386384,-0.6050328628183299,-0.01981488438512659,0.00025954801425518754,-0.05168341846542539,-0.5801340143900697,-0.1593767605568866,-2.946974693161107,-0.017859987297563412,-0.017478194284249644,-0.17229433530856056,-0.012058929056589942,-3.4839409354406334,-1.0943853289509815,-0.02874228622305474,-0.0016364845410508679,-0.02008481411140307,-0.5907733578467507,0.02161632531514116,-5.224238230021436,-0.0053317174797543766,-0.026843754426435162,-0.3105111554999249,-0.01619149485015882,-3.1322461263215007,0.35099282230952233,0.0051056719075659104,-0.0008359780033068027,-0.03069958633608241,0.12410206600700141,0.09568330789365337,1.7716167448517104,0.004992054375759113,0.0052603735405410855,-0.044167191013545694,0.0011274884905459453,1.954420444486978,0.03638276776138734,0.022756077332893934,0.002944271985986197,-0.02804589327991258,0.18955982805919075,-0.051890137876805124,0.1458172182232251,-0.01139104663109936,0.01888838474502288,0.1844599323504198,0.015133280028213599,-2.918910077520099,0.11658326901452006,0.004116832161141029,-0.002099865030764244,-0.019200249759346467,0.19044439241124733,-0.05613859836829976,0.481594031236785,-0.011266704205565962,0.0041691749558440475,0.05190632611260306,0.0021517373479836223,-1.177510814413409,0.49181834378897427,-0.0009170797348111884,0.003007915723037342,-0.013446985680929474,0.007998799711180546,-0.12762198800179064,2.328522522137055,-0.0034387980503502876,0.001253669789293039,0.04723219858111692,-0.0018588570624806337,1.631420908605668,,,0.4657142857142858,1.3166666666666667,0.7,0.05,0.6166666666666667,0.08333333333333333,0.8031979456110302,0.015955093886584965,0.027421760553251632,1.0623851815111842,0.2610147894483052,0.22017056874421304,1.8655831271222143,0.48118535819251823,2.0419700973361885,1.670771611126938,0.07568373187339832,0.17813931077902811,0.11737544355682411,0.37119848620925056,8.022528430823542,1288.0,331.43489999999997,181.0,464.0,8301.03707856673,5169.6549482995415,80.03058100182899,334.12319999999994,351.2777777777778,404.31691199999995,12063.7387905125,1408.0,345.925,233.0,429.0,7792.932735802399,5406.4775206704,103.338777862,354.15849999999995,190.36111111111111,421.07206799999994,15350.818810791356,2059.0,569.579,350.0,577.0,13365.330073029845,7771.486064340798,152.91634280569804,581.4451,318.4444444444444,697.6250439999999,22186.826777944858,2279.0,788.9069999999999,403.0,571.0,19894.409903400032,8320.340379043198,175.87656223158396,800.1925,430.5555555555555,978.0123279999999,24835.52997505939,2120.0,824.154,395.0,512.0,21311.244609123434,7530.2308983728,173.83286700497996,834.4434999999999,423.5,1028.9052759999997,23947.856786582957,2136.0,802.033,397.0,539.0,21002.651507438775,7714.5436114576,177.524067652923,813.9032,394.44444444444446,1008.7508439999999,24280.996175797587,2262.0,821.6689999999999,382.0,607.0,20974.825024153928,8212.557445728,178.40023378967797,832.6259999999999,497.55555555555554,1025.024864,24609.22393336517,2130.0,815.9279999999999,361.0,561.0,21296.315095546674,7679.106350004799,170.486792234074,826.3272000000002,474.33333333333337,1020.6496439999999,23427.386077724164,1986.0,760.7979999999999,333.0,519.0,19873.770673589224,7187.408100617598,151.578718619923,769.3386,460.2222222222222,951.4414080000001,21116.102868124697,390.03921568627453,10.330568627450974,0.9904978858908472,32.588235294117645,218.0392156862745,117.14542339001108,1882.6897922881703,12.461924742252352,9.244015686274507,152.57625272331157,6.199851921568626,2529.041935771279,0.5859284890426499,-0.6286824682814302,-0.5552137578619496,8.0242214532872,32.801614763552465,1.1163909310187194,7.498102902284694,1.0569986411515648,-0.5489832756632064,-11.78498654363706,-0.40283293656286023,169.35063252384384,-36.32410611303347,0.2615769319492501,0.14934789868378712,-9.03806228373702,-16.716262975778562,-30.146102147692304,-177.54855770924766,-3.518577610185625,0.218625259515571,5.878508266051516,0.12522484429065936,-626.3509434647746,-76.23414071510958,-2.4966754325259504,0.03270304979615363,-6.5121107266435985,-73.09688581314879,-20.08147183016771,-371.3188113382995,-2.25035839949299,-2.202252479815455,-21.70908624887863,-1.5194250611303328,-438.9765578655198,-145.55324875048055,-3.8227240676662806,-0.21765244395976543,-2.671280276816608,-78.57285659361784,2.874971266913774,-694.823684592851,-0.7091184248073321,-3.5702193387158765,-41.29798368149002,-2.1534688150711228,-416.5887348007596,46.682045367166474,0.679054363706266,-0.11118507443980476,-4.0830449826989605,16.505574778931187,12.725879949855898,235.6250270652775,0.6639432319759621,0.6996296808919643,-5.874236404801577,0.14995596924261073,259.93791911676806,4.838908112264516,3.026558285274893,0.3915881741361642,-3.7301038062283736,25.21145713187237,-6.9013883376150815,19.39369002368894,-1.515009201936215,2.512155171088043,24.533171002605833,2.0127262437524087,-388.2150403101732,15.505574778931168,0.5475386774317569,-0.27928204909164445,-2.55363321799308,25.329104190695894,-7.466433582983868,64.0520061544924,-1.498471659340273,0.5545002691272584,6.903541372976207,0.28618106728182174,-156.6089383169834,60.49365628604384,-0.11280080738177617,0.36997363393359306,-1.6539792387543253,0.9838523644752071,-15.697504524220248,286.40827022285777,-0.42297216019308537,0.1542013840830438,5.809560425477382,-0.22863941868511795,200.66477175849715,0.7083449299232516,0.5360095207733226,0.4374412347204712,0.29543223406571734,0.2828119529051479,0.15898337469592627,0.17859655767762755,0.08824164441321528,0.10956937442266834,0.048585505422620946,0.07108590933149703,0.02681405478603546,0.045655957056497526,0.014895652847214847,0.027427108298003943,0.008458748575475699,9.00516395957707,5.692845267675039,4.108917746297206,2.1919865022891947,0.3957819700378405,-0.39779297396034685,3.2379832529413646,0.9779329522166795,7.005148281226492,1.8910643342584026,17.425814963475005,10.953508129788293,19.001179886798038,11.704371903240087,1.997665078217919,0.5450368869284041,3.9899003818363146,2.2417561672754482,8.002963224276558,1.1837556428183813,4.01122805693567,2.4377004309288237,20.903587245718235,13.30315401246462,0.2622909772637944,0.5673304181988083,0.7394579818035699,0.8931166419625695,0.9257963805246608,0.9323323282370791,1.3641641848314348,1019.8265077961433,0.0,1.0,0.0,0.0,16.0,4.0,2.0,1.0,0.0,4.098679478388728,2.268442832778646,1.2356774511500754,0.3137254901960782,0.11764705882352988,0.07843137254902022,-2.554362123316025,1573.3970004726784,82.63548748124265,30.850921577895654,62.92039189963311,,15.0,748.0,6.103966387748303,23.78842206910287,35.250880120036555,24.092481012232575,5.563451491696996,36.39820241076966,41.29811214162014,0.0,0.0,0.0,13.971428571428573,39.5,21.0,1.5,18.5,0.0,0.034285714285714225,2.5,0.18907563025210122,0.08659115820241214,-0.10248447204968908,0.03526785714285707,0.17515702479338813,0.0,0.6319327731092437,0.8642857142857139,0.44285714285714245,0.5453416149068315,0.8290178571428568,24.095938368330906,0.478652816597549,0.822652816597549,31.871555445335524,7.830443683449156,6.605117062326391,55.96749381366643,14.435560745775547,0.5388429752066118,0.11247443762781183,0.0,0.38650306748466257,0.20833333333333334,0.5019599557886663,-1.2119960240413048,-0.08325325827037254,-0.023764627922378524,-0.05509072836551386,0.49804004421133385,1.202531290467377,0.043558755233694985,0.023579044911125037,0.04146659622301299,-5.38945764334321,0.7193008914806622,0.6356853119672965,1.3939296890197819,0.8807995721353122,0.5329486410871304,0.9036535543378889,0.7148525318979975,0.923967508446802,0.6304929843088499,0.6522071101909034,0.666595072434424,0.8654841734700149,0.8339617266572826,0.61471823264542,0.6770899768211767,1.3297232250300843,0.8051558752997603,1.0633270297261044,0.8339325256977198,1.1497230783483223,0.6168014438452464,0.5892621282975761,0.622299988223206,1.0871529601009486,1.0082421265308859,0.9546563420465168,0.8899519210465769,1.1628989742708153,1.0519441589585474,1.0084076303545901,1.0078319216604679,1.0451463691743377,0.9565454807373904,0.8944337917939457,0.953005864146563,1.0415177149718307,1.1045737206478896,0.9712943128539892,1.068523550311675,1.0613175538123287,1.0664081516741495,0.8292519573703432,1.0970894106271765,0.9726434941408035,0.9887538815569703,0.9384217155890834,0.9718696827804639,1.0409347552372414,0.8857794496295031,0.596963623843831,0.8658952201778768,1.0959257349149047,0.8465746200032457,0.6507741891164344,0.8755352777177691,0.9378482322942283,0.6200556885454839,0.680323233386003,0.6252117550206193,0.9744277527974817,0.9387912774092884,0.6577966594963053,0.660949169210493,0.9978692217909395,0.8646785579055554,0.8131081512880517,0.9335527995011538,1.0181340672706545,0.6808143625244006,0.7808317513163194,0.6677110722652068,1.0550758948105081,0.9590321571070245,0.8268693024786261,0.8976039102451506,0.9344208897695503,0.8948517877427382,0.9086356175456587,0.9602479165737352,1.026636725115472,0.8363590080178166,0.8507462566386337,0.8232364942695124,1.0332043640034325,0.9416397326048467,0.9169172350875199,0.8594036158245911,0.997916116345279,0.9825188629584137,0.9125396899676648,0.9385675575229938,0.9819963698617808,0.9166158593493976,0.9042970467544249,0.9397537586457938,0.9670724985484256,6.0,0.18957249260279563,4.000000000000002,2.8125,2.1422222222222227,1.215277777777778,0.7289795918367347,0.7395833333333334,0.46334089191232036,0.23812500000000006,5954.330509557144,6619.397336599328,2840.0217306606664,2615.258328154282,14.719881806424416,0.42999518084130567,8.390403567108304,0.7543711322931661,1.0,0.20833333333333334,1.5737458635827664,3.4039825091928493,4.43674789082142,5.358699851775417,5.554778283147965,5.593993969422475,0.18181818181818182,0.007021203429733171,0.0888888888888889,0.06114130434782608,0.05224932249322494,0.028262273901808785,0.016567717996289425,0.018038617886178863,0.012193181366113694,0.007215909090909092,0.47339660121915483,23.168044077134986,10.29244001810774,5.333333333333333,172.57030714496705,1.0,4.342015535576045,179.38269171831428,,149.4913337919588,148.01654973975064,147.81408399472318,149.33750200428952,183.70061573542975,148.88451918141422,149.65672490727184,167.82184390179552,0.0014187724825166384,-0.057475603318703675,-0.5293989584038614,0.2325511432009628,0.1420813349320543,0.009000515616546877,0.0037613958810117257,0.08010612446055385,-0.05608863316435869,-0.07294886897749851,-0.0613649057733908,0.0632422348510878,-0.05277330920302973,0.014348380369953503,0.08544235896545767,-0.15716004813477732,-0.04344424460431659,-0.1458255109134915,-0.053439950532845865,-0.15999620339638534,0.013401929557818866,0.02183272052261449,0.011445554828684765,-0.14034255275741891,-0.07911172713605852,-0.09782221483492602,0.013363934356214543,-0.08088361698470002,-0.13569501541623843,-0.0693856793819425,-0.07983030978701548,-0.07309138604307656,-0.0964286451634069,-0.05759094842020624,-0.09919678561137062,-0.07025624415092395,-0.1430975387392672,-0.141895054400068,-0.08426137277267408,-0.03143237154257485,-0.1381835884675718,0.00941080376142294,-0.14151887943646516,-0.021819871094673867,-0.14809921599126322,-0.10379117751183724,-0.133191283889434,-0.06316405836650527,0.04589444655273816,0.025205705191671663,-0.043043886085936886,-0.048044298471811284,0.029027830367285134,0.04165633245722192,0.04799115306065653,0.02042981148012451,0.029021916413008202,-0.014763285252362705,0.009274723613607636,0.03941233289136345,0.004757268195624797,0.11234231007320206,0.15159837635619489,-0.04389131673950218,0.0443385892789528,-0.022590699279018682,0.0039500283901503196,-0.04661746802372908,0.10420878270755034,0.06165740986529078,0.12448640567589896,-0.058861979253074764,0.015243971581880487,0.02032399646039609,-0.10812048980059923,-0.03004804429847182,0.04454549142640776,-0.024440293388597028,0.013045853700213087,-0.04610860090782504,0.023001683463579132,0.017350161538855886,0.017700197703979962,-0.02374537594085784,0.06430824010633028,-0.004527443566957957,0.15487534507651593,-0.021044289865281327,0.001870942270573795,-0.055561038576999316,0.06307711929784174,-0.014073163190694005,0.006916600038755747,0.015787791904977918,-0.015290963620712819,0.03289880850216701,17.65102790609181,32.91304780175784,10.294905390266422,15.5636627834058,31.97086734747784,41.430171494222556,44.08545985517791,44.714597110079865,45.459616717923005,61.25910292008566,50.12314833380814,2.2705119562019496,5.3441793233708434,3.521263306704723,11.135954586277517,8633.662468209452,7133.827709210472,2395.835361020386,160.0,47.0,63.0,80.0,106.0,114.0,130.0,152.0,156.0,409.1489499720006,33.0,5.081404364984463,5.942799375126701,6.834108738813838,7.7226775164680035,8.625329850020815,9.528284882554852,10.439776223738649,11.352157942040664,12.270450216215917,0.6993464052287581,1.003686274509804,1.1249802194174119,0.6683951580332409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6892409651285666,0.9897731641676278,1.0174656898447654,0.6644051396255636,12.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,15.11296452053189,17.383953515375694,0.0,5.907179729351506,0.0,4.794537184071822,8.78083009534964,0.0,0.0,24.26546827384644,72.49948277693889,5.687386274683562,18.063713263057657,327.0960258140604,-789.7822887952856,-54.250960863052335,-15.48592723128011,-35.89919494524026,324.5416636907444,783.6147116773928,28.384526618190318,15.364994346615543,27.02119695439285,0.4666666666666667,0.6796539257191592,0.2103793236615026,154.62274682418965,0.12138693517877035,201.11802108351696,0.32034607428084083,8.0,0.18181818181818182,0.2774379156545759,0.6000929591802735,0.7821606496947554,0.9446928833289782,0.9792598312483667,0.9861732208322445,4.888300000000004,,1.5595238095238098,1.8232984144639024,1.4520585301256341,1.6258748616132113,-7.761473946926383,1.6559399660481111,1.5127473937688993,-2.6096273930189207,108.81760000000004,23.78842206910287,0.0,0.0,5.917906046161393,24.98745046274828,4.899909730850478,95.55774948702513,0.0,5.749511833283905,4.204692619390966,0.0,5.572154032177765,0.0,7.149131598557407,0.0,8.820994645747902,0.0,10.546577516554702,35.666666666666664,18.022886493465567,0.0,0.0,0.0,0.0,0.0,1.4054596802133308,0.0,51.188,0.0,12.943071358555667,0.0,0.0,0.0,0.0,0.0,-0.10556547619047585,57.373991190288,4.899909730850478,14.468216370033202,5.749511833283905,16.12023451903292,4.794537184071822,17.55234772825318,36.114353446142275,72.79640482153933,0.0,0.0,0.0,34.08815305969529,35.151289221556894,38.71763097659225,358.76538343662855,,298.87869932994937,295.9115462518703,295.53136408743796,298.56661235113825,371.066023855667,297.6586423650919,299.2125999882924,336.8615139203333,38.717630976592254,358.76538343662855,,297.4231437743938,294.2098010650375,294.17610945932074,297.04912914696587,375.1627054177859,296.1130983967804,297.8007024207749,338.25331519660995,5.11023277084478,256.40352443031605,,221.09037269412107,219.3765033595679,219.02853041795834,220.92236136165195,261.5180554857554,220.38019638817866,221.27815695864388,243.04591919826584,1.2905876992197416,11.958846114554285,,9.962623310998312,9.863718208395676,9.851045469581265,9.952220411704609,12.368867461855567,9.921954745503063,9.973753332943081,11.228717130677778,2.55511638542239,179.38269171831428,,149.4913337919588,148.01654973975064,147.81408399472318,149.33750200428952,183.70061573542975,148.88451918141422,149.65672490727184,167.82184390179552,50.47843137254902,0.0,0.0,0.0,26.426309220028244,0.0,20.051051355985898,51.89075018208304,0.7723161270681123,0.0,0.0,0.0,-1.4607293972328264,1.611867304773149,0.0,0.0,0.0,33.88466212090374,442.88811381850303,80.26103904272108,173.6031079688353,226.27414243189241,273.29369244054624,283.29369244054624,285.29369244054624,1071.0,140.7969891099639,208.74957568630165,66.29355041242874,60.77,60.77,0.875,8.382031899799143,6.044394119358453,3.9638984308240204,5.381281566367919,,5.39876262756183,5.398848207236933,5.397227939729697,5.399254675132875,5.3602713880715145,5.39881248002044,5.3985227783676635,5.387735120492073,0.13212994769413403,0.17937605221226396,,0.17995875425206098,0.17996160690789775,0.1799075979909899,0.1799751558377625,0.17867571293571716,0.17996041600068133,0.17995075927892212,0.17959117068306912,2.4758402819074834,2.7815388438365245,,2.784782072936954,2.7847979245316106,2.784497765937443,2.7848732095887287,2.777626894571953,2.784791306947019,2.7847376452525525,2.782737385000375,293.6900000000007,681.0802960603511,196.14915376526145,,193.4329300992172,193.3765822037763,193.71119777238684,193.37254254863808,198.3347864288393,193.41562165634264,193.46436561887933,195.2185842681033,22.702676535345038,6.538305125508715,,6.4477643366405735,6.44588607345921,6.457039925746228,6.445751418287936,6.6111595476279765,6.447187388544754,6.448812187295977,6.50728614227011,7.622292496912934,6.37748764709189,,6.363543126578935,6.363251779577131,6.364980667283065,6.363230889264109,6.388568732050754,6.3634536422429715,6.363705627170587,6.372732164406783,26.426309220028244,14.554938663328816,20.051051355985898,2.034770007763335,-1.1008996237623163,17.734904109153817,-0.03440706583112796,0.0,0.0,364.6722384117392,213.14809850767827,-514.6519058823764,-35.35197079021501,-10.091213840830909,-23.393268449198928,211.48357987548204,510.63288017943,18.496427343165166,10.012409415282939,17.608030351014822,2586.0,46.0,2.1524827396200066,0.8684376183711454,0.0,0.0,0.45407764955035457,0.15850810814718977,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.3179785910628665,0.1576692578919752,0.8216255995202568,0.32995156214079413,1.3070165815003683,0.4077803469787278,21.250347897697548,16.08028562319968,14.435560745775549,9.749263724168673,13.29216178654195,7.472218610708534,11.251583133690536,5.559223598032562,8.765549953813467,3.8868404338096756,7.535106389138686,2.8422898073197587,5.204779104440718,1.6981044245824926,3.5655240787405127,1.0996373148118408,4.927544185702062,1.8782881167398497,7.003267556679752,2.4636281568793357,10.91353484943324,3.3047807792668986,94.60805462745036,61.72382609351021,34.68515390187698,26.82629191264123,25.386125111868093,24.089974991172273,160.0,190.0,58.70265299999999,25.871346999999997,0.49019607843137253,219.06,9.722222222222221,6.527777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,18.0,51.0,0.0,0.0,54.0,18.0,1.0,10.0,44.0,19.0,33.0,35.0,0.0,0.0,0.0,24.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,3.0,2.0,1.0,30.0,6.0,0.0,1.0,3.0,0.0,4.0,6.0,0.0,0.0,2.0,0.0,3.0,3.784189633918261,6.961414522303884,4.363098624788363,4.880906187421472,5.36889231921764,5.908592319281906,5.963257955217801,6.209846781320481,6.549471899346809,6.767702669367349 +9651,COc1ccc2c3c1O[C@H]1C[C@@H](O)C=C[C@@]31CCN(C)C2,0,20.80952380952381,6.049164285714286,3.4047619047619047,6.523809523809524,162.0563968156364,81.85541554761906,1.4258995952816431,6.1172595238095235,3.207837301587302,7.607935714285713,208.21505873578323,23.77777777777778,6.321666666666667,4.222222222222222,6.288888888888889,145.2008122035366,89.6006414222222,1.7696834263555565,6.464977777777778,2.767592592592593,7.754525688888885,258.4376675511198,20.107142857142858,6.259261904761907,4.011904761904762,5.190476190476191,154.3352428999981,74.53839910714285,1.545022652720119,6.363732142857143,2.570271164021164,7.759996047619045,222.5821113941256,18.205128205128204,6.12874358974359,3.5384615384615383,4.418803418803419,152.37637635112554,66.16422547008547,1.484554870121265,6.237684615384617,2.560660018993352,7.6492787008547,206.43650536440032,14.404109589041095,5.933246575342466,2.9246575342465753,3.041095890410959,157.5526260703067,50.64421345205478,1.270644767831986,6.021620547945204,2.324676560121765,7.5155920547945225,168.48889120078468,12.766423357664234,5.921036496350367,2.6204379562043796,2.2262773722627736,160.35963104893304,43.50451111678832,1.1825370738063503,5.996347445255474,2.2471613949716134,7.5247959999999985,153.22017981998022,11.224137931034482,5.8920862068965505,2.3017241379310347,1.7241379310344827,161.60757879122048,36.65180355172415,1.0913814283209051,5.959543965517241,2.28735632183908,7.5138224827586235,136.84341314493162,9.03125,5.813583333333333,1.6875,1.21875,167.01583841312313,28.191638822916655,0.9117892339496662,5.854700000000001,2.4427083333333335,7.486034375,108.59674877698562,5.291666666666667,5.575638888888889,1.4583333333333333,0.1527777777777778,175.13783093430007,13.803060930555553,0.7139052328807362,5.5919791666666665,2.013888888888889,7.32540038888889,76.08028502586104,7.365079365079365,0.11993928571428565,0.021810658721027193,0.70578231292517,3.7460317460317456,1.382270007979709,35.044080581065764,0.2316329585387806,0.11359280045351468,0.8433208931720835,0.07552477324263035,50.97418700871028,0.5555555555555556,-0.00040499999999999965,-0.007065101749404145,0.3497732426303854,1.1777777777777774,-0.17236168772973676,2.6390638824263095,-0.006461479156825075,0.0018330725623582522,-0.08467524355421172,-0.0029884811791383425,1.3405858287007317,0.4642857142857145,-0.016370833333333317,-0.004036162413434063,0.08078231292517016,0.15079365079365067,0.36161417324034784,2.391823326814061,0.04673482617832906,-0.013012500000000019,-0.032222379692617764,-0.011123119047619066,9.45947486196287,-0.25356125356125314,0.0005561965811965859,0.0022564463038052904,0.0030088958660387443,0.0883190883190882,-0.06202803316476731,-1.2367769880661625,-0.010288522909471713,3.6993429850526853e-06,-0.01429639400869557,0.0011889296470724941,-2.3886542295913884,-0.1537290715372906,0.0035212328767123273,6.14701978452379e-05,-0.1038579815487839,-0.24277016742770166,-0.15643800357084153,-0.7936746087891773,-0.01910878545951936,0.003009450035722052,0.01992609892764816,0.002373087161805362,-3.4101729633717004,-0.7939983779399837,-0.008188503649635031,-0.0012916959738982227,-0.19674512140622666,-0.7866991078669913,-0.11774656530537594,-3.789981454023701,-0.021523337016088738,-0.008656390999222068,-0.0369603420578829,-0.004579461459522978,-5.483907075791379,-1.4406130268199235,-0.008380603448275858,0.00035801685628437756,-0.18279380717804364,-0.7567049808429118,-0.26706329286778385,-6.953792810745562,-0.05493785160316794,-0.009793272538900603,-0.06395666903415259,-0.004025356986472746,-12.297807946308762,-0.5173611111111114,0.008898437499999997,0.002614131844551852,-0.028698979591836787,0.0208333333333335,-0.17382518714737047,-2.5780408342899683,-0.03026666421471141,0.006360870181405906,0.08467527636054421,0.006872096797052158,-6.757061266438774,0.5046296296296292,-0.00998055555555556,-0.0038090224533072876,0.11862244897959179,0.06018518518518544,0.25738660590367374,2.5410805300453436,0.038529429589909875,-0.007592734315948594,-0.021120716805240636,-0.007291990173847296,7.890181997050708,,,0.4714285714285714,1.0238095238095237,0.35714285714285715,0.023809523809523808,0.6666666666666666,-0.30952380952380953,0.9998049349640171,0.013200857015648992,0.02958180939660137,0.7032732309744076,0.19490686214278044,0.28780721238314655,1.7030781659384249,0.482714074525927,2.0898442097239784,1.711706514151393,0.10194742491854468,0.27619027065404017,0.0,0.37813769557258486,6.836955798380966,874.0,254.06490000000002,143.0,274.0,6806.368666256729,3437.9274530000002,59.88778300182901,256.9249,134.72916666666669,319.53329999999994,8745.032466902896,1070.0,284.475,190.0,283.0,6534.0365491591465,4032.0288639999985,79.63575418600004,290.92400000000004,124.54166666666667,348.9536559999998,11629.69503980039,1689.0,525.7780000000001,337.0,436.0,12964.160403599839,6261.225525,129.78190282849,534.5535,215.9027777777778,651.8396679999997,18696.89735710655,2130.0,717.063,414.0,517.0,17828.036033081687,7741.21438,173.692919804188,729.8091000000002,299.59722222222223,894.965608,24153.071127634837,2103.0,866.254,427.0,444.0,23002.68340626478,7394.055163999998,185.51413610346998,879.1565999999998,339.4027777777777,1097.2764400000003,24599.37811531456,1749.0,811.1820000000002,359.0,305.0,21969.269453703826,5960.118023,162.00757911147,821.4996,307.86111111111103,1030.8970519999998,20991.16463533729,1302.0,683.4819999999999,267.0,200.0,18746.479139781575,4251.609212000001,126.60024568522499,691.3071,265.3333333333333,871.6034080000003,15873.835924812067,867.0,558.1039999999999,162.0,117.0,16033.520487659822,2706.3973269999988,87.53176645916795,562.0512000000001,234.5,718.6593,10425.28788259062,381.0,401.446,105.0,11.0,12609.923827269606,993.8203869999999,51.401176767413006,402.6225,145.0,527.4288280000001,5477.780521861995,309.3333333333333,5.037449999999997,0.916047666283142,29.64285714285714,157.33333333333331,58.055340335147775,1471.851384404762,9.728584258628786,4.7708976190476164,35.419477513227505,3.1720404761904746,2140.915854365832,25.000000000000004,-0.018224999999999984,-0.31792957872318656,15.739795918367344,52.99999999999998,-7.756275947838154,118.75787470918392,-0.29076656205712836,0.08248826530612136,-3.810385959939527,-0.13448165306122542,60.32636229153293,39.00000000000002,-1.3751499999999988,-0.3390376427284613,6.785714285714294,12.666666666666657,30.375590552189216,200.91315945238114,3.9257253989796412,-1.0930500000000016,-2.706679894179892,-0.9343420000000016,794.5958884048811,-29.666666666666615,0.06507500000000055,0.26400421754521897,0.3520408163265331,10.33333333333332,-7.257279880277775,-144.702907603741,-1.2037571804081904,0.0004328231292511642,-1.6726780990173817,0.1391047687074818,-279.4725448621924,-22.44444444444443,0.5140999999999998,0.008974648885404734,-15.16326530612245,-35.44444444444444,-22.839948521342865,-115.87649288321988,-2.7898826770898264,0.4393797052154196,2.9092104434366313,0.34647072562358283,-497.88525265226826,-108.77777777777777,-1.1218249999999992,-0.1769623484240565,-26.954081632653054,-107.7777777777778,-16.131279446836505,-519.227459201247,-2.948697171204157,-1.1859255668934232,-5.063566861929957,-0.6273862199546479,-751.2952693834189,-167.11111111111114,-0.9721499999999995,0.041529955328987796,-21.20408163265306,-87.77777777777777,-30.97934197266293,-806.6399660464853,-6.3727907859674815,-1.13601961451247,-7.4189736079617,-0.4669414104308386,-1426.5457217718163,-49.66666666666669,0.8542499999999996,0.2509566570769778,-2.7551020408163316,2.000000000000016,-16.687217966147564,-247.49192009183696,-2.9055997646122953,0.610643537414967,8.128826530612244,0.6597212925170072,-648.6778815781223,36.3333333333333,-0.7186000000000003,-0.2742496166381247,8.540816326530608,4.333333333333352,18.53183562506451,182.95779816326473,2.774118930473511,-0.5466768707482987,-1.5206916099773258,-0.5250232925170053,568.093103787651,0.695834271247279,0.5954025005624567,0.4223748152101862,0.31534878162906516,0.26000765021847605,0.17372649548959626,0.15705518694395665,0.09357635178637615,0.09478234549451606,0.04972338108015731,0.06006501694754312,0.027994495785229348,0.039078633996450333,0.015696911245707077,0.025163220311662196,0.008664922232430348,8.012686974014006,5.683560998529612,3.524835735687219,2.1828231817946993,0.41791154081480364,-0.5259547802907805,4.030096746607466,0.9877836640113203,6.009557140298176,0.9962727328772799,14.543901663652372,10.944038649323817,16.00610400489992,11.695001115447914,1.9983105320464998,0.7749234649443899,3.468022540067163,2.232656536180818,6.0026017236239495,1.1284042856548424,3.6814402054016053,2.4286729577947277,20.904471031940048,14.705641978331363,0.2544206020591126,0.6041839234727786,0.8522153344135409,0.8861398284238289,0.8861398284238289,0.8861398284238289,1.7164906488457157,612.2979382510543,0.0,0.0,2.0,0.0,6.0,4.0,2.0,0.0,1.0,3.963819563851743,2.000000000000001,0.607375595341118,0.41689940486492727,0.41689940486492727,0.41689940486492727,237.75228856280773,923.2517818760459,51.80086598761005,21.982185282762998,42.37825519478818,,8.0,299.0,6.103966387748303,5.106527394840706,11.518956857145081,6.4208216229260096,31.009358101318973,11.126902983393991,7.109797541277533,12.142387175295491,24.08996888882316,9.473725907600098,9.9,21.5,7.5,0.5,14.0,0.0,0.028571428571428553,-6.5,0.11691729323308259,0.04228571428571415,-0.07463157894736844,0.02402597402597395,0.14503448275862052,0.0,0.5642857142857145,0.8285714285714283,0.4473684210526319,0.5220000000000004,0.8045454545454543,20.99590363424436,0.27721799732862884,0.6212179973286288,14.76873785046256,4.093044104998389,6.0439514600460775,35.76464148470692,10.136995565044467,0.5689655172413794,0.13468013468013468,0.050505050505050504,0.3434343434343434,0.5294117647058824,0.2513549613810071,-0.4853921003185691,-0.05925411895008567,-0.011556954769489742,-0.0404493416932141,0.7486450386189929,1.4457100257413393,0.04909418256865256,0.0344216672795557,0.048190334191377984,-2.655538308171106,0.8423850574712644,0.8559284293971489,1.2850796936268802,0.7684069611780456,0.6109463276836159,1.3283803075182228,0.8472960229110124,1.165445414021875,0.8277137958299086,0.9610566232683061,0.9085999933446277,1.0283214023682445,0.9120227832512317,1.1941180793948567,1.342225488123047,1.3090361445783134,1.082702784503632,0.8773570017229304,0.9067018903173135,0.8339184784793513,1.1512941559864198,0.8843392447844945,1.2129956682531977,0.8063680611295612,0.979912687886826,0.9181983354928002,0.8768097785692933,1.2058078467717024,0.9788950456323339,1.1277946728265225,0.9830475287367311,1.1090861198363093,0.9173482928771065,0.9104204543128628,0.9263839765419867,1.0653865692686288,0.9727392831837507,0.853107825129506,0.9185004824415861,1.1983990757550753,1.0539746343162295,1.112696478857458,0.9766139535965821,1.0946541691190383,0.8624143168639722,0.7231416408441551,0.8497640706761905,1.0664608300224572,1.0782429838912662,1.0277853186204673,1.0585979649164703,1.2417905197432064,1.221174069033775,1.0657378092505492,1.0788936318006315,1.06897527244635,1.0365969268496298,0.7711753778290649,1.0165263278124332,1.0828926071787945,1.1734635107015459,1.0630040479566667,0.9634748567431854,1.108890735355214,1.1569440385739334,1.1434947534320052,1.1756785817998043,1.1951821254583517,1.0789442026663678,1.0282103162230116,1.04855377546628,1.2053109078261166,1.0838160021551726,1.0320767245001607,0.8842677976660819,0.6771586345381526,0.9107190148305085,0.9922025030234756,1.0836232698210824,1.0328720434052847,1.0464706152431131,1.1985854297277996,1.0261547875147212,1.0667891514839878,0.9609375000000001,1.1500687627448192,1.082787266447518,0.5090696117804552,0.8975988700564973,0.6079455233243658,0.9530771927240898,0.6594416379570266,1.143293764725316,1.3879944168763454,1.1305819722971369,0.7501862277953878,5.5,0.0,3.3333333333333344,2.513888888888889,2.0116666666666667,0.972777777777778,0.5053061224489797,0.28479308390022673,0.0,0.0,4173.035837685093,4763.89491426142,2072.04496563485,1859.4288178502102,10.277103894196353,0.40922297369012706,6.0714768776909365,0.692685997365582,1.0,0.5294117647058824,1.4284978589270174,3.39231742277876,4.784941827437643,4.975418017913833,4.975418017913833,4.975418017913833,0.22916666666666663,0.0,0.09009009009009013,0.057133838383838384,0.05029166666666667,0.03137992831541219,0.02526530612244898,0.02589028035456607,0.0,0.0,0.509217776599689,14.583333333333334,5.2739225712198685,2.1421487603305787,124.51982776650085,1.0,4.021545898145291,75.64891408849698,,62.54348964544783,61.70670884922897,63.065646914453275,62.55682977508076,84.15048286467913,62.28024119344711,62.58472046305967,74.89933648118561,0.07543103448275863,-0.003376708453681922,-0.3239288569763751,0.495582329317269,0.3144067796610169,-0.12469465931743413,0.0753069801994517,-0.0278953357828967,0.01613722485086893,-0.10040690825969296,-0.039569548518041474,0.02629930769610229,0.06303879310344832,-0.13649266990243072,-0.18505458569863756,0.11445783132530135,0.04025423728813557,0.2616089267312354,0.06825184987465066,0.2017624196191605,-0.1145539149316518,-0.03820891899335718,-0.147277754967698,0.18557382504887168,-0.0344274977895667,0.004637317771939497,0.10345612815581304,0.004263206672845257,0.023576705780095582,-0.044874035323551525,-0.03529203698767861,-0.044417353101973096,3.2566702909719694e-05,-0.01695249592942117,0.015742247159788843,-0.046860075064722936,-0.020872697213037302,0.029358461289326513,0.0028183558613007775,-0.14715299554381914,-0.06480729045739494,-0.11317470730591007,-0.022647893613679162,-0.0824959693994502,0.026493316686506046,0.02362813383254119,0.03142130800156922,-0.06689999710616243,-0.10780581424616159,-0.06827207283142692,-0.059223152790563185,-0.278761762377979,-0.21000866015093414,-0.08518347690801116,-0.1081489766939818,-0.09292001083034668,-0.07620545461210372,-0.04382713906074301,-0.060635222893169534,-0.107582040981925,-0.19560047562425686,-0.06987371484135549,0.016414765865793,-0.2589945990859992,-0.20200175336060786,-0.19320631376363062,-0.1984298830343028,-0.2371763152779923,-0.08621384893938135,-0.07583906618699407,-0.05329849814366094,-0.2412555975479777,-0.070245150862069,0.07419118303903761,0.119855703488296,-0.040662650602409714,0.005561440677966147,-0.12575342454360924,-0.07356565763870769,-0.13066648375794107,0.0559971244305131,0.10040694716105632,0.0909912933465541,-0.13255849014883067,0.06851652298850569,-0.08321339831330013,-0.17464041329641686,0.16807228915662645,0.01606638418079103,0.18620573724222195,0.07251097725811884,0.16633828723238095,-0.06684168614238674,-0.025044697666385052,-0.09655097077115479,0.15478779476566173,8.818684196592953,17.239759886865016,6.409925916482373,12.99700349460487,31.5439748164829,36.281359263998084,36.47335926399809,36.47335926399809,36.47335926399809,43.886728404203545,35.945836797179254,2.1408959232894382,5.799995683734844,0.0,7.940891607024282,2691.5550518258638,1734.3521338555913,1213.8715727946856,204.0,37.0,55.0,82.0,118.0,149.0,175.0,201.0,200.0,287.1521435320006,24.0,4.812184355372417,5.726847747587197,6.678342114654332,7.624130585661289,8.58615939588096,9.543449817892206,10.509086848575649,11.470967408709472,12.437783393390324,0.611111111111111,0.974,1.1257008990287412,0.5696345809991634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6543862703165099,0.9608776844070962,0.9994624215308847,0.6093226861678929,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,19.480163033291284,6.103966387748303,11.49902366656781,0.0,0.0,0.0,0.0,0.0,0.0,18.218407282129373,31.643068571674384,18.52902952053558,18.628754398422615,120.17174692458508,-232.06391597839956,-28.329144360573615,-5.525331332819038,-19.338659664866633,357.9240354873928,691.1878658976464,23.471721627036434,16.456853949943962,23.03959552992155,0.375,0.8297803681423412,0.255220718680102,66.68448841571319,0.10921901753270546,198.7663819312651,0.1702196318576587,5.0,0.041666666666666664,0.2649135328889608,0.6291019531692621,0.8873627889976614,0.9226864125053508,0.9226864125053508,0.9226864125053508,1.8503,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,79.80280000000003,14.580253302440804,0.0,4.899909730850478,0.0,37.00932289665798,20.7022259298673,35.411677333984976,0.0,11.49902366656781,3.8918202981106265,0.0,5.2832037287379885,2.3978952727983707,6.88653164253051,5.043425116919247,8.596558746796978,7.4127640174265625,10.368761263333154,25.666666666666664,4.157095143613001,0.0,0.0,0.0,0.0,0.0,4.275655234315949,0.0,40.908,0.0,0.0,0.0,0.0,0.0,4.114387755102041,0.0,0.0,47.27943775920713,9.473725907600098,0.0,11.49902366656781,42.91659583105508,11.959746875309355,0.0,23.968546229246012,24.284774350590983,0.0,0.0,0.0,23.924652401964863,27.484223353293416,27.577592685949867,151.29782817699396,,125.0019452772902,123.3141024023069,126.06037457718348,125.02886936770643,169.3863590128872,124.47121124392052,125.08508403147468,150.3460076528456,27.577592685949867,151.29782817699393,,124.19412214803856,122.37060708887215,125.386641685814,124.22336263438325,172.06603034055763,123.62313538567024,124.28369353235041,151.31498102478872,5.093439681999335,99.6369718991537,,83.02886168837922,82.02292983589511,83.9313296748959,83.04572504867843,109.07551741484893,82.72179645396616,83.07764755798459,98.49459285807697,1.313218699330946,7.20465848461876,,5.952473584632867,5.8721001143955665,6.00287497986588,5.953755684176497,8.066017095851771,5.927200535424786,5.9564325729273655,7.159333697754552,2.6284017608564003,75.64891408849698,,62.54348964544783,61.70670884922897,63.065646914453275,62.55682977508076,84.15048286467913,62.28024119344711,62.58472046305967,74.89933648118561,40.35686274509804,0.0,3.8425700743260265,0.0,0.0,0.0,9.97286643361048,41.97742170429716,3.6243301209372643,0.0,11.755412414965987,0.0,-0.40331963340891996,2.352275604686319,-0.10793981481481496,0.0,0.0,25.5915528190515,396.7144943371117,59.99691007493473,142.4773317567079,200.967556752381,208.967556752381,208.967556752381,208.967556752381,1266.0,122.38895166772383,81.38128807486618,70.88096008665343,41.93,41.93,0.6,8.390580665280366,5.584962500721156,3.995498694040772,4.507895301279494,,4.510042658450374,4.512358844774862,4.508799704933935,4.51000746381606,4.446217051144297,4.510802648846282,4.509924988912093,4.476479446524277,0.1902618425733701,0.21466168101330924,,0.21476393611668446,0.21487423070356487,0.2147047478539969,0.21476226018171715,0.21172462148306176,0.21480012613553723,0.2147583328053378,0.2131656879297275,2.1271057457041826,2.2477677155439206,,2.2482439568356782,2.2487573869627995,2.2479683220093385,2.2482361531907236,2.233990978500423,2.248412453328372,2.2482178659353806,2.240774244394464,217.33999999999963,145.78699398486282,120.20043116914101,,119.96029869915425,119.73809047380385,120.0764277718669,119.96372147945378,125.307235018012,119.88899681554777,119.97135636383075,122.94908283153504,6.942237808802991,5.723830055673382,,5.712395176150203,5.7018138320858975,5.717925131993662,5.712558165688275,5.967011191333905,5.708999848359418,5.712921731610988,5.854718230073097,5.724083955831581,5.53109795392173,,5.529098188596701,5.527244122828703,5.530065782876796,5.529126720798664,5.572705946528761,5.52850363287325,5.529190362050691,5.553707653677176,11.755412414965987,2.352275604686319,9.97286643361048,2.483439625850341,1.684275793650794,4.157095143613001,5.379761432350717,1.9556368102796673,3.8425700743260265,269.08397762357316,57.453605369723704,-110.94877947928043,-13.544044438130314,-2.6416376066495344,-9.24573162327337,171.1219717903976,330.4540035400005,11.221731115834126,7.867952465238107,11.015133451333352,766.0,44.0,1.811706373163586,1.0921766692081087,0.08333333333333333,0.05892556509887896,0.4721374706531339,0.20970551211808305,0.06944444444444445,0.031741736710714036,0.0,0.0,0.0,0.0,0.06804138174397717,0.02946278254943948,0.3373861080836796,0.14825683805135306,0.8542686586485492,0.31779987530182907,14.61251969619286,12.50345251181159,10.136995565044469,7.568370759097563,9.620283058083613,6.427880333115062,8.638035281917615,5.146699348250688,7.772152330550316,4.077317248572899,7.087671999810088,3.303350502657063,5.8227164654711,2.3388397756103547,4.403563554540884,1.5163613906753108,4.508083255124112,2.3958462195196746,8.286644637979247,3.8682285590176444,14.768216616037083,5.997553762511897,71.79746715994955,33.12135708998482,22.058136086282587,21.279378727393414,21.279378727393414,21.279378727393414,122.0,153.0,45.89865299999998,26.249346999999997,0.40476190476190477,156.04,6.340277777777778,4.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,6.0,6.0,42.0,0.0,1.0,45.0,6.0,1.0,4.0,41.0,7.0,24.0,38.0,0.0,0.0,0.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,4.0,1.0,2.0,21.0,4.0,0.0,1.0,3.0,0.0,4.0,1.0,0.0,1.0,0.0,0.0,1.0,3.367295829986474,6.998709393988392,3.9415818076696905,4.54063166485052,5.129158796280363,5.684642128003773,6.0243551713019565,6.348100427783755,6.658331918647447,6.798707417858608 +72734347,NCCCC[C@H](NC(=O)[C@@H]1CCCN1C(=O)[C@@H]1CSSC[C@H](NC(=O)CNC(=O)CNC(=O)CN)C(=O)N[C@@H](Cc2ccc(O)cc2)C(=O)N[C@@H](Cc2ccccc2)C(=O)N[C@@H](CCC(N)=O)C(=O)N[C@@H](CC(N)=O)C(=O)N1)C(=O)NCC(N)=O,0,26.427672955974842,6.475569811320754,3.0440251572327046,7.904961565338924,167.63196649605115,104.47337752830188,1.4072466349611699,6.50926037735849,6.8005323049581134,7.9890741006289305,205.38062187672682,26.679012345679013,6.549898765432097,3.734567901234568,6.655006858710562,153.0993294966478,101.17525783333335,1.7344318667654315,6.667983950617288,3.4437797422479632,7.963311858024686,251.98502229312825,21.378947368421052,6.37983157894737,3.2982456140350878,4.960233918128655,157.33121868222574,78.90963152631579,1.465725414461498,6.471431228070172,3.4483972276369954,7.854588392982457,204.9504455631093,17.82107843137255,6.384113725490194,2.7916666666666665,3.82516339869281,164.91951258685776,63.77998135539215,1.2430734279237325,6.437096323529413,3.4806417937545384,7.934480823529416,170.0960673100862,18.520454545454545,6.402309318181821,2.743181818181818,4.077272727272727,165.09510942218776,66.8451737159091,1.2238387747206159,6.457565681818185,3.474130190796857,7.972094418181817,170.97647255417118,20.640425531914893,6.467988085106384,2.825531914893617,4.908510638297872,164.1204163166678,76.18595958936166,1.2651341942543854,6.521137234042552,4.493820593643291,8.008736914893616,177.27095097819858,19.526217228464418,6.403556741573034,2.8127340823970037,4.093008739076155,164.49490807143906,71.03869535580522,1.2853202446759495,6.461763483146067,3.660014102741942,7.957089509363296,176.0860167508709,19.20534223706177,6.401145075125209,2.7545909849749584,3.994991652754591,163.90499247906067,69.24932976460767,1.2809694110761238,6.46407512520868,3.5800871823409395,7.980771212020036,175.90271193707738,20.075851393188856,6.427944272445821,2.763157894736842,4.4339525283797725,162.53030890087877,73.12396565015479,1.300110730395896,6.490420897832817,4.194396667048888,7.982389263157892,178.53510595643326,9.715517582374117,0.16883787824848695,0.030859078935788105,0.5718128238598156,4.21727340251133,1.5047129472203828,44.88459072552511,0.24230408430126224,0.15505603417586325,2.991988675544764,0.10576413725722869,46.87505253726413,0.6432835667834274,-0.024274495998312197,-0.020650507718675545,0.10188078589249425,0.8398005594077302,-0.025695162450951988,2.7000725236013947,0.031070231603570808,-0.020072130146047307,-0.18355138580213406,-0.015004188076391721,3.27311287652204,-0.279194069188636,0.023162518970976754,0.002370261880165362,-0.07749526896629264,0.08165385973933675,-0.24413099081666592,-1.3834437048696837,-0.036164191034519684,0.019405581183289312,0.2506388954878806,0.013721985792534024,-6.3144681635242215,-0.7161804261279688,-0.004003860490440368,0.006087971645089847,0.022788853289031262,-0.4697192445798118,0.18123388115009917,-3.3057602136401543,-0.0007623023759021687,-0.005730779828841451,-0.2823677639376339,-0.003041674561458617,-2.0396095485681145,-0.1754804182803473,-0.03539789968931029,-0.009677875208854237,0.012421024053277508,-0.314995910611195,-0.10085001162570299,-0.7907819543844448,0.0026542756968724545,-0.029412822340528805,-0.5334607571810669,-0.022436623706628408,1.193787395318011,1.3603421794350652,0.028698540860304662,0.0035288138976148843,0.0020129489221995633,0.4749504552283866,-0.08677993075653444,6.131926132283011,0.004911305147251816,0.02673298629784205,0.5679863245332487,0.020608513913653082,1.7675488425960004,0.12726149095403597,0.000983431199608562,0.004810578240366636,0.008523077018803013,-0.19672649704462913,0.1726528186480978,0.5853622338770654,0.010730968830756714,0.00038475799430136477,-0.06807882972705272,8.1820036719849e-05,0.897392588119358,-0.7521089663369043,-0.028711740345692988,-0.006685529710355299,-0.009911961836107415,-0.37695836545329187,-0.011166559995928664,-3.296991550957421,0.0022846155150516912,-0.024944773269320934,-0.3895102203763302,-0.019321861913626726,0.9131606887048885,0.058836449208726375,0.012892836162401505,0.002193905354133687,-0.004908604376590427,0.11925218201355528,-0.06833399366094879,0.15654846347542914,-0.00873952176865336,0.010705970029989858,0.26236642603805843,0.010581537412241812,-2.0953512430743158,,,0.45960784313725483,1.0382352941176471,0.3941176470588235,0.0058823529411764705,0.6441176470588236,-0.25,1.6067058517215989,0.022875649443516347,0.026922708267045754,1.541438974362778,0.20444940119813199,0.27166569715097627,3.148144826084377,0.47611509834910826,1.9864324969084042,1.2654334634960296,0.36308818190101894,0.3102235698964358,0.0,0.720999033412374,7.713811935018879,4202.0,1029.6155999999999,484.0,1256.888888888889,26653.48267287213,16611.267026999998,223.75221495882602,1034.9723999999999,1081.28463648834,1270.262782,32655.518878399565,4322.0,1061.0835999999997,605.0,1078.111111111111,24802.091378456946,16390.391769,280.9779624159999,1080.2134000000008,557.89231824417,1290.056520999999,40821.573611486776,6093.0,1818.2520000000006,940.0,1413.6666666666667,44839.397324434336,22489.244985,417.7317431215269,1844.3578999999988,982.7932098765436,2238.5576920000003,58410.87698548615,7271.0,2604.7183999999993,1139.0,1560.6666666666665,67287.16113543797,26022.232393,507.1739585928829,2626.3353000000006,1420.1018518518517,3237.268176000002,69399.19546251517,8149.0,2817.016100000001,1207.0,1794.0,72641.84814576262,29411.876435000006,538.489060877071,2841.3289000000013,1528.617283950617,3507.7215439999995,75229.64792383532,9701.0,3039.9544000000005,1328.0,2307.0,77136.59566883386,35807.40100699998,594.6130712995612,3064.9344999999994,2112.095679012347,3764.1063499999996,83317.34695975334,10427.0,3419.4993000000004,1502.0,2185.666666666667,87840.28091014846,37934.663319999985,686.3610106569571,3450.5816999999997,1954.447530864197,4249.085798,94029.93294496505,11504.0,3834.2859000000003,1650.0,2393.0,98179.09049495735,41480.34852899999,767.3006772345982,3871.9809999999993,2144.4722222222226,4780.481956000001,105365.72445030935,12969.0,4152.452,1785.0,2864.333333333333,104994.57954996768,47238.081809999996,839.8715318357489,4192.8119,2709.580246913582,5156.623463999998,115333.67844785588,1544.7672955974847,26.845222641509423,4.9065935507903085,90.91823899371067,670.5464709993014,239.24935860804086,7136.649925358492,38.526349403900696,24.65390943396226,475.72619941161753,16.81649782389936,7453.133353424997,104.21193781891523,-3.932468351726576,-3.3453822504254385,16.504687314584068,136.0476906240523,-4.162616317054222,437.4117488234259,5.033377519778471,-3.251685083659664,-29.73532449994572,-2.4306784683754588,530.2442859965705,-79.57030971876125,6.601317906728375,0.6755246358471282,-22.0861516553934,23.271350025710973,-69.57733238274979,-394.28145588785986,-10.30679444483811,5.530590637237454,71.43208521404597,3.9107659508721966,-1799.623426604403,-292.2016138602113,-1.63357508009967,2.4838924311966575,9.297852141924755,-191.6454517885632,73.94342350924046,-1348.750167165183,-0.31101936936808483,-2.338158170167312,-115.20604768655464,-1.2410032210751156,-832.1606958157906,-77.21138404335281,-15.57507586329653,-4.258265091895864,5.465250583442104,-138.59820066892578,-44.374005115309316,-347.9440599291557,1.16788130662388,-12.941641829832674,-234.72273315966945,-9.872114430916499,525.2664539399248,639.3608243344806,13.488314204343192,1.6585425318789957,0.9460859934337947,223.2267139573417,-40.78656745557119,2882.005282173015,2.3083134192083534,12.564503559985763,266.9535725306269,9.68600153941695,830.7479560201202,67.9576361694552,0.5251522605909721,2.5688487803557836,4.551323128040809,-105.05194942183196,92.19660515808422,312.5834328903529,5.730337355624085,0.20546076895692877,-36.35409507424615,0.043691899608399365,479.20764205573715,-450.51327083580566,-17.1983324670701,-4.004632296502824,-5.937265139828341,-225.7980609065218,-6.68876943756127,-1974.8979390234952,1.3684846935159631,-14.94191918832324,-233.3166220054218,-11.573795286262408,546.9832525342282,38.00834618883724,8.328772160911372,1.417262858770362,-3.170958427277416,77.03690958075671,-44.14375990497292,101.13030740512723,-5.6457310625500705,6.916056639373449,169.48871122058574,6.835673168308211,-1353.596903026008,0.7363326054730066,0.5645767174565499,0.45988390181447925,0.3353545741309088,0.30992456881167485,0.19025641198023202,0.19678144904805356,0.11195217620617029,0.12321289602958838,0.066305747510888,0.08382416670448424,0.03827844938092038,0.051623458082066156,0.02420128752738969,0.032061826993079454,0.014867080236295573,16.101028596346325,5.693373108551023,3.567261379583574,2.1927694314352095,0.4575128255700876,-0.4018172434468468,3.194726986320357,0.971465509668372,6.038327454790414,0.5598373441979675,14.557570457365253,10.250201811879064,32.16051522516616,11.704734093946824,3.0078615372579116,0.750845509634947,3.5140192498988267,2.242637330218594,7.022565802295499,0.5378164023190269,3.7262876870903754,2.4386559824511864,24.531646888737892,14.701775153618183,0.23641896120649372,0.4766084878797296,0.672956954607341,0.8258892929881815,0.9040822997771393,0.930478158355999,1.766683300318944,2729.675779388017,0.0,14.0,8.0,0.0,10.0,18.0,2.0,0.0,0.0,5.537897945496899,3.7346043045077164,2.260460338398924,1.1122757479901964,0.525218710719038,0.32704402515723263,279.73640618755564,16077.767006909826,208.71274220548662,101.11803148999891,216.4658142060946,,26.0,3577.0,182.22958694327986,72.23004797184622,56.6959863664859,23.96854622924601,26.487705683623926,24.26546827384644,30.33183534230805,0.0,53.167886040063316,28.668337385810926,39.06666666666666,88.25,33.5,0.5,54.75,0.0,0.040392156862745145,-21.25,0.19322320729458775,0.023141711721652247,-0.1700814955729355,0.12220865704772554,0.2127168520102657,0.0,0.6297693920335421,0.9168627450980401,0.43654618473895435,0.6066276803118898,0.7946540880503146,136.5699973963359,1.9444302026988893,2.288430202698889,131.02231282083613,17.37819910184122,23.091584257832984,267.59231021717204,40.4697833596742,0.5012831479897343,0.17918088737201365,0.0,0.3302047781569966,0.5,0.40627923841591984,-4.376905539942509,-0.09123397016767394,-0.027527707798380565,-0.08582167725377468,0.5937207615840802,6.396240429829505,0.04861709475724735,0.040227927231632106,0.05922444842434728,-7.293275946959987,0.7519531232329153,0.8302025703837871,1.7697944030829946,1.0780952161347848,0.5269323794005102,1.4112134612415268,0.7635815402592496,1.0194054190394473,0.8059993834120105,0.641646094095565,0.8035092581616288,0.9988175022146565,0.925730756060652,0.5839931176028568,0.9046793097873395,1.4207482596918422,0.8078436164947149,1.4027437045254185,0.9301070109340497,1.2700828889370994,0.5967181585542206,0.5258930788193106,0.5638618131838381,1.197054120963781,1.076455045208892,1.0008894636116643,0.8421950080981693,1.0605844509912437,1.1140386806735296,0.9401893816615255,1.0737361784663886,1.0345081721146943,1.010339404514773,1.0346890091890266,1.002474653751914,1.0401449501646063,1.0543056050082202,1.2604106763843261,1.3717031420356756,1.094039907933793,1.1246510729628367,1.1038235347840009,1.0484191402709504,1.0265004579072596,1.2327944686918368,1.2488430345986476,1.2766183462051606,0.9621397283287343,0.9000708417135551,0.8518672885176996,0.9166722464407294,1.148073832259888,0.9089530677259314,1.1230963562455785,0.8969126387412083,1.0435674773970227,0.8419128514723953,0.8524028993519612,0.8382286446521744,0.9599179650215497,1.083620783749242,0.9719309523864579,0.8972241595605832,1.0902086455295577,1.0475083655612316,0.9725411569352319,1.0712804819198716,1.0727837105787608,0.9706120301220112,0.9716627143061791,0.9749473890316682,0.9887877900678383,1.2692890806415449,1.203744352335392,1.2386399076535006,1.144527565311306,1.1353973291320032,1.0864408342632073,1.2435514209713212,1.184160626080523,1.1867344399899487,1.2060286371907352,1.2352148548240613,0.996434708298541,1.1098889319610226,0.9172151434784163,0.9020606229256597,1.0935385651945226,0.9659804445118763,1.137907628066507,1.0974619368309118,1.1974693794028637,0.9176294834766359,0.9497499052225508,0.9118946655854241,1.0679947293391872,19.5,1.6699418426691155,9.555555555555559,4.993055555555555,5.863333333333334,3.371666666666667,2.733061224489796,2.80562641723356,1.925461388259007,1.8196759259259263,23699.694353337654,26780.077469993274,8409.574099064117,7598.33765742801,24.214692970419886,0.45500271598608133,13.196941902109767,0.8348715293312562,0.0,0.5,1.774985009787457,3.5782786507766393,5.052422616885432,6.200607207294159,6.787664244565318,6.985838930127123,0.22159090909090912,0.006958091011121314,0.08167141500474834,0.03931539807524059,0.041583924349881805,0.020069444444444442,0.01526849846083685,0.01424175846311452,0.008752097219359121,0.007911634460547504,0.4573631705802036,77.44834710743801,42.27306596537366,29.658475110270953,495.734153875603,0.0,5.3233935683319995,970.9701280809259,,825.9514556402072,858.9508229061938,849.1859900138658,826.0945197673856,1144.7026869774434,866.8142309776986,870.872688638287,1073.4096009475631,0.06621197083215327,-0.14377399343165304,-0.66918742978834,0.17817156531185305,0.19913353469273307,-0.017076454680886474,0.06015589047280561,0.12822826199223483,-0.12945081597586627,-0.06134762049816719,-0.1418646099282224,0.06982632977147114,-0.028736921818262116,0.13718792969482443,0.07680922314944745,-0.13552558762706451,0.019361765753842988,-0.1622442282214975,-0.030822241720540915,-0.1492512647436678,0.12515205413598846,0.08377000138285808,0.12974138633742,-0.13470850317457086,-0.07371510782166281,-0.023714231261232097,0.1972829992028525,0.03985369396790256,-0.11137984184285997,0.12044415613282775,-0.07365022517093432,-0.0031460566506769268,-0.03695941186230552,-0.09437460985249951,-0.028759035343530182,-0.043511621601846566,-0.0180618702804577,-0.20965615095691664,-0.3136151674841644,0.021722185188911784,-0.07469184009355882,-0.06702275793665537,-0.01761811663205699,0.0109543167814387,-0.1896915685794532,-0.17829638245002294,-0.21213829459091935,0.025467435889676905,0.14001746874536017,0.1699769101461203,0.11435253479073945,0.003520293421563861,0.11262026667409326,-0.05767208351389596,0.1366153959112718,0.020269180197332034,0.17240855178536116,0.18983572002652482,0.19485351507696005,0.03770766637948527,0.013098786541739542,0.005824707167672401,0.15588858793797888,0.014905361795265566,-0.04664779308059116,0.11474136576483566,0.01304149652286302,0.04428719747626975,0.002481412583176063,-0.022753705681943234,0.0007736085108022458,0.01914435375631761,-0.07741316506918577,-0.1700550886065775,-0.2166470919066191,-0.017334276921598755,-0.08938437930744975,-0.007421056631802338,-0.0734548649695602,0.009428712362153898,-0.1608758627286235,-0.13018438992099807,-0.18268821941632327,0.019480739525122786,0.006055925349305877,0.07636222568152917,0.07109432393295953,-0.008584285227212411,0.02827708109759785,-0.04541330875578655,0.0034877997313764674,-0.03606840468189266,0.06904581357889779,0.08768964541294202,0.10004844446002034,-0.04470077641851346,0.0,0.0,37.9404194680543,19.208228014002,34.08329350193834,42.312579023474214,50.54970178862602,54.806337126741795,56.121886634598994,168.84676223721436,107.56184439716252,30.862495461586608,26.36900344119704,0.0,61.28491784005179,71560.25312390133,47897.787300504715,26814.82125712758,328.0,117.0,138.0,165.0,201.0,209.0,235.0,276.0,297.0,1226.4960976680018,88.0,6.018593214496234,6.825460036255307,7.67368812926773,8.50532301884575,9.357121103184378,10.201256085188918,11.056666937516164,11.908293098066721,12.766953347410249,0.6813417190775681,1.0045283018867923,1.1446441192597563,0.6426923119216191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6463024215719505,0.9885312615612283,1.022477520189458,0.6117681878522776,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,5.0,1.0,18.0,10.0,0.0,2.0,8.0,1.0,0.0,0.0,0.0,91.84266055156543,54.08423846646758,0.0,82.7005162109211,0.0,67.12352057700551,0.0,0.0,0.0,64.05236543200472,68.32932326378585,37.312928488184184,32.59984724657631,606.3282678359701,-6532.062934995925,-136.15693313605638,-41.08215682387375,-128.07966539207698,886.0646740235258,9545.7040719139,72.55580906943024,60.03587466612516,88.38614881401762,0.46153846153846156,0.6914760775393358,0.04715118931655499,618.3284084132894,0.027205801473303766,879.2778323110806,0.3085239224606643,14.0,0.2840909090909091,0.24272028154160963,0.48931162616119034,0.6908934065783872,0.8479018801762094,0.9281789803104246,0.9552783728172611,-6.980500000000019,,7.2857142857142865,7.207217996933379,6.027205164957299,7.2697039470612825,-23.677047193927404,6.483017135862914,6.114342101396676,-10.778953472422309,307.5458,72.23004797184622,0.0,58.0677957709138,28.668337385810926,112.54294286244378,50.77424564896902,65.72420659954848,0.0,5.749511833283905,5.176149732573829,0.0,6.4692503167957724,2.3978952727983707,7.917536353943631,4.59511985013459,9.439943018351132,6.6052979209482015,11.00720346221328,108.33333333333333,13.81209098976837,0.0,0.0,0.0,0.0,0.0,0.7571525401556052,0.0,159.71999999999997,0.0,188.41687082997063,0.0,0.0,0.0,0.0,0.0,-12.932831481129702,181.99841496230124,81.83622342587425,0.0,5.749511833283905,191.81592561876496,79.96516382285753,0.0,62.49347596680208,54.59730361615449,0.0,0.0,0.0,102.18807759553744,102.76208502994012,105.3475564815893,1941.9402561618517,,1652.5677688581545,1717.7320642124598,1698.230163435615,1652.8557457972756,2293.793289670298,1733.4759203757299,1741.6015104035998,2148.087314068353,105.3475564815893,1941.9402561618517,,1645.8379187675082,1710.7800827337655,1692.344774862774,1646.1417410866022,2313.418090271579,1727.264433867912,1735.7003776456359,2157.5981553675474,4.7795008515688195,1292.9328786186293,,1089.9550456322727,1157.5693732263078,1148.3155906581342,1090.137959559592,1514.1379536628574,1165.6050820311834,1167.699979448508,1429.0940321401474,1.2393830174304623,22.846355954845315,,19.441973751272407,20.208612520146588,19.979178393360176,19.445361715262067,26.985803407885857,20.393834357361527,20.48942953416,25.271615459627682,2.415042733617788,970.9701280809259,,825.9514556402072,858.9508229061938,849.1859900138658,826.0945197673856,1144.7026869774434,866.8142309776986,870.872688638287,1073.4096009475631,157.1764705882353,0.0,0.0,0.0,0.0,27.204245740046265,10.062199819303778,162.57392571012383,-3.8994263055016147,24.694856704149814,0.0,1.7337245743592171,-12.331696515824941,1.1494797713692684,0.0,0.0,0.0,97.27114186851213,1031.9540175843943,282.2226165562057,568.9463054734856,803.3351960847837,985.8965459597713,1079.2386148858855,1110.7483898902126,2139.0,257.31335497023144,460.4389242751017,138.6083959277588,563.4499999999997,512.8499999999998,0.8571428571428571,8.304355724499082,7.459431618637297,5.154339820482215,9.061882277432241,,9.042316135690672,9.063703709019807,9.065496415767212,9.042305298024518,9.045217380063225,9.0628571688634,9.061342575426695,9.054289280327053,0.06063929200567312,0.10661037973449695,,0.10638018983165497,0.10663180834140949,0.10665289900902603,0.10638006232970021,0.10641432211839087,0.10662184904545177,0.10660403029913758,0.10652105035678885,3.7799052069022214,4.344143018863661,,4.3419815147845515,4.344343997921117,4.344541768009251,4.341980316234038,4.342302315229223,4.344250594637093,4.344083459705719,4.34330476255486,894.5300000000034,18247.491825764595,873.0256456505844,,876.1896795225225,868.3333751546793,868.2233159873201,876.195915542448,877.4521397871264,868.711354264891,869.2848664570648,872.6335513948793,214.67637442075994,10.270889948830405,,10.30811387673556,10.21568676652564,10.214391952792,10.308187241675858,10.322966350436781,10.220133579586953,10.226880781847822,10.266277075233875,11.951849078857283,8.912031095365544,,8.915648760128912,8.906641877178405,8.90651512154979,8.91565587730671,8.917088575795715,8.907077075086411,8.907737044545668,8.911581873360513,0.0,189.56635060133985,34.75705652345359,28.093051883019623,-13.825655040991624,1.4803944739434283,-1.1274242101483465,-2.0108321383090986,1.7337245743592171,1128.8122986270228,904.8800273682957,-9748.404619969942,-203.19964599748585,-61.31072088031411,-191.1451886268616,1322.3566655437448,14245.941382003752,108.28177734612288,89.5971156100865,131.90686464818293,39731.0,127.0,6.068891806375764,2.1389364881000597,0.0,0.0,1.033679846603817,0.21605923498898844,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.3214781694372534,0.15113988565028466,0.47719038813317727,0.16400857540778102,62.58827146520556,47.98902098380674,40.469783359674175,29.511202523519977,36.261174550965954,22.260000201687145,27.15583996863139,15.4494003164515,20.33012784488208,10.94044833929652,16.84865750760133,7.693968325564996,10.789302739151827,5.058069093224445,7.534529343373671,3.4937638555294597,11.504110285002008,3.8430010799896257,15.269604638013677,5.0843317959274605,23.86510799615554,6.537019945136544,280.9695378917583,155.9815398486657,97.85747520561812,52.83676013873538,36.04837265221121,31.716323059312927,410.0,460.0,171.6126820000009,93.40931800000014,0.25157232704402516,604.33,32.638888888888886,19.277777777777768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,159.0,0.0,2.0,162.0,12.0,14.0,20.0,142.0,26.0,88.0,136.0,0.0,0.0,0.0,52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,74.0,19.0,16.0,2.0,85.0,33.0,0.0,16.0,15.0,0.0,4.0,25.0,2.0,0.0,0.0,0.0,2.0,4.6913478822291435,6.5841005460715385,5.099866427824199,5.351858133476067,5.638354669333745,6.03965929595765,5.936381184741166,6.073908216319056,6.374598834731133,6.48844476405192 +135401907,O=c1[nH]cnc2[nH]ncc12,0,31.714285714285715,7.182828571428573,4.0,13.142857142857142,171.7181375421069,126.15264699999996,1.514725401385428,7.190892857142858,7.1309523809523805,8.481049714285712,245.11192545153295,32.2,7.165526666666666,4.6,12.133333333333333,161.8962515408934,125.53554340000001,1.7088048813333336,7.2419400000000005,4.492592592592592,8.418291466666666,276.40414999200715,29.82608695652174,7.159165217391306,4.304347826086956,11.130434782608695,164.90113064551306,114.96990100000002,1.608526366956522,7.214317391304348,4.657004830917874,8.435690260869565,255.1858148732365,24.791666666666668,6.9563291666666665,3.375,8.666666666666666,165.77316007019166,93.28618816666666,1.3271053317020416,7.002754166666668,4.784722222222222,8.337019666666668,208.30185264478166,22.88888888888889,7.389544444444444,2.4444444444444446,8.0,178.91852470305275,84.07505172222221,1.054154851491611,7.344472222222224,6.402777777777777,8.767369111111112,163.84566891034424,5.555555555555555,6.155111111111112,1.6666666666666667,0.0,183.53657753284978,10.98328,0.7316635128553333,6.135555555555557,2.6666666666666665,7.806528,80.16878353676225,1.0,4.840000000000001,1.0,0.0,184.91765202424898,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,,,,,,,,,,,,,,,,,,,,,,,6.714285714285714,0.16789795918367337,0.037271902595604686,0.5510204081632653,4.142857142857143,1.8819076549778566,31.627029673469384,0.17257468523448977,0.1494515306122449,2.2278911564625843,0.10085183673469385,36.30302224052313,-0.13333333333333333,-0.03354272108843539,-0.018838418082666845,0.12517006802721084,0.3333333333333333,-0.37581443561806666,-0.4862979591836846,-0.001274154732794569,-0.02644486394557827,-0.19958427815570667,-0.021016636734693856,1.9113749923845498,-0.6086956521739131,-0.0072768411712511236,0.006097375310756699,-0.07897071872227154,-0.4782608695652174,0.15094966805021728,-2.875293387755109,0.003605981333646828,-0.007764574090505787,-0.11539978310164646,-0.001973228039041689,-1.0327064049297199,-0.8333333333333334,-0.03747593537414964,-0.013285667658653142,-0.217687074829932,-0.8333333333333334,-0.8403099648317497,-3.9602623698979595,-0.07286090558793622,-0.029683971088435384,-0.32263321995464844,-0.02639493197278912,-10.08169659308126,-1.2777777777777777,0.033032199546485196,0.01746545153748142,-0.09070294784580496,-0.6666666666666666,0.3416224075640557,-6.263748348072559,-0.015428412931862805,0.021246882086167818,-0.011621315192743861,0.02352203628117923,-10.015026824588398,-2.2222222222222223,-0.06692970521541933,-0.017322489244058884,0.16326530612244905,-1.0,0.26320219103111075,-10.227972657596347,0.030105489852653083,-0.06137613378684795,-0.5493197278911565,-0.035410249433106694,0.6291648788072517,16.0,0.2012163265306125,0.02090681012645281,0.7346938775510206,9.0,0.3207183423999992,75.94126532653065,0.24178785594336744,0.20572704081632667,1.4744897959183676,0.09172244897959135,78.76459195561482,,,,,,,,,,,,,,,,,,,,,,,,,,,0.44333333333333336,1.525,0.8,0.05,0.725,0.075,0.38419994538095315,0.0037203464661350162,0.020920346466135015,0.7472288323361603,0.31469641698878853,0.17300459278238595,1.1314287777171135,0.4877010097711745,2.0410410274862167,1.057216633883985,0.8065581533652182,0.17726624023701376,0.0,0.983824393602232,9.717036482,444.0,100.55960000000002,56.0,184.0,2404.0539255894964,1766.1370579999993,21.206155619395993,100.67250000000001,99.83333333333333,118.73469599999997,3431.5669563214615,483.0,107.48289999999999,69.0,182.0,2428.4437731134008,1883.033151,25.632073220000006,108.62910000000001,67.38888888888889,126.274372,4146.062249880108,686.0,164.66080000000002,99.0,256.0,3792.7260048468006,2644.3077230000004,36.996106440000005,165.9293,107.1111111111111,194.02087600000002,5869.27374208444,595.0,166.9519,81.0,208.0,3978.5558416845997,2238.868516,31.850527960848996,168.06610000000003,114.83333333333333,200.08847200000002,4999.24446347476,412.0,133.0118,44.0,144.0,3220.5334446549496,1513.350931,18.974787326849,132.20050000000003,115.24999999999999,157.812644,2949.2220403861966,50.0,55.39600000000001,15.0,0.0,1651.829197795648,98.84952000000001,6.584971615698,55.22000000000001,24.0,70.258752,721.5190518308602,2.0,9.680000000000001,2.0,0.0,369.83530404849796,2.032128,0.8892258096979999,9.680000000000001,2.0,13.436928,62.16748886186053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.0,2.350571428571427,0.5218066363384656,7.7142857142857135,58.0,26.346707169689992,442.77841542857135,2.4160455932828566,2.0923214285714287,31.19047619047618,1.4119257142857138,508.24231136732374,-2.0,-0.5031408163265308,-0.2825762712400027,1.8775510204081625,5.0,-5.6372165342709994,-7.294469387755269,-0.019112320991918536,-0.39667295918367407,-2.9937641723356,-0.31524955102040786,28.670624885768248,-14.0,-0.16736734693877584,0.1402396321474041,-1.8163265306122454,-11.0,3.4718423651549974,-66.13174791836751,0.08293757067387704,-0.1785852040816331,-2.6541950113378685,-0.04538424489795885,-23.752247313383556,-20.0,-0.8994224489795913,-0.3188560238076754,-5.224489795918368,-20.0,-20.167439155961993,-95.04629687755103,-1.748661734110469,-0.7124153061224492,-7.743197278911563,-0.6334783673469389,-241.96071823395022,-23.0,0.5945795918367335,0.31437812767466555,-1.6326530612244894,-12.0,6.149203336153002,-112.74747026530606,-0.2777114327735305,0.3824438775510207,-0.2091836734693895,0.4233966530612261,-180.27048284259118,-20.0,-0.6023673469387739,-0.15590240319652995,1.4693877551020416,-9.0,2.3688197192799967,-92.05175391836713,0.27094940867387773,-0.5523852040816315,-4.9438775510204085,-0.3186922448979603,5.662483909265266,32.0,0.402432653061225,0.04181362025290562,1.4693877551020411,18.0,0.6414366847999984,151.8825306530613,0.48357571188673487,0.41145408163265335,2.948979591836735,0.1834448979591827,157.52918391122964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6974691494688164,0.49573760198430306,0.44336455433743127,0.24955325358325797,0.2842016979776842,0.12426298821622943,0.18415769899544945,0.06265697091289764,0.12356635830649065,0.031084534064221667,0.08247320747765667,0.015702816132932118,0.05830606070054846,0.00786676209657846,0.03925021840489877,0.0039789746534248365,8.022237887802168,5.72534743716838,3.5456401961326893,2.215495700539019,0.4847459126267485,-0.37364318146333325,3.242081990305492,0.9778570562907603,6.0220951895216785,2.9662287684706428,14.69108112309331,10.99425876401104,16.01009057678507,11.74362371428783,1.962415312510813,0.7488761456250184,3.491517985649086,2.26261781932581,7.00827722680236,1.4193457125502658,3.7040985815607175,2.457349701582774,20.84481785658473,14.702694833576262,0.43203132339336475,0.8290255954693772,0.8962852850027025,0.8962852850027025,0.8962852850027025,0.8962852850027025,2.028565677264321,400.94019739120694,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.9721171767454868,0.28571428571428514,-1.3322676295501878e-15,-1.3322676295501878e-15,-1.3322676295501878e-15,-1.3322676295501878e-15,39.435341538322405,340.918667806464,48.768540282462254,24.35133341474743,50.85481523718725,,4.0,79.0,0.0,4.794537184071822,5.559266895052008,11.033401435232523,0.0,12.524163646377618,0.0,0.0,20.16532065849649,0.0,4.433333333333334,15.25,8.0,0.5,7.25,0.0,0.05666666666666664,0.75,0.31190476190476163,0.056845238095238004,-0.2550595238095236,0.10611111111111093,0.24069039145907462,0.0,0.7547619047619049,0.9366666666666665,0.4428571428571432,0.6979166666666669,0.8305555555555556,3.8419994538095312,0.03720346466135016,0.20920346466135015,7.472288323361603,3.146964169887885,1.7300459278238596,11.314287777171135,4.877010097711745,0.47330960854092535,0.07518796992481203,0.0,0.3383458646616541,0.0,0.4281617595172034,-0.5318127376523211,-0.10175525704423492,-0.037986624118022935,-0.10636254753046422,0.5718382404827966,0.7102709511198728,0.0759252695160285,0.0507336393657052,0.07891899456887476,-1.7394295044080725,0.6085106382978723,0.8559847656091732,1.4421580757889345,0.6740740740740743,0.4931034482758621,1.357733391733085,0.6066651775245201,0.9131052757744824,0.8054164035162586,0.5657591178965226,0.8596312499915686,0.7115014781574537,0.7666512488436633,0.7841266297081192,0.7907245766567134,1.135668276972625,0.8088455772113943,1.0305425892057387,0.7684269783041728,0.8852408045701988,0.7705846948506629,0.6631955968580598,0.7575528492780488,0.8265541443044189,1.0113031914893618,1.1366473704469027,1.2647140661691978,1.3692129629629632,1.1113505747126435,1.3630371273062114,1.0121358220350332,1.3632017332452113,1.1091717163096355,1.1715092239185756,1.2006657995631767,1.1924595424536983,1.2869385342789599,1.0723621746822793,0.5514172364382786,0.9362139917695476,1.2825670498084292,0.5920619136048834,1.2866233311800517,0.930112628890678,1.1260724683034145,1.5899915182357935,1.0989874686513925,1.1518114962724213,1.8670212765957446,1.5048066663965534,1.2103363307626223,0.5617283950617284,1.693486590038314,0.39572378578163764,1.8639691273393872,0.8315570489278796,1.5895422605331277,1.169338422391858,1.3426735657211155,1.3294551729826904,0.0,0.0,0.0046443896240950435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,1.5,0.0,1.333333333333334,0.5625,0.3333333333333333,0.0,0.0,0.0,0.0,0.0,1757.363385971116,1854.4486020563277,1054.0141811484668,1007.7548900925229,5.964439212200787,0.3754652541661703,3.724999527433146,0.6011919379519527,0.0,0.0,1.8352377453121174,3.521640636343319,3.8073549220576055,3.8073549220576055,3.8073549220576055,3.8073549220576055,0.13636363636363635,0.0,0.0888888888888889,0.046875,0.04761904761904761,0.0,0.0,0.0,0.0,0.0,0.3197465728715729,6.694214876033058,2.56,1.12,55.11114768353449,1.0,3.2613112742453896,21.388397798866002,,12.47275359732763,12.082705355164823,11.854752392253692,12.47640428044586,18.92148982961476,12.311017042588817,12.49594556194823,16.822165926022816,-0.019858156028368795,-0.19978039787690957,-0.5054321558805634,0.22716049382716044,0.08045977011494251,-0.19969865929605812,-0.015376023743121855,-0.007383207630153184,-0.1769460897271773,-0.0895843935538592,-0.20839121443054456,0.05265057492240919,-0.0906567992599445,-0.04334085540188468,0.16359173763980958,-0.14331723027375207,-0.11544227886056972,0.08021098572554211,-0.09091253328057787,0.020895192876910766,-0.05195379437532249,-0.051797765239517665,-0.019565613308883675,-0.028446843849186883,-0.12411347517730498,-0.22320661642559053,-0.35645262874828026,-0.3950617283950618,-0.20114942528735635,-0.4465202968960967,-0.12521765119220352,-0.4221992668793503,-0.1986193849392621,-0.14481552162849876,-0.2617198935327774,-0.27770956716181056,-0.19030732860520091,0.196739732317707,0.46859565305746015,-0.16460905349794233,-0.16091954022988503,0.18152984640900216,-0.19805047811135296,-0.08940136794048964,0.14216570415256097,-0.0052162849872773994,0.23323359338568656,-0.27587308732134036,-0.33096926713947994,-0.3986332266385741,-0.4647599944656877,0.29629629629629645,-0.2413793103448276,0.13985924885044784,-0.3233933999871057,0.17444904976501374,-0.410675846111537,-0.2465648854961833,-0.35111159677000986,0.01733092288126217,2.382978723404255,1.1984441473198029,0.5609268288042334,1.3333333333333337,2.1724137931034484,0.17042193412182752,2.4011507280506543,1.401062129215723,1.3765468976700528,0.6618320610687026,0.9094772286684402,2.169642831215692,,,,,,,,,,,,,,,,,,,,,,,,,0.25,3.1473451902649443,2.381101577952299,18.476494008749157,36.728736275782055,37.01673627578205,37.01673627578205,37.01673627578205,37.01673627578205,20.41041027486217,10.57216633883985,8.065581533652182,1.7726624023701376,0.0,9.83824393602232,532.2825042723126,328.63322649466096,203.6492777807236,0.0,15.0,20.0,25.0,24.0,20.0,16.0,14.0,3.0,136.038510748,11.0,3.970291913552122,4.812184355372417,5.673323267171493,6.529418838262226,7.394493107219038,8.253488028345904,9.118992332516877,9.978826909081944,10.8442172062873,0.8333333333333331,1.0594285714285716,1.1573513139081553,0.8094603756080738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6937199315654404,1.0406162464985995,1.0542087191759442,0.7021649268704023,2.0,2.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,5.386224214464796,5.647177220767728,0.0,5.559266895052008,9.893218992372859,4.9839785209472085,5.098681808301038,0.0,0.0,0.0,0.0,12.524163646377618,117.51892242024934,-145.9683366602766,-27.929089631727138,-10.42630976144833,-29.19366733205532,156.95426395857174,194.95033114618738,20.839450650735113,13.925023653299098,21.66114790513193,0.25,0.6500058115706598,0.25155921044502927,28.913571795097177,0.21039290946678013,44.23922690909938,0.34999418842934016,3.0,0.0,0.48202434048893505,0.9249572757036592,1.0000000000000004,1.0000000000000004,1.0000000000000004,1.0000000000000004,-0.35380000000000006,,0.8214285714285716,1.0283852954862724,1.0741325277088927,0.8192662930274439,-3.1550215370664243,0.9034577723378214,0.8095467726672786,-1.6762929910317408,34.5094,0.0,0.0,20.16532065849649,0.0,0.0,0.0,22.877967725501446,0.0,0.0,3.1354942159291497,0.0,4.418840607796598,2.3978952727983707,5.916202062607435,4.59511985013459,7.51479976048867,6.6052979209482015,9.161465204194046,11.666666666666664,2.7817592592592595,7.483055555555556,5.012962962962963,0.0,0.0,1.0057870370370374,0.0,0.0,14.832000000000003,0.0,10.88425925925926,0.0,0.0,0.0,0.0,0.0,0.0,16.202918394714175,5.559266895052008,0.0,0.0,20.16532065849649,0.0,0.0,0.0,17.31870083044944,0.0,11.033401435232523,0.0,11.332445258513033,9.712079041916166,13.098357873904222,42.776795592772274,,24.78117445163802,23.959661796217404,23.494586696735652,24.78890846044049,38.8653976083629,24.441286513940582,24.829935903924426,34.110719875603024,13.098357873904222,42.776795592772274,,24.144984874829554,23.2202795940688,22.81963484552078,24.15412186031292,40.998001147700414,23.760267845593553,24.20094078002917,35.320624398072425,4.6339495308183185,29.973270033387482,,17.72345961723759,17.21638042641406,16.920035080442734,17.728192490871447,26.186384063366418,17.512777353842246,17.75368391774833,23.427948149640553,1.3098357873904223,4.277679559277227,,2.478117445163802,2.39596617962174,2.3494586696735653,2.478890846044049,3.88653976083629,2.4441286513940583,2.4829935903924425,3.4110719875603026,2.36983750562897,21.388397796386137,,12.472730082961867,12.08266942765733,11.854706601138716,12.476380859522989,18.921489805316984,12.310989034204074,12.495922629228941,16.822165703520348,14.568627450980394,0.0,0.0,0.0,0.0,0.0,0.0,14.758922068463217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.830308976185632,178.40916626655059,25.693328434369644,49.30296890880646,53.30296890880648,53.30296890880648,53.30296890880648,53.30296890880648,158.0,87.57523595780931,96.06402011227051,53.745114894897064,74.43,74.43,0.3333333333333333,7.3364663236680645,4.459431618637297,3.0260813453488606,3.136067250179339,,3.1436490464915705,3.1443711819720015,3.1436449435048632,3.1436394155298157,3.122214028525052,3.143924389577561,3.143606174411019,3.12920448099161,0.30260813453488605,0.3136067250179339,,0.31436490464915706,0.31443711819720016,0.3143644943504863,0.3143639415529816,0.3122214028525052,0.3143924389577561,0.3143606174411019,0.31292044809916103,1.1072684971426057,1.1429695468307233,,1.1453842419022873,1.1456139280220414,1.145382936734527,1.145381178272612,1.1385423746842176,1.1454718251612237,1.1453706041290315,1.1407788128204803,88.18000000000002,35.990740492855934,36.80138572556125,,36.36015173045279,36.31173291756425,36.344305344400624,36.36077360475549,37.416312335395546,36.34233738604724,36.36284371782742,37.06355782977843,3.5990740492855933,3.6801385725561255,,3.636015173045279,3.631173291756425,3.6344305344400625,3.6360773604755487,3.7416312335395547,3.634233738604724,3.6362843717827418,3.7063557829778433,3.583261696840543,3.605535500051835,,3.5934734423053234,3.5921409099157313,3.593037529929641,3.5934905453413433,3.6221067680313443,3.592983380823837,3.593547476312291,3.612634218132178,0.0,17.14638888888889,6.7223148148148155,0.34953703703703787,0.0,0.0,2.7817592592592595,0.0,0.0,90.75490072294738,32.25579309649132,-40.06439447356261,-7.665786223879842,-2.8617424623973293,-8.01287889471252,43.079736944451746,53.50863857530038,5.7198704224914625,3.8220456125214555,5.945404286144486,105.0,12.0,0.5384516905501369,0.17910151939418084,0.0,0.0,0.1642664266089148,0.030868821883917312,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.032274861218395144,0.21941609682128765,0.046708617948135786,0.38745841831670863,0.0541807491310186,6.974691494688164,4.95737601984303,4.877010097711744,2.7450857894158376,4.263025469665263,1.8639448232434415,3.683153979908989,1.2531394182579527,3.0891589576622662,0.7771133516055416,1.9793569794637602,0.37686758719037083,1.1661212140109691,0.1573352419315692,0.6280034944783803,0.06366359445479738,1.4401774752272036,0.36812294404334106,2.343625285575563,0.4225068396042499,2.9440020945767458,0.3778083458163122,34.615306676812175,19.553161730875907,19.03677461028802,19.03677461028802,19.03677461028802,19.03677461028802,52.0,61.0,16.219172,7.160827999999999,0.6428571428571429,31.05,2.8333333333333335,2.2222222222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,14.0,0.0,0.0,15.0,10.0,1.0,4.0,11.0,11.0,11.0,4.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3.0,2.0,2.0,10.0,5.0,0.0,4.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,2.0,2.8903717578961645,0.0,3.590439381300684,4.2749284991175145,4.90016917440273,5.264631308893231,5.512609358138929,5.674905991665257,5.954368918113037,5.04196235405471 +62280,C/C=C/C[C@@H](C)[C@@H](O)[C@H]1C(=O)N[C@@H](CC)C(=O)N(C)CC(=O)N(C)[C@@H](CC(C)C)C(=O)N[C@@H](C(C)C)C(=O)N(C)[C@@H](CC(C)C)C(=O)N[C@@H](C)C(=O)N[C@H](C)C(=O)N(C)[C@@H](CC(C)C)C(=O)N(C)[C@@H](CC(C)C)C(=O)N(C)[C@@H](C(C)C)C(=O)N1C,1,18.622448979591837,5.997009693877551,2.6683673469387754,5.448979591836735,168.04166108577363,72.8925059030612,1.241287145093056,6.041101020408163,4.700538548752834,7.580102469387755,178.47698351684954,20.663265306122447,6.225974489795919,3.2857142857142856,4.872448979591836,149.85664247703446,75.96146922959186,1.5998011941122445,6.352867346938779,2.813775510204082,7.671407448979588,225.3508082663922,16.457765667574932,6.071490463215261,3.0408719346049047,3.67574931880109,161.66344658309382,59.663661332425086,1.2946683558557792,6.148659673024525,2.5332273690584315,7.601345231607629,176.91535364835187,15.88560157790927,6.149068836291914,2.710059171597633,3.366863905325444,161.1799809758387,56.48201672978303,1.2463892538165953,6.219966074950691,2.9511834319526633,7.686075203155819,169.1104249490581,14.425149700598803,6.144770958083833,2.465568862275449,2.839820359281437,166.05740618396717,50.904109907185614,1.1028538825435956,6.194220359281437,3.1216317365269455,7.734419209580839,151.14545056212953,15.506311360448807,6.351032258064515,2.539971949509116,3.064516129032258,166.6067107714012,54.47745203225806,1.1581013664044462,6.391512342215989,3.8250350631136056,7.904734008415149,160.16417083959126,13.6890756302521,6.108328811524611,2.355342136854742,2.348139255702281,162.9067209279704,46.82622056302521,1.1676511712326565,6.169617406962784,2.9781245831666006,7.6830277406962795,154.13748290040772,12.094955489614243,5.944723046488624,2.181998021760633,2.0187932739861525,166.35749485994455,41.406460738872404,1.04904609853015,5.9956703264094955,2.783190460490164,7.5721255509396626,136.77069515044425,12.769911504424778,6.065060963618485,2.1976401179941,2.2094395280235988,166.3366946874267,43.51270361160274,1.0910330134583077,6.112857227138642,3.2187534141811422,7.66261870993117,142.57471386564464,7.420449812578094,0.12454767544773004,0.017335217389602926,0.612947730112453,3.6347355268638073,1.308020190314855,35.24332474872448,0.20755821832325894,0.11783778633902531,1.9875710062936738,0.07513040264473134,47.527115639726766,0.17180341524364814,0.0002770251978343281,-0.01056969684994145,0.2940181174510621,1.553206997084548,-0.4426759978411521,0.7637230415451872,-0.028576636895043563,0.001830815285297823,-0.09527641839048544,-0.0017655799666805112,-3.4070188325208663,1.1669660802095403,0.020047607597368074,-0.0013542615972123083,-0.0016481694162400443,0.6490880843245379,0.03478856531109243,5.500240455329337,0.015923029149270112,0.01949521427266342,0.1126308819093821,0.010873103110704338,5.2965134259851565,0.18006139782322766,0.017033576816489242,0.005735024013500322,0.009189290376215704,0.3379730832074407,-0.014859484680897815,0.7282284444888889,-0.02117138726000121,0.014722669322529186,-0.0270919757596984,0.009187120762264609,-3.274849220445273,0.510076889120551,-0.010288153420356215,-0.004170758973980515,-0.0247007546755718,-0.11466342616724066,-0.1299142232735531,2.4957403557909674,0.005053575464364153,-0.006543992803647166,-0.1484989378455363,-0.009041784534013962,3.419888503162475,-0.3488495034502339,-0.0013718697116908204,-0.00027486476014480343,-0.047458420784233755,-0.3597548473549765,0.1405718090085113,-1.637227818714759,0.012767446199589444,-0.002483771970304515,0.24025614607264872,0.0023666580359224805,0.5478014138147849,-1.0085258593233213,-0.007177579654310633,0.003375428998060898,-0.01934089962515619,-0.3376534287184261,-0.0063719591658974615,-4.822987191272938,-0.0229483825288268,-0.008622524315848751,-0.20659892358303877,-0.0035518368020677196,-6.512897414972612,0.2126776223721488,-0.009197846020410199,-0.00259198832699936,-0.02956897801814361,-0.15848449232536227,-0.07894383016572405,1.0754717342434739,0.005107440119320936,-0.006807169047598445,-0.133771895155648,-0.007324983782824565,2.0917300968364887,-0.4604132905946679,0.00010472657502594964,-0.00025927909270386965,-0.029634463802979506,-0.1681170210544033,0.0443366773578284,-2.2055864851140314,-0.001446420057128872,-0.0012805642171382805,0.17979661266475827,0.0026671255394036873,-1.9310737320372695,,,0.4635294117647058,0.8264705882352941,0.20588235294117646,0.0,0.6205882352941177,-0.4147058823529412,2.2560561334626614,0.037707353391476184,0.03871911809735854,1.3270505606876895,0.14630737160636526,0.31497602279478315,3.583106694150351,0.4612833944011484,1.9273466526145495,1.4105746422624423,0.26774986200832357,0.2490221483437844,0.0,0.516772010352108,6.131843714244913,3650.0,1175.4139,523.0,1068.0,32936.16557281163,14286.931156999995,243.292280438239,1184.0558,921.3055555555554,1485.7000839999998,34981.48876930251,4050.0,1220.2910000000002,644.0,955.0,29371.90192549875,14888.447969000004,313.5610340459999,1245.1620000000007,551.5,1503.5958599999992,44168.75842021287,6040.0,2228.2370000000005,1116.0,1349.0,59330.48489599543,21896.563709000005,475.14328659907096,2256.5581000000006,929.6944444444443,2789.6937,64927.93478894514,8054.0,3117.5779,1374.0,1707.0,81718.25035475023,28636.382481999994,631.9193516850138,3153.5228000000006,1496.2500000000002,3896.8401280000003,85738.98544917247,9636.0,4104.707,1647.0,1897.0,110926.34733089007,34003.94541799999,736.7063935391219,4137.7392,2085.2499999999995,5166.5920320000005,100965.16097550253,11056.0,4528.285999999999,1811.0,2185.0,118790.58478000906,38842.423298999995,825.72627424637,4557.148300000001,2727.250000000001,5636.075348000001,114197.05380862857,11403.0,5088.237900000001,1962.0,1956.0,135701.29853299935,39006.241729,972.6534256368029,5139.291299999999,2480.7777777777783,6399.962108000001,128396.52325603963,12228.0,6010.114999999999,2206.0,2041.0,168187.42730340394,41861.931807,1060.5856056139817,6061.6227,2813.8055555555557,7655.418931999999,138275.17279709913,12987.0,6168.1669999999995,2235.0,2247.0,169164.41849711296,44252.419572999985,1109.580574687099,6216.775799999999,3273.4722222222217,7792.883228,144998.4840013606,1454.4081632653065,24.41134438775509,3.3977026083621733,120.13775510204079,712.4081632653063,256.3719573017116,6907.691650749999,40.68141079135875,23.09620612244896,389.56391723356006,14.72555891836734,9315.314665386446,33.673469387755034,0.05429693877552831,-2.071660582588524,57.62755102040817,304.4285714285714,-86.76449557686581,149.6897161428567,-5.601020831428539,0.35883979591837334,-18.674178004535147,-0.3460536734693802,-667.7756911740898,428.2765514369013,7.357471988234082,-0.49701400617691716,-0.6048781757600963,238.2153269471054,12.767403469170922,2018.5882471058665,5.843751697782131,7.154743638067475,41.33553366074323,3.9904288416284923,1943.8204273365525,91.29112869637643,8.636023445960046,2.9076571748446636,4.658970220741362,171.35235318617242,-7.533758733215192,369.2118213558667,-10.733893340820615,7.464393346522297,-13.735631710167088,4.657870226468157,-1660.3485547657533,340.7313619325281,-6.872486484797951,-2.7860669946189844,-16.50010412328196,-76.59516867971676,-86.78270114673346,1667.1545576683661,3.3757884101952547,-4.371387192836307,-99.19729048081825,-6.039912068721327,2284.4855201125333,-248.72969596001678,-0.9781431044355549,-0.19597857398324484,-33.83785401915867,-256.50520616409824,100.22769982306855,-1167.3434347436232,9.103189140307274,-1.7709294148271193,171.30263214979854,1.6874271796127287,390.5824080499416,-840.1020408163266,-5.978923852040758,2.811732355384728,-16.110969387755105,-281.2653061224489,-5.307841985192585,-4017.5483303303577,-19.116002646512726,-7.182562755102009,-172.0969033446713,-2.9586800561224105,-5425.243546672186,215.01707621824244,-9.299022326634711,-2.620500198596353,-29.89423677634319,-160.22782174094127,-79.81221229754702,1087.3019233201521,5.163621960633467,-6.882047907122028,-135.24338600236013,-7.405558604435635,2114.73912790169,-468.24031653477726,0.10650692680139079,-0.26368683727983544,-30.138249687630157,-170.97501041232815,45.09040087291148,-2243.08145536097,-1.4710091981000628,-1.3023338088296312,182.85315508005917,2.71246667357355,-1963.901985481903,0.7761999746617833,0.6595905036611821,0.4612833944011485,0.3595510890524485,0.305234251807047,0.21564133891968862,0.1894248736878252,0.10717710414802452,0.11924095944646611,0.06000729781601987,0.07848681330482002,0.03608564020050652,0.043238532331967255,0.017857274698321164,0.026605268477789122,0.010104318364117564,8.035665076661008,5.749614622107418,3.5621493160595703,2.249527843551231,0.44937628007819796,-0.4114283993700147,3.2392245175126173,0.9772157230330208,6.034705834508104,0.9871316710537227,14.555389218621492,11.009944428236938,16.02213678101378,11.760662509195853,1.9454112823273786,0.7508343178060248,3.508669272696019,2.299503824149758,7.019264329076029,1.1701788895394,3.721017965824881,2.495501216632851,20.84322714193418,14.701777611166564,0.1908647293890825,0.3523165677485173,0.5595299550244772,0.6674147021866551,0.7520652003206917,0.8044207779485668,4.270876470865956,2325.0756756660257,0.0,11.0,18.0,0.0,2.0,17.0,0.0,7.0,0.0,6.144967501135266,4.901717352465379,3.306083154955025,2.475323162925781,1.8234771049340175,1.4203161355021088,,,,,,,24.0,3288.0,155.79982624649122,48.2573620514871,55.77573229927562,6.4208216229260096,9.799819461700956,87.68072693237397,54.54218050466824,61.46591770435886,21.267154416025324,0.0,39.39999999999999,70.25,17.5,0.0,52.75,0.0,0.03647058823529422,-35.25,0.10952380952380986,0.0024531024531024848,-0.10707070707070737,0.03111111111111131,0.17501231190150557,0.0,0.5428571428571417,0.8600000000000011,0.43333333333333185,0.5404040404040392,0.8288888888888898,191.76477134432622,3.205125038275476,3.2911250382754758,112.79929765845361,12.436126586541047,26.77296193755657,304.56406900277983,39.209088524097616,0.5389876880984944,0.4060913705583758,0.0,0.4390862944162437,0.7903225806451613,,,,,,,,,,,-8.34568843869788,0.9987230937614007,0.7270730392892982,1.780829215911047,1.0351637151229458,0.48250042970092805,1.863732291665744,1.0110741212171237,1.5396553370506352,0.7282707819050768,0.5984582883282408,0.7028320765571802,1.3607532737266568,0.8506648461598869,0.6972535468510889,1.322258690475792,1.585543620857306,0.8722478065348259,1.2232570564763814,0.8569024164051372,1.052928694534307,0.6999983656967492,0.5360406452277234,0.6442453778730051,0.9865217081448109,1.0186538407569472,0.8947660546974474,1.0298096775770818,1.3414088353571092,1.0303622268644612,1.2283491604643109,1.0239509614955147,1.2313919325560236,0.8994359325584766,0.9689911145766017,0.8999571161901173,1.1595535718971166,1.0092768221310022,1.363658331549347,1.6450577783476716,1.3072568075722681,1.2942260674594432,1.16251467453604,1.0026038546547502,0.9754907195865001,1.3102028871183768,1.4130383376085895,1.4405082536608056,0.9212361348617459,1.1769654915513372,1.4537773636752014,1.6163113318708098,1.3943495540029132,1.469754659452673,1.0241571472840172,1.169348702579147,0.9299719551631598,1.4215332171648933,1.3315789148554906,1.4504532322717683,0.9744390800551005,1.1876837564650082,1.1865021723173386,1.0668524356424918,1.2256338387055676,1.2205654864214506,1.1418097155485911,1.1877296983715997,1.1929446590900796,1.1877693262968512,1.2745343782554082,1.199027121733721,1.1904521005767519,0.9940260382779572,1.1796223287231549,1.2328732419820536,1.155140315996582,1.1335939760605152,1.0587137691660478,0.9902309905078683,0.9727704683860745,1.1538800182397204,1.2431886342625051,1.230398159683614,0.94947340875462,1.1081964143310525,1.1522826734668032,1.2302756946131368,1.1331632849282922,1.1485722014174298,1.0300578289993267,1.1064334549483126,1.0094786094791146,1.1485966796049676,1.0378766171029723,1.127302319571596,1.0388977818521385,22.5,1.8347107438016528,13.33333333333334,9.625,7.92,4.833333333333333,4.20408163265306,3.625,2.4197530864197523,2.04,,,,,,,,,0.0,0.7903225806451613,1.469742342979942,2.712992491649829,4.308626689160183,5.1393866811894275,5.791232739181191,6.1943937086131,0.2647058823529411,0.008573414690661928,0.11019283746556478,0.06416666666666668,0.04449438202247192,0.02428810720268007,0.021340515901792187,0.01686046511627907,0.010949108988324675,0.009807692307692309,0.5753790727150748,83.01176470588236,39.52434942968377,25.102933333333333,508.39454709884245,0.0,5.311883078403126,888.4814088758878,,805.0593228974842,784.4841349732097,767.2261169658519,805.2362149493542,1134.311183818171,796.3277897621612,806.2987640330668,1031.3911948174602,0.023152695535037692,0.002224250246650244,-0.6097239286010221,0.4796789399923559,0.42732324968488583,-0.3384320831734219,0.021670005511407592,-0.13768010308576287,0.015536742009311634,-0.04793610798748383,-0.023500206368244802,-0.07168579003083919,0.15726352305913652,0.16096332207967717,-0.07812198524978109,-0.0026889232723607067,0.1785791784649038,0.026596351928419727,0.15606474402016796,0.07671596565967333,0.16544111085534732,0.0566676015864262,0.1447230778479907,0.11144192856420533,0.024265563728766565,0.13676350646654875,0.3308308101714372,0.014991964118261458,0.09298422972167582,-0.011360286936641989,0.02066287586886208,-0.10200216320525599,0.12494013830310184,-0.01363069579597974,0.12228233097202594,-0.06890485939163339,0.06873934896182991,-0.08260413840219707,-0.24059455847851063,-0.04029830516060502,-0.031546566543777334,-0.09932126754272906,0.07081455491458116,0.024347749297469523,-0.055533908154212656,-0.07471377745766675,-0.12034787803240976,0.07195657588578493,-0.04701190793837237,-0.011014815866768739,-0.015855858854683758,-0.07742653810876649,-0.09897689796027254,0.10746914309837534,-0.04645497637886769,0.0615126025976237,-0.02107789061106916,0.12087927692237106,0.031500670202896174,0.011526081615541821,-0.13591168794293457,-0.05762917395694717,0.19471512368142357,-0.031553913449696366,-0.09289628536185869,-0.004871453218442798,-0.13684824645970697,-0.11056359374354491,-0.07317283007202213,-0.10394543034127593,-0.04727562580575094,-0.13703540236573158,0.028661014863498955,-0.0738500015142421,-0.14952153576994923,-0.048240619167834765,-0.04360275765706368,-0.06035367859782149,0.03051561513879013,0.024607265183623897,-0.057767285512423605,-0.06730420937519076,-0.0974969323332682,0.044011298995979095,-0.06204654734194692,0.0008408553162431449,-0.014956783458589706,-0.04834745663801168,-0.04625288960142342,0.03389601910285197,-0.06258168038456291,-0.006968743848418294,-0.010867178151616258,0.09046047265502946,0.035499950027097646,-0.04063098940561695,3.8615677132849973,30.448930705137688,0.0,13.990977183768173,26.473378180077074,32.1131250169673,37.85511251337487,41.95432562001829,43.38268140366639,163.8244654722367,119.8988445923076,22.758738270707504,21.166882609221673,0.0,43.92562087992918,,,,214.0,121.0,150.0,178.0,199.0,197.0,215.0,221.0,208.0,1201.841367992003,85.0,6.023447592961033,6.86171134048073,7.745435610274381,8.608312784783722,9.49243184611472,10.365616507761834,11.250326172885911,12.128646096061852,13.013938170373658,0.5578231292517006,0.9693265306122449,1.1467312707077983,0.5108561199852516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.608817130025663,0.9544217687074833,0.9976403525722015,0.5560542428043882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,2.0,0.0,11.0,0.0,24.0,0.0,0.0,0.0,1.0,7.0,4.0,0.0,0.0,18.0,7.0,0.0,0.0,0.0,60.67304992681939,60.418408291479594,0.0,64.97897702286656,0.0,52.73990902479004,0.0,0.0,0.0,109.08436100933646,100.72148365975767,49.33370387874032,12.648722793660877,,,,,,,,,,,0.2916666666666667,,0.04529711297168256,,0.028521386072766282,,,17.0,0.17647058823529413,0.1930135715040786,0.3562831082456124,0.5658293982783824,0.6749287610953741,0.7605322931190562,0.8134773137022737,3.2690000000000046,,4.571428571428572,5.470916705444392,4.55535567057374,4.558688912488387,-18.687531172069825,4.877677478580172,4.524830526860193,-8.300504647374025,328.4446000000004,57.84643641963074,0.0,55.56652253197868,41.42534232312975,222.75083681152464,55.878460284652895,12.152040213667762,0.0,0.0,5.14166355650266,0.0,6.484635235635252,0.0,7.991253929840199,0.0,9.576579433583511,0.0,11.208585415622304,109.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.988,0.0,160.09941574630366,0.0,0.0,0.0,3.5917012904588663,0.0,-7.418642319769936,224.75932905872847,21.267154416025324,0.0,0.0,226.78570749754144,52.73990902479004,41.42534232312975,156.22846213229667,12.152040213667762,0.0,0.0,0.0,100.12779951710932,119.32815748502995,100.13473285422863,1776.9628177517757,,1610.011082769758,1568.8395424945268,1534.345049092396,1610.3651666301794,2269.062074252155,1592.5408106424734,1612.4910614655016,2062.9776956266237,100.13473285422863,1776.9628177517757,,1605.5472172235395,1563.497353240975,1529.89687826113,1605.9137409862199,2287.309898808412,1587.7779020457424,1608.0726975392733,2071.0828942822945,4.889758745648298,1207.2647171137066,,1094.104128480802,1064.6851824912985,1039.292700564191,1094.3548962070258,1560.6081797605343,1081.5875358773815,1095.879488662829,1416.2574180238946,1.1780556806379838,20.905444914726772,,18.9413068561148,18.456935794053255,18.051118224616424,18.945472548590345,26.694847932378295,18.735774242852628,18.970483076064724,24.270325830901456,2.4449349414870776,888.4814088758878,,805.0593228974842,784.4841349732097,767.2261169658519,805.2362149493542,1134.311183818171,796.3277897621612,806.2987640330668,1031.3911948174602,187.06666666666672,0.0,39.780362286016874,0.0,0.0,0.0,12.088776849243418,195.5375091041515,0.4177915006230257,10.974857302910499,0.0,0.0,-16.119155213481314,8.41822589102824,0.0,0.0,0.0,108.98663158966009,,288.06949922406864,531.7465283633666,844.4908310753959,1007.3197895131278,1135.0816168795134,1214.1011668881674,1873.0,255.48986612169782,,125.40271757118393,278.8,278.8,0.4117647058823529,7.786136437783072,7.409390936137702,6.191314195953798,9.169515290541339,,9.160693627050815,9.15755963825146,9.155147124499006,9.160720671460496,9.188723156820307,9.159414322582956,9.160872401702624,9.18321281281907,0.07283899054063292,0.10787665047695694,,0.10777286620059782,0.10773599574413482,0.10770761322940008,0.10777318437012348,0.10810262537435655,0.10775781555979948,0.10777496943179558,0.10803779779787141,3.9632135371823365,4.355950590193266,,4.354988062792595,4.354645891649469,4.354382411892198,4.354991015011157,4.358043151888988,4.354848401555505,4.355007578007783,4.357443286510012,1002.2000000000037,3569.973842173507,817.3683911922144,,817.1357401335383,818.0693594137365,819.334826674721,817.1292161228456,809.8201485595245,817.5421394453177,817.0797908380199,810.6954620583745,41.99969226086479,9.616098719908404,,9.613361648629862,9.624345404867489,9.639233254996716,9.61328489556289,9.52729586540617,9.618142817003738,9.612703421623763,9.537593671274994,10.320379711120845,8.846156063940178,,8.845871389150084,8.847013287963762,8.848558987582328,8.845863405119504,8.836878347693085,8.846368611661294,8.845802916791964,8.837958637914594,0.0,168.5176416373319,23.063634152153917,0.0,-9.707807854954714,-12.327153438745825,3.042918338283876,29.328545063880714,9.915555435383464,1263.3606664990562,,,,,,,,,,,37337.0,150.0,7.9921340448987985,5.158908797313279,0.0,0.0,2.6875617660624607,0.9108499791752287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.97699784625158,56.065192811200475,39.20908852409762,30.561842569458122,36.933344468652685,26.092602009282324,28.41373105317378,16.076565622203677,21.224890781470968,10.681299011251538,15.618875847659185,7.1810423999007975,8.517990869397549,3.517883115569269,5.720132722724661,2.172428448285276,17.692785912312416,8.126833644910505,26.27508951511552,10.175156556907698,41.99774362638045,13.98600340497712,288.605693053693,160.61426133648405,118.38833417983791,79.84893868851505,56.7129286882317,47.8019197243099,412.0,477.0,199.27802300000144,135.1539770000003,0.1683673469387755,85.23,43.25000000000001,19.16666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,196.0,0.0,0.0,196.0,0.0,12.0,12.0,184.0,12.0,85.0,184.0,0.0,0.0,0.0,62.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,111.0,12.0,5.0,1.0,85.0,23.0,0.0,11.0,12.0,0.0,1.0,15.0,0.0,0.0,0.0,0.0,0.0,4.584967478670572,5.631211781821365,4.983606621708336,5.2574953720277815,5.44673737166631,5.634789603169249,5.529429087511423,5.616771097666572,5.733341276897746,5.5909869805108565 +55245,CC#C[C@]1(O)CC[C@H]2[C@@H]3CCC4=CC(=O)CCC4=C3[C@@H](c3ccc(N(C)C)cc3)C[C@@]21C,0,18.746268656716417,5.739923880597015,3.2686567164179103,5.223880597014926,160.16860868468237,73.54259402985078,1.476656114473358,5.834049253731343,3.1847014925373136,7.324272716417908,209.6420437755749,21.830985915492956,6.041901408450705,4.084507042253521,5.338028169014085,142.53010666541908,81.53518230985915,1.8738148524788734,6.206838028169014,2.557805164319249,7.487416788732393,263.106657591551,18.31851851851852,5.8876592592592605,3.859259259259259,4.022222222222222,150.18412215066766,67.58548394074073,1.6296790498676372,6.022329629629629,2.30761316872428,7.399053214814815,223.82342174785038,16.11917098445596,5.85620725388601,3.393782383419689,3.010362694300518,150.35198445853666,57.519865642487034,1.5236262514602537,5.9839585492227965,2.3842832469775477,7.392808352331604,203.0491945481208,13.03265306122449,5.738542857142856,2.873469387755102,2.183673469387755,153.99296675832866,44.501885342857136,1.3639964121596369,5.8497775510204075,2.1910430839002273,7.320828783673469,173.85466185251212,11.4,5.580672727272729,2.6036363636363635,1.9854545454545454,157.9449574506103,38.815610574545445,1.2423611322729855,5.679174545454547,1.9892929292929293,7.204943156363637,154.6738375352495,11.509578544061302,5.586107279693486,2.5440613026819925,2.0689655172413794,157.82033685113598,39.22105287739463,1.2413870090343948,5.685434865900383,2.0328863346104726,7.205605593869731,154.6041136551032,11.166666666666666,5.606638211382115,2.386178861788618,2.032520325203252,159.70684570706499,37.89386111788616,1.1868689556897356,5.696611788617887,2.151930894308943,7.236401642276423,147.53710011797287,10.74056603773585,5.637471698113209,2.2641509433962264,1.9386792452830188,161.24201248801413,35.99184198113207,1.125690199537896,5.718714622641509,2.246462264150943,7.2734860754716975,138.85331261597216,6.756070394297172,0.06770625974604584,0.00834356287974188,0.7182000445533526,3.084428603252394,1.3843837904956278,32.428850029850736,0.24118222434637554,0.0690332368010692,0.9570338605480061,0.0378185537981733,53.59345691410506,0.3648041064385876,0.000131284924965416,-0.0029009682947807778,0.3593698524405511,1.2147095090032285,0.010749146176377813,1.7773980281690118,0.014041670398577141,0.0007858718808732532,-0.04950723312175722,-0.0006613505187955905,3.1220233443925176,0.8630561949786728,0.0016810592147060003,-0.0002645016661431562,0.00982648944333065,0.12673778701847307,0.2543013812222123,4.179638251851849,0.03542620809765229,0.0031957405344752872,0.06688205370787484,4.016770541981177e-05,8.180185668843018,-0.5788992551741329,-0.004397845856942098,0.00029854886769084473,-0.10455840817565563,-0.5569365299401992,-0.09316305290708618,-2.7835989999999997,-0.0193865960815853,-0.004823848509367096,-0.03192817137727958,-0.002060003647372929,-4.508885352249989,-1.2370329285646093,-0.009552144607453098,-0.0007619143317317174,-0.045035256249971574,-0.49478498461090836,-0.14533604137530537,-5.9197010571428565,-0.031221595707437596,-0.010869234364273622,-0.10408347641425326,-0.004008839999818154,-8.400864546739985,0.03280341845723881,-0.0003238119848519012,0.00013327658152482316,-0.014427995706676923,0.018746430668907847,0.0030658417112429392,0.16360824727272716,0.0018921183514356513,-0.00023656922983457144,-0.023202260970137997,-0.0003264806367078973,0.3736269084381692,0.017189741803932793,0.0015542880894890382,0.00028822237647966844,-0.02694368268453581,0.10056596414052567,-0.058131370046174344,0.05510742145593908,-0.007922875636189786,0.0016070331137245399,0.004535209809020891,0.0006405097347368634,-1.057142423332082,0.1708195462440255,0.0013946928082557409,-0.00011130790881027759,-0.003723646058024413,0.12282779766982342,-0.03592385207648021,0.8013794593495934,-0.0023950983097862765,0.0018119822257478288,-0.007005041229962308,0.0002133721816835095,0.28671970237963107,0.04363391434828106,0.00149681685209546,-1.6389213573612505e-05,-0.029168785753014716,-0.0063520051110260755,-0.15529253234171203,0.1690263207547171,-0.014836879262055116,0.0018665660713610035,-0.028122990370591436,3.908348709844357e-05,-1.9391015254290997,,,0.4864583333333334,0.9765625,0.375,0.015625,0.6015625,-0.2265625,1.3735542820500688,0.020106495260729496,0.033543995260729494,0.709393527716127,0.1594553265207757,0.31775735204265404,2.0829478097661958,0.47721267856342975,2.0651210995026164,1.8909567441766768,0.06307663894000007,0.11108771638593888,0.0,0.17416435532593894,6.406966856119418,1256.0,384.5749,219.0,350.0,10731.296781873718,4927.353800000002,98.93595966971499,390.88129999999995,213.375,490.7262719999998,14046.01693296352,1550.0,428.975,290.0,379.0,10119.637573244754,5788.997944,133.040854526,440.6855,181.60416666666669,531.6065919999999,18680.572689000124,2473.0,794.8340000000002,521.0,543.0,20274.856490340135,9124.040331999999,220.00667173213103,813.0145,311.52777777777777,998.8721840000001,30216.1619359598,3111.0,1130.248,655.0,581.0,29017.933000497578,11101.334068999997,294.05986653182896,1154.9039999999998,460.16666666666674,1426.8120119999996,39188.49454778731,3193.0,1405.9429999999998,704.0,535.0,37728.27685579052,10902.961908999998,334.179120979111,1433.1954999999998,536.8055555555557,1793.603052,42594.39215386547,3135.0,1534.6850000000004,716.0,546.0,43434.86329891784,10674.292907999998,341.649311375071,1561.7730000000004,547.0555555555555,1981.3593680000001,42535.30532219361,3004.0,1457.974,664.0,540.0,41191.10791814649,10236.694800999998,324.00200935797704,1483.8985,530.5833333333334,1880.6630599999999,40351.673663981936,2747.0,1379.2330000000002,587.0,500.0,39287.884043937986,9321.889834999996,291.96976309967494,1401.3665000000003,529.375,1780.154804,36294.126629021324,2277.0,1195.1440000000002,480.0,411.0,34183.306647458994,7630.270499999999,238.64632230203398,1212.3675,476.24999999999994,1541.979048,29436.902274586097,452.6567164179105,4.536319402985072,0.559018712942706,48.11940298507463,206.65671641791042,92.75371396320706,2172.7329519999994,16.159209031207162,4.625226865671636,64.12126865671641,2.533843104477611,3590.761613245039,25.901091557139722,0.009321229672544536,-0.20596874892943523,25.515259523279127,86.24437513922922,0.7631893785228246,126.19525999999983,0.996958598298977,0.055796903542000974,-3.5150135516447625,-0.046955886834486926,221.66365745186874,116.51258632212082,0.22694299398531004,-0.035707724929326085,1.3265760748496378,17.109601247493867,34.33068646499866,564.2511639999997,4.782538093183059,0.43142497215416376,9.029077250563104,0.005422640231674589,1104.3250652938075,-111.72755624860764,-0.8487842503898249,0.05761993146433303,-20.179772777901537,-107.48875027845844,-17.980469211067632,-537.234607,-3.741613043745963,-0.9310027623078494,-6.162137075814959,-0.39758070394297534,-870.2148729842479,-303.0730674983293,-2.340275428826009,-0.18666901127427077,-11.033637781243035,-121.22232122967254,-35.60733013694981,-1450.3267589999998,-7.649290948322211,-2.6629624192470374,-25.50045172149205,-0.9821657999554476,-2058.2118139512963,9.020940075740672,-0.08904829583427283,0.036651059919326365,-3.9676988193361535,5.155268433949658,0.8431064705918083,44.99226799999997,0.5203325466448041,-0.06505653820450714,-6.380621766787949,-0.08978217509467176,102.74739982049653,4.486522610826459,0.405669191356639,0.07522604026119346,-7.032301180663846,26.2477166406772,-15.172287582051503,14.383037000000101,-2.0678705410455342,0.4194356426821049,1.1836897601544527,0.16717304076632136,-275.91417248967343,42.02160837603027,0.34309443083091223,-0.027381745567328288,-0.9160169302740057,30.215638226776562,-8.837267610814132,197.139347,-0.589194184207424,0.4457476275339659,-1.7232401425707278,0.05248955669414333,70.53304678538925,9.250389841835585,0.3173251726442375,-0.0034745132776058513,-6.18378257963912,-1.346625083537528,-32.92201685644295,35.833580000000026,-3.1454184035556847,0.3957120071285328,-5.962073958565385,0.008285699264870036,-411.08952339096913,0.7085311758908727,0.6209757844777068,0.4241890476119376,0.3381952250566082,0.26465829486352643,0.1920630508021862,0.16103417267000442,0.11012317120583773,0.09826635293069841,0.06418276703144377,0.05932104260612139,0.036399698625676255,0.03659589798608801,0.02092285527837163,0.022767489185833847,0.012123040927129871,8.022052834953541,5.663306145130723,3.543315034645828,2.163059661323646,0.358090375006581,-0.4453419729858621,4.116074700096302,0.9777694372047316,6.021903535814944,0.9938028735186991,14.544552207262827,10.923649485674817,16.010202549245513,11.674454570930283,2.017887684183362,0.752774429449991,3.488400397493219,2.2130071922363537,7.008272390795613,1.0828932262430104,3.7014888578846956,2.409016368192507,20.926207288226646,14.702557241220296,0.19893681260236856,0.5228264243552841,0.777285278464764,0.8651723971131914,0.8651723971131914,0.8651723971131914,1.4591286411314854,1066.6143469067176,0.0,0.0,2.0,2.0,7.0,7.0,4.0,4.0,1.0,4.812035141071245,2.7703060419686594,1.166253216230114,0.6122320896814006,0.6122320896814006,0.6122320896814006,325.4359374594494,1305.2486969458273,48.69309383999362,19.481323835012347,36.716718917188075,,12.0,653.0,5.601050810983688,9.901064578912528,17.116141461923114,18.256633715248796,38.524929737556064,22.39704682651909,5.573104530069267,12.999757306524504,62.02532780745321,0.0,15.566666666666668,31.25,12.0,0.5,19.25,0.0,0.013541666666666619,-7.25,0.07444595205789273,0.03800749339721188,-0.03643845866068085,0.013952020202020132,0.07427397260273927,0.0,0.5199004975124375,0.7604166666666663,0.44545454545454477,0.4818930041152256,0.7464646464646462,43.9537370256022,0.6434078483433439,1.0734078483433438,22.700592886916063,5.102570448664823,10.16823526536493,66.65432991251826,15.270805714029752,0.6397260273972607,0.17130620985010703,0.06423982869379015,0.3147751605995717,0.5517241379310345,0.26474830393389065,-0.4996014658191097,-0.038322493656289744,-0.0074567382958076085,-0.020816727742462907,0.7352516960661092,1.387479427223602,0.03207620294735177,0.020708648167516445,0.03226696342380469,-5.690771301461194,0.9343896404010981,0.7914684135257689,1.3170198341631913,0.8403391814909307,0.571267849767971,1.1482537230695748,0.9379778089676312,1.0561303456464055,0.8046329330949489,0.7293892834150002,0.7677061036115133,1.0201317736507691,0.8575544418066179,0.8110500816589715,1.087896384927618,1.5493865453542872,1.075213057922866,0.9215949967868444,0.8594180850706674,0.9059687843879923,0.808043486944014,0.563149752019567,0.7697308649449874,0.8837302835688478,1.0754126216577848,1.0031286408324847,0.8716732166782585,1.5457016032605202,1.2634153332849354,1.1222629761934817,1.0771453133124964,1.1325411161522594,1.0119602198529667,0.994893377778334,1.0060152597889735,1.1152902798259985,1.162876092140892,1.0602743850314253,0.9639750920991595,1.111266268293918,1.103456682398512,1.1143447485806728,1.1636385579715045,1.1544946930275097,1.0856609435818738,1.0245003456880442,1.0355432335158763,1.1693901539313587,0.9514494856238458,0.7609226100191686,0.6650230214767081,1.0074937965260544,0.8942366026289181,0.9622218942934249,0.9540499000449646,0.9954600056221935,0.7982216023610944,0.7531692319629123,0.7235157996800895,0.9966449701427902,0.9519278872829476,0.7109254818673258,0.6529880269421859,0.9853362710704201,0.8657257749862611,1.0148581163891186,0.9558471273335687,1.0347087728631592,0.752399999118709,0.6743002758693524,0.6591780099647331,1.0231327185532166,0.9474417104695972,0.8785286553551278,0.8760206803435544,0.8502731041578405,0.8847593564047732,0.9908550622199085,0.9488950137175827,0.9916457594771207,0.8881299357470298,0.8820410023181382,0.874674750559496,0.979974256564135,0.984533409564858,1.0416535286510324,1.1126834992848929,0.8831215763846622,1.0259014932451032,1.0738123505551898,0.9844982001154244,1.022713526544784,1.0250902577751737,1.1124447382102236,1.0785678753177328,1.0029982071926526,8.0,0.20498316498316502,6.222222222222224,3.5763888888888893,3.1516666666666673,1.9688888888888887,1.1968707482993197,0.7813208616780044,0.6704380826404635,0.4381250000000001,6403.047644283637,7491.993762513557,2957.4902486708293,2604.8728945413236,12.757501452024284,0.41099597883337285,7.514219655281388,0.6977812783337578,1.0,0.5925925925925926,1.254054049386527,3.2957831484891127,4.899835974227658,5.453857100776371,5.453857100776371,5.453857100776371,0.22222222222222224,0.008912311521007174,0.11111111111111113,0.05502136752136753,0.051666666666666666,0.03281481481481482,0.020997732426303855,0.015320016895647147,0.016760952066011588,0.012886029411764708,0.5477132246569169,23.728395061728396,8.896683673469388,3.8816180844735277,192.13735598643598,0.0,4.427897070248476,169.08334716292245,,143.50050122747777,142.89064279411426,142.7857750237899,143.50696326259208,155.9456387758005,143.25947485974973,143.53551122450992,151.1475244798819,0.053996492805421376,0.0019390367368961518,-0.34768939080261635,0.5003757033516234,0.3938199469821965,0.007764570959422659,0.054809159946557405,0.05822017122792224,0.011383963975756696,-0.05172986574728812,-0.01748746190362083,0.058253815375190775,0.12774529343376623,0.02482871186521534,-0.031701285165041976,0.013682106424041962,0.04108955120077465,0.1836928335683337,0.12888641589216068,0.14688565126911962,0.0462927813117665,0.06988473079685768,0.0010621163790179606,0.15263403668760367,-0.08568579386958199,-0.06495478960789795,0.035781940160805825,-0.14558396225202175,-0.18056392336426078,-0.0672956831383677,-0.08583711717923079,-0.08038152950170617,-0.06987718862535477,-0.03336159011029894,-0.05447071451665163,-0.08413126549154012,-0.1830994729730457,-0.14108214873013952,-0.09131762326399442,-0.06270572745227121,-0.16041382319213984,-0.10498247839442928,-0.1825442792974088,-0.1294523084860453,-0.1574492935279152,-0.10875631542927243,-0.10600193812836353,-0.15675168258327057,0.004855399151099479,-0.004782600398640576,0.01597358148380686,-0.020089104443943146,0.006077764500413646,0.0022145894312626466,0.005045144897895728,0.007845181611387215,-0.003426888855237734,-0.0242439290046145,-0.008632816538946207,0.0069715023055330425,0.002544340245247108,0.02295634252015835,0.03454428049909836,-0.03751556810511205,0.032604406545343044,-0.04199079073683935,0.0016993331988403146,-0.03285016405193814,0.023279121596970376,0.004738818547573635,0.016936388899350275,-0.019725214311634688,0.02528386122030567,0.020599170792877732,-0.013340572896086455,-0.0051846920454316344,0.039821896846731,-0.025949344627633205,0.024711929612426096,-0.009930658514644674,0.026247968510724164,-0.007319533319282099,0.005641997386315067,0.005349901254534869,0.00645847538609317,0.02210751055677502,-0.0019642943679858173,-0.04061373425722179,-0.0020593782278922473,-0.11217448037737804,0.005212220618342262,-0.061517300050881976,0.027038657867656208,-0.02938557508768599,0.001033447426546791,-0.03618168405402405,20.247037080221606,35.401417812893236,12.301473173890846,10.461641693996441,30.6642964658834,37.39173288606125,37.95018618162234,37.95018618162234,37.95018618162234,66.08387518408372,60.51061581365366,2.018452446080002,3.554806924350044,0.0,5.573259370430046,6571.143692676032,4743.532920558872,3347.693239162177,470.0,56.0,82.0,115.0,162.0,209.0,274.0,345.0,426.0,429.266779360001,36.0,5.220355825078324,6.133398042996649,7.079184394609668,8.02059914989697,8.976767625171433,9.931054080253933,10.893641941007104,11.855315868926667,12.821995850389728,0.5771144278606964,0.9526567164179106,1.1190608836937486,0.5338439763550078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6655800786486727,0.9415861867134915,0.9830092074224652,0.6070081841960564,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,4.0,0.0,0.0,0.0,1.0,7.0,0.0,0.0,0.0,3.0,1.0,2.0,0.0,2.0,10.006437125691184,5.601050810983688,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,5.920434318855644,30.550010185538756,92.20289382516212,37.536448378522124,0.0,183.12006655482958,-345.56237872832867,-26.506751826592087,-5.157647443706399,-14.398432447013695,508.556004014279,959.6863182174986,22.186342013401536,14.323676391305947,22.31828647017438,0.5,0.8766077250105674,0.2001298450972516,7.910117073956643,0.11245565017560624,149.1902335264926,0.12339227498943259,6.0,0.05555555555555555,0.2067318844172634,0.5433126755988893,0.8077421581494908,0.8990730155032226,0.8990730155032226,0.8990730155032226,5.406500000000006,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,129.4318,9.901064578912528,0.0,0.0,17.250802561719567,70.3121826170084,18.99525369620486,52.624253462585116,0.0,11.840868637711289,4.290459441148391,0.0,5.6937321388027,2.3978952727983707,7.313886831633462,4.948759890378168,9.038008749211576,7.234898420314831,10.820438066706068,38.666666666666664,8.973095028134711,0.0,0.0,0.0,0.0,0.0,2.5316634800601707,0.0,63.82800000000001,0.0,12.169554587724438,0.0,0.0,0.0,1.9261937174561181,0.0,4.598894426272448,74.97707920748115,4.899909730850478,5.687386274683562,0.0,30.586167117543713,4.794537184071822,29.091671199430852,70.2745832977217,47.06080197088812,0.0,0.0,0.0,35.767546415785525,44.59386526946108,41.45253279624979,338.166694325845,,286.9608238835269,285.73396706798655,285.535830175254,286.9738620666417,312.7296432849947,286.47653559006244,287.03119416192294,302.6442094548761,41.45253279624979,338.1666943258451,,286.35814531209826,285.0241892643572,285.0000320903656,286.3728951885047,314.5740478984611,285.84032364850805,286.43376985546973,303.4123625441232,5.242883453792755,224.08497642706573,,190.79580254142743,190.07652736130473,189.8897451094988,190.80323317711682,205.39805303778815,190.50818024117848,190.83748724906184,199.86080939639834,1.295391649882806,10.567709197682657,,8.967525746360216,8.92918647087458,8.922994692976687,8.967933189582553,9.772801352656085,8.952391737189451,8.969724817560092,9.457631545464878,2.6533860163509337,169.08334716292245,,143.50050122747777,142.89064279411426,142.7857750237899,143.50696326259208,155.9456387758005,143.25947485974973,143.53551122450992,151.1475244798819,63.08627450980393,0.0,8.286543526439601,0.0,0.0,0.0,11.73233644270125,65.86161689730517,6.307124435600941,0.0,0.0,0.0,1.1947039556563364,2.1323867224996826,-1.134509781536071,0.0,6.282013458990371,40.66954834113578,606.328586665835,84.02162130889731,220.81747094877056,328.2890102732531,365.4084257520169,365.4084257520169,365.4084257520169,2207.0,148.93231277833047,85.34748390327364,83.73807881099358,40.54,40.54,1.0,8.8393672661934,6.169925001442312,4.491653012658453,5.547639061571086,,5.565986087348643,5.567508161888446,5.568372161711988,5.565971813984968,5.5337592930589965,5.566621196641057,5.565894782211895,5.5462183059339285,0.14036415664557667,0.17336372067409644,,0.17393706522964508,0.17398463005901393,0.17401163005349962,0.17393661918703024,0.17292997790809364,0.17395691239503303,0.17393421194412173,0.17331932206043527,2.665371598074606,2.87652325274668,,2.8798249733282186,2.880098395942038,2.880253569992076,2.8798224089341016,2.8740181942105214,2.8799390722588467,2.879808569067731,2.876267118996649,352.4900000000015,494.0272760144078,224.10622668721763,,221.80781740745795,221.5971923381412,221.57842096273353,221.8100949357497,226.06873064625088,221.72535821046566,221.81982133773195,224.42742088610572,15.438352375450243,7.003319583975551,,6.931494293983061,6.924912260566913,6.924325655085423,6.931565466742178,7.06464783269534,6.928917444077052,6.9318694168041235,7.013356902690804,7.365741540073397,6.575270975533196,,6.5649621294004765,6.564012094644308,6.563927381610218,6.56497239737311,6.583989880747255,6.564590300628807,6.565016246543903,6.57670317245099,0.0,14.30194131022412,11.73233644270125,5.71475610677135,7.758009432671906,8.973095028134711,8.23331815305706,4.14529723278093,4.141246293658673,444.9432786196615,126.65976807699818,-239.01722825532454,-18.33408594696776,-3.56742131724365,-9.95905117730519,351.75601852092433,663.7920615636147,15.3457618641319,9.907344202442008,15.437024687525918,2590.0,65.0,3.115072870736093,2.018953272343515,0.22706207261596575,0.1415905433680705,1.4809201613082656,0.8412398101296162,0.44862343787706055,0.1997577464961222,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.5342802872788243,0.3671929919645691,1.1279245882428497,0.7001917685094335,22.672997628507925,19.87122510328662,15.270805714029754,12.175028102037896,14.82086451235748,10.755530844922427,13.204802158940362,9.030100038878693,11.300630587030318,7.381018208616034,9.610008902191664,5.896751177359554,7.648542679092394,4.37287675317967,6.238292036918474,3.3217132140335845,8.245914758357774,5.12479908900777,13.420134753914914,8.16408636842987,22.385468493240353,12.924321133024556,111.16834320324226,49.228017939006676,28.197196048094906,24.570728091020733,24.570728091020733,24.570728091020733,184.0,230.0,74.47175499999997,37.69024500000001,0.34328358208955223,304.03,10.73611111111111,6.79861111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,6.0,6.0,67.0,0.0,0.0,71.0,6.0,3.0,6.0,64.0,10.0,36.0,61.0,1.0,0.0,0.0,29.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,3.0,1.0,0.0,32.0,3.0,0.0,1.0,2.0,0.0,5.0,2.0,0.0,0.0,0.0,0.0,1.0,3.8066624897703196,7.634216338572016,4.375757021660286,4.914491433543353,5.39759693063986,5.890434917387996,6.221335419171618,6.628041376179533,7.006355495221746,7.38006094400911 +4583,CC1COc2c(N3CCN(C)CC3)c(F)cc3c(=O)c(C(=O)O)cn1c23,0,25.043478260869566,6.5953195652173875,3.608695652173913,9.434782608695652,166.51588568663,99.79293332934287,1.4262070238473912,6.62488260869565,6.380434782608695,8.045876956521736,217.77236420241672,26.489795918367346,6.5872448979591836,4.36734693877551,8.408163265306122,149.09104492829073,101.40840442520823,1.7325836709387765,6.713673469387757,3.3475056689342404,7.966598693877547,262.60844345500794,22.808988764044944,6.551876404494383,4.044943820224719,7.134831460674158,160.1220685446465,86.32811554685841,1.493072176576843,6.632304494382019,3.4438202247191003,7.990698966292131,224.4006551018552,20.865546218487395,6.4785201680672255,3.6050420168067228,6.470588235294118,159.86548294065489,77.7298101320874,1.4241655077818232,6.556084033613446,3.351540616246498,7.9351423865546185,208.56791799773222,18.633093525179856,6.363114388489209,3.0863309352517985,5.690647482014389,160.9065729286984,68.95429154775252,1.2698184126828993,6.425908633093523,3.8389288569144684,7.8750364604316525,181.59264376496844,18.265151515151516,6.471636363636366,3.015151515151515,4.984848484848484,164.98263479276605,67.2805880262303,1.2170771466823782,6.520655303030302,3.802188552188552,7.9771200606060635,176.66977584775975,18.37719298245614,6.6895701754385986,2.8596491228070176,4.385964912280702,164.22068969220214,65.77207462878597,1.225912901834158,6.735231578947369,3.9644249512670546,8.166210771929824,178.08442535484375,15.053571428571429,6.5172491071428595,2.4107142857142856,3.330357142857143,168.32559379288463,52.48196570638573,1.0683909240547405,6.5378678571428575,4.425595238095238,8.067686464285716,147.70702180355678,11.456521739130435,6.180195652173914,2.2065217391304346,1.9130434782608696,169.65947456917425,37.30763814107824,1.022812491052489,6.212165217391303,2.9420289855072466,7.774753739130432,131.5068207512318,7.982986767485821,0.20211724952741003,0.03038309777299041,0.7334593572778828,4.896030245746693,1.9228498782965386,38.0770843027125,0.22285239627669193,0.1821143667296786,2.7483721907162355,0.12458907561436669,47.140982982093284,0.39145866286023023,-0.009222839589522018,-0.011789840982180928,0.3215539523938121,1.6425678021681251,-0.5167623378733307,1.8533715244087827,-0.022421630585289797,-0.005217915975463967,-0.11207129354577368,-0.008861025924925731,-1.1288131943611412,0.8856014103353804,-0.012093922707674004,-0.0043386136974621495,0.08041460461757406,0.686285338034451,0.07396252932620735,4.3828716174488065,0.03870966042724906,-0.007237864531339654,0.2913878917893276,-0.007587650113633945,9.866867889767743,0.1273530206033268,0.0002807957776683449,-0.00044431500702324644,0.025400708487553818,0.6615145112865561,0.17396319485878217,0.6101030201398868,-0.00013404416161291662,0.0008236310781401217,0.02771070621065062,-0.00071867152229512,0.9433327916515094,1.13462349213257,0.040435815846377704,0.004375343603408632,-0.0037127198052522054,0.8646829228488665,-0.15182648937688226,5.353088994031007,-0.010023621355672462,0.036946440276890015,0.40080412040877694,0.023866679155730236,0.41621907092641114,0.5924414275075901,0.004461900670218249,-0.001770331864475667,-0.13431574726470752,-0.337729850489775,-0.058009092885785624,2.8172456193992166,0.0005807675696526628,0.005794098355960337,0.0950072559240801,0.001381851921865151,2.251457291317652,-2.3159387125659143,-0.039807886445793084,-0.002969166576724223,-0.244519616621895,-1.6340165157695754,-0.2505494215676877,-11.218340624815914,-0.0602678718278543,-0.038323748880708414,-0.5059363910721983,-0.022723042814976956,-14.539213667994254,-1.3350830407777485,0.0014411161558196153,0.003165691128761,-0.07352146907912503,-0.9950209289765056,0.0064860027405652465,-6.286576308367697,-0.011240798321360766,-0.0027948791520388846,0.14236064227203168,0.005652818795571157,-6.870649893070743,-1.6531190926276005,-0.03216550094517955,0.0003197892197439194,-0.02362948960302458,-0.9352551984877128,0.08672386083359564,-8.181862776096796,-0.005961881214254755,-0.03250831758034021,-0.45180896870405396,-0.015599718336483923,-5.972230828843531,,,0.45457875457875463,1.1634615384615385,0.46153846153846156,0.038461538461538464,0.7019230769230769,-0.2403846153846154,0.9274175628358479,0.020549834971668488,0.03378060420243772,0.9791793264601423,0.23037966169288743,0.24577102496517853,1.9065968892959901,0.476150686658066,2.0547568406360877,1.450222277275104,0.25480294303908935,0.2804632842434549,0.06926833607843898,0.6045345633609831,7.850951833478272,1152.0,303.38469999999984,166.0,434.0,7659.730741584981,4590.474933149772,65.60552309698,304.7445999999999,293.5,370.11033999999984,10017.52875331117,1298.0,322.775,214.0,412.0,7305.461201486245,4969.011816835204,84.89659987600005,328.9700000000001,164.02777777777777,390.3633359999998,12867.813729295389,2030.0,583.1170000000001,360.0,635.0,14250.86410047354,7683.202283670399,132.88342371533903,590.2750999999997,306.49999999999994,711.1722079999996,19971.658304065113,2483.0,770.9438999999999,429.0,770.0,19023.99246993793,9249.8474057184,169.47569542603696,780.174,398.83333333333326,944.2819439999996,24819.582241730135,2590.0,884.4729000000001,429.0,791.0,22366.01363708908,9584.6465251376,176.504759362923,893.2012999999997,533.6111111111111,1094.6300679999997,25241.377483330612,2411.0,854.2560000000003,398.0,658.0,21777.70779264512,8881.0376194624,160.65418336207392,860.7264999999999,501.88888888888886,1052.9798480000004,23320.410411904286,2095.0,762.6110000000002,326.0,500.0,18721.158624911044,7498.016507681601,139.754070809094,767.8164,451.94444444444423,930.948028,20301.62449045219,1686.0,729.9319000000003,270.0,373.0,18852.46650480308,5877.980159115202,119.65978349413092,732.2412,495.6666666666667,903.5808840000001,16543.18644199836,1054.0,568.5780000000001,203.0,176.0,15608.67166036403,3432.3027089791985,94.09874917682897,571.5191999999998,270.6666666666667,715.2773439999997,12098.627509113327,367.21739130434776,9.297393478260862,1.3976224975575589,33.73913043478261,225.21739130434787,88.45109440164077,1751.5458779247751,10.251210228727828,8.377260869565216,126.42512077294683,5.7310974782608675,2168.485217176291,19.18147448015128,-0.4519191398865789,-0.5777022081268655,15.756143667296795,80.48582230623813,-25.321354555793206,90.81520469603035,-1.0986598986792,-0.25567788279773435,-5.4914933837429105,-0.4341902703213608,-55.31184652369592,78.81852551984886,-1.0763591209829864,-0.3861366190741313,7.156899810964092,61.07939508506614,6.582665110032454,390.0755739529438,3.4451597780251664,-0.6441699432892292,25.93352236925016,-0.675300860113421,878.1512421893292,15.155009451795888,0.03341469754253304,-0.05287348583576633,3.0226843100189043,78.72022684310018,20.70162018819508,72.60225939664653,-0.015951255231937078,0.09801209829867448,3.297574039067424,-0.08552191115311927,112.25660220652962,157.71266540642722,5.620578402646501,0.6081727608737999,-0.5160680529300565,120.19092627599244,-21.103882023386635,744.07937017031,-1.3932833684384722,5.135555198487712,55.711772736819995,3.3174684026465027,57.854450858771145,78.2022684310019,0.588970888468809,-0.23368380611078804,-17.729678638941394,-44.5803402646503,-7.657200260923703,371.8764217606966,0.07666131919415148,0.7648209829867645,12.540957781978573,0.18240445368619992,297.19236245393006,-264.0170132325142,-4.538099054820411,-0.33848498974656144,-27.87523629489603,-186.2778827977316,-28.562634058716398,-1278.890831229014,-6.87053738837539,-4.368907372400759,-57.676748582230616,-2.590426880907373,-1657.470358151345,-149.52930056710784,0.16140500945179692,0.354557406421232,-8.234404536862003,-111.44234404536863,0.7264323069433076,-704.096546537182,-1.2589694119924058,-0.31302646502835507,15.94439193446755,0.6331157051039696,-769.5127880239232,-152.08695652173924,-2.9592260869565186,0.02942060821644059,-2.1739130434782616,-86.04347826086958,7.978595196690798,-752.7313754009053,-0.5484930717114375,-2.990765217391299,-41.56642512077296,-1.4351740869565208,-549.4452362536049,0.714809903067996,0.5638134015347025,0.42689371907274903,0.29624126215671437,0.2712847077356691,0.15833998034564353,0.16382513666692702,0.0824101852470213,0.09970731219020447,0.04098633517483386,0.061653242070394666,0.02223642920711293,0.038651872570330356,0.011386219163178194,0.02460729936724982,0.005899788343632401,9.004069784972392,5.669237088151579,4.1077228259863015,2.1639209726641413,0.4976074031443695,-0.5175321014515921,3.326630423951863,0.9726908270407256,7.004064028421364,0.9936778318842899,17.4247723340034,10.933392093072747,19.000142182631915,11.684056237759803,2.0163528290145813,0.5458495057327608,3.9886764995157,2.2124881204839957,8.0019203921276,1.2588698316385016,4.009962636750036,2.4079722516527293,20.91177670324714,13.304119084553516,0.3001841995825614,0.6339601680588798,0.806843724474841,0.8369254097696369,0.8369254097696369,0.8369254097696369,1.605186418645728,963.2881482992597,0.0,2.0,6.0,0.0,6.0,1.0,2.0,0.0,0.0,3.7880891179537466,1.8584101804620823,0.8589081522679765,0.6849951087897166,0.6849951087897166,0.6849951087897166,206.10518997180978,1514.2291671871549,68.49958358194402,32.918025373633796,72.6568022902614,,12.0,501.0,17.215316520898284,19.086016810659167,23.598398499822668,30.043111637408877,19.15587988028676,6.196843571613076,4.567099647791355,18.871318913218293,4.899909730850478,4.736862953800049,11.81904761904762,30.25,12.0,1.0,18.25,0.0,0.0454212454212454,-6.25,0.1986197377501724,0.05082432328809139,-0.147795414462081,0.022479989146655832,0.21278836833602555,0.0,0.6430641821946171,0.9069597069597066,0.44444444444444475,0.5922398589065258,0.8844797178130508,24.112856633732044,0.5342957092633807,0.8782957092633806,25.4586624879637,5.989871204015073,6.390046649094642,49.571519121695744,12.379917853109715,0.5012116316639744,0.193392425463336,0.0,0.4822723609991942,0.4444444444444444,0.31138912919945944,-0.8629841954756419,-0.07072915915968805,-0.01876052598860091,-0.07845310867960381,0.6886108708005405,1.9084169696654179,0.05464144514806357,0.04148732542750908,0.05452619913329764,-2.702977536438293,0.7027478289445072,0.6857139106485224,1.398487612285658,0.6804912686724175,0.4200023638799148,1.3814428554193523,0.7049942713621858,1.2125645569327104,0.6594783826119911,0.5855688473325901,0.7274720559405478,1.0183870905645607,0.7559126453051376,0.8326980423509814,1.2279929583973497,1.0864922390825902,0.7711650253785084,0.9946864556869808,0.7504220876914603,0.811944294995657,0.8103125286290098,0.45509240574806914,0.8179018196707089,0.7426626756946081,0.8644960470572317,0.8101986123025409,1.0001430982782604,1.0591646452395391,0.7807582492456441,0.9633184814625841,0.865817260176294,1.013065862666797,0.8044209966407402,0.6714207845920181,0.8038472254568396,0.9550301302574193,0.8027021432818227,0.6945495009003227,0.7359317077063844,1.0027210190610398,0.7755097080636647,1.032186401720621,0.8046467850176828,1.0663341303280116,0.6945993468100693,0.7107457327985531,0.7158486166045467,0.9977944455778527,0.9200024756205198,1.0929859512029927,1.0565847620788507,1.217563847235239,1.1148319585819584,1.1750234051516457,0.9264008917665132,1.0051532597929305,1.072027426257887,0.9852819849237506,1.0871437524514949,0.9336674500827576,1.2759543602078842,1.4429235100081388,1.2124237478813875,1.310363537710255,1.3819980694980694,1.3740054767756413,1.2856854235392405,1.2728261117445594,1.4300789868399884,1.4658319590531548,1.4281267160607314,1.243480309838911,1.2139437307601233,1.1696084814828391,0.9008846475307414,1.0003221649484537,1.2470094456701597,0.9658579987856034,1.2089811198768878,0.987736726242389,1.1851733939071976,1.29563034793111,1.1519532608918086,1.089619588904059,1.2494080037887758,1.2466642707949243,0.768106906512662,0.8625966494845361,1.1977557915057913,1.0162504453745527,1.2646908600171776,0.9980457326859365,1.2673204378311889,1.2328465322888809,1.1692911810608368,1.1291008567669427,5.5,0.05774920926436078,3.7777777777777795,2.625,2.7777777777777786,1.4791666666666665,1.0506122448979593,0.4496527777777778,0.2625346434870244,0.16687500000000005,5725.980304837851,6316.629680575009,2628.6026882823535,2425.7546185596193,13.712548021914518,0.4631195208972343,7.3619993517251485,0.8626119572669123,1.0,0.4444444444444444,1.7354728381032662,3.6651517755949308,4.664653803789037,4.8385668472672965,4.8385668472672965,4.8385668472672965,0.1896551724137931,0.007218651158045097,0.08585858585858588,0.05147058823529412,0.05555555555555556,0.03215579710144927,0.028394925537782677,0.016653806584362135,0.016408415217939024,0.013906250000000002,0.4972777476628069,19.322235434007133,7.43801652892562,3.3378684807256236,148.73152976640844,1.0,4.212470854925481,118.75830745828189,,89.07130823358546,86.84482695298026,86.1525200298289,89.03071807612213,130.2319473257922,88.16900923531568,89.23051232554008,114.18761807103047,0.04903661677789767,-0.0456311354477999,-0.38803946425310576,0.43840732169156343,0.3354897171223699,-0.26874814498318134,0.048674197574438596,-0.1006120237426178,-0.0286518634919626,-0.0407773350073694,-0.07112201355721387,-0.023945474255170414,0.1109360989977306,-0.05983617299340843,-0.14279695012926025,0.10963743773890897,0.14017179298078167,0.03846505656059385,0.11510523186610123,0.1737008938382131,-0.03974351206504853,0.1060219910438662,-0.0609014078980693,0.20930551858699506,0.015953054202974163,0.0013892717139427772,-0.014623755956123344,0.034631378324525695,0.13511242334771742,0.09047154269416859,0.016022839755522583,-0.0006014930234202569,0.004522603531673468,0.010082588633466383,-0.005768334974404836,0.02001088505112078,0.1421301982804001,0.2000611820165009,0.14400584285708257,-0.005061929837573238,0.17660898308380318,-0.07895909664637264,0.14058558033157145,-0.0449787461258761,0.20287493480254334,0.1458332760616116,0.19156317709269613,0.00882924038907958,0.07421300382465433,0.022075803429202862,-0.058266996923843455,-0.18312636676038732,-0.06898034398034399,-0.030168290068060925,0.07398795551156537,0.0026060638312885177,0.03181571262063473,0.03456855525063397,0.011091276783707079,0.047760083665902314,-0.29010930119520933,-0.1969544239240924,-0.09772428732937548,-0.3333785494664496,-0.3337431416378785,-0.13030108298919862,-0.2946218396248568,-0.27043851820658077,-0.21043781206781043,-0.1840858355288297,-0.18238391049075817,-0.30841982386148037,-0.16724104394303319,0.007130099777179972,0.10419250704499253,-0.10023932253313697,-0.20323014340871481,0.003373119666685173,-0.1651013049841072,-0.05044055396830587,-0.015346835080768024,0.05179816720344998,0.045371705084866334,-0.14574685249309696,-0.20708027468624218,-0.15914277984877012,0.010525234198739328,-0.032216494845360835,-0.19102316602316602,0.04510173249220303,-0.2148762943887997,-0.026752600886788432,-0.17850495907658906,-0.16439147879251062,-0.12520935932431848,-0.1266887207488251,5.549511796322224,16.830953252738936,14.248881202557778,17.669846296709412,37.997334597794016,41.570180468300634,41.74548481612673,41.74548481612673,41.74548481612673,53.42367785653828,37.70577920915271,6.624876519016323,7.292045390329827,1.8009767380394135,15.71789864738556,5246.774076266941,4324.608582825826,1129.8832392639943,261.0,44.0,63.0,90.0,129.0,158.0,195.0,221.0,258.0,361.14378434000054,29.0,4.990432586778736,5.8888779583328805,6.818924065275521,7.742835955430749,8.68084148294457,9.614804979750764,10.556515616499246,11.495606351199761,12.439344729640425,0.6884057971014493,1.0113913043478264,1.139346353039478,0.6540624051141525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.656871387659464,0.9953964194373398,1.0249374584375697,0.6347373870565225,2.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,5.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,24.210309458133064,17.857719730893475,11.5667326743298,5.428790391900541,0.0,4.794537184071822,9.184952231746642,0.0,0.0,0.0,20.037776250829424,32.37586919526338,16.944765761229018,170.13578103003775,-471.51450177883083,-38.644768255616626,-10.250315256061539,-42.86495470716644,376.2409710018475,1042.714665408324,29.854815326327394,22.66771011757226,29.791847583094963,0.5,0.6841352891335625,0.17569343504959908,11.929690806822135,0.12294255425167068,79.93436060641308,0.31586471086643747,6.0,0.06896551724137931,0.31419450925144166,0.6635485950466815,0.8445010377178593,0.8759867067230835,0.8759867067230835,0.8759867067230835,1.5439999999999998,,1.7619047619047619,2.090104302625157,1.72198869340269,1.7923518247588088,-7.881927179765617,1.8777328349212405,1.7282681802120077,-3.1006114622630965,95.04130000000004,19.028342580387395,0.0,9.467009378641833,0.0,12.965578028838586,44.73348930169089,33.86721054878994,0.0,5.749511833283905,4.07753744390572,0.0,5.459585514144159,0.0,7.053585727193677,0.0,8.753213480544126,0.0,10.513497659473217,31.66666666666667,2.4945564058956915,0.0,0.0,0.0,0.0,0.510097736625515,-0.2294823761562561,1.7202692743764172,46.524000000000015,0.0,23.989140443256222,0.0,0.0,0.0,0.0,0.0,-1.3153294094140058,52.40993223981599,15.065563076551069,10.077801322358383,5.749511833283905,60.376421632274784,0.0,5.817220841045895,23.3235667046074,17.05774782414651,0.0,10.902924932081056,0.0,30.086870635251014,30.21608383233534,33.46582201659464,237.51661491656375,,178.06370358703583,173.61857669306266,172.35688020570615,177.97735437605576,263.14938979565534,176.266208553755,178.38376440618362,229.32927043814192,33.46582201659464,237.51661491656373,,176.64128672342554,171.95411467141668,171.0322735184733,176.52889962993027,268.3458218313499,174.7600324216083,176.98789001435574,231.47584760432412,5.157046688639975,170.01390337164315,,126.8770446465597,123.66521508609881,122.13116281598438,126.84434073369505,182.2775142120931,125.55445611187301,127.09617093257886,161.72839354173766,1.2871470006382555,9.135254419867836,,6.848603984116763,6.677637565117795,6.629110777142544,6.845282860617529,10.121130376755975,6.779469559759808,6.860914015622447,8.82035655531315,2.5785233443199878,118.75830745828189,,89.07130823358546,86.84482695298026,86.1525200298289,89.03071807612213,130.2319473257922,88.16900923531568,89.23051232554008,114.18761807103047,45.788235294117634,0.0,3.887670043276069,0.0,14.983653155706726,0.0,9.320051749038907,47.147123088128204,3.2033178919078087,0.0,5.85276100718065,0.0,-0.15787000293944775,4.096231216124344,0.0,0.0,0.0,29.197919804600037,373.79561722719063,79.83175055275025,168.5969816773668,214.57407497429568,222.57407497429563,222.57407497429563,222.57407497429563,1474.0,133.22818372585266,172.58113480469464,61.8574198252609,75.00999999999999,75.00999999999999,1.0,9.419576727487197,5.857980995127572,4.358686956171379,5.010717621438563,,4.991970370266365,4.9931183096212886,4.9944838890848375,4.991848750553515,4.970113913016271,4.992474209041413,4.9919475414474865,4.980831600008384,0.1676418060065915,0.19271990851686782,,0.1919988603948602,0.19204301190851109,0.19209553419557068,0.19199418271359675,0.19115822742370273,0.19201823880928512,0.19199798236336488,0.1915704461541686,2.427682300190124,2.5670905876787424,,2.5633421406335115,2.5635720713625783,2.5638455262809643,2.5633177772688747,2.5589542049973097,2.5634430653812976,2.5633375675152066,2.5611083100765524,250.42000000000013,228.20101892845946,161.8252405688422,,163.44595450715542,163.29813857690925,163.4384160009295,163.4249821020021,167.40905702955254,163.39042446496174,163.46483768242297,165.36915665150786,8.77696226647921,6.224047714186238,,6.2863828656598235,6.280697637573433,6.2860929231126725,6.285576234692389,6.438809885752021,6.28424709480622,6.287109141631652,6.360352178904149,6.385738347513189,6.042028436056652,,6.051993827246847,6.051089046144702,6.05194770386557,6.051865505008109,6.075951705738427,6.051654023930566,6.052109352189674,6.063691732909397,22.556683437263793,28.085371659380563,9.363410540086191,-0.22381680128433334,-1.5426565069196736,0.9940744415049967,1.342611961451247,5.075710339627637,2.0152775955562405,307.0583520526847,92.95823544360007,-257.6245620178502,-21.114602962528718,-5.600533956909786,-23.420414728895473,205.5693197173122,569.7150521818141,16.311977030510512,12.385109830039434,16.2775729194804,1484.0,51.0,2.2190830212897596,1.0509210395161406,0.0,0.0,0.7050093089545691,0.19308627141796247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2296107312141918,0.10281352633387163,0.602441863796174,0.20372902885069497,18.585057479767894,14.659148439902266,12.379917853109722,8.590996602544717,11.93652714036944,6.966959135208316,10.320983610016402,5.191841670562342,8.973658097118403,3.688770165735048,7.953268227080912,2.868499367717568,6.106995866112197,1.7990226277821546,4.798423376613715,1.1504587270083182,5.448528667755291,2.155594095607878,9.20143840064059,2.893114600321253,16.127522522096946,4.260250029042732,83.93442473706104,37.48467229494546,28.177440663200237,27.117571476377968,27.117571476377968,27.117571476377968,146.0,180.0,50.460859999999975,29.779139999999998,0.41304347826086957,191.08,9.333333333333332,5.527777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,10.0,11.0,46.0,0.0,1.0,49.0,11.0,2.0,6.0,43.0,13.0,29.0,36.0,0.0,0.0,0.0,18.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,6.0,1.0,3.0,26.0,8.0,0.0,3.0,4.0,0.0,4.0,2.0,0.0,0.0,1.0,1.0,2.0,3.624340932976365,8.1774851000595,4.297285406218791,4.978456395732021,5.65861075600948,6.32278963126672,6.818753285666191,7.288522045316851,7.655009564885399,8.058612817638418 +13342,CC[C@]1(O)C[C@@H]2CN(CCc3c([nH]c4ccccc34)[C@@](C(=O)OC)(c3cc4c(cc3OC)N(C)[C@H]3[C@@](O)(C(=O)OC)[C@H](OC(C)=O)[C@]5(CC)C=CCN6CC[C@]43[C@@H]65)C2)C1,0,21.247863247863247,6.121107692307695,3.4871794871794872,6.905982905982906,163.0067181282815,83.62032036752129,1.407741747702923,6.182083760683763,4.0553774928774935,7.670996888888888,206.8838319917015,23.896,6.332631999999999,4.4,6.632,145.88489582242477,90.114966296,1.7647125225759999,6.474315999999998,2.8417777777777777,7.7588127039999994,257.91465464951625,20.68776371308017,6.259767932489452,4.2784810126582276,5.641350210970464,154.45633915324163,77.29503831223627,1.5529334161821435,6.3633662447257375,2.696524847632442,7.74899193248945,223.74934996104886,19.571847507331377,6.222366568914957,3.9208211143695015,5.0,152.90164761344437,71.98742617008797,1.5092697724491728,6.329016129032258,2.8107689801238185,7.718470826979471,213.43902545046333,17.767441860465116,6.183162579281185,3.5010570824524314,4.424947145877378,157.32546451289994,64.6620206680761,1.389190791990856,6.270525369978858,2.7115045806906277,7.713249657505285,194.38683458340307,17.00357142857143,6.159064107142857,3.169642857142857,3.9803571428571427,156.33618422083748,61.08648810178569,1.3353366289167374,6.24814125,2.871180555555555,7.699213707142857,184.96333591926526,15.006230529595015,6.146657320872275,2.797507788161994,3.305295950155763,161.31063341840755,52.87239694859814,1.2134319794611652,6.2121538940809975,2.8905114226375908,7.7284949719626175,165.774628589727,14.285939968404424,6.05987345971564,2.7187993680884674,2.985781990521327,160.39869413406714,49.81563980094786,1.2117510435492447,6.131095418641389,2.7284316306828154,7.645791709320695,162.1344253931382,13.08974358974359,5.953679326923076,2.6153846153846154,2.565705128205128,161.08223913356312,44.96294143910256,1.176873309145125,6.025065224358975,2.531060808404558,7.55427723076923,153.5523643521519,7.48820220615092,0.12991005917159762,0.021876049083062378,0.7942143326758714,3.9839287018774208,1.394749595668921,35.574213411498285,0.22741747137477372,0.12207058221930003,1.4205363592827978,0.08196083103221566,50.13972360540336,0.5022935203448025,-0.0015739360946744755,-0.009062810857633248,0.4632215647600263,1.4720029220542035,-0.18423153540177767,2.3946940265871945,-0.005299888179887273,0.0006834622251443506,-0.07911993003303547,-0.0034216036817882093,1.324382679582242,1.0628093701771075,0.004241774648590683,-0.002215086064256867,0.1649980442580249,0.5357077797843783,0.26385850805836525,5.158740727778291,0.0507097470650924,0.005457731098886619,0.10099244529804594,0.0027907266871396185,10.618647572960576,0.11006332759848021,0.005465532978188122,0.0005672384481054072,0.030434137133889056,0.1670851588138602,-0.09594187474482757,0.4879572465461862,-0.0053152118180954866,0.004970626392876238,0.05550629081899182,0.0036145202974583244,-0.7505962621087717,0.24422040999262212,0.0024986739557401917,0.0009791050670457959,-0.0613038323235103,0.04319404617556078,0.1380876917254042,1.1849696471562439,0.014945115884337026,0.002266637924896761,-0.040649235209627446,0.0014418209617852468,2.8019713558930075,-0.269887187835906,0.0008350095097210896,0.0001418685629254873,-0.10076195172349019,-0.13055568600440387,-0.2164965448993268,-1.3719838095294143,-0.03355623591587908,0.001014111004143092,0.013163274416835647,-0.0001579577110922706,-5.425982454352934,-0.3604230970634039,-0.01139163118214156,-0.0008937268542731846,-0.03840316564975083,-0.3519825932957971,0.04632820552356401,-1.6469015728796486,0.005121882678755729,-0.010650854871535397,-0.06889686982529197,-0.007123547223604658,0.008213828362732739,-0.539646286031023,-0.005147572842760572,0.0006383007049963459,-0.05054357478710376,-0.35997007317945456,-0.03555426471835588,-2.5707670155814033,-0.011105015269754652,-0.005669804482029517,-0.05857056607029602,-0.0025849700527527408,-3.273558042351028,-0.5312111914676018,-0.0025288584812623318,7.239999167452854e-05,-0.017094017094017103,-0.23490119804222367,-0.07914554416883918,-2.5509780534827224,-0.014347259601266002,-0.0033744270034334134,-0.07140842885812616,-0.0005178208415516274,-3.8811746353794185,,,0.4677966101694914,1.0084745762711864,0.3389830508474576,0.00847457627118644,0.6694915254237288,-0.3305084745762712,1.7509792618883504,0.020228797269910576,0.03334744133770719,1.2155272969384323,0.18431644466176506,0.2940007506509192,2.966506558826783,0.4783171953126843,2.073793760648727,1.6451201102023436,0.15007851331455058,0.2785951371318329,0.0,0.4286736504463835,6.926669909709415,2486.0,716.1696000000003,408.0,808.0,19071.786021008935,9783.57748299999,164.705784481242,723.3038000000003,474.47916666666674,897.506636,24205.408343029074,2987.0,791.579,550.0,829.0,18235.611977803095,11264.370787,220.58906532199998,809.2894999999997,355.22222222222223,969.8515879999999,32239.331831189535,4903.0,1483.565,1014.0,1337.0,36606.152379318264,18318.924079999997,368.045219635168,1508.1177999999998,639.0763888888888,1836.5110879999997,53028.59594076858,6674.0,2121.827,1337.0,1705.0,52139.46183618453,24547.712324,514.6609924051679,2158.1945,958.4722222222222,2631.9985519999996,72782.707678608,8404.0,2924.6359000000007,1656.0,2093.0,74414.94471460168,30585.135775999996,657.0872446116748,2965.9585,1282.541666666667,3648.367088,91944.97275794965,9522.0,3449.0759,1775.0,2229.0,87548.26316366899,34208.43333699999,747.788512193373,3498.9591,1607.8611111111109,4311.559676,103579.46811478854,9634.0,3946.1540000000005,1796.0,2122.0,103561.42665461764,33944.078841,779.0233308140681,3988.2028000000005,1855.7083333333333,4961.6937720000005,106427.31155460473,9043.0,3835.8999000000003,1721.0,1890.0,101532.3733868645,31533.299993999994,767.0384105666718,3880.983399999999,1727.0972222222222,4839.786152,102631.09127385648,8168.0,3715.0959,1632.0,1601.0,100515.31721934339,28056.875457999995,734.368944906558,3759.6407000000004,1579.3819444444443,4713.868992,95816.67535574279,876.1196581196576,15.19947692307692,2.5594977427182983,92.92307692307695,466.11965811965825,163.18570269326378,4162.1829691452995,26.607844150848525,14.282258119658104,166.20275403608733,9.589417230769232,5866.347661832193,62.7866900431003,-0.19674201183430942,-1.132851357204156,57.90269559500329,184.00036525677544,-23.02894192522221,299.3367533233993,-0.662486022485909,0.08543277814304381,-9.889991254129434,-0.42770046022352615,165.54783494778025,251.8858207319745,1.0053005917159918,-0.5249753972288774,39.1045364891519,126.96274380889766,62.53446640983256,1222.621552483455,12.0182100544269,1.2934822704361286,23.935209535636886,0.6614022248520895,2516.6194747916566,37.53159471108175,1.8637467455621495,0.19342831080394388,10.378040762656168,56.97603915552634,-32.7161792879862,166.3934210722495,-1.8124872299705608,1.6949835999707972,18.92764516927621,1.2325514214332887,-255.95332537909115,115.51625392651026,1.1818727810651106,0.4631166967126614,-28.99671268902037,20.43078384104025,65.31547818611618,560.4906431049034,7.069039813291413,1.0721197384761678,-19.22708825415378,0.6819813149244217,1325.3324513373925,-151.13682518810737,0.46760532544381017,0.07944639523827289,-56.4266929651545,-73.11118416246617,-121.238065143623,-768.3109333364721,-18.791492112892282,0.5679021623201315,7.371433673427962,-0.08845631821167153,-3038.5501744376434,-231.39162831470532,-7.313427218934882,-0.5737726404433845,-24.654832347140037,-225.97282489590177,29.742707946128093,-1057.3108097887343,3.2882486797611783,-6.8378488275257245,-44.231790427837446,-4.57331731755419,5.273277808874418,-341.5960990576376,-3.258413609467442,0.4040443462626869,-31.99408284023668,-227.86105632259475,-22.50584956671927,-1627.2955208630283,-7.0294746657546945,-3.588986237124684,-37.07516832249738,-1.6362860433924848,-2072.1622408082007,-331.4757834757835,-1.578007692307695,0.04517759480490581,-10.666666666666671,-146.57834757834758,-49.386819561355644,-1591.8103053732189,-8.952689991189985,-2.10564245014245,-44.55885960747073,-0.3231202051282155,-2421.8529724767573,0.7095401287100065,0.5983082005775314,0.4212046943798263,0.31661309385352815,0.2503366601151831,0.16855507075327483,0.14875673319569988,0.09175738548225872,0.08697271609362811,0.05039586143094847,0.05321375927310079,0.027765108783287747,0.031997365134561015,0.015113874326865357,0.019464918573004815,0.008300553845603562,8.034962906091826,5.674177491893757,3.5624876337496043,2.1737982494516386,0.4873679301327604,-0.5288795298001383,4.055466305000086,0.9723543331269143,6.033084601675336,0.9872192120282561,14.54927393631531,10.934818114259903,16.019942403760815,11.685454919425883,2.026277393157597,0.7398229087778779,3.5089591016161066,2.223680452390921,7.010474646136282,1.0651902182386195,3.721779666124035,2.419619809623252,20.926564197481746,14.699678890222563,0.20917711620034907,0.5313680831328788,0.7863228385216502,0.8734380614793434,0.8954640290290601,0.902699629755399,1.2217610321489472,2257.0913930587544,0.0,3.0,8.0,0.0,12.0,9.0,4.0,3.0,3.0,5.3878296812735265,3.1043131753527056,1.297330820334718,0.6799049147148288,0.5237966881636265,0.47251463688157536,621.7154162344056,5542.156009056599,75.8945486947368,47.36885477826152,86.12119373189404,,16.0,1640.0,57.50079611090952,19.802129157825053,11.959746875309353,82.56167509209985,33.41114218500707,21.14333228224569,7.109797541277533,50.06052438675535,39.068572333239146,18.947451815200196,27.599999999999994,59.5,20.0,0.5,39.5,0.0,0.03220338983050857,-19.5,0.12777512342729797,0.03300559090032795,-0.09476953252697001,0.026325861126298755,0.15978313253012089,0.0,0.5743589743589733,0.8440677966101701,0.44658385093167535,0.5413533834586454,0.8177419354838713,103.30777645141268,1.193499038924724,1.967499038924724,71.7161105193675,10.874670235044139,17.346044288404233,175.02388697078018,28.220714523448372,0.5542168674698791,0.1871980676328503,0.09057971014492755,0.31521739130434795,0.5869565217391305,0.19371473051267413,-1.0578056030958594,-0.031126873924907175,-0.009041073530733842,-0.033056425096745605,0.8062852694873257,4.402830251990291,0.043651333893643084,0.0376310277947888,0.05179800296459165,-7.553730195136068,0.8325438120695379,0.7833566418277551,1.456826190879467,0.7539999999999998,0.520621681091389,1.3981461198598641,0.8391813241937438,1.2023121277737978,0.7620579819250977,0.6970121163466402,0.815230673967963,1.0575119768715986,0.8125684276091778,0.8953245038557714,1.2373261423956192,1.3563235253024837,0.9329742471817474,0.9844829719279821,0.8121626881520405,0.849745078126971,0.8748264414305794,0.585463660489291,0.8836191577088774,0.8123930493150988,0.9310850725968524,0.8587265338770042,1.0257198332992643,1.3508477209609442,0.9498398001890217,1.2204304816526432,0.9353031766073854,1.1157909106060777,0.8545736222845022,0.8428926032116719,0.8607615307487594,1.0527041106132993,0.9434692607484767,0.9732477740725974,1.072396305270836,1.4344083838539403,1.0451725585923262,1.001699517620065,0.9436219429245163,0.9715435673806232,0.9650465535039611,0.9731511316148549,0.9757086768825597,0.9502119290612348,1.0127571278057597,0.9972452439080464,1.12139981380526,1.2583757095553452,1.0518911492277705,1.227073079191268,1.0158769097528886,1.1959611001271635,0.986593938273648,1.0013971862461286,1.025153156472738,1.121272951180329,1.0702495463680182,1.2559669385371095,1.2398077547060704,1.0509815147201416,1.196054839536672,0.9750738449975525,1.0651407068686964,0.9623615877935364,1.23736934319828,1.2328033630420179,1.2852744424539473,0.9720608539746008,1.0690468425244424,1.0846203257392828,1.0301542714810328,1.0422590837282777,1.1446524822596418,1.0317334634292374,1.068402722018171,1.0515067811739924,1.084677514158952,1.065474411004515,1.0922883719794976,1.0567044003435628,1.0507287378299812,0.9576750363878919,0.8929464764747326,1.0072778697571743,1.037926782308933,1.0500140819198474,1.0525610912472654,1.0627556495720047,0.9704739389770661,0.990973628875817,0.9382220954300279,1.0768618090352782,17.0,1.0527640036730945,10.444444444444448,9.520833333333334,8.033333333333335,5.963888888888889,3.901315192743764,2.9552508503401356,1.968624023683547,1.5143981481481483,16112.603674582584,18328.01379945573,5835.063386824766,5252.029794666647,17.194834790202087,0.4394418544898477,9.63870470234913,0.7839362571208751,0.0,0.5869565217391305,1.4825350383098783,3.766051544230699,5.573033899248687,6.190459804868576,6.346568031419778,6.397850082701829,0.25373134328358204,0.008289480343882634,0.09670781893004118,0.06800595238095238,0.04670542635658915,0.03223723723723723,0.02155422758421969,0.01780271596590443,0.013483726189613337,0.011054001081373346,0.5695719293533955,44.21385609267097,16.155864197530864,6.293702422145329,345.13959571880326,0.0,5.046693712711294,407.2136833838949,,352.83520882863905,350.01642073780454,353.4335478175004,352.8767446936264,429.38520691360503,351.89750858334105,352.9791922369436,394.04371367301053,0.06707798567888713,-0.012115582924917849,-0.4142800568430872,0.5832450331125826,0.36948525744462346,-0.13208932698304196,0.06731544556971658,-0.023304665854600486,0.0055989101773636935,-0.05569722275393334,-0.041746815383598396,0.026413840850122248,0.1419311793295459,0.032651625868230436,-0.101256221168927,0.20775002095733094,0.1344672106034244,0.18917984194275306,0.1450134868227581,0.2229808763528332,0.04470963437433103,0.07109458665953129,0.034049516726382276,0.2117811349844826,0.014698231240079572,0.04207166876099044,0.02592965694818238,0.038319803460799044,0.0419397964464378,-0.06878788496713197,0.013716599743241796,-0.02337204694944593,0.040719281439540435,0.03907417818366572,0.044100581362304575,-0.014970091738357389,0.03261402447065544,0.019233875895935854,0.044756942322088315,-0.07718802066561187,0.010842073091118735,0.09900536422753177,0.0333097919397211,0.06571665665787019,0.018568256853438624,-0.02861541342746798,0.017591585439373135,0.05588326289838283,-0.03604165331088638,0.0064275970240158945,0.006485109006055834,-0.12686997398297065,-0.032770587973343916,-0.15522251848762514,-0.0385668066264527,-0.14755346505713238,0.008307578990007924,0.009266411472552197,-0.0019272341324868152,-0.10821723903097459,-0.04813212666283865,-0.08768859974957294,-0.04085412548123949,-0.04835365476264155,-0.08835062563492309,0.03321614551273272,-0.046294813432117596,0.022521940147312156,-0.08725161032165075,-0.04850060287093019,-0.08691404337767958,0.00016381878024248958,-0.07206620109533762,-0.03962412822829344,0.02917806147594324,-0.06363971626753707,-0.09035555104432946,-0.025491503871921947,-0.07226490114748345,-0.048830968010606754,-0.04644693569040002,-0.04123130371676457,-0.03153909032153039,-0.06528871335856845,-0.07093974986830043,-0.01946622530532431,0.0033095551851995307,-0.021523178807947022,-0.05896219928120872,-0.0567453429738268,-0.07170862849375599,-0.06308776328632361,-0.02764324493325713,-0.05026863859660653,-0.00631790618799475,-0.077407180500715,28.997940903064983,53.37106249742803,24.014909679976117,13.752234356368987,36.79562740431747,44.62560393343585,46.748708953405306,47.09415151585437,47.145843823546684,122.35383187827487,97.06208650193827,8.854632285558484,16.437113090778144,0.0,25.29174537633663,20996.926155765883,18977.145271122354,7035.63082088868,1644.0,108.0,170.0,268.0,396.0,546.0,750.0,1000.0,1289.0,810.4203794360016,67.0,5.860786223465865,6.810142450115136,7.8009820712577405,8.78216942633238,9.785998223743661,10.780101467257385,11.789928215919714,12.791152873556017,13.804523419812126,0.6182336182336182,0.9790769230769233,1.1289814309421249,0.5770984859320554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.650555268949281,0.9653762359644713,1.0032121313985845,0.6083594231943511,6.0,0.0,1.0,0.0,0.0,2.0,6.0,0.0,0.0,3.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,7.0,0.0,0.0,0.0,2.0,11.0,0.0,4.0,0.0,4.0,3.0,5.0,0.0,0.0,39.0443948566793,11.164502302680685,6.103966387748303,5.601050810983688,0.0,19.388893829844598,4.794537184071822,0.0,0.0,44.19861581843384,74.24722930994723,90.93631433573132,32.97228426396425,196.60663817266368,-1073.5972577535968,-31.591557456700226,-9.17604493806493,-33.5499143047999,818.3220544070692,4468.558751303002,44.30299123803657,38.192809840196595,52.57127942709415,0.5,0.8868898810932059,0.09089479178241076,8.301340414543837,0.06292513096300745,3.75420754724581,0.113110118906794,8.0,0.1044776119402985,0.21578694855660793,0.5481588966442905,0.8111700217840279,0.9010380172719483,0.9237599880730367,0.9312242280916017,3.9909000000000034,,2.8214285714285716,3.314099581200558,2.4592060147353023,2.813390925816994,-11.81337565177964,2.973225214198287,2.7975051744187835,-4.868248815495946,220.4282999999993,43.544118157097074,0.0,14.783797982648164,11.332896515558172,99.51587194343308,66.00075636692314,70.93452509437687,0.0,5.749511833283905,4.90527477843843,0.0,6.340359303727752,3.4339872044851463,7.995306620290822,6.008813185442595,9.761405420601672,8.3243363327069,11.595196457403022,72.33333333333333,12.182806735333964,0.0,3.75189281448439,0.0,0.0,1.9379386661314633,4.4640213809835005,0.0,114.55200000000002,0.0,42.72680600157781,0.0,0.0,0.0,4.105950758856759,0.0,-1.9193935614554907,132.0908274202286,9.636772684650527,5.687386274683562,5.749511833283905,133.39536494026942,45.84500297533518,11.332896515558172,75.25960218364138,48.55024262443742,0.0,10.902924932081056,0.0,67.52052285405048,76.11496646706587,77.34387995082939,815.6147781939399,,706.5198681519418,700.7964437287186,707.6515148036265,706.6039803132568,863.1325902098631,704.6087330439373,706.8133393951355,790.9355511649258,77.34387995082939,815.6147781939396,,703.8897228734912,697.7070288648874,705.3590346203987,703.9813277552919,871.4432920008139,701.8370824205322,704.2054955884738,794.3463123910326,5.480854218423646,570.1418427233539,,495.6777440019556,492.8053636641187,496.51786032204814,495.7207709837376,576.0273072172404,494.73151514786383,495.82364979606393,538.2432683919985,1.3109132195055828,13.82397929142271,,11.974913019524436,11.877905825910485,11.994093471247906,11.976338649377233,14.629365935760392,11.942520899049784,11.979887108392127,13.405687307880097,2.79590870065101,407.2136833838949,,352.83520882863905,350.01642073780454,353.4335478175004,352.8767446936264,429.38520691360503,351.89750858334105,352.9791922369436,394.04371367301053,112.94901960784314,0.0,11.493650633917163,0.0,0.0,0.0,25.305181909574042,117.37581937363437,6.387170403874341,0.0,23.936517771858266,0.0,-2.5929142678883057,6.682745104287832,-6.545707684869081,0.0,0.0,71.17805251373908,900.1299874801224,173.45659948225577,440.6280306749918,652.0449662120964,724.2837971696234,742.548459676114,748.548459676114,6297.0,214.20578437146006,114.79870509961059,117.36467930309635,154.10000000000002,154.10000000000002,1.0,10.060975625815264,7.066089190457772,5.153421841828809,7.5747811108817364,,7.571149516813283,7.571694939117904,7.568032190644309,7.571132811686112,7.518289924008058,7.5712189676050725,7.5711314639796825,7.551068735103233,0.0873461329123527,0.12838612052341927,,0.12832456808158108,0.1283338125274221,0.1282717320448188,0.1283242849438324,0.1274286427797976,0.1283257452136453,0.12832426210135056,0.12798421584920736,3.4146132802544735,3.7997768056363657,,3.7992972584593296,3.799369295427872,3.7988854361728586,3.799295052038024,3.7922910592909425,3.799306431501428,3.7992948740320927,3.796641458473049,606.7100000000025,3086.923459946415,557.5831682532121,,556.9998669150427,556.5785001286548,558.087178479077,557.0089987296675,574.2492195208396,556.902367198189,557.0172484103614,565.1793579497551,52.32073660926127,9.450562173783256,,9.440675710424452,9.433533900485674,9.459104719984357,9.440830486943517,9.733037618997281,9.439023172850662,9.440970312040024,9.579311151690764,9.809882580790418,8.09856402384286,,8.097517351907229,8.096760572108037,8.099467534923221,8.097533746417016,8.128015833352121,8.097342292168381,8.097548556984925,8.112095479380937,23.936517771858266,53.16144392035004,26.330912398105045,-1.6246730221447003,-1.5628213619726945,10.952784243529363,5.944736805409448,8.6246074393296,6.153158472202293,754.3616852446365,199.5417182330782,-1089.6246611690447,-32.06317810608628,-9.313031292043117,-34.050770661532646,830.538532788528,4535.268491175681,44.96437697459182,38.762978557057096,53.35609989618448,11658.0,140.0,5.894661387529561,3.520074720950141,0.4924178369828622,0.2874858617962213,2.1036574926449623,0.865793744401961,0.3540884599911388,0.12578995283022973,0.0,0.0,0.0,0.0,0.2174563090207275,0.12807458365518543,0.9168234121520207,0.4971432615100697,2.087786924529098,1.0666675385392546,41.862867593890385,35.30018383407435,28.220714523448365,21.213077288186387,27.03635929243977,18.203947641353682,25.288644643268977,15.598755531983981,23.308687913092335,13.50609086349419,21.072648672147913,10.994983078181948,17.470561363470313,8.252175382468485,14.59868892975361,6.225415384202671,15.709562229714985,8.443092418731872,31.162010486690715,15.661024161304667,58.54458361518621,26.195613079953954,200.41053436537828,74.93828429609728,39.31166063795921,30.44394099214478,28.51902763031302,28.013581135103443,350.0,453.0,127.11199399999997,73.43400600000014,0.3247863247863248,1067.13,20.3125,12.763888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,1.0,1.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,5.0,6.0,0.0,15.0,16.0,117.0,0.0,2.0,125.0,16.0,4.0,11.0,114.0,20.0,67.0,105.0,0.0,0.0,2.0,46.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,12.0,3.0,6.0,59.0,13.0,0.0,4.0,9.0,0.0,9.0,7.0,0.0,1.0,0.0,1.0,3.0,4.382026634673881,9.039144197965646,4.988730458708206,5.599809884273223,6.219471254088179,6.79556594436856,7.262880585352543,7.767631070571374,8.23138956191861,8.611604529883692 +5284594,C=C1CC[C@@]2(O)[C@H]3Cc4ccc(O)c5c4[C@@]2(CCN3CC2CC2)[C@H]1O5,0,20.44,5.968497999999999,3.7,6.08,161.06433397427452,80.38096386000001,1.4564366924244998,6.045897999999999,3.4119444444444444,7.531384399999999,211.2687010324787,23.636363636363637,6.248636363636363,4.7272727272727275,6.218181818181818,143.86919333107272,89.13021778181819,1.8489839109454547,6.401227272727272,2.606691919191919,7.682317236363636,267.5964969037617,20.323809523809523,6.128380952380953,4.447619047619048,5.304761904761905,150.16809253633897,75.46552338095239,1.6220067710442,6.2556095238095235,2.3664021164021163,7.611001485714285,229.89004201549602,18.256410256410255,6.112692307692307,3.7628205128205128,4.397435897435898,153.92010463110338,66.75195155769231,1.4528185718963396,6.217350641025641,2.5973112535612537,7.632338641025642,202.60602972855864,15.071065989847716,6.050700507614214,3.1116751269035534,3.1065989847715736,157.976323434544,53.04392197461928,1.2964534739637867,6.134868527918781,2.4710236886632826,7.622523269035533,174.8936181747138,11.838235294117647,5.818950980392157,2.6911764705882355,2.093137254901961,160.03254685233972,39.69825697058823,1.1769910078524655,5.8986205882352944,2.212554466230937,7.433134588235293,149.05036985283036,10.914772727272727,5.726613636363637,2.3011363636363638,1.6761363636363635,161.5497143477537,36.40943806818182,1.094914369148568,5.800440909090908,2.4417613636363638,7.364660318181819,135.9993419429729,7.8493150684931505,5.687349315068492,2.0342465753424657,0.9315068493150684,166.53803637762087,23.284623910958903,0.9570332637017123,5.736795205479453,2.1491628614916287,7.375814657534247,111.24113478744256,7.565217391304348,5.385913043478261,1.9891304347826086,1.0434782608695652,167.22468700431796,24.111031032608697,0.9289733428717935,5.44708695652174,1.6219806763285025,7.092458304347827,106.14257588845312,7.1903999999999995,0.10532003999999993,0.020092130074389168,0.81,3.3904,1.3879403766182485,34.29451617000001,0.23559622045224995,0.10107875999999992,1.0812333333333337,0.06515604639999997,51.862290431945695,0.485963636363636,-0.004431021818181769,-0.008423155976932441,0.3845454545454545,1.0656000000000003,0.03182009921193237,2.3987123136363535,0.0222271188702046,-0.0027715236363636668,-0.11447575757575755,-0.004175589672727304,4.966606867237558,0.5014095238095233,-0.0008281542857142536,-0.0023551778807522944,0.05190476190476191,0.450361904761905,0.030952816816045572,2.3971612509523754,0.005051987001578608,0.0010692209523809261,0.014123809523809526,-0.0020395679238095457,2.965062438640795,0.4026769230769228,0.010584254871794898,0.0029525083046421843,-0.03820512820512819,0.22216410256410266,-0.06604193894628817,1.834711889999997,-0.010945059551737156,0.010399893846153824,0.0666655270655271,0.005899623343589719,-0.41860783083965475,-0.6330395939086294,-0.009611369949238547,-0.0015729945365134826,-0.13385786802030453,-0.3975065989847715,-0.018863756153820955,-2.9894599049238595,-0.00799541821372461,-0.009576171167512693,-0.05466677946982515,-0.004914051273096467,-2.865383330954822,-0.9096156862745098,-0.00777304,-0.00023951281542398847,-0.152156862745098,-0.47490980392156856,-0.11940798615507098,-4.350362746764705,-0.024133231184894608,-0.008602563921568614,-0.009917973856209164,-0.0038202248313725417,-6.299890922085361,-0.09539999999999983,0.006832084999999979,0.0015614943273853414,-0.053749999999999985,-0.14426363636363648,-0.17564856251549424,-0.5516699395454521,-0.025973975088056822,0.006158353636363644,0.11223573232323235,0.0042345254181818314,-4.21620484105696,-1.09012602739726,-0.01596980712328768,-0.002300094335542113,0.0687671232876712,-0.43396164383561675,0.07744608280154079,-5.09152831616438,0.005959555269890383,-0.017069554520547918,-0.21863439878234406,-0.007870052427397243,-2.7166171466494484,1.704817391304348,0.01669015565217384,0.002058591175169382,0.09326086956521736,0.6313391304347824,0.11422467448918432,8.096074507391311,0.026045187041358667,0.018498261739130443,0.08624251207729466,0.007255640556521789,9.243363815874485,,,0.4760000000000001,0.97,0.3,0.02,0.67,-0.37,1.2013967346399324,0.014829387471593378,0.03546938747159338,0.6429576980242462,0.15020881820230542,0.331530336821025,1.8443544326641785,0.4817391550233305,2.1131016142699464,1.7937530584521182,0.09049574437513871,0.22885281144268896,0.0,0.3193485558178277,6.783668873200014,1022.0,298.4249,185.0,304.0,8053.216698713726,4019.0481930000005,72.821834621225,302.2949,170.59722222222223,376.56922,10563.435051623936,1300.0,343.67499999999995,260.0,342.0,7912.805633209,4902.161978,101.69411510200001,352.0675,143.36805555555554,422.52744799999994,14717.807329706895,2134.0,643.48,467.0,557.0,15767.649716315593,7923.879955,170.310710959641,656.8389999999999,248.47222222222223,799.1551559999999,24138.45441162708,2848.0,953.5799999999999,587.0,686.0,24011.536322452128,10413.304442999999,226.639697215829,969.9067,405.1805555555556,1190.6448280000002,31606.540637655147,2969.0,1191.988,613.0,612.0,31121.33571660517,10449.652628999998,255.40133437086598,1208.5690999999997,486.7916666666667,1501.637084,34454.04278041862,2415.0,1187.066,549.0,427.0,32646.639557877304,8098.444422,240.10616560190297,1203.3186,451.36111111111114,1516.359456,30406.275449977395,1921.0,1007.884,405.0,295.0,28432.749725204652,6408.0611,192.704928970148,1020.8775999999999,429.75,1296.1802160000002,23935.884181963233,1146.0,830.353,297.0,136.0,24314.553311132648,3399.5550909999997,139.72685650045,837.5721000000001,313.77777777777777,1076.86894,16241.205678966613,696.0,495.5040000000001,183.0,96.0,15384.671204397253,2218.214855,85.465547544205,501.13200000000006,149.22222222222223,652.506164,9765.116981737687,359.52,5.266001999999997,1.0046065037194585,40.5,169.52,69.39701883091243,1714.7258085000003,11.779811022612497,5.053937999999996,54.06166666666669,3.257802319999999,2593.1145215972847,26.72799999999998,-0.24370619999999732,-0.4632735787312843,21.15,58.60800000000002,1.7501054566562806,131.92917724999944,1.222491537861253,-0.15243380000000167,-6.296166666666665,-0.22965743200000172,273.1633776980657,52.647999999999946,-0.08695619999999663,-0.2472936774789909,5.450000000000001,47.288000000000025,3.250045765684785,251.7019313499994,0.5304586351657539,0.11226819999999724,1.4830000000000003,-0.2141546320000023,311.3315560572835,62.817599999999956,1.651143760000004,0.46059129552418077,-5.959999999999997,34.657600000000016,-10.302542475620955,286.21505483999954,-1.7074292900709964,1.6223834399999966,10.399822222222227,0.9203412415999961,-65.30282161098614,-124.70879999999998,-1.8934398799999936,-0.3098799236931561,-26.369999999999994,-78.30879999999998,-3.7161599623027284,-588.9236012700003,-1.5750973881037482,-1.8865057200000006,-10.769355555555554,-0.968068100800004,-564.4805161980998,-185.5616,-1.58570016,-0.04886061434649365,-31.039999999999992,-96.88159999999999,-24.35922917563448,-887.4740003399999,-4.9231791617185,-1.7549230399999973,-2.0232666666666694,-0.7793258655999985,-1285.1777481054137,-16.79039999999997,1.2024469599999963,0.2748230016198201,-9.459999999999997,-25.39040000000002,-30.914147002726985,-97.09390935999957,-4.571419615498001,1.0838702400000013,19.753488888888892,0.7452764736000024,-742.0520520260251,-159.15839999999994,-2.3315918400000015,-0.3358137729891485,10.039999999999996,-63.358400000000046,11.307128089024955,-743.3631341599995,0.8700950694039958,-2.492154959999996,-31.92062222222223,-1.1490276543999975,-396.62610341081944,156.84320000000002,1.5354943199999933,0.18939038811558315,8.579999999999997,58.083199999999984,10.508670053004957,744.8388546800006,2.3961572078049973,1.7018400800000006,7.934311111111109,0.6675189312000046,850.3894710604526,0.6789730806303463,0.5800240581436319,0.40144929585277545,0.32350545146791543,0.2428073593981073,0.17815834195892863,0.14438274856339195,0.09516380119426926,0.08454967335696643,0.05142894226908015,0.05270815893435076,0.029076051588616963,0.032684228784770786,0.016232144489491836,0.020054734586819684,0.00919245939658588,8.011118064090459,5.682485806176642,3.5219770122001846,2.1816689315864193,0.4206864454808052,-0.5120254779285565,4.121031184692219,0.9779621447071035,6.008414191362407,1.8947171871957875,14.543274980026812,10.942983295766208,16.005252816858786,11.693979319660357,2.0008948120314853,0.7778506727942728,3.464876592751629,2.2314863704169436,6.003747999356292,1.071385652598318,3.678344395792753,2.4275045349213578,20.906824377027252,14.706178558456617,0.23493810786750716,0.5898103463956655,0.8030159488067489,0.8846119246244676,0.8982112539274206,0.8982112539274206,1.4612837792605757,800.5760550893917,0.0,1.0,2.0,0.0,4.0,8.0,3.0,2.0,1.0,4.261799162497711,2.1742124551085626,0.919999999999999,0.4399999999999986,0.35999999999999943,0.35999999999999943,213.246071371351,1094.4565120923394,53.48342910350977,21.889130241846786,42.34666669271826,,10.0,432.0,11.016041280380467,10.213054789681411,17.89531905018017,5.749511833283905,55.827261371456835,18.405094737549014,6.06636706846161,6.06636706846161,11.478845414448976,4.736862953800049,11.900000000000002,24.25,7.5,0.5,16.75,0.0,0.023999999999999914,-9.25,0.10015384615384598,0.03503448275862053,-0.06511936339522545,0.03762962962962957,0.12489108910891056,0.0,0.5540000000000002,0.8079999999999997,0.4538461538461542,0.5189655172413796,0.7703703703703701,30.03491836599831,0.37073468678983446,0.8867346867898345,16.073942450606154,3.7552204550576356,8.288258420525626,46.10886081660446,12.043478875583261,0.5891089108910894,0.09803921568627448,0.08403361344537813,0.36974789915966383,0.6190476190476191,0.2941368188306445,-0.6215492362013797,-0.0587402692872799,-0.012430984724027592,-0.036561719776551746,0.7058631811693555,1.491580424588383,0.044523240181278706,0.029831608491767657,0.04519940680570857,-3.6577098642411587,0.8574058340413481,0.8818321755289877,1.3303623609190176,0.7699214365881032,0.6122635033677978,1.1562352863513645,0.8597600526680779,1.0275385587396109,0.8621334671911471,0.9662249712963402,0.9162760205335436,0.9546101638654544,0.8722741433021808,0.8704180768129851,0.9893381580818597,1.417283950617284,0.9538697498820197,1.1174821144925908,0.8755837737579993,1.0362163372464517,0.8505367497583076,0.6316132468751389,0.8725566053784791,0.9606046033553198,0.9212871435418165,0.9359817430318543,0.8436661564485864,1.3494776828110162,1.0051949093065184,1.1255600821632803,0.9237607798953628,1.0659087968731,0.9180714052167761,0.9318923184165805,0.9567076368753888,0.9988533392486313,1.0955314926388031,1.2778489404565612,1.2082932438823248,1.2129472958576173,1.19875647693218,1.0304964283467581,1.0915209926013045,1.0159862241293687,1.254152933319066,1.1181723499208434,1.3006719079845406,1.020157871453181,1.0993620579072751,1.0166411470647922,0.9329502027920059,1.1209150326797386,1.1236166245639359,1.0578462252963081,1.100223050038354,1.0778478275387156,1.0324755956758518,0.8529483421961644,0.9934792633518685,1.1003464416654396,0.9838639018691588,0.8299585439338473,0.749485329351121,0.8833473625140291,0.9082127611652151,1.0553094210366187,0.9876902743271342,1.0788850011983813,0.8478801130380453,1.0427180199426205,0.8193469963071748,1.063623795934817,1.159422609140955,1.2303180271828273,1.194394334372269,0.6422289869778454,1.0483064187682223,0.8261104586254796,1.1536079416203562,0.8965846776684591,1.245548046442146,1.5051885615150289,1.2109266944473625,1.0011742870373264,0.7014636665312203,0.4301981762486492,0.6354740958246433,0.5589103596349972,0.6346564211994993,0.7806346035100615,0.7078244733158506,0.8293240829747256,0.46287677915286257,0.29364055987235893,0.3899154563377159,0.8155753130092016,6.5,0.020000000000000004,5.611111111111112,3.4097222222222223,3.2588888888888894,1.215,0.6947845804988662,0.21701388888888887,0.11060720584530107,0.07125000000000001,5423.142606037805,6198.743809164252,2475.549289790505,2216.692994432334,11.990540501282167,0.46624006025658304,6.40007017545537,0.8735014105418042,1.0,0.6190476190476191,1.3820570272770136,3.4696437346661617,4.723856189774725,5.203856189774726,5.283856189774725,5.283856189774725,0.21666666666666667,0.010000000000000002,0.11938534278959816,0.05779190207156309,0.05717348927875244,0.02892857142857143,0.021712018140589567,0.014467592592592596,0.010055200531391006,0.014250000000000002,0.550430783499725,16.0,5.0784,1.9092702169625246,147.64862243971797,1.0,4.255733482438945,98.95954854283238,,87.02787581941705,85.96143199122805,86.19519612744736,87.04035391936605,108.1855731226667,86.63054636406221,87.08641159750705,100.44199077839048,0.06758506291216566,-0.042071972420270366,-0.4192266298170737,0.47474747474747475,0.31429919773478066,0.022926128346711,0.0699444862188984,0.09434412329509138,-0.027419446344253424,-0.1058751650051708,-0.06408598899775027,0.09576528197794884,0.06973318922584604,-0.007863216589304885,-0.11721892462533719,0.06407995296884188,0.1328344457178814,0.022301258279885827,0.0698992585015488,0.0214434127673221,0.010578097242001455,0.013062684148172939,-0.03130281894773693,0.05717183745541637,0.05600201978706648,0.10049611519132451,0.14694849643670468,-0.047166824944602705,0.0655274016529326,-0.04758269163348429,0.05349869585286517,-0.04645685542292251,0.10288901294548759,0.06165692918475236,0.09054606087317357,-0.008071526100239573,-0.08803955188982943,-0.09125870014138386,-0.07828908785129413,-0.16525662718556114,-0.1172447495825777,-0.013591186243736902,-0.08717020208434854,-0.03393695449942543,-0.09473969771208808,-0.05055965052547257,-0.07541972763246833,-0.05524984159183659,-0.12650418422820844,-0.07380399779567122,-0.011920727893817899,-0.18784797869765185,-0.1400748595804532,-0.08603250410944274,-0.12685301420202844,-0.10243471282590406,-0.08510753319063886,-0.00917283397620849,-0.05863193122430681,-0.12147344187106723,-0.013267690253671539,0.06486975318277494,0.07771671403699157,-0.066358024691358,-0.042550624222403396,-0.1265533919716828,-0.016086243550158006,-0.11024784284823093,0.06092628793985649,0.10380343341545054,0.0649905212508694,-0.08129615576060055,-0.15160853741061137,-0.15163122918760466,-0.11447737631730613,0.08489768307119902,-0.12799718140503089,0.05579928655886509,-0.14846479509800822,0.025295631901269194,-0.16887380217711348,-0.20220834119894932,-0.12078775282162064,-0.05238135693629315,0.23709632166560252,0.15847084422085153,0.10245758750056103,0.11513687600644117,0.1862137595666536,0.08229796928849033,0.2360749009333905,0.11055010556350346,0.1830083960184163,0.07976309036960381,0.11135790087659143,0.1782289933377265,11.592461469217021,22.95357100797125,9.396102066235269,12.294901775636756,32.16176036077424,36.94696651552367,37.87092651552367,37.951566515523666,37.951566515523666,52.827540356748656,44.84382646130295,2.262393609378468,5.721320286067224,0.0,7.983713895445692,3359.3365458122043,2847.313928951816,1119.814053430882,556.0,50.0,78.0,122.0,186.0,248.0,326.0,425.0,507.0,339.1834436600007,30.0,5.081404364984463,6.0473721790462776,7.039660349862076,8.031060180240619,9.032050676295599,10.033155240658164,11.038544268141527,12.044218201095644,13.052110426636549,0.6066666666666667,0.9685600000000001,1.1222003410211097,0.5652068936807926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6616266467065869,0.9561568627450981,0.9950619082301528,0.613504168532465,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,8.0,0.0,1.0,0.0,3.0,1.0,2.0,0.0,0.0,14.94991774348146,6.103966387748303,11.49902366656781,0.0,0.0,4.899909730850478,0.0,0.0,0.0,12.645302752060108,68.19051527985789,18.150048726757532,11.016041280380467,152.34273730983878,-321.91995681532353,-30.42343848389021,-6.4383991363064705,-18.936468047960208,365.5888086811898,772.536555277016,23.059990619619562,15.450731105540317,23.410198644758054,0.5,0.8381638849518945,0.23862541853001035,129.5567482088354,0.13879599046979185,170.80006902043758,0.16183611504810544,5.0,0.06666666666666667,0.24487814373813424,0.6147647314175546,0.8369908854752869,0.9220391191403547,0.9362138247511993,0.9362138247511993,2.512500000000001,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,93.93060000000004,14.94991774348146,0.0,4.899909730850478,5.917906046161393,61.686778234832786,13.08951281182515,35.411677333984976,0.0,11.49902366656781,4.110873864173311,1.9459101490553132,5.564520407322694,3.9318256327243257,7.247792581767846,5.8998973535824915,9.053569596026234,7.9102237070973445,10.930621741236532,30.333333333333332,3.8079947719828673,0.0,0.0,0.0,0.0,0.0,3.150876663937181,0.0,48.428000000000004,4.277056432140757,0.0,0.0,0.0,0.0,0.0,0.0,1.0717758461409257,56.11001705105548,4.736862953800049,0.0,11.49902366656781,45.94933536023699,11.83581209232279,5.917906046161393,43.23101109802404,24.284774350590983,0.0,0.0,0.0,28.26034468403963,33.08133233532934,33.839356543376546,200.1181642172282,,175.2643131738592,173.0554558749698,173.44825044898772,175.2895887879277,218.28614736725856,174.46446333231341,175.3823198160173,202.13355673813425,33.839356543376546,200.11816421722818,,174.53954816553446,172.22463232995125,172.82403088139824,174.56651328184066,220.24398096508224,173.7239293378293,174.6607348516659,202.92203693059142,5.429773503777292,135.8516738827518,,121.19643894901003,119.71308083243504,119.22966780052977,121.21138399574679,149.54232176792615,120.60566388952947,121.28187389746452,139.20756587666222,1.353574261735062,8.00472656868913,,7.010572526954368,6.922218234998792,6.937930017959509,7.011583551517108,8.731445894690342,6.978578533292537,7.015292792640691,8.08534226952537,2.7513102923401034,98.95954854283238,,87.02787581941705,85.96143199122805,86.19519612744736,87.04035391936605,108.1855731226667,86.63054636406221,87.08641159750705,100.44199077839048,47.807843137254906,0.0,0.0,0.0,0.0,0.0,22.489529447224253,49.753095411507644,8.108796852431412,0.0,6.2874559870244395,0.0,0.7840966710758371,2.5573899281934995,-1.201639266817838,0.0,0.0,30.67520842662325,434.11151672698134,69.10285136385068,173.48218673330808,236.19280948873626,260.1928094887363,264.19280948873626,264.19280948873626,2553.0,136.39957588696092,83.82002926404721,81.5952350329861,52.93000000000001,52.93000000000001,1.0,8.788393304546128,5.906890595608519,4.289862738352683,4.913842424339121,,4.917131293060532,4.918051063371633,4.918313066598939,4.9171220824423045,4.891433314191017,4.917536565544002,4.917073238115836,4.902859510017562,0.17159450953410732,0.19655369697356484,,0.19668525172242127,0.1967220425348653,0.19673252266395758,0.19668488329769218,0.1956573325676407,0.19670146262176008,0.19668292952463343,0.19611438040070248,2.3725454685802214,2.50834693877994,,2.5090160218105018,2.5092030585690384,2.5092563309416156,2.509014148639682,2.5037761036987214,2.5090984389270785,2.509004215071174,2.5061093402509265,251.98000000000025,245.45039529015648,162.9622151882721,,161.9031957852055,161.7639659930996,162.00461074176422,161.90542633236572,165.64563486762472,161.8590954955605,161.91008982340801,164.05951039736863,9.818015811606259,6.518488607530884,,6.47612783140822,6.470558639723984,6.480184429670569,6.476217053294629,6.6258253947049885,6.47436381982242,6.476403592936321,6.562380415894745,6.419385602848122,6.00980909714823,,6.0032893316168225,6.002429004607257,6.003915528070437,6.0033031085641175,6.026141508734215,6.003016907736059,6.0033319119463515,6.016519962154221,6.2874559870244395,2.5573899281934995,22.489529447224253,2.2065660955740336,1.6372309880742426,3.964515936004031,5.787642279491125,6.403002671747711,0.0,313.55500062351877,78.90310945538995,-166.73250091872566,-15.75725852832421,-3.3346500183745134,-9.807794171689746,189.34997687726698,400.1210524092086,11.943496592158175,8.00242104818417,12.124880376036621,1189.0,59.0,2.509481157309667,1.6095537527835104,0.1609876377148447,0.09667458276674672,1.2212686088130609,0.5882327233608606,0.3024624258760723,0.13570259067236623,0.28867513459481287,0.28867513459481287,0.2041241452319315,0.2041241452319315,0.1858925119417351,0.12074987546696717,0.5242686383404033,0.3117213530685471,1.4205006221612275,0.7100247145698583,16.974327015758657,14.500601453590798,12.043478875583263,9.705163544037463,12.140367969905364,8.90791709794643,11.261854387944572,7.422776493153002,10.315060149549906,6.274330956827779,9.803717561789242,5.408145595482755,8.105688738623154,4.025571833393975,6.537843475303217,2.996741763286997,7.042643131405384,3.9862844343355492,13.666668327437211,7.216517571898168,26.85901974850657,12.66756255528103,85.36637832823205,37.997636295918625,25.61984041514747,22.278441749462853,21.8554247590989,21.8554247590989,160.0,211.0,55.245824999999975,28.526174999999995,0.44,300.04,6.875,5.034722222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,0.0,6.0,6.0,50.0,0.0,1.0,55.0,6.0,1.0,4.0,51.0,7.0,30.0,48.0,0.0,0.0,2.0,21.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,4.0,2.0,2.0,25.0,4.0,0.0,1.0,3.0,0.0,6.0,2.0,0.0,1.0,0.0,0.0,1.0,3.5553480614894135,7.520149864541484,4.1666652238017265,4.725172978382788,5.302682824057676,5.881405510668602,6.2504577513158885,6.631383997676223,7.030719314494436,7.325004843487263 +2794,CC(C)N=c1cc2n(-c3ccc(Cl)cc3)c3ccccc3nc-2cc1Nc1ccc(Cl)cc1,1,32.14545454545455,5.980861818181816,3.672727272727273,7.076543209876543,157.68936483340508,131.19407038181822,1.8077560710305085,6.163365454545451,2.680495628438015,7.570144254545451,256.3635878986416,27.983050847457626,6.236932203389831,4.288135593220339,7.766478342749529,143.64121415195257,108.21962106779662,2.0414153018644066,6.4313050847457625,2.9489084187765924,7.6580296949152515,293.5755900012068,25.724489795918366,6.173408163265306,4.071428571428571,6.605442176870747,148.84037125436723,98.81548694897964,1.8346952398887149,6.3495255102040815,2.819035021415974,7.641408938775506,259.06790315927947,22.1015625,6.194045312500001,3.609375,5.533854166666667,157.65175235887108,82.39504534375,1.6246499032268513,6.346548437500001,2.6890914351851847,7.724217562500002,223.7599430168748,20.161538461538463,6.055775384615385,3.6,5.232478632478632,156.26651858279033,74.57084988461537,1.6104506119021686,6.20187076923077,2.5374485596707816,7.591369476923076,220.48144007000258,21.353383458646615,6.0343383458646604,3.661654135338346,5.285714285714286,150.0229816982849,80.00830660902255,1.7118645731465418,6.185075187969925,2.7163742690058474,7.511774135338345,236.94209055946945,18.740506329113924,5.982050632911392,3.2088607594936707,4.198312236286919,154.37040228008658,68.56097046835443,1.558449902010025,6.119642405063291,2.57571495546179,7.505648873417718,209.2277319034313,18.401234567901234,5.935296296296297,3.006172839506173,3.4403292181069953,159.09657429378132,67.92713627777778,1.4561072521325307,6.064558641975308,2.413389727175735,7.504783753086418,192.46502216954497,20.069444444444443,6.000529166666668,2.861111111111111,2.8634259259259256,157.4126723213292,73.70279538888889,1.539066526338437,6.16733888888889,2.4245827617741202,7.602711444444442,200.58527168687368,12.140165289256192,0.05916079338842969,0.00975737758921919,0.6261157024793388,3.252345679012347,1.5459348375584299,57.10861358809916,0.25571822635384267,0.07323887603305779,0.28129976658970296,0.04340188628099171,52.34335425263195,0.22870990334780816,0.0012592990614932863,-0.004596998270242902,0.20500910491665505,1.1647290228081193,-0.1780950149238685,1.1040978707606195,-0.0026975124687620977,0.0016462703459869032,-0.047559067416904965,-0.001054616635383197,0.7649436251677111,0.8199460279979764,0.006054642604149153,0.0001896752435331467,0.047168156518805945,0.43014361300075576,-0.43439012047722025,3.856999979618827,-0.012116739803928654,0.007388452352842008,0.049069277565349435,0.0008458005464664414,-0.5754458699622399,-1.0479777892561981,-0.0070397990702478555,0.00014716048903161373,0.08325929752066119,0.17271219135802462,0.14298177172921822,-4.834183591082125,0.005644723287377391,-0.009804543646694154,-0.01954893133385226,-0.006407488553719146,0.540875208586737,-0.7414240305149398,-0.003356261919898246,-0.0013471425537980083,-0.012968849332485672,0.11126305792972457,0.3014704068902926,-3.36851238502225,0.019202005038828122,-0.005899980928162719,0.004989297950390375,-0.003925630616656116,4.0119006817113405,0.027982352575654044,0.0077775524762319255,0.0021252923074988835,-0.07669670042875783,-0.2349317738791422,-0.03850880881789836,-0.026834420088234494,-0.023972765174412936,0.008289900453613398,0.029810755902669215,0.007610528483191466,-3.970131182503095,-0.7161146563448061,-0.007084245632388303,-0.0007933215098733956,-0.07456219269798094,-0.4323112986404125,-0.21169648546753325,-3.4471369693419813,-0.026592652196849077,-0.007492926665969226,-0.030197957401994942,-0.0035711435882414353,-6.279524699178567,0.9129211304968882,-0.005192308539944896,0.00023038322222423635,-0.12095296398326699,-0.589885688157293,-0.0029114393343158363,4.367400293157838,0.025198763486538933,-0.0028230174471992765,-0.0022470974402498145,-0.0028718009835730913,3.331841629127535,-0.9873875114784205,-0.013357384297520624,-0.0007452896675167595,-0.1528833792470156,-1.0742421124828532,0.0391760106568457,-4.725291801230485,-0.016962122574701363,-0.012732184113865896,-0.07726086842500464,-0.003889718099173604,-6.29812818868406,,,0.5008658008658009,1.4772727272727273,0.8333333333333334,0.06060606060606061,0.6439393939393939,0.1893939393939394,0.8223647191846788,0.013328687161737282,0.02635899019204031,1.1581009787700518,0.2827271191332277,0.201344604686038,1.9804656979547306,0.4840717238192656,2.0774073794877097,1.7119918372731155,0.25856642007705155,0.0,0.10684912213754268,0.3654155422145942,8.584039128436375,1768.0,328.94739999999985,202.0,389.2098765432099,8672.91506583728,7215.673871000003,99.42658390667796,338.9850999999998,147.42725956409083,416.35793399999983,14099.997334425288,1651.0,367.979,253.0,458.22222222222223,8474.831634965201,6384.957643000001,120.44350281,379.447,173.98559670781896,451.82375199999984,17320.959810071203,2521.0,604.994,399.0,647.3333333333333,14586.356382927988,9683.917721000005,179.80013350909405,622.2535,276.2654320987654,748.8580759999996,25388.654509609387,2829.0,792.8378000000001,462.0,708.3333333333334,20179.424301935498,10546.565804,207.95518761303697,812.3582000000001,344.20370370370364,988.6998480000002,28641.272706159973,2621.0,787.2508,468.0,680.2222222222222,20314.64741576274,9694.210484999998,209.35857954728192,806.2432000000001,329.86831275720164,986.878032,28662.587209100337,2840.0,802.5669999999999,487.0,703.0,19953.05656587189,10641.104779,227.67798822849005,822.615,361.2777777777777,999.0659599999999,31513.298044409436,2961.0,945.1639999999999,507.0,663.3333333333333,24390.523560253678,10832.633334,246.23508451758397,966.9035,406.9629629629629,1185.8925219999994,33057.981640742146,2981.0,961.5180000000001,487.0,557.3333333333333,25773.645035592574,11004.196076999999,235.88937484546997,982.4585,390.9691358024691,1215.7749679999997,31179.333591466286,2890.0,864.0762000000002,412.0,412.3333333333333,22667.424814271406,10613.202535999999,221.62557979273495,888.0968000000001,349.1399176954733,1094.7904479999997,28884.27912290981,667.7090909090906,3.2538436363636327,0.5366557674070555,34.43636363636363,178.8790123456791,85.02641606571365,3140.973747345454,14.064502449461346,4.0281381818181785,15.471487162433663,2.387103745454544,2878.884483894757,13.493884297520681,0.0742986446281039,-0.27122289794433124,12.095537190082648,68.71901234567903,-10.507605880508242,65.14177437487655,-0.15915323565696377,0.09712995041322729,-2.805984977597393,-0.06222238148760863,45.13167388489495,80.35471074380169,0.5933549752066171,0.018588173866248378,4.622479338842982,42.15407407407407,-42.57023180676759,377.98599800264503,-1.1874405007850082,0.7240683305785168,4.808789201404244,0.08288845355371126,-56.39369525629951,-134.14115702479336,-0.9010942809917255,0.018836542596046557,10.657190082644632,22.107160493827152,18.301666781339932,-618.775499658512,0.722524580784306,-1.2549815867768517,-2.5022632107330893,-0.8201585348760507,69.23202669910233,-96.38512396694217,-0.43631404958677195,-0.17512853199374107,-1.6859504132231373,14.464197530864194,39.191152895738036,-437.9066100528925,2.496260655047656,-0.7669975206611536,0.6486087335507488,-0.5103319801652951,521.5470886224742,3.7216528925619876,1.0344144793388461,0.2826638768973515,-10.200661157024792,-31.24592592592591,-5.121671572780482,-3.568977871735188,-3.1883777681969203,1.102556760330582,3.9648305350550057,1.012200288264465,-528.0274472729117,-113.14611570247936,-1.1193108099173519,-0.1253447985599965,-11.780826446280988,-68.30518518518518,-33.44804470387025,-544.647641156033,-4.201639047102154,-1.1838824132231378,-4.771277269515201,-0.5642406869421468,-992.1649024702135,147.89322314049588,-0.8411539834710731,0.03732208200032629,-19.59438016528925,-95.56148148148147,-0.47165317215916547,707.5188474915699,4.082199684819307,-0.45732882644628275,-0.3640297853204699,-0.4652317593388408,539.7583439186607,-142.18380165289256,-1.9234633388429698,-0.10732171212241337,-22.015206611570246,-154.69086419753086,5.64134553458578,-680.4420193771898,-2.4425456507569963,-1.833434512396689,-11.125565053200669,-0.560119406280999,-906.9304591705046,0.6954248033468732,0.5990812624969585,0.4317396455685343,0.3111680770625591,0.28203854492867536,0.16977411871750955,0.17134133462267898,0.0817832356851062,0.10520856890416068,0.04135906602700153,0.06756431973424147,0.021875334822112402,0.04154884710587216,0.010973661587159584,0.02629757085974709,0.005716989398549802,17.002127133550296,5.69104629641017,3.1762310322429173,2.1834112441639424,0.40898948027526466,-0.44460036403853814,3.2857754030849615,0.9883941718374272,5.057948353204961,0.7730717868900141,14.552954344668422,10.9584040188681,35.45152850310016,11.707319176086452,2.210149535579721,1.0006298076940892,3.1858108408739665,2.231046006101648,3.0371631733507884,1.2927770090140234,3.4947281844786153,2.4255420526403495,22.457029904398787,15.586863805010701,0.24012469889717583,0.5071749331185197,0.6730806813996659,0.8183689330906024,0.861849312802642,0.8795303881909825,1.3417168449246224,1469.6398244257894,0.0,0.0,2.0,0.0,24.0,1.0,0.0,0.0,0.0,4.299808330335168,2.652128413571873,1.628502389369034,0.7320847728452815,0.4638140909877633,0.3547231818968548,27.063634624247868,1439.9912501117428,45.32894151758452,26.181659092940777,54.14346112681177,,15.0,811.0,0.0,0.0,6.041840829147961,10.045266627482652,44.84064669728643,0.0,0.0,66.73003775307771,41.93046385656377,33.17826303404791,16.52857142857143,48.75,27.5,2.0,21.25,0.0008658008658008628,0.0,6.25,0.14897102897102976,0.08400742115027915,-0.06496360782075061,0.014413037942449636,0.08002739726027375,0.0,0.594025974025974,0.7900432900432898,0.44505494505494425,0.5100185528756949,0.7756302521008401,27.1380357330944,0.4398466763373303,0.8698466763373303,38.21733229941171,9.329994931396513,6.6443719546392535,65.3553680325061,15.974366886035765,0.6339726027397262,0.14693171996542784,0.0,0.35695764909248057,0.1111111111111111,0.48159038056118564,-0.9434661907799904,-0.033511729562664586,-0.01715393074145437,-0.042884826853635934,0.5184096194388146,1.015597421912174,0.0281568951057561,0.018465407671130432,0.030775679451884055,-9.102578527678657,0.5565196361682844,0.814148484211528,1.540068415197636,0.7308986451416607,0.5366440088397808,1.1731553875128573,0.5603450907582038,0.8058582369954265,0.7024585235859024,1.0306699159302117,0.7150056411740894,0.8040867906891772,0.6139787360320451,0.8857308198920018,1.1454392874769548,1.0640745210438982,0.8744556818393091,1.3388806105152173,0.617402521404209,0.8877832866045674,0.7640426541588837,0.7724800472299821,0.8081490706647307,0.8723924735892973,0.9714302550784232,1.4807823956730342,1.578181458358885,0.931065205913411,1.062679983194379,1.021991541182357,0.9691692055148556,0.8646452029218826,1.3135226604519759,1.237227556487249,1.3413143856218586,0.8746525472435953,0.8538379848013878,1.2012136953297454,1.4891667072459875,1.1459264072780442,1.053311856682643,0.8680660883059496,0.8547727678006625,0.8262199402365563,1.0902183097447236,0.9977257443043536,1.0483589277768894,0.8462401085900338,0.5487847573404704,0.7447314992468954,0.8573672007589856,1.1731347905137717,1.0522787104691298,1.058619935860553,0.5597879391824316,0.9386450240965509,0.6348706278459997,0.8574035704059082,0.4414443488906512,0.9749569335023826,0.721207736395611,1.1359533431953004,1.253540518821987,1.0569854169729862,1.1193950832693538,1.174796768125605,0.7292749887782397,0.9877493533782196,0.9825951681075437,1.183198186123267,0.8443673148202585,1.049546258534062,0.7123860872090916,1.2354158494513348,1.1901470499288962,1.2244808166138688,1.2624575545923855,1.0425614801038412,0.7161570595958463,0.833479161765711,1.0517431317995174,1.159350786549115,0.9763392162732375,0.9050670388280444,1.0811220182986607,1.3589332322500836,1.2250367074779358,1.2196409714889127,1.330145901775115,0.9991887790595724,1.0811959756890948,1.0281932270165752,1.2566816905260996,1.4118792348140912,1.1968608687160238,1.0735634309303832,7.0,0.15243342516069788,3.333333333333335,2.0625,2.5866666666666673,1.1180555555555554,1.2269387755102044,0.8854166666666666,0.6114890400604686,0.350625,7160.454081181369,7829.4815437262805,3254.0472782865936,3027.385894930285,15.709564761041662,0.477668682098527,8.20559766529343,0.9144936666206741,0.0,0.1111111111111111,1.4815513831894924,3.129231299952787,4.152857324155626,5.049274940679378,5.317545622536897,5.426636531627805,0.1891891891891892,0.005444050898596353,0.06289308176100632,0.03683035714285714,0.04703030303030305,0.018328779599271403,0.020795572466274646,0.016098484848484845,0.01273935500125976,0.009226973684210526,0.4185761476214533,24.68371073776479,10.947668209327162,5.713152152350724,202.05918606446951,0.0,4.442183368898823,191.40299859953868,,131.64159964782527,131.66031734993382,129.11049250688657,131.59453973407517,175.22949095002585,132.79084697945837,134.01192747244352,163.4727887092934,0.01883910950950659,0.02128604079436792,-0.4711305090132077,0.327430064610814,0.35811968891382334,-0.11520214862687396,0.019333298453435087,-0.010548768882158182,0.02247809408276319,-0.1690689899727982,-0.024298866380032817,0.014613958850931833,0.06753993940458229,0.10234214684033098,0.019439161987819004,0.07533456888563253,0.1322564251938248,-0.28098863543516084,0.06753797259793023,-0.04738316848468387,0.100881563904764,0.17443767607856106,0.01948764486848739,-0.01099367585777721,-0.08632318953545368,-0.11899433166872736,0.015081971327440437,0.13297749472016904,0.053103885135135094,0.09248887356406062,-0.08464893975450173,0.02207399671060861,-0.13387075522934955,-0.06949501441416359,-0.1476315686427981,0.010333216438064638,-0.06107198813603349,-0.05673118509182541,-0.13806399736815045,-0.020713183331979496,0.0342100960078488,0.19500848261264325,-0.058984313808034955,0.0750904826481078,-0.08055804850827651,0.01773658759435675,-0.09044838722540466,0.0766458462395847,0.0023049399994922535,0.13146464120531914,0.21781388370652927,-0.12249605005121038,-0.07223456454680575,-0.024909723154125433,-0.00046988393522875695,-0.09374679903043485,0.11318989179833386,0.10597504670578153,0.1753501779604582,-0.0758478557438544,-0.05898722457910465,-0.11974561574716469,-0.08130478733854957,-0.1190869233956665,-0.13292292434661934,-0.13693752176636098,-0.0603610690710294,-0.10399200939260493,-0.10230805102179814,-0.10735151958387848,-0.08228083832857405,-0.11996794605234565,0.07519841029716501,-0.08776603967857498,0.0236111824224968,-0.19317989231751992,-0.18137238361957453,-0.0018832872276259805,0.0764753339077375,0.09854113195541596,-0.038545340946044185,-0.007988266280815571,-0.06616765375081925,0.06365357506602669,-0.08133229556209083,-0.2257810203764607,-0.07638216935872413,-0.24417751965270446,-0.3302976431487666,0.025341307864384682,-0.08274219078950265,-0.0663313007311044,-0.1738446137283562,-0.2746567100345144,-0.08962094582689013,-0.12032335868822114,17.70688937106173,35.023281699035174,13.189947885744123,16.6015645461193,31.65019486560579,43.116399240866265,46.1715523289823,47.24218735811285,47.75226008538558,68.55444352309442,56.495730630012815,8.532691862542702,0.0,3.5260210305389084,12.058712893081609,11745.976601370658,9162.846922265106,2911.652305935824,349.0,53.0,71.0,100.0,144.0,167.0,216.0,272.0,318.0,472.12215206400066,37.0,5.198497031265826,6.061456918928017,6.961296045910167,7.852050207265889,8.761393485256058,9.666815400992093,10.582104681311748,11.49599291505882,12.415348483056167,0.7454545454545454,0.9733818181818185,1.109716124146539,0.7166173431929824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7459928796951553,0.9677718360071299,0.9990862742501494,0.6940667616527585,14.0,1.0,0.0,0.0,0.0,2.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,9.883888251797686,0.0,0.0,0.0,0.0,4.992404732635669,4.9839785209472085,0.0,0.0,35.33461391738825,86.64387922092058,27.461880005997738,33.465874147919315,353.98847166228387,-693.4859341460915,-24.632481065805383,-12.608835166292574,-31.522087915731436,381.05210628653174,746.5053159656512,20.696460451779135,13.572823926648203,22.62137321108034,0.4666666666666667,0.9738355609856524,0.1805506807869188,14.573673376670838,0.08503096258217736,17.345753636747133,0.026164439014347916,8.0,0.10810810810810811,0.2562634841287623,0.5412621692838797,0.7183184458217697,0.8733715234613971,0.9197742202577818,0.9386436410336082,7.489800000000005,,1.865546218487395,0.9758865574751672,1.1643201670214702,1.8923702484844624,-1.6048373644703915,1.0308127914723522,0.9806203177720816,-1.1107212534984963,138.13569999999993,0.0,0.0,9.551078168738563,4.992404732635669,19.88931522852921,5.316788604006331,100.33163603425153,0.0,17.075242264380485,4.31748811353631,0.0,5.659482215759621,0.0,7.201170883281678,0.0,8.842026529498812,0.0,10.54046112829013,40.99999999999999,27.777612978520175,4.968389742728367,0.0,0.0,0.0,1.923306577681578,6.070693346139753,2.2077505835514493,53.536000000000016,0.0,0.0,0.0,0.0,0.0,0.0,4.9014241972509165,0.0,61.034386828059645,10.674019052312635,11.374772549367124,0.0,15.592918997886525,0.0,0.0,13.847474399381248,89.92154369109824,10.045266627482652,28.10864369961301,0.0,39.413953875614034,41.02960838323354,43.326930535752105,382.8059971990774,,263.1701358884695,263.2614900600207,258.15042015516576,263.0743903621816,351.2370848646434,265.5192204564032,267.9644234104766,327.48410893543456,43.326930535752105,382.8059971990773,,261.4176530771632,262.3450187474257,257.10539922383407,261.2967092196659,352.0638192645222,264.55088116744435,267.0432346271151,328.05629867208535,5.06827382084934,268.51773359203537,,185.51351044774628,184.57874174689695,180.89469981997223,185.46974464075234,248.3991824610003,186.36755218298114,188.17705464185298,230.93765823503816,1.312937288962185,11.600181733305376,,7.974852602680893,7.977620910909719,7.822740004701993,7.971951223096411,10.643548026201316,8.04603698352737,8.120134042741716,9.92376087683135,2.5341369104246696,191.40299859953868,,131.64159964782527,131.66031734993382,129.11049250688657,131.59453973407517,175.22949095002585,132.79084697945837,134.01192747244352,163.4727887092934,53.22745098039214,0.0,4.143170777902019,12.238946665889422,0.0,0.0,0.0,54.949745083758216,0.0,3.4929088920539137,0.0,0.0,0.13019933799966266,0.0,0.0,0.0,0.0,38.173671890901716,715.8086535740028,81.48532607542208,172.10772149740328,228.40715282855942,277.7101217373658,292.4650092395293,298.4650092395293,1760.0,148.99495516904477,19.231924374812827,69.56062887036656,42.21,42.21,0.875,10.174213991936133,6.20945336562895,4.58853120922866,5.640772795616234,,5.641025089769329,5.629473739449549,5.628624095185989,5.641272898468245,5.643920688814739,5.631833491986185,5.632738722992035,5.639343014203615,0.13904640027965637,0.17093250895806772,,0.1709401542354342,0.170590113316653,0.17056436652078755,0.17094766358994684,0.1710278996610527,0.17066162096927834,0.17068905221187985,0.1708891822485944,2.717482443345208,2.923943545095283,,2.923988270972435,2.9219384319121486,2.921787492689972,2.9240321997357444,2.9245014500635484,2.922357522257999,2.922518244030743,2.9236900403539523,345.49000000000103,491.36978296643053,231.08802218507094,,231.17984950081214,232.601898992122,232.7003761412987,231.14574588827384,230.862632279221,232.33062097310972,232.22477762530758,231.44186878136216,14.889993423225167,7.002667338941544,,7.005449984873096,7.048542393700666,7.051526549736324,7.004416542068904,6.995837341794576,7.040321847669992,7.037114473494169,7.013389963071581,7.391119434944014,6.636721154833936,,6.637118445333984,6.643250872720241,6.643674155200942,6.636970914619958,6.635745336652679,6.642083916062454,6.641628240162646,6.638251203690165,2.2077505835514493,9.869813939979284,5.759117323857561,6.595610614522653,0.0,27.907812316519838,0.0,4.143170777902019,0.0,399.4009773832287,260.195890797863,-509.74030183411725,-18.10587311892284,-9.268005487893042,-23.17001371973261,280.0887604334658,548.7116988892554,15.212738251970537,9.976576343441005,16.627627239068346,3032.0,56.0,2.406332676305773,1.244851390609864,0.0,0.0,0.3656934947021461,0.10287599417672497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35091647671820697,0.11666666666666665,0.6851581867459624,0.18763579719365192,22.949018510446816,19.76968166239963,15.974366886035769,11.513218851314686,14.948042881219795,8.998028292028007,12.165234758210207,5.80660973364254,10.520856890416068,4.135906602700153,9.729262041730772,3.150048214384186,6.938657466680651,1.8326014850556505,5.680275305705371,1.2348697100867572,4.894392836741101,1.9315013515762398,8.054350814719575,2.592069280808194,14.062810472812778,3.6706939626730324,106.87722543370494,77.80730290214989,43.22370827070722,34.01645855137766,31.582562420824974,30.482530504163247,180.0,214.0,68.519446,27.650553999999993,0.4909090909090909,313.06,9.583333333333334,7.083333333333335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,1.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,27.0,55.0,0.0,0.0,59.0,27.0,1.0,13.0,46.0,28.0,37.0,31.0,0.0,0.0,0.0,27.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,22.0,4.0,1.0,1.0,33.0,6.0,0.0,4.0,0.0,0.0,5.0,4.0,0.0,0.0,2.0,1.0,5.0,3.960813169597578,9.2247191177489,4.6491870714048655,5.305789381386738,5.981098504858804,6.6821869151849,7.135712227291876,7.730281198855807,8.319241365919545,8.833862661232333 +135398743,CO[C@H]1/C=C/O[C@@]2(C)Oc3c(C)c(O)c4c(O)c(c5c(c4c3C2=O)=NC2(CCN(CC(C)C)CC2)N=5)NC(=O)/C(C)=C\C=C\[C@H](C)[C@H](O)[C@@H](C)[C@@H](O)[C@@H](C)[C@H](OC(C)=O)[C@@H]1C,0,21.284552845528456,6.179102439024391,3.2195121951219514,6.959349593495935,164.08422114399133,83.73640439837394,1.3639889764279511,6.230333333333334,4.581413730803975,7.73238962601626,201.32134044456515,23.3671875,6.358429687499999,3.9375,6.625,146.60000996016552,87.69083320312502,1.7195427337031248,6.4936171874999955,3.0401475694444446,7.796992124999997,251.34963801031014,20.140425531914893,6.246442127659571,3.6808510638297873,5.582978723404255,155.2452462927501,75.13278262553196,1.4581734872011143,6.343327234042553,2.8841607565011818,7.750892034042553,210.2987028686654,18.674922600619194,6.305578637770899,3.2445820433436534,4.681114551083591,156.99951565052055,68.15329097523217,1.3666630475097772,6.389544582043344,3.159184726522188,7.82703126934985,195.20444243505656,16.127403846153847,6.238232451923077,2.8966346153846154,4.139423076923077,161.3627095712871,57.59413332932694,1.2457982563548506,6.300719951923075,3.152176816239317,7.80543997115385,173.16119550688393,16.205357142857142,6.080250000000001,2.828125,4.013392857142857,158.27935601179266,58.38078845535713,1.2579776888726715,6.161845312499999,3.029854910714286,7.64275160714286,173.16668368435276,15.167652859960553,6.188418145956606,2.619329388560158,3.710059171597633,162.6905703386476,53.84056580276135,1.1637767576046905,6.242513806706114,3.2638477975016444,7.777069964497042,159.64926427521806,15.116370808678502,6.120126035502958,2.646942800788955,3.2051282051282053,161.59953865103907,53.611247903353046,1.1878962290548047,6.185692702169622,3.022600262984879,7.700770500986194,162.4928648019071,14.634285714285713,6.241878095238097,2.5942857142857143,3.0495238095238095,163.13797243173994,50.92944542857141,1.162417763604373,6.293521714285714,3.2550264550264556,7.832628373333332,159.10998926328145,7.660651728468505,0.14349186330887695,0.024589817781697665,0.7318395135170865,4.099676118712406,1.3636623524499103,36.314817620596195,0.22303211819650456,0.1338504197237094,1.6987803041987068,0.09188462899068012,49.30403344239746,0.2535378040518214,-0.006778969508064012,-0.01226565671197008,0.3626726816048647,1.6899580276290558,-0.1305080748024363,1.239840402777789,-0.002902096074800836,-0.004460810983872056,-0.18543483220231943,-0.006306765169541889,1.0419781173112443,1.4557987126316523,0.013889693515201864,0.0001017277463819993,0.06092990353878635,0.9228459362953773,0.036013178992314605,6.919118677068561,0.021364011027242724,0.015480446908361109,0.1019356426770749,0.005899723335906978,7.649476098072945,0.14206165470247906,-0.003703112018887331,-0.00018047874978703883,0.028813913450619857,0.22683600089795333,-0.09162520011319619,0.6713959057447593,-0.009370208892310385,-0.002066969347410021,0.015741134101332373,-0.0038101354972621825,-0.30227791331993126,-0.06995050895630904,-0.0037549398410846335,0.0008209498878622562,0.03459654026652838,0.2308038687797757,0.17304881447701417,-0.2630239497863224,0.02137381806101959,-0.004058528307199118,-0.045346463169590526,-0.0012077886216994827,2.7191285697264624,0.6468395607301017,0.01336073904303937,-0.0019070422592629677,0.006709412150741742,0.5919978069554215,-0.20524821904635598,2.9581072695932575,-0.0244916409409933,0.013823671086395081,0.1156680318769167,0.005511276424534714,-1.4816458102262935,0.3478471730885586,0.011616951495247366,0.0018352733818518228,0.008206348479995122,0.2724635198437421,0.040122658117609455,1.6315376120973055,0.012049458028585666,0.010075070566696428,0.09690830727320758,0.008282354604836315,1.99702320326374,0.18736225462990652,0.00021285117613767358,-0.0003645777780932482,-0.03884228768683991,-0.20911952083873558,-0.053305570292618204,0.8694728639053269,-0.007991756575600844,0.0011750705666964216,-0.004527619561405934,-0.0010560726814483994,-0.18619964085513196,-0.8343722085304475,-0.016592905507870407,0.0002344555124116461,-0.022276989320415854,-0.7004194404313382,0.10570950515832485,-3.8737004253968235,0.008537744236450874,-0.016522495604468238,-0.15994927223759273,-0.008455410128891463,-1.0698416451989177,,,0.4633879781420764,0.9590163934426229,0.319672131147541,0.01639344262295082,0.639344262295082,-0.319672131147541,1.7497992190440042,0.029001901186450327,0.03746091757989295,1.1723151494432362,0.1754826063527796,0.29410915741770605,2.9221143684872404,0.46959176377048567,2.0144667674226655,1.542320322020294,0.13922951534384886,0.3329169300585232,0.0,0.4721464454023721,6.881638282959366,2618.0,760.0296000000002,396.0,856.0,20182.359200710933,10299.577740999994,167.77064410063798,766.3310000000001,563.5138888888889,951.0839239999999,24762.524874681512,2991.0,813.8789999999999,504.0,848.0,18764.801274901187,11224.426650000003,220.10146991399998,831.1829999999994,389.1388888888889,998.0149919999997,32172.7536653197,4733.0,1467.913899999999,865.0,1312.0,36482.63287879627,17656.20391700001,342.67076949226185,1490.6818999999998,677.7777777777777,1821.459628,49420.19517413637,6032.0,2036.7019000000005,1048.0,1512.0,50710.84355511814,22013.51298499999,441.43216434565807,2063.8229,1020.4166666666667,2528.1311000000014,63051.03490652327,6709.0,2595.1047,1205.0,1722.0,67126.88718165543,23959.159465000004,518.2520746436179,2621.0994999999994,1311.3055555555559,3247.0630280000014,72035.05733086371,7260.0,2723.9520000000007,1267.0,1798.0,70909.1514932831,26154.593227999994,563.5740046149568,2760.5066999999995,1357.3750000000002,3423.952720000001,77578.67429059003,7690.0,3137.5279999999993,1328.0,1881.0,82484.11916169434,27297.166862000002,590.0348161055781,3164.9545,1654.7708333333337,3942.9744720000003,80942.17698753555,7664.0,3102.9039,1342.0,1625.0,81930.96609607681,27180.902686999994,602.263388130786,3136.1461999999988,1532.4583333333337,3904.2906440000006,82383.8824545669,7683.0,3276.9860000000012,1362.0,1601.0,85647.43552666347,26737.95884999999,610.2693258922959,3304.0989,1708.8888888888891,4112.1298959999995,83532.74436322277,942.2601626016261,17.649499186991864,3.0245475871488128,90.01626016260164,504.2601626016259,167.73046935133897,4466.722567333332,27.43295053817006,16.463601626016256,208.94997741644093,11.301809365853654,6064.396113414888,32.45283891863314,-0.8677080970321935,-1.5700040591321702,46.42210324542268,216.31462753651914,-16.705033574711848,158.699571555557,-0.371468297574507,-0.5709838059356231,-23.735658521896887,-0.8072659417013618,133.37319901583928,342.1126974684383,3.264077976072438,0.023906020399769835,14.318527331614792,216.86879502941366,8.463097063193933,1625.992889111112,5.02054259140204,3.6379050234648607,23.9548760291126,1.38643498393814,1797.6268830471422,45.88591446890074,-1.196105182100608,-0.05829463618121354,9.306894044550214,73.26802829003893,-29.59493963656237,216.86087755555724,-3.026577472216254,-0.6676310992134368,5.084386314730357,-1.230673765615685,-97.63576600233779,-29.09941172582456,-1.5620549738912075,0.3415151533506986,14.392160750875806,96.0144094123867,71.98830682243789,-109.41796311111011,8.89150831338415,-1.688347775794833,-18.86412867854966,-0.5024400666269848,1131.1574850062084,289.7841232070856,5.985611091281638,-0.8543549321498095,3.0058166435323,265.2150175160288,-91.95120213276748,1325.2320567777795,-10.972255141564998,6.193004646704996,51.81927828085868,2.4690518381915516,-663.7773229813795,176.35851675589922,5.889794408090415,0.9304836045988741,4.160618679357527,138.13900456077727,20.342187665627993,827.1895693333339,6.109075220492932,5.108060777315089,49.13251178751624,4.199153784652012,1012.4907640547162,94.99266309736261,0.1079155463018005,-0.18484093349327682,-19.693039857227834,-106.02359706523895,-27.02592413835743,440.8227420000007,-4.0518205838296275,0.5957607773150858,-2.2955031176328085,-0.5354288494943384,-94.40321791355191,-438.04540947848494,-8.711275391631963,0.1230891440161142,-11.695419393218323,-367.72020622645255,55.497490208120546,-2033.6927233333324,4.482315724136709,-8.674310192345825,-83.97336792473618,-4.439090317668018,-561.6668637294317,0.735692159683972,0.6083060799399054,0.4340166301515094,0.32150117838941844,0.27565171906609615,0.1777531346644443,0.1718813957302548,0.09207096756469586,0.10060992178293017,0.04841951000353202,0.06087822091704231,0.024242745685932057,0.03632611660630271,0.012074587329456276,0.02220955111831309,0.006170605340468299,8.032318122145547,5.644851973327725,3.5581400391954507,2.1413805456752746,0.49179313071578556,-0.494119870170063,4.024714729048448,0.9722337221963566,6.03031915726466,0.9878951309888607,14.55473111537195,10.908326429716862,16.019063772833032,11.658516197285664,2.0454385416946286,0.7411678107458121,3.5043383708935427,2.190367419727777,7.010479984013773,1.137073105901994,3.717191178224581,2.3858758986197786,20.943179996499488,14.700274133962722,0.2105498161770504,0.5256701212641557,0.7509758726214397,0.8311039970467267,0.8731029083932249,0.8799451795850035,1.3374008381082418,2295.517688922757,0.0,3.0,13.0,0.0,11.0,8.0,5.0,5.0,0.0,5.441445276647309,3.1948634372952935,1.5885949705237836,1.0173388938789323,0.7179167684861651,0.6691362806812862,547.7360038830345,6405.818069782403,98.29583503119396,52.079821705548,105.79763375095533,,21.0,2059.0,82.94670272053149,34.809721131578286,55.37332678025683,31.849062103838563,6.544756405912575,27.21935238907957,65.84650362547926,0.0,24.064172734238056,28.932261280471536,28.26666666666666,58.5,19.5,1.0,39.0,0.0,0.03661202185792363,-19.5,0.1389053370302496,0.028607599944612816,-0.11029773708563678,0.04276370259976847,0.17796965865992476,0.0,0.5799457994579936,0.8644808743169408,0.44104046242774403,0.5513381995133808,0.8217171717171723,106.73775236168426,1.76911597237347,2.28511597237347,71.51122411603741,10.704438987519556,17.94065860248007,178.24897647772167,28.645097589999626,0.5360303413400752,0.27712264150943405,0.03537735849056605,0.420990566037736,0.5869565217391305,0.23779408850136186,-1.4584006176906326,-0.050944323249253465,-0.011856915590980753,-0.052085736346094015,0.7622059114986377,4.674639218925319,0.04316579125173804,0.03800519690183187,0.04920672862026652,-7.0409813345877135,0.8729509191271635,0.8254620730676436,1.494094234437,0.8788342779082369,0.47820677278150403,1.3988437977195485,0.8794682092164557,1.248213407213878,0.8070525337088763,0.8156846202784059,0.8601582939340014,1.1006853188727597,0.762805996321784,0.7967603330879888,0.9828912379400937,1.3322415754519736,0.8014859724855995,1.1418678137312877,0.7659602544989994,1.007894369013591,0.7743149953820854,0.6164385293431246,0.8256931630433137,0.8948279957175528,0.9684638360612489,1.0663144721148512,1.1000210082207926,1.1455102766692316,0.9988394086140232,1.2016038100881745,0.9688214007486821,1.1087407452295603,1.04191032947011,0.9026400480109292,1.0960477301071816,1.0252012922906302,1.0235133603885114,1.1477437784492708,1.1110204263736836,1.0278858746248332,1.0110823648289995,0.9243845232202161,1.0194562441161314,0.9086801197670645,1.1368474548237797,1.1019478889574412,1.151536153658653,0.9288181072415219,0.8771415459529684,0.8027808345940307,1.0885394349412645,1.1193414210879438,0.8278836619695603,1.2095403985597926,0.88284922682381,1.1690741273449252,0.7957117357652936,0.8393654947189989,0.8373102804435847,1.0625146172016469,0.9777091792916052,1.0615380298988524,1.046944960500312,1.025170909293019,1.0149968670268508,0.9669506844472436,0.9751959030529618,0.9306968483365448,1.053817970369053,1.0778611927469508,1.0765715391120043,0.93488104162937,0.9699201940575986,1.0161194836178589,1.1438493590902539,1.129425578034682,1.084906148183143,1.0704452206946167,0.9702085048095789,1.0393703680191362,1.0041310513334893,0.9923173518229225,1.0301806366359143,0.997222464706734,1.1477731897259411,1.3346727771516425,1.2289098539957448,1.0674685177539223,1.306468463820457,0.9289550805212528,1.140976316454248,0.9345770230059675,1.32191389854408,1.3840542067239299,1.3414524277178363,0.9829389307525829,16.0,1.1740863177226812,9.777777777777779,7.145833333333334,6.561666666666668,4.483611111111111,3.411020408163265,2.39516014739229,1.728733623078861,1.3925308641975311,16184.98610752977,18508.13002829319,5889.848494267784,5248.349219632082,17.1513785979125,0.45030847957922787,9.427967378798813,0.8192021576656857,0.0,0.5869565217391305,1.50106922869193,3.7476510680439463,5.353919534815456,5.925175611460308,6.224597736853075,6.273378224657954,0.24242424242424243,0.008210393830228542,0.09680968096809689,0.059056473829201095,0.05086563307493541,0.03202579365079365,0.02402127048002299,0.016749371660085943,0.012527055239701889,0.010239197530864202,0.552929112688173,50.413223140495866,20.47446328791295,10.29795918367347,356.3748731113149,0.0,5.040471208514689,506.0219730134895,,417.5753070998433,411.5734956053216,416.79537504228927,417.6575736548726,563.9497427114434,415.4892693526726,417.89063458142823,501.69369803942413,0.033096114147785176,-0.047242884382034785,-0.4988103946463351,0.4955631322254333,0.41221744808461225,-0.09570409754875893,0.03414144649523464,-0.01301200965254662,-0.033326835979147075,-0.10915763017972281,-0.06863786945454811,0.021133729728797967,0.19003588261578513,0.09679777790119891,0.00413698658872193,0.08325582646660934,0.22510215674920622,0.026409161276333932,0.1905315551727936,0.09578894376288781,0.11565482529166102,0.06000519456525996,0.06420794642927044,0.15514909357283976,0.018544330135065363,-0.02580712197538411,-0.007339572476269839,0.03937190178779153,0.05533022471277468,-0.06719053286804128,0.018488208112711887,-0.04201282294263409,-0.01544238226280206,0.009266138807017349,-0.04146651664282876,-0.006130896241442122,-0.009131143332930676,-0.026168311948126598,0.033385765407065914,0.04727339755168965,0.05629807382254011,0.12690004542995592,-0.007242882300395928,0.09583291515972595,-0.030321371539787683,-0.026693541865014665,-0.013144620977051439,0.05515022564844021,0.08443662284323895,0.0931114749989648,-0.077554143596883,0.009167873593621007,0.14440111604263792,-0.15051249209719245,0.08145730760645613,-0.1098121702786085,0.10327700962708633,0.06808887034481828,0.05998039590597601,-0.03005120893318636,0.04540699478555974,0.08095895632939835,0.07463550149679543,0.011213317029791023,0.0664597670533338,0.029422721867716318,0.04492760032951309,0.05402566287770884,0.07527111672487191,0.05704581518498238,0.0901386303216874,0.04050425622067793,0.024457743449376654,0.001483367566838933,-0.01482637168481197,-0.05307487088278549,-0.05100879064183593,-0.03909000655246601,0.02394264713069079,-0.03583231258450243,0.00877898305527896,-0.0026652178331803508,-0.011493464065197643,-0.0037765600064479797,-0.10891660893938755,-0.1156365603264412,0.00953465838962632,-0.030439719240297276,-0.17084750603453047,0.07751882639306619,-0.10666996777645463,0.038280335161990496,-0.12343999845927676,-0.09415536066804046,-0.0920220304720292,-0.021698866614002835,7.640262007364571,33.64823016823514,45.61418295266135,14.110969170393531,37.235262511505134,43.75410130757959,46.067349173815074,46.54807724531668,46.59724797702399,122.88247281278261,94.08153964323793,8.49300043597478,20.307932733569913,0.0,28.8009331695447,17746.477984531604,15373.235285629511,12761.045478755746,853.0,101.0,140.0,190.0,262.0,338.0,442.0,571.0,703.0,846.441508804002,66.0,5.814130531825066,6.705639094860003,7.636752112435779,8.556606193773073,9.497697391604019,10.433439104100595,11.38264592220331,12.32933840134783,13.285140173651616,0.6151761517615174,0.9826991869918703,1.1328469825891656,0.5733355535203845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6396142641546174,0.9682767415909456,1.006608281669124,0.5991163116271914,0.0,0.0,0.0,0.0,0.0,2.0,6.0,0.0,0.0,3.0,0.0,0.0,0.0,5.0,2.0,4.0,0.0,11.0,0.0,0.0,0.0,4.0,5.0,1.0,4.0,0.0,9.0,1.0,2.0,0.0,0.0,49.59025972941982,28.64760677730598,11.412371868653818,0.0,11.690424675716445,24.368421017486803,0.0,0.0,0.0,59.77048351864538,25.841400552376523,93.62758882512514,40.880885766133794,248.37041819215662,-1523.265669009461,-53.210165776938666,-12.384273731784235,-54.402345321766454,796.1064220751912,4882.552400772942,45.08566925425529,39.695547973763766,51.39528842918887,0.42857142857142855,0.8133907486473209,0.08262407460425945,188.98806835562468,0.05088961750593336,0.0,0.18660925135267867,12.0,0.06060606060606061,0.2162140572464791,0.5398117735529053,0.77117873224434,0.8534624748574118,0.8965912468841022,0.9036175898276226,4.749420000000004,,3.3214285714285716,3.8855281526291297,2.8054743864919045,3.3119220840143813,-13.977964180457944,3.4906670746634028,3.29449477485666,-5.666237771611998,227.70539999999937,53.757172946778475,0.0,4.899909730850478,39.5743396960783,117.94485198169195,32.060855363021595,57.98062928583218,0.0,17.248535499851716,4.890349128221754,0.0,6.285998094508865,3.044522437723423,7.865187954187467,5.58724865840025,9.535390480896702,7.853604813097837,11.262834573576976,75.66666666666664,0.0,0.0,0.0,0.0,0.0,0.033352495454179065,-0.6797476669946023,0.0,120.87200000000004,0.0,41.015720642937175,0.0,0.0,0.0,7.732635348988562,10.301299615755523,-1.5041655376016116,139.34017885846737,20.768112454418986,5.687386274683562,17.248535499851716,105.59565277183057,23.79966322954379,36.513267430497585,91.07671821053343,46.124074871096916,0.0,10.772448428929591,0.0,70.52027308300728,78.67255449101795,76.49659369260017,1019.2650960491438,,839.7567058865916,828.0143689970231,838.2319009439159,839.91736809664,1133.4513377040503,835.6606764380927,840.3758919458453,1008.3859767694087,76.49659369260017,1019.2650960491437,,836.9860296060278,824.7657981878679,835.9438522820567,837.1544570228546,1144.5546237985136,832.7386081097527,837.6291342761032,1012.6842324979116,5.236781811163873,710.8959273845819,,582.6371710134649,574.3304171759244,582.9622385201059,582.7550200373076,793.3706194302355,579.8059423819016,583.0684477114183,702.7096813712894,1.2540425195508225,16.709263869658095,,13.766503375190027,13.574006049131526,13.74150657285108,13.76913718191213,18.5811694705582,13.699355351444142,13.776653966325332,16.53091765195752,2.6705053344044063,506.0219730134895,,417.5753070998433,411.5734956053216,416.79537504228927,417.6575736548726,563.9497427114434,415.4892693526726,417.89063458142823,501.69369803942413,119.0980392156863,0.0,18.678369162840625,0.0,0.0,0.0,46.893194116100965,123.81281864530224,3.392986790468434,2.832721209689016,23.983981104119824,0.0,-5.69646643680626,2.350746132104613,-2.9148271528370167,0.0,0.0,73.69130633014454,849.5677990498466,184.63151512910738,460.9610813694054,658.5321027823011,728.7966002096178,765.6255216329282,771.6255216329283,3727.0,212.64138892580127,194.9090412175012,117.3251361406133,209.03999999999996,209.03999999999996,0.75,10.408191370760687,7.044394119358453,5.029940166160155,7.7176712619652665,,7.697935580491884,7.698833544787409,7.700722359283991,7.697932581343092,7.671341792361729,7.698393270455189,7.697873474165238,7.686293763372712,0.08245803551082222,0.12651920101582403,,0.1261956652539653,0.12621038598012146,0.12624135015219656,0.12619561608759167,0.12575970151412671,0.12620316836811785,0.12619464711746292,0.12600481579299527,3.423696859824567,3.8518014397059375,,3.849240957662324,3.849357600873538,3.8496029085327743,3.84924056805795,3.845780311592148,3.8493004120904377,3.84923288971001,3.847727483170858,646.7300000000026,12360.394600273805,548.6285732721846,,553.1565418036902,552.9576031981982,553.1007169255003,553.1589943505182,559.8860971359828,553.0827637006837,553.1674952681418,556.2241547186752,202.62941967661976,8.993911037248926,,9.068140029568692,9.064878740954068,9.067224867631152,9.068180235254397,9.178460608786605,9.066930552470225,9.068319594559702,9.118428765879921,11.230541427269833,8.115710432307823,,8.123929810045446,8.123570102851508,8.123828884374142,8.123934243765751,8.136022136248828,8.123796424614738,8.12394961159379,8.129460140153157,23.983981104119824,53.66776639079731,50.17280133035806,-0.5720931528187374,-6.443119764390458,0.0,5.035438108775993,19.521193673170888,1.4673656433204414,817.2750570431009,259.41714960922366,-1591.0157128547303,-55.57678582079868,-12.93508709637992,-56.82198974481179,831.5147202456395,5099.712903999078,47.090937364023304,41.461080520317715,53.681188463148196,15031.0,121.0,6.124101348239463,3.338953072344122,0.26933756729740643,0.09166666666666667,1.9364868366061674,0.6070879937456376,0.08333333333333333,0.008505172717997146,0.0,0.0,0.0,0.0,0.15137471507731048,0.05051551815399144,0.6230817388377345,0.21937140813813832,1.4230751278898546,0.4061856527833798,44.87722174072229,37.10667087633423,28.64509758999962,21.219077773701617,27.84082362567571,17.953066601108876,24.06339540223567,12.88993545905742,19.11588513875673,9.199706900671083,15.950093880265085,6.351599369714199,12.278227412930315,4.081210517356221,9.816621594294386,2.7274075604869883,14.680321817148867,6.294919118190528,23.03944779132277,8.716746205181455,37.91888345776841,11.722105414467432,209.26262248788228,75.58903850337275,45.8163398516611,35.243568221112795,31.418731924408895,30.927382850562346,334.0,408.0,131.38316600000007,76.30683400000014,0.3089430894308943,696.15,25.041666666666664,13.13888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0,10.0,11.0,123.0,0.0,1.0,128.0,11.0,8.0,12.0,116.0,19.0,66.0,109.0,0.0,0.0,4.0,46.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,62.0,14.0,5.0,4.0,61.0,15.0,0.0,4.0,11.0,0.0,6.0,4.0,0.0,1.0,0.0,0.0,2.0,4.388257184424518,9.439834807415464,5.000584958242754,5.605802066295998,6.239300711012564,6.904876138231294,7.476613933998737,8.030795917684069,8.57255989693837,9.03151924402646 +65015,c1cc(CN2CCCNCCNCCCNCC2)ccc1CN1CCCNCCNCCCNCC1,0,16.155555555555555,5.686213333333335,2.422222222222222,3.3555555555555556,169.17461869232721,62.9314581777778,1.2419810762427335,5.748475555555558,1.8950617283950615,7.283828799999999,172.0389870447215,19.630434782608695,6.170369565217391,3.0869565217391304,3.108695652173913,152.36376159344573,71.51546050000002,1.5945104421739134,6.293413043478256,2.2318840579710146,7.608725826086953,220.40956011469788,13.781609195402298,6.013068965517242,2.6436781609195403,1.896551724137931,163.50917014350054,47.020128114942516,1.2755119369349308,6.090626436781607,2.013409961685824,7.541613149425285,165.89245608298748,10.803212851405622,5.726255421686748,2.244979919678715,1.4859437751004017,166.4565148916644,36.004449184738945,1.1108940655374542,5.792385140562248,1.7889335118250782,7.330093863453815,136.75596416457518,10.126760563380282,5.634061971830985,2.1690140845070425,1.352112676056338,166.5411117982367,33.64443152816902,1.0737148541380355,5.7002901408450715,1.7053990610328638,7.258775464788733,130.0996415039384,10.236065573770492,5.63632786885246,2.177049180327869,1.298360655737705,166.25436782110594,34.083994199999985,1.0815172166042495,5.704545901639346,1.7188524590163934,7.260734308196721,131.76861740802858,10.237804878048781,5.661231707317072,2.158536585365854,1.2804878048780488,166.32574955191583,33.86704276219511,1.0822507390060794,5.728722560975611,1.766260162601626,7.280876609756097,131.75539606150602,8.857566765578635,5.599360534124631,2.0741839762611276,1.1186943620178043,168.18447980056047,28.167585563798234,1.017868845346825,5.658543026706231,1.710187932739862,7.240988949554895,119.61034133693195,7.852112676056338,5.442239436619717,1.9788732394366197,0.9577464788732394,166.70952441827143,24.510733640845068,0.9819324871918449,5.508278169014085,1.5933098591549293,7.114442169014086,111.83496894059434,6.614320987654319,0.06615288888888883,0.010853475570798252,0.3358024691358025,2.169876543209877,1.3635738030675615,31.72111032395061,0.20685973165264895,0.0671384691358024,0.19541838134430733,0.029305532839506154,48.068059812128546,0.3644229736983353,0.0020323285024155717,-0.0028050308638915876,0.05501878690284492,0.29389157273215266,-0.40283828777551206,1.6950245692860966,-0.01814033788572278,0.0036014342458401344,0.006245601479095811,-0.00034288742887811173,-1.3685670026173344,-1.2107449978714349,-0.01828852107279684,-0.002387273975878298,-0.05151128139633885,-0.4347552149850998,-0.03660568162607798,-5.734401181677311,-0.015915570265571496,-0.01786937590464019,-0.04321176860129607,-0.008274307296721971,-5.261101742229326,-0.2481451732857356,-0.0008944149933065348,0.001048597545867194,0.003867321136397446,0.012809757548713432,0.10176413620460645,-1.1807604729019783,0.0003246031596892637,-0.0016140336159452397,-0.0019283719239096369,0.00011439076602708076,-0.7896437009015163,0.13403581985741614,0.0038065477308294226,0.0004847767835799861,0.003477656059815687,0.09162580420796386,0.0402547523116699,0.6271147591479742,0.0018847852143140226,0.0033387139627890834,0.011128306188295755,0.00197438014953921,0.46615754718353114,0.10968629832017812,-0.0018688233151183916,-0.0009897085370051074,0.0011738514470754924,-0.015049585104229898,-0.05599456234586503,0.5364152691277067,0.0020129808382868494,-0.0011043197733252366,-0.005329330544873959,-0.001316804242056263,0.8207363283602114,-0.14806082505269502,-0.003948498644986437,-0.000505638071337527,-0.0003011141222523316,-0.0900662451068955,-0.07841370665575818,-0.6990906511863896,-0.004652315080465555,-0.0033926561276723787,-0.013289504499983278,-0.002116641240590179,-0.8941962300146895,-0.4095072718613767,-0.0012187049126277636,0.0007873062675800844,-0.02271311865772796,-0.11250760156793793,0.11062225065160795,-1.9580727080587603,-0.0035804953316979533,-0.0023078987434516584,-0.0009464613530994466,0.00020115888485914096,-1.8990124832900477,-0.05234915666840541,0.0018042942097026208,-0.00032363908225713537,-0.003564597461311079,0.03466179794818289,-0.13221311249359546,-0.2837440380351238,-0.012628087864222126,0.001675474526169332,0.006150910952684565,0.0007718173952355938,-2.0944580952700136,,,0.47777777777777786,0.8194444444444444,0.16666666666666666,0.0,0.6527777777777778,-0.4861111111111111,1.2455776706720965,0.00042316880018717425,0.007589835466853841,0.6101957185365026,0.1603735821166151,0.3368202924824504,1.855773389208599,0.4971938745990655,2.0469060442133418,1.5881429731336345,0.4587630710797068,0.0,0.0,0.4587630710797068,5.58274604142224,1454.0,511.75920000000013,218.0,302.0,15225.715682309448,5663.831236000002,111.77829686184602,517.3628000000002,170.55555555555554,655.544592,15483.508834024935,1806.0,567.674,284.0,286.0,14017.466066597008,6579.422366000002,146.69496068000004,578.9939999999996,205.33333333333334,700.0027759999997,20277.679530552206,2398.0,1046.2740000000001,460.0,330.0,28450.595604969094,8181.502291999997,221.93907702667795,1059.7689999999996,350.33333333333337,1312.2406879999996,28865.287358439822,2690.0,1425.8376000000003,559.0,370.0,41447.672208024436,8965.107846999997,276.6126223188261,1442.3038999999999,445.44444444444446,1825.193372,34052.23507697922,2876.0,1600.0735999999997,616.0,384.0,47297.67575069922,9555.018554000002,304.9350185752021,1618.8824000000004,484.3333333333333,2061.492232,36948.298187118504,3122.0,1719.0800000000002,664.0,396.0,50707.58218543731,10395.618230999995,329.8627510642961,1739.8865000000005,524.25,2214.523964,40189.42830944872,3358.0,1856.8839999999998,708.0,420.0,54554.8458530284,11108.390025999997,354.97824239399404,1879.0210000000004,579.3333333333334,2388.127528,43215.76990817398,2985.0,1886.9845000000005,699.0,377.0,56678.16969278888,9492.476335000005,343.02180088188,1906.9289999999999,576.3333333333335,2440.2132759999995,40308.68503054607,2230.0,1545.5959999999998,562.0,272.0,47345.50493478909,6961.048354,278.86882636248396,1564.351,452.49999999999994,2020.5015760000003,31761.13117912879,595.2888888888888,5.953759999999995,0.9768128013718427,30.222222222222225,195.28888888888895,122.72164227608053,2854.899929155555,18.617375848738405,6.042462222222216,17.58765432098766,2.637497955555554,4326.125383091569,33.52691358024685,0.1869742222222326,-0.25806283947802605,5.061728395061732,27.038024691358046,-37.06112247534711,155.94226037432088,-1.6689110854864957,0.33133195061729237,0.5745953360768146,-0.03154564345678628,-125.90816424079476,-210.66962962962967,-3.18220266666665,-0.4153856718028239,-8.96296296296296,-75.64740740740736,-6.369388602937569,-997.7858056118521,-2.7693092262094403,-3.109271407407393,-7.518847736625517,-1.439729469629623,-915.4317031479027,-61.78814814814817,-0.22270933333332718,0.2611007889209313,0.962962962962964,3.1896296296296445,25.339269914947007,-294.00935775259256,0.08082618676262665,-0.4018943703703647,-0.48016460905349956,0.02848330074074311,-196.62128152447755,38.06617283950618,1.081059555555556,0.13767660653671604,0.9876543209876552,26.021728395061736,11.432349656514253,178.10059159802466,0.5352790008651824,0.9481947654320997,3.1604389574759946,0.5607239624691356,132.38874340012285,33.45432098765433,-0.5699911111111094,-0.3018611037865578,0.35802469135802517,-4.590123456790119,-17.078341515488834,163.60665708395052,0.613959155677489,-0.3368175308641972,-1.6254458161865575,-0.4016252938271602,250.32458014986446,-48.563950617283965,-1.2951075555555511,-0.16584928739870886,-0.09876543209876476,-29.541728395061725,-25.719695783088685,-229.30173358913578,-1.525959346392702,-1.1127912098765402,-4.358957475994515,-0.6942583269135787,-293.29636344481816,-138.00395061728395,-0.4107035555555563,0.2653222121744884,-7.654320987654323,-37.91506172839508,37.27969846959188,-659.8705026158023,-1.2066269267822103,-0.7777618765432088,-0.3189574759945135,0.0677905441975305,-639.9672068687461,-14.867160493827136,0.5124195555555443,-0.09191349936102644,-1.0123456790123464,9.84395061728394,-37.54852394818111,-80.58330680197517,-3.5863769534390837,0.4758347654320903,1.7468587105624165,0.21919614024690864,-594.8260990566839,0.692689390964667,0.6322271514961794,0.4710257759359568,0.3860126649855993,0.3187064046758934,0.23370467924585112,0.214982991426106,0.1414411895452229,0.14344497787662341,0.08476402635515651,0.09664449052202977,0.0506133954249917,0.06556234575063487,0.031059328253429695,0.044049865359319824,0.018910682778212836,7.036076497870299,5.689624848355538,3.1291085518914676,2.1894624841727004,0.3214613209313882,-0.3676813882727294,3.0655431559494866,1.805679348650464,5.011268943207615,1.8565061031721388,14.549384795570532,10.950116691285313,14.02794685019451,11.700757608468908,1.9873580058472982,1.0497683440319892,3.107590024062561,2.2394102186651783,2.528248708170337,1.3503874925976496,3.267137174904701,2.435377681434316,20.895785429637506,15.591631968311724,0.19431665978157495,0.37043303113631515,0.507752878450982,0.6286259475576902,0.6794288567642256,0.7209134908183104,1.3510343324624499,557.9417729250035,0.0,0.0,18.0,0.0,4.0,4.0,2.0,0.0,0.0,5.215220699271558,4.058161569207722,3.155990000192308,2.3618713892254277,2.028103611255343,1.7555555555555573,609.2229878458229,2349.5271030891263,43.7633480319039,26.105856700990287,43.23017500094139,,21.0,1220.0,0.0,0.0,0.0,0.0,117.80561530642638,36.81018947509803,0.0,0.0,65.96601935958539,0.0,17.200000000000003,29.5,6.0,0.0,23.5,0.0,0.022222222222222143,-17.5,0.05709401709401701,0.012222222222222356,-0.04487179487179466,0.0698412698412697,0.10836619718309826,0.0,0.49555555555555425,0.7888888888888886,0.43846153846153724,0.4833333333333319,0.7190476190476189,44.84079614419547,0.015234076806738273,0.2732340768067383,21.96704586731409,5.773448956198143,12.125530529368215,66.80784201150956,17.898979485566358,0.6056338028169017,0.0,0.0,0.10465116279069765,0.7857142857142857,0.12149484651375268,-0.3547021544050406,-0.010109135623297827,-0.003941135048944895,-0.013642390554040021,0.8785051534862474,2.564780972518288,0.044270469527385996,0.028497566361314303,0.04007470269559825,-6.969002594806319,1.1651814407489405,1.1950380205479212,1.5286787998391853,1.0563059462915598,1.0452185292196867,1.8153492188584246,1.1684878093759474,1.4362894979654721,1.1555455310440366,1.1688349590121403,1.2700737147609886,1.3255397891798368,1.3378320452286925,1.70003522549413,1.7135687121464984,1.4893509127789046,1.5479278169290407,1.2880001789460065,1.332218604746447,1.1685638054398195,1.6313488492904855,1.500983942256023,1.7809485417938908,1.1984485504558269,1.0699674912881332,1.103418133580788,1.0206665454704125,1.040751240255138,1.0578911001310656,0.9923716706305705,1.0690285767736598,1.022532438593753,1.1008490098214527,1.0556545993041375,1.1032635499491013,1.0379229181730178,0.9739028091199131,0.8981754600052008,0.8934326100908935,1.0576584507042253,0.9644253206998016,0.9884560692060402,0.9751002536272501,1.0110938809205947,0.9123222177438596,0.848344136135075,0.8816906106790757,1.0041302993791423,0.9808655453751008,0.9874562254859418,1.0201342697432976,1.0620781099324974,1.0280188334315792,1.0654961330229848,0.9812561579884193,1.0150532407604835,0.9817835210037661,0.987186509644352,0.9978664224693049,1.0007959991143887,1.0301413628963827,1.0611182332984412,1.049566934610915,0.9876031205164992,1.0656976114879488,1.0928108681209212,1.0300468534299778,1.0448262187552646,1.0517831179356991,1.135668591611509,1.0750319464715452,1.0358005498824534,1.0421142776627474,0.9886261337323519,0.9073545849480779,1.1272582475126547,1.09944400848743,0.8946429829972316,1.0420513083388778,0.9996529851407465,1.0067751632496658,1.02066601234518,0.9604989278269841,1.0220309493252147,0.9254708856393552,0.6657204503930951,0.6687603246256079,1.0369200497100246,0.89702787732311,1.0174752078993852,0.9298206517369276,1.0713752604017137,0.7120687615928395,0.7899400474163244,0.6135737591009405,1.0402073468228783,3.0,0.09876543209876543,0.8888888888888893,0.75,0.7022222222222223,0.2916666666666667,0.36408163265306115,0.2048611111111111,0.1965230536659108,0.11125000000000002,6572.013972024634,8227.943934660314,3418.9287429848755,2879.79494595471,19.05014674187968,0.4942984579474581,9.633688583695761,0.9774509603850504,0.0,0.7857142857142857,1.2766323970581168,2.433691527121953,3.3358630961373668,4.129981707104247,4.463749485074332,4.7362975407741175,0.07894736842105263,0.0030864197530864196,0.02020202020202021,0.015957446808510637,0.014044444444444446,0.005303030303030304,0.006277269528501055,0.004358747044917258,0.005780089813703259,0.0032720588235294126,0.15722889514279564,30.54016620498615,20.89876033057851,15.2592,220.26730777121892,0.0,4.465247287017099,290.32350799195757,,254.26006055505272,248.6912742226716,243.54327341080452,254.30649789058833,340.3272313456004,251.87597855756215,254.59753364026793,314.4237384599977,0.05509605209340967,0.03072168935553358,-0.2584454026356907,0.16384271099744258,0.1354416101007303,-0.29542829795443976,0.0534352219066648,-0.08769390611113888,0.05364188805907143,0.031960153574763756,-0.011700433182906424,-0.028471442533073016,-0.18304902349482277,-0.2764583887411849,-0.21995479331075865,-0.1533975659229208,-0.20035942429331516,-0.0268453981322669,-0.18077555051241775,-0.0769389486219402,-0.2661570353726032,-0.22112438095145884,-0.2823462498374217,-0.10945109419419179,-0.03751634880570514,-0.013520422287359285,0.09661398683095498,0.011516654854712982,0.005903449939951,0.0746304570941983,-0.037223176012551505,0.0015691945314631126,-0.024040369652761965,-0.009867914730662114,0.0039033846152380157,-0.016427617507088835,0.020264486726240684,0.057541670435934326,0.04466558020218878,0.010356255178127596,0.042226275266528626,0.02952150607551338,0.01976963456649496,0.009111416703754033,0.049728777044883106,0.056946056515987664,0.06737226585682793,0.00969786484009305,0.016583153210270325,-0.028250063549866873,-0.09118816645867443,0.0034956605593056936,-0.006935687263556107,-0.04106456300340836,0.016910356026305084,0.00973113917438011,-0.016448390729486333,-0.02727138822977056,-0.044933639298348045,0.017074463408092933,-0.022384886570980103,-0.05968747111888616,-0.0465876638353495,-0.0008967001434720168,-0.041507543546077226,-0.05750602312786805,-0.02203865640410923,-0.022490191992888913,-0.05053222349782777,-0.06800539646558898,-0.07222667651812087,-0.018602711103997287,-0.06191221632964671,-0.018422550142514788,0.07253955310853293,-0.06763833129691046,-0.05184977086369464,0.08112670572193952,-0.061727748116696374,-0.017308807775648603,-0.03437520654192193,-0.004843256538042232,0.0068641947566966946,-0.03950674295389156,-0.007914517116135656,0.02727460946918183,-0.029818934971199494,-0.010615161557580785,0.01597408758422174,-0.09696073083551654,-0.008944959212883748,-0.06104662209185659,0.024955506846310635,0.03147560076166676,0.026336917313959343,-0.04357276127757374,50.05758074677875,11.016847423104515,0.33333333333333337,11.087864597522938,19.378442073137833,24.319874250869603,26.282968637086547,28.088802331212115,29.430286326913052,73.6886175916803,57.173147032810846,16.515470558869445,0.0,0.0,16.515470558869445,16352.215510504993,15666.526775031889,1989.0209071687077,108.0,44.0,50.0,58.0,68.0,72.0,82.0,92.0,100.0,502.4471437280016,38.0,5.10594547390058,5.8664680569332965,6.645090969505644,7.419979923661835,8.208764045819667,8.993799971795545,9.790374843904484,10.58347350281825,11.386375360629799,0.514814814814815,0.9482666666666666,1.1504302944365996,0.4651254868222646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6092270259481036,0.9347276688453161,0.9808529578376628,0.5410339914512521,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,6.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,31.900731624037984,0.0,0.0,0.0,0.0,9.799819461700956,0.0,0.0,0.0,24.26546827384644,89.16824072239865,65.44756405912574,0.0,97.77601800033011,-285.45543476971545,-8.13557986230684,-3.1717270529968378,-10.979055183450592,706.999005846153,2064.071668319411,35.62776816959706,22.93412964799345,32.251119817490796,0.47619047619047616,0.9797178916164297,0.10803981297695989,22.968742361089696,0.041872216465631724,232.99511252583994,0.020282108383570255,11.0,0.10526315789473684,0.1966514611644388,0.37488394931454916,0.5138537558749408,0.6361791688476794,0.6875924976795947,0.729575588124737,0.41580000000000644,,1.1428571428571432,1.4853420195439737,1.8019966836611827,1.1400014278575004,-4.145454545454545,1.2894736842105265,1.122103944896681,-2.55459702594743,152.68219999999985,0.0,0.0,41.700551085738944,0.0,38.7727993035292,104.71610249460122,35.392371257240434,0.0,0.0,4.343805421853684,0.0,5.53338948872752,0.0,6.872128101338986,0.0,8.289288323000317,0.0,9.757131416174783,46.33333333333334,9.42458133176748,0.0,0.0,0.0,0.0,0.0,2.85649699926784,0.0,85.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.53872649929397,31.900731624037984,0.0,0.0,114.5159219563022,13.08951281182515,0.0,36.81018947509803,24.26546827384644,0.0,0.0,0.0,41.861293814003815,54.83043233532933,47.03765927553114,580.6470159839153,,509.18288436609305,498.24421100507857,488.1322499075112,509.2741011935615,683.187796024534,504.499850003471,509.84578279612947,630.4086195469633,47.03765927553114,580.6470159839153,,508.3574875406963,497.1714639909636,486.83080785820044,508.45076682899776,684.7999172366553,503.56856345376355,509.03537439148204,631.4020739459431,4.568130499354881,446.80878838188846,,387.70873420178043,379.5940930683287,372.0952498368372,387.77641312464334,513.4069807167901,384.23437919910236,388.2005802881623,475.52984390034214,1.3066016465425316,16.12908377733098,,14.14396901016925,13.840116972363294,13.559229164097534,14.146502810932263,18.977438778459277,14.01388472231864,14.16238285544804,17.511350542971204,2.2840652496774405,290.32350799195757,,254.26006055505272,248.6912742226716,243.54327341080452,254.30649789058833,340.3272313456004,251.87597855756215,254.59753364026793,314.4237384599977,84.12549019607845,0.0,0.0,0.0,0.0,0.0,0.0,88.27676620538965,24.402951080830793,21.421048746561404,0.0,0.0,0.0,5.228255174905816,0.0,0.0,0.0,48.69305923061268,788.4524895884383,114.89691573523051,219.03223744097576,300.227678652363,371.6983536393822,401.73745365668987,426.26677866967054,748.0,148.0002721489691,16.322534258044705,70.7957427510953,78.66,78.66,0.9090909090909091,7.400124119397561,6.247927513443585,4.32560804880563,5.91650012996898,,5.908617278450549,5.909156125879229,5.909669780353266,5.908612856686639,5.902076761253083,5.908845870599865,5.908585170869093,5.90374394384901,0.12015577913348971,0.16434722583247166,,0.1641282577347375,0.16414322571886747,0.16415749389870182,0.1641281349079622,0.16394657670147453,0.16413460751666292,0.16412736585747478,0.16399288732913916,2.7454865652833758,3.0586789252717472,,3.057345686469318,3.057436879185681,3.0575238005903005,3.057344938110547,3.056238127871309,3.057384373647177,3.057340252428293,3.0565205618754594,439.7400000000023,962.6422928795561,240.49686358372873,,241.5970354048165,241.50922758989054,241.42514986637318,241.59775433382444,242.6362250067711,241.5598333035819,241.60225514613379,242.37542850610163,26.74006369109878,6.680468432881353,,6.711028761244902,6.7085896552747375,6.70625416295481,6.711048731495123,6.739895139076975,6.709995369543942,6.7111737540592715,6.732650791836156,8.150615737455208,6.763640893690946,,6.768205040772011,6.767841527306676,6.767493332072327,6.768208016503634,6.772497150720914,6.768051044818656,6.76822664569329,6.771421726970101,0.0,5.228255174905816,21.421048746561404,2.85649699926784,0.0,9.42458133176748,4.795600825357859,19.607350255472937,0.0,524.939376311054,78.68769721782982,-229.72740432390594,-6.547311477692953,-2.552526714710065,-8.835669397073303,568.9751417892776,1661.1133260926038,28.672337978284443,18.45681473436226,25.954895720196934,5060.0,47.0,0.816496580927726,0.5519300264123538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.11785113019775792,0.039283710065919304,24.936818074728013,22.760177453862457,17.898979485566358,14.668481269452773,14.02308180573931,10.283005886817449,10.7491495713053,7.072059477261145,8.319808716844157,4.916313528599077,6.571825355498024,3.4417108888994354,4.720488894045711,2.236271634246938,3.612088959464226,1.5506759878134526,1.6261050591702833,0.9829022608232315,2.4831632475943928,1.3196496544866778,3.4803763534679355,1.6061987926127805,129.30245857244634,92.25694564075228,67.59614807270802,56.227886400373315,47.21092761323027,41.2863973955097,164.0,176.0,91.56682199999996,61.013178000000096,0.4,184.08,8.444444444444445,8.499999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,6.0,6.0,90.0,0.0,8.0,92.0,6.0,0.0,3.0,89.0,6.0,38.0,86.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,54.0,8.0,6.0,2.0,36.0,8.0,0.0,8.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,0.0,1.0,3.7376696182833684,5.7145575478241595,3.9982007016691985,4.2801323269925415,4.623746571561027,5.030846334712386,5.063385859481785,5.29141862485688,5.518456408841947,5.621306252831962 +5282415,CCCCC[C@H](O)/C=C/[C@H]1[C@H](O)C[C@H](O)[C@@H]1C/C=C\CCCC(=O)O,0,18.203389830508474,5.94593220338983,2.4745762711864407,4.576271186440678,165.26006304469436,71.18082374576275,1.256116250251966,5.9962372881355925,4.727401129943503,7.559265694915253,179.8159191603391,19.864406779661017,6.178813559322034,3.1864406779661016,3.694915254237288,146.3901237635017,72.43767750847461,1.6613576482033903,6.313254237288136,2.8262711864406778,7.667684271186438,233.12099252513784,15.174311926605505,5.939724770642199,2.779816513761468,2.522935779816514,152.50421015958383,53.123035440367,1.3743731591393404,6.048427522935778,2.7270642201834856,7.495046128440364,181.67936961877444,11.01863354037267,5.789565217391304,2.1614906832298137,1.6459627329192548,162.13294018043572,36.75068535403726,1.0859262647624344,5.857962732919255,2.4132160110420977,7.436946534161493,136.98552886181233,10.39877300613497,5.754601226993865,2.0552147239263805,1.607361963190184,163.74496664394903,34.448021030674845,1.0416037425196014,5.815761349693251,2.558111792774369,7.415755680981596,129.54270785104373,10.480263157894736,5.753749999999999,2.0657894736842106,1.6710526315789473,164.05731291930596,34.92151620394737,1.038757011453928,5.814769736842103,2.472770467836258,7.417972657894739,130.25146567931742,11.47887323943662,5.807323943661972,2.147887323943662,1.7535211267605635,162.77148697822295,39.01632335211267,1.069248925796155,5.87180352112676,2.6613849765258215,7.4539648450704235,136.2548269509065,10.537931034482758,5.868137931034482,2.0620689655172413,1.3655172413793104,163.64067626333494,34.35058463448276,1.0404603631838492,5.92408,2.681417624521073,7.524615337931037,130.29285472719653,9.510344827586207,5.720827586206898,1.986206896551724,1.2482758620689656,165.34798946339276,30.832798965517238,0.9933780744620488,5.776079310344827,2.292145593869732,7.399729655172414,121.79321969221056,7.391554151106003,0.12884228669922432,0.01983981144773802,0.4475725366274059,2.916977879919563,1.2276542626405187,35.08170476587187,0.21913779726562768,0.12177592645791431,2.033722748890804,0.08339751795461071,49.042672456022956,-0.31025567365699547,-0.014363688595231112,-0.011451034401063195,0.09767308244757261,0.3326630278655558,0.12642802774346554,-1.3519331456478054,0.020686552025280018,-0.01349956908934192,-0.22903699447795958,-0.008753944268888295,2.331935622408714,-0.6809337188248659,0.0072734029291383045,0.0014058141230662811,-0.03908241067498793,-0.06034594087431377,-0.22363129293150083,-3.3805876671314,-0.04090988724455076,0.00503629559153368,0.1732823825040023,0.0062428863371012736,-8.54752435669117,-0.3287054301880126,-0.007745329124742842,-0.0007984380910185057,-0.03847684234379711,-0.13510610394314473,-0.06272518656745629,-1.5524230772730756,-0.010724932847817404,-0.007004266283159158,-0.14644221643709546,-0.005372601647631053,-2.1489790584663315,-0.05132330988732873,0.0006606768029072566,0.0008789083851597168,0.011926267573488325,-0.005051083621341448,-0.007836304400858604,-0.2517688524893238,-0.0016589211708348268,0.000415079053159719,0.012566807797005704,0.0006489693075292301,-0.4760464187864855,0.09227724942923243,-0.006109235851766756,-0.0011115786068605922,0.008939506191505766,0.025261192337350157,0.019450821282774713,0.4815959267017195,0.004622813909696463,-0.004782059374952777,-0.10100518520758472,-0.004977341772630355,1.4343223313566775,0.33893045142443284,0.00670080234350659,0.0012936461771585145,-0.04616408592318057,-0.007094852944151569,-0.04913901452595813,1.5617169727292222,-0.006939241387781193,0.006883168791548477,0.09807746861005798,0.0033931079704310353,0.08048235922789665,-0.8508177396507145,-0.00981949301132252,-0.00032287192730477183,-0.015193810736114274,-0.40429523818958074,-0.045891473099598304,-4.026834152897008,-0.010760936373490466,-0.010534032828457893,-0.0957137872699195,-0.004711549047538863,-4.2321848438240455,-0.17764415695053934,-0.009091263905536488,-0.0006203837340686506,0.007132314336942414,-0.13065409266065045,0.017898936601154616,-0.7913834953867791,0.003267934028817315,-0.00809638233167247,-0.15673723035063908,-0.0062375174870478965,0.3370123325594417,,,0.46666666666666673,0.69,0.14,0.0,0.55,-0.41,1.228765906360762,0.018504696079655075,0.021944696079655074,0.47793025369159664,0.11019986641743493,0.3678639799978338,1.7066961600523587,0.4780638464152688,1.9560987474814444,1.608381607711439,0.0,0.34771713977000573,0.0,0.34771713977000573,6.004078376067811,1074.0,350.81,146.0,270.0,9750.343719636967,4199.668601000002,74.110858764866,353.77799999999996,278.91666666666663,445.9966759999999,10609.139230460007,1172.0,364.55,188.0,218.0,8637.017302046599,4273.822973000002,98.02010124400003,372.482,166.75,452.39337199999983,13754.138558983132,1654.0,647.4299999999997,303.0,275.0,16622.958907394637,5790.410863000003,149.80667434618812,659.2785999999998,297.24999999999994,816.9600279999997,19803.051288446415,1774.0,932.1199999999999,348.0,265.0,26103.403369050153,5916.860341999999,174.83412862675195,943.132,388.5277777777777,1197.3483920000003,22054.670146751785,1695.0,938.0,335.0,262.0,26690.42956296369,5615.027427999999,169.781410030695,947.9691,416.9722222222222,1208.7681760000003,21115.461379720127,1593.0,874.5699999999998,314.0,254.0,24936.711563734505,5308.070463,157.89106574099705,883.8449999999997,375.8611111111112,1127.5318440000003,19798.22278325625,1630.0,824.64,305.0,249.0,23113.55115090766,5540.317915999999,151.83334746305403,833.7960999999999,377.9166666666667,1058.4630080000002,19348.185427028722,1528.0,850.88,299.0,198.0,23727.898058183568,4980.834772,150.86675266165813,858.9916,388.80555555555554,1091.0692240000003,18892.463935443495,1379.0,829.5200000000002,288.0,181.0,23975.458472191953,4470.75585,144.03982079699708,837.5314999999999,332.36111111111114,1072.9608,17660.01685537053,436.10169491525414,7.601694915254234,1.1705488754165432,26.406779661016948,172.10169491525423,72.4316014957906,2069.8205811864404,12.929130038672033,7.184779661016944,119.98964218455744,4.920453559322032,2893.5176749053544,-18.305084745762734,-0.8474576271186356,-0.6756110296627286,5.762711864406784,19.627118644067792,7.459253636864466,-79.76405559322052,1.2205065694915211,-0.7964745762711734,-13.513182674199616,-0.5164827118644094,137.58420172211413,-74.22177535191038,0.7928009192760752,0.15323373941422463,-4.259982763573684,-6.577707555300201,-24.37581092953359,-368.48405571732263,-4.459177709656033,0.5489562194771711,18.88777969293625,0.6804746107440388,-931.6801548793375,-52.921574260270035,-1.2469979890835976,-0.12854853265397942,-6.194771617351336,-21.752082734846304,-10.098755037360462,-249.94011544096517,-1.7267141884986021,-1.1276868715886244,-23.577196846372367,-0.8649888652685995,-345.9856284130794,-8.365699511634583,0.10769031887388283,0.14326206678103384,1.943981614478597,-0.8233266302786562,-1.2773176173399523,-41.03832295575978,-0.2704041508460768,0.0676578856650342,2.04838967091193,0.1057819971272645,-77.59556626219714,14.026141913243329,-0.9286038494685469,-0.16895994824281002,1.3588049411088765,3.8397012352772237,2.9565248349817566,73.20258085866136,0.7026677142738623,-0.7268730249928221,-15.352788151552879,-0.756555949439814,218.016994366215,48.12812410226946,0.9515139327779357,0.18369775715650907,-6.555300201091641,-1.0074691180695228,-6.977740062686054,221.76381012754956,-0.9853722770649295,0.9774099683998838,13.927000542628234,0.481821331801207,11.428495010361324,-123.3685722493536,-1.4238264866417654,-0.04681642945919191,-2.2031025567365696,-58.6228095374892,-6.654263599441754,-583.8909521700662,-1.5603357741561177,-1.5274347601263945,-13.878499154138327,-0.6831746118931352,-613.6668023544865,-25.758402757828204,-1.318233266302791,-0.08995564143995433,1.03418557885665,-18.944843435794315,2.5953458071674196,-114.75060683108296,0.4738504341785107,-1.173975438092508,-22.726898400842668,-0.904440035621945,48.866788221119045,0.7462595908225151,0.6102886450339704,0.47806384641526883,0.3818324344047891,0.3252159300643984,0.22750664577860696,0.20335785432989048,0.14031911044726897,0.1323771846416745,0.08304901809357426,0.08851323830994878,0.04914974938407731,0.061702006769662164,0.031016487550019265,0.039919951796189894,0.019125534926658777,8.029003487856357,5.741864239697905,3.5549669101000223,2.24151304248376,0.425388542918539,-0.33450724863556014,3.17656380872286,0.9727241735117461,6.02200588783723,0.9879353969712521,13.642955309677719,11.002222916438397,16.014532967708284,11.753063015353709,1.9434117855618096,0.741555165823724,3.500992262854636,2.2914347468681617,7.008295805649901,1.1556605951064225,3.713919694388374,2.4874486301726577,20.85142575967372,14.700925455042643,0.21649451851316187,0.49486522533827115,0.7487578996795093,0.900436178147408,0.9232088939381935,0.9232088939381935,2.272924181706281,431.8024499631731,0.0,1.0,1.0,0.0,4.0,12.0,0.0,2.0,0.0,4.59359218601179,2.936118350513938,1.4243915257170814,0.5212692796976865,0.3856760593587021,0.3856760593587021,313.33466759222415,1680.8541273060887,81.17007381850496,28.489053005187937,54.596324811315796,,17.0,612.0,24.281204451196757,20.11411936859394,18.256633715248796,25.683286491704038,25.683286491704038,0.0,6.076020106833881,18.228060320501644,6.923737199690624,5.106527394840706,11.666666666666668,17.25,3.5,0.0,13.75,0.0,0.033333333333333284,-10.25,0.10112994350282484,0.01488655725943877,-0.08624338624338607,0.07632183908045964,0.16712499999999975,0.0,0.5344632768361585,0.853333333333333,0.4333333333333336,0.5195767195767197,0.7770114942528734,30.71914765901905,0.4626174019913769,0.5486174019913769,11.948256342289916,2.7549966604358733,9.196599499945846,42.66740400130897,11.951596160381719,0.5468750000000002,0.1857142857142857,0.0,0.2571428571428571,0.75,0.2596173202812265,-0.6695583145973432,-0.07489586368279363,-0.01134844601012446,-0.03719768414429684,0.7403826797187736,1.909461890495501,0.049647519961277115,0.03236376085585594,0.04657224123159758,-1.8064071901367642,1.088767975126312,0.9349832775919731,1.4878586668399079,1.3029525032092426,0.8111089225920819,1.301593000878043,1.094848176953208,1.2938280510059503,0.9431215233709681,0.9273791680072827,0.9335301182790233,1.233240510631463,1.0700727740794491,0.655889458234891,0.6100805028462122,1.5415140558938183,0.8981781482599165,1.4284615333126343,1.0834111811018456,1.4298995784830293,0.6912496111378348,0.605635438939518,0.6203784175296934,1.352468861290393,1.0123429401838975,0.944730468019693,0.8097584368260202,1.1868775863306198,0.9859113747664843,1.076325269075844,1.0145977938671915,1.075990027497979,0.950159974863521,0.9368102144713982,0.9397393291006259,1.0611633009600194,0.9660604817846492,0.8800103959346423,0.8060938260353128,0.9297668081621081,0.9345309231696899,0.9955244814388367,0.9681954614694332,1.0005050238653577,0.8901723262637422,0.8417052353994602,0.8660141546046786,1.0023792731442542,0.9502250086935179,0.9507228774276828,0.9309298566447183,0.9826025268562936,0.9445149953868324,0.9670101556258092,0.9504523964603365,0.9652170617511643,0.9496030689441877,0.9197111466818882,0.9532979763960897,0.9584377555841763,0.9272291346211746,0.8629283841286292,0.8309714585635453,1.2451454555316497,0.9457641060069298,1.0507790266565014,0.9302600975135934,1.0439359496730773,0.8641683458460804,0.8220307215539744,0.8674049101385809,1.004805838660227,1.1167120093276333,1.1289587513935337,1.0186124423645055,1.045186136071887,1.1132952531022258,1.0282845651966235,1.1152171468296355,1.0363405111818662,1.1327835207194117,1.0559244755903288,1.118560135492539,1.0696989175869798,0.9805052467936264,0.9813600891861759,0.9348221865091578,0.9391527599486522,0.957573370100453,0.937709101568507,0.9798830691099935,0.9420822201844797,0.9839188302956818,0.9510080123048914,0.9752470056157151,0.959030420556232,4.5,0.1591735537190083,2.4444444444444455,1.8888888888888888,0.8100000000000002,0.6911111111111111,0.4931972789115646,0.26913265306122447,0.21064814814814814,0.22469135802469142,4114.464342338902,5076.636662232003,2194.3070965719317,1836.4743448195204,14.047561771316273,0.44582880425375976,7.784754104129512,0.8044965304510496,1.0,0.75,1.2890508633500515,2.9465246988479037,4.45825152364476,5.361373769664155,5.4969669900031395,5.4969669900031395,0.18,0.007579693034238489,0.07885304659498213,0.06296296296296296,0.028928571428571432,0.025596707818930035,0.017614188532555877,0.011213860544217686,0.009574915824915825,0.010213243546576885,0.43253719028795135,23.04,13.211238293444328,9.482448979591837,150.62657109229517,1.0,4.084637269347052,158.51891293830815,,144.44705277770802,144.13112222151616,145.130400804677,144.4535600495669,156.88199624928365,144.36981415424393,144.46038992377555,150.3547215603802,-0.041974349008939045,-0.11148272017837128,-0.5771745578947401,0.2182284980744546,0.11404372661020286,0.10298341446030244,-0.03853670038757612,0.09439974428603402,-0.11085581101292105,-0.11261957639155916,-0.10496648441806923,0.047549113978235656,-0.09212321318419582,0.05645198572202998,0.07085824009817195,-0.08732084182261424,-0.020687829444897207,-0.1821614600600173,-0.09636326654285335,-0.1866856733754692,0.04135707062983603,0.08520452583741359,0.07485698004224751,-0.174287491456666,-0.044470408180508056,-0.06011480642860612,-0.04024423786091664,-0.08596783581435029,-0.0463171506624076,-0.05109352728718824,-0.044251643061066444,-0.048941501564959085,-0.05751765958093391,-0.0720069717059345,-0.06442160125862623,-0.04381855536917043,-0.006943507256812723,0.005127794762363793,0.04430023881400965,0.02664655803806987,-0.0017316153324689366,-0.006383152520485507,-0.007176642474177856,-0.007570219248046776,0.0034085476927426216,0.006179213859833973,0.007781638152378024,-0.009706779727661884,0.012484147114774899,-0.04741638795986641,-0.05602767999024132,0.019973312614012563,0.008660056187346455,0.015843891781826765,0.013727837056830401,0.02109546580909054,-0.03926933273306243,-0.049665169582566324,-0.059682133170189604,0.029246414592166616,0.045853746654040066,0.052007788088620846,0.06520456006178456,-0.10314324974235659,-0.0024322614830206437,-0.04002675347721006,0.04451656449285467,-0.03166610906182377,0.05652323075470336,0.04822558466415818,0.04068595869097377,0.0016410679760583188,-0.11510674511170375,-0.07621327797639622,-0.016273941320222734,-0.03394714709397548,-0.13860072130568551,-0.03738143099091428,-0.11478444903893001,-0.04910579784849533,-0.08650340945752073,-0.04706334101938033,-0.05649507519040475,-0.08629596699933281,-0.024033397215111836,-0.0705611809479878,-0.03126963861037005,0.01593554955513257,-0.04479090964661456,0.014579786138367997,-0.022558296430242226,0.014912689958529115,-0.06648590215793246,-0.07706912382040464,-0.0747926034254722,0.006871818269317275,16.81684261724123,18.468527504661736,4.440279380190142,11.644182292193943,25.532560271076612,32.654492776638726,34.81897559384662,34.95565355994832,34.95565355994832,48.90246868703611,40.20954019278597,0.0,8.692928494250143,0.0,8.692928494250143,6775.180573196851,4213.277534542671,2954.4540161065042,39.0,31.0,35.0,41.0,42.0,41.0,40.0,40.0,40.0,354.2406241880009,25.0,4.727387818712341,5.501258210544727,6.322565239927284,7.130098510125578,7.967973179662935,8.796187635470453,9.645817254152318,10.48868754154148,11.346882686945893,0.5480225988700564,0.9647457627118645,1.1374043109607974,0.5002293095735688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6097732873236578,0.9504818876703224,0.9957040749564853,0.555679121804138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,4.0,9.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,20.426109579362823,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,50.49028249580417,31.60119253786543,18.75954929201341,18.31189916324491,169.20334453104326,-436.37884431484616,-48.81273180442024,-7.396251598556714,-24.243269128602563,482.53801212326744,1244.4752829912425,32.357342014084715,21.092801406631224,30.35305568271323,0.47058823529411764,0.6999232278416472,0.1865942162242025,157.25866316116182,0.1174287480951432,36.210996857978365,0.30007677215835293,9.0,0.48,0.21912783973691718,0.5008844959864678,0.7578653823179698,0.9113885926234748,0.9344383033064464,0.9344383033064464,3.0429000000000013,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,98.14320000000005,25.220646763434644,0.0,0.0,11.835812092322787,83.02303096926963,0.0,24.304080427335524,0.0,0.0,3.9318256327243257,0.0,5.1647859739235145,2.3978952727983707,6.558197802812269,4.844187086458591,8.04012466444838,6.985641817639208,9.582662261491093,32.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.92000000000001,0.0,10.460090784121137,0.0,0.0,0.0,7.526407558240621,0.0,-0.7866360514942559,67.10685434668704,0.0,0.0,0.0,44.70731403055957,4.794537184071822,11.835812092322787,64.71113180602472,24.304080427335524,0.0,0.0,0.0,29.51352926484056,35.97662395209581,30.120915239618856,317.0378258766163,,288.7941055554161,288.14795872874663,290.19154793500275,288.80741386749435,314.196910204303,288.6361399363949,288.82138192746356,300.8690409119837,30.120915239618856,317.03782587661624,,287.6441055554161,286.8336730144608,289.39513067996256,287.6607922036403,319.1754638202632,287.4460236573251,287.6783058464565,302.70441551105057,4.624477228753832,234.5524789352773,,213.33869925664982,212.99935999306422,214.07269577207015,213.3456887256702,226.7047302511971,213.25573729498737,213.3530247043255,219.68563443912916,1.2048366095847542,12.681513035064652,,11.551764222216644,11.525918349149865,11.60766191740011,11.552296554699774,12.567876408172118,11.545445597455796,11.552855277098542,12.034761636479347,2.405206390631583,158.51891293830815,,144.44705277770802,144.13112222151616,145.130400804677,144.4535600495669,156.88199624928365,144.36981415424393,144.46038992377555,150.3547215603802,56.07843137254902,0.0,2.1232956750769216,0.0,0.0,0.0,38.952057815467334,58.74654042243263,6.407126819958796,0.0,0.0,0.0,-1.8490092680372203,0.0,0.0,0.0,0.0,32.78506818644414,456.16891406737926,76.05400093765304,173.84495723202633,263.0368398950408,316.32105241018513,324.32105241018525,324.32105241018525,399.0,121.92685807708301,195.5724425869314,72.50532051229574,97.99,97.99,0.8888888888888888,6.561030665896573,5.643856189774724,3.409341957993218,4.899227796398353,,4.897396432267542,4.89746122199386,4.897208581556359,4.897394948365909,4.886638772509421,4.897413588044129,4.897393384472339,4.893951167746234,0.13637367831972871,0.19596911185593413,,0.1958958572907017,0.19589844887975438,0.19588834326225435,0.19589579793463635,0.19546555090037684,0.19589654352176517,0.19589573537889357,0.19575804670984936,2.1428100303521274,2.505368331999957,,2.5049944554258645,2.5050076847608085,2.5049560974296123,2.5049941524277552,2.5027954314305414,2.504997958459931,2.504993833095981,2.5042907188608403,298.25000000000057,1153.5631852960678,137.22631655780125,,137.04262363640365,136.98117320694965,137.17604412844295,137.04389098290747,139.495314429539,137.02758572029248,137.04522122831094,138.2086963742064,46.142527411842714,5.489052662312051,,5.481704945456146,5.479246928277986,5.487041765137718,5.481755639316299,5.57981257718156,5.481103428811699,5.481808849132437,5.528347854968256,7.966901585010789,5.83792224041822,,5.836582730747646,5.83613422641195,5.837555826442808,5.836591978532096,5.854321744252759,5.83647299305553,5.8366016851956894,5.845055567235248,0.0,10.460090784121137,38.952057815467334,0.0,-1.0048672652760653,0.0,12.302756323944006,2.1232956750769216,0.0,378.1614623913733,110.27681731510886,-284.406140008998,-31.81327604821586,-4.820443050999967,-15.800341111611,314.4899786584925,811.0760092594694,21.088617981987095,13.747051004397784,19.78234168925535,1888.0,30.0,1.4404934728256165,0.6279713630526936,0.0,0.0,0.24800564528543081,0.12353048790016029,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.07856742013183861,0.2682459513747883,0.17118931361083764,0.41864077255181875,0.1963150947769466,18.656489770562878,15.257216125849261,11.95159616038172,9.545810860119728,10.08169383199635,7.052706019136816,7.117524901546167,4.911168865654414,5.427464570308655,3.405009741836545,3.7175560090178488,2.064289474131247,2.5297822775561487,1.2716759895507899,1.5967980718475958,0.7650213970663511,2.581238448773038,1.287773783417922,3.786365193329608,1.7856743797588635,4.971680272597118,1.9840481894429571,91.13707122390748,49.79219531040653,29.299199859117085,21.538020997402253,20.88392410600663,20.88392410600663,112.0,122.0,60.08096199999996,34.97703800000001,0.0847457627118644,25.05,9.916666666666668,5.916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,59.0,0.0,0.0,59.0,0.0,3.0,3.0,56.0,3.0,25.0,56.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,4.0,4.0,0.0,25.0,5.0,0.0,0.0,5.0,0.0,1.0,12.0,0.0,0.0,0.0,0.0,0.0,3.367295829986474,4.634728988229636,3.6375861597263857,3.8066624897703196,4.04305126783455,4.204692619390966,4.3694478524670215,4.442651256490317,4.51085950651685,4.574710978503383 +2800,CCN(CC)CCOc1ccc(C(=C(Cl)c2ccccc2)c2ccccc2)cc1,0,23.964912280701753,5.74918947368421,2.982456140350877,5.291314706519385,158.58242616576092,96.28392084210526,1.6064239532591578,5.888522807017544,2.381184538086567,7.364901491228069,225.35895084469738,23.593220338983052,6.065254237288136,3.610169491525424,5.544256120527306,142.3893436918678,89.15989233898308,1.910712214915255,6.245771186440678,2.7178628722884848,7.520828576271183,268.3226077544897,19.46,5.98749,3.28,4.162222222222223,151.37002027007387,71.84864625999998,1.6274037984049008,6.1305200000000015,2.470967078189301,7.515356439999996,221.63351963846577,17.503875968992247,5.862147286821705,2.9689922480620154,3.3402239448751074,156.06895027764082,64.2644374496124,1.4848107965122008,5.993950387596901,2.2392892461798573,7.4558796589147285,195.88238677676281,18.044776119402986,5.773932835820895,2.783582089552239,3.0074626865671643,152.64588307959968,65.9780896716418,1.5238476255125226,5.942358208955223,2.15883545236779,7.4026092835820885,195.70540102830645,16.276315789473685,5.716519736842105,2.526315789473684,2.774122807017544,157.68835785089473,58.85841558552633,1.3987537351819608,5.8724934210526305,2.1409194282001303,7.39752069736842,178.0891609010247,15.314685314685315,5.769636363636365,2.6083916083916083,2.8352758352758354,156.66256913082287,54.328534293706284,1.4118534204616575,5.909566433566432,2.264151486373709,7.410855020979021,182.14109940942106,14.73076923076923,5.727800000000001,2.6076923076923078,2.5897435897435894,152.86602269461596,51.75368142307691,1.4225672111306154,5.861183846153845,2.3158119658119656,7.312400538461539,182.73480936580188,11.890625,5.627734374999999,2.3046875,1.9340277777777777,156.99542671720135,40.29842552343749,1.2419451938864843,5.7342499999999985,2.136863425925926,7.249917390625,153.0653521280968,9.604801477377656,0.05636091104955367,0.008702664956234802,0.48938134810711004,2.9198347829721585,1.3906675115927802,45.55803806094183,0.2586983200742961,0.06603847337642348,0.2687171539632633,0.03743241612803939,55.01818146565989,0.315507770317856,0.004577001528501694,-0.0020801004971884355,0.215643926944927,0.978661195412808,-0.13748924048023314,1.4714078819662813,-0.008540807286626812,0.00497915968929171,-0.006538937438300643,0.0012463653170988569,-0.09890715370004277,0.05590027700831047,-0.00589898122499222,-0.001616991353616987,0.025706371191135714,0.05731054949481166,0.0866285065371051,0.30241294432132354,0.011015092269754749,-0.005254122499230459,-0.004927803281269427,-0.0033311077069867784,1.0604169019925953,0.8725547037728965,-0.0021572934784942267,0.00033605087828731815,-0.021409091885159662,-0.019710033352871355,0.3231150253015991,4.229566890914554,0.04872484957269723,-0.0011936209352430055,0.002168265906586155,-0.0003491552821261729,6.993467636937281,0.25091991565717137,-0.0002928042153038824,-0.00013757496383563973,0.009571257286972331,0.19338566449809255,-0.1436205246728377,1.1512091425145698,-0.007882752232441432,0.00029255568877682725,-0.008718459614632414,-0.00030651170279719276,-2.6538158882655356,0.4452908587257619,0.0011396198830409378,0.00046132967079530647,0.07479224376731301,0.4593032424031707,0.14599566102338954,2.253007444944596,0.030601110245654255,0.0012202754693751952,0.03840760342753042,-0.0020441293090181652,7.111815625825555,-0.6144935397012957,-0.006684871299829724,-0.0008318400017373166,-0.021831354241326546,-0.08558889024673363,0.18028701338989112,-2.760161508126225,0.01936087348930554,-0.00803695209069168,-0.00488611753458044,-0.005527615980818201,3.707857066299373,-0.7293628808864265,0.0015840282217013633,0.00031087589605201336,-0.08546771787769018,-0.4470669183914284,-0.18965297278601406,-3.659780812763691,-0.04870021672554955,0.002048881549352481,-0.012420751736964252,0.004999274830125246,-8.903029570370814,-0.39400103878116355,0.0002778499153585546,0.0003126172149557329,-0.025428497229916892,-0.2756089599268912,-0.27177162844894903,-1.9974923228661665,-0.038975317846677925,5.648276392734679e-05,-0.020268709523498234,0.0007173956866535912,-7.924839670758603,,,0.49819376026272577,1.2586206896551724,0.6724137931034483,0.017241379310344827,0.5862068965517241,0.08620689655172414,0.8716842199484987,0.006563341790023591,0.015459893514161523,0.9299219785886484,0.25362145975430617,0.23685704543405284,1.801606198537147,0.490478505188359,2.03120624871925,1.8261671572274312,0.07273041961921459,0.07022257737009541,0.0620860945025087,0.2050390914918187,7.1085253016842245,1366.0,327.7038,170.0,301.60493827160496,9039.198291448372,5488.183488,91.566165335772,335.6458,135.72751867093433,419.7993849999999,12845.46019814775,1392.0,357.85,213.0,327.1111111111111,8400.9712778202,5260.433648000002,112.73202068000003,368.50050000000005,160.3539094650206,443.72888599999976,15831.03385751489,1946.0,598.749,328.0,416.22222222222223,15137.002027007386,7184.864625999998,162.74037984049008,613.0520000000001,247.0967078189301,751.5356439999996,22163.351963846577,2258.0,756.217,383.0,430.88888888888886,20132.894585815666,8290.112431,191.5405927500739,773.2196000000002,288.8683127572016,961.8084759999999,25268.827894202404,2418.0,773.7069999999999,373.0,403.0,20454.548332666356,8841.064016,204.19558181867802,796.276,289.2839506172839,991.9496439999998,26224.523737793064,2474.0,868.911,384.0,421.6666666666667,23968.630393336,8946.479169000002,212.61056774765802,892.6189999999998,325.4197530864198,1124.4231459999999,27069.552456955756,2190.0,825.0580000000002,373.0,405.44444444444446,22402.74738570767,7768.980403999998,201.89503912601702,845.0679999999999,323.7736625514404,1059.752268,26046.17721554721,1915.0,744.6140000000001,339.0,336.66666666666663,19872.582950300075,6727.978584999999,184.93373744698,761.9538999999999,301.05555555555554,950.61207,23755.525217554245,1522.0,720.3499999999999,295.0,247.55555555555554,20095.414619801773,5158.198466999998,158.96898481747,733.9839999999998,273.51851851851853,927.989426,19592.36507239639,547.4736842105264,3.212571929824559,0.49605190250538367,27.89473684210527,166.43058262941304,79.26804816078847,2596.8081694736843,14.745804244234877,3.7641929824561378,15.316877775906006,2.1336477192982453,3136.036343542614,18.6149584487535,0.27004309018159994,-0.12272592933411769,12.722991689750694,57.74101052935568,-8.111865188333756,86.8130650360106,-0.5039076299109819,0.2937704216682109,-0.38579730885973795,0.07353555370883255,-5.835522068302524,5.590027700831047,-0.589898122499222,-0.1616991353616987,2.5706371191135715,5.731054949481166,8.66285065371051,30.241294432132353,1.101509226975475,-0.5254122499230459,-0.49278032812694267,-0.33311077069867784,106.04169019925953,112.55955678670364,-0.27829085872575526,0.04335056329906404,-2.7617728531855965,-2.542594302520405,41.68183826390628,545.6141289279774,6.285505594877943,-0.1539771006463477,0.279706301949614,-0.0450410313942763,902.1573251649091,33.62326869806096,-0.03923576485072024,-0.01843504515397572,1.2825484764542923,25.913679042744402,-19.24515030616025,154.26202509695236,-1.056288799147152,0.03920246229609485,-1.1682735883607436,-0.04107256817482383,-355.61132902758175,67.68421052631581,0.17322222222222255,0.07012210996088658,11.368421052631577,69.81409284528195,22.191340475555208,342.4571316315786,4.651368757339447,0.18548187134502966,5.837955720984624,-0.3107076549707611,1080.9959751254844,-87.87257617728528,-0.9559365958756505,-0.11895312024843627,-3.121883656509696,-12.23921130528291,25.78104291475443,-394.7030956620502,2.7686049089706923,-1.1492841489689103,-0.698714807445003,-0.7904490852570026,530.2235604808103,-94.81717451523545,0.20592366882117724,0.040413866486761735,-11.110803324099724,-58.118699390885695,-24.654886462181828,-475.77150565927985,-6.331028174321442,0.2663546014158225,-1.6146977258053528,0.649905727916282,-1157.3938441482057,-50.432132963988934,0.03556478916589499,0.04001500351433381,-3.2548476454293622,-35.277946870642076,-34.786768441465476,-255.6790173268693,-4.988840684374774,0.007229793782700389,-2.594394819007774,0.09182664789165967,-1014.3794778571012,0.7060855423059235,0.6172650413238779,0.45883473066007774,0.34081862128567847,0.2906719615085337,0.17996798369089945,0.19249752564814931,0.10442410055371489,0.12485499883374168,0.057003326421441354,0.07915387914841408,0.02818138570616349,0.04857894648012968,0.01467838266932899,0.03273739681716737,0.008308086258821786,17.00110350478347,5.671168919937028,3.520344646523848,2.169338342371817,0.3737658331399093,-0.5233680485224201,3.2707669090939153,0.9872569003884877,6.00754295908167,0.7739979912844883,14.543271392954097,10.931015956019873,35.4505175808204,11.68227273295191,2.2087561782184086,0.7788076875399335,3.462942600558725,2.2198993077753912,3.5105608418152974,1.2904229498014623,3.6764751784025855,2.4160513699373314,22.455880143229468,14.706816686674154,0.21729013614264697,0.4532375931413512,0.6178672529990921,0.7695469873527734,0.8414038616178793,0.8586360358752703,1.515977489729346,900.4579562850508,0.0,0.0,6.0,0.0,16.0,0.0,4.0,0.0,0.0,4.505567903320724,3.064277091729524,2.0586327881774427,1.1320934212803646,0.6931539474443316,0.5878907895495953,211.50846704495444,1229.3412834617784,39.896381774554804,21.567390937925936,42.128735032760034,,15.0,719.0,0.0,0.0,0.0,6.606881964512918,52.67952640829547,0.0,0.0,60.6636706846161,43.01285240407817,16.337802844032566,14.447619047619048,36.5,19.5,0.5,17.0,0.0,0.0018062397372742135,2.5,0.09624764723052665,0.06130043724028744,-0.0349472099902392,0.0,0.06180739466895924,0.0,0.5360066833751046,0.7638752052545152,0.43975903614457795,0.47470624613481716,0.7638752052545152,25.27884237850646,0.19033691191068414,0.44833691191068414,26.967737379070805,7.35502233287488,6.868854317587532,52.246579757577265,14.223876650462412,0.6521926053310407,0.11865524060646013,0.0,0.23533289386947923,0.23076923076923078,0.34903672893002685,-0.6125155684833147,-0.023088642823562506,-0.010745887166373942,-0.02552148202013811,0.6509632710699731,1.1423586831777728,0.033863103654398916,0.02004138040662759,0.034616929793265847,-7.405025842487533,0.7212172365809704,0.8277902102461455,1.2738077265040693,0.6805244643428203,0.6597870707706139,1.1929645713405763,0.7279070838264554,0.9951728100463815,0.7698987461945002,0.979184518801908,0.7665936914336976,0.9761375838921239,0.8290444145356662,1.3852738856007594,1.615141998057359,1.204528301886792,1.157084941632722,1.0226911196509973,0.830952427062544,0.8960188000279238,1.2120760070656558,1.0802846149548895,1.2551648408392444,0.929436402072495,0.8631047398457958,1.3347744450231978,1.3621705857773803,1.2916776363902294,1.1811137646659686,0.8023949177334567,0.8605248353533669,0.7730638719489172,1.2056042697422524,1.0550424487947914,1.275202714924263,0.8324446743650269,1.1446334947068157,0.9165920560753226,0.8909587042176558,1.1161362996339055,0.9112985973944648,1.0715510721232282,1.1394281132497457,1.06542119076342,0.991009827655518,0.9398235835257664,1.1010706847129204,1.0490217819585501,1.2621130551816957,1.0536720865284745,0.9717196256103775,0.8849056603773582,0.8559356333207534,0.8394452066886487,1.2484068044434409,0.9292127566742373,1.1381414902194735,0.9009538403256891,1.3856585896223186,0.8705118753833726,1.1705898408455608,1.3077233246524294,1.3470826299338063,1.0107929806043012,1.1051323762454541,0.8467844368018955,1.1623021717375346,0.9290290553209037,1.2895625331607976,1.19193575481249,1.4506875038087872,0.9136254553735772,0.8643337819650065,0.8095263219845044,0.8868111675668233,1.0578229317851957,1.1140954998983916,1.136095284984868,0.8750324026018883,1.1481486304603594,0.7853410806495035,1.0676825811161266,0.5950270714153862,1.1440636309860446,0.7935312920592194,0.9610349020787848,1.0161211628232987,0.8704599056603771,1.0508241449877018,1.155049797938286,0.8037207647847785,1.09903022252637,0.8967360376399962,1.2003938519306372,0.8146357540792506,1.1224698679650114,4.0,0.10733598612386491,2.666666666666668,1.875,1.2844444444444447,0.7430555555555556,0.4653061224489796,0.3611111111111111,0.24111866969009824,0.10687500000000003,5614.751119560537,6382.3082935767725,2697.093463159139,2415.3053279234164,17.11724310206828,0.4592867987776908,9.25551931381983,0.8494092575129477,0.0,0.23076923076923078,1.327322110844017,2.768612922435217,3.7742572259872986,4.700796592884377,5.13973606672041,5.244999224615146,0.1290322580645161,0.005963110340214717,0.0666666666666667,0.043604651162790706,0.030582010582010585,0.016887626262626264,0.011078717201166181,0.010030864197530864,0.0092737949880807,0.005625,0.32874469946560286,23.658688865764827,12.7575,7.0,178.95217054120553,0.0,4.2728408460064236,179.15441372779037,,138.96527632812897,138.17082323264643,140.06403881064597,138.96748454844888,184.93449018779563,139.1513234128519,139.7691333066715,164.57174764529393,0.03284896320459892,0.08120879246393835,-0.23901879569639192,0.44064598656859605,0.3351769083374673,-0.09886564497560019,0.03229743739179497,-0.03301454483420673,0.07539786180262201,-0.024333904039466687,0.033296416475912326,-0.0017977176101644978,0.005820034608729113,-0.10466440508397239,-0.1858041601910154,0.052528301886792396,0.01962801108783083,0.062292752088445966,0.006637971194387112,0.04257890915793849,-0.07956153785205827,-0.018338253470573426,-0.08898991974209101,0.019273935883439994,0.09084567815670513,-0.03827641246958357,0.038614709399626274,-0.043747257569109264,-0.006750393367397356,0.23234527491875046,0.09283909208857435,0.188346215617882,-0.018074629442738487,0.008068952333733715,-0.009327618097957405,0.1271119373747807,0.026124424981418627,-0.005195164695731105,-0.01580837186396308,0.01955787102224723,0.06623171476203916,-0.10327452354757614,0.025269067578692187,-0.03047082884101284,0.004430079525146521,-0.032444745287174066,-0.008188402847113974,-0.048235252739531914,0.04636127667756202,0.02022004012743798,0.053010161038636636,0.15283018867924522,0.15730453143504122,0.10498243455488192,0.04945356606293724,0.11828878609210086,0.018478250737559425,0.14292948128194743,-0.054608532402133,0.1292630079070218,-0.06397774500062518,-0.11860829030872563,-0.09558451415981102,-0.044610106874257816,-0.02931292234268508,0.1296406307668769,-0.06058560960052817,0.07483957949067954,-0.1217010581828648,-0.018183124755959675,-0.14766922770656116,0.06739330467717597,-0.07593731974620263,0.028105085460890675,0.03572191939082916,-0.17464441219158197,-0.1531137723951456,-0.13637549680642058,-0.08033227435887592,-0.18825099719071708,0.031025574102443686,-0.046222399849703354,0.13355469262323288,-0.1618197718135726,-0.04102125793116709,0.004929833641515541,0.03592200969793354,-0.05196049528301884,-0.09439197092047219,-0.19542530920110407,-0.04384500316265094,-0.15065933878304474,0.0008553008729531264,-0.07542767264597183,0.019165091673476395,-0.14404037828304023,28.726496246043485,27.657037777227593,6.534047077809358,13.41067057931374,25.3170320611953,33.48041424452112,38.08580643065547,39.68646794659797,40.17864338519447,58.90498121285825,52.958847559595505,2.109182168957223,2.036454743732767,1.8004967405727523,5.946133653262742,9492.021136183706,8354.491028711454,1610.4303079825522,96.0,40.0,52.0,64.0,78.0,78.0,92.0,98.0,98.0,405.1859421960008,31.0,4.962844630259907,5.7899601708972535,6.634633357861686,7.4815557019095165,8.338783971442199,9.196545660953994,10.0613883347884,10.9260643715946,11.795929110630093,0.6315789473684211,0.9543859649122807,1.1134351442133836,0.5929739843739729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6951591973946843,0.9462676298589614,0.9857719681578307,0.6341966283508488,14.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,9.636772684650527,12.356393797796823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.24481911115312,41.912601423839355,12.117860935981842,5.032286352113597,244.51054536357043,-429.08526031814006,-16.174276746748106,-7.527811584528772,-17.878552513255833,456.0190124085249,800.2560231436383,23.7221050278067,14.039579353397162,24.250182519504197,0.4666666666666667,0.99167859612417,0.28051243766609874,20.32364047128721,0.06775604986596319,75.30920772485531,0.008321403875829957,8.0,0.2903225806451613,0.22755822716024365,0.47465543079191375,0.6470646998009211,0.8059120918564966,0.8811645778060175,0.8992110620769557,6.562600000000006,,1.0399159663865545,0.5879898120088726,0.5300446839313885,1.0529505248587374,-1.3665311283925297,0.6129431154424184,0.5985419659928938,-0.635030476563845,124.37800000000001,4.736862953800049,0.0,4.899909730850478,0.0,13.847474399381248,26.241151182250643,101.61949343355357,0.0,5.749511833283905,4.143134726391533,0.0,5.407171771460119,0.0,6.882437470997847,0.0,8.44741429680832,0.0,10.059764541593394,36.00000000000001,28.580972187638643,0.0,0.0,0.0,0.0,0.0,4.050389861913063,0.0,54.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.764036614773448,63.46580322016287,4.736862953800049,0.0,5.749511833283905,31.141060913101125,0.0,0.0,30.537828874472233,84.92913895846256,0.0,10.605390882182864,0.0,33.799517109316454,39.62407425149701,38.23466534492518,358.30882745558074,,277.8588343137485,276.301095443775,280.0915228155036,277.86235181932125,370.5286850582636,278.2603748867077,279.4969878570676,329.45006172754967,38.23466534492518,358.3088274555806,,276.89063668987137,275.753656653284,279.59803293736036,276.882018572039,371.23551150398396,277.68970371026137,278.9397246473503,329.7785257671517,4.826539265155691,265.43608242198604,,206.34688301295472,204.46503694725232,208.18777758522953,206.3674141334484,287.1899601128258,206.1749849697576,207.17062400733505,249.66320109645022,1.318436736031903,12.35547680881313,,9.58133911426719,9.527623980819827,9.6583283729484,9.581460407562801,12.776851208905642,9.595185340920956,9.63782716748509,11.360346956122402,2.4132696325778458,179.15441372779037,,138.96527632812897,138.17082323264643,140.06403881064597,138.96748454844888,184.93449018779563,139.1513234128519,139.7691333066715,164.57174764529393,53.9372549019608,0.0,4.345668886373182,6.874315464636519,0.0,0.0,0.0,56.189002184996355,3.7092869549132157,0.0,5.935004403965443,0.0,0.0,2.3514367368975955,0.0,0.0,0.0,36.14920781599838,694.7001683949171,75.65736031810897,157.81093657880737,215.13266188127602,267.94540579440945,292.96495580306333,298.96495580306333,756.0,135.18770531033766,5.829389377178161,63.939922807251214,12.47,12.47,0.875,8.785025651093038,5.954196310386875,4.298229658917719,5.2863792820891575,,5.27657880112026,5.280618680369347,5.281843951240252,5.276478561183644,5.255028533401777,5.279436752911207,5.27859796344629,5.2621784979894,0.1482148158247489,0.18228894076169508,,0.1819509931420779,0.18209029932308093,0.18213255004276732,0.18194753659253943,0.18120788046213024,0.1820495432038347,0.18202061942918243,0.18145443096515174,2.5229139676888175,2.7298443027928854,,2.7279886703641814,2.7287540021586016,2.7289860069323244,2.72796967303797,2.7238961710690712,2.7285301534353548,2.728371262223266,2.7252558411160326,329.71000000000106,669.5378187889686,181.07955561616987,,181.53066275429518,181.56367926149747,181.41897004258678,181.52855505486482,183.29920571071486,181.61068014949407,181.6713236960035,182.97850921296953,23.087510992723054,6.244122607454133,,6.259678026010179,6.260816526258534,6.255826553192647,6.259605346719477,6.320662265886719,6.262437246534279,6.264528403310465,6.309603765964466,7.571298388637252,6.263647205482567,,6.266135317223459,6.266317179089497,6.265519844964273,6.266123706448539,6.275830558553821,6.266576012826191,6.266909877682864,6.274079446943001,5.935004403965443,2.3514367368975955,0.7425942273782283,4.192988396952524,0.8788438523557573,28.580972187638643,0.0,8.054955841286398,0.0,397.1161640265052,171.28686421415586,-300.5869076571911,-11.330558936682936,-5.273454520301597,-12.524454485716292,319.4547970982116,560.6029979972686,16.61803574455263,9.835140315741555,16.987969636280873,2488.0,43.0,1.2118094913048496,0.6803919421308564,0.0,0.0,0.27148618588600715,0.12434639513743512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2874574785652648,0.09192780768773619,0.2248892177291057,0.057304134134530955,20.47648072687178,17.90068619839246,14.22387665046241,10.565377259856033,11.626878460341349,7.198719347635978,10.009871333703764,5.430053228793174,7.990719925359468,3.6482128909722467,6.174002573576298,2.198148085080752,3.789157825450115,1.1449138482076613,3.011840507179398,0.7643439358116043,3.324415802577945,1.698066694678679,5.3440154258901105,2.3055838783227913,8.01104739696035,2.7668516108468513,97.9629893567928,73.35120022031492,46.0546493962519,31.48280737300068,27.30070025052842,26.224801299183927,142.0,163.0,66.17220399999998,32.045795999999996,0.3508771929824561,149.03,8.527777777777779,6.777777777777779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,18.0,57.0,0.0,1.0,59.0,18.0,1.0,10.0,49.0,19.0,31.0,40.0,0.0,0.0,0.0,26.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,2.0,0.0,0.0,29.0,3.0,0.0,1.0,1.0,0.0,3.0,9.0,0.0,0.0,1.0,0.0,3.0,3.7376696182833684,7.544637947523415,4.269697449699962,4.8342958089798485,5.385068292956691,5.942635319675591,6.129050210060545,6.61338421837956,6.993932975223189,7.308375335427102 +1349907,Cn1cc[nH]c1=S,0,38.76923076923077,6.064876923076924,2.923076923076923,5.88034188034188,165.11486687119955,154.10681276923071,1.8964059560841533,6.1684307692307705,2.5160124511976365,7.6630745384615375,227.99812744560862,29.153846153846153,6.536846153846152,3.3846153846153846,6.128205128205129,155.7689751395231,111.16782015384616,1.778314911538462,6.659961538461541,3.0123456790123457,7.952389692307696,245.53506271014152,26.80952380952381,6.430785714285713,3.0476190476190474,4.0,166.7776086318023,101.42520719047624,1.517856069264143,6.516285714285715,2.6190476190476195,7.9435535238095225,206.12118633032438,22.142857142857142,5.835,2.0952380952380953,0.5555555555555556,155.96606295189656,79.30937304761905,1.681604071890381,5.976738095238095,2.1384479717813054,7.513587714285716,183.77958852992137,7.9411764705882355,5.527176470588236,1.3529411764705883,0.0,164.8592214825027,15.79642729411765,1.1302993276115294,5.638470588235294,1.6459694989106755,7.38948705882353,96.46528312547804,1.0,4.840000000000001,1.0,0.0,184.91765202424895,1.016064,0.4446129048489999,4.840000000000001,1.0,6.718464,31.083744430930263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.467455621301777,0.08873254437869814,0.023319974860467864,0.5562130177514792,3.3530571992110465,1.943587674959159,76.9832887692308,0.4228419143411717,0.0865159763313609,0.27455134292741135,0.04504991715976328,54.17242099102671,0.041420118343196144,-0.003440236686390526,-0.014883320074623231,0.18934911242603547,1.1143984220907301,-0.9358188875704123,0.29371907692308213,-0.036005372130177515,-0.0005508875739645553,-0.020344802396084397,-0.007247526627218879,-5.585100856928189,2.39701324316709,-0.008223753169907007,0.0035921774159626803,-0.1532826148210764,-0.6139444600983062,0.13049948157514335,10.65738252380953,0.02707148545250973,-0.0026712876866723245,-0.005892132910176585,0.0036816908988447916,8.159456123250516,-1.8300929839391373,-0.020794082840236663,-0.0019546457396318944,-0.29980276134122286,-1.8882627344165808,0.08715905751954502,-8.58004657142857,-0.00805153180140605,-0.023152240067624646,-0.07721769806290227,-0.00885534206818823,-12.64599703602873,-12.024016707274626,-0.0165696484510964,-0.0016056104326993648,0.09989557953358863,0.06474068917507808,-0.5363653919284266,-53.55554329411764,-0.26328278472229383,-0.025760320222763616,-0.07398526654434148,-0.01526229725026107,-31.33411718155513,13.07100591715976,0.05983668639053247,0.005801756088333938,0.28994082840236696,2.5272846811308347,0.6799513321626046,60.435075999999974,0.29933095134675153,0.07083786982248523,0.24715911396823073,0.028249852071005745,57.897154325528724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5190476190476191,1.1785714285714286,0.5,0.07142857142857142,0.6785714285714286,-0.17857142857142858,0.45525503427979747,0.01566901567611196,0.027954729961826245,0.5349773169858608,0.2560024786769857,0.21607330027163016,0.9902323512656582,0.4720757789486159,1.9219895602942405,1.1007860762197892,0.5734300154274082,0.0,0.0,0.8212034840744515,8.771166860923076,504.0,78.84340000000002,38.0,76.44444444444444,2146.493269325594,2003.3885659999994,24.653277429093993,80.18960000000001,32.708161865569274,99.61996899999998,2963.975656792912,379.0,84.97899999999998,44.0,79.66666666666667,2024.9966768138001,1445.1816620000002,23.118093850000005,86.57950000000004,39.160493827160494,103.38106600000005,3191.9558152318396,563.0,135.04649999999998,64.0,84.0,3502.3297812678484,2129.929351000001,31.874977454547,136.842,55.00000000000001,166.81462399999998,4328.544912936812,465.0,122.535,44.0,11.666666666666668,3275.287321989828,1665.496834,35.313685509698004,125.51149999999998,44.90740740740741,157.78534200000004,3859.371359128349,135.0,93.962,23.0,0.0,2802.606765202546,268.53926400000006,19.215088569396,95.854,27.981481481481485,125.62128000000001,1639.9098131331266,6.0,29.040000000000006,6.0,0.0,1109.5059121454938,6.0963840000000005,2.6676774290939993,29.040000000000006,6.0,40.310784,186.50246658558157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,227.0769230769231,1.1535230769230758,0.3031596731860822,7.23076923076923,43.589743589743605,25.266639774469066,1000.7827540000003,5.496944886435232,1.1247076923076917,3.5691674580563473,0.5856489230769226,704.2414728833472,0.5384615384615499,-0.04472307692307684,-0.193483160970102,2.4615384615384612,14.48717948717949,-12.16564553841536,3.818348000000068,-0.4680698376923077,-0.007161538461539219,-0.26448243114909714,-0.09421784615384543,-72.60631114006645,50.33727810650889,-0.17269881656804714,0.07543572573521629,-3.218934911242605,-12.89283366206443,2.7404891130780102,223.80503300000012,0.5685011945027043,-0.056097041420118815,-0.12373479111370828,0.07731550887574062,171.34857858826084,-38.43195266272188,-0.4366757396449699,-0.04104756053226978,-6.29585798816568,-39.653517422748195,1.8303402079104454,-180.18097799999995,-0.16908216782952706,-0.4861970414201176,-1.6215716593209475,-0.18596218343195284,-265.5659377566033,-204.40828402366864,-0.28168402366863876,-0.027295377355889203,1.6982248520710068,1.1005917159763274,-9.118211662783251,-910.4442359999999,-4.475807340278995,-0.43792544378698145,-1.2577495312538052,-0.2594590532544382,-532.6799920864372,78.42603550295856,0.3590201183431948,0.03481053653000363,1.7396449704142016,15.163708086785007,4.079707992975628,362.61045599999983,1.795985708080509,0.42502721893491135,1.4829546838093843,0.16949911242603447,347.38292595317233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7537172688484135,0.6895227150386855,0.4720757789486159,0.344771455231577,0.3206079364631471,0.19587016225669443,0.22903364137778537,0.12311304311395144,0.147870808309554,0.05764149837169546,0.11785113019775792,0.041455673041880164,0.11785113019775792,0.04564354645876384,,,16.004412236662287,5.830388840391448,3.194205940541178,2.2308764207659992,0.387386906356179,-0.4410532348923158,3.1832412547554503,0.9776808433511256,5.0366579044845725,0.6534461974655986,14.558126903115337,10.312951001089928,32.062200261487554,11.850516455519987,2.9356162781994004,0.9942269220690536,3.1808863286913667,2.314476181651873,2.571637162349291,1.1931981409626535,3.3495616233507377,2.553314187458174,24.440466708781017,15.58465052782657,0.4448932701485439,0.7747815709919612,0.8141597286550097,0.8535378863180583,0.8535378863180583,0.8535378863180583,2.325296719877603,197.4547535417141,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9622903849482258,0.6734528847818049,0.5196067309356511,0.3657605770894974,0.3657605770894974,0.3657605770894974,111.81252123321777,186.40370558579428,18.53999519310138,14.338746583522635,31.19517727607448,,3.0,36.0,0.0,0.0,0.0,0.0,4.771065770590158,0.0,0.0,24.008458773694695,4.9839785209472085,12.217873443046695,3.6333333333333333,8.25,3.5,0.5,4.75,0.019047619047619042,0.0,-1.25,0.16410256410256402,0.039658119658119606,-0.12444444444444441,0.06904761904761914,0.10506145251396659,0.0,0.5974358974358974,0.8523809523809526,0.4333333333333334,0.5577777777777778,0.7833333333333334,3.1867852399585823,0.10968310973278372,0.19568310973278372,3.7448412189010254,1.7920173507389001,1.512513101901411,6.931626458859608,3.304530452640311,0.6089385474860334,0.3669724770642202,0.0,0.24770642201834864,0.25,0.2886547471492474,-0.2034067207911519,-0.02206975463712303,-0.015646670830088607,-0.06780224026371731,0.7113452528507526,0.5012645960674672,0.04801792299899615,0.038558815082112854,0.05012645960674672,-0.547645966636144,0.540650406504065,1.134317608930501,1.82111391754745,0.8297872340425533,0.7423529411764703,1.5090016989023682,0.5516542797904921,0.7016924073350945,1.0339096654173396,1.0917516629711752,1.2049946962186329,0.8945617185961333,0.5586527293844367,1.384107550114032,1.2140895473638766,1.5015197568389058,1.3757422969187671,0.9332068929610127,0.5678194487694834,0.6286005311519167,1.250204204462405,0.9983824305775524,1.1809269071903188,0.6525413333694399,1.1122725512969416,0.8827614589227843,0.8210510708550558,1.4620060790273557,1.3597198879551815,0.9151792997704287,1.1110389058522883,1.0643866309093957,0.9472937534929707,1.064322669200718,0.8741775536226819,1.207946366647865,2.110712577714012,0.9205659937723738,0.6246816793832075,0.2928660826032541,0.6414532871972316,1.1509922274652304,2.0924981715097877,1.9603099000797757,1.0830421901477467,1.2053188991782964,1.1281103101226337,1.6059091739933453,0.0,0.0,0.1613295899618411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.5,0.0,1.1111111111111116,0.4444444444444444,0.0,0.0,0.0,0.0,0.0,0.0,1138.8014865232135,1267.3147116454993,736.150480837093,673.6857508407015,5.327961273483324,0.391538280083629,3.2418604801114816,0.6434887639890368,0.0,0.25,1.7381493331928664,3.0269868333592873,3.180832987205441,3.334679141051595,3.334679141051595,3.334679141051595,0.21428571428571427,0.0,0.12345679012345684,0.08888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.42663139329806,5.142857142857143,1.8518518518518519,0.96,46.79390536965459,1.0,2.8620627489222246,11.717126434781292,,6.82743234674985,7.029318985730073,6.829179067760659,6.829413254384539,11.138431019432376,7.155260549780913,7.2419661867622995,10.070324603660358,0.0023712737127371776,-0.03877085583963506,-0.6382219605156397,0.3404255319148936,0.3323529411764706,-0.4814904414281578,0.003815361510516264,-0.08515090606918035,-0.006367466418625687,-0.07410199556541,-0.1608776904409509,-0.10309860173783487,0.1372273841786037,-0.09268023618041622,0.15403864873165696,-0.275582573454914,-0.1830999066293183,0.06714360419983913,0.13843761021637652,0.06402271046069238,-0.030876235811535514,-0.021460950973146056,0.08172469853358855,0.15062011211575857,-0.10477158343011998,-0.23434561677269633,-0.08381851830146779,-0.5390070921985816,-0.5631465919701213,0.04484441769336519,-0.11145336486141265,-0.01904147041324205,-0.26760652828964565,-0.28125048393341084,-0.19656733300494178,-0.2334397615001082,-0.6883668101386896,-0.1867369922401802,-0.06885129346435118,0.1795994993742179,0.019307958477508574,-0.2759666563226675,-0.6956775184632419,-0.6226506308687815,-0.2977521761310326,-0.2694769792617713,-0.33878635550284036,-0.5784145623978189,0.7483062330623304,0.674348817668947,0.24878912276055254,0.5212765957446811,0.753725490196078,0.34984340604901837,0.785041493630694,0.7079027437786954,0.8187836839657491,0.9002291204730226,0.6270788905298442,1.068757003404352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,0.9999999999999998,,21.750342364227798,30.127644410549397,31.97549056439555,32.130567487472476,32.130567487472476,32.130567487472476,13.453926922059683,7.705502533538524,4.014010107991858,0.0,0.0,5.748424388521161,355.00512228191695,216.7104014557515,141.8415739769203,0.0,9.0,10.0,9.0,4.0,1.0,0.0,0.0,0.0,114.02516919199999,7.0,3.4965075614664802,4.2626798770413155,5.056245805348308,5.84354441703136,6.639875833826536,7.4318919168078,8.22817689595132,9.0217190130337,9.817548327858471,0.769230769230769,0.9778461538461541,1.1344148366042985,0.7311631004912168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7268888991248272,0.9671191553544497,1.00512633760995,0.640651176627159,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.551078168738563,0.0,4.771065770590158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.217873443046695,19.441359125903343,0.0,76.35661224784259,-53.80631450355021,-5.838018303438883,-4.138947269503862,-17.935438167850073,188.16913348106036,132.5973910822441,12.701976889662497,10.199799314018774,13.259739108224409,0.3333333333333333,0.9646591866443986,0.4788179016440828,17.20098833209975,0.2502478692848503,27.753601523509204,0.03534081335560128,2.0,0.0,0.46971426792111665,0.8180073353228107,0.8595824360039367,0.9011575366850628,0.9011575366850628,0.9011575366850628,1.08269,,0.9107142857142858,0.3467453409515673,0.3635986756455034,0.9103590593973134,-0.6122257053291534,0.33399632802937596,0.3518820903837915,-0.4810703813153896,30.597699999999996,0.0,0.0,9.551078168738563,7.04767198267719,0.0,0.0,17.16475291381631,0.0,0.0,2.70805020110221,0.0,3.9318256327243257,2.3978952727983707,5.332718793265369,4.59511985013459,6.80128303447162,6.502790045915623,8.302761580704049,9.999999999999998,3.685185185185185,0.0,2.846064814814815,0.0,0.0,0.0,0.0,1.8425925925925926,12.712000000000003,0.0,0.0,4.793981481481481,0.0,0.0,0.0,0.0,0.0,14.747392875855882,0.0,0.0,0.0,9.551078168738563,7.04767198267719,4.771065770590158,0.0,12.393687143226153,0.0,0.0,0.0,9.505120306385818,9.449555688622754,8.42863948675507,23.434204413525137,,13.385106772259054,13.952699479912482,13.545932640292285,13.389189682300895,22.451690155353035,14.209098618519253,14.377914869781828,20.27782966736282,8.42863948675507,23.434204413525137,,12.969939789763664,13.70502423637565,13.286219300545495,12.975172706944697,22.888994230588146,13.970529812783983,14.126570519507695,20.621451368302388,4.214319743377534,15.931421950140102,,9.580508623887257,9.671931581386666,9.36455231910675,9.583521207919345,15.915514107642917,9.865832580664732,10.01043818970301,14.223800151436318,1.2040913552507244,3.347743487646448,,1.9121581103227219,1.9932427828446404,1.9351332343274694,1.9127413831858422,3.2073843079075766,2.029871231217036,2.053987838540261,2.89683280962326,2.2143197433775343,11.717102206762569,,6.822655426945852,7.025884788663609,6.824908988095501,6.824646135350063,11.138384262629497,7.152263070406679,7.239226304945742,10.070190493493497,12.572549019607846,0.0,1.9016203703703705,0.0,0.0,0.0,0.0,13.066642388929349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.328465296153066,255.17719072134653,22.595941331507262,39.35082883367073,41.35082883367073,43.35082883367073,43.35082883367073,43.35082883367073,47.0,73.7981896483653,9.348555007556403,47.572444411116166,52.81,20.72,0.5,5.0637810383053425,3.807354922057604,2.5441997063598016,2.616225071420325,,2.6094707843845355,2.609885338659245,2.6099940339188503,2.609466644379048,2.6046183160512553,2.6097856772932895,2.609709254269811,2.606376771910147,0.3634571009085431,0.3737464387743321,,0.3727815406263622,0.3728407626656064,0.37285629055983577,0.3727809491970069,0.372088330864465,0.3728265253276128,0.3728156077528301,0.3723395388443067,0.5771411993857017,0.605057522430954,,0.602472492232722,0.602631344882669,0.6026729915384106,0.6024709057007723,0.6006112007815327,0.6025931580445856,0.6025638743592919,0.6012861029435791,84.07000000000005,18.154002923023157,20.123210286002315,,20.168495682075854,20.28750359539213,20.30061114678191,20.168419976242745,20.226038806970717,20.280055356909156,20.269561835273137,20.252423455667305,2.593428989003308,2.874744326571759,,2.881213668867979,2.898214799341733,2.90008730668313,2.8812028537489636,2.889434115281531,2.8971507652727366,2.895651690753305,2.893203350809615,2.542216139178313,2.645198945523314,,2.647446823296381,2.653330166124001,2.653976047408644,2.6474430696215214,2.650295880206998,2.6529629644111536,2.652445399876794,2.651599519276193,2.606481481481482,2.846064814814815,0.0,0.0,0.0,0.0,3.685185185185185,0.0,1.9016203703703705,89.71356866969953,20.198289796193247,-14.233155468975507,-1.5443061452961553,-1.0948581129981159,-4.744385156325169,49.77558035723897,35.0754237577376,3.359999908969263,2.698109519825969,3.5075423757737605,40.0,5.0,0.4714045207910317,0.2660300842498721,0.0,0.0,0.16666666666666666,0.07905694150420949,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.037267799624996496,0.23570226039551584,0.08291134608376033,0.11785113019775792,0.04564354645876384,5.276020881938894,4.826659005270798,3.304530452640311,2.413400186621039,2.8854714281683242,1.76283146031025,2.2903364137778537,1.2311304311395144,1.330837274785986,0.5187734853452591,0.4714045207910317,0.16582269216752066,0.11785113019775792,0.04564354645876384,0.0,0.0,1.1380711874576983,0.5922437270799128,1.040440114519881,0.41907807267301816,0.4714045207910317,0.18257418583505536,26.01682618206697,19.52080884190746,17.95117217900799,17.689566068524748,17.689566068524748,17.689566068524748,32.0,35.0,15.780758,9.529241999999998,0.38461538461538464,7.03,2.9722222222222223,1.6111111111111112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,13.0,0.0,0.0,13.0,5.0,1.0,2.0,11.0,6.0,7.0,7.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,2.0,1.0,1.0,7.0,3.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,2.4423470353692043,0.0,3.056356895370426,3.5373295559867355,3.840795496139778,3.446011397451948,2.409194828052304,0.0,0.0,0.0 +4201,N=c1nc(N2CCCCC2)cc(N)n1O,0,21.6,6.2741500000000014,3.033333333333333,6.733333333333333,171.88551950087452,85.01887649999999,1.2820832524245003,6.305470000000001,4.419444444444445,7.766716666666669,190.3623308426898,24.032258064516128,6.638129032258065,3.6774193548387095,6.870967741935484,157.8733182539338,90.1770174193548,1.5849281385806442,6.728470967741936,3.376344086021506,8.014585548387098,234.34411964610402,20.074074074074073,6.393231481481485,3.314814814814815,5.537037037037037,162.94946665218322,74.14915344444444,1.380930545168407,6.4643796296296285,3.0308641975308643,7.828522814814813,196.12123254936947,15.864864864864865,6.211459459459459,2.7162162162162162,3.9054054054054053,168.11136288463763,56.77272256756758,1.1669699664538378,6.26040945945946,3.2680180180180187,7.729362918918919,159.20876497559001,12.876712328767123,6.087061643835616,2.356164383561644,2.6164383561643834,170.09986809860519,44.004934575342475,1.070111602620301,6.125993150684932,2.9429223744292243,7.65099912328767,138.36108692908797,12.416666666666666,5.999366666666665,2.3833333333333333,2.0166666666666666,171.0288191844514,42.34695788333332,1.0729740659597333,6.043301666666667,2.5472222222222225,7.5667724666666665,138.12123981475116,12.938775510204081,6.219183673469389,2.2857142857142856,1.7142857142857142,171.51732975048046,43.000070734693864,1.0678185327335303,6.2577755102040795,2.9149659863945585,7.754792979591835,139.81951851565955,9.02127659574468,6.087936170212767,1.702127659574468,0.9361702127659575,177.37042570371247,27.286995765957446,0.8237772751465108,6.093787234042556,2.8758865248226955,7.72512485106383,101.10958696460442,5.25,5.781687500000001,1.3125,0.3125,181.38194964343387,13.068086156249995,0.6425241803620001,5.7706875,2.453125,7.521100875000001,69.48762708527842,7.66222222222222,0.1320138888888888,0.03013998027730363,0.5788888888888889,3.728888888888889,1.4891379160622498,36.36685649,0.191179945901139,0.12361655555555545,1.4725,0.07201052888888884,45.12141652188333,0.15498207885304624,-0.003937544802867488,-0.018154307264915303,0.21896057347670264,1.3764874551971322,-0.38012867326170574,0.7758332003225674,0.0024809691781730652,-0.0025680609318997705,-0.21112007168458766,-0.0020877503942651836,0.7857911515154401,0.6192592592592588,0.025750617283950557,0.003278518540781492,-0.033209876543209865,0.9340740740740735,0.13415172056156258,2.8080114803703653,-0.014223179716830162,0.022566222222222168,0.22379629629629627,0.012832088395061744,-1.4583785688330433,0.4404804804804805,0.01484466966966965,-0.0014650891173268949,-0.058618618618618626,0.3747147147147145,-0.19214651012669665,1.9979597775675664,-0.009598731695764988,0.013956147147147132,0.4656756756756756,0.009396494534534538,-0.5041861042064251,-0.44395738203957374,0.005921955859969565,0.0013966764632422205,-0.061080669710806695,-0.3864231354642314,0.17703058230874993,-2.150228953013698,-0.009457885927170857,0.00288075038051753,0.014790715372907172,0.003117993485540327,-3.71525314113177,-0.27666666666666667,-0.005221944444444409,0.00017626959866422047,-0.0972222222222222,-0.9011111111111114,-0.06701304406040812,-1.3089142483333325,-0.0009459039115194486,-0.004704166666666636,-0.14222222222222225,-0.001349846666666685,-0.6146586623219895,-2.3043990929705203,-0.03894518140589568,-0.0023897490855136075,-0.15167800453514735,-1.5424943310657593,-0.2847965718159943,-10.957608912448976,-0.05397291038379534,-0.036182814058956916,-0.37998299319727896,-0.019311810521541926,-12.60378697301083,-1.7444917257683212,-0.042950768321512976,-2.718681378656894e-05,-0.010094562647754147,-0.9274704491725768,-0.14145383587574759,-8.167927275106381,-0.019629824584851706,-0.0391154208037825,-0.5020508274231675,-0.023777255130023624,-6.042423993461585,-0.0622222222222214,-0.027938888888888815,0.00015461258931128569,0.14402777777777775,0.012777777777777666,0.15381810001326898,-0.07034298687499363,0.03717781944729328,-0.023815930555555483,-0.39368055555555553,-0.017767999722222236,6.590876698814018,,,0.4555555555555556,1.1666666666666667,0.4666666666666667,0.1,0.7,-0.23333333333333334,0.7034101341621001,0.01551153413473596,0.026978200801402626,0.7218742527145471,0.2142028223594482,0.26456654766402216,1.4252843868766472,0.47876937002347036,2.009676515659602,1.2357860754630074,0.6570897010374687,0.11680073915912545,0.0,0.773890440196594,6.970922003333333,648.0,188.22450000000003,91.0,202.0,5156.565585026236,2550.5662949999996,38.46249757273501,189.16410000000002,132.58333333333334,233.00150000000008,5710.869925280694,745.0,205.782,114.0,213.0,4894.072865871948,2795.4875399999987,49.13277229599997,208.5826,104.66666666666669,248.45215200000004,7264.667709029224,1084.0,345.2345000000002,179.0,299.0,8799.271199217894,4004.0542859999996,74.57024943909398,349.07649999999995,163.66666666666669,422.74023199999993,10590.546557665952,1174.0,459.64799999999997,201.0,289.0,12440.240853463185,4201.18147,86.35577751758399,463.2703,241.83333333333337,571.972856,11781.448608193661,940.0,444.3555,172.0,191.0,12417.290371198178,3212.3602240000005,78.11814699128198,447.19750000000005,214.83333333333337,558.522936,10100.359345823423,745.0,359.96199999999993,143.0,121.0,10261.729151067084,2540.817472999999,64.378443957584,362.59810000000004,152.83333333333334,454.006348,8287.27438888507,634.0,304.74000000000007,112.0,84.0,8404.349157773542,2107.003465999999,52.323108103942985,306.6309999999999,142.83333333333337,379.9848559999999,6851.156407267318,424.0,286.13300000000004,80.0,44.0,8336.410008074487,1282.488801,38.71753193188601,286.40800000000013,135.16666666666669,363.080868,4752.150587336408,168.0,185.01400000000004,42.0,10.0,5804.222388589884,418.17875699999985,20.560773771584003,184.662,78.5,240.67522800000003,2223.6040667289094,229.8666666666666,3.9604166666666636,0.9041994083191089,17.366666666666667,111.86666666666667,44.67413748186749,1091.0056947,5.735398377034169,3.7084966666666634,44.175,2.1603158666666653,1353.6424956565,4.804444444444433,-0.12206388888889214,-0.5627835252123744,6.787777777777782,42.6711111111111,-11.783988871112879,24.05082920999959,0.07691004452336503,-0.07960988888889288,-6.544722222222218,-0.06472026222222069,24.359525696978643,33.439999999999976,1.39053333333333,0.17704000120220056,-1.7933333333333326,50.43999999999997,7.2441929103243785,151.63261993999973,-0.7680517047088288,1.218575999999997,12.084999999999999,0.6929327733333341,-78.75244271698433,32.595555555555556,1.098505555555554,-0.10841659468219023,-4.337777777777778,27.728888888888875,-14.218841749375551,147.8490235399999,-0.7103061454866091,1.0327548888888878,34.459999999999994,0.6953405955555558,-37.30977171127545,-32.40888888888888,0.4323027777777782,0.1019573818166821,-4.458888888888889,-28.208888888888893,12.923232508538746,-156.96671356999997,-0.6904256726834725,0.2102947777777797,1.0797222222222236,0.22761352444444388,-271.2134793026192,-16.6,-0.3133166666666646,0.010576175919853228,-5.833333333333332,-54.066666666666684,-4.020782643624487,-78.53485489999994,-0.056754234691166916,-0.28224999999999817,-8.533333333333335,-0.0809908000000011,-36.87951973931937,-112.9155555555555,-1.9083138888888884,-0.11709770519016677,-7.4322222222222205,-75.5822222222222,-13.955032018983722,-536.9228367099998,-2.6446726088059718,-1.772957888888889,-18.61916666666667,-0.9462787155555543,-617.5855616775307,-81.9911111111111,-2.01868611111111,-0.0012777802479687402,-0.4744444444444449,-43.59111111111111,-6.648330286160137,-383.8925819299999,-0.9226017554880301,-1.8384247777777774,-23.596388888888875,-1.1175309911111104,-283.9939276926945,-1.9911111111110849,-0.8940444444444421,0.004947602857961142,4.608888888888888,0.4088888888888853,4.922179200424607,-2.250975579999796,1.189690222313385,-0.7621097777777754,-12.597777777777777,-0.5685759911111116,210.90805436204857,0.7224332542835976,0.5652725884207882,0.4488462843970034,0.31665718278550065,0.29287539987791517,0.16919654272749776,0.19502508510347377,0.09366729828832164,0.12217943504266687,0.05420730709813997,0.07787213499998544,0.031237227549212033,0.0516285508118488,0.014503621952317839,0.03483236255414466,0.009164652213256274,8.012286731318552,5.771921016093801,3.52979657719068,2.2597840783861822,0.44819676446525825,-0.42106247403186686,3.2351084249992477,0.977657181995987,5.13610730933823,1.8264894328769636,14.574054985028015,11.0436208335128,16.005104999230348,11.791101814118685,1.9148970432593708,0.7593018099058024,3.4725758277596688,2.305344374346138,6.003039850214044,1.3217239084801162,3.682234308223846,2.4984746665702438,20.79625056942169,14.696699362683121,0.3175413427019687,0.6894893892489876,0.7711567732715692,0.8072571188744395,0.8072571188744395,0.8072571188744395,1.9196991402283543,407.4539977349053,0.0,2.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,3.2914108140515133,1.399138948367903,0.9836591668108978,0.7999999999999998,0.7999999999999998,0.7999999999999998,205.41663373725896,761.1296063923371,57.59032101363628,25.37098687974457,48.1842871698486,,8.0,194.0,0.0,5.20725302477729,11.436046232444264,10.548270419741254,25.93115605767717,6.4208216229260096,6.06636706846161,0.0,9.883888251797686,11.142951082953708,6.833333333333334,17.5,7.0,1.5,10.5,0.0,0.044444444444444405,-3.5,0.1526873385012919,0.018263888888888857,-0.13442344961240305,0.1230409356725144,0.1989246231155778,0.0,0.5922222222222225,0.8844444444444444,0.43953488372093064,0.5739583333333337,0.76140350877193,10.551152012431501,0.2326730120210394,0.4046730120210394,10.828113790718206,3.213042335391723,3.9684982149603325,21.379265803149707,7.1815405503520555,0.5150753768844222,0.16585365853658535,0.0,0.3365853658536585,0.5555555555555556,0.2470739760370409,-0.46309865987547993,-0.06933584457887476,-0.01543662199584933,-0.051455406652831104,0.7529260239629593,1.411233341023122,0.07248413024712148,0.047041111367437397,0.06720158766776772,-0.5247659732246244,0.8993993713045434,0.9518846108160393,1.619831182161143,0.7810661878521453,0.5602868237917643,1.6758606913532181,0.901696445636935,1.1959707306870968,0.9236035388539179,1.0553091017519518,0.97299221311203,1.0661138513873165,0.8398991363753548,0.6525059325501198,0.7468298540933483,1.2678609511622947,0.7561084624553038,1.1697055099480695,0.847384047912404,1.195234042214013,0.6607292003418379,0.445757963207501,0.6417658567226944,1.0806584358257862,0.8950547124851073,0.8099929198003895,0.887277528448817,1.162136224516263,0.9020753470991849,1.1740895973883843,0.8988869612805409,1.0590916050237078,0.8094844191861046,0.46710122686353583,0.7786841775038195,1.001466312240338,1.0170577344817726,0.8970918550438486,0.8682030530626484,1.0408066678936714,1.0884410665012163,0.8346968010416046,1.0186812215307244,1.0271008147988987,0.9211497620107902,0.9321365228754116,0.9025503979721174,1.0565352806291892,0.9735353828306268,0.849338453445555,0.8931638360583891,1.1549904030710172,1.2205750893921332,1.0042753967568208,0.9763429344743885,0.9656906110779759,0.8613923970989146,0.8233352197698548,0.7556201040724355,0.9877756148956442,1.2603135801884564,1.2577374314270684,1.0380737991657398,1.2438795095773434,1.330574542093357,1.202202886457281,1.2608184624635324,1.2063181346808491,1.252082526940662,1.3287763700084825,1.1906759198142507,1.2136969581137833,1.2602587994273589,1.5499860096030091,1.1054037309127385,0.7994037652632009,1.1803565541551493,0.8244226898498513,1.250765382949852,0.9081891559208339,1.5300427695242995,1.8648762912390409,1.6274207224776693,0.9992169701296361,1.0664470345127615,1.4589318779589693,1.2378181682863154,0.36528310940499037,0.9275830601907031,0.38692916191220467,1.0524400417887891,0.551824382004771,1.440397512828649,1.7796760045274478,1.6001456040934512,0.7018491044645754,3.0,0.0,2.000000000000001,0.9375,0.7955555555555556,0.4722222222222222,0.2040816326530612,0.10243055555555555,0.02040816326530612,0.0,2618.03266709457,2996.2212253443745,1497.2309899862207,1334.4892664745053,9.897872466665307,0.4723375905387562,5.22273523430072,0.895151108112902,1.0,0.5555555555555556,1.6154797815570052,3.5077516472406156,3.923231428797621,4.106890595608519,4.106890595608519,4.106890595608519,0.1875,0.0,0.09090909090909097,0.04261363636363636,0.04972222222222222,0.03632478632478632,0.02040816326530612,0.020486111111111108,0.02040816326530612,0.0,0.4683721734614592,11.484375,4.8884297520661155,2.5714285714285716,87.432897604594,1.0,3.6331774417214944,49.16881108963277,,36.85057276539834,35.566642151840526,34.60793003342918,36.862064392193886,58.8883496118477,36.310489473204754,36.927586622090146,50.96654924243515,0.020226779432677155,-0.029826746534083046,-0.6023330837607109,0.3782428332610986,0.3691414510361796,-0.25526760762823486,0.021333523851199583,0.012977141333934673,-0.02077440938520277,-0.14337526090634137,-0.02899229357815926,0.01741503729463682,0.08081979891724668,0.19505990998889444,0.10877639967303898,-0.057368308807848135,0.25049662296384567,0.09008683421096553,0.07721347818837462,-0.07439681839948374,0.18255016183556833,0.15198390240835064,0.17819739131289344,-0.03232120534437893,0.057487301686837675,0.11244778708218996,-0.0486094915738931,-0.10126056959070395,0.10048964339786741,-0.12903204468447935,0.05493902884119106,-0.05020783770243656,0.11289868969755426,0.31624833662185103,0.13048778671009606,-0.011173986613693765,-0.05794107364205576,0.044858582000821566,0.046339660822338445,-0.10551363289774668,-0.10362956552974023,0.11888125364296319,-0.05912606038976612,-0.04947111938226838,0.023303920478700526,0.010044628436609285,0.04329913324690815,-0.08233901830918625,-0.036107888631090504,-0.03955602314571255,0.005848364764755905,-0.1679462571976967,-0.2416567342073898,-0.04500123416211961,-0.035991954616513305,-0.004947715133304749,-0.03805450366680457,-0.09658554989624601,-0.01874512918450409,-0.013622326374081976,-0.3007481414839717,-0.2950082126485525,-0.07928834271046836,-0.26201574679775935,-0.41366057746102003,-0.19124929178426017,-0.30130756326057634,-0.2823147068558397,-0.2927020082087283,-0.25805296651767673,-0.268180373335957,-0.2793304808349301,-0.22767438416349908,-0.32535037550225526,-0.0009020183004911081,-0.017437824151590654,-0.24872568660766362,-0.09499041985969718,-0.22459811112220715,-0.10267721591992961,-0.31642542237154747,-0.34095132592405264,-0.33019136919146325,-0.13391476729306767,-0.008120649651972053,-0.21163598106259826,0.005129817202558487,0.24880038387715928,0.0034266984505363224,0.10329338764001963,-0.0019342608535421872,0.19446505893729196,-0.19265971656079825,-0.2673552159969817,-0.2467416917550764,0.14606980912528586,6.945629181536277,5.411002250172036,1.5000000000000004,15.41424783803065,30.33825296059731,31.767457486616927,31.95258592676231,31.95258592676231,31.95258592676231,30.145147734894028,18.53679113194511,9.85634551556203,1.7520110873868817,0.0,11.608356602948911,1873.7617037107757,1535.7751580662075,363.4866624742963,16.0,22.0,28.0,33.0,40.0,37.0,34.0,28.0,24.0,209.12766009999999,16.0,4.343805421853684,5.176149732573829,6.0330862217988015,6.884486652042782,7.747164966520335,8.60392119492606,9.46877384406884,10.327610842462827,11.193312311981844,0.6222222222222225,0.9913333333333332,1.1592583234904932,0.5807260011655979,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.625427045908184,0.9750326797385623,1.0101723719349356,0.585610848768573,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,5.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,15.840830232789955,11.635725555670057,0.0,0.0,5.618183454609236,5.409283605791522,0.0,4.9839785209472085,4.7304076419062255,0.0,19.26246486877803,19.15587988028676,0.0,100.33191453846182,-188.05531813086262,-28.155931856201697,-6.268510604362087,-20.895035347873623,305.7485482757208,573.0742882614745,29.43438915743458,19.102476275382482,27.28925182197498,0.5,0.7279417398160185,0.22594418125068133,92.02275529140198,0.17478867651823987,141.1663816861627,0.2720582601839816,4.0,0.0625,0.3292267781561705,0.7148624121312019,0.799535133778765,0.8369639623275951,0.8369639623275951,0.8369639623275951,0.1723700000000003,,0.9642857142857145,1.2140530479292693,1.2993821131665406,0.9617664715096315,-3.6732033552482424,1.0646419828641371,0.9498097657793637,-1.9956176192751696,55.74260000000002,5.20725302477729,5.409283605791522,9.714386162853433,0.0,19.26246486877803,23.723090019837816,11.684550523070847,0.0,0.0,3.4965075614664802,0.0,4.795790545596741,0.0,6.3080984415095305,0.0,7.911690520708339,0.0,9.559094025166905,18.666666666666675,1.6005555555555555,3.9827777777777778,0.0,0.0,0.0,0.0,0.8315495086923662,0.5768317743764173,29.739999999999995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.77774970471479,16.251760662621898,11.635725555670057,0.0,28.011151999455876,0.0,5.409283605791522,19.26246486877803,6.06636706846161,0.0,0.0,0.0,17.421780034967938,18.76281137724552,19.27699812433339,98.33762217926555,,73.57257410222525,70.97141056395716,69.04260911843613,73.59589325485317,118.49209482446676,72.47902668202764,73.72853194207639,102.25737923924123,19.27699812433339,98.33762217926555,,72.76674783057238,69.98799717014582,68.02390376480366,72.79209437364202,121.44990257894361,71.59980857393762,72.9341281917186,103.92871610414547,4.745715275553566,73.10819403050691,,55.24144213708087,53.307481161309894,51.763272269799344,55.2584159610186,87.07413250922356,54.42293179027421,55.35796745230858,76.093873293577,1.2851332082888927,6.555841478617704,,4.904838273481683,4.7314273709304775,4.602840607895742,4.906392883656878,7.899472988297784,4.8319351121351755,4.915235462805092,6.817158615949415,2.372857637776784,49.16881108963277,,36.85057276539834,35.566642151840526,34.60793003342917,36.862064392193886,58.8883496118477,36.310489473204754,36.927586622090146,50.96654924243515,29.25098039215687,0.0,0.0,0.0,0.0,5.5544366496598645,9.252261432350718,30.30517115804807,5.417724631519274,0.0,0.0,0.0,0.0,2.0951388888888887,0.0,0.0,0.0,17.56832546305719,295.60291860625006,48.464393446710154,105.23254941721846,117.69694286392863,123.20671786825557,123.20671786825557,123.20671786825557,293.0,100.77831118822901,110.47754420793254,47.071181094448,91.16000000000001,91.16000000000001,1.0,6.975267888755437,5.0,3.5665002866735196,3.8220430230352,,3.8103708469370905,3.809056603343394,3.8067964233336045,3.810377680025459,3.79590177712885,3.809801754076054,3.8104459805333812,3.809840504285219,0.23776668577823465,0.25480286820234666,,0.2540247231291394,0.2539371068895596,0.2537864282222403,0.25402517866836394,0.25306011847525667,0.25398678360507027,0.25402973203555873,0.2539893669523479,1.6770499112236261,1.746250210543999,,1.7431916276641073,1.7428466559151652,1.7422531097770695,1.7431934209494635,1.7393871131598637,1.7430422628421034,1.7432113456544471,1.7430524339781885,158.81999999999974,71.61739356497704,66.76759914540867,,67.14873566078005,67.16780614701237,67.29162162249919,67.14893146789291,68.25321858324573,67.16036898729624,67.14740672006772,67.54459388847773,4.774492904331803,4.451173276360578,,4.476582377385337,4.477853743134158,4.486108108166613,4.476595431192861,4.550214572216381,4.477357932486416,4.476493781337848,4.502972925898516,4.676803079457961,4.606683028246083,,4.612375202319065,4.612659165650815,4.614500844029743,4.612378118335657,4.628689699790171,4.6125484344551255,4.612355411121956,4.618253138053044,0.5768317743764173,6.077916666666667,16.66730607520786,5.32811578798186,0.8315495086923662,1.6005555555555555,3.5262129157218443,1.89151171579743,0.0,184.47206116383816,40.74283029081159,-76.36559062124903,-11.433573839130972,-2.5455196873749673,-8.485065624583225,124.15851198856913,232.71427220412784,11.952730371703792,7.7571424068042605,11.081632009720373,358.0,22.0,0.9971879438542404,0.344074025043945,0.0,0.0,0.355498860309242,0.05671452001364691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1576176281715213,0.09349069823395013,0.2576672467205248,0.06798862693766645,10.836498814253964,8.479088826311823,7.181540550352055,5.06651492456801,6.443258797314134,3.7223239400049506,5.460702382897265,2.622684352073006,4.031921356408007,1.788841134238619,3.1148853999994173,1.2494891019684813,1.9102563800384056,0.53663401223576,1.1843003268409185,0.3115981752507133,2.57235815209493,0.697373609509229,3.4788414626337274,0.8601143999869814,4.942397185748261,1.0639753485191292,52.02629470519489,26.3585215188556,23.53938857278572,22.824335255993233,22.824335255993233,22.824335255993233,76.0,88.0,31.333894999999977,17.898104999999997,0.4,46.06,5.305555555555555,3.333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,30.0,0.0,0.0,31.0,6.0,1.0,3.0,28.0,7.0,16.0,24.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,6.0,3.0,2.0,15.0,6.0,0.0,5.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,3.044522437723423,4.5591262474866845,3.624340932976365,4.131158535344817,4.598900572974496,5.036546675880757,5.19295685089021,5.0769300845895415,4.879006851617819,4.808111029984782 +5379,COc1c(N2CCNC(C)C2)c(F)cc2c(=O)c(C(=O)O)cn(C3CC3)c12,0,24.285714285714285,6.516626530612244,3.510204081632653,8.857142857142858,166.45633472905058,96.66879963570962,1.4139520185036325,6.549532653061225,6.112811791383221,7.981383346938775,214.35128865147664,25.78846153846154,6.535653846153846,4.3076923076923075,7.9423076923076925,148.96452433760481,98.37554088144617,1.740084932423077,6.663865384615385,3.28258547008547,7.924425461538461,261.4526912102525,21.52173913043478,6.458978260869565,3.9239130434782608,6.75,158.9912013356814,80.7310391485913,1.4599186628406413,6.542892391304348,3.366847826086957,7.91440052173913,215.16247001749798,20.51260504201681,6.42271344537815,3.596638655462185,6.512605042016807,161.92714329111374,76.85946545981848,1.3906684025544538,6.494823529411764,3.298085901027078,7.891027630252101,203.8423996763395,20.669172932330827,6.471871428571429,3.3909774436090228,6.2706766917293235,159.4098479598991,77.40085983562105,1.3657840054209023,6.542115037593986,3.9928989139515454,7.946695458646616,199.61450456587016,19.503496503496503,6.539510489510489,3.160839160839161,5.055944055944056,161.50316504914917,71.84001870952727,1.317961053177853,6.601968531468532,3.8230380730380733,8.019236867132868,192.3326090622714,17.241610738255034,6.538093959731544,2.7114093959731544,3.7315436241610738,163.19551401501468,61.26331417125368,1.2125591931287782,6.590573154362416,3.6884787472035803,8.038753342281879,172.44154871433807,13.039735099337749,6.365741059602648,2.23841059602649,2.615894039735099,169.3296090851677,44.00631350872583,1.0329127514269534,6.3883092715231795,3.862030905077263,7.941713854304635,137.4122528981923,10.532786885245901,5.919860655737705,2.122950819672131,1.6557377049180328,168.6950646335513,34.446118033836065,1.0071854827410902,5.9637926229508205,2.5837887067395267,7.541905049180328,125.7275074484912,7.957517700957934,0.19396759683465215,0.028927462629051066,0.709704289879217,4.692211578508955,1.8795102610403591,37.97431287072727,0.22342849243661222,0.17545347771761757,2.6258272016289514,0.11896734693877549,47.67294289252255,0.309750744881941,-0.010555862140774676,-0.011714776721667567,0.3177682375933104,1.5499391279274661,-0.33956344222380286,1.494346750311925,-0.010323122204924583,-0.006954498125780929,-0.09532397469715251,-0.008845461538461543,0.3850561622441263,0.6041504445611433,-0.005909988139000051,-0.003271507221351697,0.10329482280933666,0.8661291490864315,-0.15320364316638593,2.972325379855364,0.013506770567298383,-0.002600505224272505,0.29105513101425134,-0.00403452173913044,4.6799732809149175,1.1186270426537965,0.00768549868927162,-2.2013727799493653e-05,0.06889286326775605,0.9707964818580495,0.2734353660845726,5.374568322707745,0.02650845664554143,0.009300183746968163,0.04536032099914796,0.0024095462184873903,7.8740084701793815,1.1161358206010654,0.038315662333676746,0.0035945743497300137,-0.06201363466976481,0.5997939455051624,-0.05420224398819715,5.264474547392138,-0.004314674575978503,0.035130119029351786,0.40128138616706976,0.023266105263157883,1.4480811990729712,-0.3095941958915716,-0.004808955476010866,-0.0022768534289861323,-0.18251719126354699,-0.7263203269034173,-0.07590185108017757,-1.493394802405729,-0.015324608062942615,-0.004233312168880678,0.04521604084286297,-0.0027914405594405725,-2.749097894393126,-1.983952435925747,-0.03098566285300586,-0.0011388067258266555,-0.20484194225560376,-1.417317728351442,-0.31833765487009796,-9.58405160417558,-0.060990329498989165,-0.02989622528644382,-0.3774746167471234,-0.018060778523489945,-13.882250251302365,-1.647340650005103,-0.011938268547045779,0.002019360155609896,-0.03691066911965487,-0.8823724110538931,0.0613135201614478,-7.871540761877421,-0.006287228336729845,-0.015237745861961463,-0.046173044160223886,-0.001925298013245036,-6.8443147064368794,-0.23235878493250814,-0.0030457166071513873,0.00012102289632980585,-0.014655778671455164,-0.08431596124565574,0.08733685386289478,-1.3075755338820452,-0.003126801254659935,-0.0035354783867377676,-0.10014507085314334,-0.0004872131147540698,-1.2645326031889923,,,0.4562610229276896,1.1481481481481481,0.46296296296296297,0.05555555555555555,0.6851851851851852,-0.2222222222222222,0.9598674448386183,0.018381144696392373,0.03112188543713311,0.968451052931517,0.21980708082754372,0.2586344990084008,1.9283184977701353,0.4784415798359445,2.0274851367988824,1.4567748575827206,0.23967655304628727,0.26449393353271383,0.06653979263716085,0.570710279216162,7.656314987836747,1190.0,319.31469999999996,172.0,434.0,8156.360401723478,4736.771182149771,69.283648906678,320.9271,299.5277777777778,391.08778399999994,10503.213143922356,1341.0,339.854,224.0,413.0,7746.155265555451,5115.528125835201,90.484416486,346.521,170.69444444444446,412.07012399999996,13595.539942933132,1980.0,594.226,361.0,621.0,14627.19052288269,7427.255601670399,134.312516981339,601.9461,309.75000000000006,728.1248479999999,19794.947241609814,2441.0,764.3028999999999,428.0,775.0,19269.330051642533,9146.2763897184,165.48953990398,772.884,392.4722222222223,939.0322880000001,24257.2455614844,2749.0,860.7589,451.0,834.0,21201.509778666583,10294.314358137599,181.64927272098,870.1013,531.0555555555555,1056.910496,26548.729107260733,2789.0,935.15,452.0,723.0,23094.95260202833,10273.1226754624,188.46843060443297,944.0815,546.6944444444445,1146.750872,27503.56309590481,2569.0,974.176,404.0,556.0,24316.13158823719,9128.233811516799,180.67131977618797,981.9954,549.5833333333335,1197.774248,25693.79075843637,1969.0,961.2268999999999,338.0,395.0,25568.770971860322,6644.953339817601,155.96982546546997,964.6347000000001,583.1666666666667,1199.198792,20749.250187627036,1285.0,722.223,259.0,202.0,20580.79788529326,4202.426400128,122.876628894413,727.5827,315.22222222222223,920.112416,15338.755908715926,389.91836734693874,9.504412244897955,1.4174456688235022,34.775510204081634,229.9183673469388,92.0960027909776,1860.7413306656363,10.947996129394,8.597220408163261,128.6655328798186,5.829399999999999,2335.974201733605,16.107038733860932,-0.5489048313202831,-0.6091683895267135,16.52394835485214,80.59683465222824,-17.65729899563775,77.7060310162201,-0.5368023546560783,-0.3616339025406083,-4.95684668425193,-0.45996400000000026,20.02292043669457,55.581840899625185,-0.5437189087880047,-0.3009786643643561,9.503123698458973,79.6838817159517,-14.094735171307505,273.4539349466935,1.2426228921914513,-0.23924648063307047,26.777072053311123,-0.3711760000000005,430.5575418441724,133.1166180758018,0.9145743440233227,-0.002619633608139745,8.19825072886297,115.52478134110788,32.53880856406414,639.5736304022216,3.15450634081943,1.1067218658892113,5.397878198898607,0.28673599999999944,937.0070079513464,148.4460641399417,5.095983090379007,0.47807838851409185,-8.24781341107872,79.7725947521866,-7.208898450430222,700.1751148031543,-0.5738517186051408,4.672305830903787,53.37042436022028,3.0943919999999983,192.59479947670516,-44.27197001249474,-0.6876806330695538,-0.32559004034501693,-26.09995835068722,-103.86380674718868,-10.853964704465392,-213.55545674401927,-2.191418953000794,-0.6053636401499369,6.4658938405294055,-0.39917600000000186,-393.120998898217,-295.6089129529363,-4.616863765097873,-0.16968220214817167,-30.52144939608496,-211.18034152436485,-47.43231057564459,-1428.0236890221613,-9.087559095349386,-4.454537567680129,-56.24371789532139,-2.691056000000002,-2068.4552874440524,-248.74843815077057,-1.8026785506039127,0.3049233834970943,-5.5735110370678855,-133.23823406913786,9.258341544378618,-1188.6026550434906,-0.9493714788462067,-2.300899625156181,-6.972129668193807,-0.2907200000000004,-1033.4915206719688,-28.347771761765994,-0.37157742607246924,0.014764793352236313,-1.7880049979175299,-10.28654727197,10.655096171273163,-159.52421513360952,-0.38146975306851205,-0.4313283631820076,-12.217698644083487,-0.059439999999996516,-154.27297758905706,0.7145246022575719,0.5662698190219234,0.43059742185235017,0.30298752456653155,0.2697661463072355,0.16117988076019213,0.16066806396016936,0.08015014670519623,0.10052504857022426,0.04252866898834805,0.061615138840669645,0.02241679384524927,0.038536471356187825,0.011561602092757311,0.024274728716810176,0.00601043518892864,9.00407016956174,5.66926511364474,4.107723640120913,2.163988819210882,0.49743449811995494,-0.524079482057608,3.32666260417233,0.972681332588085,7.004064105901183,0.9937133642745749,17.424772502796948,10.933398492055673,19.000142334711025,11.684065051907284,2.01651551354074,0.5458488342655168,3.988677447543798,2.2125696446222567,8.00192057098267,1.2588342977304028,4.009963787961231,2.4080597304721434,20.91191905089366,13.30411894962106,0.29106558463773247,0.6386098185343211,0.8295023195828266,0.8765679714166547,0.8905032595524686,0.8905032595524686,1.625092066267034,983.3041997140859,0.0,2.0,4.0,0.0,6.0,4.0,2.0,0.0,0.0,3.909653180971676,1.873745663839288,0.7555010205847728,0.47979132661891644,0.39815867355769186,0.39815867355769186,202.49789185137345,1591.5565442564516,69.2379485669617,32.48074580115208,71.6202779765006,,11.0,489.0,17.215316520898284,14.69560176298435,23.033357364457714,30.043111637408877,25.452766720226204,13.30664111289061,4.567099647791355,11.823646930541102,5.316788604006331,4.736862953800049,12.31904761904762,31.0,12.5,1.5,18.5,0.0,0.043738977072310385,-6.0,0.1862235179786199,0.04634716041805209,-0.13987635756056782,0.04133065742261144,0.20664561678760518,0.0,0.6302235179786201,0.8992945326278656,0.4440000000000002,0.583876357560568,0.8579638752052542,25.916421010642694,0.496290906802594,0.840290906802594,26.14817842915096,5.93479118234368,6.9831314732268215,52.06459943979365,12.917922655570502,0.5073543832123948,0.18554310011596442,0.0,0.4708156165442598,0.47368421052631576,0.3192026054323418,-0.9071730864265443,-0.07138475403116123,-0.01851373645768458,-0.07559775720221203,0.6807973945676581,1.9348246635536908,0.052251503034705035,0.03948621762354471,0.05229255847442409,-3.4562188361336976,0.7362487820982536,0.6995665864912844,1.41276101559102,0.7034127843986998,0.4275765065752638,1.3116457778634043,0.7379790469975374,1.1778561793885185,0.6774676215126595,0.587390588492075,0.7335524173222736,1.0096451532346742,0.8028436320937198,0.8050512681141527,1.174584783310267,1.0502143294549908,0.7204825600691576,1.1143573916794265,0.7997680789597674,0.9486952385794192,0.7887574608057739,0.4703803557629201,0.7959248845059749,0.8758884378272971,0.7696504331869879,0.7978942591066,1.0081378387482747,1.0555095277547637,0.7491149841793632,0.9162822096883002,0.7701522889325213,0.877274461491389,0.7835129604272276,0.7000105224363742,0.7891719660382767,0.8102378678377131,0.7853581404573929,0.7290752337333789,0.8618950144143971,1.240177909562639,0.8719668868603249,1.0693201358427349,0.7873737970006061,1.0540233916443968,0.720709246295252,0.7597947663851343,0.7465473716197722,0.9599862959393957,1.0007473945503886,1.1471477408629691,1.16126042901546,1.356150891362159,1.216850254308092,1.2326412893850387,1.0061970508813913,1.1072418871267837,1.1271602093676056,0.9786672708872508,1.1495746302621799,1.0332997640570458,1.234744769027896,1.3480941927680132,1.105359453643752,1.2552226108327817,1.34509368927354,1.3536758158462623,1.2420084357098136,1.2851616102364158,1.337464900399049,1.3070324165870095,1.3456957431469228,1.248843299610557,1.2607835131018794,1.2740232717289888,0.8456968594911265,0.9049528961850574,1.245014301955247,1.004177887180543,1.2625271619575413,0.9756589603987795,1.2899853923939604,1.3240345886039586,1.2292214867909799,1.098985131083865,1.028210175157405,0.8581926144692593,0.6673658172743158,0.8485338259062573,0.9112286205702345,0.8495866702345516,1.0381282409273982,0.9692269995619625,0.882280585540812,0.8794352530306048,0.7947246714927778,1.0475541312882442,5.5,0.07029894908682788,3.166666666666668,2.75,2.558333333333334,1.7255555555555557,1.1437641723356007,0.4644628684807257,0.2426303854875283,0.13250000000000003,5936.52538537099,6597.213390946175,2698.1210792810202,2472.553027739539,12.377148685437701,0.4272645905536537,7.088831320132469,0.7460069405638516,1.0,0.47368421052631576,1.7050566631435324,3.7409641802759204,4.859208823530436,5.134918517496292,5.2165511705575165,5.2165511705575165,0.18333333333333335,0.011716491514471314,0.07539682539682542,0.05392156862745097,0.04651515151515154,0.03195473251028807,0.025416981607457794,0.015482095616024188,0.012131519274376414,0.009464285714285713,0.4653329851096648,20.28,8.024691358024691,3.8959417273673256,154.88650039420972,1.0,4.2653059209081,124.96946739971764,,93.90327570612156,91.68874343185414,91.25027582984444,93.8634202988601,136.78378283277084,93.01650464923999,94.06064747251826,119.4106554850986,0.03892554896166337,-0.05442075023372605,-0.404970766772428,0.44774738172625483,0.33032166218301495,-0.18066591561774473,0.03935151520447527,-0.04620324870989005,-0.039637277164570085,-0.036302455332177824,-0.07435201142220738,0.008077037809732573,0.07592197306559748,-0.030468945511749706,-0.11309347326115671,0.14554628495611346,0.18458868160451994,-0.0815125335264643,0.07827199902138582,0.0604523193080682,-0.01482162256400452,0.11084321574309731,-0.033912849558683844,0.09816833190822308,0.14057487330743043,0.03962259065272191,-0.0007609975365549643,0.09707263186964922,0.2068952914025543,0.14548224170546364,0.1415316806653996,0.11864402948993628,0.053006551183535276,0.017274678612137294,0.020253845113713614,0.1651672414671596,0.1402618080845367,0.1975364079307482,0.12426165391084389,-0.08737954040029654,0.1278275575322115,-0.028838493256320274,0.13863251628313963,-0.019311210172545907,0.20022469480993543,0.15282094188000334,0.19556715234753771,0.030375326363586024,-0.03890587586808665,-0.024792571308239,-0.07870906128833954,-0.25717357759611287,-0.15479274852610553,-0.04038384501192554,-0.039326446998252905,-0.06858842350775957,-0.02412783276769215,0.017219732058077877,-0.023463922086765034,-0.05766578959874364,-0.24931800474498686,-0.15974659354788842,-0.039367667341932124,-0.288629990232221,-0.30205750628189343,-0.16937266130906334,-0.2523824890999806,-0.2729747170285026,-0.17039403080148743,-0.1437545534271845,-0.15181290487031385,-0.29119767752956954,-0.20701690048478244,-0.06154774684981311,0.06980771806725652,-0.05200851910580478,-0.1880504312924194,0.032622072585817716,-0.20728593006208798,-0.02813977871919609,-0.08684778472436865,-0.017584189900835857,-0.01618341555717686,-0.1435681183321788,-0.029199908019624833,-0.015702192824236058,0.004183667882722139,-0.02065054259986141,-0.017969343418322337,0.046467878187880444,-0.03443315849672682,-0.013994639719224815,-0.02015051757724586,-0.03813848481385888,-0.004095351601013728,-0.026525163467249112,4.926413863360273,19.157309727704348,15.211614968092976,17.242055525463215,37.65081637686111,41.80490549126788,42.53192290360179,42.6142086178875,42.6142086178875,54.74209869356983,39.332921154733455,6.4712669322497565,7.141336205383274,1.7965744012033429,15.409177538836374,5379.137477783801,4286.259503926041,1414.359684799857,180.0,45.0,62.0,89.0,122.0,148.0,172.0,182.0,190.0,375.1594344040006,30.0,5.017279836814924,5.916202062607435,6.846943139585379,7.7702232041587855,8.708969906980947,9.641278276057378,10.583524163945977,11.520407405317984,12.464479088143321,0.6734693877551019,1.0057959183673468,1.139290242566126,0.637851362781396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6533599657827204,0.9900760304121649,1.0211216314639475,0.6273417879262433,2.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,5.0,1.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,24.627188331288917,11.250837766380558,11.5667326743298,5.428790391900541,0.0,4.794537184071822,9.184952231746642,0.0,0.0,0.0,25.831747514004253,37.91479444764672,18.012722473358593,178.7577050766795,-508.02899561955365,-39.97641181778624,-10.367938686113341,-42.33574963496281,381.25559692805297,1083.527548636898,29.26153674917547,22.112807115038738,29.284528341537793,0.45454545454545453,0.697002277617253,0.17320152117751375,20.572257001885614,0.11988859521833616,80.39419635049843,0.30299772238274697,6.0,0.13333333333333333,0.3036767189190741,0.6662791638639768,0.8654425533001291,0.9145474405731248,0.9290865094346766,0.9290865094346766,1.9804,,1.761904761904762,2.090104302625157,1.7219886934026896,1.7923518247588088,-7.881927179765617,1.8777328349212403,1.728268180212008,-3.1006114622630965,99.62600000000003,19.028342580387395,0.0,9.883888251797686,0.0,31.849062103838566,31.64397648986574,33.86721054878994,0.0,5.749511833283905,4.110873864173311,1.9459101490553132,5.484796933490655,3.713572066704308,7.0707241072602764,5.476463551931511,8.760453046315272,7.252053951852814,10.50837712533791,32.99999999999999,2.530552169942051,0.0,0.0,0.0,0.0,0.5145079837490556,-0.3008358528596604,1.7714136904761904,49.284,0.0,24.182094728680678,0.0,0.0,0.0,0.0,0.0,-1.3095544247185658,55.82522188574017,20.3823516805574,10.077801322358383,5.749511833283905,48.42883991874712,0.0,5.817220841045895,36.16520995045942,17.05774782414651,0.0,10.902924932081056,0.0,31.2547167762884,32.014638323353296,34.76380144603064,249.93893479943534,,187.7375619151778,183.31806507063402,182.54975677755863,187.65285655697005,276.1324322727416,185.97173231553995,188.0537726099838,239.7400106627196,34.76380144603064,249.93893479943543,,186.29777733720485,181.62994357025374,181.20889943155788,186.1869022180815,281.44949284530725,184.44580143866807,186.64096268257146,241.9219224324603,5.124782152475557,175.81533582181726,,130.93872275351555,127.84179697917112,126.61587354532138,130.90536179819017,185.49882146959163,129.67442971057037,131.15006041646365,164.71911589826664,1.2875482017048385,9.256997585164273,,6.953243033895474,6.7895579655790375,6.761102102872542,6.950105798406298,10.227127121212652,6.887841937612591,6.964954541110512,8.8792596541748,2.5753169202170767,124.96946739971764,,93.90327570612156,91.68874343185414,91.25027582984444,93.8634202988601,136.78378283277084,93.01650464923999,94.06064747251826,119.4106554850986,48.51372549019608,0.0,3.4791757550510254,0.0,15.10226379440665,0.0,9.381652873691564,50.03495994173343,3.716228487505093,3.319056758186899,5.592648337112623,0.0,0.2906683314714513,1.9182487717309147,0.0,0.0,0.0,30.739747608385922,390.3305469932571,83.54777649403309,183.3072448335201,238.10123235299133,251.6110073573183,255.6110073573183,255.6110073573183,1247.0,135.46930708361214,169.68275501147536,81.32322479612137,83.80000000000001,83.80000000000001,0.8333333333333334,9.31238669080832,5.906890595608519,4.437425597755636,5.111564048359913,,5.090980066901069,5.091424224674607,5.090955209799489,5.09085350618936,5.068757987132315,5.0911357272968605,5.091007133567726,5.082711997697082,0.1643490962131717,0.18931718697629307,,0.18855481729263218,0.188571267580541,0.18855389665924033,0.18855012985886518,0.18773177730119686,0.18856058249247631,0.18855581976176763,0.18824859250729933,2.4833261609683,2.6247572063941766,,2.6207221325625873,2.620809372817659,2.6207172499737856,2.6206972724603657,2.6163475876503943,2.620752707818055,2.6207274491409964,2.619096749963674,264.5100000000002,235.37261994851383,170.61088902639085,,172.41003876918907,172.28020848100493,172.7226400913934,172.39109552625732,177.20564977717285,172.37494296217392,172.42600731776452,174.6196295132728,8.71750444253755,6.318921815792254,,6.385556991451447,6.380748462259442,6.397134818199755,6.384855389861382,6.563172213969365,6.384257146747182,6.386148419176464,6.46739368567677,6.454421648193572,6.132637233852705,,6.143127359064262,6.14237404332435,6.1449388444832564,6.143017479826251,6.170562694291349,6.142923778229853,6.143219974373873,6.155861835716618,22.466325821995465,26.10034350041159,12.745230843140746,-0.23700241979507775,-1.591522489722344,1.450927212801761,3.1432336283278746,3.9679403295217686,1.454523573318216,324.354337276542,100.10669267877944,-284.502995351054,-22.387322384379484,-5.80618357859294,-23.708582945921172,213.5082057434643,606.7898403252426,16.38684981663858,12.383466129086585,16.399725414195753,1627.0,51.0,2.1500474275609105,0.9779636460366182,0.0,0.0,0.6768256458336086,0.177649443373486,0.0,0.0,0.28867513459481287,0.28867513459481287,0.16666666666666666,0.12909944487358058,0.21407617506269555,0.13908532168678328,0.42124905025770165,0.2189084946669205,0.8146635835911137,0.3225601094609963,19.29216426095444,15.289285113591934,12.917922655570505,9.089625736995947,12.139476583825598,7.2530946342086455,9.961419965530501,4.969309095722166,8.94672932274996,3.7850515399629763,7.5170469385616965,2.734848849120411,5.703397760715798,1.711117109728082,4.17525333929135,1.0337948524957261,5.134105182098613,1.9214528178219836,9.03694590256953,2.824370052219622,15.643006031746275,4.089445346461734,87.48356164578882,37.42592836790948,26.773976397871483,24.645398356026252,24.218506952905404,24.218506952905404,150.0,185.0,53.464445999999974,30.645553999999997,0.3877551020408163,198.08,9.583333333333332,5.861111111111111,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,10.0,11.0,49.0,0.0,1.0,52.0,11.0,2.0,6.0,46.0,13.0,30.0,39.0,0.0,0.0,0.0,19.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,6.0,2.0,2.0,27.0,8.0,0.0,3.0,4.0,0.0,4.0,4.0,0.0,0.0,1.0,1.0,2.0,3.6506582412937387,7.988956453405722,4.310799125385514,4.971547905388209,5.65511730267492,6.305590746134063,6.797486906138391,7.251455792835456,7.576901892589129,7.922690115587992 +4748,OCCN1CCN(CCCN2c3ccccc3Sc3ccc(Cl)cc32)CC1,0,29.0188679245283,5.878815094339621,3.169811320754717,5.283950617283951,161.6075686749052,116.6993670377359,1.6521215004919618,6.011186792452829,2.61075163990763,7.505792415094337,221.68139214621237,26.607142857142858,6.224107142857143,3.892857142857143,5.150793650793651,145.97059522908302,101.31314644642859,1.9104217095714289,6.3949375,2.5156341857730746,7.684880964285711,264.4555484265841,22.366336633663366,6.153376237623763,3.504950495049505,3.7524752475247523,156.33082786985386,83.32219389108909,1.6500787640162469,6.284272277227721,2.2678462290673513,7.682550574257424,219.67093304419706,18.60144927536232,5.929367391304348,3.0072463768115942,2.7954911433172307,159.58175437612255,67.38958472463767,1.482049476435319,6.054104347826086,2.0029224071092027,7.540554420289856,187.3355888728583,15.557046979865772,5.7257583892617445,2.6912751677852347,2.1476510067114094,157.9188774538787,54.90162658389261,1.3853991406041408,5.8509395973154374,1.8545792250117383,7.360124389261746,169.89240336189124,14.666666666666666,5.67643076923077,2.4551282051282053,1.881528964862298,160.87808375941182,52.10615978846153,1.270029010814449,5.784290384615384,1.9289185513465346,7.336526262820514,154.16361541109399,13.645390070921986,5.733439716312058,2.425531914893617,1.9243498817966902,162.8035414719752,47.383363092198586,1.230617875659291,5.841855319148936,1.9745571024136825,7.39864870921986,149.56686117715626,14.75,5.718255833333332,2.558333333333333,1.987962962962963,162.8006919055187,51.99644235,1.2706889443309586,5.842614999999999,1.8391460905349792,7.393201233333333,155.60513183593437,16.21153846153846,5.7825394230769245,2.6634615384615383,2.0277777777777777,158.4175065683792,57.453392875,1.382203365371904,5.927354807692309,1.9755757359924024,7.442140192307692,171.27416524997446,12.715557137771453,0.07526137415450336,0.011430013304481432,0.5368458526165895,2.980173955847386,1.5259624180091682,58.603620166607335,0.30176270122178644,0.08242121751512986,0.5638458839244969,0.0491832744749021,54.388415051659926,0.6584320805573908,0.0021665234196206005,-0.0032215605487647928,0.18013527945888205,0.6213700859482273,-0.3222548606289644,3.0708486952525083,0.001634146022896866,0.0030804334282663348,-0.026995399603808867,-0.001442887682449399,0.34799493773728385,0.2911680630505197,-0.016081362945835335,-0.00232457168330395,0.016862348392190554,-0.28886897629282743,0.14860329565173247,1.356764327134497,0.041184235598938614,-0.014769078527646242,-0.06400495527071812,-0.00913469797574288,2.9371257776077835,-0.11820958513267417,-0.005469044375996404,0.0007491227328763729,-0.015516894454161332,-0.0896713850968895,0.2856283340558984,-0.5344383533724406,0.030370751262104752,-0.006570260446494426,-0.015088418541156732,-0.002319020714989651,2.9925600731460356,-0.387331229198573,0.002703827820930328,0.0003639335229409478,-0.044633620123237634,0.02020906192620158,0.001897035607778538,-1.7643008412939232,-0.017692305427779692,0.0027691839031301537,0.024757876265884743,0.002670337276395915,-2.939212354760293,1.3599145603417588,-0.0005600679135745005,-0.0006674283388366393,0.0017366340791047147,0.03400386493420793,-0.031381792850230766,6.211012557388795,0.019658458519269242,0.0013158168341685405,-0.014649816384613556,0.00020572274328858005,2.66456704048916,-0.06227197786244305,-0.0006791447954775544,0.00010687068171471814,0.00644332174444353,-0.04425485283786901,-0.0158841204602269,-0.19540724836834056,0.007690457670912657,-0.001198187942000014,-0.027179601917512074,-0.0008767017464128405,0.41826713521281644,0.13098374273169588,0.0021023837071318364,0.0005531514912921556,-0.0011540287172184568,-0.02983037327109946,0.06871848108257496,0.7179635739587025,0.004938420223870368,0.0020611566987065247,0.009028383113719491,0.0002628598018274935,2.6964676154446106,-0.6411739737656433,-0.0026273211791768203,-8.105516386357102e-05,-0.03956718788509461,-0.3532544625756921,-0.07203666284740382,-3.1534717957800473,-0.014215413575141996,-0.003509062217597276,-0.04314520237815546,-0.0011494558972533259,-3.6416039614498734,,,0.5029982363315697,1.1203703703703705,0.46296296296296297,0.018518518518518517,0.6574074074074074,-0.19444444444444445,0.9842203666403015,0.006396252655764543,0.01913699339650528,0.7365818158693378,0.21248842780260202,0.2779380440739703,1.7208021825096393,0.49042647187657235,2.0756214108206135,1.6196796974582621,0.24878953505624443,0.063713484842561,0.06580971420973596,0.45594171336235156,7.606575681735862,1538.0,311.5771999999999,168.0,280.0493827160494,8565.201139769975,6185.066453000002,87.56243952607397,318.59289999999993,138.3698369151044,397.80699799999985,11749.113783749255,1490.0,348.55,218.0,288.44444444444446,8174.353332828649,5673.536201000001,106.98361573600002,358.11650000000003,140.8755144032922,430.35333399999985,14809.510711888708,2259.0,621.4910000000001,354.0,379.0,15789.41361485524,8415.541582999998,166.65795516564094,634.7114999999999,229.05246913580248,775.9376079999998,22186.764237463904,2567.0,818.2527,415.0,385.7777777777778,22022.282103904912,9299.762691999998,204.522827748074,835.4663999999999,276.40329218106996,1040.59651,25852.311264454445,2318.0,853.1379999999999,401.0,320.0,23529.912740627926,8180.342360999998,206.424471950017,871.7900000000002,276.332304526749,1096.6585340000001,25313.968100921797,2288.0,885.5232000000001,383.0,293.5185185185185,25096.981066468245,8128.5609269999995,198.12452568705405,902.3493,300.9112940100594,1144.4980970000001,24049.52400413066,1924.0,808.4150000000002,342.0,271.3333333333333,22955.299347548502,6681.054196000001,173.51712046796,823.7016,278.41255144032925,1043.2094680000002,21088.927425979033,1770.0,686.1906999999999,307.0,238.55555555555554,19536.083028662244,6239.573082,152.48267331971502,701.1137999999999,220.69753086419752,887.1841479999999,18672.615820312123,1686.0,601.3841000000001,277.0,210.88888888888889,16475.420683111435,5975.152859,143.749149998678,616.4449000000001,205.45987654320984,773.98258,17812.513185997344,673.924528301887,3.988852830188678,0.6057907051375159,28.452830188679243,157.94921965991145,80.87600815448592,3105.9918688301887,15.993423164754681,4.368324528301883,29.883831847998334,2.6067135471698113,2882.585997737976,36.872196511213886,0.12132531149875363,-0.1804073907308284,10.087575649697396,34.79672481310073,-18.046272195222006,171.96752693414047,0.0915121772822245,0.17250427198291474,-1.5117423778132966,-0.08080171021716634,19.487716513287896,29.40797436810249,-1.624217657529369,-0.23478174001369895,1.703097187611246,-29.17576660557557,15.00893286082498,137.03319704058418,4.1596077954928,-1.4916769312922704,-6.46450048234253,-0.9226044955500309,296.6497035383861,-16.312922748309035,-0.7547281238875038,0.10337893713693946,-2.141331434674264,-12.374651143370752,39.416710099713974,-73.75249276539681,4.191163674170456,-0.9066959416162308,-2.082201758679629,-0.32002485866857183,412.9732900941529,-57.712353150587376,0.40287034531861887,0.054226094918201226,-6.650409398362408,3.011150227004036,0.2826583055590022,-262.88082535279455,-2.636153508739174,0.4126084015663929,3.6889235636168265,0.39788025418299133,-437.94264085928364,212.14667141331438,-0.08737059451762208,-0.10411882085851573,0.2709149163403355,5.304602929736436,-4.895559684636,968.917958952652,3.0667195290060016,0.2052674261302923,-2.2853713559997146,0.03209274795301849,415.67245831630896,-8.78034887860447,-0.09575941616233517,0.015068766121775257,0.9085083659665378,-6.23993425013953,-2.239660984891993,-27.552422019936017,1.0843545315986847,-0.168944499822002,-3.8323238703692026,-0.12361494624421052,58.97566606500712,15.718049127803507,0.25228604485582035,0.06637817895505867,-0.13848344606621482,-3.5796447925319352,8.246217729908995,86.1556288750443,0.5926104268644442,0.24733880384478296,1.083405973646339,0.031543176219299224,323.57611385335326,-66.68209327162691,-0.2732414026343893,-0.008429737041811386,-4.11498754004984,-36.73846410787198,-7.491812936129996,-327.9610667611249,-1.4784030118147675,-0.3649424706301167,-4.487101047328168,-0.1195434133143459,-378.7268119907868,0.6903562012477155,0.6315890958305709,0.4413838246889152,0.36113704818141,0.2818643131351128,0.21010063088293368,0.1781204849649003,0.12164206225710378,0.1133932347060064,0.06913740917674614,0.07335406221049029,0.04110672986028094,0.047356410520982925,0.02446927865708061,0.03140489761260093,0.01441456547573969,17.00110424661392,5.697870247630721,3.512159959968046,2.1792909225624215,0.3653247424414915,-0.4161441557980071,3.2316457632453175,0.987815322771672,5.024126914535415,0.6606450161845208,14.545811265862028,10.337228708870205,35.45051775530783,11.71030757448423,2.9166835594915326,0.7880973329887058,3.453670086173426,2.23388250081408,6.0026962982926335,0.6282281116641657,3.667398754192162,2.4339808062578205,24.43424571248268,14.708159779683115,0.26737064727374604,0.5183174396617201,0.661101312365738,0.8098926917798216,0.8415811406396407,0.8669318997274963,1.2979511955651175,779.772078576297,0.0,0.0,8.0,0.0,12.0,1.0,0.0,0.0,0.0,4.13594313306011,2.6417566677202133,1.7915934596832006,0.9056603773584904,0.716981132075472,0.566037735849056,164.95546534405707,1172.5328721644978,50.88125619329255,22.12326173895279,48.40223568234224,,14.0,674.0,0.0,0.0,6.606881964512918,0.0,57.25674977805535,21.165739500402672,0.0,17.828252017852726,51.09793160332109,16.70746728507322,13.58095238095238,30.25,12.5,0.5,17.75,0.002998236331569654,0.0,-5.25,0.11484995507637019,0.047787684014099274,-0.06706227106227092,0.018146888384983573,0.0915643823657788,0.0,0.5588499550763704,0.8081128747795411,0.4440000000000002,0.5110622710622711,0.7899659863945575,26.57394989928814,0.17269882170564266,0.5166988217056426,19.88770902847212,5.737187550670255,7.504327189997198,46.46165892776026,13.241514740667453,0.6224356176342212,0.07713884992987378,0.0,0.27244039270687237,0.42857142857142855,0.37085383772301356,-0.680883164925772,-0.042833747844672664,-0.012846852168410793,-0.04539221099505147,0.6291461622769864,1.1551047517863526,0.03683768293199327,0.02179442927898779,0.030397493468061906,-5.0599690385158445,0.6944397782630605,0.9288617592260477,1.3691801720879417,0.7342980295566502,0.8013118314592635,1.396302028739346,0.6960495353752547,0.9330845658924934,0.8425181859310142,0.9565216077832354,0.8855752906372093,0.9667980205777976,0.8151454822955836,1.4154549752820402,1.5966733499726078,1.203311710481393,1.2924118030170284,1.0698767760253642,0.8137822438817335,0.7852764992176169,1.2624062072933284,0.944715513071932,1.2277780300168457,0.8775433721107172,0.9899401186914241,1.1049139484612938,1.088468160901892,1.1587956021989005,1.1045266098597304,0.8954014879685434,0.9829463556219267,0.9040743698387403,1.070240532891883,0.7107725411134456,0.9907454585869812,0.9104398207839639,0.932651782738085,0.7003483698467424,0.7133087720185393,1.0609812543392734,0.8892533516961197,1.0064907459773254,0.9285010580693923,1.068459235456,0.7206359764905697,0.4733795836483369,0.5990618671005166,1.0537053509872343,0.740438994344588,0.8932016676663076,0.8312754405167114,0.931366047745358,0.9137957987010308,0.9572882580990918,0.744768923699052,0.8812667021991697,0.8591585421407054,1.0095537311429923,0.8174243013059354,0.9369111873915181,0.9007469464310461,0.9922264767747041,0.9639965375640489,0.9137931034482759,0.9861314317828515,0.9459144792582775,0.9078750831202753,0.8778392597930551,0.997165022266607,0.9998931392193263,0.9759330601707609,0.9595199429633154,0.9866831849487651,0.8153789585946746,0.8379400306101897,1.0204022988505748,0.994314722833429,0.9101172720685612,0.9919343417213697,0.9196187942406271,0.8804851780312131,0.44293117384439873,0.8448778292975446,0.9299250849342703,1.0424015902346153,0.8885073355369584,0.7425104632668947,1.089522546419098,1.0663882072216098,0.9948391603728765,1.0559720199735385,0.9829742034412614,0.9668638336359698,0.8740511922881514,0.9667364497092693,1.0582207005994526,4.5,0.13182328333843485,2.666666666666668,1.375,1.6133333333333337,0.6458333333333335,0.5632653061224491,0.2899305555555556,0.1846812799193751,0.15625,5555.991792356476,6338.281465801048,2731.720676422292,2467.140418886712,14.99634688802779,0.46253156323870953,8.06006311903834,0.8605743734941163,1.0,0.42857142857142855,1.5919773215030892,3.0861637868429854,3.936326994879998,4.822260077204708,5.010939322487727,5.161882718714143,0.15,0.007323515741024158,0.0650406504065041,0.03197674418604651,0.04245614035087719,0.018452380952380956,0.018775510204081632,0.010354662698412698,0.006840047404421301,0.006510416666666666,0.35773006861041523,20.28,9.666864961332541,4.950743801652893,170.26142506312507,1.0,4.23259171467116,153.97171393811152,,127.0413156359455,128.37299626338512,126.07091265822498,127.03739228243379,177.2015041372745,129.88884006623735,131.1646192362865,163.97347353531032,0.05178161471206983,0.02878665775053436,-0.28185098852874446,0.3355437665782492,0.2085012805138572,-0.21118138744818568,0.05240032418683743,0.005415334686097665,0.03737427717202633,-0.047877266418821195,-0.02933695850579642,0.0063983283463352756,0.022898569043868902,-0.21367352279300747,-0.20337436373696446,0.03141003755547962,-0.09693023983584546,0.09738332602293462,0.023151544619210894,0.13647888036589864,-0.1791902494638,-0.1135149818337396,-0.18572773108883295,0.05400278303418116,-0.009296453458695382,-0.07266734679556947,0.06553997033255071,-0.028903817322108213,-0.030089312377536113,0.1871791406426251,-0.009119545035836651,0.1006444836924467,-0.07971564415786918,-0.02675982741265729,-0.04715059620873824,0.05502201287357983,-0.03046120787330733,0.03592583647728336,0.03184016617008296,-0.08314047674149504,0.0067811685578116915,0.0012431732167123006,-0.030105663033752846,-0.05862986166330869,0.03359794949185046,0.043908942091701084,0.05429360498879696,-0.05404114740185996,0.10694887731675905,-0.007441638155911722,-0.05839261259433152,0.0032348840372713153,0.011410026876950958,-0.020565246220921162,0.10598342798160212,0.0651454220143028,0.015964540124962352,-0.025981951455684073,0.004182778505192024,0.04899144492367108,-0.0048973062829834385,-0.009023816042520623,0.009350005014676293,0.012002182214948195,-0.014849754911466414,-0.010409247483925561,-0.0033343886915655884,0.025485116748276998,-0.014537372513091859,-0.04820395553539524,-0.01782520085888579,0.00769037183406673,0.010301062022882961,0.02793443158260535,0.0483946498185858,-0.002149646330680799,-0.010009608067532238,0.04503287910080239,0.012251181273743257,0.016365243961150713,0.02500759829625379,0.01601214688467684,0.005344495758647162,0.049577977458681526,-0.05042437125000536,-0.03490929057159144,-0.007091432153608365,-0.07370307080187717,-0.11853484655906514,-0.04720736369207948,-0.05381018760982471,-0.047107921282471876,-0.04257474377824043,-0.07651949514618239,-0.023370869660983746,-0.06695550804322863,24.65457602476506,18.502932362139006,4.329638385866451,19.175285435343994,31.5163358904548,38.041499779695684,40.67067127007522,42.10648259082994,42.25863353422616,56.04177809215657,43.731351831373075,6.717317446518599,1.7202640907491467,1.776862283662871,12.310426260783492,8628.81463233807,6723.841507202282,2214.9345783044837,145.0,41.0,55.0,74.0,100.0,106.0,122.0,137.0,150.0,403.1485111320007,30.0,4.962844630259907,5.814130531825066,6.690842277418564,7.564757012905729,8.450839690866216,9.335297611380566,10.226476438820054,11.117049236260911,12.011789837336943,0.6729559748427671,0.9636226415094341,1.1236233492890952,0.6345896764443916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6958379618122248,0.954864964853866,0.9944207011227311,0.628497394283169,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,9.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,14.906346856541662,0.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,35.49555897654685,43.29741337114663,54.082138700252315,17.98165451388004,236.8415998495771,-434.8383154985917,-27.355287542319278,-8.204496518841353,-28.989221033239446,401.7970651936342,737.6945566659061,23.525968650973272,13.918765220111439,19.41301464910279,0.5,0.9050188644279107,0.2151672953971102,152.44837615967097,0.11443612959607229,212.3940540236151,0.09498113557208941,7.0,0.2,0.2779328613467085,0.5387930595971119,0.6872174685568632,0.841886704862148,0.8748269746825338,0.9011791905388425,3.942700000000003,,1.9506302521008405,0.9347351529604399,0.8936433595768919,1.9633095842560508,-1.978756833721683,0.9469394434717944,0.9504240563766853,-1.1161008578792346,113.60580000000004,5.106527394840706,0.0,9.799819461700956,0.0,16.21178857396156,57.32008653675142,47.487202792972596,0.0,0.0,4.110873864173311,0.0,5.41610040220442,0.0,6.934397209928558,0.0,8.558143177745192,0.0,10.240709508047887,35.66666666666666,14.827762818135549,0.0,0.0,0.0,0.0,0.0,5.878140074899429,0.0,51.07200000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.55203751232205,4.899909730850478,11.374772549367124,0.0,67.3265236624426,0.0,0.0,6.4208216229260096,52.25553643026682,5.022633313741326,0.0,0.0,33.633252851552754,36.87941197604791,35.88223739790999,307.94342787622304,,254.46443394654847,256.8579588412088,252.3141430184895,254.45399159373494,355.50498604784684,259.8544444645852,262.4173997031271,328.4429918963448,35.88223739790999,307.9434278762231,,252.94727708380344,256.10204700757413,251.58923288056553,252.92697302820244,356.4577208196388,259.10346032942095,261.67818099261183,329.06304792849994,4.970272729817575,231.68532946876405,,199.35704902465966,196.62160282589014,192.581483605021,199.37321263788044,281.0885233151203,199.2797052033185,201.55752369691191,256.45827914155655,1.3289717554781477,11.405312143563817,,9.42460866468698,9.513257734859586,9.344968259944055,9.424221910879071,13.166851335105438,9.624238683873525,9.71916295196767,12.164555255420177,2.4851363649087865,153.97171393811152,,127.0413156359455,128.37299626338512,126.07091265822498,127.03739228243379,177.2015041372745,129.88884006623735,131.1646192362865,163.97347353531032,50.607843137254896,0.0,0.0,6.297580582579275,0.0,0.0,9.077905528448838,52.70429715950475,8.56690995310924,0.0,0.0,1.8246512822838925,0.0,7.304827538321556,0.0,0.0,0.0,33.31036189700796,577.9800394171639,84.37479803966373,163.56668070267824,208.6253307286399,255.57978409184955,265.57978409184955,273.57978409184955,987.0,133.17402726707397,60.65862562604745,62.26022416209936,55.25,29.950000000000003,1.0,8.522230482933505,5.906890595608519,3.972306324382422,5.111208984532187,,5.109280986462812,5.111414705538982,5.109723009671664,5.109294864057127,5.0973193467835305,5.111592367715667,5.1116222253299695,5.1058559680644,0.14712245645860822,0.18930403646415506,,0.18923262912825228,0.18931165576070302,0.1892490003582098,0.18923314311322695,0.18878960543642706,0.189318235841321,0.18931934167888775,0.1891057765949778,2.372598637161744,2.6246877411274183,,2.624310460175582,2.6247279893089144,2.6243969702130174,2.6243131763259573,2.6219665562771133,2.6247627466313794,2.6247685877714693,2.623639883062029,301.9100000000007,1143.099728123276,166.95474022952564,,166.40515498738594,166.6352329593696,166.82323626828412,166.39515048755794,167.02762300360453,166.54864433307287,166.5041157847099,166.5931748613144,42.33702696752874,6.183508897389839,,6.163153888421702,6.171675294791466,6.178638380306819,6.162783351391035,6.18620825939276,6.168468308632328,6.166819103137404,6.1701175874560885,8.034750684200395,6.110974532105739,,6.107677280409039,6.109058962732943,6.1101865593974996,6.107617157268126,6.111410978955988,6.108539197917493,6.108271801552949,6.108806534684845,0.0,9.888770178640458,9.868402164936429,2.503700798092934,0.0,14.827762818135549,1.1160260770975057,7.4508838760117335,0.0,360.2281604201978,151.25620315463235,-277.7045613196593,-17.470144317899972,-5.239708704144515,-18.51363742131062,256.6031413335427,471.12026687875783,15.024593213106009,8.889061639221849,12.397901759967311,2000.0,43.0,1.4385050488558724,1.0669197794925154,0.0,0.0,0.24719387459906544,0.13693063937629152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28006896957329525,0.13606669883808506,0.5407019067463671,0.28791536218538494,18.63961743368832,17.052905587425414,13.241514740667455,10.8341114454423,11.556436838539625,8.61412586620028,9.796626673069516,6.690313424140708,8.391099368244474,5.116168279079215,7.335406221049029,4.110672986028094,5.01977951522419,2.5937435376505444,3.8313975087373136,1.7585769880402422,3.4482084652423874,2.3018340177045125,5.742357823314558,3.3619661623903814,9.485736253316029,5.0236108023707216,89.14025829532282,58.64685652867489,39.461891055175286,31.54480617508033,27.948826758249293,26.905554030965853,142.0,167.0,61.588617999999975,34.183382,0.4339622641509434,198.06,7.138888888888888,6.027777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,53.0,0.0,2.0,56.0,12.0,0.0,6.0,50.0,12.0,30.0,44.0,0.0,0.0,0.0,21.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,5.0,1.0,2.0,27.0,6.0,0.0,3.0,1.0,0.0,4.0,6.0,1.0,0.0,1.0,0.0,2.0,3.6109179126442243,7.196990831658435,4.127134385045092,4.6443908991413725,5.185988181574117,5.750984076140496,5.9441108507245115,6.328717728712267,6.741553104068066,7.079000089505211 +206044,COc1ccc(OC(=O)N(CC(=O)O)Cc2ccc(OCCc3nc(-c4ccccc4)oc3C)cc2)cc1,0,24.515151515151516,6.38439090909091,3.3333333333333335,8.878787878787879,160.23287438676476,96.91329403030305,1.5189346869056362,6.445619696969698,4.860269360269361,7.888746060606061,229.60149666652237,26.202898550724637,6.479347826086957,3.8840579710144927,8.202898550724637,144.8466697233254,100.06689357971015,1.8005899182028986,6.621050724637681,3.4766505636070857,7.8896590724637665,271.0565397805365,22.70175438596491,6.493649122807018,3.5701754385964914,6.754385964912281,153.4900923691618,85.29525939473685,1.5422756015657018,6.58805701754386,3.6769005847953213,7.957670771929824,228.01099993782213,19.35251798561151,6.411892086330934,3.179856115107914,4.9496402877697845,155.71527863306827,70.5079034676259,1.402762764634446,6.49588633093525,3.2583932853717026,7.925527136690649,202.317319358154,17.364238410596027,6.382814569536424,2.8874172185430464,4.569536423841059,159.88974863920322,62.03203193377482,1.2807476561939204,6.44988476821192,3.23270787343635,7.9244786754966885,182.31317616493695,18.06711409395973,6.3354966442953025,2.838926174496644,5.174496644295302,159.1640553006327,65.80481562416108,1.292267048564255,6.4013161073825495,3.907345264727815,7.876376375838926,183.07896210958359,16.736486486486488,6.178527027027027,2.7972972972972974,4.337837837837838,157.84531471376943,60.21449552027027,1.3091613891221214,6.259355405405406,3.1721096096096093,7.739237432432432,182.98281003626158,16.829931972789115,6.182435374149659,2.7142857142857144,4.414965986394558,157.67900921049133,60.63274342857142,1.2890349018508436,6.262113605442177,3.350340136054422,7.741152163265307,179.97255005349635,15.958041958041958,6.2053216783216785,2.6153846153846154,4.076923076923077,160.00842603364947,56.87952195104894,1.2271535879704336,6.272413986013986,3.300310800310801,7.780721874125874,170.3539092643593,7.530762167125803,0.154072359963269,0.029809435266293594,0.5555555555555556,4.379247015610653,1.4348223978483545,35.65895461340679,0.23056509072712028,0.14171609274563812,1.5728242016120806,0.10160212672176304,48.95048685811542,0.362518465285264,-0.003964059568012049,-0.017494755377871804,0.16425120772946858,1.266339282149559,-0.2619486753327532,1.6977550651175792,-0.0218421798903499,-0.001080651375414175,-0.12054781455308462,-0.005738906695412637,-1.0901747667862227,0.5346285824754726,0.021646619303078714,0.0034589433335169436,-0.040935672514619915,0.10825962979073042,0.0634220708699899,2.4480078028611474,0.004269713141843056,0.019042240587695176,0.27643594370069646,0.014216236914600531,1.1741298747069349,-1.0208428298683367,-0.020717836309464742,0.0009080909094673936,-0.07354116706634695,-0.95849270996426,-0.16004499021680063,-4.797890301656195,-0.020240192807910333,-0.01970473455945982,-0.19796651200618937,-0.01359840751531008,-5.477853540404168,-1.295763170537403,-0.03230663650350578,-0.006210260314997416,-0.06328182487122884,-0.7362608626907241,-0.05389113109244864,-6.056639461088913,-0.01687632113678154,-0.02979202090136764,-0.2320600479340194,-0.020215993870067332,-4.965969807081897,0.4222579671023844,0.029057638002970544,0.006679631937859466,-0.00969425801640567,0.36348229087704376,0.02040596445817361,1.8634347492126886,0.002110623664069049,0.025051417931604026,0.40264638795246893,0.0221197386432969,-0.05418167490147265,-0.19558608194971835,-0.01226034112625023,-0.002690057141176365,-0.021771771771771777,-0.13477527113890753,-0.009228332668616432,-0.8729759913756733,-0.0015280896002120166,-0.010547071451616914,-0.09058628187416065,-0.009075410096046453,-0.0867269145829229,0.031596109518187435,0.0017293097955435417,0.0003457362075428098,-0.029478458049886618,0.054477989542924585,-0.11841960354059215,0.09825463994303035,-0.01794663560818935,0.002152140608309429,0.016361304240092123,-8.324236802158486e-05,-2.2634088282004443,-0.11372465917920468,-0.0025963269054178222,-0.00016963575283372135,0.008547008547008558,-0.10122201031291943,-0.02870422544481307,-0.5418318403616585,-0.004187285985699238,-0.0022267094017094057,-0.05827898252140674,-0.001348340750158931,-0.7562316953555026,,,0.46403508771929824,1.3421052631578947,0.6973684210526315,0.039473684210526314,0.6447368421052632,0.05263157894736842,0.8128678790095133,0.013368290098926133,0.0224209216778735,1.144717075598375,0.2829145408932663,0.20145963117552063,1.9575849546078885,0.4843741720687869,2.0348488297334684,1.575143591971185,0.11253942371673444,0.3471658140455489,0.0,0.4597052377622834,7.821055321757586,1618.0,421.36980000000005,220.0,586.0,10575.369709526474,6396.277406000001,100.24968933577199,425.4109,320.7777777777778,520.65724,15153.698779990476,1808.0,447.07500000000005,268.0,566.0,9994.420210909451,6904.615657,124.24070435600001,456.85249999999996,239.8888888888889,544.3864759999999,18702.90124485702,2588.0,740.2760000000001,407.0,770.0,17497.870530084445,9723.659571,175.81941857849,751.0385,419.16666666666663,907.1744679999999,25993.253992911723,2690.0,891.2529999999999,442.0,688.0,21644.423729996488,9800.598581999999,194.984024284188,902.9281999999998,452.91666666666663,1101.6482720000001,28122.107390783407,2622.0,963.8050000000001,436.0,690.0,24143.352044519685,9366.836821999997,193.392896085282,973.9325999999999,488.13888888888886,1196.59628,27529.28960090548,2692.0,943.989,423.0,771.0,23715.444239794273,9804.917528,192.54779023607398,953.7960999999999,582.1944444444445,1173.58008,27278.765354327956,2477.0,914.4219999999999,414.0,642.0,23361.106577637875,8911.745337,193.75588559007397,926.3846000000001,469.4722222222222,1145.40714,27081.455885366715,2474.0,908.8179999999999,399.0,649.0,23178.814353942227,8913.013283999999,189.488130572074,920.5306999999999,492.50000000000006,1137.949368,26455.964857863964,2282.0,887.361,374.0,583.0,22881.204922811874,8133.771638999999,175.482963079772,896.9552,471.9444444444445,1112.643228,24360.60902480338,497.030303030303,10.168775757575755,1.967422727575377,36.66666666666667,289.03030303030306,94.6982782579914,2353.4910044848484,15.217295987989939,9.353262121212117,103.80639730639732,6.705740363636361,3230.7321326356177,25.013774104683215,-0.27352011019283134,-1.2071381210731544,11.333333333333332,87.37741046831957,-18.074458597959968,117.14509949311297,-1.5071104124341432,-0.07456494490357807,-8.317799204162839,-0.395984561983472,-75.22205890824937,60.94765840220388,2.4677146005509734,0.39431954002093156,-4.6666666666666705,12.341597796143269,7.230116079178848,279.0728895261708,0.48674729817010837,2.17081542699725,31.5136975818794,1.6206510082644605,133.85080571659057,-141.89715335169882,-2.879779247015599,0.1262246364159677,-10.222222222222225,-133.23048668503213,-22.246253640135286,-666.906751930211,-2.8133868002995364,-2.738958103764915,-27.51734516886032,-1.890178644628101,-761.4216421161793,-195.66023875114786,-4.878302112029372,-0.9377493075646098,-9.555555555555555,-111.17539026629935,-8.137560794959745,-914.552558624426,-2.5483244916540126,-4.498595156106513,-35.04106723803693,-3.052615074380167,-749.8614408693664,62.91643709825527,4.329588062442611,0.9952651587410605,-1.4444444444444446,54.15886134067952,3.040488704267868,277.6517776326906,0.31448292594628835,3.732661271809,59.99431180491787,3.295841057851238,-8.073069560319425,-28.946740128558318,-1.814530486685034,-0.398128456894102,-3.222222222222223,-19.946740128558314,-1.365793234955232,-129.20044672359964,-0.22615726083137846,-1.5609665748393033,-13.406769717375777,-1.343160694214875,-12.83558335827259,4.644628099173553,0.2542085399449006,0.05082322250879304,-4.333333333333333,8.008264462809914,-17.407681720467046,14.443432071625462,-2.6381554344038345,0.3163646694214861,2.405111723293542,-0.012236628099172975,-332.72109774546533,-16.26262626262627,-0.3712747474747486,-0.024257912655222154,1.2222222222222239,-14.474747474747478,-4.104704238608269,-77.48195317171718,-0.5987818959549911,-0.31841944444444503,-8.333894500561163,-0.19281272727272714,-108.14113243583687,0.7080842670313137,0.5559239777235364,0.4489321594783879,0.2919726218132278,0.29668926591156736,0.15315700052572473,0.19145075481717225,0.08333382148129842,0.12372583979690904,0.04403116988147496,0.08224692419700338,0.023463816517188867,0.053059749380435034,0.012452182346324621,0.03529668764341903,0.006784976241932634,8.032462580381363,5.69422605779769,3.5595850422102897,2.1936227578882335,0.5043569587292028,-0.5294025953195529,3.188280954285618,0.9726307702320456,6.0303120231224865,0.9955237899615814,14.54823726885565,10.954725662707265,16.017784222342197,11.705599512960744,1.9963742204558605,0.7395185914192015,3.5059842349664425,2.243481191245699,7.009381454278985,1.370382304997378,3.71868981277818,2.439481610884412,20.902006135433886,14.699763787205868,0.24259180423486848,0.5640171758866603,0.7460701326062369,0.8750165541613397,0.9090125403430246,0.9090125403430246,1.1308739195305963,1350.209301475775,0.0,2.0,4.0,0.0,18.0,1.0,2.0,0.0,0.0,4.502104108041148,2.458625592161186,1.3012144522219922,0.4814308713760198,0.2652996212776806,0.2652996212776806,249.20495917340685,3246.178733855062,96.66954570001076,49.18452627053125,97.75553268661686,,23.0,1428.0,18.60730176480284,14.69560176298435,12.29426823919648,30.417451176032646,27.480988127967372,7.109797541277533,48.53093654769288,37.255572541998674,4.9839785209472085,18.627739798453494,17.633333333333333,51.0,26.5,1.5,24.5,0.0,0.03596491228070177,2.0,0.18299663299663288,0.07528776133427328,-0.1077088716623596,0.014417453891138132,0.17585147507629684,0.0,0.6237373737373723,0.8622807017543855,0.4407407407407394,0.548449612403099,0.8478632478632474,30.888979402361507,0.507995023759193,0.851995023759193,43.49924887273826,10.75075255394412,7.6554659846697835,74.38822827509976,18.406218538613903,0.5381485249237031,0.11342155009451795,0.0,0.3062381852551985,0.20689655172413793,0.3530525003725704,-1.3515970518205347,-0.059121854347105006,-0.02047874320940204,-0.05631654382585561,0.6469474996274297,2.4767204091639283,0.05488348549728766,0.03752606680551407,0.0589695335515221,-6.898688983055106,0.7325392449489193,0.7755999701377312,1.5863247078352478,0.783596837944664,0.498668939801435,1.3048616687943195,0.7381712884352917,1.1484612604814877,0.7432232203177072,0.6967479267777602,0.8317036007002105,0.9716845312666051,0.8288262342846509,0.8202319123569062,0.9737281837572677,1.2362440191387556,0.9439458233547804,1.038600192250229,0.8315678692651703,0.9747732568882792,0.8106499521736342,0.5137945464120884,0.8319715718685897,0.914544579149215,1.081965789397503,1.1760551763565996,1.1252233706713908,1.1924460431654675,1.2215243531742022,1.1419876344137179,1.0795718336042153,1.0720805139714127,1.1657197491956663,0.9903027449109945,1.1949043522136362,1.0573531663892763,1.1657316867350211,1.3138402959707356,1.339921627061331,1.1094220349187234,1.2242351611330904,1.0661557280302711,1.1606881118205292,1.02409538166847,1.3009871157504591,1.1212465809906353,1.3050922039356871,1.0408723814801697,0.9365018507319046,0.8583432798257812,0.7766035104018666,1.0648261134838313,0.9327648783178835,0.9817536115840128,0.9388957323285956,0.9650585426022891,0.8640821215575893,0.9570505336115231,0.8344706555284138,0.969284016601517,0.9976144141947093,1.0177782821015775,0.9754893112854846,1.0241093366093366,0.9937702957728121,0.9858888483373275,0.9971901818680909,1.003554790539118,1.0157696867693367,1.0859179024632066,1.0277986881244534,0.9970423669869605,0.9692602196347384,0.9275830816422861,0.8468950589814844,1.0069573283858995,0.9316867866878352,1.0545809076258186,0.9717525210836241,1.0762930105485091,0.9272713404548468,1.07123784789049,0.9415971761620966,1.0438001257330207,1.0238080721863188,1.0397761000996513,1.0454276598540548,0.9173553719008263,1.008859299643531,0.9808654225012468,1.0230731967388944,0.998805953703619,1.0393432659128976,1.1398817729196737,1.0392962642698638,1.004818443250985,8.0,0.1850851953882257,3.555555555555557,1.9791666666666665,2.050555555555556,1.1427777777777777,0.8286167800453514,0.6163548752834467,0.3739134542705971,0.3115586419753087,7755.586758468633,8565.99478019591,3696.334146699484,3410.832591242642,23.696521232246297,0.46669334245279487,12.637512533865651,0.8750937867515483,0.0,0.20689655172413793,1.542290011317306,3.5857685271972675,4.743179667136461,5.562963247982434,5.779094498080773,5.779094498080773,0.1951219512195122,0.0052881484396635915,0.06464646464646467,0.03665123456790123,0.04101111111111112,0.02197649572649573,0.016910546531537785,0.01284072656840514,0.008695661727223187,0.008420503837170506,0.4115628443754852,30.947055324211778,15.85190082644628,9.809688581314878,219.75394720889275,0.0,4.550547837221821,325.47118682507585,,250.81351708305692,245.63416803577755,252.05906748440222,250.89031611520053,391.5899015838476,249.1013853842515,251.07672614442035,327.2385197218754,0.04813835004214761,-0.025728557471029093,-0.5868865083014049,0.2956521739130434,0.2891682697129104,-0.18256522599979538,0.0476109040078048,-0.09473324787142509,-0.007625466906950384,-0.07664417576327223,-0.05648411977761653,-0.022270968825011478,0.07099262605972317,0.14049644795626734,0.11603518492106668,-0.07368421052631584,0.02472106035691034,0.044202035711943866,0.06865057681586557,0.018518471848352668,0.13436893593921975,0.1757576869794863,0.13992066281773444,0.02398607143806738,-0.1355563762622386,-0.1344682220380339,0.03046320406123892,-0.1323741007194245,-0.21887157918873537,-0.11154341502948553,-0.1345493818781866,-0.08778515751920625,-0.13904373298540798,-0.1258669034996294,-0.13383979207983762,-0.11190600731473632,-0.17206268658885893,-0.20968482933089175,-0.20833203512646012,-0.11390728476821191,-0.16812499045296675,-0.03755944371461112,-0.16984904708372414,-0.07319547414380739,-0.21022327333593951,-0.14754353836631415,-0.19897215267381893,-0.10144883382827063,0.05607107988958622,0.18859734484431803,0.22407777531472808,-0.017449664429530203,0.08300109347139875,0.01422194446418887,0.05225713343015636,0.009154133686990052,0.1767718644104029,0.25600215684611977,0.21770940586580143,-0.0011068669257268064,-0.025971618490823474,-0.07957521471841611,-0.09024180153517004,-0.0391891891891892,-0.030775900664766254,-0.006431689861027503,-0.024481255853963203,-0.006627584407478884,-0.0744239503593112,-0.057594664286900854,-0.08932303278355011,-0.0017717273136486607,0.004195605812133412,0.011224010562023004,0.011598213936435888,-0.0530612244897959,0.012440035775266275,-0.08253258641499674,0.0027553987773407495,-0.07783760998506774,0.015186282422930191,0.010402500306978016,-0.0008192974961000935,-0.04623873986710302,-0.01510134786564491,-0.016851347678693236,-0.0056906731482274505,0.015384615384615403,-0.02311402164620869,-0.020005420523026157,-0.015194832440711669,-0.01816097125759163,-0.01571246679589211,-0.03705371678644896,-0.013270792587357506,-0.015448910601184924,20.514348872831253,28.369926785843028,6.965450576884424,14.424300227372989,34.31950174136093,43.28340160179196,46.821259838540975,47.03912013864011,47.03912013864011,77.32425552987179,59.85545649490503,4.276498101235909,13.19230093373086,0.0,17.468799034966768,22358.36685963171,21806.667096825135,1904.7790526666504,128.0,55.0,68.0,84.0,102.0,100.0,109.0,116.0,123.0,516.1896512360007,41.0,5.262690188904886,6.0844994130751715,6.9363427358340495,7.7752758464868625,8.629271094821588,9.475700145423472,10.330616300280319,11.181068561295557,12.036641647335768,0.6868686868686869,0.9984242424242422,1.1191096071233368,0.6516122846986222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6796788604608963,0.984610814022579,1.0162219426603984,0.6531077290305869,13.0,1.0,0.0,1.0,0.0,0.0,8.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,23.734267193294198,29.55353932463873,0.0,5.890723922025908,0.0,9.694446914922299,9.77851570501903,0.0,0.0,30.33183534230805,61.0181252390805,18.52902952053558,19.410607500638914,299.3668969002061,-1146.0715186437944,-50.13171144858398,-17.36471997945143,-47.75297994349143,548.5718560736129,2100.107215211268,46.53783425142677,31.81980629107982,50.00255274312543,0.4782608695652174,0.8057672640701636,0.12976034649645757,120.8215277867336,0.10855160710788979,27.85583097932291,0.1942327359298365,12.0,0.2682926829268293,0.2551603983561885,0.5932387029020962,0.7847237578280051,0.9203508471040736,0.9561081531020615,0.9561081531020615,5.365720000000005,,2.0357142857142856,2.3713355048859937,1.6624384720634042,2.0298594106552312,-8.6124234867377,2.1334149326805387,2.019989587756737,-3.4316106028930373,139.38079999999985,33.32334156143784,0.0,9.883888251797686,0.0,19.88931522852921,20.26143591170303,95.88039879542086,0.0,28.70271091357462,4.418840607796598,0.0,5.713732805509369,2.3978952727983707,7.1846291527173145,4.727387818712341,8.730851903519232,6.803505257608338,10.316358502904885,45.333333333333336,23.25364816961439,4.586499144560243,0.0,5.794237226537898,0.0,0.0,5.356249209012508,0.0,65.89599999999999,0.0,23.97851614609808,0.0,0.0,0.0,0.0,0.0,-1.9111546468920801,73.86123407014023,14.210588861400147,4.794537184071822,17.248535499851716,47.31439691723168,17.760115212910407,6.923737199690624,17.0176269054199,83.2799228270543,0.0,11.454175413722904,0.0,43.006410790109065,44.85880479041916,49.05846728369817,650.9423736501517,,501.519891308971,491.14352893971903,504.0306382071169,501.67379752457714,786.3528012943881,498.0904857720462,502.04713704737986,655.7413170342902,49.05846728369817,650.9423736501518,,499.59131988039974,488.89700056666936,502.4556964967412,499.7507728197459,791.7922266544329,496.06935583582265,500.133462701084,657.9086500466439,4.701929578387407,502.90656723478855,,390.38393478175976,382.4485928001872,392.0408553722848,390.5008510077921,606.2837850247183,387.74834225737453,390.7885331895634,507.4973083928386,1.2910122969394255,17.130062464477675,,13.19789187655187,12.924829708939974,13.263964163345182,13.201942040120452,20.693494770904948,13.107644362422269,13.211766764404734,17.256350448270794,2.385345004207002,325.47118682507585,,250.81351708305692,245.63416803577755,252.05906748440222,250.89031611520053,391.5899015838476,249.1013853842515,251.07672614442035,327.2385197218754,64.98431372549021,0.0,3.4139576840809225,0.0,0.0,0.0,9.26835357257405,67.0706482155863,0.5327482083887282,0.0,16.282401633021525,0.0,0.0,1.111210319670401,0.0,0.0,0.0,43.105110116018736,683.2412890827804,101.79114074694219,236.66072279501967,313.04985803100647,367.1555743668406,381.420236873331,381.420236873331,964.0,156.71210593345765,164.69746389103864,88.29320132156646,111.33000000000001,111.33000000000001,0.9166666666666666,8.520190258221342,6.357552004618084,3.9748045639381964,6.069156724397114,,6.075422403391673,6.075248165343874,6.0741341670915485,6.07542110762021,6.0701359359963325,6.07531150231345,6.075436159485032,6.074206003692857,0.10460012010363674,0.15971465064202933,,0.1598795369313598,0.15987495171957564,0.1598456359760934,0.1598795028321108,0.15974041936832453,0.15987661848193288,0.15987989893381663,0.15984752641296993,2.7149766473250767,3.1382207370122477,,3.1392525849642525,3.1392239053869693,3.1390405218659034,3.1392523716833454,3.138382066280556,3.1392343307453574,3.1392548491817625,3.1390523484364965,381.1800000000014,2221.416202014779,268.4094514589793,,267.43439614133325,267.43594269492866,267.6432191974689,267.4349847729541,268.39322665145613,267.4438562022577,267.43345359408454,267.80371386582806,58.45832110565208,7.06340661734156,,7.037747266877191,7.037787965656017,7.043242610459708,7.037762757183003,7.062979648722529,7.037996215848886,7.037722463002225,7.047466154363896,9.040901267044045,6.927514685289521,,6.923875354920393,6.923881137830692,6.924655888662607,6.923877555949811,6.9274542354885424,6.9239107276837615,6.923871830508713,6.925255367950862,22.076638859559424,29.676225610328725,9.26835357257405,2.480062571175022,1.7328586294914436,23.25364816961439,-0.19093307667919157,1.8369001808998313,1.5329121497029727,466.3653381838665,253.84479323920257,-971.79845433763,-42.508620890155626,-14.724219005115605,-40.491602264067915,465.15533555559267,1780.762293177562,39.4612331412571,26.981246866326703,42.399102218513384,5968.0,54.0,2.3628160588492872,0.8456920902787383,0.0,0.0,0.31903559372884915,0.06612327651714801,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02282177322938192,0.48855072144710276,0.1380006609638052,0.5841884154241542,0.12990412944298438,26.90720214718992,21.125111153494384,18.406218538613903,11.970877494342341,16.317909625136206,8.42363502891486,13.018651327567714,5.666699860728293,10.39297054294036,3.6986182700438963,8.389186268094345,2.3933092847532644,5.305974938043503,1.245218234632462,3.8473389531326743,0.7395624103706572,4.788517694780041,1.5194278281531612,6.780103250794671,1.7936424635654606,9.622223295925648,1.9904163502743835,126.76729933692215,69.62796087368844,37.98338560992148,27.067255522252566,26.067178149086182,26.067178149086182,192.0,219.0,74.914204,39.61979600000002,0.45454545454545453,275.09,11.722222222222221,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,23.0,23.0,66.0,0.0,0.0,69.0,23.0,2.0,13.0,56.0,25.0,41.0,44.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,7.0,1.0,1.0,38.0,9.0,0.0,2.0,7.0,0.0,4.0,11.0,0.0,0.0,0.0,1.0,4.0,4.0163830207523885,7.0742821814399495,4.572130331909891,5.063385859481785,5.575712332694162,6.040701040229256,6.106465939802488,6.393277159634572,6.656847018204042,6.893307662985135 +2995,CNCCCN1c2ccccc2CCc2ccccc21,0,18.285714285714285,5.662614285714286,2.9523809523809526,4.714285714285714,161.2611161850828,71.70237342857142,1.485754378730429,5.7621,2.1574074074074074,7.236637333333332,209.37559417647066,21.704545454545453,6.0654318181818185,3.659090909090909,5.090909090909091,145.15932538766356,80.95564422727269,1.8344137002272738,6.222738636363636,2.558080808080808,7.495261636363631,256.84714441091813,17.192307692307693,5.933307692307693,3.358974358974359,3.871794871794872,153.42584485547036,62.1295659102564,1.5604925112665635,6.055711538461539,2.2621082621082635,7.432760871794869,210.58242517149176,14.962616822429906,5.7733084112149555,3.102803738317757,3.121495327102804,156.84359576208527,53.622125626168234,1.4096287873974478,5.881953271028038,2.0506230529595015,7.323296971962615,185.65099800146697,13.539130434782608,5.77063391304348,2.8347826086956522,2.3391304347826085,157.57580671496854,46.88161842608695,1.3788819984085219,5.874709565217392,2.0362318840579716,7.327911756521739,177.17722802747906,11.89516129032258,5.595782258064515,2.532258064516129,1.9193548387096775,155.8131203351103,40.25215309677417,1.319365493516726,5.706391129032258,1.9435483870967742,7.187282451612903,163.76921664403395,9.75609756097561,5.4957073170731725,2.16260162601626,1.3902439024390243,160.99351253161473,31.98253096747968,1.1472542990984633,5.585158536585366,1.8495934959349594,7.131595349593498,136.92024710574057,9.23,5.50528,1.99,1.17,162.76791325447817,29.749281749999994,1.07938485960017,5.586304999999999,1.885,7.146375960000003,126.74241137084175,7.4935064935064934,5.496649350649351,1.7272727272727273,0.5194805194805194,167.94474373722628,22.492285714285707,0.971459357930143,5.55718181818182,1.8311688311688312,7.163831272727273,109.7643101859565,6.53061224489796,0.045714285714285666,0.007518823927446865,0.4829931972789116,2.673469387755102,1.4678327627088197,31.47416110204081,0.23724366338637187,0.04999999999999995,0.20628621819098006,0.01845955555555554,53.55108388029523,0.4206864564007427,0.0036181818181818116,-0.00193006231297684,0.23562152133580694,0.9304267161410015,-0.1502906044330005,1.9899297875695838,-0.0017583802657463827,0.004393181818181883,0.017138505233743283,0.0010085050505050665,1.0120207000940749,-0.2394034536891678,-0.005365384615384612,-0.000887620653838529,0.0664573521716379,0.18001046572475138,0.04148257060067301,-1.1150133639455728,0.002301456384538338,-0.005083333333333281,-0.019032114270209538,-0.0024857948717948576,-0.1460191102174609,0.5067709326721342,0.0013616822429906512,0.00038825102058289053,0.020789624260919338,0.06217814228495133,0.02286398233861832,2.44558497539577,0.015177029666051788,0.0023299065420560924,0.002733215127518632,2.951609553479325e-05,3.866380732413869,-0.8225377107364683,-0.007426086956521734,-0.00019353352298313368,-0.10700976042590947,-0.5641526175687666,0.20065692083391576,-3.9007745790594477,-0.0022737443870721073,-0.008639130434782573,-0.0330748080230482,-0.002374001932367141,-2.7525091476570513,-0.7921329822251478,-0.003151612903225802,-0.0005822971013035356,-0.08015141540487163,-0.29098090849242925,-0.15712758690850118,-3.8317434753127055,-0.03044308925264224,-0.004166935483870959,-0.012311137119124828,-0.0008797706093189974,-6.908235247626053,-0.17521154803384784,0.0007756097560975616,0.00026264956303529596,-0.06952049112327859,-0.15778994524639114,-0.13149952972785717,-0.8708914214368682,-0.015004196703743528,0.000525203252032503,0.011494570728020216,0.00039567479674796165,-2.7969113088998947,-0.2034693877551022,0.003087999999999998,0.0004554773609313666,-0.0663265306122449,-0.18918367346938778,-0.30745188913517546,-1.0475087406122463,-0.030438410700536146,0.002786999999999982,0.013475686570924673,0.0013113377777777722,-5.234940336828565,-0.521335807050093,-0.006983116883116877,-0.0010148991583990587,-0.04823747680890541,-0.44526901669758784,0.06488142750622053,-2.4646620333951783,-0.0026589014365128645,-0.007172727272727289,-0.027233789138551043,-0.0028927676767676784,-1.7446459919257218,,,0.49000000000000005,1.2125,0.6,0.0,0.6125,-0.0125,0.801747371599524,0.0008017707303086929,0.013701770730308694,0.7549938444189456,0.23818153441598594,0.25672737297236015,1.5567412160184697,0.4949089073883461,2.0718545806415256,1.8643608734019577,0.20749370723956861,0.0,0.0,0.20749370723956861,6.337578540571435,768.0,237.8298,124.0,198.0,6772.9668797734785,3011.499684,62.40168390667802,242.00820000000002,90.61111111111111,303.9387679999999,8793.774955411767,955.0,266.879,161.0,224.0,6387.0103170571965,3562.048345999998,80.71420281000005,273.8005,112.55555555555556,329.7915119999998,11301.274354080397,1341.0,462.79800000000006,262.0,302.0,11967.215898726688,4846.106140999999,121.71841587879196,472.3455,176.44444444444454,579.7553479999998,16425.429163376357,1601.0,617.7440000000003,332.0,334.0,16782.264746543126,5737.567442000001,150.83028025152691,629.3690000000001,219.41666666666669,783.5927759999998,19864.656786156967,1557.0,663.6229000000002,326.0,269.0,18121.217772221382,5391.386119,158.57142981698001,675.5916000000001,234.16666666666674,842.709852,20375.381223160093,1475.0,693.877,314.0,238.0,19320.82692155368,4991.266983999997,163.60132119607403,707.5925,241.0,891.223024,20307.38286386021,1200.0,675.9720000000002,266.0,171.0,19802.202041388613,3933.8513090000006,141.112278789111,686.9745,227.5,877.1862280000003,16841.19039400609,923.0,550.528,199.0,117.0,16276.791325447817,2974.9281749999996,107.938485960017,558.6305,188.5,714.6375960000003,12674.241137084175,577.0,423.242,133.0,40.0,12931.745267766424,1731.9059999999995,74.80237056062101,427.90300000000013,141.0,551.615008,8451.85188431865,274.28571428571433,1.919999999999998,0.31579060495276834,20.28571428571429,112.28571428571429,61.648976033770424,1321.914766285714,9.96423386222762,2.099999999999998,8.664021164021163,0.7753013333333327,2249.1455229723997,18.51020408163268,0.1591999999999997,-0.08492274177098096,10.367346938775505,40.93877551020407,-6.612786595052022,87.55691065306169,-0.07736873169284084,0.19330000000000286,0.7540942302847045,0.044374222222222925,44.528910804139294,-18.673469387755087,-0.41849999999999976,-0.06923441099940526,5.183673469387756,14.040816326530607,3.2356405068524947,-86.97104238775468,0.1795135979939904,-0.3964999999999959,-1.484504913076344,-0.1938919999999989,-11.389490596961949,54.22448979591836,0.14569999999999966,0.04154285920236929,2.224489795918369,6.653061224489792,2.44644611023216,261.6775923673474,1.6239421742675413,0.24930000000000188,0.29245401864449366,0.0031582222222228777,413.702738368284,-94.59183673469386,-0.8539999999999994,-0.022256355143060375,-12.30612244897959,-64.87755102040815,23.075545895900312,-448.5890765918365,-0.26148060451329236,-0.9934999999999958,-3.803602922650543,-0.2730102222222212,-316.5385519805609,-98.22448979591833,-0.3907999999999995,-0.07220484056163842,-9.938775510204081,-36.08163265306123,-19.483820776654145,-475.1361909387755,-3.7749430673276376,-0.5166999999999989,-1.5265810027714786,-0.10909155555555568,-856.6211707056306,-21.551020408163282,0.09540000000000008,0.032305896253341404,-8.551020408163266,-19.40816326530611,-16.174442156526432,-107.11964483673478,-1.845516194560454,0.06459999999999787,1.4138321995464866,0.04866799999999928,-344.02009099468705,-20.34693877551022,0.3087999999999998,0.045547736093136656,-6.632653061224491,-18.918367346938776,-30.745188913517545,-104.75087406122464,-3.0438410700536145,0.2786999999999982,1.3475686570924672,0.1311337777777772,-523.4940336828565,-40.14285714285716,-0.5376999999999995,-0.07814723519672752,-3.7142857142857166,-34.28571428571426,4.995869917978981,-189.77897657142873,-0.20473541061149056,-0.5523000000000012,-2.0970017636684304,-0.22274311111111122,-134.33774137828058,0.68931231412799,0.6050774827474853,0.44991718853486024,0.3399455487125395,0.28116446303647397,0.18504032438477325,0.17712220902849626,0.10092491892333247,0.11334617025374799,0.05601970624069185,0.07371473332648316,0.031255653704190055,0.04762923382363104,0.018185983079838274,0.03237485605936396,0.010632206905633336,7.030746113156229,5.691806554833163,3.1247790008974943,2.1918065548331707,0.34011834346363,-0.41965574371811704,3.2286363434238097,0.9879351072355234,5.023676472849619,0.9959566891411313,14.543765940211545,10.952106554833147,14.022496085040606,11.702806554833156,1.9948602030526659,1.0472087015517435,3.104301678820183,2.2418065548331665,2.5326484051095073,1.3506445453533116,3.2648057670961617,2.4375931709746053,20.90028842381814,15.592106145294183,0.21646457077516218,0.5162445308673752,0.6822523922542856,0.7666256399378846,0.7919376142429644,0.8088122637796843,1.726953766713544,529.6358349258869,0.0,0.0,2.0,0.0,10.0,3.0,2.0,0.0,0.0,4.1706225151424325,2.4787075318055765,1.5417830357657976,1.0655925595753217,0.9227354167181785,0.8274973214800827,190.46812541957115,569.266513445593,23.047837058649996,13.553964605847451,25.926143915072146,,9.0,314.0,0.0,0.0,0.0,0.0,32.351977680603184,22.501675532761116,0.0,7.04767198267719,58.74763488254968,0.0,9.8,24.25,12.0,0.0,12.25,0.0,0.009999999999999964,-0.25,0.06666666666666654,0.046560846560846414,-0.020105820105820127,0.020952380952380834,0.051837837837837464,0.0,0.5095238095238097,0.7399999999999997,0.44285714285714317,0.4629629629629633,0.7190476190476188,16.03494743199048,0.01603541460617386,0.27403541460617387,15.099876888378912,4.763630688319719,5.134547459447203,31.134824320369393,9.898178147766922,0.6621621621621625,0.0510204081632653,0.0,0.24489795918367344,0.3333333333333333,0.29447552325127996,-0.3617729398844369,-0.014152878226654834,-0.008613641425819923,-0.021280761169672754,0.7055244767487201,0.8667602023276281,0.03558662166325242,0.02063714767446733,0.03467040809310512,-5.245425654829594,0.9614228219696968,1.0365021306818183,1.458038058104817,0.620118437900128,0.6929360397871848,1.2792455266927367,0.9626402095417675,1.0729628119322094,0.9936287878787877,0.9664590562109647,1.1201269387183341,1.025843649612385,1.0616853632478631,1.4109765625000001,1.5446445932752373,1.140122788010112,1.1164856136230181,1.0926941462067021,1.0583017884508386,0.9886267415186005,1.319709401709402,1.102160892542572,1.5415283030399565,0.9940087436605146,0.9248150311526477,1.1076825350467292,1.192180841912424,1.3222324601816504,1.173907873772324,1.0303359595441832,0.9236016239814483,0.9230786044675066,1.053227414330218,0.8562702432760223,1.1919752491934321,0.9120434904023933,1.1269429347826085,1.3381263586956524,1.3102736082512165,1.4235762400489895,1.3430799867241952,0.9143660511932635,1.1234514663503858,0.9881739606383514,1.3002347826086957,1.069891802190508,1.3757512441352397,1.0273179690556882,1.0764910954301072,0.7986630544354839,0.7063121489868099,1.1328089504770558,1.029164614626939,1.0755205238686614,1.0793304916182476,1.144291645707405,0.8694865591397845,0.9249230485102193,0.6990525251756431,1.1363346577915368,0.9795138888888887,0.778671875,0.6610079466095442,0.9694835680751173,0.9425360474978796,1.009782084423922,0.9817600455536208,1.0411916404574553,0.8275555555555552,0.8934351145038169,0.7121936245004094,1.0306345690454572,0.9925416666666664,0.8502375,0.7994948625204489,0.8690845070422535,0.9274554707379135,1.1286098878360062,0.9948495212253023,1.083115879646523,0.8763066666666665,1.0239984732824432,0.823603072181827,1.0578522069377814,1.0580018939393938,1.32908887987013,1.3677340187289704,0.8137003841229193,1.047999074716632,0.8783069185437289,1.0541024106912489,0.9179752335899328,1.2734848484848487,1.3725468424705067,1.394025486239095,0.9537657253921833,2.0,0.0,2.000000000000001,1.25,0.9894444444444445,0.42722222222222217,0.24503401360544208,0.1423611111111111,0.09675768455530359,0.03125,3585.8489032901994,4189.958196802435,1850.4481799281266,1628.3998103146469,9.596468956948078,0.4535159447234038,5.244317271928953,0.8298795552120222,1.0,0.3333333333333333,1.221694907636328,2.9136098909731842,3.850534387012963,4.326724863203439,4.469582006060582,4.564820101298678,0.09090909090909091,0.0,0.06896551724137935,0.036764705882352935,0.03191756272401433,0.015257936507936505,0.011668286362163908,0.00949074074074074,0.012094710569412949,0.015625,0.2926935509370916,14.917355371900827,7.319857312722949,3.4425,120.98201471222285,1.0,3.9270690708581677,79.07138582136682,,64.98095714490108,63.732922814815666,62.54208726664001,64.99109393847174,83.94787056269988,64.46078082650718,65.05462815516816,78.23836504132314,0.06441761363636371,0.0791477272727272,-0.2566973680459921,0.48783610755441714,0.34802220680083257,-0.10238946033310083,0.06322423594128948,-0.0074117059256613655,0.08786363636363774,0.08308119361554456,0.05463322491540428,0.018898230003267222,-0.03665865384615381,-0.11736778846153852,-0.11805312405286428,0.13759479956663054,0.06733215893521234,0.028261101437822372,-0.03542630922967712,0.009700812876043886,-0.10166666666666573,-0.09226071638285395,-0.13466168588477956,-0.002726725579333986,0.07759929906542054,0.029786799065420526,0.05163720075497596,0.04304330656838228,0.02325747306841691,0.015576694375198345,0.07770135532658237,0.06397232891036031,0.046598130841121896,0.013249625454804827,0.001598960248309454,0.07219985950343295,-0.12595108695652169,-0.16244565217391313,-0.025739866347535424,-0.22155541947336183,-0.21101891802190503,0.13670284921533732,-0.12393577596597223,-0.009584004708986125,-0.17278260869565162,-0.16033455028211094,-0.12860558452896595,-0.0513996906917858,-0.12129536290322573,-0.0689415322580645,-0.0774452370373918,-0.16594729668332572,-0.10884018714602314,-0.10704733597751917,-0.121742513260004,-0.12831992567516134,-0.08333870967741927,-0.05967988180251169,-0.047659360306441606,-0.12900271566992544,-0.026829268292682944,0.01696646341463418,0.034932266744073466,-0.14393679148059085,-0.059020666542543246,-0.08958754230637328,-0.02767004396442512,-0.06324382489115375,0.01050406504065007,0.05572146713833556,0.0214346870680145,-0.052228845921250384,-0.03115625000000002,0.06755000000000003,0.06057827199127285,-0.13732394366197184,-0.07076335877862595,-0.20945975382630563,-0.03328154600264548,-0.12830020522387803,0.0557399999999997,0.0653251908396947,0.07103842634949654,-0.09775601084994705,-0.07982954545454547,-0.15275568181818183,-0.1349811045174566,-0.09987195902688864,-0.16655100624566263,0.04420219329788276,-0.07830747340348868,-0.011207470827925182,-0.14345454545454592,-0.13201943095072868,-0.15670841413606398,-0.032579097667296435,21.47691469873046,18.983711863956895,3.086163688434105,9.714591728153872,23.319383132206365,27.93146969088113,29.459374452785887,30.127326833738277,30.22332683373827,41.437091612830514,37.28721746803915,4.149874144791372,0.0,0.0,4.149874144791372,1840.2276116322107,1608.169502064364,1073.5042355014534,94.0,29.0,40.0,54.0,71.0,79.0,88.0,94.0,96.0,266.17829870400027,22.0,4.634728988229636,5.484796933490655,6.354370040797351,7.232010331664759,8.11701408773731,9.004913941467132,9.895908907012577,10.787812788403233,11.681207257230376,0.5714285714285714,0.9480000000000001,1.1226110147619341,0.5280635607835674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6690824921585401,0.9372549019607842,0.978392813789755,0.6065722136605508,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,5.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,10.216698334856808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.39820241076966,56.11453037768501,17.9195289552797,0.0,136.4513895933515,-167.63505441632276,-6.558031986667492,-3.991310819436255,-9.860885553901337,326.91951501292266,401.6314590292702,16.489805071982506,9.562653786411195,16.06525836117081,0.4444444444444444,0.9990766543960644,0.2775594401658852,1.541476980585889,0.09919751526928743,87.19802272567439,0.0009233456039359299,5.0,0.18181818181818182,0.2265621275326863,0.5403261088943364,0.7140778416988501,0.8023869004680733,0.8288796180988404,0.8465414298526851,3.5328000000000026,,0.2857142857142858,0.37133550488599343,0.4504991709152957,0.2850003569643751,-1.0363636363636362,0.32236842105263164,0.28052598622417024,-0.6386492564868576,85.84170000000005,0.0,0.0,5.316788604006331,0.0,19.26246486877803,25.037094525352817,59.65783953108687,0.0,0.0,3.8066624897703196,0.0,5.081404364984463,0.0,6.57507584059962,2.70805020110221,8.175547596021026,5.37989735354046,9.832796811913358,24.0,17.669697499370116,0.0,0.0,0.0,0.0,0.0,5.697612433862435,0.0,39.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.14966262000124,10.216698334856808,11.374772549367124,0.0,20.13718479450234,12.841643245852019,0.0,17.54772460632,48.53093654769288,0.0,0.0,0.0,22.17866955290983,28.101464670658686,26.81545460661802,158.1427716427337,,129.93334286123073,127.42871207914274,125.03912461618849,129.95368784124705,168.4461655493002,128.88932481090907,130.0812037117139,156.79605471088962,26.81545460661802,158.14277164273363,,129.6762000040879,127.09451012474541,124.63367536236471,129.6971875199792,168.93210476176336,128.59919323196175,129.82873032411214,157.11537933913306,4.821858326563587,106.51408358905279,,89.1798524812883,87.26042693768585,85.47136485289232,89.19574440578579,119.0837137307731,88.36447142410657,89.29535203012665,110.02226507649394,1.340772730330901,7.907138582136684,,6.496667143061536,6.371435603957137,6.251956230809425,6.497684392062352,8.42230827746501,6.444466240545454,6.504060185585695,7.839802735544481,2.4472615713621635,79.07138582136682,,64.98095714490108,63.732922814815666,62.54208726664001,64.99109393847174,83.94787056269988,64.46078082650718,65.05462815516816,78.23836504132314,39.364705882352936,0.0,2.018173343411439,0.0,0.0,0.0,0.0,41.09249817916971,5.541962238599143,3.2441748551272362,0.0,0.0,0.0,2.4950462962962963,0.0,0.0,0.0,25.476032973743134,462.9430531185143,51.31118612072577,122.37161542087374,161.72244425454446,181.72244425454443,187.72244425454446,191.72244425454448,687.0,115.19276327603305,0.4278514877600184,61.55943465793146,15.27,15.27,0.8,8.274894693640327,5.459431618637297,3.9110521322436074,4.393237782387209,,4.387694005950576,4.387829881549776,4.387881889550929,4.3876924483644215,4.380594127962519,4.387768260747214,4.387682591710107,4.383370141813743,0.19555260661218038,0.21966188911936047,,0.2193847002975288,0.2193914940774888,0.21939409447754646,0.21938462241822107,0.21902970639812597,0.21938841303736073,0.21938412958550538,0.21916850709068716,2.056953605889998,2.1732136716524155,,2.1719509862548207,2.1719819532035647,2.171993805917626,2.1719506312650636,2.1703315414028035,2.171967909533478,2.1719483848301775,2.170965047852308,226.0599999999996,190.11487053715265,106.94353663315485,,107.16354159113162,107.21735495396554,107.27429084421314,107.1631328290518,106.87300240253782,107.18507682601008,107.16058017141758,106.88202274220583,9.505743526857632,5.347176831657743,,5.358177079556581,5.360867747698277,5.363714542210657,5.35815664145259,5.343650120126891,5.359253841300504,5.358029008570879,5.344101137110291,5.940775651808987,5.3654481807245915,,5.367503274252861,5.368005309320643,5.368536200781455,5.367499459869224,5.364788416671785,5.367704210793622,5.367475639288677,5.364872815526663,0.0,2.4950462962962963,3.2441748551272362,5.697612433862435,0.0,17.669697499370116,3.4212276392038294,2.1207345993953135,2.018173343411439,267.18958364293695,63.22760383065444,-77.67720680861346,-3.038801214098997,-1.8494573049669871,-4.569247459330203,151.4849914049824,186.1043324887307,7.640895892985662,4.431055535445968,7.444173299549227,759.0,34.0,0.7415816237971963,0.4122805316097216,0.0,0.0,0.24719387459906544,0.09834817412823682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.24615119001767477,0.07810433467529065,13.7862462825598,12.101549654949705,9.898178147766926,7.478802071675869,8.153769428057744,5.3661694071584245,7.084888361139851,4.0369967569332985,6.120693193702391,3.02506413699736,5.233746066180305,2.219151412997494,3.762709472066852,1.4366926633072237,2.848987333224028,0.9356342076957335,2.272302044958091,1.0937677612415138,4.146740312628557,1.7469813781553123,6.981249670248886,2.5650311992688333,70.25791628857925,45.83191858310566,32.77473522345186,28.06848587614803,26.64357281768196,26.18789330858124,102.0,120.0,46.92944599999998,24.350553999999995,0.35714285714285715,104.02,5.055555555555555,4.61111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,42.0,0.0,1.0,44.0,12.0,0.0,6.0,38.0,12.0,22.0,32.0,0.0,0.0,0.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,2.0,1.0,1.0,20.0,2.0,0.0,2.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,0.0,2.0,3.367295829986474,7.019953303011086,3.8918202981106265,4.460144413937834,5.0089672369955585,5.549562347973121,5.703782474656201,6.070304608815758,6.432940092739179,6.766407705157608 +2788,Oc1c(I)cc(Cl)c2cccnc12,0,196.66666666666666,6.389883333333334,4.055555555555555,9.257174211248286,152.21205983045806,1062.0593591656057,3.4750704735691667,6.714383333333334,4.597229895984691,8.044623611111113,332.66522360229453,47.78947368421053,6.455263157894737,4.7368421052631575,9.301754385964912,141.22038843682898,202.19011132473682,2.50934132768421,6.718289473684211,3.582213558587828,7.92381105263158,338.3422279328221,52.172413793103445,6.387206896551724,4.482758620689655,8.501149425287355,142.84236271563796,223.68973718413793,2.539986440689655,6.675086206896553,3.361029658010501,7.892655034482759,327.3901683351574,58.52777777777778,6.390333333333334,3.611111111111111,6.62716049382716,149.15699812980745,251.90573068416663,2.3620159027693886,6.720625,3.52783447645176,8.029165833333332,289.3089068336242,78.45161290322581,6.4101,2.806451612903226,4.285623257666268,153.4952868514216,353.0596133780645,2.4052883832531933,6.782770967741936,3.4033466967564943,8.162745161290323,266.7115797954501,49.54545454545455,6.22,2.227272727272727,1.9616161616161618,157.14551904658128,214.32947587909095,2.015583709622636,6.509881818181819,3.130787878787879,8.015258727272727,215.9651342893835,37.92307692307692,5.532384615384616,1.4615384615384615,0.035897435897435895,162.0794329365413,147.6276720530769,1.946091270811308,5.916846153846155,1.8044292497625831,7.549309846153847,147.40294609454165,18.333333333333332,4.847333333333334,1.0,0.0,170.652055812226,43.31727792,1.4855227865660001,5.177333333333334,1.0082962962962962,6.879168,81.14929546101526,,,,,,,,,,,,132.66666666666666,0.10929043209876539,0.026754483894860227,0.6944444444444445,3.5680658436213992,1.5965013290320513,774.0040314795535,1.0904542072690893,0.11233858024691355,1.2961645998107036,0.08752291666666664,57.90656320407369,-0.631578947368421,-0.01629247888239119,-0.012960012977115543,0.18567251461988307,0.3115125261713954,0.044045221669350376,-2.576542515997253,0.03714384073509178,-0.0177871182586095,-0.2284395879302937,-0.012405577485380114,3.1922504641280085,-1.6206896551724137,-0.006209014474244377,-0.0032400421445446877,-0.05842911877394632,-0.027639184522965023,-0.13031092746381526,-9.263762418989606,0.015306152924205521,-0.006896817794806312,-0.088011299041792,-0.006440248084291198,-0.5959498315949301,-9.027777777777779,0.0074075617283950335,0.0050319219664627275,-0.15740740740740738,-0.12203017832647466,-0.183364042072733,-52.652697229277486,-0.12724792514992436,0.00866512345679011,0.10900821904218905,0.0007607407407407493,-3.8819762800132267,2.3225806451612905,-0.02094939267224216,-0.002804456822927673,-0.2195340501792115,-1.1441639010575686,-0.3227078901408657,5.844736110526002,-0.06360364382336903,-0.013593777379530072,-0.10370119273544225,-0.011590031362007128,-9.044149681945798,-1.0,-0.016292957351290657,0.0006110105466578379,-0.07828282828282833,-1.5262152388078314,0.16050185234905665,-6.383629876730162,0.0993021645485594,-0.009759034792368095,-0.3473364320178534,0.004263020202020216,-0.10891949722185469,-49.46153846153846,-0.0023724833808165782,-0.0022995985776440636,0.3098290598290597,1.5009855439485071,0.04204007226464032,-272.9548894816944,-0.3689362264940638,-0.029880460588793865,0.013652067806933963,-0.018588177350427414,-16.05370028737078,-72.33333333333333,0.09268364197530887,0.007217544634749779,0.6944444444444443,5.565432098765432,0.3670447137700587,-415.0897213278534,-0.599845895304756,0.07984104938271606,0.6605213855912516,0.03817702777777757,22.22827878555151,,,,,,,,,,,,,,,0.5838827838827839,1.5,0.8846153846153846,0.11538461538461539,0.6153846153846154,0.2692307692307692,0.5923823956376817,0.016602789201187126,0.029833558431956356,0.7766240166356311,0.2816500271093693,0.1951482269489124,1.3690064122733128,0.4767982540582817,2.0145203514843883,1.450097706787545,0.15633746949799204,0.13629139122560419,0.2717937839732475,0.5644226446968438,16.9394688588889,3540.0,115.0179,73.0,166.62913580246914,2739.817076948245,19117.0684649809,62.551268524244996,120.8589,82.75013812772444,144.80322500000003,5987.974024841302,908.0,122.65,90.0,176.73333333333335,2683.1873802997507,3841.6121151699995,47.67748522599999,127.64750000000001,68.06205761316873,150.55241,6428.50233072362,1513.0,185.229,130.0,246.53333333333333,4142.428518753501,6487.00237834,73.65960677999999,193.57750000000001,97.46986008230454,228.886996,9494.314881719565,2107.0,230.05200000000002,130.0,238.57777777777778,5369.651932673069,9068.606304629999,85.03257249969799,241.9425,127.00204115226336,289.04997,10415.12064601047,2432.0,198.7131,87.0,132.85432098765432,4758.35389239407,10944.84801472,74.56393988084899,210.26590000000002,105.50374759945132,253.04510000000002,8268.058973658954,1090.0,136.84,49.0,43.15555555555556,3457.2014190247883,4715.248469340001,44.342841611698,143.21740000000003,68.87733333333334,176.335692,4751.232954366437,493.0,71.921,19.0,0.4666666666666667,2107.032628175037,1919.1597366899998,25.299186520547003,76.91900000000001,23.45758024691358,98.141028,1916.2382992290413,55.0,14.542000000000002,3.0,0.0,511.956167436678,129.95183376,4.456568359698,15.532000000000002,3.024888888888889,20.637504,243.44788638304578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2388.0,1.9672277777777771,0.4815807101074841,12.500000000000002,64.22518518518518,28.737023922576924,13932.072566631963,19.62817573084361,2.022094444444444,23.330962796592665,1.5754124999999997,1042.3181376733264,-12.0,-0.30955709876543264,-0.2462402465651953,3.527777777777778,5.918737997256513,0.8368592117176571,-48.954307803947806,0.705732973966744,-0.3379552469135805,-4.3403521706755805,-0.23570597222222217,60.65275881843216,-47.0,-0.18006141975308693,-0.09396122219179594,-1.6944444444444433,-0.8015363511659856,-3.7790168964506425,-268.64911015069856,0.4438784348019601,-0.20000771604938306,-2.552327672211968,-0.18676719444444476,-17.282545116252972,-325.0,0.2666722222222212,0.18114919079265818,-5.666666666666666,-4.393086419753088,-6.6011055146183875,-1895.4971002539894,-4.580925305397277,0.3119444444444439,3.9242958855188057,0.027386666666666976,-139.75114608047616,72.0,-0.6494311728395069,-0.08693816151075787,-6.805555555555556,-35.46908093278463,-10.003944594366837,181.18681942630604,-1.97171295852444,-0.42140709876543225,-3.2147369747987096,-0.35929097222222095,-280.36864014031977,-22.0,-0.35844506172839447,0.013442232026472434,-1.7222222222222232,-33.57673525377229,3.5310407516792464,-140.43985728806356,2.184647620068307,-0.21469876543209807,-7.641401504392775,0.09378644444444476,-2.396228938880803,-643.0,-0.030842283950615515,-0.029894781509372824,4.027777777777777,19.512812071330593,0.5465209394403242,-3548.4135632620273,-4.79617094442283,-0.38844598765432026,0.1774768814901415,-0.24164630555555638,-208.69810373582015,-217.0,0.2780509259259266,0.021652633904249336,2.083333333333333,16.696296296296296,1.101134141310176,-1245.2691639835602,-1.7995376859142678,0.23952314814814818,1.981564156773755,0.1145310833333327,66.68483635665453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7247911732216052,0.7210141885362809,0.4427412359112616,0.3623416176646315,0.28307765282977343,0.20788898838128977,0.18230536154082608,0.10755581805069417,0.1160412757017542,0.06381637874205198,0.07553963585734128,0.03118640753898914,0.05045469507025163,0.02077697207782328,0.03445691161276301,0.010140908611330674,53.00025772506669,5.673907337537469,3.512663855369431,2.1388496057538156,0.4236714357109612,-0.37565895719782005,3.2816898592564447,0.9925426361203679,5.034694709318946,0.1524005212819467,14.54785517226414,10.435590534253661,126.90457541906667,11.687158755437334,5.353304597106094,0.7874301832677765,3.45440789760428,2.216469467780147,6.002804028858437,1.004905605805631,3.6680855064186235,2.4116863732374854,32.51604698289062,14.708162691033452,0.42311850403540296,0.7549287785159828,0.8518640193984413,0.9094785400723422,0.9094785400723422,0.9094785400723422,2.0997048132484886,472.3665095200525,0.0,1.0,0.0,0.0,7.0,0.0,1.0,0.0,0.0,2.2299425270787565,0.7086048612313038,0.26416041678685964,0.0,0.0,0.0,-81.39113492752071,365.4878776808008,39.03896154395422,20.304882093377824,44.83103320588168,,6.0,126.0,0.0,5.106527394840706,5.749511833283905,14.109516302422984,5.386224214464796,0.0,18.3295777085363,28.657237695529666,4.9839785209472085,11.600939890232516,7.590476190476191,19.5,11.5,1.5,8.0,0.08388278388278393,0.0,3.5,0.2377663377663375,0.11640211640211628,-0.1213642213642212,0.03741496598639449,0.005240551356158085,0.0,0.6783068783068784,0.8238095238095237,0.4405405405405409,0.5619047619047621,0.7863945578231292,7.700971143289862,0.21583625961543262,0.3878362596154326,10.096112216263204,3.661450352421801,2.5369269503358614,17.797083359553067,6.198377302757662,0.7087594486438419,0.3544542032622333,0.0,0.3293601003764115,0.0,0.611220280927955,-0.6105308479977694,-0.06807171605042937,-0.03391838044432052,-0.08721869257110991,0.3887797190720451,0.3883411905263144,0.0386210895953139,0.02157451058479525,0.03530374459330131,-4.072727641797611,0.46554042140527196,0.8852639278207721,1.2922225264291836,0.7157894736842104,0.662865874781066,0.8162450809492864,0.4650514519217935,0.4387421908120286,0.8150707324913388,0.9856617297122693,0.8465245735557145,0.5210459698141331,0.602285854560157,0.7207692253009053,0.8084982016844176,1.1020689655172413,0.8086464875607962,0.9691679530950674,0.603393070679536,0.5723083374320415,0.6897465953940061,0.6840403552739822,0.7196553502544626,0.6570930960499448,0.9950679322538619,0.8848640642076696,0.7297138424452554,1.2466666666666666,0.9828994604033818,1.0684457333709494,0.9967175161270352,1.029625413986087,0.8497267684496548,0.8590462651620417,0.9352401707841951,0.9330001751808079,1.0686429459123576,1.297522640478646,1.2036496015191946,1.184516129032258,1.2953460990501364,1.2027776446311145,1.0771281044029295,1.1260114560716614,1.2323895510235625,1.165095181728859,1.284443168110349,1.120157022966527,0.8476378102634384,1.3885090822828925,1.2356082092441534,0.9272727272727271,1.4170261272067417,0.8158637505517765,0.8385847257587951,0.8182507825787088,1.351196891312063,1.6633874566757916,1.2265290259477497,1.097571596324271,2.266557144697848,0.9732105985406598,1.0084092352188343,0.41846153846153844,0.7874548715109704,0.981279274004814,2.2518363307684894,2.1995931383200498,1.3923815135402677,0.8305300710798859,1.1837957946300997,1.9743505572547306,3.2082635399218313,0.00014402670424539283,0.37526250421897966,0.0,0.001067488876586496,0.9765621210287448,3.223361760010482,3.1659528441431304,0.296491261810499,7.522739577094505e-05,0.06221989478945988,1.9728068020553953,,,,,,,,,,,,,2.5,0.0,2.000000000000001,1.3125,0.937777777777778,0.20833333333333334,0.04,0.0,0.0,0.0,3618.2169965127887,3773.4730233995497,1499.1009700909642,1442.0305873953798,7.96889887771546,0.462802266732469,4.280874413746917,0.8615119500178305,0.0,0.0,1.9399824743635556,3.4613201402110083,3.9057645846554525,4.169925001442312,4.169925001442312,4.169925001442312,0.17857142857142855,0.0,0.10000000000000006,0.062499999999999986,0.06251851851851851,0.029761904761904764,0.04,0.0,0.0,0.0,0.47335185185185186,9.551020408163266,3.63,1.646090534979424,93.6920537323,1.0,3.5051182829011247,34.396143493746415,,20.903105696097175,23.812243715110842,23.724290342723794,20.845471708869415,26.880039028258977,23.42436378526482,23.5611914372258,25.736237157261645,-0.004760645331922771,-0.1490750706124735,-0.4844052693389939,0.2673684210526316,0.08730571122399092,0.027588590669106874,-0.0033288489609957753,0.03406272403507346,-0.15833490346339135,-0.17624273025482706,-0.1417409057861621,0.05512761054179496,-0.012216253682204123,-0.05681205897908164,-0.12110277130657446,-0.0841379310344827,-0.007746265269284578,-0.08162281176603965,-0.011968622955724645,0.014036493070660828,-0.061393136531078765,-0.06790132908632553,-0.07358356336339948,-0.010291576612735418,-0.06804857621440535,0.06777868461258205,0.1880777063851119,-0.2266666666666666,-0.034200652026819225,-0.11485367330317567,-0.06802638628203113,-0.11669258947480371,0.07713399473043615,0.0841005988422373,0.008691903443278182,-0.06703862334796848,0.017506889285135357,-0.1916855141839888,-0.10482193691153333,-0.3161290322580645,-0.3206678215041857,-0.20213443250718838,0.007551299312166954,-0.05832766144546011,-0.12100720295424558,-0.08000619115086705,-0.13242281911317091,-0.15618522636324492,-0.007537688442211055,-0.1490794485702716,0.0228376876585991,-0.11272727272727277,-0.4277430141980797,0.10053349122256472,-0.008247540861676759,0.0910649561316744,-0.08687162300714779,-0.26797247206765223,0.04870747416080798,-0.0018809525413898552,-0.37282566679551604,-0.02170806112901606,-0.0859518945191029,0.4461538461538459,0.42067204186598917,0.02633262591151675,-0.3526530591319083,-0.3383326177611988,-0.26598574170261347,0.010532665225487379,-0.21238068906251126,-0.27723455510206163,-0.5452261306532663,0.8480490029680822,0.2697695333280689,0.9999999999999997,1.5597896290828566,0.2299056737977134,-0.5362888362924744,-0.5500881112715383,0.7107179849276194,0.509596841086168,0.4361946474336063,0.3838645838333532,,,,,,,,,,,,,2.701599969404812,8.170038857167798,6.083643418932058,51.08623263674913,67.15252633345244,70.50708339935824,70.7733570994794,70.7733570994794,70.7733570994794,26.18876456929705,18.851270188238082,2.0323871034738965,1.7717880859328545,3.5333191916522173,7.337494381058969,2446.832050321313,1821.9446515374038,625.2330135108434,9.0,20.0,27.0,34.0,41.0,35.0,29.0,24.0,22.0,304.9104394600002,14.0,4.23410650459726,5.093750200806762,5.978885764901122,6.85751406254539,7.745435610274381,8.628197749459149,9.516279760698795,10.400163540697676,11.288092988224056,1.3333333333333333,1.0024444444444442,1.0898957448341122,1.4130540985578035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.9246828010645378,1.007625272331155,1.0272517601359552,0.8054532193500238,4.0,1.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.106527394840706,5.516700717616262,5.749511833283905,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,11.600939890232516,40.789971832452885,11.583067786077873,8.592815584806722,223.6458671942641,-223.39360327182104,-24.90748170919159,-12.410755737323392,-31.913371895974436,142.2547322667434,142.09427440897974,14.131479834762633,7.894126356054432,12.917661309907249,0.5,0.8463072870667152,0.5051605614010533,44.47849357830914,0.2936025585123836,69.544722955171,0.15369271293328485,3.0,0.0,0.46523198227607115,0.8300677204059526,0.9366510388806776,1.0,1.0,1.0,3.1984000000000004,,1.9267084192167432,0.456768092551859,0.45263392197541374,1.9583045285435565,-0.67868066110281,0.6542964989010651,0.6100610444666159,-0.2679539362396768,61.134800000000006,5.106527394840706,0.0,4.9839785209472085,0.0,0.0,0.0,32.98876036180462,0.0,5.749511833283905,3.367295829986474,0.0,4.6913478822291435,0.0,6.244166900663736,0.0,7.904334842085095,0.0,9.618402105931613,24.0,6.983044847568657,4.063162962962963,0.0,0.0,0.0,1.3347061728395064,1.5275000000000007,0.0,18.043999999999997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.61812340701402,0.0,0.0,5.749511833283905,10.090505915787915,0.0,3.5701822710653963,0.0,24.395944776997908,5.022633313741326,10.902924932081056,0.0,25.434973774040465,16.64429041916168,16.678194282439094,68.79228698749282,,42.08645068904629,47.56235652882231,47.415149793867826,42.043294157192626,54.215646385000625,46.748066569780704,47.02852732835006,51.5961453619337,16.678194282439094,68.79228698749282,,40.80626525341253,47.246132464747944,47.10178784788485,40.74123529496923,54.4766774085017,46.2579293092882,46.564281010232186,51.74042825067815,4.85136534189872,47.363894319610445,,28.82991820653574,32.19161079034926,31.975921555923357,28.76723801771349,36.53096222123577,31.730019979657158,31.944742076826895,34.87220338232267,1.2829380217260842,5.291714383653294,,3.2374192837727915,3.658642809909409,3.6473192149129097,3.234099550553279,4.17043433730774,3.596005120752362,3.617579025257697,3.9689342586102847,2.4256826709493597,34.39614349374641,,20.903105688908358,23.812243714803024,23.724290342389565,20.84547170117219,26.880039028244667,23.424363784805823,23.56119143682631,25.736237157219232,18.137254901960787,0.0,0.0,5.978379012345679,0.0,0.0,9.654043209876544,18.490531682447195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.498157948300427,309.66434366593,34.919684538544004,62.30376252379815,70.30376252379814,75.05865002596161,75.05865002596161,75.05865002596161,268.0,96.74242618220458,56.23625579507746,44.82554756089606,33.120000000000005,33.120000000000005,1.0,7.971139705779438,4.807354922057604,3.3633895746727545,3.5639092799326737,,3.571093283512705,3.5481537663473586,3.548148374724123,3.5712443830561007,3.5328169030737473,3.5530767157898113,3.5526459097436485,3.546411600306753,0.25872227497482725,0.27414686768712876,,0.2746994833471312,0.272934905103643,0.27293449036339407,0.2747111063889308,0.27175514639028825,0.2733135935222932,0.27328045459566525,0.2728008923312887,1.4753135319297737,1.5332223191877359,,1.5352360552568751,1.5287916668560373,1.5287901472975045,1.535278366206167,1.5244598067276312,1.5301781731082966,1.5300569170251666,1.528300539919971,148.36999999999995,53.222138739850145,54.61775909966305,,53.93219754634781,55.55561085536554,55.60058054135541,53.898975192058316,55.9935424546719,55.31858470808196,55.340459241435035,55.7269702175721,4.094010672296165,4.201366084589465,,4.148630580488293,4.273508527335811,4.276967733950416,4.146075014773716,4.3071955734363,4.255275746775535,4.25695840318731,4.286690016736316,4.236838715978642,4.262723352568945,,4.250091921110824,4.279748780949547,4.2805579070608015,4.249475729067337,4.287600635244119,4.275473187207242,4.27586853733602,4.2828284991946655,0.7164814814814816,4.063162962962963,11.04976790123457,0.5550000000000002,0.19500000000000028,5.349649785840262,1.633395061728395,0.0,0.0,,81.83215687335809,-81.7398533529138,-9.113662488457281,-4.541102964050767,-11.677121907559114,52.051091812566526,51.99238018622258,5.170716942810786,2.8884655659012552,4.726580016929325,218.0,21.0,0.9360201374968156,0.713598127556387,0.0,0.0,0.3664307840402862,0.1577146985738481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12869425449598476,0.039558770057772565,0.2964578382628504,0.11427391455054778,9.422285251880869,9.373184450971651,6.198377302757662,5.072782647304841,5.661553056595468,4.1577797676257955,4.922244761602304,2.9040070873687425,3.9454033738596426,2.1697568772297675,3.0971250701509923,1.2786427090985548,1.7659143274588072,0.7271940227238148,0.9992504367701273,0.29408634972858955,2.5114197205270075,1.3937185863664603,3.882909951522389,1.9596967289081144,6.235281593178584,2.5847805018448136,49.25797487702612,37.946534735443414,33.95689376165869,33.3594000115385,33.3594000115385,33.3594000115385,68.0,81.0,27.795964999999995,10.346035,0.5555555555555556,40.04,4.805555555555555,2.861111111111111,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,11.0,18.0,0.0,0.0,19.0,11.0,0.0,5.0,14.0,11.0,14.0,8.0,0.0,0.0,0.0,9.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,2.0,1.0,1.0,13.0,4.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,2.0,1.0,2.0,3.0204248861443626,5.81166714570174,3.7256934272366524,4.3975308212098465,5.022234429939608,5.602118820879701,5.806921775241317,6.037050177477259,6.274129170374931,6.565358495591288 +5324346,COCCCC/C(=N\OCCN)c1ccc(C(F)(F)F)cc1,0,23.953488372093023,6.72487906976744,2.813953488372093,8.790697674418604,174.16815373498207,97.03361003370493,1.2978494419030002,6.717420930232557,7.113856589147287,8.123306697674417,196.6524203885583,24.232558139534884,6.566348837209304,3.395348837209302,6.790697674418604,151.78529998273714,91.98469612803719,1.6335994532558145,6.6796069767441875,3.411498708010336,7.95547413953488,243.27431285421423,20.066666666666666,6.689173333333334,2.8266666666666667,6.2,164.58637905925778,75.61439579939878,1.3034203630732,6.728822666666668,5.35111111111111,8.114379946666665,188.92115344827943,16.24175824175824,6.208780219780217,2.5824175824175826,4.021978021978022,164.90546503105253,59.44257502210107,1.1836837720953626,6.269237362637363,3.243894993894994,7.739969318681316,165.76279758781587,15.709677419354838,6.463375268817206,2.4408602150537635,3.6021505376344085,170.66272516404499,56.319140597470955,1.0983785699890323,6.495393548387097,3.6284348864994023,7.984174623655915,156.4563831778459,14.906976744186046,6.369872093023257,2.488372093023256,3.302325581395349,168.12743326650212,52.29202824487441,1.1530126208091163,6.413087209302325,3.1298449612403108,7.907456558139532,160.2887316119541,14.581395348837209,6.022651162790697,2.4767441860465116,3.3488372093023258,160.72246538333465,51.72696384308838,1.2150554293172322,6.099617441860466,2.6148255813953494,7.5816950697674415,162.3732567852587,14.443298969072165,6.097515463917525,2.2268041237113403,3.422680412371134,165.71205641564504,51.942983436832975,1.097997066268804,6.149579381443301,3.170103092783505,7.643914391752578,146.05911368935088,13.316326530612244,6.330540816326531,2.010204081632653,2.938775510204082,173.51671370601298,46.71267801479183,0.9630290659568568,6.344286734693878,3.6164965986394555,7.881303102040818,129.09448259738892,8.689021092482424,0.2827267712276905,0.01858201172266719,0.5289345592212005,5.154137371552192,2.7137933463844424,42.22534121370926,0.22553365948633752,0.25045365062195774,3.274990986118623,0.1632974364521363,46.841281564724234,0.15467820443483,0.002011681990265004,-0.007140325017560979,0.12601406165494866,1.3802055164954037,-0.08439843386062795,0.6599661336644758,-0.01274368881665765,0.002692428339643019,-0.2678887987500752,0.0007138994050838275,-1.0188768440541136,0.532994411393546,0.07784321326843335,-0.0030749813207009884,0.012460789616008645,1.1915990625563366,0.6579212268243738,3.1634139114733957,0.011970829626838327,0.06497413232377858,1.4006614686617387,0.042507047268793945,-0.33194345723123736,0.9373525338912033,0.005698222383349473,0.0021869314301399684,0.00032687701697977365,0.4078355392579295,-0.33957221696989603,4.704435914390765,-0.005948377707362777,0.008792426556677509,0.20367166260216557,-0.00030063399877570534,2.892385313794152,-0.4497112650255587,-0.04089448815692293,0.0007864413533623532,0.012200724599754586,-0.6352576516222079,-0.2113733119973692,-2.1082361204013935,-0.0009611619994372517,-0.03440211273748671,-0.22770138594080042,-0.025681994591671167,0.7145342883021361,-1.3115197404002161,-0.050735532720389366,-0.0018623405019297043,-0.007571660356949711,-0.7555435370470527,0.05147921059360144,-6.3060894132856475,0.007860350705905626,-0.04589616008653325,-0.40715138813773216,-0.028669657111952396,-0.9256928477510793,-0.04705246078961599,0.012572850189291508,-0.0017534636148744882,-0.0719307733910222,0.4218496484586264,-0.22246244019694575,-0.16565740220034328,-0.027840770641483225,0.011146646836127684,0.12772669911663959,0.006176603569497014,-4.57897350615174,1.1103076056714967,0.05751619209045846,0.0012526283056767914,-0.06981204663429105,0.8664811851488409,-0.16322469184093594,5.346316301093918,-0.037158167270915754,0.051652271219327285,0.4106309670500818,0.031532375103845475,-4.123307850847257,0.27514596969128374,0.0276067361287403,0.0021762925028415837,-0.039138640853853726,0.09550667211178682,-0.12011873982582692,1.2340479101561175,-0.01575965132744711,0.02425840443262217,0.05799627855468848,0.018957770002538597,-2.510704818574234,,,0.4465367965367966,0.9431818181818182,0.3409090909090909,0.0,0.6022727272727273,-0.26136363636363635,0.8759192363278772,0.01947735405857618,0.023386444967667088,0.7853707319992338,0.20696473179168506,0.2696585306212431,1.661289968327111,0.4766232624129282,1.9574738373928802,1.3822614762811076,0.170003347656714,0.17469750491048774,0.23051150854457134,0.5752123611117731,7.3989654086511765,1030.0,289.16979999999995,121.0,378.0,7489.230610604229,4172.445231449312,55.80752600182901,288.84909999999996,305.8958333333333,349.30218799999994,8456.054076708007,1042.0,282.35300000000007,146.0,292.0,6526.7678992576975,3955.3419335055987,70.24477649000002,287.22310000000004,146.69444444444446,342.08538799999985,10460.795452731212,1505.0,501.68800000000005,212.0,465.0,12343.978429444334,5671.079684954909,97.75652723049,504.6617000000001,401.33333333333326,608.5784959999999,14169.086508620958,1478.0,564.9989999999998,235.0,366.0,15006.39731782578,5409.274327011197,107.715223260678,570.5006000000001,295.19444444444446,704.3372079999998,15084.414580491244,1461.0,601.0939000000002,227.0,335.0,15871.633440256182,5237.680075564799,102.14920700898,604.0716,337.4444444444444,742.5282400000001,14550.443635539668,1282.0,547.8090000000001,214.0,284.0,14458.959260919182,4497.114429059199,99.159085389584,551.5255,269.16666666666674,680.0412639999997,13784.830918628053,1254.0,517.948,213.0,288.0,13822.13202296678,4448.5188905056,104.49476692128198,524.5671000000001,224.87500000000006,652.025776,13964.100083532248,1401.0,591.459,216.0,332.0,16074.06947231757,5038.469393372799,106.50571542807398,596.5092000000002,307.5,741.459696,14167.734027867034,1305.0,620.393,197.0,288.0,17004.63794318927,4577.842445449599,94.37684846377196,621.7401,354.41666666666663,772.3677040000002,12651.259294544114,373.6279069767442,12.157251162790693,0.7990265040746891,22.744186046511622,221.62790697674427,116.69311389453102,1815.689672189498,9.697947357912513,10.769506976744182,140.8246124031008,7.02178976744186,2014.175107283142,6.65116279069769,0.08650232558139517,-0.3070339757551221,5.418604651162792,59.34883720930236,-3.629132656007002,28.378543747572458,-0.547978619116279,0.11577441860464982,-11.519218346253234,0.030697674418604583,-43.81170429432689,39.97458085451595,5.838240995132502,-0.23062359905257412,0.9345592212006484,89.36992969172525,49.34409201182804,237.2560433605047,0.8978122220128745,4.873059924283393,105.0496101496304,3.1880285451595456,-24.895759292342802,85.2990805840995,0.518538236884802,0.1990107601427371,0.029745808545159402,37.113034072471585,-30.901071744260538,428.1036682095596,-0.5413023713700127,0.8001108166576533,18.534121296797068,-0.027357693888589184,263.20706355526784,-41.823147647376956,-3.803187398593833,0.07313904586269884,1.1346673877771765,-59.07896160086534,-19.657718015755336,-196.0659591973296,-0.08938806594766441,-3.1993964845862637,-21.17622889249444,-2.3884254970254184,66.45168881209865,-112.7906976744186,-4.363255813953486,-0.16016128316595457,-0.6511627906976751,-64.97674418604653,4.427212111049724,-542.3236895425657,0.6759901607078838,-3.9470697674418593,-35.015019379844965,-2.465590511627906,-79.60958490659281,-4.046511627906975,1.0812651162790696,-0.150797870879206,-6.18604651162791,36.27906976744187,-19.131769856937336,-14.246536589229521,-2.3943062751675575,0.9586116279069808,10.984496124031004,0.5311879069767432,-393.7917215290496,107.69983775013517,5.579070632774471,0.12150494565064876,-6.771768523526232,84.04867495943756,-15.832795108570785,518.59268120611,-3.6043422252788284,5.010270308274746,39.83120380385793,3.0586403850730113,-399.96086153218397,26.96430502974581,2.7054601406165495,0.21327666527847522,-3.835586803677665,9.359653866955108,-11.771636502931038,120.9366951952995,-1.544445830089817,2.377323634396973,5.683635298359471,1.8578614602487826,-246.04907222027495,0.7465654074088182,0.569408892205581,0.47662326241292824,0.3200861426752463,0.3243902107196447,0.16731768550155177,0.2022640843772603,0.09488302019573697,0.13418228380376687,0.05321747311049875,0.08428416473163503,0.029893040430820646,0.05566437603145571,0.015829037672964424,0.039311020777305354,0.008838828584857775,9.014092220040158,5.688184431985126,4.124520888829898,2.1875581708428884,0.501469517383277,-0.4449790883107527,4.022096608223437,0.9871436101420389,7.014086085552303,0.9975712724553345,17.43069766661442,10.949111966946393,19.005605289263638,11.699662826324072,1.9892980868920194,0.5269847254495171,4.00713954782693,2.2373636329544455,8.007384880729532,1.219027746131457,4.030578141951733,2.4332197212012523,20.896678757220418,13.302788526135133,0.3087012738744151,0.6195218670675082,0.8114791028135085,0.8784675034299523,0.8784675034299523,0.8784675034299523,2.4108480114950637,458.8505183043104,0.0,0.0,4.0,0.0,5.0,3.0,2.0,0.0,0.0,3.711556100340587,1.9850754985184014,0.9188319768448121,0.5467389535889984,0.5467389535889984,0.5467389535889984,70.55043648717898,1084.7920163972099,59.91352450438484,25.227721311563023,53.36838531400283,,12.0,398.0,11.73975000914047,13.171245143024459,6.606881964512918,30.8475964878192,24.974377382775238,12.13273413692322,7.109797541277533,0.0,5.15571272675054,15.308119014698867,9.823809523809526,20.75,7.5,0.0,13.25,0.0,0.05346320346320335,-5.75,0.2033222591362125,0.041223133771781106,-0.16209912536443138,0.05483405483405468,0.24789064618165357,0.0,0.6366555924695462,0.9580086580086576,0.4333333333333337,0.5954324586977651,0.903174603174603,19.270223199213298,0.428501789288676,0.514501789288676,17.278156103983143,4.553224099417071,5.932487673667349,36.54837930319644,10.48571177308442,0.4661093538183464,0.17886572952011628,0.05089675230247211,0.15269025690741633,0.5333333333333333,0.43559158686434557,-0.8627775845809498,-0.07725338246373216,-0.020064594990254644,-0.05751850563872998,0.5644084131356545,1.1179254652454944,0.032141689511275474,0.02599826663361615,0.03992590947305337,-4.689532896166977,0.7698867172911739,0.592064110269725,1.5716883963986277,1.1165644171779143,0.4407135362014689,1.0818607672498126,0.7650467830883723,1.320020885319368,0.5845269848892912,0.6376203287667461,0.6245229467767045,1.1616206690757387,0.8678152620440681,0.6412758851163187,1.160951911662095,1.0464212678936606,0.7251794333683104,0.7877519698331725,0.8498630065025914,1.038221906216133,0.6519540787857533,0.43590470489205096,0.6889562006585743,1.035651169993113,0.7769968112305968,0.644172061068437,0.7375034010890843,1.0653610193487495,0.7601097748002257,0.9155655162006684,0.7659352741801405,1.0346259912096254,0.6417178270377916,0.5065402426185741,0.6685967978725909,0.966574604126739,1.0225802435919573,1.1011686516719716,0.8231413968093779,0.9133847879147703,1.139078631147818,1.0329221325702098,1.0177425703460692,0.975954302489193,1.0940729071344835,0.9728428978180548,1.120997628541508,0.9552111842017561,1.088167558819868,1.0365410211687232,0.8795529571305191,0.923312883435583,1.1028856243441758,0.8785947290908602,1.080883630553742,0.9618190014576545,1.0440281647925842,0.8938268504310848,1.0481866678395382,1.013718490771006,0.8404705589443545,0.474490867542349,0.8222369475604894,1.0628834355828223,0.6390346274921299,0.7921566938197004,0.8295872569661712,1.176850450242246,0.4927115490592732,0.35211689178495975,0.49262097624616735,1.1701455989099498,0.7532716205446348,0.42607306949793955,0.7562301968039192,1.0089810891151731,0.5870804080440495,0.8076641942104671,0.7485740593524381,1.157462749821656,0.43976598899328023,0.433571654098958,0.42988703323621885,1.1205787327192602,0.9509078622112358,0.8323603872465702,0.8870511779977672,0.9327344434706399,0.9156273422275518,0.9125987558030453,0.9512967769248355,0.9839827810156512,0.8398812649816992,0.891559857940052,0.8085247558203633,1.0091024660934342,4.5,0.12804815835118866,2.4444444444444455,1.125,0.5822222222222224,0.5902777777777778,0.4065306122448979,0.3055555555555556,0.23834719072814306,0.18125000000000008,4041.6572251238213,4627.202148370356,2086.277617189068,1870.779271174943,13.051744208772533,0.4386149551136015,7.32705400848756,0.781308585094851,1.0,0.5333333333333333,1.714708654361511,3.4411892561836965,4.507432777857286,4.8795258011130995,4.8795258011130995,4.8795258011130995,0.2045454545454545,0.011640741668289876,0.08730158730158732,0.040178571428571425,0.022393162393162393,0.025664251207729468,0.01767524401064774,0.012731481481481479,0.011917359536407154,0.01208333333333333,0.44613118690666476,20.045454545454547,10.714285714285714,7.908428720083247,127.62883049920974,1.0,3.960814166494367,115.88233731925955,,94.24560530031248,92.77526990484971,94.59030821627837,94.04863143434156,148.31413225056963,93.72305209612762,94.42563217125358,119.32140593513486,0.017801568529814554,0.007115286541595032,-0.3842600642023535,0.23824130879345617,0.26778593913955934,-0.031099801306931154,0.015629622276449606,-0.05650459823017967,0.010750206008005254,-0.08179833162459033,0.00437177349867998,-0.021751685906506474,0.06134113448690816,0.27533018161107664,-0.1654816155857864,0.023558282208588945,0.23119272472892607,0.2424360085121865,0.07491742684713541,0.053077796254902256,0.25942577463904687,0.4276840683221977,0.2603044370586496,-0.007086557970720022,0.10787780624703316,0.02015452006403907,0.11769077873695717,0.000617991415537425,0.07912779770072521,-0.12512825172274242,0.11141262045890539,-0.02637467826713964,0.03510600278671546,0.06218999180927468,-0.0018410209327678175,0.061748637466238376,-0.05175626347767073,-0.14464314072327114,0.04232272399241983,0.02306660509708204,-0.1232519829852531,-0.0778885069782412,-0.04992821987467836,-0.004261723068859606,-0.13735919860642914,-0.06952733210745787,-0.15727126616098933,0.015254371025583673,-0.15093987302377687,-0.17945075558313553,-0.10022276003937379,-0.014314928425357892,-0.1465897166841553,0.018969465992016907,-0.14934371711455244,0.0348522288150155,-0.18325211061031926,-0.124321376719351,-0.1755670985095696,-0.019762329655135025,-0.005415162454873643,0.04446996700983125,-0.0943634973997747,-0.1359918200408999,0.08184679958027281,-0.08197471649539198,-0.0039231749806810205,-0.12344397153352525,0.04450582696018581,0.03900062615684195,0.03782425311561718,-0.09775508596673677,0.12778281855387758,0.20343383769674397,0.06741080160598424,-0.13198616996605747,0.16811371577546758,-0.06014632324837794,0.12661392773679078,-0.16475663701615562,0.2062348506043251,0.12538384648708417,0.19309779619894923,-0.08802722114145752,0.03166593414410455,0.09764457751511459,0.11711823968913132,-0.07399524226868666,0.01853009829325223,-0.04426230169141649,0.02922529160653557,-0.06987715875022994,0.09685785921818539,0.01770883608550726,0.11609349426679617,-0.05360025888926627,11.929246847290742,10.58450300779758,1.3103706971044482,18.143833107391163,33.111026911056015,37.256405032065786,37.63147479950764,37.63147479950764,37.63147479950764,43.06442442264336,30.409752478184366,3.7400736484477077,3.8433451080307304,5.071253187980569,12.654671944459007,5770.474839039477,4735.535144458518,1254.0110334626625,28.0,28.0,31.0,34.0,39.0,44.0,48.0,38.0,33.0,318.1555125720006,22.0,4.61512051684126,5.389071729816501,6.220590170099739,7.027314514039777,7.872836175025724,8.695674048824253,9.548881894718772,10.38080809774472,11.238185941887343,0.6511627906976745,1.0152558139534884,1.1628516300011833,0.6163733817643903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.620075936499095,0.9972640218878247,1.0274394891512393,0.5947530519409824,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,3.0,1.0,0.0,6.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,15.308119014698867,6.606881964512918,0.0,0.0,0.0,0.0,0.0,13.171245143024459,0.0,17.28844686367376,36.958650497398246,20.26143591170303,11.275136494467699,238.56492566194524,-472.5262758402339,-42.31015474211545,-10.988983159075206,-31.501751722682258,309.1153621491242,612.2657405569761,17.603369762269384,14.238738152487818,21.86663359132057,0.5,0.9019815507757848,0.19903273398687246,52.86447581272538,0.20998111337428646,1.012522497852008,0.09801844922421533,6.0,0.4090909090909091,0.316001657102271,0.6341727526659576,0.8306695271275506,0.8992421162061389,0.8992421162061389,0.8992421162061389,3.201500000000001,,1.785714285714286,2.1134957836316377,1.857877123221522,1.8868984339141763,-9.195566168632602,1.917699728753929,1.7180155866620463,-3.076617208505031,78.71440000000003,22.74569668056114,0.0,0.0,10.889380203912726,25.438763386221503,26.868317876215947,35.392371257240434,0.0,0.0,3.8066624897703196,0.0,5.056245805348308,0.0,6.4967749901858625,0.0,8.031710375322042,0.0,9.620793021595386,28.0,4.902226788863693,0.0,0.0,0.0,0.0,0.0,-0.06916869512829127,0.0,43.656000000000006,0.0,0.0,0.0,0.0,0.0,0.0,3.9877787226001513,0.6095162509448226,50.00262009005088,5.733667477162185,13.171245143024459,0.0,32.58000287898665,15.750750054980156,0.0,30.38936785217202,29.421181000596977,0.0,0.0,0.0,26.504055415868784,26.663265269461082,26.79325315222813,231.7646746385191,,188.3288729382873,185.35840382936925,189.01171851226388,187.9257266474182,299.13614618349345,187.2717678532776,188.6950811073561,239.48188929077094,26.79325315222813,231.764674638519,,186.7054963149107,183.4370440260679,187.32273930933525,186.21036443476902,305.8238306697719,185.5284044635014,187.1332487558451,241.7194290787748,4.703677744171491,163.1711332747234,,134.40654165109873,132.81822346507542,134.90622366552446,134.2036045110416,197.75963141153716,133.84897813734142,134.59610359336878,162.13081311998408,1.2178751432830968,10.534757938114504,,8.560403315376696,8.425381992244057,8.591441750557449,8.542078483973555,13.597097553795157,8.51235308423989,8.577049141243458,10.88554042230777,2.351838872085746,115.88233731925955,,94.24560530031248,92.77526990484971,94.59030821627837,94.04863143434156,148.31413225056963,93.72305209612762,94.42563217125358,119.32140593513486,42.882352941176464,0.0,1.6202596013940918,0.0,37.721520156996874,5.325039854976273,0.0,44.179898033503285,3.463929430249551,0.0,10.03180427659662,0.0,0.0,0.0,-4.342906387493779,0.0,0.0,25.574381233462244,493.99751532915656,73.73247213754497,147.97113801589896,193.8196094478633,209.8196094478633,209.8196094478633,209.8196094478633,367.0,114.9884830889981,53.68277248191295,55.01218668222191,56.84,56.84,1.0,7.2434236211381915,5.459431618637297,3.739286187651339,4.593440065649234,,4.58649516956926,4.587901487725888,4.584572657361171,4.586796936615579,4.534986397335697,4.586948606043518,4.5862690497766465,4.561111314294879,0.16996755398415175,0.20879273025678335,,0.2084770531622391,0.2085409767148131,0.2083896662436896,0.2084907698461627,0.20613574533344076,0.208497663911069,0.20846677498984756,0.20732324155885815,2.1073520946580757,2.313086573364957,,2.311573513146782,2.3118800876759145,2.311154257227509,2.311639305676429,2.3002794444419097,2.311672371653079,2.3115242107146576,2.3060236634734763,231.1299999999997,371.06389927776536,114.17070390624137,,114.47686661069231,114.29436517440364,114.57404062339869,114.41940639123223,119.86076567975446,114.40931961011665,114.5146665313943,117.17606528412189,16.86654087626206,5.189577450283699,,5.20349393684965,5.195198417018347,5.207910937427213,5.200882108692374,5.448216621807021,5.200423618641666,5.205212115063377,5.326184785641904,6.704831643390959,5.526152091455602,,5.528830124611506,5.527234631388173,5.5296786173741825,5.528328061210355,5.57478814349133,5.5282399011152625,5.52916026713273,5.552134995525969,42.689936891076485,5.063387542517007,3.9877787226001513,5.865387410792804,0.0,4.902226788863693,-2.1008229360576496,1.2218459788134213,1.6202596013940918,291.9705945267365,130.65730714816056,-258.7933267504721,-23.172437726492674,-6.018449459313304,-17.25288845003147,169.29639050865532,335.32587700510226,9.641018617844372,7.798276209420983,11.975924178753651,1216.0,28.0,1.8436963044151784,0.37986392767153515,0.28867513459481287,0.013498731178900972,0.5163460352255527,0.0620665995490222,0.14433756729740643,0.004499577059633658,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.08977918909913549,0.027777777777777776,16.424438962994,12.526995628522782,10.485711773084422,7.041895138855419,9.082925900150052,4.68489519404345,6.270186615695069,2.941373626067846,4.562197649328073,1.8093940857569575,3.287082424533766,1.1658285768020051,2.449232545384051,0.6964776576104347,1.886928997310657,0.4242637720731732,2.8046907600978037,0.6863161411058233,3.5460821406118455,0.7555549882569947,4.287046658880152,0.844400632636803,71.7173780467234,38.54891047623737,28.242903690806102,26.56998710634892,26.56998710634892,26.56998710634892,100.0,109.0,44.52765299999997,27.308346999999994,0.13953488372093023,22.07,8.645833333333334,5.194444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,43.0,0.0,1.0,43.0,6.0,1.0,4.0,39.0,7.0,22.0,36.0,0.0,0.0,0.0,15.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,4.0,1.0,0.0,22.0,7.0,0.0,2.0,2.0,0.0,1.0,9.0,0.0,0.0,3.0,0.0,1.0,3.295836866004329,5.128047890778223,3.7256934272366524,4.1470951276076295,4.563045259687421,5.020998081131802,5.243729176263634,5.550048374714159,5.3116653840675365,5.2400922074670575 +146571,CN(C)CCC[C@@]1(c2ccc(F)cc2)OCc2cc(C#N)ccc21,0,21.866666666666667,6.101106666666666,3.2666666666666666,7.288888888888889,162.903181901594,87.02042638110599,1.5219627555961996,6.17438222222222,4.532253086419754,7.592290044444443,222.2924399361334,24.0,6.227659574468085,3.9574468085106385,6.702127659574468,144.30153583555096,91.0795160390469,1.8580936278723417,6.38422340425532,3.0981087470449173,7.63563276595744,268.50249847382696,20.072289156626507,6.179903614457832,3.710843373493976,5.325301204819277,154.11998264856123,74.88340506831807,1.5916317527769879,6.293524096385542,2.821954484605088,7.659471566265056,226.94371923904055,17.49074074074074,6.062157407407406,3.2037037037037037,4.12037037037037,153.36169657405776,63.38066188445924,1.4909306856235092,6.175652777777777,2.845293209876542,7.568338481481481,204.63772487593215,14.166666666666666,5.908946969696968,2.772727272727273,3.1136363636363638,159.41409259726572,49.975878224896974,1.2914290158596216,5.9964924242424225,2.4930555555555554,7.485354969696973,171.2942817813698,13.612403100775193,5.803325581395348,2.643410852713178,3.0387596899224807,157.0699407145471,47.54467012275347,1.3085432393869998,5.901175193798448,2.3243970714900946,7.381281829457363,169.4123284675288,13.338461538461539,5.779407692307693,2.4846153846153847,3.0538461538461537,160.9924532399566,47.42068175743999,1.2099318050327845,5.862471538461539,2.5694444444444446,7.360478276923078,156.10246726616253,13.619469026548673,5.980796460176991,2.4070796460176993,2.5929203539823007,163.81334131321128,47.94618259461944,1.2007274644581594,6.051022123893803,2.7441002949852504,7.548341274336286,158.82734249967277,12.789473684210526,6.0403052631578955,2.168421052631579,2.1894736842105265,162.9497644215957,42.93849401719578,1.2098934871914526,6.11521052631579,3.1845029239766074,7.574140336842106,155.16588097830592,7.257283950617282,0.13231476543209875,0.009361586890012605,0.6350617283950617,3.9683950617283963,1.9616209303265144,35.05253858035728,0.2394491375752572,0.12278222222222213,1.6359533607681755,0.0732385698765432,51.62174380518351,0.38716049382715956,0.0027279768846860727,-0.002620096995747174,0.2727396900446543,1.2604465458366172,-0.1836594787201334,1.796632967938817,-0.010669889926295553,0.003925531914893614,0.019822184280419097,0.00015077102180195714,-0.1279918922302632,0.41982448311765524,-0.010933399970251396,-0.0016024863822117117,0.009918191283653148,0.12745500520600941,0.2959200872773202,2.1706789795506753,0.03739725273302467,-0.008225301204819279,0.05908419686978365,-0.006967002540532481,7.833574893788743,-0.7072839506172841,-0.009290403292181075,0.0010426626479949361,-0.03773662551440329,-0.1517283950617284,-0.12834561525089644,-3.4631731335766784,-0.027196748749029487,-0.008969444444444434,0.005721879286694114,-0.004965729547325093,-5.6979285503366786,-0.0933108866442201,-0.010032610549943874,-0.0006412419632024677,-0.0030751964085297587,-0.0816947250280583,0.0919582035368423,-0.41851104394590566,0.012114708070357699,-0.008889393939393938,-0.05248791931662293,-0.006037414320987658,1.8813636374546132,-0.3115475165087567,0.0031399115704852324,-0.0006867905361644249,-0.006637955785242606,0.2286764283663508,-0.13647835335127342,-1.4865503931083233,-0.016211067401038847,0.0019426356589147317,-0.018984033559830166,0.001947932104507591,-3.7241330415826637,1.1628869895536562,0.03197836277302944,0.0014774893174470181,-0.049933523266856635,0.5712630579297245,-0.1714719810907395,5.543803197542482,-0.00620925835976241,0.030189999999999984,0.20854925081776945,0.01749234567901232,1.6804648442318895,-0.08265268218070537,-0.012359288539276748,-0.0006424461501161972,-0.15816890636949638,-0.6981885720528789,-0.12971098030042597,-0.2419914015433938,0.008771553074805444,-0.010374336283185844,-0.07009107517875132,-0.007981039099748706,1.5257673065653437,-2.3742430149447706,-0.025668168940870692,-0.0008854321987488786,-0.08371669915529563,-1.0692137751786877,-0.36814727770016686,-11.533366875083356,-0.06875261488962171,-0.026503157894736812,-0.26083477727239907,-0.011446080519818052,-16.822334886005507,,,0.4757936507936508,1.2604166666666667,0.6458333333333334,0.020833333333333332,0.6145833333333334,0.03125,0.8320108431411604,0.015272266450236271,0.02602226645023627,0.9213019697824083,0.2463799763549277,0.23477332229371503,1.7533128129235687,0.4811532986486427,2.032125392228775,1.7163599741702391,0.15553227857837296,0.08674927240395895,0.07348386707620379,0.3157654180585357,7.2036398113777915,984.0,274.54979999999995,147.0,328.0,7330.643185571729,3915.9191871497696,68.48832400182899,277.8471999999999,203.9513888888889,341.65305199999995,10003.159797126003,1128.0,292.7,186.0,315.0,6782.172184270896,4280.737253835204,87.33040051000006,300.05850000000004,145.61111111111111,358.8747399999997,12619.617428269868,1666.0,512.932,308.0,442.0,12791.958559830582,6215.322620670399,132.10543548049,522.3625,234.22222222222229,635.7361399999996,18836.328696840366,1889.0,654.7129999999999,346.0,445.0,16563.06322999824,6845.1114835215985,161.020514047339,666.9704999999999,307.2916666666666,817.380556,22100.874286600672,1870.0,779.9809999999998,366.0,411.0,21042.660222839077,6596.815925686401,170.46863009347004,791.5369999999998,329.0833333333333,988.0668560000004,22610.845195140813,1756.0,748.6289999999999,341.0,392.0,20262.022352176577,6133.262445835198,168.80207788092298,761.2515999999997,299.8472222222222,952.1853559999998,21854.190372311215,1734.0,751.3230000000001,323.0,397.0,20929.018921194358,6164.688628467199,157.29113465426198,762.1213,334.0277777777778,956.8621760000001,20293.32074460113,1539.0,675.83,272.0,293.0,18510.907568392875,5417.918633191996,135.682203483772,683.7654999999997,310.0833333333333,852.9625640000003,17947.489702463023,1215.0,573.8290000000001,206.0,208.0,15480.227620051592,4079.156931633599,114.939881283188,580.945,302.5277777777777,719.5433320000001,14740.758692939062,326.57777777777767,5.9541644444444435,0.42127141005056723,28.577777777777776,178.57777777777784,88.27294186469315,1577.3642361160776,10.775211190886575,5.5251999999999954,73.6179012345679,3.295735644444444,2322.978471233258,18.1965432098765,0.12821491358024542,-0.12314455880011718,12.818765432098754,59.24098765432101,-8.631995499846271,84.4417494931244,-0.501484826535891,0.1844999999999999,0.9316426611796976,0.007086238024691986,-6.0156189348223705,34.845432098765386,-0.9074721975308659,-0.13300636972357208,0.8232098765432113,10.57876543209878,24.56136724401758,180.16635530270605,3.103971976841047,-0.6827000000000002,4.903988340192043,-0.5782612108641959,650.1867161844657,-76.38666666666668,-1.0033635555555562,0.11260756598345309,-4.075555555555555,-16.386666666666667,-13.861326447096815,-374.0226984262813,-2.9372488648951847,-0.968699999999999,0.6179629629629643,-0.53629879111111,-615.3762834363613,-12.317037037037053,-1.3243045925925914,-0.08464393914272574,-0.40592592592592813,-10.783703703703695,12.138482866863184,-55.243457800859545,1.5991414652872162,-1.1733999999999998,-6.928405349794227,-0.7969386903703709,248.34000014400894,-40.18962962962962,0.40504859259259496,-0.08859597916521081,-0.8562962962962962,29.499259259259254,-17.60570758231427,-191.7650007109737,-2.091227694734011,0.2506000000000004,-2.4489403292180913,0.25128324148147924,-480.4131623641636,151.1753086419753,4.1571871604938275,0.19207361126811234,-6.491358024691363,74.2641975308642,-22.291357541796135,720.6944156805228,-0.8072035867691133,3.924699999999998,27.11140260631003,2.274004938271602,218.46042975014564,-9.339753086419707,-1.3965996049382725,-0.07259641496313028,-17.87308641975309,-78.89530864197532,-14.657340773948135,-27.345028374403498,0.9911854974530153,-1.1723000000000003,-7.920291495198899,-0.9018574182716038,172.41170564188383,-225.5530864197532,-2.438476049382716,-0.08411605888114347,-7.953086419753085,-101.57530864197533,-34.97399138151585,-1095.669853132919,-6.531498414514063,-2.517799999999997,-24.779303840877912,-1.087377649382715,-1598.1218141705233,0.71485374044012,0.5854382901477742,0.444141506444901,0.3127904280401209,0.2829353618369869,0.1760308708544085,0.17280064767763595,0.09176380878079479,0.10661603858973909,0.050876255259009406,0.06753898642368482,0.027299723192409944,0.04390314620192754,0.01518867194847084,0.028956977614271795,0.008679185506698835,9.004065939476158,5.678821023463334,4.107712571760509,2.1779471600209073,0.3811979258571903,-0.4007952779823522,4.0300400238649585,0.9113285352075978,7.00405696248529,0.9949350515205032,17.424771391811127,10.939877150335036,19.0001411639965,11.69039622106697,2.006286370256554,0.5458639960381088,3.988663453163432,2.2276259074978215,8.001918334441008,1.1669673743379168,4.009938873733436,2.4234108708134063,20.912539584703733,13.30412121053347,0.2554422598440506,0.5603163394015541,0.753271969789608,0.8441828574483786,0.8518703992459375,0.8518703992459375,1.725807601581729,764.1985832338869,1.0,0.0,2.0,0.0,8.0,2.0,4.0,1.0,0.0,4.015049506135583,2.2524627848839196,1.1369168768606706,0.6113283334294879,0.5668838889850436,0.5668838889850436,96.69649965541788,838.4928479367408,49.40799167917251,18.633174398594242,37.17864980660272,,11.0,423.0,5.601050810983688,4.39041504767482,5.817220841045895,12.170333456209914,36.07675412685558,12.13273413692322,12.13273413692322,32.29444517073921,10.96913104364275,9.998754508538536,11.41904761904762,30.25,15.5,0.5,14.75,0.0,0.024206349206349193,0.75,0.13173358232181748,0.05745474798106365,-0.07427883434075383,0.0,0.12783524810559754,0.0,0.5729100529100531,0.8117063492063491,0.44117647058823567,0.5154553049289895,0.8117063492063491,19.96826023538785,0.3665343948056705,0.6245343948056705,22.1112472747778,5.913119432518265,5.6345597350491605,42.07950751016565,11.547679167567425,0.5861647518944024,0.1476230191826522,0.04378648874061718,0.25396163469557964,0.35,0.41484107035534695,-0.6126755444005897,-0.054712488550561,-0.013615012097790884,-0.03224608128424158,0.585158929644653,0.8642166636823287,0.032313033620023704,0.019204814748496196,0.03323910244932034,-5.8020488772369,0.7825837686329471,0.6092328107951667,1.251762715209965,0.8025876046457762,0.49278247884519644,1.096442922092894,0.7831134983236353,1.0938479263399534,0.6067518880610466,0.5003633189997907,0.6422904118003514,0.9971779244988008,0.8700670947262106,0.9591140696314954,1.541483226766379,1.3912570968165041,0.9736906810917134,0.8070402974581233,0.8600622851085891,0.8325796857667218,0.9423521931060233,0.5126692362392781,1.0146309748830604,0.8120938735077623,1.0223303393213576,0.954120564480111,0.8655063495788448,1.3329445308449974,0.9741579558652725,1.0411771232960672,1.0227090470451554,1.1340908785840411,0.9572363393582539,0.7387997752827832,0.9919064616095871,1.1002085087748006,0.9813894937397935,0.9431018215448829,1.1029536829551598,1.0381026438569207,0.9631657541065203,0.7938003237634705,0.9750845262177606,0.9312353272807227,0.9532988247785905,0.7090698132667009,0.9980323125161116,0.9508914245465473,0.967657707840134,0.5966650557963546,0.9147068003174047,0.8474085862056494,0.7640038431708472,0.8358388556106933,0.962176052021806,1.0574449060035576,0.6401089974223809,0.4534728696470493,0.6058410765965211,1.0790197069711953,0.7933555964993094,0.4620918341947955,0.6376559535563918,1.0303864098576385,0.7240111804571733,0.920333142656919,0.7944644228412379,1.002394051808315,0.48883409719940524,0.5218691325360733,0.4316408557355497,0.9732519670087741,1.0247867097663084,1.2164993486029632,1.2486678246255483,1.1581497130431193,1.231956197112991,1.06951565095685,1.020202763481154,0.9260544445891891,1.1972788875940266,0.9882741748910492,1.2439725711234728,0.9356200748609366,1.3246139300346678,1.4225687751966254,0.9830655543670527,0.9237947122861586,1.287718424982316,1.3908932706994959,1.3351166688117686,1.2650335492810512,1.4158622502829148,1.6104174876950552,1.3379425421297981,1.2851101889730172,6.0,0.06193245587184981,3.555555555555557,1.9791666666666667,1.1255555555555559,0.8894444444444445,0.7289795918367348,0.5703656462585034,0.18896447467876032,0.20375000000000004,4471.983933719764,5067.061902997094,2261.648665012688,2051.376516292343,12.437065793134346,0.4368665751987645,7.003727454566039,0.775778094424002,1.0,0.3684210526315789,1.4768035901940921,3.239390311445755,4.354936219469004,4.880524762900187,4.924969207344631,4.924969207344631,0.23076923076923075,0.008847493695978544,0.09609609609609612,0.05074786324786325,0.030420420420420424,0.02616013071895425,0.022090290661719234,0.019667780905465636,0.009448223733938017,0.01852272727272727,0.5127702575223936,18.781065088757398,8.131482834185537,4.0656,141.83369707130984,1.0,4.108899943983312,113.4938628580204,,93.71414099226585,92.94206369667097,92.94275828393141,93.64380312485714,111.13786156851886,93.40249892331369,93.79561155248352,103.7662681515521,0.05334784975503528,0.020617327747038294,-0.27987744241763335,0.429469574137189,0.31762123635131273,-0.09362638615890127,0.051255430867583815,-0.04456015183158503,0.03197150079096011,0.012116594981113293,0.0020586286987322234,-0.002479418221772878,0.05784870565550164,-0.08263174510075519,-0.1711767888328123,0.015617680676047921,0.0321175193556706,0.15085487858659008,0.061926441492231296,0.15618036093895293,-0.066990978465371,0.03611606436141931,-0.09512750661675423,0.15174952096449998,-0.09745849210669576,-0.07021441077903526,0.11137669929734875,-0.05942198030067392,-0.038234196117471364,-0.06542834717283177,-0.09879949566669528,-0.11358048320588224,-0.07305165423876057,0.003497580935930446,-0.06780210967657785,-0.11037845935310171,-0.012857549364081776,-0.075823816920058,-0.06849714377875142,-0.004842358263820188,-0.02058633874835963,0.046878681867212606,-0.011939535933652197,0.05059407685922498,-0.07239968277577781,-0.032083994920232194,-0.08243490187157951,0.036445177918722295,-0.042928941271790456,0.02373062114595647,-0.07336261941841574,-0.010452457593403016,0.057624411080370856,-0.06957427464263262,-0.042409207815303725,-0.0677015067383311,0.015821799147752662,-0.011604263309142293,0.026597080032982365,-0.07214272062635572,0.16023721787194847,0.24168400759052164,0.15782466528439482,-0.07862782629501142,0.14395317226327672,-0.08741341328479695,0.15815696728593334,-0.025931429207218932,0.24588250199087822,0.1274787263616387,0.23884062330134,0.03255343040277436,-0.01138892769569464,-0.09340823375921173,-0.06862577441882102,-0.24906068071402035,-0.17593726461013928,-0.06612438636594042,-0.006903676918823814,0.03663221828079713,-0.0844937980061108,-0.04284417689379572,-0.10897316964547758,0.02955667891273631,-0.3271531100478472,-0.19399323164762797,-0.09458142184136545,-0.13182450683473848,-0.26943229153021925,-0.18767503548144146,-0.3290308588818277,-0.2871282627527244,-0.2158550107259751,-0.15943900573664394,-0.1562848720163772,-0.32587692018874265,17.370924283666977,19.66315569887243,3.081339135366178,13.829944676378384,30.373880667462494,37.46598006804111,38.484795542041965,38.52959554204197,38.52959554204197,48.7710094134906,41.19263938008574,3.732774685880951,2.0819825376950147,1.7636128098288908,7.578370033404857,4368.252127729844,3039.024589596427,2134.0750067584013,105.0,37.0,50.0,67.0,86.0,102.0,118.0,122.0,112.0,324.1637915120006,26.0,4.844187086458591,5.707110264748875,6.610696044717759,7.508238774678663,8.428799040653642,9.343384145733948,10.273152756513104,11.196885069413392,12.131548432914254,0.6370370370370372,0.9772444444444447,1.1266373463505512,0.6001894618821635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6781324417831006,0.9647058823529409,0.9985757060775272,0.6348105072709591,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,9.636772684650527,11.418271652029583,0.0,0.0,0.0,0.0,4.39041504767482,5.261891554738487,0.0,18.19910120538483,74.4375663660564,0.0,18.239554769002186,235.52244951911314,-347.84127052338073,-31.0625447757055,-7.729806011630684,-18.307435290704255,332.218949174531,490.65157741336003,18.345446903467007,10.903368386963557,18.871214515898462,0.45454545454545453,0.8821471330089256,0.24432375468454828,52.67292051960816,0.08310102072092423,98.35855665199063,0.11785286699107426,6.0,0.19230769230769232,0.26890806514490934,0.5898537806138169,0.7929811928836011,0.8886845072680382,0.8967773028444799,0.8967773028444799,3.812980000000003,,0.8690476190476192,1.0472936930393035,0.9773365503101383,0.9020549089805401,-4.116862568566343,0.9403858336972502,0.8425207864431083,-1.5843033998455907,90.91400000000006,9.127278001474869,5.261891554738487,4.899909730850478,0.0,25.049576021348624,20.640100371266954,70.53559628706515,0.0,6.069221312792274,3.970291913552122,0.0,5.303304908059076,2.3978952727983707,6.846943139585379,4.844187086458591,8.494743062578646,7.065613363597717,10.204073510592933,28.66666666666667,12.280599489795918,0.0,0.0,0.0,0.0,0.0,3.4879575365244575,0.0,43.97600000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.6986805857748,0.0,4.39041504767482,0.0,25.540010102117435,16.944795729296654,17.148333708576654,35.09544921264,42.46456947923127,0.0,0.0,0.0,27.00852578469736,30.515959880239528,30.757331302650034,226.98772571604093,,187.35586134961108,185.796852918922,185.80407185533699,187.21243500729923,223.99108254060718,186.72663236048595,187.5210130394301,208.19266271970662,30.757331302650034,226.98772571604093,,186.5592343654841,184.83683370030283,184.90818001755292,186.38555134073385,226.3925857056042,185.8646120129302,186.748702318524,209.11683970294987,5.003522159214352,151.36341356735943,,126.7238239109225,125.71980557503883,125.62511826062834,126.65583190127177,148.32902310182374,126.3169794052049,126.81903132419522,139.78025850789354,1.2815554709437513,9.457821904835038,,7.8064942229004615,7.741535538288417,7.741836327305708,7.8005181253041345,9.3329617725253,7.780276348353581,7.813375543309587,8.674694279987776,2.553378154177178,113.4938628580204,,93.71414099226585,92.94206369667097,92.94275828393141,93.64380312485714,111.13786156851886,93.40249892331369,93.79561155248352,103.7662681515521,43.41176470588234,0.0,4.09764560025112,0.0,13.367320213056146,0.0,0.0,44.935906773488725,3.209961970899471,0.0,6.267904383975813,0.0,0.0,2.1458368115637234,-0.5624711829176114,9.111023379928954,2.177555130255347,28.56647282719316,500.8314471480756,66.45616155873415,145.77256401505898,195.97212987610519,219.62361433050842,221.62361433050842,221.62361433050842,849.0,126.04400161583223,66.90995154556852,73.12705225722283,36.26,36.26,0.8333333333333334,8.476468848377921,5.700439718141092,3.928146725226433,4.795538668075367,,4.800949438928313,4.8023358321529015,4.805693303885607,4.8011890254081955,4.763936579012109,4.801687360271371,4.800734701219277,4.783581250244423,0.16367278021776804,0.19981411116980696,,0.2000395599553464,0.20009732633970423,0.20023722099523364,0.20004954272534148,0.19849735745883787,0.2000703066779738,0.2000306125508032,0.19931588542685097,2.2436364808212055,2.44315477891574,,2.4442824354846806,2.4445711685994604,2.445270057377134,2.4443323382184983,2.4365430762084057,2.4444361268842285,2.444237706308853,2.4406582188677195,253.27000000000004,282.9230749102691,141.35830497934577,,140.60364570480863,140.46239573022265,140.22691247714428,140.57386133256986,143.9587589278196,140.5329111205068,140.62742559598613,142.32173256337435,11.788461454594547,5.889929374139407,,5.85848523770036,5.8525998220926105,5.842788019881012,5.857244222190411,5.998281621992483,5.85553796335445,5.859476066499422,5.930072190140598,6.5206437779423005,5.826766574485201,,5.821413646015981,5.8204085442558675,5.818730651287097,5.82120179142872,5.844995599576052,5.82091044154771,5.821582758846396,5.833558954354176,19.635224597031957,2.1458368115637234,9.111023379928954,3.17526378915764,-0.2497774355507938,14.458154620051266,1.7773119803476947,1.4326499905517762,4.09764560025112,311.3664221004663,133.71584491373451,-197.48388945031843,-17.635492617942994,-4.3885308766737445,-10.393888918437817,188.61445087688094,278.5632128319039,10.415469684634344,6.190293618486753,10.713969724303995,1298.0,39.0,1.8542803294427672,1.0038763190367526,0.08333333333333333,0.03608439182435161,0.4040960889091567,0.16107241451315218,0.07568735753865524,0.02244479727478387,0.0,0.0,0.0,0.0,0.08333333333333333,0.03608439182435161,0.37626393280641623,0.1370584197268461,0.6677032143021908,0.20185684076844151,17.156489770562878,14.05051896354658,11.547679167567427,8.132551129043144,10.468608387968516,6.513142221613114,8.640032383881797,4.58819043903974,7.143274585512519,3.4087091023536304,5.808352832436895,2.3477761945472553,4.4781209125966095,1.5492445387440257,3.416923358484072,1.0241438897904624,4.1553038503871145,1.8828120128575685,6.933504537041141,2.7985450129770304,10.76713310966685,3.7307266155695857,78.04108055182974,45.4551047594093,27.579271958907636,24.291476523375238,24.136283052427256,24.136283052427256,126.0,150.0,50.96165299999998,26.196346999999996,0.3333333333333333,124.04,7.979166666666667,5.361111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,45.0,0.0,1.0,47.0,12.0,0.0,6.0,40.0,13.0,26.0,34.0,1.0,0.0,0.0,20.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,3.0,0.0,1.0,24.0,4.0,0.0,2.0,1.0,0.0,3.0,5.0,0.0,0.0,1.0,0.0,2.0,3.5553480614894135,7.150971029098001,4.0943445622221,4.66814498514948,5.208119098629888,5.75653304004173,6.0330862217988015,6.430072238392532,6.682108597449809,6.881828311138674 +12947,CCN(CCO)CCCC(C)Nc1ccnc2cc(Cl)ccc12,0,23.959183673469386,5.854563265306122,2.7755102040816326,4.808264046359285,164.84669927142602,96.41694877551019,1.4446069291035513,5.967938775510204,2.805096752921562,7.478400020408162,201.6690988109106,22.86,6.195080000000001,3.4,4.782222222222222,148.09305819352102,85.60796906,1.75331487452,6.350549999999999,2.6643004115226336,7.65304452,245.74420405036008,18.202247191011235,6.041146067415731,3.044943820224719,3.4007490636704123,157.83353873158526,66.4734067977528,1.455629262811101,6.158797752808989,2.3679081703426275,7.579601707865168,195.76864206256963,14.915966386554622,5.901067226890756,2.596638655462185,2.5835667600373484,163.4636455957559,52.76780996638655,1.2890426192249747,6.003547058823529,2.16842168966352,7.506167495798319,166.336465094229,13.34375,5.7288359374999995,2.3515625,1.8828125,161.46515397545318,46.54211708593749,1.2309923333595076,5.83362109375,2.0218139146090537,7.3491144375,153.9020265824483,11.304347826086957,5.654984782608696,2.0942028985507246,1.3438003220611918,163.75473939189752,38.40266300724637,1.126913737951855,5.740058695652174,2.01461949066619,7.305266144927536,136.91891099626065,10.825757575757576,5.618970454545455,2.037878787878788,1.0867003367003367,165.58342442069087,36.58020127272727,1.0722312834299395,5.70373787878788,1.935278713056491,7.298022818181818,128.5063432967843,10.539823008849558,5.665026548672566,2.0530973451327434,1.2153392330383481,165.05568691625527,34.447157017699105,1.0972372548395222,5.753889380530973,1.9460377289777486,7.3266903539823005,130.8824176526069,11.087378640776699,5.638961165048544,2.029126213592233,1.4304207119741101,167.5637508592005,37.78226282524271,1.051922697913699,5.720680582524272,1.9940668824163972,7.318627495145632,125.36211527583502,10.464806330695545,0.08084081632653056,0.012531910220989474,0.49479383590170767,2.8949666034214134,1.4072258450709785,49.43123974760516,0.24452611677955102,0.08780866305705948,0.6552418621489636,0.05210765847563514,52.05932452431745,0.13396917950853784,-0.001751265306122387,-0.0047124345787854325,0.18357351103706793,0.9198078989721362,-0.26100650180532414,0.6554161368846259,-0.007267506513520044,-0.0009901732611411864,-0.05900550569508812,-0.0028533119450229543,-0.48828633006185046,0.16257271080869867,-0.008268562256363174,-0.0009493857286335232,0.014493024910032855,0.11445189556369834,-0.11963155725085933,0.8187361494367951,0.006963718305662899,-0.006820862093977692,-0.018646995167476754,-0.005366392022986708,0.5142039739522459,-0.20567410637724481,-0.006326770708283289,-0.00036736414165146553,-0.008599358110591152,0.11343887517213995,0.17054335661438885,-0.8708639197883246,0.023394180515445367,-0.0068812921086802035,-0.0009582726925395922,-0.0037301834284734457,3.193151023184707,0.17677530195751784,0.004323788265306113,0.0005283631316680574,-0.028116539983340266,0.021072150042934785,-0.046448493488589516,0.741599148919071,-0.014681789362054692,0.005093521254164932,0.02835754998100042,0.003987014834313844,-2.464420424226075,0.3887872806620431,-0.0005350044365572493,-0.00017229101095600748,-0.0024838684364606634,-0.10628730991120255,0.009661720440359914,1.8255326462132342,0.005934116562217399,0.0001832180432066339,-0.034400427359637976,9.947107183603531e-05,-0.028443428253900966,0.6652184064720509,-0.00012657699443416155,0.00021623694724578804,-0.017521108628980354,-0.23100842755847623,-0.02154673256319662,3.1472359413249547,0.011425687256151531,0.002040965885426522,-0.04740404979909952,0.0009121304854038355,2.1727019486119934,-0.8023537390394122,-0.007144049124074419,-0.000787332890113391,-0.009693601117528474,-0.2172051022296557,-0.10511926924611267,-3.8144888079266366,-0.019212377280318573,-0.00785123123477312,-0.06541772057233909,-0.003989435611268145,-4.587727537048133,0.9360258468356633,0.0072772340003962495,0.001245486436614935,0.04314949677116734,0.15649288724288485,0.019723952550784924,4.4345783282815034,0.017059364555660206,0.007915034188829077,0.04836640426501962,0.003832975564388645,3.3730389224551276,,,0.4890269151138717,1.0978260869565217,0.4782608695652174,0.043478260869565216,0.6195652173913043,-0.14130434782608695,0.9376902308623639,0.012158839538596774,0.01963710040816199,0.7056083227718005,0.2057802308045977,0.2783310845425923,1.6432985536341644,0.48411131534719,2.0031385153267105,1.581087321554347,0.2705783767543984,0.07442061042357731,0.07705220659438704,0.4220511937723628,6.8403355128979735,1174.0,286.87359999999995,136.0,235.60493827160494,8077.488264299875,4724.43049,70.78573952607401,292.429,137.44974089315653,366.44160099999993,9881.78584173462,1143.0,309.754,170.0,239.1111111111111,7404.6529096760505,4280.398453,87.665743726,317.5275,133.21502057613168,382.652226,12287.210202518005,1620.0,537.662,271.0,302.6666666666667,14047.184947111089,5916.133204999999,129.55100439018798,548.133,210.74382716049385,674.5845519999999,17423.409143568697,1775.0,702.227,309.0,307.44444444444446,19452.17382589495,6279.369385999999,153.39607168777198,714.4221,258.0421810699589,893.233932,19794.039346213252,1708.0,733.2909999999999,301.0,241.0,20667.539708858007,5957.390986999999,157.56701867001698,746.7035,258.7921810699589,940.686648,19699.45940255338,1560.0,780.3879000000001,289.0,185.44444444444446,22598.154036081858,5299.567494999998,155.514095837356,792.1281,278.0174897119342,1008.126728,18894.80971748397,1429.0,741.7041,269.0,143.44444444444446,21857.012023531195,4828.586568,141.534529412752,752.8934000000002,255.4567901234568,963.3390119999999,16962.83731517553,1191.0,640.148,232.0,137.33333333333334,18651.292621536846,3892.528742999999,123.987809796866,650.1895,219.90226337448559,827.9160099999999,14789.713194744581,1142.0,580.813,209.0,147.33333333333334,17259.06633849765,3891.5730709999993,108.348037885111,589.2301,205.3888888888889,753.8186320000001,12912.297873411007,512.7755102040817,3.9611999999999976,0.6140636008284842,24.244897959183675,141.85336356764927,68.95406640847794,2422.130747632653,11.981779722198,4.302624489795915,32.10685124529922,2.5532752653061217,2550.906901691555,6.698458975426892,-0.08756326530611935,-0.2356217289392716,9.178675551853397,45.99039494860681,-13.050325090266206,32.770806844231295,-0.3633753256760022,-0.049508663057059324,-2.950275284754406,-0.14266559725114772,-24.41431650309252,14.468971261974183,-0.7359020408163225,-0.08449532984838357,1.289879216992924,10.186218705169152,-10.64720859532648,72.86751729987476,0.619770929203998,-0.6070567263640146,-1.6595825699054312,-0.477608890045817,45.76415368174989,-24.475218658892132,-0.7528857142857114,-0.0437163328565244,-1.023323615160347,13.499226145484654,20.294659437112273,-103.63280645481062,2.783907481337999,-0.8188737609329442,-0.11403445041221147,-0.44389182798834004,379.9849717589801,22.627238650562283,0.5534448979591825,0.06763048085351135,-3.598917117867554,2.6972352054956525,-5.945407166539458,94.92469106164108,-1.8792690383430006,0.6519707205331113,3.6297663975680536,0.5103378987921721,-315.4458143009376,53.652644731361946,-0.0738306122449004,-0.023776159511929032,-0.34277384423157153,-14.667648767745952,1.333317420769668,251.9235051774263,0.818908085586001,0.02528408996251548,-4.74725897563004,0.013727007913372873,-3.9251930990383332,87.80882965431071,-0.016708163265309325,0.02854327703644402,-2.312786339025407,-30.49311243771886,-2.844168698341954,415.435144254894,1.508190717812002,0.2694074968763009,-6.2573345734811365,0.12040122407330629,286.7966572167831,-90.66597251145357,-0.8072775510204093,-0.08896861658281319,-1.0953769262807176,-24.544176551951093,-11.878477424810733,-431.03723529570993,-2.1709986326759987,-0.8871891295293625,-7.392202424674317,-0.45080622407330034,-518.413211686439,96.41066222407332,0.7495551020408137,0.1282851029713383,4.444398167430236,16.11876738601714,2.0315671127308472,456.7615678129948,1.7571145492330014,0.815248521449395,4.981739639297021,0.3947964831320304,347.42300901287814,0.7241952074157773,0.6383598481645478,0.46394001054105716,0.36062859483974646,0.302189299700879,0.20328714334109785,0.19335350484585975,0.11359715208861798,0.12710885636010258,0.06258751542748914,0.08189259725088574,0.03338126047586703,0.055148535490267825,0.02003403474729593,0.035826676986923926,0.011540418681167114,17.001102895359807,5.673660509077186,3.5121523058905177,2.1695243678068676,0.38831504685918,-0.38467579336634594,3.24003501448018,0.9871660887188684,5.033919756498146,0.7739965942175797,14.54841217815641,10.936859863932614,35.45051732065892,11.686999819543809,2.207856959106057,0.7880989796414402,3.453660467049901,2.2191085055824544,6.0026954438324776,1.2573864224725224,3.6673887473166067,2.4146845143170403,22.455863680102713,14.708160303471658,0.25802775515238763,0.5861400306680025,0.7981359218234155,0.8952452537971329,0.8952452537971329,0.8952452537971329,1.7031865646280404,620.2382291388919,0.0,1.0,6.0,0.0,7.0,3.0,1.0,0.0,0.0,4.12295857550599,2.2260234843271105,1.0003989797684465,0.4389750000883046,0.4389750000883046,0.4389750000883046,177.84372531161443,1013.3044552262692,48.82625143497974,20.679682759719775,42.975216720960816,,14.0,512.0,0.0,0.0,6.606881964512918,11.064474142889287,49.06622367035436,0.0,0.0,30.462311845459514,29.048151255185264,16.70746728507322,11.247619047619049,25.25,11.0,1.0,14.25,0.0,0.010973084886128326,-3.25,0.1045718927229739,0.033948817622286964,-0.07062307510068694,0.04122567287784662,0.11420314880650051,0.0,0.5418853255587952,0.8153209109730846,0.4373134328358213,0.5079365079365082,0.774095238095238,21.56687530983437,0.2796533093877258,0.4516533093877258,16.228991423751413,4.732945308505747,6.401614944479623,37.79586673358578,11.13456025298537,0.5997968511934995,0.18204911092294662,0.0,0.2578323454699407,0.5,0.3489258214676255,-0.6006960163852542,-0.04742412795622232,-0.012259102375209267,-0.040046401092350276,0.6510741785323745,1.120861917787264,0.03552944055939409,0.02287473301606661,0.032966526993743056,-5.594326830850918,0.7647791132691235,0.968203574674341,1.4429101553238206,0.8711111111111111,0.7186555266635406,1.5006864487894613,0.7713804441920096,1.1075999745654659,0.8956133655490766,1.0252055640963749,0.9061800861970901,1.0911108022915748,0.8109206006223016,1.166959961060489,1.2331817612092981,1.3013278855975485,1.1118489777287748,1.260750801533064,0.8143053566265712,0.9518228819282789,1.0696768887090105,0.8876786916368242,1.0459091735068893,0.9899717614872657,0.9443416943311591,1.1266868455955543,1.2477136712728523,1.1396316102198454,1.034370353282197,0.9506252865486151,0.9437202473912119,0.8567016639391613,1.0887581889073987,0.7567039700011611,1.0331667045230875,0.9056356547044864,0.805542565470031,0.727672485610421,0.8423667155709956,1.0285669191919191,0.8813874738906177,1.0580173341380923,0.8127959674500109,1.0283610139259043,0.7286294115219663,0.5393019146871688,0.60904001759229,1.0411074928351538,0.7295335855116301,0.8987526836400038,0.8688793122877717,0.8751280925193968,0.9076378090421093,0.9390293318545213,0.7356871821487616,0.9109651754830606,0.8586589337004809,1.0466443520231588,0.7994951261904145,0.9711641300179777,0.7751043830005862,0.9185646222907659,0.8386949563320574,0.9674012855831037,0.9855579754232723,0.9178871564691831,0.778739691161257,0.8869771132178128,0.8774433139267892,1.0911612883460486,0.8458889975133599,0.9190830398461939,0.9377389285435035,0.9672209815743686,0.9708424471160917,0.8672566371681415,0.9614537432470207,1.0261553966528991,0.941680194772299,1.0148427892666747,0.9632400379861479,0.8971902257839581,0.8796193943501838,1.0498014834325748,0.8038491826437473,0.833780878404014,0.86895133074443,0.8361282730214767,0.8938230178079749,0.8947344584087903,0.8058504469830111,0.8500119675101352,0.828207082937634,0.7377413028573873,0.7835527228858749,0.8808371307746675,4.5,0.08662381389654117,2.222222222222223,1.375,1.0666666666666669,0.6250000000000001,0.3436734693877551,0.23958333333333331,0.13958175862937766,0.13000000000000003,4096.455242101802,4822.312724642893,2169.8366569821724,1905.0627392550873,12.643350402403069,0.41263557448046845,7.426254245749616,0.7025205418518272,1.0,0.5,1.4917512686092187,3.388686359788098,4.614310864346762,5.175734844026904,5.175734844026904,5.175734844026904,0.1875,0.005413988368533823,0.07168458781362011,0.04296875,0.036781609195402305,0.025,0.015621521335807052,0.013310185185185184,0.008210691684081037,0.008125000000000002,0.4146163335826295,19.32638888888889,10.09573361082206,6.094182825484765,143.0243904946372,1.0,4.030572549840089,125.20047511097016,,104.22611626479463,103.37668328610633,101.86305460901252,104.21437618223199,137.77567971450955,104.36495806558847,105.2863960254803,127.52201087107508,0.012801878532197697,-0.02166313238412527,-0.3760348179715379,0.3710101010101011,0.31772660102021977,-0.1854759154115446,0.013259148268001501,-0.029720778333350625,-0.011276487155917132,-0.09005148953940571,-0.054758015011500204,-0.009379421160829063,0.0155351858095871,-0.10228202326613041,-0.0757574632990439,0.029291037718004113,0.03953478959944943,-0.08501233662662393,0.01656313201160327,0.028478423480388145,-0.07767869201636046,-0.02845818657910706,-0.10298662768537112,0.009877269416203352,-0.01965388559308146,-0.07826208338530782,-0.029314297275779545,-0.017379679144384978,0.03918486487480454,0.12119117710333617,-0.017617683154113408,0.09567150054787829,-0.07836689307305167,-0.0014624717190638487,-0.07158608806453337,0.06133677400468677,0.016892362493035117,0.05348521281429862,0.042161420114797135,-0.05682475799663298,0.0072788922739318255,-0.03300713503186599,0.015002641097121175,-0.06004180475859291,0.05800704710485206,0.04327798881469141,0.07651494906795937,-0.047338693821793995,0.037151884934711665,-0.006617998937520255,-0.013748184268623335,-0.005020006831601054,-0.03671452022471934,0.00686579234896911,0.036930747752521774,0.02426782316903685,0.0020865599910976423,-0.05250035040010514,0.0019089530166193649,-0.0005463656801888535,0.06356719708427103,-0.0015657560151655862,0.01725490714764431,-0.03541092745638201,-0.07979657771715194,-0.015311495762153115,0.06366896637419318,0.046725836105483136,0.023243331743933622,-0.07234588102114058,0.01750472986289215,0.0417351160135991,-0.07667162809176266,-0.08837180831052377,-0.0628262472543652,-0.019591192157563858,-0.07502853468946828,-0.07469964370986279,-0.07716757312588828,-0.07856983758360345,-0.08941294584648514,-0.09983751703194282,-0.07656140628797498,-0.08812499161231256,0.08944511893068643,0.09001930375124115,0.0993852026268822,0.08720702167304106,0.054056888621075584,0.014016195495464394,0.08971205963929621,0.06976500007579897,0.09013955927885794,0.07381458215504542,0.07355877574466131,0.06479221452209866,12.036832995029563,14.146387594450145,4.130851920890754,16.215160181508192,32.48084384913026,37.47860043516018,38.044515806677765,38.044515806677765,38.044515806677765,46.07218585251434,36.36500839574998,6.223302665351163,1.7116740397422783,1.7722007516709017,9.707177456764343,5843.326596896457,4706.479479452597,1736.044686179238,48.0,31.0,38.0,47.0,56.0,56.0,55.0,59.0,56.0,335.1764401320007,24.0,4.709530201312334,5.517452896464707,6.361302477572996,7.192182058713246,8.045908742270779,8.88723835429314,9.747126097411705,10.59500841135149,11.459556333312023,0.6122448979591837,0.9611428571428571,1.1353467365117142,0.5706945504036266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.655977245508982,0.9509403761504605,0.9923971045082273,0.5943532070267554,5.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,6.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15.323225729697516,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,18.524677089923138,57.12036153121423,34.8796846095633,12.123582682129179,205.37681736895848,-353.56808943663066,-27.913716517683635,-7.215675294625115,-23.571205962442043,383.2205426805729,659.7363657896385,20.912534917296107,13.464007465094662,19.404010758518776,0.5,0.8627105827331473,0.2294692292804339,137.1011056086939,0.1220425679074088,204.6954741193715,0.1372894172668527,7.0,0.375,0.2656862616280567,0.6035372181057207,0.8218253467154732,0.9218169750039006,0.9218169750039006,0.9218169750039006,3.783000000000002,,1.3256302521008405,0.959325316894866,0.9805438548466842,1.3379508818231125,-2.402894764756166,0.93531153649505,0.879067952217064,-1.2736797330507026,98.27150000000005,5.106527394840706,0.0,9.883888251797686,0.0,32.730958474381225,31.557939786256973,35.48494515920084,0.0,0.0,3.8918202981106265,0.0,5.153291594497779,0.0,6.61338421837956,0.0,8.174421152646497,0.0,9.79305865876674,30.0,9.625590939859588,4.372101669154929,0.0,0.0,0.0,2.0083510643697338,1.8061215928493448,0.0,47.096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.631990089074,5.316788604006331,5.687386274683562,0.0,47.273407658036994,0.0,0.0,26.689117645233267,30.462311845459514,5.022633313741326,10.902924932081056,0.0,27.964032969777705,32.14288502994012,28.847998796726387,250.40095022194038,,208.3369603337544,206.6699469794392,203.66233990155536,208.31240880952282,276.1782015415642,208.64858469322087,210.49635135946346,255.37628602033732,28.847998796726383,250.40095022194032,,207.18024014189984,205.87301079995086,202.852325412769,207.14424874745163,277.95425419377534,207.85851039720188,209.7459812860546,256.317701475201,4.795225429858979,192.16717588257274,,163.6721368016749,161.65325251597258,159.1476623184338,163.67066564643116,216.25728208685518,163.30890215629125,164.79398266645055,200.0101720297884,1.2542608172489733,10.886997835736539,,9.058128710163235,8.98564986867127,8.854884343545885,9.057061252587948,12.007747893111487,9.071677595357428,9.152015276498412,11.103316783492927,2.3976127149294904,125.20047511097016,,104.22611626479463,103.37668328610633,101.86305460901252,104.21437618223199,137.77567971450955,104.36495806558847,105.2863960254803,127.52201087107508,46.59607843137256,0.0,4.329448677388076,6.031460883001679,0.0,0.0,9.021901772623966,48.627458120903135,5.185869481596509,3.577099316578483,0.0,0.0,0.37880621693121685,2.274359496757585,0.0,0.0,0.0,29.123307144311017,507.7891714835233,73.09581216185171,166.0456316296168,226.10123235299133,253.61100735731827,253.61100735731827,253.61100735731827,493.0,119.51530557270243,80.80818856600806,56.625975922401196,48.39,48.39,1.0,8.191594513426404,5.584962500721156,3.653805984039505,4.72346281402425,,4.724265993716422,4.721309237551456,4.719954033477403,4.724321350228887,4.711725539527652,4.721738575055159,4.721878301852115,4.716909039841307,0.15886112974084804,0.20536794843583697,,0.20540286929201834,0.20527431467615023,0.20521539275988707,0.20540527609690815,0.20485763215337618,0.20529298152413736,0.20529905660226588,0.20508300173223076,2.1286784826119107,2.3854513005841684,,2.385621326568286,2.384995264906789,2.384708183815105,2.385633043983906,2.382963320458854,2.385086196883947,2.3851157886809857,2.3840628435747915,269.31000000000006,862.2861078155695,123.6217849940856,,123.39446318801643,123.80338715057341,123.91690477852889,123.38471291060668,124.10783107369558,123.74006816332665,123.71544889458565,123.89879268150841,37.49070033980737,5.374860217134157,,5.364976660348541,5.382755963068409,5.387691512109952,5.364552735243769,5.395992655378069,5.380002963622898,5.3789325606341585,5.3869040296308,7.592496250147311,5.65013590642524,,5.648295364583033,5.6516038426705615,5.652520341153729,5.648216344322337,5.654059916085425,5.65109226389707,5.650893284548257,5.652374167224972,0.0,6.6464611659125135,14.402662239656287,2.010811506765241,0.0,8.191121800543316,4.003935507139121,7.324658008092952,0.0,317.180557117537,120.88425251874371,-208.10924404015742,-16.42993985147959,-4.247127429390967,-13.873949602677161,225.56259973853398,388.3190832324532,12.309062844264133,7.924879249641901,11.421149506836857,1390.0,32.0,1.250890511242845,0.7601075544791609,0.0,0.0,0.13608276348795434,0.03946723314583158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.04269016102873266,0.29977518153977173,0.08089717801226051,16.656489770562878,14.6822765077846,11.134560252985372,8.655086276153915,9.367868290727248,6.3019014435740335,7.3474331841426705,4.316691779367483,5.974116248924822,2.9416132250919897,4.585985446049602,1.8693505866485538,3.088317987454998,1.121905945848572,1.970467234280816,0.6347230274641913,2.57181082819941,1.325249350595955,4.030318421015375,1.6781673569447868,5.737903506958071,1.9060949810470735,77.97857485819016,38.105641329987535,25.293786091484122,22.303499656867782,22.303499656867782,22.303499656867782,110.0,124.0,53.67861799999997,30.013381999999993,0.20408163265306123,70.05,7.916666666666666,5.388888888888888,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,11.0,49.0,0.0,1.0,50.0,11.0,0.0,5.0,45.0,11.0,24.0,39.0,0.0,0.0,0.0,18.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,4.0,2.0,1.0,23.0,5.0,0.0,3.0,1.0,0.0,2.0,9.0,0.0,0.0,1.0,1.0,2.0,3.417726683613366,6.360327126208902,3.9415818076696905,4.48863636973214,5.073610093257644,5.645446897643238,5.899040822480875,6.182794881897324,6.526563488255319,6.77103129545845 +2247,COc1ccc(CCN2CCC(Nc3nc4ccccc4n3Cc3ccc(F)cc3)CC2)cc1,0,21.23076923076923,6.0276861538461555,3.246153846153846,6.676923076923077,163.33314892544956,84.1936137407657,1.5025485084664463,6.103852307692309,3.376495726495726,7.531770646153844,218.28862772112782,24.014492753623188,6.268173913043478,3.9130434782608696,6.449275362318841,146.38597591323625,90.99758391065507,1.823785095652174,6.416862318840579,2.8554750402576494,7.667821971014492,263.86053402599225,19.80327868852459,6.213612295081967,3.557377049180328,4.926229508196721,155.25037946390856,73.17765668582295,1.559445660545,6.321723770491803,2.7044626593806917,7.672295803278688,219.37034457035813,15.754601226993865,6.035006134969325,3.0122699386503067,3.3865030674846626,159.6074177788115,56.10311562896686,1.3563602882845152,6.126328220858895,2.4674505794137693,7.553269521472393,182.36684913906444,12.966666666666667,5.886405000000001,2.688888888888889,2.688888888888889,162.90656858807145,44.53495608714666,1.2207891613236777,5.964442222222222,2.2021604938271606,7.449770844444444,156.92729369405447,13.056818181818182,5.7692784090909095,2.721590909090909,2.6704545454545454,164.1643088005909,46.168767328609086,1.205743970719858,5.84687215909091,2.05239898989899,7.354160795454547,156.3435048798915,14.766871165644172,5.961771779141104,2.9447852760736195,2.9877300613496933,160.500603217417,52.03828261026747,1.3571572163176195,6.0500822085889565,2.3370824812542605,7.4959373006134955,179.27989852887256,13.595375722543352,5.7876820809248555,2.7109826589595376,2.6820809248554913,156.62050241504954,47.21647702121618,1.3369302012570519,5.891448554913295,2.2010276172125884,7.346464947976878,171.61503701473012,11.890710382513662,5.716,2.4043715846994536,2.3551912568306013,162.04774483370576,41.006534207186874,1.1664944017057268,5.797196174863388,2.2481785063752278,7.30828430601093,146.06404655516246,7.13940828402367,0.11306215384615378,0.01355361084135129,0.5363313609467456,3.6009467455621302,1.8409082110900683,34.419198744107476,0.2346869558714428,0.10662807100591708,0.9380933596318212,0.06037919053254436,51.49317177519043,0.5129885944601662,0.0027074782608695796,-0.006227551023843593,0.15753708944344405,1.010201526455707,-0.2978430649845698,2.395504942469907,-0.012857728348115738,0.004435050510247891,0.001997065241212413,-0.00025128685361460606,-0.03633095175136811,-0.1053603647298476,-0.0008653442622950695,0.0011619240214442042,-0.04755456397322723,-0.06261131050538364,0.030744571951663267,-0.4692900111971601,-0.0006666534044506585,-0.0011423837423609883,0.05293228139381986,-0.0008766553496944331,-0.5036326675486859,-0.6914611391440086,-0.011930601226993852,-0.0011108806771201413,-0.05459469270700982,-0.3699887465059716,-0.1965645015370117,-3.323258374351568,-0.021240318711173562,-0.011086749627908638,-0.01347220709655821,-0.006271330598613273,-4.718389229299401,-0.7412886259040106,-0.009168333333333327,0.0001266414089814839,0.012130177514792902,-0.11051939513477972,-0.11159233410746942,-3.5695071256305777,-0.019098235045577453,-0.009213746219592369,-0.05128186865366353,-0.004332537541091386,-4.824811458864862,1.0418854222700378,0.002840590909090897,-0.0002201538059290769,0.006588219472834858,0.14608122646584185,0.05378959003244777,5.062112980464286,0.029523176791171144,0.005083895777299583,0.045740167951706406,4.683149542764302e-05,7.921236287545515,-0.7349722292808654,-0.00653526380368097,5.191560388668722e-05,-0.07158383853051148,-0.5858452826079065,0.3401002180871511,-3.492967038468965,0.010445093296991318,-0.008306164446219167,-0.05762039020179654,-0.0017586283805859043,-0.9195663638339249,-0.8034367411157095,0.0012933641618497055,-0.000322482238259566,-0.050515442760885175,-0.15230290385470469,-0.2470380880458473,-3.868910739645876,-0.03727925670164871,-0.0003532999965796855,-0.02412418814819882,0.0017109949721243573,-8.200501760063203,0.38207132925922344,0.01921940983606555,0.0009922005501589207,-0.004174992724803586,0.2750515730591393,-0.15134063680754165,1.8288942193439954,-0.022423162481995756,0.01764300927991718,0.11858311507744043,0.009660222330002901,-2.6561437169118642,,,0.47703081232493005,1.286764705882353,0.6323529411764706,0.04411764705882353,0.6544117647058824,-0.022058823529411766,0.8843550893134021,0.007060171509649164,0.019707230333178574,0.952592863498042,0.2530761455728669,0.23734055239904558,1.836947952811444,0.49041669797191245,2.079699666561801,1.7155520121888004,0.2567236008248377,0.05561300590190982,0.05181104764625327,0.3641476543730008,7.049972151261552,1380.0,391.7996000000001,211.0,434.0,10616.65468015422,5472.58489314977,97.66565305031901,396.75040000000007,219.4722222222222,489.5650919999999,14188.760801873308,1657.0,432.50399999999996,270.0,445.0,10100.632338013302,6278.833289835199,125.8411716,442.76349999999996,197.0277777777778,529.079716,18206.376847793465,2416.0,758.0607,434.0,601.0,18940.546294596843,8927.674115670401,190.25237058649,771.2503,329.9444444444444,936.020088,26763.18203758369,2568.0,983.7059999999999,491.0,552.0,26016.009097946277,9144.807847521599,221.08672699037598,998.5914999999999,402.1944444444444,1231.182932,29725.796409667502,2334.0,1059.5529000000001,484.0,484.0,29323.182345852863,8016.292095686399,219.742049038262,1073.5996,396.3888888888889,1340.958752,28246.912864929804,2298.0,1015.393,479.0,470.0,28892.918348903997,8125.703049835199,212.210938846695,1029.0495,361.2222222222223,1294.3323000000003,27516.456858860904,2407.0,971.7687999999999,480.0,487.0,26161.59832443897,8482.240065473597,221.216626259772,986.1633999999999,380.94444444444446,1221.8377799999998,29222.62346020623,2352.0,1001.269,469.0,464.0,27095.34691780357,8168.450524670398,231.28892481747,1019.2206000000001,380.7777777777778,1270.938436,29689.401403548312,2176.0,1046.028,440.0,431.0,29654.737304568152,7504.195759915198,213.468475512148,1060.8869,411.4166666666667,1337.416028,26729.72051959473,464.06153846153853,7.349039999999996,0.8809847046878339,34.861538461538466,234.06153846153848,119.65903372085444,2237.247918366986,15.254652131643782,6.93082461538461,60.976068376068376,3.9246473846153833,3347.0561653873783,35.39621301775147,0.18681600000000098,-0.42970102064520793,10.870059171597639,69.70390532544378,-20.551171483935317,165.2898410304236,-0.8871832560199859,0.3060184852071045,0.1377975016436565,-0.017338792899407818,-2.5068356708443993,-12.853964497041407,-0.10557199999999849,0.14175473061619293,-5.801656804733722,-7.6385798816568045,3.7508377781029187,-57.25338136605353,-0.08133171534298034,-0.13937081656804057,6.457738330046023,-0.10695195266272084,-61.44318544093968,-112.7081656804734,-1.9446879999999978,-0.18107355037058304,-8.8989349112426,-60.308165680473365,-32.04001375053291,-541.6911150193056,-3.4621719499212906,-1.8071401893491081,-2.195969756738988,-1.0222268875739635,-769.0974443758024,-133.4319526627219,-1.650299999999999,0.0227954536166671,2.183431952662722,-19.89349112426035,-20.086620139344497,-642.511282613504,-3.4376823082039416,-1.6584743195266265,-9.230736357659435,-0.7798567573964494,-868.4660625956751,183.37183431952664,0.49994399999999783,-0.038747069843517536,1.159526627218935,25.710295857988164,9.466967845710808,890.9318845617144,5.196079115246121,0.8947656568047266,8.050269559500327,0.008242343195265171,1394.1375866080107,-119.80047337278106,-1.0652479999999982,0.008462243433530017,-11.66816568047337,-95.49278106508876,55.436335548205626,-569.3536272704413,1.7025502074095848,-1.353904804733724,-9.392123602892836,-0.2866564260355024,-149.88931730492976,-138.99455621301774,0.22375199999999906,-0.05578942721890492,-8.739171597633135,-26.34840236686391,-42.73758923193158,-669.3215579587365,-6.449311409385226,-0.06112089940828559,-4.173484549638395,0.2960021301775138,-1418.686804490934,69.91905325443788,3.517151999999996,0.18157270067908252,-0.7640236686390561,50.33443786982249,-27.695336535780122,334.68764213995115,-4.103438734205223,3.2286706982248443,21.7007100591716,1.7678206863905308,-486.07430019487117,0.6861721140588323,0.5759751328748216,0.43879388765907956,0.31560673955942703,0.28316213985792704,0.17298197123551917,0.18527924891544909,0.09860377854051366,0.11565567113774768,0.053193530188848655,0.07607692862189276,0.030114192970806877,0.04933118604223868,0.016817488597700204,0.03118800853551976,0.009287179118587664,9.004070478812224,5.693610541927484,4.107723208691256,2.191074581914846,0.3970850522981604,-0.5293784550604905,3.269236932216529,0.9878588700514146,7.004060290135,0.9975666274447572,17.42477360276975,10.95401054243204,19.000142850465238,11.704910650076865,1.9999967811072983,0.5458572758910324,3.988675976152656,2.240051046858331,8.00191975048531,1.2360170945798181,4.009954519113092,2.4354045116766696,20.90262597327159,13.30411940749028,0.23250487582952042,0.5408262832293714,0.7472187236945481,0.8656563772274065,0.8802996042042309,0.8802996042042309,1.0668081352070078,1211.6336629910122,0.0,0.0,4.0,0.0,16.0,4.0,2.0,0.0,0.0,4.556708052917015,2.6131175006989658,1.312064807925296,0.5654598077255928,0.4731521154178999,0.4731521154178999,263.052803867742,1937.8950836043948,58.811575210527366,29.813770516990694,58.70951996888368,,20.0,1146.0,0.0,4.39041504767482,5.817220841045895,12.586597235060536,67.19143812771567,17.696185628620217,7.109797541277533,42.46456947923127,32.982899188032995,9.720841474747257,16.219047619047622,43.75,21.5,1.5,22.25,0.0,0.022969187675069946,-0.75,0.11810303172005315,0.056989275784456894,-0.06111375593559626,0.014353741496598627,0.1194808867167041,0.0,0.562783882783882,0.802380952380952,0.4446808510638289,0.5057946069994251,0.7880272108843533,30.068073036655672,0.24004583132807156,0.6700458313280715,32.38815735893343,8.604588949477474,8.06957878156755,62.456230395589095,16.674167731045024,0.5945191132832959,0.048443922489724005,0.0,0.29594832648267755,0.32142857142857145,0.32976119485101496,-0.8271331593384864,-0.03628686375017968,-0.012725125528284408,-0.03596231127558636,0.670238805148985,1.6811460810742083,0.0398348285151018,0.025863785862680132,0.04002728764462401,-7.336459964389092,0.8124859463916098,0.710945268686972,1.5291943868438158,0.7848855801578468,0.5765856390852818,1.2447149778975752,0.8128882700951704,1.1058640665908026,0.6966199539836071,0.5676839750066935,0.7447388381414478,1.0009845870057863,0.964823989513066,0.9483509209990714,1.2338857544650428,1.3091603605689233,1.0410601107263155,1.0182823943450972,0.9584868244762338,0.9849935242643458,0.9430221761732908,0.602941913139709,0.9747250365904311,0.9704412513942515,1.0669200599097122,1.0636003774358842,1.223928003040913,1.1600669269380925,1.0794707167518454,1.1201520632816129,1.0644301310905249,1.059419918771997,1.0588352229695863,0.8464885207742949,1.048443550723488,1.0571563508074344,1.0784010372924309,0.9336584551633046,1.0512910098191675,0.9230165735020103,0.9608109489797408,0.9867120908225205,1.0753672576204558,1.0289660390968587,0.9531807909587798,0.7310700569089736,0.8805056792254388,1.061707470817455,0.8188569155284444,0.656135173623172,0.956738417546183,1.084811040680414,0.8948695579430429,0.8148388201422949,0.8142207091479814,0.8155921832673848,0.6699635696584889,0.37322143528866075,0.5996571611290237,0.827039670797856,1.0631126528759345,0.9105183238657137,1.00213652006728,1.1994866768825907,1.1222469456207995,0.7851673236271343,1.0593483533054366,0.9247210082967812,0.9401684060543409,0.7727952781839074,0.8485621292142311,0.9922328901456906,1.0327512105307939,0.6021910360483401,0.7385558430041896,0.9921993377855098,0.8479564380540892,1.0199458074937424,1.0328736851761657,1.1750425025421132,0.6539778499495749,0.5546255009047845,0.5432660838236937,1.1791221244571162,0.9073603463180876,0.573969469504035,0.5688954702556719,0.8777895137914236,0.784437112495609,0.9716633181035879,0.909523147124029,1.0872816941464563,0.6088104524502093,0.6302650834669543,0.5307798524088267,1.0630313281536725,6.5,0.1760065299459239,3.1111111111111125,1.5138888888888888,1.688888888888889,1.0250000000000001,0.5095238095238095,0.4861111111111111,0.34520660115898205,0.22375000000000006,6501.734916873234,7410.019487151827,3307.263437524,2993.337459604236,19.861559467685638,0.4958607495506832,10.012991702793569,0.9835789399630056,0.0,0.32142857142857145,1.4656597601114387,3.4092503123294886,4.7103030051031585,5.456908005302862,5.549215697610554,5.549215697610554,0.17105263157894732,0.006518760368367552,0.05982905982905985,0.029684095860566445,0.039276485788113706,0.022282608695652174,0.010615079365079366,0.010802469135802469,0.008851451311768772,0.007217741935483871,0.36613038386884156,25.641274238227147,12.497041420118343,6.865051903114187,199.7334603142011,0.0,4.464529363067578,250.61714458531716,,203.3895388893949,198.98746764086326,196.2561138424194,203.3466963394749,281.31765717937463,201.5514394363477,203.69026883434458,253.64782442132383,0.07185309679068433,0.02394681304721743,-0.4594754192619794,0.29373089271780717,0.2805377579384357,-0.1617913718838845,0.06959792876875188,-0.054786719186723634,0.04159364854309123,0.0021288555352275518,-0.004161812230310749,-0.0007055489203497164,-0.014757576613963864,-0.00765370402789746,0.08572800525593081,-0.08866638693154678,-0.01738745805739752,0.01670076311597214,-0.013634542009130933,-0.0028406069778153286,-0.010713724177731719,0.05642538756973453,-0.014519163671495664,-0.009780571873635052,-0.09685132319597653,-0.10552250086468447,-0.08196197235727826,-0.10179284055036031,-0.10274763073404297,-0.10677582964368372,-0.096552461870441,-0.09050489675620753,-0.1039758998105987,-0.014361264748580805,-0.1038657614204521,-0.09163135745257656,-0.10383054118964476,-0.0810910903555657,0.00934373949966958,0.022616946160635483,-0.030691760512977805,-0.06061808700467014,-0.10370686291009817,-0.08137748847038229,-0.08641013696178629,-0.054666060821270936,-0.07175547573391448,-0.09369808253274992,0.1459344221287266,0.025124153507248347,-0.016243184824032298,0.012283860226269757,0.040567449836872736,0.02921905052539095,0.1470723655741961,0.1257981155430871,0.04767877472919362,0.0487586523047752,0.0007756231081369146,0.1538308092989135,-0.10294581848268318,-0.057802399665706446,0.0038303891482774233,-0.1334694253271893,-0.16269201518459345,0.18474588577437298,-0.10148310146432321,0.044506492737129144,-0.07789847802609347,-0.061422873971105754,-0.029126398765448907,-0.017858025290199246,-0.11253548041419813,0.01143940848331631,-0.02379308673048891,-0.09418700161727266,-0.042295239173532756,-0.134193593443514,-0.11240560154841572,-0.1588467350612771,-0.0033133863648352026,-0.02571619114505509,0.02833749437568448,-0.15925415889829161,0.05351582569023401,0.16998977272463633,0.07320562481636064,-0.007784353160765732,0.07638312713125171,-0.08220976792641246,0.05313587433981448,-0.0955449884239785,0.1654630822209859,0.12640864990663767,0.15999257765464817,-0.05158244530960515,28.959238276603365,29.050106744167532,4.942435605959568,13.509643209724366,31.090120915216644,39.47303027463287,41.2412696532957,41.33431580714186,41.33431580714186,70.70978866310124,58.328768414419216,8.728602428044482,1.890842200664934,1.7615756199726111,12.381020248682027,15694.124282135905,14228.197011285662,2132.1289134899725,208.0,52.0,68.0,88.0,116.0,121.0,141.0,169.0,186.0,458.2481898320009,38.0,5.198497031265826,6.042632833682381,6.90875477931522,7.771067086065406,8.643825842349603,9.51569044208137,10.393630762106916,11.271859767147028,12.15416337199273,0.6256410256410257,0.9728,1.1285631589266307,0.5873864383289675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.674247655458314,0.9603619909502265,0.9954059050927222,0.6275621381264778,12.0,1.0,0.0,0.0,0.0,2.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,7.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,19.520660936448213,11.5667326743298,0.0,5.948339280986494,0.0,0.0,9.374393568622029,0.0,0.0,36.39820241076966,66.78757026294168,25.676110046885686,24.687955382422633,254.7733075206368,-639.0425982652928,-28.035209847419438,-9.831424588696812,-27.78446079414316,517.8261113883788,1298.852485339102,30.77636536310793,19.98234592829388,30.925059174740525,0.5,0.89571005000927,0.19805140145211306,86.35688345121775,0.08129941296744014,71.1903423072736,0.10428994999073005,10.0,0.21052631578947367,0.2433693533199205,0.5660979897232624,0.7821347269612381,0.9061067298974486,0.921434204932766,0.921434204932766,5.351300000000005,,1.154761904761905,1.4186291979252967,1.427835721225434,1.1870552659449152,-5.153226204929979,1.2627542547498818,1.1230467726672786,-2.222952656332448,135.01769999999996,9.127278001474869,0.0,14.450987899589041,0.0,31.849062103838566,32.06085536302159,89.74052864597923,0.0,5.749511833283905,4.343805421853684,0.0,5.652489180268651,2.3978952727983707,7.152268856032539,4.844187086458591,8.733110697638708,7.034387929915503,10.355740822143051,40.66666666666667,23.28027473600102,4.883551046296946,0.0,0.0,0.0,2.065084990685953,3.982544071977573,2.2069667963887287,63.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.35660533023099,10.05365155780638,10.338754328661313,5.749511833283905,47.23689548775226,12.965578028838586,5.817220841045895,23.96854622924601,72.79640482153933,0.0,11.033401435232523,0.0,38.18011849138289,43.82609760479041,45.5638793155037,501.2342891706344,,406.71115060792147,397.891486505378,392.42823734829614,406.6235658986001,564.7572310313674,403.0285992106513,407.3144760938264,508.21098228937274,45.5638793155037,501.23428917063427,,405.6542742975534,396.608361183674,391.1629679319539,405.53613919810664,567.7885405636791,401.8787305509055,406.2863211315014,509.51860149898016,4.79719531341625,381.42943608910633,,316.56925182657005,309.4544563146038,304.43812502962936,316.55095035773303,438.0242853401862,313.57871747848225,317.03303515431213,396.8049156538714,1.3401140975148147,14.742184975606893,,11.962092664938867,11.702690779569942,11.54200698083224,11.959516644076473,16.610506795040216,11.853782329725037,11.979837532171365,14.947381832040374,2.4743595095187993,250.61714458531716,,203.3895388893949,198.98746764086326,196.2561138424194,203.3466963394749,281.31765717937463,201.5514394363477,203.69026883434458,253.64782442132383,62.42352941176472,0.0,1.6994432116751188,0.0,13.380036970082898,0.0,0.0,64.70138383102694,7.101460212787886,3.7147591809760887,5.250509470673966,0.0,0.3898300794657217,2.5455392329881033,0.0,0.0,0.0,40.791538978221055,692.0250641481272,95.26788440724351,221.60127030141675,306.1696953317053,354.699020344686,360.69902034468606,360.69902034468606,1221.0,149.90012191600644,80.57435476088833,84.51388526710912,42.32,42.32,1.0,8.94567674725488,6.247927513443585,4.128370261009525,5.729883345150965,,5.738925141046266,5.73783737198034,5.733211797021549,5.7391106970470815,5.728537446146235,5.738344184364088,5.738914094213904,5.741352666633811,0.12142265473557427,0.16852598073973427,,0.16879191591312548,0.1687599227053041,0.16862387638298673,0.1687973734425612,0.16848639547488925,0.16877482895188495,0.1687915910062913,0.16886331372452387,2.641658150791018,2.9694706035291274,,2.971047366761242,2.9708578064966726,2.9700513283548124,2.971079699122536,2.9692356847675576,2.9709461307152445,2.9710454418636827,2.9714702703990095,355.6300000000015,2149.7370430534993,237.0025050218494,,235.69050729081576,235.83694603555753,236.39384782648384,235.66052932864986,236.56720247604676,235.76541145396905,235.6944282938488,235.21829292381926,63.227560089808804,6.970661912407335,,6.932073743847522,6.936380765751692,6.952760230190701,6.931192039077937,6.957858896354317,6.934276807469678,6.932189067466141,6.9181850859946845,8.896876239707378,6.691846142413833,,6.686294966212709,6.686916091232755,6.68927469239276,6.68616776605878,6.690007753422692,6.686612723020103,6.686311602310884,6.684289420658835,20.837513237145593,7.429090279285049,3.7147591809760887,4.464634432665475,1.58299462999805,23.67010481546674,3.2225069379009534,3.878953274886933,1.6994432116751188,419.94198929579727,196.83770934397188,-493.72394007787267,-21.65998683710857,-7.595752924274964,-21.46625826425533,400.07215275457656,1003.4926754215209,23.777801995668742,15.438348852638784,23.89268274813145,4090.0,51.0,1.9147947210637122,0.9273455576579797,0.0,0.0,0.1916383190435099,0.05716610942571228,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.025,0.5555555555555556,0.20692823875926863,0.8634189567963888,0.24862728007035179,23.329851878000298,19.583154517743935,16.674167731045024,11.993056103258226,14.724431272612208,8.995062504246997,12.598988926250538,6.705056940754929,10.177699060121796,4.681030656618682,8.82492372013956,3.493246384613598,5.96907351111088,2.0349161203217245,4.397509203508286,1.3094922557208606,4.324081693028228,1.8700613567131816,6.444780191704612,2.389567994124836,9.730740769262802,3.055960910107094,112.22798309301704,63.69271306080727,33.15934738648596,26.410297838958932,26.03900234852554,26.03900234852554,180.0,210.0,73.18958299999998,39.078417000000016,0.47692307692307695,322.06,8.61111111111111,7.500000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,21.0,22.0,65.0,0.0,1.0,69.0,22.0,0.0,10.0,59.0,22.0,38.0,47.0,0.0,0.0,0.0,28.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,5.0,1.0,2.0,34.0,6.0,0.0,4.0,1.0,0.0,5.0,8.0,0.0,0.0,1.0,1.0,4.0,3.912023005428146,7.699031815142429,4.502583597212991,5.072827314352703,5.64831380885817,6.1886490592520955,6.381578044930458,6.764236679824547,7.184833476989528,7.375331648408465 +23727689,CNC(=O)[C@@H](c1ccccc1)N1CCc2cc(OC)c(OC)cc2[C@@H]1CCc1ccc(C(F)(F)F)cc1,0,23.647058823529413,6.4311735294117645,3.3088235294117645,8.470588235294118,166.16146179278266,94.9745818595487,1.4697273389752794,6.472319117647058,5.868974673202613,7.873614235294119,219.3017488598865,24.943661971830984,6.38561971830986,4.014084507042254,7.267605633802817,146.31452554884933,95.19778528881127,1.8043995999999998,6.529894366197183,3.170970266040689,7.779954647887322,266.25635066201414,21.752,6.502984,3.632,6.584,157.76369907830434,82.4426914076393,1.535848478392296,6.5852744,4.345333333333335,7.924450271999999,222.90248765056023,19.13664596273292,6.194098757763975,3.4285714285714284,4.881987577639752,154.8679152631331,70.81346647833044,1.4806578883610617,6.297765838509317,3.0545203588681846,7.6785366459627316,208.42293766326534,16.907692307692308,6.19596923076923,3.046153846153846,3.7333333333333334,158.38913603826964,60.823396418281014,1.354792127987318,6.284938461538461,3.036894586894587,7.702337435897435,187.21500720933,15.098214285714286,6.121535714285714,2.8080357142857144,3.21875,161.53174811220677,53.33307312079999,1.2726490329411118,6.195509375000001,2.7663070436507935,7.672630464285715,172.6886740222824,14.586206896551724,5.965715517241379,2.728448275862069,2.935344827586207,158.1203177669718,51.281524347006886,1.3065813011069352,6.055670689655171,2.556932471264368,7.527923793103448,173.52387483662125,13.003937007874017,5.89886220472441,2.5078740157480315,2.732283464566929,161.7839008830385,45.04222521283149,1.216796925561567,5.976354330708661,2.507983377077866,7.486690566929132,158.73973463135522,13.138075313807532,5.866112970711298,2.4602510460251046,3.1715481171548117,162.19675916997005,46.11408370317656,1.1852542981578749,5.941532217573221,2.5882147838214786,7.458613054393305,154.80437237771957,7.881487889273355,0.20761608996539782,0.01939273416863715,0.6442474048442907,4.587370242214534,2.362425631982567,38.15553012952154,0.24096868436414423,0.1862377811418684,2.5033685962129963,0.12099293425605531,49.963180654397306,0.33226521760319694,-0.002088128076416914,-0.008441044680084225,0.24121241288561826,1.2423729226570492,-0.1780671569165447,1.5416488783504492,-0.010384693345345473,-8.388718992142499e-05,-0.15999401046320216,-0.002858543203859838,0.0974238053591088,0.6705121107266436,0.05183894532871977,-0.003016484631631503,0.028340830449827003,0.6142768166089966,0.6758012100333245,3.568923074667966,0.0348103324013325,0.04328698356401396,0.9132874495386393,0.02945354009688581,4.566834995094276,0.12874228975477667,0.009515970684949152,0.003383056532908663,-0.08140487652861655,-0.14528036278450004,-0.14040238696226248,0.617250521676267,-0.013113163899103733,0.008730267816845405,0.12261395260363306,0.005704299941971673,-1.8336166152688171,-0.9647458078253927,-0.01715785467128027,-0.00041862959255300336,-0.0820302102741549,-0.7306583266790879,-0.284775659200988,-4.719246403119134,-0.03880532673752921,-0.015796604671280263,-0.10547916266179677,-0.00976586034956969,-7.83361137123051,-0.7591139396935243,-0.02118617925111223,-0.0006617187343947183,-0.05844120736529906,-0.6396286455758773,0.05480949327610733,-3.6168718269904323,0.0038344214633024487,-0.019964619377162655,-0.17779533305356462,-0.01167328614681166,-1.1823666171863276,-0.6941146641212264,-0.005645121405560294,0.0004298473138084926,-0.04580673547309391,-0.3163256174680825,-0.08868961984974282,-3.248617621470058,-0.016527331817385357,-0.006236944427872669,-0.048344174447162304,-0.002984227359503632,-4.4725600668124175,-0.25955643952810387,-0.009118984824128942,-0.0017559330267743955,0.024754447865297107,0.04428793286652322,0.06956285221898394,-1.2180688526799748,0.0057500075124412055,-0.008461657936681065,-0.0833097180029184,-0.005152029207421728,0.36516047295044496,0.6941951035890606,0.011431842596748116,0.0006670025751579355,0.029700416962256223,0.6153125045243302,0.022625325436299026,3.2330216278154436,0.004260156080718224,0.011436474334380383,0.05035385162248501,0.006220794023540998,2.5804562165797105,,,0.4637065637065637,1.1824324324324325,0.5540540540540541,0.02702702702702703,0.6283783783783784,-0.07432432432432433,1.0302324799062523,0.017657122805675877,0.026954420102973175,1.1227391148202337,0.24570598227646162,0.2343183425495678,2.152971594726486,0.4800243248260294,2.031773906433845,1.6315819674800278,0.11263361571743663,0.15052211370078292,0.13703620953559792,0.40019193895381744,7.532774669294129,1608.0,437.3198,225.0,576.0,11298.97940190922,6458.271566449312,99.941459050319,440.11769999999996,399.0902777777777,535.4057680000001,14912.518922472282,1771.0,453.379,285.0,516.0,10388.331313968303,6759.0427555056,128.1123716,463.6225,225.1388888888889,552.3767799999998,18904.200897003004,2719.0,812.8729999999999,454.0,823.0,19720.462384788043,10305.336425954913,191.981059799037,823.1593,543.1666666666669,990.5562839999999,27862.81095632003,3081.0,997.2498999999999,552.0,786.0,24933.734357364432,11400.9681030112,238.38592002613095,1013.9403000000001,491.7777777777777,1236.2443999999998,33556.09296378572,3297.0,1208.214,594.0,728.0,30885.881527462578,11860.562301564798,264.18446495752704,1225.5629999999999,592.1944444444445,1501.9557999999997,36506.92640581935,3382.0,1371.224,629.0,721.0,36183.11157713432,11946.608379059197,285.073383378809,1387.7941000000003,619.6527777777777,1718.669224,38682.26298099126,3384.0,1384.0459999999998,633.0,681.0,36683.91372193745,11897.313648505598,303.12686185680894,1404.9155999999998,593.2083333333334,1746.47832,40257.53896209613,3303.0,1498.3110000000001,637.0,694.0,41093.11082429178,11440.725204059197,309.066419092638,1517.994,637.0277777777779,1901.6194039999996,40319.892596364225,3140.0,1402.0010000000002,588.0,758.0,38765.02544162284,11021.266005059199,283.2757772597321,1420.0261999999998,618.5833333333334,1782.6085199999998,36998.244998274975,535.9411764705882,14.117894117647051,1.3187059234673262,43.80882352941177,311.9411764705883,160.64494297481457,2594.5760488074648,16.385870536761807,12.66416911764705,170.22906454248374,8.227519529411762,3397.496284499017,23.59083044982698,-0.1482570934256009,-0.5993141722859799,17.126081314878896,88.2084775086505,-12.642768141074674,109.4570703628819,-0.7373132275195285,-0.005955990484421174,-11.359574742887354,-0.2029565674740485,6.917090180496725,83.81401384083046,6.479868166089972,-0.37706057895393785,3.5426038062283753,76.78460207612457,84.47515125416557,446.11538433349574,4.351291550166563,5.410872945501745,114.16093119232991,3.6816925121107262,570.8543743867846,20.72750865051904,1.5320712802768135,0.5446721017982947,-13.106185121107265,-23.390138408304505,-22.60478430092426,99.37733398987899,-2.111219387755701,1.4055731185121103,19.740846369184922,0.9183922906574393,-295.21227505827954,-188.12543252595157,-3.345781660899653,-0.08163277054783566,-15.995891003460207,-142.47837370242215,-55.531253544192666,-920.253048608231,-7.567038713818196,-3.0803379108996514,-20.56843671905037,-1.9043427681660896,-1527.5542173899494,-170.04152249134944,-4.745704152249139,-0.1482249965044169,-13.090830449826989,-143.2768166089965,12.277326493848042,-810.1792892458568,0.8589104077797485,-4.472074740484435,-39.826154603998475,-2.6148160968858116,-264.8501222497374,-161.03460207612451,-1.3096681660899883,0.09972457680357029,-10.627162629757787,-73.38754325259515,-20.575991805140333,-753.6792881810535,-3.834340981633403,-1.4469711072664593,-11.215848471741655,-0.6923407474048426,-1037.633935500481,-65.92733564013838,-2.3162221453287515,-0.44600698880069645,6.287629757785465,11.249134948096899,17.66896446362192,-309.3894885807136,1.460501908160066,-2.1492611159169908,-21.160668372741274,-1.3086154186851189,92.75076012941302,165.91262975778548,2.7322103806227998,0.15941361546274657,7.0983996539792376,147.0596885813149,5.407452779275467,772.692169047891,1.0181773032916555,2.7333173659169114,12.034570537773918,1.4867697716262986,616.7290357625508,0.7183452708768577,0.5713468245981234,0.4440225004640771,0.30491432732578766,0.28349213594783457,0.15913083818603185,0.1768595135747834,0.09175626570463605,0.11074516722409698,0.051587911225222584,0.06980628398720536,0.029426072349232214,0.044464585504081174,0.0166717083590991,0.028560802791925705,0.009541380821181307,9.014113087422553,5.6859781217502015,4.124566910355422,2.1849502992150818,0.5019742042290499,-0.5283732327864675,4.022119150141629,0.9775331976149179,7.014103926559908,0.9954008481390851,17.43070605828864,10.946654934875818,19.00561293583252,11.69761339290541,2.0050212932166356,0.5269549661855195,4.007193481653567,2.2347032133647544,8.007395395904219,1.2190059737574146,4.030648104390954,2.4306926840191467,20.91160146398265,13.3027812082985,0.2504609351744599,0.5399200546057324,0.7344057424368725,0.8319533922139732,0.874320006237083,0.8789591956015791,1.5193279316607544,1213.5616710570775,0.0,1.0,2.0,0.0,13.0,5.0,5.0,0.0,0.0,4.4995780806620544,2.66445068150072,1.4314405929434484,0.8130031252227079,0.544405147186084,0.5149933824802009,176.74012019391955,2485.1521806619035,78.13200356215786,36.54635559796917,73.31627496431753,,14.0,882.0,17.78159083828843,17.96578232709628,11.949020558499466,37.30624494125841,34.386540103711205,12.13273413692322,21.267267065232257,42.46456947923127,10.216698334856808,9.473725907600098,17.15714285714286,43.75,20.5,1.0,23.25,0.0,0.03629343629343626,-2.75,0.17144257703081212,0.06538499120578489,-0.10605758582502722,0.015108717740296762,0.1835229681978795,0.0,0.6123949579831918,0.8741312741312737,0.44095238095237965,0.5470099667774069,0.8590225563909769,38.11860175653133,0.6533135438100075,0.9973135438100075,41.54134724834864,9.09112134422908,8.669778674334008,79.65994900487998,17.76090001856309,0.5304770318021205,0.1568137663058562,0.029142381348875934,0.3147377185678601,0.3448275862068966,0.38849269684640914,-1.218243237815097,-0.06011542776092487,-0.017915341732574957,-0.0468555091467345,0.611507303153591,1.917576940283979,0.03847326842920836,0.028199660886529098,0.045656593816285215,-7.896867095929961,0.7377570217706194,0.5935997821916051,1.5443447127829544,0.8616181817322194,0.4704073962917614,1.057932739432524,0.7359341047964014,1.1370659088661594,0.5840544307166747,0.5671291359339301,0.6260826477352514,1.0150876267247242,0.8250905498847548,0.6460408842845251,1.3004521472678028,1.1500879489761664,0.8290665660946632,0.7383965379895353,0.8128942006671258,0.8703578065127716,0.6561425959181969,0.4137258631829586,0.6695718908118917,0.8787341134448734,0.848695624904985,0.5932010993120249,0.7799508728302019,1.3441377426665748,0.8738110269237029,0.9169736098369551,0.8431470950973603,1.0723314019463845,0.6038664929583009,0.5379909389624579,0.600828908393145,1.043815385865718,1.033446749350602,0.8694506564083846,0.8890597469290499,1.1999690138662946,1.0430796307847032,1.0492210346860964,1.032146264317165,1.1647063582607213,0.8772884246213528,0.8381040940885869,0.8676556923781061,1.1516322839628255,1.0363860600216381,0.8608547369394249,1.0115879181376473,1.0685123243657986,1.0422781242423425,0.7766698284395539,1.0265281337768752,0.9442918796781645,0.8802616999310489,0.7775167515399354,0.870507801518651,1.008508258484552,0.9774779633561554,0.5756400762627458,0.8572115019666465,1.0250749499369145,0.8609879248571075,0.7287088030828263,0.9649537926364673,1.0460293235671416,0.6087674588126893,0.5095087192165212,0.584778057436592,1.105491346512563,0.9624579875325925,0.6887559700644871,0.8541971651164724,0.8218870677419099,0.8215068428062557,0.7193504869583145,0.9566347867267265,0.9497712132811247,0.7153278661008017,0.6178156484737096,0.6788190606871113,1.0152238111935015,0.8489425399156568,0.5900625635494893,0.7202161738593836,0.8126789900292282,0.7068103867945592,0.7331374963741167,0.8485227874442691,0.9594744432733916,0.61055995438768,0.5520640726273057,0.5819048231920062,0.9802419369465354,8.0,0.39220487705336193,4.888888888888891,2.8125,2.5822222222222226,1.75,1.0938775510204082,0.857638888888889,0.7054673721340388,0.4950000000000001,7965.458797793772,8967.09752475997,3532.574558237987,3218.81169147009,13.788144026051807,0.41971053985410534,8.001114653291445,0.7232778960841078,0.0,0.3448275862068966,1.587884760588285,3.4230121597496193,4.656022248306891,5.274459716027631,5.543057694064255,5.572469458770138,0.2,0.008004181164354324,0.08576998050682264,0.0439453125,0.04034722222222223,0.026923076923076925,0.01682888540031397,0.013832885304659497,0.011957074103966755,0.008684210526315793,0.45629282865173215,29.97,13.573407202216066,7.204986149584488,214.74903825810614,0.0,4.533038675632454,237.7497792480786,,196.165367123251,193.57440151229304,193.80874775194994,195.93534155647762,258.80420972964316,195.1472051190225,196.43257859076198,229.8149696585097,0.042157676605125205,-0.010057640892692519,-0.4352684158242876,0.3744095995915068,0.2708246461609558,-0.07537471423687071,0.04040433649112507,-0.04309561374229215,-0.000450430570033065,-0.06391148738752862,-0.02362570361183531,0.001949911996856318,0.0850743057842169,0.2496865504853669,-0.15554715520774298,0.04399060087277611,0.13390609089194794,0.2860624270598463,0.09353619416511876,0.14445998447137734,0.2324285829578247,0.3648234027223266,0.24343190185431635,0.09140400861754075,0.01633476972412708,0.04583445669617958,0.174449693554811,-0.12635654550799696,-0.03166963970938752,-0.059431452597487965,0.01617722305471758,-0.054418539627695085,0.04687699651122369,0.04897958406489517,0.047145727781919555,-0.036699357231722574,-0.12240655842894897,-0.08264222042780921,-0.021586929873459053,-0.12732718775014845,-0.1592760749841647,-0.12054375610630415,-0.12368446689377216,-0.16103887872370934,-0.08481954936548051,-0.04213489089116232,-0.08071430294352862,-0.15678768382294864,-0.09631607005660346,-0.1020449776057492,-0.034121992734004535,-0.09071236752505633,-0.13943253145120008,0.02320051583173467,-0.09479286003136937,0.015912530183830827,-0.10719962004892239,-0.07102243485938381,-0.09647907308461236,-0.023664758762356065,-0.08806898822567641,-0.02719019227508395,0.022165379573121882,-0.07110115637045526,-0.06895576349106229,-0.03754176158989342,-0.08514146207489202,-0.06858705254998936,-0.03348914699065072,-0.019311648520435862,-0.02466447630064217,-0.0895171205722425,-0.03293241621056833,-0.04392234159524318,-0.09054592361783485,0.03842382239984351,0.009654318384631499,0.029445520433422582,-0.03192378270057203,0.02386205297843589,-0.045434701191136496,-0.03327904573419443,-0.042581240293904886,0.007308591410068822,0.08807919435286511,0.0550624115821341,0.03439445770553817,0.04610094932308585,0.1341318603111683,0.009577158802375365,0.08473271415285627,0.01767929343997418,0.06140791768598521,0.020114437681553753,0.05141452318509804,0.051647156621775284,22.09804153420133,35.45643880911467,11.701539246487133,15.866270544166827,32.49476777279274,39.465468113820855,42.720618986561504,43.31498339548124,43.78554221901065,75.17563453805226,60.36853279676103,4.167443781545155,5.569318206928968,5.070339752817123,14.807101741291245,11276.854225044719,7917.171989847696,5468.961242081616,267.0,57.0,76.0,99.0,131.0,151.0,178.0,205.0,244.0,512.2286775120008,40.0,5.272999558563747,6.133398042996649,7.029087564149662,7.912423121473705,8.815073088844464,9.707411839509511,10.61381136646669,11.511394293324997,12.420252139463598,0.6617647058823529,0.9978823529411764,1.136594917542162,0.6275781631543634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6637687830221909,0.9832179930795848,1.0139668394670325,0.6323282258354189,11.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,3.0,0.0,0.0,4.0,1.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,14.790514511606428,6.041840829147961,11.49902366656781,5.907179729351506,0.0,9.694446914922299,0.0,13.171245143024459,0.0,42.46456947923127,65.78173910941246,19.634269217737724,19.78304657425206,307.8822821161698,-965.4634727390774,-47.641758106821335,-14.197992246162904,-37.13321048996452,484.62240231008934,1519.688707922826,30.490245455336524,22.348363351806263,36.183064474353,0.5,0.929198044784963,0.15717075369730363,101.3506593176236,0.13263191549572517,1.0686749144343055,0.07080195521503702,7.0,0.2,0.26084508472533696,0.562305224527095,0.7648543193982871,0.8664463099941123,0.9105694504618503,0.9154009813430872,5.7419000000000056,,2.035714285714286,2.3992100693459233,2.0310113090998234,2.13616401301287,-10.277860432971755,2.176420658986487,1.9665103868809841,-3.475611686563057,135.71169999999995,27.439508234696383,0.0,10.216698334856808,0.0,37.522445044517426,27.81202347114483,94.54729521156271,0.0,11.49902366656781,4.394449154672439,0.0,5.733341276897746,0.0,7.278628942320682,0.0,8.916371914881694,0.0,10.603883397931984,45.0,18.848590960451357,0.0,0.0,0.0,0.0,0.0,4.389034649392903,0.0,67.856,0.0,13.19449499250559,0.0,0.0,0.0,0.0,0.0,-0.11605852619335666,77.28845439286701,14.790514511606428,13.171245143024459,11.49902366656781,38.61911293134682,23.812478947367314,0.0,46.3217607397069,66.73003775307771,0.0,0.0,0.0,42.67531509449671,45.13627724550898,47.62835761435159,475.4995584961573,,392.22069563646346,387.0191159938106,387.5077111088134,391.7552147879275,521.4973396231137,390.17676587809973,392.7588593227737,460.94503563085414,47.62835761435159,475.4995584961574,,390.29501996078767,384.7495929552402,385.5864841948,389.7345190999423,527.8862798922585,388.1179895790584,390.89864679464307,463.10555100358266,5.0051721339991,326.1950530605404,,273.43403008565394,270.37005629375244,270.260039545174,273.1547753418971,347.7340657066191,272.21571041713537,273.75441861931915,313.7269604194171,1.287252908495989,12.851339418815062,,10.60055934152604,10.459976107940827,10.47318138131928,10.587978778052095,14.094522692516586,10.545317996705398,10.61510430602091,12.457973935969031,2.502586066999549,237.7497792480786,,196.165367123251,193.57440151229304,193.80874775194994,195.93534155647762,258.80420972964316,195.1472051190225,196.43257859076198,229.8149696585097,66.85882352941177,0.0,4.804673683825435,0.0,39.116365106735465,0.0,0.0,68.9497450837582,2.496483201726256,2.808476509413871,11.088216845499565,0.0,-0.6959195708241996,2.1870034958427813,-4.371361348375671,0.0,0.0,42.99831935680849,736.393803251804,107.97616372000338,232.7648268629741,316.6095128848686,358.66326068987894,376.92792319636936,378.9279231963694,1485.0,156.41585101479302,56.11088117445503,73.92667468670454,50.80000000000001,50.80000000000001,1.0,8.673400683126403,6.321928094887363,4.714522476196379,5.975959393445624,,5.988900616410448,5.989643444021667,5.986206132859596,5.98948962392206,5.934720332411941,5.989186998458672,5.988573938249725,5.969163853863668,0.12741952638368592,0.16151241603907093,,0.161862178821904,0.16188225524382882,0.16178935494215124,0.16187809794383945,0.16039784682194436,0.1618699188772614,0.16185334968242499,0.16132875280712616,2.8589804530237264,3.0960774725187914,,3.098240678440241,3.0983647048007774,3.0977906643146484,3.098339023459942,3.0891527248512407,3.098288496098199,3.098186129685524,3.09493967926637,375.8800000000015,591.5813886631888,265.5727704149828,,263.1959648732665,263.00388314867723,263.67959385494186,263.10916337835744,272.1611283831017,263.1324293139271,263.24788437295643,266.95644565580335,15.988686180086184,7.1776424436481845,,7.11340445603423,7.108213058072358,7.126475509593023,7.111058469685336,7.355706172516262,7.111687278754786,7.114807685755579,7.2150390717784685,7.69113209066673,6.890221710968891,,6.8812316879551965,6.880501616542812,6.883067526074824,6.880901835589956,6.914727094317581,6.880990258610515,6.881428934062004,6.895418339859486,50.20458195223503,15.38149848834837,2.808476509413871,3.1520583815681427,1.1209177416314036,18.15267138962716,-2.5069637259964472,0.6320855793470326,4.804673683825435,468.2164840825531,243.9981508289116,-765.1343247881626,-37.756316473958606,-11.251975364531805,-29.428243261083182,384.0655240086529,1204.3604198985286,24.163662352660648,17.711182645566595,28.675248092822113,4228.0,64.0,3.136215444950934,1.054967999835888,0.28867513459481287,0.013498731178900972,0.8749824249306865,0.20828902383259773,0.14433756729740643,0.004499577059633658,0.0,0.0,0.0,0.0,0.0,0.0,0.2965065170604102,0.11296098728448545,0.4593700871698988,0.17454260242607494,26.578775022443736,21.139832510130564,17.760900018563085,12.196573093031507,16.15905174902657,9.070457776603815,13.44132303168354,6.973476193552339,10.963771555185602,5.107203211297036,9.144623202323901,3.85481547774942,6.714152411116257,2.517427962223964,5.083822896962776,1.6983657861702728,6.4655579732752,2.4331387351987064,10.004110965273442,3.5360413039939744,15.37267447109965,5.106308347344389,119.47597122575361,69.76953909706035,42.31530249095461,32.749041668306006,30.92544132418042,29.96368536153328,194.0,230.0,75.37758299999999,41.05841700000003,0.36764705882352944,268.08,12.784722222222223,8.277777777777779,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,18.0,68.0,0.0,1.0,71.0,18.0,1.0,10.0,61.0,19.0,40.0,52.0,0.0,0.0,0.0,29.0,0.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,4.0,1.0,1.0,37.0,8.0,0.0,2.0,3.0,0.0,4.0,8.0,0.0,0.0,3.0,0.0,3.0,3.9318256327243257,7.41767424185533,4.4942386252808095,5.025523906590006,5.53289529548791,6.053999108533887,6.217229659127144,6.491197625442028,6.728067750088825,7.0771551677864 +6436,CC1(C)O[C@@H]2C[C@H]3[C@@H]4CCC5=CC(=O)C=C[C@]5(C)[C@@]4(F)[C@@H](O)C[C@]3(C)[C@]2(C(=O)CO)O1,0,21.93548387096774,6.295967741935482,3.596774193548387,7.387096774193548,164.38344247688258,86.94490674435117,1.369130210489016,6.337774193548386,5.677531362007168,7.828307483870965,203.28049010985552,23.696969696969695,6.328030303030303,4.606060606060606,6.621212121212121,144.40164056918798,89.38982446720004,1.780585317606061,6.472969696969697,2.876052188552188,7.76760836363636,260.58320334328704,21.592307692307692,6.279461538461539,4.369230769230769,5.6,151.23300373898874,81.48393483465847,1.5565825554341006,6.392823846153845,2.84866452991453,7.767322399999999,227.76593856329333,19.30808080808081,6.424848484848486,3.6161616161616164,4.44949494949495,155.39218681972216,70.72801157403633,1.423331262173903,6.509959090909089,3.4411475869809194,7.9283946060606025,204.65650053567353,15.657794676806084,6.213650190114067,2.9771863117870723,3.041825095057034,158.96775156248108,55.225207963619766,1.2656045123367452,6.290118631178708,2.992501056189269,7.759635376425856,173.40816220659846,12.803333333333333,6.100166666666667,2.466666666666667,2.35,163.14214868592236,43.488750456314676,1.0891749976762772,6.1553873333333335,2.9393287037037035,7.709153986666665,143.95941142302746,10.99641577060932,6.025519713261648,2.1039426523297493,2.293906810035842,167.09027154761813,36.476875738093185,0.9751660559534552,6.0611336917562735,3.1424980087614496,7.6702925878136226,124.21015980910765,10.529411764705882,5.829864253393665,2.081447963800905,2.230769230769231,168.50513179660112,35.95444862202355,0.9230224468807918,5.867203167420811,2.9076483157365516,7.505466190045249,116.9978225138182,12.026845637583893,6.136442953020133,2.1677852348993287,2.3557046979865772,167.73618291663132,40.88139963300937,0.9822341850272083,6.168340268456376,3.3135719612229675,7.777209234899329,130.7387034380403,7.93340270551509,0.18231269510926104,0.017555110556220027,0.9430280957336107,4.352757544224766,1.6440259572724976,37.83094306063934,0.23182551327416465,0.16655660770031208,2.524997470805873,0.11604099063475547,49.716646148214394,0.27969602371267344,-0.007383565099485897,-0.007667155573164465,0.4721722952732318,1.4737331693627216,0.0889457046588668,1.3963693536247646,0.016714228746159226,-0.005627379938826207,-0.22166508783639363,-0.005889991612272591,3.818898605154455,1.5427759545345392,0.011193508364684301,-0.0013349962678435561,0.06826222684703429,0.4606419594973183,0.04225162981740907,7.400255378781814,0.02376193716949321,0.013704533738893857,0.023555051940197604,0.0035976128391899233,8.674357430965886,-0.5562440219047917,-0.007970075363415458,0.0009145189314417202,-0.14749209052018636,-0.5660191929702857,-0.05528869979914098,-2.5286235523036344,8.440457217513574e-05,-0.008284711317125295,0.07366217674490307,-0.004099552381252777,-1.7715585766959125,-1.1150536315545831,-0.014914804762149623,0.0005367104355521681,-0.20385233221098117,-0.7524877049018173,-0.16376759475016117,-5.48425573216045,-0.03579734976831349,-0.014793845526879004,-0.14642175907058866,-0.007382126412996619,-8.233137323876052,-0.9846930280957336,-0.015562157474852572,-0.0008219843932604881,-0.08163024627124524,-0.49759625390218515,-0.17329079424264893,-4.736878569418354,-0.029702028646451228,-0.014951435657301415,-0.21326882683932633,-0.009017868484217827,-6.801590581825582,-0.36351023239680896,0.005805006359116611,-0.0004510433006543362,0.05743438547809,0.2335530119088912,0.032862177186979445,-1.7068229026175175,-0.0030538084275287874,0.0035301190889119654,-0.006853915353091549,0.004709190889120149,-2.237485145756543,1.6904478272538503,0.023666723953649153,0.0015234012488274606,0.05449051468822545,0.7171592562423191,0.05508817359762793,8.120916718682833,0.023670972695724875,0.02436616269816962,0.29771900205291424,0.011632484770294974,8.463612178607544,-0.21484890599138173,-0.016557120309520963,-0.0005416640449697629,-0.010899929463855443,-0.3618504214709232,0.04590182492964711,-0.8415974200381063,0.013026527256569765,-0.014553403543568284,-0.13059241680188033,-0.011980253678704395,2.001598257010337,,,0.46082949308755766,0.7983870967741935,0.16129032258064516,0.0,0.6370967741935484,-0.47580645161290325,1.5771579268946825,0.03417490242291813,0.048045870164853614,0.6844137532328652,0.12288685592665034,0.34017093721085395,2.2615716801275476,0.46305779313750434,2.0421816946513154,1.6264421913846876,0.0,0.35761179578565006,0.05812770748097779,0.4157395032666279,7.003394627935497,1360.0,390.3499999999999,223.0,458.0,10191.77343356672,5390.584218149773,84.88607305031898,392.9419999999999,352.00694444444446,485.35506399999986,12603.390386811043,1564.0,417.65000000000003,304.0,437.0,9530.508277566407,5899.728414835203,117.51863096200003,427.216,189.81944444444443,512.6621519999998,17198.491420656945,2807.0,816.33,568.0,728.0,19660.290486068538,10592.911528505601,202.3557322064331,831.0670999999998,370.3263888888889,1009.751912,29609.572013228135,3823.0,1272.1200000000001,716.0,881.0,30767.652990304985,14004.146291659194,281.8195899104328,1288.9718999999998,681.3472222222221,1569.8221319999993,40521.98710606336,4118.0,1634.1899999999996,783.0,800.0,41808.518660932525,14524.229694431999,332.853986744564,1654.3012000000003,787.0277777777778,2040.784104,45606.346660335395,3841.0,1830.0500000000002,740.0,705.0,48942.64460577671,13046.625136894403,326.75249930288317,1846.6162000000002,881.7986111111111,2312.7461959999996,43187.82342690824,3068.0,1681.12,587.0,640.0,46618.185761785455,10177.048330927999,272.071329611014,1691.0563000000002,876.7569444444445,2140.0116320000006,34654.634586741035,2327.0,1288.3999999999999,460.0,493.0,37239.63412704885,7945.933145467204,203.987960760655,1296.6518999999994,642.5902777777779,1658.708028,25856.518775553825,1792.0,914.3299999999998,323.0,351.0,24992.691254578065,6091.328545318396,146.35289356905403,919.0827,493.7222222222222,1158.804176,19480.066812268004,491.8709677419356,11.303387096774184,1.0884168544856416,58.467741935483865,269.8709677419355,101.92960935089485,2345.518469759639,14.373181822998209,10.326509677419349,156.54984318996412,7.194541419354839,3082.4320611892927,18.459937565036448,-0.4873152965660692,-0.5060322678288547,31.1633714880333,97.26638917793963,5.870416507485208,92.16037733923446,1.103139097246509,-0.37140707596252964,-14.62989579720198,-0.38873944640999103,252.04730794019403,200.56087408949008,1.455156087408959,-0.1735495148196623,8.874089490114457,59.88345473465138,5.492711876263179,962.0331992416359,3.0890518320341176,1.7815893860562015,3.0621567522256887,0.46768966909469,1127.6664660255651,-110.13631633714877,-1.5780749219562604,0.1810747484254606,-29.2034339229969,-112.07180020811657,-10.947162560229915,-500.6674633561196,0.016712105290676876,-1.6403728407908085,14.585110995490808,-0.8117113714880498,-350.76859818579067,-293.25910509885534,-3.922593652445351,0.14115484455022023,-53.61316337148805,-197.90426638917793,-43.07087741929239,-1442.3592575581984,-9.414702989066447,-3.890781373569178,-38.508922635564815,-1.9414992466181107,-2165.3151161794017,-295.4079084287201,-4.668647242455772,-0.24659531797814643,-24.48907388137357,-149.27887617065554,-51.98723827279468,-1421.0635708255063,-8.910608593935368,-4.4854306971904245,-63.9806480517979,-2.705360545265348,-2040.4771745476748,-101.41935483870971,1.6195967741935344,-0.1258410808825598,16.02419354838711,65.16129032258064,9.168547435167266,-476.2035898302874,-0.8520125512805317,0.9849032258064384,-1.9122423835125424,1.3138642580645217,-624.2583556660754,373.5889698231009,5.230345993756463,0.3366716759908688,12.042403746097825,158.49219562955253,12.174486365075772,1794.722594828906,5.231284965755197,5.384921956295486,65.79589945369405,2.570779134235189,1870.4582914722673,-32.01248699271588,-2.4670109261186233,-0.08070794270049467,-1.624089490114461,-53.91571279916756,6.83937191451742,-125.39801558567784,1.940952561228895,-2.1684571279916742,-19.458270103480167,-1.7850577981269549,298.23814029454024,0.7294361192320276,0.5962055037459586,0.4101369024932182,0.3196986558824066,0.2527378579915322,0.17911077697766364,0.1475943399301375,0.09675520794521046,0.08702016480804545,0.05542777320575524,0.054078824690998034,0.0313761177932777,0.0317964281826945,0.017789519030752803,0.018852639881097803,0.01012445851728452,9.00406602291198,5.703335737572478,4.107683100489108,2.202123685172828,0.41031492561134764,-0.3943264258829875,4.1244730868033885,0.9771573498943347,7.004058489966081,0.9921995209409373,17.42477199093603,10.963893314340165,19.000142632485684,11.715029199537602,1.9812320428006265,0.5459746636579001,3.988619143856301,2.2518484646336687,8.001802519186533,1.06351158439401,4.009878461600021,2.4478584992784636,20.8872736756486,13.304118617710255,0.23691454546825008,0.566921446346277,0.7805755541667815,0.8740185074352166,0.8740185074352166,0.8740185074352166,1.585063830263083,925.0303087134429,0.0,0.0,5.0,0.0,5.0,7.0,1.0,4.0,2.0,4.502080010381094,2.4793743173547624,1.1698278227900154,0.5970895162686141,0.5970895162686141,0.5970895162686141,152.92294694592016,1544.6841263766523,63.607268978173224,24.914260102849234,51.62268918359118,,12.0,618.0,58.402868453629374,19.802129157825057,18.121972615452343,19.26246486877803,5.573104530069267,12.152040213667762,26.847231705905752,6.923737199690624,0.0,9.473725907600098,14.285714285714288,24.75,5.0,0.0,19.75,0.0,0.03917050691244232,-14.75,0.14628354567633484,0.01770702415863723,-0.1285765215176976,0.03541404831727413,0.1928952579468468,0.0,0.5921658986175108,0.8843317972350225,0.44588235294117595,0.5744588744588736,0.8489177489177484,48.891895733735154,1.059421975110462,1.489421975110462,21.216826350218824,3.8094925337261607,10.545299053536473,70.10872208395398,14.354791587262634,0.5211047420531532,0.2533333333333333,0.17499999999999996,0.24499999999999997,0.75,0.36692928093192456,-0.9864200567820839,-0.07378443388178141,-0.01591000091584006,-0.049321002839104185,0.6330707190680753,1.7018910375976848,0.03691530333784342,0.027449855445123954,0.040521215180897255,-3.4634431160051373,0.8117428217113419,0.6766207328057191,1.3321506595981136,0.9721755485893417,0.4726164344859062,1.0925811592560204,0.8149723428419604,1.1731816693334562,0.6716850453720297,0.6968150030588637,0.7137276347438831,1.0530578289930135,0.7092776354023729,0.7214855776776987,0.999840881833346,1.5930546419098144,0.8641451663325918,1.0709678095606519,0.7112952773051435,1.0471712186584536,0.7006465579904035,0.654520046752301,0.7682542768487199,0.9019328282735604,1.0416113522422543,1.114891080580783,0.9971428221097873,1.5544270289097877,1.2083683475925886,1.2223305504874427,1.0409686261565085,1.098323476671098,1.1024547941793195,0.9052048903684871,1.1206506018614553,1.0595892961407178,1.1041219891956158,1.1047666027735537,0.8447379823905758,1.3289314278222106,1.1495072396055372,1.3115210403281685,1.116270281275692,1.2181760693310195,1.1000754270890436,1.021422487907563,1.0599121921497243,1.1837211281762638,1.1120125043721578,1.0870576428228294,1.027349944147593,0.9946225287356323,1.0717776316837995,1.086351642403672,1.1128887927656779,1.1019524991748137,1.0906672423850339,1.0853619350775137,1.0791772930024461,1.1131514802058862,1.0541382476390344,0.9859939847382952,1.0242346216523628,0.7011494252873564,0.9033256301962972,0.8727239319975797,1.0509863479608044,0.9286793090589185,1.0006206665365773,1.0569812147823379,0.9764783631343413,0.9947631740478915,0.7729973042974553,0.7252461130788481,0.8649939338692652,0.7482565142767983,0.7532760267534072,0.7311576032931337,0.7682311243807258,0.7862755047874181,0.7290730678305255,0.7073160667236031,0.7476713905432884,0.786553754471104,1.068287754318753,1.241945250505432,1.2499108474791683,0.8542541078454063,1.157475849034202,0.890147897039343,1.0589220726438318,0.8487523679773602,1.2332355776864312,1.1899957462015607,1.2662609135998228,0.8908688590498519,12.0,0.12386491174369962,8.666666666666668,6.493055555555555,4.8388888888888895,2.4452777777777777,1.4238095238095239,0.8281604308390023,0.44343663391282434,0.2696913580246914,7478.576811447304,8573.865410442826,2996.8992689428846,2677.1645627319604,12.377829065792227,0.4311883324594769,7.040653591444832,0.758051139006846,1.0,0.75,1.4521163000057813,3.4748219930321125,4.7843684875968595,5.357106794118261,5.357106794118261,5.357106794118261,0.34285714285714286,0.010322075978641635,0.14207650273224048,0.08543494152046782,0.06451851851851852,0.03881393298059964,0.030952380952380953,0.021793695548394797,0.015290918410787044,0.012842445620223398,0.7649025551193971,22.775510204081634,6.780435366836872,2.6060941828254847,181.0286953933564,1.0,4.418922258217638,146.4056992424556,,134.0758031470792,133.21448874849517,135.6877727256026,134.03091809406484,168.61421609900881,133.84394513497554,134.14300370126458,149.9564604544474,0.03525549302044584,-0.04049945668929355,-0.4367477805742375,0.5006980146290492,0.3385746057273668,0.054102372450634026,0.03691077305121682,0.07209831441801841,-0.03378659073647586,-0.08778824153263308,-0.050757853583063756,0.07681327887182134,0.19446585680845904,0.06139730619404188,-0.07604601882558626,0.07238620689655167,0.10582761727872887,0.025700098973805832,0.19561382244476225,0.10249923243517871,0.08228153735907398,0.009328742785900623,0.031002948350497803,0.17447591708229962,-0.0701141795711575,-0.04371651331597586,0.052094171011511696,-0.15640264716126798,-0.13003692193269056,-0.03363006499658135,-0.0668400877094313,0.0003640866399174799,-0.04974111463672523,0.02917316852653844,-0.03532848486407973,-0.03563310709685792,-0.140551749727696,-0.0818089204002557,0.03057288838104207,-0.21616782483283084,-0.17287608998581075,-0.09961375246280048,-0.1449674601917726,-0.15441505666366556,-0.08882172692600586,-0.05798887355869588,-0.06361654078111253,-0.16560122135615438,-0.1241198845750262,-0.08535970282007012,-0.046823082693104846,-0.0865618390804598,-0.11431747549605545,-0.10540636142396743,-0.12521174959412446,-0.12812234609969184,-0.08976789251257908,-0.08446298632182783,-0.07771278437808238,-0.1368071080569031,-0.04582021685904162,0.031840933269280225,-0.025692991178259777,0.06090421455938703,0.05365633383802162,0.019988843267109396,-0.04511711219785469,-0.013172874652140858,0.02119471054107781,-0.0027144246409498652,0.040582132773603695,-0.0450047482906669,0.21307979564414348,0.12981391087145935,0.08677822016265786,0.05778249336870032,0.16475975262942116,0.03350809234728954,0.21466334332891968,0.10210684907545438,0.1462935817113425,0.11790863376900526,0.1002446179290969,0.170236989707149,-0.027081558061085757,-0.09081715510594689,-0.030855063158679093,-0.011558435547326986,-0.08313130648662616,0.027920377246232784,-0.02224627122535928,0.05619108558238866,-0.0873781217359713,-0.051719820836177204,-0.1032415667357823,0.04026012235506006,7.098323376798651,17.49517186257132,5.851085878768621,13.911175269988059,34.44943724394566,40.19365409734281,40.770974310316376,40.770974310316376,40.770974310316376,63.30763253419077,50.41970793292531,0.0,11.085965669355152,1.8019589319103115,12.887924601265464,5806.913866999072,5318.195958658274,1429.8739901050835,545.0,61.0,95.0,143.0,201.0,254.0,327.0,406.0,489.0,434.21046693200077,35.0,5.262690188904886,6.22455842927536,7.234898420314831,8.226038429485484,9.23883064237581,10.240709508047887,11.25416768929685,12.26124714827483,13.27499347315795,0.6236559139784945,0.9890322580645163,1.1329126236538138,0.583476441219205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6385897527525595,0.9741935483870966,1.0113243897281678,0.6021561328404565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,4.0,0.0,1.0,0.0,2.0,5.0,0.0,2.0,0.0,4.0,0.0,5.0,0.0,0.0,19.68678069728151,6.606881964512918,28.623411675029843,0.0,0.0,9.589074368143644,4.39041504767482,0.0,0.0,18.572861836593773,64.52444435060507,16.747886984954953,12.207932775496605,210.83491302151901,-566.7898357583432,-42.396002467553224,-9.141771544489405,-28.339491787917154,363.7578599674392,977.8942906183091,21.21126651062,15.772488558359827,23.283197395674026,0.5,0.7207980550721301,0.14496551428943383,38.74849286815775,0.07836812851652435,169.7764516717242,0.27920194492786987,6.0,0.05714285714285714,0.24388115948958858,0.5835921108228183,0.8035288455724421,0.8997195448146355,0.8997195448146355,0.8997195448146355,2.4188000000000005,,1.8333333333333335,2.1045296167247383,1.3925083087863488,1.8633824475096337,-8.491970253898467,1.9116220638074093,1.8044688013136287,-2.9406265336488615,108.59860000000005,33.66627011309997,0.0,0.0,22.665793031116348,82.6430898482631,6.606881964512918,23.80116485057091,0.0,0.0,4.2626798770413155,0.0,5.752572638825633,3.044522437723423,7.457609289715606,5.68697535633982,9.271153211372695,8.0323601479245,11.146214615088313,38.66666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.320000000000014,0.0,25.0917709304506,0.0,0.0,0.0,4.512752741503192,0.0,0.08644561759889258,70.24058266653645,0.0,4.39041504767482,0.0,57.65128120472077,19.06280027574374,22.665793031116348,53.378235290466534,23.80116485057091,0.0,0.0,0.0,36.175539355590715,39.59256467065869,38.97606658373212,292.81139848491114,,268.03332672426586,266.29320139268555,271.28570620547714,267.9416179657097,341.063515538488,267.5645598142216,268.1695900605089,301.2409457950589,38.97606658373212,292.81139848491114,,266.31827296082497,264.32444788026555,269.9830371424189,266.19845374062004,345.72040245191613,265.7762682061438,266.4815386012156,302.8535474425438,5.43049272493096,210.78712477250036,,196.2799178223213,195.2991768428214,198.14844207494303,196.23550539491725,237.00680302060482,196.0180231418015,196.35318170590912,214.71571093085237,1.2572924704429715,9.44552898338423,,8.64623634594406,8.590103270731792,8.751151813079908,8.643277998893861,11.002048888338322,8.631114832716825,8.65063193743577,9.71744986435674,2.758504478645915,146.4056992424556,,134.0758031470792,133.21448874849517,135.6877727256026,134.03091809406484,168.61421609900881,133.84394513497554,134.14300370126458,149.9564604544474,60.39999999999999,0.0,7.1128521856456075,0.0,17.133088348765433,0.0,21.184782072887355,62.70211216314641,0.7595614805201745,0.0,12.378655752016144,0.0,-2.7851035105400204,0.0,-6.391472285514043,0.0,0.0,37.33368023610831,414.1653532289431,90.03121060035843,215.43896356799098,296.6308462310053,332.14062123533216,332.14062123533216,332.14062123533216,2587.0,149.2181339291339,160.42741976001514,85.6540875740313,93.06,93.06,1.0,8.254528881939745,6.129283016944966,4.728584730202915,5.473472213482637,,5.490340321831929,5.49093657303034,5.488472776492814,5.490210085197261,5.447787191023333,5.490450702893275,5.490368262701082,5.473217379305976,0.1525349912968682,0.17656361978976248,,0.177107752317159,0.17712698622678516,0.17704750891912302,0.17710355113539553,0.17573507067817204,0.17711131299655727,0.17710865363551878,0.17655539933245085,2.685028057848697,2.8313153004868643,,2.834392354495999,2.834500948643056,2.8340521455243364,2.8343686331651283,2.826611617722098,2.8344124588875865,2.834397443579083,2.8312687413559883,314.5000000000012,276.2270659056126,214.56327895751429,,211.856936376054,211.69007231326714,212.1484402071266,211.84202051775205,218.72491485243475,211.80973580781068,211.87319561969045,215.02334750505128,8.910550513084278,6.921396095403686,,6.834094721808193,6.8287120101053915,6.843498071197633,6.8336135650887755,7.0556424145946695,6.832572122832603,6.834619213538401,6.936237016291977,6.7526253415305675,6.500006813148162,,6.48731332994909,6.486525393460357,6.48868833080096,6.487242922136819,6.51921695519285,6.4870905105887875,6.487390073340303,6.502148726769716,29.511744100781574,25.0917709304506,21.184782072887355,-4.660172298857814,-2.457414365278047,0.0,3.9989469838606286,6.413675909489037,0.0,410.14089445339215,121.14421731592043,-325.67334343034264,-24.360436621478122,-5.252795861779719,-16.283667171517127,209.01263745522004,561.8909921364444,12.18784044294497,9.062757937684589,13.378356955629629,2185.0,76.0,4.62699230547727,2.8371415879116553,0.5963830436641437,0.3185240115648773,2.373013009851616,1.1891404787495687,0.7668016505949174,0.33376188865840023,0.0,0.0,0.0,0.0,0.1310943487475822,0.08298182631511336,0.6596995315767978,0.39552870061671463,1.7623930069056755,0.9530060901725764,22.612519696192855,18.482370616124715,14.354791587262637,11.18945295588423,15.417009337483465,10.925757395637483,14.021462293363063,9.191744754794994,12.443883567550499,7.926171568422999,10.869843762890605,6.306599676448818,8.076292758404403,4.518537833811212,6.164813241118982,3.3106979351520383,11.572268225380549,6.662459275408185,21.822644167331344,11.809771645279826,40.73486103280906,19.82982690955419,108.33869597067635,45.17887936822239,29.54130334857913,25.7557118199286,25.7557118199286,25.7557118199286,192.0,252.0,66.11958299999996,37.420417000000015,0.3225806451612903,295.07,12.590277777777777,6.277777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,0.0,0.0,0.0,62.0,0.0,0.0,66.0,0.0,4.0,4.0,62.0,4.0,35.0,62.0,0.0,0.0,0.0,24.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,6.0,2.0,1.0,31.0,7.0,0.0,0.0,6.0,0.0,5.0,2.0,0.0,0.0,1.0,0.0,0.0,3.6888794541139363,6.863803391452954,4.2626798770413155,4.770684624465665,5.209486152841421,5.605802066295998,5.872117789475416,6.118097198041348,6.380122536899765,6.663132695990803 +3002977,Cc1nnc(C(C)C)n1C1C[C@@H]2CC[C@H](C1)N2CC[C@H](NC(=O)C1CCC(F)(F)CC1)c1ccccc1,0,19.94871794871795,6.060057692307692,3.1153846153846154,6.051282051282051,168.04384075816296,79.28391060640439,1.3643709115231921,6.111985897435896,4.206285612535614,7.570408769230769,196.71119649789455,22.48780487804878,6.230840243902439,3.8902439024390243,5.609756097560975,148.04303922630865,84.39822308134639,1.7482349353658542,6.371793902439022,2.5985772357723578,7.640107560975606,248.96571108189022,18.544303797468356,6.149929113924049,3.4430379746835444,4.120253164556962,156.93424791462178,68.42558943348465,1.454514320393235,6.249282911392404,2.7976441631504922,7.615219721518984,200.87712611018435,14.026200873362445,6.054301310043665,2.834061135371179,2.3275109170305677,164.83643533819787,48.927921985788664,1.2264575431799343,6.123406113537116,2.4249150897622513,7.595005240174672,162.66051385343792,12.362549800796813,5.993445418326693,2.597609561752988,2.0278884462151394,166.61410096854087,41.74156846643506,1.1469971115326498,6.05317011952191,2.379814077025233,7.562508430278883,147.71093633637682,12.24390243902439,5.857276422764229,2.589430894308943,2.2845528455284554,164.71865202569546,41.9091682419577,1.159735457167419,5.926632113821141,2.244749322493225,7.44709705691057,148.70471708598026,12.983935742971887,5.853224096385545,2.5261044176706826,2.6184738955823295,162.94617310447958,45.36683564593736,1.1853259307390924,5.925516465863451,2.60698348951361,7.427177269076305,151.45125980124635,11.04089219330855,5.706375464684016,2.412639405204461,1.691449814126394,164.928332842415,37.36167893874201,1.1315116100229186,5.778215613382901,1.9850784799669552,7.320545040892192,141.2738914544335,11.282352941176471,5.747913333333333,2.396078431372549,1.803921568627451,163.12483148062788,37.997381122321556,1.1463215773905133,5.824265098039217,2.148529411764706,7.350820988235293,143.1324914647082,7.428007889546352,0.14206582840236676,0.009938245537566552,0.6286982248520707,3.684418145956607,1.9581628987457462,35.913613303985585,0.22701667039117887,0.13145294214332673,1.7027232175469358,0.07615155358316894,50.01959918568033,0.48693895222975897,0.005840785106076054,-0.005378124286136212,0.18462260066387648,1.3162072449126856,-0.1664940171486921,2.2730964609750335,-0.004858225132397121,0.006364146662176854,-0.04022148035007634,0.0019784257789323056,0.596817564970267,0.6073702344393678,0.029327379971537816,0.001320288032918668,-0.03863006516365812,0.3430080143809454,-0.13634182559572872,2.9283104301094083,-0.017203705768216736,0.026397333741126454,0.33242725668581724,0.015553404222738189,-1.8108537097599189,-0.7409627658200043,-0.02056120965866506,-0.00041328831119703504,-0.07108989431797626,-0.7607813751582648,-0.032450649083360324,-3.5818868617184045,-0.004481860465183869,-0.01886310897794765,-0.14133435976069783,-0.010567321358334148,-2.0956223641360125,-1.154741978830241,-0.021257707041655804,0.00021675399708585575,-0.061122374407694635,-0.7477545439543598,0.06070115543364944,-5.573966314172583,-0.009191730139498495,-0.020823945310146603,-0.1796612630855786,-0.010220029832019735,-4.295574174098649,-0.30668206090344924,-0.01073038437484968,-0.0019196295854104887,-0.000805792081589443,-0.0952999470823111,-0.0010465705286209776,-1.412836298941637,0.0017684889541587153,-0.009540554192524192,-0.07352282030792036,-0.005923780391590884,-0.10743861649861522,0.3517264323566456,0.029421088495995767,0.002118055340238186,0.0033685036001996184,0.4749887122454315,0.023421750523778043,1.658307947703937,-0.008709105717767968,0.02508028821399994,0.3584556145907319,0.017563810231062325,-1.7881291172104012,0.09463056246013059,-0.0035401635467764542,-0.0007162823938470073,-0.03075713248718681,-0.1395701810342932,0.09793097126470537,0.5106029623077654,0.011736038468500309,-0.002713517874906305,-0.01650076761630715,-0.001993762905445159,2.3869297653865935,-0.4249912982944655,-0.0022411074370577416,0.00019852595144819547,-0.021156746722357584,-0.1731059287620374,-0.07349641286174632,-2.0121833643969644,-0.018169229972378246,-0.002425551494759711,-0.043512139953504954,-0.0010647262327415793,-3.7107060389098727,,,0.4703989703989704,0.9527027027027027,0.3108108108108108,0.0,0.6418918918918919,-0.3310810810810811,1.3393346854186272,0.0188936862253938,0.03051530784701542,0.7124496604850674,0.1563382209072933,0.3224495404990182,2.0517843459036946,0.4787877614063115,2.0503088187403007,1.6220223784406558,0.28663895380847176,0.0482613731050697,0.09338611338610285,0.4282864402996443,6.581127145794887,1556.0,472.68449999999996,243.0,472.0,13107.419579136711,6184.145027299543,106.42093109880898,476.7348999999999,328.0902777777778,590.491884,15343.473326835774,1844.0,510.9289,319.0,460.0,12139.529216557308,6920.654292670404,143.35526470000005,522.4870999999998,213.08333333333334,626.4888199999997,20415.188308714998,2930.0,971.6887999999998,544.0,651.0,24795.61117051024,10811.243130490575,229.81326262213113,987.3866999999999,442.02777777777777,1203.2047159999995,31738.585925409127,3212.0,1386.4349999999993,649.0,533.0,37747.54369244731,11204.494134745604,280.85877738820494,1402.2599999999995,555.3055555555555,1739.2561999999998,37249.257672437285,3103.0,1504.3547999999998,652.0,509.0,41820.13934310376,10477.133685075201,287.8962749946951,1519.3456999999994,597.3333333333335,1898.1896159999997,37075.44502043058,3012.0,1440.8900000000003,637.0,562.0,40520.788398321085,10309.655387521594,285.29492246318506,1457.9515000000006,552.2083333333334,1831.9858760000002,36581.36040315114,3233.0,1457.4528000000007,629.0,652.0,40573.59710301542,11296.342075838402,295.146156754034,1475.4535999999994,649.1388888888889,1849.3671399999998,37711.36369051034,2970.0,1535.0150000000003,649.0,455.0,44365.721534609635,10050.2916345216,304.3766230961651,1554.3400000000004,533.986111111111,1969.2266159999997,38002.67680124261,2877.0,1465.7178999999999,611.0,460.0,41596.83202756011,9689.332186191998,292.3120022345809,1485.1876000000004,547.875,1874.4593519999999,36498.7853235006,579.3846153846155,11.081134615384606,0.775183151930191,49.03846153846152,287.38461538461536,152.7367061021682,2801.2618377108756,17.707300290511952,10.253329487179485,132.812410968661,5.939821179487177,3901.5287364830656,39.928994082840234,0.47894437869823636,-0.4410061914631694,15.139053254437872,107.92899408284022,-13.652509406192753,186.39390979995275,-0.3983744608565639,0.521860026298502,-3.29816138870626,0.16223091387244906,48.93904032756189,95.96449704142012,4.633726035502975,0.20860550920114954,-6.103550295857983,54.19526627218937,-21.542008444125138,462.6730479572865,-2.7181855113782443,4.17077873109798,52.52350655635912,2.457437867192634,-286.1148861420672,-169.680473372781,-4.7085170118342985,-0.09464302326412102,-16.279585798816562,-174.21893491124266,-7.431198640089514,-820.2520913335146,-1.026346046527106,-4.319651955950012,-32.3655683851998,-2.41991659105852,-479.89752138714687,-289.84023668639054,-5.335684467455607,0.054405253268549794,-15.341715976331354,-187.68639053254432,15.23599001384601,-1399.0655448573182,-2.307124265014122,-5.226810272846797,-45.09497703448022,-2.565227487836953,-1078.1891176987608,-75.44378698224851,-2.6396745562130213,-0.47222887801098024,-0.198224852071003,-23.44378698224853,-0.2574563500407605,-347.5577295396427,0.43504828272304397,-2.3469763313609513,-18.08661379574841,-1.4572499763313573,-26.429899658659345,87.57988165680474,7.325851035502946,0.5273957797193083,0.838757396449705,118.27218934911244,5.832015880420733,412.91867897828035,-2.1685673237242242,6.2449917652859845,89.25544803309224,4.373388747534519,-445.2441501853899,25.45562130177513,-0.9523039940828661,-0.19267996394484496,-8.273668639053252,-37.54437869822487,26.343431270205745,137.3521968607889,3.156994348026583,-0.7299363083497961,-4.438706488786623,-0.5363222215647477,642.0841068889937,-108.3727810650887,-0.5714823964497241,0.050624117619289845,-5.394970414201184,-44.14201183431954,-18.741585279745312,-513.106757921226,-4.633153642956453,-0.6185156311637262,-11.095595688143764,-0.2715051893491027,-946.2300399220176,0.70692230517928,0.6047284430117166,0.4320767602935006,0.3443601541254189,0.2830475664679303,0.19614874451222217,0.17579803281990838,0.11286008012339195,0.11114487184143919,0.0666308526026649,0.071959610208914,0.04044053694534973,0.046069451463286934,0.023027421639358378,0.02763416396861717,0.013212660048096897,9.00910112988508,5.693920629296569,4.116195320082884,2.1937969987727763,0.38146675930422436,-0.42518813351754525,4.018026054346625,0.9778174692081216,7.009082571175021,0.9887025695261955,17.42774260886299,10.954367914746575,19.002879138042726,11.705022334433849,1.9838023473634003,0.5363287831196769,3.9980014445768512,2.243757394198397,8.004600152994183,1.173605091187268,4.020390631818933,2.4397330491914215,20.89210208368205,13.303450443887698,0.23045341829831748,0.4847472903817388,0.7022500961293051,0.8241612312803284,0.8455072538478293,0.8534463503983816,1.1834700292061175,1047.5042240658524,0.0,3.0,4.0,0.0,5.0,14.0,1.0,2.0,0.0,4.796804122083049,3.1542102443216895,1.7492657437335337,0.9617891026750494,0.8239059295703886,0.7726238782883366,222.88387291285193,2030.3311814965562,56.458066534424816,26.029886942263538,54.51867991963677,,17.0,1076.0,5.922529168094576,13.575367279421462,43.5502130963649,24.043428533605276,43.01948176238746,12.841643245852019,0.0,18.19910120538483,57.88510733524534,0.0,17.404761904761905,35.25,11.5,0.0,23.75,0.0,0.02960102960102959,-12.25,0.11009578339675391,0.018127507413221777,-0.09196827598353213,0.014079116710695616,0.15065228113440154,0.0,0.5537851037851022,0.8350064350064345,0.44368932038834824,0.5356575963718804,0.8209273182957388,49.55538336048921,0.6990663903395706,1.1290663903395706,26.360637437947496,5.7845141735698515,11.930632998463674,75.9160207984367,17.715147172033525,0.5633477188655984,0.13816689466484267,0.028727770177838577,0.33324213406292746,0.6896551724137931,0.36001123067631124,-0.9181792609377933,-0.04640040070572094,-0.011771528986381967,-0.038257469205741385,0.6399887693236886,1.6322391224357389,0.024519896480961107,0.020926142595329978,0.030226650415476633,-6.239686148425769,0.865468310816937,0.5815719836195411,1.6697176624071477,1.0340315638450508,0.475418799289706,1.2549329613626814,0.8656932386397959,1.2442141030745504,0.5901797981227146,0.533218913160193,0.5760455709917915,1.14250476655004,0.8823525951719917,0.6098778833232381,1.0709555628960707,1.4111888806155382,0.8656969140487356,1.1711983597779259,0.881219310839882,1.1778169516031645,0.6214417937433524,0.49269330620328405,0.5925025298915169,1.1042663769517393,1.1026606710930016,1.182740447475578,1.328431284271392,1.2582138881753582,1.2565969722188457,1.0745710534425454,1.1012244435280536,1.0171962123651497,1.1740552086892049,1.037172256764305,1.1735414585464279,1.0311643096093235,1.1540029473185323,1.1390781831794272,1.2106225986525865,1.0791188188422784,1.2313204356023444,0.9259375571269544,1.1488233329127997,0.9976302358085648,1.1475594920071124,1.0516262550486906,1.130315981222944,1.0521744446581989,0.9980978178740892,0.8236962679769296,1.2521507299543686,0.9957340985174562,0.951382179105517,0.8277254023219874,0.9886723787477715,0.958636720452445,0.842779285498613,0.7526111639555394,0.8233948872289377,0.9891853453466912,0.8940035233872291,0.4809872384322083,0.7370634011537257,0.9742782896291052,0.7284781524384476,0.8231908405229039,0.889384496324114,1.036404908664654,0.5235792656038332,0.4429246216661,0.45012385863550447,1.0466060843587923,0.9115234725888254,0.6413590077672799,0.9427851359523403,0.9718871637874487,0.8615709304824755,0.7425095277766001,0.9058651278097274,0.9219373822519933,0.670734252935054,0.501479744288883,0.6048149307461385,0.9526172754187536,0.9886689991981922,0.6987142150371818,0.8390171174314706,0.9020930411380242,0.8815541419994122,0.8848010776167338,0.9849412186159501,1.087931858300775,0.7282740244277341,0.6813581909557169,0.6813231397709638,1.091887200218753,8.5,0.2959942862973166,5.1111111111111125,2.6944444444444446,2.006666666666667,1.4263888888888885,0.9395464852607709,0.6771541950113379,0.5001495968757873,0.36312500000000003,7633.882219713424,8962.32163660756,3546.6892209747843,3137.798691548607,15.864465901347815,0.4439665567140787,8.821173601018513,0.7984529745017225,0.0,0.6896551724137931,1.488598096779199,3.131191974540559,4.536136475128715,5.323613116187199,5.46149628929186,5.512778340573912,0.20731707317073172,0.007399857157432915,0.08518518518518522,0.04490740740740741,0.0371604938271605,0.025934343434343435,0.0159245166993351,0.01253989250020996,0.010002991937515745,0.00825284090909091,0.45462460222841283,28.52587745389649,12.25,6.668162153501042,218.76395846491707,0.0,4.553091375575803,260.9888593362812,,232.81157008097512,228.50133204047222,225.084555592285,232.67477965621364,308.1470546576193,230.96339549142957,233.1537214560932,281.1413158065104,0.06555444736603498,0.04111323019588818,-0.5411542978895933,0.293658536585366,0.3572361205410769,-0.08502562133892733,0.0632934492481928,-0.0214003012379037,0.04841387768436443,-0.02362185464765217,0.02598011052750969,0.011931674277412534,0.08176758068527866,0.20643514560359427,0.132849206424613,-0.061444527177959764,0.09309692895671272,-0.06962741745493145,0.08153761653897501,-0.0757816848365036,0.20081204201838798,0.19523270327207704,0.2042427697256568,-0.03620288325457698,-0.09975255503737178,-0.14473015706796472,-0.04158564101025738,-0.11307474955047521,-0.20648616552743057,-0.01657198647985099,-0.09973618726136078,-0.019742428859788348,-0.14349704670269522,-0.08300489375150129,-0.13876698322107173,-0.04189602472336384,-0.15545782880162828,-0.14963279544922334,0.02181008672672918,-0.09722052964612138,-0.20295051059146704,0.030999032548584236,-0.15520483185561282,-0.04048922981585433,-0.15841368759507632,-0.10551407371094133,-0.13420645214884455,-0.08587782077486919,-0.04128725567659287,-0.0755310724297365,-0.19315578168745096,-0.0012816834050693262,-0.025865670862276088,-0.0005344655081001346,-0.039339853859395556,0.007790128148348673,-0.07257771516533928,-0.043179548825229834,-0.07778935704996781,-0.002147930376246855,0.047351381095278616,0.2070947590061399,0.21312165534972347,0.005357902197023395,0.12891824256340137,0.01196108379889144,0.046174912383987354,-0.03836328716636122,0.1907929012851931,0.21051901500888004,0.23064283530184324,-0.03574856948718432,0.012739696008307542,-0.02491917716306701,-0.07207332432464673,-0.04892193308550186,-0.03788120009870806,0.05001165701149414,0.01421753244336181,0.05169681349073443,-0.02064250393078066,-0.00969081025398792,-0.026181513201403966,0.047719889888080645,-0.057214707444315976,-0.0157751336986566,0.01997595558469226,-0.03365167243367937,-0.04698324726036027,-0.03753334970692309,-0.05602842987045412,-0.0800347830891464,-0.018451861595574374,-0.025554440971440814,-0.013981674472061008,-0.07418504145015577,21.19803592793449,29.55576194526242,9.88260819828823,14.288593973902174,30.23983160108454,36.47179818662684,38.55175447653565,38.972868920153346,39.306689432973855,75.86142629339112,60.01482800230426,10.605641290913455,1.785670804887579,3.4552861952858054,15.846598291086838,14075.218997653108,12541.226407230506,2811.941749836107,234.0,60.0,79.0,104.0,129.0,145.0,160.0,190.0,218.0,513.3279173720011,41.0,5.313205979041787,6.175867270105761,7.075808863978387,7.9561263512135,8.858084222199162,9.745839095947058,10.649488059999875,11.541794709132889,12.446981455997198,0.5897435897435898,0.9730769230769228,1.1445008786257693,0.5482984682844145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6386036619069554,0.9590246354952239,0.99692793247054,0.5885281565913565,5.0,2.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,2.0,0.0,0.0,10.0,1.0,0.0,0.0,6.0,1.0,1.0,0.0,0.0,9.883888251797686,11.648808995999854,0.0,11.829708897446082,0.0,9.694446914922299,8.78083009534964,0.0,10.197363616602075,44.179309741689295,57.43294005186969,49.34773423153126,6.041840829147961,286.5969097839627,-730.9420273310641,-36.938323923993764,-9.371051632449541,-30.455917805461,509.48078269681463,1299.389154165492,19.519742610431052,16.658835309813995,24.06276211417577,0.47058823529411764,0.8632637130206676,0.13684538987635217,0.0,0.0971434287677742,0.0,0.1367362869793326,9.0,0.1951219512195122,0.2368341825940707,0.49816891035930416,0.7216939055254006,0.8469805003427215,0.8689175488089086,0.8770764620329751,5.950920000000006,,1.6309523809523814,1.9945408528073179,2.0067885001996233,1.697344417344574,-7.669612690975351,1.7832349476882579,1.5768097657793638,-3.0889369498765844,139.4826999999999,13.575367279421462,0.0,24.98116159925024,5.917906046161393,114.56640473625379,6.544756405912575,47.5440958300049,0.0,0.0,4.418840607796598,0.0,5.777652323222656,3.044522437723423,7.316548177182976,5.476463551931511,8.936298185228436,7.6004023345004,10.599954217506415,46.0,10.095620875157103,8.851782612531414,0.0,0.0,0.0,0.0,3.178213472876397,2.3829571162928085,75.89999999999998,0.0,13.093897246663438,0.0,0.0,0.0,0.0,0.0,-0.07376756649039895,89.27106853281,5.316788604006331,8.78083009534964,0.0,50.122519956898486,4.794537184071822,12.841643245852017,106.84871719786952,30.33183534230805,0.0,0.0,0.0,42.76728052618433,49.81108562874252,47.64747411610704,522.314743773029,,465.6346865264444,456.95494067418457,450.1132662797287,465.35414083694764,619.3854320124842,461.9117840239039,466.3264553420603,563.6995792104865,47.64747411610704,522.314743773029,,464.18005332181144,455.1760258595186,448.3234278876587,463.84029311336997,624.5676027496297,460.32133123272274,464.92011149690563,565.7866987712138,4.896870461715993,386.8498166128877,,348.7320303457867,341.95696875650435,336.3067155522308,348.6022583799388,462.96892177551695,345.82807199488974,349.229974528296,423.92177916842064,1.2877695707055956,14.116614696568352,,12.58472125747147,12.350133531734718,12.16522341296564,12.577138941539125,16.74014681114822,12.484102270916322,12.603417711947575,15.23512376244558,2.5065243016263055,260.9888593362812,,232.81157008097512,228.50133204047222,225.084555592285,232.67477965621364,308.1470546576193,230.96339549142957,233.1537214560932,281.1413158065104,74.80392156862746,0.0,6.425465747429577,0.0,27.259573141930908,0.0,0.0,77.76037873270212,6.504932841265416,3.2474248755593456,0.0,0.0,1.412118094050655,2.661206422345492,-2.622758212945491,0.0,0.0,45.90519621412581,687.2249846638811,116.11065154877753,244.23297401416363,353.8186450600398,415.24182306260155,425.99671056476507,429.9967105647651,1397.0,157.7631960076156,108.85270781689647,90.17068183509241,63.050000000000004,63.050000000000004,0.8888888888888888,7.997221704792579,6.357552004618084,4.3758807868582545,5.991316692158655,,5.994380579914094,5.993951679958602,5.992756878185683,5.9947582226549185,5.980841757706491,5.994231222549618,5.994227060846912,5.9937026702950815,0.11826704829346633,0.16192747816645015,,0.16201028594362415,0.1619986940529352,0.16196640211312657,0.16202049250418699,0.16164437182990515,0.16200624925809778,0.16200613677964626,0.16199196406202923,2.7844406419075174,3.0986440226732768,,3.099155280008186,3.0990837271105223,3.098884372672049,3.0992182774840127,3.0968941398649323,3.0991303634678986,3.0991296691830112,3.0990421827589287,398.6600000000019,1343.3890366449828,267.3298163095318,,266.1611756134395,266.2303362306918,266.4697829350771,266.1044676887465,267.82865592188847,266.18827839784626,266.18351894593167,266.1961109485798,36.30781180121575,7.225130170527886,,7.193545286849717,7.1954144927214,7.201886025272354,7.192012640236393,7.238612322213202,7.194277794536386,7.194149160700856,7.194489485096752,8.511283651548185,6.896815982812661,,6.892434868293234,6.892694679413821,6.893593671968532,6.89222178700339,6.8986802521187345,6.892536691575764,6.892518811395265,6.892566115995003,29.642530258223715,15.75510366900893,12.099207488090759,1.084177851945033,-0.5724330576069301,11.477681868310162,5.585458162505023,7.34494042618997,0.0,486.6481298621493,228.15340661293857,-581.8866424549348,-29.40577567352045,-7.460085159678653,-24.245276768955613,405.58628585258054,1034.4147194826141,15.539231655130658,13.261727172854021,19.155828138566918,4668.0,60.0,3.3951212733979323,1.695215214747277,0.25,0.03571428571428571,0.6528338873570456,0.3044367970238797,0.0,0.0,0.0,0.0,0.0,0.0,0.19245008972987526,0.09689627902499089,0.6412467130282048,0.3535713986530089,1.0468506338189116,0.5550820241277937,26.15612529163336,22.374952391433514,17.715147172033525,14.118766319142177,16.982853988075817,11.76892467073333,13.888044592772761,8.915946329747964,11.559066671509676,6.9296086706771485,9.282789716949907,5.216829265950115,6.680070462176605,3.3389761377069647,4.421466234978747,2.1140256076955035,6.722296772973155,3.4387034129812992,10.242327259374987,5.030425914121657,15.023674490424705,6.976563849675675,124.3160176209636,64.24937070128408,40.007911481359926,30.908243890372685,29.611374721347968,28.842199964116286,202.0,240.0,83.18451299999998,49.35548700000005,0.38461538461538464,349.08,11.895833333333334,7.8888888888888875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,11.0,11.0,78.0,0.0,1.0,82.0,11.0,1.0,6.0,76.0,12.0,41.0,70.0,0.0,0.0,2.0,29.0,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,5.0,1.0,3.0,37.0,8.0,0.0,5.0,1.0,0.0,5.0,8.0,0.0,0.0,2.0,1.0,2.0,3.8815637979434374,6.452443198479391,4.391357962102766,4.837273478673773,5.27779573082724,5.570012958444412,5.651831069024102,5.820824495087865,6.066977781418167,6.297569619136539 +3325,NC(N)=Nc1nc(CSCC/C(N)=N/S(N)(=O)=O)cs1,0,44.05714285714286,6.598145714285715,3.1142857142857143,7.6952380952380945,170.2769160559724,175.37694494285716,1.8276229020781432,6.655645714285715,6.480180776014109,8.155643399999999,222.30582449254345,41.2,6.725531428571429,3.4571428571428573,5.390476190476191,157.69632299702002,159.56967211428568,1.997651102,6.872937142857142,3.134567901234568,8.267452114285714,264.3661188498721,31.839285714285715,6.666375,3.107142857142857,6.160714285714286,160.80699016697776,120.02548051785716,1.689584944356125,6.766089285714285,5.364693562610229,8.221170857142857,215.79180824122287,24.868852459016395,6.5303868852459015,2.622950819672131,3.1202185792349724,167.79650912658943,90.70933444262296,1.4986853833343607,6.606965573770491,3.2956638332321395,8.117071245901638,188.09637413610696,28.34375,6.1994140625,2.59375,2.949652777777778,162.7705706438828,105.40847642187501,1.5567051410607189,6.3098703125,3.401987418552812,7.871533765624999,182.19676646813105,21.50769230769231,6.4040676923076925,2.3076923076923075,2.1709401709401708,167.44226948415283,75.13359553846153,1.3797227696429535,6.477732307692309,3.3632030178326477,8.071040815384615,164.72988193172188,20.983050847457626,6.1592677966101705,2.3220338983050848,1.8531073446327686,165.68918931584835,75.23087769491525,1.3205943268218643,6.243077966101694,2.7344894329357605,7.822736338983051,158.33942286316096,21.551020408163264,6.055579591836735,2.4489795918367347,2.8027210884353737,166.73318686567276,77.71993244897959,1.353877376691551,6.14935918367347,2.6970899470899474,7.745748244897959,159.13352798638786,23.53488372093023,6.427823255813954,2.395348837209302,3.3178294573643416,169.0062960300026,85.06474086046511,1.3228464707626044,6.50063023255814,3.3313953488372094,8.091015348837207,165.27011158109903,18.77061224489796,0.1596019591836734,0.03090384507569086,0.6448979591836735,4.139319727891157,1.9345393477964072,82.42806394285714,0.43077615175077544,0.14585795918367342,2.6176040704347585,0.09247750204081628,49.448954167038316,2.2644897959183674,-0.05085281632653063,-0.028649910531054163,0.04489795918367347,0.09251700680272126,-0.08354106362796129,10.110482800000009,0.027959138448979615,-0.037060408163265314,-1.026449917415526,-0.015415481632653084,7.148357506075402,-1.7803061224489791,0.10240977551020403,0.017747426856121802,-0.007653061224489778,1.3094897959183673,0.19644016660413405,-6.978339214285711,-0.061735530867762754,0.0854469387755102,1.5839411953052827,0.0554254413265306,-3.428649075829298,-2.43852793576447,-0.07137235731013715,-0.016118699013746792,-0.05988624958179995,-1.454073826251812,0.08246786398823788,-11.131077344262295,0.029414529304315817,-0.06576704583472733,-0.7037317661328851,-0.03888280227500835,-3.4033150156091962,1.3017091836734693,0.04200379974489797,0.014311994428255663,-0.09311224489795918,0.3180711451247165,-0.07738167895897594,5.861686687500002,-0.022547119190110324,0.0381969068877551,0.5925741105984575,0.02329426849489797,-0.04955347589213424,-4.497205651491366,-0.06275026687598113,-0.009552919959829405,-0.03390894819466248,-1.351822780394209,-0.12916147755623467,-20.530784353846148,-0.02159068171546343,-0.0612707064364207,-0.6851494811283172,-0.04139008665620092,-7.897037286422603,0.07490833621584186,-0.03385193497059836,0.000505660045162507,-0.029401591144932536,-1.1536861524270725,-0.21208938233130437,-0.19213596610169623,-0.02343738454588931,-0.02849408509166376,-0.6212238255140239,-0.011366213420961578,-6.194030422398067,-0.6773177842565596,0.023438682215743474,0.006108711691953532,0.043731778425655975,0.7912925170068027,-0.19334936639734127,-2.1476855918367392,-0.045920486533276954,0.023327113702623904,0.15521543949737446,0.008379705539358628,2.3245197985543626,-2.049017560512577,-0.045603819648789734,-0.008498134240871013,0.0042714760322733756,-0.376750514159152,-0.5464524806547634,-8.771560558139536,-0.040968597401675834,-0.038062411010915995,-0.6690964096424292,-0.028470288087327957,-1.4397779866030065,,,0.4983333333333334,1.15,0.525,0.025,0.625,-0.1,0.8721798879472564,0.0327187375018088,0.0370187375018088,0.7172017928550771,0.1931596086533202,0.2698323319635258,1.5893816808023336,0.462991940616846,1.9383649147852864,0.8257781313147425,0.638282089614836,0.16748809086748798,0.0,1.1125867834705438,9.629855306285725,1542.0,230.9351,109.0,269.3333333333333,5959.692061959035,6138.193073,63.96680157273501,232.94760000000002,226.80632716049382,285.44751899999994,7780.703857239021,1442.0,235.39360000000002,121.0,188.66666666666669,5519.371304895701,5584.938523999999,69.91778857,240.5528,109.70987654320987,289.360824,9252.814159745525,1783.0,373.317,174.0,345.0,9005.191449350754,6721.426909000001,94.616756883943,378.90099999999995,300.4228395061728,460.38556800000003,12084.34126150848,1517.0,398.3536,160.0,190.33333333333331,10235.587056721955,5533.2694010000005,91.419808383396,403.02489999999995,201.0354938271605,495.14134599999994,11473.878822302524,1814.0,396.7625,166.0,188.7777777777778,10417.316521208499,6746.1424910000005,99.62912902788601,403.8317,217.72719478737997,503.77816099999995,11660.593053960387,1398.0,416.2644,150.0,141.11111111111111,10883.747516469934,4883.683709999999,89.68198002679198,421.05260000000004,218.60819615912212,524.617653,10707.442325561922,1238.0,363.39680000000004,137.0,109.33333333333334,9775.662169635052,4438.621784,77.91506528248999,368.34159999999997,161.33487654320987,461.541444,9342.025948926497,1056.0,296.7234,120.0,137.33333333333331,8169.926156417966,3808.27669,66.339991457886,301.3186,132.15740740740742,379.54166399999997,7797.542871333006,1012.0,276.3964,103.0,142.66666666666669,7267.270729290112,3657.783857,56.88239824279199,279.5271,143.25,347.9136599999999,7106.6147979872585,656.9714285714286,5.5860685714285685,1.08163457764918,22.571428571428573,144.8761904761905,67.70887717287425,2884.9822379999996,15.07716531127714,5.10502857142857,91.61614246521656,3.23671257142857,1730.713395846341,79.25714285714285,-1.7798485714285721,-1.0027468685868957,1.5714285714285716,3.2380952380952444,-2.923937226978645,353.86689800000033,0.9785698457142865,-1.297114285714286,-35.92574710954341,-0.539541857142858,250.19251271263906,-99.69714285714284,5.7349474285714255,0.9938559039428209,-0.4285714285714276,73.33142857142857,11.000649329831507,-390.7869959999998,-3.4571897285947144,4.785028571428571,88.70070693709583,3.1038247142857136,-192.00434824644068,-148.75020408163266,-4.353713795918366,-0.9832406398385544,-3.653061224489797,-88.69850340136054,5.0305397032825105,-678.995718,1.7942862875632648,-4.011789795918367,-42.92763773410599,-2.3718509387755096,-207.60221595216098,83.30938775510204,2.68824318367347,0.9159676434083625,-5.959183673469387,20.356553287981857,-4.95242745337446,375.14794800000016,-1.4430156281670607,2.4446020408163265,37.92474307830128,1.49083318367347,-3.1714224570965914,-292.31836734693877,-4.078767346938774,-0.6209397973889114,-2.2040816326530615,-87.86848072562358,-8.395496041155253,-1334.5009829999997,-1.4033943115051228,-3.9825959183673456,-44.53471627334062,-2.69035563265306,-513.3074236174692,4.41959183673467,-1.997264163265303,0.029833942664587915,-1.7346938775510197,-68.06748299319727,-12.513273557546958,-11.336022000000078,-1.3828056882074693,-1.6811510204081617,-36.65220570532741,-0.6706065918367331,-365.447794921486,-33.18857142857142,1.1484954285714302,0.2993268729057231,2.142857142857143,38.77333333333333,-9.474118953469722,-105.23659400000022,-2.2501038401305706,1.1430285714285713,7.605556535371348,0.4106055714285728,113.90147012916377,-88.1077551020408,-1.9609642448979585,-0.3654197723574536,0.18367346938775517,-16.200272108843535,-23.497456668154825,-377.17710400000004,-1.761649688272061,-1.6366836734693877,-28.771145614624455,-1.2242223877551022,-61.91045342392928,0.7586681053718717,0.6420221835555071,0.4629919406168459,0.4393100335729314,0.3455209455769391,0.24861152840956033,0.19898791109460112,0.16105378936148104,0.14176458171371126,0.10228927640073579,0.09217502645955868,0.07463959704994254,0.062038212900717565,0.05274886064209043,0.044706510528725464,0.034205402629710994,16.013727575416127,5.808791263114707,3.5818779242720815,2.2262347847977346,0.49690390806536655,-0.3479461939484267,4.038094213514704,0.9683238077704872,6.017569373624125,0.6426613364155231,14.561386183427878,10.311868462470581,32.06720635960214,11.825304123909126,2.9533699054699345,0.7605929887083298,3.5383113711215763,2.3056740080243796,7.014212921750261,0.303891524112328,3.769710071032001,2.5262148661050374,24.442131180122026,14.70213885192436,0.3760522110609842,0.7000011677691611,0.8106854476912133,0.8400686702609755,0.8400686702609755,0.8400686702609755,2.048554979885041,603.3416169759435,0.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,3.1145637397341277,1.378990357328298,0.785993571552198,0.628571428571429,0.628571428571429,0.628571428571429,55.88231728039227,1449.325469273972,84.40481246646615,41.40929912211348,92.61414066022543,,13.0,406.0,10.209329170397666,8.417796984328938,11.795174354501103,23.05808731625892,5.693927994848461,23.098670827325854,0.0,5.380062770465915,14.374094246664303,22.339976169094495,9.966666666666669,23.0,10.5,0.5,12.5,0.0,0.001666666666666572,-2.0,0.24190476190476173,0.020283140283140266,-0.22162162162162147,0.18761904761904735,0.19309407665505207,0.0,0.6752380952380954,0.9566666666666664,0.4333333333333337,0.6549549549549551,0.7690476190476191,17.443597758945128,0.6543747500361761,0.740374750036176,14.344035857101542,3.8631921730664036,5.396646639270516,31.78763361604667,9.25983881233692,0.5209059233449479,0.22742474916387956,0.08361204013377925,0.20066889632107018,0.375,0.45153912325995615,-1.1350321560731704,-0.08852587114272169,-0.032429490173519156,-0.10318474146119729,0.5484608767400436,1.3786639947246406,0.05786502358988169,0.039390399849275434,0.057444333113526695,-1.1133427599602004,0.8583543533095589,1.0729580323294072,2.095294422204211,1.2696202531645568,0.7483784731352442,1.3653592921847508,0.8429272066705281,1.0463609873544453,0.9827548187781235,1.1346219526587442,0.8903175656005117,0.8369473378689183,1.1644342002261459,0.2500167508557002,0.2722472660368912,1.1162974683544302,0.6972976378297836,1.0748320706257084,1.1424306674226101,1.2925005288073501,0.28992247140074756,0.29565135427912353,0.30274986794361186,1.0844757392101276,0.9790579723577211,1.3843106291090639,1.3891330531924273,0.9383689562149823,1.3625729040490038,0.9836035611652894,0.9868615479314925,0.8103613728214164,1.3783294994254642,1.1155269015640712,1.3378234514334344,0.9907108630418733,1.0884225232669391,0.5024749229460637,0.45637053277369366,1.223892405063291,0.7610904768165483,1.104426451872025,1.0763888780731814,1.2437494939475462,0.5188373875758354,0.49713610412748466,0.5015899171758842,1.0864751110206148,1.25121938164471,1.426930898579244,1.1000560641471961,0.8922103213242453,1.3342839998112153,1.0271736933379527,1.2582483447831572,1.0684588993581465,1.4486690563236932,1.380785671341708,1.5154431634615675,1.137790912497646,0.8754089128630459,1.0707463818931906,0.7100206467374227,0.8552885646856897,1.1871166236586934,1.017037026463463,0.8877808373411906,0.947464050041558,1.0699506843368791,1.0819372549055077,0.9986421998803658,1.129924697865844,1.1433106773195492,0.6085079879478598,0.6685626903655174,0.8915009041591319,0.6508333020297259,1.0649458101605838,1.1294867714516164,1.2062153131237754,0.6233377733998969,0.5641257037394248,0.626018238359208,1.0254436873596222,1.137956109885086,1.3255488868534502,1.1479700890762554,0.8932881954665881,1.1521911506012186,1.2277014766531746,1.1332154814352942,1.1078933242615507,1.2985878167419576,1.3182328604440612,1.3621610846436079,0.9997616773418905,6.5,0.1591735537190083,1.333333333333334,1.5694444444444446,0.6050000000000002,0.4622222222222222,0.300453514739229,0.15625,0.2353395061728395,0.11530864197530868,4325.324395335412,4749.87510024802,2402.7844917179173,2231.9972723824576,14.945442721601548,0.440806296085421,8.357397472135556,0.788289090166075,0.0,0.375,2.0147192772108387,3.7502926596166684,4.343289445392768,4.500711588373537,4.500711588373537,4.500711588373537,0.325,0.01447032306536439,0.04938271604938274,0.07847222222222223,0.027500000000000007,0.027189542483660126,0.02146096533851636,0.011160714285714282,0.018103038936372266,0.008869895536562205,0.5816094179177946,18.05,8.444444444444445,8.8128,124.28559613101793,1.0,3.87511254574771,108.08350964654258,,67.51668899635276,85.57121995687908,86.15053737119341,67.51833783601487,94.66733242218855,85.47076688447075,84.46289278993763,100.21389927869951,0.12064016700008696,-0.3186227574312425,-0.9270662100746274,0.06962025316455697,0.0223507757033921,-0.0431839568024921,0.12265825880623682,0.06490410004209173,-0.2540856074682667,-0.3921333745653301,-0.16669439909664988,0.14456033755392048,-0.09484539445072623,0.6416573833680114,0.5742789226600813,-0.011867088607594908,0.31635386536944515,0.10154363974446676,-0.08465974912529077,-0.14331232269208743,0.5858229420851151,0.6051110682457815,0.599339732403972,-0.0693371403619041,-0.1299120084070399,-0.4471897317250366,-0.5215758419144371,-0.09286158954139866,-0.35128328368889095,0.04262919959843426,-0.13503989796459204,0.06828263167486934,-0.4508978886226521,-0.26884576398752397,-0.42045688320870583,-0.0688248128385651,0.06934825389231972,0.263178471992058,0.46311371265297857,-0.14438291139240506,0.07684140535980365,-0.04000005430084416,0.07111275465069263,-0.05234068575633432,0.26187742582943435,0.22638034425887668,0.2518911949483314,-0.0010021137297412368,-0.23958758472109778,-0.393167271861411,-0.30911752037431056,-0.052580331061343716,-0.32658090441419385,-0.06676601212756916,-0.24907517381554684,-0.050120420147944184,-0.4200710525454755,-0.26174679695333775,-0.4475692546056532,-0.15970079487922942,0.003990724183021931,-0.21210225202587155,0.016362366686864544,-0.0455910748766359,-0.27871395018205963,-0.10963301551498081,-0.002330953281092391,-0.05440733998535963,-0.19535502382686043,-0.23732535891527884,-0.12290787672816827,-0.1252611005982991,-0.03608394736515115,0.14685710836901278,0.19766833793632624,0.06781193490054249,0.1911648698396003,-0.09994594662423457,-0.026055271579902835,-0.10659941676586625,0.15993034479009094,0.059296759678248316,0.09061345034665971,0.04700847242799406,-0.10916093379263749,-0.2857347107895328,-0.2749863073691013,0.006623491315866942,-0.09101749536779408,-0.2824716288542881,-0.1064147347221497,-0.09510414454275111,-0.26095532409709254,-0.2556140621875251,-0.3078617767461126,-0.029116449697590044,2.406851949670727,5.012598495915479,1.4490370645106372,26.395423533596507,44.69907906625758,47.062785044623396,47.22146656474801,47.22146656474801,47.22146656474801,38.76729829570573,16.51556262629485,12.76564179229672,3.3497618173497594,0.0,22.251735669410877,7876.828588495238,7531.764391493959,836.9723976799005,22.0,27.0,25.0,31.0,26.0,26.0,26.0,21.0,23.0,337.04493572000035,20.0,4.553876891600541,5.293304824724492,6.1463292576688975,6.902742737158593,7.756623334538858,8.522578663692576,9.374582815370232,10.14733528540863,10.996903027797362,0.8380952380952381,1.0149714285714289,1.1522501303568415,0.8026808758637916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7077142001710867,1.0005602240896359,1.0340755384455314,0.6388633130760956,1.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,4.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,17.201002431486554,5.835619785757269,5.959554568743835,5.131558479839333,0.0,0.0,10.12295225855515,25.17208666635572,15.734496871016162,0.0,0.0,23.3065916068855,5.693927994848461,260.3445732717489,-654.427151714294,-51.041491111044124,-18.6979186204084,-59.493377428572174,316.2268905521412,794.898317559678,33.36332135542202,22.711380501705083,33.12076323165326,0.46153846153846156,0.8734867207533162,0.15371857684233933,25.32841910584082,0.1266527822647319,5.16746553603331,0.12651327924668374,7.0,0.35,0.39278769967558125,0.7311533887343121,0.8467634620753798,0.8774543290953343,0.8774543290953343,0.8774543290953343,-0.7679999999999998,,3.3750000000000004,1.7973323467262696,1.6623139841507606,3.3721085148715155,-4.519447462847583,1.68061505507956,1.6928988647013359,-2.5605247283056487,83.0924,8.417796984328938,0.0,4.9839785209472085,31.73009189481159,12.1736752296728,5.752853606746789,11.073990765314376,0.0,0.0,3.713572066704308,0.0,5.003946305945459,2.3978952727983707,6.415096959171596,4.59511985013459,7.886457270977689,6.555356891810665,9.394410399304254,29.333333333333332,1.8438114659444025,4.199296789703536,0.0,0.0,1.3338840244418344,0.0,1.3313501044293345,0.0,35.52400000000001,0.0,21.297341176152713,0.0,0.0,-3.9162629078012476,0.0,6.9901791282143915,-0.050922043691704166,40.32875456248945,22.339976169094495,5.131558479839333,0.0,30.949803466524042,15.962182777144456,0.0,12.114749617774471,14.77017849618301,0.0,0.0,0.0,28.093830655232704,24.76999700598803,22.898175356730558,216.16701929308516,,135.4751760599753,170.96270667908553,172.13484334397174,135.48185857906373,190.81132538351886,170.77347226343352,168.75649569340513,200.68385103022962,22.898175356730558,216.16701929308513,,133.45017605997532,169.34510756703193,170.638760758236,133.45859347014084,193.91056807209281,169.26091871386194,167.23288671517395,202.98832328570467,4.4623693333507415,170.23021809656137,,108.96631599558098,138.84920571208903,140.10968836786918,108.96656090735597,147.08753222202793,138.40981703240115,136.54155160260473,157.85131283706525,1.144908767836528,10.808350964654258,,6.773758802998765,8.548135333954276,8.606742167198586,6.774092928953186,9.540566269175944,8.538673613171676,8.437824784670257,10.034192551511481,2.2793745734847946,108.08350964654258,,67.51668899635276,85.57121995687908,86.15053737119341,67.51833783601487,94.66733242218855,85.47076688447075,84.46289278993763,100.21389927869951,35.01960784313725,0.0,0.0,0.0,0.0,20.63103679502465,0.0,36.192643845593594,1.5606667034097588,0.0,0.0,1.5296187641723353,0.0,0.0,0.0,0.0,0.0,22.360215957663346,503.62751721546914,70.51517470237935,131.2602430865834,152.0151305887469,157.5249055930738,157.5249055930738,157.5249055930738,267.0,109.69427683796017,72.94394660842103,65.96185501684693,237.75,175.82999999999998,0.8571428571428571,6.827967747081827,5.321928094887363,3.4850380891646906,4.408718223817035,,4.413769731852528,4.425309205732085,4.427018894151846,4.413737765346621,4.3893324625719,4.423870649678836,4.42245571315518,4.399570055080439,0.17425190445823452,0.22043591119085174,,0.2206884865926264,0.22126546028660427,0.2213509447075923,0.22068688826733104,0.21946662312859502,0.2211935324839418,0.22112278565775897,0.21997850275402192,1.9416261541717281,2.17673117557548,,2.1778763193519075,2.1804873335801553,2.1808736022366553,2.1778690768758366,2.17232433744528,2.180162206034004,2.179842313577477,2.1746540019553176,226.16999999999976,196.04297881559836,96.08957749725508,,95.30079964450637,94.72331997833389,94.62019890222183,95.30280380986626,97.5203742916566,94.83647667321073,94.93720021731208,96.70472316090235,9.802148940779919,4.804478874862754,,4.765039982225319,4.736165998916695,4.731009945111092,4.765140190493313,4.8760187145828295,4.741823833660536,4.746860010865604,4.8352361580451175,5.971481095423609,5.258428035891335,,5.250185381998187,5.244107401528326,5.2430181528768,5.25020641166734,5.273208503827078,5.24530129084786,5.246362803226286,5.264809425269022,24.459977208450542,8.026839885620099,7.070600139703016,16.73559822569537,1.184355891556469,0.0,0.3253887681615857,0.0,-3.9162629078012476,263.2068975098537,150.10725170989832,-377.3240208300096,-29.429067245648792,-10.780686309428846,-34.30218371181905,182.32740118612514,458.3156865465311,19.236339031922533,13.094733901329459,19.0964869394388,1046.0,20.0,2.6658318873023603,0.846921385086654,0.3535533905932738,0.05270462766947299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.07905694150420949,0.16666666666666666,0.09125703849682212,0.16596365263022672,0.11114298921780946,15.173362107437434,12.840443671110142,9.259838812336918,8.786200671458628,9.329065530577354,6.712511267058129,4.974697777365028,4.026344734037026,4.394702033125049,3.1709675684228094,2.3965506879485257,1.940629523298506,1.6129935354186566,1.3714703766943512,1.162369273746862,0.8893404683724859,1.9831025011061416,0.8507994217356769,3.603456078663629,1.373121812027206,3.2358358373445144,1.2723297926755195,72.33210059235431,36.23626400252069,30.928183031674575,30.213615081812925,30.213615081812925,30.213615081812925,94.0,99.0,41.36589499999998,27.764104999999994,0.14285714285714285,20.12,8.756944444444445,4.375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,35.0,0.0,5.0,35.0,5.0,4.0,6.0,29.0,9.0,20.0,26.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,6.0,4.0,1.0,20.0,12.0,0.0,7.0,2.0,0.0,1.0,7.0,3.0,0.0,0.0,1.0,1.0,3.3141860046725258,4.992131822531696,3.8969093676180977,4.09225905573108,4.580493198275651,4.5339426766997235,4.7318028369214575,4.814214812922799,4.4630304188269685,4.738389029774314 +6918092,COc1cc([C@@H]2c3cc4c(cc3[C@@H](O[C@@H]3O[C@@H]5CO[C@@H](C)O[C@H]5[C@H](O)[C@H]3O)[C@H]3COC(=O)[C@H]23)OCO4)cc(OC)c1OP(=O)(O)O,0,29.443037974683545,6.850805063291142,3.759493670886076,10.345679012345679,162.7406339671686,117.36774138522327,1.506563162785025,6.8661544303797495,6.014239903418551,8.35869565822785,219.83270107781786,31.50588235294118,6.7545882352941184,4.564705882352941,8.026143790849673,146.14977116407889,122.07394467002358,1.741809140400001,6.884063529411758,3.240686274509805,8.210048282352938,267.8156572385911,25.83225806451613,6.981574193548389,4.161290322580645,8.104659498207885,155.14122737149665,97.63066161660646,1.4782656741689548,7.039348387096774,4.366155582105402,8.467738490322581,228.38046259184955,22.45320197044335,6.73960591133005,3.812807881773399,6.46031746031746,155.68026458169007,83.35314579686697,1.4150342995053395,6.803659113300493,3.6386709643414625,8.256296926108375,210.41799336198477,21.271186440677965,6.54156779661017,3.51271186440678,5.716101694915254,156.01789938181255,78.66447139084751,1.3702492799833639,6.614723305084744,3.3110221803724644,8.083238830508474,198.82002302237856,20.779467680608366,6.563057034220533,3.334600760456274,5.826362484157162,158.30197206829172,76.90507947276808,1.3172666540095332,6.621317870722435,3.6953989265987564,8.113755064638784,190.53136505740562,19.844202898550726,6.617036231884057,3.286231884057971,5.357487922705314,157.9763829570353,71.82929473897829,1.289022600103699,6.677655072463771,3.5253921393212866,8.175435528985503,188.12164278445883,18.6734693877551,6.597115646258505,2.993197278911565,5.322751322751323,161.69399634835176,67.76576394170067,1.177933748445568,6.635826530612244,3.60193583606282,8.176327877551019,171.57476459003018,19.03942652329749,6.514810035842293,2.942652329749104,5.124651533253684,161.14315930004753,69.62470614202151,1.1916102578877956,6.559487813620072,3.537239848370872,8.094167426523299,169.2098581336177,9.814773273513854,0.23744412754366284,0.04296713913505798,0.7521230572023714,5.179808553947316,1.3307465250999124,45.753136280986716,0.2966698465093386,0.2123668322384232,2.256282856183504,0.16395600096138435,46.33273443880345,1.5660160042225524,-0.04514902702244158,-0.023101755709450972,0.2273259375854171,0.5115623404019868,-0.2006196089145069,7.08831481408134,-0.05820703220570712,-0.03362374958764143,-0.5407062418840878,-0.03198407020933676,0.7997641575883693,-0.10093088886706486,0.013660094587819591,0.001370730023029731,0.06412847403486834,0.18083953118695634,0.22894805758337108,-0.34325741273212,0.029306597984741348,0.010835879072315889,0.4332766232851439,0.010431931745842952,5.098133506448513,-0.6727891118876203,-0.009708915222156264,0.0019215885726353594,-0.022560171375845216,-0.5118786049174083,0.09481130867184809,-3.1124588867816265,0.018205734153027255,-0.010941104234432482,-0.056330977000022694,-0.003957812085659527,-0.7212323956728599,-0.11910710745507404,-0.014293880815492988,-0.0032292747838830954,-0.04921595572200236,-0.2533058694706608,-0.07665988436940319,-0.632563473577417,-0.012340645540180351,-0.012602484458976864,-0.14098672723882907,-0.008897922330189328,-2.622786289619502,0.500623559522671,0.01897964874742819,0.004874477748059098,-0.04085579051324399,0.14839981035865857,0.03313683220383644,2.3442521740314137,0.009509942596935503,0.01709647815287472,0.20856354802708982,0.012346029938168026,1.8532092782157699,-1.7974828680836636,-0.03519424678783821,-0.005258169407440578,-0.027347786609819576,-0.46942808236094724,-0.15990152197209795,-8.296313235885325,-0.040384992630495976,-0.031456063572123535,-0.2543750274062724,-0.025969586587874953,-5.479096633111154,-0.03461310818190448,-0.006207168962762163,0.00041549691756988575,0.019426068777134316,0.14738861652894053,0.006891267601377845,-0.11355047145132746,0.006523877021511679,-0.005306821905176114,-0.18615882940911624,-0.004871710209640651,0.5638175683480515,0.763331168208385,0.0192307238696123,0.003485848121245133,-0.03568550899675461,0.34553618797864794,-0.1058562298950921,3.503055618075214,-0.004779933325838091,0.018286962961431435,0.1161508599761684,0.011216929577157449,-0.6541446805628103,,,0.45289855072463764,1.065217391304348,0.358695652173913,0.03260869565217391,0.7065217391304348,-0.34782608695652173,1.261557248920335,0.020594235912595082,0.03368119243433421,1.1552138971257544,0.21118847468506843,0.2663523668452299,2.4167711460460892,0.4775408415302983,2.0711558731445123,1.3595699253553517,0.0,0.6654712705623894,0.0,0.7115859477891604,8.457602805139251,2326.0,541.2136000000003,297.0,817.3086419753087,12856.51008340632,9272.051569432639,119.01848986001697,542.4262000000002,475.12495237006556,660.3369570000002,17366.78338514761,2678.0,574.1400000000001,388.0,682.2222222222222,12422.730548946705,10376.285296952005,148.05377693400007,585.1453999999994,275.4583333333334,697.8541039999998,22764.33086528024,4004.0,1082.1440000000002,645.0,1256.2222222222222,24046.890242581983,15132.752550574001,229.131179496188,1091.099,676.7541152263373,1312.4994660000002,35398.97170173668,4558.0,1368.14,774.0,1311.4444444444443,31603.09371008308,16920.688596763994,287.2519627995839,1381.1428,738.6502057613169,1676.028276,42714.85265248291,5020.0,1543.8100000000002,829.0,1349.0,36820.224254107765,18564.81524824001,323.3788300760739,1561.0746999999994,781.4012345679016,1907.644364,46921.52543328134,5465.0,1726.084,877.0,1532.3333333333335,41633.418653960725,20226.035901338004,346.4411300045073,1741.4066000000005,971.889917695473,2133.9175820000005,50109.74901009768,5477.0,1826.302,907.0,1478.6666666666665,43601.481696141745,19824.885347958007,355.7702376286209,1843.0328000000006,973.0082304526751,2256.420205999999,51921.57340851064,5490.0,1939.5520000000004,880.0,1564.888888888889,47538.034926415414,19923.134598859997,346.31252204299705,1950.9329999999998,1058.969135802469,2403.8403959999996,50442.98078946888,5312.0,1817.6319999999998,821.0,1429.7777777777778,44958.94144471326,19425.293013624,332.459261950695,1830.0971,986.8899176954733,2258.2727120000004,47209.55041927934,775.3670886075945,18.758086075949365,3.3944039916695803,59.417721518987335,409.20487576183797,105.12897548289308,3614.4977661979506,23.43691787423775,16.776979746835433,178.24634563849685,12.952524075949363,3660.2860206654727,133.11136035891695,-3.8376672969075343,-1.9636492353033326,19.322704694760453,43.482798934168876,-17.052666757733085,602.5067591969139,-4.947597737485105,-2.8580187149495218,-45.960030560147466,-2.7186459677936248,67.97995339501139,-15.644287774395053,2.1173146611120366,0.2124631535696083,9.939913475404591,28.030127333978232,35.48694892542252,-53.204898973478606,4.542522687634909,1.6795612562089628,67.1578766091973,1.6169494206056576,790.2106934995195,-136.57618971318692,-1.9709097900977217,0.39008248024497794,-4.579714789296579,-103.9113567982339,19.24669566038516,-631.8291540166701,3.6957640330645325,-2.221044159589794,-11.435188331004607,-0.803435853388884,-146.41017632159057,-28.109277359397474,-3.373355872456345,-0.7621088489964105,-11.614965550392556,-59.78018519507595,-18.09173271117915,-149.28497976427042,-2.912392347482563,-2.97418633231854,-33.27286762836366,-2.0999096699246813,-618.9775643502026,131.66399615446247,4.991647620573614,1.2819876477395427,-10.74507290498317,39.0291501243272,8.714986869608984,616.5383217702619,2.501114902994037,4.496373754206052,54.85221313112462,3.247005873738191,487.3940401707475,-496.1052715910912,-9.713612113443347,-1.4512547564535996,-7.5479891043102025,-129.56215073162144,-44.13282006429903,-2289.7824531043498,-11.14625796601689,-8.681873545906095,-70.20750756413118,-7.167605898253487,-1512.2306707386786,-10.176253805479917,-1.824907675052076,0.12215609376554641,5.7112642204774895,43.33225325950852,2.0260326748050863,-33.383838606690276,1.9180198443244336,-1.5602056401217776,-54.73069584628018,-1.4322828016343514,165.76236509432715,212.9693959301394,5.365371959621831,0.9725516258273921,-9.956257010094536,96.40459644604277,-29.533888140730696,977.3525174429847,-1.3336013979088275,5.10206266623937,32.406089933350984,3.1295233520269283,-182.50636587702408,0.706314573799439,0.5594282340495753,0.42243997519987914,0.30871358945754235,0.26969844775730234,0.15892913934788827,0.1616274745825057,0.0828084931726682,0.09800084446490462,0.044536318299540786,0.06161193828010684,0.02407620104131849,0.038091803405043714,0.012751429056325144,0.023105946483975875,0.006640716605920745,15.011178487331303,5.679871631719133,3.5645018288097696,2.0075066114318165,0.6234035768446698,-0.5245946543029112,4.027612632592193,0.977046332414399,6.030658179800561,0.5402145855580482,13.653691139558127,10.461872131387693,30.978992511518697,11.691410687417083,3.657487943025566,0.7412989974620117,3.5114783878235007,2.1301350872789273,7.008828710241659,0.2977679420084868,3.7285380117270472,2.4247156284592823,24.437087851397703,14.700036033346247,0.2451680344637012,0.5883312097456401,0.8211953959089975,0.8846009257513069,0.9054197834080173,0.917034330367726,1.183652790674736,1532.8706622846266,0.0,1.0,5.0,0.0,9.0,5.0,3.0,3.0,0.0,4.700588035411754,2.4565895341190536,0.9338536393774346,0.5192348102361235,0.38309699375304174,0.3071476266644346,155.4293034194286,5300.939143303791,163.9312042895215,67.1004954848581,147.5144413576583,,18.0,1358.0,74.64560594698014,29.359463464189513,37.25524173497738,28.189378141658796,0.0,26.352329219478285,19.056471336613846,0.0,0.0,47.15551374591226,20.833333333333332,49.0,16.5,1.5,32.5,0.0,0.04710144927536235,-16.0,0.23962226240707335,0.05085547364028398,-0.18876678876678937,0.05298550724637707,0.24336746987951813,0.0,0.6856540084388174,0.9623188405797103,0.44603174603174406,0.6347985347985334,0.9093333333333332,58.03163345033541,0.9473348519793738,1.5493348519793737,53.1398392677847,9.714669835513147,12.252208874880575,111.17147271812011,21.966878710393722,0.47063253012048184,0.16800000000000004,0.048,0.456,0.5517241379310345,0.4107398971422642,-2.500772508316365,-0.12906533711985285,-0.03165534820653627,-0.10419885451318188,0.5892601028577358,3.5876852376089,0.05921982963521001,0.04541373718492278,0.06523064068379818,-1.6512052104577684,0.7130588350532694,0.9701927971923399,1.556082052652553,0.9420837614977821,0.6601846129625885,1.3968715328661867,0.7180601864470826,1.523578466084199,0.9128649316917161,0.9848064331999811,1.0105126923310692,1.0025858221769657,0.8638405707803682,0.9459625240958831,1.03981335395629,1.0544263782179035,0.9306132260156326,0.9175418321427405,0.8611088070032854,0.8713483789137418,0.9347707343079731,0.6190736979572199,0.971130388310968,0.8361995326922019,0.8753965760917036,0.9473460116136752,0.8593216400624825,1.1155053826182046,1.015382681121033,0.9966559871830472,0.8786519096663137,0.818152437665651,0.9506537094416563,0.8217565828217734,0.951794420569695,0.9912653859101572,0.8655222377729194,0.8991628734392375,0.907881558443086,1.1180536999992778,0.9398357553611739,1.1211573062580331,0.8715373733344246,0.9953875333672252,0.8969621160254294,0.8285828369243234,0.9027128716248167,1.067817807201768,0.8497238513545982,0.8036564590429603,0.7647707587777008,1.0831350109597075,0.9012022861136461,1.0068166388546633,0.8526863700669779,0.9243284454785351,0.8038320345950427,0.7164655114021894,0.8123277072959688,0.9678735119879639,1.116231451078262,1.082574059479391,1.1257661275655046,1.0558992979011135,1.0275960553350563,1.1584248519583764,1.115392518267435,1.1496270053310635,1.077899873559612,1.0366031575823125,1.1010686506271883,1.1089215857653818,0.909483628890875,0.9956133010790011,0.9382716294091377,0.9510664939175502,0.9573300938116989,0.9641534030942999,0.9111559293040993,0.8129930726622385,0.9983267796710892,1.0910502213138864,1.0007587958881363,0.9680794808227375,0.8644535305309009,0.8419548935667239,0.9061515657775904,0.9857310407704186,0.8977241834806587,1.0611869842178316,0.8682995493496592,0.9366895034945913,0.8424933949343317,0.7983702455090166,0.8503297541329565,1.0186678573667816,11.0,0.6068890929496991,6.000000000000003,4.069444444444445,4.874444444444446,2.555833333333333,2.0186394557823126,1.5625708616780045,1.1277636054421762,0.9146913580246916,12418.249413186302,13646.905738126768,5096.170348893931,4746.161562312131,18.722728344657554,0.49461677935605963,9.462152750064625,0.9786964805159883,0.0,0.5517241379310345,1.6031927127653491,3.8471912140580495,5.3699271087996685,5.78454593794098,5.920683754424061,5.9966331215126685,0.21153846153846156,0.008547733703516887,0.07500000000000004,0.04624368686868688,0.05241338112305855,0.025057189542483663,0.019986529265171415,0.015944600629367388,0.012258300059154091,0.011433641975308644,0.4784235247052091,34.44896449704142,13.6125,6.519539509750176,261.68687758102885,0.0,4.788007906994228,321.2159168045925,,250.52176548734573,254.50227224023797,267.9149975307096,250.48601034752824,400.2278283598713,257.5813643577297,258.13575099274743,333.41924157172497,0.15955702292671425,-0.19014589869837598,-0.5376610166396129,0.30224567031755184,0.09876085864450462,-0.15075719164432488,0.15492522240550702,-0.19620137634673587,-0.15832862991473268,-0.2396447060714235,-0.1950771549793398,0.017261320042414124,-0.010283568051381985,0.05752972174604604,0.031901821964947105,0.085263273636901,0.03491239672345536,0.17204482842153704,-0.007502379959792285,0.09878522650538005,0.05102434762576531,0.19203116404386902,0.06362641004094707,0.11003308067608567,-0.06854861474010905,-0.040889262339709465,0.04472228338487369,-0.029995319462430767,-0.0988219158268556,0.07124670768141186,-0.06802722479322248,0.06136698544607287,-0.051519835367459625,-0.024966274439236918,-0.024139476825808213,-0.015566368020550739,-0.012135492500524332,-0.06019892327244241,-0.07515684890568496,-0.06543604168321618,-0.048902554376768805,-0.05760667634555541,-0.01382557623356383,-0.041597235733197076,-0.05934299780310381,-0.062486282184188426,-0.054270183939683955,-0.0566076300349528,0.05100714459432839,0.07993311497644044,0.11344664425381507,-0.05432061964063822,0.028649670892869055,0.02490093460987886,0.05123697225113717,0.032055642691129205,0.08050446471641386,0.09243679153768619,0.0753008725863948,0.03999783955474287,-0.18314053906210453,-0.1482211716580207,-0.12237653037388994,-0.03636078743755518,-0.09062653136151444,-0.1201592632076139,-0.18132774953250497,-0.13612772954741367,-0.148121357937891,-0.11274075265392344,-0.15839363265508913,-0.11825541271145948,-0.003526633495988278,-0.026141598139211703,0.009670108970109934,0.02582831172520138,0.028454452513813816,0.005178497536080696,-0.00248180738373808,0.021990360996483407,-0.024988939417894464,-0.08250686694663954,-0.029713521805085123,0.01216888178902424,0.07777369348595249,0.08099052214326094,0.08112823407414019,-0.04744637018507574,0.06670829324673191,-0.07954650107926782,0.07656427302735425,-0.01611196210898915,0.08611025916184854,0.05147885587919471,0.06841426670195079,-0.01411841300726182,3.983080712703282,30.286145588440743,39.933619526803966,16.84146932834036,41.04627500895297,48.904040478272854,51.886002262763846,52.580343105829435,52.65690006785475,95.27317016464757,62.540216566346174,0.0,30.611678445869913,0.0,32.73295359830138,17825.493093402984,15928.18164472305,4074.87603515336,766.0,80.0,113.0,165.0,233.0,294.0,387.0,509.0,638.0,668.1506216060009,52.0,5.579729825986222,6.478509642208569,7.417580402414544,8.339739766019143,9.282754052485227,10.215557313044739,11.160797311552596,12.100028562960377,13.047098736567225,0.7383966244725737,1.0286582278481011,1.1282753657776283,0.7045659221662844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6586535966042599,1.0115661454455198,1.0424783574727798,0.6400506226054876,4.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,4.0,3.0,0.0,10.0,0.0,10.0,0.0,0.0,0.0,0.0,57.36856853559367,24.41586555099321,35.57810079180605,12.542454139383732,0.0,14.581360389576773,4.565048284931329,0.0,0.0,0.0,47.87955994862805,11.835812092322787,39.4552314454906,357.6122705187822,-2177.307198478001,-112.37123194953773,-27.56085061364558,-90.7211332699167,513.0415739382108,3123.6319448257896,51.559972339983766,39.53964487121252,56.79330808774162,0.5,0.5334758754858738,0.08092147489245737,94.28059522351917,0.08615685954215861,7.596306212571306,0.4665241245141263,9.0,0.1346153846153846,0.25432241012331414,0.6102990201825407,0.8518581662841809,0.9176312072106453,0.9392274241352979,0.9512756488630646,1.1044999999999991,,4.6,4.3578363384188625,2.6963763181070446,4.6004694408358215,-16.776763325845167,3.975151322077094,3.884067896942374,-6.226332773756942,149.3526999999999,76.51497721010178,0.0,0.0,11.835812092322787,55.94152864326395,34.226301317680736,40.95582274893743,0.0,28.747559166419524,4.653960350157523,0.0,6.052089168924417,3.044522437723423,7.639642287858013,5.351858133476067,9.323043861889268,7.4127640174265625,11.063116543010013,58.33333333333332,6.471926747336638,0.0,0.0,0.0,0.0,0.0,2.0972936821022317,0.0,81.26399999999998,0.0,25.220714611900462,0.0,0.0,0.0,0.0,0.0,-0.519747812318309,89.13375389643264,23.471198976912014,0.0,28.747559166419524,97.19140361048258,33.043900238003395,11.835812092322787,35.63596410869131,24.26546827384644,0.0,0.0,0.0,55.66070785113647,52.033634131736534,59.64626077758635,642.431833609185,,501.50549195316023,508.85786688780286,535.7251747226593,501.45901050585184,805.7254955352535,515.0228274372357,516.1298325548952,668.2083319553957,59.64626077758635,642.4318336091851,,497.50298210032395,504.90957298401065,533.2632659104745,497.45538130561056,817.2324200455879,511.3933414475133,512.5835096924695,673.0648159172065,5.172125390760458,456.8523627962296,,360.87354652659457,363.8756429171485,382.60692618204286,360.8643125331175,573.6192697483945,368.1912802427365,369.16298386230875,474.65989025592967,1.2966578429910076,13.96590942628663,,10.90229330332957,11.062127541039192,11.646199450492594,10.901282837083736,17.515771642070728,11.196148422548603,11.220213751193373,14.526268085986862,2.608031244877789,321.2159168045925,,250.52176548734573,254.50227224023797,267.9149975307096,250.48601034752824,400.2278283598713,257.5813643577297,258.13575099274743,333.41924157172497,79.91372549019607,0.0,4.273946386043052,0.0,0.0,0.0,41.01849445167355,82.3557902403496,0.04307296877529576,0.0,56.391874136377375,0.0,-9.358539799117565,0.0,0.0,0.0,0.0,50.563999185833524,464.4728219168362,126.65222430846258,303.92810591058594,424.2242415951738,456.97912909733736,467.7340165995008,473.7340165995008,3283.0,181.62179561323862,406.18102254015696,100.5409968004653,217.17,207.35999999999999,1.0,9.373842724005467,6.700439718141092,5.227253802934014,6.666313801872726,,6.685145841712082,6.675130007979319,6.669381344675562,6.685228995857293,6.629756084251035,6.673979697731681,6.674594444522627,6.644678204571329,0.11363595223769594,0.14491986525810274,,0.1453292574285235,0.14511152191259388,0.14498655097120788,0.14533106512733246,0.14412513226632684,0.14508651516808002,0.14509987922875275,0.14444952618633322,3.1799423581851545,3.4231233572610127,,3.4259443300730763,3.4244449844425255,3.423583407198152,3.4259567686391184,3.4176243173103367,3.4242726418255507,3.424364748560671,3.4198725677865682,427.73000000000127,808.0058084275239,383.59079761088583,,379.0649581360167,381.27352578577336,382.4994273816361,379.03669229301266,391.360878488003,381.5298009390541,381.4281891192321,388.0625503387715,17.56534366146791,8.338930382845344,,8.240542568174275,8.288554908386377,8.315204943079046,8.239928093326363,8.507845184521804,8.294126107370742,8.291917154765915,8.436142398668945,8.220625550638232,7.475632656672485,,7.463763887390013,7.469573336491951,7.472783459719045,7.4636893173293855,7.495686400696987,7.470245266343183,7.4699789035243995,7.487222842338359,68.11813709298195,32.4953754166942,22.017570690275225,1.6532104023072152,-2.252119805992831,6.471926747336638,-7.182084525648027,1.721814726817558,-2.404941855883047,543.8604903432521,311.356498152172,-1895.6808829187567,-97.8364451032335,-23.995960543275398,-78.98670345494818,446.6816187155699,2719.6021614312476,44.89088813790308,34.42534381558541,49.44731202602268,7107.0,88.0,4.6753232160465155,1.899214735681884,0.3535533905932738,0.044721359549995794,1.001909576389553,0.3238871646629126,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.07757530498190829,0.6355532736974921,0.22753214653022016,1.2163968343703273,0.3963617020879421,32.49047039477419,25.733698766280465,21.966878710393715,16.053106651792202,21.575875820584187,12.71433114783106,18.263904627823145,9.357359728511506,16.170139336709262,7.34849251942423,14.355581619264893,5.609754842627208,11.198990201082852,3.748920142559592,8.942001289298664,2.5699573264913282,9.192773641129316,3.6824360851512474,15.913581217989169,5.71972306172048,27.445421225854645,8.54033296849888,170.62882628051653,68.76922416111758,40.12590508616282,32.4643432361435,30.749706255951395,30.130228680581684,264.0,325.0,86.89616899999999,60.041831000000094,0.4177215189873418,634.17,15.42361111111111,9.708333333333329,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,2.0,12.0,12.0,79.0,0.0,0.0,85.0,12.0,2.0,8.0,77.0,14.0,52.0,71.0,0.0,0.0,0.0,29.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,14.0,4.0,4.0,46.0,17.0,0.0,0.0,16.0,1.0,7.0,7.0,0.0,0.0,0.0,0.0,2.0,4.110873864173311,8.253553113444694,4.6913478822291435,5.190175207928333,5.757323241584231,6.318292209699074,6.68046250654314,7.1224129266460485,7.546215254454886,7.9185263009428395 +3229,CCn1cc(C(=O)O)c(=O)c2cc(F)c(N3CCNCC3)nc21,0,25.65,6.68224,3.475,9.7,168.75958735624334,102.37156065374427,1.4117945095608249,6.703127499999999,7.023611111111111,8.104583,217.0162552756928,26.642857142857142,6.641761904761905,4.214285714285714,8.642857142857142,151.60001767073686,102.04333944845719,1.7135122603809532,6.759964285714285,3.541005291005291,8.00602533333333,260.4960502487228,22.87837837837838,6.5826189189189215,3.7837837837837838,7.45945945945946,161.73629740271474,86.5099908604108,1.470874113902595,6.657341891891893,3.741741741741742,7.997359243243238,219.686155517676,20.377551020408163,6.472784693877552,3.3469387755102042,6.489795918367347,164.95805805160947,76.41761702556734,1.321073074839612,6.532688775510204,3.6298185941043077,7.9320759999999995,194.50484590229394,20.32323232323232,6.603372727272727,3.090909090909091,6.282828282828283,164.61578972690188,75.5308908923313,1.2906556517362224,6.651214141414145,4.505050505050504,8.06472391919192,189.33828414921436,19.473684210526315,6.597146315789473,2.9473684210526314,5.2631578947368425,165.57967607926994,71.86452202765473,1.2618512726125048,6.647157894736841,4.290058479532163,8.049385684210524,184.52089873861328,18.1123595505618,6.746786516853932,2.7191011235955056,4.292134831460674,168.12422806628706,64.86727053742021,1.1714820670330677,6.775370786516854,4.418851435705367,8.21843164044944,170.33131932278982,15.283950617283951,6.608529629629631,2.419753086419753,3.259259259259259,170.04246353568197,52.964842976928395,1.1060823384751852,6.627259259259259,4.590534979423866,8.12738138271605,153.73410690748472,11.73611111111111,6.077625000000001,2.125,2.0972222222222223,166.73887605123727,38.69374337086667,1.0558326675775556,6.123530555555558,2.92476851851852,7.6679891666666675,134.42565223063534,8.010000000000002,0.2077597499999999,0.02970668208300887,0.6693749999999999,4.86,2.0324957016888474,38.24173360034665,0.21558851593122436,0.18659493749999992,3.0568750000000002,0.12508795999999997,45.86232711416145,0.1828571428571425,-0.016407011904761883,-0.014479787116768113,0.280029761904762,1.592380952380952,-0.550651431573923,0.907052533011313,-0.016494753721209426,-0.011782497023809492,-0.15069113756613753,-0.012263626666666673,-0.7187781266773865,0.7318918918918917,0.002782614864864878,0.00043399363316777345,0.09312499999999999,1.1210810810810807,0.0035782395749358086,3.5402716353850585,0.016624528970736463,0.004789150337837847,0.34738551051051053,0.0022285535135135133,5.206891677510489,1.2461224489795917,0.009521015306122434,-0.003231079090479494,0.016594387755102028,0.8461224489795917,0.0974360579039411,5.989571791791719,0.012617428430061098,0.011701924744897937,0.12780470521541945,0.0018938971428571437,6.306550337713077,0.46020202020202006,0.024310957070707084,0.004622872592802399,-0.0759406565656566,0.23393939393939372,-0.09191141173697673,2.1776771928988485,-0.0018378877993392687,0.021599910984848498,0.327412317620651,0.017045625858585843,0.026978446576351595,-0.24421052631578957,-0.0006752236842105102,-0.0019483666303849944,-0.17121710526315792,-0.7578947368421053,-0.1195482866367495,-1.2873019954219538,-0.029989030001624634,-0.0001695164473684037,-0.03133406432748535,-0.0005806821052631625,-4.576724240184394,-2.094831460674157,-0.03472053651685387,0.0002881721130023231,-0.19662219101123593,-1.8184269662921346,-0.1832225448278062,-10.055116286156933,-0.04081235122088363,-0.03402530266853926,-0.4575616416978777,-0.018964465617977537,-11.466666528305048,-2.3871604938271602,-0.026191293209876496,-0.0013495307405979246,-0.08912808641975306,-1.4883950617283952,0.21485978197223995,-11.356287884360045,-0.00789210572260402,-0.029028486882716,-0.011813271604938162,-0.009828169876543214,-8.616540280763438,-1.1322222222222218,-0.005002250000000038,0.0029539957946113898,-0.024583333333333315,-0.18222222222222198,-0.1011538683364496,-5.75178888330374,-0.032960831150994865,-0.007749486111111151,-0.3006250000000001,-0.00041692666666664677,-9.165149160988083,,,0.45155279503105594,1.2173913043478262,0.5217391304347826,0.043478260869565216,0.6956521739130435,-0.17391304347826086,0.8035116582156918,0.016962511170432376,0.028179902474780204,0.97315274506216,0.24232856204900435,0.23697908166635004,1.7766644032778518,0.4793076437153544,2.0308706941971657,1.3547840276239804,0.37138831235687775,0.2267130255350047,0.0779853286813027,0.6760866665731852,8.003211715600013,1026.0,267.2896,139.0,388.0,6750.383494249733,4094.8624261497707,56.471780382432996,268.1251,280.94444444444446,324.18332,8680.650211027712,1119.0,278.954,177.0,363.0,6367.200742170948,4285.820256835202,71.96751493600003,283.9185,148.72222222222223,336.2530639999998,10940.834110446358,1693.0,487.1138000000002,280.0,552.0,11968.486007800891,6401.739323670398,108.84468442879202,492.6433000000001,276.8888888888889,591.8045839999996,16256.775508308025,1997.0,634.3329000000001,328.0,636.0,16165.889689057729,7488.9264685056,129.465161334282,640.2035,355.7222222222222,777.343448,19061.474898424807,2012.0,653.7339,306.0,622.0,16296.963182963285,7477.558198340798,127.77490952188602,658.4702000000003,445.9999999999999,798.4076680000001,18744.49013077222,1850.0,626.7289,280.0,500.0,15730.069227530645,6827.129592627199,119.87587089818797,631.4799999999999,407.55555555555543,764.6916399999998,17529.485380168262,1612.0,600.4639999999999,242.0,382.0,14963.056297899548,5773.187077830399,104.26190396594302,603.008,393.27777777777766,731.4404160000001,15159.487419728293,1238.0,535.2909000000001,196.0,264.0,13773.43954639024,4290.1522811312,89.59266941649,536.808,371.83333333333314,658.317892,12452.462659506262,845.0,437.5890000000001,153.0,151.0,12005.199075689083,2785.9495227024004,76.019952065584,440.8942000000001,210.58333333333343,552.09522,9678.646960605744,320.40000000000003,8.310389999999996,1.1882672833203547,26.775,194.4,81.2998280675539,1529.669344013866,8.623540637248974,7.4637974999999965,122.275,5.003518399999999,1834.493084566458,7.679999999999985,-0.689094499999999,-0.6081510589042608,11.761250000000002,66.87999999999998,-23.12736012610477,38.096206386475146,-0.692779656290796,-0.49486487499999865,-6.329027777777776,-0.5150723200000002,-30.188681320450232,54.15999999999999,0.20591350000000097,0.03211552885441524,6.891249999999999,82.95999999999998,0.26478972854524985,261.98010101849434,1.2302151438344981,0.3543971250000007,25.70652777777778,0.16491296,385.3099841357762,122.11999999999998,0.9330594999999985,-0.3166457508669904,1.6262499999999989,82.91999999999999,9.548733674586227,586.9780355955885,1.2365079861459876,1.146788624999998,12.524861111111107,0.1856019200000001,618.0419330958815,45.55999999999999,2.4067847500000012,0.45766438668743753,-7.518125000000004,23.15999999999998,-9.099229761960697,215.590042096986,-0.1819508921345876,2.1383911875000012,32.41381944444445,1.6875169599999986,2.670866211058808,-23.20000000000001,-0.06414624999999846,-0.18509482988657447,-16.265625000000004,-72.0,-11.357087230491203,-122.2936895650856,-2.84895785015434,-0.01610406249999835,-2.9767361111111086,-0.05516480000000043,-434.78880281751736,-186.44,-3.0901277499999944,0.025647318057206756,-17.499374999999997,-161.83999999999997,-16.306806489674752,-894.9053494679671,-3.6322992586586427,-3.028251937499994,-40.72298611111112,-1.687837440000001,-1020.5333210191492,-193.35999999999999,-2.121494749999996,-0.10931198998843189,-7.219374999999998,-120.56,17.403642339751435,-919.8593186331636,-0.6392605635309256,-2.351307437499996,-0.9568749999999911,-0.7960817600000003,-697.9397627418385,-81.51999999999997,-0.3601620000000027,0.21268769721202008,-1.7699999999999987,-13.119999999999983,-7.283078520224371,-414.12879959786926,-2.37317984287163,-0.5579630000000029,-21.645000000000007,-0.030018719999998566,-659.8907395911419,0.7200049327558942,0.5510239078369034,0.4409630322181261,0.2980954267869433,0.27803780116446447,0.14903005708456535,0.17272487653089985,0.07942494838546327,0.10852952458152758,0.041317591100856164,0.06777572245787997,0.021693625384201724,0.0431422908606252,0.010504184082903609,0.02720673231145273,0.005690559211416087,9.004068031463486,5.686246752371358,4.107719958756325,2.1786479989349052,0.497198200975995,-0.44862537512082484,3.2921878859317113,0.9727209403185106,7.004062424257421,0.9880120470784354,17.42477191971888,10.952021758574643,19.000141576235674,11.702689435291921,2.0005694870804303,0.5458440561910827,3.9886733317112464,2.2265648076197615,8.001919871221045,1.373527391625833,4.009957810144243,2.4217722504238557,20.891050299020442,13.304119688224269,0.3224372994834181,0.6587410701782745,0.7650138891818417,0.83314004467039,0.83314004467039,0.83314004467039,1.7498309824920522,827.5622879687312,0.0,4.0,6.0,0.0,3.0,0.0,2.0,0.0,0.0,3.5211278684386755,1.6428839202567755,1.0493542112759267,0.6688721875540855,0.6688721875540855,0.6688721875540855,184.272869308465,1277.798260144814,71.46073881293012,31.944956503620354,69.98266815577608,,11.0,405.0,17.215316520898284,13.979489415818463,16.76753848399682,25.28144643850545,19.15587988028676,6.196843571613076,4.567099647791355,11.823646930541102,10.30076712495354,5.106527394840706,10.385714285714286,28.0,12.0,1.0,16.0,0.0,0.04844720496894408,-4.0,0.21381868131868126,0.04635093167701865,-0.1674677496416626,0.04944099378881972,0.22211907983761836,0.0,0.6553571428571432,0.9180124223602484,0.44153846153846193,0.6090062111801245,0.8685714285714287,18.48076813896091,0.3901377569199447,0.6481377569199447,22.38251313642968,5.5735569271271,5.450518878326051,40.86328127539059,11.024075805453151,0.4918809201623816,0.17193947730398898,0.0,0.41403026134800547,0.4,0.32152250091315115,-0.795839943764978,-0.08034813941575507,-0.019895998594124453,-0.07958399437649781,0.6784774990868487,1.679383225701311,0.05807846667220237,0.041984580642532784,0.05597944085671037,-3.0288318955740934,0.7114990190832886,0.7042677041287215,1.5105976976620012,0.6762705082032814,0.39884626690182245,1.397488990391821,0.7120800807980592,1.1871764771315045,0.6782151732125257,0.598564580879036,0.7329568614871372,1.0035342458169583,0.7525432736106893,0.7104352405746203,1.0014878025842522,0.994019229313347,0.6262512512512513,1.0335318511295915,0.7511022135089603,0.9144823650257172,0.6972246927812445,0.4604108299671579,0.6787008766319964,0.8438000899742478,0.7576626156080408,0.7792762175679222,1.0345259152416801,1.0627107986051563,0.7605032753842278,0.964665073386485,0.7581731343539608,0.9233379578075636,0.76466060859442,0.6826122393344988,0.7790266349456847,0.8393484091383467,0.8766503991223091,0.8089315138803792,0.7526903184104914,1.1696799932094049,0.9463461778276593,1.0322623665771335,0.8752815774517161,0.9863054788040005,0.8071675107054888,0.8311665692569392,0.7970797170053437,0.9566314391470151,0.9859550561797751,1.1043281837238497,0.94289167821043,1.3032581453634084,1.1773066926575697,1.2954454459102887,0.9988887585644066,1.170271034171743,1.0854958992319086,1.081269930089997,1.0778801993665728,1.0764900815721532,1.2623616546732315,1.405772259826203,1.0915058650697502,1.3420199540490354,1.4460223331946178,1.2619964072854728,1.2672239531800167,1.1664078762995416,1.3997606897934534,1.4256828831064012,1.4006792778709165,1.1766806237597651,1.3336916816941784,1.3615813725014376,1.0341706726380826,1.0339938444513608,1.3585009907026369,0.9935416978643392,1.3357343128264896,1.0080824216327133,1.3769944063202961,1.3101034654227595,1.3251187700535183,1.1374004166944784,1.1419969829379941,0.9242902559326337,0.5529221747795687,0.819327731092437,0.9543252743484225,0.966755165055464,1.1562397475358692,1.1678925186155957,0.955021834841223,1.0222006406324542,0.8814416637966863,1.2508333959970936,4.5,0.037241097847158455,3.1111111111111125,2.0,2.0311111111111115,1.2569444444444442,0.6269387755102042,0.2552083333333333,0.18468127991937514,0.10125,4771.702467541116,5250.848555683822,2289.215400908344,2111.9759612236517,12.76610020455953,0.46027955737244786,6.890125253032553,0.8528110499792121,1.0,0.4,1.800800226448687,3.679044174630587,4.272573883611436,4.653055907333277,4.653055907333277,4.653055907333277,0.18,0.007448219569431692,0.0864197530864198,0.04878048780487805,0.05207977207977208,0.03591269841269841,0.022390670553935864,0.012760416666666668,0.014206252301490396,0.011250000000000001,0.47124827047529294,17.8112,7.486111111111111,3.52,130.90360795598875,1.0,4.068998767583444,100.72915282835712,,72.75319671647132,70.50909357562561,69.22526167849739,72.70984070406887,107.78598773499144,71.8168313341484,72.91669341573507,94.94217469747096,0.022828607098269973,-0.07897108032119739,-0.48742525591742275,0.41834511582410755,0.32765040172447574,-0.2709237865134839,0.02371891772717884,-0.07651035422717728,-0.06314478399934885,-0.0492958127388714,-0.09804002452887292,-0.01567251755211176,0.09137227114755202,0.013393426132178535,0.014609293355450217,0.13912231559290383,0.23067511956400838,0.001760515199103529,0.09257612827868679,0.07711231230906526,0.02566602503799359,0.11364073130583047,0.01781589142163254,0.11353308925099652,0.1555708425692374,0.045827044488272815,-0.1087660709281146,0.02479086872844374,0.17409926933736455,0.04793912126012332,0.1566239609947344,0.05852551271370238,0.06271298086475655,0.04180894057343511,0.01514052305959058,0.13751047394552574,0.05745343573058927,0.11701475897380072,0.15561726415238114,-0.11345009384225077,0.04813567776530735,-0.04522096241611011,0.05694504374872556,-0.008524980059353345,0.11575829052086961,0.10710687143591117,0.13626911701642466,0.0005882485315059632,-0.030488205532557995,-0.003250021643800161,-0.06558681393434337,-0.2557865251363704,-0.15594541910331383,-0.05881846959745798,-0.03366222904210296,-0.13910309587729405,-0.0009084729180736952,-0.010250358397868855,-0.004642190225687289,-0.09979267359878877,-0.261527023804514,-0.16711868644842845,0.009700582252743298,-0.29373996789727125,-0.3741619272206038,-0.09014658416033174,-0.2629356815054479,-0.1893067033028017,-0.1823484769973423,-0.1496828106147218,-0.15160904069406475,-0.2500236523053439,-0.2980225335614432,-0.1260652903648397,-0.045428524694442626,-0.13315120286797844,-0.30625412792765333,0.10571229341036638,-0.29696059292293964,-0.036607264021065525,-0.15556953083315034,-0.0038644928578820403,-0.07857007082490765,-0.18787839220009417,-0.14135108891663192,-0.024077089041549385,0.0994387655395877,-0.03672580143168376,-0.037494284407864606,-0.0497683061530701,-0.15040607058806563,-0.1528876944517296,-0.04153106303385725,-0.09834389695358825,-0.00333306792009916,-0.19984047338404795,5.537807863997556,13.051380336650084,8.857542075624217,18.56710356285279,36.469283531542956,40.460483331701354,40.84400921161297,40.84400921161297,40.84400921161297,46.710025966534815,31.16003263535155,8.541931184208188,5.214399587305108,1.7936625596699622,15.54999333118326,4356.155740673697,3614.5664489962887,905.670095233027,113.0,36.0,50.0,67.0,90.0,101.0,113.0,120.0,129.0,320.1284686240005,25.0,4.812184355372417,5.68697535633982,6.588926477533519,7.488293515159428,8.398184404834035,9.305741456739435,10.219210285143431,11.130683597771489,12.046038860794662,0.7,1.0178,1.1467087488788041,0.6667313362750813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.654917380239521,1.0010784313725491,1.0286962855061907,0.6357085640138409,2.0,1.0,0.0,0.0,0.0,2.0,3.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,5.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,19.890325377488868,11.210628712464723,11.635083618880923,5.428790391900541,0.0,4.794537184071822,14.16893075269385,0.0,0.0,0.0,12.990104268152233,38.92062560117595,5.386224214464796,165.9813536541919,-410.840892264234,-41.47856808138328,-10.271022306605852,-41.08408922642341,350.2542229626569,866.95736788058,29.982170731546834,21.673934197014503,28.898578929352666,0.45454545454545453,0.6507046379197705,0.1929106913358991,142.43972155752425,0.13765421106526274,73.10759612161883,0.3492953620802293,6.0,0.12,0.33837364848628243,0.6912991135984999,0.802824428935067,0.8743176954614149,0.8743176954614149,0.8743176954614149,0.6633000000000002,,1.6547619047619047,1.9900577693538684,1.7741040929820366,1.6855864241423026,-7.317814733608282,1.780196115214998,1.6200363731051548,-3.0209416124484996,83.67700000000002,14.291479626587348,0.0,14.867866772744893,0.0,13.4684936056032,31.078935354500782,33.86721054878994,0.0,0.0,3.9318256327243257,0.0,5.272999558563747,0.0,6.831953565565855,0.0,8.49351506406166,0.0,10.211376582296397,28.0,2.3611887440161246,4.323670634920635,0.0,0.0,0.0,0.29219175170068024,-0.7908894977744185,1.5608364040060467,40.712,0.0,23.44355711308092,0.0,0.0,0.0,0.0,0.0,-1.3280651933510879,45.86834995515217,15.64548872675735,10.208277825509848,0.0,46.80593647518142,6.544756405912575,5.817220841045895,17.28172587545944,17.057747824146507,0.0,11.033401435232523,0.0,26.66925345100325,26.196695209580838,29.6291696679021,201.45830565671443,,145.40988391071477,140.92105985190858,138.44449298627296,145.31733083335897,217.68434719052877,143.54001247169361,145.73942687316259,190.48336981102395,29.6291696679021,201.45830565671446,,144.15685180487668,139.44741959702816,137.21060688019222,144.03842618510183,222.8897902035912,142.20604355779886,144.5120287363,192.90529100739036,5.008888903406074,145.9492680638717,,103.61626113036797,100.1352566555296,97.75461883188915,103.58209722217313,152.2424298280148,102.15089858927932,103.85536351979002,135.6528307809843,1.2882247681696566,8.759056767683235,,6.322168865683251,6.127002602256895,6.019325782011868,6.318144818841694,9.464536834370817,6.24087010746494,6.336496820572286,8.281885643957564,2.5044444517030366,100.72915282835712,,72.75319671647132,70.50909357562561,69.22526167849739,72.70984070406887,107.78598773499144,71.8168313341484,72.91669341573507,94.94217469747096,40.043137254901964,0.0,1.8105868921642732,0.0,14.432408824640966,0.0,9.130171139086181,41.14785142024763,3.1429162636639183,3.1803355490242216,0.0,0.0,0.0,1.8202943121693123,0.0,0.0,0.0,25.428342560553638,335.9168839637706,72.03200905794748,147.1617669852235,170.90295534445744,186.12223629333107,186.12223629333107,186.12223629333107,867.0,123.67623830968826,180.31869265307822,57.741670403211984,87.46000000000001,87.46000000000001,0.8333333333333334,9.041660267906277,5.643856189774724,4.1490230885441015,4.716674013534771,,4.694758327075161,4.694874844020687,4.693255956080603,4.694670137871146,4.678049824335469,4.694744368337536,4.694788810679585,4.688329570404536,0.18039230819756963,0.20507278319716396,,0.20411992726413744,0.20412499321829072,0.20405460678611317,0.2041160929509194,0.20339347062328125,0.20411932036250155,0.20412125263824282,0.20384041610454504,2.2557820291158808,2.3840130159949084,,2.379355759739089,2.37938057794943,2.3790356982304313,2.3793369749526994,2.375790441817514,2.3793527864745663,2.379362252832734,2.377985473593036,223.11999999999978,173.1150765064255,130.9422815646824,,132.72897523493293,132.71391895591256,133.04482979543735,132.7064354498218,135.571170179464,132.73205458799745,132.7401435785538,133.90438448797968,7.526742456801109,5.693142676725321,,5.770825010214475,5.770170389387503,5.784557817192928,5.76984501955747,5.894398703454956,5.770958895130324,5.771310590371905,5.821929760346943,5.986865678415382,5.707665750301227,,5.721218391869358,5.721104949171391,5.723595260493939,5.721048559328121,5.74240586654085,5.721241591907922,5.721302532304805,5.730035119591882,15.993245228647012,29.58752206017087,12.299520057346985,-0.7885500125976317,-1.73976256674489,1.0978514739229022,1.2633372700932224,4.953503155828192,0.0,269.733388975084,85.68547981131688,-212.09068491580754,-21.41271251073412,-5.30226712289519,-21.20906849158076,180.81369075361354,447.55423671005684,15.47786319582489,11.188855917751422,14.918474557001893,1116.0,41.0,1.639150070743875,0.5986571144156685,0.0,0.0,0.581080967660079,0.11339600523154114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20297854933417275,0.08817656065588989,0.37848127159090744,0.09915420585810844,16.560113453385565,12.673549880248776,11.024075805453153,7.452385669673582,10.00936084192072,5.365082055044352,8.636243826544993,3.9712474192731637,7.271478146962347,2.7682786037573632,6.0998150212091975,1.952426284578155,4.357371376923146,1.0609225923732646,3.0743607511941584,0.6430331908900179,4.270647107567652,1.3349252749271026,6.9631323076903575,1.8127883758514807,11.506403884080235,2.4285252285431373,73.90189761472192,37.223259759441525,28.456445483308343,26.546180768706964,26.546180768706964,26.546180768706964,122.0,147.0,43.748480999999984,25.033519,0.4,119.08,8.25,5.111111111111111,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,10.0,11.0,40.0,0.0,1.0,42.0,11.0,2.0,6.0,36.0,13.0,25.0,29.0,0.0,0.0,0.0,15.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,6.0,2.0,3.0,23.0,8.0,0.0,4.0,3.0,0.0,3.0,3.0,0.0,0.0,1.0,2.0,2.0,3.5115454388310208,7.630723856246857,4.1666652238017265,4.836281906951478,5.483759050678235,6.126596221098978,6.571670467302189,6.975705940890645,7.313855601965274,7.680081813864114 +3386,CNCCC(Oc1ccc(C(F)(F)F)cc1)c1ccccc1,0,24.65,6.636872500000001,3.15,9.05,169.78437545247453,100.14403078623278,1.4549570821820503,6.6564725,7.1168402777777775,8.0168619,218.75329241819583,25.048780487804876,6.435463414634147,3.7804878048780486,7.365853658536586,147.60964177501455,95.93997762208777,1.7909603797560985,6.575439024390245,3.308265582655827,7.8167820487804835,265.43217842243934,22.5,6.693214285714285,3.2285714285714286,7.242857142857143,159.9649718648584,86.00521348507012,1.4899730241463565,6.7592314285714306,5.646031746031745,8.063142914285711,217.71096278345263,17.224719101123597,6.179921348314607,2.8764044943820224,4.404494382022472,159.34629524313294,63.38006135967639,1.2985064167014946,6.263359550561798,3.2075530586766536,7.701847640449436,182.71743567862674,15.903225806451612,6.374881720430107,2.6129032258064515,3.913978494623656,166.0809812003611,57.13992989854622,1.1837456511750757,6.425393548387097,3.5035842293906816,7.897406838709678,166.42286099758292,15.179775280898877,6.15679775280899,2.5842696629213484,3.5280898876404496,163.42564029986607,54.2090149669573,1.2470259798441683,6.225971910112359,2.995474406991261,7.6960004044943835,170.67417993017202,15.01123595505618,6.041325842696629,2.5280898876404496,3.6179775280898876,159.97937541246833,53.6729392852854,1.2925748677672133,6.115669662921348,3.113607990012484,7.581350382022471,170.17413691590747,12.808988764044944,5.76787640449438,2.393258426966292,2.4831460674157304,159.63772860716605,44.5253357809618,1.2467097408649435,5.861039325842696,2.4030898876404496,7.337442606741571,159.0473690547817,12.142857142857142,5.936392857142858,2.1666666666666665,2.6785714285714284,166.85675927915923,42.28778980104761,1.0773049665401904,5.99682142857143,2.8616071428571432,7.507332714285713,138.9744524958033,8.247499999999999,0.2650344374999999,0.017941571272393774,0.5900000000000001,4.847499999999999,2.975769560346188,40.340020851221304,0.24686625849762747,0.23404943749999996,3.2572526041666663,0.15080027749999997,49.471656424213435,0.16103658536585422,-0.005422120426829262,-0.008503007713169667,0.09658536585365847,1.0683536585365851,-0.10598788739125681,0.743236308403197,-0.0060630441589165545,-0.003458522865853644,-0.29916063262195114,-0.004179433597560976,0.2975370236745199,0.5432142857142861,0.09689827678571428,-0.0009207314150130848,-0.017142857142857192,1.1660714285714289,0.8959146002856433,3.051234464613963,-0.0008056083900803756,0.08103013392857145,1.5584120783730155,0.05576699821428572,-2.6353564809430456,0.5446348314606738,0.0011316860955055976,0.0009970573697754813,-0.02876404494382024,0.2457584269662922,-0.36607290746869253,2.793502932893292,-0.02284190070324942,0.004281714185393221,0.19845705563358312,-0.0033814853651685365,-0.5247474667054254,-0.5733064516129031,-0.029513738575268803,0.001039788833807843,-0.005591397849462366,-0.37008064516129036,-0.15778439798911514,-2.7568850012327712,-0.0026708585393430905,-0.025900889112903207,-0.19765732340203104,-0.017724095779569893,-0.9701631924580278,-0.2716573033707864,-0.02199190941011236,-0.0036491822478314766,-0.033258426966292144,-0.19300561797752808,0.02103675540617385,-1.4230328543873607,0.009091173729398909,-0.01943806109550564,-0.22884280391697867,-0.012821194353932577,1.2086789719015836,0.15137640449438192,0.05795283778089883,0.0028374293371823144,-0.03550561797752809,0.3345224719101123,0.17307892195798344,0.8169237966269843,0.004005897776039345,0.04737244452247186,0.48528797011548075,0.038664904522471906,-2.6288814208299804,-0.09412921348314617,0.017925618679775233,-0.0006543567810275996,-0.04449438202247191,0.12103932584269651,-0.2844307046764747,-0.3420885037064969,-0.035520795092997735,0.015983905196629133,0.09484243328651701,0.010053407893258438,-5.872932787398956,0.3882142857142856,0.006118241071428537,-0.001267624256916285,-0.01619047619047618,0.3405952380952379,-0.4538716649051134,1.978121409700333,-0.030254707213976908,0.008056812499999929,-0.10612206514550257,0.0015083510714285757,-2.545688760538474,,,0.45865800865800865,1.1704545454545454,0.5681818181818182,0.022727272727272728,0.6022727272727273,-0.03409090909090909,0.7500429028576595,0.01867562268561975,0.026493804503801566,0.9093056187884944,0.24975245999099283,0.22767253379489177,1.6593485216461539,0.4774249937858846,1.9975635048320575,1.5879738259235112,0.08484401204101481,0.09426816494096837,0.23047750192656338,0.40958967890854664,7.728351221400013,986.0,265.47490000000005,126.0,362.0,6791.375018098982,4005.761231449311,58.19828328728201,266.2589,284.6736111111111,320.674476,8750.131696727833,1027.0,263.85400000000004,155.0,302.0,6051.995312775597,3933.5390825055983,73.42937557000003,269.593,135.6388888888889,320.48806399999984,10882.719315320013,1575.0,468.525,226.0,507.0,11197.548030540089,6020.364943954908,104.29811169024495,473.14620000000014,395.2222222222221,564.4200039999997,15239.767394841685,1533.0,550.013,256.0,392.0,14181.820276638833,5640.825461011199,115.56707108643302,557.4390000000001,285.4722222222222,685.4644399999997,16261.851775397781,1479.0,592.8639999999999,243.0,364.0,15445.531251633582,5314.013480564799,110.08834555928203,597.5616,325.83333333333337,734.458836,15477.326072775211,1351.0,547.9550000000002,230.0,314.0,14544.88198668808,4824.602332059199,110.98531220613098,554.1115,266.59722222222223,684.9440360000001,15190.00201378531,1336.0,537.678,225.0,322.0,14238.16441170968,4776.891596390401,115.03916323128199,544.2946,277.1111111111111,674.7401839999999,15145.498185515766,1140.0,513.3409999999999,213.0,221.0,14207.757846037779,3962.7548845056,110.95716693697997,521.6324999999999,213.87500000000003,653.0323919999998,14155.215845875573,1020.0,498.65700000000004,182.0,225.0,14015.967779449375,3552.1743432879994,90.49361718937598,503.73300000000006,240.37500000000003,630.6159479999999,11673.854009647477,329.9,10.601377499999995,0.717662850895751,23.6,193.89999999999998,119.03078241384752,1613.6008340488522,9.874650339905099,9.361977499999998,130.29010416666665,6.032011099999998,1978.8662569685375,6.602500000000023,-0.22230693749999975,-0.34862331623995635,3.9599999999999973,43.80249999999999,-4.345503383041529,30.472688644531075,-0.24858481051557874,-0.1417994374999994,-12.265585937499996,-0.17135677750000003,12.199017970655316,38.02500000000003,6.782879374999999,-0.06445119905091594,-1.2000000000000035,81.62500000000001,62.71402201999503,213.5864125229774,-0.056392587305626296,5.672109375000002,109.08884548611108,3.9036898750000004,-184.4749536660132,48.47249999999997,0.10072006249999818,0.08873810591001784,-2.5600000000000014,21.872500000000006,-32.580488764713635,248.621761027503,-2.0329291625891983,0.38107256249999666,17.662677951388897,-0.30095219749999974,-46.70252453678286,-53.31749999999998,-2.7447776874999987,0.09670036154412939,-0.52,-34.417500000000004,-14.673949012987707,-256.39030511464773,-0.2483898441589074,-2.4087826874999982,-18.382131076388887,-1.6483409075,-90.22517689859659,-24.17749999999999,-1.9572799375000003,-0.32477722005700144,-2.960000000000001,-17.1775,1.8722712311494725,-126.6499240404751,0.8091144619165028,-1.7299874375000022,-20.3670095486111,-1.1410862974999993,107.57242849924094,13.472499999999991,5.157802562499996,0.252531211009226,-3.1599999999999997,29.772499999999994,15.404024054260526,72.7062178998016,0.3565249020675017,4.216147562499995,43.19062934027779,3.4411765025,-233.97044645386828,-8.377500000000008,1.5953800624999959,-0.05823775351145637,-3.96,10.77249999999999,-25.31433271620625,-30.445876829878223,-3.1613507632767983,1.4225675624999927,8.440976562500014,0.894753302500001,-522.6910180785071,32.60999999999999,0.5139322499999971,-0.10648043758096795,-1.359999999999999,28.609999999999985,-38.125219852029524,166.16219841482797,-2.54139540597406,0.676772249999994,-8.914253472222216,0.12670149000000036,-213.83785588523182,0.7273540560083466,0.5559026347164046,0.45666738536041135,0.306056553841831,0.31031533252682403,0.1590819891625201,0.19312627507918917,0.09132968204564115,0.12643371982794843,0.050559681693733705,0.08249693877829246,0.027906552281335196,0.05496927984377107,0.0146095782900513,0.03663244279636514,0.008243911685861294,9.0140892899449,5.69381510761499,4.124515478046464,2.193154311342838,0.5019028832128593,-0.5182686600640803,4.0220981284302155,0.9871441822014753,7.0140835780021975,0.9959578035763794,17.430696755817053,10.95422262324324,19.005604506200818,11.70504663159007,1.989542223774218,0.5269910640782307,4.007133542326595,2.2429930857072398,8.007384529767755,1.2190293660861642,4.030566925255644,2.438974366108532,20.89719732063632,13.30279085369199,0.2861450219979456,0.5628840838039559,0.7295010513112493,0.8579053570789221,0.8973092073725367,0.8973092073725367,1.8221990469885327,566.707963548519,0.0,0.0,2.0,0.0,10.0,2.0,2.0,0.0,0.0,3.732510145734522,2.195338438203128,1.269849687986781,0.556616562662259,0.3377443751081728,0.3377443751081728,25.927563186792554,958.0772457393118,46.302288510642214,23.951931143482796,48.65696518979236,,11.0,398.0,11.73975000914047,13.171245143024459,6.103966387748303,5.749511833283905,30.6617636574588,12.13273413692322,0.0,37.37950732498524,5.316788604006331,4.736862953800049,10.09047619047619,25.75,12.5,0.5,13.25,0.0,0.04134199134199135,-0.75,0.1952380952380952,0.07678571428571423,-0.11845238095238098,0.026303406738189317,0.20718344893566132,0.0,0.6327380952380955,0.9049783549783549,0.43750000000000033,0.5559523809523813,0.8786749482401656,16.50094386286851,0.4108636990836345,0.5828636990836344,20.004723613346876,5.494554119801842,5.008795743487619,36.505667476215386,10.503349863289461,0.5068165510643386,0.13449740443605476,0.049551675318546484,0.19820670127418594,0.29411764705882354,0.47622468574685756,-0.8367717121446403,-0.05384547453090573,-0.020919292803616006,-0.049221865420272966,0.5237753142531424,0.9203226535796835,0.031071989717408658,0.02300806633949209,0.040014028416507974,-5.460459840276,0.7179559216022594,0.5660231993206636,1.6581905753632542,1.1285655229433649,0.45623215386357063,0.9601463831337126,0.7113344713494366,1.115968640863809,0.55817475658269,0.5925800548475071,0.5939954376361695,1.0106179908945394,0.8216126098817824,0.5255224076844193,1.143797285334331,1.085956416464891,0.6651808737935608,0.712242607357349,0.8068347575321457,1.0209871910804424,0.5367556465195825,0.3669489846090941,0.5458743033716993,1.015069355556854,0.8255310598036177,0.6654579886731329,1.1475428526425864,1.095505617977528,0.7898488158497083,0.8558056675884769,0.810860061970873,1.0695701577238912,0.6656271623013335,0.48010837957807445,0.7209430747256886,1.0135140788202315,1.05315393716571,1.0794353481802932,1.1524769895998128,0.9506560962274466,1.069473789282803,0.9443018492615713,1.0454238075425286,0.9704134080426714,1.081198545030994,0.9420621484116578,1.1184317572282898,0.9838829218811249,0.9616805909860324,0.8584072624715275,1.048927079993562,0.9469624833365071,0.9220552700048097,0.8133301441255195,0.958575622956791,0.938635797382266,0.8692451923308157,0.786225351602789,0.8681730924429298,0.9770936966052183,0.8467836695491653,0.29457831824743325,0.7690025846491556,0.7891354027804227,0.6745919070991071,0.564597936906197,0.831328381922486,0.936013323661189,0.3345922315899843,0.2051718262504181,0.2668578487227879,1.0678967916380324,0.846119525494617,0.32328303615430887,0.6216974926590415,0.8912588078461244,0.6271331799665066,0.7181133258862836,0.8365954216322357,1.1032958440822567,0.35262681091285675,0.30445868758464634,0.28378410583569624,1.1670631794798136,0.9007058415970207,0.7032489073101247,0.7240467526910361,0.954146489104116,0.7901716643336035,0.9504775608702616,0.8997768178783585,1.07187692748197,0.7107625346400218,0.7765532769230448,0.6753334247487899,1.0737065525681693,5.0,0.11162126313641466,2.4444444444444455,1.1875,0.8133333333333335,0.6527777777777779,0.243265306122449,0.3229166666666667,0.3076341647770219,0.1856250000000001,4099.448723082541,4590.137715819161,2073.52309176794,1890.1485100963512,12.485560904529427,0.48542505889269766,6.424756767139867,0.9433515317479748,1.0,0.29411764705882354,1.589417949152841,3.1265896566842346,4.0520784069005815,4.765311532225104,4.98418371977919,4.98418371977919,0.21739130434782608,0.010147387557855875,0.07885304659498213,0.03958333333333333,0.030123456790123463,0.025106837606837608,0.00973061224489796,0.015376984126984128,0.018096127339824818,0.013258928571428573,0.457668018514094,18.340264650283554,8.74089490114464,5.864197530864198,127.47322151943769,1.0,3.9931506823995697,108.28232410028033,,84.84599968067536,83.4246476043467,85.76455651945902,84.63925598810583,133.6467363380196,84.36519744936322,85.02546721508592,107.65345619389407,0.019525502924019913,-0.020458173201847646,-0.4739277058890055,0.163704009921455,0.22039270934225585,-0.03561696739008468,0.018424291627025653,-0.024560035850240844,-0.014776890313413569,-0.09184446801554963,-0.02771502590610934,0.006014292732047945,0.06586411466678219,0.3656063630814555,-0.051318326641200604,-0.02905569007263931,0.240551094083843,0.30106988532452644,0.07563790003647422,-0.0032633394088893604,0.34620947947619596,0.4784437278151225,0.36980699995254146,-0.05327002715140937,0.06603635422378586,0.004269958674731083,0.055572466571510784,-0.04875261854884786,0.05069797358768277,-0.12301789505034967,0.06924892139238242,-0.09252743101572523,0.018294058858369277,0.06092774486686036,-0.022423601741505664,-0.010607032483525106,-0.06951275557598098,-0.1113581270934605,0.05795416789429913,-0.00947694550756333,-0.07634464056963185,-0.05302305665454794,-0.06834118929686438,-0.01081905058875739,-0.11066418013887862,-0.06068222131411868,-0.11753357535810832,-0.01961048532798248,-0.0329381392386525,-0.08297755422863631,-0.20339256759782115,-0.056370215197105326,-0.039815496230537,0.0070693496184988614,-0.03527595733367793,0.03682631148025554,-0.08305109084274404,-0.07025638835141117,-0.08502102626391109,0.024431746564887752,0.018354216974159676,0.2186615382044413,0.15814831901307286,-0.06017901352123405,0.06900927734092055,0.05816274360231315,0.02025095127342384,0.016226995946786484,0.2024035820315606,0.1489869006458701,0.2563980992838154,-0.053139142912209,-0.011413060137392685,0.06763505470784431,-0.036471542603096374,-0.075414206817749,0.024969432871108106,-0.0955822347491804,-0.008480127091856476,-0.14388679647501976,0.06829285883940284,0.02911730983504162,0.06666703841614907,-0.11871308162878703,0.047070540856536607,0.023084702233944748,-0.07065291203712717,-0.02744148506860369,0.0702620398339841,-0.1525224503110758,0.049036201964195184,-0.12255505227040848,0.03442354993910177,-0.03258023802321981,0.010002309653764238,-0.0514575202154038,14.76854770235179,14.80455053131548,2.102578844744821,16.14095230902372,28.406667610237598,35.32916366874376,38.45635333872849,38.67697650378301,38.67697650378301,43.94639710630526,34.93542417031725,1.8665682649023259,2.0738996287013043,5.0705050423843945,9.010972935988026,5078.184888711173,4562.705483724039,1030.010950682451,46.0,31.0,36.0,42.0,51.0,51.0,52.0,52.0,54.0,309.1340488560005,23.0,4.6913478822291435,5.493061443340548,6.3473892096560105,7.173958319756794,8.033009498596668,8.867990898182093,9.728836502046393,10.567283159381214,11.428858838851779,0.675,1.0097,1.1469890322637941,0.6438519057530597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6581627844311377,0.9938235294117648,1.0213583394027677,0.6322219214329332,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,10.05365155780638,11.853478221032208,0.0,0.0,0.0,0.0,0.0,13.171245143024459,0.0,30.33183534230805,43.4213481541332,6.4208216229260096,5.563451491696996,259.6673486488219,-456.2600352734187,-29.35990515957881,-11.406500881835466,-26.83882560431875,285.5949118356145,501.8172104658931,16.94238335106341,12.54543026164733,21.818139585473613,0.45454545454545453,0.974848799284115,0.2764195826874517,8.037514696844498,0.2367055877527517,0.1996015419961351,0.025151200715884687,6.0,0.2608695652173913,0.2986545328712264,0.5874919016075899,0.7613929265209929,0.8954107322124503,0.936537215631937,0.936537215631937,4.435000000000003,,1.392857142857143,1.6421137454743553,1.4594933518855733,1.495132676333295,-7.595090086111633,1.4977945879950552,1.3292577933310232,-2.3582981022035767,79.79870000000004,17.908108096824506,0.0,5.316788604006331,0.0,18.701086528117788,13.592428388589765,65.72420659954848,0.0,5.749511833283905,3.8501476017100584,0.0,5.14166355650266,0.0,6.626717749249025,0.0,8.193953023563742,0.0,9.802395690974855,27.0,14.432939648451464,0.0,0.0,0.0,0.0,0.0,0.7517963041698164,0.0,40.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.87956129055176,10.05365155780638,13.171245143024459,5.749511833283905,13.592428388589765,6.176298517443475,0.0,23.651690994068304,54.59730361615449,0.0,0.0,0.0,25.75407623012239,26.32651137724551,27.65398273484642,216.5646482005607,,169.56537598472732,166.70001214092304,171.39643182511026,169.14259082381776,270.74578635154444,168.59423175436328,169.9300928125963,216.37886607060796,27.65398273484642,216.56464820056073,,168.2991422184936,165.20718146321906,170.06961968703243,167.7833792998786,274.88856276215097,167.2326003107315,168.7216766368409,217.66521048999175,4.697131758215001,159.77614922370748,,123.45344974861595,121.29283756815573,125.76183521831092,123.22965844784763,200.90649607096958,122.77721111633898,123.6803838028265,159.78642201145308,1.2569992152202918,9.843847645480032,,7.707517090214878,7.577273279132865,7.790746901141375,7.688299582900807,12.30662665234293,7.663374170652876,7.724095127845287,9.835403003209452,2.3485658791075004,108.28232410028033,,84.84599968067536,83.4246476043467,85.76455651945902,84.63925598810583,133.6467363380196,84.36519744936322,85.02546721508592,107.65345619389407,39.75294117647059,0.0,1.8473992163440216,0.0,37.69359203246649,0.0,0.0,40.854333576110704,1.473939712459058,3.053965293047634,5.862915721844294,0.0,-0.2033456160241882,0.0,-4.329868979425258,0.0,0.0,25.288876857317327,531.5482599281952,63.57671796611364,125.06358626736939,162.08313627602325,190.61246128900416,199.3673487911676,199.3673487911676,460.0,117.33173575204064,13.714000556241059,55.61487762200034,21.259999999999998,21.259999999999998,0.8333333333333334,7.664610557849039,5.523561956057013,4.14764369809313,4.613161614848371,,4.607416506925298,4.608171538596195,4.612812632213124,4.608010000311977,4.591689410729866,4.608023056078592,4.607066688109834,4.602511360790228,0.1885292590042332,0.2096891643112896,,0.20942802304205899,0.2094623426634634,0.20967330146423294,0.2094550000141808,0.20871315503317572,0.20945559345811782,0.20941212218681063,0.20920506185410126,2.2109977497647173,2.3173707989779717,,2.316124649638818,2.316288509322835,2.317295146775599,2.316253453962098,2.312705380057869,2.3162562872346206,2.3160487216007004,2.3150594628818064,223.99999999999972,166.33136709699968,117.0119452962045,,117.45951856979212,117.3850201597492,116.97020975974058,117.38346056428557,118.78483691195314,117.39935845758278,117.50170126960083,117.89639272874778,7.560516686227259,5.3187247861911136,,5.339069025899642,5.335682734534054,5.3168277163518445,5.335611843831162,5.399310768725143,5.336334475344672,5.340986421345492,5.358926942215809,5.902439346317688,5.550733386499285,,5.554551111776586,5.553916663022147,5.5503766453033885,5.553903376779813,5.565771123725451,5.554038803157158,5.554910172733885,5.558263571415336,43.556507754310786,0.0,3.053965293047634,0.32313322782816845,0.4286630763416479,14.432939648451464,-3.809468965252923,0.7501940822625349,1.8473992163440216,278.2462005820155,141.5868054982569,-248.78137820189295,-16.008848254920608,-6.219534455047324,-14.634198717758412,155.72412721034047,273.6219865286271,9.238042243994716,6.840549663215677,11.896608109940308,1148.0,30.0,2.04782044964711,0.4650734127762405,0.28867513459481287,0.013498731178900972,0.5163460352255527,0.06349206349206349,0.14433756729740643,0.004499577059633658,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.05985279273275698,0.15951779686442458,0.04374763769807027,16.001789232183626,12.2298579637609,10.503349863289461,7.039300738362114,9.619775308331544,4.931541664038122,6.95254590285081,3.2878685536430816,5.3102162327738345,2.1235066311368156,4.2073438776929155,1.423234166348095,2.8034332720323247,0.7450884927926164,1.9048870254109873,0.4286834076647873,3.1895909395575543,0.8475386876928415,4.155017788614363,0.9934148444253673,5.358353992274749,1.1596498994463817,72.40837216583918,51.29874750987591,34.10629331872505,27.07659357055058,26.302728109491,26.302728109491,108.0,121.0,43.96527399999998,23.702725999999995,0.35,67.05,7.756944444444445,4.944444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,40.0,0.0,1.0,41.0,12.0,0.0,6.0,35.0,12.0,23.0,29.0,0.0,0.0,0.0,17.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,2.0,1.0,0.0,22.0,5.0,0.0,1.0,1.0,0.0,2.0,6.0,0.0,0.0,3.0,0.0,2.0,3.4011973816621555,6.170786818873342,3.912023005428146,4.3694478524670215,4.8283137373023015,5.326661839557179,5.319650684484429,5.531906175723785,5.666426688112432,6.002188093804204 +2378,c1ccc(-c2ccc(C(c3ccccc3)n3ccnc3)cc2)cc1,0,21.61904761904762,5.796900000000001,3.4285714285714284,6.571428571428571,155.72556419134483,85.34504552380952,1.7090198163638572,5.920433333333333,2.6640211640211637,7.314927999999998,246.7501805877468,24.666666666666668,6.108333333333333,4.111111111111111,6.888888888888889,141.42162942138214,94.06508068888894,2.012991057333334,6.2843333333333335,3.019753086419753,7.508052177777772,288.61517419588586,21.36986301369863,6.077327397260274,3.9178082191780823,5.712328767123288,146.36473404608626,79.44326306849312,1.8399271153424661,6.229960273972603,2.768645357686454,7.509575232876711,257.0244143882033,16.697916666666668,5.798156249999999,3.3645833333333335,4.104166666666667,150.01438580363063,60.309052656249996,1.590206389930614,5.934697916666668,2.3622685185185186,7.3143357916666645,211.81010502569305,16.009708737864077,5.790679611650485,3.116504854368932,3.8932038834951457,153.78539930015128,57.8538679223301,1.508304305119243,5.912495145631069,2.3883495145631066,7.32371091262136,200.72154110519327,16.141509433962263,5.796377358490564,2.8962264150943398,3.707547169811321,152.1984121113579,58.10082827358491,1.5354547006861792,5.923976415094339,2.5471698113207544,7.322210301886793,203.83054646805596,13.0,5.686681818181819,2.6,2.8363636363636364,156.19000761530117,44.81086109090909,1.3517492169257184,5.795977272727273,2.3373737373737375,7.257771490909091,171.44346063815053,11.379310344827585,5.589724137931035,2.574712643678161,2.6436781609195403,160.6164245243204,38.84916499999999,1.218275959839931,5.6818103448275865,2.072796934865901,7.200644919540231,151.18193709947766,14.43859649122807,5.692578947368421,2.9473684210526314,3.56140350877193,158.01661575271723,52.09529821052631,1.384729992589193,5.798201754385966,2.2105263157894735,7.264991578947366,181.90799004637265,6.371882086167801,0.043755102040816285,0.007577334802405012,0.48979591836734704,2.943310657596372,1.5124691002070103,30.72590720181406,0.23786602935077544,0.047888888888888835,0.268896447467876,0.017726222222222213,53.20797614721377,0.43235071806500425,0.004540136054421771,-0.00197752106168571,0.1546485260770976,0.4429327286470145,-0.1633369837743063,2.038120386545731,-0.0034406982943659624,0.0052074074074073985,0.003943058704963447,0.0014670518518518497,0.7496968556669574,-0.9328736060634296,-0.003684847637685197,-0.0012549045927432209,-0.047525859658932,-0.444289131177585,0.0684580598856666,-4.478756600378963,-0.019130542983472176,-0.0055308980213089705,-0.05856086726928215,-0.0004521400304413986,-5.795243299586683,-0.5539257369614513,-0.0015680484693877522,0.0004137281374214899,-0.071641156462585,-0.24390589569160992,-0.1802705796561667,-2.6933931487386613,-0.026751072873839498,-0.00221631944444444,-0.025179516250944823,-0.00042465277777777743,-5.643682358751183,0.09459965215859804,-0.001221676243312858,7.898950248954665e-05,-0.06954626510798492,-0.07923298769345924,0.0286557137198772,0.470196073266847,0.006325141526922128,-0.0008303128371089552,0.025422142967219247,-0.0007489795037756202,1.3214745109333932,-0.3651435416934069,-0.002088255679630339,-0.00033147129377146143,-0.03561802079322294,-0.1935352757455183,-0.09983807702267315,-1.765481742245326,-0.015035149284496533,-0.002369077568134169,0.012300517691353267,-0.0008155429769392029,-3.2772007694421013,-0.6835703978561124,-0.0035395176252319086,-0.00041382423725079244,0.02189239332096473,-0.18486909915481345,-0.1473198645883547,-3.3023898511647087,-0.026001537383720963,-0.004234343434343425,-0.04167182024324881,-0.001235070707070706,-5.862316978776928,0.5049652044725935,0.0017616467276565738,0.0004535646768091954,0.05536007506450856,0.29478458049886613,0.052689163559856554,2.438024175854249,0.016583962111768,0.0025754789272030613,-0.008907394375374663,0.00031854406130268117,4.026942793620794,1.2563551736484069,0.0032757250268528404,0.0005634725003777388,-0.03866809881847475,0.30564506504356126,0.26679656620447234,6.0918066244181865,0.05164107950181095,0.0051596491228070055,0.062348331145323635,0.0004901520467836247,11.55607620429618,,,0.4916666666666667,1.53125,0.9166666666666666,0.0,0.6145833333333334,0.3020833333333333,0.592912991285283,-6.67781499528175e-05,0.014266555183380514,1.022913997492554,0.31264443777639855,0.18384790547243324,1.615826988777837,0.4964923432488318,2.084915980150098,1.90894505183176,0.17597092831833802,0.0,0.0,0.17597092831833802,7.384452347047631,908.0,243.46980000000002,144.0,276.0,6540.473696036483,3584.4919119999995,71.778832287282,248.65820000000002,111.88888888888889,307.2269759999999,10363.507584685365,1110.0,274.875,185.0,310.0,6363.973323962196,4232.9286310000025,90.58459758000004,282.795,135.88888888888889,337.86234799999977,12987.682838814864,1560.0,443.6449,286.0,417.0,10684.625585364296,5799.358203999998,134.31467942000003,454.7871,202.11111111111114,548.1989919999999,18762.78225033884,1603.0,556.6229999999999,323.0,394.0,14401.38103714854,5789.669054999999,152.65981343333894,569.7310000000001,226.7777777777778,702.1762359999998,20333.770082466533,1649.0,596.4399999999999,321.0,401.0,15839.896127915583,5958.948396000001,155.35534342728204,608.9870000000001,245.99999999999997,754.3422240000001,20674.318733834905,1711.0,614.4159999999998,307.0,393.0,16133.031683803938,6158.6877970000005,162.758198272735,627.9414999999999,269.99999999999994,776.154292,21606.03792561393,1430.0,625.5350000000001,286.0,312.0,17180.90083768313,4929.19472,148.692413861829,637.5575000000001,257.11111111111114,798.354864,18858.780670196556,990.0,486.30600000000004,224.0,230.0,13973.628933615875,3379.877354999999,105.990008506074,494.31750000000005,180.33333333333337,626.4561080000001,13152.828527654558,823.0,324.47700000000003,168.0,203.0,9006.947097904882,2969.4319979999996,78.929609577584,330.49750000000006,125.99999999999999,414.10451999999987,10368.75543264324,267.61904761904765,1.837714285714284,0.3182480617010105,20.571428571428577,123.61904761904762,63.52370220869443,1290.4881024761905,9.99037323273257,2.011333333333331,11.29365079365079,0.7445013333333329,2234.7349981829784,19.45578231292519,0.2043061224489797,-0.08898844777585693,6.959183673469392,19.93197278911565,-7.350164269843784,91.7154173945579,-0.1548314232464683,0.23433333333333295,0.17743764172335513,0.06601733333333323,33.73635850501309,-68.09977324263036,-0.2689938775510194,-0.09160803527025513,-3.4693877551020362,-32.433106575963706,4.9974383716536614,-326.94923182766433,-1.3965296377934688,-0.4037555555555548,-4.274943310657597,-0.0330062222222221,-423.0527608698278,-53.17687074829932,-0.1505326530612242,0.03971790119246303,-6.87755102040816,-23.414965986394552,-17.305975646992003,-258.5657422789115,-2.5681029958885917,-0.21276666666666624,-2.417233560090703,-0.04076666666666663,-541.7935064401136,9.743764172335599,-0.12583265306122438,0.008135918756423305,-7.163265306122447,-8.160997732426301,2.9515385131473515,48.43019554648524,0.6514895772729792,-0.08552222222222239,2.6184807256235825,-0.07714488888888887,136.1118746261395,-38.70521541950113,-0.22135510204081593,-0.03513595713977491,-3.7755102040816317,-20.51473922902494,-10.582836164403354,-187.14106467800454,-1.5937258241566326,-0.2511222222222219,1.3038548752834462,-0.0864475555555555,-347.3832815608627,-75.19274376417236,-0.38934693877550997,-0.04552066609758717,2.4081632653061202,-20.33560090702948,-16.205185104719018,-363.26288362811795,-2.860169112209306,-0.46577777777777674,-4.583900226757369,-0.13585777777777766,-644.854867665462,43.93197278911563,0.15326326530612192,0.0394601268824,4.816326530612245,25.646258503401356,4.58395722970752,212.10810329931965,1.4428047037238159,0.22406666666666633,-0.7749433106575956,0.02771333333333326,350.34402304500907,71.61224489795919,0.1867163265306119,0.03211793252153111,-2.204081632653061,17.421768707482993,15.207404273654923,347.23297759183663,2.9435415316032243,0.2940999999999993,3.5538548752834473,0.027938666666666608,658.6963436448823,0.6746676531873174,0.5536138348505494,0.44132652733229494,0.2997930541240964,0.2803590838003658,0.16142086600327654,0.17991114596393934,0.0871808608033446,0.11727559437580132,0.047425731964238084,0.07623589924552146,0.026367449491401712,0.04716684098524602,0.013862125241831228,0.031207088866215205,0.007610549801391014,7.073221753458934,5.674889866044545,3.1881643287868173,2.1748086289776323,0.3631754494582151,-0.4307762304902243,3.1964714204276516,1.7343737292727395,5.038022921123775,2.73421850730872,14.557714184334648,10.93527705517425,14.045060091271864,11.685951133420968,2.010930693675013,0.9975362782948523,3.1723145095105783,2.224780840354006,3.044364201063872,1.2607737980825797,3.334935009659187,2.4207631063293045,20.919548293084087,15.584926820265016,0.21037028458447812,0.40870788969777255,0.5972089736229245,0.8075455685319023,0.9203326552092381,0.9285324377708618,1.3614097653970092,879.8896624448298,0.0,2.0,0.0,0.0,14.0,1.0,4.0,0.0,0.0,4.1706225151424325,3.018805647858625,1.9241129503127006,0.702613690579212,0.04761904761904834,8.881784197001252e-16,115.22925521054364,817.3775068599971,40.38985260246991,19.461369210952316,38.628135976390865,,12.0,502.0,0.0,0.0,6.041840829147961,0.0,0.0,22.253805966787983,0.0,30.853741354913915,82.34748299027791,0.0,11.8,36.75,22.0,0.0,14.75,0.0,0.008333333333333304,7.25,0.10216450216450196,0.07987711213517645,-0.022287390029325505,0.0,0.04354545454545422,0.0,0.5476190476190478,0.7333333333333331,0.4454545454545458,0.46774193548387133,0.7333333333333331,14.22991179084679,-0.00160267559886762,0.34239732440113235,24.549935939821296,7.503466506633566,4.412349731338398,38.77984773066809,11.915816237971963,0.6704545454545457,0.0,0.0,0.24576271186440676,0.045454545454545456,0.3968972029243592,-0.5805483684779355,-0.03198920396256239,-0.013822580201855608,-0.029027418423896775,0.6031027970756406,0.8821688394046721,0.040289433423031915,0.02100401998582553,0.04009858360930328,-5.4199982999340675,0.7745255041518386,0.804287157960199,1.3049397372752063,0.6864969135802468,0.7075500770416024,1.0900084828533372,0.7763077977928081,0.9001394568821435,0.7713263727764889,0.8336378542984306,0.875257413164845,0.8513569486726894,1.0325452152293666,1.2169975784604374,1.427571402375359,1.3105022831050226,1.1471943136965193,0.9822427078936542,1.0303611874659762,0.9681815418759365,1.1739789594126435,1.0857921235283363,1.2725596867903222,0.9808753928929086,1.018958518683274,0.8666514837919775,0.839191127708553,1.3598451967592589,1.0364503081664098,1.0681555555143547,1.020812463438723,1.0753249265202653,0.9015570620649648,0.8991859920356059,0.822240356408585,1.0636399111830455,0.9564022388833223,1.0498739992392407,1.0766162024567218,1.27710355987055,1.038462833036636,0.9688570074258164,0.9555457932484143,0.9397332089797492,1.025023089225779,0.7871650894800405,1.0853010745725713,0.940205378561123,1.0117169139864364,0.9973345976485496,1.0333679867036685,0.9119169287211738,0.9871700293630258,1.0386344535603078,1.0120389025405945,1.0263997826622002,0.9988399071925752,0.9113950065633332,0.997408404183453,1.0217979245387165,1.1037568747978,1.0596389501356853,0.9481264391088102,0.7609848484848484,1.0251435775318671,1.0682227269116502,1.1039654810652357,1.0991611643752242,1.0737529002320183,1.2614578675014378,1.0372353119501097,1.1035965769625673,0.9667627929807339,0.9933479155944415,0.8569579558822706,0.9278017241379308,0.96640056320068,0.9426057240088539,0.9663364787325589,0.9503805631519816,0.9885070805664452,1.1197082414520079,0.9981165206685595,0.9548658585113866,0.8211135044015732,0.9874079438334642,0.9950435952718057,1.3112207602339179,0.9891736274430297,0.8159455441624404,0.8194095505664789,0.7799735071433355,0.9453932104042009,0.6864420362219676,1.0451998295055662,0.7851058932473484,2.5,0.03142944597490052,2.222222222222223,1.4027777777777777,0.5944444444444446,0.37555555555555564,0.4573242630385488,0.31246456916099774,0.10883566389518769,0.022507716049382717,4283.587868222177,4770.832157313472,2274.8231762159626,2091.0868938561784,12.759419482116861,0.41868862163276904,7.417195726315053,0.7202484541224161,1.0,0.045454545454545456,1.221694907636328,2.3735117749201358,3.46820447246606,4.689703732199549,5.344698375159712,5.39231742277876,0.09259259259259259,0.002244960426778609,0.06172839506172842,0.04007936507936508,0.01651234567901235,0.010150150150150153,0.016333009394233884,0.01644550364005251,0.006046425771954872,0.0011846166341780379,0.2633173644300465,17.415637860082306,8.589506172839506,4.233236151603498,141.60640774064177,0.0,4.122270984774114,118.12041104525574,,89.46046397953562,88.86928875135561,88.32633653001315,89.46541018979272,99.03014996704977,89.2068909473083,89.49641561573742,96.07351780885116,0.06785290628707005,0.10376243781094542,-0.2609784460174643,0.3157407407407408,0.15048793014894712,-0.10799360049864855,0.06633230951193526,-0.01446485781831438,0.10873936581593187,0.014663855703911854,0.08276167552569111,0.014089933689504092,-0.14640471895870905,-0.0842152678388875,-0.1656129266381261,-0.09703196347031949,-0.15094877261118259,0.045262451891610087,-0.14576482871479013,-0.0804257044845223,-0.11549439023615031,-0.21778222739918565,-0.02550684656737407,-0.10891681509465098,-0.08693282918149467,-0.03583692863805967,0.054600746596306454,-0.146267361111111,-0.08286787365177194,-0.11918959510081444,-0.08765870218405279,-0.11246277136274183,-0.04628045243619485,-0.09364019676739285,-0.02395619170594724,-0.10606835229245444,0.014846422278271078,-0.027920772351833066,0.010424444022781696,-0.14199029126213586,-0.026919682259488077,0.018946313492259195,0.015302919135259467,0.02659119313584114,-0.017338319104363353,0.09454250216621524,-0.04225262971354795,0.024836022841334703,-0.05730544551131403,-0.04772599267811879,-0.04374510331340433,-0.07272012578616348,-0.0657542808965898,-0.0660099945241912,-0.057459059895262975,-0.06320847632397543,-0.04947029724642121,0.045744441055967325,-0.04600771482582509,-0.06159228384058189,-0.10727919767065677,-0.08089382632293082,-0.054613429133347324,0.044696969696969645,-0.0628099173553719,-0.09740355328131407,-0.10747900231143494,-0.1093116888304261,-0.08842016452225258,-0.1549734875103814,-0.06967478414675284,-0.11017740954020307,0.07924898760584118,0.04026151569737509,0.059858075251635445,0.11302681992337162,0.10015408320493063,0.03483652231483277,0.07934750827179182,0.06971975845828754,0.05378030242419391,-0.033125742118399665,0.01797021707780145,0.07568306643498719,0.19717175501030157,0.07486498428908084,0.07436288814886405,-0.0789473684210526,0.10384397048090178,0.17639802768066876,0.19826287257869885,0.21710153250028427,0.10774209305165452,0.2318674409143027,0.02765124123114924,0.2171869152159307,29.185943249039184,24.452099798185714,3.838519496373775,9.326978072200028,21.796823933790165,30.705381614130456,37.571701781575364,39.80379352453635,39.85179352453635,50.03798352360235,45.81468124396224,4.223302279640112,0.0,0.0,4.223302279640112,4872.75779545998,4102.742660464022,1258.082749536808,104.0,36.0,49.0,65.0,78.0,80.0,96.0,104.0,104.0,310.1469985760005,27.0,4.844187086458591,5.6937321388027,6.558197802812269,7.424761761823209,8.2987883944492,9.171911345356401,10.050138752861821,10.926531829352124,11.807034341205489,0.6507936507936508,0.9594285714285716,1.1028353173369734,0.6153089826389302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7262941830624466,0.9503267973856208,0.9837339159990292,0.6760089849088425,17.0,1.0,0.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,84.92913895846256,22.253805966787983,12.393687143226153,12.369160903912501,221.78917733225674,-324.4148462060191,-17.8758106081252,-7.724163004905218,-16.220742310300956,337.0184325428004,492.962660653978,22.51404199434471,11.737206206047098,22.407393666089913,0.5,0.949543612962448,0.22277295048476833,0.19205719851938305,0.07132803962376723,293.3701046278831,0.05045638703755193,6.0,0.14814814814814814,0.2265621275326863,0.440165440723818,0.6431751324236454,0.869700977243817,0.9911690941230775,0.9999999999999999,5.187800000000005,,0.2857142857142858,0.37133550488599343,0.4504991709152957,0.2850003569643751,-1.0363636363636362,0.32236842105263164,0.28052598622417024,-0.6386492564868576,97.78800000000003,0.0,0.0,9.551078168738563,0.0,6.041840829147961,0.0,114.77704915984725,0.0,11.126902983393991,4.007333185232471,0.0,5.293304824724492,2.3978952727983707,6.790097235513905,4.442651256490317,8.37816098272068,6.293419278846481,10.01391023378622,27.333333333333336,35.52091244290288,4.222191928475298,0.0,0.0,0.0,0.0,4.97368239271017,2.1456916099773244,40.29600000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.319083328152885,0.0,0.0,0.0,9.551078168738563,0.0,0.0,17.16874381254195,103.65014617645326,0.0,11.126902983393991,0.0,25.842977270835068,30.50435568862276,32.83982358204387,236.2408220905115,,178.89711843526172,177.7076328773041,176.61513146245005,178.90707034983842,198.66484538864512,178.38691785952886,178.96945406595614,192.51958101731967,32.83982358204387,236.24082209051153,,178.63521367335693,177.36724199782537,176.20217388911095,178.64582002262108,199.09666357046333,178.09141347356393,178.71230524525092,192.78568487418926,4.818903607059081,174.45268153181541,,133.51319939193255,132.85205300682918,132.24672707922585,133.518740276222,144.58412233149986,133.2293465321082,133.55347696495184,141.07897363020078,1.3683259825851612,9.843367587104646,,7.454046601469238,7.404484703221004,7.3589638109354185,7.454461264576601,8.277701891193546,7.432788244147036,7.457060586081506,8.021649209054987,2.4203948782387883,118.12041104525574,,89.46046397953562,88.86928875135561,88.32633653001315,89.46541018979272,99.03014996704977,89.2068909473083,89.49641561573742,96.07351780885116,39.91372549019607,0.0,0.0,0.0,0.0,0.0,0.0,41.31682447195922,0.0,0.0,0.0,0.0,0.13752162593432393,0.0,0.0,0.0,0.0,28.392377366171385,530.612196831672,51.31118612072577,99.6874945466457,145.66458784357454,196.96755675238106,224.4773317567079,226.4773317567079,767.0,125.77528345312183,28.195413043385212,71.61677227011293,17.82,17.82,1.0,8.864013487424044,5.754887502163468,4.333457640401874,4.820830657225322,,4.829233419219406,4.829003313400936,4.828715209345281,4.829234995222395,4.825033930561555,4.829144976360596,4.829244746061318,4.827489233051893,0.18056073501674474,0.2008679440510551,,0.20121805913414192,0.20120847139170564,0.2011964670560534,0.20121812480093312,0.2010430804400648,0.20121437401502484,0.20121853108588825,0.20114538471049556,2.3418344919824707,2.448414986092274,,2.4501564800453046,2.4501088303914633,2.4500491674275735,2.4501568063916612,2.44928650436086,2.4501381658200403,2.450158825516655,2.4497952423357243,250.0599999999999,188.27643728947268,141.41712931336326,,140.46102860575195,140.4521304965542,140.4485621918104,140.4611236734069,141.0274527805569,140.4566042690034,140.46172712147094,140.79710123016937,7.844851553728028,5.892380388056803,,5.852542858572998,5.852172104023091,5.852023424658767,5.852546819725287,5.8761438658565375,5.852358511208475,5.852571963394623,5.866545884590391,6.1133800313022055,5.827182624309423,,5.820398811180215,5.820335459863893,5.820310053698392,5.820399488005836,5.8244233093516975,5.8203673120058586,5.820403784189377,5.822788593011999,2.1456916099773244,4.222191928475298,0.0,4.97368239271017,0.0,29.936384696619186,5.722049372218024,0.0,0.0,289.03477085191554,123.9374800811936,-181.2854848163698,-9.989139000505636,-4.316321067056425,-9.064274240818492,188.3284647730805,275.4712861576984,12.581017995486432,6.5588401466118675,12.5214220980772,1367.0,35.0,0.9444444444444444,0.5097327754157193,0.0,0.0,0.25,0.09232750021456806,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.03849001794597505,0.37079081189859814,0.11415002990995841,0.3103012199276332,0.08670464458460884,16.192023676495616,13.286732036413186,11.915816237971963,8.094412461350602,10.092927016813167,5.8111511761179555,8.815646152233027,4.271862179363885,7.622913634427086,3.0826725776754755,5.946400141150674,2.0566610603293336,3.7733472788196813,1.1089700193464982,2.9958805311566596,0.7306127809335373,2.698670612749268,1.1872672549076335,4.821825355498023,1.734072712729027,7.491046009938721,2.225239166827189,76.86048589470532,63.38453549265584,42.28600842720569,26.245545157032936,21.217254575744622,21.055715650850395,126.0,148.0,50.94227399999999,20.907725999999997,0.5714285714285714,177.02,5.166666666666667,5.3611111111111125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,23.0,42.0,0.0,0.0,45.0,23.0,0.0,11.0,34.0,23.0,27.0,22.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,2.0,0.0,1.0,24.0,2.0,0.0,2.0,0.0,0.0,4.0,4.0,0.0,0.0,0.0,1.0,4.0,3.676300671907076,7.7062403186932515,4.259152536523347,4.853006349892673,5.447545234912078,5.933073756556645,6.131226489483141,6.640447565781506,7.052072049750376,7.382172979988304 +44555928,O=C(NCc1cc(C(F)(F)F)ccc1F)[C@](O)(c1ccccc1)C(F)(F)F,0,35.07692307692308,8.100638461538457,3.948717948717949,16.0,181.57785207989713,146.13820884739474,1.4721745091843081,8.010617948717943,15.489138176638177,9.172189948717945,243.28707768808215,31.125,7.007600000000001,4.75,11.725,151.9214982732862,123.04849657116003,1.8169748346500003,7.1247375,4.525173611111112,8.290308099999997,292.0100205847142,32.582089552238806,7.691089552238806,3.970149253731343,13.462686567164178,165.8906972115335,131.01042239671978,1.5801248061917756,7.706940298507463,9.788764510779437,8.833696179104473,257.7183909652999,27.477272727272727,7.197102272727272,3.4204545454545454,9.772727272727273,163.15978489229082,107.67184934481817,1.3717633629652615,7.241327272727275,7.066919191919192,8.514145863636362,222.80446449934652,24.727272727272727,7.6358181818181805,2.8585858585858586,8.494949494949495,178.44819270975398,94.58800434616562,1.124429127706495,7.607594949494948,7.804994388327723,8.94493490909091,188.32216653217182,22.9,7.4247999999999985,2.7777777777777777,7.1,177.71978247770048,86.79310126367999,1.086922598807122,7.41642222222222,6.075154320987655,8.788011022222223,183.4663168330978,23.365853658536587,7.874365853658535,2.6341463414634148,8.573170731707316,188.35735118293096,88.98892309293304,1.0313459947029389,7.7982804878048775,8.796070460704609,9.157949268292683,173.45072441314596,24.338709677419356,7.234580645161291,3.161290322580645,8.951612903225806,171.09550187410713,93.95597125060645,1.2438408121418063,7.25401129032258,6.250112007168458,8.59701270967742,204.39179310213083,29.516666666666666,7.891666666666666,3.0833333333333335,12.216666666666667,176.88402321876322,117.88665414548849,1.2412816027515665,7.854505,10.844097222222224,9.0895618,212.07748093995087,8.7784352399737,0.4787917159763309,0.030568583889692098,0.9086127547666006,6.214332675871138,4.935884415729697,43.41383913888636,0.25683696409932666,0.40857922419460874,7.081616626488423,0.28139511374096,40.83445179177304,-0.26881985535831737,-0.024026139053254368,-0.01667857532690032,0.07472057856673239,0.7863083497698884,-0.01978486534829283,-1.183891308213439,0.01562652815404774,-0.02068755752794206,-0.7315409498502451,-0.014463259894806037,2.564783920901286,1.169134603118529,0.17609186611322086,-0.002936139706648207,-0.12024689177387224,1.63105576653223,1.5889303366388365,6.2097826393201085,0.010611869470519087,0.1465494401758466,2.3676487985232724,0.10220838415417977,-3.388658622987145,1.2116580001195385,0.047265014792899455,0.002958143529369224,-0.1769693981232443,0.5403293287908671,-0.8915145491441446,5.802610315443205,-0.06063297650600007,0.04545836321797865,0.6937593285750334,0.027271290687944524,-6.168994835176781,-1.3958918574303187,-0.06878728707190243,0.0027847990158761586,-0.03655888271272886,-1.215368676907138,-0.4432631625205457,-6.965511001763258,-0.02107833623956375,-0.060406134321518916,-0.8749488087094922,-0.039311059868906005,-4.693039776331105,-1.5707429322813937,-0.14954735700197233,-0.00426479857976994,-0.03282927898312514,-1.6750164365548976,-1.2233128381106508,-7.697971054489911,-0.032491098065063805,-0.12488785667324127,-2.0797904948011783,-0.09185584992329608,-1.5002455356043216,-1.6802488734946521,-0.0681289580025978,0.0038783490416274898,0.1670595404178894,-1.135220730905534,0.8314583045658377,-8.401854245417702,0.05439630144392614,-0.06443153814082521,-1.0100853743169251,-0.0367671012331425,4.285513341585547,0.1822760917053723,-0.06374916014506578,-0.004426458787863672,0.014464168310322175,0.11941422239188983,-0.6500341439299158,0.8541452387743751,-0.0017244842069214562,-0.050507470679306866,-1.067871336533454,-0.040708796123093895,4.353445285189383,1.456180144641683,0.09001597633136088,0.001598268520872003,-0.008185404339250486,1.304043392504931,0.18524958581604792,7.291326233668708,0.0036724658893715367,0.07837513477975011,1.4353557144422535,0.05331904181459564,1.0132910283492664,,,0.42839506172839514,1.1388888888888888,0.5185185185185185,0.018518518518518517,0.6203703703703703,-0.10185185185185185,0.8364265652137234,0.03867288752463582,0.045043257895006183,1.2015550245640587,0.25130961867966406,0.206840218328037,2.037981589777782,0.45814983700770107,1.9605764147488418,1.31470732362609,0.07434497740373745,0.1308775848238215,0.4406465288951925,0.6458690911227515,10.130144260615394,1368.0,315.9248999999998,154.0,624.0,7081.536231115988,5699.3901450483945,57.41480585818802,312.4140999999998,604.0763888888889,357.71540799999985,9488.196029835204,1245.0,280.30400000000003,190.0,469.0,6076.859930931449,4921.939862846401,72.67899338600002,284.9895,181.00694444444446,331.6123239999999,11680.400823388569,2183.0,515.303,266.0,902.0,11114.676713172745,8777.698300580225,105.86836201484897,516.365,655.8472222222223,591.8576439999997,17267.13219467509,2418.0,633.3449999999999,301.0,860.0,14358.061070521591,9475.122742344,120.71517594094301,637.2368000000001,621.8888888888889,749.2448359999999,19606.792875942494,2448.0,755.9459999999999,283.0,841.0,17666.371078265645,9364.212430270396,111.31848364294301,753.1518999999998,772.6944444444446,885.548556,18643.89448668501,2061.0,668.2319999999999,250.0,639.0,15994.780422993043,7811.379113731199,97.82303389264098,667.4779999999998,546.7638888888889,790.9209920000001,16511.968514978802,1916.0,645.6979999999999,216.0,703.0,15445.302797000339,7297.091693620509,84.57037156564098,639.459,721.2777777777779,750.95184,14222.959401877968,1509.0,448.54400000000004,196.0,555.0,10607.921116194642,5825.2702175376,77.118130352792,449.7487,387.5069444444444,533.0147880000001,12672.291172332112,1771.0,473.49999999999994,185.0,733.0,10613.041393125794,7073.199248729309,74.47689616509399,471.27029999999996,650.6458333333335,545.373708,12724.648856397052,342.3589743589743,18.672876923076906,1.1921747716979918,35.435897435897424,242.3589743589744,192.49949221345818,1693.139726416568,10.01664159987374,15.934589743589742,276.1830484330485,10.97440943589744,1592.5436198791485,-10.752794214332695,-0.9610455621301747,-0.6671430130760129,2.988823142669296,31.452333990795534,-0.7913946139317132,-47.35565232853756,0.6250611261619097,-0.8275023011176824,-29.261637994009803,-0.5785303957922415,102.59135683605145,78.33201840894145,11.798155029585798,-0.19672136034542986,-8.05654174884944,109.2807363576594,106.45833255480206,416.0554368344473,0.7109952545247789,9.818812491781722,158.63246950105926,6.847961738330044,-227.0401277401387,106.62590401051939,4.159321301775152,0.2603166305844917,-15.573307034845499,47.54898093359631,-78.45328032468473,510.6297077590021,-5.335701932528006,4.000335963182121,61.050820914602944,2.399873580539118,-542.8715454955567,-138.19329388560155,-6.809941420118341,0.2756951025717397,-3.6193293885601574,-120.32149901380666,-43.88305308953402,-689.5855891745625,-2.0867552877168114,-5.980207297830373,-86.61993206223973,-3.8917949270216945,-464.6109378567794,-141.36686390532543,-13.459262130177509,-0.38383187217929454,-2.9546351084812628,-150.7514792899408,-110.09815542995857,-692.817394904092,-2.9241988258557425,-11.239907100591715,-187.18114453210606,-8.267026493096647,-135.02209820438895,-137.78040762656147,-5.586574556213019,0.31802462141345417,13.69888231426693,-93.08809993425379,68.17958097439869,-688.9520481242516,4.460496718401943,-5.283386127547667,-82.82700069398787,-3.014902301117685,351.41209401001487,11.301117685733082,-3.9524479289940784,-0.27444044484754765,0.8967784352399749,7.4036817882971695,-40.30211692365478,52.957004804011255,-0.10691802082913028,-3.1314631821170256,-66.20802286507414,-2.5239453596318215,269.9136076817417,87.37080867850099,5.400958579881653,0.09589611125232018,-0.4911242603550291,78.24260355029587,11.114975148962875,437.47957402012247,0.2203479533622922,4.702508086785007,86.12134286653522,3.199142508875738,60.797461700955985,0.7576970058449484,0.4935971159900728,0.4417873428288546,0.2627296733548677,0.30138113195270405,0.12932139569083223,0.18208828010288297,0.07061995244890541,0.1156686012052756,0.038861071134524125,0.07554131141326718,0.021846779738484038,0.05074522101856792,0.010869419535595353,0.03131259122139641,0.006061168484509609,9.017851974860347,5.688891768209246,4.128387351138521,2.1882497484409935,0.5398876234032091,-0.3534439004777796,4.11750901334113,0.9777077070930351,7.01783836568958,1.9899719914388263,17.43448353471123,10.949657150132648,19.009403942396347,11.700370049440247,1.9941382118709619,0.5246083341732861,4.011049081295912,2.238092797540396,8.011197555866968,1.125214231282238,4.034564586987379,2.4339106603774354,20.901293909656502,13.299890586311996,0.33223989091089956,0.6271830911162991,0.7564363512800784,0.8672248599918891,0.8984066896952534,0.8984066896952534,2.048774884066753,818.2670126018268,0.0,1.0,3.0,0.0,9.0,0.0,3.0,1.0,0.0,3.4399462247259716,1.8016580129869335,1.083709295038216,0.4683246796536009,0.2951224360083833,0.2951224360083833,-181.32332334456575,1475.7726874114328,71.37006952429302,37.840325318241874,78.00544130529225,,12.0,528.0,52.9131592972716,40.63396991263627,0.0,18.19910120538483,24.26546827384644,6.06636706846161,5.316788604006331,0.0,0.0,0.0,11.566666666666668,30.75,14.0,0.5,16.75,0.0,0.07160493827160488,-2.75,0.38978686573623267,0.12388134741075985,-0.2659055183254728,0.05244785014899933,0.31004190919674013,0.0,0.8264957264957263,1.0604938271604933,0.43670886075949367,0.7026143790849665,1.008045977011494,22.58351726077053,1.044167963165167,1.216167963165167,32.44198566322959,6.785359704350929,5.5846858948569995,55.025502924000115,12.370045599207929,0.40395809080325984,0.23054755043227662,0.1296829971181556,0.21613832853025933,0.23529411764705882,0.6600267699131573,-1.7192933500728091,-0.10059428260477474,-0.044084444873661775,-0.09551629722626717,0.3399732300868429,0.8855909189380134,0.025380925479699907,0.02270745945994907,0.0421709961399054,-5.560332624824646,0.5660724985020971,0.6083921908123425,1.7615958968667689,1.246617221418235,0.39786024121878966,0.8733442426901663,0.5571341015459831,1.000500603522205,0.5916234839866186,0.6933719159482258,0.6399473375785971,0.8721434532839057,0.5698827611493164,0.4361434112352085,1.0277408345142094,1.2804285374862305,0.46218600185698666,0.6848384771311774,0.5604977592620777,0.9957776029345046,0.4298154484068927,0.48382504002022775,0.4577309290497493,0.9865126553571023,0.6785806688817474,0.6260572391113338,0.9615298939201862,1.2490544007367457,0.6886385276805292,0.9804506998480241,0.6734670412124568,1.2103810555352368,0.6131948953903773,0.6490949365834764,0.6483099279708322,1.1414174265810781,1.1559135392269004,1.0998142950493421,1.0340743720730359,0.991119589527694,1.1806928788519984,0.98869643807015,1.1512390659412217,0.9983378300408985,1.1076063971118915,1.1001353496956456,1.1030998657803956,1.0608284015113159,1.2116911324146196,1.2678315950380248,1.2678648082295918,0.9770381090207432,1.282211877556778,1.1349130930299154,1.2054197978774683,1.0506394079270185,1.2679300741761057,1.257105687094198,1.2817477437393459,1.0256511041273004,1.3217833447807217,1.268650904341655,0.8548345211798777,0.6865712470438744,1.326041462382461,0.8392264244365941,1.3243986293280938,0.709323951755757,1.2900286207580403,1.2697527930990427,1.2469935565639332,0.8581396585968722,0.947034635381434,1.0069643282714675,1.090390155961091,1.003174454974091,0.9243153864005569,0.9951140025843693,0.9431264403308137,0.9824235826786584,1.0023677805237594,1.0378960880542394,1.0251451064174963,0.9252045475687016,0.7991611743559018,0.8564115070508139,0.8211086546080844,1.027677279305355,0.7852676682183665,1.0170554171887758,0.7999230366195628,0.995872805422838,0.8478121213486546,0.8565290217427745,0.8619207732241079,0.9275585244920665,9.0,0.11141720232629324,5.555555555555557,3.25,1.8622222222222227,1.2569444444444438,0.7518367346938775,0.5902777777777778,0.39128243890148645,0.3881250000000001,6421.815734948227,6818.049706924593,2583.279232649763,2451.886614191597,12.700049349350968,0.4584251484578212,6.878027340953095,0.8464668312282557,1.0,0.23529411764705882,1.8454559941362771,3.483744205875315,4.201692923824033,4.817077539208648,4.990279782853865,4.990279782853865,0.32142857142857145,0.005064418287558783,0.12919896640826878,0.06914893617021277,0.04330749354005169,0.03397147147147146,0.02349489795918367,0.020354406130268198,0.012227576215671452,0.014375000000000002,0.6725717376112581,23.28061224489796,8.788534342888047,5.331434674261303,147.97757375387553,1.0,4.2078262904358,140.9656373343028,,115.48714872827702,113.43741607628095,113.21967243981217,114.99169886202837,172.79055470955288,114.60214824792513,115.85139635616679,142.61085127981474,-0.03062275314559622,-0.05018077433579093,-0.5456116445264718,0.08223589001447179,0.12653142192128652,-0.004008372903798626,-0.02726990590318495,0.06084220863163796,-0.050632915975405667,-0.10330140537599193,-0.05139840455126126,0.0628093143990246,0.1331825742468007,0.36778386141068065,-0.09605089058895823,-0.13234118841393613,0.26246676056871787,0.3219140082728086,0.1430369385083459,0.04131753195157358,0.3586805972935232,0.3343373304998189,0.3632201810308203,-0.0829852850790533,0.13802664905495943,0.09871727771337632,0.09677070877878406,-0.19476878042362858,0.0869488900857923,-0.18061900848064072,0.1336580784039836,-0.23607574057195074,0.11125960530074959,0.09796623640710263,0.09691458506649578,-0.15107328651390528,-0.15901374439421176,-0.14366849879938803,0.09110003348291214,-0.04023593386835067,-0.19557509072955528,-0.08980420228398235,-0.16044448360071792,-0.08206893549564041,-0.14784436100634207,-0.1235521286815769,-0.13970057740623754,-0.11492843837508349,-0.17893199520671063,-0.31234324239930084,-0.1395157392687744,-0.03613121080559577,-0.26954083791790084,-0.2478406573322893,-0.17731606342998438,-0.12650475829677893,-0.3056637471457835,-0.29368865959530044,-0.3264301526140022,-0.036739700663903065,-0.19140642125414667,-0.14229351872488488,0.12687369017886665,0.18386220041650497,-0.18267781757377455,0.16845173722385856,-0.1935294001191442,0.21179311799873726,-0.15769655999477858,-0.14263485692500674,-0.13066005569303765,0.10494847251626271,0.020764075455652436,-0.13314591296775322,-0.14480418209220022,0.015918958031837942,0.019215936548673762,-0.13169557655328887,0.019674492183053807,-0.006714314713105493,-0.12361732483796056,-0.15079485276555868,-0.14466774345118383,0.10661206638426027,0.16588151587777114,0.1880065450752511,0.05228467653717346,-0.00900868306801736,0.20984447735928902,0.03753118392029071,0.167949353899406,0.014298821442038548,0.19182359292556578,0.202687576883699,0.18948105070395363,0.024814610797674903,8.684972010376026,12.381739143135576,3.03420430974868,20.663453677402504,36.48575429071455,46.183959418919684,48.710011398055705,48.88459925965008,48.88459925965008,52.93556319821873,35.49709773790443,2.007314389900911,3.5336947902431803,11.897456280170198,17.43846546031429,6860.72693396966,5993.311539763207,1531.2012873620015,60.0,43.0,53.0,59.0,65.0,64.0,63.0,59.0,54.0,395.07562616400037,28.0,4.962844630259907,5.814130531825066,6.725033642166843,7.604396348796338,8.514990767861038,9.40335455830888,10.31423866507353,11.20695721483113,12.11836102342615,0.8547008547008542,1.1043076923076927,1.1803124432855436,0.8438350793823614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6601338246583759,1.0812468577174452,1.0858498141819344,0.6913951577969488,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,10.423315998847038,5.817220841045895,0.0,0.0,11.508230540335195,4.794537184071822,4.39041504767482,26.34249028604892,0.0,30.33183534230805,18.19910120538483,17.671659389306566,5.563451491696996,373.9319598901462,-974.0494799982275,-56.9907448649331,-24.975627692262247,-54.11385999990153,192.60863654558042,501.7232074132052,14.379324659359911,12.864697625979625,23.891581305390726,0.5,0.8630949802821455,0.1414674682004709,91.26596554618399,0.16516217655709237,0.5721261526027261,0.13690501971785468,6.0,0.14285714285714285,0.3491609375631464,0.6591256562164225,0.7949618117669958,0.9113928022389157,0.9441627290057194,0.9441627290057194,3.910800000000001,,2.9761904761904767,3.488803640944738,3.04744031183004,3.215554147101873,-16.670203021905003,3.1937014478758536,2.831752593549961,-4.943931241464432,79.64250000000003,40.63396991263627,0.0,5.316788604006331,0.0,24.49840425178321,0.0,71.03851186382977,0.0,0.0,4.04305126783455,0.0,5.43372200355424,0.0,7.020190708311925,0.0,8.693664334532016,0.0,10.413522864087675,33.333333333333314,6.696995014950393,0.0,0.0,0.0,0.0,0.0,-3.8646977825348587,0.0,43.06800000000001,0.0,12.052777423469388,0.0,0.0,0.0,0.0,0.0,-1.946285430839002,46.0321852881362,5.316788604006331,30.732905333723743,0.0,17.190005641635686,23.116642918411557,5.817220841045895,16.690354475090988,48.53093654769288,0.0,0.0,0.0,32.90956809591209,25.74521916167666,32.12807270629672,281.9312746686056,,230.75383890276217,226.61640225323265,226.21360856022952,229.74520852797514,352.2579503343869,228.96772601822983,231.49303326095952,287.0527882046164,32.12807270629672,281.93127466860585,,227.99810698036353,223.38602851161718,223.39190456779423,226.76784357695482,362.2513124410109,226.01059504797442,228.8710401187837,290.1656338010939,4.996469217153875,209.88019444983195,,175.26202155494448,172.12469375367337,171.00589490389797,174.7386995633754,251.41082826594499,173.9096492136713,175.70964754279294,214.6097122160711,1.1899286187517304,10.441899061800209,,8.54643847788008,8.393200083453062,8.37828179852702,8.509081797332412,13.046590753125441,8.480286148823327,8.573816046702204,10.631584748319126,2.4982346085769374,140.9656373343028,,115.48714872827702,113.43741607628095,113.21967243981217,114.99169886202837,172.79055470955288,114.60214824792513,115.85139635616679,142.61085127981474,42.16862745098037,0.0,0.0,0.0,91.65520389091665,0.0,10.008023274124465,42.34814275309544,-0.9862993669690092,1.6477980914588057,0.0,0.0,0.0,0.0,-14.180181781243514,0.0,0.0,26.964411154081002,488.97834490972826,71.97278377131481,135.8660240291373,163.8660240291373,187.86602402913726,194.62091153130075,194.62091153130075,575.0,131.6643073825489,77.56225152599828,62.6041511783204,49.33,49.33,1.0,7.6339140319703604,5.807354922057604,3.923572268627217,5.130057170628472,,5.137059953990444,5.137142461963265,5.136083144651962,5.137893175368077,5.087843550953531,5.137188348637944,5.136649060396789,5.126179934258438,0.14531749143063766,0.19000211743068415,,0.19026147977742383,0.19026453562826906,0.19022530165377635,0.19029233982844732,0.18843865003531596,0.19026623513473867,0.19024626149617738,0.18985851608364587,2.3602543048544105,2.6283685765028855,,2.629732695439659,2.629748756632437,2.629542527867369,2.6298948803895987,2.620105849942009,2.629757688927012,2.629652706101184,2.6276125026104658,232.60999999999996,343.87884256968044,157.08175980006789,,155.49212529035083,155.34016967684582,155.7059389568599,155.32357343609732,163.50800700447897,155.42232603000352,155.58072493463175,158.26856802228716,12.736253428506684,5.81784295555807,,5.758967603346327,5.753339617660957,5.766886628031848,5.752724942077679,6.055852111276999,5.756382445555686,5.762249071653027,5.861798815640265,6.833541166513725,6.050018205866325,,6.0398468621276535,6.038869128294518,6.041220994712126,6.038762284537355,6.090113734652936,6.0393978687712915,6.0404165013399,6.057545160625704,91.65520389091665,12.052777423469388,11.655821365583272,-6.662596510698964,-3.100396930377089,6.696995014950393,-10.228171553541323,-0.9862993669690092,0.0,308.6702044009954,211.84763558254355,-551.838573356105,-32.287570587095516,-14.1497070091309,-30.65769851978361,109.1206118272052,284.246565173523,8.146471168856714,7.288373465987771,13.535550722548715,1850.0,47.0,4.049868745268179,0.8727999854634159,0.6220084679281461,0.054948312076549315,2.142896787435722,0.22636817779907162,0.8669382669910983,0.04091240476690607,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.056131276171213614,0.20120563135641745,0.054168395614767446,20.457819157813606,13.327122131731965,12.370045599207929,7.3564308539362955,12.959388673966274,5.5608200147057865,9.650678845452797,3.742857479791987,6.82444747111126,2.2928031969369234,4.910185241862367,1.4200406830014625,3.2476941451883468,0.6956428502781026,1.9726932469479737,0.3818536145241054,7.876990374618757,1.6481640618824305,10.80556674201056,1.8459201511275163,15.625353346752151,2.0987701586246232,92.02666011840623,63.73708132572888,41.68729790905644,35.941777383971214,35.325916993088974,35.325916993088974,142.0,167.0,42.994516,21.267483999999996,0.41025641025641024,82.1,12.243055555555555,5.673611111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,39.0,0.0,0.0,40.0,12.0,1.0,7.0,33.0,13.0,28.0,27.0,0.0,0.0,0.0,17.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,2.0,2.0,0.0,27.0,10.0,0.0,1.0,2.0,0.0,2.0,4.0,0.0,0.0,7.0,0.0,2.0,3.58351893845611,5.88027108059799,4.174387269895637,4.6443908991413725,5.075173815233827,5.507868964342779,5.528188238611673,5.6595910948495,5.631771660902112,5.56727045389354 +6216,CC(=O)OCC(=O)[C@@]1(O)[C@H](OC(C)=O)C[C@H]2[C@@H]3CCC4=CC(=O)C=C[C@]4(C)[C@@]3(F)[C@@H](O)C[C@@]21C,0,23.446153846153845,6.47846153846154,3.4923076923076923,8.4,164.45339017325722,93.02745140230417,1.3686366315433691,6.50941076923077,6.984615384615385,7.993830953846152,207.07213603829362,24.41176470588235,6.399264705882352,4.4411764705882355,7.102941176470588,144.66463138818239,92.41259401228234,1.7676075141470586,6.540588235294116,3.19281045751634,7.834263529411764,261.82280036483246,21.807692307692307,6.325615384615385,4.176923076923077,5.753846153846154,151.68421089062332,82.34319545004307,1.540077201587946,6.433832307692307,3.248290598290598,7.812023938461539,226.17266068033203,19.984615384615385,6.506102564102564,3.5692307692307694,4.748717948717949,155.53908626299068,73.4854755110728,1.4176787665678716,6.586894871794872,3.8545940170940165,8.002504574358975,206.1803198055271,16.293436293436294,6.32054054054054,2.9382239382239383,3.471042471042471,158.87946814363022,57.54581334143628,1.2637578036284633,6.393141698841699,3.3490454740454743,7.858368416988417,175.71954406978605,13.560655737704918,6.17416393442623,2.419672131147541,3.0229508196721313,164.7589460263768,47.07876525867017,1.0578847795669506,6.219112786885246,3.3561247723132968,7.786562859016393,143.4486752517058,13.538745387453874,6.222583025830259,2.3542435424354244,3.1918819188191883,166.71682256909818,47.294855789402206,1.024787669921657,6.253767527675277,3.813550635506355,7.843600029520294,139.37372901387891,14.634703196347031,6.291963470319635,2.328767123287671,3.365296803652968,163.25064564323407,51.193418593117805,1.084879284811653,6.335370319634702,3.861872146118721,7.892031397260275,149.54740028402398,12.881188118811881,6.2364356435643575,2.0841584158415842,2.9702970297029703,167.22874083586754,44.20208339742574,0.9856919498378317,6.264279702970296,3.760107260726073,7.869661643564356,133.62705887078832,8.176094674556213,0.2053633136094674,0.02451881569454826,0.8828402366863906,4.760710059171599,1.6254120054220684,38.83216689531107,0.22888056963144288,0.18612023668639047,3.217034845496384,0.13365799384615382,48.579750454958244,0.14517229376957885,-0.009094082840236637,-0.0121157065102899,0.4228158719108945,1.484312565262791,0.05336716734568983,0.753701744571503,0.010863128612856494,-0.007254037591367856,-0.21379200990060715,-0.007042851764705878,2.648088236765446,1.397514792899408,0.017837869822485208,-0.0008835535249405245,0.014201183431952633,0.2949112426035501,0.03375353808965488,6.672988414634676,0.021088362088223553,0.018661597633136094,0.17748849441157136,0.009346344615384618,7.213551067760524,-0.696094674556213,-0.0071818540433924135,0.0019014802212932946,-0.15857988165680478,-0.768915187376726,-0.08092564003800698,-3.215802924683442,-0.004398153896093488,-0.007974122287968372,-0.04404722770107387,-0.0029955076923077056,-3.0015706144293643,-1.5689072673688058,-0.023240355486509292,-0.0005308070692645251,-0.10927326311941697,-0.6677489662105046,-0.21696175535403958,-7.64673275856587,-0.04558836879731797,-0.02276465011080392,-0.3383363667979053,-0.012317501776061774,-10.785425141528354,-0.06058395576680577,-0.006014007178193843,-0.0005984270307629713,-0.023571636434183717,0.03222815016005435,-0.08214240696087897,-0.33731273574334725,-0.010351992352925308,-0.004702985740615024,-0.07506027634968367,-0.0042462793442622875,-1.177472280190121,0.460010917268936,0.011421245005349434,-0.00022391110218079714,-0.019541911395445307,0.0803345051201992,0.15272166486383826,2.224722256695781,0.01932681633483158,0.01010529269198015,0.1966387912399834,0.007089039704797047,3.6263431577802105,-0.3753921807030341,0.0019566723406554873,0.0015825625969467553,-0.033314420037286206,-0.10352705952284455,-0.12798143534190523,-1.790117689652417,-0.019636043931492438,0.0010744805598335687,-0.09255000765538171,0.0014771426484018247,-4.1540751105637455,-0.15050442322338725,-0.008583420235514685,-0.0009809363049231529,0.007411096139199738,-0.03900404241607584,0.049821999229398214,-0.5868656693627484,0.006433965715596454,-0.007665179565293821,-0.1026889878336946,-0.006938746930693069,0.925676309208707,,,0.4544817927170869,0.8602941176470589,0.23529411764705882,0.0,0.625,-0.3897058823529412,1.4977869522018883,0.03533209618795882,0.04544974324678235,0.8554901973867222,0.15035000474419777,0.311794768549405,2.3532771495886102,0.4621447732936028,2.0080054212475256,1.530587069847384,0.0,0.42444521642916755,0.05297313497097395,0.47741835140014155,7.356927633415397,1524.0,421.1000000000001,227.0,546.0,10689.47036126172,6046.784341149771,88.96138105031899,423.11170000000004,454.0,519.5990119999999,13459.688842489086,1660.0,435.15,302.0,483.0,9837.194934396402,6284.056392835199,120.19731096199999,444.75999999999993,217.11111111111111,532.72992,17803.95042480861,2835.0,822.33,543.0,748.0,19718.947415781033,10704.615408505599,200.210036206433,836.3981999999999,422.2777777777777,1015.563112,29402.445888443162,3897.0,1268.69,696.0,926.0,30330.121821283185,14329.667724659197,276.447359480735,1284.4445,751.6458333333333,1560.488392,40205.16236207778,4220.0,1637.0199999999998,761.0,899.0,41149.78224920022,14904.365655431997,327.313271139772,1655.8237000000001,867.4027777777778,2035.3174199999999,45511.36191407459,4136.0,1883.1200000000001,738.0,922.0,50251.478538044925,14359.0234038944,322.65485776791996,1896.8294,1023.6180555555555,2374.901672,43751.845951770265,3669.0,1686.3200000000002,638.0,865.0,45180.25891622561,12816.905918927998,277.717458548769,1694.771,1033.4722222222222,2125.6156079999996,37770.28056276119,3205.0,1377.94,510.0,737.0,35751.89139586826,11211.3586718928,237.588563373752,1387.4460999999997,845.7499999999999,1728.354876,32750.88066220125,2602.0,1259.7600000000002,421.0,600.0,33780.20564884524,8928.82084628,199.109773867242,1265.3845,759.5416666666667,1589.671652,26992.66589189924,531.4461538461538,13.348615384615382,1.5937230201456367,57.38461538461539,309.4461538461539,105.65178035243444,2524.0908481952197,14.877237026043787,12.09781538461538,209.10726495726496,8.687769599999998,3157.683779572286,9.871715976331362,-0.6183976331360913,-0.8238680426997131,28.751479289940825,100.93325443786979,3.6289673795069084,51.2517186308622,0.7386927456742416,-0.49327455621301425,-14.537856673241286,-0.4789139199999997,180.07000010005032,181.67692307692306,2.318923076923077,-0.11486195824226818,1.8461538461538423,38.338461538461516,4.387959951655135,867.4884939025079,2.741487071469062,2.4260076923076923,23.073504273504277,1.2150248000000003,937.7616388088682,-135.73846153846154,-1.4004615384615207,0.37078864315219245,-30.92307692307693,-149.93846153846158,-15.78049980741136,-627.0815703132712,-0.8576400097382302,-1.5549538461538324,-8.589209401709404,-0.5841240000000026,-585.3062698137261,-406.3469822485207,-6.019252071005907,-0.137479030939512,-28.301775147928996,-172.9469822485207,-56.19309463669625,-1980.5037844685603,-11.807387518505355,-5.896044378698215,-87.62911900065747,-3.1902329599999995,-2793.4251116558435,-18.478106508875758,-1.8342721893491223,-0.18252024438270625,-7.189349112426034,9.829585798816575,-25.053434123068087,-102.88038440172092,-3.157357667642219,-1.4344106508875822,-22.893384286653518,-1.2951151999999977,-359.1290454579869,124.66295857988166,3.0951573964496966,-0.06067990869099602,-5.295857988165678,21.770650887573982,41.38757117810017,602.8997315645566,5.237567226739358,2.7385343195266207,53.2891124260355,1.9211297599999997,982.738995758437,-82.21088757396447,0.4285112426035517,0.3465812087313394,-7.29585798816568,-22.672426035502955,-28.02793433987725,-392.0357740338793,-4.300293620996844,0.23531124260355152,-20.268451676528596,0.3234942399999996,-909.7424492134602,-30.401893491124227,-1.7338508875739664,-0.1981491335944769,1.497041420118347,-7.87881656804732,10.064043844338439,-118.54686521127519,1.2996610745504837,-1.5483662721893519,-20.74317554240631,-1.4016268799999998,186.98661446015882,0.7431535363109444,0.5823196234427189,0.42467357545898643,0.3132332774984896,0.26732324848142475,0.17325116188746092,0.15607886428319748,0.09863405845886392,0.09120772402355201,0.05711551679519061,0.056013240083202,0.03182085286685545,0.03332221752726115,0.018127022147225988,0.01987597077437735,0.010372647368571948,9.004069011326251,5.703335385668008,4.107689599253693,2.2021231291474908,0.44362290989382464,-0.49063492145425686,4.123976062080393,0.971465807629062,7.004061431903849,0.9950234121301947,17.42477275288553,10.96389300465828,19.000143523604187,11.715028994794661,1.9813389640209178,0.5459684739251316,3.9886269057417927,2.2518478717574077,8.001804956923941,1.0637141944129587,4.0098922205791485,2.4478579102427194,20.88730186546785,13.304117192876461,0.2422544904781511,0.5790989130928104,0.8099922280623262,0.8731955494950966,0.8831059969878009,0.8979716682268573,1.7380146172628126,1018.3858270401208,0.0,2.0,5.0,0.0,5.0,6.0,1.0,4.0,2.0,4.518099851790173,2.426480118092236,0.992758846353551,0.6003007693639066,0.5387623078254444,0.44645461551775245,183.42148589993323,2244.319722654569,77.85649567663623,34.527995733147215,72.41359516767558,,14.0,744.0,70.47227392312386,29.3912035259687,25.045709815142967,11.993926152995277,13.847474399381248,18.228060320501644,13.847474399381248,0.0,0.0,9.473725907600098,15.452380952380954,29.25,8.0,0.0,21.25,0.0,0.04551820728291311,-13.25,0.17906593406593357,0.018593194245368205,-0.16047273982056537,0.03406473700591339,0.21630061349693214,0.0,0.6207326007325993,0.913165266106442,0.4416666666666657,0.6021394064872311,0.8791005291005286,50.9247563748642,1.2012912703906,1.5452912703905999,29.086666711148553,5.111900161302724,10.601022130679771,80.01142308601275,15.712922291982496,0.49769938650306783,0.2773497688751926,0.12942989214175654,0.2912172573189522,0.68,0.36154993413902126,-1.2249714524351012,-0.08435451420929059,-0.01884571465284771,-0.06124857262175506,0.6384500658609787,2.163139944548536,0.033180646966058026,0.03327907606997748,0.048069776545523024,-3.055402528591468,0.7721439664332617,0.6539563477697281,1.4269363293348691,0.9758713136729222,0.43797413566202054,1.1229230607676104,0.7771212158762041,1.2018637461276602,0.6454680198795849,0.6523843190310697,0.6912006506249889,1.0570642374858472,0.6887447892542844,0.6409884055966621,0.9531106990595354,1.6514745308310992,0.8145570249577408,1.0840519530945967,0.6934799977788951,1.0614473896954641,0.6274740003916791,0.5957111121556639,0.6674979679302447,0.9237388526303812,1.0140497143739386,1.0281139309560579,0.9162443427469816,1.6614834673815906,1.1295614994531171,1.2565847613484673,1.0168359570140941,1.1248432448391972,1.0206743832537681,0.9746820869889837,1.0189078065176438,1.0820835969919356,1.1321915444194277,1.095424012234744,0.8913201851605944,1.2207811028186362,1.0349041352322648,1.367658627085286,1.1463090943882865,1.271130798467388,1.094323106943313,1.05676511536997,1.04584833717982,1.2407065516358675,1.0015110213441256,1.0037806604762838,0.9889518129617518,0.9214784863534479,0.9364589055498411,1.0169076994609487,1.0036666693779104,1.0048304692090106,1.0037065919043506,0.9331367951275481,0.9944275550271515,1.005480419238183,0.9651864929950829,0.9769466894585963,1.0975685584808246,0.9383180158879337,0.9909860657719631,0.8246441690863012,0.9622090230563569,0.8435300163732818,0.9815996880907619,0.9147773651241706,0.9757891712684211,0.8873568326375029,1.0423183403444434,0.9800274227316066,1.0420104829583714,0.9268549463194877,1.029383654720604,0.964683105942876,1.0381795092610944,1.0433111411909088,0.9860446636125546,1.0459724893755882,0.9966932833147344,1.0545753738726105,1.0525362401918748,1.102498743062882,1.1109210794105961,0.7508825949619091,1.0637977390261646,0.8436158738110349,1.0448218140356826,0.8810700043134483,1.1048973008263008,1.0571474203239628,1.1187438889395562,0.9294450021951289,12.0,0.18987858381797776,8.888888888888893,6.173611111111111,4.5038888888888895,2.754444444444444,1.6491156462585033,1.0712868480725621,0.6656588561350465,0.36969135802469144,8179.980662297117,9276.41220856998,3245.202030494308,2925.880212262807,13.543269472502313,0.49149041556499984,6.886882331353375,0.9665312721904542,1.0,0.68,1.5042679612382817,3.595887694936218,5.029608966674903,5.422067043664548,5.48360550520301,5.575913197510702,0.32432432432432434,0.009041837324665607,0.14571948998178513,0.0801767676767677,0.05926169590643276,0.03934920634920635,0.02659863945578231,0.019838645334677083,0.015849020384167772,0.010873275236020337,0.7310329019738293,27.04601899196494,9.08142972319269,3.833353459727086,196.72251286136978,1.0,4.477126330190947,182.27846777485132,,163.89199781132947,162.49711426881177,166.65850773298882,163.85832887581438,218.95470040829622,163.5297935556817,163.9815891653187,189.67037177674197,0.017755701168841787,-0.044282898831339235,-0.49413914037388923,0.47892682542185766,0.3117838614017745,0.0328330092109982,0.019409211610658568,0.047461995705222824,-0.038975007342112886,-0.0664562307119242,-0.052693083010152825,0.054510124320640084,0.17092693376563223,0.0868600603923196,-0.0360357341866631,0.016085790884718464,0.061946902654867214,0.02076614296994204,0.1718417731522582,0.09213696960900303,0.1002663545102867,0.05517145537296322,0.06992731483118525,0.14848884566520618,-0.08513779527559055,-0.0349714557929753,0.07755187872781667,-0.1796246648793566,-0.1615127108813099,-0.04978777058865955,-0.08281286319542847,-0.019215933895898884,-0.04284392944011046,-0.013691871495497413,-0.022411736149172388,-0.06178645600932707,-0.19188956706325858,-0.11316702617442521,-0.02164896852593699,-0.12377467471301251,-0.14026247301577913,-0.13348108333782205,-0.1969174879985696,-0.19917972447694918,-0.1223115256895035,-0.1051702524365105,-0.09215686560610625,-0.22201483211669215,-0.007409889217078346,-0.029284720199005364,-0.024406848936673203,-0.02669977585373357,0.006769609944627106,-0.05053636043468818,-0.008686425783364597,-0.04522879495448086,-0.025268535138064957,-0.023332130348156663,-0.031769737238087986,-0.02423792360320664,0.05626291470186587,0.055614826254064234,-0.009132215232996904,-0.02213527497205266,0.01687447967250878,0.09395874052510228,0.05729070599365427,0.08444061619539296,0.054294432845620126,0.06112423417336107,0.05303865111844221,0.07464721666576803,-0.045913384769288995,0.009527857270439385,0.06454482209345197,-0.03773550258915126,-0.021746138335687486,-0.0787378430299415,-0.04609883590783009,-0.08579165965512742,0.005773045311800515,-0.02876873024392167,0.011051659582008095,-0.08551042505694394,-0.018407862092369474,-0.04179626869401558,-0.04000749127296811,0.008394606216653859,-0.00819290440528589,0.030651920290487213,-0.015112874616162912,0.02811058066640086,-0.04118402008165035,-0.03192038406965089,-0.051914193315514445,0.01905477695005798,7.098323376798651,19.155722241399815,8.210954723163411,14.59327147114016,36.28541976603041,42.196026610809234,42.93017819856864,43.79202435241479,43.88507050626095,68.27218432241587,52.03996037481106,0.0,14.431137358591696,1.8010865890131145,16.232223947604812,7447.449821533539,6904.561159109786,2222.2191181854405,438.0,61.0,91.0,128.0,177.0,228.0,287.0,346.0,406.0,478.20029617200083,37.0,5.2832037287379885,6.2166061010848646,7.195187320178709,8.167068178341237,9.157256000883727,10.144746033275508,11.141441405377789,12.136342001956313,13.136500969036243,0.6512820512820513,1.0018461538461536,1.1332208432757975,0.6129168815765035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6392775955780746,0.9861236802413275,1.0209759650400585,0.6117427453068001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,3.0,0.0,5.0,0.0,4.0,0.0,1.0,0.0,2.0,5.0,0.0,2.0,0.0,4.0,0.0,4.0,0.0,0.0,19.68678069728151,6.103966387748303,23.65993754060722,5.783244946364939,0.0,19.178148736287287,4.39041504767482,0.0,0.0,18.572861836593773,50.676969951223825,30.5953613843362,6.103966387748303,239.4943828101602,-811.4336479126657,-55.87729497424498,-12.48359458327178,-40.57168239563329,422.91586871009343,1432.886074741903,21.97920070239124,22.044401149875437,31.841912772042296,0.5,0.6835541481734796,0.135459867244216,26.149342940267,0.0893021684481955,74.06933290622415,0.3164458518265206,7.0,0.10810810810810811,0.24978015424166428,0.5970886878010133,0.835154730302943,0.9003214702255068,0.9105397869157185,0.9258672619510357,1.7620999999999991,,2.3333333333333335,2.67595818815331,1.738776680542951,2.361913605707021,-10.65655878257677,2.4290639242725254,2.3014584017515047,-3.738615489764913,115.88160000000005,43.25534448124361,0.0,0.0,22.665793031116348,76.8559786956925,6.606881964512918,23.80116485057091,0.0,0.0,4.31748811353631,0.0,5.765191102784844,2.3978952727983707,7.4318919168078,5.043425116919247,9.216620609933333,7.4127640174265625,11.069836368265374,42.333333333333336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.11999999999999,0.0,48.35847455185333,0.0,0.0,0.0,4.245652796847644,0.0,-1.9128101954229293,73.65935481292684,0.0,4.39041504767482,0.0,63.80278062805387,28.651874643887382,22.665793031116348,53.378235290466534,23.80116485057091,0.0,0.0,0.0,39.839597302472725,41.55304371257485,41.82176744166198,364.55693554970264,,327.6467407206982,324.8368192324381,333.2147344847692,327.57772165717546,442.29739560941823,326.9167009981709,327.82779842465203,380.88017346103425,41.82176744166198,364.5569355497027,,325.4506622893256,322.31827034947025,331.5782387854347,325.35474414592204,448.5659595991692,324.63052318709094,325.661719928886,383.0793590432489,5.397987354733823,255.82083038864627,,234.98462574659462,233.41906810832785,238.1260755279184,234.95312131711518,299.0861201933043,234.57993828169026,235.08216739168967,264.50661242342767,1.2300519835782937,10.722262810285372,,9.636668844726417,9.554024095071709,9.800433367199094,9.634638872269866,13.00874692968877,9.615197088181496,9.641994071313295,11.202358042971596,2.728224716700717,182.27846777485132,,163.89199781132947,162.49711426881177,166.65850773298882,163.85832887581438,218.95470040829622,163.5297935556817,163.9815891653187,189.67037177674197,64.09803921568628,0.0,5.537860042320876,0.0,17.16587789940739,0.0,23.147134068516195,66.3634377276038,-0.29648062461261326,0.0,10.216615767183585,0.0,-4.267545036533132,0.0,-7.028112602893671,0.0,0.0,39.763278444942,452.7932752193073,97.77741748048831,233.73270017085417,326.9245828338687,352.4343578381956,356.43435783819564,362.43435783819564,2233.0,153.57835173887236,209.6169763009464,86.65511251847185,127.2,127.2,1.0,8.181440695719374,6.20945336562895,4.674771913791963,5.715987895827089,,5.73763441995657,5.738792114843767,5.734582717020387,5.7374985099472795,5.6803294032307825,5.73788354468917,5.737636678144991,5.711383175533814,0.13749329158211654,0.1681172910537379,,0.1687539535281344,0.16878800337775784,0.16866419755942313,0.16874995617491997,0.1670685118597289,0.16876128072615207,0.16875401994544093,0.1679818581039357,2.765955804678871,2.9670425740925137,,2.9708224350492114,2.9710241868554226,2.970290418792593,2.970798747304568,2.9607846562001625,2.9708658535220693,2.9708228286239513,2.9662366633517587,342.59000000000145,546.128750546073,239.97194583579048,,235.92149193007884,235.63176991748563,236.48129760341067,235.91156107139082,246.04850852898497,235.8453169711047,235.94164168773858,240.99661552274586,16.062610310178616,7.057998406935014,,6.938867409708202,6.930346174043695,6.955332282453255,6.938575325629142,7.236720839087793,6.936626969738374,6.93946004963937,7.088135750668996,7.526630186429893,6.70429745578079,,6.687274519990452,6.6860457211569395,6.689644556526111,6.687232425191767,6.72930413725747,6.686951585192162,6.687359925084584,6.708558321540076,27.382493666590975,48.35847455185333,23.147134068516195,-6.419656783837654,-3.927940292214734,0.0,1.8215470395564615,4.804614416202099,0.0,452.1008746324884,158.64353435496614,-537.5019668058259,-37.01369301816102,-8.269261027781935,-26.875098340291295,280.1438069641595,949.1584251696529,14.559247865485116,14.602437310302355,21.09240944821451,2963.0,77.0,4.369748631050237,2.4450122752531263,0.3707908118985982,0.23800275690049974,2.6260895225263363,1.213181819869923,0.8720973896572283,0.3444299561312586,0.0,0.0,0.0,0.0,0.05892556509887896,0.05892556509887896,0.40383876791260265,0.3086456241505192,1.2178080450727256,0.7683803819983802,25.267220234572108,19.798867197052445,15.712922291982498,11.589631267444116,16.30671815736691,10.568320875135116,14.20317664977097,8.975699319756616,11.674588675014657,7.3107861497843984,9.914343494726754,5.6322909574334155,7.597465596215542,4.132961049567525,5.7044036122463,2.976949794780149,11.67094492325579,6.353547285078032,20.219218362588574,10.68153833960086,36.721171379923376,17.405448993320903,119.96284664350567,48.74351326689007,30.795103136636662,27.90589037711633,26.17317808842715,25.49820430963436,196.0,250.0,69.39358299999998,39.15641700000002,0.26153846153846155,247.09,14.75,7.069444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,65.0,0.0,0.0,68.0,0.0,6.0,6.0,62.0,6.0,37.0,62.0,0.0,0.0,0.0,25.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,8.0,2.0,0.0,34.0,9.0,0.0,0.0,8.0,0.0,4.0,4.0,0.0,0.0,1.0,0.0,0.0,3.784189633918261,6.752270376141742,4.31748811353631,4.7535901911063645,5.14166355650266,5.537334267018537,5.823045895483019,6.056784013228625,6.302618975744905,6.582025138892826 +41684,CC(=O)Oc1ccccc1C(=O)Nc1ncc([N+](=O)[O-])s1,0,38.8,7.13461,3.7666666666666666,13.081481481481482,161.80325219802805,154.5528593333334,1.7574778714547004,7.171306666666667,9.712151348879745,8.568656833333335,259.0210054041269,35.0,6.905451612903226,4.290322580645161,10.817204301075268,149.18069367566125,136.6948547096775,1.9591834445161285,7.032635483870969,4.31162883313421,8.279203225806453,293.4475001159274,34.4375,6.891485416666666,3.9166666666666665,9.680555555555555,152.71804426418015,134.0040427083333,1.7458691532197284,6.9981875,5.518454218106997,8.336385000000002,260.4652629838384,29.40740740740741,6.935535185185183,3.4814814814814814,7.728395061728396,157.60869881341307,111.15776312962964,1.5199272965286483,7.019546296296296,4.4617055326931885,8.459828333333332,229.34884321604076,29.862745098039216,7.152115686274511,3.372549019607843,9.50326797385621,159.0825913771264,114.10714545098043,1.489133621170549,7.205505882352942,5.935306221253934,8.590460549019607,231.5572200713818,26.68,6.846940000000001,3.16,7.553333333333334,158.11744696317993,100.92992245999996,1.5091807176909393,6.9198640000000005,5.001975308641977,8.320500800000001,224.99890089184382,25.452830188679247,6.744358490566039,2.811320754716981,6.188679245283019,160.0779805963863,94.92471152830187,1.4206006417027355,6.809115094339622,5.195143256464011,8.28400796226415,200.7043093774246,23.02127659574468,6.686936170212766,2.6808510638297873,6.588652482269504,163.42710697863518,84.70682357446806,1.3493179205094252,6.740802127659576,5.697530864197531,8.259210808510641,187.99530411946503,25.62857142857143,6.546028571428571,2.857142857142857,6.504761904761905,161.68545454464353,96.83945945714284,1.3721931831412286,6.6203828571428565,4.169312169312171,8.1045048,195.18249298339308,11.062222222222225,0.20894055555555544,0.03412143401719414,0.6455555555555555,5.116543209876544,1.7283372699729118,49.64063888888891,0.29731683390717883,0.18409555555555546,4.061259335467153,0.1414413655555555,42.04065610439013,0.38724014336917595,0.015719982078853046,-0.01717642623937889,0.11681003584229394,1.1811867781760252,0.007060786608418468,1.8464034121863961,0.020190862475726618,0.012737992831541214,-0.22064396900551156,0.007805274229390648,0.32030967469441646,2.3766666666666665,0.046959027777777794,0.006240286556604722,0.007916666666666692,0.49657407407407406,-0.21919726731579234,10.58908509722223,-0.017719303444180875,0.04456874999999998,0.7894455875628715,0.03513409416666661,0.03142862746748117,-1.470864197530864,-0.06226141975308644,-0.010396638827033492,-0.03876543209876542,-1.1006310013717417,-0.24709379187068164,-6.627971882716044,-0.04587456226431774,-0.0523493827160494,-0.8079929804061036,-0.04096121185185182,-2.5033964402452122,0.1835294117647058,0.008688725490196027,0.010323010049400857,-0.12267973856209151,-0.4796514161220042,0.12370198796010437,0.5346499215686336,-0.01140026500547561,0.006309803921568626,-0.27457240646601566,0.007202084771241861,-3.5936436841148565,-0.3555555555555554,-0.02679788888888888,-0.005773362345662571,-0.11422222222222222,-0.5307654320987654,-0.08357403118765833,-1.6525693088888898,0.00520218971716246,-0.023820222222222208,-0.35162490474013103,-0.02039979222222223,-2.1918688017549894,-0.17165618448637313,0.010684853249475932,0.0029125266544869,0.03243186582809224,-0.3124901001630563,-0.05241293341908379,-0.9630109706498984,-0.010358788702621033,0.007602306079664597,-0.1169770844297205,0.008977326897274596,-4.194551927413631,-0.8991016548463355,0.0012896572104019522,-0.006566392964418924,0.08848699763593379,0.8227790911478854,0.06314856098069263,-3.666177995271875,0.019875601746963623,0.00011465721040189964,0.621228576663521,-0.0005673066903073629,2.9583942895904562,2.5053968253968253,0.03440801587301594,0.003821483080133645,-0.0788888888888889,1.164938271604938,-0.11866647982029428,11.615010034920628,-0.01834580804487604,0.03672063492063493,0.17949773553683018,0.01840173920634912,5.953259431454271,,,0.46190476190476193,1.4166666666666667,0.7619047619047619,0.07142857142857142,0.6547619047619048,0.10714285714285714,0.6289883828894264,0.02118949103744463,0.029379967227920818,1.0191801488013734,0.29045207744859336,0.184273363055538,1.6481685316908,0.47472544050413135,1.9885700628505372,1.1798961641573429,0.28891898822506434,0.42299200253364977,0.0,0.8086738986931947,10.23420971293334,1164.0,214.03830000000002,113.0,392.44444444444446,4854.097565940841,4636.585780000002,52.72433614364101,215.13920000000002,291.3645404663923,257.05970500000006,7770.630162123807,1085.0,214.06900000000002,133.0,335.3333333333333,4624.601503945499,4237.540496000002,60.73468677999998,218.01170000000005,133.6604938271605,256.65530000000007,9096.87250359375,1653.0,330.7913,188.0,464.66666666666663,7330.466124680647,6432.194049999998,83.80171935454696,335.913,264.88580246913585,400.14648000000005,12502.332623224243,1588.0,374.5188999999999,188.0,417.33333333333337,8510.869735924305,6002.519209000001,82.07607401254701,379.0555,240.93209876543216,456.8307299999999,12384.837533666201,1523.0,364.75790000000006,172.0,484.66666666666663,8113.212160233446,5819.464418000001,75.945814679698,367.48080000000004,302.70061728395063,438.11348799999996,11809.418223640472,1334.0,342.34700000000004,158.0,377.6666666666667,7905.872348158996,5046.496122999998,75.45903588454696,345.9932,250.09876543209882,416.02504000000005,11249.94504459219,1349.0,357.4510000000001,149.0,328.0,8484.132971608475,5031.009710999999,75.29183401024498,360.88309999999996,275.34259259259255,439.052422,10637.328397003505,1082.0,314.286,126.0,309.6666666666667,7681.074027995854,3981.220707999999,63.41794226394299,316.81770000000006,267.78395061728395,388.1829080000001,8835.779293614856,897.0,229.111,100.0,227.66666666666666,5658.990909062523,3389.3810809999995,48.026761409943,231.71339999999998,145.92592592592598,283.657668,6831.387254418758,331.86666666666673,6.268216666666663,1.0236430205158242,19.366666666666667,153.49629629629632,51.850118099187355,1489.2191666666672,8.919505017215364,5.522866666666664,121.8377800640146,4.243240966666665,1261.219683131704,12.004444444444454,0.48731944444444447,-0.5324692134207456,3.621111111111112,36.61679012345678,0.2188843848609725,57.23850577777828,0.6259167367475251,0.39487777777777766,-6.839963039170859,0.2419635011111101,9.92959991552691,114.07999999999998,2.254033333333334,0.29953375471702665,0.3800000000000012,23.835555555555555,-10.521468831158032,508.276084666667,-0.8505265653206819,2.139299999999999,37.893388203017835,1.686436519999997,1.5085741184390962,-79.42666666666666,-3.3621166666666675,-0.5614184966598086,-2.093333333333333,-59.434074074074054,-13.343064761016809,-357.9104816666664,-2.477226362273158,-2.8268666666666675,-43.63162094192959,-2.2119054399999984,-135.18340777324147,9.359999999999996,0.44312499999999744,0.5264735125194437,-6.256666666666667,-24.462222222222213,6.308801385965323,27.26714600000031,-0.5814135152792561,0.3217999999999999,-14.003192729766798,0.3673063233333349,-183.27582788985768,-17.77777777777777,-1.339894444444444,-0.2886681172831286,-5.711111111111111,-26.538271604938267,-4.178701559382916,-82.62846544444449,0.260109485858123,-1.1910111111111104,-17.581245237006552,-1.0199896111111115,-109.59344008774947,-9.097777777777775,0.5662972222222245,0.1543639126878057,1.7188888888888885,-16.561975308641983,-2.777885471211441,-51.039581444444615,-0.5490158012389148,0.4029222222222236,-6.199785474775187,0.47579832555555357,-222.31125215292244,-42.25777777777777,0.06061388888889175,-0.30862046932768944,4.158888888888888,38.67061728395061,2.9679823660925537,-172.31036577777812,0.9341532821072903,0.005388888888889283,29.19774310318549,-0.026663414444446053,139.04453161075145,87.68888888888888,1.2042805555555578,0.13375190780467758,-2.7611111111111115,40.77283950617283,-4.1533267937103,406.52535122222196,-0.6421032815706613,1.2852222222222225,6.282420743789056,0.6440608722222192,208.36408010089949,0.7335910911907768,0.5509365451287789,0.4531470113903073,0.29691722387897457,0.3078033698665247,0.1625981767934182,0.18618452662629587,0.0886632196490508,0.1226089859206385,0.04729770156388856,0.08115928106670417,0.024547262638206793,0.05498453015561539,0.0128918535287406,0.0343936614381368,0.00704763260683012,16.004503809083815,5.693664638883,3.607718668204569,2.1925408867057348,0.5159153969764831,-0.4633751826729994,3.2057059860517967,0.9714970779656977,7.004120559876077,0.6531912825121167,14.5948464688355,10.311846614954906,32.0622459832469,11.705313105438012,2.936315558036097,0.6692537566605868,3.553214968651394,2.242287003253428,8.001937916091578,0.6050854859643445,3.757133355437722,2.438307236076487,24.440709098130647,14.651533501439022,0.373943883011829,0.7621128590769018,0.8353311307977368,0.8857845600022355,0.89839791730336,0.89839791730336,1.8438263273831044,712.4233906667993,0.0,4.0,1.0,0.0,5.0,0.0,1.0,0.0,0.0,2.930446766607832,0.8788175992200093,0.49182958340544936,0.22516291673878275,0.15849625007211632,0.15849625007211632,-52.392643289594275,1111.722498315191,72.0567848726382,37.057416610506365,78.79475841092106,,11.0,374.0,16.799796066121026,19.703392636909218,21.4456037815081,0.0,17.533629449547814,19.056471336613843,12.13273413692322,0.0,10.30076712495354,4.736862953800049,9.700000000000001,29.75,16.0,1.5,13.75,0.0,0.03809523809523804,2.25,0.3189617486338794,0.09614035087719275,-0.22282139775668663,0.0296536796536796,0.22899999999999976,0.0,0.7566666666666666,0.952380952380952,0.4377049180327872,0.6605263157894739,0.9227272727272724,13.208756040677955,0.4449793117863372,0.6169793117863371,21.402783124828844,6.099493626420461,3.869740624166298,34.6115391655068,9.969234250586759,0.4850000000000002,0.18900343642611678,0.0,0.35051546391752575,0.08333333333333333,0.5515461880928261,-1.2065199907914264,-0.10366654785887698,-0.040217333026380885,-0.10054333256595219,0.4484538119071739,0.9810030432511319,0.038118724011420295,0.03270010144170439,0.054500169069507325,-3.1245945902652967,0.6469271245091304,0.5580472846326704,1.4866197861913293,0.8694686580423074,0.4029144652247416,1.1162170591695886,0.6385040176950636,0.8432757307928802,0.5400208049972491,0.5724128389685623,0.5914786150582855,0.8138799908295606,0.69270414825231,0.5479914542413713,0.8769057703808861,1.0138769363166953,0.6837766021619535,1.1791837020934914,0.6837645075677241,1.0786186036327,0.5185971129123765,0.4766431078713827,0.5333974708907452,0.9143223219476956,1.1804997544752465,1.2568357058257165,1.3294229562754707,1.0398737808376362,1.1258029576724682,1.135401196580247,1.1685568155869899,1.2226399521559133,1.2348309117514122,1.0171929474179193,1.2602773348664174,1.0045797143210113,0.7419114692883982,0.9554797225529795,0.8741945824212017,1.1891262529108027,1.0086537751863605,0.9000290450977666,0.755180756773083,0.8630315017344903,0.9502938229720148,1.017347218774611,0.9679479631831719,0.9463344409424942,0.8231619124146241,1.0170098353332824,1.1869852252432498,1.153012048192771,0.9645907730914003,1.0096849335033067,0.8343352876804006,0.8323217891584674,1.017565937979069,0.9076639493340869,1.0367734791776186,0.9890182042747802,1.0741697430960375,0.8828133085709584,0.7735903163466253,0.8617218198941317,1.0387169410689212,0.9763476227861128,1.076912501918004,1.0609230061365968,0.902257543764871,0.9651111403984383,0.8600118311991533,1.1383444523590276,1.2540604190352442,0.9625366541582547,1.02032073112224,0.7327791408796279,0.8812250111403851,0.9062531480526085,1.2444294471895945,1.0086276061014787,0.9860792177769745,0.792634457665605,0.9429309195056349,1.0231883669923085,0.9437525110486138,0.6968258990652388,0.7028403928046781,1.06958446029014,0.7692135342699958,1.0301894864613443,0.9346962555848817,1.1388453400684047,0.6859845904732017,0.712619444870036,0.6885968013827365,0.9818491358481171,5.0,0.0908070605040302,2.222222222222223,1.5972222222222223,1.1522222222222225,0.7397222222222222,0.29963718820861673,0.2717545351473923,0.18518518518518517,0.13375771604938275,4477.789619825697,4719.890818369552,2140.93940314255,2046.9699844639945,12.13526003748797,0.47006717075301385,6.430872685313887,0.8870316100645452,1.0,0.08333333333333333,1.9764438290006863,4.028072996388509,4.415061012203069,4.681727678869736,4.748394345536402,4.748394345536402,0.22727272727272724,0.015134510084005032,0.0740740740740741,0.057043650793650785,0.04115079365079366,0.029588888888888887,0.01361987219130076,0.015097474174855127,0.012345679012345678,0.011146476337448561,0.49647414648008986,17.355371900826448,8.022222222222222,5.0,122.08276225581106,1.0,3.95165277179812,97.9268416452429,,67.59297922779672,71.4050506299331,72.67272058803182,67.61364504259613,116.53419158307705,72.30761160513131,72.60427348679639,98.77142202331333,0.03500563770914607,0.07523662429754209,-0.5033911010517176,0.1809449780689579,0.23085640631275461,0.00408530599385219,0.03719539984808047,0.06791025657844228,0.06919228871713422,-0.054328953356565596,0.05518381556012964,0.007619045571007819,0.21484531940538365,0.22474826705096898,0.18288465113922756,0.012263339070568023,0.09705264935817004,-0.1268255167113464,0.2133148431252844,-0.05959737701805601,0.24209574134205672,0.19438443161425548,0.24840041687003228,0.000747576997595887,-0.1329628141600821,-0.29798628412535105,-0.30469524879272425,-0.060049722700325096,-0.2151122264045726,-0.1429661884653765,-0.13351906887321685,-0.1542952064350302,-0.2843598399650211,-0.19895133840625887,-0.28959853216181675,-0.0595470354703573,0.01659064590078698,0.04158467688139066,0.3025374034455582,-0.19003746076743952,-0.09374520969472622,0.07157282904744809,0.010770407745261808,-0.03834382619934238,0.03427461299935883,-0.06760770090896756,0.050919225383277415,-0.0854801998139983,-0.03214142225793489,-0.12825604305318103,-0.16920046041304462,-0.17693631669535284,-0.10373516069877423,-0.04835516345080505,-0.0332906535024227,0.017497124696230836,-0.12939053390147628,-0.08658026382835875,-0.14422790774180963,-0.05213688378964432,-0.015517332868394513,0.05113824466038105,0.08535768611070824,0.05023869061150261,-0.061074457371893535,-0.030325639751959555,-0.019399649001404163,-0.034840908826087556,0.04129543517073344,-0.02880315556511119,0.06347030702095753,-0.09977370279374902,-0.08127676670969283,0.006172364225666299,-0.19244188157830797,0.1370710806752847,0.16080761119336623,0.036537174819867395,-0.07385436765787633,0.0668499038072251,0.0006228135712233365,0.1529645179854202,-0.004010896586575555,0.0703698410948806,0.22648223612466276,0.16467849327540987,0.1119965555435906,-0.12220309810671258,0.22768072579866797,-0.06865933049175878,0.2339818804693189,-0.06170457220260703,0.19946508110867217,0.044197555661927006,0.13010153807601116,0.14160719605973504,3.588708172143258,8.902146160426994,5.026097724552823,23.66713228308034,45.441408208411396,49.03149212835247,50.0338254616858,50.101025461685815,50.101025461685815,41.75997131986128,24.7778194473042,6.0672987527263516,8.882832053206645,0.0,16.98215187255709,4302.8950801998235,3851.362135169781,830.7713879000557,44.0,30.0,36.0,45.0,49.0,48.0,45.0,46.0,45.0,307.02629138800023,22.0,4.653960350157523,5.4680601411351315,6.329720905522696,7.167809184316444,8.031710375322042,8.878079256126435,9.742320649814571,10.592400782564011,11.456704258872694,0.877777777777778,1.0526666666666664,1.123599865604528,0.852773846196542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7235755888223555,1.0366013071895426,1.0571619325078903,0.7157722029988464,5.0,1.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,11.94635540489698,5.131558479839333,0.0,5.907179729351506,25.020181240915548,4.9839785209472085,0.0,0.0,12.13273413692322,23.469520014857956,6.923737199690624,10.486762540514666,280.3016455692542,-613.1663061627768,-52.68444344762034,-20.43887687209256,-51.09719218023139,227.90900227965994,498.5561921524141,19.37234142501787,16.6185397384138,27.69756623068967,0.45454545454545453,0.6012635890594101,0.194682616726323,50.492908711112115,0.1577952818806403,48.206351672774105,0.39873641094058987,6.0,0.18181818181818182,0.4027894632029352,0.8209013259829926,0.8997675668893824,0.9541129127801841,0.9676992492528844,0.9676992492528844,2.2289000000000003,,2.303571428571429,1.9609845219659923,1.4545191904946573,2.2991871333729694,-6.541878845206733,1.7887851897184825,1.734619084590567,-2.7953673998489466,74.47260000000001,19.24924837076136,0.0,4.9839785209472085,0.0,6.923737199690624,5.316788604006331,46.140081605922084,0.0,5.749511833283905,3.8066624897703196,0.0,5.10594547390058,2.3978952727983707,6.57507584059962,4.59511985013459,8.125926802707886,6.580639137284949,9.722864552377755,26.33333333333334,7.21229296113405,3.7306816893424033,0.0,0.0,0.7338493113294697,0.0,0.14074822058453162,0.0,31.57999999999999,0.0,33.62653374343309,0.0,-0.5970928166950893,0.0,0.0,0.0,-1.1284866637324242,33.70799596813584,10.05365155780638,10.132640456527199,5.749511833283905,21.783774587068233,4.794537184071822,10.114318268765572,17.28172587545944,30.462311845459517,0.0,0.0,0.0,25.58321538589626,21.707267664670667,25.73504327793788,195.8536832904858,,135.28188674897717,142.6233408292028,145.20691553887366,135.32494727871614,235.83345958009363,144.44486271600377,145.04334515601272,198.3431488950837,25.735043277937876,195.85368329048583,,133.41709083060974,140.8491167379003,143.89092198556892,133.46370055169987,239.66679766684496,142.8264380205442,143.47392788900225,200.33821144647567,4.6946997384908915,146.14893751469853,,102.48001213770627,109.0205843600254,110.29185507656805,102.50925374562004,171.9413928797804,110.30605303275638,110.70331690409657,148.74522846906729,1.2254782513303752,9.326365870975515,,6.441994607094151,6.791587658533466,6.91461502566065,6.444045108510292,11.23016474190922,6.878326796000179,6.90682595981013,9.444911852146841,2.362260046287764,97.9268416452429,,67.59297922779672,71.4050506299331,72.67272058803182,67.61364504259613,116.53419158307705,72.30761160513131,72.60427348679639,98.77142202331333,31.098039215686278,0.0,1.2211012954564542,0.0,0.0,0.0,0.0,31.714857975236708,0.0,2.419848828420257,4.922643613000756,0.0,0.0,0.0,0.0,0.0,0.0,21.473166089965392,305.5685581238461,59.29331487002059,120.84218989165528,132.45183036609208,140.45183036609208,142.45183036609208,142.45183036609208,431.0,115.32076590383157,202.64208972506805,67.91012941957406,139.67000000000002,111.43,0.8333333333333334,7.729185729832332,5.459431618637297,4.158909916290513,4.512312227010733,,4.519179243532907,4.517712413978366,4.513472658321592,4.519157135001812,4.473442375284056,4.517405891795122,4.51765159242719,4.498038549325717,0.19804332934716729,0.21487201081003493,,0.2151990115968051,0.21512916257039838,0.21492726944388535,0.2151979588096101,0.21302106548971694,0.2151145662759582,0.21512626630605666,0.21419231187265317,2.1671903453109973,2.2487470557798104,,2.250267738796096,2.2499431073579834,2.2490041927118325,2.250262846627854,2.240095563302659,2.2498752560752466,2.2499296443583443,2.245578768555636,199.45999999999984,119.7920031888617,109.40914794037128,,108.43521575228539,108.27419000213429,108.66886044576746,108.43754360767863,112.09729624640144,108.33331025499899,108.34557044913386,110.1021711110377,5.704381104231509,5.209959425731966,,5.163581702489781,5.155913809625442,5.174707640274641,5.1636925527466015,5.337966487923878,5.158729059761857,5.159312878530184,5.242960529097034,5.527694276837695,5.437031850420374,,5.428090249540076,5.426604150870515,5.430242625375431,5.428111717016215,5.461304555394421,5.427150025360204,5.427263190003736,5.443346107709886,4.922643613000756,36.76012261608041,12.87652418133614,0.1301417233560096,-1.0233423683599536,6.158469921115573,1.0538230400184765,1.2211012954564542,0.0,243.9541331815378,142.4522808878674,-311.6176456941104,-26.774795136074612,-10.387254856470348,-25.968137141175866,115.82578169914564,253.3715654028661,9.845230185958687,8.445718846762201,14.076198077937004,993.0,28.0,1.6508241262459313,0.6177418905523497,0.0,0.0,0.33093309327558146,0.05901897299021308,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.07905694150420949,0.23470804841064383,0.10683471928198726,0.33934589588423975,0.09583537815753398,15.405412915006313,11.569667447704356,9.96923425058676,6.5321789253374405,9.23410109599574,4.877945303802546,6.702642958546651,3.1918759073658287,5.517404366428733,2.128396570374985,3.9768047722685043,1.202815869272133,2.639257447469539,0.6188089693795488,1.547714764716156,0.3171434673073554,3.022523603991169,1.0194050160688695,4.381141255867892,1.19130899813763,6.0137876897301235,1.2097820341171728,69.58747689206716,34.61204590422809,28.40769231559704,26.54263921215079,26.34884650577689,26.34884650577689,104.0,118.0,36.25113699999999,17.836863,0.43333333333333335,64.09,8.027777777777777,4.666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,11.0,30.0,0.0,0.0,31.0,11.0,3.0,8.0,23.0,14.0,22.0,17.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,7.0,1.0,1.0,21.0,9.0,0.0,3.0,5.0,0.0,2.0,4.0,1.0,0.0,0.0,1.0,2.0,3.449987545831587,6.268148865350222,4.00277736869661,4.473066345354754,5.003526754858961,5.320262305298603,5.45157479039808,5.57583072492777,5.762837237437516,5.970384541811796 +9864311,CC(C)CNc1nc(-c2ccc(S(C)(=O)=O)cc2)cc(C(F)(F)F)n1,0,31.813953488372093,6.890193023255812,3.441860465116279,10.289405684754522,171.62422978212985,128.78373975463515,1.5554090066809765,6.900688372093022,8.926376527259386,8.270530162790696,223.8700268640203,32.70454545454545,6.5360000000000005,3.977272727272727,7.575757575757575,148.52360914005902,126.94027839785458,1.9106726265909098,6.692225000000001,3.1515852974186314,7.971164636363631,273.06680956881803,26.857142857142858,6.808983116883117,3.3896103896103895,8.532467532467532,161.74786504874774,103.92857971370012,1.5551788685518178,6.875475324675326,6.402837902837901,8.198810597402595,224.3636797003426,21.104166666666668,6.479135416666669,2.9895833333333335,5.666666666666667,161.87153484523802,78.37363725388333,1.3939037522311246,6.552792708333336,4.209201388888888,7.965018249999999,194.75774395868265,17.83495145631068,6.378436893203883,2.6990291262135924,4.9967637540453085,168.67103028169743,65.31732376007766,1.2104584777026794,6.430213592233009,3.6804956250749123,7.906732407766991,170.30322136316755,20.852272727272727,6.610306818181818,2.9204545454545454,6.268939393939394,167.96227598808161,78.89404536636363,1.2726156239952728,6.651223863636363,4.482305695847363,8.044824749999998,183.60661463647565,21.7,6.69656,3.075,4.9541666666666675,169.0275512163143,81.39466173491999,1.3213963069580124,6.749952499999999,4.165393518518518,8.133006049999999,193.37756408601106,22.175,7.011862499999999,2.85,5.029166666666667,170.85972244551914,82.07535689530002,1.3109282490174503,7.047427499999998,5.142554012345678,8.4223106,192.5685981612587,20.45679012345679,6.763007407407407,2.506172839506173,3.4156378600823047,168.97914849816104,75.08355711539754,1.2191493501844815,6.808035802469135,4.668981481481482,8.235835382716052,173.8000997764079,11.459167117360735,0.2805107625743643,0.0180755713381304,0.791779340183883,5.4425815756264635,2.984661029266072,53.37906925014149,0.2990665399253921,0.24668815575987013,4.224464286111723,0.16273745267712275,48.03632525230742,1.9959068784109335,-0.009884599783666835,-0.011530241570097032,0.11572594522837897,1.3814729228466385,-0.26252412108762146,8.539103249695787,-0.01108243227246818,-0.004040322778897685,-0.6293217902371,0.0017847640247799909,0.4958590617342154,1.1581690348591371,0.12628830115260611,0.002659049637086792,-0.027961762412817035,2.2762344920268127,0.8460032681454563,6.275281963459192,0.008756485455534514,0.10818904146151301,1.9021329897103592,0.06873647121294063,3.6203514349448893,-0.5085857220118983,0.011352561069046344,0.0011016851476861628,0.09460631873084548,0.5682926707128977,-0.0759240436441201,-2.058364351456333,-0.020152504223082502,0.0089788742788895,0.08216348295974558,0.002395604008923757,-3.647083156590096,0.300823851255205,-0.02353347650527439,-0.004900990157042939,0.0702662683056178,0.5244036982000826,-0.25849198996443473,1.7980500023127834,0.013073818407637479,-0.016818117376487956,-0.27477538260413303,-0.01796209255068337,6.453980120010919,1.4739724175229851,0.051567567235360594,0.004597784523503321,-0.034644033629971975,0.566667895832309,0.19208958862199424,7.219523284449926,0.003180074152088869,0.0458285197158169,0.18645177588638012,0.02519441069497026,1.527188819430804,-0.29812060573282845,-0.05134712885343429,-0.0008720732804255455,-0.1353839913466739,-1.4360893275644493,-0.4389477173482107,-1.3965967099397756,-0.00602733201441332,-0.04155042320173068,-0.3862454673252363,-0.029422332328285554,0.15377684904330985,-2.586492698756084,-0.07990654745808548,0.001161275672041467,-0.1975932936722553,-1.984861937383571,-0.33385676468531444,-12.761297951827393,-0.021116555794764198,-0.0729661208761493,-0.8973429208295587,-0.04454242389805305,-8.352120583789574,-1.4083488572401495,-0.07137105542535507,-0.0021748670843916677,-0.12941930573082552,-2.0657991084047205,-0.695815868320792,-7.362352822196112,-0.055950772889324055,-0.06205137712076599,-0.8925182761562543,-0.03932880553385549,-12.012972037140079,,,0.46228571428571436,1.25,0.62,0.02,0.63,-0.01,0.836537528777653,0.03799399743618111,0.044873997436181104,1.049681406860412,0.23446099360634926,0.22411355145239348,1.8862189356380648,0.45857454505874273,1.972130698927969,1.3021692269347065,0.24618908882028845,0.13524877914661335,0.20327482487974793,0.6699614719932632,8.676911220372107,1368.0,296.27829999999994,148.0,442.44444444444446,7379.841880631583,5537.700809449311,66.88258728728199,296.72959999999995,383.83419067215357,355.6327969999999,9626.411155152873,1439.0,287.584,175.0,333.3333333333333,6535.038802162597,5585.372249505602,84.06959557000003,294.45790000000005,138.66975308641977,350.7312439999998,12014.939621027994,2068.0,524.2917,261.0,657.0,12454.585608753576,8002.500637954909,119.74877287848997,529.4116000000001,493.0185185185184,631.3084159999997,17276.00333692638,2026.0,621.9970000000002,287.0,544.0,15539.66734514285,7523.8691763728,133.81476021418797,629.0681000000003,404.0833333333333,764.6417519999999,18696.743420033534,1837.0,656.9789999999999,278.0,514.6666666666667,17373.116119014834,6727.684347287998,124.67722320337597,662.3119999999999,379.091049382716,814.3934380000001,17541.231800406258,1835.0,581.707,257.0,551.6666666666666,14780.680286951183,6942.675992239999,111.990174911584,585.3077,394.44290123456796,707.9445779999999,16157.382088009857,1736.0,535.7248,246.0,396.33333333333337,13522.204097305144,6511.5729387936,105.711704556641,539.9961999999999,333.2314814814814,650.6404839999999,15470.205126880885,1774.0,560.949,228.0,402.33333333333337,13668.777795641532,6566.028551624002,104.87425992139603,563.7941999999998,411.4043209876542,673.784848,15405.487852900696,1657.0,547.8036,203.0,276.6666666666667,13687.311028351045,6081.7681263472,98.75109736494299,551.4508999999999,378.18750000000006,667.1026660000002,14077.808081889041,492.74418604651163,12.061962790697665,0.7772495675396073,34.046511627906966,234.03100775193795,128.3404242584411,2295.299977756084,12.859861216791861,10.607590697674416,181.6519643028041,6.9977104651162785,2065.561985849219,87.81990265008108,-0.43492239048134074,-0.5073306290842694,5.091941590048674,60.784808605252096,-11.551061327855344,375.72054298661465,-0.4876270199885999,-0.17777420227149812,-27.6901587704324,0.0785296170903196,21.81779871630548,89.17901568415355,9.72419918875067,0.20474682205568298,-2.1530557057869117,175.27005588606457,65.14225164720014,483.1967111863578,0.6742493800761575,8.330556192536502,146.46424020769766,5.292708283396428,278.7670604907565,-48.82422931314224,1.089845862628449,0.10576177417787162,9.082206598161166,54.55609638843818,-7.288708189835529,-197.60297773980795,-1.9346404054159203,0.861971930773392,7.887694364135577,0.2299779848566807,-350.1199830326492,30.984856679286118,-2.423948080043262,-0.5048019861754227,7.237425635478633,54.01358091460851,-26.624674966336777,185.1991502382167,1.3466032959866603,-1.7322660897782594,-28.301864408225704,-1.8500955327203872,664.7599523611246,129.7095727420227,4.537945916711732,0.40460503806829223,-3.048674959437534,49.86677483324319,16.903883798735492,635.3180490315935,0.2798465253838205,4.032909734991887,16.40775627800145,2.2171081411573828,134.39261610991076,-23.849648458626277,-4.107770308274743,-0.06976586243404365,-10.830719307733911,-114.88714620515594,-35.11581738785686,-111.72773679518204,-0.48218656115306563,-3.324033856138454,-30.899637386018902,-2.3537865862628444,12.302147923464787,-206.9194159004867,-6.392523796646839,0.09290205376331737,-15.807463493780425,-158.78895499068568,-26.708541174825157,-1020.9038361461915,-1.6893244635811357,-5.837289670091944,-71.78743366636469,-3.563393911844244,-668.1696467031659,-114.07625743645211,-5.7810554894537605,-0.1761642338357251,-10.482963764196867,-167.32972778078235,-56.36108533398415,-596.350578597885,-4.532012604035248,-5.0261615467820455,-72.2939803686566,-3.185633248242295,-973.0507350083464,0.7531225058326675,0.5896308183468486,0.4409370625564834,0.36014272697204136,0.3165406874644907,0.20632864721248617,0.18328979392241782,0.1021327679521496,0.11447095005982184,0.05133663254188169,0.07361581736440552,0.025638462182333514,0.04675650007791665,0.015259299214768002,0.03191925869661733,0.008359314262543436,16.01322133561286,5.6906176826410375,4.124535261946037,2.180295297411647,0.5237865527433707,-0.39336814772121265,4.0429897262188765,0.9681674801402835,7.014090990681352,0.6158826413688616,17.430699950948316,10.309668915537989,32.066593592563486,11.702224222302858,2.958457424018247,0.5269651968185056,4.007158031669813,2.233935941153411,8.007391608517915,0.29641555146747095,4.030610408881833,2.432491592982968,24.443829767552433,13.302786540931466,0.3376359667137362,0.6377952127177067,0.7779905500493103,0.8253538504770245,0.8253538504770245,0.8253538504770245,1.9803645536855503,847.9189289848749,0.0,0.0,4.0,0.0,8.0,0.0,1.0,1.0,0.0,3.5015912797741526,1.7905515920858366,0.9913765228625744,0.7213848839221839,0.7213848839221839,0.7213848839221839,-2.04754136989186,1253.893928092482,60.692175375203306,29.160323909127488,62.45820018592436,,12.0,472.0,21.707479648709437,21.589042127353395,22.455656797514123,12.10820789760957,12.322136251973014,24.26546827384644,0.0,13.847474399381248,15.284745645900749,0.0,11.557142857142859,31.25,15.5,0.5,15.75,0.0,0.03771428571428565,-0.25,0.24308014381286103,0.05961826591101549,-0.18346187790184554,0.025142857142857133,0.2292786099460753,0.0,0.6800664451827244,0.9537142857142855,0.4369863013698634,0.6204481792717089,0.9285714285714284,20.913438219441325,0.9498499359045276,1.1218499359045275,26.242035171510295,5.861524840158731,5.602838786309837,47.15547339095162,11.464363626468568,0.4847213900539247,0.2616398846312319,0.11536876802637,0.2595797280593325,0.375,0.5016837023966751,-1.0345546394759328,-0.07492403744243963,-0.024059410220370538,-0.0646596649672458,0.49831629760332485,1.027610494718367,0.02489085532727721,0.023897918481822492,0.038059647952532125,-5.834760014009362,0.7961903822060515,0.5607121124249831,1.842793361177763,1.2336065573770496,0.41829473937787953,1.096673009884598,0.7729576520965664,1.2912332177972792,0.5329211177188843,0.677497580825652,0.5284461149864768,1.0290949528799775,0.8689738617055967,0.38592316937678617,0.7895526342287004,1.177533532041729,0.460570929567286,0.7444560373280767,0.8375707581601027,1.0575196554007558,0.3899600278264175,0.39019300416645014,0.42005623464189235,0.9104444587099023,0.9051984023975834,0.6387077197702408,0.8865397717329971,0.8031292691256833,0.733535870045269,0.8202282053091418,0.8926638801773467,1.005822501049945,0.6509156576444599,0.6713851563963065,0.6787304967355601,1.0546174082582283,0.8478177792522238,0.8660376236850256,1.3027758947938228,0.754536049657807,0.8032293854134174,0.8799809166080614,0.846160279989071,0.814484141698265,0.8639858030155293,0.7950396669496327,0.8806878289141674,0.8415672342002419,0.6145776125422623,0.6356190753860039,0.9372178494119866,0.9742688152011926,0.8199347315486767,0.8094056279239134,0.6259136163198628,0.7724593726387429,0.6392047846226994,0.7059643683043071,0.6522465958399168,0.9083139524624222,0.8347891495185953,1.1223095680945137,1.3092474317699818,1.2336065573770496,1.2217220105995363,1.2000014510001715,0.8499503536406398,0.8753231542958796,1.101921405448139,0.9135516602423066,1.0859415608693275,0.9215509732843297,1.1485675854257127,1.641052256044564,1.0185141075064212,1.3569672131147545,1.4667394004637297,1.5061822944587022,1.1813732678414046,1.0594565757997003,1.6226357841817534,1.5277103376462193,1.612131002523915,1.0997675491504244,1.0607261972185513,1.4858361206205788,1.130024513777293,1.2259917020845985,1.4379227853225864,1.4651323919759205,1.0915024754216114,1.1710827663960504,1.4662522477525073,1.4432312432298078,1.467979956431794,1.213772811881291,9.0,0.07427813488419549,3.555555555555557,1.6875,1.5733333333333337,1.3819444444444444,0.7322448979591838,0.6024305555555556,0.38221214411690596,0.3225,5402.282647487903,5902.656730160832,2700.736909476459,2518.3650993512765,13.170857769967089,0.45337497544868105,7.19952045187019,0.8294076470809593,1.0,0.375,1.9246734749279453,3.6357131626162613,4.4348882318395235,4.704879870779914,4.704879870779914,4.704879870779914,0.34615384615384626,0.004951875658946366,0.09116809116809121,0.0456081081081081,0.04627450980392158,0.040645424836601315,0.023620803159973666,0.02008101851851853,0.015288485764676236,0.01791666666666667,0.6517088298393499,21.301775147928993,8.347140039447732,6.282314764737696,143.789312748007,1.0,4.129411960221386,129.51647677065833,,92.34733167996171,97.88373505833306,97.8778764694411,92.14286897905953,131.55263297104332,98.46116135341707,98.71446788510335,118.17297865906782,0.17417556249678195,-0.03523786286469631,-0.637890850275587,0.14615933929458524,0.2538267738665222,-0.08795776757006679,0.1599710030476628,-0.037056744212284345,-0.016378260101107545,-0.1489707919430276,0.010967137529926991,0.010322585233773619,0.10106921585116786,0.45020839840013865,0.14710736315579298,-0.03531509474132426,0.4182269866602428,0.2834503683500329,0.11756072280039911,0.029279388652836212,0.43856601517109645,0.4502660836697754,0.4223764725463436,0.07536695232054591,-0.04438243345289787,0.04047103563820209,0.0609488423396144,0.1194857126593807,0.1044160133966361,-0.02543807919882608,-0.03856126343849424,-0.06738468378344808,0.03639767078087716,0.019449444330696522,0.014720667980939371,-0.07592344205003293,0.026251807672780538,-0.08389509297004456,-0.27113887939488274,0.08874476099527825,0.096352014372834,-0.08660681646250393,0.03368455140884678,0.043715416679174446,-0.06817561761197387,-0.06504384082674812,-0.11037466947649008,0.13435624157576256,0.12862823296205397,0.18383454082867806,0.25436454745993553,-0.0437546572280179,0.1041174832123822,0.06435892945244408,0.13525007808993952,0.01063333314680472,0.1857751117991536,0.044136194144037584,0.1548163024583955,0.031792374029640115,-0.026015905229375108,-0.18304869439660804,-0.048245959373129615,-0.17098702185792355,-0.26386179198410076,-0.14706786232812102,-0.02616375162697453,-0.020153815989969834,-0.16843298809277438,-0.09143063857707362,-0.18079631851348055,0.0032012617167447295,-0.22571384746082684,-0.284860897046337,0.06424558595233762,-0.24955601092896185,-0.36469126090316895,-0.11185751460942613,-0.23906932307167508,-0.07060821916096707,-0.29578283015409784,-0.21241579051328424,-0.273707269994123,-0.1738709307991535,-0.12290150259755693,-0.2544325029469569,-0.12032079339056838,-0.16345375430074896,-0.3795623601961241,-0.23313061734581403,-0.13792583732951838,-0.18708469661394433,-0.25153772352640924,-0.21127371796951444,-0.24167027864129914,-0.25008099545589274,4.6282380363573035,12.273991168664251,4.325867117763711,23.090025073736946,38.54163467195921,42.922525796160166,43.194677368212076,43.194677368212076,43.194677368212076,49.30326747319923,32.55423067336766,6.154727220507211,3.381219478665334,5.081870621993699,16.74903679983158,7361.092204021044,5487.267017071916,2206.566693154219,92.0,39.0,43.0,51.0,68.0,76.0,89.0,83.0,91.0,373.10718247600056,26.0,4.875197323201151,5.68697535633982,6.583409222158765,7.427144133408616,8.320448113956559,9.17895289873455,10.070568559913799,10.937330182245267,11.827874881325616,0.7519379844961239,1.028372093023256,1.1532667744611702,0.7229694671357456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6711777468319177,1.0115823073415413,1.0369332136384426,0.6443408801518516,5.0,2.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,5.316788604006331,0.0,15.531181131265964,5.948339280986494,0.0,0.0,18.385754026223353,13.171245143024459,0.0,25.980208536304467,24.117007251546223,18.363977081120975,10.589411470366237,305.04741731264085,-629.0581482581466,-45.557358166640896,-14.629259261817367,-39.31613426613416,302.999875942749,624.8357798343352,15.134817208562408,14.53106464731012,23.1420659197902,0.5,0.8248164469548648,0.17163420880778693,9.472678347641306,0.21000340247701477,0.44996223639492655,0.17518355304513522,6.0,0.19230769230769232,0.3546958288867366,0.6700213364019431,0.8173003773906345,0.8670568214908658,0.8670568214908658,0.8670568214908658,3.6338000000000017,,2.553571428571429,2.274573372140208,1.9962262134093782,2.654757314829302,-9.289610055779939,2.090511846256989,1.9296346839337528,-3.2383629615769918,88.90750000000006,21.589042127353395,0.0,9.967957041894417,5.917906046161393,24.919256392342497,18.11731419343031,36.02576333715651,0.0,11.257379486545457,3.970291913552122,0.0,5.342334251964811,0.0,6.878326468291325,0.0,8.486527777105353,0.0,10.135907940630547,32.33333333333333,6.3558651948433695,7.62514146090535,0.0,0.0,0.0,0.0,-0.6641698181351401,0.0,44.220000000000006,0.0,22.969940032705463,0.0,0.0,-3.3845932962640224,0.0,0.0,0.0,49.59047130183032,5.316788604006331,19.119584424010952,0.0,31.186279615647333,16.013551653860976,5.917906046161393,19.54140239422971,35.227318817825825,0.0,11.257379486545457,0.0,31.08768708683706,28.86064311377246,29.635541485718498,259.0329535413167,,185.19788121894135,195.58550424689489,195.59605484180946,184.7731046612229,266.57369026027357,196.7550817591336,197.27456499549197,237.171920276744,29.635541485718498,259.0329535413166,,183.05288121894134,193.49289674452586,193.75952672547285,182.54310851676632,272.45582130212904,194.8318108605772,195.49930108627288,239.58432027971264,4.844568156905996,186.6578653378866,,133.49251113818335,140.64792450480027,140.60375752882103,133.27943363776274,184.44319456135986,141.3366596354941,141.593427643005,167.40094489683102,1.18542165942874,10.361318141652669,,7.407915248757654,7.823420169875796,7.8238421936723785,7.390924186448916,10.662947610410942,7.8702032703653435,7.8909825998196785,9.48687681106976,2.4222840784529978,129.51647677065833,,92.34733167996171,97.88373505833306,97.8778764694411,92.14286897905953,131.55263297104332,98.46116135341707,98.71446788510335,118.17297865906782,43.498039215686276,0.0,4.874261572217193,0.0,39.256401403230406,0.0,0.0,44.588128186453034,0.4243716805414135,2.7842726179978166,0.0,0.0,0.2042936563463258,0.0,-4.6124511710548415,0.0,0.0,27.70665784652962,501.5274080034333,82.76095942190165,156.33566599249923,190.7001939690995,202.3098344435363,202.3098344435363,202.3098344435363,683.0,125.90790067128414,106.51988525195648,59.813388351544155,80.33,71.95,1.0,8.620612449051384,5.700439718141092,4.372674910840937,4.912836860164949,,4.9074193749751345,4.896858397764999,4.8941649940598175,4.907712311081143,4.872697012169599,4.897716429523904,4.898925128922167,4.892122892293036,0.17490699643363747,0.19651347440659794,,0.19629677499900539,0.19587433591059994,0.1957665997623927,0.19630849244324572,0.19490788048678398,0.19590865718095618,0.1959570051568867,0.19568491569172144,2.3916656614640424,2.508142278762335,,2.5070389499673076,2.5048845880572035,2.5043344098653364,2.5070986406806806,2.4999383169441827,2.505059793571732,2.5053065514830397,2.5039170704573537,252.09000000000003,195.71352567245927,142.8204298656307,,142.63177842180937,144.03900805804662,144.42152441651874,142.55296270699725,147.38431426977246,143.98852103757224,143.91124256763217,145.23444620826703,7.828541026898371,5.712817194625228,,5.7052711368723745,5.7615603223218645,5.77686097666075,5.70211850827989,5.895372570790898,5.75954084150289,5.756449702705287,5.809377848330681,6.192942718208081,5.877878837832563,,5.8765570651097745,5.886374884058267,5.8890270082806095,5.876004330650653,5.909334289886558,5.886024313255885,5.8854874703573135,5.894640038968895,62.22634143593587,7.708018521706969,2.7842726179978166,-0.6273381598009573,0.08458493721052363,6.3558651948433695,-3.5545229483169147,4.2407050300206794,-3.3845932962640224,310.2429879794025,185.48325641149862,-382.4971043486138,-27.701028321092327,-8.895281496479392,-23.906069021788362,184.23825442370745,379.9297046573882,9.202684637581468,8.835574526916005,14.071470542866233,1556.0,37.0,3.9664317111928185,1.8151317512512652,0.5773502691896257,0.11556080379486673,0.949358737117772,0.2498680984428764,0.28867513459481287,0.0375060482753762,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.04221153450751842,0.21119611246951217,0.06956021485548844,18.828062645816686,14.740770458671216,11.464363626468568,9.363710901273075,12.345086811115138,8.046817241286961,7.8814611386639655,4.391709021942432,5.838018453050914,2.6181682596359663,5.005875580779575,1.743415428398679,3.5534940059216655,1.1597067403223682,2.840814023998943,0.7439789693663659,5.254577791670374,2.159381572278042,6.178821128027817,1.9886757377515092,8.73541189462428,2.1302960873089174,78.5908133971523,44.52573983430304,33.921370944359325,32.747485067106815,32.747485067106815,32.747485067106815,130.0,147.0,48.197273999999986,30.902725999999994,0.27906976744186046,76.09,11.041666666666666,5.1944444444444455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,43.0,0.0,0.0,44.0,12.0,2.0,8.0,36.0,14.0,26.0,30.0,0.0,0.0,0.0,16.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,5.0,1.0,1.0,25.0,9.0,0.0,3.0,2.0,0.0,2.0,5.0,1.0,0.0,3.0,1.0,2.0,3.5553480614894135,7.410129666441038,4.204692619390966,4.634728988229636,5.163356381113919,5.746203190540153,6.07073772800249,6.529418838262226,6.700346656811539,7.133058995458674 +6509979,CC[C@@H]1/C=C(\C)C[C@H](C)C[C@H](OC)[C@H]2O[C@@](O)(C(=O)C(=O)N3CCCC[C@H]3C(=O)O[C@H](/C(C)=C/[C@@H]3CC[C@H](Cl)[C@H](OC)C3)[C@H](C)[C@@H](O)CC1=O)[C@H](C)C[C@@H]2OC,0,21.43548387096774,6.048820967741938,2.870967741935484,5.6742333731581045,164.88646196752686,85.0080331854838,1.316080818788161,6.113905645161291,4.156460724048753,7.663257072580644,189.13310544167052,22.141732283464567,6.238188976377953,3.6377952755905514,4.916010498687664,145.7631828926983,82.38386233070868,1.6843433104881893,6.383145669291333,2.681778782281845,7.710101086614171,240.33466294801278,17.91393442622951,6.142799180327869,3.2418032786885247,3.806921675774135,155.68316015792144,65.1998950614754,1.3807284919225864,6.244029918032786,2.5230195473251027,7.704019573770492,191.3785883276431,16.64367816091954,6.141821839080462,2.836206896551724,3.3987867177522353,158.1276637102428,59.618004790229854,1.27347673251002,6.232227586206898,2.860969206754647,7.731539913793108,173.43497042924525,14.66743648960739,6.100004618937645,2.5542725173210163,2.854760071850141,161.44370344110422,51.52939156120091,1.1633200202428289,6.171475057736722,2.881656354840856,7.722995778290996,156.62810688819707,14.420600858369099,6.136772532188842,2.517167381974249,2.6638054363376256,161.4068839366623,50.17931144849786,1.1546855709172685,6.2047562231759645,2.9798323001112696,7.755912862660944,156.07369292908868,13.684824902723735,6.1111264591439705,2.443579766536965,2.5157803718115,162.06799820637653,47.16461886964981,1.1391741722305135,6.17141167315175,2.954425269411219,7.728926400778212,152.16299070512522,13.149305555555555,5.964409722222222,2.404513888888889,2.333526234567901,162.45182504750707,45.64263322743055,1.1321534783990281,6.028930555555554,2.6507273090992234,7.589699722222225,148.30367514336115,12.533546325878595,5.92684984025559,2.3003194888178915,2.0319488817891376,161.8357273592445,42.60071011022362,1.1163847467952719,6.000631789137379,2.586835548718758,7.5650781533546345,144.27163773697526,8.958636836628516,0.1368640218522372,0.017208774229256242,0.6209677419354839,3.664749296643156,1.255467991799216,42.28884260477366,0.2295448621415837,0.13154195499479698,1.6214571525223305,0.09201664535639958,49.7600422135554,0.29726867518251177,-0.00021983846387048996,-0.007075249993112665,0.265748031496063,1.1907526365829317,-0.13576674819550533,1.392628104268755,-0.012642923252189119,0.0012612009615148374,-0.08224609086118125,-0.0025204694610477503,-0.3213326744608198,0.4968761194793676,0.00561793875061837,-0.002597222034835719,-0.010245901639344262,0.3707959436438423,0.007228792784502386,2.3643427346961894,0.006710718077395443,0.005779356480612756,0.045819057349033944,0.0020142947877041027,2.4509443886579922,0.17224933318980468,0.01522865983111461,0.0015630254278237098,-0.03017241379310345,0.2933677469855661,-0.05937773268836032,0.7003233286013779,-0.015997002658468294,0.013691141964787639,0.15474275387292738,0.010209351584646066,-2.155636937310384,-0.02065724935294012,0.002949048996306285,0.0008704892149912396,-0.03521939953810624,-0.006104148229203941,-0.0003312794129312666,-0.0886650062301263,-0.0013891167403675064,0.0021293759297354377,0.030405545740402964,0.0006011311279929222,0.23477555313865872,-0.5419817071809139,-0.008922553625738574,-0.0010865638514069632,-0.016094420600858368,-0.27871608312598034,-0.060840782966260054,-2.5289718830513945,-0.01017237694337307,-0.008828961778681888,-0.051988947347982345,-0.0069132617380968766,-1.9002828418263595,-0.6326358324864261,-0.00962189495378112,-0.0009728662423636206,-0.016536964980544747,-0.2171049241002448,-0.008792540568168954,-2.9577179881676714,-0.0016301793050328781,-0.010039920038100697,-0.07033404213520894,-0.005315178304811729,-1.9972140563072187,0.23191535871198982,0.006661526982888193,0.002025425939131563,-0.019965277777777776,0.02004559195810832,0.05964434410310439,1.0854412590956153,0.008353631703585863,0.005725372514163487,0.05234430000779024,0.00484558795453232,1.1531223935728983,-0.5561582217671289,-0.00896555230673586,-0.001070067764289173,0.009584664536741214,-0.12445025460066812,-0.12314941429300694,-2.6559811614700553,-0.022049482300169617,-0.008141835186490372,-0.10821899331618368,-0.0059290283049721875,-4.053537351222628,,,0.46930272108843535,0.7589285714285714,0.14285714285714285,0.0,0.6160714285714286,-0.4732142857142857,1.952633846302026,0.025556355151694316,0.03169921229455146,0.859005104069803,0.12355507180889866,0.349356672367498,2.811638950371829,0.4729117441763967,1.9919812250156566,1.5561320859184684,0.03977787237443742,0.36451264285323765,0.03155862386951288,0.43584913909718787,6.527807174806467,2658.0,750.0538000000004,356.0,703.604938271605,20445.92128397333,10540.99611499999,163.19402152973197,758.1243000000002,515.4011297820455,950.2438769999999,23452.505074767145,2812.0,792.25,462.0,624.3333333333333,18511.924227372685,10462.750516000002,213.91160043200003,810.6594999999993,340.5859053497943,979.1828379999997,30522.502194397624,4371.0,1498.843,791.0,928.8888888888889,37986.69107853283,15908.774394999997,336.8977520291111,1523.5432999999998,615.616769547325,1879.780776,46696.37555194491,5792.0,2137.3540000000007,987.0,1182.7777777777778,55028.4269711645,20747.065666999988,443.16990291348696,2168.8152000000005,995.6172839506172,2690.5758900000014,60355.369709377344,6351.0,2641.3020000000006,1106.0,1236.111111111111,69905.12358999813,22312.226545999994,503.7175687651449,2672.2487000000006,1247.7572016460906,3344.057172000001,67819.97028258933,6720.0,2859.7360000000003,1173.0,1241.3333333333335,75215.60791448463,23383.559135000003,538.0834760474471,2891.4163999999996,1388.6018518518517,3614.255394,72730.34090495533,7034.0,3141.1190000000006,1256.0,1293.111111111111,83302.95107807753,24242.614099000002,585.535524526484,3172.1056,1518.5745884773667,3972.668170000001,78211.77722243436,7574.0,3435.5,1385.0,1344.111111111111,93572.25122736408,26290.156739,652.1204035578402,3472.6639999999993,1526.8189300411527,4371.667040000001,85422.91688257603,7846.0,3710.2079999999996,1440.0,1272.0,101309.16532688704,26668.044528999988,698.8568514938402,3756.395499999999,1619.3590534979426,4735.738924000001,90314.04522334652,1110.870967741936,16.971138709677412,2.133888004427774,77.0,454.42891278375134,155.6780309831028,5243.816482991934,28.46356290555638,16.311202419354824,201.06068691276897,11.410064024193549,6170.24523448087,37.75312174817899,-0.027919484911552224,-0.8985567491253084,33.75,151.22558484603232,-17.242377020829178,176.86376924213187,-1.605651253028018,0.16017252211238436,-10.445253539370018,-0.3200996215530643,-40.809249656524116,121.2377731529657,1.3707770551508822,-0.6337221764999155,-2.5,90.47421024909751,1.7638254394185822,576.8996272658702,1.6374152108844882,1.4101629812695124,11.179849993164282,0.491487928199801,598.0304308325501,59.94276795005203,5.299573621227884,0.543932848882651,-10.5,102.09197595097702,-20.66345097554939,243.7125183532795,-5.566956925146966,4.7645174037460984,53.850478347778726,3.552854351456831,-750.1616541840135,-8.944588969823073,1.2769382154006215,0.3769218300912067,-15.25,-2.6430961832453064,-0.14344398579923845,-38.39194769764469,-0.6014875485791302,0.9220197775754445,13.165601305594484,0.2602897784209353,101.65781450903923,-252.56347554630585,-4.157909989594176,-0.5063387547556448,-7.5,-129.88169473670683,-28.351804862277184,-1178.5008975019498,-4.74032765561185,-4.11429618886576,-24.226849464159773,-3.2215799699531447,-885.5318042910835,-325.174817898023,-4.945654006243496,-0.500053248574901,-8.5,-111.59193098752583,-4.519365852038843,-1520.2670459181832,-0.8379121627868994,-5.160518899583758,-36.151697657497394,-2.732001648673229,-1026.5680249419104,133.58324661810613,3.837039542143599,1.1666453409397801,-11.5,11.546260967870392,34.35514220338813,625.2141652390744,4.811691861265457,3.2978145681581688,30.150316804487176,2.791058661810616,664.1984986979894,-348.1550468262227,-5.612435744016649,-0.6698624204450223,6.0,-77.90585938001824,-77.09153334742234,-1662.6442070802545,-13.80297591990618,-5.096788826742973,-67.74508981593098,-3.7115717189125896,-2537.514381865365,0.7407506111845874,0.6392018612818798,0.4488653843030206,0.3588664720828879,0.2841981513391686,0.20782246959032896,0.1837464864845874,0.1181103621966949,0.11634310757379893,0.06923275597889136,0.07346542911571292,0.03999773362748069,0.0445965482264498,0.0216314860502508,0.028704959081409662,0.012838890885176077,17.00110582693082,5.727487005253739,3.5593763575275927,2.227056854311975,0.48721499156926057,-0.48739234160755507,4.028915282748493,0.9762417641055617,6.031294699646545,0.7722779477939404,14.543357730735579,10.987840297031369,35.450518778580246,11.738700114490092,2.204956272762478,0.741230627417947,3.505736119487748,2.2769802532705428,7.0116397004700275,1.1463591877859294,3.718570598132486,2.47299975126201,22.455828009368407,14.700227582218439,0.20230750532893957,0.44655582030283975,0.740207046501207,0.8484173077668345,0.8793019107343277,0.9001792698934381,1.698808556921526,1435.8203020879118,0.0,2.0,7.0,0.0,4.0,20.0,2.0,5.0,0.0,5.5268597214695445,3.803618874933424,1.7318265365726964,0.9683725809243198,0.7504729840803375,0.6031773187054164,502.08643155478484,5404.333801363936,83.93848624742387,43.58333710777367,85.02629723217996,,19.0,1695.0,77.76223202261254,29.3912035259687,54.907332569332354,44.09803426762532,18.414747775921285,19.119504813405545,20.95727194065878,32.923251812739636,6.923737199690624,35.28525465923276,26.280952380952378,42.5,8.0,0.0,34.5,0.0,0.030697278911564676,-26.5,0.11914006940888716,0.00804411482334877,-0.11109595458553839,0.01965458597232006,0.17456103997654226,0.0,0.557411674347157,0.8699829931972795,0.43827160493826983,0.5493675595238082,0.8503284072249594,109.34749539291346,1.4311558884948816,1.7751558884948815,48.10428582790897,6.919084021298325,19.56397365257989,157.45178122082243,26.483057673878214,0.5394389600234577,0.2745062511324516,0.0190251857220511,0.3766986772966118,0.813953488372093,0.2594119474571688,-1.3435619837619686,-0.048347540104669746,-0.010835177288402973,-0.03838748525034196,0.7405880525428316,3.8356982505177295,0.032095171231405956,0.03093305040740104,0.0430977331518846,-5.668157900976013,0.8439430305117248,0.7533964275655597,1.4315406614134587,1.0439717762552407,0.5679137041145703,1.5081088620267766,0.8547311113877808,1.3567931255831462,0.7400166527882663,0.6932430910068228,0.7701269638745956,1.2285862827447815,0.8991781499787919,0.9179781567788308,1.2717739571634006,1.463194592292953,0.9689947994069597,1.186085549923131,0.9024995554638092,1.0981559594756216,0.9048655710562304,0.6487685700044648,0.9326396247518126,1.0406337056284154,0.9968335481183525,0.932498311420376,1.1084327465484742,1.3151030004478281,1.0045389413194667,1.1723592128568627,1.0000706865024855,1.1591927212689501,0.9294657696329717,0.8305480582903956,0.944790841534409,1.0985780705133454,1.003419639478215,1.128472850978701,1.2335759637073658,1.2192645691490958,1.1521913067680114,1.0401839374863528,1.0020183999544336,1.024973544676065,1.1107607349393438,1.129055141911714,1.1555582915321267,1.0005531836627333,1.0426107461769145,1.273864202207814,1.3689653199161544,1.179198483919514,1.2721339775650802,1.0930601878811246,1.040610659522076,1.0523888919851963,1.2416396869713724,1.3403553770236103,1.291989151645722,1.036213160500202,0.984344360179966,1.2639127971216066,1.2541820423690673,1.1685279700843902,1.1972085686159952,1.0509243067041614,0.9840953339280119,0.9888137140323019,1.2283417446160514,1.4006507167166065,1.2384164601758672,1.0272248235203885,0.8474417505154335,0.9505313553278529,0.9777640186143697,1.113467261904762,1.0107781303522454,0.9920515932113412,0.8509929722637951,0.9476311544566928,0.9357934033660128,0.9570285573140425,0.9155920391250136,0.975125338011104,0.9863450468100238,1.028592845280383,1.1062160681614586,0.9837039956848265,1.010173998631402,1.1330435563508416,0.9895245652647154,1.1030399050587991,1.0174584962498083,1.1882019859999382,1.012195070056093,1.0910094973897477,14.5,1.0036730945821855,8.88888888888889,6.125,4.911111111111111,3.3819444444444438,2.6285714285714286,1.7951388888888888,1.562106324011086,1.3550000000000002,13863.229588078146,16390.521345152712,5292.083525561032,4615.267635741402,20.36995435495818,0.48519833056743134,10.486486508197693,0.9424956432294262,0.0,0.813953488372093,1.4273365889173306,3.150577435453451,5.2223697738141786,5.985823729462555,6.2037233263065374,6.351018991681459,0.24576271186440674,0.006969952045709622,0.10457516339869284,0.05889423076923077,0.04384920634920635,0.028660546139359692,0.021545667447306793,0.013497284878863825,0.011924475755809814,0.009890510948905112,0.5455697495974916,48.664176960643495,22.197923875432526,12.103375362205341,338.52967110318826,0.0,4.929733119610103,441.3466690752328,,394.18821049782014,390.7999282275557,399.325108740513,394.2309289705527,518.3415484785994,393.9117633888299,395.55230855135835,464.23531403165737,0.033182355820819895,-0.0016062545941243395,-0.4111420080742413,0.42795786890275084,0.32492062626866175,-0.10814035011831523,0.03293133645874602,-0.055078223638876045,0.009587822847582911,-0.050723567214366196,-0.027391451310634595,-0.006457644731926772,0.05546336217669042,0.041047593623134045,-0.15092429014614195,-0.016499893549073878,0.10117907491884497,0.0057578471388528,0.05590937441331858,0.029234886874776832,0.04393546135787136,0.028257951360452574,0.021890547953604702,0.04925527149151649,0.019227181136034173,0.11126853956955877,0.09082723772193177,-0.04858934169278997,0.0800512458667461,-0.04729529790979846,0.01656047518600861,-0.06969009242559876,0.1040819407414857,0.0954343774253981,0.11095113873259697,-0.04332064124984112,-0.0023058473883526957,0.02154729165777529,0.050584033667624095,-0.05671695510032693,-0.00166563869315569,-0.00026386926237482875,-0.0020966524683302063,-0.006051613298626987,0.016187808139385362,0.01875198841554601,0.006532852025463615,0.004718154219626089,-0.06049823394614606,-0.06519283523153842,-0.06314010730408218,-0.025918287720862826,-0.07605324691139971,-0.048460640465288876,-0.059802343296241414,-0.044315419863759475,-0.06711897948476675,-0.03206310278819801,-0.07513055612188836,-0.038188931465751315,-0.07061742138042863,-0.07030258809849406,-0.056533151600633644,-0.026630956592046083,-0.05924141231137119,-0.007003396841339085,-0.06994085924294834,-0.007101789557926941,-0.07632485041367841,-0.04337705873127616,-0.057763226253521184,-0.0401369043807432,0.025887349039953784,0.048672594102781755,0.11769728117463374,-0.0321518759018759,0.005469839908686174,0.04750765809459455,0.025667320083455965,0.03639215282646286,0.0435250678339846,0.03228225915582395,0.05265990664802385,0.02317366188364627,-0.06208067498541809,-0.0655070060444034,-0.06218152147466584,0.015435044189037798,-0.03395873619913436,-0.09809044523430745,-0.06280571890539852,-0.09605739851658913,-0.06189534880192723,-0.06674181500746952,-0.06443430188101108,-0.08146169438172988,13.529544440389321,44.90231111796552,29.910600118091573,14.57693117835266,33.6173116519973,41.57850509288042,43.4579743070388,44.27700441667612,44.66726876995469,111.55094860087677,87.14339681143423,2.2275608529684954,20.412707999781308,1.7672829366927214,24.407551789442522,27592.849576714012,23291.89810344038,6944.3466840571255,267.0,85.0,113.0,140.0,171.0,184.0,206.0,216.0,242.0,809.4480896760019,59.0,5.666426688112432,6.529418838262226,7.423568444259167,8.305236829492593,9.202005735186125,10.091335477455614,10.990179070308544,11.884495917930655,12.785409824969241,0.5887096774193549,0.9725806451612905,1.1360117489564396,0.5441671747135018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.62417386517288,0.959171410499684,1.0020352183821628,0.5736593139990679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,2.0,0.0,6.0,0.0,9.0,1.0,0.0,0.0,2.0,12.0,0.0,5.0,0.0,13.0,1.0,1.0,0.0,0.0,38.797279289532135,24.033018551009505,0.0,5.7871111525705965,11.690424675716445,14.383611552215466,4.794537184071822,0.0,11.600939890232516,45.42009354249953,95.46460725103343,52.04868879115536,29.79295341919893,270.68513507805955,-1401.9487561204223,-50.44856473345433,-11.306038355809859,-40.05567874629779,772.7715666328444,4002.3850452435136,33.48992151396954,32.27729875196381,44.97061848588218,0.42105263157894735,0.8528900270509828,0.08803013832074909,0.0,0.06351858862197624,0.0,0.1471099729490174,11.0,0.1016949152542373,0.2052482451186261,0.4530469510542446,0.7509666884171765,0.8607498929131543,0.8920834341476065,0.9132642663819394,5.7194000000000065,,3.5399159663865545,3.445132669151729,2.2613865427144004,3.5456063158456748,-12.18947377178405,3.200152417768,3.083489968182275,-4.6249752571441025,211.7035999999992,53.075518294968944,0.0,4.899909730850478,29.589530230806965,166.00129922674395,27.874149029745176,23.2982492738063,0.0,0.0,4.77912349311153,0.0,6.129050210060545,0.0,7.669028288589683,0.0,9.296426320889312,0.0,10.972482203898611,73.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.60000000000002,0.0,56.5075842196388,0.0,0.0,0.0,4.0168871770278,0.0,-1.3027836641428079,140.8654568705985,0.0,0.0,0.0,120.25992663672437,42.86246350528753,29.589530230806965,112.17146105032987,23.2982492738063,0.0,0.0,0.0,67.47672966447423,77.39755928143711,70.31396216106413,883.6600968710366,,788.7367455077199,782.0500222149657,799.2736020901881,788.8213903022352,1041.8899671818965,788.2334626600708,791.494561719974,930.4571065450743,70.31396216106413,883.6600968710366,,785.5103144798175,778.955271388686,797.2545069627647,785.5893395729838,1051.9325913895577,785.3392333673225,788.6897427725495,934.2127644375787,5.0323753576706185,612.3338198049975,,545.4584739480752,539.7917585899113,550.9698091450676,545.5324372950076,716.2622516017609,544.4831466386258,547.0501669726159,645.5904071366974,1.2556064671618594,15.779644586982796,,14.084584741209284,13.965178968124388,14.272742894467644,14.086096255397056,18.60517798539101,14.075597547501264,14.133831459285249,16.615305474019184,2.516268413652591,441.3466690752328,,394.18821049782014,390.7999282275557,399.325108740513,394.2309289705527,518.3415484785994,393.9117633888299,395.55230855135835,464.23531403165737,118.93725490196081,0.0,15.947857424596283,6.524877681285556,0.0,0.0,23.68364542210309,124.2523670793882,5.488711536288226,0.0,29.88985628297504,0.0,-7.269057635831675,1.1983703388762912,-2.4915043383721587,0.0,0.0,71.13375493588441,889.9538145487419,176.989737025749,390.6716019962279,647.5738519529582,742.2421424533568,769.2616924620106,787.5263549685009,1739.0,197.87807682597662,153.50288716216195,94.84611051654967,158.12999999999997,158.12999999999997,0.7272727272727273,7.820439515262181,6.882643049361842,4.846086798564227,7.403887660418297,,7.405209797756613,7.401345582828597,7.401534916933286,7.405285010693006,7.400719803718376,7.402543681836501,7.403135012823382,7.407298696989912,0.08653726426007548,0.13221227965032673,,0.1322358892456538,0.1321668854076535,0.13217026637380866,0.13223723233380366,0.13215571078068528,0.13218828003279465,0.13219883951470326,0.132273191017677,3.3009381313584867,3.724771819514218,,3.7249503769645367,3.7244284169385318,3.7244539976496243,3.7249605336726503,3.7243438639934863,3.724590279674614,3.7246701586182804,3.725232422270757,634.2800000000028,3376.555986040435,467.1081885211791,,465.6689524469488,466.4136392227175,466.59571755584045,465.6540238718493,467.19429927220017,466.20177187941647,466.0792917837622,465.45063939974415,60.29564260786491,8.341217652163913,,8.31551700798123,8.328814986119955,8.332066384925723,8.315250426283024,8.34275534414643,8.325031640703866,8.322844496138611,8.311618560709716,9.84737812770559,7.8693274956482355,,7.866241576936982,7.867839475966261,7.86822977930912,7.866209518079893,7.86951182728042,7.867385125020687,7.867122371434601,7.865772651026462,29.88985628297504,57.705954558515096,23.57477935913751,1.7067905127710086,-7.310005576813509,-1.1154473842388717,5.164488763653771,11.341069009292887,4.712081237865961,809.9395591902099,282.44821825072245,-1462.87282502912,-52.64089296281927,-11.797361492170323,-41.796366429403434,806.3536700946756,4176.315498286843,34.94528304352369,33.67996369586162,46.92489323917801,12071.0,104.0,4.619440515704256,2.7810304980731515,0.11785113019775792,0.026352313834736494,1.6368729054206406,0.5304982456981018,0.15137471507731048,0.024013043348897437,0.0,0.0,0.0,0.0,0.0,0.0,0.1994872375097793,0.16036888195854523,0.4462927627663343,0.2902298895713513,41.48203422633689,35.79530423178527,26.483057673878214,21.173121852890386,24.156842863829333,17.66490991517796,20.763352972758376,13.346470928226525,16.28803506033185,9.69258583704479,12.562588378786911,6.839612450299199,8.205764873666764,3.980193433246147,5.91322157077039,2.644811522346272,11.66593091798644,5.703153207472439,17.89020221953379,7.813501115849887,27.819940678183944,10.370685562314582,197.6490417186866,82.7211327834454,44.84495660191897,33.95261426433362,30.506549150405952,28.484515305643868,288.0,342.0,129.25392399999998,82.59007600000015,0.2903225806451613,401.13,23.03472222222222,12.597222222222218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,124.0,0.0,0.0,127.0,0.0,6.0,6.0,121.0,6.0,59.0,121.0,0.0,0.0,2.0,43.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,68.0,11.0,2.0,3.0,56.0,13.0,0.0,1.0,11.0,0.0,4.0,6.0,0.0,0.0,1.0,0.0,0.0,4.189654742026425,6.100318952020064,4.605170185988092,4.948759890378168,5.209486152841421,5.442417710521793,5.545177444479562,5.723585101952381,5.799092654460526,5.953243334287785 +4754,CCOc1ccc(NC(C)=O)cc1,0,21.153846153846153,6.1286499999999995,2.730769230769231,6.846153846153846,163.61598737039373,83.23008049999999,1.3909759908860386,6.186684615384616,4.42628205128205,7.678856153846154,204.43667008637644,22.884615384615383,6.321307692307692,3.1538461538461537,6.3076923076923075,147.56973805331157,85.63404619230762,1.6961240007692298,6.455692307692309,3.2403846153846154,7.756063846153847,246.2365405320408,18.441860465116278,6.21046511627907,2.883720930232558,4.4186046511627906,156.68900506905214,67.64825962790698,1.3555205554870466,6.298083720930235,3.2467700258397945,7.733294697674423,191.59104338540868,15.204081632653061,6.349795918367345,2.5510204081632653,3.306122448979592,164.35294533211308,52.9102872244898,1.2103137274039182,6.398867346938775,3.1791383219954654,7.9269270204081606,168.87879393126627,14.674418604651162,5.97006976744186,2.488372093023256,2.883720930232558,157.22252308901494,51.36254223255816,1.304322723394023,6.062325581395349,2.837209302325581,7.536707534883722,173.66540118216795,12.318181818181818,5.849204545454546,2.0454545454545454,2.1818181818181817,157.798917188268,41.29705438636363,1.1990756127452729,5.934604545454547,2.909722222222222,7.445740636363638,151.2984312170606,8.523809523809524,5.647976190476191,1.7380952380952381,1.5238095238095237,166.53273372734844,26.753806690476175,0.9251282860853332,5.700595238095237,2.3035714285714284,7.3320435238095225,109.0986449100709,10.32,5.800519999999999,1.92,2.16,172.61596862525556,35.43258735999999,0.8482221451275198,5.823443999999999,2.7,7.467981119999999,104.54964637950415,13.214285714285714,6.485142857142856,2.0,1.2857142857142858,170.32937207782487,43.55598335714285,1.0679799712641427,6.503928571428572,3.0119047619047623,8.082484857142857,147.3628614375835,7.520710059171598,0.13180251479289937,0.021663618295858503,0.4807692307692308,3.9822485207100584,1.3936763430924264,35.71610126775148,0.22521484799923222,0.12372544378698219,1.4969181459566072,0.08289614792899408,49.82381609443059,0.16272189349112376,-0.0023665680473373045,-0.011663070802644997,0.15384615384615385,1.4911242603550297,-0.21126235105362295,0.7261286568047317,-0.023595615071005886,-0.00028905325443783717,-0.11686390532544369,-0.0033527218934911248,-2.08510371749057,0.8191826063024628,0.01547574996559788,0.003974339125244658,0.005813953488372093,0.08036328608779417,-0.24019522598052986,3.792538559618824,-0.01865868637324744,0.01571927893215908,0.19901705579254772,0.006236149029861011,-0.4209603237157364,-1.6054824296582542,-0.052014602704987326,-0.003928216406747896,-0.03571428571428571,-1.18633015336312,0.2936382250565626,-7.300841991456348,0.03783003433892629,-0.0487066054824296,-0.4116442928256113,-0.030273761743750748,2.1495802386303082,-0.8015687353791112,-0.010218436080913712,-0.0018176429400067326,-0.14534883720930233,-0.6280445851107749,-0.11048002956143149,-3.8393698053185643,-0.026999091788406652,-0.009883762212742526,0.03490952249896791,-0.005757954726847389,-5.826263670595517,-1.2374932759548145,0.009776768423883817,0.005800902254557292,-0.03409090909090909,-0.26196880043033893,-0.27926330040442066,-6.089656700443785,-0.06234069801004605,0.005565640129101672,-0.05405198434044585,0.007676855567509413,-13.845787161463768,0.17892364046210216,0.0028924485770639836,-0.006022953301937964,-0.011904761904761904,0.27782473936320085,-0.2294473401437767,0.7911142020287443,-0.022246664340095795,0.0036901239785854753,-0.10543462947309103,-9.026148210763742e-05,-2.480416618215899,2.685443786982248,0.06151717751479293,0.006570606264551377,-0.09,0.6915976331360945,0.08422633001240533,12.526458504556217,0.023865221952447734,0.0584619408284023,0.6202613412228797,0.03935314437869822,9.836393883214505,-3.218512256973795,-0.07884125105663567,-0.0038728242546680093,-0.25,-2.4987320371935757,0.546588392422915,-14.890317001267965,0.03297165270182542,-0.07530346576500413,-0.4158741899126514,-0.04339908199492813,-2.4448123923245846,,,0.46666666666666656,1.25,0.6538461538461539,0.07692307692307693,0.5961538461538461,0.057692307692307696,0.5739913006015319,0.014974477658481119,0.02158986227386573,0.7221464363994892,0.26110987473596947,0.21731669086501823,1.296137737001021,0.47842656560098773,1.9556480696811478,1.5221374824820262,0.1518883363197134,0.2816222508794088,0.0,0.4335105871991222,6.888254948307692,550.0,159.3449,71.0,178.0,4254.015671630237,2163.9820929999996,36.165375763037005,160.8538,115.08333333333331,199.65026,5315.353422245787,595.0,164.35399999999998,82.0,164.0,3836.813189386101,2226.485200999998,44.09922401999997,167.84800000000004,84.25,201.65766000000002,6402.150053833061,793.0,267.05,124.0,190.0,6737.627217969242,2908.875164,58.287383885943,270.8176000000001,139.61111111111117,332.5316720000002,8238.414865572573,745.0,311.13999999999993,125.0,162.0,8053.294321273541,2592.6040740000003,59.305372642791994,313.54449999999997,155.7777777777778,388.4194239999999,8275.060902632047,631.0,256.71299999999997,107.0,124.0,6760.568492827642,2208.589316000001,56.085877105943,260.68,121.99999999999999,324.07842400000004,7467.612250833222,542.0,257.365,90.0,96.0,6943.152356283792,1817.0703929999995,52.759326960792,261.12260000000003,128.02777777777777,327.6125880000001,6657.130973550667,358.0,237.21500000000003,73.0,64.0,6994.374816548635,1123.6598809999994,38.85538801558399,239.42499999999995,96.75,307.94582799999995,4582.143086222978,258.0,145.01299999999998,48.0,54.0,4315.399215631389,885.8146839999998,21.205553628187996,145.5861,67.5,186.699528,2613.741159487604,185.0,90.79199999999999,28.0,18.0,2384.611209089548,609.7837669999999,14.951719597697998,91.055,42.16666666666667,113.15478800000001,2063.080060126169,195.53846153846155,3.4268653846153834,0.5632540756923211,12.5,103.53846153846152,36.235584920403085,928.6186329615385,5.8555860479800375,3.216861538461537,38.91987179487179,2.155299846153846,1295.4192184551953,4.2307692307692175,-0.061530769230769916,-0.3032398408687699,4.0,38.769230769230774,-5.492821127394197,18.879345076923023,-0.613485991846153,-0.0075153846153837665,-3.038461538461536,-0.08717076923076925,-54.21269665475482,35.2248520710059,0.6654572485207089,0.17089658238552027,0.25,3.455621301775149,-10.328394717162784,163.07915806360944,-0.80232351404964,0.6759289940828404,8.557733399079552,0.2681544082840235,-18.101293919776666,-78.66863905325445,-2.548715532544379,-0.1924826039306469,-1.75,-58.130177514792884,14.388273027771568,-357.7412575813611,1.853671682607388,-2.3866236686390505,-20.170570348454955,-1.4834143254437866,105.3294316928851,-34.46745562130178,-0.43939275147928963,-0.0781586464202895,-6.25,-27.005917159763317,-4.750641271141554,-165.09290162869826,-1.160960946901486,-0.4250017751479286,1.50110946745562,-0.24759205325443773,-250.52933783560724,-54.44970414201184,0.43017781065088795,0.25523969920052086,-1.5,-11.526627218934912,-12.28758521779451,-267.94489481952655,-2.742990712442026,0.24488816568047359,-2.3782873109796174,0.3377816449704142,-609.2146351044058,7.514792899408291,0.12148284023668732,-0.2529640386813945,-0.5,11.668639053254434,-9.636788286038621,33.22679648520726,-0.9343599022840234,0.15498520710058997,-4.428254437869823,-0.0037909822485207717,-104.17749796506774,67.1360946745562,1.5379294378698232,0.16426515661378444,-2.25,17.28994082840236,2.105658250310133,313.1614626139054,0.5966305488111934,1.4615485207100576,15.506533530571991,0.9838286094674554,245.90984708036262,-45.05917159763313,-1.1037775147928994,-0.05421953956535213,-3.5,-34.98224852071006,7.6522374939208095,-208.46443801775152,0.4616031378255559,-1.0542485207100578,-5.8222386587771195,-0.6075871479289938,-34.22737349254418,0.744753713528824,0.6025388029902137,0.47842656560098773,0.32503057009931857,0.3315609744409881,0.16491101967065283,0.2039992808454015,0.08739347728532357,0.1415388264148867,0.05022120465897598,0.09376495843365751,0.026883720373019927,0.06126037800908232,0.013897134363359674,0.046667696482030764,0.008423363587870047,8.022149942589907,5.698957577529553,3.5439093690925128,2.197680414143015,0.37463474153731047,-0.5252568847970612,3.064037125597219,0.9728901424416476,6.022009854073417,0.987930148020209,14.540289315570758,10.960208200702704,16.0102599602021,11.71088418644527,1.9773247516520003,0.7517875599521007,3.4891340668202018,2.2473339957814273,7.008269174407245,1.4719367845584075,3.70206008265558,2.4432192558226675,20.88334944481331,14.70251025797542,0.30480242041798294,0.6443954920269476,0.8050034292534192,0.8677095975889595,0.8677095975889595,0.8677095975889595,2.1471259748697293,279.48114931490306,0.0,1.0,3.0,0.0,6.0,0.0,0.0,0.0,0.0,3.2048075878733773,1.5384615384615383,0.750375961704882,0.4426836540125745,0.4426836540125745,0.4426836540125745,148.82556405883912,492.983488420184,34.5662423819071,18.96090340077631,38.14175856722163,,9.0,171.0,0.0,4.794537184071822,5.907179729351506,6.606881964512918,11.436898107967467,6.923737199690624,0.0,31.18920547353706,5.316788604006331,4.736862953800049,6.0666666666666655,16.25,8.5,1.0,7.75,0.0,0.03333333333333342,0.75,0.14102564102564102,0.05144230769230773,-0.08958333333333329,0.039194139194139166,0.1641510574018128,0.0,0.5743589743589748,0.8487179487179487,0.43333333333333374,0.522916666666667,0.8095238095238095,7.461886907819915,0.19466820956025455,0.2806682095602545,9.387903673193359,3.3944283715676034,2.825116981245237,16.849790581013274,6.21954535281284,0.5498489425981872,0.2197802197802198,0.0,0.2472527472527473,0.3,0.3141170774868981,-0.38682619175059835,-0.04719676902400663,-0.01487793045194609,-0.04835327396882479,0.685882922513102,0.8446451909752674,0.03914960829198818,0.03248635349904875,0.046924732831959304,-2.7102860338405517,0.8605428796223445,0.7697520160272058,1.5255249390232912,0.8846153846153846,0.48291233283803875,1.3876989686472585,0.8684562961931162,1.245920069273635,0.7520618519722998,0.6269043893601252,0.7855849648333777,1.096675417785502,0.8444184216785904,0.8618290366123409,1.0124436084172652,1.2325581395348837,1.0023238536231387,1.2325156556879482,0.8477786864700224,1.1035675230512105,0.843023394839891,0.5711811507187924,0.9163652398479948,0.9946054482637557,1.2524285874853482,1.7727794496643419,1.6636772145340355,1.1020408163265305,1.480766898141129,0.7994951456536084,1.2353710770445205,0.7448172043927187,1.7299945909036605,1.5111867031256214,1.7926531702471165,0.8532767283323569,1.015383419025488,0.8498766259604766,1.0158753504775535,1.3488372093023255,1.0444383012543628,1.1109843116161102,1.0206535503476364,1.1480568031726806,0.8632565346639486,0.641100528776269,0.8266415776420478,1.1216918058121932,1.0634968886345755,0.6478638044615586,0.2953378254312396,0.8409090909090909,0.8725347831960019,1.1652808104597174,1.074386255986467,1.2998864347507393,0.6960747640492227,1.0573962053209356,0.6207104073439679,1.2861680320231244,0.9223614701584804,0.7829329872209383,0.847110933740812,0.8095238095238095,0.8106028444067079,0.9875956660762402,0.9259691807810654,1.0166435907124831,0.799553708071207,0.9800865087861713,0.7815800148273394,1.010047838995161,0.6443745082612116,0.5061039186967232,0.6857605059655889,1.24,0.8209509658246659,0.7768061215046439,0.6489737456355353,0.7256857412737291,0.513062181964265,0.28512997886299374,0.44448293433953034,0.7086825603976258,1.5250927278858042,2.2434861417420047,2.3927888249389677,1.4285714285714286,1.8540384207174703,0.6058379232082061,1.5001299103426884,0.6694682728816177,2.189689698238403,1.3305725814990415,2.223073181332317,0.8695264304720801,3.0,0.0,0.8888888888888893,0.5,0.5422222222222224,0.2638888888888889,0.2016326530612245,0.0625,0.0493827160493827,0.0,1954.1457444557345,2243.776767534219,1210.8999223838402,1078.8145779766658,11.865005934278223,0.4680134370821077,6.312023725977068,0.8797467261486859,1.0,0.3,1.4956321302677145,3.1619781796795534,3.9500637564362098,4.257756064128517,4.257756064128517,4.257756064128517,0.23076923076923078,0.0,0.05555555555555558,0.03571428571428571,0.04518518518518519,0.02932098765432099,0.0403265306122449,0.015625,0.016460905349794233,0.0,0.46895768084061745,11.076923076923077,5.671875,4.1522491349480966,77.71610109024209,1.0,3.4437396544928847,45.024988693517585,,33.78130628800578,32.981033453999856,33.67361117145765,33.79226061888667,53.99814514921535,33.5030037873206,33.82336083133713,45.05969187674858,0.021636506687647453,-0.01795540890138463,-0.53837132114143,0.32,0.37444279346211007,-0.15158637950677503,0.020330568875958542,-0.10476935815122779,-0.0023362474652788433,-0.07806966976859091,-0.04044484547536453,-0.04184953865313515,0.1089235723565037,0.11741619642018856,0.18345684783434554,0.012093023255813953,0.02018037941877744,-0.1723464900376805,0.10618568166742082,-0.08284838472688555,0.12704968720276263,0.13295119464622807,0.07522845374193596,-0.008448977952991285,-0.21347484705920136,-0.3946404420789513,-0.18132780743735982,-0.07428571428571427,-0.29790460017588016,0.2106932692887713,-0.20441318431495129,0.1679730918054535,-0.3936668480760324,-0.27499452387394874,-0.3652010678431305,0.0431436290338787,-0.1065815234296379,-0.07752838477300597,-0.0839030172699367,-0.3023255813953488,-0.15771104737551409,-0.07927237203172116,-0.10749688989109177,-0.1198814910662493,-0.07988463738921298,0.023320929466493265,-0.06945985875941366,-0.11693732289700685,-0.16454473928903515,0.07417740427218711,0.26777162408120286,-0.0709090909090909,-0.06578414156423075,-0.20037887690965875,-0.17050172007273964,-0.2768054529435758,0.044983796046705014,-0.03610884435227677,0.09260810977712906,-0.2778949556015939,0.023790790903300756,0.021945321617033435,-0.2780215760674379,-0.024761904761904763,0.06976579636312177,-0.1646345948835268,0.022150071646903163,-0.09877974093507208,0.029825101980953516,-0.07043446547687676,-0.0010888501379455197,-0.049783754289611015,0.35707317073170725,0.4667375096101509,0.3033014233733752,-0.18719999999999998,0.17367013372956908,0.0604346413927897,0.35072300894909025,0.10596646786151992,0.47251348662815135,0.41435888989541303,0.4747282637596953,0.1974235346520163,-0.42795324266606716,-0.5981771378225866,-0.17877088682865078,-0.52,-0.6274676289535132,0.3921917704436963,-0.4169076823262515,0.1464008833997385,-0.608633628299236,-0.27782026093810663,-0.5235355692534984,-0.049069151742430886,4.251415002085969,6.7440258260511925,0.9654893846056297,13.958567703926402,27.464004070981858,31.643932793891032,31.95408664004487,31.95408664004487,31.95408664004487,25.423424905854922,19.78778727226634,1.9745483721562742,3.6610892614323145,0.0,5.635637633588589,1859.9365736669604,1726.6031371331312,143.29628156323565,0.0,16.0,17.0,20.0,22.0,18.0,18.0,12.0,4.0,179.094628656,13.0,4.07753744390572,4.8283137373023015,5.638354669333745,6.415096959171596,7.2305631534092925,8.019283792916793,8.834773814213882,9.62990560446313,10.444153492313001,0.6153846153846153,0.9795384615384616,1.1311112731659696,0.5738938024759356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6465294564716721,0.9656108597285068,1.0036696733710573,0.6042093269035057,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10.05365155780638,5.749511833283905,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,0.0,31.18920547353706,12.611123474374185,6.606881964512918,125.747568968329,-154.85453263184428,-18.893843707609665,-5.955943562763242,-19.356816578980535,274.5731330271681,338.12895578833974,15.67239867429744,13.004959838013068,18.784941988241098,0.4444444444444444,0.8509962261983057,0.40105473884167636,27.90758951841165,0.1792550272911816,47.44315506869748,0.1490037738016944,5.0,0.23076923076923078,0.31818983328206585,0.672698379148672,0.8403604754659768,0.9058207996362423,0.9058207996362423,0.9058207996362423,2.0437,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,51.914700000000025,9.53140013787187,0.0,0.0,0.0,13.847474399381248,11.923670568519249,24.26546827384644,0.0,5.749511833283905,3.295836866004329,0.0,4.51085950651685,0.0,5.910796644040527,0.0,7.399398083331354,0.0,8.934191535338075,15.999999999999998,7.2800925925925934,0.0,0.0,0.0,0.0,0.0,1.6042176870748306,0.0,25.468,0.0,10.681432271982867,0.0,0.0,0.0,0.0,0.0,-0.06559269232384302,29.40889310231521,10.05365155780638,5.687386274683562,5.749511833283905,12.514061693864424,4.794537184071822,0.0,13.847474399381248,24.26546827384644,0.0,0.0,0.0,14.921238864374326,16.809765868263476,15.809801647036137,90.04997738703518,,67.46371147711042,65.84559055048095,67.25929650334385,67.48590103213031,109.23449199698156,66.9016035637194,67.5486828021281,90.63506694627844,15.809801647036137,90.0499773870352,,66.91975543315439,65.20497058412809,66.77570438570103,66.94348990109376,110.67906064529086,66.32738150364975,67.0094690691243,91.23669733785664,4.483589946271667,69.0629978377426,,51.40936369275881,50.18074815484472,51.11465624643287,51.42568241082707,82.16511646666561,50.974306135103035,51.47476959798756,68.54741779690748,1.216138588233549,6.926921337464245,,5.189516267470032,5.065045426960073,5.173792038718758,5.191223156317717,8.402653230537043,5.146277197209185,5.196052523240623,6.971928226636804,2.2417949731358333,45.024988693517585,,33.781306288005766,32.98103345399983,33.67361117145764,33.79226061888666,53.99814514921535,33.50300378732058,33.82336083133712,45.05969187674858,25.105882352941176,0.0,3.414865730242714,0.0,0.0,0.0,0.0,26.09541150764749,0.652265447845805,2.679609552154195,5.253109410430839,0.0,0.0,0.0,0.0,0.0,0.0,15.709442499491148,340.6714066672246,38.88643538696058,82.21143267166839,102.70165766734145,110.70165766734145,110.70165766734145,110.70165766734145,153.0,91.11798266702947,59.649295328272565,43.05108263523113,38.33,38.33,0.8,6.346403610277096,4.700439718141093,3.2605643912799307,3.538321076497733,,3.5274560530417305,3.527965857966632,3.525321620870835,3.5274428196593637,3.509247615032349,3.527536772041341,3.527438981674915,3.5181133129635533,0.2508126454830716,0.27217854434597943,,0.27134277331090234,0.2713819890743563,0.27117858622083346,0.2713417553584126,0.2699421242332576,0.27134898246471856,0.27134146012883964,0.2706241009971964,1.4442645710209912,1.5260166069347716,,1.5229412107482476,1.5230857251181094,1.5223359365329683,1.522937459204078,1.5177659242763766,1.5229640935495816,1.522936371167579,1.5202891197478139,145.4199999999999,58.369264962618594,51.33261535853129,,51.783425988969725,51.74863736120959,51.88244743943595,51.784203991867535,52.72222903393488,51.77617896732467,51.78475024670537,52.30865730907141,4.489943458662969,3.9486627198870226,,3.9833404606899787,3.9806644124007375,3.990957495341227,3.9834003070667334,4.055556079533452,3.9827829974865128,3.983442326669644,4.0237428699285696,4.329153730878505,4.20069059159308,,4.209434400931393,4.208762365081942,4.211344797811432,4.20944942498665,4.227401434381275,4.2092944424667005,4.209459973607939,4.219526153561711,5.253109410430839,10.681432271982867,2.679609552154195,0.7879195011337872,0.7507054936172004,7.2800925925925934,0.0,4.06713117808852,0.0,176.29123094830678,50.339355083628654,-61.991475210364506,-7.563596776423506,-2.384287508090943,-7.748934401295563,109.91730936253894,135.36002094619255,6.273985639248049,5.206154651776638,7.520001163677366,280.0,14.0,0.816496580927726,0.25343678769327627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.11785113019775792,0.02522911917955175,9.681798275874712,7.833004438872777,6.21954535281284,4.225397411291142,5.304975591055809,2.6385763147304453,3.4679877743718257,1.4856891138505006,2.8307765282977337,1.0044240931795196,2.062829085540465,0.5914418482064384,1.1026868041634819,0.25014841854047415,0.8400185366765538,0.15162054458166085,1.075241227080306,0.31560269040389466,1.6216214514901188,0.4072376484795247,1.943288174155363,0.39630159147348387,44.131697036913096,26.665529749280687,19.574012330778167,18.63534784548228,18.63534784548228,18.63534784548228,58.0,62.0,28.072308999999983,16.215690999999996,0.23076923076923078,13.03,5.083333333333334,3.0833333333333335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,26.0,0.0,0.0,26.0,6.0,1.0,4.0,22.0,7.0,13.0,19.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,2.0,1.0,0.0,13.0,3.0,0.0,1.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,1.0,2.8903717578961645,0.0,3.349904087274605,3.6951100038645723,4.187759006861526,4.654555411168834,4.523146350509501,4.659895085677338,4.485823428355525,3.056356895370426 +5719,CCN(C(C)=O)c1cccc(-c2ccnc3c(C#N)cnn23)c1,0,24.63157894736842,6.269065789473685,3.5526315789473686,9.0,162.392642993322,97.49155955263156,1.5993078308614477,6.3469500000000005,4.925438596491229,7.719095473684209,239.44750366514046,26.725,6.4312475,4.2,9.05,147.73668820621245,102.59516862499997,1.8707526162500006,6.574165000000001,3.5763888888888893,7.787593499999997,277.1355743883599,23.393939393939394,6.360089393939393,3.9696969696969697,7.590909090909091,155.8100531609537,88.94357149999998,1.6313152383930751,6.467821212121213,3.247474747474748,7.771562121212121,238.68385475159536,21.4125,6.388486250000001,3.5875,6.4375,159.68771630088864,80.103418575,1.5375617161455124,6.478601249999999,3.3916666666666666,7.8324049,223.73989595824384,20.63095238095238,6.302055952380952,3.2976190476190474,5.571428571428571,154.60935197435296,76.03503763095237,1.5833387099588927,6.409955952380953,3.6871693121693117,7.74370242857143,224.1538822261879,15.540816326530612,6.0180091836734695,2.673469387755102,3.8877551020408165,157.60058422548968,54.86433646938775,1.3653514606432349,6.1122357142857116,3.0430839002267573,7.551924,182.4062530772746,13.861702127659575,5.837701063829788,2.574468085106383,3.648936170212766,163.48661735434703,49.39563231914893,1.2084894186358723,5.914197872340426,2.6784869976359342,7.414002638297871,158.80390528058305,16.397058823529413,6.1073367647058845,2.764705882352941,4.264705882352941,162.1724950054888,58.95834420588235,1.296914603149823,6.183973529411766,3.1339869281045756,7.620440588235295,176.095122222432,16.333333333333332,6.239466666666668,2.4833333333333334,3.9166666666666665,165.89384110669067,58.30189144999999,1.2557723702414996,6.299868333333334,3.551851851851852,7.751961933333335,173.25576648622152,6.903047091412741,0.104299515235457,0.013599540843363025,0.626731301939058,4.113573407202217,1.7101358623060272,32.9256826267313,0.21596693732195635,0.09826572022160664,1.5320867959372115,0.05698010249307477,47.709533509123446,0.45353185595567924,0.00959962950138497,-0.005223238220259748,0.32655817174515234,1.7785318559556775,-0.3270744212781539,2.0802418410318686,-0.021907098546709563,0.009823161357340699,0.0157933210218529,0.003559979085872557,-2.143602630152322,1.122471249895073,0.013699567699152131,0.0008622651423154138,0.0794090489381348,0.7548476454293629,-0.15434014797795415,5.315578637224049,0.00989815237836824,0.014433601947452348,0.0678600408517306,0.00622973163770669,4.5239838782031585,0.08840027700831048,-0.01919533760387817,-0.002330571654832918,-0.09350761772853185,-0.3642313019390584,0.1294204701645543,0.5926380341239661,0.034817230979251865,-0.01606042416897508,-0.10752539242843948,-0.011487759072022182,6.356931618077013,-1.1893879435430679,-0.005881250824429525,0.0009652687936572443,-0.1095007254979554,-0.6474079936683816,0.023735071550118354,-5.713480153047085,-0.03097087823305408,-0.007883452051180576,0.03739245775256855,-0.00221764384645826,-8.28643710813606,-1.1022952117134948,-0.010011196223641772,0.0003669749323662351,0.03143196336706426,-0.09047995929673806,-0.1731286530437302,-5.261818621092205,-0.02888479649061883,-0.010991848041155503,-0.1926369809234867,-0.005109433320142444,-7.698532176132099,1.5342429421818822,0.01351954971415107,-0.0009270845487144275,0.023044733895208332,0.7044557081393295,-0.03136587297506002,7.307915315597914,0.022330141338700375,0.015224817292391111,0.08826283701040578,0.004837062120587052,7.865492231780445,0.06986312530552381,0.00879382841779372,0.0013922073813375326,-0.06984275704741728,-0.11357340720221606,-0.20087374457478002,0.2517729994296867,-0.01919339049591381,0.007862878849600786,-0.00129904223924105,0.004859352615284344,-3.0418260689431076,-0.5346260387811635,-0.014378901200369358,-0.0019313471255216024,-0.1214681440443213,-0.5916435826408125,0.08575931458537005,-2.4879703517313034,0.005222778177708074,-0.013041641274238229,-0.059913306658459,-0.0066516375807941005,0.07369556224524586,,,0.4710144927536232,1.4782608695652173,0.8260869565217391,0.021739130434782608,0.6521739130434783,0.17391304347826086,0.6712546041762885,0.011426806825309561,0.02264419812965739,1.0402955228902422,0.29095681834574555,0.19388652971473164,1.7115501270665305,0.4848433480604772,2.0361609535147243,1.5148763745213611,0.44720837193967133,0.07407620705369145,0.0,0.5212845789933628,8.029675265789486,936.0,238.22450000000003,135.0,342.0,6170.920433746236,3704.679262999999,60.77369757273501,241.18410000000003,187.16666666666669,293.32562799999994,9099.005139275338,1069.0,257.24989999999997,168.0,362.0,5909.467528248498,4103.806744999999,74.83010465000002,262.9666,143.05555555555557,311.5037399999999,11085.422975534395,1544.0,419.7659,262.0,501.0,10283.463508622943,5870.275718999998,107.66680573394297,426.87620000000004,214.33333333333337,512.9231,15753.134413605294,1713.0,511.07890000000003,287.0,515.0,12775.01730407109,6408.273486,123.004937291641,518.2880999999999,271.3333333333333,626.592392,17899.191676659506,1733.0,529.3727,277.0,468.0,12987.185565845648,6386.943160999999,133.00045163654698,538.4363000000001,309.7222222222222,650.4710040000001,18828.926106999785,1523.0,589.7649,262.0,381.0,15444.85725409799,5376.704973999999,133.80444314303702,598.9990999999998,298.22222222222223,740.0885519999999,17875.812801572913,1303.0,548.7439,242.0,343.0,15367.74203130862,4643.189437999999,113.598005351772,555.9346,251.77777777777783,696.9162479999999,14927.567096374807,1115.0,415.2989000000001,188.0,290.0,11027.729660373237,4009.1674059999996,88.19019301418797,420.51020000000005,213.11111111111114,518.18996,11974.468311125376,980.0,374.36800000000005,149.0,235.0,9953.63046640144,3498.1134869999996,75.34634221448998,377.99210000000005,213.11111111111111,465.1177160000001,10395.345989173291,262.31578947368416,3.9633815789473656,0.516782552047795,23.815789473684205,156.31578947368425,64.98516276762903,1251.1759398157894,8.206743618234341,3.734097368421052,58.219298245614034,2.1652438947368413,1812.9622733466908,18.14127423822717,0.38398518005539883,-0.20892952881038993,13.062326869806093,71.1412742382271,-13.082976851126155,83.20967364127475,-0.8762839418683825,0.39292645429362794,0.6317328408741161,0.14239916343490228,-85.74410520609287,74.08310249307482,0.9041714681440407,0.05690949939281731,5.240997229916897,49.81994459833795,-10.186449766544973,350.8281900567872,0.6532780569723038,0.952617728531855,4.478762696214219,0.4111622880886415,298.58293596140845,7.072022160664838,-1.5356270083102534,-0.18644573238663342,-7.4806094182825476,-29.13850415512467,10.353637613164343,47.411042729917284,2.785378478340149,-1.2848339335180066,-8.602031394275159,-0.9190207257617745,508.55452944616104,-99.9085872576177,-0.4940250692520801,0.08108257866720853,-9.198060941828254,-54.38227146814406,1.9937460102099416,-479.9323328559551,-2.6015537715765427,-0.6622099722991683,3.1409664512157587,-0.18628208310249383,-696.0607170834289,-108.02493074792248,-0.9810972299168936,0.03596354337189104,3.0803324099722973,-8.86703601108033,-16.96660799828556,-515.6582248670361,-2.8307100560806453,-1.0772011080332393,-18.878424130501696,-0.5007244653739595,-754.4561532609457,144.21883656509692,1.2708376731302007,-0.08714594757915618,2.1662049861495833,66.21883656509696,-2.948392059655642,686.9440396662039,2.099033285837835,1.4311328254847644,8.296706678978143,0.45468383933518286,739.3562697873618,4.750692520775619,0.597980332409973,0.09467010193095222,-4.749307479224376,-7.7229916897506925,-13.659414631085042,17.120563961218693,-1.305150553722139,0.5346757617728535,-0.0883348722683914,0.3304359778393354,-206.84417268813132,-32.07756232686981,-0.8627340720221615,-0.11588082753129614,-7.288088642659278,-35.49861495844875,5.145558875122203,-149.2782211038782,0.31336669066248446,-0.7824984764542937,-3.5947983995075403,-0.39909825484764605,4.421733734714752,0.7129120324595233,0.5605597797164167,0.44605588021563913,0.2907019226399357,0.27631516497646064,0.14426117899247176,0.17284702755238107,0.07493113312883772,0.11468809655594321,0.040140447631493444,0.0709748886482084,0.019820631240895215,0.04546761720937352,0.010348670227758336,0.02928716925390478,0.005440726939462251,8.022036753465397,5.689844671644844,3.543889346441861,2.1884185046931686,0.4329489250779831,-0.42637204145562874,3.273122594745271,0.9113306631568239,6.021986906686166,0.9879253130796876,14.694476234272358,10.951611011074778,16.010066217529474,11.701878155802305,1.9914158129941664,0.7517359276684458,3.489142328211156,2.237906267352401,7.008272032501624,1.4457823911987535,3.7020476922510697,2.433571483573431,20.89462632229805,14.702707957845373,0.2784647858564854,0.6535290946153175,0.8127227395185493,0.8761808471483444,0.8761808471483444,0.8761808471483444,1.6603456474671339,922.123581148975,1.0,4.0,3.0,0.0,7.0,0.0,2.0,0.0,0.0,3.6763123081531672,1.559503287601054,0.6610372494411498,0.3028888159033398,0.3028888159033398,0.3028888159033398,170.66127016929073,897.1552622894657,51.0604686439503,23.609349007617517,48.333381935293815,,11.0,417.0,0.0,4.794537184071822,5.907179729351506,17.755385118377298,16.944765761229018,6.196843571613076,22.535888395769803,37.255572541998674,16.15188164204052,5.261891554738487,10.833333333333334,34.0,19.0,0.5,15.0,0.0,0.028985507246376784,4.0,0.1733738191632927,0.06560672514619881,-0.10776709401709389,0.0,0.13979505300353345,0.0,0.6149122807017546,0.8202898550724637,0.44153846153846193,0.5493055555555558,0.8202898550724637,15.438855896054635,0.2628165569821199,0.5208165569821199,23.92679702647557,6.692006821952148,4.459390183438828,39.3656529225302,11.151397005390976,0.5742049469964665,0.16,0.0,0.3507692307692307,0.17647058823529413,0.3434786913764932,-0.5652439215061535,-0.05528517244301242,-0.014874840039635621,-0.04710366012551279,0.6565213086235068,1.0804008759656623,0.03837464109467855,0.028431601999096376,0.04155387984483316,-3.7081300213011064,0.68409911717496,0.6154520329197888,1.3950776002385488,0.5631767955801106,0.355050505050505,1.309690343907503,0.6904181443616014,1.0580229784256432,0.5933445305248853,0.487679548993019,0.6379303289377829,0.9272266136343242,0.708462534656355,0.7469147934324203,1.1004114311570175,1.0710363301523524,0.742378328741965,1.1615258012244796,0.7108221460340753,0.8972568513436028,0.719573313996894,0.4947008506033669,0.7469403909385849,0.8174246592587362,0.9168338683788123,1.2634673258813416,1.4469515167492875,1.3108425414364644,1.0932596801346801,0.9774115694973284,0.909481846612864,0.7691677713866512,1.2167557314985582,0.9435826929837777,1.3114471454704726,0.7715881999777747,1.0452913609263932,0.9684153110943432,0.8746474341364828,1.1929360694554068,1.0454264870931538,1.0163427263088516,1.0472024738945083,1.1119476164553443,0.9790136094932503,0.9315404442626833,0.9867996441211944,1.0995663078243323,1.1269716152913816,0.9946887636027265,0.71589999726773,0.8164280076671554,0.9311018346732631,1.0087281775076131,1.1285967829223265,1.1598977882679364,1.022894935203412,1.0684005559433356,1.0264237957419429,1.178458257973681,0.8305524486868618,0.7014259317821274,0.796296683821509,0.9007523216174916,0.7994931585357116,0.888078865427991,0.8339066590294261,0.9301690564676954,0.7146271162101245,0.6631352604195052,0.6853582006080777,0.9127019574538678,0.9894338353318857,0.8765999262989805,0.8895008721468175,1.062382190445239,1.0042359873242224,1.07055635322011,0.9922085381795107,1.0636076811614528,0.8882627397115914,0.8634666914829817,0.8525224904843371,1.0539252029020014,1.113130350454789,1.3110101134176801,1.246631232931429,1.1134069981583796,1.1973092031425363,0.929442226423841,1.1077912873141302,0.9113114382174508,1.2909945004206138,1.2320712587681852,1.3056817480032354,0.949796318469006,4.0,0.049586776859504134,3.1111111111111125,2.0069444444444446,0.9155555555555557,0.7919444444444445,0.5208616780045351,0.2690972222222222,0.24918902746283694,0.19657407407407407,4381.415539022619,4779.503929916712,2237.0067157453773,2086.985348200772,11.438294192872407,0.38662035543658735,7.016016826435824,0.6303116819466245,1.0,0.1875,1.571615205290418,3.6884242258425313,4.586890264002435,4.945038697540245,4.945038697540245,4.945038697540245,0.16,0.009917355371900825,0.08888888888888893,0.05281432748538011,0.024744744744744744,0.02639814814814815,0.020033141461712888,0.01223169191919192,0.013115211971728259,0.015121082621082624,0.4232645926127785,17.8112,7.92,3.665139525197834,133.15305327477,1.0,4.066828665186345,105.0636028047049,,76.50433720099082,74.87916314388458,73.53484242251682,76.5183792513968,102.46385900943221,75.81423256784778,76.60243664913845,94.39089742782613,0.06570024077046557,0.09203906154035069,-0.38407460078395517,0.5210497237569062,0.43235690235690194,-0.19125639575624795,0.06317991534495893,-0.10143727932785927,0.09996529140770279,0.010308372256541624,0.0624775830528776,-0.044930278552029926,0.1626051850770953,0.13134833530362292,0.0634039893145528,0.1267034990791897,0.18350168350168347,-0.0902502259497878,0.1614417139800923,0.04583179490855307,0.14688338837696416,0.044292556421530356,0.10933170291267617,0.09482347752023276,0.012805979133226359,-0.18404052560114534,-0.17137134861213385,-0.14919889502762432,-0.08854377104377108,0.07567847269750702,0.017999263396981855,0.16121556109927832,-0.1634387264730363,-0.0701823112852192,-0.20161001067729523,0.1332423763242494,-0.1722989757700833,-0.05638809357025825,0.0709780429188772,-0.1747171796895554,-0.1573833573833574,0.013879056087457795,-0.1735265512280828,-0.14340564633226113,-0.0802258614031627,0.024406226756686297,-0.0389196184181625,-0.1736851421226211,-0.1596824122907591,-0.09598506954746065,0.0269843619422879,0.050152215582365524,-0.0219954648526077,-0.10123678291283561,-0.15980894551963834,-0.13374638196382038,-0.11185841834127848,-0.12573503109244302,-0.08967048314389102,-0.1613625539780203,0.22225589973020046,0.12962236385884038,-0.06817028305531887,0.036769719054895955,0.17125152231535212,-0.018341158539745966,0.22195182400454938,0.10339611060655705,0.1549351824629835,0.05760955400468252,0.08489037240982389,0.1648620653621846,0.010120621282220747,0.0843132242555642,0.10237164602634144,-0.11143971400714982,-0.027609427609427604,-0.11746069362226721,0.007646705530268348,-0.08887189277172061,0.08001649844796943,-0.0008478907609450396,0.08528157027929072,-0.06375719578900142,-0.07744783306581063,-0.1378616302090079,-0.14201561271564225,-0.1938121546961326,-0.14382716049382713,0.050147661642349385,-0.0755632124605186,0.02418323027807784,-0.1327181161937959,-0.03910568697369962,-0.11673614629953545,0.0015446716164423013,9.286367355461266,16.952839404457112,4.770542007182505,14.371374731183092,36.0768249161547,41.50229115999431,41.86330478100042,41.86330478100042,41.86330478100042,46.83170193083866,34.84215661399131,10.28579255461244,1.7037527622349034,0.0,11.989545316847344,4106.027634148252,3570.634952842104,1090.2236242564359,108.0,35.0,49.0,65.0,76.0,84.0,98.0,108.0,104.0,305.12766010000047,25.0,4.795790545596741,5.666426688112432,6.558197802812269,7.44600149832412,8.344505083590521,9.238052810542719,10.13915238440401,11.03561520720872,11.938160520102016,0.7017543859649124,0.9931578947368424,1.1257302553872315,0.6689942114465247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7042845099275137,0.9802889576883381,1.0080308199486339,0.6728506700804524,7.0,2.0,0.0,0.0,0.0,1.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4.899909730850478,11.63267280448927,5.647177220767728,5.907179729351506,0.0,4.794537184071822,9.499376414562832,10.360573363039524,0.0,12.13273413692322,25.122838405075452,30.916174943596832,11.890771566461538,187.25408783604638,-308.15371545272023,-30.13978682400241,-8.109308301387376,-25.679476287726686,357.9153580053371,589.0015468367454,20.92068181994789,15.500040706230143,22.65390564756713,0.45454545454545453,0.8939218813321933,0.19015835214137664,0.0,0.1357190527366159,28.54601139393246,0.10607811866780656,6.0,0.12,0.29947349715948257,0.7028344458634226,0.8740384184522796,0.9422841083213457,0.9422841083213457,0.9422841083213457,2.6407800000000003,,0.9642857142857145,1.2140530479292693,1.2993821131665406,0.9617664715096315,-3.6732033552482424,1.0646419828641371,0.9498097657793637,-1.9956176192751696,86.83900000000004,4.794537184071822,5.261891554738487,14.598058222863868,0.0,13.847474399381248,11.444666136763054,48.2889739772312,0.0,17.32660079933773,3.9318256327243257,0.0,5.25227342804663,2.3978952727983707,6.785587645007929,4.727387818712341,8.414274137408396,6.842683282238422,10.091252599948522,26.66666666666667,12.67811371462165,8.460262791845132,0.0,0.0,0.0,0.5225172430083147,2.983514083102378,1.6405947656840514,37.74000000000001,0.0,11.740121761489005,0.0,0.0,0.0,0.0,0.0,-0.004276653447829126,42.77774970471479,4.899909730850478,5.687386274683562,0.0,27.049994358127947,4.794537184071822,11.33111286753076,19.410925891078243,42.725522485534206,0.0,16.904556707313183,0.0,25.421780034967938,26.76281137724552,29.70225462015288,210.12720560940988,,152.9248234703046,149.65275645751444,146.95669509606265,152.9531266357058,205.90909692827876,151.53588757196826,153.1222811447309,189.30239075633273,29.70225462015288,210.12720560940986,,152.0539730005841,148.58169845375704,145.85029151853243,152.08441675929637,208.60092137411263,150.58315938510356,152.26351371707312,190.7774124749274,4.882501202155719,155.3411669446498,,113.6408174067323,111.30307436112348,109.33706124321617,113.66092674364737,151.06737605037364,112.64601844798081,113.78222163576794,139.43557484891926,1.2914023747892556,9.13596546127869,,6.6489053682741135,6.506641585109324,6.389421525915767,6.65013594068286,8.952569431664294,6.588516850955142,6.657490484553517,8.230538728536205,2.4754314310935124,105.0636028047049,,76.50433720099082,74.87916314388458,73.53484242251682,76.5183792513968,102.46385900943221,75.81423256784778,76.60243664913845,94.39089742782613,37.25098039215685,0.0,3.4850374814245666,0.0,0.0,0.0,0.0,38.30517115804808,0.6020763940077611,0.0,0.0,0.0,0.0,1.7000828294280674,0.0,9.108358847875444,2.0835967409614593,25.568325463057192,487.33889667135884,59.721377801035885,140.1601205820162,174.30183003209254,187.91147050652933,187.91147050652933,187.91147050652933,775.0,123.16190254069355,57.830549170024625,71.44317981688494,74.28999999999999,74.28999999999999,0.8333333333333334,9.16610516976128,5.643856189774724,4.0755698417232695,4.725700150687736,,4.717831615165941,4.718049253791369,4.717927520891733,4.71782876495713,4.707443433605047,4.717917552464857,4.71781832101563,4.712012204610231,0.17719868877057693,0.20546522394294503,,0.20512311370286698,0.20513257625179865,0.20512728351703186,0.2051229897807448,0.20467145363500203,0.2051268501071677,0.20512253569633176,0.20487009585261873,2.237919698311142,2.385924852942965,,2.3842584134078812,2.3843045434149235,2.3842787415498807,2.384257809272358,2.3820540881837298,2.384276628665068,2.3842555955521108,2.383024159393563,230.5799999999997,193.83062807801338,130.03975967582574,,130.53257278669076,130.49914098223505,130.52690743917418,130.53302482055562,131.5080128871992,130.5204695473139,130.5344218561708,131.10942491017934,8.427418612087537,5.653902594601119,,5.675329251595251,5.673875694879785,5.675082932138008,5.675348905241549,5.71773969074779,5.674803023796256,5.67540964592047,5.70040977870345,6.099893849523057,5.7007493702902465,,5.704531918450994,5.704275767164579,5.704488515717543,5.7045353814416675,5.711976907199908,5.704439192166118,5.704546083929725,5.708941402121329,1.6405947656840514,17.653728988330357,13.355097242307291,3.5060313261106923,-0.004276653447829126,11.602956860009076,3.158753595574032,4.087113875432328,0.0,270.2282713727625,102.08520729711117,-167.99599028732288,-16.43129088061883,-4.420947112824287,-13.999665857276906,195.12451738189003,321.10564688870625,11.4053165144049,8.450148602334375,12.35021718802716,1169.0,38.0,1.3776643872851508,0.564931473090557,0.0,0.0,0.451318019830997,0.12019160254570865,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.34301303412082035,0.08622190239128379,0.537097559190897,0.10001728207466404,16.396976746569035,12.892874933477584,11.151397005390978,7.267548065998393,9.671030774176122,5.0491412647365115,8.469504350066673,3.671625523313048,7.4547262761363084,2.6091290960470737,5.394091537263838,1.5063679743080363,3.819279845587376,0.8692882991317001,2.8701425868826687,0.5331912400673006,3.7564945765386986,1.2995386242215237,6.517549118595377,1.8239663836413371,9.306314133554695,2.087745743811146,75.47400964344385,36.416243552378795,24.57937540130994,23.17394900858429,23.17394900858429,23.17394900858429,120.0,144.0,44.69389499999999,21.046104999999997,0.39473684210526316,119.06,7.638888888888888,5.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,38.0,0.0,0.0,40.0,16.0,1.0,8.0,31.0,18.0,25.0,22.0,1.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,5.0,0.0,2.0,23.0,6.0,0.0,5.0,1.0,0.0,3.0,3.0,0.0,0.0,0.0,2.0,3.0,3.6109179126442243,8.031229119221658,4.21582445975981,4.89128853646369,5.55465388521801,6.091309882077698,6.491126526128106,6.976822106067639,7.422875573682762,7.666148737972862 +5578,COc1cc(Cc2cnc(N)nc2N)cc(OC)c1OC,0,23.333333333333332,6.386400000000001,3.128205128205128,8.256410256410257,166.79366231651238,92.06859089743587,1.3799293406995388,6.426210256410257,3.857549857549858,7.88105815384615,207.97879610326058,25.3,6.626650000000001,3.6,7.825,152.60584195939492,95.77572654999997,1.6367637384999998,6.736525,3.6458333333333335,8.024876199999998,248.29464113825784,21.4,6.540132307692308,3.5076923076923077,6.6,161.3139049104667,80.36645098461537,1.4024023855721235,6.603183076923079,3.382905982905983,8.033552861538462,209.87879961529475,23.130434782608695,6.60868115942029,3.536231884057971,6.565217391304348,154.14846155646813,86.13413549275364,1.5525718616231885,6.702191304347826,3.5120772946859913,8.034791710144926,229.17350715348712,18.229885057471265,6.3519057471264375,2.839080459770115,3.954022988505747,159.00134838344067,65.62184333333332,1.3301283804131374,6.4288022988505755,3.2429757343550456,7.848033655172411,187.12528593025564,14.494845360824742,6.315556701030929,2.5670103092783507,2.6804123711340204,163.65803163300603,49.63697048453609,1.1744654098544947,6.366067010309277,2.883447880870562,7.894879298969073,160.83195546739776,13.48314606741573,6.142550561797754,2.292134831460674,3.2247191011235956,162.76763271623017,45.42866530337077,1.1573426275976177,6.205415730337079,2.7222222222222228,7.7116092584269635,152.56067461650872,12.065217391304348,5.82016304347826,2.032608695652174,3.4565217391304346,170.52203115907233,43.17065495652174,0.9376503896234346,5.853511956521739,2.560386473429952,7.460254782608693,120.2906615386175,15.0,6.2457868852459,2.19672131147541,3.262295081967213,167.32625669686536,53.08026216393441,1.0624504464382787,6.2833819672131135,3.1630236794171234,7.807602754098363,144.61746562615824,7.740959894806051,0.15177514792899396,0.03686305191996164,0.6009204470742932,4.458908612754767,1.5019444516785805,36.65278266009203,0.2097449468145443,0.14026127547665998,0.8471765651252827,0.09295148454963839,46.88854173215092,0.22057856673241213,-0.016605917159763315,-0.01895010671639518,0.36446416831032213,1.6353221564760019,-0.2369949742824912,1.0584395168310494,-0.022756624860567405,-0.011098583168967894,-0.1972121776608957,-0.012899546088099869,-0.33618787481756324,1.33241288625904,-0.0071841420118343375,-0.0013760031272928332,0.06732412886259047,0.2641683103221564,0.5659358993512434,6.590127583694942,0.07475352919745092,-0.004713464825772585,0.07149536123895096,-0.009782853385930249,15.134858124822264,-0.592687876968814,0.0058645399193894224,0.0018418881825760305,-0.1572192207643712,-0.4540776948803705,-0.2032621812773546,-2.9325176366806582,-0.026748849191242215,0.004220775805391106,-0.023773451867097364,0.008021099619815395,-6.075743317927265,-0.9900020403999189,0.0017512888526151171,0.006170865556807654,-0.20687388061393364,-1.140900949919517,-0.11231128424310818,-4.871488969847416,-0.05362274152327911,0.00018128273141533607,0.02115529458588698,0.002730839057788673,-10.605370411035254,-2.1945681422287286,-0.053102031354846556,-0.006708252274127919,-0.10105261730955623,-1.7589350468018188,-0.06824628254060737,-10.182198810237429,-0.0009669088426553996,-0.05033748483431274,-0.2384518610397543,-0.03100016549069042,-5.497685541842675,-2.1592831445899727,-0.030287853201249913,-0.00587420718257626,0.05018874336073989,0.1688643633328162,-0.35854812554757065,-10.274459094548972,-0.05677571183684686,-0.02960232992782688,-0.20683916636091798,-0.016613154385420593,-13.891095902542508,3.83652059571792,0.07308538718806273,0.010383775287140455,0.06713975359460304,2.106866192150473,0.04605322147922788,18.03461526298486,0.03889280741235526,0.06984438227138902,0.42535223457742966,0.03870596026641502,14.755569371717256,0.4914907146937411,0.01994692016684449,-0.0035843144181341474,-0.09734751727185526,-0.160043543397894,-0.4269687154366314,2.2041705399920226,-0.027649021978921433,0.018226030113924187,0.11496906095476919,0.009961425076254832,-3.689352969069093,,,0.4571428571428572,1.3571428571428572,0.6904761904761905,0.11904761904761904,0.6666666666666666,0.023809523809523808,0.6858739732488212,0.015760233543046707,0.023950709733522896,0.9886186750001532,0.288959897462629,0.19119480053590027,1.6744926482489744,0.4801546979985293,1.9962201309583019,1.3665813824706359,0.3579479125624125,0.2716908359252531,0.0,0.6296387484876655,7.439433088102576,910.0,249.06960000000004,122.0,322.0,6504.952830343983,3590.675044999999,53.817244287282016,250.62220000000002,150.44444444444446,307.3612679999999,8111.173048027163,1012.0,265.06600000000003,144.0,313.0,6104.233678375797,3831.0290619999987,65.47054954,269.461,145.83333333333334,320.9950479999999,9931.785645530314,1391.0,425.1086,228.0,429.0,10485.403819180336,5223.819313999999,91.15615506218802,429.20690000000013,219.88888888888889,522.1809360000001,13642.12197499416,1596.0,455.999,244.0,453.0,10636.243847396301,5943.255349000001,107.12745845200001,462.45120000000003,242.3333333333334,554.4006279999999,15812.971993590612,1586.0,552.6158,247.0,344.0,13833.117309359339,5709.100369999998,115.72116909594295,559.3058000000001,282.13888888888897,682.7789279999997,16279.899875932242,1406.0,612.6090000000002,249.0,260.0,15874.829068401585,4814.786137000001,113.92314475588599,617.5084999999999,279.6944444444445,765.803292,15600.699680337582,1200.0,546.6870000000001,204.0,287.0,14486.319311744484,4043.151211999999,103.00349385618797,552.282,242.27777777777783,686.3332239999997,13577.900040869277,1110.0,535.4549999999999,187.0,318.0,15688.026866634655,3971.700256,86.26383584535598,538.5231,235.5555555555556,686.3434399999998,11066.74086155281,915.0,380.99299999999994,134.0,199.0,10206.901658508787,3237.895991999999,64.809477232735,383.2862999999999,192.9444444444445,476.26376800000014,8821.665403195653,301.89743589743597,5.919230769230764,1.4376590248785042,23.43589743589743,173.8974358974359,58.57583361546464,1429.4585237435892,8.180052925767228,5.4701897435897395,33.03988603988603,3.625107897435897,1828.653127553886,8.823142669296486,-0.6642366863905326,-0.7580042686558072,14.578566732412886,65.41288625904008,-9.479798971299648,42.33758067324197,-0.9102649944226963,-0.4439433267587158,-7.888487106435828,-0.5159818435239948,-13.44751499270253,86.6068376068376,-0.4669692307692319,-0.08944020327403415,4.37606837606838,17.170940170940163,36.785833457830826,428.3582929401712,4.858979397834309,-0.306375213675218,4.647198480531813,-0.6358854700854661,983.7657781134471,-40.89546351084817,0.40465325443787015,0.1270902845977461,-10.848126232741613,-31.331360946745562,-14.025090508137467,-202.34371693096543,-1.8456705941957128,0.2912335305719863,-1.6403681788297182,0.5534558737672622,-419.2262889369813,-86.13017751479295,0.15236213017751518,0.5368653034422659,-17.998027613412226,-99.25838264299799,-9.771081729150412,-423.8195403767252,-4.665178512525283,0.015771597633134238,1.8405106289721673,0.23758299802761454,-922.6672257600671,-212.87310979618667,-5.150897041420116,-0.6507004705904081,-9.802103879026953,-170.61669953977642,-6.619889406438914,-987.6732845930306,-0.09379015773757376,-4.882736028928336,-23.129830520856167,-3.0070160525969705,-533.2754975587395,-192.17619986850758,-2.6956189349112423,-0.5228044392492871,4.46679815910585,15.028928336620643,-31.910783173733787,-914.4268594148584,-5.053038353479371,-2.6346073635765923,-18.4086858061217,-1.4785707403024329,-1236.3075353262832,352.9598948060486,6.723855621301771,0.9553073264169218,6.176857330703481,193.8316896778435,4.236896376088965,1659.1846041946071,3.5781382819366843,6.42568316896779,39.13240558112353,3.5609483445101815,1357.5123821979876,29.98093359631821,1.2167621301775138,-0.218643179506183,-5.93819855358317,-9.762656147271535,-26.045091641634514,134.4544029395134,-1.6865903407142073,1.1117878369493754,7.0131127182409205,0.6076469296515448,-225.05053111321467,0.7335910911907768,0.5815728661679135,0.45832948445314164,0.2838167869743055,0.28791595874471365,0.14496816351377434,0.18586035603374523,0.0778397207014169,0.12227275137588643,0.04138440987235501,0.07998795898468983,0.02342029038546166,0.05071180046742305,0.01258375002729265,0.032695636217223475,0.006947232259788052,8.014080951503644,5.691397162935162,3.527446266158988,2.189818703053443,0.4513903387201494,-0.527953383908148,3.233594770542397,0.9871941857541987,6.010327125404967,0.9966232648183196,14.560349199303523,10.952057904554504,16.006909534826764,11.703332879478578,1.988160812625025,0.7731986138077027,3.4709606488801557,2.2394591181124013,4.006497480711536,1.3833348604267957,3.6843093279886303,2.435487551282011,20.893153354207875,14.705475956331131,0.3018034869895682,0.6176680814101415,0.7245955425331527,0.7745209979554315,0.7965937461807813,0.8628119908568298,1.9385813230107924,621.1065134129683,0.0,2.0,0.0,0.0,5.0,1.0,2.0,0.0,0.0,3.6183719599213218,1.8736743029144654,1.2830538465976353,1.0072875003883155,0.885367308025149,0.519606730935652,282.2404733298917,1435.9447186648267,70.35826653767566,36.81909535038018,71.5545941479424,,11.0,367.0,0.0,0.0,5.948339280986494,29.48721990061275,11.126902983393991,0.0,27.526236195445676,12.13273413692322,9.967957041894417,25.67792381572452,9.600000000000001,28.5,14.5,2.5,14.0,0.0,0.04285714285714279,0.5,0.17767969735182831,0.053682487725040806,-0.12399720962678751,0.09371428571428553,0.19787096774193524,0.0,0.6153846153846155,0.8857142857142855,0.4377049180327872,0.5617021276595747,0.7919999999999999,14.403353438225244,0.33096490440398085,0.5029649044039808,20.760992175003217,6.068157846715209,4.015090811253906,35.16434561322846,10.083248657969115,0.5161290322580647,0.2395833333333333,0.0,0.36458333333333326,0.2857142857142857,0.23426298098856718,-0.6334380519037878,-0.06502973254561634,-0.016242001330866347,-0.06334380519037877,0.7657370190114329,2.0705233218938988,0.06745867914068608,0.05309034158702306,0.07139735592737584,-3.779420153784405,0.8244521827756071,0.981981481481482,1.5579000875511058,0.5877735229759301,0.5162525803597757,1.4409880080504656,0.8274607469213775,1.2374632249105566,0.9317839488059766,1.195650814865914,1.0394194894626938,1.0154304083294272,0.8026668931544079,1.190696296296297,1.1947036693464599,1.1474835886214445,1.0825125331760541,0.6859388989398744,0.7919385525118547,0.67648268656813,1.1547303004536482,0.8628395274639997,1.319998380525657,0.6488687805298151,0.9549744832017486,0.9008820898192882,0.9784853175644559,1.5039482446960333,1.100515430872001,1.3545370083814452,0.9601713684186461,1.23835139688985,0.8885940869904345,0.8686129471265058,0.8999165225016064,1.1298532426467698,1.0395172296644268,0.8855459060593162,0.7889878328422598,1.4630272391156722,1.191810980384181,1.1706675970671114,1.0466675558861709,1.309710007638677,0.8899974956296365,0.8800366028075041,0.8834919273668391,1.2253621872599418,1.2814142291507231,1.4989031436935225,1.3046733131203418,1.1283245730785718,1.4530427724084674,0.9829755428813257,1.2719842990394084,0.9988886720256996,1.4937859866891654,1.2602959439385768,1.5566545608916804,1.082407500134091,1.2247629990285198,1.1014384796781806,1.0056795901865618,0.7378482039682347,0.8630296985742165,1.217171616713767,1.2277314006587638,1.27756073214194,1.1165249574649088,1.1181771147710617,1.08485007151909,1.2897157300150002,0.524688702446806,0.3647361782071929,0.41757310915442286,0.7930977071639237,0.4809806649314682,0.7470363627614017,0.5306170791620882,0.7540712613772497,0.3777253522599291,0.32729252505333106,0.38707300058484945,0.7022269993676665,0.9399023132381155,0.904432705929974,1.1005326179482728,1.0499515729813111,1.0245345683608007,1.2063717159275409,0.9416878048242933,1.0656715623739264,0.9054509544928194,0.9107775187760547,0.9278559958835358,1.0331984476647393,5.0,0.02887460463218039,2.4444444444444455,1.8125,1.5377777777777781,0.5902777777777778,0.506938775510204,0.3263888888888889,0.18896447467876037,0.1325,4002.055883032199,4773.571372977914,2117.115628506709,1929.3878424582786,12.28634370108793,0.43044348672985416,6.99776707923026,0.755752022320726,1.0,0.2857142857142857,1.6670302589409267,3.4117279159477834,4.002348372264613,4.278114718473933,4.4000349108371,4.765795487926597,0.22727272727272724,0.007218651158045097,0.08148148148148152,0.05492424242424242,0.051259259259259254,0.02361111111111111,0.025346938775510197,0.016319444444444445,0.011810279667422523,0.014722222222222223,0.5139663578164662,17.355371900826448,8.022222222222222,4.260355029585799,122.40797882758652,1.0,3.950620977222812,93.21993834204486,,70.10460161552514,68.92056205925483,70.52339822568501,70.12252154832447,103.73804026315449,69.71819712694911,70.16430579880068,87.93271122078552,0.028494988958722507,-0.10941130604288508,-0.514067765130796,0.6065098468271335,0.36675390740194613,-0.1577921034413919,0.028877466866478612,-0.10849665370336062,-0.07912792131150083,-0.23278757437268277,-0.13877719275383057,-0.007169936671053328,0.1721250212332257,-0.047334113060429006,-0.03732743372091002,0.11203501094091918,0.05924506045414329,0.37680215051811716,0.17979883396057536,0.3564020508372376,-0.033604890656772364,0.08439251530568251,-0.10524687618846974,0.32278372424716445,-0.07656516569301561,0.03863965872814087,0.049965699708618895,-0.2616306726286747,-0.10183606221071122,-0.13533268893545816,-0.08000804915348533,-0.12753036293595882,0.030092238866696024,-0.02806198004731361,0.08629339981688976,-0.129578423501305,-0.12789137960321695,0.011538706280388111,0.1673997467764214,-0.34426167660152424,-0.25587000071182325,-0.07477725565521984,-0.1329091167517698,-0.2556568934682948,0.001292464586531599,0.024971529497819,0.029379187121323893,-0.22618256015761898,-0.2835007766544841,-0.34987303309820955,-0.18197766936641901,-0.1681630535315482,-0.3944765859902044,-0.0454386195603539,-0.27780152204716296,-0.00460992675790343,-0.35888369518419994,-0.28146654529388615,-0.33350909499606285,-0.11725008581516574,-0.27894255672849905,-0.19955739536106196,-0.15935216637327113,0.08351977970643916,0.03787123217770767,-0.23872262728948163,-0.28031866474727224,-0.27068929525652763,-0.21105133849116336,-0.24415118981759135,-0.17872930664758516,-0.29625779325565055,0.495613030922962,0.4815372489194001,0.28168517652000363,0.11172818951574535,0.47250714807739147,0.03066239994945124,0.4920394566009624,0.18542905563653048,0.49795912687968813,0.5020821539303644,0.41641035056029774,0.31469456772633075,0.06349221819680484,0.13142415236634392,-0.0972332520355758,-0.1619973454819386,-0.035892985772367554,-0.28427730130728146,0.060136512974551005,-0.13182211251729747,0.12994342203138648,0.13570850007845442,0.10716800408857574,-0.07868346578454895,2.3811015779522995,11.34524852868544,6.782104580738607,16.165725755122757,30.484394135205875,34.88297102148875,36.98864910218396,38.45303253265794,38.82171919436416,41.92062275012434,28.698209031883355,7.5169061638106625,5.705507554430316,0.0,13.222413718240977,3728.051169859786,3098.163643838921,997.2256408334765,52.0,30.0,39.0,49.0,58.0,55.0,57.0,58.0,58.0,290.1378904360005,22.0,4.653960350157523,5.493061443340548,6.364750756851911,7.221835825288449,8.0959035329611,8.958668737047434,9.833011438731804,10.698446459242652,11.572825118178061,0.6581196581196583,0.9987692307692313,1.1417620016044567,0.6197801587860698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.647754859511746,0.9832076420311711,1.0162847591835218,0.6167359438851397,3.0,2.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,25.67792381572452,5.817862777835028,11.49902366656781,11.6978511142704,0.0,0.0,4.9839785209472085,4.9839785209472085,0.0,0.0,17.696185628620217,18.18111668623608,21.3293926238326,124.40587857094913,-336.38869032921195,-34.53418451533351,-8.625351034082355,-33.63886903292119,406.64635190084084,1099.5560283356149,35.824082022342154,28.193744316297824,37.91572511502121,0.45454545454545453,0.8140017984376474,0.18221578943222272,10.812511153141504,0.08189156760299478,126.9275503381747,0.18599820156235258,6.0,0.22727272727272727,0.31540272431712424,0.6455001482710623,0.7572457509442244,0.8094208427896814,0.8324881870171584,0.9016902196995891,1.2575999999999998,,1.3214285714285716,1.5998138669148436,1.4204008994654953,1.3177974512248314,-5.319610065744728,1.4208996328029377,1.3065363731051547,-2.474281947147792,79.76080000000003,14.210588861400147,0.0,9.967957041894417,0.0,6.4208216229260096,32.796727578156975,29.456480691930288,0.0,17.248535499851716,3.8066624897703196,0.0,5.10594547390058,0.0,6.616065185132817,0.0,8.224967478914584,0.0,9.882519246099932,25.666666666666675,5.328523951247165,7.900371315192744,0.0,0.0,0.0,0.0,3.9391535365421566,0.0,38.95200000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.528718062573816,25.67792381572452,11.766202058821523,17.248535499851716,31.297349665727015,6.4208216229260096,0.0,11.126902983393991,18.329577708536295,0.0,0.0,0.0,24.171426192656725,25.262439520958097,26.599235981764814,186.43987668408982,,140.08335289091423,137.6887608930892,140.91152017523044,140.11953857748466,209.20370727191727,139.30107047934555,140.2041795620675,176.60173925152006,26.599235981764814,186.43987668408982,,138.88777465962173,136.24131025159483,139.62639555190447,138.92724564542414,212.79569059205377,138.01549462109534,139.02207522449618,178.33970438871884,4.789594278044914,138.0910748171408,,105.8327091913519,104.4892340951351,106.13827835515983,105.85249243522063,143.8145730148869,105.385837072924,105.90132565677612,126.00359277000533,1.2666302848459434,8.87808936590904,,6.670635851948297,6.5566076615756765,6.710072389296688,6.672358979880222,9.962081298662728,6.633384308540265,6.676389502955596,8.409606631024765,2.394797139022457,93.21993834204486,,70.10460161552514,68.92056205925483,70.52339822568501,70.12252154832447,103.73804026315449,69.71819712694911,70.16430579880068,87.93271122078552,38.34509803921567,0.0,4.703740547004436,0.0,0.0,11.33941965348531,0.0,39.635105608157346,0.5305829554043839,0.0,15.924874707790472,0.0,0.0,0.0,0.0,0.0,0.0,24.05270181152045,432.27747066836105,65.01418009869614,133.05738872196355,156.09158651831993,166.84647402048338,171.6013615226469,185.86602402913726,499.0,115.89246366179948,98.7747598034289,54.63615987381823,105.51,105.51,0.8333333333333334,8.077612068981749,5.459431618637297,4.06045316936707,4.512431550468143,,4.51713313043607,4.520009057785854,4.515610735450503,4.517089519066431,4.44563324867314,4.518061535568007,4.516989690970885,4.477178009198477,0.19335491282700332,0.2148776928794354,,0.21510157763981286,0.21523852656123116,0.21502908264050014,0.2150995009079253,0.21169682136538762,0.21514578740800033,0.21509474718908975,0.2131989528189751,2.143231930184892,2.2487734994020028,,2.2498148741656743,2.250451342506433,2.2494777905457717,2.2498052194623686,2.233859666691899,2.2500203827727434,2.249783119125803,2.240930284019404,218.1299999999997,124.77224488021938,109.74719800179979,,109.41272230777955,109.1185759088478,109.64433252919693,109.41748990866931,116.197360459539,109.3229798018152,109.4268289625757,113.36402011081131,5.941535470486637,5.226057047704752,,5.210129633703788,5.196122662326085,5.2211586918665205,5.2103566623175865,5.533207640930429,5.205856181038818,5.210801379170271,5.398286671943396,5.5684273791377565,5.440116865623434,,5.437064519617512,5.4343724880506565,5.439179131337231,5.437108093133639,5.497227473394687,5.436243963026756,5.437193441969379,5.4725414027046915,15.924874707790472,7.900371315192744,0.0,13.050571864369664,2.228001325657803,3.7165684051398338,2.1425385015117158,0.0,4.703740547004436,258.7263037451606,66.06601929890519,-178.63996430481222,-18.33945571439221,-4.580511905251595,-17.863996430481222,215.95045219015793,583.9216813763309,19.024458662569153,14.972350804521309,20.135230392287276,946.0,33.0,1.3645843037102146,0.5110801186752174,0.0,0.0,0.2539338936857123,0.050408575050970905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12359693729953272,0.03526709006307398,0.34133012618410036,0.06711978335697441,15.405412915006313,12.213030189526183,10.083248657969117,6.243969313434721,8.63747876234141,4.34904490541323,7.248553885316064,3.035749107355259,5.991364817418435,2.0278360837453957,4.63930162111201,1.3583768423567761,2.789149025708268,0.6921062515010957,1.8636512643817382,0.395992238807919,3.1672729873765832,0.9908454946175096,5.109790670474651,1.2864485925419036,7.599533178507946,1.588341500082325,70.10243455653978,39.62624279159101,31.450562131830768,27.234253705110586,24.54998435023626,22.718143780461766,104.0,121.0,42.18827399999998,24.405725999999994,0.3333333333333333,64.07,8.027777777777779,4.916666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,39.0,0.0,0.0,40.0,12.0,0.0,6.0,34.0,12.0,22.0,28.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,7.0,2.0,1.0,21.0,7.0,0.0,4.0,3.0,0.0,2.0,5.0,0.0,0.0,0.0,1.0,2.0,3.367295829986474,6.7380414102272645,3.970291913552122,4.52720864451838,5.056245805348308,5.553928107999748,5.656647190417314,5.856414144228462,6.165483503336975,6.498564489132914 +115366,COC(=O)[C@H](c1ccccc1Cl)N1CCc2sccc2C1,0,35.513513513513516,6.089929729729731,3.4054054054054053,6.866199532866199,157.9736216016212,143.7070570540541,1.8214868777725401,6.244075675675677,3.6188544511589784,7.7261681621621605,244.60687192471065,29.846153846153847,6.257692307692308,4.128205128205129,6.2763532763532766,142.446660458882,115.14237358974363,2.04402381948718,6.450846153846155,2.8043420913791284,7.734496256410253,284.71060374461274,25.691176470588236,6.245264705882355,3.7941176470588234,5.0359477124183005,151.97625795647463,97.30833169117646,1.7869934867219706,6.396450000000001,2.6913882837085454,7.794272205882352,241.49229753049235,22.647058823529413,6.100858823529413,3.4,4.184313725490196,152.32192296723144,83.80391230588236,1.6489765507151999,6.262243529411765,2.5215081094166063,7.695839129411764,215.76864779765106,20.298969072164947,6.089761855670105,2.979381443298969,3.512027491408935,155.8080404141472,73.46660604123711,1.4540508633096596,6.244841237113403,2.5910228670824313,7.735330103092782,190.4245077175919,20.443298969072163,6.248505154639177,2.7422680412371134,3.3757159221076747,160.5238139589368,75.63407706185566,1.3503538555389896,6.366894845360824,2.982404225531373,7.888910164948455,184.76339256665815,19.417582417582416,6.076384615384615,2.5164835164835164,2.8986568986568986,155.16014955166793,69.46763815384614,1.4836691461152745,6.236483516483518,2.7756975534753314,7.751097912087911,189.71792403508272,16.7,5.727222222222223,2.088888888888889,1.6123456790123454,160.57387728494362,59.1584801,1.2892225147785998,5.876976666666666,2.1556812985825333,7.486480355555554,153.3875651891189,17.89830508474576,5.494308474576273,1.9322033898305084,0.8392969240426866,161.18824401186353,65.2723229661017,1.3382182856581188,5.635666101694915,1.7872249734564025,7.278055305084747,143.5259755082134,14.89700511322133,0.10198845872899924,0.01603832663344299,0.5975164353542731,3.6413169926683437,1.49534369058979,68.05514415339663,0.3309304561908428,0.10707377647918183,1.1053018316948917,0.07541216216216218,54.33526657428627,0.633140416924201,0.002969129628589081,-0.006687658075646937,0.23339139555355784,0.79341688650998,-0.17635383773732455,2.9440980766796043,0.0013845811649658335,0.003812987207581766,-0.006482478417376277,-0.0010128205128205143,0.27655201639460514,0.16778026038757368,-0.00012987367335538566,-0.0026868929250941733,-0.002126928200060137,-0.16943334431410728,0.2545064585734362,1.0091295854745914,0.05083920181935658,-0.0016724251278305558,0.06513880683761347,0.001067205882352943,5.398448698808192,-1.3939844454947792,0.009698918059553986,0.002517620384789447,-0.12025093455936063,-0.07915483050618174,-0.18439440278924962,-6.270727074859274,-0.038521183419172336,0.005764220341167869,0.05267793456374196,0.0037232941176470586,-6.812425872785125,-2.1494431182366545,-0.00203317870670894,0.0001447747445692124,-0.1035069619633565,-0.2055994882223172,-0.4085444733153563,-9.82859353651171,-0.08660536520715251,-0.0026002183850052443,-0.027302127353496033,-0.004080474226804121,-10.105297656931754,0.7566588600302727,-0.015843125767171458,-0.0006065235748439539,-0.06422025257355432,-0.7594901486421873,0.24105390610360586,3.5253382046418107,0.03232679570094025,-0.009263913007462758,-0.1490580842352431,-0.003942123711340201,4.161032837320129,-2.776719992936209,-0.022912010852551377,-0.0009740379587401811,-0.03410687194470978,-0.4171917685431199,-0.11789340504563074,-12.953889139140626,-0.03425508715696769,-0.026884824890230287,-0.11216461633545385,-0.016985120879120873,-9.975356127737449,0.588580472364256,-0.0025613716419121834,0.0008315108498304989,0.03731839948056164,0.006315825334844208,0.03388281398091813,2.327078292549298,0.001117081153796673,-0.0025648575602629418,-0.08136789547243212,-0.0005591777777777825,1.8104040904514882,4.268363645367769,0.006522489507372696,-0.00022334362437451117,0.02547944187889217,0.08704979219561579,0.12094560825197269,19.210019790716952,0.08117627479690277,0.009284766809869921,-0.015084565534261915,0.006194423728813552,8.54097535829952,,,0.5054421768707483,1.2023809523809523,0.5714285714285714,0.023809523809523808,0.6309523809523809,-0.05952380952380952,0.848822146991226,0.010071664855517207,0.022357379141231492,0.7999767518694417,0.2370911651593455,0.2487521015267133,1.6487988988606677,0.48584326668605876,2.042515749005773,1.580973343344965,0.10776576374221339,0.1721990386573126,0.08455244404572196,0.4615424056608074,8.677271011675687,1314.0,225.32740000000004,126.0,254.04938271604937,5845.0239992599845,5317.161111000002,67.39501447758398,231.03080000000003,133.8976146928822,285.86822199999995,9050.454261214294,1164.0,244.04999999999998,161.0,244.7777777777778,5555.419757896399,4490.552570000002,79.71692896000002,251.58300000000003,109.36934156378601,301.6453539999999,11103.713546039897,1747.0,424.6780000000001,258.0,342.44444444444446,10334.385541040274,6616.966554999999,121.515557097094,434.95860000000005,183.0144032921811,530.01051,16421.47623207348,1925.0,518.5730000000001,289.0,355.6666666666667,12947.363452214673,7123.3325460000015,140.16300681079198,532.2907,214.32818930041154,654.1463259999999,18340.33506280034,1969.0,590.7069000000001,289.0,340.6666666666667,15113.37992017228,7126.260786,141.042933741037,605.7496000000001,251.32921810699585,750.3270199999998,18471.177248606415,1983.0,606.1050000000001,266.0,327.44444444444446,15570.809954016871,7336.505475,130.98432398728198,617.5888,289.2932098765432,765.2242860000001,17922.04907896584,1767.0,552.951,229.0,263.77777777777777,14119.573609201781,6321.555071999999,135.01389229648998,567.5200000000001,252.58847736625515,705.3499099999999,17264.331087192528,1503.0,515.45,188.0,145.1111111111111,14451.648955644925,5324.263209,116.030026330074,528.9278999999999,194.01131687242798,673.7832319999999,13804.880867020702,1056.0,324.1642000000001,114.0,49.51851851851851,9510.106396699948,3851.0670550000004,78.95487885382902,332.5043,105.44627343392774,429.40526300000005,8468.032554984591,551.1891891891892,3.7735729729729717,0.5934180854373907,22.108108108108105,134.72872872872873,55.327716551822235,2518.0403336756754,12.244426879061185,3.961729729729728,40.896167772710996,2.7902500000000003,2010.4048632485922,24.69247626004384,0.11579605551497416,-0.26081866495023054,9.102264426588755,30.94325857388922,-6.877799671755658,114.81982499050457,0.053998665433667506,0.14870650109568886,-0.2528166582776748,-0.039500000000000056,10.7855286393896,11.40905770635501,-0.008831409788166225,-0.18270871890640378,-0.1446311176040893,-11.521467413359295,17.30643918299366,68.62081181227222,3.457065723716248,-0.1137249086924778,4.429438864957716,0.07257000000000012,367.09451151895706,-118.48867786705623,0.8244080350620888,0.213997732707103,-10.221329437545654,-6.728160593025448,-15.673524237086218,-533.0118013630383,-3.2743005906296485,0.48995872899926884,4.477624437918067,0.31648,-579.0561991867356,-208.49598246895548,-0.1972183345507672,0.014043150223213603,-10.04017531044558,-19.943150357564768,-39.62881391158956,-953.3735730416358,-8.400720425093793,-0.2522211833455087,-2.648306353289115,-0.39580599999999977,-980.2138727223801,73.39590942293646,-1.5367831994156314,-0.058832786759863524,-6.2293644996347695,-73.67054441829217,23.382228892049767,341.9578058502556,3.135699182991204,-0.8985995617238876,-14.458634170818582,-0.38238599999999945,403.6201852200525,-252.68151935719504,-2.0849929875821753,-0.08863745424535648,-3.1037253469685897,-37.96445093742391,-10.728299859152397,-1178.803911661797,-3.11721293128406,-2.446519065010956,-10.2069800865263,-1.5456459999999994,-907.7574076241078,52.97224251278304,-0.23052344777209652,0.0748359764847449,3.3586559532505476,0.5684242801359787,3.049453258282632,209.4370463294368,0.10053730384170056,-0.23083718042366475,-7.323110592518891,-0.050326000000000426,162.93636814063393,251.83345507669839,0.38482688093498907,-0.013177273838096158,1.503287070854638,5.1359377395413315,7.135790886866388,1133.3911676523003,4.789400213017264,0.5478012417823254,-0.889989366521453,0.3654709999999996,503.9175461396717,0.7056964989228289,0.6326247949873324,0.44359602610466237,0.35119098767820395,0.2785210357644241,0.20139273400728896,0.17835918176101156,0.11804093975622791,0.11230236813465265,0.06725269410472244,0.07401102381103594,0.038964619852438306,0.0468188937566693,0.023731121215137402,0.02965979771697839,0.013727533711104333,17.0011037001977,5.6937723805427325,3.55546431924187,2.190466660371835,0.4533562370185453,-0.49862595980399693,3.222762640005435,0.9776738126212621,6.028080771082463,0.6503176423268252,14.543273400913447,10.311398790714303,35.4505174973106,11.705005219857423,2.9363848879225607,0.7409900766188257,3.501581901693866,2.241445114723117,7.008271017619837,0.6099586082744322,3.7144958853637227,2.437687767953452,24.440718479213643,14.701393115147747,0.3088101269949973,0.641791335388258,0.828673405802883,0.8858078668623702,0.8956504560769609,0.8956504560769609,1.719336646984613,655.2314628845675,0.0,2.0,2.0,0.0,7.0,2.0,2.0,0.0,0.0,3.513513513513514,1.6848296331793886,0.6585007561243303,0.3447266892476577,0.29067263519360687,0.29067263519360687,62.88725940927398,786.8043272879331,41.08138406553796,21.264981818592787,43.855839541910974,,9.0,323.0,6.041840829147961,4.794537184071822,5.969305287951849,5.022633313741326,25.073785926448156,17.55039622667583,11.336785877934737,24.26546827384644,16.346339569778003,16.337802844032566,10.614285714285714,25.25,12.0,0.5,13.25,0.00544217687074828,0.0,-1.25,0.16264642366337273,0.06489772447219244,-0.09774869919118029,0.0,0.1104256701868398,0.0,0.6050193050193052,0.8374149659863944,0.4423728813559325,0.5401215805471128,0.8374149659863944,17.825265086815747,0.21150496196586133,0.46950496196586133,16.799511789258275,4.978914468346256,5.223794132060979,34.62477687607402,10.202708600407234,0.6035743298131602,0.14580529385374608,0.0,0.3203230148048452,0.3125,0.4386689637691422,-0.6732111151498315,-0.046410207980242306,-0.018194895004049493,-0.048086508224987945,0.5613310362308577,0.8614566428913355,0.03371934061845942,0.02328261197003609,0.037454636647449364,-4.160766406823603,0.6162898590083057,0.6764615236964189,1.4315258767045405,0.7097987586985144,0.6335406424563444,1.1748476131546965,0.6140365039243715,0.8527707822708878,0.6326490665368033,0.5551410358028237,0.6741237137560048,0.875357296755432,0.7832796843362234,1.0052315757640764,1.4079074890289822,1.221271393643032,1.102408856613659,0.9182156332391651,0.7756113583523659,0.7562285644552972,0.9453891926251481,0.5985096482510511,0.8988760020449355,0.7973015096749135,0.9919941851409584,0.7691957970277269,0.8842312121251276,1.4080540773766723,0.9859948306409951,1.1559434836988864,0.9880276252731272,1.0625601411985588,0.8031785830088187,0.7812828033932203,0.7890305507096662,1.0604880878740244,1.1264865651813905,1.0610480562369435,1.1420655834027824,1.2674362916845212,1.0653965212523835,1.2631751785917327,1.1273932975204703,1.2087651128670271,1.0554808586582918,1.1962729040864497,1.0990360062699918,1.1297144375723869,0.7571632651204265,1.6710985626351595,1.4811365497281472,1.1163511708214657,1.4180800939488274,0.7792529110764602,0.7714402797870236,0.6967538113595765,1.484122119065048,1.7935748674713627,1.5237699463429815,0.8231440383163765,1.171333520848084,1.3553132967094357,1.0650887820660067,0.903651360864075,1.1011318206141156,0.9844187157038855,1.183510382605776,1.0187641578008053,1.378413892225768,1.3901910738067091,1.4331169584827856,1.132888216160439,1.0718642738060213,0.8722078580626864,0.5706634193238772,0.7146699266503669,0.8844292217087439,0.862492253905051,1.08330047454726,1.0063260897177866,0.9580562680783713,0.9329879507417077,0.9344013618851357,1.0103910157655764,0.8861579427648212,0.5066160257308407,0.4013241083345106,0.6899838382164023,0.7653797749062277,0.850491337046414,0.8811075221120012,0.9165417326174411,0.6000768692122614,0.5099847146191382,0.5107376138764067,0.9502796067970144,3.5,0.0,2.666666666666668,1.7569444444444446,1.3105555555555557,0.6144444444444443,0.5558276643990931,0.2986465419501133,0.09602544721592338,0.006558641975308643,4600.413360706974,5078.371690838858,2119.59910658419,1960.7860839423122,10.23111851481814,0.42740566069239333,5.858280546370115,0.7464371045114093,1.0,0.3125,1.6959398521154363,3.5246237324495615,4.55095260950462,4.864726676381292,4.918780730435343,4.918780730435343,0.15217391304347824,0.0,0.08333333333333337,0.05324074074074074,0.040954861111111115,0.019201388888888886,0.020586209792559002,0.015718239050005967,0.009602544721592339,0.0032793209876543217,0.398090551669364,15.879017013232515,7.05078125,3.347107438016529,132.6508493554586,1.0,3.981091936496731,85.17743476715314,,67.03855796248916,68.47381038785561,68.56261647218084,67.02293075560974,92.09719664739885,68.9389973082761,69.28457240105979,83.39764399586964,0.04250118813225611,0.02911240806647119,-0.4169797902545447,0.390602470064573,0.21789283605560716,-0.11793532072066153,0.043260478150536165,0.004183903714704836,0.03561084079558097,-0.005864894304423539,-0.013430466436469501,0.005089733313749511,0.011262683949719935,-0.0012734153939955323,-0.16752950519734927,-0.0035596145548683717,-0.046530786705814134,0.1701993061361394,0.01482811619941629,0.15362503168955335,-0.015619371827757682,0.05893304884669225,0.014151641482683946,0.09935441637021367,-0.09357481150742143,0.09509819228983221,0.1569752532374372,-0.20125125844959016,-0.021737967517125548,-0.12331238895087804,-0.09214185279991509,-0.11640265408801698,0.053834099540596626,0.04765932078748532,0.04937259469686987,-0.12537761020223007,-0.14428692894311956,-0.019935380258186305,0.009026798610481548,-0.17322864416605754,-0.05646294696020261,-0.27321108577668796,-0.14442102296276108,-0.26170261330437483,-0.024284362338810383,-0.024701060443942637,-0.05410896743723769,-0.18598045604719649,0.0507926831117703,-0.15534233936478392,-0.03781713570911043,-0.10747863786454263,-0.20857567472741112,0.1612030114685741,0.05180120104801601,0.0976845590854226,-0.08651897142400618,-0.13485735747553632,-0.05227437588731741,0.07658070162647006,-0.1863945116372301,-0.22465297679840918,-0.06073189435543262,-0.05708106074854241,-0.11457166991589032,-0.0788403400419147,-0.19034401146726684,-0.1035114372707155,-0.2510869213196889,-0.10147872112313286,-0.2252305250524047,-0.183588979251612,0.03950998659736523,-0.025114328364527847,0.0518452372766021,0.06245585438739474,0.0017344892926270594,0.02265888049292143,0.034194010188326865,0.0033755767500361715,-0.023954115046662453,-0.07361599622761954,-0.007414954852711388,0.03331913515094904,0.28652495001022243,0.06395321185021598,-0.01392561889273391,0.042642244415896556,0.02390612857130739,0.08088147829364203,0.2822713849142318,0.24529708063524253,0.08671373248589155,-0.013647462712633835,0.08214091137571952,0.15719027248393896,9.747036235804174,16.98594872931071,5.757779244560663,21.928085600189174,39.56672667750574,44.05372224342125,44.96476325958969,45.019249746076184,45.019249746076184,42.89283072912123,33.20044021024427,2.2630810385864812,3.616179811803564,1.775601324960161,9.692390518876955,3076.461839478266,2370.574477626965,1485.724379826931,63.0,32.0,44.0,58.0,69.0,70.0,80.0,88.0,74.0,321.05902743200045,23.0,4.709530201312334,5.572154032177765,6.456769655572163,7.338888133838879,8.229777750081887,9.117896081584902,10.010681386638243,10.901118611350125,11.794541677234303,0.7567567567567568,0.978810810810811,1.1109053740827315,0.724153759954276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7310679397960838,0.9714891361950182,1.0072833211944652,0.6702728337945109,6.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,4.736862953800049,6.041840829147961,0.0,0.0,0.0,4.899909730850478,4.794537184071822,0.0,11.336785877934737,29.800041095617345,35.06052151370914,22.989293319267777,7.109797541277533,224.899908877356,-345.1466389404747,-23.793913879963128,-9.328287538931747,-24.653331352891044,287.78716828663,441.6576883474585,17.287470185574836,11.936694279661038,19.20250818901993,0.4444444444444444,0.932829891050734,0.30468234155724516,5.503353679685184,0.21327184846540906,7.864429474566064,0.06717010894926591,5.0,0.13043478260869565,0.32555044322019405,0.6765822601857623,0.8735950377310215,0.9338267059799205,0.9442028530073014,0.9442028530073014,3.6739000000000024,,1.9149159663865545,0.8491139337887321,0.6162783745398974,1.9275748063903695,-2.024687461697199,0.8832919526517209,0.9183928703714531,-0.8764460794504028,84.64200000000004,9.53140013787187,0.0,4.899909730850478,0.0,19.007418857986547,13.65455394719011,56.73858160361058,0.0,0.0,3.8501476017100584,0.0,5.1647859739235145,2.3978952727983707,6.688354713946762,4.59511985013459,8.307705966549513,6.580639137284949,9.976598599353451,28.000000000000004,11.716507000433918,0.0,0.0,0.0,1.783330927535623,0.0,4.120317486562527,0.0,36.21600000000001,0.0,12.294248472537163,0.0,0.0,0.0,0.0,0.0,-0.2622411186696898,41.10349884106107,0.0,0.0,0.0,24.523768965992435,22.496978166710456,0.0,22.045891006243252,35.711898112773966,5.022633313741326,0.0,0.0,26.79368911830821,27.0495137724551,27.584895284834825,170.35486953430632,,134.25005992839098,136.86675278201704,137.06653976583402,134.21726642910005,185.11897123569466,137.79387157344252,138.48167881446517,167.04570115729655,27.584895284834825,170.35486953430637,,132.6998898603638,136.09850684192253,136.50895456982173,132.6568487286887,186.27424474224836,136.99470266390054,137.65075193174823,167.67173407118966,4.860804459266735,120.69805182714552,,97.52868937323885,98.24767743524995,97.67545226849593,97.51730225366597,134.8025566471481,99.12340297603308,99.83940685823067,122.208617936006,1.3135664421349917,8.112136644490777,,6.392859996590047,6.517464418191288,6.526978084087334,6.391298401385717,8.81518910646165,6.561612932068691,6.594365657831675,7.954557197966502,2.4433227757853833,85.17743476715314,,67.03855796248916,68.47381038785561,68.56261647218084,67.02293075560974,92.09719664739885,68.9389973082761,69.28457240105979,83.39764399586964,35.94509803921567,0.0,1.4227629230704628,6.28597472425184,0.0,0.0,0.0,37.26948288419521,2.548882196397077,0.0,5.007809980473671,0.0,-0.4474537037037043,2.140972222222222,0.0,0.0,0.0,24.800094850396903,478.24983033400036,62.749774528271146,130.41107810063377,168.38524655167095,179.99488702610782,181.9948870261077,181.9948870261077,622.0,118.13135752979059,34.43724682998564,68.5612471157012,57.78,29.54,0.8,7.764043851519885,5.523561956057013,4.1698313136443375,4.517658202396958,,4.533062738028119,4.527105283745965,4.523256161987021,4.533054978626439,4.508974856318787,4.527938465319119,4.528729360123798,4.524373938382694,0.1985633958878256,0.2151265810665218,,0.21586013038229138,0.2155764420831412,0.21539315057081052,0.2158597608869733,0.2147130883961327,0.21561611739614853,0.21565377905351418,0.21544637801822353,2.1698129273584,2.2499311075001556,,2.2533351568808904,2.2520200697596735,2.251169469037459,2.2533334451445284,2.248007167820727,2.2522040957232345,2.252378750424485,2.25141655615065,228.2299999999998,124.68279219660369,113.82847406349694,,111.941153505127,112.70939123971233,113.1235541046088,111.9319297496891,113.81653102698344,112.61755972095254,112.54064724663765,112.89861483268831,5.937275818885889,5.420403526833188,,5.330531119291762,5.36711386855773,5.386835909743276,5.330091892842338,5.4198348108087355,5.362740939092978,5.359078440316078,5.3761245158423,5.567710194281535,5.476630046578221,,5.459910662812779,5.466750091848313,5.470417965272062,5.4598282611653,5.4765251197293345,5.465934996064586,5.465251809976525,5.468427546834427,5.007809980473671,15.846354429117326,2.7088877690994093,2.108243417737466,-0.2622411186696898,9.161105862097925,0.963240976946334,1.5856412194507432,1.4227629230704628,272.90139900470393,115.30327693677845,-176.9522215113656,-12.198832161409895,-4.78249247328015,-12.639444393668967,147.5447621541725,226.43218934586113,8.863062561001914,6.11978890123949,9.844877797646134,867.0,33.0,1.2185983953900972,0.8073268643152428,0.0,0.0,0.3590422750483166,0.2046098683110083,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.10206207261596575,0.3180413817439771,0.21164381582728894,0.4329182633268859,0.27592731901564266,14.819626477379408,13.28512069473398,10.202708600407234,8.077392716598691,8.912673144461571,6.444567488233247,7.847803997484509,5.193801349274028,6.513537351809854,3.900656258073902,5.10676064296148,2.6885587698182434,3.2773225629668508,1.661178485059618,2.3727838173582714,1.0982026968883467,3.280191620264456,2.003204096672662,5.488065717169553,2.8508920779446374,8.523556891504713,3.7283660015115143,67.84921820357737,37.57918215719883,26.921385098234136,24.806914865891315,24.63343090018164,24.63343090018164,110.0,131.0,45.17268799999999,23.335312,0.43243243243243246,109.05,6.527777777777778,4.722222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,37.0,0.0,1.0,39.0,11.0,1.0,6.0,33.0,12.0,23.0,27.0,0.0,0.0,0.0,16.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,4.0,0.0,2.0,21.0,5.0,0.0,1.0,2.0,0.0,3.0,3.0,1.0,0.0,1.0,1.0,2.0,3.417726683613366,6.217291993551349,3.965563772356176,4.49003987873446,4.988304473611242,5.291103912029735,5.358647827456335,5.662417798188509,5.981098504858804,6.057442461509355 +5462501,C[C@H](N[C@@H](CCc1ccccc1)C(=O)O)C(=O)N1CCC[C@H]1C(=O)O,0,22.244897959183675,6.301220408163265,2.979591836734694,7.26530612244898,164.69507373131586,87.61983300000003,1.357284279926041,6.3440040816326535,6.223356009070295,7.8394750204081625,202.81421079786557,23.5,6.395580000000001,3.7,6.24,147.94602312869003,88.21716307999998,1.71383077564,6.52588,3.3083333333333336,7.82725504,251.1086444792221,19.471910112359552,6.259943820224719,3.269662921348315,4.764044943820225,155.05029229426287,71.44821634831462,1.4542695443684492,6.356385393258425,3.48689138576779,7.74094593258427,204.25273349084327,15.19047619047619,6.164205555555555,2.6904761904761907,3.2222222222222223,162.98511919027285,53.62159465873015,1.2000434342319444,6.224076190476191,3.1016313932980597,7.721882507936508,162.42074703194316,14.646153846153846,6.2420923076923085,2.4615384615384617,2.9,163.52142266896865,50.99863096923077,1.1334571049082613,6.294661538461538,3.2950854700854704,7.833997476923077,156.6139322561111,14.423076923076923,6.279161538461539,2.3076923076923075,3.1769230769230767,163.74157872029446,49.84862366153846,1.105242515809423,6.324828461538461,3.883333333333333,7.872114092307692,151.02243904721658,13.371212121212121,6.1268712121212126,2.2196969696969697,3.128787878787879,167.19274887652546,46.51951174242424,1.0366080846599317,6.163216666666667,3.7207491582491583,7.735704969696968,138.03442467657038,13.222222222222221,6.087811965811967,2.282051282051282,2.8034188034188032,165.85283277461082,45.9483522051282,1.0681282691428633,6.1342863247863235,3.158357075023741,7.716159111111111,144.88068132849153,14.627450980392156,6.19749019607843,2.2254901960784315,3.215686274509804,161.53271527824631,51.047953039215685,1.1134331387630294,6.255892156862745,3.5724400871459703,7.797864078431374,153.51204972388675,7.835901707621824,0.15891570179092038,0.0289000484770837,0.5739275301957518,4.039983340274884,1.3737250854114942,37.06512112952936,0.21922935511428568,0.14695268638067466,2.72365680966264,0.10267600499791751,48.35173006705164,-0.05018742190753892,-0.013558885464389775,-0.018758412082813546,0.14974593919200335,0.9167513536026654,-0.12146463367844279,-0.1497377352436552,0.005095694981949375,-0.01128272719700123,-0.16985862372159743,-0.00951031683465223,1.1843689963691055,0.10149797135088817,0.02767682285938913,0.0007859224380533871,-0.07564731923496294,0.28104394704453656,-0.21811741358600498,0.28329446414181075,-0.02553637446925935,0.02370489215635808,0.505533742962904,0.020298938363696766,-4.98210480821938,-0.1954741080105512,0.01243135036327456,0.0054862326431809666,-0.07392753019575175,-0.37979545559720485,0.13751703305219692,-1.01603941832107,-0.008396797968871888,0.009356351520199922,-0.03289717247443196,0.008231207830070803,-2.6415347538701393,-0.8450068881555762,-0.03107953224617944,-0.00512290239468199,-0.07220068561176433,-0.823499823791369,-0.05345841779462173,-3.900197745227951,-0.010289897062066872,-0.027418086694646446,-0.5467032077090386,-0.02055242823182648,-2.349714212948501,-1.0096850671194695,-0.015553033031108788,-0.0022424363536377094,-0.02322109377502964,-0.28409637010220096,-0.20488198774707486,-4.775478494521513,-0.020703697004606433,-0.015251352000768888,-0.10475745504900015,-0.008410838906865736,-5.860725419788375,0.5761267401209094,0.022849387881312064,0.006617414227869333,0.042800979389900656,0.4357433140231974,0.09957166927520134,2.642958540074845,0.006238853494102505,0.02007121590751328,0.34450353528341865,0.014935331427561744,1.5543694134483317,0.24869623411897473,-0.021067419914067145,-0.003704096893810566,-0.005115389955040106,-0.15719945749100261,0.14196109375167434,1.3446197459285125,0.02468147534749747,-0.016876618004606353,-0.3532525225916867,-0.015566910980823512,5.883231367582929,-0.5121722158251055,-0.01826800271128858,-0.003438236247802168,-0.067524969171342,-0.17923904255579778,-0.28015608096734707,-2.445044368224841,-0.039937851659803715,-0.014984178977713534,-0.3588886801886287,-0.014469801716605009,-5.81145281412417,,,0.45866666666666667,1.04,0.42,0.0,0.62,-0.2,0.9495048233574163,0.02069835827431078,0.027578358274310776,0.8449842725390774,0.20666470548561747,0.26920547873499556,1.7944890958964936,0.47587018422061306,1.9812620151678813,1.4689775719655491,0.1681234316627751,0.34416101153955675,0.0,0.5122844432023319,7.1054800381224625,1090.0,308.7598,146.0,356.0,8070.058612834477,4293.371817000001,66.506929716376,310.8562,304.94444444444446,384.13427599999994,9937.896329095413,1175.0,319.77900000000005,185.0,312.0,7397.3011564345015,4410.858153999999,85.691538782,326.294,165.41666666666669,391.362752,12555.432223961105,1733.0,557.135,291.0,424.0,13799.476014189395,6358.8912550000005,129.42998944879199,565.7182999999999,310.3333333333333,688.944188,18178.493280685052,1914.0,776.6899,339.0,406.0,20536.12501797438,6756.320926999999,151.205472713225,784.2336000000001,390.80555555555554,972.957196,20465.01412602484,1904.0,811.4720000000001,320.0,377.0,21257.784946965927,6629.822026,147.34942363807397,818.3059999999999,428.36111111111114,1018.419672,20359.81119329444,1875.0,816.291,300.0,413.0,21286.405233638277,6480.321076,143.681527055225,822.2276999999999,504.83333333333326,1023.374832,19632.917076138154,1765.0,808.7470000000001,293.0,413.0,22069.44285170136,6140.57555,136.83226717511099,813.5446000000001,491.1388888888889,1021.1130559999998,18220.544057307292,1547.0,712.2740000000001,267.0,328.0,19404.781434629465,5375.957208,124.971007489715,717.7114999999999,369.5277777777777,902.790616,16951.039715433508,1492.0,632.1439999999999,227.0,328.0,16476.336958381125,5206.89121,113.570180153829,638.101,364.38888888888897,795.3821360000002,15658.229071836447,383.9591836734694,7.7868693877550985,1.4161023753771014,28.12244897959184,197.95918367346934,67.31252918516321,1816.1909353469387,10.742238400599998,7.200681632653058,133.45918367346937,5.031124244897958,2369.2347732855305,-2.509371095376946,-0.6779442732194887,-0.9379206041406773,7.487296959600167,45.83756768013327,-6.073231683922139,-7.48688676218276,0.25478474909746873,-0.5641363598500615,-8.492931186079872,-0.4755158417326115,59.21844981845528,9.033319450229047,2.4632372344856326,0.06994709698675144,-6.7326114119117015,25.012911286963753,-19.41244980915444,25.213207308621158,-2.2727373277640823,2.109735401915869,44.992503123698455,1.8066055143690123,-443.40732793152483,-24.629737609329453,1.5663501457725946,0.6912653130408017,-9.314868804664721,-47.85422740524781,17.327146164576813,-128.0209667084548,-1.0579965440778578,1.1789002915451903,-4.145043731778427,1.0371321865889211,-332.83337898763756,-109.8508954602249,-4.040339192003327,-0.6659773113086587,-9.386089129529363,-107.05497709287796,-6.949594313300825,-507.0257068796336,-1.3376866180686933,-3.564351270304038,-71.07141700217501,-2.6718156701374425,-305.46284768330514,-131.25905872553102,-2.0218942940441424,-0.29151672597290224,-3.018742190753853,-36.932528113286125,-26.634658407119733,-620.8122042877967,-2.6914806105988363,-1.9826757600999554,-13.61846915637002,-1.0934090578925457,-761.8943045724887,76.04872969596003,3.0161192003331925,0.8734986780787519,5.649729279466887,57.518117451062054,13.143460344326577,348.87052728987953,0.8235286612215307,2.649400499791753,45.47446665741126,1.9714637484381503,205.1767625751798,29.097459391920044,-2.464888129945856,-0.4333793365758362,-0.5985006247396923,-18.392336526447306,16.609447968945897,157.32051027363596,2.887732615657204,-1.974564306538943,-41.33054514322735,-1.821328584756351,688.3380700072026,-52.24156601416077,-1.8633362765514352,-0.35070009727582113,-6.887546855476884,-18.282382340691374,-28.5759202586694,-249.3945255589338,-4.073660869299979,-1.5283862557267804,-36.60664537924013,-1.475919775093711,-592.7681870406653,0.7358790698627614,0.5688288686936485,0.4575674848275125,0.32534919234297627,0.3045775835100408,0.18089564776358735,0.19399701790341875,0.10477109067226895,0.12522107530247306,0.06285610567899484,0.08563698522535652,0.03494799198022664,0.05489135657488159,0.02012916274565431,0.03365409181523436,0.012070412596232559,8.03144249250709,5.694126790215715,3.5579118437208797,2.194123127376808,0.45717065332939616,-0.4008540390044607,3.1901681437218015,0.9715293622951391,6.0245131519342445,0.9939460215771164,14.543794149701013,10.954429792500303,16.016659832044976,11.705129384088439,1.9819077923500534,0.740442336044112,3.5040688777868554,2.2441220493928635,7.010471582486383,1.2480478558869117,3.7169431144080214,2.4401216269670547,20.891083791144702,14.699772941011094,0.26853137053562204,0.5891081264354783,0.7792254693503339,0.877181136564801,0.9079474967944654,0.9149758818472858,1.8421264457294526,619.152256622041,0.0,3.0,2.0,0.0,5.0,7.0,1.0,0.0,0.0,4.0552528677082895,2.1935498664360007,1.0894709792909003,0.5206076531495283,0.34193647963598917,0.30112015310537643,122.30008696018254,1599.3411853433365,79.43307451768639,32.63961602741503,66.1633228696189,,13.0,524.0,30.064133063347583,24.596666341896878,5.907179729351506,32.22804289761662,5.563451491696996,4.899909730850478,6.923737199690624,30.33183534230805,5.316788604006331,0.0,11.466666666666667,26.0,10.5,0.0,15.5,0.0,0.041333333333333326,-5.0,0.16165315441244976,0.03257884972170688,-0.12907430469074288,0.06271428571428561,0.19592771084337324,0.0,0.5986394557823131,0.8853333333333331,0.4369863013698634,0.5660606060606063,0.8226190476190475,23.737620583935406,0.5174589568577694,0.6894589568577694,21.124606813476934,5.166617637140437,6.7301369683748895,44.86222739741234,11.896754605515326,0.5180722891566267,0.188953488372093,0.0,0.34011627906976744,0.5,0.39107414495135884,-1.1141263175227871,-0.0878756554873336,-0.022737271786179326,-0.06189590652904372,0.6089258550486412,1.734761372716516,0.05361754825500501,0.035403293320745224,0.055960044281177936,-1.8589904446641294,0.8550908897629425,0.779860518727759,1.6383359613293698,1.0240928882438314,0.5479917525773196,1.4052550340639687,0.8616524411080488,1.1953155752364697,0.7675473353713113,0.6854530162856487,0.7863341168749527,1.072008045744643,0.8666651537284571,0.528412439812558,0.8297173195214396,1.4383327082076283,0.7737379821614735,1.3736904478881413,0.8795695448847782,1.221435500344337,0.5464576294953553,0.3974899866641582,0.46759328444294324,1.1500304603684997,0.9738138265830409,0.792134465327905,0.7248228449896421,1.2733430091920654,1.0536082474226804,0.9654471490119112,0.9789428440679968,1.0228820968619747,0.8106798657194396,0.792704165286167,0.75384790587047,1.0382887514510355,1.1087717002886557,1.2834576291715811,1.202452331659431,1.221033828290722,1.2617985725614593,1.0249816893448396,1.1037912191684203,1.0130892607227782,1.2651699684283337,1.3436164060217888,1.3021140566431921,1.007887979611696,1.1405058426212884,1.23075589269365,1.129684774926327,1.0437869822485206,1.1116510705789058,1.1175488666450513,1.1370540392452928,1.0522562428253543,1.2245891948743208,1.2335280082967217,1.2371244410317692,1.0723532386601693,0.929076026556626,0.8713853152633665,0.780003569930276,0.8663412059638472,0.8918275538894097,0.8696876233592247,0.9300064042826378,0.8900970216369886,0.8800530479566533,0.8445437631919779,0.8517445641733778,0.9167500546196952,0.9733940627955723,1.1725511382610752,1.1623204874843183,1.00658702690633,1.0579751519957705,0.8174680448554521,0.967128309214519,0.8316022462757342,1.1546884050586932,1.1818332121107564,1.1964588499895445,0.840887150168219,1.061387327334463,1.1925565834639416,1.2577338652185825,1.0123794074959445,1.0459672528805337,1.1526626893689884,1.0598954807044392,1.180049718714028,1.1721570043438934,1.2820741926762809,1.2550817994589805,1.1012824749651002,5.0,0.08958677685950414,3.1111111111111125,1.4930555555555556,1.5211111111111113,0.861388888888889,0.4350566893424036,0.421875,0.36107174351221966,0.11530864197530868,4887.498795346137,5621.038558299371,2314.1200620157015,2063.345560755234,11.933684759869772,0.4459117304948188,6.612314737416596,0.8047665959307033,1.0,0.5,1.5594569764069188,3.4211599776792077,4.525238864824308,5.09410219096568,5.272773364479219,5.313589691009832,0.1923076923076923,0.006399055489964582,0.08888888888888893,0.04265873015873016,0.04473856209150327,0.02691840277777778,0.014501889644746788,0.015066964285714286,0.013887374750469987,0.006068875893437299,0.4514364362889254,21.301775147928993,10.364081632653061,6.282314764737696,146.1876069970618,1.0,4.116956780310443,134.95975051801656,,117.5905284975602,115.35979028699403,114.30586426031599,117.61215352092921,157.98192785960703,116.68050552071549,117.72124247125596,143.6972784574961,-0.006404804932497127,-0.08532124460695965,-0.6490789140955259,0.2609143686502177,0.226919587628866,-0.08841989927122755,-0.004039855548303088,0.02324367090024489,-0.07677795809580376,-0.062364180068132956,-0.09262453126068862,0.024494862846203943,0.012952940853273226,0.17416040421104845,0.027194502413260116,-0.13180639585133963,0.06956562029421984,-0.15877806695265287,0.007643154952921853,-0.11648245945871197,0.16130968912641425,0.18560845888124974,0.1976989498579388,-0.10303881166838205,-0.02494596222671061,0.0782260671738406,0.1898347211262042,-0.12880986937590708,-0.09400916380297826,0.10010520628368974,-0.027412278372715284,-0.03830143077552084,0.0636691424337946,-0.012078310438276802,0.08016681044648892,-0.054631649171746226,-0.10783786214848191,-0.19557244435839105,-0.1772627612975873,-0.12580104945852405,-0.20383743061062654,-0.03891493164267905,-0.10522554969126238,-0.04693667532207391,-0.18657764869722127,-0.20072396998385225,-0.20016778245553404,-0.048596280002598476,-0.12885371777154492,-0.09786970611356799,-0.07759282325826719,-0.04045997543820476,-0.07032117367168914,-0.14914336931228364,-0.12884022361165154,-0.09443852532346073,-0.10378409797328177,-0.03846206125432363,-0.08191630466179829,-0.12121025269749457,0.07352398761721608,0.14378307255864606,0.22897588677460567,0.0745755816510533,0.10785770071852549,0.07248296644839605,0.07130581148888328,0.02845811178366214,0.13658284446409952,0.12648566223954252,0.14546077662317175,0.032147131266922896,0.031738049225027015,-0.13256978181919862,-0.1281692277003525,-0.008912954486249123,-0.03891091726143272,0.10334024999561717,0.03627722519048425,0.11258289445147918,-0.11484388901124404,-0.1296978831321416,-0.15161196602009633,0.12167571583114756,-0.06536225630892305,-0.11495404485154731,-0.1189699128196452,-0.11765417342553855,-0.04436628259551243,-0.2039389714452418,-0.06596617773567458,-0.18217383177989033,-0.10196600924257797,-0.13176721785043163,-0.14092680872126342,-0.12019120734801322,10.812148099788677,15.198063299937605,6.130850101614126,14.897016301022624,30.452449651410557,36.0828595343766,38.17309064848025,39.57694629342272,39.61808915056558,49.53155037919703,36.72443929913873,4.203085791569378,8.604025288488918,0.0,12.807111080058299,4772.503502878384,4093.7389461481152,1394.4249558028582,38.0,35.0,43.0,50.0,53.0,48.0,44.0,47.0,46.0,348.16852186800065,26.0,4.812184355372417,5.631211781821365,6.481577129276431,7.321849713788356,8.174421152646497,9.022201929860664,9.8769895612299,10.728736979978141,11.585571654955082,0.6326530612244897,0.9913469387755102,1.134936380242887,0.5919726645133118,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6388003421727974,0.976230492196879,1.0129316111003759,0.6039154346859852,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,2.0,5.0,1.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,15.11296452053189,12.083681658295921,0.0,5.907179729351506,0.0,14.905862972149976,4.794537184071822,0.0,0.0,30.33183534230805,38.17047518309165,6.544756405912575,6.041840829147961,219.54568047261282,-625.460986543638,-49.33264146967104,-12.764509929462,-34.74783258575766,341.84576743279536,973.8801987996985,30.100433048015354,19.87510609795303,31.41549028386124,0.46153846153846156,0.6611105470365407,0.16851503438728568,135.4484215011504,0.1144009626131153,29.735498241844876,0.3388894529634592,7.0,0.3076923076923077,0.27774489149094495,0.6093208861478272,0.8059613035154831,0.9072779061423488,0.9390998842096224,0.9463694186403985,1.1261000000000003,,1.5357142857142858,1.799906933457422,1.3161701003068016,1.5313282524578438,-6.447834958059396,1.6159730722154224,1.5229999873188609,-2.633621646776986,91.15530000000005,24.596666341896878,0.0,10.216698334856808,0.0,50.73254617883855,6.544756405912575,35.89528683400505,0.0,0.0,3.970291913552122,0.0,5.262690188904886,2.3978952727983707,6.732210706467206,4.59511985013459,8.280204233279974,6.6052979209482015,9.870085875902097,30.999999999999996,9.532390029601949,0.0,0.0,0.0,0.0,0.0,1.0277904964403883,0.0,48.576,0.0,35.21123868440305,0.0,0.0,0.0,0.0,0.0,-2.4031843201802063,55.61188263190146,5.316788604006331,0.0,0.0,57.62903371914354,20.804433175141472,0.0,31.749653560165648,30.33183534230805,0.0,0.0,0.0,29.006660561152277,31.301216766467068,31.176525168447572,269.9195010360331,,235.05819985226327,230.57558801931145,228.5064349126074,235.10180078166178,317.5622257455082,233.23173319565373,235.32064494352642,288.0266261102187,31.176525168447572,269.9195010360331,,233.64534270940607,228.91967364053068,227.29555842032505,233.69297878940046,322.41169067727355,231.74503796921547,233.919484955193,290.0281785617693,4.696388545345023,201.33135618378856,,177.70727568397902,174.13939890320728,171.90567353766778,177.74026017653995,240.7041760331963,176.22468334966146,177.91936409848313,219.2237693751698,1.2470610067379029,10.796780041441325,,9.40232799409053,9.223023520772458,9.140257396504296,9.404072031266471,12.70248902982033,9.329269327826148,9.412825797741057,11.521065044408747,2.386591900741674,134.95975051801656,,117.5905284975602,115.35979028699403,114.30586426031599,117.61215352092921,157.98192785960703,116.68050552071549,117.72124247125596,143.6972784574961,47.83529411764707,0.0,1.581369992441421,0.0,0.0,0.0,18.592290975520072,49.63364894391842,2.3948751891883058,2.839122023809524,0.0,0.0,-2.438696831617558,1.3294704270597129,0.0,0.0,0.0,29.591856299613276,371.1418072263801,76.41339184393902,167.63683890628118,221.7367043763911,249.61100735731833,258.3658948594817,260.3658948594818,455.0,124.63474425892886,190.2496406790281,72.71379596198744,106.94000000000001,106.94000000000001,0.8571428571428571,6.883718701153896,5.700439718141092,3.8509391059398426,4.929708662874502,,4.937212157291316,4.936304834744514,4.934610466503878,4.937217214446661,4.938488786302489,4.936798672297051,4.937268410872832,4.941814632098525,0.1540375642375937,0.19718834651498007,,0.19748848629165264,0.19745219338978057,0.19738441866015513,0.19748868857786644,0.19753955145209956,0.19747194689188205,0.1974907364349133,0.197672585283941,2.2646077740500568,2.511570623430968,,2.5130915631445894,2.5129077740145176,2.5125644688182787,2.513092587437772,2.5133501025688947,2.5130078109588476,2.513102956874341,2.514023330056111,266.2700000000001,420.3028177531061,139.56939057388186,,138.23457589476175,138.30943133822367,138.6626258673034,138.23477892481873,138.69888190926707,138.27830244378052,138.22896619784865,138.07972682758896,16.812112710124246,5.582775622955275,,5.52938303579047,5.532377253528947,5.546505034692136,5.529391156992749,5.547955276370683,5.531132097751221,5.529158647913946,5.523189073103558,6.957266178010044,5.8548526329302195,,5.845242799287731,5.845784163000792,5.848334562662696,5.8452442680223555,5.8485959979459174,5.845559070628481,5.845202217467276,5.844121980843968,0.0,36.54070911146276,21.431412999329595,1.0277904964403883,-2.4031843201802063,7.093693197984391,2.002441218303758,1.9738039633259692,0.0,334.3971773481311,123.25106744189821,-351.128448844078,-27.694923023657008,-7.1658867111036315,-19.50713604689322,191.90929033943243,546.7280148905695,16.898125691405138,11.157714589603458,17.636387577115144,1634.0,35.0,1.7377753556665645,0.7049388389546045,0.0,0.0,0.5729551693299695,0.11544431567789332,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.2381448361039201,0.12336210787250688,0.3548603490124733,0.12953476179363377,18.396976746569035,14.220721717341211,11.896754605515326,8.459079000917383,10.660215422851428,6.331347671725557,8.341871769847007,4.505156898907565,6.261053765123654,3.142805283949742,4.538760216943896,1.852243574952012,2.6347851155943163,0.9661998117914069,1.480780039870312,0.5310981542342326,3.9924243267121193,1.4333922294198411,5.234070870794554,1.8946933586582064,7.588874460787611,2.173933650851926,85.50131488636487,45.80615472757945,30.818141540498175,25.35164198495713,22.59461521822473,22.44707604091391,122.0,139.0,52.27303199999997,28.960967999999998,0.3469387755102041,76.07,9.63888888888889,5.638888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,6.0,6.0,49.0,0.0,1.0,50.0,6.0,3.0,6.0,44.0,9.0,26.0,41.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,4.0,3.0,1.0,25.0,7.0,0.0,2.0,5.0,0.0,2.0,8.0,0.0,0.0,0.0,0.0,1.0,3.4965075614664802,4.929063640402444,3.9219733362813143,4.244917420701475,4.528559083616251,4.827813612260619,4.585605030493252,4.562393156632033,4.774385395276745,4.933574247959794 +656583,C[C@]12CC[C@H]3[C@@H](CC[C@@]45O[C@@H]4C(O)=C(C#N)C[C@]35C)[C@@H]1CC[C@@H]2O,0,19.372549019607842,5.918723529411764,3.5098039215686274,5.529411764705882,162.67171856220048,76.01600392156863,1.3906305966847647,5.989654901960783,3.850626361655774,7.499326117647057,200.04089487718565,22.327272727272728,6.169545454545456,4.6,5.4363636363636365,143.4860741122691,83.45272727272729,1.822676431309091,6.323336363636363,2.591540404040404,7.6222048000000004,260.095632730615,18.65137614678899,5.944908256880734,4.18348623853211,3.963302752293578,148.67665750554715,68.71439087155964,1.6129803204131834,6.079766055045871,2.1202854230377164,7.459204954128439,222.9399302880407,15.88,5.933828571428572,3.3314285714285714,2.8285714285714287,152.51979367124446,56.496190805714285,1.4130931272087257,6.045609142857142,2.3375396825396826,7.483560388571428,189.21488351564545,11.11111111111111,5.7923205128205115,2.547008547008547,1.670940170940171,159.47534892153803,36.34505462820513,1.1685845246856836,5.873145726495728,2.213586182336182,7.413826786324785,145.39066446648852,8.902542372881356,5.538889830508474,2.194915254237288,1.3898305084745763,165.14997929240153,28.899163533898307,0.9996203072824366,5.604089406779661,1.9374705743879475,7.214591220338983,118.49547980841892,9.274285714285714,5.637605714285715,2.2057142857142855,1.4742857142857142,166.71850231421473,30.372145045714284,0.986240366778737,5.693434285714287,2.120793650793651,7.31543238857143,119.66068632939891,10.69672131147541,5.800122950819673,2.2049180327868854,1.8114754098360655,164.80558578765505,35.44445489344263,1.0263238327562458,5.859860655737705,2.49077868852459,7.44247281967213,128.37469007909195,9.505376344086022,5.943548387096776,1.89247311827957,1.8602150537634408,171.8772815510421,30.658306290322578,0.8681485830474516,5.9629311827957,2.8697729988052565,7.630846494623655,108.57236557122852,7.191080353710111,0.1049515570934256,0.016143017191326943,0.8612072279892348,3.3087274125336408,1.3557143886562275,34.28947043444828,0.2314443543291626,0.10094379084967316,1.435954120210176,0.06461500653594769,51.36720324553187,0.36827793505994194,-0.005490380622837284,-0.007000742376680988,0.4428925937576456,1.1272797175911362,0.1661391586407765,1.8532499505784443,0.029176906836557097,-0.004233737373737387,-0.0416780259340813,-0.004100088888888941,5.632472834905307,0.6698658596376128,0.002093451001555534,-0.0010236429745267223,-0.050989562941564454,0.16851669611899447,0.1254403448766064,3.231879710361926,0.02194429912153403,0.00322945973496431,0.027634704718368746,6.224260958205174e-05,5.459625830226463,-0.3586994013291592,0.005308913494809715,0.0010011344338411324,-0.20428846048223212,-0.28990388312187626,-0.19188296659005816,-1.8157458920393268,-0.03266860925404636,0.004272253968253964,0.08822733014774538,0.003778775873015859,-6.011298077607018,-1.4967616005678293,-0.012377726022535705,-0.0006995486373530207,-0.08317806760713335,-0.37517621427656034,-0.1722618155052115,-7.147782141084791,-0.03489419547542634,-0.014009829059829042,-0.021885073788187968,-0.005619652421652414,-9.817820926742122,0.6012925276458206,0.008689519676265248,0.00040694285015332315,0.030118793944962495,0.3333463661303671,-0.02873251682195321,2.8248593340794623,0.0010276435918329043,0.009011817325800378,0.06733577861187678,0.003982839924670493,1.9426372735136925,0.5544658647772835,-0.002261674740484472,-0.00025409553584760297,0.02775635744493875,0.050376228922941746,0.09302704270282511,2.7059167894172584,0.02174797139874966,-0.0006812698412698428,-0.11001963530510245,-0.0027435860317459996,5.21318085544205,-0.2085988365130687,-0.004418191616087131,0.00020885114085956438,-0.0021586905414689205,-0.13306042442692284,-0.15643810000911912,-1.035536723905055,-0.02475898419871083,-0.0032577413479052838,-0.1670840266354051,-0.0037558506375227714,-3.5873702078751633,-0.004911262417680505,-0.010517148491275028,1.5700227745701654e-06,-0.00879314407609977,-0.2935471468789918,0.22841899802301452,0.11870634290781536,0.03731981830122134,-0.009800000000000001,-0.24478643449789786,-0.005403397849462418,5.510325736774647,,,0.47500000000000003,0.8020833333333334,0.16666666666666666,0.0,0.6354166666666666,-0.46875,1.4588326697288887,0.022600865644773965,0.040517532311440625,0.39674227677073937,0.0881089688032531,0.3857157306508519,1.855574946499628,0.47382469945410505,2.0683795600729935,1.763156072175529,0.0723186476346397,0.23290484026282474,0.0,0.3052234878974644,6.454884190666681,988.0,301.8549,179.0,282.0,8296.257646672224,3876.8161999999998,70.922160430923,305.47239999999994,196.38194444444446,382.4656319999999,10202.085638736467,1228.0,339.32500000000005,253.0,299.0,7891.734076174801,4589.900000000001,100.24720372200001,347.78349999999995,142.53472222222223,419.221264,14305.259800183825,2033.0,647.995,456.0,432.0,16205.75566810464,7489.868605000001,175.814854925037,662.6945,231.1111111111111,813.0533399999998,24300.452401396436,2779.0,1038.42,583.0,495.0,26690.963892467782,9886.833391,247.291297261527,1057.9815999999998,409.06944444444446,1309.6230679999999,33112.60461523796,2600.0,1355.4029999999998,596.0,391.0,37317.2316476399,8504.742783000002,273.44877877644996,1374.3161000000002,517.9791666666666,1734.8354679999998,34021.415485158315,2101.0,1307.1779999999999,518.0,328.0,38975.39511300676,6820.202594,235.91039251865502,1322.5651,457.2430555555556,1702.643528,27964.933234786866,1623.0,986.581,386.0,258.0,29175.737904987578,5315.125383,172.59206418627898,996.3510000000001,371.1388888888889,1280.2006680000002,20940.62010764481,1305.0,707.6150000000001,269.0,221.0,20106.281466093915,4324.223497000001,125.21150759626198,714.903,303.875,907.9816839999999,15661.712189649219,884.0,552.7500000000001,176.0,173.0,15984.587184246915,2851.222485,80.737818223413,554.5526000000001,266.88888888888886,709.6687239999999,10097.229998124252,366.7450980392157,5.3525294117647055,0.8232938767576741,43.921568627450974,168.7450980392157,69.1414338214676,1748.7629921568625,11.803662070787293,5.148133333333331,73.23366013071897,3.295365333333332,2619.727365522125,20.255286428296806,-0.3019709342560506,-0.3850408307174544,24.35909265667051,62.0003844675125,9.137653725242707,101.92874728181444,1.6047298760106403,-0.23285555555555626,-2.2922914263744714,-0.22550488888889175,309.7860059197919,73.0153787004998,0.2281861591695532,-0.11157708422341273,-5.5578623606305255,18.368319876970396,13.672997591550098,352.2748884294499,2.391928604247209,0.3520111111111098,3.0121828143021934,0.00678444444444364,595.0992154946845,-62.772395232602854,0.9290598615917001,0.17519852592219817,-35.75048058439062,-50.733179546328344,-33.57951915326018,-317.7555311068822,-5.717006619458113,0.7476444444444438,15.439782775855441,0.6612857777777753,-1051.977163581228,-350.242214532872,-2.8963878892733548,-0.16369438114060683,-19.463667820069205,-87.79123414071512,-40.30926482821949,-1672.581021013841,-8.165241741249764,-3.2782999999999958,-5.121107266435985,-1.3149986666666649,-2297.370096857657,141.90503652441367,2.0507266435985985,0.09603851263618426,7.108035371011149,78.66974240676664,-6.7808739699809575,666.6668028427531,0.24252388767256539,2.126788888888889,15.891243752402922,0.9399502222222365,458.4623965492314,97.03152633602461,-0.3957930795847826,-0.04446671877333052,4.857362552864282,8.815840061514805,16.279732472994393,473.53543814802026,3.80589499478119,-0.1192222222222225,-19.253436178392928,-0.4801275555555499,912.3066497023588,-25.44905805459438,-0.53901937716263,0.025479839184866855,-0.2633602460592083,-16.233371780084585,-19.085448201112534,-126.33548031641672,-3.0205960722427214,-0.3974444444444446,-20.38425124951942,-0.4582137777777781,-437.6591653607699,-0.456747404844287,-0.9780948096885776,0.00014601211803502538,-0.8177623990772787,-27.29988465974624,21.24296681614035,11.039689890426828,3.4707431020135844,-0.9114000000000001,-22.7651384083045,-0.5025160000000048,512.4602935200422,0.7043922047919297,0.607766162134071,0.4061354566749472,0.3411602840979945,0.24071249431385935,0.19813288856239797,0.15079057383462827,0.11779121030551555,0.08988873413385783,0.0698064881427164,0.053630783872279805,0.04003812818031333,0.03305681511030196,0.023558290491920004,0.02034161002497564,0.014012698824882245,8.011403578317992,5.71945253439399,3.5231490066722233,2.2152350652815933,0.415902137708062,-0.397797679134498,4.119110955094616,0.9113304086194011,6.008698681218484,0.9950200153627865,14.563240160846275,10.982599840920848,16.00530426590925,11.732988419487649,1.9692861631401635,0.7808110386504162,3.4663033133666707,2.2637463813698866,6.02737964591626,1.0683372025655793,3.6797244680482177,2.4589226440012117,20.869732203860078,14.706234427344535,0.23336113733239872,0.49181311254863913,0.7205005079939976,0.8310235973606145,0.8896323436059568,0.8896323436059568,1.499900571394909,680.8616710478682,1.0,0.0,2.0,0.0,1.0,9.0,1.0,4.0,2.0,4.305400234476949,2.7913934755070295,1.451747059162896,0.8043049021304682,0.4609759804769986,0.4609759804769986,160.60034993215504,962.8878853269719,65.52522809393317,18.88015461425435,37.99094973947538,,10.0,420.0,0.0,15.474946344419898,34.39812939693003,29.74764429147946,38.524929737556064,0.0,0.0,0.0,19.91669571217352,4.736862953800049,11.4,19.25,4.0,0.0,15.25,0.0,0.024999999999999984,-11.25,0.09117647058823514,0.009100998890122058,-0.08207547169811308,0.03942307692307678,0.1293846153846151,0.0,0.5411764705882355,0.8124999999999997,0.45000000000000034,0.5320754716981134,0.7730769230769229,35.01198407349333,0.5424207754745751,0.9724207754745751,9.521814642497745,2.1146152512780745,9.257177535620446,44.533798715991075,11.37179278689852,0.5846153846153849,0.18128654970760236,0.13157894736842105,0.30701754385964913,0.85,0.3414773524786199,-0.649101262214404,-0.08846272681782834,-0.012727475729694192,-0.03818242718908258,0.6585226475213802,1.2517605592296543,0.04089231682037852,0.02454432469077754,0.0368164870361663,-2.796543487628143,0.9171591881172719,0.845386208529527,1.302181946473013,0.9107142857142859,0.5899161261699026,1.1151535430202593,0.9210954971894714,1.0988794993449047,0.842865080841305,0.7752444681537254,0.8754923903411235,1.0337100767244702,0.8455238932358089,0.6476788667179458,0.6776645347936545,1.707589285714286,0.9215354339942049,1.053253099379182,0.8521105322299509,1.0677416340606514,0.6621487934583455,0.49927117656318337,0.653525847417934,1.0036838958235823,1.010822742270561,0.7841366133344635,0.7142218382762611,1.5384566326530615,1.0252149663025796,1.2213087011221802,1.017906538906568,1.239002005798997,0.8031593513321515,0.613889039406119,0.7853483460869837,1.1774378477840028,1.1751565550218244,1.0430905927674907,0.8526452095013738,0.9754178113553115,1.0066769159262767,1.1109633882185201,1.1765951652447857,1.1540870083246548,1.0689813551206675,0.7868418470646319,1.0174876684619258,1.186480428868297,0.8437139794261356,0.6317977616829156,0.596357731165887,0.7476732748184021,0.7313457894964885,0.9253169267215393,0.8484472313380101,0.9376777168262888,0.658859428616329,0.5943391280786258,0.5989720653110239,0.9309348308066,0.8896798240254186,0.9547502084147759,0.8937696913533428,0.8554209183673471,0.9481756913781083,0.8316190054095064,0.8875710990919536,0.8212604986780414,0.9495536061152076,1.0383160203102637,0.9528237291184363,0.8407158699754104,1.0241847978516037,1.1171062879454063,1.1108551580061372,0.85846018735363,1.07714118628635,1.0664102366422747,1.0231508878084203,1.031147732666362,1.0984325158336343,1.313474113913193,1.1264123362552094,1.010458754493497,1.0877438671045008,1.720335275701817,1.574498793075383,0.734447004608295,1.3652328083182774,0.6969508354401988,1.0711503905892072,0.6607197124962702,1.6522848661713487,1.870389010325162,1.7840536655168648,0.745076990966649,7.5,0.0,6.555555555555557,4.1805555555555545,2.7827777777777776,1.2016666666666667,0.8229024943310658,0.41755243764172334,0.269093285462333,0.10500771604938272,4774.805481908683,5635.815625516815,2298.3421768680323,2022.1004880452695,11.460039406195579,0.4697997507393528,6.076115749701735,0.8860798375603904,1.0,0.8947368421052632,1.367025107494547,2.8810318664644656,4.220678282808599,4.868120439841027,5.211449361494497,5.211449361494497,0.2678571428571428,0.0,0.14567901234567904,0.07601010101010101,0.06471576227390181,0.03534313725490195,0.030477870160409842,0.01988344941151064,0.02069948349710254,0.01312596450617284,0.6737919233169225,16.193877551020407,4.831597222222222,1.8069333333333333,143.0489848169023,1.0,4.207550565369991,97.3316485363653,,91.75614869725395,91.50039081526927,92.18771048265783,91.76105098460165,101.3118020775515,91.68805707879153,91.76750728807866,96.35646001771144,0.05121315809938564,-0.052313474662885336,-0.43367000689575136,0.5142694805194805,0.34069887816111377,0.12254731529806379,0.054047202453048414,0.1260644569236776,-0.04194153338309164,-0.029024622268558984,-0.06345412789841492,0.10965114857397346,0.09315232575478138,0.019946831276566858,-0.06341088300870351,-0.05920707732634337,0.050930969858878065,0.0925271177515065,0.09425283241222289,0.09481457944886663,0.03199265361228274,0.019244838208566123,0.0009632841180233249,0.10628621932422151,-0.04988115605523648,0.050584418581649394,0.06201656245395102,-0.23721173469387763,-0.08761794097141531,-0.14153642404005973,-0.05295345390388914,-0.14115103109227162,0.04232309815485592,0.0614416079915087,0.0584813973656969,-0.11702599514467249,-0.20814140948871493,-0.11793751674896373,-0.043334441700827946,-0.09658310439560441,-0.11338988302734526,-0.12706350020814924,-0.20845414205942078,-0.15076710588411868,-0.13878841820684806,-0.015240789019766676,-0.08697132017662175,-0.19113014348500892,0.08361643843064476,0.082795528879386,0.025208599193709512,0.034972760290556903,0.10074760612422551,-0.021193635667194354,0.08238270519458123,0.004440132466447544,0.08927559832997452,0.046892708941161064,0.061639549977522544,0.037818630386163204,0.07710466821459123,-0.021549701625400167,-0.01574027536711782,0.03222959183673469,0.015225258125560246,0.06861846675171214,0.07891392766156019,0.09396630763271704,-0.006749001949851468,-0.07661779283658396,-0.042460508461291305,0.10148850873821934,-0.029007996886788477,-0.04209743750780327,0.012937553022725671,-0.0025065866510538674,-0.04021498535143229,-0.11539163508043847,-0.030199845923100703,-0.1069759695390899,-0.03227282550500561,-0.1163574965827944,-0.05812659997849346,-0.06983775602358121,-0.0006829658655040094,-0.1002095517450293,9.72570837261873e-05,-0.010210253456221207,-0.08871904822591886,0.16848607636998048,0.003461889069845745,0.16124747743098844,-0.09708373261505794,-0.17046953732899855,-0.08362450364307107,0.10727322860922857,7.789773744425599,18.31419914839913,6.854554674627186,12.255446554887314,28.592936613947256,33.28945813049683,35.83090388726209,36.176979440288775,36.176979440288775,49.641109441751844,42.3157457322127,1.735647543231353,5.589716166307793,0.0,7.325363709539146,3994.5394013400137,3484.0051819182945,871.3474809377049,370.0,48.0,75.0,106.0,145.0,190.0,236.0,287.0,337.0,329.19909372400076,28.0,5.030437921392435,6.003887067106539,7.00033446027523,7.994632311431825,8.997270906233448,9.998388557730848,11.004447084272586,12.009077963023524,13.0172583846533,0.5816993464052288,0.9644705882352943,1.1279471901368558,0.5378076632368042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6447036632617119,0.9516339869281045,0.9929594561786842,0.5924909064786102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,2.0,7.0,0.0,1.0,0.0,5.0,0.0,3.0,1.0,1.0,14.94991774348146,17.464182070388166,0.0,0.0,0.0,0.0,0.0,5.261891554738487,0.0,13.847474399381248,68.11445996836304,5.41499046939678,17.746292230609846,172.9764899825297,-328.8044058151913,-44.811088841358554,-6.447145212062572,-19.341435636187718,333.57683991468474,634.0834795117806,20.714139252574608,12.433009402191779,18.649514103287665,0.5,0.7725149728925009,0.26744537836991056,111.2853430102773,0.1540187712848328,115.01505438209779,0.227485027107499,5.0,0.0,0.24099481704582945,0.5079012402590989,0.7440694285703318,0.8582079351174103,0.9187338831828886,0.9187338831828886,3.466880000000002,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,87.88160000000005,14.94991774348146,5.261891554738487,0.0,28.583699077277743,76.6022093463436,0.0,11.332269401725444,0.0,6.069221312792274,4.04305126783455,1.9459101490553132,5.517452896464707,4.2626798770413155,7.223295679562314,6.490723534502507,9.038958755220563,8.644178203170727,10.91412436325496,29.666666666666668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.18800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737433560615605,57.52530669697965,0.0,0.0,0.0,28.022038376161703,4.736862953800049,39.9148119448085,58.79322575986332,11.332269401725444,0.0,0.0,0.0,27.428190825077014,32.87988682634731,31.66726537378072,194.66329707273076,,183.43789263260314,182.91388074640642,184.31336662005793,183.4479105595551,204.1923810764361,183.29800190748105,183.46120229334326,193.34471506143018,31.66726537378072,194.6632970727308,,182.61944025165073,181.9579710209527,183.6307688222231,182.631805053425,206.38866876630235,182.43876715635912,182.64926718238846,194.2292280978404,5.347319175126238,141.85547674090554,,135.93277324044487,135.6527348025448,136.4006029686929,135.9381269603131,146.37853096470155,135.85800569933158,135.94523164041362,140.96254515164546,1.3194693905741965,8.110970711363782,,7.643245526358464,7.621411697766934,7.679723609169081,7.643662939981463,8.508015878184837,7.6374167461450435,7.644216762222636,8.056029794226257,2.7565054117006107,97.3316485363653,,91.75614869725395,91.50039081526927,92.18771048265783,91.76105098460165,101.3118020775515,91.68805707879153,91.76750728807866,96.35646001771144,48.53333333333333,0.0,4.600838503611321,0.0,0.0,0.0,20.884390077790375,50.640932265112895,7.044655900940623,0.0,6.114967718568908,0.0,1.371907333921221,0.0,-0.20153387975560566,9.465678539934492,2.231662244373058,30.21703623040912,391.32003191415265,69.7182804822219,146.93262518968774,215.25459242323856,248.2741424318924,265.7839174362193,265.7839174362193,1846.0,133.05573465611974,115.23329798306169,82.08037472610695,76.78,76.78,1.0,7.877017895622398,5.807354922057604,4.0953100999422185,4.826848010472583,,4.840005782538682,4.840569468073955,4.839077361332187,4.839995066434616,4.80928697290662,4.840162048692365,4.839979881388273,4.827133131562481,0.17063792083092577,0.20111866710302428,,0.20166690760577843,0.20169039450308146,0.20162822338884112,0.20166646110144235,0.20038695720444252,0.20167341869551522,0.20166582839117805,0.2011305471484367,2.2853111782734437,2.449662406168087,,2.452384652821124,2.452501109854165,2.452192812086719,2.45238243875023,2.446017572002208,2.452416938656746,2.452379301335841,2.449721474253219,253.0500000000003,206.13545537677888,148.95106236316,,147.41089137142922,147.32627005856546,147.54662234074559,147.41249110942314,150.64378402456532,147.3879287111859,147.41469754750358,148.96404875451208,8.588977307365786,6.206294265131667,,6.142120473809551,6.138594585773561,6.147775930864399,6.142187129559297,6.276824334356888,6.1411636962994125,6.1422790644793155,6.206835364771337,6.20400224042467,5.8790865488352555,,5.86869260428056,5.868118388835325,5.869612946855929,5.868703456459111,5.890386741040552,5.8685368189875025,5.868718424129431,5.8791737306590415,6.114967718568908,0.0,30.350068617724865,0.33649099531788074,1.9635748797975978,2.231662244373058,6.652397040606365,4.600838503611321,0.0,322.151933295145,87.62181699458256,-166.55696665056016,-22.699206268910082,-3.2658228755011782,-9.797468626503536,168.97445903537357,321.19709797950463,10.492816214346263,6.297982313323621,9.446973469985428,1130.0,55.0,2.846405336009268,2.311492074452095,0.2920819864624269,0.26157986948039036,1.5882031700111772,1.0856563803781667,0.42963737759787407,0.29276208835814066,0.2041241452319315,0.11785113019775792,0.36425077011113016,0.20118446353109126,0.8188720213354975,0.4454830333366953,1.5863064545675882,0.8995964199988712,2.8934419743624074,1.6003374642076438,16.905412915006313,14.586387891217703,11.371792786898522,9.552487954743846,11.55419972706525,9.510378650995102,11.30929303759712,8.834340772913666,9.52820581818893,7.399487743127938,7.776463661480571,5.805528586145433,6.280794870957372,4.4760751934648,4.800619965894251,3.3069969226722096,8.273799877003887,6.154798506494237,13.942242071814134,10.24790920074907,23.247422634870784,16.23881898095075,83.21730941540778,42.89262460798059,30.4549735656692,23.5420428383727,21.581283230376552,21.581283230376552,152.0,202.0,54.90941099999997,29.392588999999997,0.35294117647058826,232.04,8.215277777777779,4.92361111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,0.0,0.0,0.0,51.0,0.0,0.0,55.0,0.0,1.0,1.0,53.0,2.0,28.0,53.0,1.0,0.0,0.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,4.0,2.0,1.0,24.0,4.0,0.0,1.0,3.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,3.4657359027997265,6.423246963533519,4.007333185232471,4.499809670330265,4.882801922586371,5.241747015059643,5.568344503761097,5.799092654460526,6.003887067106539,6.234410725718371 +11292933,Cc1ccc2c(N3CCN(CCc4cccc(N5CCNC5=O)c4)CC3)cccc2n1,0,20.633333333333333,5.933074999999999,3.283333333333333,6.3,162.90204018009536,81.21695211666669,1.4884913040103498,6.016068333333332,3.0449074074074076,7.461804199999999,215.37187958838328,23.828125,6.258265625000001,3.96875,6.390625,147.3227424009767,90.03004767187504,1.8078117653125008,6.404195312500001,2.7365451388888893,7.6558855624999955,260.4579816688062,19.669565217391305,6.2007469565217415,3.608695652173913,4.878260869565217,157.14510130646826,72.56856553913045,1.5460867031594692,6.303446086956519,2.607487922705314,7.656435930434779,216.609205381351,15.732026143790849,6.0067771241830075,3.111111111111111,3.450980392156863,159.8540997760724,55.93890058169934,1.3876619174348166,6.099000653594771,2.3787218591140156,7.5296925228758145,186.4173003945557,13.920245398773005,5.823803067484662,2.7791411042944785,2.7177914110429446,157.15631916033263,48.49269776687116,1.3292023116234415,5.924015950920246,2.3019768234492153,7.38408225766871,172.0452413117779,12.45086705202312,5.7418092485549135,2.5895953757225434,2.254335260115607,161.07906100560385,42.87084506936415,1.2301232966783584,5.82877456647399,2.1160886319845855,7.331132231213871,156.42116862441165,12.024844720496894,5.745893788819876,2.5217391304347827,2.012422360248447,161.28824180240568,40.78820613043477,1.2033670883867207,5.830910559006212,2.100931677018633,7.333218360248447,151.03140070960387,11.054421768707483,5.749400680272108,2.442176870748299,1.8299319727891157,164.14647203242632,36.744228707483,1.1308831495721836,5.821578911564624,2.040438397581254,7.353386938775508,139.9111230022353,11.404761904761905,5.750102380952382,2.492063492063492,2.134920634920635,165.31026734812355,38.66574563492064,1.1315803240973172,5.818235714285715,1.9995590828924166,7.354705015873017,141.3951852225797,6.943333333333334,0.08070763888888882,0.0132328436823897,0.5608333333333333,3.409999999999999,1.5481541251218462,33.251862483055554,0.22702549382534745,0.0795360833333333,0.7361959876543208,0.04144659888888886,51.15869555555498,0.5759374999999998,0.004215798611111371,-0.007101610496323585,0.19437500000000013,1.1525,-0.41436189575587545,2.700506609392363,-0.016208325902499716,0.005946312500000138,0.0002261766975308391,0.0003360584027777037,-0.5028220223384601,0.15608695652173873,0.005453955314009888,0.001293258436004788,-0.024891304347826045,0.05173913043478259,0.09035685971715043,0.7408332360748807,0.011328502502759515,0.0045109456521740315,0.07820014761137944,0.004077542560386405,1.7504252168425103,-0.6616339869281047,-0.012955460239651292,-0.001033216186210168,-0.0869771241830065,-0.44790849673202615,0.1905293903830451,-3.095418191770151,0.0050219821942348725,-0.012561475490196013,-0.03807204671992254,-0.005961124379084997,-0.638106819361187,-0.6731901840490797,-0.002022720688479907,0.0010508069200151134,-0.05572085889570551,-0.2952760736196318,-0.21988657996420188,-3.263469850846966,-0.03100753679727232,-0.0029646211656441674,-0.022219050594561855,-0.000865138357191536,-6.780782073104604,-0.10132947976878609,-0.0025812419717405966,-0.0009658818093855015,-0.03848265895953758,-0.2308092485549133,-0.07181942488658766,-0.48452441629254994,-0.005787186000925827,-0.0021431546242774912,-0.014963917433811437,-0.0015597838599871277,-0.9690108275063469,-0.506894409937888,-0.00036581694271918633,0.0005069795437943926,-0.054208074534161516,-0.4087577639751553,-0.17869569674129795,-2.481698935954106,-0.02911844011645962,-0.0010035263975155574,-0.024429251974541825,7.60723326432287e-05,-5.8153131423440785,-0.5766666666666665,-0.00496574546485267,-0.0005730885311678426,-0.009812925170068038,-0.34537414965986385,-0.09508441084554008,-2.762344839858277,-0.016855772147815893,-0.005377137755102072,-0.07308815192743763,-0.0023017403854875083,-4.1827817859839005,0.1344444444444446,0.003141567460317389,0.00033660152477378845,0.015753968253968232,0.1003174603174603,0.09296010440692487,0.6515547666798938,0.01077882448526993,0.002522924603174565,-0.00486147854203406,0.002154225449735471,1.6930816145152938,,,0.47849462365591405,1.2419354838709677,0.5645161290322581,0.0,0.6774193548387096,-0.11290322580645161,0.8853339107082824,0.007883133192827074,0.021754100934762557,0.8992033874355387,0.24542309468040874,0.24392646768718665,1.7845372981438212,0.48934956236759536,2.085538715361616,1.6820405912505938,0.3464917590000251,0.05700636511099675,0.0,0.40349812411102187,6.920620175800013,1238.0,355.9844999999999,197.0,378.0,9774.122410805721,4873.017127000001,89.30947824062099,360.9640999999999,182.69444444444446,447.7082519999999,12922.312775302997,1525.0,400.52900000000005,254.0,409.0,9428.655513662508,5761.9230510000025,115.69995298000005,409.86850000000004,175.1388888888889,489.9766759999997,16669.310826803598,2262.0,713.0859000000003,415.0,561.0,18071.68665024385,8345.385037000002,177.79997086333896,724.8962999999998,299.8611111111111,880.4901319999996,24910.058618855364,2407.0,919.0369000000002,476.0,528.0,24457.677265739076,8558.651789,212.31227336752696,933.1471,363.9444444444444,1152.0429559999995,28521.84696036702,2269.0,949.2798999999999,453.0,443.0,25616.48002313422,7904.309735999999,216.65997679462097,965.6146000000001,375.2222222222221,1203.6054079999997,28043.374333819796,2154.0,993.333,448.0,390.0,27866.677553969464,7416.656196999998,212.811330325356,1008.3780000000003,366.0833333333333,1268.2858759999997,27060.862172023215,1936.0,925.0889,406.0,324.0,25967.406930187313,6566.901186999999,193.74210123026202,938.7766000000001,338.2499999999999,1180.648156,24316.055514246225,1625.0,845.1618999999998,359.0,269.0,24129.531388766667,5401.4016200000015,166.23982298711098,855.7720999999998,299.94444444444434,1080.9478799999997,20566.935081328593,1437.0,724.5129000000001,314.0,269.0,20829.093685863565,4871.88395,142.57912083626198,733.0977,251.94444444444449,926.6928320000001,17815.79333804504,416.6000000000001,4.8424583333333295,0.793970620943382,33.65,204.59999999999994,92.88924750731077,1995.1117489833332,13.621529629520847,4.7721649999999975,44.17175925925925,2.4867959333333314,3069.5217333332985,36.859999999999985,0.26981111111112777,-0.45450307176470944,12.440000000000008,73.76,-26.51916132837603,172.83242300111124,-1.0373328577599819,0.38056400000000884,0.014475308641973703,0.021507737777773036,-32.180609429661445,17.949999999999953,0.6272048611111372,0.14872472014055063,-2.8624999999999954,5.949999999999998,10.3910388674723,85.19582214861128,1.3027777878173443,0.5187587500000136,8.993016975308636,0.46891739444443653,201.2988999368887,-101.23000000000002,-1.9821854166666477,-0.1580820764901557,-13.307499999999994,-68.53,29.150996728605897,-473.5989833408331,0.7683632757179355,-1.92190574999999,-5.825023148148149,-0.9120520300000046,-97.63034336226161,-109.72999999999999,-0.32970347222222485,0.1712815279624635,-9.082499999999998,-48.12999999999999,-35.841512534164906,-531.9455856880554,-5.054228497955388,-0.4832332499999993,-3.6217052469135824,-0.14101755222222037,-1105.2674779160504,-17.529999999999994,-0.4465548611111232,-0.16709755302369175,-6.657500000000001,-39.93,-12.424760505379664,-83.82272401861114,-1.001183178160168,-0.370765750000006,-2.5887577160493787,-0.2698426077777731,-167.63887315859802,-81.60999999999997,-0.058896527777789004,0.08162370655089721,-8.727500000000004,-65.81,-28.770007175348972,-399.55352868861104,-4.688068858749999,-0.16156775000000473,-3.9331095679012336,0.012247645555559822,-936.2654159173967,-84.76999999999998,-0.7299645833333425,-0.08424401408167285,-1.4425000000000017,-50.76999999999998,-13.977408394294391,-406.0646914591667,-2.4777985057289365,-0.7904392500000046,-10.743958333333332,-0.3383558366666637,-614.8689225396333,16.94000000000002,0.395837499999991,0.042411792121497344,1.9849999999999974,12.639999999999999,11.712973155272534,82.09590060166661,1.3581318851440112,0.3178884999999952,-0.6125462962962915,0.27143240666666935,213.32828342892702,0.6841461785303439,0.5822615917633133,0.43342389809701304,0.3186485501341306,0.27877195473270666,0.17201255431010654,0.17882575917767218,0.09631535058777575,0.11571683503098518,0.05303228619807117,0.07498148154803452,0.029833119245068488,0.04902509053573468,0.01717167042702247,0.03195863588501774,0.00982751241361325,8.022094247081071,5.672860800740238,3.544377954652427,2.16983314470099,0.4248097800729535,-0.4337477672480086,3.250165125512405,0.9779949881218271,6.022021963894177,0.9959440187477457,14.550326787754818,10.93680677411138,16.01007646638383,11.68637885121511,2.011156749478476,0.7509128494590394,3.489743513148987,2.2188750915611934,7.0082723513760445,1.3582291479431354,3.702488456569474,2.4142834311601873,20.91230590815505,14.702701238126515,0.23109416872426908,0.5250355553857571,0.6996058661571423,0.8607097697024938,0.8660949519505938,0.8660949519505938,1.0514163929884615,1090.2174551668909,0.0,0.0,8.0,0.0,13.0,1.0,2.0,0.0,0.0,4.476458234625076,2.65701262059655,1.5764530237325127,0.5792481250360586,0.5459147917027245,0.5459147917027245,296.9554497106741,1631.653081293632,54.492725914566165,27.194218021560538,53.94277074515489,,17.0,930.0,0.0,4.794537184071822,6.031114512338072,0.0,69.13213145146231,16.637061980845353,0.0,17.89001399900271,68.63152313434738,0.0,14.833333333333336,38.5,17.5,0.0,21.0,0.0,0.021505376344085943,-3.5,0.10689542483660175,0.04782282282282335,-0.0590726020137784,0.015288978494623628,0.10773297002724758,0.0,0.5527777777777777,0.7892473118279566,0.44588235294117595,0.5049549549549543,0.773958333333333,27.445351231956753,0.2443771289776393,0.6743771289776392,27.8753050105017,7.608115935092671,7.561720498302786,55.320656242458455,15.169836433395457,0.6062670299727524,0.05617977528089886,0.0,0.3168539325842696,0.36,0.29139617542057145,-0.6679941132074386,-0.03494763127257256,-0.011133235220123976,-0.037110784067079926,0.7086038245794287,1.624397378353233,0.041611940532641854,0.02707328963922055,0.03867612805602936,-5.849002274638057,0.8331395523283724,0.8091438362057839,1.6881355968232101,0.712295690936107,0.5677236070381233,1.4829066435218032,0.8378470130026545,1.1283468374975292,0.7774429294670239,0.5719024142918533,0.8266913123805711,1.0152740490948031,0.9519505729612389,1.0345662405720535,1.286016146946133,1.2730796563085471,1.0732287815036767,1.101443978258514,0.9510751694929698,0.9216770341706471,1.011774484454895,0.5321809125098602,0.9778717937424113,0.9201518606140374,1.0755917025155395,1.2135198439592325,1.273886605807907,1.2892229700201034,1.1977619330560512,0.9456994067508665,1.0726664787755853,0.9513477605313999,1.1929512350723317,0.8900996123890021,1.185907205394715,0.9785158508620839,1.0513093137846838,0.8748634017953307,0.6741786788098698,1.0595356384287915,1.0066327234346235,1.1226680631748422,1.054602737583989,1.164059027820177,0.9035948423790027,1.0436540191343968,0.8806793656345889,1.1446215152261332,0.9819443943400884,0.8696589013953974,0.85428004603267,1.0084257358561872,0.9859503104888154,0.9987715692042047,0.9838906669238385,1.0245678777282508,0.8873284443569615,0.7781903457163695,0.83766740023611,1.0207098620782202,1.0392992071277987,0.8364092015400993,0.774862377314423,0.9855749263979771,1.0254063374680489,1.071912714529438,1.042937959805331,1.1208682784941553,0.8675240067900738,0.727188701955079,0.7790059065683804,1.1112054338236121,1.0732492709037527,1.0192117590804552,0.938791299432654,0.9124541346999425,1.0436158823255601,1.000889030436356,1.0733366178420702,1.0398727582044789,1.033585413759671,0.9665616359214135,0.9880225458170926,1.060586591864995,0.9767467556713835,0.9303273499661354,0.9038068616782465,0.9671218660817473,0.9326172632624249,0.8791025011293112,0.9763748631412388,0.9102778765027503,0.9450661299298132,0.7697325505544685,0.88117225781544,0.9422263699585413,5.5,0.11846138149168453,3.555555555555557,1.75,1.5611111111111113,0.8125000000000001,0.5216326530612245,0.37241354875283444,0.21893896447467875,0.16188271604938273,5786.003113188226,6618.545511088764,3007.0987920566254,2711.241151011138,19.124161525984096,0.48841931623980933,9.783551629803275,0.9547258755937734,1.0,0.36,1.4304323609834433,3.2498779750119686,4.330437571876006,5.32764247057246,5.360975803905794,5.360975803905794,0.15714285714285714,0.004738455259667381,0.07256235827664402,0.03571428571428571,0.03547979797979798,0.01981707317073171,0.014903790087463557,0.013300483884029799,0.008420729402872258,0.006226258309591642,0.36830608922794117,22.775510204081634,10.508121615993335,5.3994490358126725,183.01845396941226,1.0,4.382606992020404,209.6574604064451,,170.28421522839992,166.4176413179866,163.00257138279864,170.31693863716077,228.53291366024703,168.63586847919763,170.5178544940013,210.85924703326697,0.0829482717234757,0.05223543482563418,-0.5366654867822874,0.346582466567608,0.33797653958944296,-0.26764899503998896,0.08121369474472247,-0.07139429862872103,0.07476245058584699,0.0003072234857615658,0.008108226290862079,-0.00982867168285064,0.022480118558099667,0.06757669272816189,0.0977309539087097,-0.044382712061502606,0.015172765523396659,0.05836425343635536,0.0222794508563962,0.049899693254162124,0.056715712707008675,0.10622191498291371,0.09838063121458021,0.03421559517563664,-0.09529054060414371,-0.16052334596836898,-0.07807967894196276,-0.1550855111732657,-0.13135146531730976,0.12306874831861435,-0.09309006956670504,0.02212078524581175,-0.15793429804119538,-0.05171455340476426,-0.1438266236287744,-0.012473086196426664,-0.09695489928695337,-0.025062320200750898,0.07940900272354383,-0.09935368599531443,-0.08659122393537592,-0.14203145306795337,-0.09814397171015492,-0.13658173923465472,-0.03727391444735254,-0.030180890642119013,-0.020873566960483824,-0.13254407680784433,-0.014593780091519837,-0.03198262280097456,-0.07299125060102533,-0.06861692533647117,-0.06768599664366962,-0.04639035850576903,-0.014571346688909631,-0.02549134858562605,-0.026945689735507792,-0.020325996996383676,-0.037633579154917815,-0.01894127316936893,-0.07300447574717542,-0.004532618569387353,0.038312214363197095,-0.09665629931797001,-0.1198703120161746,-0.11542500442404846,-0.0746333814299493,-0.12826066194513233,-0.012617246857753969,-0.03318308220122021,0.0018354300396798645,-0.11367203716187468,-0.08305328852616416,-0.061527576983004935,-0.04330804057864828,-0.017497043393880602,-0.10128274183573724,-0.061417922997851745,-0.0830733869799296,-0.07424616444522822,-0.06760626786922172,-0.09927811772013626,-0.0555350848367094,-0.08176091553080503,0.01936309809569533,0.03892528022833654,0.02543682468052869,0.028090285148234587,0.029418610063771358,0.060045768634055426,0.019594534501997062,0.0474784761114193,0.03172050341731143,-0.0066035113251890695,0.05197592824228053,0.033094698684737155,26.381162042085954,24.017755503470248,3.988601519762781,12.591609550502474,29.02866091877422,38.21988910190695,39.59183830645965,39.62543830645965,39.62543830645965,64.65170017621008,52.14325832876841,10.741244529000777,1.7671973184408993,0.0,12.508441847441677,13470.99247561654,13099.385181874843,1121.1621310357204,160.0,49.0,66.0,87.0,108.0,113.0,128.0,143.0,154.0,415.2372105480008,35.0,5.1298987149230735,5.988961416889864,6.8679744089702925,7.739359202689098,8.621373010325902,9.49694686620103,10.379876998980992,11.257426579762374,12.140803190658948,0.6166666666666666,0.9676666666666667,1.128079620436401,0.5766117170371604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.672544880239521,0.9554901960784313,0.9920004855547463,0.6226853348259721,9.0,1.0,0.0,0.0,0.0,2.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,8.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,10.216698334856808,0.0,0.0,0.0,0.0,14.783797982648164,4.794537184071822,0.0,0.0,18.19910120538483,55.306212725083284,68.2682196000684,5.516700717616262,207.4067493499818,-475.45746750215494,-24.874638760321684,-7.924291125035916,-26.41430375011972,504.3621990606559,1156.1956137914772,29.618087154244478,19.26992689652462,27.52846699503517,0.47058823529411764,0.8872971867031613,0.160713671068661,1.863538051495697,0.14024506295321149,53.90199049538099,0.11270281329683868,9.0,0.14285714285714285,0.24216334090340172,0.5501842166211937,0.7331162651117108,0.9019368793681906,0.9075800062881502,0.9075800062881502,3.437520000000002,,0.9642857142857145,1.2140530479292693,1.2993821131665406,0.9617664715096315,-3.6732033552482424,1.0646419828641371,0.9498097657793637,-1.9956176192751696,126.02370000000005,4.794537184071822,0.0,15.200676855804016,0.0,13.344558822616634,55.61311430308898,65.85468310269995,0.0,0.0,4.2626798770413155,0.0,5.58724865840025,2.3978952727983707,7.109062135687172,4.59511985013459,8.719807451477955,6.555356891810665,10.37695392954475,36.99999999999999,19.138194602099656,4.683881876104341,0.0,0.0,0.0,2.3155648236895465,4.636470723908047,0.0,58.06,0.0,11.935343643091079,0.0,0.0,0.0,0.0,0.0,0.006544801460738103,67.68477722618405,15.116608065707286,16.169309733438947,0.0,61.72829760552378,6.4208216229260096,6.923737199690624,11.257379486545457,54.59730361615449,0.0,10.902924932081056,0.0,34.596703022229626,40.35269281437126,41.60228277916845,419.31492081289014,,340.63615676593594,332.92972242541026,326.1650453953588,340.70144388580366,458.48771249026754,337.3514374787394,341.1017808644591,422.49099120947903,41.60228277916845,419.31492081289014,,339.84995177849714,331.9506473867575,325.11715659441796,339.9172416999802,460.73903067574224,336.48807621586496,340.3268003042143,423.71411168580903,4.867719980652808,329.35290412883313,,272.5425907908101,266.34912232310563,260.8061327974917,272.59479190992784,366.373249042575,269.89851156623655,272.91726749684534,337.9667575421183,1.3420091219086596,13.526287768157747,,10.988263121481804,10.739668465335814,10.521453077269639,10.990369157606569,14.789926209363468,10.882304434798046,11.00328325369223,13.628741651918679,2.4339688872554963,209.6574604064451,,170.28421522839992,166.4176413179866,163.00257138279864,170.31693863716077,228.53291366024703,168.63586847919763,170.5178544940013,210.85924703326697,57.32941176470588,0.0,2.0421285564352094,0.0,0.0,0.0,0.0,59.52002913328478,7.684035906927601,2.8727932795428277,0.0,0.0,0.0,6.851708453407623,0.0,0.0,0.0,37.36112008955833,631.5505855074263,85.8259416590066,194.9926785007181,259.82625431256037,319.6585482343476,321.6585482343477,321.6585482343477,1074.0,143.62262038940156,80.21836290321129,80.60412406689507,51.71,51.71,0.8888888888888888,8.684714684855747,6.129283016944966,4.280760625033003,5.495011702203945,,5.504718929858174,5.50509036369593,5.505168700728441,5.504715051555474,5.5004747026739205,5.504867622458038,5.504697313821154,5.502175650481592,0.13808905242041944,0.17725844200657886,,0.17757157838252174,0.17758356011922355,0.1775860871202723,0.17757145327598303,0.17743466782819098,0.1775763749180012,0.17757088109100497,0.17748953711230944,2.585532821424372,2.8352428289538705,,2.837007823115807,2.837075296371336,2.8370895261968205,2.8370071185741006,2.836236509582145,2.8370348345933345,2.8370038962887087,2.8365456983260615,325.8800000000011,603.9421086493825,205.11795928016434,,203.69523230184174,203.67295666482403,203.70665710687297,203.69557584527578,204.0037227001045,203.6879144266322,203.69637918419605,203.8413790960305,19.48200350481879,6.616708363876269,,6.570813945220701,6.570095376284646,6.571182487318483,6.57082502726696,6.580765248390468,6.5705778847300715,6.570850941425679,6.575528357936467,7.534880458225353,6.45498733626676,,6.448027028960707,6.447917665305699,6.44808311512688,6.448028715515373,6.449540353698739,6.447991102706668,6.448032659328747,6.44874424943301,0.0,23.470933972603042,4.112899415694481,5.71192941144594,0.0,19.144739403560393,1.0007574681744955,8.725406995188315,0.0,386.5196942158792,147.62568387810524,-338.4158616579937,-17.70499547252865,-5.640264360966562,-18.800881203221874,358.9893520434797,822.9441361853513,21.081234747711207,13.71573560308919,19.593908004413127,3154.0,49.0,1.840873975918055,0.9173721726899969,0.0,0.0,0.3559047456524247,0.1120324052873257,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.05590169943749474,0.48864194209635603,0.17124056175463973,0.6692889708448326,0.21022014162640337,21.20853153444066,18.05010934466271,15.169836433395457,11.152699254694571,13.659825781902626,8.42861516119522,11.802500105726365,6.3568131387932,10.06736464769571,4.6138088992321915,8.098000007187728,3.2219768784673968,5.539835230538019,1.940398758253539,4.090705393282271,1.257921588942496,4.4337471532445525,1.9667306960824888,7.2342503106649865,2.713152384164532,10.668408721864468,3.455700020196226,104.88559263787121,61.46277696824477,32.97188262283036,25.718434130625763,25.58820444410548,25.58820444410548,168.0,199.0,67.38899699999999,36.80100300000001,0.48333333333333334,295.06,7.861111111111111,6.722222222222223,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,16.0,17.0,60.0,0.0,1.0,64.0,17.0,1.0,9.0,55.0,18.0,35.0,46.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,4.0,1.0,3.0,31.0,6.0,0.0,5.0,1.0,0.0,5.0,5.0,0.0,0.0,0.0,1.0,3.0,3.817712325956905,7.105819775859443,4.394449154672439,4.964591355594849,5.541753621130009,6.086348499726768,6.309918278226516,6.639957529835732,6.954623955418697,7.202719366834291 +6398764,CC(C)OC(=O)OCOP(=O)(CO[C@H](C)Cn1cnc2c(N)ncnc21)OCOC(=O)OC(C)C,0,28.06153846153846,6.735663076923079,3.076923076923077,9.466286799620134,168.88163331797801,111.86976009896377,1.4151758022379999,6.7398092307692306,5.631836874069384,8.241142907692309,199.33214367205852,30.484848484848484,6.720272727272728,3.5606060606060606,7.335016835016835,151.92373314051974,117.46514651660607,1.619303413333333,6.833171212121211,3.3429900860456416,8.164132666666667,239.45177115581072,24.452173913043477,6.958022608695653,3.121739130434783,7.170048309178745,166.0554540919441,92.09516701907826,1.274972736043304,6.972053043478261,4.346712292002147,8.466360747826085,186.02818074485614,21.290076335877863,6.695493893129771,2.854961832061069,4.933842239185751,163.77956624773333,77.82613862780154,1.2568272197742976,6.736224427480916,3.501146608865014,8.245345541984733,177.47897068198552,19.85135135135135,6.709626351351352,2.5878378378378377,4.581831831831832,167.83903541851515,72.5334615988108,1.1542117003092702,6.724622297297298,4.052347486375265,8.271750675675676,159.70277387470168,19.886524822695037,6.7280014184397166,2.617021276595745,3.4263199369582344,167.83540047151473,71.25703453734751,1.1433145469349575,6.749722695035461,3.4712809736450403,8.342856609929079,158.7350581845508,20.902255639097746,6.8850751879699255,2.6390977443609023,5.309941520467837,166.0601141475965,76.25905152276691,1.1837876579968722,6.8949601503759395,4.583139948637024,8.432040270676692,165.44143512843846,20.111888111888113,6.532925874125874,2.5734265734265733,4.265734265734266,167.22534226410963,73.88887413892307,1.1872182038301746,6.560323776223777,3.4120981898759677,8.149956265734264,155.0416810434573,21.204379562043794,6.835284671532848,2.708029197080292,5.254663422546634,167.91859299833445,76.54174693369343,1.2311558027242702,6.850450364963503,4.164196028956774,8.418059299270073,168.35353488174354,10.29207100591716,0.2206031715976331,0.03940956771949383,0.6144378698224852,5.369987581269633,1.3836092286472534,48.005623425162895,0.292104435429929,0.19880624852071002,2.042557293456312,0.1441413263905325,44.88715362562173,2.0128240989779456,-0.03282652824098974,-0.03052665615073643,0.17414021875560337,1.4888371331106376,-0.7534722370549198,9.032329391624973,-0.09306490352388706,-0.020739745024206502,-0.36592424175467336,-0.024742828954635095,-5.710138277986164,1.6806380241831744,0.06777646719835353,0.0099285939216576,0.03051196295343453,1.2561968194075217,0.21782739029280684,7.771676300909999,0.03347141385466364,0.05951413943915625,0.5765248882202514,0.048218571134551066,6.175977866308308,-0.906163783368716,-0.0197701240345092,-0.004195948200899508,-0.03710375355707122,-0.28440730535856773,-0.1655391774225776,-4.211793236540242,-0.03575111048310046,-0.017482255567098724,-0.1818394898152842,-0.014175675421654084,-3.312249504596733,0.4228978090516552,0.01776735854789704,0.004892761761731293,-0.017868223252838634,-0.34447103908642357,0.03750788661596082,1.9485987149622745,0.021573113700955618,0.01515675563729414,0.04138384636188524,0.013320085563729413,-0.28896175555984327,-1.7174938100633683,-0.0724607275168911,-0.008157212319910285,-0.06222837718746065,-1.715057728703846,0.001251425037957127,-7.964306474378784,-0.03307715338428962,-0.06397834890259757,-0.666973917445726,-0.04560912137143814,-2.2447330343786858,-0.3443555634648752,0.021206429327757324,0.0053054205631070045,0.01633136094674558,-0.032010159081683955,0.014156876801360952,-1.7842350488192154,0.01666577036424682,0.01503968554522411,0.3818230457794526,0.019616488415713847,-5.823341528563401,1.0041097364174287,-0.0013399655728886504,-0.0020114742672958062,-0.0009897794513179176,0.21598390213774823,-0.06556863057140883,4.821515731419534,0.029209312222059705,0.0010066724045185503,-0.0329360046762706,-0.0034065712533620225,3.7627961396056593,-2.2569222131041338,0.009727350580918285,0.00604015932333938,-0.07552714551030104,0.12098087174261611,0.2462942155611569,-10.169840977548382,-0.021891527912193474,0.00712651958709462,0.015860470822270354,0.0015973448054247938,2.5457740654645415,,,0.4523809523809525,1.0785714285714285,0.37142857142857144,0.014285714285714285,0.7071428571428572,-0.3357142857142857,1.0329376313422354,0.02650067031560143,0.03141495602988714,1.0011772170033697,0.21810646662025027,0.2529418219890939,2.034114848345605,0.47104828860934417,1.9731974306936775,1.0718659866654692,0.28929254982227226,0.5461466947396263,0.0,0.9013314440282088,7.987277366000014,1824.0,437.81810000000013,200.0,615.3086419753087,10977.306165668571,7271.534406432645,91.98642714546999,438.0876,366.06939681450996,535.674289,12956.589338683803,2012.0,443.538,235.0,484.1111111111111,10026.966387274302,7752.699670096001,106.87402527999998,450.98929999999996,220.63734567901236,538.832756,15803.816896283508,2812.0,800.1726000000001,359.0,824.5555555555557,19096.377220573573,10590.944207194,146.62186464497998,801.7861,499.8719135802469,973.6314859999999,21393.240785658458,2789.0,877.1097,374.0,646.3333333333334,21455.123178453065,10195.224160242002,164.64436579043297,882.4454000000001,458.65020576131684,1080.140266,23249.745159340102,2938.0,993.0247,383.0,678.1111111111111,24840.17724194024,10734.952316624,170.823331645772,995.2441000000001,599.7474279835392,1224.2191,23636.01053345585,2804.0,948.6482000000001,369.0,483.1111111111111,23664.791466483577,10047.241869765998,161.207351117829,951.7109,489.4506172839507,1176.3427820000002,22381.643204021664,2780.0,915.715,351.0,706.2222222222223,22085.995181630333,10142.453852527999,157.44375851358402,917.0296999999999,609.5576131687242,1121.461356,22003.710872082316,2876.0,934.2084000000001,368.0,610.0,23913.223943767676,10566.109001866,169.77220314771498,938.1263000000001,487.93004115226336,1165.443746,22170.960389214393,2905.0,936.4340000000001,371.0,719.8888888888889,23004.847240771818,10486.219329916,168.668344973225,938.5116999999999,570.4948559670781,1153.274124,23064.434278798864,668.9846153846154,14.33920615384615,2.561621901767099,39.93846153846154,349.0491927825262,89.93459986207148,3120.365522635588,18.986788302945385,12.92240615384615,132.7662240746603,9.369186215384612,2917.664985665412,132.8463905325444,-2.166550863905323,-2.0147593059486044,11.493254437869822,98.26325078530208,-49.729167645624706,596.1337398472482,-6.142283632576546,-1.3688231715976291,-24.15099995580844,-1.6330267110059162,-376.8691263470868,193.27337278106506,7.794293727810656,1.141788300990624,3.508875739644971,144.462634231865,25.050149883672788,893.74277460465,3.849212593286318,6.844126035502969,66.3003621453289,5.545135680473373,710.2374546254555,-118.70745562130179,-2.5898862485207053,-0.5496692143178356,-4.86059171597633,-37.25735700197237,-21.685632242357666,-551.7449139867716,-4.6833954732861605,-2.2901754792899327,-23.82097316580223,-1.8570134802366849,-433.904685102172,62.58887573964497,2.629569065088762,0.7241287407362313,-2.644497041420118,-50.98171378479069,5.551167219162202,288.39260981441663,3.1928208277414316,2.2431998343195327,6.124809261559015,1.971372663431953,-42.76633982285681,-242.16662721893493,-10.216962579881645,-1.1501669371073502,-8.774201183431952,-241.8231397472423,0.17645093035195492,-1122.9672128874086,-4.663878627184836,-9.020947195266258,-94.04332235984737,-6.430886113372778,-316.5073578473947,-45.7992899408284,2.820455100591724,0.7056209348932316,2.172071005917162,-4.257351157863966,1.8828646145810066,-237.30326149295564,2.2165474584448273,2.0002781775148066,50.782465088667195,2.6089929592899415,-774.5044232989324,143.58769230769232,-0.191615076923077,-0.2876408202233003,-0.14153846153846222,30.885698005697996,-9.376314171711462,689.4767495929933,4.176931647754538,0.1439541538461527,-4.709848668706695,-0.4871396892307692,538.0798479636093,-309.1983431952663,1.332647029585805,0.8275018272974951,-10.347218934911243,16.574379428738407,33.742307531878495,-1393.2682139241283,-2.999139323970506,0.976333183431963,2.1728845026510384,0.21883623834319674,348.77104696864217,0.7431388834768968,0.6001573375149225,0.45796361392575136,0.3415056550869561,0.31668234029250164,0.19709260548793672,0.19276219445160092,0.09781129979477048,0.13025539657456875,0.05286789219921035,0.08073300014550767,0.03090997207857468,0.0546488970385437,0.016651357682695756,0.034449911058471366,0.009629538390438027,15.010262918528246,5.761457543701369,3.5731824442294924,1.9972014654075663,0.5903635145804739,-0.46552908194946174,4.02946267036332,0.9771861011740645,6.0391327809962405,0.5369811488749747,14.564365825929107,10.45400331393533,30.978571263683182,11.78489360442423,3.6575621672373178,0.7296320473442388,3.5204124901366156,2.1179336940288174,7.0100494399843924,0.29064144672500447,3.733880029242882,2.4300294411369863,24.43821865705151,14.697835254385963,0.29504414163466597,0.5669927314427888,0.7170229840477713,0.732841819314136,0.7597567648902342,0.7597567648902342,1.8423607826109687,998.6173712074261,0.0,2.0,6.0,0.0,1.0,3.0,0.0,0.0,0.0,4.196096339184525,2.5127822792374177,1.5841213370881242,1.4862055220635035,1.319606730935651,1.319606730935651,225.4786959471865,3850.693225620797,108.12190831707576,59.24143424031995,124.18666536626615,,16.0,913.0,58.152247730364785,14.154122653074971,12.362619183747604,11.16387793838399,0.0,12.654640149529083,39.18578564624447,0.0,14.951935562841626,38.465476569586066,15.833333333333337,37.75,13.0,0.5,24.75,0.0,0.0476190476190475,-11.75,0.22510331092855357,0.010776884806735665,-0.2143264261218179,0.03624195624195636,0.24785672227674177,0.0,0.6610256410256398,0.9704761904761905,0.4359223300970862,0.6502487562189041,0.9342342342342341,36.15281709697824,0.9275234610460501,1.09952346104605,35.04120259511794,7.633726331708759,8.852963769618286,71.19401969209618,16.486690101327046,0.4661432777232582,0.24631578947368413,0.0631578947368421,0.2778947368421052,0.631578947368421,0.3610169107835967,-1.7137714692410408,-0.08367063699255521,-0.026365714911400634,-0.08568857346205207,0.6389830892164032,3.033295546321347,0.049620153667327714,0.04666608532802071,0.06740656769602994,-2.2785704617204745,0.7725865034300321,0.9365194495752093,1.939520368842328,1.0683102208525936,0.5320251681442358,1.9938671283245906,0.7804231406366581,1.7922894521237893,0.8685388763973797,0.8202670651674945,0.977218392337529,1.2518216233947899,0.8834673823055358,0.8254306927856311,0.8465471386954463,1.1635291753198902,0.8533449518634755,0.9200243581595852,0.8803713895727051,1.0086114259750092,0.816461757135096,0.5503823227798377,0.821796241465271,0.82348381579408,1.1648050243627384,1.129855684754254,1.3250285098474637,1.1926745786236017,1.071084234776007,1.2214335492215747,1.1602855464199653,1.3774599438813115,1.1137670064670497,0.9423119324109261,1.155986139628194,1.0806219564849853,0.9715409457843457,0.998603285617565,1.0143388460839784,1.0177820347311872,1.109002506716225,0.9618422089762754,0.9697752843300507,0.9312787298044446,0.9962833720828778,1.1866995117332448,0.9991084461220529,0.9655152283351424,1.4048176846330043,1.5459720091667475,1.3310860497715093,1.170595241998055,1.4322932730534426,0.9821550538226368,1.3931659700175503,1.4937592954345975,1.5201718457314994,1.6133176721450535,1.5624383477136703,1.0141854137997475,1.025367207919532,1.0664522171882562,0.9408006174345388,0.8855729462330713,1.0799969390387572,0.9883821807575656,1.0258103201151294,0.9252771873644381,1.0735922802265896,0.99641073450782,1.0662912866066925,1.0786824531034414,1.1289418887615925,1.1098573070590834,1.1091470001804713,1.05897184479619,0.994404997748227,1.010719066154014,1.1178381025002684,1.2923907287405505,1.088482471449492,1.000573703184851,1.1421325307917451,0.9232417722266475,1.623552114478553,1.2103067471102193,1.1055898451660433,1.380225613802256,1.1065175880830846,0.859182253014017,1.6002662526306681,1.7799289875196789,1.1910732926572096,1.2964312342190432,1.2644533025826314,0.9263606314213607,9.5,0.308441995714723,4.000000000000002,2.7569444444444446,1.4933333333333336,1.1391666666666664,0.7094331065759637,0.6866142290249433,0.5215655706727135,0.34375771604938277,8292.628328859402,9331.342909186522,3834.26441367206,3533.0028133086453,17.81008741382066,0.4752036493882174,9.346668878849924,0.9055010554746572,0.0,0.631578947368421,1.8262714738439298,3.5095855337910367,4.43824647594033,4.536162290964951,4.702761082092803,4.702761082092803,0.2638888888888889,0.0073438570408267375,0.08163265306122451,0.058658392434988174,0.03177304964539008,0.027784552845528453,0.016498444338975897,0.01596777276802194,0.010865949389014862,0.007812675364758699,0.5222262357776182,31.219135802469136,15.421074552269888,11.509421487603305,201.2210250232301,0.0,4.442947062521622,261.1831384722357,,178.49566304058027,201.0372810026711,213.0132208131916,178.16585750725554,398.8922093619927,204.59085893958385,204.33041910846137,312.3429229782936,0.19557036652979992,-0.14880351902131014,-0.7746001267513651,0.2834138768268198,0.2772515039520128,-0.5445701152135167,0.18815148616298435,-0.3186014734316206,-0.10432139421435743,-0.17915005024680353,-0.17165673144700752,-0.1272109683231685,0.16329444513324237,0.3072325148705193,0.2519335911605661,0.04965833724124071,0.2339291851975787,0.15743418429333214,0.1618909566506401,0.11458714690654832,0.2993574894249692,0.28225640968175,0.3345228765545629,0.13758898409595394,-0.08804484372948268,-0.08961849411017861,-0.10647029246210164,-0.06038650184076498,-0.05296237673818324,-0.11964301335603568,-0.08773541381263605,-0.12239153585764895,-0.08793614736549675,-0.0890254047697162,-0.09834567071519033,-0.0737905890006376,0.04108967075805453,0.08053990529340001,0.12415162217856815,-0.02908060217382251,-0.064147455440666,0.02710872827339556,0.040591051129665906,0.07385411203771552,0.0762388292625281,0.02026080075915892,0.09240990004240937,-0.006437515685888869,-0.1668754334356943,-0.32846639054244925,-0.20698558223147784,-0.10127692358128708,-0.3193783417090049,0.0009044642172419144,-0.16590361516280547,-0.11323742255267562,-0.3218125656444487,-0.32653865797669074,-0.31641946493447726,-0.050008362149686084,-0.03345833537942917,0.09612930391788099,0.13462265307931032,0.02657935285053932,-0.005960937264237722,0.010231846180443625,-0.03716720920416129,0.057054150306610665,0.07564996400833647,0.18693382408546833,0.13609204873393133,-0.12973292040597156,0.09756148552027497,-0.006074099312283084,-0.05104025199192521,-0.0016108698697296618,0.040220558962015866,-0.04738955856453407,0.10043647780006251,0.09999612699844311,0.005063585335013669,-0.016124886573212326,-0.023633550062751283,0.08382790699960631,-0.21928747011233937,0.0440943369511495,0.1532663176194047,-0.12292072025463092,0.02252907849630677,0.17800850880559482,-0.2118468681778998,-0.07494418179570878,0.03584655733973189,0.0077650065792926005,0.011081796216422987,0.05671498100987642,3.0182113100780295,8.902724374457158,4.161356613850347,20.25254991059831,38.42919595137252,41.705052486088654,42.41478046056006,42.58271204201694,42.58271204201694,69.06191007427871,37.51530953329142,10.125239243779529,19.11513431588692,0.0,31.546600540987306,13303.734700925073,10557.35781764292,3869.561088427031,78.0,49.0,55.0,67.0,71.0,76.0,79.0,86.0,78.0,519.1730287900009,36.0,5.14166355650266,5.937536205082426,6.799055862058796,7.617267813628347,8.484049972822984,9.316050826398296,10.18667202593546,11.028790456457282,11.902484743394616,0.7025641025641026,1.0209846153846154,1.1493568350071288,0.6653487661950904,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6345812068171348,1.0029562594268477,1.0362429267746092,0.6038812412907673,2.0,3.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,5.0,0.0,0.0,1.0,0.0,4.0,0.0,7.0,0.0,3.0,0.0,0.0,0.0,0.0,33.98508189395379,18.19199116143563,11.465039998602755,13.585884612199655,0.0,13.612542608354964,24.54100993098527,0.0,0.0,0.0,34.61868599845312,0.0,31.183975643922025,292.8472187419182,-1390.165372688943,-67.87137278542068,-21.3871595798299,-69.50826863444718,518.3259146891047,2460.527852931854,40.25053553165509,37.85427466049005,54.67839673181898,0.5,0.7043631309946149,0.09090126701709202,102.14532894744949,0.10746949308765318,72.97856002557504,0.29563686900538505,8.0,0.3611111111111111,0.30324807958309624,0.5827584170795074,0.7369603806560727,0.7532190712682262,0.7808824083974267,0.7808824083974267,3.0356000000000014,,3.814285714285714,3.571889386348132,2.783819130125476,3.817376858654597,-12.873906830719342,3.2287467933133254,3.0944140611891706,-5.428989046625933,120.06390000000003,46.88593174549885,0.0,19.51903521063298,0.0,59.4753415676106,25.66752245841667,12.654640149529083,0.0,0.0,4.290459441148391,0.0,5.594711379601839,2.3978952727983707,7.055312843339752,4.727387818712341,8.596558746796978,6.842683282238422,10.186521338423402,45.66666666666667,2.829709731913974,12.196910667270393,0.0,0.0,0.0,0.9358016068957393,0.23667545760694542,1.6812951341387488,66.364,0.0,36.13483548562588,0.0,0.0,0.0,0.0,0.0,-2.04472902823559,74.70819427546337,5.733667477162185,15.40693714597867,0.0,70.07552061420989,43.84161378326779,0.0,34.61868599845312,12.654640149529083,0.0,11.16387793838399,0.0,43.247669802680875,41.247778443113766,41.67206561114944,522.3662769444715,,357.3969933897441,401.87045404040805,425.8673662475189,356.7625266771795,799.8460701018118,408.997218062407,408.48401455628334,625.1014169287184,41.67206561114944,522.3662769444713,,354.02063820625665,398.52355287497693,423.2945172753574,353.38333534339324,810.8118248966912,405.96129039126384,405.5677441909054,630.114835003213,4.750579922993449,367.88883953947425,,252.58531482614933,288.4383908351018,303.2640162297934,252.06597185310034,556.5791473701091,292.9520772097127,292.16527174791753,438.7083452027057,1.1906304460328412,14.924750769842042,,10.211342668278403,11.482012972583087,12.167639035643397,10.193215047919415,22.852744860051768,11.685634801783058,11.670971844465239,17.86004048367767,2.436237841068626,261.1831384722357,,178.49566304058027,201.0372810026711,213.0132208131916,178.16585750725554,398.8922093619927,204.59085893958385,204.33041910846137,312.3429229782936,65.19215686274511,0.0,8.21312332025701,0.0,0.0,5.786987144350263,0.0,67.35579024034959,-1.7884793049196006,0.0,34.88287364701853,0.0,-1.3678378872505248,0.0,0.0,0.0,0.0,39.25228068389987,571.3604480421878,118.70764579985544,228.12305969641739,288.48602093612146,294.8505489127218,305.67947033603224,305.67947033603224,710.0,147.41357146228086,239.81268538883506,84.6915301230595,195.24999999999997,185.43999999999997,1.0,8.048055437192504,6.169925001442312,3.67946955814334,5.8156354589453905,,5.79546158452719,5.82245901956417,5.817817928662045,5.794967190660775,5.794883231476418,5.821043860373768,5.81900710746426,5.809667523220164,0.10512770166123829,0.16616101311272544,,0.16558461670077684,0.16635597198754773,0.16622336939034413,0.16557049116173642,0.16556809232789765,0.16631553886782194,0.1662573459275503,0.16599050066343327,2.5555315684779036,3.01331302776379,,3.0098380943198793,3.0144856529582795,3.0136882335895314,3.0097527836076865,3.009738295209424,3.014242571608627,3.013892615592812,3.012286312802703,360.1100000000013,4842.788378689782,230.02033091028954,,231.8989993477922,228.5613535883599,229.12491942747525,231.9603486608837,231.59376949704853,228.73924913895522,228.99061760158548,230.04539207216493,138.36538224827947,6.572009454579701,,6.625685695651206,6.530324388238855,6.546426269356435,6.627438533168106,6.616964842772815,6.535407118255863,6.542589074331014,6.5727254877761405,9.738008913617183,6.690930668774061,,6.699064897731556,6.684567648645536,6.687030323002039,6.699329414610271,6.697747811833416,6.6853456732468945,6.686444000038151,6.691039614781765,49.65869524338486,35.23721969066869,0.0,6.722788751246003,0.23667545760694542,0.0,-1.1353415940029794,6.977128425768247,-4.0582770857828745,437.5618330707858,237.54979604344197,-1127.664801351396,-55.05543413261475,-17.34868925155994,-56.38324006756981,420.4520563568621,1995.9140883570392,32.65015302948939,30.706370590108286,44.35364640793421,4401.0,47.0,3.2838331340468923,1.5334798259362734,0.1767766952966369,0.06454972243679029,0.21982198216447035,0.04602651114043274,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.25967970078748703,0.06218987247003249,0.4643530549265357,0.0810601451395072,26.009860921691388,21.005506813022286,16.48669010132705,12.294203583130418,15.51743467433258,9.6575376689089,10.60192069483805,5.3796214887123766,8.727111570496106,3.5421487773470934,5.732043010331045,2.194608017578802,4.153316174929321,1.2655031838848774,2.721542973619238,0.7607335328446041,4.883798493019521,1.8438562047395248,7.59450642256238,2.1512428823611462,8.987836915276496,2.2159693327136654,119.16356041479631,55.52859982722318,44.595069340510825,42.33954242454337,41.030936868597685,41.030936868597685,170.0,189.0,68.88378999999998,57.252210000000076,0.13846153846153847,106.16,14.0625,7.791666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,65.0,0.0,0.0,66.0,10.0,3.0,7.0,59.0,13.0,36.0,53.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,15.0,1.0,2.0,35.0,16.0,0.0,5.0,10.0,1.0,2.0,13.0,0.0,0.0,0.0,2.0,2.0,3.8066624897703196,6.183891125760131,4.3208159036289855,4.717382176595019,5.231442785612917,5.586546164518181,5.87409646440921,6.151684938552473,6.43559307168219,6.177879277923887 +4011,CNCCCC12CCC(c3ccccc31)c1ccccc12,0,18.0,5.585111363636364,3.2045454545454546,4.5,159.0962086629029,70.56472593181817,1.527593109352886,5.695718181818182,2.0670770202020203,7.171286999999998,214.28587113908353,21.595744680851062,5.970297872340426,4.085106382978723,5.0212765957446805,142.1942482240446,80.65450655319144,1.9204520663829794,6.141851063829788,2.416666666666667,7.410628765957441,267.45881565534893,17.735632183908045,5.82948275862069,3.8505747126436782,4.022988505747127,148.43669726802975,64.64503925287354,1.693242446307955,5.974563218390804,2.1187739463601534,7.331929517241375,228.49211389666732,14.733870967741936,5.640588709677419,3.346774193548387,2.967741935483871,152.0552176999526,52.728084870967734,1.5053096200905234,5.770125000000002,1.9087141577060935,7.202219096774192,196.20308583104816,13.231884057971014,5.614804347826085,2.9420289855072466,2.2028985507246377,152.5054502415368,45.814504934782605,1.433991866423015,5.74005797101449,1.9109299516908211,7.187337188405794,181.83193686985794,11.020134228187919,5.529093959731542,2.4563758389261743,1.6375838926174497,155.81905582242257,36.66774599999999,1.2790564101668858,5.639151006711411,1.8652125279642056,7.1364604026845635,155.75467914613276,9.014285714285714,5.45502142857143,2.1,1.2142857142857142,162.02704770540464,29.012961264285718,1.096073724448229,5.5399,1.791666666666667,7.1047318000000015,128.31500675500882,8.514285714285714,5.476771428571429,1.9238095238095239,1.0095238095238095,164.57029497560728,26.932394685714286,1.0350281026120187,5.5508999999999995,1.8238095238095238,7.132373866666669,119.69376391940476,7.0131578947368425,5.428552631578948,1.7105263157894737,0.5131578947368421,167.14724036720486,20.66467040789474,0.9537467787561841,5.492059210526316,1.763157894736842,7.107785210526316,105.63149256630815,6.378099173553719,0.03373279958677683,0.0046610144526206465,0.600723140495868,2.514462809917355,1.4200777933804047,30.81428020816116,0.24471567254239,0.039969421487603254,0.192044737144169,0.01201380785123966,54.94087009130263,0.43234570072094247,0.0011722294267627578,-0.0008718755638933637,0.33738130824687884,0.8907596272199755,0.08954315672628829,2.0957338614713446,0.017563854399896314,0.0018180059785475192,0.013793566101049173,0.00018823470195185646,3.9443592019664035,-0.031181723187992925,-0.004964539398689103,-0.0008956943501028173,0.1296843830151041,0.29117982331148473,0.24027920862473284,-0.08367197488006747,0.02125818977163222,-0.0047375510591811795,-0.01971257935942498,-0.002135315688230239,3.2364554956527285,0.34770727805918394,0.00012953545721140235,0.00021650844221997155,-0.022460677152759203,0.02146094374833376,0.13923735402479903,1.7002043704678773,0.019604612007977525,0.0006280125299919893,0.0015571079193696469,-0.00014355785123966317,4.000646245564631,-0.6896933764522697,-0.0034400624326266635,-0.0001387159835066176,-0.1486480416816385,-0.44726913402802737,-0.09544402664984114,-3.3257665251901423,-0.022885527774538353,-0.004300778536351659,-0.01769938141294367,-0.0010547544915558696,-5.455525388411277,-0.8326446280991736,-0.0014330131316212728,7.142165713605905e-05,-0.10560416551112099,-0.3109850795939875,-0.2698314041236041,-4.05499035032101,-0.041312792409992784,-0.002581135947639905,-0.010829268701351528,-0.00012908057851239953,-8.706918817178462,-0.11056670602125147,0.0017285153482880825,0.0001412290440489465,-0.056404958677685954,-0.12160566706021254,-0.1636617638054938,-0.5691226323494701,-0.01637937528429599,0.0015469421487603408,0.007848165092483277,0.0007479239669421402,-2.8259210600481035,-0.12355371900826438,0.0007586289846517178,-8.510772018148228e-05,-0.036653876426603726,-0.14519874065328597,-0.13715359841095115,-0.6215716159533663,-0.01378642565258912,0.0006560330578512493,0.006029757805325988,0.0002953315426997202,-2.4372509553261628,-0.3840800347977379,-0.0036944921705089027,-0.0006617981167432307,-0.016991083079599872,-0.2638647237929533,0.0026702086492471897,-1.832046433340585,-0.006789060785344852,-0.003987244454110466,-0.013324973720458176,-0.001437368856024365,-2.0705792894765964,,,0.49523809523809526,1.1666666666666667,0.5714285714285714,0.0,0.5952380952380952,-0.023809523809523808,0.919351399283831,0.002289283102748859,0.022765473578939332,0.6962866821285174,0.20657173129972667,0.28705391713910045,1.6156380814123483,0.4936256484388271,2.1039628085127835,2.015252983037416,0.08870982547536685,0.0,0.0,0.08870982547536685,6.299614766727287,792.0,245.74490000000003,141.0,198.0,7000.233181167728,3104.8479409999995,67.21409681152699,250.6116,90.95138888888889,315.5366279999999,9428.578330119675,1015.0,280.60400000000004,192.0,236.0,6683.129666530096,3790.761807999998,90.26124712000004,288.66700000000003,113.58333333333334,348.2995519999997,12570.5643358014,1543.0,507.165,335.0,350.0,12913.992662318587,5624.118414999998,147.3120928287921,519.7869999999999,184.33333333333334,637.8778679999996,19878.813909010056,1827.0,699.433,415.0,368.0,18854.846994794123,6538.282523999999,186.6583928912249,715.4955000000002,236.6805555555556,893.0751679999997,24329.18264304997,1826.0,774.8429999999997,406.0,304.0,21045.75213333208,6322.401680999999,197.89087756637605,792.1279999999997,263.7083333333333,991.8525319999997,25092.807288040396,1642.0,823.8349999999997,366.0,244.0,23217.039317540963,5463.494153999998,190.57940511486598,840.2335000000003,277.91666666666663,1063.3326,23207.44719277378,1262.0,763.7030000000002,294.0,170.0,22683.78667875665,4061.8145770000006,153.45032142275207,775.586,250.83333333333337,994.6624520000003,17964.100945701237,894.0,575.061,202.0,106.0,17279.880972438765,2827.901442,108.67795077426197,582.8444999999999,191.5,748.8992560000003,12567.8452115375,533.0,412.57000000000005,130.0,39.0,12703.190267907568,1570.514951,72.48475518547,417.3965,134.0,540.191676,8027.99343503942,280.6363636363636,1.4842431818181805,0.20508463591530843,26.43181818181819,110.63636363636363,62.48342290873781,1355.828329159091,10.767489591865159,1.7586545454545432,8.449968434343436,0.528607545454545,2417.3982840173157,20.320247933884296,0.055094783057849615,-0.04097815150298809,15.856921487603305,41.86570247933885,4.20852836613555,98.4994914891532,0.8255011567951267,0.0854462809917334,0.6482976067493111,0.008847030991737254,185.38488249242096,-2.7128099173553846,-0.43191492768595197,-0.0779254084589451,11.282541322314056,25.33264462809917,20.904291150351757,-7.27946181456587,1.8494625101320032,-0.4121669421487626,-1.7149944042699732,-0.18577246487603077,281.5716281217874,43.11570247933881,0.01606239669421389,0.026847046835276472,-2.785123966942141,2.6611570247933862,17.26543189907508,210.82534193801678,2.4309718889892133,0.07787355371900667,0.19308138200183622,-0.017801173553718234,496.0801344500143,-95.17768595041322,-0.47472861570247954,-0.019142805723913227,-20.513429752066113,-61.723140495867774,-13.171275677678077,-458.9557804762396,-3.1582028328862926,-0.5935074380165289,-2.4425146349862263,-0.14555611983471,-752.8625036007562,-124.06404958677687,-0.21351895661156967,0.010641826913272798,-15.735020661157028,-46.33677685950414,-40.20487921441701,-604.1935621978305,-6.1556060690889245,-0.38458925619834583,-1.6135610365013777,-0.01923300619834753,-1297.3309037595907,-15.479338842975206,0.24199214876033157,0.01977206616685251,-7.8966942148760335,-17.024793388429757,-22.912646932769132,-79.67716852892582,-2.293112539801439,0.2165719008264477,1.0987431129476588,0.10470935537189963,-395.6289484067345,-12.97314049586776,0.07965604338843037,-0.00893631061905564,-3.848657024793391,-15.245867768595026,-14.401127833149872,-65.26501967510346,-1.4475746935218576,0.06888347107438117,0.6331245695592288,0.031009811983470623,-255.9113503092471,-29.19008264462808,-0.2807814049586766,-0.05029665687248553,-1.2913223140495902,-20.05371900826445,0.2029358573427864,-139.23552893388447,-0.5159686196862088,-0.30303057851239545,-1.0126980027548214,-0.10924003305785174,-157.36402600022134,0.6802974420266571,0.6062707775542558,0.4319224423839738,0.34170663624219005,0.25721169257940135,0.18728501291508376,0.1556392837384101,0.10358648759934858,0.09627625200088594,0.05825105589397337,0.0602008052898397,0.03267329443207165,0.03847206603694869,0.019194457766548583,0.025545422323261548,0.011156654556068072,7.021807356202334,5.669597669952207,3.107142774452626,2.1695973471591063,0.33724172984584894,-0.34228439979576747,4.030171843585777,0.9879348610027452,4.230972223598052,0.9959562516029477,14.540850413906293,10.929898071023596,14.018047673843206,11.68059794512203,2.014343714364383,1.0631992765518314,3.082596821475714,2.2195972462916824,2.532645114158785,1.14209732903389,3.2401231764268448,2.415597184216934,20.923809603473178,15.594095929648585,0.19733682632253285,0.48769096475539025,0.648577854160824,0.7517407900983051,0.7993544528386808,0.8152256737521394,1.634695015563145,610.8929198710237,0.0,0.0,1.0,0.0,8.0,4.0,4.0,1.0,1.0,4.329101974705876,2.6659765661092374,1.7444292614128059,1.1535201705037155,0.8807928977764439,0.789883806867353,182.11151354312452,569.519774092781,29.458226954627094,12.943631229381385,25.091654573039627,,9.0,337.0,0.0,0.0,5.41499046939678,5.917906046161393,6.544756405912575,25.683286491704038,22.253805966787983,0.0,60.895397134376395,0.0,10.4,24.5,12.0,0.0,12.5,0.0,0.004761904761904745,-0.5,0.05263157894736831,0.04285714285714276,-0.009774436090225547,0.01904761904761909,0.025258278145695146,0.0,0.5000000000000002,0.7190476190476188,0.4473684210526319,0.45714285714285746,0.6999999999999997,19.30637938496045,0.048074945157726034,0.478074945157726,14.622020324698866,4.33800635729426,6.02813225992111,33.92839970965932,10.36613861721537,0.6887417218543048,0.04807692307692307,0.04807692307692307,0.24038461538461536,0.4,0.3212239107294413,-0.359185418256354,-0.023756632479365655,-0.008163304960371683,-0.01890449569770284,0.6787760892705587,0.7589922959764035,0.03408074978527283,0.017249824908554624,0.030359691839056138,-6.214555354161627,0.9584599797365755,1.043787921926097,1.2935975307355365,0.6749602092899871,0.6946275284532947,1.0438635637226212,0.9583287558896532,0.9762331145119078,1.0094418935523506,0.9894843011636376,1.1125023734394244,0.9656250833123147,1.0179655879867,1.2686298279687518,1.3278560737904526,1.262193494826103,1.0565315123867813,0.9029612564675324,1.0153203656493386,0.9298386722424714,1.20082917001479,1.0508193296840436,1.3733638291794807,0.9514494459154168,0.9255175188354912,0.8140732435841066,0.6512820669316749,1.475952070562782,1.1283696026718268,0.8993066553882625,0.9262159157946513,0.935033931974133,0.8512129457136317,0.7860016424565992,0.7469787371927461,0.9365810428093371,1.081444862278935,0.9015332403806225,0.691173799591792,1.4323152267374475,1.2110440260559945,1.0534357207798561,1.0826606748030643,1.102294431160552,0.960196320279576,0.9385248353428397,0.7970154700347081,1.1027288164548694,1.094157573543959,0.8384769467161465,0.6575058890508141,1.0099430424671207,1.0303419675403818,1.1473731940867558,1.0964599135763131,1.1594661593040745,0.9134316585408968,0.9686131078505024,0.7146342568338687,1.146666828833179,0.9861006987829146,0.9672483615223024,0.9878184562803292,0.8308438766736269,0.9522185702547249,1.0631356235452314,0.9867219917281336,1.0189581070320548,0.9661618902880298,0.9949113196521626,0.9775242605658814,1.0074693233068457,1.0025174695728631,1.2501811562103997,1.5019043264089398,0.7204520329197884,0.9698008373439764,1.0649440139008186,1.0009912178180296,0.9829714927415338,1.1672673324649008,1.1355510313354127,1.4003949427108353,0.978930743740391,1.0403048437420082,1.4284034127875813,1.757887273770734,0.684979861519663,1.0048923150110283,0.9584201923678335,1.0368032674472838,0.9407475457875941,1.314729643257079,1.279633833083802,1.6160904485927672,0.9603355739765584,3.0,0.0,3.111111111111112,2.0,1.4311111111111112,0.47222222222222227,0.32,0.1736111111111111,0.10632401108591585,0.03125,3699.992379888364,4320.209775060909,1943.622473336013,1709.1275925276748,11.559672567117719,0.45722290402139587,6.274325506443692,0.8423769304359505,1.0,0.4,1.1303296439314214,2.79345505252806,3.7150023572244915,4.305911448133582,4.578638720860853,4.669547811769944,0.125,0.0,0.0888888888888889,0.05,0.03867867867867869,0.015740740740740743,0.015238095238095235,0.01240079365079365,0.01518914444084512,0.015625,0.3767613416380423,14.583333333333334,5.893877551020408,2.2222222222222223,126.94623411728348,1.0,4.013076655877642,80.59566233243311,,69.54069987931832,69.21732209790801,68.91997489579788,69.54340392129953,74.740991674494,69.40203964945015,69.56035368878537,73.13909648576453,0.06778597964008298,0.03475043403223101,-0.1870570393539873,0.5616252904264465,0.3542544450077799,0.0630551066594292,0.06801177399939037,0.07177249506507957,0.04548492099420014,0.07182475451381035,0.015668196485465948,0.07179280552731566,-0.004888873995137212,-0.14717246891761662,-0.19216725440514673,0.2158804518634922,0.11580200039667922,0.1692014407554135,-0.0027153636013833274,0.08686893467335995,-0.11852938778837613,-0.10264576708825217,-0.17773845850297196,0.058907976707945744,0.05451581554280694,0.0038400446686369877,0.04645092702903766,-0.03738939894044867,0.008535001457841857,0.0980491031363524,0.05517585869221694,0.0801117958825526,0.015712324737719083,0.008108047856582071,-0.011949404636503319,0.07281730775133739,-0.1081346272118233,-0.10197974893181293,-0.02976089967466735,-0.24744850274776614,-0.17787860383694762,-0.06721042121406794,-0.1079293919158077,-0.09351884796252309,-0.10760172092272013,-0.0921628037099327,-0.08779518572431914,-0.09929812504507295,-0.13054745707806933,-0.04248129859292824,0.015323200102051253,-0.17579506829710248,-0.12367853617377976,-0.19001170596526804,-0.13159451796141733,-0.16881956100640236,-0.06457776599144571,-0.05638930210944515,-0.010744351841708554,-0.15847799284410685,-0.01733536952195844,0.05124138433400755,0.030300065679809415,-0.09389509888220118,-0.04836248385960795,-0.11524844946410112,-0.018469444312988952,-0.06693226924997513,0.03870314083080071,0.04086633775645524,0.062255362846090866,-0.0514356808574726,-0.01937155814706834,0.022489357359746043,-0.018259484291800604,-0.06101625516930764,-0.057745431779942825,-0.09658174999305197,-0.02017154422412058,-0.05633650476636725,0.016413373860182632,0.03139767272455593,0.024582675730846323,-0.04436134613951062,-0.06021857364499681,-0.10952225180732209,-0.14198585382440426,-0.02828438249536143,-0.10493880551831504,0.001880325614339006,-0.05945446140440326,-0.02774264808956542,-0.09975737215378844,-0.06938473773668188,-0.11964307019244096,-0.03768741350538563,21.652910178014576,22.971731063824187,6.083643418932058,8.44133085033462,21.730568002220778,27.160714958082053,29.2567604126275,30.531942230809328,30.62357859444569,44.18321897876845,42.32031264378574,1.8629063349827037,0.0,0.0,1.8629063349827037,2865.1552186878434,2218.8916122340684,1148.8395352738462,166.0,35.0,54.0,81.0,118.0,139.0,166.0,181.0,194.0,277.1830497360006,24.0,4.77912349311153,5.6937321388027,6.634633357861686,7.583247524303362,8.542665987389269,9.502786080276985,10.468716130681411,11.433026913572343,12.401330993354847,0.5681818181818182,0.9424545454545457,1.1151492996714927,0.5249184459699819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6782286200326622,0.9326203208556147,0.9743925048003711,0.6133859843087911,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,5.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,5.316788604006331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.53093654769288,61.529520847081784,11.332896515558172,0.0,163.608491515464,-182.94336907183106,-12.099929904377616,-4.157803842541615,-9.628598372201633,345.7200050585885,386.5764050209499,17.358297050249476,8.78582738683977,15.463056200837995,0.4444444444444444,0.9736230413062872,0.28595755756939123,46.98087656733646,0.10898641784188502,155.7718349418166,0.026376958693712708,5.0,0.16666666666666666,0.20704163416439267,0.5116750694324698,0.6804741989151932,0.7887105744550675,0.8386658247042401,0.8553175747872978,4.211400000000004,,0.1428571428571429,0.18566775244299671,0.22524958545764784,0.14250017848218755,-0.5181818181818181,0.16118421052631582,0.14026299311208512,-0.3193246282434288,87.90170000000006,0.0,0.0,5.316788604006331,0.0,37.016183007262214,13.592428388589765,70.78474251448087,0.0,0.0,3.8918202981106265,0.0,5.241747015059643,0.0,6.8679744089702925,0.0,8.637107288081575,0.0,10.48315803683599,25.000000000000004,18.36932712899975,0.0,0.0,0.0,0.0,0.0,6.394371693121694,0.0,41.46800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.066569185545674,5.316788604006331,0.0,0.0,13.592428388589765,5.41499046939678,0.0,53.85499850465341,48.53093654769288,0.0,0.0,0.0,23.096411622679206,29.842059281437134,28.68018658175977,162.28422745893778,,139.8374919712894,139.18231116915337,138.57982353444078,139.84297029044336,150.61444667290425,139.5565651716376,139.87731000082707,147.27705936060923,28.68018658175977,162.28422745893772,,139.72184571278615,139.03200870289015,138.39747863192753,139.72761300310066,150.78717394563157,139.42608271549733,139.76376376830785,147.3835009033571,5.267041800468281,108.18768723168574,,95.7825827477181,95.28547623906124,94.83007705440072,95.78674755847193,104.03233251518022,95.56919530090961,95.81285692111322,101.44120130519596,1.365723170559989,7.7278203551875135,,6.6589281891090195,6.627729103293017,6.599039215925751,6.659189061449684,7.172116508233536,6.645550722458934,6.6608242857536695,7.013193302886154,2.6335209002341395,80.59566233243311,,69.54069987931832,69.21732209790801,68.91997489579788,69.54340392129953,74.740991674494,69.40203964945015,69.56035368878537,73.13909648576453,41.03529411764705,0.0,2.0529080320399764,0.0,0.0,0.0,0.0,42.87327021121633,6.233057681405896,3.3093399628369866,0.0,0.0,0.6283103164105146,0.0,0.262685185185185,0.0,0.0,26.98898330958681,495.8939598583879,49.734504332982546,122.91202231123464,163.46010371787762,189.4601037178776,201.46010371787756,205.46010371787756,1179.0,122.03926261935415,13.43453671566458,56.12180704705812,12.03,12.03,0.8,8.744781848592654,5.584962500721156,3.886145511255046,4.496833505142117,,4.497472212839412,4.499324107664059,4.501017079223229,4.497456685045007,4.467207390503274,4.498267545198892,4.497359336909014,4.476517011411042,0.1850545481550022,0.2141349288162913,,0.21416534346854343,0.21425352893638375,0.21433414662967756,0.21416460404976223,0.21272416145253686,0.21420321643804247,0.21415996842423876,0.21316747673385916,2.099355139979731,2.2453108282928924,,2.2454528531958466,2.245864531927882,2.2462407335726824,2.245449400629499,2.2387008132666164,2.2456296774221904,2.245427755242699,2.240782635973069,233.3999999999998,251.4571708519048,120.67004561399973,,120.26420675349945,120.15139797027472,120.0470262771926,120.26514692459767,121.97040772019582,120.21592616849436,120.27103901839261,121.46697057886861,11.974150992947848,5.746192648285701,,5.726866988261879,5.721495141441653,5.716525060818695,5.726911758314175,5.808114653342658,5.724567912785446,5.727192334209172,5.7841414561366005,6.269210024943921,5.534997269820946,,5.531628390217102,5.530689942052446,5.529820896387571,5.531636207733624,5.545715800369753,5.53122685529555,5.531685199063332,5.541579723465362,0.0,0.0,3.3093399628369866,6.6570568783068795,0.6283103164105146,18.36932712899975,5.126398573318216,1.1066591080876793,2.0529080320399764,274.62833454519,83.33046701031992,-93.17827112754773,-6.162839106848071,-2.1176879801715396,-4.904119533028827,176.08505041206473,196.89437918032243,8.841075339689377,4.474872254098237,7.875775167212897,810.0,40.0,1.1683279458497076,0.8398430018766758,0.08333333333333333,0.0625,0.517637375903682,0.28126894379601675,0.06804138174397717,0.03608439182435161,0.0,0.0,0.0,0.0,0.0,0.0,0.29496672648658345,0.14576653511643456,0.6535568586105934,0.3463258899204303,14.2862462825598,12.731686328639373,10.366138617215372,8.20095926981256,9.002409240279047,6.554975452027931,8.404521321874146,5.593670330364823,7.798376412071761,4.718335527411843,7.103695024201084,3.855448742984455,5.347617179135868,2.668029629550253,4.240540105661417,1.8520046563072998,3.806414670780694,2.4241346003566093,7.728696603828595,4.4225043174605725,14.399512871307609,7.344226728760051,74.16589840534715,51.46693364213372,36.32908104273395,30.13260436864024,26.55524928698598,26.108079901779206,118.0,148.0,49.83623899999998,23.643760999999994,0.36363636363636365,156.01,5.118055555555555,4.694444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,12.0,12.0,44.0,0.0,1.0,47.0,12.0,0.0,6.0,41.0,12.0,24.0,35.0,0.0,0.0,2.0,20.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,1.0,1.0,0.0,21.0,1.0,0.0,1.0,0.0,0.0,5.0,4.0,0.0,0.0,0.0,0.0,2.0,3.4339872044851463,7.4577355079470955,4.007333185232471,4.6491870714048655,5.276838334870913,5.875281792818073,6.152732694704104,6.601315033601767,6.975355514534997,7.322675545861056 +18283,Cc1cn([C@H]2C=C[C@@H](CO)O2)c(=O)[nH]c1=O,0,25.928571428571427,6.729635714285714,3.357142857142857,9.714285714285714,166.11573764360674,102.53921714285714,1.3648989592210001,6.747235714285714,7.0942460317460325,8.20845942857143,212.87019303447337,26.79310344827586,6.735482758620689,4.068965517241379,8.310344827586206,151.2627465547052,102.1784863793103,1.6485408064137923,6.844603448275864,3.687739463601533,8.128723724137933,255.16081715572304,23.62,6.791957999999998,3.64,7.34,159.62049483371192,88.71102543999997,1.41651154246792,6.84967,3.9305555555555554,8.230214880000002,215.1723637992308,19.693548387096776,6.613112903225806,3.0161290322580645,5.467741935483871,160.9633874345096,71.86125314516126,1.229416031708758,6.666493548387097,4.021505376344086,8.12718535483871,182.8013955771785,17.548387096774192,6.731129032258066,2.5806451612903225,5.112903225806452,169.53394997453935,62.54087766129031,1.0954208429433872,6.7402967741935464,4.699372759856631,8.273236451612904,160.65218394487073,16.0,6.262686274509804,2.627450980392157,3.764705882352941,163.33390959014585,57.15906335294119,1.1490131054380197,6.316952941176471,3.3050108932461875,7.8313807843137235,161.27628330921624,14.733333333333333,6.476822222222223,2.2444444444444445,3.2666666666666666,166.20207715114097,50.651343977777785,1.0653759189509333,6.502713333333334,4.047530864197532,8.076270488888888,149.33127689138047,13.685714285714285,6.35522857142857,2.0,3.3142857142857145,166.40792089122698,46.47288717142856,0.9869341579412284,6.379720000000002,4.590476190476192,7.955467771428573,132.6198099574169,9.6,6.05456,1.52,1.48,171.50589889429364,30.444810840000006,0.7920173947056398,6.068639999999999,3.3799999999999994,7.746896160000001,100.83423337889906,8.168367346938776,0.20161071428571425,0.031703001033935516,0.6581632653061222,4.811224489795918,1.4291923266671007,38.415729061224496,0.2085431508609796,0.18265969387755093,2.925843253968254,0.13311934693877545,45.04132351927212,0.0853272343420125,-0.0242543103448276,-0.023030051633443863,0.1965165376495427,0.9966572836030965,-0.42656925518509103,0.48540636242082674,-0.020411130421082956,-0.018216097818437752,-0.3222581417624521,-0.018793100633356777,-0.70621629144766,0.3330612244897956,0.02018599999999997,0.009396746299182124,-0.03530612244897955,0.24163265306122447,0.18669094541050207,1.5191428359183679,0.006035628255340444,0.016288591836734687,-0.013263888888888855,0.010483235918367351,0.38320778551558093,-0.5427913100724162,-0.018348387096774194,-0.004991941201724882,-0.0878867676102699,-0.4863396971691903,-0.5025460063124875,-2.5970205151415406,-0.045510490689659296,-0.014795753785385132,-0.11396729390681003,-0.013396296247531263,-6.922195162940424,-0.9206714944042135,-0.013658870967741925,0.0010491095613373578,-0.04641211323238974,-0.37689269256089536,0.31614443659822855,-4.288756575049374,0.02183348004997199,-0.014550822909809084,0.03701836917562719,-0.0038391533903884027,0.5311794565605992,0.2938175270108045,-0.0003200980392156793,0.0003175476909210773,-0.11754701880752297,-0.2762104841936773,-0.10777253864676346,1.3513286054421771,-0.018657082500864734,0.0014861044417767157,-0.09276279956427007,-0.002978741896758715,-0.9810367237464648,-1.5953514739229027,-0.03587277777777775,-0.002801254412347003,-0.05816326530612246,-1.2286848072562357,0.05594497878650156,-7.417193565986395,0.002581396476115624,-0.03437048752834465,-0.4724922839506173,-0.01989078820861677,-3.549534894736324,-0.823469387755102,0.019923571428571433,0.007000031469251231,-0.1357142857142857,-0.13367346938775498,-0.16438803462117876,-4.150280999999996,-0.050334366899342856,0.014991122448979611,0.24221230158730164,0.015393289795918363,-11.128072124825295,0.3887755102040819,-0.015608999999999994,-0.009277492124718106,0.07897959183673463,0.18306122448979617,-0.17423697553507125,1.8809279159183712,-0.019695866808379658,-0.010446551020408147,-0.4685416666666667,-0.015205815510204097,0.3527643276570791,,,0.4458333333333333,1.125,0.4375,0.0625,0.6875,-0.25,0.7008110196160622,0.018801334965181382,0.02955133496518138,0.7821775988183863,0.23481646544533946,0.2410205472377976,1.4829886184344485,0.47583701268313705,1.9956966552859967,1.2768015177236822,0.2628522240119581,0.45604291355035664,0.0,0.7188951375623148,8.002846673714286,726.0,188.4298,94.0,272.0,4651.240654020989,2871.0980799999998,38.217170858188005,188.9226,198.6388888888889,229.83686400000005,5960.365404965254,777.0,195.32899999999998,118.0,241.0,4386.619650086451,2963.1761049999986,47.80768338599998,198.49350000000004,106.94444444444446,235.73298800000003,7399.663697515968,1181.0,339.5978999999999,182.0,367.0,7981.0247416855955,4435.551271999999,70.825577123396,342.4835,196.52777777777777,411.5107440000001,10758.61818996154,1221.0,410.013,187.0,339.0,9979.730020939594,4455.397694999998,76.22379396594299,413.32259999999997,249.33333333333334,503.885492,11333.686525785068,1088.0,417.3300000000001,160.0,317.0,10511.10489842144,3877.534414999999,67.91609226249,417.89839999999987,291.36111111111114,512.9406600000001,9960.435404581985,816.0,319.397,134.0,192.0,8330.029389097439,2915.1122310000005,58.599668377339,322.1646,168.55555555555557,399.4004199999999,8225.090448770028,663.0,291.45700000000005,101.0,147.0,7479.093471801343,2279.310479,47.941916352792,292.62210000000005,182.13888888888894,363.4321719999999,6719.907460112121,479.0,222.43299999999994,70.0,116.0,5824.277231192944,1626.5510509999997,34.542695527942996,223.29020000000006,160.6666666666667,278.44137200000006,4641.6933485095915,240.0,151.364,38.0,37.0,4287.647472357341,761.1202710000001,19.800434867640995,151.71599999999998,84.49999999999999,193.67240400000003,2520.8558344724765,228.71428571428575,5.645099999999999,0.8876840289501945,18.428571428571423,134.7142857142857,40.01738514667882,1075.6404137142858,5.839208224107429,5.114471428571426,81.92361111111111,3.7273417142857124,1261.1570585396194,2.4744897959183625,-0.7033750000000004,-0.6678714973698721,5.698979591836738,28.903061224489797,-12.37050840036764,14.076784510203975,-0.5919227822114057,-0.5282668367346948,-9.34548611111111,-0.5449999183673465,-20.480272451982138,16.65306122448978,1.0092999999999985,0.46983731495910624,-1.7653061224489774,12.081632653061224,9.334547270525103,75.95714179591839,0.3017814127670222,0.8144295918367342,-0.6631944444444428,0.5241617959183675,19.160389275779046,-33.653061224489804,-1.1376,-0.3095003545069427,-5.448979591836734,-30.153061224489797,-31.157852391374224,-161.01527193877553,-2.8216504227588763,-0.9173367346938782,-7.065972222222221,-0.8305703673469383,-429.1761001023063,-57.081632653061234,-0.8468499999999993,0.06504479280291618,-2.8775510204081636,-23.367346938775512,19.60095506909017,-265.90290765306116,1.3536757630982634,-0.9021510204081632,2.2951388888888857,-0.23802751020408097,32.933126306757146,14.98469387755103,-0.016324999999999645,0.016194932236974942,-5.994897959183671,-14.086734693877542,-5.496399470984937,68.91775887755104,-0.9515112075441015,0.0757913265306125,-4.730902777777773,-0.15191583673469447,-50.0328729110697,-71.79081632653062,-1.614274999999999,-0.12605644855561512,-2.6173469387755106,-55.29081632653061,2.51752404539257,-333.77371046938777,0.11616284142520308,-1.5466719387755092,-21.26215277777778,-0.8950854693877547,-159.7290702631346,-28.82142857142857,0.6973250000000002,0.24500110142379308,-4.75,-4.678571428571424,-5.753581211741257,-145.25983499999987,-1.761702841477,0.5246892857142864,8.477430555555557,0.5387651428571427,-389.4825243688853,9.719387755102048,-0.3902249999999999,-0.23193730311795266,1.9744897959183658,4.5765306122449045,-4.355924388376781,47.02319789795928,-0.4923966702094914,-0.2611637755102037,-11.713541666666668,-0.3801453877551024,8.819108191426977,0.7316713938910652,0.5445643868453864,0.4478466001723642,0.28722403409263,0.2881048609628901,0.1504679575547144,0.18885369553913914,0.0775672832639117,0.11625814918871442,0.0401614098515515,0.07495670802016009,0.021234402514286092,0.049443826691151244,0.01101569026753911,0.03171405151237078,0.006138756100998707,8.024266382865004,5.748474545128949,3.5506613572543246,2.2378554824330488,0.49299019214772183,-0.40789366927999926,3.2183936802614617,0.9772510504802061,6.023725507467702,0.9959507232684335,14.557741124416678,11.015375035991058,16.01190055858451,11.765568094686042,1.940188677568398,0.7440798261094553,3.4975561979426524,2.2844977625935545,7.009374495825606,1.2702547236769017,3.709364051076944,2.4790912956261786,20.82951613161952,14.701775840185375,0.34243888021068614,0.7518924073238119,0.8910248212287867,0.905184811455255,0.905184811455255,0.905184811455255,1.9364739696145046,528.3559464826387,0.0,2.0,3.0,0.0,2.0,1.0,1.0,0.0,0.0,3.0799582484831247,1.0145132841630962,0.31267455364869523,0.24124598222012494,0.24124598222012494,0.24124598222012494,84.3165051314275,789.0689732516892,61.14126052150492,28.181034758988893,59.86769643024437,,9.0,227.0,23.580877851738652,9.589074368143644,6.606881964512918,5.563451491696996,0.0,10.763943219404432,19.075777413358384,0.0,4.9839785209472085,9.843390348640755,7.133333333333333,18.0,7.0,1.0,11.0,0.0,0.054166666666666696,-4.0,0.2275362318840578,0.04583333333333328,-0.18170289855072452,0.07129629629629619,0.24054867256637164,0.0,0.6666666666666669,0.9416666666666665,0.43913043478260905,0.6208333333333336,0.8703703703703703,11.212976313856995,0.3008213594429021,0.4728213594429021,12.514841581094181,3.7570634471254314,3.8563287558047614,23.727817894951176,7.613392202930193,0.47345132743362833,0.2102803738317757,0.0,0.40654205607476634,0.4,0.39739939556670123,-0.7631492594312358,-0.09370551376353393,-0.027255330693972707,-0.0847943621590262,0.6026006044332989,1.1572091204373762,0.055094066473858935,0.04132889715847772,0.06090574318091453,-0.6353678700384717,0.7327316978612505,0.8222810261447369,1.7186566042709652,0.9093825180433043,0.5252495703367829,1.5928747241860166,0.7373752234494154,1.2486013989470026,0.7854264972269841,0.7022416569963725,0.855919673589586,1.0082423198328505,0.8204559650218612,0.7857410851889246,0.7454412046533098,1.230697674418605,0.84779427359491,1.029115797684445,0.8236421317796695,1.0009982001517888,0.7835507649163579,0.6646435534457912,0.8103221200310051,0.9391210560425731,0.9834428079224676,1.0294093193011808,1.1871591545260625,1.169729932483121,1.0538432593302092,1.3741590378138329,0.9851464906520925,1.2196013842001503,1.0133177494095325,0.8818945221174328,1.0509474122049838,1.113039426378108,1.118630493038625,1.1594157307993627,0.9573728747302319,0.9806826706676671,1.1265778401122022,0.7411084054171885,1.1139036502432327,0.7728529931702278,1.1652462295701465,1.09836289707334,1.1130627259452393,0.8858639833268964,0.9039019730315612,0.8199125321595925,0.9239295968021041,1.1922024623803014,0.9549622606200487,1.0362762748232692,0.9086658738722498,1.088474648018474,0.8211129697722117,0.7891138823928316,0.8227548809065864,1.0378244744008198,1.2014990630855713,1.2257851942392513,0.9709817892114446,0.8953488372093027,1.2849416755037117,0.840536975809219,1.197059183146327,0.9328012600980319,1.2364151581087839,1.295617529880478,1.2127993477695636,1.0387629711276665,1.1063085571517801,0.8751835346457228,0.6132481015534981,1.0674418604651166,0.9734888653234359,0.9761294783750878,1.1132577495266016,1.1819981115608338,0.9001231798845293,1.1098317974303393,0.8565151755797469,1.2281884252239117,1.0482948157401624,1.074901418929691,1.1191451141976616,0.6153488372093024,0.9780699893955462,0.8270453964980449,1.0462909289302142,0.9777228814258747,1.0782428012390612,1.347047554462999,1.0919111559858519,1.0013461518122428,4.0,0.0,2.222222222222223,1.222222222222222,1.0944444444444446,0.5072222222222221,0.2636734693877551,0.14671910430839002,0.045099521289997474,0.0,3030.659000124946,3353.1948296158207,1607.132544383192,1477.736614516025,9.50141477691454,0.41565698170856147,5.5520853887811175,0.7113236039405444,0.0,0.4,1.727396673574479,3.7928416378945076,4.4946803684089085,4.566108939837479,4.566108939837479,4.566108939837479,0.23529411764705882,0.0,0.09259259259259264,0.053140096618357474,0.05760233918128656,0.03381481481481481,0.02397031539888683,0.020959872044055715,0.01503317376333249,0.0,0.5324073220603853,12.456747404844291,5.104166666666667,2.651404786680541,90.8057122504419,1.0,3.6993446264230916,56.111457793883176,,40.28110758947246,38.99504687114762,39.87980326916289,40.29804561612234,63.22844170525053,39.82333425540963,40.34978036939463,55.941416807411485,0.0104460574210084,-0.12030268545378699,-0.7264312803949393,0.29858326650628203,0.2071525213003255,-0.29846875555220576,0.012635615001532773,-0.097874853893857,-0.09972697003778637,-0.11014197063543331,-0.14117482594021546,-0.01567929706029812,0.04077451592754524,0.10012364705673933,0.29639926797856336,-0.05364341085271313,0.05022269353128314,0.13062688759732452,0.03954481336270507,0.02894186757235654,0.08917452718197384,-0.004533355937950315,0.07875065615510288,0.008507915744341201,-0.06645040398138262,-0.09100898809758506,-0.15745957918562378,-0.13353338334583645,-0.10108439092806076,-0.35162937621169066,-0.06760305163029909,-0.21823057003678725,-0.08100174412480796,-0.03895194787083649,-0.10063372872233604,-0.1536854297804677,-0.11271181318127783,-0.0677487355577003,0.0330918060474581,-0.07051762940735186,-0.07833612697978314,0.22120496360030312,-0.11164063991117368,0.10469526311380405,-0.07966083048164681,0.012652205180650066,-0.028839935581671045,0.011793158261286884,0.03597016570525776,-0.0015877035124336187,0.010016329071849317,-0.1785985712114303,-0.05740960222901459,-0.07540800257309717,0.03517644044418674,-0.08946389475673569,0.008135918823848195,-0.03170463743690234,-0.02237647618665606,-0.021780814751740193,-0.19530848775071133,-0.1779309095990819,-0.08835928211807093,-0.08837209302325585,-0.2553788146577118,0.0391444718409356,-0.19307699599206757,0.01237823666448989,-0.18816678599814962,-0.16148926751622353,-0.14942071656770511,-0.07880618546250226,-0.10081199250468456,0.09882198721014689,0.2208002788681822,-0.20620155038759694,-0.027783669141039215,-0.11502163253600324,-0.10803598165182672,-0.24136187974304216,0.0820713214324621,0.08278375858269053,0.11563525625616299,-0.2470636130411189,0.047595252966895714,-0.0774214805760748,-0.2926376627495704,0.11999999999999993,0.03804878048780493,-0.12191289603505966,0.04896244225693779,-0.09444504279840601,-0.05719133104105152,-0.16013901839450706,-0.1142269389076675,0.007832015138412609,2.249576847278282,7.291818411933829,3.5167591542759684,17.12569290422941,35.61658100970887,38.18074873578167,38.25274873578167,38.25274873578167,38.25274873578167,31.931146484575947,20.428824283578916,4.20563558419133,7.296686616805706,0.0,11.502322200997037,1995.5485378104092,1695.8799757928546,424.6598095174211,19.0,24.0,31.0,38.0,44.0,44.0,39.0,35.0,30.0,224.079706864,17.0,4.418840607796598,5.262690188904886,6.137727054086234,7.00397413672268,7.88193748927207,8.754791763700032,9.633841842570446,10.509032272359951,11.388506711556236,0.7023809523809526,1.0219999999999998,1.1396699529700427,0.6666983836245345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6439160821214716,1.004761904761905,1.0348558942877952,0.6295032275886132,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,9.843390348640755,6.103966387748303,6.22790117073487,0.0,5.559266895052008,14.345615352810384,4.794537184071822,0.0,0.0,6.076020106833881,12.999757306524504,11.760295063310071,6.606881964512918,163.29011101152543,-313.5755330306587,-38.50328892176501,-11.199126179666381,-34.84172589229541,247.60661614295293,475.4934402210304,22.637971599739906,16.981908579322514,25.025970537948965,0.4444444444444444,0.6069130059481121,0.20482134745338182,134.66830445239344,0.17196019199721402,45.05970342084668,0.39308699405188796,5.0,0.11764705882352941,0.359323724081336,0.7889664273573392,0.9349591285190845,0.9498173140674063,0.9498173140674063,0.9498173140674063,-0.7090799999999999,,1.2857142857142858,1.5141926477431362,1.1430359144285005,1.28206267335915,-5.365540693720244,1.3572521419828643,1.2745051870999227,-2.2346271687189603,56.19550000000001,9.843390348640755,0.0,9.551078168738563,0.0,19.255604758173796,6.606881964512918,44.75041993837695,0.0,0.0,3.5553480614894135,0.0,4.875197323201151,2.3978952727983707,6.385194398997726,4.59511985013459,7.983098940710892,6.580639137284949,9.628721705350893,19.66666666666667,1.4404043839758125,0.0,2.192248441043084,0.0,0.0,0.0,0.43430413832199566,1.2806481481481482,28.615999999999996,0.0,22.664981261022927,0.0,0.0,0.0,3.3448313492063493,0.0,0.0,31.910758683161195,11.24901029325548,0.0,0.0,27.368453915840487,4.736862953800049,6.923737199690624,11.791352662431866,27.93795815342448,0.0,0.0,0.0,18.667554741486967,18.029650299401204,20.147226875095797,112.22291558776638,,80.40150089323065,77.80081966132735,79.61672704902222,80.43583339807478,127.50397537600725,79.4770119930714,80.54024759040178,112.23914463606876,20.147226875095797,112.22291558776638,,79.27650089323069,76.47916425232984,78.63553547232138,79.31402855888552,131.82242410422128,78.28941636883643,79.42505555168934,114.11746078354194,4.766988711904704,83.08223707276413,,59.93287940273086,57.78415761513588,59.296253978527005,59.96116831732823,95.46532455189117,59.168104992099686,60.04762477084199,85.44459978674725,1.2592016796934873,7.013932224235399,,5.0250938058269154,4.8625512288329595,4.9760454405638885,5.027239587379674,7.968998461000453,4.9673132495669625,5.033765474400111,7.014946539754297,2.406956539057178,56.111457793883176,,40.28110758947246,38.99504687114762,39.87980326916289,40.29804561612234,63.22844170525053,39.82333425540963,40.34978036939463,55.941416807411485,28.133333333333336,0.0,1.6081000409423027,0.0,0.0,0.0,8.87726581527673,28.975965040058266,-0.13483528596623828,0.0,5.352136243386243,0.0,-0.9682090891912332,0.0,0.0,0.0,0.0,17.62609037248117,249.37856781156572,48.367106860085414,106.19956586104621,125.85105031544944,127.85105031544941,127.85105031544941,127.85105031544941,337.0,103.99134206696912,161.51815934291264,62.00121468996799,84.32,84.32,0.8,7.4904945047460565,5.087462841250339,3.6733002361777496,3.9368141269966177,,3.928244648894455,3.9267503085317443,3.9218861603165163,3.9282460209685475,3.926637635297991,3.927484922701731,3.928343331343032,3.930313298068829,0.22958126476110935,0.2460508829372886,,0.24551529055590343,0.24542189428323402,0.24511788501978227,0.24551537631053422,0.24541485220612444,0.2454678076688582,0.2455214582089395,0.24564458112930182,1.771094134146853,1.8403754282555393,,1.838196301121865,1.837815819558519,1.8365763306721934,1.8381966504060812,1.837787125386127,1.838002881481291,1.8382214220646536,1.8387227715598553,156.27999999999983,77.34726799799581,74.24977086012294,,74.41640703315197,74.52904493052966,74.76581783076291,74.41591871421411,74.43414946089688,74.46885343453025,74.40937500361817,74.05573459256675,4.834204249874738,4.6406106787576835,,4.651025439571998,4.658065308158104,4.672863614422682,4.650994919638382,4.652134341306055,4.65430333965814,4.650585937726135,4.628483412035422,4.818308885640991,4.7774383208648326,,4.779680071411937,4.781192543493024,4.784364428906433,4.779673509410902,4.7799184639076975,4.780384592509363,4.779585571259574,4.774821609129409,6.632784391534392,24.85722970206601,8.87726581527673,-0.4909046411774578,0.0,0.0,3.817026643990929,1.4732647549760645,0.0,192.51198650126577,67.09537219132723,-128.84716023801866,-15.820875402636526,-4.601684294214952,-14.316351137557627,101.74074819493457,195.37869837024496,9.301868439749157,6.977810656080177,10.283089387907628,433.0,23.0,1.2139803565731002,0.4726308561241022,0.0,0.0,0.33093309327558146,0.06224550725885175,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.045360921162651446,0.20693027063286606,0.06849846621251626,0.4175837698858361,0.08917445276655214,11.706742302257043,8.713030189526183,7.613392202930192,4.88280857957471,6.914516663109363,3.6112309813131453,5.854464561713313,2.4045857811812628,4.417809669171148,1.5261335743589568,3.298095152887044,0.934313710628588,2.175528374410655,0.48469037177172086,1.2368480089824603,0.2394114879389496,2.913526085809941,0.8455891642946061,3.943491354641211,0.9573620592015225,5.842189070586692,1.1131518976749804,54.75814188627071,25.88577861399508,21.181313125602962,20.980787774027416,20.980787774027416,20.980787774027416,82.0,96.0,30.109515999999985,17.790484,0.39285714285714285,49.06,6.166666666666667,3.583333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,28.0,0.0,0.0,29.0,6.0,3.0,4.0,25.0,9.0,17.0,20.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,5.0,2.0,2.0,16.0,6.0,0.0,2.0,4.0,0.0,2.0,2.0,0.0,0.0,0.0,1.0,1.0,3.1780538303479458,5.524456426842045,3.7954891891721947,4.334017415487521,4.837273478673773,5.302371636876077,5.516197088187147,5.469114437490037,5.578313729455029,5.739591927352912 +34359,C[C@@](Cc1ccc(O)c(O)c1)(NN)C(=O)O,0,24.266666666666666,6.6036600000000005,3.066666666666667,8.266666666666667,167.3691986023162,95.77100693333333,1.3035465555962005,6.6200866666666665,7.472453703703703,8.109126400000003,200.7510964609038,24.533333333333335,6.732063333333333,3.6333333333333333,7.366666666666666,154.32239555368506,92.1108713333333,1.6335478445999996,6.825153333333333,4.24537037037037,8.156805333333333,247.8414642564248,22.5,6.425250000000002,3.5,6.229166666666667,154.2139957656655,84.7152433125,1.5176620561301037,6.523700000000002,4.11863425925926,7.886514916666665,224.2885804186418,19.492537313432837,6.538507462686568,2.746268656716418,4.462686567164179,158.2427699831044,70.48144119402987,1.3105872551126414,6.606556716417912,4.489635157545602,8.024469253731342,188.63479139187214,12.880952380952381,6.351892857142854,2.0595238095238093,2.6666666666666665,168.86652116249084,43.04197201190477,0.9993032608247855,6.372770238095238,4.00892857142857,7.967627190476192,135.22501223012972,12.492753623188406,6.020753623188405,2.101449275362319,2.7971014492753623,167.63127365913883,43.190163463768094,0.9983023206308262,6.0626449275362315,3.2359098228663457,7.653890492753624,133.00568189133656,14.716981132075471,6.337773584905661,2.0377358490566038,3.7547169811320753,167.54825427968373,51.561206132075476,0.9920598143214524,6.367822641509433,3.994234800838575,7.932494867924525,139.2633485866676,14.904761904761905,6.617928571428571,1.7619047619047619,4.071428571428571,172.85188757269495,52.18121421428572,0.8269559858140001,6.600390476190476,5.84325396825397,8.225879333333335,117.95764020927189,11.807692307692308,6.901269230769231,1.3461538461538463,2.6923076923076925,180.41560484316125,37.5793431923077,0.658787552228577,6.828569230769233,6.891025641025641,8.568843230769232,90.98322327576821,8.266666666666667,0.19601155555555555,0.048225363679707894,0.7155555555555559,4.266666666666667,1.3703665882646396,38.903320462222204,0.20502581850463997,0.1786426666666666,3.0741126543209862,0.12812472888888884,45.427095844949,-0.8,-0.04178466666666672,-0.028474544837534557,0.25999999999999995,0.7,0.5823761604906619,-3.4791869955555628,0.053846400120000144,-0.03844466666666676,-0.6889274691358023,-0.026094435555555524,6.952658235282988,1.0833333333333333,0.01855080555555555,-0.002275538627040284,-0.2183333333333335,0.1875,0.014121207961951493,5.083024683611107,0.011432074799039321,0.01870024999999997,0.41208526234567916,0.012065343333333317,4.768444941606015,-1.2238805970149254,0.007264464344941935,0.008127011506056367,-0.14341625207296854,-0.7313432835820896,-0.3236309156352811,-6.039060386600333,-0.06789632953050258,0.004195940298507428,0.1417248249493274,0.006823235290215592,-14.048522921348152,-1.6904761904761905,-0.04086893650793648,-0.003285693652489278,0.029682539682539696,-0.8095238095238095,0.022555203007215755,-7.8432964979365085,-0.0006961784036186094,-0.03894290476190473,-0.5933090828924162,-0.025037970158730143,-4.160905185297407,0.8985507246376812,-0.004113198067632784,-0.0011886247934629155,0.030338164251207746,0.30434782608695654,-0.14637778477540167,4.307833560000001,0.0015419153034382253,-0.00015889855072455283,-0.11888586956521736,-0.006560280579710182,4.124913209877389,0.07547169811320754,-0.011065140461215922,-0.0038638890078412143,-0.09542976939203351,0.1320754716981132,-0.3294175751473371,0.3197340170230616,-0.0394034373077155,-0.007154490566037731,-0.39861038318192404,-0.011457564109014683,-3.856325338685294,0.8095238095238095,0.04646669841269837,0.01005617638507347,-0.12190476190476185,0.30952380952380953,-0.17616169100369916,3.5499166663492088,-0.030925186633225805,0.04123161904761899,0.6418099647266312,0.029876636190476195,-4.07002741692368,-1.8846153846153846,-0.0010277094017094696,0.0006990708403359044,0.0998290598290599,-0.9230769230769231,0.27453551941337256,-8.895167854529912,0.028671754816829046,-0.008607538461538531,0.38649988129154766,0.009296881367521428,-4.338474015297644,,,0.44583333333333336,1.109375,0.53125,0.0625,0.578125,-0.046875,0.7691822531107326,0.03295931268712721,0.038334312687127205,0.8175607271304495,0.23017078671166166,0.23150824824952956,1.586742980241182,0.4616790349611912,1.927242367272387,1.273382766551294,0.22294156373225466,0.43091803698883857,0.0,0.6538596007210933,7.5365118976,728.0,198.1098,92.0,248.0,5021.075958069486,2873.1302079999996,39.10639666788602,198.6026,224.1736111111111,243.27379200000007,6022.532893827114,736.0,201.96189999999999,109.0,221.0,4629.671866610552,2763.3261399999988,49.00643533799999,204.75459999999998,127.36111111111111,244.70416,7435.243927692744,1080.0,308.4120000000001,168.0,299.0,7402.271796751944,4066.3316789999994,72.84777869424498,313.1376000000001,197.6944444444445,378.5527159999999,10765.851860094806,1306.0,438.0800000000001,184.0,299.0,10602.265588867995,4722.256560000002,87.80934609254697,442.6393000000001,300.8055555555554,537.6394399999999,12638.531023255433,1082.0,533.5589999999997,173.0,224.0,14184.787777649231,3615.5256490000006,83.94147390928198,535.3127,336.7499999999999,669.2806840000002,11358.901027330898,862.0,415.43199999999996,145.0,193.0,11566.55788248058,2980.1212789999986,68.88286012352701,418.3225,223.27777777777786,528.1184440000001,9177.392050502223,780.0,335.90200000000004,108.0,199.0,8880.057476823238,2732.743925,52.57917015903698,337.49459999999993,211.69444444444449,420.42222799999985,7380.9574750933825,626.0,277.953,74.0,171.0,7259.779278053188,2191.610997,34.732151404188,277.2164,245.41666666666674,345.4869320000001,4954.220888789419,307.0,179.43300000000002,35.0,70.0,4690.805725922192,977.0629230000002,17.128476357943,177.54280000000006,179.16666666666669,222.78992400000004,2365.5638051699734,248.0,5.880346666666666,1.4467609103912369,21.46666666666668,128.0,41.110997647939186,1167.0996138666662,6.150774555139199,5.359279999999997,92.22337962962959,3.8437418666666656,1362.81287534847,-24.0,-1.2535400000000017,-0.8542363451260367,7.799999999999999,21.0,17.471284814719855,-104.37560986666688,1.6153920036000042,-1.1533400000000027,-20.66782407407407,-0.7828330666666657,208.57974705848966,52.0,0.8904386666666664,-0.10922585409793363,-10.480000000000008,9.0,0.6778179821736716,243.98518481333315,0.5487395903538874,0.8976119999999986,19.7800925925926,0.5791364799999992,228.88535719708872,-82.0,0.48671911111110966,0.5445097709057766,-9.608888888888892,-49.0,-21.683271347563835,-404.61704590222234,-4.549054078543673,0.2811279999999977,9.495563271604935,0.4571567644444447,-941.2510357303262,-142.0,-3.4329906666666643,-0.27599826680909934,2.4933333333333345,-68.0,1.8946370526061234,-658.8369058266667,-0.05847898590396319,-3.2712039999999973,-49.83796296296296,-2.103189493333332,-349.5160355649822,62.0,-0.2838106666666621,-0.08201511074894116,2.0933333333333346,21.0,-10.100067149502715,297.24051564000007,0.10639215593723755,-0.010963999999994145,-8.203124999999998,-0.45265936000000256,284.6190114815398,4.0,-0.5864524444444439,-0.20478611741558436,-5.057777777777776,7.0,-17.459131482808868,16.945902902222265,-2.0883821773089215,-0.37918799999999975,-21.126350308641975,-0.6072508977777782,-204.3852429503206,34.0,1.9516013333333315,0.4223594081730857,-5.119999999999997,13.0,-7.398791022155365,149.09649998666677,-1.2988578385954839,1.7317279999999975,26.956018518518512,1.2548187200000003,-170.94115151079455,-49.0,-0.026720444444446212,0.018175841848733512,2.5955555555555576,-24.0,7.137923504747687,-231.2743642177777,0.7454656252375552,-0.22379600000000183,10.04899691358024,0.24171891555555713,-112.80032439773875,0.7715584364182027,0.5478998084317993,0.46167903496119134,0.2880475203734884,0.30435017313933416,0.16441044730618684,0.20975155554312258,0.08844796381472918,0.12662321542326532,0.04906163114536215,0.080617804165451,0.026782318011980673,0.053522203125187545,0.014563597982508909,0.036182841112502945,0.007689830964092326,8.028874292276065,5.692439473436739,3.554922698032628,2.1912261101180857,0.45094024591902965,-0.33056760064955826,4.023956773652273,0.9727706637057878,6.022036452808408,0.9959564692297054,14.645641768578193,10.95297000205876,16.01429334755894,11.704160678311426,1.985107937380494,0.7415296885044056,3.500970712072057,2.2409622451193547,7.00829314563207,1.1744520623147594,3.713885810894264,2.4370037238234943,20.891615523733112,14.701053667180116,0.33208739203369997,0.7195639117173414,0.8186271445477417,0.880935707781655,0.8940398165971764,0.9071439254126978,2.534609404584483,407.8055448072955,0.0,1.0,1.0,0.0,5.0,1.0,1.0,1.0,0.0,3.217408328589336,1.246135932841805,0.7421554168830129,0.42516291673878204,0.3584962500721156,0.2918295834054492,78.32618877676387,991.5984639292705,84.38538958841607,33.05328213097568,67.55113506715021,,8.0,198.0,11.508230540335195,9.901064578912528,17.919845289493818,5.563451491696996,0.0,25.122838405075452,0.0,0.0,5.425791397110385,16.055725059947648,7.133333333333334,17.75,8.5,1.0,9.25,0.0,0.05416666666666664,-0.75,0.20888888888888874,0.057037037037037,-0.15185185185185174,0.17499999999999982,0.24054867256637158,0.0,0.6422222222222225,0.9416666666666665,0.43333333333333374,0.5851851851851855,0.7666666666666667,12.306916049771722,0.5273490029940353,0.6133490029940353,13.080971634087192,3.6827325873865866,3.704131971992473,25.387887683858914,7.38686455937906,0.4734513274336284,0.31308411214953263,0.07009345794392523,0.2803738317757009,0.3,0.40472583442321497,-0.9763261619812971,-0.1233478312571675,-0.03254420539937657,-0.08875692381648158,0.5952741655767853,1.4359887409521528,0.08194104352320049,0.04786629136507175,0.0755783547869554,-0.7083723895644689,0.9198924731182796,1.018030682998281,1.5144351266331997,1.0357142857142851,0.6645833333333333,0.9325076479975247,0.9182304810151058,0.9435865858383023,1.0026996785637874,1.0042143045393508,1.025961750327736,0.8920950996613343,0.6833417338709677,0.5702411464970318,0.7403329585749799,2.026397515527949,0.8236490885416666,1.2623033393914194,0.6927406705640173,1.1537816715281048,0.5587206910256602,0.5144905937425487,0.5689972365123097,0.9829576508220107,1.0166405873856525,0.7877405153153388,0.6745458630680156,1.260197459905441,1.0347481343283582,1.4126091287480056,1.0280879365181783,1.432167014354817,0.7946350333983381,0.7604680004802736,0.7756542426592967,1.3233248446819983,1.1999807987711215,1.231625941554466,0.9165556738699057,0.7880434782608692,1.1813616071428572,0.8776674466594064,1.195270901495269,0.9127519702128335,1.2419483231933786,1.2653025367223236,1.2175768388648742,1.0288851828087788,0.8507480130902292,0.8323214060730716,0.8079693082526256,0.7537807183364835,0.853713768115942,0.9899175397128861,0.852352085012984,0.9445431559549577,0.8299291068516884,0.8192226284919817,0.8326407136673728,0.9127272969150199,0.9751978088861839,1.0324104132311027,0.9932595848463073,0.9558478846829949,0.9489976415094341,1.1508683647127165,0.9755715528513165,1.1175892503022695,1.0195673989437615,1.109035012963248,1.0581218180508423,1.0380257792350918,0.988383256528418,1.0285199009970905,1.0821733995778273,0.9971162377994671,1.0438058035714286,0.9023762443475675,0.9867356250328181,0.9589530069274886,1.0279814594853183,1.065259328716113,1.0528439157660496,0.9607332785893421,1.4369571960297767,1.6462997864420341,1.839686035461896,0.4416507405637838,1.4421574519230769,0.40599013393380423,1.4191110914995917,0.5132653212593297,1.6672765601119786,1.5422014513642386,1.6258292613753047,0.8505188242074364,5.5,0.0,2.8888888888888893,1.3125,0.9333333333333336,0.42361111111111116,0.4261224489795919,0.17708333333333331,0.0,0.0,2864.8159805070363,3259.465626550842,1486.445686997919,1320.772550565589,8.911100715735005,0.45858467191138524,4.824606517640357,0.8470108770846022,1.0,0.3,1.6894822670191825,3.660754662766714,4.164735178725506,4.481727678869737,4.548394345536403,4.6150610122030695,0.34375,0.0,0.12560386473429958,0.0546875,0.05490196078431374,0.028240740740740733,0.032778649921507065,0.019675925925925923,0.0,0.0,0.659638642106787,14.0625,5.55765595463138,3.49519890260631,92.29528383457094,1.0,3.664732210220263,56.986552810626904,,46.421527444408916,45.85556661150498,46.397673495967545,46.429442222764834,62.486074011495,46.22512472198845,46.45145468149677,55.23288179814341,-0.0967741935483871,-0.21317450671842506,-0.590447487895586,0.3633540372670805,0.1640625,0.42497837110006637,-0.08943162059737528,0.26263228949763484,-0.21520428117209836,-0.22410612316612497,-0.20366431821436204,0.15305090730461143,0.1310483870967742,0.09464138735584748,-0.04718551511925202,-0.3051242236024845,0.0439453125,0.010304693709610836,0.13065786218806366,0.05575919599989599,0.10467963980236139,0.1340501499730175,0.0941687325933506,0.10496917870078226,-0.1480500722195474,0.03706140857028691,0.16852151826230857,-0.20042643923240935,-0.17140858208955223,-0.23616375239059964,-0.15523251781206374,-0.3311598998882475,0.023487895567170018,0.046102677710954526,0.05325463202449213,-0.30925426026128405,-0.2044930875576037,-0.20850268950777753,-0.06813206582145115,0.04148181011535048,-0.18973214285714285,0.01645924762057902,-0.20160995012116992,-0.003395564562044922,-0.2179933018721064,-0.19300173728456516,-0.19541871718178105,-0.09159522764781924,0.10869565217391304,-0.020984467247222985,-0.024647295588214733,0.04239805563056981,0.07133152173913043,-0.10681651612709474,0.1107317706770866,0.00752059089281641,-0.0008894770420162012,-0.03867323124873477,-0.05120229823392897,0.09080292572425216,0.009129640900791235,-0.056451470066925365,-0.08012151102692562,-0.13336458455408404,0.030955188679245283,-0.24038646152668847,0.00821868193316674,-0.1921876844346009,-0.04004917022083788,-0.12966681055804363,-0.08942507982944342,-0.08489042204783767,0.09792626728110598,0.23706101551512007,0.20852463553955267,-0.17036379769299007,0.07254464285714286,-0.12855077795408096,0.09124970887244499,-0.15083557211857165,0.2308049908623118,0.2087789345730386,0.2331839953892549,-0.08959470864735508,-0.22797766749379653,-0.0052431061974720465,0.014495916401560638,0.1395126612517917,-0.21634615384615385,0.20033728329660308,-0.2286480369501552,0.1398446060400933,-0.048182993582376,0.12572729914379738,0.0725611788461522,-0.09550410244374084,2.94168275343288,7.8313399841789195,2.102578844744821,16.712116569623614,30.893599229511103,34.522163113972134,35.57522488745086,36.64182488745086,36.70902488745085,30.835877876358193,20.374124264820704,3.5670650197160745,6.894688591821417,0.0,10.461753611537493,1697.0902974398575,1508.191006786156,534.1173603040827,0.0,23.0,27.0,26.0,29.0,26.0,25.0,21.0,9.0,226.095356928,16.0,4.3694478524670215,5.187385805840755,6.052089168924417,6.894670039433482,7.75833346749091,8.607216694063826,9.470471375340674,10.32137518064285,11.18451861549464,0.6666666666666669,1.012533333333333,1.1442016109695123,0.6278466960841449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6276068263473057,0.995294117647059,1.0287933964554503,0.6055972725422347,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,15.319582184522117,5.538925252383345,11.49902366656781,0.0,0.0,10.63720745433806,5.425791397110385,0.0,0.0,6.06636706846161,24.619922828310838,6.4208216229260096,0.0,166.3653096196222,-401.3255157265521,-50.70296579226847,-13.377517190885074,-36.48413779332293,244.69149839638607,590.2729482027183,33.682423796147596,19.67576494009061,31.06699727382728,0.5,0.5264736461980123,0.20903568288842073,121.42509093040012,0.13462348512811134,6.492669573866726,0.47352635380198776,4.0,0.25,0.3443081181657494,0.7460436688853325,0.8487524018678522,0.913353903362083,0.9269402398347834,0.9405265763074837,-0.05310000000000015,,1.2857142857142858,1.5141926477431362,1.1430359144285005,1.28206267335915,-5.365540693720244,1.3572521419828643,1.2745051870999227,-2.2346271687189603,56.839500000000015,20.11411936859394,0.0,5.425791397110385,5.842670270266239,18.883484074999977,0.0,23.762552697081826,0.0,11.49902366656781,3.4965075614664802,0.0,4.8283137373023015,0.0,6.361302477572996,0.0,7.972810784121404,0.0,9.617337639062423,20.000000000000007,4.115973167044595,0.0,0.0,0.0,0.0,0.0,0.01564436885865561,0.0,30.375999999999994,0.0,10.95413281053162,0.0,0.0,0.0,0.0,0.0,-1.0948474111866966,34.32604832908537,11.268461667376624,0.0,11.49902366656781,26.82781272485731,11.21535880699783,0.0,12.487188691387619,18.19910120538483,0.0,0.0,0.0,18.835400882524347,18.82820479041917,18.99001362807399,113.97310562125384,,92.68234060310354,91.52185914204208,92.65246750263152,92.69862661135978,126.9842257831351,92.28059292622903,92.74359621460604,111.30374878455643,18.99001362807399,113.97310562125382,,91.55734060310354,90.19694057526682,91.6523110775066,91.57682177217055,130.33768871671026,91.09299730199402,91.62840417589365,112.70039076500578,4.716588942364527,84.79048308905531,,70.13071612091493,69.4858057431013,70.10554585693569,70.1397374490333,88.54425399377823,69.9069143909129,70.16482425307129,80.21036613569729,1.1868758517546243,7.123319101328365,,5.792646287693971,5.72011619637763,5.79077921891447,5.793664163209987,7.936514111445944,5.767537057889315,5.796474763412878,6.956484299034777,2.3582944711822633,56.986552810626904,,46.421527444408916,45.85556661150498,46.397673495967545,46.429442222764834,62.486074011495,46.22512472198845,46.45145468149677,55.23288179814341,29.85882352941177,0.0,1.4297996976568406,0.0,0.0,5.181035682791635,27.32426343222474,30.86380189366351,0.0899537037037037,2.2167703609221467,0.0,0.0,0.0,0.0,-1.3160591458805744,0.0,0.0,18.16791817626704,216.41057651070415,50.68446801057547,109.82263988300141,124.94205536176517,134.4518303660921,136.45183036609208,138.45183036609208,218.0,101.84550819969857,194.64623150530406,48.27627219952561,115.81000000000002,115.81000000000002,1.0,6.62344252399996,5.0,3.664749956402236,3.943933132893516,,3.950219640255457,3.9520338859232966,3.9493715221092756,3.9501921336155097,3.8946954184243507,3.950830581991913,3.950123791042406,3.918185338374136,0.22904687227513976,0.24649582080584476,,0.24688872751596605,0.24700211787020604,0.24683572013182972,0.24688700835096936,0.24341846365152192,0.24692691137449457,0.24688273694015037,0.2448865836483835,1.7687637375372212,1.8421821117078976,,1.843774811740822,1.8442339834679011,1.8435600871729279,1.8437678483974584,1.8296191074169403,1.8439294599763068,1.8437505471721005,1.835632251981617,167.13999999999973,67.11786909311826,70.33859314201638,,69.85787239884775,69.7019870308767,69.90855171183374,69.86020105980464,73.71113009297181,69.80629937949297,69.86585440526608,72.13542741944627,4.194866818319891,4.396162071376024,,4.366117024927984,4.356374189429793,4.369284481989609,4.36626256623779,4.606945630810738,4.362893711218311,4.36661590032913,4.508464213715392,4.676453943181978,4.72332425526722,,4.716466412948052,4.714232454939815,4.717191613088637,4.716499746659282,4.770157435939388,4.715727883931738,4.716580667078107,4.7485489178972315,0.0,10.95413281053162,27.32426343222474,1.454553807634165,3.547990047871002,4.115973167044595,0.0899537037037037,1.4297996976568406,0.0,204.86844544900757,68.3855931368368,-164.9675854699348,-20.84179927551473,-5.498919515664495,-14.997053224539531,100.58210627947264,242.63571394640792,13.845389611886867,8.08785713154693,12.77030073402147,442.0,24.0,1.7667896583790457,0.8595358597716944,0.14433756729740643,0.08838834764831845,0.7192525244279361,0.0879007317236413,0.14433756729740643,0.016137430609197572,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.18419528592042317,0.03852691958159105,12.344934982691242,8.766396934908789,7.386864559379061,4.6087603259758145,7.000053982204685,3.7814402880422975,5.66329199966431,2.3880950229976876,3.292203601004898,1.2756024097794159,2.337916320798079,0.7766872223474395,1.3915772812548761,0.3786535475452316,0.9045710278125736,0.19224577410230814,4.217816938329166,1.2684500650289183,4.390313369097554,1.227347466346602,5.377394916146476,1.2133920847297368,54.93204751212006,30.726758210068088,24.245913791132566,22.265171521452345,20.714829870461134,20.521037164087232,78.0,89.0,31.443101999999982,13.772897999999994,0.2,16.06,7.756944444444445,3.611111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,30.0,0.0,0.0,30.0,6.0,1.0,4.0,26.0,7.0,16.0,23.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,5.0,5.0,0.0,16.0,6.0,0.0,2.0,4.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,1.0,3.044522437723423,0.0,3.597312260588446,3.993602992420569,4.309119863865794,4.772272346418676,4.7318028369214575,4.748999930582576,4.861748513388538,4.406719247264253 +156391,COc1ccc2cc([C@H](C)C(=O)O)ccc2c1,0,22.903225806451612,6.193870967741936,3.225806451612903,7.806451612903226,158.72006358087052,90.38150299999998,1.522541698964065,6.267606451612903,5.126344086021506,7.731640903225809,226.2445605618293,24.4375,6.303125,3.8125,7.21875,142.63349049637029,92.55852456249995,1.856650125499999,6.456906250000003,3.4496527777777777,7.740723250000002,272.30450863237854,21.132075471698112,6.2054716981132065,3.5849056603773586,5.830188679245283,149.22828056682158,79.13996998113205,1.6454318354168678,6.326520754716982,3.556603773584906,7.702959773584908,236.04124320294483,18.681818181818183,6.1393939393939405,3.196969696969697,4.363636363636363,150.00201768604538,67.98779203030307,1.5472314205188638,6.25790909090909,3.2617845117845117,7.658950666666666,216.58030930059192,14.917808219178083,6.058630136986301,2.5616438356164384,3.2465753424657535,154.21470983008075,51.57341715068493,1.3337607441909995,6.154972602739727,3.2328767123287676,7.625830136986302,178.24689453137742,12.366197183098592,5.830704225352112,2.295774647887324,2.788732394366197,161.5428816248652,42.78326726760563,1.1205578100940559,5.902211267605633,2.7801251956181554,7.465693070422535,145.88847632296546,13.46,5.960799999999998,2.32,2.98,159.01854022306082,46.49632975999999,1.1772066605467797,6.038390000000001,3.027777777777778,7.568926879999997,155.74367420776886,12.195121951219512,5.897560975609754,2.024390243902439,2.6341463414634148,160.54190941343145,41.226238536585356,1.0722803787924386,5.9686219512195136,3.165311653116531,7.521663804878047,138.25687475532254,10.612903225806452,6.021612903225807,1.8709677419354838,2.4838709677419355,170.8064164919093,35.6006636451613,0.8228523281624838,6.039693548387097,3.0215053763440856,7.719773548387097,108.59627973374809,7.415192507804371,0.13592091571279916,0.02611459318513208,0.6243496357960453,4.060353798126951,1.3579692047948602,35.208715103017674,0.23899143289288446,0.1268027055150884,1.8436235402936767,0.09016157336108216,51.06826461160908,0.07875910509885502,-0.006908818938605668,-0.01381067498318367,0.26476326742976075,1.166460718002081,0.034577668424283975,0.42752180827262354,0.007090004633272943,-0.005571253902185335,-0.19409397040120235,-0.0053990652965660545,1.7434625033149769,0.6809730430172968,0.012697465297547731,0.0015210574609734585,-0.05222547267979496,0.04494139359550765,0.2445487206480432,3.28063771499813,0.04107922595784476,0.011076052853748986,0.36118473724740785,0.00964645098462687,7.047395125335619,-0.951360640746697,-0.015876927443004462,-0.0008016533142539576,-0.11555198183710146,-0.9811749124964525,-0.07098634056192155,-4.484014723252299,-0.014399814460234833,-0.01563946015829474,-0.13546670310458034,-0.009309895941727356,-4.653011204700471,-2.0484227331689304,-0.021289894943908306,0.00012255927800551797,-0.02912206177925391,-0.7757758043134292,-0.3051341369668018,-9.786409185651362,-0.057411239947789024,-0.022241061679472,-0.264279503371203,-0.01144224326828503,-14.2776064747149,0.7492781873342028,0.0016620011431754294,0.00016453243600699475,-0.03234600108455102,0.18317187202298074,0.00590951739732627,3.57029944582375,0.005069356230105908,0.0038097433717812273,-0.023365071920713822,-0.001680406618692421,3.7123530414022983,-0.4106763787721124,-0.007114464099895923,-1.4543229460505887e-05,-0.11080124869927165,-0.20293444328824134,-0.1946734467254121,-2.000484430114463,-0.032407558442952254,-0.005945092611862608,-0.06109665857324549,-0.005862721748178991,-5.23870263308301,-0.24918149285551122,0.0032450953021497192,0.00047584152694783873,-0.01616710235780821,0.19613715387934322,-0.41455377921943243,-1.3747015027029734,-0.0682742104008169,0.004382739016776278,-0.011208119365272756,-0.0005820926372427327,-9.78654384292778,1.345473465140479,-0.012518210197710716,-0.00922476264975128,-0.0541103017689907,0.1113423517169616,0.17443664383954396,6.5616480135275825,0.0377686996805378,-0.0067838709677419205,-0.2904382009480866,-0.013552628511966685,11.404182221069918,,,0.4705882352941176,1.2941176470588236,0.7058823529411765,0.029411764705882353,0.5882352941176471,0.11764705882352941,0.6527513202938435,0.01769537408487675,0.02781302114370028,0.8598868273857319,0.2658584552730656,0.21139990960518087,1.5126381476795754,0.4772583648782465,2.0050331492354645,1.6942033253987092,0.0,0.31082982383675545,0.0,0.31082982383675545,7.422396590580645,710.0,192.01000000000002,100.0,242.0,4920.321971006986,2801.8265929999993,47.19879266788602,194.2958,158.91666666666669,239.6808680000001,7013.581377416708,782.0,201.7,122.0,231.0,4564.271695883849,2961.8727859999985,59.41280401599997,206.6210000000001,110.38888888888889,247.70314400000007,8713.744276236113,1120.0,328.88999999999993,190.0,309.0,7909.098870041544,4194.418408999999,87.20788727709399,335.3056,188.5,408.2568680000001,12510.185889756076,1233.0,405.2000000000001,211.0,288.0,9900.133167278995,4487.194274000002,102.117273754245,413.02199999999993,215.27777777777777,505.49074399999995,14294.300413839066,1089.0,442.28,187.0,237.0,11257.673817595894,3764.859452,97.36453432594297,449.3130000000001,236.00000000000003,556.6856,13012.023300790552,878.0,413.97999999999996,163.0,198.0,11469.544595365429,3037.6119759999997,79.55960451667796,419.05699999999996,197.38888888888903,530.064208,10358.081818930548,673.0,298.0399999999999,116.0,149.0,7950.927011153041,2324.8164879999995,58.86033302733899,301.9195,151.3888888888889,378.44634399999984,7787.183710388443,500.0,241.79999999999993,83.0,108.0,6582.21828595069,1690.2757799999997,43.963495530489986,244.71350000000004,129.77777777777777,308.38821599999994,5668.531864968224,329.0,186.67000000000002,58.0,77.0,5294.998911249188,1103.6205730000001,25.508422173036998,187.2305,93.66666666666666,239.31297999999998,3366.484671746191,229.87096774193552,4.213548387096774,0.8095523887390945,19.354838709677406,125.87096774193549,42.09704534864066,1091.4701681935478,7.408734419679418,3.9308838709677403,57.15232974910398,2.7950087741935468,1583.1162029598815,2.5202913631633606,-0.22108220603538137,-0.44194159946187744,8.472424557752344,37.32674297606659,1.1064853895770872,13.680697864723953,0.22688014826473418,-0.17828012486993072,-6.211007052838475,-0.17277008949011374,55.79080010607926,36.09157127991673,0.6729656607700297,0.0806160454315933,-2.767950052029133,2.3818938605619056,12.96108219434629,173.8737988949009,2.1771989757657724,0.5870308012486962,19.142791074112615,0.5112619021852242,373.5119416427878,-62.789802289282,-1.0478772112382946,-0.05290911874076121,-7.626430801248696,-64.75754422476587,-4.685098477086822,-295.94497173465174,-0.950387754375499,-1.0322043704474528,-8.940802404902302,-0.6144531321540055,-307.0987395102311,-149.53485952133192,-1.5541623309053063,0.008946827294402812,-2.1259105098855353,-56.63163371488033,-22.274791998576532,-714.4078705525494,-4.1910205161885985,-1.623597502601456,-19.29240374609782,-0.8352837585848072,-1042.2652726541878,53.198751300728404,0.11800208116545549,0.011681802956496627,-2.2965660770031224,13.005202913631633,0.4195757352101652,253.49126065348622,0.35992429233751944,0.2704917793964671,-1.6589201063706813,-0.11930886992716189,263.57706593956317,-20.53381893860562,-0.35572320499479615,-0.0007271614730252943,-5.540062434963582,-10.146722164412067,-9.733672336270605,-100.02422150572313,-1.6203779221476127,-0.2972546305931304,-3.0548329286622744,-0.2931360874089496,-261.9351316541505,-10.21644120707596,0.1330489073881385,0.019509502604861388,-0.6628511966701366,8.041623309053072,-16.99670494799673,-56.362761610821906,-2.7992426264334926,0.1796922996878274,-0.45953289397618297,-0.023865798126952043,-401.24829756003896,41.70967741935485,-0.3880645161290322,-0.28596764214228965,-1.6774193548387115,3.4516129032258096,5.4075359590258625,203.41108841935505,1.170829690096672,-0.21029999999999954,-9.003584229390684,-0.4201314838709672,353.5296488531675,0.7302264166731524,0.5767742388679451,0.4507440112738996,0.30115953669345147,0.29135005647315804,0.16129775922217804,0.1917090472824949,0.09193409983752525,0.11619275678452871,0.04687331627229343,0.0744117506065955,0.02545865247481694,0.04979628477440232,0.01432431201866096,0.03292379772297045,0.007735940688849966,8.028790550635895,5.653516166738839,3.5548416155423226,2.15333679624367,0.4364981765273696,-0.5293238717042686,3.1957210691047457,0.9728040060620435,6.02211140693972,0.9937292990801305,13.642711155078121,10.913847112411164,16.014138630126578,11.664622208348066,2.0254200885180977,0.7415829374891335,3.500881035314567,2.2032980969131004,7.008291545545982,1.262419043108314,3.7138058872560857,2.3993049263951067,20.934304724483937,14.701156743767262,0.2595141832968066,0.6202697491929288,0.7779448006003467,0.8855742315148473,0.8855742315148473,0.8855742315148473,1.8857036821690751,560.3959195741091,0.0,1.0,1.0,0.0,7.0,0.0,3.0,1.0,0.0,3.592284687734722,1.699065627840552,0.8715983873759319,0.3067669356234486,0.3067669356234486,0.3067669356234486,98.07412244895994,703.3564161645892,55.92463434979034,22.688916650470624,44.92699039030539,,10.0,260.0,11.887211334113243,4.794537184071822,0.0,0.0,22.085411753910492,0.0,14.033534740968157,36.39820241076966,0.0,9.843390348640755,7.999999999999999,22.0,12.0,0.5,10.0,0.0,0.029411764705882405,2.0,0.15477287689269237,0.0715971675845789,-0.08317570930811347,0.029738562091503162,0.1506197183098591,0.0,0.5935483870967744,0.8352941176470586,0.438775510204082,0.5219512195121955,0.8055555555555555,11.09677244499534,0.3008213594429048,0.47282135944290477,14.61807606555744,4.519593739642116,3.593798463288075,25.71484851055278,8.113392202930191,0.5633802816901409,0.20833333333333334,0.0,0.37500000000000006,0.21428571428571427,0.389356607751875,-0.6179083305232147,-0.07357734523870361,-0.019932526791071447,-0.04753141004024729,0.6106433922481249,0.9690901131168862,0.052606628681981384,0.0312609713908673,0.053838339617604786,-3.1093755334853412,0.7952831181588549,0.7631631832797426,1.4259187148356143,0.7750000000000006,0.528815351101999,1.0389630918000716,0.7997547832729306,1.0196258558014872,0.7510834641556442,0.750461533034398,0.7939389208680657,0.9320714050446458,0.7855104083372608,0.7240793544864405,0.8465352011579023,1.3599056603773596,0.9331208959121107,0.8478283003053321,0.7877710331731212,0.8476965422744419,0.727814131401532,0.4480192850292533,0.722176016234222,0.8340769631719909,1.0074822034546984,0.9250462827633245,0.8558899168700284,1.315151515151516,1.155584548716276,1.0655207593775602,1.0101170463730842,1.0676795068112512,0.9317589844582871,0.88457558558841,0.9186411233148422,1.059152531724924,1.1996009211877015,1.0406742972923653,0.8164803726768887,0.8811643835616445,1.0725269092772935,1.2035117069216699,1.2029978416620406,1.2175297153903075,1.0607935266622328,1.1212325115987969,1.0120743585661756,1.242234202817836,0.8905792317757231,0.8508769659759197,0.7867624744160401,0.9714788732394374,0.9080392142707603,0.9356117527755478,0.8921143840720337,0.935092382678515,0.8529744892072764,0.8969317141442612,0.850362822199566,0.9244776057802564,1.0323182711198429,0.9846807533302708,0.9304674211384919,1.0850000000000006,1.0034085084572013,1.0941536652731896,1.0342818413153523,1.0928183177103596,0.9866788557773266,0.9563622965727003,0.9852381235527776,1.0771091051679034,1.0233736985138586,0.8917227780454192,0.8458186630496062,0.7939024390243908,0.869066519983498,1.23930423484852,1.0295021452523,1.2315025143745417,0.8942505648445461,1.0670741267319852,0.9000422026883899,1.1709262277707777,0.9703901206848161,1.5124023886081763,1.6522417407458807,1.0250000000000006,1.1916965658636596,0.7583073446449929,0.9557078781867465,0.7286405071230656,1.4569980977765815,1.5763851870433656,1.580029202285845,0.7201141266291834,4.0,0.0,2.222222222222223,1.0,1.106666666666667,0.5208333333333333,0.3436734693877551,0.17708333333333331,0.1148904006046863,0.04000000000000001,2905.929477612127,3253.7139699241125,1598.1834739030292,1452.8304469333839,12.137318281808884,0.4780346115622085,6.335260051557483,0.9158358430487795,1.0,0.21428571428571427,1.361911622652153,3.255130682546323,4.082597923010943,4.647429374763426,4.647429374763426,4.647429374763426,0.22222222222222224,0.0,0.08888888888888893,0.038461538461538464,0.055333333333333345,0.03255208333333333,0.028639455782312927,0.022135416666666664,0.022978080120937258,0.010000000000000002,0.5212110188092332,13.432098765432098,5.76,3.0625,99.64213719056528,1.0,3.752215741897758,64.90360629052938,,48.420071627217055,48.067345453291004,49.18395572142062,48.42733996665902,62.310834195727146,48.333808954754744,48.434968771190725,55.03883394462853,0.010621316306483252,-0.05082969683050105,-0.5288489422476071,0.42406250000000045,0.28728056125064066,0.02546277802338486,0.012142499577781567,0.029666354761974545,-0.0439363961482857,-0.1052785268571069,-0.059882110474533234,0.03413984235756945,0.09183484343806092,0.0934180382096415,0.0582454970747715,-0.08364779874213832,0.01106834424533133,0.18008414313414833,0.09317686559703375,0.1718857678729279,0.08734871080831186,0.1959102437962327,0.10699071261760744,0.13799950280146336,-0.12829884588234294,-0.11681003883576245,-0.03069752259094604,-0.18507575757575764,-0.24164763990494384,-0.05227389569017879,-0.1273552502592741,-0.060252429494779436,-0.12333695952909918,-0.07347850585754694,-0.10325791348430408,-0.09111355633656536,-0.27624673681944173,-0.15663442842670253,0.0046931337255253554,-0.046643835616438374,-0.1910611347886226,-0.2246988634863016,-0.2779541700688926,-0.24022300403345687,-0.17539895216845755,-0.14334786771550176,-0.1269082031483717,-0.2795788457528523,0.10104635672581656,0.01222770707848406,0.006300402033475621,-0.051807511737089244,0.04511229344287147,0.004351731524146738,0.10140385513579125,0.021211455861591427,0.030044653671272827,-0.012673450631353908,-0.0186377250978382,0.07269393369122609,-0.05538310412573673,-0.052342673403766526,-0.0005569004792609918,-0.17746666666666688,-0.0499794976934905,-0.14335630442725703,-0.056817876604165124,-0.13560133955712658,-0.04688458805127936,-0.03313944373020601,-0.06502461669229931,-0.10258235075981263,-0.03360418392283837,0.023874878160816723,0.018221288134741127,-0.025894308943089504,0.04830543436136567,-0.30527480133988494,-0.03904435304386187,-0.2856763925567879,0.0345634503536265,-0.006079396970320404,-0.0064561055840446375,-0.19163650688656955,0.18144821779399384,-0.09209921910886541,-0.35324167542472945,-0.08666666666666682,0.027421834956432623,0.12845404978524164,0.18636431333346773,0.15803369695459196,-0.05349941817238829,-0.15753660907466052,-0.150314906969188,0.22331250744082393,5.99922880524203,15.069124567553372,5.479913756094796,11.959461537024142,28.871472513136847,35.210528987415806,36.48975005852424,36.48975005852424,36.48975005852424,34.0855635370029,28.801456531778058,0.0,5.2841070052248424,0.0,5.2841070052248424,2538.5148110209657,2402.6197235221366,361.5192358077918,30.0,25.0,32.0,38.0,49.0,51.0,55.0,55.0,51.0,230.094294308,18.0,4.465908118654584,5.303304908059076,6.1675164908883415,7.027314514039777,7.896924656268864,8.763584409450138,9.635804166591036,10.505533184565781,11.378993992324366,0.6559139784946239,0.9845161290322578,1.1140382497114472,0.6184196744382163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6784064516129037,0.9717900063251108,1.0066724619975094,0.6431352238629571,6.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,9.843390348640755,5.749511833283905,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,24.26546827384644,35.392371257240434,0.0,13.027703587438927,172.56253106979455,-273.85646823836043,-32.60941941398361,-8.834079620592274,-21.065882172181574,270.6366535187545,429.49994792622874,23.31521493580673,13.854837029878349,23.861108218123817,0.5,0.7551728298122093,0.31300919432959057,47.6768573309997,0.19545433492157144,25.260583935637452,0.2448271701877904,5.0,0.16666666666666666,0.27490061703788254,0.6570451549773425,0.8240686616417369,0.9380793742508171,0.9380793742508171,0.9380793742508171,3.036500000000001,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,66.55080000000004,14.637927532712576,0.0,0.0,0.0,12.841643245852017,7.109797541277533,41.96165390246666,0.0,5.749511833283905,3.6109179126442243,0.0,4.919980925828125,0.0,6.437751649736401,0.0,8.045908742270779,0.0,9.700575458126165,20.33333333333334,11.425672713529858,0.0,0.0,0.0,0.0,2.071378495842782,1.6173147098345515,0.0,30.519999999999992,0.0,10.916244733634706,0.0,0.0,0.0,0.0,0.0,-0.8075354833291335,34.53518574105486,4.736862953800049,0.0,5.749511833283905,18.18563022407009,4.794537184071822,0.0,18.405094737549014,36.39820241076966,0.0,10.772448428929591,0.0,19.171009907584708,21.030600000000014,21.736370894436416,129.80721258105876,,96.75190796031647,96.03385057044756,98.30680525959006,96.76670384657733,126.53159944617043,96.57630464001565,96.78223349524536,110.78177579171239,21.736370894436416,129.80721258105876,,96.0901432544342,95.27754804943916,97.84850888520636,96.10688319602198,127.86855118447176,95.89145511881182,96.12445314172467,111.27465132343113,4.79367336295744,97.88938949637641,,72.83208730591305,72.41591978103224,73.73489232487057,72.84066752220072,89.70735198659915,72.73026918198401,72.84967346616051,80.73714149658498,1.2786100526139068,7.635718387121104,,5.691288703548028,5.6490500335557385,5.782753250564121,5.692159049798667,7.443035261539437,5.680959096471509,5.693072558543845,6.516575046571317,2.396836681478721,64.90360629052938,,48.420071627217055,48.067345453291004,49.18395572142062,48.42733996665902,62.310834195727146,48.333808954754744,48.434968771190725,55.03883394462853,30.125490196078434,0.0,3.314544731830085,0.0,0.0,0.0,8.969679376392941,31.206846321922793,0.0,0.0,5.144088062694214,0.0,-0.48472067376333317,0.0,0.0,0.0,0.0,19.93719193975167,334.69198239619834,42.219260302216746,100.90905115893601,126.56053561333924,144.07031061766622,144.07031061766622,144.07031061766622,421.0,106.14488444084196,108.50720219235065,49.7151346886057,46.53,46.53,1.0,8.356148358727236,5.169925001442312,3.7242720675092675,4.051719598912949,,4.044779318151781,4.04658823925104,4.040845958674878,4.044741980193175,3.9787555631436486,4.0452222776545455,4.0447027880827475,4.011293309869189,0.21907482750054516,0.23833644699487935,,0.23792819518539887,0.2380346023088847,0.23769682109852225,0.23792599883489263,0.23404444489080287,0.23795425162673797,0.23792369341663222,0.23595842999230524,1.8454996656787674,1.9297696343909891,,1.9280552433851657,1.9285023670923915,1.9270823168266107,1.928046012194041,1.9115973488892821,1.9281647512753588,1.928036322502956,1.919741961546264,178.20999999999972,90.03103374755946,81.02731095760231,,81.5509533860274,81.42927138313037,81.81006589002578,81.55344730402905,85.396043726139,81.52131323738767,81.55606431830695,83.5993965518027,5.295943161621145,4.766312409270724,,4.797114905060435,4.789957140184139,4.812356817060341,4.797261606119356,5.023296689772883,4.795371366905157,4.797415548135703,4.917611561870747,5.030782681373211,4.925414521220875,,4.931856270876643,4.930363058731688,4.935028541990531,4.9318868515107805,4.97792802439178,4.931492749235841,4.931918940556381,4.956664552846902,5.144088062694214,10.916244733634706,11.041057872235722,0.814969293272865,-0.4899107405307801,11.425672713529858,0.0,1.687523148148148,1.627021583681937,214.73926135428135,76.47957306066911,-121.37296341754123,-14.452468094183537,-3.9152568844368147,-9.336381801349328,119.94594415928567,190.35402670172888,10.333284248056303,6.14045247424932,10.575223705651604,530.0,26.0,1.2299075682951401,0.5279752882424609,0.0,0.0,0.37200846792814624,0.10224261404498308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.048112522432468816,0.2798463222282634,0.07926537196092426,12.41384908344359,9.805162060755066,8.113392202930193,5.420871660482127,7.283751411828951,4.032443980554451,6.134689513039837,2.941891194800808,4.415324757812091,1.7811860183471504,3.6461757797231793,1.24747397126603,2.5396105234945185,0.730539912951709,1.810808874763375,0.4254767378867481,3.025686729736686,1.1305587916020075,3.801415546270493,1.2124840611622651,5.518260629516756,1.4728952156735522,58.58229738979651,35.46286562731548,23.430663728682177,20.49461227673743,20.49461227673743,20.49461227673743,86.0,100.0,35.12110199999998,16.648897999999996,0.3225806451612903,52.03,6.416666666666667,3.8333333333333335,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,10.0,11.0,31.0,0.0,0.0,32.0,11.0,1.0,6.0,26.0,12.0,18.0,20.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,2.0,1.0,0.0,17.0,3.0,0.0,0.0,3.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,2.0,3.2386784521643803,6.565358495591288,3.8607297110405954,4.45143608604605,5.044231243524771,5.679959275682925,6.0000990373749925,6.398438932350861,6.731269784200873,6.992835756526373 +31098,CC(C)[N+]1(C)C2CCC1CC(OC(=O)C(CO)c1ccccc1)C2,0,18.35185185185185,5.858794444444443,2.925925925925926,4.777777777777778,163.9076037545365,71.84934059259258,1.3380740582494441,5.925785185185183,3.4538323045267494,7.455944888888887,190.65438651906038,21.25,6.167857142857143,3.75,4.5,146.0007712244687,78.6713390357143,1.709519874571429,6.310696428571428,2.554067460317461,7.62196814285714,241.5649869587491,17.27102803738318,6.064803738317757,3.4299065420560746,3.289719626168224,155.18369232950124,62.44233467289719,1.4422996325783743,6.167500934579439,2.312824506749741,7.586495850467288,197.64892276612517,13.874213836477987,5.931327044025158,2.811320754716981,2.2955974842767297,159.23302609550387,48.140071106918235,1.2828940862105027,6.017911949685535,2.164744933612858,7.508753911949683,169.15011089410146,11.186528497409327,5.776108808290156,2.2072538860103625,1.8704663212435233,159.80805183626583,36.95446430051813,1.119067887953648,5.853633678756475,2.457181922855498,7.39917985492228,138.45413469622125,8.587939698492463,5.631683417085426,1.8743718592964824,1.4723618090452262,167.81366038797017,27.616408291457287,0.9085429758686582,5.679130653266332,2.1598269123394753,7.331607879396986,108.68511824066034,10.119718309859154,5.731478873239437,2.112676056338028,1.7535211267605635,168.41984300816364,34.43226164084506,0.9373092304449648,5.774412676056338,2.292840375586854,7.420611070422535,118.0677400129474,12.633663366336634,6.030435643564357,2.5247524752475248,1.891089108910891,161.98621896857304,42.74486945544554,1.1652913301339305,6.092757425742574,2.6071232123212322,7.653777386138614,153.40697944019945,12.558823529411764,5.8443431372549,2.4901960784313726,1.7450980392156863,159.57550952775907,42.8133901862745,1.2047817275247743,5.926211764705881,2.423747276688453,7.4465865490196075,154.38200953675212,7.116941015089161,0.10146080246913582,0.015523321582233563,0.6200274348422492,3.0,1.3226535350400472,33.94388404389574,0.22740046502444441,0.098031550068587,1.1899219821673523,0.061976817558299015,50.811441184099785,0.4029002547521072,0.0016657848324515407,-0.006710531897216343,0.28010484029002547,0.9206349206349207,-0.20914288297714342,1.90024312938468,-0.008806307634821419,0.0029859102488732636,-0.06311238487164408,-0.0009581985106800802,0.1385518427955872,0.2814667384587777,0.0056583564093689,-0.0006591663550936801,-0.0402420419727447,0.12045690550363461,-0.0063156713820562635,1.3257076688076124,0.0059811983565046705,0.005428539927951525,0.0698769197979565,0.004157613732805076,1.492211514113655,-0.6094870202137842,-0.013535505474027458,-0.001384392167423924,-0.1641690607448819,-0.21174004192872112,0.1338407223455065,-2.851806786499986,-0.0002132609313836538,-0.012752118435696323,-0.011894767321479408,-0.007271560628413226,-1.1510436989634578,-0.7983841162213833,0.013125351819868231,0.0035410426270724537,-0.06600709325714123,0.13874496257915944,-0.2910311455178325,-4.008853145795573,-0.05673336832925389,0.009902032737016434,0.19680867840110305,0.010107464921071521,-11.442890088379565,0.5707567329100921,-0.0001449454060425769,-0.001112554693099376,0.08255957427742282,0.4092685650474595,0.00025699957434136125,2.7395066343100942,0.007725160051949751,0.0015770857028627092,-0.022733157385004588,-0.002186896099151428,3.335972153363253,1.4795639405707222,0.006288023821943995,-0.00018124461788454044,0.06620104716088027,0.21674491392801254,0.17843606258011185,7.115548077909154,0.03972089770862676,0.008660573040437386,-0.018948093568268303,0.0004582528642361589,10.669295805706916,-1.0877880997976341,-0.029138250213910238,-0.0013787184428727655,-0.02560132556465525,-0.8723872387238725,0.1095917449350359,-4.974393453136672,0.021296992256900987,-0.028199536867266915,-0.2846816896195792,-0.016809694712681244,0.13657539732098237,-0.5564834987492937,-0.0015190268700072515,0.001204077323137345,-0.11675946098604051,-0.5947712418300654,-0.09879478497967044,-2.6860371982167344,-0.01915708152581372,-0.0025753409182602896,-0.0905248930848059,-0.00043821625110951654,-4.696731293368233,,,0.4749999999999999,0.9375,0.3125,0.0,0.625,-0.3125,1.1442636581310708,0.018818029502669642,0.02956802950266964,0.6322173597404452,0.16533095823504354,0.3122765773611658,1.776481017871516,0.47760753559620933,2.020992646518759,1.6931525453999055,0.0961208810409313,0.23171922007792253,0.0,0.3278401011188538,6.152259634075756,991.0,316.3748999999999,158.0,258.0,8851.010602744971,3879.8643919999995,72.25599914546999,319.99239999999986,186.50694444444446,402.62102399999986,10295.33687202926,1190.0,345.4,210.0,252.0,8176.043188570248,4405.594986000001,95.73311297600003,353.399,143.0277777777778,426.83021599999984,13527.63926968995,1848.0,648.934,367.0,352.0,16604.655079256634,6681.329809999999,154.32606068588606,659.9226,247.47222222222226,811.7550559999999,21148.434735975392,2206.0,943.0810000000001,447.0,365.0,25318.051149185118,7654.271306,203.98015970746994,956.8480000000001,344.1944444444444,1193.8918719999997,26894.86763216213,2159.0,1114.7890000000002,426.0,361.0,30842.954004399307,7132.211609999999,215.98010237505406,1129.7512999999997,474.23611111111114,1428.041712,26721.6479963707,1709.0,1120.705,373.0,293.0,33394.91841720606,5495.66525,180.80005219786298,1130.1470000000002,429.8055555555556,1458.9899680000003,21628.338529891407,1437.0,813.8700000000001,300.0,249.0,23915.617707159236,4889.381152999998,133.097910723185,819.9666,325.58333333333326,1053.726772,16765.61908183853,1276.0,609.0740000000001,255.0,191.0,16360.608115825878,4317.231814999999,117.69442434352698,615.3685,263.31944444444446,773.031516,15494.104923460143,1281.0,596.1229999999998,254.0,178.0,16276.701971831426,4366.965799,122.88773620752698,604.4735999999999,247.22222222222223,759.551828,15746.964972748716,384.31481481481467,5.478883333333334,0.8382593654406124,33.48148148148146,162.0,71.42329089216256,1832.9697383703701,12.279625111319998,5.293703703703699,64.25578703703702,3.346748148148147,2743.8178239413883,22.562414266118004,0.09328395061728628,-0.37578978624411524,15.685871056241426,51.55555555555556,-11.712001446720032,106.41361524554208,-0.49315322754999946,0.16721097393690276,-3.534293552812069,-0.05365911659808449,7.7589031965528825,30.11694101508921,0.6054441358024722,-0.07053079999502378,-4.305898491083683,12.888888888888903,-0.6757768378800202,141.85072056241452,0.6399882241459998,0.5808537722908131,7.476830418381346,0.4448646694101432,159.66663201016107,-96.90843621399169,-2.152145370370366,-0.2201183546204039,-26.102880658436224,-33.66666666666666,21.280674852935533,-453.4372790534978,-0.03390848809000095,-2.0275868312757153,-1.8912680041152259,-1.156178139917703,-183.0159481351898,-154.08813443072697,2.5331929012345684,0.6834212270249835,-12.739368998628256,26.77777777777777,-56.169011084941666,-773.7086571385456,-10.949540087546,1.9110923182441717,37.98407493141289,1.9507407297668036,-2208.477787057256,113.58058984910832,-0.028844135802472803,-0.22139838392677583,16.42935528120714,81.44444444444444,0.05114291529393089,545.1618202277087,1.5373068503380005,0.31384005486967914,-4.523898319615913,-0.4351923237311342,663.8584585192874,210.09807956104254,0.8928993827160473,-0.025736735739604742,9.400548696844998,30.777777777777782,25.337920886375883,1010.4078270631,5.640367474625,1.2298013717421088,-2.690629286694099,0.06507190672153457,1515.0400044103822,-109.86659807956104,-2.942963271604934,-0.13925056273014932,-2.5857338820301803,-88.11111111111111,11.068766238438625,-502.4137387668039,2.1509962179469997,-2.8481532235939584,-28.7528506515775,-1.6977791659808055,13.794115129419218,-56.76131687242796,-0.15494074074073966,0.1228158869600092,-11.909465020576132,-60.66666666666667,-10.077068067926385,-273.9757942181069,-1.9540223156329994,-0.26268477366254955,-9.233539094650201,-0.04469805761317069,-479.0665919235597,0.721651103224142,0.6280311155940286,0.44086849439650094,0.35871831399998205,0.27664558231511654,0.21494911632199318,0.17481827062915267,0.13044501205471898,0.11344351811727926,0.07640284519342717,0.07152968893639809,0.0459961498241392,0.045329390283882595,0.027329865819942258,0.02900271289919806,0.01476403191472853,8.02890071500601,5.693143203676326,3.5551105473643423,2.1930424988776895,0.4414864675138801,-0.49282072973072444,4.033455753965199,0.9778564337096031,6.028306066157284,0.9886068813983279,14.546963491901625,10.9534594695086,16.014177135447834,11.70419771191721,1.9835471353083867,0.7414984907788056,3.50119436758235,2.2430192033723437,7.00827250233185,1.089490298816676,3.714108994307739,2.4390233574986233,20.892406085866476,14.701235480685984,0.22686548330288944,0.5102347843189542,0.7379324176467243,0.8205870718449328,0.8605745435252176,0.8731148255695718,1.5841985260502986,557.5065100703199,0.0,1.0,3.0,0.0,5.0,8.0,1.0,1.0,0.0,4.414817912373449,2.740986453117497,1.3960014441713744,0.9077694446047024,0.6715678241942671,0.5974937501201927,293.7778108457892,1432.157472884754,44.43838220556154,26.521434683051005,48.36873997913419,,12.0,483.0,5.917906046161393,9.901064578912528,18.68015364021307,18.12552248744388,22.88812559524364,12.841643245852019,0.0,30.33183534230805,20.89514638205844,4.736862953800049,11.399999999999999,22.5,7.5,0.0,15.0,0.0,0.02500000000000006,-7.5,0.08660130718954234,0.022777777777777675,-0.06382352941176467,0.020499999999999963,0.1293846153846152,0.0,0.527777777777778,0.8124999999999997,0.44117647058823567,0.5050000000000003,0.7919999999999997,27.462327795145697,0.4516327080640714,0.7096327080640714,15.173216633770686,3.967942997641045,7.494637856667979,42.63554442891638,11.462580854309024,0.5846153846153848,0.19005847953216376,0.03508771929824562,0.30701754385964913,0.65,0.23874071946352274,-0.42639141813844644,-0.03330494366217043,-0.007896137372934195,-0.03553261817820387,0.7612592805364774,2.120869928139459,0.045733971699101233,0.03927536903961962,0.05049690305093952,-3.6926315035829496,0.9776676005534487,0.829122939980383,1.5206850031756467,1.003486488621998,0.6455577601410935,1.4817766060171882,0.9849620956107831,1.2916632278132472,0.8240950802590682,0.7432047841201794,0.8365338801591183,1.1812478732621623,0.9917759891487373,0.9357442626435086,1.2637789753249804,1.738302249607147,1.0105284412137994,1.209595832269152,0.9945207562604077,1.072829167063701,0.9301938371243752,0.6032039693491209,0.8861972511994667,1.0407345011765319,1.0989254565604978,1.1465687959529458,1.316377725279958,1.70741150442478,1.1080246913580247,1.0123306449137757,1.098056361233815,1.0353877650485637,1.1364318197719165,0.7042707639101538,1.1032948511656422,1.0437953941246954,1.08789939602964,0.8075070262306667,0.7240592851658357,1.0088323627860065,0.9068956694172583,1.213688346403813,1.0949448876812684,1.2703762290510623,0.8406956211399544,0.7552914053959667,0.7878638422139076,1.234444713558792,0.8936285048816582,1.0855931912301566,1.0231923935876275,0.576708209187531,0.8746200136484893,0.8475024221416052,0.8899105306604863,0.8605590288890352,1.059796706192405,1.1655853886215126,1.1529213601778545,0.8492224955791191,0.8012247338412979,1.1918097580197253,1.1686707728788055,0.7636132057833733,1.077095287776039,0.7180226594438356,0.7935444536035964,0.7094610653673037,1.1385109794708927,1.3257035593969821,1.3058996849018978,0.6937777254064417,1.2370736808658946,1.794229076273732,1.6078587840004297,1.0735948041706833,1.5839750641730839,0.9067367860170307,1.2224976796436748,0.8845776107434091,1.7360178007236116,1.9229833623346488,1.8903571014787992,0.959706584263597,1.0714893098375575,0.9867211205374782,0.8996258598233579,1.3036179073399279,1.2140220285645122,1.1228150077292085,1.0733990534860316,1.1117257773644809,0.9975281812158153,1.3575582042172563,0.9735504004993238,1.107453177032337,6.0,0.08733598612386491,3.7777777777777795,2.5972222222222223,1.3394444444444447,0.7602777777777777,0.5061224489795918,0.35590277777777773,0.31924760644998745,0.18938271604938275,4510.452921412367,5384.5560826010105,2265.569904540474,1962.5352782901791,14.619690793550133,0.49127133185666066,7.437455826070199,0.9656843866291414,1.0,0.65,1.340069589790019,3.0139010490459714,4.358886057992094,4.847118057558766,5.083319677969201,5.1573937520432755,0.23076923076923078,0.006718152778758838,0.0994152046783626,0.061838624338624346,0.03939542483660131,0.02924145299145299,0.02024489795918367,0.01547403381642512,0.013880330715216844,0.010521262002743486,0.5274986148866,18.781065088757398,7.7091412742382275,3.618369526521894,144.5680366525364,1.0,4.112783023139318,117.85611589805083,,102.1397678879875,100.48167611850648,102.7708665086966,102.16504565877652,148.49716394306148,101.60172451969758,102.22305957676399,127.03636513832348,0.05661143655650484,0.016418013576802424,-0.4322871146917774,0.4517620101137803,0.30687830687830686,-0.15812370922277164,0.05598190021293123,-0.038725987802508605,0.030458666080299606,-0.053039094846108886,-0.015460595565087585,0.0027267843534212457,0.039548836763156944,0.05576889076045068,-0.042462971059499005,-0.06490364734099757,0.040152301834544865,-0.004775000568735513,0.039055862525727056,0.026302489556746165,0.05537543703178711,0.05872395068345658,0.06708336917903508,0.029367628221901462,-0.08563890285469067,-0.13340625290387323,-0.08918143968674594,-0.2647770913341128,-0.07058001397624038,0.10119106689678493,-0.08401533492195738,-0.0009378209994457546,-0.13008177904740262,-0.009996258157878548,-0.11732710576133037,-0.022653238564775236,-0.11218079713301954,0.12936376906599903,0.2281111428578002,-0.10645834288596458,0.04624832085971981,-0.22003581271116524,-0.11810236979985501,-0.24948659767760514,0.1010086317118168,0.1653962876142779,0.163084606781622,-0.2252030216367951,0.08019691770663659,-0.0014285852517938542,-0.07166988631947782,0.13315471161115328,0.13642285501581983,0.00019430604276393502,0.08070692884666361,0.0339716106170642,0.01608753204207537,-0.01910474613100085,-0.03528571142095681,0.06565395658187247,0.20789324197485798,0.06197490724417245,-0.011675633782654793,0.10677115792097731,0.07224830464267085,0.1349076366961883,0.20962680843204123,0.17467377520251318,0.08834475262686434,-0.015923811688692224,0.007393939900271573,0.2099782166589208,-0.1528448946663086,-0.28718726350280976,-0.08881594287466854,-0.041290633488127636,-0.2907957462412908,0.08285748461838699,-0.1465475620498779,0.0936541279922698,-0.2876577678057455,-0.2392439957290756,-0.27122552229902835,0.0026878867069749708,-0.0781913883464049,-0.01497156372747334,0.07756570117798829,-0.18831337844872476,-0.19825708061002179,-0.07469437941409134,-0.07913169850401296,-0.08424380980819203,-0.026270531440729772,-0.07607632638227398,-0.007070647838561648,-0.09243452230278329,10.911551287899034,18.76120288405367,6.66036031455356,12.048546940872559,27.296419306975018,31.425254457848784,33.701281705750965,34.346891457643196,34.42155812430987,48.50382351645022,40.63566108959773,2.3069011449823513,5.561261281870141,0.0,7.868162426852491,5348.113521079054,5288.472438521238,670.1973863159474,86.0,38.0,53.0,67.0,76.0,81.0,84.0,90.0,90.0,332.22202024009084,26.0,4.859812404361672,5.739792912179234,6.645090969505644,7.544861068658458,8.456806041401142,9.36434818445553,10.280518891981744,11.193036955048681,12.112602272243437,0.558641975308642,0.9597777777777781,1.1323748364049242,0.5125918525302423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6310688622754492,0.9466957153231661,0.990234954546681,0.5746255173349616,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,14.326421206335379,12.021872433909696,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,30.33183534230805,19.410925891078243,25.683286491704038,31.78007643463399,134.22820000828608,-239.73184249555254,-18.725178717715792,-4.439478564732455,-19.977653541296046,428.00601085407527,1192.4256303892016,25.713203487845746,22.08195611831855,28.39108643783814,0.5,0.8766665828191958,0.2583120058435351,2.7587925657157553,0.11326476386529616,25.445290493124336,0.12333341718080433,6.0,0.19230769230769232,0.23285765174145262,0.523711549168066,0.7574233304045357,0.8422611312100472,0.8833047867674563,0.8961762936468223,2.8541000000000016,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,93.51320000000007,19.120958390407203,0.0,0.0,0.0,69.67815581243887,13.654553947190108,35.89528683400505,0.0,0.0,3.970291913552122,0.0,5.3230099791384085,2.3978952727983707,6.890609120147166,4.948759890378168,8.558910784768106,7.181591944611865,10.280998902962642,30.16666666666667,9.431499038346079,0.0,0.0,0.0,0.0,0.0,0.8255383125472414,0.0,51.82800000000002,0.0,12.58459341143865,0.0,0.0,0.0,0.0,0.0,-0.28356481481481444,61.14824116586591,0.0,0.0,0.0,53.442906362869465,9.53140013787187,0.0,51.01211842894368,30.33183534230805,0.0,0.0,0.0,27.679960036633084,34.07771856287426,30.506947776417064,236.04293522826092,,204.3177609271201,200.96255819917278,205.59078076096213,204.3689198762452,298.8472828962221,203.22638320170364,204.4868576959086,254.98531839035735,30.506947776417064,236.04293522826092,,203.57371330807257,200.09354935785117,204.97023730838504,203.6270057797633,301.3573259703548,202.44526070068378,203.7487348677678,255.99619043196907,4.991420395033554,178.88422146592973,,155.97354274945135,153.39351276243187,157.85424027901516,156.01554380837746,233.83773833179833,155.17578484760554,156.09925214803536,196.67912759437485,1.2711228240173778,9.835122301177538,,8.513240038630004,8.373439924965533,8.566282531706756,8.515371661510217,12.451970120675922,8.467765966737652,8.520285737329525,10.624388266264889,2.5482608851910986,117.85611589805083,,102.1397678879875,100.48167611850648,102.7708665086966,102.16504565877652,148.49716394306148,101.60172451969758,102.22305957676399,127.03636513832348,51.12156862745097,0.0,6.967500080253507,0.0,0.0,0.0,9.647625528632023,53.47268754552077,4.153704494526103,0.0,5.843734882842026,0.0,1.2081743103577502,0.0,0.0,0.0,0.0,31.02977793608793,492.89194438075344,72.36375784866102,162.75065664848245,235.37984713157306,261.74437510817336,274.49926261033687,278.49926261033687,715.0,126.19686969983555,69.34226648160791,73.55206780835685,46.53,46.53,1.0,7.136532928913439,5.700439718141092,3.637291633627832,4.8311154401324465,,4.8337753070926315,4.833617024644372,4.8369640841613055,4.833787249324602,4.842698924769801,4.833877645815546,4.833767029691355,4.837462495288262,0.15155381806782633,0.20129647667218528,,0.201407304462193,0.20140070936018217,0.20154017017338774,0.20140780205519174,0.20177912186540836,0.20141156857564776,0.20140695957047314,0.2015609373036776,2.1667080853593306,2.4505461183418613,,2.451096536778428,2.4510637911438575,2.451756005936934,2.451099007356074,2.452940931749786,2.4511177081472013,2.451094824367768,2.4518590427677593,272.6200000000004,581.224722903641,137.09268238466072,,136.5402221384264,136.5427252352052,136.23642012525323,136.53926769680598,135.7234940860387,136.52671892235094,136.5415657607919,136.245677562974,24.217696787651708,5.712195099360863,,5.689175922434433,5.6892802181335504,5.676517505218885,5.689136154033583,5.655145586918279,5.688613288431289,5.689231906699663,5.676903231790583,7.240606205832251,5.796125948206396,,5.7920879762537,5.792106308389067,5.789860497124507,5.7920809860427465,5.786088421751673,5.791989075844635,5.792097816692902,5.78992844608558,6.964929638713459,12.58459341143865,9.647625528632023,0.8255383125472414,-0.8560168388342995,11.214243664484464,4.357741300606559,4.394740306590956,2.3666046758209456,334.6466217167576,75.46768610713391,-134.78544328406687,-10.527936079611619,-2.49602672748272,-11.232120273672239,240.63962175688823,670.4224833139264,14.456842671732268,12.41523117248012,15.962440078903013,1371.0,42.0,1.916151149836632,1.5378260841656932,0.09622504486493763,0.09622504486493763,1.0233831830054567,0.9101477927045248,0.19245008972987526,0.19245008972987526,0.0,0.0,0.0,0.0,0.08333333333333333,0.08333333333333333,0.39947158101199465,0.32948452335100814,0.7249285880073453,0.670142705587956,17.31962647737941,15.072746774256686,11.462580854309024,9.326676163999533,10.512532127974428,8.168066420235741,9.265368343345092,6.913585638900106,7.600715713857711,5.1189906279596205,5.436256359166255,3.4957073866345794,3.67168061299449,2.213719131415323,2.436227883532637,1.2401786808371964,5.491903753974191,4.443855156439651,8.749308080410485,6.542639603959232,12.686631613000065,9.215902008879164,84.1262704811315,43.809990696087176,30.71125066449753,24.833446075111326,23.076553712998603,22.66842223119661,128.0,155.0,56.909789999999965,34.98021,0.3148148148148148,124.04,8.590277777777779,5.305555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,6.0,6.0,54.0,0.0,1.0,56.0,6.0,1.0,4.0,52.0,7.0,26.0,49.0,0.0,0.0,2.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,3.0,1.0,2.0,24.0,4.0,0.0,1.0,3.0,0.0,3.0,5.0,0.0,0.0,0.0,0.0,1.0,3.4339872044851463,5.2074348700708635,3.901972669574645,4.327438444389479,4.7106556938340685,5.005203904099049,4.9483165296969975,5.109726196740486,5.20606500684295,5.036546675880757 +2725,CN(C)CCC(c1ccc(Cl)cc1)c1ccccn1,0,25.842105263157894,5.758386842105264,2.9210526315789473,4.989603638726446,161.38906945625345,104.64804605263156,1.5853275050560793,5.907073684210527,2.326893766194178,7.388893921052631,219.93318097456344,23.846153846153847,6.088461538461539,3.4871794871794872,5.054131054131054,144.84001094984868,90.1721205384615,1.8725010741025647,6.267769230769231,2.6906985332911257,7.543543641025638,260.93026023205283,19.507462686567163,5.990388059701493,3.2388059701492535,3.5472636815920398,155.45689208743718,72.17290680597013,1.601349513116298,6.130238805970151,2.3431914501566244,7.523260119402986,215.87187608476043,16.209302325581394,5.80886046511628,2.7906976744186047,2.670542635658915,154.82573732047814,57.43481947674419,1.4763491425969648,5.959133720930232,2.149440137812231,7.404736279069767,188.5535263810842,12.62,5.61868,2.45,2.181111111111111,160.8861278215075,43.74286344000002,1.2507171053547,5.732265,1.938230452674897,7.260913659999999,155.01735675093335,13.851063829787234,5.695647872340426,2.5,2.5354609929078014,159.53465147251515,49.21374368085107,1.3066679172470745,5.800602127659574,2.126652657385518,7.288395382978723,166.4690338662309,14.368421052631579,5.725694736842105,2.389473684210526,2.0280701754385966,159.87748066388545,50.85688738947369,1.3062066112792314,5.844731578947368,2.178319254927442,7.341622778947367,164.39656850437888,13.919540229885058,5.765748275862069,2.0689655172413794,1.2503192848020432,161.47448804705706,47.737771678160925,1.2752253790526895,5.897705747126436,2.183198524194693,7.418969402298849,154.42130161347453,10.723684210526315,5.452106578947368,1.644736842105263,0.45467836257309946,164.04814537024,35.22704630263158,1.0867449713957102,5.589459210526315,1.755847953216374,7.21495997368421,118.71540374527915,11.080332409972296,0.052574584487534576,0.006517146658080005,0.5103878116343488,2.8350603604527875,1.4524134904111967,52.35535681163436,0.25864383050587886,0.06594792243767306,0.2563990355162568,0.035234496537396125,54.439110111815985,0.2853895873286456,0.005198492435542276,-0.0007709803804801332,0.1650507848568791,0.8187774629756776,-0.2998365371066124,1.3196233826976518,-0.015835357339468496,0.005473670004971821,0.013527066479731838,0.0012099096704311456,-1.429842835644917,0.20639186339769303,-0.010847954479679168,-0.001618411421777208,-0.051236201265142396,-0.3131572056614434,0.28102358024309193,1.0840959778393442,0.035890536592492764,-0.009679265721255301,-0.0074110200907730895,-0.005398562916029261,4.757247391133555,-1.4187657025059588,-0.007951053275784319,-0.0003587123006728042,0.0018520904464343424,-0.10942305444012584,-0.13978732716571612,-6.76445506194034,-0.03524781669721416,-0.009948595632287598,-0.044671978989773466,-0.004064542437028921,-8.254637721692013,0.2180886426592798,0.0016513628808864278,0.0001641237537463155,0.03198060941828255,0.26485516911186346,0.00019341675683517856,1.076115123102487,0.008192817739632503,0.0017924459833795266,0.010389022305480949,-0.00023039627423823144,2.601123750885536,0.8188837154476337,0.006928215064537038,0.001283682020298845,-0.04454234690870513,0.1650433266609766,0.017896477064664792,3.869035006954674,0.012371856074902262,0.007461372075204818,0.03071973512835962,0.003466855926209696,2.738485613825321,0.21329639889196683,0.0002701246537396109,-0.00047377009057748457,-0.11925207756232689,-0.45780924045005306,-0.16498040623449722,0.9911215102493064,-0.0064516476692702196,0.0008073684210526277,0.02741696189309699,-0.00039033642659279876,-1.2739096825768423,-1.4372592097303154,-0.01224472967809723,-0.00154011033392842,-0.07118635972872289,-0.8955414909077043,-0.055206719081864426,-6.927213251440759,-0.03858896969513379,-0.012577081542331323,-0.09165736737199602,-0.002708851044353163,-10.578007078591403,-0.2970914127423823,0.0027635734072022264,0.00040772797287910137,-0.01004155124653743,-0.20413118566396501,-0.19142427328931455,-1.5417979300554079,-0.03355533692123408,0.0033738919667590794,-0.0437387403362689,0.004096288088642653,-6.754837372393666,,,0.5007518796992482,1.263157894736842,0.6578947368421053,0.02631578947368421,0.6052631578947368,0.05263157894736842,0.740092832680082,0.01313209286456042,0.022184724443507785,0.8041614404804583,0.2531750391217953,0.2291777923490704,1.5442542731605404,0.48235283147086566,2.008172087547469,1.7032662623174515,0.21215084209166699,0.0,0.09275498313835011,0.30490582523001714,7.213780954947381,982.0,218.81870000000004,111.0,189.60493827160494,6132.784639337631,3976.6257499999992,60.242445192131015,224.46880000000002,88.42196311537876,280.777969,8357.46087703341,930.0,237.45000000000002,136.0,197.11111111111111,5648.760427044098,3516.7127009999986,73.02754189000002,244.443,104.9372427983539,294.19820199999987,10176.28014905006,1307.0,401.35600000000005,217.0,237.66666666666666,10415.611769858291,4835.584755999998,107.29041737879197,410.7260000000001,156.99382716049385,504.05842800000005,14463.415697678949,1394.0,499.56200000000007,240.0,229.66666666666669,13315.013409561121,4939.394475,126.96602626333897,512.4855,184.85185185185188,636.80732,16215.60326877324,1262.0,561.868,245.0,218.11111111111111,16088.612782150749,4374.286344000002,125.07171053546999,573.2265,193.8230452674897,726.0913659999999,15501.735675093334,1302.0,535.3909,235.0,238.33333333333334,14996.257238416425,4626.091906000001,122.82678422122501,545.2565999999999,199.9053497942387,685.109166,15648.089183425704,1365.0,543.941,227.0,192.66666666666669,15188.360663069117,4831.404302000001,124.08962807152699,555.2494999999999,206.940329218107,697.4541639999999,15617.674007915994,1211.0,501.6201,180.0,108.77777777777777,14048.280460093963,4153.186136,110.94460797758398,513.1003999999999,189.93827160493828,645.4503379999999,13434.653240372283,815.0,414.36009999999993,125.0,34.55555555555556,12467.65904813824,2677.255519,82.59261782607398,424.79889999999995,133.44444444444443,548.336958,9022.370684641215,421.0526315789473,1.9978342105263138,0.2476515730070402,19.394736842105253,107.73229369720593,55.19171263562547,1989.5035588421056,9.828465559223396,2.506021052631576,9.743163349617758,1.3389108684210527,2068.6861842490075,11.13019390581718,0.20274120498614875,-0.030068234838725193,6.436980609418285,31.932321056051425,-11.693624947157884,51.46531192520842,-0.6175789362392714,0.213473130193901,0.5275555927095417,0.047186477146814676,-55.76387059015177,13.828254847645432,-0.7268129501385042,-0.10843356525907293,-3.4328254847645407,-20.98153277931671,18.828579876287158,72.63443051523606,2.404665951697015,-0.6485108033241052,-0.496538346081797,-0.3617037153739605,318.7355752059482,-122.01385041551245,-0.6837905817174513,-0.030849257857861162,0.15927977839335344,-9.410382681850823,-12.021710136251587,-581.7431353268693,-3.031312235960418,-0.8555792243767334,-3.8417901931205183,-0.34955064958448717,-709.8988440655132,21.80886426592798,0.16513628808864278,0.01641237537463155,3.198060941828255,26.485516911186348,0.019341675683517856,107.61151231024871,0.8192817739632503,0.17924459833795267,1.0389022305480948,-0.023039627423823143,260.11237508855356,76.97506925207757,0.6512522160664815,0.12066610990809143,-4.186980609418282,15.5140727061318,1.6822688440784903,363.68929065373936,1.1629544710408126,0.7013689750692529,2.8876551020658043,0.32588445706371144,257.4176476995802,20.26315789473685,0.025661842105263035,-0.045008158604861036,-11.328947368421055,-43.49187784275504,-15.673138592277235,94.15654347368411,-0.6129065285806709,0.07669999999999963,2.604611379844214,-0.037081960526315884,-121.02141984480002,-125.04155124653744,-1.065291481994459,-0.13398959905177255,-6.193213296398892,-77.91210970897028,-4.802984560122205,-602.667552875346,-3.35724036347664,-1.094206094182825,-7.974190961363654,-0.2356700408587252,-920.2866158374521,-22.578947368421055,0.2100315789473692,0.030987325938811705,-0.7631578947368447,-15.51397011046134,-14.548244769987907,-117.176642684211,-2.55020560601379,0.25641578947369004,-3.3241442655564364,0.3113178947368416,-513.3676403019186,0.7192066283684293,0.638878241847754,0.45823518989732237,0.34275241266609774,0.30973437444118507,0.2071971910613391,0.1935061748662319,0.1107783769098325,0.12259007089981604,0.05988890987562844,0.08183224196771467,0.034567606239561635,0.054558645540341656,0.0220507422025999,0.03657806779435179,0.0123625161822778,17.001102486017572,5.691976322947444,3.146324780984256,2.1893922478434593,0.342559762475273,-0.382934716741603,3.1680901048978796,0.9886008491231986,5.033414621403859,0.773998217024146,14.54823824746911,10.951851960940184,35.4505171337712,11.703200975113608,2.207785224279157,1.0250364320713365,3.1822629672463147,2.2401149862824252,3.0390611610214373,1.236502241510288,3.4929495656238765,2.4362676846150673,22.455861998692832,15.58919547242044,0.25257806921049625,0.554486471150178,0.7583481207535092,0.8525138456329809,0.8525138456329809,0.8525138456329809,1.9155576903946374,493.91719964890143,0.0,1.0,1.0,0.0,9.0,1.0,1.0,1.0,0.0,3.86080586198495,2.2027692699845653,1.0831910383876355,0.5660467106401805,0.5660467106401805,0.5660467106401805,103.25439142894672,546.7891510574166,28.72012207161028,14.389188185721487,28.80474552952217,,9.0,279.0,0.0,0.0,0.0,5.917906046161393,23.682139337428374,5.563451491696996,0.0,30.462311845459517,42.1783334225369,11.600939890232516,9.514285714285714,24.0,12.5,0.5,11.5,0.0007518796992481176,0.0,1.0,0.10091592617908401,0.04981203007518792,-0.051103896103896096,0.0,0.07052173913043447,0.0,0.5390977443609025,0.7781954887218042,0.4381818181818185,0.4892857142857146,0.7781954887218042,14.061763820921557,0.24950976442664796,0.42150976442664795,15.27906736912871,4.8103257433141104,4.354378054632337,29.340831190050267,9.164703797946448,0.6434782608695655,0.1801801801801802,0.0,0.25225225225225223,0.3125,0.39681656504776525,-0.4336517747783371,-0.027130282734700105,-0.01141188880995624,-0.028910118318555805,0.6031834349522348,0.6591750197032338,0.030270488439967044,0.017346711044821942,0.028659783465357986,-4.914833096991583,0.6770881410256412,0.8175892092053937,1.18681243771628,0.8804926416866721,0.7370073613559744,1.37838431829484,0.6841917891972424,1.0138610449536005,0.7382409792426513,0.92735198781583,0.7034602520134916,1.0100789275123154,0.7672667910447764,1.4497471623778613,1.779953725077181,1.4521557747220486,1.3145098842338374,0.9394772860628442,0.7690331077964079,0.7771600084006811,1.2114554395434376,0.9933306593186225,1.174775099935247,0.8560441217376467,1.0284440406976747,1.0730541558605187,0.9574683430678729,1.1535136158530819,1.0245139843465094,1.1262224594445662,1.0312934530873803,1.1077914710428058,1.059546073906116,1.144675398554749,1.0052630360962114,1.1291423462357022,0.7939506250000001,0.8560710348179674,0.7916507256840123,0.9252510176390778,0.8561929433051874,0.955121755288388,0.7979685157205566,0.9125003286953275,0.8312897043751473,0.9057714758602406,0.7621997543447181,0.9237182946462756,0.5936236702127661,0.823649904870389,0.780801136199887,1.0553422442911176,0.940704322049124,0.9937545445389722,0.6022303106612741,0.8588887786625328,0.7299759530998313,0.9409702087141002,0.5781494482153999,0.9070839365966781,0.8024375000000001,1.018944198783683,1.1970977806400858,1.214925373134329,1.2191924004825097,1.1122831474502348,0.8067988534430794,0.9568452471065992,0.9340063090157603,0.9060053203883176,0.8807506879167478,0.9811816370225819,1.1443951149425289,1.3909200130649648,1.4976326355251346,0.8880830954943157,1.3036442604994252,1.035946106194834,1.145094989950302,1.1047621264402407,1.296810068662702,1.5570848578154581,1.226513347868135,1.1443813238623843,1.21175,0.6875570519127951,0.5192376504494248,0.7154002713704211,0.8439648673100124,0.9619031580709237,1.2096777631713602,1.1637436350054748,0.8629427232097855,0.9959812008006107,0.8625791056843468,1.1253230018007037,3.5,0.0,2.000000000000001,0.9375,0.5733333333333335,0.5277777777777777,0.4848979591836735,0.2673611111111111,0.16805240614764422,0.015625,3333.462628024691,3844.5676456844685,1781.1266389995665,1591.1360586577744,9.602145649549826,0.36892645682684577,6.059660077126097,0.5846013682839808,1.0,0.3125,1.3871216514586349,3.04515824345902,4.16473647505595,4.681880802803405,4.681880802803405,4.681880802803405,0.17500000000000002,0.0,0.07692307692307696,0.037500000000000006,0.024927536231884057,0.021111111111111115,0.02020408163265306,0.015727124183006536,0.021006550768455527,0.005208333333333333,0.3976078141835206,15.39,7.695266272189349,4.795005202913631,119.5959557755756,1.0,3.8488792063656687,78.56058966247673,,63.184478633917834,63.675027450508544,63.015747867361256,63.16026011723121,73.70356276966564,63.88873236629124,64.18335895296624,71.18039149424641,0.025756410256410272,0.09887843120804574,-0.11830029626911437,0.32338308457711473,0.2888042436052087,-0.20644020389932133,0.025205126333976324,-0.06122457012988202,0.08299988540419828,0.05275786803368909,0.03433878128915531,-0.026264992809545765,0.0186268656716418,-0.20633457373783365,-0.24833128770712715,-0.10038680410700904,-0.11045874367607081,0.19348731067179128,0.02070649583651462,0.13876432514278353,-0.1467713517496038,-0.02890424324666853,-0.1532181085743484,0.08738657522803622,-0.12804360465116282,-0.15123378250701175,-0.05504131171086508,0.0036287905083462572,-0.03859637557157685,-0.09624485595086325,-0.12920273060649162,-0.13627936389695947,-0.15085533045699734,-0.17422834255139416,-0.11535690407027727,-0.15163065128613018,0.019682500000000006,0.031409908361291296,0.025183375847900202,0.06265943012211672,0.09342135102533176,0.0001331692098098179,0.020554059577402285,0.031676060950722285,0.027179718740549492,0.040518960161307786,-0.006538940438490456,0.04778042377149297,0.07390425531914896,0.1317787887830044,0.1969699452301456,-0.08727157250497998,0.05821510150655752,0.012321888486176257,0.07389950604051466,0.04783356344013416,0.11314036590396782,0.11981221016103182,0.09839379775244268,0.05030364398316889,0.01925000000000001,0.005137932260856144,-0.07269593818179633,-0.233649932157395,-0.1614813027744271,-0.11359052179265368,0.018930660979261254,-0.024944139037267995,0.012242514869451214,0.10693083083519882,-0.011078246177819379,-0.02340063384504775,-0.129712643678161,-0.23290207231215404,-0.2363166604543079,-0.13947503860010302,-0.3158809256409191,-0.03801033207577458,-0.1323114514597559,-0.1491973329487814,-0.1907123238676372,-0.35747937657973194,-0.07688065136614411,-0.19430896384721488,-0.026812500000000006,0.052564816900406874,0.0625623442697269,-0.019674355495251095,-0.07200241254523528,-0.13179736662671726,-0.029448714017985475,-0.12973569427735251,0.05115994321045856,-0.1705885525201037,0.11625788619670098,-0.1240805986453392,12.970631738280169,15.084293208129944,2.701599969404812,14.84289298208575,29.46047588124848,36.279149776903424,36.800431259272855,36.800431259272855,36.800431259272855,38.15526966340191,32.36205898403158,4.030865999741673,0.0,1.7623446796286522,5.7932106793703255,3224.0218703904743,2136.0967818972217,1446.9310138416688,24.0,26.0,31.0,38.0,48.0,46.0,46.0,42.0,36.0,274.12367628800047,20.0,4.532599493153256,5.332718793265369,6.171700597410915,7.00033446027523,7.848933726364071,8.689632748355741,9.542445945729886,10.388964598613677,11.243489253126375,0.6403508771929826,0.9554736842105265,1.1231145262559612,0.6020621447883299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6897111093602272,0.9477812177502576,0.9875321041131603,0.6251091358051141,8.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,29.800041095617345,56.8898417597364,22.831310926364257,0.0,198.54472257053234,-216.97499272798768,-13.57446975070899,-5.709868229683886,-14.464999515199178,301.79911399947906,329.81415832942884,15.14565232090129,8.6793199560376,14.33974601432299,0.4444444444444444,0.9790069283225024,0.2830867009703135,17.22972836147361,0.07685651523910726,304.6514952731655,0.02099307167749772,5.0,0.25,0.2643179898932014,0.5802592043541486,0.7935964177072127,0.8921389997879845,0.8921389997879845,0.8921389997879845,3.8186000000000027,,0.9327731092436975,0.4879432787375836,0.5821600835107351,0.9461851242422312,-0.8024186822351957,0.5154063957361761,0.4903101588860408,-0.5553606267492481,80.70300000000005,0.0,0.0,9.883888251797686,0.0,12.338727669087403,20.640100371266954,64.94142585113113,0.0,0.0,3.713572066704308,0.0,4.976733742420574,0.0,6.434546518787453,0.0,7.979681302387741,0.0,9.57227147806062,24.33333333333334,16.025577618907647,4.504323507180651,0.0,0.0,0.0,0.0,3.159956380700429,0.0,36.30800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.67835199772652,0.0,0.0,0.0,30.523988623064643,0.0,0.0,23.59610715563286,48.661413050844345,5.022633313741326,0.0,0.0,22.878361501956533,26.209022155688633,24.221082779743824,157.12117932495346,,126.27077062475739,127.32373739176504,126.01206588911127,126.22092180033167,147.6605209126687,127.73084469850669,128.31510631026026,142.53616002851896,24.221082779743824,157.12117932495346,,125.48819347229816,126.9385190138143,125.55246582318176,125.42618118603013,148.2095442215665,127.3239449123992,127.92704803370324,142.91614361524216,4.699256169583747,106.45154818705362,,86.60518506338789,87.07628736468942,86.28320631015998,86.57950231922753,100.63400466764642,87.35100514223231,87.71505188885733,96.87488367727344,1.2747938305128328,8.269535753944918,,6.6458300328819675,6.7012493364086865,6.6322139941637515,6.643206410543772,7.7716063638246675,6.722676036763509,6.753426647908435,7.501903159395735,2.3496280847918736,78.56058966247673,,63.184478633917834,63.675027450508544,63.015747867361256,63.16026011723121,73.70356276966564,63.88873236629124,64.18335895296624,71.18039149424641,36.01568627450979,0.0,4.189173385403544,5.966028255437977,0.0,0.0,0.0,37.52621995630009,2.0788820389266816,0.0,0.0,0.0,0.3202469135802468,2.2002563443072702,0.0,0.0,0.0,23.754147160594336,489.840082545503,52.710622755428126,115.71601325144276,158.2599860521261,177.91147050652938,177.91147050652938,177.91147050652938,376.0,109.75081961629452,10.503754024508453,51.676805108360696,16.130000000000003,16.130000000000003,0.8,7.658500446894326,5.321928094887363,3.8424139382057287,4.283408342154291,,4.2920534173210845,4.288526433311126,4.289963288280911,4.292141472305588,4.264781652560755,4.288574419019964,4.28804395224949,4.271117216401071,0.2022323125371436,0.22544254432391006,,0.22589754828005706,0.22571191754269082,0.22578754148846902,0.2259021827529257,0.22446219224003974,0.22571444310631392,0.22568652380260473,0.2247956429684774,1.9879546850081973,2.0966029204791785,,2.098619156651163,2.097797071367886,2.098132061565428,2.0986396722581917,2.0922448706263292,2.097808260628608,2.0976845599465475,2.0937293223755815,220.97999999999962,117.99071673395548,95.15914568711885,,94.29300561902295,94.62834727640072,94.51657834425964,94.28261359933661,96.17504867637825,94.62364691161437,94.66218682741534,95.83519065504363,6.210037722839762,5.008376088795729,,4.962789769422261,4.98043933033688,4.974556754961034,4.962242821017717,5.061844667177803,4.980191942716546,4.982220359337649,5.043957402897033,5.412459835797136,5.19740459391993,,5.188260901470533,5.191810971427484,5.190629137500048,5.188150685529152,5.208023840933612,5.191761298346812,5.192168512300146,5.204483838302167,0.0,6.704579851487921,0.7741948538674731,2.385761526832956,0.3202469135802468,14.17050645978556,2.90233873281823,1.0316144652305366,4.189173385403544,260.16514017287034,99.34062822166868,-108.56210030127168,-6.791902274473302,-2.8568973763492544,-7.237473353418111,151.0033265719296,165.0204813336556,7.578033789595248,4.342644245622516,7.174803536245894,718.0,25.0,1.1663395218799635,0.778032719252348,0.0,0.0,0.13608276348795434,0.060373004706725075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.052622977527775436,0.19037142086468112,0.06187892965865638,13.664925939000156,12.138686595107327,9.164703797946448,6.8550482533219546,8.053093735470812,5.387126967594817,5.998691420853189,3.4341296842048075,4.65842269419301,2.275778575273881,3.9279476144503045,1.6592450994989585,2.509697694855716,1.0143341413195954,1.6825911185401825,0.5686757443847787,2.0776055202997865,1.1397174525544889,2.932505781615976,1.317800765083558,4.480400211784982,1.7045247013660392,65.4203525987976,41.127701968512014,25.405157814184598,23.22482717250544,23.22482717250544,23.22482717250544,92.0,103.0,43.76906699999998,22.420932999999994,0.34210526315789475,58.03,6.305555555555555,4.305555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,38.0,0.0,1.0,39.0,12.0,0.0,6.0,33.0,12.0,20.0,27.0,0.0,0.0,0.0,16.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,2.0,0.0,1.0,19.0,3.0,0.0,2.0,0.0,0.0,2.0,5.0,0.0,0.0,1.0,1.0,2.0,3.295836866004329,6.081398082722002,3.8066624897703196,4.276666119016055,4.77912349311153,5.309504555938601,5.27715756871241,5.568344503761097,5.839369045620879,6.002188093804204 +3383,O=C(O)c1ccccc1-c1c2ccc(=O)cc-2oc2cc(O)ccc12,0,28.43243243243243,6.603513513513514,4.054054054054054,11.027027027027026,153.57176689468886,112.90041062162167,1.738631752924,6.6837297297297305,7.081831831831832,8.059201837837836,268.25126629674446,28.9,6.51,4.725,10.325,140.2782458747825,112.00298650000002,2.0399204768,6.673075,3.9944444444444445,7.905332799999998,311.1285568974076,27.873015873015873,6.48015873015873,4.650793650793651,9.714285714285714,141.1335127354968,107.49027709523808,1.93970760031746,6.635692063492064,4.419753086419752,7.880856190476192,293.22854619609325,23.797619047619047,6.432738095238094,4.095238095238095,8.011904761904763,147.69130535139993,89.9933853452381,1.6986709142410115,6.556690476190475,3.85515873015873,7.902423380952379,253.7550852559661,23.471264367816094,6.448160919540231,3.9310344827586206,7.862068965517241,148.6136388822919,88.6007210229885,1.661454743047057,6.563071264367816,4.106002554278417,7.919993333333331,246.39114568040503,22.81111111111111,6.35111111111111,3.7444444444444445,7.188888888888889,147.46586413163442,85.73715624444444,1.6943837594027218,6.478277777777778,3.796296296296297,7.827098577777777,249.26016160862864,21.15463917525773,6.297835051546391,3.185567010309278,6.391752577319588,149.06250753308706,78.52527091752577,1.54290366326901,6.416319587628865,3.9587628865979387,7.790177030927837,224.2632172773903,18.010526315789473,6.413368421052633,2.4947368421052634,5.368421052631579,157.56783862399092,64.9760296736842,1.2153947892740735,6.479107368421053,4.565497076023392,7.967717936842106,175.31850670260806,14.507462686567164,6.507313432835821,1.8955223880597014,4.253731343283582,167.15101932508034,50.132163567164184,0.9162927925609553,6.521113432835821,4.985074626865671,8.142075164179104,132.32708813695078,6.822498173849526,0.16289262235208174,0.034540750282943025,0.6764061358655955,4.011687363038713,1.3644854766579235,32.23525304601898,0.23227252325398096,0.14672461650840019,2.618699780861942,0.11381218407596781,45.6408197883704,-0.16033601168736233,-0.01773046018991964,-0.018629040573398765,0.199945215485756,0.521420745069394,0.17218629857339934,-0.5994428352081778,0.029418110717143415,-0.01602258948137327,-0.3625811622433244,-0.011549319211102988,4.3141240652596,0.04494069358934283,0.014061474602015138,0.003247072641246617,0.035305575846116315,0.08097672962537814,-0.11493400099451755,0.09164413630619407,-0.020354246788211707,0.012299064315280524,0.3430119308497688,0.009709518197734418,-3.404295015145852,-0.4148405161918673,-0.02127421823367769,-0.0036137146416469748,0.012139552680093191,-0.36014296149431296,0.021070530263030907,-1.856200655735851,0.004323458261007769,-0.018814063097846882,-0.25371872838089055,-0.014807727190510968,0.37988761102387414,-0.12290202597751501,0.007066992435119182,0.005328411493770625,-0.06379352325298275,-0.25337732886661124,0.0426457512241211,-0.607912050057512,0.004976454697497738,0.005073581689797907,0.009411088628236792,0.00647428252856771,-0.4473472703691022,-0.6708465221978734,-0.018709439168898622,-0.0029156289304778506,-0.1475773070367665,-0.5693450206963723,-0.014692785245922364,-3.1067330733463177,-0.0033034379150100935,-0.017358550442334218,-0.23405680455230002,-0.012111133024916801,-1.8586114438689934,-0.5589150030498595,-0.00305979983884693,-0.0017040343514340443,-0.20078618601884135,-0.21843018833824074,-0.41263245543187815,-2.818267258891658,-0.06877834194848251,-0.0017881439533710321,-0.09389404729332287,-0.004254807647993491,-10.695719904948435,-0.16218522932605456,0.007187036253892579,0.0036263088433884285,-0.06673330514013297,0.06057437238091582,-0.32687709843780954,-0.9454019174272431,-0.05436966233570137,0.00733410326400369,-0.07043045890841056,0.0030356372611587373,-7.988779161494562,0.03833280638443961,-0.02912900799145253,-0.007674908676996966,0.061391363125933615,0.002431233169434095,0.08346867493421896,0.37510634889830907,0.018206150567890593,-0.024080727843616107,-0.47371524408636134,-0.022192827883954953,4.642284242467574,,,0.4666666666666666,1.5,0.88,0.04,0.62,0.26,0.640514288735839,0.014899986668596129,0.028659986668596128,1.1804098103406522,0.30469897883871305,0.17696957698761465,1.8209240990764912,0.4816685558263277,2.0695499794142,1.706261902722726,0.0,0.3632880766914732,0.0,0.3632880766914732,8.974823607675685,1052.0,244.33,150.0,408.0,5682.155375103488,4177.315193000002,64.329374858188,247.29800000000003,262.02777777777777,298.19046799999995,9925.296852979545,1156.0,260.4,189.0,413.0,5611.1298349913,4480.119460000001,81.596819072,266.923,159.77777777777777,316.2133119999999,12445.142275896304,1756.0,408.25,293.0,612.0,8891.411302336299,6771.887456999999,122.20157881999998,418.0486,278.4444444444444,496.49394000000007,18473.398410353875,1999.0,540.3499999999999,344.0,673.0,12406.069649517594,7559.444369,142.68835679624496,550.762,323.8333333333333,663.8035639999998,21315.427161501153,2042.0,560.9900000000001,342.0,684.0,12929.386582759395,7708.262728999999,144.54656264509396,570.9872,357.2222222222223,689.0394199999998,21436.029674195237,2053.0,571.5999999999999,337.0,647.0,13271.927771847097,7716.344061999999,152.49453834624495,583.045,341.66666666666674,704.438872,22433.414544776577,2052.0,610.89,309.0,620.0,14459.063230709444,7616.951279,149.66165533709398,622.3829999999999,384.00000000000006,755.6471720000002,21753.53207590686,1711.0,609.2700000000001,237.0,510.0,14968.944669279137,6172.722818999999,115.46250498103699,615.5152,433.7222222222222,756.933204,16655.258136747765,972.0,435.99,127.0,285.0,11199.118294780383,3358.8549590000002,61.391617101584,436.9146,334.0,545.519036,8865.914905175701,252.43243243243248,6.0270270270270245,1.278007760468892,25.027027027027035,148.4324324324324,50.485962636343174,1192.7043627027024,8.594083360397295,5.428810810810806,96.89189189189186,4.211050810810809,1688.7103321697048,-6.413440467494493,-0.7092184075967856,-0.7451616229359506,7.99780861943024,20.856829802775756,6.887451942935973,-23.97771340832711,1.1767244286857366,-0.6409035792549308,-14.503246489732975,-0.4619727684441195,172.564962610384,2.831263696128598,0.8858728999269537,0.20456557639853687,2.224251278305328,5.101533966398822,-7.240842062654606,5.773580587290226,-1.2823175476573376,0.774841051862673,21.609751643535432,0.6116996464572683,-214.47058595418866,-34.84660336011685,-1.7870343316289259,-0.3035520298983459,1.019722425127828,-30.252008765522287,1.7699245420945962,-155.92085508181148,0.3631704939246526,-1.580381300219138,-21.312373183994808,-1.2438490840029213,31.910559326005426,-10.692476260043806,0.6148283418553688,0.4635717999580444,-5.550036523009499,-22.04382761139518,3.710180356498536,-52.88834835500355,0.43295155868230323,0.44140160701241793,0.818764710656601,0.5632625799853908,-38.91921252211189,-60.37618699780861,-1.683849525200876,-0.26240660374300656,-13.281957633308984,-51.2410518626735,-1.3223506721330127,-279.6059766011686,-0.2973094123509084,-1.5622695398100797,-21.065112409707,-1.090001972242512,-167.2750299482094,-54.214755295836376,-0.2968005843681522,-0.1652913320891023,-19.47626004382761,-21.18772826880935,-40.02534817689218,-273.37192411249083,-6.671499169002803,-0.17344996347699013,-9.107722587452319,-0.4127163418553686,-1037.4848307799982,-15.407596785975183,0.682768444119795,0.3444993401219007,-6.339663988312632,5.754565376187003,-31.053324351591908,-89.8131821555881,-5.16511792189163,0.6967398100803506,-6.690893596299003,0.28838553981008,-758.9340203419833,2.5682980277574536,-1.9516435354273194,-0.5142188813587967,4.113221329437552,0.16289262235208435,5.59240122059267,25.132125376186707,1.2198120880486698,-1.613408765522279,-31.73892135378621,-1.4869194682249818,311.03304424532746,0.7020670913979313,0.5157069901715107,0.4300612105592213,0.2702545781800886,0.2769159209484949,0.13820064666235454,0.16537996604814412,0.0719942898594964,0.1028657282691779,0.037036286837758475,0.06463024989565538,0.019323698831226786,0.04140800362079066,0.00969281884151005,0.02619685636759315,0.005064662164799557,8.02981794729873,5.658883008458332,3.5559289010824173,2.157083575302615,0.461112040865382,-0.5312173791751427,3.292476481959771,0.9727218580903044,6.024807774068021,2.752027107683236,13.643791062951724,10.919481999910959,16.01545706278778,11.67089331165141,2.029725516784516,0.7414174341315106,3.5020702426407166,2.206680823485842,7.009381022274398,1.3681106578816886,3.7149739736264538,2.4027522648025945,20.934582661906262,14.700432795733722,0.24624588693213442,0.4952678415569999,0.7088612161467807,0.8766681771365633,0.9088527394849942,0.9183820062087176,1.6272149887040777,1156.264890483857,0.0,1.0,0.0,0.0,14.0,0.0,5.0,0.0,0.0,3.8126419562388634,2.4000835101175007,1.1884910392172179,0.23661858113955248,0.054054054054051726,-2.6645352591003757e-15,38.66544509435596,1205.5701791447273,85.26577638522525,32.582977814722355,68.00512762451027,,9.0,400.0,5.969305287951849,19.802129157825057,16.74175371688144,33.41984625007247,0.0,30.33183534230805,30.33183534230805,0.0,0.0,4.417150937053347,11.666666666666666,37.5,22.0,1.0,15.5,0.0,0.033333333333333354,6.5,0.22894633764198946,0.12235872235872214,-0.10658761528326732,0.04098765432098761,0.16712499999999975,0.0,0.6738738738738739,0.853333333333333,0.4449275362318844,0.5515151515151517,0.8123456790123454,16.012857218395975,0.3724996667149032,0.7164996667149032,29.510245258516303,7.617474470967826,4.4242394246903665,45.52310247691228,12.041713895658193,0.5468750000000002,0.11428571428571428,0.0,0.4285714285714286,0.0,0.46263665422956857,-1.07791688771224,-0.10526805930197324,-0.029132888857087563,-0.07699406340801714,0.5373633457704317,1.252025795941525,0.059520664980965525,0.03383853502544663,0.05443590417137065,-5.061076416719375,0.6631477516059957,0.7675426008968612,1.3762696804814354,0.6832613390928722,0.509322651128915,0.784588639877892,0.6623563448781624,0.7655972889097542,0.750396383658758,0.7536750348675038,0.7950116373341495,0.6994611766283889,0.6677883144692566,0.5679180012812302,0.6229800837825874,1.0046282011724772,0.685256476953491,0.9952522052664916,0.676132978910968,0.9865782247163564,0.5587122047249697,0.4675477629452526,0.594788222963562,0.8962528116229426,0.9083052921382684,0.9692056374119157,0.9260118943088378,1.0531471767972844,0.9788003329518262,0.9332557632712468,0.9070586930503566,0.9249536487212596,0.9618523223015776,0.843293816829382,0.9797319785991293,0.9022612807440547,0.8917374289300745,0.8183825576001238,0.7172483387418612,1.1656364042600724,0.9715322600899116,0.9227222688557228,0.8942828903640511,0.929029166188169,0.8237163083846947,0.76296670353805,0.8130159107924955,0.9352300806707146,0.9436188436830834,0.8863408071748881,0.8765846262291108,1.2146868250539953,0.9890021849963585,0.957302605328768,0.9454266722432315,0.9628631678340689,0.8911122838110985,0.8211328064466141,0.8808911995259835,0.971343869883532,0.9850548577231284,0.8042124728399058,0.8566059996659523,1.1492730066130787,0.9163807149668498,1.2516022615597744,0.9945824974646306,1.255645190011002,0.8063849510998823,0.8082129146357246,0.8137634355919644,1.2050961154011972,1.1521582328412034,1.0811300448430494,0.9281008606080309,0.9312038194839146,1.077364204392993,1.2369243790497184,1.155559581882094,1.2397177678228926,1.0831334007956082,1.1588064303016958,1.0824944163036556,1.2267618737746155,1.3665249768289172,1.6778154072685902,1.5654657569771453,0.85877308919764,1.3556597928058183,0.995026127095538,1.351618114682276,0.9827837312510957,1.6690354347763743,1.835404567122547,1.6718358688455806,1.0395646508927963,5.0,0.0,2.88888888888889,2.1875,2.0844444444444448,1.0833333333333335,0.8889795918367349,0.5833333333333334,0.29528848576467626,0.03125,5324.850419646518,5683.597810405534,2434.1114797513223,2300.2620576514523,10.328096401235896,0.41033976732767635,6.090067727014947,0.6958918790708134,1.0,0.0,1.3968114093900867,2.8093698555114495,4.020962326411732,4.972834784489398,5.155399311574898,5.209453365628953,0.17857142857142855,0.0,0.0704607046070461,0.04861111111111112,0.046320987654320994,0.023550724637681156,0.02067394399620313,0.018817204301075263,0.019685899050978412,0.005208333333333333,0.431900337263178,18.367346938775512,7.552647233789411,3.5752539242843953,141.28755158638103,1.0,4.1710749628288735,107.92126422062819,,76.29431243459885,75.86247058249013,77.17061751048907,76.30265860038435,90.41751164743638,76.18874674661443,76.311418506297,83.33298054460084,-0.023501070663811456,-0.10884753363228698,-0.5393351453224856,0.2955993520518357,0.12997541879096877,0.1261913750779822,-0.018595878070273384,0.12665342548922956,-0.1092017812870273,-0.13845846892918026,-0.10147700182428626,0.09452336932735966,0.0065871316406649165,0.08632358174959072,0.09400700953650368,0.05219582433405315,0.020185204453230646,-0.08423248393675023,0.0028429786536920644,-0.0876308850614893,0.08382413672607136,0.1309855880985589,0.08531176408365443,-0.07458882270149955,-0.06080478229835827,-0.13060271193679268,-0.10462177607738607,0.01794713565771876,-0.08977343668712938,0.015442106657404378,-0.05758294042506639,0.01861373097617851,-0.12822703882664266,-0.09688729125618947,-0.13010669561201857,0.008323417782269374,-0.0180142262915651,0.04338436163084379,0.1542644977344893,-0.09431245500359973,-0.06315978936969972,0.0312540895111428,-0.018858609522613583,0.02142506839716112,0.034578939857085524,0.0035938020452039535,0.056885671610046866,-0.009801473164666718,-0.09832857482750414,-0.11485749875435976,-0.08441127962172992,-0.21817854571634263,-0.14192158290847304,-0.010768004128493809,-0.09637687872067117,-0.01422225009110489,-0.11830700843127041,-0.08937901406753106,-0.10641332580730384,-0.04072256923707976,-0.08192233824146226,-0.018784152373907844,-0.049334028284716606,-0.2968426443410299,-0.054448457362536715,-0.30240882918193573,-0.08742811030111367,-0.296110538538715,-0.012187075324668908,-0.03585521638620894,-0.037384465314833734,-0.23434548184153736,-0.02377211766031784,0.044121312249232936,0.1049863947274816,-0.09865863362509936,0.015099474834208627,-0.23956070183937733,-0.029328199039653547,-0.23407702974944763,0.04998549962871297,-0.026895201742151768,0.026672339923926758,-0.17503583850021376,0.005618588002173214,-0.1788233719295898,-0.22219866720112919,0.09076109732116966,0.0006060375471513614,0.06117227069258469,0.011636525649815996,0.0783827131717292,-0.16412193411483514,-0.18089711831359243,-0.1949951849543771,0.10171342811091358,11.345370619752302,30.03177099508767,15.893778541040087,12.53618232628222,28.00298630230244,42.98655860542086,45.9548035346849,46.733585334743836,46.788071821230325,51.738749485354994,42.65654756806815,0.0,9.082201917286831,0.0,9.082201917286831,3450.790323470339,2141.4347194280426,2108.0005722992714,190.0,41.0,57.0,82.0,116.0,136.0,163.0,191.0,208.0,332.0684734840003,28.0,4.9344739331306915,5.814130531825066,6.729824070489475,7.636752112435779,8.561592778712923,9.479374650055481,10.407983184107247,11.330767894729744,12.260934813904152,0.7747747747747749,1.0151351351351354,1.095639682203273,0.7477627490116041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7349330959702219,1.002649708532061,1.0264955414263504,0.7249989822918785,10.0,0.0,0.0,1.0,0.0,2.0,6.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.63020572673476,17.09277939380059,5.428790391900541,0.0,0.0,4.794537184071822,4.794537184071822,0.0,0.0,18.19910120538483,35.89528683400505,28.64586133478201,5.563451491696996,239.37968862127593,-557.7409541184583,-54.468306882074565,-15.07407984103941,-39.83863957988987,278.0451337156319,647.8292250262691,30.79746950315069,17.50889797368295,28.16648804462039,0.4444444444444444,0.6234642279796583,0.21795472377362535,157.80727364710947,0.14413082057221768,39.828304698658144,0.3765357720203419,5.0,0.07142857142857142,0.2681301302370803,0.5392830414889926,0.7718587813725963,0.9545790000346831,0.9896238529726188,1.0000000000000004,3.9686000000000012,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,93.16610000000003,19.42474291080658,0.0,0.0,0.0,0.0,0.0,76.45044975228548,0.0,28.200113727249335,4.04305126783455,0.0,5.3981627015177525,0.0,6.9650803456014065,0.0,8.637107288081575,0.0,10.367127224695365,28.666666666666668,15.68464933967414,0.0,0.0,5.762910289115647,0.0,1.0193896447467885,2.2996233308138088,0.0,37.56000000000001,0.0,23.36795878999748,0.0,0.0,0.0,0.0,0.0,-1.0445229696816989,40.5386682415211,5.428790391900541,0.0,5.749511833283905,16.182360077633263,0.0,0.0,10.357988675768818,69.87535880574127,0.0,33.41984625007247,0.0,27.667221713429353,27.192524550898213,32.466765908904144,215.84252844125655,,152.4886248691977,151.61065545069454,154.27198134662677,152.5056109691292,183.32127024143585,152.27400512113581,152.52343909250644,167.46395004531772,32.466765908904144,215.84252844125655,,151.3386248691977,150.31142201472318,153.47556409158665,151.3589893052752,186.24649461656858,151.08637855992976,151.3803630114993,168.6609334794918,5.068183344912792,144.91517501340482,,106.0452760423311,105.69301989878946,106.77774702654631,106.05223095564845,119.07599721795037,105.9590723162823,106.05953108656297,112.26358708699311,1.2986706363561658,8.633701137650261,,6.099544994767908,6.064426218027782,6.1708792538650705,6.100224438765168,7.332850809657434,6.090960204845433,6.100937563700257,6.698558001812708,2.5340916724563955,107.92126422062819,,76.29431243459885,75.86247058249013,77.17061751048907,76.30265860038435,90.41751164743638,76.18874674661443,76.311418506297,83.33298054460084,37.098039215686256,0.0,0.0,0.0,0.0,0.0,19.291266770597126,37.98033503277496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.824962344799506,322.595867395792,51.68202214743321,103.94668465392363,148.7756060772341,183.9948870261077,190.74977452827125,192.74977452827125,1237.0,130.15583396939056,194.8289549411158,60.41052882773065,87.74,87.74,0.8,9.875279353444398,5.807354922057604,4.375847667733717,4.922652502385882,,4.927846473144429,4.92854972951428,4.925973047303988,4.927829045644325,4.884351135735056,4.928020322064418,4.927810745266691,4.909127354966637,0.17503390670934865,0.19690610009543527,,0.19711385892577715,0.19714198918057121,0.19703892189215952,0.197113161825773,0.19537404542940223,0.1971208128825767,0.19711242981066765,0.1963650941986655,2.3923909855409664,2.5101382436030875,,2.5111928036315287,2.5113355041392165,2.5108125600398687,2.511189267090564,2.5023271806519314,2.51122808189241,2.511185553404183,2.5073869297723705,231.26999999999987,182.49895554074922,152.5244199951344,,151.63297840645765,151.54325329373998,151.8663503987478,151.63519440240034,156.0288803906989,151.61100499001157,151.6375204012146,153.6878406891737,7.299958221629969,6.100976799805376,,6.0653191362583065,6.0617301317495995,6.074654015949912,6.065407776096014,6.241155215627956,6.064440199600463,6.065500816048584,6.147513627566948,6.123035181815936,5.943615446217638,,5.937753717087625,5.937161816364839,5.939291592240125,5.937768331189211,5.966331852698725,5.937608794730132,5.9377836705105596,5.951214268613778,5.762910289115647,23.36795878999748,19.941867677626604,2.099970553036031,-0.6906899827832353,15.68464933967414,0.0,0.0,0.0,276.4004139662137,123.86099285592799,-288.5890140947606,-28.183254011449602,-7.7997030836421795,-20.613501006768615,143.86745391445257,335.2029216638739,15.93537518609408,9.059538423347943,14.57404007234234,1304.0,45.0,1.8994591009192212,0.6572467922453047,0.0,0.0,0.4638038460194186,0.12215676885921757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2647770179839391,0.08864805928724231,0.5615894732135314,0.1278967707041874,17.551677284948283,12.892674754287766,12.041713895658196,7.567128189042481,11.35355275888829,5.666226513156536,9.426658064744215,4.1036745219912945,8.434989718072588,3.036975520696195,7.497108987896025,2.241549064422307,5.63148849242753,1.3182233624453668,4.270087587917684,0.8255399328623279,4.273894190313114,1.392272365226746,7.36384305918788,2.067916026375391,12.80339998305036,3.013592293227077,79.49979428310404,63.25813197326264,32.921137998273004,25.890550910655893,24.390402314038848,24.216918348329177,138.0,167.0,45.411516,15.510483999999998,0.5405405405405406,184.05,7.861111111111111,5.361111111111109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,20.0,21.0,37.0,0.0,0.0,40.0,21.0,2.0,11.0,29.0,23.0,28.0,17.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,12.0,4.0,2.0,1.0,25.0,5.0,0.0,0.0,5.0,0.0,4.0,2.0,0.0,0.0,0.0,1.0,4.0,3.7256934272366524,8.824645434295569,4.430816798843313,5.098340874515361,5.800984802612564,6.501946361778399,6.993416786975084,7.546978240199321,8.082855889047313,8.54065829788035 +5035,O=C(c1ccc(OCCN2CCCCC2)cc1)c1c(-c2ccc(O)cc2)sc2cc(O)ccc12,0,26.16393442622951,6.0665327868852446,3.4262295081967213,7.122040072859745,157.43268177696433,103.52034047540987,1.676828925097098,6.1636459016393434,4.134391373765994,7.621070901639341,236.1211289583952,26.646153846153847,6.259615384615385,4.107692307692307,6.774358974358973,142.1489150570124,101.69240104615389,1.9829391341846159,6.426615384615385,3.028110161443495,7.703677230769228,282.66261654474494,23.241071428571427,6.153830357142858,3.7589285714285716,5.401785714285714,148.3670927815575,87.22362400892862,1.7652229441602059,6.295504464285713,2.8423445767195754,7.651039178571424,243.93298815226643,19.066225165562916,6.024251655629138,3.152317880794702,4.220750551876379,154.4955000724699,69.79247751655629,1.5146816270147347,6.1359940397351,2.730888725369961,7.597038026490065,201.27657575479168,18.45806451612903,5.910561290322581,2.9419354838709677,3.858064516129032,155.05771939210422,67.19207979354842,1.443767768142045,6.0246509677419375,2.579072082835523,7.526792077419356,187.87491227277343,18.0,5.911541666666668,3.0069444444444446,4.351851851851852,155.29408900264684,65.90556572222225,1.4531563717816942,6.022920138888889,2.7092121056241423,7.516834208333334,193.18846701077302,19.776119402985074,6.070776119402987,3.1791044776119404,4.63681592039801,152.57532674499726,72.70469114179103,1.546297652872985,6.1881626865671615,3.0151326699834162,7.631758014925372,210.44527023999834,18.119402985074625,6.021992537313432,2.9925373134328357,4.303482587064678,150.97932237446398,65.27484942537315,1.523232028670791,6.144314179104477,3.1494379952091394,7.5701833880597,204.96035488165646,15.482014388489208,5.943345323741007,2.647482014388489,3.4388489208633093,155.26959842234984,54.83571702158272,1.3069599975278847,6.041908633093524,3.074673594457767,7.523480503597122,173.50419065223633,9.367374361730718,0.10733147003493679,0.02149036584347897,0.5751142166084385,3.5884618830063606,1.4642470292743766,43.24497187315238,0.28476120100923985,0.10236334318731516,1.375807202586145,0.06857578715399086,52.928120071173545,0.44145287660471805,-0.005323500299753789,-0.009180739513676161,0.17873193723771524,0.7837112990028876,0.022082310276086096,2.112628403266292,0.0226200830878783,-0.004123696276848555,-0.09790254298749622,-0.004430735703801736,3.1928491680436903,0.33476264061120353,-0.007483826592313755,-0.0005346953728727346,0.006706626482896226,0.0791317938086282,0.09853127671223007,1.4929246108932914,0.016860097471290015,-0.006245120119399478,0.05581224619518912,-0.004797492072023668,1.0744800008041417,0.36175385453244635,-0.005653096351297669,-6.245784143310773e-06,0.020912273457786554,0.18540752434475402,0.1933766719465585,1.684174082118496,0.02916851860790167,-0.005113348615607473,0.01852911533992277,-0.003787587935664956,2.962408222239922,0.8548361089197325,-0.00161663132525946,4.871157146002762e-05,0.0520671689018734,0.4788981263948973,0.026684263419834976,3.8891907925271587,0.003218617140810565,0.0008512416884118761,-0.059371251191226104,-0.00029741063363126146,2.8097439227098793,0.8997021410015229,0.0037144999104183046,-0.0006321596370527531,0.04203059213473081,0.7231147209199706,0.14808833446006797,4.554691917831227,0.03165076462853881,0.0058599377780763524,0.06752629315745674,-0.0017488489709307478,9.558667472347672,0.17679006205200845,-0.0005077362448707046,0.0006934356356468461,-0.056029313256346615,-0.09690328256593948,0.08680022422570897,0.8436667368304958,0.009753341313651607,-0.00012774250221610705,-0.01762266484175615,0.0011925909962415661,2.47145329811364,-1.265832888767664,0.0037216618466389263,-0.0007983369377544371,-0.09138532010733756,-0.1543482979262961,-0.1929433931982494,-5.890742540022942,-0.04809535967030826,0.0017722452638714791,0.12058471625183148,0.002682550012635022,-7.937319312784249,-0.06604165740237691,0.007484475241628769,0.0013353997388624893,-0.02858750355265369,-0.13648248291987214,-0.3031779586989504,-0.6467252336901775,-0.051405136131450035,0.007138897642971346,0.10596779029144128,0.006397988998857353,-8.251256256152104,,,0.4872549019607844,1.2941176470588236,0.6764705882352942,0.04411764705882353,0.6176470588235294,0.058823529411764705,0.8906122326906147,0.009814515483961206,0.022461574307490614,1.0163356307005524,0.24526924668464942,0.24239310731295102,1.9069478633911672,0.48766235399760044,2.073381346740609,1.729403099214932,0.06479525789149017,0.21737540934943914,0.0,0.34397824752567685,7.756820972852471,1596.0,370.0584999999999,209.0,434.44444444444446,9603.393588394823,6314.740769000002,102.28656443092298,375.9823999999999,252.19787379972564,464.88532499999985,14403.388866462106,1732.0,406.875,267.0,440.33333333333326,9239.679478705806,6610.006068000002,128.89104372200003,417.73,196.82716049382717,500.7390199999998,18373.07007540842,2603.0,689.229,421.0,605.0,16617.11439153444,9769.045889000006,197.70496974594306,705.0964999999999,318.34259259259244,856.9163879999995,27320.49467305384,2879.0,909.6619999999999,476.0,637.3333333333333,23328.820510942955,10538.664105,228.71692567922494,926.5351,412.36419753086415,1147.1527419999998,30392.762938973545,2861.0,916.1370000000001,456.0,598.0,24033.946505776155,10414.772368000004,223.78400406201698,933.8209000000003,399.75617283950606,1166.6527720000001,29120.611402279883,2592.0,851.2620000000002,433.0,626.6666666666667,22362.348816381145,9490.401464000004,209.25451753656398,867.3005,390.1265432098765,1082.4241260000001,27819.139249551314,2650.0,813.4840000000002,426.0,621.3333333333333,20445.093783829634,9742.428612999998,207.20388548498,829.2137999999997,404.02777777777777,1022.6555739999998,28199.666212159776,2428.0,806.9469999999999,401.0,576.6666666666667,20231.229198178175,8746.829823000002,204.113091841886,823.3380999999998,422.02469135802465,1014.4045739999998,27464.687554141965,2152.0,826.125,368.0,478.0,21582.474180706628,7622.164665999998,181.667439656376,839.8252999999997,427.37962962962956,1045.76379,24117.08250066085,571.4098360655738,6.547219672131144,1.3109123164522172,35.08196721311475,218.89617486338798,89.31906878573697,2637.943284262295,17.37043326156363,6.244163934426225,83.92423935775484,4.183123016393442,3228.615324341586,28.694436979306673,-0.3460275194839963,-0.5967480683889504,11.617575920451491,50.941234435187695,1.4353501679455962,137.32084621230896,1.4703054007120895,-0.2680402579951561,-6.363665294187254,-0.2879978207471129,207.53519592283988,37.493415748454794,-0.8381885783391406,-0.05988588176174627,0.7511421660843773,8.862760906566358,11.035502991769768,167.20755642004863,1.8883309167844817,-0.6994534533727416,6.2509715738611815,-0.5373191120666508,120.34176009006387,54.6248320343994,-0.853617549045948,-0.0009431134056399268,3.1577532921257694,27.996536176057855,29.19987746393033,254.3102863998929,4.404446309793152,-0.7721156409567285,2.797896416328338,-0.5719257782854084,447.32364155822825,132.49959688255854,-0.2505778554152163,0.007550293576304282,8.070411179790376,74.22920959120908,4.136060830074421,602.8245728417096,0.49888565682563757,0.1319424617038408,-9.202543934640046,-0.046098648212845525,435.5103080200313,129.5571083042193,0.5348879871002359,-0.09103098773559644,6.0524052674012365,104.12851981247577,21.32472016224979,655.8756361676967,4.557710106509589,0.8438310400429947,9.72378621467377,-0.2518342518140277,1376.4481160180649,23.689868314969132,-0.06803665681267441,0.09292037517667738,-7.507927976350446,-12.98503986383589,11.631230046245003,113.05134273528643,1.3069477360293154,-0.017117495296958343,-2.361437088795324,0.15980719349636985,331.17474194722774,-169.62160709486696,0.4987026874496161,-0.10697714965909458,-12.245632894383233,-20.682671922123678,-25.85441468856542,-789.3595003630743,-6.444778195821306,0.23748086535877821,16.15835197774542,0.35946170169309294,-1063.6007879130893,-9.179790378930392,1.040342058586399,0.185620563701886,-3.973662993818863,-18.97106512586223,-42.14173625915411,-89.89480748293468,-7.145313922271555,0.9923067723730171,14.729522850510339,0.889320470841172,-1146.9246196051424,0.6909702524946127,0.5789259608297327,0.4363294746294319,0.32758772294224103,0.28139395129982997,0.1828299180433003,0.17922131070793218,0.10525676787451023,0.11171200636828524,0.05986909837577571,0.07116494361878603,0.03269307267571376,0.04471679109487135,0.017416174036400577,0.028171462018704723,0.009524480369588695,16.0045054026637,5.671775986940196,3.543560310802969,2.1653852647224525,0.41647294841031923,-0.5233646673512694,3.2891083414970494,0.9779959092688051,6.022062659013407,0.6531782567072787,14.54327465586649,10.310787473613583,32.06224666957384,11.68317280887662,2.9367223060781953,0.7527113718286635,3.488671483568119,2.2188646969193715,7.008273815806152,0.6046029024963143,3.701756638708243,2.4161543199069455,24.440734502231557,14.702348219179344,0.2382090281989025,0.5355214480973947,0.7010636968489087,0.8298232399608112,0.8705181113531609,0.8810133948452804,1.14341011718886,1288.7427847062916,0.0,0.0,4.0,0.0,17.0,3.0,4.0,0.0,0.0,4.442424596328305,2.5848381479560234,1.5505421773441173,0.7460618853168359,0.4918032786885256,0.42622950819672223,172.83165100761124,2069.6690478586515,92.03421361391389,33.92900078456805,68.19679148072407,,18.0,1047.0,0.0,15.007591973753234,17.28226861293275,17.73378494790691,45.910523867353824,30.599250746712766,42.46456947923127,24.26546827384644,4.899909730850478,4.736862953800049,16.56666666666667,44.0,23.0,1.5,21.0,0.0,0.012745098039215589,2.0,0.13947215440065125,0.07016123591715628,-0.06931091848349497,0.028322440087145906,0.11230508474576217,0.0,0.5841530054644801,0.8098039215686269,0.4446808510638289,0.5139917695473238,0.781481481481481,30.2808159114809,0.333693526454681,0.7636935264546809,34.555411443818784,8.33915438727808,8.241365648640334,64.83622735529968,16.580520035918415,0.6016949152542378,0.06036217303822936,0.0,0.3259557344064386,0.25,0.3865870138616646,-1.0500685914088657,-0.07263084707850499,-0.017214239203424023,-0.045655156148211556,0.6134129861383355,1.6661855861942645,0.048155767317578625,0.027314517806463354,0.04384698911037538,-6.635154069285191,0.7641019756007132,0.8185670757850065,1.3064179995672296,0.7235801581595974,0.6161450512142009,1.024380387038901,0.7648455025981173,0.8758859243672602,0.7997843534906341,0.7810297192383655,0.8453818579643936,0.8679202639808329,0.868622229417358,0.8947568488946523,0.8756694507830147,1.1300066755674232,0.9309425440254487,0.9933006458085157,0.8684878362124027,0.9136885999236548,0.8816060748809758,0.5640208821410685,0.8755839459631047,0.9224739906507307,0.9735418531798566,1.0249575930865256,0.9448674672015018,1.0137092281983042,0.9493750617895442,0.8865233451818257,0.9680539450615772,0.9051473210630914,1.0177524664264073,0.8282671625653524,1.024065933047264,0.9170238634657079,1.070018953556383,0.9312921360348472,0.8179646306073409,0.9213445884835695,0.8594441285941835,0.9794752592765298,1.053202157857338,1.0982438052985122,0.9175483925169599,1.0437387666446454,0.9271077746863413,0.9577607984490208,0.9986264918521918,0.8865404386394526,0.8195828946800024,0.9857866043613707,0.8411310544155419,0.8827118513073542,0.9783390948534839,0.9576677944887237,0.8732087098597864,0.8906810366279055,0.952379504352901,0.8281967953749536,0.964621179162713,1.006338071403948,0.8234174839008599,1.1678407030269216,1.0898190161579142,0.9379867578415262,0.9602650820304212,0.9656375195154818,0.9925996961273124,1.0400591987126644,1.00466506025367,0.9212241060634414,1.041806545651362,0.8358942965339881,0.8595392987040833,1.078497698423769,0.9772005964485824,1.1147736446640149,1.0457345381145078,1.1366054597798443,0.8559981117479388,0.8372509254894168,0.8359728604031872,1.1211488491439714,0.804145070448117,0.8995580737295885,0.8711888250010963,0.9166610636724266,0.9854326334728313,1.1372231839140436,0.830946765067469,1.0506776470306984,0.9013873003735664,0.9757994446719488,0.8811704838534946,1.1297011735374995,6.0,0.12733598612386493,3.555555555555557,2.1666666666666665,2.058888888888889,1.4208333333333334,0.77156462585034,0.5469104308390023,0.4215167548500881,0.29000771604938275,7015.817382597796,7803.6027834423885,3343.5357736201386,3060.8678592339006,18.87674093229999,0.48943683481150874,9.637768598838235,0.9586215147949754,0.0,0.25,1.4883127412345818,3.3458991896068633,4.380195160218769,5.184675452246051,5.438934058874361,5.5045078293661645,0.15789473684210525,0.005093439444954597,0.06708595387840673,0.040123456790123455,0.041177777777777785,0.027859477124183005,0.014837781266352695,0.01139396730914588,0.010808121919233029,0.009666923868312758,0.38594163622059524,25.641274238227147,12.029903880384479,6.297163261257687,202.40469359956137,0.0,4.467230435285505,236.17267731119844,,183.018627496165,184.0991692053984,187.1380456396878,183.04712182207294,244.02106983725295,185.40700887337596,185.99953533722447,217.5388393698981,0.04712663971328195,-0.049598689909128885,-0.4272025697720712,0.3107764198418404,0.2183975543154734,0.015081000565204644,0.0488525789648592,0.07943527070299276,-0.04028489250592943,-0.0711600744664412,-0.06461078884668528,0.060324250393745324,0.035737083592904756,-0.06972630291821906,-0.024880701276427195,0.011661381842456475,0.02205173034813811,0.0672914301632958,0.03452250160486608,0.05920784647464296,-0.06100934108777107,0.04056690944071031,-0.06995897927136621,0.020300739934826062,0.03861849015134361,-0.05266951388495439,-0.0002906318202677779,0.036361948381506436,0.0516676867107816,0.13206560647241908,0.03894496884073766,0.10243150578282334,-0.04995292705759456,0.013467813880529955,-0.05523214669282192,0.05597040322339637,0.09125674665166182,-0.015062044009396692,0.002266670182109005,0.09053361471208922,0.1334549848955574,0.018223880865961974,0.08993394200683182,0.011302864046798736,0.008315884005997977,-0.04315375808443525,-0.0043369627382243365,0.05308603288632883,0.09604635261265397,0.03460774281027942,-0.029415955114816036,0.07308216510903429,0.20151104971864875,0.10113616862412535,0.10532304035695073,0.11114844478940028,0.05724644775770195,0.049081217942837915,-0.02550242649061552,0.18059714683789888,0.018872957909557134,-0.004730544030613152,0.03226727924025835,-0.09742293206862887,-0.027004127597073803,0.05927976802433655,0.019509013424847812,0.03425094879177425,-0.0012479321038035114,-0.01280896393668409,0.017390846620010864,0.04669452258629676,-0.1351320914363231,0.03467447008251645,-0.03714859689076369,-0.15889942809317903,-0.043012383288013455,-0.1317697009731101,-0.13621797598347082,-0.16889716541386438,0.017313280405744848,0.0876465220018945,0.03911803457117018,-0.14996412685942312,-0.007050178081083443,0.06973234633973191,0.0621394604721307,-0.0497075237006656,-0.03803370005578243,-0.20705383220015378,-0.01495492321251067,-0.18052015495531662,0.06974076286183663,0.0770222674312582,0.09329807595923474,-0.15589550970365976,25.334799922525413,33.68594063685064,13.749181325266285,15.321453791139803,31.707436425357304,40.471702079878895,43.719471564613045,44.82802653517635,44.894124895832086,70.49496578918071,58.79970537330769,2.2030387683106656,7.390763917880931,0.0,11.695260415873014,14025.581803016776,11681.284127769513,2859.5491599512407,225.0,53.0,71.0,95.0,126.0,141.0,166.0,196.0,214.0,473.1660793440007,38.0,5.209486152841421,6.066108090103747,6.947937068614969,7.826842098158293,8.720134035412928,9.612132074718039,10.51398655078612,11.41499284958557,12.323291077383379,0.6830601092896174,0.9764590163934429,1.1090941015315234,0.6463842570539848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7065025130067732,0.9654773384763741,1.000794001408905,0.6576867227462773,11.0,0.0,0.0,0.0,1.0,2.0,7.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,7.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,14.94991774348146,23.85541746436463,5.783244946364939,0.0,0.0,9.694446914922299,0.0,0.0,11.336785877934737,6.4208216229260096,98.2246453024519,32.63495071394176,0.0,294.5627045844506,-800.1071768935907,-55.3415867180675,-13.116511096616238,-34.7872685605909,467.39435559206186,1269.5618709650607,36.69262689584639,20.812489687951818,33.40952292013318,0.5,0.8012059887244047,0.18700983186832504,179.10060668536255,0.10790350352447177,236.7858464091786,0.19879401127559526,9.0,0.18421052631578946,0.25094902311862843,0.5641624302623038,0.7385582788292424,0.874204193702597,0.9170755252346714,0.9281321218700486,6.075200000000007,,1.7678571428571428,1.3039347313657133,0.8308858337010604,1.7649211973099008,-4.423220944503943,1.2076958384332928,1.205598298147459,-1.7577236653040635,136.25109999999998,19.74445492755328,0.0,4.899909730850478,0.0,19.26246486877803,26.241151182250643,77.85694073647171,0.0,27.68913418525001,4.343805421853684,0.0,5.666426688112432,2.3978952727983707,7.1846291527173145,4.844187086458591,8.790116892892472,7.065613363597717,10.443396137193783,41.66666666666666,19.219441906935813,0.0,0.0,0.0,1.4559404030900933,1.6405780129549767,3.932720979907031,0.0,59.564000000000014,0.0,13.646561069128605,0.0,0.0,0.0,0.0,0.0,-0.08344303011736254,67.65474019342292,4.736862953800049,0.0,17.248535499851716,47.13736064914747,0.0,0.0,35.18390503624384,66.73003775307771,0.0,20.52674281633219,0.0,39.42943968029307,43.09665329341317,45.03383879656618,472.34535462239694,,366.3867446510174,368.1216363677753,374.2564182966862,366.4449969384916,490.3160767259372,370.7429768150794,371.9281531274991,435.8014473078626,45.03383879656618,472.34535462239694,,364.85675212102393,366.9462325052509,373.52328373753824,364.91743910023604,492.52431368681096,369.6448013362168,370.82223126584915,436.83540240510024,4.921613533529516,354.56982982632127,,279.9109879778785,278.40494843679465,283.22653021539537,279.95937404189146,380.7928749662246,280.64826005683585,281.842637024454,334.228084399463,1.3245246704872407,13.892510430070498,,10.776080725029924,10.827106951993391,11.007541714608418,10.777794027602695,14.421061080174624,10.904205200443512,10.939063327279385,12.81768962670184,2.527890596671713,236.17267731119844,,183.018627496165,184.0991692053984,187.1380456396878,183.04712182207294,244.02106983725295,185.40700887337596,185.99953533722447,217.5388393698981,58.89411764705882,0.0,0.0,0.0,0.0,0.0,19.636081287426798,61.0484340859432,7.696398253308394,0.0,5.91948816147541,0.0,0.0,2.436232955890243,0.0,0.0,0.0,40.118890087522914,610.4845597642634,90.7870772153095,204.09985056601866,267.19190477334496,316.26520258700907,331.77497759133604,335.77497759133604,1359.0,150.63490999760447,151.47250041224902,84.73607001562438,98.24,70.0,1.0,9.550762943063217,6.247927513443585,4.284366396110194,5.723972381506762,,5.713370588148543,5.717634794360059,5.717732626502619,5.713348862887767,5.687176988541575,5.716587458209448,5.715754469884123,5.697761475892024,0.12601077635618219,0.16835212886784595,,0.1680403114161336,0.16816572924588408,0.16816860666184175,0.16803967243787551,0.16726991142769337,0.16813492524145435,0.16811042558482714,0.16758121987917718,2.6787481071867902,2.9684384682709206,,2.966584576781822,2.967330654010661,2.967347764460892,2.9665807742449926,2.961989421062929,2.9671474607631616,2.9670017358833363,2.9638488057988246,353.5900000000013,3295.7383471832322,238.39172988354767,,238.7215520855895,238.3059442985938,238.43445730143273,238.72462083744372,242.38798462454412,238.43562547692193,238.52109096641496,240.87708936336577,96.93348079950682,7.011521467163167,,7.021222120164397,7.008998361723347,7.012778155924492,7.021312377571874,7.129058371310121,7.012812514027115,7.015326204894557,7.084620275393111,9.324160934543782,6.697690676125806,,6.699073250315394,6.697330760017437,6.69786989202941,6.69908610517539,6.7143151162081285,6.6978747913742485,6.698233169765667,6.708062232375553,6.756609636955957,16.895255192122907,20.439537824901226,2.027913427306292,1.0089033553793176,19.219441906935813,3.848741393113941,3.847656860194453,0.0,423.127394929874,224.44413242281047,-609.6473123319691,-42.167912721202235,-9.994218234950312,-26.506404883998663,356.13442913002297,967.3516309127305,27.958206119712745,15.858223457585748,25.456621866124486,3843.0,54.0,2.061325287470384,1.0574627540963204,0.0,0.0,0.3871796805881533,0.18814565027211877,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.07654655446197432,0.5386030744630236,0.3236036603862922,0.8669220672554554,0.4193004295348166,23.492988584816832,19.68348266821091,16.58052003591841,12.448333471805158,14.91387941889099,9.689985656294915,12.724713060263184,7.473230519090226,10.612640604987098,5.687564345698693,8.96678289596704,4.119327157139933,6.30506754437686,2.4556805391324814,4.676462695104984,1.5810637413517235,4.82900929361148,2.3997105749600305,7.7389160607573615,3.6012115179717794,12.322587322971009,4.9133304443952035,111.1660123035249,68.6730663903752,40.270447231164745,30.413585953016874,27.781427868350306,27.5236746003134,182.0,215.0,71.97141099999999,33.860589000000004,0.5081967213114754,322.06,9.222222222222221,7.416666666666669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,21.0,22.0,61.0,0.0,1.0,65.0,22.0,1.0,11.0,54.0,23.0,38.0,42.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,6.0,2.0,2.0,34.0,6.0,0.0,1.0,4.0,0.0,5.0,7.0,1.0,0.0,0.0,1.0,4.0,3.9318256327243257,8.457710202844762,4.54595082632812,5.1711939702188445,5.803439254897349,6.409352175214703,6.805151377037773,7.282691374763793,7.765269192517758,8.114973202832468 +6509849,CN(C)C(=O)CCS[C@H](SCCC(=O)O)c1cccc(/C=C/c2ccc3ccc(Cl)cc3n2)c1,1,33.67213114754098,6.044195081967212,3.19672131147541,6.59825946164744,158.21447357769384,135.2620766393442,1.8104583677200485,6.180777049180326,4.289361377838744,7.663503065573768,240.72174843279524,29.07936507936508,6.19920634920635,3.761904761904762,6.171075837742505,142.43823825710408,111.63093658730162,2.061067302317461,6.38786507936508,2.990724410477497,7.6815679047619,282.41653524629595,26.39622641509434,6.084958490566037,3.3962264150943398,4.614255765199162,149.5380659661685,99.19131378301893,1.8564554736650012,6.2507273584905665,2.9414777286021163,7.6615268018867875,239.62431783454736,22.225563909774436,6.026984962406016,2.9774436090225564,3.1386800334168754,152.1337250760999,81.38929192481206,1.6839113848499014,6.182872180451128,2.7335623008137633,7.6485617744360885,212.98477857879928,20.77777777777778,5.921277083333332,2.6597222222222223,2.2546296296296293,155.77640578623235,74.98431634722222,1.541257403494618,6.061855555555556,2.3847665180612707,7.612700416666668,187.85156000342317,19.71851851851852,5.684555555555557,2.77037037037037,2.711934156378601,152.54983218192544,71.94097573333335,1.6117573763008963,5.839444444444443,2.0223746380124976,7.347146814814814,194.0413979253374,19.64788732394366,5.801998591549296,2.683098591549296,2.938967136150235,154.98589067578385,71.08521966197182,1.5050509207265352,5.9481676056338015,2.2392844722656924,7.482187633802817,187.156207137325,18.532374100719423,5.851366906474818,2.8129496402877696,3.431654676258993,153.86737882621944,67.39764638129496,1.495042848280022,5.989564748201439,2.620081712407851,7.464157366906474,192.13570579786523,18.108843537414966,6.041289795918366,2.639455782312925,3.1617535903250187,157.68958160680273,64.68237059863947,1.4075951054620617,6.151757823129253,2.935850060188684,7.673637972789115,182.31333770058453,14.080623488309595,0.09779290513302873,0.015592210435053655,0.5627519484009676,3.5150049269909514,1.5396930547566716,63.961217491534526,0.3384366218004253,0.10010615425960755,1.5311133426650627,0.06769598118785274,54.584785686240735,0.5444090383622765,-0.0021146069285009313,-0.008792717640455696,0.13592096338669857,0.9640350462809579,-0.06938561551714605,2.5425718537686084,0.019588821820503418,-0.0014894745822720823,-0.057797567884597174,-0.0026428815261301496,1.481453670691966,0.13867747055214394,0.014035427684787556,0.0019841171112651695,-0.0635252239963897,0.15110421751802747,0.11121773021002303,0.5391589589758246,0.014262037404178095,0.011195345895047542,0.29739512692435693,0.008217773374473266,1.3397222923284282,-1.5799455639906004,-0.01571984954323455,-0.0010817027921451866,-0.02620566465882524,-0.7239973534121967,-0.015937358396908935,-7.224423035106579,-0.005770381100121647,-0.017388713115764353,-0.14400153584810355,-0.010632742558492463,-4.754928169308362,-0.9729276777449312,-0.019112064969094317,0.00036366645872071474,0.030371913165517024,-0.6533794125876603,0.07798177941009841,-4.46162822878408,-0.01208057819086047,-0.01710852220131982,-0.326126298527782,-0.005783518186941988,-1.521295411352348,0.22805896463515385,0.00840764131505855,-0.0011201505482491766,0.018547383718036766,0.3901349832086626,-0.04800024533291785,1.372589866571112,0.00032556197102357354,0.008897124428916842,0.047388026069451986,0.003717864106622171,1.2102113618930628,-0.40964680855895946,0.0019247813135193164,0.0006753643298144403,0.01390471287818283,0.3587618591132464,-0.09476067433139493,-1.619461021319804,-0.04132785219798644,0.004094907850759424,-0.07149495348001714,0.002890921721406146,1.1273665369811363,0.07104534056173503,0.008818440544527507,0.0012453649829605206,-0.04075643006154068,0.27444584390417137,-0.18718511087488324,0.3613903317936896,-0.024936794209218627,0.008783372807263403,0.12621835567232514,0.002180702265384731,-1.6212977903871668,-1.2625126374118583,-0.01631856588913442,-0.0008641626868507265,-0.014965620755155054,-0.38713965418682955,-0.014906000030145361,-5.606808535807982,-0.012323762230790167,-0.01572149941406282,-0.21102910077333367,-0.011104024792179737,-0.846233608044763,,,0.5053221288515405,1.1985294117647058,0.6029411764705882,0.014705882352941176,0.5955882352941176,0.007352941176470588,1.0199642946572258,0.017695374084876647,0.025283609378994293,0.9070116436694131,0.21625479704175787,0.2635266983549271,1.926975938326639,0.479781495396685,2.0164637110332873,1.5745127920288964,0.11934271586332332,0.15065952075163147,0.052117789532311394,0.44195091900439065,8.42811741645903,2054.0,368.69589999999994,195.0,402.4938271604938,9651.082888239323,8250.986674999996,110.43796043092296,377.0273999999999,261.6510440481634,467.47368699999987,14684.02665440051,1832.0,390.55000000000007,237.0,388.7777777777778,8973.609010197557,7032.749005000002,129.84724004600002,402.43550000000005,188.4156378600823,483.93877799999973,17792.241720516646,2798.0,645.0056,360.0,489.11111111111114,15851.03499241386,10514.279261000007,196.78428020849012,662.5771000000001,311.7966392318243,812.1218409999994,25400.17769046202,2956.0,801.589,396.0,417.4444444444444,20233.785435121285,10824.775826000003,223.9602141850369,822.3220000000001,363.5637860082305,1017.2587159999998,28326.975550980304,2992.0,852.6638999999998,383.0,324.66666666666663,22431.802433217457,10797.741554,221.941066103225,872.9072,343.40637860082296,1096.2288600000002,27050.624640492937,2662.0,767.4150000000002,374.0,366.11111111111114,20594.227344559935,9712.031724000002,217.587245800621,788.3249999999998,273.02057613168716,991.8648199999999,26195.58871992055,2790.0,823.8838000000001,381.0,417.33333333333337,22007.996475961307,10094.101191999998,213.71723074316802,844.6397999999998,317.97839506172835,1062.470644,26576.18141350015,2576.0,813.3399999999998,391.0,477.0,21387.5656568445,9368.272847,207.81095591092304,832.5495000000001,364.1913580246913,1037.517874,26706.863105903267,2662.0,888.0695999999998,388.0,464.77777777777777,23180.3684962,9508.308478,206.91648050292306,904.3084000000001,431.5699588477366,1128.024782,26800.060641985925,858.9180327868853,5.965367213114752,0.951124836538273,34.32786885245903,214.41530054644804,93.92127634015696,3901.6342669836063,20.644633929825943,6.106475409836061,93.39791390256883,4.129454852459017,3329.671926860685,34.29776941682342,-0.13322023649555867,-0.5539412113487088,8.56302069336201,60.73420791570035,-4.371293777580201,160.18202678742233,1.2340957746917154,-0.09383689868314118,-3.641246776729622,-0.16650153614619942,93.33158125359387,14.699811878527258,1.487755334587481,0.21031641379410798,-6.733673743617308,16.01704705691091,11.789079402262441,57.1508496514374,1.5117759648428781,1.1867066648750395,31.523883453981835,0.8710839776941662,142.0105629868134,-210.13276001074985,-2.0907399892501948,-0.1438664713553098,-3.485353399623757,-96.29164800382216,-2.1196686667888884,-960.848263669175,-0.767460686316179,-2.312698844396659,-19.15220426779777,-1.4141547602794975,-632.4054465180121,-140.10158559527008,-2.7521373555495816,0.05236797005578293,4.373555495834451,-94.08663541262308,11.229376235054172,-642.4744649449075,-1.7396032594839077,-2.463627196990054,-46.96218698800061,-0.8328266189196463,-219.06653923473812,30.78796022574577,1.1350315775329043,-0.15122032401363883,2.5038968019349634,52.66822273316945,-6.48003311994391,185.29963198710013,0.043950866088182425,1.2011117979037738,6.397383519376018,0.5019116543939931,163.37853385556346,-58.169846815372246,0.2733189465197429,0.09590173483365053,1.9744692287019618,50.94418399408099,-13.45601575505808,-229.96346502741216,-5.868555012114074,0.5814769148078381,-10.152283394162433,0.41051088443967276,160.08604825132136,9.87530233808117,1.2257632356893235,0.17310573263151235,-5.665143778554154,38.14797230267982,-26.018730411608768,50.23325611932286,-3.4662143950813893,1.220888820209613,17.544351438453194,0.30311761488847766,-225.36039286381617,-185.58935769954317,-2.3988291857027595,-0.1270319149670568,-2.199946251007793,-56.909529165463944,-2.191182004431368,-824.2008547637733,-1.8115930479261544,-2.311060413867234,-31.02127781368005,-1.6322916444504214,-124.39634038258016,0.7206301398015915,0.6322985554194166,0.45312696787464696,0.3690795541529248,0.30676161214386005,0.22901690409246103,0.19624336575441442,0.1413204353976874,0.12385003554343017,0.08794613381571159,0.08005977209119343,0.051507774144976,0.05417319694441694,0.03238968682228037,0.03587573737099469,0.019597149446551495,17.001105926296955,5.673200491646048,3.555149489607211,2.169295893433682,0.42885942216461914,-0.4214510637121086,3.1934170948054406,0.9725980610844142,6.023252691804892,0.6515410367365306,14.548282240544918,10.328313764479722,35.45051833601885,11.686354224030897,2.925396207088346,0.7415294666848593,3.501211790987143,2.2189109994432323,7.009376808026565,0.6096627694790008,3.7141317748677203,2.4145150084138516,24.43788321972336,14.700682311483455,0.2704144868090036,0.5677861083464629,0.7430673547038267,0.8593726950361846,0.8877664393485152,0.8877664393485152,1.4468775351857075,1183.6744002915261,0.0,2.0,3.0,0.0,14.0,2.0,3.0,0.0,0.0,4.251611192331894,2.405095976133579,1.316695251008209,0.5945026640408289,0.41819303285782006,0.41819303285782006,83.21611633597672,2028.657381191298,79.90595784912269,33.256678380185214,71.27531778649023,,17.0,952.0,5.969305287951849,9.589074368143644,16.90997136608047,22.949162150160916,27.72375591032351,0.0,42.51902359498709,60.68297676136064,11.050345589408819,16.70746728507322,17.180952380952377,40.75,20.5,0.5,20.25,0.005322128851540493,0.0,0.25,0.15497936879669932,0.0610399748573055,-0.09393939393939382,0.015058023209283733,0.10299237933954264,0.0,0.59375487900078,0.8270308123249297,0.4387755102040806,0.5327149041434744,0.811972789115646,34.678786018345676,0.601642718885806,0.859642718885806,30.838395884760047,7.352663099419768,8.959907744067522,65.51718190310572,16.31257084348729,0.6110076206604573,0.15798226164079823,0.0,0.28519955654102,0.2692307692307692,0.4480397023523871,-1.1350614860617245,-0.06377737976365644,-0.018607565345274173,-0.05405054695532021,0.5519602976476129,1.3983333896651338,0.03600947731328271,0.0229234981912317,0.03495833474162835,-6.687709015057181,0.6858019002539367,0.7006952988099902,1.5143471026428652,0.9016691681448126,0.5792656095084014,1.1081365885482342,0.6831465958185996,0.8391846165885014,0.6764949865098863,0.6497429618977879,0.6839248200001224,0.8905393575046467,1.0300365661918653,0.6247666121806016,0.8573047118170434,1.3026436719468015,0.9270331470701351,1.0401020385265507,1.0108829407423305,1.066921788187783,0.6486124291398621,0.4404385742137344,0.6001770789351406,0.9464314831167774,1.1428961761964935,1.0727257482909454,0.974131620986827,1.1170476334101727,1.1822999655551885,1.047197862502388,1.1330629686057607,1.0702777668768817,1.0800589441226798,1.0350418461521846,1.0719665796440363,1.0606270708807133,1.2600639704291838,1.1915234630272986,0.7852231634616491,0.867856574339382,1.159627949474527,0.994687008849824,1.2358481423122056,1.2338897112137268,1.1465288124672817,1.3066067628988391,1.0692333974876616,1.0426414612061552,1.0524869259838912,0.3882186266044568,0.5952750706009037,0.893346068131168,0.6650171361137489,1.0447971901773898,1.0293347366388461,1.1551701807853088,0.45213934266082606,0.3461726216028195,0.38302763678151386,1.0344138688741293,1.1599919784385588,0.7327860753582283,0.6606051148584874,0.8739255014326645,0.7776726451100031,1.0827034144314076,1.1373352056313262,1.2824703419131196,0.7393686728756547,0.7611121227510751,0.6899484015308441,1.0150790776198728,0.8254487374714496,0.6465846896120442,0.7556061762643134,1.1065531528931578,0.8233123985545752,1.0821672183176305,0.8307758915774894,0.9914054578800048,0.6728474845058517,0.6160728465773099,0.6730540544062855,1.0203109445521832,0.9936563853315498,1.4008922562757777,1.2543859794142322,1.016607215952283,1.198416955627532,1.007121839273127,0.9883738719909145,1.0023960514373735,1.3115585444099926,1.4762367327494685,1.345658672447981,0.9715735261773647,7.5,0.23120089786756454,3.555555555555557,1.5,1.4488888888888891,0.75,0.7110204081632653,0.5850694444444444,0.42403628117913816,0.37375,7361.867615743271,8203.934663174206,3331.201236641407,3053.4631262599964,17.70222223013542,0.46681765567912215,9.438512348352761,0.8755309710671584,0.0,0.2692307692307692,1.6791261452309927,3.5256413614293076,4.614042086554678,5.336234673522058,5.512544304705067,5.512544304705067,0.20833333333333334,0.006422247162987904,0.07407407407407411,0.03125,0.034497354497354506,0.017857142857142856,0.0161595547309833,0.012718900966183572,0.00942302847064752,0.008898809523809526,0.41963444561651664,28.569444444444443,14.666666666666666,9.770390889504464,213.14116796452018,0.0,4.4276359974163375,248.52522423030058,,175.8863644044586,204.1003901293422,206.2838591910416,175.8518928184929,206.43432048424924,203.10523849818895,201.04325673498928,210.9724471987216,0.03866370255651469,-0.02162331639114728,-0.563917327634851,0.24152908536862716,0.27426278662608533,-0.045064576541920906,0.03975177386367178,0.05788032546919484,-0.01487895118225593,-0.03774871936260086,-0.03904044937019664,0.02714041379968994,0.009848816046198566,0.14352194226866474,0.12725053445947426,-0.1128831702438233,0.042988337329979635,0.07223370259834,0.008429466794424042,0.04214094009184491,0.11183474160853685,0.19423456032765649,0.12139233718570948,0.024543877483174475,-0.11220707416133571,-0.16074631919207913,-0.06937456344953853,-0.046566990542258206,-0.20597335379327067,-0.010350997133923961,-0.1129500550245585,-0.017050108435145702,-0.17370273830188113,-0.09405021289766427,-0.15706608238659206,-0.08711086998930809,-0.06909691737391473,-0.1954340649057922,0.023323598679962487,0.053970338533375746,-0.18588292937244644,0.05064761393135102,-0.06975521110702107,-0.035695245173509436,-0.17090380034929625,-0.2129994491198967,-0.0854337005751203,-0.027870319398099665,0.016196652429808896,0.0859739395574919,-0.07184039446587433,0.03295836428596695,0.11099130479530817,-0.031175204164640247,0.021459720755827992,0.0009619584585487209,0.0888768976764778,0.030950044486561766,0.05492001210980747,0.022171221278571813,-0.02909294527327343,0.0196822183664655,0.043314213377733723,0.024708422454497753,0.1020658196972621,-0.06154517229174007,-0.02531942143743816,-0.12211400757438509,0.04090565541195406,-0.04669474916571016,0.042704480689688094,0.020653493877604675,0.005045610417800054,0.09017464541555124,0.07987097070988415,-0.0724234366088791,0.07807836677461302,-0.12157300463011142,0.005650147792160473,-0.07368231628291029,0.0877405877013843,0.08243567092990575,0.03221317169971137,-0.02970237530484341,-0.08966312027731274,-0.16686860735895004,-0.055422718315034904,-0.026593636499489943,-0.11013914979579946,-0.009681150398188332,-0.08765950298788576,-0.036413796371178295,-0.1570482807010236,-0.13782722342815945,-0.16402782849644593,-0.015503103976793196,20.29976122928133,28.6209703442955,6.54816249164571,21.13788231726622,37.83948973933793,46.15596422620238,48.10236102905082,49.29840900613575,49.29840900613575,68.55976617513177,53.53343492898248,4.057652339352993,5.1224237055554696,1.7720048440985874,15.026331246149283,13818.778398959372,12570.454445603033,3299.840878729232,117.0,48.0,57.0,68.0,86.0,90.0,99.0,110.0,120.0,514.1151624040008,36.0,5.1298987149230735,5.937536205082426,6.78105762593618,7.6093665379542115,8.457230850243555,9.29532469588118,10.146472946063877,10.990415173925399,11.844090787657887,0.7377049180327868,0.9754098360655739,1.111602682745983,0.7030208647537572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7265084028663984,0.96702025072324,1.0036595704034483,0.6629502490882339,9.0,1.0,0.0,0.0,0.0,2.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,1.0,4.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,10.006437125691184,0.0,0.0,5.907179729351506,0.0,9.589074368143644,4.9839785209472085,0.0,23.52376989878223,48.00879533937445,41.468391364074314,42.430730329980086,22.21342034919369,358.7751194859205,-908.9190492439225,-51.07077994442574,-14.900312282687254,-43.28185948780583,441.99123582189725,1119.7383319473756,28.83517790469695,18.35636609749796,27.993458298684395,0.47058823529411764,0.8345052532498664,0.189946093627452,156.91120289109213,0.11987101422256212,36.65567074534843,0.16549474675013365,9.0,0.3055555555555556,0.2831226624379549,0.5944693148184669,0.7779879336977554,0.8997590636369124,0.9294871768794826,0.9294871768794826,6.476600000000006,,2.9327731092436973,1.2959058080115886,0.9277616506060542,2.9446992664041893,-3.201025613183686,1.3148250003873394,1.3785067678620975,-1.4371863105803893,145.34379999999982,14.69560176298435,0.0,9.883888251797686,0.0,17.423613259654974,25.601051178847957,76.44076790813828,0.0,0.0,4.290459441148391,0.0,5.579729825986222,0.0,7.044905117129371,0.0,8.594339400592892,0.0,10.191407096789248,44.99999999999999,17.82964598406521,4.665862615521568,0.0,0.0,0.0,1.8856616292601491,3.6171896289241947,0.0,59.50000000000001,0.0,22.921639682379837,0.0,0.0,0.0,3.9824931723786343,0.0,-0.7198753071711006,67.80776364750497,0.0,0.0,0.0,52.4679518427897,9.589074368143644,0.0,34.244444237897426,54.59730361615449,5.022633313741326,23.054965145748817,0.0,42.88427274997919,44.3170125748503,42.80430924221578,497.05044846060116,,351.9675838039781,408.1272625142602,412.5651833087584,351.898657883768,413.8293315036561,406.13313434929637,402.0054248365749,422.36759625349623,42.80430924221578,497.0504484606011,,349.6060123814988,406.9838162130736,411.7465700876355,349.5270749316801,416.06966658168227,404.95956672524244,400.7602870661614,423.3820807080234,4.751475798091739,366.04499696093717,,262.1852142270519,297.8745170079392,300.55559647434404,262.14826907917063,300.55843325846513,296.6451574691512,294.0091720325973,306.71845179077366,1.258950271829876,14.619130837076504,,10.351987758940531,12.0037430151253,12.134270097316422,10.349960525993177,12.17145092657812,11.945092186744011,11.823688965781614,12.422576360396947,2.375737899045871,248.52522423030058,,175.8863644044586,204.1003901293422,206.2838591910416,175.8518928184929,206.43432048424924,203.10523849818895,201.04325673498928,210.9724471987216,58.98823529411764,0.0,3.5017742814182684,6.097715190197006,0.0,0.0,9.017722365094825,61.22323379461035,1.7402270216607272,0.0,0.0,3.2687866629594344,0.044998166315806776,1.5906033514398863,0.0,0.0,0.0,40.43996519438227,668.2437301301229,102.42669485909056,215.06412304718776,281.4565672798353,325.5103150848455,336.26520258700907,336.26520258700907,865.0,146.19139353766778,132.52262517769483,69.70084088164612,121.1,70.5,0.8888888888888888,9.03167618135741,6.169925001442312,4.262758521988357,5.735613811206087,,5.732738671338622,5.731114896636652,5.7306933696972076,5.732777570847952,5.704151257626398,5.7309212164444,5.730754193307711,5.715287788786576,0.1253752506467164,0.16869452385900255,,0.1686099609217242,0.16856220284225445,0.16854980499109434,0.16861110502493976,0.16776915463607053,0.16855650636601174,0.16855159392081503,0.1680966996701934,2.673691922712444,2.970470205457266,,2.9699688012787537,2.969685515260976,2.9696119619559758,2.9699755867576645,2.9649696321992094,2.9696517201847157,2.9696225755560763,2.9669200843440895,379.8300000000013,1224.3455957995152,225.8124415834401,,225.59274901693388,226.46189475416043,226.5992887839865,225.5836307814611,229.62143283588637,226.4478428921258,226.42195296559558,228.35700332255468,36.01016458233868,6.641542399512944,,6.635080853439232,6.66064396335766,6.6646849642348975,6.634812670042973,6.753571553996657,6.660230673297818,6.659469204870458,6.716382450663373,8.333937204350674,6.6434801818349625,,6.642506809847105,6.646352127311126,6.64695864157026,6.6424663900207035,6.660207440299174,6.646290075821079,6.646175738646043,6.654685640029841,0.044998166315806776,29.17810564934129,10.711796681318974,3.8087769419601947,0.46430191505342155,17.82964598406521,4.538542971814839,0.0,3.5017742814182684,460.07496852809277,287.2950448058674,-727.8317943329027,-40.89576231882539,-11.931668759555784,-34.65865687299537,353.9317109870989,896.6487829719554,23.09024031539669,14.699160376589433,22.41621957429889,4072.0,48.0,2.3408739759180546,1.3895699257703844,0.0,0.0,0.40236892706218247,0.2304038638797935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21941609682128765,0.07046793880651042,0.41564208143766906,0.11627428841456067,24.50142475325411,21.498150884260163,16.31257084348729,13.286863949505292,14.724557382905283,10.99281139643813,11.185871848001621,8.055264817668181,8.421802416953252,5.980337099468388,6.885140399842634,4.429668576467936,4.875587724997525,2.915071814005233,3.5516979997284746,1.940117795208598,4.500365084430766,2.728378769526842,5.439173448958526,3.4729526021095616,7.681089541480323,4.594371045291976,110.07586610537592,65.27186051413011,38.4644260432469,31.726664803533843,28.930775376953473,28.930775376953473,168.0,189.0,74.00941099999999,37.102589000000016,0.29508196721311475,174.08,11.61111111111111,7.583333333333337,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,16.0,17.0,61.0,0.0,0.0,63.0,17.0,3.0,11.0,52.0,20.0,36.0,43.0,0.0,0.0,0.0,26.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,5.0,1.0,1.0,34.0,8.0,0.0,2.0,3.0,0.0,3.0,11.0,2.0,0.0,1.0,1.0,3.0,3.8815637979434374,7.828679011913351,4.430816798843313,4.941642422609304,5.47541697936084,6.077928899506938,6.363081981399372,6.767486958419182,7.1961538915327345,7.647994754575697 +3158,CN(C)CCC=C1c2ccccc2COc2ccccc21,0,19.476190476190474,5.763450000000001,3.0714285714285716,5.619047619047619,159.26320968646974,76.53618316666666,1.5280755952816432,5.863397619047619,2.425925925925926,7.331211904761904,218.07820753506763,22.636363636363637,6.102840909090909,3.6818181818181817,5.7272727272727275,143.080307888884,85.00102806818178,1.8585070570454556,6.264886363636364,2.7411616161616164,7.535897727272722,263.6650755185599,18.355263157894736,6.035092105263158,3.473684210526316,4.5394736842105265,153.21156093817544,67.22363956578944,1.5927145075742233,6.153888157894738,2.482456140350878,7.541632052631577,220.87917921788429,16.816326530612244,5.877173469387754,3.2142857142857144,4.153061224489796,150.57930558095853,60.71852680612244,1.5326427992264076,6.004984693877551,2.3877551020408165,7.407264040816325,206.66282185331107,13.68421052631579,5.711745614035085,2.7280701754385963,2.9035087719298245,156.3095610653515,48.39682894736842,1.335876155163342,5.816223684210527,2.1783625730994154,7.305192701754386,173.88960170260225,13.376146788990825,5.719082568807339,2.697247706422018,2.522935779816514,154.87527742527226,46.49588334862384,1.3589644824832843,5.828463302752294,2.1727828746177376,7.304267192660549,174.70712379944337,11.932692307692308,5.662211538461539,2.4711538461538463,1.9326923076923077,156.929557632795,40.37991118269229,1.2688738251877596,5.763451923076923,2.059294871794872,7.262057730769232,158.4765016563298,11.21875,5.669562500000001,2.28125,1.7395833333333333,160.44811214432633,37.580790322916656,1.181508646596094,5.755646875,2.045138888888889,7.2776997083333335,145.44417050993331,10.180722891566266,5.628843373493977,1.9879518072289157,0.8433734939759037,162.23857298435576,33.20256228915662,1.125426301343699,5.7098915662650604,2.0481927710843375,7.252017060240964,136.2510434945173,6.721088435374149,0.06386218820861675,0.010853590607544697,0.5266439909297054,3.149659863945579,1.4227824242739266,32.287395928004536,0.24176030818957425,0.06562159863945573,0.29339884101788866,0.034267394557823114,53.749839678329124,0.4888682745825596,0.006053883219954623,-0.0024352151333393445,0.24445990517419097,1.0538033395176252,-0.18655975572386305,2.2773473268656024,-0.011402670292351834,0.006959461966604807,-0.005099177718225387,0.001924166048237457,-0.05473991618360669,0.048335123523092896,-0.011548497732426315,-0.002493120544998619,0.036325933882324815,0.061493018259935826,0.42412983763462825,0.3656938589628873,0.040696581109661324,-0.010316648764769072,-0.015760300221453128,-0.005983647690655226,6.7612847356817,-0.1661807580174927,0.00015615484288952685,0.0007020667841343421,0.04551344347262709,0.40087463556851327,-0.07047176903733506,-0.8430240021055999,-0.0183066830190293,0.0003295189504373126,0.010186085016016972,-0.00010241399416910426,-2.868909119669005,0.4681346222699605,0.0013278284998209779,0.0003640949196125537,-0.016618928273063625,0.10723236663086283,0.0708477568046579,2.255587825754862,0.013746267576835298,0.0022142409595417053,0.03668562941745899,-0.00011293089867526042,3.6164213554411795,-0.4742557573488111,-0.004399912105514988,-0.0006827825317377763,-0.05591441469554185,-0.399550645946452,-0.09476583688603356,-2.261673798035116,-0.012031376351811259,-0.004815198464706977,-0.03545019774814446,-0.002186692941396742,-3.283558138761357,-0.7242935635792779,-0.0030522065236350915,-0.00016287038437410244,-0.10723007151578583,-0.5237441130298274,-0.2629600069568412,-3.504357507216989,-0.03237662478020293,-0.0038951334379905716,-0.02999326511231273,-0.0013433414442700126,-7.12558968884955,-0.43090986394557823,0.005216978458049888,0.0012369941602970822,-0.1258503401360544,-0.40710034013605445,-0.21232408651134735,-2.1334674914966,-0.026720688322392716,0.003483981717687082,-0.0004645376669186191,0.003683968537414966,-5.814095750581213,-0.6442094910253259,-0.0032868870037974936,-0.0004000162353090908,-0.15687921755047396,-0.8524711089254979,-0.09611371519341402,-3.1332546609362644,-0.029144336639467264,-0.0036301758052618583,0.010897710266614466,-0.001139655028276367,-5.877135512983307,,,0.48730158730158735,1.2261904761904763,0.6190476190476191,0.0,0.6071428571428571,0.011904761904761904,0.7795265846607315,0.0076282555690288705,0.01991396985474316,0.8317486166359787,0.25401025977236236,0.23427641620018477,1.6112752012967102,0.4882866759725471,2.060527776639348,1.8669806811415632,0.0948747488024195,0.09867234669536504,0.0,0.19354709549778457,6.646721768857157,818.0,242.06490000000002,129.0,236.0,6689.054806831729,3214.5196929999997,64.17917500182901,246.2627,101.88888888888889,307.91089999999997,9159.284716472841,996.0,268.525,162.0,252.0,6295.533547110896,3740.0452349999982,81.77431051000005,275.65500000000003,120.61111111111111,331.57949999999977,11601.263322816636,1395.0,458.667,264.0,345.0,11644.078631301334,5108.996606999997,121.04630257564096,467.69550000000015,188.66666666666674,573.1640359999999,16786.817620559206,1648.0,575.963,315.0,407.0,14756.771946933937,5950.415626999999,150.19899432418794,588.4885,234.00000000000003,725.9118759999999,20252.956541624484,1560.0,651.1389999999997,311.0,331.0,17819.28996145007,5517.2384999999995,152.289881688621,663.0495000000001,248.33333333333337,832.791968,19823.414594096655,1458.0,623.38,294.0,275.0,16881.405239354677,5068.051284999999,148.12712859067798,635.3025,236.83333333333337,796.1651239999999,19043.076494139328,1241.0,588.87,257.0,201.0,16320.673993810678,4199.510762999998,131.962877819527,599.399,214.16666666666669,755.2540040000001,16481.556172258297,1077.0,544.2780000000001,219.0,167.0,15403.018765855328,3607.755870999999,113.42483007322502,552.5421,196.33333333333334,698.659172,13962.640368953598,845.0,467.1940000000001,165.0,70.0,13465.801557701529,2755.8126699999993,93.410383011527,473.92100000000005,170.0,601.917416,11308.836610044935,282.2857142857143,2.6822119047619033,0.45585080551687723,22.119047619047624,132.2857142857143,59.75686181950492,1356.0706289761906,10.153932943962118,2.7561071428571404,12.322751322751323,1.439230571428571,2257.4932664898233,21.510204081632622,0.2663708616780034,-0.10714946586693117,10.756235827664403,46.36734693877551,-8.208629251849974,100.20328238208651,-0.5017174928634807,0.3062163265306115,-0.22436381960191704,0.0846633061224481,-2.4085563120786944,3.67346938775506,-0.8776858276644,-0.18947716141989504,2.760770975056686,4.673469387755123,32.233867660231745,27.792733281179437,3.0929401643342604,-0.7840653061224495,-1.1977828168304376,-0.45475722448979716,513.8576399118092,-16.285714285714285,0.015303174603173632,0.06880254484516553,4.460317460317455,39.2857142857143,-6.906233365658836,-82.6163522063488,-1.7940549358648714,0.03229285714285664,0.9982363315696632,-0.010036571428572217,-281.15309372756246,53.3673469387755,0.15137244897959148,0.041506820835831126,-1.8945578231292535,12.224489795918362,8.076644275731,257.1370121360543,1.567074503759224,0.2524234693877544,4.182161753590325,-0.012874122448979688,412.2720345202945,-51.69387755102041,-0.4795904195011337,-0.07442329595941762,-6.094671201814061,-43.55102040816327,-10.329476220577657,-246.52244398582764,-1.3114200223474273,-0.5248566326530605,-3.864071554547746,-0.23834953061224484,-357.9078371249879,-75.3265306122449,-0.31742947845804953,-0.016938519974906655,-11.151927437641726,-54.46938775510205,-27.347840723511485,-364.45318075056684,-3.3671689771411044,-0.40509387755101944,-3.119299571680524,-0.13970751020408131,-741.0613276403532,-41.36734693877551,0.5008299319727892,0.11875143938851988,-12.081632653061222,-39.08163265306123,-20.383112305089345,-204.81287918367357,-2.5651860789497007,0.3344622448979599,-0.044595616024187434,0.35366097959183673,-558.1531920557965,-53.46938775510205,-0.272811621315192,-0.03320134753065453,-13.020975056689338,-70.75510204081633,-7.977438361053364,-260.06013685770995,-2.418979941075783,-0.30130459183673425,0.9045099521290008,-0.09459136734693846,-487.8022475776145,0.697928084312518,0.6034730786776238,0.4458269650184127,0.3221144169945522,0.28976574265085925,0.1823139337746091,0.17714169231629595,0.09250526197648928,0.11368100085575646,0.04930054991120636,0.07353509522360696,0.026566544381377847,0.04727067434950834,0.01460673537835978,0.03200252700205093,0.008401681367420177,8.010061450465022,5.673244684082097,3.5203393831821344,2.1731741213438838,0.3762163533250896,-0.5191719700525221,3.234320056298511,0.9889043008117949,6.007555281648741,0.994936822190482,14.544532582344283,10.93355946205309,16.004029815678432,11.68428565466374,2.0107611174691606,0.7788026568281918,3.46293755843151,2.223158195089595,3.5105461668922455,1.3773340295242422,3.676466135243976,2.4191602912188466,20.919166077680835,14.70681788063511,0.22467941671834604,0.5212080150775434,0.7092269748824307,0.8015701071813689,0.8435442582263407,0.8519390884353351,1.7043469931371242,608.6208590133427,0.0,0.0,2.0,0.0,10.0,1.0,4.0,0.0,0.0,4.117840205566241,2.435803869614242,1.3692803572458798,0.8454708334363561,0.6073755953411188,0.5597565477220714,156.4677391719591,705.1012227561366,33.929106557373444,16.788124351336585,32.825543858847226,,9.0,331.0,0.0,0.0,0.0,6.606881964512918,18.71508986212249,22.263459005160254,0.0,6.06636706846161,67.53584328227001,4.736862953800049,10.233333333333334,25.75,13.0,0.0,12.75,0.0,0.012698412698412653,0.25,0.08540489642184551,0.05694444444444435,-0.028460451977401158,0.0,0.0690420168067224,0.0,0.527777777777778,0.7555555555555553,0.4423728813559325,0.47083333333333366,0.7555555555555553,16.370058277875362,0.1601933669496063,0.4181933669496063,17.46672094935555,5.334215455219609,4.9198047402038805,33.83677922723091,10.25402019542349,0.6449579831932776,0.09771986970684038,0.0,0.2833876221498371,0.2631578947368421,0.34820095501292553,-0.47638233991915624,-0.029678464561822465,-0.011342436664741818,-0.028022490583479782,0.6517990449870743,0.8917423968480722,0.03615499094703028,0.021231961829716,0.0356696958739229,-4.9426628382881574,0.8846613912403387,0.8450145010994755,1.2607766221541952,0.6529748507681769,0.6410023561751423,1.2324818657296084,0.888529808606016,1.0836315868472948,0.8244377009262782,0.9431208282915023,0.8899335001817439,1.005294263738111,1.0023672224589815,1.518542693156543,1.675468354531128,1.2316724264914167,1.190803683073775,0.7968797415224503,0.9946853185837609,0.8046496982907065,1.4211916939073792,1.105411459628031,1.582858334507119,0.8306710505679044,0.9944693464430308,1.0020603743255356,0.9888443494997914,1.163232354298016,0.948781240357914,1.0595408189093747,0.9960929959718513,1.0876222632825094,0.9889084907913225,0.958167208489235,1.0630531495159163,1.0459259280039037,0.9077682186234819,0.9762723420907566,0.9584781619252775,1.0894000339924081,0.9896176726914477,0.9079241006483024,0.9074301274411408,0.9367780486176136,0.9610322666886727,0.899084201486972,1.0503595403083992,0.9196096678713434,1.0366879619656058,1.0005807967692528,1.0269481225690873,1.0713502730567541,1.1032555927635879,1.0315886709357271,1.036882429873716,1.0479258530780406,1.0119674893323405,1.1243219714725774,1.024813052550252,1.0504805042924825,1.0683733649953286,0.9053657125286882,0.8617315708477863,1.105034362838453,1.0847732181425485,1.1515870509538733,1.0705105942960293,1.1154778239040652,0.9371056086234065,1.0041966674373286,0.8649215245368209,1.1146800801426626,1.040907557354926,0.8776012424003287,0.8239855043278617,1.1585037674919265,1.0783162347012236,1.1384893803444918,1.0428455036213773,1.060640074908753,0.9085937668727023,0.897260090167454,0.7914144237519505,1.0687787233729815,1.0726976732842302,0.993693444134781,0.9777007631837763,1.2282931510757775,1.2023992297483668,1.0600982612190648,1.0739155609144866,1.0590737503976562,1.0035063736565002,0.8585190913934828,0.8878129017306892,1.0641473912982558,3.0,0.0,2.222222222222223,1.375,0.9894444444444443,0.42722222222222217,0.32666666666666655,0.3107284580498866,0.16983182161753588,0.0625,3618.223438879331,4163.877778388526,1956.9659228569988,1746.3779210328048,11.125582549380427,0.46925337238609194,5.904865418323808,0.8841382082741194,1.0,0.2631578947368421,1.27447721721252,2.956513553164519,4.023037065532881,4.546846589342405,4.784941827437642,4.832560875056689,0.13043478260869565,0.0,0.07168458781362011,0.039285714285714285,0.030920138888888886,0.01473180076628352,0.014202898550724633,0.016354129371046664,0.01213084440125256,0.015625,0.3453698966862263,15.879017013232515,7.513007284079085,3.8548483045806066,126.22103684033402,1.0,3.9748212966617804,87.32117390419893,,69.95754079521012,69.31425591811936,69.36737816430998,69.96483861885116,81.95989574325121,69.71081319932217,69.99369010551094,77.83995031240042,0.07273647405226343,0.09479605052333283,-0.22436954012679863,0.46418436246208056,0.33457687021401916,-0.1311231798629141,0.0705336327508017,-0.047165187609748284,0.10605444108184758,-0.017379679144385197,0.05615151291968234,-0.0010184200829472753,0.007191561900703093,-0.18083467003512588,-0.22970467886135,0.06897626196816034,0.019523701261793876,0.2980988733052911,0.011326211001293603,0.16833441938595417,-0.1572142248690368,-0.05371630019660581,-0.17461635959974614,0.125791719122238,-0.024725274725274728,0.002445184658869195,0.06468520967119507,0.08642165154544044,0.12727553224313484,-0.04953095275498512,-0.02611000292452825,-0.07572245070383626,0.005021501415224372,0.03471753664969632,-0.0029886717531526926,-0.05337521259297248,0.06965160877903259,0.020792092113777864,0.03354603400642909,-0.03155628576284632,0.03404569739683982,0.04979521506305707,0.06985970100482687,0.05685907533695019,0.03374256350728962,0.12503672233395854,-0.0032955787894728846,0.06728245846097378,-0.07056234446384133,-0.06889698315914143,-0.06290844720669224,-0.10617118140251432,-0.12685517268710245,-0.06660599348800249,-0.070048194753094,-0.04976572226395806,-0.07337825600932228,-0.12082596381484359,-0.06381264083871029,-0.06108963595821147,-0.10776432575521645,-0.04779364142150184,-0.015006129332065073,-0.20361016808810134,-0.16628592789499916,-0.18482095538327636,-0.10853639342829371,-0.13392034872331102,-0.059357490807128536,-0.10222693793969019,-0.03920173860908059,-0.13256950590910221,-0.06411310728744939,0.08169119481167379,0.11397096177897165,-0.23896663078579108,-0.12925215982721383,-0.14923159218789228,-0.06607740978101403,-0.11052553879704653,0.053091996993689494,-0.0015832975525976807,0.10750652580833374,-0.10816954590704281,-0.09584898297644019,-0.05146843689508909,-0.036855659087696384,-0.29788475754471044,-0.2706549741080954,-0.06755334726774032,-0.09704265614739867,-0.12055054387428224,-0.05531983189265332,0.037142990165901946,-0.03325770876315976,-0.1093423821941715,17.91796510902725,21.579070343776905,5.841906810678656,10.574522700175484,25.3572285409025,31.34561822199611,33.969427745805625,34.733380126758014,34.781380126758016,43.27108330942631,39.20659430397283,1.9923697248508097,2.072119280602666,0.0,4.064489005453476,3418.945998907059,2343.93196264114,1258.6267136285992,100.0,31.0,41.0,55.0,72.0,81.0,92.0,100.0,102.0,279.1623142920006,23.0,4.6913478822291435,5.53338948872752,6.405228458030842,7.274479558773871,8.158516244806831,9.039907859574642,9.929496371717178,10.816914186795634,11.709223888694977,0.5952380952380952,0.954952380952381,1.1157301336384928,0.5538236775019724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.679136769318506,0.9442577030812325,0.9837165747580898,0.6229036811956616,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,9.636772684650527,12.356393797796823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.54058958606515,43.28254017020525,12.10820789760957,0.0,179.45506907842739,-245.51691914446826,-15.29562406825049,-5.84564093201115,-14.442171714380487,335.9228082503865,459.5843036116683,18.63348248912295,10.942483419325434,18.383372144466737,0.4444444444444444,0.9617949960971803,0.35686763758892254,36.53153664531262,0.0929325668010263,72.95521988168257,0.03820500390281947,5.0,0.13043478260869565,0.2363505552971988,0.5482825511486623,0.7460682949669042,0.8432082596130498,0.8873627889976612,0.8961936948745836,3.9624000000000033,,0.3928571428571429,0.4713820381572824,0.39838377133594904,0.3917657575808813,-1.60047608252097,0.419905140758874,0.3887577933310232,-0.7183191063014545,87.46600000000005,4.736862953800049,0.0,4.899909730850478,0.0,13.027703587438928,20.640100371266954,71.29731112961775,0.0,5.749511833283905,3.8501476017100584,0.0,5.14166355650266,0.0,6.634633357861686,2.70805020110221,8.226573474977114,5.37989735354046,9.873389104712095,25.0,16.85471986016629,0.0,0.0,0.0,0.0,0.0,4.719461451247167,0.0,40.108000000000004,0.0,0.0,0.0,0.0,0.0,2.3396296296296297,0.0,1.292175925925926,46.8606656128167,4.736862953800049,0.0,5.749511833283905,25.540010102117435,6.606881964512918,0.0,23.111176098016994,54.60695665452676,0.0,5.573104530069267,0.0,23.26059445508284,28.52374431137725,27.545010834223554,174.64234780839786,,139.87766662443389,138.5836183087952,138.69681501706415,139.89236621317082,164.68192295436953,139.3816354328578,139.95035565927606,156.02195734208732,27.545010834223554,174.64234780839786,,139.52222444756308,138.15712979808143,138.3363725572841,139.53791148012147,165.52026756902342,139.00172125788546,139.59862241769088,156.39821973110236,4.822977605706515,120.71517644943678,,97.99901858288605,97.1680322583975,96.77056246793435,98.00704946587234,113.14324412955551,97.65854178982639,98.04797316512094,107.94401241540331,1.311667182582074,8.316302276590374,,6.660841267830185,6.599219919466438,6.604610238907817,6.6615412482462295,7.841996331160454,6.63722073489799,6.664302650441717,7.429617016289872,2.4476334782893154,87.32117390419893,,69.95754079521012,69.31425591811936,69.36737816430998,69.96483861885116,81.95989574325121,69.71081319932217,69.99369010551094,77.83995031240042,39.65882352941176,0.0,4.215482489292013,0.0,0.0,0.0,0.0,41.31609613983977,2.7201389676240866,0.0,5.981337159863946,0.0,0.0,2.2103878495842784,0.0,0.0,0.0,26.16195461021779,495.6878635140397,53.528043122925844,124.17356923290978,168.967556752381,190.967556752381,200.96755675238097,202.96755675238094,718.0,117.55850393935064,19.690013814774154,62.81435465040629,12.47,12.47,0.8,8.458580411675193,5.523561956057013,3.941955037638573,4.506173128792474,,4.503474942411761,4.505206216665631,4.508058815661454,4.503464501157994,4.475393687595351,4.504280594767435,4.503363202729729,4.485165855245127,0.18771214464945585,0.21457967279964163,,0.21445118773389338,0.21453362936503004,0.2146694674124502,0.21445069053133306,0.21311398512358815,0.2144895521317826,0.21444586679665378,0.21357932644024413,2.1136141474178336,2.24738560783721,,2.246786652930192,2.247171009806545,2.247803987774204,2.2467843344392477,2.2405316674682756,2.246965532642124,2.2467618407418883,2.2427128195441592,231.73999999999967,212.80106608333392,114.35200634339836,,114.21387372523702,114.08539124530691,113.91449614850647,114.2147765561755,116.337664547981,114.15629138710123,114.22191054743973,115.58166583964977,10.133384099206378,5.445333635399922,,5.438755891677953,5.432637678347948,5.424499816595547,5.438798883627404,5.539888787999096,5.436013875576249,5.43913859749713,5.503888849507132,6.102295111974421,5.48121881067956,,5.480010120782917,5.478884558740384,5.4773854779227795,5.480018025491344,5.498434208642106,5.479505831272702,5.480080484734271,5.491914688386315,5.981337159863946,2.2103878495842784,0.0,5.034967876039305,0.976669501133787,16.85471986016629,3.3723696145124715,1.6873989827412448,4.215482489292013,279.6425762728231,92.48717257753559,-126.5339886369861,-7.883026264714456,-3.012714015166336,-7.443175802175653,173.12718386241838,236.8595828490228,9.603284652487812,5.639513877357684,9.474383313960914,882.0,35.0,1.1498299142610593,0.6937217546777923,0.0,0.0,0.24719387459906544,0.08813979465210044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.24615119001767477,0.06778096105748818,14.656489770562878,12.672934652230099,10.254020195423491,7.4086315908747,8.982738022176637,5.651731947012882,7.2628093849681346,3.792715741036061,6.252455047066605,2.7115302451163497,5.294526856099702,1.912791195459205,3.828924622310175,1.1831455656471421,2.9442324841886856,0.7729546858026562,2.5609771795529035,1.182522217678615,4.350864457860488,1.5981032428922317,7.090271988080093,2.14668066719501,71.44365011813501,46.30818470835973,30.608205687458554,24.25762982563049,22.509638917375963,22.348099992481735,108.0,126.0,47.63465299999998,24.513346999999996,0.35714285714285715,109.02,5.916666666666666,4.694444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,42.0,0.0,1.0,44.0,12.0,1.0,7.0,37.0,13.0,23.0,31.0,0.0,0.0,0.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,2.0,0.0,1.0,21.0,2.0,0.0,1.0,1.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,2.0,3.4339872044851463,7.198592524885012,3.9889840465642745,4.56954300834494,5.146039931102459,5.692468714755927,5.8964668184857025,6.295150681137379,6.640937361709665,6.951233741963601 +54459,c1ccc2c(c1)OCC(C1=NCCN1)O2,0,23.48148148148148,6.302955555555555,3.4074074074074074,8.074074074074074,163.22712735207364,92.71948885185185,1.4710986243773336,6.361403703703704,3.133744855967078,7.802738814814815,220.41113899206925,26.103448275862068,6.524275862068966,4.103448275862069,7.620689655172414,147.97051650476553,99.56146127586202,1.7513075762068955,6.655741379310346,3.025862068965518,7.919168137931036,263.98898632937255,21.80392156862745,6.5443313725490215,3.607843137254902,6.137254901960785,156.68805392634505,80.92224680392155,1.4613158716185688,6.630139215686277,2.9978213507625275,8.005275686274512,216.814981391457,17.322580645161292,6.433193548387095,3.0806451612903225,4.838709677419355,164.4534228610353,62.335177806451625,1.201992481828048,6.4778032258064515,2.9341397849462374,7.971861032258063,171.0789066160657,17.612244897959183,6.450122448979593,3.061224489795918,4.408163265306122,161.25101199229172,62.85035183673471,1.2672468478417347,6.508351020408163,2.844104308390022,7.9722739591836715,179.45585992591384,13.591836734693878,6.081632653061224,2.6530612244897958,2.8979591836734695,161.83680631966408,46.69502767346937,1.1677647173569385,6.145775510204082,2.357142857142857,7.678147265306124,155.31157398517928,11.571428571428571,5.845666666666666,2.4285714285714284,2.238095238095238,166.76344527558064,39.49133411904762,1.085694600997286,5.9013928571428576,2.198412698412698,7.471798952380952,138.81812715304164,12.518518518518519,5.860222222222221,2.4814814814814814,1.8888888888888888,161.30823432629245,41.9061208148148,1.2599265499776298,5.94651851851852,2.2716049382716053,7.415628740740743,159.2542244223847,7.391304347826087,5.502086956521739,1.9130434782608696,0.5217391304347826,162.99869588720847,20.880647043478255,1.0516738286562606,5.580478260869566,1.8043478260869565,7.151249043478262,117.34976663922741,7.481481481481482,0.1378504801097393,0.032536300381773346,0.50480109739369,4.074074074074074,1.5145373405852114,35.504832554183814,0.22204270412183807,0.1280592592592592,0.5579180003048315,0.08545481481481476,48.611221540469174,0.5862068965517241,-0.003696967976916928,-0.01278618481108296,0.13249136748498172,1.0,-0.31979608815763527,2.747805586301495,-0.02487711790575117,0.0002593869731799986,-0.034042592329806755,-0.005795310344827555,-0.44711216794223274,-0.39215686274509803,-0.016965875897684207,-0.008366461603961524,-0.0037117727749536077,-0.09803921568627451,-0.10061543743177968,-1.852510116275319,-0.02581740208804795,-0.01393137254901967,-0.0803500183795512,-0.012794901960784262,-3.4400948954989703,-0.0967741935483871,0.008474967918934444,0.006311513866852699,-0.06214876764458605,-0.3548387096774194,0.20624700563700724,-0.49789970531882,0.00874183882311107,0.006335842293906786,0.04799929692070939,0.00769348387096778,0.46784638173889825,-1.3265306122448979,-0.010385778673609382,0.0022973987481462814,-0.12082528484644883,-0.6938775510204082,-0.008732508857296513,-6.331594435514124,-0.025240536059341526,-0.012195011337868501,-0.03358357517675566,-0.004894775510204038,-7.781658246081585,-1.0204081632653061,-0.02518003415357911,-0.004606412742881267,-0.007446600039192633,-0.40816326530612246,-0.26186882572205594,-4.73659356249825,-0.010387271485703599,-0.023708616780045325,-0.08928610310150581,-0.015892244897959186,-4.2734949333971715,0.6190476190476191,-0.009133725259651155,0.001255358316717153,-0.023319615912208505,-0.2857142857142857,0.014134539481351339,3.108055832059575,0.039993774465447544,-0.006790476190476154,-0.00236244474927602,-0.006973904761904797,7.8664056972274174,-1.8518518518518519,-0.014284224965706404,0.00026064312007571946,-0.16872427983539093,-1.1481481481481481,-0.1475471805438298,-8.875462057613168,-0.044132133559330586,-0.0158913580246913,-0.07636031092821217,-0.004306370370370415,-11.822833458529995,-1.4782608695652173,0.003743400727619796,-0.0010160970349868455,0.0008349734597721863,-0.17391304347826086,-0.19921885232259354,-7.219470399594435,-0.060512201370169875,0.00024734299516919104,-0.050850546377474236,0.00574991304347817,-13.788172848023203,,,0.4644444444444445,1.2,0.5,0.0,0.7,-0.2,0.6326848774911965,-0.0012292952002984118,0.01597070479970159,0.6765204203173668,0.25173128560455293,0.2437789137539518,1.3092052978085633,0.49551019935850477,2.088866580242299,1.543730379413688,0.2689038980556653,0.276232302772946,0.0,0.5451362008286114,7.558884356444445,634.0,170.1798,92.0,218.0,4407.132438505988,2503.426199,39.71966285818801,171.7579,84.61111111111111,210.67394800000002,5951.10075278587,757.0,189.204,119.0,221.0,4291.1449786382,2887.2823769999986,50.78791970999997,193.01650000000004,87.75000000000001,229.65587600000006,7655.680603551804,1112.0,333.7609000000001,184.0,313.0,7991.0907502435975,4127.034586999999,74.52710945254701,338.1371000000001,152.8888888888889,408.26906000000014,11057.564050964307,1074.0,398.8579999999999,191.0,300.0,10196.112217384189,3864.781024000001,74.52353387333898,401.6238,181.9166666666667,494.25538399999994,10606.892210196072,863.0,316.0560000000001,150.0,216.0,7901.299587622295,3079.6672400000007,62.095095544245,318.9092,139.3611111111111,390.6414239999999,8793.337136369779,666.0,297.99999999999994,130.0,142.0,7930.00350966354,2288.056355999999,57.22047115048999,301.14300000000003,115.5,376.22921600000006,7610.267125273785,486.0,245.51799999999997,102.0,94.0,7004.064701574386,1658.636033,45.599173241886014,247.85850000000002,92.33333333333331,313.81555599999996,5830.3613404277485,338.0,158.22599999999997,67.0,51.0,4355.322326809896,1131.4652619999995,34.018016849396005,160.55600000000004,61.33333333333334,200.22197600000007,4299.864059404387,170.0,126.54800000000002,44.0,12.0,3748.970005405795,480.2548819999999,24.188498059093995,128.35100000000003,41.5,164.47872800000002,2699.0446327022305,202.0,3.721962962962961,0.8784801103078804,13.62962962962963,110.0,40.89250819580071,958.630478962963,5.995153011289628,3.4575999999999985,15.063786008230451,2.3072799999999987,1312.5029815926678,17.0,-0.10721207133059091,-0.37079935952140586,3.84224965706447,29.0,-9.274086556571422,79.68636200274335,-0.7214364192667839,0.00752222222221996,-0.9872351775643959,-0.1680639999999991,-12.96625287032475,-20.0,-0.8652596707818946,-0.42668954180203766,-0.189300411522634,-5.0,-5.131387309020764,-94.47801593004127,-1.3166875064904455,-0.7105000000000031,-4.097850937357111,-0.6525399999999973,-175.4448396704475,-6.0,0.5254480109739356,0.3913138597448674,-3.8532235939643353,-22.0,12.787314349494448,-30.86978172976684,0.5419940070328864,0.3928222222222207,2.975956409083982,0.47699600000000236,29.006475667811692,-65.0,-0.5089031550068597,0.11257253865916779,-5.920438957475993,-34.0,-0.42789293400752915,-310.24812734019207,-1.2367862669077347,-0.5975555555555565,-1.6455951836610276,-0.23984399999999786,-381.30125405799765,-50.0,-1.2338216735253764,-0.22571422440118205,-0.364883401920439,-20.0,-12.831572460380741,-232.09308456241425,-0.5089763027994764,-1.161722222222221,-4.375019051973784,-0.7787200000000001,-209.4012517364614,26.0,-0.3836164609053485,0.05272504930212043,-0.9794238683127572,-12.0,0.5936506582167562,130.53834494650215,1.6797385275487968,-0.28519999999999845,-0.09922267946959284,-0.29290400000000144,330.38903928355154,-50.0,-0.3856740740740729,0.007037364242044426,-4.555555555555555,-31.0,-3.983773874683404,-239.63747555555554,-1.1915676061019258,-0.42906666666666504,-2.0617283950617287,-0.11627200000000122,-319.21650338030986,-34.0,0.0860982167352553,-0.02337023180469745,0.019204389574760283,-4.0,-4.582033603419651,-166.04781919067202,-1.3917806315139072,0.005688888888891394,-1.1695625666819074,0.1322479999999979,-317.12797550453365,0.6725050446540352,0.5514521243956971,0.4372148817869159,0.3000169020036814,0.27922979356003774,0.15469435419019753,0.18215291331059866,0.08108538633725322,0.11916542965445798,0.044653801871895646,0.07604257060865154,0.02331857047187176,0.05001083900497306,0.012167844452554644,0.03318302445768682,0.006575581694967172,8.01190889260136,5.699521083943079,3.524332064169292,2.1983009543003216,0.429002686217738,-0.5174231126490886,3.1797486265083506,1.751812751748182,6.009651238397548,1.8960868733846834,14.553313417968878,10.960027317592788,16.005292901483983,11.711221466084686,1.9769680100721663,0.774942555539176,3.4676504237709316,2.248031804452683,3.5122774567608825,1.2600122219533898,3.681035090146614,2.4440790755697517,20.88336176620052,14.70581569869157,0.3179816212258823,0.6514784384591648,0.7957639047309902,0.8398172076577815,0.854501641966712,0.8838705105845729,1.588013403165645,403.32932438745013,0.0,1.0,3.0,0.0,6.0,1.0,0.0,0.0,0.0,3.1508628819875604,1.4685734983112297,0.7407407407407405,0.5185185185185182,0.44444444444444375,0.29629629629629495,151.6745692249825,678.0711129672509,45.74129538206638,25.113744924712996,50.6464580386606,,8.0,210.0,0.0,0.0,6.103966387748303,6.606881964512918,30.42415626415023,0.0,0.0,24.26546827384644,10.309193336642,9.473725907600098,6.966666666666668,18.0,7.5,0.0,10.5,0.0,0.035555555555555486,-3.0,0.1623005118940078,0.05611672278338942,-0.10618378911061838,0.03472222222222221,0.17114285714285693,0.0,0.6086419753086423,0.8555555555555555,0.4463414634146345,0.5525252525252529,0.8208333333333333,9.490273162367947,-0.018439428004476177,0.23956057199552383,10.147806304760502,3.775969284068294,3.656683706309277,19.63807946712845,7.432652990377571,0.542857142857143,0.0,0.0,0.2870813397129186,0.36363636363636365,0.30483430728683036,-0.5319364965756515,-0.06767039255981587,-0.01970135172502413,-0.06649206207195643,0.6951656927131694,1.2130655713022656,0.050043890651324974,0.0449283544926765,0.06384555638432976,-2.5139404359796433,0.7345510413110277,0.8486854634239409,1.407246472396001,0.7564655172413793,0.55423197492163,1.3825485798617962,0.7389595624757032,1.1643383402607046,0.8014797986245196,0.8737429878149304,0.9178052317761236,0.9610681574243022,0.9754416618132401,1.2339240485582552,1.4757583975220334,1.0660166240409208,1.031194295900178,1.1450333972868034,0.9722819207672692,1.083984745231585,1.1902674188601865,1.2239890082518463,1.3073988827180263,0.9797689498370296,1.0338549984030663,1.2099611656469094,1.1058305283174068,1.2307152875175316,1.2447214076246336,0.825071287688694,1.028481951183438,0.8786176748147357,1.195590639041065,1.1429295310441463,1.2335187865393245,0.8980336941658246,1.1610426348757326,1.2978317303855262,1.225739026544069,1.2263198757763976,1.2228200371057514,0.9908621144999755,1.1566495716011607,1.0534638199996933,1.2895844941400902,1.2372556999852258,1.3409618817881859,1.0684005732227129,1.1229541321479088,1.2067628225501343,1.119355550896756,0.8954081632653061,1.0732838589981446,1.0596670580930416,1.118693621066208,1.0206125882209003,1.2091163860268774,1.1633823861466457,1.2442660285916667,1.062195914977091,0.9147807637906648,0.8934366430639804,0.7163606924657168,1.0446428571428572,1.0326839826839826,0.8757069744091321,0.912676330040373,0.7657395749160337,0.9054484530971111,0.8607137978808516,0.8514974135696373,0.8396902725047873,1.1226622662266226,0.6270705422268217,0.5090197859244411,1.1304347826086956,1.0198653198653198,1.1304196692474,1.133962909437181,1.163235105259518,0.6816577973160571,0.7502390383827346,0.4506078024211932,1.2392440428081397,1.1108480413258717,0.4075619370416887,0.29221559901128874,0.6220463137996219,0.7193675889328064,1.0065307597877438,1.1272185591572648,1.2688879466177578,0.49101789630404574,0.6284868424959765,0.25308377415605493,1.346866924116525,2.0,0.0,1.5555555555555562,0.3402777777777778,0.6455555555555555,0.2638888888888889,0.08081632653061226,0.04343820861678002,0.009566326530612249,0.0,2706.34722478574,3010.356841848843,1505.2531956836308,1382.813488627321,9.108489309437632,0.42730696273733526,5.216368407496349,0.7461361234279362,1.0,0.36363636363636365,1.6040246201759079,3.2863140038522385,4.014146761422728,4.23636898364495,4.3104430577190245,4.458591205867173,0.11764705882352941,0.0,0.06763285024154593,0.01701388888888889,0.04034722222222222,0.021990740740740745,0.008979591836734696,0.007239701436130005,0.004783163265306124,0.0,0.285634217455098,10.173010380622838,4.472589792060491,2.097814776274714,87.91672651290347,1.0,3.6690396349532755,49.23995988239061,,37.711430876716534,36.81259170155751,38.088666871766875,37.725234414850505,62.95388816761269,37.42143230594627,37.75640200628624,51.25382409812006,0.07835438716285421,-0.026818680457071056,-0.39298213567777696,0.26246251874062954,0.24545454545454545,-0.2111510093465687,0.07739243896188151,-0.11203753802286938,0.0020255229858456634,-0.06101719663320916,-0.06781724771607438,-0.009197715131885933,-0.052417006406523005,-0.12307447811700112,-0.25714237653917066,-0.007352941176470598,-0.02406417112299465,-0.06643311771560698,-0.05217628088931863,-0.11627223776684671,-0.10878848300078992,-0.144017612508738,-0.14972710418379012,-0.07076750565988282,-0.012935164484190353,0.061479422575733765,0.1939837594562034,-0.12311535764375879,-0.0870967741935484,0.13617822427363474,-0.014023434825638927,0.0393700790921475,0.04947586242928138,0.08603288815647434,0.0900298466229197,0.009624246561041732,-0.17730854718124872,-0.07534089591375762,0.07061032511960921,-0.23935226264418805,-0.17031539888682745,-0.005765793040085961,-0.17833049700632997,-0.11367424189489096,-0.09522943837414671,-0.060194464344951217,-0.05727910733656475,-0.16007946312567564,-0.1363911901394221,-0.18266192568596007,-0.14157764370351564,-0.01475155279503106,-0.10018552875695734,-0.172903512316752,-0.13340701030682933,-0.04678051245495529,-0.1851378566234452,-0.1600344549785493,-0.18597249239142985,-0.0879116960646516,0.08274398868458274,-0.06625820419616985,0.03858331469734025,-0.04619565217391305,-0.07012987012987013,0.009332579067274634,0.087538951981153,0.1801174896676739,-0.053026046142658566,-0.004234394208441461,-0.08160926656991332,0.16182283530313224,-0.24752475247524752,-0.10362114774163349,0.008010840723050684,-0.3342391304347826,-0.2818181818181818,-0.09742062911886881,-0.24997898649622843,-0.19875516168779245,-0.12409378374209429,-0.13686654828575334,-0.0503935369786074,-0.2432120215018132,-0.19758932414980626,0.02715551461728511,-0.031229642677999655,0.0016540642722117495,-0.04268774703557312,-0.1315377620505653,-0.20333768335836605,-0.2725250604810053,0.001931472949319806,-0.09114340521311529,0.06728600437480958,-0.28364176852754985,6.012540351086714,9.687536329638677,2.94168275343288,15.209135125357095,29.300193457381646,32.77436739553122,33.813404432568255,34.70310813627196,35.667478506642325,31.332998703634487,23.15595569120532,4.033558470834979,4.143484541594191,0.0,8.17704301242917,1360.009707305152,1188.841484020367,409.3557388526467,36.0,23.0,31.0,40.0,47.0,48.0,52.0,54.0,53.0,204.089877624,17.0,4.394449154672439,5.241747015059643,6.102558594613569,6.9650803456014065,7.831617276352611,8.698681067461614,9.56724528946897,10.435967030196949,11.305396863288294,0.6666666666666669,0.9931851851851851,1.1293328346952138,0.6297591405409239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6692285650920383,0.9790849673202616,1.0116533139111434,0.6369071171721283,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,14.790514511606428,12.442501750270187,17.602990054316113,0.0,0.0,4.992404732635669,0.0,0.0,0.0,12.13273413692322,12.13273413692322,6.544756405912575,6.544756405912575,118.45220233116825,-206.69933801258207,-26.295291703445322,-7.6555310375030405,-25.83741725157276,270.12677155615074,471.37177495466887,19.446003678621057,17.458213887209958,24.809040787087834,0.5,0.8438078408117112,0.2781236312677976,68.42781605494517,0.10835317075628018,9.156933753579683,0.1561921591882887,4.0,0.058823529411764705,0.3373422861100454,0.6911444282029742,0.8442148756613685,0.8909504129629581,0.9065289253968213,0.9376859502645477,0.8280999999999994,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,56.65770000000002,9.473725907600098,0.0,5.316788604006331,4.992404732635669,6.103966387748303,19.696394776338067,24.26546827384644,0.0,11.49902366656781,3.5553480614894135,0.0,4.844187086458591,2.3978952727983707,6.343880434126331,4.442651256490317,7.939871576361883,6.293419278846481,9.585002570929301,18.000000000000004,7.70313531431091,0.0,0.0,0.0,0.0,0.0,1.6087934618291766,0.0,26.815999999999995,0.0,0.0,0.0,0.0,0.0,0.0,4.332830215419501,0.9069472789115649,30.491986536770774,14.790514511606428,0.0,11.49902366656781,31.635980949843642,0.0,0.0,0.0,29.25787300648211,0.0,0.0,0.0,17.003496794604946,18.069171257485035,20.559285492669687,98.47991976478123,,75.31809984867117,73.49948152627307,76.07109807117749,75.34599796101277,127.2338745741124,74.73088990769017,75.4091352676842,103.08230348128129,20.559285492669687,98.47991976478123,,74.64226075779325,72.73708391121926,75.44486455012776,74.6710337880821,129.10872850026738,74.02024461825688,74.73831842545383,103.944286408843,4.754235150105952,74.62335654561276,,57.375114862354096,55.91357906918251,58.224781968456995,57.39821677529432,100.533824052895,56.91287986076695,57.447350250308475,80.0603325087582,1.370619032844646,6.565327984318748,,5.0212066565780775,4.899965435084871,5.0714065380785,5.023066530734185,8.482258304940826,4.9820593271793445,5.02727568451228,6.872153565418753,2.3874497629744806,49.23995988239061,,37.711430876716534,36.81259170155751,38.088666871766875,37.725234414850505,62.95388816761269,37.42143230594627,37.75640200628624,51.25382409812006,26.435294117647064,0.0,0.0,0.0,0.0,0.0,0.0,27.314639475600874,2.2604434366339126,3.2021095521541953,11.400185185185185,0.0,-0.08111111111111136,0.0,0.0,0.0,0.0,17.196492163647466,327.885984940689,43.308664744749514,88.73047810401044,108.38196255841365,114.38196255841365,116.38196255841366,120.38196255841368,416.0,102.54274263671549,60.69298894663002,60.40225553750069,42.849999999999994,42.849999999999994,1.0,7.293570248167179,5.087462841250339,3.6688776117397697,3.8253278459499684,,3.8257748990388993,3.825896182741921,3.830381693734169,3.82578740347836,3.837199105472086,3.8260343988225394,3.82574657925213,3.829926199312119,0.2445918407826513,0.2550218563966646,,0.2550516599359266,0.25505974551612803,0.25535877958227793,0.255052493565224,0.25581327369813905,0.25506895992150264,0.255049771950142,0.25532841328747463,1.7053508955359422,1.7471092830731239,,1.747226142852515,1.7472578440852877,1.7484295652735222,1.74722941131952,1.7502078089498319,1.7472939698914904,1.7472187404589257,1.74831064200596,147.76999999999978,73.78860569478829,69.46309516579775,,69.40876927071818,69.42128254754894,69.13423193863638,69.40775752105962,68.44092614150259,69.40009880471011,69.40942776873807,68.95336336667124,4.919240379652552,4.6308730110531835,,4.6272512847145455,4.628085503169929,4.608948795909091,4.627183834737308,4.562728409433506,4.626673253647341,4.627295184582538,4.596890891111416,4.70666943341499,4.646260714837264,,4.645478326006074,4.645658593559111,4.641515113299073,4.64546374921638,4.631436089207497,4.6453533993189025,4.645487813206368,4.638895490949966,11.400185185185185,4.332830215419501,3.2021095521541953,0.0,2.5157407407407417,7.70313531431091,-0.08111111111111136,2.2604434366339126,0.0,179.87105887440035,46.028035236538464,-80.31901666811727,-10.217797468192517,-2.9747783951154547,-10.039877083514659,104.9655837107833,183.1651606313295,7.556308155647603,6.78389483819739,9.640271612175239,359.0,20.0,0.6666666666666666,0.26573418596788156,0.0,0.0,0.16666666666666666,0.03252278870138714,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.05590169943749474,0.2347080484106438,0.07706298443216722,0.3712110153263728,0.08682541847903268,10.087575669810528,8.271781865935457,7.432652990377571,5.1002873340625845,6.422285251880868,3.5579701463745432,5.646740312628558,2.51364697645485,4.766617186178319,1.786152074875826,3.574000818606622,1.0959728121779728,2.400520272238707,0.5840565337226229,1.7255172717997145,0.3419302481382929,1.8423659124984857,0.5777874205004249,2.927607692038838,0.796816115312805,4.2089087720216565,0.9240801411477416,49.41716376953709,30.67481979207431,24.233028716684515,22.48866760397084,21.26427315856485,19.835812972257866,80.0,94.0,30.17551599999998,17.220483999999995,0.5555555555555556,79.04,3.1944444444444446,3.305555555555555,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,6.0,6.0,27.0,0.0,2.0,29.0,6.0,1.0,4.0,25.0,7.0,17.0,22.0,0.0,0.0,0.0,11.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,4.0,1.0,2.0,15.0,4.0,0.0,2.0,2.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,3.091042453358316,5.536718920251228,3.597312260588446,4.09016919081162,4.531254503037923,4.918611375283081,4.958464421767347,5.215445138721961,5.472270673671475,5.698979291150181 +2581,CC(C(=O)O)c1ccc2c(c1)[nH]c1ccc(Cl)cc12,0,32.83870967741935,6.250445161290323,3.7419354838709675,8.180804460374352,157.13642670557704,133.5802946451614,1.7554084792963875,6.403609677419355,4.9768733621448344,7.8293548709677445,255.02661757982565,28.272727272727273,6.344818181818182,4.424242424242424,8.124579124579125,143.11464530455905,109.2768771515151,2.0308897995757573,6.530363636363638,3.3390073575258765,7.7795805454545475,297.0330930756249,26.418181818181818,6.2203636363636345,4.2,6.975757575757575,145.42931541371175,101.74428889090905,1.8913664222644904,6.397938181818183,3.485746352413019,7.692801745454548,269.9995479440326,21.819444444444443,6.164722222222224,3.4444444444444446,4.811728395061729,151.26921241867467,80.93065090277781,1.6534413271145136,6.328312499999999,3.1159407864654773,7.717266888888888,228.69281044412315,18.355263157894736,6.128197368421053,2.973684210526316,3.831871345029239,155.34283701542415,66.14187082894736,1.4553604003939866,6.257157894736842,3.1556746805284828,7.708949368421051,195.67084191490667,17.83823529411765,5.980677941176471,2.6029411764705883,3.302287581699346,160.17393474987625,65.6463659264706,1.309712280611529,6.099851470588235,2.882655531348342,7.614746088235296,173.06281441443159,17.923076923076923,6.062384615384614,2.6538461538461537,3.6089743589743595,161.4446259432927,64.80328232692305,1.3278775806795962,6.192917307692307,2.9950142450142456,7.7171203076923085,173.02276375661572,17.783783783783782,6.082729729729729,2.6216216216216215,3.840840840840841,158.89153851454387,63.63466356756756,1.3282026061065675,6.2245675675675685,3.0898120342564788,7.752234108108109,176.73594138182114,19.0,6.033392857142855,2.4642857142857144,3.6904761904761907,153.68139163926776,69.89903449999998,1.379827723907,6.166642857142856,3.53233392122281,7.624224500000002,186.15591951576496,11.856399583766908,0.11283850156087406,0.02240554933346074,0.7075962539021852,3.6784984776660106,1.4313974602770145,55.61936992507804,0.25790236671963784,0.1164578563995837,1.7315665313956699,0.08462496357960451,50.75379642274028,-0.1604074039037625,-0.01277750449342545,-0.013997182483104338,0.22691009995900727,0.8744745018302662,0.1602477683122622,-0.6124454363194765,0.02863074278959785,-0.012113574874657158,-0.19463132836904737,-0.008264459180777589,4.312819680786926,0.8444801816289844,0.023124548292498312,0.0032403842339143478,-0.0501182480370826,0.23004212549824796,-0.08981614156697328,3.926082708939564,0.009576524815975736,0.020798683189859023,0.375956037091985,0.01581877073124585,1.590959380992393,-1.6050554977454046,-0.013886171811770147,-0.0003381260057971226,-0.10186148687709562,-0.7386228194510459,-0.13013714110759436,-7.532412416565494,-0.025242354749887373,-0.01600893166840098,-0.08692790704924173,-0.0103514564111458,-5.685023236205559,-1.7074182594884715,-0.023825853003998018,-0.0007289128015890101,-0.019990141847855847,-0.8326465419725363,-0.1711611762329378,-8.0525132098828,-0.027293425794503327,-0.02478964757106082,-0.22110169299392965,-0.014132466550742096,-9.058318700629897,1.771209524392484,-0.0006679607639101165,-0.0016789268332819372,0.0016067821509457097,-0.0379814584329899,-0.0016183911608102656,8.371720162682859,0.02412727511046453,0.0047765363897901035,-0.09428399141978494,0.000495985661382124,4.83065468201935,-0.29436484431281495,0.014423036900664384,0.005553905745336477,-0.040102457376130614,0.1497571973638569,0.24057159838235512,-1.3380978065916966,0.012976699459184022,0.009033210597934879,0.06625389916570018,0.006068753541983505,1.4533922000499768,-1.469302809573361,-0.010080349860786892,-0.006653006022639158,-0.1818769862474338,0.06596641733651777,-0.04356309389632077,-6.825779189245443,-0.02610838133255423,-0.012501448378659605,-0.11790713989212635,-0.012636294006805973,-2.6292412501324773,0.7196372825925377,0.011294447747881686,0.005507116431296823,-0.16266537832614839,0.02529056483270825,-0.5593317455471012,3.137985017318265,-0.07203186435994202,0.01341265051285866,0.2143357841303011,0.0036718670655566934,-10.651026295725979,,,0.4884711779448621,1.355263157894737,0.7368421052631579,0.02631578947368421,0.618421052631579,0.11842105263157894,0.6893266699157516,0.018719100753120818,0.03229804812154187,0.8938354765142953,0.2646549976540288,0.2121108259282765,1.583162146430047,0.4767658235823053,2.0451015790840863,1.6633166913818738,0.11014365648923469,0.17821964224464612,0.09342158896833161,0.3817848877022124,8.808246977548396,1018.0,193.76380000000003,116.0,253.60493827160494,4871.229227872888,4140.989134000003,54.41766285818802,198.5119,154.28307422648987,242.7100010000001,7905.825144974595,933.0,209.379,146.0,268.1111111111111,4722.783295050449,3606.1369459999983,67.019363386,215.50200000000004,110.18724279835392,256.72615800000005,9802.092071495621,1453.0,342.1199999999999,231.0,383.66666666666663,7998.612347754147,5595.935888999998,104.02515322454697,351.88660000000004,191.71604938271605,423.10409600000014,14849.975136921792,1571.0,443.8600000000001,248.0,346.44444444444446,10891.383294144576,5827.006865000002,119.04777555224499,455.63849999999996,224.34773662551436,555.6432159999999,16465.882351976867,1395.0,465.743,226.0,291.2222222222222,11806.055613172235,5026.782182999999,110.60739042994298,475.544,239.83127572016468,585.8801519999998,14870.983985532908,1213.0,406.6861,177.0,224.55555555555554,10891.827562991586,4463.952883000001,89.06043508158396,414.7899,196.02057613168725,517.8027340000001,11768.271380181348,932.0,315.2439999999999,138.0,187.66666666666669,8395.12054905122,3369.770680999999,69.049634195339,322.03169999999994,155.74074074074076,401.29025600000006,8997.183715344017,658.0,225.06099999999995,97.0,142.11111111111111,5878.986925038123,2354.4825519999995,49.143496425943,230.30900000000003,114.32304526748972,286.832662,6539.229831127382,532.0,168.93499999999992,69.0,103.33333333333334,4303.078965899497,1957.1729659999994,38.635176269396,172.66599999999997,98.90534979423867,213.47828600000005,5212.365746441419,367.54838709677415,3.497993548387096,0.6945720293372829,21.93548387096774,114.03345280764633,44.37332126858745,1724.2004676774193,7.994973368308773,3.6101935483870946,53.678562473265764,2.62337387096774,1573.3676891049486,-5.293444328824163,-0.42165764828303987,-0.46190702194244315,7.48803329864724,28.857658560398786,5.288176354304652,-20.210699398542722,0.9448145120567291,-0.3997479708636862,-6.4228338361785635,-0.27272715296566047,142.32304946596855,46.446409989594144,1.2718501560874071,0.17822113286528912,-2.756503642039543,12.652316902403637,-4.93988778618353,215.93454899167602,0.5267088648786655,1.1439275754422462,20.677582040059175,0.8700323902185219,87.50276595458162,-115.56399583766913,-0.9998043704474505,-0.024345072417392827,-7.334027055150885,-53.180843000475306,-9.369874159746795,-542.3336939927156,-1.8174495419918908,-1.1526430801248706,-6.2588093075454045,-0.7453048616024975,-409.32167300680027,-129.76378772112383,-1.8107648283038493,-0.05539737292076476,-1.5192507804370443,-63.28113718991276,-13.008249393703274,-611.9910039510928,-2.074300360382253,-1.8840132154006224,-16.803728667538653,-1.0740674578563993,-688.4322212478722,120.44224765868891,-0.04542133194588792,-0.11416702466317173,0.10926118626430825,-2.582739173443313,-0.11005059893509805,569.2769710624344,1.640654707511588,0.324804474505727,-6.4113114165453755,0.03372702497398443,328.48451837731585,-15.306971904266376,0.7499979188345479,0.2888030987574968,-2.085327783558792,7.787374262920558,12.509723115882466,-69.58108594276823,0.6747883718775691,0.46972695109261364,3.4452027566164096,0.31557518418314223,75.5763944025988,-54.364203954214354,-0.37297294484911503,-0.24616122283764885,-6.72944849115505,2.4407574414511575,-1.6118344741638686,-252.55383000208138,-0.9660101093045065,-0.4625535900104054,-4.362564176008675,-0.467542878251821,-97.28192625490166,20.149843912591056,0.3162445369406872,0.15419926007631105,-4.5546305931321545,0.708135815315831,-15.661288875318833,87.86358048491142,-2.0168922020783766,0.3755542143600425,6.001401955648431,0.10281227783558741,-298.2287362803274,0.7141341906222549,0.580568799437836,0.4313595546697049,0.30359266353810355,0.27993744885614585,0.165041554241654,0.1748251824812551,0.0878636203611397,0.10488873104162215,0.04424223748046394,0.0678094916794081,0.02437486234845888,0.043219096628187466,0.013221791297873967,0.027572888931710008,0.0070759419267597545,17.00110252530911,5.658023782727317,3.554745908019784,2.1573013507199033,0.4372650505021105,-0.35466155849597436,3.2751028590856888,0.9728144144867311,6.022014826593195,0.7740032992240986,14.547878591181057,10.918137495698732,35.450517148941955,11.669054272080295,2.207914846200865,0.741599775491628,3.500797071362747,2.2075322906882833,7.00829189803921,1.2624174851930947,3.713724225988178,2.4035925735222663,22.455861912746695,14.7014407697707,0.30280789210771325,0.6701460123407328,0.7838259344010732,0.9020814932067885,0.9020814932067885,0.9020814932067885,1.6457757558407757,791.2908570767097,0.0,1.0,1.0,0.0,9.0,0.0,3.0,1.0,0.0,3.3426744820252146,1.387727419633996,0.7827310485964647,0.1533834678117234,0.1533834678117234,0.1533834678117234,-6.932067749622377,710.6546353910992,54.75970703828192,22.924343077132235,48.472278665192064,,10.0,309.0,11.887211334113243,4.794537184071822,0.0,5.022633313741326,27.369301355859108,0.0,6.923737199690624,36.39820241076966,4.9839785209472085,16.70746728507322,9.28095238095238,25.75,14.0,0.5,11.75,0.0,0.011528822055137897,2.25,0.1862504709735383,0.09199442717822293,-0.09425604379531538,0.05122329633607825,0.13099072689201297,0.0,0.629646697388633,0.8378446115288218,0.4433962264150947,0.5376522702104101,0.7866213151927436,13.09720672839928,0.35566291430929553,0.6136629143092955,16.98287405377161,5.028444955426547,4.030105692637253,30.080080782170892,9.0585506480638,0.583009273107987,0.20266803488968704,0.0,0.43099025141098,0.13333333333333333,0.5073438700605647,-0.7639293426831562,-0.0722506238467049,-0.02464288202203729,-0.06366077855692967,0.4926561299394352,0.7418133848124201,0.043774835675280545,0.023929464026207103,0.03904280972696948,-4.475804566379007,0.5763001260631593,0.7933898930580898,1.5417559708992021,0.7667112299465241,0.5436312076192219,0.9323112655051965,0.5782725633023369,0.7213020835224068,0.7434378543647998,0.7335822623040126,0.7466417487122788,0.7387745982644294,0.5780314998324478,0.42159753417082496,0.5792284543945673,1.2433155080213905,0.7793802492794596,1.0732748384998292,0.5834963749845058,0.8344410528606302,0.4427841173087608,0.360567420811914,0.41715836836960735,0.8498515760486723,0.9737946872623019,0.9234460523298453,0.8400315360173138,1.158700980392157,1.0989663730742463,1.0893620415189753,0.9755586076170214,1.0170340975658396,0.9402023615926232,0.8152227703822432,0.9147758896376446,1.0319505715967383,0.9499286327984259,1.1882808320578828,0.9838949659568814,0.9267608359133129,1.1758501914005939,1.1080663049041783,0.9537761942569186,1.0291706944646453,1.1514490543659626,1.104867075577819,1.0836155614187546,1.1240173642451405,0.7670058544744913,0.9799104946365023,1.0220592053825477,0.8648356401384084,1.0014547800974007,0.9735948856456059,0.7695056224978384,0.8819582338119346,0.9259198863433292,0.9774836559730664,0.8992046843323993,0.9294469283404104,1.1340736014906634,0.8858457425504617,0.8010594825418831,1.0125848416289593,0.9842415929103693,0.8185826828367528,1.1322399941868238,0.9563415837272956,0.9597104249890717,0.8742133750927643,0.9333135515724943,0.9886885173993475,1.2496975648634419,1.1936881688757879,1.3089877924450004,1.2937201907790146,1.0366538090591484,0.944319849831865,1.2459039860365646,1.124062210307253,1.2217095978354426,1.258180225261795,1.2886424551826745,1.0641400738186002,0.7462574287218837,0.8360251881065194,0.8172158090488567,1.0990021008403363,0.9345860486557847,1.293665917648045,0.7546955854741259,1.2309180826010606,0.7980379417215975,0.9336898560822177,0.8546186008614197,1.1979088261631494,4.5,0.0,2.666666666666668,1.7638888888888888,0.9766666666666668,0.7366666666666667,0.39922902494331075,0.26566043083900226,0.1300154320987654,0.08938271604938272,3593.0711931321603,3920.457845430881,1846.9334800703998,1716.8485882580617,11.167578473917052,0.45675882665635825,6.0666884335778954,0.8408030338440919,1.0,0.13333333333333333,1.6115218283616604,3.566468890752879,4.17146526179041,4.8008128425751515,4.8008128425751515,4.8008128425751515,0.2142857142857143,0.0,0.08602150537634415,0.05689964157706093,0.039066666666666666,0.036833333333333336,0.026615268329554048,0.024150948258091113,0.014446159122085045,0.014897119341563786,0.5132163562904133,13.959183673469388,5.4131113423517165,2.6122448979591835,114.35774102629294,1.0,3.8964362237294776,75.23902140497378,,53.73112788307685,54.61715872552215,54.79874622315176,53.70482273635915,62.39336879935465,54.63757330248714,54.72513200558713,59.351342427182296,-0.013529183355407742,-0.11323709830134751,-0.6247194511852813,0.32067736185383233,0.23772593821626806,0.11195197194303383,-0.01101136954885447,0.11101388154658519,-0.10401681130978177,-0.11240187705185746,-0.0976598255549431,0.08497531189321167,0.07122568496976076,0.20493491115727988,0.14462418152252646,-0.07082887700534762,0.06253696362658509,-0.06274717125010924,0.07058840677677913,0.03713236500224228,0.17859407542669978,0.2171190250419997,0.18692794728786552,0.03134660839439318,-0.1353746123690832,-0.12306235566482458,-0.015091172314715838,-0.1439542483660131,-0.20079465138713298,-0.09091614643665027,-0.1354278631115745,-0.09787562274419914,-0.137465450278185,-0.05020188683086666,-0.12232154642416421,-0.1120117830960598,-0.14400815757139032,-0.21115003012641442,-0.03253269048397944,-0.028250773993808046,-0.22635500518158336,-0.11957627492214036,-0.1447789362002828,-0.10582852007780774,-0.21286367736328554,-0.12768882337759105,-0.16700115371332538,-0.17847568731964472,0.14938848103749142,-0.0059196174592035435,-0.07493352688186966,0.002270761245674746,-0.010325261424897734,-0.001130637161041953,0.15051806904608894,0.09355197246674733,0.04101514949237189,-0.05445011191328038,0.005860985227078569,0.09517819399722721,-0.02482750705499519,0.12782017397566603,0.2478808112525142,-0.05667420814479636,0.04071150179158892,0.16806764372475408,-0.024058125944148207,0.050316325608949594,0.07756634783780178,0.038262404570905226,0.07171351437303468,0.028636127787256195,-0.1239248727400386,-0.08933431161657841,-0.2969356351688942,-0.25703497615262333,0.01793297393951163,-0.030433960591134568,-0.12272305850354102,-0.10123358565738289,-0.10734740244372465,-0.06809275748538021,-0.14932111604301415,-0.05180383410598313,0.060696105719802426,0.100093918225142,0.24579251993935378,-0.22988445378151265,0.00687524134813697,-0.3907592133346773,0.05641892422631326,-0.27929896602401827,0.11517171041546499,0.12378143157892009,0.043389880600688976,-0.2098567407058791,4.878761561255453,17.59842844255046,9.689077583688187,18.6068067521372,35.42025480972427,41.53506064762073,43.58918494453562,43.58918494453562,43.58918494453562,38.85693000259764,31.603017136255602,2.092729473295459,3.3861732026482763,1.7750101903983007,7.253912866342036,3957.7617895062886,3680.4547371139006,505.876333542255,95.0,31.0,42.0,56.0,73.0,83.0,101.0,117.0,102.0,273.0556563040003,21.0,4.653960350157523,5.5254529391317835,6.428105272684596,7.323170717943469,8.231908243564177,9.136155473786806,10.048410069255738,10.957363947362847,11.871781029626481,0.7634408602150541,0.9909677419354838,1.1081571653536992,0.7351218372405938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7327702530423029,0.9833017077798863,1.0134506496252613,0.6944962738751039,6.0,0.0,1.0,0.0,0.0,4.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,10.090505915787915,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,23.733674027155736,36.75265696523406,26.82848317790344,5.917906046161393,239.447460985236,-360.54627299579994,-34.09961064992783,-11.630524935348383,-30.04552274964999,232.51539323561363,350.1083623952993,20.66009638835408,11.29381814178385,18.42675591554207,0.5,0.7801805691674757,0.3193032154716374,61.24393311001855,0.20600244892377867,16.971949807113106,0.21981943083252417,5.0,0.09523809523809523,0.32528420906191663,0.7198884879219435,0.8420064528013543,0.9690396871254087,0.9690396871254087,0.9690396871254087,4.162600000000002,,1.2899159663865545,0.8737040977231583,0.7031788698096897,1.3022161039574311,-2.4488253927316816,0.8716640456749766,0.8470367662118319,-1.0340249546218707,76.86550000000003,9.901064578912528,0.0,4.9839785209472085,0.0,12.841643245852017,0.0,46.98428721620798,0.0,0.0,3.7612001156935624,0.0,5.117993812416755,2.3978952727983707,6.668228248417403,4.844187086458591,8.305731144875866,7.050122520269059,9.990261401318167,23.666666666666675,11.36571103132611,0.0,3.2878149407911312,0.0,0.0,4.040057004283196,1.4805866822037461,0.0,30.719999999999995,0.0,11.024956621460952,0.0,0.0,0.0,0.0,0.0,-0.8208281893004117,34.35287212596467,0.0,0.0,0.0,16.059811203739763,4.794537184071822,0.0,18.405094737549014,36.39820241076966,5.022633313741326,21.805849864162113,0.0,22.788776954458406,22.71587784431139,24.499974479388534,150.47804280994757,,107.326475138113,109.1423485986524,109.5234736179025,107.27257009335435,126.07559306856811,109.18339249490323,109.36110224630985,119.24690851469188,24.499974479388534,150.47804280994757,,106.1723397997671,108.3606133533212,108.89431357649383,106.10742936876085,127.23556299144107,108.4034825592993,108.60322724496248,119.73670980898646,4.856734972111568,113.1874579364407,,81.0548478649828,81.83608209298738,81.99960896297488,81.02908574038274,93.24409807291308,81.94501112837956,82.10348950943714,88.84752078394166,1.2894723410204492,7.91989698999724,,5.6487618493743685,5.7443341367711795,5.764393348310658,5.645924741755492,6.635557529924637,5.746494341837012,5.7558474866478875,6.2761530797206255,2.5023886711404923,75.23902140497378,,53.73112788307685,54.61715872552215,54.79874622315176,53.70482273635915,62.39336879935465,54.63757330248714,54.72513200558713,59.351342427182296,30.482352941176476,0.0,1.6835540018476527,6.007657685272523,0.0,0.0,9.05604558520684,31.416970138383103,0.0,0.0,0.0,0.0,-0.5144442519806285,0.0,0.0,0.0,0.0,21.529384490128223,368.2162482319289,49.95717667921147,110.56053561333925,129.3154231155027,148.8251981198297,148.8251981198297,148.8251981198297,740.0,114.17630804351342,103.74660598892076,67.13561960224777,53.089999999999996,53.089999999999996,1.0,9.352582930729069,5.392317422778761,3.8125935858603017,4.289933821545617,,4.2837194151887825,4.277225771769369,4.274945711197579,4.28384455803587,4.257489540864881,4.278217667050747,4.27855094670792,4.269169092617582,0.20066282030843693,0.22578599060766405,,0.22545891658888328,0.22511714588259837,0.2249971426946094,0.22546550305451948,0.22407839688762535,0.22516935089740772,0.2251868919319958,0.22469311013776747,1.9801635749155484,2.0981251927801923,,2.096675540625262,2.0951585014378877,2.0946252893454145,2.0967047537942536,2.0905335630863577,2.0953903761017587,2.09546827458713,2.093273102584631,193.48999999999975,129.54017814453854,99.28152256226164,,99.69442174077986,100.26931817494928,100.44554975616373,99.68011274696836,101.61979683476281,100.19757440626627,100.1747281523703,100.92315105332305,6.817904112870449,5.225343292750613,,5.247074828462098,5.277332535523646,5.286607881903354,5.246321723524651,5.348410359724358,5.273556547698225,5.272354113282648,5.311744792280161,5.505844975134948,5.239813362993271,,5.243963611131371,5.2497136337943076,5.251469673377401,5.243820072300067,5.263092253071692,5.248997867007859,5.248769828963646,5.2562132327368785,0.0,14.312771562252083,11.854422800290406,2.722266471403377,-1.3352724412810402,11.36571103132611,0.0,1.6835540018476527,0.0,223.55993035879058,113.01030712252754,-170.1644480817874,-16.093749570159623,-5.489175744573786,-14.180370673482281,109.73862864176346,165.23814200267307,9.75079805992546,5.330262645247519,8.696744315930163,689.0,31.0,1.5866240846339301,0.7709246109312435,0.0,0.0,0.4803134536383228,0.1369648362672053,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.03125,0.35830498571017655,0.12028130608117202,0.6605372672439855,0.1906541768463659,13.568549621822843,11.030807189318885,9.058550648063802,6.375445934300174,8.678060914540522,5.116288181491274,7.342657664212713,3.690272055167868,5.873768938330841,2.4775652989059807,4.950092892596791,1.7793649514374983,3.5871850201395596,1.0974086777235392,2.784861782102711,0.7146701346027352,3.774564017359806,1.5149818559391288,5.428708323514157,1.85125496732847,8.272941128614384,2.375867782280169,59.88604441691322,38.41347155639923,27.271752973086986,23.192141659057,23.192141659057,23.192141659057,104.0,125.0,37.93551599999999,13.986483999999997,0.41935483870967744,99.04,6.638888888888889,4.0555555555555545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,13.0,15.0,31.0,0.0,0.0,33.0,15.0,1.0,7.0,26.0,16.0,21.0,17.0,0.0,0.0,0.0,15.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,12.0,1.0,2.0,1.0,19.0,4.0,0.0,1.0,2.0,0.0,3.0,2.0,0.0,0.0,1.0,1.0,3.0,3.417726683613366,8.166416000064938,4.131158535344817,4.814214812922799,5.528932932700948,6.184793013343006,6.660094880879842,7.209848633274748,7.718973648122868,7.886348635802394 +9875401,O=C(NC[C@H]1CN(c2ccc(N3CCOCC3=O)cc2)C(=O)O1)c1ccc(Cl)s1,0,36.46808510638298,6.58206808510638,3.6595744680851063,9.405306015235094,161.1505607362975,147.06982346808516,1.7234160061123822,6.685155319148933,5.584110005285909,8.135853574468083,245.08453473745922,31.58,6.593579999999999,4.36,8.18888888888889,146.75696761651187,122.5325011000001,1.9221261114000012,6.754580000000002,3.2402880658436213,8.020619799999993,282.427725025492,29.64367816091954,6.670220689655173,3.839080459770115,6.764580672626649,155.7920117831263,113.87951556321845,1.6926498197039652,6.782641379310346,3.418106733098927,8.159111850574709,240.21943144710013,22.272727272727273,6.469252727272728,3.2181818181818183,4.891919191919191,160.04596022833948,82.26906304545456,1.420247751791245,6.5664700000000025,3.2331836887392447,8.031947418181819,199.84980640304232,19.65137614678899,6.391237614678902,2.963302752293578,4.554536187563711,159.05037961030646,71.25461217431192,1.372574872085678,6.48331743119266,3.473373730509306,7.943118788990825,192.39187828474223,19.036036036036037,6.321054054054055,2.7477477477477477,4.142142142142142,159.6371004768216,69.00834551351352,1.291854491391288,6.409090990990992,3.5235235235235227,7.919124990990991,176.882931910522,17.95959595959596,6.208272727272728,2.8181818181818183,4.1806958473625135,161.53447442326564,64.72876472727272,1.2307933580588788,6.292028282828284,2.978987404913331,7.832186000000001,165.70113441627308,21.705128205128204,6.375548717948717,3.1153846153846154,5.542735042735043,163.64937203856567,80.28007666666663,1.3443015373132434,6.468514102564104,3.358512714994197,7.975508846153846,183.94779073103834,25.65714285714286,6.4940428571428575,3.3714285714285714,5.655555555555556,159.0098843249554,97.27163215714283,1.4746611067091562,6.615895714285715,3.320590828924163,8.053974342857142,212.50713263429492,13.346310547759172,0.16285287460389317,0.027903388620121337,0.6156631960162967,4.467034410296822,1.564933236395951,61.062352829334564,0.29756284226852786,0.15441195110909905,2.158158912470212,0.11442442281575367,48.732240782606446,0.4617745586238112,-0.006955938433680409,-0.017739236451506407,0.11114531462200088,0.8555555555555552,-0.37778054670592753,2.199861110239928,-0.012342453669794145,-0.003953695789950267,-0.051731749382074345,-0.009063745368945216,-0.8791285769350321,1.6957535265866397,0.009274002383145205,0.0019892545260132,-0.05562406664481253,-0.07804739605505899,0.09943994372844286,7.41725316381782,0.04703659771308018,0.006113213967936765,0.10090614618563792,0.007108616802734861,1.6409230260824965,-0.8109140293839253,-0.013400921025556605,0.002562388912846041,-0.12978311864685793,-0.6748597081930414,0.002539283921568182,-3.7438302947117172,-0.009919706488411978,-0.01336231861393473,-0.11297226651086749,-0.00699488819292975,-1.1714902895119694,-1.5621996752235436,-0.028709540619899405,-0.0037682037783829444,-0.09116583119099932,-0.7393815834182805,-0.07946068734117372,-7.271221468998803,-0.02865601521741931,-0.027357803148919543,-0.26929122880375594,-0.01999320556023938,-6.386155015869246,-0.2523868368141796,0.0005124694635785718,0.003444379002586654,0.05464541046252231,-0.3000778556334112,-0.05956244955597161,-1.2091661893115402,-0.025729706828346334,0.002856939057663402,-0.17304372256414063,0.0043052789285437775,-4.990491051451013,0.5247403871215552,-0.008351133791514042,-0.003279993254493987,0.08173633117046428,0.24005486968449938,-0.27766265207330376,2.3850565923288993,-0.012450224581397192,-0.005740427360979606,-0.20985429164469976,-0.007834841470385117,-0.5105972508504548,0.3790031456396326,0.026958254692342507,0.002303754483053006,0.030545205511253497,1.050807217473884,0.051686708880760504,1.9933855844679704,0.009135722890701544,0.023052724286427323,0.4771432786502078,0.012546423883646162,5.7086518314400525,1.2433551057362733,-0.0038453974002457558,-0.0009753143963125887,-0.08982732975489881,-0.12574955908289248,0.033595645796087606,5.535463270969412,-0.01549100419882236,0.0028082920519950554,-0.053431498150818844,0.0011799413179848573,1.8572768417101966,,,0.4798029556650246,1.206896551724138,0.5172413793103449,0.017241379310344827,0.6896551724137931,-0.1724137931034483,0.84105481667885,0.014005971431935061,0.025868040397452302,0.9427462281718574,0.2437141334359356,0.23932174211051196,1.7838010448507073,0.48303587554644756,2.0478691079463536,1.3718324391819423,0.22368081408252194,0.3230383533613972,0.06043807453160961,0.6760366687644118,9.256714241617031,1714.0,309.35719999999986,172.0,442.0493827160494,7574.0763546059825,6912.281703000002,81.00055228728196,314.20229999999987,262.45317024843774,382.38511799999986,11518.973132660583,1579.0,329.679,218.0,409.44444444444446,7337.848380825594,6126.625055000005,96.10630557000006,337.7290000000001,162.01440329218107,401.03098999999963,14121.386251274602,2579.0,580.3092,334.0,588.5185185185185,13553.905025131988,9907.517854000005,147.26053431424498,590.0898000000001,297.37528577960666,709.8427309999996,20899.09053589771,2450.0,711.6178000000001,354.0,538.1111111111111,17605.055625117344,9049.596935000001,156.22725269703696,722.3117000000003,355.6502057613169,883.514216,21983.478704334655,2142.0,696.6449000000003,323.0,496.44444444444446,17336.491377523405,7766.752726999998,149.61066105733892,706.6815999999999,378.59773662551436,865.7999479999999,20970.714733036904,2113.0,701.6370000000001,305.0,459.77777777777777,17719.718152927195,7659.926352,143.39584854443297,711.4091000000002,391.11111111111103,879.022874,19634.00544206794,1778.0,614.6190000000001,279.0,413.88888888888886,15991.912967903298,6408.1477079999995,121.84854244782899,622.9108000000001,294.91975308641975,775.3864140000001,16404.412307211034,1693.0,497.2927999999999,243.0,432.3333333333333,12764.651019008123,6261.845979999997,104.85551991043299,504.54410000000007,261.96399176954736,622.08969,14347.92767702099,1796.0,454.583,236.0,395.8888888888889,11130.69190274688,6809.014250999999,103.22627746964093,463.1127000000001,232.4413580246914,563.778204,14875.499284400645,627.2765957446811,7.654085106382978,1.3114592651457029,28.936170212765948,209.95061728395066,73.55186211060969,2869.9305829787245,13.985453586620809,7.257361702127655,101.43346888609997,5.377947872340423,2290.415316782503,23.08872793119056,-0.3477969216840205,-0.8869618225753204,5.557265731100044,42.77777777777776,-18.889027335296376,109.9930555119964,-0.6171226834897072,-0.19768478949751334,-2.5865874691037174,-0.4531872684472608,-43.956428846751606,147.53055681303766,0.8068382073336328,0.1730651437631484,-4.83929379809869,-6.790123456790132,8.651275104374529,645.3010252521503,4.0921840010379755,0.5318496152104986,8.778834718150499,0.6184496618379329,142.7603032691772,-89.20054323223178,-1.4741013128112266,0.2818627804130645,-14.276143051154373,-74.23456790123456,0.2793212313725,-411.8213324182889,-1.0911677137253175,-1.4698550475328203,-12.426949316195424,-0.7694377012222725,-128.86393184631663,-170.27976459936625,-3.1293399275690352,-0.4107342118437409,-9.937075599818925,-80.59259259259258,-8.661214920187936,-792.5631401208695,-3.123505658698705,-2.98200054323223,-29.352743939609397,-2.1792594060660924,-696.0908967297478,-28.01493888637394,0.05688411045722147,0.3823260692871186,6.065640561339976,-33.308641975308646,-6.611431900712849,-134.21744701358097,-2.855997457946443,0.3171202354006376,-19.20785320461961,0.47788596106835934,-553.9445067110624,51.94929832503397,-0.8267622453598902,-0.3247193321949047,8.091896785875964,23.765432098765437,-27.488602555257074,236.12060264056103,-1.232572233558322,-0.568302308736981,-20.775574872825278,-0.7756493055681266,-50.549127834195026,29.562245359891342,2.1027438660027156,0.17969284967813445,2.3825260298777726,81.96296296296296,4.031563292699319,155.4840755885017,0.7125863854747204,1.7981124943413311,37.21717573471621,0.9786210629244007,445.27484285232407,87.03485740153913,-0.2691778180172029,-0.0682720077418812,-6.287913082842916,-8.802469135802474,2.3516952057261324,387.4824289678589,-1.0843702939175652,0.19658044363965388,-3.740204870557319,0.08259589225894001,130.00937891971375,0.7027622210239473,0.5817687146206423,0.4377512622139682,0.31886804950422004,0.2847102637201265,0.18354665832442024,0.18334251242061259,0.0991552933768752,0.11807426156257958,0.05508884522456145,0.07852523342499393,0.029816363966556944,0.04855748483325305,0.014927735159235865,0.030694481570124492,0.007922151919632124,17.00110933810824,5.698304503520685,3.5568090524314355,2.1968201951135846,0.5022754415875714,-0.4719265597315781,3.1723252719286856,0.9772373059778752,6.029532762484341,0.6530571401253534,14.545171250198766,10.31130187125227,35.45051835940115,11.710520197834487,2.9366618134994154,0.7404035366692944,3.5030971600449297,2.246344262670465,7.010446629339555,0.6047844236115387,3.715799570038442,2.4420515747387834,24.44073364872778,14.700433449187958,0.32300677665705513,0.648261269392015,0.7992228845414394,0.8828314964788921,0.8973597755992085,0.9118880547195253,1.1996470774203811,932.180757191145,0.0,3.0,5.0,0.0,9.0,1.0,0.0,0.0,0.0,3.6624212927231925,1.7570866557019387,0.872756383162848,0.38297872340425343,0.29787234042553123,0.21276595744680726,11.47991864171712,1994.7277955336324,84.81967742879633,42.4410169262475,94.0031863988483,,17.0,822.0,12.197206458686718,14.383611552215466,24.965997829128504,34.59725726046857,5.687386274683562,16.236695608785215,41.29811214162014,0.0,5.316788604006331,21.074665797832616,13.914285714285715,35.0,15.0,0.5,20.0,0.0,0.020197044334975357,-5.0,0.23095425719539214,0.06564283048045683,-0.16531142671493532,0.020213464696223205,0.18465217391304312,0.0,0.6741641337386017,0.906403940886699,0.4432098765432096,0.6085213032581449,0.8861904761904758,24.39058968368665,0.40617317152611676,0.7501731715261167,27.339640616983864,7.067709869642132,6.940330521204847,51.73023030067051,14.008040390846979,0.5293478260869569,0.12320328542094457,0.0,0.34496919917864477,0.3157894736842105,0.4916271703246077,-1.4304838469994092,-0.08315257058271867,-0.030435826531902316,-0.08940524043746308,0.5083728296753924,1.4792085649454003,0.040573169014824266,0.03147252265841278,0.04771640532081937,-3.825985141578429,0.5998629672342444,0.7213157318300336,1.6934843561662112,0.842544117647059,0.5403093025990826,1.394687295237743,0.5968297854097253,0.9359536697667085,0.6736125606867277,0.5342977448464229,0.7495334718158533,0.883760481445294,0.6616817430779892,0.8727045857960654,1.0900321568478346,1.1694388100067616,0.9405530975544804,1.0520925688237055,0.6631582901123899,0.7656022449859148,0.8513589089019064,0.5743928715030586,0.8338682193548949,0.849327284996247,0.911661044335218,1.0531874484794908,1.028228858529953,1.2789906417112302,1.1416761998439051,1.0237217557487486,0.9141082000713368,0.944161950364557,1.038853729795078,0.9131969136033363,0.9956364481925717,0.9663618553442783,0.8406370175177635,1.1226754199327047,1.1449934876275452,1.1011265515380466,1.1077671453248557,1.0372571140572244,0.8523956491595868,0.9290003551929638,1.1020398545820889,1.23571555108498,1.0808570652059475,1.0747152858063003,0.8287936875210462,1.0049952165418248,0.7701836982911293,0.7805312665606785,1.042189137273225,0.9560295428128488,0.8360749046899225,0.9881678954847638,0.9728460265974633,1.260897620711283,0.9462096327212164,1.095578682046726,0.8314763536593803,1.0313834847634067,0.922627108971148,0.8349970291146764,0.9569159785553998,1.0814338700594481,0.8377826520368912,0.9680425414137458,1.0141330424350457,1.0556536676037616,1.012891807942301,1.0372034296621198,1.0017459588553812,0.7798913972392464,0.9466046939855408,0.9986613876319761,0.7737653678792098,0.9888817799252729,0.994762604103612,0.9667699509506361,0.8033342444235567,0.47495149035865564,0.7910768121898705,0.8793971281643576,0.7857094401426533,0.9491977027981161,1.2989174660346396,1.2604096638655464,0.9967851682599416,1.0062145538694416,0.7939463805898235,0.9439953077224492,0.9052264423254118,0.8971943415284732,0.9048014359100209,0.8976240372309988,6.0,0.10183042546678911,3.7777777777777795,2.2916666666666665,1.4694444444444446,0.8061111111111112,0.5184126984126984,0.44104308390022684,0.3398919753086419,0.24908179012345683,6177.099292153566,6721.840742321869,2968.7097429864143,2785.246183084915,19.087168839910014,0.4834172879173133,9.860101445300863,0.9357984241639415,1.0,0.3157894736842105,1.892167558954445,3.797502195975699,4.68183246851479,5.171610128273384,5.256716511252106,5.34182289423083,0.1875,0.004849067879370911,0.08395061728395065,0.05329457364341086,0.03767806267806268,0.023031746031746035,0.017876299945265465,0.015208382203456093,0.01096425726802071,0.00858902724563644,0.4429420341789198,22.203125,10.08,5.437517954610744,175.48612982852504,1.0,4.3047552144662005,188.27734390915558,,147.5129616002967,149.7676060278248,148.300455700597,147.51267493027564,213.4815936388793,151.4406725534597,152.67268636364136,193.60783864951432,0.03459941659317545,-0.04271302211029022,-0.6357377124696071,0.18052941176470588,0.1915265200517463,-0.2414036189658532,0.036026471439585726,-0.041478477540068726,-0.025604856110890025,-0.023970315199292984,-0.07921163284816973,-0.01803997851969925,0.1270578502214872,0.05694712117119424,0.07129078668885162,-0.09034820824881686,-0.017471859154510733,0.063542610902337,0.12147015010293784,0.15807282036455758,0.0395902902853517,0.04675566085638315,0.06212499593885794,0.03367222601978476,-0.06075941560644089,-0.08228851383895831,0.09183074313054163,-0.21080213903743328,-0.15107555622079902,0.0016226148582646027,-0.061311595790871136,-0.0333365094001226,-0.08653681608163635,-0.05234659313459002,-0.06113107692221376,-0.02403932736723444,-0.11705105089779547,-0.1762912732718387,-0.13504466535170803,-0.14807744198596878,-0.16551956298208828,-0.0507757682520515,-0.11907863244839925,-0.09630239783621719,-0.17717413032097507,-0.12477822056927552,-0.1747284807582771,-0.13104579049335646,-0.018910607235686945,0.0031468247940053293,0.12343945208514522,0.08875861155272928,-0.06717607881902836,-0.038060696885155454,-0.01980215522796974,-0.08646814445039892,0.018502059180929883,-0.08018117737496731,0.037625524539251054,-0.10240635298740917,0.03931726189374924,-0.05128023568405835,-0.11754820531470359,0.13276143790849682,0.05373920315705568,-0.17742779411648402,0.039059362795845466,-0.04184065620048692,-0.03717605612614618,-0.09723764567665785,-0.06847175871711222,-0.010477606665538302,0.028397596795263148,0.16553748134881277,0.08256181764933566,0.049613499245852205,0.23523598006133575,0.03302806003391892,0.03264508313394601,0.030701826952093867,0.14929365324928462,0.22108811167388653,0.10964812908734027,0.11714322468581395,0.09316096019847454,-0.023612708155130276,-0.03495325996389135,-0.14590336134453788,-0.02815056870684297,0.02146778214862287,0.09065263643608173,-0.05205960556339527,0.018187012286444523,-0.02475790723383829,0.01031197089702432,0.03811187033232211,10.957346397331523,18.959945452063344,5.552418131273971,23.90990263051019,42.4613583503092,49.23018028851469,50.19208893550881,51.214301701466255,51.30008893550881,59.38820413044426,39.78314073627633,6.4867436083931365,9.368112247480518,1.7527041614166787,19.605063394167942,15541.346223891607,15420.953956515103,761.1923408117327,136.0,45.0,59.0,75.0,85.0,86.0,99.0,115.0,126.0,435.0655693560004,32.0,5.043425116919247,5.8944028342648505,6.769641976852503,7.633853559681768,8.50976567558744,9.378985497953893,10.255235378138305,11.127248278167759,12.00401153945058,0.8014184397163117,1.0134468085106387,1.1218813451363017,0.7721273230035592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7150245126767742,1.0021693783896535,1.0313957632765651,0.6808988744581245,6.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,5.0,1.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,19.690424242456906,12.71084835226122,0.0,0.0,11.814359458703011,14.48898409899412,4.794537184071822,0.0,11.336785877934737,11.600939890232516,36.39820241076966,17.9195289552797,28.909870985784995,337.03300653369655,-980.6623816860422,-57.00490647413742,-20.86515705714983,-61.291398855377636,348.51292517541367,1014.0654138475902,27.8147709546589,21.57585986909767,32.711787543470656,0.47058823529411764,0.7530961547563397,0.1519218244402519,107.05976254369564,0.14239130468960953,53.91905824481665,0.24690384524366044,9.0,0.15625,0.3406494358953244,0.6836693583232086,0.8428765104910957,0.9310518323442457,0.9463736473788577,0.9616954624134699,2.5199000000000007,,2.9506302521008405,2.077592295817583,1.5861801030900966,2.960371900650826,-6.307933891078291,1.981823164402027,1.9444032572524375,-2.7120787701113374,108.89120000000001,23.85733745981556,0.0,5.316788604006331,0.0,6.103966387748303,42.64785260846451,45.611678620216594,0.0,0.0,4.174387269895637,0.0,5.501258210544727,3.044522437723423,7.005789019253503,5.351858133476067,8.587651655064798,7.3796321526095525,10.210788411857061,37.66666666666665,10.437989817724882,0.0,0.0,0.0,1.1888850014535264,0.0,2.4644754341153967,0.0,47.63200000000002,0.0,36.280948910363456,0.0,0.0,0.0,0.0,0.0,-0.8176276837358107,52.72842322140618,15.116608065707286,16.169309733438947,0.0,56.85959906415329,14.268263091671919,0.0,9.671684377773122,36.39820241076966,4.336329015745631,0.0,0.0,36.289984181167284,33.60615209580839,37.88410415489151,376.5546878183111,,295.1865506487869,299.5138873328053,296.62421821167936,295.18810109357116,429.0977721977043,302.8382334767557,305.2810664145794,387.8087386594093,37.88410415489151,376.5546878183111,,292.84639562125864,297.7228594915831,295.2568215710845,292.840219930986,433.32643412471543,301.1297652315815,303.6048567100514,389.92775606913983,4.788134923002988,291.1409415974466,,232.42288884769604,234.25624625048886,231.04796307738266,232.4351485256293,330.5687289182993,236.97146245046548,239.05272470248417,301.5499716272378,1.30634841913419,12.984644407527968,,10.1788465740961,10.328065080441563,10.228421317644116,10.17890003770935,14.796474903369113,10.442697706095025,10.52693332464067,13.372715126186527,2.421417824055453,188.27734390915558,,147.5129616002967,149.7676060278248,148.300455700597,147.51267493027564,213.4815936388793,151.4406725534597,152.67268636364136,193.60783864951432,47.10196078431371,0.0,0.0,5.841103607455499,0.0,0.0,0.0,48.47560087399856,1.5977748034581243,2.756728424003302,10.489083635053184,0.0,-0.4561280229110318,3.1612105174639167,0.0,0.0,0.0,32.00224709953185,516.2820050789832,88.93187527085892,178.48260321085786,220.04612602019512,243.06567602884905,247.065676028849,251.06567602884903,887.0,137.61656985701634,169.26392663012714,80.25588729042477,116.42,88.18,0.8888888888888888,7.970502883393579,6.0,4.5208246956965095,5.301887627836866,,5.310264144822691,5.300057210199417,5.29927326283915,5.3103303544001434,5.309082639496318,5.301635259717614,5.3027918290445415,5.308562460463513,0.1558905067481555,0.1828237113047195,,0.18311255671802382,0.1827605934551523,0.1827335607875569,0.1831148398069015,0.18307181515504545,0.1828150089557798,0.18285489065670832,0.1830538779470177,2.5734051689938284,2.732773650337577,,2.7343523157967455,2.732428351869494,2.7322804279296395,2.7343647839457668,2.734129796397908,2.7327260495313213,2.7329441790581375,2.7340318125176175,288.61000000000047,313.596325304653,183.78109359392454,,182.07191611812732,183.1359672580339,183.33959351518493,182.06134046013443,183.08562873193554,183.00519500227927,182.90355493027485,182.80278883654847,10.813666389815621,6.337279089445674,,6.2783419351078384,6.3150333537253065,6.32205494879948,6.277977257246015,6.3132975424805355,6.310523965595837,6.307019135526719,6.303544442639603,6.812817307621498,6.278456077607505,,6.2691124895267825,6.274939604434124,6.276050872414322,6.269054402780764,6.274664696962984,6.2742252774215155,6.273669728669881,6.273118652113546,11.026903436295207,39.94625965068371,2.756728424003302,1.422555410017046,-0.344123914944344,10.437989817724882,-0.9296317917024985,1.5977748034581243,0.0,355.52417988296156,231.05160648086562,-672.2891061450327,-39.07948172080322,-14.304023535000695,-42.01806913406455,238.92161800204636,695.1884189501305,19.068303069387134,14.791242956385762,22.425432869359053,2633.0,43.0,1.9720715879892006,1.155553328241206,0.0,0.0,0.4463839834155875,0.12478694964057475,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.13932987224096224,0.572381160772872,0.28701191690921407,0.7014267764809223,0.22460582779593166,20.38010440969447,16.871292723998625,14.008040390846983,10.203777584135041,12.81196186740569,8.259599624598911,10.817208232816142,5.850162309235637,8.855569617193469,4.131663391842109,6.674644841124484,2.5343909371573403,4.175943695659762,1.2837852236942844,3.0387536754423246,0.7842930400435802,4.581538034061236,2.0412081120622187,6.984880763743308,2.59523475347236,9.551198579356152,2.708642113626099,92.73999126946545,49.40645182069831,32.86550352329758,29.583222486019064,27.7681132851624,27.465595085019626,154.0,181.0,56.12227399999999,31.093725999999997,0.5319148936170213,212.1,8.86111111111111,6.305555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,11.0,11.0,47.0,0.0,0.0,50.0,11.0,3.0,8.0,42.0,14.0,32.0,36.0,0.0,0.0,0.0,19.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,6.0,1.0,3.0,29.0,10.0,0.0,3.0,5.0,0.0,4.0,5.0,1.0,0.0,1.0,1.0,2.0,3.7256934272366524,6.386668859507085,4.244917420701475,4.71961432037896,5.189826957881283,5.504060403182079,5.625370381252758,5.8916442118257715,6.1545926660122054,6.257068749610956 +219025,CCCCc1oc2ccc(NS(C)(=O)=O)cc2c1C(=O)c1ccc(OCCCN(CCCC)CCCC)cc1,0,22.096385542168676,5.936908433734941,2.8433734939759034,5.595716198125837,162.9405793938501,86.95144903614458,1.4465649134139276,6.010181927710844,3.844304171418183,7.533423048192771,200.74780936411983,25.235294117647058,6.157350588235294,3.458823529411765,4.874509803921569,144.73998952801182,94.91628754117647,1.8051103250588232,6.3179835294117614,2.495697167755991,7.64586028235294,250.344830597879,18.10322580645161,6.065780645161291,3.0516129032258066,4.255913978494624,155.06643254397355,65.56724200000001,1.4385203750217808,6.171514838709678,2.9131023496614894,7.614407651612904,194.5385681988033,14.637254901960784,5.956563725490196,2.6372549019607843,3.1323529411764706,161.4096730165581,51.908974892156856,1.241037139397044,6.033049019607843,2.5284132171387075,7.5604048039215686,164.42998414438145,15.066985645933014,5.9187511961722485,2.674641148325359,3.218500797448166,159.69403448414215,53.661155889952155,1.272968507616488,6.0036660287081345,2.5850759052513443,7.522358162679427,167.36377996140533,14.820276497695852,5.90120737327189,2.6129032258064515,2.877112135176651,158.42552415221857,52.454285668202765,1.290041613725576,5.991343778801843,2.565483302042442,7.498759612903226,169.13707552114343,14.188034188034187,5.8698504273504275,2.4743589743589745,2.578347578347578,158.39657938303844,49.67590936324787,1.2511794949651538,5.957561538461539,2.4933193521156483,7.480827957264957,161.12792149743288,13.307053941908714,5.800917012448132,2.327800829875519,2.4149377593360994,161.09901481909867,46.53770159336099,1.173884019146386,5.879621991701245,2.433565134982839,7.429727211618258,149.27312179444414,13.42081447963801,5.869049773755657,2.276018099547511,2.2775263951734543,161.40329335739233,46.45683571945701,1.1784472934069683,5.943999095022625,2.7863876319758676,7.500412479638009,148.54785593139576,9.032080127739873,0.10846535055886189,0.013196946585422028,0.5388300188706634,3.482137384880889,1.3997711139488511,41.954508312672374,0.2650511271303358,0.10411078530991429,1.3851735714736582,0.06742645637973578,51.95047820385901,1.7297908857257513,0.00048503923561016554,-0.005500164822373404,0.19114871961268173,1.1272176824472468,-0.2028038701031486,7.503623812203596,-0.02087977718992539,0.004517194846003591,-0.2071226969516046,0.005491410239683015,-0.2084246951350406,-0.03340154243089769,0.018145811508763456,0.0007039313193336421,0.07718241797348743,0.9825601147952352,-0.07650368124289705,-0.010221903500205683,-0.021779291577965588,0.016692051845157634,0.3545844250684642,0.009433438684391648,-0.4865297494753731,0.5045369287212634,-0.010336092349554083,-0.001590331306053855,0.07503721476978074,0.3333664605662591,0.17170876854053152,2.4489668649794067,0.0314657933916827,-0.008015893979888323,-0.06015406514202956,-0.007518028550772911,5.624741670122128,0.5991529384963615,0.006476460705333611,0.000674108987901223,0.018211544512054097,0.4651605789040753,0.09639874829417461,2.89060342359326,0.015718137045948072,0.0069053039274177734,0.1274101133354783,0.0027881804450753883,4.236072815180736,0.2181558391692358,-0.001218434785168075,-9.370852262958776e-05,-0.007543582803815346,0.09997601495501374,0.03461822708922162,1.0372723427048922,0.0043827693418705335,-0.000462475943416075,-0.026544406504437474,-0.0018193837019278086,1.1861776510939581,0.17479866950036774,0.002031817600956823,0.00011662623754995824,-0.015351489368037487,0.03226209337401085,-0.09030355706588687,0.6400712045246174,-0.008922908442937994,0.0017719353161797867,0.01136357690883469,0.0024663589327963676,-2.3711485175253886,0.8751837826735628,0.010565764773838124,-0.00044110128091769986,-0.03525555504023795,0.17913564638664303,-0.05323779964789531,3.932429432965779,-4.36885719466028e-05,0.010822724663589597,0.06259191973832548,0.007274817029252843,0.8841682193104737,0.15354926766981788,0.010935369061701759,0.0008444802664349042,-0.028608135863521685,-0.031738504290654876,-0.04264018690857402,0.6374045557788042,-0.00420364407079798,0.009408426378468143,0.2350621056070462,0.007818098382298749,-1.5060757474001618,,,0.48205128205128217,1.0961538461538463,0.5,0.02564102564102564,0.5961538461538461,-0.09615384615384616,1.1428796032483948,0.01700898063954052,0.023624365254925134,0.9165930787092791,0.18991717976967762,0.29087418734393816,2.059472681957674,0.4807913671136158,2.0091581691107185,1.6087333352163178,0.10734677974440299,0.23870719458561354,0.0,0.4004248338943995,6.702374620578327,1834.0,492.7634000000001,236.0,464.44444444444446,13524.06808968956,7216.970270000001,120.064887813356,498.84510000000006,319.07724622770917,625.2741129999999,16662.068177221947,2145.0,523.3748,294.0,414.33333333333337,12302.899109881004,8067.884441,153.43437762999997,537.0285999999998,212.13425925925927,649.8981239999999,21279.310600819714,2806.0,940.1960000000001,473.0,659.6666666666666,24035.2970443159,10162.922510000002,222.97065812837602,956.5848000000001,451.53086419753083,1180.2331860000002,30153.47807081451,2986.0,1215.139,538.0,639.0,32927.57329537785,10589.430878,253.171576436997,1230.742,515.7962962962963,1542.32258,33543.71676545381,3149.0,1237.019,559.0,672.6666666666666,33376.05320718571,11215.181581,266.050418091846,1254.7662,540.280864197531,1572.1728560000001,34979.03001193371,3216.0,1280.5620000000001,567.0,624.3333333333333,34378.33874103143,11382.57999,279.93903017844997,1300.1216,556.7098765432099,1627.230836,36702.74538808812,3320.0,1373.545,579.0,603.3333333333333,37064.799575631,11624.162791,292.77600182184597,1394.0694,583.4367283950617,1750.5137419999999,37703.9336303993,3207.0,1398.021,561.0,582.0,38824.86257140278,11215.586083999999,282.90604861427903,1416.9889,586.4891975308642,1790.564258,35974.82235246104,2966.0,1297.0600000000002,503.0,503.33333333333337,35670.12783198371,10266.960694,260.43685184294,1313.6238,615.7916666666667,1657.591158,32829.076160838464,749.6626506024094,9.002624096385537,1.0953465665900284,44.72289156626506,289.0174029451138,116.18100245775464,3482.224189951807,21.999243551817873,8.641195180722885,114.96940643231363,5.596395879518069,4311.889690920298,147.03222528668886,0.04122833502686407,-0.46751400990173936,16.247641167077948,95.81350300801599,-17.23832895876763,637.8080240373057,-1.7747810611436583,0.3839615619103053,-17.60542924088639,0.4667698703730563,-17.71609908647845,-5.177239076789142,2.812600783858336,0.10910935449671452,11.963274785890551,152.29681779326145,-11.858070592649042,-1.584395042531881,-3.375790194584666,2.5872680359994336,54.960585885611955,1.4621829960807053,-75.41211116868283,102.92553345913774,-2.108562839309033,-0.3244275864349864,15.307591813035271,68.00675795551686,35.02858878226843,499.589240455799,6.4190218519032705,-1.635242371897218,-12.27142928897403,-1.5336778243576739,1147.4473007049141,125.22296414573955,1.3535802874147247,0.1408887784713556,3.8062128030193065,97.21856099095174,20.147338393482492,604.1361155309913,3.285090642603147,1.4432085208303147,26.628713687114963,0.5827297130207562,885.3392183727739,47.33981709972417,-0.2644003483814723,-0.020334749410620544,-1.63695746842793,21.69479524523798,7.512155278361091,225.0880983669616,0.9510609471859057,-0.10035727972128827,-5.760136211462932,-0.39480626331833446,257.4005502873889,40.90288866308605,0.4754453186238966,0.027290539586690227,-3.592248512120772,7.549329849518539,-21.131032353417528,149.77666185876046,-2.0879605756474904,0.4146328639860701,2.6590769966673173,0.57712799027435,-554.8487531009409,210.91929162432862,2.5463493104949877,-0.10630540870116567,-8.496588764697346,43.17169077918097,-12.83030971514277,947.7154933447528,-0.010528945839131276,2.608276643925093,15.08465265693644,1.753230904049935,213.08454085382417,33.93438815502975,2.4167165626360885,0.18663013888211383,-6.322398025838292,-7.014209448234727,-9.423481306794859,140.86640682711572,-0.9290053396463536,2.0792622296414596,51.948725339157214,1.7277997424880236,-332.8427401754358,0.7244231181746325,0.634357260968636,0.4573381296934394,0.39451822272126486,0.302873074271455,0.21712140754226042,0.18327071018803145,0.10917603632884154,0.11536557314051939,0.05805849976670701,0.07454887821241137,0.03236335789665629,0.047404744276911874,0.017692811744567303,0.030570831423989597,0.009895051171547013,16.01333295633892,5.673465752119235,3.5812652682534836,2.1724133800119563,0.4429486091385594,-0.5350172198499107,4.038034926001261,0.9681536735939557,6.0247262101513686,0.615889072889647,14.54363175745168,10.318100166717072,32.066649282518384,11.68512190802245,2.955925293660675,0.7509219620323634,3.537281585169795,2.222184173257043,7.014583836961155,0.2992508659196252,3.7685848359044827,2.4181733298127943,24.442366748310004,14.700827054970407,0.22322391064566074,0.48742494806370673,0.7025794309325106,0.7960227443421243,0.8249508479894485,0.8401070786590973,1.471508458421923,1290.5105484105763,0.0,0.0,7.0,0.0,12.0,8.0,3.0,0.0,0.0,4.908490570077964,3.17272790267016,1.7591940167370037,1.1452849400718268,0.955231476086075,0.8556572290199256,358.016520730277,2723.4471432609243,68.82638751198635,32.81261618386656,65.209146440241,,20.0,1276.0,10.023291153407584,13.212334168400758,5.783244946364939,46.571484620497955,50.90201510331106,25.683286491704038,30.33183534230805,12.13273413692322,30.39321619437444,9.154013890853395,18.800000000000004,42.75,19.5,1.0,23.25,0.0,0.01794871794871784,-3.75,0.108934854462096,0.035647745621662064,-0.07328710884043393,0.013141025641025705,0.130149068322981,0.0,0.5469879518072273,0.8256410256410254,0.43805309734513126,0.5113402061855652,0.8124999999999997,44.5723045266874,0.6633502449420803,0.9213502449420803,35.747130069661885,7.406770011017427,11.344093306413589,80.31943459634928,18.750863317431016,0.583850931677019,0.15957446808510634,0.04432624113475177,0.23404255319148934,0.5161290322580645,0.3059491832190987,-0.9032555776662272,-0.044085511320095035,-0.010882597321279849,-0.03474059914100876,0.6940508167809012,2.0490503188962776,0.030524546816533785,0.024687353239714185,0.03594825120870663,-9.90678437101228,0.9291081081592101,0.7272940893696118,1.4563572768309663,0.9275418356997971,0.5492669673197769,1.4368409094873649,0.9300215702850395,1.3613068941862336,0.7025358512104397,0.7114217933596908,0.6360502734338901,1.1560361926893326,1.046543852863991,0.8002101265823441,1.1278708853665111,1.1060223164627363,0.7613660161344111,1.1953666006020176,1.0389439361998054,1.1717283326244556,0.8020403372250188,0.5100436912621662,0.8140000194609177,1.051704954070966,0.8345780068962434,1.217086097358001,1.3574441290540593,0.9077686570317782,1.0158904577875911,0.8897334850693768,0.8434525846478839,0.7877482920549483,1.1810081644249806,1.004791986381192,1.2336328772322152,0.861932580592106,0.882910689137629,0.9530146370689629,1.1598844589716915,1.10098503753506,0.9430935247398046,0.9551153311580171,0.8850977613439008,0.9200286583325226,0.9411333243060882,0.7493926106687187,0.9720053946781138,0.917236557372548,0.87329603366095,0.9730894494265081,0.9599997059861012,1.0815191482599713,1.008491458338278,0.9997230555570917,0.8826482376304061,0.9492274251771524,0.9656826816246187,1.0406444952046192,0.9881822239393677,0.9858988256570427,0.870152077466211,0.9457865862165253,1.0708347095720192,1.0068650069997054,1.000698816999258,1.0587838816025723,0.8846535683022364,0.9960848444428976,0.9478559823854539,0.8191470899268579,0.9428071526199698,1.054210293231247,0.7888250756793607,0.8271856993011095,1.0576824159817078,1.0460914025611674,0.9467141817321909,1.0077297230486184,0.8023727530464563,0.9332060632275149,0.8272340002663305,0.7582057305264672,0.8084691624810826,0.9719963539688026,0.9656349451409648,0.938191512822694,1.0833327431520554,1.0080172901388673,1.0376675203261096,1.0150033050907359,0.9682399337111078,0.9954083634808312,0.942927109521498,0.7993350790835911,0.9335813222720569,1.0132219084982441,8.0,0.2553841444750536,3.333333333333335,2.729166666666667,2.080555555555556,1.323611111111111,1.0801360544217686,0.8168934240362812,0.45655391786344157,0.3571913580246914,7977.510839233606,9256.518181204798,3980.778385587204,3543.006809961882,18.04321157019894,0.4527036792498432,9.87498330688654,0.8271637540507139,0.0,0.5161290322580645,1.4665488612689606,3.2023115286767645,4.615845414609921,5.229754491275098,5.41980795526085,5.519382202326999,0.1951219512195122,0.006720635380922463,0.06060606060606062,0.04873511904761904,0.03526365348399248,0.022060185185185183,0.018623035421064974,0.014852607709750566,0.009317426895172277,0.008504556143445034,0.41980523109272483,33.50148720999405,17.197355371900827,10.97081755402094,233.51404614189258,0.0,4.56122808552641,323.78289927684324,,260.1230884469051,263.2664977515015,266.3997677946155,260.16354587660993,344.15944995093463,265.17435872898534,265.9792973300168,312.8658544663099,0.1915163352474158,0.00447183578083717,-0.41677556143548733,0.35474771805273825,0.3237143047088031,-0.14488359424065042,0.1788514301319347,-0.07877641350175432,0.04338834667855903,-0.14952833436697102,0.08144296073867814,-0.004011987999747774,-0.003698100765106462,0.16729592828740367,0.05334046893174804,0.14324075361512792,0.28217155332854416,-0.05465442205552797,-0.00024364255264357735,-0.08217015265607934,0.160329708353166,0.2559855547137165,0.1399070808536033,-0.009365260268946522,0.05586054614060598,-0.09529395605414931,-0.12050752011155445,0.13925952924273155,0.09573615963968128,0.12266917557409025,0.05837195961702393,0.11871593881662598,-0.07699388642614517,-0.04342709562241565,-0.11149968357275804,0.10827122029656905,0.06633609644983182,0.059709950430842616,0.05108067866591775,0.033798310922290055,0.1335847864371344,0.06886750793294132,0.06889851746207099,0.05930228335991516,0.06632649928498996,0.09198133429583792,0.04135143079999297,0.08154059330422236,0.024153443734320112,-0.011233401071311303,-0.0071007730479944985,-0.013999930478309244,0.028711105825146393,0.02473134839278202,0.024723739698591193,0.016535561985048106,-0.004442152098261372,-0.019163234883407005,-0.02698323179971538,0.0228328533654546,0.019353091096204457,0.018732411691733737,0.008837365279540427,-0.028490412245800175,0.009265025990671649,-0.06451308800846325,0.015256315239220278,-0.03366485756746191,0.017019709446097594,0.00820372056098732,0.03657850442126457,-0.045642477211100124,0.09689725625724303,0.09741142880559173,-0.03342449543631261,-0.06542982722850195,0.051444163910485854,-0.038033217800664425,0.09373079535716992,-0.00016483073443079326,0.10395392399906303,0.04518705888370018,0.10789261989807317,0.017019443321405182,0.017000432402966406,0.10081900814737478,0.06399058001551336,-0.053093062490248075,-0.009114661709920022,-0.030462256638717954,0.015192754757806943,-0.015859747952442722,0.0903693728796818,0.16969866480846035,0.1159500113467091,-0.028990604118987434,27.367974977098143,27.072451884293834,10.368304557571195,15.046753875247237,31.838416547470942,38.20837396839032,39.8227371414352,40.37951617995577,40.479887020998454,78.35716859531802,62.74060007343639,4.1865244100317165,9.309580588838928,0.0,15.616568521881579,20021.202483821125,15960.61422060987,5514.926041968549,197.0,55.0,67.0,89.0,112.0,128.0,153.0,176.0,181.0,556.2970935080011,41.0,5.262690188904886,6.07993319509559,6.953684210870537,7.803435056952168,8.692322277628687,9.561208488881128,10.459353461311817,11.341318303493475,12.245884530061064,0.6024096385542169,0.9656867469879519,1.1287328495709794,0.5584860464253149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6508829954548733,0.9530356721001655,0.9950464640791864,0.5927372179538428,7.0,0.0,0.0,1.0,0.0,2.0,5.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,12.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,14.053923621703873,17.09277939380059,5.783244946364939,10.023291153407584,0.0,9.51663204852391,8.417796984328938,0.0,0.0,40.0336764678499,81.23736878276046,29.602640009683938,18.426102639721318,282.232417037557,-833.2364290210675,-40.66806220984967,-10.038993120735755,-32.04755496234876,640.248937767834,1890.2107142398568,28.158325302136674,22.773623063130803,33.16159147789223,0.5,0.8609303429953146,0.16717429586001192,62.18661186453686,0.07767461207308883,7.129557293521692,0.13906965700468552,10.0,0.43902439024390244,0.23004545729674125,0.5023202700410869,0.7240497042125245,0.8203485715805447,0.8501606952595346,0.8657800883846233,7.0490000000000075,,2.1607142857142856,1.7753167695229957,1.2292696050370093,2.156686954890782,-6.023697027024913,1.6276009791921666,1.594356091478482,-2.476042771605518,159.53499999999966,22.366348059254154,0.0,4.899909730850478,0.0,72.13778458247995,37.21901523021414,59.3517198814997,0.0,5.749511833283905,4.418840607796598,0.0,5.713732805509369,2.3978952727983707,7.1891677384203225,4.844187086458591,8.757626411267408,7.050122520269059,10.383534330109535,50.00000000000001,12.264205098983592,0.0,0.0,6.059629770339514,0.0,1.1723653885206085,2.7909150509425054,0.0,80.152,0.0,37.178147966765295,0.0,0.0,-3.448715756560372,0.0,0.0,-0.1477789075759508,93.68482651439129,9.458957818252138,5.687386274683562,5.749511833283905,51.597872027306394,16.444112776333593,0.0,87.3986505458942,46.881720416284615,0.0,10.969244356107037,0.0,46.354341853301136,54.023288622754485,48.94269304833657,647.5657985536865,,520.9409460837841,526.4419536173866,532.7364961223061,521.0225952065266,690.1189978810326,530.265250741089,531.8768328091885,626.3665916945699,48.94269304833657,647.5657985536868,,519.0018435196816,524.7576787334797,531.5702659841941,519.0871069136758,694.3425969288942,528.7211164787789,530.364238568555,628.2077517042253,4.898097064359286,488.8671385568857,,395.82720769927124,397.2057060866765,402.92812751303666,395.89518753999005,532.6905291488303,400.3052843884233,401.7593643965703,476.0004971577772,1.2549408473932455,16.60425124496632,,13.357460155994463,13.498511631215042,13.659910156982209,13.359553723244272,17.695358920026475,13.596544890797153,13.63786750792791,16.060681838322306,2.510978751140858,323.78289927684324,,260.1230884469051,263.2664977515015,266.3997677946155,260.16354587660993,344.15944995093463,265.17435872898534,265.9792973300168,312.8658544663099,79.10196078431373,0.0,7.641822555126865,0.0,0.0,0.0,0.0,82.58885651857247,12.243097421616294,2.4898020167723627,5.978386150742406,0.0,0.0,2.5281232443268853,0.0,0.0,0.0,49.197189090168955,794.1921891993878,121.72355548532373,265.79185688017145,383.1151694126234,434.0696227758331,449.8440602866505,458.1087227931409,1238.0,158.39982971319935,128.28916560600334,89.75510677262925,97.22999999999999,88.85,1.0,9.23094537336259,6.357552004618084,4.223849257361611,6.131293355044929,,6.1159102188596695,6.112795647273126,6.115307178573808,6.115916215831356,6.118014158340841,6.11291629116904,6.1130198226287975,6.112045507561008,0.10830382711183617,0.15721265012935715,,0.15681821073999153,0.15673834993008015,0.1568027481685592,0.15681836450849632,0.15687215790617542,0.15674144336330872,0.15674409801612302,0.15671911557848736,2.8017234117251095,3.17438226860135,,3.1718701613791143,3.171360774418959,3.171771554631028,3.171871141931237,3.1722141130722985,3.1713805105122885,3.1713974468775366,3.1712380505809055,446.330000000002,16325.845428647945,278.5917722321657,,279.4390460394805,280.58513696684656,280.33798401039735,279.43816044549817,279.9398941292374,280.5639554422645,280.5091034382298,280.95910707225516,418.6114212473832,7.143378775183735,,7.165103744602064,7.194490691457604,7.1881534361640345,7.165081037064056,7.17794600331378,7.19394757544268,7.192541113800764,7.2040796685193635,11.061481293299066,6.99072408149735,,6.9937607397988355,6.997853750644284,6.996972514113998,6.993757570608996,6.995551469437122,6.997778257250893,6.997582731896961,6.9991856854460925,38.02982233600801,16.204266812938453,0.6072035175566366,1.9880255151992818,1.2202724991312444,12.264205098983592,9.40302751016321,10.48189246657995,-3.448715756560372,538.324632889365,260.35414243880575,-768.6450699165605,-37.515529124652055,-9.26078397489832,-29.563271919867724,590.617707524784,1743.684140539649,25.975530073765963,21.008242657104205,30.590949834028937,6050.0,56.0,3.112676571804556,1.5158023179712283,0.3535533905932738,0.10206207261596575,0.32933293323708024,0.08286284177333592,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.02551551815399144,0.3634023029066286,0.11209677653262319,0.6388155138183156,0.15241314349858803,28.252501608810665,24.739933177776805,18.750863317431016,16.175247131571858,16.658019084930025,11.941677414824323,12.279137582598107,7.314794434032383,10.267536009506225,5.167206479236924,8.349474359790072,3.624696084425505,6.06780726744472,2.2646799033046148,4.6773372078704085,1.513942829246693,4.573574727086511,1.8962748262923639,7.914026944959946,2.8291532873203478,11.835969927932437,3.5088380329232707,132.87135136304408,66.16345292461503,41.02864813862373,33.67214151402327,31.382418478755127,30.417830443283872,192.0,218.0,90.21889199999997,57.417108000000084,0.1927710843373494,199.08,13.5625,8.930555555555554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,83.0,0.0,1.0,85.0,16.0,3.0,10.0,75.0,19.0,41.0,66.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,6.0,1.0,1.0,39.0,8.0,0.0,2.0,5.0,0.0,3.0,18.0,1.0,0.0,0.0,1.0,3.0,3.970291913552122,8.051973102775268,4.54063166485052,5.023057814094813,5.6544609193234905,6.205945687843538,6.59789150147161,7.064298184440328,7.503020420654106,7.715038226994761 +3403,CC(C)n1c(/C=C/C(O)CC(O)CC(=O)O)c(-c2ccc(F)cc2)c2ccccc21,1,22.785714285714285,6.269194642857144,3.2142857142857144,7.571428571428571,162.63433329732993,90.53149902053163,1.474760723679893,6.327078571428572,5.862103174603173,7.772516928571428,218.9018622133814,24.103448275862068,6.342672413793103,3.896551724137931,6.896551724137931,145.18914173853707,91.219705376469,1.8266891911724146,6.487706896551725,3.3668582375478926,7.76764020689655,267.19249456299207,21.02020202020202,6.223979797979798,3.686868686868687,5.616161616161616,150.65943694646248,78.56353540071109,1.600716574149415,6.34469292929293,3.453703703703703,7.690807232323229,228.74069362996468,16.845588235294116,6.18795588235294,3.0661764705882355,4.169117647058823,158.8894250334384,60.69559296707058,1.3856149330575658,6.272481617647061,3.092320261437908,7.7227343823529395,192.86813736800832,16.70945945945946,6.043594594594593,3.0067567567567566,3.9662162162162162,157.16405912922784,60.76879405193513,1.3872309395099325,6.135127027027025,3.3588588588588593,7.58796216216216,189.90651070685954,15.960526315789474,6.048986842105262,2.9276315789473686,3.361842105263158,153.96500466186242,56.31584291996842,1.4340543068413554,6.153194736842104,2.931286549707602,7.586899657894734,192.9691840547556,14.603550295857989,5.902426035502959,2.591715976331361,3.2189349112426036,156.57029405178918,51.54013241816806,1.316553912652775,5.9986520710059175,3.032544378698225,7.465510035502957,173.4245215256561,13.271676300578035,5.878965317919075,2.4046242774566475,2.739884393063584,159.54323497086511,46.26581075796531,1.1969120968783815,5.961357225433526,2.873474630700065,7.4645728786127155,155.43650074136116,12.218181818181819,5.957133333333333,2.1575757575757577,2.587878787878788,164.04035724669578,41.8118142678303,1.079653565104273,6.017560606060605,2.956565656565657,7.569632824242422,140.602775348314,7.6313775510204085,0.16388313137755098,0.020546312766421337,0.6313775510204079,3.988520408163265,1.7813622609366757,36.54222556996089,0.23783472218183035,0.15007844387755093,2.4351969954648522,0.10100186607142855,50.546078772116076,-0.07349577762139312,-0.01341037891449683,-0.01116986966949632,0.21714461646727656,0.9499032371569314,0.020857972818703833,-0.23691215589165868,0.0197618409137262,-0.011899934025334232,-0.29182671631871154,-0.008695566810344814,2.9343857864608016,0.35238868274582563,0.010018528074108426,0.002255521715404058,0.06847814883529166,0.2701376004947436,-0.2180053125128134,1.6429014022251962,-0.010923226466265834,0.009802688878581751,0.22692020831901782,0.006044931186868686,-0.8588308117888857,-0.6886254501800719,-0.029220631377551,-0.0027505666829238107,0.03590186074429771,-0.33437124849939975,0.21345363368437706,-3.11385369761761,0.030434702432448515,-0.027011111944777885,-0.3274559823929571,-0.01672101838235293,3.1990938908578848,0.5894236072807502,0.01665522528268064,0.003628516497420306,-0.07877137341423059,-0.20135824600110308,0.16584401451549197,2.72404687584083,0.026366374316344584,0.01447925399889684,0.3378684807256235,0.013051488175675658,4.477411705048171,-1.6927027389903329,-0.01744990769334048,-0.0033795624242800304,-0.11446025778732546,-1.000268528464017,-0.0675168158197665,-8.019078606835038,-0.02167950135521714,-0.019250459854994614,-0.24682241317579665,-0.007900618421052639,-8.545520803014634,-0.2793065451032482,0.01454996245169665,0.0011863190399238556,-0.08425160004830336,-0.01916284265185357,-0.16917079235238336,-1.4274969419195964,-0.030189358785586925,0.012108453840115907,0.2450004780018515,0.010879509245562103,-5.91245241925157,-0.016596378435767473,0.014300611397015446,0.0003884240905074372,-0.038272679013802074,0.10809396012740351,-0.2431260361378087,-0.10873284224850824,-0.0389658306062901,0.012975065618733015,0.08872721776571899,0.0071050567196531515,-5.977115693634918,-0.137005256648114,-0.008690393282312926,-0.00179145163559822,-0.003022572665429794,0.21689084724799004,-0.1973528656800472,-0.5988664129017706,-0.01885686870253748,-0.006584677643784808,-0.14618184394970107,-0.007047676893939402,-2.2736254777567395,,,0.4673015873015873,1.1666666666666667,0.5666666666666667,0.016666666666666666,0.6,-0.03333333333333333,0.9713580433728205,0.02134829530486749,0.02994829530486749,0.9938215710814505,0.2326837227034949,0.24310843407074081,1.965179614454271,0.4757921567742357,2.012226975374026,1.6488834307485192,0.07508912811277148,0.22944933972238205,0.05880507679035326,0.3633435446255068,7.342581902357155,1276.0,351.07490000000007,180.0,424.0,9107.522664650476,5069.763945149771,82.58660052607401,354.31640000000004,328.2777777777777,435.260948,12258.504283949358,1398.0,367.875,226.0,400.0,8420.97022083515,5290.742911835202,105.94797308800004,376.28700000000003,195.27777777777777,450.52313199999986,15497.16468465354,2081.0,616.174,365.0,556.0,14915.284257699786,7777.790004670398,158.47094084079208,628.1246000000001,341.9166666666666,761.3899159999996,22645.328669366503,2291.0,841.5619999999998,417.0,567.0,21608.961804547624,8254.600643521599,188.44363089582893,853.0575000000002,420.5555555555555,1050.2918759999998,26230.06668204913,2473.0,894.4519999999998,445.0,587.0,23260.28075112572,8993.7815196864,205.31017904747,907.9987999999996,497.11111111111114,1123.0183999999997,28106.163584615213,2426.0,919.4459999999999,445.0,511.0,23402.68070860309,8560.0081238352,217.976254639886,935.2855999999998,445.55555555555554,1153.2087479999996,29331.31597632285,2468.0,997.51,438.0,544.0,26460.37969475237,8710.282378670401,222.49761123831897,1013.7722,512.5,1261.6711959999998,29308.74413783588,2296.0,1017.061,416.0,474.0,27600.979649959663,8003.985261127999,207.06579275996,1031.3147999999999,497.1111111111112,1291.3711079999998,26890.514628255478,2016.0,982.927,356.0,427.0,27066.658945704803,6898.949354191999,178.14283824220502,992.8974999999998,487.83333333333337,1248.9894159999997,23199.45793247181,427.3571428571429,9.177455357142854,1.150593514919595,35.35714285714285,223.35714285714283,99.75628661245383,2046.36463191781,13.3187444421825,8.404392857142852,136.37103174603172,5.656104499999999,2830.5804112385003,-4.262755102040801,-0.7778019770408161,-0.6478524408307865,12.59438775510204,55.09438775510202,1.2097624234848223,-13.740905041716204,1.1461867729961197,-0.6901961734693854,-16.92594954648527,-0.5043428749999992,170.19437561472648,34.88647959183674,0.9918342793367343,0.22329664982500172,6.779336734693874,26.743622448979618,-21.582525938768526,162.64723882029443,-1.0813994201603176,0.9704661989795933,22.465100623582764,0.5984481875,-85.02425036709968,-93.65306122448979,-3.974005867346936,-0.37407706887763825,4.882653061224488,-45.474489795918366,29.02969418107528,-423.48410287599495,4.139119530812998,-3.6735112244897925,-44.53401360544216,-2.274058499999999,435.0767691566723,87.23469387755102,2.4649733418367346,0.5370204416182053,-11.658163265306127,-29.801020408163257,24.54491414829281,403.15893762444284,3.9022233988189985,2.142929591836732,50.004535147392275,1.9316202499999975,662.6569323471293,-257.2908163265306,-2.652385969387753,-0.5136934884905646,-17.39795918367347,-152.04081632653057,-10.262556004604509,-1218.8999482389256,-3.2952842059930054,-2.9260698979591813,-37.51700680272109,-1.200894000000001,-1298.9191620582244,-47.20280612244895,2.458943654336734,0.2004879177471316,-14.238520408163268,-3.2385204081632537,-28.58986390755279,-241.2469831844118,-5.10200163476419,2.0463286989795884,41.40508078231291,1.8386370624999955,-999.2044588535155,-2.871173469387773,2.474005771683672,0.06719736765778664,-6.621173469387759,18.700255102040806,-42.060804251840906,-18.810781708991925,-6.741088694888187,2.244686352040812,15.349808673469385,1.2291748124999953,-1034.0410149988409,-22.605867346938812,-1.4339148915816327,-0.2955895198737063,-0.498724489795916,35.78698979591836,-32.56322283720779,-98.81295812879215,-3.111383335918684,-1.0864718112244933,-24.120004251700678,-1.1628666875000013,-375.14820382986204,0.727871144510815,0.5664944735770386,0.44605514697584603,0.31017442250278454,0.2966141185912259,0.17026412639687954,0.17066146155407583,0.08617160360186403,0.10929145573554938,0.045947257146955245,0.06721758154309711,0.024653426167151223,0.043129575341741125,0.013252209679057615,0.02814404360680888,0.007368715536377322,9.004070574185905,5.667884983031272,4.1077221575164105,2.1676814248574794,0.4341259498504596,-0.461289415800718,3.326198577477877,0.9726629659188138,7.004059488079229,0.9889381992633192,17.424772580286266,10.92837396670949,19.000142646759393,11.679033957800383,2.0238388100897557,0.5458539450058688,3.9886747595484673,2.217616437337427,8.001920953952057,1.2286968614155507,4.00995692338649,2.41356746848255,20.9255492851021,13.304119104373628,0.2501062530884739,0.5883049548616092,0.7923814761945649,0.8822526437577644,0.8940277049522042,0.8940277049522042,1.6962348791098043,1053.0032189227818,0.0,1.0,2.0,0.0,13.0,5.0,3.0,0.0,0.0,4.290188083731716,2.238644594678849,1.000698214594781,0.4555316965058376,0.3841031250772673,0.3841031250772673,126.81267015615691,1725.6880832921033,79.72874997414087,30.815858630216134,64.47432677452586,,14.0,680.0,24.598059686374462,19.39800702142805,18.279883293119866,0.0,27.72375591032351,12.13273413692322,24.284774350590983,24.26546827384644,18.414574047172604,5.106527394840706,14.019047619047619,35.0,17.0,0.5,18.0,0.0,0.0326984126984127,-1.0,0.15655355165321966,0.06579743008314487,-0.09075612157007479,0.050245310245310204,0.1659731943410272,0.0,0.5960884353741495,0.8526984126984123,0.4395348837209298,0.5302910052910046,0.8024531024531021,29.140741301184615,0.6404488591460247,0.8984488591460247,29.814647132443515,6.980511681104847,7.293253022122224,58.95538843362813,14.273764703227071,0.5480268056589728,0.18682065217391303,0.0,0.3851902173913044,0.2916666666666667,0.4036192951195348,-1.0587457169807548,-0.07862661324052904,-0.018906173517513482,-0.055723458788460786,0.5963807048804652,1.5643838751444172,0.04256495401033984,0.027935426341864602,0.04228064527417344,-3.9986606281978823,0.8320989931241967,0.7581439108975245,1.4605410019756102,0.8850574712643681,0.5604137489937475,1.0366487364657038,0.830196148935466,1.0120796787965833,0.7539309506654611,0.7861482972849175,0.7881042813854999,0.9536769723101226,0.8170371608446152,0.6379249530449821,0.7073579076731283,1.1941638608305278,0.8071278825995808,1.140464993672228,0.8200516802023,1.0938626269401712,0.6389284326460039,0.561795663932982,0.6351996423608433,1.0215030333322879,1.040939524731838,1.1041739740040486,1.091644251483967,1.1037581699346408,1.0836476419797214,0.8917080900794677,1.0349502735788843,0.8553268856972589,1.103625842427842,1.0013590921811977,1.086223638860404,0.9066839949883292,0.8430587113939946,0.6464749433855598,0.6395246457907259,1.3243243243243246,0.9949524196406193,0.8421702680083281,0.8465256752896109,0.8977543919380232,0.6652507576992222,0.5687463700041724,0.609091564793497,0.9186761818393253,1.1070566165539202,0.7626655401729422,0.9900910355940972,1.2485380116959068,1.1145708851598137,0.9191874219539926,1.102997954980236,1.1072927876555223,0.8013261224158417,0.7349083651060698,0.743607485458736,1.1737022056663036,0.9328699559995924,0.5158597238083107,0.6310477404266618,1.0447074293228142,0.8225079144613721,0.9696364461187632,0.9370732185874312,1.1353451774749643,0.5503127301774594,0.4554820917049136,0.4741652536391558,1.1402465677953413,0.9388257094523114,0.6373585326368516,0.6337751369413128,0.9576107899807326,0.8212824717036589,1.0348481005158545,0.9422803374419013,1.1582832893260953,0.6599236042041734,0.6518842033316955,0.6279851433748656,1.136445303398085,1.0241239066243244,1.0268932182090882,0.9120830510725902,0.8437710437710441,0.8827417119710054,1.0480753094627488,1.0231858067201645,1.0394370271362026,1.025217821179117,0.9883846687326923,1.0300988368702642,1.0325916973826939,6.5,0.2576349352106928,3.1111111111111125,3.361111111111111,1.9844444444444447,1.07,1.0025396825396826,0.5668579931972788,0.5195578231292516,0.2568750000000001,6018.12228947453,6817.6185616645635,2819.428562447956,2539.8705593810027,13.436766297434211,0.478204493143527,7.011244280681659,0.9164595839938184,1.0,0.2916666666666667,1.5171668383258872,3.5687103273787546,4.806656707462823,5.351823225551766,5.423251796980336,5.423251796980336,0.203125,0.010305397408427711,0.06913580246913584,0.0715130023640662,0.03891067538126363,0.022291666666666668,0.0213306315433975,0.013825804712128756,0.01528111244497799,0.0085625,0.4742815929900643,24.638671875,11.227654320987654,6.292508917954816,174.25887063624566,1.0,4.317038075281098,172.06111665057608,,138.73225062392916,137.78159231904803,138.25431993074454,138.66314157769784,163.89303264252345,138.37255025113865,138.82268775796135,151.97189496156975,-0.009630735359380277,-0.08182891553128946,-0.5436435138742335,0.3439219784047371,0.23815930218453288,0.011709001181902382,-0.0064832437596906945,0.08309064686786061,-0.07929142732212358,-0.1198370057380122,-0.0860931302417255,0.05805367810409788,0.046176287359640196,0.06113214941584149,0.10977744479244167,0.10845832057953267,0.06772877479625168,-0.12238123445939732,0.04495898584720368,-0.045927803838140865,0.06531710101271951,0.09318351194651556,0.059849698050070774,-0.016991047231593812,-0.0902360609963524,-0.17830164173659244,-0.13387154737657056,0.05686274509803922,-0.08383340544404523,0.11982606703037421,-0.08521248087793856,0.12796576611374877,-0.17997995746022166,-0.13446796419459664,-0.16555157872556356,0.06329064427095928,0.07723685577605016,0.10162867369375946,0.17660183307198357,-0.12476112476112484,-0.0504844467108618,0.09309954418159049,0.0745451825484899,0.11086007154240018,0.09647790598568885,0.13874379828607178,0.12922026773689155,0.0885807922951711,-0.22180828135858613,-0.10647775366910521,-0.1644851055612869,-0.18128654970760238,-0.25078686482756296,-0.03790178859198736,-0.21944691331080357,-0.09115364298507533,-0.12826931941472602,-0.1013562408443597,-0.07822249952753664,-0.16906397114485566,-0.03659975453132987,0.08878255089095602,0.057738780354918307,-0.13344091805630273,-0.004804499085082571,-0.0949670912324313,-0.03906431312418622,-0.12693419408502699,0.080680832818304,0.1006080733748128,0.10771592316787602,-0.11697153494156297,-0.002174755255497526,0.08726103337670525,0.018904807637418787,-0.06061773807438553,0.0271012679053036,-0.13648320808703346,-0.002975539681904071,-0.1638357521930704,0.08645522490437985,0.036435334772077416,0.07034579652843694,-0.11825082852781481,-0.01795288671437763,-0.053027991406218354,-0.08719090651272349,-0.004787266605448402,0.05437877334263646,-0.1107876090157401,-0.016388339887925756,-0.07928560022502076,-0.0438749061734492,-0.06002875505428938,-0.06977768993847383,-0.04498124351064386,14.881578523906853,30.43154161424919,11.463593442264607,14.584089239337203,32.5532598474865,40.483291768327895,41.81874818999012,41.89074818999012,41.89074818999012,60.36680926122078,49.466502922455575,2.2526738433831444,6.883480191671461,1.7641523037105977,10.900306338765203,7318.604840428782,5171.311441309305,2569.322262667168,152.0,45.0,58.0,82.0,104.0,120.0,138.0,151.0,153.0,411.1845865320007,32.0,5.043425116919247,5.8888779583328805,6.787844982309579,7.668093709082406,8.581669210600602,9.481206851499401,10.402958960463414,11.314681821832346,12.241512180569552,0.6488095238095238,0.9883571428571428,1.126327226120593,0.6117508403011526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.665971107784431,0.9746498599439778,1.0086489439184267,0.6304906443546278,8.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,3.0,2.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,19.88668183231347,5.817220841045895,0.0,0.0,0.0,4.794537184071822,4.39041504767482,0.0,0.0,36.407855449141934,43.68604720329695,34.62296687070048,18.628754398422615,265.5305364498754,-696.5210077745398,-51.72638435635603,-12.43787513883107,-36.65900040918631,392.3432066060323,1029.1670755175635,28.00236561778484,18.377983491385066,27.815326365339555,0.5,0.7090242111698676,0.1834295295817987,131.40542942922696,0.11645351230302725,32.65996319135891,0.2909757888301326,7.0,0.25,0.2612492018635465,0.6145156229084626,0.8276843368408722,0.9215595219132159,0.9338591957556512,0.9338591957556512,4.628100000000003,,1.4761904761904763,1.718768797739164,1.271489522487394,1.5073514677944337,-6.8455635434019815,1.5553644138686087,1.4477421939878377,-2.461962205776239,115.63440000000003,24.50453441626876,0.0,4.567099647791355,0.0,44.93889124987784,0.0,66.11810549042112,0.0,11.126902983393991,4.174387269895637,0.0,5.501258210544727,2.3978952727983707,7.011213987350367,4.948759890378168,8.617038526385954,7.247792581767846,10.282095206474409,36.333333333333336,14.2322004764608,0.0,0.0,0.0,0.0,2.03216351786608,2.3164341590247983,2.14377107478794,55.348,0.0,10.725386893344423,0.0,0.0,0.0,3.349237528344671,0.0,-1.1136949834009717,63.07432466275321,0.0,4.39041504767482,0.0,38.06391989576192,4.794537184071822,5.817220841045895,38.42488646922969,54.60695665452676,0.0,28.105848022308933,0.0,34.25804705686454,37.29438203592814,37.12570748545223,344.12223330115216,,277.36608854944564,275.4486000515801,276.4238738933233,277.2257930575428,330.11152552539056,276.6414095413527,277.54885936965684,304.7644439917316,37.12570748545223,344.1222333011521,,275.98831077166756,273.8444158403569,275.2371503390017,275.8189316876013,334.63162882844887,275.1897360884086,276.197633321935,306.4057521289157,4.904355076607072,244.90659768509295,,201.58496223444436,200.49304365416788,201.09052421078732,201.52174060874515,230.401224402548,201.17659777298417,201.68099292921048,216.9081895436541,1.2375235828484077,11.470741110038405,,9.24553628498152,9.181620001719336,9.214129129777442,9.240859768584759,11.003717517513019,9.221380318045089,9.251628645655227,10.158814799724386,2.553224997966549,172.06111665057608,,138.73225062392916,137.78159231904803,138.25431993074454,138.66314157769784,163.89303264252345,138.37255025113865,138.82268775796135,151.97189496156975,54.58039215686276,0.0,4.1215554027702295,0.0,13.498317422929825,0.0,28.86000158293594,56.484340859431896,-0.49149328648877666,0.0,0.0,0.0,-2.007213121908289,0.0,0.0,0.0,0.0,35.30747608385916,466.4484117195831,84.96134294624969,199.84777833321027,269.1727756179181,299.7021006308989,303.7021006308988,303.7021006308988,1065.0,139.41027079160943,191.4253313363247,80.18044094559548,82.69,82.69,1.0,9.322375670996419,6.0,4.031955923491837,5.379390349386859,,5.3706713032513305,5.370833258640738,5.368568829341377,5.370879785030871,5.338321053157561,5.370678248051704,5.370564713569787,5.36021071813086,0.13439853078306122,0.17931301164622862,,0.17902237677504435,0.1790277752880246,0.1789522943113792,0.1790293261676957,0.17794403510525203,0.17902260826839014,0.17901882378565956,0.178673690604362,2.4928638877037743,2.781187338463005,,2.7795651992922434,2.7795953543582286,2.7791736494412564,2.779604017108749,2.773523482682121,2.7795664923886725,2.7795453524736127,2.777615576062197,312.960000000001,1251.911313755011,192.0647457533243,,192.89107186947248,192.80997581968788,193.14738811430428,192.8612999937912,197.43580419232987,192.86903005103974,192.90945238425823,194.77847928165014,41.73037712516703,6.402158191777477,,6.429702395649083,6.426999193989596,6.438246270476809,6.42870999979304,6.581193473077662,6.428967668367991,6.430315079475275,6.492615976055005,8.231039002160253,6.356444821316091,,6.360737923783798,6.360317411309354,6.362065855112237,6.360583566336317,6.384025778107512,6.360623646447459,6.360833208852864,6.370475197806737,15.642088497717765,10.725386893344423,29.871908880417735,3.6503198282297316,-1.4273244322216179,14.35580408235066,0.7269275140577443,4.1215554027702295,0.0,382.3878243049054,174.68556790992267,-458.22288250170953,-34.02943009126449,-8.182551473244812,-24.11699381587945,258.1122938924678,677.0619962006415,18.422021083392167,12.090392789297171,18.29897287028761,2476.0,47.0,2.404744206934387,1.0319026755237566,0.0,0.0,0.403665906872828,0.17546438172899173,0.0,0.0,0.0,0.0,0.0,0.0,0.06415002990995841,0.02795084971874737,0.37682350422869504,0.13408070285171952,0.7250915280895781,0.2152390929941518,21.836134335324452,16.994834207311158,14.273764703227073,9.925581520089105,13.347635336605165,7.661885687859579,9.898364770136398,4.997953008908114,8.961899370315049,3.76767508605033,6.9906284804820995,2.5639563213837273,5.175549041008935,1.5902651614869139,3.8838780177396255,1.0168827440200705,4.378153513972616,1.8157792758864881,7.963380696800214,2.781719125290558,12.345697688254322,3.871483110227258,99.16289276361826,53.59981792270284,29.79356976146543,25.41629409081208,25.14434016780796,25.14434016780796,154.0,180.0,62.28161799999997,29.774382,0.26785714285714285,154.06,11.222222222222221,6.611111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,15.0,16.0,56.0,0.0,0.0,58.0,16.0,2.0,9.0,49.0,18.0,32.0,40.0,0.0,0.0,0.0,24.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,4.0,3.0,1.0,30.0,6.0,0.0,1.0,4.0,0.0,3.0,8.0,0.0,0.0,1.0,1.0,3.0,3.7612001156935624,8.130485817467035,4.366278277705742,4.974144185513841,5.658392772357391,6.265182384385125,6.6869332495993845,7.16408575168462,7.607208705185476,7.85646782242306 +11977753,Cn1c(=O)n(-c2ccc(C(C)(C)C#N)cc2)c2c3cc(-c4cnc5ccccc5c4)ccc3ncc21,0,23.93220338983051,6.071093220338983,3.8813559322033897,8.440677966101696,157.6031911713598,94.71595505084747,1.704852556127576,6.176891525423728,4.07403483992467,7.54406861016949,251.7524545332892,26.4375,6.264453125,4.546875,8.765625,143.00687251487042,101.63914639062504,2.0005618614062506,6.4319765625,3.2827690972222228,7.638942937499996,293.0433753403265,24.064814814814813,6.217776851851851,4.37962962962963,7.666666666666667,149.25534196307905,91.98891920370376,1.8374731070707508,6.357109259259261,3.019032921810699,7.630103481481479,266.14165530119504,21.70212765957447,6.158758156028369,3.8156028368794326,6.212765957446808,149.22830215187156,81.16674460283689,1.717617034319815,6.295536170212767,3.1934594168636723,7.595422099290778,243.50683306426578,17.920731707317074,6.1076945121951205,3.2560975609756095,4.890243902439025,156.27800266358742,64.95889006097559,1.4972997072291705,6.21275975609756,3.1438008130081294,7.5986218048780465,206.24237675026745,17.196202531645568,6.00853164556962,3.2151898734177213,4.867088607594937,157.0364725678606,62.644735886075956,1.4472952529678673,6.110389873417722,3.016877637130801,7.528021063291139,198.3405494034429,18.057971014492754,6.023282608695653,3.427536231884058,5.079710144927536,154.737086619839,66.13029639130436,1.5101783500009496,6.135623188405797,2.8933172302737518,7.5261384347826095,208.15841918066033,18.484848484848484,6.076641666666667,3.4318181818181817,5.257575757575758,155.78941601002379,67.77624625000001,1.5368068602544243,6.185578030303031,2.860058922558922,7.562939848484849,212.54076712542943,18.33582089552239,6.017842537313432,3.328358208955224,5.052238805970149,154.49516070002787,67.49243648507463,1.4953566913655223,6.130538059701494,3.023839137645108,7.5189660597014925,206.7460336774108,6.5475438092502145,0.07689543234702668,0.01092096392077922,0.7141625969548981,3.7339844872163166,1.6235237188736762,31.37917702614191,0.22643401696609364,0.07515420856075837,1.0803528679498227,0.040183404768744595,49.86202100652137,0.43338839413961394,0.002971225491956472,-0.0064906441210643255,0.31735223355357634,1.4384201738006328,-0.25918638475974565,2.041400558339022,-0.008156102983941343,0.004165097583309502,-0.022652920915924555,0.0002839585787129917,0.19585792548331377,1.028570440592848,0.014881419504825232,0.001238852825851314,-0.03321469990530598,0.4813325247108641,0.2258523412071602,4.918611030669136,0.03669739359099207,0.013995446178726924,0.04103214111762501,0.008416251226233396,7.742301261376139,-0.390313372899693,0.0008544294152044072,0.0005270309659646111,-0.08536105830842607,-0.3280462734887055,-0.29476158934301905,-1.9498475563739086,-0.037470079550208674,0.0007016154565514361,0.010684549741940304,0.00016425384406941202,-6.573369912362774,-0.9742697290517864,-0.013485696919163888,-0.0007707486865922488,0.02085187183385767,-0.48326104777853296,0.00020758899359169376,-4.621452464132818,-0.014775611566579597,-0.013456130842693034,-0.1653577195873223,-0.006390699518641279,-4.630122228449486,0.19575162091498524,-0.002023194629798644,4.2000180871669385e-05,0.029669198797086526,0.030765566420241513,0.06097120420590755,0.9687662750809996,0.012560187445813019,-0.0012975469001705459,-0.013291525605547663,-0.0012503286048312935,2.64218466635362,-0.058474784440586444,-0.0047620498857149805,-0.0001074799342108786,-0.008070727635320499,-0.13351777142167212,-0.14094378256717138,-0.26513950145510323,-0.0057096190988406405,-0.003761307553634834,-0.0726680921644575,-0.0032565808925471215,-0.7418136120256466,-0.26608515491020535,-0.0017158226911458282,0.00022410085342431402,-0.03427045519834945,-0.06141129769397508,0.2334031340630653,-1.2541124386996936,0.005744234711609861,-0.002526409382535462,-0.031649021576484956,-0.0003177350204138569,0.04752178309774483,0.40426494359572435,0.006209943317025906,-0.0003921479092979132,-0.1051314813464993,-0.08473075587303361,-0.22016930017281605,1.8613173223276043,-0.01723652216060275,0.006964144588748301,0.08654744686030731,0.0019219911331020809,-1.197560101447182,,,0.48148148148148145,1.5138888888888888,0.8611111111111112,0.013888888888888888,0.6527777777777778,0.20833333333333334,0.8109557760499584,0.015135326024001867,0.0294686593573352,1.2566258398678147,0.2869763245953647,0.19550539277988607,2.067581615917773,0.4824817173752508,2.0858454547424152,1.7501665218937477,0.28589752603981333,0.04978140680885392,0.0,0.3356789328486673,7.952377294169503,1412.0,358.1945,229.0,498.0,9298.588279110229,5588.2413480000005,100.58630081152698,364.43659999999994,240.36805555555557,445.1000479999999,14853.394817464063,1692.0,400.925,291.0,561.0,9152.439840951707,6504.905369000003,128.03595913000004,411.6465,210.09722222222226,488.89234799999974,18754.776021780897,2599.0,671.5198999999999,473.0,828.0,16119.576932012536,9934.803274000005,198.44709556364108,686.5678000000001,326.0555555555555,824.0511759999997,28743.298772529066,3060.0,868.3849,538.0,876.0,21041.19060341389,11444.510989,242.1840018390939,887.6706000000001,450.27777777777777,1070.9545159999998,34334.463462061474,2939.0,1001.6618999999998,534.0,802.0,25629.592436828334,10653.257969999997,245.55715198558397,1018.8925999999998,515.5833333333333,1246.1739759999996,33823.74978704386,2717.0,949.3479999999998,508.0,769.0,24811.762665721977,9897.86827,228.67264996892303,965.4416000000001,476.6666666666666,1189.427328,31337.806805743978,2492.0,831.2130000000001,473.0,701.0,21353.717953537784,9125.980902000001,208.40461230013105,846.7159999999999,399.2777777777777,1038.6071040000002,28725.861846931126,2440.0,802.1167,453.0,694.0,20564.20291332314,8946.464505000002,202.858505553584,816.4963,377.5277777777777,998.3080600000001,28055.381260556685,2457.0,806.3908999999999,446.0,677.0,20702.351533803732,9043.986489,200.37779664297997,821.4921000000002,405.19444444444446,1007.5414519999999,27703.968512773048,386.30508474576266,4.536830508474575,0.6443368713259741,42.13559322033899,220.30508474576268,95.7878994135469,1851.3714445423727,13.359607000999524,4.434098305084744,63.74081920903954,2.370820881355931,2941.8592393847607,27.736857224935292,0.19015843148521422,-0.41540122374811683,20.310542947428885,92.0588911232405,-16.58792862462372,130.6496357336974,-0.521990590972246,0.2665662453318081,-1.4497869386191715,0.01817334903763147,12.534907230932081,111.08560758402758,1.607193306521125,0.1337961051919419,-3.5871875897730465,51.98391266877332,24.3920528503733,531.2099913122667,3.9633185078271436,1.5115081873025078,4.431471240703501,0.9089551324332068,836.168536228623,-55.03418557885671,0.12047454754382142,0.07431136620101016,-12.035909221488076,-46.25452456190748,-41.56138409736568,-274.9285054487211,-5.2832812165794225,0.0989277793737525,1.506521513613583,0.023159792013787095,-926.8451576431512,-159.78023556449298,-2.2116542947428774,-0.1264027846011288,3.4197069807526583,-79.2548118356794,0.034044594949037776,-757.9182041177821,-2.423200296919054,-2.2068054582016576,-27.118666012320855,-1.0480747210571697,-759.3400454657157,30.928756104567668,-0.3196647515081858,0.006636028577723763,4.687733409939671,4.860959494398159,9.633450264533392,153.06507146279793,1.984509616438457,-0.20501241022694625,-2.1000610456765307,-0.1975519195633444,417.465177283872,-8.06952025280093,-0.6571628842286673,-0.014832230921101246,-1.113760413674229,-18.425452456190754,-19.45024199426965,-36.58925120080425,-0.7879274356400083,-0.5190604424016071,-10.028196718695137,-0.4494081631715028,-102.37027845953922,-35.12324044814711,-0.2264885952312493,0.029581312652009452,-4.523700086182128,-8.106291295604711,30.80921369632462,-165.54284190835955,0.7582389819325017,-0.33348603849468095,-4.177670848096014,-0.04194102269462911,6.272875368902318,54.17150244182706,0.8321324044814714,-0.05254781984592037,-14.087618500430906,-11.353921286986504,-29.50268622315735,249.41652119189897,-2.3096939695207688,0.9331953748922723,11.59735787928118,0.25754681183567885,-160.47305359392237,0.6951769105454565,0.5618672232394004,0.4236424835490007,0.28653760455008354,0.265206324724268,0.15486043757313941,0.16948279313936052,0.07790904897110083,0.10254090906564525,0.039148431917032836,0.06433161982594642,0.020235514383923202,0.040266093588851,0.01051971758932194,0.025591609539078176,0.0054925023765730685,8.022404315979417,5.662534878059799,3.5472280810052106,2.1595338207760824,0.47904596460843996,-0.42666040517856807,4.023147550733021,0.9113877518916567,6.022396257097526,0.9925323879089176,14.56443856457492,10.926277007608828,16.010119110262426,11.675931423103947,2.0328886374897976,0.746111764484259,3.4935849890859045,2.2085565516009855,7.008283711788883,1.1889592353061198,3.7056486758769243,2.403946764076879,20.931700008268237,14.702671801103323,0.22578838080993271,0.5401409658353834,0.7179523033347028,0.8493742078842125,0.8708222880116405,0.8708222880116405,1.1633721203523437,1903.2021789838595,1.0,2.0,2.0,0.0,17.0,0.0,5.0,0.0,1.0,4.455225141220401,2.4679107022475364,1.3438002121210895,0.5129603814659394,0.3773671611269567,0.3773671611269567,144.58049067299123,1564.9271674329784,58.779295062452334,26.524189278525057,53.77606345824729,,17.0,1024.0,5.41499046939678,10.056428738810308,5.689743398203474,0.0,55.216992049169185,0.0,22.378714849872974,74.64162158714882,34.23627956007152,0.0,17.333333333333332,54.5,31.0,0.5,23.5,0.0,0.018518518518518552,7.5,0.1440216764671977,0.07902629559880092,-0.06499538086839679,0.0,0.09421454112038119,0.0,0.5909604519774007,0.7768518518518515,0.44693877551020295,0.5119341563785997,0.7768518518518515,29.194407937798502,0.5448717368640672,1.0608717368640672,45.23853023524133,10.33114768543313,7.038194140075898,74.43293817303983,17.36934182550903,0.6197854588796188,0.12884615384615386,0.028846153846153848,0.3634615384615385,0.13333333333333333,0.398115139838204,-0.8780773581650037,-0.04985287390092627,-0.014882667087542432,-0.039912607189318355,0.601884860161796,1.3275090923323543,0.032989842014211276,0.022500154107328037,0.035878624117090654,-7.84030444551575,0.692053406897157,0.6635727699936114,1.6118181024177878,0.6667462791633145,0.41753178373595945,1.1788103045589957,0.6961321626441334,0.9318872014894768,0.6387653684294821,0.5276358989699783,0.6837861308918591,0.8448817627712539,0.691618972868973,0.666320127197765,0.9972609745188219,1.3255266529602812,0.8044399993161342,0.8979623667111045,0.693092843313761,0.75463212607249,0.6594302837965202,0.49162349091763624,0.6346263989618687,0.7329863306507388,0.9258658008658011,0.8669130533542658,1.0354903783430112,1.181259022155275,1.0148080610328485,1.1874214665517113,0.9293150548189735,1.0960165740396537,0.8576832337453015,0.7537079499619566,0.882201831977492,1.0360720848290368,1.121933294951588,1.3025012567664238,1.2424355796542812,0.881301140042776,1.118902908139714,1.0229168686090608,1.1182985364284028,1.0157081666631675,1.2779758908838654,1.355558812590353,1.3243998746345547,1.0339749666412592,0.9782882401553288,1.123938333599654,1.0543114678185104,0.9060561931627238,1.0155939277902541,0.9389028543365593,0.97583979514033,0.9343129279924639,1.102512197970089,1.1341592239020792,1.1788070117227205,0.9342637713643449,0.9797205096118141,1.0742387491291692,0.9985526162279458,1.0174192871384098,1.0235147659283146,1.0623816603870593,0.9787896044330745,1.0044409572641098,1.055312675310229,1.0397490547523476,1.126473611069626,0.9865647224146407,1.0020734282097918,1.0430257537209862,1.1523990615870339,1.0323813354786804,0.9892617512251304,0.8754105802105114,1.0007451113324974,0.9313095441175373,1.0409857914156264,0.7422901696088264,1.026769783228842,0.9501169708060421,0.9114866829419069,0.920952954905827,1.2796175790414173,1.2070130041666165,1.027543847159035,1.101414790635799,0.9136146358812736,1.0601620001335785,0.904986533367949,0.8740015865143963,0.9893110575655963,1.0013693303402758,7.5,0.3411937557392103,5.555555555555557,3.111111111111111,2.605555555555556,1.7055555555555557,0.866984126984127,0.9071357709750567,0.6979481607457796,0.42156635802469145,7756.646761933175,8449.949375348853,3524.4113143828235,3291.156910075729,14.84318867655806,0.4479628053880787,8.193992236102549,0.8114721431098384,0.0,0.13793103448275862,1.4274179081414402,3.414732347114305,4.538842837240752,5.369682667895902,5.505275888234885,5.505275888234885,0.18292682926829268,0.008529843893480257,0.08960573476702513,0.04508856682769726,0.042025089605734776,0.02940613026819924,0.016055261610817162,0.017115769263680313,0.013168833221618484,0.008603395061728398,0.4525254537882737,26.234384295062462,10.525494276795005,4.816058578462315,207.25744481737055,0.0,4.547016456226835,230.96170306761482,,163.54913715108776,161.59828866903092,159.91868496721753,163.56578370118325,190.36246735142052,162.71901608074242,163.6669154471732,182.32071496008925,0.0661909880659879,0.03863981775338,-0.5943288676848968,0.4443697204344324,0.3852239286813358,-0.15964434750578013,0.0650558985864523,-0.036019777828534674,0.055420683193573,-0.020968075883311,0.007066563432023063,0.0039279981342452575,0.15709256334256336,0.19352800355768662,0.1134380476703306,-0.04650859628735725,0.12890587155858732,0.13911243709075335,0.1567476108940478,0.1620666103206885,0.18622305319618015,0.0379803139649098,0.20944594602346175,0.15527451766071687,-0.05961218195260756,0.011111575670039722,0.04825864912545256,-0.11952608365713237,-0.08785421434175905,-0.18155668803379768,-0.06213826305098747,-0.16547902144852847,0.009335677535399971,0.009889870299707068,0.004087603950304673,-0.13183119696458062,-0.14879926846390265,-0.17537708687693385,-0.07057515180741071,0.029197653199379944,-0.12942235015518336,0.0001278632342591885,-0.14727768227581936,-0.06525349752900468,-0.17904693696314336,-0.15305899071765353,-0.15903827849879176,-0.09285869555596073,0.029896954738726913,-0.02631098581601089,0.0038458309336372783,0.04154403902359541,0.0082393396452424,0.03755485891404561,0.030872902570832975,0.055469525357110055,-0.017265126265304822,-0.012302948416077134,-0.031115546629931733,0.052989923252570396,-0.008930796974275247,-0.06192890449232404,-0.00984161608723727,-0.01130096657222472,-0.03575745209407914,-0.08681350381807265,-0.008449536494670215,-0.025215376979756544,-0.05004786326229498,-0.0672632936147605,-0.08104293081406957,-0.014877327413756976,-0.0406389270025634,-0.02231371407605037,0.020520244829114336,-0.04798690850581433,-0.01644658618808488,0.1437633040710913,-0.03996639037585007,0.025368249826482593,-0.03361633940290899,-0.02929507803921978,-0.007907120420542292,0.0009530657229382968,0.06174299178030522,0.0807582859928614,-0.03590781108174681,-0.14720944753305068,-0.02269178036575089,-0.13561200099100437,0.059316957891436914,-0.07612161101741069,0.09266473191741675,0.0801103504492451,0.04783046992068332,-0.02401748018377665,18.979440918937573,36.48535318263596,14.161615016552286,12.315133825618204,32.367958598748565,42.78357275129642,45.926618622630706,46.063296588732406,46.063296588732406,75.09043637072695,63.00599478817492,10.29231093743328,1.792130645118741,0.0,12.084441582552023,9497.540526704272,5880.381178848202,4049.7236302092324,447.0,62.0,89.0,121.0,167.0,201.0,255.0,317.0,389.0,469.1902603560007,41.0,5.332718793265369,6.2324480165505225,7.153833801578843,8.070593539949519,8.997518369733845,9.921081860937079,10.851761330263335,11.779733686570697,12.713363027686912,0.6949152542372881,0.9793220338983052,1.1091340387866357,0.6625960101545334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7280852430731757,0.9686939182452643,0.9975681113977805,0.6904345199695034,14.0,2.0,0.0,0.0,0.0,6.0,4.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,19.102156337477126,4.794537184071822,5.261891554738487,0.0,36.39820241076966,61.3725797935449,29.580415474916855,45.43524449895074,282.47416824613424,-623.0211980991847,-35.3720511497418,-10.559681323714994,-28.319145368144763,427.0546589191255,941.9059693337938,23.407243912710538,15.964507954810063,25.456918090102533,0.47058823529411764,0.8978960853092324,0.13291668372355436,8.04736237344519,0.15099225553989098,36.61032558946052,0.10210391469076754,9.0,0.07317073170731707,0.2426490773218492,0.5804758708731683,0.7715652299748381,0.9128010356634529,0.9358507463464243,0.9358507463464243,5.893780000000005,,0.9642857142857145,1.2140530479292693,1.2993821131665406,0.9617664715096315,-3.6732033552482424,1.0646419828641371,0.9498097657793637,-1.9956176192751696,143.1929999999998,0.0,5.261891554738487,19.102156337477126,7.04767198267719,19.26246486877803,0.0,101.23782403873778,0.0,22.883510570869827,4.418840607796598,0.0,5.802118375377063,2.3978952727983707,7.393263094763838,4.948759890378168,9.07096335550754,7.221835825288449,10.79329056157318,40.99999999999999,27.544246053975566,9.256226609137933,0.0,0.0,0.0,5.2698438734682185,3.650515882852158,3.351267229885781,57.78000000000001,0.0,13.407465839626127,0.0,0.0,0.0,0.0,0.0,0.0,65.43890828841151,5.689743398203474,0.0,0.0,19.102156337477126,12.46266245207397,11.33111286753076,19.410925891078243,89.98462914883731,0.0,49.65354055747219,0.0,39.09316459911747,42.957029341317366,48.11455550210073,461.9234061352297,,327.0507768938684,323.1647054221606,319.8576186438313,327.08406693327066,382.15340267432657,325.39667930525184,327.286211563626,365.4175034387855,48.11455550210073,461.92340613522964,,326.24720546529704,322.1529945488861,318.7748002161926,326.28259487367956,384.3981380580895,324.50947765286514,326.49418381947703,366.63704753945365,5.061558810356228,338.0096293180403,,239.44306898248774,236.58863546566516,234.08058595138033,239.4672793969123,279.258154705244,238.22550186327646,239.61577681587303,267.26064059063697,1.336515430613909,12.831205725978602,,9.084743802607456,8.976797372837794,8.884933851217536,9.085668525924184,10.615372296509072,9.038796647368107,9.091283654545167,10.15048620663293,2.5814036384810204,230.96170306761482,,163.54913715108776,161.59828866903092,159.91868496721753,163.56578370118325,190.36246735142052,162.71901608074242,163.6669154471732,182.32071496008925,57.15294117647059,0.0,5.529598467843417,0.0,0.0,0.0,0.0,58.85651857246905,0.0,0.0,0.0,0.0,0.0,0.0,-0.6094675124162523,9.499419195585162,2.3329507804907985,40.735636678200706,637.0831563257376,84.21765658034498,201.469208479744,267.7917273972044,316.8112774058582,324.8112774058582,324.8112774058582,2125.0,158.0530524265361,72.44567083952202,88.0469669834832,76.5,76.5,0.8888888888888888,10.577044357198753,6.357552004618084,4.618325050966493,5.898676688228521,,5.887143513099734,5.8859694329349646,5.885114673540298,5.887153824416176,5.900761669983967,5.886663739610573,5.887210848505148,5.897712812354637,0.12828680697129147,0.16385213022857004,,0.16353176425277038,0.16349915091486011,0.16347540759834162,0.1635320506782271,0.16391004638844353,0.1635184372114048,0.16353363468069856,0.16382535589873992,2.810965941740235,3.055661881086186,,3.0537047531794106,3.053505302078577,3.0533600717177305,3.053706504675257,3.0560152846489403,3.053623254734748,3.0537161908180863,3.0554984622916503,355.3700000000012,650.2966149500986,265.48662934749746,,266.8170654090743,266.91227906706456,267.04376885600425,266.8164120088633,266.05358756436794,266.85863281739074,266.8113508809665,266.10540808017475,18.06379485972496,7.37462859298604,,7.411585150252064,7.414229974085127,7.4178824682223405,7.411567000246204,7.390377432343554,7.4127398004830765,7.4114264133601795,7.391816891115965,7.758362434957021,6.862498324602858,,6.867497120760346,6.867853907060315,6.86834641872718,6.867494671887707,6.864631590962927,6.867652898542765,6.867475703129899,6.864826346727256,3.351267229885781,22.66369244876406,11.458421955250955,6.203156397122758,0.0,26.24744299155623,3.629753842910131,3.76675618446542,1.7628422833779975,409.4879487532315,200.42356530016187,-442.0514999864095,-25.097489966705876,-7.4923983048543965,-20.093249999382248,303.00759127834715,668.3094377213637,16.608114320556673,11.327278605446843,18.062417235712534,3997.0,69.0,3.074102311607237,1.6881185103387657,0.2041241452319315,0.125,1.0203127570107855,0.36066891341653445,0.10206207261596575,0.041666666666666664,0.0,0.0,0.0,0.0,0.06415002990995841,0.025,0.6060400407668189,0.189023111184823,1.1213438889986134,0.27426541683034605,25.026368779636435,20.227220036618416,17.36934182550903,11.748041786553424,16.442792132904618,9.601347129534643,15.083968589403085,6.933905358427974,12.407449996943075,4.736960261960973,10.743380510933052,3.3793309021151745,8.093484811359051,2.11446323545371,6.525860432464935,1.4005881060261325,7.888064124287845,3.120642208031317,12.208841510134521,3.854508191702966,19.313992809489054,4.928358474810889,112.85090525515467,68.6751077300429,36.500489799039755,27.614150650420758,27.087690575931006,27.087690575931006,206.0,254.0,71.73823900000001,30.211760999999996,0.4915254237288136,421.06,10.756944444444443,7.6527777777777795,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,2.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,32.0,59.0,0.0,0.0,64.0,32.0,1.0,14.0,49.0,34.0,41.0,30.0,1.0,0.0,0.0,30.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,23.0,6.0,0.0,3.0,36.0,6.0,0.0,5.0,1.0,0.0,6.0,3.0,0.0,0.0,0.0,3.0,6.0,4.110873864173311,9.692715943649013,4.838264068155469,5.582556017222057,6.28401754979436,6.980163146061579,7.488179840539788,8.089865836450938,8.672750247903496,9.214751526948211 +65016,CC(C)CN(C[C@@H](O)[C@H](Cc1ccccc1)NC(=O)O[C@H]1CCOC1)S(=O)(=O)c1ccc(N)cc1,0,24.6,6.191118571428571,3.0142857142857142,6.606349206349207,164.22477762205455,97.06292882857146,1.445473938138785,6.247789999999999,4.922532088967275,7.75883132857143,204.2988288147663,27.34722222222222,6.3542749999999995,3.6805555555555554,5.027777777777778,147.25181379083267,103.63585873611112,1.7849513679999995,6.502244444444445,2.8090706447187923,7.834401611111108,253.34799524322364,21.472868217054263,6.341046511627907,3.2713178294573644,4.7338501291989665,155.58217666920348,79.44816300000002,1.496586495496411,6.434314728682172,3.37546655182314,7.856585953488372,205.9588452701641,17.193181818181817,6.147079545454545,2.7443181818181817,3.227272727272727,159.3879490496364,60.78228432954545,1.3043278902989828,6.230902272727271,2.87591189674523,7.744485136363636,169.7429923524255,15.85,6.124304499999999,2.53,2.9066666666666663,166.33447036078408,56.35229605499999,1.142257339480455,6.179584000000001,2.918518518518519,7.76384337,150.66867455354912,19.0,6.438850273224044,2.721311475409836,4.0,161.2160754438771,67.9639131147541,1.276583276643563,6.502568306010928,4.056719287593605,8.02782656830601,175.28961035231615,16.11004784688995,6.260066507177034,2.583732057416268,3.0637958532695375,161.88700996954165,56.47237628708135,1.2255137092452726,6.321819138755979,3.4733150215606363,7.857440784688996,164.33097175012966,15.424778761061948,6.108269911504427,2.4911504424778763,2.6371681415929205,161.20956930542548,54.23327471681415,1.1978078007037791,6.178346902654867,2.944956571615864,7.717063150442478,159.41794631802404,14.449579831932773,6.070676470588237,2.30672268907563,3.046218487394958,163.7108231726046,50.46762110084033,1.152860809239244,6.129424369747897,3.2343085382301067,7.686299420168067,150.08165976481553,9.722448979591833,0.14303234693877545,0.020470926338666012,0.5895918367346938,3.8285714285714287,1.4350242198773095,44.88707231836735,0.2636019562898011,0.1334740612244897,1.9432551755270007,0.09123298387755104,50.14570045027943,1.7247732426303852,-0.00985871598639441,-0.01294590951007414,0.13620181405895687,0.31327160493827183,-0.14185827405305573,7.480439545918383,-0.012931333839512213,-0.0042420175736959526,-0.3518558828995704,-0.00010189062358283548,1.2188249945306175,0.6793228919474762,0.024454220060117198,0.0023595683202395166,-0.061795601961714915,0.28079242032730434,0.03433179709163939,2.9804926231609006,0.013094787686473664,0.020403303116595623,0.32741562421536063,0.016642749345040272,-0.8818837884011063,-1.1094619666048238,0.00032246637291284984,0.0010985214940801168,-0.006718460111317264,0.08964646464646468,-0.2465785814259895,-5.096326935412799,-0.037945705325719406,-0.0010723160946196062,-0.015116243771171012,-0.0013530536827458548,-7.097625578242978,0.6611224489795917,-0.015583346938775465,-0.003313941802440809,0.002979591836734703,-0.09888888888888892,0.1303993660520857,3.261476262346938,0.02627465552708218,-0.01119179693877548,-0.27789697324403007,-0.012631761948979634,6.706985288086482,-1.1739712278353966,0.006263078510092749,0.002058016954107278,-0.06148879223820675,-0.028536733454766105,-0.10434880546308843,-5.278929662317381,-0.02847128527081543,0.004149693654511176,0.17674012082176635,0.005074807379279442,-3.510677253865729,-1.272141392442144,-0.008397268333170482,0.0020467284852926323,-0.02807440679621131,-0.4875066454013824,0.039662256805123454,-5.7742118274582515,-0.009131999957016322,-0.010136221169807518,-0.13177105463742195,-0.006707742455814935,-3.319110488920179,-0.1964059960267292,-0.021569685750406322,-0.0027990753082380083,-0.017404731804226116,-0.504424778761062,-0.14599359817693894,-1.1067918690626675,-0.01329530237726245,-0.018609585876828552,-0.30125847134986405,-0.012442030780205907,-3.2856982513940114,0.04201680672268905,0.008950510204081642,0.00019156792310247504,0.0076470588235294165,0.35947712418300665,0.02567683875597067,0.14669222208883523,0.003773026650814518,0.007337043217286919,0.23919733737116242,0.007478307659063619,-0.5786216622712435,,,0.4723809523809525,1.1071428571428572,0.4857142857142857,0.014285714285714285,0.6214285714285714,-0.1357142857142857,1.0809148561051531,0.02195169673007068,0.029323125301499255,1.0203090435438407,0.21152837767138516,0.26406888452348976,2.1012238996489936,0.4755972621948749,1.9992253794229673,1.4484350063693767,0.17080535357907348,0.31578522420903454,0.0,0.5507903730535904,7.217495097714299,1722.0,433.37829999999997,211.0,462.44444444444446,11495.734433543817,6794.405018000002,101.18317566971496,437.34529999999995,344.5772462277092,543.1181930000001,14300.91801703364,1969.0,457.5078,265.0,362.0,10602.130592939953,7461.7818290000005,128.51649849599997,468.1616,202.25308641975306,564.0769159999998,18241.0556575121,2770.0,817.995,422.0,610.6666666666666,20070.100790327248,10248.813027000002,193.05965791903702,830.0266000000001,435.43518518518505,1013.4995879999999,26568.691039851168,3026.0,1081.886,483.0,568.0,28052.279032736005,10697.682041999999,229.56170869262098,1096.6387999999997,506.16049382716045,1363.029384,29874.766654026884,3170.0,1224.8609,506.0,581.3333333333333,33266.894072156814,11270.459210999998,228.45146789609097,1235.9168000000002,583.7037037037038,1552.768674,30133.734910709823,3477.0,1178.3096,498.0,732.0,29502.541806229507,12437.396100000002,233.61473962577202,1189.9699999999998,742.3796296296298,1469.092262,32077.998694473856,3367.0,1308.3539,540.0,640.3333333333334,33834.3850836342,11802.726644000002,256.132365232262,1321.2601999999995,725.922839506173,1642.205124,34345.1730957771,3486.0,1380.4690000000005,563.0,596.0,36433.36266302616,12256.720085999998,270.7045629590541,1396.3064,665.5601851851852,1744.056272,36028.45586787343,3439.0,1444.8210000000004,549.0,725.0,38963.17591507989,12011.293822,274.3808725989401,1458.8029999999997,769.7654320987654,1829.339262,35719.4350240261,680.5714285714283,10.01226428571428,1.432964843706621,41.27142857142857,268.0,100.45169539141166,3142.0950622857144,18.452136940286078,9.34318428571428,136.02786228689004,6.3863088714285725,3510.19903151956,124.18367346938774,-0.7098275510203975,-0.932105484725338,9.806530612244895,22.55555555555557,-10.213795731820012,538.5916473061236,-0.9310560364448793,-0.3054252653061086,-25.33362356876907,-0.007336124897964154,87.75539960620446,87.63265306122443,3.1545943877551186,0.30438431331089766,-7.971632653061224,36.22222222222226,4.428801824821481,384.4835483877562,1.6892276115551028,2.6320261020408355,42.23661552378152,2.146914665510195,-113.76300870374271,-195.26530612244898,0.05675408163266157,0.19333978295810056,-1.1824489795918385,15.777777777777784,-43.39783033097415,-896.9535406326527,-6.678444137326616,-0.1887276326530507,-2.660458903726098,-0.23813744816327043,-1249.1821017707641,132.22448979591834,-3.116669387755093,-0.6627883604881618,0.5959183673469406,-19.777777777777782,26.079873210417144,652.2952524693876,5.2549311054164365,-2.238359387755096,-55.579394648806016,-2.526352389795927,1341.3970576172965,-214.8367346938776,1.1461433673469732,0.3766171026016319,-11.252448979591836,-5.2222222222221975,-19.095831399745183,-966.0441282040807,-5.210245204559224,0.7593939387755451,32.34344211038324,0.9286897504081378,-642.4539374574284,-265.87755102040813,-1.7550290816326306,0.42776625342616015,-5.867551020408164,-101.88888888888891,8.289411672270802,-1206.8102719387746,-1.9085879910164114,-2.118470224489771,-27.540150419221188,-1.4019181732653214,-693.6940921843174,-44.3877551020408,-4.874748979591828,-0.6325910196617899,-3.933469387755102,-114.0,-32.9945531879882,-250.13496240816283,-3.0047383372613137,-4.205766408163253,-68.08441452506928,-2.811898956326535,-742.5678048150465,9.999999999999995,2.130221428571431,0.04559316569838906,1.8200000000000012,85.55555555555559,6.111087623921019,34.91274885714279,0.8979803428938552,1.7462162857142867,56.928966294336654,1.7798372228571413,-137.71195562055595,0.7264021281161281,0.5995987991567107,0.4498893020762331,0.3571427034166076,0.3047940787289331,0.2180714898119075,0.190387034706609,0.12378653410949994,0.12285673749202747,0.07457084778916898,0.08135332780167571,0.04398023613972557,0.05155267190473977,0.02603704448793693,0.03161157627200369,0.015290306306727987,16.013124437823326,5.6940991791120865,3.5813353971662174,2.187697428047458,0.4974234735490578,-0.4737480802598803,4.04848750565659,0.9713409258371785,6.02893594424552,0.6449072256879735,14.543591874446474,10.319762427038523,32.06654466253946,11.705114124470343,2.954625589153573,0.7403766547028574,3.5372943427906054,2.241359558929344,7.014582841660761,0.29758683130445157,3.768514082830557,2.4400707662816203,24.441835176215715,14.699962766415018,0.25499440228019343,0.5839002002753528,0.7937452857861678,0.8805642055565771,0.8912784912708626,0.8912784912708626,1.6789202154494742,1040.6316495890258,0.0,0.0,6.0,0.0,11.0,5.0,1.0,1.0,0.0,4.512656754913319,2.427443330544938,1.0970569645638735,0.5466380358070042,0.47871107149038483,0.47871107149038483,209.22067839949432,2632.756042206867,83.88666414170135,37.61080060295524,77.28666196159632,,15.0,857.0,28.26233844124226,18.318861563241466,30.00686872125262,31.742793449561418,5.563451491696996,28.570684265142674,0.0,44.179309741689295,5.316788604006331,15.207393384762284,16.53333333333334,38.75,17.0,0.5,21.75,0.0,0.02761904761904747,-4.75,0.14805280528052778,0.04195121951219538,-0.1061015857683324,0.05880341880341866,0.17310577971646623,0.0,0.5866666666666652,0.8733333333333329,0.43861386138613745,0.5447154471544698,0.8145299145299142,37.83201996368036,0.7683093855524739,1.0263093855524739,35.71081652403442,7.403493218498481,9.242410958322141,73.54283648771478,16.645904176820622,0.5408942202835337,0.16532258064516123,0.050403225806451596,0.26612903225806445,0.48,0.36390086157352686,-1.2464488682232557,-0.06903901769604144,-0.017806412403189368,-0.054193429053185034,0.6360991384264731,2.178794102715434,0.040098404116123636,0.031125630038791905,0.04635732133437092,-4.189342083935854,0.894162818359922,0.8146814763607777,1.7072970954235644,1.114572516441675,0.7380199695964621,1.423914196357696,0.8911784997524933,1.3368783398675548,0.7742366194924776,0.8223130160951273,0.7482669717681609,1.0888129327181366,0.8908553492277355,0.796342412679891,0.8937080882882321,1.4320960821721525,0.9534546260943346,1.1333480543031342,0.8945377080154486,1.0160663894107143,0.8023297932527057,0.6031932579032595,0.7908488931566184,1.0416372061866028,1.2828708209297006,0.9600611615157438,1.034282987249474,1.1541525063721323,0.9321644617819991,1.2626422526729097,1.2629465533070061,1.3087022530245722,0.9671641510425847,0.8575940189297145,0.9792747525494739,1.1617385246128533,1.0708831863979853,1.2454405561179616,1.2709692610553003,1.1703011422637588,1.136268656716418,0.8989841501897747,1.0524969968283813,0.9278022155995794,1.2101071116928785,1.4433827650444775,1.2738399482830254,0.8207674590155335,1.3681487522539268,1.279894153700514,1.1476882382186593,1.3703760448053384,1.1852350270505398,1.1470324274211319,1.3394262334444118,1.255234999499508,1.2587253894446155,1.527531618572982,1.3210315000999004,1.0409029262270242,1.1715106118857945,1.2455978416873448,0.9715387210957397,1.1599020206988724,1.210594753505201,0.9865075003838363,1.164010544767568,1.044710838745347,1.242476697557013,1.5119048416820733,1.2944511778398584,1.0353677737361204,0.9297399188604805,1.2008354690357916,1.1775660205928316,1.0578575432599084,1.1356712015145511,1.0806447888252297,0.9414968757006567,0.9906179640887836,1.1819988612154864,1.3030299057396708,1.207499732926661,1.046403130898219,0.9339809601422436,0.9543027670811628,1.0420637377999302,0.8640278541323071,0.8887991763869727,0.951771040508733,0.9400446093228124,0.9193901504770033,0.9597074910841629,0.82477676140363,0.9334485122346396,0.9820791960165852,9.0,0.2712008978675645,4.000000000000002,2.7847222222222223,2.128333333333334,1.4655555555555553,1.0652607709750566,0.7552083333333334,0.7135377299067776,0.38031635802469144,7878.164096386838,9050.766880148452,3672.3344103592663,3308.717018018507,15.341406766331259,0.4869195924330508,7.871375236319595,0.9490122508127835,0.0,0.48,1.6166262620316474,3.7018396864000285,5.032226052381093,5.582644981137962,5.6505719454545815,5.6505719454545815,0.24324324324324326,0.005895671692773143,0.07843137254901963,0.05569444444444445,0.04092948717948719,0.02483992467043315,0.01836656501681132,0.013020833333333334,0.012518205787838202,0.006914842873176209,0.4998545907905598,29.554419284149013,14.235294117647058,9.356624563289438,206.82012241368045,0.0,4.460734485366404,225.77442736671344,,177.80166485927154,189.78013654795004,191.66852294332128,177.83312733336388,259.9818085730928,191.25366679051075,191.43607951927785,236.89496957859967,0.1774011101781883,-0.06892647850219785,-0.6324046746053485,0.2310103457559324,0.08182467293163816,-0.09885427164789193,0.16665019925697985,-0.04905628934443736,-0.031781587634179445,-0.18106519788588699,-0.00111681783552743,0.024305672940776037,0.0698715820852778,0.1709698581019911,0.11526436474849226,-0.10481081675749501,0.07334130381683322,0.02392419348474457,0.06639979996960756,0.049676367621784255,0.15286343226103952,0.1684882296153243,0.18242031157697802,-0.01758642875625027,-0.11411342645599577,0.0022544996276323464,0.05366252000063139,-0.011395103684823327,0.023415121362882565,-0.17182886393866667,-0.11353663030786332,-0.14395077282356097,-0.008033891265330424,-0.0077788259419258035,-0.014830751173959902,-0.1415400625479433,0.06799958018471873,-0.10894980941231334,-0.16188528782800368,0.005053651782623761,-0.025829187396351583,0.09086910467841058,0.07265958980827479,0.09967549519319999,-0.08384997681273834,-0.14300590923097162,-0.13845608695571593,0.13374995718200422,-0.12074850999986242,0.04378784690412471,0.10053365050803993,-0.10429044027940916,-0.007453624409826968,-0.07271571031185102,-0.11760467746427951,-0.10800862661092853,0.031089888300707472,0.09095054681834842,0.055624700230024575,-0.07000953665701895,-0.13084577714035492,-0.0587088760891612,0.09998221142668658,-0.0476166816550486,-0.12733382529140586,0.027638736862932157,-0.12863863756816013,-0.034643141824701414,-0.07594150561403411,-0.06780944484127584,-0.07352321683151104,-0.0661893334646138,-0.020201288424243777,-0.1508028513273236,-0.1367341790953076,-0.029519967407652465,-0.1317527407211729,-0.10173598198183789,-0.024657252342335973,-0.050437039862654666,-0.13942473695716154,-0.15502774681568227,-0.13637645346451743,-0.06552303032743263,0.004321627895490689,0.06257682542196473,0.009358048577442078,0.012970089385702366,0.09389327870451665,0.017892965428950018,0.003268028287708357,0.014313348443690964,0.05496980574335535,0.12309105895281786,0.08196934202109053,-0.011538809051933767,18.05692549606829,24.171905870472198,5.782513055077154,17.272209358279255,35.65711017597033,41.67825586047243,42.980478529035125,43.04894890906629,43.04894890906629,69.97288827980385,50.69522522292819,5.978187375267572,11.05248284731621,0.0,19.277663056875664,10580.799635174433,9228.13423435377,3255.1710002762884,92.0,51.0,61.0,74.0,86.0,85.0,87.0,90.0,98.0,505.22465684000093,37.0,5.176149732573829,5.993961427306569,6.859614903654202,7.70210434005105,8.571113033405668,9.424887076064874,10.296576389576238,11.157064475395034,12.030927278185187,0.6428571428571428,0.9837142857142853,1.1330878205477912,0.6013892027546179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6509816509837467,0.9696918767507002,1.0083914264904799,0.6033103806228377,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,1.0,6.0,1.0,2.0,0.0,4.0,1.0,0.0,0.0,0.0,25.63070938360932,6.103966387748303,0.0,10.023291153407584,0.0,0.0,13.212334168400758,4.305215991296234,0.0,44.179309741689295,42.16764743463084,25.19772070943472,30.255054621439875,279.70634498066863,-958.0621920719874,-53.06569272003139,-13.686602743885535,-41.65487791617336,488.92702338016295,1674.6938501348795,30.820971421669945,23.924197859069704,35.63178404542296,0.4666666666666667,0.7760081306720708,0.1295357781893351,34.950125087077915,0.11891439606094845,30.394807893660015,0.2239918693279294,8.0,0.2972972972972973,0.26375454642285817,0.6039596599089897,0.821013818169114,0.9108153377326886,0.9218977048103434,0.9218977048103434,2.4028,,2.5535714285714284,2.246698807680278,1.6276533763729586,2.548452712471663,-7.6241731095458825,2.047506119951041,1.9831138848095053,-3.1943618779069727,133.23270000000002,27.792587470841564,0.0,9.622004595302565,5.917906046161393,49.834374725395605,32.03694421801317,60.160755107851486,0.0,0.0,4.31748811353631,0.0,5.631211781821365,2.3978952727983707,7.117205503164344,4.442651256490317,8.684570300824369,6.259581464064923,10.299407247800762,44.99999999999999,15.324931331651765,0.0,0.0,0.0,0.0,0.0,1.43361781245481,0.0,68.85999999999997,0.0,39.36617887352969,0.0,0.0,-3.9041505849482934,0.0,0.0,-0.6691829386075414,79.31614743834538,11.050456081168516,10.481923458755384,0.0,68.47583078689983,25.91783868393369,5.917906046161393,25.831747514004253,59.49278709167226,0.0,0.0,0.0,42.097244192823254,45.568715568862274,43.37506976960866,451.548854733427,,356.2352243828479,379.4318903068898,383.24403712227837,356.2990912169076,522.5234227556139,382.39033323131,382.758838245138,474.7026139794584,43.37506976960866,451.548854733427,,353.9734896889703,377.3135742882199,381.7093925102695,354.0418902430041,527.5877902557318,380.4598274610704,380.88904515374634,476.98430103510634,4.847080843978485,313.73339158392207,,250.48847006281602,267.5367578464924,269.4394193391622,250.53325332384273,371.3981396832344,269.5947753747984,269.8631271373732,335.7547762294839,1.2392877077031046,12.901395849526486,,10.178149268081368,10.840911151625422,10.949829632065097,10.179974034768788,14.929240650160397,10.925438092323143,10.935966807003943,13.562931827984526,2.4236321996789227,225.77442736671344,,177.80166485927154,189.78013654795004,191.66852294332128,177.83312733336388,259.9818085730928,191.25366679051075,191.43607951927785,236.89496957859967,67.87843137254902,0.0,3.802821900475913,0.0,0.0,5.716946359109214,11.19659522759721,70.58739985433358,1.7782035861817287,2.7447959235729797,10.664055351337332,0.0,-2.2917909854639102,1.253644809775762,0.0,0.0,0.0,42.23172664359864,596.4657433538661,113.16383834221531,259.128778048002,352.2558236666765,390.78514867965737,395.5400361818207,395.5400361818207,796.0,149.21239865621266,172.1676250069656,84.15001094050075,139.57,131.19,0.875,7.676415693852268,6.20945336562895,4.386226223013575,5.820747937607234,,5.814593747792933,5.82541104372926,5.8240159115920695,5.81458219251742,5.803816410698978,5.825418376075365,5.825119192613318,5.82188332457389,0.1253207492289593,0.16630708393163526,,0.16613124993694095,0.16644031553512173,0.16640045461691627,0.166130919786212,0.1658233260199708,0.1664405250307247,0.16643197693180908,0.166339523559254,2.7312321955954104,3.0141917335981674,,3.0131338892211654,3.0149925309045913,3.014753011458835,3.0131319019306524,3.0112786715040967,3.0149937895868435,3.014942429988997,3.0143867731806617,381.9400000000016,675.650790861637,235.79875197218954,,235.18770167616088,234.09955393332456,234.431763122329,235.18921736204,236.4251957830292,234.10734817551383,234.12774356445144,234.58966963333123,19.304308310332488,6.737107199205416,,6.719648619318883,6.688558683809273,6.698050374923685,6.719691924629714,6.755005593800835,6.688781376443252,6.68936410184147,6.702561989523749,7.768439329498481,6.715741663845826,,6.7131468943609,6.70850943753687,6.709927525218881,6.713153338919797,6.71839482949443,6.708542731544946,6.708629847565553,6.7106008697867,38.70962706778026,12.664772039088954,13.94139115117019,7.060044099337602,0.012612122392063885,14.550395659358156,-1.2853248381649833,4.667299950652718,-3.9041505849482934,467.8721680431734,214.9916300943881,-736.3985697914536,-40.78806213979859,-10.519979568449338,-32.017329121367545,375.8056248633297,1287.2255750023423,23.690027079991097,18.38893678574774,27.38777819153919,3813.0,50.0,2.9955745142973065,1.9000440351956742,0.16666666666666666,0.04564354645876384,0.7398595981259042,0.3032710350807314,0.16666666666666666,0.03803628871563654,0.0,0.0,0.0,0.0,0.14433756729740643,0.08333333333333333,0.2874574785652648,0.09387348360474557,0.2560943487475822,0.0897490043667982,25.424074484064484,20.985957970484872,16.645904176820626,13.214280026414482,15.544498015175588,11.121645980407282,11.613609117103149,7.550978580679496,9.091398574410032,5.518242736398505,6.996386190944111,3.7823003080163993,4.381977111902881,2.213148781474639,2.750207135664321,1.3302566486853349,5.6108337674581215,3.156361609632538,7.806024099924999,4.25410277791457,11.782758438708987,5.717863108680996,117.14965187648693,55.812379691219896,32.81562716783589,27.738102533777088,27.41651631098881,27.41651631098881,176.0,200.0,76.09975499999997,47.818245000000054,0.37142857142857144,179.1,12.5625,7.6944444444444455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,70.0,0.0,0.0,72.0,12.0,3.0,9.0,63.0,15.0,37.0,57.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,7.0,3.0,1.0,35.0,10.0,0.0,3.0,6.0,0.0,3.0,11.0,1.0,0.0,0.0,0.0,2.0,3.8501476017100584,5.851124312554129,4.3694478524670215,4.736198448394496,5.1298987149230735,5.544200404831736,5.539546385408632,5.6053424018429485,5.599809884273223,5.773580577412973 +598,O=S(=O)([O-])CCS,0,65.08333333333333,7.113100000000002,2.75,10.812757201646091,162.43253700907874,259.76664708333334,2.2125397103537496,7.168216666666667,14.429984790174261,8.851349833333332,237.09827750663916,59.27272727272727,6.4943636363636355,3.1818181818181817,1.7373737373737372,139.70250874123002,230.35800845454543,2.349106994545455,6.763827272727275,1.7257295173961842,8.393642363636367,282.01881798204215,32.8421052631579,7.044842105263158,2.1578947368421053,8.444444444444443,155.19292359627465,121.38814621052626,1.5697567452472632,7.126778947368422,10.999918778427551,8.741047789473683,197.02534173984108,24.952380952380953,6.400742857142857,1.619047619047619,1.8271604938271604,166.88637782562446,88.02699576190479,1.2929832597663808,6.463542857142858,4.192669889171947,8.274242904761902,135.38481870414103,37.5,7.239,1.25,0.8796296296296298,170.42253101927733,139.157865,1.0840777854748331,7.282466666666668,6.146347736625515,9.1952595,147.37645008730695,8.0,7.7,1.0,0.0,185.18427669615002,16.126992,0.534767986,7.5680000000000005,7.333333333333333,9.471168,82.0136306254668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.07638888888889,0.2748749999999999,0.05449623035510778,0.7430555555555554,6.738340192043897,1.8044050202577415,121.35338290972224,0.6749469436785763,0.24254722222222216,7.508267696637538,0.18421383333333327,54.79386581760682,0.6054292929292935,-0.013420454545454591,-0.010257843382944616,-0.22032828282828287,-1.3039967577004612,-0.4891487505749403,3.5401300902777693,-0.22783206984925822,0.0048300505050505255,-1.5868447480155157,0.03054127272727266,-6.0592808916102,-7.3132309941520495,0.15569342105263156,0.012331245468154006,-0.08516081871345028,3.9490109017399457,-0.43000114658841804,-30.95612090972222,-0.1549071915827606,0.1267764619883041,4.252926507818884,0.0875471578947368,-16.663093711042613,-0.3224206349206352,-0.052703571428571475,-0.009497653616220033,-0.08432539682539679,-0.6986576523613557,0.08819061883232844,-1.89940530654761,0.07694172437157439,-0.04983214285714294,-1.3778222342733515,-0.053632142857142906,2.9535749616615696,-0.013888888888888876,-0.1875999999999999,-0.005547801610685712,0.06944444444444448,-5.0264060356652935,-0.14553420579440277,-0.19757291666666488,-0.08077113461870826,-0.1519916666666665,-4.7048259178817595,-0.10238316666666657,1.7661773337798212,-9.743055555555557,-0.36727499999999974,-0.060803474514777626,0.17361111111111116,-8.709533607681756,0.8728784646705904,-45.54568157638888,0.25106171665475696,-0.3489305555555553,-7.669246555297295,-0.24991999999999973,-9.577175596123324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5238095238095238,0.9642857142857143,0.42857142857142855,0.0,0.5357142857142857,-0.10714285714285714,0.6606441588154232,0.0505076272276105,0.0505076272276105,0.45013068079925805,0.11882066297960898,0.31841650441750835,1.1107748396146813,0.4372371673971173,1.7784264837863712,0.5276060990360427,0.0,0.713071080631062,0.0,1.2508203847503285,11.747379966659167,781.0,85.35720000000002,33.0,129.7530864197531,1949.190444108945,3117.199765,26.550476524244996,86.0186,173.15981748209114,106.21619799999999,2845.17933007967,652.0,71.43799999999999,35.0,19.11111111111111,1536.7275961535302,2533.9380929999998,25.840176940000003,74.40210000000002,18.983024691358025,92.33006600000003,3102.206997802464,624.0,133.852,41.0,160.44444444444443,2948.6655483292184,2306.374777999999,29.825378159698,135.4088,208.99845679012347,166.07990799999996,3743.4814930569805,524.0,134.4156,34.0,38.37037037037037,3504.6139343381137,1848.5669110000006,27.152648455093995,135.73440000000002,88.04606767261089,173.75910099999996,2843.0811927869618,450.0,86.868,15.0,10.555555555555557,2045.0703722313278,1669.8943799999997,13.008933425697997,87.38960000000002,73.75617283950618,110.343114,1768.5174010476835,24.0,23.1,3.0,0.0,555.55283008845,48.380976000000004,1.604303958,22.704,22.0,28.413504000000003,246.0408918764004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,336.9166666666667,3.298499999999999,0.6539547642612934,8.916666666666664,80.86008230452677,21.6528602430929,1456.2405949166669,8.099363324142915,2.910566666666666,90.09921235965045,2.210565999999999,657.5263898112819,6.6597222222222285,-0.1476250000000005,-0.11283627721239077,-2.4236111111111116,-14.343964334705074,-5.380636256324343,38.94143099305546,-2.5061527683418405,0.053130555555555785,-17.455292228170673,0.33595399999999925,-66.6520898077122,-138.95138888888894,2.9581749999999998,0.23429366389492612,-1.6180555555555554,75.03120713305897,-8.170021785179943,-588.1662972847222,-2.9432366400724512,2.408752777777778,80.8056036485588,1.6633959999999992,-316.59878050980967,-6.770833333333339,-1.106775000000001,-0.1994507259406207,-1.7708333333333326,-14.67181069958847,1.8520029954788972,-39.88751143749981,1.615776211803062,-1.0464750000000018,-28.93426691974038,-1.126275000000001,62.02507419489296,-0.16666666666666652,-2.251199999999999,-0.06657361932822854,0.8333333333333337,-60.316872427983526,-1.746410469532833,-2.3708749999999785,-0.9692536154244992,-1.823899999999998,-56.457911014581114,-1.2285979999999987,21.194128005357854,-29.22916666666667,-1.1018249999999992,-0.18241042354433287,0.5208333333333335,-26.128600823045268,2.618635394011771,-136.63704472916663,0.7531851499642709,-1.046791666666666,-23.007739665891883,-0.7497599999999992,-28.73152678836997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8448876517675851,0.7392943248859302,0.5101100286299702,0.6296031252868713,0.4138325214724777,0.3624643829659283,0.25,0.38825971530022174,0.25,0.3271166316513321,,,,,,,16.01361671391042,5.898924312539204,3.589850583397578,2.2867430998589615,0.32989151355625473,-0.7653987194153067,4.0379779746833115,0.968528449227253,7.001955627035885,0.547178983547439,13.650406874039739,10.318809754419828,32.06691547394752,11.910461639525165,2.9546185846138093,0.7567895119348009,3.546791126414525,2.3752982364652415,8.001609787399502,0.30096432180616156,3.77939216241799,2.6093623989961667,24.442069535929047,14.70164354391353,0.5101876118710358,0.7435951878632677,0.8336745726723741,0.8336745726723741,0.8336745726723741,0.8336745726723741,3.154490065368808,123.87033355475133,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6970439980500234,0.833333333333333,0.5000000000000004,0.5000000000000004,0.5000000000000004,0.5000000000000004,-96.39502032998509,306.03939361555103,69.61499808605467,25.503282801295924,71.71454495095476,,4.0,38.0,10.118126859033554,12.9705468580193,11.505707213493578,0.0,0.0,0.0,0.0,0.0,12.628789148012991,0.0,3.6666666666666665,6.75,3.0,0.0,3.75,0.023809523809523787,0.0,-0.75,0.347705314009662,0.0,-0.347705314009662,0.10059523809523818,0.23986206896551726,0.0,0.7694444444444447,1.1047619047619048,0.4217391304347827,0.7694444444444447,1.0041666666666667,4.624509111707962,0.3535533905932735,0.3535533905932735,3.1509147655948064,0.8317446408572629,2.2289155309225586,7.775423877302768,3.0606601717798214,0.4741379310344827,0.5000000000000001,0.2272727272727273,0.0,1.0,0.6703446642074861,-0.9460518340451457,-0.22701781923079734,-0.0788376528370955,-0.23651295851128643,0.3296553357925139,0.13558449034675302,0.01902276320134303,0.011298707528896085,0.016948061293344127,-0.7508029072141031,1.0640613405886719,0.5753524329240567,0.8088575967135966,2.0186915887850474,0.7245406890935921,1.5199058323779937,1.039073733957121,1.5583646290442401,0.49045432160976643,0.8355435616430971,0.40138091330455666,1.193089521842316,1.0628116172201467,0.3236207845671477,0.6564139974149819,1.0063944909001477,0.3020402806088966,1.1708747469252747,1.0562998429518107,1.0817533901175755,0.3548793476642578,0.34853623439802217,0.42086213499881453,1.1800697600869074,0.9569273170559345,1.0687715195218606,0.9821187608851621,0.9105473965287052,0.9863315472252311,0.7752804461760218,0.9665253212924585,0.754255626106149,1.1069845669064606,1.0083488835671441,1.1607433614394729,0.896619067000464,0.9672273064556023,1.8853569804456574,1.3273459274172374,0.46261682242990665,1.945671535447096,0.8961027778561805,0.9714288170487965,1.035672054623487,1.8249138197601837,1.8021003108052203,1.7328683393001312,0.7943049754686651,0.7999010635666585,2.817947551917538,2.692685125890173,0.0,2.743422057102142,9.764943041068226e-05,0.848771452886692,0.012413954856154069,2.9055510381712604,2.462100694596949,2.8061329089473017,0.6980099018165226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.0,0.0,0.6666666666666667,0.375,0.0,0.0,0.0,0.0,0.0,0.0,1402.7891077897336,1533.6685373993637,989.8916911259288,933.5637834148729,6.543677538626389,0.4010242789694152,3.9195039718903835,0.669516751496073,0.0,1.0,1.8879185026711327,2.751629167387823,3.0849625007211556,3.0849625007211556,3.0849625007211556,3.0849625007211556,0.5,0.0,0.08333333333333334,0.09375,0.0,0.0,0.0,0.0,0.0,0.0,0.6770833333333334,7.0,2.34375,6.0,47.8878958156685,1.0,2.779032982776742,13.635265372503163,,6.424189302366359,11.27433432491711,12.116179959955717,6.4221038432771325,9.98763829215131,11.078975463999948,10.649012960191905,11.581179246355457,0.021563645357857594,-0.04882384554963018,-0.18823032925585056,-0.2965165675446051,-0.19351898546768506,-0.27108589539673866,0.029172075844901325,-0.3375555248943487,0.01991385620003195,-0.2113463201007284,0.16579250414928667,-0.1105831976115688,-0.2604761966752152,0.5664153562624161,0.2262770358206663,-0.11460895228726023,0.5860509842472227,-0.23830633464264944,-0.25509071249172544,-0.22951017562727213,0.5226877505616259,0.5664324554815077,0.4752474681764046,-0.30410509392619434,-0.011483693155718889,-0.19173650360553524,-0.17428092831984007,-0.11348464619492654,-0.10368393884094419,0.048875179265313325,-0.015651852968619952,0.1139967001735408,-0.20545336450601215,-0.1835073401672117,-0.2911406916987392,0.05390338713266152,-0.0004946821667078898,-0.6824920418371987,-0.10180156635670363,0.09345794392523371,-0.7459412692757897,-0.08065495504640893,-0.0016280791843573427,-0.11967034649937335,-0.6266477318277076,-0.6266193625446711,-0.5557843556808524,0.03223312148952809,-0.347019539945585,-1.3361527967257838,-1.115737255927073,0.23364485981308425,-1.2925339711944626,0.48374863451993066,-0.3753144781326074,0.3719725217013765,-1.4386087474374971,-1.021440212997713,-1.3566842157166978,-0.17478554311176023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,27.519970634914714,38.84246753036018,39.17846753036018,39.17846753036018,39.17846753036018,39.17846753036018,12.4489853865046,3.693242693252299,0.0,4.9914975644174335,0.0,8.7557426932523,605.9816820763541,599.4506475087344,118.38449065317218,0.0,8.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,140.96855959991,6.0,3.367295829986474,3.970291913552122,4.812184355372417,5.43372200355424,6.285998094508865,6.912742820493176,7.767687277186908,8.395929103923198,9.251578279992428,1.0138888888888886,1.0460000000000003,1.1255397650743466,0.9795118363722146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7425132235528942,1.0320261437908498,1.0721048798252002,0.6560896940090918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.552749873690364,0.0,0.0,0.0,0.0,0.0,8.417796984328938,12.628789148012991,0.0,0.0,0.0,11.505707213493578,10.118126859033554,189.66807042359326,-267.67696599208705,-64.23267615053328,-22.306413832673925,-66.91924149802176,93.27305009360818,38.36242762346399,5.382321935521383,3.1968689686219984,4.795303452932998,0.5,0.5289386442891083,0.5299553717276752,81.59144997909276,0.24859130491078826,107.72350838741643,0.4710613557108915,2.0,0.3333333333333333,0.5266215482843563,0.7675475452907252,0.860528527174435,0.860528527174435,0.860528527174435,0.860528527174435,-0.5385999999999997,,2.0,0.8079625292740048,0.3456015670953191,1.9985141421619579,-2.3986069309484903,0.7994186046511631,0.8881966089760568,-0.8818256838311411,28.417199999999994,12.9705468580193,0.0,0.0,0.0,0.0,11.505707213493578,0.0,0.0,0.0,2.5649493574615367,0.0,3.8066624897703196,0.0,5.198497031265826,0.0,6.650279048587422,0.0,8.12355783506165,12.166666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.552000000000003,0.0,19.253611111111113,0.0,0.0,-4.000578703703703,0.0,0.0,0.0,13.50647718089216,0.0,0.0,0.0,24.47625407151288,10.118126859033554,0.0,0.0,0.0,0.0,0.0,0.0,11.754142036466575,8.91015868263473,6.720566232730448,27.27052450907857,,12.606962033413303,22.317730593940272,24.133581699923965,12.603916637503485,21.21463983604135,21.929433894891883,21.044077985270043,23.41425457615607,6.720566232730448,27.27052450907857,,11.74981917627045,21.7406145016017,23.886723437713023,11.74741057657693,22.37359718443789,21.358420605855336,20.409651836001444,24.044130064606883,4.2020059792309175,20.459815374097865,,10.384243254501115,17.99136269189371,19.166074450964906,10.381016655478495,15.365036921950905,17.642613119391566,16.94726859657576,17.801581529043048,0.9600808903900641,3.895789215582653,,1.8009945762019004,3.188247227705753,3.4476545285605664,1.800559519643355,3.030662833720193,3.1327762706988405,3.0062968550385776,3.344893510879438,2.1010029896154587,13.635262254539285,,6.414653567163906,11.274288515437851,12.11616250240417,6.412548757859746,9.987495126744701,11.078919605253251,10.648924222488745,11.581152190387872,12.384313725490198,0.0,0.0,0.0,0.0,0.0,0.0,12.865258557902402,-0.2758487654320987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.873076328109101,149.65849270000976,22.655022032053594,33.01955000865388,37.019550008653866,37.019550008653866,37.019550008653866,37.019550008653866,28.0,69.19742967856983,133.28262781719167,33.34394576214675,104.38,57.2,1.0,3.7376696182833684,3.584962500721156,2.4252205803297286,2.603824581508923,,2.589327875410989,2.598376316260569,2.599280730285492,2.5893210685861323,2.602234311985235,2.5983743501224734,2.598111272286873,2.600622277334626,0.34646008290424696,0.37197494021556043,,0.36990398220156984,0.3711966166086527,0.37132581861221314,0.3699030097980189,0.3717477588550336,0.3711963357317819,0.371158753183839,0.37151746819066084,0.5292475372747298,0.600306413126532,,0.594723390531475,0.598211812265329,0.5985598206183048,0.594720761728121,0.5996954828217913,0.5982110555855413,0.5981098033720489,0.5990758098884635,87.20000000000005,16.777640192483883,18.200700754609198,,17.527964208341412,17.88055132413951,17.939708196255836,17.527596304231075,17.774515091302558,17.87808314692816,17.860255088025145,17.964471369001178,2.3968057417834117,2.600100107801314,,2.503994886905916,2.554364474877073,2.5628154566079764,2.503942329175868,2.539216441614651,2.5540118781325942,2.551465012575021,2.566353052714454,2.4633721150583683,2.544785152403301,,2.5071226163818676,2.5270386600146746,2.5303416470220537,2.5071016266099186,2.5210907510016662,2.526900613511961,2.5259029140518097,2.53172105058853,28.88041666666667,0.0,0.0,0.0,-0.2758487654320987,0.0,0.0,0.0,-4.000578703703703,105.21892972468541,53.664896371986956,-75.73682069444594,-18.17406536385041,-6.311401724537163,-18.934205173611485,26.390781307542557,10.854308257542941,1.5228801994207326,0.9045256881285784,1.3567885321928677,46.0,4.0,1.5606601717798212,0.4887504841908768,0.3535533905932738,0.0545544725589981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.914213562373096,5.1750602742015115,3.0606601717798214,3.777618751721228,3.3106601717798214,2.8997150637274265,1.0,1.553038861200887,0.75,0.9813498949539963,0.0,0.0,0.0,0.0,0.0,0.0,0.75,0.2910443091205794,1.0,0.42905275328536946,0.25,0.05175491695067656,33.587713350775545,24.840101047736397,24.450126047255623,24.450126047255623,24.450126047255623,24.450126047255623,28.0,26.0,14.879965,15.000034999999999,0.0,6.05,4.5625,1.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,12.0,0.0,0.0,11.0,0.0,2.0,2.0,9.0,2.0,6.0,9.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,4.0,1.0,0.0,7.0,5.0,0.0,0.0,3.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,2.1972245773362196,0.0,2.772588722239781,1.9459101490553132,1.791759469228055,0.0,0.0,0.0,0.0,0.0 +4909,CCC1(c2ccccc2)C(=O)NCNC1=O,0,22.4,6.20366,3.2,7.4,163.45873662148287,88.32408159999999,1.4465929555962005,6.26468,5.42986111111111,7.721713066666669,214.55950477990197,24.06451612903226,6.337354838709678,4.032258064516129,6.903225806451613,148.02615200346452,90.89383177419349,1.7914211716129023,6.476629032258066,3.224462365591398,7.744052258064519,261.25671594096656,20.59259259259259,6.235757407407407,3.6666666666666665,5.925925925925926,154.20973908069158,76.54614103703705,1.5792548932267583,6.3427648148148155,3.104938271604939,7.6948029629629655,223.3749907555092,18.675675675675677,6.148216216216214,3.1216216216216215,4.837837837837838,156.74890076814435,69.0852777972973,1.3837429406741355,6.242804054054053,3.2179054054054053,7.67213172972973,196.91449330713584,18.350649350649352,6.504623376623376,2.6493506493506493,4.077922077922078,159.4914928471006,65.65837903896103,1.2914175084707142,6.566964935064933,4.682900432900434,8.012251116883116,183.59570499605417,12.784810126582279,6.260000000000001,2.050632911392405,2.151898734177215,165.53113406404037,41.97362106329115,1.1105633100062027,6.305341772151899,3.5179324894514763,7.845775797468352,146.8935774067515,8.059701492537313,5.665313432835821,1.671641791044776,1.1194029850746268,168.22601478377572,24.447234134328347,0.9200342020951643,5.713723880597016,2.422885572139303,7.339815820895521,106.75499729082019,4.102564102564102,5.324051282051283,1.4102564102564104,0.15384615384615385,174.31036121495328,9.548581564102564,0.7299845179148203,5.354217948717951,1.7179487179487178,7.08354717948718,72.36303299303079,2.25,5.005000000000002,1.25,0.0,176.96887594641177,3.78882,0.61184575613675,5.0325000000000015,1.2083333333333333,6.818256000000001,51.99696241582735,7.448888888888887,0.1290782222222222,0.021197782941797753,0.6399999999999999,3.9155555555555566,1.4855149276668604,35.395546559999985,0.2234231672335289,0.12089155555555552,2.159791666666666,0.07906851555555555,49.32926297037201,0.09949820788530393,-0.008393275985663107,-0.012690781592997908,0.34709677419354856,1.1747670250896054,-0.056289531282928594,0.5262726722580614,0.005670887022451825,-0.0063902652329749935,-0.09713485663082436,-0.005511362867383501,1.7817269641342706,0.3856790123456783,0.02351943209876541,0.003114235753941902,0.034074074074073986,0.7338271604938271,0.34060224407343426,1.7551719288888872,0.0154670551252267,0.01931893827160491,0.05979423868312756,0.015277489382716046,1.9908873478668743,1.1781381381381375,0.0040464624624624475,-0.004718758768634844,-0.1994594594594595,0.04840840840840845,-0.17931518478786818,5.581217096756756,-0.0045334891673712106,0.007662228228228189,-0.10185247747747746,-0.0017097083483483466,3.968176859213769,-1.4480230880230882,-0.0014777893217893614,0.0061992288328892335,-0.21402597402597404,-1.3346031746031748,-0.30151976491605903,-7.005902835324679,-0.049775340285928865,-0.004484715728715806,0.15404310966810952,0.001892516479076519,-12.358459479728985,-3.050576652601968,-0.05364404500703235,-0.002499215229819778,-0.047594936708860724,-1.4995218002812942,-0.0706259755090062,-14.342891734683546,-0.02881340476854325,-0.05244868635724334,-0.5731355485232069,-0.028870257327707413,-12.096712820619937,-0.18918739635157517,-0.002953943615257003,-0.0005421771620293216,0.05253731343283587,0.20185737976782764,-0.14348924786605527,-0.9277513510447717,-0.017277369529440367,-0.0023527495854062073,-0.03793221393034824,-0.002300575257048125,-2.787120779869194,1.8023931623931628,0.014400923076923146,-0.0009162449471882203,0.15487179487179495,0.9100854700854702,0.21097289193325552,8.632055598974366,0.047721582891884745,0.01605972649572666,0.09624465811965816,0.006115012649572586,12.398493759643983,4.634444444444445,0.05019844444444452,0.0032947780988918734,0.2100000000000001,2.2399999999999998,0.2501738398535749,22.038295440000013,0.08273011900607107,0.05327177777777798,0.4850000000000001,0.023125217777777676,25.678910697732615,,,0.4666666666666667,1.1875,0.5625,0.0,0.625,-0.0625,0.7119910973464151,0.012489642910883225,0.023239642910883224,0.8210557498640872,0.23961856360961067,0.24253014112782453,1.5330468472105023,0.4821487047374352,2.00463945232392,1.5337201432382703,0.24930472485635086,0.22161458422929908,0.0,0.47091930908564994,7.270184256266666,672.0,186.1098,96.0,222.0,4903.762098644486,2649.7224479999995,43.39778866788601,187.9404,162.89583333333331,231.65139200000007,6436.785143397059,746.0,196.45800000000003,125.0,214.0,4588.8107121074,2817.708784999998,55.53405631999997,200.77550000000005,99.95833333333334,240.06562000000008,8098.9581941699635,1112.0,336.73089999999996,198.0,320.0,8327.325910357345,4133.491616,85.27976423424495,342.50930000000005,167.6666666666667,415.5193600000001,12062.249500797498,1382.0,454.96799999999985,231.0,358.0,11599.418656842683,5112.310557,102.39697760988602,461.9674999999999,238.125,567.737748,14571.672504728052,1413.0,500.85599999999994,204.0,314.0,12280.844949226746,5055.695185999999,99.439148152245,505.6562999999998,360.58333333333337,616.9433359999999,14136.869284696171,1010.0,494.54,162.0,170.0,13076.959591059189,3315.9160640000005,87.73450149049002,498.122,277.91666666666663,619.8162879999999,11604.592615133368,540.0,379.576,112.0,75.0,11271.142990512973,1637.9646869999992,61.64229154037601,382.81950000000006,162.33333333333331,491.7676599999999,7152.584818484952,160.0,207.63800000000003,55.0,6.0,6798.104087383178,372.394681,28.469396198677995,208.81450000000007,67.0,276.25834000000003,2822.1582867282004,27.0,60.06000000000002,15.0,0.0,2123.626511356941,45.46584,7.342149073640999,60.390000000000015,14.5,81.819072,623.9635489899282,223.4666666666666,3.872346666666666,0.6359334882539326,19.199999999999996,117.4666666666667,44.565447830005816,1061.8663967999996,6.702695017005867,3.6267466666666657,64.79374999999999,2.3720554666666667,1479.8778891111601,3.084444444444422,-0.26019155555555634,-0.39341422938293513,10.760000000000005,36.417777777777765,-1.7449754697707864,16.314452839999902,0.17579749769600655,-0.19809822222222478,-3.011180555555555,-0.17085224888888853,55.233535888162386,20.82666666666663,1.270049333333332,0.1681687307128627,1.8399999999999954,39.626666666666665,18.39252117996545,94.7792841599999,0.8352209767622417,1.043222666666665,3.2288888888888883,0.8249844266666665,107.50791678481121,87.18222222222218,0.2994382222222211,-0.3491881488789785,-14.760000000000003,3.5822222222222253,-13.269323674302246,413.01006515999995,-0.33547819838546955,0.567004888888886,-7.537083333333332,-0.12651841777777764,293.6450875818189,-111.4977777777778,-0.11378977777778082,0.47734062013247097,-16.48,-102.76444444444446,-23.217021898536547,-539.4545183200003,-3.8327012020165228,-0.3453231111111171,11.861319444444433,0.14572376888889196,-951.6013799391319,-240.99555555555548,-4.237879555555556,-0.1974380031557625,-3.759999999999997,-118.46222222222224,-5.57945206521149,-1133.0884470400001,-2.276258976714917,-4.143446222222224,-45.277708333333344,-2.2807503288888857,-955.640312828975,-12.675555555555537,-0.1979142222222192,-0.036325869855964546,3.5200000000000036,13.524444444444452,-9.613779607025704,-62.1593405199997,-1.1575837584725046,-0.1576342222222159,-2.541458333333332,-0.15413854222222437,-186.737092251236,70.29333333333335,0.5616360000000027,-0.03573355294034059,6.040000000000003,35.49333333333334,8.227942785396966,336.6501683600003,1.8611417327835051,0.6263293333333397,3.753541666666668,0.23848549333333086,483.54125662611534,55.61333333333334,0.6023813333333342,0.03953733718670248,2.5200000000000014,26.88,3.0020860782428986,264.45954528000016,0.9927614280728527,0.6392613333333358,5.820000000000001,0.2775026133333321,308.14692837279136,0.724750739890488,0.5698413430780594,0.4537870162234685,0.31392346152665834,0.2722441038617212,0.1588953023592249,0.1739112032391102,0.0877156514223414,0.12055269474914079,0.04929628197203189,0.07654197705511302,0.027727397016607258,0.0513539543935003,0.0149082613675533,0.033624562852880846,0.008427213899112674,8.02332136977376,5.691438460669454,3.5457650348247776,2.191177051639064,0.42603948370523537,-0.3616136873032082,4.034704001227359,0.9772910155603524,6.0232355833444835,0.988006356497884,14.544398228670769,10.95183285022612,16.01118534492433,11.702586970528305,1.9857659060342687,0.7518598537021415,3.4912223679121177,2.241108254521502,7.0093553469144245,1.1577005990920575,3.7040787861103377,2.437103912846234,20.89416995285741,14.701780231974242,0.3022880663176314,0.6211305608115061,0.7355832199865155,0.8104369201285095,0.8410942797667825,0.8410942797667825,2.193559722576164,398.28675391292165,0.0,2.0,1.0,0.0,5.0,1.0,1.0,0.0,1.0,3.3440839639153443,1.695692180109229,1.1039805159587917,0.7169925001442312,0.5584962500721149,0.5584962500721149,100.79857821564988,654.7237759112024,42.26760510514042,21.824125863706747,43.17407387859369,,7.0,182.0,5.41499046939678,9.589074368143644,18.483050647602152,6.4208216229260096,5.563451491696996,0.0,0.0,37.255572541998674,10.633577208012662,0.0,7.466666666666667,19.0,9.0,0.0,10.0,0.0,0.033333333333333326,-1.0,0.15198067632850232,0.048518518518518405,-0.10346215780998391,0.06064814814814801,0.16227586206896538,0.0,0.5911111111111114,0.8458333333333332,0.43913043478260905,0.542592592592593,0.7851851851851852,11.391857557542641,0.1998342865741316,0.3718342865741316,13.136891997825396,3.833897017753771,3.8804822580451925,24.528749555368037,7.714379275798963,0.5517241379310346,0.15624999999999997,0.06696428571428571,0.20089285714285715,0.3333333333333333,0.3739273214360429,-0.6124094452766905,-0.059534913365882985,-0.02041364817588968,-0.051034120439724204,0.626072678563957,1.0253672299466468,0.04619654210540651,0.03417890766488822,0.056964846108147026,-3.4184931543064154,0.8037570251751484,0.7118655843262941,1.6595240269160625,0.7552083333333335,0.4738475339606751,1.2735687373204776,0.8098347242217803,1.064827832458961,0.6997660511758159,0.5402170451940659,0.6824976128502502,0.9705177624193279,0.8182925616547336,0.5503859464679086,0.9312998145618021,1.4404899691358029,0.6926314793794928,0.919086184905651,0.8258854834596655,0.970277675557259,0.5759669210728192,0.5551218828658997,0.5004819105348007,0.9525272191722802,0.7742553860543122,0.8740471359778859,1.2823538253770006,1.7757601351351355,1.0142037610823078,1.134979264338941,0.7763771409924268,1.0396203844494976,0.8412865271652392,1.005235485316512,0.9434233039036599,0.9097298971382276,1.1949253014288816,1.358076461080324,0.9730381563994546,1.4025297619047623,1.486080604979583,1.2199834986879943,1.19123832107244,1.1733253385893248,1.3396869540024468,1.4757873767230383,1.417299702193658,1.155528081537747,1.4316127156279268,1.7034439021787893,1.2127489355311991,0.6882911392405064,1.4250204744321033,1.002205882951402,1.4206768136905474,1.0298583623280708,1.6920201615991899,1.6400228356313455,1.7018489162857915,1.1437748710915188,1.0168800983151072,0.8359399434962802,0.6978570840122897,0.41705534825870655,0.80696122113609,0.9184516387275652,1.0199500104732138,1.0061105857226809,0.863297462380384,0.7561625971937683,0.7915104737862746,1.046750185798503,0.7819671378740592,0.5735613043756941,0.498239081992263,0.25173611111111116,0.6171963677639045,0.5619175154237536,0.7843688955908744,0.6927575228399279,0.6106186006077917,0.5006517227989208,0.5117683761690734,0.7711246413062979,0.4055414677804297,0.08425123783683272,0.12052635701740608,0.18880208333333337,0.22630533484676496,0.44468437905575114,0.41329519791524133,0.5443016612454099,0.12244100313963642,0.041960065592746225,0.03624303951071179,0.5514555489489325,3.5,0.0,2.8888888888888897,2.0625,0.8133333333333335,0.3472222222222222,0.19836734693877553,0.0,0.0,0.0,2904.3359667919326,3276.7672177075406,1490.858069617872,1345.310433025656,8.139197967558474,0.41668284916539766,4.747733768514995,0.714333272336007,1.0,0.3333333333333333,1.5628066316931741,3.2111984154992896,3.802910079649727,4.1898980954642875,4.348394345536404,4.348394345536404,0.20588235294117646,0.0,0.12037037037037042,0.0711206896551724,0.03128205128205128,0.021701388888888888,0.028338192419825076,0.0,0.0,0.0,0.47869504555748454,12.456747404844291,5.104166666666667,2.08,94.03799321965101,1.0,3.6988115416297633,49.61818978955101,,40.895785874662565,40.47724001657391,40.34214427259237,40.90003159799903,48.52160936455286,40.7274393004176,40.92011780738724,45.71248816622949,0.0133574563091846,-0.06502472563662341,-0.5986843825999485,0.5423387096774197,0.30002563069825333,-0.037892269027101966,0.014868330154641398,0.02538182182568576,-0.052859483887097124,-0.0449741788200981,-0.06970363397692823,0.03611906719961346,0.05177671705117998,0.1822106912680758,0.14691327685034727,0.05324074074074061,0.18741329297515444,0.22928227628677,0.04958736619347425,0.06922762449723957,0.1598038687055104,0.027685188162343236,0.19321836606356535,0.04035915454610857,0.15816293620589558,0.031348916903240445,-0.2226062405484115,-0.31165540540540554,0.012363100898855731,-0.12070910998484503,0.15768133675505977,-0.02029104333049162,0.06338100451281747,-0.04715847322194385,-0.0216231244046445,0.08044265452733651,-0.1943945076403311,-0.011448788930832857,0.2924470379713911,-0.3344155844155845,-0.34084644073293335,-0.20297323123479066,-0.19793176024132797,-0.22278504464088147,-0.037097013998259466,0.07132313363624249,0.023935146192883675,-0.25052998434522905,-0.40953445515241227,-0.4155933052337697,-0.11789984059567991,-0.0743670886075949,-0.38296527248954726,-0.0475430937741776,-0.4052174109070616,-0.12896337083265216,-0.4338490485643609,-0.26536612645040936,-0.36512962365434104,-0.245223871029361,-0.025398069319274717,-0.022884910904424044,-0.025577069239644756,0.08208955223880607,0.05155267928236232,-0.09659226251695664,-0.026210962711710476,-0.0773302506779949,-0.01946165366633077,-0.017562904105881315,-0.02909597127103875,-0.05650035317866367,0.24196805581053804,0.11156741105506078,-0.04322362153173906,0.24198717948717965,0.232428184755086,0.1420200416730972,0.24387405868537515,0.2135928135062406,0.13284407187850636,0.04456201012581839,0.07733814915591809,0.2513415569798951,0.6221658711217186,0.38889940983245364,0.15543031589380205,0.3281250000000002,0.5720771850170259,0.16840883601654288,0.6226290474888494,0.3702844249790755,0.44065755902443504,0.22455869586186947,0.29247062013614394,0.5205614102354582,7.478012285100988,7.913333613571757,1.5000000000000004,14.683636867370474,27.13179027228005,30.24233052820781,32.37634868769238,32.536112907765066,32.536112907765066,32.07423123718272,24.539522291812325,3.9888755977016137,3.5458333476687853,0.0,7.534708945370399,1142.34916013092,1088.5968480188478,646.2273915026236,12.0,24.0,35.0,43.0,44.0,37.0,34.0,28.0,16.0,218.105527688,17.0,4.418840607796598,5.303304908059076,6.20455776256869,7.109062135687172,8.019941687677365,8.92996487470684,9.843790625278,10.755708986503604,11.670655445736113,0.6444444444444446,0.9858666666666664,1.130242539423165,0.6057114311880774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6622575249501002,0.9720261437908497,1.0067492109735372,0.6246106655811111,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,10.633577208012662,0.0,5.41499046939678,11.814359458703011,0.0,9.589074368143644,0.0,0.0,0.0,37.255572541998674,11.984273114623004,0.0,6.6686911888991425,149.48259522232047,-244.81910780696793,-23.799901334009302,-8.160636926898931,-20.401592317247328,250.28117343797035,409.90466810423453,18.467703771131113,13.663488936807816,22.772481561346357,0.42857142857142855,0.8301812810435545,0.206051120842761,22.11401872509775,0.14719765023537526,4.4936532841795715,0.16981871895644543,4.0,0.11764705882352941,0.31849225109926577,0.6544263323036366,0.7750142387631768,0.8538804796695666,0.8861812304166822,0.8861812304166822,0.5378999999999999,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,59.56340000000003,9.589074368143644,0.0,10.633577208012662,0.0,18.759549292013414,6.6686911888991425,35.89528683400505,0.0,0.0,3.5553480614894135,0.0,4.875197323201151,0.0,6.46302945692067,0.0,8.171599480345463,0.0,9.935712699830864,19.33333333333334,9.16396234882842,0.0,0.0,0.0,0.0,0.0,0.742777777777778,0.0,29.575999999999993,0.0,23.972414965986395,0.0,0.0,0.0,0.0,0.0,-0.435277777777777,33.90727618269495,10.633577208012662,0.0,0.0,18.483050647602152,15.004064837540422,0.0,18.90801031431363,30.33183534230805,0.0,0.0,0.0,18.171342935642322,19.867725748503005,20.408258605896332,99.23637957910208,,81.69335746361084,80.8366345236085,80.58469260235074,81.70212175660285,98.27699725910145,81.3499023156455,81.74304616644173,91.96371566218505,20.408258605896332,99.23637957910208,,81.00585746361084,80.01171595683324,79.88752100251284,81.0165316808363,100.24417089414769,80.61506831931746,81.06272002811247,92.8616145450619,4.992645517185802,68.78254697499135,,57.40072586617656,56.93703709954109,56.78081641372812,57.40541754833404,66.73508986057485,57.21332190217305,57.42784874121328,63.23575477259246,1.2755161628685208,6.20227372369388,,5.105834841475677,5.052289657725531,5.036543287646921,5.106382609787678,6.142312328693841,5.084368894727843,5.108940385402608,5.747732228886566,2.496322758592901,49.61818978955101,,40.895785874662565,40.47724001657391,40.34214427259237,40.90003159799903,48.52160936455286,40.7274393004176,40.92011780738724,45.71248816622949,29.160784313725493,0.0,1.8447222222222222,0.0,0.0,0.0,0.0,30.202476329206117,0.6675895219198791,5.36374149659864,0.0,0.0,0.0,0.0,-1.0699305555555556,0.0,0.0,18.738319967433334,331.8763975811994,46.88419895079522,96.33595246497869,114.08730238949181,125.69694286392863,130.4518303660921,130.4518303660921,306.0,105.25582703401346,67.8873710790914,49.00088702178757,58.2,58.2,0.75,6.884358701175741,5.087462841250339,3.5224468287935964,3.9445010968176106,,3.9506299469204245,3.951003267819205,3.951723732789148,3.950628028399124,3.937603069905166,3.9508233837151785,3.9506023326890896,3.9425491262341654,0.22015292679959977,0.24653131855110066,,0.24691437168252653,0.24693770423870032,0.24698273329932174,0.24691425177494525,0.24610019186907287,0.24692646148219866,0.2469126457930681,0.24640932038963534,1.7291594991868355,1.8423261108612243,,1.8438786756761645,1.8439731677612596,1.8441555010170796,1.843878190051899,1.8405758095387406,1.8439276380092184,1.8438716858218336,1.8418311297039867,168.41999999999976,83.76233765853533,74.78987864834997,,73.81622647781354,73.76953791694777,73.8045244784572,73.81684349161884,74.99593582724285,73.79928940085244,73.81879300856296,74.50975376665352,5.235146103658458,4.674367415521873,,4.6135141548633465,4.610596119809236,4.612782779903575,4.6135527182261775,4.687245989202678,4.612455587553278,4.613674563035185,4.656859610415845,4.8979871044268695,4.784686192882813,,4.771582207657166,4.770949510288084,4.771423666269115,4.771590566405045,4.787437552343675,4.77135273209107,4.771616976247418,4.780933669103905,0.0,23.972414965986395,5.36374149659864,-0.3271527777777776,-0.435277777777777,9.16396234882842,0.45305555555555554,2.059256188586546,0.0,206.88704409825763,59.75772561519562,-97.86980917696354,-9.514338251026642,-3.262326972565451,-8.155817431413627,100.05334511828292,163.8650349127945,7.382718858049239,5.462167830426483,9.103613050710804,385.0,29.0,1.002364293219481,0.5130604488942544,0.06804138174397717,0.04419417382415922,0.6353797494515143,0.17744320023490695,0.13024573573692622,0.03277358718689555,0.0,0.0,0.0,0.0,0.0,0.0,0.1609876377148447,0.054172101867058814,0.24456952404439608,0.06075324684570521,11.596011838247808,9.117461489248951,7.714379275798965,5.336698845953192,6.533858492681309,3.8134872566213973,6.086892113368856,3.0700477997819493,5.183765874213054,2.1197401247973713,3.367846990424973,1.2200054687307194,1.9000963125595112,0.5516056705994721,1.1432351369979488,0.2865252725698309,3.4778478692519776,1.460986853938139,6.605100003030655,2.189354058419628,9.982890255286065,2.642803528940471,53.06894339117237,34.87529253040008,28.501881156330274,24.63611399380395,24.13022462489859,24.13022462489859,82.0,100.0,33.17910199999998,16.920897999999998,0.4,49.04,5.645833333333334,3.708333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,30.0,0.0,0.0,31.0,6.0,2.0,5.0,26.0,8.0,17.0,23.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,2.0,2.0,1.0,16.0,4.0,0.0,2.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,3.1354942159291497,4.364689715020605,3.624340932976365,4.154969184038536,4.611400735738727,4.9010994070279486,4.842709617586033,5.049455285945838,5.112364223520032,4.420345498976018 +3702,CC1Cc2ccccc2N1NC(=O)c1ccc(Cl)c(S(N)(=O)=O)c1,0,36.9,6.410679999999999,3.65,8.301234567901234,161.3238852670621,149.13803024999999,1.7614554619396003,6.53369,6.096508011354976,7.990580249999999,243.83683461555037,34.857142857142854,6.4454214285714295,4.333333333333333,6.756613756613756,146.7428688865619,135.40077207142858,2.040105545952381,6.631766666666667,2.8995933764452286,7.935199857142855,288.1505554799787,28.180555555555557,6.4632499999999995,3.9444444444444446,7.0432098765432105,151.71113056526116,107.91891198611111,1.77888327728118,6.606665277777777,4.32628886602652,7.948599055555554,250.46891832902344,25.042105263157893,6.351128421052633,3.2736842105263158,4.830019493177388,157.37438320798537,94.21448254736842,1.56821866151201,6.482130526315791,3.38577960676726,7.915032326315789,212.39320525485294,22.6,6.353421,2.89,4.194444444444445,161.28847076151996,83.68978689000001,1.39293430132188,6.483871999999999,3.4105761316872423,7.963400559999999,189.31238092402265,19.42391304347826,6.205693478260871,2.652173913043478,4.06280193236715,161.53507058176405,70.72264083695653,1.2959012696878478,6.308199999999999,3.3653773036321346,7.817220021739129,176.741135203234,20.414634146341463,6.402424390243902,2.6707317073170733,4.415989159891599,162.68652528247517,75.21536619512194,1.2815761309845728,6.480476829268291,4.824262270400481,7.9932496829268285,176.06399150494371,18.84285714285714,6.124728571428572,2.8714285714285714,3.536507936507937,159.041557075499,68.28760155714285,1.4292901697048426,6.233781428571429,3.108862433862434,7.7253418000000025,186.16165555193933,21.388059701492537,5.874268656716417,2.8955223880597014,3.240464344941957,155.8745847982435,79.79627898507464,1.5392584763990296,6.0168507462686565,2.5342500460659667,7.525004955223881,192.00900636344093,14.3375,0.13815974999999994,0.016092827437131633,0.76,4.053055555555555,1.6023275589717965,65.49237260999999,0.31095510950376,0.13531975,2.486214795524691,0.09672808999999999,50.431147579622596,2.0029761904761907,-0.00849617857142855,-0.008373449749768499,0.18047619047619048,0.3829820693709583,0.16530947657386147,8.597434325714291,-0.005634461074483861,-0.003412964285714237,-0.5690457918159073,0.006388245714285703,3.603431272572748,0.20833333333333334,0.03934663888888889,0.0012169904504127692,-0.036388888888888866,0.7218329903978056,-0.10371849140776984,1.2313258261111122,-0.005247819144157253,0.033618999999999996,0.7896268981851934,0.022452104444444437,0.4449298102396967,0.5046052631578948,-0.015112855263157879,0.0006144353211665249,-0.11736842105263154,-0.4631790123456789,-0.20811091568947337,2.007874749473685,0.0039274520939136725,-0.014623960526315772,-0.09779550018701015,-0.010583101052631584,-3.0153846569697142,-0.4375,-0.013518899999999978,-0.0005900255563246543,-0.06799999999999999,-0.4545061728395061,-0.17443139709940214,-2.1817755539999997,-0.03959232793827199,-0.006824999999999983,-0.21613750404854443,-0.002068304000000009,-6.202564598079613,0.21739130434782608,-0.011346652173913053,-0.0041548592113165115,-0.07521739130434782,0.059068706387546945,-0.2194574635238825,0.8755300073913036,-0.030338172232486076,-0.008016489130434805,-0.18767392044682674,-0.008884131304347818,-0.4374476665271314,1.0960365853658536,0.03607701829268293,0.005013575347935421,0.0668292682926829,-0.15559996988858774,0.22523102537675932,4.909326298536584,0.011359425829291237,0.034231164634146355,0.5444579006269957,0.03287167707317071,0.46759929132773953,-0.19107142857142856,0.0035516785714285537,-0.0001948267455002616,0.10285714285714283,-0.368152557319224,0.38832607882452896,-1.0889095771428572,0.028558072332305708,0.0005513928571428591,-0.2389135076112635,0.006246760000000036,-0.8199325139802263,2.1222014925373136,0.011551891791044712,-0.001868474041153678,-0.12641791044776124,0.20126543209876527,0.02733763793481052,9.964355762388058,0.03928244615761612,0.0138753246268656,0.01480751348353683,0.005097974925373201,5.333643438638073,,,0.489484126984127,1.3229166666666667,0.7083333333333334,0.020833333333333332,0.6145833333333334,0.09375,0.8022257938232902,0.02684741870433786,0.03759741870433786,1.0093910742919694,0.2501524273407268,0.21942571905381436,1.8116168681152596,0.46957814639454115,2.0158696090745503,1.3892655902628173,0.24892809709123376,0.21524016835081394,0.07372981380216263,0.6266040188117329,9.126502251300012,1476.0,256.42719999999997,146.0,332.04938271604937,6452.955410682484,5965.52121,70.45821847758401,261.3476,243.86032045419904,319.62321,9753.473384622015,1464.0,270.70770000000005,182.0,283.77777777777777,6163.200493235599,5686.832427,85.68443293,278.5342,121.7829218106996,333.27839399999993,12102.323330159106,2029.0,465.354,284.0,507.11111111111114,10923.201400698803,7770.161663,128.07959596424496,475.6799,311.4927983539094,572.2991319999999,18033.762119689687,2379.0,603.3572000000001,311.0,458.85185185185185,14950.56640475861,8950.375842,148.98077284364095,615.8024000000001,321.6490626428897,751.9280709999999,20177.35449921103,2260.0,635.3421,289.0,419.44444444444446,16128.847076151997,8368.978689000001,139.293430132188,648.3871999999999,341.05761316872423,796.3400559999999,18931.238092402265,1787.0,570.9238000000001,244.0,373.7777777777778,14861.226493522292,6506.482957,119.22291681128199,580.3543999999999,309.6147119341564,719.1842419999999,16260.184438697528,1674.0,524.9988,219.0,362.11111111111114,13340.295073162964,6167.660027999999,105.08924274073497,531.3990999999999,395.58950617283944,655.446474,14437.247303405384,1319.0,428.73100000000005,201.0,247.55555555555557,11132.908995284928,4780.132108999999,100.05031187933898,436.36469999999997,217.62037037037038,540.7739260000002,13031.315888635754,1433.0,393.57599999999996,194.0,217.11111111111111,10443.597181482313,5346.350692000001,103.13031791873497,403.12899999999996,169.79475308641977,504.175332,12864.603426350543,573.5,5.5263899999999975,0.6437130974852654,30.400000000000002,162.1222222222222,64.09310235887186,2619.6949044,12.438204380150399,5.412789999999999,99.44859182098764,3.8691235999999996,2017.245903184904,84.125,-0.3568394999999991,-0.35168488949027693,7.58,16.08524691358025,6.942998016102181,361.0922416800002,-0.23664736512832216,-0.14334449999999796,-23.899923256268107,0.26830631999999954,151.34411344805542,15.0,2.832958,0.08762331242971938,-2.6199999999999983,51.971975308642,-7.467731381359429,88.65545948000008,-0.37784297837932224,2.420568,56.85313666933392,1.6165515199999994,32.03494633725816,47.9375,-1.4357212499999985,0.058371355510819865,-11.149999999999997,-44.002006172839494,-19.77053699049997,190.74810120000006,0.3731079489217989,-1.3892762499999984,-9.290572517765964,-1.0053946000000005,-286.46154241212287,-43.75,-1.3518899999999978,-0.05900255563246543,-6.799999999999999,-45.45061728395061,-17.443139709940215,-218.17755539999996,-3.959232793827199,-0.6824999999999983,-21.613750404854443,-0.2068304000000009,-620.2564598079613,20.0,-1.043892000000001,-0.3822470474411191,-6.919999999999999,5.434320987654319,-20.19008664419719,80.54876067999993,-2.791111845388719,-0.7375170000000021,-17.26600068110806,-0.8173400799999992,-40.24518532049609,89.875,2.9583155000000003,0.41111317853070456,5.479999999999998,-12.759197530864194,18.468944080894264,402.56475647999986,0.9314729180018815,2.8069555000000013,44.64554785141365,2.695477519999998,38.34314188887464,-13.375,0.24861749999999877,-0.01363787218501831,7.199999999999998,-25.77067901234568,27.182825517717028,-76.2236704,1.9990650632613995,0.03859750000000014,-16.723945532788445,0.4372732000000025,-57.395275978615835,142.1875,0.7739767499999958,-0.12518776075729643,-8.470000000000002,13.484783950617272,1.8316217416323048,667.6118360799999,2.63192389256028,0.9296467499999952,0.9921034033969676,0.3415643200000045,357.3541103887509,0.7284484660081642,0.6014106650501667,0.43345675051803795,0.35386533261631575,0.29028596823647534,0.19538572091605294,0.17441362006700106,0.10643246256719717,0.11191125405248659,0.059133580377034874,0.0731176661785554,0.030307146948217907,0.04847500734169969,0.016252511815033805,0.029439463060624938,0.00858299354238281,17.001104143343568,5.693160448324463,3.5811236933283968,2.181248102815068,0.45747470794764933,-0.37696987142415916,4.043000913369959,0.9682975515942438,6.022500970954223,0.6420910782364571,14.638739245044222,10.31928339733981,35.45051765742641,11.7045932708076,2.955650713424951,0.7516507291457212,3.537239662882694,2.2354599241661113,7.014579573989261,0.30019158541854596,3.7686317435321723,2.4345174643299217,24.442067956374142,14.701063295007174,0.3321654506120527,0.6668641862089666,0.7953861926731143,0.8819959022315534,0.8908104739509974,0.8908104739509974,1.608418669934133,914.5336968480627,0.0,1.0,1.0,0.0,10.0,2.0,2.0,0.0,0.0,3.4377443751081738,1.5391907853824223,0.8101592989141668,0.31887218755408586,0.26887218755408604,0.26887218755408604,-15.44806923888666,1099.6471858275065,55.538066280944534,27.491179645687666,56.47704034143355,,11.0,452.0,15.930470882759089,13.212334168400758,21.52340911010406,0.0,17.671659389306566,18.19910120538483,5.008912523954532,31.18920547353706,5.425791397110385,16.73991362784046,11.747619047619049,31.75,17.0,0.5,14.75,0.0,0.010515873015872979,2.25,0.21013305322128822,0.08107142857142835,-0.12906162464985987,0.06505731922398583,0.16123280304727738,0.0,0.6513095238095239,0.8855158730158728,0.44117647058823567,0.5702380952380955,0.8204585537918869,19.253419051758964,0.6443380489041086,0.9023380489041086,24.225385783007265,6.0036582561774425,5.266217257291545,43.47880483476623,11.269875513468987,0.5527671969527226,0.22253749493311714,0.07093635995135793,0.3319821645723551,0.1875,0.5135769390559842,-0.9926966095390506,-0.06390927535035827,-0.024817415238476265,-0.058393918208179456,0.4864230609440158,0.9402106805813851,0.03371288435429887,0.02350526701453463,0.04087872524266891,-4.0311382803369264,0.7043218333540915,0.6865499642882348,1.5495890282704756,0.9774436090225563,0.6467239535569328,1.114019428713508,0.691513185368669,1.089618360009624,0.6249186780622509,0.7774443207529907,0.5310909703538178,0.8336641305770434,0.7499273467015404,0.5142235709025241,0.9193146945069853,1.2383497807017545,0.7246269897476122,1.1706541204144072,0.7412761766761663,0.9471984437378353,0.520532541135594,0.42476873242022334,0.5338720957376497,0.896923936769597,0.816757674482632,1.0143095221292744,1.0223997228337052,1.195117728531856,1.0844079563585824,1.164978599343837,0.8234622164881745,0.8934814397782345,1.0000681621434453,0.8478020306886808,0.9898347576832727,0.988118277832698,0.9615693112467307,1.096767600549364,1.146758755408435,1.0134868421052632,1.0838085120964982,1.0983986361385911,0.9724755300172961,1.0054091452871916,1.0530300455033355,0.991917012392687,1.0173572937809479,1.057727518484726,0.8289772942648118,1.0811282614950228,1.489419769885866,1.0179490846681922,0.9983111983861405,1.0804354641146066,0.8374667642926226,0.9845856795668858,1.0433771717984865,1.046219663381846,1.0490721616377545,0.9824912855831398,0.7044995428158292,0.9531877401200334,0.7937422629248991,0.7900754172015404,1.1380748685151165,0.782293511326887,0.7144589051247601,0.808343388145763,0.9050687263351266,1.0985395618277127,0.8333562393000125,0.9323461162114466,0.7961265412878317,0.8404036941708007,0.8214945551160604,0.7239191729323308,1.0223555942834954,0.7038722842739422,0.807940957560986,0.7896797694779247,0.8594619674617231,0.9339749743895678,0.7696622932534752,1.0050341771526774,0.8404013064581192,0.552103417596324,0.7004689102008633,1.2158778476040848,0.8028393431376462,0.9405344588860145,0.8279997985751865,0.9776949812031206,0.5739713839192316,0.5904437198889645,0.5673817519982229,0.9734220309124727,6.5,0.08682787470666259,3.7777777777777795,2.576388888888889,1.4083333333333337,1.257222222222222,0.35600907029478457,0.31512188208616776,0.4056279919375157,0.26001543209876543,5453.701483238079,5920.541546347953,2673.049634752074,2502.6423240724826,12.354220945589779,0.45512036851449617,6.731563356123451,0.835267721925488,1.0,0.1875,1.8841837197791889,3.7827373095049404,4.511768795973196,5.003055907333277,5.053055907333277,5.053055907333277,0.25,0.008682787470666257,0.09686609686609692,0.06606125356125354,0.04023809523809524,0.04190740740740742,0.013185521122029057,0.014323721913007627,0.018437635997159803,0.011818883277216611,0.5615214028529325,18.781065088757398,7.3188691650230115,4.0656,144.78772142001785,1.0,4.1155207438994745,115.18723718858708,,81.80434515931653,87.63593309480993,86.84087848726969,81.78825114196329,122.1205623388366,88.26607056121857,88.57385545922764,113.06011169563291,0.1397019138954623,-0.06149532386551477,-0.5203218503696931,0.237468671679198,0.09449218351966623,0.10316834135957788,0.13127382599056356,-0.018119853645356263,-0.025221479390216416,-0.22888038187216073,0.06604333564619858,0.07145249405406678,0.014530659691950016,0.28479089524184076,0.07562315914758135,-0.047880116959064294,0.17809600201714074,-0.06472989297789107,0.01880105693289697,-0.01687645252889404,0.24844119206545978,0.3176020429154233,0.23211565993337033,0.008822520041552193,0.03519478731702841,-0.10938681680560283,0.038180694074231684,-0.15443213296398886,-0.1142789695322078,-0.1298803821504617,0.030658146429208825,0.012630286410734097,-0.1080696685170921,-0.03933509701697813,-0.10941083456348187,-0.05979210868063058,-0.03051438535309503,-0.09784977173163663,-0.03666388387184619,-0.0894736842105263,-0.11213914208911124,-0.10886126006054198,-0.03331342974841112,-0.1273248990873818,-0.050436096726457026,-0.08693436481739332,-0.021382661437851294,-0.12299074868932479,0.015162427504643493,-0.0821270462194167,-0.2581808092796568,-0.09897025171624711,0.01457387039923028,-0.13696167322036637,0.013368427077836838,-0.09756447572416956,-0.059241087353729266,-0.07548580307085656,-0.09184644609800337,-0.008674156498946857,0.07644544623301507,0.26112538776802174,0.31154098728278135,0.08793324775353012,-0.038390781413125616,0.1405649076655017,0.07496027556935662,0.03653075792007168,0.252965030116789,0.21899069284240713,0.33983589537610753,0.009272033530259769,-0.013326690746045583,0.025707042546244875,-0.01210643351899306,0.1353383458646616,-0.09083333605299201,0.24235124500618047,-0.016626509832331104,0.09183985552731491,0.00407474043621023,-0.09609528027961202,0.06458061975585414,-0.016258454414222596,0.1480175408918789,0.08361257016638143,-0.11610601359227106,-0.1663393558523174,0.04965770375954733,0.01706120435970839,0.15214528601253646,0.12632835080377133,0.10253732087788814,0.005955846417691296,0.052704182677164424,0.10576089767176358,7.230054617380885,15.994221301245384,6.346439900397138,24.277341592496633,40.967934054284115,46.55827987893908,47.60364728719004,47.654047287190046,47.654047287190046,48.380870617789206,33.342374166307614,5.97427433018961,5.165764040419535,1.7695155312519033,15.03849645148159,6289.507662563584,6091.65562196988,1084.3584654931265,89.0,39.0,50.0,65.0,78.0,79.0,81.0,88.0,85.0,365.0600900520005,26.0,4.875197323201151,5.733341276897746,6.642486801367256,7.52131798019924,8.429235912657095,9.314069557738659,10.220740563078143,11.108245048910714,12.014034030672837,0.7916666666666666,1.0018,1.1223590357272897,0.7614520023311965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7211779640718563,0.9919607843137257,1.0231609613983976,0.675770527172807,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,4.895483475517775,0.0,10.023291153407584,5.907179729351506,15.229241105136737,13.556770721936878,0.0,0.0,29.800041095617345,43.173478588160066,5.563451491696996,16.75186041757285,292.1782325647027,-564.7534357388179,-36.358523322097795,-14.118835893470447,-33.220790337577526,276.730163325816,534.8937500886886,19.179542958846735,13.372343752217217,23.256250003856024,0.45454545454545453,0.7799981961090903,0.14584814693410375,0.0,0.13934762276140944,30.854195740286396,0.2200018038909096,6.0,0.11538461538461539,0.3540415590337034,0.7107832428511985,0.8477695894289767,0.9400833341096025,0.9494784253450579,0.9494784253450579,2.0834,,2.4506302521008405,1.5061637243890114,1.2399117313334944,2.4618407424534383,-4.143345362399987,1.4643813039369107,1.4474136568145615,-1.914089813995286,92.37840000000003,13.212334168400758,0.0,5.425791397110385,5.138973737607942,24.28188312728237,5.008912523954532,58.614105776366586,0.0,0.0,3.970291913552122,0.0,5.342334251964811,2.3978952727983707,6.8966943316227125,4.844187086458591,8.53168763756669,7.018401799069201,10.20924281649528,31.666666666666664,11.775995903730843,0.0,0.0,0.0,0.0,0.0,1.9502259580519128,0.0,40.072,0.0,35.594946443147194,0.0,0.0,-4.001737165902479,0.0,0.0,-0.43044469639707716,44.89436142909159,15.573677658672857,5.687386274683562,0.0,20.366817542828404,16.444112776333593,0.0,22.845177367156435,47.360052954749044,5.022633313741326,0.0,0.0,30.458080093247858,28.847118562874254,29.729410508780283,230.37447437717438,,164.1204511973963,175.1463525459208,173.57843099692826,164.08675857008865,246.25116718421026,176.41010934710903,177.0270931137207,226.91776081376375,29.729410508780283,230.37447437717447,,162.07825932064577,173.765702465231,172.441845243206,162.03522461804408,248.3844700400732,175.0677598185003,175.7002972616407,228.03431320526113,4.863621284846242,173.83490605513387,,127.30937986876583,133.035544454912,131.1356955344396,127.30414135406576,197.55359397572317,134.39794080433305,135.28889274462486,178.64801519821134,1.2387254378658452,9.598936432382265,,6.838352133224846,7.297764689413366,7.232434624872011,6.836948273753694,10.260465299342094,7.35042122279621,7.376128879738363,9.45490670057349,2.4608002728933362,115.18723718858708,,81.80434515931653,87.63593309480993,86.84087848726969,81.78825114196329,122.1205623388366,88.26607056121857,88.57385545922764,113.06011169563291,39.67843137254903,0.0,1.9979295267489712,5.8446626371019095,0.0,5.121164742144179,0.0,40.9264384559359,0.8189488326194675,2.814917800453515,0.0,0.0,0.09385345367570874,1.7806476757369614,0.0,0.0,0.0,27.03082108691228,443.7475225459208,75.36734879116756,151.3094923801976,180.47075183892784,200.12223629333107,202.12223629333107,202.12223629333107,704.0,125.85866849472283,125.16087334459786,73.21073510952777,100.88,92.5,0.8333333333333334,8.05584202144964,5.700439718141092,4.3022951440164725,4.838713137109906,,4.850975442685073,4.838469680895233,4.836076031359752,4.851069279389806,4.863181470566324,4.840426873652657,4.84225525934831,4.854598393108499,0.17926229766735302,0.2016130473795794,,0.20212397677854468,0.20160290337063472,0.20150316797332302,0.20212788664124193,0.20263256127359683,0.2016844530688607,0.20176063580617956,0.20227493304618746,2.334617372079628,2.452117541967468,,2.4546485442840407,2.452067226453273,2.451572391934833,2.4546678879806376,2.457161584667072,2.4524716512289833,2.4528493122308155,2.455395115409664,249.75999999999976,159.7176352302909,136.5361499102003,,133.98526714917674,136.0704174008912,136.4764383880233,133.97029998376996,133.24345183736827,135.83889144056528,135.60550603197154,134.30924844975328,6.654901467928788,5.689006246258345,,5.58271946454903,5.6696007250371325,5.686518266167638,5.582095832657082,5.551810493223678,5.659953810023553,5.650229417998815,5.596218685406387,5.948876213718622,5.792058151423409,,5.773198584612301,5.788641264097278,5.791620724537701,5.7730868708264484,5.767646657258903,5.786938299110414,5.785218716991379,5.775613702620432,23.079965812005852,12.243394720542538,6.882308888201745,5.05623319878363,-0.43044469639707716,11.869849357406551,0.8189488326194675,1.9979295267489712,-4.001737165902479,301.04868820389225,166.22264960251192,-321.29297119983,-20.68466918012267,-8.03232427999575,-18.899586541166475,157.43411331221122,304.3055453348199,10.911403018630788,7.607638633370497,13.2306758841226,1345.0,39.0,2.796482175477986,1.3971285233480857,0.28867513459481287,0.05892556509887896,0.7745598362888354,0.33616373389633464,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.07856742013183861,0.04564354645876384,0.39660880187581576,0.17300398635163092,0.6435441021644752,0.2597657521520604,17.48276318419594,14.433855961204001,11.269875513468987,9.20049864802421,11.321152761222539,7.620043115726064,8.720681003350053,5.3216231283598585,7.274231513411628,3.843682724507267,5.703177961927322,2.3639574619609967,3.8295255799942756,1.2839484333876705,2.38459650791062,0.6952224769330075,4.970466040684697,2.592912997905367,7.818058341397355,3.548921304842951,11.381981734586233,4.209143453770788,76.22522820954684,43.7576852015354,30.527388298306875,27.547891554473864,27.3817951497295,27.3817951497295,130.0,154.0,48.17468799999998,24.655311999999995,0.425,124.08,9.20138888888889,5.055555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,40.0,0.0,0.0,42.0,12.0,3.0,9.0,33.0,15.0,26.0,27.0,0.0,0.0,0.0,16.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,4.0,2.0,1.0,24.0,8.0,0.0,3.0,3.0,0.0,3.0,3.0,1.0,0.0,1.0,0.0,2.0,3.58351893845611,6.511606018306882,4.23410650459726,4.709530201312334,5.232444622397328,5.712907382433202,5.864695949434276,6.049733455231958,6.19631682844994,6.19631682844994 +9880,CC(=O)O[C@]1(C(C)=O)CC[C@H]2[C@@H]3C=C(Cl)C4=CC(=O)[C@@H]5C[C@@H]5[C@]4(C)[C@H]3CC[C@@]21C,0,24.79310344827586,5.989118965517242,3.5689655172413794,6.2000851426138786,160.6145004463814,99.52378041379312,1.5026308662176036,6.098965517241379,4.3582091341731966,7.60845394827586,214.40290166812773,24.0,6.114112903225807,4.580645161290323,5.985663082437275,141.5602829720662,90.85236635483876,1.902102983709678,6.293153225806453,2.560703736891013,7.5760811290322545,269.96712322927993,20.65289256198347,5.984958677685951,4.239669421487603,4.507805325987144,148.83469972872427,77.57510197520661,1.641921844565563,6.131323140495866,2.4351766826514303,7.513352462809917,228.17464606041455,18.734806629834253,6.065475138121546,3.596685082872928,3.374462860650706,151.57726331094764,68.41518695027622,1.5342648588672925,6.196495027624306,2.5365993679376126,7.626356607734803,209.65317361762098,15.575,5.912404166666665,2.8875,2.278703703703704,154.13497894821774,54.68758150416665,1.386203933672792,6.039347916666668,2.324079432441701,7.519527141666667,179.28903122041734,12.946043165467627,5.743151079136692,2.338129496402878,1.6682653876898481,161.0215183439409,44.55039176978416,1.1652274201477375,5.854068345323739,2.4055431580661404,7.429236776978419,143.6015687737634,11.084388185654008,5.742413502109706,2.160337552742616,1.4430379746835442,164.62958450717113,36.56226052742616,1.0718213149038902,5.836694092827006,2.2910090118247646,7.464373451476796,128.9778956983763,11.586206896551724,5.672482758620691,2.2298850574712645,1.8837803320561943,164.48741067933457,39.1704290862069,1.0731468701907183,5.776806896551723,2.1447808760228946,7.398195379310345,130.85184359462315,13.658730158730158,5.83313492063492,2.3095238095238093,2.3536155202821867,163.4290808025703,48.55514960317459,1.0931381694643416,5.917804761904763,2.492006336142139,7.510726841269841,140.3023998231994,10.142687277051131,0.11016626040428058,0.011747799292939285,0.8861474435196196,3.6961729863037833,1.3144678418382536,47.84701722592153,0.2542100469042833,0.11166278240190243,1.781869820626913,0.07787708472057073,52.98940379735142,0.3745541022592157,0.001581487092938614,-0.005956933468388374,0.44755667216447403,1.527690291137545,0.06776353054017575,1.8105088664032816,0.01196883413701059,0.002165860534693807,-0.015123093285537502,2.6724233823016844e-05,3.2552037801897726,1.4244258605949238,0.01796798012008532,0.00046641194660597846,0.018811234166330855,0.3480132156671635,0.10087067659650793,6.738585578296202,0.02463388502354083,0.018419092776210958,0.20252735260746701,0.010124432663299297,6.965850565878487,-0.4074996222597406,-0.006309020930094968,0.0007477669848502697,-0.1817275540168571,-0.6356888023675129,0.0369892004057597,-1.8778430232162449,0.007378272945023883,-0.007154571314076173,-0.06859568510450659,-0.0034256656883741477,-0.5397635370501944,-1.4000148632580256,-0.013784026208878288,-0.001255663142237688,-0.1692652596115735,-0.6663234049216346,-0.23703215874594,-6.689209033392787,-0.038606317601095536,-0.015037049643281774,-0.08376531409055284,-0.007298935079766147,-10.589309892296656,-0.09158333262046728,0.004167924661459831,0.0008465614673331639,-0.010682298394340406,-0.11579437731358064,-0.11914962057309912,-0.5126722337359596,-0.019940481954606223,0.004024912959050079,0.08778795936923126,0.003052128377915988,-3.382070784579669,-0.735296035962813,-0.013193293723064315,-0.0006172520314632917,0.07449565265381279,-0.08947977094865404,0.05383104580895237,-3.357940867126236,0.007692580899689877,-0.013923498246511871,-0.21073766250403494,-0.009711355344752322,0.04163480737451726,0.21343638525564815,0.005478359096313812,0.00045149151196842544,0.05539040824415379,0.5226949105268563,0.07553574079571612,1.0328368898137132,0.00048705320368501367,0.006209195402298778,-0.026781989328719967,0.0016264439159730582,3.7063698769542808,1.7286865598399486,0.004659369042900525,6.358216907146835e-05,-0.06444519940358227,0.169007739030199,-0.007284364273783831,8.124529859190686,0.013309063467565382,0.009888887001491008,-0.07969215577822363,0.0033404080271030342,4.899995443240702,,,0.48440065681445,0.8448275862068966,0.22413793103448276,0.0,0.6206896551724138,-0.39655172413793105,1.5330282882828894,0.029488786953104196,0.04431637316000075,0.5654119692165476,0.1157255230033042,0.3518275370219742,2.098440257499437,0.4675530600252784,2.0388602059943133,1.7298193936183257,0.0,0.2471977823881988,0.06184302998778874,0.3090408123759876,7.175438570482773,1438.0,347.3689,207.0,359.60493827160496,9315.641025890121,5772.379264000001,87.15259024062101,353.74,252.77612978204542,441.29032899999993,12435.368296751409,1488.0,379.075,284.0,371.1111111111111,8776.737544268104,5632.846714000003,117.93038499000004,390.17550000000006,158.7636316872428,469.7170299999998,16737.961640215355,2499.0,724.1800000000001,513.0,545.4444444444445,18008.998667175638,9386.587339,198.67254319243312,741.8900999999997,294.6563786008231,909.115648,27609.13217331016,3391.0,1097.8509999999999,651.0,610.7777777777778,27435.484659281523,12383.148837999996,277.70193945497994,1121.5655999999994,459.1244855967079,1380.3705459999994,37947.2244247894,3738.0,1418.9769999999996,693.0,546.8888888888889,36992.394947572255,13125.019560999996,332.6889440814701,1449.4435000000003,557.7790637860082,1804.686514,43029.367492900165,3599.0,1596.5960000000005,650.0,463.77777777777777,44763.98209961557,12385.008911999998,323.933222801071,1627.4309999999996,668.740997942387,2065.3278240000004,39921.23611910622,2627.0,1360.9520000000002,512.0,342.0,39017.21152819956,8665.255745,254.021651632222,1383.2965000000004,542.9691358024692,1769.0565080000006,30567.761280515184,2016.0,987.0120000000003,388.0,327.7777777777778,28620.809458204218,6815.6546610000005,186.72755541318497,1005.1643999999999,373.19187242798364,1287.285996,22768.220785464426,1721.0,734.9749999999999,291.0,296.55555555555554,20592.064181123857,6117.948849999999,137.73540935250705,745.6434,313.9927983539095,946.351582,17678.102377723124,588.2758620689656,6.3896431034482735,0.6813723589904785,51.396551724137936,214.37803320561943,76.23913482661871,2775.1269991034487,14.74418272044843,6.476441379310341,103.34844959636095,4.5168709137931025,3073.3854202463826,23.222354340071373,0.09805219976219406,-0.3693298750400792,27.74851367419739,94.71679805052779,4.201338893490897,112.25154971700346,0.7420677164946565,0.13428335315101603,-0.9376317837033251,0.0016569024970270443,201.8226343717659,172.35552913198578,2.1741255945303237,0.0564358455393234,2.2761593341260333,42.10959909572678,12.205351868177459,815.3688549738404,2.9807000878484406,2.228710225921526,24.50580966550351,1.2250563522592148,842.8679184712969,-73.75743162901306,-1.1419327883471893,0.13534582425789882,-32.89268727705114,-115.05967322851983,6.6950452734425046,-339.8895872021403,1.3354674030493228,-1.2949774078477874,-12.415819003915692,-0.6200454895957207,-97.6972002060852,-336.00356718192614,-3.308166290130789,-0.3013591541370451,-40.62366230677764,-159.9176171811923,-56.8877180990256,-1605.410168014269,-9.265516224262928,-3.6088919143876255,-20.103675381732682,-1.7517444191438754,-2541.4343741511975,-25.460166468489902,1.158683055885833,0.23534408791861958,-2.969678953626633,-32.190836893175415,-33.12359451932156,-142.52288097859676,-5.54345398338053,1.1189258026159221,24.405052704646288,0.8484916890606446,-940.215678113148,-174.2651605231867,-3.1268106123662425,-0.14628873145680013,17.655469678953633,-21.20670571483101,12.757957856721712,-795.8319855089179,1.823141673226501,-3.2998690844233134,-49.94482601345628,-2.3015912167063,9.86744934776059,37.137931034482776,0.9532344827586033,0.07855952308250602,9.63793103448276,90.948914431673,13.143218898454604,179.71361882758612,0.08474725744119238,1.0803999999999874,-4.660066143197274,0.28300124137931215,644.9083585900448,217.81450653983353,0.5870804994054661,0.008011353303005012,-8.120095124851366,21.294975117805073,-0.9178298984967628,1023.6907622580264,1.6769419969132382,1.245999762187867,-10.041211628056177,0.4208914114149823,617.3994258483284,0.7217364462547807,0.6325473231428709,0.4108799618403962,0.3418705046731068,0.253303740140383,0.19420652074695438,0.14625438981535363,0.11284972035916888,0.09048616108637922,0.06635215650461783,0.05534473227231953,0.03738481616922792,0.032785849275303654,0.022614224591494033,0.019600098784847034,0.012674082454379896,17.001103551749765,5.700937581242903,3.556293517183224,2.1975140509826576,0.42608770845784644,-0.48438140041831235,4.118724030895155,0.9715038933224431,6.029738105237187,0.7739861982917564,13.643741804529249,10.960546460085132,35.4505176024517,11.712295455152837,2.2083545522951127,0.7409893968128286,3.5025130771607613,2.2484009781051952,7.010445993578875,1.077394737316488,3.7154145432021446,2.444671877458354,22.455877624673974,14.700462548678251,0.22977466320577922,0.5180339252890941,0.7582263404775993,0.8718431666139688,0.883212191215497,0.883212191215497,1.4997842962376642,902.5567344378746,0.0,1.0,4.0,0.0,5.0,5.0,1.0,6.0,2.0,4.464147394413919,2.715541000640989,1.2585123872360526,0.5693025863561019,0.5003370691147229,0.5003370691147229,168.89766953241724,1105.6191414804216,44.04630787737457,19.062398991041746,38.491776407004224,,12.0,583.0,5.601050810983688,14.383611552215466,46.11949425795946,23.28892006736239,31.256391021773304,6.923737199690624,6.923737199690624,6.076020106833881,19.92349450621513,16.337802844032566,14.04761904761905,24.5,6.5,0.0,18.0,0.0,0.015599343185550027,-11.5,0.11786078027893848,0.017077175697865488,-0.100783604581073,0.0,0.12995723619085287,0.0,0.5646962233169129,0.8293924466338255,0.44683544303797446,0.5476190476190474,0.8293924466338255,44.45782036020379,0.8551748216400217,1.2851748216400216,16.39694710727988,3.3560401670958218,10.202998573637252,60.85476746748367,13.559038740733074,0.5840427638091471,0.26440677966101694,0.10677966101694913,0.35593220338983045,0.7083333333333334,0.3588420365962202,-0.6631634529339996,-0.05027268761710893,-0.011433852636793097,-0.03315817264669998,0.6411579634037796,1.184901671276102,0.02335162150022564,0.02042933915993279,0.031181622928318466,-4.781090076021124,0.6766904284687818,0.5553055115618614,1.3997599988943825,0.8943740463797598,0.42966813539401,1.1410691036127643,0.6857280971931399,1.035493618688499,0.5596595733783682,0.5059677022083525,0.5436016380103761,1.0027629747109827,0.6217988528576827,0.5089878042590532,0.880101674119875,1.5672981222674733,0.8661284346105608,1.0339574807903733,0.6294519466747678,0.936588267217712,0.5135422759952717,0.4218868294617608,0.5054299067207461,0.9042120691119855,0.8832816254622943,1.0077319514664627,1.0655826529754309,1.5992000904438977,1.2081366261367064,1.0484614341941885,0.886047097253814,0.9836697562389562,0.9856244039242569,0.8609247730396681,0.9761652978436085,1.012832319756988,1.0393826934349355,0.9645175834115175,1.1258437580512985,1.1806482723918148,1.0820744567829157,1.2178080358775052,1.044199765048565,1.1600692432275639,0.9807850489146871,0.7075201555563615,0.9251907594898823,1.2036484440151398,1.05624172408849,0.7971627724812915,0.7284528478442046,0.8297732159793801,0.9055904009649814,1.046825232074867,1.0574697061826672,1.0692483693691142,0.8419578481636276,0.7877282159140268,0.8110795717963514,1.0568892433067782,1.177233368453856,1.1285213614334362,0.8147669658438789,0.7440286370642762,0.9730365951771672,0.877642822405365,1.1716701745358669,0.9389133305970173,1.1572612753154716,1.214082592040598,1.1555951469978238,0.9692617632576945,1.1128810082063307,0.808144942529573,0.7176870592728458,0.809459912780946,0.7578414493202588,0.8605958705658316,1.109588422173848,0.9833612734095971,0.8611171897295661,0.8190945209812018,0.8687897220792302,0.9175718783151245,0.7609201417964606,1.0657635644546035,1.1774560000481331,0.9725962844044024,1.016804736883613,0.9458073536791107,0.7619889765078689,0.88087693600312,0.9897603675496549,1.055817035011476,1.0318231583003,0.864272347139033,9.5,0.14315273951637592,6.944444444444446,5.020833333333334,3.801666666666667,1.7922222222222222,1.1429478458049889,0.7048965419501134,0.45427847064751825,0.26657407407407413,6745.3867148576455,7708.724060844623,2806.1016995261807,2520.58586778282,12.709472433692605,0.48933602522483394,6.490269710284869,0.958234865579225,1.0,0.7083333333333334,1.3938336007136525,3.142439994486583,4.599468607891519,5.28867840877147,5.357643926012849,5.357643926012849,0.28787878787878785,0.013013885410579627,0.13102725366876314,0.07493781094527364,0.059401041666666675,0.03318930041152263,0.030890482319053746,0.022738598127423015,0.016825128542500675,0.012117003367003368,0.6820192923375744,20.877869605142333,6.508928571428571,2.6197923875432525,176.62593558345674,1.0,4.371198353763349,136.3554580790146,,120.9936378964316,121.38810274486985,123.27059743548152,120.98089997676743,145.96251445420623,121.69398118640463,121.83461309405995,133.4830085852496,0.03692848769050415,0.01435545771577415,-0.5070680320499379,0.5050589215569575,0.4133167729969406,0.05155206417633617,0.037839534653843016,0.04708245910326734,0.01939644067705863,-0.008487204345947541,0.00034315914519534923,0.061431221091649224,0.14043870442676798,0.163098756862107,0.03970206972179917,0.021228108599643403,0.09415501302475045,0.07673879374290556,0.1408360639593959,0.09690366420811106,0.1649528372839216,0.11366001615999764,0.13000528588899518,0.13145742481870804,-0.040176691948469144,-0.057268177270813736,0.06365166498032494,-0.2050759784343198,-0.17198567402636886,0.02814005731325548,-0.03924681478783817,0.029024316839066536,-0.06407301663257031,-0.038496462710375025,-0.04398810896254929,-0.01018625420120642,-0.13803194607268457,-0.12512021519378633,-0.10688496721189067,-0.19101252376160122,-0.18027386905069231,-0.1803255668959203,-0.13980409691596932,-0.15186778835547685,-0.1346648303027203,-0.04700978327422471,-0.0937237841652049,-0.19983825318725218,-0.009029493872662716,0.037833041134052,0.07206128111517601,-0.012054764105522012,-0.03132818126820855,-0.09064475887555458,-0.010714821183424055,-0.07844096721367719,0.03604525046280331,0.04926732489264841,0.03919161058567191,-0.06382541682321619,-0.07249518947769353,-0.11975802459526604,-0.05254192858353269,0.08406688209574847,-0.024208761678693742,0.0409527293826153,-0.0701807774405432,0.030260727274033884,-0.12469238135583709,-0.11826770960736704,-0.1247010642424206,0.0007857194908956175,0.021043376318874568,0.04972810256252419,0.03843200762203887,0.0625069887062507,0.14141516440483415,0.05746488304352969,0.021586233577255576,0.0019159478927613033,0.055606669193951505,-0.015030272704937163,0.020884756046131804,0.0699454911991204,0.1704367405422505,0.042293974814084576,0.0054122621170147826,-0.07272514283584393,0.045725062018595816,-0.005541683137410811,0.1698022223794789,0.05235459270646605,0.08856027754976065,-0.04472389332582424,0.04289333684085232,0.09247123183306355,5.746901685969746,21.327438796739017,12.927621187538314,14.668547504414018,33.902363397940086,40.46331410010512,41.53745137249555,41.60696861387486,41.60696861387486,59.126945973835085,50.164762414931445,0.0,7.168735689257765,1.7934478696458735,8.96218355890364,5754.987807010139,5322.493432705599,1579.232440174988,478.0,56.0,85.0,125.0,168.0,214.0,270.0,346.0,419.0,416.1754370880008,33.0,5.187385805840755,6.1463292576688975,7.141245122350491,8.12415060330663,9.121618441915379,10.112004656988175,11.110430940306896,12.103934709557954,13.102811478673114,0.6379310344827587,0.9698620689655173,1.1208770345740162,0.5985059672311874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6690584038818914,0.9595672751859365,0.9993407338573976,0.6173544045705625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,2.0,0.0,5.0,0.0,4.0,1.0,0.0,0.0,0.0,5.0,0.0,1.0,0.0,5.0,0.0,3.0,0.0,0.0,4.736862953800049,0.0,17.167540703713566,0.0,0.0,14.383611552215466,0.0,0.0,0.0,31.524434396447646,74.34859413586939,28.703910536759174,0.0,214.6800019280567,-396.742624428599,-30.076021128799987,-6.840390076355156,-19.83713122142995,383.57767146047394,708.8765170518225,13.970286748574583,12.222008914686592,18.65464518557427,0.5,0.8579609616669818,0.24384451168328877,0.17191023430968166,0.16403204905009058,26.355107150196282,0.14203903833301793,6.0,0.06060606060606061,0.23793754228171551,0.5364373829652803,0.7851627739518391,0.9028159041776297,0.914588820016507,0.914588820016507,4.607600000000004,,1.6470588235294117,1.2594649167087328,0.8241976561086443,1.658247083672631,-4.0952321032281676,1.227921695613777,1.203763373537623,-1.5126892824944933,108.95300000000003,19.120474506015512,0.0,0.0,40.419511169600526,65.40010772437623,0.0,22.757431095850627,0.0,0.0,4.204692619390966,1.9459101490553132,5.673323267171493,4.110873864173311,7.360739903058278,6.278521424165844,9.158099260130491,8.401333305321703,11.014143688692364,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.252,0.0,37.12732263837648,0.0,0.0,0.0,3.964532999526461,0.0,1.5528752988756305,65.01086800529293,0.0,0.0,0.0,23.136845991665414,19.120474506015512,40.419511169600526,59.79905691339255,22.757431095850627,0.0,0.0,0.0,34.713346099408874,38.8053874251497,36.64244496680006,272.71091615802914,,241.8736855291715,242.68934584031152,246.48435365330036,241.8474380856954,292.78280933535405,243.30327811793936,243.58620802442763,267.2789873668773,36.642444966800056,272.71091615802914,,240.34021696933377,241.51674057303097,245.71699721485442,240.30355286986224,296.02026101164057,242.16004067719558,242.4654628145821,268.4787064529937,5.325634649672143,198.9938484986993,,178.8632876863765,179.15541160511765,181.43567675103407,178.85261176687635,210.7232952284177,179.55123990566418,179.72691223963128,194.10854029144247,1.2635325850620711,9.403824695104452,,8.340471914799018,8.368598132424536,8.499460470803461,8.33956683054122,10.095958942598415,8.389768210963426,8.399524414635435,9.21651680575439,2.7141998212747316,136.3554580790146,,120.9936378964316,121.38810274486985,123.27059743548152,120.98089997676743,145.96251445420623,121.69398118640463,121.83461309405995,133.4830085852496,55.65490196078432,0.0,7.417350237626969,6.790898394851767,0.0,0.0,0.0,57.96176256372906,4.218038005306449,0.0,5.816311005679693,0.0,1.4597721404460662,0.0,-1.485989609578399,0.0,0.0,35.80655546509262,513.281728785075,80.84234884139184,182.2615196802218,266.7691792577081,306.74334770874526,310.74334770874526,310.74334770874526,2223.0,144.1499110166083,84.97594460345564,87.14763748115976,60.440000000000005,60.440000000000005,1.0,8.337348564497175,6.044394119358453,4.716680996912405,5.29953578408311,,5.317361143674429,5.318768483817814,5.315687349279465,5.3173005663383055,5.268384878718273,5.318116100333929,5.317847060725988,5.295886507941319,0.1626441723073243,0.18274261324424518,,0.1833572808163596,0.18340580978682117,0.18329956376825743,0.1833551919427002,0.18166844409373356,0.18338331380461823,0.18337403657675821,0.18261677613590754,2.6158161106235944,2.732329965805613,,2.7356878916594676,2.7359525255443273,2.735373062961019,2.735676499226351,2.72643457794624,2.7358298611533507,2.7357792706043003,2.7316411256281263,308.940000000001,243.8231781891888,194.3033619468567,,191.24300415117818,191.46263357949445,191.89572927225538,191.23769610742775,196.91765628425293,191.51067842012336,191.53864901507177,194.27895714385056,8.4076957996272,6.700115929201956,,6.594586350040627,6.602159778603257,6.6170941128363925,6.594403314049233,6.790264009801825,6.603816497245633,6.604781000519716,6.699274384270709,6.561154020025972,6.3341313960920935,,6.318255629428341,6.319403401662531,6.32166288479364,6.318227873550739,6.347496389944106,6.319654306043466,6.319800347782714,6.3340057866557435,5.816311005679693,37.12732263837648,0.7125104455362395,-0.4548934843999324,1.2690408686069905,0.0,8.182571004832909,7.417350237626969,0.0,399.06749067876757,128.43395847652448,-237.3543194247133,-17.99321042530017,-4.09231585215023,-11.867715971235665,229.47828529173336,424.09081581118846,8.357831246772852,7.3119106174342825,11.16028462661022,1908.0,67.0,3.6088852314528634,2.5215171872115776,0.2704559011296066,0.22147979777365068,1.8913803197865482,1.2114181211845783,0.48821143567853303,0.29595645137076687,0.23570226039551584,0.23570226039551584,0.2539338936857123,0.23570226039551584,0.6264518674312846,0.4920663299646423,1.1489463771857145,0.8807905087550385,2.3104050267300194,1.6274723905373458,20.93035694138864,18.343872371143256,13.559038740733076,11.281726654212525,14.185009447861448,10.875565161829446,12.43162313430506,9.592226230529354,11.310770135797402,8.294019563077228,9.29791502174968,6.280649116430291,7.016171744914982,4.839444062579723,5.292026671908699,3.422002262682572,9.496242888029276,6.721380557537568,17.2373954962853,11.735198313088839,30.449168248596585,18.93145140174576,100.58550277520814,47.243075205476046,29.926789276601006,24.921522977374444,24.52731870218443,24.52731870218443,178.0,233.0,64.80499699999999,33.943003,0.3103448275862069,277.05,11.29861111111111,5.9097222222222205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,58.0,0.0,0.0,62.0,0.0,5.0,5.0,57.0,5.0,33.0,57.0,0.0,0.0,0.0,24.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,4.0,0.0,0.0,29.0,5.0,0.0,0.0,4.0,0.0,5.0,2.0,0.0,0.0,1.0,0.0,0.0,3.6635616461296463,7.018401799069201,4.23410650459726,4.700480365792417,5.153291594497779,5.572154032177765,5.855071922202427,6.1675164908883415,6.489204931325317,6.804614520062624 +644077,NC(=O)CC[C@@H]1NC(=O)[C@H](Cc2ccccc2)NC(=O)[C@H](Cc2ccc(O)cc2)NC(=O)[C@@H](N)CSSC[C@@H](C(=O)N2CCC[C@H]2C(=O)N[C@@H](CCCN=C(N)N)C(=O)NCC(N)=O)NC(=O)[C@H](CC(N)=O)NC1=O,0,26.685714285714287,6.445576428571428,3.0785714285714287,7.7634920634920634,167.5775981992599,105.51741195,1.4276977629656074,6.48325,6.549850578091318,7.959262328571429,206.72983759936042,26.944055944055943,6.5458363636363615,3.7552447552447554,6.665112665112665,153.2957166297374,102.24582746153847,1.7528078016503503,6.664779020979021,3.457871689353171,7.959865237762234,253.50648425874874,21.756,6.364790800000002,3.36,5.002666666666666,156.69064317585276,80.518258404,1.4959365210679199,6.4607455999999965,3.4612839506172848,7.837308399999999,208.50513318469802,18.120111731843576,6.380353910614523,2.835195530726257,3.7653631284916202,164.38696129128738,64.83195698044692,1.2721403838160557,6.438637430167599,3.427115663149182,7.925140223463689,173.50093286686376,18.418781725888326,6.380726142131981,2.751269035532995,3.94077834179357,165.18823982638477,66.34819501522843,1.2282302355844643,6.43764949238579,3.405221846211694,7.952233629441623,170.54722286652745,20.16467780429594,6.443065155131265,2.844868735083532,4.787589498806683,163.90311524031182,74.07785740811457,1.2714616372661676,6.4988730310262515,4.312685995462446,7.983073852028639,177.6290754658455,19.11018711018711,6.367824948024948,2.8004158004158004,4.121968121968122,164.20681881357976,69.45670425779623,1.2830860780751874,6.427725155925156,3.651176817843484,7.917384324324323,175.47558738960268,18.832720588235293,6.366422794117647,2.7169117647058822,3.940563725490196,164.4492670678837,67.92929100367644,1.263930344706982,6.427650551470587,3.5444637345679015,7.947235639705883,172.97471495560532,19.77951388888889,6.4134821180555575,2.734375,4.342592592592592,163.1438917780534,71.90001897743053,1.2936022848389912,6.475103298611111,4.138808513374488,7.964596906249999,177.2797365010985,9.875714285714288,0.1623180153061224,0.031135321088590986,0.5866836734693877,4.117210884353741,1.5321522732848294,45.53913597443878,0.24759505898871806,0.14939920408163262,2.8176967855043245,0.10053115387755097,47.17502144105949,0.7183916083916095,-0.025600837483944587,-0.021582981671441827,0.1094701726844584,0.8216391544962972,0.031128360115683394,3.0102135377490344,0.03882175894207265,-0.02140674653917501,-0.22351373946942718,-0.015507404127301271,4.047840274245772,-0.20359999999999945,0.026701364693877547,0.004418686070499965,-0.08985510204081629,0.053544671201814074,-0.185117508951812,-1.0079621842959172,-0.034163621045063076,0.022372064489795958,0.3042165987794293,0.015283395722448977,-5.840288010775197,-1.0078770949720668,-0.009007714029187078,0.0037965596102115425,0.009325903545775876,-0.605155373136219,0.13409465843127974,-4.673452052990252,-0.007420534122337322,-0.010241067609166528,-0.2972291862062893,-0.005479580134534263,-3.3823856800102483,-0.287208121827411,-0.033942886589661214,-0.007857935052264134,0.010633222832280135,-0.3773671973019325,-0.09498468277558728,-1.3024152499282609,-0.0004848833177781122,-0.028291390448565178,-0.515317710689172,-0.021077628496840358,0.9135203769813108,0.8966348448687352,0.021772167100969277,0.003174770806059921,-0.001753567775558898,0.3886534184079358,-0.07775093172942008,4.033826531425528,8.024944722939334e-05,0.020125391895182945,0.4468527424302465,0.01585741867614825,0.8873636866914807,0.15386694386694408,0.00342858255547542,0.0036449362587997612,0.008519771734057461,-0.04452171166456879,0.11881028087192738,0.7105646198439688,0.007709710137061146,0.0026716839492554045,-0.011492555226020862,0.0013380680707709234,0.4194103938862055,-0.44330882352941137,-0.023149399234693863,-0.005353313840915469,-0.011512980192076817,-0.26068952581032406,-0.008128084245497243,-1.8733641990973897,0.005454939475664903,-0.01970617361944775,-0.3419250319726656,-0.015976594423769502,1.7746795502590538,-0.039999999999999744,0.012126757759353752,0.002215515840155388,-0.02193912981859409,0.08114669942050884,-0.02439696792473987,-0.2867685462269699,-0.01046658164640269,0.00993269820011342,0.2440056299797581,0.00978782975340135,-2.199608163414927,,,0.4622222222222221,1.05,0.4066666666666667,0.006666666666666667,0.6433333333333333,-0.23666666666666666,1.5364442605653357,0.02410844677140214,0.0286951134380688,1.4446264048211048,0.20424834536249706,0.27049938869774204,2.9810706653864405,0.47474773406023907,1.9889715237646413,1.273260092605341,0.380803128688565,0.2813299090853837,0.0,0.7157114311593002,7.7388418180000125,3736.0,902.3806999999999,431.0,1086.888888888889,23460.863747896386,14772.437672999999,199.87768681518503,907.655,916.9790809327845,1114.296726,28942.17726391046,3853.0,936.0545999999997,537.0,953.1111111111111,21921.287478052447,14621.153327,250.65151563600008,953.0634000000001,494.47565157750347,1138.2607289999994,36251.42724900107,5439.0,1591.1977000000006,840.0,1250.6666666666665,39172.66079396319,20129.564601,373.98413026697995,1615.1863999999991,865.3209876543212,1959.3270999999997,52126.28329617451,6487.0,2284.1666999999993,1015.0,1348.0,58850.53214228088,23209.840598999996,455.42625740614795,2305.0322000000006,1226.9074074074072,2837.2002000000007,62113.333966337224,7257.0,2514.0061000000005,1084.0,1552.6666666666665,65084.1664915956,26141.188836,483.92271282027895,2536.4339000000014,1341.6574074074074,3133.1800499999995,67195.60580941182,8449.0,2699.6443,1192.0,2006.0,68675.40528569065,31038.622254000005,532.7424260145242,2723.0277999999994,1807.015432098765,3344.9079439999996,74426.58262018926,9192.0,3062.9238,1347.0,1982.6666666666665,78983.47984933187,33408.67474799999,617.1644035541651,3091.7358,1756.2160493827157,3808.2618599999996,84403.75753439889,10245.0,3463.3340000000003,1478.0,2143.6666666666665,89460.40128492874,36953.53430599998,687.5781075205982,3496.6418999999996,1928.1882716049383,4323.296188,94098.24493584929,11393.0,3694.165700000001,1575.0,2501.333333333333,93970.88166415875,41414.410930999984,745.114916067259,3729.6594999999998,2383.953703703705,4587.6078179999995,102113.12822463275,1382.6000000000004,22.724522142857133,4.358944952402738,82.13571428571427,576.4095238095238,214.50131825987611,6375.479036421429,34.66330825842053,20.915888571428567,394.4775499706054,14.074361542857137,6604.503001748329,102.73000000000016,-3.660919760204076,-3.086366379016181,15.654234693877552,117.4943990929705,4.4513554965427256,430.4605358981119,5.5515115287163885,-3.0611647551020265,-31.962464744128088,-2.2175587902040816,578.8411592171453,-50.899999999999864,6.675341173469387,1.1046715176249913,-22.463775510204073,13.386167800453519,-46.279377237953,-251.99054607397932,-8.540905261265769,5.593016122448989,76.05414969485733,3.8208489306122444,-1460.0720026937993,-360.81999999999994,-3.224761622448974,1.3591683404557322,3.3386734693877638,-216.64562358276643,48.00588771839814,-1673.0958349705104,-2.6565512157967612,-3.666302204081617,-106.40804866185157,-1.961689688163266,-1210.894073443669,-113.15999999999994,-13.37349731632652,-3.096026410592069,4.189489795918373,-148.68267573696141,-37.42396501358139,-513.1516084717348,-0.1910440272045762,-11.14680783673468,-203.03517801153376,-8.3045856277551,359.92702853063645,375.69000000000005,9.122538015306127,1.3302289677391068,-0.7347448979591783,162.8457823129251,-32.57764039462701,1690.1733166672964,0.03362451838911581,8.432539204081653,187.23129907827328,6.644258425306116,371.8053847237304,74.0100000000001,1.6491482091836769,1.7532143404826852,4.098010204081639,-21.414943310657588,57.14774509939707,341.78158214494897,3.7083705759264114,1.2850799795918495,-5.527919063716034,0.6436107420408141,201.73639945926485,-241.1599999999998,-12.593273183673462,-2.9122027294580155,-6.263061224489788,-141.8151020408163,-4.4216778295505,-1019.11012430898,2.9674870747617073,-10.720158448979577,-186.00721739313008,-8.69126736653061,965.4256753409253,-23.039999999999853,6.985012469387761,1.2761371239295034,-12.636938775510195,46.740498866213095,-14.052653524650164,-165.17868262673466,-6.028751028327949,5.72123416326533,140.54724286834067,5.637789937959178,-1266.9743021269978,0.7358790698627605,0.5661388380314475,0.4564882058271529,0.3362360203285265,0.3099689002731313,0.19193492979864998,0.1945839226901083,0.11366032834472324,0.12255697600837674,0.06762904385274639,0.08263985319752604,0.03858871498489071,0.050935518780204955,0.02365588932643195,0.03185295457477159,0.01452960961975153,16.101026310421897,5.69337318137094,3.5618771514452354,2.192769481083115,0.44775873264636834,-0.4018049270319566,3.1942726343955608,0.9714655096683849,6.034530849487097,0.5598373362801544,14.562126551429278,10.250201788850633,32.16051411440673,11.704734179063761,3.007841583269597,0.7508458796831883,3.5083008639601667,2.24263737443591,7.019256458100759,0.5378165395326796,3.7207038432488684,2.438656026299551,24.531642469815438,14.701775153649088,0.2425529339283725,0.5039661839277411,0.6937356570757659,0.834439609025937,0.9028200728246922,0.9218293643038002,1.6582222435560134,2415.5491756260017,0.0,11.0,5.0,0.0,10.0,17.0,2.0,0.0,0.0,5.351147619773241,3.434748813190074,2.0435645795383,1.0120756033693636,0.5107841071737624,0.3714285714285692,218.2924259084317,12488.86594539036,197.87908296470692,89.20618532421685,192.3522577592532,,26.0,3111.0,139.12092493074087,57.84643641963074,68.40839454197652,17.547724606320003,21.587795952773448,29.16537800469692,30.33183534230805,0.0,42.20992496067999,34.40200486297311,34.66666666666666,78.75,30.5,0.5,48.25,0.0,0.0377777777777779,-17.75,0.1896803652968042,0.025789473684210584,-0.16389089161259363,0.1283742690058487,0.20593942354665418,0.0,0.6266666666666657,0.9097777777777786,0.4369863013698615,0.6008771929824551,0.7814035087719299,115.23331954240018,1.8081335078551604,2.15213350785516,108.34698036158287,15.318625902187279,20.287454152330653,223.58029990398305,35.60608005451793,0.5080605764533458,0.18461538461538465,0.0,0.3432692307692309,0.4782608695652174,0.4168624045073052,-3.965559963745081,-0.0989382565961524,-0.028325428312464863,-0.08812355474989068,0.5831375954926947,5.547315078157592,0.05178791805258283,0.039623679129697074,0.0583927902963957,-5.68257403029275,0.749092871543327,0.8608520621587941,1.789807068702799,1.0769315908893267,0.5392571288181222,1.3570199903762272,0.7606085905546933,0.9683242290746784,0.8357272970394833,0.6823901125895865,0.831560171370133,0.9703575060895464,0.9192940836105885,0.5535931326042971,0.8009727694824692,1.4520114792590664,0.8306208658967115,1.3549187240274843,0.9224275033041239,1.2578064009337988,0.5692331530329436,0.5033311133467667,0.540993855303102,1.1860445081721622,1.1030792119454316,1.0328910460414311,0.9046993667181759,1.0777910734040028,1.1499436199378288,0.9857477206700148,1.1005945084664208,1.064564478244454,1.0407028706905606,1.0425238981937475,1.028992986597371,1.0664046767551603,1.0685057065295207,1.2730605436199964,1.2979514229811397,1.0823982487111,1.1490912699407838,1.0903956632969656,1.0624011166733764,1.0358795355335686,1.2449026714525662,1.270147822088902,1.2912739651966112,0.9653656350824322,0.9198133156479074,0.8994995050521988,0.910679632294511,1.1410040636510679,0.9318505857145954,1.1054841335319503,0.9183245935802629,1.037283901578545,0.890343921302412,0.906930739334698,0.8930036315112528,0.9743606336673332,1.0160118947910064,0.9565895099744609,0.8959912947507407,1.0695750638354347,1.0078749464602779,0.9875403924617642,1.0102218182852745,1.0310714355359594,0.9555866040850591,0.965845679070527,0.9661775082358769,0.994263352519845,1.1914532828175388,1.1933906463965787,1.1573420162331927,1.1245846825555166,1.1193236769411599,1.0519264658050285,1.171275417700397,1.1168048071074868,1.1751259179554039,1.2240907221556032,1.2326551886748223,0.9688406055314803,1.0884334265554427,0.9339428793679664,0.9050133167149125,1.1061786169811871,0.9802684535753473,1.0932887246318896,1.0792127798080535,1.1589043431877266,0.9346338261004783,0.9640543638399015,0.9289141800388011,1.0570854383660775,17.5,1.485364758698092,8.666666666666671,4.618055555555555,5.143333333333334,3.0938888888888894,2.528979591836734,2.58687641723356,1.8020045981355504,1.5896759259259263,20160.078287413548,22958.08356570006,7205.083207065633,6497.8664123635035,25.77304418377313,0.4843229718030311,13.290566832277303,0.9391982681416597,0.0,0.4782608695652174,1.7781353971717253,3.6945342037548925,5.085718437406666,6.117207413575603,6.618498909771204,6.757854445516397,0.2243589743589743,0.007464144516070814,0.08253968253968258,0.0408677482792527,0.04114666666666668,0.020904654654654655,0.01580612244897959,0.01469816146155432,0.009288683495544073,0.007988321235808674,0.4650631596571885,67.50493096646943,35.76834467120182,24.94901144640999,438.64556152114073,0.0,5.203110453518616,807.3745997332406,,690.5583159452312,711.235934882871,702.9396234250174,690.6741659793996,940.6525636390572,717.8141787275935,721.6045360458936,882.5249710389785,0.07274325558717294,-0.15772024710666213,-0.6931992642706533,0.18659147618187538,0.19956207674926177,0.020316753535825995,0.06610168316409591,0.15679537023330342,-0.14328554606943042,-0.07932497940136651,-0.15425471139214825,0.08580473629043596,-0.020616230290756484,0.16450031528244305,0.1419187570902912,-0.15315766588398988,0.01300508346689138,-0.12082187402622374,-0.02213397691299389,-0.13798183689368285,0.1497468786886691,0.10796640729565911,0.15202646277256968,-0.12380043150742512,-0.10205612129038717,-0.05549423464917958,0.12193738421418521,0.015895965692426055,-0.14698187441307306,0.08752045130853084,-0.1026249609920898,-0.029970445099534265,-0.06854834115160845,-0.1054865760345075,-0.05450628907739888,-0.07169865697329261,-0.029082263167826944,-0.2091134895017469,-0.25238008722972644,0.018124286243385572,-0.09165602829235842,-0.061994283748276945,-0.028599911308359247,-0.001958372351041975,-0.18936774544733578,-0.18288614777155238,-0.20966265365374545,0.019364493095624002,0.09079189807726233,0.1341327828578253,0.10196685613186954,-0.0029889493348077578,0.09439725807703941,-0.05074621699495143,0.08857933830123005,0.00032411570552807355,0.13470882940036488,0.1585879448523652,0.15773636394806442,0.01881003250417498,0.015580335701845917,0.02112262492249743,0.11706756607483282,0.014521917209107423,-0.010813561149796957,0.07754469509561623,0.015603383872781653,0.031138384459491367,0.017882852627485086,-0.004078705446641545,0.01330998421047388,0.008890518352179598,-0.0448887858340211,-0.14261755967774395,-0.17193700446137683,-0.019623829182077196,-0.06331702046183706,-0.005305010727211329,-0.04113745592689579,0.02203169763542601,-0.13190280189632186,-0.12134912235117104,-0.15892182480297923,0.03761905127009513,-0.004050339939244874,0.07470986961295324,0.0711576358519465,-0.03739515996560086,0.019709143325371842,-0.015923331087995873,-0.006297189002178999,-0.04227298270471387,0.06648427788601963,0.08659754705866439,0.09736115995766972,-0.04662654295055529,27.719287811020386,0.0,33.34200728167975,19.35927720421421,35.35590875573402,43.01892318868571,49.587772689580426,53.68981519444526,54.65380356408308,149.1728642823481,95.49450694540057,28.56023465164237,21.099743181403777,0.0,53.67835733694752,62864.1993286652,55622.94810390849,11052.668693697779,286.0,105.0,124.0,149.0,181.0,190.0,214.0,250.0,266.0,1083.4378545200018,78.0,5.905361848054571,6.715383386334681,7.5678626054638825,8.402231172946555,9.257510176452573,10.104180975012746,10.962683108840446,11.816645735194744,12.67804620818237,0.6833333333333332,1.0026571428571427,1.144362250561708,0.6447893002842633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6504942044482463,0.9869467787114847,1.0208823223389865,0.6137896848012563,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,1.0,12.0,0.0,0.0,0.0,0.0,6.0,1.0,14.0,7.0,0.0,2.0,8.0,1.0,0.0,0.0,0.0,81.62596221670861,48.042397637319624,5.959554568743835,64.97897702286656,0.0,57.7323137574257,0.0,0.0,0.0,64.05236543200472,55.36374523494726,43.85768489409676,19.007418857986544,547.2728974818473,-5206.138687564826,-129.88992476588263,-37.18670491117733,-115.69197083477391,765.565323390279,7282.727257825533,67.98915819882431,52.01948041303951,76.6602869244793,0.46153846153846156,0.6698225217305298,0.05339780486110568,637.4517867370193,0.030810041044954013,751.4844728720415,0.33017747826947,14.0,0.24358974358974358,0.24941293436456816,0.5182196014625424,0.7133562274521672,0.8580396372308617,0.928354070674467,0.9479009922111729,-5.404500000000021,,6.392857142857144,6.164407387347527,5.282553021864747,6.379407031283015,-19.91198258272813,5.545670134638924,5.228594707627776,-9.262645410004804,275.52209999999957,57.84643641963074,0.0,42.117429958894796,39.39440959560878,106.12212123951778,31.139976431231304,65.72420659954848,0.0,5.749511833283905,5.056245805348308,0.0,6.3578422665081,2.3978952727983707,7.813187267521416,4.59511985013459,9.34215779659637,6.6052979209482015,10.915215728843394,95.66666666666666,14.25731070496928,0.0,0.0,0.0,0.0,0.0,1.0004588988405874,0.0,140.37199999999999,0.0,148.26723934736825,0.0,0.0,0.0,0.0,3.875852152004578,-10.068729889072724,160.2107150786391,71.61952509101744,0.0,5.749511833283905,160.41967178171654,65.58155227064206,0.0,56.07265434387607,59.58970834879016,0.0,0.0,0.0,90.27050203979687,91.0691886227545,92.67468841114957,1614.7491994664815,,1381.7833939655984,1422.307485568746,1405.7383787694516,1382.0169066328376,1885.3794629848103,1435.480472918263,1443.0696428995839,1766.2849614659574,92.67468841114957,1614.7491994664815,,1375.9444949318854,1416.3931163845145,1400.59669382817,1376.191328762627,1901.5527788080271,1430.2016733053351,1438.049817243611,1774.3125874879615,4.777300325405575,1139.8576900260746,,972.0791444793638,1013.7761649458027,1002.7495918422776,972.2441570244937,1337.0325175053872,1022.3544070482974,1026.4801622401142,1259.3509022330927,1.235662512148661,21.529989326219752,,18.42377858620798,18.96409980758328,18.74317838359269,18.426892088437835,25.138392839797472,19.139739638910175,19.240928571994452,23.550466152879434,2.414931175340371,807.3745997332406,,690.5583159452312,711.235934882871,702.9396234250174,690.6741659793996,940.6525636390572,717.8141787275935,721.6045360458936,882.5249710389785,138.17254901960786,0.0,0.0,0.0,0.0,33.349501520290815,9.91457033808781,142.9235251274581,-2.2120450765975193,17.727353061272684,0.0,1.994182271742992,-11.456057893269636,1.1836978976962278,0.0,0.0,0.0,85.93055587217587,879.36860772879,248.93895560404155,517.234788525685,712.0005812369333,856.4090379005844,926.5898473679686,946.0996223722956,1918.0,236.4099052164826,433.46961314333623,128.08296190869876,514.5299999999997,463.9299999999998,0.8571428571428571,8.2326229388934,7.285402218862249,5.071315095738621,8.52332395003666,,8.511820986664505,8.528718171513745,8.529046724108422,8.511816500158217,8.522685421995444,8.52865268295637,8.52795323454558,8.528855742075734,0.06761753460984828,0.11364431933382214,,0.11349094648886006,0.11371624228684993,0.1137206229881123,0.11349088666877623,0.11363580562660593,0.11371536910608493,0.11370604312727439,0.1137180765610098,3.638503192229827,4.157709420281454,,4.156358922218397,4.1583420977776235,4.158380620127618,4.156358395127016,4.15763450209649,4.158334419154941,4.1582524041966815,4.158358227921651,791.0000000000027,4684.178132263445,722.5763108415962,,723.0818309845262,718.3035836400019,718.6447661781432,723.0849060963687,722.2041659141261,718.3688577628764,718.5671945963312,719.1315193433004,62.45570843017927,9.634350811221282,,9.641091079793682,9.577381115200025,9.581930215708576,9.641132081284917,9.629388878855014,9.578251436838352,9.580895927951083,9.588420257910672,10.46684877448198,8.597726055493396,,8.59842541884758,8.591795318668074,8.592270189660614,8.59842967162392,8.597210897735263,8.591886187151438,8.592162242351511,8.592947281345399,0.0,153.32678939706906,27.641923399360497,34.412949411647574,-10.517925425745567,2.8012528116996434,-1.3832162336329799,-0.44262229880786297,1.994182271742992,992.941863727171,718.480777061602,-6834.817852196154,-170.5244577388557,-48.820127515686806,-151.88484115991452,1005.0634171210879,9561.042696260613,89.25876548833806,68.29316211614722,100.64255469748012,29219.0,113.0,5.680150286784038,2.0127547939857355,0.0,0.0,1.0824953830727257,0.2192821628718895,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.32147816943725344,0.15113988565028466,0.47719038813317727,0.16400857540778102,55.190930239707036,42.46041285235856,35.606080054517925,26.226409585625067,32.54673452867878,20.15316762885825,24.12840641357343,14.093880714745682,18.260989425248134,10.076727534059211,14.957813428752212,6.984557412265218,9.677748568238941,4.494618972022071,6.81653227900112,3.1093364586268275,10.6604242529382,3.6253463419297653,14.015028476779772,4.776314766312657,21.718664146597288,6.055726321397064,247.2396481211424,130.5591842974417,83.2188289358358,50.28619763014934,34.77508408485138,31.753691635331773,366.0,412.0,152.08554500000048,80.6364550000001,0.2857142857142857,534.29,28.916666666666668,16.777777777777775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,140.0,0.0,4.0,143.0,12.0,12.0,18.0,125.0,24.0,78.0,119.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,65.0,16.0,14.0,2.0,75.0,29.0,0.0,15.0,12.0,0.0,4.0,19.0,2.0,0.0,0.0,0.0,2.0,4.574710978503383,6.494131983172509,5.003946305945459,5.267858159063328,5.564520407322694,5.957778489453175,5.876509540056395,6.021933129548746,6.320318552844306,6.432940092739179 +2801,CN(C)CCCN1c2ccccc2CCc2ccc(Cl)cc21,0,24.31111111111111,5.709526666666666,3.0444444444444443,4.7912208504801095,161.17418479343618,98.07738597777781,1.5641688180339328,5.8519177777777776,2.087772019847923,7.339408288888888,216.71881244455824,23.48936170212766,6.082446808510638,3.6808510638297873,5.130023640661938,144.79344707224882,88.64194665957453,1.8656472155319157,6.25835106382979,2.493936608002802,7.533212808510632,260.1444191683443,19.25,5.978928571428573,3.4285714285714284,3.793650793650794,155.3336854229135,71.22846774999998,1.5911606458730836,6.1144107142857145,2.204622281011171,7.505267714285708,215.37688184650276,16.95575221238938,5.847044247787613,3.1150442477876106,3.1189773844641104,154.72861843490944,61.014362115044264,1.5009173617485303,5.990190265486726,2.0802651225463418,7.417205309734512,196.13092435120396,13.93984962406015,5.71193984962406,2.699248120300752,2.18796992481203,159.69610735343508,49.08358583458646,1.3292861206403612,5.826560150375941,1.9189795476345188,7.320260781954889,168.16902120322393,13.774436090225564,5.611902255639098,2.593984962406015,2.0167084377610696,156.17156415915167,48.50401719548871,1.3506179634245865,5.739928571428571,1.893916890992915,7.228955413533834,167.52799251228834,13.143939393939394,5.595590909090911,2.287878787878788,1.5875420875420874,162.03977339784072,45.759246356060615,1.2384491712030985,5.728056818181819,1.8132871929168226,7.288129848484849,149.0265045493151,13.650943396226415,5.643235849056603,2.2641509433962264,1.5209643605870022,160.62277397397284,47.08335000943397,1.2636539700544525,5.790231132075472,1.8895877009084554,7.337290169811323,151.98062923979202,12.48314606741573,5.664214606741573,2.0,0.7890137328339576,162.88845775974482,41.87974608988764,1.211038943387944,5.796993258426969,1.9224580385629073,7.3568786067415735,144.21862244752282,10.373333333333331,0.04829955555555554,0.006621889571990975,0.5550617283950615,2.782527053802774,1.43507719796605,49.12186476839504,0.2571488144560958,0.06094291358024688,0.17852284637429178,0.031036728888888886,54.64396318033819,0.41153664302600435,0.0064732104018912695,-0.0011023070277174536,0.22838980824796437,1.054113053601715,-0.3032161991391445,1.9216415521723247,-0.01374593441039929,0.006863516679800367,0.012563171981181485,0.0017014621276595571,-0.7058207214382882,0.47666666666666596,-0.0066809841269841064,-0.000962768915440702,0.020070546737213407,0.03947307683933191,0.23280824068472317,2.364499559382721,0.03650176097084837,-0.005368495590828918,0.006579911303149631,-0.0037604923809523966,5.962030745372146,-0.625054080629302,-0.003069644051130765,-0.00027050803356502633,0.033335518409264756,0.034089234724363454,-0.11514736915700766,-2.964400032505186,-0.016647879822202567,-0.004023857533049264,-0.017773861393017044,-0.002354939115044256,-3.252401467056851,0.08815371762740173,-0.001298653299916453,0.0002427738093450797,-0.04294811101828646,-0.2292405453505736,0.2306644211009099,0.410500092924906,0.012763837504741972,-0.0007063889353012079,-0.016138445856663824,0.001469952481203007,1.4898331641417335,0.20344193817878015,0.0006351812865497054,-0.0002082393262823903,-0.041444351619790216,-0.13409527476670646,-0.1828349388262344,0.8809808640193082,-0.014900737806270561,0.0013205116494941068,-0.006570630570849836,0.001226478796992487,-3.9190423160914496,0.15646464646464647,-0.0006731919191919221,-0.00010604869559162069,-0.051694725028058365,-0.09967798700308994,0.01771986074811142,0.7910162412008964,0.009604563968992912,-0.000544950617283955,0.008906032671718796,-0.001285143030303029,1.748815801954338,-0.8691404612159331,0.0003849727463312346,0.00044068923135684066,-0.09887724202189613,-0.297305633920278,-0.2467163129821333,-4.1263155593803855,-0.03076728987526184,-0.0015105655718611677,0.01292889645393818,-0.0016655154716981166,-5.116141761433993,-1.4322596754057426,-0.006601128589263414,-0.00045289896269985004,-0.17303925648494947,-0.8596282082239448,0.01495494392884657,-6.826534510467469,-0.029360062693792197,-0.007849455402968497,-0.019728721670013622,-0.0016972175280898895,-6.13571423256272,,,0.5006493506493507,1.1931818181818181,0.5681818181818182,0.022727272727272728,0.625,-0.056818181818181816,0.8841488892832824,0.012106659856011538,0.023833932583284267,0.7894164246280062,0.2302510415041441,0.2537429151113487,1.6735653139112885,0.4839939566154928,2.050953673802596,1.7756011726406837,0.19462032372430024,0.0,0.08073217743761218,0.27535250116191246,6.981221698133347,1094.0,256.9287,137.0,215.60493827160494,7252.838315704628,4413.482369000001,70.38759681152698,263.3363,93.94974089315653,330.27337299999994,9752.34656000512,1104.0,285.875,173.0,241.11111111111111,6805.292012395695,4166.171493000003,87.68541913000004,294.1425000000001,117.21502057613169,354.0610019999997,12226.787700912182,1617.0,502.23000000000013,288.0,318.6666666666667,13048.029575524733,5983.191290999998,133.65749425333902,513.6105,185.18827160493836,630.4424879999995,18091.658075106232,1916.0,660.7160000000002,352.0,352.44444444444446,17484.333883144765,6894.622919000002,169.60366187758393,676.8915000000001,235.06995884773661,838.1441999999998,22162.794451686048,1854.0,759.688,359.0,291.0,21239.582278006867,6528.116915999999,176.79505404516803,774.9325000000001,255.224279835391,973.5946840000001,22366.479820028784,1832.0,746.383,345.0,268.22222222222223,20770.818033167172,6451.034286999998,179.63218913547,763.4105,251.8909465020577,961.45107,22281.22300413435,1735.0,738.6180000000002,302.0,209.55555555555554,21389.250088514975,6040.220519000001,163.475290598809,756.1035,239.3539094650206,962.0331400000001,19671.498600509593,1447.0,598.1829999999999,240.0,161.22222222222223,17026.01404124112,4990.835101000001,133.94732082577195,613.7645,200.29629629629628,777.7527580000002,16109.946699417955,1111.0,504.1151,178.0,70.22222222222223,14497.072740617288,3727.297402,107.78246596152702,515.9324000000003,171.09876543209876,654.762196,12835.45739782953,466.7999999999999,2.173479999999999,0.29798503073959387,24.977777777777767,125.21371742112484,64.57847390847225,2210.483914577777,11.57169665052431,2.7424311111111095,8.03352808684313,1.3966527999999998,2458.9783431152186,19.342222222222205,0.30424088888888967,-0.051808430302720324,10.734320987654325,49.5433135192806,-14.251161359539791,90.31715295209926,-0.6460589172887666,0.32258528395061725,0.5904690831155298,0.07996871999999919,-33.17357390759955,40.03999999999994,-0.561202666666665,-0.08087258889701897,1.6859259259259263,3.3157384545038804,19.555892217516746,198.61796298814858,3.066147921551263,-0.4509536296296291,0.552712549464569,-0.31588136000000133,500.81058261126026,-70.63111111111112,-0.34686977777777644,-0.030567407792847976,3.7669135802469174,3.8520835238530706,-13.011652714741865,-334.977203673086,-1.8812104199088902,-0.4546959012345668,-2.008446337410926,-0.26610812000000095,-367.52136577742414,11.72444444444443,-0.17272088888888826,0.0322889166428956,-5.712098765432099,-30.488992531626288,30.678368006421017,54.5965123590125,1.6975903881306824,-0.09394972839506065,-2.1464132989362885,0.19550367999999993,198.14781083085055,27.05777777777776,0.08447911111111081,-0.02769583039555791,-5.512098765432099,-17.83467154397196,-24.317046863889175,117.17045491456798,-1.9817981282339847,0.1756280493827162,-0.8738938659230282,0.16312168000000077,-521.2326280401628,20.653333333333336,-0.08886133333333371,-0.013998427818093932,-6.823703703703704,-13.157494284407871,2.3390216187507074,104.41414383851833,1.2678024439070643,-0.07193348148148206,1.1755963126668811,-0.16963887999999983,230.84368585797262,-92.12888888888891,0.040807111111110864,0.04671305852382511,-10.48098765432099,-31.514397195549467,-26.15192917610613,-437.3894492943209,-3.2613327267777548,-0.1601199506172838,1.370463024117447,-0.17654464000000036,-542.3110267120032,-127.4711111111111,-0.5875004444444438,-0.04030800768028665,-15.400493827160503,-76.50691053193108,1.3309900096673446,-607.5615714316048,-2.6130455797475056,-0.6986015308641963,-1.7558562286312123,-0.15105236000000016,-546.0785666980821,0.705760602662089,0.6411502909221691,0.4436611268975352,0.3463972479223396,0.2914092489972165,0.2014136262745777,0.17686577120238234,0.1047993785702193,0.11145541021862441,0.05752811947639429,0.07208364778054739,0.03221756395066992,0.04675645540077388,0.018949388369430848,0.03089948008481057,0.01091054946090374,17.001102772209848,5.691735497888266,3.1280665292579934,2.1893829286901765,0.35178056231324034,-0.4192638209216048,3.229469867315244,0.9885986204594541,5.0238149287723,0.7739965706542754,14.545273644196586,10.951669868195507,35.45051726465934,11.70277362583471,2.207830560419378,1.045043075641386,3.1823484981900374,2.2400247308940315,2.2634408586535555,1.3042508367097383,3.4929727511614748,2.4360872172016323,22.455864190082437,15.591120247978242,0.23425543186636882,0.5192127520610682,0.7059848579315282,0.8055031721953905,0.8365402264261542,0.8520587535415359,1.7289409333820092,651.6334849101904,0.0,0.0,2.0,0.0,10.0,3.0,2.0,0.0,0.0,4.150056616549765,2.5178437535290317,1.4480279879717806,0.8779950000961554,0.7002172223183765,0.6113283334294879,130.111087771848,650.9504654429122,28.225936161553093,14.46556589873138,28.677453237653143,,9.0,348.0,0.0,0.0,0.0,0.0,37.37461099434451,22.501675532761116,0.0,6.06636706846161,60.29336583782499,11.600939890232516,11.014285714285714,26.25,12.5,0.5,13.75,0.0006493506493506471,0.0,-1.25,0.08663594470046088,0.048120300751879674,-0.0385156439485812,0.0,0.06171573604060898,0.0,0.5285714285714289,0.7675324675324674,0.44193548387096804,0.48045112781954924,0.7675324675324674,19.451275564232212,0.26634651683225385,0.5243465168322539,17.367161341816136,5.06552291309117,5.582344132449672,36.81843690604835,10.647867045540842,0.652284263959391,0.1556420233463035,0.0,0.29961089494163423,0.3684210526315789,0.3789559375759896,-0.4589821930746555,-0.02372131652295443,-0.010199604290547901,-0.025499010726369748,0.6210440624240107,0.7521934280557534,0.028796605465465246,0.016715409512350073,0.027859015853916792,-5.665055933803681,0.7039326149975388,0.8890791471192971,1.3848727213200644,0.7308624214431744,0.6930142331905643,1.3986389224212936,0.711039055225599,1.0257229708950604,0.7902942942826967,0.9932958771821794,0.7645166951863223,1.0146606755178147,0.7619251642387891,1.4985645140511983,1.845435630694732,1.2792323335027966,1.2631055568562688,0.9851001789854289,0.763551575748628,0.7817290654203276,1.233471101645649,0.9480014260062314,1.2381453647436143,0.8429522188192461,0.9500951687634129,1.149449005640153,1.312942270589939,1.1769754038988447,1.1234370216792093,1.1513470459425263,0.9523135796344478,1.0289825828981711,1.0728146796694864,1.0419080672791563,1.0643782529606762,1.0359575661567557,0.7973017376345749,1.1026985447681623,1.216424626998261,1.1324351804778856,1.145105381836551,0.8645160585662119,0.8022485964407209,0.8831785084352627,0.9823971074649492,1.042917267327829,0.8387997898890617,0.9331525214502935,0.7668270934405423,0.7115929673642114,0.6680064052104739,1.019853905225698,0.9635344507138608,1.102912415116,0.7749236216808528,1.0277651886549304,0.7202017769548531,0.9388213706182504,0.5635585695566846,1.0658437932700067,1.0989717223650386,0.9757163626994493,0.9307213276736317,0.9875444839857654,0.9739726207482844,0.9202980925476101,1.094021147760876,0.9645964190754103,1.032162055726711,0.9013404675404398,1.1339520697866594,0.9497053318628763,1.3098413930251736,0.9725156873890786,0.7938267782828834,1.1134425569059294,1.058167515605588,1.1077289496639628,1.302613591697854,1.1455355118399322,1.1033083593430435,0.9172846126818431,1.2755932112753288,1.0816507407274132,1.3100911778015272,1.2751693395751398,1.1565919016546156,1.256847534887441,1.2914615170927315,0.948265998149995,1.3046317431165688,1.1065293472111692,1.2862187414092232,1.2256965925807657,1.3437504038548045,1.0778595767308792,4.0,0.0,2.4444444444444455,1.4375,1.2605555555555557,0.5938888888888888,0.5046712018140589,0.3428642290249433,0.23962270093222468,0.0625,4107.667405434389,4751.056864083121,2076.8775362014294,1848.7010965670606,11.099448809060593,0.4664606322586034,5.921992899864186,0.8742759399990409,1.0,0.3684210526315789,1.3417964797799098,2.974009342800643,4.043825108357894,4.613858096233519,4.791635874011298,4.880524762900187,0.16666666666666666,0.0,0.0740740740740741,0.03885135135135135,0.03707516339869281,0.018559027777777775,0.018691525993113293,0.015584737682951967,0.014976418808264043,0.010416666666666666,0.3948956324195587,16.84375,7.7134986225895315,4.11032990805841,137.86019454009644,1.0,4.020585764144596,94.08595773611937,,76.47571763371084,76.02423028948459,74.53562000763337,76.46070688429705,100.91249203396653,76.75450986348041,77.45831685043481,94.11748952209578,0.03967255556163282,0.1340221525319337,-0.1664641211143042,0.41146740364958007,0.3788329936131613,-0.21128912059148877,0.039119881975830585,-0.0534551731823994,0.11262206344569985,0.07037290876956713,0.054820923098911976,-0.012916719073045826,0.04595115681233927,-0.13832392555454154,-0.1453918711530598,0.03615912557193698,0.014186053208498209,0.16222698055176735,0.04813537862479597,0.14194800410826117,-0.08809056337222744,0.03685753076866229,-0.12116265197968877,0.1091068509378797,-0.060255856101796484,-0.06355429187334803,-0.04085058058189482,0.06005731741882665,0.01225117817912138,-0.0802377525893431,-0.0603478725101755,-0.06474025500531692,-0.0660266681826892,-0.09956071031800764,-0.0758758799445299,-0.0595198678456602,0.008498109025777804,-0.02688747929414598,0.03666231620230507,-0.07737537794664602,-0.08238573818618554,0.16073310998727666,0.008356769329918056,0.049635995918313684,-0.011590993830169719,-0.09039989101914657,0.04736170768721856,0.02726436878717831,0.019612012035229453,0.013150872285338145,-0.031447115512646624,-0.0746662028737324,-0.048191903321638335,-0.12740425329408642,0.01793459731573811,-0.05794597123765716,0.021668009813073947,-0.03680554452439002,0.039517012291574484,-0.07171958415896133,0.015083352808288545,-0.013937849146822839,-0.01601486923614395,-0.09313329019734719,-0.03582282762241747,0.012347670754734285,0.0161031395068258,0.03735021679686859,-0.008941984970350795,0.04988735533068058,-0.04140716745323986,0.03200382439653629,-0.08378603417891388,0.007970523577353167,0.06655037456692903,-0.1781373799771706,-0.10684734709549783,-0.1719184956264422,-0.08400160659281919,-0.11964779981715562,-0.024786566363817236,0.0724215231636594,-0.05366272578726456,-0.09362684299726756,-0.13807130546970528,-0.13667058657859918,-0.06839421856497055,-0.3117477708025114,-0.3089379515822222,0.010421003100071807,-0.1389714039288601,-0.11417537644842994,-0.12880013346642327,-0.11051090698302164,-0.054684162566419545,-0.1122853079362745,18.21094261850041,20.91726150812718,4.157598043214872,13.930251457904188,28.637781995521905,34.03214036391025,36.07380028235555,37.23104472679999,37.3206447268,45.12098082365712,39.06322579809504,4.281647121934605,0.0,1.776107903627468,6.057755025562074,3576.5669571690764,2624.556675139775,1696.8981067343605,114.0,33.0,43.0,58.0,78.0,89.0,100.0,111.0,117.0,314.15497641600064,24.0,4.74493212836325,5.58724865840025,6.466144724237619,7.337587743538596,8.227108234348146,9.11173476822206,10.006269747179154,10.897498296714174,11.794511494249958,0.6222222222222223,0.9517333333333335,1.122420695323886,0.5825345285340289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6845806919494346,0.9437037037037034,0.9844865258557906,0.6186178392925797,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,9.799819461700956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.866408164078955,69.2285694288238,22.942162269021026,0.0,203.67116018832505,-246.6815439474455,-12.749102411031135,-5.4818120877210115,-13.704530219302526,333.78224796017304,404.26892149546666,15.476833750521958,8.983753811010368,14.972923018350617,0.4444444444444444,0.9865861906177282,0.2815017304091862,0.7599446851323093,0.05454831501836492,78.86344194473452,0.013413809382271862,5.0,0.16666666666666666,0.24432490386107772,0.54153111720855,0.7363316238485095,0.8401277338093879,0.8724989161151548,0.8886845072680382,4.528400000000004,,0.9327731092436975,0.4879432787375836,0.5821600835107351,0.9461851242422312,-0.8024186822351957,0.5154063957361761,0.4903101588860408,-0.5553606267492481,95.47900000000006,0.0,0.0,4.899909730850478,0.0,19.26246486877803,32.08476650803001,58.614105776366586,0.0,0.0,3.8918202981106265,0.0,5.198497031265826,0.0,6.698268054115413,2.70805020110221,8.29529885950246,5.37989735354046,9.947934967271424,28.000000000000004,15.07083378824781,0.0,0.0,0.0,0.0,0.0,6.24939646846393,0.0,42.82800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.508931289574875,4.899909730850478,11.374772549367124,0.0,32.08476650803001,12.841643245852019,0.0,17.54772460632,42.46456947923127,5.022633313741326,0.0,0.0,26.2140537840313,30.80613113772456,28.333757575714277,188.17191547223877,,152.8666377120359,152.00410209908395,149.0183163713112,152.83539693911757,202.1915136835485,153.46216460007574,154.8720600500618,188.487415692714,28.333757575714277,188.1719154722388,,152.018662158178,151.56051730023165,148.48907993175607,151.97522864435194,202.62740275016836,152.9936133312247,154.42632354198366,188.79033967094097,4.848279086650033,128.13000390259194,,106.76906148868935,105.44382535779464,103.21440435183453,106.76242371090336,144.52051160923105,106.64564848337503,107.76294145112301,133.61908786454444,1.287898071623376,8.553268885101762,,6.948483532365268,6.90927736814018,6.7735598350596,6.947063497232617,9.190523349252205,6.975552936367079,7.039639093184627,8.567609804214273,2.458234094691463,94.08595773611937,,76.47571763371084,76.02423028948459,74.53562000763337,76.46070688429705,100.91249203396653,76.75450986348041,77.45831685043481,94.11748952209578,42.466666666666654,0.0,4.252354917275552,6.27193117318944,0.0,0.0,0.0,44.301893663510576,5.409793162635424,0.0,0.0,0.0,0.0,4.6901349346322885,0.0,0.0,0.0,27.83780276816609,530.2441105797417,60.38084159009594,133.83042042602895,181.97212987610524,207.62361433050836,215.62361433050842,219.62361433050842,789.0,120.17303579525321,7.20929756875631,64.11976676490842,6.48,6.48,0.8,8.392554286025705,5.584962500721156,4.026823727617233,4.610400752135785,,4.608150046025923,4.606181992730072,4.60644145464326,4.608172327941882,4.597339912092291,4.606524456642109,4.6064453826293335,4.600045408024647,0.1830374421644197,0.20956367055162659,,0.20946136572845103,0.2093719087604578,0.20938370248378455,0.20946237854281283,0.20896999600419505,0.20938747530191407,0.20938388102860606,0.2090929730920294,2.1814352686451017,2.31677214464352,,2.3162838452993255,2.3158566730816323,2.315913000557674,2.3162886806154215,2.3139352166110267,2.3159310190762814,2.315913853273255,2.3145235351203044,252.38999999999993,226.9105093822448,122.62220598824787,,122.41197175819302,122.89942618040094,122.93409113215874,122.40072751517445,122.64222205434059,122.80482959109636,122.77273720257445,122.71457390438039,10.31411406282931,5.573736635829449,,5.564180534463319,5.586337553654588,5.587913233279942,5.56366943250793,5.574646457015482,5.582037708686198,5.580578963753384,5.5779351774718355,6.2130130683196105,5.5975654929810235,,5.595849534141528,5.599823707929436,5.600105727666748,5.595757674176257,5.597728713275926,5.5990537042216735,5.598792341678477,5.598318481754555,0.0,4.6901349346322885,0.8155006508776352,5.4338958175862935,0.0,15.07083378824781,3.3015575396825394,2.108235622952885,4.252354917275552,299.69663689670045,109.46375918477396,-132.57983652188807,-6.852048541642915,-2.9462185893752904,-7.365546473438225,179.39240674566202,217.27570966625612,8.318077046565726,4.828349103694579,8.047248506157633,995.0,37.0,1.4385050488558724,0.9174905341311732,0.0,0.0,0.24719387459906544,0.09834817412823682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.29455071672869226,0.10108574855562388,15.526733258565956,14.10530640028772,10.647867045540844,8.31353395013615,9.616505216908145,6.646649667061064,7.605228161702441,4.50637327851943,6.464413792680216,3.3366309296308687,5.622524526882697,2.512969988152254,4.1613245306688755,1.6864955648793456,3.089948008481057,1.091054946090374,2.9141103667184027,1.5159816839551945,4.754376559603994,2.1123344745492165,7.911014829420885,3.034965421488538,76.12671589045206,46.17487380305453,31.413940118947696,26.419016502987457,24.246307909715654,23.803311803701494,114.0,133.0,51.44623899999998,27.003760999999994,0.3333333333333333,114.03,6.777777777777777,4.86111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,45.0,0.0,1.0,47.0,12.0,0.0,6.0,41.0,12.0,24.0,35.0,0.0,0.0,0.0,19.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,2.0,0.0,1.0,22.0,3.0,0.0,2.0,0.0,0.0,3.0,4.0,0.0,0.0,1.0,0.0,2.0,3.4339872044851463,7.161464407123637,3.9889840465642745,4.5217885770490405,5.073610093257644,5.633002292595154,5.823045895483019,6.155786537613849,6.54436138479466,6.898998298303327 +13109,C#C[C@]1(O)CC[C@H]2[C@@H]3CCC4=CC(=O)CC[C@@H]4[C@H]3CC[C@@]21CC,0,17.88235294117647,5.711176470588234,3.176470588235294,4.549019607843137,161.00545698380338,69.99867323529412,1.4176954771719998,5.798817647058822,3.515522875816994,7.317083529411763,199.94081048491543,20.925925925925927,5.9944444444444445,4.185185185185185,4.537037037037037,142.0230419987861,77.5867638888889,1.8557915621481482,6.1600370370370365,2.4203960905349793,7.4571737777777765,258.32901701416716,17.38888888888889,5.82712962962963,3.8055555555555554,3.3796296296296298,147.88949453532862,63.263063972222206,1.6081239991498892,5.968333333333333,2.1413323045267485,7.349253,217.07198895282102,14.133720930232558,5.752732558139535,3.0988372093023258,2.203488372093023,153.73480645675855,49.69481719186046,1.3866657682559131,5.865808139534883,2.1912144702842378,7.33141123255814,180.78639824909718,11.400943396226415,5.6899056603773595,2.5330188679245285,1.3632075471698113,155.89418531402413,37.56814380188679,1.260907757825995,5.791049528301886,2.1125524109014675,7.29780075471698,156.1288009198019,8.207627118644067,5.486313559322033,2.055084745762712,0.961864406779661,162.74215597954034,25.411230258474568,1.037513722993504,5.562002118644068,1.8946563088512245,7.161225169491525,119.96451227984146,7.394736842105263,5.392842105263158,1.9210526315789473,1.0157894736842106,166.87360318568136,23.232827147368415,0.9383557277224158,5.454163157894737,1.8121345029239768,7.102231200000002,106.84855015297632,8.851239669421487,5.525123966942148,2.024793388429752,1.396694214876033,165.0746893150992,28.874883586776857,1.0042054902751985,5.590338842975206,2.1070936639118454,7.211425652892563,119.79662591378516,9.650602409638553,5.63987951807229,1.9879518072289157,1.6385542168674698,163.3188858833539,31.48179553012047,1.0375020401279635,5.708078313253012,2.4618473895582333,7.306340096385543,126.07933801217153,6.77124183006536,0.07287966166858899,0.007845003421067644,0.7158785082660516,2.771241830065359,1.3256607311657644,32.464310602076125,0.24007882342589623,0.07358854286812758,1.2850880003417486,0.04295723183391003,53.24675509494525,0.3086419753086416,-0.0023567858515955256,-0.0037134176407739618,0.34221880473322236,0.9074074074074076,0.147212751398366,1.5457090188389029,0.025725962415088517,-0.0018028856422743099,-0.03237729671873587,-0.0016334758426246713,4.693981633250058,0.3827160493827157,0.004019394250074761,7.459423488850113e-05,-0.008362168396770434,0.1944444444444445,-0.0026336601657888535,1.80411346328335,0.0011811602663652236,0.004559532658379268,0.08036275815094858,0.0015745590157631509,1.4799457668111045,-0.1040051679586564,-0.0010955759412748182,0.0005686783971342687,-0.17700481925556358,-0.41408268733850123,-0.04176278401659019,-0.5074231065220897,-0.0071139526615073495,-0.0009780777518485627,0.04328162270126675,-0.000854945924197325,-1.2448422786030116,-1.5288259958071277,-0.010081844428485403,-0.0005810590126286912,-0.1266258260610941,-0.6325995807127883,-0.24214556895028475,-7.341419593474572,-0.04607683001450357,-0.0117866653246574,-0.09278880603090084,-0.004123807860547108,-11.49899537718534,-0.5682674199623351,-0.003388967085671094,-0.00013298968750426852,0.01584299389413459,-0.056967984934086675,-0.10589587707026175,-2.73718853054073,-0.019725092932864535,-0.00399095230647926,-0.06525675334200741,-0.0014101480851562704,-4.623910290400946,0.8742690058479536,0.0046652299722778545,0.0001269357589043142,0.06379125437584733,0.3374269005847952,0.12932635032539494,4.200524538171557,0.0250615748263165,0.005902324004937342,-0.024500051712004648,0.0014030393735203427,6.4997871337843325,0.6235078053259873,0.0012622926337930982,0.00035226248328009324,0.012852653620190578,0.16620752984389345,0.1080631198757958,3.0133375763390453,0.020733469080954085,0.00243182660197443,-0.07292177480653941,-0.0004624394177700119,5.147688814068774,-0.08165997322623818,-0.0021756692282393704,7.799528966247543e-05,-0.01164982884247487,-0.005354752342704147,-0.05371902961079965,-0.3997082937841322,-0.008723431774745938,-0.0017078908482835626,-0.11649204790454902,-0.0019132658523366894,-1.2665504233241507,,,0.4855072463768116,0.782608695652174,0.1956521739130435,0.0,0.5869565217391305,-0.391304347826087,1.3926127252063227,0.016106146817314405,0.03106266855644484,0.40043872288865795,0.08813438343244846,0.3920296246360239,1.7930514480949806,0.48016400806847237,2.069452747810142,1.9153102069193042,0.0,0.15414254089083745,0.0,0.15414254089083745,6.121743728156878,912.0,291.2699999999999,162.0,232.0,8211.278306173972,3569.932335,72.30246933577199,295.7396999999999,179.29166666666669,373.1712599999999,10196.981334730686,1130.0,323.7,226.0,245.0,7669.244267934449,4189.68525,100.212744356,332.642,130.70138888888889,402.68738399999995,13949.766918765026,1878.0,629.33,411.0,365.0,15972.065409815492,6832.410908999998,173.67739190818804,644.5799999999999,231.26388888888886,793.719324,23443.77480690467,2431.0,989.47,533.0,379.0,26442.38671056247,8547.508557,238.50651214001707,1008.9189999999999,376.8888888888889,1261.0027320000002,31095.260498844716,2417.0,1206.2600000000002,537.0,289.0,33049.56728657312,7964.446486,267.31244465911095,1227.7024999999999,447.86111111111114,1547.1337599999997,33099.30579499801,1937.0,1294.7699999999998,485.0,227.0,38407.14881117152,5997.050340999998,244.85323862646698,1312.6325,447.13888888888897,1690.0491399999999,28311.624898042584,1405.0,1024.64,365.0,193.0,31705.98460527946,4414.237157999999,178.287588267259,1036.291,344.3055555555556,1349.4239280000004,20301.2245290655,1071.0,668.54,245.0,169.0,19974.037407127,3493.860914,121.50886432329901,676.4309999999999,254.9583333333333,872.5825040000002,14495.391735568004,801.0,468.11,165.0,136.0,13555.467528318371,2612.989028999999,86.11266933062097,473.7705,204.33333333333337,606.426228,10464.585055010237,345.33333333333337,3.7168627450980383,0.40009517447444987,36.50980392156863,141.33333333333331,67.60869728945399,1655.6798407058823,12.244019994720707,3.753015686274506,65.53948801742918,2.1908188235294115,2715.584509842208,16.666666666666647,-0.1272664359861584,-0.20052455260179394,18.479815455594007,49.00000000000001,7.949488575511764,83.46828701730075,1.38920197041478,-0.09735582468281273,-1.7483740228117368,-0.08820769550173226,253.47500819550314,41.33333333333329,0.43409457900807424,0.008056177367958122,-0.9031141868512069,21.000000000000007,-0.28443529790519617,194.8442540346018,0.12756530876744415,0.4924295271049609,8.679177880302447,0.1700523737024203,159.83414281559928,-17.8888888888889,-0.18843906189926873,0.09781268430709422,-30.444828911956936,-71.22222222222221,-7.183198850853513,-87.27677432179942,-1.2235998577792642,-0.1682293733179528,7.4444391046178815,-0.1470506989619399,-214.112871919718,-324.1111111111111,-2.1373510188389053,-0.12318451067728253,-26.844675124951948,-134.11111111111111,-51.334860617460365,-1556.3809538166092,-9.768287963074757,-2.4987730488273687,-19.67122687855098,-0.8742472664359868,-2437.787019963292,-134.1111111111111,-0.7997962322183781,-0.03138556625100737,3.738946559015763,-13.444444444444455,-24.991426988581775,-645.9764932076123,-4.65512193215603,-0.9418647443291054,-15.400593788713747,-0.3327949480968798,-1091.2428285346234,166.1111111111112,0.8863936947327924,0.024117794191819697,12.120338331410993,64.11111111111109,24.572006561825038,798.0996622525957,4.761699217000135,1.121441560938095,-4.655009825280883,0.26657748096886513,1234.9595554190232,75.44444444444446,0.15273740868896488,0.04262376047689128,1.55517108804306,20.111111111111107,13.075637504971292,364.61384673702446,2.508749758795444,0.29425101883890603,-8.82353475159127,-0.05595516955017144,622.8703465023216,-6.777777777777769,-0.18058054594386774,0.00647360904198546,-0.9669357939254143,-0.4444444444444442,-4.458679457696371,-33.17578838408297,-0.7240448373039128,-0.1417549404075357,-9.66883997607757,-0.15880106574394523,-105.12368513590451,0.7061859220952079,0.6166749796426307,0.4247604686759564,0.3645759043063209,0.25256018400123226,0.20476257436002976,0.15944193673396342,0.12727596267219293,0.09954375731769961,0.08000356149716337,0.06169361441214305,0.04830611280574221,0.03840082106307241,0.02897833255175828,0.024356185491982464,0.017715288133340504,8.02204420343885,5.669825529803909,3.5432888414062957,2.16953367783042,0.3484242338325632,-0.38590852659332553,4.116473856599125,0.9114215826469979,6.021897294874868,0.9880010907665655,13.636800097763974,10.930176437726326,16.010198679373858,11.681000652948558,2.0052272415202372,0.7527793439478621,3.48836808408452,2.219471435993516,7.008270422831341,1.0764990067332056,3.7014587075291074,2.4154824013540854,20.91387659553829,14.702558664617227,0.20233528426937158,0.49133878245598894,0.7153842053110308,0.8603279704832858,0.8921591042323579,0.8921591042323579,1.6013031051121174,597.4530522903293,1.0,0.0,1.0,1.0,2.0,9.0,1.0,5.0,1.0,4.4871490920777815,2.7941720921751916,1.4817182630450363,0.6326404413037325,0.44617426474830424,0.44617426474830424,203.56337996148895,729.734998233176,42.7925018432432,14.3085293771211,27.491565645003686,,11.0,418.0,5.601050810983688,9.901064578912528,5.41499046939678,29.45486913101051,44.94575136048208,18.414747775921285,0.0,6.076020106833881,12.844171518546268,6.423349895620259,11.166666666666666,18.0,4.5,0.0,13.5,0.0,0.014492753623188432,-9.0,0.06442577030812319,0.022153422772617837,-0.04227234753550535,0.019444444444444486,0.0807296786389411,0.0,0.5104575163398696,0.7666666666666664,0.4460317460317464,0.48830409356725174,0.7472222222222219,32.03009267974542,0.3704413767982313,0.7144413767982313,9.210090626439133,2.0270908189463146,9.01668136662855,41.240183306184555,11.043772185574865,0.6332703213610589,0.14925373134328357,0.08955223880597016,0.26865671641791045,0.7619047619047619,0.3004153723487661,-0.42987754304348175,-0.050882019847682154,-0.008428971432225135,-0.02262513384439378,0.6995846276512337,1.0010663520126506,0.03303018035516578,0.01962875200024805,0.03128332350039533,-3.5730397069315734,0.9813384813384812,0.7622916227052118,1.311267874072684,0.9510383100608663,0.6191037735849058,1.0868985488822627,0.985753909542137,1.085132315693175,0.7931029408332888,0.6972636474820045,0.7221010590204808,1.0622473980219642,0.9350868725868725,0.6196733370847105,0.6732259039913002,1.63578589330469,0.9499475890985326,1.1246468456171494,0.9420645147370147,1.1177122113070328,0.6598397384656591,0.487603817079719,0.5733840434745976,1.0701477474761507,1.009304570351082,0.9033312150046371,0.760382236590171,1.6441904179052278,1.1795880868802109,1.0826716920698303,1.0118086174251166,1.0792102303582114,0.9157441942357004,0.7736332748477716,0.8907633720468159,1.0594643563784774,1.2071328403875572,1.040325012840062,0.9998707294159215,1.130479500638388,1.1147205411178356,1.2022833624137776,1.2090889643768359,1.210903670185847,1.0733192448398188,0.8914730953655707,0.9834349636989753,1.2266345690513414,1.022102611085662,0.8424728452330281,0.8198244085522937,0.7282696753991516,0.8357151423089224,1.0199118413853547,1.0242591118416873,1.0288403361824259,0.8776642538188101,0.7954271107421025,0.7821446802137121,1.044601114076244,0.7944269457427351,0.7267730811519194,0.7542909678924926,0.681143648595172,0.7336146971201589,0.7986924919071017,0.7953231383262358,0.8014600495151454,0.7394579720437824,0.7728951665795895,0.7056215378312257,0.805415660347339,0.8735122371486007,1.0161417741651393,0.9921417865876877,0.8318834275772073,0.9487564322469983,0.836474336268701,0.8711601439894416,0.8339186202541041,0.9925351534295562,1.098199548962618,1.0520855950591985,0.8364894164377561,1.012641298785877,1.271476494710642,1.2973247262939172,0.8084971464806594,1.1103375767219825,0.9758792894549903,1.0088752960510072,0.9676810151849733,1.2252315570726107,1.4485950416781337,1.3460957042892248,0.9604998960403248,6.0,0.02887460463218039,5.1111111111111125,2.8888888888888893,2.1433333333333335,0.9272222222222224,0.6212698412698414,0.3646187641723356,0.1970269589317208,0.14156635802469136,4277.471621901788,5135.203650843726,2103.6992613026505,1820.5522666881843,11.191657045966794,0.46899675070795477,5.94280625637058,0.8832276475393325,1.0,0.8421052631578947,1.1852762498937135,2.8782532497963036,4.190707078926459,5.039784900667763,5.226251077223191,5.226251077223191,0.23076923076923075,0.007218651158045097,0.12466124661246618,0.058956916099773236,0.05103174603174603,0.03197318007662835,0.028239538239538245,0.0202565980095742,0.01515591991782468,0.01769579475308642,0.5859588216679132,16.467455621301774,5.771564544913741,2.2171831695641218,139.2801469135596,1.0,4.108443834240388,95.03797504763973,,88.56529614978174,88.45290478151692,88.80881301916165,88.56761238887496,93.07272548093414,88.53780733286442,88.5700435130774,90.68791479229562,0.045581295581295526,-0.0323380460012659,-0.4733481225516909,0.4780403389425946,0.3274371069182391,0.11104858727233288,0.04761256253937065,0.10715631661294445,-0.024499542619088467,-0.025194614462298027,-0.038025630909839514,0.08815526175970975,0.05652080652080647,0.055151110173266814,0.009508502531455803,-0.011680988184747526,0.07016509433962267,-0.0019866773631235612,0.05557220929151581,0.004919885267305992,0.061959817121940555,0.06253482884407713,0.036654108017272403,0.027794102460745006,-0.015359836580766822,-0.015032670517281087,0.07248924781945805,-0.2472553893038243,-0.14942134708205354,-0.031503372646381915,-0.01563018271793024,-0.029631737443528306,-0.013291168892979733,0.033679890162974596,-0.019902258308982537,-0.02337874442082547,-0.22578221752750052,-0.13833549988652954,-0.07406740079529672,-0.17688172587803744,-0.22827296190815244,-0.1826602864952829,-0.22613816395057165,-0.1919237580266043,-0.1601698425498027,-0.07220424282712556,-0.09599798880177872,-0.21595673495373144,-0.08392366337281588,-0.04650086194255391,-0.016952151626489623,0.022130841631924844,-0.020556843620083167,-0.07988158250500385,-0.08431377348779076,-0.08216090303755161,-0.054233337839439795,-0.050779988082258504,-0.03282679132138847,-0.08683928780553797,0.12911501727291205,0.06401278306549221,0.01618045934351412,0.08910905082254504,0.12176017874875865,0.09755614486043308,0.12938899549288224,0.1043889438838912,0.08020710527608146,-0.019064882487027545,0.03266130785486966,0.12206916876332548,0.09208175117266028,0.017320231802573586,0.04490278262136858,0.01795367994957878,0.0599758303446125,0.08151642221518235,0.09282000820144752,0.08636109084962158,0.03304626654087066,-0.056744576859442335,-0.010765112136601099,0.09667610364030328,-0.012059822300786137,-0.029852899676358957,0.00994203386234609,-0.016273471975981276,-0.0019322573312116381,-0.040522456725077774,-0.012312237234403814,-0.036335698627074246,-0.02320865153348863,-0.09064908229908755,-0.04453885342831555,-0.02378643395387647,14.881247710037634,22.67323969010991,6.631975707865092,9.741312042940322,26.23870991808576,32.23286501415874,34.11457912879367,34.30253703476154,34.30253703476154,47.59741319963326,44.052134759143996,0.0,3.545278440489261,0.0,3.545278440489261,3527.3229159321854,3284.1286062149006,831.2774566010276,240.0,41.0,63.0,87.0,113.0,137.0,173.0,207.0,234.0,312.2089301360008,26.0,4.90527477843843,5.8377304471659395,6.792344427470809,7.742835955430749,8.703008637464448,9.66007751636045,10.622814044879377,11.583467802081742,12.547770490560348,0.5555555555555556,0.9498039215686276,1.122212297829978,0.5100765474785368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6498086650228955,0.9383314109957708,0.9821772846064866,0.5885330874869793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,9.0,0.0,0.0,0.0,4.0,0.0,2.0,0.0,1.0,5.106527394840706,5.601050810983688,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,6.423349895620259,18.417276048615534,81.11421727488754,11.83581209232279,0.0,153.20210105200957,-219.2236112101458,-25.948180632331663,-4.298502180591095,-11.53808480053399,356.7654810134985,510.51138702303024,16.844321210911538,10.010027196530006,15.953480844469695,0.45454545454545453,0.8436299603147345,0.26347837367555527,46.3776034079748,0.14830276452792657,124.31714718374081,0.15637003968526544,6.0,0.038461538461538464,0.20895405024083782,0.5074113939410517,0.7387857620475876,0.8884709091501496,0.9213432988801166,0.9213432988801166,3.8826000000000036,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,90.49280000000006,9.901064578912528,0.0,0.0,29.086614654042354,70.3121826170084,0.0,11.64912463690315,0.0,12.343784214475903,3.970291913552122,0.0,5.37989735354046,2.3978952727983707,7.027314514039777,4.948759890378168,8.780326390946605,7.247792581767846,10.58615501214069,28.333333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.440000000000005,0.0,11.750304590040791,0.0,0.0,0.0,1.9568354355631141,0.0,1.7571247342741305,57.23282718932888,0.0,0.0,0.0,16.490823152189332,4.794537184071822,41.430398868518246,64.71113180602472,11.64912463690315,0.0,0.0,0.0,26.013903921405376,33.14024191616767,30.366629568493288,190.0759500952796,,177.08711403869393,176.85612012204004,177.58751574512706,177.0918742422545,187.08657640911974,177.0306197213406,177.0968705391602,181.72278130464167,30.366629568493288,190.0759500952796,,176.6305922995635,176.33438099160537,177.27135766656664,176.6366936195526,188.31003949054661,176.55817280526378,176.64309742571692,182.17381854070726,5.18810179155803,140.2205681144732,,132.17691746207282,132.05080259394165,132.45013998887248,132.17951643025535,137.23424709120349,132.14607296962822,132.18224430289547,134.55785815955318,1.320288242108404,8.264171743273026,,7.699439740812779,7.689396527045219,7.721196336744655,7.6996467061849785,8.134198974309554,7.696983466145244,7.699863936485226,7.9009904915061595,2.6342935817255984,95.03797504763973,,88.56529614978174,88.45290478151692,88.80881301916165,88.56761238887496,93.07272548093414,88.53780733286442,88.5700435130774,90.68791479229562,47.85490196078431,0.0,2.216657734451295,0.0,0.0,0.0,11.11098243502329,50.091041514930815,9.148729909402032,0.0,0.0,0.0,2.612628968253968,0.0,-0.9537158945368269,0.0,2.788404919245017,30.015187461835946,430.22393101972574,60.44908874457939,146.79091573961148,213.7260610252494,257.02902993405587,266.5388049383827,266.5388049383827,1344.0,127.39532409985229,79.74365104578237,73.33843292916404,37.3,37.3,0.8333333333333334,7.613818684808629,5.700439718141092,4.100787058495459,4.71711734052418,,4.735222184709586,4.735465765724021,4.7346620932450545,4.735217063627749,4.719865889907392,4.735282651288119,4.735211684190084,4.729104347454868,0.17829508949980255,0.20509205828366,,0.2058792254221559,0.20588981590104438,0.2058548736193502,0.20587900276642387,0.20521156043075617,0.20588185440383128,0.20587876887782972,0.20561323249803773,2.244088043709047,2.384107003019446,,2.387937772381353,2.3879892113086543,2.3878194834036326,2.3879366908936412,2.3846895089736933,2.387950541833369,2.387935554844195,2.3866449517911015,257.8500000000002,189.170674458102,135.87712318508528,,134.10217185724966,134.05998315262244,134.1938510884383,134.10304219410884,135.80650964531685,134.09184547458202,134.10395573667068,134.9072993901025,8.224811932960957,5.907701008047186,,5.830529211184768,5.828694919679236,5.8345152647147085,5.830567051917775,5.9046308541442105,5.830080238025305,5.830606771159595,5.865534756091414,6.075558769960774,5.7446600942715795,,5.731511108895089,5.73119645819448,5.732194527409835,5.731517598976665,5.744140272443354,5.731434102086544,5.731524411196845,5.737496994322468,0.0,11.750304590040791,11.11098243502329,0.4737905879944575,5.7306521392418315,0.0,16.884279179915005,2.216657734451295,0.0,329.38093096979196,78.12810504084896,-111.79693494050709,-13.232730936069228,-2.192096763539355,-5.88404920739511,181.9388297168918,260.34425765704356,8.59005775946331,5.104789365824384,8.135758051782611,1053.0,49.0,2.183456325045712,1.4849178935260863,0.19716878364870322,0.11169725440080797,0.9995378162271848,0.636187568124443,0.3321713196057226,0.14597660113645794,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.4386380189713201,0.3499797038569835,1.0423266779230602,0.7567794467875268,16.242276208189782,14.183524531780508,11.043772185574866,9.478973511964345,10.354967544050522,8.39526554876122,10.044842014239697,8.018385648348154,8.660306886639866,6.960309850253212,6.971378428572165,5.458590747048869,5.260912485640921,3.9700315595908844,4.213620090112967,3.0647448470679075,6.374995237933959,4.48531911629248,11.433723488681823,8.072530880994561,18.36982767420855,12.681402960393042,82.64506616352071,43.76734657208666,28.327066198373387,21.6718708238693,20.59187948697999,20.59187948697999,134.0,171.0,55.34420399999997,28.957795999999995,0.3333333333333333,170.02,7.541666666666666,5.006944444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,51.0,0.0,0.0,54.0,0.0,2.0,2.0,51.0,3.0,26.0,51.0,1.0,0.0,0.0,21.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,2.0,1.0,0.0,23.0,2.0,0.0,0.0,2.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4339872044851463,6.104793232414985,3.8918202981106265,4.382026634673881,4.727387818712341,5.017279836814924,5.236441962829949,5.497168225293202,5.755742213586912,5.971261839790462 +214350,COc1ccc(Cl)cc1[C@]1(F)C(=O)Nc2cc(C(F)(F)F)ccc21,0,40.470588235294116,7.5757,4.235294117647059,14.223674655047205,171.83541527277617,168.44054187056122,1.6928921484850001,7.608705882352942,11.349420483785648,8.8474585,263.980899429137,32.861111111111114,6.831361111111111,5.027777777777778,11.419753086419753,147.84898940045554,130.07850384280002,1.9564208636111116,6.991444444444444,4.003657978966621,8.16964561111111,305.64940602396797,33.377049180327866,7.286393442622951,4.508196721311475,12.256830601092897,159.00064139983272,133.57121592558212,1.7520781969269998,7.375119672131147,7.1435691155636505,8.569196918032784,276.80747287463157,30.756756756756758,7.052675675675676,4.081081081081081,10.06006006006006,156.81241366336596,120.55785575366487,1.657334870022946,7.177937837837838,5.715847792236681,8.432215459459456,260.13527934470153,27.012048192771083,7.193132530120483,3.5180722891566263,8.47255689424364,165.79482428868118,103.7647411563759,1.4424709733198433,7.2663156626506025,5.471968119391145,8.58104395180723,227.58935070844197,28.666666666666668,7.197925925925925,3.1358024691358026,7.769547325102881,167.91063044583265,111.57723088730864,1.3744056783098026,7.273185185185186,5.514349311588681,8.626675728395062,215.05004775101776,25.783783783783782,6.894217567567567,2.7432432432432434,5.72972972972973,168.21775870655597,98.95810922737296,1.3204526408735269,6.992260810810811,4.430458236013791,8.417292243243242,197.98028412018922,24.82758620689655,7.333379310344828,2.413793103448276,8.028735632183908,174.19168098995942,93.84682335078122,1.2472333331964824,7.393444827586207,9.12595785440613,8.816034068965518,178.01284933745927,19.63157894736842,6.320447368421053,2.526315789473684,5.739766081871345,166.55861128755973,74.08622157924209,1.175253864960263,6.436263157894737,3.8283111327701973,7.907583842105263,164.97963826246257,11.816608996539793,0.36489550173010366,0.028723729083759607,0.9100346020761245,5.6115596565423544,3.9208796459356887,56.51371793492288,0.27399566924200686,0.3187058823529411,5.1709286393489045,0.22580807698961938,42.74445096798656,-0.04373317954632805,-0.01385726643598619,-0.013624648458073567,0.19780853517877744,1.0563375434899207,-0.04722274499366804,-0.1789134345455826,0.0019137249089245583,-0.011305555555555537,-0.4402841683562197,-0.009439672577854597,1.375449050835728,1.2181065290146917,0.09169553009246123,-0.0012781273231246728,0.031141868512110777,1.0213677099112082,0.9429213020340016,6.348265289545186,0.04708582308259197,0.07538196721311476,1.4428731634638643,0.04864517518010098,5.238367274236919,-1.0630318900215094,-0.0001489993453661496,0.0011083863835564776,-0.1341999438885252,0.028835640715686887,-0.5190773121023334,-4.841995817488596,-0.04790657828540829,-0.0029675675675675723,0.2873488253586009,-0.008609606401384055,-5.672767727726935,-1.990953433109601,-0.07853355984491595,-0.0029685090052655127,-0.09926210030433154,-1.1360278998861006,-0.45669521917264877,-9.87191478736861,-0.020684662489452686,-0.07182891566265061,-0.8388306935162455,-0.04863905927168882,-5.0201507195856045,0.619120850954761,-0.014945683284206921,0.008851486550679001,-0.06762356358665471,-0.7229845648687402,0.08502524622619827,2.6390942703062823,-0.012193934609702639,-0.007148148148148133,-0.7113877816785776,-0.0005252371203383326,-2.3372861268149077,0.6190030861311135,-0.06280742541849806,-0.007352922168355577,-0.1659964462732629,-1.0407829975304026,-0.41807140271148113,2.5319486215855873,0.0028990904511902076,-0.04890135135135134,-1.0768320009530654,-0.03579371172729821,1.2478722361209318,-4.0164061567832,0.13665490394940935,0.00023458788182874885,0.1112635723660661,1.590979596706836,0.9550273753900808,-18.026799306945232,-0.02098110756487512,0.0946,2.772462246403249,0.06861562635723659,-12.154089360213884,1.9403569477326523,0.04895542706246572,-0.004508762384371386,0.09306137315607357,3.0509408212315994,-1.2156673614843596,9.791912858360874,-0.06369041338315244,0.04863157894736842,0.46512560486460397,0.011122621926789391,2.627378101893959,,,0.45515873015873026,1.25,0.6041666666666666,0.041666666666666664,0.6458333333333334,-0.041666666666666664,0.7859849044663906,0.030846160110786853,0.04159616011078685,1.1211485946560233,0.2619671041360672,0.20361230085202495,1.9071334991224138,0.46557940498809214,2.008389582124701,1.409484792867591,0.08511700304908358,0.1534513084706614,0.36033647773736416,0.5989047892571093,10.55981232705883,1376.0,257.5738,144.0,483.60493827160496,5842.40411927439,5726.978423599081,57.558333048490006,258.696,385.88029644871204,300.813589,8975.350580590659,1183.0,245.92899999999997,181.0,411.1111111111111,5322.5636184164,4682.826138340801,70.43115109000001,251.692,144.13168724279836,294.1072419999999,11003.378616862847,2036.0,444.47,275.0,747.6666666666667,9699.039125389796,8147.844171460509,106.87677001254698,449.8823,435.7577160493827,522.7210119999999,16885.255845352527,2276.0,521.898,302.0,744.4444444444445,11604.118611089081,8921.2813257712,122.642780381698,531.1674,422.97273662551436,623.9839439999998,19250.010671507913,2242.0,597.0300000000001,292.0,703.2222222222222,13760.970415960539,8612.4735159792,119.725090785547,603.1042,454.17335390946505,712.2266480000001,18889.916108800684,2322.0,583.0319999999999,254.0,629.3333333333334,13600.761066112445,9037.755701872,111.32685994309401,589.128,446.66229423868316,698.7607340000001,17419.053867832437,1908.0,510.1721,203.0,424.0,12448.114144285142,7322.900082825599,97.713495424641,517.4273000000001,327.8539094650206,622.8796259999999,14650.541024894002,1440.0,425.336,140.0,465.66666666666663,10103.117497417647,5443.115754345311,72.33953332539598,428.81980000000004,529.3055555555555,511.329976,10324.745261572638,746.0,240.17700000000002,96.0,218.11111111111111,6329.22722892727,2815.2764200111997,44.65964686849,244.578,145.4758230452675,300.488186,6269.2262539735775,401.764705882353,12.406447058823524,0.9766067888478266,30.941176470588232,190.79302832244005,133.30990796181342,1921.4664097873779,9.315852754228233,10.835999999999999,175.81157373786274,7.677474617647059,1453.311332911543,-1.5743944636678098,-0.4988615916955028,-0.4904873444906484,7.121107266435988,38.028151565637145,-1.7000188197720494,-6.440883643640973,0.0688940967212841,-0.40699999999999936,-15.85023006082391,-0.3398282128027655,49.51616583008621,74.3044982698962,5.593427335640135,-0.07796576671060504,1.8996539792387575,62.3034303045837,57.5181994240741,387.2441826622563,2.87223520803811,4.5983,88.01526297129573,2.96735568598616,319.540403728452,-78.66435986159169,-0.01102595155709507,0.08202059238317935,-9.930795847750865,2.1338374129608297,-38.41172109557267,-358.3076904941561,-3.5450867931202135,-0.21960000000000035,21.26381307653647,-0.63711087370242,-419.7848118517932,-165.2491349480969,-6.518285467128024,-0.24638624743703755,-8.238754325259517,-94.29031569054635,-37.90570319132985,-819.3689273515946,-1.716826986624573,-5.9618,-69.62294756184838,-4.037041919550172,-416.6725097256052,50.148788927335644,-1.2106003460207606,0.7169704106049991,-5.477508650519031,-58.56174975436796,6.88704494432206,213.76663589480887,-0.9877087033859138,-0.5789999999999987,-57.622410315964785,-0.042544206747404945,-189.32017627200753,45.8062283737024,-4.647749480968856,-0.5441162404583127,-12.283737024221455,-77.01794181724979,-30.937283800649602,187.36419799733346,0.21453269338807535,-3.618699999999999,-79.68556807052684,-2.6487346678200674,92.34254547294896,-232.9515570934256,7.925984429065742,0.013606097146067433,6.453287197231834,92.2768166089965,55.39158777262468,-1045.5543598028235,-1.216904238762757,5.486800000000001,160.80281029138843,3.979706328719722,-704.9371828924053,73.73356401384079,1.8603062283736975,-0.17133297060611266,3.536332179930796,115.93575120680077,-46.19535973640566,372.09268861771324,-2.420235708559793,1.848,17.67477298485495,0.4226596332179969,99.84036787197044,0.7374294222424901,0.5385978961304196,0.42976560460439284,0.27367076845712274,0.27898523375195805,0.137847825074551,0.1661281587769663,0.07226564026620429,0.1005052020848563,0.03792083183896576,0.06441507309582938,0.02034398479350006,0.040495232660286,0.010964652641766095,0.025089698455794437,0.005206373975443327,17.001103140071713,5.682779187832755,4.124766164914411,2.1812584922068514,0.5031188514148439,-0.5287487881860344,4.03434179146708,0.9777657215313698,7.01442958964256,0.7740024490584955,17.431202543310878,10.943352721558107,35.45051744008044,11.694324327794309,2.20784405253357,0.5268828177872965,4.0073752000298475,2.2313715693861904,8.007915847769862,1.179006130244263,4.0308077852655675,2.427346919176461,22.455863002724463,13.301653264714597,0.35640623255109644,0.6745210412856455,0.7911096100161931,0.8751766199557924,0.8860171395527751,0.8860171395527751,1.8251238119618352,837.3125028163796,0.0,1.0,1.0,0.0,9.0,0.0,3.0,1.0,0.0,3.153508263202165,1.4273330886170825,0.7946926473133491,0.33852279424491005,0.27969926483314556,0.27969926483314556,-128.45240698840547,1096.7088030284808,63.5068629483567,32.256141265543555,69.49210379845755,,10.0,395.0,23.315689557237654,17.96578232709628,27.586434405102782,6.06636706846161,12.13273413692322,25.30889874666236,0.0,0.0,5.316788604006331,16.337802844032566,10.923809523809526,30.0,14.5,1.0,15.5,0.0,0.04484126984126976,-1.0,0.3492997198879548,0.12795031055900596,-0.2213494093289488,0.027793650793650704,0.2564810530514557,0.0,0.7904761904761904,0.9948412698412695,0.44117647058823567,0.6625258799171845,0.9670476190476188,18.863637707193373,0.7403078426588845,0.9983078426588845,26.90756627174456,6.287210499265613,4.8866952204485985,45.77120397893793,11.173905719714211,0.4575189469485443,0.24629468177855268,0.09154315605928508,0.32040104620749776,0.1875,0.623663852221127,-1.3169595088247554,-0.09118417693133561,-0.03873410320072811,-0.0940685363446254,0.376336147778873,0.7946900667190474,0.03109462653837017,0.023373237256442567,0.03973450333595236,-6.349585912815622,0.4928257686676427,0.5750424194378381,1.569653734764304,0.9924746514575413,0.3852800361852707,0.8354962658141603,0.49112306393372535,0.8546278075413993,0.5590135505106437,0.6012447648342951,0.6132316105843274,0.7867591675256974,0.5446667306722991,0.5683349954548159,1.0424424929531086,1.0403135323817243,0.5825094243481954,0.7302446181757368,0.5383835677513465,0.7381259824765983,0.5640987237441679,0.5134777447278114,0.6165802385418134,0.7268263140528118,0.8657749990107236,0.7390965998856536,0.9456590128507698,1.2250796423800228,0.7438908037002223,0.9966403452361813,0.8567102106145013,1.0938955843553029,0.7440724985783128,0.7043973473552992,0.8075412794494882,1.0147538465077115,0.9678385577448888,1.1817551844629737,1.1323496280167558,1.0922396811580926,1.1277666447185049,1.120555450258081,0.9795088797235342,1.0098811025432042,1.1790924495323487,1.1146657088939511,1.1733467383270404,1.0391141148133625,0.865994251938615,0.9547885286713674,0.7505855274839165,0.9875369666244193,1.0812845545509733,0.8569305415140407,0.869695073623686,0.9685183037632583,0.9381518053675677,1.068919514749977,0.9262643790333629,1.0062219037476374,1.0455898064975664,1.0650394926469842,1.1957877343264625,1.0737462747919024,1.193234956814901,0.9294305251590226,1.0482818619612975,0.9676073980663267,1.0662289365777737,1.1027421102434651,1.0610139304852266,1.034084469143092,1.748256929368405,0.6154452404383614,0.8196157345811825,0.6160187491805429,0.8065130927696224,0.5934889595062642,1.709136221165265,1.1177149821830235,0.7227400523160346,0.5009779214532168,0.7236602406395286,1.3329867763693026,1.1250693534715264,0.648271924883557,0.8092901533529752,0.7858715229137483,0.5134080591091085,1.0216544149919933,1.1130944806416045,1.2638573352319376,0.6808802529579765,0.6105297838662962,0.7172713888133497,1.2179900276407598,8.0,0.037037037037037035,4.666666666666668,3.263888888888889,2.0044444444444447,1.3580555555555551,0.8663492063492064,0.2951388888888889,0.25069286974048877,0.19437500000000008,5662.454407133622,5970.621598588712,2363.4180999385635,2258.8905308886424,11.162354209675083,0.4437954355310854,6.208552361640085,0.7978996647660349,1.0,0.1875,1.9339545780481742,3.6601297526332566,4.29277019393699,4.748940047005429,4.8077635764171935,4.8077635764171935,0.30769230769230776,0.004115226337448559,0.11382113821138216,0.07253086419753087,0.04772486772486774,0.03482193732193733,0.028878306878306875,0.014756944444444446,0.020891072478374063,0.01619791666666667,0.6614305819532664,18.781065088757398,6.622248661511005,3.2410714285714284,138.7327719813635,1.0,4.123544312818367,105.5682376909097,,80.94096784259452,81.18331331977498,82.13335613538611,80.62124508883062,115.94065148759994,81.56671606386101,82.07948942953132,96.75116282512776,-0.0037009923539937937,-0.03797598592003409,-0.4743342488137079,0.21736375158428398,0.1882431281396728,-0.012043915972431917,-0.0031658408096881256,0.0069845078727658995,-0.03547331938804802,-0.08514605384530272,-0.04180396336437757,0.03217842362429383,0.10308427141588458,0.25129257460752197,-0.04449726285182539,0.0342205323193917,0.18201137872969508,0.2404871832807764,0.11233140415315428,0.17184878583246285,0.23652518320837046,0.2790355976843539,0.21542708227543717,0.12255081433050086,-0.08996082466067824,-0.0004083342892956722,0.03858783030310501,-0.1474668584934745,0.00513861430343492,-0.13238797386713955,-0.08567823874310108,-0.17484429012304853,-0.009311304660141885,0.05557006205268041,-0.03812798247150321,-0.13271354758950002,-0.16848771366579052,-0.2152220552803734,-0.10334692256041042,-0.10907508360437954,-0.2024442346543779,-0.1164777448973856,-0.17468174362083902,-0.07549266215292966,-0.22537681178757116,-0.1622205124110679,-0.21539999773314045,-0.11744567086252772,0.05239412179382896,-0.04095880385848536,0.30815938017197186,-0.07430878280054454,-0.1288384351444671,0.021685247675055228,0.046698294975837065,-0.044504114402378885,-0.022428667131509462,-0.13757447284520094,-0.0023260333613419784,-0.05468045731983825,0.05238415575165206,-0.172124416773309,-0.2559877287142678,-0.1824067413421026,-0.18547125242034698,-0.1066269410092315,0.04480237213381,0.010580789321270564,-0.1534372412279389,-0.20824731417849432,-0.1585138680798547,0.02919378323646092,-0.33989498662089157,0.3745042164166953,0.008167041303887831,0.12226301298020194,0.28351825411888104,0.2435747744463527,-0.31898094773562047,-0.07657459558728845,0.2968253968253969,0.536163316063929,0.30386701517497494,-0.2843430921435085,0.16420590275102093,0.13416286808236894,-0.15696995230750313,0.10226135681408846,0.5436885657402922,-0.31004964989029893,0.17326612398137625,-0.23245043821075084,0.15259077927376585,0.08995011095785885,0.04925697111933117,0.061467115435913135,4.208200626043842,14.80678183517668,7.3125049843908005,24.818231575833234,41.593566694199886,49.85908165300443,50.966136159015065,51.02543027666212,51.02543027666212,48.20134997099282,33.827635028822186,2.042808073178006,3.6828314032958738,8.64807546569674,14.373714942170624,4761.801793854113,3842.512982759017,1417.2636499024961,121.0,41.0,56.0,75.0,98.0,110.0,131.0,136.0,126.0,359.03361912000025,26.0,4.90527477843843,5.796057750765372,6.739336627357174,7.660585461703256,8.607216694063826,9.540866393419853,10.489133037859581,11.429663414101217,12.379080127350587,0.8921568627450981,1.0741176470588236,1.1507849806530075,0.8808215332024075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7132780908770694,1.0588235294117647,1.0692879482455766,0.7227580967660828,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,10.05365155780638,5.749511833283905,0.0,5.668759818745678,5.907179729351506,4.794537184071822,4.39041504767482,13.171245143024459,0.0,17.667306958694127,30.33183534230805,21.836922571818878,12.673249032974528,323.90679058831154,-683.9776368615634,-47.35752119844465,-20.116989319457748,-48.85554549011168,195.45438359990607,412.7311661669175,16.149341749912047,12.139151946085807,20.63655830834587,0.5,0.845971773975526,0.23503960383698222,10.165963045775321,0.19699570527594862,0.23983670226905762,0.15402822602447386,5.0,0.07692307692307693,0.38014126852528884,0.7194410783615102,0.8437939161206652,0.9334594070152045,0.9450218559700764,0.9450218559700764,4.532600000000002,,2.623249299719888,2.434679707479255,2.1179916438758557,2.773371995627316,-10.441644064185901,2.308849975323218,2.101036766211832,-3.2206636158247006,79.96570000000001,27.093060328571156,0.0,0.0,0.0,11.845058336189153,12.426586145283864,58.11119019960197,0.0,5.749511833283905,3.970291913552122,0.0,5.37989735354046,2.3978952727983707,6.98933526597456,4.948759890378168,8.688959234270676,7.221835825288449,10.438605708871151,30.333333333333336,6.417970439661681,0.0,0.0,0.0,0.0,0.0,-1.3902105685381136,0.0,36.52,0.0,12.227862339380195,0.0,0.0,0.0,0.0,0.0,-1.0996378180901993,39.126689342202255,10.05365155780638,23.24904646538284,5.749511833283905,13.016977270629038,16.639595520260976,0.0,16.690354475090988,36.39820241076966,5.022633313741326,0.0,0.0,29.947932128881856,24.25145508982036,29.57838966602406,211.13647538181942,,161.66333157687905,162.1637366639267,164.09021296711586,161.0113758446923,236.52919907376017,162.94102796311176,163.98389246187833,194.84426882351585,29.57838966602406,211.13647538181948,,159.25868638546916,159.9319469320708,162.14872062689642,158.46911818203398,242.3229470393859,160.82458215239882,162.05794209285085,196.72298926608033,5.075571649805013,153.28211898723916,,119.37606630812323,119.59942470760173,120.63064520420386,119.01865201133444,158.51856744463592,120.02219936529269,120.59057338335951,136.86347203944237,1.2324329027510024,8.797353140909143,,6.735972149036627,6.756822360996946,6.837092206963161,6.708807326862179,9.855383294740006,6.7892094984629905,6.832662185911597,8.118511200979826,2.5914320493895024,105.5682376909097,,80.94096784259452,81.18331331977498,82.13335613538611,80.62124508883062,115.94065148759994,81.56671606386101,82.07948942953132,96.75116282512776,36.0,0.0,1.288310300142912,5.87137580684418,54.045122311550884,0.0,0.0,36.355790240349606,0.0,2.1571579743008313,5.060649644116905,0.0,0.0,0.0,-7.3008226515915,0.0,0.0,24.573775290046814,439.3648938620187,65.75445565363792,124.44441158953072,145.95418659385766,161.4639615981846,163.46396159818457,163.46396159818457,944.0,127.54721428505928,79.99628032619893,74.03558046467396,38.33,38.33,1.0,8.578720347002983,5.700439718141092,4.11575054664361,4.817704522279344,,4.8268608044364285,4.8245760362901455,4.82151043060209,4.827664258613163,4.742990161113895,4.824442386141297,4.823668348723227,4.792754701742345,0.1714896061101504,0.200737688428306,,0.2011192001848512,0.2010240015120894,0.20089626794175375,0.20115267744221513,0.1976245900464123,0.20101843275588738,0.20098618119680112,0.1996981125725977,2.2902899477173815,2.4477663117870243,,2.449665056748106,2.4491916001578247,2.4485559836719495,2.4498314977016156,2.4321365098457375,2.449163897827286,2.4490034441507054,2.4425740777828318,214.61999999999998,180.54817967268465,140.33613526768764,,138.71972012183576,138.9675701793749,139.38382738336492,138.59092903196017,148.55496405855556,139.04819022383822,139.19973419427933,143.42982592846403,7.522840819695194,5.847338969486985,,5.779988338409823,5.79031542414062,5.807659474306871,5.774622042998341,6.189790169106481,5.793674592659926,5.799988924761639,5.9762427470193344,6.071466402903499,5.8195092484469075,,5.807924232807942,5.809709335201981,5.812700213048703,5.806995374868094,5.876423755456499,5.810289302658546,5.811378575728541,5.841314635025206,59.10577195566779,12.227862339380195,2.320108602082809,-4.3118643882450085,-1.039639747102545,6.417970439661681,-4.602117530654237,0.0,1.288310300142912,276.0261513978791,168.2246110874826,-355.2314285989039,-24.59565781626762,-10.44798319408541,-25.373673471350283,101.51141816668152,214.35654308452266,8.387341093601126,6.304604208368312,10.71782715422613,1220.0,45.0,3.1684228895023767,0.9371555190700378,0.3849001794597505,0.03712151074197768,1.2053404213372176,0.19624250668922028,0.2909463691732222,0.022960174885698553,0.0,0.0,0.0,0.0,0.06804138174397717,0.03125,0.40767428190676563,0.1243910631153545,0.8072203442669854,0.19541747491618425,17.698306133819763,12.926349507130071,11.173905719714213,7.115439979885191,11.43839458383028,5.651760828056592,9.303176891510113,4.04687585490744,7.537890156364223,2.844062387922432,6.312677163391279,1.993710509763006,4.45447559263146,1.2061117905942704,3.2867504977090714,0.6820349907830758,6.480334571583072,1.8201516981315684,10.020771249386907,2.4693917668727456,16.4311262156153,3.3548089610337826,74.8349696190261,50.53357859501529,34.85688740659502,32.19689141765232,32.01527595640229,32.01527595640229,134.0,164.0,40.499929999999985,18.168069999999997,0.4411764705882353,124.08,9.902777777777779,5.0555555555555545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,34.0,0.0,0.0,36.0,12.0,1.0,7.0,29.0,13.0,26.0,23.0,0.0,0.0,0.0,16.0,1.0,4.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,2.0,1.0,1.0,24.0,8.0,0.0,1.0,2.0,0.0,3.0,2.0,0.0,0.0,5.0,0.0,2.0,3.5263605246161616,7.216996248085812,4.174387269895637,4.757891273005756,5.333925794015404,5.894058422344794,6.164103966248423,6.535694724066365,6.809728913683577,6.987461391552358 +5475,CCN(CC)CCOc1ccc2c(c1)C(=O)c1cc(OCCN(CC)CC)ccc1-2,0,19.125,5.881403125000001,2.875,5.625,163.06082897034324,75.02258284375002,1.3935773557010314,5.954789062500001,3.0147569444444446,7.459360874999998,199.69641455814542,22.0,6.182575757575758,3.515151515151515,5.545454545454546,145.71991969066062,81.99145363636362,1.7294864627272726,6.32825,2.6801346801346804,7.623395272727273,245.9789347046211,17.277310924369747,6.100403361344538,3.168067226890756,4.184873949579832,158.16318094093432,62.76421279831932,1.4032738658905881,6.193180672268908,2.479925303454715,7.6292083025210085,195.06450940233753,15.449664429530202,6.033315436241612,2.8456375838926173,3.5906040268456376,160.95513135518166,55.33865271812079,1.3140597925695705,6.111648993288591,2.4750186428038776,7.600311489932888,179.21948672203587,13.850931677018634,5.843105590062112,2.5217391304347827,3.0248447204968945,154.7857736735781,47.93875056521738,1.2979153749694037,5.946257763975156,2.4189095928226365,7.420457167701864,168.7717918351466,10.76063829787234,5.7204787234042564,2.047872340425532,2.4202127659574466,165.43117999809775,36.74629363297871,1.0076147276791223,5.777142021276595,2.351063829787234,7.3829278085106385,126.30024619267083,11.636986301369863,5.789904109589042,2.4383561643835616,2.287671232876712,166.41548662976982,40.5621101438356,1.070336558562267,5.845352739726028,2.167427701674277,7.445574931506848,139.05357476945423,16.466666666666665,6.087504761904763,3.038095238095238,3.085714285714286,152.92909939636328,58.156422799999994,1.441013443447076,6.194666666666667,2.6952380952380954,7.618733333333333,195.316467321872,13.632,5.8726400000000005,2.608,2.56,154.98890292628948,46.593476087999996,1.337494469708672,5.9726784,2.492666666666667,7.436325472,170.9936950614794,7.0927734375,0.09587490234374996,0.014584341158232417,0.5302734375,3.4677734375,1.3828840230151547,33.87075878027343,0.23031527490282716,0.09309411621093744,0.7803548177083334,0.056880312499999974,51.39904328741956,0.5009765625,0.006412029474431903,-0.003985680757373299,0.29169625946969696,1.5161280776515151,-0.3284862095442246,2.3021786401811024,-0.025388532297781694,0.007808227539062528,-0.022805364846380478,0.0013996534090909272,-1.8915484878455147,0.45186941964285715,-0.008439792049632274,-0.0020611379493185875,0.08264673056722689,0.49178538602941174,0.18210435091760865,2.240722837111012,0.024464645564430988,-0.005833415055475296,0.024784946530695608,-0.006147882878151237,5.922814251889118,0.43029703229865773,-0.005285158216233159,0.0005554702809303828,-0.0302734375,0.2671258913590604,0.4910246603307938,2.1782950748020635,0.049942369909115165,-0.004408052872011307,0.054499069316275156,-0.00281982005033555,9.030849369597469,-0.7465001455745341,0.00036715899165374043,-0.0017850119296697723,0.034943953804347824,0.5295091711956522,-0.3483110331488779,-3.7035022765855503,-0.05929662873767517,-6.737902149649636e-05,0.00800676786792615,-0.00011384743788819731,-10.604092925358385,1.2423329454787233,0.018336799783909546,0.0019381155410877105,0.12464677526595745,0.8899393284574468,-0.014760771500299388,5.861157873981884,0.013343625399745991,0.018617220225232687,0.15409775321365246,0.009883445478723397,5.382325031465307,1.3361649186643836,-0.005653112960188357,-8.635971009789714e-05,0.02152450770547945,-0.08207138270547945,0.3258296482777058,6.561081404229988,0.06787478123836592,-0.0024229903547731304,-0.021115377069063926,-0.005897766267123281,14.498043120037002,-1.3653924851190475,-0.0165412416294642,-0.0035835908333698013,-0.1296781994047619,-1.079678199404762,-0.20951161391076079,-6.501103028190108,-0.03434022972786674,-0.01682588704427079,-0.14316070395171962,-0.008934637499999974,-8.881090200941697,-1.4197734375,0.008373872656250022,0.0025129178534424174,-0.0452734375,-0.4527734375,-0.24748584601988494,-6.9024830995234385,-0.04502019117003139,0.0031660962890625297,-0.08815342881944448,0.009020786500000003,-12.51198825900165,,,0.4766666666666667,1.1083333333333334,0.48333333333333334,0.03333333333333333,0.625,-0.14166666666666666,0.9815563543783354,0.010326561811626729,0.01892656181162673,0.8394770090387959,0.2145727149919501,0.2722411752755264,1.8210333634171314,0.48681389026747646,2.025986223140329,1.6887415571194373,0.14066384166059615,0.1965808243602955,0.0,0.33724466602089165,6.410264733562515,1224.0,376.4098000000001,184.0,360.0,10435.893054101967,4801.445302000001,89.18895076486601,381.10650000000004,192.94444444444446,477.3990959999999,12780.570531721307,1452.0,408.05,232.0,366.0,9617.5146995836,5411.4359399999985,114.14610653999999,417.6645,176.8888888888889,503.144088,16234.609690504993,2056.0,725.9480000000001,377.0,498.0,18821.418531971183,7468.941322999999,166.98959004097998,736.9885,295.1111111111111,907.8757880000001,23212.676618878166,2302.0,898.9640000000002,424.0,535.0,23982.314571922067,8245.459254999998,195.794909092866,910.6357,368.77777777777777,1132.4464120000002,26703.703521583346,2230.0,940.74,406.0,487.0,24920.509561446073,7718.138840999999,208.96437537007398,957.3475000000001,389.44444444444446,1194.693604,27172.258485458602,2023.0,1075.4500000000003,385.0,455.0,31101.061839642374,6908.303202999999,189.431568803675,1086.1027,442.0,1387.990428,23744.446284222115,1699.0,845.3260000000001,356.0,334.0,24296.661047946393,5922.0680809999985,156.269137550091,853.4215,316.44444444444446,1087.0539399999998,20301.82191634032,1729.0,639.1880000000001,319.0,324.0,16057.555436618144,6106.424394,151.30641156194298,650.44,283.0,799.967,20508.22906879656,1704.0,734.08,326.0,320.0,19373.612865786185,5824.1845109999995,167.18680871358399,746.5848000000001,311.58333333333337,929.540684,21374.211882684926,453.9375,6.135993749999997,0.9333978341268747,33.9375,221.9375,88.5045774729699,2167.7285619374993,14.740177593780938,5.958023437499996,49.942708333333336,3.6403399999999984,3289.538770394852,33.064453125,0.4231939453125056,-0.2630549299866377,19.251953125,100.064453125,-21.680089829918824,151.94379025195275,-1.6756431316535918,0.5153430175781268,-1.5051540798611116,0.0923771250000012,-124.84220019780396,53.7724609375,-1.0043352539062407,-0.2452754159689119,9.8349609375,58.5224609375,21.67041775919543,266.64601761621043,2.9112928221672876,-0.6941763916015602,2.9494086371527772,-0.7315980624999971,704.814895974805,64.1142578125,-0.7874885742187406,0.08276507185862703,-4.5107421875,39.8017578125,73.16267438928827,324.56596614550745,7.441413116458159,-0.6567998779296848,8.120361328124998,-0.42015318749999697,1345.5965560700229,-120.1865234375,0.05911259765625221,-0.28738692067683336,5.6259765625,85.2509765625,-56.078076336969346,-596.2638665302736,-9.546757226765703,-0.010848022460935913,1.2890896267361103,-0.018329437499999768,-1707.2589609827,233.55859375,3.4473183593749943,0.36436572172448956,23.43359375,167.30859375,-2.775025042056285,1101.897680308594,2.5086015751522464,3.5000374023437453,28.970377604166664,1.8580877499999986,1011.8771059154776,195.080078125,-0.8253544921875001,-0.012608517674292982,3.142578125,-11.982421875,47.57112864854504,957.9178850175782,9.909718060801424,-0.353756591796877,-3.082845052083333,-0.8610738749999991,2116.714295525402,-143.3662109375,-1.736830371093741,-0.3762770375038291,-13.6162109375,-113.3662109375,-21.998719460629882,-682.6158179599613,-3.6057241214260074,-1.7667181396484328,-15.03187391493056,-0.9381369374999973,-932.5144710988782,-177.4716796875,1.0467340820312527,0.3141147316803022,-5.6591796875,-56.5966796875,-30.935730752485618,-862.8103874404298,-5.6275238962539245,0.39576203613281624,-11.019178602430559,1.1275983125000004,-1563.9985323752062,0.7169953640563798,0.6246709309007215,0.45638802212575913,0.34817450528618155,0.2813847059118479,0.17429286535169514,0.18598116353099764,0.1017729454330042,0.115378064261211,0.05245522489087687,0.0701164170327342,0.023196028301369593,0.04449298418994699,0.012255998732425688,0.029204493796815972,0.006874338072140201,8.022249769309953,5.67737385553419,3.543520500890481,2.177025511638701,0.41032004005189304,-0.5238522430933825,3.2643579833778595,0.9778828002692073,6.0221744615319786,0.9872004351358545,14.544479761446247,10.937733672589577,16.010519712691092,11.68857843701097,2.0185917009417804,0.7527188763683884,3.4886360718890685,2.2269499974029188,7.00827120033695,1.38509673529106,3.7017167026198208,2.422963323788845,20.925422269403636,14.70239378825,0.2225804481416493,0.4515090034761268,0.6019231712216899,0.6537454321398354,0.6537454321398354,0.6587940404974291,1.439853763930084,787.9673954758653,0.0,0.0,12.0,0.0,9.0,0.0,4.0,0.0,0.0,4.622266075766299,3.205238481728027,2.2742011722130417,1.9534304688852169,1.9534304688852169,1.9221804688852169,306.34738008327895,1667.6934041154445,52.86346600270804,26.05770943930382,50.63057188630303,,18.0,837.0,0.0,4.794537184071822,5.783244946364939,24.340666912419827,61.89446508543724,0.0,0.0,36.39820241076966,37.49476826046345,9.473725907600098,14.3,33.25,14.5,1.0,18.75,0.0,0.02333333333333331,-4.25,0.09640261627907004,0.037253289473684614,-0.05914932680538543,0.0,0.12063900414937734,0.0,0.5359374999999998,0.803333333333333,0.4395348837209298,0.49868421052631523,0.803333333333333,29.446690631350062,0.3097968543488019,0.5677968543488019,25.184310271163877,6.437181449758503,8.16723525826579,54.63100090251394,14.604416708024294,0.5933609958506226,0.16317016317016314,0.0,0.3006993006993007,0.48,0.29157978156884573,-0.6616514814007184,-0.03959632719356471,-0.010338304396886225,-0.031507213400034206,0.7084202184311543,1.6075438580041632,0.032333879151383776,0.02511787278131505,0.03738474088381775,-7.020570719347374,0.9210318801396868,0.7785558185035041,1.3064489451932373,0.646911099949774,0.5161158188474437,1.4990256151999874,0.9290522002650631,1.2930550069183573,0.766300885563382,0.6551446259445007,0.8040623078663482,1.157140553708481,0.9714993804213135,1.2679752542600156,1.522133774465116,1.154371140721482,1.042423840840194,1.010801076431809,0.9671749437154863,0.9079429298453411,1.2126751656175456,0.7066921043106991,1.2804169229183184,0.882658275185479,0.978950957644104,1.3078799099200733,1.3739086008044563,1.2458748933961217,1.1068779188771856,0.7182881978927913,0.9716978420749607,0.7692772364444371,1.264519853808396,0.8894083755085701,1.3289458728558174,0.8006277937901467,1.0758041053822531,0.8771769322472082,1.003278089790689,0.853230843141965,0.7475665152498377,1.2825431694537133,1.0825106934646482,1.3318814461574713,0.8919182042437862,1.0662217123787672,0.9104926415138959,1.2524839575507274,0.824593319096206,0.9371519504299196,1.009797146298512,0.5430821676266604,0.7353277770121691,0.8901911812919489,0.8235533887282279,0.8804223118374098,0.9164319223677819,0.9065706938136118,1.009762760060172,0.8448546477912022,0.8355655140805622,1.308980454944394,1.3943842960937505,1.0553243018239613,1.2073928625160575,0.674142244606429,0.8252859757520189,0.6302445267745574,1.248301384197029,1.0574445319051367,1.4131008310905175,0.6546079235358399,1.2173482032218093,1.3295352525416118,1.4546834350976519,1.555801104972376,1.5247535905378764,1.264993027996022,1.2157491788752772,1.2351677393617282,1.3111730898591318,1.6622379810199186,1.3826585428833573,1.2157925871633917,1.1657992565055761,0.7511299697787337,0.5541001725202833,1.1286629834254145,1.1082038862292312,1.247604216640753,1.1728541048882966,1.2659589270241234,0.8174106817618569,1.343579518197935,0.6715194910365515,1.2878068435010752,5.5,0.16264462809917357,3.1111111111111125,2.486111111111111,0.9766666666666668,1.1394444444444445,0.5420861678004535,0.3750708616780045,0.37947215923406397,0.3906481481481482,5414.966062234951,6312.599124000884,2829.0431713129683,2495.3532680002554,20.347912504081478,0.48423372855977376,10.49476696382206,0.9388627278933906,1.0,0.48,1.377733924233701,2.794761518271973,3.7257988277869583,4.046569531114783,4.046569531114783,4.077819531114783,0.171875,0.006023875114784206,0.07235142118863051,0.05289598108747044,0.02382113821138212,0.03255555555555555,0.016426853569710714,0.011031495931706015,0.012241037394647228,0.013021604938271605,0.41224396299215843,24.638671875,12.296376419686316,6.292508917954816,180.135193558652,1.0,4.311580663544008,205.50127158809113,,166.35054850988382,163.01418821427504,166.96291459737037,166.3994495841066,255.80470600025063,165.23906124503648,166.5209732802251,215.18881049157426,0.07063197026022305,0.06687912391756298,-0.27328493718919233,0.5500865003627434,0.43720505534079174,-0.2375370631790319,0.0679695029897561,-0.11023381887498963,0.08387455466433823,-0.02922435324145618,0.024606992253970613,-0.036801239222841536,0.06370842430321984,-0.08802921143400215,-0.1413254069523146,0.15585681786526764,0.1418158927891066,0.13168447092226837,0.0661550823719965,0.1062224187030275,-0.06266147951023719,0.031761124514463196,-0.10808454820200293,0.11523199408146936,0.06066696421228494,-0.05512556557589752,0.03808675859291982,-0.0570902394106814,0.07703095261945307,0.35507291440116145,0.06431196563776771,0.2168434982446842,-0.047350499166062376,0.06983883238694223,-0.04957462303561626,0.17570072888512034,-0.10524798968309555,0.00382956313569247,-0.12239235974414843,0.06589799023140364,0.15269428085168907,-0.2518729172887847,-0.10934217035440306,-0.25745851534464287,-0.0007237731474223946,0.010260419601739132,-0.0020015262378911395,-0.20630914988166416,0.17515474819912055,0.19125755891948415,0.13289016761608755,0.23506132204850907,0.2566313354943468,-0.010673904141372547,0.17304477623322287,0.05793634575638038,0.19998278068453684,0.19747139341843375,0.17375863535776814,0.1047164438716836,0.1883839841267147,-0.058963428613670765,-0.005921399476393194,0.040591336814753146,-0.02366688141098591,0.23561603348868476,0.1937093127081407,0.29470377623456856,-0.026027320021847506,-0.027058687394374545,-0.10368730423418972,0.2820683458827247,-0.19250473699048667,-0.17252942349977285,-0.24571496199175052,-0.24454967990879595,-0.31134623379061566,-0.15150338743082348,-0.19193851163371034,-0.14910096493754182,-0.1807406067011349,-0.18345591095617172,-0.1570778553651578,-0.17278707214994865,-0.20017182982238743,0.08734165513124939,0.17230245961600751,-0.08537753222836096,-0.13056603773584904,-0.17896355869401262,-0.20378885351524792,-0.19547201630037767,0.03400962829797563,-0.11296582890117152,0.15859242158699474,-0.24342842704358442,16.17358010203557,23.063627006527213,9.533729132673265,12.351079858952335,25.612867911274105,29.821230218409248,30.144567087363694,30.144567087363694,30.519910837363696,60.77958669420987,50.662246713583116,4.219915249817884,5.897424730808865,0.0,10.117339980626749,13244.665014470502,12876.963979928398,1046.1973240909756,189.0,43.0,58.0,74.0,94.0,110.0,136.0,159.0,170.0,410.256942948001,32.0,5.017279836814924,5.8664680569332965,6.736966958001855,7.612336837167746,8.50045386741194,9.392411897514927,10.293398993717526,11.197351333821182,12.107781527139903,0.5781250000000001,0.9621249999999999,1.1292118549239363,0.534091145616518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6458360965568861,0.9494485294117649,0.9908048069919881,0.5917405798392023,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,19.273545369301054,24.712787595593646,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,0.0,27.694948798762496,73.70413101781395,24.21641579521914,0.0,214.28991592381553,-486.2656784957863,-29.10041834707058,-7.597901226496661,-23.155508499799346,520.6372960070945,1181.4277256196583,23.763047655637457,18.45980821280716,27.47506338650368,0.5,0.9034048958627254,0.21692221602166553,51.69332544738815,0.08551370610362595,90.88716892149807,0.09659510413727475,9.0,0.375,0.22962232070561683,0.4657935863786622,0.6209664712978263,0.6744282551857972,0.6744282551857972,0.6796365885191306,4.339200000000004,,1.0357142857142858,1.2284783620288504,0.9699017285501993,1.0327970942604563,-4.283246429381093,1.098531211750306,1.0260103868809844,-1.8356326906609346,121.87650000000006,14.268263091671919,0.0,9.799819461700956,0.0,27.694948798762496,52.48230236450128,47.52510539416365,0.0,22.6259266499618,4.174387269895637,0.0,5.4680601411351315,2.3978952727983707,6.966967138613983,4.948759890378168,8.56197533418813,7.221835825288449,10.214825114586255,37.00000000000001,11.649712707626668,0.0,0.0,0.0,0.0,0.0,4.868838247893846,0.0,61.57599999999999,0.0,13.014184916314244,0.0,0.0,0.0,0.0,0.0,0.044801692281850825,72.26955871513192,9.473725907600098,0.0,11.49902366656781,68.06536677256717,0.0,0.0,43.6163889662283,36.39820241076966,0.0,11.126902983393991,0.0,34.181833319457155,41.33351017964071,39.09921577001994,411.00254317618226,,332.6320494007201,325.9464778710816,333.86116907950407,332.7300460285959,513.0371608102948,330.40488707595625,332.97354586799145,430.9894985467021,39.09921577001994,411.00254317618214,,331.6653827340534,324.79989806652134,332.9559274661906,331.76610207395277,515.8926584298822,329.37959127832266,332.0159361735691,432.2132536738094,4.871670283679118,309.9060525052639,,249.97261282883673,245.29573140727717,251.84708236590131,250.04422978414817,382.1508234407003,248.45967137051252,250.20705177193415,320.7196479720216,1.303307192333998,13.700084772539409,,11.087734980024004,10.864882595702719,11.128705635983469,11.09100153428653,17.101238693676496,11.013496235865208,11.099118195599715,14.366316618223404,2.537626722575829,205.50127158809113,,166.35054850988382,163.01418821427504,166.96291459737037,166.3994495841066,255.80470600025063,165.23906124503648,166.5209732802251,215.18881049157426,60.764705882352956,0.0,8.596745470352662,0.0,0.0,0.0,0.0,63.41150764748724,7.041494897023812,0.0,11.819660057539679,0.0,0.0,4.631228677633905,0.0,0.0,0.0,37.871397109708944,663.9368413611269,88.17497115095686,178.86473716940628,238.45112497836533,258.9804499913461,258.9804499913461,260.9804499913461,1095.0,138.7244493085233,70.99037056978324,79.95470598688414,42.01,42.01,1.0,8.951911634403567,6.0,3.8528525860804024,5.365176714330183,,5.34605848227767,5.348098095890734,5.3508272086733015,5.346044782769221,5.32817221472032,5.346967567093016,5.34593241898617,5.330139395960501,0.12842841953601342,0.17883922381100611,,0.17820194940925568,0.17826993652969111,0.17836090695577672,0.17820149275897404,0.17760574049067734,0.17823225223643388,0.178197747299539,0.17767131319868337,2.4474260940630614,2.7785416025736804,,2.7749718457708807,2.7753532902771183,2.775863456067433,2.774969283223904,2.771620543966477,2.7751418789894178,2.774948264888205,2.771989679592151,338.0000000000012,1657.00822430144,192.42253414427935,,194.21733586468795,193.9631669422775,193.7535541060996,194.21944685334483,196.90770561037635,194.11020309343292,194.2324243639408,196.38599330772126,55.23360747671466,6.414084471475978,,6.473911195489598,6.4654388980759165,6.458451803536653,6.473981561778161,6.5635901870125455,6.47034010311443,6.474414145464693,6.546199776924042,8.511381269450755,6.358305941373561,,6.367590108639465,6.366280568583252,6.365199300506738,6.367600977788582,6.381347408186232,6.367038343630676,6.36766779435744,6.378694364874823,11.819660057539679,17.64541359394815,0.0,3.3729894622372987,1.5406504779383985,11.649712707626668,0.0,15.638240367376476,0.0,411.99570211666787,157.48749045479886,-357.36987935460047,-21.386689321835682,-5.583904364915632,-17.017613302600022,382.63051638174187,868.2633844875315,17.464110360538985,13.56661538261768,20.192171732268175,2934.0,47.0,1.5532777246094187,0.7920167004075882,0.0,0.0,0.3238015069303438,0.09196278254943947,0.0,0.0,0.0,0.0,0.0,0.0,0.06415002990995841,0.03125,0.3816764780485185,0.13303906515816774,0.7437819695069469,0.19859268926037707,21.50986092169139,18.740127927021643,14.604416708024292,11.14158416915781,12.09954235420946,7.494593210122891,10.786907484797863,5.902830835114244,8.537976755329614,3.881686641924888,6.590943201077015,2.1804266603287417,4.8942282608941685,1.3481598605668257,3.9718111563669725,0.9349099778110673,4.240252081519608,1.9619555946069993,6.644703788718578,2.497828254184342,9.81195865385689,2.631593800015308,103.09867099699166,61.33236391827089,46.78862734009915,44.3713343733774,44.3713343733774,43.6213343733774,150.0,176.0,69.02696199999997,41.869038000000025,0.203125,154.05,10.0,7.055555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,12.0,12.0,64.0,0.0,2.0,66.0,12.0,1.0,7.0,59.0,13.0,32.0,53.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,5.0,0.0,0.0,30.0,5.0,0.0,2.0,3.0,0.0,3.0,12.0,0.0,0.0,0.0,0.0,2.0,3.6888794541139363,7.7498880374525285,4.204692619390966,4.791649752930709,5.369474560864365,5.965184738087501,6.322565239927284,6.798079912173036,7.19095858672401,7.477577729837063 +656635,CCOC(=O)CN[C@@H](C(=O)N1CC[C@H]1C(=O)NCc1ccc(C(N)=NO)cc1)C1CCCCC1,0,21.217391304347824,6.199630434782608,2.9420289855072466,6.666666666666667,166.64694362422054,83.45973034782612,1.3298706039089128,6.243999999999999,4.8731884057971016,7.737469333333334,196.38929634777793,23.183098591549296,6.401915492957747,3.676056338028169,5.985915492957746,150.27710403166697,86.82285954929579,1.683856147690141,6.524761971830986,3.1314553990610334,7.820326309859155,245.0426849519542,18.094488188976378,6.1957551181102355,3.1968503937007875,4.330708661417323,157.15502809498733,65.65463935433071,1.407786556692016,6.287050393700786,2.82567804024497,7.692574173228345,194.98966031075682,15.125714285714286,6.085444571428572,2.742857142857143,3.354285714285714,162.64640258824437,53.80174718857142,1.2061445441940573,6.15049257142857,2.8500000000000005,7.646609417142858,162.56518287701303,14.546448087431694,6.166825136612023,2.601092896174863,2.9562841530054644,164.3024272088427,50.72460878688525,1.1493157062544481,6.224661202185791,2.9981785063752273,7.735873530054645,156.05864594655344,14.137566137566138,6.201825396825397,2.513227513227513,3.111111111111111,167.49177755347807,49.23461557671956,1.103513866244471,6.244604232804233,3.1784244562022343,7.784303195767197,150.322915467906,14.524324324324324,6.109691351351351,2.5837837837837836,3.1945945945945944,163.7525977340733,51.143464762162175,1.158971201758681,6.166716756756759,3.0614114114114113,7.688197859459459,155.93410267356742,13.661458333333334,6.060983333333333,2.4739583333333335,2.5677083333333335,163.81533758113002,47.40825011979167,1.1289878490575729,6.1203161458333355,2.7335069444444446,7.6555381874999995,150.91284855288606,12.87434554973822,6.137376963350786,2.287958115183246,2.445026178010471,166.63848917323512,43.794576198952875,1.064262629381691,6.180626178010471,2.9512798138452596,7.748262157068064,142.08248523883498,7.666456626759083,0.14018441503885726,0.023779289155179906,0.5372820835958834,3.840369670237345,1.4113982899552202,36.35359015122874,0.2127822927683911,0.13092291535391717,1.9237555135475735,0.0859115731989078,47.97785712414146,0.18167564513313886,-0.0019326289600655915,-0.013648079829007686,0.1836813783351231,1.093086137070269,-0.07821806902699416,0.8838993258074045,0.002749297458949198,-0.000977844931381848,-0.014641408628202747,-0.0017748154932536364,1.1586306456338502,-0.12269307546386579,0.012937244210258285,-0.0009534391356741642,-0.03962146508624039,0.2999932191840859,-0.06555913140463833,-0.6890791392465306,-0.016314392956338818,0.010553131661944978,0.1473864089295077,0.00936499783840818,-3.5391404369682267,0.38430941878957,0.015279659495304104,0.005452413394421935,-0.045108170552404944,0.04194917034236507,-0.007144516656187304,1.7618074234296524,-0.0023311527584209007,0.013288745101569311,0.07806643262219824,0.00827738050709635,-0.09307019543746191,-0.6679613388838962,-0.021303366492092433,-0.004125477855676255,-0.01918594041064524,-0.49191002028090236,-0.2612491012355734,-3.1340501635832094,-0.02393063968678057,-0.01836561750011184,-0.24469477069495663,-0.013949737766897048,-4.262296271159008,-0.3584281013392544,-0.01882757890665883,-0.0023836969402304337,0.011448841946636527,-0.20015803002570487,0.06772048791396326,-1.6010728238765357,0.010414757447335455,-0.01641116012042281,-0.09200692576033896,-0.010994832458167096,1.5105744826164802,0.17804004382454275,0.01178930999051984,0.004242034729473375,-0.03246422225628274,0.10502790124718282,0.045998431488271395,0.7862578875491759,-0.0004447175268604254,0.010092157109850891,0.12220348893316758,0.00807588782733583,-0.14305322296886838,-0.2620937040537701,-0.011127410207939501,0.0003402537981373396,-0.048076165721487096,-0.3849801774837218,-0.05212288538027135,-1.222447291853733,-0.012105036502959252,-0.00942319464135685,-0.1952493239340475,-0.008328165892144508,-1.7590289488025261,-0.8075902484299241,-0.026732104544889636,-0.0038657947730937176,-0.02442071323394377,-0.5379188014309106,0.005103393357255281,-3.715552615148606,0.0006709101546479798,-0.024214788788927435,-0.2630136767870713,-0.016615403231535496,-1.1818953816360487,,,0.4607843137254902,0.9926470588235294,0.35294117647058826,0.0,0.6397058823529411,-0.2867647058823529,1.0928025081711747,0.01397420166904162,0.021562436963159265,0.8535112264756952,0.19219897389011797,0.291303693922402,1.94631373464687,0.48350266781252005,2.0047563367515364,1.4522784641176978,0.28942351133467326,0.26305436129916554,0.0,0.5524778726338387,6.858895930724652,1464.0,427.7745,203.0,460.0,11498.639110071217,5758.721394000003,91.76107166971498,430.8359999999999,336.25,533.885384,13550.861447996676,1646.0,454.53600000000006,261.0,425.0,10669.674386248354,6164.423028000001,119.553786486,463.2581,222.33333333333337,555.243168,17398.030631588746,2298.0,786.8608999999999,406.0,550.0,19958.68856806339,8338.139198,178.78889269988605,798.4553999999998,358.8611111111112,976.9569199999999,24763.686859466117,2647.0,1064.9528,480.0,587.0,28463.120452942763,9415.305757999999,211.07529523396002,1076.3361999999997,498.7500000000001,1338.1566480000001,28448.90700347728,2662.0,1128.5290000000002,476.0,541.0,30067.344179218213,9282.603408,210.32477424456403,1139.1129999999998,548.6666666666666,1415.664856,28558.73220821928,2672.0,1172.145,475.0,588.0,31655.945957607357,9305.342343999997,208.564120720205,1180.2302,600.7222222222223,1471.233304,28411.031023434236,2687.0,1130.2929,478.0,591.0,30294.230580803563,9461.540981000002,214.40967232535598,1140.8426000000004,566.3611111111111,1422.3166039999999,28847.808994609975,2623.0,1163.7087999999999,475.0,493.0,31452.544815576963,9102.384023,216.76566701905398,1175.1007000000004,524.8333333333334,1469.863332,28975.266922154125,2459.0,1172.2390000000003,437.0,467.0,31827.951432087906,8364.764054,203.274162211903,1180.4996,563.6944444444446,1479.9180720000002,27137.754680617483,528.9855072463768,9.672724637681151,1.6407709517074136,37.07246376811595,264.9855072463768,97.3864820069102,2508.397720434783,14.681978201018987,9.033681159420285,132.73913043478257,5.927898550724638,3310.4721415657605,12.898970804452858,-0.137216656164657,-0.9690136678595457,13.041377861793741,77.60911573198909,-5.553482900916586,62.75685213232572,0.19520011958539304,-0.06942699012811121,-1.039540012602395,-0.12601190002100818,82.26277584000337,-15.582020583910955,1.6430300147028023,-0.12108677023061885,-5.03192606595253,38.099138836378906,-8.326009688389068,-87.51305068430939,-2.0719279054550297,1.3402477210670123,18.718073934047478,1.1893547254778387,-449.4708354949648,67.25414828817475,2.673940411678218,0.9541723440238387,-7.893929846670866,7.341104809913887,-1.2502904148327783,308.31629910018916,-0.4079517327236576,2.3255303927746294,13.661625708884692,1.4485415887418613,-16.287284201555835,-122.236925015753,-3.898516068052915,-0.7549624475887547,-3.5110270951480786,-90.01953371140513,-47.80858552610993,-573.5311799357273,-4.379307062680844,-3.360908002520467,-44.779143037177064,-2.55280201134216,-780.0002176220985,-67.74291115311908,-3.5584124133585187,-0.450518721703552,2.1638311279143037,-37.82986767485822,12.799172215739057,-302.60276371266525,1.968389157546401,-3.101709262759911,-17.389308968704064,-2.0780233345935812,285.49857721451474,32.937408107540406,2.18102234824617,0.7847764249525744,-6.005881117412307,19.430161730728823,8.509709825330209,145.45770919659753,-0.0822727424691787,1.8670490653224148,22.607645452636003,1.4940392480571285,-26.46484624924065,-50.321991178323856,-2.136462759924384,0.0653287292423692,-9.230623818525522,-73.91619407687459,-10.0075939930121,-234.70988003591674,-2.3241670085681765,-1.8092533711405154,-37.48787019533712,-1.5990078512917456,-337.733558170085,-154.2497374501155,-5.105831968073921,-0.7383668016609001,-4.66435622768326,-102.74249107330394,0.9747481312357587,-709.6705494933838,0.12814383953776415,-4.62502465868514,-50.23561226633063,-3.17354201722328,-225.7420178924853,0.7206301398015914,0.578367762168759,0.45664140848960233,0.33284106273600655,0.2920477082999919,0.18328658112781882,0.1913682264204606,0.10626603974809219,0.12335185487998367,0.06281364650784278,0.07802353267940687,0.037040661003545465,0.04933568861245928,0.019653601975844266,0.03247117980420248,0.01157167657387334,8.029996296369806,5.688953875491727,3.5561802601812467,2.1883708578195273,0.44347549403294323,-0.4950924409671994,3.1983069939529996,0.9772080604491846,6.029050102548048,0.9880120517167854,14.56204624846236,10.949894724544217,16.01562249450749,11.700402182397248,1.9888428185820655,0.7413625377321225,3.5022675933873417,2.238174609660846,7.010452468832085,1.1816423462791263,3.715104339759721,2.4340516528183715,20.896076324061067,14.696358184137843,0.2506495674208297,0.5741670584965013,0.7861760660430491,0.869794393181671,0.8824987212224892,0.8824987212224892,1.4808724558328248,882.2447898790648,0.0,4.0,5.0,0.0,4.0,8.0,2.0,1.0,0.0,4.533091109554423,2.4996535533066493,1.1670916668547946,0.6415168479201512,0.5616650362632383,0.5616650362632383,347.4957703945274,2887.3109429926903,85.81819439136767,41.84508613032885,80.36693256561549,,19.0,1023.0,12.083681658295921,14.383611552215466,36.081946984486095,31.68066789096107,37.667559606327046,0.0,36.08911520438754,0.0,15.789289934763202,15.677783455739526,15.666666666666668,33.75,12.0,0.0,21.75,0.0,0.03921568627450977,-9.75,0.14286700187321283,0.022531400966183668,-0.12033560090702916,0.07327802916038195,0.18531608548931355,0.0,0.5816425120772934,0.8715686274509801,0.4387755102040806,0.5591111111111098,0.7982905982905981,37.15528527781994,0.47512285674741506,0.7331228567474151,29.01938170017364,6.534765112264012,9.90432559336167,66.17466697799358,16.43909070562568,0.5286839145106864,0.14255319148936169,0.0,0.3127659574468085,0.5833333333333334,0.28038821277299164,-1.0232680834246557,-0.055642847048282276,-0.014829972223545733,-0.04448991667063721,0.7196117872270084,2.6262008914110138,0.052828614492015584,0.038060882484217594,0.05709132372632639,-3.5147964219777252,0.8808250048234614,0.7686844728807539,1.6277729126791047,0.9042055302888478,0.5349216277758434,1.4388034966769854,0.8880948034849198,1.2309985140113595,0.7589088793466308,0.6301321412479685,0.7617184395388894,1.104499893233961,0.9403231582353577,0.6878100121320752,0.9889470184556051,1.3576305307419057,0.8345130289035463,1.2542001974594192,0.9491462540992339,1.2040604352836157,0.7041128191721124,0.49015354001156025,0.642315889937998,1.143058796386093,0.9126904109589041,0.7932297112582695,0.6991341614987717,1.2577683458058748,0.9758808638309842,1.0536942034542318,0.9165622726304948,1.0440831709516893,0.8041591889381995,0.7937133914598705,0.7952558460310666,1.0176293608472762,1.08176959353245,1.1928792333007918,1.2002419983544002,1.1276099411681768,1.1533778525343308,1.221424082708217,1.08002500473099,1.1013365987825654,1.173585202801143,1.2919438234581098,1.2053770806025117,1.0684303434510207,1.0691924331376388,1.2757581348677187,1.205710304909105,1.0384352855033072,1.1391658245738316,0.9481154346225354,1.0631976489445487,0.886828491364761,1.2533813646101963,1.290156577324027,1.2754171814312583,0.9128745914131811,0.9623724546464274,0.9179342675399421,0.8272366746140207,1.1550789256809582,0.9855510947394561,0.9726262826433257,0.9638891854200762,1.013718836335222,0.9222084718597607,1.0074129812747568,0.9232760843204915,1.0012924716025267,1.0200145547945205,1.082342615497335,0.9609736274750214,1.1272967161845189,1.1186932563990375,1.0213035131829231,1.0192394924204586,1.066156803785766,1.0731503299247263,1.1544525686634886,1.1205727574720366,1.0345248576682202,1.131693035932009,1.3624823122769962,1.2258129559592483,0.9651396501684477,1.233377736492639,0.93553130094011,1.1245094751707623,0.9496119440029943,1.3432067566417525,1.3618785783140477,1.4075432747073469,0.9794657495416421,6.0,0.17334965819814305,4.222222222222223,2.1875,1.6577777777777778,1.3055555555555558,0.8530612244897959,0.532986111111111,0.4268077601410934,0.29812500000000003,6815.297886985742,7887.18852588248,3202.1292862908513,2838.0392444173604,16.22095223644035,0.4225996438745168,9.365983598015111,0.7319005597957678,1.0,0.5833333333333334,1.575433347223746,3.60887090347152,4.9414327899233745,5.467007608858018,5.546859420514931,5.546859420514931,0.16666666666666666,0.005591924458004615,0.0917874396135266,0.04375,0.03453703703703704,0.027199074074074077,0.017409412744689712,0.011340130023640664,0.010162089527168891,0.008281250000000002,0.4167250241448083,28.569444444444443,14.666666666666666,8.258064516129032,199.42985387318194,1.0,4.43331904036639,245.70661380528162,,211.14510571776106,206.5988086984903,204.6594290687775,211.18991496820314,296.54759617191087,209.29975380764634,211.4106850823375,265.15140465993153,0.023697472506270526,-0.01378633252155664,-0.5739481840664984,0.3418714004118534,0.2846304473086606,-0.05541884922467619,0.024313948694762656,0.012920706056785225,-0.007468860044389405,-0.00761084686962259,-0.020658631045487593,0.024149278752402876,-0.01600388307625932,0.0922873217159857,-0.04009535900977402,-0.07374425147599313,0.078115714096228,-0.04644977386696305,-0.01895491301904442,-0.07667176034284337,0.08060568796086798,0.07661389812352727,0.10900740714787932,-0.07376612147997341,0.05012868884540118,0.10899684883707497,0.22929253094322297,-0.0839562157935887,0.01092321155108292,-0.005062013116378354,0.048463093083809326,-0.010955576839085523,0.10150052850294795,0.040580225539282234,0.09634767702288544,-0.001939857280341746,-0.08712777902537616,-0.1519667253038608,-0.17349037764560724,-0.03570925031082172,-0.12808923684956114,-0.18509948828396416,-0.08621019686214622,-0.11246537188519042,-0.14027809761541757,-0.12719639734454513,-0.16237320825914514,-0.08883882121142733,-0.04675277234181343,-0.13430579213416893,-0.10024256506049452,0.021308810206386433,-0.05211946953360211,0.04798113218353966,-0.044041670085847626,0.04894560215436579,-0.12534979133377355,-0.04782672492029413,-0.12797847890308303,0.031484825983534616,0.023223250647908165,0.08409857819966648,0.17839199068527756,-0.060423050102487136,0.0273483831676787,0.03259068103995705,0.021628067111897083,-0.0020900119134654254,0.07708472640232066,0.06352339893119457,0.09400232735394141,-0.002981650943657652,-0.034187071917808204,-0.07937694218615622,0.014308829667568981,-0.0894803068803753,-0.10024560408006998,-0.036929962117160466,-0.033626590572442126,-0.056889303830066906,-0.07197513602476399,-0.10149383461622453,-0.09693881257258113,-0.03666334960002662,-0.10534074445958545,-0.19069241425646247,-0.16256982064796588,-0.045452312629713165,-0.14006953695102634,0.003615842100401863,-0.1022059334357936,0.0031530356493444257,-0.1849545491976622,-0.1367188683462438,-0.19340122189435974,-0.024634184444251545,15.79703154701696,25.252214973257246,7.659192478486584,15.099112374965388,33.66675194546577,39.237083685432964,40.64068958388002,40.721180210030184,40.721180210030184,68.16171544955223,49.37746778000172,9.840399385378891,8.943848284171628,0.0,18.784247669550517,10611.756437393062,9401.718333232151,3301.0027199638807,103.0,48.0,62.0,71.0,84.0,87.0,96.0,99.0,102.0,473.26381922000104,36.0,5.1298987149230735,5.963579343618446,6.818924065275521,7.67275789664251,8.537975730598767,9.401869409521051,10.273429104575246,11.14378746449706,12.019833424702114,0.6135265700483091,0.9846376811594201,1.1415679776338756,0.5714254686826931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6328886140761955,0.9695936345552715,1.0073360988842797,0.5919681147620778,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,0.0,0.0,1.0,1.0,10.0,2.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,25.894481790596334,6.041840829147961,5.835619785757269,11.814359458703011,0.0,19.700400156221797,0.0,0.0,0.0,48.68364586937501,37.66755960632704,18.652964303522147,19.193479199573453,221.83171321851705,-809.5679550256219,-44.02235018014043,-11.732868913414809,-35.198606740244436,569.3274836130445,2077.7429879670685,41.79584421122724,30.11221721691404,45.168325825371056,0.47368421052631576,0.8212828431655139,0.1274245595014809,134.3858793243131,0.09032852269019935,321.806832612007,0.17871715683448602,10.0,0.2777777777777778,0.25790734871751336,0.5907925766699728,0.8089404937128866,0.894980063932083,0.9080522570978657,0.9080522570978657,1.099800000000003,,1.9642857142857146,2.356910190786412,1.9919188566797452,1.9588287879044064,-8.00238041260485,2.09952570379437,1.9437889666551162,-3.5915955315072723,125.91630000000004,24.327727530792803,0.0,15.533486938863138,16.80728625007412,64.0771050014552,19.696394776338067,35.392371257240434,0.0,0.0,4.290459441148391,0.0,5.60947179518496,0.0,7.1204443723924875,0.0,8.716863386544805,0.0,10.360057603961561,42.33333333333333,6.991001782993957,0.0,0.0,0.0,0.0,0.0,1.4385548973558815,0.0,67.93999999999998,0.0,38.08997074572386,0.0,0.0,0.0,0.0,2.9654906961549417,-0.686151479699256,78.76819045673741,16.367244685174846,0.0,0.0,65.50652372267388,25.665230911928088,5.917906046161393,56.575569920640675,29.42118100059698,0.0,0.0,0.0,39.42835733910582,43.669314371257485,42.760201902692486,491.4132276105633,,422.1746652170347,413.058975621052,409.2016864401033,422.26460471358837,595.4488336416467,418.4760061033048,422.70702963722465,531.3591609467769,42.76020190269247,491.41322761056347,,420.32592572123656,410.8407072061942,407.3269392808754,420.4210011485019,601.0975727564269,416.49998191149837,420.8775811980199,533.8944048513704,4.894766035586066,366.81290337186704,,316.7656573823149,309.69434154906895,305.5913018886622,316.83205525858284,442.85552412263223,313.846079814022,317.1836910605465,398.6283306557099,1.2576529971380144,14.453330223840098,,12.41690191814808,12.148793400619176,12.035343718826567,12.419547197458481,17.5132009894602,12.30811782656779,12.43255969521249,15.628210616081674,2.447383017793033,245.70661380528162,,211.14510571776106,206.5988086984903,204.6594290687775,211.18991496820314,296.54759617191087,209.29975380764634,211.4106850823375,265.15140465993153,66.90196078431373,0.0,1.7481482298421787,0.0,0.0,5.568726074237992,8.75128532198864,69.5061908230153,6.851507328626752,6.019931904350958,5.003959631152743,0.0,-0.8617401206741389,1.6193149879454893,0.0,0.0,0.0,40.84579991858337,649.7654745703693,108.70490095843847,249.01209233953486,340.95886250471284,377.22352501120326,382.73330001553023,382.73330001553023,822.0,146.9620551543538,141.39372226119218,70.09729659923221,146.35,146.35,0.9,7.522231206827454,6.169925001442312,4.155180135805143,5.729501253140018,,5.735588255564721,5.734936411145088,5.731645613683598,5.735585476230072,5.716774308667537,5.735206103705569,5.735636187501109,5.7310000504299525,0.12221118046485714,0.1685147427394123,,0.1686937722224918,0.16867460032779671,0.16857781216716464,0.16869369047735505,0.16814042084316286,0.16868253246192852,0.16869518198532674,0.16855882501264566,2.648131212974161,2.9694039172236266,,2.970465749840284,2.970352094285848,2.9697781137317976,2.97046526526308,2.9671801458932077,2.9703991194313826,2.9704741067400424,2.9696654759912193,365.5900000000015,839.1328934876857,227.2567812458128,,225.72581328043105,225.7775825157693,226.29997991353576,225.72680037339754,228.23694520072644,225.76761866101876,225.7208873869874,226.5041397128568,24.68037922022605,6.684022977818024,,6.638994508247972,6.640517132816744,6.655881762162816,6.639023540394045,6.71285132943313,6.640224078265257,6.638849629029042,6.6618864621428475,7.9561445206446955,6.6498560047001085,,6.643096478779291,6.643325798142322,6.645636895501267,6.643100851743083,6.654159754283947,6.643281665883907,6.643074656077136,6.6465386532561395,5.003959631152743,39.709285733669354,17.73670792249454,7.0072809715938735,-0.5394859368396647,5.9825961194602275,5.748646580536065,2.8510089779328656,0.0,456.170452588951,175.50420006173124,-640.4971330786408,-34.82868721115765,-9.282567146067256,-27.847701438201778,450.4286746694303,1643.8254735824346,33.06716653705161,23.823557588151232,35.73533638222684,4012.0,50.0,1.898235514144848,0.8688641296701678,0.0,0.0,0.4948079526259055,0.1508230914750082,0.0,0.0,0.0,0.0,0.16666666666666666,0.12909944487358058,0.19245008972987526,0.12909944487358058,0.5569979885342626,0.28436200012500334,0.5915016735151364,0.2449428728682596,24.501424753254106,19.664503913737803,16.439090705625684,11.982278258496235,14.01828999839961,8.797755894135303,11.864830038068558,6.588494464381716,8.75798169647884,4.459768902056838,6.553976745070178,3.111415524297819,4.292204909283957,1.7098633718984513,3.117233261203438,1.1108809510918407,4.836417254733221,1.9581139489063615,6.844036300596638,2.4618629163069836,9.342805170196199,3.0463901574443404,114.27499303822846,51.35084729994977,32.302502858818364,26.860260200848824,26.27072771849391,26.27072771849391,168.0,194.0,72.92775499999998,41.73224500000003,0.30434782608695654,174.1,11.61111111111111,7.833333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,6.0,6.0,69.0,0.0,3.0,71.0,6.0,4.0,7.0,64.0,10.0,36.0,61.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,7.0,4.0,1.0,34.0,10.0,0.0,5.0,5.0,0.0,3.0,10.0,0.0,0.0,0.0,0.0,1.0,3.784189633918261,5.667291366073786,4.212127597878484,4.5976419195673,4.904348423578298,5.273320020030998,5.354815840453299,5.524954807116502,5.5212108866070375,5.639466151053152 +20279,Nc1nc(Cl)nc2c1ncn2[C@H]1C[C@H](O)[C@@H](CO)O1,0,35.41935483870968,6.8536580645161305,3.7419354838709675,9.793707686180806,169.9248059504964,143.88453954838718,1.482463447038323,6.929012903225807,5.484041820926197,8.360183258064518,225.09316471222704,30.545454545454547,6.9464545454545465,4.515151515151516,9.094276094276093,155.98100946960903,118.17455157575756,1.6832180318787875,7.062818181818182,3.6841252026437217,8.335433636363636,263.0294448483473,28.45614035087719,6.957505263157895,4.12280701754386,7.978557504873295,162.29252862573506,109.24878829824566,1.491270178851702,7.046215789473685,3.5968161143599744,8.39178989473684,230.00823708372937,22.78082191780822,6.761173972602739,3.315068493150685,6.249619482496195,166.0278188745074,85.30566082191778,1.2751701961984927,6.8167328767123285,3.7361040644906716,8.270098904109592,188.87195960740803,22.534246575342465,6.704505479452054,2.9863013698630136,5.251141552511415,168.79034462331902,84.2865433150685,1.2309654584293015,6.765643835616439,3.7927729860758785,8.238130328767124,177.44780702978696,19.492537313432837,6.439807462686568,2.8208955223880596,3.799336650082919,170.1240659849749,70.82603228358205,1.2064011465401194,6.533029850746268,2.9750015355322157,8.063268865671642,165.17481125001495,22.41176470588235,6.604117647058824,2.823529411764706,4.9259259259259265,167.85261738575338,83.06419152941176,1.236561557937098,6.701045098039215,3.7838295812152025,8.191378980392155,175.11166126194288,20.431818181818183,6.65640909090909,2.477272727272727,4.060606060606061,171.58460421472216,73.56921424999999,1.188811735732841,6.744504545454547,3.7336326225215117,8.268061090909091,163.76631561551937,21.15625,6.531125,2.125,3.1701388888888893,171.8728428222383,76.76232631250002,1.1026919754451563,6.65105,3.9776234567901234,8.21139775,146.5083306590044,12.626430801248697,0.18060249739854314,0.03697288460175752,0.7075962539021852,4.432574093344124,1.530987335150688,58.95464012695111,0.2231801281514796,0.17236732570239335,1.798589908108028,0.12309809573361079,43.91179184800979,-0.335130703496989,-0.045754403556901024,-0.021701662209937526,0.21224734336076678,0.7188565813840416,-0.5832411718935211,-1.3199744104310414,-0.0038453737175127905,-0.03824826411881566,-0.445893549117143,-0.03374875849020903,1.6178434349504751,0.49184876864377364,-0.007511835259324245,0.0021111653803570283,0.03660295379447577,0.11521213846399005,0.1370554450054774,2.294491287310376,-0.004117652161541309,-0.002905016704091153,-0.21794990066234016,-0.004220664494221998,0.37699270845517613,0.4478069362678719,-0.0031449189628383906,-0.001421155722480834,-0.06950522429546847,0.01607104612440571,-0.22153279872403475,2.2029176450329975,0.012227494734490248,-0.0030874759454335614,0.013640169285921584,-0.00391493665274471,0.7457723057648489,0.9860305332630113,0.016621762433538117,0.0060415387968854335,-0.04034039884252989,-0.2141270411954963,0.08643874949060477,4.535426612774933,0.008126444897798672,0.016682608013912456,0.11381440350096982,0.013929239661881882,-0.44807985058475863,-0.8247938248404181,-0.031515208038889776,-0.008075004905512556,-0.046546663146287255,-0.6502729348593679,0.02167405338470036,-3.7022628756270706,0.012121347172223684,-0.028720431142932563,-0.28012429848926396,-0.02074837016789106,1.1157643858111435,-0.10334414723225425,0.02826391626369592,0.006983111827720176,-0.05104976433861787,-0.06923943251842432,-0.019784991402933213,-0.7058476044969496,-0.032059240299214045,0.025142288465854604,0.20247466461054778,0.019420495664238632,-3.6735051360160353,-2.7811228833601365,-0.035206309715258725,-0.005578258424351711,-0.22885725096963405,-1.0034621857375934,-0.11389951213311468,-12.9254154546637,-0.021220460540703336,-0.039125536846088355,-0.1748209114464259,-0.027022289281997916,-7.369422868939051,-1.256471123829345,0.02004185744016654,0.004365564618034181,-0.22977367325702389,-0.448989366143806,-0.2983596094488129,-6.285694451547863,-0.08531933745172264,0.01776896462018732,0.27106314776710866,0.01629259579864724,-13.147370860320306,,,0.4586466165413534,1.2236842105263157,0.47368421052631576,0.05263157894736842,0.75,-0.27631578947368424,0.7550547803576174,0.016718847992026876,0.03029779536044793,0.8314358624112382,0.2377206130344402,0.241045463308959,1.5864906427688557,0.47876607634339924,2.0384795494410084,1.1194457165023426,0.5338686318674408,0.29199777621878015,0.0931674248524449,0.9190338329386659,9.195576352387105,1098.0,212.46340000000004,116.0,303.60493827160496,5267.668984465388,4460.420726000003,45.95636685818801,214.79940000000002,170.0052964487121,259.16568100000006,6977.888106079038,1008.0,229.23300000000003,149.0,300.1111111111111,5147.373312497098,3899.7602019999995,55.54619505199999,233.073,121.57613168724282,275.06931,8679.97167999546,1622.0,396.5778,235.0,454.77777777777777,9250.674131666898,6227.180933000002,85.00240019454701,401.63430000000005,205.01851851851853,478.33202399999993,13110.469513772574,1663.0,493.56569999999994,242.0,456.22222222222223,12120.03077783904,6227.313239999999,93.08742432248997,497.62149999999997,272.735596707819,603.7172200000002,13787.653051340785,1645.0,489.42889999999994,218.0,383.3333333333333,12321.695157502289,6152.917662000001,89.86047846533901,493.89200000000005,276.8724279835391,601.383514,12953.689913174449,1306.0,431.4671000000001,189.0,254.55555555555557,11398.312420993318,4745.344162999997,80.82887681818801,437.71299999999997,199.32510288065845,540.239014,11066.712353751002,1143.0,336.81,144.0,251.22222222222223,8560.483486673422,4236.273768,63.06463945479201,341.75329999999997,192.97530864197532,417.7603279999999,8930.694724359088,899.0,292.88199999999995,109.0,178.66666666666669,7549.722585447775,3237.0454269999996,52.307716372245,296.7582000000001,164.27983539094652,363.794688,7205.717887082853,677.0,208.996,68.0,101.44444444444446,5499.930970311626,2456.3944420000007,35.286143214245,212.8336,127.28395061728395,262.764728,4688.266581088141,391.4193548387096,5.598677419354837,1.1461594226544831,21.93548387096774,137.40979689366785,47.460607389671324,1827.5938439354845,6.918583972695868,5.343387096774194,55.75628715134887,3.8160409677419342,1361.2655472883034,-11.059313215400635,-1.5098953173777339,-0.7161548529279383,7.004162330905304,23.722267185673374,-19.246958672486198,-43.55915554422437,-0.12689733267792208,-1.262192715920917,-14.71448712086572,-1.113709030176898,53.388833353365676,28.035379812695098,-0.428174609781482,0.12033642668035062,2.086368366285119,6.567091892447433,7.812160365312212,130.78600337669144,-0.23470617320785464,-0.1655859521331957,-12.423144337753389,-0.24057787617065388,21.48858438194504,32.68990634755465,-0.22957908428720253,-0.10374436774110088,-5.073881373569199,1.173186367081617,-16.171894306854536,160.81298808740883,0.8926071156177882,-0.22538574401664999,0.9957323578722757,-0.2857903756503638,54.44137832083397,71.98022892819982,1.2133886576482824,0.44103233217263665,-2.9448491155046823,-15.63127400727123,6.310028712814148,331.0861427325701,0.5932304775393031,1.2178303850156094,8.308451455570797,1.0168344953173774,-32.70982909268738,-55.26118626430801,-2.111518938605615,-0.5410253286693413,-3.118626430801246,-43.56828663557765,1.452161576774924,-248.05161266701373,0.8121302605389868,-1.9242688865764817,-18.768327998780684,-1.390140801248701,74.75621384934661,-5.270551508844967,1.4414597294484919,0.356138703213729,-2.603537981269511,-3.5312110584396406,-1.009034561549594,-35.99822782934443,-1.6350212552599164,1.2822567117585848,10.326207895137937,0.9904452788761702,-187.3487619368178,-122.36940686784601,-1.5490776274713838,-0.24544337067147529,-10.069719042663898,-44.152336172454106,-5.011578533857046,-568.7182800052028,-0.9337002637909468,-1.7215236212278877,-7.692120103642739,-1.1889807284079084,-324.2546062333182,-40.20707596253904,0.6413394380853292,0.1396980677770938,-7.352757544224764,-14.367659716601793,-9.547507502362013,-201.14222244953163,-2.7302187984551245,0.5686068678459942,8.674020728547477,0.5213630655567116,-420.7158675302498,0.7141341906222549,0.5540204310953958,0.4331693071678374,0.2893223181490459,0.27418936217670725,0.15015489022359882,0.17040598957850542,0.07638356926351116,0.10929258585305344,0.03970882089593672,0.06652489088882976,0.020208298773709894,0.04405921323354731,0.010576554723569167,0.027147110885113405,0.005269289693460464,17.00110267481827,5.761445824007049,3.5219372942672926,2.2458062241538803,0.44663978763724876,-0.4097473111077996,3.2731715265257595,0.9877238973481859,6.006702368219447,0.77401371548555,14.564345602363396,11.03960643667738,35.45051718800747,11.78489292733905,2.204875597837507,0.7780417930544372,3.4647587666962205,2.291096849772341,6.003704446447333,1.1933483288577555,3.6781863732709987,2.4841632536946974,22.455782308657586,14.706170700928558,0.37758110984491894,0.7503339023760219,0.8890790146590358,0.9138478817566568,0.9138478817566568,0.9138478817566568,1.6909766444588048,618.4760858872266,0.0,2.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,2.9872051269073476,1.0453668373086034,0.32258064516129004,0.19354838709677225,0.19354838709677225,0.19354838709677225,56.221595275181784,1153.1541591756095,76.09751995626745,37.19852126372935,85.71254254503182,,9.0,292.0,18.435833946231476,5.106527394840706,17.708331062392205,17.58469956131,0.0,6.3273200747645415,4.567099647791355,0.0,14.951935562841626,27.177997716035456,8.714285714285715,23.25,9.0,1.0,14.25,0.0,0.041353383458646566,-5.25,0.2625945569950435,0.024605502024856785,-0.23798905497018674,0.11520104609349446,0.2374374999999997,0.0,0.7059907834101382,0.9624060150375936,0.4433962264150947,0.6813852813852814,0.8472049689440991,14.34604082679473,0.31765811184851067,0.5756581118485107,15.797281385813527,4.516691647654364,4.579863802870221,30.143322212608258,9.096555450524585,0.4765625000000003,0.20437158469945352,0.0,0.4475409836065573,0.5,0.4397768128716923,-1.086451300219168,-0.096594982567618,-0.035046816136102193,-0.12071681113546312,0.5602231871283078,1.3840093253075971,0.06643259293589865,0.04464546210669668,0.06290951478670895,-0.8551394702543116,0.600379100049448,1.0531464542578917,1.5873784784016787,0.8495989304812835,0.6066218123220871,1.702996620666791,0.5990936465931741,0.9845740908130695,0.9704348565799257,1.1236014181954368,1.0728111669248774,0.8542314433941598,0.6454243404786899,0.970393656517835,0.8918795320581699,1.0677244582043346,0.899450003996532,1.102061073575956,0.6470181222316516,0.9496627584206888,0.8995083016787642,0.9315090389600901,0.951896296152014,0.8835747571687169,0.7128954979893475,1.0580764568868333,1.0021951978890828,1.1147260273972606,1.0030472103208767,1.144556284354,0.713031081978686,0.8584653362028309,1.0173860835414235,0.9294586660049093,1.0482504632794298,0.9219238502593292,0.7674913240503873,0.9082318696725213,0.8184178655824141,0.9742143432715553,1.038013186473931,0.9189726377510608,0.7702499773242879,0.8804618200532073,0.883413034228588,0.87329230525885,0.8578540947373801,0.9610822984469216,1.1239234026013007,1.0734091628525306,1.0627776357699414,1.0308384547848992,1.124070246271512,0.8955478680196157,1.1219632989097217,0.9366579254808292,1.0922595660653533,1.032561638049267,1.0631347072291921,0.9886052264728706,1.059492529499026,0.7737699300763291,0.7301216720693621,0.9788062283737026,0.9824098491342422,0.9616069905241664,1.062678161573535,1.1512890624858152,0.8027899849607502,0.8065769464610159,0.791232718964988,1.080788229681972,1.353465843535071,1.1758052933532166,1.130411836498549,1.2277740641711232,1.2158879468703665,0.9822297779668242,1.3502323330543229,1.076126529595536,1.2288171033892303,1.1431335078865812,1.2140839498509293,1.1299699362731335,1.4574362328992916,0.8290964815999168,0.9097285704580065,1.2607996323529413,1.0320322553298789,1.0247422771340782,1.4602995170465576,1.4410581451758409,0.8999909444897216,0.9965520029481955,0.8637505540068677,1.3195941932839894,4.5,0.0,2.666666666666668,1.8888888888888888,1.2694444444444444,0.611388888888889,0.34303854875283446,0.32645975056689347,0.10254472159234063,0.015625,4039.283291409334,4395.260379895472,1977.6552201646198,1839.5258715481323,11.337913929314784,0.43812525030950344,6.370487551046138,0.7797560765114301,1.0,0.5,1.9669911834795273,3.9088294730782716,4.631615665225585,4.760647923290103,4.760647923290103,4.760647923290103,0.2142857142857143,0.0,0.08602150537634413,0.06296296296296296,0.047016460905349784,0.03056944444444444,0.019057697152935246,0.02511228850514564,0.012818090199042578,0.005208333333333333,0.5030524971652723,13.959183673469388,5.4131113423517165,2.492157923201731,112.35519257792845,1.0,3.898364004398445,73.04555466351948,,53.41418387729292,52.79730579649656,53.31059127680198,53.40747284570344,86.5628900491716,53.69961281421949,54.389522429443254,76.39159389125453,-0.026541998191907574,-0.2533431387492547,-0.5869615650412607,0.29995543672014247,0.16217587484064036,-0.38095754190946024,-0.022389661061260807,-0.01722991087675517,-0.2218997362925645,-0.24791284945337383,-0.2741614993236183,0.03684302932912087,0.038953903631668584,-0.04159319703507511,0.05710036971950719,0.05172858617131061,0.025992151746992924,0.08952095282485643,0.03891960467182039,-0.0184499049966784,-0.01685363912361736,-0.12117820726104592,-0.03428700069703503,0.00858522716996033,0.035465836966657734,-0.017413485461933373,-0.0384377831967506,-0.09822723609991943,0.0036256689196775558,-0.1446993019718418,0.03736631485306843,0.054787560325223264,-0.017912188013895092,0.007583812866085712,-0.03180338923533626,0.016983417765008592,0.07809257808354657,0.09203506414896453,0.16340458316845116,-0.05701047542304592,-0.04830760562288755,0.056459480432016124,0.0769307827680482,0.03641204512743621,0.09678521115258457,0.06327979657168956,0.11315560633874724,-0.010204089419436136,-0.06532280086299999,-0.17450040001021602,-0.21840343247463867,-0.06578138718173832,-0.14670322958296544,0.014156912266401658,-0.06279849843294322,0.05431194646503891,-0.16662340745786586,-0.1557466197416465,-0.16855151206230976,0.02540922014007299,-0.008184747444387372,0.1564979259468641,0.1888711660703972,-0.07214532871972319,-0.015620592247379023,-0.012923027479509405,-0.011972723486683984,-0.14364737830715107,0.14586458520140222,0.11257411358631209,0.15776438740584064,-0.08365646177070156,-0.22026199859148604,-0.19493811116890306,-0.15087430922515974,-0.32342914438502696,-0.2263836237378129,-0.07439611649165216,-0.21924339503778678,-0.09508221326183808,-0.22698928980102573,-0.09719887266037393,-0.21951833715182106,-0.16782332395923522,-0.09951118757211148,0.1109722054171783,0.1180747638453577,-0.3247242647058823,-0.10129314404873697,-0.19488052095443806,-0.10661916412367953,-0.3822891319150674,0.10308777807962821,0.1507087004909559,0.13235457219342425,-0.29940410780381727,0.8434326653017493,7.084578333008132,7.266154931959825,23.687713837178798,40.93248040444821,45.331912842281824,45.46197735841086,45.46197735841086,45.46197735841086,38.731111439379156,21.269468613544507,10.143504005481375,5.547957748156823,1.7701810721964533,17.46164282583465,3334.1728133055094,2492.7077535989133,908.8784511982471,73.0,31.0,43.0,59.0,69.0,80.0,84.0,95.0,90.0,285.0628669240003,21.0,4.653960350157523,5.53338948872752,6.444131256700441,7.3427791893318455,8.258163361537619,9.163563180417254,10.08058716534893,10.989132797979813,11.906823936706928,0.7956989247311831,1.0332903225806451,1.1524261686719515,0.7672751590611829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6719628356190848,1.0193548387096776,1.04516833869793,0.6540657373787775,1.0,3.0,0.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,2.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,20.683585220643643,17.848568276099435,11.465039998602755,5.283586320044258,0.0,4.567099647791355,4.9839785209472085,9.967957041894417,0.0,0.0,11.600939890232516,6.4208216229260096,19.038168427025763,205.27769422103322,-507.1304608719857,-45.0883146051329,-16.359047124902766,-56.3478289857762,261.499289496215,646.0236983036239,31.009205351134543,20.839474138826578,29.364713559255627,0.4444444444444444,0.6719307571919738,0.15930990033271844,179.71844622255708,0.09146182077911731,98.66563756556647,0.3280692428080262,5.0,0.09523809523809523,0.39703537370038616,0.7889936587460398,0.9348873914251291,0.9609324348550778,0.9609324348550778,0.9609324348550778,-0.29740000000000044,,2.111344537815126,1.9020893932094305,1.7773113975185826,2.121482396984875,-5.603846929798106,1.775121818012798,1.6565835388791106,-2.7103179456536117,66.36500000000001,14.94991774348146,0.0,19.519035210632982,0.0,24.856655569157482,12.340549441675103,11.6109063948088,0.0,0.0,3.7612001156935624,0.0,5.117993812416755,3.044522437723423,6.660575149839686,5.41610040220442,8.291797105048733,7.5256399750415355,9.971753493206217,24.666666666666675,1.5031512975560595,11.99140589569161,0.0,0.0,0.0,0.8641000566893431,0.20371036995045055,1.6231481481481482,32.032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.725211228830496,5.733667477162185,5.817862777835028,0.0,48.54690474032391,4.736862953800049,0.0,12.64872279366088,6.3273200747645415,5.283586320044258,11.16387793838399,0.0,23.785529930896672,20.83084790419163,24.261414826149515,146.09110932703896,,106.60612096113161,105.39439165686582,106.43409714333883,106.59163175488214,174.01424430275776,107.2123707002271,108.60466764426765,153.1518594121712,24.261414826149515,146.091109327039,,104.71904742828065,103.71338682235685,104.8958414652167,104.69542542505442,178.72962702814127,105.63239691979592,107.12375899819374,155.49350572816275,4.850158380620201,107.91580009797448,,79.27469908025861,77.71380406049371,78.6970918388122,79.27977451049792,129.66287212261156,79.21940858046865,80.31125375552205,114.98924317162383,1.2769165697973428,7.689005754054683,,5.610848471638506,5.547073245098201,5.6017945864915175,5.610085881835903,9.15864443698725,5.642756352643532,5.716035139171981,8.060624179587958,2.49847614512644,73.04555466351948,,53.41418387729292,52.79730579649656,53.31059127680198,53.40747284570344,86.5628900491716,53.69961281421949,54.389522429443254,76.39159389125453,31.600000000000005,0.0,0.0,5.770617318944037,0.0,5.708230662635424,18.813806461885164,32.400218499635834,0.0837191183057584,0.0,5.533732048374906,0.0,-1.8178436004031258,0.0,0.0,0.0,0.0,20.276037858742104,313.6418121089162,60.976726687865344,121.17371366542642,143.58008562199313,147.5800856219932,147.5800856219932,147.5800856219932,664.0,114.37253072690788,153.13517160833197,68.78958249117433,119.31000000000002,119.31000000000002,0.8,8.325430961371612,5.392317422778761,3.9313870909081503,4.294234977409478,,4.284134853913997,4.279797776863771,4.275766064057041,4.284164528537491,4.276876399923437,4.281135499420445,4.282032412962516,4.2816650221807535,0.2069151100477974,0.2260123672320778,,0.2254807817849472,0.22525251457177742,0.22504031916089692,0.22548234360723635,0.2250987578907072,0.2253229210221287,0.22537012699802714,0.22535079064109229,2.0108461991220947,2.0991273063976066,,2.0967725167671274,2.0957596462535446,2.0948171687780377,2.0967794433746536,2.095076816220874,2.0960721641822304,2.0962816458961306,2.09619584398994,181.72999999999982,111.75310028066096,99.51940681607593,,100.0134425455177,100.60452977162808,100.81159107806381,100.0010785149533,100.7305500991891,100.47727087502209,100.410338021348,100.31641505281785,5.8817421200347875,5.237863516635575,,5.263865397132511,5.29497525113832,5.305873214634937,5.263214658681753,5.301607899957321,5.288277414474846,5.284754632702526,5.279811318569361,5.35814586228492,5.242206554696103,,5.247158488581372,5.253051170375299,5.255107226052529,5.24703485725186,5.2543030172377465,5.251785427645854,5.251119056469268,5.250183227299051,7.156880196523055,11.99140589569161,18.83140238760113,6.572330719324768,0.18611444423448464,0.0,0.016868543713780104,-0.247841728255088,0.0,208.66665042509908,95.81890293292547,-236.71682687696344,-21.046187492278285,-7.636026673450434,-26.30186965299594,122.06184959524673,301.5489933040271,14.474383341271334,9.727386880775068,13.706772422910321,671.0,30.0,1.501661279183041,0.6345462624809228,0.0,0.0,0.3932286679177839,0.09422636840201226,0.0,0.0,0.0,0.0,0.0,0.0,0.19245008972987526,0.08442306901503684,0.4545300305751142,0.14548447744968,0.808083421168388,0.18522800192640593,13.568549621822843,10.52638819081252,9.096555450524585,6.075768681129964,8.499870227477924,4.654801596931564,7.327457551875733,3.2844934783309796,6.448262565330153,2.3428204328602664,4.590217471329254,1.3943726153859828,3.524737058683785,0.8461243778855333,2.280357314349526,0.442620334250679,3.5904626649173808,1.2179774197301374,6.028784184162793,1.6379106982661473,8.536676261176673,1.8825460721132243,63.35431313472563,32.467574103738045,24.605258614229875,24.224071993534796,24.224071993534796,24.224071993534796,104.0,126.0,34.78751599999999,18.844483999999998,0.45161290322580644,99.09,6.638888888888889,4.138888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,9.0,10.0,31.0,0.0,0.0,33.0,10.0,0.0,4.0,29.0,10.0,21.0,23.0,0.0,0.0,0.0,10.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,8.0,3.0,3.0,19.0,9.0,0.0,5.0,3.0,0.0,3.0,2.0,0.0,0.0,1.0,2.0,2.0,3.295836866004329,6.660229979840036,3.9367156180185177,4.568246831883494,5.205036376544811,5.683579767338681,6.070773812801772,6.3807182280846035,6.75033820257689,6.694881082503771 +468595,CC[C@@H]([C@H](C)O)n1ncn(-c2ccc(N3CCN(c4ccc(OC[C@@H]5CO[C@@](Cn6cncn6)(c6ccc(F)cc6F)C5)cc4)CC3)cc2)c1=O,0,23.483870967741936,6.3714967741935515,3.4408602150537635,8.236559139784946,166.63189382492968,93.5028624655864,1.44877802154471,6.417424731182797,4.72976403823178,7.830048731182796,216.57857135289748,25.67676767676768,6.4952000000000005,4.171717171717172,7.626262626262626,149.33477744772787,98.00246679465053,1.7515404514747477,6.624749494949488,3.1407126823793488,7.870570141414139,260.6015902786215,21.807909604519775,6.467133333333334,3.7966101694915255,6.033898305084746,158.38869628121358,81.68062784938307,1.5050364552696895,6.555590960451973,3.0437068424356566,7.901195389830505,220.31332954017768,17.845833333333335,6.320070416666669,3.2125,4.420833333333333,161.46897078121822,64.77207508105332,1.3400694130840338,6.393305833333335,2.917187500000002,7.819646466666664,189.0460943887262,16.571428571428573,6.243897435897435,2.8974358974358974,4.007326007326007,162.09356732669528,59.637912516991115,1.2764006794994733,6.311712087912087,3.119912494912496,7.761217728937729,176.04664943532472,14.840677966101694,6.116142033898305,2.6440677966101696,3.4271186440677965,163.50352572565743,52.38264377374916,1.2111017648375964,6.181517627118646,2.904613935969868,7.66273273220339,162.7620955195602,13.704626334519572,6.060487544483985,2.6370106761565837,3.2491103202846974,166.38179423748682,48.09251527771103,1.1360247969755441,6.115693950177937,2.7220245156188216,7.629288284697507,151.03483601280735,15.852017937219731,6.2472636771300465,2.8161434977578477,4.031390134529148,166.3113385674589,57.02306244182242,1.2085956537515739,6.300170403587443,3.030642750373693,7.773536412556054,166.66152121317364,16.338383838383837,6.213448989898988,2.878787878787879,3.909090909090909,160.69387980436125,58.35922494863837,1.3086138723523844,6.288866161616158,2.9774130190796866,7.733071676767676,179.5020577545686,7.655451497282921,0.1665764828303849,0.018176731067049718,0.6271245230662504,4.32211816394959,1.9771044770321353,36.720673089083384,0.2241310248632857,0.1518236096658573,1.7296668850605728,0.0960279246155625,48.45947577413914,0.5548232936370296,0.0044880332986473705,-0.007239124606045577,0.2080009249624232,1.2885041886082476,-0.36597358000145097,2.5651856072343926,-0.022390544579099163,0.00611816289849602,-0.05268424504029777,-0.00030647875914887115,-1.4300739473093267,0.2339841384621717,-0.002609469890709294,-0.0006680452986558196,-0.032992939322857004,0.12293377700174994,-0.021122301206929695,1.1594933960643736,0.002057669332658683,-0.0012787885735784839,0.04268898639316695,-0.002800064096760445,1.4606065117389389,-0.5739550815123137,-0.016512921002427954,-0.00034186353858028484,-0.1033342004856053,-0.41956440050872923,-0.022830214664017672,-2.6895364291388413,-0.0030440507902795306,-0.015006674181986288,-0.06801005013424806,-0.009355575690831288,-1.4246851641994431,-0.3753695720397074,0.006661966891935687,-0.0006995437407559793,-0.04612487755047587,-0.15889787169703928,-0.055456070362350285,-1.7359975860612824,-0.013736566213329268,0.004874436732189095,0.14920180698016286,0.00486602709580858,-3.5237913893634762,-0.3361877830492799,6.035697278607553e-05,0.0017304794434738627,0.01614137815481756,-0.0962388127558589,-0.07339251562843038,-1.6710203250495361,-0.014570265832779447,-0.0006763269977326973,-0.04943229015949283,0.0007763429258991305,-3.3161342156270717,0.14032395903667308,-0.0007910391385012583,-0.0013505609166994824,0.012564758684792314,-0.08858202190696143,-0.04495227645942827,0.7532438925814785,0.003921727868991054,-5.436005808178279e-05,-0.05866581999596676,-0.001013261010159382,1.2355274827315723,0.1914552966801419,0.004159116764581009,0.000682798430490647,-0.034231905292973035,-0.16333519466466737,0.24816485545484196,0.8840941376124989,0.01595107459790997,0.0032606904450448553,0.00341618173253364,0.002786256974678122,2.649896391791492,-0.8868515190055251,-0.009421041318491878,7.658529471600235e-05,-0.017479687614963376,-0.4201957136400426,-0.03659293120998277,-4.261240704159006,-0.016924518898195663,-0.01030153950185165,-0.09861661232123138,-0.004765883559844016,-5.258771543189899,,,0.4628384687208216,1.2205882352941178,0.5392156862745098,0.0392156862745098,0.6813725490196079,-0.14215686274509803,1.0727323951657883,0.013527410002679983,0.02533133157130743,1.1237291774757125,0.2355783626484144,0.2492121403366134,2.196461572641501,0.4847905029850278,2.064822216089141,1.5084403156221053,0.33752241113238335,0.14948161422774858,0.06937787510690413,0.5563819004670361,7.530426970580658,2184.0,592.5492000000003,320.0,766.0,15496.76612571846,8695.766209299536,134.73635600365802,596.8205000000002,439.86805555555554,728.194532,20141.807135819465,2542.0,643.0248,413.0,755.0,14784.142967325059,9702.244212670403,173.40250469600002,655.8501999999993,310.93055555555554,779.1864439999997,25799.557437583528,3860.0,1144.6826,672.0,1068.0,28034.799241774803,14457.471129340804,266.39145258273504,1160.339599999999,538.7361111111112,1398.5115839999994,38995.45932861145,4283.0,1516.8169000000005,771.0,1061.0,38752.552987492374,15545.298019452797,321.6166591401681,1534.3934000000004,700.1250000000005,1876.7151519999993,45371.06265329429,4524.0,1704.5839999999998,791.0,1094.0,44251.54388018781,16281.150117138573,348.4573855033562,1723.0973999999999,851.7361111111114,2118.81244,48060.735295843646,4378.0,1804.2619,780.0,1011.0,48233.54008906894,15452.879913256002,357.27502062709095,1823.5477000000005,856.8611111111111,2260.506156,48014.81817827026,3851.0,1702.9969999999998,741.0,913.0,46753.2841807338,13513.996793036798,319.2229679501279,1718.5100000000002,764.8888888888889,2143.8300079999995,42440.78891959886,3535.0,1393.1398000000004,628.0,899.0,37087.428500543334,12716.142924526399,269.51683078660096,1404.9379999999999,675.8333333333335,1733.49862,37165.51923053772,3235.0,1230.2628999999997,570.0,774.0,31817.388201263526,11555.126539830397,259.1055467257721,1245.1954999999994,589.5277777777779,1531.1481919999999,35541.40743540458,711.9569892473116,15.491612903225795,1.6904359892356238,58.32258064516129,401.95698924731187,183.87071636398858,3415.0225972847547,20.84418531228557,14.11959569892473,160.85902031063327,8.930596989247313,4506.73124699494,54.92750607006593,0.4443152965660897,-0.7166733359985121,20.592091571279898,127.56191467221652,-36.23138442014365,253.95337511620488,-2.2166639133308172,0.6056981269511059,-5.215740258989479,-0.030341397155738244,-141.57732078362335,41.41519250780439,-0.4618761706555451,-0.11824401786208008,-5.839750260145689,21.75927852930974,-3.738647313626556,205.23033110339412,0.3642074718805869,-0.22634557752339163,7.55595059159055,-0.49561134512659877,258.52735257779216,-137.7492195629553,-3.963101040582709,-0.08204724925926836,-24.80020811654527,-100.69545612209501,-5.479251519364241,-645.4887429933219,-0.7305721896670874,-3.6016018036767092,-16.322412032219535,-2.245338165799509,-341.9244394078664,-102.47589316684012,1.8187169614984424,-0.19097544122638235,-12.592091571279912,-43.379118973291725,-15.139507208921628,-473.9273409947301,-3.7500825762388903,1.330721227887623,40.73209330558446,1.3284253971557423,-961.995049296229,-99.17539599953757,0.017805306971892282,0.5104914358247895,4.76170655567118,-28.390449762978374,-21.650792110386963,-492.9509958896132,-4.298228420669937,-0.19951646433114573,-14.582525597050385,0.2290211631402435,-978.2595936099862,39.43103248930514,-0.22228199791885359,-0.3795076175925545,3.53069719042664,-24.891548155856164,-12.631589685099344,211.66153381539547,1.1020055311864863,-0.015275176320980965,-16.48509541886666,-0.2847263438547863,347.1832226475718,42.69453115967165,0.927483038501565,0.15226404999941429,-7.633714880332986,-36.423748410220824,55.340762766429755,197.15299268758724,3.557089635333923,0.7271339692450027,0.7618085263550017,0.6213353053532212,590.9268953695027,-175.59660076309396,-1.865366181061392,0.015163888353768465,-3.460978147762748,-83.19875130072843,-7.245400379576588,-843.7256594234832,-3.3510547418427414,-2.0397048213666267,-19.526089239603813,-0.9436449448491151,-1041.2367655516,0.6967959643187711,0.56244140752573,0.43375992372344585,0.303879117951964,0.275804592302489,0.16258973612520677,0.1753730346728746,0.08895381564586938,0.11400579502082668,0.048920702627086074,0.07090156120612377,0.026283063275438893,0.04483851814821743,0.013814649171702427,0.029492939181001595,0.007764706824187048,9.005196373736833,5.691825142581962,4.109038542565717,2.1908902642279333,0.4911219229546913,-0.5244578793677794,4.025159368968062,0.9777271535991312,7.005177741980424,0.9878734007876612,17.42582694068937,10.952695428386134,19.00118858026161,11.70349945114902,1.9997546577002105,0.545237493075738,3.9900584453305963,2.240672920350226,8.002971466163958,1.1559017026276655,4.011455003574704,2.436437745519304,20.903041879416516,13.303154698637403,0.24469843062109123,0.5592284086305088,0.7579550024883417,0.8578991299330114,0.8760796160350192,0.879238754436104,0.8038230448462022,1957.7610476177256,0.0,0.0,9.0,0.0,17.0,4.0,1.0,2.0,0.0,4.873409744999774,2.7322925510626956,1.3794900942208352,0.6991349463296102,0.5753739247777077,0.5538685484336217,367.0243739476879,4469.988304020292,99.91915965133597,48.06439036580959,97.93331655374504,,27.0,2409.0,23.33945888082378,18.681894674262168,24.194246679425405,31.61885866657485,55.057063349446494,34.03627686938884,17.93286020960035,43.321939610460284,37.11389573617346,9.473725907600098,23.604761904761904,62.25,27.5,2.0,34.75,0.0,0.037161531279178345,-7.25,0.16602063383120436,0.050384024577573294,-0.11563660925363106,0.010895640307405086,0.17989807132852087,0.0,0.6107014848950323,0.8665732959850612,0.44468085106382793,0.560317460317459,0.8556776556776561,54.70935215345521,0.6898979101366791,1.291897910136679,57.31018805126134,12.014496495069134,12.709819157167283,112.01954020471655,24.724315652236417,0.5341019286714791,0.09481541254791205,0.021182166633044182,0.3177324994956627,0.40540540540540543,0.32093296148127326,-1.3998176035387597,-0.05260467916865834,-0.01505180218858881,-0.04999348584066999,0.6790670385187266,2.961895811866969,0.04489417529485895,0.031848342063085684,0.04556762787487645,-6.463199106249397,0.7394329326003345,0.6605541042610009,1.4477198102919333,0.8285509966925897,0.4959071210743138,1.3030684947625142,0.7414208031131165,1.1993465130219676,0.6411844106240302,0.5990494896903885,0.7077962512828404,1.0359494783611969,0.8760765368968912,0.8777226876204084,1.262602615157085,1.3590882955852208,0.9303915869960072,1.0448272391891962,0.8706044363579568,0.9942169840456695,0.8646938583762419,0.6138120789037752,0.9056858876014116,0.9328799970562857,1.034308735576633,1.0645943885696043,1.1986364881694587,1.3375322640117995,1.0881346637419078,1.0053471071996236,1.029517338145815,1.0150518211152157,1.0601289148673418,0.893259034343689,1.090498068426159,1.0077156706318044,1.0174401506184267,0.9047561857044618,1.1023446408485433,1.0602896366170704,0.997263770951642,0.9861918366572492,1.0133590877496086,1.0659861103394062,0.9136036584033813,0.7853335871935606,0.9186811690113853,1.0653019696170007,1.0177819167399635,0.8853359633742454,0.765326934149933,0.8368419079046048,0.9562537575865843,0.9542493926822937,1.0179893009794176,1.060516029656921,0.8992454630870401,0.965299125055185,0.8808600672360862,1.0725407276251833,0.9822657427570626,0.9147009858060295,0.944608073919135,0.9009896702673763,1.0083761553079669,0.9127417068754184,0.9787186832161817,0.9518071371563555,0.9223230933224528,0.9444665184684312,0.9105375178668442,0.9736509981067991,0.9877026342074476,1.0775100510282976,1.0960478797690896,1.0292223897773722,1.0941089846123875,0.9283979954221913,0.9908705207700857,0.9186326476063517,1.0731556405662572,0.9863074642016482,1.0717371530091777,0.929229106678678,1.0739072291207858,1.006079811525214,1.1162065797099003,0.9241530347725038,1.0490342945802793,1.018856325148977,1.074287826104547,1.109160757030357,1.0160598682402129,0.9256843130688187,1.0239045474447668,1.1161390410088194,11.0,0.33619630649933685,7.111111111111114,4.076388888888889,2.5400000000000005,2.282777777777778,1.253061224489796,0.7492559523809523,0.5548154446963969,0.44250771604938277,11397.633060624947,12761.224123432381,5135.568955915998,4713.072485023398,27.07767111985859,0.49848630957659545,13.579822771391523,0.9939635130513521,0.0,0.40540540540540543,1.6657490661082563,3.8068662600453353,5.159668716887196,5.840023864778421,5.963784886330323,5.985290262674409,0.19298245614035087,0.006225857527765496,0.08672086720867213,0.047957516339869284,0.02953488372093024,0.02818244170096022,0.017900874635568515,0.011182924662402274,0.008948636204780595,0.0076294433801617715,0.4372659015214614,39.24284395198523,17.853955978584175,9.183673469387756,294.0195681725665,0.0,4.874182425811663,549.2442754937082,,436.5284584201171,426.89965910230677,426.39901320617497,436.47575070408067,636.1975670138578,432.75691822414706,437.15015914667526,557.1698518037645,0.07247427455244775,0.02694277861069544,-0.39826328393934735,0.3316740412979348,0.2981186861931607,-0.18510583747745088,0.06985671534427815,-0.09989935392816247,0.040297835837003526,-0.030459185809325807,-0.003191558709363198,-0.029510718481038523,0.030564381283744994,-0.015665295883131144,-0.03675277453308609,-0.05260986950652475,0.028442946800281824,-0.0106834522162616,0.03157603874121461,0.009180653744450637,-0.00842285713264834,0.02468046695111006,-0.029158852573042696,0.030140782342478523,-0.07497338095813451,-0.0991311661877391,-0.01880775686889078,-0.16477461283185843,-0.09707379219945425,-0.011547298045821277,-0.07324311356205526,-0.013581568157002472,-0.09884282303005372,-0.03931973880153597,-0.09742557415757272,-0.0293995166361197,-0.049032976327122425,0.039993441923726884,-0.03848567369872645,-0.07354979091704753,-0.03676388883172898,-0.02804913498835242,-0.047275756134692794,-0.061288106908484574,0.03210592043567568,0.0862604286807155,0.050673042401876305,-0.07271625070372678,-0.0439148211138951,0.00036233789884694296,0.09520300636514496,0.025738713064346806,-0.022266585295741895,-0.037121212602078124,-0.045506255318242254,-0.06500780443790387,-0.004454689222718385,-0.028579081085755836,0.008084553831681109,-0.06843107901296691,0.018329939009668728,-0.004748804423411481,-0.0743016393716548,0.02003550845589394,-0.020495048618942524,-0.022736419335262895,0.020512801896472015,0.017497478858106368,-0.00035804746179742225,-0.033917409475011304,-0.01055173288619809,0.02549609674875854,0.02500901439295819,0.02496821096178381,0.03756442387643647,-0.05458549942458034,-0.03779054354113498,0.12551934323034178,0.024076196410335666,0.0711685256766203,0.02147683388783327,0.0019750518218506594,0.02901507020830246,0.054682729217752586,-0.11584574983203631,-0.05655685099369504,0.004213370073722116,-0.02787275408956826,-0.0972198578800687,-0.018508344720817707,-0.11604473299880284,-0.0755117186856179,-0.06785202594328978,-0.05701480046418177,-0.04963018391706079,-0.1085189523654792,35.03234527077595,34.76760871669768,6.543239795225321,16.527106990595506,37.67397119422931,44.90989966268774,47.10769823641381,47.4690730020521,47.77029880850371,105.3059330205462,76.93045609672737,17.21364296775155,7.623562325615178,3.538271630452111,28.37547692381884,47059.23136465282,45840.05979245739,2799.492856517987,329.0,82.0,112.0,148.0,176.0,203.0,238.0,259.0,288.0,700.3297082640012,57.0,5.631211781821365,6.502790045915623,7.399398083331354,8.284251797621916,9.18594521514146,10.076978567945266,10.981744060947165,11.876408183337722,12.7832055377775,0.6630824372759856,0.9963870967741935,1.139560068253878,0.6273745539706882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6626573047453479,0.9816150115960364,1.0127497278543962,0.6300472916926567,14.0,3.0,0.0,0.0,0.0,0.0,7.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,1.0,9.0,0.0,2.0,0.0,3.0,2.0,1.0,0.0,0.0,24.380072764141758,41.96696455065301,0.0,0.0,0.0,0.0,32.49005131845039,10.197363616602075,0.0,12.990104268152233,74.36268406169714,55.101522779337415,37.59171382651824,328.8997803314967,-1434.5665841958867,-53.91053428455699,-15.42544714189125,-51.23452086413881,695.9241542791846,3035.4217198244055,46.00862536677899,32.63894322391834,46.69879568960624,0.48148148148148145,0.812599947010592,0.1130783226759628,43.187820230070415,0.0802907093790318,50.31219001720568,0.1874000529894079,14.0,0.21052631578947367,0.25473445656017074,0.582164521463928,0.7890416590162173,0.8930848804066368,0.9120110183284854,0.9152997251737076,4.573200000000004,,2.80952380952381,3.408686967279165,3.2019398142074706,2.872641690087218,-12.471040938538263,3.0429503699648794,2.7430831457724336,-5.243894268780947,187.31279999999944,23.361083397790445,0.0,29.11204765563101,5.917906046161393,50.9807320790258,49.19260901437709,113.39417173343546,0.0,11.436898107967467,4.74493212836325,0.0,6.093569770045136,3.4339872044851463,7.629975707027789,5.733341276897746,9.250618218474752,7.773594467360194,10.917177190397416,61.666666666666664,24.009525413593185,12.433177009519433,0.0,0.0,0.0,0.0,2.665353207941372,4.461697190327402,92.66399999999999,0.0,12.98681570127924,0.0,0.0,0.0,0.0,0.0,0.0,105.97908634761066,20.22642581370448,20.155602644716765,5.749511833283905,79.71533099089615,16.88267017069631,17.55234772825318,38.29440996607822,90.50653516144318,0.0,5.687386274683562,0.0,58.345833519274,61.62712934131736,66.92734452185506,1098.4885509874161,,873.0287265152848,853.7824840341082,852.8517323070846,872.9178757857542,1276.307617459414,865.4922683416387,874.2738158910623,1115.9848469075387,66.92734452185506,1098.4885509874161,,870.4395575143512,850.6411450642626,849.9010491414175,870.2705393262622,1284.8661749662538,862.6879807457885,871.745876521429,1119.5835978763105,4.937200266834017,869.8533340384878,,693.8558995938574,678.6317109101567,678.448850030083,693.8615666068213,1010.1008909441864,687.9307024674837,694.7947491327793,884.9376934705506,1.3123008729775503,21.538991195831688,,17.118210323829114,16.740833020276632,16.722582986413425,17.116036780112825,25.025639558027724,16.970436634149777,17.14262384100122,21.882055821716445,2.507911483312409,549.2442754937082,,436.5284584201171,426.89965910230677,426.39901320617497,436.47575070408067,636.1975670138578,432.75691822414706,437.15015914667526,557.1698518037645,91.29019607843138,0.0,3.5928167083379408,0.0,28.68720989566117,0.0,10.053329909662123,94.18572469045885,5.457624672505766,0.0,12.410793390209696,0.0,-1.0570479133418074,4.6709775427668845,-1.0186011468002438,0.0,0.0,58.59439812741708,832.771874959826,154.91466314806783,354.0385621842162,479.8491906705092,543.1222194243932,554.6319944287201,556.6319944287201,1943.0,190.72193327383937,192.05205965085517,106.57719596305144,115.69999999999999,115.69999999999999,0.9285714285714286,9.139510434652319,6.832890014164741,4.22765356073413,7.042386743021383,,7.045267368214388,7.045398243161138,7.04707039197555,7.045400611084205,7.042270554520545,7.045420236071891,7.045188450708455,7.04415854878705,0.08289516785753197,0.1380860145690467,,0.1381424974159684,0.13814506359139486,0.13817785082305,0.13814511002125893,0.13808373636314794,0.13814549482493904,0.13814095001389126,0.13812075585856962,3.0708876651034234,3.581187678441259,,3.581596635846148,3.5816152119660223,3.5818525229532674,3.581615548060958,3.581171179850149,3.5816183335605256,3.5815854342914295,3.5814392384566225,507.11000000000206,12149.598382670598,430.3692380910603,,429.47683146352597,429.42453898711966,429.1986031828239,429.4312364224491,430.8512865687647,429.4384070653242,429.502681564681,430.05986118603715,238.22741926805094,8.438612511589417,,8.421114342422078,8.420088999747444,8.415658885937724,8.420220322008806,8.448064442524798,8.420360922849495,8.421621207150608,8.432546297765434,11.034291933028419,7.693884073186794,,7.691808336657763,7.691686570694243,7.691160296014668,7.691702166875864,7.69500352752919,7.691718864736662,7.691868524591866,7.69316495078934,45.559700476198266,21.656746446995925,18.487553716231755,1.927102231358558,-0.5627671443990369,19.162640180303775,4.8846415124215214,7.967715914222565,0.0,608.5088437709626,337.0643669719132,-1470.1781712766337,-55.248805862463726,-15.808367433082081,-52.50636325987978,713.1997299790048,3110.7728301131683,47.15074047441125,33.44917021627063,47.8580435402026,13566.0,85.0,3.631755404933142,1.7797357877656554,0.10206207261596575,0.05103103630798288,0.8435912363478011,0.282588468267651,0.041666666666666664,0.01473139127471974,0.0,0.0,0.0,0.0,0.3426246847783098,0.11455969377359226,0.8307027427322771,0.3018477735936032,1.116484369302597,0.33074184534789686,35.536594180257325,28.684511783812233,24.724315652236413,17.321109723261948,22.615976568804097,13.332358362266955,19.641779883361956,9.96282735233737,16.87285766308235,7.2402639888087394,12.478674772277785,4.625819136477245,9.102219184088138,2.8043737818555927,7.019319525078379,1.8480002241565174,8.793134512176882,3.741865108641763,14.810472696774852,5.320699259046362,21.263522473426605,6.394561116933421,164.63649387716262,74.43848062498283,42.579103621443465,33.71819318894968,32.59549978622266,31.912185556593503,278.0,333.0,102.917306,58.39069400000009,0.45161290322580644,699.14,14.840277777777779,11.09722222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,28.0,28.0,93.0,0.0,0.0,99.0,28.0,1.0,13.0,86.0,29.0,57.0,70.0,0.0,0.0,0.0,37.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.0,12.0,1.0,4.0,51.0,14.0,0.0,8.0,4.0,0.0,7.0,12.0,0.0,0.0,2.0,2.0,5.0,4.290459441148391,7.87194887673109,4.882801922586371,5.44673737166631,5.984565805416826,6.3802284634927355,6.62572387803917,6.989536858556636,7.286961965927935,7.563525046466884 +5991,C#C[C@]1(O)CC[C@H]2[C@@H]3CCc4cc(O)ccc4[C@H]3CC[C@@]21C,0,18.956521739130434,5.775217391304347,3.347826086956522,5.086956521739131,159.66985526058644,74.38269473913043,1.4725025590516518,5.866895652173912,3.576992753623189,7.364280173913041,209.76368380994862,21.877551020408163,6.074489795918368,4.285714285714286,5.244897959183674,142.08207040767542,81.65332002040813,1.885528383510205,6.237908163265307,2.6784297052154193,7.531221959183669,266.0118482813994,18.925531914893618,5.888936170212767,4.0,4.0638297872340425,146.37545340982703,69.83008208510638,1.6853107456770338,6.0367819148936155,2.3368794326241136,7.3919903829787215,231.69830327826975,15.236486486486486,5.8171621621621625,3.189189189189189,2.560810810810811,151.5731564837982,53.983376554054054,1.4551441541610068,5.938402027027024,2.3967717717717716,7.373968864864861,192.24188039754017,11.258064516129032,5.696559139784946,2.510752688172043,1.521505376344086,156.13347151555573,36.904705655913965,1.2532385778756234,5.7960645161290305,2.1914575866188772,7.306669333333331,154.852278583135,8.528795811518325,5.466701570680628,2.115183246073298,1.198952879581152,162.75303964026457,27.08258091099475,1.0474343443155967,5.544047120418848,1.902777777777778,7.140643560209426,122.28723932716277,8.5177304964539,5.485390070921984,2.0567375886524824,1.4113475177304964,165.26087249115386,27.584443262411344,0.9960365095871561,5.551177304964539,2.0068951930654055,7.175810156028372,117.52592847049729,10.191011235955056,5.626067415730336,2.157303370786517,1.9325842696629214,163.17301861766816,34.13189393258427,1.0690368161799662,5.6969438202247185,2.413857677902622,7.289932584269667,131.96330473720704,11.101694915254237,5.768305084745763,2.1016949152542375,2.2542372881355934,161.34880992771403,37.07080059322035,1.0956414863802204,5.841144067796611,2.8319209039548023,7.410063932203389,137.79496848102164,6.858223062381853,0.07765595463137993,0.014003538003535234,0.7599243856332704,2.9017013232514177,1.3452249271309402,32.86148108128545,0.24295751488859738,0.0776412098298676,1.1946676118462505,0.046549504725897924,53.61274759935617,0.18702982138034824,-0.006848501215230913,-0.007481077230772489,0.34034180780062495,0.8835693067397085,0.2048162984526423,1.012847440453692,0.034940435314330914,-0.006218405925697427,-0.10517239346904485,-0.004090487866980462,5.658538669427219,0.5705465953424766,0.004679845553633901,0.0006924175287939037,-0.06936009331134621,0.16305353336282843,0.03406417934903991,2.712026596327882,0.008045262530260729,0.005494266580863063,0.10792643687406991,0.0016966543860354641,3.0860412554688352,-0.4678000306544729,-0.002341618556174326,0.0005553308862053999,-0.20116997905277686,-0.547706023603944,-0.1279528198091681,-2.2721782296403177,-0.02283073349941781,-0.0026677374444388025,0.07218347837440463,-0.001216422469728714,-4.6586542775074715,-1.7020753297965332,-0.01193832957294143,-0.000853772555012763,-0.08203752261316749,-0.6167550866922781,-0.24893676786647329,-8.161137081752951,-0.04788241130835095,-0.013831205154785843,-0.1347940987819944,-0.0049453887838689335,-12.323825496173976,0.048901909163787984,0.0018045507180395788,7.162340063410631e-05,0.03702530705965024,0.1335820821662921,-0.04209504433774586,0.2066304145033079,-0.006732736938231574,0.0018917289363513713,-0.04700687633268119,0.0007975392076327174,-0.7634029898078001,0.8318786952499695,0.0031920256338065995,0.00014093544705287968,0.05814530292670502,0.3045891485339661,0.13627134496635732,4.008975643660589,0.02615828672516732,0.00451993725616383,-0.0414380061999014,0.00048796305085201867,6.566495732895718,0.5599498736220555,0.0003362290520592177,0.00040008289464126256,0.009494275822518643,0.11490834944032627,0.08764876017850914,2.7067079519338986,0.017243664479841787,0.001593768186742016,-0.08282711355607004,-0.0011353044327860465,4.512915050773273,-0.32248245810771836,-0.0036618499887860084,-2.456944868773421e-05,-0.027426227932459715,-0.0203453910480279,-0.131464296045104,-1.5726927754637794,-0.022331208902723373,-0.003235830316234674,-0.10072570568068948,-0.0028785570471949093,-3.8735562001573425,,,0.4848484848484848,0.9772727272727273,0.38636363636363635,0.022727272727272728,0.5909090909090909,-0.20454545454545456,1.1836373234380895,0.019595524935366013,0.035231888571729646,0.5730632931174552,0.14094675244612598,0.33555833909001237,1.7567006165555448,0.47650509153613835,2.0709516486800834,1.9101314950357406,0.0,0.1608201536443424,0.0,0.1608201536443424,6.4386441306087105,872.0,265.65999999999997,154.0,234.0,7344.813341986976,3421.6039579999997,67.73511771637598,269.87719999999996,164.54166666666669,338.7568879999999,9649.129455257636,1072.0,297.65000000000003,210.0,257.0,6962.021449976096,4001.0126809999983,92.39089079200005,305.6575,131.24305555555554,369.0298759999998,13034.580565788572,1779.0,553.5600000000001,376.0,382.0,13759.292620523742,6564.0277160000005,158.41921009364117,567.4574999999999,219.66666666666669,694.8470959999999,21779.640508157358,2255.0,860.94,472.0,379.0,22432.827159602133,7989.5397299999995,215.36133481582903,878.8834999999996,354.7222222222222,1091.3473919999994,28451.798298835947,2094.0,1059.56,467.0,283.0,29040.825701893365,6864.275251999998,233.10237548486595,1078.0679999999998,407.6111111111112,1359.0404959999996,28802.52381646311,1629.0,1044.1399999999999,404.0,229.0,31085.83057129053,5172.772953999997,200.05995976427897,1058.913,363.4305555555556,1363.8629200000005,23356.862711488087,1201.0,773.4399999999997,290.0,199.0,23301.783021252693,3889.4064999999996,140.441147851789,782.716,282.9722222222222,1011.7892320000004,16571.155914340117,907.0,500.7199999999999,192.0,172.0,14522.398656972468,3037.73856,95.144276640017,507.02799999999996,214.83333333333337,648.8040000000003,11744.734121611426,655.0,340.33000000000004,124.0,133.0,9519.579785735128,2187.1772350000006,64.64284769643301,344.62750000000005,167.08333333333334,437.19377199999997,8129.903140380276,315.47826086956525,3.572173913043477,0.6441627481626208,34.95652173913044,133.47826086956522,61.88034664802325,1511.6281297391306,11.17604568487548,3.5714956521739096,54.954710144927525,2.1412772173913046,2466.1863895703837,9.164461247637064,-0.3355765595463147,-0.36657278430785195,16.676748582230623,43.29489603024572,10.035998624179472,49.629524582230914,1.7120813304022149,-0.30470189035917394,-5.153447279983197,-0.20043390548204262,277.2683948019337,53.63137996219281,0.4399054820415867,0.06508724770662695,-6.519848771266544,15.327032136105874,3.2020328588097513,254.93050005482093,0.7562546778445085,0.5164610586011279,10.145085066162572,0.15948551228733363,290.0878780140705,-69.23440453686199,-0.34655954631380026,0.08218897115839918,-29.773156899810978,-81.06049149338372,-18.937017331756877,-336.282377986767,-3.3789485579138363,-0.3948251417769428,10.683154799411884,-0.1800305255198497,-689.4808330711058,-316.5860113421552,-2.220529300567106,-0.15880169523237392,-15.258979206049153,-114.71644612476372,-46.30223882316403,-1517.971497206049,-8.906128503353276,-2.572604158790167,-25.071702373450954,-0.9198423137996217,-2292.2315422883594,9.340264650283505,0.34466918714555955,0.013680069521114304,7.071833648393197,25.514177693761795,-8.040153468509459,39.46640917013181,-1.2859527552022305,0.36132022684311194,-8.978313379542108,0.15232998865784902,-145.80997105328981,117.2948960302457,0.45007561436673055,0.019871898034456034,8.198487712665408,42.94706994328922,19.21425964025638,565.265565756143,3.6883184282485924,0.6373111531191,-5.842758874186098,0.06880279017013463,925.8758983382962,49.83553875236294,0.029924385633270375,0.03560737762307237,0.8449905482041592,10.226843100189038,7.800739655887313,240.89700772211697,1.534686138705919,0.1418453686200394,-7.3716131064902335,-0.10104209451795815,401.6494395188213,-19.026465028355382,-0.2160491493383745,-0.0014495974725763183,-1.6181474480151232,-1.200378071833646,-7.7563934666611365,-92.78887375236299,-1.3175413252606791,-0.19091398865784578,-5.942816635160679,-0.16983486578449966,-228.5398158092832,0.7061440648637833,0.5990236255657538,0.4193244805518018,0.34013378323340243,0.25656854595291917,0.19495153491721842,0.162875721468576,0.11834123939533649,0.09913834068577794,0.07187539769724574,0.06125411892336965,0.04212151685659274,0.03888270285338192,0.024931056199125567,0.02439267155731827,0.01474443467266239,8.00726112775843,5.669781031790235,3.513893513847965,2.1694878833308713,0.36234430180892463,-0.35982755549665374,4.1160222517254565,0.9114228357589049,5.013586451099331,0.995949709668387,13.624345331810883,10.93013216669951,16.00311353596746,11.680956936710297,2.008016732603223,0.7868176656411101,3.45563426945312,2.219425366153641,6.0037476196156,1.0822883696666583,3.6693167071095654,2.415436379990358,20.91656411957642,14.707201217125087,0.21005278988346957,0.5738252331143874,0.7757292650895956,0.8814018949252016,0.8965119247401095,0.8965119247401095,1.578511536925865,658.1613573389167,1.0,0.0,1.0,1.0,4.0,6.0,2.0,4.0,1.0,4.314731780762065,2.2212622935809865,1.0593273033304476,0.4511932065687718,0.364236684829641,0.364236684829641,155.66257773590354,791.780822027648,54.97918456296479,17.212626565818432,33.565108851397916,,11.0,399.0,5.601050810983688,10.213054789681411,5.41499046939678,23.503229971768086,38.524929737556064,11.126902983393991,0.0,12.13273413692322,18.910538587007878,6.423349895620259,10.666666666666666,21.5,8.5,0.5,13.0,0.0,0.015151515151515178,-4.5,0.07797101449275357,0.0401138716356107,-0.03785714285714287,0.039141414141414144,0.08407874015748007,0.0,0.5246376811594206,0.7696969696969694,0.446666666666667,0.48452380952380986,0.7305555555555553,26.04002111563797,0.4311015485780523,0.7751015485780522,12.607392448584015,3.1008285538147717,7.382283459980272,38.647413564221985,10.483112013795044,0.6299212598425199,0.15625,0.09375,0.28125,0.6,0.3433818365087069,-0.5471043932589379,-0.06338032608761127,-0.01189357376649865,-0.028794968066259884,0.6566181634912932,1.0461784629968136,0.04725305852855954,0.022743010065148117,0.03874735048136347,-3.587685292399922,0.954818531602277,0.9460882697772388,1.3759554945238839,0.9326454462381968,0.6777072392474905,0.9749867575361728,0.9552642946865991,0.9731212740660976,0.9455479544284835,0.9596260129237124,0.9492072777216295,0.9660738159467614,0.8687417896267797,0.6064159968095463,0.5142609906891695,1.705005557319784,0.9737421165707949,1.0591192983802569,0.8752613543939943,1.05065592349832,0.6348806284770762,0.49508853266187147,0.5801103741125613,0.9999804219031906,1.0355898380464257,0.8805392082686383,0.6623845454012128,1.5917456635740217,1.1845232855004844,1.129796010612529,1.0391403078004189,1.1268911289992358,0.89933364870853,0.7395908971440537,0.859701004953657,1.1040384576576665,1.2101442188000142,1.0308171310110872,0.7626464191804376,0.9793271545498314,1.0984028580435012,1.1763060372827603,1.2118887481210991,1.189296372095615,1.0679112321637851,0.9753113086661317,0.9654807507841117,1.2182077586543567,0.9282839404976996,0.6747178280662937,0.6009817108946525,0.7076853950144565,0.7872333168477241,0.96858473192033,0.9322086563483691,0.9768599464541431,0.7176884571113193,0.7258624677143626,0.6077879117223768,0.9835773368798496,0.8396572755635834,0.8487590378918144,0.7942045152341884,0.7030009526833916,0.8344653129114977,0.8186308272495221,0.8391925438373753,0.8205756929949193,0.8493223453830707,0.8840088865821029,0.8455073062051086,0.8279230429491207,0.9103353443256568,1.104039254729057,1.1478366926804093,0.8389233607244676,1.0170826775976285,0.8725693670294047,0.9072217390601376,0.8670469262899363,1.0719637983077104,1.2130136694551297,1.1531527796709675,0.8646203771589087,1.0722219367256554,1.4081298582344492,1.6120048103627285,0.8400265621047306,1.1142549550046927,1.0467146103740124,1.067483876809892,1.0325598040482924,1.348206711059211,1.5359334884747442,1.5048454864979535,1.012855509034155,6.0,0.02887460463218039,5.1111111111111125,2.7638888888888893,1.8983333333333337,0.8647222222222224,0.6008616780045353,0.3368409863945578,0.18468127991937514,0.10594135802469137,4033.0400247352577,4749.659264028989,2027.5420648402833,1777.9586344022641,11.572299111533578,0.46864367256965167,6.149014355829965,0.8819762716217637,1.0,0.6666666666666666,1.208830175294948,3.3022996624760266,4.4642346527265655,5.072368749488241,5.159325271227372,5.159325271227372,0.24000000000000002,0.009624868210726795,0.12777777777777782,0.06008454106280193,0.05273148148148148,0.03325854700854701,0.03004308390022676,0.02105256164965986,0.01678920726539774,0.015134479717813051,0.6064965480744325,15.5232,5.25,2.111111111111111,132.1107921567131,1.0,4.069905919936344,88.71036703709328,,78.81836786623218,78.65841269760926,79.16514528153473,78.82166498704443,85.25617767098605,78.77924006311204,78.82512567239048,81.84736051153409,0.02727088630380491,-0.08819029072193656,-0.5342276522464443,0.44786272718042436,0.30450043209466177,0.15225431399748818,0.030821722184351173,0.14381294330554895,-0.08009156399447662,-0.08803485791877327,-0.08787392886491248,0.10554464978577544,0.0831916066527481,0.06026383393068,0.04944589921626241,-0.09127236159627398,0.05619239032503989,0.025322292697691144,0.08252904333859669,0.033113865747061585,0.07076482441350994,0.09034013796295974,0.036448387496838965,0.05756170675173333,-0.06821009267260643,-0.03015375404615917,0.03965647010528375,-0.2647236789027835,-0.18875341139184781,-0.09511630154078579,-0.06914412116787758,-0.09397006513622895,-0.034359812917450924,0.0604213905680858,-0.026131802623712008,-0.08689452576318654,-0.24818022311531587,-0.1537336013652877,-0.060968346341990554,-0.10795484940886965,-0.2125494728731043,-0.1850521521314647,-0.2483496425972323,-0.19708141701361384,-0.17814257641133704,-0.11282979252587447,-0.10623934267376973,-0.22986744847081803,0.007130405167487277,0.02323776362811435,0.005114664638038243,0.04872235680237556,0.04603577945665702,-0.031292197675466094,0.006287921533183224,-0.02771158134918657,0.02436501106173705,-0.039347242585773566,0.01713314056355587,-0.01423920660647073,0.12129653522250104,0.04110471178879483,0.010064274258212469,0.07651459016971879,0.10496915933190103,0.10130004448920911,0.12199619468593256,0.10766609436699912,0.05821569841670688,-0.034685803640280094,0.010482669014962458,0.12248011950379083,0.08164649480321591,0.004329726595407162,0.028570129530141628,0.01249371121918498,0.03960033671265967,0.06515546836129782,0.08236719292227408,0.0709739910195759,0.020527348688079216,-0.06933067636115811,-0.02438918393377486,0.0841761568442254,-0.04702128454767999,-0.047154786856567654,-0.0017545172285412143,-0.036090732776794004,-0.007011538673880624,-0.09772662801118884,-0.047858243868363716,-0.09191404889436262,-0.041676711675735514,-0.08431274496931161,-0.06183861813664834,-0.07225065630107455,12.364959591132312,21.398905776177028,6.631975707865092,9.915391730947192,28.482013218251367,34.045958934652894,35.137349408536494,35.225001582449536,35.225001582449536,45.56093627096184,42.022892890786295,0.0,3.538043380175533,0.0,3.538043380175533,3511.566011273903,3224.3947878720855,669.0757049579388,220.0,40.0,60.0,81.0,107.0,130.0,162.0,194.0,220.0,296.1776300080007,25.0,4.875197323201151,5.802118375377063,6.75343791859778,7.699389406256737,8.655388690167637,9.608109273449877,10.566458990586012,11.52278668294207,12.48257116452228,0.5797101449275364,0.9547826086956526,1.1174401716843594,0.5364828617245785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6639811507419945,0.943563512361466,0.9851166914721814,0.6072072142231346,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,6.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,1.0,10.213054789681411,11.350562644267594,0.0,0.0,0.0,0.0,0.0,0.0,6.423349895620259,18.910538587007878,79.53828499635745,5.41499046939678,0.0,170.64336800758565,-271.8831527802273,-31.49680955455776,-5.91050332130929,-14.309639620011962,326.3059457434892,519.8976692474207,23.482375008407033,11.302123244509144,19.255469231385952,0.45454545454545453,0.8115767372372908,0.31881095701299844,104.66332950083768,0.1839549854761341,131.9606848445812,0.18842326276270924,6.0,0.0,0.21884975400146858,0.5978569062405101,0.8082166341650584,0.9183148102332764,0.9340576447358887,0.9340576447358887,3.6126000000000023,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,86.50660000000005,10.213054789681411,0.0,0.0,17.250802561719567,56.967623794391756,0.0,29.32600418877882,0.0,18.093296047759807,3.9318256327243257,0.0,5.351858133476067,2.3978952727983707,6.9985096422506015,4.948759890378168,8.745602852402946,7.234898420314831,10.543260327329259,26.66666666666667,5.874709624590577,0.0,0.0,0.0,0.0,0.0,3.11363896959789,0.0,43.920000000000016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.40224789748053,0.0,0.0,5.749511833283905,15.8141056006651,6.4208216229260096,29.594586776195467,56.07265434387605,18.19910120538483,0.0,0.0,0.0,24.67821163933061,30.543132934131748,28.89582720114114,177.42073407418667,,157.59128118700983,157.26487734327048,158.2988116201825,157.59800895970727,171.49625921864396,157.5114399570909,157.6050704720139,164.0574432758481,28.89582720114114,177.42073407418667,,157.1367357324645,156.74539682379,157.98402219131287,157.1447988158916,172.67694387065038,157.04103826575906,157.15326174434324,164.4927099791842,5.164226680783698,132.05618104124147,,119.07315874780876,118.89483047738236,119.45977438396659,119.07683459765357,126.26265388626084,119.02953650388979,119.08069280070688,122.451619332393,1.313446690960961,8.064578821553939,,7.1632400539549925,7.148403515603204,7.195400528190114,7.163545861804876,7.795284509938361,7.159610907140495,7.163866839636995,7.45715651253855,2.622029943915244,88.71036703709328,,78.81836786623218,78.65841269760926,79.16514528153473,78.82166498704443,85.25617767098605,78.77924006311204,78.82512567239048,81.84736051153409,43.40392156862743,0.0,2.2153623918703285,0.0,0.0,0.0,20.628043391943557,45.31536780772034,6.078747139287813,0.0,0.0,0.0,1.7175651927437643,0.0,-1.0464195824934908,0.0,2.724631321460326,27.931531854264193,403.31250262640805,55.60618806356761,151.90578447389723,205.35479402542202,233.32896247645908,237.3289624764591,237.3289624764591,1261.0,124.96545782510061,93.63681112466679,72.15261017167458,40.46,40.46,0.8333333333333334,8.059108251564028,5.643856189774724,4.0660972815836685,4.615869659086735,,4.634870335567286,4.635475122859968,4.633514901857846,4.6348577294983775,4.603862835966678,4.635019508777159,4.634844492081625,4.621464132157075,0.18482260370834858,0.20981225723121524,,0.21067592434396756,0.2107034146754531,0.21061431372081119,0.21067535134083534,0.2092664925439399,0.21068270494441632,0.21067474964007388,0.21006655146168524,2.191141000907347,2.3179576524050987,,2.32206558392439,2.3221960617574444,2.3217730985163323,2.3220628640886365,2.3153530584183932,2.3220977683866417,2.3220600080277976,2.3191689269743154,239.45999999999987,172.52025223282362,127.19843593772715,,125.55343251546209,125.48517057208252,125.70128611201488,125.55483924460283,128.2024384597754,125.5367373560737,125.55631574275097,126.8302240774839,7.841829646946528,5.781747088078507,,5.706974205248277,5.703871389640114,5.7136948232734035,5.7070381474819465,5.8273835663534275,5.706215334366987,5.707105261034135,5.765010185340177,5.938971994192598,5.634205715107644,,5.621188785422589,5.620644949182088,5.622365707507293,5.621199989586681,5.642067925417026,5.621055804036488,5.62121174930439,5.631306734196632,0.0,0.0,20.628043391943557,1.6918295304232813,4.817586370885208,5.874709624590577,11.772468690287052,2.2153623918703285,0.0,298.5484867981929,84.8011046275418,-135.1121461946126,-15.652317893485774,-2.9372205694480997,-7.1111655891901355,162.1575158101224,258.362789953289,11.669550145673263,5.616582390288889,9.568992220492184,941.0,46.0,2.337295092958315,1.561420439618935,0.22706207261596575,0.1415905433680705,1.2212404605207785,0.7262526321546636,0.44862343787706055,0.1997577464961222,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.4597757663120405,0.3470611899814694,1.0686223936007675,0.7124539768333359,15.535169427003234,13.178519762446586,10.483112013795045,8.50334458083506,10.262741838116767,7.798061396688737,9.77254328811456,7.100474363720189,8.030205595548013,5.821907213476905,6.554190724800552,4.507002303655423,5.054751370939649,3.2410373058863238,3.9516127922855597,2.3885984169713073,6.615322006226638,4.29852504897517,10.85217164506199,7.022810010626755,17.076374465656652,10.66230630739163,77.59366381900955,38.28721667424869,24.84408889743766,20.98082307217639,20.54194273199256,20.54194273199256,130.0,165.0,51.007031999999974,24.076967999999994,0.3695652173913043,163.02,7.291666666666666,4.631944444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,6.0,6.0,46.0,0.0,0.0,49.0,6.0,0.0,3.0,45.0,7.0,25.0,42.0,1.0,0.0,0.0,20.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,2.0,2.0,0.0,22.0,2.0,0.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,1.0,3.4339872044851463,6.6920449700428275,3.979681653901961,4.524502282920636,4.961970122114975,5.389927527900397,5.599347456519317,5.885322476115335,6.203231125398853,6.522644116754364 +11591924,COc1cc2c(cc1N1C[C@H](C)N[C@H](C)C1)N(C(=O)c1ccc(-c3ccc(-c4noc(C)n4)cc3C)cc1)CC2,1,21.653333333333332,6.043660000000001,3.4266666666666667,7.1466666666666665,161.89455182914955,85.34531146666669,1.5038115155962,6.122517333333333,3.2351851851851854,7.566747733333335,220.08286810750127,24.5625,6.314674999999999,4.0625,7.3375,146.15481352437385,93.15990441250003,1.8239829855000003,6.46022625,2.9510416666666672,7.715470949999997,265.51864269908,20.845070422535212,6.211668309859156,3.8098591549295775,5.866197183098592,155.01027843625346,78.12449987323944,1.5728145479586695,6.319590140845069,2.726721439749608,7.679241126760562,224.99999513649192,18.138121546961326,6.138292265193371,3.3701657458563536,4.480662983425415,156.3391975265637,65.9255362486188,1.4856225001996186,6.240335359116024,2.6841620626151013,7.633155823204418,205.92748117882348,15.99047619047619,6.006651904761904,3.038095238095238,3.6619047619047618,158.02387560638792,57.21840887619048,1.3694174049510233,6.101107619047621,2.623941798941799,7.545465561904759,185.55469580661966,15.257009345794392,5.994640186915886,2.892523364485981,3.364485981308411,156.79900936910852,53.790266317756995,1.3504900245475144,6.089369626168225,2.5702232606438202,7.546863214953269,180.50679414434646,13.792792792792794,5.87493243243243,2.6936936936936937,2.954954954954955,159.99024116411846,48.22797150900901,1.2683514665927966,5.960845495495496,2.348973973973974,7.44968852252252,165.86257652775294,13.211267605633802,5.854783568075115,2.6948356807511735,2.9014084507042255,160.73869452296196,45.945077732394395,1.2141430696103146,5.934984507042251,2.3515910276473657,7.446057483568075,157.43975678013345,14.037037037037036,5.935492063492063,2.6507936507936507,3.0211640211640214,162.35439396257306,49.41296475661376,1.2161834092754182,6.011600529100528,2.575837742504409,7.51133508994709,161.43554635592838,7.111822222222225,0.09981599999999992,0.014907404701321845,0.6488888888888888,3.858488888888888,1.5177385672721941,33.95285335182222,0.22890691810286223,0.09581966222222216,0.75280987654321,0.05739403093333333,50.804390897186806,0.5893444444444439,0.010311750000000047,-0.006348322513761394,0.29861111111111105,1.7176777777777772,-0.22696592214341532,2.739629268677779,-0.010950493951666442,0.01064585444444457,-0.005532098765432026,0.004607816399999963,-0.0005396739202782718,1.0934359937402187,0.009121605633802847,-0.001146649128214066,0.026604068857589938,0.5601965571205006,0.09881695012207051,5.243017514093268,0.030212413340933983,0.009902046697965648,0.08669194922622157,0.003786980146478841,7.528706560370854,-0.5237559238796811,-0.008862077348066261,0.0012843904366068584,-0.06752608962553718,-0.306002701043585,0.08801245620727616,-2.465425417015592,-0.0014663721612360964,-0.008718689846531536,0.0002819998635836853,-0.004253486992265216,-1.419181953488459,-0.28337777777777795,-0.007313619047619035,3.1352662602427904e-06,-0.08095238095238098,-0.40686984126984127,0.04497909019867577,-1.3380755440761904,-0.005577116289324456,-0.006462570158730132,-0.026742857142857127,-0.004283067123809529,-1.0598742077599559,-0.8863393561786086,-0.009994317757009333,-0.0010053583328353906,-0.030633437175493248,-0.4311991692627206,-0.1517977149364799,-4.219940312071443,-0.02159440071953014,-0.010385637300103808,-0.10108782739125419,-0.0052476747962616884,-5.791244245218811,-0.17981021021021018,-0.00025221621621622454,-0.0004865264495526178,-0.009009009009009007,-0.05452492492492491,0.016735331138073253,-0.8715230545849848,-0.004682898563449311,-0.0006040285885886076,-0.013602335669002345,0.0003019092468468586,-1.1953168784752295,0.056878873239436654,0.003514892018779326,0.0013684493366136613,-0.04381846635367761,0.025955555555555607,-0.1116898242623661,0.24665874777089167,-0.006209713872453767,0.0031602125821595948,0.07524611371935315,0.002038156108920199,-1.0358962983203792,0.1904,-0.0053334603174603175,0.00019617129011323945,-0.029982363315696654,-0.05171640211640206,-0.027712713655467344,0.9228135000296291,-0.0008541754837705051,-0.0033446357671957803,-0.0032939055457574112,-0.00415228955767196,1.2615166194814715,,,0.475,1.2625,0.6,0.0125,0.6625,-0.0625,1.0301376431838523,0.015353704341046015,0.028253704341046015,1.061170762849351,0.2451898370351786,0.2373117976831028,2.0913084060332032,0.4825016347182814,2.06891251741796,1.6630662955374347,0.2630727971279133,0.14277342475261187,0.0,0.40584622188052516,7.1636531997333455,1624.0,453.27450000000005,257.0,536.0,12142.091387186216,6400.898360000001,112.785863669715,459.18879999999996,242.6388888888889,567.5060800000001,16506.215108062595,1965.0,505.174,325.0,587.0,11692.385081949908,7452.792353000003,145.91863884000003,516.8181,236.08333333333337,617.2376759999997,21241.491415926397,2960.0,882.0569000000002,541.0,833.0,22011.45953794799,11093.678982000001,223.33966581013107,897.3817999999998,387.1944444444443,1090.4522399999998,31949.999309381852,3283.0,1111.0309000000002,610.0,811.0,28297.39475230803,11932.522061000003,268.897672536131,1129.5007000000003,485.8333333333333,1381.6012039999996,37272.87409336705,3358.0,1261.3969,638.0,769.0,33185.013877341466,12015.865864000001,287.5776550397149,1281.2326000000005,551.0277777777777,1584.5477679999995,38966.48611939013,3265.0,1282.8529999999996,619.0,720.0,33554.98800498922,11511.116991999997,289.0048652531681,1303.1251000000002,550.0277777777775,1615.0287279999995,38628.45394689014,3062.0,1304.2349999999994,598.0,656.0,35517.8335384343,10706.609675,281.57402558360087,1323.3077,521.4722222222222,1653.8308519999994,36821.49198916115,2814.0,1247.0688999999995,574.0,618.0,34237.3419333909,9786.301557000006,258.612473826997,1264.1516999999994,500.88888888888886,1586.010244,33534.66819416842,2653.0,1121.808,501.0,571.0,30684.980458926308,9339.050339000001,229.85866435305405,1136.1924999999999,486.8333333333333,1419.642332,30511.318261270466,533.3866666666669,7.486199999999994,1.1180553525991384,48.666666666666664,289.3866666666666,113.83039254541457,2546.4640013866665,17.168018857714667,7.186474666666662,56.460740740740746,4.30455232,3810.3293172890103,47.14755555555551,0.8249400000000038,-0.5078658011009115,23.888888888888882,137.41422222222218,-18.157273771473225,219.17034149422233,-0.8760395161333154,0.8516683555555655,-0.4425679012345621,0.368625311999997,-0.04317391362226175,155.26791111111106,1.2952680000000043,-0.16282417620639736,3.777777777777771,79.54791111111109,14.032006917334012,744.5084870012441,4.290162694412626,1.406090631111122,12.310256790123463,0.5377511807999954,1069.0763315726613,-94.79982222222228,-1.6040359999999931,0.23247466902584138,-12.222222222222229,-55.386488888888884,15.930254573516985,-446.2420004798222,-0.26541336118373343,-1.5780828622222078,0.05104197530864704,-0.7698811456000041,-256.8719335814111,-59.50933333333337,-1.5358599999999973,0.000658405914650986,-17.000000000000007,-85.44266666666667,9.445608941721911,-280.995864256,-1.1711944207581357,-1.3571397333333277,-5.615999999999997,-0.8994440960000012,-222.57358362959076,-189.67662222222225,-2.138783999999997,-0.2151466832267736,-6.555555555555555,-92.27662222222222,-32.4847109964067,-903.0672267832888,-4.62120175397945,-2.222526382222215,-21.632795061728395,-1.1230024064000013,-1239.3262684768256,-39.91786666666666,-0.055992000000001846,-0.10800887180068115,-1.9999999999999998,-12.10453333333333,3.7152435126522625,-193.47811811786661,-1.039603481085747,-0.1340943466666709,-3.0197185185185207,0.06702385280000261,-265.36034702150096,12.115200000000007,0.7486719999999965,0.29147970869870987,-9.33333333333333,5.528533333333344,-23.789932567883977,52.538313275199926,-1.3226690548326523,0.6731252799999937,16.02742222222222,0.4341272512000024,-220.64591154224075,35.985600000000005,-1.008024,0.037076373831402255,-5.666666666666668,-9.77439999999999,-5.237702880883328,174.4117515055999,-0.16143916643262546,-0.6321361600000025,-0.6225481481481507,-0.7847827264000005,238.42664108199813,0.6991381592097965,0.5923219834805874,0.42889034197180564,0.30799380868383847,0.2738304132745761,0.1663236026593824,0.17192959469900995,0.08652831846458944,0.11040622964678928,0.04871046429259028,0.06842881841340274,0.02554574998117868,0.043254757580920386,0.013813180972333177,0.027302500758291576,0.007163199183450405,8.033667206945704,5.670412003421865,3.570706176914764,2.1701590130115327,0.4139395683544741,-0.5267316881346433,3.2324274225767198,0.97788829719879,6.033609275291674,0.9930482177139166,14.56912077479086,10.930917836464946,16.016303150501525,11.681588701211382,2.0175824339679274,0.7154411381904984,3.516563838739206,2.220081557477438,7.008273927523738,1.2554776802870393,3.7244774239463987,2.4160465640161415,20.924107384559154,14.68172004541229,0.22742579175211255,0.5544035836901355,0.7508124482371984,0.8326472909954192,0.8530860228157764,0.8530860228157764,1.0197331384558874,1551.52178426346,0.0,3.0,7.0,0.0,12.0,3.0,6.0,0.0,0.0,4.745192447595654,2.612132563633242,1.330847167041668,0.7969925001442304,0.6636591668108967,0.6636591668108967,337.47027321239773,2586.3519722066185,64.9573549746526,34.484692962754906,67.63846030695271,,20.0,1389.0,0.0,4.794537184071822,5.907179729351506,35.90701797593133,64.45187627588716,0.0,14.033534740968157,35.23174507315853,65.39401998584778,9.259957890773396,19.0,50.5,24.0,0.5,26.5,0.0,0.025,-2.5,0.12521212121212122,0.05238709677419373,-0.07282502443792749,0.012378048780487871,0.12576470588235256,0.0,0.5706666666666651,0.8074999999999996,0.4454545454545439,0.5182795698924714,0.7951219512195117,41.20550572735409,0.6141481736418406,1.1301481736418406,42.44683051397404,9.807593481407144,9.492471907324111,83.65233624132813,19.300065388731255,0.5882352941176474,0.14912280701754385,0.0,0.4105263157894737,0.34375,0.30760354804387,-0.907132023939972,-0.038446924368030384,-0.012095093652532958,-0.036285280957598885,0.69239645195613,2.0418977571163826,0.035619241558900235,0.02722530342821843,0.04083795514232765,-8.381410469236664,0.7925301219878009,0.7151507106409127,1.5093417711753685,0.6842465753424658,0.4458999493180981,1.3315509242901236,0.7985347695000591,1.1067470060300522,0.6976363909351196,0.6373467470021779,0.7398564852383996,0.991229642448954,0.7928476518545325,0.8991528449906516,1.333026368757886,1.2046594636311019,0.8886935230995262,1.0516813884650875,0.7926211430110113,0.8650250688450505,0.8707122335620895,0.588149478857348,0.9158792281419005,0.8192822846583746,1.0240412422846108,1.060838794210076,1.1081034419454796,1.213918110951336,1.079364141956164,1.038711036354666,1.0236099400790752,0.9963195555412477,1.0512677971728548,0.8436926607665801,1.028102580494665,0.9960459999213527,1.0064975645292609,1.0328072860412367,1.0191924269243064,1.1838551859099806,1.1068729924701175,0.9957324228271467,1.0066844097725007,1.0216094903089175,1.0246346496614593,1.2604558301502753,1.0327260101364364,1.0063425112807436,1.0969230179785756,1.1125542649565547,1.1243938953837196,1.0302778133401613,1.1017177590762375,1.0872525071287884,1.0963858735582117,1.1097706366285676,1.1141821863248433,1.3036700837224857,1.1543234059998835,1.108291500896252,0.9992750724927504,0.8940316849670061,0.9704888123608008,0.9452054794520548,0.9508615923332107,0.9643120067090498,1.0012086439385455,1.0183454628647965,0.9097576076243964,0.8111175251239798,0.8676665358779977,1.0239940909727914,0.9825513927480488,0.9172541952936755,0.9539912080735722,1.0672390507428131,0.9628263499166769,1.0143734736968477,0.9837653942573822,1.0250997834178441,0.927971236713591,0.8012917049936785,0.926796223882522,1.0224816167174802,0.9759242329735276,1.0856630167762655,1.0044860565613212,1.1062187432050448,1.0289413406350378,1.000539377827318,0.974635260287496,0.971132232252501,1.0640467445064823,1.514735257453895,1.0966511701324464,0.9518437013007097,9.0,0.2874237322722171,5.333333333333336,3.416666666666667,2.703333333333334,1.7816666666666667,1.3275736961451248,0.7716482426303853,0.4958664021164021,0.3321990740740741,8113.72358450259,9137.395120070909,3901.4698205014397,3548.8785824469696,23.531487383036357,0.4854522932628161,12.108072869056334,0.9434543909273919,0.0,0.34375,1.4836262429002263,3.6166861268626382,4.8979715234542125,5.43182619035165,5.565159523684984,5.565159523684984,0.20000000000000004,0.007185593306805428,0.08080808080808086,0.04951690821256038,0.039754901960784315,0.027838541666666668,0.022501249087205497,0.014559400804346895,0.009722870629733375,0.007382201646090537,0.459269748122274,30.044444444444444,12.928374655647383,6.451877792537133,234.4999071886945,0.0,4.639619379686298,312.6697107938256,,243.26365985036762,239.50719398553264,237.2690805888814,243.2987296942676,309.9518084592391,241.71015472571747,243.4859452004909,286.83328254064514,0.08286827567243264,0.10330758595816357,-0.42585028319506785,0.46018835616438347,0.44516851732399554,-0.14954217217484123,0.08068922044016502,-0.04783819572786218,0.1111030262218522,-0.007348600141691278,0.08028389581753236,-1.062258420478682e-05,0.15374906171354685,0.09138420327204912,-0.07691809212856428,0.04099942118464203,0.1451854788888139,0.06510801810859464,0.15442052718705834,0.13198558432103677,0.10334044671333856,0.11515782660065248,0.06598212540390566,0.14819007623980276,-0.07364581221435867,-0.08878413629143893,0.08615788343714657,-0.10406417921743744,-0.07930635796950636,0.057989207169887924,-0.07261320253319077,-0.006405975727553867,-0.09099061345375446,0.000374596391958334,-0.07411026762009278,-0.027934238132299772,-0.03984601539846016,-0.07327100913299511,0.0002103160357593824,-0.12475538160469674,-0.10544797535674796,0.029635598098766064,-0.03940981131131876,-0.02436412291750094,-0.06744513609056906,-0.03552405192351662,-0.07462565451770713,-0.02086186231235073,-0.12462900906171061,-0.10012741200818846,-0.06744019854416679,-0.047209064140314935,-0.11175337850639533,-0.10001571957764989,-0.12428823782037046,-0.09433703838442498,-0.10838732948168552,-0.13428068698491885,-0.09143241397972522,-0.11399101815704457,-0.025283282482562543,-0.0025268114953136242,-0.03263656278879162,-0.013883746760459087,-0.01413116027933573,0.01102649132001131,-0.02566862482967756,-0.020457654151566498,-0.006303806281301244,-0.0180687529386068,0.005260289997709773,-0.023527826185224823,0.007997791770118765,0.035213713420486986,0.09179661812577748,-0.06752845842176344,0.0067268706229266645,-0.07358963307040707,0.007264742824851677,-0.027127681085039785,0.032980836175674696,0.09995367497683746,0.03551163902893738,-0.020389897015333374,0.02677232276772322,-0.053432919746937584,0.013159318744183881,-0.04620569689062841,-0.01340327874607269,-0.01825921423692549,0.02717926209227133,-0.0037315407103016016,-0.03490552658638056,-0.004375481311274144,-0.0723470627545763,0.02483085806568199,15.343259609987603,36.882174589718815,15.780814147601227,13.434677177285456,34.496722137226286,40.96468702104569,42.96987919194497,43.10427919194497,43.10427919194497,82.7565006967184,66.52265182149739,10.522911885116532,5.710936990104475,0.0,16.233848875221007,24090.71982506437,22984.523567497927,1695.1527138884412,329.0,66.0,91.0,124.0,156.0,184.0,222.0,259.0,288.0,537.2739899800009,45.0,5.407171771460119,6.285998094508865,7.190676034332207,8.08301991917133,8.990566138131577,9.888627689629104,10.797553125151618,11.698981705808471,12.60887755177016,0.6355555555555555,0.9751999999999998,1.1246589108046263,0.5968573252296505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6761178043912175,0.9627189542483662,0.9979315367807721,0.6322160227966621,9.0,2.0,0.0,1.0,0.0,0.0,11.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,4.0,1.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,24.376565956480682,5.749511833283905,0.0,11.715128420025835,5.907179729351506,4.794537184071822,0.0,4.9839785209472085,0.0,29.422131530971885,79.77767453109392,55.45597733380182,12.797183815961095,269.7738246834658,-795.5710431410167,-33.718641738814604,-10.607613908546888,-31.82284172564067,607.2440978958635,1790.7809290656019,31.238713235837995,23.87707905420802,35.81561858131204,0.5,0.8969981744128759,0.1677069536278579,29.8697475847005,0.0874140625593077,33.240397875038205,0.10300182558712408,10.0,0.1111111111111111,0.23818741829233012,0.5806375665390754,0.7863403587148371,0.8720475679665703,0.89345344602444,0.89345344602444,5.4185400000000055,,1.4642857142857144,1.7854816193578409,1.6456504849231428,1.460297629707019,-5.837791883926546,1.5820838433292534,1.44679936621724,-2.793606575391221,157.29119999999966,14.054495074845217,0.0,15.457430382078986,0.0,46.199452079984425,36.54388622071622,77.1783820132714,0.0,28.264270806374817,4.51085950651685,0.0,5.872117789475416,3.044522437723423,7.419979923661835,5.351858133476067,9.053335623166017,7.40184157874383,10.732715997033832,47.666666666666664,18.280374881316636,8.346655898972461,0.0,5.122514826197645,0.0,0.0,10.022219113895282,0.0,73.13999999999999,0.0,13.722407806075978,0.0,0.0,0.0,0.0,0.0,0.016675931784574383,84.34941831034698,19.853471019507335,11.374772549367124,5.749511833283905,54.87556992473534,6.4208216229260096,13.847474399381248,41.22308998056996,59.12039855312784,0.0,22.514758973090913,0.0,44.76429939222379,50.70883532934131,52.32673510742504,625.3394215876513,,486.57358690197856,479.08715271996857,474.67947685258866,486.6436383534106,622.2387336720487,483.4798404664865,487.0163673905415,574.7840077114469,52.32673510742504,625.3394215876515,,485.25572975912144,477.4802192625465,473.1983914161577,485.3293704866743,625.741408802405,482.05596500749004,485.714247960946,576.4601716566816,4.948604066226068,481.15234981792753,,374.12984601208194,368.6869185844174,364.89975576372933,374.1790454803703,468.7435625176232,371.8526941561612,374.4547659557532,436.75356799132567,1.3081683776856259,15.633485539691282,,12.164339672549463,11.977178817999214,11.866986921314716,12.166090958835266,15.555968341801218,12.086996011662162,12.175409184763538,14.369600192786171,2.5069319609197103,312.6697107938256,,243.26365985036762,239.50719398553264,237.2690805888814,243.2987296942676,309.9518084592391,241.71015472571747,243.4859452004909,286.83328254064514,72.20392156862746,0.0,9.974662266449585,0.0,0.0,0.0,0.0,74.8448652585579,3.2606015885118937,3.591627783873972,5.7959053735268,0.0,0.7518182182433615,4.281202977818477,0.0,0.0,0.0,47.41620170974966,786.6834754810313,111.27196821751697,271.25145951469784,367.34786425906594,407.38696427637376,417.38696427637376,417.38696427637376,1804.0,165.95147202996347,90.33444709829797,93.38723098979727,83.73,83.73,1.0,9.403196737091648,6.491853096329675,4.832435663383233,6.225751906383729,,6.223671085822746,6.224168569373374,6.2238288298011994,6.22366478695252,6.206233258374953,6.223855564102553,6.223643466306585,6.2153434255488555,0.12081089158458083,0.1556437976595932,,0.15559177714556865,0.15560421423433435,0.15559572074502998,0.15559161967381302,0.1551558314593738,0.15559638910256382,0.15559108665766463,0.1553835856387214,2.961644979812058,3.2149885843504507,,3.2146543004914054,3.214734231397438,3.2146796459791793,3.214653288408131,3.211848512384791,3.2146839414449877,3.2146498626641065,3.2133153420859086,412.4900000000017,865.5170630782346,303.6570671820072,,303.97942794566757,303.8773678061116,304.11804199611134,303.98124620139515,307.3238753110911,303.9502376978471,303.98417191398215,305.67191297856937,21.637926576955866,7.59142667955018,,7.599485698641689,7.596934195152789,7.602951049902783,7.599531155034879,7.683096882777278,7.598755942446178,7.599604297849554,7.641797824464234,8.149621450248043,7.1021933572977165,,7.103254389004954,7.102918585765678,7.103710283198554,7.1032603704962085,7.114196521058989,7.1031583573437524,7.1032699950982,7.108806708067725,10.918420199724444,22.328559103751054,7.613335362989832,8.025677077391796,2.0132179682880587,19.032193099559997,0.8150826750279814,10.696815155288654,1.7233660246448435,494.0062088948941,236.5964792901734,-697.7300635198045,-29.57185312997185,-9.303067513597393,-27.909202540792183,532.5639572351892,1570.5469702037956,27.39691138614604,20.940626269383937,31.41093940407591,6030.0,69.0,3.005175474528313,1.5426327037538887,0.0,0.0,0.6820719257265115,0.2104050044137881,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.0763141139606879,0.6525024833620882,0.23305436589266937,1.0180621301520194,0.3414915170826785,27.96552636839186,23.692879339223495,19.300065388731255,13.85972139077273,18.07280727612202,10.977357775519238,15.645593117609906,7.874076980277639,13.69037247620187,6.040097572281195,10.674895672490829,3.985136997063874,7.9588753948893505,2.5416252989093047,6.06115516834073,1.59023021872599,7.071153064476128,2.919277315727432,11.858626662384996,4.363392487768709,17.581990147576686,5.434041445568225,132.19808979202446,61.42871933768861,36.72070220540555,29.548433013785484,28.865720191559593,28.865720191559593,222.0,268.0,84.68375499999999,44.582245000000036,0.44,465.08,12.277777777777779,8.583333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,23.0,23.0,75.0,0.0,1.0,80.0,23.0,1.0,12.0,68.0,24.0,45.0,56.0,0.0,0.0,0.0,32.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,7.0,1.0,3.0,40.0,8.0,0.0,5.0,3.0,0.0,6.0,5.0,0.0,0.0,0.0,1.0,4.0,4.069026754237811,8.296162640518473,4.689051669968793,5.29141862485688,5.874052536363343,6.385088997153096,6.736373662226517,7.1840840838,7.554923963925421,7.9018284737924 +27991,NC(=O)CC[C@@H]1NC(=O)[C@H](Cc2ccccc2)NC(=O)[C@H](Cc2ccc(O)cc2)NC(=O)CCSSC[C@@H](C(=O)N2CCC[C@H]2C(=O)N[C@H](CCCN=C(N)N)C(=O)NCC(N)=O)NC(=O)[C@H](CC(N)=O)NC1=O,0,26.71014492753623,6.435621739130435,3.072463768115942,7.774557165861514,167.1355509642184,105.61757652173911,1.4363990863067826,6.475169565217391,6.525009443152223,7.9520045362318825,207.73753149462203,26.97163120567376,6.527458156028366,3.74468085106383,6.653270291568163,152.59198183491313,102.38854060992908,1.7621355698297876,6.6492581560283694,3.4279203027561316,7.943616602836876,254.40582364849854,21.65182186234818,6.3526060728744955,3.3441295546558703,4.947368421052632,156.46843324330726,80.07679915384614,1.4962617731456678,6.449370040485827,3.446068875893438,7.827962769230767,208.0862200769626,17.792613636363637,6.365965909090908,2.8323863636363638,3.7282196969696972,164.22365204127146,63.427210798295455,1.2710933964549656,6.425016477272728,3.3597344977553307,7.915537971590911,173.10171760681743,18.3671875,6.377058072916668,2.765625,3.9939236111111107,164.75034475413835,66.2135875078125,1.2329993902180518,6.43503307291667,3.409794560185185,7.94396740625,171.75494656522355,20.070217917675546,6.4401677966101705,2.8256658595641646,4.757869249394673,163.85770959165652,73.76815261743343,1.2670689726868647,6.495161743341402,4.326398230353032,7.9791452881355935,177.2102684801213,18.95983086680761,6.34782642706131,2.7843551797040167,4.0479210711768845,164.05201486729598,68.8779664947146,1.281538273170958,6.4086186046511635,3.58837078798319,7.903697513742071,174.869557706712,18.910984848484848,6.360808901515151,2.712121212121212,3.9122474747474745,163.86691299326142,68.18878487310602,1.2747774189763335,6.42453087121212,3.53092265245043,7.943034075757575,174.16564580598674,19.631672597864767,6.393328825622778,2.713523131672598,4.2497034400948985,162.77764208402084,71.28494119572953,1.2942428640983255,6.456402669039146,4.0927408725451455,7.951255725978646,176.75850021320264,9.888258769166141,0.16168582230623813,0.030537574353253313,0.5769796261289645,4.133281990244814,1.5306990712598805,45.586072521739126,0.2498979729462751,0.14885103969754246,2.8199527251741614,0.10055688216761183,47.43324859501608,0.7719324118391013,-0.02327052782581875,-0.021204457066022517,0.1005823021267658,0.8527277629558133,0.008094912405872522,3.240626680851066,0.03619539715362584,-0.019356405099947595,-0.1900068433543481,-0.014263773934494364,3.6245927159213713,-0.21607664160643916,0.027789692567903694,0.004875074317626043,-0.08270044992759146,0.04932800929882497,-0.18262172986535338,-1.0751254777327919,-0.035560976278519195,0.023230900101788604,0.31918400370181055,0.015964691205620562,-6.144495288540262,-1.2265739865574457,-0.01181205748410377,0.003020525307138133,0.009812205228084268,-0.6157241656217711,0.1409404633227603,-5.624858178977273,-0.006886448514211743,-0.01289307280030928,-0.3335563568794775,-0.007595756261814748,-3.201715144709827,-0.2606923440453685,-0.03246848761420917,-0.007547270438814128,0.003636315900021024,-0.36041061343321884,-0.09513086760152605,-1.1893515859374997,-0.0013283553577429887,-0.027022325929426546,-0.4948877802053738,-0.020325315365075623,0.6803672082560279,1.0317328088947069,0.022315651533113344,0.0034271516604636285,0.0006250340106993366,0.3689424154431151,-0.06011542860329789,4.610198748184022,0.0024835009092652642,0.020607176956842187,0.45658857368852496,0.016578719439574854,0.8880598888410223,0.212700265058818,0.002529877666185764,0.003241717006105019,0.006346047186597608,-0.06064799951173245,0.1269246655827727,0.9988687526427062,0.010681349216029567,0.002034611557168405,-0.027522699383964136,0.00068236920353133,1.0492105290123586,-0.5276691775982888,-0.023278460646159103,-0.005263254685634711,-0.0162088751408222,-0.2877371700623117,-0.010230973981031014,-2.276824528409091,0.0029009394920586303,-0.01997636084378755,-0.33637588427154697,-0.01588938924929828,1.2113660156059431,-0.03620348008470333,0.011962034726099757,0.002371810846078895,-0.022025786322888874,0.06006360662855728,-0.01551680792396871,-0.2686935658362981,-0.00954663912707356,0.009758058244589649,0.2421747885455587,0.009758120411169925,-2.075550976979691,,,0.4630630630630629,1.054054054054054,0.41216216216216217,0.006756756756756757,0.6418918918918919,-0.22972972972972974,1.518051095691642,0.02322725824835305,0.027875906897001698,1.4191944815910824,0.20420319011960772,0.2714102754478918,2.9372455772827246,0.47561346556749956,1.9912544125346834,1.289392459861246,0.3622386472657764,0.28521350461265443,0.0,0.7018619526734377,7.742224315130446,3686.0,888.1158,424.0,1072.888888888889,23064.70603306214,14575.225559999997,198.22307391033598,893.5734,900.4513031550068,1097.3766259999998,28667.77934625784,3803.0,920.3715999999997,528.0,938.1111111111111,21515.46943872275,14436.784226,248.46111534600004,937.5454000000001,483.33676268861456,1120.0499409999995,35871.221134438296,5348.0,1569.0937000000004,826.0,1222.0,38647.70301109689,19778.969390999995,369.57665796697995,1592.9943999999994,851.1790123456792,1933.5068039999996,51397.296359009764,6263.0,2240.8199999999997,997.0,1312.3333333333335,57806.72551852756,22326.378201,447.4248755521479,2261.6058000000003,1182.6265432098764,2786.269366000001,60931.80459759974,7053.0,2448.7903000000006,1062.0,1533.6666666666665,63264.132385589124,25426.017603000004,473.47176584373193,2471.052700000001,1309.361111111111,3050.483484,65953.89948104584,8289.0,2659.7893000000004,1167.0,1965.0,67673.23406135415,30466.247031000006,523.2994857196751,2682.501799999999,1786.802469135802,3295.387004,73187.8408822901,8968.0,3002.5218999999997,1317.0,1914.6666666666665,77596.603032231,32579.278152000003,606.167603209863,3031.2766,1697.299382716049,3738.448924,82713.30079527477,9985.0,3358.5071,1432.0,2065.6666666666665,86521.73006044203,36003.67841299998,673.0824772195041,3392.1522999999993,1864.327160493827,4193.921992,91959.460985561,11033.0,3593.050800000001,1525.0,2388.333333333333,91481.03485121971,40062.13695199999,727.3644896232589,3628.4982999999997,2300.120370370372,4468.605717999999,99338.27711981988,1364.5797101449275,22.31264347826086,4.214185260748957,79.6231884057971,570.3929146537844,211.2364718338635,6290.878008,34.485920266585964,20.54144347826086,389.1534760740343,13.876849739130432,6545.788306112219,108.8424700693133,-3.2811444234404434,-2.9898284463091747,14.182104599873979,120.23461457676967,1.1413826492280257,456.9283620000003,5.103550998661243,-2.729253119092611,-26.79096491296308,-2.0111921247637055,511.06757294491337,-53.37093047679047,6.864054064272213,1.2041433564536326,-20.42701113211509,12.184018296809768,-45.10756727674229,-265.5559929999996,-8.78356114079424,5.738032325141785,78.83844891434721,3.9432787277882784,-1517.6903362694447,-431.75404326822087,-4.157844234404527,1.0632249081126228,3.4538962402856623,-216.73490629886345,49.61104308961163,-1979.950079,-2.4240298770025337,-4.538361625708867,-117.41183762157608,-2.6737062041587913,-1127.003730937859,-100.10586011342151,-12.46789924385632,-2.898151848504625,1.3963453056080732,-138.39767555835604,-36.530253158986,-456.7110089999999,-0.5100884573733077,-10.376573156899793,-190.03690759886354,-7.8049211001890395,261.2610079703147,426.10565007351397,9.216364083175812,1.4154136357714786,0.258139046418826,152.37321757800655,-24.82767201316203,1904.0120830000012,1.025685875526554,8.510764083175824,188.5710809333608,6.847011128544415,366.7687340913422,100.60722537282092,1.1966321361058663,1.5333321438876741,3.0016803192606685,-28.686503769049448,60.03536682065149,472.46492000000006,5.052278179181985,0.9623712665406556,-13.018236808615036,0.32276063327031906,496.27658022284555,-278.60932577189647,-12.291027221172007,-2.7789984740151272,-8.55828607435412,-151.9252257929006,-5.4019542619843754,-1202.1633510000001,1.531696051806957,-10.547518525519825,-177.6064668953768,-8.389597523629492,639.6012562399379,-20.34635580760327,6.722663516068064,1.3329576954963391,-12.378491913463547,33.75574692524919,-8.720446053270415,-151.00578399999955,-5.365211189415341,5.4840287334593825,136.102231162604,5.4840636710774975,-1166.4596490625863,0.7340633344824858,0.5677407985833224,0.45708307080512955,0.3383078729587835,0.3111737074408657,0.19386381123649327,0.19400862210352374,0.11494247977830548,0.12316028430401889,0.0675379226546409,0.08318570257237445,0.03871436907265444,0.05138194964431554,0.024195615923992667,0.03223961400650393,0.014814457432542606,16.101026075346276,5.693373196297124,3.561805940357645,2.1927695187201306,0.44620885906641644,-0.40180485397752336,3.193889078617602,0.9714655096683872,6.034521367275249,0.5598307115061968,14.561567649596489,10.250201921558322,32.16051400075998,11.704734184115285,3.007839043030404,0.7508458863822535,3.508214955471382,2.242637422510921,7.01925230818575,0.5378285630313844,3.7206306089239907,2.4386560818975003,24.53164219598944,14.70177515364908,0.2423457933261007,0.5008450168867411,0.6917990515235283,0.8444323162155956,0.9059072090214125,0.9225097211932796,1.6341739772591952,2378.0043814344226,0.0,11.0,5.0,0.0,10.0,17.0,2.0,0.0,0.0,5.336278035478863,3.4459034695480146,2.049478964409875,0.9332897646338507,0.48373106885625905,0.36231884057971175,439.63983115430716,12384.428245843017,181.89134400270677,89.74223366552913,182.16248310272294,,26.0,3076.0,133.0790841015929,57.84643641963074,74.82921616490253,17.547724606320003,21.587795952773448,17.0326438677737,42.46456947923127,0.0,42.20992496067999,28.668337385810926,34.26666666666665,78.0,30.5,0.5,47.5,0.0,0.03693693693693714,-17.0,0.18856682769726313,0.026048309178744122,-0.162518518518519,0.11880141010575862,0.20357298907646537,0.0,0.6256038647342986,0.907207207207208,0.4370370370370355,0.5995555555555545,0.7884057971014494,112.33578108118151,1.7188171103781258,2.0628171103781257,105.0203916377401,15.111036068850972,20.084360383143995,217.3561727189216,35.19539645199497,0.5104270109235346,0.17509727626459148,0.0,0.3326848249027239,0.4782608695652174,0.33672799931762354,-3.0974183645783224,-0.07868797706267491,-0.0224450606128864,-0.0703958719222346,0.6632720006823764,6.101158441791253,0.056412446227701724,0.044211293056458364,0.06490594087011974,-6.2999805543493315,0.7415865069558623,0.8383103929487312,1.7837268301950375,1.073852326328916,0.530243617603927,1.361328344200644,0.7534663015818048,0.9772211646330233,0.8144573235916834,0.6604419506669831,0.8114806231565133,0.9786162511152262,0.9214594420182681,0.5449649983627559,0.7835338585092791,1.4280319052510726,0.8311946032121436,1.3432424229341924,0.9247722052828402,1.254485163799438,0.5621989983123697,0.4933694362624588,0.5321027222371513,1.1874314014897611,1.1283277703540353,1.0549211257825992,0.929507134593322,1.0827098053248172,1.155095743835134,0.9752831064136988,1.1244529971825967,1.0583066612271237,1.063316792361175,1.0577967203520988,1.053672842956454,1.0595135726309357,1.0310323177094396,1.2604958277498024,1.3018240353899022,1.1112236075718966,1.1386910415560931,1.089514057775031,1.0284491451630045,1.0108181227825006,1.2326912141222843,1.2544380918751876,1.2767413774064695,0.9658954006181865,0.8754977314964492,0.9029808633956456,0.9084574620440777,1.1269333219334143,0.9378664552260174,1.084381865088848,0.8781875023901181,0.9938249327719507,0.8936545819758498,0.9072589335648209,0.8912214586766002,0.9662910280809573,1.014584944584342,0.9649470855822261,0.9033295480605174,1.0712853383779806,1.0160058728009895,0.9730279784539551,1.0082241640904144,1.0164447629599156,0.9631741219845584,0.9725789517684449,0.9752015875941826,0.9796101897531889,1.2059074350497627,1.1938209753225812,1.1604955456360286,1.1242584885991331,1.1222547492476298,1.0567752752273483,1.1853485791648193,1.1327802157108315,1.1762107052148878,1.221474175759286,1.2307926987742497,0.9814134308784831,1.095079922636152,0.9380503133480392,0.886633195792516,1.094512518995164,0.9897790716700261,1.0780759403789755,1.085327948041289,1.1567267824414105,0.9392801800884393,0.9723687716632978,0.9344043340458071,1.0547076711828274,17.0,1.374455667789001,8.000000000000004,4.493055555555555,4.983333333333335,2.9827777777777778,2.4065306122448975,2.4618764172335603,1.690893487024439,1.443433641975309,19570.27359108308,22268.61456201693,7169.643544051062,6484.171950609787,27.909323975893262,0.4880386880779803,14.288494117554993,0.9532725944579125,0.0,0.4782608695652174,1.772246421299307,3.6626209872301545,5.059045492368294,6.175234692144318,6.62479338792191,6.746205616198457,0.2207792207792208,0.00723397719888948,0.0776699029126214,0.04084595959595959,0.04051490514905149,0.020570881226053637,0.015426478283621141,0.01439693811247696,0.009042211160558498,0.007557244198823607,0.4540377186172766,66.51138471917693,35.67084550853049,25.139266443548937,433.305670824128,0.0,5.1892525353351875,798.0673844753055,,683.3445608878409,702.6567274879936,694.3441213260958,683.459637758969,930.3727049219802,709.2347582081451,713.1009120385462,872.375789299115,0.07806555530748888,-0.14392435585195357,-0.6943726708851551,0.17432556986732145,0.20630766663595246,0.005288376113803872,0.07108808681216557,0.1448406992937369,-0.1300387631774612,-0.06737944280346514,-0.14184781416272427,0.07641459995430748,-0.021851839302609644,0.17187464040767364,0.15964183209943383,-0.14333339719885801,0.011934344043122805,-0.11930609568805838,-0.02358451645993598,-0.1423019797209974,0.1560681077471315,0.11318771440826107,0.1587627903877334,-0.1295398369401559,-0.12404347572114362,-0.07305561684766247,0.09891176267627629,0.017006155475394684,-0.14896737437101448,0.09207587955662357,-0.12338983965540978,-0.027557040311376364,-0.08661728414196725,-0.11828437899038782,-0.07553691103065298,-0.06749938575883749,-0.0263638270529759,-0.2008122119248824,-0.24714701801487654,0.006302329814342955,-0.0871971992919534,-0.0621486413545846,-0.026090240289297142,-0.005315590767231106,-0.18153938316006726,-0.1754950626609562,-0.202127541416774,0.014343677239250185,0.10433917972615021,0.13801860432046284,0.11222737015124182,0.0010832861029994691,0.08926137058005633,-0.039273185521578956,0.10113173811991603,0.009938059440758991,0.13844160577389916,0.16191355607223018,0.16486906795639159,0.01872230798323041,0.021510386208951796,0.01564687385758595,0.10615502621804222,0.0109987370423703,-0.01467308537256135,0.08291941111475568,0.021911708936240667,0.04274284056848241,0.01366877625646841,-0.009759986094186853,0.006785902554078124,0.022119727408309992,-0.053363204778143776,-0.14397341903032754,-0.17235339731801558,-0.028092629976503275,-0.06961469620060184,-0.006683857182071818,-0.04994561721287389,0.011608495490606862,-0.13420370381274105,-0.1192842281605172,-0.15801394103302918,0.02553833126523879,-0.0036612593713257267,0.07398320121997636,0.07766860650561838,-0.03817428783519255,0.014531698241328972,-0.01013707280242694,-0.005894203009223119,-0.03820214711836004,0.06555586218556157,0.08587902427711865,0.09704080119453921,-0.04375730186015077,30.63268878742733,0.0,30.279761945462564,19.29574554296547,35.029622019167086,43.219431603183395,50.62364543058537,53.725587159199016,54.52395995012012,147.35282652756658,95.4150420297322,26.805659897667457,21.10579934133643,0.0,51.937784497834386,64660.61781889028,60264.069777360484,8848.514364034658,274.0,103.0,121.0,147.0,178.0,186.0,209.0,243.0,257.0,1068.4269554880016,77.0,5.8888779583328805,6.695798917058491,7.546974117516527,8.378620541552298,9.23317760587894,10.077734934062509,10.935728530422239,11.788046476577112,12.649029408729335,0.6835748792270532,1.001913043478261,1.1428429854946331,0.6450753475980353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6522552807428621,0.9863597612958227,1.0204091326514455,0.6152295536538672,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,1.0,12.0,0.0,0.0,0.0,0.0,5.0,1.0,15.0,7.0,0.0,2.0,7.0,1.0,0.0,0.0,0.0,75.89229473954643,48.042397637319624,5.959554568743835,64.97897702286656,0.0,57.7323137574257,0.0,0.0,0.0,64.05236543200472,55.36374523494726,50.27850651702276,12.965578028838586,453.35097305789003,-4170.183745915386,-105.9409108883496,-30.21872279648831,-94.77690331625877,892.9908042121972,8214.244499927632,75.95043311435717,59.52351086904082,87.38557978646419,0.46153846153846156,0.7284862410362385,0.05522230839056089,433.06771573970286,0.03186276275842885,754.6228441874634,0.2715137589637614,14.0,0.24675324675324675,0.2493128401083888,0.5152434952569864,0.711687147329761,0.8687083697455759,0.9319505655783447,0.9490303729300346,-4.341700000000018,,6.250000000000001,5.978739634904531,5.0573034364071,6.236906852800827,-19.39380076454631,5.384485924112608,5.088331714515692,-8.943320781761374,272.16369999999944,57.84643641963074,0.0,42.117429958894796,33.66074211844659,106.50110203329584,31.139976431231304,65.72420659954848,0.0,5.749511833283905,5.043425116919247,0.0,6.340359303727752,2.3978952727983707,7.790282380703483,4.59511985013459,9.314970621054266,6.6052979209482015,10.885097750530926,94.33333333333334,14.422606753463585,0.0,0.0,0.0,0.0,0.0,1.0859997571592226,0.0,138.264,0.0,147.7933784547199,0.0,0.0,0.0,0.0,3.8786613179503684,-9.624372815652068,157.71233199825937,65.88585761385525,0.0,5.749511833283905,154.37783095256862,65.58155227064206,0.0,62.49347596680208,59.58970834879016,0.0,0.0,0.0,89.02039796852887,90.01122874251497,91.36416020222703,1596.1347689506113,,1367.3589983253128,1405.151867418287,1388.551558775532,1367.5909550693295,1864.726524751845,1418.3239897696926,1426.064301598322,1745.96013546063,91.36416020222703,1596.1347689506113,,1361.6598356679174,1399.420356220021,1383.6309392157837,1361.904765912348,1880.4748776706401,1413.2039922982904,1421.1828172788396,1753.694899379991,4.775270179816706,1129.7137353139483,,964.6004000158041,1004.1548327651972,992.9569901762413,964.7649563824591,1326.4868981065597,1012.8172639003875,1017.133170294471,1248.6984473709063,1.2346508135436085,21.569388769602856,,18.477824301693417,18.98853874889577,18.764210253723405,18.480958852288236,25.19900709124115,19.166540402293144,19.271139210788135,23.594055884603108,2.41475773990074,798.0673844753055,,683.3445608878409,702.6567274879936,694.3441213260958,683.459637758969,930.3727049219802,709.2347582081451,713.1009120385462,872.375789299115,136.11764705882354,0.0,0.0,0.0,0.0,26.999527595952998,9.896374745801307,140.81646030589948,-1.8265624659545692,17.887131294586723,0.0,2.18733041989114,-9.90586014697286,1.2057850890542523,0.0,0.0,0.0,84.90167840423368,980.7914604735345,244.57000613930435,505.44169623776133,698.1482779468246,852.1823875159159,914.2214875332236,930.9763750353872,1869.0,234.19398849013032,365.5503167965526,126.97244821681686,488.5099999999999,437.90999999999985,0.8571428571428571,8.212178438835844,7.266786540694901,4.996877983893117,8.4663990020948,,8.456127256973817,8.471410557013723,8.471529377183545,8.456123743450634,8.466929229821652,8.471468894462525,8.470938106991081,8.472513679597387,0.0675253781607178,0.1144107973256054,,0.11427198995910563,0.11447852104072598,0.11448012671869656,0.11427194247906262,0.11441796256515746,0.11447930938462872,0.11447213658096056,0.1144934281026674,3.610293314401971,4.1375852711409635,,4.136371297975821,4.138177030665438,4.138191056586593,4.136370882475462,4.13764789648192,4.1381839170331265,4.138121259174468,4.138307239295956,781.0200000000026,5216.595958809523,708.2659829521938,,708.4077319083106,704.1798199649181,704.5916524119906,708.4103469206502,707.3931696704352,704.2012895166758,704.3414148758799,704.5821327952922,70.49453998391247,9.571161931786403,,9.573077458220412,9.515943513039435,9.521508816378251,9.573112796225002,9.559367157708584,9.51623364211724,9.51812722805243,9.521380172909353,10.561080353196637,8.564299705488846,,8.564499820667244,8.558513749839008,8.559098418774857,8.564503512054838,8.563066621394086,8.558544238109002,8.55874320312331,8.559084907855482,0.0,152.87782486172452,27.783506040388026,28.127240625463777,-9.753403743271415,4.516746606490727,-1.3376146672287126,-0.40163014345806847,2.18733041989114,981.9451031294511,610.3653547938832,-5614.492596018551,-142.63267425103257,-40.68472895665617,-127.60210445496706,1202.2708264288942,11059.180538963608,102.25524110361651,80.13898941277978,117.65085679748522,28498.0,110.0,5.497420900587819,1.9081468823378016,0.0,0.0,0.9158287164060591,0.1952259016556551,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.32147816943725344,0.15113988565028466,0.47719038813317727,0.16400857540778102,54.32068675170395,42.01281909516586,35.195396451994974,26.04970621782633,32.05089186640917,19.967972557358806,23.47504327452637,13.908040053174963,18.104561792690777,9.928074630232212,14.807055057882652,6.891157694932491,9.557042633842691,4.500384561862636,6.738079327359322,3.0962216034014047,9.923727780557812,3.3569603416650176,13.480233800051508,4.4475077798941705,20.964835379243333,5.655355788068549,243.78618568382086,130.15977601840885,81.73863585624416,45.704012751808335,34.18068887145345,31.630590974716775,360.0,404.0,150.31875200000042,80.2032480000001,0.2898550724637681,527.28,28.055555555555554,16.583333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,138.0,0.0,3.0,141.0,12.0,12.0,18.0,123.0,24.0,77.0,117.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,64.0,15.0,13.0,2.0,74.0,28.0,0.0,14.0,12.0,0.0,4.0,19.0,2.0,0.0,0.0,0.0,2.0,4.564348191467836,6.454215375767067,4.990432586778736,5.247024072160486,5.556828061699537,5.9499912989014065,5.8623875048328395,6.007276378624069,6.301244405081738,6.407292442251693 +11319053,O=C(N[C@@H]1CC[C@@H](c2cccc(F)c2F)CN(CC(F)(F)F)C1=O)N1CCC(n2c(=O)[nH]c3ncccc32)CC1,0,27.671641791044777,7.022826865671643,3.656716417910448,11.074626865671641,173.5969238277944,112.35937002610225,1.4217433646406417,7.013394029850746,8.934597844112767,8.339058328358211,221.56683498136718,27.661971830985916,6.68849295774648,4.450704225352113,8.95774647887324,151.85721245662114,107.06301519966196,1.7478369345070424,6.8101338028169005,3.5056729264475743,8.020166816901407,268.00959199813605,24.592307692307692,6.818413076923076,3.8615384615384616,7.792307692307692,162.3563414640515,94.41183034842854,1.497179644606092,6.879269230769229,4.825427350427351,8.155337938461537,224.29038373634043,19.39572192513369,6.53584919786096,3.272727272727273,5.262032085561497,165.95980039482822,71.89040915600091,1.3052813562348822,6.588667379679144,3.708630421865716,7.982662374331552,188.99414208215984,17.576923076923077,6.474388942307693,2.9903846153846154,4.2451923076923075,165.75253423077967,63.69934853793076,1.2169859797241394,6.526474519230769,3.51829594017094,7.967989711538461,174.76283427837396,17.330232558139535,6.654757674418605,2.7767441860465114,4.572093023255814,170.6123214389445,62.60873546075535,1.1454837477761208,6.677947441860464,4.473708010335917,8.137346586046512,165.07276975400887,17.51219512195122,6.608759999999999,2.7560975609756095,4.639024390243902,171.16533157885468,64.04060935343608,1.1219291022939613,6.6355131707317065,3.9017615176151756,8.081160214634146,162.711203803049,17.201058201058203,6.782586772486773,2.6296296296296298,5.005291005291006,175.7572730368715,62.27302319464974,1.0650435033847354,6.7894999999999985,4.436654908877132,8.256722455026456,158.38678310901764,20.41875,6.967505625000001,2.6625,7.3,174.47332640461542,77.34760939241819,1.0897951982957437,6.959298124999999,6.6331597222222225,8.368391925000001,163.60782779030714,8.416573847181999,0.29228723546446855,0.02375675524699526,0.710625974604589,5.3717977277790165,3.0027148827248404,40.86022584743078,0.22763555041098682,0.25649815103586543,4.277805623623177,0.16918797059478727,45.172340669733416,0.25527816038579487,-0.012645738722824809,-0.016669513089957733,0.0959748242181984,1.2739874309344594,-0.515082438722297,1.1929011787218757,-0.016096159158388145,-0.00844393619457892,-0.10464998164527366,-0.009027425713559575,-0.526033141499949,0.574356118374831,0.070019940195692,0.00372821509476601,-0.04483952225097252,0.7833113422554279,0.34497318216324224,2.8937827834085548,-0.005027727761196384,0.05888345631201057,1.0011593272634152,0.04178951597237693,-2.4837077880647915,0.0030127120006957307,0.007983576252348249,0.0014767935070488384,-0.0685954853396836,-0.1836741744228018,0.22215115926446183,-0.002709234902908091,0.000980855518732434,0.006316774337268844,0.08554861676135248,0.004338396393799249,-0.16552154502790875,-0.8462523776067995,-0.029887874098223022,-0.0029452975194790222,-0.10399566461607004,-0.8441714361601864,-0.34038961905471127,-3.8907307905952844,-0.026495421291468774,-0.02544791423908018,-0.35041084670647904,-0.01894708052590089,-4.520458363862442,-0.8866883907432638,-0.018209658234340263,0.000469342505244076,-0.001219518512954142,-0.6101871758873111,-0.03521915213633839,-4.265773586512594,0.0006891266773545504,-0.017732090640169514,-0.1403644380780352,-0.007711637377154483,-2.344790612187082,-0.09243842672331826,-0.013012390178702421,0.003795002490094616,-0.008041336817912617,-0.3053980190058082,-0.23365940558682657,-0.46346540965824345,-0.017895366252592092,-0.010366341789414804,-0.49610690178521305,-0.009704150281718445,-2.057169640334873,-0.923641682608045,-0.06440773613571558,-0.006537193288841807,0.02687698677896941,-0.4866994098448766,-0.18195705866305964,-4.510032965403088,0.00906755627267507,-0.055495995148634916,-0.7505811858473304,-0.037448562555618035,1.5531695347505585,1.4154224214747164,0.09160374401314322,0.003201534139331662,0.008777010470037875,1.7490977946090442,0.22810548515901882,6.874124478756693,-0.010522264845926409,0.07940101874025396,1.380194091343655,0.05395458798730225,-1.4029080415053343,,,0.4457142857142859,1.14375,0.45,0.0375,0.69375,-0.24375,1.0735594817428198,0.022508863865317162,0.033258863865317165,1.1232100174980897,0.22390548923245204,0.25144098596155817,2.1967694992409093,0.47534647519401024,2.0424343265241705,1.3722141054861898,0.32116018866190676,0.1343880742207186,0.2146719581553554,0.6702202210379807,8.450842982447773,1854.0,470.52940000000007,245.0,742.0,11630.993896462225,7528.077791748851,95.256805430923,469.89739999999995,598.6180555555554,558.7169080000001,14844.9779437516,1964.0,474.88300000000004,316.0,636.0,10781.862084420101,7601.474079176,124.09642235000001,483.51949999999994,248.90277777777777,569.4318439999998,19028.681031867658,3197.0,886.3937,502.0,1013.0,21106.324390326696,12273.53794529571,194.63335379879197,894.3049999999998,627.3055555555555,1060.193932,29157.749885724257,3627.0,1222.2037999999995,612.0,984.0,31034.482673832877,13443.506512172171,244.08761361592298,1232.0808,693.5138888888889,1492.7578640000002,35341.90456936389,3656.0,1346.6729,622.0,883.0,34476.527120002174,13249.464495889599,253.133083782621,1357.5067,731.8055555555555,1657.34186,36350.66952990178,3726.0,1430.7729000000002,597.0,983.0,36681.649109373066,13460.8781240624,246.279005771866,1435.7586999999999,961.8472222222223,1749.529516,35490.64549711191,3590.0,1354.7957999999999,565.0,951.0,35088.892973665206,13128.324917454398,229.99546597026205,1360.2802,799.861111111111,1656.6378439999999,33355.796779625045,3251.0,1281.9089000000001,497.0,946.0,33218.12460396872,11769.6013837888,201.293222139715,1283.2154999999998,838.5277777777778,1560.520544,29935.102007604335,3267.0,1114.8009000000002,426.0,1168.0,27915.73222473847,12375.61750278691,174.367231727319,1113.4877,1061.3055555555557,1338.942708,26177.252446449143,563.910447761194,19.583244776119393,1.5917026015486824,47.61194029850746,359.9104477611941,201.1818971425643,2737.6351317778626,15.251581877536116,17.185376119402985,286.61297678275287,11.335594029850746,3026.546824872139,18.124749387391436,-0.8978474493205614,-1.183535429386999,6.814212519492087,90.45310759634663,-36.57085314928309,84.69598368925318,-1.1428273002455582,-0.5995194698151033,-7.430148696814429,-0.6409472256627298,-37.34835304649638,74.66629538872803,9.10259222543996,0.4846679623195813,-5.829137892626427,101.83047449320563,44.846513681221495,376.19176184311215,-0.6536046089555299,7.654849320561374,130.15071254424396,5.432637076409001,-322.8820124484229,0.5633771441301016,1.4929287591891227,0.2761603858181328,-12.827355758520833,-34.347070617063935,41.54226678245436,-0.506626926843813,0.18341998200296517,1.1812368010692738,15.997591334372913,0.8112801256404595,-30.95252892021894,-176.0204945422143,-6.2166778124303885,-0.6126218840516366,-21.63109824014257,-175.58765872131877,-70.80104076337994,-809.2720044438191,-5.511047628625505,-5.293166161728678,-72.88545611494764,-3.9409927493873855,-940.255339683388,-190.6380040098017,-3.915076520383156,0.10090863862747634,-0.26219648028514053,-131.19024281577188,-7.572117709312753,-917.1413211002077,0.14816223563122832,-3.8123994876364455,-30.178354186777568,-1.658002036088214,-504.1299816202227,-18.949877478280243,-2.6675399866339964,0.7779755104693963,-1.6484740476720865,-62.60659389619069,-47.90017814529945,-95.01040897993991,-3.668550081781379,-2.1251000668300346,-101.70191486596867,-1.9893508077522812,-421.71977626864896,-174.5682780129205,-12.173062129650246,-1.2355295315911017,5.079750501225218,-91.98618846068167,-34.38988408731827,-852.3962304611836,1.713768135535588,-10.488743083091999,-141.85984412514543,-7.077778323011809,293.54904206785557,226.4675874359546,14.656599042102915,0.5122454622930659,1.4043216752060599,279.8556471374471,36.49687762544301,1099.8599166010708,-1.6835623753482254,12.704162998440633,220.8310546149848,8.63273407796836,-224.4652866408535,0.7150929762206515,0.5314107072659142,0.43213315926728196,0.2935637598714825,0.28515269544375355,0.15604375460436917,0.17511464100301066,0.08882843812160142,0.11095801992008537,0.04982172276356766,0.07199817890216435,0.028477343951787394,0.04489830291561853,0.015850001510689254,0.02906091008579904,0.008725044870019539,9.014872478413894,5.691961446672683,4.125122029203392,2.1911107892276402,0.5025793013969906,-0.4155992827358736,4.017088155093158,0.9771082471360218,7.0148517397406485,1.887835842434394,17.43180948816547,10.952827610898023,19.006777716115135,11.703586332076974,1.9891931415024986,0.5267743891468119,4.007724287622838,2.240910719814993,8.008574589527964,1.208641400903487,4.0311632154181405,2.436659733180716,20.894177502001508,13.301313823998903,0.2926565073968258,0.6211220586395962,0.7886868584838446,0.8822008394915796,0.8822008394915796,0.8822008394915796,1.1918357368673458,1463.0161492426168,0.0,3.0,5.0,0.0,8.0,6.0,1.0,1.0,0.0,4.215935794194168,2.1394001975898327,1.0800675817403018,0.4888789179427384,0.4888789179427384,0.4888789179427384,69.1040467378242,2919.9750559778854,89.22434652497705,43.58171725340128,92.37558336294956,,18.0,1240.0,54.798294128359345,36.33568679058956,43.2261917767256,28.905430915086487,6.06636706846161,17.0326438677737,22.89667735632765,0.0,15.284745645900749,0.0,17.828571428571436,45.75,18.0,1.5,27.75,0.0,0.05428571428571409,-9.75,0.2492537313432842,0.05092349015589981,-0.1983302411873844,0.03127551020408181,0.24815453527435605,0.0,0.6921108742004255,0.9567857142857147,0.4428571428571413,0.6411873840445257,0.9255102040816329,42.94237926971279,0.9003545546126865,1.3303545546126865,44.928400699923586,8.956219569298081,10.057639438462328,87.87077996963637,19.01385900776041,0.4658454647256439,0.13621794871794868,0.028044871794871782,0.3758012820512819,0.46153846153846156,0.45516251631557836,-1.7246992641461611,-0.0774475068120485,-0.025741780061883,-0.07186246933942338,0.5448374836844216,2.0644951495484265,0.038337179336501145,0.030813360441021294,0.04801151510577735,-5.746280222921423,0.6338285389644522,0.5799948792955634,1.841593092192478,1.0152501214181642,0.3848375147626239,1.1684278594158368,0.630925275808073,1.184358794615427,0.5591947341865778,0.5285709909748775,0.6012718436438661,1.0088291057895935,0.7346501997288087,0.47778166956402934,0.9183192202328442,1.1782758620689655,0.6404157176488601,0.8665188221479011,0.7289116696757482,1.044860469453376,0.4824876831372112,0.4194105058992473,0.46528137163103594,1.0246848338766834,0.8972012816560643,0.713274514589029,0.9305193584103199,1.1378757145491425,0.8958110738697068,0.7837354156915975,0.8926640106781352,0.9820501456994445,0.7227855294040605,0.6814802338116818,0.7090611771992554,1.0100375247880062,1.0252241604671335,0.840614259582083,1.1942914925154111,1.1596153846153845,1.0341514823817632,0.8768389015041598,1.0098884240281716,1.07929129126954,0.8490966162249687,0.8496374802611518,0.8658142265043961,1.1048790502303425,1.1045296579028037,1.0028818829501767,1.008955749361306,0.957449879711307,1.0908915210887815,0.8830746648007569,1.0977824850378997,0.9532474529874259,1.0156983483083213,1.0226070192300594,1.002651795900418,1.0366140093593568,1.0179613211091616,1.0086434817589043,0.8380593314885623,0.9737258200168207,1.0439182177340556,1.0121710456962778,1.0178550673233895,1.0517179008962143,1.0094397035642186,1.0739178105013383,1.0166888362524367,1.046839814400458,1.1803067388266693,1.3767024768121197,1.3066290957284172,0.9131362889983579,1.1924483044164553,1.0940542821729617,1.1830808292232342,0.9150582055713206,1.371356253836342,1.350170586407415,1.3778534688544417,0.931545959906739,0.8862111918373831,0.838983506708522,0.8686041078787995,0.9270258620689654,0.7495614580741476,0.9647333168482716,0.8874187773037907,1.0157695518088117,0.8395589453355081,0.8758121960935066,0.8436705853099363,0.9952353297110926,9.5,0.292625242322212,5.555555555555557,4.104166666666667,2.802777777777778,1.785277777777778,1.3276190476190475,1.0209041950113378,0.6757684555303602,0.41780864197530876,9596.551700956581,10541.464225628562,3981.0013000321496,3708.02205556512,20.29330905816629,0.4774832310389089,10.603594280601893,0.9138141766976753,0.0,0.46153846153846156,1.8501533962636043,3.9266889928679394,4.98602160871747,5.577210272515034,5.577210272515034,5.577210272515034,0.21590909090909088,0.006805238193539815,0.0854700854700855,0.05780516431924882,0.04121732026143791,0.0270496632996633,0.020744047619047617,0.017910599912479612,0.012067293848756433,0.008889545573942736,0.4938680494072927,31.425619834710744,13.329230769230769,7.394878892733564,224.50788986007015,0.0,4.6259103019102605,295.84501033319765,,249.1794655446416,242.80947966931268,238.2748036509659,248.85496736342247,365.9110882296366,246.45123638567264,249.74213927852864,321.1768501780855,0.030330412947219134,-0.043264765574622804,-0.7016746570248091,0.13505673539670615,0.2371622118878986,-0.17153891023275605,0.029194679030313857,-0.07071021696447316,-0.03292006652086247,-0.024463472829940824,-0.05335737335120983,-0.011645027326476445,0.06824108346261758,0.23955866592813924,0.15693284103844748,-0.0630986255124187,0.14581921769032988,0.11488709239359857,0.07082150730673238,-0.022086742392034214,0.2295667866384622,0.23403572189786928,0.24700051561268907,-0.05498293316752871,0.0003579499277730966,0.027314146098996375,0.06216309810388026,-0.09652825507518485,-0.03419231023405313,0.07398343430558041,-6.630494195074164e-05,0.004308885483666936,0.02462697805718524,0.01999824776725018,0.025642463696132996,-0.0036642233405189085,-0.10054594576986194,-0.10225514655379568,-0.12397726410266156,-0.1463437424644321,-0.15714877568728025,-0.11336061942245468,-0.09522049156367857,-0.1163940396991259,-0.09921285645260604,-0.08191369069492485,-0.11198834325686188,-0.10007137768026399,-0.10535027754080016,-0.06230055926117886,0.01975617041824086,-0.0017161186848436184,-0.1135908697253935,-0.011729102999076108,-0.1043991680917451,0.003027324493517642,-0.06913145599123668,-0.03281225245553598,-0.04558029362279071,-0.051907662463861415,-0.010982904493170709,-0.04451918729199603,0.15974414227189573,-0.011315849835614337,-0.05685210696346822,-0.07781604804742243,-0.011342703082180473,-0.07861411023138842,-0.04041487920107972,-0.1159722870636242,-0.05735721190816999,-0.04554047033726609,-0.1097408160824603,-0.22035767669897172,-0.27517197617585537,0.03782156540777231,-0.09060270592990173,-0.06059751450591975,-0.11037709341703676,0.039833656282175445,-0.2163602151692511,-0.17545939481271006,-0.22134293841321032,0.03438319803054218,0.16817085516912822,0.31340316270595026,0.13476310657940505,0.012351097178683391,0.32560753089491573,0.07596641508368003,0.16823510727581859,-0.046224172045749815,0.3095578600453596,0.3226406743966713,0.31890321633164986,-0.031056793177098245,15.291226049694071,29.152428180810112,10.513627230870327,19.782958592759265,40.679719769637664,47.28611499693878,48.86654063273328,48.86654063273328,48.86654063273328,81.69737306096681,54.888564219447595,12.84640754647627,5.3755229688287445,8.586878326214215,26.80880884151923,16964.94166977375,16206.480593502218,2201.6765787677414,242.0,65.0,85.0,113.0,142.0,159.0,185.0,212.0,225.0,566.2064798240008,44.0,5.389071729816501,6.251903883165888,7.1569563646156364,8.036249942132116,8.941807118363164,9.828278974938373,10.733544786612352,11.624100046145644,12.529014471883269,0.7313432835820896,1.037731343283582,1.1599310680861212,0.703997723479845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6543427562784877,1.0193737196371087,1.0408953049754868,0.6453675718699402,6.0,1.0,1.0,0.0,0.0,2.0,3.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,5.0,0.0,0.0,8.0,1.0,0.0,0.0,3.0,2.0,1.0,0.0,0.0,15.116608065707286,12.586597235060536,17.281618902859517,5.907179729351506,0.0,14.345615352810384,23.353882984440492,13.171245143024459,0.0,12.13273413692322,49.44583918878587,37.790859664660154,5.516700717616262,350.75085861370104,-1329.063194057616,-59.6814951541007,-19.83676409041218,-55.377633085734004,419.85490535152525,1590.9118619202693,29.542851370876352,23.744953162989095,36.99795027721556,0.5,0.7629006141553991,0.08740479234324627,0.0,0.10702048975426257,0.4414743421847301,0.2370993858446011,9.0,0.09090909090909091,0.30499937244146985,0.6473180445557569,0.8219499338322792,0.9194078915437368,0.9194078915437368,0.9194078915437368,3.6864000000000017,,3.2738095238095246,3.9223688839959587,3.639416037963498,3.441742672776563,-16.346997041426135,3.539750465915871,3.154562359329325,-5.846229530138187,133.48539999999994,31.54114960651774,0.0,29.651664755393057,0.0,49.86117271360483,26.1790256236503,64.21085266998521,0.0,0.0,4.48863636973214,0.0,5.855071922202427,2.3978952727983707,7.396948602621014,4.948759890378168,9.016391478941248,7.195187320178709,10.677038913891867,49.0,8.513281227312568,4.145827329125676,2.7022681265249098,0.0,0.0,1.104522561016135,-2.408368024357972,1.6042719965676868,69.52799999999999,0.0,38.67459305331578,0.0,0.0,0.0,0.0,0.0,-1.5511091900567338,77.71538156177013,11.006532002209806,26.74661242244592,0.0,74.67033536331805,4.794537184071822,11.63444168209179,43.20648485871038,41.32321609799295,0.0,11.16387793838399,0.0,47.167847473149614,43.84096467065868,51.03973105658946,591.6900206663953,,498.19524061309266,485.4228408944256,476.36763650003365,497.53784759320604,736.4189171584894,492.72548524804944,499.3265504390908,643.2743547762543,51.03973105658946,591.6900206663953,,495.17008369433495,481.83032761598497,473.0998446679665,494.3527965299619,748.1691735006993,489.4671185964738,496.4120978131963,648.1999298863088,4.856167888939025,446.50690433018315,,383.39474616885616,373.4749629842893,365.7078751438614,383.093579390382,556.0015138901665,379.14556316823104,384.1759356468142,494.18225130888834,1.2759932764147366,14.792250516659882,,12.454881015327317,12.13557102236064,11.909190912500842,12.43844618983015,18.410472928962236,12.318137131201237,12.48316376097727,16.081858869406357,2.4842531733846895,295.84501033319765,,249.1794655446416,242.80947966931268,238.2748036509659,248.85496736342247,365.9110882296366,246.45123638567264,249.74213927852864,321.1768501780855,68.29803921568627,0.0,0.0,0.0,68.27595689031408,0.0,0.0,69.73998543335762,-0.6538626074951899,2.558630661950016,0.0,0.0,-2.348759957031998,2.001272042804,-4.724726096102054,0.0,0.0,43.23962731528599,587.8956106007616,123.96027754966148,263.08816252215195,334.0634477840705,373.6730882585073,373.6730882585073,373.6730882585073,1512.0,164.49092731767297,182.7101533644648,91.97592977074393,103.33,103.33,1.0,8.695238691814831,6.459431618637297,4.342605192839351,6.234819063053458,,6.249362190479436,6.248775873576904,6.247523776010942,6.249788876801526,6.231044897883701,6.249166749801775,6.249190387820308,6.248669278821236,0.10856512982098379,0.15587047657633646,,0.1562340547619859,0.1562193968394226,0.15618809440027354,0.15624472192003816,0.15577612244709255,0.1562291687450444,0.1562297596955077,0.1562167319705309,2.854768803987101,3.216443920272428,,3.2187737701375037,3.218679945457386,3.218479550523644,3.2188420445858976,3.2158384002223293,3.2187424959485793,3.2187462785286853,3.2186628868098994,370.49000000000126,1175.0162698836984,296.18312388265304,,292.7317636929554,292.70914151371403,293.11132583761196,292.6060836485711,297.9120388182567,292.71882499311795,292.7922921340432,294.0851913708808,29.375406747092462,7.4045780970663255,,7.318294092323884,7.317728537842851,7.327783145940299,7.315152091214277,7.447800970456417,7.317970624827948,7.319807303351079,7.35212978427202,8.455331634311817,7.077272285917373,,7.065551068550523,7.065473786013373,7.066846849637807,7.065121641180034,7.083092632302723,7.065506867724391,7.065757818181733,7.07016385305197,69.88022888688177,47.523960551770365,2.558630661950016,0.6799343289082187,-4.112449099170866,4.865121376483156,-2.266789880721782,-1.5453034927675562,0.0,462.73068870947645,270.29063336347014,-1024.183758014833,-45.99090416781272,-15.286324746490047,-42.674323250618045,323.5426100929599,1225.9658507564097,22.765891550365303,18.297997772483725,28.510833738521153,5730.0,71.0,4.035943770513139,1.2917524564941265,0.3535533905932738,0.019090088708030313,0.8405180638854262,0.21405167416553245,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.02795084971874737,0.469747500816245,0.16630830563170756,0.8205365383075158,0.22133476183178427,28.60371904882606,21.256428290636567,19.013859007760406,12.91680543434523,18.53492520384398,10.142844049283996,14.884744485255906,7.55041724033612,12.538256250969647,5.6298546722831455,10.223741404107338,4.04378284115381,7.138830163583347,2.5201502401995914,5.376268365872822,1.6141333009536147,7.311307493881605,2.6265385721865226,11.780395571079254,3.767495579482797,18.12032994841919,4.997980070494343,127.4218146934479,58.129675498155734,38.46456447068184,32.75101597591831,32.75101597591831,32.75101597591831,218.0,259.0,73.21441099999998,42.66558900000003,0.44776119402985076,376.14,13.868055555555557,8.486111111111109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,15.0,16.0,67.0,0.0,0.0,71.0,16.0,3.0,9.0,62.0,19.0,44.0,52.0,0.0,0.0,0.0,26.0,0.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,5.0,2.0,4.0,40.0,14.0,0.0,6.0,3.0,0.0,5.0,4.0,0.0,0.0,5.0,2.0,3.0,4.02535169073515,7.149585639220252,4.622518824322705,5.152568789984922,5.707732994400551,6.176646592135073,6.370088251251305,6.701182652728294,7.015421337956263,6.952231837441203 +6167,COc1cc2c(c(OC)c1OC)-c1ccc(OC)c(=O)cc1[C@@H](NC(C)=O)CC2,0,23.14814814814815,6.322683333333331,3.240740740740741,8.333333333333334,161.78453541131898,91.31882068518523,1.4359323448374994,6.37589259259259,4.598251028806584,7.854905259259256,215.48378304196922,24.982142857142858,6.434892857142858,3.875,7.553571428571429,145.4004460327839,94.71113412500002,1.7413399239285716,6.573205357142858,3.3169642857142856,7.861644785714283,259.9425336437975,20.742268041237114,6.383546391752577,3.7010309278350517,6.195876288659794,156.06170258700035,77.62530602061857,1.4672646045817843,6.470021649484535,3.1228522336769755,7.90601055670103,216.9381373624375,22.764705882352942,6.448865546218487,3.899159663865546,6.773109243697479,151.0483705074121,85.45639763865546,1.6249328154688398,6.555960504201682,3.4040616246498603,7.916642789915966,239.12782663925367,19.993288590604028,6.275919463087247,3.3624161073825505,4.953020134228188,151.39696384636002,73.4654857248322,1.4929321582448993,6.385071140939598,3.103467561521253,7.773034442953018,213.523477007112,17.033333333333335,6.2953277777777785,2.95,3.772222222222222,156.41851776992323,60.59026788333334,1.33288002612295,6.375886666666666,3.0689814814814818,7.847061977777777,186.98399937052753,15.331550802139038,6.231005347593582,2.5454545454545454,3.641711229946524,158.60686665743148,53.41632771657755,1.2201724147552138,6.301212299465241,3.0193107546048727,7.805493711229947,167.35385823380054,13.546448087431694,6.035027322404371,2.1748633879781423,3.273224043715847,163.0604617562322,47.40944858469946,1.076040559513645,6.08920218579235,3.0935033394049793,7.653294491803278,143.36350440373786,12.36774193548387,6.069509677419354,1.961290322580645,2.664516129032258,165.8860329878765,42.09036016774193,0.9911144338464838,6.109186451612903,3.0629032258064517,7.700897961290323,129.59632039921388,7.735253772290808,0.15849783950617286,0.02981751738613669,0.6450617283950615,4.624142661179698,1.3728936110769963,36.60184186179698,0.2291151564525121,0.14624636488340184,1.535751028806584,0.1048679135802469,49.36440056140847,0.4347197726827357,-0.0014622244268077047,-0.010861710521332746,0.40024250440917114,1.7706986086615717,-0.19371453146007772,2.0113225796712766,-0.025188996790483142,0.0014257912012542787,-0.052827380952380924,-0.0042443170194004275,-1.1453786320774835,1.064669862684372,-0.015891539391625253,-0.0063735644981166295,0.15123456790123455,0.35485695699517783,0.3452461437255701,5.324596434690228,0.06843450442997312,-0.011799820400774878,0.015249140893470806,-0.013400757413771256,14.152454859501331,0.36994386231859006,0.008050853304284742,0.004776284148526178,0.023316734101047797,0.1243789696948741,0.24529752820101025,1.799135514953721,0.03476265967528808,0.006675732844578276,-0.030987394957983194,0.007656045959124291,5.473649043345375,-0.40142329752073724,-0.00027800356284693765,0.0016283215372017708,-0.1619645372441794,-0.6572025667228252,-0.2596317500876524,-2.0178827020902936,-0.042353087866514566,7.322248920564432e-05,-0.033417225950783,-0.0007147438064462828,-6.927773848298691,-1.4475994513031556,-0.02913481481481477,-0.0019937394360108334,-0.1021604938271605,-1.2173525377229082,-0.11597134392805039,-6.7853828903978055,-0.01833690021546733,-0.02801216735253764,-0.22361111111111112,-0.018042775308642043,-6.341825988737601,-1.481738224657615,-0.020291273849607157,-0.0018172313995505824,-0.09713144517066084,-0.4248952854617342,-0.22571721206298004,-7.058293646308766,-0.04377599871791109,-0.02004513691746802,-0.20539958407605466,-0.012779513501023344,-10.252992717961869,0.8342665677213341,0.02437608277676579,0.0017697063465113242,-0.05398704715644603,0.6468551125503159,-0.09846079088993073,3.8229068732768883,-0.012318482803090034,0.022935298747441973,0.27326199149969643,0.014207034810767112,0.05969688572616798,0.273826275498916,0.019069221425726778,-0.0015723915539813675,-0.09966148944643569,0.19831850966856934,-0.10376249326035411,1.1481375837227306,-0.021022220699023972,0.017332034160803513,0.13024193548387097,0.013175823098367215,-2.7646107296131106,,,0.4620689655172414,1.2413793103448276,0.603448275862069,0.08620689655172414,0.6379310344827587,-0.034482758620689655,0.9509914605792877,0.016261824030940605,0.025158375755078538,1.0985744712618575,0.25759371764867833,0.22318630529876365,2.0495659318411454,0.480780022947442,2.021691884598612,1.569406247748629,0.0689344471836033,0.38335118966637977,0.0,0.4522856368499831,7.392003472592605,1250.0,341.42489999999987,175.0,450.0,8736.364912211226,4931.216317000002,77.54034662122497,344.29819999999984,248.30555555555554,424.16488399999986,11636.124284266338,1399.0,360.35400000000004,217.0,423.0,8142.424977835898,5303.8235110000005,97.51503574000002,368.09950000000003,185.75,440.25210799999985,14556.78188405266,2012.0,619.204,359.0,601.0,15137.985150939036,7529.654684000001,142.32466664443308,627.5920999999998,302.91666666666663,766.883024,21042.999324156437,2709.0,767.415,464.0,806.0,17974.75609038204,10169.311319,193.36700504079195,780.1593000000001,405.08333333333337,942.0804919999999,28456.211370071185,2979.0,935.1119999999997,501.0,738.0,22558.147613107645,10946.357372999999,222.44689157849,951.3756000000001,462.4166666666667,1158.1821319999997,31814.998074059687,3066.0,1133.159,531.0,679.0,28155.33319858618,10906.248219000001,239.918404702131,1147.6596,552.4166666666667,1412.4711559999998,33657.119886694956,2867.0,1165.1979999999999,476.0,681.0,29659.484064939687,9988.853283000002,228.17224155922497,1178.3267,564.6111111111112,1459.627324,31295.1714897207,2479.0,1104.4099999999999,398.0,599.0,29840.064501390494,8675.929091000002,196.91542239099704,1114.324,566.1111111111112,1400.552892,26235.52130588403,1917.0,940.774,304.0,413.0,25712.335113120855,6524.005825999999,153.622737246205,946.9238999999999,474.75,1193.6391840000001,20087.429661878152,417.70370370370364,8.558883333333334,1.6101459388513812,34.83333333333332,249.70370370370367,74.1362549981578,1976.4994605370366,12.372218448435653,7.8973037037037,82.93055555555554,5.662867333333333,2665.6776303160577,24.344307270233198,-0.08188456790123146,-0.6082557891946337,22.413580246913583,99.15912208504801,-10.848013761764353,112.63406446159149,-1.410583820267056,0.07984430727023961,-2.9583333333333317,-0.23768175308642392,-64.14120339633908,103.27297668038409,-1.5414793209876496,-0.6182357563173131,14.66975308641975,34.42112482853225,33.4888759413803,516.4858541649521,6.638146929707393,-1.1445825788751631,1.479166666666668,-1.2998734691358118,1372.7881213716291,44.023319615912214,0.9580515432098842,0.5683778136746152,2.774691358024688,14.801097393690018,29.19040585592022,214.09712627949278,4.136756501359281,0.7944122085048149,-3.6875,0.9110694691357906,651.3642361580996,-59.81207133058985,-0.04142253086419371,0.24261990904306385,-24.13271604938273,-97.92318244170094,-38.68513076306021,-300.6645226114538,-6.310610092110671,0.010910150891641004,-4.979166666666667,-0.10649682716049613,-1032.238303396505,-260.567901234568,-5.244266666666658,-0.35887309848195004,-18.38888888888889,-219.12345679012347,-20.87484190704907,-1221.368920271605,-3.3006420387841193,-5.042190123456775,-40.25,-3.2476995555555677,-1141.5286779727683,-277.085048010974,-3.7944682098765385,-0.3398222717159589,-18.16358024691358,-79.4554183813443,-42.20911865577727,-1319.9009118597394,-8.186111760249373,-3.74844060356652,-38.40972222222222,-2.389769024691365,-1917.3096382588694,152.67078189300415,4.4608231481481395,0.3238562614115723,-9.879629629629624,118.37448559670781,-18.018324732857323,699.5919578096706,-2.2542823529654763,4.197159670781881,50.00694444444444,2.5998873703703813,10.92453008788874,42.44307270233198,2.9557293209876505,-0.24372069086711196,-15.447530864197532,30.739368998628247,-16.083186455354888,177.96132547702325,-3.2584442083487155,2.6864652949245444,20.1875,2.0422525802469185,-428.5146630900322,0.7285871570392382,0.5948432638311862,0.449761956950833,0.2987830362708392,0.2758867851942716,0.15342149479174502,0.16843443601028635,0.0822261406004991,0.10734485824417393,0.04490772911759231,0.06660491305915581,0.024761603293043163,0.04096846246609639,0.013417987009422807,0.02677932367464294,0.007356639278451862,8.024844380098632,5.676366762968522,3.54741553585985,2.1753379430205406,0.465846906772842,-0.5277422638461363,3.293947188593615,0.9725362502263758,6.024286384219426,0.9952717041284443,14.54029066022168,10.93686369804436,16.013197386061993,11.687967963258373,2.0157227480072515,0.7503777828717547,3.4930697500339685,2.225110670910451,7.00936539295848,1.2475775492610697,3.7059922801677447,2.421145893330142,20.92105493335533,14.70178007310274,0.25015509184602375,0.5503869235156792,0.7252761963148456,0.7746589123642281,0.7993502703889193,0.8734243444629936,1.967244310730867,1001.3949196223746,0.0,1.0,1.0,0.0,9.0,3.0,4.0,0.0,0.0,4.253956951087326,2.4525659610693933,1.4032303242743946,1.1069340279780997,0.9587858798299527,0.5143414353855071,306.96219615693303,1923.5224257195346,74.85739510442635,35.620785661472866,68.40466587487195,,11.0,505.0,0.0,9.589074368143644,23.127322783683912,35.65363023740073,16.690354475090988,20.099901809429767,27.39575969229421,12.13273413692322,5.316788604006331,18.947451815200196,13.4,36.0,17.5,2.5,18.5,0.0,0.037931034482758606,-1.0,0.16764837126282944,0.05589225589225644,-0.111756115370573,0.019080459770114855,0.18435573122529614,0.0,0.6074074074074074,0.8724137931034479,0.43975903614457795,0.551515151515151,0.853333333333333,27.578752356799345,0.47159289689727757,0.7295928968972776,31.85865966659387,7.470217811811672,6.472402853664146,59.437412023393215,13.942620665475818,0.5296442687747038,0.236318407960199,0.0,0.4104477611940298,0.36363636363636365,0.2555368283968669,-0.7829054177147486,-0.07039582818179134,-0.01449824847619905,-0.04893158860717179,0.7444631716031332,2.2808620346183486,0.04883628869960594,0.04223818582626572,0.06002268512153549,-6.054065613747867,0.7681025637777723,0.7500927399018172,1.3451241055223768,0.584159261790841,0.45103455947789983,1.3347355835470625,0.7760974233344088,1.2440546865353428,0.7218562272677086,0.5974023255257555,0.8003497012711395,1.0469544943308795,0.815590703915844,1.1256915179122688,1.4278976875673752,1.003896808563114,0.961696489462884,0.8135131049764572,0.807371629335767,0.7266097238563863,1.0920392310445066,0.7062554926129214,1.1735114088870429,0.6901355149407415,0.8391417215937625,0.8375138337684987,0.8588708861214174,1.3297414659643767,0.9488893154413948,0.9669699429958362,0.8408920604667219,0.9240581647823063,0.8294954805929816,0.9460276490432047,0.8317609416383204,0.883794105720797,0.9311937715645238,0.7962902523258504,0.8725609288658428,1.4806846279824033,1.0519984908785756,1.2939278594726342,0.9393568830689765,1.2574248056029873,0.7923257288202223,0.7598414709125428,0.8064832878723883,1.151961185233389,1.1412528817166163,1.1925764588968313,1.13817673938604,1.2129984051036689,1.2611280035597747,1.1123492145359795,1.1392255629131172,1.0957339632190153,1.1899952491989767,1.1052885241630848,1.2015072733275323,1.1054841358885652,1.164688385792983,1.1448218038588938,1.0863274470646571,1.0984315431261678,1.0788508305347437,1.1587643424094654,1.1652662502183087,1.1825574389109215,1.147592516514934,1.1249085374318122,1.1516011105846897,1.18131859407015,0.8940829236668518,0.7994214811422239,0.8283448786515264,0.9727821789944314,0.820010115206365,0.9984135448826713,0.8978225305594466,1.0136795629689834,0.8057543938047704,0.7891118548393741,0.8064554336750382,0.9889547446692695,0.9954270089068641,0.9119043076856005,1.0102789788073991,0.9816329680506255,0.9428077243279972,0.9972662749431878,0.9977878671153406,1.011525461521804,0.9194796850949476,1.004331689185904,0.8876918331251094,1.0209171591309638,6.0,0.01652892561983471,3.7777777777777795,2.8125,2.790555555555556,1.5527777777777776,1.268208616780045,0.7501062925170068,0.5195578231292516,0.1803163580246914,6194.534073059882,6934.923752289402,2801.851851225906,2552.51985272637,12.610013977942199,0.41199489388125343,7.41475260725878,0.7006655037414791,1.0,0.36363636363636365,1.5009305510761426,3.302321541094075,4.351657177889074,4.6479534741853685,4.796101622333516,5.240546066777961,0.19354838709677413,0.002066115702479339,0.08585858585858588,0.04766949152542372,0.04574681238615664,0.02631826741996234,0.024866835623138146,0.017444332384116436,0.017318594104308388,0.009490334632878492,0.47032775673382365,23.658688865764827,10.543388429752065,4.924037460978147,169.10472006325654,1.0,4.285089905791172,139.38187793370037,,106.690336806066,105.08796815791355,107.67266298756032,106.71584734668905,154.87297271602728,106.18615499276727,106.76926856268842,131.80907432998328,0.05619980746332938,-0.009225516457281153,-0.3642727991292385,0.6204716336295286,0.38292473619527917,-0.14109944856405454,0.05495140346394935,-0.10994033384999555,0.009749241988961726,-0.034398401799172175,-0.040472980480846465,-0.023202522851516284,0.13763864690493124,-0.10026344485917324,-0.2137523528729439,0.2344497607655503,0.07674005388593436,0.2514733413718302,0.1454734560843987,0.29869042925650924,-0.0806845381092552,0.009929435570895076,-0.12778701278839447,0.286693542280452,0.047825691723754594,0.05079471953288797,0.1601838304199952,0.03614651602267698,0.026897736252614424,0.1786719132654287,0.04915423441658987,0.15172570952325107,0.04564717112730052,-0.020177355819232738,0.07300656318737322,0.1108825181931714,-0.0518952977287848,-0.0017539896046097872,0.05460956108837015,-0.25108378022542654,-0.14212419790594472,-0.18911279649992588,-0.055130632761857014,-0.18485502453126862,0.0005006790374859749,-0.021759533494664935,-0.006815657735951305,-0.1403394707422945,-0.18714311048058177,-0.183818371944938,-0.06686470272464064,-0.15837320574162686,-0.2632601601898547,-0.0844722001707577,-0.18538364588367945,-0.08003355386603574,-0.19154094787156561,-0.1456037514654162,-0.1720523913621622,-0.12846962419504065,-0.19155651104369598,-0.12802240026001674,-0.060945093986781176,-0.15057697720236424,-0.09188628392216086,-0.16440983499508843,-0.19283984868739165,-0.19106548600150944,-0.13706417204591342,-0.13374536641897516,-0.1218629518288663,-0.20770013615798535,0.10785251425232359,0.15379441671074917,0.05935123047280015,-0.08369283865401206,0.139886495713195,-0.07171771366369098,0.10444575132889779,-0.05376546446696224,0.1568264535376838,0.17793378378007366,0.13547551701689592,0.0012093104554547576,0.03539977918757046,0.12031218523318804,-0.05273381863482816,-0.1544991511035654,0.04288762786958976,-0.07557941301726605,0.03136830075540801,-0.09175395039123557,0.11851258097677751,0.08480667311359745,0.1256420829645364,-0.056004138572977945,4.806721123065109,22.680324221567155,18.187165294089947,13.985450601447702,31.615878854328763,37.304016583625526,39.82357213918108,41.602979546588486,42.050979546588486,58.62906465335975,45.51278118471024,1.9990989683244957,11.117184500325013,0.0,13.11628346864951,5954.7064816308575,4001.7669345723866,2467.772832307317,232.0,44.0,62.0,86.0,115.0,147.0,175.0,201.0,223.0,399.1681875200007,31.0,5.017279836814924,5.8944028342648505,6.803505257608338,7.707512194600341,8.62604759632832,9.54072267395999,10.463360450273136,11.383283641013712,12.30799274975378,0.6543209876543207,0.9931111111111114,1.1247810235303908,0.6158598445252347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6578157573741408,0.9787944807552649,1.0137978473739584,0.6262889951828485,4.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,2.0,1.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,24.264240419206526,0.0,17.248535499851716,17.08548195453595,0.0,9.589074368143644,0.0,0.0,0.0,6.06636706846161,47.731098926327846,12.487188691387619,34.48103099425809,160.43346228654235,-491.5308200186178,-44.196550910435455,-9.102422592937367,-30.720676251163614,467.3956584434754,1431.9916057009168,30.660844193990894,26.5183630685355,37.683989623708335,0.45454545454545453,0.78066045873259,0.1608163304830993,59.30153980869913,0.07187741788101655,91.69679209665301,0.21933954126741007,6.0,0.16129032258064516,0.26080971183396534,0.5738290348599541,0.7561672015748578,0.8076532290923213,0.833396242851053,0.9106252841272487,2.871600000000001,,1.6428571428571428,1.8999534667287108,1.264054700727455,1.63809365307435,-7.0119474042167305,1.7135097919216646,1.6312317944257138,-2.713291496591583,109.23470000000006,23.741988999272017,0.0,5.316788604006331,0.0,25.807221274690605,28.439190165110134,45.6156988332128,0.0,34.12495031652961,4.143134726391533,0.0,5.476463551931511,0.0,7.009408932708637,3.367295829986474,8.643120748014027,6.028278520230698,10.335691957833914,35.333333333333314,6.901973497732427,0.0,0.0,0.0,0.0,0.0,5.039306972789117,0.0,53.628000000000014,0.0,24.480584714257603,0.0,0.0,0.0,0.0,0.0,-0.16671081086755657,60.73817527064111,29.693030811107068,0.0,22.99804733313562,34.34636989446164,11.21535880699783,0.0,30.513302635158585,29.060005457918262,0.0,11.126902983393991,0.0,33.256431604362675,35.5220508982036,36.86846878098781,278.76375586740073,,213.26737311952115,210.0449050422596,215.25814978886353,213.31872271730398,311.5990366689384,212.2541368964365,213.42603838093373,264.1795193144338,36.86846878098781,278.76375586740073,,211.73781646927483,208.27598284909834,214.0812712743933,211.7936010403036,316.75789283627125,210.65880019361282,211.9073053309511,266.3314401565581,4.997256799254723,187.4897149104642,,144.6936925155553,142.88880883614348,145.62948090313196,144.7218763346914,198.40353620047526,144.1169094362485,144.7835758955352,172.85545898998902,1.2713265096892348,9.612543305772439,,7.354047348949005,7.242927760077917,7.422694820305639,7.35581802473462,10.744794367894428,7.3191081688426385,7.359518564859784,9.109638597049441,2.5268306431593635,139.38187793370037,,106.690336806066,105.08796815791355,107.67266298756032,106.71584734668905,154.87297271602728,106.18615499276727,106.76926856268842,131.80907432998328,52.854901960784304,0.0,7.606062252775816,0.0,0.0,0.0,0.0,54.74508375819375,1.2685517447719827,2.9640846245905768,21.99559367922508,0.0,-0.3320351473922909,0.0,0.0,0.0,0.0,33.81960573987382,490.1213693947742,81.0502497581117,178.32536321908006,234.98948760600996,250.9894876060099,258.98948760600985,282.9894876060099,1345.0,137.7441072346174,137.70775133524347,74.0033942670968,83.09,83.09,0.8333333333333334,9.200068262795421,5.954196310386875,4.529773125722405,5.289986419639716,,5.290590880779013,5.293913769953909,5.288192737217617,5.290538183953825,5.202535538861717,5.291633356362206,5.290427875657271,5.242084248628232,0.1561990733007726,0.18241332481516262,,0.1824341683027246,0.18254875068806584,0.1823514736971592,0.18243235117082157,0.17939777720212818,0.1824701157366278,0.18242854743645764,0.18076152581476662,2.5753825926112093,2.7305264156834843,,2.7306406743147087,2.7312685524051266,2.7301872869142145,2.7306307137850023,2.7138568473670444,2.730837698222576,2.730609863458872,2.721429913612686,299.0600000000007,255.52178901940434,184.6180011165092,,184.1055787336771,183.64308996173543,184.61683698642622,184.1135418114452,195.79288554317492,183.97102131151078,184.12714047009538,190.73219399310102,8.811096173082909,6.366137969534799,,6.348468232195763,6.3325203435081185,6.366097827118145,6.3487428210843175,6.751478811833618,6.343828321086579,6.3492117403481165,6.576972206658656,6.608018422919453,6.282999568480921,,6.2802201275082306,6.277704882423001,6.2829932628457925,6.280263379351087,6.341768131102723,6.279488989325885,6.28033723679982,6.315581055450455,21.99559367922508,24.480584714257603,2.9640846245905768,3.0102698780129336,1.6049147560258685,6.569938350340136,1.2685517447719827,1.4642636159402032,6.141798636835613,372.84520775410584,100.72479956303233,-308.5973625439933,-27.747881697398153,-5.714765973036914,-19.287335158999582,293.4446052735948,899.0460306999727,19.249770851153368,16.649000568518016,23.659106071051912,1944.0,59.0,1.9660593825889738,0.8030271027425365,0.0,0.0,0.5113224026776819,0.14616820307250963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.045360921162651446,0.018042195912175804,0.22584792488476152,0.07394627046545624,21.129027554137906,17.250454651104402,13.942620665475822,9.262274124396015,12.139018548547952,6.750545770836781,10.442935032637754,5.098020717230944,9.231657808998959,3.862064704112939,7.6595650018029175,2.8475843786999637,6.022363982516169,1.9724440903851528,4.686381643062514,1.2874118737290758,4.873667904752082,1.8274864877341008,8.65404615476628,2.8136321567320177,14.397051639179361,4.075615066535214,100.17816794321291,52.387059520617235,38.04834562120288,31.871903950209276,27.754276169546877,24.74775949999558,150.0,181.0,59.32182499999998,34.330175000000004,0.2962962962962963,149.07,10.972222222222221,6.7222222222222205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,13.0,13.0,54.0,0.0,0.0,56.0,13.0,2.0,8.0,48.0,15.0,31.0,41.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,6.0,1.0,0.0,29.0,7.0,0.0,1.0,6.0,0.0,3.0,5.0,0.0,0.0,0.0,0.0,2.0,3.7013019741124933,8.064516087238506,4.3208159036289855,4.929967391028801,5.532648107252811,6.1163749007605235,6.614704654944196,7.013437617849319,7.376557014367726,7.733026612469123 +9926791,C[C@@H]1CCN(C(=O)CC#N)C[C@@H]1N(C)c1ncnc2[nH]ccc12,0,22.186046511627907,6.176730232558138,3.255813953488372,7.441860465116279,166.97568373459256,87.48119793023255,1.4283223743483724,6.235423255813952,4.352713178294574,7.664629488372092,211.0283984395893,24.68888888888889,6.4117555555555565,3.977777777777778,7.088888888888889,150.72464496325327,93.56262331111118,1.7286456486666677,6.5411888888888905,3.159259259259259,7.789173955555551,253.36693915501428,20.17283950617284,6.3103543209876545,3.6419753086419755,5.382716049382716,161.05699529783075,74.87203371604939,1.474081137018395,6.394961728395063,2.741769547325103,7.756175358024692,209.57958096113057,17.2803738317757,6.18091495327103,3.1682242990654204,4.046728971962617,161.16100506499237,62.29314494392521,1.3452716379428602,6.263117757009345,2.759345794392524,7.676087887850469,185.48300239566902,14.801587301587302,6.094869841269842,2.6904761904761907,3.142857142857143,164.58392214616921,51.93090253174602,1.233919305043865,6.160027777777777,2.8154761904761894,7.629117111111112,164.17369223820617,12.441176470588236,5.862646323529413,2.4411764705882355,2.264705882352941,165.20475261811623,42.689702845588215,1.1573893591364999,5.929486764705883,2.3535539215686274,7.447081500000002,148.01489265326018,12.752,5.915327999999999,2.44,2.392,166.09902799610458,43.80602067999999,1.147758845490552,5.98004,2.5828888888888892,7.490021344,148.4053157765779,13.056603773584905,6.061100943396224,2.2830188679245285,2.7547169811320753,166.78097481378475,44.459809584905635,1.1354517776667739,6.114060377358491,2.968815513626835,7.625208301886791,147.18953914841094,11.39080459770115,5.867586206896551,2.103448275862069,2.5057471264367814,170.19175554766412,38.5644634137931,1.0225788759284138,5.915597701149425,2.7825670498084296,7.471107080459771,129.771253739762,7.282855597620333,0.1091010275824769,0.018435593840613867,0.6057328285559762,3.980530016224986,1.610253356649831,34.7070550805841,0.2102323387726014,0.10346522444564625,1.4442341205456406,0.058065488372093015,47.97365547013168,0.47269995793521974,-1.6583138032564498e-05,-0.00876122058410823,0.2609338381106906,1.454612102638062,-0.6469596833058037,2.1974622982272667,-0.03042610675477194,0.002852346613785205,0.0734804932930046,-0.0024824888888888897,-2.5441408854241065,0.5224846263245395,0.009094177700325166,0.0009342898665128567,-0.01859530343395496,0.276719481334589,0.21149319051837515,2.4914301694876757,0.020273107234739966,0.008259064960038452,0.056730884080001716,0.005241975308641973,4.144487164427064,-0.4680327330256821,-0.009491573116056662,-0.0018909282363317975,-0.09997321108151416,-0.2641640088352885,-0.29403042660372597,-2.246739827812964,-0.026661732308433182,-0.008073787801438519,-0.02224252451579171,-0.005844261682242988,-4.6947501905274045,-0.6274476980263892,-0.0009017658622850592,0.0012930652738675395,-0.04703958381621983,-0.17322104612531877,0.09863058994972844,-3.0073642107059153,-0.009513726848012813,-0.0027397722492638584,0.10687637533229744,0.0004891111111111124,-3.670217864967516,-0.047903477237298334,0.0005102754270989033,6.185499157741635e-05,-0.03186141952724843,-0.22471606273661443,0.012852371460675834,-0.2254875244965475,0.0018737720959608425,0.0001449328730951611,-0.050704518782454445,0.0006031764705882348,-0.014472459751754067,-0.26369280692266084,-0.00955152060573283,-0.0016574458910794793,-0.04108166576527853,-0.5020183883180096,-0.09719414194972852,-1.241609357607354,-0.008816270475716384,-0.007902247701460247,-0.11380001201850849,-0.005384224,-1.2806916317120514,-0.9936936845005463,-0.006058092084451561,0.003023751214532472,-0.012051389328244736,-0.4008898231578519,0.03232031888751203,-4.73171203056216,-0.013858569387977885,-0.008058818127085508,-0.20968314789681775,-0.002170792452830186,-5.49164899684955,0.4244419164133457,-0.004780097349918883,-0.00290719985586945,0.0007894916792550122,0.0007584093296779365,-0.08934347889786237,2.03502366948273,0.0009558599746362334,-0.001961295015012781,0.022627087093434223,-0.0038337471264367805,2.4713520837196934,,,0.46666666666666673,1.2608695652173914,0.5652173913043478,0.021739130434782608,0.6956521739130435,-0.13043478260869565,0.8590827624738221,0.013079189540995706,0.024296580845343533,0.8597013662733773,0.23749595875468216,0.24569500659010893,1.7187841287471994,0.48319096534479106,2.0316230348327333,1.4237604566190893,0.5312925429841826,0.07657003522946115,0.0,0.6078625782136436,7.259764168837223,954.0,265.59939999999995,140.0,320.0,7179.95440058748,3761.6915109999995,61.41786209698001,268.12319999999994,187.16666666666669,329.57906799999995,9074.22113290234,1111.0,288.52900000000005,179.0,319.0,6782.6090233463965,4210.318049000003,77.78905419000004,294.35350000000005,142.16666666666666,350.5128279999998,11401.512261975642,1634.0,511.13870000000003,295.0,436.0,13045.61661912429,6064.634731,119.40057209849,517.9919000000001,222.08333333333334,628.250204,16975.946057851575,1849.0,661.3579000000002,339.0,433.0,17244.227541954184,6665.366508999998,143.94406525988603,670.1536,295.25000000000006,821.3414040000001,19846.681256336586,1865.0,767.9536000000002,339.0,396.0,20737.574190417323,6543.293718999998,155.473832435527,776.1634999999999,354.7499999999999,961.2687560000002,20685.885222013978,1692.0,797.3199000000002,332.0,308.0,22467.84635606381,5805.799586999998,157.40495284256397,806.4102000000001,320.0833333333333,1012.8030840000002,20130.025400843384,1594.0,739.4159999999998,305.0,299.0,20762.378499513074,5475.752584999998,143.46985568631902,747.505,322.86111111111114,936.252668,18550.66447207224,1384.0,642.4766999999997,242.0,292.0,17678.783330261183,4712.7398159999975,120.35788843267804,648.0904,314.6944444444445,808.2720799999998,15602.091149731561,991.0,510.4799999999999,183.0,218.0,14806.682732646777,3355.1083169999997,88.964362205772,514.6569999999999,242.08333333333337,649.9863160000001,11290.099075359292,313.1627906976743,4.691344186046507,0.7927305351463962,26.046511627906977,171.1627906976744,69.24089433594273,1492.4033684651163,9.03999056722186,4.449004651162789,62.102067183462545,2.4968159999999995,2062.867185215662,21.271498107084888,-0.0007462412114654024,-0.39425492628487036,11.742022714981076,65.45754461871279,-29.113185748761165,98.885803420227,-1.3691748039647373,0.12835559762033422,3.3066221981852073,-0.11171200000000003,-114.4863398440848,42.3212547322877,0.7366283937263385,0.07567747918754139,-1.5062195781503516,22.41427798810171,17.130948431988386,201.80584372850174,1.6421216860139372,0.6689842617631145,4.595201610480139,0.4245999999999998,335.7034603185922,-50.07950243374798,-1.0155983234180628,-0.20232932128750233,-10.697133585722016,-28.26554894537587,-31.46125564659868,-240.40116157598717,-2.8528053570023504,-0.8638952947539216,-2.379950123189713,-0.6253359999999997,-502.33827038643227,-79.05840995132505,-0.11362249864791746,0.16292622450730998,-5.926987560843699,-21.825851811790166,12.427454333665784,-378.92789054894536,-1.1987295828496145,-0.34521130340724615,13.466423291869477,0.061628000000000155,-462.447450985907,-6.514872904272574,0.06939745808545085,0.008412278854528624,-4.333153055705786,-30.561384532179563,1.7479225186519134,-30.666303331530457,0.2548330050506746,0.01971087074094191,-6.895814554413804,0.08203199999999994,-1.9682545262385531,-32.961600865332606,-1.1939400757166037,-0.20718073638493492,-5.135208220659816,-62.7522985397512,-12.149267743716065,-155.20116970091925,-1.102033809464548,-0.9877809626825309,-14.225001502313562,-0.673028,-160.0864539640064,-105.3315305570579,-0.6421577609518655,0.32051762874044204,-1.277447268793942,-42.4943212547323,3.4259538020762754,-501.5614752395889,-1.4690083551256559,-0.8542347214710637,-22.22641367706268,-0.23010399999999973,-582.1147936660523,36.92644672796108,-0.4158684694429428,-0.25292638746064217,0.06868577609518606,0.06598161168198047,-7.772882664114026,177.0470592449975,0.0831598177933523,-0.17063266630611196,1.9685565771287774,-0.3335359999999999,215.00763128361334,0.7129120324595233,0.5808475973329554,0.44453568811720773,0.3108557799166855,0.279684075738918,0.17303100111656172,0.17871354777336199,0.09721099231070914,0.11482654436260101,0.052514027446962194,0.07181478309608465,0.02956311485185779,0.047000315715119936,0.016191798520507,0.02926930815706384,0.008273773576950548,8.022025535507312,5.717094445595622,3.543810798395377,2.212526066978902,0.4179600360492149,-0.4240638620776037,3.252827417439787,0.9110288353295509,6.021986571651837,0.9936775023526006,14.564882007166988,10.981964074171804,16.01006480882236,11.73134708750558,1.9736146477374363,0.7518426824141706,3.48903618216063,2.2609133415672336,7.00827075532426,1.185467348460959,3.7019476719733375,2.4558748278819476,20.86224978724316,14.702707228803465,0.2748912686208792,0.6469288653473231,0.8641504291929346,0.8804690397586978,0.8804690397586978,0.8804690397586978,1.6521107098081376,748.3535718086016,1.0,4.0,3.0,0.0,1.0,3.0,1.0,1.0,0.0,3.859263648885446,1.738485755864267,0.5002273256820224,0.4072040698680688,0.4072040698680688,0.4072040698680688,235.05982517294882,1098.0029434216171,55.121540132275726,25.534952172595744,52.40296226860839,,11.0,426.0,0.0,4.794537184071822,18.369842181425476,12.462662452073968,29.816842241906137,0.0,11.22722980561502,25.38010393554415,26.775582493382725,5.261891554738487,10.733333333333334,29.0,13.0,0.5,16.0,0.0,0.03333333333333329,-3.0,0.14605843768634447,0.02447633184891962,-0.12158210583742485,0.022403381642511988,0.15690657439446343,0.0,0.5875968992248064,0.8376811594202896,0.44153846153846193,0.5631205673758868,0.8152777777777777,19.758903536897908,0.3008213594429012,0.5588213594429012,19.77313142428768,5.4624070513576894,5.650985151572505,39.53203496118559,11.113392202930195,0.5570934256055365,0.16149068322981366,0.0,0.3540372670807453,0.5,0.27616416301038477,-0.577500057759066,-0.056068515382300656,-0.013430233901373628,-0.052500005250824176,0.7238358369896151,1.51364765476057,0.04891051336143809,0.03520110825024581,0.04730148921126781,-2.881796784109087,0.7868112282786278,0.7650145724420071,1.5902875097246951,0.7525000000000001,0.4634963768115942,1.682490503097252,0.793282926195481,1.2537474440537038,0.7286348867162346,0.47696271177037597,0.793714020843613,1.0711332388298718,0.8585050965119287,0.8474464471798505,1.1951591007373612,1.3537037037037036,0.9042723429951691,1.0131962679241726,0.859747315961892,0.9074395134103135,0.8401471366278755,0.4879793559761104,0.8123244134099558,0.8849639673787225,1.0083734597761622,1.0360860887280767,1.2106193645838084,1.424123831775701,1.0377069788703779,1.2443224912943722,1.0096277367957034,1.1363644344753316,1.0210272850579454,0.8392374429072812,1.060061600997086,1.080122789301643,1.0590870835189865,1.0053763867283874,0.9196461692599083,1.1069940476190476,1.0039175724637681,0.9263254769406403,1.0592874853661154,1.03067832991689,1.0198947905079718,0.786936290316988,1.0089564736314836,1.0535767331128094,0.9748030988721053,0.837580400274966,0.7858107827092272,1.0433823529411765,0.9806196051790281,0.904339283372681,0.9770090675409778,0.9956278379743343,0.8606442551407306,0.7206471298028851,0.8084309470659478,1.012174347658666,1.0096218624684392,0.9675996942414484,0.9083756511545241,1.0062,1.0708402173913043,0.9897780786712069,1.010736232271683,1.0227223188459968,0.9709929161056142,0.9428456945513551,0.9394819001480283,1.0199629987631778,1.1380843157750202,1.1456403928349783,0.7880475097388742,0.8366745283018868,1.100739591878589,0.9068601547340678,1.1358574474305285,1.028464967391903,1.160165583131649,1.4041856276871392,1.1815990128045946,1.0800284972176462,0.9519120953410124,0.9972797929719637,1.038976667257724,0.7228448275862069,0.9857524362818593,0.9173882867170042,0.9515047453718208,0.9304848961713306,0.9868166181823319,0.8986102731603801,0.9817733106263445,0.9228996959365233,4.0,0.04061014182226304,3.333333333333335,1.75,1.2166666666666668,0.9027777777777779,0.4685714285714285,0.35852465986394555,0.13074766943814561,0.09063271604938271,4424.140848987416,5010.547124575844,2246.268726870995,2046.1575610118443,11.10600762274353,0.4764511073501541,5.814537992648122,0.9100412856164873,1.0,0.5333333333333333,1.5670011058166518,3.687778998837831,4.9260374290200755,5.019060684834029,5.019060684834029,5.019060684834029,0.16,0.006768356970377172,0.09523809523809527,0.0472972972972973,0.034761904761904765,0.02912186379928316,0.016157635467980297,0.014938527494331066,0.007691039378714448,0.008239337822671156,0.4202140582306547,17.8112,7.92,3.8194444444444446,134.47888314649555,1.0,4.066602406546801,105.36185340891103,,85.37908483120607,83.09249971544516,81.1185585816579,85.39857933652712,119.69080887435393,84.40575861052896,85.51717684759238,109.20849305356008,0.064905853425087,-0.00015199800038572664,-0.4752339772645208,0.4307738095238098,0.365431763285024,-0.40177508752524393,0.06331457085958803,-0.14472610128588473,0.027568167266516085,0.05087851910412089,-0.04275325944011184,-0.05303204145050161,0.07174172538794547,0.08335556412106437,0.050678588093788626,-0.030698853615520286,0.06951825013419227,0.13134156165237973,0.07178454535260864,0.09643191600826193,0.0798245497875203,0.03928094709365296,0.09027695203475342,0.08639089775027495,-0.06426500247768353,-0.08699801758403544,-0.10256942372889864,-0.1650450600801069,-0.06636402885006093,-0.1825988596076974,-0.06473438390541641,-0.12682031919585857,-0.07803383063920138,-0.015400913327950145,-0.10064948812265241,-0.0978610060984481,-0.08615407646300267,-0.008265420429732918,0.07013960521406687,-0.07765731292517006,-0.043517080745341635,0.06125159717408176,-0.08664993914704973,-0.04525339395240887,-0.02648012667003059,0.07400211213118195,0.008423439203280434,-0.07650486144948009,-0.006577567905225356,0.004677090934942398,0.0033551938772457086,-0.05259978991596638,-0.056453804347826105,0.007981583399655498,-0.006496878630958529,0.008912863296391405,0.0014007882732743617,-0.03510824045847771,0.010387865279337405,-0.00030167515087034795,-0.036207336996881036,-0.08754748527471186,-0.08990466514987454,-0.06782142857142857,-0.12611847826086953,-0.06035953382636827,-0.03577397606119391,-0.04193584358709217,-0.07637588130504237,-0.07879609711444441,-0.09272674958827565,-0.0266957274604477,-0.13644286518947799,-0.05552736045379441,0.1640170227590449,-0.01989555256064689,-0.10071267432321578,0.0200715736775455,-0.1363328585377209,-0.06592025503254312,-0.07788914749147502,-0.14518639666095007,-0.037385244035482795,-0.114472181513636,0.05827960073134387,-0.04381349521483912,-0.15769493952860086,0.001303366174055819,0.00019052973513240554,-0.055484112812994556,0.05863429394276576,0.004546683827125869,-0.018956079451053768,0.01566718773053608,-0.0660245394281283,0.05151477533869299,6.226624938095975,13.541363003705651,5.2324496401603104,14.464205032582338,35.946171597148755,38.915312838958506,39.00908028081897,39.00908028081897,39.00908028081897,46.72732980115286,32.746490502239055,12.2197284886362,1.7611108102776065,0.0,13.980839298913804,3677.0156925284264,3109.846598127806,1237.904241254676,84.0,35.0,48.0,62.0,74.0,79.0,85.0,89.0,83.0,312.1698592600006,25.0,4.795790545596741,5.659482215759621,6.543911845564792,7.427144133408616,8.318010277546872,9.207636720401869,10.101313295866047,10.993815621616541,11.88902355244558,0.6434108527131783,0.9853023255813954,1.1420165599289043,0.604827357867691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6608809358028132,0.9710898312813496,1.004369992716679,0.6204850822923521,3.0,2.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,1.0,14.783797982648164,24.213181696293308,0.0,5.907179729351506,0.0,4.794537184071822,9.967957041894417,5.261891554738487,0.0,6.923737199690624,18.405094737549014,26.334028366115415,17.49728635640503,145.00604717569536,-303.2290638529698,-29.440002996664568,-7.051838694255111,-27.56627853208816,380.0658723486442,794.7738795686473,25.68153713561116,18.483113478340634,24.83668373652023,0.45454545454545453,0.8453523894217336,0.16927506229837214,0.0,0.11302906287658533,69.38895760623119,0.15464761057826623,6.0,0.12,0.288780805333683,0.6796164886061278,0.9078136898409622,0.9249568371106094,0.9249568371106094,0.9249568371106094,1.5447799999999996,,1.1071428571428574,1.399720800372266,1.5246316986241886,1.104266649991819,-4.19138517343006,1.225826193390453,1.090072758891449,-2.3149422475185983,86.67070000000005,4.794537184071822,5.261891554738487,19.8518452936921,5.917906046161393,25.807221274690605,25.037094525352817,18.59053071483923,0.0,6.069221312792274,3.9318256327243257,0.0,5.25227342804663,2.3978952727983707,6.778784897685177,4.59511985013459,8.40178233990491,6.6052979209482015,10.075379913839543,27.666666666666668,5.3688064301452645,8.655951066963874,3.094351431930797,0.0,0.0,1.782778125253775,0.8635946029646429,0.0,42.368,0.0,12.034771877886957,0.0,0.0,0.0,0.0,0.0,-0.09048248929201264,49.106712076942884,4.899909730850478,5.817862777835028,0.0,51.93805064669392,4.794537184071822,17.249018913692154,19.765380445542643,18.59053071483923,0.0,11.033401435232523,0.0,26.007576388310714,28.417880239520965,29.648286088338114,210.72370681782212,,170.66189637048666,166.06328457868403,162.10454049387022,170.70113548609845,239.85176189777474,168.70492363902395,170.93956475962898,218.622238794591,29.648286088338114,210.72370681782218,,169.68952652522316,164.8778918757622,160.88403675997256,169.73106273149907,243.5730029221379,167.64369179776543,169.98043219910392,220.7319283546388,4.875212593891292,154.30306184588957,,127.11548109038512,123.5472176988124,120.41762805153405,127.14575559489631,180.37695022685472,125.59424588901392,127.33122521952922,164.1825405542413,1.289055916884266,9.16190029642705,,7.420082450890725,7.220142807768871,7.048023499733488,7.421788499395585,10.428337473816294,7.3349966799575625,7.432154989549086,9.50531473019961,2.455327990932234,105.36185340891103,,85.37908483120607,83.09249971544516,81.1185585816579,85.39857933652712,119.69080887435393,84.40575861052896,85.51717684759238,109.20849305356008,41.75686274509803,0.0,4.205347615898211,0.0,0.0,0.0,0.0,43.18790968681719,2.205729219156799,0.0,0.0,0.0,0.6060052910052904,3.924827806122449,0.0,8.738766579073216,1.9428857762240699,26.68085853857114,443.8708017881567,67.38104755011602,158.57449695002674,211.81960944786326,215.81960944786326,215.81960944786326,215.81960944786326,687.0,122.93612820820668,81.20111773618281,71.03835925608175,88.91,88.91,0.8333333333333334,8.118486444052536,5.643856189774724,4.209128209176803,4.723993889528113,,4.730078265787659,4.728662355657454,4.727250386536557,4.730089465393411,4.7367704034770615,4.729498397544997,4.730157818544014,4.736693713882096,0.1830055743120349,0.20539103867513533,,0.20565557677337648,0.20559401546336756,0.20553262550158943,0.20565606371275702,0.20594653928161136,0.20563036511065205,0.20565903558887016,0.20594320495139548,2.2701646729811213,2.3855637277740644,,2.386850871980203,2.3865514853710446,2.3862528427820346,2.3868532397195645,2.388264676940631,2.386728272784906,2.3868676903250408,2.3882484865388904,239.36999999999983,200.45713036610445,129.6236357293594,,128.79021792343823,128.8807646435269,129.01550409268845,128.78962569120006,128.4097048413005,128.82934992074462,128.78491269178966,128.36865574997037,8.715527407221932,5.635810249102582,,5.599574692323402,5.6035115062403005,5.609369743160367,5.599548943095654,5.5830306452739356,5.601276083510635,5.599344030077811,5.581245902172625,6.133509533184944,5.697544264680013,,5.691093985921785,5.691796794774483,5.692841706839952,5.691089387485588,5.688135094210895,5.691397782701935,5.691052792258121,5.687815370293465,0.0,27.709902182904074,9.713465521921961,0.8080791824050304,1.2130129073234237,4.074527707675254,4.272233995628657,3.533967860292265,2.0081439751826657,282.73842358985036,76.1386035331793,-159.2170666128474,-15.458118884260973,-3.7027224793685436,-14.474278782986124,199.56191713979524,417.3134465329159,13.484654000130961,9.70496387285851,13.041045204153622,1171.0,37.0,1.4054362343181035,0.8246345650060203,0.0,0.0,0.49480795262590543,0.21895378893628062,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.041666666666666664,0.2874574785652648,0.1066056175450452,0.47655187683640865,0.16334148827718947,16.396976746569035,13.359494738657975,11.113392202930193,7.771394497917138,9.788942650862131,6.05608503907966,8.578250293121375,4.666127630914039,7.119245750481262,3.255869701711656,5.314293949110264,2.1876704990374765,3.7130249414944747,1.279152083120053,2.487891193350426,0.7032707540407965,3.886836958582369,1.9648719418104907,6.214498421329017,2.6685799422302114,9.393402561005637,3.5415466515276064,78.88129332997978,31.032721084159483,22.88758226509828,22.436184171200217,22.436184171200217,22.436184171200217,120.0,143.0,47.45785999999998,27.772139999999997,0.37209302325581395,119.07,7.638888888888888,5.166666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,9.0,10.0,43.0,0.0,0.0,45.0,10.0,1.0,5.0,39.0,12.0,25.0,33.0,1.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,5.0,1.0,3.0,23.0,7.0,0.0,6.0,1.0,0.0,3.0,3.0,0.0,0.0,0.0,2.0,2.0,3.5263605246161616,6.529726728815269,4.047427642434349,4.6064194053885235,5.172257988762215,5.559238282196277,5.8423208426825255,6.174778449905399,6.483805931934312,6.309740705643256 +4594,COc1ccc2nc([S+]([O-])Cc3ncc(C)c(OC)c3C)[nH]c2c1,0,28.511627906976745,6.260193023255813,3.372093023255814,8.356014929658341,162.00798360531005,112.93327960465118,1.6239199347007207,6.334523255813952,4.381278536115256,7.7963603023255805,227.1225711918848,29.933333333333334,6.417644444444445,3.911111111111111,7.182716049382715,146.0420814407777,114.85861980000004,1.8983139973333338,6.574082222222224,3.0685718640451154,7.8717229777777735,270.2168285281239,24.644736842105264,6.340019736842103,3.710526315789474,6.1345029239766085,155.63314067028418,93.28781234210523,1.6003386927504866,6.449881578947368,2.9806873149953077,7.873609026315792,226.94749793327165,25.542168674698797,6.507636144578314,3.5421686746987953,5.366800535475234,153.0844923312708,95.56902114457831,1.6594552804680607,6.6213,3.5962739848282013,7.988583469879516,232.20059541650835,20.606060606060606,6.408202020202021,2.909090909090909,4.007856341189675,159.559058844208,74.440170020202,1.460365094830758,6.489609090909092,3.2381150323537145,7.947358808080809,193.6600525898155,17.660194174757283,5.973949514563107,2.533980582524272,3.256742179072276,157.58223959574283,62.22370632038836,1.3477978021872044,6.078310679611651,2.7977213099471263,7.6037714174757305,166.37191755566843,15.267326732673267,5.965257425742573,2.287128712871287,3.5093509350935093,167.98011441429844,54.892438316831665,1.1031927024298318,6.019532673267327,2.9590718331092365,7.611485881188118,141.83096072123794,17.726027397260275,6.156876712328768,2.7534246575342465,4.281582952815829,164.96850853891735,63.176482493150694,1.3042781740839862,6.22964109589041,3.125458030328655,7.769724958904113,169.73257303872748,18.440677966101696,6.385627118644071,3.0677966101694913,4.101694915254237,158.31108010981248,65.41261350847458,1.3872828912388815,6.468872881355931,3.4844109646369543,7.947890779661016,192.6793006497725,10.597079502433747,0.13168977825851808,0.031391216856887616,0.6457544618712817,4.580173467139394,1.5957578119901032,48.404937858301786,0.28989133539596745,0.12283645213628987,1.4397367556462193,0.0820478301784748,50.70390518239748,1.5719127456282653,-0.0028494681809987403,-0.008994967926082984,0.3630310678444805,1.4299136225342586,-0.28922666454388984,6.9476547432486075,-0.01703783989549928,0.001800343729343179,-0.23079923023538254,-4.951803377201198e-05,-0.36058398172034917,1.4589180495858352,-0.005149906777489967,-0.0035111765506657174,0.027746150123822217,0.3025350267482097,0.03940196035142027,7.138134727071534,0.03824289060333939,-0.00042938359283825064,-0.02970229533357674,-0.006485307228658451,12.428597190146315,-0.6026833130249508,-0.006923233007747587,0.0004939630871981821,-0.17699570591723301,-1.2468505112330819,-0.27396245521504864,-2.9533977994617704,-0.029721357377058864,-0.006994143366326308,-0.007324962743846953,-0.004204705493689193,-7.336583688613405,-1.5818105336764077,-0.025494993198616752,-0.0013929319941177072,-0.15197950298004378,-1.1818462384934754,0.15373451808938138,-7.646845638663541,0.007733066494613372,-0.02769057475785434,-0.15368012672554401,-0.012013254185991872,-8.843375546577715,-1.3265895498485145,0.015366509842633373,0.00028629181818735536,0.018278051111332825,0.6644097930230032,-0.37145603462642757,-6.166191701607271,-0.08536156465306734,0.012511301306925288,0.13624433396711907,0.0075636101014980505,-12.233628087687094,2.6320248033456672,0.010472390749080306,-0.001013388961495555,0.125371487933001,1.0281987395903223,0.06754256080704125,12.2994364751083,0.0529594873075063,0.014382359744898212,-0.02289455073085343,0.005575768486042756,13.022347875950093,-1.1189017388147613,0.023791394089363368,0.007904361117269556,-0.016573193951562124,0.6870501119669497,0.3224678201669311,-4.407329639442274,0.0027717366537798084,0.02032831371270659,0.2738376468007721,0.012148977084984847,6.883336929625193,-3.2443006297494743,-0.039165261112282405,-0.007120593793471332,-0.11087074094104923,-1.6296389094572876,-0.21580162031369698,-14.533074751088543,-0.034343926258794906,-0.03790448524626229,-0.3883004582740075,-0.02684982781347681,-5.416291738573216,,,0.4805555555555556,1.3020833333333333,0.6458333333333334,0.0625,0.65625,-0.010416666666666666,0.841079978146214,0.016075269136265558,0.026825269136265557,0.8966910865794446,0.25706398539781605,0.2232863105647974,1.7377710647256588,0.4803502959626134,2.0260815999694066,1.4469415568854744,0.2572480500268542,0.23215982800967203,0.0,0.5791400430839325,8.025923545767455,1226.0,269.18829999999997,145.0,359.30864197530866,6966.343295028331,4856.131023000001,69.82855719213099,272.38449999999995,188.39497705295602,335.24349299999994,9766.270561251045,1347.0,288.79400000000004,176.0,323.2222222222222,6571.893664834996,5168.637891000002,85.42412988000002,295.8337000000001,138.08573388203018,354.2275339999998,12159.757283765577,1873.0,481.8414999999998,282.0,466.22222222222223,11828.118690941597,7089.8737379999975,121.62574064903698,490.191,226.53223593964339,598.3942860000002,17248.009842928645,2120.0,540.1338000000001,294.0,445.44444444444446,12706.012863495478,7932.228755,137.73478827884904,549.5679,298.4907407407407,663.0524279999998,19272.649419570193,2040.0,634.412,288.0,396.7777777777778,15796.346825576593,7369.576831999998,144.57614438824504,642.4713000000002,320.5733882030177,786.7885220000001,19172.345206391736,1819.0,615.3168000000001,261.0,335.44444444444446,16230.970678361513,6409.041751000001,138.82317362528204,626.066,288.165294924554,783.1884560000002,17136.307508233847,1542.0,602.4909999999999,231.0,354.44444444444446,16965.991555844143,5544.136269999998,111.42246294541302,607.9728,298.8662551440329,768.7600739999999,14324.927032845033,1294.0,449.45200000000006,201.0,312.55555555555554,12042.701123340967,4611.883222,95.212306708131,454.76379999999995,228.15843621399182,567.1899220000003,12390.477831827106,1088.0,376.7520000000002,181.0,242.0,9340.353726478936,3859.344197,81.849690583094,381.6634999999999,205.5802469135803,468.9255559999999,11368.078738336577,455.6744186046511,5.662660465116277,1.3498223248461676,27.767441860465116,196.94745908699394,68.61758591557444,2081.4123279069768,12.4653274220266,5.2819674418604645,61.90868049278743,3.5280566976744168,2180.2679228430916,70.73607355327194,-0.1282260681449433,-0.40477355667373427,16.336398053001624,64.34611301404163,-13.015199904475043,312.64446344618733,-0.7667027952974677,0.08101546782044305,-10.385965360592214,-0.002228311519740539,-16.226279177415712,110.87777176852347,-0.39139291508923746,-0.2668494178505945,2.1087074094104885,22.992662032863937,2.9945489867079402,542.4982392574366,2.9064596858537937,-0.03263315305570705,-2.2573744453518323,-0.49288334937804223,944.5733864511199,-50.02271498107092,-0.5746283396430497,0.040998936237449116,-14.69064359113034,-103.4885924323458,-22.738883782849037,-245.13201735532695,-2.4668726622958856,-0.5805138994050836,-0.6079719077392971,-0.34899055597620304,-608.9364461549126,-156.59924283396435,-2.5240043266630585,-0.13790026741765302,-15.045970795024335,-117.00277761085407,15.219717290848758,-757.0377182276906,0.7655735829667238,-2.74136690102758,-15.214332545828858,-1.1893121644131954,-875.4941791111938,-136.638723634397,1.5827505137912374,0.0294880572732976,1.8826392644672811,68.43420868136933,-38.25997156652204,-635.1177452655489,-8.792241159265936,1.2886640346133047,14.033166398613265,0.7790518404542992,-1260.0636930317708,265.8345051379124,1.057711465657111,-0.10235228511105107,12.662520281233101,103.84807269862254,6.821798641511167,1242.2430839859383,5.348908218058136,1.4526183342347194,-2.3123496238161962,0.5631526170903184,1315.2571354709594,-81.67982693347757,1.7367717685235258,0.5770183615606775,-1.209843158464035,50.15465817358732,23.540150872185972,-321.735063679286,0.202336775725926,1.483966901027581,19.990148216456365,0.8868753272038938,502.48359586263905,-191.413737155219,-2.310750405624662,-0.4201150338148086,-6.541373715521905,-96.14869565797997,-12.732295598508122,-857.4514103142241,-2.0262916492688996,-2.2363646295294752,-22.90972703816644,-1.5841398409951317,-319.56121257581975,0.719467509773838,0.6227932037242415,0.44340027319625863,0.3427162613625739,0.2783213330140469,0.18848779809441263,0.18260194701086999,0.10386704991715712,0.1163596620842043,0.06100934102048122,0.07293356622732022,0.034171916259920235,0.047809983041397344,0.02114249688688949,0.03073960956689677,0.012433301209893544,16.00351567638826,5.694302431604483,3.524150037590362,2.190633016969119,0.464034568816201,-0.627696964342854,3.2579333853209222,0.9871994545943878,7.00188970528379,0.5439016265990579,14.556412038956529,10.334522750438103,32.06175233418245,11.708296702943944,2.922010703795297,0.7760432310534143,3.4670664089290057,2.239541807320006,8.001600737388504,0.39695618525071064,3.6807087312402604,2.43495473916684,24.435471932944836,14.705532984461996,0.3003526697630425,0.6334538995139141,0.7733183399875431,0.8090352399112614,0.8416724610427877,0.8661503768914326,1.5302713880797636,878.8884252759137,0.0,1.0,3.0,0.0,8.0,0.0,2.0,0.0,0.0,3.7141224665351356,1.815298986301626,1.018010174670171,0.8144081397361367,0.6283616281082303,0.4888267443872998,243.47196457663733,1439.4225716334581,83.26070233298778,33.474943526359496,72.95527141214615,,13.0,513.0,11.175854473385288,4.552749873690364,5.752853606746789,5.156436481820707,39.35325608004278,0.0,20.416438654168143,32.04657560476608,14.951935562841626,9.473725907600098,11.533333333333335,31.25,15.5,1.5,15.75,0.0,0.019444444444444375,-0.25,0.16967624259005903,0.05865145531665927,-0.11102478727339976,0.02227777777777773,0.15322204213938384,0.0,0.6108527131782947,0.8569444444444442,0.44117647058823567,0.5522012578616354,0.8346666666666664,20.185919475509138,0.3858064592703734,0.6438064592703734,21.52058607790667,6.169535649547585,5.358871453555137,41.70650555341581,11.528407103102722,0.5607779578606161,0.20231213872832365,0.0,0.4190751445086705,0.29411764705882354,0.2924184002202574,-0.7177329684145544,-0.09521154496277386,-0.016691464381733818,-0.07177329684145542,0.7075815997797426,1.7367396908775368,0.04676282830126806,0.040389295136686904,0.05262847548113747,-6.014489392915416,0.7906229798237556,0.7793709971700924,1.1639923094986215,0.5882188721384701,0.5200609940988502,1.3469900000081825,0.7841772684101639,1.149089420869705,0.7298669247335308,0.7444774445851715,0.7759429532801592,0.9767776654528886,0.9083701777665559,1.0546693108861296,1.160293615134145,1.1841774662787623,0.9597853728331047,1.0422611083853917,0.8869329911858217,0.9347438433936744,1.0023126709906551,0.7501751078744912,1.1205694759222034,0.7211691742295077,1.0249867490785844,1.0845676854635067,1.1603164827151164,1.4578918689834717,1.3099170174505315,1.2985854336932319,1.0198844585584728,1.1237591908516642,1.0588633855230396,1.150423851341245,1.106534497690037,1.068697214433528,1.1228112501971848,1.3394405361970116,1.2432056887301985,1.1993553626719455,1.2967484921993004,0.9661956255523203,1.1273485794963498,0.9372447493309506,1.3427010121450083,1.174556155383073,1.308902545977607,1.0906168041751578,1.3986736577771481,0.6881039492178349,0.8172734033659478,0.9618724691418257,0.7414203589332143,1.2370227512769607,1.373209487778116,1.5264021814925892,0.7210502752225243,0.8884841521434856,0.7087395346520802,1.2844333585193315,0.7688527605439937,0.9473502438163701,1.131094184744456,0.6664261903577292,0.8206570932616319,0.8612334237181464,0.7675291207280144,0.749535757255483,0.9227929611245006,1.6663336103872515,0.9257901666299192,0.7317122287673032,1.4128689101080707,0.823211725630977,0.7557787502416816,1.025641908170992,0.8676980099554947,0.8622130115997856,1.3705156647722447,1.1617276011129205,0.8395836349751366,0.9355525118540408,0.8125990576724493,0.8532746287095646,1.2966439051733236,1.5378349702902019,1.7360792257889321,1.320287880078358,1.5468673836443227,1.1316556583753672,1.285942853742113,1.101611605061191,1.5159759467203222,2.194620230710891,1.6347645876394652,1.0378389303762527,5.5,0.09907152331394756,3.333333333333335,2.1041666666666665,1.742777777777778,0.6808333333333334,0.6026757369614513,0.33425453514739234,0.195523116654069,0.21001543209876544,4989.371008657461,5504.987168680403,2525.8524822839536,2333.4481779171947,12.99662807179892,0.3967437435728893,7.840297196768915,0.657670333868848,1.0,0.29411764705882354,1.7121422881669623,3.610965768400472,4.408254580031927,4.611856614965961,4.797903126593868,4.937438010314798,0.21153846153846156,0.007620886408765196,0.09009009009009013,0.053952991452991456,0.052811447811447816,0.025216049382716044,0.024107029478458046,0.014532805875973576,0.009310624602574714,0.012353848946986202,0.5015342355884648,18.781065088757398,8.131482834185537,4.0656,142.96481028678306,1.0,4.10847611359098,122.25437833173805,,77.57781691935686,91.94673690200952,94.3868891132541,77.58734274230848,115.1894713180878,91.99223434107878,91.1282239497155,107.60945670527974,0.1483345241740667,-0.021637732394119424,-0.2865440982135542,0.5621812767541411,0.3121963901134359,-0.18124721832518503,0.14353194220777285,-0.05877319469458102,0.014656428918556327,-0.16030654863137764,-0.0006035264267720147,-0.007111562322925979,0.1376717093847203,-0.03910635165153265,-0.11185219632208435,0.042967028123071425,0.06605318093708835,0.02469169196939807,0.1474670775937644,0.13192146826707593,-0.0034955714315310867,-0.0206303653894319,-0.07904300716486061,0.24512110350153196,-0.056872585780500876,-0.05257228844410916,0.015735710069799364,-0.2740913402353131,-0.27222779228312033,-0.17168172585875313,-0.061014390889363404,-0.10252585623665489,-0.0569386631141556,-0.0050877097602187536,-0.05124700415041926,-0.14469464752707833,-0.14926853510093285,-0.19359887711685525,-0.044373303541180846,-0.23535184339204437,-0.258035257173701,0.09633950523961766,-0.1579765614212446,0.02667574208125485,-0.22542636388692674,-0.10674182354715628,-0.1464176951402615,-0.1744121190422194,-0.12518444818158128,0.11668718746315775,0.009120124890110446,0.028304955196695472,0.1450621461806705,-0.23277719954457055,-0.12738765866527657,-0.29446055894175155,0.10185332683692061,0.09463142024596463,0.09218537632311888,-0.2412758552557044,0.24837265802726033,0.07952318613918634,-0.03228256381763057,0.194147304177654,0.22448903889059402,0.042326323142236416,0.25409466511687423,0.18268737572017474,0.11708543754536847,-0.01590190056693893,0.06795753737684529,0.2568312604148481,-0.1055858586847246,0.18066242045497918,0.2518016792182824,-0.025664853950115887,0.15000526004008655,0.20207817110089826,-0.0910512405231068,0.009561295269463114,0.16549088938316012,0.19019980265618858,0.1480718875631171,0.13575555777930165,-0.3061504473005399,-0.2974054754302776,-0.22683395250123878,-0.17169179229480738,-0.3558028797706431,-0.13523456923865296,-0.30023950849047565,-0.11847172393712271,-0.30857684821608483,-0.26970239993610534,-0.32724604361957693,-0.10682198381148662,2.403374092040789,11.281815350927427,7.6544682943119335,18.97032184498711,37.194365818131516,40.84287078179799,42.25712488882546,42.95642721440685,43.09707837719755,48.62595839926576,34.726597365251386,6.173953200644501,5.571835872232128,0.0,13.899361034014381,5074.366471574306,4401.843382306967,1488.5917602953714,92.0,37.0,50.0,63.0,76.0,80.0,85.0,94.0,89.0,345.11471246800056,26.0,4.844187086458591,5.707110264748875,6.591673732008658,7.470224135899966,8.357259153499912,9.240966565517944,10.128988323424016,11.014933799184323,11.903540859828057,0.7054263565891473,0.990232558139535,1.124783070962007,0.6687997242837476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6916176994847516,0.9773825809393524,1.0114585274140822,0.6454117883735132,4.0,2.0,1.0,0.0,0.0,2.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,14.026475781290461,11.49902366656781,5.752853606746789,0.0,0.0,9.967957041894417,0.0,4.9839785209472085,0.0,0.0,25.98020853630447,34.565968096853965,30.946924512636052,171.4884229997424,-420.9136456379848,-55.8366972965337,-9.788689433441505,-42.09136456379847,414.96038757637973,1018.5089259954734,27.424005036454073,23.686254092917988,30.86390684834768,0.46153846153846156,0.8293105763214842,0.24799381540561963,203.93942635224187,0.1309870405398645,14.968978648365779,0.1706894236785157,7.0,0.19230769230769232,0.31552870447084536,0.6654606679984442,0.8123920927765236,0.8499136742212189,0.884199968760513,0.9099146896649837,2.8997400000000004,,1.8035714285714288,1.389555950537421,1.1082508187380549,1.8006559751755822,-4.377290316528427,1.2713433292533662,1.237629484152691,-1.9973784437328954,93.02110000000005,14.026475781290461,0.0,14.951935562841626,0.0,24.756764487948743,14.219595082555067,41.216775755240356,0.0,11.49902366656781,3.970291913552122,0.0,5.303304908059076,2.3978952727983707,6.834108738813838,4.727387818712341,8.452974619089586,6.842683282238422,10.115893663307597,30.333333333333336,7.235607092622785,8.802208282621793,3.099455861048123,0.0,0.0,1.5501718526916943,4.548533729553718,0.0,42.580000000000005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.3656720513663,9.473725907600098,0.0,11.49902366656781,33.72428051908705,16.928708080132076,13.847474399381248,16.82083097824245,29.552381258818613,0.0,11.033401435232523,0.0,28.758388144201145,29.739561077844318,30.886685106623396,244.5087566634761,,155.53024617765033,183.77767747480758,188.69348324365598,155.55030212658218,231.74126517373702,183.8785234047198,182.15331210908496,215.71825802149272,30.886685106623396,244.50875666347613,,154.07965298578154,182.58124459130266,187.76994089470764,154.10195028910485,234.756232952704,182.7756191019251,181.06987588100725,217.21629185429242,4.810787470065683,186.41674490770225,,115.86553152385629,142.5660653470349,145.89606896703143,115.87459562989179,168.3475767177876,142.26194181284046,140.49327460708088,162.24200651074926,1.2869452127759748,10.187864860978172,,6.480426924068763,7.657403228116983,7.862228468485665,6.481262588607591,9.655886048905709,7.661605141863325,7.58972133787854,8.98826075089553,2.438280402180096,122.25437833173805,,77.57781691935686,91.94673690200952,94.3868891132541,77.58734274230848,115.1894713180878,91.99223434107878,91.1282239497155,107.60945670527974,42.02745098039215,0.0,7.096842176235907,0.0,0.0,0.0,0.0,43.492716678805536,0.2772124590576974,0.0,10.593551863754577,0.0,0.0,0.0,0.0,0.0,0.0,27.752706900061067,486.34820108193276,73.62211839117938,155.27152804122028,189.55494694137286,198.30983444353635,206.30983444353632,212.30983444353632,716.0,125.25888392057034,100.10060949418931,72.64454021657136,83.09,83.09,0.8571428571428571,8.58715569682291,5.700439718141092,4.31729460864553,4.827385122801892,,4.806154576048002,4.834028358474461,4.830021516519363,4.806104154402008,4.7623300036303995,4.8321201253908885,4.830084237526046,4.805219629513029,0.17988727536023041,0.20114104678341216,,0.20025644066866674,0.2014178482697692,0.2012508965216401,0.20025433976675033,0.1984304168179333,0.2013383385579537,0.2012535098969186,0.2002174845630429,2.338097695436014,2.4497736759753206,,2.445366037290364,2.4511488860793946,2.4503196597743724,2.44535554617742,2.4362057823938765,2.450754058064587,2.450332645347881,2.4451714872670425,251.60999999999996,168.61419288772612,136.9919413157974,,138.91910643401576,136.46989984643187,136.9497847811305,138.9237251650371,142.57551836229894,136.66212555735933,136.84734782154865,139.23650217439373,7.025591370321922,5.707997554824892,,5.788296101417323,5.686245826934662,5.706241032547104,5.788488548543213,5.940646598429122,5.694255231556639,5.701972825897861,5.801520923933072,6.003081960207392,5.795390838939485,,5.809360532974821,5.791572813716585,5.795083061547554,5.809393780051919,5.835340550106526,5.792980380203016,5.79433479246681,5.811642679142721,23.273809406586523,11.901664143669915,0.4296249055177628,4.159259620358974,1.7870335154263732,5.497643809513399,1.737963283109387,3.8621827815596546,3.2346593946762527,292.23360539784335,100.56918169577384,-246.84430683965556,-32.745364716051164,-5.740565275340825,-24.68443068396555,243.35302573037453,597.3033482112089,16.08277513486207,13.890775539795559,18.100101460945726,1419.0,39.0,1.6707281859074596,0.9334697243392285,0.0,0.0,0.4722019733928051,0.15322985755489757,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02795084971874737,0.3152352563430426,0.10996855304382712,0.6429315392245266,0.19357522882782616,17.26722023457211,14.947036889381796,11.528407103102724,8.91062279542692,10.297889321519735,6.974048529493267,9.1300973505435,5.193352495857856,7.330658711304871,3.843588484290317,5.542951033276337,2.5970656357539377,3.8247986433117873,1.6913997509511591,2.6128668131862254,1.0568306028409513,4.339411752177487,1.9305963081042945,6.559965224012013,2.7055925454878365,9.542899657155624,3.4453650391896873,77.9594954042403,38.11721372190221,29.982205030353363,27.325732026786362,25.598787430784455,24.828009743071505,126.0,150.0,49.665066999999986,29.940932999999998,0.3953488372093023,124.07,8.5,5.388888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,43.0,0.0,0.0,45.0,16.0,0.0,7.0,38.0,16.0,26.0,29.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,5.0,1.0,2.0,24.0,7.0,0.0,3.0,3.0,0.0,3.0,5.0,1.0,0.0,0.0,2.0,3.0,3.5553480614894135,7.202806615956765,4.21582445975981,4.845170854368724,5.432902890880455,5.945420608606575,6.21869349182644,6.518167364757124,6.887620330848504,6.911755081595902 +5533,O=c1n(CCCN2CCN(c3cccc(Cl)c3)CC2)nc2ccccn12,0,27.166666666666668,6.0961125,3.3333333333333335,6.78343621399177,164.31441953985166,109.52130110416665,1.546170581389125,6.209472916666667,3.26399923157039,7.656490270833333,222.24158567090822,26.254901960784313,6.389213725490197,4.03921568627451,6.825708061002178,149.37881852976082,100.37373611764704,1.7995395062745096,6.540207843137255,2.8021463729524734,7.7878761960784315,261.0511047330099,22.043956043956044,6.363975824175824,3.5934065934065935,5.282051282051282,159.86848420197302,82.40399325274723,1.5398780642191539,6.47061978021978,2.665072581739248,7.821220263736263,216.91209880320298,17.25409836065574,6.099695901639344,2.9344262295081966,3.4626593806921675,163.05994921652464,62.180233713114745,1.3442680237035165,6.201489344262296,2.492832085272887,7.656646163934427,180.24230338331256,14.51968503937008,5.948582677165355,2.606299212598425,2.3403324584426946,163.05383865561942,50.726609551181106,1.2349103618049215,6.042507874015748,2.307572664528045,7.5418899527559065,158.88510051084512,12.85483870967742,5.813918548387097,2.3870967741935485,1.904121863799283,164.63215961042144,44.34430464516128,1.1587209164424677,5.901246774193548,2.1428713659896457,7.445068483870967,144.76526761192613,13.169642857142858,5.847266964285715,2.4375,2.0992063492063493,166.82855995863196,45.1248874375,1.145269172081857,5.9467026785714285,2.052854938271605,7.508889214285714,141.28593271340344,14.31868131868132,5.9169890109890115,2.5604395604395602,2.3724053724053724,166.56985247760042,49.75259603296702,1.1844313107294067,6.022192307692307,2.132682132682133,7.555796945054945,151.09987437311258,14.962025316455696,6.073846835443039,2.7721518987341773,2.690576652601969,165.1698070884707,52.72928802531646,1.2229867100200504,6.147254430379747,2.5150023441162683,7.6456362278481,161.71428215917993,10.493055555555555,0.0956539930555555,0.013711569443542434,0.5555555555555556,3.5899348422496566,1.5565595689853582,49.501095739149314,0.23889058353716494,0.09930690104166662,0.8542380950301868,0.059920735677083316,50.621032313909744,0.5739379084967329,0.0115914317810458,-0.00682199666341421,0.15032679738562085,1.1618907851206324,-0.5230287082970799,2.649329528824545,-0.030288378778316014,0.011822388174019628,0.02691726460134549,0.003136065793504915,-2.7972377133230175,0.08295177045177084,0.006959376907814463,0.00034178995134586315,-0.03907203907203911,0.17750399463362415,0.01845376073894471,0.37245412371699144,0.004731451173832803,0.004918007383241787,0.053472250973197584,0.0044018167496566105,-0.5717093699296141,-0.5128642987249543,-0.0058068960610200135,-0.0005167262809216721,-0.09380692167577415,-0.1860101981155411,0.08175543149786388,-2.387614339217612,0.00021494381870870306,-0.006589261014344255,0.09013334938219202,-0.003863532466700813,-0.4082437843722525,-0.6052602799650045,-0.008397332950568678,0.0006009705186261659,-0.07524059492563429,-0.47924092435976356,-0.07566485172899319,-2.935295245218858,-0.022400462835907062,-0.007588659571850389,-0.03385135921435626,-0.0028844171075295298,-5.520140422645882,0.15479390681003558,-0.0032821516577061227,-0.00042732304860583465,0.003584229390681023,-0.15299902650559752,-0.05586881667278503,0.7447001363547289,0.0019726630267033383,-0.002697089213709693,-0.05269078411385646,-0.002411312121975819,-0.4449470007656639,-0.5629960317460319,0.0011467881944444184,5.014276448625829e-05,0.021825396825396838,0.04860498726239466,-0.022195615899883527,-2.597516945808531,-0.0006795705483327358,-0.0014672433035714406,-0.024489949082087934,-0.0015002438616071505,-0.2680691054155859,-0.7320665445665449,9.000877594626064e-05,0.0010132397379102817,0.008547008547008557,-0.14650224603928302,0.03657593191160694,-3.440365930312307,-0.014714140482977213,-0.000745042067307702,-0.016122332445974236,-0.0011826825635302234,-0.19560664974790143,-0.41077707454289747,-0.017334109089310806,-0.001606736032434121,-0.06188466947960619,-0.9423531888663157,0.07101203313243606,-1.8715747222716679,0.010602180163631998,-0.016221167919303784,-0.18772293978795185,-0.00966365076147151,-0.5208003025436078,,,0.4826007326007326,1.25,0.5576923076923077,0.038461538461538464,0.6923076923076923,-0.1346153846153846,0.8127580788376816,0.008103985544862597,0.021334754775631827,0.8391040246016702,0.24445142321492216,0.2441451128699497,1.6518621034393517,0.48859653608487186,2.071923214733856,1.5114351098364294,0.42359157245617934,0.06901456510024648,0.06788196734100051,0.5604881048974264,7.732318500083347,1304.0,292.6134,160.0,325.60493827160496,7887.0921379128795,5257.022453,74.216187906678,298.0547,156.67196311537873,367.511533,10667.596112203595,1339.0,325.84990000000005,206.0,348.1111111111111,7618.319745017801,5119.060541999999,91.77651481999999,333.5506,142.90946502057614,397.181686,13313.606341383504,2006.0,579.1218,327.0,480.6666666666667,14548.032062379545,7498.763385999998,140.128903843943,588.8263999999999,242.5216049382716,711.731044,19739.00099109147,2105.0,744.1629,358.0,422.44444444444446,19893.313804416008,7585.988512999999,164.00069889182902,756.5817000000001,304.1255144032922,934.1108320000001,21989.561012764134,1844.0,755.47,331.0,297.22222222222223,20707.837509263667,6442.279413,156.83361594922502,767.3985,293.0617283950617,957.8200240000001,20178.40776487733,1594.0,720.9259,296.0,236.1111111111111,20414.387791692257,5498.693775999999,143.68139363886598,731.7546,265.71604938271605,923.188492,17950.89318387884,1475.0,654.8939,273.0,235.11111111111111,18684.79871536678,5053.987393,128.270147273168,666.0307,229.91975308641975,840.995592,15824.024463901185,1303.0,538.446,233.0,215.88888888888889,15157.856575461637,4527.486238999999,107.783249276376,548.0194999999999,194.07407407407408,687.577522,13750.088567953244,1182.0,479.8339000000001,219.0,212.55555555555554,13048.414759989184,4165.613754,96.61595009158398,485.6331,198.6851851851852,604.0052619999999,12775.428290575215,503.6666666666667,4.591391666666664,0.6581553332900368,26.666666666666668,172.31687242798353,74.71485931129719,2376.052595479167,11.466748009783917,4.766731249999998,41.00342856144896,2.8761953124999993,2429.8095510676676,29.270833333333375,0.5911630208333358,-0.34792182983412473,7.666666666666663,59.25643004115226,-26.674464123151076,135.11580597005178,-1.5447073176941166,0.602941796875001,1.37278049466862,0.15993935546875065,-142.6591233794739,7.548611111111146,0.6333032986111161,0.031102885572473545,-3.555555555555559,16.1528635116598,1.6792922272439688,33.89332525824622,0.4305620568187851,0.44753867187500257,4.86597483856098,0.4005653242187516,-52.02555266359488,-62.56944444444443,-0.7084413194444417,-0.063040606272444,-11.444444444444446,-22.693244170096012,9.974162642739394,-291.28894938454863,0.026223145882461774,-0.8038898437499991,10.996268624627426,-0.4713509609374992,-49.8057416934148,-76.86805555555557,-1.0664612847222221,0.07632325586552308,-9.555555555555554,-60.86359739368997,-9.609436169582136,-372.78249614279497,-2.8448587801601968,-0.9637597656249994,-4.299122620223245,-0.3663209726562503,-701.057833676027,19.19444444444441,-0.4069868055555592,-0.052988058027123495,0.44444444444444686,-18.971879286694094,-6.927733267425344,92.34281690798637,0.24461021531121396,-0.33443906250000194,-6.533657230118202,-0.29900270312500155,-55.173428094942324,-63.05555555555557,0.12844027777777486,0.005615989622460928,2.444444444444446,5.443758573388202,-2.485908980786955,-290.9218979305555,-0.0761119014132664,-0.16433125000000134,-2.7428742971938487,-0.16802731250000086,-30.02373980654562,-66.61805555555559,0.008190798611109718,0.09220481614983564,0.7777777777777787,-13.331704389574755,3.328409803956232,-313.07329965841996,-1.3389867839509264,-0.06779882812500088,-1.4671322525836554,-0.10762411328125032,-17.80020512705903,-32.4513888888889,-1.3693946180555536,-0.12693214656229557,-4.888888888888889,-74.44590192043894,5.60995061746245,-147.85440305946176,0.8375722329269278,-1.281472265624999,-14.830112243248196,-0.7634284101562493,-41.14322390094502,0.6897119481731451,0.59025997341593,0.4380520668347127,0.322576298930503,0.28267141342200164,0.17582761665838723,0.18329450501439495,0.09647957119480884,0.11884169377142524,0.05360119202268987,0.07850398742229817,0.03095231863660542,0.05200193555348771,0.018288445709482376,0.03441117283005457,0.01074484251657272,17.00110321009287,5.699459553345142,3.547532498772661,2.1956550054661528,0.4911265837284584,-0.4333386282323627,3.2726195683132633,0.9779112241837516,6.02239488634755,0.7740023212877887,14.693226600890245,10.959830219470154,35.45051746165622,11.711171182860333,2.207815525777395,0.7454471836846293,3.4940469449197864,2.246439915724808,7.0082802146525065,1.3044744599661628,3.7059136101242194,2.442550541862974,22.455864716231098,14.702671312192525,0.276156157938334,0.5534257871032137,0.7020591712676317,0.8538145090514929,0.8609273123708147,0.8609273123708147,1.1418188133321128,942.2525178703091,0.0,2.0,6.0,0.0,9.0,1.0,0.0,0.0,0.0,3.9672449758309476,2.3430047576570128,1.4723132179803562,0.5833333333333321,0.5416666666666652,0.5416666666666652,143.81169821123189,1154.0664420397861,43.824920002565136,24.043050875828882,50.95710646746677,,15.0,690.0,0.0,4.794537184071822,5.689743398203474,12.191933626680303,44.16723696623021,5.687386274683562,15.279341113020056,36.39820241076966,20.964868338463603,11.600939890232516,12.547619047619047,32.5,14.5,1.0,18.0,0.0,0.017399267399267407,-3.5,0.14414682539682522,0.04975711548987394,-0.09438970990695128,0.0,0.13449703100945654,0.0,0.58859126984127,0.8327838827838825,0.44444444444444475,0.538834154351396,0.8327838827838825,21.13171004977972,0.21070362416642752,0.5547036241664275,21.816704639643426,6.3557370035879766,6.347772934618692,42.948414689423146,12.703509938206668,0.5795029689905434,0.08349146110056926,0.0,0.2869070208728653,0.3684210526315789,0.3809125513130779,-0.7280444038866972,-0.03618932342405848,-0.015167591747639526,-0.04853629359244647,0.6190874486869222,1.1832719898025892,0.03639166931755053,0.024651499787553943,0.03585672696371482,-3.658166196344378,0.628508584108693,0.7012737711738687,1.6721667956037634,0.7602941176470588,0.562574367028592,1.587195647494824,0.635416667246416,1.0871348483056154,0.6515724141643803,0.509351714940316,0.6866605833050123,1.0028953671105405,0.7695980392869869,0.9992389205336623,1.4041955768982037,1.2395604395604396,1.0084028287524573,1.1696756873862484,0.7729902567055268,0.8757317252891906,0.9424378188297907,0.5564724660883219,0.8747288055076717,0.9183623280562674,0.9511315923663625,1.084130116745262,1.2349656018921238,1.2207479508196721,1.0658963697018269,0.9869366886275509,0.951824368626954,0.9382215545811218,1.058483795763658,0.7287644880943913,1.0295538705330682,0.9586379069656177,0.9085420824713257,1.0719841760247184,0.869702472821119,1.0686023622047245,1.0871156897186864,1.015878822490639,0.9135999554339896,1.0424278225907513,1.0321524434771971,1.110535443068322,0.9768109935292865,1.0833345185683378,0.8631700860357379,0.9752788308789877,0.8206436839326301,0.8670362903225806,0.9629870622612309,0.935990537854799,0.8666514723571977,0.9562079770573668,0.9597443842438352,1.1492006414594935,0.9352557140732951,1.0064627212024353,1.1589474803819608,0.9518389939869355,0.8110702972067741,0.9205915178571429,0.9393032844212603,0.9026849433889995,1.1555985853446369,0.998277217373385,1.015941592199956,0.8936454028343365,1.0180376931795827,1.0021518007076362,1.1715732976487443,0.9530900885410319,0.9439769877028988,0.9393543956043955,1.0134538162623086,0.911876085859296,1.1689309179115404,1.0441558233607848,0.9969604029369827,0.7021664130447866,0.9831103419347003,0.9870684428677795,0.8280290527691443,1.3977552424341708,1.3129221992044253,1.1824367088607595,1.385334557448729,0.937924759205658,0.8302282791864914,0.8567878408355752,1.2865685646276954,1.7985370161899434,1.2951555591206974,0.9473953660222596,4.5,0.0887725742271197,2.88888888888889,1.8888888888888888,0.906666666666667,0.673888888888889,0.35192743764172335,0.28737953514739223,0.16654856386999242,0.09719135802469137,5169.472259716642,5823.378619460596,2622.3270563659225,2401.0372982296503,16.122819400934333,0.47941862356546705,8.393239515743787,0.9209292634496647,1.0,0.3684210526315789,1.6177175248902087,3.2419577430641433,4.1126492827408,5.001629167387824,5.043295834054491,5.043295834054491,0.15517241379310345,0.005221916131007041,0.07222222222222226,0.04843304843304844,0.029247311827956986,0.02591880341880342,0.01530119294094449,0.013062706143063284,0.007930883993809163,0.005115334632878493,0.37762583353683704,19.322235434007133,9.0,4.7162691349234604,156.75759805224564,1.0,4.200127241666895,158.70996806202916,,125.52208408665673,123.27105151836844,120.16793836436705,125.51993719465764,182.53892875137592,125.08225721255468,126.73771422721167,165.40432600923276,0.054696928407365675,0.12118084578354757,-0.49753579934841674,0.2705882352941175,0.3236523324731225,-0.33601586390812893,0.05352062392286095,-0.1267876629118115,0.11904900918274812,0.03151026014637558,0.05233690404612811,-0.05525840911297234,0.007905397051657843,0.0727557385270104,0.024927121053004746,-0.0703296703296704,0.04944490706198726,0.011855479935775138,0.0075241591757821595,0.019805934180309445,0.04952331944361366,0.06259642514691177,0.07346065931797438,-0.01129390974060635,-0.04887654468325177,-0.06070730426953937,-0.037685422011630346,-0.16885245901639345,-0.05181436607884965,0.05252316270244388,-0.04823356541033699,0.0008997584397262926,-0.06635249862020738,0.1055131466350806,-0.06447738705214898,-0.008064706816737013,-0.057681985648551065,-0.08778862943747195,0.04382944790533789,-0.1354330708661417,-0.13349571661290768,-0.04861031549105137,-0.05929758122298288,-0.09376871412942132,-0.0764162358532,-0.03962754577593503,-0.048137211183017475,-0.10904835737869867,0.014752033474947135,-0.034312751123728426,-0.03116514490666753,0.006451612903225841,-0.042618886756652014,-0.03589250150522865,0.015044114180401106,0.008257600603149956,-0.027159131796672058,-0.0616816136161599,-0.04024169754808309,-0.008789765447817637,-0.053654155242507336,0.011988921296556517,0.0036569675479325523,0.03928571428571431,0.013539239400773085,-0.01425940666976961,-0.052473928243859325,-0.0028446937433472042,-0.014774837278990541,-0.028668762520152557,-0.025037140226249237,-0.005295607243906903,-0.06976676533261579,0.000940982943534661,0.07389670030716101,0.0153846153846154,-0.04080916575841705,0.023497932646065662,-0.0695008035466859,-0.06159363950269764,-0.0075024198670251676,-0.018873347535975332,-0.01973745065320585,-0.0038641379048714552,-0.0391475173621292,-0.18121678495160382,-0.11718104474107634,-0.11139240506329114,-0.2624986887716836,0.045621147142299985,-0.03780875340889638,0.04438090445696694,-0.1633438134626495,-0.21975482114423633,-0.16127390046660212,-0.010288219712984818,21.132469573747358,12.567162955749154,0.9969464817210032,17.624318655258197,32.84683114686027,40.409099423529504,41.763649480587034,41.805649480587036,41.805649480587036,53.870003583080255,39.297312855747165,11.013380883860663,1.7943786926064085,1.764931150866013,14.572690727333086,9164.691390711349,8770.099687160953,814.7489562975061,95.0,40.0,53.0,68.0,82.0,80.0,86.0,91.0,88.0,371.15128800400066,29.0,4.9344739331306915,5.783825182329737,6.652863029353347,7.515889085215125,8.389132521348719,9.257319373170178,10.132414348606066,11.003315768331802,11.879573511780071,0.6805555555555557,0.9798333333333332,1.13297681900127,0.6450146393583659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6846487774451099,0.9693627450980394,1.0037099417334303,0.6365745556007872,8.0,1.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,4.899909730850478,0.0,5.647177220767728,0.0,0.0,9.300604337112272,9.476340119217006,0.0,5.098681808301038,23.733674027155736,36.75265696523406,56.17540159551341,0.0,229.99770957525976,-439.59839282218127,-21.851371055952857,-9.158299850462111,-29.306559521478746,373.80940778649165,714.468049217605,21.97354894661228,14.884751025366771,21.65054694598803,0.4666666666666667,0.9215135617740836,0.1930208056122453,2.216608134044983,0.18302982993995934,40.65660254387378,0.07848643822591649,8.0,0.1724137931034483,0.28965593317436267,0.580479769138204,0.7363790324840598,0.8955528648118928,0.9030133744681862,0.9030133744681862,2.3617,,1.611344537815126,1.3306608217808593,1.43104302576198,1.6229512387874876,-3.439258401119802,1.2576799575476816,1.1595939384412344,-1.9123289895375601,104.17400000000002,0.0,0.0,19.081089080558495,0.0,12.965578028838586,37.62369176041335,64.16832694686096,0.0,0.0,4.07753744390572,0.0,5.389071729816501,2.3978952727983707,6.8966943316227125,4.844187086458591,8.488587934405903,7.018401799069201,10.122582921003769,32.66666666666667,15.387026098993505,4.38275181741736,0.0,0.0,0.0,0.7015150052825574,1.968730321493462,3.154081665229337,47.032,0.0,12.27032772666493,0.0,0.0,0.0,0.0,0.0,0.0,54.38288731206096,10.589653129053952,5.687386274683562,0.0,51.80487111012137,6.544756405912575,0.0,6.4208216229260096,53.45595023491617,5.022633313741326,5.647177220767728,0.0,30.960702689201565,32.863141317365276,34.46780245017426,317.4199361240584,,250.98841902818586,246.58786498922137,240.4493550703447,250.9818549257692,366.1360908569426,250.18809799180838,253.48565681268894,331.39706093832325,34.467802450174254,317.4199361240585,,249.69061496660342,245.56230903495373,239.34855274283538,249.6739714600905,368.51711590387174,249.2035068711362,252.56823649886257,332.72098100800315,4.767193610032102,251.44499647681783,,204.68732664674343,200.29713170851932,195.1074791984771,204.70079903598676,298.4405212975874,203.38690635682815,206.14952808969377,270.03035732405056,1.325684709622087,12.208459081694553,,9.653400731853303,9.48414865343159,9.24805211809018,9.653148266375739,14.082157340651637,9.622619153531092,9.749448338949575,12.746040805320124,2.436622154828068,158.70996806202916,,125.52208408665673,123.27105151836844,120.16793836436705,125.51993719465764,182.53892875137592,125.08225721255468,126.73771422721167,165.40432600923276,46.52941176470589,0.0,0.0,6.088980593563845,0.0,0.0,0.0,48.17807720320465,6.571566477826548,0.0,0.0,0.0,0.0,4.816339180734023,0.0,0.0,0.0,30.555578668837786,556.4164473445696,77.65044119473002,155.61397166707889,197.40716557155838,240.07820003461555,242.07820003461558,242.07820003461558,738.0,130.54880675326572,47.390670017181804,75.23495851908076,45.78,45.78,0.875,8.250731246034926,5.857980995127572,3.574308430633228,5.033119143144104,,5.050040714165694,5.04574043280207,5.045067018701188,5.050121893956089,5.054729756867591,5.04680773153152,5.047311793366564,5.052629680483857,0.1374734011782011,0.19358150550554246,,0.19423233516021898,0.19406693972315653,0.19404103918081492,0.19423545745984955,0.19441268295644581,0.19410798967428924,0.19412737666794477,0.19433191078784068,2.2292831564836018,2.5715513449325127,,2.574907750493234,2.574055853733371,2.573922382927369,2.5749238254404494,2.5758358355104862,2.574267356064804,2.5743672284378665,2.5754202815911915,273.04000000000025,842.8991412184943,155.36858523086926,,153.35611904901575,153.86989546325717,153.97609473563557,153.34465485406903,153.0771553954592,153.75975692654455,153.7065476353119,153.2378972864956,32.41919773917286,5.9757148165718945,,5.89831227111599,5.918072902432968,5.922157489832137,5.8978713405411165,5.887582899825353,5.913836804867098,5.911790293665842,5.8937652802498315,7.692358753188848,6.00131170828355,,5.988274237295792,5.991618855712969,5.99230880640242,5.988199479121522,5.986453522942065,5.9909028093854255,5.99055669476425,5.98750304306446,3.154081665229337,17.086666907398953,5.163146344913571,1.8263096898520166,0.0,13.626880596348002,2.6777583039388597,5.653953676533191,0.0,315.5842277458668,138.87425401844288,-265.4326383668201,-13.194013367696904,-5.529846632642085,-17.695509224454668,225.70878095826492,431.40089324515594,13.267785247661308,8.987518609274082,13.072754340762302,2003.0,39.0,1.4879987997112405,0.767255374158809,0.0,0.0,0.32616718007408674,0.07862952379879701,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.022360679774997897,0.4952340867985052,0.15338296409508623,0.74789095789068,0.19660302536144772,17.932510652501772,15.346759308814178,12.703509938206668,9.354712668984586,11.306856536880066,7.033104666335489,9.714608765762932,5.113417273324869,8.081235176456916,3.644881057542911,6.437326968628449,2.5380901282016444,4.160154844279017,1.46307565675859,2.959360863384693,0.9240564564252539,3.65279142654933,1.5288640019631876,5.733571428996947,2.0149459581419626,8.105709541656642,2.4316500399749135,86.48812110230726,52.387952367927625,32.268118937699214,26.6543864621194,26.505013024589353,26.505013024589353,138.0,162.0,54.88144599999998,30.288553999999994,0.5,191.07,6.888888888888889,5.694444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,15.0,16.0,48.0,0.0,1.0,51.0,16.0,1.0,7.0,44.0,17.0,29.0,34.0,0.0,0.0,0.0,19.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,6.0,0.0,3.0,26.0,7.0,0.0,5.0,1.0,0.0,4.0,5.0,0.0,0.0,1.0,2.0,3.0,3.6635616461296463,6.377868940135024,4.273187854639731,4.879956970454139,5.457189027842106,5.926092345221833,6.080326424406965,6.366349628577428,6.61333702766878,6.412126102097429 +47812,CCCN1C[C@H](CSC)C[C@@H]2c3cccc4[nH]cc(c34)C[C@H]21,0,22.166666666666668,5.612362500000001,3.0833333333333335,4.0509259259259265,161.39086773251196,87.24315960416668,1.570396573459875,5.719314583333333,1.8878029263831735,7.231187270833334,207.0500848260721,23.666666666666668,6.026058823529412,3.9019607843137254,4.549019607843137,144.30604912166277,88.72325762745096,1.9145741186274507,6.1941372549019595,2.209513435003631,7.491027450980392,258.6120239892125,18.144329896907216,5.868752577319587,3.6391752577319587,3.556701030927835,151.96311878220763,65.16178798969071,1.6238203189503915,6.007020618556702,1.931780577828688,7.419967319587629,211.79453919055868,15.216417910447761,5.747432835820895,3.156716417910448,2.5945273631840795,155.43827351088962,53.8656074402985,1.4414336346744476,5.864391791044776,1.8334024322830293,7.31605247761194,183.39497962451787,13.15527950310559,5.639334161490684,2.7888198757763973,1.8654244306418217,159.12232478091602,45.31549836024845,1.3110107613270683,5.743746583850932,1.710854228970171,7.26029746583851,161.0105023847398,12.192546583850932,5.579645341614907,2.527950310559006,1.4099378881987576,158.14954329207603,41.28098688819876,1.282604264155969,5.684239751552796,1.7091672417759374,7.20233944099379,152.92637218102374,11.098159509202453,5.480196319018405,2.1901840490797544,0.9775051124744375,162.0272891750941,37.143802595092026,1.1870609176168343,5.573346625766871,1.6151253502991747,7.154884539877301,135.77561753206928,10.693430656934307,5.4441167883211685,2.0145985401459856,0.6058394160583942,162.1240867278515,34.837061248175175,1.17577005421827,5.539711678832117,1.6118770838965488,7.14503197080292,129.24536305127734,9.711538461538462,5.404075,1.7403846153846154,0.34294871794871795,163.5848167722854,30.67963823076923,1.0974602014832884,5.4934298076923085,1.6311431623931627,7.123487903846154,116.71753494787916,9.62326388888889,0.042762499999999974,0.00707605114585834,0.5763888888888888,2.4535108024691357,1.5088425485574504,44.31582059331597,0.2969493054225816,0.0479707899305555,0.175259106843469,0.01849372873263888,55.14735629251776,0.9322916666666674,0.00389411764705886,-0.0018112584691798283,0.2928921568627451,1.0826184640522871,-0.06818322581095933,4.323108510033696,0.017313393242389834,0.004884643075980414,0.0013582936603996757,0.0012318680810865857,2.871850680681626,-1.1507552978235964,-0.0003484536082473952,-0.0009727550301456252,0.09027777777777783,0.4894540696194473,-0.008657282681306132,-4.924794409896733,-0.019491817220519736,-0.0006018681092497008,0.027945513711921586,-0.0019493384834980048,0.8804066664208943,-0.20348776948590375,-0.001632835820895505,0.00017436952882571175,0.0038349917081260776,0.07958759443523106,-0.07423743807335775,-0.9807994907040332,-0.007921099414006028,-0.0017191574678689762,0.0030639554854897852,-0.000898570616967252,-1.9479848156669566,-0.34686637336093845,-0.0022385093167701783,-0.00012047478222889121,-0.06396652864044168,-0.12472083237481792,-0.0019217791386084296,-1.541453783533364,-0.008228017347880773,-0.002005456079623874,0.007743148152881557,-0.0008718445452682907,-0.1331852848712135,-0.4076841787439613,-0.0003621118012422339,0.00031109108155209705,-0.0888112491373361,-0.3028321735296373,-0.12432175797631885,-2.1135121301948536,-0.022268438205344274,-0.001606038377760516,-0.014565411461099421,0.0007547698439656667,-6.469956036481975,0.2404886673483298,-0.0009398773006135042,-0.00029515364998944317,-0.0625852079072938,-0.20615224759524337,0.019639913059683687,1.0742100212034567,0.008719250116524484,-0.0007603732638888934,-0.00846094649270695,-0.000347028323640931,0.32970101475551233,-0.46906680859691824,-0.002832116788321176,-0.0003173936405060977,-0.08977088402270884,-0.40755243534288527,-0.030733105520559453,-2.1939800098305704,-0.010033170577801795,-0.003353499784570157,-0.012456931414006901,-0.0012073561657289088,-2.943782831650801,-0.527510683760684,-0.0025942307692307814,0.0005881094743915129,-0.030715811965812,-0.34030745489078806,-0.1555941634110276,-2.572293606537124,-0.028503167668058757,-0.0028920639690170964,-0.0269515816069314,2.322299011752592e-05,-5.376769568008631,,,0.5060606060606061,0.9886363636363636,0.36363636363636365,0.0,0.625,-0.26136363636363635,1.1657245157645393,0.004591841565165566,0.020228205201529202,0.48121175989641396,0.13545719744826218,0.3560515774580766,1.6469362756609534,0.49150877490633876,2.095774332298223,1.8135973093331001,0.19670086616141028,0.0,0.0,0.2821770229651234,6.545451454833348,1064.0,269.39340000000004,148.0,194.44444444444446,7746.761651160575,4187.671661,75.379035526074,274.5271,90.61454046639233,347.096989,9938.404071651461,1207.0,307.329,199.0,232.0,7359.608505204801,4524.886138999999,97.64328004999999,315.90099999999995,112.68518518518519,382.0424,13189.213223449837,1760.0,569.269,353.0,345.0,14740.42252187414,6320.693434999999,157.51057093818798,582.681,187.38271604938274,719.73683,20544.070301484193,2039.0,770.156,423.0,347.66666666666663,20828.72865045921,7217.991396999999,193.152107046376,785.8285,245.67592592592592,980.351032,24574.927269685395,2118.0,907.9328,449.0,300.3333333333333,25618.69428972748,7295.795236,211.072732573658,924.7432,275.4475308641975,1168.9078920000002,25922.69088394311,1963.0,898.3229000000001,407.0,226.99999999999997,25462.076470024243,6646.238889,206.499286529111,915.1626000000001,275.1759259259259,1159.5766500000002,24621.145921144824,1809.0,893.2719999999999,357.0,159.33333333333331,26410.448135540337,6054.439823000001,193.490929571544,908.4555,263.2654320987655,1166.24618,22131.42565772729,1465.0,745.844,276.0,83.0,22210.999881715656,4772.677390999999,161.080497427903,758.9405,220.8271604938272,978.8693800000001,17706.614738024997,1010.0,562.0237999999999,181.0,35.666666666666664,17012.820944317682,3190.6823759999997,114.135860954262,571.3167000000001,169.6388888888889,740.842742,12138.623634579433,461.9166666666667,2.0525999999999986,0.33965045500120034,27.666666666666664,117.76851851851852,72.42444233075761,2127.1593884791664,14.253566660283916,2.302597916666664,8.412437128486511,0.8876989791666663,2647.0731020408525,47.546875000000036,0.19860000000000186,-0.09237418192817125,14.937500000000002,55.21354166666664,-3.477344516358926,220.47853401171847,0.8829830553618816,0.2491167968750011,0.06927297668038346,0.06282527213541587,146.46438471476293,-111.62326388888884,-0.03379999999999733,-0.09435723792412565,8.75694444444445,47.47704475308639,-0.8397564200866947,-477.7050577599831,-1.8907062703904143,-0.058381206597220986,2.7107148300563937,-0.18908583289930647,85.39944664282675,-27.267361111111104,-0.21879999999999766,0.023365516862645375,0.5138888888888944,10.664737654320962,-9.94781670182994,-131.42713175434045,-1.0614273214768077,-0.23036710069444283,0.4105700350556312,-0.12040846267361177,-261.0299652993722,-55.84548611111109,-0.3603999999999987,-0.019396439938851484,-10.29861111111111,-20.080054012345684,-0.3094064413159572,-248.1740591488716,-1.3247107930088045,-0.32287842881944373,1.2466468526139307,-0.1403669717881948,-21.442830864265375,-65.63715277777777,-0.05829999999999966,0.05008566412988762,-14.298611111111112,-48.75597993827161,-20.015803034187336,-340.2754529613714,-3.585218551060428,-0.25857217881944305,-2.345031245237007,0.12151794487847235,-1041.662921873598,39.19965277777776,-0.1532000000000012,-0.04811004494827924,-10.20138888888889,-33.60281635802467,3.201305828728441,175.09623345616342,1.421237768993491,-0.12394084201388963,-1.3791342783112328,-0.05656561675347175,53.74126540514851,-64.2621527777778,-0.3880000000000011,-0.04348292874933539,-12.298611111111112,-55.83468364197528,-4.210435456316645,-300.5752613467881,-1.374544369158846,-0.4594294704861115,-1.7065996037189455,-0.1654077947048605,-403.2982479361597,-54.861111111111136,-0.26980000000000126,0.06116338533671734,-3.1944444444444478,-35.39197530864196,-16.18179299474687,-267.5185350798609,-2.964329437478111,-0.30077465277777804,-2.8029644871208657,0.002415190972222696,-559.1840350728976,0.6865492512616174,0.6570932290153735,0.4325277219175782,0.4010680797612027,0.26410804027897283,0.22012133290462252,0.16003664161429912,0.1203699743130785,0.10102335970501891,0.06978068165723678,0.06309850204178502,0.03979219081639205,0.040427164195676026,0.02442789447644943,0.02593295483593235,0.01454437140827034,16.00221210223694,5.668987314654409,3.1487898998196697,2.1684779590026144,0.3690194286972784,-0.37182288554089027,3.2861848276401875,0.9871441656724995,5.011683740210791,0.626966992852695,14.548154754048332,10.336003109204357,32.061103349884874,11.680388691384806,2.9178210787353875,1.024900611625376,3.1315100226560384,2.2183113701393653,2.5695006359980423,0.6277053137255194,3.293975614385011,2.4142068514290638,24.43476717786055,15.589264807515693,0.22758539130139757,0.5660600563632011,0.8425553168355877,0.8885180031462339,0.8885180031462339,0.8885180031462339,1.5750011683710932,662.4989776151718,0.0,1.0,4.0,0.0,4.0,4.0,3.0,2.0,0.0,4.269209488064511,2.312365695427447,0.7138471355518838,0.4481203125901425,0.4481203125901425,0.4481203125901425,259.47543273591475,673.4324731445645,31.321181471272034,14.029843190511762,26.56340030239529,,9.0,358.0,0.0,0.0,0.0,6.041840829147961,11.835812092322787,54.571207711128025,5.563451491696996,11.761884949391115,47.45933941199762,0.0,11.133333333333335,21.75,8.0,0.0,13.75,0.00606060606060612,0.0,-5.75,0.05888888888888888,0.029365079365079316,-0.029523809523809563,0.019499341238471635,0.037886639676113054,0.0,0.5055555555555559,0.7484848484848482,0.446666666666667,0.47619047619047655,0.7289855072463766,25.645939346819866,0.10102051443364246,0.44502051443364243,10.586658717721107,2.980058343861768,7.833134704077685,36.23259806454097,10.813193047939453,0.6761133603238869,0.08982035928143711,0.0,0.3502994011976047,0.5789473684210527,0.2622331764125891,-0.32364335653419624,-0.023505627513867203,-0.0067425699277957555,-0.020227709783387265,0.7377668235874111,0.9105382255284272,0.033895859408470196,0.018969546365175567,0.02845431954776335,-5.063957943745701,0.8638770680561598,1.041310590298674,1.4133135715455238,0.7161587526576896,0.6725371491469455,1.2263805960938274,0.8706955973782349,0.9697834457786528,0.994651448419914,1.1440401929877289,1.0630005796532496,1.0239573203183152,1.2577133600287165,1.2425354918227922,1.3878442962006994,1.2171779903117625,1.0587488642286116,1.1415789278477175,1.2374830850307004,1.1573843288058614,1.188109810860117,0.8113141640227591,1.4167677769090037,1.0180508737886553,0.8580406644389454,1.1647370062868934,1.0090191052111017,1.2107085056644489,1.1138724179245294,1.0857703772328906,0.8747388661983742,0.9268534348633923,1.1214035239154825,0.8441273832489905,1.1574669810111105,1.024905393532834,0.9865321714030229,1.1505285222257122,1.0681744994420428,1.239803936241862,1.1216603125660785,1.0067377245465792,0.9887837374950894,0.9826544342022897,1.1089653229307948,0.8379092312896556,1.1593545294647802,0.978849965332017,0.8876261593437192,0.9040004103264271,0.7746967065855012,1.155391753348799,1.0718087431186971,1.0467639357237257,0.9057976184213088,0.986189748049578,0.9461342574912582,0.9672252469381294,0.8013848315588135,1.0979817200771702,0.9616307087145783,0.9190792883363846,0.8771175497839211,0.9796732944046124,0.9847978749728079,0.9284148127124546,0.960660037156807,0.9515608361014739,0.9336424096990428,0.9753164437718957,0.9058492044964426,0.9633200075706083,1.2042886997607294,0.9103625737981592,0.9494725300030145,0.985797203412189,1.0501548634349553,0.9719654049262998,1.186589001254521,1.1209897336256203,0.9527508793010887,1.115555542771628,0.9358282116704009,1.0365982052613034,1.223445371154193,0.9045727182785057,0.8993502778173957,0.7105537534754403,0.9416514965496805,1.0363215498619138,1.2063896280684137,1.182508321025018,0.9431591727042424,1.3488883224138075,0.8764281023068493,1.0702044192246716,3.5,0.0,2.222222222222223,1.5972222222222223,1.6033333333333337,0.7536111111111111,0.5020861678004535,0.2708687641723356,0.1484158478206097,0.05594135802469136,4153.14198069138,4893.922649925764,2182.4152417064583,1922.7442768393337,12.448736848253382,0.4456502804076659,6.9009537811080195,0.8039154069301141,1.0,0.5789473684210527,1.3157530126566455,3.272596805293709,4.871115365169272,5.136842188131014,5.136842188131014,5.136842188131014,0.14,0.0,0.06172839506172842,0.04095441595441596,0.04219298245614035,0.023550347222222223,0.018595783992609385,0.0142562507459124,0.01349234980187361,0.01398533950617284,0.3687558647410752,15.5232,6.481481481481482,2.705589177643289,137.2078727191193,1.0,4.053851173633782,89.27813605643414,,74.32541153879964,78.12399237209503,77.90861793522421,74.32935330233006,86.26820752562466,78.27914646557701,78.20527921671479,84.95167300296298,0.0968789464189068,0.0910638444211368,-0.2559702342230765,0.5081502480510277,0.44125278069400553,-0.04518909270960502,0.09755226129527518,0.058304205216952946,0.1018253625394042,0.007750203027183191,0.06661004380974338,0.05207594477328138,-0.11958056134699468,-0.008148578971000185,-0.13747145266396008,0.15662650602409647,0.19949130410466348,-0.005737697872838386,-0.11112948703108357,-0.06564021826143486,-0.012546554061773635,0.15945256263847596,-0.1054053788546001,0.015964621436265394,-0.0211454005455314,-0.038183825101327236,0.024642208660090228,0.00665347959000187,0.03243824904098103,-0.04920158047261689,-0.022132039474227053,-0.026674921508011942,-0.03583758929877327,0.017482432386388504,-0.04858785537290805,-0.03532326745337117,-0.03604456630992252,-0.0523474847534681,-0.017025708229851604,-0.11097807378582655,-0.050833618604533067,-0.0012736777210092419,-0.0347833744900993,-0.027708491643621377,-0.041805775609012386,0.04418114580372293,-0.047142712963535865,-0.0024150801384704586,-0.04236443928495791,-0.008467975474825704,0.04396393908687061,-0.15408216717802892,-0.12342809871669469,-0.08239544815009252,-0.04769204545686848,-0.07499070648996664,-0.03347950659318897,-0.08310787224374241,0.04081220476829003,-0.11732123661855029,0.02499034320632112,-0.021979007322151533,-0.041711633212572034,-0.10858156552590732,-0.08402337066858571,0.01301654243410666,0.024239876568267288,0.02936275639411355,-0.01585075553247385,-0.04827678655388656,-0.01876464874433212,0.005978546151998319,-0.0487430059086821,-0.06622898072659872,-0.044854627809165895,-0.15574707589482018,-0.16610990052814822,-0.020368663085450673,-0.049507827689001034,-0.033787486263097424,-0.06990712034187517,-0.07107722753107884,-0.06528462611209884,-0.053380307408320955,-0.05481619228687606,-0.060666022080813405,0.08311266584551714,-0.0532900834105654,-0.13870224437092896,-0.10312153747240595,-0.05804458931592244,-0.0959866453551611,-0.06028802054758256,-0.15378134747087893,0.001255722437224925,-0.09749822891760518,11.77977765994126,23.764106923189335,9.646461725219213,13.24669005215236,31.796708490790326,35.87334909885958,36.14120173640501,36.14120173640501,36.14120173640501,46.10703531056091,39.8991408053282,4.327419055551026,0.0,0.0,6.207894505232716,4167.5501991061765,3078.171407146304,1253.0960206189402,225.0,36.0,53.0,79.0,109.0,134.0,170.0,204.0,222.0,314.1816698320007,25.0,4.812184355372417,5.707110264748875,6.6293632534374485,7.551186867296149,8.485702524324866,9.41727323724241,10.355868052653099,11.291642681353503,12.231706278636459,0.5902777777777777,0.944,1.1229226944812007,0.5454912857658258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6757312624750499,0.9339052287581701,0.9780210609371206,0.5988904861252461,4.0,0.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,0.0,4.899909730850478,0.0,11.761884949391115,0.0,19.056471336613843,60.92702016296579,35.604271784916065,0.0,143.08780741724283,-176.59633653208476,-12.825870276741265,-3.679090344418433,-11.037271033255298,402.5632401531576,496.8361366124798,18.49531119453077,10.350752846093329,15.526129269139993,0.4444444444444444,0.9856507519579202,0.2924046751539235,26.776870861886003,0.13445087155580018,181.57636247389775,0.014349248042079758,5.0,0.16,0.23558851334932857,0.5859657616091668,0.8721840772503471,0.9197630579377607,0.9197630579377607,0.9197630579377607,4.271100000000003,,0.9107142857142858,0.3467453409515673,0.3635986756455034,0.9103590593973134,-0.6122257053291534,0.33399632802937596,0.3518820903837915,-0.4810703813153896,96.88470000000005,0.0,0.0,9.883888251797686,5.917906046161393,38.14594894377801,25.098135602083342,35.5228477603919,0.0,0.0,3.9318256327243257,0.0,5.272999558563747,2.3978952727983707,6.838405200847344,4.727387818712341,8.520985989654934,6.86171134048073,10.269553264861555,28.33333333333333,9.113031830015956,0.0,3.4901865499286133,0.0,0.0,2.865723628957756,3.146458989459982,0.0,45.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.90028933509764,0.0,0.0,0.0,41.02386468302899,6.4208216229260096,5.917906046161393,36.81018947509803,24.395944776997908,0.0,10.902924932081056,0.0,26.18358171675964,32.43510059880239,29.327795893204843,178.55627211286827,,148.82231743658454,156.25794685244364,155.85837087525366,148.83124266304085,172.70338569815732,156.55256161845918,156.3881518061515,170.034547019012,29.327795893204843,178.55627211286833,,148.12031759702504,155.97424611893786,155.56088104972557,148.12931655135768,173.14864075657854,156.27929189552594,156.1002482776557,170.3844163872414,5.074322397357186,123.54399816861084,,105.16939630720185,109.80284342851759,109.55556929246723,105.17449931941275,120.3517190096377,109.98936043826788,109.89507701099049,118.35980250396,1.333081631509311,8.116194186948558,,6.7646507925720245,7.102633947838347,7.084471403420621,6.765056484683675,7.850153895370787,7.116025528111781,7.108552354825068,7.728843046318727,2.5625304546764274,89.27813605643414,,74.32541153879964,78.12399237209503,77.90861793522421,74.32935330233006,86.26820752562466,78.27914646557701,78.20527921671479,84.95167300296298,44.827450980392165,0.0,4.570000078735198,0.0,0.0,0.0,0.0,46.94501092498179,7.717548343411438,0.0,0.0,2.0145930964978582,2.2869945200302335,2.7954629629629633,0.0,0.0,0.0,28.746743334011814,537.821365344392,63.15614460751898,157.08464665409804,233.81353752812507,246.56842503028867,246.56842503028867,246.56842503028867,1279.0,123.48203751506523,7.8296822260083365,70.82076407864335,44.33,19.03,0.8,8.756975055133244,5.643856189774724,4.0770541970055385,4.61063242786645,,4.620940357995991,4.600928068344607,4.598005224519928,4.620948285403475,4.607218239808198,4.602549095357182,4.604872849150209,4.605024730207492,0.18532064531843356,0.2095742012666568,,0.21004274354527233,0.20913309401566396,0.20900023747817853,0.21004310388197614,0.20941901090037263,0.2092067770616901,0.20931240223410041,0.20931930591852235,2.193832077467345,2.3168223940518433,,2.3190555854380945,2.314715397497679,2.314079922963842,2.3190573009765068,2.3160816165457914,2.3150676615388677,2.3155724182137263,2.315605400351907,254.24000000000007,208.5435315766727,127.58636264963963,,126.4254092079423,128.06497639816712,128.24989378974468,126.42463473797211,127.675065943198,127.96063864465664,127.80019631918266,127.9532988715865,9.479251435303304,5.7993801204381645,,5.746609509451923,5.8211352908257785,5.829540626806576,5.74657430627146,5.803412088327182,5.816392665666211,5.809099832690121,5.816059039617568,6.128605164351064,5.637250849776812,,5.6281098440895025,5.640995123595005,5.642438016264667,5.628103718166342,5.637945849390486,5.6401800664041915,5.638925438450364,5.640122705143265,0.0,6.285649512891577,1.5324074074074074,4.479775211010331,2.8771853741496596,7.575330084194171,8.368174891870328,4.866884421978668,0.0,295.91105228885027,78.07601201177025,-96.35997602582701,-6.998449552505932,-2.0074995005380627,-6.022498501614188,219.6590537029051,271.09915841343013,10.091985928436268,5.6478991336131275,8.471848700419692,945.0,39.0,1.2234835468069054,0.8765481652402184,0.0,0.0,0.3356245251288509,0.18838416556595866,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.03608439182435161,0.36059617750569406,0.16094323945636796,0.7106443127534687,0.31900906180021005,15.104083527755582,14.456051038338217,10.813193047939455,10.026701994030066,9.507889450043022,7.924367984566411,8.481942005557853,6.379608638593161,7.980845416696494,5.512673850921705,6.877736722554568,4.337348798986733,5.417240002220588,3.2733378598442235,4.408602322108499,2.472543139405958,3.4019725984146993,2.2766324255524713,6.537949214070735,3.99930547627599,11.146877113670804,6.254630888609131,77.32694861456402,34.118015979201736,22.74078984658955,21.478195835977573,21.478195835977573,21.478195835977573,122.0,150.0,54.16661799999998,30.823381999999995,0.3333333333333333,163.03,5.8888888888888875,4.916666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,9.0,10.0,48.0,0.0,1.0,51.0,10.0,0.0,4.0,47.0,10.0,25.0,41.0,0.0,0.0,0.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,2.0,1.0,2.0,22.0,3.0,0.0,2.0,0.0,0.0,4.0,4.0,1.0,0.0,0.0,1.0,2.0,3.4339872044851463,7.471258589984037,4.0118683403978626,4.652769164787371,5.307339048518494,5.824339437195309,6.209626963140633,6.663621481368894,7.0781142929796115,7.234926583220344 +3793,CCC(C)n1ncn(-c2ccc(N3CCN(c4ccc(OCC5COC(Cn6cncn6)(c6ccc(Cl)cc6Cl)O5)cc4)CC3)cc2)c1=O,0,29.011494252873565,6.242379310344831,3.5172413793103448,7.669079040726551,163.59445679764673,117.18046049425281,1.56625754464669,6.35340114942529,3.2610572619116445,7.797596482758622,227.86542827653983,27.440860215053764,6.478223655913978,4.225806451612903,7.626045400238948,148.51847533476567,105.42331011827959,1.8055974599999998,6.6294053763440814,2.9441402274436927,7.880552860215052,266.47151532526107,23.848484848484848,6.502379393939394,3.8181818181818183,6.146127946127946,158.35792629582332,90.16248644242424,1.551019207259915,6.608173939393937,2.863957475994513,7.968293842424241,225.45875614945314,20.00462962962963,6.323416203703705,3.2916666666666665,4.439814814814815,160.63484938329788,73.49997245370369,1.419733905823019,6.4277060185185215,2.692084381191893,7.871202249999999,197.93054874965108,19.852941176470587,6.215604621848738,3.0,3.8946986201888167,158.78606721906053,73.03564389915965,1.3806053600026098,6.331769747899158,2.691641803040376,7.7848351218487375,188.25232788977485,16.153256704980844,6.0616475095785445,2.735632183908046,3.4631758194976587,162.07019895305294,57.80728592720307,1.2574660662631987,6.154696551724139,2.557581634422843,7.6542468505747125,167.6363020504561,16.609958506224068,6.0416477178423245,2.775933609958506,3.2351313969571236,163.44550411324556,59.941141917012445,1.2419285165043321,6.142129875518672,2.4001844167819275,7.656413892116184,164.87330634042414,18.182266009852217,6.137251231527095,2.876847290640394,3.535303776683087,162.75232471016216,66.02038016256158,1.3173626878970983,6.251837931034484,2.4655375134302333,7.7475768078817735,176.59010459561168,17.657608695652176,6.083331521739129,2.902173913043478,3.602657004830918,158.90460125914015,63.57929505434781,1.381313730596587,6.2030125,2.476510780103775,7.671582347826086,183.8395926008662,10.924560708151674,0.11703878980050193,0.017655093608975117,0.6233320121548422,3.9598883685729143,1.5352373884538195,51.39512281675255,0.2409502150356503,0.11776070815167122,0.7288852957707045,0.0778855333597569,49.881674412973595,0.575377494789868,0.009832425129667399,-0.007365599026771483,0.20536654179398986,1.3420505332094346,-0.4145957591964843,2.656993671197022,-0.0315103983966181,0.01048334079159912,-0.005185766170553891,0.0014027017162534597,-2.4964851084354414,0.48923239529660417,0.004913031864423214,-0.0009527380968375181,-0.02033654019385288,0.18937523381967844,0.0828494145971745,2.349907990770963,0.014970793702845745,0.004195606721195419,0.03271819505522935,0.001523249224708413,2.5918581029956407,-0.6174619427195728,-0.01063103650122567,0.00019574285798661814,-0.10710170138430147,-0.4483119951226947,0.16123403885797602,-2.813897245285965,0.015993062690299452,-0.011882360982663128,0.017489306854921942,-0.006742093491727969,0.9357708539535818,0.14648150183577197,-0.002154789993682725,-0.0004084017516159875,-0.04581824802850192,-0.33448605779760465,-0.19268429622582484,0.4555709068058455,-0.030161203473717195,0.00014925031447382588,-0.010435017013074067,0.004055860294256422,-6.662210128302928,0.03796186198088713,-0.00034965429162815915,0.0011114027980419253,0.017703791782269777,0.03356826387903446,-0.07808385766494687,0.17148494261681585,-0.0063824787038714555,-9.822521689349507e-05,-0.03670677849274993,-0.0010916573743779384,-0.9907052149089965,0.6033164321163691,-0.003053846794826492,-0.0009293287442662683,0.001697796592236616,-0.16801848721320078,-0.06453738049213693,2.8146340596246238,0.001918509759860238,0.0008304827673919657,-0.059009834471597564,0.000520854106261133,1.5279086404125755,-0.16305229979427366,-0.0026382122567615946,-0.00030082804233182614,-0.03661551818507822,-0.3031955509605574,0.14157482267533522,-0.7789560272162772,0.00220279487471394,-0.0017211350810637266,-0.009746572559876722,0.0002229217673593403,0.45018924260019527,-0.8902653558278332,-0.00046156591244609165,0.0013694579562097758,-0.01001367132525691,-0.19530923838492278,-0.021764387099312353,-4.234349586617611,-0.015889707396593438,-0.003008103204145054,-0.04203499033262179,-3.845689798778283e-05,-4.567483841281476,,,0.4788143828960156,1.2551020408163265,0.5612244897959183,0.04081632653061224,0.6938775510204082,-0.1326530612244898,1.0418199691795154,0.012256765564482396,0.02454247985019668,1.1056687741703046,0.2430975208459229,0.24289496996455584,2.14748874334982,0.48599249081047874,2.070530628700109,1.4844501384469782,0.35051795274438335,0.1633529123962688,0.0722096251124789,0.586080490253131,8.094704678804613,2524.0,543.0870000000003,306.0,667.2098765432099,14232.717741395265,10194.700062999995,136.26440638426203,552.7459000000002,283.71198178631306,678.3908940000001,19824.292260058966,2552.0,602.4748,393.0,709.2222222222222,13812.218206133206,9804.367841000001,167.92056377999998,616.5346999999996,273.8050411522634,732.8914159999998,24781.85092524928,3935.0,1072.8926000000001,630.0,1014.1111111111111,26129.057838810848,14876.810263,255.91816919788596,1090.3486999999996,472.5529835390946,1314.7684839999997,37200.69476465977,4321.0,1365.8579000000004,711.0,959.0,34697.12746679234,15875.994049999998,306.6625236577721,1388.3845000000006,581.4902263374489,1700.1796859999997,42752.99852992463,4725.0,1479.3138999999996,714.0,926.9382716049383,37791.083998136404,17382.483247999997,328.58407568062114,1506.9611999999997,640.6107491236095,1852.7907589999995,44804.054037766415,4216.0,1582.0900000000001,714.0,903.8888888888889,42300.321926746816,15087.701627,328.1986432946949,1606.3758000000003,667.5288065843621,1997.7584279999999,43753.07483516904,4003.0,1456.0371000000002,669.0,779.6666666666667,39390.36649129218,14445.815202,299.304772477544,1480.2533,578.4444444444446,1845.1957480000003,39734.46682804222,3691.0,1245.8620000000003,584.0,717.6666666666666,33038.72191616292,13402.137173000001,267.42462564311097,1269.1231000000002,500.5041152263374,1572.758092,35847.79123290917,3249.0,1119.3329999999996,534.0,662.8888888888889,29238.446631681785,11698.590289999996,254.16172642977202,1141.3543,455.6779835390946,1411.5711519999998,33826.48503855938,950.4367816091957,10.182374712643668,1.5359931439808352,54.22988505747128,344.51028806584355,133.5656527954823,4471.375685057472,20.962668708101578,10.245181609195397,63.413020732051294,6.77604140229885,4339.705673928703,53.51010701545772,0.9144155370590681,-0.6850007094897479,19.099088386841057,124.8106995884774,-38.55740560527304,247.10041142132303,-2.9304670508854835,0.9749506936187182,-0.48227625386151185,0.13045125961157175,-232.17311508449603,80.72334522393969,0.8106502576298305,-0.15720178597819048,-3.3555291319857248,31.246913580246943,13.670153408533793,387.73481847720893,2.470180960969548,0.6922751089972441,5.398502184112843,0.25133612207688816,427.6565869942807,-133.3717796274277,-2.296303884264745,0.042280457325109516,-23.133967499009117,-96.83539094650206,34.82655239332282,-607.8018049817684,3.4545015411046816,-2.5665899722552354,3.7776902806631396,-1.4562921942132414,202.12650445397367,34.86259743691373,-0.5128400184964885,-0.09719961688460503,-10.904743030783457,-79.6076817558299,-45.85886250174631,108.42587581979123,-7.1783664267446925,0.03552157484477056,-2.4835340491116282,0.9652947500330284,-1585.6060105360968,9.90804597701154,-0.09125977011494954,0.2900761302889425,4.620689655172412,8.761316872427994,-20.37988685055113,44.757570022988936,-1.6658269417104499,-0.025636781609202214,-9.580469186607731,-0.28492257471264193,-258.5740610912481,145.39926014004496,-0.7359770775531846,-0.22396822736817065,0.40916897872902447,-40.49245541838139,-15.553508698605,678.3268083695343,0.46236085212631733,0.20014634694146374,-14.221370107655012,0.12552583960893304,368.2259823394307,-33.09961685823755,-0.5355570881226037,-0.06106809259336071,-7.43295019157088,-61.548696844993145,28.739689003093048,-158.12807352490427,0.44716735956692977,-0.3493904214559365,-1.9785542296549745,0.04525311877394608,91.38841624783964,-163.8088254723213,-0.08492812789008086,0.25198026394259876,-1.8425155238472715,-35.93689986282579,-4.004647226273473,-779.1203239376405,-2.9237061609731927,-0.5534909895626899,-7.73443822120241,-0.007076069229752041,-840.4170267957916,0.6930457941034225,0.5892438228660587,0.43297512817660827,0.3120642031049131,0.2744985937546786,0.16639738391109857,0.17721277489542453,0.08979466505134306,0.11342117658249881,0.04783689380265262,0.0708040669509251,0.02584780685252978,0.045355824064044634,0.014049193679872417,0.029850495208839485,0.007546170425420545,17.002130640515475,5.693659748465183,3.5481461096287754,2.187894493906983,0.4904762666349496,-0.5216579257682039,4.025156496027686,0.9777918290500139,6.02293465380208,0.7730851366383409,14.695752727994234,10.952503855437271,35.45153002562573,11.704954843471688,2.212741682816688,0.7455819730299046,3.494647357237727,2.2396731545320385,7.008285759776831,1.1834089765676823,3.706542998435633,2.4361500534447207,22.457084577244512,14.702169569507182,0.2521486428610945,0.5548600791924898,0.7487130243306377,0.849977476798567,0.869641244423498,0.8730581257469884,0.8062702606856007,1907.319691394515,0.0,0.0,9.0,0.0,17.0,4.0,1.0,0.0,0.0,4.746507483953219,2.7098890196290197,1.4056618248567565,0.7243626437776323,0.5920663793600811,0.5690778736129554,248.30330905331255,4097.230077324845,82.71762374438512,47.094598589940745,98.39865934525713,,27.0,2303.0,5.7871111525705965,4.794537184071822,24.380307021012314,28.822482048205487,55.4115179039109,11.009123009909725,34.03627686938884,44.179309741689295,49.24662987309668,37.41246864186518,23.461904761904762,61.5,27.5,2.0,34.0,0.0,0.02118561710398445,-6.5,0.16789636927568047,0.05367112362186277,-0.1142252456538177,0.0,0.15455864653116858,0.0,0.6130815544608638,0.8558794946550052,0.4451851851851833,0.559410430839001,0.8558794946550052,51.04917848979625,0.6005815126596374,1.2025815126596373,54.17776993434492,11.911778521450222,11.901853528263237,105.22694842414117,23.81363204971346,0.5594413534688314,0.11771869291658212,0.021311142683174345,0.2983559975644408,0.37142857142857144,0.3765891414644852,-1.5337656515726072,-0.042401298540261756,-0.017629490247961004,-0.054777344699021686,0.6234108585355148,2.5390168126484216,0.03982276042401462,0.029184101294809434,0.043034183265227476,-7.117322924337641,0.601771993283731,0.7338500860571577,1.531683133335982,0.8014467584679127,0.528470681983172,1.504762383662383,0.607853580017065,1.0931611127938974,0.6781061278476577,0.6536719252746962,0.7606403835481578,0.98283322294191,0.7271680622009568,1.0953088216873539,1.421179778432779,1.263867586419515,1.0266570091955922,1.094194529907582,0.7279413463881291,0.8519381702733896,1.0200085392232912,0.7660749395258226,1.061219700910246,0.853510705330244,0.9630757250816991,1.2394436905687112,1.2834726953259767,1.3472310536479675,1.1908489549322847,0.9365677232448495,0.9609973776169795,0.8921007801670481,1.199253816752309,0.922589077495213,1.2308066057106848,0.9276232381245917,0.895532533350027,1.0646815561757281,1.12645504532505,1.0494539061915564,1.0675172381533247,1.1346723019469882,0.9006674197570691,1.1117650480660213,1.0171183471770902,1.0842536010584705,1.007412257184505,1.1095388837036249,0.864458365583075,1.0135710425625415,0.8020557237944912,0.8415288964250387,0.9671748709237528,1.0102921708711035,0.8676354448168923,0.9943783650019655,0.9868528048172465,1.3325900549946623,0.9910528209113169,1.0147305854116178,0.8958362103850055,1.0226611552810696,0.9834090825882084,0.9376863394187351,1.0436339895663844,0.9933419105745885,0.8977586959083743,0.9699932765454572,0.9841943844527673,1.1146205090537065,0.9691484693849481,0.9682829135399669,1.068209931999115,1.0444124592638608,1.2125568910856335,1.0272815357597043,1.0921735861828887,0.8845874117460079,1.066743167136197,0.9910951048625211,1.0433626566349683,0.7131495562494886,1.042777671411461,0.9801960661193907,1.0290177350795864,0.9097247364774007,1.0224955392352733,0.9135825792063695,0.983637159900866,1.0036946910664113,1.0311110452526642,1.0783659308809699,0.9388125854352694,0.811630876644959,0.9232869770373888,1.0976881933840699,10.5,0.3031384552596674,6.888888888888891,3.7013888888888893,2.345,2.1227777777777774,1.1714285714285717,0.6867559523809523,0.5301240866717055,0.4112577160493827,11530.465207623933,12768.806405792138,5037.403556251432,4658.738062478944,27.13601042254393,0.49553176285225853,13.689255341083475,0.9822853578532323,0.0,0.37142857142857144,1.6964360118955086,3.733054476219708,5.037281670991971,5.718580852071096,5.850877116488647,5.873865622235773,0.19090909090909092,0.005829585678070527,0.08720112517580877,0.045696159122085044,0.029312500000000005,0.028303703703703706,0.01722689075630252,0.010900888133030985,0.009140070459856993,0.007343887786596121,0.4318639017245456,37.32099173553719,16.989585002403462,8.707818930041153,293.884457068995,0.0,4.836951029388442,510.2932360793256,,393.71703766543385,386.0075690723311,389.9789314926785,393.77983204421,624.3468421716192,392.01306003742235,396.1964310462058,529.8914363365345,0.05266825002496746,0.08400996922838339,-0.41719399454371164,0.329465738626263,0.33891120362392685,-0.27005319328109595,0.05169738927700274,-0.13077555623661058,0.08902239937362624,-0.007114653294069536,0.018009785074903643,-0.050048141683594664,0.04478279798761605,0.041977808150594396,-0.05396392213707582,-0.03262553470268597,0.04782337687158754,0.053965214253031225,0.045722392748227786,0.06213231102794703,0.035628239563502286,0.04488798888532107,0.01955753731148574,0.051960126308862056,-0.05652052830452357,-0.09083344521373442,0.011087047303284225,-0.1718212754933823,-0.11321329123332327,0.10502222006224023,-0.05475027767359977,0.0663749674924887,-0.10090259450001869,0.02399459415137357,-0.08656413072997685,0.01875981239535535,0.013408456939277254,-0.018410904601420308,-0.023132233714601942,-0.0735053665383067,-0.0844685573593956,-0.12550781896986143,0.008864088299393058,-0.1251760803336682,0.0012674033369568165,-0.014316404890621848,0.0520746295146008,-0.13356027452378727,0.0034749097007224093,-0.002987507750414723,0.06295083009228193,0.0284018651971174,0.008477073279500546,-0.05086109695620904,0.0033365995296526325,-0.026488786087728214,-0.000834108578618471,-0.05036015777206361,-0.01401617639742572,-0.019861105838326204,0.055225692660226346,-0.026092603999340012,-0.05263799585825114,0.0027237436215851933,-0.042430107006716504,-0.042037394983673725,0.054764613943235424,0.00796226622821806,0.0070522908738145165,-0.08095901346068737,0.006687430692106628,0.030630660626243648,-0.014925295776205218,-0.022541349421491375,-0.01703916439043391,-0.058741597529219376,-0.07656669146706896,0.09221689345249674,-0.015156224647883744,0.009142116243341058,-0.014615529305810317,-0.01337188802741719,0.002862171673520605,0.009025142958775793,-0.08149209653469508,-0.003943700317073103,0.07756730077679114,-0.016064747405864672,-0.049321905116054915,-0.014176561398906443,-0.08238815970369467,-0.06594601874184856,-0.02554420104429683,-0.05767024053925395,-0.0004937617594547197,-0.09156636971459664,31.64021162987936,31.59841024208066,5.501404186917255,19.01249991335419,39.599345208330114,47.282974428159996,49.964276351798205,50.350573515066735,50.67257351506674,101.45600080630535,72.73805678390192,17.175379684474784,8.004292707417171,3.538271630511466,28.71794402240342,45549.92988486824,44782.754885606664,2375.9605240110977,317.0,79.0,108.0,142.0,170.0,197.0,228.0,249.0,280.0,704.2393070560013,55.0,5.594711379601839,6.466144724237619,7.360739903058278,8.245121966478605,9.145588494746486,10.035786936549613,10.939639159861633,11.833246542420952,12.73924765085892,0.7088122605363982,0.9899770114942527,1.13054254388396,0.6752823321916598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6893532521164567,0.9792652693261211,1.0118123749487238,0.648268333368427,14.0,3.0,0.0,0.0,0.0,0.0,7.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,8.0,0.0,3.0,0.0,2.0,2.0,1.0,0.0,0.0,24.010408323101103,43.98707681575133,0.0,5.7871111525705965,0.0,0.0,23.70922122310075,10.197363616602075,0.0,36.191984048617265,74.00822950723274,48.13988297845574,23.35874238208577,378.84968587374397,-1542.9723572022294,-42.65582000093839,-17.735314450600338,-55.106155614365335,627.1529949270565,2554.257720122616,40.06180374344673,29.359284139340403,43.29250373089179,0.48148148148148145,0.914142208733275,0.12050503818208702,52.17960315725044,0.08596118528273591,41.22220990713778,0.08585779126672481,14.0,0.2,0.2633013952378357,0.5794020199967551,0.7818292484231093,0.8875727151348839,0.9081062281949924,0.9116742411322372,5.5773000000000055,,3.4369747899159666,2.8614147101042966,2.7578552523652666,3.459433278807987,-8.006741694554272,2.710433354507848,2.535651491096175,-3.983997678704314,188.17599999999942,14.210588861400147,0.0,29.11204765563101,0.0,44.74597079768669,49.19260901437709,111.80499667882631,0.0,11.436898107967467,4.709530201312334,0.0,6.056784013228625,3.4339872044851463,7.592366128519796,5.733341276897746,9.211439767419483,7.773594467360194,10.876366535738475,61.66666666666665,26.188626791375388,12.57466627530566,0.0,0.0,0.0,0.0,5.482030305925932,4.788381510012047,86.12799999999999,0.0,12.801515820728525,0.0,0.0,0.0,0.0,0.0,0.0,98.35720131790453,20.22642581370448,11.374772549367124,5.749511833283905,74.60880359605545,21.80559346608327,0.0,31.873588343152214,90.50653516144318,10.045266627482652,5.687386274683562,0.0,58.7495629006744,59.97373293413173,65.00084250523786,1020.5864721586513,,787.3456704439029,772.0320670972955,780.0375703735269,787.4689409799705,1251.308130610848,784.0219548766297,792.3745115078054,1061.0837698742787,65.00084250523786,1020.5864721586513,,784.1892650245925,769.4042372614854,777.5049694865695,784.2919104178,1256.7004260377928,781.5327813877958,790.0458519751661,1063.7668703517732,4.937199341368327,806.4316406077205,,625.533816991806,611.786287424605,619.3714005777342,625.6734808815867,1001.1479419075931,621.6678996421011,628.3689687204565,844.028298418659,1.326547806229344,20.828295350176557,,16.06827898865108,15.755756471373376,15.919134089255651,16.07079471387695,25.536900624711183,16.000448058706727,16.170908398118478,21.65477081376079,2.507911006372945,510.2932360793256,,393.71703766543385,386.0075690723311,389.9789314926785,393.77983204421,624.3468421716192,392.01306003742235,396.1964310462058,529.8914363365345,85.19607843137254,0.0,4.047811871249383,12.73959322120534,0.0,0.0,0.0,88.02767662053897,5.281954968016964,0.0,18.868510418732807,0.0,-0.26838368887070674,4.742740713697133,-1.1585013349296522,0.0,0.0,56.399345003053156,919.6295126188396,147.58993303490925,324.77573943111463,438.2435053763015,497.51653413018533,509.0263091345123,511.0263091345122,1874.0,186.36022675781393,86.37316818196072,104.3874095949618,104.70000000000002,104.70000000000002,0.9285714285714286,9.102833457228812,6.78135971352466,4.221944444622067,6.8998864550794154,,6.905908469420977,6.903913254282234,6.907127186456919,6.90595784440771,6.912330199972421,6.904431807291001,6.9043479376694386,6.906782515150712,0.08616213152289932,0.140814009287335,,0.1409369075392036,0.14089618886290273,0.14096177931544734,0.14093791519199408,0.14106796326474327,0.14090677157736736,0.14090505995243752,0.1409547452071574,3.0295309959109122,3.520740160798805,,3.5216125502202646,3.521323594259421,3.5217890091927115,3.52161969986762,3.522542007464041,3.5213987014510066,3.521386554161657,3.5217391071282385,499.8900000000019,11390.281537017561,407.0278731935327,,405.5135607501376,406.26313645373676,405.67043433578084,405.49360094037286,404.10474372444077,406.10401550889264,406.09406767712767,405.35784080556374,232.45472524525636,8.306691289663933,,8.27578695408444,8.2910844174232,8.278988455832263,8.275379611028017,8.247035586213077,8.28783705120189,8.287634034227095,8.272608996031913,10.929750979164316,7.598116872719213,,7.594389520160071,7.596236274123856,7.594776296991343,7.594340297882607,7.590909316118598,7.595844527740476,7.595820031667483,7.594005439660526,23.656891928744855,21.589064250528764,9.50482828370203,3.6420225064515117,-0.4101879101813043,21.58128923511254,5.18787381189661,8.480846894761878,0.0,592.203891475445,381.12379960952757,-1552.2343277469731,-42.91186927270042,-17.841773882149116,-55.43694027667761,630.9175941688696,2569.5901138994923,40.30228196362295,29.535518550568867,43.55237481185579,12096.0,81.0,3.398041568507371,1.7301837666649234,0.10206207261596575,0.02946278254943948,0.7481779621692288,0.2601433973965837,0.041666666666666664,0.008505172717997146,0.0,0.0,0.0,0.0,0.3426246847783098,0.08965481954670189,0.8307027427322771,0.25417452557929354,1.1399649099031735,0.3148684742129934,33.9592439110677,28.872947320436875,23.813632049713455,17.16353117077022,21.68538890661961,13.145393328976787,19.13897968870585,9.69782382554505,16.105807074714832,6.792838919976672,12.036691381657267,4.394127164930063,8.935097340616792,2.767691154934866,6.805912907615403,1.7205268569958843,8.377908440497102,3.561357236234071,13.995532233319905,4.959597716417535,19.892396236425242,5.988236487976208,159.3363587340489,76.55010450467793,45.01373599020991,35.32434406512564,34.15076568710968,33.43580926249035,268.0,321.0,100.156134,54.90786600000007,0.4827586206896552,673.14,13.729166666666668,10.652777777777773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,28.0,28.0,87.0,0.0,0.0,93.0,28.0,1.0,13.0,80.0,29.0,55.0,64.0,0.0,0.0,0.0,35.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,12.0,0.0,4.0,49.0,14.0,0.0,8.0,4.0,0.0,7.0,11.0,0.0,0.0,2.0,2.0,5.0,4.2626798770413155,7.824514651027331,4.859812404361672,5.429345628954441,5.964221810714108,6.35447873054258,6.601569734965796,6.951502989418596,7.244495336878887,7.531485390953404 +23894,CC(O)(P(=O)([O-])O)P(=O)([O-])O,0,57.411764705882355,7.9868941176470605,3.6470588235294117,15.448075526506898,169.4820564267761,235.596970462664,2.300100319358471,7.910141176470588,20.338638187327973,9.500251647058825,220.10742249223696,64.125,6.760000000000001,4.375,3.0277777777777777,149.2546450670719,258.65483563699996,2.4165585555000004,6.948693750000001,2.991994598765432,8.518252500000001,279.8819757672008,52.666666666666664,7.751762962962964,3.3333333333333335,13.702789208962047,158.15974920632544,210.71850580980166,2.0365613753535925,7.779033333333334,13.711417989014773,9.278829222222223,243.07451459184338,44.05555555555556,7.664333333333333,2.3333333333333335,6.5555555555555545,160.72489243425304,168.363052061,1.5502917097777777,7.699588888888887,11.224622770919067,9.312627,202.1876408117463,19.738095238095237,8.215095238095238,1.1428571428571428,7.714285714285714,181.66800310162589,66.96950650457144,0.6689201940606428,8.063009523809525,14.967225161669607,9.853434,111.3093606313608,4.0,6.065714285714287,1.0,0.0,185.031919740778,7.492176000000001,0.48325079677085714,6.009142857142857,3.5714285714285716,7.898194285714285,52.91083851430306,1.0,4.840000000000001,1.0,0.0,184.91765202424898,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,,,,,,,,,,,,,,,,,,,,,,,19.98615916955017,0.40173010380622826,0.10474005792442471,1.3079584775086506,7.768294245802896,1.3816978415299443,91.58211266766546,0.8861333954880068,0.34440553633217985,8.74923680034428,0.2686630519031141,42.68444465964044,4.4329584775086515,-0.23100363321799305,-0.043481003931062856,0.2141003460207614,-3.225629031569054,-0.09117468625939348,20.212892178343004,-0.21396883366837435,-0.18746472750865045,-4.034671020042676,-0.13466390484429058,7.236110922206732,4.445213379469436,0.1505182622068435,0.016360712267454527,-0.44521337946943473,3.8883936694180607,-0.004715077257506417,20.49030104008926,0.12132430726517178,0.13401603229527098,2.9843823208973337,0.0939478565936178,6.6966327342483805,-8.584198385236448,-0.008314417531718568,-0.00791031968911219,-0.42560553633217985,-1.2973025569462837,-0.7424362668886668,-39.588469198390406,-0.4284606344166146,-0.004260438292964279,-0.7196872512658979,-0.01117461399461746,-21.31986986175496,-5.469352446861099,-0.08968808699950556,-0.00598599692940023,0.2046465645081561,-2.0984806413487687,0.2495914098097794,-25.088820528338406,0.10409027784233327,-0.09152150271873455,-1.5390284219159387,-0.057324351623002145,-8.740902025663578,10.83737024221453,-0.0016763222936234893,-0.015184560172321572,0.28027681660899645,0.553730860535937,0.4061237780517019,50.21323706777163,0.2425424417334719,0.010549085516559729,-0.40178027086463325,-0.003923404844290606,29.66053817039211,26.190311418685116,0.30704636678200653,0.11243356157347391,0.28027681660899645,7.679781280704005,0.4008039163558783,120.83767377241028,0.27280816623781645,0.30314740484429087,5.7807594116750485,0.19923094809688585,59.98102752860172,,,,,,,,,,,,,,,,,,,,,,,,,,,0.4848484848484848,0.8863636363636364,0.2727272727272727,0.0,0.6136363636363636,-0.3409090909090909,0.8308971869685847,0.08311032385209954,0.08311032385209954,0.7941028130314153,0.1445513529424556,0.2645395561484535,1.625,0.4090909090909091,1.7855113636363635,0.3465909090909091,0.0,1.0610795454545454,0.0,1.4389204545454546,11.997645467754118,976.0,135.77720000000002,62.0,262.61728395061726,2881.1949592551937,4005.148497865288,39.101705429094004,134.4724,345.7568491845755,161.50427800000003,3741.826182368028,1026.0,108.16000000000001,70.0,48.44444444444444,2388.0743210731503,4138.477370191999,38.66493688800001,111.17910000000002,47.87191358024691,136.29204000000001,4478.111612275213,1422.0,209.29760000000002,90.0,369.9753086419753,4270.313228570787,5689.399656864644,54.987157134547,210.03390000000002,370.2082857033989,250.528389,6563.011893979771,1586.0,275.916,84.0,235.99999999999997,5786.096127633109,6061.069874196,55.810501552,277.18519999999995,404.08641975308643,335.25457200000005,7278.755069222867,829.0,345.034,48.0,324.0,7630.056130268287,2812.7192731920004,28.094648150547002,338.6464,628.6234567901234,413.844228,4674.993146517154,56.0,84.92000000000002,14.0,0.0,2590.446876370892,104.89046400000001,6.765511154792,84.128,50.0,110.57472,740.7517392002428,1.0,4.840000000000001,1.0,0.0,184.91765202424898,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.76470588235287,6.82941176470588,1.78058098471522,22.235294117647058,132.06100217864923,23.488863306009055,1556.8959153503129,15.064267723296117,5.854894117647057,148.73702560585275,4.56727188235294,725.6355592138875,70.92733564013842,-3.696058131487889,-0.6956960628970057,3.4256055363321822,-51.610064505104866,-1.4587949801502957,323.40627485348807,-3.4235013386939896,-2.9994356401384072,-64.55473632068282,-2.1546224775086493,115.77777475530772,120.02076124567478,4.063993079584774,0.4417392312212722,-12.020761245674738,104.98662907428763,-0.12730708595267326,553.2381280824101,3.275756296159638,3.6184328719723164,80.57832266422801,2.5365921280276806,180.80908382470628,-309.0311418685121,-0.2993190311418684,-0.2847715088080388,-15.321799307958475,-46.70289205006621,-26.727705607992004,-1425.1848911420545,-15.424582838998125,-0.15337577854671403,-25.908741045572327,-0.40228610380622853,-767.5153150231786,-229.71280276816614,-3.766899653979234,-0.25141187103480966,8.595155709342556,-88.13618693664829,10.482839212010735,-1053.730462190213,4.3717916693779975,-3.843903114186851,-64.63919372046942,-2.40762276816609,-367.11788507787026,151.7231833910034,-0.02346851211072885,-0.212583842412502,3.92387543252595,7.752232047503118,5.685732892723827,702.9853189488028,3.3955941842686066,0.1476871972318362,-5.624923792104865,-0.054927667820068485,415.24753438548953,26.190311418685116,0.30704636678200653,0.11243356157347391,0.28027681660899645,7.679781280704005,0.4008039163558783,120.83767377241028,0.27280816623781645,0.30314740484429087,5.7807594116750485,0.19923094809688585,59.98102752860172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8636363636363636,0.6452134442223456,0.45,0.5374877804934405,0.3402777777777778,0.33764207479806935,0.20833333333333334,0.2563910206598662,0.125,0.15213405830095106,,,,,,,15.013092586863289,5.886040430346041,3.5523665424544406,1.9756147478837358,0.4015756091758498,-0.7911576511524848,4.1572372519318925,0.9766849866075683,7.002957704564729,0.5379551037880914,13.64503648579583,10.441107699711829,30.980435499333012,11.89901892548979,3.6653221797018785,0.777349486140668,3.4992743229340753,2.0929035540289385,8.002637681600028,0.2815669266618383,3.7180604379517694,2.3964801110422633,24.442327571778886,14.702292460605383,0.42779170921802373,0.733220879328141,0.772083018564114,0.772083018564114,0.772083018564114,0.772083018564114,4.7484085779251695,206.82512869394384,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3036034975723623,1.0299867649604075,0.8679345589507914,0.8679345589507914,0.8679345589507914,0.8679345589507914,-157.26744092312913,881.8603169956269,119.05417117835903,51.87413629386041,108.80329583465425,,4.0,62.0,20.274752273643283,18.91691977536761,6.923737199690624,0.0,0.0,0.0,0.0,0.0,0.0,14.893350600345656,5.333333333333333,9.75,3.0,0.0,6.75,0.0,0.015151515151515178,-3.75,0.42526610644257673,0.0,-0.42526610644257673,0.18246753246753222,0.29294736842105257,0.0,0.8509803921568629,1.1515151515151514,0.4257142857142862,0.8509803921568629,0.9690476190476192,9.139869056654431,0.9142135623730949,0.9142135623730949,8.735130943345569,1.5900648823670118,2.909935117632988,17.875,4.5,0.4210526315789474,0.5312500000000001,0.46875,0.0,1.0,0.7453176140892548,-2.4301447661153923,-0.33696975938066676,-0.14294969212443484,-0.30376809576442404,0.25468238591074516,0.3210396831960724,0.03444958907969804,0.018884687246827788,0.03567107591067472,1.2640006443904965,1.0036357340720223,1.4034005167958659,1.1679123619899556,1.619047619047619,1.1115327086357838,1.74530186763058,1.0013277221475645,1.9747472876191023,1.315702700204555,1.261567414196835,1.3322824120698544,1.0725357240573907,0.6802092951677441,0.5177431971161517,0.7676011910655262,1.9188712522045854,0.36014449185889075,1.2734714017667765,0.6773490236690386,0.9940466631695498,0.4766686447894329,0.6015804149318963,0.556574023699089,0.8456954487492395,1.506925207756233,0.9988952052828023,0.9805196225240281,1.4391534391534393,1.0539253784601548,1.7602089752471914,1.5073825172169613,1.8571991460676784,0.95870791521489,1.0253930489291245,1.0093162606739576,1.493447813747086,0.9620102888800951,1.2316252819818712,1.096560676886772,0.15419501133786848,1.362454462230099,0.24578889431430462,0.9641905722274806,0.2535086861773189,1.3085609338678665,1.2101222745379097,1.2254156573895802,0.8743234488650654,0.49445983379501396,0.8484311554078996,1.088136800663006,0.0,0.9519410245291201,5.611429343466299e-05,0.4948970109435826,0.004160672473762985,0.9004042298018579,0.8452117769749115,0.8466528408844339,0.3942817965446019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,6.0,0.0,3.333333333333334,1.125,0.0,0.0,0.0,0.0,0.0,0.0,2845.1144827532976,3036.4665301229097,1591.1740076377343,1513.0428693167946,6.013792168120786,0.3952475234244308,3.636855707281807,0.6535690860871426,0.0,1.0,1.7838593436779768,3.0574760762899316,3.2195282822995477,3.2195282822995477,3.2195282822995477,3.2195282822995477,0.5999999999999999,0.0,0.18518518518518523,0.06249999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.8476851851851851,11.0,2.5,1.9753086419753085,62.00124273590192,1.0,3.280312877783455,25.438635222625233,,10.730142549073324,24.08854674243926,23.01939665382205,10.536695380352517,19.415121793658415,23.588736487528905,22.458124713554323,24.244016227296864,0.22180141966759012,-0.5750219638242895,-0.41513251751719116,0.1636904761904763,-0.41523002727552677,-0.06598742758289061,0.22070786084278105,-0.24146345771173483,-0.5443139198779904,-0.46114548184178916,-0.5012371589259449,0.16952571317036988,0.22241458910433992,0.3746750885252178,0.15620300954253447,-0.34038800705467365,0.5005466510899619,-0.0034125241538232737,0.22373693337305692,0.13691427033777084,0.3891227583694016,0.3411020171244993,0.3496865532053045,0.15688695935126618,-0.42950715604801487,-0.020696525983347692,-0.07552334651962755,-0.32539682539682535,-0.16699966761006751,-0.5373361994012905,-0.43227294113698417,-0.48351708286612416,-0.012370411748709747,-0.08225714627332735,-0.04159341567610598,-0.49947633222726695,-0.27365700435298784,-0.2232545834871414,-0.05715097974949977,0.15646258503401353,-0.27013403135219155,0.1806410941001461,-0.27394891641538227,0.1174656980228233,-0.26573760600196006,-0.17590430537385596,-0.21336894380130317,-0.20477956537474626,0.5422437673130193,-0.00417275747508345,-0.14497376145503,0.21428571428571422,0.07128088136402792,0.29393096366279614,0.5482865114717999,0.27370872485840597,0.030629837223014655,-0.04592175066616363,-0.01460344031863925,0.6948793268109947,1.3104224376731302,0.7643100775193791,1.0734533071826298,0.21428571428571422,0.9886058686375437,0.29008072844064875,1.3194462352152525,0.30786354247215447,0.8802047959876712,0.6607158479751717,0.7415643747273927,1.4052198173569252,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.581142865644953,39.197619323644794,39.360967947302484,39.360967947302484,39.360967947302484,39.360967947302484,19.640625,3.8125,0.0,11.671875,0.0,15.828125,779.1558091558039,725.2236765887592,375.08112158574477,0.0,18.0,18.0,9.0,0.0,0.0,0.0,0.0,0.0,203.95997295182002,10.0,4.04305126783455,4.859812404361672,5.7899601708972535,6.655440350367647,7.5740450053721995,8.447843113281444,9.364519622823858,10.239709757902132,11.156064789498748,1.0196078431372548,1.1016470588235292,1.151421563838807,0.9991357138309491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7120379711165904,1.078662053056517,1.1064650186367337,0.6472462733923205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,33.810270375713266,0.0,20.274752273643283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.923737199690624,0.0,0.0,238.9029305496648,-778.95476413009,-108.01175431903333,-45.82086847824059,-97.36934551626125,81.63548962653567,102.90555286553695,11.042416859325698,6.0532678156198205,11.433950318392997,0.5,0.14851891560133298,0.2380703811577185,153.1013204992911,0.17267400508197447,74.56174998728741,0.851481084398667,2.0,0.2,0.43642215549347996,0.7480131795778384,0.7876593396295455,0.7876593396295455,0.7876593396295455,0.7876593396295455,-2.2562,,2.95,1.5728155339805823,1.064397989256558,2.9692994042043006,-6.49617004321153,1.4822793883402359,1.555765788411295,-2.477803596063244,30.274399999999993,33.810270375713266,0.0,0.0,0.0,12.006964819758135,0.0,0.0,0.0,0.0,3.044522437723423,0.0,4.532599493153256,0.0,6.192362489474872,0.0,7.921898411023797,0.0,9.682903223616842,17.333333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.727999999999998,0.0,20.201527777777777,0.0,0.0,0.0,0.0,0.0,0.0,19.574166585259718,9.78682320550495,0.0,0.0,19.97657822041317,9.130096569862658,0.0,6.923737199690624,0.0,0.0,0.0,0.0,16.985307135126135,12.104645508982037,10.363081100704118,50.87727044519002,,21.498291436738555,47.89112702385356,45.84526639965729,21.15369775463466,42.63934073835699,46.9079676312268,44.63338291852786,48.93854219913436,10.363081100704118,50.87727044519001,,20.15738234582947,46.60427795059671,44.97439531753828,19.804016207269065,45.59214530345315,45.69519358622117,43.36048363710043,50.96583605045885,4.898979485566357,35.02121091755083,,14.009770441399008,34.749770331191385,32.65505565451447,13.705633258400423,25.366975706491274,33.86332292095242,32.08997524037812,32.90217819789348,0.9420982818821926,4.625206404108184,,1.954390130612596,4.353738820350324,4.167751490877936,1.9230634322395146,3.8763037034869994,4.264360693747891,4.0575802653207145,4.448958381739487,2.4494897427831797,25.438635222595007,,10.729964389170357,24.08854674228865,23.01939665339742,10.536476621141036,19.4151217792684,23.588736487280695,22.458124712755865,24.244016227197797,18.337254901960787,0.0,0.25848765432098775,0.0,0.0,0.0,24.733904320987655,18.809905316824473,0.0,0.0,0.0,0.0,0.0,0.0,-3.5138888888888884,0.0,0.0,11.00318664766945,47.606018573133724,30.325608842525607,51.977093296928835,54.73198079909231,54.73198079909231,54.73198079909231,54.73198079909231,66.0,89.13044648233951,272.93240160306675,42.37428605499219,160.57,140.95,1.0,4.477336814478207,4.321928094887362,2.9848084590153734,3.2726829541454077,,3.2506134482641285,3.278165027990718,3.275917385795359,3.2485517390563237,3.2424913792994063,3.2776758552740386,3.277672570673897,3.264473450462506,0.2713462235468521,0.29751663219503705,,0.2955103134785571,0.2980150025446107,0.2978106714359417,0.29532288536875667,0.2947719435726733,0.29797053229763987,0.297970233697627,0.29677031367840967,1.1888457567560011,1.2809203035814702,,1.2741539116463454,1.2825940029681728,1.2819081274659838,1.2735194580765283,1.2716521583506268,1.2824447703292794,1.2824437682162175,1.2784086586121612,116.7500000000001,30.753724938234335,39.026572035653125,,38.951676016561564,38.057692698043255,38.34635743552642,38.98970992110633,39.96036864081199,38.13381180402334,38.17862124554519,39.3253117969871,2.795793176203121,3.547870185059375,,3.541061456051051,3.4597902452766593,3.4860324941387657,3.5445190837369394,3.632760785528363,3.4667101640021216,3.470783749595017,3.5750283451806455,3.521321302923197,3.759552928178684,,3.757631981145553,3.7344134170822847,3.7419697209820284,3.7586079429431565,3.7831983587876707,3.7364115173115002,3.737585885494536,3.767178557439093,20.201527777777777,36.399166666666666,5.0223765432098775,0.0,0.0,0.0,0.0,0.25848765432098775,-11.020447530864196,141.69806700451826,76.5775679338541,-249.68492948298393,-34.62191708988284,-14.687348793116701,-31.21061618537299,26.167310875200346,32.9851833428777,3.5395188550153005,1.9403049025222172,3.6650203714308556,136.0,18.0,3.25,2.7664035817910326,0.625,0.4950742459272173,3.0,1.6214285237147779,1.75,0.6284133357604544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.5,7.097347886445802,4.5,5.374877804934405,6.125,6.077557346365248,3.75,4.615038371877591,1.125,1.3692065247085596,0.0,0.0,0.0,0.0,0.0,0.0,6.75,5.846039781810083,6.5,4.355822439011757,7.5,2.6213950848322836,47.955246779272436,35.79049801115206,35.4325457253573,35.4325457253573,35.4325457253573,35.4325457253573,56.0,64.0,20.21475799999999,25.171242,0.0,10.09,8.1875,2.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,17.0,0.0,0.0,16.0,0.0,2.0,2.0,14.0,2.0,10.0,14.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,5.0,3.0,0.0,11.0,9.0,0.0,0.0,7.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.5649493574615367,0.0,3.2188758248682006,3.2188758248682006,2.833213344056216,0.0,0.0,0.0,0.0,0.0 +2764,O=C(O)c1cn(C2CC2)c2cc(N3CCNCC3)c(F)cc2c1=O,0,25.0,6.552492857142857,3.619047619047619,9.142857142857142,166.13451894390434,99.71930197975647,1.459147459221,6.588773809523808,6.594576719576721,7.994789999999999,221.79651394608615,26.333333333333332,6.535644444444444,4.444444444444445,8.133333333333333,148.89297915075215,100.85572610744893,1.7902813165777782,6.667433333333334,3.303086419753087,7.910918044444441,269.0581682566686,22.050632911392405,6.462088607594939,3.9367088607594938,6.810126582278481,157.818155950967,82.7178731224101,1.519134132773342,6.554672151898736,3.49507735583685,7.890641974683541,222.6862531307152,19.495238095238093,6.341789523809524,3.466666666666667,5.923809523809524,162.89537631452504,72.76266150208,1.3729666099426663,6.414336190476188,3.312698412698412,7.8240447999999985,199.17038006520193,19.666666666666668,6.40682314814815,3.287037037037037,5.925925925925926,158.33240299990408,72.75186892376297,1.3893979838707127,6.483760185185185,4.118827160493826,7.884601777777778,198.629828390006,17.982142857142858,6.3231785714285715,3.0357142857142856,4.955357142857143,161.7695227683802,66.16834132702857,1.284077887794464,6.39225803571429,3.7524801587301573,7.819227499999999,182.03373979944172,17.766990291262136,6.5405339805825236,2.8349514563106797,4.359223300970874,165.86736224501877,64.22881727019804,1.177435766037728,6.585973786407766,3.8489751887810124,8.03516516504854,170.21111834532016,15.577777777777778,6.64289888888889,2.5444444444444443,3.3444444444444446,169.44725382141928,54.23864517267555,1.1106805873371,6.661066666666665,4.537037037037036,8.168965111111113,156.1669811839963,12.311688311688311,6.122454545454546,2.3636363636363638,2.168831168831169,165.43331983600754,40.77953739127274,1.1108325609985197,6.174223376623377,2.88961038961039,7.695816259740261,142.81354848922734,7.836734693877553,0.19369007936507926,0.026626364937560893,0.6802721088435375,4.551020408163266,2.0040595054956154,37.47944846083161,0.22518227100383664,0.17461456916099766,2.9209656084656084,0.1171449183673469,47.53197046394608,0.22675736961451168,-0.012563518518518503,-0.011424728051310947,0.2213151927437643,1.2013605442176873,-0.3053155980966157,1.131671042163238,-0.0003797073442525692,-0.009233881330309926,-0.086574074074074,-0.009246531065759633,1.384618695307393,0.040299664169464816,-0.0035392053445850767,-0.0007422888805677429,0.018341513820718202,0.6334280547662104,-0.21275565662871246,0.21415534372663667,-0.007155827498203807,-0.0017045631332702042,0.3430907172995781,-0.00047330534745543984,-0.24631897160805916,1.0299319727891156,-0.0016430952380952432,-0.0032699228558617423,0.021768707482993213,0.597278911564626,0.3295774274626018,5.032163859714499,0.035464206935538777,0.0013829591836734532,0.0832671957671958,-0.003186346938775506,9.482681968581128,0.11961451247165511,0.027239969135802462,0.004754665573689441,-0.02815570672713527,0.3788737717309146,-0.08977134935338109,0.44743615955619453,-0.016029839899839367,0.022834593096497845,0.3061985596707818,0.018970621315192737,-3.6551882853316306,0.4859693877551021,0.014433878968253948,-0.0012086273316732111,-0.07142857142857141,0.019132653061224532,-0.1734064011731534,2.1874010135688757,-0.021879849661039525,0.01397756519274376,0.06175595238095238,0.007139244897959185,-1.961283192964618,-0.7868040420051513,-0.020410167206040962,-0.00028133401966194514,-0.18466415692490576,-1.0766792153754705,-0.2898210216187857,-3.86875474002104,-0.045804979781097474,-0.01752887799132599,-0.379786947141316,-0.01374009451159105,-7.6214678237762365,-2.4272108843537414,-0.032793333333333285,-0.001095511793621506,-0.0977324263038549,-1.7303854875283453,0.1866116602604475,-11.358995532704496,0.00214551483574579,-0.03473589191232046,-0.183641975308642,-0.014968235827664407,-7.061743116016232,-1.7847866419294982,-0.016384668109668116,0.002621894225303218,-0.08534322820037107,-0.6697588126159553,-0.054117955371932654,-8.89314493119517,-0.03567822497461782,-0.01912656668728093,-0.33594877344877344,-0.005698387755102026,-11.353366773304462,,,0.45773809523809533,1.1875,0.5,0.041666666666666664,0.6875,-0.1875,0.8334138918994659,0.014819288096220573,0.029152621429553906,0.9242647218296879,0.22701498972579592,0.2545912872768625,1.7576786137291538,0.4816062770026584,2.0423368539292626,1.4804965150837945,0.26970149582598524,0.2173811663225477,0.07475767669693555,0.5618403388454685,7.88412427752382,1050.0,275.2047,152.0,384.0,6977.6497956439825,4188.210683149771,61.28419328728201,276.72849999999994,276.9722222222223,335.78117999999995,9315.453585735619,1185.0,294.104,200.0,366.0,6700.184061783847,4538.507674835202,80.56265924600002,300.03450000000004,148.6388888888889,355.9913119999998,12107.617571550087,1742.0,510.5050000000002,311.0,538.0,12467.634320126392,6534.711976670397,120.01159648909402,517.8191000000002,276.11111111111114,623.3607159999997,17592.2139973265,2047.0,665.8879000000001,364.0,622.0,17104.01451302513,7640.0794577184,144.16149404397996,673.5052999999998,347.83333333333326,821.5247039999998,20912.8899068462,2124.0,691.9369000000002,355.0,640.0,17099.89952398964,7857.201843766401,150.05498225803697,700.2461,444.8333333333332,851.536992,21452.02146612065,2014.0,708.196,340.0,555.0,18118.18655005858,7410.8542286271995,143.81672343297998,715.9329000000005,420.2777777777776,875.75348,20387.778857537473,1830.0,673.675,292.0,449.0,17084.338311236934,6615.568178830397,121.27588390188598,678.3552999999998,396.4444444444443,827.6220119999996,17531.745189567977,1402.0,597.8609000000001,229.0,301.0,15250.252843927736,4881.478065540799,99.96125286033899,599.4959999999999,408.33333333333326,735.2068600000001,14055.028306559669,948.0,471.42900000000003,182.0,167.0,12738.365627372581,3140.024379128001,85.53410719688601,475.4152,222.50000000000003,592.5778520000001,10996.643233670506,329.1428571428572,8.134983333333329,1.1183073273775574,28.571428571428577,191.14285714285717,84.17049923081585,1574.1368353549278,9.457655382161139,7.333811904761902,122.68055555555554,4.92008657142857,1996.3427594857355,10.204081632653025,-0.5653583333333326,-0.5141127623089926,9.959183673469393,54.061224489795926,-13.739201914347706,50.925196897345714,-0.017086830491365612,-0.4155246598639467,-3.89583333333333,-0.4160938979591835,62.307841288832684,3.1836734693877204,-0.27959722222222105,-0.05864082156485169,1.4489795918367379,50.040816326530624,-16.807696873668284,16.918272154404296,-0.5653103723581008,-0.13466048752834614,27.104166666666668,-0.03739112244897975,-19.459198757036674,108.14285714285715,-0.17252500000000054,-0.34334189986548297,2.2857142857142874,62.71428571428572,34.605629883573194,528.3772052700224,3.7237417282315715,0.14521071428571258,8.743055555555559,-0.33456642857142815,995.6816067010184,12.918367346938751,2.941916666666666,0.5135038819584596,-3.040816326530609,40.91836734693877,-9.695305730165158,48.32310523206901,-1.7312227091826518,2.466136054421767,33.069444444444436,2.0488271020408155,-394.7603348158161,54.42857142857144,1.6165944444444422,-0.13536626114739964,-7.999999999999998,2.1428571428571477,-19.42151693139318,244.98891351971406,-2.4505431620364266,1.565487301587301,6.916666666666666,0.7995954285714287,-219.6637176120372,-81.04081632653059,-2.102247222222219,-0.02897740402518035,-19.020408163265294,-110.89795918367346,-29.851565226734927,-398.4817382221671,-4.71791291745304,-1.8054744331065766,-39.11805555555555,-1.4152297346938782,-785.0111858489523,-218.44897959183675,-2.9513999999999956,-0.09859606142593554,-8.79591836734694,-155.73469387755108,16.795049423440275,-1022.3095979434046,0.1930963352171211,-3.1262302721088413,-16.527777777777782,-1.3471412244897967,-635.5568804414609,-137.42857142857136,-1.261619444444445,0.2018858553483478,-6.571428571428573,-51.571428571428555,-4.1670825636388145,-684.7721597020281,-2.747223323045572,-1.4727456349206318,-25.868055555555554,-0.438775857142856,-874.2092415444436,0.7018571043234058,0.5453393168464424,0.4280944684468075,0.30125493580869445,0.2710579357791849,0.15933280085066423,0.1660103549344995,0.08223028196551524,0.10388110176804868,0.04377462127273803,0.06374552138966305,0.023075290433311673,0.039685929116099986,0.011475114381319497,0.025626077226978624,0.006339909135920158,9.004068102896147,5.6696513115635,4.107719003928954,2.164641588360208,0.4933208184791894,-0.461114869842258,3.2954853938188386,0.9727705583872622,7.004062247146434,1.8921772528079854,17.424771860977547,10.93373102128939,19.000141662270433,11.68427629371916,2.0154223331924994,0.5458514362052114,3.988671861492857,2.2132751622504125,8.00191998092416,1.2590537985331989,4.009954752034958,2.408756707398667,20.911622788846973,13.304119855439135,0.30398535798425785,0.6531880042784245,0.78272276896194,0.8330917502159063,0.849881410633895,0.849881410633895,1.5315391421412612,882.7602568968719,0.0,2.0,4.0,0.0,6.0,3.0,2.0,0.0,0.0,3.6679831745605798,1.68715723423804,0.9523809523809526,0.666666666666667,0.5714285714285721,0.5714285714285721,163.2634903156541,1248.4131415971542,68.79423098754694,29.724122418979867,65.76401169872061,,11.0,440.0,17.215316520898284,19.08601681065917,16.991516535309753,24.293599804124977,25.93115605767717,12.263210640074686,6.06636706846161,9.467009378641833,5.316788604006331,0.0,10.985714285714288,28.5,12.0,1.0,16.5,0.0,0.04226190476190469,-4.5,0.19298082869511407,0.05414965986394549,-0.13883116883116858,0.04555860805860801,0.2009913275517008,0.0,0.6384353741496599,0.8922619047619044,0.4454545454545458,0.5842857142857144,0.8467032967032964,20.00193340558718,0.35566291430929375,0.6996629143092937,22.18235332391251,5.448359753419102,6.1101908946447,42.18428672949969,11.558550648063802,0.5130086724482992,0.11703511053315992,0.0,0.43693107932379704,0.4117647058823529,0.34816132344512496,-0.8084667901133745,-0.07685859794115192,-0.019249209288413678,-0.07349698091939769,0.6518386765548749,1.5136371762704735,0.05110173131021831,0.03603898038739223,0.04882700568614431,-3.0507627784109275,0.7114101080246913,0.6745764008257888,1.4269995956778443,0.7334444444444442,0.44329845540607876,1.238018782944388,0.7116839450189537,1.079297485575514,0.6550378584601028,0.5678327484056003,0.6963992277668466,0.9448843705715049,0.8317538018635723,0.7209983417713478,1.0306876409312156,1.108037974683544,0.7073044975497151,1.1313772278713534,0.8312545518531738,1.0181710919593148,0.712628091314064,0.44031372571498995,0.6799082896214819,0.958569742047734,0.787138310185185,0.8247992430107125,1.060882156530698,1.072833333333333,0.8171400099651219,0.8399063267175624,0.7857756767289693,0.816939606786872,0.8124977558282723,0.6746357005385648,0.8093184577917512,0.7763744769376463,0.8944528838734566,0.7573964958383899,0.6264099938029841,1.0762499999999997,0.8570039583679344,1.0645915877128937,0.8995807500835148,1.1068015838727412,0.7634302292465834,0.8451734027699158,0.751263941389632,1.0698451927056727,0.8958740234374998,0.9470649506701362,0.7980877816283174,1.1339062499999997,0.9843983557548579,1.2332128419661017,0.9090052029143523,1.1406926981545404,0.933840518849257,0.9909167731396873,0.9347463499916351,1.0523183592830208,1.1077905879180148,1.2964052314947963,1.100645929448573,1.2956796116504852,1.3036556518205697,1.269873969012088,1.113405456722335,1.170454535023952,1.2749914634085648,1.3185989432830771,1.3059194161005736,1.1014072963307622,1.3771460262345676,1.5257614404728004,1.1967119631451735,1.0921944444444442,1.5062614183690415,0.9859726255784196,1.3684515826175236,0.9256651031969592,1.5336291581837245,1.521286337849227,1.5182164338868551,1.0614186507230243,1.2254379734848482,1.0581103902622693,0.6356372970495334,0.9318181818181815,1.0822462291072157,1.033354664145541,1.2411388999331519,1.1604686102092145,1.0882502620622956,1.10200826005196,0.9935727770136956,1.257966155508743,4.5,0.037241097847158455,2.9444444444444455,1.875,1.8661111111111115,1.242777777777778,0.8449433106575963,0.31515731292517,0.16932791635172587,0.09218364197530865,4913.015492875382,5430.5578628809835,2396.721172153129,2209.1070038606954,12.234930223692746,0.44708060012187334,6.7649302768349475,0.8085818660376501,1.0,0.4117647058823529,1.7243342482181812,3.7051601885407206,4.439936470397808,4.725650756112094,4.820888851350189,4.820888851350189,0.16666666666666666,0.007448219569431692,0.0795795795795796,0.0436046511627907,0.04443121693121693,0.03186609686609687,0.025604342747199887,0.013702491866311738,0.011288527756781722,0.009218364197530866,0.43341015734360666,17.415637860082306,6.9575,3.48559670781893,137.04307093590964,1.0,4.1571504822763305,106.66286986638585,,79.38118212619327,77.53847232781068,76.6161942265071,79.33461540053679,111.96456027989105,78.61664398823395,79.52024787563326,99.50077110800156,0.028935185185185074,-0.06486402690164628,-0.42907577050423723,0.3253333333333334,0.26397608370702547,-0.15234856912150888,0.030194442251355584,-0.001686222199287171,-0.05288150567663188,-0.02963885429638852,-0.07893241290043888,0.029130260786424854,0.0051424050632910825,-0.018272517395762744,-0.02787796540415555,0.02696202531645575,0.139183742975535,-0.10616234500287294,0.005713940640040167,-0.031777934676224515,-0.009761860888586951,0.117457979068711,-0.004040340409570591,-0.005182174633279655,0.1314236111111111,-0.00848311510574702,-0.12280770820687488,0.032000000000000015,0.13124065769805682,0.16445491092396253,0.13426461878096813,0.15749111498628832,0.007920067554032911,0.02850673610324919,-0.027200044041036885,0.1995011331536092,0.015263310185185154,0.14063688354662116,0.1785698342541005,-0.04138888888888884,0.08325029064939378,-0.04479475240490931,0.01193817353058953,-0.07118606552984916,0.13077140817181157,0.10482785513918762,0.16194147880750606,-0.07689957411094837,0.06201171874999999,0.07452048662259085,-0.04539212673256207,-0.10499999999999995,0.0042040358744394705,-0.08652757101155487,0.05836267883864,-0.09716506349945613,0.08004810400360236,0.02114230725687762,0.06094370116484016,-0.04126240031332783,-0.10039947411003229,-0.10537538769639612,-0.010565994281295114,-0.2714563106796114,-0.23657973790761458,-0.14461697410881585,-0.10322336370728968,-0.20341290447469132,-0.10038611368770757,-0.13002102662236384,-0.11729142589441575,-0.1603440326455068,-0.3097222222222221,-0.16930827557524172,-0.0411438736076251,-0.14366666666666666,-0.3802192326856005,0.09311682599678964,-0.303072643787044,0.009527903001339013,-0.19892894435568753,-0.06287029699233936,-0.1277753746067458,-0.14856828040345393,-0.22774621212121196,-0.08459219059322735,0.09846985239823715,-0.12545454545454546,-0.14716673461068072,-0.027004165906016335,-0.23728057099050076,-0.1584415363410645,-0.10953591546903457,-0.11501291643938537,-0.048643917589603285,-0.23885748186930753,9.003212111258996,19.709342660634434,10.75666579097349,17.471122673881055,35.935016962304104,40.009290502035086,40.82124288298746,40.91724288298747,40.91724288298747,49.016084494302305,35.53191636201107,6.472835899823646,5.217147991741145,1.7941842407264532,13.484168132291243,4714.0139014297365,3809.7879717766414,1106.0527337801518,139.0,40.0,54.0,74.0,101.0,120.0,141.0,149.0,155.0,331.13321965600045,27.0,4.90527477843843,5.796057750765372,6.710523109452428,7.623153068476902,8.545780648268149,9.466763948525191,10.393508246868931,11.31874587882289,12.247737484757018,0.6904761904761905,1.0086666666666668,1.1377442028737288,0.6568332266850625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6651735671514116,0.9931839402427637,1.022110082197482,0.6414593546761266,3.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,6.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19.890325377488868,11.38067233274289,0.0,5.428790391900541,0.0,4.794537184071822,9.184952231746642,0.0,0.0,0.0,24.974377382775238,43.80393423887614,11.204086992299825,187.17903154940097,-434.64917158475146,-41.320838818379215,-10.34878979963694,-39.51356105315922,350.4425218650551,813.7639700124029,27.473392169167717,19.375332619342927,26.250450645561383,0.45454545454545453,0.658861944184391,0.20563119901022142,99.99187711035641,0.14673032887927928,66.00948923416922,0.341138055815609,6.0,0.1111111111111111,0.319776102373736,0.6871183385623807,0.8233818824615534,0.8763673177230874,0.8940291294769319,0.8940291294769319,1.5833,,1.511904761904762,1.8043900169108715,1.5488545075243887,1.543086245660115,-6.799632915426465,1.6190119046886822,1.4797733799930697,-2.701616984205071,88.47900000000006,14.291479626587348,0.0,9.883888251797686,0.0,18.88348407499998,31.078935354500782,39.933577617251544,0.0,0.0,4.007333185232471,1.9459101490553132,5.3706380281276624,3.713572066704308,6.946013991099227,5.476463551931511,8.618846845142738,7.252053951852814,10.34512385694912,29.0,4.297422682035777,0.0,0.0,0.0,0.0,0.7505713813303108,-0.30927479633828736,1.8247252928949356,42.364000000000004,0.0,23.75812249478916,0.0,0.0,0.0,0.0,0.0,-1.2751022303881248,47.785256520696606,15.64548872675735,10.077801322358383,0.0,41.82195795423421,0.0,5.817220841045895,29.241472750768796,23.124114892608116,0.0,10.902924932081056,0.0,27.586995520772625,27.937289820359286,31.590244106241876,213.3257397327719,,158.70166087269325,155.0251935094604,153.27677110966445,158.60285028179703,226.40782930016843,157.1794094066276,158.98165765402132,199.90208121073812,31.590244106241876,213.3257397327719,,157.50282657227876,153.61384538590065,152.11204855203772,157.37779812404858,230.72875347520858,155.90383606092647,157.80792140513026,201.70315920020818,5.049354842443891,152.6620210879802,,112.40320538026279,109.76778662246177,108.1470200932082,112.3615949539377,155.41132943344994,111.2995705726226,112.59118795115003,139.88327934419954,1.3162601710934114,8.888572488865496,,6.612569203028886,6.459383062894183,6.3865321295693525,6.608452095074877,9.433659554173685,6.549142058609483,6.624235735584222,8.329253383780754,2.541184772287653,106.66286986638585,,79.38118212619327,77.53847232781068,76.6161942265071,79.33461540053679,111.96456027989105,78.61664398823395,79.52024787563326,99.50077110800156,41.713725490196076,0.0,0.0,0.0,14.607685185185183,0.0,9.257249748307649,42.92862345229425,4.844305939904785,3.225170939970724,0.0,0.0,0.18753123162845364,1.9564432161753589,0.0,0.0,0.0,26.941292896397314,354.218381918081,72.4220384251636,155.61672791871027,186.47733175670794,198.47733175670794,202.4773317567079,202.4773317567079,1024.0,128.0075449143753,183.40317149637517,77.67595562609516,74.57,74.57,0.8333333333333334,9.158082591239591,5.754887502163468,4.254081452962762,4.819311354139862,,4.799274582869431,4.80024565382133,4.799797738784827,4.799173552877773,4.7755778327711536,4.799624643074506,4.799258532073737,4.787539044100823,0.1772533938734484,0.2008046397558276,,0.1999697742862263,0.20001023557588873,0.1999915724493678,0.19996556470324053,0.19898240969879807,0.19998436012810442,0.19996910550307237,0.19948079350420098,2.3233476013305743,2.448099782624058,,2.443933515277804,2.444135831837646,2.444042516626764,2.4439124639598755,2.438983716063891,2.4440064528505383,2.4439301708510044,2.4414852472531687,230.45999999999987,205.77319342636042,143.6612556841044,,145.14393721821557,145.01714812151337,145.2424343444484,145.12216137187608,148.8308253613589,145.1008197996504,145.16161738153755,146.94132513389062,8.573883059431685,5.98588565350435,,6.047664050758982,6.0423811717297236,6.0517680976853505,6.04675672382817,6.201284390056621,6.0458674916521,6.048400724230731,6.122555213912109,6.202243296810008,5.842926874628543,,5.85319465787341,5.852320735688957,5.853873044599896,5.853044617296945,5.878278997984839,5.8528975471222955,5.853316461697441,5.865502095702527,16.43241047808012,25.714565710964518,12.6196285019594,0.15943609851348062,-1.755300643086537,3.07809812505249,3.290533509700176,2.9606282188163506,0.0,280.972139877337,100.63148170820244,-233.67676281770056,-22.214973553925393,-5.56373244804049,-21.243342074336415,188.40545298757044,437.4970496707829,14.770287775552502,10.416596420732928,14.112808053896222,1234.0,43.0,1.7752328342318295,0.740104510495295,0.0,0.0,0.6366365232156347,0.16641797851376963,0.0,0.0,0.28867513459481287,0.28867513459481287,0.16666666666666666,0.12909944487358058,0.21407617506269555,0.13908532168678328,0.46265825012165984,0.23695072347341029,0.7277689045287576,0.2755746229765835,16.844570503761737,13.088143604314618,11.558550648063802,8.13388326683475,10.842317431167396,6.373312034026569,8.964559166462973,4.440435226137823,7.687201530835603,3.2393219741826145,6.4382976603559685,2.330604333764479,4.762311493931998,1.3770137257583397,3.613276889003986,0.8939271881647424,4.435907746161439,1.5796442457808864,7.222242842353618,2.1826162298616403,11.994810038502175,3.0511146942822798,76.69516095633516,37.750829730458086,28.80592567566793,26.614339926910233,26.158660417809518,26.158660417809518,134.0,164.0,46.655273999999984,24.896725999999994,0.4523809523809524,177.07,7.611111111111111,5.138888888888888,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,10.0,11.0,42.0,0.0,1.0,45.0,11.0,2.0,6.0,39.0,13.0,27.0,32.0,0.0,0.0,0.0,17.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,5.0,2.0,2.0,24.0,7.0,0.0,3.0,3.0,0.0,4.0,3.0,0.0,0.0,1.0,1.0,2.0,3.56953269648137,7.781923529141942,4.22683374526818,4.875197323201151,5.535363823031238,6.1885207636588735,6.671953828407345,7.104939791126251,7.435944897230191,7.783044963848764 +71771,O=C(O)COC(=O)Cc1ccccc1Nc1c(Cl)cccc1Cl,0,40.888888888888886,6.5934083333333335,3.4722222222222223,9.255829903978052,158.94453431691767,168.1918839166667,1.769166215639917,6.764088888888889,6.140726345916104,8.215223277777776,258.25495287490736,31.054054054054053,6.539297297297297,4.081081081081081,8.303303303303304,144.73407772992837,120.98004945945945,1.9730439917837839,6.729283783783783,3.646007118229341,7.998575027027025,293.60800541090777,29.016949152542374,6.52677966101695,3.711864406779661,6.777777777777779,149.0484176834491,112.10351267796608,1.7775438798592877,6.697554237288136,4.078276487410197,8.04065627118644,256.66743180757,26.373333333333335,6.540096000000001,3.1866666666666665,5.174814814814814,156.82280587053967,99.79592242666666,1.5746539498432666,6.706560000000001,3.6468038408779155,8.158122293333333,219.79479977755787,26.33783783783784,6.315295945945947,2.972972972972973,4.885051718385052,158.01049446565003,100.0560876216216,1.5587475594161082,6.512332432432433,3.0871725635100122,7.987133527027025,211.2724326772279,24.013698630136986,6.3356164383561655,2.9863013698630136,5.573820395738204,158.00088581274952,91.37280661643835,1.487094111434726,6.476916438356166,4.274409493207059,7.95025101369863,208.49112798429337,25.82608695652174,6.458507246376812,2.971014492753623,4.542673107890499,154.19912786442788,97.32723244927536,1.6307054503680578,6.642231884057972,3.5301037752728583,8.110913391304345,226.1069940285711,22.428571428571427,6.235442857142858,2.5714285714285716,4.341269841269842,156.3217881201188,81.24386948571426,1.511489837158486,6.4562214285714274,3.123339212228101,7.96169977142857,199.82703138406703,23.532258064516128,6.380032258064516,2.2580645161290325,4.28494623655914,163.03824815659542,88.98670954838705,1.1687649379795968,6.520287096774194,3.9714257268020714,8.082028258064515,165.52158338813882,15.330246913580247,0.15732121913580238,0.031888141139354516,0.6010802469135803,4.123647309861301,1.381984513767878,71.3974414097222,0.2715131579983418,0.15918888888888882,2.321087735985744,0.1256232283950617,48.73810022122737,-0.22814481147814455,-0.01582812604270939,-0.018574292695375208,0.08285368702035369,0.5436125425837359,0.007673185279646927,-0.9491988196321288,0.009686698705027558,-0.014535135135135128,-0.20355633856180005,-0.012582569235902558,1.8267849356630401,0.33547813350073247,0.024450108547813345,0.00034527161678004194,-0.07989380623561414,-0.41979248202656166,-0.2591339527789971,1.4876233219161976,-0.005774234411600754,0.01947457627118645,0.38788995591104564,0.01662866708516426,-3.9376233637893634,-1.1850617283950617,-0.006207256172839512,0.004668321229501839,-0.01959876543209876,-0.8456409083981099,-0.06862188777850894,-5.529279993055553,0.005040462001220774,-0.009363999999999973,-0.20168145193916165,-0.00044698469135803407,-4.529085274709904,-0.1620787454120786,-0.02007523565231896,-0.008161224028604735,-0.01774691358024691,0.22757428210103095,-0.028186948598993965,-0.8089776225600573,-0.007696308300035138,-0.019635135135135137,-0.06446448607831523,-0.014184597764431081,-2.8343529050465106,1.8562066632842893,0.046668240529342125,0.008969467068783132,-0.01508329105361069,0.6305195916927131,0.2704485186709917,8.800109871099693,0.04656686001880125,0.04065068493150683,0.8054937808274338,0.02586694131574498,9.842694311059814,-2.174852388620505,-0.047866710279119706,-0.004361374927588579,-0.07612050456253357,-1.2656126783430415,-0.013162841803897601,-9.874329983393718,0.023259704678059545,-0.0498246376811594,-0.513100123879758,-0.035790945786366074,-2.80987175144366,-5.096119929453262,-0.015729195326278634,-0.005022731545422127,-0.07647707231040565,0.43329958412262926,-0.2683796433263431,-23.862863864484126,-0.09163866490467118,-0.027154285714285725,-0.003894750982974304,-0.02278143633156965,-14.498844723629693,3.5093588211867783,0.048741863301473516,0.010720661350425941,0.018543409000398237,0.5137370876784124,-0.10612752673810835,15.889627529793907,-0.05609611700387721,0.06254032258064514,0.11827563582301584,0.0456223002787734,0.5717088786824733,,,0.48530020703933746,1.3369565217391304,0.717391304347826,0.06521739130434782,0.6195652173913043,0.09782608695652174,0.6971322272075816,0.01934692659940589,0.026825187468971102,1.010914041283089,0.28079281944016565,0.19613040884621522,1.7080462684906708,0.4769232282863809,1.993685961670023,1.4404405760394636,0.08990230867202058,0.30917129024853957,0.15417178670999965,0.5532453856305599,9.806171201555566,1472.0,237.36270000000002,125.0,333.2098765432099,5722.003235409036,6054.907821000002,63.68998376303701,243.5072,221.06614845297975,295.74803799999995,9297.178303496665,1149.0,241.954,151.0,307.22222222222223,5355.1608760073495,4476.2618299999995,73.002627696,248.9835,134.9022633744856,295.94727599999993,10863.496200203588,1712.0,385.08000000000004,219.0,399.8888888888889,8793.856643323496,6614.107247999998,104.87508891169797,395.1557,240.61831275720166,474.39872,15143.378476646629,1978.0,490.50720000000007,239.0,388.1111111111111,11761.710440290475,7484.694182,118.099046238245,502.99200000000013,273.51028806584367,611.8591720000001,16484.60998331684,1949.0,467.3319000000001,220.0,361.4938271604938,11692.776590458103,7404.150483999999,115.347319396792,481.91260000000005,228.4507696997409,591.0478809999998,15634.160018114864,1753.0,462.50000000000006,218.0,406.8888888888889,11534.064664330714,6670.214883,108.557870134735,472.8149000000001,312.03189300411526,580.368324,15219.852342853415,1782.0,445.63700000000006,205.0,313.44444444444446,10639.739822645524,6715.579038999999,112.51867607539599,458.3140000000001,243.57716049382722,559.6530239999998,15601.382587971406,1570.0,436.48100000000005,180.0,303.8888888888889,10942.525168408316,5687.070863999998,105.80428860109402,451.93549999999993,218.63374485596708,557.3189839999999,13987.892196884692,1459.0,395.562,140.0,265.6666666666667,10108.371385708915,5517.175991999998,72.463426154735,404.25780000000003,246.22839506172843,501.08575199999996,10262.338170064608,551.8888888888889,5.663563888888886,1.1479730810167625,21.63888888888889,148.45130315500685,49.7514424956436,2570.3078907499994,9.774473687940304,5.730799999999998,83.55915849548677,4.522436222222222,1754.5716079641854,-8.441358024691349,-0.5856406635802474,-0.6872488297288827,3.065586419753086,20.11366407559823,0.2839078553469363,-35.120356326388766,0.35840785208601966,-0.5377999999999997,-7.531584526786602,-0.4655550617283946,67.59104261953249,19.793209876543216,1.4425564043209873,0.020371025390022474,-4.713734567901234,-24.767756439567137,-15.288903213960829,87.76977599305566,-0.3406798302844445,1.1490000000000005,22.88550739875169,0.9810913580246914,-232.31977846357245,-88.87962962962963,-0.4655442129629634,0.3501240922126379,-1.469907407407407,-63.423068129858244,-5.1466415833881705,-414.6959994791665,0.37803465009155807,-0.7022999999999979,-15.126108895437124,-0.033523851851852554,-339.6813956032428,-11.993827160493815,-1.485567438271603,-0.6039305781167503,-1.3132716049382713,16.84049687547629,-2.0858341963255533,-59.86434406944424,-0.5695268142026002,-1.453,-4.770371969795327,-1.0496602345679,-209.7421149734418,135.50308641975312,3.4067815586419754,0.6547710960211687,-1.1010802469135803,46.027930193568054,19.742741862982392,642.4080205902776,3.399380781372491,2.9674999999999985,58.80104600040267,1.8882867160493835,718.5166847073664,-150.06481481481484,-3.3028030092592595,-0.30093487000361197,-5.252314814814816,-87.32727480566986,-0.9082360844689344,-681.3287688541666,1.6049196227861087,-3.4378999999999986,-35.4039085477033,-2.4695752592592592,-193.88115084961254,-356.72839506172835,-1.1010436728395043,-0.35159120817954886,-5.353395061728396,30.330970888584048,-18.78657503284402,-1670.4004705138889,-6.414706543326982,-1.9008000000000007,-0.2726325688082013,-1.5947005432098753,-1014.9191306540786,217.58024691358025,3.021995524691358,0.6646810037264084,1.1496913580246908,31.85169943606157,-6.579906657762717,985.1569068472222,-3.477959254240387,3.8774999999999986,7.333089421026982,2.8285826172839506,35.44595047831335,0.7312881077121481,0.5824091631151039,0.4570514271077817,0.307940631828917,0.30942861735805127,0.16951265106677066,0.19379162011855117,0.0937146426818184,0.12440396946297522,0.0519349717212681,0.08288390474918757,0.02656437881163466,0.05364474398623748,0.01601842023498122,0.034412207439274575,0.007702061590308596,17.00212551748336,5.692607979293741,3.5585127539537615,2.1902858142406436,0.4973831946799005,-0.482366546881536,3.230831435463459,0.9726413775013121,6.028574172105222,0.7730833712270179,14.540250347411538,10.953978053345113,35.451527693597214,11.704402134688381,2.212382491142166,0.7391486646786993,3.5048974196505562,2.2405595057471794,7.009373552990173,1.2914683888427014,3.7177819340206746,2.436443892567885,22.45705487509975,14.699737916097698,0.32377041346162055,0.6515425307858199,0.7774694493380311,0.8970985923185771,0.9211488001585687,0.9211488001585687,1.869340362441764,713.5202167690672,0.0,2.0,1.0,0.0,11.0,1.0,1.0,0.0,0.0,3.3918254537731722,1.5917491363557348,0.9001769987935191,0.24319131950454143,0.1111111111111116,0.1111111111111116,2.585097617264637,1217.850737888542,68.4299218221605,33.82918716357061,69.53432712705349,,12.0,438.0,18.545492540416618,9.589074368143644,6.4208216229260096,26.983490668546775,0.0,0.0,42.46456947923127,0.0,10.05365155780638,28.30840717530574,11.161904761904761,30.75,16.5,1.5,14.25,0.0,0.014699792960662551,2.25,0.2526336571112687,0.09748677248677229,-0.15514688462449638,0.04882815734989643,0.18090925631112098,0.0,0.68994708994709,0.9103519668737057,0.4373134328358213,0.5924603174603177,0.8615238095238092,16.034041225774377,0.44497931178633543,0.6169793117863354,23.25102294951105,6.45823484712381,4.51099940346295,39.28506417528543,10.96923425058676,0.533090743688879,0.21757679180887377,0.0,0.3135665529010239,0.125,0.49753661150584155,-1.1547954513710275,-0.07486859015970092,-0.03207765142697298,-0.07698636342473518,0.5024633884941582,1.1662306292543365,0.055547747658312704,0.03239529525706491,0.055534791869254106,-4.968896433718223,0.5347727433493489,0.7770331744046766,1.5758611586676523,0.9180168615341914,0.5918575777244612,1.1034665977429157,0.5357925421863148,0.7845597972063645,0.7242656560378345,0.6815074309976735,0.76740714392198,0.7788223273870207,0.6347230705708523,0.6381589946179987,0.9324848485701867,1.2610691673375254,0.9603371255837282,1.240454266401682,0.6378064996302184,0.8888600434336844,0.6367170909968496,0.4764730588362575,0.6461605772660487,0.9518006559900412,0.9893295751962955,1.0001476298541898,0.7944843725147582,1.0890885750962773,1.1656619325269588,1.081734052440648,0.9891919093493401,0.9156419235991017,1.00430073753519,0.9737666595613303,0.9518995047064849,1.0119585956537938,1.072116509503262,0.9089939429076105,1.104777106361546,1.005447038823162,0.8364359267834564,1.0494351826041333,1.0727519511919845,1.0109170700771164,0.9584495066015972,0.6942128854087173,0.9279196491068233,1.0411556595538933,0.7458196700966102,0.6088003101402711,0.5620701223440223,1.0967696555119841,0.8459401886018881,0.7904455974197571,0.7464384082903949,0.7815109471766823,0.6468394524754966,0.5393481699882542,0.6643861612313632,0.8043672996666597,1.0923617615392023,1.2732336028237459,0.9588085676192365,1.1134676564156945,1.2693017870436625,0.9589003252507992,1.0878619354803052,0.8908941286025602,1.2745596385865139,1.2403198783197091,1.2812996485291843,0.999966572798404,1.5560197302194483,0.8541220854752333,0.916595564238205,0.9473684210526316,0.7502148381552565,1.1299078533843974,1.5558477874933168,1.3888940618091428,1.0188149996510087,0.6694075076436417,1.0394970252759048,1.3199285904125895,0.7891519512654487,0.817794082158174,0.6805475206149233,0.7956851215371237,0.9531403183032571,0.9893097802797406,0.7967087430265463,1.200259043381451,0.7243267561585728,1.083634654182662,0.7182225610713867,1.0345603360853388,5.0,0.1197836955412713,2.666666666666668,1.3125,1.4755555555555557,0.576388888888889,0.3673469387755103,0.4722222222222222,0.15671453766691856,0.11250000000000002,5288.159557697781,5686.44368988595,2214.62291928491,2074.9751111117866,10.93902448450528,0.4552394566154081,5.9591489222764515,0.8356689230593131,1.0,0.125,1.77809954766914,3.5781758650865774,4.269748002648793,4.926733681937771,5.0588138903312005,5.0588138903312005,0.20833333333333331,0.0133092995045857,0.08333333333333337,0.041015625,0.05088122605363985,0.018593189964157708,0.012667135819845177,0.019675925925925923,0.007835726883345929,0.009375,0.465019795818167,19.32638888888889,9.474609375,6.094182825484765,142.33548360230927,1.0,4.034168150240986,115.22905076945183,,88.94439852944299,89.40951586929793,90.86268090074911,88.91359155004312,132.6190222679855,90.1681741567034,90.75013327830007,114.44785588223807,-0.014882005016895274,-0.10061024272286041,-0.5824827673147708,0.13784130728931757,0.13182808851856448,0.005552294691585623,-0.013294577521133357,0.03567671922952153,-0.09130747275508913,-0.08769868342583424,-0.10016116761728742,0.037481660700172365,0.02188341358047862,0.15541519880231536,0.010827586822046754,-0.13291703835860838,-0.10180125759607732,-0.1875085792911584,0.020835807173807598,-0.021266867706043253,0.12233627866313822,0.16711559407999393,0.13236936590158463,-0.08079148234986748,-0.07730219448359171,-0.039455937393170736,0.14639678145868668,-0.032605905006418474,-0.20507110449912677,-0.04965459966799229,-0.07744367142409433,0.018564337869958987,-0.0588232009492565,-0.08689092136084614,-0.003558137273405761,-0.09292699662383042,-0.01057248107781628,-0.12760666210569896,-0.2559328871802007,-0.02952503209242618,0.05518762032747301,-0.020395994541316784,-0.011330624831745002,-0.028345986458903554,-0.12334488463475697,-0.027773394809196123,-0.11291381335801336,-0.05815476787525743,0.12108132854924697,0.29664301348349775,0.2812790820758608,-0.02509363954490302,0.15290337517102562,0.19569576646965017,0.12325525533330078,0.17150866780123283,0.25536132085123303,0.3470328882183975,0.20590890431822254,0.2019507175368508,-0.14186675536803778,-0.30426099252256833,-0.13677106196089994,-0.12663950438131388,-0.3069158400905072,-0.009524594286523582,-0.1383008940996747,0.08566695201637925,-0.31299067434245464,-0.2210602020443873,-0.2849070688886469,-0.05765246775498749,-0.33242256032672773,-0.09998139737717722,-0.15751095441632249,-0.12723271593618193,0.10507678071459589,-0.19419873424965237,-0.3342257564601568,-0.33751095372413165,-0.1705790266130883,-0.0016779852491531264,-0.18134732423788905,-0.2974848149151877,0.22891730583139042,0.3098238341224568,0.33619586991839784,0.030850138722100278,0.1245831782097029,-0.07679357162169607,0.22255177799172807,-0.2066055192957529,0.39286864188302256,0.05095698623937855,0.36316771079389665,0.011730224938752773,8.98680446248457,17.30585200673694,6.261207601505868,22.639944563036952,38.673719172888205,45.75763656159242,50.61960110371306,50.75273795377364,50.75273795377364,45.85477711841053,33.13013324890766,2.0677530994564735,7.11093967571641,3.545951094329992,12.724643869502877,3671.2673945303677,2975.4937075372636,1730.9489648528076,49.0,32.0,38.0,46.0,56.0,52.0,53.0,57.0,53.0,353.0221632560004,24.0,4.727387818712341,5.53338948872752,6.3818160174060985,7.213031659834869,8.066207568006265,8.908829791587868,9.764627703152708,10.613319760626345,11.470988265506703,0.8425925925925927,1.014777777777778,1.1147475817202424,0.8191171981239419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7328062042581506,1.0078431372549017,1.0357691996439269,0.7033542359273581,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15.160178952647087,0.0,6.606881964512918,0.0,0.0,4.794537184071822,4.794537184071822,0.0,0.0,47.46734805431147,23.762552697081826,5.687386274683562,22.153474525092225,261.0592506938556,-605.9253294489538,-39.283818709223596,-16.831259151359824,-40.39502196326359,263.6443483111202,611.9254084395881,29.1461031129369,16.99792801221078,29.139305163789903,0.5,0.7870440103684656,0.20625436729978353,124.99328439804904,0.1470658641430386,80.9582410482872,0.21295598963153436,6.0,0.25,0.3439314007791377,0.6921136890938134,0.8258820005043813,0.9529603776772979,0.9785081773758587,0.9785081773758587,3.907300000000002,,2.436974789915966,1.5617404430033197,1.1811081541617314,2.461932029432675,-4.379468967281545,1.5821438808236374,1.5538105393115786,-1.7487252810003127,88.48550000000004,19.4324647167844,0.0,0.0,0.0,6.4208216229260096,11.923670568519249,58.073287598410914,0.0,0.0,3.8918202981106265,0.0,5.176149732573829,0.0,6.645090969505644,0.0,8.204398418149381,0.0,9.811865562988816,30.333333333333336,12.163659523255902,0.0,0.0,0.0,0.0,0.0,2.6919911140280024,0.0,36.53200000000001,0.0,22.110349475720515,0.0,0.0,0.0,0.0,0.0,-1.8337825041887994,40.13091294192873,5.316788604006331,11.374772549367124,0.0,23.65201993525732,20.7467589448697,0.0,5.563451491696996,42.46456947923127,10.045266627482652,0.0,0.0,29.488219132461907,26.381023353293422,28.4967000706919,230.4581015389037,,177.67688620758892,178.68322822181298,181.62265674461457,177.6131020540486,267.14216147826727,180.19877058463953,181.36515259665998,229.65602710404153,28.4967000706919,230.45810153890358,,175.45182226896995,177.25729129559252,180.54425364733643,175.36525107065353,269.61751350325255,178.75420443258315,179.94645601728854,230.64443704547648,4.732410020465403,169.34238827196785,,134.232853139067,133.80512867545153,135.9655806097931,134.21390660960515,201.6094219943778,135.15092098576338,136.1072202516719,172.71792231155914,1.2389869595953,10.019917458213204,,7.725082009025606,7.768836009644042,7.896637249765851,7.722308784958635,11.61487658601162,7.834729155853893,7.885441417246086,9.985044656697458,2.3662050102327017,115.22905076945183,,88.94439852944299,89.40951586929793,90.86268090074911,88.91359155004312,132.6190222679855,90.1681741567034,90.75013327830007,114.44785588223807,36.28235294117646,0.0,0.0,12.23645380804772,0.0,0.0,8.520064234098742,37.287691187181366,-0.7328418927386282,3.0913302311665407,4.641664899498894,0.0,0.0,0.0,0.0,0.0,0.0,25.320752493384894,412.96482481564345,64.01158371608904,128.8143311431168,153.71092809535656,177.36241254975974,182.11730005192322,182.11730005192322,483.0,119.67959807356071,111.73877418933242,56.7293249813283,75.63,75.63,1.0,7.921138691969902,5.584962500721156,4.083697638902262,4.720665023464462,,4.723337570124174,4.721542203011578,4.716790860238587,4.723319339003495,4.6947460297667245,4.72169559724905,4.721914488544452,4.709930652877315,0.17755207125662006,0.20524630536802008,,0.20536250304887715,0.20528444360919904,0.2050778634886342,0.2053617103914563,0.20411939259855325,0.20529111292387173,0.2053006299367153,0.2047795936033615,2.239911984968419,2.3848588074096204,,2.3854247849608905,2.385044607091538,2.384037788802225,2.3854209251571836,2.379353140365804,2.3850770947278193,2.385123452274023,2.382582307474428,238.11999999999975,247.106651209711,124.8549057192852,,123.68555497806717,124.39107445940526,124.76867327215034,123.66972166964052,125.87248043551061,124.29744328153272,124.25263604221551,125.01271897020098,10.743767443900479,5.428474161708052,,5.377632825133356,5.408307585191533,5.424724924876101,5.376944420419153,5.472716540674375,5.404236664414467,5.402288523574588,5.4353356074000425,6.342729152644347,5.660061431794709,,5.6506516208832265,5.6563395519475135,5.659370531913267,5.650523600097393,5.668178457372393,5.655586552306459,5.655226003318307,5.661324606822654,4.641664899498894,22.110349475720515,12.501684820285979,1.8017007590073075,-1.8337825041887994,12.163659523255902,-0.0709077380952381,-0.6619341546433901,0.0,294.2674375155351,136.97872839260825,-317.93120109014177,-20.612361059388626,-8.831422252503934,-21.19541340600945,138.33513841616622,321.0794641308417,15.293065200328122,8.918874003634494,15.289498291944842,1278.0,32.0,1.6377440426709953,0.6875329791543268,0.0,0.0,0.2757834230632086,0.11129449138793661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.30204641611818106,0.10011334708896384,16.81962647737941,13.39541075164739,10.96923425058676,7.390575163894009,9.90171575545764,5.424404834136661,7.364081564504945,3.561156421909099,5.72258259529686,2.3890086991783326,4.6414986659545034,1.487605213451541,2.789526687284349,0.8329578522190234,1.8238469942815525,0.40820926428635557,3.0410380478900305,1.249308260216,4.325560103962709,1.6254460036051601,6.481592348247874,1.9212422674881273,76.96784973294687,50.01706146005914,35.89466900647558,26.95447049362315,26.489056951896384,26.489056951896384,112.0,126.0,44.05630899999999,18.103690999999998,0.3611111111111111,70.07,8.527777777777777,5.166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12.0,12.0,36.0,0.0,0.0,37.0,12.0,2.0,8.0,29.0,14.0,24.0,23.0,0.0,0.0,0.0,16.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,4.0,2.0,0.0,23.0,7.0,0.0,1.0,4.0,0.0,2.0,6.0,0.0,0.0,2.0,0.0,2.0,3.4965075614664802,6.4900594293597464,4.04305126783455,4.471638793363569,4.95758607300644,5.4638318050256105,5.4769864277604166,5.70242739027727,6.075489698928886,6.315018884354105 +49659,Oc1ccc(C2CNCCc3c2cc(O)c(O)c3Cl)cc1,0,30.324324324324323,6.260102702702704,3.4594594594594597,7.28661995328662,160.08501291519957,122.84555437837841,1.6115734723671356,6.384,4.865758762878104,7.850705108108107,234.32615679491911,26.794871794871796,6.430230769230769,4.205128205128205,7.054131054131053,145.62909303521923,102.53931323076921,1.9088263584102567,6.593141025641025,3.3559406985332916,7.884055333333332,280.0471530593011,24.106060606060606,6.216454545454545,3.9242424242424243,5.821548821548822,148.21498999138404,91.41550719696967,1.762966969311318,6.377901515151516,3.0342935528120716,7.705917212121212,250.7203983212276,21.989583333333332,6.1572604166666665,3.3333333333333335,4.517361111111111,153.3360894752337,82.70740557291667,1.5536584146477914,6.301734375,3.1585112311385455,7.720458916666665,215.15224843237903,18.12962962962963,5.977851851851852,2.8796296296296298,3.1028806584362143,155.45643225483292,65.40812348148148,1.4113487791919905,6.130425000000001,2.550449626581314,7.6132936666666655,184.199819280589,17.0,5.932762857142858,2.657142857142857,2.988359788359788,160.0362727019693,60.996471895238095,1.3215217778511998,6.076122857142858,2.459455222418186,7.598983676190476,171.83422148844397,16.820224719101123,6.181022471910113,2.460674157303371,3.1985018726591754,160.22206803836806,59.3604542247191,1.262583810740292,6.29138426966292,3.2119572756276877,7.817951775280897,167.4822020151093,14.131578947368421,6.094144736842106,2.1184210526315788,2.5219298245614037,165.83232930290214,48.71624264473684,1.0738504790392105,6.176981578947369,3.1903021442495128,7.789882842105262,137.8274024526742,13.604166666666666,6.106270833333333,1.8333333333333333,2.689814814814815,170.28398569705544,47.10675854166667,0.9170779521517084,6.175093749999999,3.2891375171467767,7.849671791666668,120.21533973144291,11.624543462381297,0.13113265157048934,0.0341867686946464,0.6515704894083272,3.523252982712442,1.3959954224969922,54.5563253323594,0.2562566379644002,0.13129700511322126,1.7466515564613665,0.09538332505478447,51.23204747553679,-0.409713247551086,-0.024849075686913514,-0.017616587474636906,0.22438238654454878,0.48220546719045204,0.24507468460993465,-1.6852914515554953,0.04620764064019573,-0.02360462812084443,-0.28046412285280786,-0.016052928658388105,6.25552673305675,0.08675874892091079,-0.005946410784248615,-0.0018742171588592503,-0.0467383845762224,-0.013541250778487847,0.041077239593683416,0.42435069507714773,0.0011625221673601973,-0.0047026152688315215,0.04720942635709255,-0.003978186643646106,0.203796287014347,1.0046795105916726,0.009973711042123202,0.003835829885925853,-0.05528670562454344,-0.16833904099294483,-0.027398941142474934,4.61731629292215,0.0030986239133373463,0.012403248265157036,0.16281712217955177,0.011054029111882148,0.32431934521547784,-0.9683873062251442,-0.0031290479668858043,-0.002430275346792643,-0.09976868760652545,-0.3985480308469964,-0.3149449967615726,-4.722262893920946,-0.048605479031436555,-0.00311434745556363,-0.08530683649372299,0.00030734286313339993,-9.62509130219825,-0.5009913388291768,0.001655688197850353,-0.0005169725469419324,-0.0567184945563324,0.004020322338640619,-0.06837230022344458,-2.3346575735434296,-0.018411772504576356,0.0009228404466242705,-0.02696033869058748,-0.0021390910779505437,-0.5649240983595434,-1.7469242701553667,-0.007189377959800065,0.003167925458666041,-0.07853678154315871,-0.40312161539006364,-0.12801363060611767,-8.255430162605364,-0.03683236394386522,-0.011435845076780395,-0.15578027180453577,-0.007518660615063889,-8.607224940302963,-0.6252546999346428,-0.01616970704701856,-0.0010534301322668847,0.05362154473107531,-0.12444628127416178,0.029906493630106418,-2.8152386584618103,0.006534225833729117,-0.016755966706393427,-0.17518218260407828,-0.013757660047672137,-0.5345179948648987,0.6823259069880695,-0.012132989408327258,-0.005872878873544478,0.03311419527635743,0.4582284987690392,0.05281752008794046,3.484083400748711,0.02132514952950619,-0.00926676862673485,-0.22212317005026386,-0.017772643185415143,8.802317818709763,,,0.4816326530612244,1.2857142857142858,0.6666666666666666,0.09523809523809523,0.6190476190476191,0.047619047619047616,0.7805909131849132,0.016134579138270936,0.02842029342398522,0.9139785223412916,0.2511155046368915,0.22866484776641358,1.6945694355262049,0.4797803524033051,2.042350678248535,1.6087902178897817,0.09703843700858088,0.2519155297206087,0.08460649362956374,0.4335604603587534,8.245455974378391,1122.0,231.62380000000005,128.0,269.60493827160496,5923.145477862384,4545.285512000001,59.628218477584014,236.20800000000003,180.03307422648987,290.47608899999994,8670.067801412008,1045.0,250.779,164.0,275.1111111111111,5679.53462837355,3999.0332159999994,74.44422797800001,257.1325,130.88168724279836,307.47815799999995,10921.838969312743,1591.0,410.286,259.0,384.22222222222223,9782.189339431347,6033.423474999999,116.35581997454699,420.9415,200.26337448559673,508.590536,16547.546289201022,2111.0,591.097,320.0,433.66666666666663,14720.264589622437,7939.910935,149.15120780618798,604.9665,303.21707818930037,741.1640559999998,20654.615849508387,1958.0,645.6080000000001,311.0,335.11111111111114,16789.294683521955,7064.077335999999,152.42566815273497,662.0859,275.4485596707819,822.2357159999999,19893.580482303612,1785.0,622.9401000000001,279.0,313.77777777777777,16803.808633706776,6404.629549,138.759786674376,637.9929000000001,258.2427983539095,797.893286,18042.59325628662,1497.0,550.1110000000001,219.0,284.66666666666663,14259.764055414757,5283.0804259999995,112.369959155886,559.9331999999999,285.8641975308642,695.7977079999998,14905.915979344727,1074.0,463.15500000000003,161.0,191.66666666666669,12603.257027020562,3702.434441,81.61263640698,469.4506,242.46296296296296,592.0310959999999,10474.882586403239,653.0,293.101,88.0,129.11111111111111,8173.631313458662,2261.1244100000004,44.019741703282,296.4045,157.87860082304528,376.78424600000005,5770.33630710926,430.108108108108,4.8519081081081055,1.2649104417019168,24.108108108108105,130.36036036036035,51.65183063238871,2018.5840372972978,9.481495604682808,4.857989189189187,64.62610758907056,3.5291830270270257,1895.585756594861,-15.978816654492356,-0.969113951789627,-0.6870469115108393,8.750913075237403,18.80601322042763,9.557912699787451,-65.72636661066431,1.8020979849676335,-0.9205804967129328,-10.938100791259506,-0.6260642176771362,243.96554258921327,5.726077428780112,-0.3924631117604086,-0.12369833248471052,-3.084733382030678,-0.8937225513801978,2.7110978131831054,28.00714587509175,0.07672646304577302,-0.31037260774288045,3.1158221395681083,-0.262560318480643,13.450554942946901,96.44923301680058,0.9574762600438274,0.3682396690488819,-5.307523739956171,-16.160547935322704,-2.630298349677594,443.26236412052646,0.29746789568038523,1.1907118334550755,15.630443729236971,1.0611867947406861,31.13465714068587,-104.58582907231558,-0.3379371804236669,-0.26246973745360547,-10.775018261504748,-43.043187331475615,-34.01405965024984,-510.0043925434622,-5.249391735395148,-0.3363495252008721,-9.213138341322082,0.033193029218407194,-1039.509860637411,-52.60409057706356,0.17384726077428708,-0.054282117428902904,-5.955441928414902,0.42213384555726496,-7.179091523461681,-245.13904522206013,-1.9332361129805173,0.0968982468955484,-2.830835562511685,-0.22460456318480707,-59.31703032775206,-155.47626004382764,-0.6398546384222058,0.28194536582127766,-6.989773557341126,-35.87782376971566,-11.393213123944472,-734.7332844718774,-3.278080391004005,-1.0177902118334552,-13.864444190603683,-0.6691607947406861,-766.0430196869637,-47.51935719503285,-1.2288977355734108,-0.08006069005228324,4.075237399561724,-9.457917376836296,2.2728935158880876,-213.9581380430976,0.4966011633634129,-1.2734534696859006,-13.31384587790995,-1.0455821636230824,-40.623367609732306,32.751643535427334,-0.5823834915997084,-0.28189818593013494,1.5894813732651567,21.99496794091388,2.535240964221142,167.23600323593814,1.0236071774162971,-0.4448048940832728,-10.661912162412666,-0.8530868728999269,422.51125529806865,0.7134649135331399,0.5743312459154741,0.43806032175953946,0.312293187323158,0.27961189238205575,0.16976572434956522,0.18082275089257493,0.09631990670325294,0.10964665113173035,0.053862811910694065,0.06995145584173731,0.029253625060768673,0.04636378699665082,0.01697717540896273,0.02974880976927894,0.009386235448310675,17.00110273681925,5.681432118156302,3.5166868886840033,2.1787470220376317,0.4307979022389444,-0.30950413682422667,3.280941246536151,0.9923730694122155,5.016434654437715,0.7740096862399874,14.540219386528772,10.941391646517483,35.45051724440874,11.692948226097432,2.2080832999633384,0.7842571965334387,3.458958520640955,2.2292180989517636,6.004987270424787,1.236814875429165,3.6725745724432537,2.4254128141243942,22.455863545283833,14.707149342435622,0.29525251398689417,0.6341553612482776,0.7954306143655971,0.8956504560769609,0.9190506582996556,0.9190506582996556,1.7586107127648507,670.2125734025041,0.0,0.0,2.0,0.0,9.0,1.0,3.0,1.0,0.0,3.587969932490905,1.7267652814035332,0.8410652832098302,0.29067263519360687,0.1621621621621605,0.1621621621621605,84.72840209743507,1072.0557924876043,84.35879441628938,28.97448087804335,58.144894696453214,,10.0,344.0,0.0,15.319582184522117,28.189074859754434,12.965578028838586,23.23511088100356,0.0,18.19910120538483,12.13273413692322,5.316788604006331,11.600939890232516,10.114285714285712,27.0,14.0,2.0,13.0,0.0,0.018367346938775612,1.0,0.17615993717688622,0.07800803719171057,-0.09815189998517565,0.0897959183673468,0.15475829383886253,0.0,0.6185328185328187,0.8612244897959181,0.4423728813559325,0.5405247813411082,0.7714285714285714,16.392409176883177,0.33882616190368964,0.5968261619036896,19.193548969167125,5.273425597374721,4.801961803094685,35.5859581460503,10.075387400469406,0.5592417061611374,0.16949152542372886,0.0,0.39548022598870064,0.25,0.41402141091743655,-0.9008064400275141,-0.09628643126931621,-0.02434612000074362,-0.06005376266850092,0.5859785890825634,1.274942002622838,0.0749206242414865,0.034457891962779395,0.057951909210129,-3.9655257238129122,0.6631606422985085,1.0145667448149729,1.3793810621204614,0.7657813038978959,0.720072770660193,0.9606363524617407,0.663303541202356,0.7540083337420589,0.9516758043676088,1.0229868199868084,0.9725635924210846,0.7812804828923968,0.6734036354496328,0.6877444199110907,0.686648893357012,1.2783326538931923,0.8823766343462267,1.0890801572431619,0.6790239390770354,0.9379489362042248,0.6728036230599855,0.5481904032523309,0.6551070113816572,0.9378458385350437,0.741528685434209,0.7188280202940499,0.6066130691394548,1.1899523542600898,0.9666757851493512,1.054581305683203,0.7464915620778635,0.9500641728626092,0.7014746466672898,0.6770623047128967,0.6678738342413403,0.9578053814895304,1.0873235306438778,0.7380567095549666,0.7194024989817017,1.1406950672645741,0.9908589077444181,1.1963952670506464,1.0915953194350319,1.1961400900047392,0.7911675353017449,0.7167323546296934,0.7455330255899053,1.1909293789576305,1.1578484353399525,0.7243170978706625,0.6774832557165245,1.0239590006406152,0.92352870196685,1.0215732094668113,1.1571007167048706,1.0817559240955197,0.8013615433622377,0.6218218118381614,0.7873585250686017,1.0255726940793726,1.1544001253930891,1.148687427402623,0.9351825112190787,0.9731445558522701,1.0948427458075474,1.0487088823731747,1.153925601811288,1.107742372833225,1.1648931238547484,1.206832261363903,1.1716931486313762,1.1258400931762824,1.1101248156208041,1.3687653467946828,1.282766794970702,0.7368126032570216,1.0957031486802702,0.8720444426106384,1.105807726835686,0.9352473668007689,1.345327580524334,1.403969560423236,1.3706617575459827,0.9867806433275693,1.1255891039336436,1.536477986370367,1.7346488595035399,0.8399663677130046,1.0459254780004608,0.7921144768898137,1.1152678575196884,0.8894207639057377,1.4790996274734962,1.6800667501835749,1.6231936913245644,0.8144144477844423,4.0,0.0,3.1111111111111125,1.8125,1.4127777777777781,0.8891666666666668,0.5854875283446712,0.28210034013605445,0.17083175862937766,0.051250000000000004,4215.416479624374,4700.137365728055,2017.3249396318843,1837.7133154473622,10.975047494784695,0.4265756264599173,6.2933597342695675,0.7439091293354301,1.0,0.25,1.6214834331380452,3.482688084225417,4.36838808241912,4.918780730435343,5.04729120346679,5.04729120346679,0.17391304347826086,0.0,0.09427609427609432,0.04647435897435898,0.04414930555555557,0.02963888888888889,0.024395313681027965,0.018806689342403628,0.018981306514375292,0.012812500000000001,0.4634475007109655,15.879017013232515,6.629935720844812,3.2,127.17826429669596,1.0,3.983188903559724,83.78279679901479,,65.3104657296909,65.9248791138723,66.4897793469294,65.29118763637558,77.84039646009467,66.0472724625272,66.16562008429118,72.7258672212646,-0.03524553449148152,-0.18949571589769987,-0.515304257971466,0.3443716223985284,0.13686370793028244,0.17555550731790648,-0.030890853467285963,0.18031782906093932,-0.17978040017355662,-0.1605724517951451,-0.1682991094005994,0.12210182964176385,0.00746341129023042,-0.045346530501994525,-0.054822881202947676,-0.07173189292023371,-0.003843394398565971,0.029425053214149722,0.007778212562741088,0.00453655435658099,-0.03581662250998276,0.027028531353292133,-0.04170735966020465,0.003977906350739922,0.08642743810481338,0.0760581817165644,0.11220217740340398,-0.08485145739910312,-0.04777943616848822,-0.019626813025981803,0.08463393135064116,0.012091877650278915,0.09446710726159634,0.09321671605148972,0.11589058261004366,0.0063303998414340115,-0.08330540544314582,-0.023861699808638497,-0.07108818527131583,-0.15312032884902843,-0.11311933397986278,-0.22560603830507991,-0.08655756899227952,-0.18967500478246713,-0.023719866670820378,-0.048840214396597005,0.0032221865085629393,-0.18787246999632826,-0.04309772168261551,0.01262605596715438,-0.015122006749438402,-0.08704890027759984,0.0011410825048235676,-0.048977453021406235,-0.04279352686092032,-0.07184895833658039,0.007028648108374429,-0.01543544194081151,-0.02242625822408616,-0.011026771839038711,-0.15027895726044346,-0.0548252313493064,0.09266524973336054,-0.1205345896105205,-0.11441744812764282,-0.09170060914465034,-0.1513193953645694,-0.14373233113665554,-0.08709905505398946,-0.08918795006838069,-0.078825734065629,-0.1680047033922058,-0.05378746287611701,-0.12330801561140295,-0.03081397196898139,0.082295846117536,-0.035321415148098306,0.021423059952885237,-0.05160242449085894,0.0254987573615044,-0.12761880358157648,-0.10029601036109864,-0.14423548392520674,-0.01043327411656015,0.05869700682836919,-0.09252454871474373,-0.1717880659035249,0.050822122571001487,0.13005835828918066,0.037835023838019975,0.06386213476665686,0.08321794002646961,-0.07057867480483536,-0.12717085398548233,-0.18632861850021715,0.17181272762742608,8.45609863544551,20.920688648915117,10.569826538086142,18.47454663191784,32.507642852299384,40.27564273460938,42.756939025024124,42.88647758183983,42.88647758183983,42.889364243219234,33.78459457568542,2.0378071771801984,5.290226124132783,1.7767363662208386,9.104769667533821,3570.2138776104307,2836.162922574142,1095.1833239952362,93.0,33.0,45.0,58.0,77.0,87.0,88.0,93.0,96.0,305.08187105200045,23.0,4.727387818712341,5.594711379601839,6.484635235635252,7.373374309910049,8.27052509505507,9.166283985779263,10.06658381534495,10.965418567609882,11.867258669175468,0.7207207207207209,0.9902702702702705,1.118725337594817,0.6880134651344374,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6971142256028486,0.9806041335453098,1.014143422373576,0.6575091676247792,5.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,3.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,20.63637078852845,5.749511833283905,11.49902366656781,0.0,0.0,0.0,0.0,0.0,0.0,23.733674027155736,47.8550337093144,12.462662452073968,5.022633313741326,204.00062943271834,-443.8540517879285,-47.443180634655036,-11.996055453727795,-29.590270119195225,288.7290315301534,628.2017406996757,36.915613781634356,16.978425424315557,28.55462457725799,0.5,0.6718667235202943,0.23346754117536442,126.13468778835441,0.13482554069703984,180.38805689027402,0.3281332764797058,5.0,0.043478260869565216,0.3112578843370219,0.6685323468300102,0.838550184793086,0.9442028530073014,0.9688715589178555,0.9688715589178555,2.734400000000001,,1.5399159663865545,1.159418383437444,0.8763130556879909,1.5514816830561249,-3.5311196570708336,1.1303849759075346,1.09553156643077,-1.4330194326798964,81.30510000000002,15.319582184522117,0.0,5.316788604006331,0.0,12.338727669087403,13.08951281182515,52.04482313114036,0.0,17.248535499851716,3.8501476017100584,0.0,5.187385805840755,0.0,6.725033642166843,2.70805020110221,8.358666283188,5.198497031265826,10.044856897998653,26.666666666666675,8.577181279919376,0.0,0.0,0.0,0.0,0.0,2.7513497662439486,0.0,36.64000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.39283749100823,5.316788604006331,0.0,17.248535499851716,28.409094996347264,6.4208216229260096,0.0,22.60826052125238,30.33183534230805,5.022633313741326,0.0,0.0,25.456498209974185,25.7932263473054,27.13743642857767,167.56559359802964,,130.47427279591642,131.73933742932198,132.8961003076028,130.4346151124601,157.36227847117544,131.9868892130632,132.22690382892227,146.24273010103332,27.137436428577672,167.56559359802964,,129.08101549299533,130.69033984430718,132.10324563817085,129.03089358969513,159.21191257726014,130.96415994914688,131.23570860215153,146.88475387520907,4.9151631777195295,120.44203726753861,,94.92768448227261,95.51536343709495,96.1278062669067,94.90839973442547,109.12915028424585,95.67316154797717,95.8169555664077,103.43009552762678,1.2922588775513175,7.979313980858554,,6.213060609329354,6.273301782348666,6.328385728933467,6.211172148212386,7.493441831960736,6.285089962526818,6.29651922994868,6.963939528620634,2.470219495148913,83.78279679901479,,65.3104657296909,65.9248791138723,66.4897793469294,65.29118763637558,77.84039646009467,66.0472724625272,66.16562008429118,72.7258672212646,36.28235294117646,0.0,0.0,6.189185633100976,0.0,0.0,29.094510345804988,37.52330662782231,2.15320279037541,3.3391072215923407,0.0,0.0,0.006574074074073621,0.0,0.0,0.0,0.0,24.32783920211683,331.0486628923901,59.994887026107676,128.85945911634042,161.63035904950743,181.9948870261077,186.74977452827122,186.74977452827122,714.0,118.51617887682414,161.6809980704817,63.07263746327234,72.72,72.72,1.0,8.25317881626464,5.523561956057013,4.058938432121449,4.515539947546398,,4.523947744249857,4.524465551084732,4.5214098787367,4.5238922174685,4.476576241809475,4.52391446602142,4.523580406010092,4.500540211306007,0.19328278248197378,0.21502571178792373,,0.215426083059517,0.21545074052784438,0.2153052323207952,0.21542343892707144,0.21317029722902264,0.2154244983819724,0.21540859076238533,0.2143114386336194,2.142858814232974,2.2494621141593196,,2.251322352131805,2.251436804648183,2.2507612100110554,2.251310078090356,2.2407958672433708,2.2513149960895347,2.251241150231382,2.246134781257483,217.74999999999972,138.69917129195488,114.0551548764409,,113.15926950410555,113.43275716476633,113.73112370318736,113.15239477145612,117.55723721715404,113.46237931250802,113.49154619594134,115.74530607393153,6.604722442474042,5.43119785125909,,5.388536643052645,5.401559864988873,5.415767795389875,5.388209274831244,5.5979636770073355,5.402970443452763,5.404359342663874,5.511681241615787,5.674244697208629,5.478619490828896,,5.470733635716894,5.473147558196717,5.4757744433234805,5.470672881158144,5.508862684958976,5.473408666904201,5.4736656960217065,5.493329484596406,0.0,0.0,32.653504923574374,2.782998078861175,-0.24496159472019152,8.577181279919376,0.6910617441421014,1.4621410462333082,0.0,263.1826014818801,100.51716097659576,-218.70005645446292,-23.37666230911386,-5.910812336607105,-14.58000376363086,142.2653578159908,309.5336307112371,18.189417862861013,8.365773803006407,14.069710486874415,851.0,39.0,1.484192531580609,0.7067324969652934,0.0,0.0,0.5049137875859924,0.18918478011150716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12869425449598476,0.04581997368995358,0.3739052966851507,0.1137454090689641,14.982763184195939,12.060956164224956,10.075387400469408,7.1827433084326335,9.22719244860784,5.602268903535652,8.137023790165872,4.334395801646382,6.35950576564036,3.1240430908202557,5.386262099813773,2.252529129679188,4.033649468708622,1.4770142605797574,2.617895259696547,0.8259887194513394,3.926031285990853,1.6913761502758997,5.941994350511604,2.4105277253780026,9.603736077483788,3.4139627667204078,69.0089366015009,44.1373485156618,28.905791074199513,23.507062604910516,23.047817802551506,23.047817802551506,112.0,134.0,43.07468799999998,17.131311999999998,0.4594594594594595,109.05,7.138888888888889,4.583333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,37.0,0.0,1.0,39.0,12.0,0.0,6.0,33.0,12.0,23.0,27.0,0.0,0.0,0.0,16.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,4.0,4.0,1.0,21.0,5.0,0.0,1.0,3.0,0.0,3.0,1.0,0.0,0.0,1.0,0.0,2.0,3.4011973816621555,6.906911172824753,4.02535169073515,4.59511985013459,5.126935749792416,5.679319002477826,5.880358390154076,6.085353262564929,6.386037214049723,6.674048318295524 +54120,CC(SC(=O)c1cccs1)C(=O)NCC(=O)O,0,42.42857142857143,6.6454321428571435,3.1785714285714284,9.103174603174603,159.633662628105,168.91332739285718,1.9065199269049646,6.719778571428571,8.293895747599452,8.228730785714287,245.6972128873546,35.035714285714285,6.516214285714286,3.7142857142857144,6.94047619047619,144.8502170600197,135.5171941785714,2.114849966999999,6.68469642857143,3.6989638447971784,8.026749571428573,286.78990856962645,33.15555555555556,6.407533333333336,3.2222222222222223,5.148148148148147,150.36006663084345,126.5989444222222,1.8950849837643555,6.55528666666667,3.9337448559670793,8.011838177777781,242.90894795507305,29.28301886792453,6.470064150943398,2.69811320754717,3.6436058700209646,157.61586750541403,108.45240577358489,1.5551493844517545,6.576711320754715,3.787975256878124,8.160861301886792,194.73020944842534,25.23404255319149,6.696531914893616,2.6595744680851063,4.773049645390071,159.59325796717886,92.73507408510639,1.4977939402850218,6.775159574468087,4.568623588127135,8.318281531914895,202.15888763753046,24.82608695652174,6.589130434782609,2.5,5.434782608695652,156.93750675983898,90.50523117391303,1.5090287801976954,6.6732260869565225,6.058641975308642,8.233039608695652,194.04964513656364,25.08888888888889,6.268217777777777,2.422222222222222,2.688888888888889,155.98626780147848,92.2802280666667,1.3992073408431773,6.3836400000000015,3.4141975308641976,7.951073599999997,184.93730475424115,16.5,6.441190476190477,2.0952380952380953,3.6031746031746033,163.41809616772866,56.43779907142856,1.1538709843593806,6.492380952380953,4.155864197530865,8.088521476190474,152.27954916798905,17.866666666666667,6.263133333333332,2.033333333333333,4.555555555555555,166.33172496538833,64.06857423333335,1.1568687626829999,6.307390000000001,5.484773662551441,7.941074066666668,147.3714353174646,16.709183673469386,0.188388137755102,0.03481462134912013,0.5956632653061226,4.61281179138322,1.6716835693431658,73.62714239158163,0.4196251133147487,0.16983520408163258,3.809137132219142,0.12738841836734688,51.27320401239365,0.26020408163265374,-0.01978443877551019,-0.02262560630802072,0.09821428571428566,0.7094671201814057,0.13837080629283965,1.511115216836745,0.05879609164795925,-0.017890051020408186,-0.24375804848688437,-0.015430714285714282,3.886971530995374,0.7225623582766443,0.03442535430839002,0.002210407055679762,-0.08772675736961454,0.12634164777021917,0.06784167280729049,3.6114126663548847,0.008640530524290986,0.030692414965986407,0.43389637748103366,0.023127402267573677,0.4864995102500361,-0.11349634193299919,-0.012698784655371585,0.007559586048766347,-0.02558240277242972,-0.8753155350190391,-0.12052413320055794,-1.1383368679967214,-0.03053658795594008,-0.011655824027724292,-0.5363208273448365,-0.006896956103195988,-4.333068747295115,-2.7821320017368647,-0.07026792498914458,-0.013939528206491547,-0.05766934433347806,-1.0162228011772083,0.22565605732188193,-12.19364258915002,0.03616447300579381,-0.06540663265306124,-0.9595013318347214,-0.051528732957012546,-0.2903358207249649,-3.3660159716060334,0.055775371561668126,0.007134545092493532,-0.0529614019520852,0.8808044957113279,0.010713716513797728,-14.55436226502884,-0.03153272874071069,0.04173529281277727,1.2199548767440416,0.033456187222715185,-5.8763276535121545,0.20668934240362785,-0.015105677437641725,0.003998166639692369,-0.06629818594104307,-1.0457923910304863,-0.5716308629505037,0.5623540822278912,-0.1245094298027519,-0.006733934240362786,-0.550156031777137,-0.0008252136054421935,-7.781977518257655,-3.0612244897959187,-0.05699468537414963,-0.008286841270473294,0.009778911564625868,-0.634920634920635,-0.26158372792718015,-13.936664241071439,-0.029860981814758953,-0.05390629251700681,-0.9115488788107836,-0.040809367346938755,-9.507029464295753,1.6622448979591833,0.0690297193877551,0.002749783089343759,0.06267006802721091,1.7705215419501132,0.38898501640958777,8.179937988180258,0.054469860876967896,0.061757891156462595,1.5143196579043137,0.043918814965986354,12.137205000817422,,,0.49411764705882355,1.088235294117647,0.5,0.0,0.5882352941176471,-0.08823529411764706,0.806124180863108,0.0241944592338307,0.02925328276324246,0.7073338467529264,0.20670061278478583,0.26405866694450675,1.5134580276160343,0.4707592797292926,1.934664306195864,1.1807496753675206,0.11496741040784282,0.40526895512419414,0.0,0.7539146308283432,9.75046249400001,1188.0,186.0721,89.0,254.88888888888889,4469.74255358694,4729.573167000001,53.38255795333901,188.1538,232.22908093278465,230.40446200000005,6879.521960845928,981.0,182.454,104.0,194.33333333333331,4055.8060776805514,3794.481436999999,59.215799075999975,187.17150000000004,103.570987654321,224.74898800000003,8030.11743994954,1492.0,288.3390000000001,145.0,231.66666666666663,6766.202998387956,5696.952498999999,85.278824269396,294.98790000000014,177.01851851851856,360.53271800000016,10930.902657978288,1552.0,342.9134000000001,143.0,193.11111111111111,8353.640977786943,5747.977505999999,82.42291737594299,348.5656999999999,200.76268861454056,432.52564899999993,10320.701100766542,1186.0,314.73699999999997,125.0,224.33333333333331,7500.883124457406,4358.548482,70.39631519339602,318.43250000000006,214.72530864197535,390.95923200000004,9501.467718963931,1142.0,303.1,115.0,250.0,7219.125310952593,4163.240634,69.41532388909398,306.96840000000003,278.6975308641975,378.71982199999997,8926.283676281928,1129.0,282.0698,109.0,121.0,7019.382051066531,4152.610263000001,62.96433033794298,287.26380000000006,153.63888888888889,357.7983119999999,8322.178713940852,693.0,270.53000000000003,88.0,151.33333333333334,6863.560039044604,2370.3875609999996,48.46258134309399,272.68,174.54629629629633,339.7179019999999,6395.74106505554,536.0,187.89399999999998,61.0,136.66666666666666,4989.95174896165,1922.0572270000005,34.706062880489995,189.22170000000003,164.54320987654322,238.23222200000004,4421.143059523938,467.8571428571428,5.274867857142856,0.9748093977753637,16.67857142857143,129.15873015873015,46.80713994160864,2061.5599869642856,11.749503172812965,4.755385714285712,106.65583970213598,3.566875714285713,1435.6497123470222,7.285714285714304,-0.5539642857142852,-0.6335169766245802,2.7499999999999982,19.86507936507936,3.8743825761995105,42.31122607142886,1.646290566142859,-0.5009214285714292,-6.825225357632762,-0.4320599999999999,108.83520286787046,32.51530612244899,1.549140943877551,0.0994683175055893,-3.9477040816326543,5.685374149659863,3.0528752763280718,162.5135699859698,0.38882387359309434,1.3811586734693884,19.525336986646515,1.0407331020408155,21.892477961251625,-6.0153061224489575,-0.673035586734694,0.4006580605846164,-1.3558673469387752,-46.391723356009074,-6.387779059629571,-60.33185400382624,-1.6184391616648244,-0.6177586734693875,-28.425003849276337,-0.3655386734693874,-229.65264360664108,-130.76020408163265,-3.302592474489795,-0.6551578257051027,-2.710459183673469,-47.762471655328795,10.60583469412845,-573.101201690051,1.6997302312723093,-3.074111734693878,-45.096562596231905,-2.4218504489795896,-13.645783574073349,-154.83673469387753,2.5656670918367337,0.32818907425470245,-2.436224489795919,40.517006802721085,0.4928309596346955,-669.5006641913266,-1.4505055220726917,1.9198234693877543,56.11792433022591,1.5389846122448985,-270.3110720615591,9.301020408163254,-0.6797554846938776,0.1799174987861566,-2.983418367346938,-47.06065759637188,-25.723388832772667,25.305933700255103,-5.602924341123836,-0.30302704081632537,-24.757021429971168,-0.03713461224489871,-350.1889883215945,-128.57142857142858,-2.3937767857142846,-0.34804733335987836,0.4107142857142865,-26.666666666666668,-10.986516572941566,-585.3398981250004,-1.254161236219876,-2.264064285714286,-38.28505291005291,-1.7139934285714278,-399.29523750042165,49.8673469387755,2.0708915816326527,0.08249349268031277,1.8801020408163271,53.115646258503396,11.669550492287634,245.39813964540775,1.6340958263090368,1.852736734693878,45.42958973712941,1.3175644489795906,364.11615002452265,0.7550881655443509,0.6257621216246928,0.4707592797292926,0.38255362667311327,0.3265130790019386,0.24534887747962653,0.2132875447525487,0.1578626778175332,0.13673446551707158,0.10059101824779638,0.09274789450061634,0.061793222705007485,0.06001015293741667,0.04306354845411155,0.03437700651165649,0.02734837508173297,16.004896254302338,5.750843357700315,3.5554970718343237,2.2160152373185817,0.4560252820964789,-0.3654905029716526,3.138853663341444,0.9725500798228276,6.024414729587433,0.650224875646577,14.540278704685868,10.311224118299906,32.062825718798315,11.762178925739931,2.9366625488626275,0.7414425446463766,3.5015557587626915,2.289590338284419,7.010451091156763,0.609830089099839,3.714473254406411,2.493499861880077,24.440944700230506,14.700472358341559,0.37759673554577106,0.7617110999379607,0.8910248212287867,0.905184811455255,0.905184811455255,0.905184811455255,2.236268369614869,415.9502052367053,0.0,4.0,2.0,0.0,3.0,1.0,0.0,0.0,0.0,2.9026081697815673,0.9649839288804953,0.31267455364869523,0.24124598222012494,0.24124598222012494,0.24124598222012494,-20.361477376243442,901.6610586237393,66.47573214562516,32.20218066513354,68.15098187220968,,10.0,264.0,23.671179453198107,14.383611552215466,5.11527693018572,4.877147193701299,11.761884949391115,11.336785877934737,24.43653410707976,0.0,5.316788604006331,5.106527394840706,8.4,18.5,8.5,0.0,10.0,0.0,0.00588235294117645,-1.5,0.2523809523809522,0.048214285714285654,-0.20416666666666655,0.06687306501547974,0.18569811320754703,0.0,0.6857142857142859,0.9352941176470587,0.43333333333333374,0.6375000000000003,0.868421052631579,13.704111074672836,0.41130580697512187,0.49730580697512183,12.024675394799749,3.513910417341359,4.488997338056615,25.728786469472585,8.002907755397974,0.5283018867924529,0.2182539682539682,0.0,0.2976190476190476,0.3,0.522362207360476,-1.034547514927929,-0.09642938607314153,-0.03694812553314032,-0.09404977408435719,0.47763779263952394,0.9459700270197413,0.04958596234301439,0.033784643822133614,0.055645295707043595,-1.4864408115875487,0.7502290076335879,0.7240184757505773,1.605816206263642,1.0406852248394003,0.5528911146614232,0.9990743721651687,0.7396771538557863,0.7788008976988932,0.7095086923998956,0.654271829564564,0.7544021118121382,0.8250648981785137,1.0131297709923666,0.5095236644384455,0.7989248535845426,1.277087794432548,0.7680471918397445,1.0557240180356764,0.9935691011427673,1.089682634178485,0.5104380897448608,0.553788850003606,0.5055514249565346,0.9738463905318531,1.1879533342935333,1.0371128087047672,0.751337266892005,1.0843198254615973,1.1806446676142757,1.1098489915980303,1.1833478661567391,1.2229957244677871,1.035175834963348,1.125342704200553,1.017584379208124,1.0751090434094215,1.0547409452655516,1.50248132089222,1.444214244161346,1.188300150348535,1.3031960652548513,0.8442719815558558,1.0556427954710368,0.8154800345190844,1.4952535659615889,1.4553560560370666,1.5363427245989363,0.8952771448180981,1.2602090939263193,0.7471281329970028,0.6621650037457737,1.1085560003724049,0.8465316776292939,0.966665633612238,1.2499253042336111,1.132091277348668,0.7888154535733333,0.8157663019537907,0.7925844597127201,1.0823348073554373,1.0009465648854963,0.9364443117396982,0.7311466858146932,1.043254817987152,1.1314243578714513,1.2892628806200477,1.0035170241378188,1.3001646126115118,0.907339647978082,0.9910274824889911,0.8665283423308036,1.154773280003129,0.9611450381679391,1.4012504037000248,1.1928903875169217,0.7708779443254816,1.1688275777313508,1.0192920793131781,0.9829477453928082,0.8301793375115069,1.4187267369028203,1.303176670912456,1.4129763322283249,1.108456879381197,0.8444885496183206,0.6443137708933804,0.8565969873958802,0.6205567451820129,0.6306193928966449,0.648521654328883,0.8460645107486833,0.744719032684829,0.6714250308672575,0.5540319302324834,0.6412365143084404,0.7877653343440544,4.0,0.04000000000000001,2.222222222222223,0.7777777777777778,0.81,0.4755555555555555,0.2040816326530612,0.14413265306122447,0.08063271604938271,0.05530864197530866,3556.9702804995927,3855.525875176083,1713.7404077692286,1596.9455313093226,11.256112708017314,0.4521007198527089,6.167216049979462,0.8251529728806564,1.0,0.3,1.9047467522760366,3.8423709931771084,4.4946803684089085,4.566108939837479,4.566108939837479,4.566108939837479,0.23529411764705882,0.010000000000000002,0.10101010101010106,0.04093567251461988,0.045000000000000005,0.02797385620915032,0.01360544217687075,0.014413265306122445,0.01007908950617284,0.009218106995884776,0.5075296513659809,15.058823529411764,7.43801652892562,5.444444444444445,106.21319133758873,1.0,3.7120979989895098,72.1942893537554,,49.8826064165235,62.089342457830384,63.326022387659606,49.88356172031422,70.31603071848451,61.84502308339603,61.0079402965292,69.02931468349223,0.015572519083969508,-0.10501955702343248,-0.6498880479305439,0.16488222698072794,0.1538036131252304,0.08277332434822458,0.020523887899926464,0.14011575995419034,-0.10533770732132307,-0.06399298319430019,-0.12113121807680433,0.07580902356045124,0.04324342663273964,0.1827363161959899,0.063490768246877,-0.14727575541280039,0.027389291712752444,0.04058284357843315,0.049050018091803683,0.02059107105396233,0.18071880404273466,0.11390936120702291,0.1815502740671585,0.00948837740142864,-0.006792452830188655,-0.06740755976833086,0.21713825271741466,-0.042947759686477294,-0.18975747864981996,-0.0720974563672442,-0.015460831848430891,-0.07277111637747825,-0.06863020002685565,-0.14079850861982085,-0.05414115499344221,-0.0845094202860374,-0.16650316712684748,-0.372995485949813,-0.4003929287843264,-0.09681534466262698,-0.2203044145602305,0.13498730349461185,-0.16561341637162624,0.08618281379805759,-0.3851182268525614,-0.2518946676187873,-0.4045009241610991,-0.0056625254129776155,-0.20144706272817792,0.29606626099873745,0.20492956166170806,-0.08891164696024581,0.19094741679178845,0.006408938097063034,-0.19767658763153292,-0.07514499904837416,0.2457399397166025,0.3202706635120052,0.2626313102203561,-0.11460816164505228,0.012369804919423227,-0.08018380359637388,0.11484159484599461,-0.11130145134427787,-0.22671473242936926,-0.34194920224950687,0.007637863754606203,-0.29671586816912204,-0.03964981392860146,-0.14443061845259034,-0.006477932735317783,-0.15177474605208233,-0.18320610687022906,-0.30253861019763745,-0.2380276145293399,0.016416845110635285,-0.13764286592110117,-0.15647921216929891,-0.1892870453527873,-0.07116109324076866,-0.3174035254263088,-0.23930587090198294,-0.32035382705873444,-0.18541906337660768,0.09948091603053434,0.3664228555488527,0.07898357020083614,0.10521056388294078,0.38382696325427057,0.23269057825484696,0.11109949024879628,0.1298060081454458,0.36363421524066475,0.3975492625601787,0.3447630132225893,0.2367163362344909,1.9324128441272832,5.521503731939494,3.4996426185119476,24.447764155580135,42.62486188096284,46.614051107801224,46.68605110780122,46.68605110780122,46.68605110780122,32.889293205329686,20.07274448124785,1.954445976933328,6.889572237111301,0.0,12.816548724081834,3027.9480700571276,2608.1193142542925,692.3284400337336,8.0,22.0,24.0,25.0,23.0,21.0,16.0,16.0,12.0,273.0129498320003,17.0,4.3694478524670215,5.14166355650266,5.958424693029782,6.755768921984255,7.573017256052546,8.379997952238393,9.198369000194964,10.010052342764158,10.829629600460658,0.8452380952380955,1.0164285714285712,1.1161596589027698,0.8127103726346087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7301694396920447,1.003641456582633,1.0365206534179587,0.6775472289261725,3.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,10.423315998847038,6.544756405912575,0.0,11.022456659537227,0.0,14.383611552215466,0.0,0.0,11.336785877934737,17.828252017852726,18.37016703861815,0.0,10.127085223683473,237.81342547993683,-470.9936608736799,-43.90096047502889,-16.821202174059998,-42.817605533970905,217.45194810369338,430.66739775005937,22.57477167059627,15.380978491073545,25.33337633823878,0.5,0.7018895112755381,0.2423257725964949,130.95165480711353,0.16282107886285227,32.64482137392123,0.298110488724462,5.0,0.29411764705882354,0.3962151293503378,0.7992692562696263,0.9349591285190845,0.9498173140674063,0.9498173140674063,0.9498173140674063,1.2108,,2.392857142857143,1.2793445674312873,0.7439853384312681,2.390279899742839,-3.9990830134694604,1.219323745410037,1.27695440230708,-1.6001447901325956,66.34800000000003,19.490138947056174,0.0,5.316788604006331,0.0,12.1736752296728,6.544756405912575,22.389944101090435,0.0,0.0,3.5553480614894135,0.0,4.812184355372417,2.3978952727983707,6.220590170099739,4.442651256490317,7.697575346802343,6.293419278846481,9.214830277249035,23.66666666666667,5.220693063433413,0.0,0.0,0.0,1.306783142269253,0.0,0.576744981943395,0.0,28.459999999999994,0.0,33.29281333138296,0.0,0.0,0.0,0.0,0.0,-1.7496162446460055,31.252470449277553,5.316788604006331,0.0,0.0,33.892983778224526,9.589074368143644,0.0,16.595421577463746,17.512796907389134,0.0,0.0,0.0,22.755890433769043,20.444744311377253,20.4261342080599,144.3885787075108,,99.79947990253277,124.02817379008061,126.56451708844494,99.80421775632364,142.27619262727555,123.54659631439087,121.86565066337522,138.24688169523534,20.4261342080599,144.38857870751076,,98.25116057480167,122.89934034822949,125.90805943688795,98.25756605649003,144.68617360878585,122.47072242138202,120.73892619075133,139.65877415711702,4.498372025113455,109.7120491844847,,76.80826082740826,97.15059513786929,99.07038968672882,76.80972645977745,108.62228291871035,96.60504286760191,95.10388324075264,107.0639180390945,1.2015373063564647,8.493445806324164,,5.8705576413254565,7.295774928828272,7.444971593437938,5.870836338607273,8.369187801604443,7.267446842022992,7.168567686080896,8.132169511484433,2.276609637268643,72.1942893537554,,49.8826064165235,62.089342457830384,63.326022387659606,49.88356172031422,70.31603071848451,61.84502308339603,61.0079402965292,69.02931468349223,28.101960784313725,0.0,1.5628543083900226,0.0,0.0,0.0,8.389467039927899,29.022578295702843,-0.433605363441673,2.2243882275132276,0.0,0.8835978835978834,-0.6074537037037044,0.0,0.0,0.0,0.0,18.971322409932828,319.5459905652895,53.332909063729026,107.58638780895903,125.85105031544944,127.85105031544941,127.85105031544941,127.85105031544941,201.0,102.21637117569443,135.71938301834078,61.634494019148114,137.01,83.47,1.0,6.2162317795382895,5.087462841250339,3.583504136308324,4.062141683512181,,4.053210377391975,4.071228721989513,4.071613906126837,4.053188102406393,4.040881106495593,4.0702359806027,4.068894296029718,4.057933591703127,0.2107943609593132,0.23894951079483415,,0.23842413984658678,0.23948404246997135,0.23950670036040217,0.23842282955331726,0.23769888861738786,0.23942564591780588,0.2393467232958658,0.23870197598253687,1.8069693817782566,1.932338593846474,,1.9301375039469746,1.9345731022495762,1.9346677090485045,1.9301320082917492,1.9270910149230527,1.9343292293279342,1.9339995418700529,1.9313021275470508,185.5599999999998,111.9737598957832,75.8567386801519,,75.94316006034794,74.61347475315986,74.64527180128201,75.94500395493151,76.92920448305469,74.7017896443784,74.80873345981425,75.7061081949183,6.5866917585754825,4.462161098832465,,4.467244709432231,4.389027926656462,4.390898341251883,4.4673531738195,4.525247322532628,4.394222920257553,4.40051373293025,4.453300482054018,5.248892808263069,4.85947479510101,,4.860613417593514,4.842949368678805,4.843375434813449,4.860637697228411,4.87351382768993,4.844132300670029,4.845562886711125,4.85748709774729,0.0,33.86955831332635,11.604684459042774,0.0,-1.5671856890904503,3.4399796125725057,0.0,1.1292489449483496,0.0,228.25327485217446,108.26821799432626,-214.42710497317753,-19.986587171344215,-7.658110891899199,-19.493373179379777,98.99834238991615,196.06795372697067,10.277511858179166,7.002426918820379,11.533409042762976,593.0,19.0,1.282021738317077,0.7788053734255799,0.0,0.0,0.2845177968644246,0.16055713129702165,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.11785113019775792,0.08333333333333333,0.05892556509887896,0.1422588984322123,0.09622504486493763,12.836498814253964,10.637956067619777,8.002907755397974,6.503411653442925,7.183287738042649,5.397675304551783,5.118901074061169,3.7887042676207963,3.4183616379267896,2.5147754561949096,2.133201573514176,1.4212441222151722,1.26021321168575,0.9043345175363424,0.5500321041865038,0.4375740013077275,2.385798572955027,1.493156790571424,2.5716565179827526,1.6153403540685707,3.351166950933868,1.8433113941013932,60.39351591090948,32.09678067376194,25.30190305879519,25.101377707219648,25.101377707219648,25.101377707219648,78.0,85.0,34.14272299999998,19.129277000000002,0.17857142857142858,17.07,7.305555555555555,3.888888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,5.0,28.0,0.0,0.0,28.0,5.0,3.0,5.0,23.0,8.0,17.0,20.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,5.0,2.0,1.0,17.0,7.0,0.0,1.0,4.0,0.0,1.0,5.0,2.0,0.0,0.0,1.0,1.0,3.1570004211501135,3.446011397451948,3.590439381300684,3.899444223221286,4.198141355903744,4.141148628419903,4.191546890178463,3.8528036457681747,4.060443010546419,3.944006051281197 +64139,O=C1Nc2ccc(Cl)cc2[C@@](C#CC2CC2)(C(F)(F)F)O1,0,40.733333333333334,7.447460000000001,4.233333333333333,13.586831275720165,170.0114598410047,169.2164931149771,1.7075223714547003,7.500353333333334,10.51082469643855,8.767136433333333,264.0063008992973,32.84375,6.802468750000001,5.0625,11.128472222222221,147.48957511510926,129.81253085955007,1.962800524374999,6.966500000000001,3.78124196244856,8.1538930625,305.2431679506818,32.24074074074074,7.242592592592593,4.277777777777778,11.938271604938272,159.15882297887222,128.16030185101687,1.6770371981425551,7.323435185185185,7.258887745770464,8.541369925925927,258.2235322492644,29.353846153846153,6.9714,3.8461538461538463,10.683760683760683,160.76310195416337,115.25165516002464,1.5524883728560155,7.07804,5.447657486546376,8.406095200000003,240.6386328055784,33.03389830508475,7.263372881355932,3.9661016949152543,11.783427495291901,159.47879938582778,130.90092796648136,1.58342664043556,7.378389830508475,6.09239206249564,8.614351796610169,260.7730813203631,36.38709677419355,7.873533870967742,3.370967741935484,11.048387096774194,171.24855376545807,145.51737692018068,1.4044011358959196,7.925177419354838,8.561977299880526,9.190501548387095,238.40598995775176,31.54237288135593,7.66,2.711864406779661,5.094161958568739,176.3034019234431,123.5830691130034,1.2757253713728818,7.754201694915254,5.763636046592731,9.132937694915253,207.2095822978813,17.979166666666668,7.086958333333332,2.2916666666666665,1.75,179.6146684110062,62.1589974455,1.127653970746854,7.114893749999998,4.521819272976679,8.599485083333336,159.37721040393635,13.424242424242424,5.961575757575757,1.9393939393939394,0.4579124579124579,166.8633426149692,44.61883484848484,1.1406929591846668,6.081121212121214,2.4055368499812944,7.700928121212123,132.27033488337065,12.288888888888888,0.3363488888888887,0.030803982684546795,0.872222222222222,5.411467764060357,3.5701397474514875,58.49263832895134,0.27262687980717887,0.29649733333333333,4.775489593388542,0.21170643222222224,43.3089980655562,-0.04513888888888856,-0.014753472222222147,-0.021120836621777096,0.05902777777777786,1.1852657750342932,-0.049159474735588515,-0.17665797861338556,0.0021751428488035324,-0.012067749999999988,-0.30076169923495777,-0.010243429097222215,1.5513624738098968,1.4259259259259263,0.15913580246913575,0.004368310106095002,3.39234813079909e-17,2.028526139308032,1.070991628900278,7.040708375488622,0.007821549322334127,0.13160748148148144,2.009313094021726,0.09310203691358024,-3.8288315516008855,1.1829059829059827,0.05584444444444449,0.0018984714695390692,0.12777777777777782,1.8306468291653482,-0.151934339192206,6.00170276301411,0.019531812580091904,0.04761169230769228,0.3858993150408329,0.025698204188034174,7.9846772753946755,-0.26177024482109196,-0.049922787193973674,-0.007818229718857546,-0.19256120527306966,0.5578284624863404,-1.3761723744281484,-0.9784193408279224,-0.07515472604050309,-0.039185355932203465,-0.3476273626241462,-0.044142792674199634,-4.430727706474678,1.347670250896058,0.02249444444444423,0.008270311607582365,-0.24641577060931907,-0.47336873312978417,-0.27638716316491485,6.1380552931433545,-0.017537602164789102,0.022875354838709613,0.5185453155635102,0.013179602186379907,-1.4512985754786807,-2.476459510357815,-0.1554425612052732,-0.0025973716303229234,-0.1417137476459511,-4.4029583129897,-0.564047040876126,-11.716572639898988,-0.035532824940135994,-0.12420264406779659,-2.227101476481325,-0.07331887233521656,-8.68223064718674,-5.131944444444444,-0.18915277777777773,-0.00019012079025219097,-3.2766998990673024e-17,-4.761433470507543,0.6951169491920144,-26.293720396904618,0.03351552131148768,-0.1748502499999999,-2.3835951497908514,-0.0906883822222222,-10.414404888132388,-1.121212121212122,0.0003636363636366777,-0.0015810956167330238,0.02272727272727267,0.11326100511285657,-0.04041859783001686,-4.687292200631292,0.0024973366620513315,-0.00488945454545446,0.08275950712736187,-0.004417931212121197,-5.062887942875741,,,0.4589569160997734,1.130952380952381,0.47619047619047616,0.023809523809523808,0.6547619047619048,-0.17857142857142858,0.8291231549988188,0.028472136678120038,0.04075785096383432,0.9422382579086649,0.22104820393309832,0.24639459093035762,1.7713614129074837,0.46744279486345597,1.9968156330869817,1.391156802378512,0.09711631400025615,0.18170060640630492,0.32684191030190873,0.6056588307084697,10.500913028933342,1222.0,223.42380000000003,127.0,407.60493827160496,5100.343795230141,5076.494793449313,51.22567114364101,225.0106,315.3247408931565,263.014093,7920.189026978918,1051.0,217.67900000000003,162.0,356.1111111111111,4719.666403683496,4154.000987505602,62.80961677999997,222.92800000000003,120.99974279835392,260.924578,9767.781374421818,1741.0,391.1,231.0,644.6666666666667,8594.5764408591,6920.6562999549105,90.56000869969797,395.4655,391.979938271605,461.23397600000004,13944.070741460277,1908.0,453.141,250.0,694.4444444444445,10449.60162702062,7491.357585401602,100.91174423564101,460.07259999999997,354.0977366255144,546.3961880000002,15641.511132362595,1949.0,428.539,234.0,695.2222222222222,9409.24916376384,7723.154750022401,93.42217178569804,435.325,359.45113168724276,508.246756,15385.611797901422,2256.0,488.15909999999997,209.0,685.0,10617.4103334584,9022.077369051201,87.07287042554702,491.36099999999993,530.8425925925926,569.8110959999999,14781.17137738061,1861.0,451.94,160.0,300.5555555555556,10401.900713483143,7291.401077667201,75.26779691100002,457.4979,340.05452674897117,538.8433239999999,12225.365355574997,863.0,340.1739999999999,110.0,84.0,8621.504083728298,2983.631877384,54.12739059584899,341.5148999999999,217.0473251028806,412.7752840000001,7650.106099388944,443.0,196.73199999999997,64.0,15.11111111111111,5506.490306293984,1472.4215499999996,37.64286765309401,200.67700000000008,79.38271604938271,254.13062800000006,4364.921051151231,368.66666666666663,10.09046666666666,0.9241194805364038,26.16666666666666,162.3440329218107,107.10419242354463,1754.7791498685401,8.178806394215366,8.89492,143.26468780165627,6.351192966666667,1299.269941966686,-1.444444444444434,-0.4721111111111087,-0.6758667718968671,1.8888888888888915,37.92850480109738,-1.5731031915388325,-5.653055315628338,0.06960457116171304,-0.3861679999999996,-9.624374375518649,-0.32778973111111087,49.6435991619167,77.00000000000001,8.59333333333333,0.2358887457291301,1.8318679906315083e-15,109.54041152263373,57.833547960615014,380.1982522763856,0.4223636634060428,7.106803999999998,108.50290707717322,5.027509993333333,-206.75690378644782,76.88888888888887,3.6298888888888916,0.1234006455200395,8.305555555555559,118.99204389574763,-9.87573204749339,390.1106795959172,1.2695678177059737,3.094759999999998,25.08345547765414,1.6703832722222214,519.0040229006539,-15.444444444444427,-2.9454444444444468,-0.46127555341259524,-11.36111111111111,32.91187928669409,-81.19417009126076,-57.72674110884742,-4.434128836389682,-2.3119360000000047,-20.510014394824623,-2.6044247677777785,-261.412934682006,83.5555555555556,1.3946555555555422,0.5127593196701067,-15.277777777777782,-29.34886145404662,-17.136004116224722,380.55942817488796,-1.0873313342169244,1.418271999999996,32.149809564937634,0.8171353355555542,-89.9805116796782,-146.1111111111111,-9.171111111111118,-0.15324492618905247,-8.361111111111114,-259.7745404663923,-33.278775411691434,-691.2777857540403,-2.0964366714680236,-7.327955999999999,-131.39898711239817,-4.325813467777777,-512.2516081840176,-246.33333333333331,-9.07933333333333,-0.009125797932105167,-1.5728159515523052e-15,-228.5488065843621,33.36561356121669,-1262.0985790514217,1.6087450229514086,-8.392811999999996,-114.41256718996087,-4.3530423466666655,-499.89143463035464,-37.00000000000003,0.012000000000010363,-0.052176155352189786,0.7499999999999981,3.7376131687242666,-1.3338137283905565,-154.68064262083266,0.08241210984769394,-0.16135199999999716,2.7310637352029414,-0.1457917299999995,-167.07530211489944,0.7262243988870029,0.5384713361006994,0.42679559531011196,0.28649875834602606,0.28383292082947353,0.1489838224114578,0.16186266884793038,0.07152729564861068,0.10085013627326724,0.03567777395602023,0.06633555511972403,0.01917858155641989,0.042800356196701514,0.010613136347504347,0.02911706220150699,0.005488121052603844,17.001102817662506,5.662075093943543,4.124522594747779,2.1615427360294426,0.55075869324944,-0.44638738437766584,4.115718534326141,0.9777925315697591,7.014087801193453,0.7740062596525252,17.430696809151986,10.922490790513836,35.45051729056449,11.67331447215696,2.2078242817781657,0.5269709087706617,4.007144299861877,2.211508614834192,8.007386582568959,1.1300333490797334,4.030593877099695,2.4075018000496793,22.45586137751039,13.302789675525212,0.3723345155088334,0.745261912674153,0.8110944275100862,0.8539995393207929,0.8794063943110294,0.8794063943110294,1.8802808583150539,673.0222975253698,0.0,0.0,1.0,2.0,5.0,2.0,1.0,2.0,0.0,2.9529060474650244,0.9958100993642409,0.6503258334775639,0.4251629167387829,0.2918295834054492,0.2918295834054492,-122.85828160304953,906.369458825363,54.012284039432366,30.212315294178772,61.699611776309666,,8.0,282.0,17.870589399365578,17.96578232709628,22.191377126283278,0.0,18.90801031431363,12.13273413692322,0.0,0.0,21.894520195517668,11.600939890232516,9.638095238095241,23.75,10.0,0.5,13.75,0.0,0.04104308390022661,-3.75,0.3363572773742262,0.1196825396825395,-0.21667473769168671,0.031086373943516765,0.2475330721364366,0.0,0.7787301587301587,0.9839002267573692,0.4423728813559325,0.6590476190476192,0.9528138528138524,17.411586254975195,0.5979148702405208,0.8559148702405208,19.787003416081962,4.642012282595065,5.17428640953751,37.19858967105716,9.816298692132575,0.46646692786356336,0.19762845849802363,0.10375494071146242,0.259387351778656,0.35714285714285715,0.6242159879287718,-1.1440452646545085,-0.08309977134240804,-0.03813484215515029,-0.08171751890389349,0.375784012071228,0.688726222744583,0.026118575759737896,0.022957540758152765,0.043045388921536434,-4.330134402970328,0.4891783453887885,0.5799911385003668,1.890908474423081,1.1429140127388537,0.3471696322649659,0.8443086431240935,0.48779446288163636,0.8379903741131218,0.5628530456148003,0.5851459932567227,0.618982405944481,0.7730712990357502,0.553546313039984,0.3626402405497525,0.8763552634346449,1.0980184005661715,0.4331462028624991,0.6604176191533964,0.5522714230403835,0.8682571883619458,0.3738131386187804,0.3729471453573656,0.4028726738459501,0.9501967691165799,0.797510084851857,0.6372144105555843,0.9785499576247686,0.8610485056344931,0.557239929116957,0.8649335432709098,0.7876736989217239,0.8664849366391256,0.6497553140963086,0.640884667861638,0.7056705858349468,0.7838925765525004,0.7552870322125848,1.0683290812170083,1.5640911907819564,1.3524775990499842,0.7408279021024208,1.4152393466739692,0.7524870441866398,1.1843366752666404,1.0293640658880745,1.0128912772789174,1.1335664790753628,0.927513810165941,0.798037099690836,1.195998826316845,1.0438738224174178,1.3764125744812001,1.1386697080864958,1.285934822946424,0.8048060994315093,1.0246027430331743,1.1493803168260013,1.2249236410086062,1.1956013223863287,0.8369560673309658,1.3992475557053976,1.865135805872814,1.0748772943009322,1.0331426103854044,1.9748308762469886,1.4880603054944779,1.3998689714210417,1.2029195224847191,1.800071257583932,1.91155235129357,1.733105069643408,1.1039858863873648,1.4191907775768537,1.841590267546265,0.56332567813584,0.7157643312101912,2.047226873022794,1.0154349571810504,1.4660687045977412,0.8799538713775217,1.8546826915437864,1.857002578984909,1.6310211247242372,1.2879822752761765,1.4159132007233275,0.5078401335313801,0.3996439310422425,0.5877243775332948,0.9407803650964545,0.3539136891294568,1.3909044851500818,0.9521805760657205,0.6102468565987064,0.49549357896576424,0.5628434909746199,1.4133301854361704,7.0,0.0,3.8333333333333344,2.4722222222222223,2.239444444444445,1.1422222222222218,0.5764172335600907,0.12152777777777778,0.04081632653061224,0.0,4830.447297475972,5075.732277201123,2084.343305708947,1991.6103950208706,10.019388989982756,0.4020133132832631,5.991461225045941,0.6722780326273295,1.0,0.4166666666666667,1.953984548143494,3.911080496244278,4.256564762130955,4.481727678869736,4.6150610122030695,4.6150610122030695,0.3043478260869565,0.0,0.1161616161616162,0.06681681681681682,0.0589327485380117,0.030058479532163736,0.022169893598465024,0.011047979797979795,0.01020408163265306,0.0,0.6197394421646628,15.879017013232515,5.570987654320987,3.2,122.9633050682897,1.0,4.021056538765102,79.661111611963,,61.72746506634014,62.05662465617423,62.95798472450204,61.506219911133684,90.2638601667239,62.3945529754489,62.795506549403925,74.86689049262041,-0.0036731464737793586,-0.04386359732288543,-0.685652788409488,0.0676751592356689,0.21902851993429584,-0.013769621979274218,-0.0030201745665821246,0.007978460709163925,-0.040701040593956954,-0.06298028575988299,-0.048385063173092345,0.03582078882225865,0.11603375527426164,0.4731271834874577,0.14180991305018553,3.88931632830469e-17,0.37485692010959687,0.29998591222228654,0.12036913664063217,0.028689575026006546,0.4438740814357457,0.4207554125557163,0.43976952394083935,-0.08840729923618272,0.0962581722075393,0.166031303474567,0.061630714735191085,0.14649681528662428,0.33829025857335404,-0.04255697253886573,0.10260612163297696,0.07164301845036775,0.1605805076640114,0.08080832498830984,0.1213860340391524,0.1843653197265932,-0.021301376160848352,-0.14842560461219612,-0.2538058081294683,-0.22077080859332832,0.10308265461564685,-0.38546736872429627,-0.016727221899711212,-0.2756688045348202,-0.1321609050970783,-0.07279407814131165,-0.20850945439326188,-0.10230501522496432,0.10966575278539352,0.06687830757744875,0.2684818937952225,-0.2825148962399837,-0.08747510911431615,-0.07741634297710932,0.1049372274614134,-0.06432822096336555,0.07715197496563075,0.10858474412370486,0.06225414149224173,-0.03351032441992473,-0.20152021332025621,-0.46214679560491406,-0.08431934457702212,-0.1624743603584153,-0.8136347669354039,-0.1579901854762873,-0.20030849991766894,-0.13033500205580367,-0.418899700282172,-0.46636086895983403,-0.3463233099042349,-0.20047175032875555,-0.41760849909584086,-0.5623707525915552,-0.0061719548474998805,-3.756725998930666e-17,-0.8798783764600906,0.19470300838733762,-0.44952187400119986,0.12293549827218887,-0.5897194690902219,-0.49913105309471,-0.4283685727934292,-0.2404674629592736,-0.09123787604800271,0.0010811284819103515,-0.051327636199659354,0.02605674580196867,0.020929812400448278,-0.011321292915457809,-0.08013473720010479,0.009160273058245854,-0.016490720137295644,0.017330057056754725,-0.02086819548063528,-0.11690152552622253,6.12024192913017,11.879835510346402,3.138033853154327,25.256217916588177,44.56712195618353,47.39283766907412,48.35333522248015,48.48773522248015,48.48773522248015,41.933128294826616,29.214292849948748,2.0394425940053793,3.8157127345324033,6.863680116340083,12.718835444877865,2874.188359775381,2112.8715538163146,1716.8931000939376,57.0,36.0,45.0,60.0,80.0,85.0,88.0,74.0,68.0,315.0273908680002,23.0,4.77912349311153,5.659482215759621,6.5998704992128365,7.51479976048867,8.455955881945048,9.383873422737057,10.324661954349473,11.258536314572247,12.199224248701334,0.8888888888888891,1.0666666666666664,1.1457255934566573,0.8760752909832651,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.717288163672655,1.052549019607843,1.0651735858218012,0.7218768912409251,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,3.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,2.0,0.0,2.0,4.736862953800049,0.0,0.0,0.0,5.601050810983688,5.316788604006331,4.794537184071822,13.171245143024459,0.0,17.521374209088158,36.961178770092495,16.503990851599717,5.687386274683562,308.6965893233268,-565.7703071691403,-41.09573686516481,-18.859010238971347,-40.41216479779575,185.83830772027727,340.5991516562227,12.916547174267556,11.353305055207425,21.28744697851392,0.5,0.8532277481170479,0.22638655939119195,28.05283201695943,0.24265402057917446,0.5841254993646574,0.14677225188295207,4.0,0.0,0.3982123730030248,0.7970588339068628,0.8674668161422672,0.9133539033620828,0.9405265763074837,0.9405265763074837,4.073100000000001,,2.289915966386555,2.044435805040231,1.764288450359314,2.4055830227098447,-8.443439396322345,1.9495534929111575,1.787536766211832,-2.674003950523993,69.7887,22.70264528089633,0.0,0.0,5.917906046161393,24.61899257427918,5.316788604006331,28.78518601082315,0.0,11.840868637711289,3.8501476017100584,1.9459101490553132,5.25227342804663,3.713572066704308,6.859614903654202,5.41610040220442,8.571491964823617,7.085901464365611,10.343257464336283,26.66666666666667,3.809741906021668,0.0,0.0,0.0,0.0,0.0,-0.19104828042327981,0.0,31.999999999999993,0.0,11.49921201814059,0.0,0.0,0.0,0.0,0.0,-1.1877366780045355,34.37176780369972,5.316788604006331,23.653168601779846,0.0,12.26953858838189,10.337913764783737,17.75877468387268,18.405094737549014,18.19910120538483,5.022633313741326,0.0,0.0,26.282258729497954,21.51864491017965,26.1613491078597,159.32222322392602,,123.23684289778632,123.91854114043986,125.75130009777052,122.78333667724738,183.1931813721315,124.61012555742235,125.42077150202579,150.497782113962,26.1613491078597,159.32222322392596,,121.32537457853073,122.26040233863624,124.32306659033685,120.76686906152302,188.97115972977008,123.03191558697048,123.95592020131355,152.40778493576485,5.126757652219918,106.36253932313129,,83.34326629252566,83.65225951299098,84.91171932483414,83.11812356972439,115.5429592854808,84.03110579526933,84.44271510280666,97.23911134135113,1.2457785289457,7.586772534472668,,5.868421090370777,5.900882911449517,5.988157147512882,5.8468255560593985,8.723484827244357,5.933815502734397,5.972417690572657,7.166561053045809,2.56550801740414,79.661111611963,,61.72746506634014,62.05662465617423,62.95798472450204,61.506219911133684,90.2638601667239,62.3945529754489,62.795506549403925,74.86689049262041,31.576470588235296,0.0,0.0,5.7816662292489,40.80136054421769,0.0,0.0,31.95520757465404,1.5189217652081406,2.2296351410934743,4.590756172839506,0.0,-0.06903061224489826,0.0,-7.843016975308642,0.0,4.670649880322499,21.656306737227755,421.95089656981054,58.61953644430482,117.33241488732833,127.69694286392864,134.45183036609208,138.45183036609208,138.45183036609208,637.0,120.1755277908778,72.58400047379364,74.03826944490044,38.33,38.33,1.0,7.987280309416593,5.523561956057013,3.9664898375846454,4.509203828635451,,4.513151845719134,4.507975803526096,4.509614202463518,4.513361180044598,4.470188371733074,4.50957198782986,4.509978071213507,4.504323262315121,0.18888046845641168,0.21472399183978338,,0.2149119926532921,0.21466551445362364,0.2147435334506437,0.21492196095450464,0.2128661129396702,0.21474152322999332,0.21476086053397653,0.21449158391976766,2.1198188764249157,2.2480579479892535,,2.2489331113009574,2.2477855734404386,2.2481489518939637,2.2489794934033047,2.2393678937942436,2.248139590820189,2.2482296359734977,2.2469750052637116,188.97999999999988,140.5383008697514,115.78597169657496,,114.63124812069157,115.06929084347122,115.0866622521476,114.53824093079434,120.23480639625308,115.02485850598475,115.09679087258407,117.0524116284325,6.6923000414167335,5.513617699836903,,5.458630862890074,5.479490040165296,5.480317250102267,5.454201949085445,5.725466971250147,5.477374214570703,5.480799565361146,5.573924363258691,5.687417400408614,5.4936807600133015,,5.483657783052202,5.487471820718529,5.487622774091455,5.482846093892457,5.531383895597288,5.4870856106548285,5.4877107788572665,5.504559141858001,45.39211671705719,11.49921201814059,2.3364369173595367,-3.2719009826152683,4.601619268077601,3.809741906021668,-4.537780962179111,0.0,0.0,248.9030809440985,152.6612360187232,-279.79316060621915,-20.323275999545327,-9.326438686873972,-19.985225757587088,91.90352837520496,168.43816639744904,6.387683326985262,5.614605546581635,10.527385399840565,807.0,37.0,2.7894539238153198,0.8690574661907009,0.3221687836487032,0.03901424933289241,1.188556899226886,0.1388649143446482,0.5750932787274806,0.02718643442529901,0.28867513459481287,0.28867513459481287,0.2041241452319315,0.14433756729740643,0.14433756729740643,0.07216878364870322,0.18832268782514922,0.07289841211758173,0.45318754611210477,0.1348467642798536,15.25071237662706,11.307898058114688,9.816298692132575,6.5894714419586,10.217985149861047,5.363417606812481,7.283820098156867,3.218728304187481,6.051008176396034,2.140666437361214,5.306844409577922,1.5342865245135913,3.6380302767196286,0.9021165895378696,2.562301473732615,0.4829546526291383,5.107369830736254,1.362002827750034,8.14084813524183,1.7701265224631053,14.476341726406197,2.479351445492936,64.85367380877636,37.92614587355084,33.28782267545249,31.619177068303717,31.110672909474776,31.110672909474776,118.0,143.0,35.936136999999995,16.051862999999997,0.5,109.07,7.930555555555555,4.340277777777778,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,6.0,6.0,30.0,0.0,0.0,32.0,6.0,1.0,4.0,27.0,8.0,23.0,24.0,1.0,0.0,0.0,14.0,1.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,2.0,1.0,1.0,21.0,7.0,0.0,1.0,2.0,0.0,3.0,0.0,0.0,0.0,4.0,0.0,1.0,3.4011973816621555,6.330667427126727,3.979681653901961,4.457250055911469,5.036140584504618,5.56044121750313,5.7872807434568925,6.066180593275793,6.210725571157967,6.274703168286032 +3822,O=C(c1ccc(F)cc1)C1CCN(CCn2c(=O)[nH]c3ccccc3c2=O)CC1,0,24.19607843137255,6.3885235294117635,3.450980392156863,8.627450980392156,163.7508271409996,96.34501066960337,1.509944017778,6.443156862745097,6.156318082788671,7.850149333333332,226.61515827854882,25.685185185185187,6.39174074074074,4.203703703703703,7.648148148148148,146.56637600189256,98.22660607102225,1.8433354224074077,6.537574074074073,3.2309670781893005,7.774275629629629,272.5346579911826,21.78125,6.353717708333332,3.71875,6.125,154.54410510669996,81.55936221531665,1.5959239093655624,6.4601968749999985,3.2210648148148153,7.783832291666665,229.62582930804862,17.68888888888889,6.201999259259259,3.066666666666667,4.474074074074074,159.44972903356393,64.45798978164147,1.3507456407098444,6.2870451851851845,3.175102880658436,7.712613214814815,189.66029656904553,15.433566433566433,6.231356643356644,2.6363636363636362,3.6783216783216783,162.3923868402173,54.412058718086705,1.191767272442133,6.292665734265734,3.5992618492618496,7.786748671328671,163.48416897707733,13.977443609022556,6.128503007518797,2.526315789473684,3.2706766917293235,165.61397369648657,48.8631044950015,1.1409758172482483,6.178612030075188,3.0743525480367584,7.713317383458647,153.24922719236054,14.75,6.006025862068966,2.6724137931034484,3.0948275862068964,160.9921648516162,52.40635444510344,1.2282837920622847,6.082850862068965,3.0229885057471266,7.563077034482759,163.91859802421348,13.747826086956522,6.138147826086957,2.582608695652174,2.5565217391304347,164.84513096060982,47.55699034866087,1.1403080434206607,6.194391304347826,2.97487922705314,7.714631791304347,152.95093606298647,13.97938144329897,6.27759793814433,2.6391752577319587,2.8969072164948453,167.17277056969775,48.14811052961649,1.1551940987761031,6.322712371134021,3.1815578465063004,7.836350020618555,156.47196959002335,7.562475970780469,0.1669225682429834,0.01660189579894822,0.6074586697424067,4.307574009996155,1.9266888186669198,36.226453486158434,0.23116238470498343,0.15191257208765852,2.6498782519543758,0.09993003306420604,49.02671803302173,0.32604980990217497,-0.0028047396300568015,-0.010357732655965403,0.14599085821692512,1.075505147592806,-0.27105220493511645,1.5444519957634972,-0.007407780047141755,-0.0008051646802511992,-0.018796189499764995,-0.003085389636464619,0.29250334643780146,-0.03285995770857333,0.012811520809304122,0.003228569468710635,-0.0774341599384852,0.2692233756247596,0.03918541406636741,-0.2103255659329518,-0.006834153235368259,0.010389695069204152,0.1345716391131616,0.008758985726643586,-1.823824669962602,-0.026963988209662882,-0.007874623435430817,-0.0014172327263549053,-0.09794523473877566,-0.08941859968388233,-0.07805359829324172,-0.19139911493742623,-0.017354401635762694,-0.0056198923490965065,-0.015709769746678596,-0.005873018685121094,-1.5402743268611003,-0.7028845817773154,-0.010238501329504787,-0.00039925723187516987,-0.027039089322826355,-0.33006132660111903,-0.22997821688193595,-3.420434618287577,-0.027708719925791773,-0.009711365451157833,-0.05930814667838892,-0.005607742100268068,-5.858641815852861,-0.05385146834791737,-0.005751006986902098,0.0006428911683788907,0.019402601081712354,-0.0824523823977475,0.15879786558127984,-0.10468137456203098,0.0252356176036624,-0.005879725264718883,-0.23124998193291757,-0.00380596111963876,3.35049157275089,0.23282490819180932,0.016025893555529015,0.0007163414347832837,-0.05167773667952645,-0.11065041297113827,-0.22162544753409133,1.0982473720254993,-0.025359725314817647,0.014981968142226462,0.24993205531029178,0.008975503108883927,-3.251045614122408,-0.8629022282399746,-0.026145586145796765,-0.0004069606717969306,-0.013937783126891,-1.093933771291978,-0.1746012876494291,-3.9702630702392163,-0.009417109141149203,-0.023479085301639835,-0.4172600839142136,-0.01607679930461527,-2.8915925333000905,-1.594010233970281,-0.04205622500465719,3.7668675548304734e-05,0.006650891607906555,-1.2897854512736975,0.1581846185973406,-7.524184773364367,0.017070493210611833,-0.04021968751114755,-0.628456739477679,-0.022391010626364994,-1.4783510303235623,,,0.465024630541872,1.2758620689655173,0.6206896551724138,0.05172413793103448,0.6551724137931034,-0.034482758620689655,0.8250950434937505,0.013425393762776114,0.025287462728293356,0.9813786664552805,0.2473635665663635,0.23625288664924302,1.8064737099490311,0.4836164532156065,2.054142442893348,1.5841026268177472,0.22406002907611522,0.18531873704512297,0.06066104995436311,0.4700398160756013,7.7483239173333445,1234.0,325.81469999999996,176.0,440.0,8351.29218419098,4913.595544149772,77.007144906678,328.60099999999994,313.97222222222223,400.3576159999999,11557.37307220599,1387.0,345.154,227.0,413.0,7914.584304102199,5304.236727835201,99.54011281000001,353.02899999999994,174.47222222222223,419.81088399999993,14716.87153152386,2091.0,609.9568999999999,357.0,588.0,14836.234090243195,7829.698772670399,153.208695299094,620.1788999999999,309.2222222222223,747.2478999999998,22044.079613572667,2388.0,837.2699,414.0,604.0,21525.71341953113,8701.828620521599,182.350661495829,848.7511,428.63888888888886,1041.202784,25604.140036821147,2207.0,891.0840000000002,377.0,526.0,23222.111318151077,7780.924396686399,170.42271995922502,899.8512,514.6944444444445,1113.50506,23378.236163722057,1859.0,815.0909,336.0,435.0,22026.658501632715,6498.792897835199,151.74978369401703,821.7554,408.88888888888886,1025.871212,20382.14721658395,1711.0,696.6990000000001,310.0,359.0,18675.09112278748,6079.137115631999,142.480919879225,705.6107,350.6666666666667,877.316936,19014.557370808765,1581.0,705.8870000000001,297.0,294.0,18957.19006047013,5469.053890096,131.13542499337598,712.3549999999999,342.1111111111111,887.182656,17589.357647243443,1356.0,608.927,256.0,281.0,16215.758745260682,4670.3667213727995,112.05382758128201,613.3031000000001,308.61111111111114,760.1259519999999,15177.781050232265,385.6862745098039,8.513050980392153,0.8466966857463591,30.98039215686274,219.6862745098039,98.2611297520129,1847.5491277940803,11.789281619954155,7.747541176470585,135.14379084967317,5.096431686274508,2500.3626196841083,17.60668973471745,-0.15145594002306728,-0.5593175634221318,7.883506343713956,58.077277970011515,-14.636819066496288,83.40040777122886,-0.4000201225456548,-0.043478892733564756,-1.0149942329873096,-0.1666110403690894,15.79518070764128,-3.1545559400230396,1.2299059976931956,0.30994266899622097,-7.433679354094579,25.845444059976924,3.7617997503712717,-20.19125432956337,-0.6560787105953528,0.9974107266435985,12.918877354863515,0.8408626297577843,-175.0871683164098,-3.640138408304489,-1.0630741637831602,-0.19132641805791223,-13.222606689734715,-12.071510957324113,-10.537235769587634,-25.838880516552543,-2.342844220827964,-0.7586854671280284,-2.1208189158016104,-0.7928575224913478,-207.93703412624853,-100.5124951941561,-1.4641056901191845,-0.057093784158149294,-3.866589773164169,-47.198769703960025,-32.88688501411684,-489.1221504151235,-3.9623469493882237,-1.3887252595155701,-8.481064975009616,-0.8019071203383337,-837.7857796669591,-7.16224529027301,-0.764883929257979,0.08550452539439246,2.580545943867743,-10.966166858900419,21.12011612231022,-13.92262281675012,3.3563371412870993,-0.7820034602076114,-30.756247597078037,-0.506192828911955,445.6153791758684,27.00768935024988,1.8590036524413658,0.08309560643486091,-5.994617454825068,-12.835447904652039,-25.708551913954594,127.39669515495792,-2.9417281365188472,1.7379083044982695,28.992118415993847,1.0411583606305355,-377.1212912381993,-99.23375624759709,-3.006742406766628,-0.046800477256647016,-1.602845059592465,-125.80238369857747,-20.079148079684344,-456.5802530775099,-1.0829675512321584,-2.700094809688581,-47.98490965013456,-1.8488319200307561,-332.5331413295104,-154.61899269511727,-4.079453825451747,0.003653861528185559,0.6451364859669358,-125.10918877354865,15.343908003942039,-729.8459230163436,1.6558378414293478,-3.9013096885813128,-60.96030372933487,-2.1719280307574045,-143.40004994138553,0.7027622210239473,0.5495148153526432,0.4382774107266434,0.30523026629768124,0.28181274133804324,0.16487966998070205,0.18452189034353447,0.09360535811645132,0.11845379952292864,0.052160668103426844,0.07470061353155162,0.029639511868458104,0.050387095051149376,0.016375170911090992,0.031917892843363604,0.00987938707849164,9.00407004691514,5.680239701585018,4.1077220729526,2.176103176505946,0.4930043188297345,-0.413691972800768,3.2858964663874177,0.9771541452468209,7.00406068476881,1.8873178324608249,17.42477274328423,10.943799094907815,19.000142441922065,11.694003207055596,2.0048352650841856,0.5458559027621597,3.988674852518485,2.224787148394972,8.001921580185211,1.2247983030681246,4.009957415023233,2.420183560609988,20.90467305670834,13.304119267946673,0.2741391431164877,0.5787703386517192,0.7390524515707406,0.8571466954367459,0.870268278088524,0.870268278088524,1.2054820585721577,1142.4164996007075,0.0,1.0,4.0,0.0,11.0,2.0,2.0,1.0,0.0,4.033818945575843,2.2129530164313262,1.2549019607843128,0.5490196078431362,0.47058823529411775,0.47058823529411775,75.70379519413115,1428.7278799711535,65.02205694556501,28.014272156297125,58.059599936167054,,17.0,832.0,5.689743398203474,18.774026599890284,23.07763872862423,42.39753248145523,13.08951281182515,28.832567921637796,24.26546827384644,0.0,9.883888251797686,0.0,13.485714285714288,37.0,18.0,1.5,19.0,0.0,0.034975369458128014,-1.0,0.17471729432513788,0.06055755635587612,-0.11415973796926177,0.018637110016420322,0.1727155963302749,0.0,0.6179271708683475,0.8591133004926105,0.4432098765432096,0.5573696145124714,0.8404761904761902,23.927756261318766,0.3893364191205073,0.7333364191205073,28.459981327203135,7.173543430424541,6.851333712828048,52.3877375885219,14.024877143252588,0.5412844036697251,0.09533898305084744,0.0,0.35593220338983045,0.3181818181818182,0.4390353747043354,-1.0102742558537592,-0.06765385964594074,-0.019809299134387434,-0.053172329255461004,0.5609646252956647,1.290848419133695,0.0370712820057964,0.025310753316346964,0.04033901309792797,-5.080629814733615,0.7082132971812687,0.5876652313720335,1.6246411365793791,0.8219057665260199,0.4488724265143402,1.2065173331493197,0.7115955098945482,1.0768106279135414,0.5748598037176122,0.4873067498508811,0.5915522351991689,0.9596528484141953,0.8460298042704627,0.622028999418655,0.861818136033846,1.2945015822784813,0.7705116476258479,1.0056403676676327,0.8480247383109806,1.016494625108533,0.6320587306510402,0.502936535764376,0.5842974996969814,0.9913810804260719,0.9386827091453426,0.897169318701333,1.1251401574022568,1.237341772151899,0.9483220278471975,1.0071655145907108,0.9404273714725317,1.057315055505913,0.8920775314363566,0.8097228267586639,0.8973944734600897,1.011417693035811,1.0955859087531685,1.0541280880985362,1.1002533506716865,0.9875409400725857,1.076710240848049,0.9748562348389642,1.0904417865722058,1.0753538567585526,1.0605282149309019,1.1264226053001023,1.0901625888172262,1.0868513123341812,1.032238705559017,0.9512440064621196,0.9762756734488399,0.9101075473493863,1.0241877900749732,0.6872900586401756,1.0191402544711454,0.8189637412996758,0.9713996318564918,1.0592001173800685,0.9803384263943924,0.9073910395620194,0.924236979121014,0.6406416063681533,0.8699889647095304,1.0087025316455698,0.906465055583597,0.9638074561967701,0.924158605914519,1.0894558570827906,0.660420876054689,0.5927948845377091,0.625340337422344,1.0812871103691817,1.1334961649830906,1.1368605916027552,1.0655104618805677,0.9894056136488719,1.2676179314840972,0.9634552274138866,1.1246829637664624,0.9867049095665187,1.142727206645151,1.162476265373625,1.1508498861827063,1.0358161947018047,1.2629783174964229,1.4825538728830134,0.999576613372182,0.9899843403366829,1.3949132673529705,0.9880557945275278,1.2608302153845565,0.8813956853557897,1.4813911812581257,1.4605164162182298,1.4513152184300626,0.9876079921858897,5.5,0.1815120906029997,4.000000000000002,2.1875,1.8222222222222224,0.9375000000000001,0.5853061224489795,0.390625,0.18846056941295034,0.17812500000000003,5870.858069137913,6546.9404888627605,2841.9947887761873,2620.275146897167,16.046353173972786,0.4611121405602877,8.647184913735828,0.8556736480196663,1.0,0.3181818181818182,1.6386063963956523,3.459472325540169,4.417523381187182,5.123405734128359,5.201837106677377,5.201837106677377,0.171875,0.00825054957286362,0.08888888888888893,0.045572916666666664,0.04555555555555556,0.027573529411764712,0.01829081632653061,0.013950892857142854,0.007852523725539597,0.008096590909090911,0.4359072639140435,22.203125,10.08,5.257777777777778,166.14307044068912,1.0,4.302574494850921,184.91346967986425,,149.13288874912365,146.34880843402834,144.395032859195,149.06938471107063,195.55677783838735,147.9543580381648,149.3412440759399,178.93183956318066,0.04311416144156365,-0.016802638849733244,-0.6238885475128447,0.2403305203938116,0.2496776944741957,-0.14068291792063137,0.042633265118088584,-0.03204578485637182,-0.005300184633741787,-0.00709322757975849,-0.030875499005211228,0.005966202882289349,-0.0043451321809862345,0.07675128021427777,0.19446992727873733,-0.12747231012658228,0.062499999999999986,0.020338216367228358,-0.005805855823378181,-0.029564296302316728,0.06839259533574982,0.050784083764569346,0.08765118411414766,-0.03720062739533519,-0.0035654973733265454,-0.04717530719973108,-0.08536571627227604,-0.1612376933895921,-0.020758459280415743,-0.040511782461709195,-0.005283407469366463,-0.07507450512725466,-0.03699425447061514,-0.005928487369218607,-0.05877130733407864,-0.031417039293220796,-0.09294371109317728,-0.06133683082685953,-0.024048893976341187,-0.04451181729662744,-0.07662348362098453,-0.11936448411065073,-0.09441814721373351,-0.11986690637905686,-0.06392733213386749,-0.022381460972649266,-0.056116684127033536,-0.11949895997335165,-0.007120877944734777,-0.03445314224096143,0.038723961176748256,0.03194061102122395,-0.019141257284589548,0.0824200898675233,-0.0028896390479412537,0.10916835641693555,-0.038704665347421605,-0.08726815345662119,-0.03808625898475779,0.06834011549568098,0.03078686254229263,0.0960079498189884,0.04314817075461142,-0.08507202095154956,-0.025687408437873142,-0.11502918654369648,0.030316171370325346,-0.10970524182462692,0.09862230581930623,0.09431831637017977,0.08981787390300448,-0.06631171215525135,-0.11410313653544353,-0.15663302105283655,-0.02451290363012113,-0.02294441386901487,-0.25395588532046015,-0.09062246376155134,-0.10959568735471695,-0.04073806883921711,-0.15455656486476732,-0.15746386974815543,-0.16088055624164324,-0.05897993276548659,-0.21077888248890192,-0.2519505028429553,0.002268938198653865,0.010948714602636045,-0.299422702495795,0.08210179924477315,-0.2076986304011029,0.0738463276903711,-0.2647554903351875,-0.2371643825576404,-0.22406687899301048,-0.030153987246868644,17.563222822679666,23.579700875563166,5.804192085154563,16.139866724321212,32.586624224774944,40.9908596603364,42.56536946425796,42.64442828778737,42.64442828778737,59.570130843907094,45.938976177714665,6.497740843207342,5.374243374308566,1.7591704486765303,13.631154666192439,9509.980031119048,8735.22565960306,1246.0182825939737,125.0,45.0,60.0,75.0,95.0,98.0,101.0,107.0,119.0,395.16451978400056,32.0,5.043425116919247,5.8998973535824915,6.774223886357614,7.643482907077201,8.521384396034705,9.394743094973961,10.274533733773833,11.14998809577284,12.031046413028099,0.6797385620915031,0.9977254901960786,1.129722270834215,0.645542898095047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.677145074556769,0.9836216839677049,1.0138097482255832,0.6475480098817465,8.0,0.0,1.0,0.0,0.0,2.0,2.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,6.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9.883888251797686,5.817220841045895,5.783244946364939,0.0,5.559266895052007,14.156174015934997,9.184952231746642,0.0,0.0,12.13273413692322,62.32935846844683,24.570870349683542,10.902924932081056,272.58958722706336,-627.2620801336658,-42.00512928513812,-12.299256473209132,-33.01379369124557,348.2933824211945,801.4657998374876,23.016927660426894,15.715015683087993,25.045806244921486,0.47058823529411764,0.7481611413148425,0.1332600404641912,48.15976562850301,0.14270264420198853,41.71679419763992,0.25183885868515754,9.0,0.15625,0.2888722720193867,0.6098753384981181,0.7787715333159128,0.903212545825712,0.9170393249934672,0.9170393249934672,2.423800000000001,,1.511904761904762,1.8043900169108715,1.5488545075243887,1.543086245660115,-6.799632915426464,1.6190119046886824,1.4797733799930697,-2.701616984205071,108.72320000000005,9.184952231746642,0.0,14.450987899589041,5.917906046161393,19.386399651764595,19.634269217737724,80.74969354183492,0.0,0.0,4.174387269895637,0.0,5.501258210544727,0.0,7.0326242610280065,0.0,8.653994232908383,0.0,10.32137518064285,34.66666666666666,12.642926595370405,0.0,2.7485113747781633,0.0,0.0,1.0366413459785544,0.18924942877617168,1.234216166724561,50.88400000000001,0.0,37.44272565335062,0.0,0.0,0.0,0.0,0.0,0.04800285672351201,57.61583581254496,11.24901029325548,4.39041504767482,0.0,39.86850206369171,6.544756405912575,11.735126887207288,23.19963192162084,58.120010915836524,0.0,10.902924932081056,0.0,32.92268780284739,34.534398802395216,37.86421744015276,369.8269393597285,,298.1615082043228,292.5731761772352,288.6832481661469,298.03234968106125,393.58539416567754,295.7970600829028,298.58043481532854,358.7952711898804,37.86421744015276,369.82693935972856,,296.78381516664524,290.9499765404586,287.34274957186085,296.62546917214496,397.9131885922013,294.3282804242437,297.2315304482563,360.5652961105666,4.877892835595587,289.38337962740553,,240.42394213585806,235.81788772786595,232.24689231681185,240.3638553172568,314.9941028621611,238.46392616125974,240.74869211363944,289.6281960688349,1.305662670350095,12.752653081369948,,10.28143131739044,10.08873021300811,9.954594764349892,10.276977575209008,13.571910143644054,10.199898623548373,10.295877062597537,12.372250730685531,2.4389464177977938,184.91346967986425,,149.13288874912365,146.34880843402834,144.395032859195,149.06938471107063,195.55677783838735,147.9543580381648,149.3412440759399,178.93183956318066,50.16470588235295,0.0,0.0,0.0,13.044693618876614,0.0,0.0,51.70429715950474,3.724612658181832,0.0,0.0,0.0,-0.0800875839061268,2.1622142437221803,0.0,0.0,0.0,33.02494850396907,464.52051119498924,83.56892621617827,176.43308860254862,225.2936924405463,261.2936924405463,265.29369244054624,265.29369244054624,886.0,137.73272499752,156.36245845326854,64.6836391550196,75.17,75.17,0.8888888888888888,8.71413392785845,6.0,4.026803737000219,5.309681251253197,,5.322824830974943,5.321799876113976,5.320342757373722,5.323127113149813,5.321034250676208,5.322422428408028,5.322744564692179,5.329385571467078,0.13885530127586962,0.18309245693976542,,0.18354568382672218,0.18351034055565435,0.1834600950818525,0.18355610734999353,0.18348393967848992,0.18353180787613887,0.18354291602386824,0.18377191625748546,2.4576836808973677,2.734242542431942,,2.736714882690216,2.7365223057056185,2.736248466348349,2.7367716708809837,2.7363784294730342,2.736639280394224,2.736699802936418,2.737946691126935,288.0100000000006,646.0057183334807,182.39897701234383,,180.15010967009692,180.22761362067385,180.49277529410463,180.11858650489333,180.99376459038777,180.18590922691752,180.1597774276455,179.91950377292812,22.276059252878643,6.289619896977373,,6.212072747244721,6.214745297264615,6.2238888032449875,6.210985741548046,6.241164296220268,6.2133072147212935,6.212406118194672,6.204120819756143,7.5355190926452655,6.270907206131975,,6.258501182957352,6.2589313091652885,6.260401487892857,6.258326184876094,6.263173317887984,6.2586998839201256,6.258554846528057,6.257220286596823,14.278909785601176,42.353451271850965,0.4960210392641158,0.38774710287931513,-0.3836684531478076,12.642926595370405,1.4150516537601676,2.309561004421664,0.0,348.6426891533982,169.24623241273193,-389.45634306113385,-26.080269411015557,-7.636398883551644,-20.497702266375466,216.24942958650755,497.61646587461547,14.290818397984976,9.757185605384617,15.550514558581733,2596.0,48.0,1.8855672466579196,0.8223860292920526,0.0,0.0,0.5138513566024673,0.11538898905149586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29536092116265145,0.13408070285171952,0.5324689180187383,0.1675145223948856,20.38010440969447,15.935929645226654,14.024877143252588,9.7673685215258,12.681573360211946,7.419585149131593,11.071313420612068,5.616321486987079,8.884034964219648,3.9120501077570133,7.096558285497404,2.8157536275035198,4.937935315012639,1.6047667492869173,3.223707177179724,0.9978180949276557,4.790660638180466,1.7914559390716238,7.291179453970556,2.2981425365520893,10.854340904530366,2.906380026056457,92.40160875103537,54.54296461483487,32.2259143127288,26.853339025107353,26.56530566495272,26.56530566495272,154.0,182.0,57.67244599999999,29.777553999999995,0.49019607843137253,212.07,8.86111111111111,6.333333333333332,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,16.0,17.0,51.0,0.0,1.0,54.0,17.0,3.0,9.0,45.0,20.0,32.0,34.0,0.0,0.0,0.0,22.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,5.0,1.0,2.0,29.0,7.0,0.0,3.0,3.0,0.0,4.0,5.0,0.0,0.0,1.0,1.0,3.0,3.7954891891721947,7.154667235450761,4.430816798843313,5.043425116919247,5.61904124620111,6.155521355962866,6.450223551231722,6.662493922414308,6.916072160145815,7.196057276428205 +3698,Nc1cc(-c2ccncc2)c[nH]c1=O,0,25.217391304347824,6.373247826086958,3.4347826086956523,8.869565217391305,163.1032131891627,99.84095365217388,1.5723356584191743,6.4410173913043485,5.407004830917875,7.818606956521743,237.44591365222064,26.625,6.526541666666667,4.0,8.5,151.01845174463753,101.94713162499995,1.854421781666666,6.6574375,3.842592592592593,7.887270166666667,277.8646561002103,24.0,6.409378378378379,3.7837837837837838,7.297297297297297,151.9779952132662,90.746628972973,1.7251742117526758,6.529881081081082,3.741741741741743,7.808095135135137,252.00029256084753,19.934782608695652,6.29569347826087,3.1956521739130435,5.391304347826087,155.66381783262602,73.22073415217392,1.5029715174031955,6.394145652173914,3.9649758454106285,7.756186869565217,211.99683195905172,15.311111111111112,6.164244444444444,2.6444444444444444,3.6666666666666665,160.54252771713658,53.3178312222222,1.3000001679609998,6.241411111111111,3.272839506172841,7.699966844444443,175.19407500622825,14.615384615384615,5.939025641025641,2.4871794871794872,3.6923076923076925,162.81060853842416,51.893950948717944,1.2188610770164359,6.017384615384616,2.863247863247863,7.4873108717948735,161.52044826600024,14.15625,6.146684375,2.25,3.6875,170.59074644596225,49.61500712499999,1.06470812933725,6.18733125,3.401041666666666,7.695616500000001,143.0209779007663,12.666666666666666,6.3000904761904755,1.8095238095238095,3.380952380952381,174.91038994781397,42.95772228571428,0.873551245766381,6.306552380952381,4.158730158730158,7.896932571428571,117.60150044127998,10.0,6.557,1.3333333333333333,3.3333333333333335,189.2497247563218,32.072705000000006,0.5774591323773333,6.481066666666668,5.0,8.227196000000001,76.86139130195644,7.062381852551987,0.12107372400756136,0.026200506055302,0.5595463137996217,3.7580340264650274,1.6924445124526915,33.59409390926277,0.2142862197787788,0.11251153119092623,1.7194917034236512,0.06988753119092625,46.91158083658136,-0.13665721487082602,-0.021426622558286142,-0.015578975611884954,0.1632797731568998,0.5173282923755513,0.05858418428211503,-0.5106197081758196,0.02216291896508914,-0.01788200220541913,-0.27107181614506753,-0.012079132640201619,4.223544249840861,-0.2233689265825376,0.003946134981862734,-0.0004740289816237223,-0.12358861697235986,-0.30092474326878854,-0.04172647151896216,-1.1044297235988458,-0.006106361171603561,0.002724426505900934,0.024893986614213454,0.0038727602309303706,-1.8831707671993503,-0.8137996219281666,0.007643572778827969,0.006520025123124073,-0.1219281663516068,-0.7523629489603022,-0.063932743905919,-4.0009755453686235,-0.036448567874395946,0.004389130434782602,0.17309913883637898,0.005773047258979205,-8.54116994247458,-1.9464398235664773,-0.03185710565007349,-0.006147057281784153,-0.05713085486242386,-0.9686620457886997,-0.23678662336818648,-9.176566200084011,-0.02773713859350058,-0.03126428481411465,-0.4292072160377138,-0.01691405486242386,-9.364059622172933,0.6499927293878148,0.007670980563230166,0.0007331505393261148,-0.028888565750569545,0.5139838107702,-0.4458826472037224,3.0023979848286646,-0.027007998792128927,0.009519238039843031,0.1005566057550936,0.0023153361446366697,-1.648118621230821,0.4878898865784502,0.0006088846880907615,0.0012085327366300738,-0.014709357277882801,0.32077032136105843,0.007608502198555028,2.2841751831285526,-0.00887604425946375,0.0028259688090737523,0.057493501890359205,-0.0014540746691871541,1.2275765267811463,0.18399495904221838,-0.01182486272391756,0.00018873801465501105,0.08227563237015031,0.09496804392834626,0.07854314190658686,0.9448515068863182,0.002210142403167105,-0.009088756863804124,-0.2921280043208211,-0.010403158520118796,1.9107867878608535,1.16950220541903,-0.0013867674858223824,-0.000489369725301448,0.2520478890989287,0.15500945179584105,1.0852885102242946,5.972004221172038,0.16060794648781487,-0.003482545683679934,-0.2738395295106073,0.0014634833018274179,25.330359105227764,,,0.4666666666666667,1.5357142857142858,0.8928571428571429,0.07142857142857142,0.6428571428571429,0.25,0.44939215530261417,0.010239758181714123,0.02252547246742841,0.8901732091436887,0.3148874655232848,0.16874517360736505,1.3395653644463028,0.4836326391306498,2.021600200560484,1.4844070299272925,0.41168725492833796,0.1255059157048537,0.0,0.5371931706331916,8.133676604695651,580.0,146.58470000000003,79.0,204.0,3751.373903350742,2296.341933999999,36.16372014364101,148.1434,124.36111111111111,179.82796000000008,5461.256014001075,639.0,156.637,96.0,204.0,3624.442841871301,2446.731158999999,44.50612275999998,159.7785,92.22222222222223,189.294484,6668.751746405048,888.0,237.14700000000002,140.0,270.0,5623.1858228908495,3357.625272000001,63.831445834849006,241.60560000000004,138.44444444444449,288.89952000000005,9324.010824751358,917.0,289.6019,147.0,248.0,7160.535620300797,3368.1537710000002,69.13668980054699,294.13070000000005,182.3888888888889,356.78459599999996,9751.854270116379,689.0,277.39099999999996,119.0,165.0,7224.413747271145,2399.302404999999,58.50000755824499,280.8635,147.27777777777783,346.49850799999996,7883.7333752802715,570.0,231.62199999999999,97.0,144.0,6349.613732998542,2023.8640869999997,47.535582003641,234.67800000000003,111.66666666666666,292.0051240000001,6299.29748237401,453.0,196.6939,72.0,118.0,5458.903886270792,1587.6802279999997,34.070660138792,197.9946,108.83333333333331,246.25972800000002,4576.6712928245215,266.0,132.3019,38.0,71.0,3673.1181889040936,902.112168,18.344576161094,132.4376,87.33333333333333,165.83558399999998,2469.6315092668797,90.0,59.013000000000005,12.0,30.0,1703.247522806896,288.65434500000003,5.197132191395999,58.32960000000001,45.0,74.04476400000001,691.752521717608,162.43478260869568,2.7846956521739115,0.602611639271946,12.8695652173913,86.43478260869563,38.9262237864119,772.6641599130437,4.928583054911912,2.5877652173913033,39.54830917874398,1.6074132173913038,1078.9663592413713,-3.2797731568998247,-0.5142389413988674,-0.3738954146852389,3.918714555765595,12.415879017013232,1.4060204227707607,-12.25487299621967,0.5319100551621394,-0.42916805293005916,-6.505723587481621,-0.28989918336483883,101.36506199618067,-8.264650283553891,0.14600699432892114,-0.017539072320077724,-4.572778827977315,-11.134215500945176,-1.5438794462016,-40.86389977315729,-0.22593536334933173,0.10080378071833455,0.9210775047258978,0.14329212854442372,-69.67731838637596,-37.43478260869566,0.35160434782608657,0.29992115566370736,-5.608695652173913,-34.6086956521739,-2.9409062196722746,-184.0448750869567,-1.6766341222222136,0.2018999999999997,7.962560386473434,0.26556017391304343,-392.8938173538307,-87.58979206049148,-1.433569754253307,-0.2766175776802869,-2.570888468809074,-43.58979206049149,-10.655398051568392,-412.9454790037805,-1.2481712367075262,-1.406892816635159,-19.31432472169712,-0.7611324688090736,-421.382682997782,25.349716446124777,0.29916824196597647,0.02859287103371848,-1.1266540642722123,20.0453686200378,-17.389423240945174,117.09352140831791,-1.0533119528930281,0.37125028355387824,3.9217076244486506,0.09029810964083013,-64.27662622800202,15.612476370510407,0.01948431001890437,0.03867304757216236,-0.47069943289224964,10.26465028355387,0.2434720703537609,73.09360586011368,-0.28403341630284,0.09043100189036007,1.8397920604914946,-0.04653038941398893,39.28244885699668,3.863894139886586,-0.24832211720226877,0.003963498307755232,1.7277882797731565,1.9943289224952716,1.649405980038324,19.841881644612684,0.04641299046650921,-0.19086389413988658,-6.134688090737242,-0.21846632892249473,40.126522545077925,10.525519848771271,-0.012480907372401442,-0.0044043275277130325,2.2684310018903586,1.3950850661625696,9.767596592018652,53.74803799054834,1.445471518390334,-0.03134291115311941,-2.464555765595466,0.013171349716446762,227.97323194704987,0.7118753804464919,0.5283509835922288,0.45139046318860643,0.2771943022371074,0.29628950248558517,0.14543545898709404,0.19820939342334373,0.07782448248928779,0.12492793725021996,0.041807122713641856,0.08269639019101381,0.021536083438879267,0.05448780682795953,0.011014935869107002,0.03729265010356074,0.005936762452753144,8.022239359097002,5.6983388359968545,3.5456179803034664,2.194753389157928,0.46111185045452796,-0.3760162803490321,3.18689753102999,0.9776760320977702,6.022094201437482,2.820533143874991,14.549383525910384,10.962209706843334,16.01009141987835,11.711981445981182,1.983860865547686,0.7488643890418714,3.4914746866850557,2.243600814682569,7.008278201950233,1.454345795751826,3.7040686111548764,2.4389893589276608,20.883762442178757,14.702694561642133,0.33261506175656125,0.6824686320089438,0.8620267993908317,0.9041582134088084,0.9041582134088084,0.9041582134088084,1.8502445956565652,490.22033944620443,0.0,4.0,0.0,0.0,4.0,0.0,2.0,0.0,0.0,2.891456237565996,1.174763043854516,0.29369076096362967,0.08695652173913082,0.08695652173913082,0.08695652173913082,114.6799590428304,506.05024677186697,49.71985856374012,22.002184642255088,43.93867390019956,,8.0,181.0,0.0,4.794537184071822,11.24665316973557,0.0,11.126902983393991,0.0,24.65689778330084,12.13273413692322,9.967957041894417,5.733667477162185,6.533333333333333,21.5,12.5,1.0,9.0,0.0,0.03333333333333334,3.5,0.18898550724637664,0.08489948574100037,-0.10408602150537627,0.09537815126050408,0.1587592067988668,0.0,0.628985507246377,0.8404761904761904,0.4400000000000004,0.5440860215053767,0.7450980392156863,6.291490174236598,0.14335661454399773,0.3153566145439977,12.462424928011641,4.408424517325987,2.3624324305031106,18.75391510224824,6.770856947829097,0.5552407932011332,0.11224489795918369,0.0,0.30612244897959184,0.0,0.3456006032316031,-0.47092982764096813,-0.07106398827265913,-0.0204752098974334,-0.05886622845512102,0.654399396768397,0.8917119711216809,0.06281670428643756,0.038770085700942654,0.059447464741445404,-2.8109450564342824,0.7533792826552461,0.8945801065867265,1.6128622230205518,0.7478885135135138,0.5673834674714957,1.1135725791476834,0.7528370569051163,0.8350457910481565,0.8580183337645712,0.7375239214967728,0.8718047636028983,0.7691495458652795,0.8126338329764452,0.7019545307235788,0.8820438519732102,1.3860482103725353,0.9080428517048238,1.102855876058472,0.8174636738449138,0.9915663593633751,0.7010327273572712,0.6105734391326523,0.672456764817529,0.9401811010714133,0.9863490364025693,0.793913939545341,0.6295083620899006,1.3006756756756763,1.0872736418511069,1.0246389880808586,0.9918120713089753,1.1452945969115322,0.8140228432792438,0.8228333231539726,0.7963094038425877,1.1206280619717188,1.2400190340233164,1.2396575138090877,1.0243937772453287,0.987687687687688,1.1991057455846192,1.0457090109127956,1.237272980219547,1.107199476361656,1.255668610783482,1.3338741966788135,1.2530191575905423,1.1716418521492127,0.8994536869269202,0.6745763193630417,0.7857472890219607,0.876645876645877,0.7537919826652223,1.1590551966173799,0.9066748157099882,1.108420681707077,0.6876986181522914,0.47545443013591765,0.6133268224742011,1.0683112610557268,1.009443589400428,1.0389050497283288,1.147336536864105,0.8814400337837842,0.9544768611670023,0.9112786113688164,1.0091265247604468,0.9535563123433042,1.031224010225375,0.8563937198436447,0.997115727716344,0.954946192071845,1.177029162842867,1.6018096546637641,1.3276589975014836,0.6919240669240673,1.2483951327009681,0.7705758650630888,1.1650645312538164,0.9001762860082423,1.5690004389184145,2.0087949673242522,1.738466303531362,0.9285958357136808,1.2866702355460382,2.2290766300274796,1.2623141214759752,0.28490990990991,1.7392689470154261,0.08134781614354593,1.2518215056187587,0.12416747071772834,2.1945319054323633,2.9668356440481265,2.4271609965969994,0.41755623163529787,2.5,0.0,1.7777777777777786,0.625,0.5244444444444445,0.36111111111111116,0.1820408163265306,0.07465277777777778,0.02040816326530612,0.0,2325.9094608923942,2551.667608276517,1344.229702609652,1244.0420721992346,8.96213407343272,0.47874124668973694,4.671590834116969,0.9184330117230302,1.0,0.0,1.632105718491017,3.348798912202497,4.229871195093383,4.436605434317882,4.436605434317882,4.436605434317882,0.16666666666666666,0.0,0.08888888888888895,0.03289473684210526,0.04034188034188034,0.03282828282828283,0.022755102040816325,0.018663194444444444,0.02040816326530612,0.0,0.42344691531839085,10.515555555555556,4.68,2.5344,80.4292060845105,1.0,3.5647155497070973,44.60218888892526,,30.837825731483953,30.43021167686784,30.1915717841683,30.841642013566794,36.12655974348637,30.66941657422219,30.861932259590446,34.39184689541575,-0.01935001784439694,-0.1769716983096018,-0.5946059049013045,0.2918074324324325,0.1376592890677398,0.03461512850262654,-0.015199686872192388,0.10342671119015177,-0.1589348399771958,-0.15764648099513418,-0.17283673402631075,0.0900320171378102,-0.03162798773077151,0.03259282733895496,-0.01809235976676094,-0.220872899926954,-0.08007504486377726,-0.02465455807380777,-0.032875711027715075,-0.028496284912336144,0.024214642508755154,0.014477526448454188,0.055414179967959505,-0.04014298247077756,-0.11523019271948609,0.0631315575818136,0.24885111414879194,-0.21790540540540548,-0.20020120724346074,-0.03777538550629801,-0.11909758769428963,-0.17009291550349856,0.039010494198452206,0.10066878397361509,0.08260482464615578,-0.18206953997624034,-0.275606709493219,-0.26312154772809276,-0.23461597531014936,-0.10210210210210215,-0.25775765705343173,-0.1399080570299083,-0.27316010441805044,-0.12943967475899937,-0.27787627173130175,-0.249612844995487,-0.24201820516761752,-0.19961083074119934,0.09203590841706477,0.06335793027024669,0.027982304531776497,-0.05162855162855168,0.13676933395243254,-0.26345480984635006,0.08937279251936678,-0.12603703037932626,0.08460677709282419,0.0584804250900874,0.03312945965012537,-0.03513244686790918,0.06908290952890796,0.005029040719460608,0.04612631275438712,-0.026288006756756774,0.08535588531187122,0.004495569658309673,0.06799335589458318,-0.04142144216565607,0.02511714825281535,0.033436335735662376,-0.020805924095598068,0.026167878056752455,0.026052819414703828,-0.09766663097914678,0.00720360187916361,0.14703989703989706,0.025270671648941243,0.04640810456631284,0.028125524368609267,0.010313973551116701,-0.0807806699242318,-0.16989206969662599,-0.14885571636088177,0.040731664842358795,0.16559600285510354,-0.011453909567824768,-0.01867787302537303,0.4504504504504505,0.04124748490945671,0.6412550025947343,0.17776946856499085,0.7495019822255515,-0.030952788988092558,-0.159256092347157,0.02094054943548252,0.5399596145239111,5.814165998393336,9.743503573796799,2.94168275343288,15.324512737607629,32.40261355229379,36.52221385633062,36.730601969468914,36.730601969468914,36.730601969468914,28.302402807846775,20.781698418982096,5.763621568996731,1.7570828198679518,0.0,7.520704388864683,1576.2365415348177,1358.65265950062,254.69976982591538,14.0,20.0,25.0,29.0,36.0,31.0,29.0,24.0,20.0,187.074561908,15.0,4.2626798770413155,5.081404364984463,5.921578419643816,6.760414691083428,7.605392364814935,8.449984441722787,9.296793259706382,10.143330883072752,10.990887213990135,0.7101449275362318,1.000173913043478,1.1282784457437807,0.6776469395807468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.697816636292632,0.9865302642796251,1.0137116438139269,0.6707354312870027,6.0,1.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.717645998109393,0.0,0.0,0.0,5.559266895052008,9.77851570501903,0.0,0.0,0.0,0.0,23.762552697081826,24.153982206536224,5.687386274683562,128.34720812811508,-174.8912705498588,-26.39134425101855,-7.60396828477647,-21.86140881873235,243.0271671709455,331.15897622200816,23.328514312721566,14.398216357478617,22.077265081467214,0.5,0.7437088807469446,0.2893277431166409,42.66274394882454,0.19858352619776395,42.58750671937561,0.2562911192530554,4.0,0.06666666666666667,0.36080100910426144,0.7403013255336278,0.9350753313834068,0.9807769800471735,0.9807769800471735,0.9807769800471735,1.0191,,0.6785714285714287,0.8427175430432758,0.8488829422512447,0.6767661145452564,-2.636839718884606,0.7422735618115056,0.6692837795551935,-1.356968362788312,54.706100000000006,0.0,0.0,9.967957041894417,0.0,0.0,5.733667477162185,47.143435999347886,0.0,11.126902983393991,3.4339872044851463,0.0,4.709530201312334,0.0,6.20050917404269,0.0,7.779466967458324,0.0,9.398561160701128,16.333333333333332,10.370668934240364,3.90768502771479,2.5656755479969764,0.0,0.0,0.0,2.0757057823129257,0.0,23.003999999999994,0.0,11.009621756109851,0.0,0.0,0.0,0.0,0.0,0.0,25.950404252106956,11.292934372214193,5.687386274683562,0.0,9.967957041894417,0.0,0.0,0.0,41.58416910429588,0.0,11.126902983393991,0.0,15.585879610357177,16.049782634730537,18.348874827949864,89.20437777785057,,61.57871268745709,60.74003513330001,60.26187457658526,61.58660315362652,72.65735785066553,61.23279406818486,61.628252550672414,68.97754641408696,18.348874827949857,89.20437777785057,,61.10083999115079,60.17040457321315,59.74017266866305,61.109907328893385,74.88995920585734,60.72013714860935,61.1556662218472,70.14066215361979,4.670744950023799,67.26838953915606,,47.500717731767935,46.98217701903634,46.670658185417935,47.50555827291042,53.67775808960051,47.285681923280244,47.53152228847759,51.67104137248715,1.3106339162821332,6.371741269846469,,4.398479477675506,4.338573938092858,4.304419612613232,4.399043082401894,5.189811275047538,4.373771004870347,4.402018039333744,4.926967601006211,2.3353724750118996,44.60218888892526,,30.83782573148365,30.43021167686738,30.191571784167714,30.841642013566492,36.12655974348637,30.669416574221827,30.86193225959015,34.391846895415746,22.690196078431377,0.0,0.0,0.0,0.0,5.498600245653817,0.0,23.315367807720317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.426914919601062,276.19442099176007,37.53843152529339,77.02237498065743,97.28703748714781,102.0419249893113,102.0419249893113,102.0419249893113,257.0,97.51246551606,95.17995430730048,45.52205470799962,71.77,71.77,1.0,7.853304403901842,4.906890595608519,3.5004793744990157,3.692316672123741,,3.7002501109230748,3.7013439343460393,3.7017607462903226,3.700239196552412,3.6812000995559044,3.7006944063849194,3.7001859831701056,3.6881587592252663,0.250034241035644,0.2637369051516958,,0.2643035793516482,0.26438170959614565,0.26441148187788016,0.2643027997537437,0.26294286425399316,0.26433531474177996,0.26429899879786467,0.2634399113732333,1.5893721598804251,1.642726322098123,,1.6448726515335574,1.6451682158199092,1.6452808204534257,1.6448697018986864,1.6397110496481935,1.644992716063521,1.644855320729763,1.6415995889013169,140.04999999999995,62.28605237540852,60.103418070213976,,59.6093878402533,59.53628895242147,59.52740717622028,59.61016867447276,60.88497414627025,59.58073491069278,59.613548206040974,60.42794419007838,4.449003741100609,4.293101290729569,,4.25781341716095,4.252592068030105,4.251957655444306,4.257869191033769,4.348926724733589,4.2557667793351985,4.258110586145784,4.316281727862742,4.4682097589457515,4.43253894959365,,4.424285312386684,4.4230582616204055,4.42290906792818,4.424298411482877,4.445458650947923,4.42380451868581,4.424355103752797,4.4379238867250885,0.0,17.482982331821617,0.0,7.313015400604687,0.0,5.355501700680272,5.01516723356009,0.0,0.0,160.96514834903056,47.66486423995725,-64.95013634571279,-9.801068984524466,-2.8239189715527306,-8.118767043214099,90.25406238881024,122.98395791912473,8.663612429542166,5.3471286051793365,8.19893052794165,303.0,19.0,0.804737854124365,0.3010310363079829,0.0,0.0,0.25,0.04478812321377207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.045678533083330995,0.2342920386527526,0.04337256986777985,9.966255326250886,7.396913770291203,6.770856947829096,4.157914533556611,5.925790049711703,2.908709179741881,4.955234835583593,1.9456120622321948,3.622910180256379,1.2124065586956139,2.9770700468764972,0.7752990037996537,1.6891220116667454,0.34146301194231704,1.0814868530032615,0.17216611112984118,2.0286702405282284,0.5777508397817865,2.493906799282105,0.6386444292058366,3.6342174681498287,0.7243848080483645,45.73674658087809,26.364216888303563,20.053604558067523,19.49374763503049,19.49374763503049,19.49374763503049,70.0,80.0,26.803136999999985,11.036862999999999,0.5217391304347826,43.04,4.444444444444445,3.1388888888888884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,23.0,0.0,0.0,24.0,12.0,1.0,6.0,18.0,13.0,15.0,11.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,3.0,2.0,2.0,14.0,4.0,0.0,3.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,2.0,2.0,3.1354942159291497,6.336535312872941,3.7612001156935624,4.330733340286331,4.826311734631628,5.410529357154965,5.537826271948511,5.814503596556124,6.01874527106157,6.241402159957804 +56801,OCc1cc(C(O)CNCCCCCCOCCCCc2ccccc2)ccc1O,0,18.53731343283582,5.876938805970149,2.582089552238806,4.776119402985074,163.65458556965993,72.60097680597018,1.3426267683494477,5.943559701492537,3.513266998341625,7.473202507462684,191.74475177248914,20.83823529411765,6.183147058823529,3.235294117647059,4.176470588235294,146.22552758405078,76.78924910294117,1.7116035071764706,6.3227352941176465,2.776960784313726,7.650845,241.7557253181069,15.619834710743802,6.000793388429752,2.793388429752066,2.925619834710744,153.69672409224083,54.88520470247933,1.4138628336379175,6.1074049586776855,2.5057392102846645,7.546477454545454,189.36776174817894,12.209580838323353,5.77782634730539,2.311377245508982,2.1137724550898205,160.48913450845512,41.883608628742515,1.168449253682958,5.858036526946108,2.338323353293413,7.394724622754492,149.33726079007639,10.878612716763005,5.789173410404624,2.1040462427745665,1.7052023121387283,162.97985114746993,36.108968017341034,1.0738744649670464,5.8548734104046245,2.4275850995504173,7.429346936416185,134.09476862744907,10.119760479041917,5.703658682634731,2.0419161676646707,1.4910179640718564,164.67106264848766,33.42735899401197,1.0318180018637249,5.766446107784431,2.1092814371257487,7.360187688622757,127.20279023603119,10.493506493506494,5.764136363636363,2.012987012987013,1.5974025974025974,164.46234154671723,34.804390012987014,1.0307526952681754,5.823108441558443,2.480519480519481,7.413580831168831,127.3189316000778,9.702702702702704,5.759533783783783,1.9662162162162162,1.4054054054054055,166.84800657942196,31.622116452702702,0.9967804479449053,5.808279054054055,2.2269144144144146,7.4259888378378385,121.97275695985094,9.908396946564885,5.637198473282444,2.0610687022900764,1.251908396946565,163.55333154994435,32.66360847328244,1.0606870753057558,5.706748091603054,1.9732824427480915,7.2965323969465645,129.653325278708,7.159278235687236,0.10475326353308087,0.017043550265972967,0.3987525061260859,2.890621519269325,1.3180089529014891,34.128767076409,0.22820491976529075,0.10087703274671414,1.1499344075641693,0.06473102249944307,50.875152495930784,-0.026925294510764714,-0.008243276702527573,-0.007355500241661519,0.09488226121368572,0.3674996396420007,0.04005965189896178,-0.059140376891885005,0.010709745349679329,-0.007136470850313644,-0.12349796233931307,-0.0055670145977749705,1.8165774009988964,-1.0465361609370196,-0.01374999475301415,-0.0013979907526236132,-0.05448212250699139,-0.20479445623737735,-0.08438220430323219,-4.970766950468457,-0.02153229742707417,-0.013876230970471314,-0.06473026299774512,-0.007312053707041464,-5.992595056000627,0.07666778272370392,0.003158605266633139,0.0009420226516047265,-0.026601286177922616,0.06075930117932988,-0.06506384253966141,0.31936354268117784,-0.012021149190985486,0.0032367128963280865,0.06670197141915768,0.0011524062251971887,-1.407963994741882,-0.38039807004147586,-0.0002616493496626862,5.332531355438669e-05,-0.02587699926731625,-0.10009438614880053,-0.12305221435292904,-1.855576457739342,-0.018738900435744252,-0.0008199453513212051,0.0575325926946523,0.00045934002320379737,-3.966363933066002,0.047085156930514044,-0.002961146275059621,-0.0018136592439404527,-0.030623093309927258,-0.011096986245819807,-0.05891394164246611,0.22284045598889154,-0.0063887168305491,-0.0019437053716136778,-0.04113459425546324,-0.0027759308916139613,-0.37760413490458855,0.03378243498537556,0.0116312295857406,0.0022249645296662478,-0.0062345762947233156,0.08573048693342744,-0.09729841237058248,0.0698846014355446,-0.013269609024090105,0.010037088206958986,0.20861914501923415,0.008432652631396224,-2.4313681659143302,-0.06972599688126545,0.0013258913680889556,-1.91773491604131e-05,0.016233375277705867,-0.04915318526367759,0.1836279257285998,-0.2905235428269095,0.018453004134858415,-9.626429169201092e-05,-0.03554296388168075,0.0013668633416218635,1.926003391794839,0.06915972717023286,-0.0019346239067849177,-0.0010613720491978432,-0.007958385128022862,-0.09103168219515392,-0.0035954725529025264,0.338097476627346,-1.304520009691774e-05,-0.0012927214786272005,-0.023018098524127683,-0.0017582472915132574,0.45647637876323494,,,0.4744444444444444,0.9916666666666667,0.4166666666666667,0.016666666666666666,0.575,-0.15833333333333333,0.9897766121883518,0.007050165398862044,0.012783498732195376,0.6797896470152264,0.190223501161658,0.29986678551858315,1.669566259203578,0.4900902866802411,2.0044685245420015,1.6952558985641237,0.06666551573325874,0.24254711024461895,0.0,0.3092126259778777,6.198093412895537,1242.0,393.7549,173.0,320.0,10964.857233167215,4864.265446000002,89.955993479413,398.2185,235.38888888888889,500.7045679999998,12846.898368756772,1417.0,420.454,220.0,284.0,9943.335875715453,5221.668938999999,116.389038488,429.94599999999997,188.83333333333334,520.25746,16439.389321631268,1890.0,726.096,338.0,354.0,18597.30361516114,6641.109768999999,171.07740287018802,738.996,303.1944444444444,913.1237719999999,22913.499171529653,2039.0,964.897,386.0,353.0,26801.685462912006,6994.5626409999995,195.131025365054,978.2921000000001,390.5,1234.919012,24939.322551942758,1882.0,1001.5269999999999,364.0,295.0,28195.514248512296,6246.851466999999,185.78028243929901,1012.8931,419.97222222222223,1285.27702,23198.39497254869,1690.0,952.5110000000001,341.0,249.0,27500.06746229744,5582.368951999999,172.31360631124204,962.9965,352.25,1229.1513440000003,21242.86596941721,1616.0,887.677,310.0,246.0,25327.200598194453,5359.876062,158.73591507129902,896.7587000000002,382.00000000000006,1141.691448,19607.115466411982,1436.0,852.411,291.0,208.0,24693.50497375445,4680.073235,147.52350629584598,859.6253000000002,329.58333333333337,1099.046348,18051.96803005794,1298.0,738.4730000000002,270.0,164.0,21425.486433042708,4278.932709999999,138.950006865054,747.5840000000001,258.5,955.845744,16984.58561151075,479.67164179104486,7.0184686567164185,1.141917867820189,26.716417910447756,193.67164179104478,88.30659984439977,2286.6273941194027,15.28972962427448,6.758761194029847,77.04560530679935,4.336978507462685,3408.635217227363,-1.8309200267320005,-0.560542815771875,-0.5001740164329833,6.451993762530629,24.989975495656047,2.724056329129401,-4.02154562864818,0.7282626837781944,-0.4852800178213278,-8.397861439073289,-0.378556992648698,123.52726326792495,-126.63087547337936,-1.6637493651147122,-0.1691568810674572,-6.592336823345958,-24.78012920472266,-10.210246720691096,-601.4628010066833,-2.6054079886759745,-1.679023947427029,-7.832361822727159,-0.8847584985520172,-725.1040017760758,12.803519714858554,0.5274870795277342,0.15731778281798933,-4.442414791713077,10.14680329694809,-10.865661704123456,53.3337116277567,-2.0075319148945763,0.5405310536867904,11.139229226999332,0.19245183960793052,-235.1299871218943,-65.80886611717533,-0.045265337491644714,0.009225279244908896,-4.4767208732457116,-17.316328803742493,-21.288033083056725,-321.0147271889062,-3.2418297753837555,-0.14185054577856848,9.953138536174848,0.07946582401425695,-686.1809604204184,7.863221207395846,-0.49451142793495667,-0.3028810937380556,-5.114056582757852,-1.8531967030519079,-9.83862825429184,37.21435615014489,-1.0669157107016998,-0.3245987970594842,-6.869477240662361,-0.46358045889953153,-63.05989052906629,5.202494987747836,1.7912093562040523,0.34264453756860214,-0.9601247493873906,13.202494987747826,-14.983955505069703,10.76222862107387,-2.043519789709876,1.545711583871684,32.12734833296206,1.2986285052350186,-374.4306975508068,-10.319447538427287,0.19623192247716542,-0.0028382476757411387,2.4025395411004684,-7.274671419024283,27.17693300783277,-42.997484338382606,2.7310446119590455,-0.014247115170417615,-5.260358654488751,0.20229577456003578,285.04850198563616,9.059924259300505,-0.2534357317888242,-0.13903973844491746,-1.0425484517709949,-11.925150367565164,-0.47100690443023097,44.29076943818233,-0.0017089212126962239,-0.16934651370016326,-3.0153709066607264,-0.23033039518823673,59.798405617983775,0.7147700177350724,0.5977107624636314,0.47428092259378174,0.3592012317539007,0.3153108462074498,0.20906694223223074,0.21462173248734506,0.12175665875274762,0.14339131464263746,0.07199241031742722,0.09496021386995476,0.0423714614281659,0.06723398854199168,0.02689905740447183,0.04599804256632708,0.017913789603141612,8.011404583531428,5.688118633761341,3.5209517617391644,2.1873463995998934,0.37698935396543026,-0.4174212343425923,3.181059934591434,0.9877900862998357,6.0050142375024596,1.8202213590978096,14.540223499393932,10.948562995213118,16.00598694296217,11.699581737670226,1.9943995290910228,0.7791686808907524,3.4633576029568056,2.237180062060225,6.004822928897662,1.2589832717774683,3.6769215163442177,2.4332069112575025,20.902253610230698,14.706138815844312,0.21532358162607895,0.5079208386950714,0.7322814855558336,0.8693367156573087,0.9096096564571716,0.9192242696963623,1.3140571309639644,692.8029085332718,0.0,0.0,5.0,0.0,9.0,8.0,3.0,0.0,0.0,4.729047451830436,2.9121784291495816,1.5190214553853334,0.6679833955546783,0.41791044776119435,0.35820895522388163,342.7351646040778,1924.1264194912928,73.89916549258486,28.718304768526753,53.90384493620525,,22.0,1085.0,6.103966387748303,15.319582184522117,12.356393797796823,17.671659389306566,58.283450072494475,18.050640183084614,12.13273413692322,0.0,35.64862394631438,4.736862953800049,14.233333333333333,29.75,12.5,0.5,17.25,0.0,0.025555555555555585,-4.75,0.09448213478064238,0.03506518042697937,-0.05941695435366301,0.06065359477124166,0.1322561307901905,0.0,0.5308457711442782,0.8155555555555551,0.43636363636363584,0.49578059071729885,0.7549019607843135,29.693298365650552,0.21150496196586133,0.3835049619658613,20.39368941045679,5.70670503484974,8.996003565557494,50.08698777610734,14.702708600407234,0.5817438692098095,0.07025761124121781,0.0,0.1756440281030445,0.52,0.25480415232903514,-0.7014949443601818,-0.05415354190559654,-0.01047007379642062,-0.030499780189573118,0.7451958476709648,2.0515800661848718,0.05158272560615952,0.030620598002759274,0.0466268196860198,-6.584656202325437,1.0420731551068367,0.9989213990009895,1.368025552726858,0.9990552086756492,0.8469459454558642,1.2668097643361482,1.0454160381190118,1.2020345599568478,0.9909856409831402,1.026877798591912,1.0129227182621277,1.1392428642594097,1.1610215038555318,1.087937400439553,0.948679840831604,1.4291518537328594,1.1406372603968167,1.2271334711543724,1.1632849065773747,1.2164010054921945,1.0928441640750926,0.8460160436440342,1.0667579223317112,1.2009226596320555,0.9639827942596354,0.861412638639457,0.7753735395948805,1.1316462047971099,0.9580695267910541,1.0729521688567702,0.9673575055072987,1.0686328871278714,0.8687462590305093,0.7324575425920975,0.8552264716011431,1.038008868510347,1.0462720917776192,1.0427139949291035,0.9935552411135924,0.9924403397164725,1.0134846546403142,1.0686931660842292,1.046416294149648,1.0513686196944902,1.0424134685577187,0.9696981724195269,1.0389377103155912,1.0499709051981314,0.9656306280959766,0.9835179378842933,1.0271430988941535,1.0133041180209414,0.9468461351034061,0.9989462074646552,0.9656130794222654,0.974031805881603,0.9783522323051325,0.8864154017051726,0.9802764327846646,0.9663839885597678,0.9832619151338422,0.9252750996472355,0.8301896495625399,0.8662410215482843,0.9017471816100053,1.0276364001720988,0.9845592049064158,1.0040403065957575,0.931825453434995,0.8251142724920396,0.9055799678012693,1.0037632923245825,1.008713689107615,1.112321932812338,1.07396324249101,0.8012079118224371,1.0131386009931016,0.7889269045845754,1.0041983510742643,0.8294008813379318,1.1116910093954813,1.039603057538419,1.1107354210678189,0.8901289304213864,0.9379507933107175,0.8444971957756968,0.8647529478623955,0.91461043114845,0.9130902852947544,0.9570079965790302,0.939949656818383,0.9711122548029248,0.8568691627863938,0.709230974997221,0.8261500246307562,0.9710113288289943,3.5,0.07427813488419549,2.222222222222223,1.0,0.8444444444444446,0.5277777777777778,0.20244897959183672,0.14930555555555555,0.1148904006046863,0.09125000000000003,5279.605632284496,6371.9624365830905,2739.3230428649963,2356.1022238527958,12.138681787787746,0.39455252790158224,7.349334203023194,0.651670947661412,1.0,0.52,1.3370417386273359,3.1539107613081905,4.547067735072439,5.398105794903094,5.648178742696578,5.70788023523389,0.11290322580645158,0.0037139067442097744,0.06006006006006009,0.02702702702702703,0.02724014336917563,0.018849206349206348,0.007786499215070642,0.006491545893719806,0.0052222909365766505,0.004345238095238096,0.2736391434967357,26.253902185223726,16.60774287801315,11.44835045970795,180.2788534824198,1.0,4.277019482995913,261.1569402525528,,232.97049080344033,230.53432171190667,233.2221755322916,233.00561826598573,297.3817785781914,232.1502478217487,233.09578612701776,268.29715749169105,-0.003760895110424506,-0.07869231396236512,-0.43157089496468326,0.237947748931975,0.12713516355987525,0.03039406660385252,-0.0017328600461739186,0.04693038765638499,-0.07074425819236936,-0.10739565798445036,-0.08600226572696064,0.03570657407158031,-0.1461790038722472,-0.1312607768890363,-0.08202462109169048,-0.13663142342675105,-0.07084789719864265,-0.06402248187880033,-0.14564742228571234,-0.09435509738010987,-0.13755589942174726,-0.05629039584514998,-0.11296057786055173,-0.11779021313950735,0.010708870391645616,0.03015281013784986,0.05527150370104823,-0.06671127019703611,0.02101945923196762,-0.04936525081747637,0.009357605622440816,-0.052676994007619396,0.032085726633682296,0.058005022704249794,0.01780299739907714,-0.02767488500117021,-0.05313357820698814,-0.002497768001090084,0.0031287679340406774,-0.06489488810669422,-0.03462728879639069,-0.09336219915808587,-0.054369864975930576,-0.08211435781059082,-0.008128166828419258,0.050031195097918514,0.007096134209957049,-0.07796269374098189,0.006576802211123204,-0.028267818826708885,-0.1064132305556888,-0.07679724350182318,-0.003838962026624932,-0.04469919685505313,0.0065294024683044205,-0.02799552628891572,-0.019268066463592425,-0.03577125267744267,-0.04288408840811753,-0.007422172050192693,0.0047186928448985895,0.11103453194150348,0.1305458366915686,-0.015635202786040765,0.02965815011129437,-0.07382226968670279,0.0020476743645348764,-0.058147778048509756,0.09949824983611966,0.18141829972818918,0.1302721987972425,-0.04779087720884574,-0.009739249486589103,0.012657279815155752,-0.0011251968551822334,0.040710403140570756,-0.017004365648015468,0.13932221425685912,-0.008512570705424915,0.08086155265117584,-0.0009542736247379018,-0.030908688050276786,0.02111604743511697,0.037857447050382576,0.009660153564850806,-0.01846838791971352,-0.062274117342608286,-0.01995820717301376,-0.03149207932907259,-0.002727957609838224,0.009906524776309628,-5.7164412188548596e-05,-0.012814824578286461,-0.02001687954783909,-0.027162359308141395,0.008972481778796552,30.249550437136683,14.742994205673408,2.155126058838122,12.002854613823814,26.316328138587135,33.99967595579238,36.6237316810913,37.204252973661156,37.26443207813877,60.134055736260045,50.85767695692371,1.9999654719977622,7.276413307338569,0.0,9.27637877933633,7548.2109468668705,4878.007853841884,3799.7483005623158,33.0,37.0,43.0,47.0,53.0,47.0,42.0,37.0,34.0,415.272258664001,31.0,4.919980925828125,5.6937321388027,6.484635235635252,7.275864600546533,8.07558263667172,8.875846177738598,9.682279626689674,10.489021682384953,11.300956742030754,0.5621890547263682,0.9610149253731344,1.1315095671611306,0.5164097090105214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6321328179461971,0.9479075212174423,0.9912056614234,0.5767309605038113,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,12.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,25.373233742328495,5.749511833283905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.239845656621675,61.90850164085983,25.32197182663541,12.71084835226122,178.08283443585347,-490.27540129238037,-37.84795557348726,-7.317543302871346,-21.31632179532088,520.8179990399312,1433.8510181989125,36.051209919097595,21.400761465655407,32.58752314088437,0.5,0.8035984068976583,0.1843697419809761,129.25743650905255,0.10646639177459889,211.55362467961288,0.19640159310234168,11.0,0.5161290322580645,0.22041247608600315,0.5199248910268962,0.7495880117003849,0.8898823649666335,0.9311071046534255,0.9409489468457931,4.107400000000005,,1.1428571428571428,1.3285248953001396,0.9177863289708527,1.1395624948769625,-4.847358875538426,1.1960679314565485,1.1342421939878375,-1.9153025404755315,120.52610000000004,20.056445138322168,0.0,5.316788604006331,0.0,57.6565997127433,26.303276740850986,65.22129102278387,0.0,5.749511833283905,4.143134726391533,0.0,5.351858133476067,0.0,6.744059186311348,0.0,8.226573474977114,0.0,9.761520681090504,37.666666666666664,15.423372013483434,0.0,0.0,0.0,0.0,0.0,2.5874141520850316,0.0,64.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.81114099979575,5.316788604006331,0.0,5.749511833283905,41.6228589253731,17.764566541238977,0.0,61.31925060039535,48.53093654769288,0.0,0.0,0.0,34.59945050370494,42.35289880239521,38.410181461100954,522.3138805051055,,465.86479113069015,460.98007509746003,466.38316530931843,465.93526569897966,596.3793434482288,464.22075778140027,466.1159561077697,537.2327491635406,38.410181461100954,522.3138805051055,,464.7981244640235,459.7401185285132,465.5265647356123,464.87167403709446,599.6109160319212,463.104427712041,465.0573300600479,538.5096175238575,4.644435852546284,420.61707548935794,,380.2328705586932,376.10892998986117,380.3983500436577,380.2914975803661,488.21792391587474,378.8315077319056,380.44630229985273,439.64450010765756,1.2803393820366984,17.410462683503518,,15.528826371023005,15.366002503248668,15.546105510310614,15.531175523299321,19.879311448274294,15.474025259380008,15.537198536925656,17.907758305451352,2.322217926273142,261.1569402525528,,232.97049080344033,230.53432171190667,233.2221755322916,233.00561826598573,297.3817785781914,232.1502478217487,233.09578612701776,268.29715749169105,63.50980392156863,0.0,0.0,0.0,0.0,0.0,28.987615735343248,66.4107793153678,10.65772000406242,3.268197181137496,5.72272644370713,0.0,-0.6470455298187578,0.0,0.0,0.0,0.0,38.64097435375536,561.6355963605862,89.5817964880315,211.31202100764875,304.6535382498534,361.6730882585073,378.42797576067073,382.4279757606707,434.0,133.79789976632833,137.26523711519854,64.22714620224656,81.95,81.95,1.0,7.086215222669707,5.954196310386875,3.441461307244451,5.4074174335658345,,5.416438741198098,5.416001160212865,5.415497190987868,5.4164420190969444,5.418871030163656,5.416249329940844,5.416465205469257,5.419585687628681,0.11471537690814837,0.1802472477855278,,0.1805479580399366,0.1805333720070955,0.18051657303292895,0.18054806730323147,0.18062903433878852,0.18054164433136147,0.18054884018230857,0.18065285625428937,2.334508468469601,2.786383898522984,,2.788050829342376,2.7879700384975705,2.787876982263055,2.788051434518214,2.788499785405052,2.788015859027339,2.788055715247631,2.7886316598009495,349.0500000000014,53012.94946670249,177.1990603690853,,176.2011737258982,176.2199708591098,176.35379713495777,176.20136903167236,176.61235452261556,176.21435171996248,176.19953558121617,176.25642156847476,1767.0983155567496,5.906635345636176,,5.87337245752994,5.873999028636993,5.878459904498593,5.873378967722412,5.887078484087185,5.87381172399875,5.873317852707205,5.875214052282492,11.976903780919187,6.275886024167499,,6.270238663475461,6.270345337740148,6.271104476929863,6.27023977189978,6.272569532050251,6.2703134501583335,6.270229366418794,6.270552164127833,5.72272644370713,0.0,32.25581291648074,2.5341057356572696,0.05330841642776196,15.423372013483434,7.2384917444760974,2.772182729767563,0.0,424.7820863659221,124.46224141494818,-342.6538865959195,-26.451967695664724,-5.114237113371931,-14.897995069387802,364.00013361819845,1002.1196716993227,25.19622066026779,14.95701002536302,22.775447084075513,3802.0,37.0,1.0088619993562966,0.47197506303297926,0.0,0.0,0.23570226039551584,0.056781344807245726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.056131276171213614,0.2276063978910685,0.06433798197900728,21.443100532052174,17.931322873908943,14.702708600407234,11.135238184370921,11.666501309675644,7.735476862592537,9.228734496955838,5.235536326368147,6.739391788203961,3.383643284919079,5.032891335107602,2.2456874556927926,3.159997461473609,1.264255698010176,1.9319177877857374,0.7523791633319478,2.4790161822153687,0.9066343466753389,3.2352244813757904,1.0024483626714813,4.254604636867517,1.1297947234727161,105.5079139919983,59.599960381598464,33.38914205102858,24.19650088788201,22.28434344982246,21.918243247976758,136.0,148.0,70.72934099999998,39.42465900000002,0.3880597014925373,91.05,9.055555555555555,7.138888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,67.0,0.0,1.0,68.0,12.0,0.0,6.0,62.0,12.0,31.0,56.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,5.0,4.0,0.0,30.0,5.0,0.0,1.0,4.0,0.0,2.0,16.0,0.0,0.0,0.0,0.0,2.0,3.6375861597263857,4.686750172980514,4.04305126783455,4.465908118654584,4.863680881139593,5.298942171316879,5.118367993899137,5.040396341257086,4.813453874395277,4.695924549256556 +288216,O=c1[nH]c(=O)n([C@H]2CCCO2)cc1F,0,29.043478260869566,7.216078260869566,3.5217391304347827,12.0,172.21746346981485,116.71708561520737,1.3466337888539561,7.191495652173915,9.320048309178743,8.576031478260873,216.5536346474606,28.791666666666668,6.901208333333334,4.291666666666667,9.583333333333334,153.51850800872919,111.26385528479994,1.627453199166666,7.003229166666668,3.8483796296296298,8.245651666666669,258.84334796445125,24.74418604651163,6.983904651162791,3.627906976744186,8.093023255813954,163.02278842138134,93.80124048070694,1.3589327351755114,7.0256279069767436,4.238372093023257,8.380570511627905,211.34166320716665,19.490909090909092,6.836927272727272,2.890909090909091,6.454545454545454,170.5941025210925,72.03118309940363,1.0805701913725454,6.844574545454544,4.909090909090909,8.318530472727273,163.68810567634836,20.227272727272727,6.950431818181818,2.659090909090909,6.613636363636363,172.64380050350553,75.02728122945453,1.075472456105477,6.944531818181816,5.3648989898989905,8.442310181818183,166.6212058751212,19.916666666666668,6.945499999999999,2.5555555555555554,5.666666666666667,168.41478977747352,73.42661571817779,1.1120111727332225,6.954636111111113,5.717592592592594,8.399289888888893,167.04397152780783,13.935483870967742,6.79341935483871,2.032258064516129,2.967741935483871,177.7281722720305,47.46467504908386,0.8821707239062581,6.7720193548387115,4.645161290322582,8.351409806451613,126.59686980173747,11.0,6.896250000000001,1.625,1.5,186.056738748281,34.1047582314,0.7166537272122498,6.844000000000003,4.854166666666666,8.4891555,103.09385502449425,8.0,7.700000000000002,1.0,0.0,185.18427669614996,16.126992,0.534767986,7.568,7.0,9.471168,82.0136306254668,8.597353497164459,0.28773875236294894,0.03310039425076657,0.6465028355387521,5.640831758034026,2.296561828131708,40.97457148015226,0.20970884444040452,0.2539977315689981,4.241230833858431,0.17964335727788275,42.48890995954385,0.2522841839949594,-0.024460853812224306,-0.022289426212171653,0.10168557025834905,1.3374291115311914,-0.6926914946276095,1.1909969226910544,-0.0401762623414641,-0.016817115626969168,-0.07164548764265215,-0.018977270321361064,-2.5509138652091354,0.1832329537961052,0.018650833076889233,0.008371358380350477,-0.04286279509385852,0.6705939244735568,-0.14147231661045773,0.8100947110240552,-0.01765124977799899,0.01563745548863585,0.19787713153871322,0.009525860113421545,-3.2459416502706886,0.4745832617288191,0.0157474136449562,-0.0050441575948331745,-0.06073208455061006,0.48011685856676395,0.03488272161844073,2.3836794271766606,-0.01678902509412866,0.014848434438907048,0.392936930744114,0.004211191338717991,-1.0712120576015385,0.9026465028355385,0.010205911668671592,0.0008568618050610196,-0.053617460044681195,0.36410895342842425,0.08398345304559413,4.2768047130143225,0.029256277211996615,0.010885865268946544,0.16582889385346858,0.009397899639113244,6.986859184165709,-0.584068473009872,0.03445400126023944,-1.0236292032037425e-06,-0.12717916404116783,-0.5128124343625289,-0.2850703527485736,-2.7791771097089657,-0.04964501684591658,0.028240070363369046,0.3629693808490279,0.02310134320520899,-10.627856913376814,-1.938166961400086,-0.06573791084822239,0.001853082550790938,-0.01536679065796696,-1.8988962741630588,-0.19696036677748213,-9.142297122696155,-0.002153538187722998,-0.05905074699676806,-1.1321845505484749,-0.03521651856820536,-3.562652077007134,-3.032136105860114,-0.158834404536862,0.0013978508961258152,0.04914933837429109,-3.488657844990548,0.35872292408249595,-15.367181739651047,0.023713254887926825,-0.14202490548204152,-2.414992911153119,-0.09252487901701321,0.18358498458357153,-12.24952741020794,-0.37505179584121023,-0.011431072403710925,0.48393194706994336,-8.771266540642722,0.32809003062699066,-56.1427130050492,0.10556768012481256,-0.3497716446124764,-5.950168031926065,-0.23117935727788266,-11.555619556963181,,,0.4346938775510204,1.1785714285714286,0.4642857142857143,0.10714285714285714,0.7142857142857143,-0.25,0.6298086909463391,0.01661950085864567,0.028905215144359956,0.7565547551353727,0.22989284087761638,0.24736005557610188,1.3863634460817118,0.47725289645371827,2.001913557574325,1.1810499927867923,0.29971275678847437,0.3954587997766708,0.12569200822238788,0.8208635647875331,8.698248711652173,668.0,165.96980000000002,81.0,276.0,3961.0016598057414,2684.4929691497696,30.97257714364099,165.40440000000004,214.3611111111111,197.24872400000007,4980.733596891594,691.0,165.62900000000002,103.0,230.0,3684.4441922095007,2670.3325268351987,39.058876779999984,168.07750000000004,92.36111111111111,197.89564000000004,6212.24035114683,1064.0,300.3079,156.0,348.0,7009.979902119398,4033.4533406703986,58.43410761254699,302.102,182.25000000000003,360.3645319999999,9087.691517908166,1072.0,376.03099999999995,159.0,355.0,9382.675638660088,3961.7150704672,59.43136052548999,376.4515999999999,270.0,457.5191760000001,9002.845812199159,890.0,305.819,117.0,291.0,7596.327222154243,3301.2003740959995,47.32078806864099,305.5593999999999,236.05555555555557,371.461648,7331.333058505334,717.0,250.03799999999995,92.0,204.0,6062.932431989047,2643.3581658544003,40.03240221839601,250.36690000000007,205.8333333333334,302.3744360000001,6013.582975001082,432.0,210.596,63.0,92.0,5509.573340432945,1471.4049265215997,27.347292441093998,209.93260000000006,144.00000000000003,258.893704,3924.5029638538617,176.0,110.34000000000002,26.0,24.0,2976.907819972496,545.6761317024,11.466459635395998,109.50400000000005,77.66666666666666,135.826488,1649.501680391908,32.0,30.800000000000008,4.0,0.0,740.7371067845999,64.507968,2.139071944,30.272,28.0,37.884672,328.0545225018672,197.73913043478254,6.617991304347825,0.7613090677676312,14.8695652173913,129.7391304347826,52.820922047029285,942.4151440435019,4.823303422129304,5.8419478260869555,97.54830917874392,4.131797217391303,977.2449290695085,6.054820415879026,-0.5870604914933834,-0.5349462290921196,2.440453686200377,32.09829867674859,-16.624595871062628,28.583926144585305,-0.9642302961951383,-0.40361077504726006,-1.7194917034236514,-0.4554544877126655,-61.22193276501925,7.879017013232525,0.801985822306237,0.35996841035507054,-1.8431001890359164,28.835538752362943,-6.083309614249682,34.83407257403437,-0.7590037404539566,0.6724105860113415,8.508716656164669,0.4096119848771264,-139.57549096163962,26.10207939508505,0.8661077504725911,-0.2774286677158246,-3.3402646502835536,26.406427221172017,1.91854968901424,131.10236849471633,-0.9233963801770763,0.8166638941398877,21.61153119092627,0.2316155236294895,-58.91666316808461,39.71644612476369,0.44906011342155006,0.03770191942268486,-2.3591682419659725,16.020793950850667,3.6952719340061413,188.17940737263018,1.287276197327851,0.47897807183364793,7.296471329552618,0.41350758412098276,307.4218041032912,-21.02646502835539,1.2403440453686199,-3.685065131533473e-05,-4.578449905482042,-18.46124763705104,-10.26253269894865,-100.05037594952276,-1.787220606452997,1.0166425330812856,13.066897710565005,0.8316483553875236,-382.6028488815653,-60.08317580340267,-2.037875236294894,0.05744555907451908,-0.47637051039697575,-58.865784499054826,-6.105771370101946,-283.4112108035808,-0.06675968381941294,-1.8305731568998098,-35.09772106700272,-1.0917120756143661,-110.44221438722116,-48.51417769376182,-2.541350472589792,0.022365614338013044,0.7863894139886575,-55.81852551984877,5.739566785319935,-245.87490783441675,0.3794120782068292,-2.2723984877126644,-38.639886578449904,-1.4803980642722114,2.9373597533371445,-48.99810964083176,-1.500207183364841,-0.0457242896148437,1.9357277882797734,-35.08506616257089,1.3123601225079626,-224.5708520201968,0.42227072049925024,-1.3990865784499056,-23.80067212770426,-0.9247174291115307,-46.222478227852726,0.7235280023619584,0.5232817015599763,0.4454360366901371,0.2872357282841188,0.29103083284057585,0.14815491992172405,0.18870946941732086,0.07926768335253317,0.11909271570429995,0.04408191633596084,0.07601754438223957,0.020736812128907853,0.05065229437746935,0.011865717948870197,0.03357849014487931,0.006912590267151368,9.004064913153865,5.7696834579481076,4.107719104115882,2.254832691877566,0.5197537231048296,-0.4080437314856284,3.218192448428193,0.9772512019503055,7.004060248561286,1.8563515753779232,17.424769953746846,11.039783053744761,19.000140101493837,11.790127234423334,1.921728845831331,0.5457885166782759,3.988675692026923,2.3003089775206704,8.001918109095936,1.2615819438895897,4.009978146036604,2.4942040411264226,20.797667038161634,13.304121290352606,0.4092604710398311,0.735082910669427,0.8599108486795893,0.8964864865677897,0.8964864865677897,0.8964864865677897,1.9649641547233812,444.63499327031263,0.0,2.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,2.5775744571801864,1.0283254110610094,0.43478260869565233,0.2608695652173916,0.2608695652173916,0.2608695652173916,26.9500080360595,594.1420451141971,56.88634304492747,25.83226283105205,55.64678605096684,,7.0,160.0,23.294132305036246,13.979489415818463,0.0,13.027703587438928,17.18476484233044,0.0,0.0,4.9839785209472085,0.0,4.736862953800049,6.085714285714285,16.5,6.5,1.5,10.0,0.0,0.06530612244897961,-3.5,0.28670807453416125,0.0341366459627328,-0.25257142857142845,0.046734693877551026,0.27974923547400604,0.0,0.7267080745341616,1.0010204081632652,0.4400000000000004,0.6925714285714288,0.9542857142857142,8.817321673248747,0.2326730120210394,0.4046730120210394,10.591766571895219,3.2184997722866293,3.463040778065426,19.409088245143966,6.6815405503520555,0.4342507645259939,0.1564945226917058,0.0,0.3943661971830986,0.5,0.4627267601428663,-0.7604718516572471,-0.10798967207561311,-0.03306399355031509,-0.09505898145715588,0.5372732398571339,0.8829858368984194,0.04936377331644276,0.03839068856080083,0.05886572245989461,-1.393497465172416,0.6165530636177077,0.6691066009345625,1.6819627889822641,0.9247076023391816,0.3921330428954424,1.3745589255413644,0.6175838016451825,1.3413723768966763,0.635443025256615,0.5292368247286536,0.712828061261814,1.0394281953878644,0.7839786463766341,0.6833349339990471,0.8079145199569481,1.1010471916224673,0.6841994513373653,0.9997419153408356,0.7818287976128563,1.0919193058492311,0.6815956989289,0.5428437337141642,0.7124570137629669,1.018236314125324,0.9183817062445033,0.8633133132475501,1.102793417933206,1.1163742690058482,0.8802278820375334,0.8647785569775711,0.9138407817151784,1.0090895157216009,0.8652867417657004,0.7551244273864061,0.8911353114092809,0.9908586007106113,0.8963830255057171,0.9234712949811381,0.9526452177573937,1.025584795321638,0.9364946380697051,0.7981737758244769,0.8919177534200655,0.7517099315995613,0.9225775649574888,0.9303082827782596,0.9136653619180941,0.7758831636717657,1.022952702042412,0.8949492971946914,0.9294092070183607,1.0274528914879795,1.038622654155496,1.177280434179923,1.0275107389457543,1.2387739680069827,0.8987922142637885,0.9433597457801992,0.8825486901616443,1.22162978477825,1.3261199534712178,1.3692567148440904,0.7604800991329318,0.8590831918505946,1.4222087693505145,1.0614224900691775,1.3287168699540708,0.8937387937201325,1.3793460643302125,1.5176746396578102,1.3064912792758747,1.0456958074124088,1.6062829815303437,2.0963687260944797,0.79748677519007,0.8322368421052635,1.9288706434316354,1.1907939749711705,1.648799644208967,0.8006775877126944,2.0974703754257065,2.32772842639594,1.9849518426216801,0.9675664418009039,2.7258135444151286,2.809009432784675,1.382284552450578,0.0,3.0522788203753355,8.005878684274291e-05,2.6230806100945796,0.04169139772886744,2.8951987425278043,4.059527052123315,3.002636225171032,0.9392935530112143,3.0,0.0,2.000000000000001,0.9027777777777778,0.8444444444444446,0.3716666666666667,0.16163265306122448,0.040816326530612235,0.0,0.0,2712.4380368384172,2952.0753436041173,1451.1731175942418,1358.7495479712225,8.2602190342261,0.4557517242979731,4.495609966298617,0.8373967261726242,1.0,0.5,1.9459874988768269,3.4952365449960037,4.088779347361361,4.2626923908396215,4.2626923908396215,4.2626923908396215,0.19999999999999998,0.0,0.09523809523809526,0.04751461988304093,0.052777777777777785,0.030972222222222227,0.026938775510204085,0.020408163265306117,0.0,0.0,0.4738496538966464,10.515555555555556,4.244897959183674,2.1728395061728394,78.13673270456316,1.0,3.5733394452402907,42.38580127821991,,29.37694077705582,28.332650955609797,28.5169314668199,29.318413001603687,51.21741612260459,28.969855363996878,29.469014239997016,42.382919652749514,0.029344400469070702,-0.08501063416501434,-0.6733885416381543,0.15728557504873295,0.23709785522788213,-0.30162109556228484,0.029066732845954554,-0.191581153616444,-0.06620970794930436,-0.01689261689571212,-0.10563858641322275,-0.060037168937447635,0.02131271604180732,0.06481863469458359,0.25290811695261317,-0.06629946960424317,0.11888209988153874,-0.06160178875982967,0.01977066950941655,-0.0841702686651118,0.06156533521791694,0.046655591098467945,0.053026509066440984,-0.07639503233576332,0.05520108739106099,0.05472816405727885,-0.1523896530240378,-0.09393939393939396,0.08511455032902752,0.015189106250546024,0.05817460295664825,-0.08005873638247908,0.058458925389550165,0.09264690985626978,0.023441954116922212,-0.025211568350929726,0.10499120492524186,0.03546936790703124,0.025886755262474723,-0.08293460925039872,0.06454880575188889,0.03656921055503047,0.10437704553142116,0.1395090287682679,0.04285812003793198,0.03909923801591503,0.05231420622236552,0.16443959590439722,-0.06793584481579208,0.11974056666784921,-3.0924985226725396e-05,-0.19671864847303452,-0.0909107834375931,-0.12412918705545288,-0.06782687431045316,-0.23673306187152637,0.11118237233428864,0.08558114261345662,0.12859558825475798,-0.2501324915959532,-0.22543762589723962,-0.22846387672280472,0.05598370027716581,-0.023769100169779313,-0.33663409149874607,-0.08576314574457275,-0.2231212381836527,-0.010269181509580989,-0.23248533217993333,-0.2669471657873612,-0.1960357404907013,-0.08384898742752735,-0.3526824978012315,-0.5520090819623451,0.04223064189313824,0.07602339181286549,-0.6184651474530832,0.15619998542530997,-0.3750419146444224,0.11307703760041321,-0.5591581649360545,-0.5694085056332798,-0.5150475944061231,0.004320774168091707,-1.4248021108179425,-1.3034455483011413,-0.34534550607191616,0.7485380116959068,-1.5549597855227886,0.14286139680981175,-1.3701842625064249,0.5034011817980952,-1.377066017290243,-1.402934257768974,-1.2868795194039993,-0.2719678986343955,2.8039657955522017,5.482971646966276,2.6207413942088964,21.059472540077312,36.071659863127735,38.93029883399897,39.10560318182505,39.10560318182505,39.10560318182505,28.02678980604055,16.53469989901509,4.195978595038641,5.5364231968733915,1.7596881151134303,11.492089907025463,1381.2100678703057,1152.9066698471256,346.01708266254104,8.0,21.0,27.0,33.0,36.0,34.0,28.0,22.0,16.0,200.059720368,15.0,4.290459441148391,5.1298987149230735,5.998936561946683,6.859614903654202,7.7306140660637395,8.596928159435091,9.468310380442437,10.336340823963159,11.207825918481378,0.7536231884057973,1.052869565217391,1.1576397763747897,0.7245872558850036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.638483129393387,1.032907075873828,1.0552265746223757,0.6410914875352881,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,4.736862953800049,6.22790117073487,0.0,5.817220841045895,5.559266895052008,14.345615352810384,4.794537184071822,4.39041504767482,0.0,0.0,12.841643245852019,6.606881964512918,6.196843571613076,167.28475914823468,-274.92542360034906,-39.040375097580764,-11.9532792869717,-34.36567795004363,194.23476718429418,319.2166215138481,17.84596794734671,13.878983544080349,21.281108100923202,0.42857142857142855,0.6240101041656522,0.21775117857041193,83.16449409260574,0.20086991533635426,46.5717648489891,0.37598989583434805,4.0,0.06666666666666667,0.4301891999668901,0.7726735212095216,0.9038849002358679,0.9423309401415207,0.9423309401415207,0.9423309401415207,-0.015300000000000313,,1.369047619047619,1.6187222644678747,1.3236049220667407,1.4005860671779276,-6.281451097244647,1.4578276941623665,1.3395103868809843,-2.382292355961642,45.503700000000016,9.127278001474869,0.0,9.551078168738563,0.0,19.06954441658689,6.606881964512918,32.85214907405809,0.0,0.0,3.4339872044851463,0.0,4.74493212836325,2.3978952727983707,6.248042874508429,4.442651256490317,7.845807502637805,6.293419278846481,9.494842393421333,17.33333333333334,0.8860648148148149,0.0,1.8807870370370372,0.0,0.0,0.0,-0.9721296296296293,1.0731481481481482,24.215999999999994,0.0,21.962215136054418,0.0,0.0,0.0,0.0,0.0,0.0,26.62571485662016,11.24901029325548,4.39041504767482,0.0,16.157960133251482,4.736862953800049,5.817220841045895,19.06954441658689,15.78591793975672,0.0,0.0,0.0,16.665506885355082,14.685111976047901,17.70133163377883,84.77160255643984,,58.558303322816506,56.43405587343082,56.84477651619558,58.43674227932203,103.9343547977351,57.73144962882374,58.74666985329437,85.24200940882466,17.70133163377883,84.77160255643986,,57.38483393506141,55.04943134337427,55.72848597867254,57.23623993602667,108.71628334245378,56.4818830338274,57.59851809311069,87.1481316614607,4.74601376198042,61.98659487574293,,43.49790361091734,41.86472955742035,41.97707654975558,43.44399729169949,74.61834356734275,42.858598820328844,43.62456557873483,63.14692176587175,1.264380830984202,6.055114468317131,,4.18273595162975,4.031003990959344,4.060341179728256,4.1740530199515735,7.4238824855525065,4.12367497348741,4.1961907038067405,6.08871495777319,2.38769092618245,42.38580127821991,,29.376940777054514,28.33265095560597,28.516931466816843,29.3184130016023,51.21741612260459,28.969855363994895,29.46901423999583,42.382919652749514,23.756862745098044,0.0,0.0,0.0,12.853593159486017,0.0,0.0,24.27021121631464,2.0427527399848824,0.0,5.188941798941799,0.0,-0.4501388888888891,0.0,0.0,0.0,0.0,14.745104213311626,225.59183728467855,44.757712474167015,80.39044053490808,94.0419249893113,98.0419249893113,98.0419249893113,98.0419249893113,254.0,98.61892897005815,135.92768904785035,58.90157791155113,64.09,64.09,0.75,7.005902340121661,4.906890595608519,3.495230528464241,3.691606325159844,,3.6844069991904957,3.68307741494468,3.6806354445941323,3.6847889419342055,3.668415830515408,3.68388531152117,3.684298805199608,3.683091991975002,0.2496593234617315,0.263686166082846,,0.2631719285136068,0.2630769582103343,0.26290253175672373,0.26319921013815756,0.262029702179672,0.26313466510865496,0.2631642003714006,0.26307799942678584,1.5878715696351136,1.6425339184215546,,1.6405818264339316,1.640220893397494,1.6395576490568617,1.6406854857061515,1.6362321516878524,1.6404402230207664,1.6405524606283837,1.6402248512294462,128.28999999999996,59.87149955877699,60.74653862274318,,60.682123831516286,60.721138797501276,60.97036079944087,60.6491380170959,61.937104707019266,60.70173037630743,60.69496122302268,60.97264209109811,4.276535682769785,4.339038473053084,,4.334437416536877,4.337224199821519,4.355025771388633,4.332081286935422,4.424078907644233,4.335837884021959,4.335354373073049,4.3551887207927225,4.428672828159403,4.443182339815192,,4.442121391008426,4.442764124432276,4.446860094178683,4.441577659496358,4.4625916665642205,4.442444441303535,4.4423329200882105,4.446897509882798,19.115683106575965,23.843002173091456,0.0,-1.6319009826152682,-0.9721296296296293,0.0,1.9252539210128492,0.5534247448979591,0.0,157.83380700361022,60.47670688992097,-99.39090891676804,-14.11385791312165,-4.321343865946436,-12.423863614596005,70.21966102977504,115.4030418071565,6.451665879270275,5.01752355683289,7.693536120477098,288.0,19.0,1.0098562113411684,0.3003002538257308,0.0,0.0,0.33093309327558146,0.047866974711535726,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.08333333333333333,0.1388888888888889,0.053405230234194065,0.30577976915299365,0.0687429562376407,10.129392033067417,7.325943821839669,6.681540550352056,4.308535924261782,6.111647489652093,3.111253318356205,5.095155674267663,2.140227450518396,3.9300596182418985,1.4547032390867078,2.736631597760624,0.7465252366406827,1.7221780088339578,0.4034344102615867,0.9401977240566208,0.1935525274802383,2.468839328415666,0.5975476207297489,3.3813593523923604,0.7529002211607022,5.158032132848087,0.8537040848285798,45.46275380904239,25.806060398830333,21.64262220933598,21.112687615924845,21.112687615924845,21.112687615924845,72.0,84.0,24.524136999999985,15.893862999999998,0.4782608695652174,43.06,5.055555555555555,3.0833333333333335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,23.0,0.0,0.0,24.0,6.0,2.0,3.0,21.0,8.0,15.0,16.0,0.0,0.0,0.0,8.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,4.0,1.0,2.0,14.0,6.0,0.0,2.0,3.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,3.044522437723423,4.2749284991175145,3.676300671907076,4.208417018481948,4.7106556938340685,5.166570095717016,5.316586956597781,5.0247025513076915,4.920892918595395,4.7801733619743665 +5467,CCN(CC)CCNC(=O)c1cc(S(C)(=O)=O)ccc1OC,0,25.52173913043478,6.1676826086956495,2.782608695652174,6.444444444444445,165.46856665134948,100.70554463043483,1.4327614286168693,6.221119565217387,5.254698589491262,7.758801326086954,196.68982790542853,28.41304347826087,6.296934782608695,3.3260869565217392,4.702898550724638,147.41749597097814,107.58493134782617,1.7777089441304355,6.450595652173916,2.669149221685454,7.80857426086956,243.44578850832576,19.975609756097562,6.268243902439026,2.9146341463414633,4.426829268292683,160.61228432478558,73.1358919512195,1.3866017897022438,6.350539024390245,3.487691960252935,7.837094097560975,188.73940190446822,17.76,6.220609000000003,2.72,3.4866666666666664,161.54442494851892,63.82197693999999,1.3159539647013097,6.295921000000001,3.203919753086418,7.804595959999999,178.3401389260531,16.26605504587156,6.154550458715597,2.376146788990826,3.1865443425076454,158.4893772913148,57.0871303394495,1.270445157584725,6.234029357798164,3.267470834749121,7.737133284403668,166.56849046427325,13.568,5.858246399999999,2.024,2.181333333333333,166.06333975293202,47.613661776,1.0368131406760561,5.918125600000002,2.5997037037037023,7.513656111999999,131.25149102188547,14.733333333333333,6.153838095238094,2.104761904761905,3.1142857142857143,169.9778698834366,52.34871609523811,1.024147813956314,6.181500952380953,3.909920634920634,7.788889942857142,132.76854960121176,15.580246913580247,6.2791481481481455,2.3580246913580245,1.9917695473251027,162.73130618642634,52.96177124691358,1.214358316196123,6.341748148148147,3.328475080018289,7.924158493827161,157.92175862175932,13.27710843373494,6.146997590361446,2.108433734939759,1.3895582329317269,161.90338321700355,43.69053516867471,1.1473811817956263,6.209104819277108,3.116019634091923,7.7902417108433735,146.23011556529562,10.882797731569,0.14599338374291107,0.01851785251724512,0.5973534971644614,4.084436042848141,1.4239576975112143,49.72998020274105,0.28129097488103577,0.13631762759924376,2.230824012812434,0.09324608931947069,50.08689934895162,2.462192816635163,-0.0032202268431002,-0.007704759614439623,0.24102079395085085,0.9625078764965351,-0.3549341780703986,10.636105792533103,-0.02695464641020784,0.00275406427221167,-0.3855276426132076,0.0051872140831757925,-1.9810248068880962,0.36640693439070493,0.01198869473004748,-0.0005262508456436872,-0.0019134123288302451,0.7855415699714656,0.13594127531856326,2.071657521278072,0.018357440124830485,0.012000399972336158,0.4828468456319257,0.00472699153949006,6.364924907600761,-0.3141020793950854,-0.018432905482041583,-0.0004867639683309423,-0.04691871455576555,-0.20095778197857578,0.24687724646223702,-1.2130848281757998,0.020437198886119314,-0.01587456238185259,-0.09836550055621679,-0.013989902797731567,4.014978016898447,-1.0726661001370077,-0.0005721232722290625,0.0009248651245366171,-0.009000884479977794,0.09222486217335435,-0.31120407082819945,-5.189467553558728,-0.044416474388599914,-0.002643814276547415,-0.08694388676755478,0.0003523374854754508,-10.66098930348684,1.9140718336483924,0.007708007561436664,-0.0028241209563974537,-0.0008317580340264845,0.3136315900021002,-0.208903288531597,8.501528750476368,-0.017969101613809137,0.011417937618147458,-0.0866786081485112,0.006546064419659728,1.1009032038719082,1.788009721847151,0.04688682329642631,0.0036240563746800895,-0.04621478080835359,0.49982896750382577,0.22396581458942477,8.278254693325229,0.03731906651443197,0.04231839724547661,0.7431154430915947,0.031375752916554124,6.679509542571854,-3.1291745431632014,-0.03325666876706573,4.7420196186061533e-05,-0.09225419496370979,-1.2810722926244873,0.005042945684984567,-14.05054887101799,-0.024875642908139504,-0.03352787988051066,-0.3302429414177856,-0.02328282012999135,-5.430292563327104,-2.96923041883982,-0.04470448903363927,-0.0016983642427241257,-0.016421071810872996,-1.4884288255732439,-0.24073956842451294,-13.84702420640786,-0.04138152430879129,-0.04424685756257545,-0.6965183342024855,-0.0254600610324094,-12.068996364650992,,,0.47575757575757577,1.1136363636363635,0.5,0.022727272727272728,0.6136363636363636,-0.11363636363636363,0.8775452344440445,0.026634842463071753,0.03054393337216266,0.8808045994269773,0.21900634977604383,0.25045942423238876,1.758349833871022,0.4694657740084326,1.9419358213688513,1.337419590935925,0.1865832779163485,0.32099405762555877,0.0,0.6045162304329265,7.133601701043492,1174.0,283.71339999999987,128.0,296.44444444444446,7611.5540659620765,4632.455053000002,65.90702571637598,286.1714999999998,241.71613511659805,356.90486099999987,9047.732083649713,1307.0,289.659,153.0,216.33333333333331,6781.204814664995,4948.906842000004,81.77461143000004,296.7274000000001,122.78086419753087,359.19441599999976,11198.506271382985,1638.0,513.9960000000001,239.0,363.0,13170.207314632418,5997.143139999999,113.701346755584,520.7442000000001,285.99074074074065,642.641716,15476.630956166395,1776.0,622.0609000000003,272.0,348.66666666666663,16154.442494851892,6382.1976939999995,131.59539647013096,629.5921000000001,320.3919753086418,780.4595959999999,17834.01389260531,1773.0,670.846,259.0,347.33333333333337,17275.342124753315,6222.497206999996,138.47852217673503,679.5091999999999,356.15432098765416,843.3475279999998,18155.965460605785,1696.0,732.2807999999999,253.0,272.66666666666663,20757.917469116503,5951.707722,129.601642584507,739.7657000000003,324.96296296296276,939.2070139999998,16406.436377735685,1547.0,646.1529999999999,221.0,327.0,17847.676337760844,5496.615190000001,107.53552046541297,649.0576000000001,410.5416666666666,817.8334439999999,13940.697708127236,1262.0,508.6109999999998,191.0,161.33333333333331,13181.235801100534,4289.903471,98.36302361188598,513.6815999999999,269.6064814814814,641.856838,12791.662448362506,1102.0,510.2008,175.0,115.33333333333333,13437.980807011296,3626.3144190000007,95.23263808903698,515.3557,258.6296296296296,646.590062,12137.099591919537,500.608695652174,6.71569565217391,0.8518212157932755,27.478260869565222,187.8840579710145,65.50205408551585,2287.5790893260883,12.939384844527646,6.270610869565213,102.61790458937196,4.289320108695652,2303.9973700517744,113.2608695652175,-0.1481304347826092,-0.35441894226422266,11.08695652173914,44.275362318840614,-16.326972191238337,489.26086645652276,-1.2399137348695606,0.1266869565217368,-17.73427156020755,0.23861184782608644,-91.12714111685243,30.045368620037802,0.9830729678638933,-0.043152569342782346,-0.1568998109640801,64.41440873766018,11.147184576122187,169.8759167448019,1.5053100902360999,0.9840327977315649,39.59344134181791,0.3876133062381849,521.9238424232624,-31.41020793950854,-1.8432905482041582,-0.04867639683309423,-4.691871455576555,-20.095778197857577,24.687724646223703,-121.30848281757999,2.0437198886119314,-1.5874562381852588,-9.836550055621679,-1.3989902797731566,401.4978016898447,-116.92060491493385,-0.06236143667296781,0.10081029857449127,-0.9810964083175795,10.052509976895625,-33.92124372027374,-565.6519633379014,-4.841395708357391,-0.28817575614366825,-9.476883657663471,0.038404785916824134,-1162.0478340800655,239.25897920604905,0.963500945179583,-0.35301511954968173,-0.10396975425331056,39.203948750262526,-26.112911066449627,1062.691093809546,-2.246137701726142,1.4272422022684323,-10.834826018563898,0.818258052457466,137.61290048398854,187.74102079395084,4.923116446124762,0.3805259193414094,-4.852551984877127,52.482041587901705,23.5164105318896,869.2167427991491,3.9185019840153563,4.4434317107750445,78.02712152461744,3.294454056238183,701.3485019700446,-253.46313799621933,-2.6937901701323237,0.003841035891070984,-7.472589792060493,-103.76685570258347,0.40847860048374995,-1138.0944585524571,-2.0149270755593,-2.7157582703213636,-26.74967825484063,-1.8859084305292995,-439.8536976294954,-246.4461247637051,-3.7104725897920594,-0.14096423214610243,-1.3629489603024587,-123.53959252257924,-19.981384179234574,-1149.3030091318524,-3.434666517629677,-3.6724891776937625,-57.8110217388063,-2.11318506568998,-1001.7266982660324,0.7613960171194118,0.6529740709573667,0.46946577400843253,0.4140044550338445,0.30996311478288835,0.23109248476372388,0.1987046954992733,0.13034213366451475,0.1288956610546394,0.07118278401305303,0.0780121654550722,0.03641707912653278,0.05328850004413071,0.02217373525336643,0.03836386048006904,0.01428986486170028,16.01322086987434,5.693525881834496,3.5802648507888084,2.181264518085833,0.43429569073256546,-0.5281295413800465,4.042872100460688,0.9682070116029969,6.022681031909353,0.6158819501042141,14.543735998272702,10.309669456876922,32.06659336228503,11.705242065387312,2.9584528841927726,0.7517639574995189,3.53605094765782,2.23545305752976,7.014573236431282,0.2964156824781109,3.767403627843429,2.434685197638857,24.44382915461685,14.701023557193663,0.28770240907946487,0.5573006885442403,0.7410161094942818,0.8049123530894018,0.8049123530894018,0.8049123530894018,2.5302293753157206,609.9685040496371,0.0,1.0,6.0,0.0,5.0,0.0,1.0,0.0,0.0,3.883531716335555,2.3467029761320477,1.299444293713421,0.9352076088837808,0.9352076088837808,0.9352076088837808,266.19722149650966,1206.458662236901,47.82293904723358,26.227362222541327,51.87084681997706,,11.0,383.0,9.837253136417502,13.212334168400758,16.366114696566278,12.29426823919648,25.89003840124913,25.308898746662365,0.0,0.0,24.064172734238056,4.736862953800049,10.466666666666667,24.5,11.0,0.5,13.5,0.0,0.024242424242424235,-2.5,0.14782608695652166,0.032441471571906355,-0.11538461538461531,0.025559947299077623,0.17816382252559704,0.0,0.5811594202898553,0.8878787878787876,0.4333333333333337,0.548717948717949,0.86231884057971,19.30599515776898,0.5859665341875786,0.6719665341875786,19.3777011873935,4.818139695072964,5.510107333112553,38.68369634516248,10.328247028185517,0.5358361774744029,0.28662420382165604,0.07961783439490445,0.22929936305732482,0.5333333333333333,0.27222775559137324,-0.5620463442518526,-0.04370067521708109,-0.012218398788083753,-0.04323433417321944,0.7277722444086266,1.5025717290628713,0.038138933023519346,0.032664602805714586,0.04553247663826882,-4.0883477542192885,0.9340802501302761,0.7069114533765807,1.4716931809367115,0.9968354430379746,0.58604597346498,1.640820050759538,0.9281847930867243,1.4761254694154253,0.6693413823838673,0.717083581998307,0.6209684341125816,1.2152572014443794,1.0381264378042423,0.9027423214100457,1.291006934246031,1.3480723217042294,0.8751180567575501,1.0627623150718255,1.0221065861355234,1.0321345931726467,0.8879751043855624,0.5646071559481156,0.9134741875003121,0.8894921465220751,0.9748632100052109,1.1549093946044635,1.1742094042741098,1.2855617088607594,1.1441896791113855,0.9168699763809127,0.973528563718893,0.9110586046017372,1.1339002926349666,1.0565834797534817,1.1716592542980546,0.9116808035969814,0.9487990687045526,0.9641660681069757,0.9632969023716877,0.9390242132156542,0.9466847501479044,1.2684600595128952,0.96519057330467,1.1108722489884542,0.973927324321194,1.0372512273709291,0.9704552215376824,1.2246681478532926,0.6713027618551328,0.7911674791694991,1.0671582656425354,0.8646835443037973,0.8181641468682506,1.0658169606580037,0.6876609175088337,0.923330166305667,0.7746020445272478,0.8495110735804766,0.7421109684835274,0.9368558702911168,0.7615015260924588,0.8471082853091905,1.213718100747287,1.01378842676311,0.980087715431745,0.7527522988998567,0.7657311964621358,0.6970788302609149,0.845307254333003,0.7473019777397476,0.8193773597333677,0.7642431383754262,1.4881882925134617,1.4879694550728018,1.4276766744650553,1.3546061884669478,1.4799316054715626,1.0330017742339546,1.4642065991247792,1.2208399506881873,1.4797645669282546,1.4742916817693994,1.5593674385717664,1.0877737963628398,1.2151471963937037,1.4575601140163819,0.8834255871888987,0.9668102790910476,1.4452324881135155,1.1351784699886638,1.2238859213301396,1.1016296825239147,1.4587715207483634,1.777708960716901,1.47001882242315,1.21086846569855,6.0,0.12386491174369962,3.1111111111111125,1.6875,1.1333333333333335,1.0694444444444444,0.4685714285714285,0.2309027777777778,0.1771227009322247,0.21125000000000008,4526.999162449255,5170.608116054778,2413.4144466274524,2177.1511835350784,11.97430050956484,0.44638286307299146,6.629177964808906,0.8063024666301915,1.0,0.5333333333333333,1.640030239721458,3.1768589799249654,4.224117662343592,4.588354347173232,4.588354347173232,4.588354347173232,0.2727272727272727,0.010322075978641636,0.10370370370370376,0.052734375,0.03908045977011494,0.04277777777777778,0.019523809523809523,0.011545138888888891,0.011070168808264044,0.014083333333333331,0.5775681155118066,20.045454545454547,9.333333333333334,6.204081632653061,131.9260437142151,1.0,3.9692795069766875,108.70583453898823,,83.44987700405264,88.07769760753844,88.23578579098336,83.46532682658349,121.13098928392223,88.83927081989408,89.08416148348041,110.87125914143535,0.22624630884141061,-0.022057347809479502,-0.4160719828211404,0.4034810126582281,0.23565257636531953,-0.2492589342301044,0.2138771370744856,-0.09582478222633185,0.020203287870503905,-0.17281849235931748,0.055629293636153085,-0.0395517557013551,0.03366845028533661,0.08211806879659098,-0.028418567712082465,-0.003203149120098733,0.19232558956259116,0.09546721476077605,0.041658120772062664,0.06526139038977079,0.08803263513076816,0.21644327067431612,0.05069372425147934,0.1270776388703324,-0.02886225464651731,-0.12625849890910976,-0.02628619964856258,-0.07854430379746827,-0.04920086393088549,0.17337400324021407,-0.02439343074801659,0.07265501104243624,-0.11645274834536992,-0.044093796727697004,-0.15003205925130783,0.08016024287960812,-0.0985652886872463,-0.003918830138470866,0.0499445129328748,-0.015067936360469153,0.02257958288631801,-0.21854867695305857,-0.10435289803860995,-0.15790223773579876,-0.019394515024277623,-0.03897388869234167,0.003778576539208056,-0.2128498557918816,0.17588049331248906,0.05279696492965858,-0.15250801645425327,-0.0013924050632911716,0.07678699989715104,-0.14670610573384102,0.17095379318103518,-0.06388083237085253,0.08375980289001743,-0.038854973610954704,0.07020202635235713,0.021979863361115636,0.1642968808159011,0.32115717914307856,0.1957060826197376,-0.07736588306208558,0.122374046810949,0.15728403658400178,0.16646406573210223,0.1326706856848679,0.3104396547296674,0.33311253546833475,0.33648331147762744,0.13335841566147305,-0.2875340165595507,-0.22779572549417365,0.002560782690212082,-0.15443819346772936,-0.31364728916924733,0.003541499648338291,-0.2825367879443383,-0.08843384654861382,-0.2459541034493228,-0.14803630385950672,-0.24969218870104049,-0.10841742319672593,-0.2728370490822068,-0.3062090067887064,-0.09171496755050242,-0.027489705658075358,-0.3644147710868155,-0.16906370803379642,-0.2784441930190962,-0.1471128760042602,-0.32458647015671005,-0.31222468926375513,-0.2730415958269372,-0.24096113996930038,5.367292084487838,8.74758593128566,3.3019272488946267,18.332938923921176,32.89094775417464,36.51910683618968,36.88625741449795,36.88625741449795,36.88625741449795,42.72258807011473,29.423231000590352,4.104832114159667,7.061869267762293,0.0,13.299357069524383,4879.398662093507,3833.8837118322926,1443.366015165283,26.0,30.0,35.0,38.0,44.0,48.0,44.0,31.0,28.0,328.14567824800065,22.0,4.653960350157523,5.459585514144159,6.318968113746434,7.152268856032539,8.017966703493599,8.862625169408922,9.732402627668161,10.583676131931682,11.456492670158047,0.6376811594202899,0.9815652173913046,1.1374466083033543,0.5944315536844849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6425544389481909,0.9673486786018752,1.0082570695715511,0.5883502597368118,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,4.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,14.953561288656857,5.749511833283905,9.837253136417502,0.0,5.907179729351506,4.794537184071822,8.417796984328938,0.0,0.0,13.847474399381248,31.28861401720998,19.345281995336556,17.568732508492303,159.07616913729166,-328.43153383452227,-25.536470324800852,-7.139815952924398,-25.2639641411171,425.2733906338013,878.0271284023789,22.28646872243273,19.08754626961693,26.606882678859964,0.45454545454545453,0.8278286479971912,0.2402008454553199,6.457165382529254,0.12333228253594694,37.54237200204606,0.17217135200280873,6.0,0.36363636363636365,0.2969153333969646,0.5751467993296053,0.764745230695117,0.8306875859592281,0.8306875859592281,0.8306875859592281,1.1702999999999997,,1.9107142857142856,1.48960248380871,1.0561354191587082,1.9074213757920884,-4.941402762685762,1.3688800489596085,1.3458612912595438,-2.0770482935474925,86.22500000000005,17.949197122200808,0.0,10.216698334856808,0.0,18.742957874899023,39.54459234843924,23.762552697081826,0.0,5.749511833283905,3.8066624897703196,0.0,5.10594547390058,0.0,6.5998704992128365,0.0,8.178919332848396,0.0,9.805047479722875,29.333333333333336,4.275242268203577,0.0,0.0,0.0,0.0,0.0,0.6804666897623257,0.0,45.152000000000015,0.0,35.47565872729563,0.0,0.0,-3.369455306756669,0.0,0.0,-0.3384202569916852,52.3225439819543,10.05365155780638,0.0,5.749511833283905,58.76947879297016,9.837253136417502,0.0,24.205463075150064,23.094584680902603,0.0,0.0,0.0,27.343851469486303,29.55750419161678,26.593130900688024,217.4116690779765,,167.46403468901462,176.0199768074579,176.3755592711341,167.495878315911,244.11938906098428,177.55409799897362,178.04597194048267,222.30898599929276,26.593130900688024,217.41166907797657,,165.900723000703,174.66579273126825,175.41543616280805,165.93526082662663,247.26391809178432,176.30966159082868,176.8224616757013,223.81956657641828,4.795806896607916,160.83076808461897,,128.69040134591938,132.64178120129313,131.83482298246167,128.7153374795226,184.60170830867446,134.01059391191933,134.7554186270677,168.97095025328187,1.208778677304001,9.882348594453477,,7.612001576773392,8.000908036702633,8.017070875960641,7.613449014359591,11.096335866408376,8.070640818135164,8.092998724567394,10.104953909058763,2.3979034483039583,108.70583453898823,,83.44987700405264,88.07769760753844,88.23578579098336,83.46532682658349,121.13098928392223,88.83927081989408,89.08416148348041,110.87125914143535,44.49803921568626,0.0,6.6734732785319,0.0,0.0,0.0,0.0,46.37982520029135,3.0675624512188815,2.7960213529856386,5.137826829805997,0.0,0.0,2.1849572992777357,0.0,0.0,0.0,27.06411194789334,483.74130602305786,75.44139102718707,146.13551307654842,194.30941246780523,211.0642999699687,211.0642999699687,211.0642999699687,368.0,116.23794613674106,100.60825374803517,55.496445275455,84.09,75.71000000000001,0.8333333333333334,7.251500113182934,5.459431618637297,3.739554563146063,4.614592724324799,,4.607265557653968,4.606614116306864,4.605949886331195,4.607251374761339,4.586378608184385,4.606639010489781,4.606870190241196,4.597756272102944,0.16997975287027559,0.20975421474203634,,0.209421161711544,0.2093915507412211,0.20936135846959977,0.20942051703460632,0.20847175491747205,0.20939268229499006,0.2094031904655089,0.20898892145922474,2.1074238639345673,2.317680974007627,,2.3160918868651734,2.3159504825119064,2.3158062816191625,2.316088808485106,2.311548098780967,2.315955886506038,2.3160060692857862,2.3140257779281894,253.93999999999994,364.0180427114527,113.19579215863712,,112.17599375693997,113.0422905539737,113.3674823479813,112.17705153047503,114.63907624199554,113.03165155361104,112.95474686444369,113.9037709288158,16.546274668702395,5.14526327993805,,5.098908807133635,5.138285934271532,5.153067379453695,5.098956887748865,5.210867101908888,5.137802343345957,5.134306675656531,5.177444133127991,6.68566079466117,5.517576353698978,,5.50852637117473,5.516219361751574,5.519091958755299,5.508535800719434,5.530246085948682,5.516125242099647,5.515444628640832,5.523811337633863,28.356214204115986,14.541481350256154,2.7960213529856386,0.22682586923658388,0.015967865541278936,4.275242268203577,1.1080037705700585,7.186471348825471,-1.9228946964014155,309.85739604260823,92.95608940544832,-191.91882221114793,-14.92222519240496,-4.172148308937999,-14.762986323934458,248.50831859922184,513.0747659490071,13.0230881868058,11.153799259761021,15.54772018027294,1152.0,32.0,2.2529388068639133,1.3505496311438128,0.28867513459481287,0.10206207261596575,0.5972791285011341,0.23242909424936925,0.14433756729740643,0.034020690871988585,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.12141692337037671,0.05131184067403651,16.75071237662706,14.365429561062069,10.328247028185515,9.108098010744579,9.29889344348665,6.932774542911717,6.954664342474565,4.561974678258016,4.8980351200762975,2.704945792496015,3.4325352800231768,1.6023514815674424,2.557848002118274,1.0643392921615886,1.6880098611230379,0.6287540539148123,3.8670742239573905,2.13419001632586,4.865105792583261,2.1255566572619444,6.341981183211054,2.274464116654948,73.67809302871147,38.67005151798733,29.558417138974157,27.64930436784085,27.64930436784085,27.64930436784085,104.0,117.0,49.361031999999966,35.61696800000001,0.13043478260869565,22.07,9.868055555555555,5.138888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,46.0,0.0,1.0,46.0,6.0,3.0,6.0,40.0,9.0,22.0,37.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,5.0,1.0,0.0,22.0,7.0,0.0,2.0,4.0,0.0,1.0,8.0,1.0,0.0,0.0,0.0,1.0,3.367295829986474,4.832305758571839,3.9219733362813143,4.307437777682809,4.721841492791785,5.209144564452105,5.499215308914927,5.596220463410199,5.17861843423319,4.877579978605219 +3947,CN(CCCN1c2ccccc2CCc2ccccc21)CC(=O)c1ccc(Cl)cc1,0,24.80701754385965,5.829626315789474,3.210526315789474,5.817630495993069,159.0442228462127,99.70813110526316,1.6198517970337367,5.965743859649122,2.9957069552405633,7.426009771929824,229.0822917006755,24.4,6.110416666666667,3.8833333333333333,5.901851851851851,143.09133967303836,92.68128003333338,1.929835606166667,6.289575000000001,2.713768861454047,7.54815903333333,272.9433147077452,20.4,6.030676190476192,3.552380952380952,4.463492063492064,151.7096942999499,75.84065054285712,1.666791503463248,6.175057142857144,2.4697824808935924,7.531823161904759,229.1189077030251,17.541666666666668,5.928097222222223,3.1458333333333335,3.5601851851851856,154.45322156641566,63.55046772222223,1.502167786034583,6.0623861111111115,2.416216563786008,7.4843471388888885,199.96927445191872,14.521472392638037,5.834661963190184,2.7607361963190185,2.5344239945466938,157.85375961811872,50.84773380368099,1.3586469847697547,5.947233742331287,2.3075374283622407,7.418446711656441,175.91934647187844,13.08235294117647,5.753535294117646,2.5588235294117645,2.1594771241830064,157.22602381403132,45.040617635294105,1.3053994465109764,5.857188235294119,2.2582909707092713,7.348549447058824,165.66318385022234,12.153846153846153,5.641644970414201,2.3491124260355027,1.7587113740959894,160.6100864788627,41.82609079881656,1.208395294555639,5.741357396449703,2.033165315216597,7.2709409467455615,149.2049938112521,11.682119205298013,5.628398013245034,2.3245033112582782,1.8734363502575424,160.85629890440129,39.570990774834435,1.188366511791437,5.730705298013245,2.011732483034911,7.267508728476821,145.07603199865045,12.511450381679388,5.630320610687024,2.404580152671756,2.0330788804071247,161.7884584186741,43.776285977099235,1.213660579609229,5.7289656488549605,2.0062670813306944,7.263423694656488,150.82863259271022,9.63804247460757,0.06373007079101259,0.007856396506409517,0.5484764542936288,3.1108679213737185,1.4405839992785858,45.68176261495845,0.25442219577829794,0.0719228685749461,0.7186605996831872,0.041251197291474286,54.12049063602472,0.3619575253924282,0.004241128039396824,-0.001892871462881969,0.18222530009233612,0.9095746459499413,-0.1986739116962746,1.7063121113573407,-0.006482081674070207,0.004742131425053975,0.002459337728293488,0.000892099492151454,0.26132954773511774,0.07123070834982166,-0.005577873631446963,-0.0015722432571003608,-0.0321857274765862,-0.09310540809463536,0.0650606106988651,0.369872709853581,0.009184377744302703,-0.004747964648463176,-0.010432680904887004,-0.003118008151958822,1.124795942917004,-0.5028085564789166,0.0006797732635683202,0.0008265554888696354,-0.03860803324099722,-0.14384087158188588,-0.09501780879782633,-2.3987529651046477,-0.014534316156520418,-0.0008162165281624553,0.012086596259938215,-2.4970195957715688e-05,-3.0445406434106963,-0.8700949985554782,-0.005622988668528471,0.00028584905303374864,-0.09255136549802016,-0.505322398094187,0.058616484160287474,-4.131427678568392,-0.014461513667692516,-0.006960141204372437,0.00018682508954782472,-0.0030039905322449306,-3.662174639312857,-0.7071859214599963,-0.008299430956131297,-0.0007989173484959906,-0.057764379990223255,-0.4737493442482609,-0.14976683785035455,-3.384527190190648,-0.018649738593383276,-0.00872024731591621,-0.10417225980572699,-0.003790775310050153,-5.66472914693651,0.4514415905849956,0.0014237130769412564,-0.0005836299801653974,-0.018734940746447253,-0.1932903555730305,-0.0636150122086517,2.0407896488223054,-0.005328648844902822,0.003673560367231747,-0.027978754916383235,0.003951609414640081,-1.085832584076233,-0.02516923189814881,0.00738451036386128,0.0010238789363167262,0.005375061914109077,0.044028968467596824,-0.15242467312382313,-0.20694254211076668,-0.0190288501983165,0.007005178363592209,-0.007045361879580331,0.00525953327666789,-2.9828641910085647,1.0713454991436002,0.002298012776685214,-0.00048572645031931793,-0.014928844811909257,0.08604789091640783,0.08192662580406308,5.096254047556617,0.02329240902403728,0.0043892380274376235,0.02867970191147148,0.0011119920750718168,4.855677806863747,,,0.4949206349206349,1.2833333333333334,0.6666666666666666,0.016666666666666666,0.6166666666666667,0.05,0.8784485433710058,0.01000066738811564,0.021467334054782305,0.9526821451959511,0.25289616525406894,0.23424361943691865,1.831130688566957,0.48713978469098757,2.0605409578357925,1.7960362920135813,0.1468503879675035,0.059051523335318705,0.058602754519389275,0.26450466582221144,7.336512125684223,1414.0,332.2887,183.0,331.60493827160496,9065.520702234124,5683.363473,92.331552430923,340.0474,170.7552964487121,423.28255699999994,13057.690626938504,1464.0,366.625,233.0,354.1111111111111,8585.480380382302,5560.8768020000025,115.79013637000003,377.37450000000007,162.82613168724282,452.8895419999998,16376.598882464712,2142.0,633.2210000000001,373.0,468.6666666666667,15929.517901494737,7963.268306999998,175.01310786364104,648.3810000000001,259.3271604938272,790.8414319999997,24057.485308817635,2526.0,853.6460000000001,453.0,512.6666666666667,22241.263905563857,9151.267352,216.31216118897996,872.9836,347.93518518518516,1077.745988,28795.575521076295,2367.0,951.0499,450.0,413.1111111111111,25730.16281775335,8288.180610000001,221.45945851747,969.3990999999997,376.12860082304525,1209.206814,28674.853474916184,2224.0,978.1009999999999,435.0,367.1111111111111,26728.424048385325,7656.904997999998,221.917905906866,995.7220000000002,383.90946502057614,1249.253406,28162.741254537796,2054.0,953.438,397.0,297.22222222222223,27143.104614927797,7068.609344999999,204.21880477990302,970.2893999999998,343.6049382716049,1228.78902,25215.643954101608,1764.0,849.8881000000001,351.0,282.8888888888889,24289.301134564594,5975.219607,179.443343280507,865.3364999999999,303.7716049382716,1097.393818,21906.48083179622,1639.0,737.5720000000001,315.0,266.3333333333333,21194.28805284631,5734.693463,158.989535928809,750.4944999999998,262.82098765432096,951.508504,19758.550869645038,549.3684210526314,3.6326140350877174,0.4478146008653424,31.263157894736842,177.31947151830195,82.1132879588794,2603.8604690526317,14.502065159362981,4.099603508771928,40.96365418194167,2.3513182456140345,3084.867966253409,21.71745152354569,0.2544676823638094,-0.11357228777291814,10.933518005540167,54.57447875699648,-11.920434701776475,102.37872668144044,-0.38892490044421246,0.2845278855032385,0.14756026369760927,0.05352596952908724,15.679772864107065,7.479224376731275,-0.5856767313019311,-0.16508554199553788,-3.3795013850415505,-9.776067849936712,6.831364123380835,38.83663453462601,0.9643596631517839,-0.4985362880886335,-1.0954314950131354,-0.3273908559556763,118.10357400628541,-72.404432132964,0.0978873499538381,0.1190239903972275,-5.5595567867036,-20.71308550779157,-13.68256446688699,-345.4204269750693,-2.09294152653894,-0.11753518005539357,1.740469861431103,-0.003595708217911059,-438.41385265114025,-141.82548476454295,-0.9165471529701408,0.046593395644501025,-15.085872576177287,-82.36755088935249,9.554486918126859,-673.4227116066479,-2.35722672783388,-1.1345030163127072,0.03045248959629543,-0.48965045675592367,-596.9344662079957,-120.22160664819936,-1.4109032625423206,-0.13581594924431842,-9.819944598337953,-80.53738852220435,-25.460362434560274,-575.3696223324101,-3.1704555608751566,-1.4824420437057557,-17.70928416697359,-0.644431802708526,-963.0039549792068,76.29362880886426,0.24060751000307232,-0.09863346664795217,-3.1662049861495856,-32.66607009184216,-10.750937063262139,344.8934506509696,-0.900541654788577,0.6208317020621652,-4.7284095808687665,0.6678219910741736,-183.5057067088834,-3.8005540166204703,1.1150610649430532,0.15460571938382564,0.8116343490304706,6.64837423860712,-23.016125641697293,-31.24832385872577,-2.8733563799457915,1.0577819329024236,-1.06384964381663,0.7941895247768515,-450.41249284229326,140.34626038781164,0.301039673745763,-0.06363016499183065,-1.9556786703601126,11.272273710049426,10.732387980332264,667.6092802299169,3.0513055821488835,0.5749901815943287,3.757040950402764,0.145670961834408,636.0937926991509,0.6974691494688162,0.6035804272628753,0.4428543497190797,0.3303305836060968,0.2872666875879487,0.185931203724889,0.18335023249930996,0.10138562427898112,0.11832296179806175,0.05640952219839792,0.07615070606234331,0.03195908112472654,0.049994787772475194,0.018816548190758082,0.03208105315829376,0.010712182927099448,17.001103561673858,5.691806554833157,3.5432693463434966,2.190468310478786,0.3738793394265852,-0.41966448607126755,3.2290140054800895,0.9779606478543466,6.021924402069381,0.7739972970678324,14.544852447865136,10.952106554833163,35.45051762374149,11.702806554833186,2.207890374207811,0.7527638602643283,3.488368932594952,2.2412158401472375,7.008270856351487,1.3047133605789492,3.70145465258693,2.437449437400749,22.45586960160201,14.702714987512334,0.22864451455062565,0.5147342893290475,0.7061307675020301,0.8178165074215673,0.8349903200198315,0.8464395284186744,1.2704327670932505,968.0519988626901,0.0,0.0,3.0,0.0,16.0,3.0,3.0,0.0,0.0,4.431463074211965,2.6779378763409736,1.504814693172234,0.8202611842484817,0.7149980263537454,0.644822587757254,78.35140288475066,1176.6373606671343,44.88292248483153,20.642760713458497,42.38491635259098,,15.0,799.0,0.0,4.794537184071822,5.783244946364939,17.130841211350898,32.351977680603184,22.501675532761116,24.26546827384644,7.04767198267719,58.33075600939383,11.600939890232516,14.847619047619048,38.5,20.0,0.5,18.5,0.0,0.005079365079365061,1.5,0.10718462823726033,0.06001002506265718,-0.04717460317460315,0.0,0.0754581200081913,0.0,0.5500417710944028,0.7750793650793646,0.44285714285714245,0.4900317460317456,0.7750793650793646,26.353456301130173,0.3000200216434692,0.6440200216434692,28.580464355878533,7.586884957622067,7.027308583107559,54.933920657008706,14.614193540729627,0.6385418799918087,0.1042334830019243,0.0,0.2896087235407312,0.2692307692307692,0.44130737318909413,-0.7779480261809022,-0.03835676222750808,-0.013648210985629865,-0.035361273917313744,0.5586926268109059,0.9848777806010804,0.028886363551870655,0.017278557554404918,0.02813936516003086,-7.3145903143103785,0.6846650060675739,0.705058847961209,1.2987221127110755,0.7463524130190796,0.627371977466275,1.252505696690014,0.6914308133114777,0.9697683537633356,0.6730097989792764,0.5524302954584346,0.6351962221416072,0.9477818345660163,0.7916970045347131,1.1073164653552852,1.5817508802230558,1.31358024691358,1.121706543672528,1.0699419918084756,0.7951279336996422,0.8874171998165972,1.0085202933617028,0.6337733541534691,0.9497589720853863,0.917087600344807,0.9506876583423818,1.059949901557849,1.1566864564858188,1.2687991021324354,1.1196998272023555,1.113384236792855,0.952443314787602,1.0081952613102914,1.0264481788425692,0.928442845266121,1.0119550332124256,1.0114871108508574,0.9327386836911383,1.1890621021831986,1.2613488454604902,1.225300035115986,1.197955371920694,0.9893834698027414,0.9364802154009839,0.9938568731310062,1.1190398344829446,1.0058826254520281,1.0595810874200322,1.0241288205391152,0.816081512121998,1.2004403518974274,1.0422532348865345,1.032600514953456,1.132642142755935,1.0852877032825408,0.8238044478010258,1.0123384041069383,1.095701368890716,1.4818486945537968,1.0311995353567072,1.0741285921616108,0.7575778533374302,0.8759467151274463,0.985976267833368,0.8956228956228955,0.9808603208167911,1.0204583224075927,0.7662790971208939,0.967814814601742,0.818484116293173,0.8032774859065132,0.6506911462754775,1.0030833407563469,0.8742127910119548,0.7495800745789927,0.7090044886018614,0.860035230896158,0.8972855839290587,1.0714894901237522,0.8807936150524899,1.035494982220772,0.7691449666355837,0.6995040561823417,0.6263968790032489,1.0439766354161497,0.726385827474188,0.8439085087264834,1.0095502040709359,1.025522399568201,0.9420702769266527,0.928147216600289,0.7317808413002337,0.8573232673337597,0.8042684304309735,0.5544312038477694,0.6972946307223913,0.8945340053858054,5.0,0.18600142842567086,3.555555555555557,2.0,1.531666666666667,0.8022222222222222,0.4074829931972788,0.3819090136054422,0.227277021919879,0.2634336419753087,5780.558446330864,6599.431905925485,2836.9352161693096,2567.120042547288,15.144506443484474,0.4889855941624914,7.739060961919539,0.9568919947786719,0.0,0.2692307692307692,1.4014269399527761,3.1549521378237677,4.328075320992507,5.01262882991626,5.117891987810996,5.188067426407487,0.15151515151515152,0.006642908158059674,0.07901234567901236,0.04,0.03403703703703704,0.01956639566395664,0.011642371234207968,0.012730300453514738,0.00783713868689238,0.010132063152896487,0.37311571158072887,23.168044077134986,11.227654320987654,6.081011203677105,183.44375296060085,0.0,4.329793077961507,186.20221103549682,,154.88082492015533,153.4876724777684,151.0315173597777,154.86919550084633,198.62784146227833,154.86730067654855,156.14028731350072,185.86675241315484,0.03755508718145237,0.066548302657698,-0.24093379978183382,0.3322390572390572,0.2923861343326608,-0.1379120632991664,0.03735215135500508,-0.025477657930908892,0.0659335690999659,0.003422112926988981,0.021626026654402858,0.004828661837022715,0.007390578381189584,-0.08752341810098181,-0.20012269694097937,-0.05868205868205867,-0.029929077816174602,0.0451626637054459,0.008096725885363856,0.036098964228364415,-0.0660146729758927,-0.014516839951273416,-0.0755858825121482,0.02078318081928651,-0.052169157565306275,0.010666444507765774,0.1052079650250981,-0.07039141414141413,-0.046238180217682674,-0.06595783990757169,-0.05251007902920055,-0.05712676172791756,-0.011348497971989668,0.016818225829086004,-0.000605320514245449,-0.0562548603612276,-0.09027714920823751,-0.08823132625990182,0.036384244710732615,-0.16874264113527918,-0.16243775398572474,0.04068938999019937,-0.09043932287357843,-0.056840613388519756,-0.09677229707710741,0.00025996289434843697,-0.07282189922923253,-0.06766706281253057,-0.07337443503939223,-0.1302278634421619,-0.10169004935586012,-0.10531788472964947,-0.15228847904254944,-0.10396258595497009,-0.0740892425434212,-0.07330232543718218,-0.12124443155141139,-0.1449533477299995,-0.09189491600122894,-0.10466884317500708,0.04683955188767488,0.022339737886216703,-0.07428723584524434,-0.03415814954276494,-0.06213389975350545,-0.04415918283176042,0.044674056603806495,-0.020944119394151355,0.051076388359062336,-0.038931805818653936,0.09579381143094218,-0.020063243538916854,-0.002611446459637399,0.11587167991821323,0.13032424413424282,0.00979998662117867,0.01415327477103374,-0.10580755665768478,-0.0045300910092948895,-0.07479241400344698,0.09739848399250889,-0.009803461999567241,0.12750013628707255,-0.05511524666450554,0.11115799727653951,0.03605853168155098,-0.061825602860426626,-0.02721875240959213,0.027660412814443824,0.05687042605296894,0.11155992579602989,0.09155022403915637,0.06102701566837377,0.03990715773776186,0.02695660121607285,0.08971976694593412,29.275009039612463,27.665333569018497,4.395339658155888,14.359468901338307,30.325658878707152,37.8820987797135,39.344269067585834,39.836444506182325,39.907181348287594,61.81622873507378,53.88108876040744,4.405511639025105,1.7715457000595611,1.7580826355816783,7.935139974666344,10430.655226894094,9642.411574616754,1680.6268678774395,138.0,45.0,59.0,76.0,97.0,104.0,112.0,124.0,132.0,418.1811911640007,33.0,5.056245805348308,5.8998973535824915,6.767343125265392,7.6290038896529575,8.502891406705377,9.37203396097417,10.249450325495184,11.122797144772276,12.002627549419753,0.6491228070175439,0.9604912280701754,1.1148929237652359,0.6119609656060891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6997101691354134,0.9520467836257311,0.9896180728587674,0.6427413593009595,12.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,4.899909730850478,0.0,5.783244946364939,0.0,0.0,9.694446914922299,0.0,0.0,0.0,47.99914230100218,73.83524224561887,35.05037016663059,6.544756405912575,294.5604386062752,-519.2587428321617,-25.602075541144853,-9.1098025058274,-23.602670128734626,372.9118414910259,657.3786178349726,19.28084694368668,11.532958207631097,18.782246223856355,0.4666666666666667,0.945251482450155,0.1934342048306161,2.6542450739857952,0.10001244517308526,37.792736880122185,0.05474851754984511,8.0,0.21212121212121213,0.24026287767290563,0.5408900442425968,0.7420121604354097,0.8593731096837866,0.8774195939547247,0.8894505834686836,5.7815000000000065,,1.1827731092436975,0.7736575644518693,0.7552942693890363,1.195450703340925,-1.8847129465743477,0.7741273259687342,0.7388049591049789,-0.9543551048072738,125.19450000000006,4.794537184071822,0.0,4.899909730850478,0.0,19.26246486877803,31.581850931265393,94.50939261037166,0.0,0.0,4.204692619390966,0.0,5.5093883366279774,0.0,7.007600613951853,2.70805020110221,8.593969030218288,5.37989735354046,10.226910733640675,37.0,24.56105927700066,0.0,0.0,0.0,0.0,0.0,6.78163777479181,0.0,54.748,0.0,12.508786478038823,0.0,0.0,0.0,0.0,0.0,0.1246578016473403,63.54889665461844,4.899909730850478,11.374772549367124,0.0,37.36509587763034,12.841643245852019,0.0,27.905713282088815,72.79640482153933,5.022633313741326,0.0,0.0,34.88177503954708,39.88347964071856,39.32969531040686,372.4044220709937,,309.68279829969447,306.92376778457344,302.01268176826284,309.65869428813664,398.18946940481203,309.6829928646992,312.2313209630611,372.1788705418864,39.32969531040686,372.40442207099375,,308.578876731067,306.2016873910851,301.3077404501664,308.5429402983518,399.1403958711311,308.9604740271283,311.54176966789646,372.68785993111703,4.824167762656741,284.55862597453836,,242.19596335820927,239.1634917764738,235.0315617481616,242.19449464701574,315.63110584846766,241.56306970435463,243.74664493176545,293.92201966663526,1.3109898436802288,12.413480735699789,,10.322759943323149,10.230792259485781,10.067089392275427,10.321956476271222,13.272982313493735,10.322766428823307,10.407710698768703,12.405962351396214,2.447920161060356,186.20221103549682,,154.88082492015533,153.4876724777684,151.0315173597777,154.86919550084633,198.62784146227833,154.86730067654855,156.14028731350072,185.86675241315484,54.26666666666667,0.0,2.01204079882982,5.921540571873722,0.0,0.0,0.0,56.40823015294974,5.31339801228053,0.0,0.0,0.0,0.0,4.554657063315071,0.0,0.0,0.0,36.6362574801547,630.929162256359,79.88133557730823,179.83227185595476,246.7002932965729,285.7198433052268,291.7198433052268,295.7198433052268,950.0,139.6022905612159,36.54311784094222,73.63050888847243,23.55,23.55,0.875,8.46326155123221,6.044394119358453,4.043004581280943,5.404991378180025,,5.419264580038753,5.41342684861869,5.412254490603678,5.419378280108859,5.431676057052704,5.414991109570654,5.41586621669053,5.427261166527758,0.13476681937603144,0.1801663792726675,,0.18064215266795844,0.180447561620623,0.18040848302012258,0.1806459426702953,0.18105586856842348,0.18049970365235515,0.18052887388968433,0.18090870555092528,2.4956004124650932,2.785935144601677,,2.788572408573727,2.7874946095754582,2.787278021264227,2.788593389073145,2.790860041110253,2.787783527304509,2.787945122475679,2.7900469061455135,328.8300000000011,1446.6311166702346,191.0213020817362,,189.04865576741759,189.66853537778766,189.8330971482072,189.0355865977418,187.91460301463806,189.51180551700114,189.4204686680417,188.30191442894204,48.22103722234115,6.3673767360578735,,6.3016218589139195,6.322284512592922,6.32776990494024,6.301186219924727,6.263820100487935,6.317060183900038,6.314015622268057,6.276730480964734,8.375605053062259,6.350997239719568,,6.34061670851914,6.3438902866847595,6.3447575387154735,6.340547574880567,6.334599909016303,6.343063609492886,6.342581534689811,6.336658891188414,0.0,17.063443541353895,0.6508490904851145,6.130788684306696,0.1246578016473403,24.56105927700066,3.116501222730271,2.1968967895502582,2.01204079882982,395.7564656764833,196.6109275829916,-346.5908170386411,-17.0886757366713,-6.080540649800722,-15.754128047210962,248.9083171152984,438.7820049335215,12.869430871709627,7.697929911114411,12.536628712386324,2709.0,50.0,1.7213008200490048,0.9803716828463508,0.0,0.0,0.36504500479682334,0.12240443534447124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.08333333333333333,0.3775970457834769,0.12349026298161515,20.924074484064487,18.10741281788626,14.61419354072963,10.900909259001194,12.927000941457692,8.366904167620005,10.817663717459288,5.981751832459886,8.992545096652693,4.287123687078242,7.386618488047301,3.100030869098475,5.19945792833742,1.9569210118388405,3.593077953728901,1.1997644878351381,4.040977301401779,1.8866824287484487,6.402147113453977,2.5615346507437584,9.845630261057599,3.4426001389695573,99.30220004686986,63.16991219558693,37.16848324132155,30.86984320040069,29.66532038841306,29.267721789933802,156.0,182.0,66.60541099999999,31.884588999999995,0.47368421052631576,219.04,8.5,6.638888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,18.0,57.0,0.0,1.0,60.0,18.0,1.0,10.0,50.0,19.0,33.0,41.0,0.0,0.0,0.0,26.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,3.0,0.0,1.0,30.0,4.0,0.0,2.0,1.0,0.0,4.0,7.0,0.0,0.0,1.0,0.0,3.0,3.784189633918261,7.139102587272015,4.33729074083249,4.873287102945032,5.385068292956691,5.901095265935889,6.0057372063947,6.267674819358884,6.564119948551208,6.886723146153706 +4474,COC(=O)C1=C(C)NC(C)=C(C(=O)OCCN(C)Cc2ccccc2)C1c1cccc([N+](=O)[O-])c1,0,23.375,6.322417187500001,3.203125,8.375,162.5889542232535,92.261393046875,1.4514749725097031,6.377365625000001,5.672743055555555,7.8375636874999985,217.83055024110533,25.075757575757574,6.432484848484849,3.8181818181818183,7.348484848484849,146.9576482623864,95.17879825757574,1.7709068633333334,6.566434848484848,3.3543771043771047,7.835966848484849,261.23992937333935,20.938053097345133,6.340955752212389,3.584070796460177,6.168141592920354,155.44867932533262,78.21353917699115,1.5175759509091593,6.4345955752212385,3.6415929203539825,7.827407185840708,219.58662627497299,19.6,6.232571428571429,3.3714285714285714,5.2,153.3183945232835,71.88172974999999,1.5062860780749283,6.341022142857142,3.098611111111111,7.718209914285714,213.43782317373027,17.335195530726256,6.22791061452514,2.877094972067039,4.5251396648044695,159.33387197061603,62.984051759776534,1.274772676802877,6.301041340782122,3.3688702669149597,7.778763597765363,180.01611758239474,17.716666666666665,6.380061111111112,2.811111111111111,4.5,159.04320997333767,63.78780281111111,1.2868577072845833,6.448653333333333,3.5134259259259264,7.929052133333333,184.5880216960809,16.96825396825397,6.291994708994708,2.582010582010582,4.232804232804233,159.17216049920435,60.69291008994709,1.244009187264143,6.3610444444444445,3.7039976484420936,7.836620423280423,173.8781970907073,14.5,6.206229,2.305,3.49,164.83026884441452,50.922606595,1.0791782422022498,6.251397999999999,3.238472222222222,7.8025509799999995,148.01061371820902,15.903614457831326,6.418361445783133,2.3072289156626504,4.168674698795181,165.70596348508775,56.29156386144578,1.0965915688606385,6.44871686746988,4.759036144578313,7.985593036144578,152.3380406394712,7.6240234375,0.14952165527343744,0.021509562493181148,0.613037109375,4.4990234375,1.4444764813191235,36.12079292749023,0.22529949990569703,0.13829833984374995,2.2733289930555554,0.09612694433593746,48.908642222076395,0.4176432291666667,0.015959381658380692,-0.008636536623565954,0.26338334517045453,1.410540956439394,-0.11703493141839358,1.8929875841101422,-0.010705894785674127,0.014431395004734875,-0.0857763836279461,0.008841295247395834,-1.0215764355928802,0.7946712527654868,0.01533987680620853,-0.0009210719650019628,0.03574607646570797,0.39201638550884954,0.20126184004669415,3.7968374701867553,0.03913629270400924,0.013953347103152665,0.435595847160767,0.012292195044593472,7.192351883027375,-0.5662109375,-0.005831432059151776,-0.0013009056666535425,-0.03915318080357143,0.0056640625,-0.11395121276820837,-2.753437298583985,-0.03020928615407351,-0.00531726841517856,-0.014363219246031754,-0.0033877242466517853,-5.455447779366078,0.5158159479748603,0.004799617422093222,0.0040374035509059755,-0.05324311496159218,-0.001816733589385475,-0.04383320123897373,2.423038034625687,-0.005333242830984562,0.005694781664629887,-0.08483485121818746,0.00022472815009601965,1.0838089263345194,-0.7518012152777778,-0.02857157714843748,-0.003509435566245572,-0.0796169704861111,-0.5599609375,-0.09127721125437374,-3.4479036402506527,-0.0063559662159941655,-0.025451169704861075,-0.2863208912037037,-0.01942576412760415,-1.9154718202368377,-0.45867952215608465,0.008186711128678912,4.1053018865662154e-05,-0.04772626281415344,-0.03705253802910053,-0.2940264055673679,-2.3416595233897057,-0.04530441844943513,0.006907629071593928,0.09911276914315108,0.006559959103215941,-8.18379830563707,0.1876953125,-0.0007977802734375033,-0.002137361943172428,-0.069833984375,-0.0758984375,-0.0645761528725925,0.8848974638378909,-0.009924275331367235,2.898828124999753e-05,-0.21932725694444444,-0.003554387773437497,-0.6048737722932666,-0.023684582078313254,0.033298544274755294,0.004118921458642105,-0.027758494917168676,0.27639071912650603,-0.00700949184397448,-0.3006549893313478,-0.00581659745650132,0.027185131541792185,0.894519484186747,0.02686739790803841,-3.2564687938332657,,,0.4628571428571429,1.1714285714285715,0.5428571428571428,0.014285714285714285,0.6285714285714286,-0.08571428571428572,1.0072675273469123,0.019764584404636614,0.027136012976065185,1.1087781536949533,0.2508064519017697,0.22697792261853933,2.1160456810418657,0.477784374520309,2.0038783409405885,1.519301050522837,0.17549320511679992,0.30908408530095194,0.0,0.4845772904177518,7.487588057000012,1496.0,404.63470000000007,205.0,536.0,10405.693070288224,5904.729155,92.894398240621,408.1514000000001,363.05555555555554,501.6040759999999,13941.155215430741,1655.0,424.54400000000004,252.0,485.0,9699.204785317503,6281.800684999998,116.87985298,433.38469999999995,221.3888888888889,517.173812,17241.835338640398,2366.0,716.528,405.0,697.0,17565.700763762587,8838.129927,171.486082452735,727.1093,411.5,884.497012,24813.288769071947,2744.0,872.5600000000001,472.0,728.0,21464.57523325969,10063.442164999999,210.88005093048997,887.7430999999999,433.80555555555554,1080.549388,29881.29524432224,3103.0,1114.796,515.0,810.0,28520.763082740268,11274.145265,228.184309147715,1127.8863999999999,603.0277777777778,1392.398684,32222.88504724866,3189.0,1148.411,506.0,810.0,28627.77779520078,11481.804506,231.634387311225,1160.7576,632.4166666666667,1427.229384,33225.84390529456,3207.0,1189.187,488.0,800.0,30083.53833434962,11470.960007,235.117736392923,1202.2374,700.0555555555557,1481.12126,32862.979250143675,2900.0,1241.2458000000001,461.0,698.0,32966.053768882906,10184.521319,215.83564844044997,1250.2795999999998,647.6944444444445,1560.510196,29602.122743641805,2640.0,1065.448,383.0,692.0,27507.189938524567,9344.399601,182.03420043086598,1070.487,790.0,1325.608444,25288.114746152216,487.9375,9.569385937499996,1.3766119995635935,39.234375,287.9375,92.4464948044239,2311.7307473593746,14.41916799396461,8.851093749999997,145.49305555555554,6.152124437499998,3130.1531022128893,27.564453125,1.0533191894531257,-0.570011417155353,17.38330078125,93.095703125,-7.724305473613976,124.93718055126939,-0.7065890558544924,0.9524720703125018,-5.661241319444442,0.5835254863281251,-67.42404474913009,89.7978515625,1.7334060791015637,-0.10408113204522179,4.039306640625,44.2978515625,22.74258792527644,429.04263413110334,4.4224010755530445,1.5767282226562511,49.22233072916667,1.3890180400390624,812.7357627820934,-79.26953125,-0.8164004882812486,-0.18212679333149595,-5.4814453125,0.79296875,-15.953169787549172,-385.4812218017579,-4.229300061570291,-0.7444175781249984,-2.0108506944444455,-0.47428139453124996,-763.7626891112509,92.3310546875,0.8591315185546867,0.7226952356121696,-9.530517578125,-0.3251953125,-7.846143021776298,433.7238081979979,-0.9546504667462365,1.0193659179687498,-15.185438368055554,0.04022633886718752,194.001797813879,-135.32421875,-5.142883886718746,-0.631698401924203,-14.3310546875,-100.79296875,-16.429898025787274,-620.6226552451175,-1.1440739188789497,-4.581210546874994,-51.537760416666664,-3.496637542968747,-344.7849276426308,-86.6904296875,1.5472884033203145,0.007759020565610147,-9.020263671875,-7.0029296875,-55.57099065223254,-442.57364992065436,-8.562535086943239,1.3055418945312525,18.732313368055554,1.2398322705078129,-1546.7378797654064,37.5390625,-0.15955605468750067,-0.42747238863448567,-13.966796875,-15.1796875,-12.915230574518498,176.9794927675782,-1.984855066273447,0.0057976562499995055,-43.865451388888886,-0.7108775546874995,-120.97475445865331,-3.931640625,5.527558349609379,0.6837409621345895,-4.60791015625,45.880859375,-1.1635756460997637,-49.90872822900374,-0.9655551777792192,4.512731835937503,148.490234375,4.459988052734376,-540.5738197763221,0.729565855659249,0.5788926444652688,0.4519581921138059,0.302373651816302,0.2939555400482421,0.16441986301256079,0.18127238919244268,0.0883937251128762,0.11505137406114073,0.04787377298551281,0.07171578767338999,0.025552437183449937,0.04667419189250761,0.013567826658995627,0.02948237467555291,0.007217053472686921,8.054951152997551,5.686948538481951,3.6078623810536685,2.185849370248866,0.4697109540547454,-0.496666896180829,3.2845170931848418,0.9725092640291728,7.004125661578124,0.9950274514502571,14.594832627710833,10.948302065689765,16.028480609846252,11.69876418522815,2.001123319041652,0.6692078339854328,3.553365790268907,2.2355107977844497,8.00194046060896,1.240482125490559,3.757292527520471,2.431349170722281,20.906563359274386,14.651511841544194,0.25093217460215494,0.5690484412758301,0.7590890158609849,0.8352078847948755,0.8701141319726744,0.87510073871236,1.668375035104179,1172.6194118117548,0.0,2.0,5.0,0.0,12.0,0.0,4.0,1.0,0.0,4.427461625575912,2.433894887209215,1.2429511722130417,0.7659304688852169,0.5471804688852169,0.5159304688852169,286.18942358454234,2288.701702317485,63.83807196250237,35.7609640987107,70.99464024885677,,16.0,929.0,22.779827670882764,19.703392636909218,23.440477299335015,30.04704292963381,5.563451491696996,25.30889874666236,19.913841467842857,42.279417055835715,5.316788604006331,9.473725907600098,16.200000000000003,41.0,19.0,0.5,22.0,0.0,0.03714285714285706,-3.0,0.17076113861386133,0.061875000000000346,-0.10888613861386098,0.01571428571428568,0.17934653465346495,0.0,0.6093749999999988,0.8657142857142852,0.43861386138613745,0.5474999999999984,0.8499999999999995,35.25436345714193,0.6917604541622815,0.9497604541622815,38.807235379323366,8.778225816561939,7.944227291648876,74.0615988364653,16.722453108210814,0.534653465346535,0.20576131687242796,0.0,0.35802469135802467,0.3076923076923077,0.30405246337790864,-0.9529145161072407,-0.04423564775520778,-0.014889289314175635,-0.047645725805362034,0.6959475366220914,2.1811318439212846,0.04318136987654911,0.03408018506127007,0.049571178270938286,-6.031428706609978,0.7512139455267417,0.5783550071942402,1.433636431517327,0.7542087542087543,0.4591432010576791,1.307646826399764,0.7610181074132918,1.1589956101250094,0.5742094662800084,0.545910153995687,0.5896479767478253,1.0309143567520291,0.8043972337056261,0.7718856034421542,1.1823413340877793,1.2291686490944271,0.8732536674663988,0.9713346589166938,0.8063523876890543,0.8603639013834425,0.7678430072529597,0.4348731110053251,0.7423352988287737,0.8406575311885452,0.943922121173306,0.7735182851172365,1.1207266076764697,1.284587813620072,0.8415888864771001,1.2070053573115305,0.9517616651239535,1.1892945156352073,0.7761871237664836,0.6042814185480407,0.7492080738654597,1.1185522053411814,0.9077714957139883,0.9677847300839075,0.9348806365252753,1.2738231112713003,1.0194251400285939,1.0233682841621887,0.908133611587491,1.0255622392296644,0.9548679763620885,1.0488607495702265,1.0123740438356612,0.9642670257987753,1.098193928525682,1.368300702419026,1.4622021265407374,1.2355236957387496,1.2027783807249837,1.0538519170870744,1.0910158856328593,1.0210389941416762,1.3408543435662965,1.1710992315402606,1.43065056460019,0.9962151996656077,1.0383843559199009,0.9880344878015672,1.239282551805223,1.04075401566441,0.9967440850879097,1.205024230776029,1.0418579793160703,1.1933942526903838,0.9841796858909856,0.9315704898731962,0.9941661717241559,1.1396105657191165,1.0190393236838735,1.1532076950470471,1.2721345201951841,1.0397132616487454,1.0732016496635555,0.9718046508892518,1.015379844799719,0.9858338183893774,1.1412925944886754,1.1664517206815905,1.1984560333431975,0.9729736226360882,1.064420098737463,1.0589471636497618,0.9860539225382025,0.967310100617524,1.0471963826654567,0.9657874506670256,1.0629393131865839,0.9407060234753725,1.064791827468399,0.8960184204911863,1.0253506017409624,0.9901760011897687,7.0,0.21487603305785125,3.7777777777777795,3.25,2.6088888888888895,1.7430555555555554,0.9591836734693877,0.9131944444444444,0.418745275888133,0.31125,9343.15546179704,10236.001591971548,3383.589385634094,3092.149981606608,15.778190181858722,0.47196001806852417,8.331515258540069,0.8937959893532661,0.0,0.3076923076923077,1.5725383744240875,3.566105112790785,4.757048827786958,5.234069531114783,5.452819531114783,5.484069531114783,0.1891891891891892,0.006511394941147008,0.0740740740740741,0.05701754385964912,0.04276867030965391,0.028113799283154123,0.016257350397786228,0.017905773420479304,0.009305450575291847,0.009431818181818184,0.450575064232243,29.554419284149013,14.235294117647058,7.992653810835629,203.72545594462827,1.0,4.46017025586935,230.93311662513682,,191.74228098005412,188.36355328350092,191.37415887073317,191.78898147249112,278.89017888651796,190.57145909094362,191.91959819195986,239.42205010667516,0.05477989838179412,0.1067362558901251,-0.40152079459095763,0.42963687049708554,0.31352158441370515,-0.08102238626378676,0.052407143661274885,-0.047518502216628365,0.1043497342125692,-0.03773161908811758,0.09197520329469662,-0.020887442161127114,0.10423253014369904,0.10259301087963318,-0.042821510911435615,0.058309808523910725,0.087133661550046,0.13933202973502068,0.1051150089038361,0.1737078543023416,0.10089309183983854,0.191611442290756,0.12787460508091886,0.14705687085667837,-0.07426668374535672,-0.039000585222839834,-0.06048034064225848,-0.06386755419013483,0.0012589537660082483,-0.07888755147065181,-0.07622859509511054,-0.13408501202496287,-0.038447810878901596,-0.006318143695834502,-0.035242192187162555,-0.11154363587921474,0.06765665822034801,0.032099814661066525,0.18770272766756146,-0.08685137350963026,-0.0004038062069743274,-0.03034538935444931,0.06708152945284876,-0.023671791696017443,0.04117751283973384,-0.03731745448077971,0.0023378268356336806,0.022159865354947628,-0.09860950998391757,-0.1910865492773422,-0.16315699435347025,-0.1298730032302314,-0.12446277403950509,-0.06319051395770574,-0.09545481593308484,-0.02821118652573381,-0.1840309126893057,-0.12594784656261435,-0.20208448590351943,-0.03916428126422679,-0.06016239665528765,0.05475267855821606,0.001908593858135263,-0.07785215949294005,-0.008235684597742337,-0.20355222765472608,-0.06482857472399377,-0.20108530408810524,0.04994730290615344,0.04359807552972557,0.06824266753232759,-0.16732826620860608,0.024618931727936465,-0.005335550037742454,-0.0993679877891521,-0.11391477499004382,-0.016869980464510527,-0.044705575831612235,0.024498284564634445,-0.04404925592609487,0.00020960686355851133,-0.09647844971600401,-0.036975977942416235,-0.012367421069404345,-0.003106572569257432,0.22270047916377494,0.1914925726614786,-0.045280284819085186,0.061433491726837895,-0.004852617494729494,-0.008323598818411602,-0.025817178728474572,0.1965687482041076,0.3934843953159783,0.2794991362062252,-0.06658268653312481,13.079296754267121,21.065221501534893,14.75604971042605,14.883834096781115,34.25419390497704,40.14026146840926,42.68416083736371,43.716973337363704,44.0923170873637,70.1357419329206,53.175536768299295,6.142262179087997,10.817942985533318,0.0,16.960205164621314,10956.926201835768,9037.23692153598,2748.4440372375957,119.0,51.0,66.0,87.0,109.0,116.0,123.0,128.0,123.0,479.2056356480008,37.0,5.176149732573829,6.018593214496234,6.900730664045173,7.7702232041587855,8.663369301573839,9.545883605779304,10.445782773171514,11.336510430280342,12.241299818181995,0.6614583333333335,0.9938125,1.1273473605831994,0.6238200919990008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6630707054640718,0.9795343137254905,1.0132351602330663,0.6315498199928762,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,6.0,0.0,4.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,14.790514511606428,6.606881964512918,0.0,0.0,5.687386274683562,15.01422799961605,9.589074368143644,0.0,0.0,42.46456947923127,32.02204936545243,36.616325574860035,29.09722369639513,222.04055415456924,-695.885390526844,-32.30399001485709,-10.873209226981938,-34.794269526342205,508.2299777391116,1592.816311790641,31.53408194764528,24.887754871728767,36.20037072251457,0.5,0.8513836836364883,0.1485555741335547,17.212961616344177,0.10730437235798514,41.60895340620096,0.14861631636351164,8.0,0.24324324324324326,0.26208972907068123,0.5943508521317975,0.7928414712978263,0.8723449218524638,0.9088032551857972,0.9140115885191306,3.677800000000002,,1.9285714285714288,2.271288971614704,1.7145538716427509,1.923094010038725,-8.048311040580368,2.0358782129742963,1.911757780649884,-3.3519407530784404,130.1241,23.98611132456141,0.0,10.216698334856808,0.0,26.31013685145522,27.30910789438022,98.37881255456428,0.0,0.0,4.31748811353631,0.0,5.631211781821365,0.0,7.141245122350491,0.0,8.75004942158424,0.0,10.41885285634415,42.33333333333334,15.83190910458488,0.0,0.0,0.0,0.0,0.0,1.4251688403359308,0.0,63.604,0.0,37.33204803511593,0.0,-0.5177573154782404,0.0,0.0,0.0,0.1885877330590635,72.15023107732476,5.316788604006331,5.687386274683562,0.0,49.07093924995207,25.607556681656316,10.114318268765572,30.89228342893663,77.1375913024047,0.0,0.0,0.0,39.92448588793605,42.43652514970059,43.74258418054733,461.8662332502737,,383.3743578784755,376.5973186257668,382.6503432345153,383.4680718586943,560.3026412815151,381.026582284003,383.7299530821683,479.80179757137273,43.74258418054733,461.8662332502738,,381.5850772350458,374.5061088688285,381.10934364553873,381.6838048271783,565.8286688136166,379.14443905946393,381.955438972882,482.1960409664288,5.0112425052590694,337.3673246640553,,285.0339393481785,279.70092173481106,284.95915675575907,285.10908426174126,424.1769190495162,283.207867795181,285.31160453075154,360.9026087787407,1.2497881194442095,13.196178092864963,,10.953553082242157,10.759923389307621,10.93286694955758,10.956230624534124,16.008646893757575,10.886473779542943,10.96371294520481,13.708622787753507,2.505621252629534,230.93311662513682,,191.74228098005412,188.36355328350092,191.37415887073317,191.78898147249112,278.89017888651796,190.57145909094362,191.91959819195986,239.42205010667516,62.69019607843139,0.0,6.583863243882531,0.0,0.0,0.0,0.0,64.84705025491624,1.3371521758225684,3.057788849569881,10.5696086467437,0.0,-0.8767144892979128,2.032677967792055,0.0,0.0,0.0,40.419188479544076,621.7404154948196,100.6424559631416,228.23072721861024,304.4511249783653,334.9804499913461,348.9804499913461,350.9804499913461,994.0,150.09854274426104,108.53011639886117,71.25884729563656,111.00999999999999,111.00999999999999,1.0,8.377341870046896,6.20945336562895,4.294957157793734,5.816586972323103,,5.822355570298146,5.822734494239634,5.823294685780557,5.8223529938981065,5.80419164273072,5.822537441360226,5.822329758168596,5.813138482577901,0.12271306165124954,0.1661881992092315,,0.16635301629423274,0.16636384269256096,0.16637984816515877,0.16635294268280304,0.16583404693516343,0.16635821261029218,0.16635227880481704,0.16608967093079716,2.7102045489793305,3.013476627348557,,3.014467885519352,3.01453296426748,3.014629167279287,3.0144674430179315,3.0113433220505375,3.0144991217122326,3.0144634522300318,3.012883579841177,362.4800000000013,2535.4811725443183,237.25438290152252,,235.63511657196915,235.52927289908607,235.55049075751973,235.63637480052884,238.8994483830906,235.59447561921326,235.64114181900572,237.4563431527535,72.44231921555195,6.778696654329215,,6.732431902056262,6.729407797116745,6.730014021643421,6.7324678514436815,6.82569852523116,6.731270731977522,6.732604051971592,6.784466947221529,9.090901678163261,6.721895879583039,,6.71504746082941,6.714598175284794,6.71468825709295,6.715052800547949,6.728805713837821,6.714874971862121,6.715073030744846,6.722746756769213,10.5696086467437,38.84696868742975,14.426789390772832,2.8494780063085043,-2.1124359222114224,15.83190910458488,0.0,4.740717592538689,3.18029782716641,456.1132930017494,162.1496735844249,-508.1845942770801,-23.59065197043784,-7.940384285579377,-25.40922971385401,371.1453761678545,1163.1868152202821,23.028410796685836,18.17479398781691,26.43606398227914,3884.0,57.0,2.4356083214088082,1.1094318279159738,0.0,0.0,0.6105659768236507,0.16922431040236466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23075632711195054,0.07789498864493279,0.33768309097078236,0.11575454264031954,25.534804948073717,20.261242556284408,16.722453108210818,11.187825117203174,14.991732542460348,8.3854130136406,11.963977686701217,5.83398585744983,10.009469543319243,4.165018249739615,7.817020856399508,2.785215652996043,5.414206259530883,1.5738678924434928,3.626332085093008,0.8876975771404912,5.394903137127671,2.120050410285757,8.934119948639108,3.0280604833532623,14.356370960029189,4.120171550056626,117.08019763381743,59.080479559829286,37.4632515600661,30.225187890016525,27.725187890016528,26.975187890016528,176.0,205.0,70.868997,37.747003000000014,0.375,179.09,13.083333333333334,7.888888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,64.0,0.0,1.0,66.0,12.0,5.0,11.0,55.0,17.0,37.0,49.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,8.0,1.0,1.0,35.0,9.0,0.0,3.0,6.0,0.0,3.0,9.0,0.0,0.0,0.0,0.0,2.0,3.8918202981106265,6.824984896249762,4.430816798843313,4.919980925828125,5.421640582580036,5.8923345812007915,6.042335877481238,6.333612609995256,6.572806880729266,6.736892815277076 +89594,CN1CCC[C@H]1c1cccnc1,0,18.153846153846153,5.734992307692308,2.8461538461538463,4.769230769230769,164.58733903305713,71.12531553846154,1.4051377179956153,5.818007692307693,2.2425213675213675,7.302574153846155,198.34499176806486,21.555555555555557,6.125,3.5185185185185186,4.7407407407407405,147.27267214261485,80.17787351851847,1.7439192718518508,6.271111111111113,2.569958847736626,7.549059111111114,244.4259166237843,16.571428571428573,6.029530612244898,3.204081632653061,3.2857142857142856,158.91152486649173,59.374209244897955,1.4536949675325304,6.128857142857143,2.215986394557823,7.530586857142857,196.62746300228855,12.174603174603174,5.730952380952381,2.6031746031746033,2.0,159.20183918976653,41.04457749206349,1.2678275282252065,5.826555555555554,1.9656084656084658,7.305842666666665,158.70822338972056,9.830769230769231,5.57339846153846,2.1384615384615384,1.4615384615384615,164.60147332476737,32.37866564615384,1.0936894428719695,5.647347692307692,1.8589743589743588,7.204346276923076,131.043115152891,9.277777777777779,5.566333333333332,1.9259259259259258,1.1296296296296295,165.0243620325534,29.876524296296296,1.0471417951348518,5.638,1.9413580246913582,7.202863999999999,123.46167528235408,6.317073170731708,5.5259024390243905,1.6829268292682926,0.36585365853658536,173.0659833219593,17.570976658536583,0.8846091173764147,5.5663780487804875,1.8170731707317074,7.209644780487807,97.2263359169643,3.6315789473684212,5.187368421052633,1.4736842105263157,0.0,168.1833865972232,6.853445052631578,0.7966820654547894,5.245263157894737,1.4736842105263157,6.928552421052632,75.11157176755573,1.0,4.840000000000001,1.0,0.0,184.917652024249,1.016064,0.444612904849,4.840000000000001,1.0,6.718464,31.083744430930263,6.698224852071006,0.05960236686390527,0.007947884398031983,0.4792899408284023,2.8520710059171597,1.4855559434748982,32.1896355147929,0.22581673434117155,0.06169940828402362,0.27173734385272846,0.025860402366863884,51.51934916489272,0.5439403900942366,0.007966863905325335,-0.0009556732113917269,0.18737672583826423,0.863028709182555,-0.4650320083972397,2.513477257286876,-0.024355656246416616,0.009050449265833822,0.051901465897192446,0.0024992899408284117,-2.0311622010764627,-0.36227508754981264,-0.012629996377249191,-0.0019408493620471385,-0.04914865354425801,-0.2225576621181017,0.14999467617124604,-1.6437867377128372,0.014994041799479893,-0.011591715976331397,-0.010443082558467154,-0.00603917159763312,1.7295022665727806,-1.0828402366863907,-0.00718038884192731,-0.00024120360449926434,-0.13374659528505686,-0.3245984784446323,-0.19555300801002776,-5.215135287686671,-0.0366850163749567,-0.008086587771203154,-0.004032826148210762,-0.0027343168967784324,-8.537678223323491,0.0414201183431953,0.0057621301775148135,0.0009546106117564117,-0.03905325443786983,-0.029585798816568056,0.029780622695326827,0.16377991834319527,-0.004113259390353849,0.004726035502958592,0.0069773175542406215,0.0031636023668638997,-0.8572604471526484,-0.2637519175980717,0.0012014792899408516,-0.00018861616314643276,-0.009204470742932262,-0.235261889108043,-0.29771068046345167,-1.3245908709182554,-0.029223270729724297,0.0010722441376287662,-0.022093469208853828,0.0003901959237343811,-5.142553375219154,-0.8014143455044019,-0.016471597633136048,-0.001584225420483219,-0.002742098426901405,-0.6888439890316062,0.33908620535329453,-3.7162292277384887,0.01904084747201226,-0.016312353875018018,-0.09839984124693317,-0.007055066531967094,0.9877045280163493,-0.5889131111803175,0.00445066957334174,0.0012627066686852198,0.034880099657427645,0.022422921208346283,-0.33364624290386224,-2.925682259732171,-0.04561905149968979,0.0029924945499844873,-0.02820383058237314,0.002584196823419477,-8.864830739700228,5.686390532544379,0.03323609467455636,0.003125074848208249,0.2899408284023669,1.9171597633136095,0.6844453999015633,27.37221417751479,0.17570555251221304,0.03969289940828407,0.16309171597633126,0.011138366863905288,42.79623814645184,,,0.4833333333333334,1.1458333333333333,0.5,0.0,0.6458333333333334,-0.14583333333333334,0.6644888953130702,0.00310028872177918,0.01743362205511251,0.5534171875311066,0.2182458123291262,0.27150502914685254,1.2179060828441768,0.48975084147597875,2.03006706581158,1.6866972487286758,0.3433698170829042,0.0,0.0,0.3433698170829042,6.235219171076922,472.0,149.1098,74.0,124.0,4279.270814859486,1849.2582039999998,36.533580667886,151.2682,58.30555555555556,189.86692800000003,5156.969785969686,582.0,165.375,95.0,128.0,3976.3621478506006,2164.8025849999985,47.08582033999997,169.32000000000005,69.3888888888889,203.82459600000007,6599.499748842176,812.0,295.447,157.0,161.0,7786.664718458095,2909.336253,71.23105340909399,300.314,108.58333333333333,368.99875599999996,9634.74568711214,767.0,361.05,164.0,126.0,10029.71586895529,2585.8083819999997,79.873134278188,367.0729999999999,123.83333333333334,460.2680879999999,9998.618073552396,639.0,362.2708999999999,139.0,95.0,10699.095766109878,2104.6132669999997,71.08981378667801,367.07759999999996,120.83333333333333,468.28250799999995,8517.802484937914,501.0,300.58199999999994,104.0,61.0,8911.315549757883,1613.332312,56.545656937282004,304.452,104.83333333333334,388.95465599999994,6666.93046524712,259.0,226.562,69.0,15.0,7095.705316200331,720.4100429999999,36.268973812433,228.2215,74.5,295.59543600000006,3986.2797725955365,69.0,98.56000000000003,28.0,0.0,3195.484345347241,130.215456,15.136959243640998,99.66,28.0,131.642496,1427.119863583559,7.0,33.88,7.0,0.0,1294.423564169743,7.1124480000000005,3.112290333943,33.88,7.0,47.029248,217.58621101651184,174.15384615384616,1.549661538461537,0.20664499434883155,12.46153846153846,74.15384615384615,38.62445453034735,836.9305233846153,5.87123509287046,1.6041846153846142,7.0651709401709395,0.672370461538461,1339.5030782872109,14.686390532544388,0.21510532544378402,-0.025803176707576626,5.059171597633134,23.301775147928986,-12.555864226725472,67.86388594674565,-0.6576027186532486,0.24436213017751318,1.401339579224196,0.06748082840236712,-54.84137942906449,-17.751479289940818,-0.6188698224852104,-0.09510161874030978,-2.4082840236686422,-10.905325443786984,7.349739132391056,-80.54555014792902,0.7347080481745147,-0.5679940828402384,-0.5117110453648905,-0.2959194082840229,84.74561106206625,-68.21893491124261,-0.45236449704142057,-0.015195827083453654,-8.426035502958582,-20.449704142011836,-12.319839504631748,-328.55352312426027,-2.311156031622272,-0.5094550295857987,-0.254068047337278,-0.17226196449704123,-537.8737280693799,2.6923076923076943,0.3745384615384629,0.06204968976416676,-2.538461538461539,-1.9230769230769236,1.9357404751962437,10.645694692307693,-0.2673618603730002,0.3071923076923085,0.4535256410256404,0.20563415384615347,-55.72192906492214,-14.242603550295872,0.06487988165680598,-0.010185272809907369,-0.4970414201183421,-12.704142011834321,-16.07637674502639,-71.52790702958579,-1.578056619405112,0.05790118343195338,-1.1930473372781067,0.02107057988165658,-277.6978822618343,-32.85798816568048,-0.675335502958578,-0.06495324223981198,-0.1124260355029576,-28.242603550295854,13.902534419485075,-152.36539833727804,0.7806747463525026,-0.6688065088757387,-4.03439349112426,-0.28925772781065084,40.495885648670324,-11.189349112426033,0.08456272189349306,0.023991426705019175,0.6627218934911252,0.4260355029585794,-6.339278615173383,-55.587962934911246,-0.8667619784941061,0.05685739644970526,-0.5358727810650896,0.04909973964497007,-168.43178405430433,39.80473372781065,0.23265266272189453,0.021875523937457744,2.0295857988165684,13.420118343195266,4.791117799310943,191.6054992426035,1.2299388675854912,0.2778502958579885,1.141642011834319,0.07796856804733701,299.5736670251629,0.6990754214217717,0.6168749067089742,0.4520776998239804,0.3445367993594806,0.29236072063834184,0.2014701493381048,0.1901433627231359,0.1177104289063504,0.12728739471688735,0.07053657226418679,0.0865970194784488,0.038252254486760846,0.05507875668322148,0.021915119034810054,0.039132849922488035,0.012975114609557973,7.044521549095957,5.722505762585725,3.1454855002314037,2.218982561837024,0.33550936141034815,-0.37854008484677404,3.16150234670061,0.9939310004400901,5.022657066570282,0.9969682479716653,14.54817378944091,10.986814492735867,14.0297420268294,11.736301276890362,1.9564594740499597,1.0258163517269274,3.1264746412838944,2.2678307542461935,3.044092359349162,1.2460328511488723,3.2875639301526354,2.463110628735437,20.85682195681251,15.58923770139085,0.2640649460775931,0.6034853533056291,0.8265969841854366,0.8736266104370917,0.8736266104370917,0.8736266104370917,1.8857276720060387,245.27530899395384,0.0,2.0,1.0,0.0,2.0,3.0,1.0,0.0,0.0,3.4047019176030795,1.739203113418216,0.6444187500832097,0.41364951931397975,0.41364951931397975,0.41364951931397975,171.67933645452436,263.67395314503466,21.494969362787675,10.14130589019364,18.997205097780903,,6.0,124.0,0.0,0.0,0.0,6.041840829147961,0.0,24.94985114346159,0.0,18.460054211687762,22.997927302936485,0.0,5.800000000000001,13.75,6.0,0.0,7.75,0.0,0.016666666666666607,-1.75,0.07420814479638,0.028717948717948638,-0.045490196078431355,0.0,0.08356521739130429,0.0,0.5153846153846158,0.7666666666666667,0.4411764705882358,0.48666666666666714,0.7666666666666667,7.973866743756843,0.03720346466135016,0.20920346466135015,6.641006250373279,2.6189497479495145,3.2580603497622302,14.614872994130122,5.877010097711745,0.6304347826086957,0.08620689655172413,0.0,0.24137931034482754,0.5,0.2529197496053532,-0.19195524176423354,-0.028633063548934724,-0.007382893914008982,-0.02132836019602595,0.7470802503946469,0.5670018664242475,0.03323789334155457,0.02180776409324029,0.03335305096613221,-2.0108291940755616,0.9437164638136369,0.8617473128954545,1.1934316306212756,0.8173296753543667,0.705490241278623,1.5597200949663108,0.9485964873392304,1.239126620381761,0.8414047270955164,0.7644874573651226,0.9195933533318057,1.1322037740544064,1.0883527439244247,1.5308971605082349,1.744857814664907,1.4943940539178637,1.286624608349564,1.0501230974280178,1.082338229040692,0.922931158769645,1.439204676231395,0.9738856982381642,1.642695601875157,0.9484307470130258,1.1210668012788152,1.0196927085106142,0.934999852178098,1.5125906329610035,1.0783030362905883,1.1413812079222292,1.1225160293794825,1.1639853230153716,1.039988363766559,0.8167534365931464,0.9955738431947063,1.156204397241383,0.9341872791519433,0.7690761258041457,0.702104685501881,1.0185185185185186,0.9387966804979253,0.8863003145769304,0.9360468848269633,0.968881226969928,0.8070958646616538,0.8604264327839106,0.7193470266391605,0.9697985685619125,0.979604273000916,0.8694102765202657,0.8336064283893878,0.650148605395519,0.9489780236668205,1.0917704525687273,0.9817367332238784,1.0654271303196,0.8859496832358672,1.166753476597723,0.8548142500739148,1.0418497497053825,1.0731330259415668,1.4214748339406198,1.3199012418042597,0.5871725383920506,1.2334277907094424,0.6162648962624465,1.0657593152621614,0.7573541582303216,1.375461328626444,1.7368782110624676,1.4544192413625636,0.8490546037385489,0.944416031244188,0.3820868289379631,0.1402920594041927,0.47514619883040937,0.638785761083206,0.9311854699928555,0.9516762491762536,1.1277375706455048,0.5023867233874152,0.7915031795426871,0.23205409028895668,1.1057095935152754,0.0,0.0,0.13446723344592373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,1.333333333333334,0.6875,0.2811111111111111,0.14611111111111114,0.06444444444444447,0.0,0.0,0.0,1788.3266312940234,2118.677182751031,1126.6441373817543,987.577700534037,8.16680681322203,0.4426672600031988,4.551628818237578,0.7942602833735184,1.0,0.5,1.2957378005380122,2.9612366047228758,4.056020968057882,4.286790198827112,4.286790198827112,4.286790198827112,0.11538461538461539,0.0,0.07843137254901963,0.04910714285714285,0.025555555555555554,0.018263888888888892,0.02148148148148149,0.0,0.0,0.0,0.30822405671670383,8.591715976331361,3.8062283737024223,1.859504132231405,73.22976418910065,1.0,3.422366970266897,32.67228937156837,,26.456937792961686,25.982604827171198,25.546782079211404,26.46090533611412,32.99985411487738,26.25351197414663,26.48577551869752,31.102999290752376,0.08120664834445758,0.13366690493209266,-0.12024246497953169,0.39094650205761305,0.3025972030121407,-0.31303567559325474,0.07808343328807797,-0.10785585185914198,0.14668615984405373,0.19099865024558832,0.09664543905283028,-0.03942523020963501,-0.05408523833561691,-0.21190427564878833,-0.24419697932794823,-0.10254472159234079,-0.07803370310779917,0.10096871600835848,-0.051065714520359434,0.06639916144047318,-0.1878740217891675,-0.0384307964831176,-0.23352968418509168,0.033569955649814964,-0.16166077738515905,-0.12047153862736444,-0.030348152089251578,-0.2790515383107977,-0.1138114997036159,-0.13163624626118436,-0.16201287166765316,-0.16245481754036767,-0.1310642678123882,-0.014840897798708168,-0.10573373368242861,-0.16571789748348362,0.006183745583038874,0.09667619728377456,0.12010876906976502,-0.08148148148148153,-0.010373443983402494,0.020046786407562873,0.0050879705757441536,-0.018215033541931387,0.07659774436090251,0.02567669741418415,0.12233384160014339,-0.016639582235577204,-0.03937639052480046,0.020158247954888818,-0.023731618843517276,-0.019204389574759905,-0.08248808974950056,-0.2004035470835718,-0.04114960762166859,-0.12941144869083437,0.017378515733779118,-0.08130450123494129,0.015088548051145442,-0.0998179025662748,-0.11964578126346637,-0.2763581129378122,-0.19932668130848724,-0.005721168322794289,-0.24152413723307356,0.22825542642314106,-0.11544800580393894,0.08431991334727525,-0.2643842838804326,-0.3621137965500326,-0.272813486498844,0.01917152572822891,-0.08792077366561277,0.07467269854407461,0.15887330583191236,0.07277452891487991,0.007861978597947142,-0.22459352296314244,-0.09088895269993537,-0.20201802861415483,0.04850118717847349,-0.10379077892826748,0.09992871676005809,-0.1720679877249122,0.8489399293286218,0.5576304503216614,0.39319581057093195,0.6049382716049384,0.6721991701244814,0.4607335071478771,0.8503424701698086,0.7780891572311516,0.6433270676691742,0.6001814607591106,0.4307112745537705,0.8306828180122828,7.575476425952617,6.88320234726196,1.0,10.84001392212847,25.884134727533596,28.68044659654451,28.913061981159895,28.913061981159895,28.913061981159895,24.36080478973896,20.24036698474411,4.12043780499485,0.0,0.0,4.12043780499485,1005.9045502029153,798.5719841541031,237.9425211098844,6.0,17.0,22.0,27.0,26.0,21.0,20.0,16.0,10.0,162.115698448,13.0,4.110873864173311,4.9344739331306915,5.777652323222656,6.618738983517219,7.469083884921234,8.315077007294104,9.16711966952162,10.014894750110258,10.867367728003197,0.5641025641025641,0.9529230769230768,1.134173232165559,0.5195109611061656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.650278719484109,0.9408748114630469,0.9823519524903357,0.5887969907153706,4.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.883888251797686,0.0,0.0,0.0,6.06636706846161,38.06389019460039,18.435527972374114,0.0,87.86840453483737,-66.68835020689578,-9.947588572720345,-2.564936546419068,-7.409816689655086,259.5477409893617,196.98560293813887,11.54738079006733,7.576369343774572,11.587388408125816,0.5,0.9142858962321224,0.39436635556990535,13.7240949784948,0.11112667444004994,72.58385356694885,0.08571410376787764,3.0,0.07692307692307693,0.27566310350437695,0.6299914012925523,0.8629024540840061,0.9119976972117051,0.9119976972117051,0.9119976972117051,1.8483,,0.2857142857142858,0.37133550488599343,0.4504991709152957,0.2850003569643751,-1.0363636363636362,0.32236842105263164,0.28052598622417024,-0.6386492564868576,48.842000000000034,0.0,0.0,9.883888251797686,0.0,18.88348407499998,13.592428388589765,30.08987277184637,0.0,0.0,3.295836866004329,0.0,4.553876891600541,2.3978952727983707,6.018593214496234,4.59511985013459,7.57198844937744,6.555356891810665,9.170247278409738,14.666666666666666,7.99198223733938,4.137037037037037,0.0,0.0,0.0,0.0,1.3587962962962965,0.0,24.775999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.488504036304537,0.0,0.0,0.0,23.476316640387452,0.0,0.0,24.446935566696975,24.526421280149375,0.0,0.0,0.0,13.507284988760306,16.907246706586832,15.888779152800659,65.34457874313667,,52.87038100342745,51.91744507016702,51.045946893138506,52.87837017789418,66.17243550248199,52.4611573866828,52.92845630734544,62.312440124252234,15.88877915280066,65.34457874313668,,52.67990481295125,51.669888066909685,50.7456141125283,52.68836993991793,67.03607186611836,52.246245105981046,52.74143898319598,62.84464783799128,4.596194689683314,48.80204078240422,,39.84319175592714,39.172583966083934,38.55832135498653,39.84880985609168,49.04404518280785,39.555332188942074,39.88402968520948,46.36726274663823,1.3240649294000548,5.4453815619280554,,4.405865083618954,4.326453755847251,4.253828907761542,4.406530848157849,5.514369625206832,4.3717631155569,4.410704692278787,5.192703343687686,2.3429230827771703,32.67228937156833,,26.456937792942902,25.982604827140598,25.54678207916341,26.460905336095415,32.99985411487736,26.25351197412348,26.485775518679286,31.102999290752216,24.462745098039218,0.0,2.185185185185185,0.0,0.0,0.0,0.0,25.54115076474873,3.817277021919879,0.0,0.0,0.0,0.6099074074074073,2.399814814814815,0.0,0.0,0.0,15.308721758599637,317.6376819761018,33.68918281398832,76.99215172279477,105.45654516950493,111.4565451695049,111.4565451695049,111.4565451695049,190.0,92.2752821438943,29.778463548097278,56.15891471463191,16.130000000000003,16.130000000000003,1.0,6.38297862388911,4.700439718141093,3.2349576482810924,3.424044422115838,,3.4268912953069863,3.4275152232373975,3.4279652876204896,3.426885541495494,3.41183449651476,3.4271747534701884,3.42684928260407,3.417174200633287,0.26957980402342435,0.28533703517631986,,0.28557427460891555,0.28562626860311646,0.2856637739683741,0.2855737951246245,0.28431954137623,0.2855978961225157,0.28557077355033916,0.2847645167194406,1.3563373929396663,1.4131439887380766,,1.413975079109505,1.4141571307372998,1.414288431346506,1.4139734000902928,1.4095716789499553,1.4140577915203123,1.413962819321601,1.4111355092051352,137.09999999999994,50.901225123846004,48.08534998630476,,47.92651067985933,47.887875108752695,47.85422615624879,47.92684166507026,48.557908989936,47.909707703762656,47.92891917350588,48.36282986406674,4.2417687603205,4.0071124988587306,,3.9938758899882774,3.9906562590627246,3.9878521796873994,3.9939034720891886,4.046492415828,3.992475641980221,3.994076597792157,4.030235822005562,4.112208549291538,4.055299113424264,,4.051990366978666,4.05118389991461,4.050480991717595,4.051997273053474,4.06507864227903,4.05163970672616,4.052040619607041,4.061053097455206,0.0,6.536851851851852,0.0,1.3587962962962965,0.0,4.791435185185184,6.405944822373394,1.2217866591080877,2.185185185185185,159.98753764304556,30.526902416854252,-23.168609580247654,-3.455952879195071,-0.8911003684710636,-2.57428995336085,90.17107575403722,68.43597889652855,4.011746524985372,2.6321530344818673,4.025645817442856,191.0,14.0,0.5384516905501369,0.3700863236175207,0.0,0.0,0.1642664266089148,0.09497875340929951,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.28795458455770084,0.16177583912628918,0.22319199170779375,0.112692556891968,8.38890505706126,7.4024988805076894,5.877010097711745,4.478978391673248,4.970132250851811,3.4249925387477815,4.183153979908989,2.5896294359397087,3.436759657355959,1.9044874511330432,2.251522506439669,0.9945586166557819,1.156653890347651,0.46021749973101117,0.7826569984497607,0.25950229219115944,1.4401774752272036,0.8849450096766629,2.343625285575563,1.2709233951049537,2.8724760158946943,1.2467633699266367,42.529381003559706,22.834665007440677,17.79937332650114,17.068434973369953,17.068434973369953,17.068434973369953,60.0,69.0,28.235101999999976,16.894897999999998,0.4230769230769231,37.02,3.3333333333333335,2.7222222222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,26.0,0.0,1.0,27.0,6.0,0.0,3.0,24.0,6.0,13.0,21.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,2.0,0.0,2.0,12.0,2.0,0.0,2.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,2.833213344056216,3.7256934272366524,3.2771447329921766,3.7316994512968646,4.176308500073531,4.539964775862816,4.286169430278883,4.468777561082536,4.440442937595088,4.066887715989061 +39186,COc1ccc([C@@H]2Sc3ccccc3N(CCN(C)C)C(=O)[C@@H]2OC(C)=O)cc1,0,25.963636363636365,6.129879999999997,3.1636363636363636,7.135353535353536,161.25363386619227,102.62429141818187,1.5694282095649812,6.206709090909087,4.175314877166729,7.693189109090906,219.5366888137615,26.31578947368421,6.315789473684211,3.7719298245614037,6.467836257309941,145.12305023055086,99.99705370175442,1.8439910887719302,6.4685,3.026803118908382,7.7599069473684175,261.94480976767346,22.666666666666668,6.2953333333333354,3.5454545454545454,4.973063973063973,156.4923518578214,84.7720125959596,1.5846268250695559,6.397895959595958,2.9020451427858824,7.825032767676767,218.54400666083362,23.016,6.2870856,3.424,4.568,153.62522312820758,85.04971583199999,1.6113456694279198,6.400889599999999,2.8765679012345675,7.842123312,216.389590420898,19.892617449664428,6.047845637583893,3.0067114093959733,4.134228187919463,155.35840903412108,72.82469507382552,1.4627048168921006,6.159471140939597,2.6796337724749364,7.642407677852348,192.91318130370271,19.093167701863354,6.1293043478260865,2.906832298136646,4.215320910973086,158.13086441961784,69.64238760248446,1.3942227482485527,6.222947204968944,3.1282877079978535,7.717485937888198,187.38291783762494,18.211180124223603,6.202290683229815,2.8322981366459627,3.697722567287784,157.7041743248912,65.36410350310557,1.3623721763057448,6.292745341614907,3.1295721187025536,7.7823908074534165,186.37247531607895,16.73076923076923,6.159551282051282,2.5576923076923075,2.9615384615384617,155.72086974673036,58.81404619230769,1.3779514930066472,6.251821153846153,3.1433404558404563,7.724729320512817,182.41508990597669,12.071428571428571,5.861553571428571,2.0416666666666665,2.1726190476190474,160.5050876731761,39.33950466071427,1.1548657159589943,5.941439285714286,2.5992063492063493,7.516940500000001,140.53520811650853,9.963636363636363,0.12470697520661146,0.0203941469991779,0.6036363636363635,4.046280991735536,1.4902260272848868,45.82203343471075,0.2828693457613706,0.11747986776859493,1.4188205285174973,0.07910143140495865,51.8700483053381,0.7719298245614035,0.0037471874728143215,-0.00855641313204058,0.2687719298245614,1.3137757156895917,-0.34247996585814344,3.528988061621001,-0.016114618013908292,0.005685586776859598,-0.041130262198252006,-0.000889097433666912,-1.680307739182085,1.0101010101010102,0.002728653810835688,-0.0020385317422853167,0.044848484848484804,-0.0037751249872461363,0.37714002478874276,4.848826296602391,0.060572353411425764,0.0031284885215795096,0.1146808400755277,0.0016515390266297965,9.28425834985383,-0.024,-0.006930989752066054,0.002667981244920959,0.07039999999999998,-0.23092745638200163,0.14651067887569813,-0.29866133216528307,0.015422986317743647,-0.007571009586776758,-0.13360666145177927,-0.0006624306776861025,-0.8965616160510796,0.5100671140939598,-0.0007045835043540926,-0.002705354496728372,0.01503355704697985,0.4446416575763741,-0.1416031258326137,2.4071990219091473,-0.010293305994852543,0.0016057942204226626,-0.07932548695931968,-0.0026373998003217246,0.49783304221830443,0.38509316770186336,0.009452437554540337,0.0013851345435553822,-0.03875776397515531,0.3286735223494117,0.061078052269016386,1.96183195749705,0.002805224109734687,0.00970636599763875,0.2061796070301414,0.004611172321749329,3.6499120226341715,-0.968944099378882,-0.014213175093680976,0.0004334922431497702,-0.16298136645962738,-0.7092836895208434,-0.07408684769251671,-4.3698124219495895,-0.027560530518511046,-0.01245710097017601,-0.06275465546289725,-0.009220085724552242,-2.022110954474054,-1.8076923076923077,-0.021241310870947185,-0.0012485116344457116,-0.13358974358974357,-1.0585576040121494,-0.1793172790272496,-8.683411931447337,-0.03226712088871287,-0.022756895740622937,-0.2564061424920011,-0.010054787931765282,-12.036656819779042,-2.357142857142857,0.0066700594254230335,0.0006021421947081095,-0.06499999999999997,0.09358192312737756,-0.295435366691385,-10.776986996507285,-0.07179490328945357,0.002703833530106223,0.014179333417548921,0.0034247583136561076,-11.177219843410663,,,0.4816091954022989,1.1724137931034482,0.5344827586206896,0.017241379310344827,0.6379310344827587,-0.10344827586206896,0.9888116062979241,0.01769405721407592,0.026590608938213852,0.9876842101281926,0.2380005998740613,0.2413471898902454,1.9764958164261166,0.4793477897643067,2.021676008331268,1.5474907877294757,0.14651528279913256,0.25510950782894,0.0,0.4741852206017919,7.530205969309103,1428.0,337.1433999999999,174.0,392.44444444444446,8868.949862640575,5644.336028000002,86.31855152607396,341.3689999999998,229.6423182441701,423.12540099999984,12074.517884756882,1500.0,360.0,215.0,368.66666666666663,8272.0138631414,5699.832061000002,105.10749206000003,368.7045,172.52777777777777,442.3146959999998,14930.854156757387,2244.0,623.2380000000002,351.0,492.33333333333337,15492.742833924318,8392.429247,156.87805568188602,633.3916999999999,287.30246913580237,774.678244,21635.856659422527,2877.0,785.8857,428.0,571.0,19203.152891025948,10631.214478999998,201.41820867848998,800.1111999999999,359.57098765432096,980.265414,27048.69880261225,2964.0,901.129,448.0,616.0,23148.40294608404,10850.879566000003,217.943017716923,917.7611999999999,399.26543209876553,1138.7187439999998,28744.064014251704,3074.0,986.818,468.0,678.6666666666667,25459.069171558473,11212.424403999998,224.469862468017,1001.8944999999999,503.6543209876544,1242.515236,30168.649771857617,2932.0,998.5688000000001,456.0,595.3333333333333,25390.372066307482,10523.620663999996,219.3419203852249,1013.1320000000001,503.86111111111114,1252.9649200000001,30005.96852588871,2610.0,960.8900000000001,399.0,462.0,24292.455680489937,9174.991206,214.96043290903697,975.2840999999999,490.3611111111112,1205.0577739999994,28456.754025332364,2028.0,984.7409999999999,343.0,365.0,26964.854729093586,6609.036782999998,194.01744028111105,998.1618,436.6666666666667,1262.8460040000002,23609.914963573432,548.0,6.858883636363631,1.1216780849547845,33.199999999999996,222.54545454545445,81.96243150066877,2520.211838909091,15.557814016875383,6.461392727272721,78.03512906846235,4.350578727272726,2852.8526567935955,44.0,0.21358968595041633,-0.48771554852631305,15.319999999999999,74.88521579430673,-19.521358053914177,201.15231951239707,-0.9185332267927726,0.3240784462809971,-2.3444249453003643,-0.05067855371901398,-95.77754113337885,100.0,0.2701367272727331,-0.20181464248624634,4.439999999999996,-0.3737373737373675,37.336862454085534,480.0338033636367,5.996662987731151,0.30972036363637145,11.353403167477243,0.16350236363634985,919.1415766355292,-3.0,-0.8663737190082568,0.3334976556151199,8.799999999999997,-28.865932047750203,18.313834859462265,-37.33266652066038,1.9278732897179558,-0.9463761983470947,-16.70083268147241,-0.08280383471076282,-112.07020200638496,76.0,-0.1049829421487598,-0.4030978200125274,2.2399999999999975,66.25160697887974,-21.098865749059442,358.67265426446295,-1.533702593233029,0.2392633388429767,-11.819497556938632,-0.39297257024793697,74.17712329052736,62.0,1.5218424462809943,0.22300666151241655,-6.240000000000005,52.91643709825529,9.833566415311639,315.85494515702504,0.45164108166728456,1.5627249256198386,33.194916731852764,0.742398743801642,587.6358356441016,-156.0,-2.288321190082637,0.069792251147113,-26.24000000000001,-114.1946740128558,-11.92798247849519,-703.5397999338838,-4.437245413480278,-2.0055932561983374,-10.103499529526458,-1.484433801652911,-325.5598636703227,-282.0,-3.3136444958677607,-0.194767814973531,-20.839999999999996,-165.1349862258953,-27.973495528250936,-1354.6122613057846,-5.033670858639208,-3.5500757355371784,-39.99935822875217,-1.5685469173553839,-1877.7184638855306,-396.0,1.1205699834710696,0.10115988871096239,-10.919999999999995,15.72176308539943,-49.63314160415268,-1810.5338154132237,-12.0615437526282,0.45424403305784544,2.382128014148219,0.5753593966942261,-1877.7729336929913,0.7229617533559095,0.6186166027074592,0.4484221259085452,0.33269108851488716,0.29266451819699885,0.19269575458411894,0.17658118386795615,0.10848064669221426,0.10956735820739909,0.0607566948956913,0.07025952260893785,0.03475715420071061,0.044164438286630844,0.020667958999230178,0.028384006967963237,0.012152050266272819,16.002004392678614,5.69348082249703,3.5560530612779253,2.1872778161736512,0.44830196533092626,-0.5293798316963607,3.2225138556420925,0.972575467538698,6.028960929515602,0.6593707637866857,14.54538279122258,10.337550374523431,32.06099929239521,11.704795453681866,2.916530864163861,0.7410021151789637,3.5022586926253245,2.239934128333578,7.009360374604753,0.6237144934640212,3.7151337346426456,2.437738087578744,24.434239843898595,14.700602540595611,0.2646372465374758,0.5643088023029768,0.7757602150476421,0.8602935622121196,0.8663316584381537,0.8663316584381537,1.8393003156320051,869.370915000003,0.0,2.0,3.0,0.0,11.0,2.0,1.0,0.0,0.0,4.18761687784889,2.3828845459265757,1.1094463637937082,0.6003554547027985,0.5639918183391623,0.5639918183391623,191.540667118075,1752.7197006254796,58.80074979126783,31.867630920463263,65.25365657106704,,13.0,584.0,12.073271675700152,9.589074368143644,11.15711775933368,13.08951281182515,21.89583307518224,6.923737199690624,23.771592221519125,67.52619024389773,0.0,9.473725907600098,13.966666666666669,34.0,15.5,0.5,18.5,0.0,0.018390804597701083,-3.0,0.1463015699160281,0.05123473541384038,-0.09506683450218772,0.0,0.14237653478853984,0.0,0.5860606060606061,0.8425287356321834,0.43975903614457795,0.5348258706467657,0.8425287356321834,28.675536582639797,0.5131276592082017,0.7711276592082017,28.642842093717586,6.9020173963477776,6.999068506817117,57.31837867635738,13.901085903164894,0.5716234652114601,0.19093078758949877,0.0,0.34367541766109777,0.36363636363636365,0.35763909506561353,-0.9317881766676295,-0.0523289649960047,-0.016941603212138716,-0.05176600981486829,0.6423609049343864,1.6735986211506588,0.035077308325003144,0.030429065839102893,0.045232395166234035,-4.442091779311818,0.7606607760276604,0.7110977676085893,1.4789305881396657,0.7704502219403933,0.5396886824905403,1.395242280976354,0.7651556027394483,1.085814086418564,0.687647088217194,0.5767049968407869,0.7465430749919236,1.0358336626287017,0.9406104844061047,1.0195298148174659,1.43242699791628,1.207557502738226,1.0742102396514164,0.876565011968535,0.9268415713859592,0.8265244121264368,0.9947376951661989,0.5896566867013863,1.007604192094318,0.7836753536086363,1.1856350364963504,1.117484361356447,1.0911375364661888,1.1190361445783135,1.1113235294117652,1.0203356142821751,1.165670150372613,1.1124835988620492,1.1043912514217318,1.069133875934319,1.1013794357891695,1.0063915372831729,1.1077499632587076,0.9032023372870632,1.0882820163730507,1.0861567073663785,0.840669824976971,1.145563266096821,1.0868248554357873,1.188298360598048,0.8869035603697054,1.0857992830930236,0.9400890376925544,1.0065252583904707,1.0677222650405767,0.9594279035348846,0.9988503719322233,1.1718925391005017,0.9462230544391674,0.9996892349134392,1.0502948624391721,1.0654063104908134,0.9431871334408705,1.0227118782123346,0.9867768743842681,0.9145317859657739,1.1231128439951037,1.2620323332739716,1.1522088555824643,1.3991992815984438,1.2844050663743762,1.0742126077921,1.1152754915392447,1.1077669702630049,1.2315046832148464,1.3410028452815552,1.2959686456823345,1.0014151768201263,1.021090679393599,1.238102637877542,1.007959812479602,1.1886005560704358,1.2648237179487185,1.1112158666552452,1.039988035657746,1.0245685204946118,1.2441227029406166,1.6016190573337714,1.2278741095481744,1.192762324677378,1.3437825860271115,0.8608705187796647,0.7604044880900748,0.8422977624784856,0.8694852941176475,1.144137561707312,1.3312662259767492,1.3243899989617995,0.9041687345601421,0.9214091474488355,0.8752973305727869,1.2240289172429335,6.0,0.06601367207427813,3.333333333333335,2.0,2.2344444444444447,1.525,1.0908390022675734,0.5885416666666666,0.5366827286470142,0.18031635802469143,6274.194202676927,7033.503220317832,2857.6965146494895,2597.5853614386133,15.836474436199442,0.4990878830530935,7.93268193481223,0.9963581757516032,1.0,0.36363636363636365,1.59374283567577,3.398475167598084,4.671913349730952,5.181004258821861,5.217367895185498,5.217367895185498,0.19354838709677413,0.005501139339523177,0.07751937984496125,0.04000000000000001,0.042970085470085476,0.027232142857142854,0.020200722264214325,0.013078703703703705,0.017312346085387554,0.008196198092031428,0.44555910475382393,23.658688865764827,11.039480800432667,6.035714285714286,175.32499934087113,1.0,4.281658639043881,149.71951296003186,,114.67832914309166,121.65548059237418,123.43089070229827,114.69886858844731,170.2747915810136,122.68187989503681,122.99366224747948,151.88924917962373,0.07747470866948393,0.030047938109364555,-0.41955239081024054,0.44525470302261677,0.3246872173170765,-0.2298174636515535,0.07701509071283924,-0.056968414058915486,0.048396264694975134,-0.028989052083443108,-0.011239966431393515,-0.03239456669272389,0.10137875101378752,0.02188052277200149,-0.09995670534136539,0.07429718875502002,-0.0009329863632695725,0.25307571998045963,0.10581866262027008,0.21413544563617995,0.026629996960345802,0.08082829207113028,0.02087875019827095,0.17899074038260265,-0.0024087591240875912,-0.055578204351304,0.13082092842757814,0.11662650602409635,-0.05707153231663033,0.09831440076417995,-0.0065178541801473935,0.05452335698034429,-0.06444516605764058,-0.09416741495232149,-0.008374446149966592,-0.01728476539627228,0.051192867290452165,-0.005649912550494917,-0.13265347635463384,0.024904989083852164,0.10988897174579512,-0.09502124056349165,0.05253365775089468,-0.036388905864462265,0.013668675756306292,-0.05590945814845631,-0.03334199841238768,0.009597697678779122,0.038649861721902344,0.0757971840699349,0.06791823867952006,-0.06420713911546815,0.08122854616887018,0.04098576400540888,0.04281416188769437,0.00991703113741134,0.08262152641129789,0.14531760915919023,0.05829442324681203,0.07036646661959149,-0.09724803917123816,-0.11397257507154619,0.021255718278741665,-0.2699992516650454,-0.17529274189546995,-0.04971517497080563,-0.0953648734985952,-0.09743201563368124,-0.10603604861654499,-0.044230157515742025,-0.11656028924875132,-0.03898417334355852,-0.18142897248736664,-0.17032977374164598,-0.0612191151949645,-0.22130831016373184,-0.2616124797497347,-0.12032891369771351,-0.18950298100192006,-0.11407075871675931,-0.19370889815307044,-0.18071781267495174,-0.12711259143074083,-0.23205408926793525,-0.23657455683003129,0.05348585686063062,0.029525245391846117,-0.10768072289156623,0.02312788541342461,-0.1982486960247585,-0.23519224680115539,-0.25380941542538143,0.02301529258980848,0.009993747012079588,0.04329578179341795,-0.21548504789536474,11.029056641980885,21.901257221503837,9.653833912699705,17.072098982967965,34.47953779531031,41.65472711926388,42.56799984653661,42.604654391991154,42.604654391991154,58.628604241606766,44.8772328441548,4.2489432011748445,7.398175727039259,0.0,13.751371397451965,6659.424218886298,6093.846225666686,1891.0378551002004,165.0,43.0,56.0,75.0,102.0,121.0,141.0,157.0,169.0,414.16132831200065,31.0,5.003946305945459,5.849324779946859,6.734591659972948,7.612336837167746,8.508959386489133,9.40137386937216,10.30377260060275,11.203692838488003,12.109115610403732,0.6666666666666664,0.9802181818181821,1.1225060659614268,0.6274854111004309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6792010669569952,0.9677005347593581,1.0048665827981198,0.6291989045759863,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,2.0,2.0,0.0,0.0,0.0,19.273545369301054,5.749511833283905,6.103966387748303,0.0,5.907179729351506,9.589074368143644,0.0,0.0,11.761884949391115,24.26546827384644,43.92426373089781,24.90873348703355,18.04712184594327,240.59425193997177,-626.8410876353697,-35.203221240946576,-11.397110684279447,-34.82450486863164,432.13491905804676,1125.8786129901098,23.59752855032126,20.470520236183816,30.429151702435405,0.46153846153846156,0.8642960540439313,0.19066965709432512,102.67152494035065,0.11628496245860331,16.65837759191074,0.13570394595606872,7.0,0.1935483870967742,0.2756692049358973,0.5878331977247221,0.8080994058891859,0.8961567028430435,0.902446509768319,0.902446509768319,3.368500000000002,,1.9107142857142856,1.48960248380871,1.0561354191587082,1.9074213757920884,-4.941402762685762,1.3688800489596085,1.3458612912595438,-2.0770482935474925,114.49500000000005,19.06280027574374,0.0,4.899909730850478,0.0,23.17312509293888,39.19456404930754,54.09438803938988,0.0,5.749511833283905,4.143134726391533,0.0,5.459585514144159,0.0,6.9650803456014065,2.70805020110221,8.561592778712923,5.459585514144159,10.211082540319786,36.66666666666665,15.356779998066974,0.0,0.0,0.0,0.0,0.0,3.4611083215425755,0.0,53.91200000000001,0.0,25.417568036103837,0.0,0.0,0.0,0.0,0.0,-0.6793560773074654,61.73783362787847,9.636772684650527,5.687386274683562,5.749511833283905,57.17501545435919,14.325937321943691,0.0,17.737126721369794,53.42642002321065,0.0,0.0,0.0,34.5116976105237,37.35605868263474,36.71440796032013,299.4390259200637,,229.54564933624812,243.2082299789684,246.7889444791373,229.58767622770586,342.38933286064446,245.26935426945573,245.89450647487206,304.49472190874656,36.71440796032013,299.4390259200637,,227.89848184856342,241.8213587009396,245.80564598543776,227.94334745547124,345.4909859247132,243.99487974111412,244.64146320369935,305.85554665279494,4.857907426794135,203.3892564347991,,155.8488107066041,168.73623712367595,170.77152671283125,155.86897768541277,225.2636413818356,169.78486250277743,169.9642309272949,204.8227874867288,1.2660140675972458,10.32548365241599,,7.915367218491315,8.386490688929944,8.509963602728872,7.91681642164503,11.806528719332567,8.45756394032606,8.479120912926623,10.499817996853329,2.4833430685407634,149.71951296003186,,114.67832914309166,121.65548059237418,123.43089070229827,114.69886858844731,170.2747915810136,122.68187989503681,122.99366224747948,151.88924917962373,53.223529411764694,0.0,6.878986904513738,0.0,0.0,0.0,0.0,55.26766205389659,1.209562345956646,0.0,10.828902890675838,1.54208734882842,-1.2747505668934243,3.7591107985128547,0.0,0.0,0.0,34.605939751679244,581.4371679338326,87.65585596216735,186.91613421789464,256.95523423520234,284.9552342352024,286.95523423520234,286.95523423520234,1089.0,136.7271138883888,91.29200306418602,72.50811162041617,84.38000000000001,59.080000000000005,0.8571428571428571,8.393675776841421,5.954196310386875,4.456374997556267,5.279657172106862,,5.265321647152538,5.288217932850185,5.288085908685491,5.2652754089041505,5.218314674319085,5.286064684535084,5.283588659523352,5.252939348489667,0.1536681033640092,0.18205714386575386,,0.18156281541905303,0.18235234251207535,0.1823477899546721,0.18156122099669483,0.17994188532134778,0.18227809257017533,0.182192712397357,0.18113583960309196,2.5590463917220054,2.7285719030773703,,2.725852972289283,2.7301920514101017,2.730167085379118,2.7258441905937834,2.7168852274308373,2.729784790052944,2.7293162742035726,2.7234985328267167,313.6500000000009,294.50375384015774,184.2523281888039,,185.37026821223554,182.29672786772738,182.4752148497005,185.37667520596375,190.78728511057486,182.57455545059634,182.86807545800255,186.62826228574562,10.155301856557163,6.353528558234617,,6.392078214215019,6.286094064404392,6.292248787920707,6.392299145033233,6.57887190036465,6.295674325882632,6.3057957054483635,6.435457320198124,6.750002486488938,6.281016904013541,,6.287066011634443,6.270346469353738,6.271325091749355,6.287100574259126,6.315869853904396,6.2718693496091324,6.273475730724519,6.293829473131664,10.828902890675838,30.158230889080457,-0.3585071806500377,1.7473855190224241,0.052814670748924986,15.356779998066974,-0.9162433862433865,2.548077373881396,5.540471876588988,384.7705389231588,161.85477165446565,-421.6942852324386,-23.68223384188183,-7.667168822407974,-23.42746029069103,290.7097658572157,757.4113859612356,15.874745819259699,13.771116108386103,20.47057799895232,2077.0,50.0,2.0907352031746838,1.2090810398421041,0.0,0.0,0.40432871486274263,0.20922986778628666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.24026531510664179,0.0966428017445218,20.965890847321376,17.939881478516316,13.901085903164901,10.313423743961502,12.584574282470951,8.285917447117114,9.888546296605545,6.074916214763999,8.217551865554931,4.556752117176847,7.16647130611166,3.5452297284724823,5.3438970326823325,2.5008230389068515,4.002144982482816,1.7134390875444676,4.2524505462788,2.3868991323978968,6.810333907749722,3.387171264354814,11.524774303326964,5.0169494347188826,95.9995450028806,51.345248372831065,30.054788428159764,26.567140813599313,26.429636824016598,26.429636824016598,148.0,173.0,62.38461799999998,37.171382000000015,0.3090909090909091,149.07,10.36111111111111,6.499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,55.0,0.0,1.0,57.0,12.0,2.0,8.0,49.0,14.0,31.0,43.0,0.0,0.0,0.0,22.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,6.0,0.0,1.0,29.0,7.0,0.0,2.0,4.0,0.0,3.0,6.0,1.0,0.0,0.0,0.0,2.0,3.6888794541139363,7.086450476810611,4.204692619390966,4.672828834461906,5.177561165412237,5.7116679689301915,5.883322388488279,6.215295362202328,6.546740574748231,6.860073874910989 +5281037,CCCCc1ncc(/C=C(\Cc2cccs2)C(=O)O)n1Cc1ccc(C(=O)O)cc1,1,27.074074074074073,6.179877777777775,3.2222222222222223,7.4526748971193415,159.73905397559403,107.1586670555556,1.633670846599555,6.262805555555554,5.201709597114261,7.726462759259256,230.29383884526575,26.75,6.307589285714286,3.8392857142857144,6.851190476190475,144.0486547675375,101.93121646428574,1.9350494784285714,6.466330357142857,3.2696208112874783,7.751965642857142,275.0630923971405,22.97872340425532,6.179520212765958,3.5106382978723403,5.684397163120567,150.38093569547257,86.08025859574467,1.700258680093532,6.309184042553192,3.4871946414499595,7.67505419148936,232.73128496867554,17.566666666666666,6.000758333333332,3.0166666666666666,3.8388888888888886,155.0844047153283,63.03687366666666,1.4492591004106827,6.1129958333333345,2.816486625514403,7.560574016666665,193.09824562486665,16.704545454545453,6.110727272727273,2.856060606060606,3.891414141414142,159.39792226691418,59.753680780303014,1.3382503785354396,6.195147727272726,3.017372802095024,7.674376484848485,179.99839685153268,18.862595419847327,6.059618320610688,2.9236641221374047,4.175572519083969,159.49877189000878,69.64096842748091,1.3766836831627405,6.151561832061068,2.897276411271323,7.628493419847329,188.0636886682734,18.846153846153847,6.1968292307692305,2.9384615384615387,4.148717948717948,156.30457015328517,68.24251803076926,1.4372459365925925,6.295160769230768,3.2982193732193736,7.723992769230769,196.50382661039242,15.971428571428572,6.002319999999998,2.657142857142857,3.0595238095238093,158.0245107091172,56.37863257142856,1.3473238074883997,6.093438571428571,2.7932980599647266,7.593093642857141,174.64486433125649,15.635036496350365,5.865598540145985,2.562043795620438,3.2262773722627736,157.98056673899876,55.948477795620434,1.3239996185318683,5.9632299270072995,2.7387582229431375,7.470037810218978,172.77320220409572,9.866941015089164,0.1246327846364883,0.023551446359336488,0.5665294924554185,3.837982014936748,1.5152941309426395,45.35723179320985,0.28458722000661174,0.11699729080932778,2.009433784747507,0.07949673422496567,51.72366738101226,0.3275034293552813,-0.008100377229080871,-0.01518450491686103,0.1801636292377035,0.9823442637228643,-0.06208318176973499,1.5682024905202911,0.020212070711652756,-0.006791106946893943,-0.1519439095107184,-0.006143359224965774,2.062801644408932,0.4695444065026414,0.0271351034643785,0.0035942198430046436,-0.022794267869129914,0.5480174597152097,0.00369258602615239,2.1159047121092778,0.0037791773160690567,0.023227019671365628,0.5129822811739436,0.01870919485304846,-0.5854839899707849,-1.1076817558299037,-0.001831364883401932,-0.00024240426565459413,-0.01776406035665293,-0.07741960067062946,-0.2062836370303806,-4.967765195987653,-0.04296765379984081,-0.0016633247599451386,0.06690165277048635,-0.003097141478052074,-4.664816917271491,-0.4048198029679511,-0.01972773413143781,-0.002463948160610026,0.030271854345928426,-0.20445539066938248,-0.011798140093085725,-1.9269948138327724,0.006523683954914018,-0.017979501808205494,-0.2079620871281187,-0.01199294859084676,-1.310564666460436,1.7762594372715943,0.008018869307532006,0.002737253117854103,-0.03104744552298975,0.1901648766537404,0.14190176846781058,8.211052135543303,0.024354595685958463,0.010814046482162104,-0.006019651654005761,0.0058132229421250575,8.595086064042807,-0.8333227814709296,-0.005253981217684882,-0.0010340374410902295,-0.09701382293974886,-0.5435217426986974,-0.10403619586184923,-4.05005492910731,-0.03576772080171066,-0.005699099926136935,-0.025593473506647313,-0.0019580526010341305,-7.135546353875669,-0.6584754066235549,-0.009380297864001571,0.0002561118305729558,-0.006741132667058588,-0.42372569512487224,-0.016433748960704875,-3.2020788745590822,-0.0018009617293705319,-0.01056647070350773,-0.2456399742801714,-0.0036592397805212283,-3.93026909760537,0.6258948865058623,0.0042125519409649745,-0.0009250846343698838,-0.05179578064141459,0.26760207685983417,-0.002485627293863972,3.0068596901640054,0.0030063273557861506,0.0057280809127591694,0.05025526108143633,0.0001782751018794952,2.969108492104137,,,0.48222222222222233,1.2083333333333333,0.6,0.0,0.6083333333333333,-0.008333333333333333,0.9249018949996957,0.014688267137892197,0.023288267137892196,0.9479236594316593,0.2353336189429653,0.24711856599824567,1.872825554431355,0.482452184941211,2.0165239927861607,1.5767944788292712,0.14468612331121455,0.22820030107867345,0.0,0.4397295139568892,7.854549597185197,1462.0,333.71339999999987,174.0,402.44444444444446,8625.908914682077,5786.568021000002,88.21822571637597,338.1914999999999,280.8923182441701,417.22898899999984,12435.86729764435,1498.0,353.225,215.0,383.66666666666663,8066.7246669821,5708.148122000001,108.362770792,362.11449999999996,183.0987654320988,434.11007599999994,15403.533174239868,2160.0,580.8749,330.0,534.3333333333334,14135.807955374421,8091.544307999999,159.824315928792,593.0633,327.7962962962962,721.4550939999998,21876.7407870555,2108.0,720.0909999999998,362.0,460.66666666666663,18610.128565839397,7564.424839999999,173.91109204928193,733.5595000000002,337.9783950617284,907.2688819999998,23171.789474983998,2205.0,806.616,377.0,513.6666666666667,21040.52573923267,7887.485862999998,176.64904996667804,817.7594999999999,398.2932098765432,1013.017696,23759.788384402313,2471.0,793.8100000000001,383.0,547.0,20894.33911759115,9122.966864,180.345562494319,805.8545999999999,379.5432098765433,999.3326380000001,24636.343215543813,2450.0,805.5878,382.0,539.3333333333333,20319.59411992707,8871.527344000004,186.84197175703702,818.3708999999999,428.7685185185186,1004.11906,25545.497459351016,2236.0,840.3247999999998,372.0,428.3333333333333,22123.43149927641,7893.008559999998,188.62533304837598,853.0813999999999,391.0617283950617,1063.0331099999999,24450.28100637591,2142.0,803.587,351.0,442.0,21643.33764324283,7664.941457999999,181.38794773886596,816.9625,375.2098765432098,1023.39518,23669.928701961115,532.8148148148149,6.730170370370368,1.2717781034041704,30.5925925925926,207.2510288065844,81.82588307090253,2449.290516833332,15.367709880357033,6.3178537037037,108.50942437636537,4.292823648148146,2793.078038574662,18.340192043895755,-0.4536211248285288,-0.8503322753442176,10.089163237311395,55.0112787684804,-3.4766581791051596,87.81933946913631,1.1318759598525543,-0.3803019890260608,-8.50885893260023,-0.3440281165980833,115.51689208690019,44.13717421124829,2.550699725651579,0.3378566652424365,-2.142661179698212,51.513641213229704,0.34710308645832466,198.89504293827213,0.35524266771049134,2.183339849108369,48.220334430350704,1.7586643161865554,-55.03549505725378,-132.92181069958843,-0.21976378600823182,-0.029088511878551295,-2.1316872427983515,-9.290352080475536,-24.754036443645674,-596.1318235185183,-5.156118455980898,-0.19959897119341663,8.028198332458361,-0.37165697736624886,-559.7780300725789,-53.43621399176955,-2.6040609053497907,-0.3252411572005234,3.995884773662552,-26.988111568358487,-1.5573544922873157,-254.36331542592595,0.8611262820486504,-2.3732942386831253,-27.45099550091167,-1.5830692139917724,-172.99453597277756,232.68998628257884,1.050471879286693,0.3585801584388875,-4.067215363511657,24.911598841639993,18.589131669283187,1075.6478297561728,3.1904520348605585,1.4166400891632356,-0.7885743666747547,0.7615322054183825,1125.9562743896076,-108.33196159122085,-0.6830175582990347,-0.13442486734172984,-12.611796982167352,-70.65782655083065,-13.5247054620404,-526.5071407839503,-4.649803704222386,-0.7408829903978016,-3.3271515558641505,-0.25454683813443696,-927.621026003837,-92.18655692729767,-1.31324170096022,0.03585565628021381,-0.9437585733882023,-59.321597317482116,-2.3007248544986827,-448.2910424382715,-0.2521346421118745,-1.479305898491082,-34.389596399224,-0.512293569272972,-550.2376736647518,85.74759945130315,0.5771196159122015,-0.1267365949086741,-7.0960219478737985,36.661484529797285,-0.3405309392593642,411.93977755246874,0.4118668477427026,0.7847470850480062,6.884970768156777,0.024423688957490843,406.76786341826676,0.7169953640563799,0.5853927387652841,0.4522989233823854,0.33388259079723687,0.297444211061987,0.1873065244218165,0.1878994321393808,0.10523301959436607,0.11824803988006223,0.05809180102828359,0.07673538844046875,0.03118151060604145,0.05090866241584648,0.017187119968742618,0.032556542957138036,0.009572415842356567,16.004503990225643,5.689279935259289,3.557365878135475,2.1887483668618715,0.4597672357939809,-0.44170007179157283,3.233800664929252,0.9715283945743163,6.023304337003889,0.6503181616301004,14.55774912682933,10.31140393214664,32.06224628854932,11.700588322090834,2.9363920498968636,0.740434716303011,3.5035217552530336,2.2386130933609674,7.009392053140879,0.6100479754959786,3.7164211598541175,2.4346052982973183,24.44072046284665,14.699772943146925,0.2655748217656199,0.6203403343209719,0.8160532194530529,0.9007704825602677,0.9068979845572698,0.9068979845572698,1.5903815562375965,1033.8548519531228,0.0,5.0,2.0,0.0,9.0,4.0,3.0,0.0,0.0,4.149648611233686,2.005306033392929,0.8223402214179023,0.31027569448450976,0.27323865744747344,0.27323865744747344,110.0726710859696,1831.193663292017,88.13925993843137,33.91099376466698,70.77437926118677,,14.0,678.0,11.938610575903699,14.69560176298435,5.563451491696996,18.53868255890785,41.22139604702471,11.336785877934737,36.5383319522934,22.07989655518049,11.907715720637832,5.106527394840706,14.46666666666667,36.25,18.0,0.0,18.25,0.0,0.017777777777777656,-0.25,0.15923054837783562,0.06151053013798169,-0.09772001823985393,0.033611111111111036,0.13840318302387222,0.0,0.5987654320987654,0.8377777777777774,0.4395348837209298,0.5372549019607837,0.8041666666666664,27.74705684999087,0.4406480141367659,0.6986480141367659,28.43770978294978,7.06000856828896,7.41355697994737,56.18476663294065,14.47356554823633,0.5755968169761277,0.1267281105990783,0.0,0.304147465437788,0.2608695652173913,0.41886212160919306,-1.1307836039712436,-0.07651774920757273,-0.02094043711057859,-0.05951492652480229,0.5811378783908067,1.5688723105501647,0.05342245272964931,0.029053190936114165,0.04482492315857615,-4.651021674202964,0.7717938819487199,0.7728525695553041,1.593577847532993,0.7888814424074713,0.5515414825236713,1.1434437753101059,0.7728907721908338,0.9189143847539232,0.7595647153378683,0.7252821608514798,0.7901402623503184,0.9167836299720931,0.8624408778037748,0.49421822766685486,0.6145399174819082,1.2624735974447476,0.7686969743313726,1.0862952008919258,0.8616584235619276,0.9961601940448098,0.5198634584827952,0.352194171755211,0.4453166908221949,0.9859117045880731,1.0684919366050325,0.7494263600723332,0.7705802453762813,1.0899969733656172,0.9322251896270997,1.175035954377452,1.0647726989175008,1.1530569724100228,0.7657445566517695,0.6050156768616405,0.7289526297801477,1.0821453023016019,0.8681167296487745,1.1579362075074169,1.0109751904870619,0.9843440457847237,1.0670423407258718,1.0134403455671885,0.8839496390131608,0.8340510012840465,1.147465105502015,1.015528011901999,1.1231410682240999,0.9702467291229776,0.7483157926015856,0.8323620145786366,0.8335985970376975,1.1836173594809898,0.9631573514624348,0.9369239343046302,0.7524633874045913,0.8481405217344364,0.8104950148332617,0.7599658091527605,0.7767837707231473,0.8045426770858999,0.9258520570212493,0.9840189230804787,1.00733081800919,1.1860588563978391,1.1238940837566782,1.1207735583819258,0.9400664312656493,1.0156323929490516,0.9824044048461859,0.8517919419369865,0.9358159826812881,1.075712329213999,0.980506841969375,0.9798367428138096,0.8320644867678948,0.971406952611553,1.056808279485099,0.9897066867791527,0.9906118455206235,0.9496417300834478,1.0015836995409875,0.9946109753448991,0.9351800387714742,1.0580570378795422,0.8560375507006507,0.7373372740012027,0.8391400243673807,1.0559065764125763,0.8369768568991159,0.9540556982339008,0.8603986962286575,0.9524883970672496,0.7469572175422733,0.7097477812003442,0.7398782802252627,0.9575614120811686,6.0,0.15896949290888687,3.1111111111111125,1.7638888888888888,1.4972222222222227,1.1186111111111108,0.7398639455782312,0.49567743764172334,0.42353237591332826,0.2962577160493828,6048.96165434042,6767.199116972786,2873.7704709003565,2623.0102608263123,15.129939894017502,0.47154893860205516,7.995432795880658,0.89232281482156,1.0,0.2608695652173913,1.6052388909297823,3.7495814687705393,4.932547280745566,5.4446118076789585,5.481648844715995,5.481648844715995,0.1875,0.006114211265726418,0.0723514211886305,0.043021680216802166,0.03651761517615177,0.023800236406619383,0.01608399881691807,0.012709677888249317,0.010588309397833204,0.008229381001371744,0.41691653135830264,24.638671875,12.296376419686316,7.2592592592592595,178.69606450685404,1.0,4.312022282231893,181.53308918970615,,141.2493600073863,142.68718422589473,142.53595062432927,141.2620934697082,170.50796571439716,143.41837932787857,143.84503333577237,161.0544059924592,0.03319199221465314,-0.06499395205448497,-0.6447376812949512,0.3180127983396751,0.25595332648765784,-0.04097104351028805,0.03457447530462071,0.07102241172735435,-0.058044993178188294,-0.07561528559141387,-0.07727813330772616,0.03988119460311481,0.0475876369165057,0.21772043000982785,0.15261142726292853,-0.040234918345268045,0.14278791760420514,0.0024368774027094618,0.046649776197894795,0.013279504666376995,0.19852613261976337,0.2552869793808119,0.23534545205471982,-0.01131946011596455,-0.112261921312387,-0.014694086220920156,-0.010292542630125896,-0.031355932203389794,-0.020171955045470782,-0.13613438659731028,-0.10952531712332908,-0.15098237299216233,-0.014216780136010873,0.033293783193205743,-0.03895935484956598,-0.09018728086137108,-0.041027893280082904,-0.158286876033276,-0.1046198234714041,0.05343385428131191,-0.05327158644143673,-0.007786039589387372,-0.042484841725311175,0.022923320150365346,-0.1536745140321835,-0.10349287879334125,-0.15086089646032802,-0.025337814057275136,0.18002128872111667,0.06433996745655918,0.11622441679761104,-0.05480287599578577,0.0495481416832211,0.09364635259263879,0.18103071574073729,0.08557866964438052,0.09242988796882412,-0.0029956954539619995,0.07312530506818525,0.16617317563212966,-0.08445604166443871,-0.0421556914820524,-0.04390547507415851,-0.17124231700502882,-0.14161654238696447,-0.06865742679088319,-0.08929237453405652,-0.12568280754448383,-0.048711383714216454,-0.012736659302194041,-0.024630604264737344,-0.13795515119438584,-0.06673551667295585,-0.07526348617950508,0.010874569088680428,-0.01189899688689034,-0.1104032518849246,-0.01084525348915706,-0.07059687613119382,-0.00632832960429035,-0.09031380667376362,-0.12224337828132864,-0.04603006420573258,-0.07598589382020832,0.06343352874499841,0.03379970970921948,-0.03927931305175034,-0.09142645057528143,0.06972468235087453,-0.001640359612768845,0.06629283956024282,0.010563817151438865,0.04895909019033875,0.025009662653676892,0.0022425462330942962,0.057403286395621964,18.419093733056393,26.07070703108186,6.3756797394637035,17.157469969062515,36.88363427281476,43.30279128261519,44.9293967702085,44.966730103541835,44.966730103541835,60.49571978358482,47.303834364878135,4.340583699336436,6.846009032360204,0.0,13.191885418706676,9024.287239779302,7156.241469226133,2573.3034849121486,114.0,43.0,54.0,67.0,78.0,87.0,97.0,108.0,114.0,424.14567824800065,32.0,5.017279836814924,5.84354441703136,6.70073110954781,7.552237287560802,8.416488487294606,9.278092474027002,10.146708203279516,11.013682502447304,11.885268028242905,0.6913580246913578,0.9842962962962966,1.1170841478139684,0.6545157679534502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6955093368817921,0.9721859114015975,1.0070338000053953,0.6493354064424696,8.0,1.0,0.0,0.0,1.0,0.0,5.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.780154437472765,5.824404497999927,0.0,0.0,0.0,0.0,14.573052889090853,0.0,11.336785877934737,31.54366002800146,41.63945719730763,29.83665137553516,17.454223058158533,284.1168234655491,-767.0176628838045,-51.902472727942076,-14.204030794144533,-40.369350678094975,394.1894945515187,1064.1760004082123,36.23678721048928,19.70696297052245,30.405028583091784,0.5,0.7145147443865568,0.17700928228483806,117.69962116653801,0.12415604189678517,75.1573819490889,0.285485255613443,7.0,0.3125,0.27893488627298374,0.6515473095453104,0.8571057694683423,0.946084837563225,0.9525205910029079,0.9525205910029079,4.744400000000003,,1.9107142857142858,1.48960248380871,1.0561354191587082,1.9074213757920884,-4.941402762685762,1.3688800489596085,1.3458612912595438,-2.0770482935474925,116.97810000000005,19.802129157825057,0.0,9.551078168738563,0.0,39.15178009730723,0.0,81.07059595286161,0.0,0.0,4.174387269895637,0.0,5.4680601411351315,3.044522437723423,6.932447891572509,5.2832037287379885,8.477412321404392,7.260522598089852,10.069213832980386,37.33333333333332,14.20699572937859,4.538972794364659,0.0,0.0,1.531440967796279,0.0,3.7862716912498735,2.016662414965986,53.152000000000015,0.0,22.924500382875586,0.0,0.0,0.0,1.6905924561182497,0.0,-1.6018045869356354,60.3225439819543,0.0,0.0,0.0,31.702743534323673,24.180936835836416,0.0,52.08230029955814,53.54821328291792,0.0,6.076020106833881,0.0,35.34385146948631,37.55750419161677,38.07068914075205,363.0661783794123,,282.76691187227027,285.27506161953556,285.00149222071457,282.79368495291504,342.6213671850139,286.7454999858265,287.6003425854608,322.5242216436279,38.07068914075205,363.0661783794122,,281.11095949131783,283.8847659679807,284.0157658294999,281.14058642722864,346.01241089953305,285.46787860679774,286.3442053802853,324.18586027846607,4.734820907084419,255.75208038712452,,198.71361256443384,200.0113753247305,199.33512281324906,198.73232435991358,240.4271502474817,201.12751185580123,201.8531943732297,227.19493467763965,1.2690229713584018,12.10220594598041,,9.425563729075675,9.509168720651186,9.500049740690486,9.426456165097168,11.420712239500464,9.558183332860883,9.586678086182026,10.750807388120931,2.4154536846291172,181.53308918970615,,141.2493600073863,142.68718422589473,142.53595062432927,141.2620934697082,170.50796571439716,143.41837932787857,143.84503333577237,161.0544059924592,52.49803921568626,0.0,2.113372067772737,0.0,0.0,0.0,18.792460894547595,54.37982520029135,3.6672018545327516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.06411194789336,484.65986543375186,86.68290011020825,202.4773993136091,266.3575531602606,294.0090376146638,296.0090376146637,296.0090376146637,824.0,137.85403234624624,193.646452583316,80.70977022153932,120.66,92.42,1.0,8.633842251031417,6.0,4.397075112688784,5.378418889149505,,5.372824392362195,5.369076703985599,5.3662524487473835,5.372830673350687,5.373998605428677,5.369859598715893,5.370763380562132,5.377821768326076,0.14656917042295944,0.17928062963831684,,0.17909414641207316,0.17896922346618666,0.17887508162491278,0.17909435577835622,0.17913328684762259,0.17899531995719642,0.17902544601873774,0.1792607256108692,2.5795518614338118,2.7810067328734367,,2.7799660165310067,2.779268246463113,2.7787420855484,2.779967185559503,2.780184539357966,2.7794140513565613,2.7795823436148623,2.7808957050816536,319.14000000000095,317.6252837965953,191.04123702402978,,191.56177906680588,192.0113561135662,192.46269193183733,191.56147530877237,191.79385557192424,191.93502560152504,191.83057557933878,191.23089867673005,10.58750945988651,6.368041234134326,,6.385392635560196,6.400378537118873,6.415423064394577,6.385382510292413,6.393128519064141,6.3978341867175015,6.394352519311293,6.374363289224335,6.859484623803813,6.3511015940609195,,6.353822651355634,6.356166805371634,6.358514615466423,6.3538210656621015,6.355033415004319,6.355769195097482,6.355224852277574,6.352093880186691,2.016662414965986,28.45438168934995,20.72568968319624,2.2079494364775067,-1.0143908442729752,10.557523501996425,6.5773303766205995,2.6100794405366567,0.0,385.8936062515327,192.7182364116219,-520.2729267647701,-35.205775172071675,-9.634683828977227,-27.38278561919843,267.3812246502497,721.8373045590242,24.579641709514963,13.367357491833783,20.623922987400697,2615.0,41.0,1.8776643872851508,0.868836847937442,0.0,0.0,0.4694160968212876,0.08520072913348936,0.0,0.0,0.0,0.0,0.0,0.0,0.24056261216234406,0.14671864365723922,0.38951955118123055,0.16860260682416406,0.43698116249194063,0.146174690682478,21.509860921691395,17.561782162958522,14.473565548236333,10.68424290551158,12.79010107566544,8.05418055013811,10.146569335526562,5.6825830580957675,7.92261867196417,3.8921506688950003,5.985360298356563,2.432157827271233,4.429053630178644,1.4952794372806077,3.1579846668423897,0.928524336708587,4.192078973134454,1.6295064801031314,5.537696366043668,2.063391526522154,7.732898368422274,2.366650607926787,97.92490249156997,48.273747076054036,29.64367587062316,25.0818169077235,24.942747000235965,24.942747000235965,150.0,172.0,62.72103199999998,31.122968,0.37037037037037035,154.07,10.0,6.777777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,16.0,16.0,54.0,0.0,0.0,56.0,16.0,3.0,10.0,46.0,19.0,32.0,37.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,5.0,2.0,2.0,30.0,7.0,0.0,2.0,4.0,0.0,3.0,10.0,1.0,0.0,0.0,2.0,3.0,3.784189633918261,7.411575169808124,4.343805421853684,4.867534450455582,5.383347615732612,5.739591927352912,6.062039499777585,6.432035342740292,6.782050322607079,7.115048880866281 +135398513,Nc1nc2c(ncn2COCCO)c(=O)[nH]1,0,27.25925925925926,6.930166666666667,3.3703703703703702,10.444444444444445,172.62974786830515,107.9323674074074,1.3030205167903335,6.924770370370371,6.457818930041152,8.344094814814817,207.2518370272725,28.25,7.034357142857144,4.0,9.214285714285714,160.01089807626252,108.10938803571425,1.5222876805714283,7.107767857142858,4.028769841269842,8.378409285714287,244.20146409974268,24.630434782608695,7.07207608695652,3.6956521739130435,8.326086956521738,168.78636303239554,92.76603858695653,1.3319884244651305,7.091939130434784,4.13768115942029,8.467484260869565,208.1255079627802,21.923076923076923,6.88766923076923,3.1153846153846154,7.3076923076923075,168.74728289575472,81.33440626923074,1.212438292097962,6.910199999999998,4.308226495726497,8.33268523076923,185.72134932507666,20.07843137254902,6.756996078431372,2.823529411764706,6.294117647058823,172.5272625137253,74.20194256862743,1.1154410811860782,6.764072549019607,4.26797385620915,8.223806352941176,166.49345199736626,17.547619047619047,6.641164285714286,2.7142857142857144,3.9285714285714284,168.16726880895587,62.135274785714294,1.1453491830808573,6.670254761904764,3.6765873015873014,8.142832476190476,164.73990554145652,15.634146341463415,6.633853658536586,2.341463414634146,3.8292682926829267,173.1661174467426,53.89776863414636,1.0386288735669515,6.639421951219514,3.9613821138211396,8.15162556097561,144.71259983343424,14.176470588235293,6.384,2.2058823529411766,3.2941176470588234,173.20302214222033,49.57440870588237,0.9447742550732353,6.3903588235294135,3.6299019607843137,7.975228235294119,131.11997156398937,15.227272727272727,6.652909090909091,2.1818181818181817,3.0,170.61181851193405,51.264054954545465,1.0234253253113186,6.6729090909090925,3.958333333333334,8.178092909090912,144.77319338824225,8.15912208504801,0.19902469135802459,0.041735941238489775,0.5925925925925926,4.8257887517146765,1.5143545778443392,38.35946855418381,0.18093360852870233,0.18016899862825783,2.283112330437433,0.12376869135802462,41.044712155754496,-0.09959827552420109,-0.0508441358024691,-0.027041883367263094,0.23015873015873026,0.8646874387615131,-0.8743493194430011,-0.30084666661767556,-0.03163628286631735,-0.0389963795806389,-0.4436796437825244,-0.03521928924162254,-0.8999093698656978,0.026868253116240633,-0.00768652710681698,0.008464282800947307,0.09661835748792268,0.18628854297131295,0.4292206220700176,0.28437405853760406,0.03532437040618737,-0.008489771575117802,-0.13436031755498568,-0.008125557702630149,4.653887136482701,-0.0750765010024269,-0.010503964862298194,-0.009196229114407742,0.027777777777777766,0.3907354648095389,-0.31837344057196704,-0.3233957778305366,-0.011763793151948757,-0.008110594069853348,-0.10247763591384992,-0.006981329534662856,-1.3867536470282098,1.216331800209796,0.03925025417574436,0.009253047765750439,-0.11764705882352941,0.3862664407326718,0.17894564370154306,5.609324547486485,0.0035704628781829217,0.03514392802388445,0.41006123528515187,0.022219517792302097,2.6519720213717037,-1.9571820497746417,-0.037265167548500865,-0.006055626783680947,-0.22222222222222224,-1.740250832843426,-0.22718395542556338,-9.227747426317853,-0.03732237665414941,-0.0353223495982755,-0.45127321619091165,-0.02210834215167548,-10.07522715311486,-1.9341898357255172,-0.007150707618187265,0.002132490032143783,-0.08401084010840108,-0.9585800796279569,0.10142502486569617,-9.30114630847469,-0.029178486171602073,-0.01035355147378632,-0.12811383600804457,0.004243716952725077,-10.037177399071213,0.8844508997014444,0.008619099491648508,0.0016625983561491873,-0.1143790849673202,-0.4292745904946343,0.005968085380444297,4.209779785685468,0.01245228771808633,0.009229476317275904,0.10250858459524648,0.0021108031953521963,4.428212894950874,-3.814004239930166,-0.07875701459034788,-0.013634913854750796,-0.2676767676767677,-2.0480109739368997,-0.4739404747143246,-18.05572010468886,-0.09450573276392288,-0.07173600199526124,-0.891137021795458,-0.04524512906846238,-20.83289735569673,,,0.43749999999999994,1.28125,0.53125,0.0625,0.75,-0.21875,0.5847549502398327,0.012166763097515909,0.022916763097515908,0.8457796849319797,0.2702502311330506,0.21222135341775195,1.4305346351718125,0.4824715845508025,2.0111362592730004,1.0383957761937248,0.6305632941273218,0.34217718895195365,0.0,0.9727404830792755,8.33652552637037,736.0,187.1145,91.0,282.0,4661.003192444239,2914.1739199999997,35.181553953339005,186.96880000000002,174.36111111111111,225.29056000000003,5595.799599736358,791.0,196.96200000000002,112.0,258.0,4480.305146135351,3027.062864999999,42.62405505599999,199.0175,112.80555555555557,234.59546000000003,6837.640994792795,1133.0,325.31549999999993,170.0,383.0,7764.172699490196,4267.2377750000005,61.271467525396005,326.22920000000005,190.33333333333334,389.504276,9573.773366287889,1140.0,358.1588,162.0,380.0,8774.858710579245,4229.389125999998,63.04679118909402,359.3303999999999,224.02777777777783,433.2996319999999,9657.510164903986,1024.0,344.60679999999996,144.0,321.0,8798.89038819999,3784.299070999999,56.88749514048999,344.9677,217.66666666666669,419.41412399999996,8491.166051865679,737.0,278.9289,114.0,165.0,7063.025289976146,2609.6815410000004,48.10466568939601,280.1507000000001,154.41666666666666,341.998964,6919.0760327411745,641.0,271.98800000000006,96.0,157.0,7099.810815316446,2209.8085140000007,42.58378381624501,272.2163000000001,162.4166666666667,334.216648,5933.216593170804,482.0,217.056,75.0,112.0,5888.902752835491,1685.5298960000005,32.12232467249,217.27220000000005,123.41666666666667,271.15776000000005,4458.079033175639,335.0,146.364,48.0,66.0,3753.460007262549,1127.8092090000002,22.515357156849007,146.80400000000003,87.08333333333334,179.91804400000007,3185.0102545413292,220.29629629629625,5.373666666666664,1.126870413439224,16.0,130.29629629629628,40.88757360179716,1035.7056509629629,4.885207430274963,4.864562962962961,61.64403292181069,3.341754666666665,1108.2072282053714,-2.7887517146776304,-1.4236358024691347,-0.7571727342833666,6.444444444444447,24.211248285322366,-24.48178094440403,-8.423706665294915,-0.8858159202568858,-1.0918986282578893,-12.423030025910682,-0.9861400987654312,-25.197462356239537,1.235939643347069,-0.3535802469135811,0.3893570088435761,4.444444444444443,8.569272976680395,19.74414861522081,13.081206692729786,1.624921038684619,-0.3905294924554189,-6.180574607529341,-0.3737756543209868,214.07880827820424,-3.903978052126199,-0.5462061728395061,-0.4782039139492026,1.4444444444444438,20.318244170096023,-16.555418909742286,-16.816580447187903,-0.6117172439013354,-0.42175089163237406,-5.328837067520196,-0.36302913580246854,-72.11118964546691,62.0329218106996,2.0017629629629625,0.4719054360532724,-6.0,19.699588477366262,9.126227828778696,286.0755519218107,0.182093606787329,1.7923403292181068,20.913122999542747,1.1331954074074069,135.2505730899569,-82.20164609053495,-1.5651370370370363,-0.2543363249145998,-9.333333333333334,-73.0905349794239,-9.541726127873662,-387.5653919053498,-1.5675398194742753,-1.4835386831275712,-18.95347508001829,-0.9285503703703702,-423.1595404308241,-79.3017832647462,-0.2931790123456779,0.08743209131789512,-3.444444444444444,-39.301783264746234,4.158426019493543,-381.3469986474623,-1.196317933035685,-0.4244956104252391,-5.252667276329827,0.17399239506172814,-411.52427336191977,30.07133058984911,0.2930493827160493,0.05652834410907237,-3.888888888888887,-14.595336076817565,0.2029149029351061,143.1325127133059,0.4233777824149352,0.31380219478738075,3.48529187623838,0.07176730864197467,150.5592384283297,-83.90809327846365,-1.7326543209876533,-0.2999681048045175,-5.888888888888888,-45.05624142661179,-10.426690443715142,-397.22584230315493,-2.079126120806303,-1.5781920438957473,-19.605014479500074,-0.9953928395061723,-458.32374182532806,0.721475349715032,0.5238357403041534,0.45409090310663763,0.2713782383261344,0.2919470079089099,0.1347257867899495,0.1794763836649695,0.06530343074624441,0.11608150263084191,0.03231775386558278,0.07324649517632849,0.016735155836441834,0.05127187216781573,0.008540207179824243,0.0334475844153365,0.004577318926901295,8.022481718954506,5.758957496310766,3.5458999648442604,2.2410177247620213,0.5031964717935844,-0.40989894777831604,3.269472646741946,0.9777664354368597,6.022184773198313,1.8968588166026692,14.565400905375489,11.03610929471253,16.01048725407239,11.783643662690052,1.9393615575547585,0.7487457995192824,3.491812765041583,2.285772572040688,7.008279647793337,1.396223181392351,3.7043617883634994,2.47922186222873,20.800141434292335,14.702397102451846,0.37010138353187483,0.771239259643876,0.8620886115438051,0.8917182411734347,0.8917182411734347,0.8917182411734347,1.8692192233646858,546.0876253223264,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,2.9043805845040938,0.8986912039440886,0.44444444444444287,0.29629629629629495,0.29629629629629495,0.29629629629629495,131.85691874454687,1007.5660944487258,77.53995886681206,37.31726275736022,78.06791282695335,,9.0,239.0,0.0,4.794537184071822,36.96888757018009,5.647177220767728,0.0,10.894419722555895,0.0,0.0,14.951935562841626,15.57705782580294,6.999999999999999,20.5,8.5,1.0,12.0,0.0,0.06250000000000006,-3.5,0.25716586151368737,0.027330779054916876,-0.2298350824587705,0.13374999999999992,0.26238709677419353,0.0,0.6962962962962964,0.9687499999999999,0.43913043478260905,0.6689655172413795,0.835,9.356079203837323,0.19466820956025455,0.36666820956025453,13.532474958911676,4.324003698128809,3.395541654684031,22.888554162749,7.71954535281284,0.45161290322580644,0.1523809523809524,0.0,0.34285714285714286,0.375,0.34338320244971465,-0.8218981511010914,-0.10190908668223254,-0.03044067226300339,-0.10273726888763643,0.6566167975502855,1.5716322989547795,0.08229148702339557,0.05820860366499184,0.08271748941867259,-1.125608751260304,0.7545033144394276,1.02295209442874,1.680305386898382,0.6964285714285714,0.5665658247380818,1.933886215784582,0.7542622013539015,1.3199934738437533,0.9621837782890282,0.8885339726197233,1.0678471766073052,0.9831270433823173,0.8749086284026785,0.9977589317741103,0.8527178526595566,0.9891304347826088,0.9304879254517142,0.8615647581667257,0.870289019321805,0.8087736584538054,0.9903695879921094,0.7901940623199533,1.042755157283682,0.8052505879862313,0.922621049092132,1.0046817815272004,1.1648609053035028,0.9218749999999999,0.8845224559408755,1.2630809638909222,0.9217815226868356,1.056886042770019,0.9889634560449266,0.9497855402383258,1.0203058991763212,0.9775637809133302,0.8180604454290125,0.7465997949331709,0.6955706156956256,1.1948529411764706,0.9429488680065546,0.8500422697999118,0.8214145872933544,0.9193243298379977,0.7507157270597408,0.6392118247879945,0.7455186393565885,0.8921466091559722,1.1647732731290232,1.097904242026815,1.0607306774509608,1.4315476190476188,1.2780394704783564,1.157443675659559,1.1667280826227104,1.2216281783098404,1.1054396856044753,1.219023141150048,1.0961189080478508,1.2289261241836482,1.2118933193366905,0.977264316654084,0.8184089059297477,0.9115853658536586,1.1437346607690069,0.8556673183713268,1.2177272200823714,1.0839047258960661,1.0035664523804255,0.9677140058893496,0.888350539489716,1.199990934121438,0.9580679615491121,0.9625019612708305,0.8426748549195301,1.099264705882353,1.1268434605223558,0.7618565932557414,0.9565441741745049,0.8773353390549167,0.9696995890066904,0.8571641046685372,0.9867599437956418,0.9166359502637823,1.4162743779421658,1.3515877088608308,1.3616243089930418,1.3664772727272727,1.3015788929660448,1.258791734721264,1.4192197070459145,1.4665097356397376,1.3538439405659788,1.7305082097047788,1.325247168281327,1.4522948576502974,3.0,0.0,1.7777777777777786,1.1944444444444444,0.9294444444444447,0.36138888888888887,0.19759637188208612,0.14671910430839002,0.08213655832703451,0.015625,3038.9597340382998,3324.543583004821,1668.6105547648256,1546.6672920923759,10.004082768244363,0.4277082156606999,5.725254378116611,0.747360397903459,0.0,0.375,1.8505069176593743,3.8561962982193796,4.310443057719025,4.458591205867173,4.458591205867173,4.458591205867173,0.1764705882352941,0.0,0.07729468599033822,0.05429292929292929,0.04891812865497076,0.0277991452991453,0.019759637188208612,0.018339888038548753,0.0164273116654069,0.005208333333333333,0.4445106476981753,12.456747404844291,5.55765595463138,2.831111111111111,89.69516162363053,1.0,3.694167518019902,59.16836848727395,,41.313257989301576,39.73117004634364,40.571042471988996,41.33332273447371,77.42770286400955,40.73912227149801,41.39881384405055,62.13276094602321,-0.012206984340474547,-0.2554664723032069,-0.6479279624422245,0.3883928571428573,0.17918054089174054,-0.5773742373385394,-0.007842826763689944,-0.17485022889652227,-0.2164433386295276,-0.1943310619751756,-0.2845573372004396,-0.021925098815427552,0.003293032367474685,-0.03862097237467748,0.20280560470842726,0.1630434782608695,0.038602713992634215,0.2834346911547008,0.007413399331534477,0.19523387994875316,-0.047121156468404,-0.05884963072721126,-0.06565115631000265,0.11338579056961964,-0.009201541565361335,-0.05277719458136307,-0.22034315847480593,0.04687499999999998,0.08096820746053267,-0.21023705097201664,-0.008430663667139472,-0.06501718087429077,-0.04501659070985854,-0.04488506086523378,-0.05640626444427715,-0.033786414234453,0.1490763083982753,0.19721298853888064,0.22170454268363501,-0.19852941176470587,0.08004213624051103,0.1181662777790585,0.14623050732736714,0.019733552584380823,0.19506090554677952,0.17960624618350957,0.17952454331142512,0.0646117826654047,-0.23987654914016715,-0.18723891640894308,-0.14509381132864732,-0.375,-0.36061479736863494,-0.15002031806114807,-0.2405598350061447,-0.20627663902601487,-0.19605120674037826,-0.19765703604449894,-0.17862628996959232,-0.24546955317610397,-0.23705857267046104,-0.035928746174131186,0.0510948110636392,-0.14176829268292682,-0.19863697499965338,0.0669757442210616,-0.24247328388652112,-0.1612662589823568,-0.05746577686846544,-0.056113680566693185,0.03428748341896347,-0.2445425213601844,0.1084002531745718,0.043306684375878014,0.03983612940819227,-0.19301470588235284,-0.0889542855231917,0.003941009237704274,0.10974551901674649,0.06882241402990073,0.05122677257211745,0.04489861634429802,0.017054419596683735,0.10788753684389123,-0.4674527725132972,-0.3957147932397606,-0.3266947731413899,-0.45170454545454547,-0.42438885730528714,-0.31296532638278923,-0.47069786900683086,-0.5223227101499553,-0.39815951990316567,-0.39031676624720457,-0.36556198964390907,-0.507565926559335,2.406851949670727,3.9683488101974556,3.5327755290014426,18.723216575082603,36.976886102988445,39.212692762490015,39.362026095823346,39.362026095823346,39.362026095823346,32.17818014836801,16.614332419099597,10.089012706037149,5.474835023231258,0.0,15.563847729268408,2202.661859881334,1844.5141282778602,470.6530362099586,20.0,23.0,30.0,40.0,46.0,48.0,45.0,44.0,32.0,225.086189212,17.0,4.394449154672439,5.231108616854587,6.1070228877422545,6.974478911025045,7.8636512654486515,8.744009988096744,9.638544967053836,10.525004458144746,11.421785577396818,0.7283950617283951,1.0377777777777777,1.1617015762687726,0.694449840732415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6343030161898427,1.0184458968772696,1.0441045561220361,0.6264543727525612,1.0,2.0,1.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15.57705782580294,6.730816747499484,11.16387793838399,5.948339280986494,5.559266895052007,14.345615352810384,4.9839785209472085,4.9839785209472085,0.0,0.0,0.0,0.0,19.541084003790377,144.54851501198954,-345.981272191555,-42.899032454279784,-12.814121192279815,-43.24765902394437,276.4054337565364,661.5848222571708,34.640926412532274,24.5031415650804,34.82025380300898,0.4444444444444444,0.5838537862128232,0.16460148812853312,133.7027264940759,0.11697604773077572,81.99200306312308,0.41614621378717687,5.0,0.23529411764705882,0.38917995784703546,0.8109963267195732,0.9065289253968214,0.9376859502645477,0.9376859502645477,0.9376859502645477,-1.3318000000000003,,1.4642857142857144,1.7854816193578409,1.6456504849231428,1.460297629707019,-5.837791883926546,1.5820838433292534,1.44679936621724,-2.793606575391221,55.59890000000001,9.843390348640755,0.0,19.51903521063298,0.0,6.730816747499484,18.94743140618802,16.68112415388837,0.0,0.0,3.5553480614894135,0.0,4.844187086458591,2.3978952727983707,6.333279628139691,4.727387818712341,7.931284761525891,6.842683282238422,9.592536853144992,19.666666666666668,1.4342469765684052,7.852057823129252,2.3482106638951876,0.0,0.0,0.5703595049130767,0.029081658898127527,1.538287037037037,28.02,0.0,11.410637676366843,0.0,0.0,0.0,0.0,0.0,0.0,31.365942559256858,11.29293437221419,5.948339280986494,0.0,37.83932653449953,11.467679701299534,0.0,0.0,11.121857258836364,0.0,11.16387793838399,0.0,18.750145699775207,17.126181437125755,20.03843323951444,118.3367369745479,,82.44348026431743,79.23915489026756,80.9363786333626,82.48410826523404,156.01832757108366,81.28048406257987,82.61677776732395,124.76107081727963,20.03843323951444,118.3367369745479,,81.16421085502103,77.69772295489565,79.54845669151022,81.20823036495216,160.69319761194564,79.90444000470859,81.3521164051335,127.05912846743769,4.783924883524838,87.80430518619353,,62.35923604143541,59.91961090670226,61.61714335306766,62.39129381383674,120.62880466618384,61.490504820128365,62.489534906155185,95.2779186851202,1.2524020774696525,7.396046060909244,,5.152717516519839,4.952447180641722,5.058523664585162,5.155256766577128,9.751145473192729,5.080030253911242,5.163548610457747,7.797566926079977,2.4488773532412917,59.16836848727395,,41.313257989301576,39.73117004634364,40.571042471988996,41.33332273447371,77.42770286400955,40.73912227149801,41.39881384405055,62.13276094602321,27.49803921568628,0.0,0.0,0.0,0.0,5.419019668052406,8.555883356428993,28.190823015294978,0.2996825396825398,0.0,5.094932917611489,0.0,0.0,0.0,0.0,0.0,0.0,16.914268064319153,245.77555680974268,49.96368677680311,104.11730005192325,116.38196255841369,120.38196255841368,120.38196255841368,120.38196255841368,361.0,103.90005582643512,175.17839195878327,62.22460276450772,119.04999999999998,119.04999999999998,0.8,8.019321068052932,5.087462841250339,3.4142121071883498,3.927738348747731,,3.9099836969260373,3.9092606019936094,3.902684957737955,3.909972670710895,3.896801431971026,3.9094349573610527,3.9100488076618083,3.9061571552740695,0.21338825669927186,0.24548364679673318,,0.24437398105787733,0.24432878762460059,0.2439178098586222,0.24437329191943094,0.24355008949818913,0.2443396848350658,0.24437805047886302,0.24413482220462934,1.6979503803314164,1.8380674056933548,,1.8335368336501836,1.8333518810110674,1.8316683962099025,1.8335340136305762,1.8301597002294387,1.8333964806162444,1.833553485943057,1.8325576952160028,152.16999999999987,164.5874453393168,74.54523658396425,,75.24322377167138,75.25609967926762,75.55717005474067,75.24396740885875,76.05329356839913,75.26101694962462,75.24130589242685,75.5778766432364,10.2867153337073,4.659077286497766,,4.702701485729461,4.703506229954226,4.722323128421292,4.702747963053672,4.753330848024945,4.703813559351539,4.702581618276678,4.723617290202275,5.5734456408210065,4.781409772827739,,4.7907294792741215,4.790900588450328,4.794893218222936,4.790739362337013,4.801437954947518,4.79096592680478,4.790703989886622,4.795167232610435,6.633219954648526,21.610906163391284,8.555883356428993,5.603646017048795,0.029081658898127527,0.0,1.4342469765684052,0.2996825396825398,0.0,171.22007089522012,60.84826818292354,-145.64218272899325,-18.05851710997822,-5.394154915888639,-18.205272841124156,116.3539588008912,278.4967433744794,14.582234762355387,10.314694199054793,14.657723335498911,453.0,22.0,0.963209588632904,0.3127695510997956,0.0,0.0,0.21982198216447035,0.04300364102538306,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.24719387459906544,0.061731540599665534,0.49138527681617994,0.07996178786074322,11.543605595440512,8.381371844866454,7.7195453528128395,4.6134300515442845,6.714781181904927,3.0986930961688386,5.384291509949086,1.9591029223873324,4.643260105233677,1.292710154623311,3.3693387781111106,0.7698171684763243,2.461049864055155,0.4099299446315637,1.5051412986901422,0.20597935171055828,2.171079255507216,0.5725945526110191,3.7760286152970317,0.7465117143368383,5.530379117470853,0.8484577269838287,54.98627626350385,25.798386587295273,22.116849084811292,21.596882417503597,21.596882417503597,21.596882417503597,80.0,93.0,28.60072299999998,17.629277,0.3333333333333333,49.08,5.555555555555555,3.6666666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,27.0,0.0,0.0,28.0,10.0,1.0,4.0,24.0,11.0,17.0,17.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,7.0,3.0,2.0,16.0,8.0,0.0,5.0,3.0,0.0,2.0,4.0,0.0,0.0,0.0,2.0,2.0,3.1780538303479458,5.743090824193661,3.834061463958434,4.49003987873446,5.160132305242167,5.628969125577532,5.998122024345649,6.217712649313135,6.5050539263060765,6.283033100368419 +2578,O=NN(CCCl)C(=O)NCCCl,0,49.61904761904762,6.838214285714287,2.619047619047619,8.152851263962376,173.29391734938292,206.87592047619057,1.5412963877924284,7.02074761904762,6.74521341839586,8.553730761904765,217.52400947833172,32.6,6.851194999999999,3.3,7.205555555555554,159.26959145587503,126.82471204999997,1.6640183389999996,7.0084100000000005,3.7976851851851854,8.318746400000002,241.77139289247467,24.147058823529413,6.626173529411765,2.6176470588235294,5.032679738562091,169.76759135454574,88.4145952352941,1.3448770258645886,6.787158823529412,3.215777051561365,8.284037058823529,179.61662979560765,22.45,6.596327500000001,2.3,4.025,175.82171470396503,82.596990875,1.12079299111225,6.722575000000001,3.5380401234567906,8.2956064,156.75122575806492,27.12121212121212,7.219457575757576,2.242424242424242,4.185185185185185,174.1839254159875,101.44123863636364,1.2053331550211515,7.302851515151516,5.804090285571768,8.847636787878786,178.07908592870362,32.3448275862069,7.159317241379311,1.896551724137931,1.7586206896551724,175.68628594066715,124.26521055172417,1.1515992090240685,7.316793103448277,4.390166028097063,8.937008344827587,168.7438495307479,21.166666666666668,6.083837500000001,1.7083333333333333,0.9583333333333334,168.21358372165352,78.488956,1.2238983842122497,6.2658708333333335,2.50707304526749,7.896555083333333,148.66376700098505,21.714285714285715,5.956142857142858,1.2857142857142858,0.37037037037037035,173.151948187512,78.59474752380952,1.139267210037714,6.242400000000001,2.2304526748971196,8.046272666666667,125.07210549086274,40.111111111111114,5.8081000000000005,1.0,0.06721536351165981,179.243149501584,155.9667951111111,1.371698508821778,6.350400000000001,1.2437297837389285,8.330920111111112,125.43893248486218,22.18140589569161,0.18427120181405882,0.02025246052829018,0.4399092970521541,4.6049102768679475,1.2330477200051055,102.98546669841274,0.2767279172056509,0.19372517006802714,2.959775364700571,0.14428313378684807,47.04772426980725,0.06145124716553293,0.02454665532879813,-0.01714816066910348,0.09104308390022668,1.8482643263066545,-0.38762210407222436,0.2411353277777751,-0.023031885862672075,0.01733744897959177,0.36571291017041885,0.008503132879818583,-5.758455309981157,-4.3396692010137405,0.03426185140722956,0.007219462162052134,-0.022542350273442736,1.3416955259470043,-0.13253619959738394,-20.306782830065366,-0.05379351709018298,0.011954381752701101,0.3494405179640316,0.006579773776177124,-10.176791489239834,-0.9218820861678015,0.002481179138322001,-0.0016388124016614495,-0.06014739229024944,0.19551594300271552,0.0037606728090639916,-4.184477330555554,-0.026287764530397262,0.0019331632653061391,0.04001284085752371,-0.007387105215419512,3.261538002376613,-2.742733457019171,-0.06071795506081231,-0.00297511980656396,-0.14120799835085548,-2.1478351160890843,-0.11480789086170363,-12.488991808080813,0.018758121383191894,-0.06269097093382825,-0.2495743056197691,-0.04409889713461138,-3.74749769451036,1.2603018218781767,-0.07880962545937925,0.0020878318588842663,-0.04746266322621001,-3.3897427283670667,0.15379513443747989,5.46382269731801,-0.013649449959107317,-0.04219676284306841,-1.5342749641398625,-0.007474092735944902,-4.5196343537835615,1.4614512471655328,-0.001842630385487387,-0.0003146121589262286,-0.04903628117913831,-0.3684072394389853,-0.046832709327660475,6.912228416666671,0.014227188582708323,0.0035676870748301477,-0.18338172793885124,0.001046528911564592,-0.5518071764943766,-1.9818594104308391,0.01832471655328814,-0.00026493383434463225,0.09070294784580504,0.739117045995353,-0.04985777685865058,-8.952978666666668,-0.007083349236428611,0.012602040816326734,-0.04515663400959632,0.0015225850340135779,3.5081630181577115,1.1995464852607713,0.028738321995465037,0.00012769915957131794,0.22675736961451254,2.638475966518295,0.07342719255379887,5.271615999999998,0.0021776222250000365,0.008622448979591996,0.6895540058222139,0.0001841836734693821,3.4473512154283643,,,0.482936507936508,0.875,0.25,0.0,0.625,-0.375,0.7155990963174603,0.013122062074908625,0.013122062074908625,0.5852007963827853,0.1919265110730437,0.28780255704980556,1.3007998927002455,0.47972906812284927,1.8739775432221535,0.8045094446392441,0.4955090159239484,0.28939144500692543,0.28456763765203547,1.0694680985829093,10.143199137523808,1042.0,143.60250000000002,55.0,171.20987654320987,3639.1722643370413,4344.394330000002,32.367224143640996,147.43570000000003,141.64948178631306,179.62834600000005,4568.004199044966,652.0,137.02389999999997,66.0,144.1111111111111,3185.3918291175005,2536.4942409999994,33.280366779999994,140.1682,75.95370370370371,166.37492800000004,4835.427857849493,821.0,225.2899,89.0,171.11111111111111,5772.0981060545555,3006.0962379999996,45.72581887939601,230.7634,109.33641975308642,281.65726,6106.96541305066,898.0,263.85310000000004,92.0,161.0,7032.868588158601,3303.8796350000002,44.83171964449,268.903,141.52160493827162,331.824256,6270.049030322597,895.0,238.24210000000002,74.0,138.11111111111111,5748.069538727587,3347.560875,39.775994115698,240.9941,191.53497942386835,291.97201399999994,5876.609835647219,938.0,207.6202,55.0,51.0,5094.902292279347,3603.6911060000007,33.39637706169799,212.18700000000004,127.31481481481482,259.173242,4893.571636391689,508.0,146.01210000000003,41.0,23.0,4037.1260093196847,1883.734944,29.373561221093993,150.3809,60.16975308641975,189.517322,3567.930408023641,456.0,125.07900000000001,27.0,7.777777777777778,3636.1909119377524,1650.4896979999999,23.924611410791993,131.09040000000002,46.83950617283951,168.97172600000002,2626.5142153081174,361.0,52.27290000000001,9.0,0.6049382716049383,1613.188345514256,1403.701156,12.345286579396001,57.15360000000001,11.193568053650356,74.97828100000001,1128.9503923637596,465.80952380952385,3.869695238095235,0.4253016710940937,9.238095238095235,96.7031158142269,25.894002120107217,2162.6948006666676,5.811286261318669,4.06822857142857,62.155282658712,3.0299458095238094,988.0022096659521,1.2290249433106586,0.4909331065759626,-0.3429632133820696,1.8208616780045337,36.96528652613309,-7.752442081444487,4.822706555555502,-0.4606377172534415,0.3467489795918354,7.314258203408377,0.17006265759637165,-115.16910619962314,-147.54875283446717,1.164902947845805,0.24546171350977256,-0.7664399092970531,45.61764788219814,-4.506230786311054,-690.4306162222224,-1.8289795810662213,0.40644897959183746,11.880977610777073,0.2237123083900222,-346.01091063415436,-36.87528344671206,0.09924716553288004,-0.06555249606645798,-2.405895691609978,7.820637720108621,0.15042691236255967,-167.37909322222214,-1.0515105812158905,0.07732653061224556,1.6005136343009485,-0.2954842086167805,130.46152009506451,-90.51020408163264,-2.0036925170068063,-0.09817895361661069,-4.659863945578231,-70.87855883093978,-3.78866039843622,-412.13672966666684,0.6190180056453325,-2.0688020408163323,-8.23595208545238,-1.4552636054421757,-123.66742391884188,36.54875283446712,-2.2854791383219983,0.060547123907643725,-1.3764172335600904,-98.30253912264493,4.460058898686917,158.45085822222228,-0.3958340488141122,-1.223706122448984,-44.49397396005601,-0.21674868934240216,-131.06939625972328,35.074829931972786,-0.04422312925169729,-0.007550691814229486,-1.1768707482993195,-8.841773746535647,-1.1239850238638514,165.8934820000001,0.34145252598499976,0.08562448979592355,-4.40116147053243,0.02511669387755021,-13.243372235865039,-41.61904761904762,0.38481904761905095,-0.005563610521237277,1.9047619047619058,15.521457965902414,-1.0470133140316622,-188.01255200000003,-0.14875033396500084,0.2646428571428614,-0.9482893142015227,0.031974285714285136,73.67142338131194,10.795918367346943,0.2586448979591853,0.0011492924361418615,2.0408163265306127,23.746283698664655,0.6608447329841898,47.44454399999998,0.01959860002500033,0.07760204081632796,6.2059860523999255,0.001657653061224439,31.026160938855277,0.7831117687915449,0.650594811227433,0.5233408015885629,0.3939685215365113,0.33970962415211,0.21421786448510682,0.23089234866883002,0.10446462339662405,0.16863361350952277,0.06329484065544254,0.13094092752486705,0.04457483495759069,0.07845177968644246,0.031229307631223103,0.06706148784369709,0.024986440117265214,17.00212209908777,5.893698488864429,3.5889153615274294,2.376064466724428,0.44125289537654744,-0.3354021974838291,3.1245376495070563,0.9574622411071687,6.042848182446533,0.7670707306117727,14.660259292419656,11.155450644899133,35.451526497416445,11.908114790386591,2.2051652059033495,0.6880322869964866,3.533928752064604,2.4277923213645174,7.011391660048816,1.276949351399886,3.738519097487093,2.623076134624025,22.456901142349967,14.662595598081657,0.4628479334368421,0.6646017357505721,0.7713845091875128,0.8354541732496772,0.8995238373118417,0.8995238373118417,3.602410300439218,155.62875863456514,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,2.328278713789576,1.4285714285714297,0.9523809523809534,0.6666666666666679,0.3809523809523814,0.3809523809523814,-26.56357591548047,429.5116376737326,40.27161581556823,20.4529351273206,51.614925137332975,,8.0,129.0,6.031114512338072,9.701602428060104,12.424759850882914,17.433672374837446,0.0,0.0,0.0,0.0,10.60267332496904,23.20187978046503,5.795238095238096,10.5,3.0,0.0,7.5,0.0,0.017063492063492003,-4.5,0.2977204917054539,0.0,-0.2977204917054539,0.05708180708180699,0.2505575019040364,0.0,0.7240362811791385,1.042063492063492,0.42631578947368465,0.7240362811791385,0.9849816849816849,8.587189155809524,0.1574647448989035,0.1574647448989035,7.0224095565934235,2.3031181328765244,3.453630684597667,15.609598712402947,5.756748817474191,0.46344249809596355,0.36154478225143794,0.0,0.1552999178307313,0.8,0.5350452454222189,-0.6063704207983555,-0.07609110741786948,-0.02887478194277884,-0.10106173679972592,0.4649547545777812,0.5269363901421883,0.030169334647343483,0.02509220905438992,0.03512909267614589,-2.027498209616752,0.522745859742384,0.5399908446093947,1.9506466494556651,1.0283505154639179,0.3618686623057657,1.9253475177290993,0.5252899730233811,0.9379240751054806,0.5336843694693374,0.416679224345873,0.5699596984777127,1.033882289917018,1.052563532057681,0.5766756000733126,0.7655871034663303,1.241661613098848,0.5395756775584295,1.260581534599552,1.055080101320065,1.1165043521138582,0.7170630704173684,0.4048370277632317,0.7091982787899728,1.1611866436965217,0.8962891024330403,0.9238905856988863,1.3410038165016125,1.326030927835052,0.9710897794421615,0.9190436210370058,0.8966850954430599,0.9435631460984,0.9127559906733717,0.7833861349442662,0.9217572443775589,0.8497334036868824,0.8359510046281667,1.6225692460316579,1.5792592081108243,1.4432989690721654,1.7366415166916105,1.0744989192837038,0.8329938908214589,0.7172905608872915,1.4684449489699933,1.7263220519966316,1.4632832960157436,0.8731434320541096,0.8379923716326257,1.7472818555060752,0.8237162631296465,0.8585140419480984,1.9220743991742186,0.7330085875308254,0.8397571587422524,0.9134350125540435,1.4329290147464966,2.207622327834616,1.3050335824666783,0.9232723737435482,0.8694540993661828,0.7845256055601771,0.2915677403888866,0.6314432989690724,0.8247741531503052,0.9610923919259214,0.8701850876060782,0.9459403353073452,0.8130791101310035,0.7719503537382923,0.8135761566818528,1.0720080619966397,1.5794316090778981,0.7376365309929663,0.2663127361812595,0.309278350515464,0.5942538238941713,0.5464239737090668,1.5756014198217085,1.2816214125390493,0.9450936876703093,0.8082441509434405,1.0316436273840635,1.0956305623750646,2.4425816124855175,0.4558498515940718,0.30260378949003386,0.0,0.02780277055013821,0.06829982207604285,2.437805039721388,1.751224788670996,1.0068264179565696,0.008544476526452323,1.1436786867779174,1.2808449749287132,2.0,0.0,1.333333333333334,0.75,0.4000000000000001,0.1111111111111111,0.0816326530612245,0.03125,0.0,0.0,2291.3025699962805,2544.672997855476,1186.5182327444343,1095.252043667131,8.130895466003306,0.4174638632277166,4.736540433264841,0.7166317020962866,1.0,0.8,2.0640387089891847,2.963745994207331,3.4399364703978073,3.725650756112093,4.011365041826379,4.011365041826379,0.18181818181818182,0.0,0.11111111111111115,0.05769230769230768,0.03333333333333334,0.012345679012345678,0.0163265306122449,0.010416666666666666,0.0,0.0,0.42304381024619125,12.0,7.638888888888889,5.325443786982248,79.94163789749994,1.0,3.3075543884558307,39.368119405937875,,30.543415950042036,31.657072115590843,30.71808190822545,30.494533161064513,54.49472941236205,31.996803161084923,32.48803292458971,47.2554443097536,0.0027703946023308135,0.13320939510432694,-0.8467198662182122,0.2069587628865978,0.40136815164263323,-0.31436099169837434,0.0023414500658032323,-0.08322935428865995,0.08949507683231703,0.12356103592591954,0.05893365812514445,-0.12239604357817219,-0.1956444610148292,0.1859316652300445,0.35647333576912493,-0.051243177683444587,0.2913619257006599,-0.107486675046798,-0.19718105360956084,-0.19439136330508433,0.06170794300246729,0.11806318889318247,0.04560320810537381,-0.21630783735422382,-0.04156103046411781,0.013464823118837994,-0.08091917519711897,-0.1367268041237114,0.04245814386109965,0.0030499004605015773,-0.0406317266377941,-0.09499498567346011,0.009978895693457404,0.013518877592783685,-0.05119867458889968,0.06932403326614665,-0.12365011802754591,-0.329503223851986,-0.14690164695830843,-0.32099343955014065,-0.4664227937031478,-0.09310904111742589,-0.12126945877377182,0.06778543188778369,-0.3236077733823341,-0.08432204301592919,-0.3056413870228203,-0.07965311293314364,0.05681794146884849,-0.427682810355267,0.10309028159654102,-0.10789193032349806,-0.7361148262529486,0.1247276418765391,0.053054308267772514,-0.04932444148366751,-0.21781765801651332,-0.5183754762061408,-0.051801569177077254,-0.09606488781188563,0.06588632181557963,-0.009999556997228012,-0.015534515348727846,-0.11146907216494845,-0.08000313085134837,-0.0379812626614861,0.0671184841731965,0.051412191174536825,0.01841622889569458,-0.061957988476400216,0.007253300396917127,-0.01172866881573053,-0.08934778163974647,0.09944427763475991,-0.013081562804408508,0.20618556701030946,0.16050628601998887,-0.04043458825619834,-0.08693438942103328,-0.02559680030824142,0.06505112790403793,-0.015256777439312403,0.010552758275010291,0.07456605123000744,0.05407892046616235,0.15595666448446893,0.006305365187254064,0.5154639175257736,0.5729701140480998,0.05954935187220072,0.05118796048609106,0.00786918156646166,0.04450866646065763,0.23297511495166234,0.0012765433397189708,0.07327349556077663,2.065979662384912,1.6329931618554518,,28.689412780299534,37.95439661812568,39.48230138003044,40.8182061419352,44.3866823324114,44.3866823324114,22.487730518665842,9.65411333567093,5.946108191087381,3.472697340083105,3.4148116518244254,12.833617182994912,1674.1649160565407,1358.8335969802697,609.2317293455908,0.0,12.0,13.0,12.0,9.0,5.0,3.0,1.0,0.0,213.007181888,11.0,3.8501476017100584,4.574710978503383,5.332718793265369,6.089044875446846,6.85751406254539,7.624130585661289,8.395929103923198,9.166283985779263,9.93928896499951,0.8730158730158732,1.0318095238095235,1.1649065723107266,0.8486109954763686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6733714570858284,1.0246498599439777,1.0560468907154994,0.6344488480513314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,0.0,0.0,0.0,4.794537184071822,5.008912523954532,28.108945024453313,0.0,0.0,18.304763295853252,11.830641126875284,202.77665092308152,-229.8081595908414,-28.83774794606048,-10.943245694801973,-38.3013599318069,176.21307500760105,199.70347808289117,11.433867869507752,9.509689432518627,13.313565205526078,0.5,0.9180022945335624,0.29578611832561924,11.716564220370241,0.29999696815671817,16.930274545844473,0.08199770546643767,4.0,0.45454545454545453,0.46992020619570546,0.6747567875757812,0.7831711917171874,0.8482198342020311,0.9132684766868749,0.9132684766868749,1.157,,2.222689075630252,1.3616473764607417,1.2853389533204247,2.248401228199662,-3.2512440749668774,1.3870704414111525,1.3373469250978727,-1.5893855813711188,47.339700000000015,4.794537184071822,0.0,10.325701127960862,5.2858847209627084,0.0,24.84951970176583,4.907065243988282,0.0,0.0,3.1354942159291497,0.0,4.2626798770413155,0.0,5.594711379601839,0.0,7.027314514039777,0.0,8.511778558714738,18.33333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.667999999999996,0.0,20.949930083144366,0.0,0.0,0.0,0.0,2.4743613000755857,-0.5775000000000003,24.46303801852526,5.316788604006331,4.794537184071822,0.0,35.889546738058435,0.0,4.907065243988282,0.0,5.2858847209627084,0.0,0.0,0.0,17.820830905003742,14.140800598802395,14.384685197273983,78.73623881187575,,60.71638372081165,63.08720300177136,61.221940657563636,60.614332784095,109.53133283721857,63.76242791526785,64.75317469499637,94.7757862164024,14.384685197273985,78.73623881187578,,58.86414282445311,61.95249685472074,60.150824863129955,58.74066509392862,112.24070289969094,62.60653588075857,63.63871892408147,96.10027420087835,4.334501296688692,57.139161164629655,,45.48384318686536,46.59047294115296,45.07841368812616,45.42527507345241,79.96785476717208,47.18574171586079,47.95598585370519,69.684142389985,1.1987237664394985,6.561353234322979,,5.059698643400971,5.25726691681428,5.101828388130303,5.051194398674583,9.127611069768214,5.313535659605654,5.396097891249698,7.8979821847002,2.1672506483443463,39.368119405937875,,30.54341595004168,31.65707211559074,30.718081908225187,30.494533161064137,54.49472941236205,31.996803161084852,32.48803292458967,47.2554443097536,21.51764705882353,0.0,0.0,10.609027935248172,0.0,0.0,0.0,22.17698470502549,0.8543812988158228,2.3708024691358025,0.0,0.0,0.0,0.7078858024691357,0.0,0.0,0.0,13.323425809077959,347.9134380090125,43.34481288877288,62.23866587835395,72.23866587835396,78.23866587835396,84.23866587835397,84.23866587835397,78.0,84.8297689518343,31.07628792167004,40.53197854532682,61.77,61.77,1.0,4.624972813284271,4.459431618637297,3.0059032679677533,3.3978840434780944,,3.4033824638041357,3.3864808918505145,3.3851465785833335,3.4037542486147903,3.409433213536947,3.390369741741128,3.3921244857631727,3.4069616628639103,0.25049193899731276,0.28315700362317453,,0.2836152053170113,0.2822067409875429,0.28209554821527777,0.2836461873845659,0.28411943446141225,0.28253081181176065,0.2826770404802644,0.28391347190532584,1.2828996679555154,1.4054744545285525,,1.4070913361837656,1.402112854003054,1.401718764608658,1.4072005700148846,1.4088676212354438,1.4032605405990073,1.4037779738624458,1.4081424429480456,138.87000000000006,51.35489213032055,42.75903340929437,,42.032243070850264,42.64423050163861,42.73332313667958,42.01702539515876,42.11929412268244,42.52302613485382,42.467926898183535,42.14806319233207,4.279574344193379,3.563252784107864,,3.5026869225708555,3.553685875136551,3.561110261389965,3.5014187829298966,3.5099411768902034,3.5435855112378185,3.5389939081819612,3.5123385993610055,4.121081758938687,3.9379020376741223,,3.9207585727155227,3.935213546121271,3.937300574001144,3.9203964594898983,3.9228274851985607,3.932367277416677,3.9310706866049925,3.923510289826213,0.0,20.949930083144366,5.553049571680524,0.0,0.4576856575963719,-0.5775000000000003,0.0,0.3966956412194509,0.0,170.75633892749747,76.85026735848035,-87.09493141996754,-10.929210190535565,-4.147377686665122,-14.515821903327922,66.78294500253352,75.68556642603899,4.33331845019238,3.6040745917161425,5.045704428402599,226.0,13.0,0.4023689270621825,0.11635422457741859,0.0,0.0,0.11785113019775792,0.014433756729740644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.397341225498538,7.807137734729196,5.756748817474191,4.333653736901624,4.0765154898253195,2.570614373821282,3.0016005326947903,1.3580401041561125,2.0236033621142733,0.7595380878653104,1.1784683477238034,0.4011735146183162,0.3922588984322123,0.1561465381561155,0.20118446353109126,0.07495932035179564,1.0690355937288492,0.2280525029382734,1.4428090415820631,0.26497077949850656,1.6094757082487294,0.26517294035381067,44.07939465140319,32.18471917630677,30.219863623817943,28.32241845926675,23.918735994661603,23.918735994661603,46.0,48.0,23.615136999999987,12.924862999999997,0.0,11.07,5.722222222222222,3.194444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,0.0,0.0,20.0,0.0,2.0,2.0,18.0,2.0,11.0,18.0,0.0,0.0,0.0,5.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,3.0,1.0,0.0,12.0,7.0,0.0,3.0,2.0,0.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,2.6390573296152584,0.0,2.772588722239781,2.9444389791664403,2.995732273553991,2.6390573296152584,1.9459101490553132,1.6094379124341003,0.6931471805599453,0.0 +11467403,COc1cc2c(cc1S(=O)(=O)c1ccc(OCc3ccc(Cl)cc3)cc1)CCN(C)CC2,0,30.620689655172413,6.111679310344828,3.3793103448275863,7.069816943380163,158.7284878606461,123.06266968965518,1.6935801987254135,6.234836206896552,4.067036176413394,7.717602379310343,234.58147198614267,30.360655737704917,6.248032786885246,4.032786885245901,5.761384335154827,142.02137764936728,116.85279357377053,1.9990723288524594,6.438162295081968,2.661185320110639,7.743114065573767,280.06843140993794,24.523364485981308,6.27026168224299,3.635514018691589,5.339563862928348,151.94965860091298,92.8273693084112,1.7086790516199903,6.4059214953270995,3.206703588323525,7.806255962616821,236.75007716498766,22.73381294964029,6.132676258992807,3.323741007194245,4.369304556354916,150.59543085086125,84.11562066906477,1.6382621502603452,6.285321582733812,2.887878586020072,7.71453886330935,219.75453179284875,17.542168674698797,6.059343373493975,2.6867469879518073,3.6713520749665323,156.31711092114875,62.539635379518046,1.3607739319383858,6.1672030120481915,3.050092344687391,7.682330325301205,176.4807672223732,16.427672955974842,5.907754716981131,2.69811320754717,3.2215234102026553,160.01319722163458,59.24279381132075,1.278696787878943,6.00147610062893,2.6601735383181917,7.559041811320755,166.7530046797492,19.852713178294575,6.282052713178294,2.868217054263566,3.695090439276486,155.02810216812364,71.22907672093025,1.4524489893723798,6.395103875968994,3.311895875203368,7.89699618604651,193.97136765945467,16.81203007518797,6.052909774436091,2.6390977443609023,3.0634920634920637,156.11904822490675,59.34904812781954,1.3711865189396992,6.155478947368424,2.8784847922274817,7.661579654135338,177.82876842146456,15.091603053435115,5.935847328244277,2.435114503816794,2.470737913486005,160.70034920720198,52.93592707633589,1.2507191166959393,6.027302290076336,2.652341909339364,7.591656030534352,157.3490745867492,12.337693222354343,0.11424720570749106,0.015485032767680115,0.6397146254458979,3.8270577355000657,1.441878556449383,56.83787063614744,0.2997712479983258,0.11433082639714622,1.3557283536729579,0.08057483590963138,53.371257534247306,1.819457710376017,0.0006373053156858979,-0.004264963474104285,0.20596089744839272,0.4890446868770879,-0.16870057482716516,7.9381271835247,-0.01669441887662135,0.004712163992904739,-0.25948893704977993,0.00533608834135786,0.5664007071595668,0.9668507673330595,-0.0034544567548645327,-0.002448562461799588,-0.0444842032738062,-0.0045084701535077105,0.3077420433888188,4.585202842099416,0.05628412999112769,-0.002705592752286332,0.2371578790773004,-0.00229845595474903,7.307329429163523,-0.7882017810246451,-0.004780051155270762,-0.0001054998339042589,-0.05722888989640628,-0.011324115499514741,-0.166787494289756,-3.7333715545299744,-0.04080454523373138,-0.00475875991240295,0.07920623377840937,-0.0047223424836825,-5.633190439744075,-0.8802773519762762,0.005062100482787287,0.0008918096394228529,-0.017778605504061434,0.29683759037559504,-0.1979285359439917,-4.1630323231021595,-0.031908614118365694,0.0023831225018982184,0.09113861711133513,0.002147366001461253,-6.754392623894263,1.202970408094586,0.0018282009288133816,-0.0011925028200510817,-0.027483005406860682,0.2226328862284361,0.1048241198540497,5.930997567496016,0.0233527600681964,0.005463068636468947,-0.01645444984609837,-0.002145733111973613,9.269784022952203,-2.2363834121431667,-0.003501068311072945,0.001580590933433283,-0.0633981325295652,-0.7398360577945602,-0.02764495705758956,-10.40495885106324,-0.032041849644895426,-0.0070672070440319845,-0.15014655620066433,0.0021570830959820697,-7.854892196434568,-1.5552197974126756,-0.0057496428347920785,-0.0011227567567615939,-0.05973018157760632,-0.4199191995049058,-0.16672420408792263,-7.142690524661834,-0.03439670794800533,-0.007905508792790507,-0.19755068612890248,-0.00440069408956398,-7.818891564776384,-0.21213386462862302,-0.0051470477711920625,0.001330067857298311,0.0070345190658158575,-0.2233803545128667,0.022299551972894145,-0.8167682902669505,0.012277631017424373,-0.005217441295803828,-0.12476183214832966,-0.003085116246562159,0.27946417179281374,,,0.4931547619047618,1.328125,0.703125,0.046875,0.625,0.078125,0.861323912572924,0.01723974337930012,0.02798974337930012,1.0853854637579217,0.2588856663734831,0.22119376407137606,1.9467093763308456,0.4800794304448591,2.0442645569091593,1.618398733679723,0.06629451731536334,0.2336986182184501,0.05499373432336877,0.4258658232294361,8.122881155034497,1776.0,354.4774,196.0,410.0493827160494,9206.252295917475,7137.634842,98.22765152607398,361.6205,235.88809823197684,447.6209379999999,13605.725375196274,1852.0,381.13,246.0,351.44444444444446,8663.304036611404,7128.020408000002,121.94341206000003,392.72790000000003,162.33230452674897,472.3299579999998,17084.174316006214,2624.0,670.9179999999999,389.0,571.3333333333333,16258.61347029769,9932.528515999998,182.82865852333896,685.4335999999996,343.1172839506172,835.2693879999998,25332.25825665368,3160.0,852.4420000000001,462.0,607.3333333333334,20932.764888269714,11692.071273000003,227.71843888618798,873.6596999999999,401.41512345679,1072.3209019999997,30545.879919205978,2912.0,1005.8509999999998,446.0,609.4444444444443,25948.640412910692,10381.579472999996,225.88847270177203,1023.7556999999998,506.31532921810685,1275.266834,29295.807358913953,2612.0,939.3329999999999,429.0,512.2222222222222,25442.0983582399,9419.604216,203.31278927275196,954.2346999999999,422.9675925925925,1201.8876480000001,26513.727744080126,2561.0,810.3847999999999,370.0,476.6666666666667,19998.625179687948,9188.550897000003,187.365919629037,824.9684000000002,427.23456790123447,1018.7125079999998,25022.306428069653,2236.0,805.0370000000001,351.0,407.44444444444446,20763.8334139126,7893.423400999999,182.36780701898,818.6787000000004,382.83847736625506,1018.9900939999999,23651.226200054785,1977.0,777.5960000000002,319.0,323.66666666666663,21051.74574614346,6934.606447000001,163.84420428716805,789.5766,347.4567901234567,994.5069400000001,20612.728770864145,715.5862068965519,6.626337931034481,0.8981319005254467,37.10344827586208,221.9693486590038,83.62895627406421,3296.596496896552,17.386732383902896,6.63118793103448,78.63224451303155,4.67334048275862,3095.532936986344,110.98692033293703,0.03887562425683977,-0.2601627719203614,12.563614744351955,29.831725899502363,-10.290735064457074,484.2257581950067,-1.0183595514739023,0.2874420035671891,-15.828825160036576,0.3255013888228294,34.55044313673358,103.45303210463737,-0.369626872770505,-0.2619961834125559,-4.759809750297263,-0.482406306425325,32.92839864260361,490.6167041046375,6.022401909050663,-0.28949842449463753,25.375893061271142,-0.2459347871581462,781.8842489204969,-109.56004756242567,-0.6644271105826359,-0.014664476912691987,-7.954815695600473,-1.5740520544325491,-23.183461706276084,-518.9386460796665,-5.671831787488662,-0.66146762782401,11.009666495198902,-0.6564056052318675,-783.0134711244264,-146.12604042806186,0.8403086801426896,0.1480404001441936,-2.951248513674198,49.275040002348774,-32.85613696670262,-691.0633656349585,-5.296829943648705,0.39559833531510424,15.12901044048163,0.356462756242568,-1121.2291755664476,191.27229488703918,0.29068394768132766,-0.189607948388122,-4.369797859690848,35.39862891032134,16.667035056793903,943.0286132318665,3.713088850843228,0.8686279131985626,-2.616257525529641,-0.3411715648038045,1473.8956596494004,-288.4934601664685,-0.4516378121284099,0.2038962304128935,-8.17835909631391,-95.43885145549827,-3.5661994604290532,-1342.2396917871579,-4.13339860419151,-0.911669708680126,-19.3689057498857,0.278263719381687,-1013.2810933400592,-206.84423305588587,-0.7647024970273464,-0.149326648649292,-7.94411414982164,-55.849253534152474,-22.174319143693708,-949.9778397800239,-4.5747621570847095,-1.0514326694411376,-26.27424125514403,-0.5852923139120093,-1039.912578115259,-27.789536266349614,-0.6742632580261602,0.17423888930607875,0.9215219976218774,-29.26282644118554,2.921241308449133,-106.99664602497052,1.608369663282593,-0.6834848097503015,-16.343800011431185,-0.4041502282996428,36.609806504858604,0.7099052407149354,0.6171213014251148,0.43892976497815694,0.3524179298346432,0.2853704320550495,0.20639152934081118,0.18393810857432688,0.11994943545202176,0.11425660723177972,0.06644035406714435,0.07388619891560066,0.0387511141490571,0.04798322029803031,0.023572650712255058,0.030089142025332864,0.013742698027437182,17.001104879023764,5.687058312155011,3.58019924621167,2.1719731233415405,0.45339485557540016,-0.5274357148894582,4.0487361059392075,0.971566964611478,6.018110831958743,0.6442167356739236,14.543907545070873,10.311298719996564,35.450518005606696,11.698374174639707,2.957162030441925,0.761246515205618,3.5359866380168232,2.228020251616201,7.0142089481946,0.2960840182553412,3.767310566281895,2.4285447923456114,24.443302840628128,14.701559722642719,0.26115295449300896,0.5381204635793021,0.7573831563113238,0.8558007192047435,0.8669784105421999,0.8893337932171136,1.2879126381389545,1191.8616031496283,0.0,0.0,3.0,0.0,15.0,2.0,3.0,0.0,0.0,4.24668685200063,2.5378180931019085,1.1849837233310447,0.577754741453913,0.5087892242125358,0.37085818972977513,154.84403822822105,1703.7100881149604,58.22922616705606,29.374311864051037,59.22508158900554,,18.0,948.0,9.837253136417502,8.417796984328938,9.79096695103555,23.128538944822054,42.621510532768156,7.109797541277533,30.33183534230805,30.33183534230805,11.947581713527669,21.074665797832616,15.780952380952378,42.5,22.5,1.5,20.0,0.0,0.006845238095238182,2.5,0.15465790914066818,0.0703137153227903,-0.08434419381787789,0.0,0.12557670454545444,0.0,0.5968801313628896,0.8380952380952378,0.44222222222222146,0.5265664160400993,0.8380952380952378,27.562365202333567,0.5516717881376039,0.8956717881376038,34.73233484025349,8.284341323951459,7.078200450284034,62.29470004258706,15.362541774235492,0.5884232954545455,0.15087507543753775,0.052806276403138216,0.2788171394085698,0.28,0.39513105401597737,-0.9118413187441002,-0.044316166586271445,-0.015721402047312073,-0.041447332670186375,0.6048689459840226,1.395852064189121,0.03455593780310521,0.024066414899812427,0.03877366844969782,-7.416827736376917,0.7299529494293261,0.6823812144280803,1.2604306867594142,0.8562679017612284,0.6998510270118947,1.2419020294409768,0.7217402688297844,1.135187482766161,0.6289548835235984,0.7500449225988217,0.610710423610505,0.9489935061764541,0.7544889266387564,1.0728548214897622,1.4536042252456174,1.2849902720355764,1.080352419505836,0.8680412146709634,0.7498318918870233,0.7602417625537758,1.0101647134331433,0.6712660584888587,1.0284641304880109,0.7916787885623063,1.0650271032210468,0.9400292987455148,1.054548055699962,1.2378379824021821,0.9563280435133372,1.1701077966811293,1.0544361026392701,1.2016366004909222,0.9274777853330147,0.7950882337786511,0.959168681134088,1.0772107160567377,0.9968867857706847,1.0620328039794662,0.9727637732010396,0.9717214583240021,0.933607561741425,1.1131803207743325,0.9938926851774194,1.1032591586432348,1.0408178454177894,1.2138165365370748,1.0570750310982067,1.0985991940833422,0.8331208812790036,1.0255169248593283,1.0572817397212317,1.1739233359051693,1.0099815744931755,0.9118989557092612,0.817959847882679,0.9477805438836333,0.9536465411221927,1.206874854874016,0.9985100065070683,0.8247847179221787,1.1935896343978052,1.3900657413949922,1.2433218858798294,1.143252355839889,1.3343168101204714,1.0206361447658532,1.1821137463148776,1.1490716493501498,1.3346226668544419,1.7075852935446103,1.3393770224013897,1.0885353713150363,0.994189888754268,1.1304272337305092,1.041898846219145,1.0568906001062133,1.1182844353262418,1.1187785468837268,0.9875777185198767,1.1053743580286852,1.0911813458889201,1.4964557637442002,1.0778650465821473,1.1121321161831006,0.939138212375005,1.1195222036600787,0.8719705634523585,0.9205745055194527,1.0733314280328297,0.9617055684223387,0.934202013839669,0.9357292423867544,1.0861150218229318,1.316858800832444,1.0570720292816171,0.978204278104078,8.0,0.15753290480563206,4.666666666666668,2.125,2.4238888888888894,1.3852777777777776,0.7241269841269842,0.6224489795918366,0.3454428067523305,0.24625771604938274,7120.118991509075,7889.3353438594,3435.803362471164,3176.7603356516584,16.82653967862296,0.47341911556470073,8.860534145954935,0.8990434889644566,1.0,0.28,1.6112941431269425,3.3201629020256633,4.672997271796527,5.280226253673659,5.349191770915036,5.487122805397797,0.2285714285714286,0.006563871033568003,0.09333333333333335,0.03794642857142857,0.05049768518518519,0.03011473429951691,0.016840162421557767,0.016380236305048333,0.011143316346849372,0.00912065614997714,0.5005118522178933,25.103673469387754,11.16,6.177514792899408,194.00994391675744,1.0,4.396404333194935,212.24426632737945,,144.58947403595158,165.00353108656142,170.46094643138045,144.5688359683037,201.90896561346506,164.74698869102892,163.30820708551886,186.3015534847562,0.14747146630938995,0.005578301121146025,-0.27542489177071594,0.3219574623682123,0.1277860750154548,-0.11700054354271645,0.13966264208491042,-0.0556905273207342,0.04121516603524137,-0.19140186627119582,0.06622524614685588,0.010612466959320162,0.0783656028649868,-0.03023668485782518,-0.1581244611190073,-0.06953757426258551,-0.0011780512511444011,0.21343131986554517,0.08067161543492699,0.18775693255092307,-0.023664595433676192,0.1749302346851337,-0.02852572926523686,0.136915069398066,-0.06388566864318874,-0.041839545445944676,-0.006813019738934936,-0.08946003048862021,-0.002958961239197262,-0.11567374626922061,-0.0656845781297733,-0.13611894238088926,-0.041622719456891215,0.05842338073392266,-0.058608155143857046,-0.10554726832376705,-0.07134861729106093,0.044308308911710836,0.057591717938383094,-0.027791463250772606,0.07756287228752992,-0.1372712944919505,-0.07324398814572368,-0.10644321071960812,0.020844094082028808,0.06722483664549844,0.026650578648023917,-0.1265548712162178,0.09750367320812901,0.01600215005252867,-0.07701002884152994,-0.04296135231815953,0.05817338060078825,0.07269968707501862,0.10434939770111747,0.07790193430534348,0.04778298914320896,-0.012136981425165115,-0.026630313146155923,0.17368494675254675,-0.18126430701738658,-0.03064467344642797,0.10207217234517217,-0.09910377222558422,-0.19331719271747252,-0.019172874812470406,-0.18306383991179906,-0.10688766804304854,-0.06181366186826047,-0.11074973522083922,0.026771175784972668,-0.14717457596711553,-0.12605434171396104,-0.050326332265079474,-0.0725059335428064,-0.09337004220588643,-0.10972376915291997,-0.11562985200257084,-0.12566780642410738,-0.11474318560463623,-0.0691459079052702,-0.14571553777251575,-0.05461623396291583,-0.14650004376904838,-0.017193964933757896,-0.04505184822086705,0.08589377092403626,0.010996339283180548,-0.0583686920740114,0.01546562425327044,-0.01437014232105146,0.04095666645619377,-0.045634597948940044,-0.092025686274336,-0.0382888306471051,0.0052362298492496075,19.36953707972465,26.664257160087633,5.829824070922484,19.299778208078234,35.35885181248816,44.82281533078204,45.814315937617636,46.642660765203836,46.78169524796247,65.4164658210931,51.788759477751135,2.121424554091627,7.478355782990403,1.7597994983478007,13.627706343341956,12760.380213969762,11416.83520718792,2224.9929799101155,165.0,50.0,65.0,81.0,108.0,121.0,128.0,141.0,162.0,471.1271069920008,35.0,5.14166355650266,5.993961427306569,6.878326468291325,7.752335163302292,8.64241515616962,9.5258078304359,10.42088155718015,11.310086865746364,12.209242615860994,0.7126436781609197,0.9795862068965517,1.1137710209840064,0.6775340994892612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7069442287838117,0.9701825557809333,1.0063791847703243,0.6541177944510345,10.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,5.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,14.373635638450576,23.001389106598502,0.0,9.837253136417502,0.0,0.0,8.417796984328938,0.0,0.0,23.733674027155736,85.11060625131309,18.112146125566476,12.005281016795308,291.71499464926893,-673.188762854518,-32.7174747901934,-11.606702807836518,-30.599489220659912,446.55903287749,1030.5213252604424,25.511751376862662,17.76760905621452,28.62559236834563,0.5,0.8863176796204167,0.21465940274706755,16.208502529953442,0.0908968031115119,0.0,0.11368232037958333,9.0,0.17142857142857143,0.2750596399112853,0.5667759770452035,0.797714652144371,0.9013730597735865,0.9131459756124635,0.9366918072902183,4.790800000000004,,2.4149159663865545,1.4205425052173035,0.9625467462964998,2.426105964587757,-4.189275990375503,1.4007338131168372,1.4153824708093294,-1.6744350355664541,125.57680000000005,17.891522891929036,0.0,4.899909730850478,0.0,29.239492161400488,27.246982335779876,82.37665847344843,0.0,11.49902366656781,4.2626798770413155,0.0,5.602118820879701,0.0,7.133295954896068,2.70805020110221,8.751316246773456,5.198497031265826,10.419032025002059,41.33333333333334,17.56311386145896,0.0,0.0,0.0,0.0,0.0,5.257799430722317,0.0,56.816,0.0,26.856828428372438,0.0,0.0,-3.7380979387342106,0.0,0.0,0.0,64.59871921707237,9.473725907600098,0.0,11.49902366656781,40.56468905095929,29.28577834678244,0.0,16.690354475090988,70.45463763565166,5.022633313741326,0.0,0.0,39.296977770377154,41.00276526946108,41.48609270766996,424.48853265475896,,289.7955105272674,329.91827826654674,340.86173369111737,289.7532096161766,405.97544878888925,329.40643151873803,326.52795276661215,373.4124069522948,41.48609270766996,424.4885326547591,,287.682459056679,328.58651966790546,339.9593461164643,287.6303668971623,408.0700867840771,328.09324356894103,325.2010317002284,374.2775420050789,4.9714325351845865,324.5974209996149,,218.17938041634727,252.80796132084845,261.8507677758684,218.15951335126658,309.0953773692105,252.15213574260463,249.48108503535747,283.4817778864982,1.2964403971146863,13.265266645461217,,9.056109703977107,10.309946195829585,10.651929177847418,9.054787800505519,12.68673277465279,10.293950984960563,10.20399852395663,11.669137717259213,2.4898718503614403,212.24426632737945,,144.58947403595158,165.00353108656142,170.46094643138045,144.5688359683037,201.90896561346506,164.74698869102892,163.30820708551886,186.3015534847562,56.27058823529413,0.0,3.591868226122349,5.905924945388881,0.0,0.0,0.0,58.36999271667881,3.909287858485695,0.0,11.261000029098666,0.0,0.0,2.2533862701960157,0.0,0.0,0.0,37.93883207816,654.3453230015366,93.45506030136266,192.56944831748848,271.0338417641986,306.25312271307223,310.2531227130721,318.25312271307223,1088.0,144.87472064079589,83.92870452522233,76.07499015696064,64.22000000000001,55.84000000000001,1.0,8.769827581497479,6.129283016944966,4.364672795441059,5.560124106879679,,5.532048464248486,5.555174174169746,5.558541612744,5.5321415385701265,5.523830228882373,5.554195166307018,5.551798577611422,5.539370383565566,0.1363960248575331,0.17375387833998998,,0.1728765145077652,0.17359919294280457,0.17370442539825,0.17287942308031645,0.17261969465257415,0.1735685989470943,0.17349370555035692,0.17310532448642393,2.6366940353347412,2.8787712392002907,,2.8737089842799564,2.8778805868917354,2.8784865837953584,2.873725808705715,2.872222311513751,2.8777043378473013,2.877272753103413,2.875031654930426,343.02000000000123,988.1822359842952,212.4457970210236,,214.87451064745005,212.29585958756698,212.14100247545989,214.86446541326742,217.1843039679518,212.4582011524346,212.7395054125048,215.05850164069994,30.880694874509224,6.638931156906987,,6.714828457732814,6.634245612111468,6.629406327358121,6.714514544164607,6.7870094989984935,6.639318786013582,6.648109544140775,6.720578176271873,8.05901793992167,6.5218376927913,,6.533204996123669,6.521131675675475,6.520401969409032,6.5331582457251995,6.543897129913274,6.521896078362949,6.523219247781639,6.534060901575093,38.117828457471106,2.66863497999684,0.6699617356303649,3.193701283286542,0.978887702004585,17.56311386145896,1.6924601540495061,2.2168277044361884,-0.14622971261186146,414.9798841314335,215.3656039896627,-496.9977792383612,-24.154461883861284,-8.568927228247606,-22.59080814719824,329.68293573091887,760.80712925224,18.834663438257735,13.11736429745241,21.13353136811778,3260.0,56.0,2.6584708596716125,1.696556242287638,0.16666666666666666,0.05103103630798288,0.7071970260819976,0.3023189237367979,0.15137471507731048,0.031741736710714036,0.0,0.0,0.0,0.0,0.0,0.0,0.2222222222222222,0.07638888888888888,0.4365925606057624,0.18793413875322212,22.716967702877934,19.747881645603673,15.362541774235494,12.334627544212513,14.268521602752477,10.319576467040559,11.955977057331248,7.796713304381415,9.254785185774157,5.381668679438692,7.979709482884871,4.185120328098167,5.805969656061667,2.8522907361828618,3.8514101792426065,1.7590653475119593,5.839335307680382,3.3340835963488087,8.378573741062464,4.1611282533307,13.127047807591696,5.736429224569558,104.54494362926673,62.65191218150565,34.04299536918766,29.8822841275622,28.285878198543898,27.497469648163875,170.0,200.0,68.47461799999999,38.43138200000002,0.4482758620689655,233.07,10.3125,6.972222222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,18.0,58.0,0.0,1.0,61.0,18.0,2.0,11.0,50.0,20.0,35.0,41.0,0.0,0.0,0.0,25.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,5.0,0.0,1.0,32.0,7.0,0.0,1.0,4.0,0.0,4.0,6.0,1.0,0.0,1.0,0.0,3.0,3.8501476017100584,7.496409622897478,4.483002552013883,5.028802598051705,5.545665606559064,6.107996800862713,6.34651316930213,6.6163998011640475,6.835453367226732,7.223067717767724 +8249,NC(N)=NC(N)=NCCc1ccccc1,0,20.666666666666668,6.074150000000001,2.7,5.933333333333334,169.93028851045784,81.29541383333331,1.3536064524245004,6.127766666666667,3.7944444444444447,7.573010000000002,197.26653500218887,22.6,6.458300000000002,3.1,5.933333333333334,157.4637614727966,84.18192116666658,1.6530977529999997,6.563400000000001,3.563888888888889,7.848365733333334,239.65448262191455,18.78723404255319,6.206008510638298,2.9148936170212765,4.425531914893617,159.8809189510137,68.76583127659576,1.4460188073243616,6.292023404255319,3.4810874704491743,7.652428425531916,197.72633982578927,14.175438596491228,6.087736842105261,2.473684210526316,2.7017543859649122,166.1180899731613,48.76695724561402,1.2502912568209128,6.155017543859645,2.7602339181286553,7.609182807017543,164.8445019892205,13.321428571428571,5.950814285714285,2.2857142857142856,2.4285714285714284,165.66875840668726,45.97531208928571,1.1512042933605,6.014087500000001,2.978174603174604,7.491161499999999,146.3150178739154,11.163636363636364,6.034218181818181,2.018181818181818,2.036363636363636,175.02014504837427,36.586272618181816,1.0196501472342911,6.065381818181817,2.7030303030303027,7.607152436363638,129.31399048819353,11.48936170212766,5.779127659574468,2.106382978723404,2.4468085106382977,170.87125512812725,39.805415617021275,1.023524300367702,5.828712765957448,2.4881796690307323,7.386197276595744,129.58518798190647,12.973684210526315,6.025947368421052,2.1052631578947367,2.8421052631578947,171.61855780732083,44.75062760526315,1.0939874433813164,6.071355263157895,2.9385964912280698,7.582012736842103,143.0924256358005,12.285714285714286,5.832742857142858,2.085714285714286,2.4,169.41322972337395,42.851533257142854,1.0605151848053713,5.8873999999999995,2.8095238095238084,7.421036799999999,135.8876715182958,7.222222222222223,0.09612499999999997,0.02638635564102271,0.45,3.155555555555554,1.5795380854344705,34.48016913888888,0.20142640621225,0.09255555555555552,0.9044444444444439,0.045303222222222224,47.27171693342335,-0.3777777777777771,-0.025840000000000134,-0.023700041053926996,0.1,0.7111111111111106,0.033962328448883916,-1.6411999111111224,0.02368186600000006,-0.022104444444444597,-0.34611111111111104,-0.013519644444444472,3.8797247117407343,0.3238770685579199,0.044868617021276556,0.016103191421690116,-0.06914893617021277,-0.066193853427896,0.5238876321016271,1.3209688221040166,-0.012688816408771243,0.036060756501182,0.39697399527186766,0.02528805437352245,-3.9611655557590546,-1.6491228070175439,-0.02926710526315792,-0.014039680977485454,-0.09210526315789473,-1.0116959064327484,0.002546134724535504,-7.772926890350879,-0.012664230935697362,-0.028024561403508806,-0.25999999999999995,-0.013541479532163751,-5.576931876461759,-0.27579365079365065,0.026055357142857144,0.01340107403922096,-0.07142857142857142,-0.2996031746031746,-0.11751096616341641,-1.5339645228174594,-0.04934006646916962,0.02084444444444447,0.2824603174603174,0.014441194444444444,-9.866164050862356,-1.3252525252525247,-0.03404954545454546,-0.011609080277804678,0.04090909090909091,-0.42828282828282827,0.0865600493537971,-6.160827114646461,0.008823305118440886,-0.03132040404040405,-0.3157575757575758,-0.016466276767676768,-1.031221051155788,1.3735224586288417,0.0050260638297872804,0.00500884004040308,0.047872340425531915,0.6146572104018914,-0.23323596950356335,6.579393286643029,0.019921879274686156,0.008155082742316827,0.055130023640661975,0.00014931678486998588,7.407576578567344,-0.2134502923976609,-0.018350000000000005,-0.0002876262166833934,0.013157894736842105,0.18128654970760238,-0.1388175821029226,-0.9220352748537999,0.007714139999999997,-0.01514415204678365,-0.15122807017543854,-0.010049871345029243,1.6792365046164208,1.1111111111111114,0.004910714285714319,0.00230021858052097,-0.07857142857142857,0.03492063492063512,-0.38191257398713824,5.290547051587303,0.0022673916017499946,0.007777777777777805,0.11380952380952378,0.00015011111111111792,3.9891357446425624,,,0.4666666666666667,1.2166666666666666,0.6,0.0,0.6166666666666667,-0.016666666666666666,0.5991782184669503,0.01551153413473596,0.021244867468069292,0.754089217150211,0.2707234825781982,0.20804588744527217,1.3532674356171615,0.47876937002347036,1.9575737448279715,1.354925526536557,0.6026482182914147,0.0,0.0,0.6026482182914147,6.837758182666666,620.0,182.22450000000003,81.0,178.0,5097.908655313735,2438.8624149999996,40.60819357273501,183.833,113.83333333333334,227.19030000000006,5917.996050065666,678.0,193.74900000000005,93.0,178.0,4723.9128441838975,2525.4576349999975,49.59293258999999,196.90200000000002,106.91666666666667,235.450972,7189.634478657436,883.0,291.6824,137.0,208.0,7514.403190697644,3231.9940700000006,67.962883944245,295.7251,163.6111111111112,359.66413600000004,9293.137971812095,808.0,347.00099999999986,141.0,154.0,9468.731128470194,2779.7165629999995,71.26660163879203,350.8359999999998,157.33333333333334,433.72342,9396.136613385568,746.0,333.24559999999997,128.0,136.0,9277.450470774487,2574.617477,64.467440428188,336.78890000000007,166.77777777777783,419.50504399999994,8193.641000939262,614.0,331.88199999999995,111.0,112.0,9626.107977660586,2012.244994,56.08075809788601,333.59599999999995,148.66666666666666,418.3933840000001,7112.269476850644,540.0,271.61899999999997,99.0,115.0,8030.94899102198,1870.8545339999998,48.105642117281995,273.94950000000006,116.94444444444441,347.15127199999995,6090.503835149604,493.0,228.986,80.0,108.0,6521.505196678191,1700.5238489999997,41.57152284849002,230.7115,111.66666666666666,288.1164839999999,5437.51217416042,430.0,204.14600000000002,73.0,84.0,5929.463040318088,1499.803664,37.11803146818799,206.059,98.3333333333333,259.73628799999994,4756.068503140353,216.66666666666669,2.883749999999999,0.7915906692306813,13.5,94.66666666666663,47.38614256303411,1034.4050741666665,6.0427921863675,2.7766666666666655,27.13333333333332,1.3590966666666666,1418.1515080027004,-11.333333333333313,-0.775200000000004,-0.7110012316178099,3.0,21.333333333333318,1.0188698534665175,-49.23599733333367,0.7104559800000018,-0.6631333333333379,-10.383333333333331,-0.40558933333333413,116.39174135222203,15.222222222222236,2.108824999999998,0.7568499968194354,-3.25,-3.1111111111111116,24.622718708776475,62.08553463888878,-0.5963743712122485,1.694855555555554,18.65777777777778,1.1885385555555552,-186.17478112067556,-94.0,-1.6682250000000014,-0.8002618157166709,-5.25,-57.666666666666664,0.14512967929852372,-443.0568327500001,-0.7218611633347496,-1.597400000000002,-14.819999999999999,-0.7718643333333338,-317.8851169583203,-15.444444444444438,1.4591,0.7504601461963738,-4.0,-16.77777777777778,-6.580614105151319,-85.90201327777773,-2.763043722273499,1.1672888888888904,15.817777777777776,0.8087068888888889,-552.5051868482919,-72.88888888888886,-1.8727250000000002,-0.6384994152792572,2.25,-23.555555555555554,4.7608027144588405,-338.84549130555536,0.4852817815142487,-1.722622222222223,-17.366666666666667,-0.9056452222222222,-56.717157813568335,64.55555555555556,0.23622500000000218,0.23541548189894473,2.25,28.888888888888893,-10.962090566667477,309.23148447222235,0.9363283259102494,0.3832888888888909,2.591111111111113,0.007017888888889336,348.1560991926652,-8.111111111111114,-0.6973000000000003,-0.01092979623396895,0.5,6.88888888888889,-5.275068119911059,-35.037340444444396,0.29313731999999987,-0.5754777777777786,-5.746666666666664,-0.38189511111111124,63.81098717542399,38.8888888888889,0.17187500000000114,0.08050765031823395,-2.75,1.2222222222222292,-13.366940089549837,185.1691468055556,0.07935870606124981,0.2722222222222232,3.983333333333332,0.005253888888889127,139.61975106248968,0.7397341225498538,0.5618295271260012,0.47876937002347036,0.3078207037444965,0.34275890725401076,0.16734372696932578,0.21710078777773745,0.09781964070937962,0.15766958813086637,0.0555927034909253,0.1006121892272735,0.033127766667274544,0.07001072120356917,0.01924801674522374,0.046636312050376494,0.010391967365879882,7.083292314162632,5.6942242933470535,3.197781622451438,2.1942089683408197,0.37153650407796945,-0.361532050354066,3.071653722604415,0.9884860212839282,5.064772849799527,1.8960312141218156,14.56358407521759,10.954540730944743,14.05266744188792,11.705235829518031,1.9810165703668716,0.9781784041835725,3.1810541427494203,2.2442036840044457,4.0119667458842,1.3723421716036308,3.342988777755246,2.440200293540298,20.890290319342387,15.584072783638561,0.2844740507019873,0.622067282416563,0.7105113555906392,0.8217641721617435,0.852664446049636,0.852664446049636,1.9920607093980807,351.33531420803286,0.0,0.0,1.0,0.0,5.0,1.0,1.0,0.0,0.0,3.4477426785812737,1.7161314485121344,1.2624767660309075,0.6918295834054486,0.5333333333333332,0.5333333333333332,154.45301048364675,849.8886093693759,57.730322003351105,28.329620312312528,54.95053721025672,,10.0,235.0,0.0,0.0,11.91910913748767,6.544756405912575,6.4208216229260096,5.563451491696996,0.0,30.33183534230805,9.984809465271338,17.201002431486554,7.0,18.25,9.0,0.0,9.25,0.0,0.03333333333333333,-0.25,0.13333333333333314,0.04444444444444429,-0.08888888888888885,0.15238095238095217,0.1539999999999998,0.0,0.5666666666666669,0.8333333333333331,0.43333333333333374,0.5222222222222226,0.680952380952381,8.987673277004255,0.2326730120210394,0.31867301202103937,11.311338257253166,4.0608522386729735,3.1206883116790824,20.29901153425742,7.1815405503520555,0.5600000000000002,0.17142857142857146,0.0,0.21428571428571427,0.2,0.3276218998123721,-0.6215136066390321,-0.05607155170809003,-0.020717120221301073,-0.05179280055325268,0.6723781001876278,1.2755317587500667,0.07278891140617626,0.04251772529166889,0.07086287548611483,-1.5657941242921884,0.9993846153846153,1.278111833550064,2.042330565362206,0.9666666666666667,0.6943661971830989,1.3206743560023062,0.9958777483890742,0.9964646371158608,1.2214117647058824,1.4992833742833749,1.3488258622761684,0.955184227903166,0.8870867430441898,0.4085338793127297,0.23029694230348127,1.4168636721828212,1.091736589751274,0.8642175204660831,0.8963538810513593,1.1661608398009347,0.48290988735919854,0.323734033840417,0.32852434368823286,1.126562340998293,1.1870040485829958,1.29417288344398,1.3249930818446036,1.2248213125406109,1.4027057079318017,1.0555218257655838,1.1840901067417446,1.0537044166417693,1.2834520123839008,1.1315591907697176,1.301394695728625,1.0911128115773736,0.9835302197802196,0.6067211592049039,0.36660082934495086,1.1507936507936507,1.031155684104628,1.0599478757204712,0.9914067816739571,1.2522122464571137,0.6611817226890753,0.5418202293202296,0.5511155080948373,1.2013045414534995,1.191230769230769,1.530722780470504,1.493252703847529,0.7225589225589226,1.1557298335467354,0.8408488999952619,1.1824058982747532,0.8032370618394306,1.4938877005347595,1.4803905144814244,1.558778118888682,0.9079236078332746,0.7802945990180031,0.85432974573223,0.7662713897557515,0.8912529550827423,0.7691039856158228,0.9853544286738778,0.7800980806050412,0.8415704825959777,0.8340675844806007,0.8372867548399467,0.8824865055601436,0.8055927144942586,1.0214574898785425,1.2784135240572165,1.1141086989246236,0.9044834307992202,0.9109525574499634,1.0215038174945759,1.0164064559597523,0.8652698121823617,1.2390092879256966,1.309431441010389,1.3204163214188576,0.8890878555718336,0.8126373626373625,0.857232026750882,0.889371283031597,1.2582010582010583,0.9715291750503021,1.1185877721080497,0.8136389732241885,0.9441034586869326,0.8371008403361343,0.8295893295893301,0.8884763163768087,0.8843166078567489,3.0,0.024691358024691357,0.8888888888888893,0.6875,0.23111111111111113,0.2569444444444444,0.14204081632653062,0.1284722222222222,0.10254472159234063,0.04437500000000001,2237.834691779173,2603.189097602289,1361.0269785854662,1193.5306369787509,10.585504623823953,0.4593142606407137,5.723431394023398,0.8495031904947262,1.0,0.2,1.4591479170272448,3.1907591470963843,3.644413829577611,4.21506101220307,4.3735572622751855,4.3735572622751855,0.2,0.012345679012345678,0.04938271604938274,0.04583333333333334,0.017777777777777778,0.02569444444444444,0.01420408163265306,0.014274691358024692,0.012818090199042578,0.008875000000000003,0.4012058138070043,13.066666666666666,7.302469135802469,6.222222222222222,88.7014886398418,1.0,3.5794119343344426,61.857761844603736,,46.908112075228956,45.81223187986844,44.801203837375354,46.917259682321934,64.04798671272357,46.43867793852465,46.97459367171267,58.85843653246843,-0.05230769230769221,-0.2688166449934995,-0.8981930425087079,0.2222222222222222,0.22535211267605626,0.021501430552427724,-0.04759837182063225,0.11757081132175716,-0.23882352941176646,-0.3826781326781328,-0.29842566999158815,0.08207285377861079,0.044844517184942756,0.46677364911601116,0.6102847866059449,-0.15366430260047284,-0.020976925382079726,0.3316714151640894,0.03831097280245489,-0.0629948011652484,0.38961201501877324,0.4389147367870775,0.5581954910288502,-0.08379567768477482,-0.2283400809716599,-0.3044692355074947,-0.5320810940506708,-0.2046783625730994,-0.32060785767234995,0.0016119489286231168,-0.22543180861558154,-0.06287274431313948,-0.3027863777089788,-0.28746928746928757,-0.29890764647467744,-0.11797608037626837,-0.03818681318681317,0.27105703139513293,0.5078789288501209,-0.15873015873015872,-0.09494466800804832,-0.07439577889702713,-0.044488312010260954,-0.24495331767562928,0.22521008403361384,0.3123025623025624,0.3187674901711676,-0.20871177716598885,-0.18349650349650343,-0.3542215391890296,-0.439965277347968,0.09090909090909091,-0.13572343149807944,0.054800862449598836,-0.17867740409944496,0.043804113295569914,-0.33839572192513395,-0.34911771275407666,-0.363468114627831,-0.021814757704022927,0.19018003273322423,0.05228674985474416,0.18982689798267804,0.10638297872340426,0.1947857356907403,-0.1476608710193962,0.19081673469003896,0.0989040099027224,0.08811013767209061,0.06095457159286954,0.0032959418236865,0.156702084440894,-0.029554655870445354,-0.19089726918075436,-0.010900566209159352,0.029239766081871347,0.057449962935507824,-0.0878849224232154,-0.02674103108774693,0.038297560608172396,-0.16362229102167214,-0.16720548299495672,-0.2218356852352008,0.035523069893598914,0.15384615384615388,0.051086754597808266,0.08717454626226721,-0.17460317460317462,0.011066398390342121,-0.24178750579609398,0.15343738687233685,0.01125667505262823,0.08403361344537849,0.12583362583362587,0.00331347537212232,0.08438736740323587,9.563073857754226,5.816090066448105,0.8254818122236568,12.884256489987472,25.525580877457482,29.690652450550104,32.00979905018006,32.16956327025275,32.16956327025275,29.363606172419573,20.323882898048353,9.03972327437122,0.0,0.0,9.03972327437122,2288.2279903959484,2111.189911377654,447.8113871681712,10.0,18.0,18.0,20.0,19.0,15.0,14.0,14.0,12.0,205.13274547999998,15.0,4.204692619390966,4.9344739331306915,5.720311776607412,6.46302945692067,7.252053951852814,8.000014093678072,8.789507786736896,9.54043517305957,10.329767847024877,0.6111111111111114,0.9779999999999998,1.1522787877173195,0.5696583687175643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.642752395209581,0.9633986928104576,0.9991502791939791,0.5951175452880112,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.201002431486554,0.0,5.959554568743835,5.959554568743835,0.0,4.992404732635669,0.0,4.992404732635669,0.0,30.33183534230805,11.984273114623004,6.544756405912575,0.0,146.77673286604787,-278.4421208304899,-25.12041829669021,-9.281404027682997,-23.203510069207493,301.2297433496946,571.446488538886,32.609903706660894,19.048216284629532,31.747027141049227,0.5,0.8756315190669032,0.1949096212830365,81.87825920750291,0.11494128914235648,40.488582177109855,0.12436848093309677,5.0,0.2,0.29736711846258135,0.650260910636971,0.7427134880160613,0.8590085574712814,0.8913093082183967,0.8913093082183967,-0.18279999999999919,,0.7142857142857145,0.9283387622149836,1.1262479272882393,0.7125008924109377,-2.5909090909090904,0.8059210526315791,0.7013149655604256,-1.5966231412171439,62.445200000000014,0.0,0.0,0.0,27.185811896757894,6.4208216229260096,6.544756405912575,35.89528683400505,0.0,0.0,3.4339872044851463,0.0,4.634728988229636,0.0,5.998936561946683,0.0,7.43543801981455,0.0,8.906664409770052,18.333333333333343,10.009863801989523,0.0,0.0,0.0,0.0,0.0,1.207175925925926,0.0,29.339999999999993,0.0,0.0,0.0,0.0,0.0,0.0,7.615051650289746,0.04341873477786229,34.56836363151959,17.201002431486554,0.0,0.0,18.463865543400246,6.4208216229260096,0.0,5.563451491696996,40.31664480757939,0.0,0.0,0.0,17.08975106152693,19.282571856287433,18.03741477353331,123.71552368920752,,93.7209860552198,91.50068525810823,89.45224128444562,93.73951924565574,129.13233706181074,92.76989973669842,93.85567868135061,118.3555223214237,18.03741477353331,123.71552368920752,,93.10193843617219,90.69612499752192,88.47615974746245,93.12201847223292,130.6868825163562,92.07143482441774,93.24787237786492,119.31349620615404,4.342241452710299,97.01521931091239,,74.52428401531793,72.84282504127412,71.29941210980598,74.53835549693754,101.65291685176268,73.80295673587214,74.62656385715586,93.31052675236072,1.202494318235554,8.2477015792805,,6.248065737014653,6.100045683873883,5.9634827522963745,6.2493012830437165,8.608822470787382,6.184659982446561,6.257045245423374,7.89036815476158,2.171120726355149,61.857761844603736,,46.908112075228956,45.81223187986844,44.801203837375354,46.917259682321934,64.04798671272357,46.43867793852465,46.97459367171267,58.85843653246843,28.90196078431373,0.0,0.0,0.0,0.0,15.727502925565698,0.0,29.974508375819376,1.3969869614512471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.853526358640337,392.28859132060103,43.77443751081734,95.72277441289152,109.33241488732834,126.4518303660921,131.20671786825557,131.20671786825557,170.0,95.23428663840197,55.717884895141445,45.409755184246066,102.78,102.78,1.0,6.689910166119136,4.906890595608519,3.5011699203203035,3.82153988421726,,3.8274255113499978,3.827945754414077,3.828407983796642,3.8274210983584043,3.81885279300703,3.827650495817781,3.827393415326304,3.8213723908258386,0.23341132802135356,0.254769325614484,,0.2551617007566665,0.25519638362760516,0.25522719891977613,0.25516140655722697,0.25459018620046864,0.2551766997211854,0.2551595610217536,0.25475815938838925,1.6585622836987772,1.7461185605508553,,1.74765749503152,1.747793410860242,1.7479141548589994,1.747656342038699,1.7454151696560316,1.7477162754976152,1.747649109196662,1.7460747308206632,169.29999999999976,74.72964706226682,61.911430153298426,,61.66559013107123,61.620826609524315,61.578172074622366,61.665957497966566,62.20900858465413,61.646599022663004,61.668257686849955,62.070350482901034,4.981976470817788,4.127428676886562,,4.1110393420714155,4.108055107301621,4.105211471641491,4.111063833197771,4.147267238976942,4.109773268177533,4.11121717912333,4.1380233655267356,4.719342003200549,4.531169925894192,,4.5271911870320185,4.526465015817096,4.525772566413092,4.527197144419279,4.535964929916786,4.52688317030328,4.527234444512853,4.533733535092636,0.0,7.615051650289746,0.0,16.934678851491626,0.04341873477786229,10.009863801989523,0.8209684429327286,0.5760185185185186,0.0,200.06136048846324,65.75692688177747,-124.74387338330578,-11.254110082165646,-4.158129112776859,-10.395322781942149,134.9528758494692,256.011727676166,14.609448049355828,8.5337242558722,14.222873759787003,450.0,15.0,0.9010475702906073,0.2501217563667135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.032075014954979206,0.07216878364870322,0.022680460581325723,11.096011838247808,8.427442906890018,7.1815405503520555,4.617310556167447,6.169660330572194,3.0121870854478643,3.9078141799992743,1.7607535327688333,3.1533917626173276,1.111854069818506,1.9116315953181964,0.6294275666782163,1.0501608180535376,0.2887202511783561,0.6529083687052709,0.14548754312231835,1.0395057741863334,0.3263762389521518,1.6102633935864747,0.37214047681596324,1.3953313418638156,0.30956758076763047,54.27819793529654,33.58842515855207,25.912658667437825,21.33183818811901,20.825948819213654,20.825948819213654,66.0,69.0,32.20189499999998,15.618104999999998,0.2,15.05,5.583333333333333,3.4999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,30.0,0.0,5.0,30.0,6.0,2.0,5.0,25.0,8.0,15.0,22.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,1.0,3.0,0.0,15.0,5.0,0.0,5.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,1.0,3.044522437723423,5.051457288616511,3.5115454388310208,3.82319179172153,4.213977737166646,4.499114984647586,4.190601263630456,4.354302086659027,4.658118360306187,4.904348423578298 +54477,CCN1CCC[C@H]1CNC(=O)c1c(OC)ccc(Br)c1OC,0,46.977777777777774,6.098386666666665,2.911111111111111,6.201493674744703,164.44923438811617,219.47868277777775,1.522235751367266,6.180124444444441,3.4400110501447947,7.688740199999998,207.342348665922,26.76086956521739,6.341934782608695,3.5869565217391304,5.718196457326893,147.95444909858904,103.76916778260875,1.7320314591304355,6.484913043478262,2.8217928073000538,7.787290391304342,246.91045773805175,22.180722891566266,6.255819277108435,3.216867469879518,4.347166443551986,159.9958435175058,85.2865998192771,1.428979547396217,6.345808433734941,2.5754871337200655,7.796510843373496,197.1686996016737,22.398058252427184,6.117455339805826,2.912621359223301,3.7220424307802946,160.59735141800417,86.64127711650487,1.3626918395517382,6.216378640776696,2.4625284669783056,7.6919257669902885,183.35987953690065,21.10810810810811,6.176936936936939,2.5045045045045047,3.678678678678679,159.38801392151387,80.26488282882886,1.3274722927579374,6.264729729729731,2.971165610054498,7.747665963963961,173.81472273061829,18.798387096774192,5.980917741935483,2.1774193548387095,1.880227001194743,164.78074453019127,70.62910861290321,1.1241482872973065,6.063014516129034,2.561678614097969,7.62435079032258,142.83982290331866,15.0,6.117666666666663,2.2222222222222223,1.7479423868312756,168.98902529986455,53.910632879629645,1.076747087910361,6.162722222222225,2.652906378600824,7.780471703703703,137.51871131502625,17.42168674698795,6.0455421686747,2.4698795180722892,2.4912985274431056,159.70521249863174,60.515441433734935,1.3024903802498191,6.149002409638554,2.525026030046111,7.683037132530121,162.82669225934777,18.435294117647057,5.969162352941178,2.4235294117647057,1.8684095860566452,162.31509625943204,69.63170795294116,1.2148358337456,6.054092941176469,2.242647058823529,7.603232705882351,157.58399666037053,28.773333333333326,0.12525066666666657,0.022365772148886822,0.5600000000000002,3.8326813324527085,1.367742051380687,151.4070158024691,0.30183737783979947,0.12196266666666662,1.0387866009585263,0.08082778469135801,52.835544472708804,0.2580676328502413,0.0015612173913043615,-0.007782774003036489,0.3047342995169083,1.4200770620126095,-0.36869528598773177,1.134687994632321,-0.029974029022832784,0.0036516328502414906,0.00500887527455093,-0.002456957155126128,-2.5409345035987054,1.2140829986613124,-0.010478939759036129,-0.0025840852201887013,0.06275769745649261,0.4016386635808077,0.1631567830309121,6.318058534880265,0.049004062651988714,-0.008266896921017437,0.033033395074990826,-0.008048523379443685,7.580999726531293,1.6225674217907229,0.00085891262135923,-0.003557772959618306,-0.11037756202804751,0.247718736800291,0.12207806121317462,7.855938892244999,0.005932987266167274,0.004435305285868367,0.03556731516543693,0.0003114931942946223,3.8689570412197622,0.5666066066066064,0.03730068468468468,0.007220181750799212,-0.1311711711711712,0.5145561656764219,-0.2281538935493223,2.6157578872205547,-0.019081464311216316,0.031525021021021005,0.24535657857217072,0.02545454944277611,-5.660429166360278,0.7705734767025088,0.007624064516129031,-0.0010321947143043858,-0.02200716845878135,-0.38755224611162187,-0.2251448471991324,3.2023674564914413,-0.0533283812892115,0.010820810035842291,0.019771361291524434,0.00693182355236957,-4.40124475468209,-0.4943209876543212,-0.04229955555555552,-0.005174578948293563,0.044320987654321006,-1.0531465393148063,0.3187244921266232,-1.7275232674897143,0.05897388979663772,-0.03951871604938271,-0.3554793582448475,-0.025886183662551424,5.228150323744346,-6.012423025435075,-0.004623999999999995,0.0050913859527911874,0.03625167336010709,-0.193971027125318,-0.11077525158717832,-30.73589077435668,-0.05503827834242065,-0.010242077643908967,-0.16851431382186774,-0.004280229403540077,-9.936821674254357,1.3518954248366015,-0.0036861176470588254,0.0010534029911034705,-0.15006535947712416,-0.8106061466399285,-0.07416860674018749,6.654268313870731,0.009705950948139317,-0.00040096732026144395,-0.09047577136834513,-0.004142482730573713,3.5658992959853664,,,0.506060606060606,1.0454545454545454,0.4090909090909091,0.06818181818181818,0.6363636363636364,-0.22727272727272727,0.983519857346888,0.013513245436034877,0.021331427254216693,0.7231768187563852,0.20304905822289737,0.27953831281257213,1.7066966761032731,0.4825873710354695,1.9906054324632307,1.466319573252371,0.19010566794114825,0.2536789273078208,0.08050126396189046,0.5242858592108596,8.224204548800014,2114.0,274.4273999999999,131.0,279.06721536351165,7400.215547465227,9876.540724999999,68.50060881152697,278.10559999999987,154.80049725651577,345.9933089999999,9330.40568996649,1231.0,291.729,165.0,263.03703703703707,6805.904658535095,4773.381718000002,79.67344712000003,298.30600000000004,129.80246913580248,358.21535799999975,11357.88105595038,1841.0,519.2330000000001,267.0,360.81481481481484,13279.65501195298,7078.7877849999995,118.60530243388601,526.7021000000001,213.76543209876544,647.1104000000001,16365.002066938916,2307.0,630.0979000000001,300.0,383.3703703703703,16541.52719605443,8924.051543000001,140.35725947382903,640.2869999999997,253.6404320987655,792.2683539999997,18886.067592300766,2343.0,685.6400000000002,278.0,408.33333333333337,17692.06954528804,8909.401994000003,147.34942449613106,695.3850000000001,329.7993827160493,859.9909219999996,19293.43422309863,2331.0,741.6337999999998,270.0,233.14814814814815,20432.812321743717,8758.009467999998,139.394387624866,751.8138000000001,317.64814814814815,945.4194979999999,17712.138040011516,1620.0,660.7079999999996,240.0,188.77777777777777,18250.81473238537,5822.3483510000015,116.28868549431897,665.5740000000003,286.51388888888897,840.2909439999999,14852.020822022834,1446.0,501.7800000000001,205.0,206.77777777777777,13255.532637386434,5022.781639,108.10670156073499,510.36719999999997,209.5771604938272,637.692082,13514.615457525864,1567.0,507.3788000000001,206.0,158.81481481481484,13796.783182051722,5918.695175999998,103.261045868376,514.5978999999999,190.62499999999997,646.2747799999999,13394.639716131496,1294.7999999999997,5.636279999999996,1.006459746699907,25.200000000000006,172.47065996037188,61.548392312130915,6813.315711111109,13.582682002790976,5.488319999999998,46.74539704313368,3.6372503111111105,2377.5995012718963,11.871111111111102,0.07181600000000063,-0.35800760413967847,14.01777777777778,65.32354485258004,-16.959983155435662,52.19564775308677,-1.378805335050308,0.16797511111110858,0.23040826262934277,-0.11302002913580189,-116.88298716554044,100.76888888888892,-0.8697519999999987,-0.2144790732756622,5.208888888888886,33.33600907720704,13.542012991565706,524.398858395062,4.067337200115063,-0.6861524444444472,2.7417717912242385,-0.6680274404938258,629.2229773020973,167.12444444444446,0.08846800000000068,-0.36645061484068553,-11.368888888888893,25.51502989042997,12.574040304956986,809.1617059012349,0.6110976884152292,0.45683644444444177,3.663433462040004,0.0320837990123461,398.5025752456355,62.89333333333332,4.140375999999999,0.8014401743387125,-14.560000000000002,57.115734390082835,-25.325082183974775,290.34912548148156,-2.1180425385450112,3.4992773333333314,27.23458022151095,2.8254549881481483,-628.3076374659909,95.55111111111108,0.9453839999999998,-0.12799214457374383,-2.7288888888888874,-48.056478517841114,-27.917961052692416,397.0935646049387,-6.612719279862226,1.341780444444444,2.4516488001490297,0.8595461204938267,-545.7543495805792,-53.38666666666669,-4.568351999999996,-0.5588545264157048,4.786666666666669,-113.73982624599908,34.422245149675305,-186.57251288888915,6.369180098036874,-4.268021333333333,-38.39177069044353,-2.795707835555554,564.6402349643894,-499.0311111111112,-0.3837919999999996,0.42258503408166853,3.0088888888888885,-16.099595251401393,-9.194345881735801,-2551.0789342716043,-4.568177102420914,-0.8500924444444442,-13.986688047215022,-0.3552590404938264,-824.7561989631117,114.91111111111113,-0.31332000000000015,0.089539254243795,-12.755555555555553,-68.90152246439392,-6.304331572915936,565.6128066790121,0.8250058305918418,-0.034082222222222736,-7.690440566309336,-0.3521110320987656,303.10144015875613,0.7323872589178574,0.677432008750777,0.46160531142523176,0.36258018694334043,0.2834309898002333,0.19828702643170665,0.18449858907663155,0.11310624596241564,0.12212327990337234,0.06649363029541931,0.08254837248117003,0.035972325760906795,0.054465893830383284,0.022407542491728518,0.03353602860024553,0.010930841473652125,35.000418047588674,5.692880237669069,3.5441177262858674,2.187977298207443,0.4474685951486309,-0.5279342744608995,3.271418540282276,0.9778527320671503,6.0221781810965895,0.2560115458726493,14.543739004130337,10.951522263848041,79.90417853747468,11.704900284702939,3.0589828464385853,0.7518708549202799,3.4893708216032135,2.2384282229264407,7.008270143380731,1.0433446192775222,3.7022910105860656,2.4346727573094813,26.523892031104932,14.702367475573856,0.28481935601413266,0.5667517428389489,0.7770847338250899,0.8460280410468844,0.8539028774973537,0.8775273868487613,1.9367830228016496,536.3673580305233,0.0,1.0,4.0,0.0,5.0,3.0,1.0,0.0,0.0,3.8843736109216613,2.29318776444246,1.1060986113514968,0.7169925001442312,0.6725480556997869,0.5392147223664541,211.0586885679059,1192.2243861738468,42.90990648337528,26.49387524830771,54.1440183588743,,10.0,372.0,0.0,4.794537184071822,5.907179729351506,29.64907239332534,23.98305395058357,6.4208216229260096,20.285962151016676,6.06636706846161,33.07037943249678,9.473725907600098,11.133333333333333,23.0,9.0,1.5,14.0,0.006060606060606039,0.0,-5.0,0.12842592592592583,0.03128540305010885,-0.09714052287581698,0.02364953886693011,0.11435906642728888,0.0,0.5659259259259262,0.8439393939393938,0.43750000000000033,0.5346405228758173,0.8202898550724637,21.637436861631535,0.2972913995927673,0.4692913995927673,15.909890012640474,4.467079280903742,6.1498428818765865,37.54732687427201,10.616922162780329,0.5996409335727111,0.2844311377245509,0.0,0.30538922155688625,0.5625,0.3101232981634617,-0.6652591163908977,-0.037239982502734865,-0.014783535919797725,-0.05117377818391521,0.6898767018365382,1.4798848322596445,0.03996689843129678,0.032886329605769885,0.04624640100811389,-4.559570516786514,0.5363259056292059,0.7992397699253381,1.402583955522466,0.7022084195997238,0.5518076686925629,1.5761469735702962,0.5293636017502955,1.0431289676837272,0.7607198401411503,0.6042197987469741,0.8196704884519453,1.0831828074264869,0.5895686545998639,1.1727627579020976,1.3933055365651508,1.1570089883342893,1.008944482573359,1.0178781439826052,0.5790424713742023,0.7063903684118895,1.1168102530815935,0.6924887961693573,1.157410356901414,0.8054199360203228,0.8147451643767003,0.9496007178459167,1.2256858409334355,1.5002311604253347,0.9975873583066346,1.0040811898859467,0.8169280308983795,0.934644607753798,0.9111427027663477,0.8233770259361686,0.9255939422383315,0.9059322271704731,0.8091409296228574,0.752676178914762,0.7798701029218366,1.266266266266266,0.8890008373845133,1.2215005242868269,0.8070835806252836,1.0105057299606786,0.7698402661888754,0.9994172556695673,0.7422883028183987,1.0823594196018538,1.020147587870091,0.9448653733405038,1.0926587540582722,0.9575012800819249,1.0802376807991567,1.1268290941898536,1.0273494464747537,1.1547311732411638,0.9182241677810564,1.2207865204642931,0.9113620154398785,1.0478060599515857,0.7553147061179191,1.7375250657841308,1.5554855431968317,0.8487654320987652,1.4771279980204672,0.6749361793751885,0.736633392366102,0.634332973800595,1.6631578684538424,2.3048085925648656,1.738055296154609,0.7860544701594878,1.618038418735182,1.0442553710338387,0.683785175347439,1.0413080895008604,1.0817031181691363,1.0652940312973687,1.6273672767330305,1.3418524010700617,1.1021429605074133,1.639716032019271,1.1178976011547175,1.2185780730179447,0.786985044249396,1.043311003210712,0.930566765657809,1.386554621848739,1.2584295150040081,1.0146487167426705,0.784749954868605,0.903039209572559,1.0077306416706964,0.9659472712954716,1.0770054413092935,0.9049387988158865,4.0,0.012345679012345678,3.1111111111111125,2.0694444444444446,1.4944444444444447,0.6422222222222221,0.3461224489795919,0.26558956916099774,0.22299382716049382,0.16625771604938272,4917.453230269461,5580.913548178819,2244.1310008706264,2013.57247399983,11.922006460004036,0.4622651535886639,6.410878312685227,0.8596525902564583,1.0,0.5625,1.6074794854080134,3.1986653318872147,4.385754484978178,4.774860596185444,4.819305040629888,4.952638373963221,0.17391304347826086,0.0030864197530864196,0.10035842293906816,0.060866013071895424,0.04528619528619529,0.02378600823045267,0.016482021379980564,0.013279478458049889,0.010136083052749718,0.01039110725308642,0.45758479290282544,18.340264650283554,8.74089490114464,4.308390022675737,139.6408491284441,1.0,3.995482568044039,101.27802751272246,,83.24007585434212,82.77495688118252,82.94403421883914,83.22340398135384,124.2899690191571,83.8389677250247,84.6608991129274,108.59274728758739,0.008968986313145553,0.012464743165473737,-0.3479769869435896,0.544168391994479,0.37051790609052204,-0.2695649268190204,0.007494289406725213,-0.09930522600398925,0.02994057894963616,0.004821852024206953,-0.03039743281976677,-0.04809138486140096,0.042194728869137374,-0.08366374437689862,-0.11553749197598416,0.11206731688659392,0.10479312751101608,0.11928914729660547,0.04172896811547377,0.1623525323560082,-0.06778219226389583,0.03179998186779624,-0.09957619660339673,0.14348294887823318,0.056391360812930606,0.006857549298680226,-0.15907221695430632,-0.19710278933579908,0.0646332724567436,0.08925517870123328,0.051886227666584045,0.019656237768260143,0.03636608978049322,0.03423928950625439,0.003853788588714429,0.07322640619740747,0.019692073908941378,0.29780827262144743,0.32282282510682603,-0.2342342342342342,0.13425487825441879,-0.16681061558282065,0.017276332099650946,-0.06321769837711691,0.2584809096309883,0.23619536326880927,0.3149232598663275,-0.10713297691640265,0.02678082055268219,0.06087045058545825,-0.04615064069477072,-0.03929851510496669,-0.10111778478165556,-0.16461060546603554,0.0211507203911169,-0.17667918291258017,0.08872231422601147,0.019033130840617966,0.08576040502456961,-0.08330083088204891,-0.01717983043284249,-0.33771920486562057,-0.23136151588449,0.0791446208112875,-0.2747806164831475,0.233029679686226,-0.011409796688308696,0.19538299139326007,-0.3240230566406883,-0.34220633758351693,-0.32026343121240014,0.09895138539633763,-0.20895816816850354,-0.03691796716983541,0.22764185912734486,0.06473513100019121,-0.050609745580175086,-0.08099133274096139,-0.2030017605951352,-0.18234414417565037,-0.08397715402452913,-0.16222226361638997,-0.05295492657486768,-0.1880707726857444,0.0469843173599375,-0.02942992436813772,0.04709888771516882,-0.2679738562091502,-0.21149844621211555,-0.054227042785821286,0.04394953746761725,0.03215622603669305,-0.00328762342789141,-0.08709755332313668,-0.051250727041348955,0.0674905375078942,5.580785632537019,11.047866439103567,6.534047077809358,23.584934506743576,39.2143274257419,43.04060278508658,44.09908841185017,44.63291063407239,44.767310634072395,43.793319514191076,32.25903061155216,4.182324694705262,5.5809364007720585,1.7710278071615901,11.53428890263891,5921.828587042382,4639.711736330644,1453.9133982769258,43.0,31.0,42.0,52.0,54.0,48.0,46.0,47.0,47.0,370.08920469600065,23.0,4.6913478822291435,5.541263545158426,6.411818267709897,7.278628942320682,8.152198015861787,9.023167064451204,9.897419177134521,10.770314893674692,11.645084666571119,0.7111111111111111,0.9776000000000002,1.134102681298209,0.6869166227254646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6615068396540256,0.9652287581699344,1.0044590110868337,0.6040020761245675,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,14.790514511606428,17.062475158264807,0.0,0.0,5.907179729351506,9.694446914922299,0.0,0.0,0.0,6.923737199690624,53.99383409254974,12.586597235060536,18.69231459838748,172.35978919910445,-369.73655879114204,-20.697172937218426,-8.216367973136489,-28.441273753164772,383.41847776701036,822.4878273827048,22.21273354615686,18.27750727517122,25.702744605709526,0.5,0.9112617946745037,0.2311150227301918,25.483722405399803,0.12048074312804603,53.72486486254646,0.08873820532549632,5.0,0.2608695652173913,0.2927025645464419,0.5824382545893211,0.7985928261462918,0.8694443409960451,0.8775371365724867,0.9018155233018117,2.6804000000000006,,1.8642857142857143,1.3160696029047632,1.0167537152098685,1.882479212802707,-3.8307874129876494,1.2370447252638197,1.1729504303727523,-1.6115788340285533,89.84820000000006,14.268263091671919,0.0,10.216698334856808,0.0,25.807221274690605,33.85386430029279,22.16890514445263,0.0,11.49902366656781,3.8501476017100584,0.0,5.14166355650266,2.3978952727983707,6.642486801367256,4.59511985013459,8.24354550792826,6.555356891810665,9.898826707653933,32.0,3.569114307760141,0.0,0.0,0.0,0.0,0.0,2.1707043388343004,0.0,43.99200000000001,0.0,12.597591175359032,0.0,0.0,0.0,0.0,0.0,-0.16856198034769432,51.0346206584194,14.790514511606428,0.0,11.49902366656781,50.702794589642735,0.0,0.0,30.12336912131146,16.605453652755635,0.0,0.0,0.0,30.911248022645907,29.76780778443115,27.967950499161958,202.55605502544492,,166.75527445380482,165.43027107119187,165.7956362817501,166.80601372201843,249.62469824185638,167.56547683866182,169.21516636854818,217.6250160753644,27.96795049916196,202.55605502544478,,165.2299497784802,164.23384415946032,164.87131472246844,165.26580345699801,252.41072545130191,166.44089072478562,168.14884779548208,218.7970734092033,4.822793731786548,149.92492966060215,,126.58180643793825,125.06073295286004,124.28496084052401,126.5742128863001,184.26625059255213,126.7267016344577,128.06309134081314,163.50461577707128,1.2712704772346344,9.207093410247497,,7.579785202445674,7.519557775963267,7.5361652855340955,7.58209153281902,11.346577192811653,7.616612583575537,7.691598471297644,9.892046185243837,2.413017227647444,101.27802751272246,,83.24007585434212,82.77495688118252,82.94403421883914,83.22340398135384,124.2899690191571,83.8389677250247,84.6608991129274,108.59274728758739,43.43529411764705,3.408309040922001,5.251838102040122,0.0,0.0,0.0,0.0,45.200655498907516,5.092165375409423,3.0204166666666667,10.661722411186696,0.0,0.4149006755479967,2.398466553287982,0.0,0.0,0.0,27.180093425605534,506.4595009966273,72.3365768433606,143.93993993492467,197.35895182401802,214.86872682834496,216.86872682834496,222.86872682834493,455.0,118.41124245511148,49.318765969487615,69.3250421899058,50.80000000000001,50.80000000000001,1.0,7.183775869897114,5.523561956057013,3.909334895240026,4.625084064507528,,4.621379243907593,4.620708410852287,4.618805101755574,4.621329196136492,4.5914181862527546,4.620636969473043,4.620547717020711,4.608458325523683,0.17769704069272846,0.2102310938412513,,0.21006269290489057,0.21003220049328578,0.20994568644343517,0.2100604180062042,0.20870082664785247,0.2100289531578656,0.21002489622821416,0.20947537843289468,2.151824616373125,2.3199519072732113,,2.319150558546759,2.319005389385517,2.3185933960222216,2.319139728870279,2.3126463097542,2.3189899281347346,2.3189706118986972,2.316350741816015,252.44999999999982,179.4684328553281,116.91214508980077,,116.18151040109692,116.59482955874165,117.02911788270626,116.17210438531605,119.46605336343002,116.61105237506516,116.61222445616848,117.95119948590462,8.15765603887855,5.314188413172762,,5.280977745504405,5.299764979942802,5.31950535830483,5.280550199332548,5.4302751528831825,5.3005023806847795,5.300555657098567,5.36141815845021,5.978456691296946,5.549880116429544,,5.543611073370032,5.547162289890446,5.550880134991189,5.543530110430896,5.571489619107113,5.547301418596936,5.5473114697472266,5.558728335610117,11.395056768077602,14.996057728647013,3.0204166666666667,0.43094482237339404,0.8378631792223072,3.9840149833081377,2.3182326047703032,4.927212041739459,3.0985588309397833,306.78129019942884,95.79382493572315,-205.49154387895598,-11.50303890614523,-4.566478752865688,-15.807041836842767,213.09565709613486,457.12085930348474,12.345354554863142,10.158241317855218,14.285026853233898,1080.0,34.0,1.2185983953900972,0.7651598822189263,0.0,0.0,0.35904227504831654,0.16266038810128594,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.2222222222222222,0.14993277820691392,0.36738245417346466,0.21081099663585878,16.112519696192862,14.903504192517095,10.61692216278033,8.33934429969683,8.786360683807231,6.1468978193829065,7.748940741218525,4.750462330421457,6.350410554975362,3.457668775361804,4.457612113983181,1.942505591088967,2.6143629038583978,1.0755620396029688,1.5426573156112944,0.5028187077879978,3.3918969887620825,1.808365348713532,5.694188850334907,2.5996406678487114,8.366263736142736,2.9367575504733474,75.6221163804267,39.003328309606964,30.11497702978864,27.147554701110373,26.21639387542246,25.453637637179057,108.0,127.0,49.71223899999997,31.073760999999994,0.3111111111111111,67.06,8.277777777777777,5.222222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,45.0,0.0,1.0,46.0,6.0,1.0,4.0,42.0,7.0,23.0,39.0,0.0,1.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,4.0,1.0,1.0,22.0,6.0,0.0,2.0,3.0,0.0,2.0,6.0,0.0,0.0,1.0,0.0,1.0,3.332204510175204,5.070475294452272,3.817712325956905,4.340553386467307,4.802995929318011,5.172257988762215,5.159055299214529,5.215784582038187,5.125636686790762,5.140200498450899 +30751,Nc1nc(F)nc2c1ncn2[C@@H]1O[C@H](COP(=O)(O)O)[C@@H](O)[C@@H]1O,0,37.08108108108108,7.549948648648646,3.918918918918919,12.954287620954288,174.04748591564424,149.97079866438963,1.5596903990010003,7.503370270270268,9.893767481473244,8.906502945945943,220.11852006494857,38.41025641025641,7.176871794871795,4.641025641025641,9.236467236467236,157.41954544514107,151.19661104582565,1.6865681208717949,7.271702564102564,3.9440883190883187,8.593045846153846,263.62176201402417,31.893939393939394,7.597721212121213,4.196969696969697,11.38047138047138,165.10427868191425,122.90617569422426,1.4656937550863336,7.604454545454545,6.6651000748222975,8.944320878787877,232.2062765752337,24.71764705882353,7.168243529411764,3.447058823529412,7.678431372549019,166.6419532548616,92.36313642640472,1.2616104282816825,7.181609411764704,4.896211571048172,8.6287892,192.60555051894045,22.75824175824176,7.036787912087912,3.142857142857143,6.43956043956044,170.72633763385943,84.54261489885712,1.180683152959769,7.040952747252748,4.5596651291095736,8.52086567032967,175.88233344782935,23.50574712643678,7.04377011494253,3.0344827586206895,6.73690932311622,172.1690521667978,88.05290294531035,1.176980265561908,7.041954022988506,4.918416820396386,8.539369586206895,171.5860246957125,25.30263157894737,7.199897368421052,2.9210526315789473,7.165204678362573,170.33428722955136,94.66554679398945,1.1736628760215921,7.199225000000001,5.940586419753086,8.68275605263158,176.98622763530935,23.1,7.404699999999999,2.585714285714286,6.698412698412698,176.00554130150448,85.09671889646857,1.0777424782706142,7.360731428571429,6.825543797766021,8.884585485714288,157.6634261973349,22.74074074074074,7.0830074074074085,2.4814814814814814,5.0514403292181065,176.80806782604282,84.02903068619999,1.100301746922074,7.068909259259259,5.775339125133364,8.607447296296296,153.3665229713865,11.263696128560994,0.30221154127100053,0.0504377268759522,0.8327246165084005,5.420663907150395,2.0200866400914284,52.54100577707557,0.35151458122343887,0.26436186997808614,4.001768535302071,0.19299676552227896,39.707913895160914,1.6912588263939614,-0.12549213725159672,-0.037358235873883226,0.114607330823547,-0.5585539339293094,-0.7055771185329349,7.56646486739681,-0.08770894735582832,-0.1003039351201513,-1.4031532678767875,-0.07887238367889718,2.4396025014737805,-0.7980941629590272,0.061001112291652775,0.011116601978265453,-0.01003829382207763,0.9207684342819478,0.4418323522346012,-3.6714885471056617,-0.0007487659244086457,0.049566549350333174,0.9989504426545636,0.0406055682205547,-0.5722957095988864,-1.4713272891333307,-0.015592177201048411,-0.0019631491547056424,-0.05975164353542734,-0.27691623791252823,-0.34951399985963183,-6.701708445652362,-0.022962068365557267,-0.014606989214970138,-0.17106259939763396,-0.010884692390323554,-4.178163447116151,-0.56010242496729,-0.023281425440884882,-0.0006524293244493584,-0.006469790253574036,-0.4342122540320737,0.1352945279845722,-2.4438782773010925,-0.004048898300828087,-0.02129664871286494,-0.39407845024572885,-0.018499770571284088,-1.4100086500864832,0.6148375775589194,0.0010772440660604989,-0.00013418869742617888,-0.017875284417688892,0.06656661839430825,-0.0027996188643488306,2.8113899983249615,0.01631824547444386,0.0022328488787015984,-0.1846224756385078,0.00251679117234661,2.3451185962275765,-0.7604955595709505,0.005955635115912505,-0.0013520381024121374,-0.14140171465918266,-0.13643669748458742,-0.20450492731080422,-3.7391223878796676,-0.06648873682958016,0.0066695667217715445,0.029349100229282284,0.0038356089442927958,-4.4205673543919595,-1.5304914953563604,-0.001001541271000741,0.007207974216917071,-0.10029218407596788,-0.8902001100199298,-0.09831933724607407,-7.098731919111499,0.019742290530815776,-0.005667313993530183,0.028248743146279752,0.0024047321611186637,-5.734347827557956,-0.7471796120444772,-0.06334917890863834,-0.012015576989118947,0.0046127208289370525,-0.9974691074123839,-0.27140538719061,-3.6285465046168004,-0.009686991481878952,-0.053589847956064175,-0.6078415912874857,-0.040385061818575325,-2.275518723983074,,,0.4424603174603176,1.1875,0.4375,0.041666666666666664,0.75,-0.3125,0.819377171081845,0.030987131146384145,0.041737131146384145,1.0090107969787077,0.23330997745527213,0.23212845649722272,1.8283879680605528,0.46543843395249485,2.0087573175367157,0.8984222986855109,0.4228224890023151,0.52583585610954,0.07376237714639612,1.1103350188512047,9.866315205567574,1372.0,279.3480999999999,145.0,479.30864197530866,6439.756978878837,5548.919550582416,57.70854476303701,277.6246999999999,366.06939681451,329.5406089999999,8144.385242403097,1498.0,279.898,181.0,360.22222222222223,6139.362272360501,5896.6678307872,65.776156714,283.5964,153.81944444444443,335.128788,10281.248718546942,2105.0,501.44960000000003,277.0,751.1111111111111,10896.88239300634,8111.807595818801,96.73578783569802,501.894,439.89660493827165,590.3251779999999,15325.614253965423,2101.0,609.3006999999999,293.0,652.6666666666666,14164.566026663235,7850.866596244401,107.236886403943,610.4367999999998,416.17798353909467,733.447082,16371.471794109937,2071.0,640.3477,286.0,586.0,15536.096724681209,7693.377955795999,107.44216691933899,640.7267,414.9295267489712,775.3987759999999,16005.292343752471,2045.0,612.8080000000001,264.0,586.1111111111111,14978.707538511408,7660.602556242,102.397283103886,612.65,427.9022633744856,742.9251539999999,14927.984148526988,1923.0,547.1922,222.0,544.5555555555555,12945.405829445903,7194.581556343198,89.19837857764101,547.1411,451.4845679012345,659.8894600000001,13450.95330028351,1617.0,518.329,181.0,468.88888888888886,12320.387891105314,5956.7703227528,75.441973478943,515.2512,477.78806584362144,621.9209840000001,11036.439833813443,1228.0,382.48240000000004,134.0,272.77777777777777,9547.635662606312,4537.567657054799,59.41629433379199,381.7211,311.86831275720164,464.80215400000003,8281.792240454872,416.7567567567568,11.181827027027019,1.8661958944102315,30.810810810810818,200.56456456456462,74.74320568338285,1944.017213751796,13.006039505267239,9.781389189189188,148.06543580617662,7.140880324324321,1469.192814120954,65.9590942293645,-4.894193352812272,-1.4569711990814458,4.469685902118333,-21.78360342324307,-27.51750762278446,295.0921298284756,-3.4206489468773045,-3.9118534696859006,-54.722977447194715,-3.0760229634769902,95.14449755747744,-52.6742147552958,4.026073411249083,0.73369573056552,-0.6625273922571235,60.77071666260855,29.16093524748368,-242.3182441089737,-0.04941855101097062,3.2713922571219896,65.9307292152012,2.67996750255661,-37.771516833526505,-125.0628195763331,-1.325335062089115,-0.1668676781499796,-5.078889700511324,-23.537880222564898,-29.708689988068706,-569.6452178804508,-1.9517758110723678,-1.2415940832724617,-14.540320948798886,-0.9251988531775021,-355.14389300487284,-50.96932067202339,-2.1186097151205243,-0.059371068524891615,-0.5887509130752373,-39.513315116918704,12.311802046596071,-222.39292323439943,-0.3684497453753559,-1.9379950328707094,-35.861138972361324,-1.683479121986852,-128.31078715786998,53.49086924762599,0.0937202337472634,-0.011674416676077562,-1.5551497443389337,5.791295800304818,-0.24356684119834826,244.59092985427165,1.419687356276616,0.19425785244703905,-16.06215538055018,0.21896083199415506,204.02531787179916,-57.79766252739224,0.45262826880935036,-0.10275489578332245,-10.746530314097882,-10.369189008828645,-15.54237447562112,-284.17330147885474,-5.053143999048092,0.5068870708546374,2.2305316174254535,0.2915062797662525,-335.9631189337889,-107.13440467494523,-0.07010788897005188,0.504558195184195,-7.020452885317751,-62.314007701395084,-6.882353607225185,-496.9112343378049,1.3819603371571043,-0.3967119795471128,1.9774120202395826,0.16833125127830645,-401.40434792905694,-40.34769905040177,-3.4208556610664704,-0.6488411574124231,0.24908692476260086,-53.86333180026873,-14.655890908292942,-195.9415112493072,-0.5230975400214635,-2.8938517896274654,-32.823445929524226,-2.1807933382030678,-122.87801109508598,0.7352458287921863,0.5288861371343608,0.42963547749461084,0.31054098719981316,0.2899994891682154,0.15684774351188938,0.17158936599177016,0.07695811634992356,0.10507969842729681,0.03920748382238721,0.06579967025595244,0.020815841316863044,0.043201709091597526,0.011062992190891493,0.026263434061640886,0.005947816958289748,15.011175359799967,5.761422362008059,4.10781765083494,2.007539981667668,0.5741717676932996,-0.4053969398670425,4.027561543904066,0.9785244593709698,7.004081711297929,0.5402241569649147,17.42477730945992,10.461886693976457,30.978991175497832,11.784889656207474,3.6574701244634698,0.5454427724277121,3.988799951515232,2.130201642750686,8.001921309594188,0.2977780355509492,4.010160729500976,2.4498610053509275,24.437081548844695,13.304116745561393,0.3968517877024009,0.7610445964335949,0.8712662600324793,0.9047064677021316,0.9146075082920578,0.9146075082920578,1.6618534839525692,812.2360674845535,0.0,2.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,3.0428681679337264,1.0545824326663205,0.45283479735576737,0.2702702702702702,0.21621621621621578,0.21621621621621578,-45.70925865553184,1998.3505200598038,118.40027533941088,54.00947351512984,121.44220877183953,,11.0,440.0,45.04755326897369,19.16851812228756,16.981740716219015,0.0,10.894419722555895,0.0,0.0,0.0,19.475682724553444,20.257353636467187,10.619047619047622,28.5,10.5,1.0,18.0,0.0,0.05753968253968241,-7.5,0.34209251268074753,0.024783024783024743,-0.3173094878977228,0.1490079365079362,0.2906090753749759,0.0,0.7832689832689832,1.045039682539682,0.44117647058823567,0.7584859584859585,0.8960317460317457,19.665052105964282,0.7436911475132195,1.0016911475132195,24.216259127488986,5.599439458926531,5.5710829559333455,43.88131123345327,11.170522414859876,0.4233909246250241,0.22152466367712997,0.09417040358744391,0.4143497757847533,0.5,0.5418747410321012,-1.9840313368934681,-0.14631064327100274,-0.05362246856468834,-0.1526177951456514,0.45812525896789874,1.6773892584170123,0.07062487543128028,0.045334844822081416,0.06989121910070885,1.1488646866834966,0.750853038012571,1.1560185977440232,1.804128007553325,1.123481781376518,0.7842250181592576,1.5572796528223483,0.7477353210882692,1.6940764734971578,1.0888259901775363,1.0988725315064665,1.1823594572584128,0.9303965798449538,0.8166961443226034,0.6437677834401188,0.7133491887032712,1.0976076555023921,0.6631784697305448,0.8417460312870944,0.8127815618059697,0.9255670304658425,0.6415541583834156,0.5281212960056707,0.6775068031206327,0.912383493006483,0.9562920576791026,0.9001805791739187,0.954148568197269,1.0378328173374611,0.943493547625674,1.067144999386697,0.9524153865975552,0.9002260947970815,0.9045355364681553,0.7997529220996944,0.9349997861926563,1.0768393196093355,0.9302604010775217,0.9440575217782253,0.9121233263471544,0.9308849045691149,1.0127821211548826,0.8149805507195298,0.9287837797795968,0.8116344564069371,0.955507773570979,0.8900716062286683,0.9669134285031442,1.0273666619498447,0.9233865557493626,0.9519997515606725,0.8763370905784192,0.9669691470054445,0.9851628656534758,0.9635780373899149,0.9273739014125143,0.8723666915069992,0.95336362854898,0.9359806330264988,0.9313402851168304,0.9604541824056422,1.0922690968666802,0.9670580925328905,1.0019174122365475,1.1530470914127422,0.997170544346132,1.073549403964574,1.094020191688131,1.2699359302408213,0.9598273369204668,0.9932753902819744,0.972631904032501,1.1098121863853394,1.1186381322957197,1.0614240384252829,0.8824206343322216,1.051578947368421,1.1938205323454165,0.9301654510018741,1.118091479457676,0.7918014063412129,1.0850649792028813,1.1248768872389532,1.0501247508496954,1.0693318325147452,1.2189364461738001,1.3059344683152236,1.3031895355338912,0.9628654970760232,1.2343141038864818,1.198036838317844,1.2243991860183068,1.1611864122118616,1.3013284466861224,1.3312729246576438,1.263738492100722,1.0723160812023915,7.0,0.1612080399959188,3.555555555555557,2.486111111111111,1.7844444444444445,1.0558333333333332,0.7766439909297053,0.44798752834467115,0.24413422776518012,0.17969907407407412,5745.752167395455,6196.820600919618,2826.6648401698603,2664.797852675433,13.558703685347666,0.47708299190750764,7.090076764754651,0.9123493489871768,0.0,0.5,2.1665851976952237,4.15487093296263,4.756618568273183,4.93918309535868,4.993237149412734,4.993237149412734,0.2692307692307692,0.017912004443990975,0.08888888888888893,0.06542397660818713,0.050984126984126986,0.03199494949494949,0.025053031965474357,0.018666147014361298,0.014360836927363535,0.012835648148148148,0.5953503797062603,18.781065088757398,6.9575,3.9077277970011535,132.469085162347,1.0,4.1204326818094446,114.9240468333023,,79.87044466257639,84.96836355797872,87.29420381194402,79.7141452241952,144.19258086152917,86.5316133454918,86.99808874367288,126.59901976103623,0.1501513186338089,-0.4152460118624816,-0.7406804030991126,0.1376293297345928,-0.10304160956972838,-0.3492806221920267,0.1440106590174597,-0.2495172378072034,-0.3794190710198329,-0.35063329013127725,-0.40867204932402035,0.061438697281226036,-0.07085544157528588,0.20184904929541253,0.2204025174569405,-0.012054758107389712,0.16986266812582912,0.21871950611712576,-0.06987853568474298,-0.002130113413226223,0.1874950776919603,0.2496272420161748,0.21039507118510398,-0.014412636007771498,-0.13062561989776456,-0.0515935861862619,-0.03892223691075254,-0.07175438596491229,-0.05108529926514134,-0.1730193116092352,-0.12755196339572963,-0.06532323150191462,-0.05525376717974101,-0.04274675006527368,-0.056398315074700354,-0.10522243646814523,-0.04972634369521531,-0.07703685088587618,-0.012935343538656278,-0.00776942355889724,-0.08010314999594505,0.06697461648399833,-0.04651373229644937,-0.011518436267240988,-0.08055870052148704,-0.09847607295857307,-0.09585533996500337,-0.03550951212922613,0.05458577455759797,0.00356453648834843,-0.0026604826533163537,-0.02146602137527727,0.012280159687912077,-0.0013858904904307078,0.05350849220993811,0.04642267019947953,0.00844618355471115,-0.046135220967889315,0.013040587315211143,0.059059224375757724,-0.06751740733155845,0.01970684207117008,-0.026806087152527185,-0.16980609418282544,-0.025169739320051523,-0.10123572091024194,-0.07116579388952435,-0.18914929957718268,0.025228928522575543,0.007334032433504274,0.01987395453966831,-0.1113271114182274,-0.13587826570316844,-0.0033140404459359625,0.14290838749820234,-0.12043859649122805,-0.16422344666041133,-0.04867085168269029,-0.13510841321215789,0.05616350383561092,-0.021437713366152106,0.007059064735273955,0.012459960946034968,-0.14441322308439838,-0.0663352068021329,-0.2096186619551752,-0.23822598148941873,0.005539311241065634,-0.18401235060831253,-0.13435334000244975,-0.06906123038474438,-0.027557865304373968,-0.2027139842841421,-0.1518932406822983,-0.20925253181983194,-0.05730642838581315,0.19999999999999996,4.9973364337250334,10.051997297324872,26.433989784322584,45.6525077091665,49.34357769926029,50.3379270668868,50.39241355337329,50.39241355337329,48.210175620881174,21.56213516845226,10.147739736055563,12.62006054662896,1.770297051513507,26.648040452428912,6579.6383933774805,6130.304674731611,780.0194660239822,117.0,40.0,51.0,69.0,85.0,100.0,111.0,127.0,125.0,365.0536626060002,26.0,4.890349128221754,5.752572638825633,6.675823221634848,7.563719668414366,8.488587934405903,9.388904879892426,10.314437590874862,11.222372609093426,12.148258134152357,0.8468468468468469,1.0768648648648653,1.1647932643530452,0.8218011084433863,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6581859362356371,1.0551139374668783,1.0749689966732943,0.6526730186323102,1.0,3.0,0.0,0.0,0.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,4.0,1.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,30.470408426148595,18.31189916324491,23.209641886953886,0.0,0.0,9.090846809503173,9.549026805878537,14.358372089569237,0.0,0.0,0.0,0.0,12.934202039277459,295.74741343173855,-1082.8556705487708,-79.85423757253422,-29.266369474291107,-83.29659004221315,250.0381547762067,915.494849511033,38.546037766876665,24.74310404083873,38.14561872962638,0.45454545454545453,0.4537172814513614,0.1058112461767642,275.7351470913436,0.12813897580140038,8.250628212516709,0.5462827185486386,6.0,0.15384615384615385,0.4158949213347352,0.7975637060839688,0.9130744119251568,0.9481192648630918,0.9584954118904736,0.9584954118904736,-1.7239000000000007,,3.397619047619048,3.104990431644299,2.618119766007114,3.4373690942759874,-11.62522870556544,2.811880485027711,2.6624296605323563,-4.7786652777525624,73.6131,38.21595144330438,0.0,19.519035210632982,0.0,24.539800333979777,12.340549441675103,12.405493922113369,0.0,0.0,3.970291913552122,0.0,5.3612921657094255,3.044522437723423,6.914730892718563,5.476463551931511,8.545002892055505,7.627057417018934,10.220594923172552,31.333333333333336,1.1547330483119171,10.728376974178442,0.0,0.0,0.0,-0.009802160318859165,-1.3316332382611238,1.1268069727891157,39.844000000000015,0.0,10.720945485223984,0.0,0.0,0.0,0.0,0.0,0.0,43.09735078106267,5.733667477162185,10.208277825509848,0.0,64.43769433357716,13.825658400443196,6.078173847348826,6.22790117073487,6.3273200747645415,0.0,11.16387793838399,0.0,30.40664101240529,24.352879640718573,29.24741028097047,229.84809366660463,,160.03504245089528,169.6779779133204,174.37023097672073,159.74101224833143,291.1008562512217,172.82890331723132,173.77430834896808,253.7910117418302,29.24741028097047,229.84809366660463,,157.2056906449167,166.85265131061067,172.02235889908656,156.8784373065756,300.0103904286236,170.2596610186931,171.33505677602105,257.97670479982503,4.883370504209312,170.34953771311433,,120.01155228655236,126.29137428179729,130.73767768380645,119.83890595414087,217.2993459721797,128.79183738016854,129.5706236228348,192.17255732656594,1.2186420950404362,9.577003902775193,,6.668126768787303,7.06991574638835,7.2654262906966975,6.655875510347143,12.129202343800905,7.201204304884638,7.240596181207003,10.574625489242925,2.522321872435359,114.9240468333023,,79.87044466257639,84.96836355797872,87.29420381194402,79.7141452241952,144.19258086152917,86.5316133454918,86.99808874367288,126.59901976103623,39.039215686274495,0.0,0.0,0.0,13.341778387357394,5.527615723822434,37.38497163016824,39.77385287691189,-0.6695255416981607,0.0,9.607997317754261,0.0,-5.501638479465862,0.0,0.0,0.0,0.0,24.148901689395476,247.63234426269554,80.16365231472328,153.7302245196173,175.99488702610776,182.74977452827116,184.74977452827116,184.74977452827116,875.0,126.44502580551557,298.1532239452498,75.15995619388204,195.88,186.07,0.8333333333333334,8.462722155985109,5.700439718141092,4.174998297865696,4.822359146618519,,4.842370907140762,4.821185556200164,4.819584211873861,4.842855904584238,4.815132071228392,4.822171520246231,4.824359048680185,4.817826148375687,0.17395826241107068,0.20093163110910495,,0.20176545446419844,0.20088273150834016,0.20081600882807757,0.20178566269100992,0.20063050296784968,0.20092381334359297,0.20101496036167435,0.2007427561823203,2.3045826879597966,2.4487319951809865,,2.4528731949890075,2.4484886011883593,2.4481563985988246,2.4529733469943884,2.447232211351056,2.4486930868341124,2.449146623669106,2.4477915571212994,215.18999999999983,223.66354529264353,139.06187640444847,,136.96936522377374,139.04036178222674,139.14156183079808,136.90321752097023,140.1551233571639,138.96522503171008,138.79761499907644,139.499152546963,9.319314387193481,5.794244850185353,,5.707056884323905,5.793348407592781,5.797565076283253,5.704300730040426,5.839796806548495,5.790217709654587,5.7832339582948515,5.8124646894567915,6.285611630087561,5.810387725421787,,5.795226026671943,5.810233000868652,5.810960582673547,5.794742972081909,5.8182185705374465,5.809692459556463,5.808485602275202,5.813527263664703,34.79752816312475,28.096211731078856,20.017136873267827,5.517813563503575,-0.2169740265379685,0.0,-5.4615646428771,-0.6695255416981607,-4.775070564306225,254.51130310314778,161.41467008587153,-591.0069974376565,-43.58329042733784,-15.973162092909638,-45.46207672597358,136.46721637819815,499.6638766318265,21.037871124759697,13.504429098157473,20.819328192992774,1330.0,38.0,3.1809354668483842,1.0310881914019971,0.3535533905932738,0.044721359549995794,0.5487952876394917,0.12262987850565153,0.0,0.0,0.0,0.0,0.0,0.0,0.17479246499677625,0.07422843462213273,0.49275936539252807,0.14944344478376304,0.9086172255151967,0.18823298096561147,17.64589989101247,12.69326729122466,11.170522414859882,8.074065667195143,11.599979566728615,6.273909740475575,8.751057665580278,3.924863933846101,7.25049919148348,2.705316383744717,5.592971971755958,1.769346511933359,4.320170909159753,1.1062992190891492,2.915241180842138,0.660207682370162,4.970912928774048,1.4996013411976041,7.719999182779323,1.8936540567710267,11.306399295948237,2.2650194946237496,79.98661788933083,37.922534822561204,30.398579055423895,28.5514625273875,28.37797856167783,28.37797856167783,132.0,157.0,40.66930899999998,30.894690999999998,0.3783783783783784,124.14,9.8125,4.986111111111109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,9.0,10.0,37.0,0.0,0.0,39.0,10.0,1.0,5.0,34.0,11.0,26.0,28.0,0.0,0.0,0.0,10.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,10.0,5.0,3.0,24.0,14.0,0.0,5.0,7.0,1.0,3.0,4.0,0.0,0.0,1.0,2.0,2.0,3.4965075614664802,6.921060896589514,4.1470951276076295,4.657525416322019,5.268824187153266,5.7549507612306,6.143145662211796,6.4745294776275735,6.84085146273828,6.851986524118724 +4499,COC(=O)C1=C(C)NC(C)=C(C(=O)OCC(C)C)C1c1ccccc1[N+](=O)[O-],0,23.576923076923077,6.413649999999999,3.1538461538461537,8.692307692307692,163.63651174648032,93.03592423076927,1.3986141099303073,6.455669230769228,6.395299145299145,7.933981230769229,211.56386364535442,24.88679245283019,6.46733962264151,3.7735849056603774,7.566037735849057,147.33292995496225,94.24963035849058,1.7331439892452833,6.5955886792452825,3.44811320754717,7.878696226415092,256.368615181981,20.82608695652174,6.317826086956522,3.5652173913043477,6.565217391304348,154.99832894780687,78.14334822826085,1.4700376924737393,6.408253260869566,3.823067632850241,7.824019608695649,213.38880685964318,20.353982300884955,6.281132743362833,3.4424778761061945,5.752212389380531,153.79203563681762,75.38037670796461,1.4756256132684864,6.38595575221239,3.242379547689282,7.769532601769911,213.20138196638905,18.896551724137932,6.43135172413793,3.027586206896552,5.393103448275862,161.159372857485,69.60792344137931,1.2634828979135864,6.489478620689654,3.7647509578544054,7.978010068965516,185.94168162986514,20.807142857142857,6.6439571428571425,3.0642857142857145,5.835714285714285,156.72927182156744,76.32177310000002,1.3591496564749284,6.7145785714285715,4.258531746031746,8.156993657142856,204.54646609813773,19.896103896103895,6.597752597402598,2.6298701298701297,5.337662337662338,159.2717138593567,72.64505068181819,1.2739103574333441,6.654207142857142,4.465548340548341,8.103166779220778,186.6402592944397,16.107142857142858,6.487648809523811,2.1904761904761907,3.6904761904761907,164.46981645942543,56.66067462499999,1.1025412869391191,6.518232142857142,4.986607142857143,8.054285166666668,154.1030447221528,10.070967741935483,6.078600000000002,1.8193548387096774,0.9612903225806452,166.00819422186785,30.827940187096768,1.0191417135394905,6.119929032258064,3.031541218637993,7.719752696774195,127.5219898514764,7.883136094674558,0.16941789940828395,0.0240197098484697,0.6671597633136093,4.844674556213018,1.3949903396395438,37.24077023668638,0.22159641926424845,0.1555692307692307,2.7216880341880336,0.11120253254437865,48.09010119668355,0.3672267500279109,0.01837622250753599,-0.01060774147493287,0.33937144133080277,1.9020598414647762,-0.019513942633920756,1.6426939752149123,-0.008416205723281922,0.016073584905660403,-0.11700733752620543,0.010630918834431145,-0.9966633895611312,1.5980511962953436,0.03197440828402365,0.0002451625531717419,0.12130177514792903,1.159506045793671,0.10154132485842023,7.557237828531,0.04067700144222471,0.029852173913043473,0.5869565217391305,0.02117951093388217,9.160842461988574,0.1835759543383775,-0.004468954547834738,-0.0015309569570252477,0.0540791747394879,0.48650311567261867,-0.16611087590630166,0.8206946162748058,-0.026113196669364253,-0.0016610619469026582,-0.026978859390363808,-0.004915874954181265,-1.930418398925803,0.930922260763109,-0.005457236278310558,0.004981476517335155,-0.010395837584166482,0.06885329524586818,0.16419274545459853,4.534294565435624,0.028607131448992858,-0.0024199999999999925,-0.16661877394636018,-0.007729089573556489,7.9045618870948084,-0.9356086221470841,-0.04387506973795435,-0.008929862055529562,-0.11468723584108198,-0.7408284023668639,-0.21692929465801639,-4.267792367455623,-0.01629478786815951,-0.03803857142857138,-0.553670634920635,-0.03101401825866457,-2.8733988751120285,-0.24402520556366736,0.021768089602704984,0.001536784096326194,-0.2183585645124107,-0.1893299008683624,-0.18402507391266987,-1.3786064529701079,-0.043780285622139134,0.018190909090909122,0.016143578643578613,0.014577005917159644,-8.141924683927055,-0.6931177796562414,0.02361206854043393,0.005624846405333076,-0.1474711186249648,-0.5415610030994646,-0.06852830295703066,-3.4821614793603834,-0.022929518366522333,0.01763095238095241,0.767278439153439,0.020874084671738423,-7.464073522136063,-3.013905325443787,-0.05064797384997136,-0.004122548211258753,-0.027953807978621896,-1.5059648787936628,-0.008302434999620207,-14.166642992517653,-0.02443185989535472,-0.050298709677419326,-0.6317652329749104,-0.027379989616338946,-11.707574807800341,,,0.4571428571428572,1.0803571428571428,0.4642857142857143,0.017857142857142856,0.6160714285714286,-0.15178571428571427,1.0636360343648605,0.0260916640865178,0.03223452122937494,1.0052272904819646,0.22179225515356826,0.24905227941609592,2.068863324846825,0.4708445345696642,1.9740327947019847,1.444665993968862,0.1439854890137144,0.38538131171940787,0.0,0.5293668007331223,7.464681470923089,1226.0,333.5097999999999,164.0,452.0,8509.098610816976,4837.868060000002,72.72793371637599,335.6947999999999,332.55555555555554,412.5670239999999,11001.32090955843,1319.0,342.769,200.0,401.0,7808.645287613,4995.230409000001,91.85663143000002,349.5662,182.75,417.5708999999999,13587.536604644993,1916.0,581.24,328.0,604.0,14259.846263198233,7189.188036999998,135.24346770758402,589.5593000000001,351.7222222222222,719.8098039999998,19631.770231087172,2300.0,709.7680000000001,389.0,650.0,17378.50002696039,8517.982568000001,166.74569429933896,721.613,366.38888888888886,877.957184,24091.756162201964,2740.0,932.5459999999999,439.0,782.0,23368.109064335327,10093.148899,183.20502019747002,940.9744,545.8888888888888,1156.81146,26961.543836330446,2913.0,930.154,429.0,817.0,21942.09805501944,10685.048234000002,190.28095190648997,940.041,596.1944444444445,1141.9791119999998,28636.50525373928,3064.0,1016.0539000000001,405.0,822.0,24527.843934340934,11187.337805000001,196.182195044735,1024.7478999999998,687.6944444444445,1247.8876839999998,28742.599931343713,2706.0,1089.9250000000002,368.0,620.0,27630.929165183472,9518.993336999998,185.226936205772,1095.0629999999999,837.7500000000001,1353.1199080000001,25889.31151332167,1561.0,942.1830000000002,282.0,149.0,25731.270104389518,4778.330728999999,157.96696559862102,948.5889999999999,469.8888888888889,1196.5616680000003,19765.908426978844,409.923076923077,8.809730769230764,1.2490249121204244,34.69230769230768,251.92307692307696,72.53949766125628,1936.520052307692,11.52301380174092,8.089599999999997,141.52777777777774,5.78253169230769,2500.6852622275446,19.463017751479278,0.9739397928994075,-0.5622102981714421,17.986686390532547,100.80917159763314,-1.0342389595978,87.06278068639035,-0.4460589033339418,0.8519000000000014,-6.2013888888888875,0.5634386982248507,-52.82315964673995,147.02071005917162,2.9416455621301756,0.022554954891800257,11.15976331360947,106.67455621301772,9.341801886974661,695.265880224852,3.7422841326846736,2.7463999999999995,54.0,1.9485150059171596,842.7975065029489,20.744082840236658,-0.5049918639053255,-0.17299813614385298,6.110946745562133,54.97485207100591,-18.770528977412088,92.73849163905305,-2.9507912236381606,-0.18770000000000037,-3.0486111111111103,-0.5554938698224829,-218.13727907861573,134.9837278106508,-0.7912992603550308,0.7223140950135974,-1.5073964497041399,9.983727810650887,23.807948090916785,657.4727119881654,4.1480340601039645,-0.3508999999999989,-24.159722222222225,-1.120717988165691,1146.1614736287472,-130.98520710059177,-6.142509763313609,-1.2501806877741386,-16.056213017751478,-103.71597633136095,-30.370101252122293,-597.4909314437873,-2.2812703015423317,-5.325399999999993,-77.51388888888889,-4.34196255621304,-402.27584251568396,-37.57988165680477,3.3522857988165677,0.23666475083423388,-33.62721893491125,-29.15680473372781,-28.33986138255116,-212.30539375739662,-6.742163985809427,2.801400000000005,2.4861111111111063,2.244858911242585,-1253.8564013247665,-116.44378698224855,3.9668275147929,0.9449741960959568,-24.775147928994084,-90.98224852071006,-11.512754896781152,-585.0031285325445,-3.8521590855757517,2.962000000000005,128.90277777777774,3.506846224852055,-1253.9643517188586,-467.155325443787,-7.850435946745561,-0.6389949727451067,-4.332840236686394,-233.42455621301775,-1.286877424941132,-2195.829663840236,-3.786938283779982,-7.796299999999996,-97.92361111111111,-4.243898390532537,-1814.674095209053,0.7502752575206523,0.5925147972018874,0.45460851613622755,0.3073396858462113,0.29542724931171627,0.17024898712254705,0.1727700326242361,0.08179439157035046,0.10705355568039968,0.04329671414691134,0.06650261319661512,0.023004006082310638,0.042750489687621525,0.012202954861270399,0.02884505304940732,0.006747554947534982,8.054934997230426,5.68672278766272,3.607825570965195,2.185507491170357,0.47194969425517097,-0.4966797099878908,3.288998513868006,0.9724682589504111,7.004123177981626,0.9884093029292392,14.594785293895036,10.94822051029475,16.028472372857404,11.698636868812365,1.9967448653742252,0.6692109462434321,3.5533233525621553,2.235132541417435,8.001939177682832,1.2388606949195826,3.757250618441342,2.430949458014438,20.90178201692353,14.651513713570791,0.2673017890069155,0.5932501263277471,0.7673466291699977,0.7997722250718248,0.8192275826129213,0.8257127017932867,2.3982025004031713,869.2018167430791,0.0,2.0,5.0,0.0,7.0,0.0,3.0,2.0,0.0,4.115143017680421,2.182029043415223,1.1495084136695635,0.9572007213618718,0.8418161059772551,0.8033545675157168,260.41436087644263,1599.1859165366086,50.42532838617783,30.753575318011706,61.2579380498033,,10.0,453.0,22.779827670882764,19.703392636909218,34.9218348371934,11.394078626111666,0.0,25.30889874666236,19.913841467842857,13.847474399381248,5.316788604006331,9.473725907600098,12.8,30.25,13.0,0.5,17.25,0.0,0.04285714285714283,-4.25,0.18264540337711094,0.05148883374689872,-0.13115656963021222,0.02044334975369455,0.20199999999999974,0.0,0.6192307692307693,0.8928571428571425,0.4365853658536583,0.5677419354838705,0.8724137931034479,29.781808962216093,0.7305665944224984,0.9025665944224983,28.14636413349501,6.210183144299911,6.973463823650686,57.9281730957111,13.183646967950597,0.5120000000000002,0.2994791666666667,0.0,0.421875,0.4,0.2845301920091763,-0.7529719594325551,-0.044242884491706304,-0.014480229989087599,-0.05019813062883702,0.7154698079908238,1.893397320802814,0.039202097487602394,0.036411486938515654,0.05117290056223822,-4.6484612850027265,0.7511763685352839,0.5554978830391814,1.4637169281474969,0.7627703635526925,0.3724182629987036,1.2854151950288089,0.762450477302922,1.2112120710921424,0.5540726877836158,0.5557335160257005,0.5724436041435416,1.0699556210014427,0.6957694567053121,0.6323722590120116,1.038241327846025,1.1345078569362774,0.6821440424825753,1.0210830472172612,0.7000288224088321,0.9022032827218376,0.6286676855092528,0.4168216921961003,0.6387629909653583,0.8380618622875782,0.8373144440920193,0.7448334154915417,1.1767694040997145,1.2163824735592494,0.7497547794366005,1.2781381103011256,0.8454237726861888,1.2069784647184378,0.7315882907891789,0.6076754062198756,0.7473791481970675,1.0686858362148124,0.873469176464498,1.1240105519924093,1.0652121494353686,1.2267451640033646,1.0513061331929454,0.8935385196161107,0.8674381685555218,0.8589632846837696,1.0954292100883893,1.076917870799635,1.1818936788991412,0.7987124046895823,1.0961725598477332,1.4585540183775312,1.731606734739635,1.4123139056065892,1.2898495092693563,1.211416271496895,1.0875321710222399,1.1001249648747224,1.4158220784358049,1.4814166549838783,1.5382112915506438,1.008876424119605,1.0070229545271765,0.9951438818022099,1.2115032826943892,1.3889264837158413,1.0818855953207096,1.1944459367486482,1.0100591592019836,1.1898946983976897,0.986745648413098,1.1319539145839443,1.018430236139855,1.1143092577430824,1.1182411602283995,1.0546638379389426,0.8941841761230724,1.0850490972442197,1.1640458015267172,1.0171146652595222,1.1186752433548146,1.0340736983216796,1.0656709584793171,0.8913202719753262,1.0248333616122636,1.0832039523957737,1.3862081489597393,1.2806450091914214,0.9330502218849056,0.7682283098490812,1.2675528195025854,0.9297180951900158,1.3838096914718216,1.0426182311581371,1.31121567476521,1.3178080977555482,1.2124909673194089,1.2109604710072077,6.0,0.024691358024691357,3.555555555555557,2.9375,2.4577777777777787,1.9305555555555556,1.2865306122448978,0.5625,0.34089191232048366,0.16437500000000005,18310.340516147695,18999.211720745297,2692.422655270002,2452.896615020164,12.898622641262325,0.4708069232823055,6.825861800950125,0.8896694684716446,1.0,0.4,1.5852967004606704,3.5184106747258688,4.550931304471528,4.74323899677922,4.858623612163837,4.897085150625375,0.20689655172413793,0.0030864197530864196,0.08672086720867214,0.061197916666666664,0.044686868686868705,0.03328544061302682,0.022570712495524524,0.0125,0.016232948205737317,0.010273437500000003,0.4974511628537205,24.271105826397147,10.85782272456871,5.795610425240055,162.90852806836088,1.0,4.231504161834146,134.72673997931153,,112.16340073476778,110.57872400293778,113.20709850018949,112.18900885241327,161.29835881539944,111.6683652147498,112.24125561906007,137.07531371646814,0.04658383993598569,0.10846683007945179,-0.44162654511035615,0.5086809187131325,0.392608382543569,-0.013988586214126061,0.044110096670252875,-0.03797988140433712,0.10332110550513514,-0.04299072342474124,0.09559961082890414,-0.020724917701563587,0.2027176972594581,0.18873099239040744,0.010206724174370543,0.18181818181818193,0.2393362097577165,0.07278998425512956,0.20292914943757698,0.1835634419422561,0.19188996285085308,0.21565900072534888,0.1904588901824683,0.1904933080619164,0.02328717304048474,-0.02637829038987732,-0.06373752916598138,0.08105880737005285,0.10042018509761531,-0.11907672131207993,0.022037530670252586,-0.11784123929468773,-0.010677316707740588,-0.009912546570905017,-0.04420650179184939,-0.04014169966144573,0.1180903449570016,-0.032211686589024714,0.20739120283971813,-0.015582231057420275,0.014212161095025003,0.11770170788209533,0.1217561972165879,0.12909563946915376,-0.015555775316455654,-0.061218909681567485,-0.06950461825563162,0.1643698326764996,-0.11868482427686783,-0.2589754086858252,-0.37177227001759494,-0.17190370605004757,-0.15291603053435113,-0.15550594759965827,-0.1146000026404224,-0.07353362442525917,-0.24451217789330898,-0.20342913220243944,-0.2788966901116889,-0.05975031874772157,-0.030955346023839196,0.12848754280824592,0.0639801274045824,-0.3272957641028596,-0.03908000396550014,-0.13191852924244674,-0.037018741669634536,-0.1975676582117159,0.1169312787686999,0.005931458139505235,0.13108519728489332,-0.16930562592553972,-0.08792411691642317,0.13937174656811607,0.23417628442715915,-0.2210431844578187,-0.11178480552526351,-0.049124571697563096,-0.09350401340330118,-0.10347422779959016,0.11333187349306834,0.2819127062012244,0.18771231368681288,-0.1552101853894791,-0.3823231375492587,-0.2989529089126155,-0.17163189052932715,-0.041899721049996466,-0.31084954444718044,-0.00595160752279152,-0.38040682033375084,-0.11025385688304065,-0.3233204241527153,-0.2321225743138435,-0.24621732068388055,-0.2434508249404086,3.588708172143258,13.025423259337884,17.138593315488635,15.170710101054768,34.835798726815504,38.305656967489604,39.345887736720364,40.4619646597973,40.92392619825885,55.27291825165557,40.45064783112814,4.0315936923840034,10.79067672814342,0.0,14.822270420527424,4872.975135983852,4036.1133535541035,1909.7804291300208,79.0,41.0,54.0,74.0,96.0,108.0,110.0,98.0,96.0,388.1634364880006,29.0,4.948759890378168,5.802118375377063,6.705639094860003,7.596392304064196,8.512984346642183,9.418573310554638,10.34048362692364,11.253079028112849,12.177297586081995,0.6602564102564101,0.9995384615384618,1.131178244328782,0.6218978756652558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6496433901427915,0.984313725490196,1.0185444562720603,0.6212818346928871,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,6.0,0.0,5.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,14.790514511606428,0.0,0.0,0.0,5.687386274683562,10.114318268765572,9.589074368143644,0.0,0.0,32.046575604766076,19.76538044554264,23.023897186270272,35.704105660908056,171.93997802531263,-455.0166758905317,-26.735723662798822,-8.750320690202534,-30.334445059368786,432.3543389017552,1144.1692406460768,23.68960472337901,22.00325462780917,30.92349299043451,0.5,0.8441624518555124,0.17593161851960035,16.559820461200413,0.12706614035354452,3.346455646231446,0.15583754814448758,5.0,0.20689655172413793,0.2781007744745758,0.6172174163212131,0.7983474134440252,0.8320830025944009,0.8523243560846266,0.8590714739147018,3.201800000000002,,1.7857142857142856,2.0856212191717076,1.489304286185103,1.7805938315565375,-7.530129222398548,1.8746940024479808,1.771494787537799,-3.0326161248350116,102.18610000000007,23.98611132456141,0.0,5.316788604006331,5.917906046161393,33.61285484492389,13.716679505790452,62.48352572055921,0.0,0.0,4.07753744390572,0.0,5.407171771460119,0.0,6.93828448401696,0.0,8.577535420422398,0.0,10.283258713552488,34.33333333333333,6.034502839716133,0.0,0.0,0.0,0.0,0.0,0.03718479675821018,0.0,51.97600000000001,0.0,36.985309447113195,0.0,-0.5337265106659945,0.0,0.0,0.0,-0.06909034601494524,58.821268705096664,5.316788604006331,5.687386274683562,0.0,30.57860113051182,19.06280027574374,16.032224314926967,39.17630633662088,46.80575596009664,0.0,0.0,0.0,32.3386895345933,33.78145628742516,34.15199508674782,269.453479958623,,224.19925044912742,221.008475061649,226.30781812279434,224.25083243114392,324.51103410797884,223.20282371503902,224.35597589615318,274.80047374540095,34.15199508674782,269.453479958623,,222.57013971314404,219.1220763845925,225.00042013553855,222.62632569050942,330.1268468531973,221.4993964279255,222.7389834081485,277.18324355777133,5.03762646731934,177.5259512135454,,150.88939923397373,148.82968648389638,152.6872261595201,150.92396095847855,217.951591353786,150.26395357934047,150.98886972301528,184.17319634800052,1.2197141102409934,9.623338569950821,,8.007116087468836,7.893159823630321,8.082422075814083,8.008958301112283,11.589679789570672,7.97152941839425,8.012713424862614,9.814302633764319,2.5188132336596705,134.72673997931153,,112.16340073476778,110.57872400293778,113.20709850018949,112.18900885241327,161.29835881539944,111.6683652147498,112.24125561906007,137.07531371646814,51.18431372549019,0.0,8.355404820815174,0.0,0.0,0.0,0.0,52.96431172614713,0.18995063303099036,2.9993176020408163,10.273361546779206,0.0,-0.8627451814058964,0.0,0.0,0.0,0.0,32.30665540403013,510.1225722195057,82.43542842395486,182.95735508574518,236.64842783251947,246.64842783251945,252.6484278325195,254.6484278325195,813.0,133.75532756299475,94.17174470756217,63.28378783335769,107.77000000000001,107.77000000000001,1.0,8.20448386705526,5.857980995127572,4.311893804500435,5.199060411242945,,5.194541973675709,5.195521597038705,5.190484664888011,5.1945160123154785,5.13789023356446,5.194706990352247,5.194506775288071,5.167257613402247,0.15399620730358696,0.1856807289729623,,0.1855193562027039,0.18555434275138233,0.18537445231742897,0.18551842901126708,0.18349607977015928,0.1855252496554374,0.18551809911743108,0.184544914764366,2.4909966225857967,2.6780973362965215,,2.677227871084259,2.6774164403570517,2.6764464943703925,2.677222873256686,2.666261951990286,2.6772596378995743,2.6772210950283393,2.671961522685255,291.72000000000054,290.17869213427724,171.01454606824106,,170.16609271138591,169.98693586366556,170.53110862543164,170.16973101528848,176.81585343922177,170.1208479374683,170.17388689502977,173.68468240467007,10.36352471908133,6.107662359580038,,6.077360453978068,6.070961995130913,6.090396736622559,6.07749039340316,6.314851908543635,6.0757445691952965,6.0776388176796345,6.20302437159536,6.700116330174239,6.171368034792575,,6.166394393211312,6.165341003417681,6.168537152542913,6.166415773880928,6.204728232138576,6.166128471903266,6.16644019555081,6.186860902340972,10.273361546779206,36.4515829364472,14.589847953873928,1.2684975224657784,-2.16314825312841,6.034502839716133,0.0,7.322127074531476,1.223228379314689,372.5064568518528,103.90235157326134,-274.9639913476938,-16.156245868361857,-5.287769064378729,-18.33093275651293,261.26926989709017,691.4149697251829,14.31549350458656,13.296441725484286,18.68689107365359,1814.0,48.0,2.2898895256885017,1.1521659292158655,0.0,0.0,0.6253429948075898,0.18833491631854135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12869425449598476,0.04581997368995358,0.26551430732207915,0.09307408205899381,21.007707210578264,16.590414321652847,13.1836469679506,8.912850889540127,12.112517221780367,6.980208472024429,9.329581761708749,4.4168971447989245,7.9219631203495755,3.203956846871439,6.384250866875051,2.2083845839018212,4.617052886263124,1.317919125017203,3.1729558354348053,0.742231044228848,4.865991247918207,1.867221299107521,8.361564168816226,2.6940441081570876,14.14750755491081,3.89063226374594,95.76562545707168,43.47767503418193,33.0688940774299,30.803221954029954,28.668352885871634,27.8144052586083,140.0,165.0,56.41503199999998,31.020967999999993,0.23076923076923078,85.08,12.222222222222221,6.333333333333331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,52.0,0.0,0.0,53.0,6.0,5.0,8.0,45.0,11.0,29.0,42.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,7.0,1.0,1.0,28.0,8.0,0.0,2.0,6.0,0.0,2.0,6.0,0.0,0.0,0.0,0.0,1.0,3.6375861597263857,6.673613973458386,4.182050142641207,4.6798137289838575,5.203319637925757,5.68549120468395,5.957131868027477,6.2000653636058605,6.333890010202311,6.574727104763479 +4829,CCc1ccc(CCOc2ccc(CC3SC(=O)NC3=O)cc2)nc1,0,27.77777777777778,6.157853333333331,3.2444444444444445,7.432098765432099,159.8579910316129,109.9884284444445,1.6586882243773329,6.244175555555554,4.563656454808719,7.70758562222222,231.1349763546434,27.340425531914892,6.2851914893617025,3.851063829787234,6.695035460992907,143.9105074524978,104.43398657446816,1.9509249827659585,6.448393617021278,3.060283687943262,7.726827744680847,275.8975372478432,24.02469135802469,6.189170370370371,3.4074074074074074,4.823045267489712,150.4664780983811,90.03945125925927,1.6757637635301614,6.32176049382716,2.888850784941321,7.7142639506172825,228.67851088498068,17.99019607843137,6.090294117647059,2.8137254901960786,3.437908496732026,156.1747533743115,64.3845327352941,1.4054853938699512,6.192864705882353,2.787369886226095,7.675927882352941,187.46918815601651,15.646464646464647,6.036191919191919,2.5757575757575757,3.090909090909091,158.3950187701428,54.8110681212121,1.3256007400796566,6.1229010101010095,3.062102506546951,7.610935878787877,170.98139575232196,14.70103092783505,5.795701030927835,2.4948453608247423,2.9690721649484537,160.53202975811266,52.12501256701031,1.2558513953466084,5.885680412371134,2.4547537227949605,7.431487175257732,158.87285723778473,16.576923076923077,6.048384615384616,2.7564102564102564,3.7777777777777772,159.0478657661781,59.233845679487146,1.3160231752363198,6.1363782051282065,2.918645140867363,7.647904794871795,175.30256068229863,17.402985074626866,6.160164179104479,2.716417910447761,3.8805970149253732,158.5116155466006,62.444698029850755,1.3152217096789556,6.246017910447762,3.0910724156992826,7.72544176119403,180.37159564225433,15.104477611940299,5.980567164179103,2.4477611940298507,3.5422885572139307,161.35912286912966,53.88785762686566,1.229089262407194,6.051995522388059,2.814262023217247,7.58621023880597,160.69225296865753,10.323950617283948,0.11936622222222217,0.018150829214130523,0.5402469135802468,3.892126200274348,1.547397343965283,47.24794765432099,0.2938484891380245,0.11249906172839502,1.637163372792088,0.07513572543209873,52.00746886623308,0.6164749146309432,-0.0011551583924350084,-0.009594701590240834,0.11743630154977676,1.0144143828619794,-0.07999566653140207,2.857481189650653,0.008488642175668065,0.00033436616758600573,-0.023588963078986336,-0.0023306318150774904,1.1964434650433646,0.8354458161865567,0.011980444444444429,0.003129980490020529,-0.06013717421124824,-0.12300563938424008,-0.13200466064699987,3.5806021069958907,-0.019255233142454007,0.011796,0.023448529563959108,0.010209250699588468,-2.0105643297963347,-1.0910530137981123,-0.01478190849673203,-0.003303576545198991,-0.0925344952795933,-0.664868877592189,-0.13762669584720216,-5.047054230573709,-0.03557605537403449,-0.01335740595497458,-0.19935588887793093,-0.008484039375453884,-4.638134969747516,-0.9549270482603816,-0.0005080404040403944,0.0011476290368040132,-0.0021997755331088728,-0.40725277466018217,-0.03273040154880346,-4.7686579663299655,-0.020461896253034805,-0.003722989898989883,0.11698564674330568,0.0037241217059483774,-9.069653776158505,1.015339187985236,0.006561475372279508,0.0007489677654160496,0.028367061219294887,0.46373481538048156,0.019662915281862578,4.8798682024945865,0.015052787167135663,0.008444970344915355,0.05939690136777906,0.0009028099630902406,5.516834639285846,-0.30201329534662874,-0.008879042735042735,-0.0005189541019777812,-0.04195631528964863,-0.015203123351271483,-0.07474361653335661,-1.153047912155746,-0.0023434601322283987,-0.007023306742640081,0.041675160264552154,-0.008613553067426397,1.587870951173487,-0.2489920766537682,-0.019430102819237148,-0.002304192929770024,0.020947116270499347,-0.18024118092664237,-0.12933700683788746,-1.4538745133591298,-0.027736476288661507,-0.016352196056753268,-0.18218381243202278,-0.009049859428782017,-4.429610988301075,1.1937939929979733,0.02139934991708126,0.0021200740278989293,0.07136170996867512,0.7170501402452758,0.1753690559573793,5.477460194766903,0.03359866596701342,0.01913795319697808,0.11549446285819291,0.01442862348995761,4.70317011798941,,,0.4853333333333334,1.24,0.62,0.02,0.62,0.0,0.802118683547811,0.011154078863531609,0.021474078863531608,0.8186674014093935,0.23147089606152627,0.25394356756986597,1.6207860849572047,0.48541446363139223,2.0356600245629153,1.5719848570741377,0.16054707914813926,0.22273376433180694,0.0,0.4636751674887779,7.913765855555568,1250.0,277.1033999999999,146.0,334.44444444444446,7193.609596422581,4949.479280000002,74.64097009697998,280.9878999999999,205.36454046639233,346.8413529999999,10401.073935958953,1285.0,295.404,181.0,314.66666666666663,6763.793850267396,4908.397369000004,91.69347419000005,303.07450000000006,143.83333333333331,363.1609039999998,12967.18425064863,1946.0,501.32280000000003,276.0,390.66666666666663,12187.784725968868,7293.195552000001,135.73686484594307,512.0626,233.996913580247,624.8553799999999,18522.959381683435,1835.0,621.21,287.0,350.66666666666663,15929.824844179775,6567.222338999999,143.35951017473502,631.6722,284.3117283950617,782.9446439999999,19121.857191913685,1549.0,597.583,255.0,306.0,15681.106858244137,5426.295743999998,131.234473267886,606.1672,303.14814814814815,753.4826519999998,16927.158179479873,1426.0,562.183,242.0,288.0,15571.606886536927,5056.126219,121.81758534862101,570.9110000000001,238.11111111111117,720.854256,15410.66715206512,1293.0,471.774,215.0,294.66666666666663,12405.733529761892,4620.239962999997,102.64980766843296,478.6375000000001,227.6543209876543,596.536574,13673.599733219293,1166.0,412.73100000000005,182.0,260.0,10620.278241622242,4183.794768000001,88.11985454849003,418.4832,207.10185185185193,517.604598,12084.89690803104,1012.0,400.6979999999999,164.0,237.33333333333334,10811.061232231687,3610.486460999999,82.348980581282,405.48369999999994,188.55555555555554,508.27608599999996,10766.380948900054,464.57777777777767,5.371479999999997,0.8167873146358735,24.311111111111106,175.14567901234565,69.63288047843774,2126.1576444444445,13.223182011211104,5.062457777777776,73.67235177564396,3.381107644444443,2340.3360989804887,28.97432098765433,-0.05429244444444539,-0.45095097474131923,5.519506172839508,47.67747599451303,-3.759796326975897,134.3016159135807,0.398966182256399,0.01571520987654227,-1.1086812647123578,-0.10953969530864205,56.232842857038136,67.67111111111109,0.9704159999999987,0.25352841969166284,-4.871111111111108,-9.963456790123447,-10.692377512406988,290.0287706666671,-1.5596738845387745,0.9554759999999999,1.8993308946806877,0.8269493066666659,-162.8557107135031,-111.28740740740746,-1.507754666666667,-0.33696480761029707,-9.438518518518517,-67.81662551440328,-14.03792297641462,-514.7995315185183,-3.628757648151518,-1.3624554074074071,-20.334300665548955,-0.8653720162962961,-473.08976691424664,-94.53777777777778,-0.05029599999999905,0.11361527464359732,-0.2177777777777784,-40.31802469135803,-3.240309753331543,-472.0971386666666,-2.0257277290504456,-0.3685759999999984,11.581579027587262,0.36868804888888934,-897.8957238396921,98.4879012345679,0.6364631111111123,0.07264987324535681,2.751604938271604,44.98227709190671,1.90730278234067,473.3472156419749,1.4601203552121593,0.8191621234567894,5.761499432674569,0.08757256641975333,535.1329600107271,-23.55703703703704,-0.6925653333333334,-0.04047841995426693,-3.272592592592593,-1.1858436213991757,-5.830002089601815,-89.93773714814819,-0.1827898903138151,-0.5478179259259264,3.250662500635068,-0.6718571392592589,123.85393419153198,-16.68246913580247,-1.301816888888889,-0.1543809262945916,1.4034567901234563,-12.07615912208504,-8.66557945813846,-97.4095923950617,-1.858343911340321,-1.095597135802469,-12.206315432945527,-0.6063405817283951,-296.78393621617204,79.98419753086421,1.4337564444444444,0.14204495986922827,4.781234567901233,48.042359396433476,11.749726749144413,366.98983304938247,2.251110619789899,1.2822428641975312,7.738129011498925,0.96671777382716,315.1123979052905,0.7059221440850239,0.5937573046618535,0.4494578366957335,0.34028699240217875,0.2961749077341852,0.19490567887589863,0.19670093310758102,0.11395482290441987,0.12846492563610312,0.06431598145665052,0.08503570100556516,0.034709440620868476,0.05700114553504514,0.021135099909131153,0.03774335169525614,0.01228406674897111,16.002004287289914,5.693520188871675,3.5464090957591075,2.192815565738704,0.4188281775366848,-0.5243999061252234,3.127976365372405,0.9773104044927998,6.023389522246414,0.6593775890005589,14.548034767783225,10.337949572936845,32.06099913424266,11.704815632461273,2.916435129197503,0.7512030023638167,3.4920054964211023,2.242775867578958,7.009359951062332,0.6240090856239743,3.704839557375436,2.438849434637252,24.434232138081267,14.701792366891336,0.28147671831204174,0.6157632279653229,0.7970403046225787,0.8932097228464004,0.9008972646439594,0.9008972646439594,1.2568221177341843,744.269451387341,0.0,2.0,2.0,0.0,8.0,4.0,2.0,0.0,0.0,3.864534936785308,1.931904377101056,0.8838763891292754,0.3278863889369683,0.283441944492524,0.283441944492524,109.9662431205723,1249.705871916553,63.391969193996104,27.77124159814562,56.474450476886574,,17.0,701.0,0.0,9.589074368143644,16.396329472505965,13.027703587438928,41.61041951507249,5.563451491696996,0.0,36.52867891392113,23.29087139310577,4.736862953800049,12.133333333333335,31.0,15.5,0.5,15.5,0.0,0.014666666666666614,0.0,0.1561919666145017,0.05400673400673395,-0.10218523260776774,0.02056410256410257,0.13253035143769942,0.0,0.5970370370370373,0.8346666666666664,0.44084507042253557,0.5430303030303033,0.8141025641025639,20.052967088695276,0.2788519715882902,0.5368519715882902,20.46668503523484,5.7867724015381565,6.348589189246649,40.519652123930115,12.135361590784806,0.5814696485623005,0.09615384615384613,0.0,0.28846153846153844,0.3157894736842105,0.41004838389924747,-0.8383444488843373,-0.06750315007245394,-0.018629876641874165,-0.049314379346137506,0.5899516161007528,1.2061568387742583,0.0362052228789962,0.026803485306094634,0.04307702995622351,-5.724766879290721,0.7365186824102214,0.6774209699169245,1.4953699783210748,0.8856820568672451,0.5199589189591284,1.1526856370666145,0.7381162766084848,0.9433371188673189,0.6623702209063517,0.543453391334665,0.692583586749199,0.9289474261804594,0.9213729179289308,0.7307345323683466,0.8624918356954938,1.2736136502132849,0.9504296638816053,1.1455181139033022,0.9164626871924015,1.1212443820044975,0.7238566696291665,0.6246676793374182,0.6998808285921667,1.0117385955616522,1.0947321624526596,1.126608111949867,1.221515690742485,1.153349822561566,1.1697576371739098,1.0743683032718327,1.0927067990152746,1.1187105292257145,1.1147356103504145,1.0273724430304552,1.1353140112709046,1.0605021078402275,0.9045250167416055,0.9440890695963786,0.8598766160380266,0.8043875685557588,1.0301124989426793,0.9867837003217612,0.9277088107420988,0.9324554094812622,0.9742786332154869,0.7657009423327291,0.8735208430447029,1.1317771734901807,0.8821667138423245,0.7426231815086922,0.7427778205794955,0.8676190655685183,0.8038734423955594,0.9187503184688071,0.8809265661647421,0.9320087044052017,0.7517908188897847,0.6423477789652287,0.7516423668891794,0.9160878363380923,0.9829162036662278,1.1290599754486805,1.185507339237513,1.1021656588384194,1.0435269188476397,1.0019849279845119,0.9812544234383913,0.9591264437890527,1.1113331053886937,0.8746168421877818,1.1839582780491864,0.9414500932526982,0.8135135096544449,1.2840892456999817,1.2386492384108836,0.8644164915823079,1.0694532525294693,1.0453149429895099,0.8367042001901839,0.9227316651530731,1.2478234898220177,1.2210702078508007,1.2566181296121455,1.015613135275,0.7117359723909871,0.8580930862157673,0.9448021762619235,0.6888318917296516,0.7982362414672627,0.7897136433905559,0.729121320249603,0.7398932133826155,0.8692338572795302,0.7105365301850248,0.8506645426641817,0.8848501397560561,5.5,0.06958677685950414,2.222222222222223,1.2916666666666665,0.8444444444444446,0.6322222222222222,0.41396825396825393,0.17619756235827666,0.20736489040060466,0.12719135802469136,4797.593298444061,5349.642439404744,2436.1941673264937,2232.7914415947484,15.578945307586121,0.45100027117438585,8.552836749253855,0.8214945244857177,1.0,0.3157894736842105,1.627318159544367,3.5599487192286188,4.607976707200399,5.1639667073927065,5.208411151837151,5.208411151837151,0.20370370370370366,0.004639118457300276,0.06172839506172842,0.039141414141414144,0.03247863247863249,0.025288888888888892,0.01724867724867725,0.008390360112298888,0.01152027168892248,0.00794945987654321,0.41208892165810973,19.753086419753085,9.796296296296296,6.0,150.73141270671883,1.0,4.137631016257426,158.89773206313316,,121.78304588741585,126.29257241959593,129.26183320447143,121.80256254689947,163.28052333808364,126.98405119312744,126.98991213248189,146.8286930409572,0.05971308247047069,-0.009677431110155003,-0.5286095459909516,0.2173752382434168,0.2606324488631626,-0.05169691342910617,0.060478419307369136,0.028887819707934033,0.0029721685003316874,-0.014408435633859016,-0.031018956716984344,0.023005223886605645,0.08092307365243365,0.10036712414455598,0.17244283735444008,-0.11131423928498876,-0.03160371299768483,-0.08530753989064715,0.0757832304842649,-0.06552775955710144,0.10485420783756334,0.014322657074821426,0.13587744898816104,-0.03865914595781713,-0.10568173504932449,-0.12383661157687299,-0.18200692134919863,-0.1712818582643295,-0.1708240800478987,-0.08894076003421776,-0.10682060239948091,-0.12106938333558674,-0.1187334876376408,-0.12176908681870943,-0.11291618370173369,-0.08918209385804046,-0.09249628205908701,-0.00425614880476475,0.06322736131033493,-0.004071796576366973,-0.10463503846084841,-0.021151904956053607,-0.10092836203635303,-0.06963417206281289,-0.03309351955288523,0.07145630588094173,0.049565259196358215,-0.17439137058345025,0.09834793148713782,0.05496928067359052,0.04126355642380096,0.05250758589494712,0.11914691135857666,0.012707088685751116,0.10328212006576555,0.051226355498003494,0.07506702913935348,0.03628037516285321,0.012015721654356333,0.10607773767024767,-0.029253655557109126,-0.07438488518563288,-0.028591206266971682,-0.07766136970890174,-0.0039061229181622747,-0.04830279489935167,-0.024404190433662057,-0.007975062724000068,-0.06242991394538345,0.02545571258015476,-0.11463991354166925,0.030531594514964847,-0.024117906592551454,-0.1627772284111031,-0.12694697870751803,0.03877322710033015,-0.04630918209022553,-0.08358357815611529,-0.03077116754353176,-0.09439039952195676,-0.14535406611863266,-0.11128016632898326,-0.12044682308897794,-0.08517259318453567,0.11563344665746181,0.17927475225983475,0.11680315003175942,0.1320909165325111,0.1842309584398195,0.11333162528765064,0.11593011901472444,0.11434010113705802,0.17011655833346045,0.07054547198989905,0.19203412766669795,0.09043259017442858,13.277581787443234,17.33029191253973,4.105518486316646,17.709372337154086,35.443628811626795,42.12124283592266,43.17070297833873,43.21550297833873,43.21550297833873,50.89150061407288,39.29962142685344,4.013676978703481,5.5683441082951735,0.0,11.591879187219448,8283.169981104129,7876.252531098283,1011.8860649039634,72.0,36.0,44.0,53.0,61.0,56.0,59.0,62.0,68.0,356.11946350000056,27.0,4.844187086458591,5.659482215759621,6.502790045915623,7.3310603052186325,8.174984532943087,9.00859131751613,9.852246888342531,10.689008788520935,11.532541800405353,0.6962962962962964,0.9829333333333337,1.1173906359313497,0.659469560310456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6995590153027281,0.9710675381263615,1.006077526907826,0.6503479385756609,7.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,4.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,4.736862953800049,5.749511833283905,0.0,5.907179729351506,5.239211713172287,19.889841493097183,0.0,0.0,0.0,36.884723354466566,42.16764743463084,18.311593189387548,11.856819994495092,250.64296912996275,-512.4398731287823,-41.26144773184257,-11.387552736195163,-30.143521948751907,360.60921225053505,737.2659987877706,22.130521462153528,16.38368886195046,26.330928528134663,0.47058823529411764,0.7808860840757941,0.241229115179829,48.830515989608486,0.13986084938526866,42.733332923832386,0.21911391592420626,9.0,0.25925925925925924,0.2963149470680378,0.6482235880649849,0.8390568040285001,0.9402958558457979,0.9483886514222395,0.9483886514222395,3.159600000000001,,1.6607142857142856,1.2038881980944245,0.883001233280407,1.6581557966933946,-3.8591084983466093,1.1101591187270503,1.0973664910406058,-1.6780538154894666,97.87770000000003,14.325937321943691,0.0,10.30076712495354,0.0,31.436140098450828,6.606881964512918,59.415876960625184,0.0,5.749511833283905,4.007333185232471,0.0,5.293304824724492,2.3978952727983707,6.755768921984255,4.727387818712341,8.291797105048733,6.762729506931879,9.865006565717847,31.33333333333334,13.68760261899581,4.4177300678851905,0.0,0.0,0.0,0.0,4.040624993486542,0.0,44.23200000000001,0.0,22.77405183256412,0.0,0.0,0.0,0.0,0.0,-0.4792125075918954,50.28257861691073,10.05365155780638,4.794537184071822,5.749511833283905,27.98718995796609,24.05700205284985,0.0,23.744568177933076,42.59504598238274,0.0,0.0,0.0,29.67613021397052,31.480155688622766,32.362992493463196,317.79546412626644,,243.65381411767038,252.48883378334432,258.48595494714215,243.6942777424338,327.6036889342622,253.87928965675673,253.8920349456805,294.060118997632,32.362992493463196,317.7954641262662,,242.3109414343266,251.45794270810921,257.7442339111867,242.3533683266452,330.42015517451364,252.92003252899875,252.93324592974824,295.33543989740394,4.620107177560956,251.43778754396322,,193.80196951944743,199.59145882685672,204.85132172923596,193.83657992434988,265.78001440134824,200.7978198957743,200.89831040783315,234.66134498855075,1.2945196997385278,12.711818565050658,,9.746152564706815,10.099553351333773,10.339438197885686,9.747771109697352,13.104147557370489,10.155171586270269,10.15568139782722,11.76240475990528,2.3479874140277213,158.89773206313316,,121.78304588741585,126.29257241959593,129.26183320447143,121.80256254689947,163.28052333808364,126.98405119312744,126.98991213248189,146.8286930409572,43.698039215686265,0.0,2.110257349606203,0.0,0.0,0.0,0.0,45.27348871085216,2.8486857265337813,2.3035583972409883,5.75105266334929,1.048949612935306,-0.3366340883386687,0.0,0.0,0.0,0.0,29.26565723590474,477.31832230100383,73.22931717949652,160.19769236528785,207.35895182401796,232.3785018326718,234.3785018326718,234.3785018326718,563.0,125.5948929810805,133.93385907949403,73.10122320115039,93.58999999999999,68.28999999999999,0.8888888888888888,7.733492002515439,5.754887502163468,3.8768962645223413,4.924179872411968,,4.925380380740474,4.921430811876824,4.923270512572974,4.925389604830427,4.938491781361513,4.921954126954001,4.9223992993709205,4.929716111445004,0.15507585058089365,0.19696719489647874,,0.19701521522961898,0.19685723247507297,0.19693082050291896,0.19701558419321707,0.19753967125446054,0.19687816507816003,0.19689597197483683,0.19718864445780018,2.271325633569011,2.5104484692635234,,2.5106922381838803,2.5098900355218823,2.510263779865552,2.51069411094915,2.513350709041491,2.509996363798369,2.5100868059834354,2.5115721343853434,265.51000000000005,535.5977827035848,143.240210938219,,142.85850110416317,143.29389547255388,143.15419597746813,142.85773871229495,142.033326166845,143.25379254904922,143.21563715740317,142.74164161784185,21.423911308143392,5.729608437528761,,5.714340044166526,5.731755818902156,5.726167839098725,5.714309548491798,5.6813330466738,5.730151701961969,5.728625486296127,5.709665664713674,7.19967420584613,5.880813749624211,,5.878145369484923,5.8811884661676315,5.880213074741881,5.878140032778345,5.872352453255527,5.880908562155539,5.880642178465588,5.877327026106456,5.75105266334929,27.19178190044931,1.6988987298357607,3.254947897030676,0.5744901679305301,11.778819630838445,4.19476739594816,2.672958668349188,0.0,324.09235630009647,153.20606162837444,-313.22999027631363,-25.22114993300616,-6.960666450584747,-18.42529354566551,220.4231676140424,450.65545001669614,13.527329518829264,10.014565555926582,16.094837500596288,1917.0,33.0,1.5075406425847213,0.8289563001558996,0.0,0.0,0.11785113019775792,0.05103103630798288,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.08838834764831845,0.42715813814051906,0.18396313557207775,0.5072937788143271,0.15842354387883437,17.648053602125596,14.843932616546336,12.135361590784806,9.187748794858827,10.662296678430668,7.016604439532351,8.654841056733565,5.014012207794474,6.808641058713466,3.408747017202477,5.187177761339475,2.117275877872977,3.192064149962528,1.1835655949113446,2.226857750020112,0.7247599381892955,3.0450682651526737,1.4943892943126615,4.236883809051227,1.8070349489454656,5.300845475149479,1.8356810047663545,81.27223271623362,43.873957997697815,27.63188149462088,24.134963758772525,23.979770287824543,23.979770287824543,126.0,143.0,52.57185999999998,27.706139999999998,0.4666666666666667,129.06,7.527777777777779,5.611111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,45.0,0.0,0.0,47.0,12.0,2.0,8.0,39.0,14.0,27.0,33.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,5.0,1.0,2.0,25.0,6.0,0.0,2.0,3.0,0.0,3.0,7.0,1.0,0.0,0.0,1.0,2.0,3.58351893845611,6.290295180268526,4.0943445622221,4.52720864451838,4.975008116453105,5.434267706159869,5.3482972988530575,5.489970250770876,5.709598859977641,6.020112740696528 +64737,CCCCN1CCCCC1C(=O)Nc1c(C)cccc1C,0,17.102040816326532,5.696322448979592,2.6530612244897958,4.244897959183674,164.65151179023414,66.80742997959184,1.3410727619545306,5.773097959183674,2.8548752834467126,7.297985061224488,187.68710610125927,20.06,6.04758,3.3,4.26,146.64589151319197,73.65181483999999,1.7189181733999999,6.194599999999999,2.457222222222222,7.49981344,237.3781330526,15.344086021505376,5.870215053763442,2.967741935483871,3.043010752688172,156.6013168860665,54.69535515053763,1.392710895780473,5.974769892473118,2.1923536439665474,7.407075139784946,184.03702609955712,13.12,5.814183200000001,2.592,2.352,160.96379501382694,45.56024092,1.2335603701397602,5.898073600000001,2.200222222222222,7.39250896,158.49166825670193,11.656934306569344,5.802919708029197,2.335766423357664,1.854014598540146,164.02229421362892,39.27995270072992,1.135519462821635,5.874237226277373,2.22404703974047,7.405545167883213,143.4473162622837,11.021897810218977,5.778978102189782,2.18978102189781,1.6715328467153285,164.76610475103692,36.90850395620438,1.0820537324792556,5.84363503649635,2.4045012165450124,7.408466627737226,135.94883526618995,10.703125,5.774539062500001,2.171875,1.3984375,164.37380120842312,35.54524478125,1.0926619383278124,5.83823828125,2.346354166666667,7.416128625000001,136.66432710688065,10.458333333333334,5.660083333333334,2.175,1.0083333333333333,162.38643232172893,34.35273888333333,1.162649974483475,5.740395833333334,2.0000000000000004,7.282277466666667,142.4945137995625,8.073170731707316,5.492000000000002,1.8455284552845528,0.5691056910569106,161.4029825576152,24.156845772357723,1.0874123056724794,5.57529268292683,1.8170731707317076,7.14734718699187,124.37745177135625,6.704706372344855,0.06877659308621405,0.008711224920202317,0.4939608496459807,2.745522698875469,1.3710703050917155,32.15738865306122,0.22644513567480712,0.0697741774260724,0.8140589569160998,0.03595002748854643,51.204346949294965,0.276109954185756,0.002732059975010421,-0.004604736850603857,0.2280799666805497,1.1552936276551435,-0.19835604159780196,1.2889393093877515,-0.009026984098895253,0.003437822573927535,-0.011485260770975052,0.0005069782257392429,-0.4674169053527337,0.32689336432400473,0.008698280734281867,-0.00019514689426521,0.0076849699721889585,0.3685874613176409,-0.08549736414232958,1.5091220531051117,-0.003977197588203662,0.008192642850425227,0.07034354960622241,0.004789020130501158,0.0702069496627164,0.1204364847980008,0.0076984273219491885,0.0012710896815037347,-0.04498125780924617,0.07015077051228655,-0.059231908980418024,0.5198122465306114,-0.00887760517720682,0.006769202165764268,0.02960997732426303,0.004228930878800482,-1.3268825881383626,-0.3994777115374678,-0.006005879545323258,-0.0011544218038587383,-0.06345288003477871,-0.20388706652033678,-0.04172904469018103,-1.9237705764933712,-0.016028498876138903,-0.005379465672758002,-0.020850919443203067,-0.003196581935142615,-2.966539451474406,-0.16366659877119324,-0.0058787232813578205,0.000278005924548673,-0.00565457823230588,-0.2076111839045167,-0.004660105197565398,-0.7695493731565618,-0.004949145824235143,-0.0049529648534521785,-0.017664730125626894,-0.0036583951334146244,-0.6999579208072291,-0.3877420866305705,-0.013046331606622231,0.00040917620419781103,-0.0312695231153686,-0.48866683152852974,0.03492549377455976,-1.737790789540816,0.015135836468637984,-0.012483759696480625,-0.16268069727891157,-0.0074063387130362535,1.093659673333361,-0.7752846036373733,-0.01097788560322087,-0.00033802368106191694,-0.09855268638067471,-0.675964875746217,0.09249596931483796,-3.652966165136054,-0.0020000477409056333,-0.011304500555324162,-0.04053287981859411,-0.004866105719838957,-2.4056260868598107,-1.6104637972660443,-0.01033288975122154,-0.0006994252414927359,-0.04514717783579333,-0.44022985002861265,-0.16087369809152163,-7.72516575825452,-0.04229991229521151,-0.012347630221824902,-0.08713566727504009,-0.003634765500824503,-11.203423914851594,,,0.4825396825396825,0.9761904761904762,0.38095238095238093,0.023809523809523808,0.5952380952380952,-0.21428571428571427,1.046711409182342,0.013523076525585492,0.021713552716061683,0.5983311200985494,0.16848991601590024,0.3139019390000903,1.6450425292808912,0.4823918550159905,2.000425631539546,1.7129859698829581,0.20241218011247022,0.0850274815441175,0.0,0.28743966165658774,5.8820441533877705,838.0,279.1198,130.0,208.0,8067.924077721473,3273.5640690000005,65.712565335772,282.8818,139.8888888888889,357.60126799999995,9196.668198961705,1003.0,302.379,165.0,213.0,7332.294575659599,3682.5907419999994,85.94590867,309.72999999999996,122.86111111111111,374.99067199999996,11868.90665263,1427.0,545.9300000000001,276.0,283.0,14563.922470404186,5086.6680289999995,129.522113307584,555.6536,203.8888888888889,688.857988,17115.44342725881,1640.0,726.7729000000002,324.0,294.0,20120.47437672837,5695.030115,154.19504626747002,737.2592000000001,275.02777777777777,924.06362,19811.45853208774,1597.0,795.0,320.0,254.0,22471.054307267164,5381.35352,155.56616640656398,804.7705000000001,304.6944444444444,1014.5596880000002,19652.282327932866,1510.0,791.7200000000001,300.0,229.0,22572.95635089206,5056.465042,148.241361349658,800.578,329.4166666666667,1014.959928,18624.99043146802,1370.0,739.1410000000001,278.0,179.0,21039.84655467816,4549.791332,139.86072810596,747.2945,300.33333333333337,949.2644640000001,17493.033869680723,1255.0,679.21,261.0,121.0,19486.37187860747,4122.328665999999,139.517996938017,688.8475000000001,240.00000000000003,873.873296,17099.3416559475,993.0,675.5160000000002,227.0,70.0,19852.56685458667,2971.29203,133.75171359771497,685.7610000000001,223.50000000000003,879.123704,15298.426567876819,328.5306122448979,3.370053061224488,0.42685002108991354,24.204081632653054,134.53061224489798,67.18244494949406,1575.7120439999997,11.095811648065549,3.418934693877548,39.888888888888886,1.761551346938775,2509.0130005154533,13.8054977092878,0.13660299875052107,-0.23023684253019286,11.403998334027484,57.76468138275718,-9.917802079890098,64.44696546938758,-0.45134920494476266,0.17189112869637674,-0.5742630385487526,0.025348911286962143,-23.370845267636685,30.40108288213244,0.8089401082882136,-0.01814866116666453,0.7147022074135732,34.278633902540605,-7.951254865236651,140.34835093877538,-0.3698793757029406,0.7619157850895462,6.541950113378684,0.4453788721366077,6.529246318632625,15.0545605997501,0.9623034152436486,0.15888621018796684,-5.622657226155771,8.768846314035818,-7.403988622552253,64.97653081632643,-1.1097006471508526,0.8461502707205335,3.7012471655328785,0.5286163598500602,-165.8603235172953,-54.72844648063309,-0.8228054977092863,-0.15815578712864714,-8.693044564764683,-27.93252811328614,-5.7168791225548015,-263.5565689795919,-2.1959043460310297,-0.7369867971678463,-2.85657596371882,-0.4379317251145382,-406.4159048519936,-22.422324031653474,-0.8053850895460214,0.0380868116631682,-0.7746772178259055,-28.442732194918786,-0.6384344120664596,-105.42826412244897,-0.6780329779202146,-0.6785561849229484,-2.4200680272108843,-0.5012001332778036,-95.89423515059039,-49.63098708871303,-1.6699304456476456,0.05237455413731981,-4.00249895876718,-62.54935443565181,4.470463203143649,-222.43722106122445,1.937387067985662,-1.59792124114952,-20.82312925170068,-0.9480113552686404,139.9884381866702,-93.03415243648479,-1.3173462723865044,-0.040562841727430035,-11.826322365680966,-81.11578508954604,11.099516317780555,-438.35593981632644,-0.240005728908676,-1.3565400666388994,-4.863945578231293,-0.5839326863806747,-288.6751304231773,-198.08704706372345,-1.2709454394002493,-0.08602930470360652,-5.55310287380258,-54.14827155351936,-19.78746486525716,-950.195388265306,-5.202889212311016,-1.5187585172844629,-10.71768707482993,-0.44707615660141387,-1378.021141526746,0.7258226765804658,0.6483147824299124,0.46046495251526365,0.37467389586883115,0.2969976560258093,0.21231591186875962,0.19059263320040754,0.12012207691070768,0.1251046148510335,0.06966414029828698,0.083086642577485,0.04168567283577887,0.05488261965008191,0.025554758126171757,0.03510962187854616,0.014694210789817067,8.022019825353636,5.686007764003668,3.5437737851146776,2.185300892583707,0.3859811271246595,-0.3668235878186441,3.2304291412451773,0.9779090500367416,6.021928477886455,0.9877760060327165,14.543738493035779,10.94717033453387,16.010062782418274,11.697601148298903,1.9911033799354092,0.7518764518321506,3.4889872691142916,2.235077913397195,7.008269430790731,1.2448991419806015,3.7019114215110682,2.4309415494815285,20.8984027156353,14.702710709628295,0.225030355056109,0.48924613480035756,0.7194663642482314,0.8186692412367598,0.8612240190828266,0.8754089450315158,1.9096402975457576,463.856712264959,0.0,1.0,5.0,0.0,4.0,6.0,2.0,0.0,0.0,4.3196854661953985,2.799153377470847,1.4742618562760716,0.9033604593161302,0.6584625001324573,0.5768298470712319,269.66164278542055,797.7895970610965,25.661332880010136,16.281420348185648,30.38899715537424,,11.0,367.0,0.0,4.794537184071822,11.949020558499466,0.0,42.74544531575472,19.26246486877803,0.0,6.06636706846161,43.120644070851895,0.0,10.133333333333333,20.5,8.0,0.5,12.5,0.0,0.01746031746031748,-4.5,0.06569644251143081,0.022189239332096433,-0.043507203179334375,0.021572871572871577,0.09104918032786868,0.0,0.503401360544218,0.7746031746031744,0.4377049180327872,0.4812121212121216,0.7530303030303028,21.98093959282918,0.28398460703729533,0.4559846070372953,12.564953522069537,3.538288236333905,6.5919407190018955,34.54589311489872,10.1302289553358,0.6229508196721313,0.18092105263157895,0.0,0.2861842105263158,0.6111111111111112,0.25038871586475914,-0.3698095788133164,-0.02104162220314933,-0.007547134261496255,-0.020544976600739798,0.7496112841352409,1.107132293491581,0.026465010083432,0.022594536601869004,0.03571394495134132,-4.807646073187566,1.0519567648155053,0.8277234658692467,1.671785968425028,0.8329173693086006,0.5922815533980581,1.4834583459058976,1.0581366252728854,1.2864983194320196,0.8431679040732344,0.5953203342618385,0.7713346547412474,1.212410961761613,0.9952428472380862,0.8510404912915925,1.2186700246334488,1.3860632105749884,1.0224318822424052,1.232568586583088,0.9987855225725004,1.1008190622758902,0.8626191997638216,0.5118159762781922,0.7724569499548368,1.0688399408590494,1.0174759597465526,1.0304882258257908,1.151277369568827,1.3643979763912315,1.1388932038834951,1.1254100766029869,1.0180020179981568,1.0481538152248746,1.0207698925193311,0.9253704735376045,1.0204480199364159,1.0327327167972191,1.1005873695150055,1.3891128289549495,1.725045095721322,1.2376509397964086,1.2292537736517608,1.0727025790159161,1.0970018925392968,1.0250917309893284,1.3281278785123394,1.2223735843685828,1.426717341156192,1.0195384984360327,1.070193241577818,1.5479545741037786,1.5593768212341044,1.0422323703548706,1.2709233930975832,0.9771275116581496,1.0635141781306685,0.9653987924759925,1.459647908703559,1.8777219771059106,1.7301589643191515,0.9595555322312351,1.1100563734625422,1.7387764060518638,1.1902239039367244,1.1465008431703207,1.4076721783980581,0.9227439574777234,1.0989738509608045,0.8856341431229338,1.6418655963368471,2.4338440111420616,1.9983692250114973,0.9268306512609042,1.1037023232699716,1.1257270823568453,0.9897255389441667,1.2559865092748739,1.2695995145631065,0.952718143861166,1.1021347371258656,1.0034202891122497,1.1296559735160372,0.8809192200557104,1.074811247080727,1.0399063101771124,1.1676530034029378,0.8179707642487929,0.5588520825098089,0.7980915559577184,0.9021430262846316,1.0739917135808563,1.1716278207826425,1.1999419946758247,0.8927442082492079,0.778313744140227,0.711359670294871,1.2237435353407258,3.5,0.020610141822263034,2.666666666666668,1.5625,1.1155555555555556,0.6388888888888888,0.4693877551020408,0.2065972222222222,0.15520282186948853,0.06562500000000002,3610.92839999105,4359.574785443481,1904.7306009400959,1626.6517709969262,11.019776787227332,0.44990476560970216,6.061926694698583,0.8178670482545762,1.0,0.6111111111111112,1.2950243779198094,2.8155564666443613,4.140447987839137,4.711349384799078,4.956247343982751,5.0378799970439765,0.1590909090909091,0.004122028364452607,0.0919540229885058,0.050403225806451596,0.039841269841269844,0.02457264957264957,0.0195578231292517,0.009390782828282826,0.01108591584782061,0.008203125000000002,0.4182217524695936,17.355371900826448,8.585017835909632,4.733382030679328,128.27609529258223,1.0,3.946308531453936,94.45030860045986,,81.60912935710579,79.9103324191614,78.44965396621755,81.62362706566758,107.37797230407804,80.886463333734,81.71165307165163,99.46390970556816,0.04118151323145734,0.039723688720458734,-0.5285980895665948,0.4617369308600337,0.42079186893203874,-0.1446724072873369,0.04008221324479502,-0.03986389052692528,0.049270700146483264,-0.01410863509749303,0.014102304258342075,-0.00912846141394192,0.04875580617107315,0.12647152677915066,-0.022401774268581018,0.015557852363596707,0.13425037843198662,-0.062358118197746525,0.04692924756380836,-0.017563625627689473,0.1174165450980135,0.08641087848563812,0.13321325364846873,0.0013711130762440683,0.017962976767300284,0.11193382772390194,0.1459140009754465,-0.09106239460371002,0.025550970873786404,-0.043201219339701044,0.016164628668662993,-0.039204221149425594,0.09701586482959855,0.03637325905292478,0.11763359235671814,-0.025913475460439057,-0.05958168625925334,-0.0873244700823529,-0.13252117979200645,-0.12845730604005373,-0.07426165757210687,-0.030435379232715307,-0.059823594423306446,-0.07078314501379741,-0.077098231340064,-0.025613524998475082,-0.08891737109689377,-0.05793530487581489,-0.024410703419656794,-0.08547563956808125,0.03191352847565051,-0.011447421868268482,-0.07561809049677555,-0.0033988812829358656,-0.023930717181642316,-0.021855827503146293,-0.07098564305827863,-0.021699570989976213,-0.10176334731816765,-0.013669892548387765,-0.05783132997887937,-0.1896914490990876,0.04697114446544539,-0.06330364671163577,-0.17798681166565528,0.02547316038051271,-0.05404017124305233,0.06684107575785697,-0.1789166158168973,-0.1998389623955432,-0.20601760917695797,0.0213587271099533,-0.11563289435540648,-0.15961659498689734,-0.038803231940206455,-0.19951517706576732,-0.24620626011326863,0.06746260127678179,-0.11359648025363869,-0.008832372287200983,-0.16201553314335493,-0.04979108635097494,-0.13535749649674908,-0.04698089576734527,-0.24019900467360997,-0.15023846468040186,-0.08029011395064425,-0.09139829172322074,-0.16034464046096766,-0.11733439014329777,-0.24022988438519008,-0.1867998275571593,-0.17696561503584252,-0.10703852163869827,-0.1011060562327116,-0.21879829706539897,11.127013780758686,13.0527907534553,4.74510280626355,11.311277614395738,25.2070642640979,30.21722637310576,31.69089906287403,32.3868582465475,32.469143960833215,42.00893826233046,35.97270536754212,4.250655782361875,1.7855771124264677,0.0,6.036232894788342,3123.6207023130814,2689.522212436041,1121.375291680601,40.0,29.0,37.0,45.0,52.0,47.0,46.0,44.0,44.0,288.22016351600075,22.0,4.634728988229636,5.459585514144159,6.311734809152915,7.158513997329321,8.017966703493599,8.871926251117628,9.733944008101389,10.590993853205987,11.453992536433487,0.5374149659863945,0.9488979591836735,1.134794237366714,0.49008646835638764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6321911768300135,0.9365346138455383,0.9813606433104924,0.5676799079493391,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,7.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,5.907179729351506,0.0,9.694446914922299,0.0,0.0,0.0,37.964481650927475,57.326355063378415,5.687386274683562,6.041840829147961,135.25076137671718,-199.75751273839163,-11.365909257325795,-4.0766839334365645,-11.097639596577311,404.9124041621377,598.0320843227049,14.295423622684343,12.204736414749082,19.291357558796932,0.45454545454545453,0.9607581805467128,0.21953128653805482,2.7285044073214273,0.1633405633968325,0.0,0.03924181945328712,6.0,0.22727272727272727,0.23064849544756577,0.5014607245635949,0.7374286655576247,0.8391082559211952,0.8827254625058508,0.8972645313674029,3.8965400000000026,,0.5357142857142858,0.6570497906002791,0.6236333567935969,0.5342659360630688,-2.118657900702788,0.5810893512851898,0.5290207864431083,-1.0376437345448832,88.66570000000006,4.794537184071822,0.0,4.899909730850478,0.0,58.91716054284987,18.406301415831482,29.32600418877882,0.0,0.0,3.8066624897703196,0.0,5.081404364984463,0.0,6.566672429803241,0.0,8.152774052744075,0.0,9.788357245282496,26.333333333333332,6.144002397063815,0.0,0.0,0.0,0.0,0.0,3.265787273242631,0.0,46.496,0.0,12.69273478835979,0.0,0.0,0.0,0.0,0.0,0.1696324640967497,55.60491763096898,5.316788604006331,5.687386274683562,0.0,29.938443101175096,4.794537184071822,13.847474399381248,50.15474829771466,18.19910120538483,0.0,0.0,0.0,24.014236949462994,30.97736766467066,26.76010707133655,188.90061720091978,,163.16723830604832,159.75808866778948,156.85866849766032,163.1963716612339,215.36127543692828,161.71758482448845,163.37292321126105,199.22428904957772,26.76010707133655,188.9006172009197,,162.71243648192993,159.21547516808823,156.3538224469226,162.7427242907204,216.87460250885889,161.23033414998633,162.92305404876382,199.9654631456812,4.736192730349554,138.14457001472653,,119.84469153238406,117.0380554849265,114.5548064704725,119.86843539755483,162.08504351214015,118.64742517989187,120.01442891248415,149.2399479988702,1.274290812920788,8.995267485758085,,7.769868490764206,7.607528031799499,7.4694604046504915,7.771255793392091,10.255298830329918,7.700837372594688,7.77966301006005,9.486870907122748,2.3680963651747766,94.45030860045986,,81.60912935710579,79.9103324191614,78.44965396621755,81.62362706566758,107.37797230407804,80.886463333734,81.71165307165163,99.46390970556816,45.89019607843137,0.0,6.3118885949441506,0.0,0.0,0.0,0.0,48.08667152221413,7.8253207426859115,3.1740077003023432,0.0,0.0,0.04565381708238769,2.370972222222222,0.0,0.0,0.0,27.816315489517613,518.966180121463,63.45619451807066,137.9622668655737,202.8819514041177,230.85611985515482,242.8561198551548,246.85611985515484,427.0,115.23338666120813,21.196985417391787,54.39587058258459,32.34,32.34,0.8333333333333334,7.010706644967941,5.459431618637297,4.1108895861741885,4.5122079277033365,,4.504200244933605,4.502476295180568,4.501455324887106,4.504216091423644,4.521845377915077,4.503507332352307,4.504297873987899,4.517670165068686,0.19575664696067566,0.21486704417634936,,0.21448572594921927,0.21440363310383656,0.21435501547081456,0.21448648054398306,0.21532597037690843,0.21445273011201463,0.21449037495180473,0.21512715071755645,2.155576794141447,2.2487239411309172,,2.246947693933187,2.2465648779707363,2.2463380947518234,2.246951212085423,2.2508575247044607,2.246793845115001,2.246969368812397,2.249933755477349,251.38999999999987,143.72505549018862,109.41199247921904,,109.63611245605672,109.78451233741666,109.93957769533246,109.63494000501248,108.23085386863283,109.69892238387948,109.62736942576674,108.50147236558095,6.844050261437554,5.210094879962812,,5.220767259812225,5.227833920829364,5.235217985492022,5.220711428810118,5.1538501842206115,5.223758208756165,5.220350925036511,5.1667367793133785,5.709839482324506,5.437057849177555,,5.439104158184521,5.4404568104625515,5.441868265925957,5.439093464104924,5.426203826394878,5.439676888661306,5.439024409106202,5.428701087807504,0.0,15.06370701058201,3.1740077003023432,3.265787273242631,0.1696324640967497,6.189656214146202,5.721966308319573,8.41524302931049,0.0,304.5091874376527,73.05747940678783,-107.90165042093774,-6.1394455236644765,-2.202074498386485,-5.99453613449654,218.7187659981685,323.0349037615517,7.721861276748099,6.592549056358198,10.420480766501665,958.0,31.0,1.1459389748291229,0.6304872374848001,0.0,0.0,0.3567165163387901,0.1364462299199653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.08860598365302469,0.2912333734517709,0.138059060717745,15.242276208189782,13.61461043102816,10.1302289553358,8.242825709114285,8.612932024748469,6.1571614441940286,7.051927428415079,4.444516845696184,5.629707668296508,3.134886313422914,4.3205054140292205,2.167654987460501,2.57948312355385,1.2010736319300725,1.6150426064131234,0.6759336963315851,2.891608802528689,1.39621386254453,4.576891067462748,1.9836210145218478,6.763859853238875,2.520652472853501,73.79097035586568,39.53216910740174,27.346758015984932,22.811187973035448,20.753440032966118,20.326548629845266,102.0,117.0,51.73220399999997,31.237795999999992,0.2857142857142857,64.03,7.416666666666666,4.861111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,49.0,0.0,1.0,50.0,6.0,1.0,4.0,46.0,7.0,22.0,43.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,2.0,1.0,1.0,21.0,3.0,0.0,2.0,1.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,1.0,3.295836866004329,5.062990524430184,3.7495040759303713,4.1705337005796475,4.578569504190912,4.950088794228222,4.859812404361672,4.8342958089798485,4.975008116453105,5.112364223520032 +33625,O=C(NC1CCN(CCc2c[nH]c3ccccc23)CC1)c1ccccc1,0,20.15686274509804,5.8632294117647055,3.156862745098039,5.803921568627451,161.40369821213187,79.28957666666666,1.504790718063235,5.953203921568627,3.1307189542483664,7.408030901960782,216.48624991937098,23.14814814814815,6.180240740740741,3.8703703703703702,5.796296296296297,145.90248052082035,87.14959638888888,1.8489574764814818,6.333231481481481,2.7391975308641974,7.593389259259258,264.00984505665383,18.854166666666668,6.074395833333334,3.46875,4.354166666666667,152.59730044333952,68.84847582291665,1.5964750120738962,6.196266666666667,2.557291666666667,7.545577791666665,219.74646337406386,14.180451127819548,5.857661654135339,2.819548872180451,2.781954887218045,158.79114398795318,49.687173571428566,1.32098436238515,5.9531766917293245,2.290517961570593,7.413469563909774,172.7097745211683,12.064285714285715,5.805992142857144,2.4714285714285715,2.192857142857143,162.10188847736194,40.82332867142858,1.1791176903429788,5.884365,2.2875,7.398802000000001,149.17110582072286,11.290076335877863,5.741587022900765,2.404580152671756,2.0076335877862594,164.63965640540385,38.405029763358776,1.110874929805397,5.809058015267175,2.2270992366412212,7.367980366412214,139.88291924404135,12.872727272727273,5.809681818181818,2.609090909090909,2.209090909090909,160.02467096384254,44.3325539909091,1.2598986448293183,5.896178181818182,2.2573232323232317,7.395123236363636,161.41098617190212,12.026548672566372,5.706477876106193,2.5309734513274336,1.8938053097345133,159.67612534054095,40.73088953097345,1.2459254696568585,5.799849557522124,2.0063913470993113,7.2924748672566375,156.0657781479014,10.357142857142858,5.643062499999999,2.3482142857142856,1.6696428571428572,163.02698494202338,34.13414246428571,1.126091280643009,5.7208839285714275,1.992559523809524,7.267320642857143,137.25359734400575,6.855824682814302,0.07401599384851976,0.012347869838571649,0.5082660515186468,3.091118800461361,1.5012142792596486,32.87287484275278,0.23312212335711263,0.07400530565167236,0.8115682002648555,0.03861579084967318,52.225642143776334,0.3838267333077023,0.0001051027382631182,-0.005709980310850299,0.12971506685462855,0.7313212866846086,-0.11371985843454911,1.8404764880387898,0.003171388878009051,0.0013418621043188306,0.0008964975484263275,-0.0009410123456790749,1.8196602982188441,-0.4783737024221452,-0.00036248077662432923,-1.441121025171725e-06,-0.07035755478662054,-0.0874423298731256,-0.06517856767811983,-2.3174251052119366,-0.01498854061891429,-0.0013380262399077343,0.04607068862403352,0.0010101249999999523,-3.770388096575911,-0.46101412701303435,-0.0054190455955343796,-0.00018911362386136364,-0.0872134199396993,-0.2637562765044098,-0.10582048667519249,-2.219981890519262,-0.018483549461023156,-0.005111733485964045,0.021957607719156908,-0.002741229741019227,-3.7288875403394814,-0.6329955511616412,-0.004326694128631838,0.00031719981839796495,-0.029694622947218103,-0.20022244191794367,-0.08337017700880398,-3.055853796254187,-0.023957202498962517,-0.004746384083044977,-0.0199910138347278,-0.002012755555555563,-5.233552160217945,0.39802953062679935,-0.001478379718898494,-6.834617802719391e-05,0.021744425954785443,-0.10758340156897965,0.11328924855414327,1.9594036462458644,0.021497849769403873,-0.0006766422779259897,-0.07275248738088927,-0.001752491942324003,4.410129989320542,-0.4829191569675999,-0.0036524287861312006,-0.00022867476338750127,-0.02413057914788019,-0.4535073922617176,-0.022814701572381857,-2.277408162360631,-0.0006511867997285132,-0.004726089965397915,-0.11213761995192213,-0.0010765858585858646,-1.968450623057982,-0.7182227393820618,-0.004086044169533168,-3.3584000043101396e-05,-0.04843610183966003,-0.3928713598922131,-0.15934885188526599,-3.475840104075014,-0.02926874513318847,-0.004600967633279226,-0.03194917468018694,-0.0014901278269419645,-6.30968777588571,-0.3407686604053389,-0.0039007977700884463,-0.00029225150522096347,-0.0017884604822321105,-0.20578966880870006,-0.08160381895038175,-1.631035843102928,-0.011002141957087801,-0.0038670353435491774,-0.05069440630282616,-0.0019588174603174316,-2.5213867035108755,,,0.48205128205128206,1.2307692307692308,0.5961538461538461,0.0,0.6346153846153846,-0.038461538461538464,0.8202688739426262,0.00466873948805337,0.0178995087188226,0.8063335997120127,0.24113752583594586,0.25089425630573525,1.626602473654639,0.4920317821416811,2.0756991116805428,1.7639545920586697,0.24321988853494927,0.06852463108692398,0.0,0.3117445196218732,6.807838478823543,1028.0,299.0247,161.0,296.0,8231.588608818725,4043.7684099999997,76.74432662122499,303.61339999999996,159.66666666666669,377.8095759999999,11040.79874588792,1250.0,333.733,209.0,313.0,7878.733948124299,4706.078205,99.84370373000002,341.99449999999996,147.91666666666666,410.0430199999999,14256.531633059307,1810.0,583.142,333.0,418.0,14649.340842560594,6609.453678999999,153.26160115909403,594.8416000000001,245.50000000000003,724.3754679999998,21095.66048391013,1886.0,779.0690000000001,375.0,370.0,21119.222150397774,6608.394084999999,175.69092019722495,791.7725000000002,304.63888888888886,985.991452,22970.400011315385,1689.0,812.8389000000001,346.0,307.0,22694.26438683067,5715.266014000001,165.07647664801704,823.8111,320.25,1035.83228,20883.9548149012,1479.0,752.1479000000002,315.0,263.0,21567.794989107904,5031.058899,145.52461580450702,760.9866,291.75,965.205428,18324.662420969416,1416.0,639.0649999999999,287.0,243.0,17602.71380602268,4876.580939,138.588850931225,648.5796,248.30555555555551,813.4635559999999,17755.208478909233,1359.0,644.8319999999999,286.0,214.0,18043.40216348113,4602.590517,140.789578071225,655.3829999999999,226.7222222222222,824.04966,17635.432930712857,1160.0,632.0229999999999,263.0,187.0,18259.02231350662,3823.0239559999995,126.12222343201701,640.7389999999999,223.16666666666669,813.939912,15372.402902528644,349.6470588235294,3.7748156862745073,0.6297413617671541,25.921568627450984,157.64705882352942,76.56192824224208,1676.5166169803917,11.889228291212744,3.7742705882352907,41.38997821350763,1.9694053333333323,2663.507749332593,20.726643598615922,0.005675547866208382,-0.3083389367859162,7.004613610149942,39.491349480968864,-6.140872355465652,99.38573035409465,0.17125499941248876,0.07246055363321685,0.04841086761502168,-0.05081466666667004,98.26165610381759,-45.92387543252594,-0.03479815455593561,-0.0001383476184164856,-6.754325259515571,-8.394463667820057,-6.257142497099504,-222.47281010034592,-1.4388998994157718,-0.1284505190311425,4.422786107907218,0.09697199999999542,-361.95725727128746,-61.31487889273357,-0.7207330642060725,-0.025152111973561365,-11.599384851980007,-35.0795847750865,-14.074124727800601,-295.25759143906185,-2.4583120783160797,-0.6798605536332181,2.9203618266478686,-0.36458355555555716,-495.94204286515105,-88.61937716262976,-0.6057371780084573,0.044407974575715096,-4.157247212610534,-28.031141868512112,-11.671824781232557,-427.8195314755862,-3.3540083498547526,-0.6644937716262969,-2.7987419368618918,-0.28178577777777886,-732.6973024305123,52.14186851211072,-0.19366774317570273,-0.008953349321562403,2.848519800076893,-14.093425605536334,14.840891560592768,256.68187765820824,2.8162183197919073,-0.08864013840830465,-9.530575846896495,-0.2295764444444444,577.727028600991,-53.12110726643599,-0.40176716647443206,-0.02515422397262514,-2.654363706266821,-49.885813148788934,-2.5096171729620043,-250.51489785966942,-0.07163054797013646,-0.5198698961937707,-12.335138194711435,-0.11842444444444511,-216.529568536378,-81.15916955017299,-0.461722991157248,-0.003794992004870458,-5.473279507881584,-44.394463667820084,-18.006420263035057,-392.7699317604766,-3.307368200050297,-0.5199093425605525,-3.6102567388611244,-0.16838444444444198,-712.9947186750852,-38.16608996539795,-0.436889350249906,-0.03273216858474791,-0.20030757400999638,-23.048442906574408,-9.139627722442757,-182.67601442752792,-1.2322398991938337,-0.4331079584775079,-5.677773505916529,-0.21938755555555234,-282.3953107932181,0.6834374594494322,0.574959828237269,0.4411319426097831,0.32506609276898163,0.2851538229984531,0.18115125439655005,0.18732033012937818,0.10453063858429125,0.12254810754740317,0.05900283709254497,0.08192697130433899,0.03545053208232076,0.05314754794314037,0.02052086909323663,0.03510768351244494,0.011776864593507737,8.022024906890246,5.676150593232047,3.5437932482117827,2.1755837040311143,0.3940839677056031,-0.3718132419888686,3.240243033449535,0.9780416377835834,6.021953311258413,1.8872809761463265,14.54841336891836,10.93708165775558,16.01006470718694,11.687591679481496,2.010944021581928,0.7518712983560965,3.4890148786140487,2.225394650151144,7.008270956347507,1.2360203062840236,3.70194021839259,2.4212753195086636,20.912911953829862,14.702709264312494,0.23162081064591902,0.5554971154608809,0.716729488744418,0.8222378755442097,0.8670559637741312,0.8736421903998975,1.1364012111321533,863.2394495159292,0.0,2.0,3.0,0.0,10.0,4.0,3.0,0.0,0.0,4.293309565814747,2.3648864666637666,1.4048772645440106,0.7766596171458193,0.5098039215686274,0.47058823529411775,217.4000139881427,1138.995550448663,46.094178561415305,22.333246087228684,44.32686718357215,,16.0,716.0,0.0,4.794537184071822,11.949020558499466,0.0,44.460185578212744,16.466376423778055,0.0,30.33183534230805,45.66298870126353,0.0,12.533333333333333,32.0,15.5,0.0,16.5,0.0,0.017948717948717954,-1.0,0.09803921568627438,0.0522272498743086,-0.04581196581196578,0.033974358974358965,0.09251239669421452,0.0,0.5424836601307191,0.7756410256410253,0.44444444444444475,0.49025641025641054,0.7416666666666664,21.32699072250828,0.12138722668938762,0.4653872266893876,20.96467359251233,6.269575671734592,6.523250663949116,42.29166431502061,12.792826335683708,0.6214876033057855,0.026595744680851064,0.0,0.2712765957446808,0.3181818181818182,0.32319523429901414,-0.5987580574683412,-0.035009817421301125,-0.011740354068006689,-0.035221062204020076,0.6768047657009856,1.253862259681451,0.03996414685061402,0.024585534503557868,0.036878301755336795,-5.5526260888553765,0.8712489407307712,0.841112933762828,1.5660393553529997,0.8215666498571187,0.6548852957435046,1.2581998723681758,0.8743488645541455,1.0338808883886528,0.8220254016675921,0.5642406803055291,0.8226933477042817,0.9711126152045132,1.025587777590848,0.9681902077026484,1.1398051979583765,1.3763473903177001,1.0390430659203977,1.1732703550169417,1.0272661916507124,1.0632856213912114,0.9677159571931312,0.5601432552110747,0.8940701177817466,1.050339332500081,1.043479745797873,1.0581605127846136,1.0959718506759024,1.2617587842526132,1.0719195376500952,1.0933089605953672,1.0438205851815159,1.053680716225662,1.0490450026529168,0.7745670893730798,1.030162880306014,1.0443097854656769,1.0929388579119401,1.183373766667666,1.1296495736409178,0.9851145450615947,1.0466417910447758,1.0276209354755175,1.0915046145178782,1.0586867007872869,1.168669520873531,1.2017900380491178,1.2119470581305765,1.0609764679627625,0.9622571481409183,1.2326975655499173,1.0364961681568654,0.993896594334284,1.104021875356044,0.8445193615959906,0.9573193062106654,0.8606241301641762,1.1943867896884022,1.5935335499357501,1.3487982841272959,0.876810799936721,1.060809984093968,1.1252084600841794,0.8714669921136502,1.0433571723284278,1.1461160108548167,0.985348353077635,1.058412224668979,0.9821020453984829,1.1258406554030487,1.3745824919369498,1.1546438814263824,1.0133024211963435,1.0585896092140212,0.8178679812583673,0.8613224227726376,0.9815176790328409,0.9865770704002111,1.0909943528878727,1.0623363243911987,1.108267002796761,0.8566972091838905,0.4709741221013483,0.7001237430867382,1.1104727740514018,1.027183774754855,0.9344590590506506,0.8882120607923969,0.9127809595850441,0.993969882729211,0.9872446866114665,1.02804076193219,1.0147499116091887,0.9540632482385153,0.8234742519889311,0.8847735146640349,1.0295419445654181,4.0,0.07846138149168452,2.666666666666668,1.2291666666666665,0.9155555555555557,0.5625,0.2923356009070294,0.23614654195011336,0.15242346938775506,0.09719135802469137,4588.059646858699,5295.069273476749,2475.3679512167123,2218.8389100123704,17.662117933771942,0.49082663322632897,8.993080052692294,0.9639676095715798,1.0,0.3181818181818182,1.379115776156748,3.3075388753077286,4.2675480774274845,4.895765724825676,5.162621420402868,5.201837106677377,0.13793103448275862,0.0052307587661123015,0.06837606837606841,0.033220720720720714,0.030518518518518518,0.020833333333333332,0.010827244478038126,0.009445861678004534,0.007621173469387753,0.00607445987654321,0.33007917369948553,19.322235434007133,9.467455621301776,5.093425605536332,153.76424599380928,1.0,4.1967110302618655,160.0652036508391,,134.8868918421051,132.69713305431486,130.8046412174019,134.90554973420868,169.45574701694156,133.95525659098246,135.01902150067116,158.77047537156434,0.05598549424256021,0.0014200003647619759,-0.4624263444220762,0.25521095982518066,0.23658789386401327,-0.0757519163024696,0.05598769492606592,0.013603980747682612,0.01813197165396083,0.0011046484425261552,-0.024368589247396936,0.034842277155910296,-0.06977624495289367,-0.004897330398159323,-0.00011671009202494378,-0.13842662632375188,-0.028288246268656676,-0.04341723135638161,-0.07049657555955563,-0.06429480138165096,-0.01808013936467672,0.056767488683019285,0.026158340351807176,-0.07219419315508069,-0.06724415345227133,-0.07321452180490791,-0.015315485693785021,-0.17159009475276693,-0.08532712377959825,-0.07048992814495464,-0.06753233178231395,-0.07928698141063503,-0.06907252717830685,0.027055776350023368,-0.07098727439483288,-0.07139955369191853,-0.0923296000769083,-0.05845620525594506,0.025688626665557508,-0.05842338448238599,-0.06477345415778252,-0.0555351612095773,-0.09295973689164233,-0.10276674797725317,-0.06413572704348014,-0.024632574105544952,-0.052122603506710205,-0.10021039369530513,0.05805713375730738,-0.019973787313105982,-0.005535058185801213,0.04278158238154079,-0.03480403326877066,0.07546507525229107,0.059605484936095826,0.09221711547501642,-0.009143159020392465,-0.08964432977677843,-0.045382780043175905,0.08444376762624625,-0.07043925119295241,-0.0493464803513443,-0.018519369444046023,-0.047476275615458675,-0.14671302578018997,-0.015197498376869522,-0.06927925145745849,-0.002793329051533132,-0.06386150187180689,-0.13817399439175412,-0.027879420177535377,-0.03769126701475244,-0.10476095475172403,-0.055204881500282466,-0.002719821352359368,-0.09529674802190297,-0.12709681680095103,-0.1061466401477688,-0.10573581168978,-0.1255511262153038,-0.06217078076719292,-0.03936720865820065,-0.038588561677860234,-0.12081589649994619,-0.04970498461834266,-0.05270209271352584,-0.02366817184191909,-0.0035187486492327677,-0.06657449360341154,-0.05435854166710044,-0.04961646497013052,-0.04719475697394004,-0.05225348790194194,-0.062464751928774466,-0.050725814937803086,-0.048278711376483215,22.516155124681735,20.998663747334955,3.511764449876613,11.940318415196398,28.21843098803365,33.43081273757241,36.5687791485072,37.269259885727436,37.30878929749215,53.968176903694115,45.86281939352541,6.323717101908681,1.7816404082600235,0.0,8.105357510168703,8773.381470004648,8520.100651658475,616.4179602702061,96.0,39.0,51.0,64.0,76.0,72.0,80.0,88.0,88.0,347.1997624200007,29.0,4.919980925828125,5.75890177387728,6.61338421837956,7.4645098346365275,8.32239411311117,9.17812704961153,10.037712454627359,10.89597977790386,11.756835884433306,0.6078431372549019,0.9624313725490197,1.122994537637262,0.5672284066403183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6752591875073384,0.9508650519031141,0.9885894634620055,0.6227752421546677,10.0,0.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15.200676855804016,0.0,0.0,0.0,5.907179729351506,4.794537184071822,0.0,0.0,0.0,36.39820241076966,43.025017565859855,48.33933004227681,0.0,198.70122894858991,-368.11793379279027,-21.524122290869766,-7.2179987018194165,-21.653996105458255,416.1012429367326,770.8776166558725,24.570056270545535,15.115247385409267,22.672871078113896,0.5,0.911308720634244,0.1947993460879427,43.26849385350203,0.1354806866728026,54.40259442196582,0.0886912793657559,8.0,0.1724137931034483,0.24312629836700958,0.5830907726249893,0.7523321718932073,0.8630815620614435,0.9101259354095895,0.9170393249934672,3.604800000000002,,0.6785714285714287,0.8427175430432758,0.8488829422512447,0.6767661145452564,-2.636839718884606,0.7422735618115056,0.6692837795551935,-1.356968362788312,105.37290000000003,4.794537184071822,0.0,15.200676855804016,0.0,25.30430569792599,19.634269217737724,71.92105017116157,0.0,0.0,4.07753744390572,0.0,5.3706380281276624,2.3978952727983707,6.859614903654202,4.727387818712341,8.430109084509125,6.823286122355687,10.040593797754127,31.0,20.089504906843956,0.0,3.3540980938551423,0.0,0.0,2.543836102739283,2.133675310323385,0.0,49.084,0.0,12.271840431274644,0.0,0.0,0.0,0.0,0.0,0.04429867475228377,57.272721419500364,5.316788604006331,0.0,0.0,41.46717802803488,6.4208216229260096,0.0,28.76308341331783,60.794147187767564,0.0,10.902924932081056,0.0,28.92864873865623,34.438218562874255,35.01347293976406,320.1304073016782,,269.7215858820124,265.3294416822418,261.557261016996,269.75904053652926,339.9256631565311,267.8534152156717,269.98655963368424,318.0628616518935,35.01347293976406,320.13040730167813,,269.12517067915405,264.6036036652225,260.83897545047586,269.1641351389639,341.5483337527678,267.2068455530591,269.397589457259,318.89791910591725,4.701959245330544,252.4135823923136,,217.59676877057188,213.83762969830326,210.5098036564637,217.62856552312354,276.8119701734988,215.9934726068591,217.82404155441287,258.62284232358206,1.3466720361447715,12.31270797314147,,10.373907149308168,10.204978526240069,10.059894654499846,10.375347712943434,13.074063967558887,10.302054431371989,10.384098447449393,12.233186986611289,2.40115307344033,160.0652036508391,,134.8868918421051,132.69713305431486,130.8046412174019,134.90554973420868,169.45574701694156,133.95525659098246,135.01902150067116,158.77047537156434,48.49411764705882,0.0,0.0,0.0,0.0,0.0,0.0,50.41806263656228,6.259279394430458,3.178941401795388,0.0,0.0,0.2843008162605922,2.506891534391534,0.0,0.0,0.0,31.761537349888055,560.2748540965841,70.33490458399415,168.68448264069417,217.64495194880172,249.68405196610948,263.29369244054624,265.29369244054624,709.0,129.94782603240873,54.52761778873844,74.72706247181723,48.13,48.13,1.0,8.06251280926099,5.857980995127572,3.740437380346971,5.029266087305597,,5.042838754136721,5.041915805783131,5.041129143829696,5.042846554633366,5.051899478611152,5.0424537373910185,5.042892813565185,5.050051930287815,0.14386297616719118,0.19343331105021527,,0.19395533669756618,0.1939198386839666,0.19388958245498833,0.1939556367166679,0.19430382610042893,0.19394052836119302,0.19395741590635326,0.19423276654953134,2.2747139962329914,2.5707855113973057,,2.573480613416257,2.573297575078401,2.5731415384924365,2.5734821602613955,2.5752757519723484,2.5734042612933585,2.573491333397867,2.5749099714871426,278.81000000000046,679.805873073398,155.53086967834966,,153.88477073007425,153.95590778389777,154.05690118020055,153.8842857197742,153.30800809416036,153.9162433708616,153.88042270860305,153.37251391475428,26.14637973359223,5.9819565260903715,,5.918645028079779,5.921381068611453,5.925265430007713,5.918626373837469,5.896461849775398,5.919855514263907,5.918477796484733,5.898942842875164,7.477318721665781,6.0023556757763,,5.991715525355789,5.9921776933540745,5.992833467380237,5.991712373574998,5.98796046759799,5.991920025272653,5.991687269909337,5.988381138732385,0.0,18.13283005952132,4.509969579717437,3.34648323514062,0.04429867475228377,18.23739715171762,5.237570102740107,3.1581178630772784,0.0,327.6311352443511,122.16200672424452,-226.31981564112502,-13.233083589588707,-4.437643443943627,-13.312930331830884,255.82007271205836,473.9374642410966,15.105731329492867,9.292891455707778,13.939337183561666,2016.0,37.0,1.2800333143473333,0.6832154598605139,0.0,0.0,0.2539338936857123,0.06730646131876711,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.03608439182435161,0.47285288451456386,0.1915846999902054,0.5724899174227975,0.20532306321839325,17.76937394568524,14.948955534168995,12.79282633568371,9.426916690300468,11.120999096939672,7.064898921465452,9.553336836598287,5.3310625677988535,7.843078883033803,3.776181573922878,6.226449819129763,2.694240438256378,3.8266234519061064,1.4775025747130375,2.8086146809955954,0.942149167480619,3.209857216007128,1.478360116877749,4.90148004625581,1.926604361865123,6.733559278025488,2.315478760155664,87.61331479254976,51.31229841315917,35.13449053425592,26.21277432635417,24.262393766140367,24.118377086063056,136.0,158.0,57.51182499999999,28.798174999999993,0.49019607843137253,191.04,6.277777777777779,5.749999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,15.0,16.0,51.0,0.0,1.0,54.0,16.0,1.0,8.0,46.0,17.0,29.0,37.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,2.0,2.0,2.0,26.0,4.0,0.0,3.0,1.0,0.0,4.0,5.0,0.0,0.0,0.0,1.0,3.0,3.6635616461296463,6.277149998732073,4.21582445975981,4.786449533203602,5.3287859489888,5.752175734672774,5.851798303278572,6.167631133163624,6.395555012911529,6.114140108705736 +2249,CC(C)NCC(O)COc1ccc(CC(N)=O)cc1,0,19.902439024390244,6.087312195121951,2.6341463414634148,5.804878048780488,166.39373933709703,78.10602934146343,1.296968192845805,6.134121951219512,4.4911924119241196,7.654435414634146,188.99706534896384,21.634146341463413,6.341146341463415,3.1219512195121952,5.048780487804878,150.24863639456703,80.0232044634146,1.6369303040487806,6.463073170731708,3.1300813008130084,7.789243609756095,235.71520055336782,17.197183098591548,6.161366197183098,2.8450704225352115,3.4225352112676055,157.2591228976723,61.99558197183098,1.3421501903730981,6.24940985915493,3.0285602503912368,7.69105723943662,186.05926987379993,13.408602150537634,6.188397849462364,2.2795698924731185,2.6774193548387095,164.07833708563695,45.346368655913984,1.145135098748215,6.23930860215054,3.0459976105137394,7.775795053763441,151.79796574660273,11.071428571428571,5.778540816326532,2.0816326530612246,2.2346938775510203,165.856412842218,37.71059019387754,1.0327183258220818,5.834705102040815,2.381802721088436,7.427093510204082,130.78420601421777,12.714285714285714,5.888964285714286,2.1904761904761907,2.357142857142857,163.44046249384968,44.22424713095239,1.0767837416675476,5.953214285714286,2.869378306878307,7.5108530952380965,141.30327311585467,11.60759493670886,6.11193670886076,1.9746835443037976,2.1012658227848102,165.9230247475086,38.120667367088615,0.9984555344320377,6.152284810126583,3.038326300984529,7.74934612658228,130.1839046101748,10.285714285714286,5.85932857142857,1.9857142857142858,2.085714285714286,170.45842505362813,34.63169337142855,0.9312616744781427,5.888352857142857,2.5309523809523813,7.533998171428571,116.90043012705041,13.125,5.829958333333335,2.5,1.875,160.32232814091432,45.61966091666665,1.2251375339622501,5.91375,2.3466435185185186,7.425158000000003,159.19399691758557,7.566924449732302,0.13371219512195118,0.023392343031472793,0.4925639500297442,3.518143961927425,1.3450114076314572,35.90642893634741,0.21458444896780604,0.12564485425342053,1.64525084275233,0.08281071267102912,48.43159731557582,-0.12433075550267672,-0.013565853658536554,-0.01229312992045572,0.08804283164782871,0.8072575847709699,0.005220878226800759,-0.5304505936942222,0.0014073317204045756,-0.011135633551457538,-0.24390243902439007,-0.008956682926829268,0.8796167493247417,0.09951320055969388,0.0022563380281690223,0.00026306514646699136,-0.08376972124238588,-0.25431709830667526,-0.1378383875335252,0.4183532807601142,-0.01840545583019628,0.002825121699860037,0.14031349176425456,-3.160171259562065e-05,-2.089516693659822,-1.5981334714999391,-0.01707311827956986,0.0005552910833993708,0.030908381467764326,-0.32039940383668186,0.08895051629754326,-7.557116603276338,-0.008438513845767253,-0.018854741481325137,-0.20602247197399848,-0.006361474800585922,-6.204424706087933,0.7927072078087631,0.00719387755102039,-0.00014822444308664604,-0.002768031662397264,0.4631900350860154,0.046855960362181835,3.770139513129937,0.011893507703572231,0.008044070584807408,0.08930476810990112,0.0024599692602799554,4.25250548715297,0.7153055154244922,0.004207142857142844,0.00022109642285057094,-0.04076371774170703,0.0892892552618906,-0.20819024122778887,3.3345037059290106,-0.020696265827768897,0.0067436474887396895,0.08197202471443993,-0.0008695024503555164,0.056898051891090956,-1.4425033321034044,-0.03099493670886074,-0.0034412667358254966,0.04093404317803597,-0.41656940187802627,-0.2398668855734991,-6.780228726097334,-0.02952688894558286,-0.02893553038803004,-0.3440776411468961,-0.019490681797302678,-7.61023929058751,1.096490184414039,0.015528571428571416,0.0055278683617804815,0.00882977819325231,0.2895215432990568,0.22266870357424307,5.270756775847708,0.04805000692211238,0.01436828163508117,0.18336897916017492,0.009866904053709527,9.264394134688331,-0.0029000594883996644,-0.003675000000000006,-0.003101614007451353,-0.1450029744199881,-0.7844041245290501,-0.021530462762246853,0.00685015918104439,0.0010480255066390694,-0.002955829863176668,0.008599654085971764,-0.0025079809637120775,0.38739596721404074,,,0.46315789473684216,1.013157894736842,0.42105263157894735,0.02631578947368421,0.5921052631578947,-0.17105263157894737,0.8287849210388503,0.023419963778228275,0.027946279567701956,0.6981992636921933,0.20851120425995937,0.2635537562972385,1.5269841847310435,0.4720649605571978,1.9519402128961791,1.471996099984328,0.19132963962211216,0.28861447328973844,0.0,0.4799441129118505,6.491781525951227,816.0,249.5798,108.0,238.0,6822.143312820978,3202.3472030000003,53.17569590667801,251.49900000000002,184.1388888888889,313.83185199999997,7748.879679307518,887.0,259.987,128.0,207.0,6160.194092177248,3280.9513829999987,67.114142466,264.98600000000005,128.33333333333334,319.3589879999999,9664.323222688081,1221.0,437.457,202.0,243.0,11165.397725734734,4401.68632,95.29266351648997,443.70810000000006,215.0277777777778,546.065064,13210.208161039795,1247.0,575.5209999999998,212.0,249.0,15259.285348964237,4217.2122850000005,106.49756418358399,580.2557000000003,283.27777777777777,723.14894,14117.210814434053,1085.0,566.2970000000001,204.0,219.0,16253.928458537364,3695.6378389999995,101.20639593056401,571.8010999999999,233.4166666666667,727.8551640000001,12816.852189393343,1068.0,494.673,184.0,198.0,13728.998849483374,3714.8367590000007,90.449834300074,500.07,241.02777777777777,630.9116600000001,11869.47494173179,917.0,482.8430000000001,156.0,166.0,13107.918955053181,3011.5327220000004,78.87798722013098,486.0305,240.0277777777778,612.1983440000001,10284.52846420381,720.0,410.1529999999999,139.0,146.0,11932.08975375397,2424.218535999998,65.18831721346999,412.1847,177.16666666666669,527.379872,8183.030108893528,630.0,279.8380000000001,120.0,90.0,7695.471750763888,2189.7437239999995,58.806601630188005,283.86,112.6388888888889,356.40758400000016,7641.311852044107,310.2439024390244,5.482199999999998,0.9590860642903845,20.195121951219512,144.24390243902442,55.14546771288975,1472.1635863902438,8.797962407680048,5.151439024390242,67.45528455284553,3.395239219512194,1985.6954899386087,-5.0975609756097455,-0.5561999999999987,-0.5040183267386845,3.609756097560977,33.09756097560977,0.21405600729883112,-21.748474341463112,0.0577006005365876,-0.45656097560975906,-9.999999999999993,-0.367224,36.06428672231441,7.065437239738266,0.1602000000000006,0.018677625399156385,-5.947650208209398,-18.056513979773943,-9.786525514880289,29.70308293396811,-1.306787363943936,0.20058364069006263,9.962257915262073,-0.0022437215942890665,-148.35568524984737,-148.62641284949433,-1.587799999999997,0.05164207075614148,2.8744794765020822,-29.797144556811414,8.272398015671524,-702.8118441046994,-0.7847817876563545,-1.7534909577632378,-19.16008989358186,-0.5916171564544908,-577.0114976661778,77.68530636525878,0.7049999999999983,-0.014525995422491313,-0.2712671029149319,45.39262343842951,4.59188411549382,369.47367228673386,1.1655637549500786,0.788318917311126,8.75186727477031,0.24107698750743564,416.74553774099104,60.08566329565734,0.35339999999999894,0.01857209951944796,-3.4241522903033905,7.500297441998811,-17.487980263134265,280.0983112980369,-1.7384863295325874,0.5664663890541339,6.885650076012954,-0.07303820582986338,4.77943635885164,-113.95776323616896,-2.4485999999999986,-0.27186007213021424,3.2337894110648415,-32.908982748364075,-18.94948396030643,-535.6380693616894,-2.332624226701046,-2.285906900654373,-27.182133650604793,-1.5397638619869116,-601.2089039564132,76.75431290898273,1.086999999999999,0.3869507853246337,0.6180844735276617,20.266508030933977,15.586809250197014,368.9529743093396,3.3635004845478664,1.005779714455682,12.835828541212244,0.6906832837596669,648.5075894281831,-0.1392028554431839,-0.17640000000000028,-0.14887747235766494,-6.960142772159429,-37.6513979773944,-1.033462212587849,0.32880764069013074,0.05030522431867533,-0.14187983343248006,0.41278339612664466,-0.12038308625817971,18.595006426273955,0.7500374935066874,0.6013938107534058,0.47206496055719793,0.33608932000674635,0.3404174816866725,0.2006173607481343,0.2114831167480609,0.10440907007628304,0.13721988861440648,0.05658513138750082,0.09621536890843806,0.03273392980108102,0.06108864068603965,0.016699838856263412,0.041152329511434105,0.008963517379642016,8.02227637400918,5.693547962013344,3.5440828050000777,2.1929830807546846,0.3799678445176212,-0.5217288768554001,3.0645288640872743,0.9727511353755085,6.022001776260031,0.9889404060585198,14.54067012297363,10.953960042801528,16.010460489471402,11.704878246293465,1.9829241230875905,0.7516232451033751,3.4893226269265485,2.2428573769322186,7.008274162975688,1.2491794540428263,3.702226878657983,2.438875285442112,20.890816485183937,14.702412819619914,0.2731064479698826,0.6377596550058171,0.8267228455511738,0.8622521919843325,0.8622521919843325,0.8622521919843325,2.0858360613237292,390.18247960279086,0.0,1.0,4.0,0.0,5.0,3.0,1.0,0.0,0.0,3.8576915127070848,1.8550696685602421,0.8173115854713906,0.6221896342518782,0.6221896342518782,0.6221896342518782,204.5831492947589,1129.8037328034625,58.0191355893883,27.5561886049625,55.94682288435678,,13.0,374.0,6.103966387748303,9.901064578912528,18.934883316790433,18.33610906834444,5.563451491696996,0.0,24.26546827384644,13.847474399381248,5.316788604006331,10.470530430962235,8.8,19.25,8.0,0.5,11.25,0.0,0.03684210526315786,-3.25,0.12764227642276416,0.03331603528801241,-0.09432624113475174,0.09794050343249405,0.17741463414634118,0.0,0.5609756097560978,0.8631578947368418,0.4333333333333337,0.5276595744680854,0.7652173913043477,15.746913499738154,0.4449793117863372,0.5309793117863372,13.265786010151674,3.9617128809392277,5.007521369647531,29.012699509889828,8.969234250586759,0.5365853658536588,0.23484848484848486,0.0,0.28409090909090906,0.5,0.30780200752448733,-0.6534064787838832,-0.05804854803230553,-0.015936743384972765,-0.05445053989865693,0.6921979924755126,1.4694077420814609,0.050964940359924195,0.035839213221499036,0.050669232485567615,-2.68651635250641,0.9842767295597484,0.939217031439221,1.5583513585845032,1.183574879227053,0.6729793709841053,1.374815365015956,0.9895536257666809,1.2577922868004736,0.9230761946697347,0.8953035233618578,0.9398974207844891,1.1421600054922991,0.9615333510496944,0.9051162250582037,1.0064814562849143,1.5901204327413758,1.1014208347821115,1.2727716259551067,0.9661907569299877,1.2078964726458916,0.8967875688716048,0.6465768214202657,0.9264953177256738,1.1118126270473239,1.235240413877054,1.3132158308629724,1.134861266651297,0.8412549997402733,1.167377573172461,0.971829610078999,1.2309767298774728,1.023542940581284,1.3142835586032424,1.217763211040999,1.294194205662627,1.0954587924903492,0.8387081247593376,0.7931196994503175,0.8963339194369229,0.8791777580597456,0.7908939700330587,0.8829090003130862,0.8404960475542474,0.9138674497695458,0.796611171775785,0.5739083629112728,0.8052059846222834,0.891998721103699,0.8656783468104223,0.8781015963351522,0.8429913619125096,1.1671842650103519,0.9194083450086155,1.1173294191700267,0.8686974270961902,1.1004321189300452,0.8625051827472178,0.9587970216811968,0.9268325121698519,0.9968853538096158,1.2330029456253484,1.5353948728889675,1.3908964722802721,0.7020118632666789,1.1987431668257682,1.0868258749570228,1.2243861944439043,1.0735335411583362,1.5072794594064272,1.5210367836679315,1.6158792810036502,1.0895418354647686,0.8481805929919137,0.9635599889512552,0.9676688260188473,0.8064182194616977,0.9844436929320255,0.6631399914461662,0.842844425355244,0.6536984122661492,0.962244303712707,0.5771018784758691,0.977159844733442,0.7202458164845822,0.9132599580712788,0.7101467780574707,0.9218306645680819,1.6299315619967794,1.152561717957389,1.085337257708734,0.9194247314042723,1.0749189755840023,0.7280166407050203,0.525210752212982,0.6755969712387137,1.0468397438479746,5.0,0.07427813488419549,1.5555555555555562,0.625,0.9422222222222225,0.4305555555555556,0.24244897959183676,0.22743055555555555,0.1315192743764172,0.11562500000000003,3019.942475240545,3585.2603716414114,1736.0480181632302,1501.8130282543184,15.570146192849034,0.4607764661985786,8.395789251912804,0.8545184646341264,1.0,0.5,1.499860491910999,3.5024823360578416,4.540240419146693,4.7353623703662056,4.7353623703662056,4.7353623703662056,0.2631578947368421,0.009284766860524436,0.06481481481481485,0.02976190476190476,0.0495906432748538,0.02266081871345029,0.01731778425655977,0.018952546296296294,0.0109599395313681,0.011562500000000003,0.49806361324661436,17.05263157894737,9.03125,8.0,113.30999399703728,1.0,3.815450537165857,97.53131091184989,,80.30560284927299,78.90866952924999,80.6732531487712,80.3264028991681,118.49957887786913,79.84507813195417,80.3764748214792,100.98548104629255,-0.016430817610062858,-0.10145562000656651,-0.525519393415023,0.17874396135265708,0.22945552925262092,0.0038816609265750683,-0.014773136995454787,0.006558404987752475,-0.08862785203282118,-0.14824635410389286,-0.10815850555966433,0.018162042924028295,0.013151076268934388,0.016874586690549406,0.011245780130406571,-0.17006872150779065,-0.07228729155453517,-0.1024812033202427,0.011651208241892943,-0.08577255210585012,0.02248497733271179,0.08528395070111315,-0.0003816138223705487,-0.043143666727420205,-0.21119987150875766,-0.12768557321191573,0.023738155799624894,0.06274998701366163,-0.09107057792517113,0.0661336519473717,-0.21046695054729905,-0.039324908614571955,-0.1500637777277842,-0.12522252936782866,-0.07681946689502951,-0.12810696012482253,0.1047594981388782,0.053801207469963905,-0.006336451328848086,-0.005619639160011837,0.1316574989820074,0.034836849781589886,0.10499901061766394,0.05542576715499363,0.06402228433949907,0.05428033573318445,0.029705930319092185,0.08780436167413674,0.0945305480682839,0.031464167148746246,0.009451657858860093,-0.08275822406257188,0.02537964797011127,-0.15478697061343774,0.0928664811485487,-0.09644811600897482,0.053672293456109466,0.049823420589962704,-0.01049987884791755,0.0011748126232622167,-0.1906327123636653,-0.23180336453673542,-0.14711081874934495,0.08310401761144742,-0.11840601362140041,-0.17833817929908913,-0.18883049434174823,-0.1376003204687622,-0.23029618331737056,-0.2091338488976494,-0.23536425624943796,-0.1571337662270334,0.14490566037735844,0.11613429436566128,0.2363110165725218,0.017926155969634216,0.08229383061983674,0.1655515353333389,0.1467914502216682,0.22392119817275896,0.11435630786837425,0.11145350872661952,0.11915009224599284,0.1912882219085692,-0.00038325471698111914,-0.02748440407135827,-0.1325909936973113,-0.2943840579710145,-0.22295964378311345,-0.016007643236395773,0.0001907780691081229,0.004883976968882326,-0.02352527591153777,0.005226956195679837,-0.0302857067982882,0.007998826978383644,6.857230682034217,11.39478627507535,2.048145734495446,14.237414589665772,30.24974241950554,33.4427293965274,33.63941232335667,33.63941232335667,33.63941232335667,37.086864045027404,27.96792589970223,3.635263152820131,5.48367499250503,0.0,9.11893814532516,4898.349462296535,4864.731072555167,400.9924842317723,20.0,24.0,24.0,27.0,32.0,27.0,28.0,28.0,22.0,266.1630425640003,19.0,4.465908118654584,5.209486152841421,6.018593214496234,6.787844982309579,7.596392304064196,8.379079889286603,9.187174093944343,9.977991874704234,10.786283546526374,0.5853658536585366,0.976,1.1409224595021188,0.5408477188593384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6229800788666571,0.9612625538020086,1.0020606469720925,0.5761080557803341,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,1.0,3.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,20.893846429809273,18.460360185545124,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,25.980208536304467,17.696185628620217,12.586597235060536,6.4208216229260096,163.81831893127512,-347.7558570655652,-30.894585878544486,-8.48185017233086,-28.979654755463763,368.401468226034,782.0478757378974,27.12454971084381,19.074338432631638,26.96716812889301,0.46153846153846156,0.8054036479641702,0.23122565538060777,14.775299982057088,0.10426679853831854,56.64171262675157,0.1945963520358298,7.0,0.42105263157894735,0.2799525773372157,0.6537467733470033,0.8474468218382412,0.8838668045190107,0.8838668045190107,0.8838668045190107,0.45210000000000006,,1.0357142857142858,1.2284783620288504,0.9699017285501993,1.0327970942604563,-4.283246429381093,1.098531211750306,1.0260103868809844,-1.8356326906609346,73.98090000000003,14.637927532712578,0.0,5.316788604006331,5.733667477162185,32.41410323920353,13.151638370425493,29.828919765543436,0.0,5.749511833283905,3.6635616461296463,0.0,4.90527477843843,0.0,6.297109319933935,0.0,7.759187438507795,0.0,9.262837940933936,23.999999999999996,7.110533562190308,0.0,0.0,0.0,0.0,0.0,1.5126761679444767,0.0,40.016,0.0,10.74650781595826,0.0,0.0,0.0,0.0,0.0,-0.3575459170179378,46.777820839586866,15.787319034968565,0.0,5.749511833283905,36.31115271151397,11.21535880699783,0.0,19.410925891078243,24.26546827384644,0.0,0.0,0.0,22.174756473232872,25.54218323353294,22.728326604703334,195.0626218236998,,160.502183142155,157.68802554670748,161.24441137874763,160.54409031472983,238.35176189133233,159.5745213995136,160.64494854960253,202.55063557384642,22.728326604703334,195.06262182369983,,159.5754914128317,156.58886069647116,160.3766045689922,159.62000870407576,241.28240418511945,158.59162505215818,159.72693925607757,203.80659478324606,4.50355570568281,151.72863391297346,,124.18535997742099,121.96816665317851,125.25407786271828,124.21981676570422,188.3289002874563,123.47521688174541,124.29583923542125,158.21031821446493,1.1962277160370176,10.266453780194727,,8.447483323271316,8.299369765616182,8.486547967302506,8.449688963933149,12.544829573228018,8.398659021027031,8.454997292084343,10.660559767044548,2.2517778528414043,97.53131091184989,,80.30560284927299,78.90866952924999,80.6732531487712,80.3264028991681,118.49957887786913,79.84507813195417,80.3764748214792,100.98548104629255,39.411764705882355,0.0,4.037773576046553,0.0,0.0,5.108420788077902,9.6842381022657,41.084486525855795,0.9519098718841683,3.1308471703394143,5.453870937263795,0.0,-0.2125654082859726,0.0,0.0,0.0,0.0,23.620430286993695,428.651758095211,61.49428016835096,143.60177577837152,186.1498571850144,194.14985718501444,194.14985718501444,194.14985718501444,270.0,106.40875417682757,103.56802906209815,50.88797112394374,84.57999999999998,84.57999999999998,0.8571428571428571,6.773938131247798,5.247927513443585,3.633113857688046,4.284407655537469,,4.274831406700295,4.274872542068073,4.279170733300928,4.27484413006872,4.2873818014044485,4.275048773362666,4.274808817016732,4.279836863853451,0.19121651882568663,0.22549513976512991,,0.22499112666843657,0.22499329168779333,0.22521951227899623,0.22499179631940633,0.22565167375812886,0.2250025670190877,0.22498993773772272,0.2252545717817606,1.931943978773954,2.0968361919191763,,2.0945985507542875,2.0946081733957325,2.0956131230917356,2.0946015270937686,2.0975301300988924,2.0946493974697598,2.0945932663954205,2.0957687791175794,217.6299999999996,165.63925041297364,89.78294653080654,,90.38973639964966,90.38142017477277,90.14062273590922,90.38909379163753,89.69946338580506,90.37539434642417,90.39131644206132,90.14628117898934,8.71785528489335,4.725418238463502,,4.7573545473499825,4.7569168513038305,4.744243301889959,4.75732072587566,4.721024388726582,4.756599702443378,4.757437707476912,4.744541114683649,5.751666119440908,5.139248938444156,,5.145984611722788,5.145892603406414,5.143224811952294,5.145977502394651,5.1383186728982375,5.145825930087715,5.146002091899907,5.1432875834898715,5.453870937263795,10.74650781595826,12.815085272605115,5.9573771903383275,0.30617384866611386,7.446397675404294,-0.3250034999205278,4.766257426351291,0.0,265.2621593929462,87.18735083407144,-185.08254823014275,-16.442709920592154,-4.514208493418117,-15.423545685845225,196.0705510077,416.2213539720495,14.436222073843144,10.151740340781693,14.35246048179481,890.0,21.0,1.513420005986402,0.6870004247434619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.11785113019775792,0.030982085323622514,14.25071237662706,11.42648240431471,8.96923425058676,6.385697080128181,8.17001956048014,4.814816657955223,5.075594801953462,2.505817681830793,3.704936992588975,1.5277985474625222,3.078891805070018,1.0474857536345927,1.6493932985230706,0.4508956491191121,1.152265226320155,0.25097848662997646,1.7721646521389818,0.6847334331560021,2.107323711885634,0.6346770095473712,2.8528274481466767,0.7192226160124943,64.66731551989535,31.32990318894534,22.89261129086253,22.10503509438895,22.10503509438895,22.10503509438895,86.0,91.0,42.655445999999976,24.674553999999993,0.14634146341463414,19.05,7.805555555555555,4.333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,41.0,0.0,1.0,41.0,6.0,1.0,4.0,37.0,7.0,19.0,34.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,4.0,3.0,0.0,19.0,5.0,0.0,2.0,3.0,0.0,1.0,8.0,0.0,0.0,0.0,0.0,1.0,3.1780538303479458,4.541298109393681,3.597312260588446,3.855452653939752,4.288745644670657,4.762707980204307,4.673996376917944,4.856901194154213,4.939855112035208,4.582413198865475 +3690,O=P1(NCCCl)OCCCN1CCCl,0,44.689655172413794,6.205558620689655,2.7241379310344827,4.914431673052364,168.9999135520219,186.2826496356085,1.8130897094046556,6.380524137931035,3.6540992620973465,7.970474172413796,205.34494940255746,36.6551724137931,6.267151724137931,3.5172413793103448,2.440613026819923,150.8736923378241,143.721734384276,1.9109914703448263,6.474634482758623,1.9383780332056193,7.860826068965521,243.37674682389292,25.4,6.480361818181821,2.8363636363636364,3.991919191919192,166.40650648484856,94.14005493861816,1.5470463804716919,6.60968363636364,2.9154882154882147,8.137554545454547,180.2918191433847,21.26086956521739,6.098684057971013,2.5942028985507246,2.1207729468599035,167.44209240134788,76.3382831436812,1.41444772175771,6.23456956521739,2.301954732510288,7.84197388405797,157.9557380410386,22.397058823529413,6.388494117647061,2.338235294117647,1.5944081336238198,168.29601580336765,81.50080037317649,1.3693022285660288,6.475430882352942,2.8871108914530597,8.091024647058825,157.15049613990507,20.925373134328357,6.273241791044778,1.8656716417910448,0.7645107794361525,169.2241555239368,76.88300692537317,1.1274884571326265,6.4277522388059705,2.530219274000368,8.071939014925372,142.92567254749835,13.810344827586206,5.426086206896551,1.603448275862069,0.2720306513409962,165.9598148020146,48.95921448275863,1.1299551616616552,5.602603448275861,1.355683269476373,7.2738049310344834,121.24457490000374,12.177777777777777,5.414333333333335,1.2444444444444445,0.10370370370370371,174.7657337011794,39.021068666666665,1.0008211465861334,5.660755555555557,1.2336076817558301,7.486294266666666,95.58892581003975,26.6,5.60566,1.0,0.040329218106995884,180.3692072274288,98.61550746666668,1.1353970452528004,6.027840000000001,1.1923284052227807,7.991102466666669,100.2405065467303,22.69678953626634,0.15056504161712247,0.015936184573573108,0.5255648038049942,3.2768162534313943,1.3197448602858377,105.23127197383829,0.47978987117513666,0.16152009512485138,1.4037799659683272,0.11830393579072529,53.26416033241084,3.180737217598097,-0.050881093935790815,-0.013741458264375414,0.1426872770511294,-0.545338441890166,-0.8012639429082106,14.211246586335399,-0.12611359504161687,-0.03674530321046386,-0.3860205927143802,-0.027869035671819226,-4.354588236285345,-2.402745649119013,0.047131698194789656,0.006593835352241277,0.020516700897200268,1.1519000281584506,0.18398254697328495,-11.144367511882084,0.023928162564319098,0.027820970705869523,0.38912181806088714,0.022691625337801342,-5.412361999863152,-3.574850505781591,0.0028634441399989522,-0.00027840209184978057,-0.08528494373502907,0.10889212694631822,-0.13238755059963497,-16.189325781412858,-0.08598457344704426,0.0044861517517103275,0.01927663368490245,-0.004884688414413489,-0.7597934006768573,-2.023868643771421,-0.06296747569420166,-0.004595102023471734,-0.17313072672588659,-1.257358661965689,-0.008762322891335083,-9.361036228644286,0.007103565242013363,-0.06571761033783323,-0.3749434703937953,-0.04781407980695243,-4.613096839071075,0.9913216320300988,-0.016714089481250145,0.0014885000091186317,-0.05207020781940475,-1.341454746788364,0.14193646237588584,4.211192376128297,-0.011272555832903645,0.0002475837222921977,-0.326788954303224,0.01659469313361851,-5.414184065703874,2.7330558858501774,0.020205588585017975,0.0008557644536082162,-0.007134363852556441,0.31615801294754947,-0.18301997566325306,12.730880548211223,0.023294410649125397,0.022096432818073927,0.10751042398955682,0.012699820451842935,1.8352150690916191,-2.6170960496763116,0.01399633769322249,-0.0002672145734411056,0.11504822301492937,0.8281551291900529,0.030492118968125186,-11.869178542243707,0.00631658570261719,0.0021001347602062747,0.15056291320682938,-0.00828656107808172,4.8138317156347155,-0.8048355132778436,0.006827372175981069,-5.972214699035724e-05,0.2330558858501784,1.1471088210683935,0.22967753269113841,-3.8568910400965746,-0.0030583745962333496,-0.0026676813317478626,0.16587201359744594,-0.0028254852160126565,3.828960327974069,,,0.5282312925170068,0.7857142857142857,0.10714285714285714,0.0,0.6785714285714286,-0.5714285714285714,0.9609480705359051,0.013408678806493768,0.01955153594935091,0.43778694192017525,0.12812171093058947,0.35234200757528067,1.3987350124560805,0.48046371850587016,1.9535933505316867,0.9757905214608524,0.29795233984020575,0.27043300263614195,0.24499193971540034,0.9778028290708342,8.96637309344828,1296.0,179.9612,79.0,142.51851851851853,4900.997493008635,5402.196839432646,52.579601572735015,185.0352,105.96887860082305,231.1437510000001,5955.003532674166,1063.0,181.7474,102.0,70.77777777777777,4375.337077796899,4167.930297144004,55.418752639999965,187.76440000000008,56.21296296296296,227.9639560000001,7057.925657892894,1397.0,356.41990000000015,156.0,219.55555555555554,9152.357856666671,5177.703021623999,85.08755092594305,363.53260000000023,160.35185185185182,447.5655000000001,9916.05005288616,1467.0,420.8091999999999,179.0,146.33333333333334,11553.504375693004,5267.341536914002,97.596892801282,430.18529999999987,158.83487654320987,541.096198,10898.945924831662,1523.0,434.4176000000001,159.0,108.41975308641975,11444.129074629,5542.054425376001,93.11255154248995,440.32930000000005,196.32354061880807,550.1896760000001,10686.233737513545,1402.0,420.3072000000001,125.0,51.22222222222222,11338.018420103765,5151.1614640000025,75.54172662788598,430.6594,169.52469135802465,540.8199139999999,9576.02006068239,801.0,314.71299999999997,93.0,15.777777777777779,9625.669258516846,2839.6344400000007,65.537399376376,324.95099999999996,78.62962962962963,421.880686,7032.185344200217,548.0,243.64500000000007,56.0,4.666666666666667,7864.458016553073,1755.9480899999999,45.036951596376,254.73400000000007,55.512345679012356,336.88324199999994,4301.501661451789,399.0,84.0849,15.0,0.6049382716049383,2705.538108411432,1479.2326120000002,17.030955678792004,90.41760000000002,17.88492607834171,119.86653700000002,1503.6075982009545,658.2068965517238,4.366386206896552,0.4621493526336201,15.241379310344831,95.02767134951043,38.272600948289295,3051.7068872413106,13.913906264078964,4.68408275862069,40.709619013081486,3.4308141379310335,1544.6606496399143,92.24137931034481,-1.4755517241379337,-0.398502289666887,4.137931034482753,-15.814814814814815,-23.236654344338106,412.1261510037266,-3.6572942562068893,-1.065613793103452,-11.194597188717026,-0.8082020344827575,-126.28305885227499,-132.15101070154572,2.592243400713431,0.36266094437327023,1.1284185493460148,63.35450154871478,10.119040083530672,-612.9402131535146,1.3160489410375504,1.5301533888228238,21.401699993348792,1.248039393579074,-297.67990999247337,-246.66468489892978,0.1975776456599277,-0.01920974433763486,-5.884661117717005,7.513556759295957,-9.134740991374814,-1117.0634789174871,-5.932935567846053,0.3095444708680126,1.330087724258269,-0.3370435005945307,-52.42574464670315,-137.62306777645662,-4.281788347205713,-0.3124669375960779,-11.772889417360288,-85.50038901366685,-0.5958379566107856,-636.5504635478114,0.4830424364569087,-4.468797502972659,-25.496155986778078,-3.251357426872765,-313.69058505683313,66.41854934601662,-1.1198439952437598,0.09972950061094832,-3.4887039239001183,-89.87746803482038,9.50974297918435,282.1498892005959,-0.7552612408045443,0.016588109393577244,-21.89485993831601,1.11184443995244,-362.75033240215953,158.5172413793103,1.1719241379310426,0.049634338309276535,-0.4137931034482736,18.337164750957868,-10.615158588468677,738.3910717962509,1.351075817649273,1.2815931034482877,6.235604591394296,0.7365895862068902,106.4424740073139,-117.76932223543402,0.629835196195012,-0.012024655804849751,5.177170035671821,37.26698081355238,1.3721453535656334,-534.1130344009669,0.28424635661777353,0.09450606420928237,6.775331094307322,-0.3728952485136774,216.6224272035622,-12.072532699167654,0.10241058263971603,-0.0008958322048553585,3.495838287752676,17.206632316025903,3.445162990367076,-57.853365601448616,-0.04587561894350024,-0.04001521997621794,2.488080203961689,-0.04238227824018985,57.43440491961104,0.7458079499906111,0.7373489478063397,0.4804637185058702,0.5174655012111841,0.3049424484596304,0.32687704294358116,0.1943025714051611,0.20938423703034328,0.1289264973472762,0.15442227279774667,0.09374753688760527,0.10589632686229816,0.06467790506679316,0.0733506358365938,0.04646603499706333,0.05312106150536795,17.00212339042018,5.85542148814607,3.541192191495062,2.0045713579863516,0.4560642717322009,-0.37174665124548156,4.034246194524554,0.9849028184318083,6.011483082861685,0.5405081044267785,14.545131385774349,10.464613030966467,35.451527046967534,11.868232480311407,3.656853212232578,0.7800501736140977,3.4871450730871443,2.126095087977844,7.006601178436835,0.2916149202887896,3.70482087486806,2.4416772299421483,24.43685852925941,14.705106876916332,0.3979386802885697,0.5539261287837218,0.768600187017909,0.8494841573285276,0.8916486498300114,0.8916486498300114,2.4942777050466973,215.86647567444427,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,2.9053394271907242,2.139926083136894,1.0865439656664457,0.6896551724137927,0.4827586206896557,0.4827586206896557,69.31877877465445,535.2150031760187,38.75066373401466,18.4556897646903,46.08230298306587,,8.0,162.0,7.670279738874966,4.565048284931329,0.0,31.456401666278747,12.965578028838586,0.0,4.6704161899212995,0.0,5.0872950630771525,27.725626942176852,7.3952380952380965,11.0,1.5,0.0,9.5,0.028231292517006894,0.0,-8.0,0.18062397372742184,0.0,-0.18062397372742184,0.04335600907029469,0.1581660701503219,0.0,0.6139573070607556,0.9503401360544216,0.43333333333333374,0.6139573070607556,0.9069841269841269,13.453272987502672,0.18772150329091275,0.2737215032909127,6.129017186882454,1.7937039530282526,4.93278810605393,19.582290174385125,6.726492059082182,0.555833929849678,0.23824855119124272,0.13522215067611074,0.054088860270444294,1.0,0.4172989194099289,-0.532924659187224,-0.06754899906321266,-0.018376712385766346,-0.07613209416960343,0.5827010805900712,0.744156671243233,0.024914308024282104,0.025660574870456317,0.033825303238328774,-2.710848804330619,0.6314962279966474,1.1494963087916146,2.014684269369299,1.171945701357466,1.0357942836663383,2.1863096560252084,0.6351063576367783,1.5725289804102236,0.953050094818549,0.8755726748447555,0.9428599484931748,1.1604336276390388,0.9807361121694739,0.8607550758961374,0.8871193377366977,1.2358700123406001,0.8975116273387038,1.055879039513103,0.9796792364197071,0.9912137384699251,0.8962624037760373,0.6152496952196136,0.8537692248869964,1.0331625186970055,1.1531989139545908,1.1121351534440538,1.4358545220503167,1.717292937241786,1.1067733268926865,1.2383683263684697,1.1455378603274753,1.6128842545809765,0.9981054854438289,1.0629186485070636,1.0361698509429729,0.991642946901238,0.9086629727331004,1.8862030947840316,1.7886736360191444,1.5669417088102204,1.8308430880640045,1.0896727719987014,0.9055479008831053,1.1450351748157057,1.6608663200494975,2.2852787052669665,1.6556135094859803,0.9763023378987599,0.7660341419474299,1.2554820263783757,0.7832116465708714,0.6306476666441546,1.5436195066242124,0.7416358884154286,0.7723223293969894,0.5739501376454729,1.1090981373301685,1.7079376850241712,0.9958964822862013,0.9870357630806231,0.7235435875943004,0.2153315453795926,0.1568515150781076,0.4592760180995474,0.2674312337604158,0.9269455599908931,0.7285792980493433,0.5607599592413682,0.38985367907749185,0.03840734020473216,0.3915647648125342,0.9805333906724787,1.4761316010058683,0.3573756250730501,0.2556177040529142,0.22453494218200093,0.13924180429869884,0.4589489828644506,1.476105258393754,0.7094662002986536,0.7513492830042493,0.024962370004369332,0.8688133720346464,0.93833843626018,2.1780385582564974,0.5090342206764529,0.33356389765590233,0.0,0.03564913538213422,0.05822390363375612,2.176817067908236,0.9215855084677917,1.101808030718854,0.016437547239441457,1.2726595567293217,1.0322667693145224,3.0,0.0,2.0000000000000004,0.9375,0.6533333333333333,0.23611111111111116,0.14122448979591837,0.059027777777777776,0.0,0.0,3274.7698014250454,3729.350631823911,1686.9126978105737,1536.3258780669948,8.08572775423272,0.4163877969378768,4.718929388008311,0.713466570358115,1.0,1.0,1.9526415679368478,2.718054911990678,3.771437029461126,4.168325822713779,4.375222374437916,4.375222374437916,0.21428571428571425,0.0,0.11111111111111113,0.049342105263157895,0.04083333333333333,0.01816239316239316,0.020174927113702626,0.019675925925925923,0.0,0.0,0.47358551019533845,12.071428571428571,5.777777777777778,3.272727272727273,94.44153500749827,1.0,3.5218922575261704,45.86513290532796,,29.590907557926535,40.87858715048995,38.88842798958151,29.38575360079004,48.62912634471942,40.74688210400519,40.340014157690106,51.15645758725466,0.14014040234702435,-0.33793431323306955,-0.8622803156511379,0.2714932126696828,-0.16642325956455514,-0.6071354903664246,0.13504775072821013,-0.26285172451167044,-0.22749679030377348,-0.27498653782831506,-0.23557150052149053,-0.0817545645910729,-0.10586279814066905,0.3130321466960613,0.4137649963703232,0.03903743315508014,0.3515302473711218,0.13940766318531975,-0.10590357127539714,0.04987217113548579,0.17224464042300458,0.27719573401410597,0.19180786493816976,-0.10161357967694783,-0.15750467704119442,0.01901798790240109,-0.017469808445332222,-0.16227293593022496,0.03323107508157936,-0.10031298820209972,-0.15384519713339312,-0.17921298179230943,0.027774573487234725,0.013731948134482337,-0.0412893145250408,-0.014264627395515869,-0.08916982027513441,-0.41820780586189477,-0.2883439258787055,-0.3294184189512909,-0.38371350869888315,-0.006639406717929774,-0.08895679062942,0.014805575667145262,-0.40686956187733175,-0.26709561290480405,-0.4041630524578112,-0.0866078956334179,0.043676733682801415,-0.1110090981394807,0.09340378823090463,-0.09907476193692169,-0.40937746978751965,0.10754841079293496,0.04001844981190808,-0.023494776588955643,0.0015328354165518605,-0.2327921485029921,0.14027169107014179,-0.10164778777915671,0.12041596814752725,0.13419840600449293,0.053699456708560335,-0.013574660633484085,0.09648329002777536,-0.1386783015192903,0.12098001201939539,0.04855127639954343,0.13680299532385667,0.07658637863192196,0.10734909508258783,0.03445497042736455,-0.11530688274192054,0.09295874754788236,-0.016767788563658213,0.21890397184514837,0.2527316349590341,0.023104555952974903,-0.11279136248770728,0.013165316906641114,0.013002312551778267,0.10725535116393481,-0.07004467791114151,0.09037656250643147,-0.0354603241128807,0.04534500241658121,-0.0037475812804900724,0.4434389140271493,0.3500680942567872,0.17403176902041018,-0.03665156723616761,-0.006374404254809618,-0.016516095595943064,0.1181609779443087,-0.0238832731736907,0.07188624215754652,6.7755831051411,,,29.046249463773265,36.64127770994139,39.507156787327624,40.66604827713319,43.25011724265043,43.25011724265043,27.350306907443613,13.661067300451935,4.1713327577628805,3.786062036905987,3.429887156015605,13.689239606991679,1964.244981007163,1401.2205071519963,884.0657479822951,3.0,18.0,22.0,25.0,27.0,19.0,14.0,10.0,6.0,260.0248197100001,14.0,4.174387269895637,4.976733742420574,5.831882477283517,6.673297967767654,7.5406215286571525,8.394121193826242,9.264733855806515,10.122181217776706,10.993748398115178,0.781609195402299,0.9842758620689653,1.1499815953945,0.7495507336665527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6914287631633288,0.9779580797836377,1.0204560865961776,0.5992413933476981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,7.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,4.5237471617118175,0.0,0.0,0.0,0.0,4.565048284931329,9.757711252998451,0.0,23.20187978046503,0.0,6.4208216229260096,31.394276107678404,6.606881964512918,174.8867806266129,-223.34464247733425,-28.30926808394288,-7.701539395770147,-31.906377496762033,244.20555940126735,311.87036069868446,10.44139565007178,10.754150368920156,14.17592548630384,0.5,0.885587324817442,0.2395823747283575,65.52570075827487,0.26856828397393584,0.0,0.11441267518255833,4.0,0.35714285714285715,0.4019450816903764,0.559502994086806,0.7763383663385631,0.858036667268666,0.900625667088066,0.900625667088066,1.884,,2.679831932773109,0.9623873910080365,0.9863187119170018,2.7181212249741966,-2.193117353203792,1.0615026692410012,1.1052350254251515,-1.1124820779562221,59.19120000000003,9.088795446643147,0.0,9.757711252998451,0.0,6.4208216229260096,38.00115807219132,0.0,0.0,0.0,3.367295829986474,0.0,4.61512051684126,0.0,6.1070228877422545,0.0,7.72356247227797,0.0,9.400878083541478,22.66666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.543999999999993,0.0,12.18854938271605,0.0,0.0,0.0,0.0,0.0,0.0,33.3494662664405,5.0872950630771525,0.0,0.0,42.67157426211262,9.088795446643147,0.0,6.4208216229260096,0.0,0.0,0.0,0.0,21.736971276330028,20.051434131736535,17.411737943544313,91.73026581065592,,59.27247490614488,81.63319394312225,77.63595330603202,58.876060192795336,97.96225002485998,81.34212096954738,80.52213759746235,102.47868199510674,17.41173794354431,91.73026581065594,,57.358309239878366,80.94577437811654,76.79503944674971,56.934545032099464,99.52876242000552,80.54178329419265,79.61298242385118,103.42539725246553,4.7540099035475505,63.706713976017404,,40.226771530033865,57.31260142166865,53.86225110976055,39.92816651946726,66.60095218511594,57.12838627361685,56.467992187856694,71.74108504509175,1.2436955673960224,6.55216184361828,,4.233748207581777,5.8309424245087325,5.545425236145144,4.205432870913953,6.9973035732042845,5.810151497824813,5.751581256961596,7.319905856793339,2.3770049517737752,45.86513290532796,,29.590907557925302,40.87858715048995,38.88842798958151,29.38575360078851,48.62912634471942,40.74688210400519,40.340014157690106,51.15645758725466,28.360784313725492,0.0,0.0,11.14777092781557,0.0,0.0,0.0,29.59322651128915,4.122792343789368,2.851219135802469,5.285771604938272,0.0,0.0,1.773858024691358,0.0,0.0,0.0,17.378000407083245,371.14286425677216,56.626605470168585,78.82359244772967,109.37167385437266,120.8814488586996,126.88144885869957,126.88144885869957,172.0,95.97170765154917,47.94947577110815,45.213879790389434,51.38,41.57,1.0,5.267858159063328,4.807354922057604,3.206865673237672,3.669559529513729,,3.6364718692441316,3.6636434870139682,3.6596471824519394,3.6358815115514918,3.661370389106847,3.6655359755364927,3.6641826538119693,3.672695942412276,0.22906183380269085,0.26211139496526636,,0.25974799066029514,0.26168882050099773,0.26140337017513854,0.259705822253678,0.2615264563647748,0.2618239982526066,0.2617273324151407,0.2623354244580197,1.5017662709662882,1.6365438722787422,,1.6274861815359747,1.634930377119834,1.6338389811507044,1.6273238248233606,1.6343097372088307,1.6354468028873443,1.6350775331217948,1.6373982182222506,175.26999999999973,79.77737889962904,58.51914681108071,,59.686948885314415,58.43366187249724,58.69617630165164,59.71278655202828,58.61746980018715,58.34961711215445,58.408151533412266,58.04022854625891,5.69838420711636,4.1799390579343365,,4.263353491808172,4.17383299089266,4.192584021546546,4.265199039430591,4.186962128584796,4.167829793725318,4.172010823815162,4.145730610447065,4.715712228455344,4.4058262332253095,,4.425585621484488,4.404364362325934,4.408846821668365,4.426018414187462,4.407505008232524,4.4029250334154435,4.403927697766446,4.397608602366506,19.24817901234568,0.0,2.851219135802469,0.0,0.8729861111111112,0.0,0.892295524691358,2.357510707986899,-2.842183641975309,207.0952616734192,73.29371013274975,-93.6020288485163,-11.864197405776206,-3.2276561671902173,-13.3717184069309,102.34467933729462,130.7024792505507,4.375908936145512,4.506982043122439,5.941021784115942,307.0,19.0,0.9469234250586759,0.7567523731533072,0.14433756729740643,0.05,0.2762929288806347,0.17247448713915892,0.07216878364870322,0.025,0.0,0.0,0.0,0.0,0.0,0.0,0.07216878364870322,0.08660254037844387,0.17423085626466897,0.13989385281812877,10.441311299868556,10.322885269288756,6.726492059082183,7.244517016956578,5.4889640722733475,5.883786772984461,4.274656570913544,4.606453214667552,3.223162433681905,3.860556819943667,2.5311834959653425,2.85920082528205,1.22888019626907,1.3936620808952824,0.6505244899588867,0.7436948610751514,2.180412942602845,1.7956767430037366,3.336924556499374,2.7081937356712533,4.710914283055506,3.6431553973595743,47.70933405784829,35.15044338926883,30.433138512521545,28.025253484982546,24.16197066445296,24.16197066445296,64.0,72.0,33.48589499999998,28.792104999999996,0.20689655172413793,14.07,5.423611111111111,3.4166666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29.0,0.0,0.0,29.0,0.0,1.0,1.0,28.0,1.0,14.0,28.0,0.0,0.0,0.0,7.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,2.0,1.0,1.0,14.0,7.0,0.0,2.0,2.0,1.0,1.0,5.0,0.0,0.0,2.0,0.0,0.0,2.772588722239781,1.3862943611198906,3.091042453358316,3.295836866004329,3.4011973816621555,3.4657359027997265,3.091042453358316,2.772588722239781,2.4849066497880004,2.0794415416798357 +53708,CSc1ccc(C(=O)c2[nH]c(=O)[nH]c2C)cc1,0,31.93103448275862,6.28908275862069,3.3793103448275863,8.222222222222223,160.04333109641684,126.74254896551722,1.7558125123513106,6.376441379310345,5.640922851331537,7.8261487241379335,240.3929272862704,29.666666666666668,6.380266666666667,3.933333333333333,7.777777777777777,146.30283005991998,113.97919359999995,2.0068022566666657,6.540366666666669,3.3458847736625517,7.817656133333335,281.71478539392115,25.816326530612244,6.254263265306121,3.693877551020408,6.73469387755102,151.13940808710785,97.4728056938775,1.7735432893692642,6.390200000000001,3.361866969009827,7.7667350204081655,241.68551722183548,23.4,6.373745454545454,3.2363636363636363,5.454545454545454,152.90688120554827,86.3066758909091,1.6508365251217818,6.492219999999999,3.7373737373737383,7.888622763636364,226.2815828211739,19.033898305084747,6.258610169491527,2.7288135593220337,4.282485875706215,156.51818495427466,68.29475584745764,1.3991651768998976,6.353510169491526,3.798284159866081,7.813587084745764,189.11034812838273,16.375,6.278535714285716,2.4107142857142856,3.7261904761904767,163.0361374830784,58.12355791071429,1.2328300001310535,6.333796428571429,4.164131393298061,7.870805678571427,166.35713534906947,18.454545454545453,5.975022727272727,2.5681818181818183,3.015151515151515,158.98640616381346,66.98333961363636,1.3577275983816361,6.0757090909090925,2.777918069584736,7.560135181818183,176.09582203234712,16.358974358974358,5.937789743589745,2.2564102564102564,2.2393162393162394,162.46383896263566,58.359631564102564,1.2065138097561534,6.017171794871794,3.007993035770813,7.58013558974359,150.46479896292743,19.85185185185185,6.053844444444445,2.074074074074074,1.4074074074074074,164.6549449041286,71.47057388888891,1.2889071495848887,6.130877777777779,2.937471422039323,7.800783185185184,149.3289723934258,11.835909631391202,0.1284164090368608,0.020787170094430905,0.6397146254458975,4.129739727837231,1.657438198629578,53.43352399524377,0.3203180033070107,0.11954292508917952,2.218659118007337,0.08067585731272289,51.18416245828479,0.45144669044788,-0.010062386048355148,-0.01571157191906383,0.2729290527150216,1.5305412427885667,0.030268897660653115,2.1551677656757757,0.02902842820952279,-0.008129361870788806,-0.15655073461329969,-0.007028634324217185,2.8782120080864737,-0.1969230022567881,0.04206909412992305,0.005724819921784728,-0.01832124050571474,0.9874703745945461,0.09159029101567503,-0.3115471683612879,-0.010773419991529925,0.03657333106845588,0.2688038251662434,0.020226092018733773,3.472063690318311,-2.1475083774727053,-0.01086731812776998,-0.0017153256692557636,-0.19331964111987887,-0.555654043406719,-0.02180175387980693,-9.78483362157605,-0.038372844850974246,-0.012463990919900591,-0.08625719326824716,-0.007662778315857715,-7.728864731671735,-1.899615066809085,-0.004109687821197532,0.00037416920919444816,-0.08623712690703161,-0.47132034995555017,-0.3058422027888905,-8.763854833934582,-0.06795523523549812,-0.005446314919688038,-0.05726115164909148,-0.004757946149660398,-11.301786074469064,-0.2724859860710043,-0.018124783421097333,-0.0013600220715080918,0.03700951248513674,-0.6224874016193874,0.09805536775997277,-1.2715355919186317,0.049521527835705334,-0.018490215729573645,-0.13207190933360183,-0.008715487238831294,2.5079136570790843,1.2612690519943788,-0.00219227110582638,0.0001104118709331078,-0.0715328072640796,-0.35596752303054324,-0.19762045121812266,5.267564035320508,-0.030557060515546765,0.001376040428061869,-0.02778082679379632,0.0035358574208193346,-3.918411286023542,1.7414555321808591,-0.0038576115125460984,0.0020535539589712952,-0.011951583889752763,-0.4287867855049781,-0.20459299636998315,7.681116304490995,0.0008661677770051293,-5.612976005320469e-06,-0.03485719708323607,-0.0013945832190006122,-0.13981776075622995,1.2624300876381733,-0.03036276919011757,-0.0012764184903117986,-0.09054476593121065,-1.2184299506270706,0.04293901647795955,6.003365270401197,0.07704197177420508,-0.025550204782666102,-0.578159789863148,-0.01893328898577529,9.22958485368119,,,0.4882352941176471,1.3235294117647058,0.7058823529411765,0.058823529411764705,0.6176470588235294,0.08823529411764706,0.6728150044982897,0.01769537408487675,0.02781302114370028,0.8341288293356255,0.2537335882045781,0.22352477667366846,1.5069438338339152,0.4772583648782465,1.9954636629836826,1.4419213394949821,0.2340790795001342,0.20828219523751343,0.0,0.5535423234887004,8.55386029737931,926.0,182.38340000000002,98.0,238.44444444444446,4641.256601796088,3675.5339199999994,50.91856285818801,184.9168,163.58676268861456,226.95831300000006,6971.394891301842,890.0,191.40800000000002,118.0,233.33333333333331,4389.0849017976,3419.3758079999984,60.204067699999975,196.21100000000007,100.37654320987654,234.52968400000006,8451.443561817634,1265.0,306.4588999999999,181.0,330.0,7405.830996268285,4776.167478999998,86.90362117909395,313.11980000000005,164.73148148148152,380.5700160000001,11842.590343869939,1287.0,350.556,178.0,300.0,8409.878466305156,4746.867174000001,90.796008881698,357.0720999999999,205.5555555555556,433.874252,12445.487055164565,1123.0,369.2580000000001,161.0,252.66666666666669,9234.572912302205,4029.3905950000003,82.55074543709397,374.8571,224.0987654320988,461.00163800000007,11157.510539574581,917.0,351.59800000000007,135.0,208.66666666666669,9130.02369905239,3254.9192430000003,69.03848000733899,354.6926,233.19135802469143,440.7651179999999,9315.99957954789,812.0,262.901,113.0,132.66666666666666,6995.401871207792,2947.266943,59.74001432879199,267.3312000000001,122.22839506172838,332.64594800000003,7748.216169423273,638.0,231.57380000000003,88.0,87.33333333333333,6336.089719542791,2276.025631,47.05403858048998,234.66969999999998,117.3117283950617,295.625288,5868.127159554169,536.0,163.4538,56.0,38.0,4445.683512411472,1929.7054950000004,34.800493038792,165.53370000000004,79.31172839506172,210.62114599999995,4031.882254622497,343.2413793103448,3.724075862068963,0.6028279327384962,18.55172413793103,119.76245210727971,48.065707760257766,1549.5721958620693,9.28922209590331,3.466744827586206,64.34111442221277,2.339599862068964,1484.340711290259,13.5434007134364,-0.3018715814506544,-0.4713471575719149,8.187871581450649,45.916237283657004,0.9080669298195935,64.65503297027327,0.8708528462856837,-0.24388085612366414,-4.6965220383989905,-0.21085902972651555,86.34636024259422,-9.649227110582617,2.0613856123662297,0.28051617616745167,-0.8977407847800223,48.38604835513276,4.487924259768077,-15.265811249703106,-0.5278975795849663,1.7920932223543382,13.171387433145926,0.9910785089179548,170.13112082559724,-118.11296076099879,-0.5977024970273489,-0.094342911809067,-10.632580261593338,-30.560972387369542,-1.199096463389381,-538.1658491866827,-2.1105064668035833,-0.6855195005945325,-4.744145629753594,-0.42145280737217433,-425.0875602419454,-112.07728894173601,-0.24247158145065437,0.02207598334247244,-5.087990487514865,-27.80790064737746,-18.044689964544542,-517.0674352021404,-4.009358878894389,-0.3213325802615943,-3.378407947296397,-0.28071882282996347,-666.8053783936748,-15.259215219976243,-1.0149878715814507,-0.07616123600445314,2.0725326991676574,-34.8592944906857,5.491100594558475,-71.20599314744338,2.7732055587994986,-1.035452080856124,-7.396026922681703,-0.48806728537455246,140.44316479642873,55.49583828775267,-0.09645992865636073,0.004858122321056743,-3.147443519619502,-15.662571013343904,-8.695299853597398,231.77281755410237,-1.3445106626840577,0.06054577883472223,-1.222356378927038,0.15557772651605073,-172.41009658503586,67.9167657550535,-0.15044684898929783,0.08008860439988051,-0.4661117717003578,-16.722684634694147,-7.979126858429343,299.56353587514883,0.033780543303200045,-0.0002189060642074983,-1.3594306862462067,-0.054388745541023874,-5.452892669492968,34.08561236623068,-0.8197947681331743,-0.034463299238418565,-2.4447086801426874,-32.89760866693091,1.1593534449049079,162.09086230083233,2.080133237903537,-0.6898555291319848,-15.610314326304994,-0.5111988026159329,249.19879104939213,0.7302264166731524,0.6088613252398718,0.4507440112738997,0.3509296001442869,0.29063541501748513,0.18065610567764076,0.18960213328134484,0.10116879459908094,0.12326481762686914,0.05111202347771165,0.07870636170213029,0.02808698891897186,0.05040161468967978,0.017526639400185128,0.033236133671198986,0.00978052487443227,16.00221237910883,5.692995152659399,3.5478011867146066,2.185371519029485,0.4776210395662651,-0.3731106641520629,3.2180176397703595,0.9770740747138829,6.023276126382407,0.630917460650194,14.556278916841126,10.335572191911217,32.061103261222904,11.704440566322404,2.918033565873054,0.7463163510582889,3.4940394436937128,2.2375260037811606,7.00936003482207,0.629407189609748,3.706241559796998,2.435419532059074,24.434774241422705,14.701759587014944,0.33911216164983243,0.689476245156854,0.8095340129192978,0.8762327727873221,0.8762327727873221,0.8762327727873221,1.8582405266563837,595.7133441449546,0.0,0.0,1.0,0.0,8.0,0.0,1.0,0.0,0.0,3.1047965523209564,1.2934405173905836,0.6727508622181704,0.32792327601127447,0.32792327601127447,0.32792327601127447,17.34567674737042,678.415941212648,53.86877350133376,23.393653145263727,49.21959819619359,,10.0,269.0,0.0,9.589074368143644,11.472988344568414,16.95130748139392,4.895483475517775,0.0,30.81835628600496,18.388503320434623,9.967957041894417,0.0,8.3,22.5,12.0,1.0,10.5,0.0,0.0117647058823529,1.5,0.1853624208304009,0.0700838769804285,-0.11527854384997238,0.058204334365324906,0.14158620689655155,0.0,0.6241379310344829,0.852941176470588,0.438775510204082,0.5540540540540544,0.7947368421052631,11.437855076470925,0.3008213594429048,0.47282135944290477,14.180190098705634,4.313470999477827,3.7999212034523637,25.618045175176558,8.113392202930191,0.5724137931034484,0.2008032128514056,0.0,0.36144578313253006,0.16666666666666666,0.48072175001973316,-0.7249301637475849,-0.07690778613846785,-0.024997591853365,-0.06590274215887137,0.5192782499802673,0.783073507228042,0.0428333685958416,0.027002534732001447,0.04350408373489122,-3.893612133684069,0.7260196905766526,0.7168525648266979,1.7691753563516122,0.7043370508054525,0.4139057734553287,1.087692718168781,0.7228636293667546,0.817454831210957,0.6976419629796144,0.562739956916774,0.6986744014798327,0.833136123825789,1.0521541950113378,0.39890241556936007,0.6888799273427468,1.2166755177907598,0.65181941994278,1.0150058470737664,1.0266936059365022,1.10936125497799,0.4233778169836639,0.5041273577784349,0.4542169869424769,0.8936447150393406,1.0767932489451475,1.0421182103876818,1.1358633582194093,1.4132477188239274,1.0919933224367289,1.0437963169945779,1.0748840191990203,1.0668852289737967,1.0415030912613856,1.0155853894417544,1.0698778044134536,1.056326719243555,1.0079382106844024,1.0748538527117326,1.0919075561707527,1.0999936991997987,1.1016157490800995,1.1227742922571404,1.0182507018475493,1.0945756414477013,1.0756234017382558,1.155283336436713,1.129351121809766,1.149013765367828,0.7829766927868195,1.4531793122477972,0.9749721807037377,0.8220260223048329,1.256886237123296,0.805971458318176,0.8049663093019446,0.6183200782429688,1.442282385543031,1.5601897153103261,1.4744569385251205,0.873655070527675,0.7360311980565145,0.7552392287346205,0.8861835081029018,0.9433085501858739,0.9207199320610285,1.0728575018629534,0.7555985891925973,0.9682849473671103,0.7521373252134294,0.5787025231359502,0.63668871003631,1.0571940448053847,0.7990190775000902,0.969635153938226,0.8086652389036545,0.8900962729959015,1.070733071820793,1.0071190531968364,0.8117455579857317,0.9217702833706658,0.9604384047248066,0.945960102365004,0.9412778982976048,1.013511105122327,1.4064176694275148,1.5130017599058756,0.9218525637418002,1.1179953187388134,1.458099022946422,0.9070146671584716,1.3669455291696544,1.0866754143142578,1.4860455548231815,1.7595372544217796,1.5755100566006344,0.8787171084999529,4.0,0.0,2.222222222222223,1.5694444444444446,0.8672222222222224,0.5141666666666667,0.29315192743764173,0.15189200680272108,0.10104087931468883,0.04469135802469136,3140.2395782360773,3448.4569687989288,1708.351927016488,1583.3200431332605,12.61471678786404,0.4784409861681939,6.5793192476458975,0.9173285735264524,1.0,0.16666666666666666,1.7531844428066155,3.5645404777369882,4.1852301329094015,4.530057719116297,4.530057719116297,4.530057719116297,0.2222222222222222,0.0,0.08888888888888893,0.06539351851851852,0.04336111111111113,0.032135416666666666,0.022550148264433977,0.016876889644746786,0.016840146552448136,0.01117283950617284,0.5194411813752092,13.432098765432098,5.76,3.0625,102.4582862961644,1.0,3.754262670657144,65.32215133437332,,45.749461443978184,49.79645987881136,50.17899036685632,45.75087761864934,54.12458968345565,49.74513853005418,49.47909464279235,53.15081879054654,0.03814212042060148,-0.0783574787974863,-0.7558302475849332,0.4266418835192068,0.3706144560325888,0.018262459309602245,0.04033362586880124,0.09062377983700254,-0.06800370548674686,-0.07056096781280395,-0.08712190435079196,0.05623247250420915,-0.016637758177411973,0.3275990540885433,0.27540160088065413,-0.02863970867157268,0.2391120118147712,0.05526015455140636,-0.005830556270049105,-0.03363351382158834,0.3059430831324566,0.12115598245108807,0.2507081138330096,0.06783472706324052,-0.1814400789084333,-0.08462561918119524,-0.08251847949785704,-0.30219668807029404,-0.13454940989652106,-0.013153886460341812,-0.18312162271848323,-0.11979609155528971,-0.10426372711394172,-0.03887807395383842,-0.09498229794019511,-0.1510010980050866,-0.16049590829680938,-0.03200282465473616,0.018000007095467598,-0.13480562031377993,-0.1141283424663625,-0.18452706293469673,-0.16401416524043355,-0.21214928456695586,-0.04555949183630118,-0.025808900152502885,-0.05897608414890747,-0.2208063106176651,-0.023021972502081038,-0.1411407121335621,-0.06542603275625554,0.05785315985130112,-0.15073284096414172,0.05916079878033946,-0.023796588674028195,0.15460113800797243,-0.15467427884820342,-0.05952780589936713,-0.10803092187849399,0.048997844970561734,0.10656291668949897,-0.01707158082264322,0.005311539301960505,-0.11181987157823597,-0.08619611561258499,-0.11923247055698454,0.09858163268043833,-0.09539601333696865,0.011510847898655125,-0.012521448909532055,0.04382794975593914,-0.0765551510043181,0.14713322308259016,-0.030039864387103404,0.09878949128921899,-0.018682680392717615,-0.10382900951715332,-0.12343929115374984,0.1437508839052934,0.0027040870886515414,-4.6953644484884117e-05,-0.015710929543129932,-0.017286252237702356,-0.0027316606161169824,0.1066610110210673,-0.23643994889626765,-0.06140414902621902,-0.14153930882555424,-0.2950379517658294,0.02590685825478312,0.11235203710194314,0.24051714539555163,-0.21373247110697302,-0.26058973420955966,-0.23468345570081023,0.18032110735822476,3.3019272488946267,8.7851516663944,5.825095602065172,20.213350530844043,35.326097715613116,40.91740806044071,41.26499426733725,41.26499426733725,41.26499426733725,33.9228822707226,24.512662771414696,3.9793443515022817,3.540797319037728,0.0,9.410219499307907,3300.4474362737574,3039.367696098897,353.0781323194001,26.0,25.0,32.0,39.0,42.0,39.0,38.0,34.0,32.0,248.061948624,18.0,4.465908118654584,5.303304908059076,6.171700597410915,7.027314514039777,7.899153483343097,8.76170676846664,9.634365505605258,10.500646823684912,11.373536952861308,0.7471264367816094,0.9928275862068964,1.117656343448925,0.7128522991855166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7174378690894078,0.9809330628803246,1.0134992591104304,0.6683981695291169,4.0,0.0,2.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,5.693927994848461,0.0,5.783244946364939,0.0,4.794537184071822,4.794537184071822,0.0,11.761884949391115,0.0,37.44497465704847,16.15286296206323,0.0,216.26558660167854,-326.1292985010284,-34.59903256465813,-11.24583787934581,-29.64811804554805,233.61126334904895,352.28664271161966,19.26974093667563,12.147815265917918,19.571480150645534,0.5,0.7441797767789942,0.20526990517346794,38.97708636027804,0.21428604300906307,51.593426796990556,0.2558202232210059,5.0,0.16666666666666666,0.36088746427065355,0.7337493665191629,0.8615163659773635,0.9324980323430304,0.9324980323430304,0.9324980323430304,1.9643199999999998,,1.4107142857142856,0.9181739123801387,0.7098670474021058,1.408890217594701,-2.7768142340074573,0.8514381884944923,0.8488716908216677,-1.279059337431441,67.80590000000001,4.794537184071822,0.0,9.967957041894417,0.0,11.819220675208399,6.255769183511404,51.70105633751565,0.0,0.0,3.6109179126442243,0.0,4.919980925828125,2.3978952727983707,6.418364935936212,4.727387818712341,7.99598047476376,6.78332520060396,9.61560546008168,21.66666666666667,7.299439720332577,0.0,5.049977980389686,0.0,0.0,0.0,2.558174655664736,0.0,28.791999999999994,0.0,23.163796226454053,0.0,0.0,0.0,0.0,0.0,-0.1726823507180646,32.412033960018825,5.689743398203474,0.0,0.0,22.006971171770758,0.0,6.923737199690624,21.74584466546574,33.95548893343604,0.0,0.0,0.0,20.67271667637998,20.805698203592826,21.596513693428005,130.64430266874663,,91.52413684587356,99.48489929734271,100.27446696343003,91.52843468509396,109.34367930808082,99.39010786146194,98.85832202784097,106.75307028842184,21.596513693428005,130.64430266874666,,90.44535533326852,98.6747458452426,99.64811368631058,90.45104804810975,111.02599360091871,98.63883887161384,98.1093175947631,107.5806969185245,4.712298474023203,98.62967781415682,,71.66036049435141,76.68437882498274,77.14235129578854,71.6621375959274,82.12891191706892,76.60519690940254,76.26297839771706,80.81075931152402,1.2703831584369414,7.684958980514508,,5.383772755639621,5.852052899843689,5.898498056672355,5.384025569711409,6.43198113576946,5.846476933027173,5.81519541340241,6.279592369907167,2.3957008436728158,65.32215133437332,,45.749461443978184,49.79645987881136,50.17899036685632,45.75087761864934,54.12458968345565,49.74513853005418,49.47909464279235,53.15081879054654,28.447058823529414,0.0,3.6726331848166263,0.0,0.0,0.0,0.0,29.39147851420248,0.0,0.0,0.0,1.6170088235911646,0.0,0.0,0.0,0.0,0.0,19.38354691634439,334.7892537743693,50.842348841391846,103.37167385437266,121.37167385437264,131.37167385437263,131.37167385437263,131.37167385437263,342.0,106.13763767212558,115.08759617635803,63.46945800136868,91.02,65.72,1.0,7.795241361669832,5.169925001442312,3.6890282939513908,4.056621718187073,,4.077128262230437,4.050197995938963,4.0473493764247985,4.077139374490624,4.0620686733911695,4.0520835122891405,4.054920780381068,4.057737926929404,0.2170016643500818,0.23862480695218077,,0.2398310742488492,0.23824694093758605,0.2380793750838117,0.23983172791121318,0.2389452160818335,0.2383578536640671,0.23852475178712165,0.23869046628996493,1.8359913394633414,1.9309787891810202,,1.936021134357937,1.9293940188718084,1.9286904429615526,1.9360238598657773,1.9323206203775938,1.9298594473766806,1.93055940215784,1.931253908549199,180.46999999999983,97.48329381869848,80.65232128906378,,78.94508707376875,80.42471900108447,80.6249907508357,78.94480407378326,80.38607571094771,80.35414635096075,80.22227167455715,80.45855642886717,5.7343114010999106,4.74425419347434,,4.643828651398161,4.730865823593204,4.742646514755042,4.643812004340192,4.728592688879277,4.726714491232985,4.718957157326891,4.732856260521598,5.110309268935417,4.920775837476643,,4.899380761502908,4.917949830256189,4.920436911459784,4.89937717672641,4.917469224573594,4.9170719455354375,4.915429429060436,4.918370475947187,0.0,29.311768690130883,0.0,1.1051652651801473,-0.1726823507180646,7.299439720332577,1.9768024234997539,1.6958307613168724,0.0,211.85960962483006,97.29288085310935,-146.71802148628313,-15.565303781531034,-5.059242120216661,-13.33800195329847,105.09629926847994,158.4856051028208,8.66901035195821,5.46502086561451,8.8047558390456,535.0,24.0,1.2237010601067564,0.5770195511812306,0.0,0.0,0.2710175098617139,0.061018104512990015,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.03125,0.33133897861876416,0.0874105368547735,0.4020048140179313,0.09686259791486893,12.41384908344359,10.35064252907782,8.113392202930195,6.316732802597165,7.265885375437128,4.516402641941019,6.067268265003035,3.23740142717059,4.807327887447896,1.9933689156307544,3.305667191489472,1.1796535345968182,1.9656629728975115,0.68353893660722,1.2629730795055614,0.37165994522842627,2.80844359240927,1.1419919638998763,4.277296994316998,1.29485104197069,5.649619536440468,1.345766676797391,54.91066199970217,33.09462429756029,23.907438283686915,22.803585389487395,22.803585389487395,22.803585389487395,86.0,100.0,34.74551599999999,17.374484,0.41379310344827586,52.05,6.416666666666667,3.833333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,11.0,29.0,0.0,0.0,30.0,11.0,2.0,6.0,24.0,13.0,18.0,17.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,2.0,1.0,17.0,5.0,0.0,2.0,2.0,0.0,2.0,3.0,1.0,0.0,0.0,1.0,2.0,3.2771447329921766,6.339890719532516,3.907010463604602,4.473066345354754,5.018520788370246,5.392774910234201,5.461976271027354,5.668371163176867,5.814503596556124,6.12939056607622 +9803964,CS(=O)(=O)Nc1cccc(CC(=O)NC[C@H]2CN(Cc3ccc(F)c(F)c3)CCO2)c1,0,28.607142857142858,6.591041071428572,3.267857142857143,8.793650793650794,167.42117566100583,114.59161679106322,1.516348868236161,6.624087500000002,7.014276222320204,8.054786732142857,218.16641827076066,30.482758620689655,6.482393103448276,3.8620689655172415,6.385057471264369,147.98530397309142,117.34048870121384,1.8424769608620695,6.633613793103448,3.014766922094508,7.928635379310342,265.87225575987645,22.78640776699029,6.533000000000001,3.407766990291262,5.550161812297734,157.70613432641755,84.87703961495926,1.5018025585596213,6.623193203883495,3.9628131367613566,8.008463359223299,215.347430419055,17.773722627737225,6.495467153284671,2.781021897810219,4.0583941605839415,163.70988360406338,63.6694871484801,1.2893423310002698,6.549581021897811,3.7904839145715052,8.008829430656933,177.96879224820825,15.372413793103448,6.03237172413793,2.613793103448276,3.1632183908045977,164.05689157985358,54.89743395711997,1.1975468232776687,6.103386896551726,2.839676458067263,7.618047806896549,157.61152070340603,16.028985507246375,6.220188405797101,2.5434782608695654,3.5024154589371976,164.5802330893225,56.990880606771015,1.203738933388558,6.278929710144928,3.219907407407407,7.792452666666666,161.43304012994176,15.644444444444444,6.147488148148147,2.525925925925926,3.345679012345679,164.11744720997083,55.676326378844436,1.186168419585311,6.209911111111112,3.1177869227251938,7.729862385185186,158.2969144288334,15.692913385826772,6.278116535433073,2.4881889763779528,2.997375328083989,165.73819935762262,55.53537158301732,1.1253868861580631,6.330184251968504,3.188065033537475,7.857900661417324,153.55982837403678,16.633928571428573,6.508964285714285,2.4285714285714284,4.226190476190476,170.1705744543157,59.72223673465715,1.092732262456018,6.532991964285714,4.3643766534391535,8.053941732142857,152.01947569166262,10.544642857142858,0.21992420280612232,0.017735309201014533,0.6272321428571429,4.745890022675737,2.2493440395054116,49.00915205002321,0.2802089280797114,0.1969571109693877,3.214741913676479,0.13247179559948977,49.060011212242976,1.9418103448275863,-0.010297447880014073,-0.008709019476690893,0.030711206896551723,0.5582971694424894,-0.3023224472370515,8.352113686085115,-0.024196259689802282,-0.003730356043279328,-0.3316652435128836,0.0010134901147959131,0.28461523266921757,-1.0321601941747574,0.010830547540618189,0.0004469224612793672,-0.10452063106796117,-0.0579180701406776,-0.20412536844518028,-4.431776781701975,-0.031071620700858983,0.009168114412026982,0.4488446057229228,0.004526189837403413,-2.1900841020372668,-1.8243613138686132,-0.024418063598614616,-0.00043747253734234244,-0.022696167883211677,-0.754058253471705,0.07470952301227606,-8.497841034567859,-0.00188073030838752,-0.026163967069491968,-0.15924921696951816,-0.01318950532316027,-7.284111585032399,0.665948275862069,0.0043780016273750775,0.0002659208512193102,-0.03523706896551724,0.2780016029400265,-0.1550889699799401,3.1567297610291227,-0.00881849975189158,0.006385462922237768,0.12207938439362194,-0.000369044244810021,1.2497952643888797,-0.18568840579710144,-0.0074645884168884945,-0.0016045977715309168,0.002943840579710145,-0.016335157251306298,0.036587501362413406,-0.9213310839173485,0.0020859436683218434,-0.00694189357808344,-0.15327281701339057,-0.004684168140897673,-0.9252778050091717,0.05324074074074074,0.012682463860544205,0.0037507773834958734,-0.02141203703703704,0.15555030654237006,0.01472946691061407,0.4176355021456085,-0.013816350865577552,0.011664423422146577,-0.02961831853273622,0.004164902680933467,-0.0632922676861741,-0.2111220472440945,-0.0325168771593283,-0.003418422180215506,-0.014886811023622047,-0.7859787615833734,-0.28308865374008496,-1.2580779681185232,-0.023366795760041265,-0.02717169195926403,-0.5507103463453891,-0.018497154007813755,-3.780471256431625,0.08928571428571429,0.006683992346938782,0.0009546283376440581,0.020089285714285716,0.09460034013605441,-0.01905167089288402,0.2274370303881425,0.009719969969279192,0.005133498086734718,0.20773962073255228,0.006324132015306133,0.5798048440954334,,,0.4657450076804916,1.217741935483871,0.5806451612903226,0.04838709677419355,0.6370967741935484,-0.056451612903225805,0.8565528464537175,0.023824468131103692,0.03214704877626498,1.0080350834717156,0.24396910731670793,0.22943912011261083,1.864587929925433,0.47340822742931876,2.012828907082287,1.3983466917984462,0.20105846608049288,0.2316956176148557,0.11343777101202014,0.6144822152838411,8.092024709285727,1602.0,369.09830000000005,183.0,492.44444444444446,9375.585837016326,6417.13054029954,84.91553662122502,370.9489000000001,392.7994684499314,451.06805699999995,12217.319423162597,1768.0,375.9788,224.0,370.33333333333337,8583.147630439302,6805.748344670403,106.86366373000003,384.7496,174.85648148148147,459.86085199999985,15420.590834072835,2347.0,672.8990000000001,351.0,571.6666666666666,16243.731835621007,8742.335080340803,154.68566353164098,682.1889,408.16975308641975,824.8717259999999,22180.785333162665,2435.0,889.8789999999999,381.0,556.0,22428.254053756682,8722.719739341774,176.63989934703696,897.2926000000002,519.2962962962962,1097.2096319999998,24381.72453800453,2229.0,874.6938999999999,379.0,458.66666666666663,23788.24927907877,7960.1279237823965,173.64428937526196,884.9911000000002,411.7530864197531,1104.6169319999997,22853.670501993874,2212.0,858.386,351.0,483.33333333333326,22712.072166326503,7864.7415237344,166.115972807621,866.4923000000001,444.3472222222222,1075.358468,22277.75953793196,2112.0,829.9108999999999,341.0,451.6666666666667,22155.85537334606,7516.304061143999,160.132736644017,838.3380000000002,420.90123456790116,1043.531422,21370.083447892506,1993.0,797.3208000000002,316.0,380.66666666666663,21048.75131841807,7052.9921910432,142.92413454207403,803.9334,404.8842592592593,997.9533840000001,19502.098203502672,1863.0,729.0039999999999,272.0,473.3333333333333,19059.104338883357,6688.890514281601,122.38601339507402,731.6951,488.8101851851852,902.041474,17026.181277466214,590.5,12.31575535714285,0.9931773152568137,35.125,265.76984126984127,125.96326621230305,2744.5125148013,15.691699972463837,11.029598214285711,180.0255471658828,7.418420553571426,2747.360627885607,112.625,-0.5972519770408162,-0.5051231296480718,1.78125,32.38123582766438,-17.534701939748985,484.4225937929367,-1.4033830620085324,-0.216360650510201,-19.23658412374725,0.05878242665816297,16.507683494814618,-106.3125,1.1155463966836734,0.04603301351177482,-10.765625,-5.965561224489792,-21.02491294985357,-456.47300851530343,-3.200376932188475,0.9443157844387792,46.230994389461046,0.4661975532525516,-225.5786625098385,-249.9375,-3.3452747130102023,-0.059933737615900914,-3.109375,-103.30598072562358,10.23520465268182,-1164.2042217357966,-0.2576600522490902,-3.5844634885203996,-21.817142724823988,-1.806962229272957,-997.9232871494386,96.5625,0.6348102359693862,0.03855852342679998,-5.109375,40.31023242630385,-22.487900647091315,457.7258153492228,-1.2786824640242793,0.9258921237244763,17.701510737075182,-0.053511415497453044,181.22031333638756,-25.625,-1.0301132015306123,-0.2214344924712665,0.40625,-2.2542517006802694,5.04907518801305,-127.1436895805941,0.2878602262284144,-0.9579813137755147,-21.1516487478479,-0.6464152034438788,-127.6883370912657,7.1875,1.7121326211734678,0.5063549467719429,-2.890625,20.99929138321996,1.9884780329328995,56.38079278965715,-1.8652073668529696,1.5746971619897878,-3.9984730019193897,0.562261861926018,-8.544456137633503,-26.8125,-4.129643399234694,-0.4341396168873693,-1.890625,-99.81930272108842,-35.95225902499079,-159.77590195105245,-2.9675830615252408,-3.4508048788265318,-69.94021398586442,-2.349138558992347,-480.1198495668164,10.0,0.7486071428571436,0.1069183738161345,2.25,10.595238095238093,-2.1337871400030104,25.47294740347196,1.0886366365592695,0.5749517857142884,23.266837522045854,0.7083027857142868,64.93814253868854,0.7236293758871537,0.5781394650129597,0.44471681970632987,0.35401144964935494,0.31194934738618585,0.20174543646370177,0.19334771464365538,0.10473333571878364,0.12653155978043504,0.06145708599343157,0.08271337807355252,0.034319236994201384,0.05569211380227595,0.020418455444191096,0.03602375473166773,0.011689909645222742,16.013332089451985,5.693045923296453,4.109622962098673,2.192259659733526,0.4386630247938487,-0.4111224104376491,4.038025900868179,0.9682472791135729,7.005353546660884,0.6158925230499728,17.425862919788273,10.31810441489208,32.066648897237314,11.704576717511058,2.955909570864863,0.5435759267451531,3.990785078357874,2.242106866373183,8.003009916549813,0.2992547436713723,4.012392089865074,2.438043195520565,24.442363711904875,13.303120533341502,0.3006229569944533,0.6098128132599547,0.8045184823298348,0.8962499165854274,0.9021374471826475,0.9021374471826475,1.3428565293688095,1033.0349537890306,0.0,1.0,5.0,0.0,10.0,2.0,2.0,0.0,0.0,3.9837492522300986,2.108176007338748,0.9270740528731007,0.37062299111006247,0.334908705395776,0.334908705395776,127.20022297477243,1956.676660380363,79.36477204007616,34.940654649649346,74.97442961542924,,18.0,917.0,21.657732835499374,21.9931642637504,18.43196774002582,49.60019684624077,12.322136251973014,6.06636706846161,30.33183534230805,0.0,14.938793199308897,4.736862953800049,14.43809523809524,37.75,18.0,1.5,19.75,0.0,0.03425499231950838,-1.75,0.20285102805166993,0.06038415366146499,-0.14246687439020495,0.037462179397663165,0.2067221013886562,0.0,0.6421768707482985,0.9181259600614434,0.4393258426966286,0.5817927170868336,0.8806637806637803,26.553138240065245,0.7385585120642144,0.9965585120642144,31.24908758762318,7.563042326817945,7.112612723490936,57.802225827688424,14.675655050308881,0.5072778986113438,0.1434696569920844,0.05771767810026385,0.27011873350923477,0.38095238095238093,0.41044926572039425,-1.1308104729892523,-0.07147447028656032,-0.02019304416052236,-0.06282280405495845,0.589550734279606,1.6242449441632827,0.04027334659473428,0.02900437400291577,0.042743288004296914,-5.819451264293688,0.796519606411866,0.6275599649287796,1.5203589613212785,1.1743772241992882,0.576435734711257,1.2191513080723948,0.7835488760798888,1.32243903601767,0.5943963196878306,0.6210805974552445,0.5857829313598235,1.0386848950131473,1.0539447399357136,0.7310749548171378,1.1611758905521214,1.3986110631240714,0.9020121125108396,1.0676204715374507,1.0325970155221091,1.1667211621367102,0.7313234559213289,0.5324910335474713,0.7601159493227568,1.0241980655022194,0.9919219763036398,1.073219081277803,1.1289151187775284,0.908642231862223,1.1154606461293728,0.9173047644661135,1.0035008219201977,0.872163123944827,1.091189797005291,0.9564361665597142,1.0786265692495243,1.0889417101430028,0.8466232590732578,0.6936657146591139,0.8402649044866268,1.0366916186035096,0.7902799130491194,0.9053905770382776,0.8495811979756311,0.9731534314091294,0.7012957493600334,0.6080951369628784,0.6908508490346658,0.997345683400236,0.8986795763845428,0.8449808880390881,1.0840573898702852,0.8736912682448811,0.90551362566395,0.7959466430989647,0.9046638937285293,0.8864982514070521,0.8596578928087754,0.8398308411352281,0.8539835441166808,1.0004323719406614,0.9276194060275347,0.7253871550444045,0.7663413117179622,0.9568999604586793,0.8549508985797696,0.8028847201497834,0.924562540990256,0.9941174116786448,0.7403172530143383,0.766333794245984,0.7549783572551184,1.0076652107944921,0.8951109096121663,1.1232181158532084,1.2051313912226214,0.949365315100737,1.1622832129708816,1.0186716152720567,0.9128253389296869,0.9581995950724991,1.118266618278783,1.150979607622452,1.1280028129356892,1.0488606980940751,0.9214346195717914,1.172039647820453,1.1030034330812124,0.838840874428063,1.0737375698032072,1.0451496625854912,0.9399097407739154,0.8350262404785738,1.1679978386079666,1.0802882557669307,1.153148217430409,0.9261179067282297,9.0,0.2106927864503622,2.4444444444444455,2.1875,1.537777777777778,0.8541666666666666,0.7485714285714287,0.4201388888888889,0.32098765432098764,0.16375,6583.412668442518,7363.82671461634,3342.634571842128,3088.75665659083,16.999056905364032,0.39918129101163385,10.213351423900589,0.66439557397232,1.0,0.38095238095238093,1.823605669827505,3.6991789147188556,4.880280869184503,5.436731930947541,5.472446216661828,5.472446216661828,0.2727272727272727,0.008778866102098425,0.05314009661835751,0.05208333333333333,0.039430199430199424,0.022478070175438597,0.020231660231660228,0.013129340277777778,0.010354440461967346,0.006064814814814815,0.49841809417292016,25.619834710743802,11.9234404536862,9.042675893886967,179.99361726683892,1.0,4.344934009748256,221.5195813166541,,178.34635280567403,181.54639808111858,180.29232652610517,178.2117321731309,248.19059692543917,183.36073052515613,184.56009184378357,226.6454007562271,0.18415136208356447,-0.046822713228575175,-0.49105540692759403,0.04896306295250951,0.1176380334931826,-0.13440471618718072,0.17041946935870642,-0.08635078066791342,-0.01893994090855203,-0.10317009962817852,0.007650610533430535,0.005801369091375005,-0.09788479402842745,0.04924672865662735,0.025199586667133008,-0.16663787444287048,-0.012203837396978561,-0.09074884271152385,-0.09042753437518158,-0.11088733294044079,0.04654878601185385,0.13962072781438625,0.03416719624672202,-0.044640921351659396,-0.1730130966581581,-0.11102945145214758,-0.024666755588186602,-0.036184637763981606,-0.1588865839429137,0.03321391556833755,-0.17339294150394988,-0.0067118857392456325,-0.1328409364897647,-0.04953717008884107,-0.09956463006689308,-0.14847350021018016,0.06315512861689392,0.019906865963427292,0.014993866089692899,-0.056178672229721435,0.05857733778316442,-0.06894853221921589,0.06441102587955565,-0.031471159082350764,0.03242057568172919,0.037974863199518295,-0.002785832585268003,0.025474826309803043,-0.01760973873774374,-0.03394164135481269,-0.09047475594274541,0.004693382845943577,-0.0034419586575452337,0.016265853831083265,-0.018799163939358796,0.00744424413103801,-0.035245711840088845,-0.04767810951209549,-0.03535973917844075,-0.018860122167649804,0.005049079562204033,0.05766743131825574,0.21148643877498982,-0.03413734018716225,0.0327757924855306,0.0065483388276400805,0.008521581881672461,-0.04930731850787851,0.059223164701880375,-0.00921328035906428,0.03143992018893951,-0.0012900989242003974,-0.020021735217052146,-0.147854927945307,-0.1927466920069236,-0.023734132877518424,-0.16561251057820298,-0.12585387062546946,-0.025670265970617365,-0.08339061827963627,-0.1379574051707492,-0.17130779425947124,-0.13963088462798037,-0.07705810013121653,0.00846740050804403,0.030392254520668478,0.053826427654807926,0.03202846975088968,0.019933108370412397,-0.00846987857716649,0.00464070527390475,0.03468829503717362,0.02606404034598476,0.06462093266298158,0.04773946021254423,0.01181827785540217,15.42849834228661,19.988869085602666,3.8786167800788607,21.0036756601291,38.146066217087586,44.524997534297945,45.47886449026938,46.15736449026937,46.15736449026937,62.39769611955089,43.34874744575183,6.232812448495279,7.1825641460605265,3.5165709013726243,19.048948673799075,14222.365348167366,13094.793707944047,2033.4044167468091,85.0,46.0,51.0,64.0,76.0,75.0,77.0,86.0,81.0,453.1533837200007,33.0,5.0689042022202315,5.8664680569332965,6.732210706467206,7.54274354536855,8.4071550862073,9.222960403332285,10.085850775128717,10.904505387765616,11.766163597300995,0.7083333333333334,1.009642857142857,1.1413478659538379,0.6742402892586556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6657594632164242,0.9941876750700283,1.0250039017792112,0.6318946199587102,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,6.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,10.05365155780638,0.0,11.63444168209179,15.930470882759089,0.0,14.416541779374388,17.198627079678577,0.0,0.0,18.19910120538483,35.392371257240434,31.866411898333865,25.387439158698637,291.50647696785995,-803.1164985053531,-50.76211061021258,-14.341366044738448,-44.61758325029739,418.7066999426324,1153.56016187501,28.602661429863584,20.5992886049109,30.356846365131844,0.5,0.6970112240886188,0.13564824544168708,92.24543266394417,0.08323571432052607,6.048382667855856,0.30298877591138135,9.0,0.24242424242424243,0.3140165693853241,0.6369817179019944,0.8403620813062638,0.9361804132717366,0.9423302501929546,0.9423302501929546,1.8959999999999997,,2.7202380952380953,2.4557580411297555,1.988791391649439,2.7854995001092187,-9.45599391659469,2.248657224310045,2.113124284371629,-3.489692252392336,112.99720000000005,26.73002721755045,0.0,10.216698334856808,0.0,19.069544416586886,37.21901523021414,65.22591414471705,0.0,0.0,4.204692619390966,0.0,5.5254529391317835,0.0,7.007600613951853,0.0,8.561592778712923,0.0,10.15140176217555,39.66666666666667,10.500444527373668,0.0,0.0,0.0,0.0,0.0,0.006909978444094023,0.0,56.54,0.0,34.980757787869095,0.0,0.0,-3.3907453423223015,0.0,0.0,-0.21033820693362548,63.91548049341492,10.038883468458419,14.468216370033202,0.0,57.82577319804126,32.52026932011804,11.63444168209179,11.126902983393991,42.46456947923127,0.0,0.0,0.0,37.75745619848472,37.28252994011976,38.20884046637814,443.03916263330825,,357.2878086551841,363.03833572176836,360.568296516259,357.0056682399049,499.98673242779006,366.65952197450474,369.0498272151128,454.48624313975813,38.20884046637814,443.03916263330837,,355.0940682557987,360.8994496859457,358.83612336869317,354.75929767530056,505.8371877674732,364.7010140694606,367.2093641287246,456.7804937648466,4.645929156893677,343.8211637343666,,285.20538113148234,287.3508457954996,284.5683100649047,285.07403589491213,389.9339826299082,290.3319588295258,292.4512125341751,357.8804140511889,1.2325432408509078,14.291585891397041,,11.525413182425293,11.710914055540915,11.631235371492226,11.51631187870661,16.128604271864194,11.827726515306605,11.904833135971382,14.660846552895423,2.322964578446839,221.5195813166541,,178.34635280567403,181.54639808111858,180.29232652610517,178.2117321731309,248.19059692543917,183.36073052515613,184.56009184378357,226.6454007562271,55.67450980392158,0.0,1.061920931254014,0.0,26.492275351601428,0.0,0.0,57.40021849963583,2.559653519241639,5.2112174693929925,5.696159585530978,0.0,-0.22108272479484614,2.0628271233428577,0.0,0.0,0.0,35.38609871768777,495.02655580224894,102.12191751034028,207.1540192242559,273.29572867433217,304.4569881330623,306.45698813306234,306.45698813306234,705.0,139.59696176072418,215.18662110824334,66.45074071336307,96.11999999999999,87.74,1.0,7.708003646851606,6.044394119358453,4.953147868443079,5.490948008182864,,5.511732172881982,5.5017872024770735,5.501064621647699,5.51210333505733,5.494665814878139,5.502421146919306,5.503181393437133,5.501653283243127,0.15977896349816384,0.17712735510267302,,0.17779781202845102,0.1774770065315185,0.17745369747250642,0.17780978500184935,0.1772472843509077,0.17749745635223568,0.1775219804334559,0.17747268655622989,2.7314254189707863,2.834503031191354,,2.838281054196459,2.836475096850962,2.8363437525700492,2.8383483923157953,2.835179881278585,2.8365903153969594,2.836728471670775,2.836450755512609,317.360000000001,242.10278301731267,195.2046921767817,,191.9032522820044,193.29564566340574,193.53114675014314,191.85119530650283,194.7571202980788,193.2404610798154,193.15360631955537,193.78192740926397,7.80976719410686,6.296925554089732,,6.190427492967883,6.235343408496959,6.242940217746553,6.18874823569364,6.282487751550929,6.233563260639206,6.230761494179205,6.25102991642787,6.62076447069045,6.405450822972079,,6.388393462156892,6.395622971137157,6.396840576124461,6.388122158586873,6.4031553567960975,6.395337437221942,6.394887871511435,6.398135552777191,57.252214576636845,14.360295851789791,2.8307268893107187,1.7482699093900917,-1.9516981378796232,10.500444527373668,0.9425966389571385,2.457895086743669,-3.3907453423223015,393.2428911523787,207.03174109732905,-570.3839198327174,-36.05191984316088,-10.185427139869953,-31.687995546262076,297.3710155599651,819.2736273226325,20.313987042198615,14.62988620218987,21.559832297964014,3326.0,42.0,3.3413605533253232,1.582464553549623,0.3535533905932738,0.10206207261596575,0.16666666666666666,0.011904761904761904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23470804841064383,0.0891018386190087,0.419897546315939,0.1214305412136485,22.432510652501765,17.92232341540175,14.675655050308885,11.682377838428714,14.349669979764549,9.280290077330282,9.860733446826424,5.341400121657966,8.098019825947842,3.9332535035796203,6.286216733589991,2.6082620115593054,4.176908535170696,1.5313841583143322,2.7738291143384153,0.9001230426821512,4.001547049855845,1.5856704314818169,6.016589701728962,2.214785154433009,7.778397033787231,2.4253198707879564,98.04840248719972,50.86202426859464,31.932551921498636,28.17621901589669,26.95242636237818,26.95242636237818,158.0,176.0,62.26182499999999,39.416175000000024,0.4107142857142857,159.1,10.95138888888889,6.652777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,56.0,0.0,1.0,58.0,12.0,3.0,9.0,49.0,15.0,33.0,43.0,0.0,0.0,0.0,21.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,5.0,2.0,1.0,31.0,10.0,0.0,3.0,4.0,0.0,3.0,8.0,1.0,0.0,2.0,0.0,2.0,3.7612001156935624,5.875281792818073,4.330733340286331,4.61015772749913,5.1029105702054265,5.543222409643759,5.571916361350739,5.642239462498428,5.942635319675591,5.643678550586496 +68911,CO[C@H]1O[C@@H]2O[C@@]3(C)CC[C@H]4[C@H](C)CC[C@@H]([C@H]1C)[C@]42OO3,0,19.617021276595743,6.108297872340422,3.234042553191489,6.085106382978723,165.18776764006327,76.9039064893617,1.2637947984271067,6.149957446808507,2.6817375886524824,7.703976595744678,184.3915248513883,22.88,6.38,4.14,5.86,145.90598990015786,85.4405203200001,1.6428715212000011,6.508142000000001,2.5116666666666667,7.835779199999994,239.4826469088872,19.306930693069308,6.337524752475248,3.792079207920792,4.821782178217822,155.37464402907563,71.14290141584159,1.3640707175206344,6.418814851485145,2.428355335533552,7.874344118811883,196.7495837805615,17.490066225165563,6.310066225165561,3.3443708609271523,3.7218543046357615,157.07748150985222,63.035972198675516,1.2692993121293183,6.384014569536419,2.3943616629874898,7.8708960529801315,180.64773150804922,13.046875,6.19265625,2.640625,2.1979166666666665,162.92925914314426,44.07629956770831,1.0752687301187973,6.239365624999999,2.280454282407407,7.820768645833334,144.16372257706436,10.797872340425531,5.9782446808510645,2.265957446808511,1.4148936170212767,165.00736368606326,35.23970559042552,0.9967317627438623,6.023319680851065,2.1102984633569735,7.639078063829786,127.12281240699886,8.198757763975156,5.830745341614907,1.9440993788819876,0.7267080745341615,168.95644338967108,24.808756652173916,0.8821525668257145,5.861398136645964,1.9523809523809523,7.536364894409935,105.43714935841008,6.622641509433962,5.588396226415095,1.6132075471698113,0.19811320754716982,166.61022305192557,18.179342707547168,0.8969635257571886,5.638910377358488,1.7987421383647797,7.293739886792449,99.46421279886519,3.4642857142857144,5.265357142857144,1.2142857142857142,0.011904761904761904,174.40341083379758,7.233686011904761,0.6860109300392736,5.2929821428571415,1.4642857142857142,7.048424047619045,65.28597234658403,7.736532367587141,0.15262109551833403,0.012942710552594034,0.7550928021729294,3.9918515165233126,1.230875717461816,36.60058931371662,0.2178917807911063,0.14224354911724757,0.5884827221970725,0.10069836849253049,48.554568480962466,0.9817655047532817,0.02617039384336798,-0.005619427037495211,0.3840561339972837,1.8187867813490266,-0.10983412966940553,4.500133726283414,-0.015977377341839887,0.0252346210955183,0.004070469292289104,0.015461577039384323,0.22977499597438197,1.3605815991286783,0.028251034247833956,-0.00023210833038598077,0.06668937604489285,0.8413062673401788,0.07223503975872023,6.370799757696927,0.015028379169742633,0.027057925498299044,0.09762312242994331,0.017375406101950146,5.541502964517339,0.28953498481528034,0.0022006601530762913,4.3149532642849596e-05,-0.03662020811910336,0.04703815516895052,-0.11498485906935446,1.3237741450688,-0.017043426594999946,0.0034675118944474566,0.008259054453468322,-0.0005975320827799741,-1.0421076501502633,-1.1750297080126755,-0.0207472036743625,6.331326691756538e-05,-0.1204518447261204,-0.7349809491474272,-0.06741307994023889,-5.523854051416076,-0.014363830712203119,-0.020367285819375264,-0.06656124120810492,-0.0121893778010412,-5.235748960807702,-0.9542779538252602,-0.01767315527387959,-7.407348657354843e-05,-0.10411951109099139,-0.678361249434133,-0.06961637021967555,-4.487621249886827,-0.013912133046531912,-0.017118526482571287,-0.043240091041698105,-0.010694692621095517,-4.4681645179712985,-0.9441443670585327,-0.018567970105356657,2.6020939135438942e-05,-0.1634448571484807,-0.819524306268259,0.04879729626716476,-4.386534774004711,0.005227157196074499,-0.01854754013085935,-0.04541743872938395,-0.010255179910529754,-1.9816782734841438,-1.4298282327015563,-0.011111661556069859,-0.00033693783656607357,-0.022254584589629027,-0.3292662094177335,-0.19654259428477497,-6.844792933949457,-0.03804003067147173,-0.01257765188721951,-0.04350413260788485,-0.004878932121595169,-9.999188032550247,0.983072495634741,0.012508083812973036,-0.00024376996474812955,0.20691327685442676,0.7961424044493308,0.07770274543472828,4.6564341029500325,0.016195473701130884,0.012963517752053264,0.009414947509107803,0.006603055013041912,5.268307518263521,,,0.46031746031746035,0.6666666666666666,0.0,0.0,0.6666666666666666,-0.6666666666666666,1.4371946318944615,0.0197347258763201,0.040210916352510576,0.3438280949698531,0.08771217515388695,0.3884680305113689,1.7810227268643146,0.4761802056652559,2.079299964298026,1.5942766004099116,0.0,0.4850233638881141,0.0,0.4850233638881141,6.3442132751489515,922.0,287.08999999999986,152.0,286.0,7763.825079082974,3614.483605,59.39835552607402,289.04799999999983,126.04166666666667,362.0868999999999,8666.40166801525,1144.0,319.0,207.0,293.0,7295.299495007894,4272.026016000005,82.14357606000006,325.40710000000007,125.58333333333334,391.7889599999997,11974.13234544436,1950.0,640.09,383.0,487.0,15692.839046936639,7185.433043000001,137.77114246958408,648.3002999999997,245.26388888888874,795.3087560000001,19871.70796183671,2641.0,952.8199999999997,505.0,562.0,23718.699707987686,9518.431802000003,191.66419613152706,963.9861999999994,361.548611111111,1188.5053039999998,27277.807457715433,2505.0,1188.99,507.0,422.0,31282.4177554837,8462.649516999996,206.45159618280908,1197.9581999999998,437.8472222222222,1501.5875800000001,27679.43473479636,2030.0,1123.91,426.0,266.0,31021.38437297989,6625.064650999998,187.3855713958461,1132.3841000000002,396.736111111111,1436.1466759999998,23899.088732515786,1320.0,938.7500000000001,313.0,117.0,27201.987385737044,3994.2098210000004,142.02656325894003,943.6851000000003,314.3333333333333,1213.3547479999995,16975.381046704024,702.0,592.3700000000001,171.0,21.0,17660.68364350411,1927.0103269999997,95.078133730262,597.7244999999997,190.66666666666666,773.1364279999996,10543.20655667971,291.0,442.2900000000001,102.0,1.0,14649.886510038998,607.6296249999999,57.62491812329898,444.6104999999999,123.0,592.0676199999998,5484.021677113059,363.6170212765956,7.1731914893617,0.6083073959719196,35.48936170212768,187.6170212765957,57.85115872070535,1720.227697744681,10.240913697181997,6.685446808510636,27.658687943262407,4.732823319148933,2282.064718605236,49.088275237664085,1.308519692168399,-0.2809713518747605,19.202806699864187,90.93933906745133,-5.491706483470277,225.00668631417068,-0.7988688670919943,1.261731054775915,0.2035234646144552,0.7730788519692161,11.488749798719098,137.4187415119965,2.8533544590312294,-0.023442941368984057,6.735626980534178,84.97193300135805,7.295739015630742,643.4507755273896,1.517866296144006,2.7328504753282035,9.859935365424274,1.7549160162969648,559.6917994162512,43.719782707107335,0.33229968311451996,0.0065155794290702885,-5.529651425984608,7.102761430511529,-17.362713719472524,199.8898959053888,-2.573557415844992,0.5235942960615659,1.2471172224737166,-0.09022734449977608,-157.35825517268975,-225.6057039384337,-3.9834631054775995,0.012156147248172555,-23.126754187415116,-141.11634223630602,-12.943311348525867,-1060.5799778718865,-2.757855496742999,-3.9105188773200505,-12.779758311956144,-2.3403605377999104,-1005.2638004750787,-179.40425531914892,-3.3225531914893627,-0.013925815475827105,-19.574468085106382,-127.53191489361701,-13.087877601299004,-843.6727949787233,-2.6154810127479995,-3.2182829787234017,-8.129137115839244,-2.0106022127659573,-840.0149293786042,-152.00724309642376,-2.989443186962422,0.00418937120080567,-26.31462200090539,-131.9434133091897,7.856364699013526,-706.2320986147585,0.8415723085679944,-2.986153961068355,-7.312207635430815,-1.6510839655952905,-319.05020203094716,-151.56179266636497,-1.177836124943405,-0.0357154106760038,-2.358985966500677,-34.90221819827975,-20.833514994186146,-725.5480509986425,-4.032243251176003,-1.3332311000452681,-4.6114380564357935,-0.5171668048890878,-1059.9139314503261,82.57808963331824,1.050679040289735,-0.020476677038842882,17.380715255771847,66.87596197374378,6.527030616517176,391.14046464780273,1.3604197908949942,1.0889354911724742,0.7908555907650554,0.5546566210955206,442.53783153413576,0.706098221229366,0.6349414377239648,0.4166576799570989,0.34288002660653927,0.2536800659736761,0.19254862631768394,0.1561053014528396,0.10727853890366355,0.09405982993637357,0.059787744646572064,0.05679134480390083,0.0322002248423559,0.03701211943275514,0.019207211769921923,0.02424635343289834,0.010763779995641405,8.105274858660547,5.760392070268966,3.610584248692652,2.259296641382376,0.4015504647582694,-0.3971364572130807,4.034860913879138,0.9877421416464126,6.105214105315466,0.9930407570849873,13.722533005917173,11.020871269676299,16.101677742093777,11.771995568930224,1.922730136714104,0.6909651795915358,3.551935134777972,2.309046116720009,3.604709235276203,1.0866636907315985,3.7656902260350864,2.5050907301265797,20.82856368237676,14.608569856193348,0.23842383705789055,0.4122142683712812,0.6975258630707883,0.8163135717277794,0.882323121195455,0.882323121195455,1.794549734805476,428.8903984751722,0.0,0.0,5.0,0.0,0.0,5.0,0.0,5.0,0.0,4.208959003108622,3.2281108016169227,1.6178531918576122,0.9474324470846964,0.574884042737315,0.574884042737315,262.7082972598271,802.3122138502038,29.313692552616747,17.070472635110722,31.944044909199985,,8.0,288.0,17.6781886928895,0.0,12.207932775496605,17.75371813848418,19.26246486877803,6.4208216229260096,7.109797541277533,6.923737199690624,13.847474399381248,23.985730767912372,9.666666666666668,14.0,0.0,0.0,14.0,0.0,0.039682539682539625,-14.0,0.11291526689063075,0.0,-0.11291526689063075,0.0,0.19241726618705002,0.0,0.5602836879432627,0.8825396825396821,0.4473684210526319,0.5602836879432627,0.8825396825396821,30.181087269783692,0.41442924340272214,0.8444292434027221,7.220389994366915,1.841955678231626,8.157828640738748,37.40147726415061,9.999784318970374,0.52158273381295,0.2068965517241379,0.10344827586206895,0.31034482758620685,1.0,0.21896291660453607,-0.37586666342240677,-0.03607381721441022,-0.007997163051540569,-0.028912820263262064,0.781037083395464,1.3407101398599997,0.02664391758473746,0.028525747656595744,0.03943265117235294,-2.035714815554326,0.862775892334699,0.6630800261019161,1.5364854180486716,0.9850839328537164,0.48545701973236577,1.4838309669522096,0.8757426238021158,1.4461048305552233,0.6551586042722203,0.8731433699798072,0.7009919146097747,1.235414124821375,0.857991182383306,0.8996920514261784,1.304531050558522,1.437329344445235,0.9345982228070848,1.12374741712061,0.8606567996728343,1.0934393210310804,0.8801058715490412,0.9046358111884141,0.9400766211690137,0.9791135636578554,1.0045136964802626,1.1258439220132577,1.171317354498734,1.3390823764829187,1.125231502690914,1.2288369156790588,1.004810850462665,1.193659178059027,1.0983401577048193,1.1171670400088534,1.1762989049036223,1.0807859788395868,1.1972017017749175,1.3577028459986948,1.2108610892541163,1.1645215077937643,1.3299754999243976,1.0560530306330176,1.1916446556937137,1.0518033883076592,1.3448399167159957,1.3204043721575838,1.3709608805271816,1.0778066459496871,1.1180368636629614,1.171182594767752,1.0432709935593318,1.023830935251798,1.1828645951462922,1.0083725963911083,1.1153417422400413,1.0130419276071283,1.170303310461593,1.1270606963898417,1.167886532898343,1.0468457978460115,1.0969154894257298,1.1423486639717284,0.9923230983439907,1.0828194587187385,1.2007743900463341,0.8246601090875733,1.0921859363852646,0.8458891722299854,1.1511849446604516,1.0905683790231375,1.1177275170487704,0.9462547344085595,1.0723235479205544,0.7589448311602256,0.7212490848584333,0.7397911859191888,0.8095576372514199,1.0669475578217744,1.0793558587985728,1.1023766770250198,0.799151226821016,0.7968076101455437,0.6987398038620471,1.1640952797424373,0.7108473348379729,0.4763769184484613,0.3375866832297624,0.18516615279205195,0.4144714814934821,0.6727582331932592,0.7156460179770223,0.7025560006325268,0.5082892099095919,0.5576766044088715,0.42717037346018116,0.7623730781264552,6.5,0.0,4.4444444444444455,2.9722222222222223,2.485555555555556,1.2675,0.5299319727891156,0.1276218820861678,0.0,0.0,4672.129569549541,5451.887169674821,2172.0355392940974,1917.4293490895698,10.30824506167673,0.4691120285426053,5.472523310079266,0.8836365745013925,1.0,1.0,1.345629848569016,2.326478050060715,3.9367356598200254,4.607156404592941,4.979704808940323,4.979704808940323,0.2708333333333333,0.0,0.11396011396011403,0.05944444444444445,0.060623306233062335,0.04088709677419355,0.031172468987595035,0.01823169744088111,0.0,0.0,0.5951524611736239,14.583333333333334,4.746877054569362,1.8615340419419708,125.68707959293447,1.0,4.028311322697702,71.7032307422736,,63.915496021220186,62.75302613618122,66.24708400987694,63.93749523923172,97.72937810772666,63.64729317820036,63.96058940874005,82.11280480827438,0.12689994148624928,0.17147297858456392,-0.4341769843851558,0.5086211031175055,0.45562485824449994,-0.08923250992057433,0.1229524936801201,-0.0733271226837026,0.1774043269597982,0.00691688836180644,0.15354347116886227,0.004732304356993171,0.17586452618345533,0.1851056969017774,-0.017933517824012576,0.08831944345513681,0.210755902081476,0.05868589227487225,0.17406276448421487,0.06897175797626988,0.19022251389408115,0.16588953039347015,0.17254903293928744,0.11412938345214789,0.037424387446281716,0.014419108614063977,0.003333886859905198,-0.04849762574046719,0.011783543294195023,-0.09341711550412604,0.03616811012856276,-0.07821968563072852,0.024377287518249975,0.014034489275460003,-0.005933880476169753,-0.021462607592915968,-0.1518806685196022,-0.13593929203496108,0.0048918089190270785,-0.15951925959232602,-0.18412031261812964,-0.05476838886646585,-0.15092254400794386,-0.0659218565291996,-0.14318600699837047,-0.11310653430843587,-0.12104841402614554,-0.10783226222802417,-0.12334698654183736,-0.11579759150501283,-0.005723181884702065,-0.1378896882494004,-0.16993649353594922,-0.056558407345325815,-0.1226106282448579,-0.06384881979494916,-0.12034659278967329,-0.07347724820239966,-0.10620522240028962,-0.09202356560378454,-0.12203715078012285,-0.12166057413161555,0.0020104706065781335,-0.21645664834591946,-0.20529929604746935,0.03964437316855147,-0.11984874714464752,0.02398969422846562,-0.1303928385221259,-0.07717718297628191,-0.10184057660567215,-0.04081342570804909,-0.18481512966867988,-0.07280554184421405,-0.026033019528397244,-0.02947264829645713,-0.08248458342070464,-0.15967704252876538,-0.18701318919431356,-0.17458221936301882,-0.08842335533158054,-0.0739259301368513,-0.04845095501181902,-0.20593712075663448,0.1270688790437182,0.08195514368765927,-0.018834537306350572,0.2740236382322712,0.19944188834526788,0.06312801880189725,0.1272229270145922,0.07432806158327536,0.0911360679096089,0.015998681276414607,0.06557261167078102,0.10850281823283316,2.406851949670727,9.082360626756563,6.631975707865092,12.334827763641819,24.527726466086833,31.582877169595125,34.30823632684334,34.683765118425505,34.683765118425505,43.66529925025855,33.479808608608145,0.0,10.185490641650397,0.0,10.185490641650397,2262.5976106243493,1478.5304663126728,1116.2261747344419,226.0,39.0,59.0,86.0,127.0,168.0,192.0,202.0,222.0,298.1780239320007,24.0,4.844187086458591,5.777652323222656,6.748759547491679,7.706612913964197,8.683893367307235,9.649949224651184,10.628206071933391,11.597863861486418,12.57570675557064,0.574468085106383,0.9761702127659578,1.1371424630423475,0.5285562702274686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6123916167664674,0.9612015018773463,1.0041530427236525,0.566335254708524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,4.0,0.0,5.0,0.0,6.0,0.0,2.0,0.0,0.0,14.210588861400147,0.0,18.181104269654114,5.7871111525705965,0.0,0.0,9.775141906512223,0.0,0.0,13.847474399381248,38.022014160791436,25.366431256526326,0.0,102.34125384670077,-175.67662237208293,-16.860570465578824,-3.7378004760017642,-13.513586336314074,365.0495511065278,626.6355914781209,12.453122087037922,13.332672159108958,18.43045857288591,0.5,0.8843472670998755,0.20708349503519055,42.50974756636648,0.11725767011735813,0.0,0.11565273290012457,4.0,0.041666666666666664,0.24225552682672435,0.4188389297901059,0.7087357435341094,0.8294324796337453,0.8965028631122384,0.8965028631122384,2.8408000000000015,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,73.83700000000006,23.985730767912372,0.0,0.0,23.671624184645573,70.42271351300063,7.109797541277533,0.0,0.0,0.0,3.8918202981106265,0.0,5.3230099791384085,0.0,6.980075940561763,3.367295829986474,8.747193183526933,6.111467339502679,10.5753855600569,27.000000000000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.88000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.44569576299033,0.0,0.0,0.0,31.078012963502246,23.985730767912372,23.671624184645573,46.454498090775914,0.0,0.0,0.0,0.0,24.842144700691026,28.782405988023964,27.422531702547197,144.35980647548556,,128.68567892705104,126.32044543663392,133.26526741981854,128.72850087952958,197.004890878795,128.1498913939448,128.77346221449346,165.61248515090568,27.422531702547197,144.35980647548553,,127.84895942973458,125.38062010020028,132.66821937570606,127.89394139915981,200.87022753714905,127.28787529752267,127.94117341621163,166.84746805918058,5.259013804761013,95.7506124279648,,83.80615094966699,82.17372683416457,87.28853069422864,83.8381510223215,133.22209342268184,83.41173802473023,83.8717666731393,111.09457015401003,1.3058348429784379,6.8742764988326455,,6.127889472716716,6.015259306506377,6.345965115229454,6.129928613310932,9.381185279942619,6.102375780664039,6.1320696292615935,7.8863088167097946,2.650956052369791,71.7032307422736,,63.915496021220186,62.75302613618122,66.24708400987694,63.93749523923172,97.72937810772666,63.64729317820036,63.96058940874005,82.11280480827438,45.176470588235276,0.0,8.165881519274377,0.0,0.0,0.0,0.0,47.19519300801167,4.25734268707483,0.0,29.715315570672715,0.0,1.0295956160241861,0.0,-1.1681353930461074,0.0,0.0,26.617756971300626,413.3357810279986,63.24460288274375,109.3444683528536,185.02657601154118,216.53635101586823,234.04612602019517,234.04612602019517,1366.0,123.21283115208598,54.05502392522996,65.99624813088379,46.150000000000006,46.150000000000006,1.0,7.220373836723949,5.584962500721156,4.1037073943685485,4.518727587499223,,4.5188743896614145,4.518294334988782,4.519773929572794,4.51888776276497,4.4750240754092205,4.518726981662543,4.51890169311436,4.506605570620198,0.19541463782707374,0.21517750416662965,,0.21518449474578163,0.21515687309470388,0.21522732997965685,0.21518513156023666,0.2130963845432962,0.21517747531726397,0.21518579491020762,0.21460026526762846,2.1538281523875638,2.250167791752493,,2.2502002787247175,2.2500719078397418,2.250399321741456,2.2502032381085404,2.240449076421438,2.250167657680078,2.2502063207980543,2.2474815697691466,222.2099999999997,132.28540640937172,119.69534189071997,,119.8225833602537,119.87702423643508,119.73343921745852,119.82147817138907,122.6947153004051,119.83316157264619,119.82032383669166,120.55406058921888,6.299305067112939,5.69977818527238,,5.705837302869224,5.708429725544527,5.701592343688501,5.705784674828051,5.8426054904954805,5.706341027268866,5.705729706509127,5.7406695518675654,5.626899102958574,5.526887041671607,,5.527949521495364,5.528403764017187,5.527205276821816,5.52794029790887,5.551636625432352,5.528037799891546,5.527930664074641,5.534035632648405,17.915247307256237,11.800068263416478,0.0,-0.4701157407407408,0.9529823318216168,0.0,3.635936318972033,6.4613943216175365,1.7044871976568405,276.01752149594404,47.83336101533217,-82.1096379419522,-7.880475601877518,-1.7470135732330254,-6.316125995534786,170.62080353949477,292.8837135133014,5.820474756441484,6.231568372623435,8.614226868038278,730.0,50.0,2.351413975239828,1.4988059116328254,0.24481807704061406,0.09820927516479827,0.6845809224341888,0.41184622933405474,0.08957624642754414,0.03862229996596576,0.0,0.0,0.0,0.0,0.0,0.0,0.13842726880637102,0.08061391053027436,0.5924573009197137,0.2980743949166098,14.828062645816686,13.333770192203263,9.999784318970374,8.229120638556942,9.893522572973367,7.5093964263896735,9.210212785717536,6.32943379531615,8.089145374528128,5.141746039605198,7.2125007900954055,4.089428554979199,6.218036064702863,3.226811577346883,4.655299859116481,2.06664575916315,5.818200734096758,3.4631044616239874,10.484102630646872,5.713969478859603,18.678378033518097,9.190112296378885,76.8464987618215,45.0020929582441,30.26768749911629,23.39033024753986,21.37301249360638,21.37301249360638,126.0,161.0,48.06661799999997,33.027382,0.3404255319148936,156.05,7.041666666666666,4.416666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,0.0,0.0,0.0,47.0,0.0,0.0,50.0,0.0,0.0,0.0,50.0,0.0,24.0,50.0,0.0,0.0,2.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,5.0,0.0,4.0,21.0,5.0,0.0,0.0,5.0,0.0,5.0,1.0,0.0,1.0,0.0,0.0,0.0,3.2188758248682006,5.424950017481403,3.6888794541139363,4.0943445622221,4.465908118654584,4.852030263919617,5.1298987149230735,5.262690188904886,5.313205979041787,5.407171771460119 +3883,Cc1c(OCC(F)(F)F)ccnc1C[S+]([O-])c1nc2ccccc2[nH]1,0,34.97435897435897,7.100469230769227,3.7435897435897436,12.136119025007915,170.26080185986117,141.8881167551106,1.6693368119970768,7.112041025641022,9.164151833266677,8.429716435897433,243.64297890843986,33.73170731707317,6.696195121951219,4.317073170731708,9.127371273712738,148.4915154624512,131.91082769525858,1.9504463007317077,6.846017073170732,3.502429823680953,8.085941609756096,287.8559918408996,30.434782608695652,6.99277536231884,3.8115942028985508,8.901771336553946,159.89712113705366,118.78245804282476,1.641821382554275,7.0683724637681165,6.10896155146021,8.353787913043476,243.40329697868202,25.753086419753085,6.919170370370372,3.382716049382716,6.388203017832647,164.25057615731578,96.6657126165926,1.5122805065851357,6.973635802469137,4.7574302697759485,8.360210320987658,214.92619797049545,23.6,6.542862500000001,3.2,5.559722222222222,159.61618239805995,87.51687436881998,1.5282666655568373,6.629540000000001,3.6641117969821666,8.043452874999998,207.42879531677642,22.352941176470587,6.281774117647059,2.929411764705882,5.368627450980393,160.74957426315135,83.17153960013177,1.3980635661091998,6.378598823529411,3.6297143548777533,7.8632619294117685,186.2392295692756,22.2,6.832012500000002,2.7875,6.476388888888889,168.8006032398797,83.36799955992,1.2220716447110749,6.871845,5.16730324074074,8.309731324999998,183.38764301680737,20.59722222222222,7.168458333333334,2.7222222222222223,5.4753086419753085,179.83374707979308,75.02208959,1.1881133298443336,7.158865277777778,5.1734682213077265,8.591500916666668,175.14715802601123,23.57894736842105,6.687157894736841,3.0,4.345029239766082,168.328716730571,89.00193684788773,1.296780758820912,6.745942105263158,3.54927442061945,8.208128280701757,190.08392971240636,11.239973701512163,0.2937220249835632,0.034806841123263356,0.7034845496383955,5.619808280776939,3.24838200958153,52.1915737698414,0.30642413078050623,0.2557001972386587,4.225997470548119,0.17205105719921096,46.28459047124053,1.1433909013646355,-0.013453857378810455,-0.01198909522036458,0.085133336540466,0.9708077678336873,-0.28392680738457754,4.955250221986623,-0.008205810155789377,-0.00816217347380575,-0.4886818241770678,-0.005932874585077251,0.47017440071805133,0.7912414601377818,0.0952230511962953,-0.004738771210014471,-0.046851327787782636,0.5910087545167436,0.5473041974126188,4.319203495387642,-0.016474226364794897,0.0817799588371495,1.4177662637624693,0.05147417579967413,-0.5937328068985767,-1.3355735748898137,0.0017461611512893536,0.003223089800029967,-0.056444347042637635,-1.4592753726445824,0.41840590152585677,-6.743748503448757,0.02996022641664352,-0.0051982979034260815,-0.1669829521225356,0.009123788004967518,-3.505675287991401,-1.3226660092044706,-0.026601832675871066,-0.003299129642849512,-0.10220249835634454,-0.5846824498177775,-0.021632752976556972,-6.355718914996241,0.0012402362682569306,-0.027017248520710052,-0.1405427202885547,-0.014587416494082872,-8.888062055412679,0.06319371930231646,0.027381806087326526,0.0032757473601660396,-0.0407394515991801,1.567332102441873,-0.47467661585650345,1.0632431107632152,-0.05759247455169294,0.028343814827706187,0.35472755945035983,0.006300761503654626,-0.05392180419904428,-0.46946088099934286,-0.03226593523997369,-0.0004624762761270804,0.008374424720578583,0.06253185850764205,-0.9269665680081094,-1.6043411517872062,-0.03167100019893511,-0.023319556213017775,-0.47763578627655845,-0.026870057840236668,1.3733523757193666,-3.168392504930966,-0.07738260190664042,0.0024324589337190883,0.09566074950690334,-1.7882687640522397,0.7690689033752496,-15.2532694760897,0.05300569580637046,-0.07539004766600915,-1.1793003850893948,-0.042224314677843426,1.9885972268066523,1.0740164019516245,-0.08100043254091832,-0.00839437639793817,-0.07775355548634898,-2.2455392749289884,-0.13283257066894666,4.559629006145145,-0.0058327306494194405,-0.06516753866915809,-1.359637437814718,-0.030724806187065294,3.722944763036707,,,0.4622857142857143,1.26,0.6,0.04,0.66,-0.06,0.811175227243147,0.023275804198589684,0.03359580419858968,0.953551301445177,0.25166404639628687,0.22162869190004728,1.764726528688324,0.47329273829633417,2.021031375926213,1.3345733518146168,0.24699411781968614,0.1517443288483031,0.2015809961030925,0.6864580241115967,9.463484162769243,1364.0,276.9182999999999,146.0,473.30864197530866,6640.171272534586,5533.636553449313,65.104135667886,277.3695999999999,357.4019214974004,328.7589409999999,9502.076177429155,1383.0,274.544,177.0,374.22222222222223,6088.152133960499,5408.343935505602,79.96829833000001,280.68670000000003,143.59962277091907,331.5236059999999,11802.095665476883,2100.0,482.50149999999996,263.0,614.2222222222223,11032.901358456702,8195.989604954908,113.28567539624497,487.71770000000004,421.51834705075447,576.4113659999998,16794.82749152906,2086.0,560.4528000000001,274.0,517.4444444444445,13304.296668742578,7829.922721944001,122.49472103339599,564.8645000000001,385.35185185185185,677.1770360000003,17409.02203561013,1888.0,523.4290000000001,256.0,444.77777777777777,12769.294591844797,7001.3499495055985,122.26133324454699,530.3632000000001,293.1289437585733,643.4762299999999,16594.303625342112,1900.0,533.9508,249.0,456.33333333333337,13663.713812367863,7069.5808660112,118.83540311928199,542.1809,308.525720164609,668.3772640000003,15830.334513388427,1776.0,546.5610000000001,223.0,518.1111111111111,13504.048259190376,6669.4399647936,97.765731576886,549.7476,413.3842592592592,664.7785059999999,14671.01144134459,1483.0,516.129,196.0,394.22222222222223,12948.029789745102,5401.590450479999,85.54415974879201,515.4383,372.48971193415633,618.5880660000001,12610.595377872809,1344.0,381.16799999999995,171.0,247.66666666666669,9594.736853642546,5073.1104003296,73.91650325279198,384.51869999999997,202.30864197530866,467.8633120000001,10834.783993607163,438.35897435897436,11.455158974358964,1.3574668038072708,27.435897435897424,219.17252295030065,126.68689837367968,2035.4713770238145,11.950541100439743,9.972307692307691,164.81390135137664,6.709991230769227,1805.0990283783806,46.87902695595005,-0.5516081525312286,-0.49155290403494784,3.4904667981591055,39.80311848118118,-11.64099910276768,203.16525910145154,-0.3364382163873645,-0.33464911242603573,-20.03595479125978,-0.24324785798816728,19.277150429440105,54.59566074950695,6.570390532544376,-0.3269752134909985,-3.232741617357002,40.77960406165531,37.7639896214707,298.02504118174727,-1.136721619170848,5.642817159763315,97.82587219961037,3.5517181301775147,-40.96756367600179,-108.1814595660749,0.14143905325443765,0.2610702738024273,-4.571992110453649,-118.20130518421118,33.8908780235944,-546.2436287793494,2.4267783397481253,-0.4210621301775126,-13.525619121925384,0.739026828402369,-283.9596983273035,-105.81328073635765,-2.1281466140696854,-0.26393037142796094,-8.176199868507563,-46.7745959854222,-1.7306202381245577,-508.4575131996993,0.09921890146055445,-2.161379881656804,-11.243417623084374,-1.1669933195266298,-711.0449644330143,5.371466140696899,2.3274535174227546,0.27843852561411336,-3.4628533859303086,133.2232287075592,-40.34751234780279,90.37566441487328,-4.8953603368939,2.409224260355026,30.151842553280584,0.5355647278106432,-4.583353356918764,-37.55687047994743,-2.5812748191978954,-0.036998102090166435,0.6699539776462866,5.002548680611364,-74.15732544064875,-128.3472921429765,-2.5336800159148085,-1.865564497041422,-38.210862902124674,-2.1496046272189333,109.86819005754933,-228.12426035502955,-5.57154733727811,0.17513704322777435,6.88757396449704,-128.75535101176126,55.37296104301797,-1098.2354022784584,3.8164100980586735,-5.428083431952659,-84.90962772643643,-3.0401506568047267,143.17900033007896,61.21893491124259,-4.617024654832345,-0.4784794546824757,-4.4319526627218915,-127.99573867095235,-7.571456528129959,259.89885335027327,-0.3324656470169081,-3.714549704142011,-77.49933395543893,-1.7513139526627217,212.2078514930923,0.7210693303426381,0.5613795735004565,0.4382340169410501,0.3248824827696134,0.29893850551894197,0.17555381997843023,0.1842311701850982,0.10199976603801329,0.1156725465254493,0.059059790524394036,0.07656605982725403,0.03463518077022768,0.05079160508157594,0.020497901018671816,0.03192203976426866,0.012048018961583465,16.003515898961652,5.694955367612479,4.12453034865854,2.1917381452412745,0.5321641877772141,-0.6276955379911185,4.017050039565897,0.9890332667877286,7.014350901598049,0.5439054496249229,17.43069988574936,10.33452327871589,32.061752457122516,11.708660884658153,2.9220106979451685,0.5269737417471427,4.007150294651163,2.2407286634172263,8.007895826907271,0.3969562366633168,4.030595403927691,2.436107339061712,24.435471828375015,13.302786613983844,0.3549730815629889,0.7006217374371976,0.8218555792646689,0.8751564007204413,0.8843385664512641,0.8843385664512641,1.4918073406981338,849.4325983042299,0.0,1.0,4.0,0.0,9.0,0.0,1.0,0.0,0.0,3.3028908695675234,1.3724560880853964,0.6953696276606092,0.39768653857248637,0.3464044872904344,0.3464044872904344,14.374728376242501,1468.2003321508369,80.14748060816454,37.64616236284198,81.22220006587054,,13.0,544.0,23.95903495534168,17.723995016714824,11.502365440030694,21.930516685982425,5.516700717616262,12.263210640074686,12.990104268152233,18.19910120538483,14.951935562841626,4.736862953800049,11.557142857142857,31.5,15.0,1.0,16.5,0.0,0.03771428571428572,-1.5,0.2782025486250836,0.08551992225461602,-0.19268262637046757,0.025142857142857133,0.22927860994607535,0.0,0.7190476190476192,0.9537142857142855,0.44084507042253557,0.6335276967930031,0.9285714285714284,20.279380681078674,0.5818951049647421,0.8398951049647421,23.838782536129425,6.291601159907172,5.540717297501182,44.1181632172081,11.832318457408354,0.4847213900539246,0.14627111660486197,0.04326328800988875,0.33168520807581375,0.25,0.4874839687336796,-1.2463575366090893,-0.10115799677407875,-0.03195788555407922,-0.08902553832922067,0.5125160312663202,1.3103573843896652,0.03841032715564267,0.0335989072920427,0.05241429537558662,-6.0836428200171735,0.7040671330906102,0.5941617299598942,1.3212990664736672,1.0303396398449969,0.4619535078831492,1.0005778981916598,0.6845784358716568,1.0807791406001346,0.5668893596526215,0.6321337130046145,0.6088808691653922,0.9056487091687306,0.8794327684075605,0.5241258494077087,1.0795072247710047,1.1341324664770422,0.7401274570913678,0.8337678253814589,0.8490115309891854,1.107799729469095,0.5168986580452445,0.45479239056973586,0.5646993772793403,0.9391165847370223,1.0739549212291375,0.8607672707115532,1.0051344301516267,1.0345102111457256,1.1918809587008203,0.7648921060814323,1.0697796082930158,0.8862198087682049,0.8835306508812626,0.8827581971596618,0.8408949684351064,0.9955990534129026,1.051620993214787,0.6876768378014433,1.20822672858079,1.0301285046728976,0.9232319141898943,0.6919973349583173,1.0340351547311029,0.9627773420068778,0.7133520614779387,0.6048803042763695,0.7079658786611278,1.1542023804396113,1.3314094800297283,0.58634921998432,0.812545295991424,1.0835953820780653,0.6307132015012125,0.895743662844753,1.2704449578539105,1.451789570625483,0.5879525291758172,0.6423118041885961,0.6387873308358885,1.1215421046370528,1.0564971338324753,1.1422067584821267,1.3660146563955191,1.0301285046728976,1.0858018555215023,1.2056827183547323,1.0454639088742084,1.0610934658359583,1.1275090828448011,1.3597501427243626,1.2017764886222602,0.9443226637752759,1.2954882233660896,1.5977346283569027,0.8944981322030858,0.769470404984424,1.468284476707407,0.9788161329001264,1.3218831533716993,0.7531996571747768,1.6179261051972984,1.6318719119039051,1.5507823649199521,0.8710757750263307,0.9223795039775387,1.2708684386298241,1.176771731797029,1.1420560747663555,1.412270388782812,1.0063074980046787,0.9307374725486397,1.0042230446632858,1.2534644656998868,1.3159587148402034,1.1735448521240381,0.9161909634348661,6.5,0.0708070605040302,3.1111111111111125,1.7291666666666667,1.6405555555555558,0.8194444444444444,0.6107936507936507,0.37677154195011336,0.24390589569160995,0.18063271604938275,5567.577262069942,5984.717560903799,2654.556344241083,2511.4322059950428,13.757155603573514,0.4322251019491528,7.810967620288593,0.7612613791715125,1.0,0.25,1.9825113492947255,3.9129461307768523,4.5900325912016395,4.887715680289762,4.938997731571814,4.938997731571814,0.2407407407407407,0.005057647178859299,0.07977207977207984,0.0480324074074074,0.05292114695340502,0.026433691756272405,0.019087301587301583,0.015070861678004532,0.011614566461505235,0.009031635802469138,0.5077620793380452,19.753086419753085,8.347140039447732,5.258488003621548,143.9829291516583,1.0,4.1481294313665575,134.92349805000404,,88.95687852519214,103.05168791419669,106.48526533206028,88.72061156399126,149.1078255211611,103.34524828401463,102.757180612496,127.53870635627948,0.10172540716984152,-0.04580472771683819,-0.3444465177953652,0.12101664007294284,0.17274748876299265,-0.08740560886838372,0.09494349114358352,-0.02677925571621269,-0.031920872811011386,-0.11563703660089625,-0.03448322074654744,0.010158335548203666,0.07039531240463068,0.32419445290704374,-0.13614482260061475,-0.06659894351889478,0.10516528767330771,0.16848517070907088,0.08275672073876932,-0.05376282319160922,0.31982751566210127,0.3354867752863521,0.29917965421202997,-0.012827872102865413,-0.11882354980155631,0.005944944548802799,0.09259931944458459,-0.0802353755624784,-0.2596663978086522,0.12880440178886396,-0.12921144193098835,0.09777371756046277,-0.020329659341538287,-0.039513263622677375,0.05302953758896961,-0.07574173720235666,-0.1176751871782873,-0.09056805555306831,-0.09478394293714058,-0.1452803738317758,-0.10403957227824595,-0.006659547095368808,-0.12177672478366339,0.00404744973934615,-0.10565986578216598,-0.033256697683334405,-0.08478539296153637,-0.19203069455557525,0.005622230174240952,0.09322353708019963,0.09411217032207715,-0.05791094007696538,0.2788942298624445,-0.14612709172024174,0.020371930447086923,-0.18795019310325412,0.11084784108027645,0.08393936861593793,0.03662146345523021,-0.0011650055374811889,-0.04176708001871786,-0.10985194331878688,-0.013286936165487932,0.011904205607476664,0.011127044800004638,-0.2853625482698462,-0.030739466850763283,-0.10335674321165414,-0.09119881980870113,-0.1130232068536019,-0.15617490690060054,0.02967191373493334,-0.28188611371080946,-0.26345522407102695,0.06988450704575258,0.135981308411215,-0.3182081442474068,0.2367544522493905,-0.29225540397296307,0.1729814674560954,-0.294837659415818,-0.27905846922725147,-0.2454173509027242,0.042964563509366914,0.09555328424008076,-0.27577241626824256,-0.24117030236127174,-0.1105263157894737,-0.39957577958843504,-0.04089191796935813,0.08736331704141675,-0.01903482808146551,-0.25485916465028663,-0.32173172068613914,-0.17857958380046618,0.08043594477410365,6.0672301990490745,12.515425330984987,4.872059729488875,24.125435695069967,42.5391064804551,46.59937563615888,47.46369660021612,47.515388907908424,47.515388907908424,50.52578439815533,33.36433379536542,6.1748529454921535,3.7936082212075775,5.039524902577313,17.16145060278992,6682.2887882468485,5949.663796871273,1276.6708249656685,84.0,39.0,47.0,59.0,73.0,75.0,77.0,86.0,87.0,369.07588234800045,27.0,4.890349128221754,5.720311776607412,6.6052979209482015,7.456454555176209,8.340694647925071,9.20099685697303,10.084349711593731,10.95008698975197,11.832723746321301,0.8119658119658121,1.043589743589744,1.1476895387174866,0.7885126873015973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6990649777368343,1.0268476621417795,1.0464731917754502,0.6826410830502017,6.0,2.0,1.0,0.0,0.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,9.289612827490412,5.749511833283905,12.359735571259707,0.0,0.0,9.967957041894417,0.0,18.155223663971668,0.0,12.13273413692322,25.122838405075452,22.93614953669536,16.727329430080985,279.9389634466585,-715.7241248129968,-58.09024824926426,-18.351900636230692,-51.12315177235692,294.313691822901,752.4762073378402,22.057232358900276,19.29426172661129,30.09904829351361,0.46153846153846156,0.8813322196347696,0.23807661724151727,187.7841073656055,0.16508163802135215,0.28620263816645475,0.11866778036523033,7.0,0.18518518518518517,0.3750918600328372,0.740330814713126,0.8684358164495007,0.924757563927066,0.9344601464663927,0.9344601464663927,3.515220000000001,,2.553571428571429,2.2745733721402086,1.9962262134093782,2.654757314829302,-9.289610055779939,2.090511846256989,1.9296346839337528,-3.2383629615769918,86.73010000000004,22.46085797051487,0.0,14.951935562841626,0.0,24.009325805701593,6.606881964512918,47.78605840046659,0.0,5.749511833283905,4.007333185232471,0.0,5.351858133476067,2.3978952727983707,6.8679744089702925,4.727387818712341,8.458504195067558,6.842683282238422,10.086850233838494,31.66666666666667,9.960063898146753,8.372819008342546,2.975661669128931,0.0,0.0,1.454245119025062,1.1968694622910905,0.0,40.70000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.759892009981975,4.736862953800049,13.171245143024459,5.749511833283905,32.28786591848838,16.928708080132076,6.923737199690624,11.257379486545457,41.68511539574183,0.0,11.033401435232523,0.0,30.751994804762294,27.263534131736538,31.390198559740547,269.8469961000082,,178.18059947540135,205.92140995862218,212.81083256704784,177.69235824229094,301.66344511766187,206.5232556203287,205.35999045027728,255.85461982333737,31.390198559740547,269.84699610000825,,176.087885397831,203.90594094491735,211.0783963649235,175.51446012669462,307.5052610981022,204.66234932810704,203.6356947632092,258.3157756741359,4.766590327999309,204.72622818558006,,134.40072676465093,159.19180145281825,164.45242345248667,134.12262132896512,223.66962026267927,159.27924969032165,157.88972030953357,192.3414132959977,1.2556079423896218,10.793879844000328,,7.127223979016054,8.236856398344887,8.512433302681913,7.107694329691637,12.066537804706474,8.260930224813148,8.214399618011091,10.234184792933496,2.4187414288378304,134.92349805000404,,88.95687852519214,103.05168791419669,106.48526533206028,88.72061156399126,149.1078255211611,103.34524828401463,102.757180612496,127.53870635627948,40.0470588235294,0.0,1.5871797052154193,0.0,36.91414541888898,0.0,0.0,40.81245447924256,-1.3622727929938423,0.0,4.789793414674818,0.0,0.0,0.0,-4.423642518722942,0.0,0.0,26.623002238957863,506.1073672998811,77.3179426224943,152.60489910029725,179.01127105686393,190.62091153130072,192.62091153130075,192.62091153130075,679.0,127.08126533351869,68.14528796967842,73.74048653033402,73.86,73.86,0.8571428571428571,8.442620327563267,5.754887502163468,4.215500804355986,4.927664450777662,,4.913483636967213,4.934243797911787,4.932606650712516,4.914429869831954,4.861443797975011,4.9327143716401665,4.930417242049474,4.9061528943185335,0.16862003217423943,0.19710657803110648,,0.1965393454786885,0.19736975191647146,0.19730426602850062,0.19657719479327818,0.19445775191900044,0.19730857486560666,0.19721668968197897,0.19624611577274134,2.3550591310638835,2.5111558654416792,,2.5082739204696023,2.512490160578956,2.512158312595079,2.5084664807453945,2.4976262034403294,2.5121801508966226,2.5117143496233156,2.506780841986059,236.92999999999984,250.90090182736262,144.64474812433474,,145.83198766934302,143.90913793802798,144.1407839171003,145.7349132343499,150.4538763127678,144.0832062737869,144.32236712094857,146.8520470759763,10.036036073094504,5.78578992497339,,5.833279506773721,5.756365517521119,5.765631356684012,5.829396529373996,6.0181550525107115,5.763328250951477,5.772894684837943,5.874081883039051,6.4413487796097915,5.89057145516627,,5.898745921550923,5.885472845752894,5.887081219936904,5.898080040490493,5.929947299409049,5.886681685921424,5.888340189945232,5.905716329332938,54.224850193478126,11.348480677471477,0.2953823643654996,2.282647949292972,0.09577583039388671,8.622884192931332,-3.0864628135075227,0.20221534948537112,0.0,284.3500700839189,160.7556930726518,-411.0064791143451,-33.35847930240789,-10.538627669598595,-29.357605651024652,169.01041901148776,432.1114600909224,12.666424249996135,11.07978102797237,17.284458403636897,1631.0,36.0,2.822145855238545,0.9075056481293746,0.3535533905932738,0.019090088708030313,0.39363455326096647,0.12771433940090612,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02795084971874737,0.34301303412082035,0.11618653880867118,0.5998618098573926,0.17767109517719237,18.02673325856595,14.034489337511413,11.832318457408352,8.771827034779562,11.658601715238737,6.846598979158779,8.658864998699615,4.793989003786625,6.824680245001509,3.4845276409392483,5.589322367389545,2.5283681962266207,3.809370381118195,1.5373425764003863,2.457997061848687,0.9276974600419268,4.115833766805246,1.6267207657018237,5.662734551354075,2.1755122396823237,8.153167687651088,2.8633800588497715,77.40096677599561,42.13181488435153,32.793082234808075,30.728624178559784,30.560142013489923,30.560142013489923,132.0,152.0,45.53010199999999,26.527897999999997,0.4358974358974359,129.09,8.840277777777779,5.319444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,39.0,0.0,0.0,41.0,16.0,0.0,7.0,34.0,16.0,27.0,25.0,0.0,0.0,0.0,16.0,0.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,4.0,1.0,2.0,25.0,9.0,0.0,3.0,2.0,0.0,3.0,5.0,1.0,0.0,3.0,2.0,3.0,3.58351893845611,7.037727611283503,4.21582445975981,4.767501597905544,5.345618327166001,5.842638209447822,6.054696062141322,6.352833534889536,6.739498411606674,6.762485618812087 +6918331,COc1ccc(-n2nnnc2C(F)(F)F)cc1CN[C@H]1CCCN[C@H]1c1ccccc1,0,25.555555555555557,6.699988888888886,3.462962962962963,9.592592592592593,171.83964845611533,103.12737556387617,1.437536070583833,6.716238888888887,6.199202674897119,8.063648888888887,218.81831281459674,26.719298245614034,6.631714035087719,4.175438596491228,8.43859649122807,152.5354652962018,102.78346290360705,1.7508548264912285,6.749356140350877,3.371832358674464,7.9704827368421025,263.75749274168464,23.47,6.722336999999999,3.68,7.75,161.5848427081039,89.65800392954914,1.5004962025194302,6.78745,4.817777777777778,8.079670639999998,221.41496946914634,18.755725190839694,6.297968702290078,3.2290076335877864,5.473282442748092,162.84205641513685,69.65004742545345,1.3463176343715875,6.367593893129772,3.134860050890585,7.755724610687022,188.4696290848872,17.5578231292517,6.3339795918367345,2.870748299319728,5.01360544217687,165.94647654764916,64.56037651863944,1.2491587416661434,6.388549659863944,3.4221466364323514,7.807039673469387,173.97234006906913,15.42,6.078226,2.78,3.7266666666666666,163.65998376390345,55.369071086741315,1.2433947081431334,6.1514180000000005,2.763333333333333,7.599452640000001,167.9128065687566,14.606451612903227,6.12934129032258,2.6451612903225805,3.664516129032258,167.46787566915717,52.1537199197729,1.1534061814910388,6.184849677419354,2.8577956989247313,7.667428645161291,156.26689623336435,15.91304347826087,6.238360869565217,2.746376811594203,4.1231884057971016,166.97478858321824,57.59465190788406,1.172226160841797,6.290434782608696,2.921497584541063,7.759775043478263,162.10738400024337,16.921259842519685,6.465085826771653,2.7244094488188977,4.4015748031496065,168.8083382270077,61.34688773867087,1.1998578443742283,6.499970866141734,3.627734033245844,7.943323307086616,166.70777531408388,8.039780521262001,0.23332825788751693,0.018224365158307516,0.6231138545953362,4.81755829903978,2.6847979268531326,38.99361401226326,0.22430566179812653,0.2071260973936899,2.5786394032921827,0.13003777777777775,46.61574751440983,0.4007652877048591,0.006576745361345782,-0.006650789102163012,0.15628835463143456,1.3292903039491737,0.01849692442053883,1.8238175845316764,-0.005649379504455964,0.006498853873366636,-0.14023919753086422,0.00228098245614033,0.22223113991792862,0.5150342935528122,0.06858022359396435,-0.0029846319433336783,0.015034293552812088,1.1183676268861455,0.5046347005084634,2.774226966845129,0.0018721872906751265,0.05737605075445826,1.1285030864197532,0.03883841777777772,-1.5458284008979835,0.8411920543670613,0.048455683305584266,0.0019076052657193289,-0.05441156451900019,0.8403438779463659,0.2696869685636373,4.0409623069732525,-0.008186612688734258,0.04173875982994578,0.3486785529167844,0.026088902459711728,-0.9368845589924527,0.538702723887909,0.03652306486380554,-0.0006560353256180612,-0.06718037009042299,0.6614036561126508,0.04422289340824027,2.7105193986426777,-0.013320841669701752,0.03166614246521648,0.3829876858150667,0.019282077097505745,-1.9609687536663682,0.15182441700960217,0.008587816186556832,0.0010301481009097565,0.01379972565157751,0.3582441700960219,-0.27749955356687345,0.8373441188178244,-0.022497820901242832,0.008822544581618498,0.1554706790123456,0.00399175111111129,-2.613559526105732,0.5038276029912828,-0.0015084729412806629,-0.0016130552640356407,0.03805699367228638,0.34731625293154555,-0.1622250623397852,2.3806162142702,-0.0016358046391570077,0.0006872956767997187,-0.04325841298287539,-0.0022032544802865987,1.8563533903518918,0.6448678952704718,0.009555316991709849,-0.001214748952822305,-0.043269517504622164,0.2366553348839983,-0.13935941011952976,3.0928852934663587,-0.004466640435161567,0.010158067931054946,-0.02114365271068175,0.003981323671497677,1.3393245984820563,-0.09898145447868391,0.03371816964237494,0.004148225365166445,-0.035333160515429396,-0.1319356685352603,0.35474430358358106,-0.5785528283607262,0.0071537034287457195,0.026199741043172072,0.15533106104792452,0.0235367804024497,-1.7703609934152194,,,0.454531490015361,1.1774193548387097,0.532258064516129,0.016129032258064516,0.6451612903225806,-0.11290322580645161,0.9078514722065973,0.014339909803059615,0.025436683996608003,1.0005977282392693,0.24316460084688094,0.2397281849104819,1.9084492004458666,0.48289278575736283,2.047032338725685,1.4203000350527406,0.4014664793143833,0.0615275588026458,0.16373826555591509,0.6267323036729443,8.003491555851864,1380.0,361.7993999999999,187.0,518.0,9279.341016630227,5568.878280449313,77.62694781152697,362.6768999999999,334.75694444444446,435.43703999999985,11816.188891988224,1523.0,378.0077,238.0,481.0,8694.521521883504,5858.657385505601,99.79872511000002,384.7133,192.19444444444443,454.31751599999984,15034.177086276024,2347.0,672.2336999999999,368.0,775.0,16158.48427081039,8965.800392954914,150.04962025194303,678.745,481.77777777777777,807.9670639999998,22141.496946914634,2457.0,825.0339000000001,423.0,717.0,21332.30939038293,9124.156212734402,176.36761010267796,834.1548000000001,410.66666666666663,1015.9999239999999,24689.521410120222,2581.0,931.095,422.0,737.0,24394.132052504425,9490.375348239999,183.62633502492307,939.1167999999998,503.05555555555566,1147.634832,25573.933990153164,2313.0,911.7339,417.0,559.0,24548.99756458552,8305.360663011197,186.50920622147,922.7127,414.5,1139.9178960000002,25186.92098531349,2264.0,950.0478999999999,410.0,568.0,25957.520728719363,8083.826587564799,178.777958131111,958.6516999999999,442.95833333333337,1188.45144,24221.368916171472,2196.0,860.8937999999999,379.0,569.0,23042.520824484116,7948.061963288,161.76721019616798,868.08,403.1666666666667,1070.8489560000003,22370.818992033586,2149.0,821.0658999999999,346.0,559.0,21438.658954829978,7791.0547428112,152.38194623552698,825.4963000000001,460.7222222222222,1008.8020600000002,21171.887464888652,434.14814814814804,12.599725925925915,0.9841157185486058,33.64814814814815,260.1481481481481,144.97908805006915,2105.655156662216,12.112505737098832,11.184809259259254,139.24652777777786,7.022039999999999,2517.250365778131,22.843621399176968,0.37487448559670955,-0.3790949788232917,8.90843621399177,75.7695473251029,1.0543246919707134,103.95760231830556,-0.32201463175399,0.37043467078189823,-7.99363425925926,0.1300159999999988,12.667174975321931,51.50342935528122,6.8580223593964345,-0.2984631943333678,1.5034293552812088,111.83676268861456,50.46347005084633,277.4226966845129,0.18721872906751266,5.737605075445826,112.85030864197532,3.883841777777772,-154.58284008979834,110.19615912208504,6.347694513031539,0.2498962898092321,-7.127914951989025,110.08504801097394,35.328992881836484,529.3660622134961,-1.072446262224188,5.467777537722897,45.67689043209876,3.417646222222236,-122.7318772280113,79.18930041152262,5.368890534979415,-0.09643719286585499,-9.875514403292179,97.22633744855968,6.500765331011319,398.44635160047363,-1.9581637254461575,4.654922942386822,56.2991898148148,2.8344653333333443,-288.2624067889561,22.773662551440324,1.288172427983525,0.15452221513646347,2.0699588477366264,53.73662551440328,-41.62493303503102,125.60161782267367,-3.3746731351864248,1.3233816872427748,23.32060185185184,0.5987626666666935,-392.03392891585975,78.09327846364884,-0.23381330589850274,-0.2500235659255243,5.898834019204388,53.83401920438956,-25.14488466266671,368.995513211881,-0.2535497190693362,0.1065308299039564,-6.705054012345685,-0.3415044444444228,287.7347755045432,88.9917695473251,1.318633744855959,-0.1676353554894781,-5.971193415637859,32.65843621399176,-19.231598596495108,426.8181704983575,-0.6163963800522964,1.4018133744855825,-2.917824074074081,0.5494226666666794,184.82679459052378,-12.570644718792856,4.282207544581617,0.5268246213761385,-4.487311385459534,-16.755829903978057,45.052526555114795,-73.47620920181222,0.9085203354507063,3.327367112482853,19.727044753086414,2.9891711111111117,-224.83584616373287,0.7047330391895116,0.5462234163914138,0.440284598778772,0.29462130035460515,0.28651350446701546,0.1537563660516165,0.1765638465468718,0.08577023879743281,0.11557243603670124,0.047958899449325625,0.0756283847557612,0.027899187107493693,0.04822898837269708,0.015041092859698712,0.031068745560854212,0.008608413211448467,9.014104124363143,5.692891294172552,4.124554393086429,2.1914974398204152,0.5517818494380031,-0.5290258230361864,4.022246876888559,0.987187763592625,7.014096940719524,0.9975698248315155,17.430704957737706,10.954209137430603,19.005609704298855,11.704860630064898,1.9916198314369813,0.5269534854667066,4.007180033034585,2.2410983846596886,8.007389653580207,1.1949161724246142,4.030629028334077,2.436944013427581,20.89779501297393,13.302783547492186,0.28971830874930954,0.6208439122505545,0.7887240520846323,0.88097274442682,0.9017437290599253,0.9017437290599253,1.3604730423409181,1007.8497113600298,0.0,1.0,3.0,0.0,10.0,4.0,2.0,0.0,0.0,4.010097284706586,2.015937108111067,1.004901157527601,0.44934560197204476,0.3242550926727228,0.3242550926727228,55.521726111404746,1596.8839878926433,51.30222650158137,29.571925701715614,60.28063579653118,,14.0,747.0,12.000703015443403,13.171245143024459,17.771067932979484,16.976071174341666,24.94985114346159,18.739616101436138,12.13273413692322,18.19910120538483,38.29176334454665,4.736862953800049,14.09047619047619,36.5,16.5,0.5,20.0,0.0,0.04546850998463903,-3.5,0.20764763121084961,0.06366843033509739,-0.14397920087575222,0.036968766001024056,0.2145064145847399,0.0,0.6501763668430329,0.9099846390168969,0.4425287356321833,0.5865079365079355,0.8730158730158728,28.143395638404517,0.4445372038948481,0.788537203894848,31.01852957541735,7.538102626253309,7.431573732224939,59.16192521382187,14.969676358478248,0.49949358541526007,0.09631632308212235,0.03548496113551876,0.2767826968570463,0.38095238095238093,0.4575235222166292,-1.1178983794403716,-0.04514562083010519,-0.02070182184148836,-0.050813562701835076,0.5424764777833707,1.3254697211205138,0.03335114203563928,0.024545735576305808,0.041420928785016055,-5.830128363858664,0.6842801210499379,0.5666924296784575,1.570466567878178,0.9395475480114704,0.42533119530032376,1.0153469362954062,0.6814756349533225,1.1133977558026635,0.5562956311628565,0.563417620679382,0.595487401222037,0.9843816631009282,0.8002222317010751,0.5627187084610308,1.2649392163973094,1.0710842047330764,0.6356378132118452,0.8525838910132963,0.7899051522223761,1.0251908620980825,0.5709171119492925,0.37081365483878986,0.580693131910385,1.0009282276702411,0.7748700492712212,0.42665028978891906,0.7935895513315693,1.1542892192902485,0.6251869272635588,0.7162485913073472,0.7693129353377322,1.031284456471104,0.44689597000218684,0.37266005684218073,0.4211239412343626,1.0347117311077232,0.8616059459101848,0.5897816173448064,0.9553739983858648,1.0286522974627383,0.7248355492538703,0.8120456895407772,0.8531204879215795,1.0299803260834726,0.6057810268410394,0.4849271628956794,0.5911642785977228,1.0415532017320246,0.8834388329636582,0.5546065875624575,0.7579466521265465,0.8663181067694001,0.7069433371298407,0.8522962296453637,0.8752415865138617,1.0876921925329177,0.5711145523599551,0.4129373529827359,0.5334980907732416,1.096517068672033,0.9124356737537911,0.80297832140742,0.9044696107537851,0.8383723613897419,0.8280641487251085,0.8862034731656188,0.9124189618838185,0.9983050961961522,0.8095219884740094,0.7653580739273784,0.7986642205435752,0.998352864332824,0.8894896626929669,0.7579960427276121,1.105328365609032,1.0557895240602042,0.8820921437060515,0.8450458022637707,0.8841969982924867,0.9939894577517105,0.7651416818781509,0.6825952158698593,0.7767517825242412,0.9869544795467389,0.9987337894825937,0.8106622716235211,0.8755652711388566,1.0170090874028748,1.0210566023353005,0.7776344780174332,0.9973170293389455,0.9452984610321697,0.832367106763805,0.8177146603401748,0.7958263087690111,1.0231068021086016,6.0,0.21406183042546678,4.000000000000002,2.0555555555555554,1.731666666666667,0.951388888888889,0.690612244897959,0.5521187641723355,0.3660871756109851,0.24125000000000005,6834.469431109341,7553.181678309707,3086.602170850282,2850.750034738834,13.891713948660653,0.44096574214657763,7.765943997601544,0.7887991405746694,1.0,0.38095238095238093,1.744790217456882,3.7389503940524014,4.749986344635867,5.3055419001914235,5.430632409490745,5.430632409490745,0.17647058823529413,0.00713539434751556,0.08333333333333337,0.0419501133786848,0.03534013605442177,0.021622474747474748,0.016443148688046645,0.013466311321276476,0.009386850656691925,0.006892857142857144,0.4120412079055966,24.134948096885815,10.950520833333334,5.925925925925926,177.15260965443363,1.0,4.366494447742934,185.8538290416616,,148.72606508804938,145.44362933552028,143.8844147645183,148.52333074430592,215.1618860520499,147.34652465725108,149.0311877908955,187.55282438416876,0.049847789581443834,0.0281866646624358,-0.3649394118472913,0.250818295049677,0.27592614794389175,0.006889503390752088,0.046772212084729994,-0.02518607626382773,0.03137631595024985,-0.05438495873126697,0.01754092153157456,0.004767297571474804,0.06406074048797136,0.29392163733132376,-0.1637715178228386,0.02412768299394609,0.23214407744874724,0.18796003060831795,0.07114567441665323,0.008346589540660287,0.2770102438873366,0.4376350896441661,0.2986702667600864,-0.03316107717504987,0.10462873360068041,0.20767173142373446,0.1046733452248543,-0.08732202649279282,0.1744335669199604,0.10044963379413027,0.10363138707026216,-0.036497574885569095,0.20151376555225609,0.13521803493409043,0.20062556362886474,-0.020098027146359578,0.06700465547078753,0.15653082568941395,-0.0359977052654155,-0.10781395662282521,0.1372902236065269,0.01647159101470038,0.0695118795039166,-0.059387005940538466,0.15288340225436597,0.1485231650947788,0.14828057989776625,-0.042066658977423774,0.018884149462549054,0.03680572710870216,0.056525870281970675,0.02214639515685196,0.0743621867881549,-0.10335956788082458,0.02147387822412369,-0.10029983514856931,0.04259504085981624,0.06029174874697647,0.030696857323514206,-0.056066022008932286,0.06266683545139827,-0.0064650246606986995,-0.088510916568215,0.06107550553020752,0.07209383496215739,-0.060423565109769796,0.061051438153988766,-0.007292747878246694,0.003318247605917849,-0.016775673608200824,-0.016943187725429697,0.039822452482995305,0.08020963925135201,0.04095224932556726,-0.06665521362584013,-0.06944078868655927,0.049123502030306035,-0.05190685255142228,0.07931773886087257,-0.01991318631618631,0.04904291665258988,-0.008199538362629289,0.03061666955199267,0.028731162104995638,-0.012311462261552737,0.14450958468403693,0.22761974582557631,-0.056704180552004456,-0.02738641866805375,0.13213072761843903,-0.014837117384881913,0.031892656526806715,0.12649174282163755,0.06023760470332196,0.1809995587795404,-0.03797774545754021,15.024467351458018,20.87373944957743,5.910028853455588,17.932767644532362,36.284207138480916,42.039738280626366,44.05003508037275,44.17612631374648,44.17612631374648,63.458002500496235,44.02930108663496,12.445460858745882,1.9073543228820198,5.075886232233367,19.428701413861273,7872.897344768097,7434.839126205823,1909.4648690826507,135.0,48.0,63.0,82.0,98.0,101.0,115.0,131.0,137.0,432.18854401600066,34.0,5.10594547390058,5.958424693029782,6.846943139585379,7.717351272185329,8.608677881538416,9.485924559229828,10.377887752684266,11.258639483136877,12.1507554767342,0.6975308641975307,1.0171851851851854,1.1550273461564902,0.666751788638193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6595613107119097,1.0005083514887434,1.0257344015537755,0.6376530406857094,8.0,3.0,0.0,0.0,0.0,0.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,4.0,2.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,15.37044016181271,5.749511833283905,0.0,0.0,5.824404497999927,0.0,0.0,17.853048078169643,5.098681808301038,30.33183534230805,53.57572254015616,24.191889555905494,12.797183815961095,299.01838635949457,-730.6119867119794,-29.505304178489716,-13.529851605777395,-33.20963575963543,354.5401124708993,866.2720011806639,21.796922323091657,16.04207409593822,27.071000036895747,0.5,0.980962156271968,0.20317174050972603,24.036838289592705,0.18545419901170637,1.019050537897357,0.019037843728031956,7.0,0.17647058823529413,0.30318407037512946,0.6496999972018213,0.8253830058103094,0.9219193074055541,0.9436557026439137,0.9436557026439137,3.2726000000000015,,2.1071428571428577,2.570452507689339,2.5857412791738126,2.2076335687442326,-10.185999177020724,2.3037156406266344,2.0305727588914486,-3.9549212434207206,107.75540000000001,17.908108096824506,0.0,30.84083214276862,0.0,37.64637982750399,13.65455394719011,65.4822440290868,0.0,11.436898107967467,4.23410650459726,0.0,5.564520407322694,2.3978952727983707,7.0925737159746784,4.59511985013459,8.708309295891688,6.6293632534374485,10.368761263333154,37.66666666666666,14.943481157637208,9.824257560236166,0.0,0.0,0.0,0.0,1.5521748344371562,0.6923387240698748,54.92800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.371476692450464,15.37044016181271,13.171245143024459,5.749511833283905,39.903649711094026,12.72105492335605,0.0,35.8347915563939,48.53093654769288,0.0,5.687386274683562,0.0,36.00459658646242,35.61631077844312,40.404737290077,371.7076580833233,,297.31618547563795,290.72142302538316,287.60200751102536,296.9042335164348,433.8168356425704,294.54442249897784,297.931370887669,376.38142981460226,40.404737290077,371.7076580833234,,295.366688380278,288.3709834043562,285.4161012814594,294.8606162422918,440.5097712811207,292.417251900838,296.05269203143905,379.0605700117582,4.850471302246539,275.8037525063344,,223.95185449289585,219.15431072370717,216.2112881956068,223.75504071356838,315.0967028266545,221.92222073471265,224.35229833180404,279.40813103758705,1.3033786222605483,11.990569615591074,,9.590844692762515,9.37811042017365,9.277484113258883,9.577555919884993,13.994091472340981,9.501432983837995,9.610689383473193,12.14133644563233,2.4512588011095073,185.8538290416616,,148.72606508804938,145.44362933552028,143.8844147645183,148.52333074430592,215.1618860520499,147.34652465725108,149.0311877908955,187.55282438416876,54.027450980392146,0.0,1.533341810489628,0.0,39.60361258398565,0.0,0.0,55.38965768390388,3.3926233446354304,7.111694682406939,5.42780245605665,0.0,0.3229259743383115,0.0,-4.654253128293012,0.0,0.0,34.43326419702831,641.1161542625338,94.21867174267162,201.90332127882968,256.4992626103368,286.49926261033687,293.25415011250027,293.25415011250027,975.0,142.51054973202463,12.442344567860196,80.59064956348989,76.89,76.89,1.0,8.490484994211757,6.087462841250339,4.381162847440672,5.493885012123476,,5.497554202394301,5.497732488881674,5.495843642366751,5.498034200609046,5.4644386009673305,5.4976368037776755,5.497312997004667,5.4885154050015705,0.14132783378840877,0.17722209716527343,,0.17734045814175164,0.1773462093187637,0.1772852787860242,0.17735594195513052,0.17627221293443002,0.17734312270250566,0.1773326773227312,0.17704888403230873,2.608716290926405,2.8350377692260915,,2.8357054143516316,2.8357378439721397,2.8353942166554305,2.835792721769381,2.829663501578915,2.8357204393536217,2.835661538352895,2.83405991241049,299.94000000000085,507.7598313820467,202.15572896507288,,201.38623458579724,201.2816219977648,201.66846100993962,201.2995274385155,206.73349225368702,201.347616238291,201.43306241830848,203.3618506298741,16.37934939942086,6.5211525472604155,,6.496330147928943,6.492955548314994,6.505434226127084,6.4935331431779195,6.6688223307640975,6.495084394783581,6.497840723171241,6.5600596977378745,7.361410674407266,6.440440447344858,,6.436626740809089,6.436107143385676,6.438027178384198,6.436196096585733,6.462832598210523,6.436434959822487,6.436859241253186,6.446389019155757,45.723753764112175,0.0,16.935952242643104,2.1400349586447174,-0.587860124207561,15.26640713197552,-2.6289270873573036,1.3672973036997214,1.533341810489628,361.5281086750767,195.42600771179804,-477.497673262973,-19.28344230642789,-8.84254950486987,-21.7044396937715,231.71270368164,566.159428670436,14.245563832602487,10.484433864267332,17.692482145951125,2797.0,49.0,2.589375394291438,0.7670730648615257,0.28867513459481287,0.013498731178900972,0.6891233915910073,0.1305723995261887,0.11785113019775792,0.0026997462357801947,0.0,0.0,0.0,0.0,0.11785113019775792,0.02,0.3804037345361324,0.1350568412700926,0.6084948385946467,0.1429195832167393,21.846724214874857,16.93292590813383,14.96967635847825,10.017124212056576,13.752648214416743,7.380305570477592,11.123522332452923,5.403525044238267,9.476939755009502,3.9326297548447013,7.411581706064597,2.734120336534382,4.8711278256424055,1.51915037882957,3.572905739498234,0.9899675193165738,4.932408373988095,1.6269337281788057,8.070584173104285,2.291802040609629,12.117199473855194,2.9228262520806734,100.72881054518243,52.17566809173395,34.5790606626514,28.908606260777276,28.394264825391765,28.394264825391765,164.0,193.0,59.47923899999998,30.998760999999995,0.46296296296296297,226.1,9.45138888888889,6.8055555555555545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,17.0,17.0,54.0,0.0,2.0,57.0,17.0,0.0,8.0,49.0,17.0,34.0,40.0,0.0,0.0,0.0,21.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,7.0,2.0,2.0,31.0,10.0,0.0,6.0,1.0,0.0,4.0,6.0,0.0,0.0,3.0,1.0,3.0,3.7727609380946383,7.040173747849195,4.334017415487521,4.88563880392157,5.426325722747208,5.851843219846055,6.050028223104394,6.385773910643689,6.718635667687183,6.939420477716975 +33624,CC(C)(C)NC[C@H](O)COc1nsnc1N1CCOCC1,0,25.244444444444444,6.173626666666664,2.8444444444444446,6.054320987654322,168.77764874665726,99.56335351111116,1.380133815919467,6.218135555555553,3.2792428745618043,7.752786333333331,188.2430188806681,25.934782608695652,6.476317391304349,3.347826086956522,5.079710144927537,151.72495812767926,97.55065817391312,1.608980763173914,6.597965217391306,2.7019927536231885,7.937301130434778,230.5250990250293,19.535714285714285,6.379688095238096,3.0595238095238093,3.837301587301587,163.71114375001167,71.71466399999998,1.3001404206516078,6.441521428571429,2.656176513815402,7.912686047619045,181.04168925642006,15.644859813084112,6.295249532710282,2.4299065420560746,2.806853582554517,165.92852717994285,54.18314649532709,1.1569963671657473,6.342224299065422,2.698944271374178,7.861556224299065,151.93682554544026,12.142857142857142,5.735126984126985,2.142857142857143,1.9365079365079365,169.10421342944358,42.485725849206354,1.029130966357119,5.787957142857144,1.9696869488536164,7.401800841269839,125.20026443835195,16.297029702970296,6.125841584158415,2.4356435643564356,2.62046204620462,167.72526734364507,57.24504469306929,1.1592078356497126,6.184011881188121,2.5824012956851243,7.775734158415841,146.08237524223392,17.870588235294118,6.516481176470589,2.2470588235294118,2.7607843137254897,166.15024213071231,61.27735750588238,1.1540882642546004,6.560916470588234,3.14161220043573,8.145467458823527,148.3535510467925,11.642857142857142,5.891042857142857,2.1666666666666665,1.6984126984126984,172.05760908572572,39.26659345238094,0.9736803975442263,5.927623809523809,2.0255731922398583,7.585014690476191,119.63668433657446,15.387096774193548,6.096467741935482,2.564516129032258,2.1236559139784945,162.10661795928092,53.75384327419353,1.2168989487772262,6.168733870967743,2.5275537634408596,7.692432870967743,158.37446057623686,10.97283950617284,0.14169066666666655,0.023233514084575087,0.5609876543209875,3.8595336076817546,1.4507230603083725,50.12057998024689,0.2697315463801955,0.1325947654320987,0.9237126793002426,0.08591759209876543,48.323358108266284,1.2788513150832,-0.005600521739130499,-0.01036955021819458,0.14529253891572746,1.015775034293553,-0.7210311308334169,5.609332709608167,-0.05508922723320412,0.00047943746645190714,-0.18505133724607503,-0.0032189621470746547,-3.932474771978469,0.9316578483245149,-0.002286380952381004,-0.004331082637312996,-0.07183421516754844,0.029737409367038725,-0.009815217287076114,4.425997790123465,0.023951377672903666,-0.0003281781305115008,0.03502716418325699,-0.005327326490299859,4.4044273194636405,-1.0824968270451139,0.0005903925233644566,0.004672700388840611,0.052927195107880465,-0.05662602720408187,-0.000299367427732625,-5.518082453559474,-0.03237932043568153,-0.0032799575400946058,-0.05253934835997923,0.007927735211722603,-10.164224054992484,2.3086419753086402,0.0131537777777778,-0.0011736510222031499,0.036895943562610216,0.4863805604546346,0.05304020677970449,10.715930117283941,0.043202938260009184,0.015397985890652565,0.016955890749329305,0.005551407724867761,8.965128188680655,-0.4016623884610679,0.0010639207920791947,-0.0023021476421870974,-0.06857841339689523,-0.08390715614771356,-0.002515946782320323,-1.4368988893778263,-0.005702836879108414,0.0020317472191663374,0.12340222937855433,-0.00432974039359493,2.1557890278745253,-2.8800290486564997,-0.012144705882352991,0.003159342579100104,0.014960058097312988,-0.4881465343338981,-0.15079203904932872,-13.588919697893962,-0.07665185106369747,-0.01564807262164126,-0.18335920915132312,-0.0016643902687001385,-15.701834606840144,0.5044091710758377,-0.005286857142857128,-0.00012637454168659272,0.024726631393298046,-0.016264942190867944,0.2670096431520119,2.6953613959435576,0.03527349035780837,-0.0032273844797178083,-0.011746361375419392,-0.006003466701940024,9.303034393886728,-0.8681800079649545,-0.01730851612903226,-0.002292714174095859,-0.09969733174034244,-0.7791273950174786,-0.3740861919728774,-3.9942306788132202,-0.02515855683397187,-0.01571236399840701,-0.12257942487895516,-0.012531720414177619,-5.373397447328871,,,0.4730158730158731,0.8809523809523809,0.21428571428571427,0.023809523809523808,0.6666666666666666,-0.4523809523809524,1.0614530284389785,0.02185262869888041,0.030043104889356596,0.5445417684440634,0.16398972969347803,0.31007257314921755,1.605994796883042,0.47406230284269557,1.992009388448367,1.2266809880789147,0.39283692760307126,0.2759545772987166,0.0,0.7653284003694526,7.025709147288904,1136.0,277.8131999999999,128.0,272.44444444444446,7594.994193599577,4480.350908000002,62.10602171637601,279.8160999999999,147.56592935528118,348.8753849999999,8470.935849630065,1193.0,297.91060000000004,154.0,233.66666666666669,6979.348073873246,4487.330276000003,74.01311510600004,303.5064000000001,124.29166666666667,365.1158519999998,10604.154555151348,1641.0,535.8938,257.0,322.3333333333333,13751.736075000981,6024.031775999999,109.21179533473506,541.0878,223.1188271604938,664.6656279999997,15207.501897539285,1674.0,673.5917000000002,260.0,300.3333333333333,17754.352408253886,5797.596674999998,123.79861128673495,678.6180000000002,288.787037037037,841.186516,16257.240333362108,1530.0,722.6260000000002,270.0,244.0,21307.13089210989,5353.201457,129.670501760997,729.2826000000002,248.18055555555566,932.6269059999997,15775.233319232346,1646.0,618.7099999999999,246.0,264.66666666666663,16940.25200170815,5781.749513999998,117.07999140062097,624.5852000000002,260.8225308641976,785.34915,14754.319899465625,1519.0,553.9009000000001,191.0,234.66666666666663,14122.770581110546,5208.575388000002,98.09750246164103,557.6778999999999,267.03703703703707,692.3647339999998,12610.051838977362,978.0,494.84759999999994,182.0,142.66666666666666,14452.83916320096,3298.3938499999986,81.78915339371501,497.9204,170.1481481481481,637.141234,10049.481484272255,954.0,377.9809999999999,159.0,131.66666666666666,10050.610313475418,3332.738282999999,75.44773482418802,382.46150000000006,156.7083333333333,476.9308380000001,9819.216555726685,493.77777777777777,6.376079999999995,1.045508133805879,25.244444444444436,173.67901234567896,65.28253771387676,2255.42609911111,12.137919587108795,5.966764444444442,41.567070568510914,3.866291644444444,2174.551114871983,58.82716049382719,-0.25762400000000296,-0.47699931003695073,6.683456790123463,46.725651577503434,-33.16743201833717,258.02930464197567,-2.5341044527273895,0.022054123456787728,-8.512361513319451,-0.14807225876543412,-180.8938395110096,78.25925925925925,-0.19205600000000433,-0.3638109415342916,-6.034074074074069,2.497942386831253,-0.8244782521143935,371.78381437037103,2.011915724523908,-0.02756696296296607,2.9422817913935875,-0.4474954251851882,369.97189483494583,-115.8271604938272,0.06317199999999686,0.49997894160594536,5.66320987654321,-6.05898491083676,-0.03203231476739088,-590.4348225308637,-3.4645872866179235,-0.3509554567901228,-5.621710274517778,0.8482676676543186,-1087.5719738841958,290.8888888888887,1.6573760000000028,-0.14788002879759687,4.648888888888887,61.28395061728396,6.683066054242765,1350.2071947777765,5.443570220761157,1.9401462222222232,2.1364422344154925,0.6994773733333378,1129.6061517737626,-40.567901234567856,0.10745599999999866,-0.23251691186089682,-6.926419753086418,-8.47462277091907,-0.2541106250143526,-145.12678782716046,-0.5759865247899498,0.2052064691358001,12.463625167233987,-0.437303779753088,217.73469181532704,-244.80246913580245,-1.0323000000000042,0.26854411922350885,1.271604938271604,-41.49245541838134,-12.817323319192942,-1155.0581743209868,-6.515407340414285,-1.3300861728395068,-15.585532777862465,-0.14147317283951177,-1334.6559415814122,42.37037037037037,-0.4440959999999987,-0.010615461501673789,2.077037037037036,-1.3662551440329072,22.428810024769,226.41035725925883,2.9629731900559033,-0.2711002962962959,-0.986694355535229,-0.504291202962962,781.4548890864852,-53.82716049382718,-1.073128,-0.14214827879394326,-6.181234567901232,-48.305898491083674,-23.1933439023184,-247.64230208641965,-1.559830523706256,-0.9741665679012346,-7.59992434249522,-0.7769666656790124,-333.15064173439,0.7283182119522419,0.6500041328870506,0.4525140163498458,0.3589599750262944,0.31782617710439137,0.22055266898873596,0.19365435382095453,0.10713484069673877,0.12322999322741776,0.0603344089739809,0.08699288785335957,0.03597219542186962,0.05402468703690892,0.018644682605542123,0.03606468097588009,0.010512990275818118,16.005002157580087,5.806010193220802,3.522754963923062,2.3031835416903648,0.45453055075107307,-0.49986401979734624,4.0170428194697845,0.989343302718408,6.008042444328625,0.6562867270765486,14.55555591166088,10.349212186173657,32.06249385207769,11.819123816267346,2.9250241414186013,0.7776162422864972,3.4655756540961136,2.3522011575669737,6.002601564738574,0.6290414197692271,3.678980947259449,2.547065754618974,24.4341288024885,14.705883812618948,0.30332914488259544,0.5282487719923781,0.7115520840827129,0.7553981956814168,0.7553981956814168,0.7553981956814168,1.7077068775280877,429.2960174181891,0.0,2.0,9.0,0.0,0.0,1.0,0.0,1.0,0.0,3.7977711967845647,2.541603513700243,1.5178613894177362,1.27298250033654,1.27298250033654,1.27298250033654,356.74198298206215,1266.8257670328233,45.46490590836723,28.151683711840512,51.87800661989571,,12.0,409.0,6.103966387748303,5.106527394840706,12.145807216896262,25.638508671373785,30.635562934858793,0.0,0.0,0.0,39.734989896761576,9.473725907600098,9.933333333333335,18.5,4.5,0.5,14.0,0.0,0.026984126984126888,-9.5,0.14155434122647226,0.0,-0.14155434122647226,0.05203588681849547,0.18749823321554737,0.0,0.5792592592592595,0.8984126984126981,0.4377049180327872,0.5792592592592595,0.8463768115942026,22.29051359721855,0.4589052026764886,0.6309052026764885,11.435377137325332,3.4437843235630385,6.511524036133569,33.72589073454388,9.955308359696607,0.5265017667844526,0.1845637583892617,0.05033557046979865,0.19127516778523485,0.8461538461538461,0.17331648248651535,-0.40212377538789124,-0.032551820616709234,-0.008936083897508693,-0.040212377538789125,0.8266835175134847,1.9180466412900379,0.05071640176300347,0.04262325869533417,0.0548013326082868,-2.3746386872378595,0.7981058975462765,0.9372325261316347,1.5345024740686952,1.1177663808940603,0.7009710598212412,1.8960699198433875,0.8092610246934275,1.3739040153409723,0.8819039351180903,1.104951783397675,0.9465023620686736,1.2401250837926467,0.7653818953323903,1.1430504247721098,1.4393638338547181,1.7325829979879281,1.1660049149031237,1.1219949996515912,0.7749807022520221,0.819515220203625,1.1086334685231016,0.8898867040393394,1.2016978932475575,0.9033843658842641,0.9169057092625151,1.1069095628087553,1.0829309995713585,0.8633342108727132,1.039671130078471,1.0476139913882874,0.9432172708359264,0.9676454912792517,1.1182049304414883,1.148160439195832,1.0254824152117616,1.169833977382818,0.6181046676096181,0.6649433109421066,0.8178548852806088,0.8161468812877266,0.739246110727487,0.8312036660415723,0.6266974349568286,0.7000045119446088,0.6646916879468003,0.6792142611078167,0.6547892418413113,0.7815588016087915,1.3136947358102147,1.0602383214193745,1.165302668389195,1.2252475247524757,1.139616065672533,1.044138729770557,1.2801397963014673,1.2255962883128724,1.0457026491045869,1.0037825528029092,1.1297026665006362,0.9520513053170558,1.6154921374490392,1.5648681801173068,1.315425317380874,0.6971830985915496,1.3162136847915173,1.1803471083575834,1.5933647315187647,1.5112629644536024,1.5526077478235212,2.3152011909324397,1.6084980910190423,1.297838651762193,0.9743635077793495,1.0578297547799187,1.1712242369298917,0.8299798792756542,1.0095099313538327,0.6596125628793813,0.9628455010061364,0.8061615610329737,1.048024725106926,0.8258088371506705,1.0955751251893995,0.7351372256952027,0.9593580325774513,1.0706967897355077,1.1379741205894796,1.391554975011359,1.171815238427179,1.3122506097689932,0.9683092985384023,1.0723086021824553,1.0645938354539366,1.5330184924348067,1.1142561623650125,1.138508700507654,5.0,0.08672584430160188,2.222222222222223,0.9375,0.8861111111111112,0.3994444444444445,0.31841269841269837,0.24046910430839002,0.19525541698160742,0.19532407407407404,4125.008803178916,4784.399820607992,2136.2839509672826,1890.9777294527125,13.23182313774506,0.4473224909998844,7.312931051299033,0.8093734297405448,1.0,0.8461538461538461,1.6940818995451101,2.9502495826294317,3.9739917069119386,4.218870595993135,4.218870595993135,4.218870595993135,0.22727272727272724,0.009636204922400209,0.0740740740740741,0.0375,0.0369212962962963,0.015977777777777778,0.016758563074352546,0.016031273620559332,0.012203463561350464,0.013021604938271605,0.4593969855378096,17.355371900826448,8.022222222222222,5.950413223140496,129.13279449954695,1.0,3.9514417627760774,104.62066662907188,,87.00681115707661,85.5462055434927,86.93859953663684,87.03717275530715,144.56124448401565,87.07836314726,88.03718148667116,120.83628944701807,0.1165469807850351,-0.039526398392252395,-0.44631863180262543,0.258994182486222,0.2631859539380155,-0.4970150062136264,0.1119167557881188,-0.20423724244532396,0.003615809906895799,-0.2003343045872884,-0.03746569321186678,-0.08137834219153268,0.0849058120097724,-0.01613642596346741,-0.1864153059906007,-0.12804954728370216,0.007704923026930353,-0.006765741550278897,0.08830699468896415,0.08879709472003477,-0.0024750458997535585,0.03791997768157928,-0.06200507207157181,0.09114489331630724,-0.09865238860334634,0.004166770735530384,0.2011189685654506,0.09434645254705808,-0.014671727975467619,-0.0002063573923399205,-0.11009614126042068,-0.12004276426029092,-0.02473670457054551,-0.05687845315686296,0.0922713849174146,-0.21033770112209507,0.21039603960396025,0.09283446882724206,-0.05051543291861932,0.06576961770623742,0.12602055323124423,0.03656122124951265,0.2138029951270958,0.16017013523183984,0.1161281581552163,0.018356239044130283,0.06461316698082291,0.18552369991743314,-0.03660514566308112,0.007508757048776646,-0.09908736292782809,-0.12224585134569797,-0.021740232027183396,-0.0017342708964628447,-0.028668840024279947,-0.021142639619431386,0.015322982114303657,0.1335937376891238,-0.05039410774708089,0.04461173875881262,-0.2624688939482184,-0.08571281488091195,0.13598212339293161,0.02666735708367853,-0.12647811470337356,-0.1039426773965223,-0.27112455009996916,-0.2841782953917232,-0.11801425622382189,-0.19850242749750568,-0.01937193801691813,-0.32493260446968314,0.04596888260254597,-0.0373126703913017,-0.005439321026796104,0.04407696177062373,-0.004214224785734552,0.18405280129431117,0.053777538029404916,0.13077258048300078,-0.024340210333344874,-0.01271646653623704,-0.0698747084885575,0.1925163059455368,-0.07912081530733721,-0.12215706606668242,-0.09868133446149717,-0.1777175147660154,-0.20187086684949607,-0.2578618912236495,-0.07969242734995073,-0.09327257850110739,-0.11849912737658755,-0.13270297964494226,-0.14585744441920517,-0.1111966895034492,4.190133451868675,5.662798733125567,1.3103706971044482,19.131644063067686,31.989586283821183,34.946452886711484,35.19329080690534,35.19329080690534,35.19329080690534,41.832197157415706,25.76030074965721,8.249575479664497,5.795046123273049,0.0,16.071896407758505,4761.02102300445,4193.312109350759,958.7108139954444,39.0,30.0,33.0,40.0,45.0,41.0,43.0,44.0,41.0,316.15691162800067,22.0,4.653960350157523,5.442417710521793,6.300785794663244,7.113956109566034,7.972810784121404,8.798605650854423,9.656883441842194,10.490801883683998,11.348864170167783,0.6296296296296297,0.9824000000000002,1.1487696538576533,0.5854263221676426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.630991776447106,0.9674074074074072,1.0083434490572147,0.5747831105683334,0.0,2.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,24.796951637297614,12.71084835226122,0.0,5.817862777835028,5.879988336435371,0.0,0.0,4.3735399814164495,4.3735399814164495,0.0,20.771211599071872,25.17319447012107,24.94195127422445,94.63174958492232,-219.56178586541063,-17.773472510748704,-4.879150797009125,-21.956178586541064,451.3737325669845,1047.2639811674126,27.691433397618525,23.272532914831388,29.921828033354643,0.5,0.8867823719589574,0.20325970164806176,3.712239083187047,0.11656869645331076,47.01630028678443,0.11321762804104281,6.0,0.2727272727272727,0.3084718163122939,0.5372047523633048,0.7236158063965411,0.768205289178747,0.768205289178747,0.768205289178747,0.5024999999999997,,1.9464285714285716,1.5752237029804177,1.3335004041957026,1.9431561536577697,-4.8954721347102454,1.432527539779682,1.3778924772647763,-2.316703071976324,82.19850000000004,14.580253302440804,0.0,14.06386856683923,0.0,32.41410323920352,44.35482484212695,0.0,0.0,5.879988336435371,3.8066624897703196,0.0,5.10594547390058,2.3978952727983707,6.566672429803241,4.59511985013459,8.09712193091871,6.580639137284949,9.667448713236185,28.333333333333336,0.0,8.448278573003275,0.0,0.0,1.1244011925757955,0.0,1.2462863362937773,0.0,44.208000000000006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.694634423594394,14.953561288656857,5.817862777835028,5.879988336435371,64.95141410908172,4.736862953800049,0.0,20.771211599071872,0.0,0.0,0.0,0.0,26.344184497543917,28.39462994011977,26.106073294278733,209.24133325814375,,174.3133773417962,171.05300705030282,173.8624562999856,174.3748998230818,289.5887244094322,174.11068567426736,176.0130328439953,241.95692092740597,26.106073294278733,209.24133325814375,,172.92307121934715,169.77782595741382,172.78295597277958,172.98693114189768,294.01796110274154,172.95102052301715,174.89759607668572,243.9892819660124,4.644873249102584,159.9465211969658,,133.7549795432676,131.05998331892897,133.74697511724005,133.80298209376775,224.62770599252661,133.41719968716487,134.87087979787316,185.71513069051338,1.2431463473466065,9.96387301229256,,8.30063701627601,8.145381288109657,8.2791645857136,8.30356665824199,13.789939257592009,8.290985032107969,8.381572992571204,11.521758139400285,2.3672859581211543,104.62066662907188,,87.00681115707661,85.5462055434927,86.93859953663684,87.03717275530715,144.56124448401565,87.07836314726,88.03718148667116,120.83628944701807,43.533333333333324,0.0,6.171013076776273,0.0,0.0,0.0,9.946664304610733,45.37545520757467,3.6347107880495324,3.2393407274143207,10.945773778410656,0.0,-0.5801257663559254,2.0993237433862433,-0.025666754164680006,0.0,0.0,25.865239975575005,484.18803656526205,76.23368547952995,132.76123121832444,178.82962681103723,189.84917681969105,189.84917681969105,189.84917681969105,399.0,114.77908589557842,61.81744558664482,67.81750529784694,107.97999999999999,79.74,1.0,6.8136506222427995,5.459431618637297,3.6498462923242414,4.517742397428,,4.50280822567252,4.505861314410849,4.508418481285621,4.502821134666641,4.519042361169978,4.506316712452091,4.50632746244974,4.514504024088734,0.17380220439639243,0.2151305903537143,,0.21441943931773905,0.2145648244957547,0.21468659434693432,0.21442005403174483,0.21519249338904659,0.21458651011676624,0.21458702202141616,0.21497638209946354,2.0366223997450668,2.2499497442014538,,2.2466385970167777,2.2473164082832766,2.2478837674070946,2.246641463888954,2.250237449128742,2.2474174710985637,2.247419856635469,2.2492326748641265,237.5899999999998,255.07617151980074,108.19788251216816,,109.16554738514519,109.02234295804027,108.84524939985528,109.16464566122926,107.9707239158431,108.9898758051604,108.98531266879492,108.39402410727507,12.146484358085749,5.152280119627055,,5.198359399292628,5.19154014085906,5.1831071142788225,5.198316460058536,5.141463043611576,5.189994085960019,5.189776793752139,5.161620195584527,6.283499557124659,5.425899140822425,,5.43480285812351,5.4334901872191566,5.431864487910032,5.434794597938298,5.423797460252863,5.433192340123208,5.433150471721597,5.427710304053641,19.394052351413933,2.0993237433862433,13.186005032025054,-0.025666754164680006,1.2462863362937773,0.0,-0.5801257663559254,9.805723864825806,0.0,281.3851787865846,51.66945405899401,-119.88193875357724,-9.704413427745006,-2.6640430834128273,-11.988193875357725,246.4525324809422,571.8118749776385,15.119674443744117,12.706930555058632,16.337482142218242,1063.0,25.0,2.3187514031959213,1.586546390207334,0.3535533905932738,0.25,0.13608276348795434,0.03412870929175277,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.06123724356957946,0.25343678769327627,0.09802967433402215,0.2621886974951644,0.09040961610861872,15.29468245099708,13.650086790628063,9.955308359696607,7.897119450578477,9.53478531313174,6.616580069662079,6.390593676091499,3.5354497429923795,4.929199729096711,2.413376358959236,3.9146799534011807,1.618748793984133,2.2150121685132658,0.764431986827227,1.5507812819628437,0.4520585818601791,2.538930385704973,1.2153224241307896,3.460840537037516,1.4818028286072031,4.862979329161925,1.7293252457346597,68.8692326170609,37.72729791322879,31.368480459192217,29.99910270295607,29.99910270295607,29.99910270295607,104.0,115.0,47.41903199999997,34.568968000000005,0.24444444444444444,64.08,7.506944444444445,4.597222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,5.0,5.0,45.0,0.0,1.0,46.0,5.0,0.0,2.0,44.0,5.0,22.0,41.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,8.0,2.0,2.0,21.0,8.0,0.0,4.0,3.0,0.0,2.0,6.0,1.0,0.0,0.0,1.0,1.0,3.2386784521643803,4.877579978605219,3.6699514442284173,3.995904489408848,4.416579016180541,4.505349850705881,4.621904384979256,4.749811509147343,4.860296783155352,4.853006349892673 +2554,NC(=O)N1c2ccccc2C=Cc2ccccc21,0,23.8,6.09766,3.6,8.0,157.6286192354496,94.15048939999998,1.6744019619396004,6.1978100000000005,4.496296296296297,7.582809866666669,247.62591942729438,25.9375,6.303375000000001,4.28125,8.21875,144.88749101958118,99.32459699999995,1.9726008656249994,6.462296875000002,3.434027777777778,7.686204250000001,289.4007208234507,23.88235294117647,6.24911568627451,4.176470588235294,7.431372549019608,146.62785781055,90.47574282352936,1.8398409357813512,6.391711764705886,3.516339869281047,7.652617411764708,263.43952558728597,20.785714285714285,6.156371428571427,3.8,6.2,152.32173201481208,77.63885921428572,1.6480022706563289,6.278935714285713,3.0412698412698425,7.6225081714285725,234.2512536886436,19.561643835616437,6.121424657534249,3.315068493150685,5.301369863013699,152.69909417671633,72.07745642465754,1.5811109661519724,6.2413767123287665,3.2420091324200913,7.597582849315069,221.660729300499,17.506493506493506,6.122545454545454,2.7012987012987013,4.1688311688311686,155.28066594929726,63.10504024675324,1.4096034229972987,6.224019480519481,3.7229437229437226,7.636046493506494,194.62692118346422,10.838235294117647,5.934764705882353,1.9852941176470589,1.7205882352941178,162.62907410353,34.33745533823529,1.1211127971961614,6.001198529411766,3.151960784313726,7.541110529411763,139.24916260522758,6.0227272727272725,5.423136363636364,1.6136363636363635,0.6136363636363636,168.53807113108704,16.602664977272724,0.8953323487302499,5.476352272727272,2.022727272727273,7.133858454545455,96.91728534448139,2.764705882352941,5.072941176470589,1.3529411764705883,0.0,173.6958505025964,4.930543058823529,0.6807063419611175,5.111764705882353,1.3529411764705883,6.859346823529412,60.60828746843204,6.715555555555557,0.08862488888888881,0.016163229608514587,0.5955555555555555,3.448888888888889,1.5685065088847592,32.122263759999996,0.23011749975931553,0.08537788888888884,1.3358024691358021,0.050346648888888866,50.220103152742354,0.1386111111111103,-0.007071972222222268,-0.013692425481919946,0.24402777777777784,0.7698611111111111,0.0690860012452979,0.7278505899999914,0.016080496594601278,-0.005584659722222285,-0.18325617283950632,-0.004229732222222179,3.2702093494887414,0.11973856209150296,0.03224596078431368,0.007677652356688735,0.04366013071895418,0.27006535947712434,0.03578383956480893,0.3938558125490148,-0.014112267191638304,0.026132111111111078,0.23965141612200425,0.02040386091503272,-4.027112243965402,0.07968253968253937,-0.008615174603174628,-0.002780332709707346,-0.029841269841269856,-0.09841269841269837,-0.008610562936867227,0.45534414571428095,0.013198142230769268,-0.007030650793650821,-0.0966490299823633,-0.005517083174603148,2.587000404633619,-0.49729071537290753,-0.006662423135464246,-0.0006542922377761361,-0.23391171993911716,-0.492724505327245,-0.11993201845004882,-2.4117089326027425,-0.026050102302000434,-0.005825788432267905,0.038220869271097586,-0.003686696377473343,-4.5845197599513545,-0.837633477633478,-0.007294759018759035,0.0020455018421539632,-0.1920923520923521,-0.7553823953823953,-0.3687477306610665,-4.089587453506495,-0.054585054337093895,-0.006592304473304491,0.01859868526535187,-0.004696286984126955,-9.807280162210258,-2.4694771241830065,-0.030242535947712392,-0.0024294283123697663,-0.006339869281045709,-1.132222222222222,-0.13288627815271306,-11.7139224217647,-0.039609314790604866,-0.0313432810457516,-0.41521423384168493,-0.014578974379084956,-12.88808349338439,1.1253535353535367,0.0033869292929293864,-5.3161308202848627e-05,0.20595959595959598,0.801111111111111,0.2335058576570036,5.465424599090921,0.04826346106562517,0.004778929292929387,-0.06930415263748595,0.000533551111111,10.433144261992554,4.288366013071897,0.03655667973856223,0.0026426031181022683,0.2789542483660132,2.292287581699346,0.31059158506426976,20.49618152235296,0.09678937481343318,0.04052426797385634,0.33042846768336975,0.014975782483659928,26.943390843935088,,,0.47962962962962963,1.4305555555555556,0.8055555555555556,0.0,0.625,0.18055555555555555,0.590552661582276,0.007964256363555577,0.02229758969688891,0.9642817477202996,0.2995013665752857,0.18776846385966406,1.5548344093025757,0.48726983043494976,2.0690632433225904,1.7528961843988,0.22048268480977934,0.09568437411401108,0.0,0.31616705892379043,7.869832100133333,714.0,182.9298,108.0,240.0,4728.858577063488,2824.5146819999995,50.23205885818801,185.9343,134.8888888888889,227.48429600000009,7428.777582818831,830.0,201.70800000000003,137.0,263.0,4636.399712626598,3178.3871039999985,63.12322769999998,206.79350000000005,109.8888888888889,245.95853600000004,9260.823066350422,1218.0,318.7049,213.0,379.0,7478.020748338051,4614.262883999997,93.83188772484891,325.9773000000002,179.3333333333334,390.2834880000001,13435.415804951585,1455.0,430.9459999999999,266.0,434.0,10662.521241036846,5434.720145,115.36015894594303,439.5254999999999,212.88888888888897,533.5755720000001,16397.587758205053,1428.0,446.86400000000015,242.0,387.0,11147.033874900291,5261.654319,115.42110052909399,455.62049999999994,236.66666666666666,554.623548,16181.233238936427,1348.0,471.436,208.0,321.0,11956.611278095888,4859.088099,108.539463570792,479.24950000000007,286.66666666666663,587.97558,14986.272931126745,737.0,403.564,135.0,117.0,11058.77703904004,2334.9469629999994,76.23567020933898,408.08150000000006,214.33333333333337,512.7955159999999,9468.943057155475,265.0,238.61800000000002,71.0,27.0,7415.67512976783,730.5172589999999,39.394623344131,240.95949999999996,89.0,313.889772,4264.360555157181,47.0,86.24000000000002,23.0,0.0,2952.8294585441386,83.819232,11.572007813338997,86.9,23.0,116.608896,1030.3408869633447,201.46666666666673,2.6587466666666644,0.4848968882554376,17.866666666666664,103.46666666666667,47.055195266542775,963.6679128,6.903524992779466,2.5613366666666653,40.07407407407406,1.510399466666666,1506.6030945822706,4.4355555555555295,-0.22630311111111256,-0.4381576154214383,7.808888888888891,24.635555555555555,2.210752039849533,23.291218879999725,0.5145758910272409,-0.17870911111111312,-5.864197530864202,-0.13535143111110973,104.64669918363973,6.106666666666651,1.6445439999999978,0.3915602701911255,2.226666666666663,13.77333333333334,1.824975817805255,20.086646439999754,-0.7197256267735535,1.332737666666665,12.222222222222216,1.0405969066666687,-205.38272444223554,5.577777777777756,-0.6030622222222239,-0.1946232896795142,-2.08888888888889,-6.888888888888886,-0.6027394055807058,31.874090199999667,0.9238699561538487,-0.49214555555555745,-6.765432098765431,-0.3861958222222203,181.0900283243533,-36.30222222222225,-0.48635688888889,-0.047763333357657936,-17.075555555555553,-35.968888888888884,-8.755037346853564,-176.0547520800002,-1.9016574680460316,-0.42528255555555705,2.790123456790124,-0.26912883555555406,-334.66994247644885,-64.4977777777778,-0.5616964444444457,0.15750364184585516,-14.79111111111111,-58.164444444444435,-28.393575260902118,-314.8982339200001,-4.20304918395623,-0.5076074444444458,1.432098765432094,-0.36161409777777553,-755.1605724901899,-167.92444444444445,-2.0564924444444426,-0.1652011252411441,-0.4311111111111082,-76.9911111111111,-9.036266914384488,-796.5467246799996,-2.6934334057611307,-2.1313431111111085,-28.234567901234577,-0.991370257777777,-876.3896775501385,49.515555555555615,0.149024888888893,-0.0023390975609253396,9.062222222222223,35.248888888888885,10.274257736908158,240.47868236000053,2.1235922868875075,0.21027288888889303,-3.0493827160493816,0.023476248888884003,459.05834752767237,72.90222222222225,0.6214635555555579,0.044924253007738564,4.742222222222224,38.968888888888884,5.280056946092586,348.4350858800003,1.645419371828364,0.6889125555555577,5.617283950617286,0.2545883022222188,458.0376443468965,0.6963983015001797,0.5392397137249838,0.4385428473914549,0.2864501906989446,0.2791250038143355,0.1473075945767231,0.1692965830715308,0.07738850157291757,0.1099517378644871,0.040943750791804,0.07305817915715852,0.022262196201152357,0.04690785015910655,0.011779394316104204,0.03107107067697437,0.006505658107331354,8.022104846768539,5.682503673060335,3.5445006353393347,2.1825036730603475,0.433053226409629,-0.3686683117193747,3.238870027259127,0.9730154691799316,6.022001037267691,2.7513979761279823,14.545857851572505,10.942803673060345,16.010074805430076,11.693503673060352,2.0035532806580396,0.7506469845205674,3.4899012446329785,2.232503673060348,7.0082735115343935,1.4456963012321264,3.7026239239300356,2.428503673060342,20.90941522617087,14.70270352985067,0.2729825741623212,0.4683024312331222,0.5886803632294669,0.7341118718536929,0.7716922367955142,0.7842190251094547,1.8486314304100566,596.9467906495954,0.0,0.0,0.0,0.0,12.0,0.0,2.0,0.0,0.0,3.4540969647593887,2.4146187299249084,1.7739760316291209,0.9999999999999996,0.7999999999999998,0.7333333333333334,49.935868424461916,583.251960896523,37.91587619622376,19.4417320298841,38.8834640597682,,7.0,223.0,6.031114512338072,4.794537184071822,0.0,0.0,22.501675532761116,0.0,4.899909730850478,60.68297676136064,0.0,5.733667477162185,8.633333333333333,25.75,14.5,0.0,11.25,0.0,0.020370370370370396,3.25,0.14822222222222198,0.09297979797979777,-0.055242424242424204,0.04870370370370358,0.10458823529411743,0.0,0.5922222222222223,0.7870370370370368,0.44400000000000034,0.49924242424242454,0.7383333333333332,10.629947908480968,0.1433566145440004,0.4013566145440004,17.357071458965393,5.391024598355143,3.379832349473953,27.98701936744636,8.770856947829095,0.6094117647058825,0.08494208494208495,0.0,0.3359073359073359,0.0,0.4404263206241235,-0.6129164608802284,-0.04004728548256896,-0.020430548696007616,-0.04086109739201523,0.5595736793758764,0.7787271175772777,0.0504202811398533,0.02595757058590926,0.05191514117181852,-2.7194304381905363,0.742213352084712,0.8032955534186536,1.8920365093152431,0.6086753731343284,0.5342904317010309,1.0096694921034568,0.7431404806835445,0.8199739912453546,0.7764030841318532,0.7110963493530501,0.7767832456861744,0.7777322140565817,0.7846381438081518,0.39024948213842175,0.4425289185934722,1.082089552238806,0.7968844754396603,0.9958729830604287,0.7928490704869391,0.9727024599042248,0.4412777121504494,0.40518647385016876,0.32899536999254925,0.9536780122480718,0.8821735841921148,1.0258249142811295,1.0376540507043808,1.252132196162047,1.0330449189985271,1.019393912151636,0.8801491050478876,0.8715801116134647,0.9981824966019418,0.8385265381568527,1.0325669127304475,0.8578268510896013,0.9740895533213056,0.9854607224552815,1.0964836593319573,1.4674913105704355,1.0904180200536646,1.0797981788511533,0.9756316911008158,1.043911007705707,0.9707324441560043,0.7710227128858281,0.9715815625989384,1.0076869258205714,1.0954730246589939,1.246346942627396,1.052317889392422,1.2437003295212252,1.1866548400053556,1.1924634633496753,1.0949020376717853,1.1862612330686886,1.2131530957768821,1.37631130422258,1.335298904532686,1.1285301063018407,1.450028224393662,1.6354034718407797,1.221436943995779,0.7399582967515365,1.3395902819890841,1.0136443071507864,1.4423225017725705,1.161717154899089,1.6391068251204925,1.902563335870393,1.6656426852967277,1.256300484990061,1.0141537813609287,0.8073703330710393,0.7096121183186903,0.332004748982361,0.8026300374882849,0.7014313522882906,1.0144867559862842,0.8844271800533279,0.860925657779774,0.8881280457066043,0.7434377023245611,0.966830721707453,0.6350488573986841,0.17323509647181534,0.22927312462592753,0.28643546971027223,0.44515615524560337,0.5945725967644381,0.6429321726424853,0.7460716498706234,0.24475961042706143,0.12770468631075355,0.08035630329962515,0.7647154379217777,2.5,0.0,2.000000000000001,1.5,1.3794444444444445,0.5627777777777778,0.22866213151927434,0.014739229024943318,0.0,0.0,3302.243847866487,3617.7118641483407,1701.0157902825426,1570.2855830736762,9.560050055550931,0.4565405244484278,5.195499789436488,0.8400636017709915,1.0,0.0,1.4527936308491303,2.4922718656836103,3.132914563979398,3.906890595608519,4.106890595608519,4.173557262275185,0.125,0.0,0.07142857142857145,0.045454545454545456,0.044498207885304654,0.02084362139917695,0.02078746650175221,0.004913076341647772,0.0,0.0,0.3329254890109985,13.005,5.551020408163265,2.52465483234714,105.1491359502972,1.0,3.8375661819458258,59.48918393475073,,44.19477744678037,43.33557499098967,42.68156997654284,44.20237315376965,57.72995915809385,43.83255191524615,44.246369981716555,53.71613196440696,0.020640304434149444,-0.0797966836504424,-0.8471342555640581,0.4097481343283584,0.22322003865979378,0.04404572174483324,0.02265875765911435,0.06987950334685623,-0.06541107767949364,-0.13718807763401125,-0.08401218979950122,0.06511753549256034,0.01783003075485649,0.36384768645229254,0.4750073186267331,0.07330992098331861,0.07830503335354765,0.022813956691994847,0.012261147454976716,-0.06132635373841018,0.30607586403453385,0.17940632815048382,0.40526750767588227,-0.08018924675875531,0.011865368251867209,-0.09720942628177151,-0.17201591371582703,-0.05010660980810238,-0.02853460972017672,-0.005489657128034181,0.014175344213482698,0.05735392677468453,-0.08234744247190909,-0.07235278584631635,-0.109581934376187,0.05151324354642133,-0.07405056979411262,-0.07517553160283325,-0.040480290982902525,-0.39276221631568187,-0.14286470837452336,-0.07646255706986067,-0.075079046440242,-0.113203482261222,-0.06823533010812216,0.02861266553566456,-0.07322625157455057,-0.09128853730164052,-0.1247303325397303,-0.08231050114945308,0.12655279246150278,-0.3225431285132778,-0.21902195742401925,-0.2350948042435946,-0.12731317705569128,-0.23720514256493092,-0.07721325227288936,0.013923230189403899,-0.09327903818367922,-0.19528594221285894,-0.3677249192198387,-0.34124201820583605,-0.1503058714880827,-0.010645302897278244,-0.32828608247422675,-0.08472153440230093,-0.36466677782377754,-0.1721264781341403,-0.3671123923729466,-0.3108350549092097,-0.2895718920887787,-0.25663195979876463,0.16757415317971255,0.038216457424004924,-0.0032890275947601412,0.3458276797829038,0.23228092783505153,0.1488714623333193,0.17014444062615222,0.20973398857585748,0.05597385172112543,-0.05188203663249873,0.010597549646025214,0.2077483638426743,0.6385720403316854,0.41248773563365737,0.1634947459207149,0.46839332748024615,0.6646452395391145,0.19801740273625443,0.6380677798890273,0.4206084931161998,0.47464593586513715,0.2473632706317279,0.2974534117794079,0.5365060832708345,14.076204298872893,17.819132458239686,4.6895413968619115,12.803600600675843,22.560961663780716,30.25572111301142,32.50295561956024,33.43808895289357,33.50528895289357,37.24313837980663,31.5521313191784,3.968688326576028,1.7223187340521995,0.0,5.691007060628228,1866.1259942933566,1264.7892194621243,760.5731432822952,80.0,28.0,39.0,54.0,70.0,73.0,78.0,84.0,82.0,236.094963004,20.0,4.574710978503383,5.442417710521793,6.336825731146441,7.227662498728654,8.128290171607052,9.025335217553026,9.92695990872127,10.825979020051888,11.727641605200054,0.688888888888889,0.9805333333333331,1.109420015452519,0.6557155940387976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7196310578842319,0.969542483660131,0.9994658897790726,0.6827231019743536,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,5.733667477162185,0.0,0.0,0.0,0.0,4.899909730850478,4.794537184071822,0.0,0.0,48.55024262443742,23.259637120317212,0.0,11.374772549367124,184.58714509298804,-256.87951513446086,-16.784224170516968,-8.56265050448203,-17.12530100896406,234.52301351744995,326.3724457620621,21.131652025706792,10.879081525402071,21.758163050804143,0.42857142857142855,0.8992892167418862,0.25213628178932534,11.029886895706017,0.2324030385227027,26.835181162708693,0.10071078325811376,4.0,0.0,0.29607214641168594,0.5079126622293351,0.638472471096714,0.7962049529094939,0.8369639623275951,0.8505502988002954,3.3872000000000018,,0.5357142857142858,0.6570497906002791,0.6236333567935969,0.5342659360630688,-2.118657900702788,0.5810893512851898,0.5290207864431083,-1.0376437345448832,73.53440000000003,4.794537184071822,0.0,0.0,5.733667477162185,0.0,4.899909730850478,59.65783953108687,0.0,0.0,3.713572066704308,0.0,5.030437921392435,0.0,6.561030665896573,2.70805020110221,8.19118600464279,5.37989735354046,9.872048483700748,20.66666666666667,15.406878306878307,0.0,0.0,0.0,0.0,0.0,3.5809259259259267,0.0,29.415999999999993,0.0,11.75297052154195,0.0,0.0,0.0,3.994259259259259,0.0,-0.4735185185185171,33.28260046357557,10.633577208012664,16.169309733438947,0.0,6.031114512338072,0.0,0.0,11.126902983393991,48.53093654769288,0.0,12.152040213667762,0.0,19.67146782116393,21.588931736526956,23.668755653219442,118.97836786950148,,88.33003108403693,86.59814444969044,85.29384735788639,88.34538342575449,116.63695048324479,87.60053834701617,88.43395987605055,108.00873267022774,23.668755653219442,118.97836786950148,,87.85384060784645,86.0141001913791,84.73950659629207,87.87048037147619,117.5785762168905,87.08401447920706,87.96371917699003,108.4699076633588,4.856592091176619,80.78983775510804,,60.62236700866741,59.42482588577224,58.462274853093504,60.63280307066908,78.24086886086707,60.11473417333126,60.69460815667914,73.62238060286428,1.3149308696233024,6.609909326083415,,4.907223949113163,4.811008024982802,4.738547075438133,4.90807685698636,6.479830582402489,4.866696574834232,4.912997770891697,6.000485148345986,2.4617906568975365,59.48918393475073,,44.19477744678037,43.33557499098967,42.68156997654284,44.20237315376965,57.72995915809385,43.83255191524615,44.246369981716555,53.71613196440696,29.08627450980393,0.0,0.0,0.0,0.0,5.525521541950114,0.0,29.983976693372178,0.0,0.0,0.0,0.0,0.0,1.546296296296296,0.0,0.0,0.0,20.481693059230608,376.9012462653485,43.58380892547391,74.7681559705083,93.98743691938193,117.20671786825558,123.20671786825557,125.20671786825557,626.0,111.21582284203356,42.20891234508951,59.45622269697952,46.330000000000005,46.330000000000005,0.75,8.645737560107712,5.321928094887363,3.8916503382986587,4.1898183971976,,4.1960746836020135,4.195786252626612,4.195170742972324,4.196075731419722,4.182602457691776,4.195963410930117,4.196087676838568,4.190553900347429,0.2162027965721477,0.2327676887332,,0.23311526020011186,0.233099236257034,0.2330650412762402,0.23311531841220676,0.23236680320509867,0.23310907838500652,0.2331159820465871,0.23280855001930162,1.9466199840539136,2.020444055939262,,2.021936154038978,2.02186741339189,2.0217207055358695,2.021936403752736,2.018720315239265,2.0219096354100947,2.0219392505559415,2.020619585886048,181.05999999999975,96.73886634540021,91.25952396916858,,90.60790870359898,90.63802692805902,90.73628691545875,90.60787490522634,91.25551163622885,90.62259317187915,90.60606001600746,90.78813280603265,5.374381463633345,5.069973553842699,,5.033772705755499,5.035445940447723,5.040904828636597,5.03377082806813,5.069750646457158,5.034588509548842,5.033670000889304,5.043785155890703,5.1598019136568665,5.101494024183175,,5.094328166675486,5.094660513159641,5.095744018259459,5.0943277936575075,5.101450057033542,5.094490219620883,5.094307763308079,5.096315245999101,0.0,13.299266817838246,0.0,9.106447467876041,0.0,14.93335978835979,3.994259259259259,0.0,0.0,218.81893702737196,77.36234765737015,-107.66081433177631,-7.0344388542585135,-3.5886938110592106,-7.177387622118421,98.29097739309636,136.78600750941442,8.856490032194557,4.5595335836471484,9.119067167294297,521.0,33.0,1.0499433047536864,0.40437243864721495,0.0,0.0,0.33791571692436834,0.08848416642695692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.24615119001767477,0.066237164611226,12.535169427003234,9.706314847049708,8.770856947829097,5.729003813978892,7.8155001068013945,4.124612648148247,6.602566739789702,3.0181515613437853,5.937393844682304,2.2109625427574158,5.1140725410010965,1.558353734080665,3.424273061614778,0.8598957850756069,2.423543512804001,0.5074413323718456,2.683734122398969,0.9441696604599001,4.868113744134553,1.4006273102185072,8.401832342202434,1.9336356954502694,56.300190236856224,48.334166605116366,35.31350392610094,30.092368526624742,28.421108129552394,28.227315423178492,96.0,115.0,36.053515999999995,14.046483999999998,0.5,94.03,5.166666666666666,3.972222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,30.0,0.0,0.0,32.0,12.0,2.0,8.0,24.0,14.0,20.0,18.0,0.0,0.0,0.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,1.0,1.0,1.0,18.0,3.0,0.0,2.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,2.0,3.367295829986474,7.493830410601978,3.9512437185814275,4.548599834499697,5.169062530690774,5.745004389197783,6.008198746099147,6.41376628698589,6.821448199371417,7.1560303709339514 +3000226,CC(=O)O[C@H]1C[C@@]2(C)[C@@H](C[C@@H](O)[C@H]3[C@@]4(C)CC[C@@H](O)[C@@H](C)[C@@H]4CC[C@@]32C)/C1=C(\CCC=C(C)C)C(=O)O,0,18.211764705882352,5.877294117647058,3.011764705882353,4.964705882352941,163.7574123619877,71.2560803411765,1.3136063933264939,5.939989411764706,4.085539215686274,7.4865007529411765,187.286921749412,20.65909090909091,6.114772727272728,3.852272727272727,4.613636363636363,144.3600514436813,76.1257255909091,1.7400327034999998,6.262960227272725,2.614820075757576,7.588422272727271,244.36764660009501,17.377906976744185,5.921279069767443,3.7267441860465116,3.4593023255813953,151.4716321942272,63.56567269767441,1.5048258939454708,6.0403558139534885,2.488089470284237,7.461268000000001,205.52562668712122,15.146153846153846,5.905307692307693,3.2384615384615385,2.5307692307692307,152.4166090154989,53.20028999230769,1.4223768253660307,6.018146153846152,2.259642094017094,7.46540803076923,188.68316243157835,12.517615176151761,5.752411924119239,2.6720867208672088,1.962059620596206,156.82096294549598,42.75444213550134,1.2412733667229512,5.848436314363146,2.144421860885276,7.357848021680215,158.31097880198374,10.73589164785553,5.747968397291198,2.270880361173815,1.7878103837471784,162.46978580489156,35.75734464785553,1.0669516713292548,5.815681038374718,2.2892212189616252,7.398851783295709,133.1244860318075,10.232779097387173,5.734560570071262,2.1496437054631827,1.7102137767220902,165.18771794620199,34.16636741330166,1.0098466953535388,5.79089216152019,2.3213908683029825,7.407632123515438,126.15467847754458,11.745762711864407,5.8747740112994355,2.1779661016949152,1.926553672316384,162.82421134629715,39.873862454802264,1.0567356275980002,5.934838983050849,3.0396657250470813,7.516344870056496,135.2011047232163,10.036253776435045,5.938368580060424,1.9667673716012084,1.3685800604229608,165.82986377915645,32.07689298489426,0.9865562773501506,5.981093957703929,2.8259063444108765,7.611401111782477,123.90903142250535,7.204982698961936,0.11164567474048434,0.016090448034883496,0.7440830449826988,3.2285121107266437,1.2690447085340368,34.30126719778548,0.22739946138627318,0.10691202768166082,1.6403018069973085,0.07106695972318339,50.578526724938015,0.14822585718779416,-0.005402359232462853,-0.009566192509604455,0.38733406731676623,1.1541082101289712,0.10395438309562716,0.7789865728027556,0.018352548389405997,-0.004545410034601904,-0.13459120836391594,-0.003805236728531018,3.3238220923140616,1.1298326225154907,0.017489072181540263,0.0018509284813725659,0.05844773477106305,0.23133741047718678,0.17767856123418577,5.3703576939381925,0.032251786000259304,0.01688256876156762,0.2618485008002288,0.010916684326064203,7.509953867453941,-0.7455256853872771,-0.009843864785733214,-0.0005717774333142185,-0.07720521692840032,-0.37520894330582905,-0.050839869299036555,-3.5260515643013104,-0.010931741492161327,-0.010172566143199276,-0.09505608050158221,-0.005207946872504668,-3.8004492381636346,-0.4633598709689521,-0.0010794384898866348,-0.0003829924912795621,-0.0757584793841018,-0.06543224463386502,-0.17574687169847725,-2.277155542086441,-0.030649057177517553,-0.0013297735767668999,-0.021706460096127304,-0.0007210298012959255,-5.705922169195044,-0.09538238027916002,0.002062464948799851,0.0006562011917382997,-0.02327571527880838,0.13321939903301647,-0.09313367565011994,-0.5041868792089166,-0.01578133188524472,0.0019378939754895372,-0.015842903797202514,0.0010762784125223617,-2.523967227400208,0.43531351453533795,-0.0014833162103740658,-0.001269237392048597,-0.03593717380762562,0.0943885459730909,0.07141017948575606,2.115043923187008,0.014206040493759637,-0.00020022944217510408,-0.055477703167336516,-0.00221980611133485,3.7406513174726657,0.1944190956542139,0.013708928117608012,0.002419780074616153,-0.046475866518092775,-0.07058588939065155,-0.11144229551061524,0.8085607449197502,-0.018864249759404088,0.01248836115183863,0.27174861580834836,0.008860252772662383,-2.552183327699396,-1.1982295445279583,-0.024025273105510076,-0.0019339093724897885,0.007969558536049925,-0.5894149008457125,0.03861907645239731,-5.573940689308482,0.0029791093219158553,-0.023768700864529136,-0.29480563773403434,-0.013609405502461902,-2.9334170816898113,,,0.47297297297297297,0.722972972972973,0.13513513513513514,0.0,0.5878378378378378,-0.4527027027027027,1.8759720313140176,0.033652229243224106,0.0429495265405214,0.5309729827482144,0.09479993683578328,0.3692292815526979,2.406945014062232,0.4640292183884812,2.0061967369183504,1.717159423020481,0.0,0.2890373138978693,0.0,0.2890373138978693,6.074648108894133,1548.0,499.57,256.0,422.0,13919.380050768954,6056.766829000002,111.65654343275199,504.8991,347.2708333333333,636.352564,15919.388348700018,1818.0,538.1,339.0,406.0,12703.684527043955,6699.063852,153.122877908,551.1404999999997,230.10416666666669,667.7811599999999,21504.35290080836,2989.0,1018.4600000000002,641.0,595.0,26053.120737407076,10933.295703999998,258.830053758621,1038.9412,427.95138888888874,1283.3380960000002,35350.40779018485,3938.0,1535.38,842.0,658.0,39628.318344029714,13832.075397999999,369.817974595168,1564.7179999999994,587.5069444444445,1941.0060879999999,49057.62223221037,4619.0,2122.6399999999994,986.0,724.0,57866.935326888015,15776.389147999995,458.02987232076896,2158.073000000001,791.2916666666667,2715.045919999999,58416.751177932,4756.0,2546.350000000001,1006.0,792.0,71974.11511156696,15840.503679,472.6595903988599,2576.3467,1014.125,3277.691339999999,58974.147312090725,4308.0,2414.2500000000014,905.0,720.0,69544.02925535104,14384.040680999999,425.14545874383987,2437.9656,977.3055555555557,3118.6131239999995,53111.119639046265,4158.0,2079.67,771.0,682.0,57639.77081658919,14115.347309,374.0844121696921,2100.9330000000004,1076.0416666666667,2660.786084,47861.19107201857,3322.0,1965.6000000000004,651.0,453.0,54889.68491090079,10617.451578,326.55012780289985,1979.7421000000004,935.3750000000001,2519.373768,41013.88940084927,612.4235294117645,9.48988235294117,1.367688082965097,63.2470588235294,274.4235294117647,107.86880022539313,2915.6077118117655,19.32895421783322,9.08752235294117,139.42565359477123,6.040691576470588,4299.1747716197315,13.043875432525887,-0.475407612456731,-0.841824940845192,34.085397923875426,101.56152249134948,9.14798571241519,68.55081840664249,1.6150242582677277,-0.3999960830449676,-11.844026336024603,-0.3348608321107296,292.4963441236374,194.3312110726644,3.008120415224925,0.31835969879608134,10.053010380622844,39.790034602076126,30.560712532279954,923.7015233573691,5.547307192044601,2.90380182698963,45.037942137639355,1.877669704083043,1291.7120652020778,-193.83667820069206,-2.5594048442906354,-0.1486621326616968,-20.073356401384082,-97.55432525951555,-13.218366017749505,-916.7734067183407,-2.8422527879619452,-2.644867197231812,-24.714580930411373,-1.3540661868512136,-988.1168019225449,-170.9797923875433,-0.3983128027681682,-0.1413242292821584,-27.954878892733564,-24.14449826989619,-64.85059565673811,-840.2703950298967,-11.309502098503977,-0.49068644982698606,-8.009683775470975,-0.2660599966781965,-2105.485280432971,-42.254394463667886,0.9136719723183341,0.2906971279400668,-10.311141868512113,59.01619377162629,-41.258218313003134,-223.35478748955006,-6.991130025163412,0.858487031141865,-7.018406382160714,0.4767913367474062,-1118.117481738292,183.26698961937728,-0.6244761245674817,-0.5343489420524593,-15.129550173010387,39.73757785467127,30.063685563503302,890.4334916617305,5.980743047872807,-0.08429659515571881,-23.356113033448672,-0.9345383728719718,1574.8142046559922,68.82435986159172,4.8529605536332365,0.8566021464141181,-16.45245674740484,-24.98740484429065,-39.450572610757796,286.23050370159154,-6.677944414829047,4.420879847750875,96.19900999615533,3.1365294815224836,-903.4728980055862,-396.61397923875415,-7.952365397923836,-0.64012400229412,2.6379238754325254,-195.0963321799308,12.782914305743509,-1844.9743681611073,0.986085185554148,-7.867439986159144,-97.58066608996538,-4.50471322131489,-970.9610540393276,0.743223541679486,0.6443795151594823,0.4292270270093452,0.35749646974613,0.27440424717383366,0.21321504743239564,0.155934745078706,0.1257418349254284,0.09364532828961954,0.07251117084819646,0.05580954182545209,0.04055873382071133,0.034342073794707696,0.024100946422188258,0.021422116535317132,0.013855523729010598,8.031439214603102,5.714795788047784,3.557965193751586,2.2137644854038485,0.45297502852211463,-0.48998580441129586,4.118954138001336,0.9714972005248143,6.028729509703248,0.9917127202723791,13.645316117903445,10.975260847349341,16.01671109805648,11.726347004471982,1.9808923017923854,0.7403265521277427,3.5041546784974518,2.2635239620864493,7.009383619040577,1.0554439431307343,3.71705170164934,2.459566904023964,20.888027189815077,14.699771051095878,0.19410213160120088,0.4545584416765465,0.7226655193018353,0.8354319991413877,0.8755844814391154,0.8791913164662373,1.7215553835038253,993.6572721139337,0.0,2.0,7.0,0.0,1.0,11.0,3.0,4.0,3.0,5.143153654834536,3.4440507792120223,1.695037647466064,0.9593985296662897,0.6974613237075804,0.6739319119428746,342.69818328961713,2289.0978833083227,69.20706077267417,26.930563333039096,50.960086605670064,,15.0,866.0,24.146543351400304,24.90865655266576,40.10265593442282,37.174297067934695,36.82949555184257,6.923737199690624,0.0,19.92349450621513,27.694948798762496,4.736862953800049,17.5,26.75,5.0,0.0,21.75,0.0,0.02702702702702703,-16.75,0.08728291316526582,0.010257766027759518,-0.0770251471375063,0.03932432432432431,0.14022950819672086,0.0,0.5282352941176455,0.8243243243243238,0.44095238095237965,0.517977528089886,0.7849999999999995,69.41096515861865,1.245132481999292,1.5891324819992918,19.64600036168393,3.507597662923981,13.661483417449823,89.05696552030258,17.169081080373804,0.5737704918032791,0.2952380952380952,0.08571428571428572,0.34285714285714286,0.8064516129032258,0.26929746451615866,-0.8299791629451473,-0.05330284312717734,-0.009764460740531142,-0.027665972098171572,0.7307025354838412,2.2520370915946204,0.039876783565777826,0.02649455401876025,0.04094612893808402,-4.30321446308389,1.0131135001466955,0.8107198885613051,1.5317352669756352,1.0036399147727275,0.6069748544347704,1.2606702649295096,1.0203960555093803,1.2498630104729718,0.8229815945314405,0.7958311647978641,0.8076363039598021,1.1792249258155514,0.8321304695122607,0.5637705590113685,0.6131968456100061,1.7373728197674423,1.0072700589620525,1.0663906127423413,0.8403817250609871,1.0621635399088531,0.5869532921769777,0.4539699582366425,0.5429117087885936,1.0055871202075168,1.0988624676384016,0.8766421394731423,0.8005522949249857,1.6856971153846156,1.1384424115711091,1.2217948057967996,1.1046329609744125,1.2259320565557983,0.9010739871632647,0.7521320768919755,0.8466913070145796,1.2071189869712735,1.0221949845132388,0.7335497484698146,0.7441809550082773,1.3263253726287265,0.8992094379487909,1.2308510119240466,1.030422503643982,1.2309601736872444,0.7616760321078551,0.6743110592534991,0.7033856556140522,1.1871975815310023,0.9944872703506314,0.9407000899307758,0.8917801058350698,1.0043383182844245,0.9079241737825761,1.059210424713609,0.9964067074874803,1.0564529680475365,0.9440372728917152,0.8775325226629456,0.9396903280611595,1.0381013020142997,0.9298208726067708,1.0693323797280676,1.1993544889892676,0.9921503859857485,0.9942673533840192,0.8818141888144514,0.9266341813421807,0.8760810760661975,1.051844596516087,1.0158410564664602,1.093340991069638,0.8763814115075873,0.9982844420480684,1.0443057789835892,1.1225054549932507,1.0054731638418082,1.1262437928433682,1.0669477361869273,0.9984963768846583,1.0559733457534457,1.0323111716387052,1.1060795650865953,1.0673036221734982,1.0227297251553045,1.239205211027678,1.6725652162579303,1.4805286473659431,0.7964737537764351,1.366798145191769,0.8956456503528172,1.2263999326652075,0.8987379693447644,1.6325694621879934,1.8065300750695725,1.7124470542017316,0.9763942636951748,11.5,0.2889501071319253,7.77777777777778,6.069444444444445,4.775000000000001,2.976666666666666,2.0368707482993194,1.119862528344671,0.7485670194003525,0.5496913580246914,8008.334335012034,9640.613965240113,3373.847618751223,2883.504638296963,14.944450137649284,0.4471976811755178,8.261326689649376,0.8089649155713935,0.0,0.8064516129032258,1.2662372813031657,2.9653401569256794,4.714353288671638,5.449992406471412,5.711929612430121,5.735459024194827,0.2875,0.008255717346626437,0.12152777777777782,0.0778133903133903,0.05684523809523811,0.03767932489451477,0.0279023390177989,0.016229891715140162,0.014971340388007051,0.012783519954062591,0.6615085395025562,29.97,10.7666015625,4.916824196597354,222.1042744674248,0.0,4.5514984447102,215.0350025324514,,196.54624175453824,195.78985937904622,198.18795754350697,196.56183899353675,227.20451124745813,196.36116370625896,196.57821024408693,210.9442761810729,0.02057268745546744,-0.04838843282572664,-0.5945261740919398,0.5205522017045455,0.35747371251744053,0.08191546160395893,0.022710139783204502,0.08070620870218928,-0.042515422569069865,-0.08205270992799484,-0.05354438607410523,0.06571607177073494,0.1568126766880748,0.1566480047005213,0.1150327497009295,0.07855001557308977,0.07165449672887225,0.14000969393697313,0.15656441095811494,0.1418287704097709,0.15791084621308304,0.15963434270645685,0.1536112473164231,0.1484810719832833,-0.10347362603586674,-0.08817058796603505,-0.03553520896836596,-0.10375887133699635,-0.11621729466623573,-0.04006152734978524,-0.10279653938059045,-0.048072855694200924,-0.09514894033708642,-0.057950360169138175,-0.07328225229826087,-0.07513957966454175,-0.06431103173026509,-0.00966843088543953,-0.023802475260430823,-0.10181454865143891,-0.020266996805267716,-0.13848753358854857,-0.06638692177044282,-0.1347806938093639,-0.012438016616113651,-0.013233211110010634,-0.010145780881923838,-0.11281313511217217,-0.013238391300079363,0.018473308111523028,0.040782033559020846,-0.03128107196603248,0.04126340384178787,-0.07338880578739045,-0.014698782884658774,-0.06939916123388562,0.018126061375056627,-0.009658529747159212,0.015144568118780226,-0.049901952287506074,0.060418398311776124,-0.013285926336349094,-0.07888142016287784,-0.048297262046148655,0.029235927491022114,0.05627081457850843,0.0616608101091833,0.06247174204880142,-0.0018728429954701015,-0.03382164363330945,-0.03123541685167527,0.07395730084854997,0.026983978140880892,0.12278960335430672,0.15038612159028508,-0.062460590698143664,-0.021863287783908832,-0.0878158939249273,0.023572328691458713,-0.08295643993351523,0.11680969319021554,0.16566988748601325,0.12467471251302172,-0.050459819471986085,-0.16630567963759224,-0.2151921528653556,-0.12018990200255111,0.01071057671558049,-0.18256549166639255,0.030431612214047946,-0.16249955598341104,0.01310077562961056,-0.22232017650345537,-0.17972646038456633,-0.19150116390897548,-0.057997282080647757,7.978959327774674,26.10682341282292,15.767177778569405,11.162822950532451,29.11945492277327,35.509473203634585,37.38429187186269,38.00105398723378,38.024771634292605,74.22927926597897,63.53489865175779,0.0,10.694380614221163,0.0,10.694380614221163,10552.182332895485,8305.605737410733,3420.079004638159,491.0,64.0,92.0,135.0,187.0,242.0,309.0,368.0,436.0,516.3450892560013,40.0,5.342334251964811,6.255750041753367,7.226209010100671,8.178919332848396,9.162514742493578,10.134242066851673,11.124863047789864,12.106865381949605,13.101538027305427,0.5529411764705883,0.960470588235294,1.1320384463688413,0.5061233085358029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6240793518844663,0.947128027681661,0.9916713079988005,0.5681489637336721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,7.0,0.0,0.0,0.0,3.0,8.0,0.0,1.0,0.0,7.0,0.0,3.0,0.0,0.0,20.056445138322168,6.103966387748303,0.0,0.0,0.0,4.794537184071822,4.794537184071822,0.0,0.0,39.34407343566564,110.70374750569452,12.496841729759891,12.207932775496605,200.01460248505083,-616.4482560042369,-39.58948146266593,-7.252332423579256,-20.548275200141227,542.712785774668,1672.6496273040857,29.617579310008242,19.678230909459838,30.411811405528837,0.4666666666666667,0.7782836810920839,0.15505207299379137,109.35928607832494,0.10745284295529985,52.763760192967936,0.22171631890791604,8.0,0.125,0.19755968919976663,0.46265552943671634,0.7355384209895779,0.8503136196207087,0.8911813414633325,0.8948524253462083,5.6661000000000055,,1.5,1.714285714285714,1.0388051152698072,1.4955934745921624,-6.493765586034913,1.552325581395349,1.4909688013136289,-2.393966868348154,142.55139999999994,29.64551950646581,0.0,0.0,39.91659559283591,118.14463254448735,0.0,22.795333697041684,0.0,0.0,4.394449154672439,0.0,5.820082930352362,2.3978952727983707,7.45298232946546,4.948759890378168,9.204825191288073,7.260522598089852,11.030217476012854,47.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.63999999999999,0.0,24.82587144206618,0.0,0.0,0.0,2.0479442328525366,0.0,0.8680746092096734,96.22326794135151,0.0,0.0,0.0,45.57009192367072,14.325937321943691,39.91659559283591,99.83273338124245,22.795333697041684,0.0,0.0,0.0,43.02048122554325,53.04674491017963,44.769832240433296,430.07000506490283,,393.01140242799545,391.48705466542833,396.31976345916144,393.042835096555,456.86612298692955,392.6384179216317,393.0758275799947,422.794377663683,44.769832240433296,430.07000506490283,,391.59248350907643,389.86543304380683,395.33710997174416,391.62808451248134,460.90278808095127,391.1700018311226,391.66545168686025,424.28251923049424,5.382190265064534,301.690042942919,,278.24654705166677,277.45191162446287,279.97226954452356,278.26293602453455,310.81336043930366,278.05208332275333,278.2801384272425,293.43761544670696,1.2099954659576566,11.62351365040278,,10.621929795351228,10.580731207173738,10.711344958355715,10.62277932693392,12.347733053700798,10.611849133017072,10.623671015675534,11.426875071991432,2.714342878053409,215.0350025324514,,196.54624175453824,195.78985937904622,198.18795754350697,196.56183899353675,227.20451124745813,196.36116370625896,196.57821024408693,210.9442761810729,80.50588235294119,0.0,14.457271618484466,0.0,0.0,0.0,32.87737237679315,84.29206117989804,5.618383783134952,0.0,5.872140425027782,0.0,-1.0022010872062936,0.0,-0.6481907336957842,0.0,0.0,48.292661917362125,578.0526057826834,107.63016891076909,252.05391333868275,400.7200295370892,463.24935455007,485.5140170565603,487.5140170565603,2401.0,159.6332359030574,164.6747824770354,89.50973484305757,104.06000000000002,104.06000000000002,0.875,8.164225652265827,6.321928094887363,4.672871950988574,5.963314811977616,,5.971529849709506,5.97168534205016,5.971031526750306,5.971526133992325,5.9419641201624795,5.971572389150417,5.971522212122627,5.9616336349414825,0.1262938365132047,0.16117067059398962,,0.16139269864079744,0.1613969011364908,0.16137923045271096,0.16139259821600876,0.1605936248692562,0.16139384835541667,0.16139249221953048,0.16112523337679682,2.850106681107426,3.0939593226249196,,3.095335970459417,3.0953620090659677,3.0952525171793743,3.0953353482204884,3.0903725583287893,3.0953430941430398,3.0953346914585658,3.09367736299134,422.23000000000195,1143.476384287779,270.44492557398326,,268.47217531399565,268.33434712054066,268.77861932686795,268.47504121670363,274.6825148481289,268.4382399381654,268.4780503404234,271.3471907215592,30.904767142912945,7.309322312810358,,7.256004738216099,7.2522796519065045,7.264287008834269,7.256082195046044,7.423851752652133,7.255087565896362,7.2561635227141466,7.333707857339437,8.350161180768387,6.908401294892656,,6.901080098113654,6.900566586482467,6.902220883940917,6.901090772916017,6.923948758916768,6.900953688288435,6.901101981059772,6.911731967135885,5.872140425027782,24.82587144206618,32.87737237679315,1.5690634809980577,-0.909461639072203,0.0,6.22440896236923,14.457271618484466,0.0,537.501691014327,148.55632331752767,-457.85300317928545,-29.40419216932242,-5.3865059197562974,-15.261766772642844,403.08764995357546,1242.3226891611555,21.997787327497505,14.615561048954778,22.58768525747556,3804.0,78.0,4.493947707988715,3.326589213468888,0.3219752754296894,0.3219752754296894,1.9101720986569664,1.6005690991842771,0.4987846933490612,0.49320241850674623,0.0,0.0,0.0,0.0,0.06804138174397717,0.05892556509887896,0.36137070751794675,0.30737393805178304,1.0852974738447958,0.8877399051701316,27.499271042140983,23.842042060900848,17.169081080373807,14.2998587898452,17.561871819125354,13.64576303567332,14.34599654724095,11.568248813139412,12.642119319098637,9.789008064506522,10.436384321359542,7.584483224473019,8.310781858319263,5.832429034169558,6.619434009412994,4.281356832264275,10.418296416670659,8.388454946456092,18.776826421648146,14.831536346769953,33.962223403683424,25.544183112647776,134.01847901975236,58.69237011748507,36.85824516045051,28.219915329158486,25.41072312570367,25.30697275073572,208.0,260.0,88.58806399999996,51.62593600000006,0.2,268.06,16.020833333333336,7.798611111111108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,85.0,0.0,0.0,88.0,0.0,4.0,4.0,84.0,4.0,40.0,84.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,48.0,5.0,3.0,0.0,37.0,6.0,0.0,0.0,6.0,0.0,4.0,5.0,0.0,0.0,0.0,0.0,0.0,3.8066624897703196,6.71174039505618,4.330733340286331,4.709530201312334,5.117993812416755,5.497168225293202,5.817111159963204,6.124683390894205,6.29156913955832,6.532334292222349 +62960,NC1[C@@H]2CN(c3nc4c(cc3F)c(=O)c(C(=O)O)cn4-c3ccc(F)cc3F)C[C@H]12,0,30.355555555555554,7.166213333333331,4.2,12.622222222222222,169.36950867402746,123.02287892109584,1.5588345016163325,7.16974222222222,9.591358024691358,8.454421599999996,246.44789427281773,29.836734693877553,6.776183673469388,5.040816326530612,10.693877551020408,149.9702584001744,116.44637921440007,1.871325189918368,6.904948979591839,3.9999999999999996,8.095926938775504,291.80344722942255,27.289156626506024,6.765889156626506,4.542168674698795,9.542168674698795,155.55248415195956,105.61413991579761,1.6768655416210485,6.866551807228914,4.357764390896921,8.108163277108433,258.65275639356923,23.36936936936937,6.751675675675673,3.7927927927927927,8.207207207207206,162.83193058136882,88.78807624996033,1.4113452893557654,6.816798198198198,4.34934934934935,8.138952828828831,214.6445428085401,23.580357142857142,6.937230357142856,3.4910714285714284,8.642857142857142,169.06837276609852,90.19905442573724,1.3236634887360093,6.965193749999999,5.534722222222226,8.329733071428569,205.24911650377385,24.388349514563107,6.897524271844659,3.737864077669903,8.78640776699029,164.7769807369067,93.43052345042328,1.4355674399547478,6.950818446601939,4.981661272923407,8.269773165048543,222.29224645881072,25.535353535353536,6.939261616161615,3.7373737373737375,8.95959595959596,162.24950925150955,98.11171308286058,1.4429148766458886,7.002160606060606,5.017957351290684,8.306912484848487,227.45544180070243,25.51,7.24625,3.35,8.82,166.39453942956348,97.68654129729593,1.3437037503139602,7.268440999999997,7.394444444444443,8.581105560000003,211.75309119850425,20.347368421052632,6.92800947368421,3.0,6.157894736842105,168.02404418066726,75.34244708378283,1.2227549687767578,6.954265263157897,5.225730994152047,8.358643705263157,185.00762202374375,7.74024691358025,0.28083733333333327,0.02938057252907578,0.798024691358025,5.029135802469137,2.9929925228452072,37.41506453188298,0.22973833054422219,0.24465758024691356,4.284307270233198,0.16795570172839508,43.12444518292922,-0.05317208364827423,-0.024474612244897925,-0.014354320311200229,0.19925422020660094,0.9100932224741753,-0.2010228718599579,-0.1596317072120109,0.011671668944662249,-0.020004382968002023,-0.2368645894571818,-0.015179299007306619,2.8542171595894046,0.22896326044920423,0.0010906987951807296,0.001527052041354262,-0.10030046110367401,0.4359244384947195,-0.26725205285429954,1.1023604715256705,-0.011605786796655875,0.0026023929793246954,0.3389784653015355,0.0013264883653131135,-0.6026402024956719,0.09999332665999339,-0.004202378378378376,-0.0031282309427053973,-0.05007674341007676,0.43372706039372705,-0.3237686519740684,0.359920513922211,-0.033744010499846815,-0.0019494721388054847,-0.10493901308716118,-0.005030778405071732,-3.8630597089857512,1.145268959435626,0.02153778571428571,0.004344505120698215,0.12459435626102293,0.809753086419753,0.21566914861840072,5.645999448623108,0.040386908698227156,0.020570852292768945,0.32426856750930816,0.013848110970017629,8.838091450206905,0.3715114467218026,-0.005328077669902911,-0.0024171582655848284,-0.005144432458348332,0.167196452115546,0.19485799850828245,1.6522657616723406,0.015516839459098196,-0.003891776579168167,-0.2158786474356413,-0.003664095255903151,3.838090507244802,0.11474747474747478,-0.021600767676767663,-0.001682501524779248,-0.18253647586980926,-0.20332210998877664,-0.4701406838841868,0.5744154867920379,-0.028014862859259224,-0.015480363636363641,-0.3015039281705948,-0.015515837306397311,-1.5055203598855098,-0.4764691358024692,0.04205799999999999,0.0030509969202949278,-0.09091358024691357,-0.39580246913580247,0.07418606185508132,-2.3599081066371195,-0.03326558871707555,0.033651508641975324,0.8834951989026066,0.028840479604938254,-8.65581184422658,-1.539311241065627,-0.033048210526315784,-0.0014320646265079692,-0.08270305393112411,-1.158024691358024,-0.11138961967762213,-7.196253832229813,-0.02001836972983979,-0.03132976738141648,-0.6947426178615264,-0.020416191085120213,-6.591504000217966,,,0.44857142857142857,1.325,0.6333333333333333,0.06666666666666667,0.6916666666666667,-0.058333333333333334,0.8102227180177561,0.02190952038505441,0.036242853718387744,1.1730694016717824,0.2562710513358389,0.21895988035820987,1.9832921196895386,0.4752309316940488,2.0507157838945878,1.4189823231353602,0.2797333786585464,0.17415190669586528,0.1778481754048157,0.6317334607592272,9.246880555555565,1366.0,322.4795999999999,189.0,568.0,7621.627890331236,5536.029551449313,70.14755257273497,322.6383999999999,431.61111111111114,380.44897199999986,11090.155242276798,1462.0,332.033,247.0,524.0,7348.542661608546,5705.872581505603,91.69493430600004,338.3425000000001,195.99999999999997,396.7004199999997,14298.368914241706,2265.0,561.5688,377.0,792.0,12910.856184612643,8765.973613011201,139.17983995454702,569.9237999999999,361.6944444444444,672.977552,21468.178780666247,2594.0,749.4359999999997,421.0,911.0,18074.34429453194,9855.476463745596,156.65932711848995,756.6646,482.77777777777777,903.4237640000002,23825.544251747953,2641.0,776.9697999999999,391.0,968.0,18935.657749803035,10102.294095682571,148.25031073843303,780.1016999999999,619.8888888888893,932.9301039999998,22987.90104842267,2512.0,710.4449999999999,385.0,905.0,16972.02901590139,9623.343915393598,147.86344631533902,715.9342999999998,513.111111111111,851.7866359999999,22896.101385257505,2528.0,686.9868999999999,370.0,887.0,16062.701415899444,9713.059595203196,142.84857278794297,693.2139,496.7777777777777,822.3843360000002,22518.08873826954,2551.0,724.625,335.0,882.0,16639.45394295635,9768.654129729593,134.370375031396,726.8440999999997,739.4444444444443,858.1105560000002,21175.309119850426,1933.0,658.1609,285.0,585.0,15962.28419716339,7157.5324729593685,116.16172203379199,660.6552000000001,496.44444444444446,794.071152,17575.724092255656,348.31111111111125,12.637679999999996,1.32212576380841,35.911111111111126,226.31111111111113,134.68466352803432,1683.6779039347343,10.338224874489999,11.00959111111111,192.7938271604939,7.558006577777778,1940.600033231815,-2.605432098765437,-1.1992559999999983,-0.7033616952488112,9.763456790123445,44.59456790123459,-9.850120721137937,-7.821953653388533,0.5719117782884502,-0.9802147654320992,-11.606364883401909,-0.7437856513580243,139.85664081988082,19.00395061728395,0.09052800000000055,0.12674531943240375,-8.324938271604942,36.18172839506172,-22.18192038690686,91.49591913663065,-0.9632803041224376,0.2159986172839497,28.13521262002745,0.11009853432098843,-50.01913680714076,11.099259259259266,-0.46646399999999977,-0.3472336346402991,-5.55851851851852,48.1437037037037,-35.93832036912159,39.95117704536543,-3.7455851654829964,-0.2163914074074088,-11.648230452674891,-0.5584164029629622,-428.7996276974184,128.27012345679012,2.4122319999999995,0.48658457351820006,13.954567901234569,90.69234567901233,24.15494464526088,632.3519382457881,4.523333774201442,2.303935456790122,36.318079561042516,1.5509884286419744,989.8662424231734,38.265679012345664,-0.5487919999999998,-0.2489673013552373,-0.5298765432098782,17.221234567901238,20.070373846353093,170.1833734522511,1.5982344642871142,-0.4008529876543212,-22.235500685871056,-0.3774018113580246,395.3233222462146,11.360000000000003,-2.1384759999999985,-0.16656765095314555,-18.071111111111115,-20.128888888888888,-46.54392770453449,56.86713319241176,-2.7734714230666633,-1.5325560000000005,-29.848888888888887,-1.5360678933333338,-149.04651562866547,-47.64691358024692,4.205799999999999,0.3050996920294928,-9.091358024691356,-39.58024691358025,7.418606185508132,-235.99081066371195,-3.326558871707555,3.365150864197532,88.34951989026067,2.8840479604938256,-865.581184422658,-146.23456790123456,-3.1395799999999996,-0.1360461395182571,-7.85679012345679,-110.0123456790123,-10.582013869374103,-683.6441140618322,-1.90174512433478,-2.976327901234566,-66.000548696845,-1.9395381530864202,-626.1928800207068,0.7105702762445589,0.5116536789011656,0.41932141031827846,0.2709229234710735,0.2657447227108145,0.14373201565247715,0.16406523931751016,0.07675704473988162,0.10162496664716829,0.03933498726072696,0.06082122481327796,0.01992033091817328,0.038817970812965334,0.009670560759328296,0.02414260897509599,0.004841046025768533,9.006266793912841,5.6858290776684575,4.110169271693956,2.1779830294873266,0.4991886660231605,-0.42994223732455084,3.2988057936408777,0.9726527860262558,7.006251127425724,1.9850701911951756,17.426859875621012,10.951949007661,19.00221818687537,11.70250022858056,2.0058830835358212,0.5449609158793876,3.9912037269770804,2.225812097134414,8.004008164024103,1.200499245474555,4.012620024848051,2.4209372579196566,20.89620390316374,13.303153782934416,0.32086024014449493,0.7145521812543363,0.8284177774420921,0.8843903709362817,0.8995643513508349,0.8995643513508349,1.3765112823255787,1280.507328661338,0.0,4.0,2.0,0.0,9.0,1.0,2.0,2.0,0.0,3.612259907471155,1.306019998514821,0.6389975000480765,0.31111111111111267,0.22222222222222232,0.22222222222222232,65.10063704827007,1754.169467357609,94.33550967637743,38.98154371905797,84.58274585891161,,13.0,665.0,34.41320969468707,27.86684690600881,40.41630340922186,19.15587988028676,28.96304442478926,0.0,4.899909730850478,0.0,4.9839785209472085,5.733667477162185,13.457142857142857,39.75,19.0,2.0,20.75,0.0,0.05142857142857142,-1.75,0.28127758420441357,0.09002506265664212,-0.19125252154777145,0.0583116883116882,0.2375204855842183,0.0,0.7276190476190474,0.9414285714285711,0.4463414634146338,0.6375939849624053,0.8831168831168829,24.306681540532683,0.6572856115516323,1.0872856115516323,35.19208205015347,7.688131540075167,6.568796410746296,59.49876359068616,14.256927950821463,0.4764795144157817,0.16772823779193202,0.0,0.5424628450106158,0.25,0.44654346286717744,-1.286414310937596,-0.1010483771854877,-0.028586984687502138,-0.08576095406250642,0.5534565371328225,1.594412345168295,0.0538763640953049,0.035431385448184326,0.05314707817227649,-3.956601682447388,0.604549845968756,0.6355044629090407,1.4444675636201825,0.7876591230551624,0.402732577712939,0.9814681948880074,0.5988011368298374,0.9281397106453111,0.6154103506798468,0.6000559070474111,0.6614405787362818,0.803116796371454,0.6826053736446357,0.6215650150214393,0.8451768967939096,1.1957234880114513,0.6242605930398735,0.9927576074877378,0.6800649652718735,1.0076172966783052,0.6079638805281883,0.5131200184793012,0.6201907647580102,0.9197755530449867,0.8768695964051326,0.8287036775651774,0.9613278763822074,1.0596735349210593,0.8083427103458524,1.048072610845985,0.8803554739441071,1.1096029374404033,0.822490062336693,0.7958680041695864,0.8284062793114173,1.0578193790585486,0.8374594414772413,0.8399842206571366,0.8385822411001083,0.7931289780763787,0.8393155229491638,0.8266061253342525,0.8294129971992098,0.7442768488501801,0.837484067283095,0.8141201592475259,0.829478618816728,0.7506730119510447,0.8732289327078047,0.9788021495649961,0.9905247839440615,0.9813875805056229,0.9249231614030001,0.9858641111500337,0.8809466427783053,0.9256884051836232,0.969907716905492,0.971425239087687,0.9713475618983215,0.872729605835394,0.8587469695036362,0.9777497838914173,1.0880767378825793,1.2314356435643559,0.9446190102120974,1.1402884040884254,0.8570751385292623,1.0897570671829675,0.9574136974710536,0.9613672893066857,1.0039242093394314,0.9589713932304171,1.0118540257751687,0.9911130840470717,0.9784008002982271,1.0598391089108905,1.0790455616653571,1.0818167935009717,1.0148529167401554,1.1345794095530426,0.989185510169315,0.9870014023808454,0.9948253951124134,1.1059126248279758,1.246616925112321,1.2359350433740501,1.0164123592611938,1.0704794163626885,1.2934220862446768,1.0518738303603148,1.2410086873274848,1.0911265462599125,1.2452889455110292,1.3459155531484137,1.254718647289395,1.1469212215209392,7.0,0.18906438118559332,5.500000000000002,2.5972222222222223,2.6855555555555557,1.8788888888888888,1.354285714285714,0.7561295351473922,0.5215576971529352,0.3381404320987655,6846.23199870773,7312.516949574684,3024.3373622899726,2863.1829520442316,14.099818887249343,0.4831292644643998,7.287783759171316,0.9347197108456212,1.0,0.25,1.87959318885852,4.185833097814854,4.852855596281598,5.180741985218562,5.2696308741074525,5.2696308741074525,0.20588235294117643,0.01112143418738784,0.11000000000000004,0.0490041928721174,0.050670859538784065,0.036132478632478635,0.026043956043956044,0.015752698648904002,0.014901648490083859,0.012523719707361682,0.5320333410622501,21.825259515570934,8.093983624065503,3.8655953250547843,166.71102821338408,1.0,4.388528652403272,157.07109169061175,,113.04857237673092,109.74688002221085,107.86307290636597,112.86126147220467,172.04061167873044,111.6518896253656,113.34813584476187,148.23334547444546,-0.006869559103467863,-0.08714871329392791,-0.4885650304123522,0.24968427965245465,0.18096413742244744,-0.06716450853972096,-0.004266508937221847,0.050804186297573786,-0.0817648198261962,-0.05528655498238555,-0.09037680085343816,0.06618559722872086,0.029580872936687402,0.003883738612081715,0.05197489054520812,-0.12568591196469045,0.08667979064727091,-0.08929258954520997,0.02946301136501587,-0.050517415919072696,0.010636878598645119,0.07912095093102058,0.007897846584918013,-0.013974445350875529,0.012918622335491037,-0.014963745483904244,-0.10647277004590767,-0.06275086968156275,0.08624286108575188,-0.10817556325409276,0.009619668398954846,-0.14688019374003178,-0.007968165698516418,-0.02449381112700847,-0.029953007568669004,-0.08957934861768241,0.14796284565887086,0.07669131969972791,0.14786999526298472,0.15612844766619513,0.16101237234878235,0.07205803120863821,0.1509017696284316,0.17579525629247622,0.08408017553352898,0.07568751423649826,0.08245097265237067,0.20494388768868052,0.04799736376238676,-0.018972113168368804,-0.08227063183308445,-0.0064464577525713915,0.03324556319068938,0.0651047394943192,0.044160441318078544,0.06754136074002405,-0.015907034538805234,-0.050388227038601484,-0.021815843214590246,0.0890003451862172,0.014824782210261346,-0.07691558462111282,-0.05726578415428088,-0.22873537353735368,-0.04042883667785474,-0.15708047390551458,0.015352518937994983,-0.12194248470812606,-0.06327359087235529,-0.0703740206183166,-0.09238053335925635,-0.03491106618297942,-0.06155735613117262,0.14975929126232032,0.10384402541085888,-0.11392326732673261,-0.07870188531029064,0.024786584426398216,-0.06307374145048288,-0.14479772982711858,0.1375453342096064,0.20621658139251936,0.17171479924853542,-0.20071705983716578,-0.198871077144181,-0.11767741181009574,-0.04874188973311397,-0.1036347055758207,-0.2302631578947367,-0.037216805196603905,-0.19233573220480685,-0.08713552362994327,-0.1280555760822854,-0.16215984849838072,-0.12155699910763192,-0.1528484360148292,4.685498413343482,23.325397071253896,19.27390607567121,20.24075361471265,42.34353206337487,47.289891345969465,50.010321407438376,50.09992140743838,50.09992140743838,61.52147351683763,42.56946969406081,8.392001359756392,5.224557200875958,5.3354452621444715,18.952003822776817,7013.09601879038,4758.968267049539,2622.914279238618,324.0,53.0,74.0,101.0,138.0,170.0,205.0,241.0,295.0,416.10962500000045,34.0,5.1647859739235145,6.075346031088684,7.01301578963963,7.942717540573791,8.885025658050846,9.82211479407039,10.766820447545506,11.707743613093465,12.653763562350207,0.7925925925925924,1.0496,1.1455025275624193,0.7703312881710288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6903379241516968,1.0319825708061001,1.0482965120984062,0.6928805346359996,5.0,1.0,0.0,0.0,0.0,2.0,6.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,1.0,1.0,2.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,15.74010460285337,17.197893173788785,17.28226083964865,5.428790391900541,0.0,9.361636831863176,22.94976084804349,0.0,0.0,0.0,30.034913297707618,31.394564281047796,11.073610489148358,271.9056027718686,-783.312908409739,-61.52955354294747,-17.406953520216423,-52.22086056064927,337.00623982013866,970.85655894787,32.805956133429966,21.57459019884155,32.36188529826233,0.46153846153846156,0.5516468467711219,0.1657499414657715,141.88098503560116,0.11827829559159739,76.49554142610779,0.44835315322887814,7.0,0.08823529411764706,0.34225117749684403,0.7621895604986844,0.8836462868107064,0.9433504309649078,0.9595360221177914,0.9595360221177914,1.8944999999999996,,2.3214285714285716,2.770545574231917,2.481510480015119,2.4211643699772454,-11.31422406933539,2.498789080039119,2.247036373105155,-4.114260943049914,101.34170000000003,23.07230972193699,0.0,9.551078168738563,17.56947956948497,6.041840829147961,17.98942254267563,63.70075343626656,0.0,5.687386274683562,4.23410650459726,1.9459101490553132,5.638354669333745,4.2626798770413155,7.244941546337007,6.329720905522696,8.951699168308815,8.303752415563412,10.713283792711254,35.66666666666666,4.528509317562348,4.257672430083144,0.0,0.0,0.0,-0.44656215881414285,-3.539506123239682,1.0282139707734945,47.232000000000006,0.0,24.114105604962248,0.0,0.0,0.0,0.0,0.0,-1.559006800378553,51.54761374030887,16.062367599913205,18.98910792085949,0.0,39.758264492504225,0.0,29.287474615460468,10.357988675768818,35.25684902953134,0.0,16.720787709916085,0.0,34.664907967696294,31.065206586826356,38.66582808027232,314.1421833812235,,225.94238284869994,219.30905700613957,215.56071178073094,225.56111198641085,347.8462256337551,223.13719331206192,226.54646926465006,297.38617733504464,38.66582808027232,314.1421833812235,,223.88972787354788,216.89369033100493,213.47664241716046,223.4149604262093,355.3954474267964,220.94171513826984,224.56019132796686,300.58095189194086,5.12396967542747,218.54189338987626,,156.24489235829992,151.17685370160345,147.65905256533995,156.07127597595303,239.36003763056544,154.0911336345451,156.65215043691921,208.38355264681388,1.2888609360090773,10.47140611270745,,7.531412761623331,7.310301900204652,7.185357059357698,7.518703732880362,11.594874187791838,7.437906443735398,7.551548975488335,9.912872577834822,2.5932855155850016,157.07109169061175,,113.04857237673092,109.74688002221085,107.86307290636597,112.86126147220467,172.04061167873044,111.6518896253656,113.34813584476187,148.23334547444546,46.4392156862745,0.0,0.0,0.0,42.66784510478483,5.920293705384518,9.363915818308161,47.17334304442828,1.00716463317293,0.0,0.0,0.0,0.5652059188334706,1.7027863336692701,0.0,0.0,0.0,31.179624058619982,335.9042979274745,84.5816934986334,188.36248940166843,218.37850183267193,233.1333893348353,237.13338933483536,237.13338933483536,1665.0,144.03133341033603,273.00754466453276,87.6244490284708,101.44999999999999,101.44999999999999,0.8571428571428571,9.770525082865674,6.087462841250339,4.370094256762131,5.382074875126787,,5.3603360567454965,5.359667571959826,5.357332120703032,5.360560314708357,5.336571559612812,5.360036979754486,5.360263822928495,5.357081085615466,0.14566980855873768,0.17940249583755957,,0.1786778685581832,0.1786555857319942,0.17857773735676774,0.1786853438236119,0.1778857186537604,0.1786678993251495,0.17867546076428317,0.17856936952051553,2.573396866596119,2.781686253014064,,2.7776389589394466,2.777514241670742,2.7770784011629996,2.777680794613465,2.773195705415618,2.7775831629349472,2.7776254832351364,2.7770315418375695,262.4700000000004,382.5259207884286,202.43671361868002,,204.1856756510664,204.23919142169188,204.84035491788646,204.09265687081788,208.797110355246,204.21506741487164,204.22567414360375,205.37008293959653,12.750864026280954,6.747890453956001,,6.806189188368879,6.807973047389729,6.828011830596215,6.803088562360596,6.9599036785082,6.807168913829055,6.807522471453458,6.845669431319885,7.04540870640577,6.40903960102863,,6.417642043314572,6.417904102631946,6.420843207920041,6.417186379741718,6.439975305286031,6.417785979212608,6.417837916875311,6.42342592287452,43.696059075558324,30.07456436871466,9.045335046493262,3.9398366469106842,-3.7029356761903385,3.6945685819172738,0.9120739900898631,1.00716463317293,0.0,324.82613826327713,165.5665415949089,-476.96850638587836,-37.46607382169971,-10.599300141908408,-31.797900425725228,205.20709045388452,591.1660562014832,19.975935197199405,13.137023471144069,19.705535206716103,2266.0,53.0,2.73364194274923,1.1372946558526102,0.0,0.0,0.7203757418921507,0.14013715149606218,0.0,0.0,0.19245008972987526,0.19245008972987526,0.46461561670578394,0.3832766380870198,0.6217504569694612,0.4496116082686447,0.9574840303605465,0.5815174144911854,1.4366147316082203,0.5924524302443346,21.31710828733677,15.349610367034968,14.256927950821467,9.211379398016499,14.084470303673168,7.617796829581288,12.140827709495753,5.680021310751241,10.264121631363997,3.972833713333423,8.393329024232358,2.749005666707913,6.599055038204106,1.6439953290858103,4.949234839894678,0.9924144352825494,6.367786083401155,2.1830665009662726,10.080040698573521,2.781282000727019,15.962556399447863,3.459286956315894,92.29507497868526,44.27584871652972,33.53357840593517,28.111743318039593,27.668747212025423,27.668747212025423,174.0,217.0,51.87889499999999,24.113104999999997,0.4888888888888889,286.1,10.666666666666666,6.249999999999999,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,16.0,17.0,45.0,0.0,1.0,49.0,17.0,2.0,9.0,40.0,19.0,34.0,30.0,0.0,0.0,0.0,20.0,0.0,3.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,6.0,2.0,3.0,30.0,10.0,0.0,4.0,3.0,0.0,5.0,3.0,0.0,0.0,3.0,2.0,3.0,3.817712325956905,8.687224360595048,4.5217885770490405,5.171903441692378,5.820453781459894,6.478221582290114,6.98436903760045,7.489412083508719,7.947302926347917,8.425954710981966 +9887803,NS(=O)(=O)c1c(Cl)ccc(NC(=O)Nc2cccc(Cl)c2Cl)c1O,0,58.94117647058823,6.96779411764706,3.9411764705882355,10.272331154684096,161.3187226971556,244.0001607058823,2.0462307367202937,7.194261764705883,7.919405948250358,8.652760117647057,280.02214431114663,43.77142857142857,6.780337142857142,4.6,8.142857142857142,148.90481412251003,173.11289154285714,2.175321678171428,7.008531428571429,3.418783068783069,8.331798914285715,313.25028924081573,39.45454545454545,6.87738,4.2,9.080808080808081,150.32959318343836,155.45891674545456,2.0275225628154363,7.084301818181818,5.5131126075570505,8.401803854545454,289.5404445678482,41.236111111111114,6.81423888888889,3.4166666666666665,6.538751714677641,157.06501785373507,162.82260406944445,1.8324593179242639,7.046730555555556,4.051197945773849,8.492939444444444,253.37074946428817,37.69444444444444,7.024513888888889,2.9583333333333335,6.794753086419754,160.8233920217098,145.9555135555555,1.5858357983527225,7.251576388888889,5.5606067101051675,8.734160861111112,228.13186942023037,28.29850746268657,7.0188522388059695,2.701492537313433,5.90547263681592,166.92314929538577,104.83099686567165,1.371934345871582,7.165540298507463,5.350546649468707,8.700775611940298,194.52080988508777,27.892857142857142,6.698194642857144,2.7857142857142856,4.922619047619048,165.99810580201023,105.59537385714285,1.381441598157,6.837878571428571,3.988802542621987,8.383550642857141,196.5379179197153,34.32608695652174,6.793608695652175,3.1956521739130435,7.173913043478261,159.76411805245897,134.1768906956522,1.6443190102161522,6.968573913043478,6.174002504920379,8.427812086956521,232.2665631677554,34.61363636363637,6.6261136363636375,3.1818181818181817,4.898989898989899,155.84314187210745,133.79400102272726,1.8196047165840454,6.87219090909091,3.8171296296296306,8.359484,245.71163820288467,21.515570934256054,0.17103840830449824,0.032551435107600224,0.8269896193771625,4.168524926310393,1.5894714905527323,98.12349764359864,0.3465870772350866,0.17332050173010377,3.2214205313166984,0.14043900692041522,45.48187635800605,0.44409293129016353,-0.04516193771626296,-0.023326169461329167,0.1007414730598122,-0.3651013346515078,0.12116363778234866,1.8031495211072652,0.006766954610501702,-0.03743730845279287,-0.8834493792070206,-0.018122860701927822,6.369163288248898,-1.2032714690154134,0.055334425920100634,0.008496149931265878,-0.06549229317395402,0.5257907797700184,0.006665572037985116,-4.965180807234981,-0.010174968612356046,0.04156778703994967,0.9485718917031392,0.026063318213274615,-2.68950653393372,2.021193771626298,-0.036234159938485194,-0.0048149334291767805,-0.16032295271049593,-0.6368538216545392,-0.23664127078706462,8.983143847414459,0.02773717712775582,-0.03244362264513649,-0.5562788942117218,-0.025026150711264895,-0.775225342611916,-2.8799500192233753,0.017255219146482093,0.002075546368413322,-0.15297001153402537,0.11479025161262757,-0.5390369804610361,-13.221222422193389,-0.10967179578017065,0.01710000480584388,0.41553297122057625,0.010505295367166458,-11.181940953455248,-5.770180240665186,-0.021648592676754654,0.0049827967974749926,0.07380054743583121,-0.3354679887758439,0.0725990017697582,-26.464685704178077,-0.05168563074047104,-0.031365629034757,-0.279765210526957,-0.02222918163507721,-9.758707596567458,0.8646811665842798,-0.05710006796836379,-0.013440365523833082,0.07006920415224913,-0.7529864887131323,0.18670676354748128,3.9583570349728134,0.04146938884778536,-0.04503862147800294,-1.0109811944022344,-0.030099595155709334,8.328049641855229,2.329697607943433,0.09316747404844289,0.013921544631119956,0.0566420941778246,0.924778095381375,0.49758484624034294,11.057586334662258,0.04136921446337385,0.08489554686324659,1.4690877923980683,0.06340747645554384,8.137454085667503,-2.3457848379993704,-0.044959531299150646,-0.006300182681668593,-0.0007864108210129016,-1.1567404145258817,0.2181552823122136,-10.575163822743004,0.03895694507844423,-0.04492297499213587,-0.6513825593065948,-0.03190541868512109,-0.04946387400936833,,,0.5003968253968253,1.4479166666666667,0.8125,0.125,0.6354166666666666,0.17708333333333334,0.7067607573068345,0.03358892047719101,0.04075558714385768,1.1636584998681399,0.2804359528465179,0.18240069177517007,1.8704192571749745,0.462836644621688,1.9703022959615826,1.1336538971886563,0.23890902440434403,0.28873776995267014,0.22042155215405798,0.8366483987729264,12.02781646588236,2004.0,236.90500000000003,134.0,349.25925925925924,5484.83657170329,8296.005463999998,69.57184504848999,244.60490000000001,269.25980224051216,294.19384399999996,9520.752906578986,1532.0,237.31179999999998,161.0,285.0,5211.668494287851,6058.951204,76.13625873599999,245.2986,119.65740740740742,291.61296200000004,10963.76012342855,2170.0,378.2559,231.0,499.44444444444446,8268.12762508911,8550.240421,111.513740954849,389.6366,303.2211934156378,462.099212,15924.724451231652,2969.0,490.62520000000006,246.0,470.7901234567901,11308.681285468925,11723.227493,131.937070890547,507.36460000000005,291.6862520957171,611.49164,18242.693961428748,2714.0,505.76500000000004,213.0,489.2222222222223,11579.284225563106,10508.796975999998,114.18017748139602,522.1135,400.3636831275721,628.859582,16425.494598256588,1896.0,470.26309999999995,181.0,395.66666666666663,11183.851002790847,7023.67679,91.91960117339599,480.0912,358.48662551440333,582.951966,13032.89426230088,1562.0,375.09890000000007,156.0,275.6666666666667,9295.893924912572,5913.340936,77.360729496792,382.9212,223.37294238683128,469.47883599999994,11006.123403504058,1579.0,312.50600000000003,147.0,330.0,7349.149430413113,6172.136972000001,75.638674469943,320.5544,284.00411522633743,387.679356,10684.261905716749,1523.0,291.54900000000004,140.0,215.55555555555554,6857.098242372728,5886.9360449999995,80.062607529698,302.37640000000005,167.95370370370375,367.817296,10811.312080926926,731.5294117647059,5.8153058823529395,1.1067487936584075,28.117647058823525,141.72984749455338,54.0420306787929,3336.198919882354,11.783960625992943,5.892897058823528,109.52829806476774,4.774926235294117,1546.3837961722056,15.543252595155723,-1.5806678200692035,-0.8164159311465208,3.525951557093427,-12.778546712802772,4.240727322382203,63.11023323875428,0.23684341136755957,-1.3103057958477504,-30.92072827224572,-0.6343001245674738,222.92071508871143,-66.17993079584774,3.043393425605535,0.46728824621962334,-3.6020761245674717,28.91849288735101,0.36660646208918135,-273.08494439792395,-0.5596232736795825,2.2862282871972317,52.171454043672654,1.4334825017301038,-147.9228593663546,145.52595155709346,-2.608859515570934,-0.34667520690072817,-11.543252595155707,-45.85347515912682,-17.038171496668653,646.786357013841,1.997076753198419,-2.3359408304498275,-40.05208038324397,-1.8018828512110725,-55.81622466805795,-207.35640138408303,1.2423757785467107,0.1494393385257592,-11.013840830449826,8.264898116109185,-38.8106625931946,-951.928014397924,-7.896369296172287,1.2312003460207595,29.91837392788149,0.756381266435985,-805.0997486487779,-386.6020761245675,-1.4504557093425618,0.3338473854308245,4.944636678200691,-22.47635524798154,4.8641331185737995,-1773.1339421799312,-3.46293725961156,-2.101497145328719,-18.74426910530612,-1.489355169550173,-653.8334089700197,48.42214532871967,-3.197603806228372,-0.7526604693346526,3.923875432525951,-42.16724336793541,10.455578758658952,221.66799395847755,2.3222857754759803,-2.5221628027681646,-56.614946886525125,-1.6855773287197227,466.3707799438928,107.1660899653979,4.285703806228373,0.640391053031518,2.6055363321799314,42.53979238754325,22.888902927055774,508.64897139446384,1.9029838653151971,3.9051951557093427,67.57803845031114,2.9167439169550167,374.3228879407052,-103.2145328719723,-1.9782193771626284,-0.2772080379934181,-0.03460207612456767,-50.8965782391388,9.598832421737399,-465.3072082006922,1.7141055834515462,-1.9766108996539784,-28.660832609490175,-1.403838422145328,-2.1764104564122064,0.7528562342426185,0.6151035504376642,0.44432317883682065,0.35411003307140104,0.30188106984010665,0.19429244415159938,0.1822584222848822,0.11209283560922663,0.12250658063483846,0.0595796251827041,0.07689886175851517,0.028612532845029456,0.04961318472821033,0.015914579318430374,0.03239287584536805,0.0084482836767617,17.00316084451412,5.698465662766225,3.5812130250940992,2.1832821457344482,0.47625145164512783,-0.3651603617695105,4.04312952117204,0.9681855321059251,6.022500163690597,0.6420852765767755,14.544797398823428,10.319282111711964,35.45254103802726,11.710637429061139,2.955654046167645,0.7508314834390928,3.537340703620751,2.2377380139162804,7.014581943622479,0.3001755819578691,3.768726831271725,2.437059279641987,24.442068388802877,14.701023839677374,0.39941113402388695,0.6801218701872115,0.7898323212073175,0.8887681104089745,0.9103174340458727,0.9103174340458727,1.920068187777743,918.9182055079013,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,2.9069050673245513,1.3743839986235455,0.77542729342942,0.23529411764705888,0.117647058823529,0.117647058823529,-147.6544545220974,1408.3052046531989,74.5300138385235,41.42074131332938,86.5507211906966,,11.0,442.0,26.699400974547334,18.318861563241462,26.442672490591104,0.0,0.0,24.26546827384644,6.06636706846161,0.0,10.633577208012662,39.94179340830549,12.009523809523808,34.75,19.5,3.0,15.25,0.0003968253968253214,0.0,4.25,0.3390476190476186,0.12422360248447184,-0.21482401656314676,0.11631089217296098,0.20056351791530935,0.0,0.7761904761904761,0.9746031746031742,0.4371428571428575,0.6519668737060043,0.8582922824302133,16.962258175364028,0.8061340914525843,0.9781340914525842,27.927803996835358,6.73046286831643,4.377616602604082,44.890062172199386,11.108079470920512,0.5134364820846906,0.3227597145122919,0.06938937351308487,0.33306899286280733,0.0,0.628836962656628,-1.5454635460790103,-0.08757666546473225,-0.04545481017879443,-0.10303090307193402,0.3711630373433719,0.9121902463283864,0.04248674021836268,0.02682912489201136,0.048010012964651905,-4.962167040935682,0.6457312870468226,0.927534553122201,1.7111009607952217,1.0562761506276153,0.7769868109570512,1.1605040145766272,0.6282012139482268,0.9178938414136254,0.8260024049747972,0.8939957917417758,0.7715173635081469,0.6314476394961442,0.728337085879704,0.4379769614061068,0.6242891776715113,1.194979079497908,0.6763258216251113,1.1173017323253285,0.7143546689308448,0.8821466156124378,0.4769945872024398,0.4846800382749041,0.5684477762058684,0.8542746109105619,0.7932011900932775,1.117573056025917,1.1083990217550395,1.2143915620641565,1.0808451226844025,1.1565476212059334,0.7946536999513871,0.8351423418537001,1.0826048890696762,1.065448564921617,1.0907384554278585,0.9180820650069246,1.117749544333655,0.9671585692051334,1.2203078558271785,1.1573396094839612,0.9520499849697518,1.3048285588193598,1.1190632613424885,1.267772522804851,0.9482213548880299,0.9164651520938736,0.9839090476987471,1.1565726322736967,1.1752417151937322,1.3385003237045092,1.167058918403462,0.7707487666271156,1.1694852588595743,0.9241396318167222,1.1799574027807063,1.0725627155483597,1.3294936810841194,1.309921450480477,1.2682517543129856,1.1672791549146257,0.7942752607636815,1.451177810397193,1.4879747044853293,0.8068776150627616,1.2851481351756124,0.833202880955998,0.7997108770178137,0.7767716552779321,1.3327259726226452,1.429706305429473,1.220099192275436,0.8572958455417602,0.7335435691610611,0.4492187716461797,0.4830810261437459,0.8802301255230127,0.7858728735057565,0.6502275140605557,0.7319585868793953,0.7818449658031352,0.48274716483746366,0.5508594292304959,0.5031290926737944,0.812758522917242,1.047292135734963,1.1497675505410672,1.0314766719158819,0.9469142259414226,1.1790493282503767,0.7850337608767288,1.0489034668377626,0.8232094576324566,1.1673820925990164,1.079859862661857,1.1641698690362274,0.978277974353127,7.0,0.1652892561983471,3.777777777777779,3.0625,1.715555555555556,0.7569444444444444,0.6089795918367348,0.28125,0.31242126480221716,0.28250000000000003,6267.49846035512,6589.859953768051,2719.1903857771636,2600.9073768314847,13.536500492728774,0.4488494761804141,7.460649337251546,0.8143863731994582,1.0,0.0,2.1805577739257878,3.7130788426267936,4.312035547820919,4.85216872360328,4.96981578242681,4.96981578242681,0.28,0.010330578512396695,0.10210210210210213,0.07852564102564101,0.04636636636636638,0.02803497942386831,0.027680890538033395,0.011718749999999998,0.014877203085819864,0.014125,0.6137615110542278,20.3136,8.131482834185537,5.019259259259259,151.9193849294863,1.0,4.088836540168351,119.45461838605567,,81.22316196332945,89.11643234219042,88.32212277734065,81.14902047905166,122.17868978164114,89.52218160839658,89.8237816245119,114.3896456863402,0.020640536690713616,-0.2640455916536685,-0.7165941957466229,0.12181709503885242,-0.08758525883990885,0.07622888394192871,0.018376327428284437,0.01952454391688627,-0.21600046202895595,-0.27424217689639124,-0.12904435241554926,0.14003739067655577,-0.055925611859995894,0.3235204681137422,0.26100692344842785,-0.07919360973754275,0.12613353381945624,0.004193577599600223,-0.05060134347502949,-0.029357611061345098,0.23983191039153234,0.29445764142920744,0.1855846091822931,-0.05913358791012794,0.09394097780636865,-0.21184808896243837,-0.14791770050262926,-0.19386331938633194,-0.1527767814544953,-0.14888047517277178,0.09154936445542103,0.08002946142432762,-0.18718860331744244,-0.17268124071474542,-0.17819942806521594,-0.017044708897007835,-0.1338542225081305,0.10088505451806341,0.0637620541629735,-0.18497210599721065,0.02753737920291859,-0.33912969415613,-0.13474063542063222,-0.3164335977413877,0.09866117761689937,0.1289906012521546,0.07480325870660463,-0.2458548733881979,-0.26818624791769685,-0.12657152794718393,0.1530745658679605,0.0892399925060888,-0.08047642624336428,0.04567493169978921,-0.269707932755336,-0.14912740299723637,-0.18096894897984914,-0.08684529318890508,-0.15828352907446983,-0.2145625549780041,0.04018862289206447,-0.33384354154365736,-0.4128962510993864,0.08472803347280335,-0.18063619674204726,0.11746468222752127,0.04034056194521565,0.11965070705638885,-0.25985743768580527,-0.31383086578547814,-0.21432503558478128,0.18310699357040192,0.1082796089893297,0.5447166807269256,0.4276783676388358,0.06849190467527745,0.22184780269501858,0.3130505008726579,0.11269050329642046,0.11936167612883478,0.4898182616355836,0.45603725999647887,0.45149476520776,0.17891641104721245,-0.1090273107400801,-0.26286219419856605,-0.19354546614743892,-0.0009509319132750151,-0.2774939420956576,0.13725020147190622,-0.10777402025714382,0.11240160882288212,-0.2591901970263756,-0.2022035164221027,-0.22718345411828095,-0.0010875513054918488,2.799110343236914,10.69937769126982,8.51883850994918,32.788131917698166,47.65641545369212,53.55601385154347,60.32947103426211,60.44805926955623,60.44805926955623,47.28725510307798,27.20769353252775,5.733816585704257,6.929706478864084,5.290117251697391,20.079561570550233,8201.72378093052,7455.390898206789,1184.8578399961161,53.0,37.0,45.0,56.0,59.0,54.0,56.0,53.0,52.0,408.9457598400002,25.0,4.8283137373023015,5.666426688112432,6.566672429803241,7.419979923661835,8.31898612539206,9.17895289873455,10.07638988741359,10.9404194539302,11.836811686085365,1.0196078431372546,1.0428235294117647,1.1223860664040402,1.0055733224935968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7806609721733005,1.0391003460207613,1.0624866115419223,0.7441720166185749,5.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.740104602853368,4.895483475517775,5.749511833283905,10.023291153407584,0.0,0.0,18.3513079060087,0.0,0.0,40.86918673915916,24.26546827384644,0.0,26.442672490591104,360.34138336472273,-885.5943673876384,-50.183908800003074,-26.04689315845996,-59.039624492509226,212.68692884262532,522.7108372655604,24.34610503852042,15.373848154869421,27.51109669818738,0.45454545454545453,0.7429561690617542,0.20523852113068417,82.31157028314692,0.13156227380917013,15.442211165128656,0.2570438309382457,6.0,0.12,0.42861399522082305,0.7298488379158824,0.8475807455256333,0.9537502041805123,0.9768751020902563,0.9768751020902563,3.643800000000001,,3.9947478991596634,2.0250935578064775,1.6763677424026744,4.033475856107844,-4.757749718482258,2.109178183536558,2.115476802357241,-2.146507032578093,93.5934,18.318861563241462,0.0,0.0,5.138973737607942,4.895483475517775,10.633577208012662,45.399735283532024,0.0,5.749511833283905,3.9318256327243257,0.0,5.293304824724492,0.0,6.838405200847344,0.0,8.472823243680297,0.0,10.153506697855693,34.66666666666666,6.998865808124766,0.0,0.0,0.0,0.0,0.0,-1.3750067181946202,0.0,35.456,0.0,34.91196067126983,0.0,0.0,-4.285890837465736,0.0,0.0,-0.7942976820357768,38.161126257737365,15.772550945620605,16.169309733438947,5.749511833283905,19.555438891507713,10.023291153407584,0.0,0.0,35.227318817825825,15.067899941223978,0.0,0.0,34.18949296478229,26.54247305389222,28.610829390447524,238.90923677211134,,162.70059190644298,178.06410688789697,176.5045482428144,162.54621311689937,246.67543332126547,178.8685983681651,179.47127351549403,229.67366930292133,28.610829390447524,238.90923677211123,,159.37163532380993,176.2077711265744,174.96787781227866,159.18498323680956,249.11512928176444,176.9351850332567,177.53208644666654,230.92579840525855,4.876144327205994,181.84837677128905,,129.3899533119375,136.94673712160366,134.7626733477092,129.31982115168154,197.18244916726158,138.19107645098478,139.19239883063386,181.85532599070268,1.1921178912686468,9.954551532171307,,6.7791913294351245,7.419337786995707,7.354356176783933,6.772758879870807,10.278143055052729,7.452858265340212,7.477969729812251,9.569736220955056,2.438072163602998,119.45461838605567,,81.22316196332945,89.11643234219042,88.32212277734065,81.14902047905166,122.17868978164114,89.52218160839658,89.8237816245119,114.3896456863402,35.32941176470588,0.0,0.0,17.48351677354698,0.0,4.985536851499604,9.985654167016602,36.124544792425354,0.0,4.67299429957168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.30184856503155,425.7349196014942,74.13896431347678,126.24468064931098,146.60920862591126,164.97373660251154,168.97373660251154,168.97373660251154,514.0,123.83295283043557,147.29339260585385,58.689865599832146,129.9,121.52,0.8333333333333334,7.842978161358238,5.643856189774724,3.9112633943762125,4.839540463964234,,4.855852860699687,4.837932219065482,4.836010760823193,4.856091536226943,4.85807029709442,4.840907708148009,4.842842249364024,4.852358176120675,0.16296930809900886,0.20164751933184308,,0.20232720252915362,0.2015805091277284,0.20150044836763303,0.2023371473427893,0.2024195957122675,0.20170448783950037,0.20178509372350098,0.2021815906716948,2.239329177925843,2.4522885081128996,,2.4556534901371356,2.451956139328976,2.4515588952535143,2.4557026410625427,2.456110038206794,2.4525709835042364,2.452970527327701,2.4549335460162873,248.6999999999999,260.7528659723375,131.74939114444754,,128.58947841833026,131.39284206242948,131.82836142712526,128.5516358634238,129.4623840535945,131.05581797974054,130.81256642823033,130.1390291806303,10.864702748847394,5.489557964351981,,5.357894934097094,5.474701752601228,5.492848392796886,5.356318160975992,5.3942660022331035,5.460659082489189,5.450523601176264,5.422459549192929,6.439041822439335,5.756370303470177,,5.732093729467591,5.753660367509891,5.756969521608053,5.731799396487932,5.738859105670114,5.75109206125227,5.7492342453725485,5.744072071585247,22.917190420576965,11.302876389238822,19.726622107388856,0.014690146377482227,-0.7802397924190247,6.20456812608899,0.0,0.0,-4.285890837465736,300.7295544913649,206.48581472794805,-507.47064564447254,-28.756800559633245,-14.925607224837433,-33.831376376298174,121.87563186325393,299.52810885077383,13.951007479046169,8.809650260316877,15.764637307935462,1395.0,39.0,2.940563616828304,1.3820152621078183,0.28867513459481287,0.05892556509887896,0.7408049251121752,0.3819816485121341,0.09622504486493763,0.01473139127471974,0.0,0.0,0.0,0.0,0.0,0.0,0.12359693729953272,0.04488959454956774,0.36236788487523136,0.13545451745709924,18.068549621822843,14.76248521050394,11.108079470920517,8.852750826785027,11.169599584083945,7.188820433609177,8.201629002819699,5.044177602415198,6.860368515550954,3.3364590102314295,4.537032843752395,1.6881394378567378,2.679111975323358,0.8593872831952403,1.8140010473406107,0.47310388589865515,4.931243582194364,2.694481932640498,8.49231382038834,3.606948903073566,11.998233886295587,4.051084348072869,82.82734247539491,55.78839058884162,44.71584009787078,33.12107216139936,32.75784123889931,32.75784123889931,124.0,144.0,44.32593,19.65607,0.4411764705882353,73.11,10.70138888888889,5.138888888888886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,34.0,0.0,0.0,35.0,12.0,3.0,9.0,26.0,15.0,25.0,20.0,0.0,0.0,0.0,13.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,4.0,4.0,0.0,24.0,11.0,0.0,3.0,4.0,0.0,2.0,3.0,1.0,0.0,3.0,0.0,2.0,3.5553480614894135,6.160151912626133,4.23410650459726,4.677490847567717,5.216293531069446,5.61586159328373,5.65730214077366,5.856414144228462,5.905872616772578,5.95518949124327 +3365,OC(Cn1cncn1)(Cn1cncn1)c1ccc(F)cc1F,0,29.41176470588235,7.110276470588235,3.764705882352941,12.0,174.33347164127906,118.90144953822177,1.4739634370055295,7.105191176470589,7.717524509803921,8.38852376470588,232.62024951680004,29.77777777777778,6.924994444444445,4.388888888888889,10.305555555555555,155.98500367675138,115.86107076862224,1.7187104276666665,7.024269444444444,4.114197530864198,8.21506,269.52455087301587,26.847457627118644,6.971654237288135,4.1525423728813555,8.508474576271187,164.8608966237457,103.19560415831862,1.543189166435559,7.035218644067797,4.206685499058381,8.291437016949153,241.78734631259366,21.16216216216216,6.805702702702703,3.391891891891892,6.162162162162162,164.13575496177904,77.96942395206486,1.362035743673635,6.861036486486486,4.056681681681682,8.212886972972973,202.66696159516187,20.67816091954023,6.746608045977011,3.103448275862069,6.505747126436781,170.28297766501362,77.85660511653529,1.206637732307299,6.7727574712643674,4.945402298850575,8.167784459770115,180.28430095093282,20.34090909090909,6.844497727272727,2.9204545454545454,6.386363636363637,171.7491415546624,74.91787629129091,1.222710950664659,6.865759090909091,4.229166666666666,8.26300568181818,182.21420174575107,20.1046511627907,6.690636046511629,2.86046511627907,6.593023255813954,173.32725685766727,75.48442973700465,1.182294873948651,6.712545348837209,4.445736434108528,8.106692930232558,174.77026166806135,20.940298507462686,7.072355223880598,2.582089552238806,7.014925373134329,179.74422341501779,78.0118391811821,1.174933449340179,7.065223880597015,5.104477611940299,8.425387223880596,178.15113512793127,16.837209302325583,6.686067441860465,2.395348837209302,5.5813953488372094,177.63237119631492,60.89317529689303,1.0540227087428604,6.690453488372092,4.558139534883721,8.117882790697672,149.50364612267694,7.816608996539792,0.25512041522491335,0.022110974266458278,0.6505190311418684,4.993079584775088,2.851776791475289,37.75483869169661,0.2098259114603252,0.2238277681660899,3.0760344579008074,0.14486943944636674,42.058311638917274,0.2552864282968083,-0.007767474048442922,-0.007300549733418422,0.10111495578623611,0.7683583237216456,-0.5194143103349202,1.1679843025847394,-0.023493703685397115,-0.004800970780469048,-0.22102810350719812,-0.007482733564013841,-2.2291716403031265,-0.3121224561609295,-0.030310943639669227,-0.0027919833701071334,-0.12110726643598613,-0.8604773913553457,0.03486902652480843,-1.3199471344095148,0.0068198224288811395,-0.02480199548413582,-0.07072400038446755,-0.01816562688405372,2.5174610700270423,-2.5201066118021136,-0.05161787150472269,-0.00040591427524732363,-0.12349200411484147,-1.2108856261105396,-0.4013149372687447,-12.065946480853981,-0.04652698629008757,-0.04837343589264001,-0.6084989076446689,-0.027038018142710177,-12.653911464538515,1.0907608479497277,0.03870338463986,0.0014687795658274397,-0.00954540031022551,0.5207811319253868,-0.08998143008754142,5.305207472782734,-0.006917335029438852,0.03591144752018452,0.6824031125296636,0.021509413832875943,1.3659488656554621,-0.8908068575023592,-0.025254639823843964,-0.0006494641361581287,-0.0014548600188738668,-0.26313306071091547,0.027529503978142397,-4.485428737260358,-0.001846527517420177,-0.024266605064485677,-0.5161316615549963,-0.013632626612142179,-2.7679605528875326,1.1731310855395511,0.027782389152651493,-9.894954451127977e-05,-0.01714009817333227,0.4877685684396878,-0.2577981036284705,5.858131061263051,0.00029343394085531153,0.027206876156755423,0.4194768280089053,0.01415439639494648,3.119438031036984,-0.8833341940814955,-0.025728931467231334,0.00022574166306352144,0.007075349894127958,-0.5567319113773692,0.34987246138483236,-4.4739325457795065,0.019328667787397287,-0.02546863734958423,-0.511604768114445,-0.012236624696586262,0.2336184643930561,-0.4732437434618165,0.004338134706687077,-0.00034396643550987227,0.01021968294841874,-0.09294278586947781,-0.06561942060073406,-2.2355317392535357,-0.027266104759229512,0.0029798241731713083,-0.019248662187173075,0.002775474370322681,-5.474886662169466,,,0.4456709956709958,1.375,0.6818181818181818,0.045454545454545456,0.6931818181818182,-0.011363636363636364,0.6673568396210844,0.015814312283659957,0.027541585010932682,1.0229852546101241,0.2831087770564157,0.1971775271314287,1.6903420942312086,0.4802863041878444,2.024985161746545,1.2212223783323737,0.5616328610839137,0.08163008815863448,0.1604998341716233,0.8037627834141715,9.00306074835295,1000.0,241.74939999999998,128.0,408.0,5927.338035803488,4042.6492842995403,50.114756858188,241.5765,262.3958333333333,285.20980799999995,7909.088483571201,1072.0,249.2998,158.0,371.0,5615.4601323630495,4170.9985476704005,61.87357539599999,252.87369999999999,148.11111111111111,295.74215999999996,9702.883831428571,1584.0,411.32759999999996,245.0,502.0,9726.792900800996,6088.540645340799,91.04816081969798,415.0779,248.19444444444446,489.194784,14265.453432443026,1566.0,503.622,251.0,456.0,12146.04586717165,5769.7373724528,100.790645031849,507.71669999999995,300.19444444444446,607.7536359999999,14997.355158041979,1799.0,586.9549,270.0,566.0,14814.619056856185,6773.52464513857,104.977482710735,589.2298999999999,430.25,710.5972479999999,15684.734182731156,1790.0,602.3158,257.0,562.0,15113.924456810291,6592.773113633601,107.59856365849,604.1868,372.16666666666663,727.1444999999999,16034.849753626093,1729.0,575.3947000000001,246.0,567.0,14906.144089759384,6491.6609573824,101.67735915958399,577.2789,382.33333333333337,697.175592,15030.242503453275,1403.0,473.84780000000006,173.0,470.0,12042.862968806192,5226.7932251392,78.720541105792,473.37,342.0,564.500944,11936.126053571395,724.0,287.5009,103.0,240.0,7638.191961441542,2618.4065377664,45.322976475943,287.68949999999995,196.0,349.06895999999995,6428.656783275108,265.7647058823529,8.674094117647053,0.7517731250595815,22.117647058823525,169.76470588235298,96.96041091015982,1283.6645155176848,7.134080989651057,7.610144117647057,104.58517156862746,4.925560941176469,1429.9825957231874,9.190311418685098,-0.2796290657439452,-0.2628197904030632,3.6401384083045,27.660899653979243,-18.69891517205713,42.04743489305062,-0.8457733326742961,-0.1728349480968857,-7.9570117262591324,-0.2693784083044983,-80.25017905091255,-18.41522491349484,-1.7883456747404844,-0.16472701883632088,-7.145328719723182,-50.7681660899654,2.0572725649636974,-77.87688093016138,0.40236952330398723,-1.4633177335640133,-4.172716022683585,-1.0717719861591695,148.5302031315955,-186.48788927335642,-3.819722491349479,-0.03003765636830195,-9.138408304498268,-89.60553633217994,-29.697305357887107,-892.8800395831946,-3.4429969854664804,-3.579634256055361,-45.028919165705496,-2.000813342560553,-936.3894483758501,94.89619377162632,3.36719446366782,0.12778382222698725,-0.8304498269896193,45.30795847750865,-7.828384417616103,461.55305013209784,-0.6018081475611801,3.124295934256053,59.369070790080734,1.871319003460207,118.8375513120252,-78.39100346020761,-2.222408304498269,-0.05715284398191533,-0.12802768166090028,-23.15570934256056,2.422596350076531,-394.71772887891154,-0.16249442153297558,-2.1354612456747395,-45.419586216839676,-1.1996711418685118,-243.58052865410286,100.8892733564014,2.3892854671280284,-0.00850966082797006,-1.4740484429065752,41.94809688581315,-22.170636912048465,503.79927126862236,0.025235318913556792,2.3397913494809663,36.075007208765854,1.2172780899653972,268.2716706691806,-59.1833910034602,-1.7238384083044993,0.015124691425255937,0.4740484429065732,-37.30103806228374,23.44145491278377,-299.7534805672269,1.2950207417556183,-1.7063987024221434,-34.277519463667815,-0.8198538546712796,15.65243711433476,-20.34948096885811,0.1865397923875443,-0.014790556726924508,0.4394463667820058,-3.996539792387546,-2.8216350858315646,-96.12786478790204,-1.172442504646869,0.12813243944636626,-0.8276924740484423,0.11934539792387527,-235.420126473287,0.7081427046078751,0.515549525509938,0.440262445505524,0.26644827390288767,0.29015425313602417,0.14240807223958715,0.18107313394524813,0.07471581209550643,0.11990746648609028,0.03950816520351068,0.07038277426878492,0.021933074356603136,0.047444253115385276,0.01131104115533843,0.029375732824019656,0.006075801376287449,9.005166515189229,5.691925120219964,4.108970583848697,2.1909397768363723,0.4084092285364289,-0.4087298309552301,4.02416918438461,0.9930271963745266,7.005153562889475,1.9876268430441244,17.425815019835476,10.952822949080153,19.001178019995933,11.703634165117252,1.9861466408329012,0.545237488005414,3.9899780008109755,2.240709503778972,8.002959198648508,1.1631381298569792,4.011344372201122,2.4364708904818166,20.892408799999025,13.303154698637416,0.348732443370998,0.6751874787944285,0.7708631103663255,0.807476355537634,0.807476355537634,0.807476355537634,1.7081652265963627,707.748307396491,0.0,0.0,2.0,0.0,5.0,0.0,1.0,1.0,0.0,3.195148274965147,1.4237168222519614,0.9045555147695135,0.7058823529411757,0.7058823529411757,0.7058823529411757,81.1339051066885,1013.5647029269023,65.29091935897607,29.8107265566736,63.99491366202569,,9.0,341.0,17.235492493075476,13.887357490190345,18.652964303522147,0.0,12.13273413692322,40.739253237810146,0.0,0.0,20.16532065849649,0.0,9.804761904761907,30.25,15.0,1.0,15.25,0.0,0.05432900432900422,-0.25,0.2755715189301524,0.062626050420168,-0.21294546850998441,0.028053830227743215,0.2425092741012133,0.0,0.7175070028011205,0.9452380952380949,0.44193548387096804,0.6548809523809525,0.9171842650103517,14.681850471663855,0.34791487024051904,0.605914870240519,22.50567560142273,6.228393095241145,4.3379055968914315,37.18752607308659,10.566298692132577,0.47149072589878666,0.092277804759592,0.050995628946090325,0.23457989315201547,0.23076923076923078,0.4145025152101023,-0.8854409484650626,-0.07943326680180438,-0.026042380837207724,-0.08049463167864206,0.5854974847898977,1.2507124305228834,0.058171582304671295,0.036785659721261285,0.054378801327081894,-2.4805320252223555,0.6139516010033939,0.6366611035610207,1.2875106564461045,0.9739583333333336,0.4994658119658119,1.1762037378520287,0.6105024837480284,1.128725217074296,0.612384372922262,0.6355687313779214,0.6853518560927676,0.9449522489819144,0.8028957615864227,0.8354274432466214,1.1177623808500219,1.5552425171294633,0.9702861270657878,0.9372936540226474,0.7917725476256702,0.906995956532622,0.8191744462190039,0.6760955511044013,0.850459439368875,0.820501368811893,1.207301424930907,1.1293558792795872,0.9868391425495389,1.3912090281771137,1.1164100691127716,1.1322827565372895,1.2032674665319145,1.2585613979234955,1.136229414439536,1.211790911268891,1.1571720899847948,1.2714070203026877,0.8756124925585017,0.8078470540288721,0.9478643402312157,1.1919020542920031,0.8769744545606613,0.9235338450773632,0.8723040564012802,1.024431629075897,0.8062933534282157,0.7687951604308342,0.8258239109368207,0.9863365792920583,1.102714143426295,1.068167738824736,1.0811537078485156,0.8901263297872343,1.016112266112266,0.8894777836183965,1.102863070598864,0.9626881771761568,1.0806398502927015,1.1500171370318075,1.084911102272066,1.0312730525894807,0.8561953735445814,0.732950339981177,0.970605928066672,0.8154069767441862,0.8837813663395058,0.9105852700664167,0.8470638934450154,0.9130944960600029,0.734297358176443,0.5998782729141974,0.7146246672965688,0.9220882393689637,1.1601553983072685,1.3313126635079768,0.8719022445693744,0.6012623054938077,1.211290222484252,1.0543431649210082,1.175937542637046,0.861957684940704,1.3339029948606733,1.4073368619718438,1.2815191350586064,0.9299706705781281,1.1492942956854753,1.0208529327102414,0.8669458146711665,0.6245670460168236,1.107552095924189,0.9826668147422939,1.1530889767849195,1.0747846070820426,1.0343629556945229,0.9930706577091297,0.9693832322996416,1.1513375296163315,5.5,0.0,2.6666666666666674,2.2569444444444446,1.0833333333333337,1.0141666666666667,0.2954195011337869,0.3317743764172335,0.1178980851599899,0.04938271604938271,4711.5977195868945,5098.447258649113,2248.721643495819,2121.722465234113,10.687290869584555,0.47207857015907356,5.642049876996956,0.8942212675498332,1.0,0.23076923076923078,1.892314566285192,3.6637460189983777,4.182907326480826,4.381580488309163,4.381580488309163,4.381580488309163,0.22916666666666666,0.0,0.07843137254901962,0.0752314814814815,0.03186274509803923,0.029828431372549022,0.00895210609496324,0.012760552939124363,0.009824840429999156,0.012345679012345678,0.4884038756441884,16.84375,7.26643598615917,4.11032990805841,123.41948530867809,1.0,4.027792283893737,94.19609160798788,,72.33172461638036,70.56318648304865,69.56392147016594,72.20067125575353,110.30881148192258,71.57590293881377,72.5075695636159,94.39292649444441,0.03265948551473113,-0.030446305293110872,-0.3301776595386459,0.15543735224586297,0.15388465388465386,-0.18213708446172444,0.03093601623151983,-0.11196759981590455,-0.021449397542607492,-0.07185488541569698,-0.05165156704277912,-0.05300192883255057,-0.03993067278906978,-0.11881034143405261,-0.12627138616603126,-0.1861702127659574,-0.17233400284247738,0.012227123325023586,-0.034961005798173614,0.032502289071055276,-0.11080839382596919,-0.022991940224470715,-0.12539309155523418,0.0598564462511042,-0.3224040773841571,-0.20232748311896773,-0.01835804566346423,-0.18983611270845313,-0.24251278305332352,-0.14072452601072447,-0.31958675759109084,-0.22174089923534107,-0.21611901101004063,-0.19781927542512953,-0.18663714200896137,-0.30086589241089823,0.1395439951560298,0.1517063407322351,0.06642762766250136,-0.014673514306676452,0.10430058705920772,-0.03155276049532333,0.14051728617104392,-0.0329670200467439,0.16044232498237962,0.22184508069371858,0.14847447408560668,0.03247750117461982,-0.11396333856493218,-0.09899105801305456,-0.02937293166422555,-0.002236460348162487,-0.0526995526995527,0.009653456771383837,-0.11880407631689431,-0.008800283552059425,-0.10841641885326224,-0.16779124831625666,-0.09410284642669044,-0.06581245050089674,0.15008184316995588,0.10889912172712102,-0.00447513272453957,-0.026348342404750147,0.0976889232703186,-0.09039911692917091,0.15516239147782201,0.0013984637970263043,0.12155272949228865,0.13636935273318454,0.09770450171574448,0.0741693593841393,-0.11300734045575574,-0.10085014734923817,0.010209485133631815,0.010876468720228618,-0.11150070851563386,0.1226857804687566,-0.11849958047267341,0.0921176400611134,-0.11378676362749324,-0.16631958292937388,-0.08446657033636469,0.005554632492115659,-0.060543356290599815,0.01700426327255148,-0.015556367230351292,0.01571004453240966,-0.018614320939902344,-0.02301001284423373,-0.05921179421553705,-0.12994631868612236,0.013313022765612128,-0.006257622419584021,0.019158453162581687,-0.1301737147504385,8.80267432226991,8.402234341834289,1.6509636244473134,20.05190839302217,36.91347408965485,39.622789487194346,40.88128732843496,40.88128732843496,40.88128732843496,44.54967355842399,26.86689232331222,12.355922943846103,1.7958619394899586,3.530996351775713,17.682781235111772,3250.7133514176835,2309.769146091473,1347.7229496003802,48.0,34.0,43.0,57.0,58.0,67.0,67.0,67.0,62.0,306.1040654440003,24.0,4.762173934797756,5.602118820879701,6.493753839851686,7.353081920515432,8.255048902752295,9.122928914965213,10.030516600664669,10.902923865496952,11.81361507145167,0.7745098039215687,1.047294117647059,1.1629443213037371,0.7499909553497528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6732567101091935,1.0287197231833909,1.045585022064179,0.6707840183905844,7.0,4.0,0.0,0.0,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,5.106527394840706,42.54477279213365,0.0,0.0,0.0,0.0,28.11239300753443,10.197363616602075,0.0,6.06636706846161,6.06636706846161,11.629818560158606,13.08951281182515,196.67366717385502,-420.12511869138115,-37.68959488603207,-12.356621137981799,-38.19319260830738,277.8075722805435,593.4395842355211,27.601324472943997,17.4541054186918,25.80172105371831,0.4444444444444444,0.6767455816364293,0.1784225740116739,43.58216804843474,0.09903210045155528,114.18284508954297,0.3232544183635707,5.0,0.20833333333333334,0.37195643984696314,0.7201518975808271,0.8221990915717033,0.8612506125415371,0.8612506125415371,0.8612506125415371,0.7357999999999993,,1.7738095238095242,2.1802086052503147,2.232038085657271,1.8398445958267615,-8.187794509157168,1.9444191582145738,1.7170727588914487,-3.408261578120013,70.29880000000001,13.887357490190345,0.0,29.52892652878686,0.0,18.69056362280884,0.0,60.70627467823178,0.0,0.0,3.8918202981106265,0.0,5.220355825078324,3.044522437723423,6.727431724850855,5.1298987149230735,8.327726166461412,6.951772164398911,9.984560498562606,26.333333333333336,8.419490530780212,15.385615184345344,0.0,0.0,0.0,0.0,-1.6178312127320054,2.721678004535147,35.608000000000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.54010692432706,0.0,8.78083009534964,0.0,34.635453923627566,18.69056362280884,11.63444168209179,5.563451491696996,43.508381504442994,0.0,0.0,0.0,25.499692481891596,22.89072814371258,27.860666706482554,188.39218321597582,,144.5021938215053,140.92817218380185,138.9249303870903,144.23408391188644,222.8506578299789,142.975040499608,144.85904160369626,189.71537887383064,27.860666706482554,188.39218321597576,,142.88963970895122,138.94616436084698,136.89580485467462,142.56149791568026,228.80541747300228,141.20738671941297,143.2980663683404,192.19411456700888,4.887601327534413,125.3329878044601,,97.8311724220848,95.7666016184064,94.55320024977735,97.68512334362656,144.62761729775596,96.9465842875631,98.03358075562473,125.02151721012322,1.2663939412037524,8.563281055271629,,6.56828153734115,6.405826008354629,6.31476956304956,6.556094723267566,10.129575355908132,6.49886547725491,6.584501891077102,8.623426312446847,2.4519615062489075,94.19609160798788,,72.33172461638036,70.56318648304865,69.56392147016594,72.20067125575353,110.30881148192258,71.57590293881377,72.5075695636159,94.39292649444441,34.97647058823529,0.0,0.0,0.0,27.226035682791633,0.0,10.958257747543463,35.54989075018209,-0.14799130763416501,0.0,0.0,0.0,0.0,0.0,-1.6952546296296296,0.0,0.0,22.80665662527987,321.10308237014084,64.33869525369653,124.56736464594485,142.21884910034808,148.97373660251156,148.97373660251156,148.97373660251156,549.0,120.33616187137537,153.37815708425774,71.27808783010923,81.64999999999999,81.64999999999999,0.8,7.963807953231451,5.584962500721156,4.092064108831318,4.615081828882443,,4.632866561091186,4.634535115578692,4.636002602184888,4.633254614479738,4.589522936401199,4.633655398495452,4.63256546910026,4.611947513709436,0.18600291403778718,0.20977644676738375,,0.210584843685963,0.21066068707175872,0.210727391008404,0.21060248247635174,0.2086146789273272,0.21062069993161145,0.21057115768637544,0.20963397789588345,2.19750687520075,2.317786959230677,,2.3216331645474337,2.321993255663315,2.3223098471412054,2.321716922007848,2.312233443610488,2.3218034198837105,2.321568172005251,2.317107582331095,200.61999999999992,150.64255583779007,122.14849985874373,,120.34237293504351,120.13918776923173,120.1609551668055,120.28372461745403,125.24710457845542,120.25480367153291,120.38289581486723,122.8264969484467,6.84738890171773,5.552204539033806,,5.470107860683796,5.460872171328715,5.461861598491159,5.467442028066092,5.69305020811161,5.466127439615132,5.471949809766692,5.583022588565759,5.803367211097318,5.593694876852563,,5.578798148551427,5.577108329061182,5.577289497473047,5.5783106842294155,5.618745982923959,5.578070215924681,5.579134821809011,5.599230125997445,29.947713687326782,7.57163055345595,18.772242378432857,-1.7509027777777775,-1.5621830645838575,3.0213936130007557,5.398096917779457,-0.14799130763416501,0.0,232.08558582589396,93.31796536869258,-199.34148704261284,-17.88300569605866,-5.862984913018025,-18.121953367510258,131.81448122548971,281.57594946937303,13.096310646505492,8.281645572628621,12.242432585624915,1000.0,30.0,1.8530626734132192,0.7479339331115261,0.14433756729740643,0.05590169943749474,0.3089255650988789,0.09747645799183324,0.05892556509887896,0.016137430609197572,0.0,0.0,0.0,0.0,0.28867513459481287,0.05962847939999439,0.2721655269759087,0.0662199633518128,0.2721655269759087,0.0512948058622391,15.579139501373252,11.342089561218637,10.566298692132577,6.394758573669304,9.865244606624822,4.8418744561459635,7.786144759645669,3.2127799201067764,6.834725589707146,2.251965416600109,4.082200907589526,1.2721183126829818,3.1787649587308136,0.7578397574076748,1.968174099209317,0.4070786922112591,3.542718242998007,1.235352834862814,6.485031431224337,1.7399318500899474,8.806839294051349,1.9727792924107435,71.80235137345143,39.411423684275164,34.05514946113538,31.942371646914268,31.942371646914268,31.942371646914268,116.0,135.0,38.22751599999999,19.964483999999995,0.5588235294117647,114.09,6.868055555555555,4.777777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,16.0,34.0,0.0,0.0,36.0,16.0,0.0,7.0,29.0,16.0,24.0,20.0,0.0,0.0,0.0,13.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.0,1.0,2.0,22.0,9.0,0.0,6.0,1.0,0.0,3.0,5.0,0.0,0.0,2.0,2.0,3.0,3.4965075614664802,6.528597333035978,4.0943445622221,4.605170185988092,5.135798437050262,5.301748971849733,5.551019720103791,5.781225652632101,6.0842858367386174,6.385721241642017 +5486971,CC(C)C[C@H](CN)CC(=O)O,0,17.214285714285715,5.935889285714286,2.1785714285714284,4.214285714285714,169.2891988409726,67.12564667857141,1.155929549372607,5.971742857142857,4.967261904761905,7.551538714285717,164.02337844538744,18.37037037037037,6.190111111111111,2.6296296296296298,3.259259259259259,151.18843263627227,65.78811992592597,1.541826404666666,6.307314814814816,3.006172839506173,7.67769688888889,213.08690026455497,13.551020408163266,5.853734693877553,2.4489795918367347,2.020408163265306,158.01374676449157,47.01475461224487,1.2494237836426532,5.942359183673469,2.9030612244897958,7.4326014693877545,160.90164448196342,9.779411764705882,5.731235294117646,1.8676470588235294,1.161764705882353,162.5443576234137,31.04519144117647,1.0640725155482647,5.800750000000001,2.2671568627450975,7.373806470588236,128.62011560726563,8.666666666666666,5.569692307692307,1.7179487179487178,1.0897435897435896,170.31133584494435,28.61867152564102,0.8908473677725897,5.614647435897436,2.1353276353276347,7.262108461538462,106.44281673159938,9.777777777777779,5.962761904761905,1.507936507936508,1.2698412698412698,168.4175197327703,30.902538793650784,0.9082513928592222,5.99413015873016,3.3597883597883595,7.617572571428571,110.87276891895016,6.637931034482759,5.761689655172414,1.2413793103448276,0.3793103448275862,178.27318055604087,19.44674462068964,0.6773732512322413,5.762448275862068,2.9022988505747125,7.495902620689659,77.69617464420803,4.241379310344827,6.068965517241378,1.0,0.0,182.835213660115,8.03376,0.5280516560253449,6.021931034482759,3.3448275862068964,7.885042758620691,57.92734367967561,1.0,4.840000000000001,1.0,0.0,184.91765202424895,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,7.336734693877553,0.12951058673469382,0.022872171671404522,0.4323979591836734,2.908163265306123,1.1922960490986765,34.78652111607143,0.19836378525352427,0.12225510204081624,2.169607426303855,0.080297443877551,45.80827702725602,-0.619803476946334,-0.016918523242630407,-0.015872228364018536,0.06892479213907783,0.6288737717309149,0.10119751820988959,-2.864169002314821,0.005478324551145158,-0.015777853363567722,-0.2465107184849247,-0.009450671390778487,-0.3836407024245133,0.08163265306122493,0.02448897594752187,0.003699225873168688,-0.06577988338192418,0.0845481049562684,-0.045182526934914514,0.21787956760203905,-0.0162680663391029,0.020807871720116604,0.523561507936508,0.01842600218658891,-3.389526365941772,-1.2800120048019206,-0.011308118247298904,-0.0017261834433417828,-0.020108043217286917,-0.08673469387755099,-0.24358140875892953,-6.125497275735296,-0.03749989226065026,-0.012255942376950761,-0.19491963452047495,-0.005603187575030026,-9.38656886619902,1.258503401360544,0.009971006671899537,-0.0006413167593536409,-0.05968733647305077,0.2273678702250131,-0.000783742776952897,5.963643770833335,0.009796740491734453,0.012199476713762451,0.036640029943601306,0.0032880890894819025,5.83018001082927,-1.0476190476190474,0.0020513180272108723,0.004094603161512036,-0.05994897959183676,-0.19954648526077096,-0.26894912338523863,-5.08960151686508,-0.043396727966163125,-0.0008557823129251805,0.033356166540690395,0.0017236921768707771,-10.347371370714693,0.09676284306826168,-0.014420131069669242,-0.003054903709636315,0.0257301196340605,-0.5017593244194232,0.08855231165649889,0.519230648706898,0.002095086987794672,-0.010967663617170999,-0.19266435022284775,-0.010522207424349039,2.20734335288798,-2.353976073187897,-0.07316070988740321,-0.0009561045915126407,0.10331632653061221,-1.3736805066854334,0.3040020170250762,-10.682755937499998,0.05818233935741778,-0.06965214637579169,-1.124759314645398,-0.043638621217452385,2.55675318659977,4.591836734693877,0.04395012755102045,0.006905387526318522,0.10331632653061222,1.3061224489795917,0.4009726794062907,21.89070156250001,0.09719423079429708,0.04777346938775523,0.4524163832199544,0.019981841836734536,28.06241567466739,,,0.4606060606060606,0.6590909090909091,0.13636363636363635,0.0,0.5227272727272727,-0.38636363636363635,0.949095526598893,0.032405841100793496,0.032405841100793496,0.35492958126906776,0.1078690147935585,0.35192637704865665,1.3040251078679608,0.45979539184221513,1.848415648590963,1.3845136215213723,0.15631001509786022,0.30759201197173064,0.0,0.4639020270695908,5.683068885142857,482.0,166.2049,61.0,118.0,4740.097567547233,1879.5181069999996,32.366027382432996,167.2088,139.08333333333334,211.44308400000006,4592.654596470848,496.0,167.133,71.0,88.0,4082.087681179351,1776.279238000001,41.62931292599998,170.29750000000004,81.16666666666667,207.297816,5753.346307142984,664.0,286.8330000000001,120.0,99.0,7742.673591460088,2303.7229759999987,61.22176539849,291.1756,142.25,364.19747199999995,7884.180579616208,665.0,389.7239999999999,127.0,79.0,11053.016318392132,2111.073018,72.356931057282,394.451,154.16666666666663,501.41884000000005,8746.167861294063,676.0,434.436,134.0,85.0,13284.284195905659,2232.2563789999995,69.48609468626199,437.9425,166.55555555555551,566.44446,8302.539705064752,616.0,375.654,95.0,80.0,10610.30374316453,1946.8599439999994,57.219837750131,377.63020000000006,211.66666666666666,479.90707199999997,6984.98444189386,385.0,334.178,72.0,22.0,10339.84447225037,1127.9111879999991,39.28764857147,334.222,168.33333333333331,434.7623520000002,4506.378129364066,123.0,175.99999999999997,29.0,0.0,5302.221196143335,232.97903999999997,15.313498024735003,174.63600000000002,97.0,228.66624000000004,1679.8929667105926,6.0,29.040000000000006,6.0,0.0,1109.5059121454938,6.0963840000000005,2.6676774290939997,29.040000000000006,6.0,40.310784,186.50246658558157,205.42857142857147,3.626296428571427,0.6404208067993267,12.107142857142856,81.42857142857144,33.38428937476294,974.02259125,5.55418598709868,3.423142857142855,60.749007936507944,2.248328428571428,1282.6317567631686,-16.734693877551017,-0.45680012755102095,-0.4285501658285005,1.8609693877551015,16.979591836734702,2.732332991667019,-77.33256306250017,0.14791476288091926,-0.42600204081632853,-6.655789399092967,-0.25516812755101914,-10.35829896546186,4.000000000000021,1.1999598214285716,0.1812620677852657,-3.223214285714285,4.142857142857151,-2.2139438198108112,10.676098812499914,-0.7971352506160421,1.0195857142857137,25.654513888888893,0.9028741071428567,-166.08679193114682,-87.0408163265306,-0.7689520408163255,-0.11738047414724123,-1.3673469387755104,-5.897959183673468,-16.56353579560721,-416.53381475000015,-2.5499926737242173,-0.8334040816326518,-13.254535147392296,-0.3810167551020418,-638.2866829015334,98.16326530612244,0.7777385204081638,-0.05002270722958399,-4.65561224489796,17.73469387755102,-0.061131936602325965,465.1642141250001,0.7641457583552874,0.9515591836734711,2.857922335600902,0.2564709489795884,454.75404084468306,-65.99999999999999,0.12923303571428496,0.25795999917525825,-3.7767857142857157,-12.57142857142857,-16.943794773270035,-320.64489556250004,-2.7339938618682766,-0.05391428571428637,2.1014384920634948,0.10859260714285895,-651.8843963550257,5.612244897959177,-0.8363676020408161,-0.17718441515890626,1.492346938775509,-29.102040816326543,5.136034076076935,30.11537762500008,0.12151504529209098,-0.636124489795918,-11.17453231292517,-0.6102880306122442,128.02591446750284,-68.265306122449,-2.121660586734693,-0.02772703315386658,2.996173469387754,-39.83673469387757,8.816058493727208,-309.79992218749993,1.6872878413651158,-2.019912244897959,-32.618020124716544,-1.2655200153061192,74.14584241139333,27.551020408163264,0.2637007653061227,0.041432325157911135,0.6198979591836733,7.83673469387755,2.4058360764377444,131.34420937500005,0.5831653847657825,0.2866408163265314,2.7144982993197266,0.11989105102040722,168.37449404800432,0.8048519228298655,0.6553484579174856,0.5057749310264367,0.39772263242737516,0.37778099293950307,0.2774282885956756,0.21868259774383558,0.16013667483033725,0.1602628828665095,0.1069553593881463,0.13144585576580214,0.062711717173814,0.09622504486493763,0.03564424524849254,,,8.028631339250602,5.791226224199491,3.554695073897474,2.2902056618822475,0.4260740527992044,-0.33441890896362714,3.047041087551807,0.9727453613472933,6.021997513559119,0.9889199773815834,14.5378024948416,11.05199001530887,16.013900192312466,11.802790700878061,1.8859714432729051,0.7416207843492095,3.500724630577152,2.339908665450483,7.008290217244476,1.2087476323843,3.713650783984964,2.535871720796584,20.79276638681267,14.701442701142764,0.29061919667587277,0.5594327421932885,0.7956273292965585,0.8104855148448806,0.8104855148448806,0.8104855148448806,3.5769972486329675,123.26046567326583,0.0,1.0,3.0,0.0,0.0,2.0,0.0,2.0,0.0,3.41024529647342,2.117963175314516,0.9824919644402472,0.911063393011676,0.911063393011676,0.911063393011676,139.5048502485253,469.66170518994994,47.61356337559893,16.7736323282125,33.12770477602565,,6.0,92.0,5.969305287951849,4.794537184071822,12.338727669087403,12.462662452073968,6.4208216229260096,0.0,0.0,0.0,13.847474399381248,10.84019487200289,5.066666666666666,7.25,1.5,0.0,5.75,0.0,0.03939393939393942,-4.25,0.10047619047619044,0.0,-0.10047619047619044,0.12337662337662325,0.1880484429065744,0.0,0.5261904761904767,0.8757575757575758,0.4257142857142862,0.5261904761904767,0.7523809523809526,10.440050792587822,0.35646425210872845,0.35646425210872845,3.904225393959745,1.1865591627291434,3.871190147535223,14.344276186547567,5.0577493102643665,0.5259515570934256,0.40789473684210525,0.0,0.2960526315789474,0.875,0.30615273804563264,-0.3995983238850505,-0.08047252770466484,-0.014271368710180376,-0.044399813765005604,0.6938472619543674,0.9056270562175102,0.05184916399003907,0.032343823436339646,0.047664581906184736,-0.9685623629955666,1.168289290681502,0.9360376535288364,1.6988745355386357,1.4867256637168142,0.693859649122807,1.4995647437192734,1.1772799386802726,1.4687395748297192,0.9476817460979886,0.866040663019515,0.8971794219947148,1.3760262161039598,0.9468507848201865,0.46259289956962596,0.5068951845477446,1.8659924146649813,0.8357142857142855,1.3225717203759677,0.9618280906100711,1.3575487661997594,0.5068918644997434,0.3791949048746632,0.3881258977588002,1.2722267924210178,1.102680397611061,0.8166468833429665,0.6867870093221736,1.000260281103592,0.8240712074303405,1.304166547935491,1.1105659179110414,1.3101696973869545,0.8480790049932001,0.8170975845225,0.782196168497662,1.2832353348822703,0.703501123355087,0.6265483378850716,0.7268424795390726,1.1722260040844112,0.7269230769230769,0.896447376908753,0.707477091372301,0.8600111121543265,0.6251188580637291,0.6215676052534057,0.6119958951482231,0.8007413024419393,1.1630737134909594,1.1656816330711282,0.9458560233644681,0.8849557522123894,1.144736842105263,1.1728162325798106,1.162332091559982,1.1513180275669725,1.1704970369752108,1.2034294112843962,1.1912682558642456,1.1638871047094703,0.9483537959810079,1.3112173879584494,1.4227037383958374,0.538297223069881,1.2491379310344826,0.617048077684171,0.9383111999198485,0.6498804907448879,1.2702052315591648,1.2826944248133956,1.3316055531050455,0.692875965211311,1.4457579972183585,2.6265041885648714,1.805790751191366,0.0,2.1038112522686023,0.15252778636037942,1.4045930450730635,0.18709074363917663,2.542518326430643,2.8199694224905185,2.812067073690308,0.5268503929360312,0.0,0.0,1.5706025626987312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5,0.0,0.666666666666667,0.875,0.4800000000000002,0.2222222222222222,0.0,0.0,0.0,0.0,1447.0367601774549,1855.802219775263,927.0303965609318,747.6062272118085,7.6502036374021944,0.4546995841313252,4.171659224955465,0.8338515264232459,0.0,0.875,1.3971096255841837,2.689391746743088,3.8248629576173565,3.8962915290459277,3.8962915290459277,3.8962915290459277,0.35,0.0,0.05555555555555559,0.0875,0.043636363636363654,0.027777777777777776,0.0,0.0,0.0,0.0,0.5644696969696971,11.0,5.625,6.4,67.58949237785829,1.0,3.2277172697634757,32.44382167547626,,30.484440823434827,30.304016407320958,30.540105598541395,30.487151825073788,35.60342256698468,30.42523381410049,30.493574664717453,33.21440994068333,-0.08447947251841546,-0.13063428766088822,-0.6939537089896222,0.15940128919479948,0.21624431448992856,0.08487616669231644,-0.08233559753670137,0.027617564083804082,-0.12905680908351871,-0.1136199643752513,-0.11769579371904065,-0.008374921025653207,0.01112656467315722,0.1890886032173435,0.1617347896087004,-0.15212810788032025,0.029072681704260705,-0.03789539264939318,0.006263333055784596,-0.08201127195829144,0.1702004364052607,0.24131624071201113,0.22947183990921938,-0.07399375365995531,-0.174466170334615,-0.08731423841406812,-0.07547090272586181,-0.04650355717508243,-0.029824561403508757,-0.20429607977235717,-0.1760882399046597,-0.18904606106766159,-0.10024892354070405,-0.08984096945710597,-0.06978039778669126,-0.20490988693187465,0.17153453871117286,0.07698989652734282,-0.028039172168134535,-0.138037969896377,0.07818263607737291,-0.0006573390707327868,0.17143547499143633,0.049387747260486385,0.09978705600106176,0.016887861600852504,0.04094886375830406,0.12727350577626617,-0.14279091330551688,0.015838998794847996,0.1790211799883975,-0.13864306784660774,-0.06861598440545807,-0.22557243529285564,-0.14630958640223657,-0.2187734414863013,-0.006999972178171082,0.015374286673380347,0.02146633932082955,-0.2258843170320068,0.013188815884130239,-0.11134326106644313,-0.1335642174046659,0.05950564540738477,-0.17253478523895951,0.07427040601488241,0.014926202219945834,0.010561842148338663,-0.0897112957585142,-0.08880147988388429,-0.13104037832629895,0.048186561384411075,-0.3208479209630234,-0.5649013855313236,-0.04180209056003158,0.2389380530973451,-0.4723532970356928,0.25497192350414005,-0.3070946905514087,0.29331129814374257,-0.5697279312935138,-0.5184160512215515,-0.5434621466157601,0.055814218576230146,0.6258692628650901,0.33935548173411917,0.30191219380151146,0.23893805309734512,0.44912280701754376,0.3363029506886385,0.6292868864195353,0.48997971414023644,0.3907687171354658,0.20852453662121323,0.24884779479662764,0.6126057886431788,1.5000000000000004,5.523172641296244,1.1905507889761497,13.3987697727373,23.6314615794369,25.561945131426736,25.633945131426735,25.633945131426735,25.633945131426735,20.332572134500595,15.229649836735096,1.7194101660764622,3.383512131689037,0.0,5.102922297765499,882.3376324761894,654.06360915015,410.5130010363194,0.0,12.0,10.0,11.0,8.0,4.0,0.0,0.0,0.0,159.125928784,10.0,3.8066624897703196,4.48863636973214,5.2832037287379885,5.993961427306569,6.790097235513905,7.509335266016592,8.304247465078474,9.02653771890043,9.820594954446562,0.5238095238095237,0.9638571428571429,1.1514097283629845,0.4734618266588962,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5859598160821216,0.9484593837535015,0.9953959005306421,0.5283249323951035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,1.0,3.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,10.84019487200289,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,13.847474399381248,24.801390121161372,6.4208216229260096,0.0,110.16351596517794,-143.7882169990839,-28.956581107661705,-5.135293464252996,-15.97646855545376,249.66836621370322,325.87348819086606,18.656982267937224,11.638338863959502,17.151236220571896,0.5,0.7026269676371847,0.3686889751340565,76.63275920074916,0.23227554792964017,21.96810847914628,0.2973730323628155,3.0,0.5,0.29061919667587277,0.5594327421932885,0.7956273292965585,0.8104855148448806,0.8104855148448806,0.8104855148448806,1.0821,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,44.2522,9.901064578912528,0.0,0.0,17.569479569484972,26.689117645233267,6.544756405912575,0.0,0.0,0.0,3.044522437723423,0.0,4.23410650459726,0.0,5.564520407322694,0.0,6.966967138613983,0.0,8.412054873292933,14.666666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.988,0.0,10.294544595616024,0.0,0.0,0.0,0.0,0.0,-0.7489814814814812,32.23947239416356,5.733667477162185,0.0,0.0,17.62058908870513,4.794537184071822,11.835812092322787,26.689117645233267,0.0,0.0,0.0,0.0,13.256931146449093,16.406874850299403,11.88839404374757,64.88764335095246,,60.85199852998602,60.47037893757373,60.97629884122517,60.8577524980235,71.69462156067121,60.727081069838356,60.871285221516224,66.63196780579563,11.88839404374757,64.88764335095243,,60.326024504012,59.85093649076971,60.50869323986805,60.33327231346746,73.88961548082949,60.17184155720901,60.34989673588446,67.54613346572614,4.271558410139713,46.8122419338726,,44.520149224838896,44.31547583536761,44.629771531698125,44.52336458273919,50.88567731991506,44.454998776708564,44.53031286630235,47.769761129021944,1.0807630948861429,5.8988766682684055,,5.531999866362366,5.4973071761430665,5.543299894656834,5.532522954365773,6.5176928691519285,5.520643733621669,5.533753201956021,6.0574516187086935,2.135779205069857,32.44382167547623,,30.484440823434568,30.304016407320642,30.540105598541153,30.487151825073532,35.60342256698468,30.425233814100217,30.493574664717197,33.21440994068332,26.55686274509804,0.0,4.147838246409675,0.0,0.0,5.406018518518518,8.472339380196523,27.871085214857978,1.585277777777778,0.0,0.0,0.0,0.6762962962962958,0.0,0.0,0.0,0.0,14.793098107062898,252.82758423452796,39.11906951635714,75.30296890880646,107.09616281328599,109.09616281328597,109.09616281328597,109.09616281328597,66.0,82.02327665550298,107.00429794435323,39.22217136155029,63.32000000000001,63.32000000000001,1.0,4.343805421853684,4.321928094887362,3.0257083515083085,3.261867275772858,,3.266732589237936,3.267252564211406,3.2667452269502504,3.266725397583293,3.2506405198829627,3.2669150863778706,3.266704849066986,3.2583369779624975,0.2750643955916644,0.29653338870662344,,0.29697568993072143,0.2970229603828551,0.2969768388136591,0.2969750361439357,0.2955127745348148,0.2969922805798064,0.2969731680969987,0.29621245254204526,1.2024554096624716,1.277609995184215,,1.2791004569880804,1.2792596171215538,1.2791043255899706,1.2790982555031523,1.2741622397685715,1.279156320771695,1.2790919652343253,1.2765271155632842,140.99999999999997,35.06125732855588,37.20381473606896,,36.83855055881484,36.80426526334087,36.843855837574154,36.839047450035714,37.64823962022302,36.82710243486231,36.84030057928661,37.307046896607396,3.1873870298687166,3.3821649760062695,,3.3489591417104396,3.3458422966673513,3.3494414397794685,3.3490043136396106,3.422567238202093,3.347918403169301,3.349118234480601,3.3915497178733998,3.652406920849357,3.7117214824943963,,3.7018550461941597,3.700923922158005,3.701999050143758,3.7018685344520375,3.723596376522132,3.7015442331196953,3.701902550205014,3.7144924134520654,0.0,10.294544595616024,8.472339380196523,5.406018518518518,-0.07268518518518541,0.0,1.1086111111111112,4.624504913076342,0.0,172.86509629155924,39.6403452971932,-51.73958475792575,-10.419501081435342,-1.8478423127830623,-5.748842750880637,89.838638135203,117.25967060791672,6.713377045249861,4.18784537885417,6.171561610942985,172.0,10.0,1.0206207261596574,0.6769221581325847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.85337115112852,7.208833037092342,5.0577493102643665,3.977226324273752,4.533371915274037,3.329139463148107,2.186825977438356,1.6013667483033724,1.7628917115316045,1.1765089532696094,1.0515668461264172,0.501693737390512,0.3849001794597505,0.14257698099397015,0.0,0.0,0.911230926418479,0.610734393031994,1.441814829597191,0.8949429464654874,1.5730971129696416,0.735244173840679,37.76999797798807,22.311981864491443,19.14182282364653,18.941297472070993,18.941297472070993,18.941297472070993,44.0,44.0,27.399480999999973,17.352518999999997,0.0,10.03,6.083333333333333,2.666666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,28.0,0.0,1.0,27.0,0.0,1.0,1.0,26.0,1.0,10.0,26.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,2.0,2.0,0.0,11.0,3.0,0.0,1.0,2.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,2.4849066497880004,0.0,2.70805020110221,2.4849066497880004,2.6390573296152584,2.3978952727983707,1.9459101490553132,0.0,0.0,0.0 +134018,Cc1nc(-c2ccc(OCC(C)C)c(C#N)c2)sc1C(=O)O,0,29.94736842105263,6.2893,3.3157894736842106,8.380116959064328,159.83041894883118,118.75322792105268,1.6972583809890525,6.371589473684211,5.589271532741319,7.82489339473684,237.00495402598008,28.512820512820515,6.357051282051282,3.8461538461538463,7.649572649572651,143.45654900527305,109.25503879487184,1.9701767342564103,6.519358974358975,3.5261949984172203,7.807446769230767,279.78779883362444,25.723076923076924,6.219858461538459,3.5692307692307694,6.158974358974359,151.15018617189526,98.26831236923076,1.7154953773921535,6.348812307692307,3.43019943019943,7.749769107692309,237.0921206845487,23.974358974358974,6.233038461538463,3.0128205128205128,4.9743589743589745,153.65744961795502,89.82790296153848,1.5628280847646283,6.351626923076923,3.145417853751187,7.7888575128205115,213.42777451310394,19.022988505747126,6.188908045977011,2.7126436781609193,4.593869731800766,161.16348767926854,68.85046510344829,1.3667326491342298,6.270836781609196,3.4420675464736767,7.8122963218390815,181.04723770507,20.78787878787879,6.237500000000001,3.090909090909091,4.48989898989899,152.6411478215497,75.71861781818184,1.6099042363719247,6.354727272727273,3.4833988028432477,7.765195818181817,217.80765411420467,19.82857142857143,6.069395714285714,2.7142857142857144,4.033333333333334,154.0713612259713,72.7076149,1.472036952554171,6.183165714285715,3.450661375661376,7.603718685714288,199.02853933062127,15.191780821917808,6.007383561643837,2.2465753424657535,3.3744292237442925,159.30251301856012,53.50268254794519,1.228185147423096,6.089842465753423,3.4197108066971085,7.5931451232876706,161.02410512100272,14.913793103448276,6.061603448275861,2.1724137931034484,3.1724137931034484,167.38905347966022,52.21631222413793,1.1139989276626379,6.118948275862067,3.5631119625372505,7.694448931034481,144.10069597929183,10.86426592797784,0.13367783933518004,0.025517748666054187,0.6537396121883656,4.309633733456449,1.5857724232262371,49.43664854085871,0.3014598971820276,0.12422077562326861,2.083690518260129,0.08551581509695291,51.0173288836975,0.43937779671851745,-0.006463669294694259,-0.01351852887823016,0.274735421549826,1.6150926123225298,-0.05381853487368287,2.059985583972597,0.014968818111111436,-0.004941963207614251,-0.10366454586898481,-0.005835199037573689,1.20285563479408,2.6005113999573832,0.019456816535265264,0.0002734834142570104,0.03128063072661412,0.834945663754528,0.06088059012797371,12.039955565214155,0.053727521144882474,0.020752098870658393,0.4039985128012215,0.01221388976134668,10.207991883626445,1.4454506712124449,-0.008968527594289386,0.0002806816494627549,0.04801477377654662,0.24179826534397172,-0.19718051022229519,6.2277642243234705,-0.01795811831401483,-0.0041197634775197375,-0.1679432057454355,-0.002346997620569645,-1.6982395008753859,-0.6071576400165565,0.009991307670264583,0.0006822108106987714,-0.007641608558601585,0.49368682848480344,0.2545159829563138,-2.013780039951286,0.02514139775458329,0.008483338109338668,0.2650056213604798,0.00031309990607189796,9.228009732024605,-2.02614790564929,-0.030185016368672882,-0.0039627882860747915,-0.13061361537815833,-1.1910797727972242,-0.09722634649662296,-9.409541138944844,-0.012697094467825897,-0.030471254092168238,-0.4467140282134639,-0.017111564299504726,-7.442496339529062,0.5319746735259201,0.013276822318955293,0.00628665166411039,-0.07779976256430549,-0.35065294815987347,-0.177540657052696,1.8706639700435315,-0.0574421634440487,0.01279208151958847,-0.059507890909860806,0.01314950595567866,-8.246007372128336,0.045611505331461105,-0.0029887982392896206,-0.002562455877649671,-0.03081243122225173,-0.11857389207216551,-0.442327073173293,-0.04771792946723832,-0.04205397930330097,-0.0016289948013508515,-0.21298636060571946,-0.003507378182749597,-7.8667259108853695,0.2546088451619064,-0.007947349317031222,-0.00692331862285181,-0.06027318750597002,-0.23592935757421382,0.08526867196644154,1.514226676927112,0.004324013230722681,-0.00392304422580952,-0.21972389316894966,-0.009341095949947465,5.188458623658141,,,0.4833333333333334,1.2840909090909092,0.6818181818181818,0.022727272727272728,0.6022727272727273,0.07954545454545454,0.827420381103899,0.022558677581936012,0.030376859400117827,0.8749491957415025,0.23753369813098735,0.23600824075858098,1.7023695768454017,0.47354193888956836,1.9863677721490818,1.4748420528315769,0.1716612985292079,0.24678551442092977,0.0,0.511525719317505,8.318109562421062,1138.0,238.9934,126.0,318.44444444444446,6073.5559200555845,4512.622661000002,64.495818477584,242.12040000000002,212.3923182441701,297.3459489999999,9006.188252987244,1112.0,247.925,150.0,298.33333333333337,5594.805411205649,4260.946513000002,76.836892636,254.25500000000002,137.5216049382716,304.4904239999999,10911.724154511352,1672.0,404.2907999999999,232.0,400.33333333333337,9824.762101173192,6387.440303999999,111.50719953048998,412.67279999999994,222.96296296296293,503.7349920000001,15410.987844495665,1870.0,486.17700000000013,235.0,388.0,11985.281070200492,7006.576431000002,121.90059061164101,495.4269,245.3425925925926,607.5308859999999,16647.366412022107,1655.0,538.435,236.0,399.6666666666667,14021.223428096362,5989.990464,118.905740474678,545.5628,299.4598765432099,679.6697800000001,15751.10968034109,1372.0,411.67500000000007,204.0,296.3333333333333,10074.31575622228,4997.428776000002,106.25367960054703,419.41200000000003,229.90432098765436,512.5029239999999,14375.305171537508,1388.0,424.85769999999997,190.0,282.33333333333337,10784.99528581799,5089.533042999999,103.04258667879198,432.82160000000005,241.54629629629633,532.2603080000001,13931.997753143489,1109.0,438.5390000000001,164.0,246.33333333333334,11629.083450354889,3905.6958259999988,89.65751576188602,444.5584999999999,249.6388888888889,554.299594,11754.759673833198,865.0,351.5729999999999,126.0,184.0,9708.565101820293,3028.546109,64.611937804433,354.8989999999999,206.66049382716054,446.2780379999999,8357.840366798926,412.8421052631579,5.079757894736842,0.9696744493100591,24.842105263157894,163.76608187134508,60.25935208259701,1878.592644552631,11.45547609291705,4.720389473684207,79.1802396938849,3.2496009736842106,1938.6584975805051,17.13573407202218,-0.2520831024930761,-0.5272226262509763,10.714681440443213,62.98861188057866,-2.098922860073632,80.33943777493128,0.583783906333346,-0.1927365650969558,-4.042917288890408,-0.2275727624653739,46.911369756969115,169.0332409972299,1.2646930747922422,0.017776421926705678,2.033240997229918,54.27146814404431,3.9572383583182913,782.5971117389201,3.492288874417361,1.3488864265927956,26.259903332079396,0.7939028344875342,663.5194724357189,112.74515235457069,-0.699545152354572,0.021893168658094885,3.7451523545706364,18.860264696829795,-15.380079797339024,485.7656094972307,-1.4007332284931568,-0.3213415512465395,-13.099570048143969,-0.18306581440443231,-132.4626810682801,-52.82271468144042,0.8692437673130187,0.059352340530793114,-0.6648199445983379,42.9507540781779,22.142890517199298,-175.19886347576187,2.1873016046487463,0.7380504155124641,23.05548905836174,0.02723969182825512,802.8368466861406,-133.72576177285316,-1.9922110803324102,-0.26154402688093625,-8.62049861495845,-78.6112650046168,-6.416938868777115,-621.0297151703597,-0.8380082348765092,-2.0111027700831037,-29.483125862088617,-1.129363243767312,-491.2047584089181,37.23822714681441,0.9293775623268705,0.4400656164877273,-5.445983379501384,-24.54570637119114,-12.42784599368872,130.9464779030472,-4.020951441083409,0.8954457063711929,-4.1655523636902565,0.9204654168975062,-577.2205160489835,3.3296398891966605,-0.2181822714681423,-0.187059279068426,-2.249307479224376,-8.655894121268082,-32.28987634165039,-3.483408851108397,-3.069940489140971,-0.11891662049861215,-15.548004324217521,-0.2560386073407206,-574.270991494632,14.76731301939057,-0.4609462603878109,-0.401552480125405,-3.495844875346261,-13.683902739304402,4.945582974053609,87.8251472617725,0.2507927673819155,-0.22753656509695216,-12.743985803799081,-0.541783565096953,300.93060017217215,0.7398025637731542,0.6090631862165564,0.45295315893784804,0.33117731252199484,0.2996680160081346,0.1957927749525681,0.18307303796377686,0.10261168013312401,0.11726419425906462,0.05504844516910322,0.07450850382651594,0.03003759342611817,0.0492379375048299,0.016667587115400364,0.032106903971576874,0.008988355486185737,16.004503742845017,5.686951590063638,3.5548916588450106,2.179920249538907,0.4751569757907601,-0.5227505146493242,3.2110066979752303,0.9113209668636336,6.022141256510996,0.6531890454929319,14.563333049358857,10.311449118294465,32.06224598191112,11.699336372840188,2.9364193676698918,0.7415704202275409,3.500955565887495,2.231930608516247,7.008293998887276,0.6049164339669681,3.713882468428156,2.4287953515438003,24.44071706550486,14.701170298202221,0.30636763743056844,0.6864495965544356,0.8073064027845072,0.8298334739718184,0.8298334739718184,0.8298334739718184,1.8789302770380987,744.3345726791586,1.0,2.0,4.0,0.0,6.0,0.0,2.0,1.0,0.0,3.546181250056933,1.4349822371837053,0.763672368648785,0.6385437501707978,0.6385437501707978,0.6385437501707978,77.62539434266213,1119.1148047933361,65.01034991269535,29.450389599824632,62.55597153436422,,12.0,412.0,5.969305287951849,10.056428738810308,4.877147193701299,40.102754519053434,11.336785877934737,0.0,25.122838405075452,13.847474399381248,11.053199833739482,9.843390348640755,10.633333333333335,28.25,15.0,0.5,13.25,0.0,0.016666666666666607,1.75,0.18267543859649094,0.05568268497330264,-0.1269927536231883,0.024044795783926154,0.14739253996447566,0.0,0.6201754385964913,0.8530303030303027,0.43750000000000033,0.5644927536231886,0.8289855072463765,18.20324838428578,0.49629090680259225,0.6682909068025922,19.248882306313057,5.225741358881722,5.192181296688782,37.452130690598835,10.417922655570504,0.5666074600355243,0.24137931034482757,0.0,0.37617554858934166,0.3125,0.430563383785484,-0.862038096952177,-0.07171435279571667,-0.02268521307768887,-0.06631062284247514,0.569436616214516,1.1400785005466552,0.04459033731465148,0.03000206580385935,0.045603140021866204,-4.1538575282468315,0.7388122883405901,0.7491026807306901,1.467772437244677,0.782893307257714,0.43512831500261856,1.0864429716211121,0.73737622264463,0.916331572157334,0.7301309740046957,0.6724244358693454,0.7988593362525708,0.9058748276303309,0.7087082728592162,0.6710799838877843,0.8799193625236752,1.1800684485006518,0.7249134738993328,0.9697928111726811,0.6998149669876116,0.8451617966877933,0.6501538163065871,0.4095922273938333,0.6891684107056678,0.7764055129389797,0.8565856313497823,0.9811294363386563,0.9662346453859426,0.8879155801825293,0.8968084687535477,1.134603736360584,0.8569106795567175,1.0778200549962569,0.9423187563779221,0.7596722131659317,0.9551032472731229,0.9945488229573212,1.3015885924962045,1.030525400758509,1.0921066833428867,0.9158995714007402,0.9494626793873451,0.8425488816518669,1.2655661341323081,1.0600575858554022,1.0312232315773469,0.7052499913837033,1.1114568153672248,0.817987610625905,1.031339336763865,1.0776730496329645,0.9870703126523489,1.2863058551617874,1.1975537585539726,1.0820091987809324,1.0384754282911322,0.9724907462058828,1.0910073361880976,1.2432759237301492,1.051807737211075,1.083386232267112,0.7176212938005391,0.591081319665048,0.49396365051646135,1.063861985472155,0.9331350623380329,1.0979075529432853,0.7426085535791792,1.0578010691243678,0.6047556369599935,0.8454685854781872,0.4998210985670594,1.1303381534014412,0.7587231842853449,0.9127214732798264,0.8541789978730208,0.8671203854190852,0.9606408967016452,1.177441452360499,0.7854646456039243,0.954447324552493,0.9179174952294731,1.1345364822404742,0.9123366823316881,1.1319549782344787,1.033750813272609,1.1226300369574749,1.1900827866140418,1.027177089421391,1.1419954169108844,0.9331970610050258,1.0280820509880633,0.9360251652356255,1.1027795835389331,1.4321686976681798,1.1160773446440113,0.8809538830519018,5.5,0.10611570247933885,2.88888888888889,1.5069444444444444,1.3933333333333335,0.9377777777777778,0.4873469387755103,0.3802437641723356,0.24490583270345173,0.08469135802469138,4230.439996819533,4636.330967657303,2160.6489854179677,1997.2955010913854,15.287938692998843,0.4817391016678658,7.9231408406801735,0.9295300942405598,1.0,0.3333333333333333,1.701746263386652,3.81294527625988,4.4842551447948,4.609383763272787,4.609383763272787,4.609383763272787,0.23913043478260865,0.013264462809917357,0.09027777777777782,0.04709201388888889,0.04644444444444444,0.03606837606837607,0.019493877551020406,0.020012829693280818,0.017493273764532268,0.00705761316872428,0.5363351039495711,18.340264650283554,8.203125,4.75,132.36498414091062,1.0,3.998896282643281,107.06945948030855,,76.836898951036,81.24803825580409,83.72636385482394,76.84981453639287,106.25026632426771,81.58390522127928,81.39056840126264,95.48637165945442,0.0404424744047386,-0.04835258653820276,-0.5297696538650223,0.42025206431986095,0.37476331220082115,-0.03393837229442396,0.04166919976927739,0.04965442584913031,-0.03978370914863729,-0.049750452363503665,-0.06823532034347186,0.023577393429126594,0.2393637469109167,0.14555005251453676,0.010717380198231225,0.047848761408083466,0.1937393559161877,0.03839175737721104,0.24354311873029372,0.17822443929396256,0.1670581975240153,0.19388604462171197,0.14282609301565183,0.20008871704940223,0.13304632644255293,-0.0670906085772523,0.010999467591595993,0.07344632768361581,0.05610645365680359,-0.12434351066664,0.12597464448214585,-0.059570505005418196,-0.03316485070109349,-0.08059892017249627,-0.027445187979659134,-0.03328750324711836,-0.05588574911932098,0.07474169032020826,0.026734757036239037,-0.01168907071887785,0.11455424266155735,0.1604996903896864,-0.04073455825564155,0.08339881353904398,0.06829242585850992,0.12718089324596926,0.003661309966079646,0.18087990755183184,-0.18649653083615345,-0.22580419102217703,-0.15529537256342757,-0.19979455572675917,-0.27637610211528213,-0.061311664317391136,-0.19033533657056034,-0.04211868506065049,-0.24529917752711622,-0.2143859773314455,-0.20009824241404492,-0.14588173278329547,0.048965542361768775,0.0993195460443175,0.24636388367886908,-0.11900726392251815,-0.08136490705409431,-0.11195847175314817,0.037839619498021865,-0.19054661658483865,0.10297859963766239,-0.028558891250102532,0.1537669487307173,-0.1616314995817692,0.004198305309703584,-0.022358217743148827,-0.10041857184127145,-0.0471325748781054,-0.02751368199846205,-0.27893477443212394,-0.0009652339079539363,-0.13950107359689015,-0.013113706569432447,-0.10221592829608976,-0.04101438054204516,-0.1541971342486174,0.023435439343051558,-0.059451509364272875,-0.27131384956627386,-0.09219754529514906,-0.05474464239098847,0.05377106495077228,0.03062963857017177,0.014343576943873747,-0.03158122468746419,-0.10544938955350146,-0.10923237928980818,0.10169992700884235,3.596115466624322,12.476297700476525,8.167281899722875,19.02753572134724,40.29105830944523,42.34452884604172,42.470658493467525,42.470658493467525,42.470658493467525,43.7000909872798,32.44652516229469,3.776548567642574,5.429281317260455,0.0,11.253565824985111,5982.958723505903,5326.34601828515,734.6064797738381,63.0,32.0,40.0,50.0,59.0,65.0,66.0,70.0,76.0,316.0881633720004,23.0,4.709530201312334,5.541263545158426,6.415096959171596,7.274479558773871,8.153925132007862,9.024131268455035,9.906532910722088,10.782387895191723,11.66647882357954,0.7280701754385966,0.9924210526315794,1.117157876975326,0.6931694192604146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7074485975417588,0.9801857585139314,1.0131003948326758,0.662684253377184,3.0,1.0,0.0,0.0,1.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,9.843390348640755,21.703504036630243,0.0,0.0,0.0,0.0,9.77851570501903,5.261891554738487,11.336785877934737,13.847474399381248,31.040744451236847,5.563451491696996,17.864261451058375,240.67022759723724,-481.8498571962501,-40.085874134463694,-12.680259399901319,-37.06537363048078,318.2956219398994,637.2649475970859,24.924475778231646,16.770130199923315,25.490597903883437,0.5,0.8071001691343601,0.24570968107613503,11.77176381449715,0.17347848762910845,57.46576997883316,0.19289983086564005,6.0,0.21739130434782608,0.32427015408031046,0.7265621078973138,0.8544811515226745,0.8783245865086657,0.8783245865086657,0.8783245865086657,3.723200000000002,,1.6607142857142858,1.2038881980944245,0.883001233280407,1.6581557966933946,-3.8591084983466093,1.1101591187270503,1.0973664910406058,-1.6780538154894666,84.29430000000006,14.637927532712576,5.261891554738487,4.9839785209472085,5.917906046161393,20.771211599071872,6.606881964512918,34.333627885631586,0.0,22.38980833462594,3.8501476017100584,0.0,5.1647859739235145,2.3978952727983707,6.658011045870748,4.727387818712341,8.236155661683124,6.823286122355687,9.86250929580757,27.66666666666667,5.201793745275888,4.268881356554967,0.0,0.0,1.1031205908289239,0.0,2.9492635330838812,0.0,37.71200000000002,0.0,11.090685656399177,0.0,0.0,0.0,0.0,0.0,-0.9873670873945943,42.45199932506239,4.736862953800049,0.0,5.749511833283905,22.666693168252678,0.0,24.17275611338278,34.77653826369983,18.19910120538483,0.0,10.571075188549761,0.0,26.340437931895757,26.883046706586835,27.21078616145282,214.1389189606171,,153.90351848982715,162.38663212996326,167.37245487025876,153.93071159306365,213.96049002597186,163.06688688631064,162.68137621243068,191.43039435949697,27.21078616145282,214.1389189606172,,152.54475225606103,161.29218831351406,166.56972647636752,152.57403866849643,216.4162863431016,162.05765132383152,161.68377031148466,192.65079713439846,4.771367229664264,159.97990817828025,,113.44086633510281,120.62403622043215,124.28390797130561,113.4600772613156,159.2253943676685,121.03553933709972,120.65164815771683,141.53312949410014,1.2368539164296737,9.733587225482596,,6.995614476810325,7.381210551361966,7.607838857739035,6.996850526957439,9.725476819362358,7.412131222105029,7.39460800965594,8.701381561795317,2.4263206096174637,107.06945948030855,,76.836898951036,81.24803825580409,83.72636385482394,76.84981453639287,106.25026632426771,81.58390522127928,81.39056840126264,95.48637165945442,37.24705882352939,0.0,5.729324844328833,0.0,0.0,0.0,9.090773633951775,38.497815003641676,0.5352670257599007,0.0,5.613865320819686,0.0,0.3666263052256916,0.0,0.0,9.261923553371966,2.109174855127236,25.18200162833299,451.14143170175424,64.66635800869278,144.89192049787545,170.40169550220241,175.15658300436593,175.15658300436593,175.15658300436593,566.0,118.47382629437247,107.82441783538246,69.72017879286142,111.44999999999999,83.21,1.0,8.475214929718327,5.523561956057013,3.996562568593469,4.606336172575464,,4.588613555151071,4.593907686788649,4.590877592181816,4.588593810972927,4.566377360312757,4.5934492190030545,4.59321690367638,4.581812961657101,0.18166193493606678,0.20937891693524835,,0.2085733434159578,0.2088139857631204,0.20867625419008257,0.2085724459533149,0.20756260728694348,0.20879314631832066,0.20878258653074455,0.20826422552986823,2.173891994172889,2.3158901448952323,,2.3120352811068163,2.313188370129904,2.312528562714765,2.31203097823398,2.307177550767102,2.3130885660642346,2.3130379894298776,2.3105521233217026,234.0999999999998,197.75529052411417,118.45061391848527,,119.85341967211264,119.29796545763284,119.51459196879514,119.85514587344896,121.65631668268931,119.35201793585534,119.3915862192357,120.41074481819095,8.98887684200519,5.3841188144766035,,5.447882712368756,5.422634793528766,5.432481453127052,5.447961176065862,5.529832576485878,5.425091724357061,5.426890282692532,5.473215673554134,6.075487720252717,5.5629534738892366,,5.57472685377138,5.570081635321318,5.571895832806678,5.574741256271619,5.589657353298676,5.570534620721763,5.570866091664263,5.579366131933105,5.613865320819686,15.575902163009983,18.937706058156024,1.613950890796581,-0.08677216076972527,7.310968600403124,0.0,6.264591870088733,0.0,284.56085957626624,134.5264382271857,-269.3376147770499,-22.406634690009227,-7.0878319678171025,-20.718278059773066,177.91638272158713,356.20934281384393,13.931930777647036,9.373930074048527,14.248373712553759,1130.0,32.0,1.7800333143473333,1.0701466661787722,0.0,0.0,0.3989744750195586,0.15907006130165127,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.06846531968814577,0.27537753772002593,0.16098690059252596,0.468373412239897,0.18827204484676974,16.275656403009393,13.399390096764241,10.417922655570505,7.617078188005881,9.589376512260307,6.2653687984821795,7.322921518551074,4.10446720532496,5.863209712953231,2.752422258455161,4.396001725764441,1.772218012140972,3.2004659378139437,1.0833931625010236,2.1190556621240737,0.5932314620882587,3.586629712125171,1.7260075972907838,5.1990182685188735,2.028328418386148,7.124310237838628,2.3260336272975963,71.12969462101154,31.76798018639112,26.722419288040356,26.26918500977269,26.26918500977269,26.26918500977269,110.0,127.0,44.89468799999998,22.825311999999997,0.2894736842105263,67.06,8.88888888888889,4.944444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,11.0,11.0,38.0,0.0,0.0,39.0,11.0,1.0,6.0,32.0,13.0,23.0,26.0,1.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,5.0,1.0,1.0,22.0,6.0,0.0,2.0,3.0,0.0,2.0,5.0,1.0,0.0,0.0,1.0,2.0,3.481240089335692,7.109547504385311,4.038655656361512,4.616357375378656,5.1814323650382565,5.6314357710708185,5.9928698092644455,6.335663551652616,6.674048318295524,7.050975907115029 +6918155,CC(C)C(=O)OCC(=O)[C@@]12O[C@H](C3CCCCC3)O[C@@H]1C[C@H]1[C@@H]3CCC4=CC(=O)C=C[C@]4(C)[C@H]3[C@@H](O)C[C@@]12C,0,19.80722891566265,6.008554216867471,3.2771084337349397,5.975903614457831,162.55367571764407,77.74620114457832,1.3651830820886264,6.070785542168675,4.147841365461847,7.594830602409639,198.01157891192747,22.386363636363637,6.1840909090909095,4.2272727272727275,5.5,143.3397184041006,83.67445204545453,1.7799224240454543,6.3363977272727245,2.569839015151515,7.639156,255.02906607719532,18.857142857142858,6.089599999999998,3.8685714285714288,4.428571428571429,150.78532869444962,69.36945859428572,1.5226951525295882,6.205755428571429,2.475,7.611675931428572,213.19986342782965,15.977443609022556,6.020714285714286,3.236842105263158,3.255639097744361,154.7903937967878,57.062771454887205,1.342823557772015,6.117553383458645,2.533834586466165,7.5854593834586455,182.6162339617256,13.737951807228916,6.029638554216867,2.8102409638554215,2.5933734939759034,159.48835500491805,47.52496333132529,1.1863455664767442,6.1015999999999995,2.524786646586346,7.637208987951807,158.12909397925867,12.670520231213873,5.999971098265896,2.6184971098265897,2.4884393063583814,161.60528412995498,43.168225708092486,1.1118024456850115,6.061755202312138,2.621848908156712,7.627122832369941,145.87192510249696,12.36890243902439,5.933079268292683,2.5884146341463414,2.4359756097560976,163.47291919421386,42.66980439329267,1.0883682719425154,5.989965853658536,2.561356707317073,7.5770221097561,142.89281958244655,13.948096885813149,6.046851211072665,2.671280276816609,2.612456747404844,159.39713872992502,48.39753598615916,1.183994803321069,6.117968166089964,2.830545943867743,7.650914851211074,158.1252855959871,12.221122112211221,5.984422442244225,2.432343234323432,1.9570957095709571,162.11908403480763,41.25129338613861,1.11003719459199,6.045488448844885,2.538091309130913,7.620552079207918,145.2853158591034,7.430396283930903,0.12646828276963268,0.014936816589066466,0.7478589055015243,3.6713601393525908,1.2981193388222498,35.30851123181884,0.23101217831105875,0.11953711714327181,1.6345341204174126,0.08207983974452024,50.86335569005435,0.46199144881827475,0.00030334921284271043,-0.006773887256254872,0.3408596049037332,1.266482138851133,0.026044330786944157,2.214355897973059,0.0068228881160583,0.0016232607318651829,-0.06320809662527438,-0.0013786951662069973,2.802695587601898,0.7373145594425903,0.012872164734670243,-0.0009090271089499299,0.045462953362503326,0.5133558675320904,0.06418246064494135,3.4757778062534506,0.012535877253509952,0.012525285610600843,0.09715167036476371,0.007752360186632929,3.7336375140068925,0.011310392398473666,0.005147805644172895,0.0009243911996750958,-0.06324073356566041,-0.061250527974748954,-0.11310838565393677,-0.019697502495531347,-0.01884162552432851,0.004926384985544199,0.038814034105440716,0.002865681770109699,-2.681661677448725,-0.535672811728843,-0.008046523443170212,-0.0001727655812504314,-0.06390622731891422,-0.3650384671214981,-0.07700296153986047,-2.54458742673102,-0.014172668011810977,-0.007849702424154378,-0.06611637312301417,-0.00491082900275802,-3.440502216512311,-0.5044265088769311,-0.005423641777920187,-0.0002087109307389298,-0.004840589462802815,-0.14733339654320332,-0.07229429550224586,-2.407781067810205,-0.01365375286119299,-0.005641737938591835,-0.0439311014049466,-0.002931333023996535,-3.4420543328684845,0.4195522908560483,-0.0007839601131531544,-0.0005495628528177327,-0.0122212328597375,-0.06362431801847412,0.13488607131060354,2.0616466434015517,0.024154053575204917,-7.793406951342097e-05,0.0012493590288276159,-0.0009723623716139909,4.854260365468054,-0.43189709687124683,-0.0011950097467452905,0.0017007964762506805,-0.08233174495622879,-0.35685644985411274,-0.10547714679115577,-2.0979359966081006,-0.0192083209694403,-0.0017551852635036003,-0.031130598602355435,-0.0002374289386670794,-4.1427007650463334,-0.7832532563751369,-0.021469674475068302,-0.0009343089203546522,-0.07192745693498076,-0.6082164755886242,0.005612848972889373,-3.6201341127683806,-0.00027539225561598395,-0.02010371621281733,-0.18293122920459662,-0.013618750874187426,-1.7541626211954566,,,0.4700854700854701,0.7948717948717948,0.16666666666666666,0.0,0.6282051282051282,-0.46153846153846156,1.6698009402545955,0.023222694329662685,0.036453463560431915,0.6378680666541273,0.1089699222778658,0.36560773114562783,2.3076690069087227,0.4745776534234936,2.0615135403217852,1.7209834934481365,0.0,0.34053004687364935,0.0,0.34053004687364935,6.509743418650618,1644.0,498.7100000000001,272.0,496.0,13491.955084564457,6452.934695000001,113.31019581335599,503.8752,344.2708333333333,630.37094,16434.96104968998,1970.0,544.2,372.0,484.0,12613.895219560854,7363.351779999999,156.63317331599998,557.6029999999997,226.14583333333334,672.245728,22442.55781479319,3300.0,1065.6799999999996,677.0,775.0,26387.43252152868,12139.655254,266.47165169267794,1086.0072,433.125,1332.043288,37309.97609987019,4250.0,1601.51,861.0,866.0,41174.24474994556,15178.697206999997,357.191066367356,1627.2691999999997,673.9999999999999,2017.7321959999997,48575.918233819015,4561.0,2001.84,933.0,861.0,52950.13386163279,15778.287825999996,393.86672807027907,2025.7312,838.2291666666669,2535.553384,52498.859201113875,4384.0,2075.9900000000002,906.0,861.0,55915.42830896442,14936.206095,384.683646207014,2097.3673,907.1597222222223,2638.9844999999996,50471.68608546395,4057.0,1946.0500000000002,849.0,799.0,53619.11749570214,13995.695840999997,356.98479319714505,1964.7087999999997,840.1249999999999,2485.2632520000006,46868.84482304247,4031.0,1747.5400000000002,772.0,755.0,46065.77309294833,13986.887899999998,342.1744981597889,1768.0927999999997,818.0277777777777,2211.1143920000004,45698.20753724027,3703.0,1813.28,737.0,593.0,49122.082462546714,12499.141896,336.341269961373,1831.7830000000001,769.0416666666666,2309.0272799999993,44021.45070530833,616.7228915662649,10.496867469879511,1.2397557768925167,62.07228915662652,304.72289156626505,107.74390512224673,2930.606432240964,19.174010799817875,9.92158072289156,135.66633199464525,6.81262669879518,4221.658522274511,40.65524749600818,0.026694730730158517,-0.5961020785504287,29.99564523152852,111.45042821889969,2.2919011092510857,194.86331902162917,0.6004141542131304,0.1428469444041361,-5.562312503024145,-0.12132517462621575,246.63721170896704,129.0300479024533,2.2526288285672926,-0.15907974406623773,7.956016838438082,89.83727681811582,11.231930612864735,608.2611160943538,2.1937785193642414,2.1919249818551476,17.00154231383365,1.3566630326607627,653.3865649512062,3.008564377993995,1.36931630134999,0.24588805911357547,-16.82203512846567,-16.292640441283222,-30.086830583947183,-5.239535663811338,-5.0118723894713835,1.310418406154757,10.324533072047231,0.7622713508491799,-713.3220062013609,-177.84337349397586,-2.6714457831325107,-0.05735817297514323,-21.216867469879524,-121.19277108433738,-25.564983231233676,-844.8030256746986,-4.705325779921244,-2.606101204819254,-21.950635876840707,-1.6303952289156625,-1142.2467358820873,-174.53157207141814,-1.8765800551603848,-0.07221398203566971,-1.6748439541297742,-50.97735520394835,-25.013826243777068,-833.092249462331,-4.724198489972775,-1.952041326752775,-15.200161086111523,-1.0142412263028011,-1190.9507991724956,137.61315140078383,-0.25713891711423464,-0.18025661572421633,-4.0085643779939,-20.868776310059513,44.242631389877964,676.2200990357089,7.922529572667213,-0.025562374800402077,0.409789761455458,-0.318934857889389,1592.1973998735216,-124.81826099579034,-0.34535781680938893,0.4915301816364467,-23.793874292350118,-103.13151400783859,-30.48289542264402,-606.3035030197411,-5.551204760168247,-0.5072485411525405,-8.996742996080721,-0.06861696327478595,-1197.2405210983904,-237.32573668166648,-6.505311365945696,-0.2830956028674596,-21.79401945129917,-184.28959210335313,1.70069323878548,-1096.9006361688193,-0.08344385345164314,-6.091426012483651,-55.42816244899277,-4.12648151487879,-531.5112742222234,0.7113310699810325,0.6107339515701153,0.42064837462536925,0.34467090291035457,0.2617904968480789,0.1982530292247248,0.15683097067699597,0.10973402651569926,0.0934849322179382,0.06288618509666027,0.0569280010657901,0.03541314059276418,0.033779404725886045,0.019456756507406497,0.02042687033914756,0.011066258430078324,8.030833354692207,5.703491967716074,3.5570160275143836,2.2023886278609153,0.43875229358335754,-0.4869222295018492,4.120989187389673,0.9771781044992949,6.029679066472492,0.9885362970681837,13.644845187711821,10.963972817823262,16.016728472195123,11.71510058750912,1.9821843974101148,0.7411124242659268,3.503198327549697,2.252137779826632,7.0104548290911755,1.0724162241324098,3.716095197565842,2.4481823888372167,20.888523581170755,14.700347936830607,0.2013113968220582,0.4804077142210995,0.7321118425481684,0.8560088301715514,0.8661604159175144,0.8661604159175144,1.3196847673947083,1101.796739889985,0.0,1.0,6.0,0.0,5.0,11.0,1.0,6.0,2.0,5.058632237041497,3.2335770939737527,1.5876438254315337,0.7774617471443461,0.7110789157669135,0.7110789157669135,337.31177175093035,2421.4777480340017,61.5677415449596,29.17443069920484,56.669349881646,,15.0,980.0,35.48330607316413,19.490138947056174,53.17789255744653,12.841643245852019,44.09803426762533,6.4208216229260096,25.99951461304901,6.076020106833881,13.847474399381248,14.210588861400147,18.333333333333332,31.0,6.5,0.0,24.5,0.0,0.029914529914529944,-18.0,0.10681604924370347,0.01161427318469288,-0.09520177605901059,0.013440170940170915,0.1527755102040812,0.0,0.5526104417670665,0.837606837606837,0.44579439252336306,0.5409961685823736,0.824166666666666,65.12223666992922,0.9056850788568447,1.4216850788568447,24.876854599510963,4.249826968836766,14.258701514679485,89.99909126944019,18.50852848351625,0.5612244897959188,0.18181818181818185,0.08181818181818182,0.32727272727272727,0.78125,0.2800949596462388,-0.8843403840262731,-0.047803463757684475,-0.010654703422003291,-0.034013091693318204,0.7199050403537611,2.272947362755029,0.03247275440484953,0.027384907985000345,0.039876269522018046,-4.377942401883784,0.8793547138178694,0.690638943032084,1.408212772871246,0.9682625458780347,0.512201576495622,1.2569121336261841,0.8886386251398898,1.2350876415435297,0.6915252776008027,0.6290837590750203,0.7107176444668963,1.1155808518656412,0.8672846314426375,0.7381086399024053,1.0273109254474757,1.50598602484472,0.8618790809064414,1.1087578248274699,0.8733874597717595,1.0955379010914872,0.7398588913709271,0.5501098746580293,0.7491714257652591,1.0203892234814762,0.9774621900927205,0.8797146526616807,0.9449496110126333,1.447681461028347,1.0283347642393983,1.1764218600544956,0.9823213977719277,1.1647731712984046,0.8799445972596028,0.7800990498947562,0.8906518807243556,1.1015399722255614,1.091520473548488,1.1966019696065382,1.121582593042148,1.1857531055900619,1.177299145975012,1.0744686091737985,1.0892206390565693,1.0670472384502154,1.1830866862936726,0.9658736996479768,1.2159514430058587,1.057824751585485,1.0938527748329747,1.2152400618028179,1.225022474312733,1.0289606370947473,1.1028308432651144,1.0369059594041374,1.0906427420485072,1.0321071849142074,1.2021384120051413,1.0872330745675447,1.2317053328816816,1.036062870814956,0.9627500586074864,1.1467706946421197,1.30408273645846,1.1035520186335401,1.1116657441088091,0.8522599261610918,0.9575248234899361,0.8474330482317808,1.1285374087786246,1.0440366664117562,1.1679135452126157,0.8629054457293553,1.0802493988507798,1.1547488533624035,1.1328061960613713,1.2021924498699732,1.198365991790284,1.097200966023829,1.0790502847137045,1.0889969370731416,1.1432093944957367,1.2681054551770803,1.173056538100166,1.0710685223734562,1.1343359662214565,1.3584376457938714,1.2233853702489925,1.026749200541172,1.2557857557066794,0.9706413612124448,1.127539783427697,0.9677156069932275,1.3381971808687587,1.250191785363093,1.3795805382354114,0.9979864497866262,11.0,0.38802163044587284,8.222222222222223,5.486111111111111,4.257777777777778,2.580833333333333,1.785487528344671,1.2170847505668934,0.8347505668934239,0.5809413580246914,9187.500903927543,10709.453370014724,3745.681367137571,3305.262381815875,15.500518020728872,0.47242137038383236,8.17774205571685,0.8954520593973562,0.0,0.78125,1.3164071943054272,3.141462337373172,4.787395605915391,5.597577684202578,5.663960515580011,5.663960515580011,0.25,0.008622702898797175,0.11746031746031749,0.06609772423025437,0.05192411924119242,0.034411111111111115,0.024458733264995494,0.016903954868984633,0.013042977607709748,0.011391007020091989,0.5943126477034544,29.08884297520661,10.61673469387755,4.466938775510204,231.25769932942845,0.0,4.629703651095154,240.89168424830527,,220.50826451334808,218.65889626930587,224.4989307834992,220.54632720302686,291.18526501375163,220.05638657172696,220.58627561443046,254.58465068634845,0.062175882841859334,0.0023986188963700398,-0.45350274041747685,0.45578063241106703,0.3449626543786753,0.020063125175050166,0.06271450765609046,0.029534755119581865,0.01357955395494117,-0.03867040512383606,-0.016797001194182287,0.05510245145209576,0.09922950691568347,0.10178176261092621,-0.06085815565381747,0.06079081632653054,0.13982716160954337,0.049442650398516086,0.09844022545819481,0.054265006049292984,0.1047815599868332,0.05943691792738715,0.09444901708827334,0.07340525341580943,0.001522178894137007,0.040704321521862055,0.061886761088821074,-0.08456238616728154,-0.016683334145897736,-0.08713250182110151,-0.0005578683951358623,-0.08156117855811996,0.04121217830307598,0.023746236692525412,0.034913345092160895,-0.05272286189275334,-0.07209209189653824,-0.0636248335705427,-0.011566425832455714,-0.08545225155279502,-0.0994286730982129,-0.05931886170783286,-0.07206725341729853,-0.06135030679087155,-0.06566748982867036,-0.04044967449570889,-0.05982990485901714,-0.06764206116241472,-0.06788689184287683,-0.04288539117590124,-0.013972919162152877,-0.006472597206764089,-0.04013046689807558,-0.05569156343347956,-0.0681926533804233,-0.05910403928059655,-0.047196536719468496,-0.02687683350025625,-0.03571319136490194,-0.06767257657641201,0.05646432233545591,-0.0061988673838575875,-0.03679250190566073,-0.016341629109225857,-0.017329903796823826,0.10390883740549016,0.05838950925644424,0.10455749022322708,-0.0006519654428340672,0.0007643517582297798,-0.011846543251552915,0.09543728091886867,-0.05812571501809057,-0.009449086526477562,0.11386606149369465,-0.11008994390595109,-0.09720006654455887,-0.0812538136030332,-0.05941728845019983,-0.08314852104280072,-0.014683182139986813,-0.019045548339122823,-0.0028926584092524433,-0.08144764946871925,-0.10541204350957878,-0.16976331143972456,-0.06255073929464681,-0.0961778437160486,-0.16566516291040773,0.004323831257287767,-0.1025286534739544,-0.001192111418668012,-0.16817969759737403,-0.11191643350821046,-0.16592077806897318,-0.03448774854503868,14.722144557726953,31.981334750635927,14.758257792142457,11.67064921054445,31.217303408142595,38.76874741221419,39.950616093950636,40.01752998797908,40.01752998797908,80.39902807254963,67.11835624447733,0.0,13.280671828072325,0.0,13.280671828072325,10595.254336232309,7717.697591786719,4288.086602290377,736.0,70.0,105.0,153.0,214.0,282.0,377.0,488.0,614.0,540.3087037480012,44.0,5.43372200355424,6.361302477572996,7.325807502595773,8.285261134068948,9.26416545867109,10.239852640559992,11.228504735220818,12.213896955625712,13.208884134059483,0.5863453815261044,0.9701204819277108,1.1277358400325102,0.5423713002037288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6377093427602625,0.9566737538388852,0.9981572319869426,0.5894434387253882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,3.0,0.0,4.0,0.0,4.0,0.0,0.0,0.0,1.0,10.0,0.0,3.0,0.0,8.0,0.0,3.0,0.0,0.0,19.31711625624085,0.0,24.281204451196757,5.783244946364939,0.0,14.383611552215466,0.0,0.0,0.0,58.606538304443674,62.51278204354661,22.665793031116348,18.125838821658,214.81846651806907,-678.243712119849,-36.662804613291684,-8.171610989395772,-26.086296619994197,552.1302382689994,1743.2340359141529,24.90493693166792,21.002819709809067,30.5830532616518,0.4666666666666667,0.8456723450684522,0.14485486147572446,92.74909403143603,0.09764834487941064,12.580006447578127,0.15432765493154774,8.0,0.11363636363636363,0.2064939689364863,0.4927753578944437,0.7509593716981772,0.8780459704576159,0.888458899207675,0.888458899207675,4.703900000000005,,1.75,2.0,1.2119393011481083,1.7448590536908561,-7.5760598503740635,1.811046511627907,1.7394636015325666,-2.7929613464061798,143.24479999999994,33.700727808456314,0.0,0.0,40.419511169600526,109.5813537209121,6.606881964512918,23.80116485057091,0.0,0.0,4.48863636973214,0.0,5.910796644040527,3.044522437723423,7.546974117516527,5.638354669333745,9.29403793099775,7.9658927350845286,11.107795300762092,48.666666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.52,0.0,38.73828667603455,0.0,0.0,0.0,5.404392149848533,0.0,0.4840018004560589,93.60207472269835,0.0,0.0,0.0,53.348214855850856,28.59420041361561,40.419511169600526,85.4823434050966,23.80116485057091,0.0,0.0,0.0,45.01681791690949,52.929875449101786,50.44366789754576,481.7833684966106,,440.9267854369525,437.2152284360476,448.9357108336062,441.0031744545824,585.8671730353682,440.0198989633705,441.0833479672439,510.45836045565375,50.44366789754576,481.7833684966105,,439.26652902669605,435.3177925386118,447.78592226585016,439.3477953523627,589.9465898778776,438.30172663182645,439.4330876273285,511.96226271910325,5.348409375555672,332.0517852918471,,308.0187056183008,305.82902637741637,312.7627586721753,308.06383127866667,395.63994956378986,307.48315777512045,308.111195128646,349.3418365198688,1.2934273819883528,12.353419705041297,,11.30581501120391,11.21064688297558,11.511172072656569,11.307773703963651,15.02223520603508,11.282561511881296,11.309829435057537,13.088675909119328,2.7308193390524576,240.89168424830527,,220.50826451334808,218.65889626930587,224.4989307834992,220.54632720302686,291.18526501375163,220.05638657172696,220.58627561443046,254.58465068634845,79.40392156862747,0.0,7.775003865449392,0.0,0.0,0.0,11.869326639453353,82.84705025491624,7.956157543229698,0.0,19.036885434259936,0.0,-1.3877992535027712,0.0,-2.292921521895412,0.0,0.0,48.92380541420722,648.5873097244923,109.26179712735046,260.74137400197327,397.35383529097743,464.59894778881403,470.10872279314094,470.10872279314094,3122.0,166.561397041929,118.3613950625762,93.99701020519072,99.13000000000001,99.13000000000001,0.875,8.388677769180811,6.459431618637297,4.715242303854276,6.116586122962715,,6.124924435959719,6.125153310432443,6.124353923080464,6.124919478581842,6.107240319650329,6.124982540998422,6.124914265127412,6.11774830206968,0.1209036488167763,0.15683554161442861,,0.15704934451178768,0.15705521308801138,0.15703471597642216,0.1570492173995344,0.15659590563205972,0.15705083438457493,0.1570490837212157,0.15686534107870975,2.9117768579015078,3.1719806709733698,,3.173342972504122,3.173380339527824,3.173249822056733,3.1733421631259926,3.17045155810887,3.173352459113092,3.1733413119382066,3.1721706574605926,416.170000000002,948.6790239421085,303.3486175284703,,301.19575135926965,301.1180718800738,301.3693430863364,301.1973697419892,304.651181608861,301.17659710887864,301.1990691279835,302.8244587015958,24.325103178002784,7.778169680217188,,7.722967983571016,7.720976202053174,7.727419053495805,7.723009480563825,7.811568759201564,7.722476848945606,7.723053054563679,7.7647297102973285,8.216047068972834,7.075859250165477,,7.068736943248937,7.06847900635083,7.069313119112654,7.068742316426893,7.080144008400823,7.0686733472009236,7.06874795851202,7.074129846541107,19.036885434259936,38.73828667603455,11.869326639453353,-1.1879732169284452,-0.4707942434304446,0.0,12.159690412701455,7.437911631242935,0.0,536.2385263464496,164.75474466037733,-520.1781365402916,-28.118490512025417,-6.267206464340863,-20.006851405395835,423.45557111418464,1336.9710859850936,19.10080912254634,16.10808537331438,23.45563308745778,4484.0,83.0,3.995079716963157,2.747210209672277,0.27883876791260265,0.21485818849873856,1.918232150870001,1.0766725118510438,0.42810303400778266,0.24469966722887937,0.0,0.0,0.0,0.0,0.1422588984322123,0.08670334287665674,0.6971680936865722,0.48271407847245573,1.6697086628858155,0.9877211045953653,27.741911729260266,23.8186241112345,18.508528483516248,15.165519728055601,18.325334779365527,13.877712045730735,16.46725192108458,11.522072784148422,14.303194629344544,9.621586319789023,12.182592228079082,7.578412086851534,9.525792132699864,5.486805335088632,7.700930117858631,4.171979428139529,10.740391113683964,6.705949561773095,19.008330189073398,11.448527341383723,33.7890903275743,18.591815194293115,139.99266649690068,62.72745477192103,36.400081467220765,28.33277126462046,27.79130161551698,27.79130161551698,228.0,289.0,88.39289199999997,51.953108000000064,0.3132530120481928,454.07,13.520833333333332,8.159722222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,0.0,0.0,0.0,83.0,0.0,0.0,88.0,0.0,5.0,5.0,83.0,5.0,44.0,83.0,0.0,0.0,0.0,32.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,7.0,1.0,1.0,39.0,7.0,0.0,0.0,7.0,0.0,6.0,5.0,0.0,0.0,0.0,0.0,0.0,3.912023005428146,7.046647277848756,4.406719247264253,4.875197323201151,5.262690188904886,5.659482215759621,5.940171252720432,6.22455842927536,6.513230110912307,6.82001636467413 +2157,CCCCc1oc2ccccc2c1C(=O)c1cc(I)c(OCCN(CC)CC)c(I)c1,0,113.13333333333334,5.875884999999999,3.0833333333333335,6.034139917695473,158.6420400390987,613.4942990826969,2.383348104010351,6.030268333333333,3.0891799078189304,7.483995133333332,241.60486988386802,32.32258064516129,6.1463709677419365,3.7580645161290325,6.068458781362007,142.74007000750166,131.98731757000007,2.0405513708064524,6.337572580645163,2.7020549581839903,7.606154258064512,272.3099542274292,29.036363636363635,6.036263636363639,3.3545454545454545,4.81070707070707,152.83418888539987,119.49512681527271,1.7492786632689454,6.18747727272727,2.48196228956229,7.579449127272727,223.03207356583093,30.935714285714287,5.9645785714285715,2.9571428571428573,3.895396825396826,157.11202617337509,128.96854350900009,1.626757787928692,6.118435,2.473618518518519,7.57356822857143,201.27895204922766,47.611111111111114,5.965688194444443,2.8402777777777777,3.721001371742113,153.6546583127662,228.31228124306173,1.8385677620085075,6.123525694444443,2.66783814951989,7.567235194444444,206.72485875549236,28.583333333333332,5.851615384615385,2.6153846153846154,2.947008547008547,157.07998244854994,115.95835583525637,1.5693113814045576,6.018133333333332,2.4906685660019,7.507916051282052,183.2792976338272,29.223776223776223,5.951590209790212,2.7832167832167833,3.0492618492618493,156.29114073646628,119.34234957552441,1.6492285575567904,6.1109643356643355,2.5732597772597767,7.585069062937062,194.30501895845293,43.86259541984733,5.8158244274809165,2.83206106870229,2.472603901611535,150.4966604322773,193.26096357832057,2.0203307485899384,6.036891603053434,2.3653322024314387,7.4340216183206085,224.6895301621605,39.35766423357664,5.709364963503649,2.394160583941606,1.9059205190592055,150.77078342793547,160.63851108277373,2.08894109903346,5.98555912408759,2.279717761557178,7.407118364963503,203.85435750283202,85.39555555555557,0.09266163888888887,0.013817320825901376,0.576388888888889,3.5634216735253763,1.493620202205435,497.8171254822512,0.8086160492209029,0.09048697222222218,0.8116070590397804,0.05564488333333331,63.41327595373394,0.08831541218638018,0.005111882616487651,-0.0042262406453941765,0.2892025089605735,1.5593660604451522,-0.17923885442900742,0.2932456969821022,-0.01369728871324354,0.005433592293907014,-0.01155816377892834,0.0009102661290322125,-0.8442664541239968,2.4795959595959594,-0.0007060782828281403,-0.0022037881687799687,0.11830808080808086,0.8708101259508673,0.13895873966020147,12.96880832986557,0.0592352618883468,0.0014682247474748686,0.022598820705823648,-0.0021237772727273107,6.765060264572408,2.771587301587301,1.9325396825494992e-05,0.0008330179691332233,0.03551587301587302,0.5026086615716249,0.3343918858193473,12.744867913398487,0.03836346328333232,0.007123527777777858,0.0724364395845581,0.0005717999999999634,11.256769464544528,18.768796296296305,0.004473766203703804,-0.00012468941774137435,-0.007523148148148124,0.34918509373571105,0.02996889095205159,109.18712376697782,0.1783400350585418,0.005086476851851945,0.057758505134887894,0.002685652777777743,5.43465681582788,-2.3211965811965833,-0.003321339743589704,-0.00037134648421009925,0.06784188034188031,0.12918421441384403,0.0030558422279478325,-15.077635861170128,-0.03729609719729115,0.0012687649572649927,-0.02172574020470618,-0.002653448717948737,2.9929519229250117,-1.9293550893550893,-0.008172582944832838,0.00021447422179700915,-0.03559634809634811,-0.4437748347674269,0.10683830692971803,-11.85820221550072,0.01534944866175384,-0.007093778749028646,-0.032828103075580164,-0.0032470716783217167,3.722080781885383,5.505716709075486,-0.008954208863443574,-0.0005552062310445498,-0.19661789652247658,-1.0065170776657344,0.016584698486922542,26.658886726470662,0.07008915617735503,0.0003243382103478115,-0.07042976835401422,-0.0009239255725190844,3.84360922811776,-17.863195458231953,0.003628726074614723,0.0008239457926809699,-0.09159570154095704,-0.5997447638500896,-0.3242178436171196,-101.06068668799544,-0.16882082508374224,-0.005568772708840185,-0.07408450373053779,0.002581425182481759,-17.464654513071114,,,0.5543778801843319,1.1451612903225807,0.5483870967741935,0.04838709677419355,0.5967741935483871,-0.04838709677419355,1.1477234361041828,0.013557461351000727,0.021880041996162017,0.7902314198254736,0.20259059455114573,0.281084639658276,1.9379548559296564,0.4836752342094217,2.0168401540341097,1.6429848278236476,0.06801101892100143,0.19088059170213106,0.11496371558732955,0.3738553262104621,10.750394829800014,6788.0,352.5531,185.0,362.0483950617284,9518.522402345921,36809.657944961815,143.00088624062104,361.81609999999995,185.35079446913582,449.0397079999999,14496.29219303208,2004.0,381.07500000000005,233.0,376.2444444444444,8849.884340465103,8183.213689340004,126.51418499000005,392.9295000000001,167.5274074074074,471.58156399999973,16883.217162100613,3194.0,663.9890000000003,369.0,529.1777777777777,16811.760777393985,13144.46394968,192.420652959584,680.6224999999997,273.0158518518519,833.7394039999999,24533.528092241402,4331.0,835.041,414.0,545.3555555555556,21995.68366427251,18055.596091260013,227.74609031001688,856.5808999999999,346.30659259259266,1060.2995520000002,28179.05328689187,6856.0,859.0590999999997,409.0,535.8241975308642,22126.270797038334,32876.96849900089,264.7537577292251,881.7876999999999,384.1686935308642,1089.681868,29768.3796607909,4459.0,912.852,408.0,459.73333333333335,24504.477261973792,18089.503510299994,244.81257549911098,938.8287999999998,388.54429629629635,1171.2349040000001,28591.570430877047,4179.0,851.0774000000004,398.0,436.0444444444444,22349.63312531468,17065.95598929999,235.83968373062103,873.8679,367.97614814814807,1084.6648759999998,27785.61771105877,5746.0,761.873,371.0,323.9111111111111,19715.062516628328,25317.186228759994,264.6633280652819,790.8327999999998,309.85851851851845,973.8568319999997,29434.328451243025,5392.0,782.1829999999999,328.0,261.11111111111114,20655.59732962716,22007.476018340003,286.184930567584,820.0215999999999,312.32133333333337,1014.7752159999999,27928.046977887985,5123.7333333333345,5.5596983333333325,0.8290392495540826,34.583333333333336,213.80530041152258,89.6172121323261,29869.027528935072,48.51696295325417,5.429218333333331,48.696423542386825,3.338692999999999,3804.7965572240364,5.475555555555571,0.31693672222223435,-0.26202692001443895,17.930555555555557,96.68069574759944,-11.11280897459846,18.181233212890334,-0.8492319002210995,0.33688272222223486,-0.7166061542935571,0.056436499999997176,-52.3445201556878,272.75555555555553,-0.07766861111109544,-0.24241669856579656,13.013888888888895,95.7891138545954,15.285461362622161,1426.5689162852127,6.515878807718148,0.16150472222223555,2.4858702776406014,-0.23361550000000417,744.1566291029649,388.0222222222222,0.002705555555569299,0.11662251567865127,4.972222222222223,70.36521262002748,46.814864014708625,1784.281507875788,5.370884859666525,0.9972938888889001,10.141101541838134,0.08005199999999488,1575.9477250362338,2702.706666666668,0.6442223333333478,-0.017955276154757907,-1.08333333333333,50.28265349794239,4.3155202970954285,15722.945822444806,25.680965048430018,0.7324526666666801,8.317224739423857,0.38673399999999497,782.5905814792147,-362.10666666666697,-0.5181289999999938,-0.05793005153677548,10.583333333333329,20.15273744855967,0.47671138755986187,-2352.11119434254,-5.818191162777419,0.19792733333333884,-3.389215471934164,-0.41393800000000297,466.90049997630183,-275.8977777777778,-1.168679361111096,0.03066981371697231,-5.0902777777777795,-63.459801371742046,15.277877890949679,-1695.722916816603,2.194971158630799,-1.0144103611110964,-4.694418739807963,-0.4643312500000055,532.2575518096098,721.2488888888887,-1.173001361111108,-0.07273201626683604,-25.756944444444432,-131.8537371742112,2.1725955017868532,3492.314161167657,9.181679459233509,0.04248830555556331,-9.226299654375863,-0.12103425000000005,503.51280888342654,-2447.2577777777774,0.49713547222221705,0.11288057359729288,-12.548611111111114,-82.16503264746227,-44.41784457554538,-13845.314076255376,-23.12845303647269,-0.7629218611111054,-10.149577011083677,0.353655250000001,-2392.6576682907425,0.7219388519256281,0.7308623573776205,0.45436158365127505,0.3953406763478908,0.28324891072037367,0.2177292778647055,0.1804369291461223,0.11580736213169306,0.11425767595902384,0.07159770786007398,0.07133972117233017,0.0314624179624939,0.04472350389995458,0.019226359443739637,0.029630839108674707,0.010197454974027992,53.001263383549215,5.6740814426241055,3.546842316599902,2.131203443847827,0.4269496574870776,-0.5350519689539123,3.2838777493082034,0.9778669357555384,6.023806987335626,0.1514613373305399,14.543273843257953,10.435352893366995,126.90557772320838,11.685473225382948,5.354388445548596,0.7510092713646942,3.49260052097365,2.222471795005885,7.008271368888939,1.0045197869528877,3.7055573994094537,2.4181850150238677,32.51706970431228,14.70172517870972,0.24657776551402186,0.5359172181781283,0.7474081388067416,0.8433525105970412,0.8487908845864915,0.8487908845864915,1.588063754372206,1017.4182948418052,0.0,0.0,7.0,0.0,12.0,3.0,3.0,0.0,0.0,4.395545685087186,2.6221022917409265,1.3258145836939113,0.737744375108174,0.7044110417748408,0.7044110417748408,125.17885121917755,1666.3308158265497,47.11084439954378,27.772180263775823,60.35790873952244,,16.0,792.0,0.0,4.794537184071822,5.783244946364939,17.73378494790691,68.51610223691192,0.0,0.0,36.39820241076966,70.85286258405846,9.154013890853395,17.185714285714287,35.5,17.0,1.5,18.5,0.05437788018433183,0.0,-1.5,0.1042455858748001,0.046081081081081665,-0.05816450479371843,0.0,0.0,0.0046379928315415375,0.5435714285714287,0.7714285714285712,0.4393258426966286,0.49749034749034704,0.7714285714285712,35.57942651922967,0.42028130188102253,0.6782813018810225,24.49717401458968,6.280308431085517,8.713623829406556,60.07660053381935,14.993932260492073,0.7186379928315415,0.29786644499861453,0.0,0.28512053200332504,0.4,0.4189532982371333,-0.9039849899754872,-0.03638579985404175,-0.015066416499591447,-0.0475781573671309,0.5810467017628665,1.2537375862144227,0.024617772533139418,0.020895626436907042,0.030578965517424946,-9.451620521542043,0.47973147100400576,0.7490849396185906,1.3194274789532137,0.6603964244073065,0.4908373917746769,1.166976758241186,0.4779470672842048,0.5983544976412367,0.723671720857339,0.625784977676433,0.771599013687827,0.8829191299476996,0.5346119543514671,1.057470308027667,1.3975129771201666,1.000350492880613,0.8375660379640466,0.94024939048943,0.5331859565084363,0.5768098735969575,0.9992273010113822,0.6839835999781734,1.0786777776376997,0.77210932224805,0.8191306748055732,1.217922645083561,1.3137285201957074,1.0723580034423406,0.9958737753504419,0.7889210235847502,0.824155664719935,0.829049658714099,1.0963067252029661,0.8687181447136622,1.2369355270802933,0.7574454269502496,0.609377575162208,1.1396754565120786,1.2173745853568423,1.1314257028112449,1.0046810405251594,0.9480905492117002,0.6082654010291751,0.6435520865994719,1.0913009474558082,1.3430967157552542,1.2130252683377065,0.8552378253955706,1.1447500970846576,1.2300836881322212,1.1821009665030426,0.9295644114921221,1.0665046834064922,0.9702586182651609,1.149559132440374,1.1336455773743386,1.1511316746900073,1.4885512467689341,1.301313606313946,0.9527171722199665,1.0424333200368903,1.3846101395755617,1.3246243964982058,1.1393377706630716,1.2978939960601366,0.9165375622566273,1.0443148433619267,0.9908698577754922,1.322799019008203,1.390791450540749,1.4282954228106417,0.9095358074319362,1.2275385433808204,0.8772347696963594,0.8214715234433199,1.5106778258070448,1.2770343852981108,1.0197374415301692,1.2455402246933815,1.131191180071576,0.7946025979245773,1.075291791466526,0.7720694277350837,0.9863241777946424,2.5996255961475776,0.7574589803565961,0.6191139034659333,1.1331984873801775,1.0920835787877203,1.295048020812914,2.6175162633180182,2.2738369418320197,0.8830491783478652,1.2029170895688837,0.722188697902132,1.529356238913426,5.5,0.10254259769411285,3.555555555555557,2.916666666666667,1.991666666666667,0.9866666666666667,0.9453968253968253,0.7292020975056689,0.38298374905517757,0.24281635802469143,9652.499944277608,10618.120204615036,3415.9050430424472,3130.0112030549226,17.73090661485928,0.4698129563631781,9.40069695913281,0.8861268150584984,0.0,0.4,1.5113449105213324,3.2847883038675922,4.5810760119146074,5.169146220500345,5.202479553833678,5.202479553833678,0.16666666666666669,0.005127129884705642,0.07901234567901239,0.058333333333333334,0.04064625850340137,0.021449275362318842,0.02100881834215167,0.015852219510992804,0.010638437473754932,0.010557232957595277,0.42929171771393293,25.619834710743802,12.459259259259259,6.320881483472185,211.53743162157704,0.0,4.344567093170916,195.33434618377353,,155.44785719674002,157.02439691754216,159.17724585603128,155.4191774428624,206.05962972877725,157.62388480437173,158.4170545852865,184.41663268860714,0.001034192138125093,0.05516719408144011,-0.30586542055764104,0.5017489312087058,0.43760357412386586,-0.1200029660581376,0.0005890630956056921,-0.016939174935299395,0.0600483380144817,-0.014241083354552025,0.01635848751051168,-0.013313717694382641,0.029036592636051354,-0.007619963247949921,-0.15949460800308254,0.2052573932092005,0.24437470659748062,0.09303485548402407,0.026051350317252094,0.07325511526195856,0.01622581363280819,0.027844534438328464,-0.038166622796297435,0.10668208135955895,0.032455872949783623,0.00020855876344544468,0.06028795159562934,0.061617900172117046,0.1410466421377469,0.22388013052153036,0.025601505575068618,0.04744336118519452,0.07872434675218838,0.08925062784724705,0.010275877416701032,0.17751439734413688,0.2197865705561917,0.048280672102814025,-0.009024138565823611,-0.013052208835341323,0.09799151650504895,0.020064599359194808,0.21933179510689754,0.220549709878219,0.0562122560511842,0.07116560223517832,0.048264146079518136,0.08570219302016478,-0.027181702444531653,-0.035843740553438114,-0.026875433297748184,0.11770157553290077,0.03625285645356674,0.002045929897999282,-0.030287499343386277,-0.04612336996430597,0.01402152073504128,-0.02676879157558104,-0.047685403562688834,0.04719756041477272,-0.02259315577729234,-0.08819812646129248,0.015522127950808283,-0.06175751958884491,-0.12453615525338321,0.07152976825833218,-0.023820398311957036,0.01898236953934188,-0.07839558087552546,-0.040448271993123605,-0.058353463675547015,0.058695607913412294,0.06447310604465412,-0.09663339620164303,-0.040181901979418705,-0.3411202060148991,-0.28245803328404956,0.011103691863858076,0.05355156615121538,0.08667791870429178,0.003584363609286057,-0.08677816138925691,-0.016603962793567746,0.060612059072961966,-0.20918179338514567,0.03916103921889348,0.059631371599654495,-0.15891302436021462,-0.16830586408168416,-0.21706846435150595,-0.20300765384496317,-0.2087774849960005,-0.061542259311806013,-0.09128124614661168,0.04639106109753296,-0.275410065958637,13.656173569953824,26.255056546961132,13.415716594466002,32.42508115477009,50.13043082885798,56.89722443742809,62.053299207682514,62.086899207682514,62.086899207682514,62.522044775057395,50.93252966253308,2.1083415865510444,5.917298342766063,3.563875183207216,11.589515112524325,13484.977213494029,10275.114502074779,4510.583970115078,149.0,45.0,61.0,80.0,98.0,110.0,128.0,139.0,140.0,645.0236897880009,33.0,5.056245805348308,5.910796644040527,6.792344427470809,7.67275789664251,8.568076401730806,9.461332526110132,10.364166592611527,11.264835831444937,12.172221092604534,0.8777777777777777,0.9619333333333334,1.1132816428810364,0.8954568589903701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.751427115768463,0.9557516339869281,0.9925345957756737,0.6486467297645704,6.0,0.0,0.0,1.0,0.0,2.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,14.053923621703873,23.69966135831351,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,0.0,45.39113442738271,82.8911768942721,23.915253735000377,12.703816033827788,323.5424233626141,-698.1147912447063,-28.099432347947307,-11.635246520745103,-36.742883749721386,448.72127458179165,968.2160245818434,19.01141205159647,16.13693374303072,23.61502498980106,0.5,0.947227086042761,0.22710550552845687,38.485143845637786,0.09118429364412028,46.892236125169035,0.052772913957238904,8.0,0.3333333333333333,0.25586133449719595,0.5560943191176877,0.7755478009564645,0.8751044457033536,0.8807475726233129,0.8807475726233129,6.936200000000007,,2.66644204851752,0.7803671706718267,0.589830619180602,2.7010049231479067,-2.3893636766198343,1.0200537681412838,0.9087855507163437,-0.7821549817691693,143.41749999999985,13.948551074925218,0.0,4.899909730850478,0.0,40.0336764678499,26.241151182250643,60.425717355168885,0.0,5.749511833283905,4.204692619390966,0.0,5.5093883366279774,2.3978952727983707,7.018401799069201,4.844187086458591,8.62748154531036,7.050122520269059,10.292382802315128,52.66666666666666,11.675470526325077,0.0,0.0,6.070900748724487,0.0,1.6674735893972565,4.927256587125746,0.0,57.71600000000001,0.0,13.588031555635721,0.0,0.0,0.0,0.0,0.0,0.015348308282093104,66.79689857286218,4.736862953800049,0.0,5.749511833283905,36.92430585946606,6.4208216229260096,7.140364542130793,55.29454243126415,40.815353347823006,0.0,10.969244356107037,0.0,53.72741153942221,45.08562694610778,39.599296717178156,390.6686923675471,,312.09636326275216,313.99844756600874,318.31643812372823,312.1877879074199,413.33527023034566,315.1819596882183,316.7754778447204,369.0855734358494,39.599296717178156,390.6686923675471,,309.9460067720122,313.2684266644126,317.7646610928819,310.00955813068765,414.645566440105,314.2277158406023,315.9253236198567,369.61542035898344,4.916141252076763,290.0691310663678,,231.73365945142484,232.60166132499623,236.14671101496958,231.71660723531187,313.50395571609835,233.74082146762274,234.83056319253586,275.58218523884887,1.2773966682960696,12.602215882824101,,10.067624621379101,10.128982179548668,10.26827219753962,10.070573803465157,13.333395813882118,10.167159989942526,10.218563801442594,11.905986239866111,2.5035823531199926,195.33434618377353,,155.44785719674002,157.02439691754216,159.17724585603128,155.4191774428624,206.05962972877725,157.62388480437173,158.4170545852865,184.41663268860714,57.345098039215685,0.0,6.4636387079153685,0.0,0.0,0.0,0.0,59.552075746540424,6.373646512086774,0.0,6.087769524680599,0.0,0.0,2.332805953761318,0.0,0.0,0.0,38.918803785874225,731.5090922604865,90.68069463127995,197.08729823205553,274.86456071487646,310.14877323002065,312.14877323002065,312.14877323002065,1014.0,141.2627772180041,40.754605683919266,80.94455198223966,42.68,42.68,1.0,9.00200749754493,6.044394119358453,4.264831872509351,5.462764029119327,,5.437601724751845,5.447895457734804,5.4493078374136745,5.4373327447453175,5.421916140566518,5.446368032239844,5.445889543014983,5.429831926225738,0.13757522169385003,0.17621819448772025,,0.17540650725005952,0.17573856315273562,0.17578412378753788,0.1753978304756554,0.17490052066343606,0.17568929136257563,0.17567385622628978,0.17515586858792703,2.581804871378576,2.8293570055949377,,2.82474021573125,2.8266314910453154,2.8268907097913596,2.8246907478457493,2.8218513959349676,2.826351081909558,2.826263223314246,2.823310292144957,375.3800000000013,1104.5643923613457,200.84860239485297,,202.01227000186807,202.48741216444006,202.32028104772178,202.00830957437535,204.05458794902273,202.4222661336423,202.51312285291021,203.69630524060594,35.63110943101115,6.478987174027515,,6.5165248387699375,6.531852005304518,6.526460678958767,6.516397083044366,6.582406062871701,6.529750520440074,6.532681382351942,6.5708485561485785,8.138608432662165,6.433953513819869,,6.439730549631054,6.442079833954635,6.4412541029766075,6.439710944553031,6.449789657525443,6.441758053395406,6.442206800149894,6.448032296319822,14.066643576924024,15.920837509397039,0.8918227299408966,2.1506936465053705,1.659588804839891,11.675470526325077,2.8209082632689797,10.016376956733163,0.0,,249.86006830790691,-539.1287102763239,-21.700171535164444,-8.985478504605394,-28.375195277701255,346.53115085486155,747.7180875526061,14.681823374110733,12.461968125876767,18.237026525673322,2897.0,50.0,1.7512553938398583,1.3411974760654033,0.0,0.0,0.5217830229669556,0.23226641794013514,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.02551551815399144,0.350916476718207,0.1088738486497221,0.6929852901304085,0.24424155307223944,22.38010440969447,22.656733078706235,14.993932260492077,13.046242319480395,12.746200982416815,9.797817503911748,11.006652677913461,7.064249090033276,9.140614076721906,5.727816628805918,6.991292674888356,3.0833169603244017,4.919585428995004,2.1148995388113603,3.7927474059103625,1.305274236675583,4.6964224781797475,2.7465508660041538,7.8943999933667,4.884036012039527,12.045951365027138,5.74620971067557,116.85499765252263,66.45824989195671,46.87824126283353,35.85721542851592,35.72698574199564,35.72698574199564,156.0,184.0,75.29299699999999,42.50300300000003,0.26666666666666666,159.06,10.86111111111111,7.194444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,60.0,0.0,1.0,62.0,16.0,1.0,8.0,54.0,17.0,33.0,45.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,4.0,0.0,1.0,31.0,6.0,2.0,1.0,3.0,0.0,3.0,11.0,0.0,0.0,2.0,1.0,3.0,3.7612001156935624,7.774481484445794,4.353498551059343,4.986171821917881,5.606491167046822,6.135835417256796,6.476275004407153,6.8741257808137854,7.242364732592731,7.440116861515812 +216237,Cc1ccccc1C(=O)Nc1ccc(C(=O)N2CCCC(O)c3cc(Cl)ccc32)c(C)c1,0,27.017543859649123,6.0896263157894746,3.4210526315789473,7.2211392679228945,159.06294683843203,108.65381310526315,1.6268199056355264,6.211133333333334,4.4801124133302315,7.658755456140349,235.58429284219923,25.75,6.2525666666666675,4.1,7.118518518518518,143.76063805538587,98.38414200000003,1.9372463236000004,6.42475,3.083676268861454,7.683443166666664,279.90996245462725,22.70873786407767,6.1493495145631085,3.796116504854369,5.9288025889967635,149.58664982100865,85.87614469902913,1.7139029654334081,6.295967961165048,2.969465420112669,7.632942407766988,241.78534825779224,20.21985815602837,6.125262411347517,3.354609929078014,4.875492513790387,153.2606912256129,74.793712141844,1.5475866318126528,6.260312056737589,2.985129731780638,7.656822326241133,215.436313115466,18.0125,6.1673,2.9375,3.9715277777777778,157.2651465956617,65.23633267500001,1.367328446461431,6.271135,3.292669753086418,7.719008924999999,188.1487534196679,17.11949685534591,6.218459748427673,2.69811320754717,3.4800838574423483,160.85652412208222,61.221152018867905,1.3087189128577108,6.31131320754717,3.2953645469368738,7.81304423899371,178.9056183601871,16.53103448275862,5.916392413793105,2.703448275862069,3.26360153256705,156.87552437288858,59.464854255172405,1.3948076402997927,6.0424675862068975,2.9454803462466295,7.537436951724137,182.80120369206392,16.014814814814816,5.865207407407408,2.6296296296296298,2.916872427983539,154.78480985330106,56.59433182962962,1.4138023580876227,6.007210370370373,2.619059594573997,7.483707407407406,183.55558410821402,13.75187969924812,5.765736842105263,2.4586466165413534,2.755221386800334,158.4794178459637,48.221184428571426,1.248171351250519,5.86853157894737,2.7114932392710167,7.375156030075187,157.39288092236296,9.875038473376422,0.10259002770083099,0.014220985607122495,0.6432748538011697,3.645870144279912,1.4420340555723594,46.61829177285318,0.2502806722004309,0.1041651585103108,1.5634669155233252,0.07008372914742997,52.040401257042326,0.10887965527854651,-0.004802746999076585,-0.008560361552988192,0.23888888888888882,1.1205438330502462,-0.03014406618222083,0.582454395567868,0.010318767391637692,-0.003998082486918963,-0.12445807719013029,-0.003870515404739915,2.1627353808693885,0.7389966143428743,0.013114622273619687,0.0014956295911016603,-0.011866235167206095,0.40683503350333405,-0.019444485337019948,3.4755287447758403,0.00926567276358913,0.012246577139493306,0.06308908004163731,0.007078915887487411,2.191795217872754,-0.2825288304748437,-0.003387489440286019,-0.0002632848505872464,-0.07328605200945629,-0.039385014548130655,-0.17867300248655243,-1.3318736198110048,-0.020078852201956633,-0.003056535889930086,-0.017646901977910162,-0.004630854816211859,-2.1192981286576886,-0.5555209295167745,-0.005704336911357304,0.0011276925825136148,-0.11805555555555558,-0.5995643721334958,-0.2499683421164473,-2.6923952952216057,-0.036514623904084643,-0.00552958833487222,-0.022840194160781774,-0.005120901625500147,-6.523672608731699,-0.9700401284575226,-0.0299456053241345,-0.0023723461894751318,-0.00628930817610062,-0.8422989832847921,0.22269668806721873,-4.518556844352689,0.01232775381290156,-0.026761009773689354,-0.37812360505202436,-0.013647020883058338,-1.0694280757701826,-0.16312074802857107,0.007388629286464783,0.002700962681767287,-0.02452107279693486,-0.12028329507943049,0.1532432155221511,-0.730265978660808,0.015076673670947189,0.0042871584890841604,0.08804020740226846,0.004368933768480484,1.416677703205458,-1.3456037755206731,-0.004246908792448977,-0.0026933282393363876,-0.03703703703703703,-0.2821948380445012,-0.13794432279310206,-6.463700418077355,-0.03960329084496594,-0.005273072740330374,-0.1094681253422299,-0.0001676632604904102,-7.581205260538265,0.511058347623445,0.01988927582113172,0.0010339863708999214,-0.014202172096908928,0.32309059414835545,-0.2602261439005214,2.222741626038781,-0.02949898066683596,0.018472026557622045,0.290352494302871,0.013340743217693341,-5.450598141798589,,,0.48482142857142857,1.3046875,0.6875,0.03125,0.6171875,0.0703125,0.9077524552159933,0.017749037939830903,0.028499037939830902,1.078458868624002,0.2552439566403676,0.22432617924396075,1.9862113238399954,0.47957013588432834,2.0402356737248657,1.6831652085013808,0.13405392789706444,0.16763723016728324,0.055379307159136804,0.3570704652234845,7.862374918245626,1540.0,347.10870000000006,195.0,411.60493827160496,9066.587969790626,6193.267347,92.728734621225,354.0346,255.36640755982322,436.5490609999999,13428.304692005357,1545.0,375.15400000000005,246.0,427.1111111111111,8625.638283323153,5903.048520000001,116.23477941600002,385.485,185.02057613168725,461.00658999999985,16794.597747277636,2339.0,633.3830000000002,391.0,610.6666666666666,15407.424931563892,8845.242904,176.53200543964104,648.4847,305.8549382716049,786.1930679999998,24903.8908705526,2851.0,863.6619999999999,473.0,687.4444444444445,21609.75746281142,10545.913412000004,218.20971508558404,882.704,420.90329218106996,1079.6119479999998,30376.520149280706,2882.0,986.768,470.0,635.4444444444445,25162.42345530587,10437.813228000003,218.77255143382897,1003.3816,526.8271604938269,1235.0414279999998,30103.800547146868,2722.0,988.7351,429.0,553.3333333333334,25576.187335411072,9734.163170999997,208.086307144376,1003.4988000000001,523.9629629629629,1242.2740339999998,28445.99331926975,2397.0,857.8769000000002,392.0,473.22222222222223,22746.951034068843,8622.403866999999,202.24710784346993,876.1578000000002,427.0946502057613,1092.928358,26506.17453534927,2162.0,791.8030000000001,355.0,393.77777777777777,20895.949330195643,7640.234796999998,190.86331834182906,810.9734000000004,353.57304526748965,1010.3004999999998,24780.003854608894,1829.0,766.843,327.0,366.44444444444446,21077.76257351317,6413.417528999999,166.00678971631902,780.5147000000002,360.62860082304525,980.8957519999999,20933.253162674275,562.8771929824561,5.847631578947366,0.8105961796059822,36.66666666666667,207.814598223955,82.19594116762448,2657.2426310526316,14.26599831542456,5.937414035087715,89.11761418482953,3.9947725614035083,2966.3028716514127,6.532779316712791,-0.2881648199445951,-0.5136216931792915,14.333333333333329,67.23262998301477,-1.8086439709332498,34.94726373407208,0.6191260434982615,-0.23988494921513775,-7.467484631407817,-0.2322309242843949,129.76412285216333,76.11665127731605,1.3508060941828277,0.154049847883471,-1.2222222222222279,41.904008450843406,-2.0027819897130548,357.97946071191154,0.9543642946496804,1.2613974453678105,6.4981752442886425,0.7291283364112033,225.75490744089367,-39.83656509695296,-0.47763601108032866,-0.03712316393280174,-10.333333333333336,-5.553287051286422,-25.192893350603892,-187.79418039335167,-2.8311181604758855,-0.4309715604801422,-2.4882131788853328,-0.652950529085872,-298.8210361407341,-88.88334872268392,-0.9126939058171686,0.18043081320217838,-18.888888888888893,-95.93029954135932,-39.99493473863157,-430.78324723545694,-5.842339824653543,-0.8847341335795551,-3.654431065725084,-0.8193442600800235,-1043.787617397072,-154.2363804247461,-4.7613512465373855,-0.377203044126546,-0.9999999999999986,-133.92553834228195,35.40877340268778,-718.4505382520776,1.9601128562513481,-4.255000554016608,-60.121653203271876,-2.1698763204062756,-170.03906404745902,-23.652508464142805,1.0713512465373936,0.3916395888562566,-3.555555555555555,-17.441077786517422,22.22026625071191,-105.88856690581716,2.1861176822873425,0.6216379809172032,12.765830073328928,0.6334953964296702,205.41826696479143,-181.65650969529088,-0.5733326869806119,-0.3635993123104123,-4.999999999999999,-38.09630313600766,-18.622483577068778,-872.5995564404429,-5.346444264070401,-0.7118648199446004,-14.778196921201037,-0.022634540166205377,-1023.4627101726659,67.97076023391818,2.645273684210519,0.13752018732968954,-1.8888888888888875,42.971049021731275,-34.61007713876935,295.62463626315787,-3.9233644286891827,2.456779532163732,38.61688174228185,1.7743188479532144,-724.9295528592123,0.7133655677152242,0.5880309529875267,0.4384641242371002,0.3142050482547181,0.28271780989607564,0.17106272622766172,0.17916196670083565,0.09079519924998478,0.11638315981737486,0.04943851543392879,0.07295439304516281,0.02738937285732368,0.046944475664448586,0.015498912709493292,0.029751956064848005,0.008243057341764537,17.001103796583173,5.686035653374944,3.5456027599312643,2.184864322328314,0.40836121858510255,-0.3955751779397625,3.237712702113149,0.9772627774673961,6.023244297968012,0.7739947551773906,14.54375906446384,10.94727298656197,35.450517729241966,11.697845649476955,2.2079324800385076,0.7511885139927368,3.4909516472522464,2.234547259071243,7.009361740181989,1.2509407612772925,3.703837355950925,2.4304152347827497,22.45587009547571,14.701778075205906,0.24936699561262068,0.5739091071332029,0.7409965931209902,0.8642915814137958,0.8871138006799901,0.9042304651296359,1.341610080432195,1191.4395548481805,0.0,2.0,3.0,0.0,13.0,3.0,5.0,0.0,0.0,4.2993460511964905,2.3034941357148226,1.275948350056149,0.5177153509531038,0.37736447376012094,0.2721013158653838,68.25497404689366,1623.1458579374005,59.52223551433795,28.476243121708777,58.74642615100363,,16.0,856.0,6.103966387748303,14.69560176298435,11.814359458703011,52.47415998996403,11.126902983393991,0.0,47.36447921008175,32.046575604766076,5.316788604006331,11.600939890232516,15.514285714285714,41.75,22.0,1.0,19.75,0.0,0.01517857142857143,2.25,0.1487552213868008,0.06983458646616603,-0.07892063492063478,0.030488445378151208,0.12152864157119447,0.0,0.5909774436090223,0.818303571428571,0.44222222222222146,0.5211428571428562,0.7878151260504198,29.048078566911787,0.5679692140745889,0.9119692140745889,34.51068379596806,8.167806612491763,7.178437735806744,63.558762362879854,15.346244348298507,0.5924713584288055,0.1749539594843462,0.0,0.3802946593001842,0.23076923076923078,0.45142818544280855,-1.0428605455777695,-0.05258501225509131,-0.018295799045224024,-0.047402752071716785,0.5485718145571915,1.2672755496127013,0.032129780353154586,0.022232904379170196,0.036207872846077176,-6.773509368965057,0.6616007979054981,0.738214541799799,1.585868469792157,0.7509090909090907,0.524082211197732,1.1343375629668726,0.6665227667091371,0.8995283950391447,0.7081331999340491,0.6648509892811252,0.7060641100284232,0.8798642726940126,0.6824161817946338,0.6394748953910911,0.8419003732610609,1.238128861429832,0.8317974015860531,1.0935946660301286,0.6879485636349209,0.9078541278271038,0.6357067818795419,0.592271870076347,0.6133949998150086,0.9012883533442902,0.9017499277163404,0.9591842359840428,1.139135959360437,1.2727272727272725,1.0029010394814917,1.1726693657870004,0.9035107180612734,1.0334482864672887,0.9375760679762494,0.8524349138385583,0.9654399072243618,0.9877171402248385,0.9078356813364917,1.251499414967823,1.3002809754932405,1.2599999999999998,1.2445566348438735,1.2041446406402623,0.9105467868365222,1.0726623451149244,1.177095779189121,1.2425302341311968,1.2193111497913878,1.0571926486313288,1.0440071228120524,1.7425544367204346,1.515869508315405,0.9653516295025727,1.3784991241324898,0.8599994357235141,1.040013348109039,0.8817061035328468,1.6074846440537054,1.8897835548944977,1.627729553696051,0.9427142851025323,1.046691228628299,0.8351127560291678,0.613087863908954,1.016426332288401,1.013011214407804,0.8373871583039922,1.04530920418798,0.9538106076820559,0.892546004219411,0.9540907010519069,0.8810874714568978,0.9799897995259808,1.161071631411988,0.7865875289807605,0.7779786937669617,0.9446464646464644,0.9591909506538262,1.0485584484009334,1.1637964315875937,1.1776719768661743,0.8517083624791333,0.8354446510712227,0.7853047275050862,1.1582813604728668,0.77945393342476,0.5409693533144321,0.5978965485586057,0.9129186602870812,0.7915162379622294,1.140477521183864,0.7904878716165189,1.0883850099426036,0.5783769057708978,0.43828814131855387,0.46589802121927426,1.124054549579878,6.5,0.18589939802061015,4.444444444444446,3.25,2.2638888888888893,1.4236111111111112,0.7396825396825397,0.5911989795918368,0.39505385487528333,0.2259413580246914,6589.743401188185,7348.924322680879,3027.5769656395096,2767.172910561714,17.42635428092946,0.4673959834207252,9.28134628435647,0.8775675152107235,0.0,0.23076923076923078,1.5335439629682508,3.5293958784499186,4.556941664108592,5.3151746632116375,5.45552554040462,5.5607886982993575,0.18571428571428572,0.0077458082508587555,0.08888888888888893,0.0560344827586207,0.04192386831275722,0.029658564814814818,0.01681096681096681,0.015158948194662477,0.01274367273791237,0.009037654320987654,0.4637171408047554,25.103673469387754,11.16,5.8142125194920915,192.18953732624533,0.0,4.396407235850733,200.926130797373,,157.75036226677315,156.2992514449858,154.37729982467712,157.7431735916716,203.11608780492006,157.66689600618878,158.90003515245138,188.90597053371505,0.011025744919586012,-0.04681494982223971,-0.6019527611856091,0.3713636363636362,0.30734606245049423,-0.020903851795827606,0.012494117081892811,0.04122878247415833,-0.038382147582708394,-0.07960390843861992,-0.05522701847953606,0.041558776039927595,0.07483480862735316,0.12783525423995434,0.10517060015534953,-0.018446601941747656,0.11158791108938061,-0.013484068050877075,0.07455289785628125,0.037021127848693616,0.11756884273623101,0.040352040337559736,0.10100655278482709,0.04211718520475764,-0.02861040301124446,-0.03301967565662895,-0.018513825824799497,-0.11392649903288203,-0.010802637776313205,-0.12390345553637783,-0.028569764552947068,-0.08022534071619002,-0.029343169382567924,-0.011287032557387614,-0.0660760332326248,-0.04072409277149638,-0.05625506482982173,-0.05560323005265255,0.0792977796102133,-0.18352272727272728,-0.16445028166298403,-0.17334427099728383,-0.057754053030090735,-0.14589470126899307,-0.05308481659272733,-0.014608684030347187,-0.07306833822623343,-0.12535784604175948,-0.09823152902875237,-0.2918958693671543,-0.16682009637130613,-0.00977701543739278,-0.23102824564563662,0.15443233618974964,-0.09692669277478633,0.04925571641037144,-0.2569094134392395,-0.24184944452467577,-0.1947245252082706,-0.020549958300436107,-0.016518492405710867,0.07202093080636662,0.18992795270213383,-0.03811912225705328,-0.032991656400090295,0.1062687908998981,-0.015664794888217187,0.06023906496013171,0.041157317383238044,0.05631088610071391,0.06233877422946317,0.02722265142053929,-0.13626314258405023,-0.041396896829325805,-0.18939110929044542,-0.05757575757575756,-0.07740123122246771,-0.09565954580618447,-0.1386515930178571,-0.15823551414010367,-0.05062223123107347,-0.07001627233383997,-0.0023923278987867404,-0.14567922378408535,0.05175254243325561,0.1938714343574606,0.07270848867057819,-0.022077922077922058,0.08861823964171064,-0.18045769647044482,0.04767960260897269,-0.11786359852514881,0.17733402244852908,0.18571067377251407,0.19035435728069497,-0.10473781927384719,14.103569664232714,30.50275127799018,12.655318511968312,16.310207594919564,33.83306381282226,41.81310672734096,45.033756467629814,45.56130032727893,45.66740559043683,65.2875415591957,53.86128667204419,4.289725692706062,5.364391365353064,1.7721378290923777,11.426254887151504,11971.162414199223,10844.00951241803,1849.0083262717835,169.0,50.0,67.0,87.0,108.0,118.0,127.0,139.0,153.0,448.1553703400007,35.0,5.14166355650266,6.003887067106539,6.892641641172089,7.769378609513984,8.661293535389994,9.543449817892206,10.43673003058612,11.321752852898255,12.215919010583045,0.6900584795321638,0.9787368421052632,1.1149540202646435,0.6557541551823108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7025509507301188,0.9691090471276231,1.0031880502421384,0.6583162786877637,10.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,1.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15.323225729697514,0.0,0.0,0.0,11.814359458703011,9.589074368143644,0.0,0.0,0.0,29.800041095617345,80.28059010785853,39.63251674411201,6.103966387748303,317.18208761950774,-732.7337893576914,-36.94723657586136,-12.854978760661252,-33.30608133444051,385.4370616664014,890.4120685797091,22.57499893847659,15.621264361047526,25.440344816563115,0.5,0.8583745326381736,0.16810197175302805,122.68939154678118,0.11170241669177838,10.9972267795056,0.1416254673618264,8.0,0.08571428571428572,0.2629132315617392,0.6050852784604274,0.7812493726167298,0.9112420515909145,0.9353040306188323,0.9533505148897706,5.683140000000005,,1.6827731092436975,1.3450861358804407,1.1015626411456387,1.6939818615383124,-4.049301475252651,1.2915691864338505,1.235794559542855,-1.7523440609233252,127.63350000000003,14.69560176298435,0.0,0.0,0.0,32.79308403298157,16.761454740769384,93.50356145684242,0.0,0.0,4.2626798770413155,0.0,5.602118820879701,0.0,7.133295954896068,2.70805020110221,8.752581469146884,5.293304824724492,10.417238892218322,39.333333333333336,17.93410090304916,0.0,0.0,0.0,0.0,0.0,5.3380193908286255,0.0,55.788000000000004,0.0,26.076626612704565,0.0,0.0,0.0,0.0,0.0,-0.32792489345845643,63.55237915508468,10.216698334856808,11.374772549367124,0.0,23.465643259456293,0.0,13.847474399381248,56.35194146022894,60.6636706846161,5.022633313741326,0.0,0.0,37.37798684539172,40.04540419161677,40.82045502707835,401.8522615947461,,315.39555121421853,312.51443500647906,308.68575198428266,315.38047331699704,408.0037450052631,315.2530689382255,317.7228331449313,378.57859159408406,40.82045502707835,401.8522615947462,,313.81795142430263,311.2534167540912,307.6530370082087,313.79236532180494,410.2814770850929,314.04222282594367,316.56427574535985,379.5642851283535,4.886126440552526,307.6062024554196,,242.67713367824956,239.55741212926137,236.08811571640848,242.6834296538276,314.82349373602415,241.89303810116905,243.9551718255189,292.4249383379786,1.2756392195961985,12.557883174835816,,9.856110975444329,9.76607609395247,9.646429749508833,9.855639791156158,12.750117031414472,9.851658404319547,9.928838535779104,11.830580987315127,2.4579608761469407,200.926130797373,,157.75036226677315,156.2992514449858,154.37729982467712,157.7431735916716,203.11608780492006,157.66689600618878,158.90003515245138,188.90597053371505,55.23921568627452,0.0,3.7471971534066553,6.128644006112996,0.0,0.0,10.487449876239005,57.18171886380189,1.7624351105895952,2.9116669996102713,0.0,0.0,-0.6512698223057314,1.7041657743344252,0.0,0.0,0.0,37.52402788520253,603.1103838909233,87.4120058891903,201.17556507164537,259.74567485418976,302.96495580306333,310.96495580306333,316.9649558030634,1085.0,144.9867161216449,99.50876539498574,76.169270040009,69.64,69.64,1.0,8.613270122646089,6.129283016944966,4.646004937983641,5.575673260502095,,5.577911118902149,5.574169074488635,5.573192028236185,5.577975474843727,5.582488397895771,5.575204118609342,5.5757703898245,5.582053605223228,0.14518765431198877,0.17423978939069046,,0.17430972246569215,0.17419278357776985,0.17416225088238077,0.17431173358886648,0.17445276243424285,0.17422512870654194,0.17424282468201563,0.17443917516322588,2.6991585069995754,2.881563884076075,,2.8819651646606763,2.881294071108789,2.8811187746873403,2.8819767022361145,2.882785436236686,2.8814797396850858,2.8815813041205915,2.8827075481025126,336.2700000000012,453.52446607248993,211.45355001818257,,210.73079201950134,211.30509068198097,211.5731530035366,210.71869677715566,210.8109519056808,211.18040006894012,211.10567971121878,210.62607539130948,14.17263956476531,6.607923438068205,,6.585337250609417,6.603284083811905,6.611661031360518,6.584959274286114,6.587842247052525,6.599387502154379,6.597052490975587,6.582064855978421,7.28020002734885,6.517156162508205,,6.513732261464065,6.516453826338052,6.517721625575603,6.513674863162866,6.514112579135094,6.515863554627468,6.51550966960933,6.513235216614689,0.0,27.78079238703899,13.928771324737253,4.80836494194065,-0.32792489345845643,17.93410090304916,0.6015054656111511,4.2568569760793675,0.0,410.7004606317225,222.85820857194722,-514.8327917315416,-25.959835931396935,-9.032154240904239,-23.40149053325189,270.81546037130744,625.6205701393817,15.861626549282722,10.975799476129502,17.874873432553763,3110.0,58.0,2.308472228578455,1.1202299446887738,0.0,0.0,0.6531461308345389,0.19806897334433407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21941609682128765,0.07589030021024659,0.4727759819499025,0.1645253745697037,22.827698166887174,18.816990495600855,15.346244348298507,10.997176688915134,14.135890494803784,8.553136311383087,12.003851768955988,6.08327834974898,10.125334904111613,4.301150842751805,7.879074448877583,2.9580522685909574,5.539448128404933,1.8288716997202086,3.778498420235697,1.0468682824040962,5.582884029947227,2.2133429677412777,9.17622633409158,2.9715462464879825,14.043644220262406,3.896673548967357,103.0999188161585,60.108514425208355,35.68793275390796,27.20139393125988,25.991007610997332,25.281135764646727,170.0,202.0,66.87582499999999,29.606174999999993,0.45614035087719296,233.06,10.833333333333334,6.9722222222222205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,18.0,57.0,0.0,0.0,60.0,18.0,2.0,11.0,49.0,20.0,35.0,40.0,0.0,0.0,0.0,26.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,3.0,2.0,1.0,32.0,6.0,0.0,2.0,3.0,0.0,4.0,3.0,0.0,0.0,1.0,0.0,3.0,3.8501476017100584,7.334043735103867,4.448516375942715,5.012300573415317,5.545665606559064,6.027525224526527,6.182601302287106,6.431582660590872,6.704720680590641,6.979552547801712 +214348,O=C(O)c1ccc(-n2nc(-c3ccccc3O)nc2-c2ccccc2O)cc1,0,27.302325581395348,6.537783720930232,3.8372093023255816,10.186046511627907,158.41794395101712,108.30808493023258,1.6613699900636048,6.60957441860465,6.209302325581396,7.97998995348837,254.78178443540364,28.32608695652174,6.590215217391306,4.478260869565218,9.934782608695652,145.621954090288,109.33162963043483,1.9410020799565222,6.731871739130434,3.9975845410628024,7.964493826086953,295.1308546139955,27.12676056338028,6.530630985915493,4.338028169014085,9.492957746478874,146.92786428972948,104.13021476056336,1.8339343714084504,6.665518309859157,4.2410015649452255,7.903158985915491,274.89884019067216,22.934782608695652,6.420684782608696,3.7282608695652173,7.456521739130435,153.63271779468195,86.51129445652174,1.5531566742042606,6.5269836956521745,3.8502415458937187,7.867948956521738,230.33975230246912,22.229166666666668,6.6724687499999975,3.4583333333333335,7.229166666666667,161.2378727179666,82.82300658333332,1.4071583979874165,6.735801041666666,4.326388888888888,8.116869,210.461523033708,21.516483516483518,6.590791208791209,3.5604395604395602,6.923076923076923,163.26812847627792,80.09472041758242,1.4528593737856044,6.656029670329669,3.7814407814407818,8.0438145054945,215.98831111992166,22.414634146341463,6.357902439024391,3.8780487804878048,6.878048780487805,153.17634995731825,83.97636581707319,1.681644231334097,6.472246341463414,3.4485094850948514,7.792321707317075,243.88361511054634,22.144444444444446,6.327855555555554,3.4,6.411111111111111,148.3867072362855,82.52138203333332,1.6595861231299789,6.452691111111108,4.004938271604938,7.784309822222224,239.8809583320998,17.962264150943398,6.230509433962265,2.688679245283019,4.943396226415095,154.11736967599376,64.86379102830189,1.3859304337673495,6.3230594339622614,4.078616352201257,7.759492943396226,193.5731744170424,6.947539210383991,0.1462942130881557,0.03416355920576665,0.6306111411573824,3.877771768523527,1.5758462931869,32.91399979015684,0.22249191098787455,0.13314126554894537,2.115738236884802,0.09512595348837206,45.92164887544943,-0.16240270886730784,-0.015680461824252805,-0.01971814581045219,0.2106426505514142,0.5726832365320855,0.1427008665814443,-0.6095924286805974,0.028337100952866172,-0.01457898041244389,-0.39772902443676317,-0.010592434782608686,3.731863317581757,0.0776818836219041,0.021131270043190462,0.0023623601402369653,-0.021701871586468545,0.4130896792327788,-0.23995644346713557,0.1984500663777205,-0.033494483987435555,0.018237018106475496,0.2510412514145024,0.013311774647887319,-5.872702712200257,0.28198556211348086,-0.006867140287346859,-0.0012002293608540107,-0.033290615373762565,0.032743903872833685,-0.5013495832423892,1.3044754550403288,-0.034604929433277413,-0.0031519076116349803,-0.024596792103317378,-0.007636434782608694,-3.06659056660132,-0.5114926987560845,-0.01205344273931852,0.004603566880869886,0.043080719307733883,-0.4334888227870921,-0.18356305501150996,-2.381798974265367,-0.0065213925042223965,-0.01135274810708494,-0.15078345652304556,-0.007610999999999979,-2.333036341626587,-0.5182011066272829,-0.03458189517351221,-0.0053323154097080164,-0.0021930476230097766,-0.7068032022061225,0.44894245068969896,-2.192239187550145,0.054687855455925596,-0.031018137514189453,-0.32177509408445054,-0.01909520879120877,8.038561863793317,-0.7512828292155285,-0.007230174517537486,0.002205261036254078,-0.20917041512221507,-0.8726668337532483,0.38797870168223514,-3.5426295261182683,0.01344532506295448,-0.008502865095173387,-0.00812495144962266,-0.0008371219512195163,-0.04572314260186984,-1.0630430863529836,0.0022413941469863544,-0.0005987690796433853,-0.1980530016224987,-0.6201490295054384,-0.0805723528573007,-5.193382668451412,-0.04525518736018741,-0.00029886244817016737,0.03545326469429588,0.0025930222222222154,-10.037539646887113,-0.7127871261365146,0.012068248517811755,0.002356797696228152,-0.06808371684847493,-0.05065461187587378,-0.19080722289380325,-3.5705548768176603,-0.04779375600922446,0.008810972274661495,0.07915718508389713,0.008459283018867914,-9.901386470147575,,,0.4654761904761905,1.5089285714285714,0.875,0.03571428571428571,0.6339285714285714,0.24107142857142858,0.637057998986835,0.013303559525532194,0.02558927381124648,1.2105419109082636,0.31045616681237387,0.1731764723182759,1.8475999098950986,0.4836326391306498,2.055316429775483,1.5739229387286502,0.23227719787746723,0.24911629316936573,0.0,0.4813934910468329,8.67688967348838,1174.0,281.12469999999996,165.0,438.0,6811.971589893736,4657.247652000001,71.438909572735,284.21169999999995,267.0,343.1395679999999,10955.616730722357,1303.0,303.14990000000006,206.0,457.0,6698.609888153248,5029.254963000002,89.28609567800002,309.6661,183.8888888888889,366.3667159999998,13576.019312243794,1926.0,463.6748,308.0,674.0,10431.878364570794,7393.245247999998,130.20934036999998,473.2518000000001,301.11111111111103,561.1242879999999,19517.817653537724,2110.0,590.703,343.0,686.0,14134.210037110739,7959.03909,142.89041402679197,600.4825000000001,354.2222222222221,723.8513039999999,21191.25721182716,2134.0,640.5569999999998,332.0,694.0,15478.835780924794,7951.008631999999,135.087206206792,646.6369,415.3333333333333,779.2194239999999,20204.30621123597,1958.0,599.762,324.0,630.0,14857.39969134129,7288.619558,132.21020301449,605.6986999999999,344.11111111111114,731.9871199999995,19654.936311912872,1838.0,521.3480000000001,318.0,564.0,12560.460696500097,6886.061997000002,137.89482696939595,530.7242,282.7777777777778,638.9703800000002,19998.4564390648,1993.0,569.5069999999998,306.0,577.0,13354.803651265696,7426.924383,149.3627510816981,580.7421999999997,360.4444444444444,700.5878840000001,21589.28624988898,1904.0,660.4340000000001,285.0,524.0,16336.44118565534,6875.561849,146.90862597933904,670.2442999999997,432.3333333333332,822.5062519999999,20518.756488206494,298.74418604651163,6.290651162790696,1.469033045847966,27.11627906976744,166.74418604651166,67.7613906070367,1415.3019909767443,9.567152172478606,5.725074418604651,90.97674418604649,4.0904159999999985,1974.6309016443254,-7.470524607896161,-0.721301243915629,-0.9070347072808008,9.689561925365053,26.343428880475933,6.564239862746438,-28.04125171930748,1.303506643831844,-0.670633098972419,-18.295535124091106,-0.4872519999999996,171.66571260876083,5.515413737155192,1.5003201730665228,0.16772756995682453,-1.5408328826392668,29.329367225527292,-17.036907486166626,14.089954712818155,-2.3781083631079243,1.2948282855597602,17.82392885042967,0.9451359999999996,-416.96189256621824,25.942671714440237,-0.631776906435911,-0.11042110119856897,-3.0627366143861563,3.012439156300699,-46.124161658299805,120.01174186371024,-3.1836535078615222,-0.2899755002704182,-2.2629048735051986,-0.7025519999999998,-282.1263321273214,-49.10329908058411,-1.157130502974578,0.441942420563509,4.135749053542453,-41.61492698756084,-17.622053281104957,-228.65270152947522,-0.62605368040535,-1.089863818280154,-14.475211826212373,-0.730655999999998,-223.97148879615236,-47.15630070308275,-3.1469524607896115,-0.4852407022834295,-0.19956733369388968,-64.31909140075715,40.853763012762606,-199.4937660670632,4.976594846489229,-2.82265051379124,-29.281533561685,-1.737663999999998,731.5091296051919,-61.60519199567334,-0.5928743104380738,0.18083140497283437,-17.151974040021635,-71.55868036776636,31.81425353794328,-290.495621141698,1.1025166551622674,-0.6972349378042177,-0.6662460188690582,-0.06864400000000033,-3.749297693353327,-95.67387777176853,0.20172547322877188,-0.05388921716790468,-17.824770146024882,-55.81341265548946,-7.251511757157063,-467.40444016062713,-4.072966862416867,-0.026897620335315064,3.1907938224866292,0.23337199999999939,-903.3785682198402,-75.55543537047055,1.2792343428880462,0.2498205558001841,-7.216873985938342,-5.369388858842621,-20.225565626743144,-378.478816942672,-5.066138136977793,0.9339630611141184,8.390661618893096,0.8966839999999988,-1049.5469658356428,0.7026070581609973,0.5185618962049687,0.4368294805051031,0.27158213776312695,0.28021048346376165,0.1376623886106396,0.1762611712929014,0.07093131613133553,0.1113287935783506,0.03609126030120219,0.06921295135323677,0.018788917922653844,0.04270833957859038,0.008828091468823442,0.027250816293352107,0.00450037698711702,8.028891099244051,5.6924800710473855,3.5549768109298134,2.1907659626484244,0.4577204397267045,-0.39370933298963723,3.2469291332897754,0.9728848094177678,6.022047428605211,2.752034866444753,14.693084932095626,10.95407848489853,16.014299825483583,11.704683457685691,1.9999083238847113,0.7415298189441347,3.5010393955108325,2.2402583423810896,7.008296251361196,1.4388053242112089,3.7139511307022284,2.4360403679020317,20.903338345718097,14.701049014241484,0.27683350285642944,0.5201634298986717,0.6621856835956804,0.8280275577108829,0.8866035276466628,0.9183630215375876,1.4760064579018923,1166.5015843476542,0.0,3.0,0.0,0.0,15.0,0.0,3.0,0.0,0.0,3.80457935615454,2.379157267995306,1.5471936049530424,0.5756950581898472,0.23255813953488413,0.04651162790697683,58.09573080925736,1707.5895173978843,89.10724684457944,39.71138412553219,79.60759533849775,,12.0,566.0,5.969305287951849,15.007591973753234,22.886879656264732,22.63869375607748,0.0,22.880904140530014,54.59730361615449,0.0,10.082660329248245,5.106527394840706,13.033333333333333,42.25,24.5,1.0,17.75,0.0,0.034523809523809526,6.75,0.21610017889087657,0.10613800991231426,-0.10996216897856231,0.05345622119815663,0.16791061452513933,0.0,0.6596899224806201,0.8523809523809519,0.4435897435897435,0.5535519125683058,0.7989247311827953,17.83762397163138,0.3724996667149014,0.7164996667149014,33.89517350543138,8.692772670746468,4.848941224911726,51.73279747706276,13.541713895658194,0.5460893854748606,0.10230179028132992,0.0,0.3759590792838875,0.0,0.45173182483252383,-1.2817721308908037,-0.08171781176544841,-0.02980865420676287,-0.06746169109951596,0.5482681751674762,1.555690408672379,0.06634966718604603,0.03617884671331115,0.06482043369468247,-3.9399841563577818,0.7151676380399246,0.8544926555753687,1.4533054522644362,0.6734282944291148,0.5557849736219755,0.9528340073329026,0.7130280236234781,0.8002307137970671,0.8334264171945008,0.8993379716072435,0.8894572092422874,0.742990335197811,0.7009624303504352,0.5338485385172199,0.620368835079117,1.1125794216413405,0.6509929872119746,1.2109246202513495,0.7105568403568222,1.0702407636062845,0.5280477518741403,0.48947142294804963,0.5346144895707017,0.9748794665104975,0.839710720305424,0.8863624122271094,0.8497148535063468,1.1279923931687672,0.9048617427687828,1.3424418867517327,0.842871908193302,1.098696328604549,0.8607615469642296,0.7763968539758752,0.901017976613158,0.9937988188654315,1.0434303479682392,1.1947625421444887,0.9074608812684464,0.9277176243567754,1.149215481171548,1.2234795178743139,1.0384167213039333,0.9197673588787375,1.1787472321879027,1.0494134855714614,1.1653634984803503,0.9312730491975555,1.043599324542809,1.2613149421835619,1.109342392782841,1.0552843383032062,1.246958480849694,0.8713286822001577,1.0339463922124752,0.6374601878305608,1.2465649179834268,0.9644617482040796,1.1621938472009468,0.7196110507246049,0.9283985144849113,0.7328843060739456,0.6688479282984968,1.4544408651633687,1.092004286151648,0.8296640546821675,0.9332865889033667,0.8741751272606461,0.7501928258155883,0.5210837614511115,0.64425364428316,0.9217130621725502,0.9755280502361305,0.7398163633988667,0.8086597795677117,1.2391080617495713,0.9347652254765224,0.9961556952769816,0.9842396188100108,1.192458658018,0.7569724018346596,0.7528989623570402,0.7507026832152688,1.1632526845232565,1.0948661796198216,0.8458054410334983,0.874167935644301,0.9132577106055213,0.9112931238651613,1.0014143423014195,1.102282622848005,1.2443279686383977,0.872441159857463,0.9421856310529769,0.8636318800770774,1.250419387635274,5.0,0.12815018875624937,3.7777777777777795,2.0972222222222223,1.5316666666666667,1.3622222222222218,0.653061224489796,0.4461805555555556,0.38197593852355755,0.28187500000000004,5812.847169788936,6247.492554612858,2740.7566693556573,2570.6648495998734,13.813154495469625,0.45613321110434063,7.512515979970707,0.8386855392117897,1.0,0.0,1.6216853985475579,3.0471074867067918,3.8790711497490555,4.850569696512251,5.193706615167214,5.379753126795121,0.16129032258064513,0.008009386797265585,0.0858585858585859,0.04559178743961352,0.034810606060606056,0.03243386243386244,0.015928322548531604,0.010376291989664083,0.010323674014150203,0.012255434782608696,0.4168782745055333,21.240374609781476,9.427685950413224,4.694444444444445,159.33873264662483,1.0,4.272606044981459,146.85550035617635,,105.88345516578903,104.09962101900912,103.61671692590241,105.90184404193063,142.29959719126353,105.16918133253029,105.98696030546225,128.4731694261418,-0.023375572839456033,-0.10718442987764584,-0.5771689563048764,0.33402938325005566,0.1476835849857498,0.09055506694936238,-0.01852076419052844,0.12736238736522199,-0.10950008888930357,-0.18798593205101616,-0.11135168052642412,0.08126588240991671,0.011181208377463857,0.14444364952738717,0.06914853707157684,-0.034414031357959125,0.1065275895259983,-0.15227147755753614,0.00602935126824265,-0.15054247967361362,0.13697494936136992,0.11865421111079116,0.1399384096529925,-0.12788527537694566,0.04058783312687421,-0.046940614685891745,-0.03513185946537495,-0.052791035871429665,0.00844399975744344,-0.31814624650256274,0.03963284509196725,-0.15553342716878962,-0.02367340883113565,-0.011625631032472864,-0.0802770905580689,-0.0667787555912605,-0.07362213918729567,-0.08239179448646552,0.1347507984499702,0.06831582332761574,-0.11178812180381216,-0.11648538046200096,-0.07236431273775666,-0.029310694826014606,-0.0852684407067728,-0.07126753862758468,-0.08000971050377254,-0.0508047162669255,-0.07458771961340854,-0.23638594065695162,-0.15608196375534392,-0.0034776544210506663,-0.1822704492160558,0.2848897463100819,-0.06660506779871066,0.24579705038762506,-0.23297162894089038,-0.15208643889625492,-0.200736056680293,0.17504950411505982,-0.10813653676004296,-0.04942214982338803,0.06455009628744537,-0.3316947663473205,-0.22504337177262984,0.24620339138381928,-0.10763290844942268,0.06043062421126505,-0.0638634840980054,-0.0038402441795379093,-0.008800142553334235,-0.000995677283406831,-0.15301001608801704,0.015321140185057822,-0.017526542712865696,-0.31406518010291606,-0.15992406632573994,-0.05112957602886247,-0.15778643439149953,-0.20340149517909326,-0.0022447018731416492,0.016756923931429732,0.02725883028903547,-0.218579687199633,-0.10259562480355096,0.0824929999831198,0.06898571902398083,-0.10796465905045467,-0.013062814136470096,-0.12108238203100749,-0.10848134227324929,-0.21481120727948236,0.06617762147846197,0.03741350593561499,0.08892718242137729,-0.2156147854577809,13.72875201155939,25.93390854937488,9.918727279570176,15.452304837681368,30.32378539146903,40.57200074730753,44.303271914684466,46.36994462636309,47.06924695194449,57.548860033713524,44.069842284402206,6.503761540569083,6.97525620874224,0.0,13.479017749311321,6439.616746225433,4416.614673904049,2295.0756097664007,197.0,44.0,60.0,79.0,101.0,118.0,143.0,162.0,186.0,373.1062559600004,31.0,5.017279836814924,5.883322388488279,6.771935555839602,7.6586995582682995,8.556606193773073,9.453208116138121,10.357075935826021,11.25949021791363,12.167191474725865,0.7519379844961239,1.0112558139534886,1.1121960792898864,0.7229187198556362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7182828993176439,0.9979936160510714,1.0225782957028406,0.7022510614932382,12.0,2.0,0.0,0.0,0.0,0.0,8.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.319582184522117,11.49902366656781,11.648808995999854,0.0,0.0,0.0,14.460318640164214,0.0,5.098681808301038,24.26546827384644,48.53093654769288,0.0,22.37774074977455,271.85293832206327,-771.3725287590348,-49.1779104780199,-17.93889601765197,-40.59855414521235,329.9486691313206,936.2169886388494,39.92933636655954,21.77248810788022,39.0090411932854,0.5,0.7035362195293531,0.17874722173548754,34.12230892009426,0.11812697283869981,83.99290888122327,0.29646378047064686,6.0,0.12903225806451613,0.29885850983262396,0.5615478832038814,0.7148694958880636,0.8939058294767166,0.9571421318258823,0.9914284263651765,3.710700000000001,,1.4285714285714288,1.6998604001861328,1.3682854998861482,1.4245628518413376,-5.883722511902063,1.5184363525091802,1.4147681802120076,-2.553951796962389,102.5199,20.11411936859394,0.0,14.76446326439343,0.0,0.0,0.0,78.35985631323634,0.0,39.96212192064522,4.143134726391533,0.0,5.476463551931511,2.3978952727983707,7.009408932708637,4.727387818712341,8.628913441026645,6.86171134048073,10.291908226035034,32.33333333333333,19.549390349001154,9.012368512219702,0.0,0.0,0.0,0.0,2.3151154605041704,1.5024376417233558,43.48400000000001,0.0,11.112801410232036,0.0,0.0,0.0,0.0,0.0,-1.0268847271588977,47.82443140946511,0.0,0.0,11.49902366656781,36.0533507368674,0.0,0.0,10.357988675768818,72.79640482153933,0.0,28.46309825407741,0.0,31.085504953792356,30.886164670658687,36.545688311851265,293.71100071235276,,211.66486951525155,208.07782343800494,207.1356991732415,211.701933594444,287.5410556384781,210.22990292559564,211.87286574090933,258.2233147507648,36.545688311851265,293.71100071235276,,210.33833890300667,206.49938163783213,205.8651483519187,210.37912523201982,290.4829168944292,208.8199263125514,210.55915243071252,259.50029064924615,4.86678717855767,200.88855292166198,,144.16216564414913,141.40068387244446,140.16634348460693,144.18918816618495,199.33413939613183,143.03215586652195,144.32511550492575,179.05007543446203,1.305203153994688,10.48967859686974,,7.559459625544698,7.431350837071605,7.397703541901483,7.5607833426587145,10.269323415659931,7.508210818771273,7.566888062175333,9.222261241098744,2.493807869406357,146.85550035617635,,105.88345516578903,104.09962101900912,103.61671692590241,105.90184404193063,142.29959719126353,105.16918133253029,105.98696030546225,128.4731694261418,42.91372549019607,0.0,0.0,0.0,0.0,0.0,29.534771353478483,43.97086671522215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.196795644209242,423.3892278144415,69.73247213754499,131.02562192839204,166.80005943920938,208.57449695002677,223.3293844521902,231.3293844521902,1149.0,136.12480927778782,178.4123796389424,77.5368233100848,108.47,108.47,1.0,9.461321585024837,5.954196310386875,4.469485715358836,5.197881023831304,,5.194611616553478,5.192991847926456,5.1882605881027475,5.194615643425748,5.1938884941452175,5.193788033475526,5.194721553755777,5.20232464301757,0.15962448983424413,0.18563860799397514,,0.1855218434483385,0.185463994568802,0.18529502100366954,0.18552198726520527,0.1854960176480435,0.18549242976698307,0.18552576977699203,0.1857973086791989,2.5268927666951595,2.6778704643026634,,2.677241277927688,2.6769294122224387,2.676017911383703,2.6772420531291865,2.6771020619866523,2.6770827197074762,2.6772624414038226,2.6787249896070677,265.1300000000002,250.03347173096756,178.85066007484374,,179.24221376745814,179.44089934783423,180.12493405592068,179.24203406955533,179.1821361452408,179.3482977827477,179.2282121410552,178.29381747066822,8.929766847534555,6.387523574101563,,6.401507634552076,6.408603548136937,6.433033359140024,6.401501216769833,6.399362005187172,6.405296349383846,6.401007576466257,6.3676363382381505,6.55121421300522,6.216170573541067,,6.21835745787899,6.219465319350203,6.223270105399019,6.2183564553361785,6.218022226063436,6.2189491300787125,6.218279339153438,6.213052266579005,1.5024376417233558,15.634611060017876,34.02533021591235,1.6160962750573147,-0.32786554171204196,19.549390349001154,0.0,0.0,0.0,315.2599950839982,163.6015352731433,-464.21322775256874,-29.59534557687099,-10.795656459362062,-24.432275144872033,198.56363946033346,563.416888688026,24.02953880994239,13.102718341582001,23.47570369533442,1976.0,46.0,1.8490689080761824,0.6269494912130771,0.0,0.0,0.6063106309956074,0.10919683512489801,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.022360679774997897,0.41666666666666663,0.11687435299583017,0.6766266714351152,0.13270520498512664,19.672997628507925,14.519733093739125,13.541713895658196,8.419046270656935,12.329261272405512,6.0571450988681415,10.575670277574083,4.255878967880132,8.794974692689697,2.851209563794973,6.990508086676913,1.8976807101880384,5.039584070273665,1.0417147933211661,3.8968667299493513,0.6435539091577338,4.73384759455943,1.3083744406488458,7.2809987179861775,1.640334889807997,10.954430120332008,2.0132868098144434,87.40111062018312,64.3821130793553,39.919066153668076,30.138937017527248,26.074899011773226,24.640648649339795,150.0,179.0,51.57989499999999,18.766105,0.5348837209302325,205.07,8.61111111111111,6.111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,23.0,23.0,43.0,0.0,0.0,46.0,23.0,1.0,12.0,34.0,24.0,31.0,22.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,6.0,3.0,1.0,28.0,7.0,0.0,3.0,4.0,0.0,4.0,4.0,0.0,0.0,0.0,1.0,4.0,3.7954891891721947,8.444272975139608,4.43970574626056,5.072827314352703,5.687610747656336,6.243317025058645,6.622653208793743,7.132048169552868,7.575616702326212,8.04988093716946 +36462,COc1cc([C@@H]2c3cc4c(cc3[C@@H](O[C@@H]3O[C@@H]5CO[C@@H](C)O[C@H]5[C@H](O)[C@H]3O)[C@H]3COC(=O)[C@H]23)OCO4)cc(OC)c1O,0,25.783783783783782,6.694324324324325,3.7027027027027026,9.72972972972973,162.23335009214148,101.94266986486487,1.3982076345292973,6.720125675675676,5.091591591591592,8.205920540540541,217.42905504131045,27.375,6.720000000000001,4.55,8.325,145.82891496540694,104.72451790000005,1.6984246118500004,6.843037499999994,3.3326388888888894,8.145296199999999,265.5611407221508,23.85034013605442,6.802244897959184,4.170068027210885,7.244897959183674,154.31303733078605,89.62301138095239,1.4658672287495778,6.874060544217688,3.395313681027967,8.29634593197279,227.48454839258545,21.63917525773196,6.682422680412372,3.768041237113402,6.314432989690721,155.16513716120093,80.03916053092786,1.39241352321435,6.7498443298969075,3.6277205040091633,8.193414948453606,208.96175305724555,19.061674008810574,6.507268722466961,3.405286343612335,5.308370044052864,156.6688638619507,69.19788144052865,1.312867811203634,6.574900881057266,3.2619921683798343,8.050541550660792,191.69120461263012,18.17408906882591,6.39574898785425,3.283400809716599,5.012145748987854,158.6150145195262,66.1888596396761,1.2603009324866603,6.459325910931177,3.1572199730094463,7.960190072874493,182.84148851659486,18.865612648221344,6.524703557312253,3.3043478260869565,5.430830039525691,158.28453766681037,68.55557106324115,1.2534019396352376,6.585463636363637,3.242643829600351,8.080403114624506,185.37246867728325,18.935361216730037,6.552661596958176,3.064638783269962,5.699619771863118,160.45123804820417,69.31409493916348,1.1875893678724334,6.5986539923954375,3.521757498943811,8.115211178707227,176.29154024828563,18.0703125,6.541640625,2.85546875,5.0234375,160.7052492556336,65.30328360156251,1.146431273708422,6.584316796875002,3.70703125,8.108767281250001,167.52943323789745,8.234477720964204,0.21248356464572676,0.04019375357149342,0.7107377647918188,4.937180423666909,1.3092023864452067,38.68386273484295,0.22381436311268368,0.19210067567567563,1.746976706436166,0.14645991234477715,46.8625730828233,0.41417092768444014,-0.017983564645726736,-0.01713009549491971,0.277100073046019,0.9675493060628197,-0.1449841278565813,2.0163968935354344,-0.017901037507267424,-0.012346874999999981,-0.23419517490463432,-0.017251712344777213,0.9229812938019746,0.020716248515475925,-0.02064682995184914,-0.00426622556147385,0.04307727473750634,-0.21903370552019194,0.19312670372184162,0.2891935232927395,0.03429131950058714,-0.01792159863945574,-0.10884878259395633,-0.014365544997838422,5.916609650586189,-0.4360659070884765,0.0027727741673131,0.005130466539441365,-0.06083528499243189,-0.36933422695473395,0.03891833933175162,-2.081069095110431,0.003229063723027656,0.0005615979381443623,0.1016580107552524,0.004337777819613995,-1.6786559437743391,-0.8333585401093441,-0.01315983563036782,-0.0019583420774804123,-0.026370578221989124,-0.362826333894318,-0.05823067619531181,-3.9303092800268997,-0.012100808531995872,-0.013115969162995579,-0.14206673038081538,-0.007528517654933178,-4.069192556463916,0.25944940454186555,-0.0015983474447201597,0.0008824231196145955,0.014724539617853962,-0.042224739237541505,0.03200240947329435,1.2601962732542153,0.006891890063606158,-0.0006347165991902944,-0.04468129361443732,-0.001989355828747015,2.088427645530096,-0.49299710991837914,-0.024069933623400108,-0.0035742390946471004,-0.007287278732637159,-0.10820915991303766,-0.09537730384541733,-2.261158273674271,-0.014312915316704741,-0.02062519762845848,-0.18952795333523886,-0.017848894718455233,-2.0544744481943162,0.6774532213849858,0.014360541818151525,0.00111265007484476,-0.04677722630656553,0.52012098420484,-0.0404358883354487,3.139644573141841,-0.0047828193528684755,0.014185836501901132,0.06099666617599002,0.008118794879557389,1.2148104161640236,0.1424226168736303,0.019266857651570494,0.0031256018127356943,-0.0849987445215486,0.11001129930606285,-0.1811573948568717,0.5019480772347529,-0.031202106512771964,0.0172681640625,0.20068188965993028,0.012738787824141708,-4.72927092814499,,,0.4484126984126985,1.0595238095238095,0.35714285714285715,0.03571428571428571,0.7023809523809523,-0.34523809523809523,1.2195727983756552,0.015042530091592473,0.0293758634249258,1.072406885766377,0.21412287974439048,0.26879205593480504,2.2919796841420323,0.4829149356791955,2.086250777072099,1.4835594587861498,0.0,0.6026913182859496,0.0,0.6026913182859496,7.94843636600001,1908.0,495.38000000000005,274.0,720.0,12005.26790681847,7543.75757,103.467364955168,497.2893,376.77777777777777,607.23812,16089.750073056974,2190.0,537.6,364.0,666.0,11666.313197232555,8377.961432000004,135.87396894800003,547.4429999999995,266.61111111111114,651.6236959999999,21244.891257772066,3506.0,999.9300000000001,613.0,1065.0,22684.016487625548,13174.582673,215.48248262618793,1010.4869000000001,499.11111111111114,1219.562852,33440.22861371006,4198.0,1296.39,731.0,1225.0,30102.036609272982,15527.597143000005,270.1282235035839,1309.4698,703.7777777777777,1589.5224999999996,40538.58009310564,4327.0,1477.15,773.0,1205.0,35563.83209666281,15707.919087000002,298.0209931432249,1492.5024999999994,740.4722222222224,1827.472932,43513.90344706704,4489.0,1579.7499999999998,811.0,1238.0,39177.90858632297,16348.648330999997,311.2943303242051,1595.4535000000008,779.8333333333333,1966.1669479999998,45161.84766359893,4773.0,1650.75,836.0,1374.0,40045.988029703025,17344.55947900001,317.1106907277151,1666.1223000000002,820.3888888888888,2044.341988,46899.23457535266,4980.0,1723.3500000000001,806.0,1499.0,42198.675606677694,18229.606968999997,312.33600375045,1735.4460000000001,926.2222222222223,2134.3005400000006,46364.67508529912,4626.0,1674.66,731.0,1286.0,41140.5438094422,16717.640602000003,293.486406069356,1685.5851000000005,949.0,2075.8444240000003,42887.53490890175,609.3513513513511,15.72378378378378,2.974337764290513,52.5945945945946,365.3513513513513,96.88097659694529,2862.605842378378,16.562262870338593,14.215449999999997,129.2762762762763,10.838033513513508,3467.8304081289243,33.13367421475521,-1.4386851716581388,-1.370407639593577,22.16800584368152,77.40394448502558,-11.598730228526504,161.31175148283475,-1.432083000581394,-0.9877499999999985,-18.735613992370745,-1.380136987582177,73.83850350415797,3.045288531774961,-3.0350840029218236,-0.627135157536656,6.332359386413432,-32.19795471146821,28.389625447110717,42.51144792403271,5.04082396658631,-2.6344749999999935,-16.00077104131158,-2.111735114682248,869.7416186361697,-84.59678597516444,0.5379181884587414,0.9953105086516247,-11.802045288531787,-71.65084002921839,7.550157830359814,-403.72740445142364,0.6264383622673653,0.10895000000000628,19.721654086518964,0.841528897005115,-325.6592530922218,-189.1723886048211,-2.987282688093495,-0.44454365158805365,-5.986121256391531,-82.36157779401019,-13.218363496335781,-892.1802065661062,-2.746883536763063,-2.9773249999999964,-32.249147796445094,-1.7089735076698314,-923.7067103173089,64.08400292184079,-0.39479181884587944,0.21795851054480508,3.636961285609929,-10.429510591672752,7.904595139903705,311.2684794937912,1.702296845710721,-0.15677500000000272,-11.036279522766018,-0.4913708897005127,515.8416284459337,-124.72826880934993,-6.089693206720227,-0.9042824909457164,-1.8436815193572011,-27.376917457998527,-24.130457872890585,-572.0730432395906,-3.6211675751262997,-5.218174999999996,-47.95057219381543,-4.515770363769174,-519.782035393162,178.17019722425127,3.776822498173851,0.29262696968417184,-12.302410518626735,136.7918188458729,-10.634638632223009,825.7265227363042,-1.257881489804409,3.730874999999998,16.042123204285375,2.1352430533235935,319.49513945113824,36.46018991964936,4.932315558802046,0.8001540640603377,-21.75967859751644,28.16289262235209,-46.37629308335916,128.49870777209674,-7.987739267269623,4.42065,51.37456375294215,3.261129682980277,-1210.6933576051174,0.6972229431806584,0.5506749476988788,0.4225505687192959,0.28702383727708164,0.2603610088965489,0.150523584512785,0.16381455839488182,0.080981001396904,0.09901603772189105,0.04345419858909431,0.06080682471487452,0.023381447440650526,0.0373108109532319,0.012281028027740634,0.023185911761247558,0.006459283706406412,8.032786360508883,5.67984407622032,3.55773240309623,2.178904902661626,0.4934395622480076,-0.5244911410833386,3.259873821019941,0.9778115094308086,6.0298153778379096,0.9936081854452322,13.647187626583113,10.94030552667414,16.02035700460197,11.691396563264854,2.0075066280478846,0.741358560716492,3.5037543553940522,2.228701565465615,7.008279134934195,1.1434919031239057,3.7166784398490766,2.4247374669172608,20.913265410381594,14.700310930073805,0.23179011172332467,0.567715354504301,0.8174145194385187,0.8861150466399902,0.9086724876124969,0.921256965674942,1.1933733362013517,1352.5325604550396,0.0,1.0,5.0,0.0,9.0,5.0,3.0,3.0,0.0,4.7160427728991055,2.5516954148320092,0.9428978042002321,0.500264189306133,0.3549278717093296,0.273846790628248,249.38210468442173,4296.990386452989,147.97904711576024,58.067437654770124,123.51643718549172,,16.0,1152.0,66.82290882384797,20.11411936859394,37.25524173497738,28.189378141658796,0.0,14.219595082555067,31.189205473537065,0.0,0.0,42.63176658420044,18.833333333333336,44.5,15.0,1.5,29.5,0.0,0.05158730158730153,-14.5,0.2143432906590806,0.050471401634192614,-0.16387188902488797,0.042486772486772684,0.23559187129551218,0.0,0.6617117117117105,0.9373015873015873,0.4473684210526299,0.6112403100775179,0.8948148148148146,51.22205753177752,0.6317862638468839,1.2337862638468837,45.041089202187834,8.9931609492644,11.289266349261812,96.26314673396536,20.282427298526212,0.4784081287044878,0.15044247787610618,0.0,0.5044247787610618,0.5517241379310345,0.3435325674457987,-1.8523411014417959,-0.12187796735086935,-0.02503163650597021,-0.08820671911627599,0.6564674325542011,3.539698189662827,0.06381219356360422,0.047833759319767945,0.06678675829552505,-2.578220173430898,0.7187971258759872,0.8612112826154217,1.3790291864703093,0.8154355087358685,0.5769446293830449,1.3225808798522853,0.7228000951856189,1.2621322888904283,0.8213684318822128,0.8942760720341936,0.9349561603925158,0.9916038827176045,0.9021637396198614,1.1113931839021833,1.1601800272725018,1.1188780753822598,1.0241841817360176,0.9453886397678589,0.8965058453430711,0.9110092759853148,1.088554124891852,0.8456893489352347,1.1443618851261796,0.8351383952183541,0.9617925460067441,0.9470763472783313,0.8034221393186666,1.2198443012894544,1.010882588011708,1.0456538864863758,0.9633788241050406,1.0424665792388463,0.9450065456224792,0.8719665201701345,0.9525198913882996,1.0146852914849789,1.0225179378742475,0.9705589469231826,0.9077768838573574,1.09142553798371,0.994197164426873,1.0938726719226795,1.0250455105194625,1.0971153081482548,0.9727580788929734,1.0320028462597124,0.9697041901475122,1.084673067261507,0.9115919015411051,0.892347100890844,0.8291097877637663,1.0395766671798476,0.9379635070468347,0.9972415540429299,0.9133378876671883,0.994622662638057,0.8906564040496339,0.9367232805889305,0.8973203722871431,0.9674454838929661,1.0102461581399331,1.0756080528110745,1.0837457498453822,1.0368669491284443,0.9816637398122955,1.0970811442876125,1.0094814396142378,1.0816111574403307,1.0653711306730136,1.0870502539756839,1.0924575553374152,1.0299632697313872,0.9028237664678115,0.9408865436832314,0.9968619152524855,1.0871593871019427,0.8979948999137611,1.0237747924453695,0.9033408966237959,1.010226081298495,0.9319477507917368,1.0167617818478492,0.956985619909745,0.9533267131695167,0.9719672073205894,0.9185552447875485,0.9911561873781133,1.0572468364594039,0.9658671250832225,1.1237710805998693,0.9756382708255931,1.1220439110172258,0.9174970471168693,0.969567019559107,0.9246843999079047,1.0793554563079717,8.5,0.3982307927762474,5.77777777777778,3.8194444444444446,4.034444444444445,2.0766666666666667,1.8578231292517005,1.5000708616780043,0.967269778281683,0.6350077160493828,10558.617566755696,11706.869062803185,4351.685529352328,4016.9435431664256,16.833991079968147,0.47771507552938236,8.792139759740214,0.9146637269180021,0.0,0.5517241379310345,1.4934105927298447,3.657757950796941,5.266555561428718,5.709189176322817,5.8545254939196205,5.935606575000702,0.17708333333333331,0.007964615855524946,0.07914764079147646,0.0460174029451138,0.04860776439089693,0.02386973180076629,0.02041563878298572,0.01612979421159145,0.011795972905874183,0.010242059936280369,0.4412739549538435,30.643229166666668,12.310001876524677,5.349794238683128,240.2294879248509,0.0,4.7032369757457975,269.9363487711514,,218.7295476648131,214.92970828882133,226.92911379307293,218.80775563208488,346.3134180405122,217.80107100690356,218.8898382606374,282.7446102367009,0.0502971702297524,-0.08463508542748087,-0.4261880011890423,0.3898766700924975,0.1959720372836219,-0.11074233392611468,0.052125014178567165,-0.07998162967876551,-0.06427293895022661,-0.1340574113219819,-0.11779136057493632,0.019695489024273788,0.0025157938630077665,-0.09716906804662065,-0.10614150663698108,0.06060923855667644,-0.04436412825227738,0.1475147813060639,0.007475818153812752,0.15321322109842658,-0.0932927413004671,-0.06230694558945089,-0.09808516725055044,0.12625447689629368,-0.05295610989125561,0.013049358297128243,0.1276433794697901,-0.08559455822676182,-0.07480671056384537,0.029726755568651307,-0.05379682761711361,0.014427419572719384,0.0029234563395940903,0.05819082211040742,0.02961750932502646,-0.035820823171778045,-0.10120356971610862,-0.06193342836802073,-0.04872254774605887,-0.03710310543258284,-0.0734885709574377,-0.04447797895741837,-0.10160074517291755,-0.0540662733334209,-0.06827653841852864,-0.08132147947789849,-0.05140326478695759,-0.0868324611470259,0.03150769403156339,-0.007522216823616828,0.021954235203363433,0.02071726077784386,-0.008552399469772796,0.024444203436100084,0.03257679518439465,0.030792885531373614,-0.0033040831166147957,-0.02557635339373654,-0.01358293745297299,0.04456493760679937,-0.05986986990847701,-0.11327903719768556,-0.08892523780565881,-0.010253118792374378,-0.021917197798631244,-0.07285145889810758,-0.05845223599239026,-0.06394994100310991,-0.1073666063688401,-0.1084891130127751,-0.12186880650616295,-0.04384041065272512,0.08227033265998811,0.06758424747859824,0.02768216391797465,-0.06581502858549661,0.1053477773896177,-0.030885895682822333,0.0811616098077489,-0.021369581855032568,0.07384584386288749,0.03491555780410104,0.05543356369383291,0.025922827882647617,0.017295889514769798,0.09067457844889826,0.0777633720417807,-0.11959227261048308,0.02228221168072201,-0.13837233779320918,0.012975645185056537,-0.13941065300202676,0.08989121980837753,0.11487382111082722,0.08697798339625991,-0.10091786722394946,3.983080712703282,30.286145588440743,39.933619526803966,13.940511538952078,36.732935212423534,45.1046703296999,48.288116018548415,49.029371783442755,49.111101513172486,87.62253263702814,62.309497269018294,0.0,25.31303536800988,0.0,25.31303536800988,13020.581006442562,11102.912045168585,3974.8366746602587,700.0,73.0,108.0,155.0,217.0,278.0,369.0,481.0,592.0,588.1842910840007,48.0,5.493061443340548,6.405228458030842,7.337587743538596,8.268475388982598,9.207636720401869,10.146629790357027,11.089942816764351,12.033592502767076,12.979838521696907,0.6981981981981983,1.0183783783783784,1.126576395761142,0.6621880393423145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6489187247127366,1.0019607843137257,1.0338379165764455,0.6346166651080148,4.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,3.0,3.0,0.0,9.0,0.0,10.0,0.0,0.0,0.0,0.0,57.95134876872255,24.41586555099321,35.57810079180605,12.542454139383732,0.0,4.794537184071822,0.0,0.0,0.0,0.0,47.87955994862805,11.835812092322787,39.4552314454906,273.76583516061544,-1476.1561397481103,-97.12623105159699,-19.948055942542027,-70.29314951181478,523.1479398450372,2820.8342467048783,50.85281606416326,38.1193817122281,53.22328767367696,0.5,0.6137120947421629,0.09304447759512445,290.1415874968127,0.057481106694069604,78.08558825721768,0.3862879052578369,8.0,0.10416666666666667,0.24050596804483423,0.5890627943264133,0.8481512383329209,0.9194350678152711,0.9428407219105704,0.955898406107039,1.3385999999999993,,3.25,3.714285714285714,2.250744416417916,3.2404525282830186,-14.069825436408976,3.363372093023256,3.2304324028461955,-5.186928214754333,138.34539999999996,62.745885952794374,0.0,0.0,11.835812092322787,55.94152864326395,34.226301317680736,40.95582274893743,0.0,28.747559166419524,4.574710978503383,0.0,5.963579343618446,3.044522437723423,7.554334823725748,5.351858133476067,9.244645175668174,7.4127640174265625,10.991493795417014,51.66666666666667,6.926914060847731,0.0,0.0,0.0,0.0,0.0,3.2102182656328013,0.0,75.36,0.0,13.385114087700737,0.0,0.0,0.0,0.0,0.0,-0.42944131369005123,83.36665328632452,18.947451815200196,0.0,28.747559166419524,92.51110779981833,28.478851953072066,11.835812092322787,35.63596410869131,24.26546827384644,0.0,0.0,0.0,49.001914911331276,48.01998562874251,55.7673675501201,539.8726975423028,,437.3470616192948,429.7379395186699,453.77351808302194,437.5036961107877,696.8887160283061,435.48758472922384,437.66809173648005,566.7242033816767,55.7673675501201,539.8726975423028,,434.4065854288185,426.40793744052826,451.7371302776912,434.5718581090077,706.6966615174331,432.44453378791695,434.74531956247654,570.6761486881564,5.168753642581676,382.26187244866594,,311.341221875497,305.7915245299831,323.3969893935294,311.45570341513377,501.54823930267855,309.9828926667798,311.57586768361085,406.20785900989443,1.32779446547905,12.854111846245306,,10.413025276649876,10.231855702825474,10.804131382929095,10.416754669304469,16.59258847686443,10.368752017362473,10.420668850868573,13.493433413849445,2.6068685552757693,269.9363487711514,,218.7295476648131,214.92970828882133,226.92911379307293,218.80775563208488,346.3134180405122,217.80107100690356,218.8898382606374,282.7446102367009,74.1450980392157,0.0,4.561874610623624,0.0,0.0,0.0,32.515426995072225,76.50400582665696,0.22621326942894227,0.0,51.526191497067586,0.0,-8.589178139350262,0.0,0.0,0.0,0.0,46.961633217993096,489.0756221876038,110.5123838620085,270.6740883589736,389.72511154572516,422.47999904788844,433.2348865500519,439.23488655005195,3063.0,172.96199338587982,307.83815281804874,96.13790870555881,160.83,160.83,1.0,9.270903227179216,6.584962500721156,5.119924972505388,6.37476807403987,,6.3832366993805225,6.38514778157143,6.3791438109108025,6.383197434666586,6.336049188784437,6.383703090516742,6.383156228265414,6.356652247862979,0.12190297553584258,0.15178019223904451,,0.15198182617572673,0.1520273281326531,0.1518843764502572,0.15198089130158537,0.15085831401867708,0.1519929307265891,0.15197991019679558,0.15134886304435666,3.0682243104258298,3.287432235129259,,3.288759813655033,3.2890591596228846,3.288118414723739,3.2887536624128733,3.2813399431526946,3.288832875977579,3.2887472069437145,3.2845863879346355,389.66000000000145,656.4538471890924,337.25782089284314,,335.3195421012413,334.9712499719784,336.05306845019777,335.3266562999407,344.3329905530993,335.23491399171684,335.3341205690446,340.39989820337183,15.629853504502199,8.029948116496266,,7.983798621458127,7.975505951713772,8.001263534528519,7.983968007141445,8.198404536978554,7.981783666469449,7.984145727834395,8.104759481032662,7.921936915249561,7.255932210302053,,7.250168459500494,7.249129232452389,7.252353614597096,7.250189675452263,7.276693710250809,7.249916047159617,7.250211934899547,7.265205622938473,51.526191497067586,13.385114087700737,32.515426995072225,2.0136756704618017,-1.0248544372798765,6.926914060847731,-6.797222420589437,1.928629031845175,2.8594588482073915,497.66255554059546,218.1677651654213,-1176.3691618244384,-77.4012314393994,-15.89688056519511,-56.01757913449706,416.90379962833873,2247.9616682068113,40.52530961936044,30.377860381173132,42.41437109824172,5464.0,83.0,3.1710303705086145,1.4849963758093294,0.0,0.0,1.0582769026314738,0.3261832172814147,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.07757530498190829,0.6355532736974921,0.22753214653022016,1.2326686798599635,0.39717347927619406,29.28336361358765,23.12834780335291,20.282427298526205,13.77714418929992,19.00635364944807,10.988221669433305,17.691972306647237,8.745948150865633,15.347485846893113,6.735400781309618,13.195080963127772,5.0737740946211645,10.372405444998469,3.4141257917118963,8.555601439900348,2.383475687663966,8.769421771119426,3.4733916520795978,14.8803971444733,5.272302170027961,25.099770321977847,7.798271509439513,154.7323821534808,66.84841594920074,37.69956407252407,29.714082667061813,27.92438205633701,27.285992386494573,242.0,302.0,80.19337599999997,48.59462400000005,0.44594594594594594,582.13,13.11111111111111,8.999999999999995,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,0.0,12.0,12.0,74.0,0.0,0.0,80.0,12.0,1.0,7.0,73.0,13.0,48.0,67.0,0.0,0.0,0.0,29.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,13.0,3.0,4.0,42.0,13.0,0.0,0.0,13.0,0.0,7.0,5.0,0.0,0.0,0.0,0.0,2.0,4.02535169073515,8.124298740481926,4.59511985013459,5.150397236471415,5.6937321388027,6.243924152756245,6.607747556839719,7.041630362538164,7.455804430546094,7.808945063321052 +3033,O=C(O)Cc1ccccc1Nc1c(Cl)cccc1Cl,0,42.333333333333336,6.35609,3.5,8.040329218106995,157.5892215858513,175.08038163333342,1.8645516651113003,6.571833333333334,5.092945689173399,8.017554866666668,265.17318190691424,30.870967741935484,6.401741935483871,4.129032258064516,7.7168458781362,143.93843352408223,120.36424406451609,2.06350384116129,6.611129032258066,3.4403955927253422,7.87322077419355,300.0747599834116,29.367346938775512,6.30795918367347,3.836734693877551,6.283446712018141,146.12346357844186,113.87548846938772,1.9119128043846727,6.516481632653063,3.687788695725205,7.826709632653062,268.7897561894404,26.34375,6.296206250000001,3.203125,4.470486111111112,155.26396290437617,100.05224695312504,1.6488959011600781,6.5008718750000005,3.0049350565843636,7.936263875,224.1333963839178,26.841269841269842,6.174315873015873,2.9365079365079363,4.29355281207133,158.1624987270786,102.45123865079363,1.6001041668062221,6.397739682539683,2.8166788841228723,7.874584079365079,210.9315391650918,23.71186440677966,6.201525423728813,2.9152542372881354,4.726930320150659,157.2382053625427,89.84361050847455,1.5441863997515082,6.37129152542373,3.44639743321476,7.843200406779662,210.89010597779316,26.254545454545454,6.301018181818183,2.7636363636363637,3.8989898989898992,154.66117496952228,99.49142378181818,1.6526811656408176,6.513745454545454,3.397867564534231,7.996789309090907,222.36147084386423,22.254901960784313,6.116823529411765,2.2549019607843137,3.233115468409586,156.9854579868856,79.59052068627452,1.5244698220832356,6.384303921568628,2.8882433631888977,7.944138745098042,191.24948611031812,25.45945945945946,6.228972972972972,1.837837837837838,2.813813813813814,164.10895274222082,97.00206913513513,1.1347327345537837,6.433205405405405,3.653486820153488,8.053261837837837,153.00264255434755,16.66222222222222,0.11775122222222215,0.02384129884984394,0.6099999999999998,3.552208504801098,1.3954390283000888,77.63255317888888,0.27873843009937893,0.13038933333333327,1.7694516418567638,0.10120990666666665,50.68834512661801,-0.33534050179211433,-0.01503229749103946,-0.014729373275243408,0.10935483870967738,0.4126394973228902,0.11866836397277555,-1.4255515810394217,0.02537385805844923,-0.014852129032258117,-0.1866973246385314,-0.010522730322580645,3.3570671938798413,0.33913832199546484,0.022283675736961432,0.002882225545158799,-0.07326530612244896,-0.34464992581394727,-0.34314106474534284,1.4616665517233602,-0.019916110954967873,0.01878726530612243,0.386954487124322,0.015260274285714269,-5.63152114089932,-0.8684722222222221,-0.016229972222222236,-0.000308360783933318,-0.0428125,-0.7475917352537724,-0.18025828252676834,-4.046158793472221,-0.013263565482291358,-0.014570687500000009,-0.26868079105912035,-0.008709464999999991,-4.865760810003777,0.3980952380952376,-0.009470693121693104,-0.003058550233045716,-0.029047619047619037,0.21419034554837021,-0.003623839618965358,1.7546305988888902,-0.007629410655366182,-0.008736317460317453,0.06942861820167104,-0.005961170158730163,-1.9038129682559304,0.9490772128060263,0.016724201506591343,0.00683549096016565,-0.04389830508474575,0.21433958754737156,0.25292789953841693,4.637004356139357,0.04050095960320695,0.013472474576271197,0.1706507178324465,0.004625258305084729,7.728441502167303,-1.412525252525252,-0.031172313131313148,-0.0043319895035048754,-0.09545454545454544,-0.9429305399675769,0.003535764344183975,-6.322407853434343,0.023682278632810812,-0.03337163636363638,-0.3365448418031864,-0.025551636363636335,-1.1468980473839883,-6.813856209150324,-0.018572202614379054,-0.003073120115072299,-0.0884313725490196,0.23026547244412182,-0.2567415021723246,-31.85077613052287,-0.10264950319562727,-0.033949725490196064,-0.10272475601021287,-0.026646616470588223,-16.727767499186804,4.435075075075075,0.05458346246246246,0.00690463562453724,0.04135135135135133,0.3356348941534128,-0.20697963151630275,19.898988195885877,-0.0899643833311808,0.07969967567567568,0.03426242886690991,0.06561873297297299,-1.4126300244631598,,,0.49974937343358394,1.394736842105263,0.7894736842105263,0.07894736842105263,0.6052631578947368,0.18421052631578946,0.6453343229214303,0.01783295588966778,0.026885587468615146,0.9421398974043707,0.2855383616125746,0.19211360683318365,1.5874742203258008,0.4776519684457583,2.0013506752932115,1.5269235514611865,0.10869303261126717,0.17912735977367747,0.1866067314470807,0.47442712383202534,9.833889465066678,1270.0,190.6827,105.0,241.20987654320987,4727.676647575539,5252.411449000003,55.93654995333901,197.15500000000003,152.78837067520195,240.52664600000006,7955.195457207426,957.0,198.454,128.0,239.2222222222222,4462.091439246549,3731.2915659999985,63.96861907599999,204.94500000000002,106.65226337448561,244.06984400000005,9302.317559485758,1439.0,309.09000000000003,188.0,307.8888888888889,7160.049715343651,5579.898934999998,93.68372741484896,319.3076000000001,180.70164609053504,383.508772,13170.69805328258,1686.0,402.95720000000006,205.0,286.11111111111114,9936.893625880075,6403.343805000002,105.529337674245,416.05580000000003,192.31584362139927,507.920888,14344.53736857074,1691.0,388.9819,185.0,270.4938271604938,9964.237419805952,6454.428034999998,100.806562508792,403.05760000000004,177.45076969974096,496.098797,13288.686967400783,1399.0,365.89,172.0,278.8888888888889,9277.054116390018,5300.773019999999,91.10699758533899,375.90620000000007,203.33744855967086,462.74882400000007,12442.516252689797,1444.0,346.55600000000004,152.0,214.44444444444446,8506.364623323725,5472.028308,90.89746411024497,358.256,186.8827160493827,439.8234119999999,12229.880896412533,1135.0,311.958,115.0,164.88888888888889,8006.258357331166,4059.116555,77.74796092624501,325.59950000000003,147.3004115226338,405.1510760000001,9753.723791626224,942.0,230.47199999999998,68.0,104.11111111111111,6072.03125146217,3589.0765579999997,41.985111178489994,238.0286,135.17901234567904,297.970688,5661.097774510859,499.86666666666656,3.5325366666666644,0.7152389654953182,18.299999999999994,106.56625514403294,41.863170849002664,2328.9765953666665,8.362152902981368,3.9116799999999983,53.08354925570291,3.0362971999999995,1520.6503537985402,-10.395555555555545,-0.4660012222222233,-0.45661057153254564,3.389999999999999,12.791824417009595,3.6787192831560422,-44.19209901222207,0.7865895998119261,-0.4604160000000016,-5.787617063794473,-0.32620464,104.06908301027508,16.61777777777778,1.0919001111111102,0.14122905171278116,-3.589999999999999,-16.887846364883416,-16.8139121725218,71.62166103444466,-0.9758894367934258,0.9205759999999992,18.960769869091777,0.7477534399999992,-275.9445359040667,-55.582222222222214,-1.038718222222223,-0.01973509017173235,-2.74,-47.845871056241435,-11.536530081713174,-258.95416278222217,-0.8488681908666469,-0.9325240000000006,-17.195570627783702,-0.5574057599999994,-311.4086918402417,25.07999999999997,-0.5966536666666655,-0.19268866468188012,-1.8299999999999994,13.493991769547323,-0.22830189599481754,110.54172773000008,-0.48065287128806944,-0.5503879999999995,4.374002946705275,-0.37555372000000026,-119.94021700012361,55.995555555555555,0.9867278888888893,0.40329396664977335,-2.5899999999999994,12.646035665294923,14.922746072766598,273.5832570122221,2.38955661658921,0.7948760000000007,10.068392352114344,0.272890239999999,455.9780486278709,-77.68888888888887,-1.714477222222223,-0.23825942269276815,-5.249999999999999,-51.86117969821673,0.19446703893011863,-347.73243193888885,1.3025253248045947,-1.835440000000001,-18.50996629917525,-1.4053399999999985,-63.079392606119356,-347.50666666666655,-0.9471823333333318,-0.15672912586868723,-4.51,11.743539094650213,-13.093816610788556,-1624.3895826566663,-5.2351246629769905,-1.7314359999999993,-5.238962556520857,-1.3589774399999994,-853.1161424585271,164.0977777777778,2.019588111111111,0.2554715181078779,1.5299999999999991,12.418491083676274,-7.658246366103202,736.2625632477775,-3.3286821832536897,2.948888,1.2677098680756667,2.4278931200000007,-52.26731090513691,0.7277927708324572,0.5985161783964797,0.4537693700234705,0.3170049174121029,0.3044145841016843,0.17643411968939637,0.1877666952288108,0.0973155415413754,0.1237939899998358,0.05373578436499861,0.080488410173688,0.02743384760172133,0.054922345652661964,0.016499473898595456,0.03502681363443719,0.007907623258594405,17.002124669383548,5.692605398131943,3.5547307024252,2.190283247610557,0.4349730516188428,-0.3338444146047429,3.230778922506711,0.9728427932084339,6.022003294489015,0.7730833712270184,14.540246726732569,10.953975791381929,35.451527308753,11.704400786663218,2.212348228151813,0.7416148688927366,3.500779604513937,2.2405554667385106,7.008291962839709,1.291473432980173,3.7137138182917955,2.4364397667491318,22.457051516318998,14.701440804920882,0.329336365143605,0.6345600156984273,0.7545857903420523,0.8921098218061476,0.9223115061217363,0.9223115061217363,1.9363262600388873,593.8950014443018,0.0,1.0,0.0,0.0,11.0,1.0,1.0,0.0,0.0,3.178557223793891,1.5767656302935484,0.9468790652188899,0.22516291673878275,0.06666666666666732,0.06666666666666732,-32.65838292007186,730.864026830181,52.91992522932662,24.362134227672705,50.085459346897125,,9.0,281.0,5.969305287951849,4.794537184071822,6.4208216229260096,26.983490668546775,0.0,0.0,36.39820241076966,6.06636706846161,5.316788604006331,28.30840717530574,9.495238095238095,26.5,15.0,1.5,11.5,0.0,0.00025062656641603923,3.5,0.22531024531024507,0.1038548752834465,-0.12145537002679857,0.054660460675498235,0.14216174361915668,0.0,0.6634920634920636,0.8739348370927317,0.4381818181818185,0.5596371882086171,0.8192743764172334,12.261352135507176,0.33882616190368786,0.5108261619036878,17.90065805068304,5.425228870638918,3.6501585298304895,30.162010186190216,9.075387400469408,0.5718382563808433,0.22066198595787362,0.0,0.3159478435305918,0.07142857142857142,0.5362331806338033,-0.8696250628608769,-0.0732993684788901,-0.028987502095362567,-0.06689423560468286,0.46376681936619685,0.7521042412322038,0.04412574804658741,0.025070141374406794,0.04424142595483552,-4.908041209016379,0.525882170729399,0.8109428872748577,1.5592732571286247,0.8690287325929845,0.657352301474556,0.9883904089111186,0.5265609905327533,0.6679053600893049,0.7359048269665177,0.7407519797261809,0.7420455436482347,0.7184056796622116,0.6044264865188542,0.47121945419769184,0.6615838478122721,1.2612914018066246,0.9348038324058519,1.2755766733871454,0.6083194179831359,0.8840499714856342,0.4997056956372209,0.39552312409094975,0.49466392613923016,0.955446161993635,0.9472838590290747,1.0477244397557564,0.8943483064175102,1.1266222677595632,1.159995870437449,1.1589936852456375,0.947465986984874,0.9623011944319418,1.012357342305608,0.9816227505752053,0.9749829907954992,1.0117982301889668,1.044278474259803,0.8749719894166614,1.0645497543094247,1.0187353629976585,0.846763634785538,1.0319452926775388,1.044999438744798,1.0032143712260715,0.933748922234688,0.5199869531611555,0.8957534677539952,1.0134169342413661,0.8033667735124849,0.8427155921420661,0.7170783705033402,1.1146614800407524,0.954423642678908,0.8014926332969994,0.802846853154675,0.803485082027341,0.8488931367301891,0.8932618694099614,0.8752684807297967,0.8311859110599357,1.0859441305560273,1.3473935932896022,1.1599733786991926,1.123695976154993,1.2566290658012802,0.9148530928419998,1.0810499376459453,0.9008399591514471,1.314441272385174,1.4307449762920124,1.3567740218699156,0.9720564066459151,1.803598606687274,1.0367021154658793,0.941802660910598,0.9477124183006539,0.8443576151478833,1.031528194381776,1.7997789909414592,1.4804964055029426,1.284844112915127,0.9384335816236363,1.3497826931318537,1.3693963945822802,0.9619592251627463,0.8807796719693839,0.7901839987016815,0.6852754393738003,1.0164739454850515,0.999105080875786,0.9701441082541397,1.4193138316663323,0.7175955226537073,1.4886612561232009,0.6893754259878366,1.1142864597014759,4.0,0.0,2.222222222222223,1.1875,1.2355555555555555,0.5763888888888888,0.3061224489795919,0.3350694444444445,0.05366591080876793,0.03125,4148.592551111098,4476.480379020029,1822.2982373858213,1701.4639362476041,9.846067843121814,0.4619491546523251,5.29768512634225,0.8585604105014001,1.0,0.07142857142857142,1.7283333718146277,3.3301249653149703,3.960011530389629,4.681727678869736,4.840223928941851,4.840223928941851,0.2,0.0,0.08230452674897124,0.04398148148148148,0.05148148148148149,0.024016203703703703,0.01391465677179963,0.02233796296296296,0.0053665910808767935,0.015625,0.4590279042312773,15.39,7.135802469135802,4.231404958677686,120.33053204396538,1.0,3.8536458024233284,76.64393985292915,,57.185099337438956,58.355296405160914,57.958001336911025,57.14173918980845,75.50589200648973,58.58232438103991,58.93067031630474,70.0525810312777,-0.020125796986723326,-0.1276614986014349,-0.6178091792737972,0.1792702273929138,0.11616421073401925,0.08504016411045653,-0.01836280687245362,0.09103107185257038,-0.11390601249788933,-0.10551140264145431,-0.10396937087628294,0.06622956787194345,0.020353726980255962,0.18924368950419293,0.12089213609172411,-0.12010705921712948,-0.09702412607484188,-0.24590186872109646,0.018828010826273334,-0.07145089734439258,0.14408590661395443,0.21868610476309686,0.15077846416728513,-0.11110090745381299,-0.05212223259535877,-0.13783272832270693,-0.012933891977757598,-0.07018442622950823,-0.21045829214229445,-0.1291767528864069,-0.05211935750906772,-0.04758427274474669,-0.11174754197684894,-0.15184409943929394,-0.08605348317022449,-0.09599368055613669,0.023892085508516535,-0.08042967998939193,-0.12828790294978987,-0.047619047619047616,0.060297796500085675,-0.0025969172034552355,0.022601737635057427,-0.027371219148525947,-0.06700178026053351,0.03923736402811016,-0.05889907771936981,-0.03755918571616929,0.05695982205424272,0.14202996105661767,0.286707993688456,-0.07196443456515698,0.060339810362391236,0.18125327901035665,0.05973015399164184,0.14530095325846204,0.10332497476484172,0.09644271354789621,0.04569965982004064,0.15246979326040103,-0.08477412158393752,-0.26473027237444907,-0.18170106967696653,-0.15648286140089424,-0.2654490970034923,0.0025338006695220577,-0.08144016388158204,0.08496237359293206,-0.2559383924321754,-0.1901972531162451,-0.2524618113500517,-0.022626464614677603,-0.4089404233285738,-0.15772407507863717,-0.12889902242437665,-0.14496946319511417,0.06482318595119047,-0.18398618425133542,-0.4102760353266889,-0.36826462414611977,-0.2603719539190022,-0.05805457102089506,-0.26328071379759754,-0.33001210549291615,0.26617548463374024,0.4635490097882093,0.28960819911799546,0.0677891005759858,0.09448625937913696,-0.14832581525861682,0.2563227329395259,-0.32275557876646466,0.611243831364087,0.019363303328796728,0.648342984734561,-0.027868931623915738,8.015002269790575,15.117842261429628,5.728313254622871,22.39020777367083,35.879389814979135,43.44495734809085,48.21271479863563,48.372479018708326,48.372479018708326,38.02566283057102,29.011547477762544,2.0651676196140762,3.403419835699872,3.5455278974945332,9.014115352808481,2674.364036099724,1637.8470173988385,1274.9754519961145,32.0,27.0,33.0,41.0,49.0,45.0,43.0,44.0,37.0,295.01668395200034,20.0,4.553876891600541,5.3706380281276624,6.2285110035911835,7.069023426578259,7.931284761525891,8.780633799494984,9.643744848773588,10.496952509822922,11.360135525582294,0.8444444444444447,0.9990666666666664,1.109895038320471,0.8218771681514165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7540663273453097,0.995294117647059,1.0246176256372905,0.7116442160255103,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.423315998847038,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,47.46734805431147,23.762552697081826,5.687386274683562,22.153474525092225,241.66396989240263,-391.9135417179773,-33.03379391084621,-13.063784723932578,-30.147195516767493,209.00558697233078,338.9504851122038,19.88613131848042,11.298349503740127,19.938263830129635,0.4444444444444444,0.8221951474649205,0.29658785369823015,96.32238255456636,0.18954820397497107,20.190066406453226,0.17780485253507955,5.0,0.2,0.35222578089705536,0.6786629741236346,0.8070307363147019,0.9541129127801841,0.9864136635272994,0.9864136635272994,4.364100000000001,,1.9369747899159662,0.9903118715747484,0.8348397824051291,1.9634008712352873,-2.2148804386032412,1.0647020203585211,1.0568209388737024,-0.9507363248842613,77.52650000000003,9.901064578912528,0.0,0.0,0.0,6.4208216229260096,5.316788604006331,58.073287598410914,0.0,0.0,3.713572066704308,0.0,5.003946305945459,0.0,6.490723534502507,0.0,8.07246736935477,0.0,9.700820421076743,25.33333333333334,12.332722636894264,0.0,0.0,0.0,0.0,0.0,2.893346875787354,0.0,29.971999999999994,0.0,10.827338400380729,0.0,0.0,0.0,0.0,0.0,-0.8893467078189301,33.296851149614135,5.316788604006331,11.374772549367124,0.0,11.075832682792555,11.21535880699783,0.0,5.563451491696996,42.46456947923127,10.045266627482652,0.0,0.0,24.656315044542495,22.62198982035929,23.52912342110357,153.28787970585836,,114.16630659172887,116.60634945541922,115.82812480198993,114.07680460369738,152.17751055961276,117.05257486519997,117.75009632325435,140.60554960196816,23.52912342110357,153.2878797058583,,112.43322388496202,115.72028093874708,115.08116289141691,112.3200775083816,153.22666445158274,116.09994674172125,116.80451969373576,141.0558983874397,4.727796569113604,111.21737367233101,,84.69834142728345,85.28342229819681,84.34084664992056,84.658551811692,114.72740051599544,85.89576637362904,86.577801119931,105.61471452337074,1.2383749169001879,8.067783142413598,,6.008752978512046,6.137176287127327,6.096217094841575,6.00404234756302,8.00934266103225,6.160661835010525,6.197373490697598,7.400292084314114,2.363898284556803,76.64393985292915,,57.185099337438956,58.355296405160914,57.958001336911025,57.14173918980845,75.50589200648973,58.58232438103991,58.93067031630474,70.0525810312777,29.85882352941177,0.0,0.0,12.148457175051089,0.0,0.0,8.886722691134068,30.738528769118716,-0.0642410714285715,3.087222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.34932648076531,370.5383227643498,51.85000115443883,99.9037489594491,118.80034591168886,140.45183036609208,145.20671786825554,145.20671786825554,390.0,110.43480079509733,80.13123410038357,51.98152969758378,49.33,49.33,0.8,7.8167947841420995,5.321928094887363,3.9495750482240934,4.298145157390286,,4.299294458390006,4.295734576531425,4.292637745172685,4.299278587062628,4.293431960458178,4.296854867929373,4.297511534354135,4.298973979097552,0.2078723709591628,0.22621816617843607,,0.22627865570473715,0.22609129350165394,0.22592830237750974,0.22627782037171726,0.22597010318200936,0.22615025620680912,0.22618481759758607,0.22626178837355534,2.015461876569911,2.1000374570635194,,2.100304815965222,2.0994764576088567,2.0987552891785755,2.1003011243463234,2.0989402900730445,2.099737215186427,2.0998900284120454,2.1002302708879355,202.49999999999974,105.71306066735461,94.54475653881163,,93.81552908709082,94.66272126280084,94.91241600861751,93.79709731684962,94.21363860630677,94.50125411954487,94.42307601544309,94.1025895632499,5.563845298281822,4.9760398178321905,,4.937659425636359,4.982248487515834,4.995390316243027,4.936689332465769,4.9586125582266725,4.973750216818151,4.969635579760163,4.9527678717499946,5.302582334966371,5.190927222719621,,5.183184283781284,5.19217415799559,5.1948084157764685,5.1829877962563895,5.187418840781033,5.190466991690326,5.189639378767119,5.186239451654473,0.0,10.827338400380729,12.941774656364606,1.9255171327790386,-0.8893467078189301,12.332722636894264,-0.0642410714285715,0.0,0.0,244.73147211258126,108.91059422158136,-176.623502175329,-14.887325263361987,-5.887450072510967,-13.586423244256082,94.19245526307381,152.75466492460328,8.962073989053467,5.0918221641534425,8.985568524976665,706.0,27.0,1.3490689080761824,0.6286074140554478,0.0,0.0,0.2757834230632086,0.11129449138793661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.30204641611818106,0.10011334708896384,13.828062645816686,11.371807389533116,9.07538740046941,6.3400983482420585,8.219193770745477,4.763721231613702,6.196300942550756,3.211412870865388,5.075553589993268,2.203167158964943,3.9439320985107122,1.3442585324843452,2.4715055543697884,0.7424763254367954,1.5061529862807992,0.34002780011955946,2.617274361792136,1.1841013583835525,4.040048095113413,1.5756212136281558,5.892627895207516,1.8486796223196742,63.10779273465015,46.665463437071736,33.66948440707003,25.56126109302908,25.055371724123727,25.055371724123727,94.0,107.0,37.77872299999999,13.493276999999997,0.43333333333333335,58.05,6.916666666666666,4.249999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12.0,12.0,30.0,0.0,0.0,31.0,12.0,1.0,7.0,24.0,13.0,20.0,18.0,0.0,0.0,0.0,14.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,2.0,2.0,0.0,19.0,5.0,0.0,1.0,2.0,0.0,2.0,4.0,0.0,0.0,2.0,0.0,2.0,3.332204510175204,6.346567944313784,3.912023005428146,4.388257184424518,4.907124917726591,5.407171771460119,5.425500526716335,5.621645561776009,5.9768266844238696,6.18826412308259 +54676478,CN(C(=O)c1c(O)c2ccccc2n(C)c1=O)c1ccccc1,0,24.46153846153846,6.295892307692308,3.5384615384615383,8.76923076923077,159.48243141116626,96.75146930769229,1.5811184225021542,6.371,5.678062678062678,7.786746974358971,237.3447389671605,26.097560975609756,6.402439024390244,4.219512195121951,8.512195121951219,145.18810079157677,99.80194334146339,1.8756183569756106,6.550878048780488,3.558265582655827,7.795363414634142,278.3800999315199,23.611940298507463,6.367223880597015,4.044776119402985,7.746268656716418,152.81971819908046,89.69350298507459,1.6910927331208054,6.482585074626867,3.3996683250414597,7.795416358208956,248.4865228357033,22.705882352941178,6.347552941176471,3.6588235294117646,6.952941176470588,151.520628408404,85.58454901176471,1.5786299936934463,6.463635294117649,3.722875816993464,7.802487058823529,232.7411998634947,20.96875,6.610790625000001,3.03125,6.34375,157.37104538419,77.07964365625,1.395920905532229,6.676596874999997,5.163194444444445,8.086147041666665,202.9608131867865,17.63917525773196,6.285680412371132,2.752577319587629,4.309278350515464,158.0345988167473,63.60970697938145,1.293081703763268,6.364757731958762,3.891179839633448,7.8233065154639165,183.59590108545873,15.593406593406593,6.42679120879121,2.5054945054945055,3.67032967032967,164.2125184587877,54.374619186813185,1.1763096986361097,6.471197802197803,4.015873015873016,8.005176703296703,166.35656251488663,15.364864864864865,6.139337837837837,2.527027027027027,3.445945945945946,160.0417514294991,54.20032754054055,1.2744594219059056,6.214013513513512,3.414414414414415,7.708779027027026,174.4846803037596,12.661764705882353,5.852161764705883,2.2941176470588234,2.338235294117647,159.11823450964908,43.065136647058814,1.2540668646747941,5.938124999999999,2.78921568627451,7.450662352941177,161.47686322062899,7.207100591715975,0.13022130177514787,0.02422964878983086,0.6745562130177513,4.130177514792899,1.5079312995724066,34.24541699408284,0.22987980576491254,0.1209999999999999,2.110161443494777,0.08256387113740957,49.188162996899074,0.1925241737624467,-0.005949256747005368,-0.011545133073656993,0.35546254870832744,1.331360946745562,-0.27519485521365655,0.9503649271179171,-0.005165717665100006,-0.004000000000000061,-0.19903643480879257,-0.005319648498260126,0.12794773190332714,0.8778592245871231,0.010775024286849752,0.0006687335335271009,0.03841738055285701,0.6838293738408548,0.2566950240995136,4.198385304424627,0.0326261104578912,0.010570149253731297,0.013451262207481154,0.006302676126271994,7.208381157086292,0.6209537069265572,0.0023139018447615473,-0.007368071132546559,-0.1469544030630003,0.13860076575008715,-0.3570511948896293,2.848341209537073,-0.03847513074916073,0.005694117647058768,0.0018881626724764028,-0.0024363236260973803,-2.406907183301439,-0.6325813609467459,0.03750105399408278,0.01082850881243433,-0.151319033530572,-0.235145463510848,0.022603133435187953,-3.2658313995315535,-0.028088151909426966,0.028680208333333266,0.480324074074074,0.028563451512163066,-9.017362473306425,-0.5639602269261272,-0.015998621362776806,-0.00368778200769981,-0.10595986091624474,-0.7772829866406397,-0.3038794433740137,-2.714742239919477,-0.04296204973474523,-0.013077319587628894,-0.16138475245004458,-0.012036815361570313,-6.510008697646159,-1.8436179205409973,-0.05676821639898561,-0.0013761563127133738,-0.005071851225697389,-1.3947590870667794,0.17719742018237375,-8.435773648351649,0.025790832429666684,-0.052978021978022004,-0.6498439831773165,-0.03377107542030616,-0.1313984803352131,-0.8359987206141052,-0.02615248680633295,0.0009737079522990525,-0.02902606748760596,-0.6177035023188869,0.04774919330169181,-3.8344766645610107,0.007446306425211807,-0.02416216216216215,-0.2754421087754421,-0.015776088739627193,-0.5494144512856375,-0.8711277410372431,-0.0134052384267316,-0.0009261909877375306,-0.018447615732683612,-0.43447615732683614,0.041719396718570174,-4.090516064218589,-0.0025047172684110825,-0.013713235294117583,-0.1428830791575889,-0.006685463897590601,-2.879035603901051,,,0.46956521739130436,1.4456521739130435,0.8043478260869565,0.06521739130434782,0.6413043478260869,0.16304347826086957,0.660838000595399,0.017150828459544173,0.028368219763892,1.1350218565075372,0.29712068540888315,0.18199864101735946,1.795859857102936,0.4791193264262426,2.0250771803225063,1.6073820282435272,0.18540805032630508,0.2322871017526737,0.0,0.41769515207897884,7.9004126249230895,954.0,245.5398,138.0,342.0,6219.814825035484,3773.307302999999,61.663618477584016,248.46900000000002,221.44444444444443,303.6831319999999,9256.44481971926,1070.0,262.5,173.0,349.0,5952.712132454648,4091.8796769999985,76.90035263600004,268.586,145.8888888888889,319.6098999999998,11413.584097192315,1582.0,426.604,271.0,519.0,10238.92111933839,6009.464699999998,113.30321311909397,434.3332000000001,227.7777777777778,522.292896,16648.59702999212,1930.0,539.542,311.0,591.0,12879.253414714341,7274.686666,134.18354946394294,549.4090000000002,316.44444444444446,663.2114,19783.00198839705,2013.0,634.6359000000001,291.0,609.0,15107.620356882242,7399.645791,134.008406931094,640.9532999999997,495.6666666666667,776.2701159999998,19484.238065931506,1711.0,609.7109999999998,267.0,418.0,15329.356085224488,6170.141577,125.428925265037,617.3815,377.44444444444446,758.8607319999999,17808.802405289498,1419.0,584.8380000000001,228.0,334.0,14943.339179749682,4948.090346,107.04418257588598,588.8790000000001,365.4444444444444,728.47108,15138.447188854683,1137.0,454.3109999999999,187.0,255.0,11843.089605782934,4010.8242380000006,94.30999722103701,459.83699999999993,252.6666666666667,570.4496479999999,12911.86634247821,861.0,397.94700000000006,156.0,159.0,10820.039946656138,2928.4292919999994,85.276546797886,403.79249999999996,189.66666666666669,506.64504000000005,10980.426699002772,281.07692307692304,5.0786307692307675,0.9449563028034035,26.3076923076923,161.07692307692307,58.809320683323854,1335.5712627692308,8.96531242483159,4.718999999999996,82.2962962962963,3.219990974358973,1918.338356879064,7.893491124260315,-0.24391952662722008,-0.4733504560199367,14.573964497041425,54.585798816568044,-11.282989063759919,38.9649620118346,-0.21179442426910022,-0.1640000000000025,-8.160493827160495,-0.21810558842866515,5.245857008036413,58.81656804733725,0.7219266272189334,0.044805146746315756,2.5739644970414197,45.81656804733728,17.198566614667413,281.29181539645,2.18594940067871,0.7081999999999969,0.9012345679012373,0.4222793004602236,482.96153752478153,52.78106508875736,0.19668165680473151,-0.6262860462664576,-12.491124260355027,11.781065088757408,-30.349351565618488,242.1090028106512,-3.270386113678662,0.48399999999999527,0.16049382716049423,-0.20708750821827734,-204.5871105806223,-60.727810650887605,3.600101183431947,1.0395368459936958,-14.52662721893491,-22.57396449704141,2.1699008097780434,-313.51981435502915,-2.6964625833049887,2.7532999999999936,46.11111111111111,2.7420913451676543,-865.6667974374168,-54.70414201183434,-1.5518662721893504,-0.3577148547468816,-10.278106508875739,-75.39644970414204,-29.476306007279327,-263.32999727218925,-4.167318824270287,-1.2685000000000026,-15.654320987654323,-1.1675710900723204,-631.4708436716774,-167.76923076923075,-5.165907692307691,-0.125230224456917,-0.46153846153846245,-126.92307692307692,16.12496523659601,-767.6554020000001,2.346965751099668,-4.821000000000002,-59.135802469135804,-3.073167863247861,-11.95726171050439,-61.86390532544378,-1.9352840236686384,0.07205438847012989,-2.147928994082841,-45.710059171597635,3.533440304325194,-283.7512731775148,0.5510266754656737,-1.787999999999999,-20.382716049382715,-1.1674305667324123,-40.65666939513717,-59.23668639053253,-0.9115562130177488,-0.06298098716615208,-1.2544378698224856,-29.544378698224858,2.836918976862772,-278.15509236686404,-0.1703207742519536,-0.9324999999999957,-9.716049382716045,-0.45461154503616086,-195.77442106527147,0.7200049327558942,0.558882164788445,0.4407897803121432,0.28634973367705036,0.2745330671929336,0.14735122590798613,0.1784119044355968,0.07721220710059407,0.11205979507171294,0.039526570166568506,0.07029262775014317,0.021039811531528545,0.04194747328758231,0.010429326108756123,0.02676584360460393,0.005519971574986352,8.023669595187792,5.6717982301150105,3.5474661247425567,2.168016165921384,0.492258009756147,-0.4434011237114757,3.322508891293628,0.9772630515136479,6.023482684744506,0.9960239897600494,14.551856005101765,10.935361722487817,16.011467600873,11.685475474960294,2.012720928773782,0.7487037322001252,3.4935249973657188,2.216853153981798,7.0093672499632955,1.3679570052754313,3.7060913533609248,2.412314656691047,20.912268364720056,14.701770987832713,0.2740313559188458,0.5522786122521453,0.6382340476957061,0.767847760303113,0.8478514364691245,0.8932831852218317,1.7342459820128973,945.6330805296541,0.0,2.0,0.0,0.0,12.0,0.0,2.0,0.0,0.0,3.7388086545673103,2.168421154622784,1.6833010382498608,0.9517798840708656,0.5002506411365886,0.24384038472633218,187.82247372681908,1081.3196914254638,49.33872410148525,27.726145933986253,53.95319702489668,,11.0,416.0,11.466446624403513,14.69560176298435,11.3129633249809,16.590311206764618,0.0,9.467009378641833,62.626280513047256,6.06636706846161,0.0,0.0,10.8,33.25,18.5,1.5,14.75,0.0,0.030434782608695622,3.75,0.1738461538461536,0.08330914368650211,-0.09053701015965149,0.02228260869565213,0.15149999999999975,0.0,0.6153846153846155,0.8347826086956518,0.44153846153846193,0.5320754716981134,0.8124999999999997,15.199274013694176,0.394469054569516,0.652469054569516,26.105502699673355,6.8337757644043124,4.185968743399267,41.30477671336753,11.01974450780358,0.5625000000000002,0.18518518518518515,0.0,0.3981481481481481,0.1111111111111111,0.31486300813341916,-0.6711991449648946,-0.04396289806625446,-0.01721023448627935,-0.047942796068921045,0.6851369918665808,1.4605188645399971,0.053303662015046924,0.03744920165487172,0.05842075458159989,-3.407207388691165,0.7287302922290309,0.7290163522971688,1.4558034565636169,0.5813008130081303,0.46319332820835374,1.2843347176125857,0.7329356259021075,0.9988688585073798,0.706267863695802,0.6563302671730586,0.7427895384806923,0.8968478246099412,0.7213726114909852,0.7019208871262974,0.9612262845123218,1.1641791044776124,0.7499893084719669,0.951609001043566,0.7239514294550684,0.8030731772533823,0.6904824257605807,0.5796713999758183,0.6649497270187954,0.7640360020335935,0.7865127660259508,0.8732277217983897,1.3925352618045141,1.4699346405228761,0.9269958986459914,1.2751488557491233,0.7907752634881423,1.1323257397185662,0.8329798187552204,0.8667549107851958,0.9280689513900704,0.9720844841463244,1.071696542601715,1.0589019204903805,0.8808007960120117,1.3315972222222228,1.1574438872970394,0.9981893125369814,1.071523415725334,1.0538887324151167,1.0648914847778488,1.2575101260126011,1.076431446320028,1.0636730123283853,1.0759794378706575,1.2759342554161803,1.3728135341842411,1.2061855670103097,1.2379306609950869,1.1592061777294826,1.073312651854499,1.148225967531398,1.2445512001275831,1.3376358254382137,1.3391841468865708,1.0785564129648564,1.3519430760810074,1.946964376051865,1.4347140964030538,0.9920634920634924,1.5062082139446038,0.8365156968649995,1.3317596573766812,0.8182923134588144,1.9068712173607294,1.9760932137169758,2.000586168685095,0.9178937861390878,1.1272282134351104,1.2614958465649595,0.9871031169681207,0.9857357357357361,1.1620266398203363,0.9214699050639517,1.1215551128526027,0.9397054696600887,1.2574769620224173,1.2372162891964869,1.262826722506001,0.9897116992241851,1.1054122798544705,0.866277956060056,0.6857806567327962,0.7647058823529415,0.9714028878026856,0.8954554527314923,1.1084544589343817,1.0184659282271622,0.9061550303528917,0.7741038809763329,0.8059181157612231,1.102034460010677,3.5,0.01632486480971329,3.333333333333335,2.5625,2.0400000000000005,1.0416666666666665,0.5697959183673469,0.3125,0.13958175862937766,0.042499999999999996,4676.026850681514,5110.358500392979,2226.3648724851764,2058.9962212431205,12.157390971112852,0.48642790841940914,6.243696709197418,0.947146304080423,1.0,0.1111111111111111,1.5465935642949384,3.116981064239465,3.602101180612388,4.333622334791383,4.78515157772566,5.0415618341359165,0.14,0.004081216202428323,0.09259259259259263,0.06101190476190476,0.052307692307692305,0.03156565656565657,0.021915227629513343,0.01420454545454545,0.008723859914336104,0.004722222222222221,0.4311249176508917,17.8112,7.486111111111111,3.3833141099577086,132.57171929051478,1.0,4.069166929253473,100.00470897345915,,72.98266449550687,71.50616733421614,70.65582406128433,72.99650923625805,96.57965485613691,72.3731838651651,73.06991456611553,88.53476222679893,0.02671312427409975,-0.0456857416252673,-0.4764878423868226,0.5269576379974329,0.3223495702005731,-0.18249827116904574,0.027751594535471057,-0.022471385200241323,-0.03305785123966995,-0.09432284691883823,-0.06443070588837495,0.002601189475431177,0.1218047692571624,0.08274394542188575,0.02759980300695762,0.056952081696779275,0.16556900312192618,0.17022991973991308,0.12259699758218896,0.14192682279911273,0.08735660540273807,0.006374518048819827,0.07633697450768222,0.14654706982126417,0.08615860137158306,0.017768996417782276,-0.30409318750170766,-0.2178534571723426,0.03355806505983486,-0.23678213655414923,0.08317437658969751,-0.16737064232822377,0.04705882352941134,0.0008947953618891323,-0.02950835023278706,-0.048932650390972623,-0.08777196223316919,0.28797941260666826,0.44691150525380446,-0.2243238304093568,-0.05693350047755489,0.014989498156578728,-0.09536550248740865,-0.12218625214148399,0.23702651515151482,0.22762432493249318,0.34595581721968227,-0.18332383085489284,-0.07825063903983212,-0.12285717578220422,-0.15220121594364858,-0.15708084644601197,-0.18819602398605745,-0.20152074796788333,-0.07927315472282172,-0.18688918581513217,-0.10807702138536285,-0.0764798129297466,-0.14578792389152462,-0.13234909175316353,-0.2558057705840957,-0.43593648370223526,-0.056796378876566474,-0.00751879699248122,-0.3376995497339337,0.11751027399764191,-0.2463329224406653,0.11219268410223808,-0.4378348923803475,-0.30795936736530793,-0.40902969973514886,-0.0026713435170062504,-0.11599653841033153,-0.20083109637077848,0.040186630881241504,-0.04302987197724043,-0.14955858437233796,0.0316653638764788,-0.11197050587013024,0.03239217294635615,-0.19968729059638157,-0.13053129637288052,-0.19107738678303168,-0.011169647691869969,-0.1208707620979426,-0.10294197833990572,-0.03822552261369349,-0.027347781217750274,-0.10519551660205632,0.02766664285727092,-0.11944710922706464,-0.010895769030588712,-0.11333252309188095,-0.06771191825064855,-0.08097323690726788,-0.058531065778621404,8.776472593916067,15.45826965024998,9.432961161075166,14.347594188420274,27.859690472024877,33.68646818978006,38.365863927044494,40.51377463469147,41.54100540392225,46.57677514741764,36.969786649601126,4.264385157505017,5.342603340311495,0.0,9.606988497816513,3724.6563018671095,2996.9027280923706,913.6018120179633,78.0,36.0,51.0,66.0,82.0,82.0,87.0,88.0,89.0,308.1160923720005,25.0,4.812184355372417,5.6937321388027,6.591673732008658,7.490529402060711,8.395929103923198,9.301368670323747,10.210861952083599,11.11992732031744,12.032046585760327,0.6923076923076925,0.9932307692307697,1.1162038949183164,0.6582363602595055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6960646092430526,0.9803921568627447,1.0107942555138483,0.6665370993752836,9.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,14.573536773482537,11.3129633249809,0.0,0.0,11.466446624403513,9.589074368143644,0.0,0.0,0.0,30.33183534230805,24.26546827384644,25.168954454502735,5.516700717616262,159.71510738195545,-340.467570796122,-22.30029823795149,-8.729937712721078,-24.319112199723,347.53758110877453,740.8521206293418,27.038425863533757,18.996208221265174,29.634084825173677,0.45454545454545453,0.8431240770893119,0.23745546947508459,65.93608334598268,0.13752825020897363,146.4568909368356,0.1568759229106881,6.0,0.08,0.2926160583910798,0.5897339379613828,0.6815188383880058,0.8199229037528674,0.9053523988484127,0.9538653115450461,2.5207000000000006,,1.0357142857142858,1.2284783620288504,0.9699017285501993,1.0327970942604563,-4.283246429381093,1.098531211750306,1.0260103868809844,-1.8356326906609346,90.0293,9.901064578912528,0.0,4.567099647791355,7.04767198267719,0.0,11.947581713527669,70.51455918697532,0.0,5.749511833283905,3.9318256327243257,0.0,5.272999558563747,0.0,6.838405200847344,0.0,8.504918160540624,0.0,10.225969523029635,27.000000000000007,15.916411302175192,0.0,0.0,0.0,0.0,1.0493757873519782,0.1399498719240786,1.376111111111111,38.73600000000002,0.0,25.271496441169063,0.0,0.0,0.0,0.0,0.0,-0.54161753590325,43.53195190181434,10.459176625902487,5.687386274683562,5.749511833283905,22.628478754660758,7.04767198267719,0.0,10.357988675768818,59.39184080022631,0.0,10.902924932081056,0.0,25.671218050120714,27.146519760479052,30.040464028917206,200.00941794691835,,145.87526687921246,142.9055104630385,141.26854582279861,145.90321002953695,195.0355632762215,144.65084327713453,146.05061083771972,177.86762562345046,30.040464028917206,200.00941794691838,,144.99043075584,141.8756239975678,140.46732265573542,145.02080591297153,197.44255614165507,143.72107794293703,145.1729692318125,178.90515714425885,5.009756352187493,146.45538548400697,,109.58757683468406,107.30209540380491,105.70736778135478,109.60817960058147,144.24405992258795,108.6313081190288,109.72396548110412,132.95577626511968,1.3061071316920525,8.696061649866015,,6.342402907791846,6.213283063610369,6.142110687947766,6.343617827371172,8.479807098966152,6.289167099005849,6.350026558161727,7.733375027106542,2.5048781760937455,100.00470897345915,,72.98266449550687,71.50616733421614,70.65582406128433,72.99650923625805,96.57965485613691,72.3731838651651,73.06991456611553,88.53476222679893,38.235294117647044,0.0,3.1618461829176114,0.0,0.0,0.0,10.460148022171833,39.42097596504008,0.0,0.0,0.0,0.0,0.0,1.3524074074074073,0.0,0.0,0.0,25.99494687563606,427.67695483481896,60.3171490075026,121.56226150533912,140.48194604388314,169.01127105686393,186.62091153130075,196.62091153130075,707.0,123.6482532606528,79.57573365591105,57.77411807570567,62.540000000000006,62.540000000000006,0.8333333333333334,8.886728291058532,5.643856189774724,4.058768220915142,4.728801615217917,,4.731776155123891,4.731337117047685,4.731778163641253,4.731782521961129,4.730898184369274,4.731645597083988,4.731795399672537,4.73322073203768,0.17646818351804966,0.20560007022686597,,0.2057293980488648,0.2057103094368559,0.20572948537570665,0.2057296748678752,0.20569122540735976,0.2057237216123473,0.20573023476837116,0.20579220574076867,2.233788656652251,2.3865809350334284,,2.387209763436132,2.3871169740836446,2.3872101879103402,2.3872111089843466,2.3870241983990956,2.387182171293812,2.3872138305155715,2.3875150095851225,230.7699999999998,207.96035068160003,129.37982717399302,,128.5799215853778,128.54839222792307,128.7002175794095,128.5806963538774,130.22434726496638,128.57371945095343,128.5811554847523,129.39236984823475,9.04175437746087,5.625209877130131,,5.590431373277296,5.589060531648829,5.595661633887369,5.590465058864235,5.66192814195506,5.590161715258845,5.590485021076186,5.625755210792815,6.170256562742716,5.695661597748482,,5.68945979179761,5.689214549590361,5.690394928129458,5.689465817358645,5.7021678341903215,5.689411554997224,5.689469388112795,5.695758537639212,1.376111111111111,26.623903848576468,10.931825501805662,0.47922225371630267,-0.822653533635676,15.916411302175192,0.0,0.0,3.1618461829176114,274.750887654183,81.01591761208255,-172.70309063024087,-11.311886235345982,-4.428284375134381,-12.335935045017203,176.28937236899102,375.79922996329225,13.715314211834785,9.635877691366467,15.031969198531693,1114.0,42.0,1.512193753403063,0.6445496954404879,0.0,0.0,0.723587752636268,0.18675473581260693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22243244298633613,0.07382821759213067,0.34002334446613963,0.08971188273322248,16.560113453385565,12.854289790134235,11.01974450780358,7.158743341926259,9.88319041894561,5.304644132687501,9.099007126215437,3.937822562130297,7.395946474733054,2.6087536309935215,5.76399547551174,1.7252645455853408,3.4396928095817496,0.855204740918002,2.328628393600542,0.48023752702381267,4.643177528157994,1.5485922738484903,7.808573184019924,2.0260748642642543,13.03451779001752,2.695350517776652,73.94804103916391,52.42295362963148,39.70049254133637,29.405388149210573,25.150661947054118,22.84950412997565,122.0,148.0,45.33468799999999,21.207311999999995,0.46153846153846156,119.05,8.25,5.083333333333333,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,17.0,39.0,0.0,0.0,41.0,17.0,2.0,9.0,32.0,19.0,25.0,22.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,4.0,1.0,1.0,23.0,5.0,0.0,2.0,3.0,0.0,3.0,2.0,0.0,0.0,0.0,1.0,3.0,3.597312260588446,7.480000796487295,4.276666119016055,4.955827057601261,5.578313729455029,6.149402688296917,6.4468600421003925,6.803817362061828,7.124434229720453,7.433405627733134 +441401,CC(=O)NC[C@H]1CN(c2ccc(N3CCOCC3)c(F)c2)C(=O)O1,0,24.545454545454547,6.611015909090908,3.272727272727273,9.090909090909092,168.3214097592041,97.77151570794936,1.364266434022273,6.630445454545452,6.0435606060606055,8.068847909090907,208.42033976846614,25.97826086956522,6.61204347826087,3.9565217391304346,7.673913043478261,150.591738893726,99.08994412685226,1.6571944389130449,6.730489130434784,3.268719806763285,7.995926695652168,251.82466715796355,21.55421686746988,6.643397590361446,3.5060240963855422,5.927710843373494,161.91958747414924,80.40047445386021,1.3660726051041086,6.702727710843374,3.454149933065596,8.097351036144577,203.43850904775553,17.443396226415093,6.497122641509436,3.0283018867924527,4.433962264150943,165.57169613894754,62.779402091683,1.242685229393726,6.543112264150946,3.20335429769392,8.008877962264151,177.60078895812558,16.60747663551402,6.292662616822433,2.794392523364486,4.121495327102804,162.48256510409658,59.75715842573459,1.237433947938626,6.357498130841123,3.2191069574247133,7.814211775700934,172.84230416688067,15.781818181818181,6.350217272727274,2.5727272727272728,4.090909090909091,166.2550647375816,56.609629513352736,1.118127182165682,6.393616363636368,3.552525252525252,7.897650072727273,157.1894319340842,16.33695652173913,6.640217391304348,2.467391304347826,4.891304347826087,170.80228430596938,58.51671611716519,1.041367538066641,6.650344565217391,4.427536231884057,8.161587434782609,148.68118878778782,15.926470588235293,6.349838235294118,2.7794117647058822,4.220588235294118,171.49681546299607,57.52609785677644,1.0810582178695731,6.375938235294117,3.477941176470589,7.893379823529413,152.30864939928125,19.017857142857142,6.6108214285714295,2.982142857142857,4.25,163.1600112469633,68.7860557406,1.3036565587392133,6.664853571428574,3.728174603174604,8.085062642857146,188.93900587048321,8.179752066115704,0.21126585743801637,0.027565133761934348,0.5950413223140497,4.9070247933884295,1.8932554459181394,38.98744068676701,0.21737828983859497,0.19038574380165277,2.5562873048668506,0.13002937809917356,46.59863515249336,0.4823032698526757,-0.007186855461731945,-0.0163909192460192,0.15989938914840093,1.3637261947538628,-0.5852387643879633,2.227114888279072,-0.03911328181414828,-0.0024624236435501286,-0.05739896494590166,-0.008286672565576724,-2.8012973852005696,0.2923180324604195,0.004150380239968141,0.0016799992334726997,-0.0068704570347506355,0.00754256696206319,-0.12485402118351206,1.4198427572545151,0.004737396563010697,0.004392405157821374,0.18419736106962284,0.003058888056357654,1.4486533365254535,-1.0352409168875722,-0.028118022961172606,0.0005226831390823052,-0.06759706845470143,-0.7217760798378292,0.17659888367640053,-4.705447021057277,0.016858257597498455,-0.026750237798222335,-0.24174447086646922,-0.01645462509745829,0.12424078540903379,-0.48688885456090236,-0.006337140360701321,-0.0010352603069089326,-0.048737159187456566,-0.18230091913184523,-0.10009861757467588,-2.254502791268328,-0.027380802346723306,-0.005632005483895878,-0.16992956862593653,-0.005360658473005318,-4.799029783015774,0.18842975206611576,-0.00514676652892562,0.0013895779689169598,0.02892561983471074,-0.03719008264462821,-0.15231615903434279,0.7531504135897714,-0.013195228474177683,-0.0033019834710743858,-0.24598542240587695,-0.004078716115702479,-0.8686876265736436,-0.27659001077973416,0.012737798688465684,-0.002195744685437748,0.02254761049227454,0.15967481135465328,-0.09325451658018465,-1.4872409487228437,-0.009734524481469562,0.00924770481494792,0.07298092086876674,0.009634299766439083,-3.6713229043282873,1.1778682547399126,0.012926655930967425,0.0008997085109724086,-0.07766164316966459,0.042173067574137094,0.12961984650934763,5.578430144851724,0.029280561634581412,0.013910245503159925,0.44296068978555597,0.008856420029168689,7.986174567109115,-1.5312131050767417,-0.022275516528925603,0.003919379268734267,-0.15510625737898473,-1.355076741440378,0.2787412077219989,-7.413449612965614,-0.020101430250484616,-0.02284053276269183,-0.29315373704578246,-0.011934344008264467,-6.881693120644013,,,0.4507936507936509,1.09375,0.3958333333333333,0.020833333333333332,0.6979166666666666,-0.3020833333333333,0.8324502226380757,0.015520819446454226,0.026270819446454225,0.8614916383292579,0.23027875335769968,0.2506259922947251,1.6939418609673336,0.48090474565242475,2.0308250787873723,1.375559596184595,0.26776628532380037,0.31293579303229846,0.07456340424667794,0.6552654826027767,7.662358735000011,1080.0,290.88469999999995,144.0,400.0,7406.14202940498,4301.946691149772,60.02772309698001,291.7395999999999,265.91666666666663,355.0293079999999,9170.49494981251,1195.0,304.154,182.0,353.0,6927.219989111396,4558.137429835204,76.23094419000006,309.6025000000001,150.36111111111111,367.81262799999973,11583.934689266323,1789.0,551.402,291.0,492.0,13439.325760354386,6673.239379670397,113.38402622364102,556.3264,286.69444444444446,672.0801359999998,16885.39625096371,1849.0,688.6950000000002,321.0,470.0,17550.59979072844,6654.616621718397,131.72463431573496,693.5699000000003,339.55555555555554,848.941064,18825.68362956131,1777.0,673.3149000000003,299.0,441.0,17385.634466138334,6394.015951553601,132.40543242943298,680.2523000000002,344.44444444444434,836.1206599999999,18494.12654585623,1736.0,698.5239000000001,283.0,450.0,18288.057121133974,6227.059246468801,122.99399003822502,703.2978000000005,390.7777777777777,868.741508,17290.83751274926,1503.0,610.9,227.0,450.0,15713.810156149182,5383.537882779197,95.80581350213097,611.8317,407.33333333333326,750.866044,13678.66936847648,1083.0,431.789,189.0,287.0,11661.783451483732,3911.774654260798,73.51195881513097,433.56379999999996,236.50000000000006,536.7498280000001,10356.988159151126,1065.0,370.2060000000001,167.0,238.0,9136.960629829946,3852.0191214736005,73.00476728939594,373.23180000000013,208.77777777777783,452.7635080000002,10580.58432874706,359.909090909091,9.29569772727272,1.2128658855251113,26.181818181818187,215.90909090909088,83.30323962039813,1715.4473902177483,9.564644752898179,8.376972727272722,112.47664141414143,5.7212926363636365,2050.339946709708,22.185950413223082,-0.3305953512396695,-0.7539822853168832,7.355371900826443,62.731404958677686,-26.920983161846312,102.4472848608373,-1.7992109634508209,-0.11327148760330591,-2.6403523875114763,-0.38118693801652936,-128.8596797192262,24.262396694214818,0.34448155991735574,0.13943993637823407,-0.5702479338843027,0.6260330578512447,-10.3628837582315,117.84694885212475,0.39320391472988786,0.3645696280991741,15.288380968778695,0.2538877086776853,120.23822693161263,-109.73553719008265,-2.9805104338842963,0.05540441274272435,-7.165289256198351,-76.50826446280989,18.719481669698457,-498.7773842320714,1.786975305334836,-2.8355252066115675,-25.624913911845738,-1.7441902603305786,13.169523253357582,-52.09710743801655,-0.6780740185950414,-0.11077285283925578,-5.214876033057853,-19.50619834710744,-10.710552080490318,-241.23179866571112,-2.9297458510993937,-0.6026245867768589,-18.18246384297521,-0.573590456611569,-513.4961867826878,20.727272727272734,-0.5661443181818182,0.15285357658086557,3.1818181818181817,-4.090909090909103,-16.754777493777706,82.84654549487486,-1.4514751321595452,-0.36321818181818244,-27.058396464646464,-0.4486587727272727,-95.5556389231008,-25.44628099173554,1.171877479338843,-0.20200851106027284,2.0743801652892575,14.690082644628102,-8.579415525376987,-136.82616728250161,-0.8955762522951997,0.8507888429752087,6.7142447199265405,0.8863555785123957,-337.76170719820243,80.09504132231406,0.8790126033057849,0.06118017874612379,-5.280991735537192,2.8677685950413223,8.814149562635638,379.33324984991725,1.991078191151536,0.9458966942148749,30.121326905417806,0.6022365619834709,543.0598705634198,-85.74793388429754,-1.2474289256198339,0.21948523904911896,-8.685950413223145,-75.88429752066116,15.609507632431939,-415.1531783260744,-1.1256800940271385,-1.2790698347107425,-16.416609274563818,-0.6683232644628101,-385.3748147560647,0.7126701469898159,0.5607261079059328,0.44391207290993057,0.30353825908921483,0.2933923976287769,0.16079429500329068,0.1811051935917926,0.0879884365985685,0.11647579487943112,0.0470108668012238,0.0764942624834936,0.0257943705555897,0.0469874239685917,0.01266527681222006,0.030608154835976165,0.007055558217215972,9.004068869278893,5.697709798927246,4.107720122727768,2.1957994179357363,0.5021379417612453,-0.47192111954131893,3.2055493169572524,0.9726884672442642,7.004063346429096,0.9959518303074626,17.424771948298485,10.960055707520594,19.000141858997555,11.71024955310916,1.9803464009726002,0.5458502064568813,3.98867300987415,2.245229536877551,8.001919738731653,1.246815856168415,4.0099574592229565,2.4408110179879183,20.883956733238243,13.304119324722212,0.30859632014350125,0.6118323092121052,0.7720972495656341,0.8392277757197419,0.8472410227374187,0.8472410227374187,1.4950220306788924,633.7485798888887,0.0,1.0,7.0,0.0,6.0,1.0,0.0,0.0,0.0,3.7089420318161523,1.9888585228256122,1.0797676137347043,0.6989747159582631,0.6535201705037155,0.6535201705037155,229.44022043872417,1451.1130604902446,63.05707836330039,32.97984228386919,69.97637206293822,,14.0,541.0,12.197206458686718,13.979489415818463,24.81391338222255,37.67804929021811,0.0,17.89001399900271,12.13273413692322,4.899909730850478,5.316788604006331,9.473725907600098,10.819047619047621,26.25,9.5,0.5,16.75,0.0,0.04920634920634911,-7.25,0.19929971988795486,0.040857142857142814,-0.15844257703081205,0.024968253968253862,0.22623701159295795,0.0,0.6404761904761905,0.9242063492063487,0.44117647058823567,0.5996190476190477,0.8992380952380948,19.978805343313816,0.3724996667149014,0.6304996667149014,20.67579931990219,5.5266900805847925,6.015023815073402,40.654604663216006,11.541713895658194,0.487762988407042,0.13424295774647885,0.0,0.3512323943661971,0.5,0.2956720744063918,-0.7641871480559492,-0.06724904734902132,-0.0173678897285443,-0.0694715589141772,0.7043279255936084,1.8203895306519577,0.04506188045021118,0.041372489332999036,0.05516331911066539,-2.7351563987309278,0.7168476888103055,0.6851256182189176,1.6732847280288465,0.8568840579710143,0.4632585812356981,1.468994941400759,0.7207525636845179,1.3520518938858688,0.6556667131111967,0.5310898739771518,0.7301698585090679,1.1023974363570135,0.8694297269908123,0.8458518513851236,1.1605789772694008,1.1872489959839354,0.933402663284718,1.0771611596490032,0.8647921971713285,0.9800820700984058,0.8375797270149157,0.5313582816980443,0.8529889708934844,0.9289472131536928,1.07583509271924,1.0749062195268215,1.1371889486719402,1.2085298742138362,1.1273088381330687,0.9074344742437283,1.068284271418183,0.8980656197628092,1.0793787576336187,0.9302572088163064,1.0686965625081317,0.9575379981287488,0.977570329522465,0.8783370379527285,0.9008161467748832,1.066767263759086,0.9231992129857355,1.0968537190911527,0.9805465675347417,1.1706719633969473,0.8797326873202364,0.9861237538385645,0.8734869521489876,1.1229087925846553,0.9748042434958321,1.122840453807199,0.7515328334757153,0.903298611111111,1.0148000000000004,1.2125741554475418,0.9865349117081151,1.09042500958454,1.1080514549083151,1.3256501069245579,1.1150954268614979,1.0248940122976438,1.0999456384462478,1.3057616085965904,0.9846706547103211,0.8925875603864732,1.1180983981693366,1.287065961953208,1.1120154718661301,1.020122434445891,1.2945587272676402,1.446559074262479,1.2794390427414926,1.0233913149275469,0.8442287119444898,0.8238066229793298,1.066417432067384,1.3042279411764703,1.0016470588235296,0.8205111210496439,0.8427105712745582,0.7441242843824607,0.8222200226888853,0.5967996590036024,0.7766106090401919,0.7695802096966812,1.1168743008696278,1.0993286448775759,1.0265562846527965,1.3637462797619047,1.2447368421052634,0.9829831565728426,1.1212724828481988,1.1196707672590462,1.1014253145876554,1.2757609203770865,1.0891409891924502,1.1165208841310386,5.0,0.0618304254667891,2.666666666666668,1.8194444444444444,1.2994444444444446,0.7572222222222224,0.6556009070294785,0.2777777777777778,0.19830246913580246,0.15500771604938274,4834.061066420588,5397.223369592788,2389.6438032211945,2189.3925026993893,12.80532148273039,0.48819576984252727,6.553817703387774,0.9538720883419007,1.0,0.5,1.750489586821145,3.470573095811685,4.379664004902593,4.760456902679034,4.805911448133582,4.805911448133582,0.1923076923076923,0.005152535455565758,0.07407407407407411,0.05198412698412699,0.03937710437710438,0.024426523297491048,0.026224036281179138,0.01388888888888889,0.009915123456790123,0.009118100944081338,0.4464682060669941,18.781065088757398,8.589506172839506,4.803402646502835,138.85436154244692,1.0,4.1044572208128205,127.51943819365903,,103.48836906328513,100.7116392238784,99.536903849314,103.45521903760238,156.03367770931118,102.35336610857752,103.67931884859223,136.33978756441795,0.05896306708984466,-0.034018064011315734,-0.594625057421415,0.26871980676328483,0.2779130434782609,-0.3091176975878974,0.05712390577704661,-0.17993186827990132,-0.012933865710636006,-0.022454035130018923,-0.06372923324494,-0.060115438489418506,0.035736783963334934,0.01964529569661216,0.060946529336007395,-0.011546184738955927,0.0015370957514267724,-0.06594673817138488,0.03641795235193352,0.021793328885457004,0.023071082267574924,0.07205659579771576,0.0235245919120265,0.031087891990500504,-0.12656140534821542,-0.13309307666726128,0.01896174869298463,-0.11360062893081765,-0.14709036742800397,0.09327789551967111,-0.12069135439953065,0.07755262777168703,-0.1405054667648393,-0.0945685840579101,-0.12654544179168747,0.0026661893637540584,-0.05952366900921362,-0.02999604591840205,-0.03755687586535711,-0.08190550363447562,-0.03715100836202657,-0.052871163154707204,-0.057826385922109126,-0.1259592315638041,-0.029582075692407936,-0.06647514475482155,-0.04122651781750996,-0.10298648806582034,0.023036120232381916,-0.024361563157149695,0.050410710171698,0.0486111111111111,-0.007578947368421077,-0.08045198515748975,0.019317770038837234,-0.060701684993359914,-0.01734364876875682,-0.09622761179369453,-0.031367650721144245,-0.018641911372100833,-0.033813984646979364,0.06029274603542054,-0.07965659460974313,0.03789251207729471,0.0325400457665904,-0.049256172367675724,-0.03814666781212028,-0.044781493536900675,0.048573515171295295,0.02854957685304786,0.07409325421129824,-0.07878606084306838,0.14399803872041364,0.061186677713695396,0.03263936677190544,-0.13051470588235295,0.008594427244582046,0.06846400298956391,0.14308274784359307,0.1346986474883138,0.0730634827240629,0.1732828265986434,0.06811091584560135,0.17138215617205257,-0.1871955399992783,-0.10543831738387284,0.14218611462523262,-0.2606646825396826,-0.2761503759398497,0.14722852551300736,-0.19014968621630665,-0.09247211515653234,-0.11996976405170072,-0.11467949494082863,-0.09178190484893443,-0.1476801433802465,9.31564707905779,14.177049564682038,4.101606652976779,17.984475825981313,34.98179171791465,39.26901960851248,40.1529952131075,40.198813394925686,40.198813394925686,48.739801890896935,33.01343030843028,6.426390847771208,7.510459032775163,1.7895217019202705,15.726371582466642,5514.630558079364,5142.273087992857,977.899341018312,99.0,36.0,46.0,60.0,72.0,75.0,88.0,97.0,94.0,337.1437843400005,26.0,4.8283137373023015,5.666426688112432,6.541029999189903,7.40184157874383,8.282735880201754,9.154298981092557,10.038586465957742,10.916124291196926,11.80264296453408,0.6742424242424243,1.011909090909091,1.145680278177636,0.6383379689829777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6412746325530758,0.9951871657754009,1.0260709792756408,0.6181345410136373,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,6.0,1.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,19.690424242456906,11.921187228794198,0.0,5.907179729351506,0.0,9.694446914922299,9.184952231746642,0.0,0.0,0.0,18.19910120538483,20.013250011515776,37.67804929021811,166.0053703679834,-429.0536087933585,-37.75704227219032,-9.751218381667238,-39.00487352666895,395.44559080670757,1022.0594516968861,25.300036091110076,23.228623902201953,30.971498536269277,0.5,0.7415648538116077,0.17103226246523626,62.499545210172016,0.16030343133624037,25.93655290484423,0.25843514618839253,7.0,0.15384615384615385,0.3206358663501451,0.6357022742008367,0.8022197750314125,0.8719693248703552,0.8802951999118843,0.8802951999118843,1.1235999999999997,,1.761904761904762,2.090104302625157,1.7219886934026898,1.7923518247588088,-7.881927179765617,1.8777328349212405,1.7282681802120077,-3.1006114622630965,85.73070000000004,23.45321532341856,0.0,5.316788604006331,0.0,13.027703587438927,49.192609014377084,24.016322046430723,0.0,0.0,3.970291913552122,0.0,5.2832037287379885,2.3978952727983707,6.78105762593618,4.727387818712341,8.36474106822456,6.803505257608338,9.996659083423923,29.666666666666668,4.715445142563198,0.0,0.0,0.0,0.0,0.0,0.5664407775532427,0.0,44.52400000000001,0.0,22.906936837767255,0.0,0.0,0.0,0.0,0.0,-0.7275166558152317,50.40993223981599,15.116608065707286,20.559724781113765,0.0,57.497175740714354,14.268263091671919,5.817220841045895,6.923737199690624,18.19910120538483,0.0,0.0,0.0,28.086870635251017,28.216083832335336,30.73795770347748,255.03887638731808,,206.88745048582578,201.33557273043334,199.02612463146585,206.81549519093898,314.03783721356365,204.62060317808601,207.27172324883261,273.55617754067896,30.73795770347748,255.0388763873181,,205.41919651757178,199.59381914491246,197.59113405363036,205.32186867030669,319.94928259838775,203.0558258156517,205.8314997653226,275.7801865910991,4.817440878301539,193.01711955304026,,156.96185118387535,152.8950241655148,150.34562401457254,156.93855125112324,229.03583419883927,155.2644422886835,157.23214745863146,203.52141747093225,1.280748237644895,10.626619849471586,,8.620310436909408,8.38898219710139,8.292755192977744,8.617312299622457,13.084909883898485,8.525858465753585,8.636321802034692,11.398174064194956,2.4337864344313362,127.51943819365903,,103.48836906328513,100.7116392238784,99.536903849314,103.45521903760238,156.03367770931118,102.35336610857752,103.67931884859223,136.33978756441795,43.78823529411764,0.0,1.3971010768563215,0.0,14.447913991622055,0.0,0.0,45.1471230881282,2.9423991072413487,2.6081289826197693,10.456331801438779,0.0,-0.44131389046793124,3.2947994952878608,0.0,0.0,0.0,27.19791980460004,416.3522999458963,77.02154182013038,152.70521621571416,192.7052162157141,209.4601037178775,211.4601037178776,211.4601037178776,717.0,124.63200058633151,145.09866122879473,72.32474176899382,71.11,71.11,1.0,7.740650814868416,5.700439718141092,4.211384126479544,4.81110631764386,,4.801066775225623,4.800891096441455,4.8005351882169185,4.800936001342991,4.794205716794703,4.800968569309958,4.801136420839156,4.799846856119928,0.17547433860331432,0.20046276323516085,,0.2000444489677343,0.20003712901839396,0.20002229950903827,0.20003900005595796,0.19975857153311263,0.2000403570545816,0.20004735086829817,0.19999361900499701,2.3132601021500867,2.4463957986929437,,2.444306875413691,2.4442702831297973,2.4441961465975472,2.444279636537452,2.442876783750123,2.4442864201847434,2.4443213815873497,2.444052749783756,237.39999999999998,222.17435486699065,138.08202499079778,,138.4728148790436,138.43099216553668,138.5942514975906,138.45855700521204,140.46151525024217,138.46149635623982,138.48181593881088,139.29287457394668,9.25726478612461,5.753417707949907,,5.76970061996015,5.767958006897362,5.774760479066274,5.769106541883835,5.852563135426757,5.769229014843326,5.77007566411712,5.803869773914445,6.278931193258642,5.8033166299261945,,5.80614276125359,5.805840687300392,5.8070193477632115,5.806039790804651,5.820402275797071,5.806061019682749,5.80620776150106,5.812047465172695,24.90424579306083,26.201736333055116,2.6081289826197693,0.9483750651571727,-0.5713718197944033,4.715445142563198,-0.9793930140926896,4.33950018409767,0.0,298.35929950045363,93.20387475326483,-240.89256105250092,-21.19872767483469,-5.4748309330113845,-21.899323732045538,222.02330705071944,573.8362615328942,14.20472958110812,13.041733216656684,17.388977622208916,1467.0,35.0,1.6892758167960682,0.6416811370637006,0.0,0.0,0.3285328532178296,0.08588923621597516,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.037267799624996496,0.38992543652441325,0.1299005368084876,0.4950949569044542,0.11966519226440397,17.10408352775558,13.457426589742386,11.541713895658194,7.891994736319586,10.562126314635968,5.788594620118465,8.33083890522246,4.047468083534151,6.988547692765867,2.820652008073428,5.507586898811539,1.8571946800024584,3.5240567976443775,0.9498957609165045,2.6935176255659026,0.6208891231150055,3.448618396318797,1.232938342727093,5.458085639714332,1.6336927434915238,7.970309249632899,1.951034643314641,78.01641049792931,39.24868746170684,29.103262974236017,26.38818324384515,26.230936352088904,26.230936352088904,124.0,144.0,47.12085999999997,30.375139999999995,0.38636363636363635,124.08,7.888888888888889,5.277777777777779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,6.0,6.0,44.0,0.0,0.0,46.0,6.0,2.0,5.0,41.0,8.0,26.0,38.0,0.0,0.0,0.0,16.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,5.0,1.0,2.0,24.0,8.0,0.0,3.0,4.0,0.0,3.0,4.0,0.0,0.0,1.0,0.0,1.0,3.4657359027997265,6.117684117140466,3.9415818076696905,4.347046915777855,4.819272992650152,5.258471458000837,5.44727601967287,5.756434220930033,5.990057307410501,6.007737668706825 +6047,N[C@@H](Cc1ccc(O)c(O)c1)C(=O)O,0,25.6,6.716595999999999,3.08,8.96,165.13154332386955,101.18487384,1.3509463181335601,6.73354,8.445555555555556,8.21504992,210.49802342253247,25.28,6.741319999999999,3.64,7.68,151.510048875138,95.38130952,1.6818789767199995,6.844100000000001,4.406666666666667,8.17791584,258.07893780320273,23.256410256410255,6.475230769230769,3.41025641025641,6.564102564102564,150.54695423657944,87.43694817948717,1.558851163582,6.582887179487181,4.623931623931625,7.928644820512818,231.01573618558965,18.462962962962962,6.520796296296298,2.611111111111111,4.481481481481482,159.2612904032721,66.37078648148149,1.2533473424860182,6.577940740740741,5.010288065843621,8.042974962962964,179.51717163713093,13.0,6.312,2.1403508771929824,2.807017543859649,165.98915847854977,43.589720982456136,1.0261991730910176,6.3441842105263175,3.761208576998051,7.941650105263158,139.9894175198697,14.113636363636363,6.105181818181819,2.227272727272727,3.4545454545454546,165.4400562302224,49.85651570454547,1.0370709311599315,6.154397727272727,3.579545454545455,7.714591181818181,142.5922646546488,15.8,6.6155428571428585,2.0,4.428571428571429,168.9410432547812,55.594043342857155,0.9346667011654859,6.623660000000002,4.931746031746033,8.219613600000002,138.49885533455827,16.72,6.945159999999998,1.68,5.36,174.62320086756773,59.48139815999999,0.7754998569577201,6.900352000000001,7.426666666666668,8.553827519999999,118.93872921461858,13.642857142857142,7.151000000000001,1.2857142857142858,3.9285714285714284,181.45577064391756,45.354889285714286,0.621375747814,7.055371428571429,8.595238095238093,8.817660000000002,91.68743517295933,8.294400000000001,0.2100153599999999,0.055138831540811194,0.6464,4.2943999999999996,1.3612979458085526,38.970640079999995,0.21265167455799358,0.19017599999999996,3.5171555555555556,0.14126864639999998,45.64962569440939,-1.0112,-0.05809247999999994,-0.03526272240016589,0.14559999999999992,0.2495999999999998,0.4365036096987191,-4.390835904,0.059921360179199995,-0.052268000000000016,-0.9065333333333335,-0.036118911999999975,8.010762263437966,0.34867692307692294,0.024401460512820494,0.00043027504048147953,-0.19614358974358978,0.042010256410256255,-0.17614196031018176,1.4686609548717935,-0.025809454216236656,0.022076307692307687,0.4541264957264956,0.016921798728205123,-3.5418282617981744,-1.055140740740741,0.011211380740740738,0.010636859199460428,-0.06862222222222222,-0.6929185185185186,-0.14978168959564098,-5.1923274251851845,-0.04562278945019212,0.0068177037037037164,0.20905843621399167,0.009264307674074069,-10.96770983504443,-1.6607157894736844,-0.052219149473684195,-0.009685299279078453,0.0034245614035087802,-0.902119298245614,-0.09804702153455343,-7.646717152280702,-0.004198861344870797,-0.047853894736842074,-0.852496686159844,-0.03391903797894736,-3.809222428605966,1.1646909090909092,0.003853730909090842,0.0038015083005418014,-0.0191272727272727,0.46196363636363635,-0.254356877492147,5.461589337272727,-0.02441822537504177,0.008337636363636382,-0.018872727272727142,-0.0028011882181818294,1.6150271864575587,-0.2932571428571428,-0.03344530285714284,-0.005411162141385718,-0.06811428571428567,-0.10125714285714282,-0.21814102729290863,-1.2917785771428567,-0.02820792394869189,-0.027140000000000015,-0.7218539682539682,-0.027836486399999992,-2.3422599480517046,1.0784,0.05085776000000006,0.010274404318388143,-0.06719999999999994,0.6944,0.03090309725694458,4.861976688,-0.0063265186008160225,0.044911999999999945,0.8110666666666666,0.034053823999999996,-0.014978350980883395,-0.8458285714285712,0.03448664000000008,0.0027470663446583325,0.15360000000000004,-0.35439999999999994,0.4379612094020812,-4.067460154285713,0.05820306415692637,0.023063999999999973,0.9436380952380946,0.036831033600000014,1.2586750939763882,,,0.44523809523809516,1.1964285714285714,0.6071428571428571,0.07142857142857142,0.5892857142857143,0.017857142857142856,0.6007636698510275,0.029378986212508704,0.035521843355365845,0.8324795486602499,0.25599741999995274,0.20849599109990247,1.4332432185112773,0.4644934110998552,1.9336289301564409,1.317514549164219,0.12418276970408801,0.49193161128813373,0.0,0.6161143809922217,7.88275231328,640.0,167.9149,77.0,224.0,4128.288583096739,2529.621846,33.773657953339004,168.33849999999998,211.13888888888889,205.376248,5262.4505855633115,632.0,168.533,91.0,192.0,3787.75122187845,2384.532738,42.04697441799999,171.10250000000002,110.16666666666667,204.44789600000001,6451.973445080069,907.0,252.534,133.0,256.0,5871.331215226598,3410.040979,60.795195379698,256.73260000000005,180.3333333333334,309.2171479999999,9009.613711237997,997.0,352.1230000000001,141.0,242.0,8600.109681776694,3584.0224700000003,67.68075649424499,355.2088,270.55555555555554,434.320648,9693.92726840507,741.0,359.784,122.0,160.0,9461.382033277338,2484.614096,58.493352866188,361.6185000000001,214.3888888888889,452.674056,7979.396798632573,621.0,268.62800000000004,98.0,152.0,7279.362474129786,2193.686691000001,45.63112097103699,270.7935,157.50000000000003,339.442012,6274.059644804547,553.0,231.54400000000004,70.0,155.0,5912.9365139173415,1945.7915170000003,32.713334540792005,231.82810000000006,172.61111111111114,287.6864760000001,4847.45993670954,418.0,173.62899999999993,42.0,134.0,4365.580021689193,1487.0349539999997,19.387496423943002,172.5088,185.66666666666669,213.84568799999997,2973.4682303654645,191.0,100.114,18.0,55.0,2540.380789014846,634.96845,8.699260469396,98.77520000000001,120.33333333333331,123.44724000000002,1283.6240924214305,207.36000000000004,5.250383999999998,1.3784707885202798,16.16,107.36,34.03244864521381,974.266002,5.316291863949839,4.754399999999999,87.92888888888889,3.5317161599999993,1141.2406423602347,-25.280000000000005,-1.4523119999999985,-0.8815680600041472,3.639999999999998,6.239999999999995,10.912590242467978,-109.77089760000001,1.4980340044799998,-1.3067000000000004,-22.663333333333338,-0.9029727999999994,200.26905658594916,13.598399999999994,0.9516569599999992,0.016780726578777702,-7.649600000000001,1.638399999999994,-6.869536452097089,57.27777723999994,-1.0065687144332296,0.8609759999999997,17.71093333333333,0.6599501503999998,-138.1313022101288,-56.97760000000001,0.6054145599999998,0.5743903967708631,-3.7056,-37.41760000000001,-8.088211238164613,-280.38568095999995,-2.4636306303103743,0.3681560000000007,11.289155555555551,0.5002726143999997,-592.2563310923991,-94.66080000000001,-2.9764915199999993,-0.5520620589074718,0.19520000000000048,-51.4208,-5.5886802274695455,-435.86287768,-0.23933509665763542,-2.7276719999999983,-48.59231111111111,-1.9333851647999993,-217.12567843054006,51.24640000000001,0.16956415999999705,0.16726636522383925,-0.8415999999999989,20.3264,-11.191702609654469,240.30993084,-1.074401916501838,0.3668560000000008,-0.8303999999999943,-0.12325228160000049,71.06119620413259,-10.264,-1.1705855999999994,-0.18939067494850012,-2.3839999999999986,-3.5439999999999987,-7.634935955251802,-45.212250199999986,-0.9872773382042161,-0.9499000000000005,-25.264888888888887,-0.9742770239999997,-81.97909818180966,26.96,1.2714440000000014,0.2568601079597036,-1.6799999999999986,17.36,0.7725774314236146,121.54941720000001,-0.15816296502040056,1.1227999999999987,20.276666666666664,0.8513455999999999,-0.37445877452208487,-11.841599999999996,0.4828129600000012,0.038458928825216655,2.1504000000000008,-4.961599999999999,6.131456931629137,-56.94444215999998,0.8148428981969691,0.32289599999999963,13.210933333333324,0.5156344704000002,17.621451315669436,0.7653698907638801,0.5245533717213153,0.46449341109985526,0.285484897084267,0.32056046222102763,0.15641692449305974,0.21666519909877838,0.08631609531786345,0.12719425026224834,0.049391763281448356,0.0851581941250541,0.02640715916376144,0.05869173563600878,0.014463507659051498,0.04086628956296009,0.007651378335633717,8.028868403144877,5.692604915376071,3.5548945533358185,2.191390559585694,0.4485091739137469,-0.33084496024768023,3.1778194095973853,0.9727685444688559,6.022013191395856,1.9849647053800914,14.537811715559126,10.953132463040136,16.01429092486609,11.704326215429784,1.9846034997452646,0.7415411725175471,3.500933273019604,2.2411269647620116,7.008292712042618,1.257483826614028,3.7138530491965405,2.4371693875806444,20.891162812604993,14.701054614919348,0.3418155152769336,0.7272318876680283,0.8117498181974857,0.8900521006795702,0.9065198472764049,0.9229875938732396,2.3261299167316234,350.6652327975252,0.0,1.0,0.0,0.0,5.0,2.0,1.0,0.0,0.0,2.983322912719643,1.110977500432694,0.7003910001730773,0.3200000000000003,0.2400000000000002,0.16000000000000103,61.535817537795936,828.1166361472442,86.60325130479,33.12466544588977,66.76874249738503,,8.0,170.0,12.011146117099809,4.794537184071822,17.919845289493818,5.563451491696996,0.0,18.19910120538483,0.0,0.0,0.0,21.0532496616843,6.2333333333333325,16.75,8.5,1.0,8.25,0.0,0.054761904761904824,0.25,0.22933333333333322,0.07019354838709668,-0.15913978494623654,0.17042606516290715,0.2441507537688442,0.0,0.662666666666667,0.9476190476190476,0.43333333333333374,0.5924731182795703,0.7771929824561404,8.410691377914384,0.41130580697512187,0.49730580697512183,11.654713681243498,3.5839638799993385,2.9189438753986345,20.065405059157882,6.502907755397973,0.46984924623115576,0.27807486631016043,0.0,0.4010695187165776,0.2222222222222222,0.41881661047248187,-0.9151338243753478,-0.13641521587810052,-0.03660535297501392,-0.09151338243753478,0.581183389527518,1.2699128081900437,0.0920938302788941,0.05079651232760174,0.08466085387933625,-0.2659501562981528,0.8935185185185183,1.0466617298849,1.543216639690174,1.0396039603960396,0.6885245901639344,0.9521347563946092,0.8898439911690564,0.8854882795740984,1.0265017667844523,1.0323493732308935,1.0532030071182161,0.8263185876015371,0.7226377018043683,0.523724330668737,0.6689284870004591,1.6565118050266565,0.7566204287515762,1.3435359840021002,0.7360141402595652,1.3003410139852078,0.5190916268654785,0.5366613269464058,0.5326473871035503,1.1280420794988861,1.0116598079561039,0.7964920068491922,0.6128521236032016,1.0588558855885588,1.0266600430534856,1.1669170902246602,1.0206036867902075,1.2391250170834698,0.8110335221642642,0.7986251516376871,0.7867689017354226,1.2178375893946336,1.1878654970760232,1.2063959712781311,0.9935395553037207,0.8207399687337156,1.1902894344654482,0.9525413914774932,1.1837700793815813,0.9489915728478129,1.2160524987380108,1.2005980377551237,1.1921270354267293,1.0486399103607473,0.8154461279461278,0.7575342021736801,0.7598490251106459,0.9113411341134113,0.7976561441539086,1.1102654868062032,0.8206237320241156,1.0617561781084375,0.7511300536918912,0.7325134176377606,0.7577262895946262,0.9760900802089775,1.0830026455026454,1.3058114279967772,1.1624971072252588,0.9971711456859971,1.108154140941026,1.0120569417605088,1.0754897723360302,0.9876352750174736,1.2869762746087834,1.3661472474149383,1.3448963010662778,0.9517948450257061,1.0277777777777777,1.1822495268917474,1.280174014652765,0.9801980198019802,1.0640834575260805,0.722063190667832,1.0201900269942912,0.7825028331758068,1.1776779404341242,1.1949049737161341,1.1999485711784945,0.8296661232607915,1.368220899470899,1.5324430147803068,1.827956440906131,0.4243281471004243,1.4211198637428144,0.2974774799844628,1.3502529120232136,0.36952526805927915,1.557402466286868,1.4318930160013865,1.4680979183947618,0.7269958120436764,4.0,0.0,2.000000000000001,0.8125,0.7733333333333337,0.3402777777777778,0.28408163265306124,0.11805555555555555,0.0,0.0,2367.805939342981,2662.5662672650346,1285.8830073771826,1151.8521958374872,9.060469407596054,0.4646938729929484,4.850124787446119,0.8680899574064224,1.0,0.2222222222222222,1.6605332770550816,3.5328786893420303,3.943465189601647,4.323856189774724,4.403856189774724,4.483856189774723,0.28571428571428564,0.0,0.10526315789473686,0.04513888888888889,0.06444444444444446,0.03093434343434343,0.03156462585034013,0.019675925925925927,0.0,0.0,0.5827356721529654,12.071428571428571,5.185595567867036,3.5918367346938775,80.41034351633131,1.0,3.5269375820735798,47.35567555950914,,38.10082494614644,37.762672641688134,38.492574032740066,38.10676599690075,49.2236869231272,38.002829229090295,38.11663813194275,43.72861794692538,-0.12191358024691357,-0.27661062505142464,-0.639526109182529,0.22524752475247511,0.05812220566318922,0.32065251478760937,-0.11267035632430908,0.28178174615247836,-0.27484014807336377,-0.2577461585119289,-0.2556753598228006,0.17548363522330102,0.04203763057929722,0.11618893262293055,0.007803484920840406,-0.3034399593805535,0.009782567159616305,-0.1293926585671596,0.03768634417748556,-0.12136962603225585,0.11608356308002953,0.12911754642446108,0.11978453223294369,-0.07758723555606141,-0.12721121970736168,0.053383622706171314,0.19291049342580863,-0.10616061606160615,-0.16135397692774744,-0.11002858709720383,-0.13323690384674802,-0.21454234745633305,0.03584944316687552,0.059439633224004404,0.06557936180574934,-0.2402584833546099,-0.20022132878492527,-0.24864442997733222,-0.17565296558578405,0.005297898210873731,-0.21006876356315526,-0.0720246598743802,-0.19621738664243932,-0.019745254080873458,-0.25162951548482504,-0.24238242315250316,-0.24010308616468323,-0.08344476807117553,0.14041894640852973,0.018349757413414162,0.06894430284994528,-0.02959045904590455,0.10757349952580951,-0.18684879256250547,0.14014625692729263,-0.11482733642138576,0.04384168540528976,-0.005365906333860198,-0.019828803415092605,0.03537876076507124,-0.035356040564373886,-0.15925169881451934,-0.09813704770621823,-0.10537482319660531,-0.02357888013625718,-0.16024488097155118,-0.033147481655191144,-0.13264849198729978,-0.14270991081945156,-0.2052379989601987,-0.19704645800301232,-0.05130951048167205,0.1300154320987654,0.24216209709613656,0.18633699756193617,-0.10396039603960387,0.161698956780924,0.022701200242089156,0.12475999054722225,-0.029750617360366365,0.23616018845700804,0.2306030125353821,0.24105719752971316,-0.0003281155267548615,-0.10197585978835973,0.16421008444334786,0.049820902400245504,0.2376237623762377,-0.08252608047690013,0.32172325738870566,-0.1043724235972496,0.2737014146627538,0.1212771327612316,0.2682958090231643,0.2607162632231466,0.027572517295153542,2.94168275343288,9.440342420283834,3.6859940079665585,16.268244061732602,29.68483293278147,33.84336595429266,35.10704008246712,36.38696008246712,36.46760008246712,27.07080502219017,18.445203688299067,1.738558775857232,6.8870425580338726,0.0,8.625601333891105,1443.8553002133194,1244.668449494719,359.59427411311367,0.0,19.0,21.0,21.0,25.0,21.0,18.0,14.0,6.0,197.068807832,14.0,4.204692619390966,4.990432586778736,5.820082930352362,6.63200177739563,7.461065514354283,8.28121766128665,9.110409533351133,9.933774245141,10.763313747429157,0.6933333333333332,1.02032,1.1364950241112581,0.6566980268087587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6388676167664671,1.0031372549019608,1.0347560087399854,0.6238885161815592,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,21.0532496616843,6.041840829147961,11.49902366656781,0.0,0.0,4.794537184071822,0.0,0.0,0.0,6.06636706846161,24.117007251546223,0.0,0.0,158.72842137920958,-346.82900262706244,-51.7003655705238,-13.873160105082498,-34.68290026270624,220.2642389170055,481.2876335201818,34.902885734266206,19.25150534080727,32.08584223467879,0.5,0.46757367468252586,0.2307776344765713,118.52269445424095,0.146594364103756,27.878617654878344,0.532426325317474,4.0,0.21428571428571427,0.3575763781642073,0.7607640170083328,0.8491790073699389,0.931091750708257,0.9483188130311928,0.9655458753541283,0.052200000000000135,,1.1428571428571428,1.3285248953001396,0.9177863289708527,1.1395624948769625,-4.847358875538426,1.1960679314565485,1.1342421939878375,-1.9153025404755315,49.08680000000002,20.11411936859394,0.0,0.0,5.733667477162185,12.462662452073971,0.0,23.762552697081826,0.0,11.49902366656781,3.367295829986474,0.0,4.653960350157523,0.0,6.12029741895095,0.0,7.663407664893479,0.0,9.243678431586693,17.333333333333332,4.092483938019652,0.0,0.0,0.0,0.0,0.0,0.04901407785336476,0.0,25.508,0.0,10.418623551272361,0.0,0.0,0.0,0.0,0.0,-1.099477040816326,28.412375602781452,5.733667477162185,0.0,11.49902366656781,27.330728301621924,11.21535880699783,0.0,5.563451491696996,18.19910120538483,0.0,0.0,0.0,16.417450670218965,15.971690419161678,16.60166141866688,94.71135111901827,,76.03838458617042,75.33555601261911,76.85403573277,76.05073735167622,100.5248133643423,75.83479161082965,76.07124166474438,88.27807983976885,16.60166141866688,94.71135111901825,,75.05879274943571,74.19682038807613,76.06736173650926,75.07396949892453,103.29473272179283,74.80959052672404,75.09903406989767,89.37253843432629,4.584177823422993,71.80847124556063,,58.95905499592874,58.56419382506314,59.420842952365376,58.966004371437535,72.06695842096909,58.84477600126468,58.97750708949255,65.55950489147551,1.1858329584762057,6.765096508501306,,5.431313184726458,5.381111143758508,5.489573980912143,5.43219552511973,7.1803438117387355,5.4167708293449754,5.433660118910312,6.30557713141206,2.2920889117114966,47.35567555950914,,38.10082494614644,37.762672641688134,38.492574032740066,38.10676599690075,49.2236869231272,38.002829229090295,38.11663813194275,43.72861794692538,25.078431372549023,0.0,0.0,0.0,0.0,5.292960128495843,26.633114921894684,25.868900218499636,0.11425925925925906,0.0,0.0,0.0,-1.0009788359788365,0.0,0.0,0.0,0.0,15.59721290453898,177.20699085240753,41.51333192637704,88.32196723355075,98.58662974004118,108.0964047443681,110.0964047443681,112.09640474436809,173.0,95.1969906154799,201.78566944380756,45.04863969557512,103.78000000000002,103.78000000000002,1.0,6.439799551353702,4.807354922057604,3.405551633276727,3.688463312266647,,3.691131262463581,3.6924378261786424,3.688988260705804,3.691106683735886,3.648332661020244,3.6914863619468745,3.691072354175737,3.668820611941059,0.2432536880911948,0.26346166516190334,,0.2636522330331129,0.26374555901276014,0.263499161478986,0.26365047740970615,0.26059519007287457,0.2636775972819196,0.2636480252982669,0.2620586151386471,1.5618791699370416,1.6416821613955024,,1.6424052228824593,1.6427591340365402,1.641824472987751,1.6423985639999161,1.6307424946483997,1.6425014216839233,1.6423892633422177,1.6363424878966513,143.06999999999994,60.01959674807274,57.17664446155013,,56.92734917695106,56.82314819629316,57.056733741597355,56.929198063365405,59.755663424338195,56.89772669224559,56.932147688434206,58.49837368298785,4.2871140534337675,4.0840460329678665,,4.066239226925076,4.058796299735226,4.075480981542668,4.066371290240386,4.2682616731670135,4.064123335160399,4.0665819777453,4.1784552630705605,4.4311433579849515,4.382617738015002,,4.378248115650147,4.376416017994125,4.380518338244445,4.378280593122183,4.426736208285559,4.377727624270757,4.378332403946128,4.405471190181783,0.0,10.418623551272361,26.633114921894684,5.857960128495844,-1.6154629629629613,3.0915051020408155,0.11425925925925906,0.0,0.0,176.57569962743042,60.15690668312527,-131.4456463735134,-19.594059085859662,-5.257825854940536,-13.144564637351337,83.47852987527705,182.40448059548356,13.227937516444367,7.296179223819341,12.160298706365573,321.0,18.0,1.2445642597518123,0.4175063329385694,0.0,0.0,0.4023689270621825,0.03818324081226343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.18419528592042317,0.03852691958159105,10.71517847069432,7.343747204098415,6.502907755397974,3.9967885591797376,6.0906487821995245,2.971921565368135,4.549969181074346,1.8126380016751324,2.671079255507215,1.0372270289104155,2.1289548531263525,0.660178979094036,1.2325264483561844,0.30373366084008147,0.7355932121332815,0.1377248100414069,2.664049989979743,0.624261161397507,2.31010170069601,0.5790400807783912,3.2854367837408875,0.6347845794683197,49.22266065027076,30.045963965604095,23.790455642947133,21.64503519646461,19.95296723500879,19.741458739826808,66.0,73.0,26.672722999999984,11.333276999999997,0.24,14.05,6.555555555555555,3.138888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,25.0,0.0,1.0,25.0,6.0,1.0,4.0,21.0,7.0,14.0,18.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,4.0,4.0,0.0,14.0,5.0,0.0,1.0,4.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,1.0,2.9444389791664403,0.0,3.481240089335692,3.855452653939752,4.210274029229161,4.706710915543052,4.605170185988092,4.495285563083644,4.523146350509501,4.123093975508087 +5284513,COc1cc(C)c(/C=C/C(C)=C/C=C/C(C)=C/C(=O)O)c(C)c1C,0,19.48,5.876799999999999,2.76,5.88,160.5378857585595,76.47736416000001,1.44112895052148,5.957865999999999,3.949444444444444,7.461720959999999,207.02409245666365,21.4,6.104,3.16,5.62,143.250168099573,79.45485135999998,1.79017471472,6.25912,3.1388888888888893,7.567156479999999,252.63370166356626,17.46987951807229,5.918313253012048,3.0843373493975905,4.180722891566265,153.01227966029435,64.45346978313252,1.4977654162082168,6.03148313253012,3.0589022757697464,7.469349397590362,206.14351705118372,17.414893617021278,5.976808510638298,2.9361702127659575,3.3617021276595747,147.3908304290005,62.27352423404254,1.5964421179632662,6.112281914893616,2.8421985815602846,7.490627063829786,215.936000899381,13.459677419354838,5.780725806451613,2.379032258064516,2.032258064516129,153.68674960669418,46.2481957016129,1.3340530254849272,5.8906290322580634,2.5806451612903225,7.359885193548386,171.50358028133522,10.481751824817518,5.7471532846715325,2.0364963503649633,1.5036496350364963,160.25881100032166,33.965863445255465,1.150137888458876,5.825040145985402,2.4557988645579885,7.387756905109489,142.0800120179216,10.129032258064516,5.5186290322580644,2.024193548387097,1.532258064516129,160.93922744110492,33.94068492741935,1.1378603589625482,5.604596774193548,2.134856630824373,7.17169370967742,138.61314090370487,10.035714285714286,5.564553571428571,1.9196428571428572,1.6607142857142858,159.310403079443,32.74842884821429,1.1523027401175712,5.654642857142856,2.2003968253968256,7.2051510357142865,139.10628033368738,9.444444444444445,5.470555555555556,1.8796296296296295,1.6111111111111112,164.34061615440515,31.865019944444448,1.0149363004884444,5.542611111111112,2.1810699588477367,7.14922511111111,122.31053197864185,7.089600000000001,0.09758399999999998,0.01680339294737816,0.5696,3.5696,1.3340721490870693,33.853179321599995,0.2393597137159103,0.09468803999999992,1.2707666666666668,0.061144799999999985,52.63948821059357,-0.001599999999999948,-0.0021599999999999766,-0.009254779815967973,0.2888,1.5160000000000002,-0.017751769476598192,-0.0030659744000055156,-0.0025048445408000462,-0.0016518399999999622,-0.13990000000000005,-0.0018668480000000342,-0.1531283500917081,1.488231325301205,0.01640636144578313,0.0014849007615788175,-0.021166265060240955,0.2096771084337349,0.308821679262035,7.140177803219273,0.05549656925592957,0.01638128530120482,0.37075943775100406,0.009920825060240949,12.01216133515884,-1.313004255319149,-0.010788255319148914,-0.0009964254568723358,-0.16364255319148932,-0.8930042553191488,-0.18203704561792122,-6.282989258621279,-0.035087378275986174,-0.012015699574468046,-0.1436153664302601,-0.004954725106382996,-9.156965879705877,-1.0608903225806452,-0.0025227096774193512,0.0007935129982875893,-0.12121290322580645,-0.7689548387096775,-0.3112129176970473,-5.176568910309678,-0.05558407887987202,-0.003652201290322569,0.032548745519713276,-0.0007800658064516038,-11.249889202782866,-1.356753284671533,-0.01809494890510948,-0.001101630421285343,-0.029454014598540145,-0.5906218978102191,-0.039947415451039775,-6.394700750505109,-0.01145749510648558,-0.01898577722627735,-0.17573017031630167,-0.009094094014598535,-5.855661868125114,0.5194322580645162,0.004861161290322558,0.0003997257560034474,-0.01056774193548386,0.1774967741935484,0.04964214325670291,2.4733222890451634,0.010208393062193798,0.00537484709677416,0.0795200716845879,0.0022023664516129496,3.1216676089207156,-0.5481714285714286,-0.00010542857142858617,-0.0006272951202123308,0.026828571428571427,0.3068285714285715,-0.1614577248184296,-2.6815565655285707,-0.029015481765296464,-0.00090870071428573,-0.03579642857142849,0.0005311171428571831,-5.940750252685165,1.6926222222222227,0.017749333333333298,0.0017286228355434976,0.05484444444444444,0.6281777777777777,0.03910871928512893,7.999632182844446,0.013345543716567392,0.01982818222222216,0.19726831275720175,0.00744967111111116,7.555139242796436,,,0.4791666666666667,1.0416666666666667,0.5,0.020833333333333332,0.5416666666666666,-0.041666666666666664,0.9886524644514756,0.02742028955629457,0.031003622889627904,0.7877038367066437,0.22731649205916013,0.2416887834834243,1.7763563011581194,0.4690052755425844,1.9410906285770917,1.721860586944853,0.0,0.2192300416322385,0.0,0.2192300416322385,6.523763893840014,974.0,293.84,138.0,294.0,8026.894287927975,3823.8682080000003,72.056447526074,297.89329999999995,197.4722222222222,373.08604799999995,10351.204622833182,1070.0,305.2,158.0,281.0,7162.508404978649,3972.742567999999,89.508735736,312.956,156.94444444444446,378.35782399999994,12631.685083178312,1450.0,491.21999999999997,256.0,347.0,12700.019211804432,5349.637991999999,124.31452954528199,500.6130999999999,253.88888888888894,619.956,17109.91191524825,1637.0,561.82,276.0,316.0,13854.738060326046,5853.711277999999,150.06555908854702,574.5545,267.16666666666674,704.1189439999998,20297.984084541815,1669.0,716.8100000000001,295.0,252.0,19057.156951230078,5734.776266999999,165.42257516013098,730.4379999999999,320.0,912.6257639999999,21266.443954885566,1436.0,787.3599999999999,279.0,206.0,21955.45710704407,4653.323291999999,157.56889071886602,798.0305000000001,336.4444444444444,1012.122696,19464.96164645526,1256.0,684.31,251.0,190.0,19956.46420269701,4208.644930999999,141.09468451135598,694.97,264.72222222222223,889.2900200000001,17188.029472059403,1124.0,623.23,215.0,186.0,17842.765144897618,3667.824031,129.05790689316797,633.3199999999999,246.44444444444449,806.9769160000001,15579.903397372987,1020.0,590.82,203.0,174.0,17748.786544675757,3441.4221540000003,109.61312045275199,598.6020000000001,235.55555555555557,772.1163119999999,13209.53745369332,354.48,4.879199999999999,0.8401696473689079,28.48,178.48,66.70360745435346,1692.6589660799998,11.967985685795515,4.734401999999996,63.53833333333334,3.0572399999999993,2631.9744105296786,-0.0799999999999974,-0.10799999999999883,-0.46273899079839864,14.440000000000001,75.80000000000001,-0.8875884738299096,-0.15329872000027578,-0.12524222704000232,-0.08259199999999811,-6.995000000000003,-0.09334240000000171,-7.656417504585406,123.5232,1.3617279999999998,0.12324676321104186,-1.7567999999999993,17.4032,25.632199378748908,592.6347576671997,4.606215248242155,1.35964668,30.773033333333338,0.8234284799999987,997.0093908181838,-123.42240000000001,-1.0140959999999979,-0.09366399294599956,-15.382399999999997,-83.94239999999999,-17.111482288084595,-590.6009903104002,-3.2982135579427005,-1.1294757599999963,-13.499844444444449,-0.46574416000000163,-860.7547926923526,-131.5504,-0.31281599999999954,0.09839561178766108,-15.0304,-95.35040000000001,-38.590401794433866,-641.8945448784001,-6.89242578110413,-0.45287295999999855,4.036044444444446,-0.09672815999999887,-1394.9862611450753,-185.87520000000004,-2.479007999999999,-0.15092336771609197,-4.0352,-80.91520000000001,-5.472795916792449,-876.0740028191999,-1.5696768295885246,-2.601051479999997,-24.07503333333333,-1.2458908799999993,-802.2256759331406,64.40960000000001,0.6027839999999972,0.04956599374442748,-1.3103999999999987,22.009600000000002,6.155625763831161,306.6919638416003,1.265840739712031,0.6664810399999959,9.860488888888899,0.27309344000000574,387.08678350616873,-61.39520000000001,-0.01180800000000165,-0.07025705346378106,3.0048,34.36480000000001,-18.083265179664114,-300.3343353391999,-3.249733957713204,-0.10177448000000176,-4.009199999999991,0.05948512000000451,-665.3640283007385,182.80320000000006,1.916927999999996,0.18669126623869775,5.9232,67.8432,4.223741682793924,863.9602757472002,1.4413187213892784,2.1414436799999934,21.30497777777779,0.8045644800000052,815.9550382220151,0.7614856834587246,0.6377150858647945,0.4690052755425847,0.32706268564317537,0.31598589638382507,0.1840351932038406,0.20104038117571169,0.10569542729984116,0.13449851934584817,0.05710836038448772,0.08092533503582756,0.030618659524032418,0.05601638944469845,0.018013152767658268,0.036950133360320984,0.009616198368736764,8.028800716579902,5.670766324032256,3.5548753508172752,2.170435284596117,0.4507353003849652,-0.5292248427416666,3.275584668802498,0.9726516058368118,6.022115940600923,0.9948276786017575,13.642719416046432,10.931123213157361,16.014143262438402,11.681960972724315,2.0114829293078467,0.7415634778076998,3.5009257680742456,2.2203635932705974,7.008293691657815,1.3758199706966585,3.713848421032115,2.416376251523743,20.92004118489132,14.701155536353872,0.2150495998158447,0.4937261139132297,0.6267464448119371,0.7334764767285368,0.845559194137884,0.8660440676975306,2.291825712861445,731.9410191793835,0.0,1.0,5.0,0.0,8.0,0.0,6.0,0.0,0.0,4.384099721043716,2.751617997672834,1.9723874273026256,1.3471649287258254,0.6905865002596148,0.5705865002596138,159.45251743375164,1207.401730839838,59.70909627146491,24.148034616796764,47.75667408384524,,15.0,549.0,5.969305287951849,4.794537184071822,0.0,5.573104530069267,16.886067855050168,22.766374581924868,20.109554847802038,19.075777413358384,38.98961888120124,9.843390348640755,11.5,25.0,12.0,0.5,13.0,0.0,0.020833333333333332,-1.0,0.10466666666666641,0.052062499999999845,-0.05260416666666656,0.01983333333333326,0.11190575916230339,0.0,0.5380000000000001,0.795833333333333,0.43333333333333374,0.4859375000000003,0.7759999999999997,23.727659146835414,0.6580869493510697,0.7440869493510697,18.90489208095945,5.455595809419843,5.800530803602183,42.63255122779486,11.256126613022026,0.6020942408376966,0.31884057971014496,0.0,0.34782608695652173,0.2857142857142857,0.3731955751277696,-0.7166734303424164,-0.05469043426170029,-0.014333468606848325,-0.03583367151712083,0.6268044248722305,1.2036961509342414,0.04027674134892573,0.024073923018684832,0.04012320503114139,-4.018833217860715,0.9537914691943128,0.7973848171831445,1.503580519139352,0.7742275280898877,0.5298632900044823,1.1673353586185724,0.9596430850697595,1.1542766301009337,0.8040223453775156,0.8041777054971189,0.804357525087988,1.088999711690205,0.7602685624012637,0.7120587613612341,0.8193280508555912,1.5028512928116962,1.0832775296614519,0.8241799900934715,0.762041815665005,0.820362356428067,0.714271706878791,0.3929497071780024,0.7137915637901924,0.8009836939046829,1.1330501495748042,0.8830035792404053,0.8333024729922087,1.6472926129572079,1.2967660718883816,1.240769837116259,1.1386844534229976,1.2452795938666077,0.9140503731820021,0.8185896230249863,0.8432051840945677,1.2316849220167292,1.0868942057789328,0.747528018871417,0.7458264173485567,1.2695666455237407,1.1369079032981018,1.2649952788762593,1.0950491205146244,1.267649995477855,0.7868751036595814,0.5115339736489614,0.700468639012797,1.2368074734419339,1.1719335570392408,1.1915543771086081,0.947383873025925,0.9293242024112196,1.1252155264079151,0.9974154647731511,1.1688472592969443,1.0151033463040195,1.2036411711306334,1.071954442761881,1.1584713687179515,1.080673524868073,0.8410889007796972,0.5235935690144865,0.5130896512724384,0.999003262051468,0.7782339396480675,0.9238436290446274,0.847382865621964,0.9354389270498041,0.5677394642108357,0.46385299535544117,0.46128182345366525,0.9391603932539989,0.9929156793048972,0.5958328209542545,0.5387379848668501,0.7296787219101124,0.681448901837741,1.0945403667564964,1.000757526051878,1.1092459353423283,0.6512088274295252,0.5869980064527974,0.5174925341157383,1.1146283388715836,0.6873134983324556,0.4547079666976369,0.5098699347118479,0.6770508218893051,0.6304264820625197,0.8943133338320187,0.6942552285219251,0.8869062006462806,0.474249733945045,0.4373635629701521,0.44096894221222044,0.8327787807796961,6.0,0.11151923273135395,3.1111111111111125,2.1875,1.355555555555556,0.7638888888888888,0.36653061224489797,0.3211805555555556,0.1809019904257999,0.16562500000000002,3845.539895732808,4507.19860572248,2143.4332503594296,1878.3299819748179,18.294840430577395,0.4722835674703475,9.654487925723554,0.8949570988464715,1.0,0.2857142857142857,1.259756468731008,2.8922381921018903,3.6714687624720987,4.296691261048899,4.95326968951511,5.073269689515111,0.25,0.006969952045709622,0.09722222222222227,0.06433823529411764,0.04372759856630824,0.031828703703703706,0.01593611357586513,0.01690423976608187,0.010050110579211104,0.010351562500000001,0.5473287382532197,22.041666666666668,10.87109375,7.424397370343316,144.21642378845576,0.0,4.051551283900813,140.3920447681438,,106.87198475038839,106.51436992304441,107.64702593042273,106.87935544290232,121.17109205547139,106.78451245875344,106.88709174971693,113.62566255772876,-0.00022568269013765912,-0.02213477619281826,-0.5507685171054696,0.5070224719101123,0.4246974450918871,-0.01330645384415383,-9.056680824212197e-05,-0.010464770791683767,-0.017445075428744367,-0.11009102116832362,-0.030531590584972634,-0.0029090014986295288,0.2099175306507003,0.16812552719485913,0.08836910296801144,-0.0371598754568837,0.0587396650699616,0.23148798921660085,0.2109160187109365,0.23185425982668487,0.17300268651885534,0.29176043681058994,0.1622513289804031,0.2281967728694866,-0.1852014578141431,-0.11055352638904857,-0.059299062992382655,-0.28729380827157536,-0.2501692781597795,-0.1364521744513538,-0.18559524938363536,-0.1465884869733361,-0.1268977536599982,-0.11301474157091002,-0.08103264883331039,-0.17395621027073474,-0.14964036371313547,-0.02585167319867347,0.0472233792765884,-0.2128035520115984,-0.21541764867483124,-0.2332804248331068,-0.1529123412939467,-0.2322198586260146,-0.03857088276748121,0.02561347127957921,-0.012757680235303803,-0.21371577850027143,-0.19137233196111672,-0.18542946492365023,-0.06555999878924637,-0.05170999753957188,-0.16545884631617525,-0.029943969281104134,-0.18889513122996324,-0.04786726608506968,-0.20050871500009257,-0.13828673266765598,-0.1487304564672472,-0.11124085866295856,0.07326679334017662,0.04981514685114936,0.023788395430329852,-0.018552917723812956,0.04972455574673588,0.037210988394198896,0.07306026608458195,0.04264875197131072,0.05676373802619808,0.06257645386086186,0.03601886753432753,0.05930277278593464,-0.07732050166037979,-0.0010803878856020064,-0.03733145574687093,0.04710072231139647,0.08595600947685218,-0.12102623154895947,-0.07921136564616858,-0.12122124193269286,-0.009596784496603063,-0.02816915922521456,0.008686219316396215,-0.11285729505800178,0.23874721031119142,0.18188774115975262,0.10287343996280321,0.09628589263420723,0.17597987947606952,0.0293152955122343,0.23630371927106672,0.05575517913765081,0.2094053506886633,0.15523566830302055,0.12183654392705777,0.14352607708818838,6.239558888501845,14.792348302142397,7.104022792175136,10.704333080404751,24.639385207006722,31.423932773780425,35.04909453515041,36.15104559104434,36.27200559104433,46.5861750858502,41.324654086676475,0.0,5.261520999173724,0.0,5.261520999173724,10130.985170217702,9566.020667013709,586.3267723015961,28.0,32.0,37.0,42.0,44.0,44.0,36.0,32.0,30.0,326.1881946920007,24.0,4.727387818712341,5.5254529391317835,6.371611847231857,7.192182058713246,8.045267716607803,8.877800393882575,9.735956081214809,10.577120564191771,11.439311217068473,0.5866666666666666,0.9616,1.1205384723319982,0.5435617350761802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6564385389221558,0.9495686274509805,0.9906773488710853,0.6037631752493385,1.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,6.0,0.0,3.0,0.0,6.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9.843390348640755,5.749511833283905,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,35.953205064238674,68.51196356377197,6.076020106833881,7.109797541277533,234.64076276998819,-450.5969833510378,-34.38573784534771,-9.011939667020755,-22.529849167551898,394.0932802037398,756.8047474888002,25.323358426117196,15.136094949776007,25.226824916293346,0.4666666666666667,0.8266981333483604,0.2585271670740947,38.996318688414135,0.1708362853216427,58.4928327592331,0.17330186665163977,8.0,0.25,0.22320846357024055,0.5124578116185725,0.6505248608431757,0.7613041715757116,0.877639245749956,0.8989013041662232,5.167060000000005,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,100.52880000000005,14.637927532712576,0.0,0.0,0.0,34.61868599845312,7.109797541277533,69.84648262955753,0.0,5.749511833283905,3.8918202981106265,0.0,5.176149732573829,0.0,6.637258031284457,0.0,8.193400231952097,0.0,9.808572294739841,29.33333333333333,2.0565603769449923,0.0,0.0,0.0,0.0,0.0,5.657583953087547,0.0,48.08,0.0,10.557327846910816,0.0,0.0,0.0,10.935101739138606,0.0,0.8548306769468601,56.026923616599916,4.736862953800049,0.0,5.749511833283905,18.18563022407009,4.794537184071822,20.771211599071872,36.101280366169235,47.59267666276955,0.0,6.076020106833881,0.0,27.17808675380901,32.82192694610779,28.396880716805143,280.78408953628764,,213.68146950077679,212.95731127466027,215.25076831437588,213.69639449102996,243.15390480919717,213.50434468494873,213.71205979937912,227.550570974001,28.396880716805143,280.7840895362875,,212.9939695007767,212.17159698894602,214.7746493032106,213.01091414850856,245.58906690396034,212.79286212680927,213.02869909877708,228.44830854963152,4.799205777521301,217.68670407484302,,165.39867728878878,165.0055062807853,166.25080270204083,165.40678087192975,181.15177298635902,165.30250754748315,165.41528642633372,172.82816306467933,1.1832033632002144,11.699337064011985,,8.903394562532366,8.873221303110844,8.968782013098995,8.904016437126248,10.131412700383216,8.896014361872863,8.904669158307463,9.481273790583375,2.3996028887606506,140.3920447681438,,106.87198475038839,106.51436992304441,107.64702593042273,106.87935544290232,121.17109205547139,106.78451245875344,106.88709174971693,113.62566255772876,47.478431372549025,0.0,11.704831077169032,0.0,0.0,0.0,8.66861544768055,49.533867443554264,0.0,0.0,5.39848221545493,0.0,0.0,0.0,0.0,0.0,0.0,30.188158762466927,519.7732596989487,62.98782343655041,144.61190960509452,183.57343812360494,214.83456305244493,247.66348447575547,253.66348447575552,373.0,120.49209063675467,108.96078327477935,57.70720058866085,46.53,46.53,0.875,7.932283633669144,5.584962500721156,3.523153480571547,4.825046103786706,,4.826207622892573,4.827208206520998,4.823979813576777,4.826186810745169,4.778989904281005,4.826454037234663,4.826164958174366,4.804930448854025,0.14679806169048112,0.2010435876577794,,0.20109198428719055,0.20113367527170825,0.2009991588990324,0.20109111711438202,0.19912457934504188,0.20110225155144432,0.2010902065905986,0.2002054353689177,2.134825201069637,2.4492890272881533,,2.4495297253662205,2.449737026833326,2.4490680121881003,2.4495254130378035,2.439697944430637,2.4495807816138795,2.449520885111071,2.445111304927176,279.10000000000014,1437.3506124538917,126.9625633510102,,127.3839827178118,127.28850803456181,127.59077968655464,127.38595035848064,131.01369948854003,127.36063085225828,127.38801559005141,129.15901060441146,59.88960885224549,5.2901068062920915,,5.307665946575492,5.303687834773409,5.316282486939777,5.30774793160336,5.4589041453558345,5.306692952177428,5.307833982918809,5.381625441850478,8.146025582853959,5.719361003593582,,5.722674748238009,5.721924964172673,5.724296846143986,5.722690194649955,5.750770631335734,5.722491412737472,5.72270640691531,5.736513022982454,5.39848221545493,10.557327846910816,8.66861544768055,6.529439086832979,-0.01702445679857112,2.0565603769449923,10.935101739138606,10.013621936466038,1.6912091407029974,353.79469897354073,147.52663542281405,-283.30566309406356,-21.61948397614019,-5.666113261881271,-14.165283154703184,247.77986137127556,475.8289086303446,15.921657524925484,9.516578172606895,15.860963621011491,1626.0,34.0,1.9089504296633764,0.9114698770477949,0.0,0.0,0.38212862097282496,0.16971384104045775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.045360921162651446,0.018042195912175804,0.20023279339791275,0.07190895004055395,18.27565640300939,15.305162060755068,11.256126613022033,7.849504455436209,10.111548684282402,5.889126182522899,7.438494103501332,3.910730810094123,5.648937812525623,2.3985511361484844,3.5607147415764127,1.3472210190574263,2.464721135566732,0.7925787217769638,1.3302048009715555,0.34618314127452354,3.64902181955833,1.69943227375074,5.438097029541275,2.0637176653834306,7.077924311770921,2.4325505874320443,84.8312291581503,54.472020432236896,36.69968451514915,27.401811330602623,22.959392471925266,22.218190743865982,112.0,125.0,54.81261799999997,28.687381999999996,0.12,24.03,10.88888888888889,5.527777777777775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,50.0,0.0,0.0,50.0,6.0,5.0,8.0,42.0,11.0,24.0,39.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,2.0,1.0,0.0,24.0,3.0,0.0,0.0,3.0,0.0,1.0,6.0,0.0,0.0,0.0,0.0,1.0,3.4965075614664802,6.526677858930803,4.051784947803305,4.529907701487544,4.977595440018056,5.397879856090892,5.6447841338942455,5.782092913587448,5.996996094849651,6.270752109040232 +5734,N=S(=O)(O)Cc1noc2ccccc12,0,38.27272727272727,6.830609090909092,3.727272727272727,10.292929292929294,162.72090250643603,152.29005368181816,1.7558052381269098,6.8809272727272734,7.542652606310014,8.33064131818182,244.0628674338709,41.26086956521739,6.7519478260869565,4.260869565217392,7.666666666666666,146.96694815455874,160.9345462173913,2.0436454846086947,6.916965217391306,3.3206521739130435,8.279554608695651,291.3582683474633,30.513513513513512,6.806810810810812,3.972972972972973,8.774774774774775,149.73304351976947,115.4794284594594,1.7759529406715944,6.928710810810811,5.908491825158493,8.283332702702703,257.0440550213014,21.869565217391305,6.641430434782608,3.0217391304347827,4.673913043478261,161.4675716800032,79.77329684782607,1.3808352202727607,6.7062978260869555,3.9513553408480955,8.188651652173913,195.6708430716053,24.146341463414632,6.569948780487805,2.975609756097561,5.260162601626016,164.2417834986864,90.21254946341462,1.3189342172669025,6.6275,4.01193164709425,8.137178390243903,180.97515820662923,26.566666666666666,6.9383,2.6333333333333333,6.833333333333333,163.97037749335425,99.08357419999999,1.3477654130182333,6.979443333333333,5.6040123456790125,8.476561199999999,187.87094726505308,19.56,6.504000000000001,2.2,3.68,163.56053907720224,68.89114504,1.20750261733584,6.56452,4.605185185185185,8.15947176,158.8234321159293,12.666666666666666,6.456166666666667,1.5555555555555556,2.5,172.18917528167924,40.562290166666656,0.904890283522,6.467777777777779,4.684670781893004,8.127210444444446,119.32979703131092,4.333333333333333,5.83488888888889,1.2222222222222223,0.0,179.32504303571062,8.294608,0.6453942790439999,5.8226666666666675,2.888888888888889,7.592256,67.20018295736843,13.272727272727273,0.19295950413223142,0.024068706273154418,0.743801652892562,4.561983471074381,1.716752034311173,59.235091431818184,0.33750353209728917,0.17282727272727264,2.9154460216644567,0.12736420867768594,46.79418263961634,3.217391304347826,-0.011974128638160286,-0.010255476559355891,0.03485447358965149,0.005429791991056671,0.15231682839273644,13.832760945652156,-0.012153388915707868,-0.00396521739130438,-1.0583330576171115,0.012802350610851599,4.523200571218808,-3.675675675675676,0.05294000446727713,0.003984809933201672,-0.04601295510386418,1.091033181942273,-0.31995084297890275,-15.910724790540561,-0.10321275779592534,0.04281081081081073,1.2944983503169532,0.025179584934107668,-8.555574455078084,-1.7173913043478262,-0.07376464247215234,-0.007018497525338169,0.03485447358965146,-1.842396294965465,-0.010576545585400776,-8.111141402173914,0.013839041044135617,-0.06711521739130434,-0.9991766790162886,-0.04335738654329858,-3.9146542308108683,2.073170731707317,0.008447591211449314,0.0024551636448836155,-0.10743801652892562,-0.33631212345181305,0.029120957208918045,9.208418518292689,0.015125651152247267,0.009734146341463442,0.2373370788377051,0.005447534116105604,1.280790885009458,-0.43333333333333335,0.049181707988980645,0.004840773663007449,-0.2559228650137741,0.5147842056932966,-0.07389702563432124,-1.9477573500000023,-0.01881718566825596,0.040833333333333256,0.4457317280549603,0.03204569586776864,-7.036597367670167,-3.24,-0.04211841322314047,-0.002702871064465635,-0.13652892561983468,-0.3563269054178145,-0.48871712613021256,-14.207857489999997,-0.0640395117498566,-0.03790799999999998,-0.30173608276933195,-0.03763964504132229,-8.260437452330049,-2.888888888888889,-0.06710798898071621,-0.0023482638272873013,0.12488521579430673,-0.6354963779206201,-0.14210702067728226,-12.85091624999999,-0.017045694910622865,-0.06046111111111105,-1.1238068504599557,-0.048076241505968766,-2.909577614592376,2.6666666666666665,-0.028550413223140298,-0.0018349846303736548,0.36730945821854916,0.14508723599632706,0.4534259754216781,12.246993416666704,0.11689014247616478,-0.02209999999999975,-0.8492711557210713,-0.0176819915059689,16.872133476095698,,,0.4738095238095238,1.375,0.75,0.0,0.625,0.125,0.5445206750479201,0.025196575199559947,0.037482289485274226,0.8524552106785581,0.2742949105291727,0.19438091158363127,1.3969758857264782,0.46867582211280395,2.0056874189586105,1.2007433509870076,0.26650796755896733,0.3870241252104076,0.0,0.804944067971603,9.637525596181819,842.0,150.2734,82.0,226.44444444444446,3579.8598551415926,3350.3811809999997,38.627715238792014,151.3804,165.9383573388203,183.27410900000007,5369.38308354516,949.0,155.2948,98.0,176.33333333333331,3380.239807554851,3701.4945629999997,47.00384614599998,159.09020000000004,76.375,190.429756,6701.240171991656,1129.0,251.85200000000003,147.0,324.6666666666667,5540.12261023147,4272.738852999998,65.71025880484899,256.3623,218.61419753086426,306.48331,9510.630035788152,1006.0,305.50579999999997,139.0,215.0,7427.508297280147,3669.5716549999997,63.51842013254699,308.48969999999997,181.76234567901238,376.677976,9000.858781293844,990.0,269.3679,122.0,215.66666666666666,6733.913123446143,3698.7145279999995,54.076302907943,271.7275,164.48919753086423,333.624314,7419.981486471798,797.0,208.149,79.0,205.0,4919.111324800628,2972.5072259999997,40.432962390547,209.3833,168.12037037037038,254.29683599999998,5636.128417951592,489.0,162.60000000000002,55.0,92.0,4089.013476930056,1722.2786259999998,30.187565433396,164.113,115.12962962962963,203.986794,3970.585802898233,228.0,116.21100000000001,28.0,45.0,3099.405155070226,730.1212229999999,16.288025103396,116.42000000000002,84.32407407407408,146.28978800000002,2147.9363465635965,39.0,52.51400000000001,11.0,0.0,1613.9253873213956,74.651472,5.808548511395999,52.40400000000001,26.0,68.330304,604.8016466163158,292.0,4.245109090909091,0.5295115380093972,16.363636363636363,100.36363636363639,37.768544754845806,1303.1720115,7.425077706140362,3.8021999999999982,64.13981247661805,2.802012590909091,1029.4720180715594,74.0,-0.27540495867768655,-0.23587596086518547,0.8016528925619844,0.12488521579430345,3.503287053032938,318.1535017499996,-0.279527945061281,-0.09120000000000072,-24.341660325193565,0.2944540640495868,104.03361313803259,-136.0,1.9587801652892538,0.14743796752846186,-1.7024793388429749,40.368227731864096,-11.838181190219402,-588.6968172500008,-3.818872038449238,1.583999999999997,47.89643896172727,0.9316446425619836,-316.55625483788907,-79.0,-3.3931735537190075,-0.3228508861655558,1.603305785123967,-84.7502295684114,-0.4865210969284357,-373.1125045,0.6365958880302384,-3.0873,-45.962127234749275,-1.9944397809917345,-180.07409461729995,85.0,0.34635123966942183,0.10066170944022823,-4.404958677685951,-13.788797061524335,1.1939592455656398,377.54515925000027,0.6201516972421379,0.3991000000000011,9.73082023234591,0.22334889876032976,52.512426285387775,-13.0,1.4754512396694193,0.14522320989022347,-7.677685950413223,15.4435261707989,-2.2169107690296372,-58.432720500000066,-0.5645155700476788,1.2249999999999976,13.371951841648809,0.9613708760330592,-211.097921030105,-81.0,-1.0529603305785118,-0.06757177661164088,-3.413223140495867,-8.908172635445363,-12.217928153255315,-355.1964372499999,-1.600987793746415,-0.9476999999999995,-7.543402069233299,-0.9409911260330572,-206.51093630825122,-52.0,-1.2079438016528918,-0.04226874889117142,2.247933884297521,-11.438934802571161,-2.5579263721910808,-231.3164924999998,-0.30682250839121156,-1.088299999999999,-20.2285233082792,-0.8653723471074378,-52.37239706266277,24.0,-0.2569537190082627,-0.016514861673362892,3.3057851239669422,1.3057851239669436,4.080833778795103,110.22294075000033,1.052011282285483,-0.19889999999999775,-7.6434404014896415,-0.15913792355372008,151.8492012848613,0.7272713054196224,0.568012607233163,0.43743076730528363,0.3711552790390177,0.30957297990318855,0.2036260357279611,0.174247183198764,0.09796943457618337,0.11463506222135081,0.05312818923783295,0.07783025751939257,0.030868368458561224,0.05145340166393911,0.017806131535613792,0.035550164699345604,0.009870610049090579,16.012910650636258,5.681361177970581,3.5701727908574163,2.1792559823160147,0.4335134078107662,-0.4619403990323884,4.0380090566947775,0.9686045157270495,6.033343720491104,0.6352546008270368,14.56499913709924,10.32176916984443,32.06643984223843,11.693508401272883,2.9577418238143913,0.7154743238446576,3.5164665433934035,2.2291061921659407,7.006653438748615,0.297653587870458,3.7375364340462465,2.425214286257591,24.44238521993652,14.681726640428028,0.4056362299045877,0.7495397376209493,0.8056797828374316,0.8805331764594077,0.8992465248649016,0.8992465248649016,1.9383512853331473,558.7250089212612,0.0,0.0,1.0,0.0,6.0,0.0,1.0,0.0,0.0,2.4888585228256117,0.8181818181818192,0.5454545454545454,0.18181818181818254,0.09090909090909172,0.09090909090909172,-23.279081602441835,509.1311237208207,54.56215715244062,23.14232380549185,48.414079993154786,,7.0,160.0,10.00988590894798,4.208898492164469,5.752853606746789,16.6631723509555,0.0,0.0,24.26546827384644,0.0,5.156663257125445,13.855422974901735,6.633333333333333,19.25,10.5,0.0,8.75,0.0,0.026190476190476226,1.75,0.26757575757575724,0.08733766233766227,-0.18023809523809498,0.08005952380952364,0.21020253164556946,0.0,0.7075757575757576,0.9404761904761901,0.4400000000000004,0.6202380952380954,0.8604166666666665,7.623289450670882,0.35275205279383925,0.5247520527938392,11.934372949499814,3.840128747408418,2.721332762170838,19.557662400170695,6.561461509579256,0.5037974683544305,0.16080402010050251,0.1256281407035176,0.22613065326633167,0.125,0.5314285433005557,-0.7305718407520002,-0.09756318072168452,-0.033207810943272735,-0.08117464897244447,0.46857145669944444,0.644160190415578,0.04976300232303877,0.02928000865525354,0.04955078387812139,-2.215327934554087,0.8598868374032163,0.7683133326368795,1.2865442540409022,1.1717391304347824,0.7146476580550303,1.0909611322895358,0.836463390689775,1.2891750600175562,0.7038493732461526,1.0759687700305127,0.6421938371117353,0.8321079532643791,1.2400962606442056,0.5216540566933102,0.6806800544670849,1.2486486486486486,0.5736796579187882,1.2756390629588636,1.2135811236616179,1.4053485141762627,0.5257709974452914,0.42261938738775506,0.6241713228126418,1.0918902864266593,0.8606685527099464,1.3361762934624783,1.168163864492196,0.8230072463768116,1.352978628439403,0.9285020278254265,0.8820802390558268,0.7274397863417432,1.339632318131608,1.307431837125467,1.3008205907920198,0.9835844968903893,0.7665385900434346,0.9000346139827949,0.8565763855995503,1.0642276422764227,1.107436373276776,0.9192387193244672,0.7743241418126668,0.840610667055418,0.8966378258543513,0.5897279992663537,0.8790675623800918,0.9365599275297781,1.0332191780821918,0.8596916879746099,0.8601601163006107,1.2405555555555554,0.9218146135265698,1.0130979368681383,1.0296979282538865,1.0177981263425164,0.8668810162537479,0.892142447418215,0.8648827124698046,1.0487575660677815,1.4023972602739725,1.2778258188032425,1.171343489688376,1.1036666666666666,1.068514492753623,1.1632154398933514,1.3914432186222563,1.270258183150363,1.2870853716269532,1.2989089221570305,1.3565290007375699,1.1926397920740042,1.2026255707762556,1.5137832414629022,1.1430829192622391,0.5703703703703703,1.1882716049382713,0.8640412551183637,1.218057390090492,0.887216673301603,1.5373139235179634,1.8958559365050078,1.5226357644414144,1.0677648379550617,0.7351598173515981,1.1863966803865549,1.1950856627781519,0.14259259259259258,1.104317632850241,0.3648112400090471,0.7704231436628988,0.35150139840208733,1.2352760682411934,1.4369650160774279,1.1098372684296383,0.8132493027088211,4.0,0.0,1.555555555555556,1.1666666666666665,0.5722222222222222,0.5525,0.14367346938775508,0.08333333333333333,0.0,0.0,2965.372460164843,3184.698376298983,1744.4139537457334,1654.5930828624832,8.43757622615568,0.3950673710824395,5.104165168180665,0.6530766439055461,1.0,0.125,1.9705730958116854,3.641249800455478,3.913977073182752,4.277613436819115,4.368522527728206,4.368522527728206,0.26666666666666666,0.0,0.07070707070707075,0.06862745098039215,0.03814814814814815,0.04604166666666666,0.020524781341107873,0.027777777777777776,0.0,0.0,0.5384935622878301,10.515555555555556,3.8677685950413223,2.5344,80.51506046954562,1.0,3.5791942861997095,43.10671642030845,,25.654531900729197,31.31591210030907,32.31612122877203,25.65391221457163,33.57930331846723,31.169961684113012,30.715155159434328,34.14037008395824,0.24240619416319237,-0.062055137900616945,-0.42609172437301174,0.04685990338164256,0.0011902261429671322,0.08872383742585854,0.23352307916286724,-0.03600966437354059,-0.022943238811397714,-0.36300897006932026,0.10051764733410977,0.0966616001406429,-0.27693446871529065,0.2743581079634117,0.16555978904633611,-0.06186186186186184,0.23915763589676628,-0.1863698638966689,-0.2686030257732345,-0.30581237818326923,0.24770865231651057,0.4440138286552503,0.1976974944179832,-0.18283414673504444,-0.12939249553305537,-0.3822804313468947,-0.2916026082035997,0.04685990338164251,-0.4038586081355457,-0.006160788147628142,-0.13693135616259058,0.041004136928991776,-0.3883369582369933,-0.3427182913322638,-0.34042049170203603,-0.08365685668578578,0.15619779485466087,0.04377908851621189,0.10200646503472595,-0.14444444444444446,-0.07372059227838654,0.016962820854091776,0.1554554622219487,0.04481627513126923,0.056322976043394826,0.08140678204091978,0.04277131050129945,0.027370728854768583,-0.03264840182648402,0.2548809824639546,0.2011231350812867,-0.34407407407407403,0.11284219001610304,-0.04304467049253946,-0.032881815540741495,-0.05575404070980714,0.2362667227745337,0.15288629072284718,0.25160675986190933,-0.15037333640085693,-0.2441095890410959,-0.2182759196679814,-0.11229814489365986,-0.18355555555555553,-0.07810789049919482,-0.28467543149078295,-0.23985541587884227,-0.18974471571277213,-0.21934038188417232,-0.10349568488908872,-0.29552764808970006,-0.17652701652997127,-0.21765601217656014,-0.3477827603388139,-0.09756502076335075,0.16790123456790126,-0.1393026480586866,-0.08277667236567514,-0.21694768994814295,-0.0505052341369549,-0.34983547536806153,-0.38546652625671435,-0.3774705783131966,-0.06217819075931682,0.2009132420091324,-0.14796064776148704,-0.0762394376144906,0.4938271604938272,0.031803542673107914,0.26411850189163166,0.2067523341423969,0.3463375383060284,-0.12787333648939947,-0.2913005932574989,-0.13883014458728987,0.3605604911626688,4.508797713853318,7.186236566220097,2.381101577952299,24.08553305801274,38.193507837426985,41.46923511015425,42.83605329197243,42.927689655608795,42.927689655608795,28.079623865420547,16.810406913818106,3.7311115458255424,5.418337752945706,0.0,11.269216951602441,1451.3273395678373,1238.432450755071,377.89387979470484,12.0,22.0,25.0,34.0,38.0,36.0,36.0,30.0,18.0,212.025563116,15.0,4.31748811353631,5.1298987149230735,6.0330862217988015,6.872128101338986,7.7752758464868625,8.626764827845529,9.526974266377731,10.385759368884058,11.283021614237802,0.8333333333333338,1.0305454545454542,1.1268563973348038,0.8031387894430103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7131285792052258,1.015686274509804,1.0430212540554855,0.68248592787225,4.0,1.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.075844810663712,11.44678160159525,15.592906050590223,0.0,0.0,0.0,8.988476656402494,0.0,0.0,17.289397394048667,12.13273413692322,5.386224214464796,0.0,196.81421927598117,-270.56681142793076,-36.132461242225716,-12.298491428542308,-30.062979047547863,173.53513767353934,238.56431229288998,18.429695910214903,10.843832376949543,18.351100945606923,0.42857142857142855,0.565729836956852,0.2589443701879504,101.98793384908076,0.16874702800633185,125.27988250118885,0.4342701630431481,4.0,0.13333333333333333,0.441888846905079,0.8165277801856199,0.8776851867904134,0.9592283955968043,0.9796141977984021,0.9796141977984021,1.84757,,1.6607142857142856,1.2038881980944245,0.883001233280407,1.6581557966933946,-3.8591084983466093,1.1101591187270503,1.0973664910406058,-1.6780538154894666,51.20390000000001,13.28474330282818,4.779578164238024,5.156663257125445,0.0,5.752853606746789,0.0,29.9593962686949,0.0,0.0,3.4339872044851463,0.0,4.77912349311153,2.3978952727983707,6.293419278846481,4.727387818712341,7.884199933676039,6.823286122355687,9.517163087955348,18.333333333333343,7.029488851095994,3.6465046296296295,0.0,4.9249074074074075,0.0,1.2432175925925932,0.35009259259259307,0.0,22.671999999999993,0.0,10.838410336356766,0.0,0.0,0.0,0.0,0.0,0.0,24.790840741365685,0.0,0.0,0.0,13.918311622980276,15.762739515694768,4.779578164238024,5.693927994848461,28.788563210819788,0.0,10.969244356107037,0.0,17.669053367746226,15.688828742514968,17.195939964967174,86.2134328406169,,51.738028500441374,62.459840172318536,64.50609942421815,51.73790136888486,69.33533681293518,62.18132920840742,61.27354367729071,68.9999060888405,17.195939964967174,86.21343284061692,,50.55180401064544,61.42793600252334,63.7492412242635,50.55350437124672,71.01771513528107,61.22976424949849,60.33294382782734,69.95879398340591,4.695100691469786,64.09671150266409,,39.68292405117799,48.48576577630371,49.88387185774423,39.681265134711914,49.991854418400635,48.17992390310239,47.42294326025014,51.382756930689496,1.2282814260690837,6.15810234575835,,3.695573464317241,4.46141715516561,4.607578530301296,3.6955643834917757,4.952524058066799,4.441523514886244,4.376681691235051,4.9285647206314644,2.4142649276637598,43.10671642030845,,25.65453190066077,31.31591210030887,32.31612122877196,25.653912214503176,33.57930331846722,31.169961684112785,30.71515515943397,34.14037008395823,22.345098039215692,0.0,0.0,0.0,0.0,0.0,8.861691232048376,22.94646758922068,-0.30157407407407444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0146904131895,209.51768132412718,43.35260810785708,80.10749561002052,86.10749561002054,94.10749561002052,96.10749561002052,96.10749561002052,280.0,98.95039707542915,160.8316756253933,59.85646221194094,95.56,87.18,0.75,7.807829290254774,4.906890595608519,3.4068732892491593,3.6934486522566914,,3.70666166511944,3.693603756263896,3.6906056163969834,3.7066758193981455,3.6916486757289664,3.694522443695188,3.6960737400566837,3.6932447194567164,0.24334809208922567,0.263817760875478,,0.2647615475085314,0.2638288397331354,0.26361468688549883,0.26476255852843894,0.2636891911234976,0.263894460263942,0.264005267146906,0.2638031942469083,1.5622671833108532,1.643032852320002,,1.6466038874363487,1.643074845796872,1.6422628048916497,1.6466077060345805,1.6425453904807257,1.643323538743138,1.6437433415156637,1.6429776360575243,138.57999999999993,64.09120132955798,60.77782042389903,,59.19834372400648,60.35535961880768,60.563501375373605,59.19756041794966,60.703528054412544,60.31683671009356,60.224196284851175,60.72946857168708,4.577942952111284,4.3412728874213595,,4.22845312314332,4.31109711562912,4.325964383955258,4.22839717271069,4.335966289600896,4.308345479292397,4.301728306060798,4.337819183691934,4.496779326376684,4.443697163379656,,4.417365800484766,4.436721989149522,4.440164660713395,4.417352568505796,4.442474055805056,4.436083517137,4.43454643982515,4.442901295820371,31.509981103552533,0.0,4.3284722222222225,0.9113425925925935,-0.30157407407407444,7.029488851095994,0.0,0.0,-3.5610440287226006,156.73881357637487,72.89001954738154,-100.20424462421633,-13.381633786061766,-4.554738392009834,-11.133804958246259,64.2686266455418,88.35213964877639,6.825426029123297,4.016006347671653,6.796318434521261,293.0,17.0,2.030076268601109,0.8504944347422079,0.3535533905932738,0.07905694150420949,0.13608276348795434,0.03983211866537621,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02282177322938192,0.2874574785652648,0.07026752222171184,0.3816213905656805,0.0864490275974843,10.181798275874714,7.952176501264283,6.561461509579255,5.567329185585265,6.810605557870148,4.479772786015144,4.3561795799691,2.449235864404584,3.8975921155259274,1.8063584340863201,2.9575497857369175,1.1729980014253265,1.852322459901808,0.6410207352820965,1.2798059291764416,0.35534196176726085,1.9585367340724802,0.7984998264294664,3.4669687627369767,1.1561143041337685,4.7109655977005085,1.3716883036373153,46.772824220886925,29.365845329677736,24.840122733394203,22.744327478393263,22.520742785789874,22.520742785789874,74.0,84.0,26.200343999999987,15.549655999999997,0.4090909090909091,43.06,5.145833333333333,2.930555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,9.0,10.0,22.0,0.0,0.0,23.0,10.0,2.0,6.0,17.0,12.0,15.0,11.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,4.0,2.0,1.0,14.0,6.0,0.0,2.0,3.0,0.0,2.0,2.0,1.0,0.0,0.0,1.0,2.0,3.1354942159291497,5.81166714570174,3.855452653939752,4.292170305552021,4.959780500044607,5.418042958663758,5.687134242021906,6.05354032137555,6.275916310067263,5.877615413891458 +5090,CS(=O)(=O)c1ccc(C2=C(c3ccccc3)C(=O)OC2)cc1,0,31.61111111111111,6.3601,3.6666666666666665,9.067901234567902,155.37461478554405,125.51195991666671,1.7949637963301666,6.452591666666667,6.451991407559823,7.899943916666666,252.70278045543617,33.89473684210526,6.283684210526315,4.315789473684211,7.087719298245614,138.8086741137526,131.43374884210527,2.1409615878947372,6.4817605263157905,2.9759584145549063,7.783865052631576,301.0125514666507,26.6875,6.3877187499999994,3.921875,7.40625,145.5595967190091,101.01527482812497,1.8468962639280626,6.531456250000001,4.344473379629628,7.895551750000001,261.14780806686576,21.82278481012658,6.217417721518988,3.4430379746835444,5.3924050632911396,149.09929556154626,80.51274718987342,1.6474470677859998,6.3465,3.602672292545711,7.760634683544304,227.5790684863474,20.246913580246915,6.244765432098766,3.0987654320987654,5.045267489711934,150.6293988663056,73.77034981481481,1.5317466122851109,6.36137037037037,3.748552049992379,7.78872797530864,213.20819041652052,17.41176470588235,6.189529411764706,2.788235294117647,4.313725490196078,156.46268386011397,62.75566267058823,1.3407873265633647,6.275429411764707,3.4684458968772693,7.768230188235293,185.5463196480076,17.408450704225352,6.092394366197184,2.788732394366197,3.859154929577465,157.1785028089857,62.82900033802816,1.3505000130406482,6.18124647887324,3.2546731003303777,7.697290760563383,180.55594152747653,20.545454545454547,6.068109090909092,2.8545454545454545,3.442424242424242,153.32207108483004,74.58667052727273,1.4867707947780366,6.18713090909091,3.1368967452300787,7.696114727272728,192.75840854989696,20.73076923076923,6.282499999999999,2.4038461538461537,4.461538461538462,158.29599619841136,76.20073994230769,1.3040669963940383,6.358988461538461,3.969195156695157,7.900343961538462,173.3742307331749,10.858024691358025,0.1461589506172839,0.017235370077271387,0.7006172839506172,4.292866941015088,1.4523303877800542,49.262680576388895,0.31244772307213886,0.134350848765432,2.6360381711586993,0.0998707307098765,51.08187454598736,2.378817413905134,-0.002999301494476942,-0.008324584742177512,0.16634178037686803,0.49595697061584004,-0.03221782881137102,10.308071932383049,-0.011821358135542338,0.002413405620532798,-0.47163455308860347,0.008298814611760873,1.9068565344671555,-0.8910108024691357,0.028711882716049374,0.0003235730042449045,-0.027874228395061786,0.6293938614540467,0.05262265375599852,-3.7076000373263858,-0.00982094008571438,0.023603621720678977,0.5617119023700127,0.0178554502797068,0.8499803627712685,-1.4227223003594311,-0.015490877480856383,-0.0003886464892846749,-0.10919674949210818,-0.6109635186053374,-0.09659055431488682,-6.4506694455872,-0.023376083588948993,-0.015313612478512267,-0.26236641327407556,-0.011366516574855443,-4.635693076566172,-1.7997256515775033,-0.015030418381344307,0.0004959664108240314,-0.058641975308641986,-0.4581618655692729,-0.27358367335002487,-8.296275783179011,-0.05672435034565739,-0.014745567558299042,-0.20037756866472478,-0.01160380889917695,-9.471374441228969,-0.15541031227305757,-0.020533983297022506,0.0007201674509573065,3.6310820624559994e-05,-0.4146534333898168,0.00045584738682395725,-0.7562636852124207,0.007924702202468943,-0.01815173111837327,-0.21892081324159504,-0.014448766657588959,-0.3376843259682814,0.49800034776560587,-0.016413097722135266,0.0002323973330643571,-0.01830116501478003,-0.4245831642806083,0.09301937819735258,2.280847242859935,0.031230976205241383,-0.014047679751347573,-0.13735688304133425,-0.011747828127716927,2.857866844722835,-0.5297418630751963,-0.009610465768799094,-0.003193351778677176,-0.03496071829405163,-0.417333832148647,-0.19550401782178167,-2.562939526388887,-0.04204026591589039,-0.00784140432098763,-0.2791772955992636,-0.004952942831088676,-5.554119266128237,1.885565052231719,0.03159339981006647,-0.0008176029895495836,-0.09484805318138646,0.4538092223277408,-0.07666751065419143,8.2052384732906,-0.0014662932553889002,0.029414909781576456,-0.12777085108260808,0.02575270572174739,-1.6839986135841452,,,0.4848484848484849,1.3977272727272727,0.7954545454545454,0.0,0.6022727272727273,0.19318181818181818,0.664321465600123,0.020403113706564436,0.032130386433837164,1.0254563086755846,0.2768990098634969,0.198798492901443,1.6897777742757076,0.47569750276493994,2.0299367184112564,1.6063463573967922,0.0,0.3267165441498527,0.0,0.4235903610144645,8.723924442444455,1138.0,228.9636,132.0,326.44444444444446,5593.486132279586,4518.4305570000015,64.618696667886,232.29330000000002,232.27169067215362,284.39798099999996,9097.300096395702,1288.0,238.77999999999997,164.0,269.3333333333333,5274.729616322599,4994.482456000001,81.35654034000001,246.30690000000004,113.08641975308643,295.7868719999999,11438.476955732725,1708.0,408.81399999999996,251.0,474.0,9315.814190016583,6464.977588999998,118.201360891396,418.01320000000004,278.0462962962962,505.31531200000006,16713.45971627941,1724.0,491.17600000000004,272.0,426.0,11778.844349362154,6360.507028,130.14831835509398,501.3735,284.61111111111114,613.09014,17978.746410421445,1640.0,505.826,251.0,408.66666666666663,12200.981308170753,5975.398334999999,124.07147559509399,515.271,303.6327160493827,630.8869659999998,17269.863423738163,1480.0,526.11,237.0,366.66666666666663,13299.328128109688,5334.2313269999995,113.966922757886,533.4115,294.8179012345679,660.2995659999999,15771.437170080646,1236.0,432.56000000000006,198.0,274.0,11159.673699437986,4460.859023999999,95.88550092588602,438.86850000000004,231.0817901234568,546.5076440000001,12819.471848450834,1130.0,333.74600000000004,157.0,189.33333333333331,8432.713909665652,4102.266879,81.77239371279201,340.29220000000004,172.52932098765433,423.28631,10601.712470244333,1078.0,326.68999999999994,125.0,232.0,8231.39180231739,3962.4384769999997,67.81148381249,330.6674,206.39814814814815,410.817886,9015.459998125094,390.8888888888889,5.26172222222222,0.6204733227817699,25.222222222222218,154.5432098765432,52.283893960081954,1773.4565007500003,11.248118030596999,4.836630555555551,94.89737416171317,3.595346305555554,1838.947483655545,90.39506172839509,-0.11397345679012379,-0.31633422020274543,6.3209876543209855,18.84636488340192,-1.224277494832099,391.70673343055586,-0.44921160915060887,0.09170941358024631,-17.922113017366932,0.31535495524691315,72.46054830975191,-57.02469135802468,1.83756049382716,0.02070867227167389,-1.7839506172839543,40.28120713305899,3.3678498403839052,-237.2864023888887,-0.6285401654857203,1.5106317901234545,35.94956175168081,1.1427488179012353,54.39874321736119,-112.39506172839506,-1.2237793209876542,-0.030703072653489316,-8.626543209876546,-48.26611796982165,-7.6306537908760586,-509.60288620138874,-1.8467106035269705,-1.2097753858024691,-20.72694664865197,-0.89795480941358,-366.21975304872757,-145.77777777777777,-1.217463888888889,0.04017327927674654,-4.750000000000001,-37.11111111111111,-22.160277541352016,-671.9983384374999,-4.594672377998249,-1.1943909722222223,-16.230583061842708,-0.939908520833333,-767.1813297395464,-13.209876543209894,-1.7453885802469131,0.061214233331371055,0.003086419753087599,-35.24554183813443,0.03874702788003637,-64.28241324305576,0.6735996872098602,-1.542897145061728,-18.60826912553558,-1.2281451658950615,-28.70316770730392,35.35802469135802,-1.1653299382716038,0.016500210647569354,-1.299382716049382,-30.14540466392319,6.604375852012033,161.9401542430554,2.217399310572138,-0.9973852623456777,-9.752338695934732,-0.8340957970679018,202.90854597532126,-29.1358024691358,-0.5285756172839502,-0.17563434782724469,-1.9228395061728396,-22.953360768175585,-10.752720980197992,-140.96167395138878,-2.3122146253739717,-0.4312772376543197,-15.354751257959496,-0.2724118557098772,-305.476559637053,98.0493827160494,1.6428567901234565,-0.04251535545657835,-4.932098765432096,23.59807956104252,-3.986710554017954,426.6724006111112,-0.0762472492802228,1.5295753086419757,-6.644084256295621,1.3391406975308642,-87.56792790637554,0.715558009463172,0.5800453289609193,0.43605604420119487,0.35915187209617544,0.29061880434446785,0.20308542583562506,0.1756230741999597,0.10389702909618155,0.1130834818150075,0.05282087100557985,0.07279401275466342,0.028029093491416957,0.04584742249372681,0.016843603579387044,0.03025225615731171,0.009658868428074644,16.013220856615437,5.675717768192897,3.5803638357505276,2.1721974550685004,0.4612820186484101,-0.4862275594019768,4.042872818547753,0.9684254872722756,6.028569723750935,0.6158841982187959,13.647162027027733,10.30966906504963,32.06659335322546,11.686851782214042,2.9584560130226225,0.7414718204101476,3.5361124334943828,2.2236611936433834,7.014573638362657,0.29641631207511004,3.767431609815869,2.4205885831322824,24.443829663016448,14.699979290022709,0.2751807138599452,0.5505563776294529,0.6967031759962973,0.8385987124942146,0.8821426609939831,0.8821426609939831,1.610837320160467,847.2917680589487,0.0,1.0,1.0,0.0,10.0,0.0,4.0,0.0,0.0,3.6330510336128397,2.095088277848942,1.27886388936966,0.48638263900908196,0.24319131950454143,0.24319131950454143,24.33817590779057,875.6007330074061,62.99153966442849,24.32224258353906,49.64813681049297,,11.0,402.0,9.837253136417502,13.212334168400758,17.47167072798254,5.573104530069267,16.70000751346326,6.255769183511404,24.26546827384644,30.33183534230805,0.0,4.736862953800049,10.666666666666668,30.75,17.5,0.0,13.25,0.0,0.015151515151515098,4.25,0.19510155316606903,0.09437037037037022,-0.10073118279569881,0.0,0.14460498220640527,0.0,0.6370370370370371,0.8515151515151511,0.44193548387096804,0.5426666666666669,0.8515151515151511,14.615072243202706,0.4488685015444176,0.7068685015444176,22.560038790862862,6.091778216996932,4.373566843831746,37.175111034065566,10.465345060828678,0.5693950177935947,0.14062499999999997,0.078125,0.28124999999999994,0.11764705882352941,0.47684445009348053,-0.7944744188340512,-0.08471720547472211,-0.022068733856501432,-0.052964961255603425,0.5231555499065194,0.8716337191096798,0.03514417985788006,0.024212047753046657,0.04150636757665142,-4.555030309480296,0.8129245085425331,0.5701655284858259,1.414516859477664,0.9311963830280549,0.5784354739701147,1.0223171722530902,0.7952545304122686,1.1537283239330893,0.5305740763114625,0.6927364293583108,0.4952039624363786,0.869910504525211,1.0499906729675952,0.6423158344859626,0.9985176433556174,1.2250481828193835,0.7452799219124462,0.9483584577925327,1.029746673115574,1.0556807415529912,0.6504261711981542,0.5493530097104262,0.6837159854084371,0.8931374838480931,0.9945686199725101,0.9284080592138456,0.8211986495173904,1.2559248313165674,1.050348258002148,1.025755683575034,0.9963842773749501,1.0061575428506913,0.9362766079851554,1.0237932966061543,0.9413143690806592,1.0275493343815045,0.9744330743477986,1.0022395615198987,0.9492533631366953,0.9936368086147823,1.0163364754753157,1.133383480519138,0.9856835119991805,1.0585218937283962,1.0057717331146323,0.9900821677583582,1.0201836074955686,1.1143278910911782,0.766352874293549,1.168903792155331,1.1865899719614796,0.8162736460222857,1.1005446275011044,0.9325143404877837,0.7898231938234992,0.7768453936586869,1.1638072864356668,0.9393983956115449,1.1653266954945978,0.965400028213672,0.8165751187054102,1.07540165553297,1.0771742447916428,0.899050691816095,1.0907251304600252,0.8869545329754732,0.8313743407273804,0.7805258703251993,1.0780668913436804,0.8530518083868341,1.064204504161983,0.9404792937471599,1.225063310765414,0.9116614082457544,0.949288521150351,1.0218261914297158,0.9914523086755073,1.1364733459668663,1.2116311296357778,1.255680090430587,0.9182782675371355,0.990112020752643,0.886793510767139,1.127939625655623,0.8867855424848032,0.9511327170997116,1.1065143854205348,1.080777702473738,0.9719503914363317,1.0318397458874944,0.8926076199944127,0.9995812075063398,0.9426371205390349,1.248772702329646,0.9107940035454344,1.021709402677175,5.0,0.06203448627691052,3.111111111111112,1.8125,1.1933333333333334,0.785277777777778,0.35419501133786857,0.31682256235827666,0.34822215923406397,0.11000000000000001,4519.775164557533,4910.682086058116,2404.0826560429587,2263.09666786436,11.457824225943094,0.460010585549166,6.187103794647592,0.8518881541724184,1.0,0.11764705882352941,1.5368739678294725,3.07483672359337,3.891061112072652,4.68354236243323,4.926733681937771,4.926733681937771,0.20833333333333331,0.008862069468130073,0.0888888888888889,0.05330882352941176,0.03729166666666667,0.028045634920634922,0.01609977324263039,0.017601253464348703,0.021763884952128998,0.009166666666666667,0.4893619951328404,16.84375,6.857142857142857,3.753086419753086,128.51823942316784,1.0,4.030413506632781,99.91730099273535,,68.31109426583944,75.33792665247522,76.66968887433363,68.31018153543482,76.36487770871673,75.06571393472399,74.43559211068082,76.69234797308376,0.21908380958080254,-0.02052081984585802,-0.4829942556995223,0.23742174820310685,0.11553047821663123,-0.022183539697614725,0.20924707733674572,-0.03783467525161957,0.017963456447874403,-0.1789179528008471,0.08309556316223268,0.03732941579405967,-0.08206011938601476,0.19644286302541417,0.01877377757450108,-0.039785242290748986,0.14661387601853337,0.036233252570328965,-0.07526184109241106,-0.03143226645772961,0.17568643546040708,0.21308944176749384,0.17878561769590645,0.01663956873794948,-0.13102956944754282,-0.10598651273447582,-0.022549355629862013,-0.15585791557463902,-0.14232062791605402,-0.0665072872726497,-0.130944345092722,-0.07481598316385188,-0.11398225332575948,-0.09953058197133373,-0.11381229008802453,-0.09075025374005817,-0.16575074221464212,-0.10283611313481132,0.028776081314208148,-0.0837004405286344,-0.10672631410768495,-0.1883756448615033,-0.16840893930476314,-0.18154829162432626,-0.10975418237992574,-0.07601466885308669,-0.1161882847626889,-0.18541556130055872,-0.014312945189445892,-0.1404907685112668,0.0417842754596262,5.1826898160164936e-05,-0.09659126152458108,0.00031387306267187485,-0.015351655175152816,0.025363289975517806,-0.1351069329682095,-0.08304918177469563,-0.1446746865161374,-0.006610648668820388,0.045864727878355965,-0.1122962203328405,0.01348374488174315,-0.02612148662902524,-0.09890433831620499,0.06404835909240766,0.04629969819289781,0.09995584508718178,-0.10455966508908272,-0.052107319440278646,-0.11763034118418793,0.05594678876065892,-0.04878805106207038,-0.06575352195818665,-0.18527897946840785,-0.04989987985582701,-0.09721564583363596,-0.1346140103290254,-0.05202598592690626,-0.13455135951233677,-0.058365126778456185,-0.10590791083899523,-0.049593537524792196,-0.10872974642165965,0.17365636069445053,0.21615781775002993,-0.047437507049980454,-0.13537783802100978,0.1057123895436725,-0.05278930421016723,0.16656094181816175,-0.004692923478435329,0.21894100448098405,-0.04847078941442074,0.25786039151509516,-0.03296665654014117,12.425081553894092,19.727217735276465,6.455107950793857,16.913883207693004,32.02758915479703,40.34745898054604,43.82211416941796,44.06725101947853,44.06725101947853,44.65860780504764,35.33961986272943,0.0,7.187763971296759,0.0,9.31898794231822,4572.565428228665,3777.0912805418156,1066.3516787979274,80.0,35.0,45.0,58.0,69.0,74.0,84.0,88.0,94.0,314.0612799280004,24.0,4.77912349311153,5.631211781821365,6.529418838262226,7.403061091090091,8.304247465078474,9.186150133174966,10.088347551424729,10.974848541296925,11.87742273459009,0.7592592592592593,0.9971111111111113,1.1017949788193921,0.7270071878555767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7290935129740521,0.985729847494553,1.0170652261875865,0.6899734943573738,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,6.606881964512918,9.837253136417502,0.0,0.0,0.0,13.212334168400758,0.0,0.0,42.46456947923127,23.259637120317212,11.828873713580672,10.468588005587042,250.59919012679717,-417.52535003236505,-44.52198841280189,-11.597926389787922,-27.83502333549101,274.93736603458774,458.07538297504107,18.4695512516266,12.72431619375114,21.81311347500196,0.45454545454545453,0.712983674505217,0.2743797840689963,88.99355118705338,0.2034738559065991,37.96483738419441,0.28701632549478295,6.0,0.125,0.29727200441026,0.5947546091549777,0.7526339571632313,0.905920755354596,0.9529603776772979,0.9529603776772979,2.5577000000000005,,1.625,1.1182669789227166,0.6056362482434126,1.6224210188277133,-3.905039126322125,1.0465116279069768,1.0653353050353735,-1.4383990370606348,83.76680000000003,17.949197122200808,0.0,0.0,0.0,4.895483475517775,12.862651148024323,65.72420659954848,0.0,0.0,3.8918202981106265,0.0,5.241747015059643,2.3978952727983707,6.78332520060396,4.727387818712341,8.404919948933452,6.823286122355687,10.068111764371048,27.333333333333336,15.80604507418721,0.0,0.0,0.0,0.0,0.0,1.8404125855589157,0.0,35.89600000000001,0.0,35.03369497342351,0.0,0.0,-3.2338087283237447,0.0,0.0,0.9558761259133293,39.664619237498115,0.0,0.0,0.0,27.249753420305108,19.368653274289372,0.0,11.126902983393991,59.49278709167226,0.0,11.146209060138535,0.0,26.172258762800762,26.247366467065877,28.094878828290742,199.83460198547067,,137.23808294655532,150.5741926705029,153.28431990791785,137.2370729212474,154.91544168065585,150.03629044872918,148.7743355572675,154.03851369028592,28.094878828290742,199.83460198547067,,135.90853749200994,149.55758632602766,152.7337415004239,135.9096375422066,156.69045946534774,149.084916241541,147.80584891632628,154.82309498322812,4.844117573315522,149.19364355372517,,103.31112367816392,112.58860019142935,114.22947039919788,103.3093632952046,112.46918612945557,112.17964144438427,111.31538915524997,113.4921349921019,1.2770399467404883,9.083390999339576,,6.238094679388879,6.844281485022859,6.967469086723539,6.23804876914761,7.041610985484357,6.819831384033145,6.762469798057614,7.001750622285724,2.4607372687119,99.91730099273535,,68.31109426583944,75.33792665247522,76.66968887433363,68.31018153543482,76.36487770871673,75.06571393472399,74.43559211068082,76.69234797308376,35.486274509803906,0.0,1.1655540070966657,0.0,0.0,0.0,0.0,36.614348142753116,0.19571688397581233,0.0,5.1531757448349715,0.0,0.0,0.0,0.0,0.0,0.0,24.839045796865456,374.69898489876164,55.327462841861006,110.69412204936133,140.07820003461546,168.60752504759628,177.36241254975974,177.36241254975974,673.0,120.77383162985038,150.83757126262336,70.33849344094513,68.82,60.44,0.8333333333333334,8.585762639939004,5.584962500721156,4.119880953587927,4.618119039768332,,4.638925788185049,4.621880560596277,4.61918496127773,4.638929123203279,4.61960140212144,4.62288584328166,4.624696677489258,4.621617519015162,0.1872673160721785,0.20991450180765145,,0.2108602630993204,0.2100854800271035,0.20996295278535138,0.21086041469105812,0.20998188191461092,0.2101311746946209,0.2102134853404208,0.21007352359159828,2.204281628548032,2.318444848306988,,2.322940188632572,2.3192590303845693,2.318675634587056,2.32294090755268,2.3187657851387873,2.3194765118536353,2.3198681459324177,2.319202116523838,223.23999999999978,145.34316590061303,121.8491517665396,,119.40307153595163,121.19196808545549,121.52102750048914,119.40281108366369,121.67160521958057,121.12628457870562,120.97116659467918,121.6055664935101,6.606507540936956,5.538597807569982,,5.427412342543255,5.508725822066158,5.523683068204051,5.427400503802895,5.530527509980935,5.505740208122983,5.498689390667235,5.5275257497050045,5.767554968036127,5.591241179119008,,5.570962285748609,5.585833161881552,5.588544674018355,5.570960104459899,5.589783015300734,5.5852910359159145,5.58400958495886,5.589240105933385,28.17819168491675,12.261783614680441,0.0,2.8965271085285975,-0.35334297839506124,15.80604507418721,1.1655540070966657,0.19571688397581233,-3.2338087283237447,276.2970916084326,131.69903535606912,-219.4248345660859,-23.39793246392099,-6.095134293502389,-14.628322304405732,144.48963650589937,240.7353592310106,9.706424358626041,6.687093311972516,11.46358853481003,1061.0,34.0,2.3265924394097595,1.3695320440614807,0.28867513459481287,0.10206207261596575,0.6805379804862421,0.2834972270001743,0.14433756729740643,0.034020690871988585,0.0,0.0,0.0,0.0,0.09622504486493763,0.03608439182435161,0.39273156192534786,0.11066857583182833,0.44902572052778195,0.12936624313584139,15.742276208189784,12.760997237140225,10.465345060828676,8.61964493030821,10.171658152056375,7.107989904246877,7.903038338998186,4.67536630932817,6.558841945270435,3.0636105183236313,5.022786880071776,1.93400745090777,3.392709264535784,1.2464266648746414,2.5411895172141836,0.8113449479582702,4.113985494148832,2.174378381595839,6.192167994198763,2.4136841913218983,8.631241296908076,2.6965496916166702,73.12562004277713,51.46557910662204,33.71553993886888,26.41988403534991,25.602256604574002,25.602256604574002,118.0,139.0,43.83310199999999,23.304897999999998,0.4722222222222222,114.05,7.479166666666666,4.6944444444444455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,36.0,0.0,0.0,38.0,12.0,4.0,10.0,28.0,16.0,24.0,22.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,4.0,0.0,1.0,22.0,5.0,0.0,0.0,4.0,0.0,3.0,3.0,1.0,0.0,0.0,0.0,2.0,3.5553480614894135,7.216066842666225,4.204692619390966,4.718498871295094,5.260096153727839,5.772997543677674,6.0424843666046835,6.503633018849914,6.773080375655535,7.162591277028836 +60149,O=C1NCCN1CCN1CCC(c2cn(-c3ccc(F)cc3)c3ccc(Cl)cc23)CC1,0,26.666666666666668,6.1510263157894745,3.43859649122807,7.045700671431666,164.0885688331557,107.84474717806614,1.562094535545158,6.254842105263158,4.040053933798068,7.6822163684210505,225.32009528306014,25.885245901639344,6.3279344262295085,4.19672131147541,6.739526411657558,147.28158322939024,99.06730170221643,1.856657541803279,6.4875655737704925,2.7995176415030696,7.731289868852456,269.1623433747394,21.855855855855857,6.274881981981982,3.7567567567567566,5.186186186186187,156.06073680252155,81.94037887991352,1.6144287886377662,6.3962774774774775,2.7336781225670115,7.733770990990988,227.2632921835574,16.784313725490197,6.031411111111112,3.1241830065359477,3.3623819898329703,160.06740946362982,60.409848258311115,1.3965519102563726,6.141781699346405,2.4487143279808494,7.585594718954247,186.7566958890007,14.820987654320987,5.9110987654321,2.8580246913580245,2.8161865569272977,159.52859673459605,52.197975670903695,1.3287689235399383,6.015543209876542,2.3237184372300965,7.4921733827160475,172.56981717473926,14.806060606060607,5.808533333333333,2.812121212121212,2.7973063973063974,162.31246771395976,53.35453343407513,1.2825694290609333,5.906041212121211,2.1034293552812064,7.405574048484848,165.307726379606,16.03267973856209,5.867483006535947,2.9084967320261437,2.785766158315178,158.79616471663954,57.63494901745362,1.381795869708954,5.990180392156865,2.210414481293204,7.4539707843137215,179.80117264899243,15.426751592356688,5.910528662420382,2.5859872611464967,2.444444444444444,159.4914394506005,54.31005141994393,1.3146179006109744,6.038525477707007,2.395415585436817,7.530631999999998,167.1771208683846,13.046666666666667,5.811514000000001,2.32,2.0903703703703704,165.73152598742465,44.81605475954133,1.1342008419223735,5.921659333333333,2.214691358024692,7.489820360000002,139.3154472693973,10.100338565712526,0.12615463219452133,0.01318753092081194,0.6020313942751616,3.730887756536674,1.8830524777375222,48.00029892050278,0.24742639021985038,0.12357106802092946,1.443676970658999,0.07613622037550011,51.392428446382425,0.41533586626906593,0.0007288305607274719,-0.007565377450089658,0.15839426002452212,1.0173519988931883,-0.36530651337223385,1.9575042271340934,-0.011788353706019569,0.0022926363218948595,0.002463477532849021,-0.0018216066280166928,-0.020749031256954358,0.030529144102551024,0.002179902340013217,0.0020021711800056715,-0.037308776920965236,0.06106989312078067,0.06836644413962399,0.17207663018603733,0.00976862723538142,0.0011783234758304857,0.11102720527589466,0.0020822577341884823,0.6334598059688286,-0.7004990977616039,-0.012298296911870307,-0.00020942337545523437,-0.060579725888508656,-0.3687832295045776,0.12492712994094117,-3.29473731491143,0.002328258733320196,-0.012487545489109757,-0.008819258340490969,-0.007017481813408649,-0.6686814547738742,-0.7218460380971924,-0.01334961811611552,-0.00189339665795826,0.018176532950309496,-0.26754375409802145,-0.07962526510354943,-3.434949212008707,-0.006886572647094732,-0.013327598235354487,-0.12976288463726968,-0.006951199691073033,-3.5736256930114028,1.37642911105515,0.014766239682139888,0.0014428711260554602,-0.01638546126080752,0.13887419041825516,0.25499721369840866,6.569675931153055,0.035126138609070795,0.015425742186406919,0.054263556553783246,0.009731269045020844,6.596126650069902,-0.12201039233791384,8.490455585122763e-05,-0.00012279193207114417,-0.10013940941104049,-0.3239673246573308,0.01346377135541775,-0.5323966183729212,-0.003908072612592085,-0.0003075431957948308,0.038858082132773274,-0.0004033165800638502,-0.9873342998271218,-1.2942149764846802,-0.00830783366954656,-0.00027245834234175797,-0.03772253294987384,-0.29673344727527656,-0.33542251377693544,-6.139372118146713,-0.043107912753597315,-0.009975124340071344,-0.08096912573873562,-0.006053170314040771,-9.368566998989435,-0.5334379809172053,-0.0014730532471530333,0.00016994567382607893,0.05902123730378576,0.2466387758436592,-0.20966348957396774,-2.4348225368883636,-0.017971896403922678,-0.001911313634964675,-0.03485054550451059,-0.0032463489135118495,-1.6751852394562372,,,0.4817204301075269,1.2096774193548387,0.532258064516129,0.03225806451612903,0.6774193548387096,-0.14516129032258066,0.9334823700910818,0.01076430730498971,0.02463527504692519,0.9006798471181882,0.2308889248720153,0.25557946338341747,1.83416221720927,0.48646838825543276,2.079445194535998,1.627510217472304,0.28085308667086606,0.05684092354793154,0.11424096684489715,0.4519349770636948,7.72241960266668,1520.0,350.60850000000005,196.0,401.60493827160496,9353.048423489876,6147.15058914977,89.039388526074,356.526,230.28307422648984,437.88633299999987,12843.245431134428,1579.0,386.004,256.0,411.1111111111111,8984.176576992804,6043.105403835202,113.25611005000002,395.74150000000003,170.77057613168725,471.6086819999998,16418.902945859103,2426.0,696.5119,417.0,575.6666666666667,17322.741785079892,9095.382055670401,179.20159553879205,709.9868,303.4382716049383,858.4485799999997,25226.22543237487,2568.0,922.8059000000001,478.0,514.4444444444445,24490.31364793536,9242.7067835216,213.672442269225,939.6925999999999,374.65329218106996,1160.5959919999998,28573.774471017106,2401.0,957.5980000000002,463.0,456.22222222222223,25843.63267100456,8456.072058686399,215.26056561347,974.5179999999998,376.44238683127566,1213.7320879999997,27956.31038230776,2443.0,958.408,464.0,461.55555555555554,26781.55717280336,8803.498016622396,211.623955795054,974.4967999999999,347.0658436213991,1221.9197179999999,27275.77485263499,2453.0,897.7248999999999,445.0,426.22222222222223,24295.813201645848,8818.147199670404,211.41476806546999,916.4976000000003,338.1934156378602,1140.4575299999995,27509.579415295844,2422.0,927.953,406.0,383.77777777777777,25040.15599374428,8526.678072931198,206.39501039592298,948.0485000000001,376.0802469135803,1182.3092239999996,26246.807976336382,1957.0,871.7271000000001,348.0,313.55555555555554,24859.728898113695,6722.4082139311995,170.13012628835602,888.2489,332.20370370370375,1123.4730540000003,20897.317090409597,575.719298245614,7.190814035087715,0.7516892624862805,34.31578947368421,212.6606021225904,107.33399123103877,2736.0170384686585,14.103304242531472,7.043550877192979,82.28958732756294,4.3397645614035065,2929.368421443798,25.335487842413023,0.04445866420437579,-0.46148802445546916,9.662049861495849,62.05847193248448,-22.283697315706267,119.4077578551797,-0.7190895760671937,0.13985081563558643,0.15027212950379026,-0.11111800430901826,-1.265690906674216,3.388734995383164,0.24196915974146707,0.22224100098062952,-4.141274238227141,6.778758136406655,7.588675299498263,19.100505950650145,1.0843176231273375,0.13079390581718392,12.324019785624307,0.2311306084949215,70.31403846253997,-107.1763619575254,-1.881639427516157,-0.03204177644465086,-9.268698060941825,-56.423834114200375,19.113850880963998,-504.09480918144874,0.35622358619799,-1.910594459833793,-1.3493465260951183,-1.0736747174515233,-102.30826258040275,-116.93905817174517,-2.1626381348107144,-0.30673025858923814,2.9445983379501386,-43.342088163879474,-12.899292946775008,-556.4617723454105,-1.1156247688293466,-2.159070914127427,-21.02158731123769,-1.1260943499538314,-578.9273622678472,227.11080332409975,2.4364295475530815,0.23807373579915092,-2.7036011080332405,22.914241419012104,42.07454026023743,1083.9965286402542,5.795812870496682,2.5452474607571416,8.953486831374235,1.6056593924284392,1088.3608972615339,-18.667590027700818,0.012990397045237828,-0.018787165606885058,-15.321329639889196,-49.56700067257161,2.059957017378916,-81.45668261105695,-0.597935109726589,-0.04705410895660911,5.94528656631431,-0.061707436749769085,-151.06214787354963,-203.1917513080948,-1.3043298861188097,-0.042775959747656,-5.922437673130194,-46.587151222218424,-52.66133466297887,-963.8814225490339,-6.767942302314778,-1.566094521391201,-12.712152740981491,-0.950347739304401,-1470.8650188413412,-80.01569713758079,-0.220957987072955,0.025491851073911838,8.853185595567863,36.99581637654888,-31.449523436095163,-365.22338053325456,-2.695784460588402,-0.28669704524470124,-5.227581825676588,-0.4869523370267774,-251.27778591843557,0.6894086529437804,0.5843468916516019,0.4308720010262404,0.32220035776573724,0.2771143984595017,0.1772731799621322,0.17660650006346917,0.09994013277008819,0.10923143156560629,0.05488634070014491,0.06928266848059132,0.030779512962310726,0.04403901425790668,0.01727150511960057,0.02786281593624047,0.00978538609080625,17.001103712114062,5.6754164950401185,4.107720642974373,2.173057652655907,0.4203848046957658,-0.4431165702735724,3.28281841280016,0.9779547098855536,7.004059357245385,0.7740005043803942,17.42477313038646,10.93592466027781,35.45051769404094,11.686943260521346,2.207966879442488,0.5458587344574011,3.9886734750026185,2.2233852041156563,8.001920002339226,1.2221617942015475,4.009952535340071,2.4193773105367944,22.455868556450106,13.304119810943025,0.26487057545411247,0.573907807495899,0.7289315870959218,0.8572280954501426,0.8744602697075335,0.8744602697075335,1.1628267430705896,1088.9024064413322,0.0,1.0,6.0,0.0,11.0,2.0,2.0,1.0,0.0,4.214921626122388,2.3271601361401046,1.3801935870711768,0.5964912280701746,0.49122807017543835,0.49122807017543835,163.8278855479653,1506.1520785494854,58.997704596324105,26.423720676306758,53.97030234625502,,16.0,849.0,0.0,9.184952231746642,11.848335353383966,5.917906046161393,68.33690198736862,23.082409843085014,0.0,35.23174507315853,20.98064155426124,11.600939890232516,14.933333333333334,37.5,16.5,1.0,21.0,0.0,0.018279569892473112,-4.5,0.1447609219126249,0.05730994152046831,-0.0874509803921566,0.01670026881720421,0.1366804123711337,0.0,0.5906432748538009,0.8344086021505371,0.44588235294117595,0.5333333333333325,0.8177083333333329,28.937953472823537,0.333693526454681,0.7636935264546809,27.921075260663834,7.157556671032474,7.922963364885941,56.85902873348737,15.080520035918415,0.5773195876288663,0.08928571428571429,0.0,0.34821428571428564,0.375,0.3833290809709648,-0.8223285752116226,-0.04608268505521901,-0.01442681710897583,-0.04111642876058112,0.6166709190290351,1.3229002008798778,0.0379483868570334,0.023208775454032944,0.03575405948323994,-5.953926556024731,0.6426173557880602,0.6542764567282346,1.6922911853836515,0.7891984310570249,0.5447544252764769,1.2910572430710008,0.6465049733407876,1.014626914257003,0.6268084740247725,0.4878803907435783,0.6442939683905963,0.9546491142377102,0.7628216954155521,0.7970549434190668,1.1351332886108605,1.242303653346598,0.9428610484775659,1.0138924923496804,0.7640801961332255,0.8843914005158969,0.7831599605375992,0.47359275382441884,0.7264997428381669,0.921259124419093,0.9517165227865892,0.9581000037868901,1.0487197413648595,1.1999278238902924,1.0641050941761758,0.9115373487160996,0.9526164071529227,0.9541307288275934,0.9614223804228589,0.7632245320417423,0.9240381521634659,0.9887668242857384,0.9024459613196816,0.8948395355463439,0.8947046665167263,0.9166856017571764,0.9788497633615137,0.9361441569262162,0.9054283447899097,0.9944209799616299,0.9032323431584769,0.915283146279851,0.8587343986941703,1.0641160936214127,0.702699348433137,0.5111170808831859,0.6844643526896742,1.0533184606804238,0.8567842987950255,0.6814390777194913,0.704365477178222,0.8063962681949025,0.5390776147234709,0.38327172405441895,0.4471602499636554,0.8755337192902485,0.9339155457404805,0.6288146052484765,0.8290862713704,1.189261798789045,0.9505540878107471,0.8705628692105389,0.9328159255588598,1.0073635326266883,0.6792043588422092,0.42761460664753925,0.6248643006650612,1.030333893174437,1.2161800830416731,0.8861351565937664,0.7445952320062125,0.9094994333945526,0.9403444068033052,1.0778474332670152,1.21151599982162,1.206340228182237,0.9479063710906488,0.9359454592449985,0.9651891589371657,1.196941768940261,1.265477815699659,0.8979077985460981,0.7330788981152224,0.7615541922290388,0.8464609198516276,0.9538848833161983,1.2563512898521336,1.097862910381141,0.9641667181425638,0.8923710889302745,0.9977672026673937,1.0519621041972793,6.0,0.11019691868176718,4.000000000000002,2.020833333333333,1.717777777777778,1.2297222222222222,0.6848979591836736,0.4965986394557822,0.34845049130763406,0.23937500000000003,6252.08863417123,7047.686656810559,3064.2669473606684,2802.135120051531,18.06674476169503,0.4905138258850344,9.204756667347597,0.9627617996447336,1.0,0.375,1.6179683880423534,3.5057298780246366,4.4526964270935645,5.236398786094567,5.341661943989303,5.341661943989303,0.17142857142857143,0.004407876747270687,0.08000000000000003,0.04124149659863945,0.03904040404040404,0.027327160493827163,0.015219954648526077,0.01273329844758416,0.012015534183021865,0.009575,0.4129892965878449,22.775510204081634,10.092,5.086505190311419,185.9269058556799,1.0,4.386532033267622,196.3759161555967,,159.6577134131508,157.56807017874934,154.99356271232978,159.5754773316503,214.21315420921988,159.2188031282127,160.7629704907332,196.00456021415803,0.04112098456570561,0.0057772794232689596,-0.5736765658043187,0.26309966810821694,0.2726836252607022,-0.19399699036064452,0.040781084100665214,-0.04764388186541073,0.018553180437888193,0.0017063910991975656,-0.023925624611159026,-0.0004037371240123779,0.003022586213712466,0.017279606004890608,0.15182305103421137,-0.061971480683137035,0.016368729671318475,0.03630618102675817,0.0035849074704936215,0.03948094310676205,0.009535593522837489,0.07690585050006982,0.027349108268297125,0.012325936429132075,-0.06935402147207007,-0.09748589249507082,-0.015880408297259972,-0.10062552628413324,-0.09884597274695647,0.06634288285530973,-0.06863993327141803,0.009409904623558648,-0.10105557626963878,-0.006108886211896293,-0.09217008381554498,-0.013011283470900928,-0.07146750907416437,-0.10581948426222966,-0.14357476538464,0.030192001817768686,-0.07171048060324876,-0.04228520768535286,-0.07156099626999422,-0.02783281379555219,-0.10785371081438874,-0.08988360088478552,-0.09129951101840958,-0.06953603480208678,0.1362755418642791,0.11704873158657712,0.10941177197760266,-0.027216954824316783,0.03722282724130247,0.13541694494079448,0.13686739622254504,0.14196601493421745,0.1248329599594804,0.03758704866575063,0.12781392347855858,0.12834821878385497,-0.012079831932773101,0.0006730197248747152,-0.009311214723095719,-0.16633585949717308,-0.08683384379219833,0.007149971397289152,-0.011091527143501059,-0.01579488998372232,-0.002488796129388002,0.026916050420223596,-0.005297302362459189,-0.01921166852150614,-0.12813580139562183,-0.0658543687617945,-0.02066029979211477,-0.06265874721581804,-0.07953427351315702,-0.1781270133161365,-0.12790278927876322,-0.17422520174704823,-0.08072378510463177,-0.05608534830459714,-0.07950447611119689,-0.18229469363884282,-0.05281387128230132,-0.011676568838801667,0.012886845524500623,0.09803680981595088,0.0661072623832056,-0.11134235081216501,-0.05072515362708204,-0.07263532555259677,-0.015467323100589793,-0.024140127059450334,-0.04263869282584578,-0.03259595411421263,23.612086307073383,29.413715476174886,6.972961167319754,17.808563110614344,35.21775791472753,42.18751664924879,43.749628977998995,43.85573424115689,43.85573424115689,64.46280103061595,50.45281674164142,8.706445686796847,1.7620686299858779,3.5414699721918117,14.009984288974538,12450.538665553862,10957.012923946613,2085.5318225541396,244.0,50.0,68.0,91.0,118.0,138.0,164.0,195.0,224.0,440.17791735200075,35.0,5.14166355650266,6.008813185442595,6.898714534329988,7.786136437783072,8.684570300824369,9.582248696555505,10.486736158228235,11.390995090983237,12.29995908502436,0.6783625730994152,0.9818245614035086,1.1310527203865282,0.6440695491121442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6865807122596912,0.9710354317165464,1.004338048325475,0.640839041426077,8.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,8.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,19.68370771349864,5.817220841045895,0.0,0.0,0.0,0.0,9.184952231746642,0.0,0.0,11.600939890232516,79.87708307476683,48.47211299815306,5.516700717616262,269.1330167241132,-577.3518920728827,-32.35437294828595,-10.12898056268215,-28.867594603644132,432.9609022720785,928.8001864766028,26.643331648038156,16.29474011362461,25.102707742610885,0.5,0.8496695307584606,0.15672275268135094,49.412812089905536,0.1477996283296722,48.909192328970256,0.15033046924153937,8.0,0.14285714285714285,0.2773870901239758,0.6010279414683342,0.7633774023306664,0.89773658913135,0.9157830734022882,0.9157830734022882,4.627600000000004,,1.8018207282913168,1.5352369717768872,1.5594966338208733,1.8482400332227713,-4.919281250801538,1.4557922294334262,1.3328309453291491,-2.139664026594839,121.62970000000003,9.184952231746642,0.0,19.68370771349864,0.0,18.75954929201341,39.26853843547545,65.06471869732856,0.0,5.687386274683562,4.2626798770413155,0.0,5.602118820879701,3.044522437723423,7.1284959456800365,5.41610040220442,8.738575192110787,7.5256399750415355,10.39546669175574,38.666666666666664,14.805138239322758,0.0,0.0,0.0,0.0,2.2615706999563425,2.746193457777049,2.1376933795020916,55.96399999999999,0.0,11.736355266343807,0.0,0.0,0.0,0.0,0.0,0.055895807263970365,64.4700050620321,5.316788604006331,9.184952231746642,0.0,59.66657205730583,0.0,5.817220841045895,24.32300078371041,48.661413050844345,5.022633313741326,16.59031120676462,0.0,36.71196429939222,39.135100598802396,41.15685855743143,392.7518323111934,,319.19918032770215,315.0370928109324,309.88651273860654,319.0317133708346,430.0131733380532,318.3436841771072,321.4399518882193,392.6993346304435,41.15685855743143,392.75183231119337,,317.54354852607213,313.6528973552864,308.50604212904545,317.33250062357115,433.34558966924146,317.0203902735891,320.2219257105886,394.1487844549109,4.88687520823277,294.3203285287863,,246.47612423041875,242.7691786218556,238.78059594505794,246.41073140209585,326.58397672254375,245.3288400022942,247.64449194909497,300.47866603458596,1.3276405986268203,12.669413945522368,,10.296747752506521,10.162486864868788,9.996339120600211,10.291345592607568,13.871392688324297,10.26915110248733,10.369030706071591,12.66772047194979,2.5235897575533204,196.3759161555967,,159.6577134131508,157.56807017874934,154.99356271232978,159.5754773316503,214.21315420921988,159.2188031282127,160.7629704907332,196.00456021415803,55.34901960784315,0.0,0.0,6.3396747302654575,13.42846866035521,0.0,0.0,57.24726875455207,7.44060664718131,2.8608647364676845,0.0,0.0,0.45277806647350294,4.345871420201927,0.0,0.0,0.0,36.52782536128639,596.5478107018629,92.22419811841415,199.8266030474043,253.8036963443332,298.4747308073903,304.47473080739024,304.47473080739024,1358.0,144.27983704567401,105.54610829432883,83.11359934243696,40.510000000000005,40.510000000000005,1.0,9.264143989427078,6.129283016944966,4.239226757447446,5.469948991022292,,5.474824211920946,5.475507445310553,5.476179884773603,5.475034361385864,5.440499104321147,5.4747927992563215,5.473946858103341,5.455574666838341,0.13674925024024018,0.17644996745233202,,0.17660723264261116,0.17662927242937268,0.17665096402495492,0.17661401165760854,0.17549997110713378,0.17660621933084908,0.17657893090655938,0.17598627957543037,2.5757829955772595,2.8306714026570665,,2.8315622792665116,2.8316870669737484,2.831809868044237,2.831600663226183,2.8252729152683003,2.8315565415928394,2.831402014006809,2.828040072035678,320.11000000000115,884.9675907929623,209.7195396732438,,208.38828305086855,208.62637546810922,208.59871455410888,208.34705099311338,212.24686336156907,208.6598707156193,208.7415186634515,210.69833279479826,28.547341638482653,6.76514644107238,,6.722202679060276,6.729883079616426,6.7289907920680285,6.7208726126810765,6.846673011663518,6.73096357147159,6.733597376240371,6.796720412735428,7.916953135255556,6.47717322423424,,6.470805196425365,6.471947086468067,6.4718144917861915,6.470607315158665,6.489152158535995,6.472107624937228,6.47249884523956,6.481829519573205,15.5661620398573,16.082226686545734,4.759887595267608,3.3427568978956144,0.21876246751135786,12.663486289459698,4.338898800630853,5.299255603677489,0.0,382.14203432575766,188.95665444310023,-405.3552525453166,-22.715808499926453,-7.111495658689763,-20.267762627265828,303.9792166483308,652.1049628877518,18.70612113188637,11.440437945399154,17.624458456425725,2921.0,49.0,2.0615077287688903,1.0710118720846735,0.0,0.0,0.4206005603523789,0.14732907488287625,0.0,0.0,0.0,0.0,0.0,0.0,0.19641855032959654,0.08817656065588989,0.6377254653781492,0.2507731354589814,0.920783338375776,0.3202791165430874,21.371668241257193,18.11475364119966,15.080520035918415,11.277012521800803,13.855719922975084,8.86365899810661,12.009242004315904,6.795929028365997,9.940060272470172,4.994657003713187,8.175354880709776,3.6319825295526655,6.077383967591122,2.3834677065048786,4.569501813543437,1.604803318892225,4.897411007131905,2.285190390601207,7.545629486102407,3.16734051179726,11.273951000992836,4.209575400072878,100.10483909896615,54.758337649637255,33.97073254940527,27.75791621440514,27.225830247007814,27.225830247007814,170.0,203.0,65.35561799999998,34.274382,0.49122807017543857,295.07,8.472222222222221,6.666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,15.0,16.0,57.0,0.0,1.0,61.0,16.0,1.0,8.0,53.0,17.0,35.0,44.0,0.0,0.0,0.0,24.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,3.0,1.0,3.0,31.0,7.0,0.0,4.0,1.0,0.0,5.0,5.0,0.0,0.0,2.0,1.0,3.0,3.8066624897703196,8.10586758470897,4.403665809777363,5.001426355010946,5.6160890469410285,6.192362489474872,6.599083625082724,7.061970688857218,7.513745475361331,7.80118671671021 +104741,C[C@]12CC[C@@H]3c4ccc(O)cc4C[C@@H](CCCCCCCCC[S+]([O-])CCCC(F)(F)C(F)(F)F)[C@H]3[C@@H]1CC[C@@H]2O,0,23.318181818181817,6.298109090909094,3.0113636363636362,6.605780022446689,169.65911936167393,93.91648981532784,1.386732540089807,6.328627272727274,6.5833236028745,7.793901329545452,194.82552773071282,24.13186813186813,6.207582417582417,3.868131868131868,4.825396825396825,145.42752213131104,91.10333406786815,1.8169567024395608,6.362562637362633,2.5555075068963955,7.666437472527472,253.4744480304513,19.35195530726257,6.182469273743018,3.2960893854748603,4.414649286157665,154.46031061767013,71.75201053880156,1.5085532652121787,6.28866815642458,3.690447042324756,7.665713720670391,203.28846779384278,14.897435897435898,6.031619047619047,2.6666666666666665,2.9385429385429385,161.55652487301026,53.418163266582496,1.2569887506867652,6.104673626373625,3.593888964259335,7.584854652014652,162.25015304167778,11.503184713375797,5.776375796178343,2.417197452229299,1.4532908704883227,162.0691673651025,38.40579201411465,1.1680288989659744,5.8557261146496815,2.2281935598018396,7.404395630573248,143.8174462042932,11.123456790123457,5.680074074074073,2.2685185185185186,1.3213305898491083,164.1711985804781,37.657257472054305,1.103466815701821,5.75424475308642,2.0475378499212527,7.332375185185184,133.9356106377244,11.843333333333334,5.7106933333333325,2.21,1.6525925925925928,163.73377050311407,40.869754611978664,1.0974008850724968,5.784605333333333,2.4172205075445827,7.356511179999997,134.37336424284854,10.932142857142857,5.7585571428571445,2.1285714285714286,1.8218253968253968,164.94938044088417,37.06239634381714,1.060324178894118,5.820921785714286,2.8095109494415054,7.397857235714286,130.23149344343736,10.248031496062993,5.76844881889764,2.074803149606299,1.2720909886264216,166.1393025211568,33.722565332409445,1.0395278911502557,5.828966535433071,2.339443391335343,7.414361708661418,126.68991921740536,9.762396694214878,0.22636508264462799,0.017731828274901697,0.6579287190082644,4.232935414753596,2.490504593938157,46.37279829339289,0.2729816057388975,0.20300227272727261,3.4273590575950355,0.13012702363119835,50.91506731366003,0.7885523567341757,-0.006468379347924786,-0.005077544782201994,0.16949385841431291,0.8560650909135756,0.13620917289559206,3.4796396138300385,0.024751036715864132,-0.004850824175824135,-0.2410557552044842,-0.0015011155392902539,3.734933631376442,0.059340228080705784,0.06536046331778937,-0.0016086072845905516,-0.05832231982085975,1.0188672174028537,0.34212352438132354,0.7077348710965593,-0.01923514024011172,0.05505572625698327,0.9421626993902651,0.03605840748865943,-3.2936523507489257,0.11805618623800458,0.05874227666273115,0.0004362412751644321,-0.04296035403989951,0.45130935282450463,0.43258260988923364,0.8920027304113082,-0.007015799076094693,0.04885631868131867,0.8770205166497939,0.03303475213470238,-2.390950243073786,-0.9248170763804809,-0.008865922250881744,-0.00025989386693078115,-0.017294671527083222,-0.3257603377271396,-0.005414586720036739,-4.385631572577529,-0.013310439197922169,-0.009708598726114678,-0.08911606701482465,-0.004450219491071024,-4.1549539846393495,0.44060555045403516,-7.030149984699916e-05,-0.0008300040083587736,-0.01346323079277624,-0.0775960125006142,0.008959714324249173,2.013440726207254,0.0003023842405692208,0.000786419753086365,-0.06474691217486152,0.001830797917623111,0.5293932446686953,0.9027548209366391,0.017717432506886996,0.0001343474457203221,-0.03372417355371899,0.22406234057749197,-0.08735436350157084,4.211706573978803,-0.015307994948803992,0.017360333333333283,0.241243858882074,0.013435384777892473,-0.6642828744433321,0.45091499409681224,0.023609560212514712,0.0009054164084052425,-0.02164625147579692,0.32898938883787365,-0.048644741532360376,2.2351268956403096,-0.0054141459003537685,0.021112857142857086,0.44194399003484436,0.013689205792502879,-0.236282326106709,-0.2874503806858854,-0.006069735472115605,-0.00037805965578743296,-0.0170017326088371,-0.19192381140603534,-0.06395943665216378,-1.3795592516602921,-0.009927501921839395,-0.005504921259842565,-0.107433916948949,-0.003945258464770353,-1.9507803288477652,,,0.46980255516840885,0.7439024390243902,0.15853658536585366,0.012195121951219513,0.5853658536585366,-0.4268292682926829,1.5959751128574304,0.026391696395000566,0.034781940297439584,0.5283279129289797,0.08977038766541118,0.3817455638023467,2.12430302578641,0.4715159514677579,2.016765870165006,1.6306318663764467,0.0,0.12945434828144264,0.20542099192848826,0.386134003788559,6.88996144845456,2052.0,554.2336000000003,265.0,581.3086419753087,14930.002503827305,8264.651103748849,122.032463527903,556.9192,579.3324770529559,685.8633169999998,17144.646440302728,2196.0,564.89,352.0,439.1111111111111,13233.904513949305,8290.403400176001,165.34305992200004,578.9931999999997,232.551183127572,697.64581,23066.174770771067,3464.0,1106.6620000000003,590.0,790.2222222222222,27648.39560056295,12843.60988644548,270.03103447297997,1125.6716,660.5900205761313,1372.162756,36388.63573509786,4067.0,1646.6319999999998,728.0,802.2222222222222,44104.9312903318,14583.158571777021,343.1579289374869,1666.5758999999996,981.1316872427984,2070.66532,44294.29178037804,3612.0,1813.7819999999997,759.0,456.33333333333337,50889.71855264218,12059.418692432,366.761074275316,1838.698,699.6527777777777,2324.980228,45158.67810814806,3604.0,1840.3439999999998,735.0,428.1111111111111,53191.468340074905,12200.951420945596,357.52324828739,1864.3753,663.4022633744859,2375.68956,43395.13784662271,3553.0,1713.2079999999999,663.0,495.7777777777778,49120.13115093422,12260.926383593598,329.220265521749,1735.3816,725.1661522633748,2206.9533539999993,40312.009272854564,3061.0,1612.3960000000004,596.0,510.1111111111111,46185.82652344757,10377.4709762688,296.89077009035304,1629.8581000000001,786.6630658436216,2071.4000260000003,36464.81816416246,2603.0,1465.1860000000004,527.0,323.1111111111111,42199.38284037382,8565.531594432,264.04008435216497,1480.5575,594.2186213991771,1883.2478740000001,32179.23948122096,859.0909090909092,19.920127272727264,1.5604008881913494,57.89772727272727,372.49831649831646,219.16440426655782,4080.8062498185745,24.022381305022982,17.86419999999999,301.60759706836313,11.451178079545455,4480.525923602083,71.75826446280999,-0.5886225206611555,-0.46205657518038146,15.423941115702476,77.90192327313538,12.395034733498877,316.6472048585335,2.252344341143636,-0.44142499999999624,-21.93607372360806,-0.1366015140754131,339.8789604552562,10.621900826446335,11.699522933884298,-0.28794070394170873,-10.439695247933896,182.37723191511083,61.24011086425691,126.68454192628411,-3.443090102979998,9.854975000000005,168.64712319085746,6.454454940470038,-589.5637707840577,32.22933884297525,16.036641528925603,0.11909386811988996,-11.728176652892568,123.20745332108976,118.09505249976078,243.51674540228714,-1.9153131477738512,13.337774999999997,239.4266010453937,9.01848733277375,-652.7294163591436,-290.392561983471,-2.783899586776868,-0.08160667421626529,-5.430526859504131,-102.28874604632183,-1.700180230091536,-1377.0883137893438,-4.179477908147561,-3.0485000000000086,-27.98244504265494,-1.3973689201963015,-1304.6555511767558,142.7561983471074,-0.02277768595042773,-0.26892129870824266,-4.362086776859502,-25.141108050198998,2.902947441056732,652.3547952911504,0.09797249394442753,0.25479999999998226,-20.977999544655134,0.593178525309888,171.52341127265728,270.8264462809917,5.315229752066099,0.040304233716096635,-10.117252066115697,67.21870217324759,-26.206309050471255,1263.5119721936408,-4.592398484641198,5.208099999999985,72.3731576646222,4.030615433367742,-199.28486233299964,126.25619834710743,6.610676859504119,0.2535165943534679,-6.0609504132231375,92.11702887460463,-13.620527629060906,625.8355307792867,-1.515960852099055,5.911599999999984,123.74431720975642,3.832977621900806,-66.15905130987852,-73.0123966942149,-1.5417128099173636,-0.09602715257000798,-4.318440082644623,-48.74864809713298,-16.2456969096496,-350.4080499217142,-2.521585488147206,-1.3982500000000115,-27.288214905033044,-1.0020956500516698,-495.49820352733235,0.7277631230838435,0.6132554207132555,0.43936713659495613,0.39288947542169333,0.2906467336973116,0.2319108784006526,0.18051102121584947,0.14547586958020023,0.10750134310800957,0.0934238591041821,0.06608030541358773,0.05588817493799191,0.04273243982086159,0.03394130133210548,0.0268072281467434,0.020476077114706566,16.003516844364952,5.684465451218314,4.126135275220555,2.184006352160094,0.5642945689440884,-0.6378400629174861,4.112449486142262,0.9881080566665157,7.015854701713905,0.539937722209392,17.432241137710278,10.33452346686485,32.06175317539652,11.695737903413464,2.9219001078270033,0.5254060040008321,4.0088635111512385,2.233907637077236,8.00961458465151,0.3958167189504186,4.032483410183436,2.4299250486499617,24.435474571770015,13.300677362331886,0.2271132300643217,0.4451693459001755,0.661047494978715,0.8146628749518795,0.8684412116925212,0.8996476624973039,1.1260241580359933,988.5703683111383,0.0,0.0,4.0,0.0,4.0,17.0,2.0,4.0,1.0,4.970797772789195,3.541529586891381,2.126537077620383,1.1196514206020547,0.7671565341400788,0.5626110795946238,177.65973270186925,2934.443224009151,107.1111815926251,33.345945727376716,67.07535769725072,,21.0,1538.0,36.11632540477536,36.717879901745874,17.27181046389187,41.59481124760228,77.04985947511214,11.126902983393991,0.0,12.13273413692322,12.990104268152233,0.0,19.261904761904763,30.5,6.5,0.5,24.0,0.0,0.030197444831591154,-17.5,0.13867105117105122,0.017798424979276084,-0.12087262619177513,0.02783675012829878,0.19111995863495335,0.0,0.5788419913419898,0.8984901277584204,0.44017094017093855,0.5610435663627137,0.8706533776301216,65.43497962715465,1.0820595521950231,1.426059552195023,21.661444430088167,3.680585894281858,15.651568115896215,87.09642405724281,19.332154010178073,0.5228800413650466,0.15203955500618044,0.07787391841779975,0.2509270704573548,0.8125,0.39835984769709504,-1.337542428466367,-0.08789468668131542,-0.015199345778026901,-0.03933948319018727,0.6016401523029049,2.020081177925329,0.03466315627894224,0.022955467930969645,0.03740891070232091,-9.26948011046363,0.8568986568986567,0.5605875741298388,1.251391162323082,1.1971659351443453,0.5001014153248589,1.0016704103348226,0.8475293257017357,1.2029707459828844,0.5656191134801989,0.6255993945234997,0.5597611259416613,1.147454588293098,0.9790360911589959,0.4130477749042796,0.7639343255137804,1.5194390381631682,0.5900326200992086,0.919572202753866,0.958632474646935,1.2721872460387271,0.4364893452208246,0.42290251265831336,0.42051169040834524,1.2012905475062585,0.913468806325949,0.48119931751014783,0.706048160086251,1.1806533015561476,0.7431970282230606,0.737453989265752,0.9034090813899112,1.062521518799793,0.5111358145107208,0.4983648293214772,0.4866504203901813,1.0958376847949944,0.9749641087857647,0.6263774153430196,0.700743869246534,0.9618872005150547,0.8145469682468256,0.7587189653571208,0.970637177392449,1.0321182616324844,0.6581526840465259,0.6166917715066397,0.6210209803899844,1.1138235583269582,0.8290686850872033,0.5590972756553115,0.6657384747846065,0.8974157670919202,0.7437923157990589,0.7135964347000199,0.8277897484874789,0.9522496523653071,0.5817244876676589,0.5690362965701846,0.5325247214135301,1.005163783653725,0.7936179894179893,0.47907635675931237,0.6579744871180909,0.8940765456329735,0.677823098199436,0.7441279253541627,0.7900604921425786,1.017705224171856,0.49888240167485803,0.4853924485634785,0.4472800941895149,1.0301951164150467,0.7859263038548752,0.5034943088951733,0.7900333181360859,0.8479237347539604,0.6847021463694307,0.703292779006544,0.7859299581006458,0.9127534447637754,0.5292154340604592,0.4832169487495431,0.5076041569055387,0.9963260898441859,0.8827221597300337,0.7096990041596974,0.8414920327221516,0.8045683200296725,0.8182366537739076,0.7672006325044414,0.8865047572608031,0.9335366341318686,0.7307643924632796,0.6831769536349757,0.7116720776038595,1.022551094991141,10.5,0.19753290480563207,6.666666666666668,3.354166666666667,2.4394444444444447,1.5627777777777778,1.1690249433106574,0.6519628684807256,0.46384479717813043,0.3218827160493828,8751.1769758667,10319.634398517925,3935.146779267698,3463.5817715541134,21.875701164350165,0.4866411413882871,11.230084981061719,0.9479550868262427,0.0,0.8125,1.4886338458481014,2.9179020317459163,4.332894541016914,5.339780198035243,5.6922750844972185,5.896820539042674,0.23863636363636362,0.006172903275176002,0.10256410256410259,0.04791666666666666,0.04134651600753296,0.027906746031746033,0.02164861006130847,0.01330536466287195,0.011596119929453263,0.008941186556927298,0.5200345793921488,33.88429752066116,14.4,8.1859410430839,244.4129401678271,0.0,4.636170342823629,376.19601511019243,,341.2074909457591,363.5796980714465,366.9692408753988,340.78908391398875,384.79259640170034,362.8144118696989,361.27717436883427,372.4978732879785,0.08077446363160655,-0.028574987238997176,-0.2863520164691051,0.25761735810803515,0.20223910998732025,0.05469139596334121,0.07503622256769894,0.09066924728817846,-0.023895418069240386,-0.0703327988558141,-0.011535770952117256,0.07335615621143242,0.006078448760013036,0.28873915779846304,-0.09071863654733422,-0.08864534733910459,0.24069992040314728,0.1373711677601583,0.015261853869995937,-0.07046313684047202,0.2712074378149892,0.2748946589947821,0.27710160797080063,-0.06468914850801484,0.012092951140570202,0.25950237543902044,0.02460215993530146,-0.06529636539450084,0.10661853031149446,0.1736927572597665,0.019235473450788045,-0.02570062937795593,0.24066882614144744,0.25588813483265327,0.25386542482004637,-0.04695958130320132,-0.09473258517844502,-0.03916647456092163,-0.014656913145196921,-0.026286542945187924,-0.07695849471072132,-0.002174092243481801,-0.09457336485994171,-0.048759472865924115,-0.047825074053027404,-0.02600138051405593,-0.03419904157405219,-0.08160558757671747,0.045132928342804864,-0.0003105668905542554,-0.04680871004901355,-0.02046305382909896,-0.018331489828585335,0.0035975498082023035,0.04341857296315295,0.0011077092163434867,0.003873945559924327,-0.018891196132889025,0.014069313710055317,0.010397575267992705,0.09247266313932978,0.07826928208137872,0.007576626822541621,-0.05125809617271832,0.05293308747318435,-0.03507496581784662,0.09082278251426718,-0.05607701994194378,0.08551792598231826,0.0703876818355162,0.10324822932990912,-0.013046881983893819,0.046188964474678754,0.10429859559912565,0.05106164995331041,-0.03290060283190802,0.07772133439390652,-0.019532082635286354,0.048199094682599,-0.019833372602886333,0.10400305799148155,0.12894592676407668,0.10519879276805998,-0.00464071518654983,-0.029444652751739367,-0.026813921127776235,-0.021320963068571612,-0.025841298787602454,-0.045340595260938435,-0.025681316472107654,-0.029749320774908876,-0.03636692624386893,-0.027117535118625295,-0.031345976637865,-0.03031851766587602,-0.038314401448790565,32.42324448698359,30.535310109253075,10.73190079642137,16.339991364800376,30.242283437875432,38.32547739716145,40.779532393670124,42.13511996649652,42.59136996649652,82.68740067676525,66.85590652143432,0.0,5.3076282795391485,8.422260669068018,15.831494155330919,29062.83364661045,27281.94786591484,2834.155865413948,283.0,65.0,84.0,103.0,136.0,168.0,206.0,244.0,277.0,606.3166074640013,44.0,5.389071729816501,6.248042874508429,7.152268856032539,8.045267716607803,8.960210955576986,9.871119307503399,10.795260156596557,11.717619872615908,12.648804636230269,0.6136363636363638,0.9856363636363639,1.1482260897699317,0.5740732131909384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.631942508165487,0.9705882352941179,1.00813993908495,0.5829224853357513,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,2.0,17.0,0.0,0.0,0.0,5.0,0.0,3.0,0.0,0.0,14.765804663371776,17.255219046777484,0.0,0.0,0.0,0.0,0.0,21.9520752383741,0.0,56.270066856167574,110.13364638069366,6.4208216229260096,6.103966387748303,348.1522924626734,-1168.964355792058,-76.8168198684938,-13.283685861273389,-34.381304582119355,525.8120251645427,1765.478868217093,30.294361724131306,20.06225986610333,32.69405311513136,0.47619047619047616,0.8571988075362057,0.18356546357720513,164.53478467457637,0.1348369897246063,0.17519970006393829,0.1428011924637943,11.0,0.3181818181818182,0.23045895269685485,0.45172736612412445,0.6707857280376313,0.8266640957431082,0.8812346690184607,0.9129008382144134,8.682600000000003,,3.041666666666667,2.7837722054035523,2.201018029947819,3.212100304316376,-12.813768201300746,2.5842731097347205,2.3843405048164357,-3.772702885506146,152.6519999999998,36.717879901745874,0.0,0.0,23.16870860788096,127.35676166302855,11.505707213493578,29.32600418877882,0.0,5.749511833283905,4.48863636973214,0.0,5.855071922202427,2.3978952727983707,7.415175109613295,4.844187086458591,9.077608659522225,7.034387929915503,10.801797596374334,54.000000000000014,5.916987984589773,0.0,0.0,0.0,0.0,0.0,3.0437385295151596,0.0,86.73600000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.04389589975399,0.0,21.9520752383741,5.749511833283905,44.4743059501517,17.5966760963113,23.16870860788096,113.86004895021019,18.19910120538483,0.0,0.0,0.0,50.51844276080258,55.61094071856286,50.68227460130737,752.3920302203851,,682.7882945344531,727.0236023767757,733.8311150176294,681.9353353202349,773.6856376013495,725.502761636484,722.4380394447506,745.9159180114464,50.68227460130737,752.3920302203853,,680.0433758352663,724.3756239374895,731.73746372085,679.0366106553641,782.3989610047015,723.0445506296633,720.1700082328518,748.7684494614632,5.149583194372179,595.7566717279319,,544.7577501608398,583.073464996431,588.1332358087054,544.2742966711994,597.6607641256899,581.445931374677,578.480460498796,589.1886381731138,1.2361530390562774,18.351025127326466,,16.653373037425688,17.732282984799408,17.898319878478766,16.632569154152073,18.870381404910965,17.695189308206928,17.62043998645733,18.193071171010885,2.5988495885733456,376.19601511019243,,341.2074909457591,363.5796980714465,366.9692408753988,340.78908391398875,384.79259640170034,362.8144118696989,361.27717436883427,372.4978732879785,85.41176470588238,0.0,2.3025003778249378,0.0,62.54980894003958,0.0,20.97700947791931,88.71631463947558,11.958701276111988,0.0,0.0,0.0,2.0138441863112106,0.0,-10.231625716404146,0.0,0.0,51.29717870954612,749.1611708992434,130.99977843463293,256.77537879364064,381.2947196094885,469.90065742710135,500.92020743575523,518.9202074357553,1651.0,165.8276661054884,124.80314672797275,92.91475994661688,63.519999999999996,63.519999999999996,0.9090909090909091,8.177006564982307,6.459431618637297,4.226482340563708,6.320503672537991,,6.33029262892893,6.32763301676493,6.326481256220537,6.330788270784445,6.285325142078866,6.327359217872368,6.327048955674816,6.312610628888416,0.10308493513570019,0.15415862615946319,,0.15439738119338856,0.1543325126040227,0.15430442088342772,0.1544094700191328,0.15330061322143576,0.15432583458225288,0.15431826721158087,0.15396611289971748,2.852357022823551,3.2547858737153827,,3.25633343769655,3.2559132089359166,3.2557311716122874,3.2564117314630447,3.2492045474420297,3.2558699376501616,3.2558209014260475,3.253536293526635,448.16000000000224,684865.1640319715,298.1159515448362,,296.0293015250698,296.4545976156526,296.7660495733942,295.93614228090263,304.20845043603595,296.5354584627153,296.6088688195902,299.64363962361307,16704.028391023694,7.271120769386249,,7.220226866465117,7.230599941845185,7.238196331058394,7.217954689778113,7.41971830331795,7.232572157627203,7.234362654136347,7.308381454234465,14.847964230749687,7.108469483679971,,7.101445414773723,7.102881052650959,7.1039310902308515,7.101130669222573,7.128700132360783,7.103153775091192,7.103401304584009,7.113580874370871,74.51272203673797,0.0,20.97700947791931,2.7255327562614275,-1.914025678071536,5.916987984589773,5.97315119734432,2.3025003778249378,0.0,569.0102735748077,304.2726807124913,-1021.6331355403443,-67.13515955866096,-11.609467449322095,-30.048033398245423,459.5409477731141,1542.9655343466216,26.47619117218247,17.53369925393888,28.57343582123374,7474.0,70.0,4.515808384554504,2.1650033534357243,0.5446278254943948,0.15660367499046415,2.6194665642017574,0.6287501332454808,1.2653293322489865,0.10534715052145494,0.0,0.0,0.0,0.0,0.08333333333333333,0.08333333333333333,0.4352195795371119,0.33382869501036944,0.9040457822342589,0.6338583272361651,29.838288046437583,25.143472249243473,19.33215401017807,17.287136918554506,18.892037690325253,15.07420709604242,15.162925782131355,12.21997304473682,11.072638340124985,9.622657487730757,8.98692153624793,7.6007917915669,7.179049889904747,5.702138623793721,5.522288998229141,4.218071885629553,10.191781485936211,4.898673169266558,12.380915835293509,7.55664281320973,17.77695377225539,11.580158180240609,140.34996036765156,83.57730957865142,50.008069965515915,37.07024283643654,31.64666944009425,29.51523879102336,218.0,258.0,92.87027099999997,57.27372900000008,0.19318181818181818,296.09,15.1875,8.784722222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,6.0,6.0,88.0,0.0,0.0,91.0,6.0,0.0,3.0,88.0,6.0,44.0,85.0,0.0,0.0,0.0,32.0,0.0,5.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,47.0,3.0,2.0,0.0,41.0,9.0,0.0,0.0,3.0,0.0,4.0,14.0,1.0,0.0,5.0,0.0,1.0,3.871201010907891,6.741737588894712,4.33729074083249,4.702750514326955,5.061803580670655,5.502023223969771,5.740596447778917,6.0224634526794745,6.340083692558243,6.620947823941017 +208902,CCC(=O)NCC[C@@H]1CCc2ccc3c(c21)CCO3,0,19.35,5.8891225,3.025,5.6,162.35307560910573,75.94238327500001,1.4113919750457251,5.96472,3.297916666666667,7.466026699999999,202.62811970473018,22.166666666666668,6.151285714285716,3.7857142857142856,5.404761904761905,144.67020047164993,82.79654459523806,1.793304250000001,6.303523809523809,2.570767195767196,7.593401047619044,254.95662378075826,17.468354430379748,5.998772151898734,3.3544303797468356,3.8987341772151898,152.5991259837568,63.41200846835443,1.4979691744365822,6.113627848101265,2.4177215189873427,7.520995392405061,204.79852894550015,13.317307692307692,5.834769230769232,2.8461538461538463,2.3365384615384617,159.22240317653967,46.363616567307695,1.2656244303579325,5.922350961538464,2.260416666666666,7.431465038461538,165.21895854801585,13.285714285714286,5.880877551020409,2.7551020408163267,2.0306122448979593,156.5620826449141,45.1714682857143,1.3135246253457753,5.977423469387755,2.2658730158730163,7.457095918367346,169.4793890371744,10.476635514018692,5.678158878504672,2.317757009345794,1.514018691588785,160.47367406103805,34.15357336448598,1.122374604289,5.76076168224299,1.9371754932502598,7.303440523364484,136.74632285396643,8.97979797979798,5.64588888888889,2.0606060606060606,1.505050505050505,167.01267378448142,28.929646202020198,0.9655715480920302,5.699737373737373,1.941638608305275,7.322891959595961,115.80710572033585,10.780821917808218,5.74804109589041,2.1232876712328768,2.2739726027397262,167.80155747047633,36.91619279452055,1.0008393261571238,5.797994520547946,2.29261796042618,7.404125260273972,126.21196377686267,12.127272727272727,5.841854545454547,2.2363636363636363,2.290909090909091,162.73564214629516,41.52750800000001,1.1267548699197094,5.9113818181818205,2.562121212121213,7.4668256,145.68729988276309,7.1,0.09667693749999995,0.014858707633063628,0.5443749999999999,3.35,1.3789583901658429,33.903693399374994,0.23272060580671936,0.09379099999999993,1.035399305555556,0.058103637499999986,51.723920952763436,0.4166666666666667,0.0010939553571428424,-0.007034607881281543,0.22883928571428563,1.2261904761904763,-0.023368745746103137,1.9820762940773804,0.0019375632875716523,0.002339238095238162,0.004432043650793632,-0.0005730684523809588,1.929366326870373,0.16772151898734178,0.005759011867088599,0.0007265570433427517,0.0534098101265823,0.28164556962025317,0.03169878905852498,0.7710402914477845,0.00038262616554358015,0.00512216455696207,0.06619176336146271,0.003254885284810122,0.34100542924546384,-0.14423076923076922,-0.008958620192307691,-0.00022811781281718472,-0.06456730769230769,-0.6346153846153846,0.09758160242241513,-0.6141256392788464,0.012686277334784944,-0.008127923076923066,-0.04741853632478636,-0.005350447115384616,1.7477367223346667,-1.6071428571428572,-0.017096631377551016,-0.0006852163423681814,-0.09998724489795917,-0.923469387755102,-0.12372417521791461,-7.648061797844386,-0.031488376119543374,-0.018166408163265264,-0.17340950963718824,-0.008067213010204077,-9.35025075043728,-0.9228971962616822,-0.0019454421728971895,0.00038848597833220934,-0.0738142523364486,-0.25934579439252337,-0.34211156373549134,-4.515085310823596,-0.05375401722577101,-0.002785392523364499,-0.04571213006230527,-0.0007380776869158845,-10.563769634913934,0.26515151515151514,-0.00345229103535353,-0.0007904761059684202,0.03895833333333332,0.2398989898989899,-0.020614949659629886,1.30653975592803,0.008744581562148069,-0.0022179696969697286,-0.001939709595959552,-0.003254886994949493,2.335439116479038,1.3116438356164384,0.010505699486301368,0.0022825899945540773,0.029940068493150673,0.5993150684931506,0.18473547299081003,6.2821842348715755,0.03538548300271077,0.011638178082191754,0.025464469178082195,0.004162384417808218,9.151248354046784,0.06818181818181818,-0.006055664772727273,-0.0036705629850307636,-0.09392045454545457,-0.06818181818181818,0.08267184154078878,0.34617286971590927,0.001350411182391536,-0.004482818181818178,-0.0251594065656566,-0.0045142375000000005,1.2166173852915692,,,0.47719298245614045,1.013157894736842,0.39473684210526316,0.0,0.618421052631579,-0.2236842105263158,0.928760656090051,0.0064309770783590224,0.020009924446780077,0.56152829910744,0.17487852555100597,0.3141754217060611,1.490288955197491,0.4890539472570671,2.056405679588206,1.7537120432319764,0.10407247820131875,0.19862115815491058,0.0,0.3026936363562293,6.478930722800003,774.0,235.5649,121.0,224.0,6494.123024364229,3037.6953310000004,56.455679001829004,238.5888,131.91666666666669,298.64106799999996,8105.124788189207,931.0,258.35400000000004,159.0,227.0,6076.148419809297,3477.4548729999983,75.31877850000004,264.748,107.97222222222223,318.9228439999998,10708.178198791848,1380.0,473.903,265.0,308.0,12055.330952716788,5009.548669,118.33956478049,482.97659999999996,191.00000000000006,594.1586359999999,16179.083786694511,1385.0,606.8160000000001,296.0,243.0,16559.129930360126,4821.8161230000005,131.62494075722498,615.9245000000002,235.0833333333333,772.872364,17182.77168899365,1302.0,576.326,270.0,199.0,15343.084099201584,4426.803892000001,128.72541328388598,585.7875,222.0555555555556,730.7954,16608.98012564309,1121.0,607.563,248.0,162.0,17170.68312453107,3654.4323499999996,120.094082658923,616.4014999999999,207.2777777777778,781.4681359999998,14631.856545374409,889.0,558.9430000000001,204.0,149.0,16534.25470466366,2864.0349739999997,95.59158326111098,564.274,192.22222222222223,724.9663040000002,11464.90346631325,787.0,419.6069999999999,155.0,166.0,12249.513695344773,2694.882074,73.06127080947003,423.25360000000006,167.36111111111114,540.501144,9213.473355710976,667.0,321.3020000000001,123.0,126.0,8950.460318046235,2284.0129400000005,61.97151784558402,325.12600000000015,140.9166666666667,410.675408,8012.80149355197,284.0,3.867077499999998,0.5943483053225451,21.775,134.0,55.15833560663371,1356.1477359749997,9.308824232268774,3.7516399999999974,41.41597222222224,2.3241454999999993,2068.9568381105373,17.5,0.04594612499999938,-0.2954535310138248,9.611249999999997,51.5,-0.9814873213363318,83.24720435124998,0.0813776580780094,0.0982480000000028,0.18614583333333254,-0.024068875000000267,81.03338572855566,13.25,0.45496193749999936,0.05739800642407738,4.219375000000002,22.25,2.5042043356234736,60.912183024374976,0.030227467077942834,0.4046510000000035,5.229149305555554,0.25713593749999963,26.939428910391644,-15.0,-0.9316964999999998,-0.02372425253298721,-6.715,-66.0,10.148486651931174,-63.86906648500003,1.3193728428176341,-0.8453039999999988,-4.931527777777782,-0.5564465000000001,181.76461912280533,-157.5,-1.6754698749999994,-0.06715120155208178,-9.798749999999998,-90.5,-12.124969171355632,-749.5100561887499,-3.085860859715251,-1.780307999999996,-16.994131944444447,-0.7905868749999996,-916.3245735428534,-98.75,-0.20816231249999928,0.0415679996815464,-7.898125,-27.75,-36.605937319697574,-483.1141282581248,-5.751679843157498,-0.2980370000000014,-4.8911979166666635,-0.07897431249999964,-1130.3233509357908,26.25,-0.34177681249999947,-0.0782571344908736,3.8568749999999987,23.75,-2.0408800163033587,129.34743583687498,0.8657135746526587,-0.21957900000000313,-0.19203124999999566,-0.32223381249999977,231.20847253142477,95.75,0.7669160624999998,0.16662906960244764,2.185624999999999,43.75,13.485689528329132,458.59944914562504,2.5831402591978865,0.8495869999999981,1.8589062500000002,0.3038540624999999,668.0411298454152,3.75,-0.3330615625,-0.201880964176692,-5.165625000000001,-3.75,4.5469512847433835,19.03950783437501,0.07427261503153448,-0.24655499999999977,-1.383767361111113,-0.24828306250000004,66.9139561910363,0.696961905694199,0.6051734135159178,0.4424773808516322,0.34924281365065796,0.2776335072344662,0.18763078842538222,0.1771544885320603,0.10801221637984681,0.10855796212648382,0.06202761831888887,0.06943297868189506,0.035500484228607514,0.04605459023993821,0.02061533182923143,0.030399131770037845,0.011958385730584789,8.022143525081399,5.682144991389573,3.5438427126343925,2.181799414595661,0.3682427498962553,-0.5240481235720087,3.271124568133126,0.9776586778625967,6.022014605424896,0.9880038260225111,14.540276825395068,10.942505506655348,16.010260737910905,11.6933479104363,1.999921778151256,0.7518906821376465,3.4890413208159203,2.2317242925882015,7.008269166855838,1.222948610153843,3.701973516345165,2.427737265839692,20.908061010845202,14.70251006672799,0.24729720763440166,0.5535771108310145,0.808411595225893,0.8786098437823309,0.8786098437823309,0.8786098437823309,1.5396738682661217,495.7674548036702,0.0,1.0,3.0,0.0,3.0,5.0,3.0,1.0,0.0,3.9559666469588497,2.2642106257572143,0.8566165626622588,0.46887218755408444,0.46887218755408444,0.46887218755408444,253.72597206384722,704.1248951672915,40.34179910470478,17.603122379182285,33.18157836863656,,10.0,337.0,0.0,4.794537184071822,5.907179729351506,12.338727669087403,31.742793449561418,29.531997720943004,0.0,6.923737199690624,17.449522740929552,4.736862953800049,9.066666666666668,19.25,7.5,0.0,11.75,0.0,0.022807017543859567,-4.25,0.09493710691823887,0.031086956521739095,-0.06385015039649977,0.025087719298245603,0.11881400437636724,0.0,0.5383333333333336,0.801754385964912,0.4433962264150947,0.5072463768115945,0.7766666666666664,17.64645246571097,0.12218856448882143,0.38018856448882143,10.66903768304136,3.3226919854691133,5.969333012415161,28.31549014875233,9.292024997884274,0.5951859956236327,0.09191176470588233,0.0,0.3308823529411764,0.5625,0.23961583452579588,-0.3462939105103206,-0.045669132009531925,-0.008657347762758014,-0.028857825875860048,0.760384165474204,1.098910707104548,0.03713173861606761,0.027472767677613703,0.03924681096801958,-4.590796545910127,0.8991448692152917,0.7451834474114221,1.4605859236508643,0.746268656716418,0.5127931769722814,1.2485100036809642,0.9058660759791745,1.158428246183825,0.7440298490412571,0.55023917714439,0.7414370448961011,1.0672691456266965,0.9464922446068819,0.8277789734076897,1.021648871684876,1.1562440959758171,0.9265539391649349,1.0877517501812315,0.9503471022739659,1.0711378966060816,0.8359129084340363,0.5592381673618123,0.8225707366209933,1.0332488246766947,0.9942781690140845,1.0471764530191081,1.006508290519976,1.3605051664753156,1.267723880597015,0.9408797612841889,0.9927891637720656,0.9425265535537315,1.0416244629015576,0.9821593252737298,1.0416744562679057,0.9556729561246581,1.1924762862891638,1.0968819608659015,0.9019629005024421,1.2427657630216264,1.2384252208346025,1.1362028658276873,1.1933450874270048,1.1562290990837825,1.1153632348867728,1.2510167466775435,1.0511081011345054,1.1840814846717538,1.067148216401211,0.7864756135693455,0.7618710057687496,0.9959548054121914,0.9016947970428233,1.2150625896613112,1.0735132407079224,1.209587708774024,0.8207162136294884,0.6815586551671556,0.733954161511077,1.1887671226837557,0.939767392232181,1.0517319055226557,1.144960976906955,0.7146087743102668,0.8554952510176391,0.9029584156797326,0.93683533658931,0.8670294891403757,1.0397291301775742,0.7515623039022153,1.0655285018632752,0.8846735501049947,0.817359637275709,1.0254648516339588,0.9761764372588948,0.8341852381925986,0.8432324677979963,0.7838223350347744,0.8132866454492169,0.7396702550896815,0.9953077324503053,1.2270677893729092,1.058167252237111,0.7413173919865476,0.9937259923175417,1.213030911703876,1.3644525317880953,1.1723202170963365,1.1139077340569878,0.8977586896878557,0.9900871250030694,0.9432806296102269,1.1785136875897186,1.5613578058287048,1.261064859399645,0.9283165041622159,3.0,0.03234567901234568,2.222222222222223,1.097222222222222,0.6794444444444445,0.30583333333333335,0.19759637188208612,0.2283517573696145,0.15243134290753335,0.09063271604938272,3263.7480938732156,3818.6879194160065,1782.6420074450962,1571.6895409305039,10.56144147736423,0.4271146009775459,6.050495615012104,0.7455498110204154,1.0,0.5625,1.365961447928513,3.0577174691301483,4.465311532225104,4.853055907333278,4.853055907333278,4.853055907333278,0.14285714285714285,0.010781893004115226,0.07662835249042149,0.040637860082304515,0.028310185185185188,0.01699074074074074,0.01411402656300615,0.01631083981211532,0.012702611908961114,0.010070301783264747,0.3694039544272574,13.959183673469388,6.185493460166469,2.88,113.89409146956328,1.0,3.8894078888309815,80.32492904173198,,70.0210005164005,69.24939677380708,69.05929176999985,70.02900190884847,84.52539115601667,69.71403076814275,70.06543392799878,79.34586807144125,0.05868544600938968,0.011315577276564464,-0.4734333600876646,0.4203706741020172,0.36602700781805264,-0.01694666489776581,0.05846195783831385,0.008325705757146619,0.024940965500294947,0.004280516344769582,-0.009862867060275855,0.037301238794954374,0.02362274915314673,0.059569655556048234,0.04889772793738908,0.09811216555973787,0.08407330436425467,0.022987487718692273,0.02274207362499327,0.0016441439047359706,0.054612538057618246,0.06392873068998894,0.05601861475213359,0.006592799288299993,-0.020314192849404115,-0.09266553558657871,-0.015352466610863012,-0.11860814271836086,-0.18943742824339838,0.07076471858638121,-0.018113827070243848,0.05451290955009473,-0.08665994687041477,-0.04579734221411649,-0.0920845466066495,0.033789718376740566,-0.22635814889336017,-0.17684291434605098,-0.04611547378746699,-0.18367346938775508,-0.27566250380749313,-0.08972292137330895,-0.2255819655915534,-0.13530549222484967,-0.19369031317786647,-0.1674808054310441,-0.13884178955584459,-0.18077227283245487,-0.1299855206002369,-0.020123125775443503,0.026145341030046888,-0.13559449338498022,-0.07741665504254429,-0.24809418919039802,-0.13317384798279325,-0.23098090965960766,-0.029697865715948235,-0.04414927633912008,-0.012702779355524595,-0.20423373635114078,0.03734528382415706,-0.03570956139724153,-0.05319951946624557,0.07156525066972826,0.07161163877581787,-0.014949653163320318,0.03853679717243184,0.03757545032093409,-0.023648001375075757,-0.0018733927920868922,-0.056018644184703474,0.04515201232736907,0.18473856839668146,0.10866810387225365,0.1536196855690769,0.05499897771416886,0.1789000204457166,0.13396740199578647,0.18529498131278482,0.1520513530808671,0.12408629913522365,0.024593863489621455,0.07163724332763535,0.17692487702941367,0.009603072983354673,-0.06263815269000714,-0.24703110631660985,-0.17252896357373976,-0.020352781546811395,0.0599523829945631,0.010210476647428947,0.005802714279255049,-0.047795824565450645,-0.024299230674253755,-0.07769285528810484,0.023521368119068888,9.733947834650278,18.75554523843696,6.1005883889111345,12.163953856889043,28.50739256694506,33.64244874186001,34.03329507196904,34.03329507196904,34.03329507196904,39.07170791217591,33.32052882140755,1.9773770858250561,3.7738020049433008,0.0,5.751179090768357,2604.6279211254123,2254.665358813993,923.9905238864367,75.0,29.0,40.0,54.0,63.0,72.0,82.0,91.0,80.0,259.1572289120001,21.0,4.61512051684126,5.476463551931511,6.361302477572996,7.247792581767846,8.145839612936841,9.043931533642278,9.949177678453244,10.854044436277903,11.76366083674138,0.5833333333333333,0.9626999999999999,1.1267512921502978,0.5398155857130964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6500995958083833,0.9501960784313728,0.9911689730517116,0.5969188428658663,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,7.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,10.05365155780638,5.749511833283905,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,12.990104268152233,42.37364096679502,24.94985114346159,6.606881964512918,116.74435046045568,-168.71947436589912,-22.25067121752187,-4.217986859147477,-14.05995619715826,370.4703225243029,535.4054208013923,18.091127887182914,13.385135520034808,19.1216221714783,0.5,0.8820371334184967,0.341092245445734,71.52631582927329,0.151685058665043,42.672704220571696,0.11796286658150328,5.0,0.19047619047619047,0.2566666485480622,0.5745506918944692,0.839040184799718,0.9118980604032366,0.9118980604032366,0.9118980604032366,2.5676000000000005,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,74.62070000000004,9.53140013787187,0.0,5.316788604006331,0.0,44.94575136048208,13.151638370425493,28.823088612014207,0.0,5.749511833283905,3.7612001156935624,0.0,5.0689042022202315,3.044522437723423,6.5722825426940075,5.351858133476067,8.177234885510194,7.423568444259167,9.84548760823814,23.33333333333333,4.353686985596708,0.0,0.0,0.0,0.0,0.0,5.5434049298731845,0.0,38.507999999999996,0.0,11.287267704921476,0.0,0.0,0.0,0.0,0.0,0.15263361363063788,45.070051686011915,10.05365155780638,0.0,5.749511833283905,19.058818099777,17.63618042992384,0.0,48.794462589721036,12.13273413692322,0.0,0.0,0.0,21.592623428523858,26.00398383233533,25.05852679785439,160.64985808346395,,139.97433185986864,138.41909919773292,138.05842375502976,139.99052683488856,169.8979729478839,139.35662721302324,140.0637886356239,159.04457201162757,25.05852679785439,160.64985808346398,,139.39914388994384,137.74169722374262,137.54706558278545,139.4169724810174,171.73355265889344,138.74943546529408,139.49361526244766,159.80904972724198,4.854264170037611,121.31466870965455,,107.66702983851414,106.43064936068956,105.75768399413431,107.67875879981337,130.18769181485308,107.15782068639717,107.74006020521307,122.28796307349853,1.3188698314660205,8.455255688603366,,7.367070097887823,7.285215747249101,7.266232829212093,7.367922464994135,8.941998576204416,7.334559327001223,7.371778349243363,8.370766947980398,2.500757638568914,80.32492904173198,,70.0210005164005,69.24939677380708,69.05929176999985,70.02900190884847,84.52539115601667,69.71403076814275,70.06543392799878,79.34586807144125,38.00784313725491,0.0,1.893274364140616,0.0,0.0,0.0,0.0,39.646758922068464,6.685693790053008,2.9875611772486774,5.6623976915273815,0.0,0.6007464096749808,0.0,0.0,0.0,0.0,23.87675371463465,429.7414335189068,54.638457917140514,122.30869876520593,178.61246128900416,194.12223629333113,194.12223629333113,194.12223629333113,626.0,113.45733322616526,57.47323946585183,68.24505836981479,38.33,38.33,1.0,7.620536567737755,5.392317422778761,3.606964856883548,4.291285269069594,,4.288813092004203,4.289506521914813,4.28955435556689,4.288805628195055,4.272773403773558,4.289085949769345,4.288773442277745,4.279698110745333,0.1898402556254499,0.2258571194247155,,0.22572700484232647,0.2257635011534112,0.2257660187140468,0.22572661201026606,0.22488281072492408,0.22574136577733395,0.22572491801461816,0.22524726898659644,1.9247205450143254,2.0984401707619638,,2.097863912302033,2.0980255826391923,2.0980367338952,2.097862172003381,2.094117011653654,2.097927531088849,2.097854667341041,2.0957363584058135,208.23999999999955,350.0607236077138,98.67804573351984,,98.69947033489873,98.64248970039486,98.69329259017627,98.70024566834135,99.97537362252129,98.67968944152098,98.70245027946561,99.45674839646286,18.424248610932306,5.193581354395781,,5.19470896499467,5.191709984231308,5.194383820535593,5.194749772017966,5.261861769606384,5.193667865343209,5.194865804182401,5.234565705076992,6.499960521629199,5.233716373558808,,5.233933466183031,5.233355984981596,5.233870872756272,5.233941321649679,5.246777778057797,5.233733030701734,5.233963657830183,5.2415767463492955,5.6623976915273815,11.287267704921476,2.9875611772486774,4.457068111195096,1.8397168419837073,4.353686985596708,5.068251265012178,3.5107168891814453,0.0,255.35422439596707,56.87956053240897,-82.20260352934191,-10.840853500936298,-2.055065088233547,-6.850216960778492,180.4985770392363,260.85737701001744,8.81426295747927,6.521434425250436,9.316334893214911,735.0,27.0,1.0358690091938783,0.538051119957976,0.0,0.0,0.22451341401773972,0.11189602586111586,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.1231998199566861,0.39856858967637593,0.20459372883576543,0.6297953652660672,0.2887369740815008,13.242276208189782,11.498294856802438,9.292024997884276,7.334099086663818,8.05137170979952,5.441292864336084,7.086179541282412,4.320488655193873,5.862129954830126,3.3494913892199993,4.374277656959388,2.2365305064022736,3.315930497275551,1.484303891704663,2.4927288051431034,0.9805876299079527,2.701679520963379,1.3862451313826558,4.488328449771342,2.269709082938468,6.521656092691679,3.025019444243951,65.39987639618722,33.022430826838274,22.028268446892405,20.23109581688719,20.23109581688719,20.23109581688719,100.0,119.0,43.42665299999997,24.241346999999994,0.3,99.03,5.416666666666667,4.277777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,6.0,6.0,40.0,0.0,0.0,42.0,6.0,1.0,4.0,38.0,7.0,21.0,35.0,0.0,0.0,0.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,2.0,1.0,1.0,19.0,3.0,0.0,1.0,2.0,0.0,3.0,4.0,0.0,0.0,0.0,0.0,1.0,3.258096538021482,5.802401567902673,3.7727609380946383,4.300680995219929,4.815228497753646,5.256518332379955,5.47541697936084,5.716719265686921,5.92975535298057,5.772705899287331 +2333,CCc1oc2ccccc2c1C(=O)c1cc(Br)c(O)c(Br)c1,0,96.05882352941177,6.355741176470589,3.823529411764706,8.827483256677155,153.23533753260259,470.64368411764707,2.155331378182,6.519014705882353,4.904931211167595,7.929100294117647,283.1994564488705,37.05555555555556,6.372222222222223,4.527777777777778,8.752057613168724,139.75716358605695,150.94913838888888,2.181342094333333,6.569638888888888,3.356310013717421,7.814130333333332,313.05424495073345,36.88135593220339,6.279830508474576,4.220338983050848,7.807281858129316,143.68213742889824,151.53390655932202,2.021741657955864,6.4658559322033895,3.176135174722746,7.767575118644069,284.1528880922588,39.28378378378378,6.368864864864865,3.5945945945945947,6.104604604604605,149.81871627955798,161.83911448648647,1.8133328678600134,6.541078378378378,3.385218551885218,7.936040810810809,252.07991391385303,48.916666666666664,6.528244444444446,3.4027777777777777,5.829122847126962,150.51958051662496,215.30509751388885,1.8576621573409307,6.684850000000001,3.731711295915258,8.098040736111109,248.27760808488605,33.92537313432836,6.3321791044776115,3.298507462686567,4.763957987838586,148.87360802567684,136.26909537313432,1.7337801289335373,6.497138805970149,3.5120692832135623,7.891511164179105,238.32076287580085,28.085714285714285,6.223714285714287,2.942857142857143,4.059259259259259,151.07772858640354,111.8929842,1.6579236250199427,6.358887142857142,3.5696649029982366,7.786962971428571,218.5009026114768,35.888888888888886,5.890555555555556,2.4305555555555554,2.5246913580246915,155.60644230344565,151.58979136111108,1.5828594495775556,6.049893055555555,2.392146776406036,7.552916777777778,193.8186201963828,35.5,5.874250000000002,2.1607142857142856,2.3326719576719577,159.09859283483897,143.60166651785713,1.600717576206857,6.054501785714286,2.443452380952381,7.62472342857143,180.02754067325967,58.63321799307959,0.12337577854671279,0.023242106491503517,0.7093425605536331,4.0238417322872015,1.302040922530307,315.06355285121106,0.4115710468928511,0.12257863321799303,1.6723779078322203,0.09140600692041519,54.718731269016736,-0.290080738177624,-0.008136562860438267,-0.010242944543821218,0.2890234525182622,1.2261403364433539,0.07663405136700467,-1.3094185930411388,0.014121036280769751,-0.007596035178777406,-0.15984927383632652,-0.0064279121491733916,2.323188072185884,1.7247082282564072,0.006147651164154593,-0.0011390724000558694,0.06633042050319633,0.8708377409528857,-0.05678332723739138,8.457568872617438,0.015547664803705155,0.008373061697261137,-0.003703803259792129,7.987842355287493e-05,4.0635326259910585,0.23880108482184617,0.0034998971289628925,0.0013399026790277063,-0.04002618535490507,-0.08217130368866879,0.006020672895723578,-0.38667166202188546,-0.012503528934486334,0.008938457402038694,0.012762706638459546,0.002141277658281106,4.608259303487896,7.40763168012303,-0.020626105344098363,-0.0013871601802611373,-0.19872164552095345,-0.9369075759086011,0.022505083581242605,42.18636555483469,0.045265709724152864,-0.022353469819300274,-0.15716707812996908,-0.01204159270472897,-2.8043105165759474,-2.0607860352218146,-0.00872468109280584,0.0003734384080167377,-0.17202912771781234,-1.2783306047970804,-0.24073215250955557,-11.333853662449,-0.08287828387894687,-0.006057562102979905,-0.20260388096823476,-0.000552650467386258,-10.769520112655256,0.6642609985170531,-0.010581156697973297,0.0007483722802168897,-0.043796342066238274,-0.9383833514039845,-0.13016864859812294,4.322591325259509,0.008298306496896665,-0.013469179436480445,0.006231992918203293,-0.0028042472565496706,-8.29922936380411,7.039984621299499,0.017812456747404785,-0.0025262402578882515,-0.01898308342945023,0.050781486913601244,-0.054007338035788,34.415161496828134,0.039411135820786015,0.025200084102268375,-0.06504637210864864,0.016205672818146884,6.69965316253252,-8.460949085516559,0.03528850716757283,0.004843914525856917,-0.05072911517548199,0.9873180814325243,0.04855015835709699,-46.663079892177464,-0.0057917380568911474,0.030260442412259028,0.35356127442504487,0.015189701062778069,5.886935777596022,,,0.5530303030303031,1.3636363636363635,0.7727272727272727,0.06818181818181818,0.5909090909090909,0.18181818181818182,0.831451951511371,0.017733534405452032,0.029460807132724757,0.9062510060274657,0.2540956382911055,0.22427144377494687,1.7377029575388365,0.47836708206605233,2.028511617434933,1.6134307933289,0.0,0.2552328461756235,0.1598479779304094,0.41508082410603286,12.409274071882361,3266.0,216.09520000000003,130.0,300.1344307270233,5210.001476108488,16001.885260000001,73.28126685818799,221.6465,166.76766117969822,269.58941,9628.781519261596,1334.0,229.4,163.0,315.0740740740741,5031.25788909805,5434.168982,78.528315396,236.50699999999998,120.82716049382717,281.30869199999995,11269.952818226404,2176.0,370.51,249.0,460.6296296296296,8477.246108304997,8940.500487,119.28275781939598,381.4855,187.391975308642,458.28693200000004,16765.02039744327,2907.0,471.29600000000005,266.0,451.74074074074076,11086.585004687291,11976.094471999999,134.186632221641,484.03979999999996,250.50617283950615,587.2670199999999,18653.913629625124,3522.0,470.0336000000001,245.0,419.69684499314127,10837.409797196997,15501.967020999997,133.751675328547,481.30920000000003,268.68321330589856,583.0589329999999,17875.987782111795,2273.0,424.256,221.0,319.1851851851852,9974.531737720348,9130.02939,116.163268638547,435.3083,235.30864197530866,528.731248,15967.491112678657,1966.0,435.6600000000001,206.0,284.14814814814815,10575.441001048248,7832.508894,116.05465375139599,445.1221,249.87654320987656,545.087408,15295.063182803375,2584.0,424.12000000000006,175.0,181.77777777777777,11203.663845848087,10914.464977999998,113.965880369584,435.59229999999997,172.23456790123458,543.810008,13954.940654139562,1988.0,328.9580000000001,121.0,130.62962962962962,8909.521198750983,8041.693324999999,89.64018426758399,339.0521,136.83333333333334,426.9845120000001,10081.542277702541,1993.529411764706,4.194776470588235,0.7902316207111195,24.117647058823525,136.81061889776484,44.26939136603043,10712.160796941176,13.993415594356938,4.167673529411763,56.86084886629549,3.1078042352941164,1860.436863146569,-10.442906574394463,-0.2929162629757776,-0.3687460035775638,10.40484429065744,44.14105211196074,2.758825849212168,-47.139069349481,0.508357306107711,-0.2734572664359866,-5.754573858107755,-0.2314048373702421,83.63477059869182,101.75778546712803,0.362711418685121,-0.0672052716032963,3.9134948096885838,51.37942671622026,-3.3502163070060913,498.9965634844288,0.9173122234186042,0.4940106401384071,-0.21852439232773563,0.0047128269896196204,239.74842493347245,17.671280276816617,0.25899238754325404,0.09915279824805026,-2.961937716262975,-6.08067647296149,0.4455297942835448,-28.613702989619526,-0.9252611411519887,0.6614458477508633,0.9444402912460064,0.15845454671280185,341.01118845810424,533.3494809688582,-1.4850795847750822,-0.09987553297880189,-14.307958477508649,-67.45734546541928,1.6203660178494677,3037.4183199480976,3.2591311001390064,-1.6094498269896198,-11.316029625357773,-0.8669946747404859,-201.91035719346823,-138.0726643598616,-0.5845536332179913,0.025020373337121427,-11.525951557093427,-85.64815052140439,-16.129054218140222,-759.368195384083,-5.552845019889441,-0.4058566608996536,-13.574460024871728,-0.037027581314879286,-721.5578475479022,46.49826989619372,-0.7406809688581307,0.05238605961518228,-3.065743944636679,-65.68683459827892,-9.111805401868606,302.58139276816564,0.5808814547827665,-0.9428425605536311,0.4362395042742305,-0.19629730795847694,-580.9460554662878,506.878892733564,1.2824968858131445,-0.1818892985679541,-1.3667820069204166,3.6562670577792895,-3.888528338576736,2477.8916277716257,2.8376017790965933,1.814406055363323,-4.683338791822702,1.1668084429065757,482.37502770234147,-473.8131487889273,1.9761564013840782,0.27125921344798737,-2.840830449826991,55.289812560221364,2.7188088679974314,-2613.132473961938,-0.32433733118590424,1.6945847750865055,19.799431367802512,0.8506232595155718,329.6684035453772,0.7205912123726826,0.6755836634999932,0.43850315856054795,0.3476104677049335,0.2741159214020903,0.18789280441259829,0.17615029807904098,0.09601285508279027,0.1072978477073873,0.055714287771491844,0.06986381792035498,0.026124357876288428,0.04454978579500911,0.01600678375056336,0.027901445090684613,0.007797046373645484,35.00142632769426,5.6740630130937095,3.546733573119552,2.172859117236528,0.42645712569498395,-0.5350693907414275,3.2837343210733647,0.9779234549832228,6.023613281243927,0.25507897540093893,13.63843243795084,10.934231703607612,79.90518204756057,11.685458280161429,3.060311027175861,0.7510128016734885,3.4924823449812723,2.222853020836397,7.008270258076631,1.0427228036346596,3.705447494064339,2.4189188810650015,26.52493535750555,14.70172528947098,0.28936663860691164,0.644269064292359,0.7903703295412047,0.884701281635582,0.895475943454031,0.895475943454031,1.7301666613072209,857.7365897543922,0.0,0.0,1.0,0.0,12.0,1.0,3.0,0.0,0.0,3.5076854650609737,1.570119940742769,0.7724900737203058,0.2574966912401022,0.19867316182833772,0.19867316182833772,-39.80565025810722,885.4968023955789,52.2106048904433,26.044023599869973,58.27266795189425,,10.0,367.0,0.0,9.901064578912528,11.532756779648844,37.836431198501515,5.386224214464796,0.0,12.13273413692322,31.18920547353706,31.859887795898697,4.417150937053347,12.166666666666668,30.0,17.0,1.5,13.0,0.05303030303030309,0.0,4.0,0.18845667299177715,0.09636437908496709,-0.09209229390681006,0.02220026350461135,0.03175700934579406,0.0,0.6303921568627452,0.8106060606060604,0.44193548387096804,0.5340277777777781,0.7884057971014491,18.291942933250162,0.3901377569199447,0.6481377569199447,19.937522132604244,5.59010404240432,4.933971763048831,38.229465065854406,10.524075805453151,0.6822429906542059,0.31506849315068486,0.0,0.3698630136986301,0.11764705882352941,0.5373280510647825,-0.8923743918528227,-0.06270061340573464,-0.026246305642730082,-0.0743645326544019,0.46267194893521724,0.7683883211387499,0.03522116969975408,0.02259965650408088,0.03492674186994316,-6.665809334930984,0.4648790203599881,0.7424630820030138,1.2992381175630503,0.6461382113821139,0.47567247854214373,0.8591677268082273,0.4637599517894243,0.5866624776712893,0.7026971952895148,0.7263688181148844,0.7571580249307349,0.6819841954876757,0.546547904236538,0.6687154569677028,0.8400960779173096,1.0088259611409676,0.6541466700780352,0.979399254031256,0.5478890390279662,0.6749692421381269,0.6347352960486801,0.608788006546146,0.7167393082004452,0.7394819607228709,0.8803583533371081,1.0109426349918722,1.0252526840951666,1.1186717205009888,1.0301207638153393,0.956822917291275,0.8857043218152861,0.9371562105865775,0.9371804520191017,0.9115136615975652,1.0194802897108206,0.8204224980834774,0.7758329644929675,1.4304476949857334,1.3023053968309488,1.3492886178861792,1.3319178658255357,0.948756807033874,0.7689201441814764,0.8077513241859653,1.3715225756034954,1.4018024915510876,1.4007969277987684,0.9174904261631783,0.7876527659724393,1.0645948228098558,0.7922671766626815,1.2661812886785586,1.3069099009034466,1.1430830635582079,0.7870701727844481,1.0348525487086422,1.009101049221788,1.4210362774064704,0.9951875761847666,1.0729584711679396,0.5377540783206172,1.0693626166516816,0.7184012265569256,0.8991637630662023,1.1680951392337573,1.0855263260634809,0.5296393922522217,0.7406808580304416,1.0546043008296246,1.1227468080337977,0.9761604101989878,1.0506302454387957,0.8522782039933117,0.5878779677432623,0.6718579545956703,0.8456808943089432,0.8911046598611774,1.0351608399517542,0.859912751395777,0.9176845898123931,0.596105452870565,0.6286891632779957,0.5315715560755032,0.981146700676925,1.8429132592842388,0.4780000997639321,0.47530880480088045,1.0140026132404183,0.7226531344678476,0.9417531069589786,1.8525528039887547,1.408356230546015,0.648858919436241,0.4030040259861896,0.6281127153937732,1.144274046514249,4.5,0.012345679012345678,3.1111111111111125,2.4166666666666665,1.791666666666667,0.6497222222222223,0.5029024943310658,0.4731079931972789,0.19980631141345423,0.061250000000000006,6022.896488835717,6397.025657921787,2422.351805805196,2296.542434340415,10.871743097752374,0.4111468527543001,6.401860139158201,0.698216277992904,1.0,0.11764705882352941,1.5797773761893654,3.51734290050757,4.314972767530033,4.829966150010237,4.888789679422001,4.888789679422001,0.1875,0.012345679012345678,0.08888888888888893,0.06359649122807016,0.052696078431372556,0.021657407407407406,0.019342403628117913,0.021504908781694487,0.01332042076089695,0.010208333333333333,0.4910606114721274,16.84375,6.857142857142857,3.1653477717617657,143.75016852808537,0.0,4.03085779263832,92.63485205272644,,68.15326562006616,71.01678700563058,71.79938830348233,68.07616139361423,76.59075152789015,70.93907820954001,70.9573806604095,74.2184278299605,-0.00494737877446641,-0.0659494347778935,-0.44070637691836034,0.40745257452574535,0.3047188279312369,0.05885686850615934,-0.0041560459189626175,0.034310081788736804,-0.061968672511372086,-0.09558202909025945,-0.07032264471163263,0.04245690677227631,0.02941520672564778,0.049828671693666005,-0.04900900012966869,0.0935097147581646,0.21641948140387987,-0.04361101579437467,0.026844009077151267,0.037776381310303524,0.06830767710038453,-0.002214692769167882,0.0008738859320528351,0.07426218648991124,0.004072795132104665,0.028367781506138615,0.057649795190359655,-0.056427158866183255,-0.020421107278978792,0.004624027395408871,-0.0012272814755075504,-0.030380001287460625,0.07292019145084283,0.0076314728738571406,0.0234260059094963,0.08421721769885443,0.12633848070555065,-0.167181156520839,-0.05968306619575268,-0.2801490514905149,-0.23283907227038259,0.017284467171360174,0.1338979554222104,0.10998273582625795,-0.18236024690817862,-0.0939782075533951,-0.13173743291524886,-0.051249552969146156,-0.03514707371962847,-0.07071632046076598,0.01606732195953295,-0.24251911175828184,-0.3176890866605883,-0.1848883152164921,-0.03597323003527932,-0.20137053980020003,-0.04941776510272534,-0.12114718809629288,-0.006046106661977219,-0.19681596891763564,0.011329089912742892,-0.08576364682446187,0.03219898680399162,-0.06174216027874568,-0.23320583010867973,-0.09997277838638216,0.013719744115565329,0.020162512789819873,-0.10988195155127031,0.003726426239558118,-0.030679025930880618,-0.15167071990397854,0.12006819448542667,0.14437563804844072,-0.10869239665568844,-0.02676151761517618,0.012620150167968068,-0.04147898664416279,0.10923244274173696,0.09575779471933156,0.20558300774534427,-0.03889454160092526,0.17729330231279808,0.12243802089625659,-0.1443029970914302,0.28602459561551474,0.2084111665019554,-0.07151567944250876,0.24536702661794815,0.03728773613562589,-0.14810688024652008,-0.014072267961062323,0.2468655557485623,0.21141230864699723,0.16617836808037512,0.10758538513354325,5.898551480838859,18.62972107433314,13.415716594466002,30.69647102052807,49.38072674270952,57.3899753415774,63.19726514170568,63.25655925935274,63.25655925935274,44.62725558356853,35.4954774532358,0.0,5.615122615863716,3.5166555144690066,9.131778130332723,6092.178868727361,4516.341656589009,2157.2112354601186,85.0,35.0,49.0,65.0,81.0,85.0,90.0,96.0,91.0,421.91531844400026,24.0,4.77912349311153,5.659482215759621,6.5638555265321274,7.4645098346365275,8.374476889214643,9.281078386481525,10.193205052099978,11.102472940351017,12.015656415085749,1.0196078431372546,0.9985882352941178,1.0946531202021053,1.0384794330687068,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7907276505811905,0.9918108419838523,1.0195150164945805,0.7344959591001066,6.0,0.0,0.0,1.0,0.0,2.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.523678331894054,17.09277939380059,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,0.0,25.122838405075452,50.05898900128353,17.3704973290878,14.508890523361824,286.49623894688665,-475.80227105531344,-33.431141152613975,-13.994184442803338,-39.65018925460946,246.69058868877943,409.69453134026554,18.779463737829325,12.049839157066636,18.62247869728479,0.5,0.8602069446708341,0.3044268622153388,68.50540389140711,0.17655520898325566,123.48121565848987,0.1397930553291658,5.0,0.125,0.3105236196282675,0.6913746616462986,0.8481580902258832,0.9493860300752943,0.9609484790301662,0.9609484790301662,5.456800000000003,,2.407142857142857,1.0323253388946823,0.613106530954242,2.4471609743805827,-2.3419647602305704,1.0531898177247017,1.0393644876403494,-0.7488757209093144,92.53130000000002,14.318215515965875,0.0,0.0,0.0,13.344558822616634,0.0,62.23079184470292,0.0,5.749511833283905,3.8918202981106265,0.0,5.241747015059643,2.3978952727983707,6.796823718274855,4.844187086458591,8.443546651247939,7.050122520269059,10.136937806838977,34.66666666666666,10.73702888870322,0.0,0.0,5.78151203073822,0.0,1.5178515001679687,2.7531270996052757,0.0,33.952000000000005,0.0,12.933560090702946,0.0,0.0,0.0,0.0,0.0,-0.12203703703703672,37.218206086871575,0.0,0.0,5.749511833283905,10.889772341205646,6.4208216229260096,0.0,28.605424786030877,49.76079237948784,0.0,10.969244356107037,0.0,35.308300724336036,26.88474011976048,28.37372152184388,185.26970410545294,,136.87940877162248,141.93972625317983,143.5430396496052,136.88848031080616,154.24603249224867,141.78241189019593,141.82027364012444,148.7772537148798,28.37372152184388,185.26970410545294,,135.1287594209732,141.0012486723665,142.98567007601048,135.10872687489305,155.5234678160108,140.82496660135538,140.87539683317863,149.18573138083036,4.899957948582081,134.8319309679622,,102.5787891064848,105.81153569733968,106.53862936132738,102.49260691384966,111.03587488811112,105.68850391331152,105.69539949935847,108.52410683506776,1.2897146146292673,8.421350186611498,,6.221791307801022,6.451805738780902,6.524683620436599,6.222203650491189,7.011183295102213,6.444655085917997,6.446376074551111,6.762602441585446,2.4993876069085252,92.63485205272644,,68.15326562006616,71.01678700563058,71.79938830348233,68.07616139361423,76.59075152789015,70.93907820954001,70.9573806604095,74.2184278299605,33.72156862745098,6.5163057445200305,1.9555041152263375,0.0,0.0,0.0,9.792052140313324,34.66351056081574,0.6350954270597128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.972862609403624,458.65101193921106,53.712430790438425,119.58965861725738,146.70907409602114,164.21884910034805,166.21884910034805,166.21884910034805,723.0,121.43386075327273,74.53581569645507,70.80308036905805,50.44,50.44,1.0,8.833630117422606,5.584962500721156,4.079534199054992,4.624896701751186,,4.627461463723278,4.621642245986955,4.620654372144949,4.627457750553865,4.610040614826173,4.622287175440617,4.622366516099797,4.617889045745666,0.1854333726843178,0.21022257735232663,,0.21033915744196718,0.21007464754486158,0.21002974418840675,0.21033898866153933,0.20954730067391694,0.21010396252002803,0.21010756891362714,0.2099040475338939,2.1944401753645177,2.319911396322734,,2.320465798128612,2.319207466794721,2.318993694420476,2.3204649957079044,2.3166940274915393,2.319347002575514,2.3193641672334517,2.318395044534496,236.01999999999978,146.63396057469083,122.10150535019011,,120.80475893567386,121.99841856477272,122.1902804470406,120.77460457756251,123.16240810705852,121.93499760935167,121.93081164989303,122.60612392624707,6.665180026122311,5.550068425008641,,5.491125406166994,5.545382662035124,5.554103656683664,5.489754753525569,5.598291277593569,5.542499891334167,5.542309620449683,5.57300563301123,5.776396777659491,5.593310070235316,,5.582633040251879,5.592465442429682,5.594036865861854,5.582383396757257,5.601961235901216,5.591945456624991,5.5919111266016746,5.5974343330776835,6.718685962039135,12.933560090702946,10.601931675460715,1.7777801660787778,0.6241079302091214,10.73702888870322,0.6350954270597128,1.9555041152263375,0.0,276.66507879564745,152.75602077364027,-253.69150348582795,-17.82504409540241,-7.4615148084067044,-21.140958623819,131.53217239054524,218.4437274649972,10.012962695072247,6.42481551367639,9.92926033931805,988.0,38.0,1.6034985748498476,1.0229759109889371,0.0,0.0,0.6014984602129889,0.2096359799826134,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.02551551815399144,0.350916476718207,0.1088738486497221,0.7255289811096811,0.2265251940931041,15.853006672199017,14.86284059699985,10.524075805453151,8.342651224918404,9.59405724907316,6.57624815444094,8.631364605873008,4.704629899056723,6.974360100980174,3.62142870514697,5.658969251548753,2.1160729879793627,3.786731792575774,1.3605766187978856,2.511130058161615,0.7017341736280935,4.426948389210023,2.059760924514041,6.981497259180011,3.2540067563973953,11.047662722804882,3.86194499390245,81.61131974498092,56.077416654039254,40.981308805813505,31.964771673120104,31.783156211870082,31.783156211870082,118.0,143.0,44.89751599999998,17.402483999999998,0.47058823529411764,114.05,8.0,4.861111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,34.0,0.0,0.0,36.0,16.0,1.0,8.0,28.0,17.0,24.0,19.0,0.0,2.0,0.0,17.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,1.0,1.0,22.0,5.0,0.0,0.0,3.0,0.0,3.0,3.0,0.0,0.0,2.0,1.0,3.0,3.5263605246161616,7.547312121072904,4.21582445975981,4.893164709621917,5.528188238611673,6.0681361945219345,6.3740394537648,6.726224034808876,7.093472755815311,7.250865590999781 +80274,CN1Cc2cc(C(=O)N3CCC(C4CCNCC4)CC3)ccc2N[C@@H](CC(=O)O)C1=O,0,20.825396825396826,6.116342857142856,3.111111111111111,6.444444444444445,165.40318173485667,81.89277826984132,1.3616687135740948,6.170449206349204,4.698412698412699,7.660890857142855,199.5934660756907,23.151515151515152,6.325121212121212,3.878787878787879,5.803030303030303,148.588850287013,86.84530003030308,1.7242402663030312,6.458969696969698,2.8417508417508417,7.743837696969693,249.6161774209422,18.669354838709676,6.19065322580645,3.435483870967742,4.306451612903226,157.03757428740363,68.18939796774197,1.4697678641373955,6.287304838709674,2.7914426523297493,7.673631612903223,204.56899374556278,15.21311475409836,6.00717431693989,2.939890710382514,3.1366120218579234,159.42927631649678,53.88477738797811,1.2958306970274152,6.092695081967214,2.566636308439588,7.55743025136612,173.72616502163046,13.014354066985646,5.970397129186603,2.521531100478469,2.688995215311005,162.97835849334567,44.72018683732058,1.1585109762605263,6.03620909090909,2.690723019670389,7.568000363636362,151.5452962594682,12.655,5.870985000000002,2.395,2.815,162.73124153446824,43.684265104999994,1.1369890920934749,5.9392345,2.806111111111112,7.473874940000001,146.0993152852156,11.89247311827957,5.842998924731182,2.3010752688172045,2.5268817204301075,166.48453721429,41.025839413978474,1.0477904385824517,5.897969892473118,2.5773596176821973,7.46673077419355,134.47776282203853,12.79861111111111,6.060388194444445,2.4444444444444446,2.6180555555555554,166.22729310282472,43.868405305555555,1.0627315622854931,6.108490277777777,2.9444444444444433,7.672666555555556,140.93179690864025,14.226086956521739,6.186321739130435,2.617391304347826,2.9130434782608696,166.30360638355324,49.62472801739132,1.1422545251558525,6.232832173913042,3.232367149758453,7.770126539130432,155.0055575468874,7.497102544721592,0.12705779793398833,0.021479901255887297,0.5915847820609729,3.7193247669438145,1.4226864603046117,35.62406270194004,0.21862344370728345,0.1196301335348954,1.92063492063492,0.07707426958931714,49.054943424617086,0.3037632561442086,-0.005161597837788058,-0.011837492729532871,0.16935797888178858,0.9995304519114052,-0.244355126729852,1.477912379349049,-0.0024839856323166025,-0.0029765260312876957,-0.037037037037037014,-0.004742358093405787,0.9817409366281409,0.023762790659872204,0.00875751184583765,0.0008279688516045368,-0.0613748486252326,0.14882679475613433,0.06467821767310172,0.06980862256073345,0.0042961960764097305,0.007177674964848685,0.23767921146953405,0.007609871219694528,0.19459601295768747,-0.2659463299588202,-0.0022724826421157245,0.0006059038454632202,-0.039758951546617405,-0.1280332412260593,-0.0786439555296891,-1.2925230951224447,-0.014827777107613125,-0.0021873457822715924,-0.004705525197328486,-0.0015033055855007344,-2.7858661274769037,-0.470596886636987,-0.008793531206563789,-0.0016225389274936257,-0.03982659872384183,-0.10696052300062328,-0.026625030425826292,-2.2082214055171594,-0.004704361010907506,-0.00856453013244993,-0.11629452418926099,-0.005131188249604283,-1.9109486320455635,0.26345301083396333,0.017410583018392437,0.0008148515852373461,0.01770093222474174,0.5217069790879313,-0.11548549254463221,1.135979325123456,-0.013985664506798914,0.015423279163517177,0.26444444444444437,0.011465685648778081,-2.0545365187159192,0.9410268288916523,0.013659372231568724,0.0023428187345815054,0.007493558952852333,0.3439966189582165,0.0696577041896585,4.42059541377937,0.0035315319308773267,0.014062322515625012,0.06690561529271208,0.0060206298815823145,3.440541810027417,-0.265290375409423,-0.0162033777399848,-0.0024424205946437898,0.0036533131771226985,-0.43460254472159243,-0.058003947323388205,-1.1879756674382709,-0.00313903377410256,-0.013830133534895398,-0.2210648148148148,-0.011409587490551818,-0.3433763566582515,-0.3821266993109644,-0.014083194759385066,-0.0006247476014818172,-0.02526318095676273,-0.6061432624579624,0.1951705382429032,-1.694610913258185,0.026353732570377413,-0.013416110070437066,-0.0526570048309179,-0.006729514861919084,2.9899789495903226,,,0.46559139784946246,1.0,0.3387096774193548,0.0,0.6612903225806451,-0.3225806451612903,1.0922693678592537,0.015983534483972852,0.027080308677521238,0.8219940315960937,0.18543654169714233,0.29581261937930725,1.9142633994553475,0.4812491610764496,2.047577504638545,1.5506153052781597,0.27195939559283033,0.22500280376755488,0.0,0.4969621993603852,6.797497706412711,1312.0,385.3295999999999,196.0,406.0,10420.40044929597,5159.245031000003,85.78512895516798,388.73829999999987,296.0,482.6361239999998,12574.388362768515,1528.0,417.458,256.0,383.0,9806.864118942858,5731.789802000003,113.79985757600005,426.29200000000003,187.55555555555554,511.09328799999975,16474.667709782185,2315.0,767.6409999999998,426.0,534.0,19472.65921163805,8455.485348000004,182.25121515303704,779.6257999999996,346.1388888888889,951.5303199999996,25366.555224449785,2784.0,1099.3129,538.0,574.0,29175.557565918913,9860.914261999995,237.13701755601696,1114.9632000000001,469.69444444444457,1383.009736,31791.888198958375,2720.0,1247.813,527.0,562.0,34062.476925109244,9346.519049000002,242.12879403845002,1261.5676999999998,562.3611111111113,1581.7120759999998,31672.96691822885,2531.0,1174.1970000000003,479.0,563.0,32546.248306893645,8736.853020999999,227.39781841869495,1187.8469,561.2222222222224,1494.7749880000001,29219.86305704312,2212.0,1086.7977999999998,428.0,470.0,30966.12392185794,7630.806130999997,194.889021576336,1097.0224,479.38888888888874,1388.8119240000003,25012.86388489917,1843.0,872.6959,352.0,377.0,23936.73020680676,6317.050364,153.03334496911103,879.6225999999999,423.99999999999983,1104.863984,20294.178754844197,1636.0,711.427,301.0,335.0,19124.914734108625,5706.843722000001,131.35927039292304,716.7756999999999,371.7222222222221,893.5645519999997,17825.63911789205,472.3174603174603,8.004641269841265,1.3532337791208997,37.269841269841294,234.3174603174603,89.62924699919053,2244.3159502222225,13.773276953558858,7.536698412698411,120.99999999999996,4.85567898412698,3090.4614357508763,20.04837490551777,-0.3406654572940118,-0.7812745201491695,11.177626606198046,65.96900982615274,-16.12743836417023,97.54221703703723,-0.16394305173289575,-0.19645071806498793,-2.444444444444443,-0.31299563416478193,64.7949018174573,2.9465860418241534,1.0859314688838686,0.10266813759896257,-7.610481229528842,18.454522549760657,8.020098991464614,8.656269197530948,0.5327283134748065,0.8900316956412369,29.47222222222222,0.9436240312421215,24.129905606753248,-48.6681783824641,-0.4158643235071776,0.1108804037197693,-7.2758881330309855,-23.430083144368854,-14.391843861933106,-236.53172640740738,-2.713483210693202,-0.40028427815570145,-0.8611111111111129,-0.2751049221466344,-509.8135013282734,-98.35474930713029,-1.8378480221718319,-0.3391106358461678,-8.323759133282943,-22.354749307130266,-5.564631358997695,-461.5182737530863,-0.9832114512796687,-1.7899867976820354,-24.305555555555546,-1.072418344167295,-399.3882640975228,52.690602166792665,3.482116603678487,0.16297031704746923,3.540186444948348,104.34139581758626,-23.097098508926443,227.19586502469122,-2.7971329013597828,3.0846558327034352,52.88888888888888,2.2931371297556162,-410.90730374318383,175.03099017384733,2.5406432350717827,0.43576428463216,1.3938019652305338,63.98337112622826,12.95633297927648,822.2307469629628,0.6568649391431828,2.615591987906252,12.444444444444446,1.1198371579743105,639.9407766650996,-38.20181405895691,-2.3332863945578115,-0.3517085656287057,0.5260770975056686,-62.58276643990931,-8.352568414567902,-171.06849611111102,-0.45202086347076864,-1.9915392290249374,-31.833333333333332,-1.6429805986394619,-49.446195358788216,-43.944570420760904,-1.6195673973292826,-0.07184597417040897,-2.9052658100277142,-69.70647518266567,22.444611897933868,-194.88025502469128,3.0306792455934026,-1.5428526581002626,-6.055555555555558,-0.7738942091206946,343.8475792028871,0.7083049896414226,0.5839211317707966,0.43878599980499833,0.33186065327718106,0.28589150260259283,0.18912651934220182,0.1824741719815192,0.11142557389212027,0.1156110324907734,0.06540539402362534,0.07402007106436469,0.0365259558921209,0.046338385136330706,0.019162448648252096,0.030033656532151377,0.011275349635613855,8.029550805642657,5.687940146173218,3.555612840446964,2.1868300921618355,0.4401978934524535,-0.41053337000237494,3.1900665755045274,0.9725521456247823,6.024516602517103,0.9969602719237827,14.546132127395333,10.949244164137605,16.015090462355612,11.699776961728926,1.9909725767698578,0.7414581249676416,3.5016815009794784,2.2365095140382056,7.01046059189131,1.1679122880527184,3.7145717050921596,2.432372405672524,20.896576580099158,14.700468926083442,0.24832878887125695,0.56107429967693,0.7693717562908259,0.8124761044328638,0.8382025368762166,0.8433478233648872,1.2963518058359818,843.9782679802693,0.0,3.0,5.0,0.0,4.0,6.0,2.0,2.0,0.0,4.445109920465259,2.51549357425649,1.2303138889575687,0.9643632936851354,0.8056331349549763,0.7738871032089438,283.2078763942553,2083.0830341820874,80.71576661309544,33.064810066382336,64.95673697050513,,17.0,870.0,12.011146117099809,14.383611552215466,18.23518108162902,23.713500218454527,50.50202640736071,17.741552976702497,19.18040611960041,10.966276799312087,10.633577208012662,5.106527394840706,14.433333333333337,31.0,10.5,0.0,20.5,0.0,0.03440860215053751,-10.0,0.12837073526728693,0.023556475730388993,-0.10481425953689794,0.048576850094876556,0.16659165613147864,0.0,0.5708994708994702,0.8505376344086018,0.4425287356321833,0.5473429951690812,0.8019607843137252,33.860350403636865,0.49548956900315844,0.8394895690031584,25.481814979478905,5.748532792611412,9.170191200758525,59.34216538311577,14.918723993369937,0.5474083438685213,0.1270207852193995,0.0,0.3672055427251731,0.6086956521739131,0.29640708503278396,-0.8877332585136837,-0.07018209703457279,-0.014091004103391803,-0.044386662925684196,0.7035929149672162,2.107246630092881,0.0458680525431664,0.033448359207823505,0.04900573558355536,-3.533590694641208,0.8671620085788658,0.7665000052999554,1.6063057175414428,0.9199899334056056,0.5592645736596421,1.518184483801992,0.874184980486928,1.2223067193754966,0.7522619191672415,0.5850724879650501,0.7588885683697634,1.0941197724005025,0.9305182148138191,0.7167810282288608,0.9800082016596124,1.395229982964224,0.8887515241837151,1.176917017767363,0.9371727868982702,1.0656024420230235,0.7301074951770382,0.42160238751147855,0.6263047886693801,1.0394926277366963,0.9769755762166165,0.8253747035726386,0.8792474442125341,1.1999329739994966,0.9557348175754763,1.1447561158901105,0.9819939292061692,1.1229855307953958,0.835628327373885,0.7257397622524302,0.7956023289071068,1.0880445440212256,1.0404059878398535,1.033908362817032,0.9061095730020207,1.0625983225059699,1.0248436273400798,1.0044564137753422,1.0400949663168348,1.0225642704990692,1.0376223727854086,1.0989560678555899,1.0382476711515136,1.033615794007658,0.9172326589595377,0.6937863063175254,0.7050108865233807,0.8359305792163537,0.7660120579867228,1.0527308513790936,0.9234209496638809,1.075300619669356,0.7166460967709323,0.6808471074380168,0.664309055550128,1.0527240463440288,0.8472408925930905,0.7858399214424013,0.740057061065362,0.9033219761499142,0.8855507383823331,0.87686272813833,0.8498637679086468,0.9383406726897391,0.7883381211932299,0.8035277012549742,0.7878256942379918,0.9070547898165692,1.0624474895819331,1.3136809121057544,1.2527256557555997,1.0281622657580913,1.2439794743259722,0.9760665243862906,1.0561784046208496,0.9547893832435569,1.2859084490282466,1.378301640138762,1.373991657701438,0.9546945816097286,1.0889507121691204,1.354588036968063,1.2695000312821874,1.1283164210058505,1.3425487296996403,0.8563551251744784,1.0805105768153191,0.81567398238904,1.331520187944409,1.3618117938276044,1.3638010515100905,0.8773533587911327,6.5,0.14906438118559331,4.000000000000002,2.25,1.9316666666666669,1.1111111111111107,0.9283446712018141,0.5017715419501134,0.31319286974048877,0.22625771604938275,6034.768936738003,7003.768788466361,2951.2824845861705,2622.6480984476975,16.084180654082086,0.46974638237104666,8.528694978424651,0.8858900095232414,1.0,0.6086956521739131,1.5321700030346577,3.4617863492434267,4.746966034542348,5.012916629814781,5.17164678854494,5.203392820290973,0.19117647058823528,0.005962575247423732,0.08333333333333337,0.041666666666666664,0.03942176870748299,0.024691358024691357,0.02380370951799523,0.015680360685941044,0.01043976232468296,0.008080632716049384,0.444256637812502,24.134948096885815,10.950520833333334,5.925925925925926,182.51611736360172,1.0,4.3649335107750655,198.19183264166665,,172.05856780578887,169.3359946277106,167.58351603351485,172.08356132325952,218.21480319513873,170.92721650505652,172.22014494739656,202.76178718382587,0.04051742047440396,-0.0406240145958591,-0.551096235895796,0.28627845748799763,0.26873976179625847,-0.17175613429084935,0.041486351282122684,-0.011361936259875355,-0.024881072546988844,-0.019283746556473823,-0.061529718266225386,0.020013088754995422,0.003169596589898937,0.06892541810292929,0.03854621311993247,-0.103746496675276,0.04001446608773183,0.04546203220297287,0.001959591839504924,0.019651122512560633,0.059998887845051176,0.12375033324446819,0.0987342632014938,0.003966899141504951,-0.035473214935023444,-0.01788542442154059,0.028207943707243614,-0.06720752925405638,-0.03442378637218733,-0.05527848737159601,-0.036282304630349066,-0.06782336265577331,-0.018284237571577704,-0.0024499841936503697,-0.01950463615822705,-0.05679073163661792,-0.06277050151439043,-0.06920890610061087,-0.07553754126541498,-0.06732187833685184,-0.02875804875961752,-0.018714615741915196,-0.06198679314015756,-0.02151809948253404,-0.0715917459872408,-0.06055004152002847,-0.0665745945689181,-0.038955271347568175,0.03514064390375052,0.13702884279041214,0.03793553683185617,0.029921209540034042,0.1402692724563067,-0.08117424026085522,0.031887977927390974,-0.06397147657011762,0.1289247007236542,0.13768595041322315,0.14876152196928868,-0.041882354260037696,0.12551873517512327,0.10750518625126275,0.10907027488961926,0.012666923119195438,0.09248899746952725,0.04896209117976991,0.1240901536347967,0.016153491459981396,0.11754833084360902,0.03483515506975919,0.0781146537445332,0.07013649532211796,-0.03538572052695255,-0.12752761344410446,-0.11370725430939127,0.006175468483816005,-0.11684985096870346,-0.04077071719018748,-0.033347562780187204,-0.014358175504295117,-0.11560744041852322,-0.1150998622589532,-0.14803367649601756,-0.006999831875984512,-0.050969917649052884,-0.1108408534413752,-0.029085217573362163,-0.0427042441300644,-0.16297131883861624,0.13718450529227305,-0.0475692771887553,0.12054394589842168,-0.11214657773932572,-0.027416457060725857,-0.08731208090296098,0.0609516338385964,16.48620647958549,25.54209136160908,8.251914681791813,14.4521608954059,32.60424202835506,36.972854670679816,37.939536045317595,38.44883763261919,38.48083763261919,63.4749026437949,48.069074463622954,8.43074126337774,6.975086916794202,0.0,15.405828180171941,11095.60401267165,10366.063872729454,1597.328456368501,186.0,48.0,63.0,80.0,104.0,118.0,136.0,150.0,170.0,428.24235550400084,34.0,5.10594547390058,5.958424693029782,6.836259277277067,7.7057128238944275,8.587278798982926,9.463042725531936,10.34666582776446,11.225843212590416,12.110799965022741,0.6084656084656083,0.9789206349206352,1.1372243120196555,0.5663234627517371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6401993726832051,0.9646436352318705,1.002867085168615,0.5961951673402929,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,10.0,2.0,0.0,0.0,3.0,2.0,0.0,0.0,0.0,25.53992406455432,6.041840829147961,0.0,5.907179729351506,5.907179729351506,14.383611552215466,0.0,0.0,0.0,0.0,74.37116409293381,37.932778966795475,6.4208216229260096,206.1585028974696,-617.4405700431595,-48.81339477176184,-9.800643968939038,-30.87202850215798,489.3663792917249,1465.6424641389278,31.90237184133359,23.2641660974433,34.08470846834715,0.47058823529411764,0.7317408713408551,0.16065627592284554,193.08509116359943,0.10199726642195607,52.111838109445486,0.26825912865914503,9.0,0.11764705882352941,0.25633231547528323,0.5791574752310452,0.794168266384758,0.8386618485285083,0.8652174324666313,0.870528549254256,1.7655999999999998,,1.5714285714285716,1.8855281526291292,1.5935350853437966,1.5670630303235251,-6.40190433008388,1.679620563035496,1.555031173324093,-2.873276425205818,116.80070000000008,19.49013894705617,0.0,15.116608065707286,11.835812092322787,44.69070534969059,38.543486210333825,29.32600418877882,0.0,0.0,4.23410650459726,0.0,5.564520407322694,0.0,7.0825485693553,2.70805020110221,8.680162019694377,5.37989735354046,10.319199977095842,38.33333333333332,5.41945053329974,0.0,0.0,0.0,0.0,0.0,2.1691633839786393,0.0,61.67200000000002,0.0,36.76750583947526,0.0,0.0,0.0,0.0,0.0,-1.2493285228267637,71.6451316572383,10.633577208012662,5.687386274683562,0.0,71.95855003867197,16.133830774056218,11.835812092322787,48.02554828209587,18.19910120538483,0.0,0.0,0.0,35.67837815335943,40.33256047904192,40.42481629559834,396.38366528333336,,344.0157531230985,338.5503422778322,335.0642233518462,344.066021805853,437.67847388386747,341.746070393143,344.33996530296577,406.0796923854335,40.42481629559834,396.38366528333336,,342.59727095592825,336.87585956352734,333.7081976798197,342.6513549339792,442.8315107203611,340.2411939406016,342.93488805603636,408.39685079285766,4.828454407179965,303.9401281901342,,263.38449420061005,259.2308490014017,256.16958068753183,263.4214788869103,332.8019696599789,261.64017656915564,263.63294400124937,310.1435177724204,1.3040263321160754,12.786569847849464,,11.097282358809629,10.920978783155878,10.808523333930522,11.098903929221065,14.118660447866693,11.024066786875581,11.107740816224702,13.099344915659143,2.4359596000193693,198.19183264166665,,172.05856780578887,169.3359946277106,167.58351603351485,172.08356132325952,218.21480319513873,170.92721650505652,172.22014494739656,202.76178718382587,60.77254901960784,0.0,1.6607306250177962,0.0,0.0,0.0,9.10849329510983,63.18062636562274,8.480920074734655,6.482922709949447,0.0,0.0,0.6911444454481963,3.468997615813196,0.0,0.0,0.0,37.56029554243845,508.9439833323667,96.52671019118344,218.09254000233588,299.0588601761679,315.81374767833125,325.81374767833125,327.8137476783313,1120.0,142.33997279799433,186.5808988568278,74.96848503270814,101.98000000000002,101.98000000000002,0.8888888888888888,8.137075968965025,6.087462841250339,4.732119890485527,5.47528176855582,,5.464211392768914,5.463686159591514,5.462344001828005,5.464213280537965,5.46474754738805,5.463954676200078,5.46424581993071,5.46696263905157,0.15264902872533959,0.1766219925340587,,0.1762648836377069,0.17624794063198432,0.17620464522025822,0.17626494453348276,0.1762821789480016,0.17625660245806704,0.17626599419131322,0.1763536335177926,2.6857753933990356,2.8316458504458146,,2.8296219212924973,2.8295257942606895,2.8292801134872647,2.8296222667712114,2.8297200376130913,2.8295749387398414,2.829628221753967,2.8301252974774784,329.0900000000012,340.9671646102952,203.1012546661142,,203.64778549537712,203.65522435956797,203.8936601759394,203.6483966173357,204.57738396514145,203.66094799476113,203.64636316888524,203.93664640687481,10.99894079388049,6.551653376326264,,6.569283403076681,6.569523366437676,6.577214844385142,6.569303116688248,6.599270450488434,6.569707999831004,6.569237521576944,6.578601496995962,6.9631882926728865,6.445106757636469,,6.447794071455086,6.447830598875761,6.44900069577762,6.447797072327599,6.452348421094091,6.447858703014915,6.447787087183416,6.449211500273513,0.0,40.23650345528846,15.591416005059276,2.1691633839786393,0.2480041591294191,4.613262296791754,4.3337394034278915,4.147180671306764,1.6607306250177962,409.3674798158836,143.38836844006323,-429.4452797380975,-33.95093064788429,-6.816591741874563,-21.47226398690488,340.36649330422955,1019.3908022017083,22.18889341649942,16.180806384154103,23.70676284190019,2955.0,54.0,2.195517396985796,1.1257747739957369,0.0,0.0,0.5914245647494338,0.2067341040359041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25343678769327627,0.1607747673017279,0.32273437984965275,0.16368682077697796,21.9574546788841,18.101555084894695,14.918723993369943,11.283262211424155,13.722792124924457,9.078072928425687,11.495872834835708,7.019811155203577,9.248882599261872,5.232431521890027,7.698087390693927,3.7986994127805733,5.467929446087023,2.2611689404937474,4.0845772883725875,1.5334475504434844,5.140242968861062,2.4785788036498375,7.5596537772341605,3.4405174720773055,11.492694163278955,4.460162740187185,104.27591511059795,47.53311881866939,33.47361395531715,29.85803600429329,28.09612621645208,27.969863361737797,164.0,193.0,67.35537599999998,39.26662400000002,0.38095238095238093,226.08,9.972222222222221,6.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,1.0,6.0,6.0,63.0,0.0,1.0,66.0,6.0,3.0,6.0,60.0,9.0,34.0,57.0,0.0,0.0,0.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,5.0,3.0,3.0,31.0,8.0,0.0,4.0,4.0,0.0,4.0,4.0,0.0,0.0,0.0,0.0,1.0,3.713572066704308,6.710332774652942,4.182050142641207,4.6076670661866785,5.006459922685775,5.496912044940833,5.754158681981268,6.053925716731718,6.28250036446511,6.550499809428155 +5487,Clc1ccc2nsnc2c1NC1=NCCN1,0,46.75,6.502375000000001,3.9166666666666665,8.91872427983539,164.67416541962467,190.50133108333333,1.9945584682830002,6.670520833333334,3.171659871462684,8.060000416666666,265.7350471866484,37.07692307692308,6.68133076923077,4.538461538461538,8.491452991452991,152.23118832042312,145.40588049999994,2.0148888638461533,6.858226923076925,3.0050648939537834,8.10171376923077,293.0447351677361,31.488372093023255,6.613851162790699,4.116279069767442,7.645994832041343,158.57206775587204,122.19964020930227,1.8323010867371627,6.756532558139537,3.126232175327783,8.049428558139539,257.4262967547533,26.877551020408163,6.405204081632652,3.4285714285714284,5.208616780045352,165.90819849378434,102.47482273469387,1.5572619833457748,6.548744897959183,2.704501553707903,7.977044530612243,208.94268482084337,32.675,6.580645,3.45,5.511111111111111,164.83454481240145,124.775721875,1.736353611613675,6.77163,2.7492541152263374,8.2071597,228.6205733129263,37.68571428571428,6.478351428571427,3.3142857142857145,5.3164021164021165,163.29759062344297,147.85926714285714,1.7459352944070003,6.680077142857144,2.767248024038147,8.124326485714287,226.21578905418625,31.433333333333334,6.51698,3.2,4.303703703703704,160.53350504150464,120.14648100000004,1.6977475318283006,6.695653333333335,2.8204732510288073,8.082613600000004,227.66964180428306,18.266666666666666,6.098000000000001,2.3666666666666667,1.1555555555555557,163.7736970207013,60.11426733333333,1.4837947024949665,6.283900000000001,2.1380658436213986,7.850667333333336,167.77743062365818,7.0,5.562526315789474,1.736842105263158,0.0,168.2846363095561,13.866578526315791,1.0301588623286841,5.64821052631579,1.6101364522417152,7.372193684210527,91.39461595074798,17.40972222222222,0.10147499999999994,0.021850194712064407,0.5555555555555555,3.772548010973937,1.9752288042575545,78.7517663888889,0.3321410627442223,0.10624982638888884,0.48654606502650344,0.06712905555555554,47.32488607443876,0.7922008547008541,-0.020250000000000015,-0.014869316587012857,0.14316239316239313,0.5403278991241953,-0.7319476256522723,3.432401611111118,-0.03920584854829916,-0.013658319978632474,-0.1485165422833319,-0.007977568376068387,-0.05785490529470013,0.61547157622739,0.015258139534883704,0.006240185420255207,0.01614987080103362,0.34755917631671285,0.23999993480877072,2.912178105297158,0.027396951020281637,0.011078565083979334,0.07025425640540153,0.00529562467700258,1.0024778088732953,1.0562641723356012,-0.01118571428571428,-0.0029048760340084135,-0.01984126984126984,-0.31393123092858544,-0.011466518153032184,5.01474269104308,0.04873259858887303,-0.007465132511337877,-0.03946165856158551,-0.007153006235827664,5.9361842535435345,-2.3076388888888886,-0.023287500000000006,-0.0038125887951240686,-0.018055555555555554,-0.20639574759945134,-0.07201602303359754,-10.342904318055554,-0.004882218484013902,-0.023442013888888884,-0.06819774414045965,-0.016102184722222235,-0.5376326715460052,4.502182539682538,0.031911428571428556,0.004926195977207694,-0.08174603174603175,0.10661130707427008,0.06693973938580632,20.521359403968262,0.010507570324092068,0.04156672123015874,0.10845732803930391,0.02997330396825396,3.9539271504448763,-0.7958333333333337,-0.00030000000000001136,0.0019776366636779915,-0.2833333333333333,-1.4138031550068588,-0.4333746095012327,-4.183476772222219,-0.06629715934051111,-0.003981076388888872,-0.029346641666243335,0.00068648888888888,-11.200346814127014,-9.809722222222222,-0.04736999999999993,-0.0032131238469216192,-0.0777777777777778,-1.4196330589849109,0.07845495014841102,-45.70910132777778,-0.10809388143820002,-0.06387496527777775,-0.17430982901911965,-0.034865933333333314,-24.5934659002841,-6.993055555555552,0.0005210526315790276,0.0001068007940047778,0.08040935672514614,0.5295420908237677,-0.3204280574251873,-30.462125217836263,-0.15912364031457307,-0.0019136421783626009,0.018197960007121834,-0.0040081476608186725,-14.855472877215412,,,0.5029761904761906,1.359375,0.65625,0.0625,0.703125,-0.046875,0.6415746903117716,0.004429810592035288,0.02055481059203529,0.7440705439060489,0.2624844456325428,0.22772409142374034,1.3856452342178205,0.49020853705628314,2.0672897522425346,1.1941031789197558,0.6349405898451512,0.0,0.11156682414891567,0.8731865733227788,10.542453914,1122.0,156.05700000000002,94.0,214.04938271604937,3952.179970070992,4572.031946,47.869403238792,160.0925,76.11983691510441,193.44001,6377.641132479562,964.0,173.71460000000002,118.0,220.77777777777777,3958.0108963310013,3780.552892999998,52.38711045999999,178.31390000000005,78.13168724279836,210.64455800000002,7619.1631143611385,1354.0,284.39560000000006,177.0,328.77777777777777,6818.598913502498,5254.584528999998,78.788946729698,290.5309000000001,134.42798353909467,346.12542800000017,11069.330760454393,1317.0,313.85499999999996,168.0,255.22222222222223,8129.501726195433,5021.2663139999995,76.30583718394297,320.88849999999996,132.52057613168725,390.87518199999994,10238.191556221325,1307.0,263.2258,138.0,220.44444444444443,6593.381792496058,4991.028875,69.454144464547,270.8652,109.9701646090535,328.286388,9144.822932517052,1319.0,226.74229999999994,116.0,186.07407407407408,5715.415671820504,5175.07435,61.10773530424501,233.80270000000002,96.85368084133515,284.35142700000006,7917.552616896519,943.0,195.5094,96.0,129.11111111111111,4816.005151245139,3604.394430000001,50.932425954849016,200.86960000000005,84.61419753086422,242.4784080000001,6830.089254128492,548.0,182.94000000000003,71.0,34.66666666666667,4913.210910621039,1803.4280199999998,44.513841074849,188.51700000000002,64.14197530864196,235.52002000000007,5033.322918709745,133.0,105.688,33.0,0.0,3197.408089881566,263.46499200000005,19.573018384245,107.316,30.592592592592588,140.07168000000001,1736.4977030642115,417.8333333333333,2.4353999999999987,0.5244046730895457,13.333333333333332,90.54115226337449,47.40549130218131,1890.0423933333336,7.971385505861335,2.549995833333332,11.677105560636083,1.611097333333333,1135.7972657865303,20.597222222222207,-0.5265000000000004,-0.3866022312623343,3.7222222222222214,14.048525377229078,-19.03063826695908,89.24244188888908,-1.0193520622557781,-0.35511631944444433,-3.861430099366629,-0.20741677777777806,-1.5042275376622034,26.46527777777777,0.6560999999999992,0.2683279730709739,0.6944444444444458,14.945044581618653,10.319997196777141,125.22365852777779,1.1780688938721104,0.47637829861111136,3.020933025432266,0.22771186111111097,43.106545781551695,51.75694444444446,-0.5480999999999997,-0.14233892566641226,-0.9722222222222221,-15.382630315500686,-0.561859389498577,245.7223918611109,2.3878973308547784,-0.36579149305555597,-1.93362126951769,-0.3504973055555555,290.8730284236332,-92.30555555555554,-0.9315000000000002,-0.15250355180496275,-0.7222222222222221,-8.255829903978054,-2.8806409213439017,-413.71617272222215,-0.19528873936055607,-0.9376805555555553,-2.727909765618386,-0.6440873888888894,-21.50530686184021,157.57638888888883,1.1168999999999993,0.1724168592022693,-2.861111111111111,3.7313957475994526,2.342890878503221,718.2475791388891,0.3677649613432224,1.454835243055556,3.796006481375637,1.0490656388888886,138.38745026557066,-23.87500000000001,-0.009000000000000341,0.059329099910339744,-8.5,-42.41409465020576,-13.001238285036981,-125.50430316666659,-1.9889147802153333,-0.11943229166666616,-0.8803992499873,0.0205946666666664,-336.0104044238104,-294.29166666666663,-1.421099999999998,-0.09639371540764857,-2.3333333333333344,-42.58899176954733,2.3536485044523303,-1371.2730398333333,-3.2428164431460007,-1.9162489583333324,-5.2292948705735895,-1.0459779999999994,-737.803977008523,-132.8680555555555,0.009900000000001526,0.002029215086090778,1.5277777777777766,10.061299725651587,-6.088133091078559,-578.780379138889,-3.0233491659768883,-0.036359201388889414,0.34576124013531484,-0.07615480555555477,-282.2539846670928,0.6848636973633505,0.6105745736044683,0.4357409218278072,0.32853760982817676,0.27838045616596097,0.1708837602050441,0.17858115860489152,0.09271102373443948,0.11419314347783592,0.05084682108115127,0.0729979592377271,0.027653738743959513,0.04873582893728264,0.016179331381397783,0.03236252516176151,0.009141109442969293,17.00110322601321,5.693521633509659,3.185012080271473,2.187051483882443,0.4227032323785713,-0.36036623075247504,3.26396185775846,0.9938767221488085,5.043334990259111,0.6562886769418129,14.558665586911681,10.34921310490488,35.45051727849154,11.707862492833256,2.9250294342622687,0.9979701589687757,3.1859335374330082,2.2367703411630915,3.0402874958521973,0.6290411683021176,3.493124298531472,2.432275296078922,24.434128146995352,15.585183378963357,0.386037509535576,0.7740836778471708,0.8581874639230457,0.8918289783533957,0.8918289783533957,0.8918289783533957,1.6464277458333072,564.024728719456,0.0,0.0,2.0,0.0,6.0,0.0,0.0,0.0,0.0,2.6724568953090673,0.75,0.3333333333333339,0.16666666666666696,0.16666666666666696,0.16666666666666696,112.48159688928519,597.5127118753406,40.98778152676789,24.89636299480586,51.00953663018456,,7.0,207.0,0.0,0.0,0.0,5.022633313741326,35.76985509048507,11.728187345198613,0.0,12.13273413692322,24.37306190348123,11.600939890232516,8.04761904761905,21.75,10.5,1.0,11.25,0.0029761904761905766,0.0,-0.75,0.24422799422799396,0.05566893424036279,-0.18855905998763117,0.06494708994708986,0.14535935397039002,0.0,0.6896825396825398,0.8845238095238093,0.4454545454545458,0.634013605442177,0.8195767195767194,10.265195044988346,0.07087696947256461,0.3288769694725646,11.905128702496782,4.199751130120685,3.6435854627798454,22.170323747485128,7.84333659290053,0.56864064602961,0.08875739644970412,0.0,0.3106508875739644,0.2222222222222222,0.36591669074519595,-0.5212578533654041,-0.04654461859107499,-0.021719077223558505,-0.06515723167067551,0.6340833092548042,0.9032681837056383,0.05117407563285962,0.037636174321068264,0.056454261481602395,-3.8823690544973473,0.5430486944248413,1.0090042071749388,1.7390143458932266,0.6634615384615385,0.6445390961105799,1.4747064511376233,0.5376432521320788,0.8740956904924322,0.8433867476153496,1.11946493823815,0.8556022837182037,0.7436571589313367,0.5722210369106039,0.7612110899121676,0.8224806724415891,0.9828488372093025,0.8020885468168396,0.9156165230690653,0.574952928222482,0.6365474304916389,0.7298762496077951,0.7455043016202293,0.7456319963268715,0.7861046210018477,0.7903014416775886,1.130450849963045,1.2581221489286447,1.1265306122448981,1.0857478641298577,0.918346506763691,0.7998143397527308,0.6774872468338196,1.0842782823007817,1.004668280687313,1.0983950947904237,0.8259123535150701,1.259862385321101,1.2767507390983002,1.3505042605229045,1.0134375000000002,1.0253641797150197,1.0287262723269168,1.2558854508290762,1.0338362409249828,1.2833457244211188,1.1398043343922653,1.3652360983983591,0.9275979111473214,0.9153342070773265,0.6825203252032519,0.8452794199139811,1.1582142857142859,0.9800020128497735,0.9419140465197141,0.9068863147213266,1.0611311855645167,0.6399551073029299,0.8134967528428345,0.6315365002333222,0.8959022637477824,0.9605504587155964,0.9394924858339492,0.85514372685522,1.3800000000000003,1.2806467740835852,1.186314803773376,0.9717851123226481,1.068687393379459,0.9791852601066344,1.0300594637992793,0.9769086887363728,1.1220979014323473,1.814678899082569,1.352149544222715,0.6390290176944391,0.8912500000000002,1.3100220439515489,0.8199467439579677,1.8325901933296669,1.4525827627126984,1.5933914924697592,1.3321790181912863,1.556114393667918,1.604250152625572,1.7295992274263643,0.9439063290154429,0.28037332535205567,0.6355263157894737,0.9745172876968915,0.9991186312539013,1.6841946665861303,2.0302079803514195,0.9814773519151775,1.0882508788185856,0.7982574326479537,1.6916722391402361,2.5,0.0,1.7777777777777786,0.8472222222222223,0.8394444444444447,0.2913888888888888,0.1797732426303854,0.014739229024943318,0.0,0.0,3430.260454038833,3641.7867842242645,1714.4510314371705,1628.8172987600938,9.13726731488737,0.42904748956953603,5.216945711909169,0.7514591524364435,1.0,0.2222222222222222,1.9125056054120886,3.834962500721156,4.251629167387822,4.418295834054489,4.418295834054489,4.418295834054489,0.1388888888888889,0.0,0.07111111111111115,0.040343915343915335,0.0441812865497076,0.01714052287581699,0.012840945902170386,0.002456538170823886,0.0,0.0,0.32696320884243424,11.11111111111111,4.704,2.204152249134948,100.86221513104599,1.0,3.7329601153278222,53.703802146535494,,37.108031347608616,38.04816158294344,36.962128663623226,37.09158799218302,57.02471164443416,38.54677424949702,39.036226707388906,52.20809965929473,0.045503359823264054,-0.1995565410199559,-0.68051185735214,0.25769230769230766,0.1432262485599758,-0.37056346286292413,0.043585074576757636,-0.11803975161749601,-0.1285491039640965,-0.3052466209448057,-0.11883927622765685,-0.001222504903734969,0.035352176695949006,0.1503635332336409,0.28558946510484595,0.02906976744186052,0.09212849652428559,0.12150487796221737,0.036979209976273464,0.08248588956126658,0.10426901822343008,0.14439384357486193,0.07888722153434674,0.021182889004665903,0.06067093770096792,-0.1102312321824517,-0.13294508686480996,-0.03571428571428571,-0.0832146416733182,-0.005805159447005026,0.06367784395183561,0.1467225948704855,-0.07026018549916943,-0.08110569871618617,-0.10655603861293543,0.1254347288698451,-0.13254886318308734,-0.2294900221729492,-0.17448763479526241,-0.0325,-0.054709906142763005,-0.0364595852786112,-0.13133552163110385,-0.014699231837448649,-0.22063107946254817,-0.14016708600190764,-0.23986907888039896,-0.011360464147770928,0.25860162972249123,0.3144757681343047,0.2254531843822762,-0.14714285714285716,0.028259761509767202,0.03388961280916896,0.2605828458834877,0.0316358665118857,0.39121683905646,0.22291276373470612,0.4465026912742466,0.08354858254123683,-0.045712006382130056,-0.0029563932002957525,0.09050888057240312,-0.51,-0.3747608117628344,-0.21940476392765482,-0.0531223230163948,-0.1996054290690511,-0.037469015472247354,-0.06031626556191498,0.010226404694771053,-0.23666928213011745,-0.5634623055444755,-0.46681448632668104,-0.14705241254200443,-0.14000000000000007,-0.37630616094357205,0.03971942388613582,-0.5804200137182813,-0.32544570233233033,-0.6011771261064153,-0.35825966244249563,-0.519386620961448,-0.5196730080152816,-0.40167530913442345,0.005134788189987957,0.00488786463517456,0.14473684210526305,0.14036722376584382,-0.16222326078604815,-0.3868119613648967,-0.4790845160783755,-0.01801077934337897,0.03740233724042254,-0.0597080895544785,-0.3139040388570357,1.7261087479943642,6.609098837220868,5.085675264759766,26.408898287567556,44.797229823248756,47.05106315658209,48.30231315658209,48.30231315658209,48.30231315658209,33.076636035880554,19.105650862716093,10.15904943752242,0.0,1.7850691863826507,13.970985173164461,2182.213085610182,1519.5223663662302,852.3544231281287,36.0,25.0,34.0,45.0,49.0,52.0,54.0,55.0,42.0,253.01889393599998,18.0,4.465908118654584,5.3230099791384085,6.20050917404269,7.075808863978387,7.95892649305011,8.840290669088972,9.725377116513638,10.609575637228874,11.495789479023493,0.9027777777777777,1.0119999999999998,1.1327717141935236,0.8801237754280801,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7720644710578842,1.0047385620915035,1.029558145180869,0.7181266537756974,2.0,2.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.633577208012662,11.033401435232523,5.959554568743835,0.0,0.0,4.992404732635669,0.0,8.747079962832899,0.0,11.600939890232516,12.13273413692322,6.544756405912575,28.982963339536077,153.482539818757,-218.63987420761237,-19.52298557823387,-9.109994758650515,-27.329984275951546,265.9641367080422,378.8728376677283,21.46479594853402,15.786368236155344,23.679552354233017,0.42857142857142855,0.95144619815321,0.2486818100338465,28.5599284316358,0.13725424350206084,24.784440435873115,0.04855380184679012,4.0,0.05555555555555555,0.417125680986764,0.8364217810108513,0.927298569338156,0.963649284669078,0.963649284669078,0.963649284669078,1.7157999999999993,,1.986344537815126,1.0203563721321476,1.1710083446138864,1.9990443621217322,-1.9328262057461671,1.0105869342918679,0.9824552423819174,-1.3557556363080665,66.3524,0.0,0.0,14.06386856683923,4.992404732635669,0.0,18.406301415831482,17.155367450664546,0.0,0.0,3.6109179126442243,0.0,4.919980925828125,3.044522437723423,6.418364935936212,5.209486152841421,8.014666370464942,7.13966033596492,9.668208158877395,21.666666666666664,3.666038202317964,8.389059744268078,0.0,0.0,1.1747300957420004,1.6290712396069544,1.3867283950617286,0.0,24.287999999999997,0.0,0.0,0.0,0.0,0.0,0.0,4.254279415469892,0.7383333333333335,27.186521140644565,10.633577208012662,5.687386274683562,0.0,27.796147343401884,0.0,0.0,0.0,17.12513886955889,5.022633313741326,11.033401435232523,0.0,21.12297061027392,18.529547305389222,21.291219497636426,107.40760429307099,,74.37075764326202,75.96877861937037,73.77788128416971,74.33513847001058,114.77423311602314,76.96722513220755,77.94964650948009,104.924607682205,21.291219497636426,107.40760429307097,,72.8809992399007,75.07596679375473,72.8175474416294,72.8358551984193,115.98224949461452,76.08296156470216,77.0899981723959,105.77195495489758,4.792857461511397,78.74402156076525,,56.110148773758176,56.25650565405756,54.43840140028497,56.10100195643547,88.85830671506928,57.213155249115985,58.097237546831145,80.07292874517815,1.3307012186022766,6.712975268316937,,4.6481723527038765,4.748048663710648,4.611117580260607,4.645946154375661,7.173389569751446,4.810451570762972,4.871852906842506,6.557787980137812,2.4349100914583,53.703802146535494,,37.108031347608616,38.04816158294344,36.962128663623226,37.09158799218302,57.02471164443416,38.54677424949702,39.036226707388906,52.20809965929473,24.11372549019608,0.0,0.0,6.130140778533635,0.0,0.0,0.0,24.70939548434086,1.635405328798186,6.273991244646006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.235039690616738,399.0809457094223,45.900134529890124,92.03910001730775,102.03910001730773,106.03910001730773,106.03910001730773,106.03910001730773,426.0,105.69519553071916,20.36573081737688,64.02580723028066,90.44,62.2,0.75,8.059515781235977,5.169925001442312,3.611463411190291,3.9513629317191477,,3.9476735310073963,3.9462067860335592,3.9468764850801152,3.9476584441593365,3.9365093377002225,3.946517374481225,3.946348971518152,3.9384761876564185,0.22571646319939317,0.24696018323244673,,0.24672959568796227,0.24663792412709745,0.2466797803175072,0.24672865275995853,0.2460318336062639,0.24665733590507657,0.2466468107198845,0.24615476172852616,1.7541166965084654,1.8440641946489307,,1.8431300551504117,1.8427584394349947,1.8429281320697128,1.8431262334369973,1.840298004967162,1.8428371419061593,1.8427944697118723,1.8407975233448812,162.0799999999998,96.42723441909037,76.71421691003101,,76.33400058085807,76.94200448815465,76.92276286643913,76.32200038726845,77.02409790952183,76.86847083537432,76.84977057456167,77.12915297679557,6.026702151193148,4.794638556876938,,4.77087503630363,4.808875280509666,4.807672679152446,4.770125024204278,4.814006119345114,4.804279427210895,4.803110660910105,4.820572061049723,5.038792305683321,4.810090677809159,,4.80512208532761,4.813055578844956,4.81280546802171,4.804964866567283,4.814121962001616,4.812099419542699,4.811856113859087,4.815484957370622,8.389059744268078,4.254279415469892,6.895843096497858,2.393947782816831,0.7383333333333335,3.666038202317964,0.0,1.635405328798186,0.0,180.8725498733428,64.37774123186973,-91.70776859262044,-8.188851416670827,-3.8211570246925186,-11.463471074077555,111.55777321750755,158.91695258600612,9.003337322938497,6.621539691083587,9.932309536625382,418.0,21.0,0.8786585992700227,0.40251653898877404,0.0,0.0,0.21982198216447035,0.0693250360083629,0.0,0.0,0.0,0.0,0.0,0.0,0.2621886974951644,0.1171389430070742,0.30899234324883185,0.1147581438961978,0.4267665708819283,0.13535747673926188,10.957819157813608,9.769193177671493,7.84333659290053,5.9136769769071815,6.9595114041490245,4.272094005126102,6.071759392566311,3.1521748069709425,5.138691456502617,2.288106948651807,3.5769000026486277,1.355033198454016,2.5342631047386974,0.8413252318326847,1.7475763587351214,0.49361990992034177,2.2748560901451658,0.9216749035357051,3.727052219263517,1.3275763366677367,5.38726980855816,1.6492208485534052,55.68669201001601,30.318045838862194,26.989348962840555,25.266040629026453,25.266040629026453,25.266040629026453,86.0,102.0,30.944343999999994,15.555655999999999,0.625,84.07,4.055555555555555,3.4999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,9.0,10.0,24.0,0.0,3.0,26.0,10.0,1.0,5.0,21.0,11.0,18.0,15.0,0.0,0.0,0.0,9.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,6.0,2.0,2.0,16.0,7.0,0.0,5.0,0.0,0.0,3.0,1.0,1.0,0.0,1.0,1.0,2.0,3.2188758248682006,6.3229999524279075,3.855452653939752,4.478756261132433,5.094899846459348,5.528188238611673,5.866158164729033,6.180873558661313,6.502948157478301,6.2554725920393475 +24988201,CC(C)Oc1ncc(-c2nc(-c3cccc4c3ccn4CCCC(=O)O)no2)cc1Cl,1,29.884615384615383,6.42016346153846,3.5576923076923075,8.915479582146249,162.0706028606948,120.39435973076927,1.5934209038813267,6.518873076923076,4.477665957347027,7.947464019230766,236.78694674407777,28.10909090909091,6.5349090909090926,4.163636363636364,8.802020202020202,146.84830460314816,108.28908281818181,1.8492773488363639,6.685583636363637,3.4114852225963337,7.938946363636362,276.3045725729031,24.903225806451612,6.455278494623655,3.827956989247312,7.348864994026284,154.31434910639777,95.08751800000002,1.6167390423617316,6.574009677419353,3.4804747997699015,7.915445806451612,236.8409961179036,21.28448275862069,6.335475000000001,3.2672413793103448,5.152298850574712,158.75047499834542,79.36913336206895,1.4301112097278708,6.447989655172413,2.9880445579679296,7.890708741379311,203.7342322525676,20.51260504201681,6.312528571428573,3.168067226890756,5.0317460317460325,160.7904894170003,76.39528899159666,1.4078863440347145,6.409615126050421,3.0145243282498186,7.844948722689075,198.71065520307545,21.57894736842105,6.398919298245614,3.1228070175438596,5.053606237816764,161.36324505730767,79.78494728947369,1.4235278216082368,6.515261403508771,3.0890729911197745,7.946382877192983,198.1902547681494,19.4811320754717,6.191076415094338,3.018867924528302,4.9245283018867925,158.3512236606743,70.55759791509433,1.415256643346556,6.332600943396228,2.88148342262598,7.799267698113207,191.7268370672557,18.680851063829788,6.172723404255319,3.0531914893617023,5.033096926713948,159.1993348438689,69.17203919148936,1.3434484345848936,6.263346808510639,3.1364482094387522,7.7222101063829784,189.57250102098638,21.392857142857142,6.448857142857142,3.1785714285714284,4.945767195767196,158.34198092768565,79.2726029047619,1.4294446349517025,6.5491785714285715,3.427456888105035,7.966186999999999,205.2469694529815,10.321005917159763,0.14032022928994078,0.024675713984043533,0.6283284023668638,4.294817006355468,1.5270184822045176,48.50874528698225,0.23840612850913429,0.1354764792899408,1.3352952779739349,0.09550561649408279,48.50908231812064,0.305567509413663,0.004276938542227038,-0.013248312363779147,0.2157275416890802,1.6673430558045943,-0.2520345619668422,1.4369322465841854,-0.011380890030747505,0.0044795346960732445,-0.07526585266673112,-4.085355701993137e-05,-0.6028645626535569,1.1872653814341156,0.02423810404339251,0.0020759093323296177,0.05839616338995994,0.9314591733257299,-0.04160527375143317,5.557623208054972,0.007919433931863085,0.022616035184831747,0.3258900538909632,0.013441835739167756,2.9688405490554404,0.354060395837584,-0.01775235793715567,-0.0005723904360786147,0.05867425015303002,-0.1616056561900947,-0.09464315540357135,1.7291438602326055,0.010949581216559727,-0.011923528361558836,-0.15874517881270622,-0.008711280950316274,2.7976628679215407,0.6030406245338373,-0.01135122476505394,-0.0018805362380453937,-0.029588906568544574,-0.3247395166701351,-0.043936569074313,2.9788462033215652,0.02534498595984184,-0.008894966684898805,-0.1001507620408683,-0.008916109706752521,4.102192521754001,-0.7214782518426244,-0.0029416024343402627,0.0008935836830632415,-0.028294664175230962,-0.4262085193259282,0.1506836041699491,-3.5182263261185502,-0.016640283919701723,-0.003088490086162091,-0.14252056162465643,0.0024134914681303576,-4.984368327827592,-1.722675002791113,0.015581566791336366,0.0019241842598705307,0.03858016076811434,0.5368140925712285,-0.033079061771707205,-8.202499191191247,-0.04129188832617742,0.008700842916154947,0.07427025628101697,0.0077016001242045514,-6.043624436871575,1.4011708422510383,0.0054023566347727306,-0.0005791831515051745,-0.04424493264509631,0.1687066646150115,-0.03788375772968364,6.6585678594989295,0.013782041828098775,0.00840670401611476,0.017654790762843226,-6.587324531029688e-05,5.8353041856290435,-0.6941744153282615,-0.03022380071851222,0.00022365158870219794,-0.08620386024232175,-1.246830527813434,-0.3174442714758193,-3.202760427092138,-0.018370363138159186,-0.026762468300929775,-0.22945841444245482,-0.02045348828895468,-4.74358220397178,,,0.4725038402457758,1.3306451612903225,0.6612903225806451,0.03225806451612903,0.6693548387096774,-0.008064516129032258,0.8301516197577302,0.015983534483972852,0.027080308677521238,1.0287778241776722,0.25794986583756935,0.22329929523888023,1.8589294439354025,0.4812491610764496,2.044884813123029,1.4756193226686032,0.2722998119647604,0.2395234627989765,0.057442215690689344,0.5692654904544262,8.463944862153856,1554.0,333.84849999999994,185.0,463.60493827160496,8427.67134875613,6260.506706000002,82.85788700182898,338.98139999999995,232.83862978204544,413.2681289999999,12312.921230692044,1546.0,359.4200000000001,229.0,484.1111111111111,8076.65675317315,5955.899555,101.71025418600001,367.7071,187.63168724279836,436.6420499999999,15196.75149150967,2316.0,600.3408999999999,356.0,683.4444444444445,14351.234466894992,8843.139174000002,150.35673093964104,611.3828999999998,323.68415637860085,736.1364599999999,22026.212638965033,2469.0,734.9151,379.0,597.6666666666666,18415.05509980807,9206.819469999999,165.892900328433,747.9667999999999,346.61316872427983,915.322214,23633.17094129784,2441.0,751.1909000000002,377.0,598.7777777777778,19134.068240623033,9091.039390000002,167.538474940131,762.7442000000001,358.7283950617284,933.548898,23646.56796916598,2460.0,729.4768,356.0,576.1111111111111,18395.409936533073,9095.483991000001,162.282171663339,742.7398,352.1543209876543,905.887648,22593.689043569033,2065.0,656.2540999999999,320.0,522.0,16785.229708031475,7479.105379,150.01720419473494,671.2557000000002,305.43724279835385,826.7223759999999,20323.044729129106,1756.0,580.236,287.0,473.1111111111111,14964.737475323678,6502.171684,126.28415285098,588.7546000000001,294.8261316872427,725.88775,17819.81509597272,1797.0,541.704,267.0,415.44444444444446,13300.726397925595,6658.898643999999,120.073349335943,550.131,287.90637860082296,669.1597079999999,17240.745434050445,536.6923076923076,7.2966519230769205,1.2831371271702636,32.67307692307692,223.33048433048435,79.40496107463491,2522.454754923077,12.397118682474982,7.044776923076922,69.43535445464461,4.966292057692305,2522.4722805422734,16.806213017751464,0.23523161982248708,-0.7286571800078531,11.86501479289941,91.70386806925269,-13.86190090817632,79.0312735621302,-0.6259489516911128,0.24637440828402843,-4.139621896670212,-0.0022469456360962254,-33.15755094594563,110.41568047337276,2.2541436760355036,0.19305956790665443,5.430843195266275,86.62570311929288,-3.8692904588832846,516.8589583491124,0.7365073556632669,2.1032912721893524,30.307775011859576,1.2500907237426013,276.10217106215595,41.07100591715974,-2.0592735207100574,-0.06639729058511931,6.806213017751483,-18.746256118050987,-10.978606026814276,200.58068778698222,1.2701514211209284,-1.383129289940825,-18.41444074227392,-1.0105085902366877,324.5288926788987,71.76183431952664,-1.350795747041419,-0.22378381232740185,-3.5210798816568043,-38.64400248374608,-5.228451719843247,354.48269819526627,3.0160533292211786,-1.0585010355029578,-11.917940682863328,-1.06101705510355,488.1609100887262,-82.24852071005918,-0.33534267751478997,0.10186853986920953,-3.22559171597633,-48.58777120315581,17.177930875374198,-401.07780117751474,-1.8969923668459963,-0.35208786982247836,-16.247344025210833,0.27513802736686077,-568.2179893723454,-182.60355029585799,1.6516460798816548,0.20396353154627625,4.0894970414201195,56.90229381255022,-3.5063805478009638,-869.4649142662722,-4.376940162574806,0.9222893491124244,7.872647165787798,0.8163696131656825,-640.6241903083869,131.7100591715976,0.5078215236686366,-0.05444321624148641,-4.159023668639053,15.85842647381108,-3.5610732265902616,625.9053787928993,1.2955119318412849,0.7902301775147874,1.6595503317072633,-0.006192085059167907,548.5185934491301,-58.31065088757397,-2.5387992603550265,0.018786733450984628,-7.241124260355027,-104.73376433632845,-26.66531880396882,-269.0318758757396,-1.5431105036053716,-2.248047337278101,-19.274506813166205,-1.718093016272193,-398.4609051336295,0.7083049896414225,0.5753170569353456,0.4387859998049983,0.30182843117625424,0.2887063458591789,0.16151478460247692,0.17388996567807646,0.07845648038359222,0.11123548940291543,0.041498409619131184,0.07146939443113912,0.022402790226150295,0.04474920289029653,0.01106153043273621,0.02899902113973019,0.00582482015878788,17.001103747761512,5.673827113945596,3.570906092891223,2.1727451841723546,0.43971454100052126,-0.5059399227835392,3.27335758456864,0.9727417032999115,6.033628554855639,0.7739980277499958,14.569089994152447,10.935319688336515,35.450517703590826,11.685662056131324,2.207727155664415,0.7154692490459552,3.5167949687039193,2.222382756312215,7.008295046708272,1.2944950546866887,3.7248572995127205,2.4181537504771224,22.455866717786243,14.681693322417013,0.28763508950012656,0.6587657334653921,0.834400438425321,0.87147262062135,0.87147262062135,0.87147262062135,1.2736164195170523,1231.461968394452,0.0,6.0,3.0,0.0,7.0,3.0,3.0,0.0,0.0,3.9681954132379706,1.7331101685930324,0.675373374591608,0.4521110577755163,0.4521110577755163,0.4521110577755163,120.46824935761845,1942.944425571977,79.74025580826647,37.364315876384175,79.94937756123852,,18.0,896.0,5.969305287951849,4.794537184071822,12.524788010674312,41.14677959073811,16.466376423778055,0.0,12.263210640074686,48.87688589263212,15.124620299019863,25.96742517584662,14.647619047619049,41.25,20.5,1.0,20.75,0.0,0.02749615975422423,-0.25,0.1988632057597578,0.06401098901098945,-0.13485221674876835,0.01789554531490012,0.17254603062841012,0.0,0.6413919413919411,0.8726574500768045,0.4425287356321833,0.5773809523809517,0.8547619047619044,25.73470021248964,0.49548956900315844,0.8394895690031584,31.89211254950784,7.99644584096465,6.922278152405287,57.62681276199748,14.918723993369937,0.5414539693715898,0.1625487646293888,0.0,0.36866059817945385,0.2727272727272727,0.4157442757396697,-1.1299090038431694,-0.06738451567917118,-0.02172901930467633,-0.06646523552018643,0.5842557242603303,1.5878890989278098,0.044156459501516386,0.03053632882553481,0.045368259969366005,-6.181181006650641,0.6038503133672979,0.7232868969097306,1.5335149881317778,0.7520787629086629,0.41599656259748874,1.3232652400727973,0.6085367015258523,1.0046040515247865,0.6845187393209331,0.7255392199816418,0.7536828505178013,0.9118447192781363,0.6386190570861865,0.6893382531260364,0.9201737445090805,1.0406121247792819,0.7051214257212136,1.1276983101599858,0.6425919711604352,0.9109960361237285,0.6681816009192666,0.4261659475218266,0.6943891633910897,0.865479945961242,0.8937407639880792,1.117525769035944,1.0892927431214425,0.9419333888088328,1.0336160047965912,1.0651518598337724,0.8926777707215438,0.9273185566545934,1.0671414849589074,0.9771836706070891,1.085006571229571,0.9048628625764736,0.8057290280308771,1.017070187956519,0.9871242203238576,1.0231228453712269,1.061456326780543,1.0731905926912562,0.8053644918843951,0.8297685769434642,0.987099085332801,0.8511794934673647,0.979491629467391,0.870036635786737,1.1157279934823445,0.9519187443866889,0.7889183862816976,0.9926891979802361,1.0741059600870422,0.9692177606953111,1.1162434762384226,1.031571233457925,0.9653239810882369,0.9004945008421359,0.9000360251134528,1.0427622669680718,1.3855045283559733,0.7054357798462817,0.6830698019112192,0.8982642397858897,0.7893964714436974,0.9843167006814528,1.383626651735119,1.2366071107543286,0.8132345700413194,0.5855223758152934,0.8090460517537719,1.1435325675054824,0.6464835828360054,0.8856151561070935,0.8719466801495067,1.104266589858866,0.9406324785582432,0.9943997207084552,0.6504580706171748,0.8994049225359276,0.8422317185136079,1.019233772462002,0.8774527433753915,0.8794713105219935,0.9010549970310614,1.2705176425752696,1.0734610906133943,1.1149415622635164,1.2931233822286776,1.2491615519999426,0.9007756581210588,1.0099352019591374,1.2131951627478041,1.3065144133602915,1.2498171169403125,1.0195095123727023,6.5,0.16926844199571472,3.7777777777777795,1.9444444444444444,1.601666666666667,1.105,0.6285714285714287,0.45666808390022673,0.3401596749811035,0.3068904320987655,6436.332998056219,7022.303660469894,3097.885079376688,2882.895979716765,18.570420802344234,0.45863238772859083,10.053424368640405,0.8471736715174237,1.0,0.2727272727272727,1.7322443049031209,3.9673295495480594,5.025066343549484,5.248328660365575,5.248328660365575,5.248328660365575,0.19117647058823528,0.007052851749821447,0.07870370370370375,0.04137115839243499,0.03407801418439717,0.025697674418604648,0.016988416988416986,0.013047659540006478,0.010004696322973631,0.010229681069958847,0.42835032695855324,24.134948096885815,10.950520833333334,5.925925925925926,182.97817959306008,0.0,4.367369465277424,206.4357910290294,,153.4866888218515,151.66059141257315,151.93768526497055,153.49307134326656,210.4682510145625,153.27528892007172,154.49510258817156,188.10990502707895,0.029606368978591976,0.0304798428841624,-0.5368968197777833,0.3433356519878004,0.3882221415574309,-0.1650501057478927,0.02962212768199137,-0.04773740550176947,0.033065036230284235,-0.05636644861122644,-0.00042776078014702436,-0.01242786987187255,0.11503388244939979,0.1727342106412171,0.08412762984981903,0.09293892042757604,0.2168798279291893,-0.027246083944818207,0.11456951061454086,0.03321824812720643,0.16693698643016772,0.2440584185884649,0.1407439293373973,0.06120174629538241,0.034304834110105605,-0.12651317651765193,-0.023196509590310097,0.09338150230358634,-0.03762806563142289,-0.061979050356310975,0.035646023206801776,0.04592827074132956,-0.08801179676392848,-0.11888395131118329,-0.0912122372494815,0.057672970384691644,0.058428473869123414,-0.08089514122442845,-0.07621000305245215,-0.04709146754640644,-0.07561195650235754,-0.028772781460302235,0.06140843647260786,0.10631012767304249,-0.06565690761613452,-0.07500270815967287,-0.0933569148501851,0.08456545301871483,-0.06990386960665244,-0.02096349506571922,0.0362130831813448,-0.04503164916411096,-0.09923787642063096,0.09867831065961366,-0.07252767115093156,-0.0697980543694965,-0.02279724201831552,-0.10673336749973772,0.025270675764706357,-0.10275123934813488,-0.16690960325165438,0.11104291141899789,0.07797886866069198,0.061401268226592816,0.12499114439028512,-0.02166251565203835,-0.16909320458949204,-0.17319977713825996,0.06422401114760139,0.0556208484416334,0.08064028490598474,-0.12458748234480554,0.1357591356402038,0.03850019816893224,-0.023471788977603703,-0.07041689103728101,0.03928145584907562,-0.024808971319713057,0.1372653079379032,0.05780909204928736,0.062052867480583855,0.013221637980800116,-0.0006897316380799256,0.12029302363135526,-0.06725840687428764,-0.21539161439126078,0.009063631911393588,-0.13719554920261215,-0.2903105128736276,-0.20788502246386245,-0.06602439226461765,-0.07705491152026046,-0.1975432816175708,-0.1718409540027849,-0.21416005717550557,-0.09778750653049992,10.729287714680922,21.147036528362598,10.119306383241664,19.266462712206426,41.775733886318584,47.22775760018227,47.45280601553289,47.45280601553289,47.45280601553289,63.3914292068139,45.744199002726695,8.441294170907572,7.4252273467682715,1.7807086864113697,17.64723020408721,14216.648788293556,13733.155843040171,1434.299896680106,207.0,48.0,63.0,85.0,104.0,120.0,145.0,168.0,183.0,440.12513283200053,34.0,5.10594547390058,5.958424693029782,6.846943139585379,7.72356247227797,8.618485442898109,9.507254695741542,10.406230600108763,11.302093316370168,12.20395540575904,0.7371794871794871,1.0023846153846157,1.1252435086782084,0.705897798812627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6970365384615386,0.9907993966817495,1.0204423216986949,0.6667518945028108,7.0,3.0,0.0,1.0,0.0,2.0,6.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,18.93358493340546,5.022633313741326,0.0,11.704392834435298,5.890723922025908,4.794537184071822,4.9839785209472085,4.9839785209472085,0.0,28.89033728428118,38.46739722769208,41.8256415958428,11.6674178794453,297.2141389709103,-807.7680230118503,-48.17295625279408,-15.534000442535582,-47.51576605952061,417.68238832852876,1135.1764025601267,31.567299555472385,21.830315433848593,32.43361150171791,0.5,0.7722225689812761,0.17706597128522295,191.76291828300606,0.11145375401135739,76.72842366585735,0.22777743101872394,9.0,0.23529411764705882,0.3038790673271086,0.6959690384800353,0.881522582820708,0.9206883889436254,0.9206883889436254,0.9206883889436254,5.0587000000000035,,2.2184873949579833,2.0021359264807197,1.725195997939236,2.228247797601381,-6.16795937595544,1.8726585377190401,1.7648153459859635,-2.7899877954682086,116.10480000000005,19.161022469685925,0.0,19.691719946811215,0.0,39.33784043889415,0.0,47.74815579927552,0.0,28.7220197398552,4.23410650459726,0.0,5.564520407322694,3.044522437723423,7.072421900537371,5.351858133476067,8.67060073804555,7.423568444259167,10.3218359798084,38.33333333333333,12.994564526134148,12.899710874777995,0.0,5.455410317746627,0.0,1.9408803174140385,2.8917869946975054,2.027688241407647,52.12400000000001,0.0,10.780505176592772,0.0,0.0,0.0,0.0,0.0,-0.7964152851659885,58.51266245126684,4.736862953800049,0.0,5.879988336435371,36.87151901735207,11.339293589984397,0.0,26.689117645233267,47.24861742250755,5.022633313741326,33.74495633550088,0.0,36.70668553825661,36.245900000000006,39.723011011837656,412.87158205805883,,306.8302494246734,303.19201276537336,303.7640675623321,306.84238476410724,422.163051455111,306.42976116029064,308.8763461217634,376.75980769199043,39.723011011837656,412.8715820580587,,304.80820334501095,301.3960602145022,302.254187904622,304.8116172354677,427.10446140508026,304.74024229492665,307.27634490333253,379.0097978496261,4.852609282478429,312.5969636909269,,231.60825970615454,228.41446940023843,227.84183856187497,231.62673340868014,310.56460110342357,230.84731183792402,232.7318979038481,280.52414719010073,1.281387451994763,13.318438130905124,,9.897749981441077,9.78038750856043,9.798840889107488,9.898141444003459,13.61816295016487,9.884831005170666,9.963753100702045,12.153542183612595,2.4885426842133413,206.4357910290294,,153.4866888218515,151.66059141257315,151.93768526497055,153.49307134326656,210.4682510145625,153.27528892007172,154.49510258817156,188.10990502707895,51.521568627450975,0.0,3.7981008272237253,6.272381088519076,0.0,0.0,8.859184142562249,53.06300072833213,1.3024299544779199,0.0,5.557309306850723,0.0,-0.0390920387939937,0.0,0.0,0.0,0.0,34.67109851414616,552.0592328669658,90.07670385496229,206.3011365764991,261.30344986457317,272.9130903390099,272.9130903390099,272.9130903390099,1188.0,142.67289523967133,162.83729443247327,82.68343454576991,103.27000000000001,103.27000000000001,1.0,9.467822848054519,6.087462841250339,4.426027915103212,5.461298496864853,,5.444269225297512,5.444957690430674,5.440937243582487,5.444228328443233,5.419015277800755,5.444520017136846,5.444479543330758,5.434155432959997,0.1427750940355875,0.17617091925370493,,0.17562158791282295,0.17564379646550562,0.17551410463169315,0.17562026865945915,0.17480694444518563,0.17562967797215634,0.1756283723655083,0.1752953365470967,2.618904660172643,2.8290886929118533,,2.8259656486390003,2.826092097493342,2.82535344494243,2.825958136701917,2.821316227373697,2.826011712867776,2.8260042789789486,2.8241062258697607,310.0400000000009,541.8882596455566,206.14853979367106,,207.67239427551002,207.94649821499485,208.42925917072648,207.66684810636187,210.70001796026568,207.9435478242724,207.92801333158855,209.12770511799798,17.480266440179243,6.649952896570034,,6.699109492758388,6.707951555322414,6.723524489378273,6.698930584076189,6.796774772911796,6.707856381428142,6.707355268760921,6.7460550038063865,7.426461928660653,6.459999087396373,,6.467363922011049,6.468682937985433,6.47100181060706,6.467337215316459,6.4818375175421785,6.468668749664502,6.4685940415375605,6.474347206126252,13.040407866004998,19.547366915210844,14.319350445057589,2.3988063857087196,0.3101284749014188,9.472195041639289,4.168928914377689,4.41487931302482,0.0,364.03672683096505,212.47735581459668,-577.4705545147052,-34.43867913487029,-11.105202971436638,-33.96885614792384,298.599688930201,811.5336680625046,22.567352828428334,15.606416693509708,23.18667623035728,3058.0,47.0,2.2937804651204377,0.9887102094118856,0.0,0.0,0.4483783381301567,0.12534853442992316,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.05768021414818965,0.46380384601941854,0.1296053633447573,0.7992862566860613,0.1928929435216199,21.957454678884098,17.834828764995713,14.918723993369941,10.262166659992644,13.857904601240588,7.752709660918892,10.955067837718817,4.94275826416631,9.455016599247811,3.5273648176261507,7.432817020838468,2.329890183519631,5.369904346835584,1.327383651928345,4.204858065260877,0.8445989230242427,4.642620294280429,1.6442387915163932,7.424971320288279,2.224589005968898,11.134556865494774,2.8129083985646806,99.3419703995398,43.708877151250874,29.069695838613455,27.993530608024265,27.993530608024265,27.993530608024265,164.0,193.0,60.53065299999999,29.907346999999998,0.38461538461538464,226.09,9.972222222222221,6.749999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,20.0,21.0,52.0,0.0,0.0,55.0,21.0,1.0,10.0,45.0,22.0,34.0,33.0,0.0,0.0,0.0,22.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,7.0,1.0,3.0,31.0,9.0,0.0,4.0,4.0,0.0,4.0,8.0,0.0,0.0,1.0,3.0,4.0,3.8394523125933104,8.426139564622911,4.477336814478207,5.099866427824199,5.751778672924456,6.26387433972511,6.6963588653261805,7.191435212925701,7.652068890414047,7.995943635082155 +10120230,Cc1c(C(=O)N[C@@H](CC(C)C)C(=O)N[C@H]2CC[C@@H](C)N(S(=O)(=O)c3ccccn3)CC2=O)oc2cccnc12,0,26.25,6.320112500000001,3.3194444444444446,7.922839506172839,163.91622176799055,103.79573930555556,1.5040520813891252,6.377131944444446,5.65539385192806,7.849521791666667,216.28350941824726,28.69333333333333,6.385717333333334,4.026666666666666,6.546666666666667,146.81397126216675,109.66435064000002,1.8384375761333336,6.538614666666668,2.9559670781893,7.835828693333331,263.9722020975971,23.266666666666666,6.352694814814814,3.5925925925925926,6.056790123456791,155.85833808587034,87.62619695555557,1.5346561213895114,6.453168148148148,3.418804298125285,7.835406429629629,216.7301504858721,20.697297297297297,6.349236756756761,3.097297297297297,4.852252252252252,160.0961064489446,76.06520895135134,1.397386139339308,6.428278378378379,3.3904821488154826,7.884549675675676,191.11054174916345,17.821100917431192,6.298270183486238,2.720183486238532,3.7354740061162075,163.4231052746648,63.74410124311926,1.2308176960062205,6.3632284403669725,3.3501175104768386,7.895851302752293,168.08545510829055,17.457142857142856,6.477522380952382,2.6333333333333333,4.079365079365079,164.97246451884033,62.195327257142864,1.1795974456733953,6.520551904761905,4.444025573192241,8.04652320952381,166.3294031986644,16.55778894472362,6.409216080402011,2.663316582914573,3.586264656616416,163.90453822448822,58.358064673366826,1.2268173593355378,6.458440703517585,3.694599540914448,7.963548914572864,169.81632068297375,15.62439024390244,6.126603902439024,2.6195121951219513,3.029268292682927,161.1250431991945,55.17834541951219,1.233308773376888,6.198684878048778,3.0223878349894613,7.7053452682926835,166.1998864095577,15.251184834123222,6.130628909952608,2.5308056872037916,3.146919431279621,162.60813186253785,53.7392320663507,1.1931322505263224,6.193235545023694,3.475425662629454,7.721776170616114,159.0127164428446,9.57638888888889,0.14695815972222215,0.019716916230481038,0.6788194444444444,4.319873113854595,1.5252599708937071,44.23807678626544,0.26001643720383155,0.13615646219135794,2.3201672121617225,0.09260052604166663,49.33037707534851,1.7025000000000008,-0.005500604166666648,-0.010630170992838759,0.23229166666666667,1.0722668038408778,-0.31488831334014805,7.4032535018827135,-0.02311756332481052,-0.00017335108024688,-0.24997461258340525,0.0019172889583333453,-0.008181493117432884,1.556944444444445,0.026554556327160504,-0.0019880924783530264,-0.0019675925925925924,0.9189014631915866,-0.1653374424398335,7.093975997479423,0.0005827163937828949,0.025707076903292183,0.3107641876785242,0.015680595254629642,1.4989672796899456,0.20153903903903947,0.02184798892642643,0.00562841095060866,-0.015456081081081081,0.5240374633893152,0.038735557070679646,0.9825774353561888,-0.004197381241798502,0.018667269039873223,0.08782848930105802,0.0116053717060811,-0.8570456717882243,-0.6631625891946994,-0.022382548101427095,-0.004291310769522539,-0.0807052752293578,-0.2483474597601338,-0.09165732359185408,-2.8332642893235365,-0.015357436147764891,-0.018324594199512954,-0.26839166543125004,-0.017349970040137577,0.16755868135685384,-0.9664682539682539,-0.009458497023809487,0.0004484262757189578,-0.02663690476190476,-0.5640677052714087,0.005425753804134922,-4.353063950418871,-0.005077883385695882,-0.0095994979056437,0.09776631436769817,-0.005017862351190408,-1.1094912322964743,-1.5077121719709656,-0.020709751012004424,0.0025536926379275517,-0.01201319095477387,-0.9406932639879781,0.13892697066539275,-7.008260788917583,0.007125965407985191,-0.02204271986863324,-0.36681689744034773,-0.01055961754082909,-3.4098123779111758,-0.3885840108401086,-0.0163819402100271,-0.002195879170580594,-0.05876524390243902,-0.5838146977148785,-0.05603582523913969,-1.948609777999849,-0.014222474748195622,-0.014631055687292987,-0.2716938735403039,-0.009632694131097571,-3.4491227673168634,-0.08389283833596632,0.0029762004673512333,-0.0002078880313489748,-0.042431872037914695,-0.17700552272476092,-0.023572756433586483,-0.4756615294197238,-0.0026732465334749576,0.0019641341751506615,0.27905498197915535,0.003552962899881507,-1.5626615398010952,,,0.47008547008547014,1.1987179487179487,0.5512820512820513,0.0,0.6474358974358975,-0.09615384615384616,1.1118787446587999,0.023848857130793533,0.03266936995130635,1.1162489590350326,0.2223286776228641,0.2516228129994987,2.2281277036938323,0.47395149062236275,2.0156163285486746,1.4136342692988617,0.26443860628920063,0.27985930240399465,0.0,0.6019820592498117,7.711321594111123,1890.0,455.0481000000001,239.0,570.4444444444445,11801.967967295319,7473.29323,108.291749860017,459.15350000000007,407.1883573388203,565.165569,15572.412678113804,2152.0,478.9288,302.0,491.0,11011.047844662506,8224.826298000002,137.88281821,490.39610000000005,221.69753086419752,587.6871519999999,19797.915157319785,3141.0,857.6138,485.0,817.6666666666667,21040.875641592495,11829.536589000003,207.17857638758403,871.1777,461.5385802469135,1057.7798679999999,29258.570315592733,3829.0,1174.6088000000007,573.0,897.6666666666666,29617.77969305475,14072.063655999998,258.516435777772,1189.2315,627.2391975308643,1458.6416900000002,35355.45022359524,3885.0,1373.0229,593.0,814.3333333333333,35626.236949876926,13896.214070999999,268.31825772935605,1387.1838,730.3256172839508,1721.295584,36642.62921360734,3666.0,1360.2797000000003,553.0,856.6666666666666,34644.21754895647,13061.018724000001,247.715463591413,1369.3159,933.2453703703706,1689.7698740000003,34929.17467171953,3295.0,1275.4340000000002,530.0,713.6666666666667,32617.003106673154,11613.254869999999,244.13665450777202,1285.2296999999994,735.2253086419752,1584.746234,33793.44781591178,3203.0,1255.9538,537.0,621.0,33030.63385583487,11311.560811,252.82829854226202,1270.7303999999995,619.5895061728396,1579.59578,34070.97671395933,3218.0,1293.5627000000004,534.0,664.0,34310.315822995486,11338.977965999999,251.75090486105404,1306.7726999999995,733.3148148148148,1629.2947720000002,33551.68316944021,689.5,10.580987499999994,1.4196179685946348,48.875,311.0308641975309,109.81871790434691,3185.1415286111114,18.721183478675872,9.803265277777772,167.052039275644,6.667237874999997,3551.7871494250926,127.68750000000006,-0.41254531249999854,-0.7972628244629069,17.421875,80.42001028806584,-23.616623500511103,555.2440126412035,-1.733817249360789,-0.013001331018516,-18.748095943755395,0.1437966718750009,-0.6136119838074663,210.18750000000006,3.584865104166668,-0.2683924845776586,-0.265625,124.05169753086419,-22.320554729377523,957.6867596597222,0.07866671316069081,3.470455381944445,41.95316533660077,2.116880359375002,202.36058275814264,37.2847222222223,4.04187795138889,1.041256025862602,-2.859375,96.94693072702331,7.166078058075735,181.77682554089492,-0.7765155297327229,3.4534447723765465,16.248270520695733,2.1469937656250035,-158.5534492808215,-144.56944444444446,-4.879395486111107,-0.9355057477559136,-17.59375,-54.13974622770917,-19.98129654302419,-617.651615072531,-3.347921080212746,-3.9947615354938244,-58.50938306401251,-3.7822934687499914,36.527792535794134,-202.95833333333331,-1.9862843749999923,0.09416951790098113,-5.59375,-118.45421810699582,1.1394082988683336,-914.143429587963,-1.0663555109961353,-2.0158945601851768,20.530926017216615,-1.0537510937499857,-232.9931587822596,-300.0347222222222,-4.12124045138888,0.5081848349475828,-2.390625,-187.19795953360764,27.646467162413156,-1394.643896994599,1.418067116189053,-4.386501253858015,-72.9965625906292,-2.101363890624989,-678.552663204324,-79.65972222222226,-3.3582977430555556,-0.45015522996902174,-12.046875,-119.68201303155008,-11.487344174023637,-399.46500448996903,-2.9156073233801028,-2.999366415895062,-55.6972440757623,-1.9747022968750019,-707.070167299957,-17.701388888888893,0.6279782986111102,-0.04386437461463368,-8.953125,-37.348165294924556,-4.973851607486748,-100.36458270756172,-0.564055018563216,0.4144323109567896,58.88060119760178,0.749675171874998,-329.7215848980311,0.7261349230371765,0.5947475765770952,0.44009781272076537,0.34133496629457255,0.28808459172779716,0.19789264478852692,0.17844390408954075,0.10853143477364942,0.11437883014679369,0.06129744321663868,0.07524790186048762,0.03411877957574309,0.04590693671069271,0.02041701983100917,0.02920150223652139,0.011644760011246763,16.013125014881858,5.706819361957123,3.5815714669816536,2.202227540996523,0.47150266226910204,-0.5200373768069905,4.0485528037706615,0.9711385978389265,6.027485001270095,0.6449062475209417,14.550413079189454,10.319970450078568,32.06654490699962,11.721431148201894,2.954590737169249,0.7471756720412546,3.537547837348478,2.2507972651092563,7.015576870920745,0.29760492791020576,3.768698392755127,2.445992715602194,24.44183269264586,14.700678652716663,0.26357047357878843,0.5964098397586922,0.8058578875021319,0.8778230925507163,0.8778230925507163,0.8778230925507163,1.3777615187635512,1470.3138604104456,0.0,5.0,5.0,0.0,9.0,6.0,1.0,1.0,0.0,4.471755333000088,2.327290103508864,0.9778281665820554,0.5141604167868588,0.5141604167868588,0.5141604167868588,216.00796002571792,2942.6856767899744,74.44840930309776,40.87063439986076,83.92676207960406,,18.0,1165.0,52.29117445183199,22.8014085365444,23.12493506663109,29.504815596807518,4.305215991296234,12.263210640074686,44.309786244840765,13.847474399381248,20.60153424990708,4.417150937053347,18.333333333333336,46.75,21.5,0.0,25.25,0.0,0.029914529914529853,-3.75,0.17149649649649656,0.03805329719963879,-0.13344319929685777,0.02810089639357949,0.17741463414634118,0.0,0.6120370370370356,0.8760683760683758,0.44054054054053904,0.5739837398373968,0.8479674796747964,43.363271041693196,0.9301054281009478,1.2741054281009476,43.53370940236627,8.6708184272917,9.813289706980449,86.89698044405947,18.484108134272148,0.5365853658536588,0.19999999999999998,0.04545454545454545,0.34909090909090906,0.4444444444444444,0.3689822911074427,-1.317163354315638,-0.05839224377739642,-0.018293935476606082,-0.05488180642981824,0.6310177088925576,2.2525563478477864,0.03191979857906034,0.03128550483121925,0.046928257246828885,-6.162929864758021,0.8141745226009186,0.6799841067134174,1.5902259419352092,0.9394032395566921,0.5170809931133029,1.4898450066097433,0.810521653422119,1.3184411987836837,0.6403273965831398,0.6350782024864644,0.6149260243695747,1.0503957075623946,0.75017860500094,0.6439033883844684,1.144491727131159,1.2589940323955668,0.6995680102671985,1.25594477748398,0.7532424233367274,1.0279484388023765,0.63206774500163,0.5460660968778995,0.6325430229231174,0.9644765613457761,1.0803833565254886,0.8318988517235612,0.8993863702058476,1.1896315753093245,0.8536593791084036,1.0729129873335321,1.064368562463735,1.1152714154186167,0.8349723733612124,0.8655995184200301,0.8486795809645454,1.0019477979053861,1.2401653904238545,1.3034063791781807,1.4600538804368752,1.2527745841056805,1.1236810572408094,1.0664181995548299,1.2166386497186157,1.145015083467893,1.2722155486328546,1.3360084251925612,1.3629760101401716,0.967165136493433,1.1064712179287959,1.397310191195923,1.278630206708031,1.0756789672390696,1.2826173984786322,0.9667667041662615,1.1027133863164476,0.9397942500212653,1.374204590117032,1.521495385969305,1.4359882066640397,0.9406304690424409,1.038269665951221,1.3535061266290296,1.1648466013445815,0.9526404400519219,1.2885134386481796,0.8952088258968578,1.049379100879328,0.8318051218073326,1.3522592631923611,1.480124966158073,1.3532911324950085,0.9926063495629084,0.887829639717717,1.0599138197685976,1.1370878446647086,1.0452248768011976,1.086184347782311,0.9981781833238002,0.9047186731257999,0.9594905688994699,1.0581747271993753,1.1011321048600866,1.0574168384718017,1.0563939778460278,0.9067495162714929,0.9715102821602208,1.01654100305378,1.0292723724560915,1.0198365127844133,0.955276405396557,0.9184136307424787,0.928982792412407,0.9792594622652424,0.8347223701748963,0.9615953219885429,1.0162255283000932,9.5,0.3886460565248444,6.000000000000002,4.201388888888888,3.1261111111111117,1.5455555555555553,1.077097505668934,0.9758007369614512,0.5840655706727135,0.5384645061728396,9192.879234303273,10268.231080828935,4098.196426771777,3766.841716632516,15.469713109775912,0.4261965897563084,8.876574137880962,0.7427571571512702,0.0,0.4444444444444444,1.6981696684422238,3.8426348979334484,5.192096834860257,5.655764584655453,5.655764584655453,5.655764584655453,0.2261904761904762,0.008448827315757487,0.09836065573770493,0.060889694041867955,0.04665837479270316,0.02377777777777778,0.018255889926592102,0.017119311174762303,0.010429742333441313,0.010989071554547746,0.521119820845631,31.92517006802721,13.980650362805697,7.695,226.97698787565173,0.0,4.585990259896592,279.544110679688,,220.02401399516881,230.8851663716828,229.24361375161163,220.060624948144,306.2497270666982,233.1042735200117,234.09629656524163,290.105457967457,0.17778100072516323,-0.03742972950303541,-0.5391396336312076,0.34219948849104864,0.2482171988806636,-0.20644894598239744,0.1673502566047626,-0.08890808432502383,-0.0012731755618271554,-0.10773991256884519,0.020704946724283618,-0.0001658510151855571,0.16258158085569258,0.18069467103666434,-0.10083181645208635,-0.002898550724637681,0.21271491985366592,-0.10839951588249974,0.16035905068282455,0.0022410752183566495,0.18880541172671458,0.13394042724575103,0.1693359198367187,0.03038629275832179,0.021045410893126674,0.1486680900721888,0.28546101656137846,-0.022769060620723026,0.1213085314262205,0.025396035960992953,0.022211124595299968,-0.01614275346180557,0.1371016016385454,0.037854379132970926,0.12532727622798961,-0.01737358849860706,-0.06924975550691567,-0.15230558237619615,-0.2176461430052869,-0.11889063563199512,-0.05748952647790502,-0.0600929188078991,-0.06404582873284352,-0.05906332812231375,-0.1345848291339935,-0.11567772530549077,-0.18736362288407268,0.003396663299388941,-0.10092199316274732,-0.06436183633278875,0.0227432256888996,-0.0392400438436244,-0.13057506329580468,0.003557264930355295,-0.09840084078362023,-0.019529086085104837,-0.07050343223630698,0.04213761570943343,-0.05418827047410687,-0.022491034897256276,-0.1574405748831175,-0.1409227704752812,0.12951785198436422,-0.017697181559973782,-0.21775946635353913,0.0910841255369668,-0.1584214617370851,0.027405826664715888,-0.1618925720738382,-0.1580993367708963,-0.11403409885682156,-0.06912196054578985,-0.04057730062434781,-0.11147349858620964,-0.11137031495756475,-0.08656977106855467,-0.13514626062568405,-0.036738540516674155,-0.04404824801526708,-0.054698367922972384,-0.10745766636276219,-0.11710098828918632,-0.1040241836937647,-0.06991884051582625,-0.008760383408541805,0.020252025971043714,-0.010543638209893784,-0.06250833323232446,-0.0409747041312563,-0.015454910561754479,-0.01075231031669537,-0.010281067467205357,0.01442556705380766,0.12027365119049205,0.038368711839528995,-0.03167746999813614,8.433122111057655,21.679169981295292,14.793331257968644,18.164061303212804,39.30290504050557,45.90843277095238,46.37580986274594,46.37580986274594,46.37580986274594,78.6090368133983,55.131736502655606,10.313105645278824,10.91451279375579,0.0,23.47730031074266,13088.513052168399,9948.34493964393,4805.519689538025,155.0,61.0,80.0,102.0,123.0,129.0,139.0,152.0,151.0,555.2151547760009,42.0,5.332718793265369,6.192362489474872,7.089243155027514,7.970049304976135,8.869116865929483,9.75794141390479,10.658317618283657,11.550982039238244,12.452241078080167,0.6805555555555557,0.9938333333333333,1.1316990876007842,0.6425244451845066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6678823103792414,0.9796840958605668,1.0142479970866713,0.6278586940543232,7.0,2.0,0.0,1.0,0.0,2.0,3.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,4.0,0.0,0.0,0.0,0.0,4.0,2.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,15.05072814506601,11.558541546764221,22.152472485550867,5.907179729351506,15.930470882759089,19.367590073162674,13.401775505276145,4.305215991296234,0.0,19.913841467842857,63.29331358816711,23.99897946407111,12.586597235060536,304.16923277560795,-1085.7989030310202,-48.135437439313684,-15.08054031987528,-45.24162095962584,520.1771928013259,1856.8867737589544,26.312971863784075,25.79009407998548,38.68514111997822,0.5,0.7922187296669336,0.1257564554943995,66.5008703630642,0.08054685426930762,44.286439937454325,0.20778127033306654,9.0,0.19047619047619047,0.2752334376909365,0.6228009087687736,0.8415170093066815,0.9166666666666667,0.9166666666666667,0.9166666666666667,2.6028200000000004,,2.8392857142857144,2.6180343125662717,2.0781525472882545,2.833453069436038,-8.66053674590952,2.3698745410036723,2.263639871033676,-3.83301113439383,143.21769999999984,27.218559473597747,0.0,24.906750241203312,5.917906046161393,70.10889613365364,6.544756405912575,54.04922139610564,0.0,0.0,4.442651256490317,0.0,5.796057750765372,2.3978952727983707,7.329749689041512,4.948759890378168,8.945462952177666,7.195187320178709,10.606956282167944,49.00000000000001,10.965398281175482,8.192428522315595,0.0,5.693828450691527,0.0,1.0317453013308933,0.497096960693973,0.0,71.556,0.0,65.95937648627942,0.0,0.0,-3.997287439794133,0.0,0.0,-1.5030066955671895,81.48233430725647,10.633577208012662,0.0,0.0,64.958853315944,19.612365521551226,12.841643245852017,56.151912562493166,52.168633401256784,0.0,11.099720859258504,0.0,46.261760053284476,48.08752634730538,49.2847615211297,559.0882213593761,,440.68047323303267,461.6360745734904,458.38065557772137,440.75465164247294,613.9002845724591,466.0870150122796,468.0765090345329,580.4074806084727,49.2847615211297,559.0882213593761,,438.23738483820466,459.30632703765787,456.61799517006733,438.3164262342859,621.1599908793064,463.9635581064905,466.0311656337615,584.043927069308,4.884334798692477,418.72104175671524,,338.5221861761686,351.9276809557013,348.402985105202,338.582221984451,474.3156179533959,355.62575729636484,357.56031844374445,447.14450942197226,1.2637118338751205,14.335595419471183,,11.299499313667505,11.836822424961293,11.753350143018496,11.301401324165973,15.741032937755362,11.950949102878964,12.001961770116228,14.882243092524941,2.464950729852488,279.544110679688,,220.02401399516881,230.8851663716828,229.24361375161163,220.060624948144,306.2497270666982,233.1042735200117,234.09629656524163,290.105457967457,70.53725490196081,0.0,7.286653317440968,0.0,0.0,0.0,0.0,73.02585579024034,0.5513988649594359,5.512369614357175,0.0,0.0,-2.2411770097783554,1.1345086792285426,0.0,0.0,0.0,45.20582597191127,653.0626780760358,122.26821612784012,276.6697126512083,373.8309721099385,407.2150500951926,407.2150500951926,407.2150500951926,1173.0,160.87297275818023,171.28374750089796,90.66272041399806,159.95,151.57,1.0,8.513181248073257,6.392317422778761,5.073050677257304,6.158167346947278,,6.1759274895526755,6.168799397973062,6.167946134225591,6.175939079813203,6.184597178742269,6.169763796432616,6.170842945792134,6.1784959840287,0.130078222493777,0.157901726844802,,0.15835711511673528,0.15817434353777082,0.15815246498014338,0.15835741230290262,0.15857941483954535,0.15819907170340042,0.1582267421997983,0.15842297394945384,2.9849189012735113,3.1787557778041076,,3.1816356251079156,3.1804807850799817,3.180342456256289,3.181637501789543,3.1830384281189494,3.1806371077321938,3.180812001784781,3.182051426706189,406.3200000000016,443.4246134805024,279.1721150607595,,275.5348007153993,276.67056311687094,277.0493707451772,275.5333566239861,274.7160505926091,276.53101777870955,276.35415609123055,275.25572434548707,11.369861884115446,7.158259360532295,,7.064994890138443,7.094117002996691,7.103830019107108,7.06495786215349,7.044001297246388,7.090538917402809,7.086004002339245,7.05783908578172,7.455504359558613,6.992805044611822,,6.979690492137279,6.9838040487139175,6.985172277178296,6.979685251074467,6.9767145740625045,6.98329954783778,6.982659770531857,6.97867712541764,33.159512652070106,47.820629486444986,5.376189968043185,1.5955834399494426,-1.3749097640587729,5.677838441187886,3.930584956542255,6.895191592948386,-3.997287439794133,493.29182389536055,250.74081980905072,-895.074444608977,-39.68027579668034,-12.431589508458014,-37.29476852537404,428.8062095524164,1530.7179746492782,21.691004302216825,21.259971870128865,31.889957805193298,5283.0,69.0,3.4885452487698334,2.077771501157272,0.16666666666666666,0.04564354645876384,1.2053749882512266,0.4981114236441888,0.15137471507731048,0.030419012832274044,0.0,0.0,0.0,0.0,0.07856742013183861,0.02551551815399144,0.42043485835490024,0.11077732901599227,0.6132619624043594,0.16156345490993126,28.319261998449885,23.195155486506714,18.484108134272144,14.336068584372047,17.573160095395625,12.071451332100143,14.275512327163261,8.682514781891953,11.666640674972957,6.252339208097145,9.255491928839977,4.1966098878163995,5.921994835679359,2.6337955582001826,4.059008810876473,1.6186216415633,7.819201873229358,4.055307810128621,12.135101823350116,5.520300812291732,18.802371783605082,7.157924215387445,128.05089737934543,53.326234663455125,32.268755008836536,29.18922396524441,29.18922396524441,29.18922396524441,206.0,244.0,80.30616899999998,49.23183100000005,0.3888888888888889,282.12,14.506944444444445,8.444444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,15.0,16.0,72.0,0.0,0.0,75.0,16.0,5.0,12.0,63.0,21.0,42.0,54.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,8.0,2.0,4.0,39.0,12.0,0.0,5.0,6.0,0.0,4.0,8.0,1.0,0.0,0.0,3.0,3.0,4.02535169073515,6.756782487024404,4.622518824322705,5.135062872471308,5.648754143519622,6.108135853911675,6.291771665344885,6.585298428876236,6.819628223035949,6.7439717634677026 +24360,CC[C@@]1(O)C(=O)OCc2c1cc1n(c2=O)Cc2cc3ccccc3nc2-1,0,25.952380952380953,6.435471428571428,4.0476190476190474,9.761904761904763,158.54416245280916,102.80484633333336,1.6163005351805713,6.507323809523809,5.632440476190476,7.907520952380951,245.71117619481603,27.565217391304348,6.4635869565217385,4.8478260869565215,9.369565217391305,143.54169320466622,106.19621873913049,1.9325572312173922,6.617130434782609,3.3589975845410627,7.84932626086956,291.13261580889616,25.333333333333332,6.457938271604939,4.518518518518518,8.62962962962963,149.62933147175912,96.99013277777775,1.7431235239641234,6.5799777777777795,3.4473593964334697,7.879938716049378,260.69982958646114,23.327102803738317,6.439653271028038,3.9158878504672896,7.11214953271028,151.80854941391718,88.16833968224297,1.5827158608938405,6.546801869158879,3.9175752855659396,7.89157308411215,234.50791889181033,19.677966101694917,6.562805084745763,3.389830508474576,5.661016949152542,158.1622425126131,71.37990520338984,1.389343094999517,6.632984745762711,3.9096045197740112,8.066862779661015,202.69549997492504,18.528301886792452,6.345886792452829,3.2452830188679247,5.377358490566038,157.06811848880648,67.3390331981132,1.364762952160726,6.424224528301887,3.7066299790356387,7.870023660377358,193.89357982713733,18.06122448979592,6.2963265306122445,3.1530612244897958,5.26530612244898,159.94386783372076,65.87792794897958,1.303601669881969,6.366936734693878,3.6899092970521545,7.825208448979592,184.87374555392333,17.17283950617284,6.295617283950618,2.950617283950617,4.481481481481482,160.64538364748998,61.5564534691358,1.31440278473258,6.3660950617283945,3.5178326474622765,7.825673530864197,184.35921531522405,15.591549295774648,6.130873239436621,2.788732394366197,3.971830985915493,158.29109881480127,55.143139788732384,1.2677124600589857,6.210570422535211,3.314945226917058,7.704144056338027,174.37891346082728,7.174603174603173,0.14492970521541942,0.023886345829995187,0.7732426303854875,4.317460317460318,1.5065724695131417,34.01046075283447,0.22857794138842635,0.132901133786848,2.0720308956916096,0.09469736054421767,47.81797861037092,0.27777777777777823,-0.007168939169870849,-0.01242787132973959,0.33338262841368427,1.3719806763285025,-0.14136077464708566,1.3756125101054926,0.00312173153057991,-0.004933224884156569,-0.17699552647145805,-0.006205724933451642,1.8247915072245382,0.938271604938272,0.013858654572940287,-0.001220794212624812,0.018644494834971007,0.7942386831275717,0.032963179602346314,4.459129853867473,0.022544893177973455,0.013593046107331815,0.06582306276420032,0.00835303804484756,5.57056824670514,0.6344755970924201,0.02001217284421556,0.004288870725536572,-0.09856528281094368,-0.06957424714434077,-0.19521238115150405,2.8688041821900088,-0.022484635933107653,0.019219293449466997,0.20517204155805618,0.011785482357428946,-1.7791729350131662,-1.9030131826741996,-0.03613721126868824,-0.002639676773829949,-0.03716514854529382,-1.2730696798493408,0.0425241867123982,-8.905712128540683,-0.006633411281206376,-0.035341408201698746,-0.4627147469157155,-0.019607328260117622,-5.911602564217382,-0.5901467505241091,-0.0017687438497411534,-0.000204420234342168,-0.03559662858854231,-0.250524109014675,-0.11809016511789612,-2.816978624802122,-0.01129024734782927,-0.0033247636161382694,0.0027529093398365534,-0.00022467231420870596,-4.052337033911458,0.3594104308390022,0.01030620343375445,-0.00013592678461494157,-0.09054097829608032,0.04308390022675738,-0.022273626054275783,1.6557552243278264,-0.001638492811483155,0.009603433754454155,0.22897938937479756,0.006224134110787169,0.5274222516274927,-0.8559670781893005,-0.013458688166624658,0.001006835193307118,-0.09716973209036701,-0.6460905349794239,0.26318815826895015,-4.032918559418829,0.0004023280053367696,-0.01358196858990509,-0.09471363133730863,-0.006642115394305869,-1.8557272759355008,-0.6025039123630676,-0.016971153907572412,-0.0005639526240603517,-0.1045638912842132,-0.47574334898278553,-0.033080339421408506,-2.8353479265433874,-0.017155033165035288,-0.014991207562837339,-0.1828206341221935,-0.011428810577752217,-3.1735669830956175,,,0.46666666666666673,1.3461538461538463,0.6730769230769231,0.019230769230769232,0.6730769230769231,0.0,0.821305452711587,0.014968837081719418,0.03150729862018095,1.037909925228898,0.25558396898304725,0.2261477155649678,1.8592153779404847,0.481731684548015,2.095275733746658,1.6430723640944243,0.16900082744693215,0.2832025422053011,0.0,0.4522033696522333,8.288357309333344,1090.0,270.28979999999996,170.0,410.0,6658.854823017985,4317.803546000001,67.88462247758399,273.3076,236.5625,332.11587999999995,10319.869400182273,1268.0,297.325,223.0,431.0,6602.9178874146455,4885.026062000003,88.89763263600004,304.38800000000003,154.51388888888889,361.06900799999977,13392.100327209224,2052.0,523.0930000000001,366.0,699.0,12119.97584921249,7856.200754999997,141.193005441094,532.9782000000001,279.23611111111103,638.2750359999997,21116.686196503353,2496.0,689.0429,419.0,761.0,16243.51478728914,9434.012345999998,169.35059711564094,700.5078000000001,419.18055555555554,844.3983200000001,25092.347321423706,2322.0,774.4110000000001,400.0,668.0,18663.144616488345,8422.828814,163.942485209943,782.6921999999998,461.3333333333333,951.8898079999998,23918.068997041155,1964.0,672.6639999999999,344.0,570.0,16649.220559813486,7137.937518999999,144.66487292903696,680.9678,392.9027777777777,834.222508,20552.719461676556,1770.0,617.04,309.0,516.0,15674.499047704634,6456.036938999998,127.75296364843295,623.9598000000001,361.61111111111114,766.8704280000001,18117.627064284487,1391.0,509.94500000000005,239.0,363.0,13012.276075446687,4986.072731,106.46662556333898,515.6537,284.9444444444444,633.879556,14933.096440533149,1107.0,435.2920000000001,198.0,282.0,11238.66801585089,3915.162924999999,90.00758466418799,440.9505,235.36111111111111,546.9942279999999,12380.902855718738,301.33333333333326,6.087047619047616,1.0032265248597978,32.476190476190474,181.33333333333337,63.27604371955195,1428.4393516190476,9.600273538313907,5.5818476190476165,87.0252976190476,3.977289142857142,2008.3551016355786,12.7777777777778,-0.32977120181405906,-0.5716820811680211,15.335600907029477,63.111111111111114,-6.5025956337659405,63.27817546485266,0.14359965040667586,-0.22692834467120218,-8.141794217687071,-0.2854633469387755,83.94040933232876,76.00000000000003,1.1225510204081632,-0.09888433122260977,1.5102040816326516,64.33333333333331,2.670017547790051,361.1895181632653,1.8261363474158498,1.101036734693877,5.331668083900225,0.6765960816326524,451.2160279831163,67.88888888888894,2.141302494331065,0.4589091676324132,-10.546485260770973,-7.444444444444462,-20.887724783210935,306.96204749433093,-2.405856044842519,2.0564643990929685,21.95340844671201,1.2610466122448971,-190.37150404640877,-224.55555555555554,-4.2641909297052125,-0.311481859311934,-4.385487528344671,-150.22222222222223,5.017854032062988,-1050.8740311678007,-0.7827425311823524,-4.170286167800452,-54.60034013605443,-2.3136647346938792,-697.5691025776512,-62.555555555555564,-0.18748684807256227,-0.02166854484026981,-3.773242630385485,-26.555555555555546,-12.517557502496988,-298.59973422902493,-1.1967662188699026,-0.35242494331065655,0.29180839002267467,-0.02381526530612283,-429.5477255946146,35.222222222222214,1.0100079365079362,-0.013320824892264275,-8.873015873015872,4.222222222222223,-2.1828153533190267,162.264011984127,-0.16057229552534918,0.9411365079365073,22.43998015873016,0.6099651428571425,51.68738065949429,-69.33333333333334,-1.0901537414965974,0.08155365065787655,-7.870748299319728,-52.333333333333336,21.31824081978496,-326.6664033129251,0.032588568432278336,-1.1001394557823123,-7.671804138321999,-0.5380113469387754,-150.31390935077556,-42.7777777777778,-1.2049519274376412,-0.04004063630828497,-7.424036281179137,-33.77777777777777,-2.348704098920004,-201.3097027845805,-1.2180073547175054,-1.064375736961451,-12.980265022675738,-0.8114455510204074,-225.32325579978885,0.6942952801903186,0.5443002929457255,0.4175007932749464,0.2861709028530863,0.2546021952314254,0.14450778910200238,0.1632179881305466,0.07629282776888857,0.09822999239284773,0.0396480116443182,0.06033295349959667,0.020234078288480877,0.03765986856032082,0.010390468170604522,0.02341421826753759,0.005505280096441873,8.029474373616718,5.672032809468508,3.556002726154541,2.1693422806729754,0.47622148700905237,-0.4873483077734274,4.02907569307454,0.9772018538303725,6.028596319359069,0.9880037311882321,14.551592510502962,10.935472031644837,16.01482155017094,11.685213550182263,2.0143348015993032,0.7411608509177265,3.502234536636519,2.218475992277717,7.009365686791853,1.1712420503219851,3.7150841247257365,2.413939817570984,20.914013771128506,14.700623758003054,0.27196918047328855,0.6596469687547507,0.8163043819643471,0.8801786910446143,0.8884153429705703,0.8884153429705703,1.41204926839418,1164.4203046281134,0.0,2.0,3.0,0.0,9.0,1.0,4.0,1.0,0.0,3.819965759470173,1.5786610124713851,0.6729681549164388,0.303687797670559,0.25606875005151153,0.25606875005151153,90.09845695117852,1222.6852743358534,64.62056545391292,29.11155415085365,61.873046215039,,11.0,497.0,11.570356098935537,14.69560176298435,18.586970482490937,23.365587384155027,22.160304418626513,0.0,17.55720391594359,30.33183534230805,0.0,9.720841474747257,12.133333333333335,35.0,17.5,0.5,17.5,0.0,0.033333333333333284,0.0,0.19111111111111084,0.07548500881834197,-0.11562610229276887,0.020322886989553646,0.16415105740181246,0.0,0.6396825396825397,0.8487179487179485,0.4485714285714289,0.5641975308641978,0.8283950617283948,21.35394177050126,0.38918976412470485,0.8191897641247048,26.985658055951344,6.6451831935592285,5.8798406046891625,48.339599826452606,12.525023798248391,0.5498489425981875,0.12362637362637359,0.0412087912087912,0.40384615384615385,0.25,0.41691842568573806,-0.9401196511249419,-0.07985901741958129,-0.02238380121726052,-0.06715140365178156,0.5830815743142619,1.3148050372686069,0.03931679296967011,0.03130488183972873,0.04695732275959309,-4.917666560047735,0.6640414582531744,0.7075688748195608,1.4886150284293846,0.6586765268392197,0.4104259910485933,1.1507379153859423,0.6676989178597688,0.9519168002072297,0.6815183396905764,0.6540590787692969,0.7405808499497469,0.8335979788273569,0.677790068829892,0.7000838655879025,1.0692940695589745,1.1845335071141523,0.6852873093681916,1.033734502959359,0.6803878263742701,0.8575181239741797,0.6824678388715045,0.5880206036458115,0.7087533583268797,0.7827274353236394,0.782038292945166,0.758323063497416,0.9035924226049411,1.2211678131937405,0.9160338785046727,1.1458413661301106,0.7871333288413289,1.0589485342495761,0.7415429780665148,0.7933304322659634,0.78290868321698,0.9557938889189422,1.247042335383231,1.4723137765100671,1.3037631593959074,1.0431370843481287,1.3508692671984044,0.9840543624223165,1.2378395878490063,0.9648509929352636,1.4615094209160526,1.539052135045648,1.4661336651741699,1.0213826823194525,1.0685997244949075,1.0626415190282226,1.040761245691276,1.000442649255796,1.0633237375138733,1.04206613956895,1.067528949727294,1.0236206563661459,1.0692726474232253,1.0850837540204157,1.0691644385081822,1.0496020633917604,0.9642349196315696,0.9413947704281201,0.9790358208741216,1.1400816925010473,1.0289990996398557,1.0121919252904206,0.9649999374826961,0.9680412737261711,0.942083004481485,0.9085360243172182,0.9273615695416129,0.9695428304165998,1.122091117666339,1.0907411318913496,0.9209746046676374,1.020880851526013,1.1402845860566446,0.8524960926420557,1.1209073384231678,0.9470551852986495,1.100824491685002,1.056623504675959,1.038645372409461,1.0072506134193562,1.1105337778885707,1.091961529952,0.8492463262660336,1.0846516046425179,1.1161842377796185,0.9383523331662079,1.1103985211114655,1.0792986612886066,1.0982527642900333,1.1621280150938635,1.0989292513799718,1.09353364662314,6.0,0.05774920926436078,4.666666666666668,2.763888888888889,2.532777777777778,1.3616666666666664,0.7200907029478458,0.4688208616780045,0.2942885487528344,0.14063271604938274,5522.908304907844,5984.31128249546,2591.851645249366,2425.266330160839,12.89448576549216,0.4317537192571775,7.327243578332187,0.7598003434228917,1.0,0.25,1.5723516633085879,3.8136564103073756,4.719349267862322,5.088629625108202,5.136248672727249,5.136248672727249,0.19999999999999998,0.0064165788071511975,0.09929078014184403,0.05118312757201645,0.05506038647342994,0.03491452991452992,0.020574020084224164,0.017363735617703865,0.014013740416801639,0.009375514403292182,0.5081924134309934,18.055555555555557,6.518786781349027,2.628049990081333,148.22824286689615,1.0,4.23977136843461,117.41060608056337,,87.35407436905486,86.2429826428177,86.45735992945218,87.36706367946715,105.41685807544827,86.9337569671326,87.41590702992495,98.48780926753356,0.03871681415929211,-0.049464939980490126,-0.5202918612244716,0.43114879510391424,0.3177749360613811,-0.09382938923128423,0.040446747255279324,0.013657186304233526,-0.037119509394620116,-0.08542127766506101,-0.06553218482318693,0.038161201294041554,0.13077679449360874,0.09562328545649888,-0.051108454232116345,0.024112088628217638,0.18395969498910664,0.021879584466984566,0.13111053938003014,0.09863109730112819,0.10227938408059685,0.03176741374902601,0.08820771768973668,0.11649526827754647,0.0884335456124391,0.13808192609286019,0.17955323748812343,-0.12747005782881574,-0.016114623419461276,-0.12957384068924888,0.08435064149934869,-0.09836747936625753,0.1446134649256766,0.09901977908952614,0.12445418002887074,-0.03720719668035682,-0.26524298785060757,-0.24934302608961292,-0.11050986168487878,-0.048064019086435705,-0.2948654037886341,0.02822578241200714,-0.26185214582247235,-0.029020347461849384,-0.26592254854936503,-0.22331459819341595,-0.20705253184920863,-0.12362719495916238,-0.08225496744030726,-0.012204149916072363,-0.008558037122843129,-0.046035522602777594,-0.05802580466148721,-0.07838332871969823,-0.08282682922980841,-0.049393424751531745,-0.025016819054912307,0.0013286043878789162,-0.0023725298457901393,-0.08474505095521906,0.05009481668773705,0.07111173943558086,-0.005690564206947553,-0.11709258483452031,0.009978991596638656,-0.01478430444270208,0.04868370459197128,-0.0071682018025476775,0.0722599836496242,0.11050964049373793,0.06572658493349338,0.011029789776874917,-0.11930514585381846,-0.0928635585549563,0.042151076622309824,-0.12566525469751277,-0.14964596949891065,0.17469332779856322,-0.11857876871258563,0.0017601348708145322,-0.10219603251608356,-0.045710530443463675,-0.07014044906990223,-0.03880814977680852,-0.08397731521874617,-0.11709920945707415,-0.023609832499040955,-0.13522778902151913,-0.1101905550952775,-0.021957350270776305,-0.08336693663601975,-0.07505113162202931,-0.1127996965539874,-0.08823258113686137,-0.12068774158088268,-0.06636765240443107,8.657228787148192,22.65238585242499,11.987075776377562,14.755365376440981,37.11115806146334,43.522860308519526,44.41904728957576,44.46704728957576,44.46704728957576,54.47716907741311,42.71988146645503,4.394021513620236,7.363266097337829,0.0,11.757287610958066,5542.55161720117,4691.413041793899,1060.92724935948,387.0,47.0,71.0,99.0,139.0,175.0,227.0,288.0,340.0,348.11100699200045,30.0,5.043425116919247,5.968707559985366,6.910750787961936,7.8528278122817445,8.800415333145924,9.748177867988971,10.698672233649825,11.649299064694805,12.601591789442303,0.7222222222222223,1.0032380952380955,1.1128889994049893,0.6905535005609936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7053990305104079,0.9901027077497664,1.017896160649256,0.6835653804774505,6.0,1.0,0.0,0.0,0.0,2.0,5.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,14.410489996432108,6.606881964512918,5.601050810983688,0.0,5.559266895052008,4.794537184071822,9.77851570501903,0.0,0.0,25.122838405075452,24.619922828310838,16.513127197858786,29.012764604922754,226.06520843425662,-509.7600196852388,-43.30186507976671,-12.137143325839018,-36.41142997751705,316.16366538543514,712.9252546506145,21.3187003741462,16.97441082501463,25.461616237521945,0.45454545454545453,0.7301250394481609,0.2031986835233189,100.36370196557161,0.15196797480062965,20.51938130287847,0.2698749605518392,6.0,0.03333333333333333,0.29159108042610854,0.7072388569332642,0.8751987128811037,0.9436813944988307,0.952512300375753,0.952512300375753,2.0796,,1.2857142857142856,1.5141926477431364,1.1430359144285005,1.28206267335915,-5.365540693720243,1.3572521419828645,1.2745051870999227,-2.2346271687189603,94.52480000000003,14.637927532712578,0.0,9.551078168738563,0.0,32.097248004025815,0.0,63.44236096498447,0.0,11.387855989696922,4.110873864173311,0.0,5.517452896464707,2.3978952727983707,7.144407180321139,4.844187086458591,8.869679374733515,7.065613363597717,10.644734182586557,30.333333333333336,11.55302070134885,4.7221993102796676,0.0,0.0,0.0,1.8569216506046866,2.998029415469893,1.6434684429327286,42.13600000000001,0.0,25.155454661062976,0.0,0.0,0.0,0.0,0.0,-0.7069064229354629,46.74133797500955,5.559266895052008,0.0,0.0,20.626910851531118,28.284089319281055,0.0,30.034913297707618,41.192739594841484,0.0,22.29078092177798,0.0,29.003247023561734,29.62675928143713,34.87182371917815,234.82121216112674,,174.6092476392086,172.36948892811665,172.9100140501772,174.6355071532913,212.37251534973012,173.76310992334342,174.73377519930375,197.49130172784845,34.87182371917815,234.82121216112674,,173.54681034870447,171.1588483336813,172.03075565446295,173.5759711610927,216.1992568446168,172.65993667284448,173.67828497914832,199.21024570378614,5.1393627639269335,172.5252997511353,,128.46791147302616,126.8697573687372,126.51845942970031,128.48458113574588,152.46554739940981,127.83241646130287,128.56003662031196,143.8862153665952,1.3412239891991597,9.031585083120259,,6.715740293815715,6.629595728004487,6.650385155776046,6.7167502751265875,8.168173667297312,6.683196535513209,6.720529815357836,7.59581929722494,2.6009429555617283,117.41060608056337,,87.35407436905486,86.2429826428177,86.45735992945218,87.36706367946715,105.41685807544827,86.9337569671326,87.41590702992495,98.48780926753356,41.58431372549019,0.0,1.6953470385067606,0.0,0.0,0.0,10.83306010831534,42.75163874726876,0.4525658243605575,0.0,5.073687106410771,0.0,0.0,0.0,-1.7897470238095226,0.0,0.0,28.709745980052922,395.89487788753434,66.03876985896069,160.17356923290978,198.21266925021752,213.72244425454448,215.72244425454446,215.72244425454446,1829.0,135.27386756607012,146.3339959321575,76.59484322113391,81.42,81.42,0.8333333333333334,9.88364810034317,5.906890595608519,4.533855761429374,5.02838491549258,,5.022108849935541,5.0208857311310044,5.019144492395958,5.02211693783648,5.01781218196919,5.021576465131622,5.022181944050196,5.026274009716859,0.1743790677472836,0.19339941982663772,,0.1931580326898285,0.1931109896588848,0.19304401893830606,0.19315834376294155,0.19299277622958425,0.1931375563512162,0.19316084400193062,0.19331823114295613,2.467084183953316,2.5706102872192096,,2.569361380146724,2.5691178036316296,2.5687709443665203,2.569362990604535,2.5685054634089317,2.5692553663106237,2.569375934507237,2.5701904011102052,243.10000000000002,207.03040168846948,164.45942497718164,,164.83395571886282,164.901152475251,165.3091885349384,164.83444658238125,166.58402615438416,164.876980631233,164.8285983924274,165.25889609996617,7.962707757248826,6.325362499122371,,6.33976752764857,6.342352018278884,6.358045712882245,6.339786407014663,6.4070779290147755,6.3414223319705005,6.339561476631824,6.356111388460237,6.288377095568987,6.058175328134435,,6.060450083262465,6.060857663502776,6.0633290353327345,6.060453061185219,6.071011288736996,6.060711068919117,6.060417581382168,6.063024756500639,6.7171555493435005,29.877653971342642,11.847358932011485,1.813804406021671,-0.7069064229354629,11.55302070134885,0.1386237104779675,2.009289152389351,0.0,293.42016715790464,122.57908337912086,-276.4066013922309,-23.479521536494143,-6.5811095569578795,-19.743328670873638,171.43306822465038,386.5686579468197,11.559614895172736,9.204015665400467,13.806023498100702,1479.0,54.0,2.2515225064396693,0.9997247662812683,0.11785113019775792,0.03952847075210474,1.0127424572228445,0.24108347679739586,0.13144585576580214,0.017998965073375083,0.0,0.0,0.0,0.0,0.07856742013183861,0.03952847075210474,0.4443899203133272,0.1611802862728286,1.0000533125693005,0.2746114464448629,18.051677284948283,14.151807616588863,12.525023798248391,8.585127085592589,11.966303175876995,6.791866087794112,11.588477157268809,5.416790771591089,9.724769246891926,3.925153152787502,8.386280536443937,2.812536882098842,6.590476998056142,1.8183319298557912,5.315027546731033,1.2496985818923052,6.7047802670755665,2.3650413056598034,10.987557630444078,3.3738108278305114,18.0214834429278,4.57486879168317,82.91831345533821,41.82555570991284,26.887228553412747,24.443560770432065,24.282021845537837,24.282021845537837,154.0,195.0,49.476687999999996,22.373312,0.5,250.06,7.923611111111111,5.48611111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,16.0,17.0,42.0,0.0,0.0,46.0,17.0,2.0,9.0,37.0,19.0,30.0,27.0,0.0,0.0,0.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,6.0,1.0,4.0,26.0,6.0,0.0,2.0,4.0,0.0,5.0,1.0,0.0,0.0,0.0,2.0,3.0,3.7256934272366524,8.906450048461394,4.442651256490317,5.144583266605995,5.793013608384144,6.462444262326773,6.952280408426773,7.494273778991859,8.039240552337775,8.517307247411605 +31593,O=C(Cn1ccnc1[N+](=O)[O-])NCc1ccccc1,0,26.838709677419356,6.694503225806452,3.3548387096774195,10.387096774193548,165.86639374253187,106.32420706451612,1.4700569954254201,6.7282967741935495,7.640681003584229,8.12804683870968,228.3108638046104,27.90625,6.72325,3.96875,8.78125,152.55001560384991,107.24808449999996,1.7463218659374995,6.831990625000002,3.8394097222222228,8.061839750000003,265.32654649174907,23.865384615384617,6.660551923076925,3.5576923076923075,7.4423076923076925,158.7621878004038,89.73930988461532,1.5374611767249609,6.738701923076926,4.559294871794872,8.054555230769235,227.76874994490547,18.90625,6.452279687499999,2.921875,5.53125,162.17120494002646,68.746573421875,1.3060549978428597,6.510071874999998,3.85373263888889,7.927400187500002,183.8116420123605,17.276923076923076,6.3614,2.5846153846153848,4.892307692307693,165.2829857400906,62.37277152307692,1.157663569849046,6.414499999999998,3.8273504273504275,7.891483261538462,166.4372216563389,16.982758620689655,6.57663448275862,2.396551724137931,5.0,170.9995159849334,61.154399068965496,1.055049754515276,6.588989655172414,4.428160919540231,8.130595586206898,154.28085595188952,20.162790697674417,6.709441860465119,2.697674418604651,6.325581395348837,164.10196973100918,73.82653116279072,1.2389607054010467,6.743148837209305,6.204134366925064,8.193596279069766,181.2249515855649,16.095238095238095,6.309380952380953,2.738095238095238,4.0476190476190474,165.85006088007836,57.27518535714288,1.201076580780762,6.3611666666666675,3.415343915343916,7.857787333333332,168.90370830191475,17.833333333333332,6.372861111111113,2.7777777777777777,5.027777777777778,162.43554050244015,64.64287291666668,1.2928051405303895,6.435416666666668,3.7731481481481484,7.9045867777777765,185.2633737090901,7.592091571279916,0.1705985431841831,0.031232779742933415,0.5411030176899064,4.688865764828305,1.6169792741061089,35.84384909469302,0.20642601585179177,0.15486243496357954,3.2216441207075954,0.10745741519250779,44.41759881696864,0.4028681061394387,0.02361577133194582,-0.00948891338669208,0.07280827263267425,0.8282713319458891,-0.3168310786175483,1.7984638770811758,-0.009960853370178916,0.020416093262226792,-0.11730944328824137,0.015065149323621217,-1.9454609549763464,-0.25276154646602067,0.027412685103658005,-0.0009325145323016708,-0.08018490354598577,0.01150644360842068,0.2425292360426767,-1.3754883167773868,-0.01183314509425463,0.0214236072200432,0.5629919421542732,0.02038876346754181,-4.359678355976954,-0.4398738293444329,0.034005841896462045,0.009288409985822883,-0.08293769510926119,0.114561654526535,-0.07127046127264805,-2.32341601959222,-0.031654113261448624,0.02619210132674301,0.07766703520638217,0.022759824726847032,-8.705843151477692,0.2118786520451452,-0.016123406707756287,-0.010004915081587691,-0.046810213719683004,0.3811094212759145,-0.34923331433379184,0.9744745559273166,-0.03882607778255117,-0.010102583846954285,-0.05441224863701456,-0.013366782934443286,-2.424111905893341,0.5274857368402164,-0.013042814596863926,-0.006879019970538184,0.033424234812874536,-0.20833183824320944,0.2630664080574461,2.6856196094226505,0.03791619988080987,-0.010568219168251463,-0.624560941866909,-0.012090785604076212,7.724264176425474,-0.176487670304673,0.040639866418217395,0.011698513753377491,0.011035016818720815,0.31038404762480964,-0.05955315058434508,-1.0829709829150804,-0.014098953037341022,0.03275031822471745,1.1553459601459506,0.03216422921859496,-5.540906841907539,-0.4861007878697787,-0.034984718299390434,-0.004097247958461921,0.04031019275556217,-0.5982359645210842,0.05168599372049717,-2.1089046891630794,0.018814985344438522,-0.03003985431841827,-0.407384008060387,-0.02177745820326049,3.2440871505813127,-0.45409873973869824,-0.03667703780783901,-0.002171574326555346,0.00011562030292521107,-0.6127008902763326,-0.11142631809577981,-1.904404444155395,0.024651765038199172,-0.03199379697074803,-0.6543651481866883,-0.023909795120823217,3.5253316683541183,,,0.4526315789473684,1.381578947368421,0.7105263157894737,0.02631578947368421,0.6710526315789473,0.039473684210526314,0.564144171552506,0.01313209286456042,0.022184724443507785,0.9426831379681274,0.29669386048693447,0.18565897098393122,1.5068273095206335,0.48235283147086566,2.001780204989045,1.295178827538387,0.4335816373003254,0.27301974015033253,0.0,0.7066013774506579,8.390030330451618,832.0,207.52960000000002,104.0,322.0,5141.858206018488,3296.0504189999997,45.57176685818802,208.57720000000003,236.8611111111111,251.96945200000008,7077.636777942922,893.0,215.144,127.0,281.0,4881.600499323197,3431.938703999999,55.882299709999984,218.62370000000007,122.86111111111113,257.9788720000001,8490.44948773597,1241.0,346.3487000000001,185.0,387.0,8255.633765620998,4666.444113999997,79.94798118969797,350.41250000000014,237.08333333333337,418.8368720000002,11843.974997135085,1210.0,412.94589999999994,187.0,354.0,10378.957116161693,4399.780699,83.58751986194302,416.64459999999985,246.63888888888897,507.3536120000001,11763.945088791072,1123.0,413.491,168.0,318.0,10743.394073105888,4054.230149,75.248132040188,416.9424999999998,248.7777777777778,512.946412,10818.419407662028,985.0,381.4448,139.0,290.0,9917.971927126137,3546.955145999999,61.19288576188601,382.1614,256.83333333333337,471.5745440000001,8948.289645209592,867.0,288.5060000000001,116.0,272.0,7056.384698433394,3174.5408400000006,53.27531033224501,289.9554000000001,266.77777777777777,352.32463999999993,7792.672918179291,676.0,264.994,115.0,170.0,6965.7025569632915,2405.557785000001,50.445216392792005,267.16900000000004,143.44444444444446,330.02706799999993,7093.95574868042,642.0,229.42300000000006,100.0,181.0,5847.679458087845,2327.143425,46.54098505909402,231.67500000000004,135.83333333333334,284.56512399999997,6669.4814535272435,235.35483870967738,5.288554838709676,0.9682161720309359,16.7741935483871,145.35483870967747,50.126357497289376,1111.1593219354836,6.399206491405545,4.800735483870966,99.87096774193546,3.3311798709677416,1376.945563326028,12.891779396462038,0.7557046826222662,-0.30364522837414654,2.329864724245576,26.50468262226845,-10.138594515761545,57.55084406659763,-0.3187473078457253,0.6533149843912573,-3.753902185223724,0.48208477835587893,-62.254750559243085,-13.143600416233076,1.4254596253902163,-0.04849075567968688,-4.16961498439126,0.5983350676378754,12.611520274219188,-71.52539247242412,-0.6153235449012407,1.1140275754422464,29.275580992022203,1.0602157003121742,-226.70327451080163,-28.151925078043707,2.176373881373571,0.5944582390926645,-5.308012486992716,7.33194588969824,-4.561309521449475,-148.6986252539021,-2.025863248732712,1.6762944849115526,4.970690253208459,1.45662878251821,-557.1739616945723,13.772112382934438,-1.0480214360041586,-0.6503194803032,-3.0426638917793953,24.772112382934445,-22.70016543169647,63.34084613527558,-2.523695055865826,-0.6566679500520285,-3.5367961614059467,-0.8688408907388135,-157.56727388306717,30.59417273673255,-0.7564832466181077,-0.39898315829121467,1.938605619146723,-12.083246618106148,15.257851667331872,155.76593734651374,2.199139593086972,-0.6129567117585849,-36.22453462828072,-0.7012655650364203,448.0073222326775,-7.588969823100939,1.747514255983348,0.5030360913952321,0.47450572320499507,13.346514047866814,-2.5607854751268384,-46.56775226534846,-0.606254980605664,1.4082636836628504,49.67987628627587,1.3830618563995831,-238.25899420202416,-20.416233090530707,-1.4693581685743982,-0.1720844142554007,1.6930280957336112,-25.125910509885536,2.170811736260881,-88.57399694484934,0.7902293844664179,-1.2616738813735673,-17.110128338536253,-0.9146532445369406,136.25166032441513,-16.347554630593137,-1.3203733610822042,-0.07817667575599245,0.0041623309053075985,-22.057232049947974,-4.011347451448073,-68.55855998959422,0.8874635413751701,-1.1517766909469291,-23.55714533472078,-0.8607526243496358,126.91194006074825,0.7192066283684293,0.5286607206124919,0.4582351898973225,0.2840873387807854,0.30850442120798116,0.15056858414058058,0.19586301489746724,0.0818626901354686,0.13152811080201737,0.04398745231343863,0.09048804373400524,0.02513550004230638,0.06137965577732342,0.013175663395192076,0.03947218373846843,0.007833250274229256,8.054540445673942,5.694859034779148,3.6076919550986535,2.194766144725486,0.5428010608773747,-0.5128987779399212,3.205035919776401,0.972781557818894,7.004118381274758,1.989423421924358,14.596471138550418,10.955270315902666,16.027835983832365,11.705935809566643,1.9804706347771313,0.6690257680414872,3.5532097002207013,2.2447364856503293,8.001936582340168,1.4247685572589204,3.7570269364245146,2.4407182757235493,20.889366323843042,14.65156976175433,0.3343725631459244,0.6855092820550244,0.7886332245703604,0.8839025661733454,0.9129227734272681,0.9129227734272681,1.666248122531796,579.670248604383,0.0,3.0,2.0,0.0,5.0,0.0,1.0,0.0,0.0,3.1869028232087486,1.3310040299625823,0.785952515374202,0.2824157258762394,0.12903225806451424,0.12903225806451424,51.44053865067707,984.5633495209795,72.75401932616273,31.760108049063852,64.07855601289192,,11.0,348.0,4.923311048817671,14.908855452837393,18.400275416250576,6.544756405912575,5.563451491696996,16.960786791017508,0.0,30.33183534230805,10.30076712495354,0.0,8.6,26.25,13.5,0.5,12.75,0.0,0.047368421052631594,0.75,0.23278592375366552,0.07609594706368894,-0.15668997668997658,0.03026315789473688,0.21399999999999986,0.0,0.670967741935484,0.9052631578947367,0.4381818181818185,0.5948717948717951,0.8749999999999998,10.718739259497614,0.24950976442664796,0.42150976442664795,17.91097962139442,5.637183349251755,3.5275204486946934,28.629718880892035,9.164703797946448,0.5000000000000001,0.11627906976744186,0.0,0.26744186046511625,0.16666666666666666,0.4458948353728465,-0.9235051424096666,-0.09682668350042753,-0.02979048846482795,-0.0710388571084359,0.5541051646271539,1.1476225521675851,0.05621868873644897,0.03702008232798662,0.06375680845375474,-2.6879742825195967,0.6472938939144738,0.5066276528681534,1.2602341562112276,0.8942307692307692,0.46760569241011973,1.4400255773972224,0.6565830344690753,1.0832813405788415,0.4966035950136673,0.5273731898686478,0.489209548305349,0.9570695828226067,0.8383413461538463,0.5983967156755379,1.0606636976417283,1.272559171597633,0.7977824439209257,1.0057012546978037,0.847512112129706,1.0464889574539982,0.6114087202519216,0.43862686758762354,0.5446635660551147,1.0230154553533384,0.9769158614309212,0.6382370355307747,0.6294136220006336,1.145733173076923,0.8481399800266309,1.0528280972174395,0.9868318718541219,1.1400027591800908,0.6725239051072817,0.6992746857504308,0.6022759060492138,1.1775213919241456,0.9707110323886641,1.0191703831993393,1.1753469410458124,1.0042899408284023,0.8573184471986068,1.1405342473862468,0.9727133306503754,1.1509456788731631,1.000216933261467,0.8835759954946004,1.0280809185315904,1.052910834035725,1.0395162205081672,1.2919408436477555,1.3845954320607436,0.9404840848806365,1.2045433674640706,0.6790264231555372,1.028665081366892,0.7314776541805337,1.2841351339102378,1.5102820844099918,1.3504721124333854,0.7894412120873501,1.0078794369645043,0.865207568791137,0.7224040992110015,0.8942307692307692,0.928761651131824,0.9824520160224438,1.0114379194813181,1.029520975694377,0.8819360855622834,0.8111241311619896,0.8444349330033611,1.0637376552055244,1.066778273809524,1.120411402276928,0.8523512522498773,0.9368131868131868,1.1056686322997904,0.8901670029932789,1.0632842331215209,0.8834618075074199,1.1209740711772658,0.9848024588819164,1.0960170694533338,0.937782500611963,1.0268183479532165,1.1414822859508336,1.0205627503366475,0.9935897435897435,1.120820387631306,1.0068618377033736,1.021450753890389,0.8895850433944554,1.1377510144054988,1.1956399834912435,1.1574522589638938,0.9266858972254541,3.5,0.04193245587184981,1.7777777777777786,0.9375,0.8361111111111112,0.47250000000000003,0.1788208616780045,0.15536422902494332,0.11616591080876794,0.07938271604938271,3499.3107430491827,3820.8502873386624,1868.5825397761705,1744.224143973382,11.86880159430973,0.47067348488311167,6.282471386529737,0.8891930999889084,1.0,0.16666666666666666,1.7672934871781263,3.6231922804242926,4.168243795012673,4.6717805845106355,4.825164052322361,4.825164052322361,0.17500000000000002,0.005990350838835687,0.06837606837606841,0.04076086956521739,0.039814814814814824,0.026250000000000002,0.011176303854875282,0.011951094540380253,0.00893583929298215,0.00661522633744856,0.39487056762062256,15.39,7.695266272189349,4.795005202913631,108.5864635634586,1.0,3.8506780959738256,87.38195692106585,,67.955516656002,65.98977917752782,64.64226016482091,67.97346416518786,104.91293954450596,67.13446599658121,68.07279247272814,91.4301543793904,0.053064179002193075,0.13842891557666792,-0.30381264379258455,0.13455528846153836,0.17664641588992436,-0.19594009873298926,0.050174965091777865,-0.04825386630205824,0.13183373532146925,-0.036412911821705425,0.1401964610504757,-0.043799327446605044,-0.03329274207152493,0.16068534110553617,-0.029856917635154048,-0.14818786982248522,0.0024539929666427584,0.14998908144741102,-0.03837445898021704,-0.057323903895672254,0.13833959943275845,0.17475298979659454,0.18973807839147958,-0.09815204945998672,-0.05793842516447369,0.19933254564635033,0.2973929974300298,-0.15327524038461537,0.02443270084332004,-0.044076298573491275,-0.06482049440209872,-0.15334362352938793,0.16913140577250288,0.024107887866063722,0.21180320302766698,-0.19599986004087736,0.027907810391363017,-0.09451081121102536,-0.32033380198415917,-0.08650887573964491,0.08127966130629244,-0.21597884396313824,0.02718666048818947,-0.1880871343776127,-0.06523585819459835,-0.016889590096954458,-0.12439144297763877,-0.0545754829269895,0.06947831594071383,-0.0764532589400985,-0.22025000743312317,0.06177055702917773,-0.0444311798827617,0.1626900308928655,0.07492553610321608,0.18367936679082475,-0.06824262559694926,-0.1938640391260012,-0.11251699645311414,0.1739009847933205,-0.02324625152998777,0.23821930515749726,0.37455884009249424,0.020393559928443657,0.06619597642419928,-0.03682987873624229,-0.030213579463914866,-0.06830027203288021,0.2114800676640507,0.35861998310731874,0.2993207044946446,-0.12474575369866173,-0.06402725563909778,-0.20507043991354557,-0.13118422350443992,0.074496336996337,-0.12758649842537986,0.03196453692894115,-0.058835887953655075,0.09114638611223871,-0.1939776700881852,-0.12645220663631526,-0.20266128832753527,0.07303607662244879,-0.05981207358674466,-0.21499033416857155,-0.0695286921122247,0.0002136752136752458,-0.1306714504117966,-0.06891017088476784,-0.05313057866983816,0.11942179350057534,-0.20659494975829557,-0.2031152801703513,-0.22250484136426787,0.07936790286392863,10.008412563164226,8.100092948934671,0.7937005259840998,17.456241472817332,35.41956013866504,39.11183809614186,41.30708147628821,41.46169201184243,41.46169201184243,38.03382389479186,24.608397723229356,8.238051108706182,5.187375062856318,0.0,13.4254261715625,3424.4687983257695,3129.319690440166,638.8965290118313,27.0,26.0,31.0,37.0,37.0,32.0,28.0,28.0,31.0,260.09094024400014,20.0,4.532599493153256,5.332718793265369,6.1675164908883415,6.985641817639208,7.823645930834952,8.648045999835,9.487593248937424,10.315497860680296,11.156236235215168,0.731182795698925,1.0216774193548386,1.1381564233806867,0.6989641215982122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6731218079969098,1.005439595192916,1.0313417757206962,0.6589425290375105,7.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.431106872771903,12.393687143226153,6.544756405912575,0.0,5.907179729351506,4.794537184071822,4.567099647791355,0.0,0.0,35.31581386325526,10.486762540514666,6.544756405912575,0.0,211.96747733046192,-439.01171264879537,-46.02903243474197,-14.16166814996114,-33.77013174221503,263.408015981139,545.5516368721841,26.72498689142076,17.59843989910271,30.308424270676895,0.45454545454545453,0.7431458456982645,0.18821502776712704,180.18097926319666,0.20979160055357074,40.65009006210784,0.25685415430173564,6.0,0.25,0.3567265761093988,0.7313380523149589,0.8413562026748135,0.9429946436954604,0.973954956570052,0.973954956570052,1.1077,,1.3214285714285716,1.599813866914844,1.4204008994654949,1.3177974512248314,-5.319610065744728,1.420899632802938,1.306536373105155,-2.474281947147792,67.17010000000002,9.717848232889493,0.0,14.867866772744893,0.0,13.08951281182515,0.0,58.40329224599677,0.0,0.0,3.713572066704308,0.0,4.976733742420574,2.3978952727983707,6.415096959171596,4.59511985013459,7.932003152361385,6.580639137284949,9.490317840042412,22.666666666666675,12.118350596730377,3.570929176843679,0.0,0.0,0.0,0.0,0.6304092130679435,1.1947685185185186,31.671999999999993,0.0,22.310459857586032,0.0,-0.6205598072562357,0.0,0.0,0.0,-0.30096938775510185,35.28284912480129,5.316788604006331,5.948339280986494,0.0,20.381568946907738,17.884049995896973,10.114318268765572,5.563451491696996,42.7255224855342,0.0,0.0,0.0,21.667887769544578,20.866776047904203,24.13692818942895,174.7639138421317,,135.7719355676431,131.8111568953804,129.13500444548757,135.80821280919417,211.50575595187868,134.11936361076212,136.0080548009189,183.64166095261697,24.13692818942895,174.76391384213167,,134.58960474057545,130.37974448814083,127.86411943017626,134.62913087915092,215.14548915475666,132.84803236035947,134.8390485723511,185.3345907059287,4.562720063970156,134.9373066397634,,108.3033372920547,105.22499327190982,102.88110589976398,108.3306800404979,163.5541851022331,107.00657026024129,108.48808881602808,144.23896627332778,1.270364641548892,9.198100728533248,,7.145891345665427,6.937429310283179,6.796579181341451,7.147800674168114,11.131881892204142,7.058913874250638,7.158318673732573,9.665350576453525,2.3346602123053217,87.38195692106585,,67.955516656002,65.98977917752782,64.64226016482091,67.97346416518786,104.91293954450596,67.13446599658121,68.07279247272814,91.4301543793904,31.1686274509804,0.0,0.0,0.0,0.0,0.0,0.0,31.971595047341584,0.2691617063492062,2.693224678760393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.427218400162825,353.2733230012792,54.78609810252191,112.31896069315307,129.21555764539286,144.8251981198297,149.5800856219932,149.5800856219932,316.0,109.44949587044903,122.10217031032158,65.10137802091818,90.06,90.06,0.8333333333333334,7.108755465610657,5.321928094887363,3.499100165071871,4.302555737286035,,4.311576875665059,4.311304226660417,4.310406129408698,4.311576554896421,4.291806143084039,4.311445020750764,4.311592907569645,4.305281573264817,0.18416316658273005,0.22645030196242288,,0.22692509871921365,0.22691074877160092,0.22686348049519464,0.22692508183665372,0.22588453384652837,0.2269181589868823,0.22692594250366555,0.22659376701393774,1.8943597259192484,2.1010630898198244,,2.103157587799431,2.1030943493060557,2.102886015409908,2.103157513402369,2.09856154288538,2.1031270057329836,2.1031613061315495,2.101696428014206,185.64999999999984,209.46188470772427,92.77793367918648,,91.55751830713126,91.53515429248803,91.66474881674522,91.55818501640307,93.36136896503245,91.55428096638488,91.55831140574945,92.35040417587811,11.024309721459172,4.883049141009814,,4.818816753006908,4.817639699604634,4.824460464039222,4.8188518429685825,4.913756261317498,4.818646366651836,4.818858495039445,4.860547588204111,5.98639567441315,5.172062714060084,,5.158821276336469,5.158576984585882,5.1599917729528455,5.158828558172594,5.1783315373361685,5.1587859171650825,5.158829938598158,5.167443969374153,1.1947685185185186,25.260829227173474,13.327450125915584,0.9685007768539518,-0.6390609515411101,9.421089164379659,2.697261432350718,0.2691617063492062,0.0,221.49787434970418,100.76414410198389,-208.6954094699918,-21.881074000321135,-6.732109982902961,-16.053493036153217,125.21771553926395,259.3418785050658,12.704403827255206,8.365867048550507,14.407882139170322,806.0,23.0,1.1288820433146987,0.3698828442545118,0.0,0.0,0.2041241452319315,0.028127582021297746,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.03333333333333333,0.25343678769327627,0.07231190766119745,0.30447659200159516,0.059354232678762144,13.664925939000156,10.044553691637347,9.16470379794645,5.681746775615708,8.02111495140751,3.914783187655095,6.071753461821484,2.5377433941995267,4.866540099674643,1.6275357355972295,3.348057618158194,0.930013501565336,1.9641489848743494,0.42162122864614643,1.105221144677116,0.21933100767841915,2.2209488756123217,0.6300350578656604,3.2537218943613153,0.7358527673503499,4.067346157093277,0.6918053526914332,63.0207258452357,33.98069698485958,26.936124835735352,22.614451574515915,22.115725272714915,22.115725272714915,92.0,103.0,34.847515999999985,17.492483999999997,0.4838709677419355,58.07,6.305555555555555,4.3055555555555545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,11.0,31.0,0.0,0.0,32.0,11.0,2.0,7.0,25.0,13.0,20.0,19.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,5.0,1.0,1.0,19.0,7.0,0.0,4.0,3.0,0.0,2.0,5.0,0.0,0.0,0.0,1.0,2.0,3.349904087274605,5.23810281689052,3.865979066926739,4.319153392855371,4.799399727137659,5.01520815594139,4.926347477573667,4.851541863421509,4.916782385289909,5.290474189087011 +54454,CCC(C)(C)C(=O)O[C@H]1C[C@@H](C)C=C2C=C[C@H](C)[C@H](CC[C@@H]3C[C@@H](O)CC(=O)O3)[C@H]21,0,18.5,5.903235294117647,2.8823529411764706,5.176470588235294,163.58803100270535,72.42725679411768,1.3210854468273823,5.9654485294117645,3.887357026143791,7.508428117647056,188.9861576019173,20.942857142857143,6.1242857142857146,3.6,4.728571428571429,144.19972490326361,77.36914565714285,1.7261969636571428,6.272921428571428,2.589484126984127,7.593909142857142,243.34710706569496,17.014814814814816,5.981407407407407,3.259259259259259,3.4296296296296296,152.45040663057986,61.68438577037036,1.4407356948135484,6.091545925925925,2.4856995884773663,7.525852059259259,196.48230450779698,13.72361809045226,5.932562814070353,2.663316582914573,2.3115577889447234,156.97038072960183,47.404475989949745,1.2499398760774525,6.021140703517587,2.4176437744276944,7.527541105527638,164.58794715556323,11.519148936170213,5.876425531914895,2.348936170212766,1.8680851063829786,162.68322476422313,38.74771142978722,1.0850550107854509,5.937832765957447,2.547931442080378,7.520970961702129,138.69100732644145,11.44700460829493,5.842304147465438,2.4654377880184333,1.7649769585253456,161.93338049036794,38.42405642396313,1.125978037265613,5.910152073732718,2.281874039938556,7.486222304147466,143.9586572475084,12.136150234741784,5.780516431924881,2.488262910798122,1.943661971830986,159.1261045416014,41.367422755868546,1.1907879795337795,5.864664319248825,2.2247652582159625,7.40303682629108,152.31499599311928,11.665254237288135,5.751440677966102,2.360169491525424,1.7330508474576272,160.7696922636639,39.74823138135592,1.15135099453508,5.828553389830509,2.2484110169491522,7.387539186440677,146.26333276083798,10.661157024793388,5.748636363636366,2.0867768595041323,1.512396694214876,159.82826877685181,34.67806200413224,1.1209280315175292,5.82803305785124,2.339187327823692,7.383156214876033,138.34951372737277,7.257785467128027,0.11496539792387539,0.015764947523321617,0.6323529411764706,3.346020761245675,1.2734673938980003,34.537076544117646,0.22788807263145763,0.10976027249134936,1.476491914167628,0.07350314878892732,50.61247978264365,0.28423133959466074,9.886307465680022e-07,-0.008618077684842318,0.21428571428571427,1.2052397429560056,-0.008211750596638744,1.3535571214285695,0.00035132325097614005,0.000998130869995276,-0.0865788656148734,-0.001236147108255099,1.2611722179457903,0.7132384980135842,0.02006074586697431,0.0009485539804207348,-0.046296296296296294,0.32936050237088266,0.012239946948952267,3.3007677648148133,0.0029445426172553164,0.018613921408432762,0.16659238745425548,0.012975381058567197,1.8927481099292418,-0.6445723426822694,-0.008750499904366047,-0.0008818721397382329,-0.031407035175879394,-0.29074437933612707,-0.15559306633699854,-3.092384785175879,-0.027267276155881894,-0.008297000247778588,-0.08446078220060317,-0.005806419850115647,-5.478255815010161,-0.26692188765368463,-0.0022983140690568675,0.0014577003072878544,-0.0031914893617021275,-0.31423102407421033,0.006569264526671721,-1.259096430851064,-0.0001472526178479782,-0.002798689262313135,0.010541356587482717,-0.0006543813296031975,-0.9866937823549642,-0.5032449412402531,-0.01633568797537987,-0.001355403206531455,0.001152073732718894,-0.4384577360355907,0.08649673506788451,-2.2786483652073737,0.013483704624348026,-0.015498074063591235,-0.16331187064484234,-0.009917174812239894,0.7616157684156127,-0.2811215621294086,-0.005427977321831796,-0.00010145627899826717,-0.05046948356807512,-0.13226765436912125,-0.05198799015007183,-1.3335263861502344,-0.00909760670870393,-0.0050278090834511005,-0.03399981560676374,-0.003639138294588749,-1.9197286779549394,0.10462729458682773,0.0006502551170019178,0.001211300015803107,-0.1059322033898305,-0.21441557679901477,0.03524071672763514,0.5101792097457628,0.006145361118384743,0.0006584588147322578,-0.02896686777901589,0.00043759398275761895,1.1612422081923963,-1.1931281992622036,-0.008346535502873982,-0.001866829191849091,-0.0640495867768595,-0.1904544024707598,-0.2565739402994323,-5.7541108223140505,-0.04669409963996501,-0.009168087270153561,-0.08180515688895881,-0.00426945797706539,-10.26964251363638,,,0.4722222222222223,0.7583333333333333,0.16666666666666666,0.0,0.5916666666666667,-0.425,1.486425273179173,0.02709403097650629,0.03569403097650629,0.5320408406918775,0.10692756382467496,0.3631188572779219,2.0184661138710505,0.4700464211025969,2.005305013374774,1.6944864290000388,0.0,0.31081858437473525,0.0,0.31081858437473525,6.151057710529426,1258.0,401.42,196.0,352.0,11123.986108183964,4925.053462000003,89.833810384262,405.65049999999997,264.34027777777777,510.5731119999998,12851.058716930378,1466.0,428.70000000000005,252.0,331.0,10093.980743228452,5415.840196,120.833787456,439.1045,181.26388888888889,531.57364,17034.297494598646,2297.0,807.49,440.0,463.0,20580.80489512828,8327.392079,194.49931879982904,822.3586999999999,335.56944444444446,1015.990028,26525.11110855259,2731.0,1180.5800000000004,530.0,460.0,31237.10576519076,9433.490721999999,248.73803533941305,1198.2069999999999,481.11111111111114,1497.9806800000001,32753.001483957083,2707.0,1380.9600000000003,552.0,439.0,38230.55781959243,9105.712185999997,254.98792753458096,1395.3907000000002,598.7638888888888,1767.4281760000003,32592.38672171374,2484.0,1267.78,535.0,383.0,35139.54356640984,8338.020244,244.337234086638,1282.5029999999997,495.1666666666667,1624.51024,31239.028622709324,2585.0,1231.2499999999998,530.0,414.0,33893.860267361095,8811.261047,253.637839640695,1249.1734999999996,473.875,1576.8468440000001,32443.094146534408,2753.0,1357.34,557.0,409.0,37941.64737422468,9380.582605999998,271.7188347102789,1375.5386,530.6249999999999,1743.459248,34518.146531557766,2580.0,1391.1700000000005,505.0,366.0,38678.44104399814,8392.091005000002,271.2645836272421,1410.384,566.0833333333335,1786.723804,33480.58232202421,493.52941176470586,7.8176470588235265,1.07201643158587,43.0,227.5294117647059,86.59578278506402,2348.521205,15.49638893893912,7.463698529411756,100.4014501633987,4.998214117647057,3441.6486252197683,19.89619377162625,6.920415225976015e-05,-0.6032654379389623,15.0,84.36678200692039,-0.574822541764712,94.74899849999987,0.024592627568329806,0.06986916089966931,-6.060520593041137,-0.08653029757785693,88.28205525620533,96.28719723183387,2.708200692041532,0.1280547873567992,-6.25,44.46366782006916,1.652392838108556,445.60364824999976,0.3975132533294677,2.5128793901384228,22.48997230632449,1.7516764429065717,255.52099484044766,-128.26989619377161,-1.7413494809688435,-0.17549255580790835,-6.25,-57.85813148788928,-30.963020201062708,-615.3845722499999,-5.426187955020497,-1.651103049307939,-16.807695657920032,-1.155477550173014,-1090.172907187022,-62.726643598615894,-0.5401038062283638,0.34255957221264577,-0.75,-73.84429065743943,1.5437771637678543,-295.88766125,-0.03460436519427487,-0.6576919766435867,2.4772187980584386,-0.1537796124567514,-231.87303885341657,-109.20415224913492,-3.5448442906574313,-0.29412249581732575,0.25,-95.14532871972318,18.76979150973094,-494.4666952500001,2.9259639034835216,-3.363082071799298,-35.43867592993079,-2.152026934256057,165.27062174618797,-59.87889273356403,-1.1561591695501725,-0.021610187426630907,-10.75,-28.173010380622827,-11.0734419019653,-284.04112024999995,-1.9377902289539373,-1.0709233347750844,-7.241960724240677,-0.7751364567474035,-408.9022084044021,24.692041522491344,0.1534602076124526,0.28586680372953327,-25.0,-50.60207612456748,8.316809147721893,120.40229350000001,1.4503052239387995,0.15539628027681285,-6.83618079584775,0.10327217993079807,274.0531611334055,-288.7370242214533,-2.019861591695504,-0.45177266442748004,-15.5,-46.08996539792387,-62.090893552462624,-1392.4948190000002,-11.299972112871531,-2.218677119377162,-19.796847967128034,-1.0332088304498244,-2485.253488300004,0.7350559094982761,0.6365450045456985,0.44066851978368465,0.3621492977890546,0.2921762740908794,0.2181189313012289,0.18310122570119644,0.12453534065776348,0.11384473598743165,0.06772295841458563,0.06922958121916555,0.04041567716779495,0.046229091579286424,0.02426379227193641,0.029545240834808268,0.015175033358893648,8.031327662082973,5.704733842511823,3.5579537202427165,2.204666104022503,0.43342359288341786,-0.49447571996983897,4.0230200227107495,0.9772123350771565,6.030566866576432,0.9873952090708543,13.645170898453369,10.965045201476947,16.016439199989296,11.715772410684881,1.975283461528321,0.740404985723426,3.504146385483678,2.2546510166464264,7.009362714278092,1.1437779489255386,3.717043403807454,2.4506536925601123,20.88416594736017,14.699769715405287,0.20561671280290464,0.46297954585436635,0.7119482860782851,0.8624729913709539,0.8766828241729933,0.8766828241729933,1.7054337787592477,706.3275441224729,0.0,2.0,5.0,0.0,3.0,9.0,1.0,4.0,1.0,4.810695451906781,3.2126129420275813,1.666653160107769,0.731977022217901,0.6437417281002533,0.6437417281002533,275.6943826861376,1723.2913350544263,59.25002040022392,25.34251963315333,50.116837682619334,,13.0,632.0,11.518956857145081,14.69560176298435,36.48527102048771,24.17453976141019,25.683286491704038,5.573104530069267,0.0,20.771211599071872,32.07553471988289,9.473725907600098,14.16666666666667,22.75,5.0,0.0,17.75,0.0,0.02777777777777768,-12.75,0.0933082535339716,0.012935729847494692,-0.0803725236864769,0.01702508960573479,0.14353020134228134,0.0,0.5328431372549014,0.8277777777777773,0.4395348837209298,0.5199074074074067,0.8107526881720425,44.59275819537519,0.8128209292951887,1.0708209292951887,15.961225220756326,3.2078269147402487,10.893565718337658,60.553983416131516,14.101392633077907,0.5704697986577186,0.24705882352941172,0.035294117647058816,0.35294117647058815,0.76,0.29630689578500047,-0.7545340934143985,-0.05777759265082468,-0.011096089609035272,-0.03593019492449517,0.7036931042149994,1.7919273765943402,0.029774576258349804,0.02635187318521089,0.038126114395624265,-3.5615421206365845,0.9716311935978206,0.7358260776093734,1.5428502179934673,1.1463455149501662,0.5489714137981976,1.3329308216672224,0.9812819189828375,1.3134426219597484,0.7447395425561908,0.6935372222594373,0.7445961350766831,1.2034063485616318,0.8985092482231934,0.6611869130228799,0.9238044356735944,1.638931955211025,0.9117583974874562,1.1619212167725679,0.9067290831999046,1.152960573934084,0.6773747252542366,0.5288278940408717,0.6526640288268889,1.0817381000005417,1.0996987320392186,1.0784002782913817,1.256016173982792,1.16664718943555,1.1260789469581618,1.2037991465522788,1.1016351385574894,1.1944417161827319,1.0740585198323487,0.8803067385944553,1.0915652140738963,1.156317791221639,1.0548596353308142,1.1633799209131808,1.078016716371641,0.9912419594260268,1.2073164426059977,0.9739410746148921,1.0516899069793715,0.9738361335627324,1.1531307690974266,1.0654557344871918,1.1741211488735297,0.9908134631346999,1.0757323014560893,1.216239818580895,1.1362227676911083,1.048333511949416,1.2043310585734777,0.9275378902780389,1.0709813231389116,0.9320181992903736,1.2060969469416745,1.1183735109591346,1.2226292049833525,0.9711254923948499,1.006703990330541,0.8930469448241998,0.9190041788783159,1.1850638716017032,0.9836317976802558,1.0842901396421079,1.0099170455730455,1.0851614652677455,0.9042970690239408,0.7853184190398917,0.8805572429666912,1.070205333380106,0.9500103533261954,0.852495982706508,0.7366209135582685,1.3402640914465906,1.03749857588558,0.9874295776162105,0.9523328151997601,0.9912756260570917,0.8642473639901157,0.8872773890556405,0.8367340159399226,0.9899388717873168,1.1250428491218392,0.9113969056458282,0.9024388793565393,1.0108591197386123,0.9430258446075874,1.2254201280097436,1.1304052219365608,1.2318910618201877,0.9358184705109258,0.9395404550435679,0.8800483639735497,1.2217077746374574,9.0,0.21895724926027957,4.000000000000002,2.8125,2.1422222222222227,1.2013888888888888,1.183673469387755,0.736111111111111,0.5260770975056689,0.2750000000000001,5835.72714848009,7004.664327928482,2748.5545709393027,2373.4694164237344,13.699681774770763,0.4702820458007266,7.25696740291264,0.8877970664815568,1.0,0.76,1.2767673893435574,2.874849899222758,4.42080968114257,5.355485819032438,5.443721113150086,5.443721113150086,0.28125,0.01152406575054103,0.08510638297872344,0.05625,0.04657004830917874,0.027304292929292928,0.02518454190186713,0.014722222222222223,0.01283114871965046,0.009821428571428573,0.5705641313829045,24.638671875,10.29244001810774,6.081011203677105,180.4455306596892,1.0,4.32158302476301,168.3559048034593,,153.14291105094804,151.72966530397628,156.19411107209658,153.17200293482338,202.6307458275641,152.79754982966367,153.20253632592994,177.70577514396467,0.03916226800612966,8.599376546520776e-06,-0.546660727674057,0.3388704318936877,0.360200915940316,-0.006448339891532766,0.039191421419225686,0.0015416482614441288,0.009093735350137206,-0.058638225366565724,-0.016817607525969214,0.024918206406046903,0.09827219352845094,0.17449377142379466,0.06016854664549356,-0.07321274763135227,0.09843349036730618,0.009611511851502214,0.09557171871795268,0.01292100364558023,0.16958705537014587,0.11282986778032705,0.17652823412813898,0.03739686571489261,-0.08881115949233653,-0.07611420533820282,-0.05593879322678682,-0.0496669393479023,-0.08689258079435441,-0.12218064402947795,-0.08953811655788724,-0.11965205480489864,-0.07559201575809232,-0.05720368759907359,-0.07899552530449336,-0.10823922950498857,-0.03677731848958992,-0.01999135488208984,0.09246464697274946,-0.005047006432459178,-0.09391185724658405,0.005158565156948096,-0.036456369700043796,-0.0006461620222051562,-0.02549819892742805,0.007139461101231567,-0.008902765941120811,-0.01949506893541556,-0.06933863552726252,-0.14209221444348485,-0.08597575123712664,0.001821884042439181,-0.13103855813266357,0.0679222220233874,-0.06597687451329673,0.05916810155375695,-0.14119930382655255,-0.11060803589764957,-0.13492176832747932,0.01504798365316988,-0.03873379330412352,-0.04721400890923671,-0.006435560844600306,-0.07981220657276995,-0.03952983672458742,-0.040823966439329076,-0.03861144368854695,-0.039921381596028725,-0.045807184779423374,-0.023027430953410356,-0.04950996460082207,-0.03792994704466673,0.014415870386456836,0.005656094170460626,0.07683501730730091,-0.16752069373275522,-0.06408076700611712,0.027673042039785264,0.014771928049383685,0.026966576387361305,0.005999063229222154,-0.01961871074339473,0.005953404581540038,0.02294379198923616,-0.16439287227021543,-0.0726004141559242,-0.11841645454813139,-0.10128771862387084,-0.05691967147264692,-0.2014766467746585,-0.16660677156515408,-0.2048992696317155,-0.08352828452458638,-0.055405082888704105,-0.05808537521740227,-0.20290731767618528,7.784998940627467,24.61994790296829,12.39260265927416,11.27736030152142,27.408154811207574,34.26233231039842,36.40992703386199,36.49886821033258,36.49886821033258,60.159150401243224,50.83459287000116,0.0,9.324557531242057,0.0,9.324557531242057,7021.711669166345,5621.665324273349,2518.64975308511,141.0,47.0,59.0,75.0,95.0,108.0,120.0,130.0,144.0,418.271924316001,32.0,5.0689042022202315,5.916202062607435,6.814542897259958,7.682943169878292,8.584290934948731,9.462265724715845,10.365112427854497,11.249259353467496,12.153088448688274,0.5588235294117646,0.9623529411764705,1.1314328476255209,0.5124885521605196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6260843078548786,0.948961937716263,0.9929737372006341,0.5715988793237631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,5.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,0.0,7.0,0.0,1.0,0.0,0.0,14.580253302440804,12.207932775496605,0.0,0.0,0.0,9.589074368143644,0.0,0.0,0.0,38.999271919573516,62.85758355963873,12.338727669087403,17.93977848007109,200.52261227475552,-510.6231060231663,-39.1003853575404,-7.5091633238700926,-24.315386001103157,476.21699496089315,1212.6682290312601,20.149635042683517,17.83335630928324,25.801451681516177,0.46153846153846156,0.8133063355725382,0.18150196739132474,59.818173020076,0.12224292942184802,0.3864992481610676,0.18669366442746205,7.0,0.1875,0.20973719637216132,0.47225748627851594,0.7262154688133676,0.8797566340351483,0.8942512266788586,0.8942512266788586,4.585600000000005,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,115.45480000000006,24.169327670584448,0.0,0.0,29.08661465404235,91.45551489925408,0.0,23.80116485057091,0.0,0.0,4.174387269895637,0.0,5.53338948872752,0.0,7.079184394609668,0.0,8.714895850248494,0.0,10.398641006907823,37.99999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.44,0.0,24.56508668502449,0.0,0.0,0.0,6.77683165627362,0.0,0.8420234233982993,76.93743363853542,0.0,0.0,0.0,35.35703713398931,19.06280027574374,29.08661465404235,73.14361573600918,23.80116485057091,0.0,0.0,0.0,34.84922154691533,42.57373293413174,36.87480330212714,336.7118096069187,,306.2024887685628,303.3644512628963,312.33051074890045,306.26091734328054,405.7542570302692,305.50885934924986,306.3222410517869,355.54454844728195,36.87480330212714,336.7118096069187,,305.10719558878975,302.1263560248012,311.5551065251616,305.16859697951884,410.67296297682395,304.378396770264,305.233042510431,357.4065226782195,4.962074753078223,241.48532797752006,,221.39148403490927,219.41316902237776,225.6774845208301,221.43225402817853,293.38125239656716,220.90762889566435,221.47504617056688,256.417404907132,1.2291601100709046,11.223726986897288,,10.206749625618759,10.112148375429877,10.411017024963348,10.208697244776017,13.525141901008972,10.183628644974995,10.210741368392895,11.851484948242732,2.4810373765391125,168.3559048034593,,153.14291105094804,151.72966530397628,156.19411107209658,153.17200293482338,202.6307458275641,152.79754982966367,153.20253632592994,177.70577514396467,64.52941176470588,0.0,10.305005915640299,0.0,0.0,0.0,9.917686908488399,67.52221412964312,3.7938877348112383,0.0,11.62223202052477,0.0,0.2440919026339493,0.0,-0.4835129134617324,0.0,0.0,38.86872379401589,550.3966100976241,86.8201824753619,195.48979314714754,300.6150583176948,364.1730356942058,370.17303569420585,370.17303569420585,981.0,139.29660922164075,126.34299713802467,65.90049801038916,72.83,72.83,0.8571428571428571,7.466227556215481,6.0,4.333081350957915,5.394310134928163,,5.395318160405738,5.395609387295955,5.394580276154571,5.3953118111007905,5.376630761929757,5.3953924640773225,5.395305132211856,5.387691691242747,0.1444360450319305,0.17981033783093875,,0.17984393868019127,0.1798536462431985,0.1798193425384857,0.17984372703669302,0.17922102539765858,0.1798464154692441,0.17984350440706187,0.1795897230414249,2.56489120599183,2.783957008011659,,2.7841438588378256,2.784197835085743,2.7840070856778825,2.784142682019611,2.780674214234428,2.784157630622497,2.784141444112832,2.7827293242061093,342.68000000000137,381.1017018481944,190.5939106494149,,189.87822942601565,189.8269588934709,189.9948818632557,189.87930447407467,192.01418090633842,189.86552616119195,189.88043361463676,190.88645444678252,12.70339006160648,6.353130354980497,,6.3292743142005214,6.32756529644903,6.33316272877519,6.329310149135822,6.400472696877947,6.328850872039732,6.329347787154559,6.36288181489275,7.041678562159036,6.348757331053692,,6.344995257608024,6.344725203184574,6.345609422903961,6.345000919368295,6.356181516855637,6.34492835320398,6.3450068659732075,6.3502910606056195,11.62223202052477,24.56508668502449,9.917686908488399,0.7846613747720799,0.7758697529846167,0.0,9.612790675898678,10.305005915640299,0.0,437.2920116674346,135.70159387268433,-345.55888021556456,-26.460779429624395,-5.0817482384641846,-16.45518477216974,322.2749021287757,820.6606210217647,13.636056104727306,12.068538544437716,17.46086427705883,2440.0,50.0,3.140979978228166,2.15755983623159,0.2041241452319315,0.1767766952966369,0.7454963569654446,0.2782961546960605,0.14433756729740643,0.02946278254943948,0.0,0.0,0.0,0.0,0.0,0.0,0.17915249285508827,0.1053794158928871,0.5165912672051698,0.24563431687078024,22.051677284948283,19.096350136370955,14.101392633077909,11.588777529249747,13.732284882271331,10.251589771157757,10.80297231637059,7.347585098808045,8.538355199057374,5.079221881093922,6.576810215820727,3.83948933094052,4.992741890562934,2.6204895653691325,3.5454289001769923,1.8210040030672379,6.205498566718776,3.5954998498944954,8.737059895561545,4.461747417886151,12.320006818461064,5.995051319017512,108.51354273028093,53.230291952641295,33.716252738773086,24.815165014105798,24.15273845337748,24.15273845337748,158.0,185.0,71.09813399999997,43.32986600000003,0.2647058823529412,154.05,11.92361111111111,6.486111111111111,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,68.0,0.0,0.0,70.0,0.0,4.0,4.0,66.0,4.0,32.0,66.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,5.0,1.0,1.0,30.0,5.0,0.0,0.0,5.0,0.0,3.0,6.0,0.0,0.0,0.0,0.0,0.0,3.6109179126442243,5.780743515792329,4.04305126783455,4.3694478524670215,4.672828834461906,4.990432586778736,5.204006687076795,5.37989735354046,5.564520407322694,5.755742213586912 +657298,CCCc1cc(=O)[nH]c(=S)[nH]1,0,32.38095238095238,6.1525428571428575,2.857142857142857,6.402116402116403,164.38086816643286,128.39110409523806,1.6876968118328577,6.232890476190477,4.47684368672023,7.736528047619051,217.86914841566556,26.38095238095238,6.395619047619048,3.380952380952381,6.126984126984128,151.37466080494292,99.83830371428567,1.8023875752380951,6.529880952380952,3.0433568489124045,7.83038257142857,252.32945558024318,22.944444444444443,6.170180555555555,3.0,4.4259259259259265,156.7519172467374,85.88296233333334,1.478034938729028,6.27773888888889,2.9902263374485596,7.692862333333334,198.5469211044593,17.155555555555555,6.0118888888888895,2.3333333333333335,2.9185185185185185,163.17093432100333,60.659159955555566,1.3351145388997776,6.098144444444445,2.6406721536351165,7.644016266666668,165.60411595011539,18.641025641025642,5.840076923076923,2.1538461538461537,1.9059829059829059,163.4947007729471,68.70640858974359,1.2592454539240254,5.9259051282051285,2.5904558404558404,7.49889882051282,153.69037321740885,14.3,6.078633333333333,1.8666666666666667,0.9777777777777777,164.15139237224122,45.83546,1.2527933092465335,6.158000000000001,2.7472222222222222,7.761903800000001,144.48934276323155,12.416666666666666,5.807875,1.6666666666666667,0.4444444444444444,168.01118127358552,40.14491291666666,1.0739555575330002,5.873208333333333,2.611882716049383,7.5551994166666665,116.19420028800523,8.416666666666666,6.220500000000001,1.25,0.0,174.5061741218365,16.818900000000003,0.9673825064748333,6.2571666666666665,3.032407407407407,8.06652,91.03662159363465,1.0,4.840000000000001,1.0,0.0,184.91765202424895,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,14.013605442176871,0.11967120181405891,0.021297306640632084,0.5351473922902493,3.676996724615772,1.6935277791673224,62.680780058956934,0.3531294567197051,0.11315691609977316,1.6518356771149239,0.07127661678004532,52.38445299267358,-0.1496598639455779,-0.011529251700680334,-0.017847440171010306,0.11564625850340142,1.3318216175359037,-0.20299010568072748,-0.6070465124716664,-0.0014289887074827826,-0.00922222222222239,-0.07808432014781218,-0.008500825396825359,-0.20238735110557673,2.1451247165532887,0.03535750188964471,0.010123638141535626,0.030990173847316713,0.6242966322331404,-0.48779275762275476,9.340226594482235,-0.05358042922823023,0.03460935374149655,0.2550128723948047,0.024886229780801194,-4.9974281474521725,-0.8580498866213159,-0.017317974300831433,-0.008609510671705,-0.017687074829931978,0.1532207944906359,0.10926316079023125,-3.6849750452003036,0.013152837787458795,-0.015934693877551018,-0.14382332417801752,-0.012024012547241118,1.1774458079409584,4.151229722658296,0.028442351299494184,0.006147679661783139,-0.134658991801849,-0.2789503265693742,0.03389226078291636,18.680494176696325,0.03566966096809327,0.031170434327577254,0.16244023901284335,0.02072693389150527,7.77833477427104,-5.76122448979592,-0.0450004081632653,-0.002973495442976437,-0.12879818594104311,-1.56130007558579,-0.06785393888331429,-26.177581535147397,-0.07487772892636237,-0.047610090702947847,-0.4329127124100669,-0.027091718367346897,-16.637910853919223,-1.715986394557824,-0.013442630385487481,0.002324260665764633,-0.07482993197278917,-1.0262030738221215,-0.1285462878043827,-7.476061062925165,-0.019539738564582288,-0.013280328798185853,-0.08788228368622258,-0.011914356859410445,-3.3097619672830585,-13.573129251700683,-0.09512596371882083,-0.0036739990454245828,0.14342403628117906,-1.8145628621819103,0.06572146584893981,-60.89698163832201,-0.14436583580431644,-0.10140731292517012,-0.9201582324745172,-0.06066233503401347,-25.252315011582652,10.795918367346937,0.06563356009070312,0.003967540014172151,0.27437641723356,2.7251196775006297,0.7115736299935832,50.38430803628122,0.23857535477262762,0.07497165532879863,0.46345598138661054,0.031194287981859196,53.126688891957,,,0.496969696969697,1.1136363636363635,0.5,0.09090909090909091,0.6136363636363636,-0.11363636363636363,0.6565937090522559,0.01769710996002322,0.025515291778205038,0.5817868046865565,0.2045793465287119,0.2699247764542735,1.2383805137388124,0.4745041229829854,1.9460618359778055,1.264993233469083,0.36154979378570445,0.15975940436150912,0.0,0.6810686025087228,8.09768494952381,680.0,129.20340000000002,60.0,134.44444444444446,3451.9982314950903,2696.2131859999995,35.44163304849001,130.8907,94.01371742112482,162.46708900000007,4575.252116728977,554.0,134.30800000000002,71.0,128.66666666666669,3178.867876903801,2096.604377999999,37.85013908,137.1275,63.910493827160494,164.438034,5298.918567185106,826.0,222.12649999999996,108.0,159.33333333333334,5643.069020882546,3091.7866440000003,53.209257794245005,225.99860000000004,107.64814814814815,276.94304400000004,7147.6891597605345,772.0,270.535,105.0,131.33333333333334,7342.69204444515,2729.6621980000004,60.08015425048999,274.41650000000004,118.83024691358025,343.98073200000005,7452.185217755192,727.0,227.763,84.0,74.33333333333333,6376.2933301449375,2679.549935,49.11057270303699,231.11030000000002,101.02777777777777,292.45705399999997,5993.924555478945,429.0,182.359,56.0,29.333333333333332,4924.541771167236,1375.0638,37.583799277396004,184.74000000000004,82.41666666666667,232.85711400000002,4334.680282896947,298.0,139.389,40.0,10.666666666666666,4032.2683505660525,963.47791,25.774933380792003,140.957,62.68518518518519,181.324786,2788.6608069121257,101.0,74.64600000000002,15.0,0.0,2094.074089462038,201.82680000000002,11.608590077697999,75.086,36.388888888888886,96.79824,1092.4394591236157,3.0,14.520000000000003,3.0,0.0,554.7529560727469,3.0481920000000002,1.3338387145469999,14.520000000000003,3.0,20.155392,93.25123329279079,294.2857142857143,2.513095238095237,0.4472434394532738,11.238095238095235,77.21693121693121,35.56408336251377,1316.2963812380956,7.415718591113807,2.3762952380952362,34.6885492194134,1.4968089523809518,1100.0735128461451,-3.142857142857136,-0.242114285714287,-0.37479624359121644,2.4285714285714297,27.968253968253975,-4.262792219295277,-12.747976761904994,-0.030008762857138434,-0.1936666666666702,-1.6397707231040557,-0.17851733333333256,-4.2501343732171115,77.22448979591839,1.2728700680272096,0.3644509730952825,1.1156462585034017,22.474678760393054,-17.56053927441917,336.24815740136046,-1.9288954522162884,1.2459367346938757,9.180463406212969,0.8959042721088429,-179.9074133082782,-38.612244897959215,-0.7793088435374145,-0.387427980226725,-0.795918367346939,6.894935752078615,4.916842235560407,-165.82387703401366,0.5918777004356458,-0.7170612244897958,-6.472049588010789,-0.5410805646258503,52.98506135734313,161.89795918367352,1.1092517006802731,0.23975950680954244,-5.251700680272111,-10.879062736205594,1.3217981705337378,728.5392728911567,1.3911167777556377,1.2156469387755129,6.33516932150089,0.8083504217687055,303.35505619657056,-172.8367346938776,-1.350012244897959,-0.0892048632892931,-3.8639455782312933,-46.8390022675737,-2.0356181664994284,-785.3274460544219,-2.246331867790871,-1.4283027210884354,-12.987381372302007,-0.8127515510204069,-499.1373256175767,-41.18367346938778,-0.32262312925169956,0.05578225597835119,-1.79591836734694,-24.628873771730916,-3.085110907305185,-179.42546551020396,-0.46895372554997494,-0.3187278911564605,-2.109174808469342,-0.28594456462585066,-79.4342872147934,-162.8775510204082,-1.14151156462585,-0.04408798854509499,1.7210884353741487,-21.774754346182924,0.7886575901872778,-730.7637796598641,-1.7323900296517973,-1.2168877551020414,-11.041898789694207,-0.7279480204081616,-303.02778013899183,32.38775510204081,0.19690068027210936,0.011902620042516453,0.82312925170068,8.17535903250189,2.1347208899807497,151.15292410884365,0.7157260643178829,0.22491496598639588,1.3903679441598316,0.09358286394557759,159.380066675871,0.7515986103183288,0.6476869994016521,0.4745041229829855,0.35950063835428847,0.3265821964722055,0.197942798637879,0.19820438666493817,0.1026403960940842,0.1451359787809735,0.06079359780735785,0.0870723567149592,0.03220865505686825,0.07328615680805721,0.023317686791271695,0.043415245245642074,0.013364226379154846,16.00441268589432,5.7573898010396976,3.545591551666388,2.2210173750798794,0.4527529339132058,-0.3762389750911243,3.1024117707580032,0.9771607312954713,6.02204564755847,0.6534416136958773,14.555860448356176,10.312951207677798,32.06220048017448,11.775297636344634,2.9356169803472287,0.7489219190322427,3.491444489721924,2.2829152599070515,7.008277744075359,1.1952094951002392,3.7040420118444435,2.483776568040282,24.440467715205195,14.702696187967884,0.38809997505250016,0.7123408877978084,0.8462838948116664,0.8670557321436217,0.8670557321436217,0.8670557321436217,2.3029892556420544,310.53407724797967,0.0,1.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,2.6128935906322313,1.1262611644953928,0.5121375001030226,0.4168994048649277,0.4168994048649277,0.4168994048649277,38.648427150864904,378.2257960751534,33.932972764195824,18.010752194054923,39.04282316882207,,6.0,103.0,0.0,4.794537184071822,5.559266895052007,4.771065770590158,18.53557124070048,0.0,6.06636706846161,0.0,16.89169424158504,12.217873443046695,5.466666666666667,12.25,5.5,1.0,6.75,0.0,0.0030303030303030195,-1.25,0.1634920634920633,0.025810904071773555,-0.13768115942028974,0.08717948717948709,0.14057342657342653,0.0,0.5968253968253971,0.8666666666666667,0.43333333333333385,0.5710144927536236,0.7794871794871796,7.222530799574814,0.19466820956025543,0.2806682095602554,6.399654851552121,2.250372811815831,2.9691725409970084,13.622185651126935,5.2195453528128395,0.5734265734265734,0.3048780487804878,0.0,0.27439024390243905,0.42857142857142855,0.4451672255979593,-0.477763228108975,-0.06015564353588359,-0.022750629909951185,-0.06825188972985356,0.5548327744020405,0.5954586998243582,0.03612972575517172,0.02835517618211229,0.04253276427316844,-2.70980425677534,0.6148867313915858,0.8596873519658927,1.930854781103069,0.974576271186441,0.5063724818418529,1.268358056262171,0.6295725997380875,0.7700923345421014,0.8305445451302752,0.5677651883919881,0.8228097818762887,0.9308724241183493,0.5616235167206042,0.4955597663034896,0.486373679651065,1.1122881355932206,0.738260015531497,1.299180604404682,0.5785947910955029,0.951662506931821,0.4884003110083322,0.46029549487459065,0.39968100816038654,1.0334637496907915,0.9816612729234089,1.0777767250907941,1.2928757575331693,0.9491525423728815,0.8982230140240283,0.8884779543415077,0.9814238248501562,0.8908363451160694,1.0751002293820047,0.9858800947311006,1.0904608453598705,0.9252386192443379,0.6038088125466767,0.5855788361330758,0.5716126716776067,1.2320730117340288,0.9917669010446865,0.8533329772115699,0.6082709450990486,0.8085634660908912,0.5718770530542356,0.7119687073909584,0.5257603645816056,0.8301696029062244,1.53705501618123,1.4929531027948837,1.1705981684903584,1.0381355932203393,1.4077703165684528,1.0084815783795462,1.5306205849361565,1.2860201985960142,1.5194660756439597,1.51879965426789,1.5370645641451586,1.2557986347576708,1.2742718446601942,1.155198957839886,0.8200625272638222,1.0381355932203393,1.2896567082362616,0.9148067906156518,1.2614858416396264,1.125004454672236,1.168801175098493,1.2652764256271105,1.2478343213823642,1.0335379564635632,2.7042880258899675,2.5212932259592606,1.2649742525864052,0.2224576271186441,1.7087501713032751,0.926889556428736,2.6557205167921967,1.863823928940701,2.554852291081356,2.7870237945040657,2.7247604491179778,1.3963134772877148,0.0,0.0,0.49705236829952015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.666666666666667,0.9375,0.5333333333333334,0.2013888888888889,0.04,0.0,0.0,0.0,1840.2514226536032,2076.4616846926456,1077.2335818513875,972.3648622301489,8.309072658498097,0.4403288904415109,4.650347914183735,0.7867636598016925,1.0,0.42857142857142855,1.7794238321465294,3.266056258283368,3.880179922675738,3.975418017913833,3.975418017913833,3.975418017913833,0.2727272727272727,0.0,0.04761904761904763,0.07812499999999999,0.053333333333333344,0.04027777777777777,0.013333333333333334,0.0,0.0,0.0,0.5054157647907648,9.090909090909092,4.13265306122449,2.8444444444444446,69.48582777182845,1.0,3.2863594172118633,29.784131975745122,,21.166354989933556,21.376109584330887,21.26113497427833,21.169025637396622,26.200403893752913,21.529792814265882,21.62720376691445,24.74876111669015,-0.010679611650485412,-0.0963410705826628,-0.8380139551054805,0.21610169491525438,0.36220364533369886,-0.11986228284990644,-0.009684731298823728,-0.004046642613043284,-0.08149941285153917,-0.047271239645455106,-0.11926527633962081,-0.0038635003239201977,0.153074433656958,0.2954553923890729,0.47534828287729275,0.05790960451977404,0.1697843862774657,-0.28803351419637996,0.14901260937877464,-0.1517302740075843,0.3058527479750389,0.15438150170010073,0.34914998641978706,-0.09539907094479169,-0.06122977346278322,-0.14471296384020207,-0.40425349632142393,-0.03305084745762714,0.04167009273217308,0.06451808003052305,-0.05878955306130926,0.037246504184721134,-0.14081944283017592,-0.087068784244458,-0.1686950516232607,0.022477008743522327,0.2962285287528007,0.23767080858506756,0.2886599590041251,-0.2516297262059976,-0.07586363205110636,0.020012816559513764,0.2980258726698301,0.10101015446130257,0.27546203450873064,0.09833922421179296,0.29079570310508907,0.14848555878514008,-0.411116504854369,-0.37603372809095226,-0.1396183795984536,-0.24067796610169503,-0.42461285459778,-0.04006662289099082,-0.417633308177164,-0.21204045004321526,-0.42074397521552187,-0.26207976883402045,-0.380092652979729,-0.3176116176348387,-0.12245145631067969,-0.11232970156323982,0.10913401891534445,-0.1398305084745764,-0.2790872961491024,-0.0759044459652068,-0.11927198506293722,-0.05533307457862929,-0.11736206018973043,-0.05320280031710945,-0.1671565991435497,-0.06318214237621146,-0.9685679611650487,-0.7948943628612033,-0.17251003178097368,0.2680084745762711,-0.49349047553789244,0.03880743301491866,-0.9715415408206934,-0.4088184462020289,-0.8961653995214651,-0.5570519181917989,-0.8510832552730893,-0.48205743439020743,0.770388349514563,0.5484490762671735,0.18629304076425682,0.5127118644067796,0.7411264903384952,0.420172399146267,0.8038238833162291,0.6756030974838663,0.6625459398583674,0.2805702696748124,0.43765107536069786,1.0141690111641948,1.6509636244473134,4.245835898900279,1.5000000000000004,21.438186958251713,33.23315451293092,35.090191166638434,35.18619116663843,35.18619116663843,35.18619116663843,21.40668019575586,13.914925568159912,3.9770477316427493,1.7573534479766004,0.0,7.491754627595951,1187.7546961706971,816.4491110147645,381.2628870524693,0.0,14.0,15.0,19.0,18.0,15.0,6.0,4.0,0.0,170.05138394,11.0,3.9318256327243257,4.6913478822291435,5.5254529391317835,6.304448802421981,7.147559271189454,7.931284761525891,8.776630098427717,9.561630845638076,10.407620832440994,0.7142857142857142,0.9824761904761902,1.1327313448047354,0.6748972172334093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6917573424579413,0.9701213818860879,1.0082370894461208,0.6250914289591271,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,4.771065770590158,0.0,5.559266895052007,9.77851570501903,0.0,0.0,0.0,13.344558822616634,18.638695065972705,11.760295063310071,0.0,156.88621701253078,-168.37372828835558,-21.20010369950815,-8.017796585159788,-24.053389755479365,195.53464416339568,209.85206778679782,12.73286906468767,9.992955608895134,14.989433413342702,0.5,0.8022822558799527,0.3129589350146535,16.74718353963858,0.23421193566256576,38.73152593496806,0.19771774412004714,3.0,0.18181818181818182,0.4051218664020855,0.7435838405816141,0.8834015279845091,0.9050844088127902,0.9050844088127902,0.9050844088127902,1.38499,,1.1607142857142856,0.632459626665853,0.5367328615238046,1.1596246384960072,-1.6945199696683053,0.5927172582619341,0.6003768906027296,-0.8800648593734153,46.2424,0.0,0.0,9.967957041894417,0.0,19.765380445542643,0.0,26.88516491302406,0.0,0.0,3.1354942159291497,0.0,4.3694478524670215,0.0,5.796057750765372,0.0,7.325807502595773,0.0,8.906935339059165,14.999999999999998,1.5409722222222222,0.0,5.380944822373394,0.0,0.0,0.0,0.9039351851851853,0.0,20.631999999999994,0.0,10.843707482993198,4.790124716553287,0.0,0.0,0.0,0.0,0.0,23.787358240899444,5.559266895052007,0.0,0.0,9.967957041894417,6.4208216229260096,4.771065770590158,19.038486817465095,10.860904252533432,0.0,0.0,0.0,14.172841561901595,14.526904191616767,12.800470617092843,59.56826395148913,,42.20969696582772,42.63722650318574,42.424682148812764,42.21637544949883,52.86636320717312,42.95181884911638,43.14524809446493,49.657534025818975,12.800470617092843,59.56826395148913,,41.47106060219134,42.119759535913666,41.985537080293284,41.47843249772866,54.09532775713421,42.4668683650839,42.65403063851724,50.37758709257905,4.523232269727811,43.141426685945405,,32.34502128112193,32.493354751684265,32.326411247505476,32.34821527074681,38.2282193701774,32.68250494436478,32.81062181574901,36.5062345778595,1.1636791470084402,5.4152967228626485,,3.8372451787116106,3.8761115002896123,3.856789286255706,3.8378523135908025,4.80603301883392,3.9047108044651253,3.922295281314994,4.514321275074452,2.2616161348639046,29.78413197574456,,21.16635498581649,21.376109581289764,21.261134970908547,21.169025633290858,26.200403893732947,21.52979281167291,21.62720376455999,24.748761116602815,20.372549019607845,0.0,2.053648904006047,0.0,0.0,0.0,0.0,21.172978878368536,1.8772685185185183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.126920008141669,282.74100352337797,37.36790047507712,68.58718142395072,81.4837783761905,83.48377837619049,83.48377837619049,83.48377837619049,113.0,86.27780106572936,69.67985765254849,40.53374266081648,80.74000000000001,48.65,1.0,6.281565566547073,4.459431618637297,3.050634200126185,3.2652387043721927,,3.2457892864886024,3.244924760698912,3.243150341610704,3.245803690084054,3.261190191772494,3.245961163493376,3.2468072429862147,3.258768199639007,0.2773303818296532,0.2968398822156539,,0.2950717533171457,0.29499316006353743,0.29483184923733674,0.295073062734914,0.29647183561568125,0.2950873784993978,0.29516429481692863,0.296251654512637,1.2106596832758718,1.2786430499283614,,1.272668731967917,1.2724023434662768,1.2718553648618471,1.2726731695829998,1.277402398054751,1.2727216844053646,1.2729823065143508,1.2766594509070872,127.91000000000003,43.123882687521665,39.947016318182484,,40.143400673309344,40.35744870310609,40.468210053069186,40.14297920649305,39.90204285175738,40.31676779800907,40.27284468886352,39.94443897819034,3.9203529715928784,3.6315469380165895,,3.64940006120994,3.668858973009644,3.6789281866426533,3.649361746044823,3.627458441068853,3.6651607089099154,3.661167698987593,3.63131263438094,3.859387146125063,3.7828641638253244,,3.787768239895597,3.7930861597908354,3.7958269087312457,3.787757740809278,3.7817377016816685,3.7920776366142994,3.7909875925716676,3.7827996427827806,0.40365740740740774,16.224652305366593,0.0,0.7763425925925931,0.0,1.5409722222222222,1.8772685185185183,2.053648904006047,0.0,147.75529234502017,55.28997570618939,-59.338414322783734,-7.4713588027996085,-2.8256387772754152,-8.476916331826247,68.91048768579226,73.9562464489722,4.487328681017543,3.521726021379628,5.282589032069443,158.0,12.0,0.7814744144215573,0.3140807466387934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.018042195912175804,0.18419528592042317,0.0422205416264352,8.267584713501616,7.124556993418173,5.21954535281284,3.9545070218971734,4.572150750610877,2.771199180930306,2.9730657999740724,1.5396059414112628,2.7575835968384967,1.1550783583397992,1.5673024208692656,0.5797557910236285,1.0992923521208582,0.3497653018690754,0.26049147147385243,0.08018535827492908,1.046706494359589,0.3862495302874966,2.0143047470199886,0.6173675666903914,2.151878209882127,0.5796304571881727,36.8294482850312,22.881075590020664,20.083414981759198,19.855575227208842,19.855575227208842,19.855575227208842,50.0,54.0,24.259929999999983,13.270069999999997,0.2857142857142857,11.04,4.583333333333334,2.583333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,21.0,0.0,0.0,21.0,6.0,2.0,3.0,18.0,8.0,11.0,13.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,2.0,2.0,1.0,11.0,4.0,0.0,2.0,1.0,0.0,1.0,2.0,1.0,0.0,0.0,1.0,1.0,2.833213344056216,0.0,3.449987545831587,3.865979066926739,4.5067301131748385,4.765906277173684,4.965027560618124,3.840795496139778,3.595598464110711,0.0 +2659,CON=C(C(=O)NC1C(=O)N2C(C(=O)O)=C(COC(N)=O)CSC12)c1ccco1,0,34.577777777777776,7.090959999999998,3.688888888888889,11.876543209876543,164.96205499306853,137.4412169777778,1.5584852995018659,7.106035555555552,8.148841639993902,8.544617799999997,234.99489965005324,32.319148936170215,6.954936170212767,4.404255319148936,10.198581560283687,151.5020737644861,125.19626146808515,1.7786429065106386,7.065512765957448,4.192146046755976,8.347012765957444,274.2072041442241,29.263157894736842,6.935497368421053,4.026315789473684,8.75,157.1452819733497,111.43400667105271,1.5813993462512366,7.012819736842107,4.700901559454189,8.409335710526314,235.72622601689056,27.46590909090909,6.89816590909091,3.7954545454545454,7.719696969696969,158.67334351756568,103.71982722727267,1.5279603686749548,6.968788636363633,4.1746983726150395,8.370278545454548,225.4450807317751,28.060606060606062,7.00180808080808,3.393939393939394,7.8114478114478105,160.60822999850137,106.00103734343436,1.4177501824322427,7.060414141414139,4.614696346177826,8.501437616161613,215.46145904474665,27.557692307692307,7.1447499999999975,3.0673076923076925,7.044871794871795,162.21126798060138,103.65687505769228,1.2937015415297506,7.180896153846154,5.804605887939223,8.654253903846156,200.39625202679474,23.07843137254902,6.962023529411765,2.843137254901961,5.823529411764706,166.50706680378008,84.58372072549024,1.2322106828087251,6.986591176470589,4.516854272573227,8.514401450980392,182.32469451405754,23.752688172043012,6.754043010752688,2.827956989247312,6.795698924731183,163.47261869898702,88.64645972043012,1.2600971111783226,6.7955462365591375,5.1910593389088,8.29760393548387,183.92698679878356,22.337349397590362,6.694072289156626,2.7228915662650603,5.959839357429718,164.21799606731403,82.86514057831323,1.2334495155510237,6.735251807228916,5.4027219991075395,8.251815301204822,177.3083328540536,10.676543209876542,0.22423091358024694,0.04875995795927939,0.6844444444444444,5.155006858710562,1.5878153131834931,48.50206662913579,0.26876226958712884,0.19965155555555555,3.245259699571544,0.15097872395061723,43.337418472285144,0.1541896506435507,-0.024874696086157066,-0.028792802099030092,0.2540898345153665,1.2358520853398713,-0.14939555731682347,0.8606808171998971,0.006852300963747775,-0.019687063829787254,-0.2548473013577256,-0.020199665321775657,1.3870876963634025,-0.48473034437946766,0.018688677063027938,0.0035877204502359353,0.05181286549707603,0.39356364161432394,-0.08462355139784525,-1.8304319580831692,0.0019719012562202727,0.0153547894736842,0.5752864503253766,0.008873865523066925,1.8023348105017136,-0.743967452300786,-0.013282782267115599,0.0003504675384109058,-0.05464646464646466,-0.5643783514153884,0.13235085157179258,-3.4198263836812557,0.0050147594674620505,-0.014105999999999987,-0.30544003516340057,-0.010972169152637481,-2.7523817892454456,-0.33445566778900143,-0.005260363636363626,0.0013940767766355239,-0.14976430976430974,-0.2543958099513654,-0.09676361965591145,-1.4713004587654297,-0.031118544861520773,-0.002747313131313146,-0.38398978352339114,-0.003400410594837282,-1.4089340723656134,0.07858499525166146,-0.024528434947768255,-0.0005295562870285703,-0.07824786324786324,-1.1742376279413316,-0.3906385884801536,-0.07431059366571412,-0.03863858822811734,-0.019520615384615393,-0.184420958408727,-0.010717633138651518,-6.6114944254553105,-1.2861292665214232,-0.0562631575889615,-0.006033638998931244,0.035816993464052295,-1.0363915113370452,0.18122896850225387,-6.002748390791574,0.016415801440409664,-0.0516565882352941,-0.8788708928676385,-0.03417225445170662,-0.8811353247516218,1.3409000398247715,0.04940578892871361,0.008903327957076969,-0.03856630824372761,1.0467719810611087,0.004014438565761153,6.041687603122264,-0.013951196293331039,0.0448076559139785,0.6360261816457521,0.03455800340900043,1.0600209279324448,1.0016361743269377,0.014366462591105147,-0.004430396196827837,-0.036519410977242275,0.32230981539326037,-0.18882541018351037,4.727093904197528,0.004482704216463881,0.01498086746987951,0.5791348149290756,0.00581050951658488,1.499784818643125,,,0.45172413793103455,1.1206896551724137,0.43103448275862066,0.0,0.6896551724137931,-0.25862068965517243,0.9014016269335023,0.01961277765082843,0.02850932937496636,1.0117612886027636,0.23610570777650228,0.2413233615510519,1.913162915536266,0.4774290693275542,2.0044238344720418,1.1560962390345855,0.2746932632784122,0.5023100272279347,0.0,0.8483275954374561,9.423752988266676,1556.0,319.0931999999999,166.0,534.4444444444445,7423.292474688084,6184.8547640000015,70.13183847758397,319.77159999999986,366.6978737997256,384.5078009999999,10574.770484252396,1519.0,326.88200000000006,207.0,479.3333333333333,7120.597466930847,5884.2242890000025,83.59621660600001,332.07910000000004,197.03086419753086,392.3095999999999,12887.738594778531,2224.0,527.0978,306.0,665.0,11943.041429974579,8468.984507000006,120.18635031509397,532.9743000000001,357.26851851851836,639.1095139999999,17915.193177283683,2417.0,607.0386000000001,334.0,679.3333333333333,13963.25422954578,9127.344795999996,134.46051244339603,613.2533999999997,367.37345679012344,736.5845120000002,19839.16710439621,2778.0,693.1789999999999,336.0,773.3333333333333,15900.214769851636,10494.102697000002,140.35726806079202,698.9809999999998,456.8549382716048,841.6423239999998,21330.684445429917,2866.0,743.0539999999997,319.0,732.6666666666666,16869.971869982543,10780.315005999997,134.54496031909406,746.8132,603.6790123456792,900.0424060000003,20841.210210786652,2354.0,710.1264000000001,290.0,594.0,16983.72081398557,8627.539514000004,125.68548964648996,712.6323000000001,460.7191358024691,868.468948,18597.118840433868,2209.0,628.126,263.0,632.0,15202.953539005792,8244.120754000001,117.18903133958399,631.9857999999998,482.7685185185184,771.6771659999999,17105.20977228687,1854.0,555.608,226.0,494.66666666666663,13630.093673587064,6877.806667999998,102.37630979073496,559.0259,448.4259259259258,684.9006700000002,14716.591626886448,480.44444444444434,10.090391111111112,2.1941981081675728,30.799999999999997,231.9753086419753,71.45168909325719,2182.5929983111105,12.094302131420797,8.98432,146.03668648071948,6.794042577777776,1950.1838312528316,7.246913580246883,-1.169110716049382,-1.3532616986544144,11.942222222222224,58.08504801097395,-7.0215911938907025,40.45199840839516,0.3220581452961454,-0.925292000000001,-11.977823163813103,-0.9493842701234558,65.19312172907992,-36.83950617283954,1.4203394567901233,0.2726667542179311,3.9377777777777783,29.910836762688618,-6.431389906236239,-139.11282881432086,0.14986449547274072,1.1669639999999992,43.72177022472862,0.6744137797530863,136.97744559813023,-65.46913580246917,-1.1688848395061726,0.03084114338015971,-4.80888888888889,-49.66529492455418,11.646874938317746,-300.9447217639505,0.44129883313666046,-1.2413279999999989,-26.87872309437925,-0.9655508854320983,-242.20959745359923,-33.11111111111114,-0.520775999999999,0.13801360088691686,-14.826666666666664,-25.185185185185173,-9.579598345935233,-145.65874541777754,-3.0807359412905564,-0.27198400000000145,-38.014988568815724,-0.3366406488888909,-139.48447316419572,8.172839506172792,-2.5509572345678984,-0.05507385385097131,-8.137777777777778,-122.12071330589849,-40.626413201935975,-7.728301741234269,-4.018413175724203,-2.030144000000001,-19.179779674507607,-1.1146338464197578,-687.5954202473523,-131.18518518518516,-5.738842074074073,-0.6154311778909869,3.6533333333333338,-105.7119341563786,18.485354787229895,-612.2803358607405,1.6744117469217856,-5.268971999999998,-89.64483107249913,-3.4855699540740757,-89.87580312466542,124.70370370370374,4.594738370370366,0.8280095000081581,-3.5866666666666673,97.3497942386831,0.37334278661578724,561.8769470903705,-1.2974612552797866,4.167112,59.15043489305494,3.2138943170370395,98.58194629771737,83.13580246913584,1.1924163950617273,-0.3677228843367104,-3.031111111111109,26.75171467764061,-15.67250904523136,392.34879404839484,0.3720644499665021,1.2434119999999993,48.06818963911328,0.4822722898765451,124.48213994737938,0.728587157039238,0.5449116851258399,0.44662719388706684,0.29604872025692586,0.28645961570505263,0.15751648873671248,0.16788606118275554,0.0902820415474943,0.10775051763445853,0.05147315487775852,0.06988754277759394,0.03067347321122532,0.04222352906157803,0.01721842748471165,0.027409707543080353,0.009586849720052063,16.002003802988277,5.736935083562884,3.5610125970962976,2.227498154770861,0.502323767483791,-0.5294943626119535,3.2708984159523267,0.9714969380521294,6.030745545265748,0.6549463873511419,14.557375518341711,10.338078202959954,32.06099921963184,11.750319549324553,2.9162826178836787,0.739539108967797,3.50739055682752,2.2787535881638736,7.011550967640984,0.6221993392507467,3.719995019831341,2.4760176673978127,24.43422791030458,14.696539493816374,0.33492078623726346,0.765272835391897,0.9008972646439594,0.9085848064415188,0.9085848064415188,0.9085848064415188,1.617722006845547,910.0305400679028,0.0,4.0,3.0,0.0,5.0,1.0,1.0,0.0,0.0,3.5555555555555554,1.0675355559401725,0.283441944492524,0.23899750004807707,0.23899750004807707,0.23899750004807707,89.35084442862365,2640.7246186209236,116.93370033157053,58.6827693026872,126.08867588154556,,14.0,654.0,35.29261845970998,24.284676131127995,35.10181183602995,0.0,4.899909730850478,31.201212554769313,6.06636706846161,0.0,20.046952868293552,10.150818414215532,13.100000000000001,32.5,12.5,0.0,20.0,0.0,0.04827586206896547,-7.5,0.29579651941097734,0.05124183006535976,-0.24455468934561758,0.08192267502612316,0.25110247349823295,0.0,0.7355555555555553,0.9758620689655169,0.43975903614457795,0.6843137254901955,0.8939393939393937,26.140647181071568,0.5687705518740245,0.8267705518740245,29.341077369480143,6.847065525518566,6.998377484980505,55.48172455055171,13.845443010499071,0.462897526501767,0.19592875318066152,0.0,0.41221374045801523,0.3125,0.4324326928196702,-1.7270685658510938,-0.10461377841227175,-0.038379301463357635,-0.11513790439007292,0.5675673071803297,2.2667750878046276,0.07223726984720713,0.050372779728991735,0.07555916959348759,-0.893112017749961,0.6868640148011103,0.8121402506324719,1.6131868227079944,0.7598784194528876,0.4544585734829527,1.3187575434368166,0.6818345658183848,0.9900802024723865,0.7756629611722587,0.6792495700737192,0.8577504541175676,0.8724663676552734,1.0821120794585912,0.7580646118493553,0.9047049226714405,1.0526315789473684,0.7894820873364893,1.1953197985733697,1.0559645619944222,1.16997217140736,0.750584585729711,0.49970160870816627,0.7887764195761348,0.9261206940212992,0.9938714153561519,0.8983497170905828,0.9093819540862182,1.2012987012987013,0.9888504523682812,1.035272866963695,0.9874408340985601,1.0364177693167533,0.8986016749180793,0.9251256227256217,0.9137991378368229,1.0128297498568593,1.0800185013876042,0.9681399862046968,0.983607147941756,1.3131313131313134,0.992868547099521,1.1386237914420936,1.0642759839724278,1.2239087948807295,0.9472033251017081,1.1154523623574548,0.9733152949592611,0.9814465318691646,0.9567663488223157,1.1892696746543394,1.0946602613439815,1.1332417582417582,1.2118147951037785,1.2315087705105086,0.960748836787386,1.1245588598969152,1.1645502728856836,1.3072467891559651,1.1764772939555925,1.0609180081428868,1.1524051803885293,1.316684810289714,1.1659140720074275,0.8823529411764707,1.2303071095388662,0.8473361104718493,1.1525281770691758,0.9106327309531281,1.3224501894717138,1.3824429157320668,1.290646165315629,0.9680668962126567,0.9320670824505388,0.7237045903552968,0.7456777792103603,1.0368663594470047,0.7691256502257552,0.9660496265951541,0.9298320975808728,1.0878981440502882,0.7262507142671119,0.770076719715191,0.7055422656942281,1.0017048768204007,0.9533341506637096,0.8905600086487835,0.9262944929120671,1.0671256454388984,0.9363157793494362,1.059509900941851,0.9496887356865237,0.9897859798876689,0.8891858393826051,0.9126463707840715,0.9034433913538311,0.9970220461055805,5.5,0.17885521885521885,3.555555555555557,3.0277777777777777,2.0444444444444447,1.5038888888888884,0.8938775510204083,0.6249645691609976,0.359292328042328,0.23687500000000006,6614.04307764192,7108.226184980732,3003.0052519089422,2829.0432177225866,15.92568437592091,0.45845127915121153,8.624534002421505,0.8465559265520277,0.0,0.3125,1.9362975407741194,4.424317540389502,5.208411151837151,5.252855596281598,5.252855596281598,5.252855596281598,0.17741935483870963,0.008516915183581851,0.0846560846560847,0.06881313131313131,0.0417233560090703,0.03199763593380615,0.02352309344790548,0.016890934301648588,0.011590075098139615,0.010298913043478264,0.47542949382555594,23.658688865764827,10.543388429752065,5.257777777777778,167.19324259000268,1.0,4.292841434856184,168.52638554490878,,131.19335474585,132.68601963842175,133.86054250907085,131.2267736888792,208.2170130804523,134.8377547102544,136.20395570285376,181.80020507027487,0.014441907611155885,-0.11093339312135032,-0.5905009623485657,0.3712351478308926,0.23973820388844236,-0.09408874953932306,0.01774524009009702,0.025495769827640773,-0.09860711465535804,-0.07852909318516847,-0.13379146937539788,0.03200669872042478,-0.04540143142314626,0.0833456759580106,0.07357923592206798,0.07570061517429941,0.07634590067505113,-0.05329558840705416,-0.03773925701103231,0.007336972035730674,0.07690793808722185,0.17726977301734245,0.05877560288540673,0.04158842113898248,-0.069682427886637,-0.05923706974668328,0.007187609527957133,-0.07984061393152304,-0.10948159078813681,0.08335405917356693,-0.07050887975208306,0.01865871826118189,-0.07065309338937163,-0.0941188266700894,-0.07267361165554892,-0.06351051553764399,-0.031326213102346345,-0.023459582589985154,0.028590606616185982,-0.21881149153876425,-0.049349267018239856,-0.06094135687727124,-0.030334799339902793,-0.11578464830396365,-0.013760539574402021,-0.11832328351844613,-0.02252244889782949,-0.0325107983362379,0.007360528001138506,-0.10938917634561618,-0.0108604746433706,-0.11432317682317683,-0.2277858517214558,-0.24602268616300346,-0.0015321119043013073,-0.14376492759744042,-0.09777341994805312,-0.05682779668852856,-0.07098770514285897,-0.1525585662118626,-0.12046307884856071,-0.25091615018919433,-0.12374167762757467,0.05233002291825822,-0.20104561249726077,0.11413730992359468,-0.12376273441481872,0.061079263341642154,-0.25873371280054963,-0.2708168141315999,-0.22633821215023534,-0.020331975364779042,0.12559308883650153,0.22033442284947233,0.18259507041643372,-0.0563468789275241,0.20305927998763923,0.002528278026058583,0.12456557056257367,-0.05190905819765101,0.22442928525798642,0.1959862200642135,0.22889320100694324,0.02445971553682512,0.09381652419112162,0.06406994629651602,-0.0908613621145401,-0.05335628227194489,0.06252364433786238,-0.11892151978615481,0.09746170076303315,0.016679068171846397,0.07503506510727333,0.17845561481737068,0.038485618135740814,0.034607156390781726,2.2405671446320317,10.677504321736718,12.792561630608745,22.254333942321043,47.56301365748891,51.50746890671702,51.55226890671703,51.55226890671703,51.55226890671703,58.128291199689215,33.52679093200298,7.966104635073954,14.566990789610106,0.0,24.601500267686227,9097.204426600005,8516.037426747745,1530.7961339741487,139.0,44.0,60.0,80.0,96.0,109.0,127.0,131.0,138.0,424.06888447200043,31.0,5.017279836814924,5.883322388488279,6.790097235513905,7.68937110752969,8.607216694063826,9.521714556684751,10.446364016467253,11.369874620079596,12.299540219687993,0.8148148148148147,1.0481777777777779,1.1351201379083051,0.7851765511244325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.680035768463074,1.0305882352941174,1.0550538156510483,0.6727094285003505,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,0.0,0.0,1.0,1.0,2.0,1.0,2.0,1.0,2.0,1.0,0.0,0.0,0.0,30.14858595059925,30.829432460962984,5.760247418874442,5.711685002770702,11.814359458703011,14.488984098994122,9.589074368143644,0.0,11.761884949391115,5.15571272675054,12.13273413692322,11.325958136816055,6.263162995639057,285.9239762127854,-1141.9356578254426,-69.1705044205654,-25.3763479516765,-76.12904385502951,375.27482064140906,1498.788960795481,47.76319591100514,33.3064213510107,49.95963202651604,0.5,0.5880616962097587,0.11932351190335519,151.06266637709402,0.10123503564455975,95.90768060505872,0.41193830379024116,7.0,0.22580645161290322,0.3525763538846641,0.8056146919418457,0.9483886514222395,0.9564814469986817,0.9564814469986817,0.9564814469986817,-0.5359999999999987,,3.1964285714285716,3.003795131551846,2.1991713335872087,3.1894840491512384,-10.306943456406005,2.726132190942473,2.620366478359467,-4.311675462266452,97.4739,38.276278605718026,0.0,10.216698334856808,10.889380203912726,11.4157136421167,19.469533112537242,35.42628839456182,0.0,0.0,4.143134726391533,0.0,5.5093883366279774,2.3978952727983707,7.0825485693553,4.442651256490317,8.766394277049736,6.293419278846481,10.517672691292779,36.66666666666666,4.402020344629645,0.0,0.0,5.135853756558538,0.0,0.0,0.14007717798583208,0.0,47.168000000000006,0.0,47.57179611325361,0.0,0.0,0.0,0.0,3.6185596478250006,-3.985916608118953,51.08040620587373,11.050456081168516,4.794537184071822,0.0,70.48027370070909,23.958063089752148,0.0,5.760247418874442,39.23890463949127,0.0,0.0,0.0,35.33294480059946,30.601609580838332,36.417076016808394,337.0527710898175,,262.4168398605102,265.1648809919089,267.5694180296184,262.4850201433751,418.3751287923574,269.48750030389203,272.2271964761655,363.915481691462,36.417076016808394,337.05277108981744,,259.661297988589,262.36824414529167,265.53539291007905,259.73546492858964,426.7409696173108,266.9493772295664,269.787544927348,367.91208560281615,5.148123884242103,249.30904145725384,,197.5871030707591,200.8320449368187,200.92196887792056,197.6298102790031,302.77968650581596,204.11266560676813,206.34790347031856,272.0383268383314,1.2557612419589101,11.62250934792474,,9.048856546914145,9.143616585927893,9.226531656193739,9.051207591150865,14.426728579046806,9.292672424272139,9.387144706074672,12.54880971349869,2.574285680514292,168.52638554490878,,131.19335474585,132.68601963842175,133.86054250907085,131.2267736888792,208.2170130804523,134.8377547102544,136.20395570285376,181.80020507027487,46.376470588235286,0.0,1.2530331316731722,0.0,0.0,4.909286754955391,9.496970448316048,47.47742170429717,-0.17305288918699868,2.5204170340975898,9.306516286255853,1.2127753369866463,-1.6178230242714378,1.0428198223733935,0.0,0.0,0.0,30.271924282515773,388.8256860099293,87.13338933483537,199.0942893175276,234.3785018326718,236.3785018326719,236.3785018326719,236.3785018326719,984.0,137.62478067533024,272.37311084426517,78.15310440885249,199.06,173.76,1.0,7.72987268458903,5.954196310386875,3.8990232137324585,5.291537814407146,,5.299411088733126,5.306289850332854,5.3008729164880135,5.2993883062793055,5.256623014611161,5.305502741522475,5.3050279024356435,5.285401523102028,0.13444907633560202,0.18246682118645333,,0.18273831340459054,0.18297551208044324,0.18278872125820736,0.18273752780273467,0.18126286257279867,0.18294837039732673,0.18293199663571186,0.18225522493455268,2.4254368007408638,2.7308196427733122,,2.732306436043366,2.7336036181162555,2.7325822452129005,2.732302136980242,2.724199545132477,2.733455272055963,2.733365768693109,2.729659327525627,272.55000000000035,564.3811431096522,182.89087513822113,,180.8227329877921,180.13941159736433,181.01003900256163,180.82650858465337,186.06072233944946,180.23153526898992,180.2537702129512,182.68614893479426,19.46141872791904,6.30658190131797,,6.235266654751452,6.2117038481849765,6.241725482846952,6.235396847746668,6.415886977222395,6.214880526516894,6.215647248722455,6.299522377061871,7.400440545905595,6.273600401249797,,6.2622279125984,6.258441796979664,6.263263230822728,6.262248792481046,6.29078382161838,6.258953068348421,6.259076429515444,6.272480384337644,9.788182952922519,53.26880302551888,14.992682296527377,4.677174765480488,-2.382150516874889,2.079614207581483,0.289814579016072,-0.34659644549841206,1.2530331316731722,349.04905658141655,189.0525890636611,-755.0464830390858,-45.735454300675585,-16.778810734201908,-50.33643220260573,248.13125989777336,990.9974576163207,31.580967670267786,22.02216572480713,33.03324858721069,2349.0,44.0,2.133537819942006,0.8236779384477358,0.0,0.0,0.6116040570726224,0.20059765501163762,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.47673354858215317,0.2355354332059492,0.6814417077356641,0.3736127996722711,1.0817300199127948,0.5249557967265788,21.129027554137902,15.802438868649357,13.845443010499071,9.177510327964702,12.604223091022316,6.930725504415349,10.073163670965332,5.4169224928496575,8.620041410756683,4.117852390220682,6.709204106649019,2.944653428277631,4.602364667712005,1.8768085958335698,3.481032857971205,1.217529914446612,4.830835525112133,2.021822844239504,7.856397174312931,2.9517737386899823,12.654163184621078,4.11303754916513,98.40414956163931,37.718893901289285,27.88508804521453,27.729894574266538,27.729894574266538,27.729894574266538,150.0,179.0,51.10468799999999,28.901312,0.35555555555555557,149.13,10.972222222222221,6.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,5.0,5.0,45.0,0.0,0.0,47.0,5.0,6.0,8.0,39.0,11.0,31.0,36.0,0.0,0.0,0.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,9.0,3.0,3.0,29.0,13.0,0.0,4.0,8.0,0.0,3.0,7.0,1.0,0.0,0.0,1.0,1.0,3.7013019741124933,6.026771360940127,4.208417018481948,4.67632738030442,5.115370614360164,5.336936937513092,5.527939883959956,5.761658223742284,5.775715464201509,5.884714177161102 +14720269,COCCCOc1ccnc(C[S+]([O-])c2nc3ccccc3[n-]2)c1C,0,28.066666666666666,6.228406666666664,3.2444444444444445,8.340192043895748,161.73456229205735,111.14247128888891,1.6236015577106662,6.305044444444443,4.368653811053344,7.76672162222222,227.13047127625128,29.53191489361702,6.367872340425532,3.8297872340425534,6.898345153664303,144.8359997009467,113.25525812765966,1.9086520468085117,6.529110638297873,3.0065522575372854,7.8239248085106325,270.7613030501132,23.55,6.340893749999998,3.4625,5.704166666666667,155.0451686183162,88.04297541249997,1.5729072511311246,6.450081250000001,3.0080289780521277,7.874912124999999,220.20514566382022,21.815217391304348,6.336204347826088,3.130434782608696,4.776570048309179,158.2376228471558,80.89887695652173,1.4697538063063913,6.426080434782612,3.3824588477366255,7.872192782608696,201.76542883791436,19.989583333333332,6.313427083333334,2.84375,4.237268518518518,160.95915223401659,72.57531910416667,1.414080881106125,6.390195833333334,3.1332876085962496,7.878199854166669,185.63529995131705,19.148936170212767,5.97479574468085,2.75531914893617,3.7801418439716317,157.3916136787496,68.9818519255319,1.4087432736061702,6.085169148936169,2.8052381577795287,7.607634893617023,178.02833427451245,17.06451612903226,6.182548387096774,2.6129032258064515,4.4528076463560335,161.5594691365599,61.09795823655911,1.260566188879882,6.254716129032258,3.428414974113897,7.778371634408602,169.97390604523383,16.53488372093023,6.135593023255814,2.6744186046511627,3.8733850129198966,163.1152017492017,58.909507081395354,1.2847760312939769,6.207688372093024,2.9264762178198875,7.709431139534884,171.15852492845258,16.50632911392405,6.106898734177216,2.7088607594936707,3.40646976090014,161.05277346458294,58.677469405063285,1.3152457638428352,6.186653164556961,2.775798301817993,7.694200784810129,174.79016817961036,10.42666666666667,0.1275066666666666,0.02866510107204506,0.5402469135802467,4.55452522481329,1.5879445452334306,47.697352229135795,0.28819738810098755,0.11932276543209867,1.4471647505973797,0.07916440691358025,50.95359642041075,1.5974468085106392,0.0010531914893616824,-0.004155524421739359,0.236112424481219,1.1350057561282487,-0.3403180275261257,7.05134733776727,-0.022247241406680277,0.005165366955608096,-0.19054907255750084,0.0020759032519043806,-1.1600352664502702,0.34499999999999964,-0.011328750000000016,-0.0021696761914350143,0.04114197530864199,0.18029987806736752,-0.12772978958980555,1.7774420822530868,0.004111225671659591,-0.008048182098765426,-0.0722844463867527,-0.008667201635802469,3.883030211946204,0.6508695652173911,-0.006326086956521752,0.0001931027564184009,-0.028169618894256558,-0.5152486696752218,-0.056470119461333484,2.894068337047773,0.01863800635601235,-0.005150349973161558,0.05849934087238348,-0.003947117058507781,0.810366364216349,-0.30166666666666675,-0.009258333333333332,-0.0008266569994953321,-0.053441358024691354,-0.44437147538484983,0.229377707258517,-1.617492352746914,0.036299308397873445,-0.01145545061728393,-0.05654208995239152,-0.002092733533950614,-2.0415850149886614,-0.3855319148936173,0.013949999999999999,0.00146590448098239,-0.016133438402941947,0.7444328349012701,-0.14260572533565,-1.5541179253532968,-0.04867705086767321,0.013666430785395306,0.18098768296873277,0.004942884339374833,-2.8376727383878646,-0.34064516129032274,-0.0009505376344086076,-0.00033474019657782307,0.04780565511748307,0.49295180219380386,-0.1980003891128474,-1.2511717369016342,-0.004015841991514539,-0.00019894225408204636,-0.009114884027459849,-0.0034594671286340088,1.7250431530889785,-0.4506976744186048,-0.001782558139534883,0.0011449694186123236,0.005489520528280213,-0.07087447673532461,0.16767933152206976,-1.9047617172494968,0.009205052498374095,-0.002236047085845537,-0.0862699009951817,-0.0017952888257249486,1.9976411165506291,-0.7296202531645569,-0.010572151898734174,-0.0022579054933774523,-0.10311611189248322,-0.6069987015718118,0.12014827290947656,-3.153162943341148,0.010267516011282386,-0.010290247851226753,-0.10647704335841121,-0.00757685979684325,1.755330341631189,,,0.48133333333333334,1.25,0.6,0.04,0.65,-0.05,0.834986174421966,0.00913366857485876,0.01945366857485876,0.8461546572796282,0.24507627047911307,0.242358603440952,1.6811408317015943,0.48743487392006507,2.0369995161831946,1.4770353456554852,0.24704435011492798,0.22677297437307448,0.0,0.5599641705277096,7.9582908017757905,1263.0,280.2782999999999,146.0,375.30864197530866,7278.055303142581,5001.411208000001,73.06207009697998,283.7269999999999,196.58942149740045,349.5024729999999,10220.871207431308,1388.0,299.29,180.0,324.22222222222223,6807.291985944495,5322.997132000004,89.70664620000005,306.86820000000006,141.3079561042524,367.7244659999997,12725.78124335532,1884.0,507.2714999999999,277.0,456.3333333333333,12403.613489465297,7043.438032999998,125.83258009048997,516.0065000000001,240.6423182441702,629.9929699999999,17616.411653105617,2007.0,582.9308000000001,288.0,439.44444444444446,14557.861301938334,7442.696679999999,135.217350180188,591.1994000000003,311.18621399176953,724.2417360000001,18562.41945308812,1919.0,606.089,273.0,406.77777777777777,15452.078614465592,6967.230634,135.751764586188,613.4588000000001,300.79561042523994,756.3071860000002,17820.988795326437,1800.0,561.6307999999999,259.0,355.33333333333337,14794.81168580246,6484.294080999999,132.42186771898,572.0058999999999,263.6923868312757,715.1176800000002,16734.66342180417,1587.0,574.977,243.0,414.1111111111111,15025.03062970007,5682.110115999997,117.23265556582902,581.6886,318.84259259259244,723.388562,15807.573262206746,1422.0,527.6610000000001,230.0,333.1111111111111,14027.907350431346,5066.217609,110.49073869128202,533.8612,251.67695473251032,663.011078,14719.63314384692,1304.0,482.44500000000005,214.0,269.1111111111111,12723.169103702052,4635.520082999999,103.90441534358398,488.7455999999999,219.28806584362144,607.8418620000002,13808.423286189218,469.2000000000001,5.7377999999999965,1.2899295482420277,24.311111111111103,204.95363511659804,71.45750453550438,2146.380850311111,12.968882464544441,5.3695244444444405,65.12241377688208,3.562398311111111,2292.9118389184837,75.08000000000004,0.04949999999999907,-0.1953096478217499,11.097283950617292,53.34527053802769,-15.99494729372791,331.4133248750617,-1.045620346113973,0.24277224691358054,-8.95580641020254,0.09756745283950588,-54.5216575231627,27.599999999999973,-0.9063000000000012,-0.17357409531480114,3.2913580246913594,14.423990245389403,-10.218383167184443,142.19536658024694,0.3288980537327673,-0.6438545679012341,-5.782755710940216,-0.6933761308641975,310.6424169556963,59.87999999999999,-0.5820000000000012,0.017765453590492884,-2.5916049382716033,-47.402877610120406,-5.1952509904426805,266.2542870083951,1.7146965847531361,-0.4738321975308633,5.38193936025928,-0.3631347693827159,74.55370550790411,-28.960000000000008,-0.8887999999999999,-0.07935907195155188,-5.13037037037037,-42.659661636945586,22.02025989681763,-155.27926586370376,3.4847336061958507,-1.0997232592592572,-5.428040635429586,-0.20090241925925895,-195.9921614389115,-36.24000000000003,1.3113,0.13779502121234466,-1.516543209876543,69.9766864807194,-13.4049381815511,-146.0870849832099,-4.575642781561282,1.2846444938271588,17.01284219906088,0.4646311279012343,-266.74123740845926,-31.680000000000014,-0.0884000000000005,-0.031130838281737547,4.445925925925925,45.84451760402376,-18.41403618749481,-116.35897153185198,-0.37347330521085215,-0.018501629629630312,-0.847684214553766,-0.3217304429629628,160.429013237275,-38.76000000000001,-0.15329999999999994,0.09846737000065983,0.47209876543209833,-6.095204999237916,14.420422510898,-163.80950768345673,0.7916345148601722,-0.19230004938271616,-7.419211485585626,-0.15439483901234557,171.7971360233541,-57.64,-0.8351999999999997,-0.17837453397681874,-8.146172839506175,-47.95289742417313,9.491713559848648,-249.0998725239507,0.8111337648913085,-0.8129295802469134,-8.411686425314485,-0.5985719239506168,138.67109698886392,0.705922144085024,0.6052522424713821,0.45132858696302336,0.3502406907479625,0.2891278254232982,0.19397592040726136,0.18770648866441303,0.10577525368383084,0.11931483215676607,0.06023376880748014,0.0786156375851654,0.03523837899585445,0.05117526297381129,0.02066790028790164,0.033226685569592095,0.0121815852312253,16.00351578529302,5.6949553676124856,3.5232129822769154,2.191738145241279,0.42344510085935017,-0.63219029040392,3.2308630061582697,0.9877347735920216,7.001890761705518,0.543904562503623,14.556412902415364,10.33452226565669,32.06175238624924,11.708660884658167,2.922012048595191,0.7770043164632637,3.4659722430394466,2.2407286634172308,8.001600941629512,0.3969744901664929,3.6796693928921576,2.4361073390617114,24.435472241538953,14.70568730306427,0.2939584536841498,0.6205778417305606,0.8109588927754203,0.8635118670731434,0.8789576753283825,0.8866805794560021,1.4433936041778843,804.2992838896116,0.0,1.0,4.0,0.0,9.0,1.0,1.0,0.0,0.0,3.8001552650674624,1.9204974308348928,0.8248758995280845,0.5224394445405993,0.43355055565171075,0.38910611120726646,187.77861901077893,1396.1288520601747,76.08920605164346,31.02508560133721,67.50973922223599,,15.0,609.0,11.175854473385288,4.552749873690364,5.752853606746789,18.370200410846543,34.46111437798789,0.0,13.30664111289061,37.255572541998674,14.951935562841626,9.473725907600098,12.033333333333333,31.25,15.0,1.0,16.25,0.0,0.01866666666666667,-1.25,0.16508085550339052,0.05562289562289546,-0.10945795988049506,0.0,0.14816927899686505,0.0,0.6059259259259261,0.8506666666666665,0.44084507042253557,0.5503030303030306,0.8506666666666665,20.87465436054915,0.228341714371469,0.486341714371469,21.153866431990707,6.126906761977827,6.0589650860238,42.02852079253986,12.185871848001627,0.5658307210031349,0.11080332409972299,0.0,0.3185595567867036,0.3333333333333333,0.3492561326728128,-1.0101524149161112,-0.08454254709458546,-0.022447831442580245,-0.06734349432774075,0.6507438673271874,1.2314005750389008,0.03762238565978264,0.02736445722308668,0.04104668583463003,-6.139030355386367,0.7841323393372148,0.7244395694695053,0.9675316190565574,0.6546345637714422,0.5469418225846069,1.3632761213384093,0.7787068611046297,1.1737058240023257,0.6799952401012979,0.7288570570928079,0.7294125159415872,1.0030220857381673,1.0092710997442453,1.1470938338736103,1.0993938727264316,1.063299817184644,0.9672482718832325,1.1433479951943148,0.9933629794153048,1.0439447596392206,1.1039385445266003,0.8053672193739888,1.2043620056797688,0.8814874203531649,0.8857815337855367,1.1615692728768943,1.2161764642171764,1.1803513234242116,1.1869919477545718,1.070703581203603,0.8867339551691303,0.8914772161563012,1.1320243853223684,1.0926761232842783,1.1835155094880152,0.9198190492051208,1.0554756322818981,1.2348671674393206,1.2734840347517955,1.1028907678244977,1.168441522456148,0.8885530378545895,1.0542448046737278,0.862485348710015,1.2343147706852584,1.0462039399545042,1.206993113531306,0.9759246330812607,1.391685258747347,0.713756773854313,0.8504831429300623,1.1263565288420403,0.7495849238793573,1.114020198966786,1.3517978265325763,1.4572344629040581,0.7256223244391549,0.9427302835781283,0.7622704661651457,1.1059063277481043,1.03154305200341,1.1722948775466377,1.3213410543141388,0.8757445302824796,0.9891705661310707,1.0672398018015228,1.0246898441487937,0.9785190650366203,1.1520481192770577,1.7995363306816634,1.2457798284788222,0.9276865018247243,0.9699339796585973,1.0157166631404793,1.0197306734510707,0.9575485736150678,1.0468324220145013,0.8956460740119645,0.972333527919501,0.8761933007596375,1.0181058383489914,1.088320925814758,0.9900788134842697,0.9127239336080413,1.0125503145672137,1.0937094489088794,0.948756592141456,1.271492374979752,1.1355134714114261,0.8950184914710542,1.0123714869131601,0.9080021212506127,1.0943250420194517,0.9661895236447909,1.1067351467758282,0.9346091465085953,4.0,0.06122028364452607,2.666666666666668,1.6041666666666665,1.400555555555556,0.5416666666666666,0.4867120181405895,0.33684098639455784,0.2025856638951877,0.13625771604938272,5006.868306198849,5542.300559227782,2618.5548042071205,2419.0027925072495,16.11297359030512,0.4869422283942533,8.266886324184194,0.9490982406722772,1.0,0.3333333333333333,1.6916978312622124,3.571355665494782,4.66697719680159,4.9694136517890755,5.058302540677964,5.102746985122408,0.14814814814814814,0.004709252588040467,0.0740740740740741,0.04456018518518518,0.04517921146953405,0.018678160919540228,0.016783173039330673,0.012955422553636839,0.008441069328966152,0.007171458739441196,0.380700156045897,19.753086419753085,9.796296296296296,5.258488003621548,149.32975240117975,1.0,4.138145902449042,141.3551100847699,,96.25025945150031,110.2575109349938,114.31894520517822,96.26792610639212,149.28992459319682,110.55166823242793,109.73616611612526,133.36768578520216,0.15320781411547046,0.008259893516901207,-0.14496807149903732,0.4370453926640481,0.2492039675056971,-0.21431354674674633,0.14783519437080983,-0.07719445881613818,0.04328903153478687,-0.13167061488945433,0.02622268432037315,-0.0227665041909699,0.033088235294117606,-0.08884829551396023,-0.07569051251491794,0.07615402193784283,0.03958697540746606,-0.08043718527401662,0.0372650052714528,0.01426531204446229,-0.06744883987243232,-0.04994900985317268,-0.10948356684164909,0.07620718623878645,0.062423551651284305,-0.04961377410217836,0.00673651057196933,-0.052142119068436514,-0.11312895290778505,-0.035561770485525536,0.060675660215787394,0.06467097595444336,-0.04316317975459926,0.04042341471365672,-0.04985974394801755,0.015904007197649672,-0.028932225063938617,-0.07261058245320509,-0.028838447051613897,-0.09892024680073129,-0.09756702476119596,0.14444944437577828,-0.03391157532134191,0.12595294022981832,-0.09600389813126416,-0.039070941942893046,-0.02643528342522852,-0.04006753513812527,-0.036975567285193474,0.10940604412841164,0.05113899571810607,-0.029863082967054345,0.16344905300898574,-0.08980523014088423,-0.0325828972201096,-0.16890177662059944,0.11453330582731314,0.12506363418126532,0.062438216012541195,-0.05569131401392431,-0.03267057173500537,-0.007454807338768755,-0.011677621360430865,0.08848852981069767,0.10823341135716559,-0.12468973787982059,-0.026231471526785493,-0.01393434554690462,-0.0016672615100867371,-0.006298442539936996,-0.04369977952857694,0.033855179502068844,-0.04322548028311426,-0.013980117166696258,0.039942975108813665,0.010161132604906248,-0.015561331475166014,0.10559520609545002,-0.03993432818029632,0.03194009688647331,-0.01873948426981415,-0.059613047484448525,-0.022677979861388645,0.03920510536819386,-0.06997636699148561,-0.08291450302259369,-0.0787684469593383,-0.19086848864924916,-0.1332737599662093,0.07566276370930482,-0.06610771449520939,0.035626679613364624,-0.08623876436288663,-0.07357631072375016,-0.09571043467949583,0.03444958677986559,8.784849156358892,14.05477546678243,4.872059729488875,18.604036203622805,37.414481373439976,41.93528730233564,42.72916547118525,43.30778769340747,43.35258769340747,50.924987904579865,36.92588364138713,6.1761087528731995,5.669324359326862,0.0,13.99910426319274,7965.661962009358,7524.216940553012,930.5466186673502,84.0,36.0,47.0,59.0,71.0,72.0,76.0,86.0,83.0,358.1230860799106,27.0,4.844187086458591,5.680172609017068,6.53813982376767,7.396948602621014,8.264363329731667,9.13270310224903,10.005276698438163,10.878367895820443,11.753979658827259,0.7000000000000001,0.9880000000000003,1.1238514860961866,0.6631624714382186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6919741849634067,0.975337690631808,1.0097030023468483,0.6449693511545334,6.0,3.0,0.0,0.0,0.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,23.994432823184876,10.905948315104613,5.752853606746789,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,24.26546827384644,35.19936017677004,31.897796192026533,12.300809959361379,217.5306877725235,-629.163324606905,-52.65647957212725,-13.981407213486776,-41.944221640460334,405.3093067833024,766.9655274532697,23.432726479516198,17.043678387850434,25.56551758177566,0.4666666666666667,0.8274041065513399,0.21147119755901983,165.9162604648289,0.08043487830045175,51.10309997625527,0.1725958934486603,8.0,0.2962962962962963,0.3080377063240841,0.6503006549613639,0.8498000793066793,0.9048700984209215,0.9210556895738049,0.9291484851502465,2.618520000000001,,1.8035714285714288,1.389555950537421,1.1082508187380549,1.8006559751755822,-4.377290316528427,1.2713433292533662,1.237629484152691,-1.9973784437328954,96.13740000000006,14.026475781290461,0.0,14.951935562841626,0.0,24.253848911184132,20.32356147030337,47.78605840046658,0.0,5.749511833283905,4.007333185232471,0.0,5.293304824724492,2.3978952727983707,6.776506992372183,4.727387818712341,8.353968130313271,6.842683282238422,9.980680048366034,31.500000000000004,10.997077644473684,13.042997779132998,0.0,0.0,0.0,1.5106634227585505,2.723438494926591,0.0,44.460000000000015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.57331687432839,9.720841474747257,0.0,5.749511833283905,34.84426838588815,21.665571033932125,6.923737199690624,17.678201109471466,41.68511539574183,0.0,11.033401435232523,0.0,29.84231121471984,31.1388383233533,32.60721088830182,282.71022016953987,,192.88770128966314,220.4038573939446,228.56467242809225,192.9240181885948,299.8771489386879,221.00162899851557,219.3733218735183,267.21474239690014,32.60721088830182,282.71022016953987,,191.42498695236463,219.20260467969536,227.63374174035226,191.46356528272622,302.95713950292213,219.89435797914348,218.28567056560655,268.7327500141373,4.758091568332509,213.22066178856875,,144.89368527486522,168.5393736588594,174.6858010227662,144.91967663065864,226.4232964282144,168.69946000688012,167.12831400849674,201.15943513285086,1.304288435532073,11.308408806781594,,7.715508051586526,8.816154295757784,9.14258689712369,7.716960727543792,11.995085957547516,8.840065159940623,8.774932874940733,10.688589695876006,2.4180006054329115,141.3551100847699,,96.25025945150031,110.2575109349938,114.31894520517822,96.26792610639212,149.28992459319682,110.55166823242793,109.73616611612526,133.36768578520216,43.89019607843136,0.0,3.590997418323599,0.0,0.0,0.0,0.0,45.436635105608175,2.2979802303793133,0.0,10.778464019247227,0.0,0.0,0.0,0.0,0.0,0.0,29.023620801954,515.3403692199045,76.12640240679956,160.7110049472652,210.01397385607157,223.6236143305084,227.6236143305084,229.62361433050836,666.0,126.4941388069309,107.49962533592148,73.37975955475758,81.4,81.4,0.875,8.428828911029017,5.754887502163468,4.119893402537391,4.91247191377891,,4.8877943117016525,4.912278434839209,4.908557763144279,4.887754119838037,4.859361699425763,4.910601105274484,4.90880297350802,4.88865384038381,0.16479573610149564,0.19649887655115642,,0.1955117724680661,0.19649113739356835,0.19634231052577117,0.19551016479352148,0.19437446797703054,0.19642404421097936,0.19635211894032079,0.1955461536153524,2.332118021730338,2.5080679917562767,,2.5030318726006144,2.508028605729587,2.5072708959382957,2.503023649662761,2.4971978235943086,2.50768709088678,2.50732085037521,2.5032077091970963,263.5500000000001,635.331123863925,145.35803185257876,,147.218204259372,145.23704531178453,145.58838609907906,147.22136721026703,149.3478960540902,145.38965153328226,145.542948109343,147.28290576081224,25.413244954556998,5.8143212741031505,,5.888728170374879,5.809481812471381,5.823535443963163,5.888854688410682,5.973915842163608,5.815586061331291,5.82171792437372,5.89131623043249,7.3704370497603025,5.895490616056006,,5.908206600762696,5.894657934725232,5.897074098652252,5.908228085313019,5.922569189085792,5.895708122042365,5.896761950939065,5.908645998104708,23.41368680146541,13.042997779132998,0.3414962813127498,3.136412430695059,1.017528869572521,9.3229329449272,2.487112274360096,3.1478216912169996,1.6668527187771138,308.21136114782973,135.4868123879636,-391.86808167289,-32.79656145003269,-8.708179592730886,-26.124538778192665,252.4428464303376,477.6968049435005,14.594839232930024,10.61548455430001,15.92322683145002,1695.0,36.0,1.2614856834587245,0.6882165726780756,0.0,0.0,0.39363455326096647,0.1169384523231977,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02282177322938192,0.34301303412082035,0.10338261320980224,0.5998618098573926,0.15458064326913265,17.6480536021256,15.131306061784553,12.18587184800163,9.456498650194987,10.408601715238735,6.983133134661409,8.822204967227412,4.9714369231400495,7.039575097249198,3.5537923596413283,5.581710268546744,2.5019249087056656,3.684618934114413,1.488088820728918,2.525228103288999,0.9258004775731228,3.3658337668052467,1.4572608568049887,5.004129617696313,1.998454769592108,7.410480129846684,2.6429005993743746,81.17995771080848,40.14125448590959,27.973247350152903,25.758613814693252,24.672259518057356,24.51706604710937,126.0,146.0,52.001859999999986,31.514139999999998,0.37777777777777777,129.07,7.527777777777779,5.694444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,15.0,16.0,45.0,0.0,0.0,47.0,16.0,0.0,7.0,40.0,16.0,27.0,31.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,5.0,0.0,2.0,25.0,7.0,0.0,3.0,3.0,0.0,3.0,8.0,1.0,0.0,0.0,2.0,3.0,3.58351893845611,7.036244685254152,4.1705337005796475,4.767501597905544,5.345618327166001,5.8309656348245,6.035743060976474,6.337033121144073,6.72789475386392,6.729422630903075 +11080,S=C=Nc1cccc2ccccc12,0,35.4,5.900425,3.55,7.622222222222223,150.38656755849215,140.9028714,2.1705095166971504,6.065275000000001,3.0131858710562414,7.446020450000002,285.8181770123732,29.428571428571427,6.128571428571428,4.190476190476191,7.984126984126985,138.59853447825242,113.9620838571428,2.2376052461904754,6.327642857142858,3.2680776014109347,7.544308095238096,314.6000355794946,25.625,6.0497125,4.03125,6.697916666666666,141.36003384786252,97.46880065625001,2.008972510625,6.232021875000001,2.953125,7.491896687500002,280.6919942587242,20.48780487804878,5.879975609756096,3.3902439024390243,5.113821138211382,148.97720698048403,76.45132821951218,1.7386680510791463,6.027512195121951,2.6990364348087925,7.387078780487806,233.8515340075583,20.210526315789473,5.877447368421052,2.8421052631578947,3.859649122807017,151.48938295915252,74.30175242105263,1.6733235210367368,6.017171052631579,2.7478882391163095,7.420147052631578,214.307504828223,20.322580645161292,5.759838709677419,2.2580645161290325,2.440860215053763,154.72855953423468,73.61041206451611,1.6497986178788713,5.899080645161291,2.5260852250099557,7.401796580645162,193.25484027516174,21.57894736842105,5.512631578947369,1.736842105263158,0.9473684210526315,155.40063438661605,77.26652910526317,1.6808761260128946,5.671026315789473,2.0458089668615984,7.311787473684212,171.0351925340668,21.714285714285715,5.340571428571429,1.2857142857142858,0.2857142857142857,151.75066982252685,70.88018799999999,1.8066956028139998,5.556714285714286,1.568783068783069,7.381159142857143,155.46254194490896,16.0,5.368,1.0,0.0,140.88000546443,32.316480000000006,1.9336996999999998,5.676000000000001,1.2962962962962963,7.664544,136.19864577098818,12.36,0.041604749999999954,0.004873987754305355,0.4875,3.0711111111111116,1.6118169858093463,55.11452256,0.3429366065031475,0.045612749999999966,0.324193244170096,0.02012294749999999,52.60052922528682,0.12571428571428586,0.002458821428571372,-0.0017980189526287191,0.16964285714285715,0.5817989417989418,-0.10426749353510309,0.6210717257142806,-0.0038156144431426803,0.002695107142857021,-0.000634389901365207,0.0004678334523809728,0.08267077090233041,-0.385,-0.001083656250000039,-0.0005566537768852183,-0.015625,-0.19541666666666668,-0.43383541971318373,-2.189171685000001,-0.06510423611100058,-0.00048150000000007215,-0.05263278034979423,0.002999435312500009,-9.107851056722183,0.6790243902439024,0.0011419573170731653,0.000313288943114343,-0.12042682926829268,-0.15186991869918703,-0.043518696935190206,3.0086787131707338,0.011785457053143948,0.0016862743902438973,0.030115615276523136,0.00046852323170730925,0.9811713836775853,0.17684210526315775,-0.0050683026315789465,0.0002828250110620205,-0.17434210526315788,-0.7588304093567251,-0.11722781227975565,0.48045847157895105,-0.0011851952171606814,-0.005332092105263151,-0.011587656125911493,-0.0016055053947368423,-5.281471088337366,-0.14709677419354836,-0.010672330645161265,-0.0009663603743291958,-0.04233870967741935,-0.6237992831541218,0.23746667371746125,-0.6822319406451587,0.02819066730438794,-0.010807266129032208,-0.07562693592636843,-0.004489352338709679,-0.2861352037838498,-0.6021052631578945,-0.001076328947368351,0.0001263759815600253,0.10197368421052631,0.07157894736842108,0.252306738094354,-2.0067882547368434,0.02374558220989721,-0.0008845921052630299,-0.05358552631578947,-0.002110473815789492,5.423606889984302,-12.845714285714283,0.009765964285714388,0.0015942239598833261,0.3482142857142857,1.8907936507936507,-0.48398509326194067,-55.47024561714288,-0.28122155764588314,0.0028665357142858678,0.11485731432490695,-0.007872326071428569,-11.601030955346062,-42.559999999999995,-0.004299749999999877,-0.0003642955301869853,0.5625,3.128888888888889,-2.5742948782613446,-188.17760076000005,-1.0605947720031472,-0.03206774999999988,0.2197882373113855,-0.030860947499999916,-88.7933929056483,,,0.517948717948718,1.5769230769230769,1.0,0.038461538461538464,0.5769230769230769,0.4230769230769231,0.44636504340720645,-6.164136918728448e-05,0.013169127861581946,0.8222951105896291,0.32075224437015887,0.17271044025849724,1.2686601539968356,0.4934626846286561,2.042403774171377,1.757777032735364,0.1519794155036675,0.0,0.0,0.28462674143601296,9.2514960112,708.0,118.00850000000001,71.0,152.44444444444446,3007.731351169843,2818.057428,43.41019033394301,121.30550000000001,60.26371742112483,148.92040900000003,5716.363540247465,618.0,128.7,88.0,167.66666666666669,2910.569224043301,2393.203760999999,46.98971016999999,132.8805,68.62962962962963,158.43047,6606.6007471693865,820.0,193.5908,129.0,214.33333333333331,4523.521083131601,3119.0016210000003,64.28712034,199.42470000000003,94.5,239.74069400000008,8982.143816279175,840.0,241.07899999999995,139.0,209.66666666666666,6108.065486199845,3134.5044569999995,71.285390094245,247.128,110.6604938271605,302.87023000000005,9587.912894309891,768.0,223.34299999999996,108.0,146.66666666666666,5756.596552447796,2823.4665919999998,63.586293799395996,228.6525,104.41975308641976,281.96558799999997,8143.685183472474,630.0,178.555,70.0,75.66666666666666,4796.585345561275,2281.9227739999997,51.14375715424501,182.87150000000003,78.30864197530863,229.45569400000002,5990.900048530014,410.0,104.74000000000001,33.0,18.0,2952.6120533457047,1468.0640530000003,31.936646394245,107.7495,38.87037037037037,138.92396200000002,3249.668658147269,152.0,37.384,9.0,2.0,1062.254688757688,496.16131599999994,12.646869219697999,38.897000000000006,10.981481481481483,51.668114,1088.2377936143628,16.0,5.368,1.0,0.0,140.88000546443,32.316480000000006,1.9336996999999998,5.676000000000001,1.2962962962962963,7.664544,136.19864577098818,247.2,0.8320949999999991,0.0974797550861071,9.75,61.42222222222223,32.236339716186926,1102.2904512,6.8587321300629505,0.9122549999999993,6.483864883401919,0.4024589499999998,1052.0105845057365,2.6400000000000032,0.051635249999998814,-0.0377583980052031,3.5625,12.217777777777776,-2.189617364237165,13.042506239999893,-0.08012790330599628,0.05659724999999744,-0.013322187928669349,0.009824502500000429,1.7360861889489385,-12.32,-0.03467700000000125,-0.017812920860326986,-0.5,-6.253333333333334,-13.88273343082188,-70.05349392000004,-2.0833355555520185,-0.015408000000002309,-1.6842489711934154,0.09598193000000028,-291.45123381510984,27.839999999999996,0.04682024999999978,0.012844846667688065,-4.9375,-6.226666666666668,-1.7842665743427986,123.35582724000008,0.4832037391789019,0.06913724999999979,1.2347402263374485,0.01920945249999968,40.228026730780996,6.719999999999994,-0.19259549999999998,0.010747350420356778,-6.625,-28.835555555555555,-4.454656866630715,18.25742192000014,-0.045037418252105894,-0.20261949999999973,-0.44033093278463675,-0.061009205000000004,-200.6959013568199,-4.559999999999999,-0.3308422499999992,-0.02995717160420507,-1.3125,-19.337777777777777,7.361466885241299,-21.149190159999918,0.8739106864360262,-0.33502524999999844,-2.3444350137174212,-0.13916992250000004,-8.870191317299344,-11.439999999999994,-0.020450249999998667,0.002401143649640481,1.9375,1.3600000000000003,4.7938280237927255,-38.12897684000002,0.45116606198804693,-0.016807249999997567,-1.018125,-0.04009900250000035,103.04853090970173,-89.91999999999999,0.06836175000000072,0.011159567719183283,2.4375,13.235555555555555,-3.387895652833585,-388.29171932000014,-1.9685509035211821,0.020065750000001076,0.8040012002743486,-0.05510628249999998,-81.20721668742243,-42.559999999999995,-0.004299749999999877,-0.0003642955301869853,0.5625,3.128888888888889,-2.5742948782613446,-188.17760076000005,-1.0605947720031472,-0.03206774999999988,0.2197882373113855,-0.030860947499999916,-88.7933929056483,0.6996932183267545,0.5933392577860714,0.45821535001232355,0.3129252311601194,0.2882249870025823,0.160218831132563,0.1826110840445312,0.08433347834534866,0.1226087085376953,0.04688154265832939,0.08291531519357664,0.026317601212096156,0.058012429340106496,0.014916816151960516,0.0396695715327761,0.008343317917193007,16.00441214920604,5.655144821578978,3.1554404371729032,2.1545725071356356,0.37263706028010124,-0.3657260275027661,3.239106642464764,0.956204590238575,5.048502298981339,0.6534549210967402,14.549373914145027,10.312999896344797,32.062200419902894,11.66648216704814,2.9355182042845933,1.0191197262241611,3.1394641948973536,2.204475644120714,3.0795929797073534,1.2600709989745669,3.3086038575730536,2.400435994542024,24.440465788391997,15.588505553136864,0.29884760023122603,0.4694431108242601,0.6243785919127236,0.8079669137715161,0.8782226740771469,0.8990241338447978,1.940215870555883,478.91919040655375,0.0,0.0,0.0,0.0,8.0,0.0,2.0,0.0,0.0,2.885261612970675,2.0651484454403226,1.3203185978283347,0.4377443751081733,0.09999999999999964,0.0,-48.46491107640654,216.8795805887467,19.24258805255389,10.843979029437335,21.68795805887467,,7.0,148.0,0.0,0.0,0.0,0.0,11.073610489148358,5.386224214464796,0.0,30.33183534230805,34.504274164731136,0.0,6.733333333333333,20.5,13.0,0.5,7.5,0.017948717948717954,0.0,5.5,0.15279279279279256,0.09777777777777757,-0.05501501501501499,0.0,0.024580204778156922,0.0,0.5933333333333335,0.7512820512820512,0.4405405405405409,0.4955555555555559,0.7512820512820512,5.802745564293684,-0.0008013377994346982,0.1711986622005653,10.689836437665178,4.169779176812066,2.245235723360464,16.492582001958862,6.41501490017253,0.689419795221843,0.12376237623762376,0.0,0.22277227722772278,0.0,0.5664134338368688,-0.33667488530071155,-0.02592616365347603,-0.016833744265035578,-0.033667488530071156,0.43358656616313107,0.25772289057844644,0.026811634481081797,0.012886144528922323,0.025772289057844646,-3.21061289452654,0.5069155493912776,0.6977396983345825,1.2562234715993916,0.6031746031746031,0.5900265315967196,0.8492149528291785,0.5160349654103425,0.6073096954482201,0.6638024925674759,0.761969741789332,0.6878476733613512,0.7053679700946958,0.5200116302588997,0.8229848304580608,0.9970414716552594,1.157051282051282,0.9027620748914614,1.062713422949311,0.5464085080047957,0.7782393608153152,0.7832445423702799,0.8769353002467347,0.5824514447374073,0.9254341671264131,0.5286526166232536,0.9092360027488654,0.8735388377217893,1.3783614759224514,1.0151865447742752,0.911242107458764,0.5551544790365748,0.6683755772044364,0.8913412234571231,0.7732257959858484,0.8130497744840447,0.8847256603686973,0.7332119741100324,1.2365475095992648,1.0285900049575272,1.2307692307692306,1.2192474674384945,1.0386545208196312,0.7559289410453346,0.8198116397634255,1.1888945525099885,1.091133154739395,1.1447440788681675,1.0354679060887244,1.1888636600897797,1.4120208436187789,1.2788905051166644,0.7857733664185276,1.209619065403109,0.925286727764986,1.1829134848844738,1.0498727467695268,1.376127324331535,1.4136489662574159,1.4185869944203362,1.064058912794529,1.943770226537217,0.9090909090909093,0.791364654654457,0.5641025641025641,1.0356367583212733,0.970183126167103,1.8827962586817701,1.5852613060345901,1.016492099248565,1.2848185455612886,1.1534455874319598,1.1557586901625252,4.39204808136847,0.43449709124902436,0.23977848945705232,0.27838827838827834,0.5032819929708496,1.588836476017792,4.205429174921883,3.458972600705468,0.828042284542934,0.6297268615886902,1.5778588811888221,1.6852359813577062,8.646844660194175,0.6576172191877123,0.4524839452144328,0.0,0.0687409551374819,3.0906349692399333,8.310108899181582,6.907767703654386,1.5037462113115305,0.12862994824654428,3.1447617204189373,3.2099534942557075,1.5,0.0,1.333333333333334,0.6875,0.47555555555555556,0.18055555555555558,0.10040816326530613,0.027777777777777776,0.0,0.0,2187.055852657345,2354.6149989798587,1232.7835766502733,1160.9949457455928,7.627238481683863,0.4038702805213473,4.546823536482986,0.6774872436733291,1.0,0.0,1.4366664819166874,2.25677964944704,3.001609497059028,3.8841837197791893,4.221928094887363,4.321928094887363,0.10714285714285712,0.0,0.07407407407407411,0.03819444444444445,0.03396825396825397,0.020061728395061727,0.025102040816326533,0.027777777777777776,0.0,0.0,0.3263211766187957,9.551020408163266,4.481481481481482,2.0833333333333335,81.73211249869378,1.0,3.4918895227250015,37.55717057582261,,24.022893129995094,24.390002599522894,24.186354131800407,24.024943557981764,28.80825644158206,24.518770729447027,24.59942267592528,27.68827054040984,0.010171058714748047,0.05909953619650099,-0.36890099919526254,0.347985347985348,0.1894424919026945,-0.06468941229251716,0.011268749085835873,-0.011126296728861052,0.05908670586309799,-0.0019568264076235925,0.023248753811089207,0.0015716718466510756,-0.03114886731391586,-0.02604645503217878,-0.11420910452503857,-0.03205128205128205,-0.06363060781476121,-0.26915923056570884,-0.03972041457161815,-0.18984335552525228,-0.010556258940758286,-0.16235002208182706,0.14905546578104475,-0.1731513197845115,0.054937248401610225,0.02744776298555253,0.06427774522773565,-0.24702939337085675,-0.04945113126963397,-0.026999775606247278,0.05458958135571907,0.034366284700014314,0.03696936471148744,0.09289402483884654,0.02328303205617912,0.018653260682516166,0.014307613694430238,-0.12182028810602039,0.05802743570953616,-0.3576248313090418,-0.24708660217838369,-0.072730225150774,0.008717456838275314,-0.0034560183855723886,-0.11689915879360825,-0.035743052436440485,-0.07978480263573927,-0.10040718536722225,-0.011901033510804885,-0.25651711992407783,-0.1982689376836406,-0.086848635235732,-0.20311843518043038,0.1473285588923245,-0.012378442358861989,0.08220372736478106,-0.2369352018686051,-0.23327733469574985,-0.22309616117170117,-0.005439778040223503,-0.048714018054845834,-0.025870338059196415,0.025928662099816157,0.20917678812415652,0.023307182572930157,0.15653559946054452,-0.0364112426548224,0.06924189998853117,-0.01939352714456003,-0.1652888432421328,-0.10487896048973405,0.10310935973201185,-1.0392972723069809,0.23473195454159435,0.3270882161070461,0.7142857142857142,0.6156708703741988,-0.300272982306931,-1.0064542527199727,-0.820039483429431,0.06284505350556303,0.3542865756469751,-0.39121138051115883,-0.22054970028265533,-3.44336569579288,-0.10334757449569776,-0.07474280785075649,1.1538461538461537,1.0188133140376265,-1.5971384474327937,-3.4143015673435606,-3.0926846300189683,-0.7030435569002068,0.6779544030105333,-1.5336196399657618,-1.6880703333867288,9.972207146555277,11.106315148096206,2.381101577952299,16.1884620144981,26.03884126970516,34.98499256937275,38.490528745189906,39.93127507529895,40.03207507529894,26.551249064227903,22.85110142555973,1.9757324015476774,0.0,0.0,3.7001476386681684,1295.230497551347,1001.7588992198487,418.66080894276524,9.0,18.0,24.0,31.0,37.0,31.0,29.0,26.0,22.0,185.029920224,14.0,4.174387269895637,5.003946305945459,5.855071922202427,6.70808408385307,7.5688956634069955,8.427487278331744,9.29053691397046,10.150621030590434,11.01424248665062,0.7999999999999998,0.9681999999999998,1.083214972070016,0.7711431188077598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.8095075149700598,0.962156862745098,0.9923707210487983,0.7420707815998373,7.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.992404732635669,0.0,36.39820241076966,23.6704647259731,5.386224214464796,10.84864812680911,206.66885536150835,-122.84350797037199,-9.459751916339986,-6.142175398518599,-12.284350797037199,158.2039442851018,94.03607261837473,9.782836136213904,4.701803630918737,9.403607261837474,0.42857142857142855,1.0,0.3265100687566797,50.777132888529145,0.13751118284196964,29.204737707420094,0.0,4.0,0.07142857142857142,0.3324133234924006,0.5221696427843637,0.6945070420328813,0.8987154886667355,0.9768621786840241,1.0,3.5741000000000014,,0.7678571428571429,0.16107758850857057,0.13834909018785557,0.7678588809151259,-0.09404388714733536,0.17281211750306014,0.21161909727170636,-0.16174575307196082,58.63400000000003,0.0,0.0,0.0,4.992404732635669,0.0,0.0,42.46456947923127,0.0,0.0,3.367295829986474,0.0,4.61512051684126,0.0,6.1070228877422545,0.0,7.716460800176355,0.0,9.38252741428954,15.999999999999996,14.031481953892667,0.0,0.0,0.0,0.0,2.2882870370370374,0.8825000000000003,0.0,19.363999999999997,0.0,0.0,4.580304705215419,0.0,0.0,0.0,3.99962962962963,0.0,21.664299441400317,0.0,5.687386274683562,0.0,5.1612618521255476,0.0,0.0,0.0,47.456974211866935,0.0,10.772448428929591,0.0,15.422862376155194,16.190150299401196,17.130940081758638,75.11434115164525,,48.04897122625122,48.755224031208506,48.35142378772757,48.05387013361518,57.68885433481151,49.01095497894928,49.166288567350904,55.50096089086173,17.13094008175864,75.11434115164525,,47.51737781965781,48.61892761016279,48.234359172953226,47.522275523750835,57.71055677030706,48.86472934106207,48.98722625427487,55.53828683387833,4.737503653684662,53.3463413731152,,34.344199258835424,34.81647889586664,34.47993388292081,34.34754477597383,42.571163397562664,35.030627721986065,35.17150344852202,40.49295787054698,1.3177646216737413,5.77802624243425,,3.696074709711632,3.7504018485545005,3.7193402913636593,3.696451548739629,4.437604179600886,3.770073459919175,3.782022197488531,4.2693046839124404,2.368751826842331,37.55717057582261,,24.02289312970519,24.39000259933568,24.18635413157054,24.02494355769245,28.80825644157985,24.51877072928257,24.599422675773276,27.68827054040318,19.24313725490196,0.0,0.0,0.0,0.0,0.0,0.0,19.847414420975966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.841415631996746,364.8727996466102,28.73332963833375,45.1355929889408,60.03218994118056,77.68367439558378,84.43856189774726,86.43856189774725,254.0,95.19327295484683,0.0,44.188427449035885,44.45,12.36,0.75,8.113458811296471,4.807354922057604,3.302149106035748,3.552974191947401,,3.566942117641315,3.562390189794907,3.562571615456665,3.5669378077718243,3.5510037874146927,3.562241395521169,3.562359102503233,3.553297771550433,0.25401146969505756,0.273305707072877,,0.2743801628954858,0.27403001459960824,0.27404397041974343,0.2743798313670634,0.2731541374934379,0.27401856888624376,0.27402762326947944,0.27333059781157176,1.4569377652256674,1.5301493177443966,,1.5340729435304457,1.5327959856699742,1.5328469124445327,1.534071735248407,1.5295945850048072,1.5327542166965253,1.5327872591056002,1.5302403864805547,140.35999999999996,63.12005881868165,54.51462697402563,,53.85040883744971,54.08929024271361,54.074930908723935,53.85066104936174,54.61203556979579,54.09942369025356,54.09586400166116,54.52330846255823,4.8553891398985884,4.193432844155818,,4.142339141342285,4.160714634054893,4.1596100699018415,4.142358542258595,4.200925813061215,4.161494130019505,4.16122030782009,4.194100650966018,4.407402872859581,4.260833314972427,,4.248574260194267,4.2530004684809235,4.2527349586122964,4.248578943748706,4.262618554608099,4.2531877975876515,4.253121996411471,4.2609925529205075,0.0,3.99962962962963,4.672750377928949,0.8825000000000003,0.0,14.031481953892667,0.0,0.0,0.0,163.34995095253024,75.4078438555139,-44.8222546715603,-3.4516061656773562,-2.241112733578015,-4.48222546715603,57.72431606644143,34.31120508403833,3.569490809504394,1.7155602542019164,3.4311205084038328,236.0,18.0,0.46941609682128765,0.22005183941882683,0.0,0.0,0.13608276348795434,0.04269016102873266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.25137565482875424,0.06846246121695465,9.096011838247808,7.713410351218929,6.41501490017253,4.380953236241671,5.188049766046482,2.883938960386134,4.382666017068749,2.0240034802883677,3.8008699646685544,1.4533278224082111,3.0678666621623356,0.9737512448475578,1.7983853095433013,0.46242130071077603,1.150417574450507,0.24195621959859717,1.3806820952411107,0.5240310835359182,2.4633868134879453,0.7593999539812538,3.7847091179911265,0.952995298984827,39.989543670430734,37.524617793948075,27.836512971464217,22.953949825022185,20.97744766494808,20.745254855459343,64.0,74.0,27.037550999999993,9.392449,0.5,40.02,3.5833333333333335,3.055555555555556,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,11.0,20.0,0.0,0.0,21.0,11.0,2.0,7.0,14.0,13.0,14.0,8.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,2.0,0.0,0.0,13.0,2.0,0.0,1.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,2.0,3.1135153092103742,6.163598480899817,3.7256934272366524,4.363098624788363,5.0197602018732566,5.608326450883828,5.82452409235233,6.167254402038721,6.483202912640319,6.714137345196244 +5639,COc1ccccc1N1CCN(CCCNc2cc(=O)n(C)c(=O)n2C)CC1,0,20.80701754385965,6.126921052631579,3.0,6.666666666666667,166.86058249053897,81.81811445614038,1.3447611621161577,6.177522807017544,3.9147173489278755,7.6615632280701735,197.14929509622914,23.508474576271187,6.410237288135593,3.6440677966101696,6.254237288135593,151.0371969547035,88.27586450847461,1.6348283555932208,6.532440677966102,2.921374764595104,7.813295050847454,238.7602982782908,18.849056603773583,6.371432075471698,3.2830188679245285,4.7924528301886795,164.3887998173683,69.08855683962264,1.3561063444866404,6.4349716981132055,2.7484276729559753,7.850082603773584,192.9535272810456,16.875,6.182925735294117,2.9411764705882355,3.5955882352941178,161.51044311732744,60.68760512499998,1.3030312932634487,6.259619117647058,2.7493872549019613,7.699170852941173,180.24714955458253,13.745222929936306,6.135208917197453,2.4394904458598727,2.477707006369427,163.70655254562277,46.868206630573226,1.1826893779441083,6.193672611464969,2.971337579617834,7.696906573248405,155.2213789329325,10.93939393939394,5.792515151515151,2.212121212121212,1.4666666666666666,164.07487617961942,36.186838096969716,1.088774169249727,5.859466666666666,2.1383838383838376,7.412802424242424,135.54295176143063,9.821656050955413,5.810451592356688,2.0764331210191083,1.4904458598726114,168.61513423657874,31.686045273885345,0.9948020628235608,5.856877070063695,2.1528662420382165,7.4509265222929955,121.50291710551961,10.046153846153846,5.716683846153847,2.1615384615384614,1.6538461538461537,169.18016856089272,33.480456999999994,0.9856410601265384,5.766681538461539,2.0185897435897435,7.360058584615385,120.97922244528023,12.047619047619047,5.937437142857142,2.419047619047619,2.257142857142857,169.23521170624545,41.34708117142857,1.0787479958177717,5.982421904761903,2.2817460317460316,7.544954857142858,139.24605136511204,7.49092028316405,0.12442105263157886,0.021541845204750464,0.562019082794706,3.9470606340412435,1.4514270852644147,35.605787507540775,0.21285193307891284,0.1172881502000615,1.319038336582196,0.07298815881809785,48.31058995835901,0.5807419231993162,0.0028644067796610643,-0.011338866039443648,0.25986613873369124,1.4549613701217063,-0.7356432323770564,2.6649363717336643,-0.045326639346938535,0.006017231899254571,-0.012607240008369982,-0.0019646345837832755,-4.26098171499953,0.4590962676469395,0.003281132075471748,0.0014019918090035332,-0.023786709408410118,0.2621416168690513,0.3038416519340385,2.247071787560171,0.034511194100797914,0.002964051057800121,0.07506405776846026,0.0023078617049077533,6.250406897441155,-0.07515660927344148,-0.004044852941176444,-0.001888533358994457,-0.14315943367189904,-0.3661782811000669,-0.06832816951404667,-0.3871496931703002,-0.015380888562767807,-0.0026750181051182972,0.06749273783587506,-0.0029880716147955015,-1.6880861147226625,-1.4808632935562733,-0.0035235668789808656,0.00243385813282657,-0.11504176689348801,-0.7374282728835724,0.06196915930472917,-7.099083572687726,-0.02346700149781145,-0.007197570246994142,0.07863489816780679,0.00167525966441414,-8.672008169910464,-0.6248915750300792,-0.0070060606060606285,-0.0019245149551987814,-0.034108396989283425,-0.4212764766781388,-0.19926308747624769,-3.0021437552813435,-0.025839746273769882,-0.006827288956042439,-0.04068462401795728,-0.004024688323680014,-5.425457595672118,-0.47695224204213754,-0.007596178343949065,0.00026947859198323454,0.03905366276345686,-0.13859041390491542,0.0004067311895138772,-2.232660830593634,-0.0008279544842904547,-0.007814678303760314,-0.12070456868758353,-0.004028572719092401,-1.5909845636260045,0.7657598787792691,0.004979999999999954,0.0001243126155687645,0.04742761086251391,0.2252740488197551,-0.03389702829781621,3.648761342391747,0.008980238273079307,0.006329096763501151,-0.014577397910731149,0.001177265203494561,3.829064232070409,0.3411599173372025,-0.0006628571428571512,-9.411506539344843e-05,-0.02049861495844876,-0.19050257222002379,0.3609402006082947,1.7259724067449338,0.042546080601710515,-0.0009492529569537954,-0.04797178130511461,0.0002125529613507456,7.0441838634088425,,,0.4642857142857144,1.1607142857142858,0.4642857142857143,0.07142857142857142,0.6964285714285714,-0.23214285714285715,0.8915464177686747,0.014534803904484013,0.023749089618769727,0.8897057738113369,0.23601558816041904,0.24638580659127896,1.7812521915800115,0.48240139475169797,2.0231534744945714,1.4472141048709626,0.38269964859844396,0.19323972102516462,0.0,0.5759393696236085,6.793456838385979,1186.0,349.2345,171.0,380.0,9511.053201960722,4663.6325240000015,76.651386240621,352.1188,223.1388888888889,436.7091039999999,11237.50982048506,1387.0,378.204,215.0,369.0,8911.194620327506,5208.276006000002,96.45487298000003,385.41400000000004,172.36111111111111,460.9844079999998,14086.857598419158,1998.0,675.3718,348.0,508.0,17425.21278064104,7323.387025,143.7472725155839,682.1069999999997,291.33333333333337,832.1087559999999,20453.073891790835,2295.0,840.8779,400.0,489.0,21965.42026395653,8253.514296999998,177.21225588382902,851.3081999999999,373.91666666666674,1047.0872359999996,24513.612339423224,2158.0,963.2278,383.0,389.0,25701.928749662777,7358.3084409999965,185.682232337225,972.4066,466.49999999999994,1208.4143319999996,24369.756492470402,1805.0,955.765,365.0,242.0,27072.354569637206,5970.828286000003,179.64773792620497,966.8119999999999,352.8333333333332,1223.1124,22364.587040636055,1542.0,912.2409,326.0,234.0,26472.57607514286,4974.709107999999,156.18392386329904,919.5297000000002,338.0,1169.7954640000003,19075.95798556658,1306.0,743.1689000000001,281.0,215.0,21993.421912916056,4352.4594099999995,128.13333781645,749.6686,262.4166666666667,956.807616,15727.29891788643,1265.0,623.4309,254.0,237.0,17769.697229155772,4341.443523,113.26853956086602,628.1542999999998,239.58333333333334,792.22026,14620.835393336765,426.98245614035085,7.091999999999995,1.2278851766707763,32.03508771929825,224.98245614035088,82.73134386007163,2029.529887929824,12.132560185498033,6.685424561403505,75.18518518518518,4.160325052631578,2753.7036276264635,34.26377346875965,0.1690000000000028,-0.6689930963271752,15.332102185287782,85.84272083718068,-43.40295071024633,157.23124593228619,-2.6742717214693736,0.35501668205601966,-0.7438271604938289,-0.11591344044321325,-251.3979211849723,48.66420437057559,0.3478000000000053,0.14861113175437451,-2.5213911972914724,27.787011388119435,32.20721510500808,238.1896094813781,3.658186574684579,0.31418941212681284,7.956790123456787,0.24463334072022183,662.5431311287624,-10.22129886118804,-0.5500999999999964,-0.25684053682324615,-19.46968297937827,-49.8002462296091,-9.292631053910348,-52.65235827116082,-2.091800844536422,-0.3638024622960884,9.17901234567901,-0.4063777396121882,-229.5797116022821,-232.4955370883349,-0.5531999999999959,0.38211572685377154,-18.061557402277618,-115.77623884272086,9.729158010842479,-1114.556120911973,-3.6843192351563974,-1.1300185287780802,12.345679012345666,0.26301576731301995,-1361.505282675943,-103.10710987996308,-1.1560000000000037,-0.31754496760779893,-5.627885503231765,-69.5106186518929,-32.87840943358087,-495.35371962142165,-4.263558135172031,-1.1265026777470024,-6.712962962962951,-0.6640735734072023,-895.2005032858995,-74.8815020006156,-1.1926000000000032,0.04230813894136782,6.131425053862728,-21.75869498307172,0.06385679675367872,-350.5277504032005,-0.1299888540336014,-1.2269044936903692,-18.950617283950614,-0.632485916897507,-249.7845764892827,99.54878424130499,0.647399999999994,0.016160640023939386,6.165589412126808,29.28562634656816,-4.406613678716107,474.3389745109271,1.1674309755003098,0.8227825792551496,-1.8950617283950493,0.15304447645429295,497.77835016915316,35.82179132040626,-0.06960000000000088,-0.009882081866312085,-2.1523545706371197,-20.002770083102497,37.898721063870944,181.22710270821804,4.467338463179604,-0.09967156048014852,-5.0370370370370345,0.02231806094182829,739.6393056579285,0.717701691404225,0.6017892167016209,0.4502413017682516,0.32074915549887273,0.28615410545941955,0.17193394370136295,0.19260756812498692,0.09780323863726685,0.12222403434038313,0.055079015948896214,0.07998354695347015,0.0318756515823805,0.053395331296493466,0.01895683916924618,0.035731734146822444,0.011723462704381663,8.024112082156398,5.698894371203943,3.5506974500217305,2.197526200434979,0.4881982943530448,-0.5267640340319748,3.281020981162259,0.9771979289025606,6.023999491000859,0.9960264536206965,14.561434212805796,10.960195426884155,16.01162286395906,11.710864856327515,1.9787194375560213,0.7436991363959216,3.4976737053586535,2.247146471994446,7.009376359907814,1.3492576722954386,3.7094216641287456,2.4430145396329053,20.883843009266364,14.701775828327309,0.2586561824737842,0.5351504432649906,0.7212319650828579,0.8279370679339533,0.8512420007361904,0.8512420007361904,1.3247391031849565,912.7876697696934,0.0,2.0,6.0,0.0,7.0,1.0,0.0,0.0,0.0,4.275167346193809,2.6100172095177516,1.489365841922476,0.8467484650261481,0.7063975878331643,0.7063975878331643,363.46391505631266,1786.3737677155075,53.9772192032253,31.339890661675568,60.16128781251149,,16.0,760.0,0.0,9.589074368143644,11.24901029325548,12.362619183747604,55.1486014082477,17.681138698930155,14.157469523954724,18.19910120538483,21.182975134168895,4.736862953800049,13.000000000000004,32.5,13.0,2.0,19.5,0.0,0.03571428571428559,-6.5,0.13192982456140367,0.03346828609986541,-0.09846153846153827,0.01908866995073888,0.17006694560669422,0.0,0.5719298245614035,0.8535714285714283,0.43999999999999984,0.5384615384615381,0.8344827586206894,24.963299697522892,0.40697450932555235,0.6649745093255524,24.91176166671743,6.608436468491733,6.898802584555811,49.875061364240324,13.507239053047543,0.5439330543933057,0.1666666666666666,0.0,0.31538461538461526,0.5,0.21634779056167225,-0.6032254597858302,-0.037144572139783394,-0.010582902803260182,-0.043087532841845015,0.7836522094383278,2.1849955718214904,0.04710454779807699,0.03833325564599105,0.050813850507476506,-3.459277551047572,0.8513825767336007,0.7913284961809441,1.667554338134081,0.7110847086342287,0.533676263785064,1.8713918573983257,0.860097500833126,1.4054289665414608,0.7571016195341329,0.5440677966101696,0.8138077929778451,1.1872874157799658,0.9409604051122789,1.0556651661718228,1.302687029989062,1.3357994585546302,1.0472934003460492,0.97677335615258,0.9382799192109572,0.8210973776193211,1.0368204505182828,0.5666232921275213,1.008697634114282,0.8384784993402479,0.9807538924847612,0.9847342490295611,1.2951959528012986,1.497438953675665,1.1246628564089394,1.1775374572138897,0.9831179556793773,1.108492267275786,0.9696951135816556,0.7792849898580122,0.9732276307488333,1.044091248262334,1.190400793914578,1.0980902497117058,0.8660786790757629,1.1356973929301455,1.1787472533585517,0.990570642608176,1.1908272666330881,1.1131501058560451,1.1194860433627647,1.1859652976059742,1.0756514974186457,1.1640613924856698,1.0257748825256428,0.8492768633885387,0.9063311343573897,0.8952305088121078,0.9450972608177849,1.080213820617253,1.030099382042817,1.135410797321429,0.8705955100686555,0.659435736677116,0.8273304592357394,1.1263165478487311,1.0375282709066005,0.9751028340895458,0.8212353493025695,0.6903258662908728,0.9084360136845326,0.885682431380275,1.0371032436766987,0.941724624450732,0.9923510223106007,0.9513946848231937,0.9472585165158748,0.9973866867918106,0.8509807392049155,0.745740379192156,0.7347313736830932,0.8269778414356727,0.805122606650991,0.9037203803329842,0.8535724502027635,0.8924803845119375,0.7563466486078966,0.7188063660477455,0.7039126310560161,0.893325822431803,0.9418029419015532,0.9748448956570785,0.8926076150810917,1.0654983570646221,1.048970679975047,0.6944262530155894,0.9386267076574675,0.7285640916443022,0.9814983735237589,0.8725123152709362,0.9329558189717698,0.8082242012632962,5.0,0.13192531374349556,3.7777777777777795,2.0625,1.5200000000000005,0.6319444444444445,0.5044897959183674,0.2864583333333333,0.22171831695641217,0.19812500000000005,5507.04560746435,6357.415367871699,2776.8212970320274,2488.0241858107393,16.664116789776003,0.47159025032621044,8.805481781420331,0.8924707589467146,1.0,0.5,1.5577226679709324,3.2228728046469897,4.343524172242265,4.986141549138593,5.126492426331577,5.126492426331577,0.16666666666666669,0.006596265687174778,0.09214092140921414,0.04583333333333334,0.04108108108108108,0.021064814814814817,0.021020408163265305,0.013020833333333332,0.009639926824191835,0.008614130434782609,0.42567838174785794,22.68,10.85782272456871,5.795610425240055,164.49744520469073,1.0,4.246834260314305,183.77696125778226,,149.1259454115362,144.6768041203245,141.83744287992596,149.16684285606746,222.86692847835113,147.2779137522055,149.389915934943,198.21007900220567,0.07752611177888809,0.023021881900829214,-0.5263646605789913,0.4623795644828931,0.3686189559829557,-0.5068413286796561,0.07484559556980086,-0.21294915527092775,0.05130298234724326,-0.00955790264673961,-0.026917168696905566,-0.08819974499736506,0.061287031538536714,0.026371196884079212,0.06508225250334462,-0.042323668602368275,0.066414388116621,0.20933993517055385,0.06310973425554131,0.16213709502935647,0.02527153043802175,0.056908169904266184,0.03161967286583348,0.12937964332103274,-0.010033027509631497,-0.03250939335124894,-0.087668133395462,-0.254723439211391,-0.09277239826061426,-0.04707654294710847,-0.01087322371646204,-0.07226097663423844,-0.022807232448934085,0.05116813966966095,-0.040939128526894575,-0.03494236183366208,-0.19768776566539292,-0.02831969995796806,0.11298280670449946,-0.20469370242986995,-0.1868297300841178,0.042695330639664825,-0.19938004660574482,-0.11025035647250278,-0.06136655949230213,0.05961532427598752,0.02295248560234608,-0.17950532538280414,-0.08341986717366782,-0.056309285750910335,-0.08933844510099731,-0.06068903714029674,-0.10673169625134693,-0.1372877008423381,-0.08431617344920497,-0.12139775241876728,-0.05820953731810888,-0.030844155844155792,-0.05514166117973191,-0.11230369159947239,-0.0636707138793206,-0.0610521948117734,0.012509540822612932,0.06948814365743228,-0.03511230932447522,0.00028022846868658286,-0.06270499789172729,-0.0038898142587387185,-0.06662802926323427,-0.09150952276364092,-0.055194880708423794,-0.032932418440705095,0.1022250738003881,0.04002538071065956,0.005770750573462982,0.08438790125537113,0.057073875905753614,-0.02335427569318165,0.10247663646307481,0.04219007148856839,0.05396194545404155,-0.011051534672224255,0.016129536935279576,0.07925931426982874,0.045543124801897074,-0.005327532028039713,-0.004368941680664103,-0.03647316538882805,-0.0482644149362802,0.24867952670356855,0.04847449045690672,0.19988580787723903,-0.00809334067708144,-0.03636875439831103,0.0029121567771078207,0.14581034654059347,16.37912004660371,11.73375192919653,1.9505269898622035,14.758593115309642,30.41771012185476,36.60622018307216,38.02611884986086,38.167592534071375,38.167592534071375,56.648297285848,40.52199493638695,10.715590160756431,5.4107121887046095,0.0,16.12630234946104,9026.08515600379,8362.530156008641,965.8836087209993,73.0,41.0,54.0,64.0,76.0,71.0,70.0,70.0,71.0,387.2270397880008,30.0,4.962844630259907,5.808142489980444,6.668228248417403,7.526717561352706,8.390041405755754,9.251962046667002,10.116540363140167,10.97983719053025,11.844995167501617,0.6081871345029239,0.98,1.142167532852183,0.5659782626159937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6370731904611829,0.9653938768489853,1.0031816613638975,0.5928196192700356,5.0,0.0,0.0,0.0,0.0,0.0,3.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,7.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,14.953561288656857,11.567374611118932,0.0,0.0,5.559266895052007,18.82864621050501,4.794537184071822,0.0,0.0,12.13273413692322,25.098312165761804,52.88549306337885,12.797183815961095,138.61096856434932,-386.4780177625799,-23.798001855424754,-6.7803161010978945,-27.605572697327137,502.074883620662,1399.8957499529276,30.179217347800552,24.559574560577673,32.555715115184356,0.5,0.8508330827786155,0.1773841632147066,13.942860604664107,0.11890067129122417,74.30699560291791,0.1491669172213843,8.0,0.23333333333333334,0.2670584674472034,0.5525344720748174,0.7446607362206965,0.8548320878724128,0.8788940669003307,0.8788940669003307,0.7168000000000008,,1.4642857142857144,1.7854816193578409,1.6456504849231428,1.460297629707019,-5.8377918839265455,1.5820838433292534,1.4467993662172398,-2.793606575391221,111.67770000000007,4.736862953800049,0.0,14.034109026433189,14.09534396535438,6.4208216229260096,56.595034311609794,51.169920003707176,0.0,5.749511833283905,4.110873864173311,0.0,5.41610040220442,0.0,6.928537818164665,0.0,8.534836626588833,0.0,10.188704088048116,34.666666666666664,9.59907264766905,0.0,0.0,0.0,0.0,0.0,2.6312495872764776,2.5692575753101683,55.86,0.0,23.721934426650545,0.0,0.0,0.0,0.0,0.0,0.0,65.10354937257443,26.202571581912338,11.50524905251859,5.749511833283905,60.412445003186164,14.09534396535438,0.0,6.4208216229260096,39.920909710451696,0.0,0.0,0.0,32.260760969111644,36.313171856287425,36.53673093750635,367.5539225155645,,298.234856878563,289.34901863055603,283.74456561907374,298.3167367370713,447.51848378386245,294.5468883963882,298.76177370976575,397.2183313116661,36.53673093750635,367.5539225155645,,296.9797548377467,287.8288221186808,282.376180530784,297.06505305446535,451.5716488406288,293.1908165306774,297.5216599672938,399.2137645798027,4.768172144469517,291.521947582233,,242.70086098806388,235.54215723681483,230.32256547451118,242.7647241085587,358.1196484361577,239.697992804299,243.12855987430612,320.73427096258047,1.3048832477680838,13.126925804127305,,10.651244888520107,10.333893522519858,10.133734486395491,10.654169169181118,15.982802992280801,10.519531728442436,10.670063346777349,14.186368975416645,2.384086072234759,183.77696125778226,,149.1259454115362,144.6768041203245,141.83744287992596,149.16684285606746,222.86692847835113,147.2779137522055,149.389915934943,198.21007900220567,55.02745098039216,0.0,4.861842951548897,0.0,0.0,0.0,0.0,57.181354697742165,6.579040855845959,3.207111336818678,5.469141316092048,0.0,0.0,4.805308525933075,0.0,0.0,0.0,33.79071829839203,545.1167187072175,88.79019207434315,183.7037498648784,247.58087781780912,284.2100683008998,292.2100683008999,292.2100683008999,648.0,133.54930910360525,95.56913347779364,63.179052799179345,71.74000000000001,71.74000000000001,1.0,7.658345555078573,5.906890595608519,3.9896142556342347,5.226102352915771,,5.241221608408488,5.241470026516885,5.2390205287129294,5.241212246894379,5.226306307682137,5.241221978497852,5.241216569763462,5.235225920682869,0.14248622341550837,0.1866465126041347,,0.18718648601458887,0.18719535808988877,0.18710787602546178,0.18718615167479924,0.18665379670293344,0.18718649923206615,0.18718630606298078,0.18697235431010248,2.413313965623426,2.68328516941419,,2.6861740197188784,2.686221415581906,2.6857539760406652,2.6861722335851925,2.6833241948241247,2.6861740903301556,2.6861730583690586,2.6850294163858197,301.79000000000076,392.2995199846966,167.79496458776015,,165.85122379453594,165.81238854321433,166.14636427720905,165.85258366249855,167.64311179788118,165.85034975039733,165.85202008959183,166.65390087216267,14.010697142310592,5.99267730670572,,5.9232579926619975,5.921871019400512,5.933798724186038,5.923306559374948,5.98725399278147,5.923226776799905,5.923286431771137,5.951925031148667,7.001645046803504,6.152362202347794,,6.1407105614709385,6.140476376893226,6.142488529570866,6.140718760761583,6.15145680244872,6.140705291407675,6.140715362720673,6.145538629234688,8.038398891402217,28.52724295258362,3.207111336818678,0.5401998994212691,1.480423798043644,9.59907264766905,0.9425181878306877,5.636522668015273,4.861842951548897,361.1425167382826,88.80608651683995,-247.61099816099244,-15.247043099043289,-4.344052599315658,-17.68649986864232,321.67227467319424,896.893401528767,19.335397584752275,15.734971956645031,20.85798608206434,2502.0,45.0,1.6532594383050274,0.7750785463217063,0.0,0.0,0.5906127940630685,0.1469413808041677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2120275878293181,0.09221153450751843,0.42759487466828056,0.1319876740691165,20.0956473593183,16.850098067645384,13.507239053047549,9.622474664966182,11.732318323836202,7.049291691755881,10.400808678749293,5.28137488641241,7.8223381977845206,3.5250570207293577,6.078749568463731,2.422549520260918,3.7910685220510363,1.3459355810164788,2.5012213902775713,0.8206423893067164,4.6622891911256445,1.7840282856853393,6.789001149969462,2.2242722983856664,9.901907870377274,2.743285344134097,94.14870540556929,49.72870287238674,31.927418093140204,26.570941959946843,25.726582744678183,25.726582744678183,142.0,166.0,60.64299699999997,39.97500300000002,0.38596491228070173,144.08,9.5,6.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,57.0,0.0,1.0,59.0,12.0,2.0,6.0,53.0,14.0,30.0,45.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,8.0,1.0,2.0,28.0,8.0,0.0,5.0,3.0,0.0,3.0,7.0,0.0,0.0,0.0,1.0,2.0,3.6635616461296463,5.708459022540103,4.248495242049359,4.795790545596741,5.256192440247365,5.664695085948154,5.7357655205092515,5.59888481482705,5.476725024020855,5.5934326813747175 +2771,CN(C)CCCC1(c2ccc(F)cc2)OCc2cc(C#N)ccc21,0,21.866666666666667,6.101106666666666,3.2666666666666666,7.288888888888889,162.903181901594,87.02042638110599,1.5219627555961996,6.17438222222222,4.532253086419754,7.592290044444443,222.2924399361334,24.0,6.227659574468085,3.9574468085106385,6.702127659574468,144.30153583555096,91.0795160390469,1.8580936278723417,6.38422340425532,3.0981087470449173,7.63563276595744,268.50249847382696,20.072289156626507,6.179903614457832,3.710843373493976,5.325301204819277,154.11998264856123,74.88340506831807,1.5916317527769879,6.293524096385542,2.821954484605088,7.659471566265056,226.94371923904055,17.49074074074074,6.062157407407406,3.2037037037037037,4.12037037037037,153.36169657405776,63.38066188445924,1.4909306856235092,6.175652777777777,2.845293209876542,7.568338481481481,204.63772487593215,14.166666666666666,5.908946969696968,2.772727272727273,3.1136363636363638,159.41409259726572,49.975878224896974,1.2914290158596216,5.9964924242424225,2.4930555555555554,7.485354969696973,171.2942817813698,13.612403100775193,5.803325581395348,2.643410852713178,3.0387596899224807,157.0699407145471,47.54467012275347,1.3085432393869998,5.901175193798448,2.3243970714900946,7.381281829457363,169.4123284675288,13.338461538461539,5.779407692307693,2.4846153846153847,3.0538461538461537,160.9924532399566,47.42068175743999,1.2099318050327845,5.862471538461539,2.5694444444444446,7.360478276923078,156.10246726616253,13.619469026548673,5.980796460176991,2.4070796460176993,2.5929203539823007,163.81334131321128,47.94618259461944,1.2007274644581594,6.051022123893803,2.7441002949852504,7.548341274336286,158.82734249967277,12.789473684210526,6.0403052631578955,2.168421052631579,2.1894736842105265,162.9497644215957,42.93849401719578,1.2098934871914526,6.11521052631579,3.1845029239766074,7.574140336842106,155.16588097830592,7.257283950617282,0.13231476543209875,0.009361586890012605,0.6350617283950617,3.9683950617283963,1.9616209303265144,35.05253858035728,0.2394491375752572,0.12278222222222213,1.6359533607681755,0.0732385698765432,51.62174380518351,0.38716049382715956,0.0027279768846860727,-0.002620096995747174,0.2727396900446543,1.2604465458366172,-0.1836594787201334,1.796632967938817,-0.010669889926295553,0.003925531914893614,0.019822184280419097,0.00015077102180195714,-0.1279918922302632,0.41982448311765524,-0.010933399970251396,-0.0016024863822117117,0.009918191283653148,0.12745500520600941,0.2959200872773202,2.1706789795506753,0.03739725273302467,-0.008225301204819279,0.05908419686978365,-0.006967002540532481,7.833574893788743,-0.7072839506172841,-0.009290403292181075,0.0010426626479949361,-0.03773662551440329,-0.1517283950617284,-0.12834561525089644,-3.4631731335766784,-0.027196748749029487,-0.008969444444444434,0.005721879286694114,-0.004965729547325093,-5.6979285503366786,-0.0933108866442201,-0.010032610549943874,-0.0006412419632024677,-0.0030751964085297587,-0.0816947250280583,0.0919582035368423,-0.41851104394590566,0.012114708070357699,-0.008889393939393938,-0.05248791931662293,-0.006037414320987658,1.8813636374546132,-0.3115475165087567,0.0031399115704852324,-0.0006867905361644249,-0.006637955785242606,0.2286764283663508,-0.13647835335127342,-1.4865503931083233,-0.016211067401038847,0.0019426356589147317,-0.018984033559830166,0.001947932104507591,-3.7241330415826637,1.1628869895536562,0.03197836277302944,0.0014774893174470181,-0.049933523266856635,0.5712630579297245,-0.1714719810907395,5.543803197542482,-0.00620925835976241,0.030189999999999984,0.20854925081776945,0.01749234567901232,1.6804648442318895,-0.08265268218070537,-0.012359288539276748,-0.0006424461501161972,-0.15816890636949638,-0.6981885720528789,-0.12971098030042597,-0.2419914015433938,0.008771553074805444,-0.010374336283185844,-0.07009107517875132,-0.007981039099748706,1.5257673065653437,-2.3742430149447706,-0.025668168940870692,-0.0008854321987488786,-0.08371669915529563,-1.0692137751786877,-0.36814727770016686,-11.533366875083356,-0.06875261488962171,-0.026503157894736812,-0.26083477727239907,-0.011446080519818052,-16.822334886005507,,,0.4757936507936508,1.2604166666666667,0.6458333333333334,0.020833333333333332,0.6145833333333334,0.03125,0.8320108431411604,0.015272266450236271,0.02602226645023627,0.9213019697824083,0.2463799763549277,0.23477332229371503,1.7533128129235687,0.4811532986486427,2.032125392228775,1.7163599741702391,0.15553227857837296,0.08674927240395895,0.07348386707620379,0.3157654180585357,7.2036398113777915,984.0,274.54979999999995,147.0,328.0,7330.643185571729,3915.9191871497696,68.48832400182899,277.8471999999999,203.9513888888889,341.65305199999995,10003.159797126003,1128.0,292.7,186.0,315.0,6782.172184270896,4280.737253835204,87.33040051000006,300.05850000000004,145.61111111111111,358.8747399999997,12619.617428269868,1666.0,512.932,308.0,442.0,12791.958559830582,6215.322620670399,132.10543548049,522.3625,234.22222222222229,635.7361399999996,18836.328696840366,1889.0,654.7129999999999,346.0,445.0,16563.06322999824,6845.1114835215985,161.020514047339,666.9704999999999,307.2916666666666,817.380556,22100.874286600672,1870.0,779.9809999999998,366.0,411.0,21042.660222839077,6596.815925686401,170.46863009347004,791.5369999999998,329.0833333333333,988.0668560000004,22610.845195140813,1756.0,748.6289999999999,341.0,392.0,20262.022352176577,6133.262445835198,168.80207788092298,761.2515999999997,299.8472222222222,952.1853559999998,21854.190372311215,1734.0,751.3230000000001,323.0,397.0,20929.018921194358,6164.688628467199,157.29113465426198,762.1213,334.0277777777778,956.8621760000001,20293.32074460113,1539.0,675.83,272.0,293.0,18510.907568392875,5417.918633191996,135.682203483772,683.7654999999997,310.0833333333333,852.9625640000003,17947.489702463023,1215.0,573.8290000000001,206.0,208.0,15480.227620051592,4079.156931633599,114.939881283188,580.945,302.5277777777777,719.5433320000001,14740.758692939062,326.57777777777767,5.9541644444444435,0.42127141005056723,28.577777777777776,178.57777777777784,88.27294186469315,1577.3642361160776,10.775211190886575,5.5251999999999954,73.6179012345679,3.295735644444444,2322.978471233258,18.1965432098765,0.12821491358024542,-0.12314455880011718,12.818765432098754,59.24098765432101,-8.631995499846271,84.4417494931244,-0.501484826535891,0.1844999999999999,0.9316426611796976,0.007086238024691986,-6.0156189348223705,34.845432098765386,-0.9074721975308659,-0.13300636972357208,0.8232098765432113,10.57876543209878,24.56136724401758,180.16635530270605,3.103971976841047,-0.6827000000000002,4.903988340192043,-0.5782612108641959,650.1867161844657,-76.38666666666668,-1.0033635555555562,0.11260756598345309,-4.075555555555555,-16.386666666666667,-13.861326447096815,-374.0226984262813,-2.9372488648951847,-0.968699999999999,0.6179629629629643,-0.53629879111111,-615.3762834363613,-12.317037037037053,-1.3243045925925914,-0.08464393914272574,-0.40592592592592813,-10.783703703703695,12.138482866863184,-55.243457800859545,1.5991414652872162,-1.1733999999999998,-6.928405349794227,-0.7969386903703709,248.34000014400894,-40.18962962962962,0.40504859259259496,-0.08859597916521081,-0.8562962962962962,29.499259259259254,-17.60570758231427,-191.7650007109737,-2.091227694734011,0.2506000000000004,-2.4489403292180913,0.25128324148147924,-480.4131623641636,151.1753086419753,4.1571871604938275,0.19207361126811234,-6.491358024691363,74.2641975308642,-22.291357541796135,720.6944156805228,-0.8072035867691133,3.924699999999998,27.11140260631003,2.274004938271602,218.46042975014564,-9.339753086419707,-1.3965996049382725,-0.07259641496313028,-17.87308641975309,-78.89530864197532,-14.657340773948135,-27.345028374403498,0.9911854974530153,-1.1723000000000003,-7.920291495198899,-0.9018574182716038,172.41170564188383,-225.5530864197532,-2.438476049382716,-0.08411605888114347,-7.953086419753085,-101.57530864197533,-34.97399138151585,-1095.669853132919,-6.531498414514063,-2.517799999999997,-24.779303840877912,-1.087377649382715,-1598.1218141705233,0.71485374044012,0.5854382901477742,0.444141506444901,0.3127904280401209,0.2829353618369869,0.1760308708544085,0.17280064767763595,0.09176380878079479,0.10661603858973909,0.050876255259009406,0.06753898642368482,0.027299723192409944,0.04390314620192754,0.01518867194847084,0.028956977614271795,0.008679185506698835,9.004065939476158,5.678821023463334,4.107712571760509,2.1779471600209073,0.3811979258571903,-0.4007952779823522,4.0300400238649585,0.9113285352075978,7.00405696248529,0.9949350515205032,17.424771391811127,10.939877150335036,19.0001411639965,11.69039622106697,2.006286370256554,0.5458639960381088,3.988663453163432,2.2276259074978215,8.001918334441008,1.1669673743379168,4.009938873733436,2.4234108708134063,20.912539584703733,13.30412121053347,0.2554422598440506,0.5603163394015541,0.753271969789608,0.8441828574483786,0.8518703992459375,0.8518703992459375,1.725807601581729,764.1985832338869,1.0,0.0,2.0,0.0,8.0,2.0,4.0,1.0,0.0,4.015049506135583,2.2524627848839196,1.1369168768606706,0.6113283334294879,0.5668838889850436,0.5668838889850436,89.71695452536281,844.4389693952767,47.961418145145934,18.76531043100615,37.52250781911678,,11.0,423.0,5.601050810983688,4.39041504767482,5.817220841045895,12.170333456209914,36.07675412685558,12.13273413692322,12.13273413692322,32.29444517073921,10.96913104364275,9.998754508538536,11.41904761904762,30.25,15.5,0.5,14.75,0.0,0.024206349206349193,0.75,0.13173358232181748,0.05745474798106365,-0.07427883434075383,0.0,0.12783524810559754,0.0,0.5729100529100531,0.8117063492063491,0.44117647058823567,0.5154553049289895,0.8117063492063491,19.96826023538785,0.3665343948056705,0.6245343948056705,22.1112472747778,5.913119432518265,5.6345597350491605,42.07950751016565,11.547679167567425,0.5861647518944024,0.1476230191826522,0.04378648874061718,0.25396163469557964,0.35,0.421544199241346,-0.6225753432220973,-0.051614928845098586,-0.01383500762715772,-0.0327671233274788,0.578455800758654,0.8543168648608214,0.03226779958689051,0.018984819219129367,0.03285834095618544,-5.8020488772369,0.7825837686329471,0.6092328107951667,1.251762715209965,0.8025876046457762,0.49278247884519644,1.096442922092894,0.7831134983236353,1.0938479263399534,0.6067518880610466,0.5003633189997907,0.6422904118003514,0.9971779244988008,0.8700670947262106,0.9591140696314954,1.541483226766379,1.3912570968165041,0.9736906810917134,0.8070402974581233,0.8600622851085891,0.8325796857667218,0.9423521931060233,0.5126692362392781,1.0146309748830604,0.8120938735077623,1.0223303393213576,0.954120564480111,0.8655063495788448,1.3329445308449974,0.9741579558652725,1.0411771232960672,1.0227090470451554,1.1340908785840411,0.9572363393582539,0.7387997752827832,0.9919064616095871,1.1002085087748006,0.9813894937397935,0.9431018215448829,1.1029536829551598,1.0381026438569207,0.9631657541065203,0.7938003237634705,0.9750845262177606,0.9312353272807227,0.9532988247785905,0.7090698132667009,0.9980323125161116,0.9508914245465473,0.967657707840134,0.5966650557963546,0.9147068003174047,0.8474085862056494,0.7640038431708472,0.8358388556106933,0.962176052021806,1.0574449060035576,0.6401089974223809,0.4534728696470493,0.6058410765965211,1.0790197069711953,0.7933555964993094,0.4620918341947955,0.6376559535563918,1.0303864098576385,0.7240111804571733,0.920333142656919,0.7944644228412379,1.002394051808315,0.48883409719940524,0.5218691325360733,0.4316408557355497,0.9732519670087741,1.0247867097663084,1.2164993486029632,1.2486678246255483,1.1581497130431193,1.231956197112991,1.06951565095685,1.020202763481154,0.9260544445891891,1.1972788875940266,0.9882741748910492,1.2439725711234728,0.9356200748609366,1.3246139300346678,1.4225687751966254,0.9830655543670527,0.9237947122861586,1.287718424982316,1.3908932706994959,1.3351166688117686,1.2650335492810512,1.4158622502829148,1.6104174876950552,1.3379425421297981,1.2851101889730172,6.0,0.06193245587184981,3.555555555555557,1.9791666666666667,1.1255555555555559,0.8894444444444445,0.7289795918367348,0.5703656462585034,0.18896447467876032,0.20375000000000004,4460.79345344988,5051.809258078812,2270.9901727920806,2062.024496470004,12.729535597598487,0.44935836077518865,7.009412348032219,0.8160631684298186,1.0,0.3684210526315789,1.4768035901940921,3.239390311445755,4.354936219469004,4.880524762900187,4.924969207344631,4.924969207344631,0.23076923076923075,0.008847493695978544,0.09609609609609612,0.05074786324786325,0.030420420420420424,0.02616013071895425,0.022090290661719234,0.019667780905465636,0.009448223733938017,0.01852272727272727,0.5127702575223936,18.781065088757398,8.131482834185537,4.0656,141.83369707130984,1.0,4.108899943983312,113.4938628580204,,93.71414099226585,92.94206369667097,92.94275828393141,93.64380312485714,111.13786156851886,93.40249892331369,93.79561155248352,103.7662681515521,0.05334784975503528,0.020617327747038294,-0.27987744241763335,0.429469574137189,0.31762123635131273,-0.09362638615890127,0.051255430867583815,-0.04456015183158503,0.03197150079096011,0.012116594981113293,0.0020586286987322234,-0.002479418221772878,0.05784870565550164,-0.08263174510075519,-0.1711767888328123,0.015617680676047921,0.0321175193556706,0.15085487858659008,0.061926441492231296,0.15618036093895293,-0.066990978465371,0.03611606436141931,-0.09512750661675423,0.15174952096449998,-0.09745849210669576,-0.07021441077903526,0.11137669929734875,-0.05942198030067392,-0.038234196117471364,-0.06542834717283177,-0.09879949566669528,-0.11358048320588224,-0.07305165423876057,0.003497580935930446,-0.06780210967657785,-0.11037845935310171,-0.012857549364081776,-0.075823816920058,-0.06849714377875142,-0.004842358263820188,-0.02058633874835963,0.046878681867212606,-0.011939535933652197,0.05059407685922498,-0.07239968277577781,-0.032083994920232194,-0.08243490187157951,0.036445177918722295,-0.042928941271790456,0.02373062114595647,-0.07336261941841574,-0.010452457593403016,0.057624411080370856,-0.06957427464263262,-0.042409207815303725,-0.0677015067383311,0.015821799147752662,-0.011604263309142293,0.026597080032982365,-0.07214272062635572,0.16023721787194847,0.24168400759052164,0.15782466528439482,-0.07862782629501142,0.14395317226327672,-0.08741341328479695,0.15815696728593334,-0.025931429207218932,0.24588250199087822,0.1274787263616387,0.23884062330134,0.03255343040277436,-0.01138892769569464,-0.09340823375921173,-0.06862577441882102,-0.24906068071402035,-0.17593726461013928,-0.06612438636594042,-0.006903676918823814,0.03663221828079713,-0.0844937980061108,-0.04284417689379572,-0.10897316964547758,0.02955667891273631,-0.3271531100478472,-0.19399323164762797,-0.09458142184136545,-0.13182450683473848,-0.26943229153021925,-0.18767503548144146,-0.3290308588818277,-0.2871282627527244,-0.2158550107259751,-0.15943900573664394,-0.1562848720163772,-0.32587692018874265,17.370924283666977,19.66315569887243,3.081339135366178,13.829944676378384,30.373880667462494,37.46598006804111,38.484795542041965,38.52959554204197,38.52959554204197,48.7710094134906,41.19263938008574,3.732774685880951,2.0819825376950147,1.7636128098288908,7.578370033404857,4548.522704850781,3257.3318004002467,2027.1993590818972,105.0,37.0,50.0,67.0,86.0,102.0,118.0,122.0,112.0,324.1637915120006,26.0,4.844187086458591,5.707110264748875,6.610696044717759,7.508238774678663,8.428799040653642,9.343384145733948,10.273152756513104,11.196885069413392,12.131548432914254,0.6370370370370372,0.9772444444444447,1.1266373463505512,0.6001894618821635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6781324417831006,0.9647058823529409,0.9985757060775272,0.6348105072709591,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,9.636772684650527,11.418271652029583,0.0,0.0,0.0,0.0,4.39041504767482,5.261891554738487,0.0,18.19910120538483,74.4375663660564,0.0,18.239554769002186,241.02527402726597,-355.9683491619194,-29.51173896160099,-7.910407759153765,-18.735176271679965,330.7422285526288,488.4706202333573,18.449679183544944,10.854902671852386,18.78733154743682,0.45454545454545453,0.8921774521865792,0.24432375468454828,31.226291643546205,0.08310102072092423,100.34846964784015,0.10782254781342074,6.0,0.19230769230769232,0.26890806514490934,0.5898537806138169,0.7929811928836011,0.8886845072680382,0.8967773028444799,0.8967773028444799,3.812980000000003,,0.8690476190476192,1.0472936930393035,0.9773365503101383,0.9020549089805401,-4.116862568566343,0.9403858336972502,0.8425207864431083,-1.5843033998455907,90.91400000000006,9.127278001474869,5.261891554738487,4.899909730850478,0.0,25.049576021348624,20.640100371266954,70.53559628706515,0.0,6.069221312792274,3.970291913552122,0.0,5.303304908059076,2.3978952727983707,6.846943139585379,4.844187086458591,8.494743062578646,7.065613363597717,10.204073510592933,28.66666666666667,12.280599489795918,0.0,0.0,0.0,0.0,0.0,3.4879575365244575,0.0,43.97600000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.6986805857748,0.0,4.39041504767482,0.0,25.540010102117435,16.944795729296654,17.148333708576654,35.09544921264,42.46456947923127,0.0,0.0,0.0,27.00852578469736,30.515959880239528,30.757331302650034,226.98772571604093,,187.35586134961108,185.796852918922,185.80407185533699,187.21243500729923,223.99108254060718,186.72663236048595,187.5210130394301,208.19266271970662,30.757331302650034,226.98772571604093,,186.5592343654841,184.83683370030283,184.90818001755292,186.38555134073385,226.3925857056042,185.8646120129302,186.748702318524,209.11683970294987,5.003522159214352,151.36341356735943,,126.7238239109225,125.71980557503883,125.62511826062834,126.65583190127177,148.32902310182374,126.3169794052049,126.81903132419522,139.78025850789354,1.2815554709437513,9.457821904835038,,7.8064942229004615,7.741535538288417,7.741836327305708,7.8005181253041345,9.3329617725253,7.780276348353581,7.813375543309587,8.674694279987776,2.553378154177178,113.4938628580204,,93.71414099226585,92.94206369667097,92.94275828393141,93.64380312485714,111.13786156851886,93.40249892331369,93.79561155248352,103.7662681515521,43.41176470588234,0.0,4.09764560025112,0.0,13.367320213056146,0.0,0.0,44.935906773488725,3.209961970899471,0.0,6.267904383975813,0.0,0.0,2.1458368115637234,-0.5624711829176114,9.111023379928954,2.177555130255347,28.56647282719316,510.11807369481386,66.45616155873415,145.77256401505898,195.97212987610519,219.62361433050842,221.62361433050842,221.62361433050842,849.0,126.04400161583223,61.649428885080866,73.12705225722283,36.26,36.26,0.8333333333333334,8.476468848377921,5.700439718141092,3.928146725226433,4.795538668075367,,4.800949438928313,4.8023358321529015,4.805693303885607,4.8011890254081955,4.763936579012109,4.801687360271371,4.800734701219277,4.783581250244423,0.16367278021776804,0.19981411116980696,,0.2000395599553464,0.20009732633970423,0.20023722099523364,0.20004954272534148,0.19849735745883787,0.2000703066779738,0.2000306125508032,0.19931588542685097,2.2436364808212055,2.44315477891574,,2.4442824354846806,2.4445711685994604,2.445270057377134,2.4443323382184983,2.4365430762084057,2.4444361268842285,2.444237706308853,2.4406582188677195,253.27000000000004,282.9230749102691,141.35830497934577,,140.60364570480863,140.46239573022265,140.22691247714428,140.57386133256986,143.9587589278196,140.5329111205068,140.62742559598613,142.32173256337435,11.788461454594547,5.889929374139407,,5.85848523770036,5.8525998220926105,5.842788019881012,5.857244222190411,5.998281621992483,5.85553796335445,5.859476066499422,5.930072190140598,6.5206437779423005,5.826766574485201,,5.821413646015981,5.8204085442558675,5.818730651287097,5.82120179142872,5.844995599576052,5.82091044154771,5.821582758846396,5.833558954354176,19.635224597031957,2.1458368115637234,9.111023379928954,3.17526378915764,-0.2497774355507938,14.458154620051266,1.7773119803476947,1.4326499905517762,4.09764560025112,311.3664221004663,137.81041898920463,-203.5311339977986,-16.873853282864378,-4.52291408883997,-10.712164947252557,189.1076580172453,279.29162661447896,10.548926990175765,6.206480591432866,10.741985639018422,1298.0,39.0,1.8542803294427672,1.0038763190367526,0.08333333333333333,0.03608439182435161,0.4040960889091567,0.16107241451315218,0.07568735753865524,0.02244479727478387,0.0,0.0,0.0,0.0,0.08333333333333333,0.03608439182435161,0.37626393280641623,0.1370584197268461,0.6677032143021908,0.20185684076844151,17.156489770562878,14.05051896354658,11.547679167567427,8.132551129043144,10.468608387968516,6.513142221613114,8.640032383881797,4.58819043903974,7.143274585512519,3.4087091023536304,5.808352832436895,2.3477761945472553,4.4781209125966095,1.5492445387440257,3.416923358484072,1.0241438897904624,4.1553038503871145,1.8828120128575685,6.933504537041141,2.7985450129770304,10.76713310966685,3.7307266155695857,78.04108055182974,45.4551047594093,27.579271958907636,24.291476523375238,24.136283052427256,24.136283052427256,126.0,150.0,50.96165299999998,26.196346999999996,0.3333333333333333,124.04,7.979166666666667,5.361111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,45.0,0.0,1.0,47.0,12.0,0.0,6.0,40.0,13.0,26.0,34.0,1.0,0.0,0.0,20.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,3.0,0.0,1.0,24.0,4.0,0.0,2.0,1.0,0.0,3.0,5.0,0.0,0.0,1.0,0.0,2.0,3.5553480614894135,7.150971029098001,4.0943445622221,4.66814498514948,5.208119098629888,5.75653304004173,6.0330862217988015,6.430072238392532,6.682108597449809,6.881828311138674 +5281025,OCCOCCN1CCN(C2=Nc3ccccc3Sc3ccccc32)CC1,0,25.23076923076923,5.980351923076923,3.173076923076923,6.162393162393163,161.49183357175627,99.67915173076926,1.5963198196389419,6.069248076923075,2.972288171362245,7.545473557692305,219.816343420569,26.10909090909091,6.287272727272727,3.8727272727272726,5.733333333333333,145.78617657503182,99.12234661818184,1.874020935018182,6.440736363636364,2.7392817059483727,7.727098109090908,263.949578375972,21.721649484536083,6.256287628865981,3.484536082474227,4.3436426116838485,156.1545846553257,80.31763979381441,1.6095352204617728,6.364299999999998,2.5292414407534682,7.76697336082474,218.44492456269992,19.56923076923077,6.050966923076923,3.1846153846153844,3.792307692307692,158.9302790928641,71.61193448461536,1.4965959796336614,6.15165,2.3342355175688505,7.624661907692307,193.80010051989882,16.93233082706767,5.882216541353382,2.962406015037594,3.1904761904761907,157.7238682394019,60.59452708270676,1.4120139033238646,5.991313533834587,2.1270537454747975,7.464221037593987,181.19917185359913,15.485915492957746,5.921844366197184,2.852112676056338,2.835680751173709,161.3497328483593,55.1442192112676,1.338792450146944,6.009465492957747,2.2059207094418363,7.508990957746479,174.45989405000063,15.014598540145986,5.886708029197081,2.7445255474452557,2.340632603406326,156.49589967275438,51.73578194160584,1.404827490132343,5.992822627737226,2.191267910246012,7.473900583941606,176.4287589697536,12.01418439716312,5.661863829787234,2.375886524822695,1.739952718676123,158.6049562758265,39.82098299290778,1.2285727609242483,5.762678723404257,1.9566587864460203,7.2864467659574474,147.86401537383367,9.88888888888889,5.645658730158732,2.0952380952380953,1.5740740740740742,166.79007361010719,32.58412553968254,1.0136037758881191,5.705107936507938,1.998456790123457,7.307530873015874,120.47176721805614,9.840236686390533,0.09506253698224845,0.014570385126128127,0.5011094674556212,3.384615384615384,1.5540846454003956,45.28569015532543,0.28512636711282363,0.09216342455621297,0.6944246597024376,0.05546247448224849,52.71243627365469,0.7709521247982788,0.0012925329478214104,-0.00484100184875435,0.18455486820871442,0.6525252525252522,-0.30370400881515436,3.5777462950242063,-0.0011677482706033148,0.0030875544647660505,-0.04014372116223976,-0.0018231237829478895,0.23258356195273394,-0.015494418349295212,-0.01899287005124137,-0.0029010104635917894,0.039334624534862445,-0.3127147766323025,0.2069396369660935,-0.09091487380284283,0.04140526630477829,-0.018000379353992495,-0.10072493742310475,-0.010853025037363587,2.39041438762792,0.6479289940828403,0.0023916642011834366,0.001895672695025556,0.04741124260355029,0.1427350427350427,0.25765314094551584,3.025709564497043,0.0490567512423949,0.0013601257396449956,0.02605782420597234,0.003684970488165643,5.550146665389694,-0.27112159095964766,-0.00023156532232949267,-0.0002188629264234875,0.0053971837878720565,0.15789473684210525,-0.21805115852853924,-1.1731201229367794,-0.02332969556420835,0.000604982037193573,0.018566864692595712,-0.0009998706650131174,-1.8421536648755008,0.07200600050004173,-0.009519890720060003,-0.0007887045163589472,-0.03591445120426701,-0.34507042253521125,0.29838105104288265,0.5345198739269929,0.03850645534341042,-0.00850280700475039,-0.03789196081840839,-0.006076713648012339,6.373050791467248,-2.096272621258584,-0.007019780104090173,0.0006551913882353579,-0.1316541052995292,-0.7453365774533656,-0.05260242893533931,-9.763128734494448,-0.034505587638702734,-0.010542677784736294,-0.05191405585093068,-0.0020062809112210006,-9.333859727309525,-1.3923370682781486,0.0016409409228251264,-0.0006499708097591207,-0.04148044399681061,-0.15524034672970838,-0.43026282075434197,-6.623159943377817,-0.07669425970397363,0.0003516872823030554,-0.00860926266429282,0.0017403558505393163,-12.29987278919881,0.9937071475533011,0.006090515520803973,0.00011280204660805437,0.044983328637174774,0.2292768959435627,0.031042543134018063,4.550155086738048,0.018363513709315608,0.006683599253310751,-0.01765981884294637,0.003093428906029917,3.1322815483286885,,,0.48888888888888893,1.1574074074074074,0.5,0.0,0.6574074074074074,-0.1574074074074074,0.9159331913252632,0.002464654511962781,0.015205395252703521,0.803372224528884,0.23110845469518304,0.2632496153251911,1.7193054158541472,0.4943580700203741,2.0827434232084303,1.6240084940807564,0.24473393929416207,0.13638076392768989,0.0,0.45873492912767405,7.368591308461552,1312.0,310.9783,165.0,320.44444444444446,8397.575345731326,5183.315890000002,83.00863062122498,315.6008999999999,154.55898491083676,392.3646249999999,11430.44985786959,1436.0,345.8,213.0,315.3333333333333,8018.239711626749,5451.729064000001,103.07115142600001,354.2405,150.6604938271605,424.9903959999999,14517.226810678461,2107.0,606.8599000000002,338.0,421.3333333333333,15146.994711566591,7790.811059999998,156.12491638479196,617.3370999999999,245.33641975308643,753.3964159999998,21189.157682581892,2544.0,786.6257,414.0,493.0,20660.936282072333,9309.551482999997,194.557477352376,799.7145,303.4506172839506,991.2060479999999,25194.013067586846,2252.0,782.3347999999999,394.0,424.33333333333337,20977.27447584045,8059.072101999999,187.797849142074,796.8447000000001,282.8981481481481,992.7413980000002,24099.489856528682,2199.0,840.9019000000001,405.0,402.6666666666667,22911.662064467022,7830.479127999999,190.10852792086604,853.3441000000001,313.24074074074076,1066.276716,24773.304955100088,2057.0,806.479,376.0,320.6666666666667,21439.938255167348,7087.8021260000005,192.461366148131,821.0167,300.2037037037037,1023.92438,24170.739978856243,1694.0,798.3228,335.0,245.33333333333334,22363.29883489154,5614.758601999997,173.228759290319,812.5377000000002,275.88888888888886,1027.3889940000001,20848.826167710547,1246.0,711.3530000000002,264.0,198.33333333333334,21015.549274873505,4105.599818,127.71407576190302,718.8436000000002,251.80555555555557,920.7488900000001,15179.442669475075,511.69230769230774,4.94325192307692,0.7576600265586626,26.057692307692307,175.99999999999997,80.81240156082058,2354.8558880769224,14.826571089866828,4.792498076923074,36.110082304526756,2.8840486730769213,2741.0466862300436,42.402366863905335,0.07108931213017758,-0.26625510168148925,10.150517751479294,35.88888888888887,-16.70372048483349,196.77604622633135,-0.06422615488318231,0.16981549556213277,-2.2079046639231867,-0.10027180806213393,12.792095907400366,-1.5029585798816356,-1.8423083949704129,-0.28139801496840355,3.815458579881657,-30.333333333333343,20.07314478571107,-8.818742758875754,4.016310831563494,-1.746036797337272,-9.77031893004116,-1.0527434286242678,231.87019559990821,84.23076923076924,0.3109163461538468,0.24643745035332226,6.163461538461538,18.55555555555555,33.494908322917055,393.3422433846156,6.3773776615113364,0.17681634615384945,3.3875171467764043,0.4790461634615336,721.5190665006603,-36.05917159763314,-0.030798187869822524,-0.029108769214323836,0.7178254437869835,21.0,-29.00080408429572,-156.02497635059166,-3.102849510039711,0.0804626109467452,2.4693930041152297,-0.13298279844674463,-245.00643742844161,10.224852071005927,-1.3518244822485204,-0.1119960413229705,-5.099852071005916,-49.0,42.370109248089335,75.90182209763299,5.467916658764279,-1.2073985946745553,-5.3806584362139915,-0.8628933380177521,904.9732123883492,-287.189349112426,-0.9617098742603537,0.08976122018824403,-18.0366124260355,-102.11111111111109,-7.206532764141485,-1337.5486366257394,-4.727265506502275,-1.4443468565088722,-7.1122256515775035,-0.2748604848372771,-1278.738782641405,-196.31952662721895,0.23137267011834284,-0.09164588417603602,-5.8487426035502965,-21.888888888888882,-60.667057726362216,-933.8655520162722,-10.813890618260281,0.04958790680473081,-1.2139060356652875,0.2453901749260436,-1734.2820632770322,125.20710059171594,0.7674049556213006,0.01421305787261485,5.667899408284022,28.8888888888889,3.911360434886276,573.319540928994,2.3138027273737665,0.8421335059171546,-2.2251371742112425,0.3897720421597695,394.6674750894148,0.6843141009952514,0.5999075535875805,0.44492226301833676,0.3424994222770476,0.28196019281667245,0.19374503790973507,0.18014002266264426,0.1118487641611595,0.11413664806415914,0.06210092494856642,0.0730419557739102,0.03481160615065839,0.045903963548570924,0.019833487067871837,0.030193194014593975,0.011043241203080029,16.00200458731461,5.693757720959749,3.5206196725905605,2.1809753194433203,0.36914239299474416,-0.42422822289731915,3.2207160639564476,0.9879311694682222,6.00501482565452,0.6606523813205966,14.554376107795079,10.337225565223227,32.06099924964521,11.705402725690778,2.9166821053737895,0.7788663360548226,3.463137327315101,2.235510759992646,6.002696677174157,0.6282325189811262,3.6766783327723025,2.435207559484411,24.434245268919327,14.706305262884372,0.26268773954548597,0.5363325960842295,0.677265754652386,0.8281905217515271,0.8604883638586507,0.866947932280075,1.3458604744912073,803.5186584789169,0.0,1.0,8.0,0.0,11.0,0.0,1.0,0.0,0.0,4.136345348555491,2.5070101533961586,1.6678664606384723,0.7692307692307683,0.5769230769230749,0.5384615384615383,200.65789913642422,1338.611361670837,57.33652050277905,25.74252618597763,55.6361033943823,,15.0,691.0,0.0,0.0,6.606881964512918,13.213763929025836,44.246788090003704,15.354418442732545,11.761884949391115,0.0,58.33075600939383,14.835795081276423,13.200000000000001,31.25,13.5,0.0,17.75,0.0,0.011111111111111072,-4.25,0.12138461538461531,0.049759615384615485,-0.07162499999999983,0.01825396825396819,0.1112602739726023,0.0,0.5653846153846155,0.8111111111111107,0.4440000000000002,0.515625,0.7928571428571425,24.730196165782107,0.06654567182299509,0.41054567182299506,21.691050062279867,6.239928276769942,7.107739613780159,46.421246228061975,13.3476678905501,0.6027397260273977,0.02525252525252525,0.0,0.24999999999999997,0.38095238095238093,0.33796988721914056,-0.7306375404104912,-0.05210560568537608,-0.01405072193097099,-0.05218839574360653,0.6620301127808595,1.4312045882544935,0.04049222299228847,0.027523165158740256,0.03766327863827614,-4.6214324542794,0.7873872519542994,0.8869325248473047,1.3615953754609862,0.6761221066756122,0.7276515151515153,1.34965416870731,0.7902626292159645,1.0024659072128295,0.8490571055308651,0.9332521776067174,0.94286579832383,0.98408499308782,0.9761423585496338,1.4155426689771138,1.547171258403859,1.1198387035416746,1.235434239300219,0.9939489074373715,0.9739921557909926,0.8233168771036341,1.3639335611938073,1.055473575039439,1.4248453783189012,0.8939006089570447,1.066077871316897,1.0271461755750166,1.008981404944337,1.0990405904059042,1.0582896270396271,0.9199179697210983,1.0492055288941415,0.9027503763397114,1.0215147953592534,0.7673671395415602,0.9734575654733131,0.869347930222062,1.0742549021380872,0.777602557620256,0.8236491659989078,1.0595344449685098,0.9188240487582594,1.193460959538677,1.0645726953586037,1.1280615797797797,0.7890569958801555,0.5264148647638355,0.7208990639203234,1.0316879285870353,0.9008838811582665,1.093223368992895,1.0394174028348357,1.206018398212151,1.172808632095604,0.8157522956506037,0.9035777392818498,0.7818756656485463,1.0807101693770458,0.8230629539222856,1.0658674160872128,0.8405726986746037,1.1963950252599511,0.9107321530865925,0.8319001444092993,1.250033668219894,1.1478102189781025,1.0496528937727265,1.1964581862505435,1.1398815051378541,0.96358422545474,0.7802097009023277,0.8540202835986386,1.1740598722387394,1.0705610854518237,0.5861427070514891,0.6178041372234402,0.8814320483630369,0.8236487212551044,1.2292520435423901,1.079657747725994,1.2540800781935726,0.6490301053833512,0.5543406199162287,0.4912299166748201,1.247910249892964,0.7079682444234457,0.8579729005266383,0.8062905318052243,0.7766649095062379,0.8403153559403561,0.8394668908535712,0.7290931423832147,0.7625256735692837,0.869476216443973,1.071112006537517,0.8240089822649734,0.9071537544684751,3.5,0.06122028364452607,2.4444444444444455,1.125,1.4866666666666668,0.6705555555555555,0.3797732426303855,0.29857568027210885,0.1826735323759133,0.09594135802469136,5430.609696475911,6172.4401656211285,2693.8533383325566,2438.378540635837,14.268039901947331,0.4899934294781519,7.276794098461044,0.9607590525290323,1.0,0.38095238095238093,1.5640943695856009,3.193429564744933,4.032573257502619,4.9312089489103235,5.123516641218017,5.161978179679553,0.11666666666666667,0.004081352242968405,0.061111111111111144,0.024999999999999998,0.036260162601626025,0.015965608465608464,0.01054925673973293,0.011058358528596622,0.009614396440837543,0.00599633487654321,0.296303247673691,20.28,10.15625,5.135802469135802,164.20719288140702,1.0,4.229223342754934,152.16883892756067,,121.35333292257003,121.93209432672535,122.04099571845575,121.38502419546866,185.48953778401193,123.63663535897302,124.69932626358387,163.03792277941974,0.07834690865358335,0.013596659513334596,-0.3322494091163929,0.3682925192888294,0.1927915518824609,-0.19542308053427027,0.07900390350136856,-0.004095546414833113,0.03350086522536787,-0.05780860544244127,-0.03287130262338737,0.004412309094295791,-0.0015745981365188758,-0.19979342708671885,-0.19910321096383343,0.07849507361052993,-0.09239300218681668,0.13315853649192794,-0.002007585033837705,0.14521724779102718,-0.1953093587903038,-0.1450480423121287,-0.19568230841985318,0.04534820540675014,0.06584485868911605,0.025158850974385895,0.13010450160484566,0.09461254612546124,0.04217171717171717,0.16579093147087487,0.06681381147376045,0.17205266471544278,0.014757760426050771,0.03752433592599976,0.06644078762380261,0.1052910291714902,-0.02755234448116684,-0.0024359261774460545,-0.015021080398967272,0.01077046860694173,0.04665071770334928,-0.1403084183180771,-0.025904874562209246,-0.08182230146037972,0.006564231310920723,0.026737046896565645,-0.018027876944674358,-0.03494723057974455,0.007317506966029496,-0.10014345316533793,-0.05413065677616266,-0.07166987162829373,-0.1019526248399488,0.1919979403477135,0.011803284262504174,0.13505048913337972,-0.0922579325333587,-0.05456597816478057,-0.10956441638674584,0.12090222425656419,-0.21303071136061377,-0.07384381194666637,0.044967334944389745,-0.26272524039109,-0.22021307970213075,-0.033847853198360874,-0.21558970838266753,-0.12101857849242324,-0.11439112462998843,-0.0747583702934397,-0.036173663904287896,-0.1770713020899496,-0.14149426610884372,0.017261699244693503,-0.04460903429337432,-0.08277721075083093,-0.045866466079232025,-0.2768593216770948,-0.14625282115964303,-0.2689834001694622,0.003815909445601729,-0.012397691447164199,0.031378979513370625,-0.23333910664543128,0.10098406971527835,0.06406851441321504,0.007741871311676845,0.08976746910326243,0.06774090107423444,0.019974808467411526,0.1004766642869186,0.06440482476336264,0.07251899856687989,-0.025430863659872963,0.05577516933580038,0.0594220599493365,23.608206014487834,19.60330676291452,5.234105828628907,16.590616121005404,30.55136911260329,37.399050980413286,39.997644988121486,40.61468344965994,40.653452680429176,56.23407242662761,43.848229340180424,6.607816360942376,3.6822806260476266,0.0,12.3858430864472,7443.011830946805,6374.59878703106,1641.630226114541,191.0,40.0,54.0,72.0,98.0,113.0,135.0,159.0,178.0,383.1667480400007,30.0,4.948759890378168,5.796057750765372,6.663132695990803,7.5352967024440884,8.416488487294606,9.300455261418444,10.189230245606858,11.079508313092495,11.972670403324726,0.6538461538461535,0.9703846153846155,1.1231183637681466,0.6140364921898516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.68567278903731,0.9587481146304675,0.9966454703344727,0.6281421385961892,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,8.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,14.743300079491233,5.835619785757269,0.0,0.0,0.0,4.899909730850478,4.992404732635669,0.0,0.0,42.093720291699164,18.19910120538483,48.078200472295414,25.508032168222314,209.27075337066012,-452.4103309341527,-32.26376008328489,-8.70019867181063,-32.31502363815377,409.92865250708434,886.2010307366842,25.072760419494163,17.042327514167003,23.32107975622853,0.4666666666666667,0.8756458078650168,0.18224287862663868,198.16156912168447,0.09721136772020385,145.55985453784643,0.12435419213498325,8.0,0.16666666666666666,0.27438135423273113,0.5602075844398733,0.7074144200962865,0.8650576433984967,0.8987932325488728,0.9055403503789475,2.8560000000000016,,1.5535714285714284,1.1038416648231353,0.9351166328597537,1.5513903960768884,-3.2949960521892754,1.012622399020808,0.9891346839337528,-1.5983839656748697,109.12180000000004,9.843390348640755,0.0,9.799819461700956,4.992404732635669,9.79096695103555,52.54442792310162,54.09438803938988,0.0,0.0,4.110873864173311,0.0,5.3981627015177525,0.0,6.892641641172089,2.70805020110221,8.484049972822984,5.37989735354046,10.12667110305036,33.999999999999986,16.944238690844895,0.0,0.0,0.0,0.0,0.0,4.743160508093111,0.0,50.46000000000001,0.0,0.0,0.0,0.0,0.0,0.0,5.06643100701407,1.0826208385736706,58.40215491594362,0.0,5.687386274683562,0.0,73.28639456540056,4.736862953800049,0.0,5.563451491696996,63.314308231364095,0.0,0.0,0.0,31.92989759387228,35.65498502994012,36.31306967710819,304.33767785512134,,243.03964546477414,243.95112257447286,244.24821403942764,243.10356196625594,372.719559313066,247.34031520723875,249.44073405080405,326.7862384324728,36.31306967710818,304.3376778551214,,241.83131213144082,243.0108130081421,243.45163320402867,241.8969249915295,374.3060388937498,246.4777109414062,248.5981378385642,327.67422952451443,4.84197742080522,227.0941033144963,,187.52937985269236,183.45101815692215,182.71590183223302,187.58523545151388,292.8138078034695,186.57949517506347,188.8468825016585,253.50449133476548,1.3449285065595626,11.271765846485975,,9.00146835054719,9.035226762017514,9.046230149608432,9.00383562837985,13.804428122706147,9.160752415082916,9.238545705585336,12.103194016017513,2.460867638154737,152.16883892756067,,121.35333292257003,121.93209432672535,122.04099571845575,121.38502419546866,185.48953778401193,123.63663535897302,124.69932626358387,163.03792277941974,49.85490196078431,0.0,0.0,0.0,0.0,0.0,8.794858222677902,51.82556445739258,6.011901445485361,0.0,5.399028326939964,1.798722947017534,0.0,4.825704680020156,0.0,0.0,0.0,32.66339120700184,542.1993639893559,81.33290721845124,166.0583373667365,209.6938093901362,256.4228653433368,266.42286534333687,268.42286534333675,1097.0,132.90159975031554,77.00004188838851,70.10034683737916,73.60000000000001,48.300000000000004,0.875,8.8208355002436,5.906890595608519,4.327874695805974,5.092106003834326,,5.086985769395093,5.090658997079717,5.083303287792505,5.08695932718077,5.056713708031728,5.090359772435121,5.090581870238614,5.078711170677286,0.16029165540022128,0.1885965186605306,,0.1884068803479664,0.1885429258177673,0.18827049214046315,0.1884059010066952,0.187285692890064,0.188531843423523,0.1885400692680968,0.18810041372878836,2.4583283621496665,2.62094327120956,,2.619937241401568,2.6206590641667344,2.619213076779931,2.619932043375812,2.61396858050016,2.6206002832821382,2.6206439133924606,2.618309295852131,291.2400000000007,918.4684219443039,168.8842035994321,,168.8703395053348,168.78431268403634,169.42935229907383,168.87192952732016,170.65732666426518,168.76487592865584,168.70488773877244,169.16671203439793,34.017348960900144,6.254970503682671,,6.254457018716104,6.251270840149494,6.275161196261994,6.254515908419266,6.320641728306118,6.250550960320587,6.24832917551009,6.265433779051775,7.815959297046481,6.122465067284106,,6.122382971606117,6.121873416517199,6.125687812349842,6.122392387199788,6.132909381307557,6.121758252528911,6.12140273510499,6.1241364634417135,5.399028326939964,12.364960817989111,8.794858222677902,2.2703353771382275,1.0826208385736706,16.944238690844895,0.0,6.011901445485361,0.0,351.17086039404035,129.5803261547007,-280.1322081273811,-19.977701074952094,-5.387157848603483,-20.009443437670082,253.82757808465098,548.7351517203996,15.525038355465812,10.552599071546144,14.4403987294842,1956.0,45.0,1.142956338874507,0.8101891785621758,0.0,0.0,0.27497165237684323,0.13610833949648737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.10555555555555556,0.3640023202154327,0.1718245394892287,18.476480726871788,16.197503946864675,13.347667890550102,10.274982668311429,11.278407712666898,7.749801516389403,9.72756122378279,6.039833264702613,8.217838660619458,4.471266596296783,7.1581116658432,3.411537402764522,5.1871478809885145,2.2411840386695174,4.076081191970187,1.490837562415804,3.119777932842323,1.9236130509530867,5.231849904151988,2.7085094495487883,8.633744317428746,3.808964289079475,88.89523980626805,55.718543995030956,36.549290825733756,27.73703383439139,26.18298473371089,26.040660129167,140.0,164.0,59.54382499999998,33.836175,0.40384615384615385,198.06,6.527777777777778,6.111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,52.0,0.0,3.0,55.0,12.0,1.0,7.0,48.0,13.0,30.0,42.0,0.0,0.0,0.0,21.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,6.0,1.0,2.0,27.0,6.0,0.0,3.0,2.0,0.0,4.0,5.0,1.0,0.0,0.0,0.0,2.0,3.6375861597263857,7.68813321350849,4.143134726391533,4.695924549256556,5.250963670164566,5.821195071338169,6.1194729033071535,6.561384210181677,6.989536858556636,7.370171603540427 +5403,CC(C)(C)NCC(O)c1cc(O)cc(O)c1,0,19.771428571428572,6.089568571428572,2.7714285714285714,5.6571428571428575,165.78747376452088,77.55927771428571,1.2872587769180288,6.135211428571429,4.8906746031746025,7.668394057142858,187.57944197983957,21.285714285714285,6.362971428571429,3.1714285714285713,5.171428571428572,149.48904945380713,78.39942297142856,1.6403103116571427,6.482557142857143,3.298015873015873,7.829874514285713,236.08432857340011,18.333333333333332,6.100966666666666,3.1333333333333333,3.7666666666666666,155.46006845734735,67.44109451666667,1.413544084574833,6.202608333333334,3.0479166666666666,7.622493,198.77667462254834,14.109756097560975,6.202560975609757,2.317073170731707,2.8780487804878048,159.99554320143835,47.36287637804878,1.231321908051768,6.274110975609757,3.1619241192411924,7.752913804878047,162.94672424691205,9.893203883495145,5.648291262135922,1.8932038834951457,2.1262135922330097,168.0498991232505,33.69274777669903,0.9199474391335145,5.696224271844661,2.5064724919093853,7.330991029126215,113.28357400061977,12.697368421052632,6.040236842105265,2.0789473684210527,2.289473684210526,166.35109659130296,44.00360336842105,0.9945581514108555,6.079897368421052,3.5997807017543866,7.6738637894736845,131.22733059835576,10.808823529411764,6.191838235294118,1.9852941176470589,1.5,167.93350721451077,34.477381044117635,0.9940414404475441,6.214870588235294,3.3161764705882355,7.848815000000002,127.89611805508427,9.701754385964913,5.640912280701755,1.8245614035087718,1.3333333333333333,163.40562321631896,31.399198754385964,1.0756591738470527,5.712833333333332,2.192982456140351,7.2895335438596485,130.22677037490294,10.647058823529411,5.654705882352942,1.9411764705882353,0.7647058823529411,164.6919065341202,36.49730370588235,0.9632165002319413,5.717441176470589,2.7205882352941178,7.321232705882354,120.57167244183026,7.62122448979592,0.14015069387755097,0.030453314440215293,0.6481632653061222,3.4497959183673474,1.3015230485541176,36.12688347428572,0.21662116237558857,0.13131134693877541,1.8944784580498866,0.0892277420408163,48.59970054789486,-0.4253061224489797,-0.023401469387755062,-0.016720761992095864,0.13224489795918376,0.8840816326530612,0.08221458444350774,-1.8474269942857202,0.02301932773714302,-0.02120122448979597,-0.42353174603174604,-0.014683755102040827,2.7592737724923526,1.1454421768707481,0.004271020408163268,0.001786029412649068,-0.13482993197278906,-0.06789115646258508,-0.10185816509202393,5.4479518766666635,0.005117727339103444,0.007352605442176826,0.17089521919879064,-0.0008397591836734741,5.0378756646585,-2.730980587356894,-0.02707787157789941,-0.0024938862956700425,0.03336983573917371,-0.13272274763563963,-0.15567860594476104,-13.047151001463416,-0.06448594176150871,-0.028698350423096073,-0.26786454012499306,-0.01276396085614734,-17.04857788344892,1.9751694075688526,0.029304507232018984,0.0017324906909060192,-0.0012839310481474239,1.015946106597979,-0.053829805423408816,9.275553139029128,0.006900871030863249,0.0303412744204478,0.297207471985558,0.014936351163067175,6.933905959016252,0.8603544575725028,0.025659005370569282,0.0011764903543881764,-0.07335123523093448,0.0005800214822770933,-0.1084840593494399,3.9419595663157914,-0.009674408044875807,0.02420045757250266,0.456030627163146,0.016393476004296446,0.47329490761245946,-2.1073589435774314,-0.03688199639855938,-0.0016619118180197139,0.03713085234093637,-1.208619447779112,0.2089002676767926,-9.758542504117647,0.028529792771625248,-0.03878361584633852,-0.5774966653327999,-0.019909770612244904,-2.913324262328181,-0.46884353741496587,-0.002445129967776602,-0.0025935495985739384,-0.09127103472968136,-0.10844253490870029,0.006357215657104272,-2.2639553003508746,-0.01365218542235999,-0.002940168993913317,-0.13274078052273536,-0.00035915657715716355,-3.2562746457384852,1.677935174069628,0.025369138055222052,0.0061090313226322785,-0.22127250900360146,-0.8733253301320527,-0.25397395336801637,7.773500204705885,-0.03415725468906589,0.02771302280912365,0.39665132719754576,0.010401078127250907,0.9735182263951699,,,0.46249999999999997,1.015625,0.4375,0.0625,0.578125,-0.140625,0.8741726785271456,0.03984612485191058,0.04522112485191058,0.6811780610921364,0.19462346739434783,0.26016875540206,1.555350739619282,0.45479222279640785,1.9272507332676414,1.4756208712617758,0.12131236543912677,0.33031749656673903,0.0,0.45162986200586575,6.432471241942857,692.0,213.13490000000002,97.0,198.0,5802.561581758231,2714.57472,45.054057192131005,214.7324,171.1736111111111,268.393792,6565.280469294385,745.0,222.704,111.0,181.0,5232.116730883249,2743.9798039999996,57.410860908,226.8895,115.43055555555556,274.04560799999996,8262.951500069004,1100.0,366.058,188.0,226.0,9327.60410744084,4046.465671,84.81264507448998,372.15650000000005,182.875,457.34958,11926.6004773529,1157.0,508.61,190.0,236.0,13119.634542517944,3883.755863,100.96839646024499,514.4771000000001,259.27777777777777,635.7389319999999,13361.631388246788,1019.0,581.774,195.0,219.0,17309.1396096948,3470.3530210000004,94.754586230752,586.7111000000001,258.1666666666667,755.0920760000001,11668.208122063836,965.0,459.0580000000001,158.0,174.0,12642.683340939026,3344.2738559999993,75.58641950722502,462.07219999999995,273.58333333333337,583.213648,9973.277125475039,735.0,421.045,135.0,102.0,11419.478490586733,2344.4619109999994,67.594817950433,422.6112,225.50000000000003,533.7194200000001,8696.93602774573,553.0,321.53200000000004,104.0,76.0,9314.12052333018,1789.7543289999999,61.312572909282004,325.63149999999996,125.00000000000001,415.50341199999997,7422.925911369467,543.0,288.39000000000004,99.0,39.0,8399.28723324013,1861.362489,49.124041511829006,291.58950000000004,138.75,373.38286800000003,6149.155294533343,266.7428571428572,4.905274285714284,1.0658660054075353,22.68571428571428,120.74285714285716,45.55330669939411,1264.4409216000001,7.5817406831456,4.595897142857139,66.30674603174603,3.1229709714285705,1700.98951917632,-14.88571428571429,-0.8190514285714272,-0.5852266697233552,4.628571428571432,30.94285714285714,2.8775104555227706,-64.6599448000002,0.8056764708000057,-0.7420428571428589,-14.823611111111111,-0.5139314285714289,96.57458203723235,68.72653061224489,0.2562612244897961,0.10716176475894408,-8.089795918367344,-4.073469387755105,-6.111489905521436,326.8771125999998,0.30706364034620665,0.4411563265306096,10.253713151927439,-0.050385551020408446,302.27253987951,-223.9404081632653,-2.2203854693877516,-0.20449867624494347,2.7363265306122444,-10.88326530612245,-12.765645687470405,-1069.86638212,-5.2878472244437145,-2.353264734693878,-21.96489229024943,-1.0466447902040819,-1397.9833864428115,203.44244897959183,3.0183642448979553,0.17844654116331998,-0.13224489795918465,104.64244897959183,-5.544469958611108,955.3819733200003,0.7107897161789146,3.1251512653061235,30.612369614512474,1.538444169795919,714.192313778674,65.38693877551022,1.9500844081632653,0.0894132669335014,-5.57469387755102,0.04408163265305909,-8.244788510557433,299.58892704000016,-0.7352550114105614,1.8392347755102023,34.658327664399096,1.24590417632653,35.97041297854692,-143.30040816326533,-2.507975755102038,-0.11301000362534054,2.524897959183673,-82.1861224489796,14.205218202021896,-663.5808902800001,1.940025908470517,-2.6372858775510193,-39.26977324263039,-1.3538644016326535,-198.10604983831632,-26.724081632653053,-0.1393724081632663,-0.1478323271187145,-5.202448979591837,-6.181224489795916,0.36236129245494353,-129.04545211999985,-0.7781745690745194,-0.16758963265305907,-7.566224489795916,-0.02047192489795832,-185.60765480709367,85.57469387755103,1.2938260408163247,0.3115605974542462,-11.284897959183674,-44.53959183673469,-12.952671621768836,396.4485104400002,-1.7420199891423607,1.4133641632653062,20.229217687074833,0.5304549844897962,49.64942954615367,0.7715584364182028,0.616134290277808,0.45479222279640796,0.3273712567792467,0.33713691557325287,0.21432358396473963,0.19860871778369188,0.09706274269766815,0.12962363648385808,0.05119752244738297,0.087811821551209,0.029065768617194777,0.056066008600675545,0.01691242324473152,0.03498175559471385,0.009624333515919108,8.00840664973086,5.692568631484469,3.515396266509244,2.191268287570235,0.3989732611560086,-0.2907531496927186,4.017038465160573,0.9887988358820741,5.01404828577095,0.9899210424770176,14.54022895462436,10.953107433881355,16.004174304785604,11.704350045196211,1.9848639287448524,0.7867085649268245,3.4572910161000303,2.2409895209262123,6.004853956078174,1.1970202724455934,3.670939867058242,2.437035639597914,20.891169835634624,14.707201283157808,0.27787756048774837,0.6178537297957833,0.726740251182511,0.763516061305974,0.7744047134446468,0.7852933655833196,2.378747056961732,337.5217724119264,0.0,0.0,4.0,0.0,5.0,1.0,1.0,1.0,0.0,3.6710017218927273,1.8868314290659365,1.3154028576373649,1.122406071861266,1.0652632147184091,1.0081203575755513,161.2020639911891,824.3271000220384,72.18719658414469,23.55220285777253,48.54741974257188,,8.0,204.0,6.103966387748303,15.319582184522117,17.037948918951155,12.10820789760957,0.0,18.19910120538483,0.0,20.771211599071872,5.316788604006331,0.0,7.3999999999999995,16.25,7.0,1.0,9.25,0.0,0.03750000000000003,-2.25,0.12666666666666654,0.0380487804878048,-0.08861788617886174,0.1137499999999998,0.18162589928057538,0.0,0.5600000000000003,0.8687499999999998,0.43333333333333374,0.5219512195121955,0.755,13.98676285643433,0.6375379976305693,0.7235379976305693,10.898848977474183,3.1139754783095652,4.16270008643296,24.885611833908513,7.276675564742526,0.5323741007194246,0.3378378378378379,0.06756756756756757,0.2702702702702703,0.5,0.314889880915678,-0.5961394191497634,-0.10104848756128708,-0.01703255483285038,-0.059613941914976334,0.6851101190843222,1.297028495348573,0.06473823036541086,0.03705795700995923,0.051881139813942906,-1.9413051056680208,1.0415595544130245,1.072046648330718,1.4580217177355004,1.28463476070529,0.760293421675343,1.2900912963356732,1.042859372924616,1.1690949097664933,1.0581537321486747,1.1299216603927156,1.0850482083068447,1.1081221949055668,0.7955851899457296,0.7314500931747324,0.6321723999084319,2.0232997481108317,1.074735762738602,1.301075304576878,0.8021146450242609,1.1348648373702603,0.7152415653547722,0.6028292128734695,0.7413582198431121,0.9983138474533213,1.3445853449537064,1.1833444839563008,1.0221382562818806,0.84075689623395,0.9855655466161853,1.2892229120208833,1.348774903316517,1.34507598874872,1.1989699750985294,1.0299443657271041,1.1116934709887027,1.364203748539782,0.6577368324722754,0.5564129737609049,0.6000107868044658,0.8002983541610625,0.5631803123521059,0.8952918935441201,0.662927739158921,0.879143324888861,0.5569363827202279,0.5841763080719131,0.5668112461357381,0.8049587151278875,0.8947608014251566,0.9454678122434671,1.0275251158714187,1.114195280392417,1.018911749321244,1.0024513788130636,0.8948677402960128,0.9685492310524053,0.933357370791261,0.9248712188957487,0.9655394700843997,0.9252992441590269,1.3449282347900597,1.686689574953141,1.3528246675409725,0.8595717884130983,1.5052650260293419,0.7281307890911272,1.3287520368084864,0.7575074121510557,1.6825822597049296,1.8356394343269915,1.7168625802331232,0.9525693995327903,0.9380872382326851,0.6019725256703381,0.8599335853217593,0.89398559370719,0.8200695776355227,0.9848129070492552,0.946986611084984,1.0726124817207672,0.638471452166315,0.5762084272641111,0.533344897156385,1.081015318730685,0.6860539845758354,0.5361575819846393,0.5323834977945221,1.4987405541561716,1.2257453857075244,1.0841443250221794,0.6953827070760946,1.1279491545990101,0.5312782083895947,0.5237652085964104,0.5811581396703711,0.9669602455840601,6.0,0.0,1.7777777777777783,1.1875,1.0533333333333335,0.48611111111111105,0.2236734693877551,0.3003472222222222,0.061224489795918366,0.0,2584.355330568139,3086.4828862783465,1447.3013895287024,1237.8238213023837,10.232829783936142,0.4731781186857867,5.390878637941353,0.898174763556505,1.0,0.5,1.4582812950522388,3.24245158787903,3.8138801593076015,4.0068769450837,4.064019802226557,4.121162659369415,0.375,0.0,0.0772946859903382,0.062499999999999986,0.061960784313725495,0.03038194444444444,0.020333951762523193,0.033371913580246916,0.006802721088435373,0.0,0.6676460011797136,14.0625,5.55765595463138,5.264462809917355,95.5536192460727,1.0,3.6634429430867073,60.305342223878796,,50.67837333139714,49.89163027475655,50.001031671521304,50.68743073239055,67.66436369137924,50.37897775051864,50.72230531889862,60.77315128200686,-0.05580548414738647,-0.16697362489122475,-0.5490621398508653,0.2040302267002521,0.2562707051585423,0.06316798195378961,-0.051137181417840155,0.1062653689265639,-0.16145767280630477,-0.22356113062785396,-0.16456490735049528,0.056775530330132315,0.1502963439017423,0.030474486354629394,0.05864811254470604,-0.20801847187237613,-0.01967976021454489,-0.07826074628888038,0.15080049405713034,0.02362524179530564,0.05599367924848883,0.09020700049273958,-0.009411413585803115,0.10366063181178842,-0.35833881957071495,-0.1932054050446388,-0.0818921139295343,0.05148368864041285,-0.03847263744762388,-0.11961263852968786,-0.3611479803053058,-0.29768994429870044,-0.21855194613514115,-0.14139223330136144,-0.1430492419085154,-0.3507959450624104,0.2591669370471127,0.20909284443230944,0.05689005360343204,-0.0019808759873811014,0.29449455290641835,-0.041359087327119716,0.25674933033266634,0.031856864561081874,0.23106361428608738,0.15688089285084483,0.16739582131569233,0.14267384121395787,0.1128892684796825,0.18308154359183865,0.03863258814398723,-0.11316783773034604,0.00016813211447928045,-0.08335162367655075,0.10911429902669538,-0.044660493641437655,0.1842982966566191,0.240715657243508,0.18372622268977087,0.009738638351197839,-0.27651185795655026,-0.2631595704462442,-0.05457244469341133,0.05728626463179731,-0.3503452019709919,0.16050447044242758,-0.27011858111324644,0.1317036270083293,-0.2953561649506313,-0.30483147637754393,-0.22313430954172736,-0.0599453130263037,-0.061518137674949985,-0.017446434977431514,-0.08516477257887607,-0.14081488355649835,-0.03143447829227587,0.004884443394349876,-0.06266677561496013,-0.06302332271068305,-0.022390821984974274,-0.0700671891827022,-0.0040251671614963775,-0.06700194875747097,0.22016608700035284,0.18101328900581082,0.20060316700913722,-0.34138390872721897,-0.25315275187216385,-0.1951359629398496,0.21517217808834474,-0.15768198413524503,0.2110481954163869,0.20937230798910508,0.11656776120696904,0.020031362650800095,2.249576847278282,8.817193561237604,2.94168275343288,13.75509555094203,26.63926986089834,28.710070637649903,29.533354254855066,30.44758282628364,30.505182826283644,30.836011732282262,23.609933940188412,1.9409978470260283,5.2850799450678245,0.0,7.226077792093852,2047.6896574575142,1714.0883485518148,570.4624462254292,12.0,23.0,22.0,26.0,30.0,25.0,20.0,18.0,10.0,225.136493468,16.0,4.3694478524670215,5.1298987149230735,6.003887067106539,6.790097235513905,7.6577552711348655,8.45638105201948,9.319284458965361,10.125069885783383,10.9850045457756,0.5809523809523809,0.975657142857143,1.1389756603795127,0.5359087503122137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6195905389221559,0.9608963585434174,1.0025595671626266,0.5728492861504464,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,3.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,20.63637078852845,11.49902366656781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.46739722769209,18.15004872675753,6.103966387748303,137.11000507331596,-259.5722623615058,-43.99874204242542,-7.416350353185879,-25.95722623615058,298.31206906450507,564.7548376605326,28.18845454171926,16.13585250458665,22.590193506421304,0.5,0.6493212058172411,0.2682334568249805,115.56862580056328,0.15481764555014402,170.88806211323978,0.35067879418275905,4.0,0.1875,0.2843050949293885,0.63214519011085,0.7435503454787279,0.7811768100622808,0.7923173255990685,0.8034578411358564,1.5192999999999997,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,62.48710000000004,15.319582184522117,0.0,5.316788604006331,0.0,32.41410323920352,6.544756405912575,23.762552697081826,0.0,11.49902366656781,3.4965075614664802,0.0,4.8283137373023015,0.0,6.3080984415095305,0.0,7.855932199718614,0.0,9.440896383005846,20.333333333333332,4.107996149848828,0.0,0.0,0.0,0.0,0.0,0.39246976568405234,0.0,34.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.864148113282944,5.316788604006331,0.0,11.49902366656781,27.403263842818035,0.0,0.0,32.43862947851717,18.19910120538483,0.0,0.0,0.0,18.75680626092748,21.685668862275456,18.12165443347082,120.6106844477576,,101.24513951993714,99.65290922331486,99.90898182515605,101.26357435030883,136.7406266119582,100.64078712588427,101.33389221357614,122.1149180874203,18.12165443347082,120.6106844477576,,100.46388951993714,98.74044993992729,99.25741119995013,100.48456454900284,139.09379199395772,99.82060849981326,100.55886324402837,123.06261062643122,4.625535306318919,91.08025636393357,,77.72808805637251,76.49718764214735,76.2243465170491,77.74092483887746,102.0356233657844,77.23894119005708,77.79898254737503,92.85954537460836,1.1326034020919262,7.53816777798485,,6.327821219996071,6.228306826457179,6.244311364072253,6.328973396894302,8.546289163247387,6.290049195367767,6.333368263348508,7.632182380463769,2.3127676531594594,60.305342223878796,,50.67837333139714,49.89163027475655,50.001031671521304,50.68743073239055,67.66436369137924,50.37897775051864,50.72230531889862,60.77315128200686,33.63137254901961,0.0,5.998981481481481,0.0,0.0,0.0,28.40671130952381,35.08958485069193,0.36745370370370356,3.1457728647014362,0.0,0.0,-0.7525694444444448,0.0,-0.0834824971655328,0.0,0.0,20.049725015265622,282.72878621861406,51.039845326828356,113.48580557576605,133.48580557576605,140.2406930779295,142.2406930779295,144.24069307792954,218.0,100.83682608368922,152.69328791920697,47.92974832300277,72.72,72.72,1.0,6.541931468646065,5.0,3.577798734333003,3.9465259038664233,,3.943547941063709,3.9440205244403,3.943215625318322,3.9435406696523754,3.9245664251405104,3.9437020066064115,3.9435241217895296,3.9350686753102373,0.22361242089581268,0.24665786899165146,,0.2464717463164818,0.24650128277751876,0.24645097658239512,0.24647129185327346,0.2452854015712819,0.24648137541290072,0.2464702576118456,0.24594179220688983,1.7447513618649921,1.842839303147368,,1.8420844400110652,1.8422042699381773,1.8420001682453944,1.84208259613389,1.8372595094460533,1.842123506997339,1.8420783999307948,1.8399319633923497,183.7699999999996,76.32318996196521,69.71611752828191,,69.83093216292951,69.78705204656825,69.99207199977897,69.83201540080188,71.55856962816934,69.82307682112015,69.83248865993014,70.66697155133848,4.770199372622826,4.35725734551762,,4.364433260183095,4.361690752910516,4.374504499986186,4.364500962550117,4.472410601760584,4.36394230132001,4.364530541245633,4.416685721958655,4.8049804527078495,4.714435161718798,,4.716080695046939,4.71545212104117,4.718385607735005,4.716096207219513,4.740519899259559,4.715968197856564,4.716102984304807,4.727981929646065,0.0,0.0,31.552484174225246,0.41119342876039333,-0.10220616024187379,4.107996149848828,-0.7525694444444448,6.366435185185185,0.0,222.30988729525365,59.70072279407039,-113.02349286609349,-19.15802351956782,-3.2292426533169563,-11.30234928660935,129.8916598524117,245.9067227935175,12.27387534329508,7.025906365529073,9.8362689117407,468.0,19.0,2.54037936803163,1.5865833362824513,0.3535533905932738,0.25,0.11785113019775792,0.03042903097250923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.17536647355387364,0.03540546303448565,12.344934982691244,9.858148644444928,7.276675564742527,5.2379401084679476,7.754149058184816,4.9294424311890115,4.369391791241221,2.1353803393486994,3.3702145485803103,1.3311355836319574,2.63435464653627,0.8719730585158433,1.4016502150168886,0.42281058111828795,0.6996351118942771,0.19248667031838218,2.3936345532609664,1.037753661087715,3.180091014259606,1.0786347055149146,4.371409704709389,1.0909646016006298,55.530237744802854,31.58222025734701,27.258036739399735,25.713395830870624,24.28286645169578,24.104050279298928,78.0,84.0,36.21506699999997,19.630933,0.17142857142857143,16.04,7.756944444444445,3.4027777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,35.0,0.0,1.0,35.0,6.0,0.0,3.0,32.0,6.0,16.0,29.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,4.0,4.0,0.0,16.0,4.0,0.0,1.0,3.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,1.0,2.995732273553991,4.342993403944672,3.5409593240373143,3.844814255734696,4.3224756550473495,4.726834568352447,4.670489652108734,4.460144413937834,4.251170232498662,4.0375537278753555 +15032,CC(=O)[C@H]1[C@H](C#N)C[C@H]2[C@@H]3CC=C4C[C@@H](O)CC[C@]4(C)[C@H]3CC[C@@]21C,0,17.857142857142858,5.740444642857144,3.1607142857142856,4.642857142857143,162.57260144904856,69.88286958928573,1.3863430008985538,5.82149642857143,3.738343253968254,7.340514357142856,195.6618507677587,20.779661016949152,6.002118644067797,4.11864406779661,4.406779661016949,142.69601005751102,76.92387647457632,1.8335470726440684,6.16485593220339,2.4585687382297547,7.46358508474576,254.8898991653893,17.142857142857142,5.809369747899159,3.857142857142857,3.033613445378151,148.91309085890282,62.436528613445375,1.595554286836841,5.947210084033612,2.054971988795518,7.337802655462185,215.0583624709953,14.175531914893616,5.7887978723404245,3.117021276595745,2.1968085106382977,152.65560516088286,49.286208792553175,1.425721503798266,5.905752659574467,2.1462765957446805,7.354110063829785,185.0167413029059,11.326612903225806,5.626439516129034,2.5,1.6129032258064515,157.37207239289273,37.87276871774194,1.2308451083840404,5.725758064516128,2.0677363351254483,7.237313096774194,152.04563272226545,8.847014925373134,5.535294776119402,2.082089552238806,1.171641791044776,163.19345571798274,28.154379436567165,1.0409974798500223,5.608668283582091,2.1254664179104474,7.1996692686567165,122.31572545214208,7.990909090909091,5.5046409090909085,1.9636363636363636,1.0863636363636364,168.1977139228646,25.380695890909085,0.9471905609275043,5.559593181818181,2.039457070707071,7.197722836363638,110.32345120282356,9.347222222222221,5.605277777777778,2.0833333333333335,1.4652777777777777,164.49211174846596,30.270554319444436,1.0417892094673542,5.673055555555555,2.218364197530864,7.26559772222222,125.17770697931353,9.336206896551724,5.574560344827586,1.956896551724138,1.4396551724137931,165.78082209569268,30.865452086206904,0.9863806691961381,5.636818965517241,2.295019157088123,7.248534344827586,118.81065377611246,6.825255102040818,0.07689461096938772,0.007504069406971966,0.7471301020408162,2.8966836734693877,1.35129523685082,32.69574107366071,0.23399507702613992,0.07691466836734687,1.4434789540816328,0.04414868239795917,52.26026958762092,0.2861250432376337,-0.002313436635247268,-0.002597192632780582,0.3442742563126946,0.9120330335524045,0.14100927188592075,1.4336754880826175,0.02407672925259237,-0.0017748378588722435,0.0033825942100003986,-0.0015780891776201837,4.401248544862154,0.5706032412965183,0.00238047906662667,5.655056956838482e-05,-0.008834783913565474,-0.128376350540216,0.12333778680956638,2.756530091255246,0.021264123290479844,0.0031311599639856445,0.03539592920501534,0.0006809628601440609,4.922794653031977,-0.9046623968736431,-0.008897413021059461,-0.00043107536593706304,-0.14654119626574036,-0.4922383847155884,-0.07237326977152043,-4.301048426529259,-0.01584326976523985,-0.009773103017802803,-0.09880153302455733,-0.004021466212548841,-5.153014488031651,-0.7039993416721527,-0.0009196829739960523,-0.00010395434901835536,-0.1167297564186965,-0.16295671494404218,-0.21592699833196208,-3.4422494601814533,-0.03818067861146547,-0.0017590232060566155,0.024625004571721152,3.103534397629465e-05,-7.6844542250021535,-0.2851431617423088,0.0019625851926591323,0.00024683188149118835,0.008866699664940608,0.013630825464514103,-0.14451237791069602,-1.4128688411847001,-0.020246439857233182,0.0012501237435272254,0.06599006984634649,0.001248674478373429,-4.003510743988765,0.5586734693877554,-0.001176412917439728,-0.0002374485455067455,0.04134392393320966,0.06354359925788494,0.16268928686031012,2.7296125002840954,0.0270357185651106,6.195500927637903e-05,-0.10473887471655326,-0.0014916184369202319,5.91339328170908,-0.14916383219954643,-0.003758289044784586,-6.253136813017997e-05,-0.023543792517006785,0.08223497732426306,-0.0038808802026704145,-0.7016108151041648,-0.0030209745671254656,-0.0033794997165533056,-0.09102773053665908,-0.002303747378117916,-0.6602713578195034,0.7831192821956373,0.006173861937016167,0.0008172141760364089,-0.03576926460239267,0.15565622800844478,-0.07072074932650071,3.7073735436422437,0.002145837895741504,0.007619414144968289,0.022386792360622423,0.001568302823715686,2.985404282403187,,,0.48266666666666663,0.81,0.22,0.0,0.59,-0.37,1.4934549478374912,0.024227228261750895,0.0379872282617509,0.4256797271409238,0.09173702498729285,0.3806042892458801,1.919134674978415,0.47234131423317294,2.050552750076466,1.8413519271740049,0.06975437640389624,0.13944644649856533,0.0,0.20920082290246156,6.0934907005714445,1000.0,321.46490000000006,177.0,260.0,9104.06568114672,3913.440697000001,77.63520805031901,326.00380000000007,209.34722222222223,411.06880399999994,10957.063642994486,1226.0,354.125,243.0,260.0,8419.06459339315,4538.508712000003,108.17927728600003,363.72650000000004,145.05555555555554,440.3515199999998,15038.504050757969,2040.0,691.3149999999999,459.0,361.0,17720.657812209436,7429.946905,189.87096013358408,707.7179999999998,244.54166666666666,873.198516,25591.94513404844,2665.0,1088.2939999999999,586.0,413.0,28699.253770245978,9265.807252999997,268.035642714074,1110.2814999999998,403.49999999999994,1382.5726919999997,34783.14736494631,2809.0,1395.3570000000004,620.0,400.0,39028.2739534374,9392.446642,305.24958687924203,1419.9879999999998,512.7986111111112,1794.8536480000002,37707.31691512183,2371.0,1483.4589999999998,558.0,314.0,43735.84613241938,7545.373689,278.98732459980596,1503.1231000000005,569.6249999999999,1929.511364,32780.614421174076,1758.0,1211.021,432.0,239.0,37003.49706303021,5583.753095999999,208.38192340405095,1223.1105,448.6805555555556,1583.4990240000002,24271.159264621183,1346.0,807.1600000000001,300.0,211.0,23686.864091779098,4358.959821999999,150.017646163299,816.92,319.4444444444444,1046.2460719999997,18025.589805021147,1083.0,646.649,227.0,167.0,19230.57536310035,3580.3924420000008,114.42015762675202,653.871,266.22222222222223,840.829984,13782.035838029045,382.2142857142858,4.306098214285712,0.4202278867904301,41.83928571428571,162.21428571428572,75.67253326364592,1830.961500125,13.103724313463836,4.307221428571425,80.83482142857144,2.4723262142857134,2926.5750969067713,16.88137755102039,-0.1364927614795888,-0.15323436533405435,20.31218112244898,53.809948979591866,8.319547041269324,84.58685379687444,1.4205270259029497,-0.10471543367346237,0.1995730583900235,-0.09310726147959084,259.6736641468671,67.90178571428568,0.2832770089285737,0.006729517778637793,-1.0513392857142914,-15.276785714285705,14.677196630338399,328.0270808593743,2.5304306715671014,0.3726080357142917,4.212115575396825,0.08103458035714325,585.8125637108052,-170.0765306122449,-1.6727136479591789,-0.08104216879616785,-27.549744897959187,-92.54081632653062,-13.606174717045842,-808.5971041875007,-2.978534715865092,-1.837343367346927,-18.574688208616777,-0.7560356479591821,-968.7667237499504,-174.59183673469389,-0.22808137755102098,-0.02578067855655213,-28.948979591836732,-40.41326530612246,-53.54989558632659,-853.6778661250004,-9.468808295643436,-0.43623775510204066,6.107001133786846,0.0076967653061210724,-1905.744647800534,-76.41836734693877,0.5259728316326474,0.06615094423963848,2.376275510204083,3.6530612244897798,-38.72931728006653,-378.6488494374996,-5.426045881738493,0.3350331632652964,17.68533871882086,0.33464476020407896,-1072.940879388989,122.90816326530619,-0.2588108418367402,-0.05223868001148401,9.095663265306126,13.979591836734686,35.79164310926823,600.514750062501,5.9478580843243325,0.013630102040803387,-23.042552437641717,-0.328156056122451,1300.9465219759977,-21.479591836734684,-0.5411936224489804,-0.009004517010745916,-3.390306122448977,11.841836734693882,-0.5588467491845397,-101.03195737499973,-0.435020337666067,-0.48664795918367604,-13.107993197278908,-0.3317396224489799,-95.0790755260085,90.84183673469393,0.7161679846938753,0.09479684442022343,-4.14923469387755,18.056122448979593,-8.203606921874083,430.0553310625003,0.24891719590601447,0.8838520408163215,2.596867913832201,0.18192312755101958,346.3068967587697,0.7193105273678375,0.6317549933638799,0.42173331627961874,0.3602278159044577,0.26121792207681555,0.2168912250532218,0.1557345271833856,0.13044820558880443,0.09707000399504162,0.07797719617803026,0.06106805072223824,0.04613635955815184,0.03684590295765673,0.027852740408835265,0.022574373958879766,0.01652084918110022,8.022057296046572,5.715125214947523,3.543363966928449,2.215063010014162,0.35002594170992224,-0.4094072346833663,4.030741960863451,0.9113245153738841,6.021897262731205,0.9950189663818608,14.56323925856475,10.975435766088953,16.010201188698865,11.726161031715574,1.9695991686501095,0.7526874385526928,3.4884652030344667,2.2650492992385325,7.008272351109635,1.0896971169684835,3.7015503332521855,2.461051715795596,20.877762787735474,14.702557686775926,0.2136790579094452,0.48984864621425944,0.7736827978856097,0.8871307473860771,0.8871307473860771,0.8871307473860771,1.6299697190374929,661.4285957448014,1.0,0.0,3.0,0.0,2.0,8.0,1.0,5.0,2.0,4.5301353791431005,2.879392443487497,1.182836267098705,0.5047261161873289,0.5047261161873289,0.5047261161873289,191.755662429219,816.4017735578238,49.49262396350406,14.578603099246855,28.53434762934163,,11.0,456.0,0.0,15.162956133651013,34.55300436522959,17.75371813848418,38.524929737556064,11.993926152995277,6.923737199690624,0.0,25.992715819007405,0.0,12.066666666666666,20.25,5.5,0.0,14.75,0.0,0.017333333333333343,-9.25,0.06816770186335386,0.007348111658456391,-0.06081959020489747,0.018358974358974267,0.09307375643224669,0.0,0.5130952380952383,0.7773333333333329,0.4449275362318844,0.5057471264367819,0.7589743589743586,37.33637369593728,0.6056807065437724,0.9496807065437723,10.641993178523094,2.293425624682321,9.515107231147002,47.97836687446038,11.808532855829323,0.6209262435677533,0.21270718232044197,0.08287292817679558,0.3314917127071823,0.8181818181818182,0.32281094298042656,-0.48704701192323535,-0.06147239526752676,-0.008697268070057773,-0.024352350596161764,0.6771890570195734,1.0217215800782053,0.02999349688316424,0.018245028215682236,0.02838115500217236,-3.528057995346261,0.9853377635734172,0.7268357839129335,1.1363950119011708,1.013766213097796,0.6149012232347432,1.1446950085259755,0.9909012750042887,1.1397663147611625,0.7614911541794117,0.6067218960069649,0.6954699724221307,1.1038637901645025,0.901480756757945,0.5981057497239538,0.6360190512423235,1.7288041977354325,1.0599114150283626,1.052258749885285,0.9078669505754288,1.0708894548209542,0.6399971047255305,0.4734329806368894,0.5587937773821725,1.0327087285173422,1.1274587768442563,0.9486598779448863,0.8830520404205655,1.5557886325042458,1.1731756560517907,1.142881792438285,1.1300524176137403,1.1680923106480436,0.9816363217254742,0.8288728834283098,0.9144642710569207,1.1729917520973319,1.0548676460836381,0.7049487675319528,0.686291544809164,1.1581856731788585,0.916686197639238,1.1814568369801604,1.0614885088999861,1.199333579050117,0.7571343185790061,0.6264053011835458,0.6289073766091205,1.175883952237489,0.9871533288519092,0.8073750344327776,0.6580155550854746,0.7553780393805621,0.8634584672410732,1.0396205932196518,0.9900692781229251,1.0440233216669148,0.8381585177884802,0.7698398436931155,0.7745377416708775,1.041869139411078,0.8696038123715192,0.9796223379219254,0.9154862235480974,0.7648314127187368,0.9285557023337736,0.7801546626949171,0.8669526937167337,0.7757695308367251,0.9653845452238848,1.067828280039027,0.9652296231019214,0.8009360974579078,0.995296829253099,1.0632422019621028,1.055206638995809,0.9174491392801253,0.9524224521747638,0.9490646151260698,0.9938686740038044,0.9487161568502771,1.0531175357221234,1.1212684951662508,1.058343037820788,0.959115447082992,0.8559470031383111,0.9657394603125781,0.9825673925678472,0.8555933300955157,0.9499460969647276,0.9612650468173563,0.8555038789003484,0.9098636508776847,0.9383914852814202,1.015732204496599,1.0226979418915318,0.875805187034101,7.5,0.08662381389654117,5.333333333333336,4.013888888888889,2.930555555555556,1.1147222222222222,0.8580498866213153,0.4930909863945578,0.25975529100529093,0.12594135802469136,4691.934872281039,5654.992509847195,2283.6526651437557,1972.9649327391594,13.451485740359114,0.4924197461422886,6.827708546854864,0.9701318016211232,1.0,0.8571428571428571,1.2772195429145028,2.9279624785701066,4.624518654958899,5.302628805870275,5.302628805870275,5.302628805870275,0.26785714285714285,0.017324762779308233,0.11851851851851858,0.07573375262054505,0.058611111111111114,0.030127627627627628,0.030644638807904117,0.022413226654298075,0.01443084950029394,0.011449214365881035,0.6471108448426306,18.367346938775512,6.269629629629629,2.587658721318779,151.03844331756565,1.0,4.187214883000434,108.81205243968304,,102.28886796688042,102.1347896622655,102.50204374739212,102.29168099182388,107.66076374124158,102.24579293723758,102.29591426792493,104.9402754147733,0.04192151633307883,-0.03008580973468041,-0.34610455899668957,0.4607955901820787,0.31485420444961915,0.10435119435079299,0.043848998095888665,0.10289417007650432,-0.023075414567161133,0.0023433623333652728,-0.03574487599415046,0.08421786913063867,0.08360174568799669,0.030957683986129473,0.00753598700937443,-0.01182496045793484,-0.04431838785712433,0.09127375235703772,0.08430853685331735,0.09087423359810429,0.040709529540335875,0.024521264480461276,0.01542430766123021,0.09419765133010445,-0.1325463126796741,-0.11570918831492084,-0.057445546217436985,-0.19613879278248478,-0.16993170128446555,-0.05355844363085717,-0.1315476660045528,-0.06770770550642814,-0.1270642287778731,-0.06844681229690434,-0.09108915587330729,-0.09860290673380424,-0.10314623133451087,-0.011960304661170398,-0.013853063368759926,-0.1562375228890449,-0.0562563031775117,-0.15979261411087173,-0.10528127967573388,-0.16316872601212998,-0.022869801604753277,0.01705948292636384,0.0007029732778101957,-0.14704199357636683,-0.04177765628965989,0.025523052498964475,0.032893070160286496,0.011867678254056232,0.004705665858291086,-0.10694360045809136,-0.0432126263173429,-0.08652506759777438,0.016253385343307926,0.045715990288428245,0.028283391724305468,-0.07660715827874512,0.08185385909175857,-0.015299029445744464,-0.031642637165127246,0.05533698056105228,0.02193667187062166,0.12039507164952042,0.08348526170838311,0.11553968958966773,0.0008055031711308949,-0.07256002896362974,-0.03378625036812387,0.11315275118882678,-0.0218546896737889,-0.04887584445001987,-0.00833299437130507,-0.031512306160193466,0.028389353686579584,-0.002871970607781292,-0.021458783072801302,-0.012910419336676847,-0.04393829926448761,-0.06306134930423876,-0.05218156585856364,-0.01263428916516543,0.11473846332300122,0.08028991705899942,0.1089028008292597,-0.047875550061077014,0.053736011782748,-0.0523355277202891,0.1133901059251065,0.009170440348630878,0.09906321260565966,0.01550891497054441,0.035523207908650586,0.0571256961734149,9.926606829608305,22.96837889835503,8.808710650305553,11.035835946948852,28.510282555920472,34.22167727683703,34.9052123089557,34.9052123089557,34.9052123089557,51.26381875191165,46.03379817935012,1.743859410097406,3.4861611624641333,0.0,5.230020572561539,4657.929066709177,4332.938905914745,906.3744650888825,277.0,45.0,67.0,97.0,129.0,155.0,193.0,239.0,272.0,341.2354792320009,28.0,4.990432586778736,5.916202062607435,6.882437470997847,7.830822995135316,8.801017833540714,9.757478638400492,10.72908741912578,11.689388225821203,12.661562076555386,0.5535714285714285,0.9519285714285715,1.1276160699220144,0.5077116809591208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6427992194183061,0.9399159663865548,0.9836775569659764,0.5818909416707861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,1.0,7.0,0.0,0.0,0.0,6.0,0.0,2.0,1.0,1.0,5.106527394840706,5.783244946364939,0.0,0.0,0.0,4.794537184071822,0.0,5.261891554738487,0.0,25.496599036284397,80.45318763745043,5.917906046161393,18.091093746701972,174.67451786194272,-263.5434263730937,-33.26300188598339,-4.706132613805244,-13.177171318654684,366.4301802911617,552.8583471847302,16.229622077520666,9.87247048544161,15.357176310686945,0.45454545454545453,0.8519665015102195,0.2603425647441888,104.17747311249931,0.1394917182309245,151.11400772058911,0.1480334984897805,6.0,0.03571428571428571,0.21993137324246254,0.5041817691302223,0.7963209958795467,0.9130884674759125,0.9130884674759125,0.9130884674759125,4.264980000000004,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,96.36680000000005,9.901064578912528,5.261891554738487,0.0,40.419511169600526,71.82092934730224,0.0,11.64912463690315,0.0,6.069221312792274,4.04305126783455,0.0,5.4680601411351315,2.3978952727983707,7.112327444710911,4.948759890378168,8.863474306170954,7.247792581767846,10.670512321570657,30.999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.308,0.0,12.371799372673516,0.0,0.0,0.0,2.4144458616780047,0.0,1.6973074987315617,63.1464999156328,0.0,0.0,0.0,16.99373872895395,4.794537184071822,51.750624037131274,65.71696295955394,11.64912463690315,0.0,0.0,0.0,28.431854133710765,35.99675628742514,31.97533594190322,217.62410487936612,,204.52630736233226,204.20901161862128,204.9583660582071,204.5320794767134,216.39463562122725,204.43729578879584,204.54084832836583,210.32747626329035,31.975335941903218,217.6241048793662,,203.9348787909037,203.51248300065953,204.43256953757006,203.94233064696823,218.0042978293434,203.81295980348364,203.95457594229987,210.9978644139061,5.210660185145519,159.0218833992951,,150.27463641425192,150.1015292444057,150.5143331140293,150.2777972361357,156.32859639998475,150.22624427854592,150.28255284900285,153.25690018112806,1.2790134376761289,8.704964195174645,,8.181052294493291,8.16836046474485,8.198334642328284,8.181283179068537,8.65578542484909,8.177491831551833,8.181633933134632,8.413099050531613,2.6358031347113657,108.81205243968304,,102.28886796688042,102.1347896622655,102.50204374739212,102.29168099182388,107.66076374124158,102.24579293723758,102.29591426792493,104.9402754147733,52.63529411764707,0.0,6.407049584239113,0.0,0.0,0.0,10.097897226881264,55.085943190094675,7.068148961745192,0.0,0.0,0.0,1.4083702589481346,0.0,0.22540422650541703,9.668143280989828,2.4747670609413035,32.58589273356402,461.0030766362437,71.52429440321215,163.96589879992598,258.97304467769834,296.94721312873537,296.94721312873537,296.94721312873537,1527.0,132.25842930896292,80.10162151686072,75.75187322636658,61.09,61.09,0.8333333333333334,7.752764808851328,5.807354922057604,4.384394552945576,4.916606918920874,,4.929188683995941,4.929692765977623,4.92833536573197,4.929179022234466,4.9078822714916015,4.9293240643925715,4.929166114635979,4.919441013781219,0.17537578211782304,0.19666427675683498,,0.19716754735983763,0.19718771063910492,0.1971334146292788,0.19716716088937866,0.19631529085966407,0.19717296257570285,0.19716664458543917,0.19677764055124874,2.3943422758611277,2.5089093738341472,,2.5114651392453133,2.5115673987125113,2.511292008901061,2.5114631791314763,2.507133271371475,2.5114926039147,2.5114605605178437,2.509485640838571,281.92000000000064,180.47704485238205,153.31477573701673,,151.85247329235412,151.79338162195907,151.93764204385758,151.85356181718254,153.86990494932837,151.83611761588628,151.8551580407079,152.8618275729478,7.219081794095282,6.132591029480669,,6.074098931694165,6.071735264878363,6.077505681754303,6.074142472687302,6.154796197973135,6.073444704635452,6.074206321628315,6.114473102917912,6.111894326226559,5.948783897562666,,5.939200210966915,5.938810996556874,5.9397609188335325,5.939207379246123,5.952398204209635,5.939092497493487,5.939217890788407,5.945825157478653,0.0,12.371799372673516,19.76604050787109,1.7060071019148404,1.790561388250331,2.4747670609413035,9.31710831744314,6.407049584239113,0.0,357.67367679136913,94.51720226272556,-142.60458617784778,-17.998766595181188,-2.5465104674615673,-7.130229308892388,198.2770921006367,299.15424907481764,8.78192475539578,5.342040162050315,8.309840252078265,1310.0,53.0,2.7865549452972025,2.242048702872094,0.23570226039551584,0.21991320281372367,1.0467387055955328,0.8569411147126091,0.19443432002973593,0.16546654663779073,0.0,0.0,0.0,0.0,0.06804138174397717,0.06804138174397717,0.39798445670457006,0.3566432455987827,1.0932424030896846,0.861822641793103,17.98276318419594,15.793874834096997,11.808532855829325,10.086378845324814,11.7548064934567,9.760105127394981,10.434213321286835,8.740029774449898,9.415790387519037,7.5637880292689355,7.877778543168733,5.951590383001587,5.711114958436793,4.317174763369466,4.356854174063795,3.188523891952342,6.907749892865131,5.674352855110869,12.794412648874934,10.033967365366765,21.751648032730138,16.03001739887773,88.0132418019355,40.60044450017005,25.54725606698805,21.343024740876547,21.343024740876547,21.343024740876547,146.0,185.0,60.11458299999997,32.537417,0.30357142857142855,184.03,9.26388888888889,5.277777777777776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,56.0,0.0,0.0,59.0,0.0,2.0,2.0,56.0,3.0,28.0,56.0,1.0,0.0,0.0,22.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,3.0,1.0,0.0,25.0,3.0,0.0,1.0,2.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4965075614664802,6.253828811575473,3.970291913552122,4.394449154672439,4.804021044733257,5.153291594497779,5.3612921657094255,5.62040086571715,5.924255797414532,6.1463292576688975 +57363,CC(C)(C)NC(=O)[C@H]1CC[C@H]2[C@@H]3CC[C@H]4NC(=O)C=C[C@]4(C)[C@H]3CC[C@]12C,0,17.3015873015873,5.735552380952378,3.0793650793650795,4.380952380952381,164.55060889155502,67.60287598412704,1.3310662313422854,5.808696825396824,3.287808641975309,7.339734539682537,186.97322920825647,20.393939393939394,6.041030303030303,3.893939393939394,4.378787878787879,145.54293016607892,75.1439135454546,1.761935320303031,6.1928484848484855,2.351430976430976,7.495155030303026,244.37702237973727,17.151515151515152,5.864462121212122,3.696969696969697,3.143939393939394,152.17969625963968,62.62284749242424,1.5248244409987055,5.987546969696967,2.1721380471380476,7.385502575757576,205.63445614383156,13.655339805825243,5.833699029126213,2.9271844660194173,2.058252427184466,155.51184737063582,46.77473072330094,1.362021948883854,5.939966019417474,2.11866235167206,7.391382116504851,175.31669719812868,10.392086330935252,5.609913669064748,2.3741007194244603,1.356115107913669,162.00959206610978,34.55662546043166,1.1150141929522017,5.690293165467626,1.978117505995204,7.246063884892086,136.29996133915995,9.213483146067416,5.665932584269663,2.198501872659176,1.1198501872659177,165.0403110571364,29.339028595505617,1.0370313309197043,5.728662921348316,2.096389929255097,7.326788389513111,124.68474693601976,9.43362831858407,5.5620088495575235,2.2079646017699117,1.1150442477876106,164.49225880846805,31.0085410840708,1.0576363485443099,5.631984513274336,1.9162979351032448,7.225427061946903,127.46413128433916,8.85,5.595225,1.995,1.095,162.102572582491,27.30492810500001,1.0593538448634747,5.672130000000002,1.9840277777777784,7.2409803399999975,123.6752506414823,6.963917525773196,5.412587628865979,1.7525773195876289,1.0154639175257731,172.24333325158346,22.096606067010303,0.8314777565388711,5.453154639175259,1.8208404925544097,7.1373038144329914,93.94528343350233,6.816326530612244,0.07870541698160742,0.009942144532213683,0.7573696145124716,2.848072562358276,1.3458682878306436,32.63292440715544,0.22628011412678953,0.07837278911564624,1.1668556311413456,0.044076299319727855,50.989239530095844,0.36260564831993397,-0.0003095535857438164,-0.006808821430402299,0.3054009482580912,1.1468769325912178,0.03570043287308697,1.7620486991456528,0.013358980609362399,0.0005502989074421059,-0.04376961222199313,-0.0007782906617193189,3.1877673799153716,1.0942073799216658,0.016638570512380157,0.002275433791240213,-0.04164089878375586,0.18403421974850534,0.06490390698219978,5.193562331541035,0.022796923280740344,0.016132117089260115,0.16860713140475045,0.00874274974232113,5.981564857626827,-1.2297184245866628,-0.010464886853698552,-0.0010141285284855825,-0.09155053607203394,-0.3335094555621602,-0.11627898220719046,-5.8908467861044445,-0.03245457421263565,-0.011384216146005153,-0.07051845369575373,-0.004429670871584921,-8.281319751698588,-0.053793699734090386,0.0013832206796920423,0.0004281330748117432,-0.03977226382159579,-0.15725378880569013,-0.10825703584223383,-0.3074766599817654,-0.017250030631789964,0.0016291236398635867,0.03211931588516035,0.00040880014355864323,-2.461833321042746,-0.7000433132054322,-0.012094002678058302,-0.0003744397057279737,-0.01668832326938265,-0.38918188998445824,0.01984615760314034,-3.277573598107241,-0.0012266400911114233,-0.012112418150780895,-0.1439774827950323,-0.006285646920940673,-2.1472713042761926,0.2467441253787651,-0.001779668983293149,0.0002262509478938309,-0.06843858487347744,-0.16792085565789724,0.06308870622175726,1.2186654449305119,0.013858590205437235,-0.0010840758132162171,-0.044500646046684834,-0.0015394284108923512,2.893841422521642,-1.3885487528344669,-0.006144543965734471,-0.0004037114242894518,0.004614512471655314,-0.021643990929705207,-0.3448538058872025,-6.722822948980848,-0.058293199871006667,-0.007639058956916122,-0.09537304736709495,-0.0022904386848072314,-12.76608816266605,1.592526357622087,0.00809916491988149,-6.244117758519955e-05,0.0765364565070014,0.4933609182504617,0.18466010807721056,7.647228445650957,0.04248694461093341,0.01055781144072726,0.040679392222715716,0.002183539331884022,11.420075760988297,,,0.4802469135802469,0.7592592592592593,0.14814814814814814,0.0,0.6111111111111112,-0.46296296296296297,1.5599580206274306,0.032219174061481684,0.044959914802222424,0.4219295770641367,0.08732007955926499,0.3772834709115902,1.9818875976915673,0.4646035504708552,2.0365374189063923,1.758053101201992,0.1474104156880343,0.1310739020163656,0.0,0.2784843177043999,5.90916949828573,1090.0,361.33979999999985,194.0,276.0,10366.688360167966,4258.981187000003,83.85717257456398,365.9478999999999,207.13194444444446,462.40327599999983,11779.313440120157,1346.0,398.708,257.0,289.0,9605.833390961208,4959.498294000004,116.28773114000005,408.72800000000007,155.19444444444443,494.68023199999976,16128.88347706266,2264.0,774.109,488.0,415.0,20087.71990627244,8266.215869,201.27682621182913,790.3561999999997,286.7222222222223,974.88634,27143.748210985766,2813.0,1201.7419999999997,603.0,424.0,32035.44055835098,9635.594528999995,280.57652147007394,1223.6329999999996,436.44444444444434,1522.6247159999994,36115.23962281451,2889.0,1559.556,660.0,377.0,45038.66659437852,9606.741878000003,309.9739456407121,1581.9015,549.9166666666667,2014.4057599999999,37891.38925228647,2460.0,1512.8039999999999,587.0,299.0,44065.76305225542,7833.520635,276.88736535556103,1529.5530000000003,559.736111111111,1956.2525000000007,33290.82743191728,2132.0,1257.0140000000004,499.0,252.0,37175.25049071378,7007.930285,239.02581477101404,1272.8284999999998,433.0833333333333,1632.9465160000002,28806.89367026065,1770.0,1119.045,399.0,219.0,32420.514516498202,5460.985621000002,211.87076897269495,1134.4260000000004,396.80555555555566,1448.1960679999995,24735.050128296458,1351.0,1050.042,340.0,197.0,33415.206650807195,4286.741576999999,161.306684768541,1057.9120000000003,353.2430555555555,1384.6369400000003,18225.384986099452,429.4285714285714,4.958441269841267,0.626355105529462,47.714285714285715,179.4285714285714,84.78970213333055,2055.874237650793,14.25564718998774,4.937485714285713,73.51190476190477,2.776806857142855,3212.322090396038,23.93197278911564,-0.020430536659091884,-0.44938221440655174,20.15646258503402,75.69387755102038,2.35622856962374,116.29521414361308,0.8816927202179183,0.03631972789117899,-2.8887944066515465,-0.05136718367347505,210.39264707441453,144.43537414965988,2.196291307634181,0.30035726044370814,-5.496598639455773,24.292517006802704,8.56731572165037,685.5502277634166,3.0091938730577255,2.129439455782335,22.25614134542706,1.1540429659863891,789.5665612067412,-253.32199546485253,-2.155766691861902,-0.20891047686803002,-18.85941043083899,-68.702947845805,-23.953470334681235,-1213.5144379375156,-6.685642287802944,-2.3451485260770615,-14.526801461325269,-0.9125121995464937,-1705.951868849909,-14.954648526077127,0.3845353489543878,0.1190209947976646,-11.05668934240363,-43.71655328798186,-30.095455964141003,-85.47851147493077,-4.79550851563761,0.4528963718820771,8.929169816074577,0.11364643990930282,-684.3896632498834,-186.91156462585042,-3.2290987150415664,-0.09997540142936898,-4.455782312925168,-103.91156462585035,5.2989240800384705,-875.1121506946333,-0.32751290432675,-3.234015646258499,-38.441987906273624,-1.6782677278911597,-573.3214382417434,55.76417233560092,-0.40220519022425166,0.05113271422400578,-15.467120181405901,-37.950113378684776,14.25804760611714,275.4183905542957,3.1320413864288152,-0.24500113378686506,-10.057146006550772,-0.34791082086167135,654.008161489891,-277.7097505668934,-1.2289087931468943,-0.08074228485789035,0.9229024943310629,-4.328798185941041,-68.9707611774405,-1344.5645897961697,-11.658639974201334,-1.5278117913832243,-19.07460947341899,-0.4580877369614463,-2553.21763253321,308.9501133786849,1.571237994457009,-0.012113588451528712,14.848072562358272,95.71201814058956,35.82406096697885,1483.5623184562858,8.242467254521081,2.0482154195010884,7.891802091206849,0.4236066303855002,2215.4946976317297,0.7263896183775133,0.6518736723101628,0.4181431954237697,0.3620814736711652,0.2756507647138812,0.22711029806442057,0.15854523690949704,0.1268741604823089,0.10058909169039393,0.07600867627792934,0.060271942287423635,0.0450151915691141,0.03759896162621897,0.027844137997339563,0.023004210467189038,0.016460583854123377,8.023283073848896,5.731338990746503,3.5453943603483244,2.2300426630763655,0.38600659090439815,-0.36380295906699056,4.030984135675329,0.9772099516687213,6.023165064301918,0.9892369790433022,14.541444855621032,10.992524591148552,16.01118501891754,11.74317458696022,1.9562322528235572,0.7512257102753447,3.4907014174775837,2.279657993287523,7.0093575818464195,1.0883985751531378,3.7035945682272318,2.4755334646660105,20.862448218257473,14.701778089117685,0.21414105558255858,0.45914065819341066,0.6721833823711969,0.8114210420758936,0.8361322158889076,0.8361322158889076,1.5364774779083863,678.3560579995735,0.0,2.0,5.0,0.0,2.0,7.0,0.0,5.0,2.0,4.669194048273564,3.172607983824242,1.8712312928455885,1.0206946432348927,0.8697458336424004,0.8697458336424004,284.89384060704276,1140.279001402204,39.28706767717409,18.099666688923868,34.17230086026349,,13.0,569.0,0.0,9.589074368143644,40.14301252518927,17.75371813848418,19.26246486877803,19.26246486877803,6.076020106833881,0.0,51.328283313299664,0.0,12.966666666666667,20.5,4.0,0.0,16.5,0.0,0.019753086419753083,-12.5,0.06446560846560845,0.006414326414326488,-0.05805128205128196,0.03354618986802893,0.10332496075353181,0.0,0.5084656084656086,0.7864197530864194,0.4440000000000002,0.5020512820512821,0.7528735632183905,42.118866556940624,0.8699176996600055,1.2139176996600054,11.392098580731691,2.3576421481001546,10.186653714612936,53.510965137672315,12.54429586271309,0.6106750392464682,0.2442159383033419,0.11568123393316196,0.2699228791773779,0.8260869565217391,0.25867146055145507,-0.49970680332464984,-0.03504281139120811,-0.007931854021026186,-0.023795562063078562,0.7413285394485445,1.432113592552566,0.03151595057813842,0.022731961786548665,0.034097942679822996,-4.542596227818932,1.021583096433396,0.7458215031617194,1.7531365911415275,1.1222101252041372,0.5968442385639839,1.3384387359925811,1.028538598443622,1.2322671294589767,0.7725217595018298,0.575578456631088,0.6737069872202273,1.1731599144141875,0.8629861489142927,0.5158344546786832,0.678517538187207,1.8654282344402104,1.0326975969889984,1.1693378371280394,0.8706412812900027,1.0796824292512472,0.5594998926842196,0.38536069193963923,0.44707503768569196,1.0291784450425012,1.2054854691910677,1.0151582227665672,1.1733255343122426,1.3814022440555782,1.1079130851524335,1.2509633686947303,1.208954216083151,1.2555120184612785,1.0423314414968927,0.7831254012551917,0.929851813986301,1.2519658651673258,0.9703961381792771,0.8085162246876172,0.8831966964257225,0.9675397406625598,0.96453283233286,1.0738373055304615,0.9742664025011301,1.0818773037082734,0.8272216266289788,0.7278419207953474,0.7794389097625202,1.051403163202651,1.102030645326077,1.3240467130467206,1.0302836756583076,0.8881674852542107,1.1712171091867651,0.9259348207162078,1.0967519639287762,0.9543595129492127,1.2991884363350057,1.437990922278326,1.3766997975997786,0.9939847148262076,0.9189717909314117,0.9120952634788299,0.7717273192619881,1.161411689894547,1.0152189842737165,0.8921080796413293,0.9187208888497681,0.9060977764983732,0.9162386092902836,0.9381097655643533,0.9144865975590671,0.9138815115725749,1.1622421823020628,0.917757164469889,0.8509351248816543,0.7731437125748503,0.8362101910828027,1.2359421174416023,1.1665656322346372,1.2545837195587035,0.9566863122931271,0.8957912280701753,0.863276865596085,1.245074583152384,0.6817018883195809,0.8183886302020855,0.8956346434230624,0.5927680721032162,0.7160187799592884,0.6718263125903016,0.6797299814403472,0.6499867254208687,0.792942082821186,0.8109460606313562,0.8443767890088204,0.6453761080502365,9.5,0.16916641159065401,5.77777777777778,3.6944444444444446,2.645555555555556,1.4547222222222218,1.0099773242630385,0.5000354308390023,0.3746456916099773,0.23469135802469138,5155.512598482776,6259.734269721239,2470.0986352463724,2109.2964760062378,15.352291186945878,0.48730665919927724,7.871017457580776,0.9504836915537137,1.0,0.8260869565217391,1.3080858752263524,2.804671939675675,4.106048630654328,4.956585280265024,5.107534089857516,5.107534089857516,0.31666666666666676,0.012083315113618145,0.11791383219954653,0.06970649895178196,0.05291111111111112,0.037300569800569804,0.02729668443954158,0.02000141723356009,0.017840271029046537,0.013805374001452432,0.6855257405468949,20.28,6.768013327780092,3.3361550456671862,163.4778184655574,1.0,4.259861409901927,133.13185544736797,,124.79354288607578,123.85329052810322,123.28146555848052,124.80227351262867,141.12224396095522,124.4040834501123,124.84924490751412,135.5856695691497,0.05319663702897235,-0.003933065824632575,-0.6848443420170508,0.40323897659227015,0.4026852924145917,0.026525948486854686,0.05399604023105226,0.059037360224580226,0.00702155574213506,-0.037510734879155884,-0.0176578041653095,0.06251843348308472,0.16052742998850786,0.2114031174787932,0.22886750276739065,-0.054980947196515965,0.06461711059640993,0.048224560730839444,0.159150993234374,0.10074647243622453,0.20583824145208993,0.14449699423383633,0.19835489542580567,0.11731033670538023,-0.18040779282858227,-0.13296272677322937,-0.10200299595320611,-0.12087960002325439,-0.11710005565518525,-0.08639699980940657,-0.18051850678797132,-0.14342654164674262,-0.14525725413710489,-0.06043460031707347,-0.10050006329824224,-0.16241308613380337,-0.007891890080749787,0.017574656646762773,0.04306244728434023,-0.05251367768061,-0.055214108967602996,-0.08043657527344628,-0.009422283340145412,-0.07623308260364588,0.02078685291472357,0.02752638375129855,0.009274829100175176,-0.048281428468641426,-0.1027009651109766,-0.15366163018848547,-0.037661865054842675,-0.02203458252035254,-0.1366474629642883,0.0147459879860381,-0.1004376303273808,-0.005420892135594871,-0.15454876989139574,-0.12338928566013131,-0.14260831825614081,-0.04211224415317646,0.03619898845377093,-0.022611772499839977,0.022756755060314403,-0.09036352074611842,-0.05895947240854515,0.04687583977734379,0.037344659330111836,0.061245285556431946,-0.013832298498609815,-0.03813723382656779,-0.03492644424899182,0.05675396317322175,-0.203709248170326,-0.07807015325476749,-0.04060607075077018,0.006092814371257465,-0.007599522292993629,-0.2562314670799324,-0.2060134992837703,-0.25761521332070636,-0.09747080642548002,-0.08173508771929822,-0.05196531288147567,-0.2503682792745125,0.23363410635773132,0.10290479652466837,-0.00628045361671046,0.10105562071732821,0.17322624597806818,0.1372051854902217,0.23434088683679677,0.1877626090780875,0.13471271802191756,0.034862403828763,0.04953998782984723,0.2239703095443838,8.304547237442032,18.94526081477412,6.496457355542058,11.580758219693774,25.69344943231345,31.799791126129985,33.48757694491065,33.63973334497989,33.63973334497989,54.986510310472596,47.467433732453785,3.9800812235769265,3.5389953544418713,0.0,7.519076578018798,6725.547712695569,6504.526764752851,733.0146238761736,288.0,49.0,67.0,95.0,124.0,155.0,190.0,235.0,272.0,372.277678392001,30.0,5.0689042022202315,5.968707559985366,6.932447891572509,7.8567067930958405,8.82246957226897,9.759212943379076,10.726104764547102,11.67046753039996,12.637994662600699,0.5396825396825394,0.9513650793650796,1.1345311474263637,0.49234365852465917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6293940499952478,0.9387488328664798,0.983629868553394,0.5666416795091743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,5.0,0.0,0.0,0.0,0.0,6.0,2.0,0.0,0.0,5.0,0.0,3.0,0.0,0.0,10.633577208012662,0.0,0.0,11.814359458703011,0.0,9.589074368143644,0.0,0.0,0.0,19.92349450621513,88.54087005134278,22.91366259708948,0.0,152.68377710388864,-294.9576347288629,-20.68441873000717,-4.681867217918458,-14.045601653755375,437.5776177109314,845.3213666733409,18.602648947166927,13.41779947100541,20.126699206508114,0.46153846153846156,0.8841267852792781,0.18182347416067635,9.765425957239183,0.1260074214541223,47.61897014242601,0.11587321472072143,7.0,0.03333333333333333,0.2188430008244319,0.4692221170116183,0.6869426701117397,0.8292376036762156,0.8544913665122225,0.8544913665122225,3.8145000000000024,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,106.84240000000007,9.589074368143644,0.0,10.633577208012662,34.501605123439134,84.72438181754049,0.0,12.152040213667762,0.0,0.0,4.110873864173311,0.0,5.54907608489522,2.3978952727983707,7.181591944611865,4.844187086458591,8.911529941736559,7.065613363597717,10.696050111394271,33.999999999999986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.936000000000014,0.0,24.881916918308324,0.0,0.0,0.0,3.9540121593607345,0.0,0.32595167318844753,71.47546228786092,10.633577208012662,0.0,0.0,23.395125540234318,9.589074368143644,34.501605123439134,73.14361573600918,12.152040213667762,0.0,0.0,0.0,31.017650487053526,39.65182514970061,33.43199797271276,266.26371089473594,,249.5288847139505,247.63674668018314,246.50391129898532,249.54650765376385,283.4300257608149,248.74595873122325,249.64089606786808,271.7034273651895,33.43199797271276,266.263710894736,,248.8013714864374,246.76381697989177,245.76616357428907,248.8210155100956,285.44544008695254,247.96835661870688,248.92097422836616,272.6079773509025,5.196840200575123,198.32835461614616,,188.019453980989,186.81934750227828,186.04595357683613,188.03047287290732,209.25014493389284,187.51952545433227,188.09093984076245,202.0424174457665,1.2382221471375094,9.861618922027256,,9.24181054496113,9.171731358525301,9.129774492555011,9.242463246435697,10.497408361511662,9.212813286341602,9.245959113624744,10.063089902414426,2.6210458460517225,133.13185544736797,,124.79354288607578,123.85329052810322,123.28146555848052,124.80227351262867,141.12224396095522,124.4040834501123,124.84924490751412,135.5856695691497,59.14117647058823,0.0,10.958035864504673,0.0,0.0,0.0,0.0,61.96868171886382,6.761070811812379,6.47531086120169,0.0,0.0,2.3613547641214936,0.0,0.032346947502261525,0.0,0.0,35.69842580907798,521.8659094720898,82.4094101392602,176.69433219956753,258.6810637312227,312.2648726566965,321.77464766102355,321.77464766102355,1532.0,136.44301592006974,68.3954853427302,77.7568176696659,58.2,58.2,0.8571428571428571,7.624130585661289,5.906890595608519,4.417739965558396,5.105814906876917,,5.1186039881539465,5.119967959913036,5.1209079440126635,5.118591751702473,5.096132412945725,5.119175067312749,5.118522582078626,5.103469150297504,0.16361999872438504,0.1891042558102562,,0.1895779254871832,0.18962844295974207,0.18966325718565422,0.18957747228527677,0.18874564492391574,0.18959907656713887,0.1895749104473565,0.1890173759369446,2.4788800183218234,2.6236318410504946,,2.6261335163199133,2.6263999542126344,2.6265835291550683,2.6261311257333144,2.6217336746446405,2.6262450794150536,2.6261176122330068,2.623172307040557,310.29000000000104,257.338812313723,170.511851228074,,168.8676803153022,168.7264631923657,168.68943919148302,168.8691301604276,171.38631432076104,168.81146379522852,168.87580083951184,170.49343536535952,9.531067122730482,6.315253749187925,,6.254358530196378,6.249128266383916,6.2477570070919635,6.254412228163985,6.347641271139298,6.252276436860315,6.25465929035229,6.314571680198501,6.543645325514863,6.132056575987295,,6.122367224548477,6.121530615656475,6.121311159485206,6.122375810199081,6.137171929549433,6.122034266344966,6.1224153114822855,6.131948566736668,0.0,24.881916918308324,6.47531086120169,0.032346947502261525,2.407681157420411,0.27962527988952934,10.715082971173114,10.958035864504673,0.0,388.60288156068805,90.12333923893642,-174.1021048863389,-12.209213850507826,-2.763525474386331,-8.290576423158994,258.28517496980055,498.9605689593763,10.980425514805198,7.920009031101211,11.880013546651817,1726.0,53.0,4.10454346280536,3.2327514315063843,0.5892556509887896,0.4640761750626956,1.0223410617757869,0.8165449257459192,0.2032631323962854,0.16308359003704337,0.0,0.0,0.0,0.0,0.08333333333333333,0.08333333333333333,0.3936345532609666,0.35231939361251985,0.9760469218395453,0.7720626992257404,19.61251969619286,17.600589152374397,12.544295862713092,10.862444210134957,13.50688747098018,11.128404605156607,10.622530872936302,8.500568752314697,9.555963710587424,7.2208242464032875,7.473720843640531,5.581883754570148,5.827839052063941,4.315841389587632,4.370799988765917,3.1275109322834416,7.205009641865065,5.609872099520646,13.043759806398954,9.480610229571013,20.55585252893163,14.475896027840376,94.58840639778454,50.479226520207185,34.23891484779064,26.601284083575518,25.610870303606685,25.610870303606685,158.0,195.0,66.21854799999997,38.99145200000002,0.2698412698412698,198.04,10.465277777777779,5.458333333333331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,63.0,0.0,0.0,66.0,0.0,3.0,3.0,63.0,3.0,30.0,63.0,0.0,0.0,0.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,2.0,2.0,1.0,27.0,4.0,0.0,2.0,2.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,3.5263605246161616,6.077642243349034,4.02535169073515,4.382026634673881,4.762173934797756,5.056245805348308,5.288267030694535,5.497168225293202,5.746203190540153,5.976350909297934 +10316203,CC(C)(C)NCc1ccc(Nc2ccnc3cc(Cl)ccc23)cc1O,0,26.425531914893618,5.957736170212764,3.276595744680851,6.161807197268191,161.51928443367828,106.57222289361707,1.5869167639718718,6.086680851063827,3.1610169457172788,7.545718659574464,225.6273333512673,24.93877551020408,6.2516938775510225,3.7755102040816326,6.471655328798185,146.53470203362951,94.75103012244904,1.8806141729795927,6.416806122448981,2.9956013269505335,7.688454163265302,268.8479698251286,22.204819277108435,6.087192771084338,3.63855421686747,5.068273092369478,152.1798854248107,84.05666463855418,1.6658662597408445,6.233325301204819,2.7534396846645857,7.581573397590357,233.17520157595234,18.28181818181818,6.127799999999998,2.9363636363636365,3.885858585858586,156.5164121851516,65.38241893636363,1.4886312909113177,6.258372727272727,2.7261410400299284,7.6615085090909085,199.24094941955158,13.609022556390977,5.763413533834584,2.406015037593985,2.81203007518797,164.05354846235485,48.37715715789475,1.1796293901605712,5.853317293233082,2.3562068752127234,7.396444601503759,149.58351171295078,14.79816513761468,5.77937614678899,2.6513761467889907,2.939857288481142,161.60330249885934,53.51779355045869,1.2977742638350183,5.879756880733945,2.3179484275304874,7.394681834862385,169.01798072048442,18.010752688172044,5.933892473118279,2.817204301075269,3.15531660692951,153.6541986614729,65.49004736559137,1.4707386104106233,6.074198924731182,2.793740873489978,7.50129040860215,195.3734271260739,13.323529411764707,5.968362745098039,2.303921568627451,2.471677559912854,160.50245048842564,44.8083479117647,1.2268138087493428,6.065715686274509,2.7761790930363914,7.596844960784314,156.10618060604355,13.116279069767442,5.691848837209302,2.36046511627907,2.414728682170543,165.97253209226054,47.169629453488376,1.0910758712990114,5.773995348837211,2.3293855871375264,7.355239162790699,136.5045653439314,10.425531914893616,0.08072231779085558,0.016402117810680603,0.6618379357175194,3.2806420423743488,1.4915489057492932,49.24283857673152,0.24962401508508372,0.087308103214124,0.6979641435126107,0.052686054323223194,52.61988056456546,0.04081632653061224,-0.006916499293243775,-0.008190677036243176,0.18618638039190322,1.1506472582158636,-0.02740357896831878,0.2779919165381005,0.01290750289854897,-0.006083917369573548,-0.12543021428846793,-0.0051103200635618466,2.4346416376204703,1.2891566265060241,0.0053259262491341525,0.0011544001152546024,-0.09787997621995442,0.1463994569563067,-0.15081349414838072,6.149488562719868,0.016674228574155465,0.007727221061702607,0.10283215964063809,0.0005669795142543973,5.5259165818792795,-2.3,-0.019492530556813013,-0.0026729575710755004,0.023848718054240957,-0.05515072255678839,-0.22539161533866,-10.947749371122267,-0.05499542318775084,-0.021572745380468383,-0.10114121491542849,-0.010523922408329544,-12.976521855878248,1.5789473684210527,0.018401566387675827,0.003611932725074785,0.09676068850260554,0.6988417340485832,0.12947501092564526,7.464981412070238,0.03057185452483401,0.01914225672828521,0.09485435684572872,0.010920592613266972,7.186816185941096,1.5504587155963303,-0.0022764071915973463,-0.004530681880715383,-0.02998160153832736,0.06612863356543298,0.2962514372957177,7.495647492563779,0.06184461008521548,0.0008489336783218096,-0.04757471082988711,-0.0021115876045036857,11.929268368666586,-0.22580645161290322,0.008171665279380052,0.004434883596425892,-0.09720741638555858,-0.5036777067277902,-0.16095656363228633,-1.2617041898635577,-0.04672744721326537,0.008226625680865657,0.09511076738377935,0.005971363201370736,-7.670453061776415,-2.284313725490196,-0.025155943155895217,-0.0036845885331630744,0.035909248262455694,-0.4771144847792077,-0.17292553253281842,-10.774526221913028,-0.03277833384608897,-0.027314235879956322,-0.2632539998602516,-0.014364351986969512,-10.326339024523916,2.9767441860465116,0.022078226494151806,0.0038706915628662747,0.011343657553138835,0.42957658793334547,-0.05969814379285522,14.135110219656369,0.047865566337914,0.02526102098181859,0.16891483718096206,0.009785912030067252,12.219896067015366,,,0.48990476190476195,1.32,0.7,0.06,0.62,0.08,0.8293450660838344,0.02394927429481399,0.03426927429481399,0.9262962804736794,0.2514143030089285,0.22120496519118135,1.7556413465575138,0.47261926820010985,2.0260291548800162,1.639936283956265,0.24389679277755807,0.07128421364134574,0.07091186450484722,0.38609287092375105,7.556279574553203,1242.0,280.0135999999999,154.0,289.60493827160496,7591.406368382879,5008.894476000002,74.58508790667797,286.07399999999984,148.5677964487121,354.6487769999998,10604.484667509563,1222.0,306.3330000000001,185.0,317.1111111111111,7180.200399647846,4642.800476000003,92.15009447600004,314.42350000000005,146.78446502057614,376.7342539999998,13173.5505214313,1843.0,505.237,302.0,420.66666666666663,12630.930490259287,6976.703164999997,138.26689955849008,517.366,228.5354938271606,629.2705919999996,19353.541730804045,2011.0,674.0579999999998,323.0,427.44444444444446,17216.805340366678,7192.066083,163.74944200024495,688.4209999999999,299.87551440329213,842.7659359999999,21916.504436150673,1810.0,766.5339999999998,320.0,374.0,21819.121945493196,6434.161902000002,156.89070889135598,778.4911999999999,313.37551440329224,983.7271319999999,19894.607057822453,1613.0,629.9519999999999,289.0,320.44444444444446,17614.75997237567,5833.439496999998,141.457394758017,640.8935,252.65637860082313,806.02032,18422.9598985328,1675.0,551.852,262.0,293.44444444444446,14289.840475516978,6090.574404999998,136.77869076818797,564.9005,259.81790123456796,697.620008,18169.72872272487,1359.0,608.773,235.0,252.1111111111111,16371.249949819416,4570.451486999999,125.13500849243296,618.703,283.17026748971193,774.878186,15922.830421816441,1128.0,489.49899999999997,203.0,207.66666666666669,14273.637759934407,4056.588133,93.83252493171499,496.5636000000001,200.32716049382728,632.5505680000001,11739.3926195781,490.0,3.793948936170212,0.7708995371019883,31.10638297872341,154.1901759915944,70.10279857021678,2314.4134131063815,11.732328708998935,4.103480851063828,32.804314745092704,2.4762445531914903,2473.1343865345766,2.0,-0.338908465368945,-0.4013431747759156,9.123132639203257,56.38171565257731,-1.3427753694476203,13.621603910366925,0.6324676420288996,-0.2981119511091039,-6.146080500134929,-0.2504056831145305,119.29744024340305,107.0,0.44205187867813467,0.095815209566132,-8.124038026256217,12.151154927373456,-12.5175200143156,510.40755070574903,1.3839609716549037,0.6413593481213163,8.535069250172961,0.04705929968311497,458.6510762959802,-253.0,-2.1441783612494314,-0.29402533281830506,2.6233589859665054,-6.066579481246723,-24.7930776872526,-1204.2524308234495,-6.049496550652592,-2.373001991851522,-11.125533640697133,-1.1576314649162498,-1427.4174041466074,210.0,2.447408329560885,0.4803870524349464,12.869171570846536,92.94595062846156,17.22017645311082,992.8425278053417,4.066056651802923,2.545920144861933,12.61562946048192,1.4524388175645073,955.8465527301657,169.0,-0.24812838388411074,-0.49384432499797676,-3.267994567677682,7.208021058632195,32.291406665233225,817.0255766894519,6.741062499288487,0.09253377093707725,-5.185643480457695,-0.23016304889090172,1300.290252184658,-21.0,0.7599648709823449,0.41244417446760795,-9.040289723856947,-46.84202672568449,-14.968960417802629,-117.33848965731086,-4.345652590833679,0.7650761883205061,8.84530136669148,0.5553367777274785,-713.3521347452066,-233.0,-2.565906201901312,-0.37582803038263357,3.662743322770481,-48.66567744747918,-17.63840431834748,-1099.001674635129,-3.343390052301075,-2.7860520597555447,-26.85190798574566,-1.4651639026708903,-1053.2865805014394,256.0,1.8987274784970554,0.3328794744064996,0.9755545495699398,36.94358656226771,-5.134040366185549,1215.6194788904477,4.116438705060604,2.172447804436399,14.526675997562737,0.8415884345857836,1050.9110617633214,0.7210693303426383,0.6141691817892463,0.4376104335186203,0.3176867476778083,0.3021697657923454,0.1930375420420171,0.18294605206472503,0.08942052690380474,0.11666932644860377,0.04582330100593514,0.07507520128770633,0.025476632272929577,0.05215871481187236,0.014236555270833551,0.031573641566587325,0.007079633124992056,17.00110309225045,5.673618323034806,3.512658969338742,2.1694467690928323,0.39442659767416094,-0.384257727254631,4.017050091674822,0.9890188442138993,5.033880688355091,0.7739934852788404,14.548266383199584,10.936854079516326,35.450517409208544,11.686985625063377,2.2078992886002076,0.7874744390699913,3.4543816528026166,2.219013117048957,6.0028077841674445,1.197094500178499,3.668068729493294,2.414579328747081,22.455865496576163,14.70815914921512,0.2617757521412686,0.6223168007077439,0.7518990114083812,0.8235816060576635,0.8235816060576635,0.8235816060576635,1.4754206132094223,903.0721212512493,0.0,1.0,4.0,0.0,12.0,0.0,2.0,1.0,0.0,4.027679681062367,1.9246833991824888,1.1688446163733497,0.7507279258541324,0.7507279258541324,0.7507279258541324,153.2956947018794,1139.838569185105,51.99534173464994,24.251884450746918,52.0805388109157,,14.0,573.0,0.0,5.106527394840706,11.288437085667251,11.567389719653901,27.84114897314518,0.0,12.263210640074686,36.39820241076966,36.38876732803174,11.600939890232516,12.247619047619049,33.0,17.5,1.5,15.5,0.0,0.01009523809523806,2.0,0.12835452430897426,0.0617835135449365,-0.06657101076403776,0.05422448979591821,0.10624952741020766,0.0,0.5691995947315098,0.8060952380952378,0.44084507042253557,0.5074160811865733,0.7518707482993195,20.73362665209586,0.5987318573703497,0.8567318573703497,23.157407011841986,6.2853575752232125,5.530124129779534,43.89103366393785,11.815481705002746,0.6077504725897923,0.20800933125972007,0.04082426127527216,0.2857698289269051,0.25,0.37417435938203103,-0.7001426919673288,-0.04502555137958205,-0.014896653020581466,-0.05001019228338063,0.625825640617969,1.1710242504272592,0.0403303641356674,0.02491540958355871,0.03548558334628059,-6.722739014930505,0.6964181591003749,0.9863090372076363,1.4821171755929494,0.9657444373098074,0.6282729697614633,1.1945353961380674,0.7001282634292396,0.8993253803597775,0.9015009381061568,1.0778079883951024,0.9218852654939718,0.9012601378479659,0.6469633636587165,0.7926547291120787,0.7721911314761444,1.6569643828391538,1.0313629193521356,1.2133149458906225,0.6506663464005107,0.882487353468992,0.7349840003036543,0.5539036426361343,0.7544709296634675,0.854826835091735,1.111168831168831,1.3302417021995112,1.3113800417742387,0.9410521079467726,1.004203222476244,1.2573280050787963,1.1133467444528504,1.1509718334159313,1.27529999062927,1.0503587178722702,1.2255188592292985,1.175120857621889,0.7114930182599355,0.777481223331372,0.7700187820299551,0.6615667074663402,0.7411383081708962,0.8488414383275814,0.7153228030675105,0.823930154301943,0.7535813810647147,0.8853467137701243,0.7106494914093988,0.8446048153428837,0.662741059726643,0.9845707130009522,1.2950639795719165,1.051437643544723,0.999443885426332,0.760622501768722,0.6645277453741303,0.7032470201281995,0.9107555330590534,1.0795862967729468,0.9035800414298883,0.7579475438275117,0.8812376563528637,0.7794273398594448,0.7618948063334929,1.1607754879896441,1.1049960152908203,1.1066603439239326,0.8880883265448043,1.1764582709740106,0.7785221019871927,0.94000543494358,0.7743490438693584,1.133887123675315,1.1311324529811924,1.744981210665962,1.7001679222535946,0.7104020814892303,1.163487417719992,1.041232281262301,1.1300591569509553,1.0884995291142412,1.6214873173193334,2.4954866554742052,1.7492645894695433,1.1481661067941844,0.6091124822021832,0.7823872327334752,1.0249948198845027,0.9457417363916901,0.9138639478507385,0.9213609294429785,0.6110315817474501,0.7630903314887063,0.7340135300827378,0.954838835847121,0.8028392804687174,0.7593071237354287,7.0,0.15273951637588,2.8888888888888897,1.5625,1.56,0.9444444444444446,0.44489795918367353,0.4565972222222222,0.22549760644998737,0.16125000000000003,4652.582483353604,5255.564123039007,2383.9114245133023,2149.8338554832426,16.369361877258463,0.48792149785185124,8.382398311227522,0.9528255839779255,1.0,0.25,1.52690917061527,3.629905452495149,4.385744235304288,4.803860925823505,4.803860925823505,4.803860925823505,0.2592592592592593,0.010182634425058667,0.0740740740740741,0.04222972972972972,0.04875,0.03046594982078853,0.014351547070441081,0.02075441919191919,0.011868295076315124,0.01075,0.5226859086475857,19.753086419753085,8.347140039447732,5.489603024574669,152.41174475651948,0.0,4.146591184584093,137.3660643804926,,104.30517121089161,103.58875103349233,102.03743676145513,104.29101387408822,136.2180673825298,104.52109526882597,105.40961408444487,126.67352031069379,0.0039150354019158685,-0.08568261519898147,-0.4993670409384351,0.2813171780340042,0.3507384357554255,-0.018372564830217448,0.005645326804321526,0.05170777697069523,-0.06968330711128473,-0.17970867909807128,-0.09699568755349547,0.04626847517514079,0.12365379886894516,0.06597836131183893,0.07038116227301387,-0.14789115422016366,0.04462524562733178,-0.10111200079800145,0.12488087081205865,0.06679737351581376,0.08850519914230091,0.14733157941770417,0.010761472301114823,0.10501575683165773,-0.22061224489795916,-0.24147634867616719,-0.16296417340295805,0.036034075363760784,-0.016810954028033284,-0.1511124539529815,-0.22232165503747695,-0.22031303025474447,-0.24708755071177083,-0.14490889805086538,-0.19974778038542093,-0.24660872880461676,0.1514500537056928,0.22796132335239266,0.22021136335960192,0.14619997325735679,0.21301980680062244,0.08680574296060531,0.15159527005004195,0.12247160800780192,0.219249485713126,0.13590147535138372,0.20727672158310295,0.13657986504022476,0.1487174686388317,-0.02820046864233157,-0.2762254199738237,-0.045300518329798305,0.02015722310184524,0.19861999573315572,0.15221802213704352,0.24775104296009298,0.009723423680844277,-0.06816211301408714,-0.04007868176176804,0.22670648889119346,-0.02165898617511521,0.10123179689354458,0.27038481540097337,-0.14687495403262574,-0.15353022372512665,-0.10791236077601381,-0.025622084882404497,-0.1871913132930677,0.09422522512818514,0.13626884456430663,0.11333859174074934,-0.14577100858989298,-0.21910764305722288,-0.3116355407567961,-0.224641023536837,0.05425686006276649,-0.14543326538420462,-0.1159368840446755,-0.2188039222215809,-0.13131081893269186,-0.3128488064042336,-0.3771741031500355,-0.2726404960759783,-0.19624406049066054,0.28552444233507357,0.27350833200001207,0.23598730405080912,0.017139630324817842,0.1309428405734999,-0.04002426173405646,0.28704905379552115,0.19175064675407588,0.2893319182512268,0.24201076624204856,0.18574008161688763,0.23222964278722286,8.877285028983042,19.75305625062485,6.3722278142872355,16.44677336778984,33.93559295106162,39.76622915587363,40.187690779917006,40.187690779917006,40.187690779917006,50.65072887200041,40.998407098906625,6.097419819438952,1.7821053410336434,1.7727966126211805,9.652321773093776,9096.846893461754,8657.740338067482,704.7497640673337,103.0,39.0,46.0,59.0,77.0,81.0,82.0,99.0,104.0,355.14514000400055,27.0,4.890349128221754,5.713732805509369,6.5998704992128365,7.443663683115591,8.329175442077402,9.181632207839439,10.06658381534495,10.923976124422659,11.80870218716748,0.6666666666666667,0.9697021276595748,1.1234342722813968,0.6303902273979347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6924633201681746,0.9605340008343759,0.996846476887078,0.6391415220582821,8.0,1.0,0.0,0.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,15.740104602853368,5.749511833283905,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,17.667306958694127,51.10304694137992,51.69397386764084,5.516700717616262,227.93175571922237,-426.49836642376755,-27.42772913441658,-9.074433328165268,-30.46416903026911,381.22745042110176,713.3402027613374,24.567612600233357,15.17745112258165,21.61636978064659,0.5,0.8883641330244684,0.27124412232998946,71.3996950484108,0.15664607001611422,147.0216069944191,0.11163586697553148,7.0,0.14814814814814814,0.27489148367013727,0.6534966942510638,0.7895713530587729,0.8648454555502534,0.8648454555502534,0.8648454555502534,5.225500000000004,,1.3256302521008405,0.959325316894866,0.9805438548466842,1.3379508818231125,-2.402894764756166,0.93531153649505,0.879067952217064,-1.2736797330507026,104.73520000000003,5.106527394840706,0.0,10.30076712495354,0.0,32.85489325736779,5.316788604006331,59.24749785628266,0.0,5.749511833283905,4.007333185232471,0.0,5.351858133476067,0.0,6.874198495453294,0.0,8.478660241699453,0.0,10.126030923778305,31.33333333333334,14.884606103566991,4.3411979796123426,0.0,0.0,0.0,1.8033193117441857,3.5292471082788763,0.0,45.576000000000015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.80141079722565,10.633577208012662,11.374772549367124,5.749511833283905,15.62943116817126,6.544756405912575,0.0,26.334663090768867,48.661413050844345,5.022633313741326,10.902924932081056,0.0,29.62834068770293,32.545776047904205,30.855751015300086,274.73212876098535,,208.50429200161517,207.1029433215852,204.02469250084755,208.4749916776306,273.3972926709621,208.96736561473233,210.74890273271237,253.8565125146077,30.85575101530009,274.73212876098523,,207.33832930799582,206.29711005539343,203.20103566277638,207.2975042521063,274.83902952981583,208.17075769081293,209.99239705632564,254.62072035443842,4.823152825409659,210.881947068324,,161.0039510378366,159.16811586295051,156.57524513816247,160.99890080161467,211.25127735043344,160.74944131765307,162.1945375929814,196.09927557502346,1.2342300406120035,10.989285150439414,,8.340171680064607,8.284117732863407,8.160987700033902,8.338999667105224,10.935891706838483,8.358694624589294,8.429956109308495,10.154260500584307,2.411576412704829,137.3660643804926,,104.30517121089161,103.58875103349233,102.03743676145513,104.29101387408822,136.2180673825298,104.52109526882597,105.40961408444487,126.67352031069379,45.14509803921567,0.0,6.293980954041519,6.031688538042646,0.0,0.0,10.306078181578723,46.85178441369266,0.6173611466829361,6.71971368113457,0.0,0.0,0.0,0.0,0.000584773094989055,0.0,0.0,30.03965153673926,541.1551900367225,71.76473101891769,170.605556267272,206.12997905930152,225.78146351370475,225.78146351370475,225.78146351370475,742.0,126.95768589291148,68.00401610360159,59.838080979639585,57.18000000000001,57.18000000000001,1.0,8.849784861494104,5.754887502163468,4.243215059668426,4.922243969118231,,4.914205957018012,4.909939056358423,4.910036037309259,4.914291052357438,4.913537164544741,4.910855948967936,4.911162426347549,4.9130363715298175,0.16972860238673704,0.19688975876472925,,0.19656823828072048,0.19639756225433694,0.19640144149237035,0.1965716420942975,0.19654148658178966,0.19643423795871745,0.19644649705390196,0.1965214548611927,2.361611982567211,2.51005524968455,,2.5084209173899246,2.5075522614565924,2.5075720132278367,2.5084382334331297,2.5082848144279257,2.507738986179322,2.507801392370799,2.5081828881535193,273.7300000000002,250.55160470717726,145.17731020196953,,145.76302011352377,146.2815417361172,146.38311194441286,145.75083942410714,146.09682956579607,146.1881810789605,146.14920801102002,146.0397322993635,10.022064188287091,5.807092408078781,,5.83052080454095,5.851261669444687,5.855324477776515,5.8300335769642855,5.843873182631842,5.84752724315842,5.845968320440801,5.84158929197454,6.439955637997663,5.894246556227418,,5.898272884940113,5.901823864723236,5.90251797117645,5.898189316430245,5.9005603499558985,5.901185435148858,5.900918804402154,5.900169455596117,0.0,4.3411979796123426,18.660385604977872,3.4317462263636758,0.266811224489796,13.14604176376618,1.7385643398008117,6.911342100724455,0.0,320.6066917742845,138.8467273680918,-259.80540631084733,-16.707853705753045,-5.527774602358454,-18.55752902220338,232.22821105741815,434.53775162207415,14.965587388321177,9.24548407706541,13.16781065521437,1656.0,37.0,2.9252444754900355,1.8978146546249,0.3535533905932738,0.25,0.2539338936857123,0.06581954698056808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2041241452319315,0.06674642224496707,0.46404160814868656,0.1206939411291704,18.026733258565958,15.354229544731156,11.815481705002748,8.577542187300825,11.78462086590147,7.5284641396386665,8.41551839497735,4.113344237575018,6.883490260467623,2.703574759350173,5.780790499153387,1.9617006850155774,4.224855899761661,1.1531609769375177,2.589038608460161,0.5805299162493486,3.8278967182482173,1.6830346170042432,5.528367377705259,1.8871957654027398,8.08171637000781,2.241007485804041,82.4977254997954,44.558909334500825,29.88612591986818,27.849267609450347,27.849267609450347,27.849267609450347,132.0,151.0,54.35144599999998,24.860553999999997,0.3617021276595745,129.05,8.840277777777779,5.291666666666666,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,17.0,47.0,0.0,1.0,49.0,17.0,0.0,8.0,41.0,17.0,27.0,32.0,0.0,0.0,0.0,20.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,4.0,3.0,1.0,25.0,5.0,0.0,3.0,1.0,0.0,3.0,4.0,0.0,0.0,1.0,1.0,3.0,3.597312260588446,7.579099101649821,4.248495242049359,4.7978545298175925,5.39872815247995,6.003115164327958,6.267081945682895,6.597657167246024,7.063329052873383,7.448811505979875 +6252,Nc1ccn([C@@H]2O[C@H](CO)[C@@H](O)[C@@H]2O)c(=O)n1,0,26.8,6.9564900000000005,3.3666666666666667,9.866666666666667,170.20184328559122,106.00046909999998,1.2575362587679004,6.94451,7.805555555555555,8.418938800000003,200.92123992776317,27.161290322580644,6.988967741935484,4.193548387096774,8.258064516129032,156.0835979682016,103.2733198064516,1.5410013883225804,7.068354838709678,4.053763440860216,8.386548387096774,245.8518349156463,24.67924528301887,6.998543396226416,3.830188679245283,7.566037735849057,160.71875661023202,92.5694353584906,1.3721594640697743,7.045216981132078,4.136792452830188,8.423695999999998,214.55162080871636,20.602739726027398,6.896493150684931,2.9452054794520546,6.191780821917808,166.34864266461014,75.54745089041096,1.1252846744176712,6.91053424657534,4.6879756468797575,8.4053338630137,172.43817467157564,17.675675675675677,6.7912689189189175,2.5675675675675675,4.945945945945946,169.59963732852682,63.10154927027029,1.0225513456896889,6.792008108108108,4.704954954954955,8.344111567567568,152.1111211876953,16.71875,6.725765624999999,2.390625,4.65625,171.13097502119822,59.39239259375,0.9871031037482191,6.7222953125,4.9409722222222205,8.301495124999999,145.87712113342963,16.285714285714285,6.639183673469386,2.2448979591836733,4.163265306122449,169.414541274159,57.31607283673469,1.005314738686551,6.647883673469386,4.903628117913833,8.203039918367345,145.12765010319413,14.128205128205128,6.610666666666666,1.8974358974358974,3.358974358974359,173.78365394233055,48.22871671794872,0.884024427067718,6.597366666666667,5.128205128205129,8.205561435897435,123.33640781917155,10.4,6.321039999999999,1.76,1.64,175.22862709633978,32.33749356,0.8283013221237598,6.317023999999999,3.9333333333333327,7.949095519999999,105.340497432147,8.595555555555558,0.22938322222222204,0.0440679524592334,0.6988888888888886,4.728888888888888,1.3621307948466983,40.27215581,0.18918600650181,0.2070245555555554,3.1591358024691347,0.15101363999999995,42.126712767659036,-0.4665232974910396,-0.06047881362007166,-0.027273927013414998,0.22261648745519708,0.2345519713261653,-0.3184688322758793,-1.9062659970967777,0.004443328221486926,-0.049995845878136276,-0.7796256471525288,-0.04195394967741932,2.9456723112195404,-0.4270020964360586,-0.011485109014675041,0.0023727116849890395,-0.03536687631027252,-0.08360587002096431,0.04487621204142935,-1.9855609345283025,-0.012091450408836314,-0.011062039832285172,-0.2999464244118332,-0.011197670188679235,-2.7395088269924734,-0.0019482496194824699,0.009337006088280074,0.0012660695654232524,-0.11487062404870621,0.05832572298325733,-0.2362921561340606,-0.10866216753424686,-0.018353528387504488,0.008680284627092803,0.08716049382716047,0.008543516164383567,-2.991540240269685,-0.5595195195195197,-0.007595969969969963,0.0009029171062827573,-0.06195195195195195,-0.3613213213213214,0.05883424443091084,-2.644797284324324,-0.007572374459268127,-0.007960411411411418,-0.07675342008675341,-0.004899872432432428,-2.664212597381427,-0.21013888888888899,-0.012715461805555547,-0.0014410615169509894,-0.04576388888888889,-0.335138888888889,0.05915033301409756,-0.9092994412500003,0.013013885960027465,-0.011323670138888887,-0.08454089506172839,-0.007620139999999997,1.791725186728546,-0.6880725623582769,-0.005913834467120182,-0.0013719202616257254,-0.053990929705215414,-0.5520181405895691,-0.09298503560756385,-3.3161571283673466,-0.02514790786685899,-0.0061519705215419265,-0.09129755605946084,-0.003199109387755102,-5.419530173214214,-0.7066666666666667,-0.0003236495726495787,0.003672184243291704,-0.08350427350427353,-0.6861538461538461,-0.1040784883628997,-3.401334479230768,-0.016460001576858778,-0.002215666666666629,0.194377967711301,0.0014259189743589726,-5.078307518584538,-1.7742222222222224,-0.02600815555555556,-0.004981319499267656,-0.08022222222222224,-0.8382222222222224,-0.14990593853001793,-8.421957189999995,-0.03753114205419807,-0.025574022222222107,-0.34424691358024695,-0.014497303999999999,-9.947619185335677,,,0.43333333333333324,1.088235294117647,0.38235294117647056,0.058823529411764705,0.7058823529411765,-0.3235294117647059,0.7424765051648788,0.02195888261849041,0.03207652967731394,0.8251683343965981,0.22573123321274616,0.2472636231318867,1.5676448395614768,0.4729948563446329,1.9892896920165328,1.1040582653471374,0.35113449051480833,0.5340969361545871,0.0,0.8852314266693954,8.102850683866667,804.0,208.6947,101.0,296.0,5106.055298567737,3180.0140729999994,37.726087763037015,208.33530000000002,234.16666666666666,252.56816400000008,6027.637197832895,842.0,216.65800000000002,130.0,256.0,4838.591537014249,3201.4729139999995,47.771043037999995,219.11900000000003,125.66666666666669,259.983,7621.406882385035,1308.0,370.92280000000005,203.0,401.0,8518.094100342298,4906.180074000002,72.72445159569804,373.3965000000001,219.24999999999997,446.4558879999999,11371.235902861967,1504.0,503.44399999999996,215.0,452.0,12143.450914516541,5514.963915,82.14578123249,504.4689999999998,342.2222222222223,613.5893720000001,12587.986751025022,1308.0,502.5538999999999,190.0,366.0,12550.373162310985,4669.514646000001,75.66879958103698,502.6086,348.1666666666667,617.464256,11256.222967889451,1070.0,430.44899999999996,153.0,298.0,10952.382401356686,3801.113126,63.17459863988602,430.2269,316.2222222222221,531.2956879999999,9336.135752539496,798.0,325.31999999999994,110.0,204.0,8301.312522433791,2808.487569,49.260422195641,325.7462999999999,240.2777777777778,401.9489559999999,7111.2548550565125,551.0,257.816,74.0,131.0,6777.562503750891,1880.9199520000002,34.476952655641,257.2973,200.00000000000003,320.016896,4810.119904947691,260.0,158.02599999999998,44.0,41.0,4380.715677408494,808.437339,20.707533053093997,157.92559999999997,98.33333333333331,198.727388,2633.512435803675,257.86666666666673,6.881496666666662,1.322038573777002,20.966666666666658,141.86666666666665,40.86392384540095,1208.1646743000001,5.6755801950543,6.210736666666662,94.77407407407404,4.5304091999999985,1263.8013830297712,-14.462222222222227,-1.8748432222222216,-0.8454917374158649,6.901111111111109,7.271111111111124,-9.872533800552258,-59.09424591000011,0.1377431748660947,-1.5498712222222246,-24.168395061728393,-1.300572439999999,91.31584164780575,-22.631111111111103,-0.6087107777777772,0.1257537193044191,-1.8744444444444437,-4.431111111111108,2.3784392381957558,-105.23472953000004,-0.6408468716683247,-0.5862881111111141,-15.897160493827162,-0.5934765199999995,-145.19396783060108,-0.1422222222222203,0.6816014444444455,0.09242307827589742,-8.385555555555554,4.257777777777785,-17.249327397786423,-7.9323382300000205,-1.3398075722878275,0.6336607777777746,6.362716049382715,0.6236766800000003,-218.382437539687,-41.40444444444446,-0.5621017777777773,0.06681586586492404,-4.584444444444444,-26.737777777777783,4.3537340878874025,-195.71499903999998,-0.5603557099858414,-0.5890704444444449,-5.679753086419753,-0.3625905599999997,-197.1517322062256,-13.448888888888895,-0.813789555555555,-0.09222793708486332,-2.928888888888889,-21.448888888888895,3.785621312902244,-58.19516424000002,0.8328887014417578,-0.7247148888888888,-5.410617283950617,-0.4876889599999998,114.67041195062694,-33.71555555555557,-0.2897778888888889,-0.06722409281966055,-2.645555555555555,-27.048888888888886,-4.556266744770629,-162.49169928999999,-1.2322474854760905,-0.3014465555555544,-4.473580246913581,-0.15675635999999998,-265.55697848749645,-27.56,-0.012622333333333569,0.14321518548837645,-3.2566666666666677,-26.759999999999998,-4.059061046153088,-132.65204468999994,-0.6419400614974924,-0.08641099999999852,7.5807407407407394,0.05561083999999993,-198.05399322479695,-44.35555555555556,-0.650203888888889,-0.1245329874816914,-2.005555555555556,-20.95555555555556,-3.747648463250448,-210.54892974999987,-0.9382785513549518,-0.6393505555555526,-8.606172839506174,-0.3624326,-248.69047963339193,0.739822693544713,0.5177131308200851,0.4467173643254866,0.27857245984806694,0.28251850266848116,0.1450426125075923,0.18272433040921554,0.07550954697109094,0.11423002268245983,0.03930394476443872,0.07167593854939992,0.020533582752935514,0.04824583412305249,0.010610037015479636,0.030027452027886314,0.005569103391417547,8.022919872860522,5.774077043408362,3.547528967819883,2.2632260410703045,0.49014341120496496,-0.40684412130325404,3.22147783829854,0.9777022589948464,6.022479981985416,1.9860231571554736,14.558818156072387,11.044326202417396,16.01107121806821,11.792245596646877,1.9116573417288103,0.7461417299795333,3.4938111035480195,2.309289182460762,7.008283376027114,1.1639814694025588,3.7059121383664477,2.5029028012114503,20.795753261370226,14.702251546174594,0.3551681865422585,0.7432144724983066,0.8628855349802198,0.925194098214133,0.9382982070296545,0.9382982070296545,2.0253922622179727,462.1897021796713,0.0,2.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,3.09998564418051,1.1258145836939115,0.516992500144231,0.20000000000000018,0.13333333333333375,0.13333333333333375,98.46618829570752,1082.0287331504949,78.4788805699456,36.06762443834982,77.77643801570348,,9.0,240.0,36.83642569669617,15.007591973753232,5.817862777835028,0.0,4.567099647791355,12.263210640074686,0.0,0.0,4.9839785209472085,15.57705782580294,7.366666666666665,18.5,6.5,1.0,12.0,0.0,0.06666666666666675,-5.5,0.25566893424036274,0.024652777777777746,-0.231016156462585,0.15819964349376103,0.2789606299212599,0.0,0.6944444444444448,0.996078431372549,0.438775510204082,0.669791666666667,0.837878787878788,12.62210058780294,0.373301004514337,0.5453010045143369,14.027861684742167,3.8374309646166846,4.203481593242074,26.649962272545107,8.040912557858759,0.43503937007874005,0.23529411764705885,0.0,0.4615384615384616,0.5555555555555556,0.3821130957221567,-0.9900090123228192,-0.11349260775681323,-0.03300030041076064,-0.11000100136920211,0.6178869042778433,1.6008705555490914,0.07442229870422593,0.05336235185163636,0.07623193121662336,1.3130546669333616,0.8144369016245787,1.0367746488756928,1.6140560115304945,0.9815887994256121,0.6857870482658259,1.6385177033372351,0.8130148780753568,1.2322003356502842,0.9939052647486926,1.0229855570500939,1.078814477124509,0.9651825205641025,0.8805925738034378,0.9159165106661887,0.859036098953827,1.330953595104539,0.8928793091218613,1.2355739695327363,0.8830343592723914,1.2141415707762595,0.9028772784658278,0.8464464020138374,0.9618915110236392,1.0620353145586146,0.9443661373262878,0.9554283073588307,0.957702726966639,1.2126227758782155,0.9646816098465342,1.195534238892226,0.9459612529481263,1.1048435077888634,0.9471103116151058,0.8509642949105383,0.9584138941108613,1.0319693113810209,1.0562236227954944,1.0682397841041629,0.9848528113215413,1.028015296695742,1.1008147480186954,0.8776002553658311,1.0548111139324032,0.9817269891117313,1.0717192779948626,1.0413337445460626,1.0788006534609293,1.010541245188015,1.0393876842037226,1.1004954060986738,0.980661106770335,0.9941375198728144,1.117907072368421,0.8259900653964365,1.0353024093960632,0.8426134920990215,1.1014045452069297,1.1932182468541177,1.1008378669193943,0.9032812670346919,1.0580535213051092,0.9883630954708172,0.9609923716264669,0.8891664774017719,1.0909208608255332,0.9942105523943663,1.0604081554084233,1.0822570768692363,0.9953017612280796,1.1189308464016352,0.9804004333332943,1.097414342327688,1.1159613395911223,1.0193608374624232,0.832548836169018,0.868900574782928,1.1793305378831695,0.8904782630761565,1.116600506667817,0.9356850309976897,1.0366818040867445,1.0230207090185992,0.991276121710697,1.0539248646206143,1.2280765253360908,1.012874427995073,1.1065774975450673,0.9682034976152627,1.0711466165413535,0.9134130563345676,1.232428321729155,1.0262466484456032,1.040794409251506,1.0636582125131897,0.9457739579020807,1.1917195700553356,4.0,0.0,2.666666666666668,2.076388888888889,1.1883333333333337,0.6705555555555556,0.2685260770975057,0.1744968820861678,0.045099521289997474,0.0,3409.845583821131,3795.1135499504694,1708.2871137542743,1553.8135071724812,10.58241996146245,0.45345433448411154,5.783775760606118,0.829673279095705,0.0,0.5555555555555556,1.8069049514280089,3.781076011914607,4.389898095464288,4.7068905956085185,4.773557262275185,4.773557262275185,0.2222222222222222,0.0,0.1025641025641026,0.07690329218106993,0.054015151515151516,0.037253086419753084,0.020655852084423516,0.021812110260770973,0.01503317376333249,0.0,0.5504589910108264,13.432098765432098,5.325443786982248,2.56,95.89720926959052,1.0,3.7598160930544555,60.47168961172756,,45.99804443169167,44.51964222821583,45.40865633931695,46.01711225612818,75.46563769862469,45.46601918164535,46.077560155897274,65.02017803041814,-0.05427494412382828,-0.2636584011426997,-0.6189061549579753,0.3185291553412996,0.04959980596652932,-0.23380194727314826,-0.04733459033309142,0.02348655856554811,-0.24149717768489448,-0.24678446762028552,-0.2778156309418099,0.06992409608282925,-0.049677079471620034,-0.05006952515275284,0.05384211320423837,-0.05060443351231364,-0.017679812739395652,0.032945596862803454,-0.049303567057497,-0.06391302735554404,-0.05343346736139547,-0.0949457203382645,-0.07415005815818518,-0.06503020641799549,-0.0002266577892365851,0.040704834459228935,0.028729938532870897,-0.16436178321754472,0.012333916984241449,-0.1734724426083137,-0.002698195945777129,-0.0970131392214196,0.04192876832315398,0.027589980069561145,0.05657446681229305,-0.07101290472790725,-0.06509404958215714,-0.033114758334901816,0.02048920033482455,-0.08864349245907278,-0.07640723430197116,0.04319280105368469,-0.06567309922027052,-0.040026081205935704,-0.03845153242836079,-0.024295701383512558,-0.032446555373623405,-0.06324283150397533,-0.02444738883143744,-0.055433268755973146,-0.032700895697028214,-0.06548092209856918,-0.07087053571428574,0.04342485555563309,-0.0225788618205587,0.06878884015083302,-0.05469723197087198,-0.02676076634491384,-0.05045994520759846,0.04253180628192916,-0.08004980689276744,-0.025781460430401366,-0.03113192660573164,-0.0772525226306739,-0.11673315942918522,-0.06826439572422184,-0.08234367050059709,-0.13292689206703243,-0.029716139252336345,-0.02889953511593392,-0.0211842412894299,-0.12864830453552084,-0.08221302998965871,-0.0014109557338767926,0.0833300400486904,-0.11948147242264899,-0.1450983227299017,-0.07640858628015473,-0.08445871373953565,-0.08700432913203493,-0.010702434118121077,0.06152884202045952,0.009442319080309389,-0.12054839281177401,-0.20641158221302996,-0.11338298984377924,-0.11303723502642427,-0.11478537360890309,-0.17725563909774442,-0.11005252880057614,-0.20912605795761083,-0.19838223105491157,-0.12353134705974178,-0.10896869748720159,-0.09599996397676398,-0.23613566147920595,0.9654893846056297,6.195195914938838,5.9316613030206975,18.331613059418554,34.5268615010389,38.26110568563156,39.58003412577694,39.64723412577695,39.64723412577695,33.81792476428106,18.768990510901336,5.969286338751742,9.07964791462798,0.0,15.048934253379722,2122.2793275219465,2051.221077255888,391.89097905831704,22.0,26.0,35.0,44.0,50.0,50.0,45.0,40.0,35.0,243.085520516,18.0,4.48863636973214,5.351858133476067,6.244166900663736,7.1284959456800365,8.026496938945412,8.917176635955164,9.817003309314352,10.710432058574115,11.61085947225392,0.7111111111111114,1.0374666666666665,1.1539509278912048,0.6749895928731994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6189283233532937,1.0179084967320262,1.0471230881281863,0.6123255648280072,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,25.790112615484354,24.129761941079934,6.22790117073487,0.0,0.0,4.567099647791355,4.794537184071822,4.9839785209472085,0.0,0.0,6.06636706846161,6.196843571613076,6.606881964512918,159.58184780625038,-413.45734888445895,-47.39790460191773,-13.781911629481963,-45.93970543160654,258.0480361019579,668.5713842660359,31.080975968027875,22.285712808867856,31.836732584096932,0.4444444444444444,0.5589181254386144,0.15190472716990325,200.3457108256228,0.135557321223374,37.293504976588665,0.4410818745613857,5.0,0.1111111111111111,0.36823827966433986,0.7705645639009207,0.8946394890876679,0.9592409905818987,0.9728273270545991,0.9728273270545991,-2.563,,1.6785714285714288,1.9855746859004189,1.5414196857644495,1.6738284309400313,-6.966016776241213,1.7771572827417383,1.663262980430946,-2.9529462750204147,55.91880000000002,20.056445138322168,0.0,9.551078168738563,0.0,24.539800333979777,12.340549441675103,22.74749122234998,0.0,0.0,3.6109179126442243,0.0,4.948759890378168,2.3978952727983707,6.484635235635252,4.844187086458591,8.106816038947052,7.002155954403621,9.773208009769208,21.33333333333334,2.6817072940287225,3.4784386810279666,0.0,0.0,0.0,0.0,0.05369758860334284,1.0137962962962963,31.123999999999995,0.0,11.510870653817083,0.0,0.0,0.0,0.0,0.0,0.0,34.61852783673614,11.423410875365658,5.817862777835028,0.0,49.7894414810185,4.736862953800049,0.0,6.22790117073487,17.057747824146507,0.0,0.0,0.0,20.24968778619598,18.567849700598813,21.225622116549413,120.94337922345514,,91.79860987178671,88.80568743456102,90.63596918619103,91.83730352038106,152.2636029977332,90.72296103590932,91.9594423140968,130.52739031321426,21.225622116549413,120.9433792234551,,90.31751743481192,87.0571766479343,89.29526937825277,90.36039608131632,157.8972921734906,89.15488108054893,90.49185733136358,132.99330233585673,4.799536545695947,88.39863159926108,,66.86270231870787,64.52807157496834,65.82527484070059,66.89238727487916,110.68731811105641,66.01539382856554,66.9890817053483,96.62497060944375,1.2485660068558477,7.114316424909126,,5.39991822775216,5.223863966738883,5.331527599187708,5.402194324728297,8.956682529278423,5.336644766818195,5.409378959652753,7.67808178313025,2.457803232439102,60.47168961172756,,45.99804443169167,44.51964222821583,45.40865633931695,46.01711225612818,75.46563769862469,45.46601918164535,46.077560155897274,65.02017803041814,30.53725490196079,0.0,0.0,0.0,0.0,5.324456097253716,28.15370186654909,31.413692643845593,-0.45250181090954866,0.0,5.174008881330311,0.0,-4.5769160997732445,0.0,0.0,0.0,0.0,18.369766944840215,233.42091184112192,54.207148542840265,113.43228035743822,131.69694286392863,141.20671786825557,143.20671786825554,143.20671786825554,382.0,107.29512576459493,184.2089720670864,64.16857540103449,130.82999999999998,130.82999999999998,0.8,7.182969322587349,5.169925001442312,3.680731277346511,4.0576284500182025,,4.054069987726083,4.0535593102970475,4.051587204856654,4.054070140443558,4.048896172341146,4.053813900843347,4.054102483173032,4.054056400482167,0.21651360454979476,0.23868402647165898,,0.23847470516035785,0.23844466531159103,0.23832865910921494,0.23847471414373872,0.23817036307889095,0.23845964122607927,0.23847661665723716,0.23847390591071568,1.8337397001717153,1.9312269283967025,,1.9303495628122453,1.9302235882737115,1.9297369578406591,1.9303496004824072,1.9290725449928832,1.9302863929676002,1.9303575782921987,1.9303462112996355,162.33999999999978,88.159267035,81.56656995861816,,81.53652128440919,81.5737822790465,81.77735378518801,81.5367304115696,82.50276750649356,81.55887220219275,81.53374264718481,81.73125912981803,5.185839237352941,4.798033526977539,,4.796265957906423,4.798457781120383,4.810432575599295,4.796278259504094,4.853103970970209,4.797580717776044,4.79610250865793,4.807721125283414,5.009773282400906,4.932047747210004,,4.931679284855061,4.932136165805821,4.934628607749392,4.931681849679865,4.943460089373422,4.931953368842912,4.931645205837126,4.934064788440192,6.187805177626607,14.98930933484505,28.15370186654909,4.629863315696649,0.05369758860334284,1.3711640211640213,-3.2663728269085426,-0.45250181090954866,0.0,197.63944777436055,66.6461485731817,-172.67214461561215,-19.794781396391233,-5.755738153853738,-19.185793846179124,107.76857136000181,279.2153895953747,12.980344385281292,9.307179653179153,13.295970933113074,496.0,27.0,1.3481097680926546,0.5191117275211025,0.0,0.0,0.4376841765283805,0.09395739157054071,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.045360921162651446,0.32609269872586133,0.10959974356666433,0.6016615726315865,0.13249838070617567,12.576985790260121,8.801123223941445,8.040912557858759,5.014304277265205,7.345481069380511,3.7711079251973993,6.395351564322544,2.642834143988183,5.026120998028232,1.7293735696353036,3.583796927469996,1.0266791376467757,2.4122917061526246,0.5305018507739818,1.351235341254884,0.25060965261378965,3.4332236188243415,1.0343255047573343,5.331536654136975,1.2876820233950128,7.610132867352545,1.4463460942786432,59.14431490596354,30.7169280823343,23.88577234281274,21.51744466038472,21.323651954010813,21.323651954010813,88.0,105.0,31.008308999999983,17.925691,0.36666666666666664,52.08,7.027777777777779,3.805555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,30.0,0.0,0.0,31.0,6.0,1.0,3.0,28.0,7.0,18.0,24.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,8.0,4.0,2.0,17.0,8.0,0.0,3.0,5.0,0.0,2.0,2.0,0.0,0.0,0.0,1.0,1.0,3.1354942159291497,5.144218768697822,3.7013019741124933,4.193435464866331,4.662259152972219,5.055050824126641,5.181081056410016,5.128047890778223,5.263661219892335,5.323924195261811 +3002820,N#C/C(=C1/SCC(c2ccccc2Cl)S1)n1ccnc1,0,48.733333333333334,6.13636,3.8,7.749794238683127,154.69455787165302,197.69453936666676,2.289770968282999,6.348606666666668,3.701331097901743,7.76400316666667,288.9180673470451,37.3125,6.289843750000001,4.5,7.430555555555555,141.2675011875,146.35891446875013,2.370248221875001,6.516046875000002,3.1099215534979425,7.774011812500002,318.9081650586105,37.23076923076923,6.218528846153847,4.134615384615385,5.86965811965812,145.82176861185465,143.73731019230766,2.3017850297086344,6.439788461538462,2.599108367626887,7.800115519230768,289.4798331776011,30.64516129032258,5.985637096774193,3.5161290322580645,4.06989247311828,148.95846824224637,116.6269270967742,2.001961365953129,6.207330645161291,2.3562989512810315,7.652000258064517,247.0689704150393,38.610169491525426,6.053098305084747,3.305084745762712,3.9278091650973006,147.80913576605332,149.4531040677966,2.1955969653261866,6.3163762711864395,2.477484441964459,7.779444186440677,262.61394945355585,33.48275862068966,6.091563793103449,2.9655172413793105,3.608556832694764,152.9362138875332,125.4515456724138,2.0065753531766375,6.324737931034482,2.660986550620437,7.850057913793105,234.03747762390373,20.456521739130434,5.953391304347827,3.0652173913043477,4.0893719806763285,154.1658833288477,73.20179208695654,1.6393665474835868,6.1089456521739125,2.6365181606727504,7.571588695652174,204.3804389754992,21.46153846153846,6.044669230769231,2.948717948717949,4.666666666666667,160.57108931455178,80.7112983846154,1.4925199884305635,6.1872410256410255,2.864197530864198,7.631816615384614,200.00500446748896,28.032258064516128,6.282100000000001,2.870967741935484,5.082437275985663,156.94405121166602,108.56914587096779,1.711490281114419,6.473674193548388,3.659896455595381,7.838365741935483,236.94690390791203,18.84888888888889,0.06506399999999997,0.011110837624859825,0.5600000000000002,3.3242249657064464,1.8272323280792213,84.04117200555555,0.39199563707755564,0.07525155555555554,0.9631914172974985,0.04764513888888888,51.7897848294925,0.4011111111111107,0.0018697499999999643,-0.003832953985861899,0.14624999999999994,0.5194993141289439,-0.20050315514289455,2.0584275329861192,0.012196874971173749,0.0022959444444443982,0.14587343244593468,-0.0016934670138888863,0.5046384775313011,-0.3770940170940173,-0.0031659230769230944,-0.0026400652208803162,-0.03307692307692308,-0.030002110372480573,0.22516727801143435,-2.0363962767093913,0.02288984203249581,-0.005746427350427374,0.03872540667007977,-0.004029164529914521,-1.285355208047807,-0.8381362007168459,0.003998903225806462,0.0016085411840079224,-0.12451612903225806,-0.420773485552458,-0.058006395238578916,-3.4770468593189965,-0.02712144958314692,0.0034059713261648888,0.013764011736562151,0.002728398745519706,-2.066833305529027,1.1341619585687381,-0.00015620338983051145,0.0004909616116987396,-0.0447457627118644,-0.26348701494966414,-0.2875670932807726,4.828269183145018,0.002426627550190285,-0.0011005951035781604,-0.09967170614694891,-0.00017624905838041412,-1.5856276909102283,-4.400613026819923,-0.006751241379310345,-0.00018016040727826844,-0.0013793103448275794,0.05859041672579348,-0.0921772227152508,-19.702807383141757,-0.09032453981970492,-0.01247178544061303,-0.020140351000133738,-0.00688402394636014,-7.9009348996246604,-3.9691787439613533,-0.00606052173913041,-0.001290647139010462,0.005217391304347838,0.20175463708474972,-0.3326103369981414,-17.462955986714984,-0.09515656225093239,-0.007631845410627997,-0.1675413970858395,-0.006380896135265705,-9.850357281756532,2.286153846153846,0.004457538461538463,0.0010000706811821541,-0.08820512820512821,0.1799641236678274,0.09896976076778144,10.766254271367512,0.04494505825850416,0.011118358974358977,0.06508575016576847,0.005346425213675207,9.576437912560293,1.6629390681003584,1.2774193548358294e-05,0.0004874157289945831,-0.10193548387096774,-0.625963980707111,-0.14474322770648887,7.662581565412183,0.015110322598025043,0.006355541218637958,-0.03604624699333908,0.003785517025089614,1.3614235035324653,,,0.5290476190476191,1.3625,0.725,0.025,0.6375,0.0875,0.802634831130856,0.006109428224441072,0.01900942822444107,0.742385843700738,0.22956925876851106,0.26003199112570263,1.545020674831594,0.4896012498942137,2.043733838035167,1.4523761429549815,0.2966172206880858,0.0,0.08873884795803541,0.5913576950801847,10.63334890000001,1462.0,184.0908,114.0,232.49382716049382,4640.83673614959,5930.836181000002,68.69312904848996,190.45820000000003,111.03993293705228,232.9200950000001,8667.542020411352,1194.0,201.27500000000003,144.0,237.77777777777777,4520.560038,4683.485263000004,75.84794310000004,208.51350000000005,99.51748971193416,248.76837800000007,10205.061281875536,1936.0,323.36350000000004,215.0,305.22222222222223,7582.731967816441,7474.340129999999,119.69282154484898,334.869,135.1536351165981,405.6060069999999,15052.951325235257,1900.0,371.10949999999997,218.0,252.33333333333334,9235.425031019275,7230.86948,124.12160468909399,384.8545000000001,146.09053497942395,474.42401600000005,15318.276165732437,2278.0,357.1328000000001,195.0,231.74074074074073,8720.739010197145,8817.73314,129.540220954245,372.66619999999995,146.17158207590307,458.98720699999996,15494.223017759796,1942.0,353.31070000000005,172.0,209.2962962962963,8870.300405476926,7276.189649000001,116.38137048424498,366.8348,154.33721993598536,455.30335900000006,13574.173702186416,941.0,273.85600000000005,141.0,188.11111111111111,7091.630633126995,3367.2824360000013,75.410861184245,281.01149999999996,121.27983539094652,348.29308000000003,9401.500192872963,837.0,235.74210000000002,115.0,182.0,6262.272483267519,3147.740637000001,58.20827954879198,241.3024,111.70370370370371,297.64084799999995,7800.195174232069,869.0,194.7451,89.0,157.55555555555557,4865.2655875616465,3365.643522000001,53.05619871454699,200.68390000000002,113.4567901234568,242.98933799999998,7345.354021145273,565.4666666666667,1.951919999999999,0.3333251287457948,16.800000000000004,99.72674897119339,54.816969842376636,2521.2351601666664,11.759869112326669,2.2575466666666664,28.895742518924955,1.4293541666666665,1553.6935448847748,12.835555555555542,0.05983199999999886,-0.12265452754758077,4.679999999999998,16.623978052126205,-6.4161009645726255,65.86968105555582,0.39029999907755997,0.07347022222222074,4.66794983826991,-0.05419094444444436,16.148431281001635,-19.6088888888889,-0.1646280000000009,-0.13728339148577645,-1.7200000000000002,-1.5601097393689898,11.708698456594586,-105.89260638888834,1.190271785689782,-0.2988142222222234,2.0137211468441483,-0.2095165555555551,-66.83847081848596,-51.964444444444446,0.24793200000000062,0.09972955340849118,-7.72,-26.0879561042524,-3.5963965047918927,-215.57690527777777,-1.681529874155109,0.2111702222222231,0.8533687276668533,0.16916072222222175,-128.14366494279966,66.91555555555556,-0.009216000000000175,0.028966735090225636,-2.6399999999999997,-15.545733882030184,-16.966458503565583,284.86788180555607,0.14317102546122681,-0.06493511111111146,-5.880630662669986,-0.010398694444444433,-93.55203376370346,-255.23555555555555,-0.39157200000000003,-0.010449303622139569,-0.0799999999999996,3.3982441700960218,-5.346278917484547,-1142.762828222222,-5.2388233095428856,-0.7233635555555558,-1.1681403580077567,-0.39927338888888814,-458.2542241782303,-182.58222222222224,-0.27878399999999887,-0.05936976839448125,0.24000000000000055,9.280713305898487,-15.300075501914504,-803.2959753888892,-4.37720186354289,-0.35106488888888787,-7.7069042659486175,-0.29352122222222243,-453.11643496080046,89.16,0.17384400000000005,0.03900275656610401,-3.4400000000000004,7.018600823045269,3.8598206699434763,419.88391658333296,1.7528572720816622,0.4336160000000001,2.53834425646497,0.20851058333333308,373.4810785898514,51.55111111111111,0.00039599999999910714,0.015109887598832077,-3.1599999999999997,-19.40488340192044,-4.4870400589011545,237.54002852777768,0.46842000053877636,0.19702177777777669,-1.1174336567935115,0.11735102777777803,42.20412860950643,0.6974691494688166,0.6375466441507146,0.4450920453583761,0.3728381794521207,0.27918156640644703,0.23552310232264578,0.17998300907540515,0.15108704791161762,0.11911008194871922,0.09847736932671211,0.07506495780220362,0.05632846708426521,0.04761432124406346,0.03668677866429513,0.030796197263291858,0.02254908635952959,17.0011045351225,5.694044011676627,3.21135465186169,2.189198565207076,0.4055732634315029,-0.4121455728050829,3.2403927256315748,0.9113453016182849,5.089488266457869,0.6553946348360216,14.563839209176855,10.32866943909567,35.45051770215074,11.70515063835512,2.9263514916740245,0.9606486888867681,3.197362561235429,2.240866673799707,6.027272411869259,0.6177721178528245,3.4930219831888465,2.437605643344183,24.43795592977943,15.57901183489839,0.3377822194442446,0.7065130274874953,0.8468529666791572,0.8969601199349192,0.9094869082488597,0.9094869082488597,1.5703194149595545,688.6946207583131,1.0,3.0,1.0,0.0,6.0,1.0,1.0,0.0,0.0,3.109237911994785,1.1468790652188896,0.40000000000000036,0.13333333333333375,0.06666666666666732,0.06666666666666732,-3.603508789391384,643.968271602623,48.46605747047203,21.465609053420764,46.30572284829195,,10.0,342.0,0.0,5.261891554738487,5.249938029982174,5.697039313055833,20.576106909895937,0.0,46.811876764564275,24.26546827384644,11.053199833739482,11.600939890232516,10.580952380952382,27.25,14.5,0.5,12.75,0.02904761904761912,0.0,1.75,0.20444444444444432,0.0868253968253967,-0.11761904761904762,0.0,0.0695684454756379,0.0,0.6473015873015875,0.8209523809523809,0.44285714285714317,0.5604761904761908,0.8209523809523809,16.05269662261712,0.12218856448882143,0.38018856448882143,14.847716874014761,4.591385175370221,5.200639822514053,30.90041349663188,9.792024997884274,0.6444315545243621,0.1053105310531053,0.0,0.27407740774077405,0.14285714285714285,0.5035661697291299,-0.6418409696132656,-0.06246256792847445,-0.02139469898710885,-0.058349179055751405,0.49643383027087035,0.6327501530559047,0.033465149828336004,0.021091671768530156,0.03330263963452129,-3.399575132827289,0.6226328548691346,0.690092159258576,1.3167384616090945,0.728236607142857,0.6444151921299355,1.0343657346605215,0.6095859802483786,0.7061023297885297,0.6104365782767132,0.4139993178520309,0.681867841682578,0.71829129822042,0.9448288683728439,0.9029585662401042,1.3233582006443794,1.1286630036630034,0.9121160607268742,0.8900594494787365,0.9281476669497558,0.9368826130601807,0.8547152729443531,0.4654967334381173,0.8720946321238408,0.8659887952835716,1.0670604163655861,0.7011384324317891,0.7076951827210647,1.3503264208909367,1.0674918029033538,0.9512460878289137,1.057292551670834,1.0986232227828325,0.775430689247591,0.599934310243362,0.7782746945171773,1.0228250773005483,1.1860759974262545,0.7907286072435586,0.7803193349845793,1.0532687651331718,0.9770735043318484,1.0973084640211412,1.1762618615447944,1.1402745548871294,0.9180721304983437,1.0754935168507889,1.027213098246981,1.007859779201136,1.6185746286253242,1.154094430099594,1.0234013932374995,0.8928571428571427,0.9703985375676748,1.1264958199901833,1.595109404425468,1.5504161148395594,1.230893713529731,1.3870568411806214,1.2861070705009543,1.1799720615745364,1.0563610407717623,1.048496062739563,0.9748227000992565,0.9944358178053827,0.9294344826299386,1.1542355016815788,1.0508793772864684,1.2112156488370283,0.9882751071574936,1.5159521712137838,0.8985944244860761,1.2017924638671988,0.5720258284511998,1.1173731899478854,1.0540736316484576,1.1950549450549448,1.061229989639306,0.9026320646964855,0.590002724458938,0.6278709575639952,0.9718838194218545,0.774807627354744,0.8993799288498816,0.815575442165694,0.583160925223053,1.2150765697695172,1.0918118793475429,1.0301459293394775,1.1899301103666253,1.0168369085025455,0.6114914879701219,0.5543896533079974,1.0982954471844588,1.5367447681514197,1.1354362707046335,0.8220658098700202,3.0,0.004691358024691353,2.4444444444444455,1.2777777777777777,0.7122222222222223,0.6783333333333333,0.26530612244897955,0.18140589569160998,0.08641975308641973,0.06094907407407406,4509.886523221646,4806.549677917456,2099.9414944357027,1998.8565456619722,13.024003731964955,0.4506744896889826,7.1544174963542435,0.8204142739226138,1.0,0.15384615384615385,1.7976526836137336,3.760011530389629,4.506890595608518,4.773557262275185,4.840223928941851,4.840223928941851,0.13636363636363635,0.0023456790123456764,0.08148148148148152,0.045634920634920625,0.024559386973180074,0.028263888888888894,0.016581632653061222,0.012093726379440667,0.005761316872427983,0.006772119341563783,0.3598577886009468,14.917355371900827,6.84,3.276621058893516,130.19861955946752,1.0,3.9348275125172045,85.03329900379217,,53.240555602574915,66.54869135220096,67.1647152901729,53.21028530424387,68.02840615921927,66.03027017573362,65.13190156274162,70.49607406033178,0.021280358406036287,0.028737089634820565,-0.34497434984432646,0.26116071428571414,0.15627682226330392,-0.1097305208876545,0.024493084566336684,0.03111482327228203,0.03051025892414123,0.15144801939288785,-0.03554333250739694,0.009743977102680042,-0.020006166905483114,-0.04865859887069802,-0.2376117183976598,-0.05906593406593406,-0.00902529482270003,0.12322859800107042,-0.024230936196067986,0.058393104074184105,-0.07636290450082445,0.0402053070393159,-0.08456611994165358,-0.024818701453956257,-0.044466079972009034,0.061461072571721134,0.14477226995099893,-0.22235023041474647,-0.12657792113748761,-0.03174549527566371,-0.04137313624194991,-0.06918814144296455,0.04526114179328002,0.014290006627323274,0.0572649972095261,-0.03990812690830174,0.06017128995000378,-0.002400765243921547,0.04418763267678782,-0.07990314769975784,-0.07926269060243019,-0.15737850565672834,0.05745123572081843,0.006190445302609787,-0.01462554621566102,-0.10348068344151738,-0.0036992033708084415,-0.030616610903686704,-0.2334680337265934,-0.10376308525928851,-0.016214835763162485,-0.0024630541871921057,0.017625286293866144,-0.050446361581259404,-0.23444232050737346,-0.23042230901624644,-0.16573458646187791,-0.020910019170066005,-0.14448533694935944,-0.1525577857802829,-0.21057892416677776,-0.09314708193671482,-0.11616110167272332,0.009316770186335421,0.06069223327726074,-0.18202958205527153,-0.20779048613887244,-0.24274903404627904,-0.10141777607498993,-0.17394403031115405,-0.13392543886053748,-0.19019884547091404,0.12128852048682277,0.06851005873506802,0.09000857675613552,-0.1575091575091575,0.0541371674674197,0.054163753151093834,0.12810690301482003,0.11465703698536793,0.14774922448148847,0.06757301715622077,0.11221344586996311,0.18490978373609387,0.08822477960919138,0.0001963327423515047,0.04386849537824403,-0.1820276497695852,-0.18830373610833062,-0.07921446303363204,0.09117651958620529,0.03854717034780541,0.08445727362999012,-0.03742376265610511,0.07945232427420666,0.02628749101805848,8.380078124507966,13.425980799707471,4.508797713853318,25.49956659592257,46.153535964946684,51.17759006268734,52.17992339602066,52.24712339602066,52.24712339602066,40.87467676070334,29.04752285909963,5.932344413761717,0.0,1.7747769591607083,11.827153901603694,4035.456993061013,3603.4949410818585,866.9299931970772,59.0,30.0,41.0,53.0,55.0,60.0,65.0,63.0,63.0,319.0004670000003,22.0,4.653960350157523,5.5093883366279774,6.3818160174060985,7.252053951852814,8.130647968160584,9.00565049932022,9.886697383228654,10.764075281534032,11.64645060757522,0.9111111111111114,0.9855999999999998,1.0980127231660495,0.8875891543862569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.8249087824351301,0.9822222222222223,1.0115926195678562,0.7482665038333671,7.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,11.766260625848107,0.0,0.0,0.0,4.567099647791355,4.9839785209472085,5.261891554738487,23.52376989878223,29.800041095617345,11.629818560158606,28.41911209369644,10.56448857247537,254.41934294892337,-324.28063595802087,-31.5582865699917,-10.809354531934027,-29.480057814365527,250.815834159532,319.68763564460215,16.90777090048033,10.656254521486739,16.825665033926427,0.5,0.9445745641976905,0.2320426923808622,0.18438481443654617,0.11396880727640044,10.363976214993285,0.0554254358023096,5.0,0.09090909090909091,0.36635271330943564,0.7662717268966007,0.9184819811637974,0.9728273270545991,0.9864136635272994,0.9864136635272994,4.407480000000002,,2.32563025210084,0.624430703311728,0.6336086784287984,2.3394027075902954,-0.4723246383480484,0.6998464202159805,0.7732853603173684,-0.559527504649741,85.29800000000002,0.0,5.261891554738487,9.551078168738563,0.0,5.249938029982174,5.752853606746789,57.809728794986285,0.0,6.069221312792274,3.8066624897703196,0.0,5.10594547390058,3.044522437723423,6.5998704992128365,5.209486152841421,8.183397369998433,7.153833801578843,9.81328928461798,27.333333333333343,12.993194045490522,3.991789490104786,0.0,0.0,0.0,0.0,1.9144222936088022,1.7542795729402871,29.567999999999994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6550678697404893,32.94038169498148,0.0,0.0,0.0,15.303931775485353,0.0,11.33111286753076,10.81338952167917,47.223643989547966,5.022633313741326,5.697039313055833,0.0,26.627674631587706,24.747263473053902,26.31198403274781,170.06659800758433,,106.6359136657839,133.03493963407075,134.26606971250294,106.57299224762936,136.54040238451125,131.99055570944563,130.1864745894515,141.1600063720585,26.31198403274781,170.06659800758433,,104.94198293720825,132.47295200109022,133.69582190191704,104.8692409694034,136.82379716752015,131.3606939312512,129.49051776516586,141.55167562531332,4.719910939559412,127.60902568723043,,78.80943238977062,102.27696702125078,103.73649165478301,78.77187170909961,100.76873974104873,101.25728639885813,99.48066774071084,105.97038631063415,1.3155992016373905,8.503329900379217,,5.3317956832891955,6.651746981703537,6.713303485625147,5.328649612381468,6.827020119225563,6.599527785472281,6.509323729472575,7.058000318602924,2.4184266168944117,85.03329900379217,,53.240555602574915,66.54869135220096,67.1647152901729,53.21028530424387,68.02840615921927,66.03027017573362,65.13190156274162,70.49607406033178,29.46666666666667,0.0,0.0,6.246143051356345,0.0,0.0,0.0,30.347778587035688,0.9202484882842026,0.0,0.0,3.3936511085915844,0.2875661375661376,0.0,0.0,9.36045097771619,2.260964742378433,22.447995115001014,477.23229723456205,53.92958050841201,112.80034591168888,135.20671786825554,143.20671786825554,145.20671786825554,145.20671786825554,531.0,115.23074039586314,28.002879873893207,68.91700750964384,92.21,41.61,1.0,7.968048947488706,5.459431618637297,4.059829206835749,4.409723603842016,,4.405921863511482,4.425235400303604,4.427187730738672,4.4059346954692975,4.401802648168858,4.424672658718274,4.423047405704608,4.4130737927206445,0.20299146034178744,0.2204861801921008,,0.2202960931755741,0.22126177001518021,0.2213593865369336,0.22029673477346487,0.2200901324084429,0.2212336329359137,0.2211523702852304,0.2206536896360322,2.0942880860068986,2.1769591931887926,,2.1760966946728777,2.180470655413609,2.180911739270045,2.176099607102904,2.175161330348644,2.1803434808526223,2.1799760973865743,2.1777186323754956,216.01999999999984,119.05955405518867,105.6424206021729,,106.03436273952931,104.24436451193982,104.0414509618764,106.02399555224329,106.24475357226311,104.29436178427063,104.45909320313281,105.29562627590897,5.9529777027594335,5.282121030108645,,5.301718136976466,5.212218225596991,5.2020725480938195,5.301199777612164,5.3122376786131555,5.214718089213532,5.22295466015664,5.2647813137954484,5.472771002731297,5.353207181415996,,5.356910398926083,5.339884982338274,5.337936567235732,5.356812622187851,5.358892609001924,5.340364483428328,5.341942722725641,5.349919062995918,2.7778163580246913,3.991789490104786,10.433191644970748,1.7607788485764682,0.9202484882842026,10.144314981004646,5.10984380686431,0.0,0.0,255.9586024282787,128.5416017946161,-163.83798454109316,-15.944356504429141,-5.461266151369771,-14.894362231008467,126.72098239319607,161.51743921428385,8.542400625413366,5.38391464047613,8.50091785338336,824.0,28.0,1.0078677873714246,1.0024340496978155,0.0,0.0,0.3003491900968691,0.22920970517644168,0.0,0.0,0.0,0.0,0.0,0.0,0.2621886974951644,0.34467623579387235,0.30274943015462097,0.3532090045986626,0.45256011835984544,0.4532728865902999,13.94938298937633,12.750932883014292,9.792024997884274,8.202439947946656,8.37544699219341,7.065693069679374,7.379303372091611,6.194568964376322,6.312834343282119,5.219300574315742,4.128572679121199,3.098065689634587,2.8568592746438073,2.2012067198577077,2.001752822113971,1.4656906133694234,2.81746511842569,2.5499598756254644,4.825055360310374,4.22640262178337,6.634746772779282,5.424534272492525,66.47632701300616,38.0917458174993,29.076973772187284,27.211920668741037,27.01812796236713,27.01812796236713,104.0,123.0,41.327929999999995,18.88207,0.5666666666666667,104.06,5.666666666666667,4.527777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,30.0,0.0,0.0,32.0,11.0,1.0,6.0,25.0,13.0,22.0,19.0,1.0,0.0,0.0,14.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,5.0,0.0,2.0,20.0,6.0,0.0,3.0,0.0,0.0,3.0,2.0,2.0,0.0,1.0,1.0,2.0,3.449987545831587,6.62489489680957,3.984343667007772,4.565649427825808,5.090293312401709,5.347999989500488,5.548102848808668,5.838003733435006,6.011420348946852,6.329163709319502 +4528,CN1Cc2c(N)cccc2C(c2ccccc2)C1,0,19.22222222222222,5.721383333333334,3.1666666666666665,5.222222222222222,160.54743220823562,75.52519961111109,1.5290397857578337,5.823422222222223,2.5385802469135803,7.277330000000002,217.28906039414957,22.473684210526315,6.110736842105263,3.8421052631578947,5.5,145.48910596260527,84.29288852631576,1.8751066726315795,6.268000000000001,2.7850877192982457,7.530814736842103,265.0007937959748,18.742424242424242,5.977545454545455,3.712121212121212,4.303030303030303,151.7993237710923,68.83179072727272,1.6654877466529392,6.10869696969697,2.417087542087542,7.458466666666667,228.9716404040159,15.863636363636363,5.812818181818182,3.227272727272727,3.352272727272727,150.86191434532606,56.33087705681819,1.531297943509,5.943812499999999,2.270833333333333,7.330972590909092,201.26872198217063,12.622641509433961,5.668178301886791,2.650943396226415,2.4245283018867925,158.60674587837053,43.70640688679246,1.2808699267554156,5.767123584905661,2.10167714884696,7.251053056603775,161.66831045333763,12.34,5.6942200000000005,2.52,2.1,160.84383366822672,42.54050447999998,1.25418774946074,5.785210000000001,2.1600000000000006,7.2820502399999985,158.72211160251223,10.840909090909092,5.678943181818182,2.159090909090909,1.5340909090909092,159.42040197406345,35.11928977272727,1.2295274063361818,5.772869318181818,2.276515151515152,7.269448,149.64974729570704,7.0625,5.37715,1.7125,0.825,166.5936939874358,21.2839038,0.958733831435825,5.4436625,1.8791666666666669,7.064574799999998,106.45811976352172,5.045454545454546,5.293477272727273,1.5,0.4090909090909091,170.68475332950632,13.205029590909088,0.8163210474245001,5.342965909090909,1.753787878787879,7.018011818181819,83.35366147346441,6.580246913580247,0.04904722222222217,0.010465226734507619,0.5709876543209875,2.8024691358024683,1.5038238619850883,31.695650570987645,0.23688507176780554,0.05275061728395056,0.37114197530864196,0.02029265432098765,53.431624629449246,0.30864197530864257,-0.0011630116959064464,-0.003877312476298644,0.24772579597140992,0.7150747238466538,0.033379000702657556,1.5061063003573671,0.01306721424508927,-0.0002547108512022262,-0.058195256660168976,-0.0010307829759583767,3.039670072853846,-0.023007856341189348,-0.008376767676767679,-0.0009913716574666534,-0.014590347923681295,-0.25364758698092027,0.2909775045617058,-0.01326552890011841,0.029204368748856104,-0.007627721661055092,-0.006874298540965227,-0.0039048765432098467,4.634909348476996,-0.9489337822671153,-0.002598358585858587,-0.0002919376236014038,-0.05394219977553314,-0.2027216610549944,-0.3109714961686021,-4.614976933992708,-0.04608140769917104,-0.0037196829405163156,-0.028584455667789013,-0.0006841164421997648,-9.710388808973685,0.006755182855811775,0.005803249475890982,0.0014792201685439772,-0.08828325180526438,-0.04251106452364318,-0.13392016683271415,-0.026181908513859913,-0.016039034650755242,0.0050889005357558845,0.009856161192639185,0.0028710941066852984,-2.656966938578219,-0.04913580246913583,-0.0030442222222222194,-0.0008090695731871992,-0.1365432098765432,-0.4269135802469136,0.01776012087960508,-0.21390811654321007,0.003558693244444438,-0.0026508395061728453,0.021188271604938275,-0.001554836543209872,0.5479266439196341,-1.8504489337822674,-0.012247790404040393,-0.0009409098630444511,-0.060255331088664404,-0.5890852974186308,-0.19663287059802356,-8.89379115937149,-0.0536281964732904,-0.014150743546576866,-0.07866863075196409,-0.004351320987654315,-13.322131103192703,0.3711419753086417,0.003018402777777784,0.00023714422138770174,0.05887345679012348,0.19197530864197532,-0.026165485905976227,1.7710615387345725,0.005704209234223559,0.0034632716049383615,0.013329475308641998,0.0010335067901234294,1.922219853709133,0.6369248035914699,0.0041925505050505124,2.3777903447006994e-05,0.1045173961840629,0.35409652076318743,0.010415878302770222,3.053733191638614,0.014703319744042853,0.004997615039281824,0.0008768237934904867,0.0013564365881032206,4.061127606345244,,,0.48888888888888893,1.3055555555555556,0.6944444444444444,0.027777777777777776,0.6111111111111112,0.08333333333333333,0.7011761581287438,0.008899631497200348,0.023232964830533682,0.8184363727916542,0.2631322881578906,0.2232021671434144,1.519612530920398,0.486334455301305,2.063752986379997,1.845816006639553,0.21793697974044351,0.0,0.0,0.21793697974044351,6.615194404888888,692.0,205.96980000000002,114.0,188.0,5779.707559496483,2718.9071859999995,55.04543228728201,209.6432,91.38888888888889,261.98388000000006,7822.406174189385,854.0,232.208,146.0,209.0,5528.586026579,3203.129763999999,71.25405356000002,238.18400000000003,105.83333333333334,286.1709599999999,10070.030164247042,1237.0,394.51800000000003,245.0,284.0,10018.755368892093,4542.898187999999,109.922191279094,403.17400000000004,159.52777777777777,492.25880000000006,15112.128266665048,1396.0,511.528,284.0,295.0,13275.848462388692,4957.1171810000005,134.754219028792,523.0554999999999,199.83333333333331,645.1255880000001,17711.647534431017,1338.0,600.8268999999999,281.0,257.0,16812.315063107275,4632.87913,135.77221223607404,611.3151,222.77777777777777,768.6116240000001,17136.84090805379,1234.0,569.422,252.0,210.0,16084.383366822673,4254.050447999998,125.41877494607401,578.5210000000001,216.00000000000006,728.2050239999999,15872.211160251223,954.0,499.747,190.0,135.0,14028.995373717584,3090.4975,108.19841175758401,508.01249999999993,200.33333333333337,639.711424,13169.17776202222,565.0,430.172,137.0,66.0,13327.495518994865,1702.7123040000001,76.698706514866,435.493,150.33333333333334,565.1659839999999,8516.649581081738,222.0,232.913,66.0,18.0,7510.129146498279,581.0213019999999,35.918126086678,235.0905,77.16666666666667,308.79252,3667.561104832434,236.88888888888889,1.7656999999999983,0.37674816244227427,20.55555555555555,100.88888888888886,54.13765903146318,1141.0434205555553,8.527862583641,1.89902222222222,13.36111111111111,0.7305355555555554,1923.5384866601728,11.728395061728417,-0.044194444444444966,-0.14733787409934848,9.413580246913577,27.172839506172846,1.2684020267009872,57.23203941357995,0.49655414131339226,-0.009679012345684596,-2.211419753086421,-0.03916975308641831,115.50746276844615,-1.5185185185184968,-0.5528666666666668,-0.06543052939279913,-0.9629629629629655,-16.740740740740737,19.204515301072583,-0.8755249074078151,1.9274883374245029,-0.5034296296296361,-0.45370370370370494,-0.25772185185184987,305.90401699948177,-83.50617283950615,-0.22865555555555567,-0.025690510876923534,-4.7469135802469165,-17.839506172839506,-27.365491662836984,-406.11797019135827,-4.055163877527051,-0.3273320987654358,-2.5154320987654333,-0.060202246913579296,-854.5142151896843,0.7160493827160481,0.615144444444444,0.15679733786566158,-9.358024691358024,-4.506172839506177,-14.1955376842677,-2.775282302469151,-1.7001376729800555,0.5394234567901237,1.0447530864197536,0.30433597530864165,-281.6384954892912,-4.9135802469135825,-0.3044222222222219,-0.08090695731871993,-13.65432098765432,-42.69135802469136,1.776012087960508,-21.390811654321006,0.3558693244444438,-0.2650839506172845,2.1188271604938276,-0.1554836543209872,54.792664391963406,-162.83950617283952,-1.0778055555555546,-0.0828000679479117,-5.302469135802467,-51.839506172839506,-17.303692612626072,-782.6536220246911,-4.7192812896495555,-1.2452654320987642,-6.92283950617284,-0.3829162469135797,-1172.3475370809579,29.691358024691333,0.2414722222222227,0.01897153771101614,4.709876543209878,15.358024691358025,-2.093238872478098,141.6849230987658,0.4563367387378847,0.27706172839506893,1.0663580246913598,0.08268054320987435,153.77758829673064,28.024691358024672,0.18447222222222254,0.0010462277516683077,4.598765432098768,15.580246913580247,0.4582986453218898,134.36426043209903,0.6469460687378855,0.21989506172840023,0.03858024691358142,0.0596832098765417,178.68961467919075,0.6963983015001797,0.5908294360982952,0.4377010097711745,0.31810983753772304,0.2812292038645427,0.18125143839609997,0.1745291973024354,0.09863489449711586,0.11094147354800807,0.054752813779862006,0.07334264945683139,0.0315512095927586,0.046440760942996796,0.01786835214874393,0.030724225470140216,0.009945548366504305,7.031618259877013,5.681816762639658,3.1233558278196782,2.1811964911054256,0.3429480720705269,-0.37230327971691135,3.2458770519569455,0.9929949107174745,5.009714132472842,0.9969655661203136,14.54410513358318,10.942868900701477,14.023175169542121,11.693335271843633,2.0008865537494325,1.0476579561347779,3.101061539595292,2.2310003857749927,4.005244989208178,1.2363365051191642,3.260078243929522,2.4268792233234504,20.908578722094855,15.591896021682459,0.22925997701208245,0.5462636856394443,0.7192568670578758,0.8413697010002984,0.8922500484763076,0.8922500484763076,1.7387545195705558,548.2783480249916,0.0,0.0,2.0,0.0,9.0,0.0,3.0,1.0,0.0,3.918295834054489,2.187635763948985,1.2431913195045414,0.5765246528378745,0.2987468750600968,0.2987468750600968,163.2467658824627,564.0781774573408,32.68657001963866,15.66883826270391,30.31326410558759,,8.0,248.0,0.0,0.0,0.0,5.917906046161393,18.776899086508713,16.690354475090988,0.0,6.06636706846161,54.412151192758934,5.733667477162185,8.8,23.5,12.5,0.5,11.0,0.0,0.011111111111111072,1.5,0.07822222222222214,0.05555555555555547,-0.02266666666666667,0.04444444444444429,0.057283582089551865,0.0,0.5222222222222225,0.7444444444444441,0.44400000000000034,0.466666666666667,0.6999999999999998,12.621170846317389,0.1601933669496063,0.4181933669496063,14.731854710249776,4.7363811868420305,4.017639008581459,27.353025556567165,8.75402019542349,0.6567164179104481,0.10227272727272727,0.0,0.32954545454545453,0.25,0.3189697185695201,-0.3990482308900252,-0.0248197237418272,-0.011084673080278475,-0.028503445063573222,0.68103028143048,0.8520054198440704,0.04767493105473626,0.023666817217890847,0.03872751908382139,-3.67425346041762,0.9253727658734078,1.1093632166160434,1.5108346753408939,0.7169274537695592,0.7486088569441227,1.1236560433837697,0.9246258605054505,0.9600424718512139,1.050443626267504,1.2676441623810046,1.2022146213648592,0.9342526122785607,0.9861099266587071,1.328670833612217,1.1330769119397384,1.4060196560196565,1.3035642771325595,0.9093712068228683,0.9818840642073291,0.8635561003502843,1.251335748540451,0.7270994770994772,1.427336413772544,0.886442372736848,1.0938432756268122,0.8867266137045829,0.7859729864880033,1.306050368550369,1.0801712054465362,1.2266465503805346,1.0969476833086154,1.2041967060971577,0.9272131072768973,0.8855840105840107,0.8414519505684356,1.1766202101113288,0.9680320542320082,0.8237512836322332,0.7499339439127124,1.2288373278939322,0.9932933671349018,1.0543608148475416,0.9701553135170662,1.042311168842831,0.8524036589060067,0.9205468167732319,0.7911830630215112,1.024084259732608,0.9928705440900563,1.167981537067452,1.1551999235435386,1.2770270270270274,1.2072687224669607,0.9727258177492245,0.9908316931528672,0.9382303058889879,1.1270642201834866,0.8749999999999999,1.2215933820241465,0.9468950711118413,1.2516656361930751,1.2782932470768742,1.2078890179105453,0.8416769041769044,1.0860845514617545,1.107751192608516,1.2504600282957206,1.1842560505682143,1.28229416440784,1.427187677187677,1.2630049187658363,1.2079699471909124,0.9095772748592871,0.7520653989919013,0.8344687183518175,0.5214527027027029,0.7610476321585906,0.8703662225727249,0.9110466857224093,0.9346699630482531,0.7930314650229356,0.9691398128898129,0.6943005664033384,0.9359920855973253,0.8780967508101655,0.7790787326169895,0.9661032815371252,0.40632678132678146,0.6859481377653186,0.8145394096151662,0.8787730907916578,0.8775453487894537,0.8076554680984154,1.1518380268380268,0.7362904646404419,0.8845630910726648,3.0,0.0,2.000000000000001,1.25,1.2088888888888891,0.5416666666666666,0.2620408163265306,0.09895833333333333,0.02040816326530612,0.0,3055.712171752273,3532.0893953696072,1683.8718288429375,1496.8649218341852,10.621470709956828,0.4775003876690177,5.549714328337326,0.9138770180877006,1.0,0.25,1.2516291673878228,2.982289237493327,3.9267336819377707,4.593400348604438,4.871178126382215,4.871178126382215,0.15000000000000002,0.0,0.07142857142857145,0.043103448275862065,0.046495726495726496,0.022569444444444448,0.016377551020408162,0.012369791666666666,0.01020408163265306,0.0,0.37254861496433234,13.005,5.551020408163265,2.6592797783933517,108.0421589968343,1.0,3.8377195101174992,63.52003311201305,,50.90272772982283,50.50424092018611,50.08655253401927,50.905688835137525,56.70487408856008,50.75099050730776,50.92425172074658,54.89913287153263,0.04690431519699821,-0.02371208079097928,-0.37049483729900945,0.4338549075391181,0.2551588221655462,0.02219608396065505,0.04751775947883427,0.055162675079406184,-0.004828585224532005,-0.15680052522157795,-0.05079586729530453,0.05688896966794659,-0.003496503496503447,-0.17078984899112915,-0.09473006965035399,-0.025552825552825627,-0.09050861033239889,0.1934917458867873,-0.00041852836780895434,0.12328496908189382,-0.14459966638865926,-0.018522018522018572,-0.19242808168132217,0.0867446831463633,-0.14420944908749783,-0.05297667162649897,-0.02789596737916632,-0.09447174447174456,-0.07233680416499802,-0.20678718035376248,-0.14560284615886662,-0.19453065300940522,-0.07051449124270313,-0.07701757701757705,-0.0337125164297614,-0.18173485976358897,0.0010265850118588251,0.11831963591327833,0.14134621313711782,-0.15461499235084145,-0.01516914637187268,-0.08905309339614807,-0.0008260410511284885,-0.06770808532196863,0.09647091916219508,0.026556309575177513,0.14148440422187022,-0.04972648608393261,-0.007467166979362105,-0.06206716882822677,-0.07731027656757838,-0.23913513513513515,-0.15233480176211459,0.011809974112367946,-0.00674881608958073,0.015022868338164698,-0.05025229357798182,0.0570893970893971,-0.07662065881651492,0.010254725506093637,-0.28121268974927516,-0.24971425188053156,-0.08990821574289763,-0.10552825552825554,-0.21020224269122956,-0.13075525370269284,-0.28059973526816795,-0.226389092706765,-0.26825740200166814,-0.21196371196371197,-0.21442837978834375,-0.24933045168628673,0.0564024390243902,0.06154074871155934,0.022660208651356966,0.10310810810810818,0.06850220264317183,-0.01739930225035602,0.055877115844900786,0.0240800705238818,0.06565366972477242,0.03591476091476097,0.05093009390371009,0.035975321114411464,0.09679345045198696,0.08547987663919046,0.0022720867927880327,0.18304668304668317,0.12635162194633565,0.006926262154811787,0.09634549651534283,0.06206942309330083,0.09474040867389727,0.0023625023625024346,0.06684372416970254,0.07600606634197163,13.124600033515039,17.797330667877524,5.6762400186093895,9.994216279655076,23.23316531959074,29.917388296988086,33.64577718587697,33.92577718587697,33.92577718587697,37.14755375483994,33.22468811951195,3.9228656353279834,0.0,0.0,3.9228656353279834,2141.7736631567213,1685.1720791970472,673.2253596615715,55.0,28.0,38.0,52.0,69.0,67.0,73.0,74.0,73.0,238.146998576,20.0,4.574710978503383,5.43372200355424,6.322565239927284,7.205635176410364,8.101374671228582,8.993054630146133,9.89075686005731,10.786076712737268,11.684464094398713,0.5925925925925927,0.9526666666666667,1.1199745368931358,0.5511938130787518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6806765469061878,0.9420479302832242,0.9810229019988674,0.6220104823936494,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10.633577208012664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.46456947923127,29.804393526229784,24.69480513267011,0.0,143.81785897767034,-179.92385751477582,-11.190778688883146,-4.997884930965993,-12.85170410819827,307.06462486013305,384.15431994256494,21.495791330755512,10.670953331737916,17.46155999738932,0.5,0.9698243382733339,0.3184971925719556,20.35167088042656,0.12487562991722038,177.04437709348392,0.03017566172666618,4.0,0.05,0.2420981285103056,0.5768534817548271,0.7595339740600271,0.8884849098048744,0.9422144663652273,0.9422144663652273,2.8461000000000016,,0.2857142857142858,0.37133550488599343,0.4504991709152957,0.2850003569643751,-1.0363636363636362,0.32236842105263164,0.28052598622417024,-0.6386492564868576,75.47340000000004,0.0,0.0,4.899909730850478,0.0,12.462662452073968,19.32609586575195,65.22129102278387,0.0,0.0,3.713572066704308,0.0,5.030437921392435,0.0,6.569481420414296,0.0,8.213110697596676,0.0,9.912001208301334,21.333333333333336,16.97376314877803,0.0,0.0,0.0,0.0,0.0,4.967855725623584,0.0,34.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.319083328152885,5.733667477162185,5.687386274683562,0.0,18.492338119440245,6.544756405912575,0.0,22.60826052125238,48.53093654769288,0.0,0.0,0.0,19.842977270835064,24.504355688622763,23.920969018830533,127.04006622402616,,101.77370942789962,100.96722233982933,100.12304960460351,101.77971096394569,113.98550575287771,101.46616230116524,101.81733388746827,110.153070885558,23.920969018830533,127.04006622402613,,101.51974117393142,100.63714633548628,99.72260589712327,101.52637731331073,114.44611181348378,101.17961259356294,101.56797745526907,110.43691499955216,4.916244126901669,90.34974706123577,,73.30096887605322,72.86020625030169,72.36769341189228,73.3040093046434,79.32252436953762,73.14520827114114,73.32307016561049,77.4337531942602,1.328942723268363,7.057781456890343,,5.654094968216645,5.6092901299905185,5.562391644700195,5.654428386885872,6.332528097382095,5.637009016731402,5.656518549303793,6.119615049197666,2.4581220634508356,63.52003311201305,,50.90272772982283,50.50424092018611,50.08655253401927,50.905688835137525,56.70487408856008,50.75099050730776,50.92425172074658,54.89913287153263,33.91372549019607,0.0,2.1580555555555554,0.0,0.0,6.117203640715546,0.0,35.31682447195923,2.0057608182161752,0.0,0.0,0.0,0.43374999999999986,2.343611111111111,0.0,0.0,0.0,22.39237736617138,437.2768065270348,45.05865002596162,107.36241254975977,141.36241254975974,165.36241254975977,175.36241254975977,175.36241254975977,567.0,110.99236036696328,13.605677310768586,51.43860331440905,29.259999999999998,29.259999999999998,1.0,8.023163227567647,5.321928094887363,3.821665584983219,4.186609814604078,,4.1943217118876746,4.195287118716198,4.195995247405158,4.194312520557183,4.170340598551928,4.194785695314172,4.194254783621795,4.178634719764945,0.21231475472128994,0.232589434144671,,0.23301787288264858,0.23307150659534434,0.23311084707806431,0.23301736225317685,0.23168558880844048,0.23304364973967623,0.23301415464565528,0.23214637332027474,1.9284730095041211,2.01967795786755,,2.021518302090818,2.0217484455581185,2.0219172227866147,2.021516110713715,2.0157843756871525,2.0216289177748115,2.0215023450888365,2.017771236020377,197.87999999999965,107.60941041855135,91.32626588450232,,90.73861744632248,90.6402981279607,90.55432760429723,90.7394678027495,92.42329365171877,90.69512929198153,90.74480002980567,91.90570284483026,5.978300578808408,5.073681438027907,,5.041034302573471,5.035572118220039,5.030795978016513,5.041081544597194,5.134627425095487,5.038618293998974,5.041377779433649,5.105872380268348,5.266294766227107,5.102225098801412,,5.095769702591649,5.094685570759893,5.093736640516878,5.0957790740419355,5.114165707576774,5.095290319280047,5.09583783645833,5.108549747233215,0.0,2.343611111111111,0.0,11.08505936633913,0.43374999999999986,16.97376314877803,0.0,2.0057608182161752,2.1580555555555554,232.5976131952223,64.84495347608693,-81.12451577794114,-5.0457260913227895,-2.253458771609475,-5.7946082698529375,138.45006075566008,173.20845395272588,9.692075787270165,4.811345943131275,7.873111543305723,555.0,29.0,1.0992923521208584,0.6769489295458675,0.0,0.0,0.27537753772002593,0.12240903852030702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22565900991549848,0.08840613738960876,0.37335247487267753,0.14649026398157913,12.535169427003234,10.634929849769314,8.75402019542349,6.36219675075446,7.874417708207195,5.0750402750907995,6.632109497492546,3.7481259908904025,5.768956624496419,2.8471463165528244,5.060642812521365,2.1770334619003435,3.1115309831807854,1.1971795939658434,2.2428684593202357,0.7260250307548142,2.629815508811319,1.3832734932451212,4.527487787576765,2.0602392129362093,7.825653638084132,3.0778847916986862,62.160075062660454,43.02072155129549,28.147620497148804,20.38621632543404,19.37568993598425,19.37568993598425,96.0,114.0,40.92227399999998,19.197725999999996,0.4444444444444444,94.02,5.166666666666666,3.9444444444444438,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,36.0,0.0,1.0,38.0,12.0,0.0,6.0,32.0,12.0,20.0,26.0,0.0,0.0,0.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,2.0,1.0,1.0,18.0,2.0,0.0,2.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,2.0,3.295836866004329,6.546919906737055,3.871201010907891,4.42484663185681,4.980176086611547,5.51292458683996,5.577604928480286,5.903316160331277,6.225671670778171,6.487065486289323 +5281034,C[C@]12C/C(=C/O)C(=O)C[C@@H]1CC[C@@H]1[C@@H]2CC[C@@]2(C)[C@H]1CC[C@]2(C)O,0,17.5,5.765714285714288,3.142857142857143,4.392857142857143,163.15000357274053,68.39222485714286,1.3343593741994286,5.838094642857143,3.6491815476190474,7.382086285714285,188.17334088247785,20.406779661016948,6.044915254237288,4.084745762711864,4.254237288135593,143.510839257361,75.15758466101698,1.7869065300338984,6.2002033898305084,2.4339689265536726,7.517717491525422,248.79186272165887,17.252100840336134,5.833865546218487,3.831932773109244,3.0588235294117645,149.31669656328387,62.94690471428572,1.5735698212473368,5.968382352941174,2.0786647992530343,7.366015764705882,213.18675616284966,14.30890052356021,5.8201570680628265,3.0785340314136125,1.9738219895287958,152.4045178991711,49.7316183089005,1.4013615465090317,5.93557068062827,2.187463641652124,7.386473445026177,182.5789505553895,10.067924528301887,5.659924528301885,2.3207547169811322,1.2528301886792452,158.90491521693716,32.17627155471698,1.151073620659011,5.74624566037736,2.09840146750524,7.293985298113207,138.85858468145761,7.620567375886525,5.419184397163119,1.99645390070922,0.9290780141843972,166.2488730429508,23.971620514184398,0.946054579196883,5.482136524822695,1.7398295902285266,7.122021120567378,108.24883571075047,8.362745098039216,5.551323529411765,2.0294117647058822,1.0784313725490196,166.4647781914339,26.733595406862744,0.9572641700034901,5.608215686274508,1.9908769063180836,7.248485745098041,113.12868194110116,9.173333333333334,5.6474,2.04,1.2333333333333334,164.4362322273296,29.43895720666666,0.9913838458123065,5.709323333333334,2.198611111111111,7.323017306666667,119.22729539304312,8.113821138211382,5.678699186991872,1.7479674796747968,1.2276422764227641,168.5120499989573,25.254592699186993,0.8848477088304714,5.719626016260164,2.3462059620596207,7.386521040650406,104.90026235403882,6.9375,0.09110969387755101,0.013056847558927989,0.7844387755102041,2.830357142857143,1.2831690979854362,33.14171138265306,0.23135771714669387,0.08923211096938766,1.4303230406746035,0.056170729591836714,51.48814582347717,0.2319915254237288,-0.005468047388446814,-0.0059209347057929546,0.37839415427187806,0.9226694915254238,0.17873501344220985,1.2094441621411123,0.03081311238282667,-0.00478410854808018,-0.07681004296139358,-0.0034499063472846706,5.23385626031272,0.8587184873949579,0.0041213985594238025,1.793335735251962e-05,-0.06865246098439386,0.009978991596638655,0.14833569537673483,4.136926243397349,0.028097105975297697,0.005290262980192101,0.060347185749299724,0.001229177971188475,6.851261161228863,-0.8053010471204188,-0.005625400683833703,-0.00022279437003335106,-0.18327946361790803,-0.5409031413612565,-0.15066817375047356,-3.8746834899829112,-0.027918066872824773,-0.006321116204989812,-0.020183995964223392,-0.0026504206913131718,-6.4856339200461255,-1.4327830188679245,-0.005369801694262608,2.4936073520949606e-05,-0.055463034270311906,-0.23183962264150942,-0.23372748089606218,-6.905143820119369,-0.04491741621728903,-0.007686895335964556,-0.0015948473532494795,-0.0007301802656911808,-11.302625365490004,0.5961879432624113,0.005843193660442832,0.00010517923497483609,0.025464973223331917,0.22650709219858156,0.01688213591348187,2.8211668564553527,0.005262542405297519,0.006632428037704396,0.03840761056934591,0.0023341994861774446,2.761974174868387,0.36519607843137253,-0.0016716686674670175,-6.597693574288295e-05,-0.008528411364545803,0.0,0.07854327618752852,1.7842193992096878,0.014966092114740301,-0.000631148084233718,-0.08376948869825711,-0.0020115202080832344,3.5489261317533307,-0.21916666666666668,-0.0027025510204081696,0.000252707452691127,-0.024438775510204062,-0.0625,-0.11108162849658287,-1.0764582402721063,-0.018618893379690065,-0.002238170493197285,-0.0893475115740741,-0.002341454353741496,-3.04338023950314,-0.11026422764227642,-0.009323979591836732,-0.0008764529189791007,0.03611871577899455,0.07672764227642276,0.04098679585533564,-0.459127242699515,0.007391983338193473,-0.00820461387298822,-0.19938195150180674,-0.006463302181848345,1.1551319510359856,,,0.47916666666666674,0.6979166666666666,0.10416666666666667,0.0,0.59375,-0.4895833333333333,1.5909605996556886,0.02862852553007326,0.04296185886340659,0.3193089627478288,0.06859712167632288,0.3991999178924828,1.9102695624035173,0.46779703956880575,2.048343986840285,1.8295917368947665,0.0,0.21875224994551812,0.0,0.21875224994551812,5.932770444357159,980.0,322.8800000000001,176.0,246.0,9136.400200073469,3829.9645920000007,74.72412495516801,326.93330000000003,204.35416666666666,413.39683199999996,10537.70708941876,1204.0,356.65,241.0,251.0,8467.1395161843,4434.297495000002,105.42748527200001,365.812,143.60416666666669,443.5453319999999,14678.719900577873,2053.0,694.2299999999999,456.0,364.0,17768.686891030782,7490.6816610000005,187.2548087284331,710.2374999999997,247.3611111111111,876.5558759999999,25369.22398337911,2733.0,1111.6499999999999,588.0,377.0,29109.262918741682,9498.739096999996,267.66005538322503,1133.6939999999997,417.80555555555566,1410.8164279999999,34872.57955607939,2668.0,1499.8799999999997,615.0,332.0,42109.80253248835,8526.711962000001,305.03450947463796,1522.7551000000003,556.0763888888886,1932.906104,36797.52494058627,2149.0,1528.2099999999996,563.0,262.0,46882.182198112125,6759.996985000001,266.787391333521,1545.9625,490.6319444444445,2008.4099560000004,30526.17167043163,1706.0,1132.47,414.0,220.0,33958.814751052516,5453.653463,195.28189068071197,1144.0759999999996,406.138888888889,1478.6910920000003,23078.251115984636,1376.0,847.11,306.0,185.0,24665.43483409944,4415.843580999999,148.707576871846,856.3985,329.79166666666663,1098.452596,17884.094308956468,998.0,698.4800000000002,215.0,151.0,20726.98214987175,3106.314902,108.83626818614798,703.5140000000001,288.58333333333337,908.5420879999999,12902.732269546774,388.5,5.102142857142857,0.7311834632999674,43.92857142857143,158.5,71.85746948718443,1855.9358374285712,12.956032160214857,4.996998214285709,80.0980902777778,3.145560857142856,2883.3361661147214,13.6875,-0.322614795918362,-0.3493351476417843,22.325255102040806,54.4375,10.545365793090381,71.35720556632562,1.8179736305867735,-0.2822624043367306,-4.531792534722221,-0.20354447448979557,308.7975193584505,102.1875,0.49044642857143245,0.002134069524949835,-8.169642857142868,1.1875,17.651947749831443,492.2942229642846,3.343555611060426,0.62954129464286,7.181315104166667,0.14627217857142852,815.3000781862347,-153.8125,-1.0744515306122373,-0.04255372467637005,-35.006377551020435,-103.3125,-28.77762118634045,-740.064546586736,-5.332350772709532,-1.2073331951530542,-3.855143229166668,-0.5062303520408158,-1238.75607872881,-379.6875,-1.4229974489795911,0.006608059483051646,-14.697704081632654,-61.4375,-61.93778243745648,-1829.8631123316327,-11.903115297581593,-2.0370272640306073,-0.42263454861111205,-0.19349777040816293,-2995.195721854851,168.125,1.6477806122448788,0.029660544262903776,7.1811224489796,63.875,4.7607623276018876,795.5690535204095,1.4840369582939004,1.8703447066326397,10.830946180555548,0.6582442551020393,778.876717312885,74.5,-0.34102040816327156,-0.013459294891548122,-1.739795918367344,0.0,16.022828342255817,363.9807574387763,3.0530827914070215,-0.12875420918367847,-17.08897569444445,-0.41035012244897984,723.9809308776795,-32.875,-0.40538265306122545,0.03790611790366905,-3.665816326530609,-9.375,-16.66224427448743,-161.46873604081594,-2.79283400695351,-0.33572557397959274,-13.402126736111114,-0.3512181530612244,-456.507035925471,-13.5625,-1.146849489795918,-0.10780370903442939,4.44260204081633,9.4375,5.041375890206284,-56.472650852040346,0.9092139505977972,-1.009167506377551,-24.52398003472223,-0.7949861683673465,142.08122997742623,0.7220026102423619,0.6394283782043455,0.4158195907278273,0.36356686826150647,0.2582460440139467,0.21964487694302184,0.16072672901677518,0.13648502109864274,0.09654436005048034,0.0818951630604781,0.05917693114162857,0.048579982526087875,0.03693481665894472,0.03019659373286643,0.022849413377804238,0.01817696135011456,8.022154509736582,5.730627111336459,3.5434106813111583,2.2287635025594676,0.3864225221459027,-0.38400179903146503,4.115606537999519,0.9778572096100477,6.021919841403241,0.9948908482546373,13.636920888984678,10.99122370624404,16.010381812899183,11.742614207340573,1.9583608600185625,0.7527676271965227,3.4885075988404415,2.2783281674921065,7.008271075625906,1.0771131292628757,3.701594607518438,2.4744058680127323,20.864719376013433,14.702451117053874,0.20540183397795242,0.4518402414424815,0.6794596034469356,0.8158080211950135,0.8880707777762281,0.8880707777762281,1.63460920669625,591.891277323464,0.0,1.0,3.0,0.0,1.0,8.0,1.0,5.0,2.0,4.589170596080669,3.127609131521249,1.7776584825291906,0.9690118304730424,0.5404404019016145,0.5404404019016145,249.90036521071917,921.9514039669049,56.19922368266259,16.46341792798044,31.03893786302887,,10.0,408.0,5.601050810983688,15.007591973753234,16.6132258851585,35.665550337640845,44.787010185976854,6.4208216229260096,0.0,6.923737199690624,13.847474399381248,0.0,11.500000000000002,16.75,2.5,0.0,14.25,0.0,0.02083333333333326,-11.75,0.06704545454545446,0.0073275862068965525,-0.05971786833855791,0.038141025641025506,0.11190575916230328,0.0,0.5125000000000003,0.795833333333333,0.4454545454545458,0.5051724137931037,0.7576923076923074,38.183054391736526,0.6870846127217582,1.031084612721758,7.663415105947891,1.6463309202317493,9.580798029419588,45.84646949768442,11.227128949651338,0.6020942408376967,0.21739130434782605,0.13043478260869562,0.26086956521739124,0.8571428571428571,0.25931088629703125,-0.46051982622574705,-0.064311208461263,-0.008223568325459769,-0.024237885590828793,0.7406891137029687,1.3154172846375367,0.04394426629620044,0.023489594368527437,0.035551818503717206,-3.541438370283424,1.031782387714591,0.8294952745012891,1.2774147889353906,1.029213173487667,0.6851841950489227,1.1720094536063446,1.0369998303072523,1.1688331674108168,0.8512864996595022,0.777743714442056,0.8061691864996935,1.1354651196535148,0.8761883131631031,0.5765825859953386,0.5434276379994071,1.9306551889048302,1.092039339395064,1.0918309214270339,0.8840402455839476,1.086227806107661,0.6081474586118646,0.5084619653026317,0.5438500817833872,1.0336854302134348,1.1225548660103635,0.857021079473698,0.6665919067503755,1.6551738815817476,1.198160107024295,1.2613664839211107,1.1286955697368428,1.2623113251752653,0.8896652687312956,0.7801173651393997,0.8160706006977483,1.2362716202679525,1.171292586386926,0.8723489681149768,0.6849899346989994,0.9425678785089738,0.9218498898875066,1.2087542159628804,1.1763472020469357,1.2232440904786193,0.9197059256066719,0.7773307631640234,0.7991236866300706,1.2405556078315882,0.8092591071314476,0.603973736128114,0.57102586434885,0.7214726402583175,0.7081571470121036,0.8913010723327943,0.8136111338611647,0.894887487892864,0.631467049015767,0.5650285504169594,0.5665453824161919,0.8846744955245232,0.8983458248164131,0.9884111141306582,0.9022000345313496,0.8837876614060259,0.9585111647182533,0.842200985617404,0.8961212230224818,0.8429045050737224,0.9781475319752367,1.0321843345078103,1.0002323460192346,0.8552930312208392,1.0131703131703131,1.1049279014419706,1.1758134967785872,0.9265040650406504,1.0097791798107256,1.02009240814202,1.0119070187713926,1.0135633715337513,1.0887479709544676,1.1341302439500174,1.131608541367246,1.0010208811906574,1.027246758954076,1.4692933783600746,1.5470956139840222,0.6718223279793774,1.0480623733682133,0.8352130904163325,1.0176349688064814,0.8292272254819576,1.4114632356939667,1.537983038842233,1.5463802197262602,0.8572510761494216,8.0,0.0,6.444444444444446,3.576388888888889,2.586666666666667,1.2119444444444447,0.8196825396825396,0.44533021541950113,0.2900053539934492,0.16063271604938273,4541.277973838741,5539.688332864824,2196.9214596781876,1868.1422763554272,12.530851453291582,0.482508187667017,6.484613028639255,0.932397723341262,1.0,0.8571428571428571,1.2181843259769356,2.6797457905363546,4.029696439528413,4.838343091584561,5.266914520155989,5.266914520155989,0.2962962962962963,0.0,0.14320987654320994,0.06747903563941299,0.06158730158730159,0.03672558922558923,0.0303586125808348,0.02120620073426196,0.020714668142389227,0.016063271604938274,0.6936408523542343,17.415637860082306,5.497283950617284,2.264201381153932,145.07515527389634,1.0,4.155649891394274,99.94315960200603,,95.202276072944,95.0034678179411,95.6326240729622,95.20637199897718,103.08331323519548,95.15366231172686,95.21067102801467,98.93523179252172,0.03344021988089785,-0.06001608781383596,-0.45347352636772936,0.48237563731569494,0.32599048281024434,0.13929186240755187,0.036493111299441106,0.1331838538296495,-0.05361420340847294,-0.05370118552041682,-0.06141822213016164,0.10165167489729697,0.12377924142630024,0.04523556587691812,0.0013734829384798308,-0.08751793400286956,0.0035257005010205975,0.11560105025099227,0.12482536570403809,0.12144442952591265,0.05928653847500034,0.04219129807266289,0.02188289132294111,0.13306482592552163,-0.11607943021555588,-0.061743163042497884,-0.017063412054696855,-0.23364406418933314,-0.19110773448725782,-0.11741879849430695,-0.11691259528652427,-0.12067056684831974,-0.07083903021366783,-0.014111494669556416,-0.047185085730101634,-0.12596363330467528,-0.2065272819989801,-0.058937764640933574,0.0019098081223977265,-0.07070409572020249,-0.08191179096482352,-0.18214862036734847,-0.2083520594453562,-0.19414704108965966,-0.08614494549615277,-0.0011150259821706284,-0.012999301789330822,-0.2195189821797063,0.08593700083061785,0.06413361094480163,0.008055484641307373,0.032462665052182475,0.08002774235407299,0.01315659482447533,0.08512435655124316,0.02274634479540948,0.07432781725829331,0.02685240290279543,0.04155544183133903,0.05364291393086063,0.05264087617028793,-0.01834786833675125,-0.005053052465008627,-0.010871991072851885,0.0,0.061210386309053684,0.05383606714237391,0.06468810420207835,-0.007073104932486045,-0.05856683162899181,-0.03581082572186437,0.06892705252817861,-0.03159159159159159,-0.029662606747865115,0.01935440017589323,-0.03115447154471542,-0.022082018927444796,-0.08656819173013129,-0.03248046631760673,-0.0804766471994735,-0.025082568022683233,-0.06246666594417291,-0.0416845992700401,-0.05910836738881832,-0.015893942723211017,-0.10233795324093516,-0.0671259210941619,0.04604402141582395,0.027108819984098895,0.031941850781541214,-0.013853456069255074,0.03195045071051828,-0.09194687634144313,-0.1393964480973259,-0.11506530587752338,0.022434910649069783,9.880782186800237,19.15675050585315,5.688218364190332,10.457509515953172,24.98745057304241,30.32984514077844,33.502746680336756,33.93474668033675,33.93474668033675,49.16025568416684,43.9102016854744,0.0,5.250053998692435,0.0,5.250053998692435,4204.9959085030905,4017.082901552073,829.2195566526916,266.0,45.0,67.0,90.0,122.0,151.0,186.0,220.0,256.0,332.2351448840009,27.0,4.976733742420574,5.910796644040527,6.878326468291325,7.83399634170946,8.802823159741887,9.765087182800102,10.734852004820683,11.700159933624827,12.670532813144911,0.5416666666666666,0.9528571428571428,1.1298712956137937,0.4943147353021636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6288855431993156,0.9402661064425774,0.9856674643637497,0.5681007531040099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,2.0,8.0,0.0,0.0,0.0,4.0,0.0,3.0,0.0,0.0,10.213054789681411,0.0,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,0.0,13.847474399381248,86.37109368361183,11.993926152995277,11.86313125940448,134.61739958192405,-239.07203568545034,-33.386209775664824,-4.269143494383042,-12.58273872028686,384.5177647926432,682.8793682814545,22.81301390699777,12.1942744335974,18.456199142742012,0.5,0.7667354747805027,0.2900869272723213,86.19796394583403,0.1644959969733044,148.50491472050746,0.23326452521949717,5.0,0.0,0.20976577845276947,0.46143998885931603,0.6938953264631278,0.8331405875000814,0.9069386305546948,0.9069386305546948,4.401000000000005,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,93.45260000000006,15.007591973753234,0.0,0.0,34.501605123439134,77.73883539346365,0.0,11.835184978490059,0.0,0.0,4.007333185232471,0.0,5.459585514144159,2.3978952727983707,7.130098510125578,4.948759890378168,8.899867211223587,7.221835825288449,10.72006844026127,30.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.36,0.0,12.239873766655421,0.0,0.0,0.0,1.0701575097631641,0.0,0.7953945945662215,63.272792554372444,0.0,0.0,0.0,21.59735054703004,4.794537184071822,34.501605123439134,72.13778458247995,11.835184978490059,0.0,0.0,0.0,27.68162517692116,35.217590419161674,30.534544256588312,199.88631920401212,,190.34205214588803,189.93550706445365,191.22196459945482,190.35042760317967,208.06064143298454,190.24264439089558,190.3592183559746,198.568703921645,30.534544256588312,199.88631920401204,,189.654552145888,189.14979277873948,190.74584558828946,189.66494726065838,209.4135092634086,189.53116183275608,189.67585765537257,199.06744701921764,5.23216307617286,146.90412978599875,,141.62051514728972,141.39975395971993,142.09838403727863,141.62506335056366,150.38050099327194,141.56653338529355,141.62983708364956,145.76668413455226,1.2722726773578463,8.328596633500505,,7.930918839412001,7.913979461018902,7.967581858310617,7.931267816799153,8.669193393041022,7.926776849620649,7.931634098165609,8.273695996735208,2.640823514918113,99.94315960200603,,95.202276072944,95.0034678179411,95.6326240729622,95.20637199897718,103.08331323519548,95.15366231172686,95.21067102801467,98.93523179252172,52.65490196078433,0.0,6.741566021827566,0.0,0.0,0.0,20.469956029103304,55.19737800436999,8.043784026727975,0.0,0.0,0.0,2.391503212396069,0.0,-0.3355684943730577,0.0,0.0,31.813642173824555,398.03934673198813,68.2183222547084,150.06576427003586,225.66300061359112,270.9472131287354,294.94721312873537,294.94721312873537,1454.0,130.27330829059431,121.09581764257905,74.78544384945207,57.53,57.53,1.0,7.4570320891223805,5.754887502163468,4.348726650927418,4.826461972201735,,4.840544114980223,4.841164029973731,4.839165733514348,4.8405312281880954,4.810397263948376,4.84069671448289,4.840517697453086,4.827283864782186,0.1811969437886424,0.2011025821750723,,0.20168933812417597,0.20171516791557212,0.20163190556309785,0.20168880117450397,0.20043321933118233,0.2016956964367871,0.20168823739387856,0.20113682769925775,2.3453518156777506,2.449582425669844,,2.4524958722141945,2.4526239312271443,2.4522110741165726,2.452493209949586,2.4462484093185584,2.452527396996062,2.4524904146460784,2.44975270000611,272.3200000000004,175.24941410606766,143.9796564904028,,142.389870687799,142.31152668742027,142.55915991973865,142.39148390659884,145.37700834292806,142.37072100228428,142.39317708104247,143.8385882186608,7.302058921086153,5.999152353766783,,5.932911278658292,5.929646945309178,5.939964996655777,5.9329784961082845,6.057375347622003,5.932113375095178,5.933049045043436,5.993274509110866,6.041678920073668,5.845140752577533,,5.834037600991317,5.833487241891723,5.835225808240144,5.83404893051675,5.8547991630099645,5.833903104251934,5.83406082142715,5.8441604930864735,0.0,12.239873766655421,20.469956029103304,0.30438860806668355,2.546940704522549,0.0,9.11394153649114,6.741566021827566,0.0,343.4440758167661,69.88462585963894,-124.11070054292867,-17.331955499733542,-2.2162625096951545,-6.5321421338383505,199.61669303057002,354.50669310079354,11.843037724488577,6.330476662514169,9.581261975697121,1160.0,53.0,3.1956648671998353,2.5361709339000287,0.3966898981103606,0.2989701443179332,1.863447996458879,1.3757227748502998,0.6943352503760556,0.43261205263853036,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.45354162121816566,0.40161956817974037,1.147928681831343,0.9428525705709944,17.328062645816686,15.346281076904292,11.227128949651338,9.816305443060674,11.621071980627601,9.884019462435983,10.768690844123936,9.144496413609064,8.68899240454323,7.370564675443029,7.219585599278686,5.926757868182721,5.577157315500653,4.559685653662831,4.249990888271588,3.380914811121308,8.509559561364556,6.818479782121016,13.227073820916194,10.733730621534429,21.562383129149705,17.01035864012975,87.05237352883985,46.83068474918475,33.24148330965132,23.749383666641208,21.064190636517342,21.064190636517342,144.0,184.0,58.81337599999997,32.970623999999994,0.30357142857142855,177.03,9.104166666666668,4.937499999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,56.0,0.0,0.0,59.0,0.0,2.0,2.0,57.0,2.0,27.0,57.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,3.0,2.0,0.0,24.0,3.0,0.0,0.0,3.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4011973816621555,5.849324779946859,3.9318256327243257,4.343805421853684,4.634728988229636,4.941642422609304,5.1647859739235145,5.375278407684165,5.560681631015528,5.762051382780177 +312145,COC[C@H]1OC(=O)c2coc3c2[C@@]1(C)C1=C(C3=O)[C@@H]2CCC(=O)[C@@]2(C)C[C@H]1OC(C)=O,0,24.8,6.507454545454544,3.7818181818181817,9.454545454545455,160.68916591039957,98.00371503636369,1.4538371221159265,6.552478181818179,6.026515151515151,8.027067854545452,222.1459058598504,26.23728813559322,6.453389830508475,4.677966101694915,8.372881355932204,142.9039199349085,100.24767394915257,1.8125736176271192,6.601042372881356,3.2158662900188326,7.8756210847457595,273.34443318706593,22.910714285714285,6.408839285714286,4.4375,7.0,151.39581552510793,86.9058324375,1.5838818926391434,6.513488392857141,3.1996527777777777,7.903902321428572,236.64193588170014,21.56578947368421,6.425986842105264,4.032894736842105,6.131578947368421,150.61925526875947,80.1162238223684,1.54252078596375,6.530576973684209,3.2862755847953213,7.921972657894735,226.39672896702703,19.3265306122449,6.361887755102039,3.433673469387755,5.336734693877551,154.16717302253863,70.72084793367345,1.3737353949626425,6.449855612244899,3.2790178571428568,7.89314912244898,198.9975419301964,17.52995391705069,6.3889400921659,3.032258064516129,4.7050691244239635,159.40646650112302,63.351115926267276,1.2221373794836867,6.448345161290322,3.385304659498208,7.962206562211981,176.32272325561408,18.12807881773399,6.4966502463054185,2.8472906403940885,4.665024630541872,158.6646601968893,65.32938539901478,1.23643957196932,6.553076847290643,3.9603174603174605,8.056121931034484,179.1750817167064,15.358585858585858,6.37010101010101,2.3434343434343434,3.409090909090909,160.07106092611932,53.24330865656567,1.1374655397420352,6.4209828282828285,3.9941778900112244,7.955950020202023,156.97936174518128,10.452513966480447,6.128212290502792,1.7877094972067038,2.0614525139664805,168.5434575601232,33.56142284357541,0.8794916040038827,6.147758659217878,3.298572315332091,7.80663966480447,112.84216221930112,7.915371900826448,0.18451570247933885,0.027476476385721888,0.8608264462809916,5.006280991735536,1.3357563196489426,37.32329752595042,0.2306400530061672,0.1681274710743802,2.4852754820936656,0.12606236561983472,48.472979267961314,0.4988037540271742,-0.0009717887659335638,-0.011618013186648605,0.44395013307185893,1.9182182378484385,-0.09191599735706237,2.3493645461605355,-0.011623825334931441,0.0014409726852501199,-0.036576629157522786,-0.0037082010589718343,0.7685647192856437,1.4560566706021254,0.008627154663518318,-0.0011093661069092634,0.14063459268004724,0.6203423848878397,0.30827716144584993,7.028659062361278,0.05645824150008861,0.009950808146399094,0.1867325446018628,0.003938133081463987,12.58624654623743,-0.39671161374510683,-0.007429578077424927,0.0012631928196097102,-0.028649412788168693,-0.22924749891257065,-0.012197584762044753,-1.8583763572901217,-0.003092704600289951,-0.007287530882992531,-0.11891118118988935,-0.004343462270552427,-1.5173224035517674,-0.28847023106763386,-0.00464742789677853,-0.0007170220241741989,-0.06314555574295831,-0.06101197503794898,-0.19948281553656788,-1.4324469105515232,-0.03285329559585018,-0.003501942317422809,-0.19815620256367011,-0.004470281760836565,-4.958408433673372,0.04591842175419887,-0.005695425981642968,-0.0005618200259042104,-0.11126632897893896,-0.2646806565868149,-0.01927270699696406,0.2423892296423816,-0.0019074908830141904,-0.00435950291350875,-0.08474599366094965,-0.004851020835586737,0.3938808610500583,-0.5926670195008754,-0.002115344216911553,-1.2722815883796519e-05,-0.20932622236697473,-0.6009966209339249,-0.0875641172095128,-2.8531870693449477,-0.017138804248218314,-0.0031501580425842926,0.00981955696689242,-0.0001278194487644934,-4.5045376807065525,-1.4803856749311293,-0.0003348025711661854,0.0013128474794558526,-0.1304315886134068,-0.6535720844811754,-0.27170250976146776,-7.175113136877868,-0.05207025456820464,-0.0035147713498622237,0.11189827568615443,0.0030370815794306403,-12.777668732688964,-0.5082616925989193,-0.013408541483909747,-0.0006559953901572624,0.030184219031349484,-0.2417304584699202,3.526083198034932e-05,-2.3534481667833274,-0.0008387973144512249,-0.012597486310540746,-0.22489091011691306,-0.008462470038321198,-1.26007172260524,,,0.456989247311828,1.0161290322580645,0.3548387096774194,0.0,0.6612903225806451,-0.3064516129032258,1.26652954252951,0.024976670979541385,0.03884763872147687,0.9290501072101774,0.18583943290799101,0.28641659167289,2.1955796497396873,0.47225602458088106,2.05564497155172,1.5692863379639652,0.0,0.48635863358775533,0.0,0.48635863358775533,7.7844930496000115,1364.0,357.9099999999999,208.0,520.0,8837.904125071977,5390.204327000003,79.96104171637596,360.38629999999984,331.4583333333333,441.48873199999986,12218.02482229177,1548.0,380.75,276.0,494.0,8431.3312761596,5914.612763000002,106.94184344000003,389.4615,189.73611111111111,464.6616439999998,16127.32155803689,2566.0,717.7900000000001,497.0,784.0,16956.331338812088,9733.453233,177.39477197558406,729.5106999999998,358.3611111111111,885.23706,26503.896818750414,3278.0,976.7500000000001,613.0,932.0,22894.126800851438,12177.666020999997,234.46315946649,992.6476999999998,499.51388888888886,1204.1398439999998,34412.30280298811,3788.0,1246.9299999999996,673.0,1046.0,30216.76591241757,13861.286194999997,269.25213741267794,1264.1717,642.6874999999999,1547.0572280000001,39003.518218318495,3804.0,1386.4000000000003,658.0,1021.0,34591.2032307437,13747.192156,265.20381134796,1399.2909,734.6111111111112,1727.798824,38262.03094646826,3680.0,1318.82,578.0,947.0,32208.926019968527,13261.865236000001,250.99723310977197,1330.2746000000004,803.9444444444445,1635.3927520000002,36372.5415884914,3041.0,1261.28,464.0,675.0,31694.070063371626,10542.175114000001,225.218176868923,1271.3546000000001,790.8472222222224,1575.2781040000004,31081.91362554589,1871.0,1096.9499999999998,320.0,369.0,30169.27890326205,6007.494688999998,157.428997116695,1100.4488000000001,590.4444444444443,1397.3885,20198.7470372549,435.34545454545463,10.148363636363637,1.5112062012147038,47.34545454545454,275.34545454545446,73.46659758069184,2052.781363927273,12.685202915339195,9.24701090909091,136.6901515151516,6.933430109090909,2666.0138597378723,29.42942148760328,-0.05733553719008026,-0.6854627780122676,26.193057851239676,113.17487603305787,-5.4230438440666795,138.6125082234716,-0.685805694760955,0.08501738842975708,-2.1580211202938444,-0.21878386247933823,45.34531843785298,163.07834710743805,0.9662413223140517,-0.12424900397383751,15.75107438016529,69.47834710743804,34.52704208193519,787.2098149844632,6.323323048009924,1.1144905123966986,20.914044995408634,0.44107090512396663,1409.659613178592,-60.300165289256235,-1.129295867768589,0.19200530858067594,-4.3547107438016415,-34.84561983471074,-1.8540328838308024,-282.4732063080985,-0.47009109924407255,-1.1077046942148647,-18.07449954086318,-0.6602062651239688,-230.63300533986865,-56.54016528925624,-0.9108958677685919,-0.14053631673814299,-12.376528925619828,-11.958347107438,-39.098631845167304,-280.75959446809856,-6.4392459367866355,-0.6863806942148706,-38.838615702479345,-0.8761752251239667,-971.848052999981,9.964297520661155,-1.235907438016524,-0.12191494562121366,-24.144793388429754,-57.435702479338836,-4.182177418341201,52.598462832396805,-0.4139255216140793,-0.9460121322313988,-18.389880624426073,-1.052671521322322,85.47214684786266,-120.3114049586777,-0.42941487603304523,-0.0025827316244106933,-42.49322314049587,-122.00231404958676,-17.7755157935311,-579.1969750770244,-3.479177262388318,-0.6394820826446114,1.9933700642791612,-0.025947348099192163,-914.4211491834302,-293.1163636363636,-0.06629090909090471,0.25994380093225883,-25.825454545454548,-129.40727272727273,-53.79709693277062,-1420.6724011018177,-10.30991040450452,-0.6959247272727203,22.155858585858578,0.6013421527272668,-2529.9784090724147,-90.97884297520655,-2.400128925619845,-0.11742317483814999,5.402975206611558,-43.269752066115714,0.006311688924482528,-421.2672218542156,-0.15014471928676926,-2.2549500495867933,-40.25547291092744,-1.5147821368594945,-225.55283834633798,0.7191020729340142,0.5775424040392129,0.4182839074859232,0.29880361566916996,0.25688010368050185,0.16308283645364383,0.14915507034493067,0.08745858082376172,0.08872288746852186,0.046189305435699345,0.053415663687077564,0.023657994404840905,0.03277101587530996,0.012716566582922938,0.019625599606588013,0.006676567563633015,8.033817298591195,5.691481103395887,3.560838596585194,2.1900395586467685,0.47806433514724117,-0.5256283058460309,4.03503902676261,0.9723878104841692,6.032891132412578,0.9950241383911191,13.647689644791722,10.952019449120202,16.019137114811166,11.703285610526395,1.9981191643303626,0.7403161783461317,3.5072759654417935,2.239714737642562,7.011535698907865,1.1205762451768373,3.72012437612906,2.4357724244709287,20.900734091690104,14.69976942327282,0.24032413764368882,0.595391231628608,0.8451263907054387,0.8752068550543584,0.8752068550543584,0.8752068550543584,1.648305073772692,1077.324782880168,0.0,3.0,4.0,0.0,3.0,5.0,4.0,1.0,2.0,4.328745909211255,2.182580454351115,0.6730827274300717,0.49126454561189004,0.49126454561189004,0.49126454561189004,113.36559116033797,1690.3187196596539,81.45561271946659,30.733067630175523,79.92871825216064,,10.0,530.0,34.976524290193865,19.178148736287287,41.83579843690164,29.551303797687552,0.0,20.296697736607214,0.0,13.847474399381248,0.0,18.627739798453494,14.166666666666668,31.5,11.0,0.0,20.5,0.0,0.043010752688172005,-9.5,0.19108734402852035,0.03314456035767532,-0.15794278367084502,0.0,0.2050179640718559,0.0,0.6369696969696963,0.8978494623655908,0.44588235294117595,0.603825136612021,0.8978494623655908,39.26241581841481,0.774276800365783,1.2042768003657829,28.8005533235155,5.761022420147722,8.878914341859591,68.06296914193031,14.639936762007313,0.5089820359281441,0.23529411764705882,0.07058823529411765,0.4235294117647058,0.5652173913043478,0.399989348418787,-1.1929219311194557,-0.11248786388350618,-0.021689489656717374,-0.0994101609266213,0.600010651581213,1.7894623144491841,0.031231739562991807,0.03253567844453062,0.04161540266160894,-5.001480252658273,0.6811656577211231,0.6385265873584632,1.3596238072074076,0.7635905647113959,0.3639803647694003,1.2328145146127933,0.690288877697844,1.1975414383865222,0.6159029196505038,0.5335275825896726,0.6905729163649492,0.9984050125652882,0.6816630918571905,0.7675146591351172,1.024999789309955,1.2474798387096775,0.7748383376726288,0.8479765361356925,0.6817602796634268,0.8247833714312943,0.750089202219421,0.521264138764561,0.7979366353752052,0.7412687881323343,0.907854346545448,0.8641463162798061,0.9187860558256962,1.316888491389765,0.9399436462590712,1.0888022422590393,0.9116458295431304,1.0810138700041338,0.8599187034332899,0.8259080997284567,0.8767825303043134,1.0227641354462482,0.945167763898075,0.9028146965393579,0.9842675742215291,1.1580104391987212,0.9290555564539608,1.1843839037137165,0.9497654044372482,1.172124357188355,0.8955679972946495,0.9710346054611408,0.9218226855543116,1.0914471726265922,0.9845986641641556,1.0648240036882206,1.158951305342222,1.1352969908046466,1.065992280558254,0.9955479733808251,0.9826004676597493,0.984532745546985,1.0556648343557569,0.926824548909731,1.0779560536314836,0.9612967294556741,1.0641116216985773,1.1013010906348863,1.1716682146916135,1.2753966992803798,1.154966508708517,1.0538090140893868,1.06296295666416,1.0498373097311393,1.0978136265958829,1.0956425546241992,1.1057603321396718,1.0449000098129868,1.1855788506515201,1.0439210978930766,0.9366836371631344,0.9648617511520738,1.1266838351822508,1.1707200087011091,1.189171871055419,1.1898399907654353,1.0598732052185507,1.0676449723162866,1.0212070134321758,1.2291713143786223,1.1679801753439587,1.1728615690981454,0.9281871483169509,0.6116932265787917,1.0972706708337394,0.8781769786039904,1.163658298916164,0.8989363087689729,1.1866288404196317,1.241609437415048,1.1429050990660847,1.0077175652942083,8.5,0.0,6.000000000000002,4.506944444444445,4.511111111111112,2.5661111111111112,1.791111111111111,0.9141510770975056,0.4711750440917106,0.10500771604938272,7501.876172245549,8330.583952572117,3080.8176616405985,2842.6851287978934,10.88144154428391,0.48165164292829327,5.64037734705138,0.9292045327379383,1.0,0.5652173913043478,1.4526138043134043,3.598779259173545,5.108276986094588,5.29009516791277,5.29009516791277,5.29009516791277,0.24285714285714285,0.0,0.10526315789473686,0.06531803542673106,0.06014814814814815,0.035640432098765426,0.02633986928104575,0.018283021541950113,0.018847001763668426,0.008750643004115226,0.581447452016304,22.775510204081634,7.765466297322253,3.0371900826446283,178.43342899950392,1.0,4.40725694738654,140.42687087441416,,119.40794847619912,118.13473546179655,122.16442341984776,119.43418199616514,160.92963957625238,119.09659379664699,119.46171642485776,139.87377257981373,0.06301709638874882,-0.005266699543050433,-0.42283490151910047,0.5157254810070558,0.3831623196970106,-0.06881195020751937,0.06294632848362479,-0.05039812115643517,0.008570715279554931,-0.014717333921754868,-0.02941560743159959,0.015855528809916457,0.18395303326810178,0.04675566657793986,-0.04037512275357636,0.16337159863945583,0.12391281790053588,0.23078847310029568,0.1883182764726064,0.24478940567438628,0.05918609304482324,0.0751355517516127,0.031239561958881404,0.2596548992101344,-0.05011913763694237,-0.040265288956948544,0.04597361036679822,-0.03328128789716218,-0.04579197597797983,-0.009131594275556537,-0.049791322859348536,-0.013409226021151034,-0.04334527151585181,-0.04784627782579469,-0.034454868819858354,-0.031302437491286125,-0.03644430542012998,-0.02518716745692105,-0.026095850650878886,-0.07335457224364397,-0.012187085610789468,-0.14934072375490992,-0.038379430690858994,-0.14244401684633545,-0.020829090540911886,-0.07973208764637142,-0.03546087477302749,-0.1022922153446153,0.005801170473039239,-0.03086689048744084,-0.020447309837594727,-0.12925524007730047,-0.052869716466925204,-0.014428310548460834,0.0064943144285108095,-0.008270423363816974,-0.02592974774229543,-0.03409923538518847,-0.038481118545846765,0.008125781971697325,-0.07487544829561259,-0.011464304601113385,-0.0004630439400303859,-0.2431689027112514,-0.12004851943509795,-0.06555396064495207,-0.07644520335753191,-0.07430974813277567,-0.01873672412041844,0.003951093968311373,-0.0010139382053955541,-0.09292883888578869,-0.1870266733489252,-0.0018144936537510942,0.047780780221807186,-0.15151903055128865,-0.13055041967482542,-0.20340724259711934,-0.1922422082852969,-0.22576414586070317,-0.020905395932038235,0.04502449587274252,0.024091897407268584,-0.2636039485432348,-0.06421197878849526,-0.07266883687262968,-0.0238748004273994,0.03506423293772358,-0.048285435609581935,2.6397653121054602e-05,-0.06305574059063256,-0.0036368241487908255,-0.07492818532295399,-0.09048932874333057,-0.06712923398440264,-0.025995343006244648,2.303121051983192,16.974907459152668,22.18823926603231,13.316462503987278,38.909420930802526,44.35695827590257,44.5402310031753,44.5402310031753,44.5402310031753,63.724994118103325,48.64787647688292,0.0,15.077117641220415,0.0,15.077117641220415,4936.437509080718,3725.9170000981335,2169.6687537849,575.0,57.0,88.0,136.0,198.0,269.0,348.0,444.0,521.0,428.14711772800064,35.0,5.220355825078324,6.163314804034641,7.147559271189454,8.12296471523406,9.116578992161708,10.103280590242088,11.100329996152944,12.09157607851474,13.089858780567205,0.6848484848484846,1.0058181818181822,1.1210648061209414,0.6485524632723036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.662264910179641,0.9908734402852047,1.0236244454744095,0.6403695723775515,1.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,4.0,0.0,0.0,0.0,0.0,4.0,0.0,3.0,0.0,3.0,0.0,2.0,0.0,0.0,18.627739798453494,29.8177922091976,5.760247418874442,5.783244946364939,0.0,14.383611552215466,4.794537184071822,0.0,0.0,6.923737199690624,18.9176633526859,49.344630524144605,12.021872433909698,226.70099746581516,-676.1094832967432,-63.7544750778967,-12.29289969630442,-56.34245694139526,340.06658862615313,1014.2092363629107,17.70113764156989,18.440167933871102,23.58626131076537,0.5,0.6346475045213359,0.15410449027080572,135.05749084755794,0.11455876073734679,16.9093904335949,0.36535249547866433,5.0,0.08571428571428572,0.25125816006833535,0.622479734439412,0.8835770889924923,0.9150261236188699,0.9150261236188699,0.9150261236188699,2.5364000000000004,,2.0,2.2857142857142856,1.3850734870264096,1.9941246327895499,-8.658354114713216,2.0697674418604652,1.9879584017515048,-3.1919558244642054,104.50500000000004,37.80588853474078,0.0,0.0,11.332896515558172,57.65659971274329,13.716679505790452,34.29652245804602,0.0,0.0,4.2626798770413155,0.0,5.700443573390687,3.044522437723423,7.351799869057777,5.476463551931511,9.120306249272202,7.669961995473577,10.95903575173321,37.66666666666665,1.254424209498614,0.0,0.0,5.618313413328295,0.0,0.0,0.7508955603846488,0.0,55.320000000000014,0.0,51.2138750666321,0.0,0.0,0.0,0.0,0.0,-0.30263591007390467,61.65856433665178,0.0,0.0,0.0,49.429712749920625,29.21465369894057,11.332896515558172,66.50990123826197,21.826522992830938,0.0,0.0,0.0,35.6703854799767,36.42457005988025,39.278775165638585,280.8537417488283,,238.6868646943337,236.12200548580506,244.23948725988737,238.73971079021482,323.590671485122,238.05965420994815,238.79517746895735,280.10046561532687,39.27877516563859,280.8537417488282,,236.82213941973228,234.01273048076507,242.9437733526692,236.88012991146212,330.517633267218,236.1341508236655,236.94099980623747,282.9395009840917,5.371734530527762,186.7974078152593,,160.90591494334367,159.46321843203955,164.0407502375341,160.93567553931553,206.36435787223624,160.55280689909696,160.96691347217387,182.76514962458626,1.2670572634076962,9.059798120929946,,7.699576280462377,7.616838886638873,7.878693137415722,7.701280993232736,10.43840875758458,7.679343684191876,7.703070240934108,9.035498890816996,2.7106197005787487,140.42687087441416,,119.40794847619912,118.13473546179655,122.16442341984776,119.43418199616514,160.92963957625238,119.09659379664699,119.46171642485776,139.87377257981373,54.49803921568626,0.0,6.529690456799494,0.0,0.0,0.0,0.0,56.29934450109252,1.2785378611321072,0.0,16.800704456937098,0.0,-1.850061885865459,0.0,-1.7937432287729913,0.0,0.0,35.22032648076534,359.69763415684906,79.89375923723723,197.93285925454495,280.95523423520234,290.95523423520234,290.95523423520234,290.95523423520234,2702.0,148.15581905317518,207.06995193511935,84.5852133056237,109.11000000000001,109.11000000000001,1.0,9.073711329441368,6.129283016944966,4.737593815998743,5.478764331601754,,5.4865967678822525,5.4883009480274,5.482760784713867,5.486561162423553,5.417080877701395,5.487017885582438,5.486523770876407,5.453371335457551,0.15282560696770137,0.17673433327747592,,0.17698699251233072,0.1770419660654,0.17686325111980217,0.17698584394914688,0.17474454444198048,0.1770005769542722,0.17698463777020668,0.17591520436959843,2.68693148455291,2.832281700091037,,2.8337102782366173,2.834020837879715,2.83301087842102,2.833703788681117,2.820959198404565,2.833787029191283,2.8336969735425535,2.8276361225779967,297.4900000000009,307.3500573454834,214.86692233545799,,213.0249260673745,212.72965818741287,213.66168427061947,213.03100425602966,222.44690634573055,212.95276699435772,213.03738357085402,217.97157263493094,9.914517978886561,6.93119104307929,,6.871771808624984,6.862247038303641,6.892312395826434,6.871967879226763,7.1757066563138885,6.869444096592185,6.8721736635759365,7.031341052739708,6.8593894614244935,6.501420982098709,,6.492811294144267,6.491424260683117,6.495795960925537,6.492839826495176,6.536090561457102,6.492472501409894,6.492869771522816,6.515766765020074,22.41901787026539,51.2138750666321,0.0,-0.07414396468463869,-1.582769130028554,0.0,0.9061084866045173,5.114546432770639,1.5033652384405451,385.54842733548264,128.4867770983415,-383.1969397819831,-36.13396994246006,-6.967217086945147,-31.933078315165254,192.73871954617522,574.8209206855854,10.032431052194243,10.45128946701064,13.367928388036871,2102.0,69.0,3.334098009993137,1.960110345178868,0.21407617506269555,0.17423085626466897,1.4831418720615335,0.7047306718920056,0.24370840810822936,0.12525603695263354,0.0,0.0,0.0,0.0,0.17955837819827097,0.1016315661981427,0.5435708228284122,0.2927603419787956,1.29500543355862,0.545488526407772,22.29216426095444,17.903814525215598,14.639936762007313,10.458126548420948,14.642165909788606,9.295721677857697,13.125646190353898,7.696355112491031,12.066312695718974,6.281745539255111,10.576301410041358,4.6842828921585,8.81540327045838,3.4207564108062702,6.829708663092628,2.323445512144289,8.734591816188775,4.7292673370406675,16.076011623624694,7.809902420361419,29.684848455962513,12.098418649167206,111.00783727457735,42.447859511773466,26.914876065492017,25.79149374660728,25.79149374660728,25.79149374660728,184.0,237.0,60.829031999999984,34.492968000000005,0.34545454545454546,295.08,11.708333333333332,6.5138888888888875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,5.0,5.0,55.0,0.0,0.0,59.0,5.0,5.0,7.0,52.0,10.0,35.0,49.0,0.0,0.0,0.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,8.0,0.0,2.0,31.0,8.0,0.0,0.0,8.0,0.0,5.0,3.0,0.0,0.0,0.0,1.0,1.0,3.7727609380946383,7.825994112074308,4.37260741275739,4.9724140812760576,5.561882832361162,6.074195944705447,6.541751239754887,6.922151159265869,7.319036772411741,7.609552440355986 +3117,CCN(CC)C(=S)SSC(=S)N(CC)CC,0,41.72222222222222,5.610116666666666,2.388888888888889,2.882716049382716,161.61377655014945,165.7424718888889,2.0233682804716664,5.748161111111112,1.7432365493065083,7.365364111111112,214.73836665616233,33.02857142857143,6.040102857142857,2.857142857142857,2.831746031746032,146.44386930314568,125.62174131428576,2.0637281771428575,6.2198400000000005,2.101949833431315,7.61035957142857,243.50258463550693,27.870967741935484,5.866812903225806,2.4193548387096775,1.2831541218637992,162.38594858591267,105.35449138709676,1.5903205012513548,5.98404193548387,1.743849285366609,7.546951838709679,178.0032603638259,27.835616438356166,5.714339726027397,2.315068493150685,0.7975646879756467,162.32723566548188,105.75756198630137,1.7031943325530958,5.84013287671233,1.608001202623222,7.447567917808219,183.76181126141418,26.43243243243243,5.592675675675676,2.081081081081081,0.7837837837837838,146.58707680431985,93.63027897297296,1.98896373457827,5.806364864864865,1.5674007340674008,7.4384598378378355,197.65950124822822,20.8125,5.421201250000001,1.7,0.8347222222222221,154.71469769328291,68.04141956250001,1.6554903979547,5.612780000000002,1.2821159122085048,7.4049585125,147.35537182372013,19.08,5.512720000000001,2.2,1.2266666666666668,157.44992390809682,65.86486095999999,1.5598276633456403,5.668920000000001,1.4444444444444446,7.351451679999999,162.01688431548735,23.8,6.0769,2.5,0.9666666666666668,154.35194178031597,82.67671939999998,1.8143876930000005,6.23915,2.0435185185185185,7.767084199999999,203.78045244051842,13.75,5.905499999999999,2.0,0.3333333333333333,156.80352588698247,39.68860016666666,1.502791103333333,6.0447500000000005,1.8240740740740744,7.6151446666666684,164.62289424963086,22.459876543209877,0.048380555555555524,0.009487405217933002,0.4598765432098765,2.0593278463648828,1.8160161982898753,97.8979637283951,0.5406656400861727,0.05463487654320984,0.16526634659350703,0.027887061728395043,61.10646079174642,3.8877425044091702,0.008272301587301497,-0.0045668653930011705,0.26234567901234573,0.9069860866157161,-0.4769112307820195,16.262565728747813,0.03970604963977953,0.0087170282186949,-0.023463594399808402,0.0035870144620811324,-4.349379707955593,7.4917363600159295,-0.002520878136200775,-0.0001833167588685847,0.0024890481879729447,-0.27418248595070593,0.050676729542822305,32.16277927877341,0.1257375558757376,0.003327130625248918,-0.02272193705719526,0.006161113898845078,9.688248193755337,8.018814476577036,-0.00967987062404873,-0.0001469884933599668,-0.1318704549298156,-0.6579241595730689,0.9139790166485839,35.26843384846948,0.23654645171694594,-0.00400527228141383,-0.019786779704897974,0.00038742990021985396,23.54172799217472,-5.904320987654321,-0.004329204204204204,-0.0011138526956924126,-0.04396062729396062,-0.1831183034886739,-0.36792620215582567,-25.399668779446106,-0.1272635231618816,-0.00761340507173839,-0.0321553549434208,-0.004399241908575234,-15.699701918616773,-9.519598765432102,0.008433194444444465,0.0020801164573055904,0.08734567901234566,0.6750857338820302,-0.5421428661615096,-41.145901538117286,-0.23815686295222283,0.0032979012345678944,0.0185766270385612,-0.0009001270061728322,-16.070940759253183,-4.142098765432099,0.012929444444444445,0.00016573812264413903,-0.09320987654320985,0.25943758573388204,-0.21026936843070332,-16.80950799061729,-0.08005405973046618,0.012192901234567876,0.08390070111263526,-0.0004481061728395036,3.451975972956963,-8.726543209876546,-0.01860555555555563,-0.0009483536643817148,-0.29320987654320996,-1.3858710562414265,-0.22662274791637643,-38.376091928395056,-0.15590309877800623,-0.024126543209876512,-0.007455037341868631,-0.015565428395061707,-18.357244300649437,-13.436728395061728,-0.03553472222222225,-0.0024046550753371114,-0.23765432098765438,-1.1874142661179696,-0.2157457234634874,-60.20132073765433,-0.2644411071371913,-0.04513580246913576,-0.04079980185947264,-0.022630496913580222,-33.41935267549254,,,0.5708333333333333,0.6875,0.125,0.0,0.5625,-0.4375,1.2679627093966925,0.019683093112362937,0.019683093112362937,0.2550134940072355,0.08723425088343356,0.38772100365252193,1.522976203403928,0.4749552545359555,1.8836763709342903,1.1555398672766706,0.26185843451749735,0.0,0.0,0.7281365036576195,8.223637017777794,1502.0,201.9642,86.0,103.77777777777777,5818.09595580538,5966.728988000001,72.84125809697998,206.93380000000002,62.756515775034295,265.15310800000003,7730.581199621844,1156.0,211.4036,100.0,99.11111111111111,5125.535425610098,4396.760946000001,72.23048620000002,217.6944,73.56824417009602,266.36258499999997,8522.590462242742,1728.0,363.7424,150.0,79.55555555555554,10067.928812326585,6531.978465999999,98.599871077584,371.01059999999995,108.11865569272976,467.9110140000001,11036.202142557206,2032.0,417.1468,169.0,58.222222222222214,11849.888203580176,7720.302025,124.333186276376,426.32970000000006,117.3840877914952,543.672458,13414.612222083235,1956.0,413.858,154.0,58.0,10847.443683519668,6928.640643999999,147.18331635879198,429.67100000000005,115.98765432098766,550.4460279999998,14626.80309236889,1665.0,433.6961000000001,136.0,66.77777777777777,12377.175815462633,5443.313565000001,132.439231836376,449.0224000000001,102.5692729766804,592.3966810000001,11788.42974589761,954.0,275.636,110.0,61.333333333333336,7872.496195404841,3293.2430479999994,77.99138316728201,283.446,72.22222222222223,367.57258399999995,8100.8442157743675,952.0,243.076,100.0,38.66666666666667,6174.077671212639,3307.068775999999,72.57550772000002,249.566,81.74074074074073,310.683368,8151.218097620736,660.0,283.46399999999994,96.0,16.0,7526.569242575159,1905.0528079999997,72.13397295999998,290.148,87.55555555555557,365.52694400000007,7901.898923982281,808.5555555555555,1.741699999999999,0.34154658784558806,16.555555555555554,74.13580246913578,65.3765831384355,3524.3266942222235,19.46396304310222,1.9668555555555542,5.9495884773662535,1.0039342222222216,2199.832588502871,136.07098765432096,0.2895305555555524,-0.15984028875504097,9.1820987654321,31.744513031550063,-16.691893077370683,569.1898005061735,1.3897117373922834,0.3050959876543215,-0.8212258039932941,0.12554550617283963,-152.22828977844574,464.48765432098764,-0.15629444444444804,-0.011365639049852251,0.15432098765432256,-16.99931412894377,3.141957231654983,1994.0923152839514,7.795728464295731,0.2062820987654329,-1.408760097546106,0.38198906172839486,600.6713880128309,585.3734567901237,-0.7066305555555572,-0.010730160015277577,-9.626543209876539,-48.028463648834034,66.72046821534663,2574.5956709382717,17.267890975337053,-0.2923848765432096,-1.444434918457552,0.02828238271604934,1718.5461434287547,-436.9197530864198,-0.3203611111111111,-0.08242509948123854,-3.253086419753086,-13.550754458161867,-27.226538959531098,-1879.5754896790118,-9.417500713979239,-0.5633919753086408,-2.379496265813139,-0.32554390123456733,-1161.7779419776411,-761.5679012345681,0.6746555555555572,0.16640931658444724,6.987654320987653,54.00685871056242,-43.37142929292077,-3291.672123049383,-19.052549036177826,0.26383209876543157,1.486130163084896,-0.07201016049382658,-1285.6752607402545,-207.10493827160494,0.6464722222222222,0.008286906132206952,-4.660493827160493,12.9718792866941,-10.513468421535165,-840.4753995308645,-4.0027029865233095,0.6096450617283938,4.195035055631763,-0.02240530864197518,172.59879864784816,-349.06172839506183,-0.7442222222222251,-0.03793414657526859,-11.728395061728397,-55.43484224965706,-9.064909916655058,-1535.0436771358022,-6.236123951120249,-0.9650617283950604,-0.29820149367474524,-0.6226171358024682,-734.2897720259775,-644.9629629629629,-1.705666666666668,-0.11542344361618136,-11.40740740740741,-56.995884773662546,-10.355794726247394,-2889.6633954074077,-12.693173142585184,-2.1665185185185165,-1.9583904892546868,-1.0862638518518506,-1604.128928423642,0.7845026102423619,0.851364612582029,0.5066189381716859,0.5660027684731119,0.3158372505667884,0.3577791837006287,0.22782550273331761,0.2837625600882799,0.17688966229403308,0.23328106012233876,0.09652019664325313,0.2059430721003871,0.05845549118462454,0.10561843210936113,0.045034289862558086,0.07858996135725642,16.10118926504627,5.880096288329315,3.1248810484552902,2.2141680613330945,0.32885176052482107,-0.42063988308884087,3.12765455108376,0.9772270312839587,5.0180017411502424,0.5634064280963168,14.544475906220288,10.24448065760765,32.1606035223742,11.89604483605117,3.0118611154176134,1.049724591565703,3.104295861225737,2.3116535837213004,2.083585425435418,0.5389209559401058,3.2701321735246776,2.5733863961964287,24.5322153023065,15.591630798941544,0.301052364927639,0.40353315854964583,0.5070789548280497,0.5070789548280497,0.5070789548280497,0.5070789548280497,3.934472326013647,200.8589190857419,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6016067457394687,3.067737830492979,2.5283208335737184,2.5283208335737184,2.5283208335737184,2.5283208335737184,122.17771823900978,539.1493309749455,19.444341951551593,14.9763703048596,33.38228060700134,,9.0,212.0,0.0,0.0,0.0,0.0,34.82009379476824,0.0,21.587795952773448,0.0,37.49476826046345,24.43574688609339,9.133333333333333,11.0,2.0,0.0,9.0,0.0708333333333333,0.0,-7.0,0.10162962962962951,0.0,-0.10162962962962951,0.0,0.01502040816326522,0.0,0.5296296296296299,0.8166666666666665,0.4280000000000004,0.5296296296296299,0.8166666666666665,20.28740335034708,0.314929489797807,0.314929489797807,4.080215904115768,1.395748014134937,6.203536058440351,24.36761925446285,7.599284072575288,0.6989795918367347,0.4014598540145986,0.0,0.1970802919708029,0.8,0.38114436242151284,-0.39981247665089464,-0.01713235180198914,-0.011105902129191518,-0.03998124766508947,0.6188556375784872,0.6491666401089029,0.020698926981999394,0.01803240666969175,0.02496794769649627,-2.237562852128702,0.5602583482204205,1.0804960670609174,1.8878175325389586,0.7852348993288593,0.8797668609492094,1.3528310310346148,0.5750139291349756,0.7226042721795223,0.9899557669602352,1.5607239610352186,0.9246761186655879,1.0706916324354347,0.45940147260258796,1.7420688352314295,1.9184377453022732,1.3298332972504874,1.6498348150734607,0.9952776536447157,0.4722511973530261,0.5643320467941142,1.4212098637510124,1.265337409053976,1.2623964357601463,0.7373990843531081,0.531897270627479,1.561570690264039,1.5954320345033683,1.6796910912935554,1.7842323178173447,0.5108150367757109,0.5327536101393965,0.45494342287463824,1.3233556006268572,1.0703313206635419,1.2409285278479076,0.5538234050480358,1.6969700908824175,0.611250424794663,0.6718043835991111,1.1427534917467805,0.9165672750185658,1.358378838745984,1.673314330950059,1.6260468583740717,0.8083694511551718,1.2209131143940068,0.9222668001626844,1.4134989100033941,2.181127181530851,0.46864772923006226,0.2999980320294417,0.4756711409395974,0.23670899250624486,1.4698621515864738,2.145569618683229,2.0701665787405608,0.7248752944632435,0.8802452590927432,1.054211808974204,1.4211475985229383,1.43020475470661,0.5476373657920421,0.8496635482327726,1.43758389261745,1.0029641965029146,1.1547596811933596,1.4065273727111058,1.3531265271938837,0.6542829219792451,0.3912963283186352,0.965466440475073,0.990432087554859,1.5107187027621272,2.2381150599988517,2.518277990651916,2.5369127516778525,2.714612822647794,1.3559282297425452,1.507296486789611,1.367242825650103,2.053976454238859,1.1777624070551622,2.279386636441874,1.2941993848115243,1.5926034079978013,2.3473833036688285,1.999759566224268,1.585570469798658,1.8556411323896758,1.2481995499923275,1.6071073886237168,1.4648053010878734,2.254020800262122,1.1675744999711801,2.2976806221700223,1.503720675811227,3.5,0.0,2.4444444444444455,1.25,0.32000000000000006,0.33333333333333337,0.32653061224489793,0.125,0.0987654320987654,0.0,3499.1217843815243,4016.441199700476,1689.41086984639,1493.38452753716,11.982642328243207,0.3889465653786286,7.322034750512438,0.6365180904672151,1.0,0.8,1.5683182557028437,2.102187170949333,2.6416041678685938,2.6416041678685938,2.6416041678685938,2.6416041678685938,0.2333333333333333,0.0,0.13580246913580254,0.05952380952380952,0.01777777777777778,0.027777777777777776,0.027210884353741496,0.010416666666666666,0.012345679012345675,0.0,0.5241883975812549,16.0,9.074074074074074,5.777777777777778,117.90714002929566,1.0,3.607722097214823,64.89509080418078,,42.00994555478777,58.52576561307046,59.44794906724068,42.012552090941625,66.21379563040978,58.063966133546714,56.78348853984899,67.65179134980589,0.173097233946485,0.17098401397649082,-0.4813608450463279,0.5704697986577183,0.44042821458308556,-0.26261397405547493,0.16611750754965793,0.07343919549511427,0.15955061620393238,-0.14197442421547568,0.12862647549665576,-0.07117708424938035,0.3335608878171171,-0.052105191998178764,-0.019322117550337276,0.005412426932236471,-0.13314173672477247,0.027905439164333495,0.3285336901184663,0.23256065589020455,0.060897559137294735,-0.13748677529057182,0.22093090906639817,0.15854703525987743,0.357028430728454,-0.2000777071055604,-0.015493013103533364,-0.2867518617265789,-0.31948490413240127,0.5032879208397311,0.3602570728265306,0.4375096809910919,-0.07330980748617827,-0.11972661169527755,0.013892818970790557,0.38525759284940414,-0.2628830562044799,-0.0894823169038017,-0.11740330154624563,-0.09559223653183384,-0.08892139433355091,-0.2026007270762773,-0.2594504299386054,-0.23538304217297404,-0.139350641082113,-0.19456686498014542,-0.15775207698184485,-0.2569237641191832,-0.4238491136457333,0.17430958259172125,0.2192503017973528,0.18993288590604027,0.32781848459616997,-0.29853415771954034,-0.42029374229142424,-0.44048825243317613,0.06036256404752078,0.11240417315119033,-0.032277585029917615,-0.26299904381671974,-0.18442215198570838,0.26724464603548276,0.01746927835767597,-0.20268456375838922,0.1259816819317236,-0.11578606436920108,-0.1717043680014943,-0.14806574303058534,0.22317065592570173,0.507669606317367,-0.016068604760294085,0.05649117831781247,-0.3885392332004949,-0.38456680254923525,-0.0999592241078884,-0.63758389261745,-0.6729725228975855,-0.12479114896099762,-0.3920009208247112,-0.2883539977742214,-0.44159600490348355,-0.04510922819759074,-0.5581594987188178,-0.3004141307285289,-0.5982547753194998,-0.7344835505540575,-0.25345761249786775,-0.516778523489933,-0.5766028309741882,-0.11880165147571538,-0.6149394578285091,-0.48910285309612794,-0.8261353429331644,-0.24687301861778782,-0.8115052469130333,-0.5469037519516504,1.3013952736609982,2.5298221281347035,0.33333333333333337,21.179854032163064,29.820598017633092,30.36433035052771,30.36433035052771,30.36433035052771,30.36433035052771,30.138821934948645,18.48863787642673,4.189734952279958,0.0,0.0,11.650184058521912,3197.133940012653,3094.586849071298,727.277508846566,0.0,18.0,21.0,18.0,12.0,12.0,12.0,8.0,4.0,296.05093264000055,15.0,4.204692619390966,4.976733742420574,5.765191102784844,6.54965074223381,7.3427791893318455,8.131236549696116,8.925720273560222,9.715771471424866,10.510613774571024,0.7314814814814815,0.9433333333333334,1.122626740751924,0.6857695260825725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7291393878908852,0.9357298474945532,0.9864449299991913,0.6022895605762489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,9.799819461700956,8.641068171117942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.43574688609339,49.282744751535944,26.1790256236503,0.0,195.89877884240684,-205.4937280044308,-8.805605244651382,-5.708159111234189,-20.54937280044308,318.0764970814166,333.6556029705148,10.638736706900213,9.268211193625412,12.832907806558262,0.4444444444444444,0.998834589695414,0.34070659369643963,1.7580877328065787,0.14008982395822128,26.98086069614366,0.0011654103045859402,5.0,0.26666666666666666,0.30335415992791237,0.4066185042070944,0.5109559939712154,0.5109559939712154,0.5109559939712154,0.5109559939712154,3.6212000000000026,,2.7857142857142856,0.27297484914828885,0.10289718983612661,2.7864351666961285,0.6601880877742947,0.3688800489596089,0.5659504028626552,-0.00833375580098572,86.22000000000004,0.0,0.0,9.799819461700956,0.0,27.694948798762496,26.1790256236503,0.0,0.0,0.0,3.4339872044851463,0.0,4.634728988229636,0.0,6.042632833682381,0.0,7.529943370601589,0.0,9.049114723476961,26.333333333333336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.96,0.0,0.0,10.68224111866969,0.0,0.0,0.0,0.0,1.841678004535148,40.41456266706926,0.0,0.0,0.0,44.6199132564692,0.0,0.0,27.694948798762496,0.0,0.0,0.0,0.0,24.68770293897261,26.249017964071864,18.877840949171784,129.7901816083616,,84.33002677952298,117.01740936999741,118.88303598575183,84.3362056260676,132.5861806174408,116.08182226097348,113.49623327934016,135.3046244190869,18.877840949171784,129.79018160836156,,82.80768516541733,116.7785563769927,118.7930009446452,82.81535564972077,132.09103955161004,115.7590522181338,113.00102667683534,135.31191645541278,4.4210172990789705,97.76870897277813,,59.31930089988289,89.85438693078278,92.12014885931532,59.32069621150791,95.70822463672368,88.66532153201626,86.01614294125937,100.30481987127047,1.1798650593232365,8.1118863505226,,5.270626673720186,7.313588085624838,7.4301897491094895,5.271012851629225,8.28663628859005,7.255113891310843,7.09351457995876,8.456539026192932,2.2105086495394852,64.89509080418078,,42.00994555478777,58.52576561307046,59.44794906724068,42.012552090941625,66.21379563040978,58.063966133546714,56.78348853984899,67.65179134980589,33.686274509803916,0.0,8.45927878558831,0.0,0.0,0.0,0.0,35.512017479970886,3.8370042831947595,0.0,0.0,3.184074074074074,0.0,4.329057067271353,0.0,0.0,0.0,21.682424180744963,513.3762838409594,56.45945720530237,75.67873815417599,95.09775004326937,95.09775004326937,95.09775004326937,95.09775004326937,136.0,97.12238946541427,0.5989920828640257,46.69040712047571,121.26,6.48,0.8,5.123963979403259,4.906890595608519,3.6259130091505596,3.9395273159824495,,3.883550234462604,3.9391685996871546,3.9434849885708814,3.8835153066938566,3.902074698930248,3.9365494512618984,3.9323679867826677,3.921105369086947,0.22661956307190997,0.2462204572489031,,0.24272188965391275,0.24619803748044716,0.24646781178568009,0.24271970666836604,0.2438796686831405,0.24603434070386865,0.24577299917391673,0.2450690855679342,1.7581097504330696,1.8410643747957043,,1.826753373397591,1.8409733149808867,1.842068476468529,1.8267443795842742,1.8315120150179642,1.8403081950502675,1.839245414837936,1.8363772252086157,228.5199999999996,66.46286664810272,66.14376431632994,,68.9867011566727,65.67569097542628,65.40537147997885,68.98864872364315,67.81084532325113,65.83765363080609,66.0967342551303,66.7050485716923,4.15392916550642,4.133985269770621,,4.311668822292043,4.104730685964142,4.087835717498678,4.311790545227697,4.238177832703196,4.1148533519253805,4.131045890945644,4.169065535730769,4.666647024677154,4.661834249548281,,4.703917378407043,4.654732485895244,4.6506080170575705,4.703945609057986,4.6867257719196935,4.657195547537329,4.661122968757744,4.670284270032934,1.841678004535148,4.329057067271353,0.0,0.0,0.0,0.0,0.0,12.296283068783069,3.184074074074074,272.2730123835279,100.68712890866612,-105.61869555169245,-4.525863385295961,-2.933852654213679,-10.561869555169245,163.48345535230433,171.49073060030005,5.468047634409946,4.76363140556389,6.595797330780771,502.0,21.0,0.8047378541243649,0.8944271909999159,0.0,0.0,0.23570226039551584,0.33541019662496846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.55204176387779,13.621833801312464,7.599284072575288,8.490041527096679,5.685070510202191,6.440025306611317,4.78433555739967,5.959013761853877,3.1840139212925953,4.199059082202098,1.1582423597190377,2.471316865204645,0.7014658942154945,1.2674211853123336,0.540411478350697,0.943079536287077,2.2357022603955157,2.765203287313387,2.968592464645271,4.175832329426893,2.683796407992744,4.897529891885927,66.00710019346019,47.178079532181115,47.95338613146374,47.95338613146374,47.95338613146374,47.95338613146374,66.0,72.0,43.835859999999975,28.404139999999998,0.0,15.06,7.944444444444445,4.138888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,0.0,0.0,35.0,0.0,2.0,2.0,33.0,2.0,15.0,33.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,4.0,0.0,0.0,16.0,6.0,0.0,2.0,0.0,0.0,0.0,4.0,4.0,0.0,0.0,0.0,0.0,2.8903717578961645,0.0,3.1354942159291497,3.332204510175204,3.2188758248682006,2.8903717578961645,2.833213344056216,2.833213344056216,2.1972245773362196,1.6094379124341003 +18381,Cc1onc(-c2c(Cl)cccc2Cl)c1C(=O)N[C@@H]1C(=O)N2[C@@H](C(=O)O)C(C)(C)S[C@H]12,0,42.59574468085106,6.649491489361699,3.978723404255319,9.652219595482007,160.794002774439,173.7865561489362,1.815071050690063,6.794636170212764,6.200800709868435,8.249835723404251,255.14596482218602,33.22,6.601980000000001,4.76,8.997777777777777,146.1422565133989,129.60828090000007,2.019016098720001,6.781042000000001,3.454310699588477,8.049849039999996,293.76902857584577,32.2093023255814,6.481927906976745,4.441860465116279,7.4948320413436695,151.6077527694741,125.48908573255817,1.8667829752748966,6.6476395348837185,3.4266197722270064,8.006105465116281,262.28677915379797,28.827272727272728,6.5369518181818185,3.6454545454545455,6.146464646464646,152.90762693246467,108.42496378181814,1.7465297947035996,6.710973636363636,3.2988402543958113,8.140627145454543,238.22117486308363,29.480314960629922,6.607629921259845,3.125984251968504,5.624185865655682,161.3978906434547,113.61155115748028,1.4483796862687484,6.745479527559053,3.820514955349375,8.222945677165354,207.14831279782462,26.17699115044248,6.851088495575222,3.0,5.349065880039331,161.80348542613362,97.8988230176991,1.3880013740525934,6.95793716814159,4.948013401799046,8.461986194690265,200.35406437102938,25.107843137254903,6.566550980392156,3.0,4.827886710239651,163.6303664265386,95.35921003921568,1.3687833467101278,6.676375490196077,3.6655773420479307,8.179768862745098,194.4050705956932,24.50537634408602,6.502093548387093,3.075268817204301,4.928315412186379,160.10426481089846,89.91722164516126,1.4668384200052693,6.654664516129034,3.6845767511836796,8.168675139784947,198.53821136254854,24.357142857142858,6.45954761904762,3.1547619047619047,5.0621693121693125,159.0963295744781,90.66233917857143,1.5160532702165233,6.593794047619052,4.081624779541446,8.110903904761905,205.16749026895533,16.084200995925755,0.1621741059302851,0.028100496673798426,0.8601177003168858,4.544405881662557,1.5472965970208912,73.64991375826169,0.31129166178043904,0.15907940244454494,2.4857900133365542,0.12163472340425537,48.60313769286692,0.1068628338614759,-0.0023919782707107397,-0.014968829927467594,0.3203078315980081,1.4995499891018227,-0.02007029372426203,0.6067335932277135,0.020778287980535014,-0.003109147125396125,-0.0966375505243855,-0.004339999999999978,2.081345845929548,1.96280543653342,0.02652705686041247,0.0012257806495142808,0.0243454367439755,0.7476173802600926,0.0003528167818173873,9.360100855790797,0.04222477168538974,0.02570181972269888,0.36336879818529516,0.013824232558139566,8.305741019390377,-4.061183587801968,-0.007217839005720401,0.0010977166214035693,-0.10711963455286226,0.1686323015883903,-0.25178208479682007,-18.04614737953825,-0.06439286777718392,-0.01332162681591835,-0.17569196052934705,-0.013155100000000001,-8.915659865053701,2.7186135458735383,0.00526347155338039,-0.00160032262636155,-0.16569652424049075,-0.16091422001151826,-0.0752955646198025,12.451199517831492,-0.013691613822292352,0.011817146391105796,-0.11904020263063309,0.005151440944881858,2.812991218205659,-1.6714726961705326,-0.029624021200479154,0.00038934138638120153,-0.023175504873466146,-1.2078088817253219,-0.06957388776090702,-7.803075082682668,-0.00548438254530921,-0.0287617409871924,-0.10498955902500227,-0.013506973451327531,-5.6267932794012845,1.9977764759140417,-0.016346112605295626,0.001169117989180461,0.04163448992091178,-0.5668722362106825,0.20282963343906332,9.352434656214768,0.04745459452208692,-0.005767742035700654,-0.3959945557086206,-0.0036073725490196186,7.079446081830756,-3.1299571158067923,-0.005875043930742762,-0.0012995777911320686,0.07948422144014958,-0.059828800959496276,0.02540977722452712,-14.832209846570967,-0.03868906925610717,-0.016122344563053396,-0.021029519966187692,-0.010659924731182813,-6.663836200320202,-1.6627217659358895,-0.010802525383172728,-0.00023364135887955228,-0.01259996982043157,-0.21547233819000824,0.13819759727072625,-7.105852875029642,0.03224817264355506,-0.01475040041820259,0.12173369507860415,-0.011561154761904759,3.6039766382310963,,,0.48761904761904773,1.1833333333333333,0.5166666666666667,0.03333333333333333,0.6666666666666666,-0.15,1.0620455692614466,0.02909317065368633,0.04055983732035299,0.9766441980915623,0.21779089907641988,0.250256382348997,2.038689767353009,0.46804728142541685,2.0164261104246357,1.3193150725765144,0.2105686349457437,0.3005542092179235,0.11838992048740646,0.6971110378481209,9.979289297957456,2002.0,312.5260999999999,187.0,453.65432098765433,7557.318130398634,8167.968139000001,85.30833938243296,319.34789999999987,291.4376333638165,387.7422789999998,11991.860346642743,1661.0,330.09900000000005,238.0,449.88888888888886,7307.112825669946,6480.414045000004,100.95080493600005,339.05210000000005,172.71553497942384,402.4924519999998,14688.451428792288,2770.0,557.4458000000001,382.0,644.5555555555555,13038.266738174772,10792.061373000002,160.5433358736411,571.6969999999998,294.68930041152254,688.5250700000001,22556.663007226627,3171.0,719.0647,401.0,676.1111111111111,16819.838962571113,11926.746015999996,192.11827741739594,738.2071,362.87242798353924,895.4689859999997,26204.3292349392,3744.0,839.1690000000002,397.0,714.2716049382716,20497.53211171875,14428.666996999995,183.94422015613105,856.6758999999997,485.2053993293706,1044.314101,26307.835725323726,2958.0,774.173,339.0,604.4444444444443,18283.7938531531,11062.567000999998,156.84415526794305,786.2468999999996,559.1255144032922,956.20444,22640.00927392632,2561.0,669.7882,306.0,492.44444444444446,16690.297375506936,9726.639423999999,139.61590136443303,680.9902999999998,373.8888888888889,834.336424,19829.317200760706,2279.0,604.6946999999997,286.0,458.33333333333326,14889.696627413558,8362.301612999998,136.41597306049005,618.8838000000002,342.6656378600822,759.686788,18464.053656717013,2046.0,542.6020000000001,265.0,425.22222222222223,13364.09168425616,7615.636491,127.34847469818796,553.8787000000003,342.85648148148147,681.315928,17234.069182592248,755.9574468085104,7.622182978723401,1.320723343668526,40.42553191489363,213.5870764381402,72.72294005998188,3461.5459466382995,14.630708103680636,7.476731914893612,116.83213062681806,5.716832000000002,2284.3474715647453,5.343141693073795,-0.11959891353553698,-0.7484414963733796,16.015391579900403,74.97749945509113,-1.0035146862131015,30.336679661385674,1.0389143990267506,-0.15545735626980625,-4.831877526219275,-0.21699999999999892,104.06729229647739,168.80126754187413,2.2813268899954724,0.10541713585822815,2.093707559981893,64.29509470236796,0.030342243236295308,804.9686735980085,3.631330364943518,2.210356496152104,31.249716643935386,1.1888840000000027,714.2937276675724,-446.7301946582164,-0.7939622906292441,0.12074882835439261,-11.783159800814849,18.54955317472293,-27.69602932765021,-1985.0762117492077,-7.083215455490231,-1.4653789497510186,-19.326115658228176,-1.4470610000000002,-980.7225851559072,345.26392032593935,0.6684608872793095,-0.20324097354791684,-21.043458578542324,-20.43610594146282,-9.562536706714917,1581.3023387645994,-1.7388349554311286,1.500777591670436,-15.118105734090403,0.654232999999996,357.2498847121187,-188.87641466727018,-3.3475143956541444,0.04399557666107577,-2.6188320507016747,-136.48240363496137,-7.861849316982493,-881.7474843431414,-0.6197352276199408,-3.2500767315527415,-11.863820169825257,-1.526288000000011,-635.8276405723451,203.77320054323226,-1.6673034857401536,0.11925003489640702,4.246717971933002,-57.82096809348961,20.68862261078446,953.9483349339064,4.840368641252866,-0.5883096876414667,-40.3914446822793,-0.3679520000000011,722.1035003467372,-291.0860117700317,-0.5463790855590769,-0.12086073457528237,7.392032593933911,-5.564078489233154,2.363109281881022,-1379.3955157311,-3.598083440817967,-1.499378044363966,-1.9557453568554555,-0.9913730000000016,-619.7367666297788,-139.66862833861472,-0.9074121321865092,-0.01962587414588239,-1.058397464916252,-18.099676407960693,11.608598170741006,-596.89164150249,2.708846502058625,-1.2390336351290174,10.225630386602749,-0.9711369999999997,302.7340376114121,0.7318433655923656,0.614375575764668,0.425497528568561,0.32187007221169533,0.2730447850274341,0.19603057327866819,0.15755592814147734,0.10070747405122081,0.10293115131077119,0.05733681736934403,0.0631575660338574,0.03228327386004249,0.0394750273081229,0.017747531201260696,0.0251679584416272,0.0088612703753247,17.002128873097828,5.689482931685812,3.5703740036207074,2.1833665385250547,0.464275523188751,-0.4639644505467005,4.023087578132445,0.9724803993032445,6.033879543106538,0.6593406296761161,14.56508704927532,10.33782406581417,35.45152885904339,11.701192544143867,2.9164496179856285,0.71571626083038,3.5161193908865855,2.2349513487463812,7.010460769178108,0.617316162707721,3.7246290381012845,2.431309342114735,24.434236801617786,14.681673456980638,0.33597973712039825,0.7038277975676376,0.835543582342231,0.8673419446668318,0.8673419446668318,0.8673419446668318,1.461148261603977,1065.8673310026184,0.0,3.0,4.0,0.0,7.0,2.0,2.0,1.0,0.0,3.586425936878387,1.4315789896839206,0.6599904257160389,0.4737162235423469,0.4737162235423469,0.4737162235423469,-83.7369265179081,1758.610263579379,78.90199838961335,37.41723965062509,84.12220737523866,,13.0,666.0,39.98824167113708,19.490138947056174,17.0176269054199,15.608718119179649,0.0,16.66179468024159,38.9703128044567,0.0,10.473451861131776,27.72497471743838,14.628571428571432,35.5,15.5,1.0,20.0,0.0,0.012380952380952277,-4.5,0.2544072948328269,0.0577839182094505,-0.19662337662337642,0.03889880952380942,0.1853474445018065,0.0,0.6972644376899694,0.9223809523809519,0.44285714285714245,0.6394805194805189,0.8834821428571424,31.861367077843397,0.8727951196105899,1.2167951196105897,29.29932594274687,6.533726972292596,7.50769147046991,61.160693020590266,14.041418442762506,0.5286525554981935,0.2913411458333333,0.03417968749999999,0.43749999999999994,0.3684210526315789,0.5688911361026222,-1.6461715684499014,-0.0951070153491096,-0.03502492698829577,-0.09683362167352363,0.43110886389737774,1.2474779612783111,0.034719777581133815,0.026542084282517257,0.04158259870927704,-4.938124228848047,0.5652963692654096,0.6732785101492678,1.5310987002823608,0.8420421052631576,0.4357363557431445,1.1592593763924914,0.5607613727459294,0.7751281191883128,0.639101154674474,0.6097424822622343,0.6868464492222263,0.789240680653832,0.6764254249602369,0.5452251442341418,0.8728887988109004,1.2503610771113827,0.6836399221631547,1.1335255822306503,0.6599692581294032,0.8665510881129432,0.5296769190951722,0.46115271243853484,0.5673052512219158,0.7553777699200228,1.2875303840544488,0.8907080844098388,0.9619910952315334,1.1896172248803822,0.8707814041120321,1.2699111291825238,1.2582347550266166,1.3674385587476026,0.9152732510899582,0.8996727886375188,0.9564199081525631,1.1304539084071612,0.7742801358949188,1.0113784768146232,1.144786679963748,1.2050932449233314,1.0689827036907689,1.0639030401940999,0.7748234038850372,0.9812690013245781,0.9511521249882996,1.12433324214634,0.9702080565891958,0.8867499026735074,0.963637609000496,1.5056671859617714,1.2877073308028149,0.9616721006054957,1.3591907699204075,1.0032788183414838,0.9685909539516249,0.8960370613735854,1.4278162219216264,1.5616184438015488,1.3956408783095804,0.998348667846201,0.7006696908991575,1.2171326598998866,1.1103054718755772,0.8534210526315786,1.1735802902118784,0.8461790418645361,0.7054278241587931,0.7007229802618371,1.1152649780436334,1.266097645951869,1.0826288227534433,0.8039059299126083,1.2706523943116377,1.0296127495364784,1.0123211691458334,0.8197736276174304,1.0098719903717395,0.9488769130276058,1.2777037451355375,1.1283265039367547,1.110915477356561,0.9856103800587408,1.106802745793248,1.1208762774854968,1.0985595673676172,1.0933653752007855,0.8473308181390508,1.0362969924812027,1.078648415409877,0.883323935705357,1.0854572300843217,0.9448973894498683,1.1033341073659066,1.1822947856309154,1.107619371891218,0.9258596878357028,7.5,0.30998061422303846,4.888888888888891,4.909722222222221,2.8355555555555556,1.4449999999999998,0.7134693877551022,0.5825184240362812,0.5520439657344418,0.3653240740740742,8024.767187525041,8602.047447175886,3094.434645387597,2916.4636230081132,11.826955834917305,0.4656764733842049,6.319420750842269,0.8715253029070705,1.0,0.3684210526315789,1.9681629147992505,4.123009861993717,4.894598425961599,5.080872628135291,5.080872628135291,5.080872628135291,0.22727272727272727,0.012399224568921539,0.09777777777777782,0.09263626834381548,0.05063492063492064,0.03211111111111111,0.017836734693877553,0.016643383543893747,0.016728605022255812,0.010744825708061005,0.574785578677362,23.168044077134986,8.408284023668639,3.8655953250547843,185.40972809852857,1.0,4.359267238946758,164.75352357861516,,130.61295185157468,137.11887914233336,136.59072508208357,130.57335191506314,168.7158700321677,137.71015933531282,138.06060289620015,163.381079281562,0.006643962848297222,-0.014749446324920673,-0.5326891585309554,0.37239999999999973,0.3299771253163718,-0.01297120006785037,0.008238076085454384,0.06674861723469613,-0.019544624116123226,-0.03887599113598241,-0.03568060072431706,0.04282328147375986,0.12203313282584649,0.1635714697376894,0.04362131615478626,0.028304773561811505,0.1645137779785152,0.00022802142943808445,0.127089094584864,0.13564376072228945,0.16156598106193246,0.1461783965000177,0.11365366871591807,0.17088898811175604,-0.2524952025177188,-0.044506729137283985,0.0390639579843123,-0.1245406698564593,0.03710766731221127,-0.1627238664400815,-0.24502604902933672,-0.20685702729359207,-0.083741996834331,-0.07067852054547613,-0.1081525047438861,-0.1834379484179306,0.16902384809554313,0.03245568411299295,-0.05694997654093884,-0.1926440116038126,-0.035409297541144864,-0.048662657673243674,0.16905925455255238,-0.04398323342161781,0.07428457870418045,-0.04788827776761853,0.04235172984083619,0.0578767411269108,-0.10392015721476801,-0.18266800997943428,0.013855320455749552,-0.02694457382394037,-0.2657792708611337,-0.04496480370658222,-0.10594819035762085,-0.017618147925778583,-0.18080116309978433,-0.04223589219593007,-0.11104537481814994,-0.11577016518888414,0.12420738067250546,-0.10079360395748035,0.041604887015060286,0.048405572755417944,-0.12474067039172433,0.1310864599777342,0.1269850048557003,0.15244415558922905,-0.036257000888039466,-0.15930330139877602,-0.029657423867610947,0.14565821092801068,-0.19459823441647076,-0.036226769354093476,-0.04624750253413941,0.09241086587436334,-0.013165373542208356,0.016422046861248315,-0.20138801377628446,-0.1242855945283733,-0.10134778177001037,-0.008459893978719785,-0.08763882905175316,-0.1371071193475272,-0.10337608727701605,-0.06661066710499691,-0.008314492145521579,-0.014649122807017542,-0.04741485329456935,0.08931551813453666,-0.09648148263082715,0.10359472033112282,-0.09272350908751104,0.0489718336727916,-0.09504814446349368,0.07415111059301058,2.381101577952299,7.385813880891044,18.894677569748538,26.591565800181247,48.17397789400951,52.98613375651547,54.63964283315761,54.63964283315761,54.63964283315761,60.49278331273907,39.57945217729543,6.317059048372311,9.016626276537703,3.551697614622194,20.913331135443627,5832.549245837083,5396.0696059923375,2402.940620003765,190.0,52.0,74.0,105.0,123.0,142.0,144.0,151.0,172.0,469.02659700400045,33.0,5.14166355650266,6.0473721790462776,7.002155954403621,7.9291264873067995,8.886962034866128,9.822765447457765,10.781224548778034,11.722627076854414,12.681377821708454,0.8581560283687941,1.0188085106382982,1.1206894094692688,0.8331387717287525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7343034908905595,1.0101793909052978,1.0382374362709401,0.6983444487269989,3.0,1.0,0.0,1.0,0.0,0.0,6.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,3.0,1.0,1.0,0.0,0.0,19.846320666670863,34.47518137668456,0.0,5.907179729351506,5.907179729351506,9.589074368143644,4.794537184071822,0.0,11.761884949391115,34.42491010605209,32.903945735995094,10.310473944914555,10.045266627482652,345.7425581540185,-1000.457790809405,-57.80111641476338,-21.28633597466819,-58.85045828290619,262.0056316361104,758.1524727699742,21.10088197484998,16.130903675956898,25.271749092332474,0.46153846153846156,0.709433390197362,0.1657674149676939,103.68105535202562,0.11314410447801317,31.73613720725176,0.29056660980263793,7.0,0.12121212121212122,0.3543309806278122,0.7422709352733561,0.8811810480776262,0.9147162398168729,0.9147162398168729,0.9147162398168729,3.2021200000000007,,3.597689075630252,2.194200069669173,1.7178410156855364,3.6215566679286817,-6.073988936949852,2.1748611390855714,2.154187429914308,-2.628790140373728,111.67800000000003,24.013233884029518,0.0,15.373361591982254,0.0,42.975788523554094,0.0,39.56806674343892,0.0,11.257379486545457,4.204692619390966,0.0,5.645446897643238,3.044522437723423,7.277247726631484,5.58724865840025,8.99850761180784,7.853604813097837,10.76884282073053,40.33333333333332,4.899391275620498,3.9407047830483077,0.0,5.203118512046181,0.0,0.0,1.4845085730700838,0.0,47.88400000000002,0.0,37.35412843677964,0.0,0.0,0.0,0.0,0.0,-2.0844178318440623,52.672402245055636,5.316788604006331,0.0,0.0,55.151342053953705,9.589074368143644,6.923737199690624,29.965710494024506,22.72219614235818,10.045266627482652,11.257379486545457,0.0,39.157522271251366,34.51226407185629,37.013722620608775,329.5070471572304,,261.10423363578855,274.0914782800221,273.0669274297881,261.02290201771854,338.8736185657481,275.2753279280199,275.97759329707264,327.41968569433965,37.01372262060878,329.5070471572302,,258.00169272877497,272.04355821499763,271.4636091484816,257.8995983160259,343.5057290012852,273.24545753154007,273.967018362486,329.39094870349777,5.1235660359910415,246.80145906159999,,199.73858600928062,208.81639141004388,207.48066313568364,199.7069465707619,257.99537550685477,209.96276053659818,210.60160695158646,251.18082287415018,1.2337907540202926,10.983568238574346,,8.703474454526285,9.13638260933407,9.10223091432627,8.700763400590619,11.295787285524936,9.175844264267331,9.199253109902422,10.913989523144656,2.6331419309765964,164.75352357861516,,130.61295185157468,137.11887914233336,136.59072508208357,130.57335191506314,168.7158700321677,137.71015933531282,138.06060289620015,163.381079281562,47.478431372549004,0.0,5.101309769124975,12.499697550682907,0.0,0.0,9.517699504151247,48.79715950473418,0.0,2.697066090325019,0.0,1.3430474814020086,-2.2749696076352537,1.3097872837406568,-0.6855162649566509,0.0,0.0,32.82218909016895,431.156858669121,92.50365699556478,193.7814635137047,230.04612602019515,238.80101352235866,238.80101352235866,238.80101352235866,1216.0,143.01527510692418,176.59133112100795,83.38011358542556,138.04,112.74,0.8571428571428571,8.452809658267407,6.044394119358453,3.9156468194315974,5.407035445961276,,5.407622747388115,5.404718712851895,5.40299635604269,5.40766523629133,5.408497607386477,5.406207709022184,5.407127574100871,5.409688930262268,0.13052156064771991,0.18023451486537587,,0.18025409157960384,0.18015729042839648,0.18009987853475634,0.18025550787637767,0.18028325357954922,0.1802069236340728,0.18023758580336235,0.1803229643420756,2.463592820155607,2.786313254615433,,2.7864218667263136,2.7858846963794965,2.7855659690975862,2.7864297239194427,2.78658363637598,2.786160157726952,2.7863302930379956,2.78680388084606,300.8500000000006,682.7808260504171,195.1521839165407,,193.59713257196543,194.4275198676041,194.80141965656807,193.5763519584414,194.01159602725258,194.21099629876724,194.08723714465108,193.73809307437955,22.759360868347237,6.505072797218023,,6.453237752398848,6.480917328920137,6.493380655218936,6.45254506528138,6.46705320090842,6.473699876625575,6.469574571488369,6.457936435812652,7.624786197838537,6.372391973195685,,6.364391652305681,6.368671733780297,6.370592967614712,6.3642843070748,6.366530219281437,6.367557466499866,6.366920022660839,6.365119499913147,4.51760224708953,38.6639157205203,16.286354665906458,0.6454161446935178,-1.843739751198223,3.091951727334087,0.0,5.101309769124975,0.0,370.73524791286786,210.12441385151317,-608.0264113258473,-35.12852386892095,-12.936732155869095,-35.76625948975574,159.23344834166548,460.7657929108619,12.824022823190239,9.803527508741743,15.358859763695396,2402.0,53.0,3.3568759489593556,2.7798780913867045,0.2041241452319315,0.3535533905932738,1.0092333177854702,0.5322693529033641,0.06804138174397717,0.07905694150420949,0.0,0.0,0.1111111111111111,0.07453559924999299,0.49666240789366156,0.3161259379531365,1.0506303826808194,0.6934915812677522,1.953788924423017,1.243956610119527,21.95530096777097,18.431267272940037,14.041418442762513,10.621712382985946,14.198328821426573,10.193589810490746,11.659138682469324,7.45235307979034,10.807770887630975,6.020365823781123,7.76838062216446,3.9708426847852265,5.605453877753452,2.520149430579019,3.624186015594317,1.2760229340467568,7.122201339404975,4.566883225784042,13.288840527617124,7.2423899002865575,20.369558096468136,9.599628580980973,96.79642448165276,45.50214841095292,34.607138802511344,31.478882009660907,31.478882009660907,31.478882009660907,170.0,211.0,57.63548099999999,27.154519,0.425531914893617,219.11,12.256944444444445,6.291666666666663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,11.0,11.0,47.0,0.0,0.0,50.0,11.0,3.0,8.0,42.0,14.0,33.0,36.0,0.0,0.0,0.0,19.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,6.0,2.0,3.0,30.0,11.0,0.0,3.0,5.0,0.0,4.0,4.0,1.0,0.0,2.0,1.0,2.0,3.7495040759303713,7.052254623431196,4.366278277705742,4.906200275959372,5.470956785688478,5.823600475402954,6.089044875446846,6.313208314661801,6.571976551827633,6.879275425715751 +23623618,COCC(=O)O[C@]1(CCN(C)CCCc2nc3ccccc3[nH]2)CCc2cc(F)ccc2[C@@H]1C(C)C,0,20.2972972972973,6.040604054054055,3.054054054054054,6.324324324324325,164.83155552985085,80.26623533986178,1.4005844781657026,6.102141891891893,3.80152027027027,7.576170972972974,202.96393642359706,22.766233766233768,6.239987012987013,3.727272727272727,5.8441558441558445,146.34207187855333,85.44967224461301,1.752362360649351,6.384363636363636,2.8021284271284266,7.6653654025974,251.6650315190612,18.51063829787234,6.148247517730498,3.4609929078014185,4.397163120567376,155.93021934226195,68.07643335227232,1.4643029848721993,6.24829574468085,2.6656816390858955,7.651905843971632,204.95196859308237,15.735449735449736,6.08314285714286,2.984126984126984,3.3544973544973544,158.20745333406336,55.81395468000847,1.3535634096662597,6.171088359788359,2.569738389182834,7.620402074074073,182.6303701464337,13.547413793103448,5.85021551724138,2.6982758620689653,2.413793103448276,160.39484032353363,47.57220323317241,1.2320941271217336,5.934549999999999,2.2301245210727965,7.43407151724138,161.17721686692002,12.963855421686747,5.965404819277107,2.4819277108433737,2.1204819277108435,160.9530760331406,44.189629853500406,1.1969449217975952,6.0401775100401585,2.422858099062919,7.55304393574297,155.6320319680095,11.602941176470589,5.852301470588234,2.235294117647059,1.9227941176470589,163.7178931522148,39.20409001818823,1.0943713750307835,5.9174580882352945,2.327052696078433,7.470533382352941,139.05627639478485,11.454198473282442,5.876263358778628,2.1603053435114505,1.7786259541984732,166.33279456885032,38.86063739209158,1.0624407338082784,5.931348473282444,2.4571670907548784,7.494942335877864,135.2425627602682,10.588477366255145,5.886716049382717,2.0864197530864197,1.5802469135802468,166.02857866810854,34.572497811009065,1.0561670137402595,5.942506172839508,2.4143232738911755,7.509669152263374,132.1241139414182,7.376186997808619,0.12979176406135862,0.013985193304053128,0.5967859751643537,3.781592403214026,1.6934930302090074,35.405311672138566,0.23093831137863982,0.12147335646457263,1.2981406237318394,0.07493827100073046,50.775385801557164,0.4416438200221979,0.0022960386764442242,-0.006290759501827493,0.2399988616204833,1.3251117034900817,-0.2255809872494036,2.0536445477999536,-0.01413031622837358,0.00393634869513261,-0.01988631422753044,-0.0005167322151916816,-0.3048709997303706,0.5590248097436137,0.004882895704790575,-0.0007886323150361608,0.02598573271373732,0.21093203611892497,0.037301514648552934,2.7065264134281932,0.015333684014468165,0.005424199602132405,0.11759359452897408,0.002586904770785729,3.8929826320245153,-0.7278243494459714,-0.005576191345785851,0.0003453179171847644,-0.0326504110287894,-0.1521057737273953,-0.0031998535649552457,-3.4902526953912907,-0.005143061445390672,-0.006720189011405147,-0.02650043195275928,-0.00034390778036724214,-3.227101427362137,0.23727991738243376,0.002534412546283438,0.0007180468708139025,-0.09445605904133399,-0.22590740787385705,-0.058138120140064295,1.1142168460972948,-0.006724101997090963,0.0032224671607767835,0.031211627226014473,0.0006339855230346853,0.03342966877218895,-1.1105840454586793,-0.014187693725962984,-0.0004915927908139827,-0.07827951689885912,-0.5880615229361564,-0.08550466774593339,-5.291703881270057,-0.024757580866126592,-0.014454491816792332,-0.15080465824828404,-0.0077695628709138955,-6.714829990497991,-0.26807888970051125,-0.0052240871933141655,-0.0004787815809191283,-0.050482318566579296,-0.1716957418467752,-0.18548311898882167,-1.2987286671224438,-0.01645997944637755,-0.004642861631504338,-0.06112799069439069,-0.003796442701843336,-3.043743361892523,0.022616385727588634,0.0001311367020001073,0.0010114225255695667,-0.037264621749870344,-0.2433213076910209,0.016550299828346205,0.19243983156135275,0.0027956553362892675,0.0003677514372222244,0.03024011865176504,-4.9296583565202296e-05,0.6870115901852655,-1.0608716824933042,-0.02118397293690085,-0.0014847823311389188,0.002257512768023274,-0.4114444775105434,-0.03680881185065187,-5.104795197194805,-0.011441624410475592,-0.020523245242239228,-0.19462777446281793,-0.011296829114399682,-4.454315833090625,,,0.47182539682539687,1.0763888888888888,0.4444444444444444,0.013888888888888888,0.6319444444444444,-0.1875,1.1998005706758244,0.01682539300301775,0.026380948558573303,0.8615745517649979,0.20193724296552784,0.2788544074307071,2.0613751224408223,0.4807916503962349,2.0340515485214876,1.653988226715148,0.17396484146770166,0.1568283720367191,0.04927010830191862,0.3800633218063394,6.693104328324339,1502.0,447.00470000000007,226.0,468.0,12197.535109208962,5939.7014151497715,103.643251384262,451.5585000000001,281.3125,560.636652,15019.331295346183,1753.0,480.47900000000004,287.0,450.0,11268.339534648607,6579.624762835202,134.93190177000002,491.596,215.76388888888886,590.2331359999998,19378.20742696771,2610.0,866.9029000000003,488.0,620.0,21986.160927258934,9598.777102670396,206.4667208669801,881.0096999999998,375.86111111111126,1078.918724,28898.227571624615,2974.0,1149.7140000000006,564.0,634.0,29901.208680137974,10548.837434521602,255.82348442692307,1166.3356999999999,485.68055555555566,1440.2559919999999,34517.13995767597,3143.0,1357.2500000000002,626.0,560.0,37211.6029550598,11036.751150095999,285.8458374922422,1376.8155999999997,517.3888888888888,1724.704592,37393.11431312544,3228.0,1485.3857999999996,618.0,528.0,40077.31593225201,11003.217833521601,298.0392855276012,1504.0041999999994,603.2916666666669,1880.7079399999996,38752.37596003436,3156.0,1591.8259999999996,608.0,523.0,44531.266937402426,10663.5124849472,297.6690140083731,1609.5486,632.9583333333337,2031.98508,37823.307179381474,3001.0,1539.5810000000006,566.0,466.0,43579.192177038785,10181.486996727996,278.35947225776897,1554.0133000000003,643.7777777777782,1963.6748920000005,35433.55144319027,2573.0,1430.4720000000002,507.0,384.0,40344.944616350374,8401.116968075203,256.64858433888304,1444.0290000000005,586.6805555555557,1824.849604,32106.15968776462,545.8378378378378,9.604590540540539,1.0349043044999315,44.162162162162176,279.8378378378379,125.31848423546654,2619.993063738254,17.089435042019346,8.989028378378375,96.06240615615611,5.545432054054054,3757.37854931523,34.00657414170924,0.17679497808620526,-0.48438848164071696,18.479912344777215,102.0336011687363,-17.369736018204076,158.13063018059643,-1.0880343495847657,0.303098849525211,-1.531246195519844,-0.03978838056975949,-23.475066979238534,78.82249817384952,0.6884882943754711,-0.11119715642009868,3.6639883126369623,29.741417092768422,5.259513565445964,381.62022429337526,2.1620494460400113,0.7648121439006691,16.580696828585346,0.36475357268078784,548.9105511154567,-137.5588020452886,-1.0539001643535257,0.06526508634792047,-6.170927684441196,-28.747991234477716,-0.6047723237765414,-659.6577594289539,-0.972038613178837,-1.2701157231555729,-5.008581639071504,-0.06499857048940877,-609.9221697714439,55.04894083272463,0.5879837107377576,0.16658687402882538,-21.913805697589485,-52.410518626734834,-13.488043872494917,258.4983082945724,-1.5599916633251034,0.7476123813002138,7.2410975164353575,0.147084641344047,7.755683155147835,-276.5354273192111,-3.532735737764783,-0.1224066049126817,-19.491599707815922,-146.42731921110294,-21.290662268737414,-1317.6342664362442,-6.164637635665521,-3.5991684623812907,-37.550359903822724,-1.93462115485756,-1671.9926676339999,-72.91745799853906,-1.420951716581453,-0.1302285900100029,-13.731190650109568,-46.70124178232285,-50.45140836495949,-353.2541974573047,-4.4771144094146935,-1.26285836376918,-16.626813468874268,-1.0326324149013875,-827.8981944347663,5.925493060628222,0.03435781592402812,0.26499270169922645,-9.76333089846603,-63.75018261504747,4.336178555026706,50.41923586907442,0.732461698107788,0.0963508765522228,7.922911086762441,-0.012915704894083002,179.99703662853955,-257.7918188458729,-5.147705423666907,-0.36080210646675726,0.5485756026296555,-99.98100803506205,-8.944541279708405,-1240.4652329183375,-2.7803147317455688,-4.9871485938641325,-47.29454919446476,-2.7451294747991226,-1082.398747441022,0.714125875956685,0.6069484224333264,0.44380767728883214,0.33137682192470436,0.2877777132944985,0.18898467365757166,0.17392353254857315,0.10248439321664124,0.11180983526704642,0.05857001578715693,0.07153958097989706,0.033968904415218173,0.04692397981949352,0.019605345875103215,0.03150083246107288,0.011701723248101389,9.004072705597924,5.684826438032165,4.107727613474877,2.184483588272128,0.46601269407985274,-0.4902905298828639,4.024977183659693,0.9777828240294325,7.004062187480295,0.9885760534386913,17.424773953335624,10.945334769668797,19.000143503705466,11.696073111104493,2.00072142373781,0.5458523181531476,3.9886812162406593,2.234404114936435,8.00192104160267,1.118880645303615,4.009964439300549,2.4303146138368983,20.905906751141504,13.304118360922676,0.23126344582792158,0.5486775394701192,0.7913193172094543,0.8654530624563984,0.8781034190798218,0.8781034190798218,1.3346959762457804,1144.5357097609865,0.0,2.0,5.0,0.0,10.0,5.0,2.0,3.0,0.0,4.727195532079497,2.692764517286832,1.1375785063159993,0.6624263514682935,0.5813452703872146,0.5813452703872146,329.1056537161786,2225.2257772098383,60.0775097444666,30.07061861094376,58.692827343231286,,17.0,1040.0,5.601050810983688,9.184952231746642,30.229220185833448,19.26246486877803,53.9158649743036,13.176164609739143,6.06636706846161,30.33183534230805,35.76301315480333,9.473725907600098,16.985714285714288,38.75,16.0,0.5,22.75,0.0,0.028174603174603123,-6.75,0.11577333636157155,0.035853461434857015,-0.07991987492671454,0.01427498927498927,0.14428270244369867,0.0,0.5569498069498057,0.8281746031746028,0.4411764705882341,0.5210963455149487,0.8138996138996135,43.19282054432968,0.605714148108639,0.949714148108639,31.016683863539924,7.269740746759002,10.038758667505455,74.2095044078696,17.308499414264457,0.5697172975563013,0.1541911970843846,0.029436501261564336,0.28847771236333053,0.5172413793103449,0.29428256973390593,-0.8186614967386685,-0.03772117010449702,-0.011062993199171197,-0.034110895697444514,0.7057174302660942,1.9632276837143665,0.03738535439220046,0.02653010383397792,0.03926455367428733,-8.13346541893195,0.8658320536662782,0.6870683723326116,1.5134151909338573,0.880168179433785,0.5200368011358931,1.3010033980679148,0.8692879531370713,1.2400406801830002,0.6815426802125301,0.5725463537294054,0.7128778093413675,1.1138554565295269,0.899657997019282,0.8712986021354914,1.2666229062029695,1.4068074689445034,0.9962836852033747,1.0253770717248525,0.8960493611250983,0.9898897510772892,0.8640928687945879,0.5563559132589018,0.8941316627175813,0.9499517808469714,1.0830057238009307,1.0225550974211837,1.144700613558968,1.3206498157538547,1.0551935044401721,1.0427673953360097,1.080971844560726,1.0580077962789574,1.0302276117372626,0.863624637252306,1.00713784277773,1.0748684387126788,0.9180169041667521,0.7539629693615992,1.0000852669389144,1.3786864791288562,0.9816183817015577,0.9623384714468248,0.9181505587727932,1.0401511227686486,0.7660511345691489,0.619962054652175,0.7539813605895201,1.0119914541960517,1.1413499114302326,1.1008821505223225,1.1856674700151155,1.158426853067103,1.1367024986172232,0.9829523820869766,1.1359504461608976,1.1051324727790013,1.1103982527890444,1.1640660573109987,1.1432138866605093,1.1225689115003081,1.0236960871692706,1.0059024980676923,1.060839985665517,1.0118540301677585,1.0036603145701006,1.003652808624078,1.02110923299758,1.0406146246972008,1.0093222636176582,1.0077880697432013,1.0442658563831229,1.0379807525694014,0.9966644630710638,1.0075839921068277,0.9635321272997047,0.9526825006773989,1.0484398108486301,0.8889706011302777,0.9905708450711757,0.9215484623919622,1.0076408095281906,1.0083457552519963,1.020157706222193,0.9406287332865997,1.1587992203158022,1.3342312085407482,0.9904025266939975,0.8367030841531043,1.1202181459462595,1.0383161742146723,1.1603362602847802,1.0130029021884706,1.3248644382486905,1.4636199195076123,1.3371930069077143,1.051410654103453,8.5,0.25753290480563207,4.222222222222224,3.416666666666667,2.5911111111111116,1.4724999999999997,1.1862131519274377,0.6832128684807256,0.44771982867220955,0.2371913580246914,7295.888583254249,8478.85840078154,3470.0176656968983,3094.3263179949436,17.578065671418774,0.47707696925818277,9.191975375477002,0.9123273239302592,0.0,0.5172413793103449,1.482257833549453,3.516688848342118,5.071874859312951,5.547027014160657,5.6281080952417355,5.6281080952417355,0.21794871794871795,0.007804027418352488,0.07676767676767679,0.0589080459770115,0.0431851851851852,0.025833333333333333,0.021966910220878474,0.013396330754524033,0.010919995821273403,0.006410577243910578,0.48314080067086373,28.994082840236686,13.375206611570247,7.358796296296297,212.74619456826065,0.0,4.506656252856661,252.11382145924526,,215.570465064291,212.2985313666061,213.3139446895827,215.53018263188582,292.6790561012932,214.33736571104467,215.78880617600208,259.1365481059595,0.05987427110421756,0.01769017235453229,-0.4498156990082026,0.40215231524901046,0.35041103381841243,-0.13320455604211306,0.05800385452943277,-0.06118654000723994,0.032405037694670395,-0.01531907550228427,-0.006895438182536195,-0.0060043069081125704,0.07578777624668323,0.0376209980664274,-0.05639051945085398,0.04354280059376546,0.05577862805617311,0.022026376243160124,0.07644407817932118,0.06639731590194013,0.04465341009750033,0.09058617562627462,0.03452047580281794,0.07667066572845471,-0.09867216621029262,-0.04296259771266939,0.024691679955877753,-0.05471041945950143,-0.040222678043809953,-0.0018894991050304628,-0.0985799172652918,-0.022270282547265433,-0.055322329167425875,-0.020414145793062825,-0.004589214239595813,-0.06355641373114233,0.03216837065721448,0.01952675937962676,0.051343364028139764,-0.1582745958721985,-0.059738698354125985,-0.034330297853596134,0.031470330113605616,-0.029116442208959946,0.026528180784373134,0.024043332945153983,0.00846010342336969,0.0006583833533602365,-0.15056343416844248,-0.10931120189764737,-0.035150947157198846,-0.13116849282073206,-0.15550632120911687,-0.050490120845304326,-0.14946073431784665,-0.10720430368755392,-0.11899310464025864,-0.11616973961939288,-0.10367950537367164,-0.1322457699630529,-0.03634383046147751,-0.040249758766238014,-0.0342348918967298,-0.08459032327741375,-0.04540302696315147,-0.10952694559713053,-0.03668174648902893,-0.07127435611750985,-0.03822123440590378,-0.04708888203395296,-0.05066093267359118,-0.05994525327268274,0.003066135082300341,0.001010362274898374,0.07232095428215787,-0.06244218748540084,-0.06434361024319249,0.009772877439184738,0.005435337876513852,0.012105636867265351,0.003027424679168045,0.023294948250546257,-0.0006578292093865067,0.013530406107996456,-0.14382385951013404,-0.1632150783225829,-0.10616816649281534,0.0037827845525383857,-0.10880191031715931,-0.02173543746212466,-0.14418162010453114,-0.04954407236362023,-0.16895264805023127,-0.1499281132604188,-0.1507484622148484,-0.08772588849446067,18.56630728777874,25.684718009800733,7.0330551499830465,14.078762224057652,34.05704398885682,39.55101352356546,40.624723652408704,40.706453382138434,40.706453382138434,73.22585574677356,59.54357616174533,6.26273429283726,5.645821393321888,1.7737238988690704,13.682279585028217,14090.926534516564,11479.843832415969,3562.724090582544,134.0,55.0,72.0,99.0,123.0,133.0,150.0,154.0,150.0,495.2897202960011,39.0,5.241747015059643,6.093569770045136,6.9930151229329605,7.872073979866873,8.781862489558945,9.674263049655917,10.588728561524976,11.488827425586171,12.405828832047371,0.5990990990990992,0.9724864864864865,1.1342993645937618,0.5576413098803573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6476058747370123,0.9590355060943296,0.9973917836263065,0.5994536612737307,7.0,1.0,1.0,0.0,0.0,2.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,1.0,0.0,0.0,8.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,19.357614159397784,23.849558114542425,0.0,0.0,0.0,0.0,14.16893075269385,0.0,0.0,32.046575604766076,74.16517056076961,32.41410323920352,11.033401435232523,235.39584702248877,-654.8451599554392,-30.173063921034572,-8.849258918316746,-27.285214998143296,564.5015007386673,1570.3806172543993,29.90444582343203,21.221359692627015,31.407612345087987,0.47058823529411764,0.8675584880270755,0.16414681454483196,0.0,0.11939269401678906,9.893151482934718,0.13244151197292467,9.0,0.28205128205128205,0.23870987448817346,0.5663443529196899,0.8167989290953029,0.8933196994223345,0.9063773836188025,0.9063773836188025,5.270900000000005,,1.5119047619047619,1.8043900169108715,1.5488545075243885,1.543086245660115,-6.799632915426465,1.6190119046886822,1.4797733799930697,-2.701616984205071,139.52769999999992,18.65867813934674,0.0,14.867866772744893,5.917906046161393,57.47053937115636,33.85386430029279,65.23309780167108,0.0,0.0,4.3694478524670215,0.0,5.700443573390687,2.3978952727983707,7.226209010100671,4.727387818712341,8.856376036730422,6.823286122355687,10.550302795011584,44.33333333333334,13.113080721612922,4.676904566227639,3.398532135152806,0.0,0.0,2.065480394023483,2.8996186021382573,0.0,71.964,0.0,12.666986405979669,0.0,0.0,0.0,0.0,0.0,-0.34606457088291154,83.93815297993837,0.0,4.39041504767482,0.0,60.29208717197322,27.109906337523938,11.735126887207288,55.97915279571458,42.46456947923127,0.0,11.033401435232523,0.0,41.26545693114644,47.92283473053891,45.752370081963605,504.2276429184906,,431.05693541958726,424.49681884338383,426.5418419065252,430.97463825012386,587.3223216530972,428.58478631627327,431.4954027197823,519.0235453741981,45.752370081963605,504.2276429184906,,429.6290253666774,422.79267271630135,425.0790348716413,429.5172790181116,592.1577451180127,427.0557195174007,430.097838972011,520.9747131961238,5.059994946499369,375.55936564347354,,327.094736210409,322.1030616558051,321.65314837577694,327.0702745568566,432.25771159692266,325.13015953110005,327.4163715961871,389.7105568606577,1.2708991689434335,14.006323414402516,,11.973803761655201,11.791578301205107,11.848384497403478,11.971517729170108,16.314508934808256,11.905132953229813,11.985983408882841,14.417320704838836,2.530006758686128,252.11382145924526,,215.570465064291,212.2985313666061,213.3139446895827,215.53018263188582,292.6790561012932,214.33736571104467,215.78880617600208,259.1365481059595,70.96862745098039,0.0,7.917262715961483,0.0,13.965976060550975,0.0,0.0,73.80699198834668,5.552413880608082,0.0,11.30912813783757,0.0,0.21745530887909226,2.2977445252792474,-0.6511855500349819,0.0,0.0,44.35957093425607,693.9577336005362,109.68707968265952,260.2349747773167,375.3187395891584,410.4799990478886,416.47999904788844,416.47999904788844,1145.0,154.139916246278,105.93961416061983,86.65134848156679,67.45,67.45,0.8888888888888888,8.393096614894652,6.285402218862249,4.12682496195977,5.904757618700575,,5.9232806902137485,5.923573854530463,5.922013262574198,5.923417695008098,5.888681744634688,5.9233663201823195,5.923198436990723,5.911204735620813,0.11463402672110472,0.16402104496390488,,0.1645355747281597,0.16454371818140173,0.16450036840483884,0.16453938041689162,0.16357449290651913,0.16453795333839777,0.16453328991640898,0.16420013154502258,2.698442182432589,3.0566922474781895,,3.0598243115063473,3.0598738038531414,3.0596103146820495,3.0598474411227015,3.053966005619904,3.0598387679121974,3.059810424979871,3.0577835030808567,390.9400000000018,3143.489150635848,250.51375254961064,,247.96795229943098,247.88229274530175,248.29647792691617,247.94214173950166,253.08630017611654,247.94765783795134,247.9844691521734,250.06150938058227,87.319143073218,6.958715348600296,,6.8879986749841935,6.885619242925049,6.897124386858782,6.887281714986157,7.030175004892126,6.887434939943093,6.888457476449261,6.946153038349507,9.334022501914774,6.804447664877659,,6.79423335867776,6.793887852929452,6.795557353126955,6.794129264971006,6.814664383441157,6.7941515122463265,6.79429996527966,6.8026407705843726,25.275104198388547,23.04016763263936,0.0,3.526989511368796,0.6583146727541431,13.113080721612922,3.9238357450535197,5.9323105311359425,3.613530320380103,472.351044668141,188.29251370727957,-523.8089066425857,-24.13535380426338,-7.078498738413321,-21.825371110107735,451.5432532480523,1256.143290717321,23.92048690043046,16.97490933401785,25.12286581434642,4374.0,58.0,2.745580087891452,1.5764302684694365,0.10206207261596575,0.05892556509887896,0.4312210373055738,0.24982337433319007,0.034020690871988585,0.017010345435994292,0.0,0.0,0.0,0.0,0.09622504486493763,0.02795084971874737,0.4036113827417108,0.1399575274128113,0.7258244203006683,0.23379809241815142,25.70853153444066,21.85014320759975,17.308499414264453,12.92369605506347,15.827774231197418,10.394157051166442,12.522494343497266,7.3788763115981695,11.069173691437596,5.798431562928537,8.799368460527338,4.178175243071835,6.240889315992638,2.6075110013887275,4.725124869160932,1.7552584872152084,5.576798758501542,3.0267195135121794,10.085944743444731,4.998293565839602,15.897075406705325,7.28615967002055,120.1103278264707,51.897299273106256,30.437450964354987,26.25517418200911,25.794437240707907,25.794437240707907,188.0,221.0,80.03113399999998,46.994866000000044,0.33783783783783783,261.07,11.92361111111111,7.986111111111111,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,15.0,16.0,74.0,0.0,1.0,77.0,16.0,1.0,8.0,69.0,17.0,39.0,60.0,0.0,0.0,0.0,29.0,0.0,1.0,0.0,1.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,5.0,1.0,1.0,36.0,7.0,0.0,3.0,3.0,0.0,4.0,11.0,0.0,0.0,1.0,1.0,3.0,3.8918202981106265,6.550555643845621,4.45143608604605,4.970680978589223,5.549805390871389,6.007430165629371,6.2052835092518555,6.501512524835655,6.7590150663529105,6.584845344659548 +4449,CCc1nn(CCCN2CCN(c3cccc(Cl)c3)CC2)c(=O)n1CCOc1ccccc1,0,24.523076923076925,6.011744615384617,3.076923076923077,6.147768281101615,164.3459396999672,98.2882433846154,1.4775218608487384,6.112358461538462,3.022303706048562,7.589092076923076,211.32193452266512,24.63235294117647,6.317645588235295,3.75,6.089869281045751,148.38534793274707,93.32029419117646,1.7578696752941176,6.466280882352941,2.721707818930041,7.737181676470588,252.70611791157327,20.024590163934427,6.268981967213115,3.3114754098360657,4.4890710382513666,159.53495977048559,73.92249683606556,1.4602600810248936,6.36933524590164,2.5596033191661607,7.759951573770492,203.34903719663922,16.204968944099377,6.088260248447205,2.8198757763975157,2.984126984126984,163.75104311252204,57.90885780124223,1.2850170273861365,6.176983229813664,2.4039887022978808,7.6591830807453425,171.8838074083457,14.544910179640718,6.023670658682636,2.62874251497006,2.210911510312708,162.61900516821507,50.417774029940105,1.2400818526761856,6.111745508982036,2.3072558586530643,7.603923592814372,161.2631063619449,13.158192090395481,5.9177508474576275,2.4124293785310735,2.283113622096673,164.26868535974097,45.275489310734464,1.1537517214152937,5.994691525423729,2.3311013461672596,7.529018418079097,146.0685096168517,12.703488372093023,5.840883139534884,2.377906976744186,2.3204134366925064,166.7079317485323,43.686921825581386,1.1099674977549185,5.924928488372093,2.111936548952053,7.493644302325582,139.0882608486993,14.033333333333333,5.923726666666667,2.506666666666667,2.6325925925925926,166.5576046492271,49.33338180666666,1.15206238702036,6.009010000000001,2.2482716049382723,7.554823426666667,150.17079802287952,14.845588235294118,6.089646323529412,2.661764705882353,2.6437908496732025,164.7328673361476,52.25659433823529,1.2186367689247941,6.159026470588236,2.6147194989106755,7.6590441617647045,162.89994273324706,9.7301775147929,0.0971206153846153,0.014832487872024899,0.516923076923077,3.4994988677039958,1.4765472568919715,46.0011048766864,0.23784941963373823,0.0992999763313609,0.7408555486111675,0.0606536369230769,51.10105364373665,0.5677862861120777,0.011111941176470599,-0.006576539747097023,0.16882352941176465,1.2289269185649276,-0.44565611931059457,2.609714043449354,-0.03064942267761878,0.0115795033066481,0.019889643912044907,0.0031115664705882165,-2.772735696497658,0.170579105635852,0.004867606557377068,-0.00032020071646459206,-0.01704918032786889,0.140326455727885,-0.01050943127092643,0.7887406234397122,0.0006993102225398232,0.0038407172373654147,0.03909462987675641,0.0024553121311475233,-0.5333910958231941,-0.2969238119739793,-0.004700347826086944,0.0005540747414900931,-0.09590062111801245,-0.44349443198941524,0.13899069216061577,-1.3490376289080825,0.009658047293792393,-0.005387515748465577,0.03792746701207001,-0.0031800668322981454,1.1445280880222328,-1.2702051518265245,-0.016368814371257465,-0.0017598745742668947,-0.11904191616766467,-0.8836445364804033,-0.06764381023159591,-6.074036479542217,-0.03103128069662657,-0.01600058434610068,-0.11180232587370828,-0.0073184594011976075,-8.128932830796758,-0.34095543743522894,0.005160384180790962,0.0014850213759638818,0.0006779661016949234,-0.06406177915956271,-0.07540179668389814,-1.6852506207976454,-0.013195055853198018,0.003002266171898512,0.005514322582585978,0.004520508926553673,-4.3162140920137455,0.014276868033576647,0.00032202325581394674,-0.0002840765207787126,0.06348837209302327,0.35470285936594814,-0.03637732076753292,0.1379534898610153,0.006356608932895594,-0.0002955130039906486,-0.020052343980563096,-0.0021684413953488354,1.9441543458626696,0.2877712031558187,-0.0007874666666666704,0.00044853088258040475,0.021333333333333336,0.15048910317286388,0.05627929182268325,1.4574516944930962,0.01347562190586855,0.0004659928994082746,0.041394264777191866,-0.0028273373333333354,5.390512629228273,-0.4520100939784196,-0.018572029411764685,-0.0012639190654078008,-0.08411764705882353,-0.8317763940991694,0.07624041377768596,-2.048105031211277,0.010791870518036886,-0.017103019317786277,-0.10917400847374502,-0.010889623235294122,0.32444925949042996,,,0.4812409812409813,1.1818181818181819,0.5151515151515151,0.045454545454545456,0.6666666666666666,-0.15151515151515152,0.9535912655181547,0.008450059745099757,0.01887430216934218,0.8637876804999854,0.23014893202890557,0.25880141920699756,1.8173789460181402,0.48895035123590314,2.050913938439521,1.5484470766672935,0.3329327564115837,0.11605139845542005,0.05348270690522388,0.5024668617722277,7.218837737600013,1594.0,390.7634000000001,200.0,399.60493827160496,10682.486080497869,6388.735820000001,96.038920955168,397.30330000000004,196.44974089315653,493.2909849999999,13735.925743973232,1675.0,429.59990000000005,255.0,414.1111111111111,10090.203659426801,6345.780004999999,119.53513792,439.7071,185.0761316872428,526.128354,17184.01601798698,2443.0,764.8158000000001,404.0,547.6666666666667,19463.26509199924,9018.544613999999,178.151729885037,777.0589000000001,312.2716049382716,946.7140919999999,24808.582537989983,2609.0,980.2099000000001,454.0,480.44444444444446,26363.917941116048,9323.326105999999,206.887741409168,994.4943,387.0421810699588,1233.128476,27673.292992743656,2429.0,1005.9530000000001,439.0,369.22222222222223,27157.373863091914,8419.768262999998,207.093669396923,1020.6615,385.3117283950617,1269.85524,26930.938762444795,2329.0,1047.4419,427.0,404.1111111111111,29075.55730867415,8013.761608,204.214054690507,1061.0604,412.60493827160496,1332.6362600000002,25854.126202182753,2185.0,1004.6319000000001,409.0,399.1111111111111,28673.764260747557,7514.150553999999,190.914409613846,1019.0877,363.2530864197531,1288.9068200000002,23923.18086597628,2105.0,888.5590000000001,376.0,394.8888888888889,24983.640697384064,7400.007270999999,172.80935805305398,901.3515000000001,337.2407407407408,1133.223514,22525.61970343193,2019.0,828.1919,362.0,359.55555555555554,22403.669957716073,7106.896829999999,165.734600573772,837.6276,355.60185185185185,1041.6300059999999,22154.3922117216,632.4615384615385,6.312839999999995,0.9641117116816184,33.60000000000001,227.46742640075973,95.97557169797815,2990.071816984616,15.460212276192985,6.454498461538458,48.15561065972589,3.9424863999999986,3321.568486842882,38.609467455621285,0.7556120000000007,-0.4472047028025976,11.479999999999997,83.56703046241508,-30.30461611312043,177.46055495455607,-2.084160742078077,0.7874062248520709,1.3524957860190536,0.21158651999999872,-188.54602736184074,20.810650887573942,0.5938480000000023,-0.03906448740868023,-2.0800000000000045,17.11982759880197,-1.2821506150530244,96.22635605964489,0.08531584714985843,0.4685675029585806,4.769544844964282,0.29954807999999783,-65.07371369042968,-47.80473372781067,-0.756755999999998,0.08920603337990499,-15.440000000000005,-71.40260355029585,22.377501437859138,-217.19505825420129,1.5549456143005753,-0.8673900355029579,6.106322188943271,-0.5119907600000014,184.26902217157948,-212.12426035502958,-2.7335919999999967,-0.2938990539025714,-19.88,-147.56863759222736,-11.296516308676516,-1014.3640920835503,-5.1822238763366375,-2.672097585798814,-18.670988420909282,-1.2221827200000004,-1357.5317827430586,-60.34911242603552,0.9133880000000002,0.2628487835456071,0.12000000000000144,-11.3389349112426,-13.34611801304997,-298.28935988118326,-2.3355248860160494,0.5314011124260366,0.9760350971177181,0.8001300800000001,-763.969894286433,2.4556213017751833,0.05538799999999884,-0.048861161573938564,10.920000000000003,61.008891810943084,-6.256899172015662,23.72800025609463,1.0933367364580422,-0.05082823668639156,-3.4490031646568524,-0.3729719199999997,334.39454748837915,43.16568047337281,-0.11812000000000057,0.06727963238706071,3.2,22.57336547592958,8.441893773402487,218.61775417396444,2.0213432858802824,0.06989893491124119,6.20913971657878,-0.4241006000000003,808.576894384241,-61.473372781065066,-2.525795999999997,-0.1718929928954609,-11.440000000000001,-113.12158959748703,10.368696273765291,-278.5422842447337,1.4676943904530166,-2.326010627218934,-14.847665152429322,-1.4809887600000007,44.12509929069847,0.6983452978067917,0.6046569155159792,0.4482044886329113,0.3357835962441383,0.28886640169801125,0.18098330843137864,0.18953529855984058,0.1010883072897125,0.12402858703498224,0.0574073668390467,0.08283118506515365,0.033517066533281174,0.05433660963561322,0.019770191158487164,0.03556301253662061,0.011531018214387376,17.001103897289077,5.699459551002252,3.547577368027813,2.1956549387594397,0.4826413104238523,-0.5227544123023337,3.267598471770708,0.9778535955302654,6.022498295990281,0.773995941780734,14.693202744717238,10.959830213882128,35.450517775646404,11.711171182201143,2.2078632115664183,0.7456228169343087,3.4940421570591216,2.2464398750668413,7.0082817997623525,1.3044683846658638,3.7059481679247246,2.4425505060632227,22.45586910333111,14.702469714588513,0.2505393555496604,0.5188227442036615,0.7063677104390002,0.8536960569323514,0.8733948967175601,0.8733948967175601,1.121721314886187,1073.9013681307224,0.0,1.0,9.0,0.0,12.0,2.0,0.0,0.0,0.0,4.457016080289306,2.7808009149180943,1.6090335603684736,0.6885367308025145,0.5654598077255919,0.5654598077255919,257.0810337258593,2074.8049573753397,56.02820410565958,31.920076267312922,66.85660536805813,,20.0,1103.0,0.0,4.794537184071822,5.689743398203474,19.696394776338067,62.161974920440045,5.687386274683562,9.24890258293654,55.4546737473835,20.964868338463603,16.337802844032566,15.880952380952383,39.0,17.0,1.5,22.0,0.0,0.018759018759018694,-5.0,0.12604986411438024,0.04176395033537916,-0.08428591377900108,0.0,0.13268572424612124,0.0,0.5679853479853472,0.8278499278499274,0.4419354838709669,0.526221397649968,0.8278499278499274,31.468511762099105,0.278851971588292,0.622851971588292,28.50499345649952,7.594914756953884,8.54044683383092,59.973505218598625,16.135361590784804,0.5813142757538787,0.09745127436281859,0.0,0.25817091454272856,0.44,0.33936931854675667,-0.8799101213379548,-0.03442097287987718,-0.013537078789814689,-0.04631105901778709,0.6606306814532432,1.712870290002397,0.0355946830839974,0.026351850615421498,0.037236310652226025,-5.599906286540399,0.7031350608839985,0.7370748021679068,1.5798410055144596,0.7703081232492995,0.57385378166978,1.5844538404426227,0.7112195306725244,1.1756858314794623,0.6962476540266392,0.5748545746058518,0.7367334004664432,1.0779660032239529,0.8281978378680152,1.087050166088766,1.4388230655282876,1.2568306010928958,1.0780159753442413,1.182000577338201,0.8310137418555403,0.9409187871550942,1.0268299187986487,0.6496585708659949,1.0089925509536484,0.9605106078484751,0.9742079649962002,1.2007344904190342,1.2999388144567803,1.330967169476486,1.2386180711311272,0.9588409893370411,0.9728529464638245,0.9019921614614366,1.1601549954906207,0.8577811257266296,1.1654144850731702,0.9274359141816451,1.010404391897305,1.2721878841970102,1.2254803175953977,1.2546335899629308,1.2925415018115431,1.08234762996471,1.0137656481327846,1.0741767423905118,1.2160609410360024,1.3631929635102606,1.176416544530099,1.1168320523251554,0.9198746095290711,1.0308524815552143,0.8825880501522613,0.9147161689534569,1.0050973583904204,1.013164800379556,0.9235330662193724,0.9986949100642318,1.014793669844603,1.3666738587716911,0.9753366390885327,1.0488554564247536,1.0416296606382198,1.0347872766659552,0.9344137421418968,0.8637873754152822,0.883669510248733,0.9432767322654402,1.0382863747713,0.9348681972798278,1.0464956636697063,1.1742639905050898,1.081507463187769,0.9309144126508202,1.0014627422362767,1.1082158479120863,1.1568823956404597,0.984126984126984,1.0131238504940927,0.9166346565723614,0.9973881056433983,0.8942388692012383,1.0838803420107244,0.9025825730778733,1.1429652651010624,0.8532338430478422,0.8616194714324553,1.4741980583363807,1.2689182950165871,1.2955182072829128,1.4238561785885213,0.979807863277232,0.8621544381931062,0.8536461400362187,1.3578382206002375,2.001661345712082,1.3890335505920683,0.9230603308033496,5.5,0.11478624630139783,3.333333333333335,2.201388888888889,1.2505555555555556,0.8127777777777778,0.6016780045351475,0.48791808390022673,0.29355631141345423,0.17905864197530869,6354.197213825821,7280.200867208262,3262.6669145398673,2947.0730641964137,21.64279858549439,0.4852517885863546,11.140591861869012,0.9426973767499157,0.0,0.44,1.565351732739148,3.24156689811036,4.413334252659981,5.33383108222594,5.4569080053028625,5.4569080053028625,0.15277777777777776,0.004414855626976839,0.06944444444444448,0.04586226851851851,0.030501355013550138,0.02138888888888889,0.01671327790375409,0.012839949576321754,0.00793395436252579,0.005776085225009955,0.3676528573377682,26.074074074074073,13.347222222222221,7.492195629552549,199.68897745780023,1.0,4.4173221874549755,253.51413855663083,,203.99041677757722,199.68830694381938,197.95836248546604,204.01457199192174,310.6545235303489,202.83396301142164,205.3405587468241,272.1925577149246,0.05835312719103693,0.11441382586452208,-0.44338750207244965,0.32659313725490174,0.35117225780707867,-0.30182313314419035,0.05673155134958445,-0.12886061578294156,0.11661134004712814,0.02684685826991604,0.051300575339520295,-0.05425985373664612,0.01753093459770067,0.050119189814649134,-0.021587795602955647,-0.03298204527712731,0.04009901446830657,-0.007117571904232883,0.017146123458426976,0.002940138443964604,0.03867792701731431,0.05276957154474243,0.040480872305504734,-0.010437966691290929,-0.030515765156654405,-0.048397014449225964,0.037355482523947756,-0.1855220349009169,-0.1267308402589625,0.09413223417798455,-0.029326200588538076,0.04060572150507962,-0.05425495501114327,0.05119414585362843,-0.05242994474232797,0.02239734812517932,-0.1305428549371702,-0.16854108992652056,-0.1186499924659396,-0.23028942115768458,-0.2525060215436384,-0.04581215393944206,-0.13204109979150894,-0.1304660770012023,-0.1611338183274811,-0.150909750332972,-0.1206598610150804,-0.1590756403472535,-0.03504102951018833,0.053133767329983456,0.10011950717753394,0.0013115415657788696,-0.018305986537321933,-0.05106629424283624,-0.036635003122538895,-0.05547651061548497,0.030234309038302726,0.007443181863081557,0.07452989063601813,-0.0844642876075565,0.0014672772425653449,0.0033157044417261574,-0.01915231775206779,0.12281976744186048,0.10135818663621027,-0.024636746706031356,0.0029989168788624215,0.026725349772490796,-0.0029759624816478405,-0.027066469324760933,-0.03575121798712466,0.038045288839185426,0.029575123651990616,-0.008108130941594214,0.03023976061536953,0.04126984126984127,0.04300304382484314,0.03811546942367914,0.03168297149383776,0.05665610589514793,0.0046927795617319286,0.0558735975653971,-0.046614473208244134,0.10548730886861034,-0.04645445504886458,-0.19122643877632023,-0.08521288379353001,-0.16272759103641452,-0.2376844301266752,0.051634252423567326,-0.04452295301822777,0.045372700655125296,-0.17223588513973095,-0.14736207169995047,-0.1795378445171347,0.006349169661987919,26.911611450950193,16.384535610070444,1.4371217231091096,16.619801551786974,32.58898045940207,39.89469805385927,42.176774242677155,42.30083578113867,42.30083578113867,67.6801599685042,51.09875353002069,10.986780961582262,3.8296961490288615,1.764929327872388,16.581406438483512,19376.12535104041,18883.29449002444,1428.1878109544086,122.0,48.0,62.0,77.0,90.0,86.0,92.0,100.0,110.0,469.22445294400086,36.0,5.1298987149230735,5.963579343618446,6.816735880594968,7.664346632098617,8.522578663692576,9.376278449519614,10.23756406455664,11.095149893084974,11.958783675637639,0.6410256410256412,0.9728,1.1333649479211856,0.6020301902742998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6667100506678949,0.9616289592760183,0.9991988346686088,0.6150694891105233,9.0,1.0,0.0,0.0,0.0,0.0,4.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,9.636772684650527,18.180798295796748,0.0,0.0,0.0,9.467009378641833,9.476340119217006,5.098681808301038,0.0,42.790145363769575,36.75265696523406,56.39937964682634,6.544756405912575,271.57145334104877,-704.1251445019017,-27.54448655061074,-10.832694530798486,-37.05921813167903,528.6524870669081,1370.679812873438,28.483717555048848,21.087381736514434,29.79738723637909,0.5,0.9340164124262273,0.1896550041086805,46.8582723411373,0.13326825151242147,48.569794903403064,0.06598358757377272,10.0,0.2777777777777778,0.2599229707213753,0.538254553482724,0.7328237646183648,0.8856700965170257,0.9061067298974487,0.9061067298974487,3.5519000000000025,,1.8613445378151263,1.6163751074951451,1.604177211640281,1.8722168178861813,-4.5215526654589535,1.51640088778024,1.4080887386601724,-2.311323467595586,132.52399999999997,4.736862953800049,0.0,19.247494122088057,0.0,32.85489325736779,44.230573724926266,75.92862201017105,0.0,5.749511833283905,4.290459441148391,0.0,5.579729825986222,2.3978952727983707,7.060476365999801,4.844187086458591,8.623533227187563,7.002155954403621,10.228212487576084,41.66666666666668,17.71062418954929,4.56882072646246,0.0,0.0,0.0,0.0,3.5821410392091653,3.35741216409555,63.232,0.0,12.877350276425577,0.0,0.0,0.0,0.0,0.0,0.0,73.66872161487706,15.326516082854,5.687386274683562,5.749511833283905,58.57815811616384,19.51033443475116,0.0,19.168963320616562,59.39184080022631,5.022633313741326,0.0,0.0,39.13196236782949,43.33615329341317,43.45605720955917,507.02827711326165,,407.9473660820529,399.43116866487946,396.02705181742436,407.99387399367856,622.9532480299556,405.70119266326674,410.6990675065617,545.225596690793,43.45605720955917,507.02827711326165,,406.3116390639729,398.0107178128383,394.61732032840723,406.3485925476574,625.8305997261567,404.3685979437024,409.4616561907695,546.6964388974449,4.745509075213464,392.08250423693136,,320.12716714842344,312.5340313595478,308.76994686213277,320.1798882913123,487.18710018459046,317.6639678349301,321.78347718541204,427.88876971749664,1.31685021847149,15.364493245856414,,12.362041396425845,12.103974808026651,12.000819752043162,12.363450727081169,18.877371152422896,12.293975535250507,12.445426288077627,16.52198777850888,2.4149313045679195,253.51413855663083,,203.99041677757722,199.68830694381938,197.95836248546604,204.01457199192174,310.6545235303489,202.83396301142164,205.3405587468241,272.1925577149246,62.50588235294119,0.0,2.027843732428679,6.132075877959168,0.0,0.0,0.0,64.94792425345958,8.138119803041647,0.0,5.7665593908233514,0.0,0.0,4.830453466836111,0.0,0.0,0.0,39.979516792184015,747.422293957419,101.74786262804462,210.7018483771734,286.86672642289875,346.69902034468606,354.69902034468606,354.69902034468606,856.0,145.76491531772655,52.80164645053791,83.02664966155865,55.53,55.53,1.0,7.975177852860208,6.169925001442312,3.849292452531247,5.6540354671725215,,5.662155197764153,5.658504227494348,5.65565990769775,5.662213462604752,5.665804008219046,5.659548229804825,5.660304131503381,5.66714832996124,0.1166452258342802,0.171334408096137,,0.17158046053830767,0.17146982507558628,0.17138363356659847,0.17158222613953794,0.1716910305520923,0.17150146150923712,0.17152436762131457,0.17173176757458303,2.5418118213194654,2.92629200065881,,2.9277270652004987,2.927082055001139,2.926579265785333,2.9277373553707235,2.9283712784280955,2.927266539446211,2.927400092725097,2.928608519653221,359.1500000000014,845.2756459652304,219.575407542535,,218.42426059518792,218.9705117149265,219.34906739999013,218.4140107895613,217.83592559368043,218.8252740114493,218.72135448190073,217.75555711621868,25.61441351409789,6.653800228561667,,6.618916987732967,6.635470051967469,6.6469414363633375,6.618606387562464,6.601088654353952,6.631068909437857,6.627919832784871,6.5986532459460205,7.933585250878144,6.585618184325516,,6.580361789485191,6.582859539519318,6.584586844422964,6.580314862252391,6.577664612998317,6.582196044284597,6.5817210341954535,6.577295604504975,9.123971554918901,17.70780374326169,5.3446403900935,1.1359890761141982,1.6233760770773717,17.71062418954929,1.6218193922215247,8.5441441432488,0.0,425.51390709275944,217.31797849488964,-563.4577976736338,-22.0417575640437,-8.668581502671287,-29.655673561770197,423.0403763071476,1096.8508008952235,22.793352699368487,16.874627706080364,23.84458262815704,4032.0,48.0,1.692122944943172,0.8627796261698975,0.0,0.0,0.32616718007408674,0.08961150084209521,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.022360679774997897,0.5139628260811376,0.16641566692703547,0.7292934994976719,0.2084475528431086,23.045394827624126,19.953678212027313,16.135361590784807,12.088209464788978,13.86558728150454,8.687198804706174,11.751188510710117,6.267475051962175,9.550201201693632,4.420367246606596,7.454806655863828,3.0165359879953058,4.672948428662737,1.7002364396298961,3.271797153369096,1.0608536757236386,4.134619664910459,1.7833419548345735,6.381679317586717,2.392613716323423,8.811655287300878,2.8711862531528722,109.64609540393398,62.92532362526365,37.175676141950866,27.585722771797585,26.966208714007713,26.966208714007713,168.0,194.0,72.37137599999998,42.05662400000003,0.4461538461538462,240.08,9.25,7.444444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,17.0,17.0,65.0,0.0,1.0,68.0,17.0,1.0,8.0,60.0,18.0,36.0,50.0,0.0,0.0,0.0,25.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,7.0,0.0,2.0,33.0,8.0,0.0,5.0,2.0,0.0,4.0,10.0,0.0,0.0,1.0,1.0,3.0,3.8394523125933104,6.495171140603888,4.385146762010125,4.9117353454413735,5.3904976533434334,5.735361887809524,5.627396268270915,5.727865145172158,5.909949401763294,6.166336549748492 +12004215,CC[C@H](C)[C@@H]1NC(=O)[C@H](Cc2ccc(O)cc2)NC(=O)[C@@H](N)CSSC[C@@H](C(=O)N2CCC[C@H]2C(=O)N[C@@H](CC(C)C)C(=O)NCC(N)=O)NC(=O)[C@H](CC(N)=O)NC(=O)[C@H](CCC(N)=O)NC1=O,0,25.79259259259259,6.371822222222222,2.977777777777778,7.265843621399177,167.64206032015286,101.86720908888887,1.3950044423706223,6.409353333333332,6.418363562465071,7.909546177777776,199.79827987724707,26.124087591240876,6.475099270072993,3.656934306569343,6.197891321978913,152.27240380877188,98.68224724087591,1.7340923210656938,6.597415328467153,3.2950371972404953,7.905321554744522,247.6106087698903,20.682926829268293,6.278292682926831,3.2642276422764227,4.616531165311653,157.09723054836903,76.22503299593492,1.452131708478748,6.373266666666664,3.24633644484593,7.7753827479674795,200.10783398896442,17.598870056497177,6.319386158192091,2.748587570621469,3.6045197740112993,163.90776660205472,62.80182018361581,1.2513868635741296,6.379266101694916,3.330011508683826,7.87729821468927,168.95558320437326,17.678304239401495,6.314149875311721,2.6334164588528677,3.655029093931837,166.05749980137648,63.58767845386535,1.1865773034830722,6.368135660847882,3.3044241248730017,7.902049501246881,163.44589055170317,19.642685851318944,6.439401438848922,2.7553956834532376,4.378896882494005,164.70236397407086,71.82791731175061,1.2431973053646788,6.490933333333333,4.320380732451075,7.990171865707432,173.01531410744266,18.548728813559322,6.362906567796611,2.73728813559322,3.6306497175141246,164.11261038634524,66.86477261228814,1.2713677930379665,6.421474788135593,3.6226917242100853,7.9239110169491545,172.48408745907923,17.948051948051948,6.312415955473099,2.6048237476808906,3.3945578231292513,163.98721481970063,64.0254995528757,1.2499278657202264,6.375653246753247,3.391660367850844,7.905567940630799,168.22763198879832,18.183673469387756,6.290437074829933,2.5476190476190474,3.611111111111111,163.99072674466137,65.48358788775509,1.2381401107622145,6.350416666666666,3.854607583774251,7.870362119047618,166.11292230495846,10.028751714677643,0.16175822222222216,0.02861266201687999,0.6038957475994512,4.122883706752019,1.4735451203625682,46.20533039209875,0.250225896038318,0.14934933333333328,2.856160401625015,0.10104041097393685,47.60470879346913,0.8511077067876207,-0.020034978102189713,-0.019497002329569968,0.14901044326294388,1.0891675984055302,-0.01859434270437602,3.5667620330431657,0.03231936996073117,-0.01655775182481743,-0.17464044535462636,-0.012481185615731999,2.8431603720506597,0.18082371440998374,0.027748878048780484,0.0025247378021397726,-0.06764160728027033,0.3486375887078486,-0.23370106112664887,0.8160432205480275,-0.027670792656699014,0.024309447154471562,0.3099794908743511,0.015497006189568077,-3.7719872463234725,-0.699477808002604,-0.0016492768361581697,0.005047743836190411,0.021486131454744137,-0.2537339543630957,0.07093515234846291,-3.2561547428834494,-0.01153895030416158,-0.003321762711864363,-0.23314826519480017,-0.001743915556485566,-3.485212117050431,0.25341324329779114,-0.026765875311720668,-0.007716778080148327,0.016220628127896996,-0.16221131366067384,-0.0854980392883403,1.2342593123623038,0.005241005866055159,-0.020998992518703213,-0.4330025897076212,-0.01756881433590238,3.041589243736626,0.8633523798245358,0.018969611510791407,0.002983023526398522,-0.013914399344721754,0.18675105457472144,-0.03497139236402553,3.888849447762679,0.004133284248611427,0.017617333333333384,0.4383375284564639,0.014251073847095118,1.4253226486520723,-0.2010524051986702,-0.0032875677966101363,0.003761908235573507,-0.01048708469926298,-0.3703326151707962,0.14170869501212585,-0.9479552871081816,0.009201157539892056,-0.004085279661016896,-0.09204788346643959,-0.0022328308107228646,-0.4910810686661047,-0.7691901122588954,-0.025780304267161373,-0.0054825624459924165,-0.02084070740155396,-0.36526366659229664,-0.048492097158736265,-3.4503367825337286,-0.002433871821917106,-0.022745239332096434,-0.3621493430440963,-0.016769488057699712,-0.5902650282126436,0.2601371742112485,0.01320774149659865,0.0019995365974224792,-0.03350018196579043,0.09587276703090923,-0.01878475814302712,1.115480285036532,-0.004858937059172437,0.01153158503401363,0.2631104322483394,0.010300958161865555,-0.7276409711246119,,,0.4632850241545891,0.967391304347826,0.3333333333333333,0.007246376811594203,0.6340579710144928,-0.3007246376811594,1.6595667932836968,0.02775489848604688,0.03149402892082949,1.3033743601667183,0.17554681153989637,0.295455008269319,2.9629411534504153,0.47100181980921535,1.972440819421674,1.2725055835293988,0.33618187335941085,0.30551678098608315,0.0,0.6999352358922759,7.45508487075557,3482.0,860.1959999999999,402.0,980.8888888888889,22631.678143220637,13752.073226999997,188.325599720034,865.2626999999998,866.4790809327847,1067.7887339999997,26972.767783428353,3579.0,887.0885999999999,501.0,849.1111111111111,20861.319321801748,13519.467872,237.57064798600004,903.8458999999999,451.42009602194787,1083.0290529999995,33922.65340147497,5088.0,1544.4600000000005,803.0,1135.6666666666667,38645.918714898784,18751.358116999992,357.224400285772,1567.8235999999995,798.5987654320988,1912.744156,49226.527161285245,6230.0,2237.0627000000004,973.0,1276.0,58023.34937712737,22231.844344999998,442.99094970524186,2258.2602,1178.8240740740744,2788.5635680000014,59810.27645434813,7089.0,2531.9741000000004,1056.0,1465.6666666666665,66589.05742035196,25498.659060000005,475.81749869671194,2553.6224000000007,1325.0740740740737,3168.7218499999994,65541.80211123297,8191.0,2685.2304000000004,1149.0,1826.0,68680.88577718755,29952.241519000003,518.413276337071,2706.7192,1801.5987654320984,3331.901667999999,72147.3859828036,8755.0,3003.2919000000006,1292.0,1713.6666666666667,77461.15210235496,31560.172673,600.0855983139202,3030.9361,1709.9104938271603,3740.0860000000007,81412.4892806854,9674.0,3402.3922000000007,1404.0,1829.6666666666665,88389.10878781864,34509.744259,673.7111196232021,3436.4771,1828.1049382716049,4261.10112,90674.6936419623,10692.0,3698.777000000001,1498.0,2123.3333333333335,96426.54732586088,38504.34967799999,728.0263851281821,3734.0449999999996,2266.5092592592596,4627.772926,97674.39831531557,1353.8814814814818,21.837359999999993,3.8627093722787986,81.52592592592592,556.5893004115226,198.9285912489467,6237.719602933332,33.78049596517293,20.162159999999993,385.581654219377,13.640455481481474,6426.6356871183325,116.60175582990404,-2.7447919999999906,-2.671089319151086,20.414430727023312,149.21596098155766,-2.5474249504995146,488.6463985269137,4.42775368462017,-2.2684119999999877,-23.92574101358381,-1.709922429355284,389.5129709709404,44.482633744856,6.826223999999999,0.621085499326384,-16.6398353909465,85.76484682213076,-57.490461037155626,200.74663225481476,-6.807014993547957,5.980124000000004,76.25495475509038,3.812263522633747,-927.9088625955742,-247.6151440329218,-0.583843999999992,1.7869013180114053,7.606090534979424,-89.82181984453588,25.11104393135587,-1152.678778980741,-4.0847884076732,-1.1759039999999845,-82.53448587895926,-0.6173461069958903,-1233.7650894358526,101.61871056241425,-10.733115999999988,-3.094428010139479,6.504471879286695,-65.0467367779302,-34.284713754624455,494.9379842572838,2.101643352288119,-8.420595999999989,-173.6340384727561,-7.045094548696855,1219.677286738387,360.01794238683146,7.910328000000016,1.2439208105081836,-5.802304526748971,77.87518975765884,-14.583070615798647,1621.650219717037,1.723579531670965,7.346428000000021,182.78674936634545,5.942697794238664,594.3595444879141,-94.89673525377233,-1.5517319999999843,1.7756206871906952,-4.949903978052126,-174.7969943606158,66.8865040457234,-447.43489551506167,4.3429463588290504,-1.9282519999999752,-43.44660099615949,-1.0538961426611921,-231.79026441040142,-414.5934705075446,-13.89558399999998,-2.9551011583899123,-11.233141289437585,-196.8771162932479,-26.137240368558846,-1859.7315257856797,-1.3118569120133203,-12.259683999999979,-195.1984959007679,-9.038754063100145,-318.1528502066149,152.96065843621412,7.766152000000006,1.1757275192844179,-19.698106995884775,56.373187014174626,-11.045437788099946,655.9024076014808,-2.857054990793393,6.780572000000014,154.70893416202358,6.056963399176946,-427.8528910212718,0.7468706665248502,0.5900323818628607,0.4577341629131812,0.35247502777612694,0.30976854395196257,0.2057195514397053,0.19309370184525024,0.11941984691404949,0.1208986355541686,0.06971625011973935,0.08210377970237509,0.03971474649519804,0.050335054660785174,0.02472137574321174,0.030829404634427304,0.01543216181010045,16.101024965466443,5.693373660785755,3.56158129604281,2.1927699413292765,0.44446949174204997,-0.40180027528925777,3.1948711825757434,0.9714655096683891,6.034476067135334,0.5598373362801522,14.552913763413905,10.250201788850646,32.160513463651434,11.704734693866975,3.0078281485799705,0.7508458792928031,3.5079428697595527,2.2426378665626543,7.019236865230354,0.5378165395327127,3.7203905323312334,2.438656576436377,24.531639861323725,14.701775153649105,0.24056007399039833,0.48282021833478495,0.7037927428410206,0.8426399935888282,0.9070451166389166,0.9172785971835513,2.004044100467482,2046.9823711188983,0.0,11.0,8.0,0.0,5.0,16.0,1.0,2.0,0.0,5.33554441738634,3.5819674404143544,1.9824788717677917,0.9774462739126024,0.511255925990028,0.4371818519159536,374.96221766893666,11520.470767819608,180.15551728351318,85.33682050236747,178.2814151796861,,25.0,2676.0,145.03883097690226,57.84643641963074,48.98034636762948,18.405094737549014,21.587795952773448,29.16537800469692,13.847474399381248,13.847474399381248,37.217520228044314,22.93466990864874,31.966666666666647,66.75,23.0,0.5,43.75,0.0,0.03671497584541091,-20.75,0.1761381742990945,0.013280798529025528,-0.16285737577006898,0.11494174481386821,0.20524668435013338,0.0,0.6120987654320978,0.9106280193236723,0.43596059113300334,0.5988179669030723,0.7956862745098041,114.51010873657508,1.9150879955372346,2.1730879955372346,89.93283085150357,12.112729996252849,20.38639557058301,204.44293958807864,32.49912556683586,0.5087533156498666,0.23774765380604806,0.0,0.37226277372262795,0.6046511627906976,0.36168768999565154,-3.0740241522755922,-0.08249031842353118,-0.022770549276115506,-0.07319105124465695,0.6383123100043484,5.42508775366887,0.05041760979611409,0.040185835212362,0.05833427692117065,-5.525540246087935,0.7614549147249694,0.8145924647077066,1.7795456321273269,1.0977655187416022,0.49956532895070876,1.425591183756126,0.775482632116526,1.0430085935129512,0.7954888262319479,0.6475347574812195,0.7868690544198464,1.0509707490886244,0.8949967399429974,0.5392137546868659,0.8618627988705956,1.4732706771915984,0.7620008132293385,1.3992928172340096,0.8981622074271353,1.2426076579855347,0.5529120500736128,0.4923862266820458,0.5274470472959801,1.1654836326365086,1.0670534028038328,0.9755651171509131,0.8748846679875513,1.077193641680809,1.057994059214964,1.0431119487639284,1.0657652121752839,1.0892552023002475,0.9832154899375298,1.0040231822478083,0.9765199482846916,1.080838330054809,1.0082583762397979,1.2258299206867487,1.3545319122250363,1.071855841044309,1.1070657234911587,1.0889510848771013,1.0026598810950738,0.9945091881447226,1.1935242767353027,1.2046611857626992,1.2394708351992239,0.9175962963175941,0.9294601588800192,0.958373252381181,0.9986670693486002,1.1706564241610529,1.0225385678302579,1.0966163084182268,0.9282627035493894,1.0067796423635733,0.9457897382411894,0.9383436861008555,0.9459502732475217,0.9558620197002144,1.055275694276881,1.035762560824854,0.9453563898138801,1.1334909386867564,1.1161984677650907,0.9937280861770149,1.050258830719326,1.027065417952826,1.0348378608950495,1.0448884340907345,1.042048294971956,1.0138852781869339,1.2156993237570497,1.194929852238114,1.1994457859189576,1.1176202759365192,1.1294153339917077,1.108786364366709,1.198402803027207,1.1540088131248638,1.1803059513317598,1.2014152534363207,1.2177666000355267,1.0270449966191153,1.0519427304334579,0.8979443959349299,0.8937873089836219,1.1167308555259283,0.9683080936261793,1.081188588286078,1.0443434967623864,1.122853341572394,0.8992841230378918,0.9020754961840242,0.8822143456382395,1.0328074254774522,17.5,1.3318110396898275,8.888888888888893,4.805555555555555,5.152222222222225,3.253611111111111,2.386122448979592,2.5555909863945576,1.8536627614008565,1.453734567901235,17663.422491627265,21333.045956871818,6658.099021679119,5964.355085242574,24.45128716348533,0.45667225981965703,13.285062599037111,0.8405097440231508,0.0,0.6046511627906976,1.7412711796644909,3.4948481566364764,5.094336725283039,6.099369323138228,6.565559671060803,6.639633745134877,0.24647887323943657,0.007927446664820403,0.09163802978235971,0.04491173416407061,0.04258034894398531,0.023075256107171004,0.016014244624024104,0.015873235940338865,0.010472670968366422,0.008307054673721344,0.5072788951082944,63.2922039277921,32.44255500053141,22.39758034026465,407.1081897783811,0.0,5.115940303107704,690.2768804538314,,590.7898881158668,613.4774733082025,607.2058988799208,590.8877435702976,808.7332146331387,618.8281657028789,621.5781459724926,759.1853096155145,0.08486676417983073,-0.12385755621538558,-0.6814116882262736,0.24674862152163843,0.26417616306319963,-0.012618780685725355,0.07719373506856457,0.12916077221592598,-0.1108659239064839,-0.061145181221357356,-0.12352667111529755,0.05972435173137141,0.018030530573943517,0.17154539452504178,0.08823847989572967,-0.11200874910802533,0.08456158686622355,-0.15859783178484982,0.0176612354813412,-0.11058324935506149,0.16276903694116415,0.10853014091855205,0.15337433844727233,-0.07923559122455866,-0.06974724551001485,-0.010195938194056103,0.17641643525556983,0.035579206411294924,-0.06154283564864013,0.04813911116003642,-0.07047140914807226,-0.046114133216629896,-0.022241563706551733,-0.08162996205050328,-0.01725958494899041,-0.07321149956343323,0.025268672563396554,-0.1654684067617281,-0.26969801256506043,0.02685998070424521,-0.03934413997538215,-0.05802200292808365,0.026712487539605728,0.020945097805754622,-0.14060318884608272,-0.15160303653158413,-0.17387908626415047,0.06389261316422337,0.0860877210232427,0.11727138967150061,0.104255365147035,-0.02304106197142958,0.04529622173647064,-0.023732827641830715,0.08416451986733728,0.016518211400383922,0.11796057565260902,0.1534709073786862,0.1410433084122268,0.029940791253146193,-0.020047600231683737,-0.02032396097982396,0.13147704444116998,-0.017365720392882776,-0.08982368689281849,0.09616854825406242,-0.020516145627870776,0.03677140410152852,-0.027353852674380185,-0.03222784106035112,-0.02209839399108163,-0.010315808690199905,-0.07669848991606228,-0.15937554155203681,-0.19161315513942703,-0.034510439068991546,-0.0885942201071805,-0.03290845762958701,-0.07467399871950155,-0.009726698397133119,-0.15229555314673723,-0.12679587002118337,-0.16596812993986498,-0.012399299211628027,0.02593913795178747,0.0816511291676658,0.06988292792340874,-0.055473452328414566,0.023253813071151885,-0.012748003358326142,0.02414180951787507,-0.019418202256845433,0.0772121627639023,0.09212032773041826,0.10194889413625469,-0.015285062960503535,14.169076661884406,0.0,34.69974623549355,19.023695562008683,34.13072316247266,41.52202289099062,48.04522899739845,51.898211115926316,52.19496667148188,136.0984165400955,87.80288526352852,23.196549261799348,21.080657888039738,0.0,48.29553127656704,52860.146063369386,42648.170238476836,13459.011495297062,237.0,97.0,115.0,138.0,165.0,173.0,190.0,220.0,228.0,1006.4364575520019,71.0,5.820082930352362,6.634633357861686,7.4949862339505335,8.334951631422454,9.196748418456716,10.048323556581577,10.912156898644932,11.770114824221352,12.635888844502169,0.6617283950617283,0.9968000000000001,1.1447862602173946,0.6211546822819822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6406845775116435,0.9811764705882352,1.0176148471851312,0.5994635487105262,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,4.0,0.0,0.0,4.0,1.0,12.0,7.0,0.0,2.0,10.0,1.0,0.0,0.0,0.0,70.15862726238424,48.042397637319624,0.0,64.97897702286656,0.0,52.73990902479004,0.0,0.0,0.0,67.83630051138518,55.21528421264705,30.892106865258175,19.007418857986544,490.26445419088384,-4166.812459675105,-111.81489460819344,-30.86527747907486,-99.20982046845486,865.2266718598205,7353.658308144503,68.34062267531972,54.47154302329262,79.07159471123123,0.48,0.720195238901884,0.05976702634075432,565.6625679272083,0.03448502311065525,618.3836252243885,0.279804761098116,13.0,0.23943661971830985,0.24605292532846873,0.49384473972911036,0.7198628613985698,0.8618804940572508,0.9277562176124686,0.9382233653088059,-3.6086000000000125,,5.964285714285715,5.607404130018535,4.606804265491803,5.951906495836451,-18.357437128182674,5.0621175030599765,4.807805728291521,-8.304671525274516,254.37529999999958,57.84643641963074,0.0,42.117429958894796,34.770482000971526,127.39624841535425,24.595220025318728,29.828919765543436,0.0,5.749511833283905,4.962844630259907,0.0,6.274762021241939,2.3978952727983707,7.739359202689098,4.59511985013459,9.277905558138606,6.6052979209482015,10.861169716770034,89.33333333333333,5.8515774682021755,0.0,0.0,0.0,0.0,0.0,0.4773269947509804,0.0,134.568,0.0,146.7986828626368,0.0,0.0,0.0,0.0,0.0,-9.36428739236319,154.54614512934828,60.152190136693065,0.0,5.749511833283905,147.91536080706015,59.16073064771604,11.835812092322787,78.20415165094157,24.26546827384644,0.0,0.0,0.0,83.8558821080676,86.49241796407188,84.09020478806727,1380.5537609076628,,1182.241734869988,1226.792413163361,1214.2782672014214,1182.439258675152,1620.4903958817613,1237.5096033621908,1243.0169352572088,1519.092764581053,84.09020478806727,1380.5537609076623,,1176.8362101587068,1221.4331962740112,1209.8049934943497,1177.045983912638,1636.1595352363806,1232.713198923738,1238.4178252839033,1526.6752907563039,4.780581177945011,971.3406194639942,,824.2844953462334,871.2053557449609,863.7296662060517,824.419060180443,1137.7926721091258,877.6272972261083,879.8340237405936,1073.8494438584567,1.218698620116917,20.00802552040091,,17.133938186521565,17.779600190773348,17.59823575654234,17.13680085036452,23.48536805625741,17.93492178785784,18.01473819213346,22.015837167841347,2.415663108483417,690.2768804538314,,590.7898881158668,613.4774733082025,607.2058988799208,590.8877435702976,808.7332146331387,618.8281657028789,621.5781459724926,759.1853096155145,132.45882352941175,0.0,7.023242132918398,0.0,0.0,22.40820937502321,9.852314414269745,137.3780043699927,-1.4293886637100508,17.84295880170456,0.0,2.046045508111879,-11.563208323466885,1.2231934885890672,0.0,0.0,0.0,80.92757907592103,976.2182553554709,235.07160925470626,471.8045011459243,687.7354579132103,823.4148586236608,886.3505555932084,896.3505555932085,1703.0,222.84788669599374,379.27287069523356,121.71435417298076,450.12999999999994,399.5299999999999,0.9230769230769231,7.959799931833912,7.149747119504682,5.096664789073598,8.184827582915322,,8.169661713517431,8.185343279279127,8.185061847953056,8.169657944652318,8.180006852816119,8.18547721343649,8.185019172697396,8.18696930463917,0.07386470708802316,0.11862068960746842,,0.11840089439880336,0.11862816346781344,0.11862408475294285,0.11840083977756982,0.1185508239538568,0.11863010454255783,0.11862346627097677,0.1186517290527416,3.5601077744797216,4.0338035571971504,,4.031948913683657,4.033866561593173,4.0338321786534825,4.03194845235905,4.0332143999701,4.033882924139867,4.0338269648423095,4.0340651927098286,746.8500000000028,3307.6573949832136,630.811100149364,,632.5091233119491,628.0138020692727,628.4359235582899,632.5118570186164,631.4478056294396,628.0491510739923,628.212088246969,628.4425702237621,47.937063695408895,9.14218985723716,,9.166798888578972,9.10164930535178,9.107767008091159,9.16683850751618,9.15141747289043,9.102161609768006,9.104523018072014,9.107863336576262,10.035516893756597,8.378527863476657,,8.381216056309476,8.374083555647218,8.374755483057108,8.381220378303672,8.379536698559795,8.374139841050175,8.374399241195288,8.374766059521745,0.0,148.02187635122587,27.69527321597431,22.932288616647316,-10.389026257274212,-5.048139468372688,-0.693582911064784,6.601931611419003,2.046045508111879,941.8659210011486,664.5491170738351,-5648.077313007114,-151.56409740170096,-41.83760972597862,-134.4780312620741,1172.8070757283715,9967.818580698911,92.63510758517543,73.8356931903623,107.18084495375174,23044.0,107.0,5.68114449876891,2.445589876114731,0.0,0.0,1.157094342604843,0.2743847400734294,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.21941609682128765,0.11906487069530546,0.40502160448447405,0.14132811482645533,51.53407599021467,40.712234348537386,32.499125566835865,25.025726972105012,30.04754876334037,19.954796489651415,22.205775712203778,13.73328239511569,16.684011706475268,9.62084251652403,13.54712365089189,6.552933171707676,8.707964456315835,4.276798003575631,5.857586880541188,2.9321107439190857,10.753381966228257,4.119588302917325,14.460098741083687,5.288464124694599,22.415654874766158,6.5392838203678885,227.70191028243102,122.83451667854006,79.32589751157897,47.06393116037959,32.046978985511835,31.053269083901288,336.0,380.0,144.4423380000003,81.6396620000001,0.24444444444444444,349.26,28.916666666666668,15.472222222222218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,6.0,6.0,135.0,0.0,1.0,137.0,6.0,11.0,14.0,123.0,17.0,71.0,120.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,66.0,15.0,12.0,2.0,69.0,26.0,0.0,12.0,12.0,0.0,3.0,17.0,2.0,0.0,0.0,0.0,1.0,4.454347296253507,6.103117722388829,4.863680881139593,5.10138965736472,5.367726817920205,5.727865145172158,5.662092047601992,5.746003490090163,6.027977270040139,6.085068727067206 +154068,O=C1Cc2cc(CCN3CCN(c4nsc5ccccc45)CC3)c(Cl)cc2N1,0,32.285714285714285,6.057185714285715,3.6122448979591835,6.89896699420509,160.24189678487204,130.12616697959186,1.7663137755475304,6.196622448979592,3.213330005070158,7.6411492653061215,241.57161703706706,29.18867924528302,6.301788679245283,4.320754716981132,6.681341719077568,145.44722190362833,112.5191099433962,1.991309405660377,6.480296226415094,2.6690930972901628,7.7354456981132085,282.379870289222,24.71578947368421,6.23120947368421,3.9157894736842107,5.197660818713451,153.67330904971098,93.69195630526316,1.756099697409926,6.373091578947369,2.561717565518735,7.715839052631578,241.39575684977632,20.16,6.068093600000001,3.192,3.522666666666667,157.40163494145446,73.907787392,1.53101562200588,6.1995984,2.383127572016461,7.637635648,201.06720684007453,17.425373134328357,5.85454552238806,2.8134328358208953,2.65257048092869,158.72229968803623,62.38472412686567,1.4045113502330222,5.99270447761194,2.1132224679073763,7.487328328358208,174.8688251670904,16.244094488188978,5.834212598425197,2.6377952755905514,2.332458442694663,162.63107943007984,57.41139808661416,1.3226037682048584,5.959787401574803,2.0354978775801174,7.511282976377953,162.08566671595574,17.41509433962264,5.85225283018868,2.811320754716981,2.2840670859538785,157.5564638380564,61.914143386792446,1.4076572163894527,5.999378301886793,2.0357267645003496,7.496711811320755,175.9803274056573,15.028571428571428,5.843208571428571,2.6476190476190475,2.2232804232804235,161.41207361996896,52.33650379047618,1.3014228084636001,5.970910476190476,2.087330981775426,7.491946952380953,161.41425913623004,14.849462365591398,5.842764516129033,2.6774193548387095,2.4862604540023896,162.41014526543333,51.1958925376344,1.2828885902008387,5.967112903225806,2.070589406610912,7.5100821505376345,157.77036309933084,12.85381091211995,0.08464822990420652,0.012638454345150051,0.603082049146189,3.491970938035078,1.6280781481080673,59.10736643981675,0.2990189680713086,0.08967197001249474,0.8500725673097265,0.055059469387755085,52.79882216468248,0.7961698348958383,0.0005275498416540481,-0.00564905257696337,0.16203154346066503,0.8206167105813219,-0.3310024744068886,3.610390027260655,-0.010446772439222343,0.0026525582893919936,-0.018716281578655927,-3.625798998845819e-05,0.5763435633771643,0.5300773800390193,0.0008232201494991332,7.234936627310514e-05,-0.05034305881321376,-0.1688536209327984,0.1639966203172274,2.479069181880358,0.030427739463930487,0.00035838444507771,0.04390765563642956,0.0004220816326530549,2.961302052879057,-0.5752802998750519,-0.013159527863390239,-0.0006504423242414116,-0.09924531445231154,-0.49457512044878416,0.012054555585554122,-2.7362244345922533,-0.0015185810291770262,-0.013197145522698864,-0.06400100654092904,-0.006725390367346938,-2.941474291420672,-0.5792145063934806,0.00017469120453541558,0.0008257641420885407,-0.028759782926268282,-0.05638432085642099,-0.23953810356077712,-2.775862807011382,-0.032131051793822626,6.03632193053893e-05,0.04455817909170771,-2.7078282059087198e-05,-5.878378671630606,-0.700026563734927,-6.495817031618498e-05,-0.00035289657661501925,-0.03518875009428488,0.008254232231337186,0.11789795745993258,-2.9063423384187046,-0.0005951860087979418,-3.726006552388435e-05,0.0014094258165979416,-0.001643200707054471,2.317092755102812,-1.4125325139682365,0.0012646118362631864,-0.00038948725835252643,-0.07092956551122567,-0.42485883812872827,-0.33510701233727724,-6.5468036575679935,-0.07014649371533307,0.0022246029563153754,-0.011814104345208468,0.004126674624566813,-9.139091255901352,-1.098708871303624,-0.0049405331112036726,7.966855469027381e-05,0.006636123837289997,-0.2997382777752069,-0.06794269973271609,-5.268119805025683,-0.017419628947750024,-0.007838928224350958,-0.0693665622608981,-0.004458054421768703,-4.946964173240418,-1.5527356433027462,0.0019132579167282354,0.0007442490362122863,0.016185012517185928,0.10003105591264047,-0.006922741499905254,-7.186146929612663,-0.023839070748679272,-0.0009240656894752586,-0.007312273867355033,0.000672345841562436,-2.9935345011831904,,,0.4993197278911565,1.2410714285714286,0.5714285714285714,0.017857142857142856,0.6696428571428571,-0.09821428571428571,0.9044843823695417,0.008727754606344324,0.02408489746348718,0.8105786167837209,0.23485694049721376,0.2533515035526239,1.7150629991532627,0.48820844404983765,2.0940048695580824,1.5862634276659189,0.3070053946315642,0.06324731626378971,0.06383750158301685,0.5077414418921635,8.410458366775522,1582.0,296.8021,177.0,338.0493827160494,7851.8529424587305,6376.1821820000005,86.54937500182899,303.6345,157.45317024843774,374.41631399999994,11837.009234816285,1547.0,333.9948,229.0,354.1111111111111,7708.702760892302,5963.512826999999,105.53939849999999,343.4557,141.46193415637862,409.97862200000003,14966.133125328766,2348.0,591.9649,372.0,493.7777777777778,14598.964359722542,8900.735849,166.82947125394298,605.4437,243.36316872427986,733.0047099999999,22932.59690072875,2520.0,758.5117000000001,399.0,440.33333333333337,19675.204367681807,9238.473424,191.376952750735,774.9498,297.8909465020576,954.7044559999999,25133.400855009317,2335.0,784.5091,377.0,355.44444444444446,21268.788158196854,8359.553033,188.20452093122498,803.0224,283.17181069958843,1003.3019959999999,23432.42257239011,2063.0,740.945,335.0,296.22222222222223,20654.14708762014,7291.247556999999,167.970678562017,756.893,258.5082304526749,953.932938,20584.879672926378,1846.0,620.3388,298.0,242.11111111111111,16700.98516683398,6562.8991989999995,149.211664937282,635.9341000000001,215.78703703703707,794.6514520000001,18653.914704999675,1578.0,613.5369,278.0,233.44444444444446,16948.26773009674,5495.332897999999,136.64939488867802,626.9456,219.16975308641975,786.65443,16948.497209304154,1381.0,543.3771,249.0,231.22222222222223,15104.1435096853,4761.218005999999,119.308638888678,554.9415,192.56481481481484,698.43764,14672.64376823777,629.8367346938776,4.14776326530612,0.6192842629123525,29.551020408163264,171.10657596371883,79.7758292572953,2896.2609555510207,14.651929435494122,4.393926530612243,41.6535557981766,2.697913999999999,2587.1422860694415,42.19700124947943,0.02796014160766455,-0.29939978657905864,8.587671803415247,43.49268566081006,-17.5431311435651,191.3506714448147,-0.5536789392787842,0.14058558933777565,-0.9919629236687642,-0.001921673469388284,30.546208858989708,50.35735110370683,0.07820591420241765,0.006873189795944989,-4.782590587255307,-16.04109398861585,15.579678930136602,235.511572278634,2.890635249073396,0.034046522282382446,4.171227285460808,0.040097755102040215,281.3236950235104,-71.91003748438149,-1.6449409829237798,-0.08130529053017645,-12.405664306538942,-61.82189005609802,1.5068194481942654,-342.02805432403164,-0.1898226286471283,-1.649643190337358,-8.00012581761613,-0.8406737959183672,-367.68428642758397,-77.6147438567264,0.02340862140774569,0.11065239503986445,-3.85381091211995,-7.555498994760413,-32.098105877144135,-371.9656161395252,-4.305560940372232,0.008088671386922167,5.970795998288833,-0.0036284897959176846,-787.7027419985012,-88.90337359433573,-0.008249687630155492,-0.044817865230107445,-4.46897126197418,1.0482874933798225,14.973040597411437,-369.1054769791755,-0.0755886231173386,-0.004732028321533313,0.17899707870793857,-0.2086864897959178,294.2707798980571,-149.72844648063307,0.13404885464389776,-0.0412856493853678,-7.518533944189921,-45.035036841645194,-35.52134330775139,-693.9611877022073,-7.435528333825306,0.2358079133694298,-1.2522950605920977,0.43742751020408216,-968.7436731255434,-115.3644314868805,-0.5187559766763856,0.00836519824247875,0.6967930029154497,-31.472519166396722,-7.133983471935189,-553.1525795276967,-1.8290610395137525,-0.8230874635568507,-7.283489037394301,-0.4680957142857138,-519.4312381902439,-144.4044148271554,0.1779329862557259,0.06921516036774263,1.5052061640982912,9.302888199875564,-0.6438149594911886,-668.3116644539776,-2.2170335796271723,-0.08593810912119905,-0.680041469664018,0.06252816326530655,-278.3987086100367,0.6816861139600364,0.60794201610095,0.427182388543608,0.3360071641524868,0.2742012102214668,0.18736786949793058,0.1744904147559669,0.10783680887558252,0.11182130583057426,0.06008330785822808,0.07311180538237338,0.034451547792170835,0.04765701467497415,0.020433283835955045,0.0312743790977727,0.011823189866926148,17.00110438426227,5.684134805595074,3.5437821199019366,2.167895294088817,0.39850816910472914,-0.4165357117189957,3.2507102442785345,0.9779557052577643,6.021923733426155,0.6547221830596595,14.551421580326116,10.329227212918633,35.450517807410954,11.695978485092251,2.9309964797171335,0.7519079467886406,3.488998790950799,2.222775551552765,7.008271137358996,0.6165149345611174,3.701929266760833,2.422920085615715,24.43743860934907,14.702708284568242,0.28438302638553464,0.6097208728868353,0.7446220310305836,0.8503632829504246,0.8572454502438738,0.8572454502438738,1.064968668943362,1042.0616609077658,0.0,2.0,5.0,0.0,9.0,2.0,3.0,0.0,0.0,3.9281088113613865,1.9986154977938195,1.1985521623102162,0.5714285714285712,0.5306122448979584,0.5306122448979584,92.09207207196215,1207.149933285355,53.97696474122128,24.635712924190916,53.21868711795936,,16.0,794.0,0.0,4.794537184071822,5.907179729351506,6.4208216229260096,66.79938900214279,10.086144130933896,11.532486611566675,6.06636706846161,49.821983389431786,11.600939890232516,13.980952380952381,34.75,16.0,0.5,18.75,0.0,0.000680272108843535,-2.75,0.14893867321364646,0.058289920183530075,-0.09064875303011638,0.017880600516068434,0.10398545605651333,0.0,0.596307094266278,0.8185374149659861,0.4473684210526316,0.538017174082748,0.8006568144499177,25.325562706347167,0.24437712897764108,0.674377128977641,22.696201269944186,6.575994333921985,7.09384209947347,48.02176397629135,13.669836433395455,0.6100145439434866,0.07493188010899184,0.0,0.3433242506811989,0.3333333333333333,0.4280899031132924,-0.8070377026800298,-0.04811340097041941,-0.016470157197551634,-0.050439856417501865,0.5719100968867075,1.0781684112947025,0.036182427690240174,0.022003436965198006,0.03267177003923341,-6.188152039287936,0.6118387025382622,0.7631737754709519,1.5391949441441009,0.720212655060982,0.6226416761308844,1.3247372763857783,0.6127845199320537,0.8964757529275781,0.689789189180094,0.5668737168034312,0.6881047902823485,0.8676371689251277,0.6891008871410591,0.940198814595399,1.2933160540946413,1.24815353300378,1.0674605089946632,1.0014931418318038,0.6919012470130823,0.7510237154700946,0.8806088357095586,0.5437674924903327,0.8262013579848415,0.8366881405577943,0.9014145551163242,1.1729471738886559,1.158200617594821,1.1824972375690608,1.131680210624895,1.010943450665607,0.906757561217186,0.9114796180728498,1.1276539936387147,1.0133247246691102,1.0917493619144272,0.9954210442553044,1.0356628496426556,0.8001953542730531,0.6670932900971421,0.9576152387235095,0.915860676473974,1.10335046626163,1.0402700825589362,1.0883013593422424,0.8524317286520046,0.5093412782939498,0.7990299946385333,1.113997556031292,1.1905597536812338,0.9616384937541173,0.8207327537463958,1.0359768564840997,0.9865891919225858,0.8829495587863153,1.179037254349794,1.0748748871010882,0.9948435097592527,0.8358429299215915,1.0019091156802107,0.9813577846572863,1.1568137160799812,0.7715092523760224,0.8262395139006391,1.0420097988116335,0.9937860388327148,1.1613750047237668,1.155439552920386,1.2616259064530475,0.8202866434320653,0.5822064395396412,0.7353134226511633,1.183917379264497,1.0346445466917245,0.9636422679742808,0.8175140596877872,0.8972375690607736,1.0061367471529417,0.9461878465721508,1.0548219292292624,0.9443427331923056,1.0503381290686955,0.8347076429525152,1.0263661268880857,1.0906629265570047,1.1759319844218068,0.9313811179654338,0.8114250214952848,0.9431473890572091,0.9379757981629221,0.9302587435855068,1.1818316775570807,1.060981647085114,1.0094520319387537,0.8323749591569751,0.9741991584561616,1.0683510084903443,5.5,0.13202734414855627,3.333333333333335,1.9861111111111112,1.3288888888888892,0.851388888888889,0.4024489795918368,0.3099135487528345,0.22048217435122194,0.1406327160493827,5818.059609220787,6462.623455568196,2849.938863321524,2636.593540489712,17.794178550279288,0.46057063849500435,9.598702373883045,0.8538108441298464,1.0,0.3333333333333333,1.686601032753822,3.616094346321389,4.416157681804992,5.043281272686637,5.08409759921725,5.08409759921725,0.171875,0.00628701638802649,0.07246376811594206,0.04513888888888888,0.035915915915915926,0.02660590277777778,0.013877551020408165,0.012396541950113379,0.010021917015964636,0.006696796002351559,0.40127929807538887,19.93359375,8.625708884688091,4.257999496094734,172.61345555665423,1.0,4.294553584230687,172.45531305177863,,138.1064792070332,138.87484737318124,136.6985509114062,138.10088051799264,181.12472617006497,140.1630966936574,141.30332938645014,169.60657922685192,0.06194037241866721,0.006232260760219771,-0.4469733736966949,0.26867246950901713,0.23500101379511498,-0.20330871389161204,0.06108189629691524,-0.034936821923387304,0.029580684901005194,-0.022017275110863085,-0.000658524144740882,0.010915841296222792,0.04123892779060609,0.009725190360516021,0.0057245422816176,-0.08347630125036343,-0.04835481850482176,0.10073018946160671,0.04194179729534307,0.1017585595328328,0.003996616166989231,0.051651655782031215,0.0076659226350431105,0.0560865173022722,-0.04475562180027216,-0.15546134725182584,-0.051465337966031886,-0.16456353591160222,-0.14163208377876138,0.007404162754449042,-0.04629244372405397,-0.005078544143777804,-0.14717135712374776,-0.07528887415279933,-0.12214775118851084,-0.05571098313985204,-0.04506169495984534,0.0020637313353522877,0.06533743126630227,-0.047688010225117504,-0.016146847112120666,-0.14712936466786683,-0.046963060176903194,-0.10745489492211802,0.0006731559404458093,0.05241691216165643,-0.0004918006359340116,-0.1113354130002297,-0.05446062405312552,-0.0007673895885323993,-0.027922447395669212,-0.058348196806890885,0.002363774606893441,0.07241541666592459,-0.04917056051512545,-0.0019904623865065465,-0.0004155151885108869,0.0016580064700340025,-0.0298441072049254,0.04388531145402581,-0.10989211865847111,0.014939613476788636,-0.03081763384317564,-0.11761180027103098,-0.12166734651228087,-0.20582980781769808,-0.11076121390442871,-0.23458877598228106,0.024808231111744315,-0.013897759790787325,0.07494940780313009,-0.17309271080699518,-0.08547728598276201,-0.058365462772165505,0.0063036628146578896,0.011003683241252267,-0.08583641819879198,-0.04173184181095356,-0.08912797375923853,-0.05825593292662248,-0.08741782101205868,-0.08160075378085244,-0.08096798736604151,-0.0936945933719991,-0.12079963319194782,0.02260245629345591,0.05888766267513467,0.02683716509237805,0.02864601615754788,-0.004252094107368206,-0.12157785674531132,-0.07972427602985455,-0.010304955822276468,-0.008601940761947662,0.012211266273335391,-0.05669699395653541,16.527167716708153,22.00451657250095,6.078561571893108,20.52368939219813,38.76439645118631,44.762348630350466,45.84359125077549,45.88473410791835,45.88473410791835,58.63213634762631,44.41537597464573,8.596151049683797,1.7709248553861119,1.7874500443244716,14.216760372980579,11978.52575913775,11772.36538863787,1040.7215421363126,151.0,46.0,63.0,85.0,105.0,112.0,127.0,141.0,138.0,412.1124599720006,32.0,5.056245805348308,5.926926025970411,6.818924065275521,7.703007682479236,8.596928159435091,9.48562086171022,10.379752786950895,11.270535381710154,12.164568126476365,0.7346938775510204,0.9775510204081632,1.1184602378556991,0.701628948973645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7253409874129293,0.969107643057223,1.003017375923421,0.6676276725222963,6.0,1.0,0.0,0.0,1.0,2.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,7.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,10.216698334856808,5.817862777835028,0.0,5.907179729351506,0.0,9.694446914922299,0.0,4.3735399814164495,0.0,29.800041095617345,47.279312423271506,48.82002583245256,11.12074153939511,274.1178771661205,-516.7686979833451,-30.80834946430254,-10.546299958843779,-32.29804362395907,366.20994923808263,690.3812353020098,23.168615276918743,14.089412965347137,20.9206434940003,0.5,0.8891905883951641,0.18708406121502738,2.5156426126279574,0.12114533676468317,71.56518021457603,0.110809411604836,8.0,0.125,0.30038970482536204,0.644039397710182,0.7865335528306201,0.8982265179691366,0.9054960523999126,0.9054960523999126,3.809000000000002,,2.0934873949579833,1.1204029054034366,1.1188929450345397,2.1058097627382386,-2.496938651903501,1.1081236539981103,1.0906870494887704,-1.4354254861226634,115.76270000000004,4.794537184071822,0.0,9.273449712266927,0.0,12.841643245852019,42.940480364419685,52.547738707904976,0.0,0.0,4.174387269895637,0.0,5.517452896464707,3.044522437723423,7.048386408721883,5.41610040220442,8.664405571096625,7.515889085215125,10.325318014730557,36.0,12.430599588254813,4.686746067760644,0.0,0.0,1.5783359314395637,2.507575812586566,4.921238541126224,0.0,47.9,0.0,11.566336089633964,0.0,0.0,0.0,0.0,0.0,0.0499095479512115,54.80455165492926,10.216698334856808,11.50524905251859,0.0,47.904411471181305,17.63618042992384,0.0,11.126902983393991,36.39820241076966,5.022633313741326,10.086144130933896,0.0,34.379818499708605,35.541708383233534,37.447159801346686,344.91062610355726,,276.57662562322065,277.84009756748736,273.5420017343929,276.56294959531795,363.5140998063481,280.3849500538886,282.63946525045355,339.82834080489926,37.447159801346686,344.91062610355726,,274.9317426700393,276.8797522199985,272.582950638649,274.9083847817378,364.7625691323,279.4351297790331,281.7045906366061,340.6485839398265,4.798943441352854,271.6917262877322,,223.27195039480327,222.85883959072459,219.0763197702006,223.2792491762646,294.9941032925787,225.14745560868755,227.15775573110562,274.6708123537291,1.3373985643338102,12.318236646555617,,9.877736629400738,9.922860627410262,9.769357204799746,9.877248199832783,12.98264642165529,10.013748216210306,10.094266616087626,12.136726457317831,2.4464590635526995,172.45531305177863,,138.1064792070332,138.87484737318124,136.6985509114062,138.10088051799264,181.12472617006497,140.1630966936574,141.30332938645014,169.60657922685192,47.48627450980393,0.0,0.0,6.4343692824216685,0.0,0.0,0.0,49.14785142024763,6.363385768032128,2.857331253322788,0.0,0.0,0.0,4.881949895248205,0.0,0.0,0.0,32.71375595359252,569.3734767261499,82.64345060493727,177.18862296974805,216.3917264084446,247.1207823616452,249.12078236164524,249.12078236164524,1028.0,137.4025088953562,70.95434967805332,79.70646208605238,76.71000000000001,48.470000000000006,1.0,8.488787286832714,6.0,4.718985256510548,5.2229252188532636,,5.23539162277846,5.232795672758567,5.231403020193842,5.23538220136503,5.241524729024895,5.233410711111368,5.2339214320443626,5.239853572229457,0.16853518773251958,0.1865330435304737,,0.18697827224208785,0.1868855597413774,0.1868358221497801,0.18697793576303678,0.1871973117508891,0.18690752539683458,0.1869257654301558,0.18713762757962346,2.5812132056379573,2.682677048871183,,2.6850610672593076,2.6845650978999873,2.68429892318106,2.685059267695381,2.686231852009527,2.6846826263206873,2.68478021010353,2.685912970892642,292.4300000000006,216.62533217074963,177.78335581140394,,175.95742448464839,176.56995021342388,176.71906870299455,175.94902520993375,175.62676184436472,176.46586603958366,176.39893119412014,175.87431755648996,7.736619006098201,6.349405564692998,,6.284193731594585,6.306069650479424,6.311395310821234,6.283893757497634,6.272384351584455,6.3023523585565595,6.299961828361433,6.281225627017498,6.407788698606403,6.210185124019729,,6.199861476618027,6.203336533530734,6.2041807063775645,6.199813740779576,6.197980489072884,6.202746881308132,6.202367501745245,6.199389052332362,5.93596134139445,16.44828598488217,4.859700080556438,3.0530785972782875,1.1740612035182574,12.430599588254813,1.3608229779048542,5.002562790127273,0.0,342.69554417469226,175.5253044643163,-330.9013771334055,-19.72744344757794,-6.753089329253174,-20.681336070837844,234.49442080321504,442.07031579118467,14.835509061064595,9.021843179411931,13.396070175490445,2344.0,44.0,1.8340004005315023,1.0809878910350808,0.0,0.0,0.3928227825746012,0.18674288606526912,0.0,0.0,0.0,0.0,0.0,0.0,0.19245008972987526,0.112659493512305,0.6461683496186241,0.277359906620269,0.9517179744293544,0.37996931929812733,19.08721119088102,17.0223764508266,13.669836433395457,10.752229252879578,12.613255670187474,8.618921996904806,10.992896129625915,6.793718959161699,9.504810995598811,5.107081167949387,7.676739565149206,3.6174125181779377,5.337585643597105,2.288527789626965,3.9718461454171323,1.501545113099621,4.417152874324344,2.432039233405889,7.127870545841355,3.3774626664279817,10.400321976260093,4.348993328585639,89.97093899622944,48.67232562259444,32.77304983413511,28.555124032639515,28.40758485532869,28.40758485532869,156.0,187.0,59.354652999999985,30.035346999999994,0.5306122448979592,268.07,7.111111111111111,5.972222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,15.0,16.0,49.0,0.0,1.0,53.0,16.0,1.0,8.0,45.0,17.0,32.0,36.0,0.0,0.0,0.0,21.0,1.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,5.0,1.0,3.0,28.0,7.0,0.0,4.0,1.0,0.0,5.0,4.0,1.0,0.0,1.0,1.0,3.0,3.7376696182833684,6.841456876828683,4.353498551059343,4.944317413058608,5.545909598264556,6.028880748493404,6.266933672325862,6.573494657436382,6.856811430110337,6.65992973513835 +383414,C[C@@H](O)[C@@H]1NC(=O)[C@H](CCCCN)NC(=O)[C@@H](Cc2c[nH]c3ccccc23)NC(=O)[C@H](Cc2ccccc2)NC(=O)[C@@H](NC(=O)[C@H](N)Cc2ccccc2)CSSC[C@@H](C(=O)N[C@H](CO)[C@@H](C)O)NC1=O,0,25.343065693430656,6.236103649635038,3.051094890510949,6.80940794809408,164.95665388712143,100.09729819708029,1.469726946861562,6.2928999999999995,5.41205330770078,7.780475372262773,208.71868097483392,26.113475177304963,6.407458156028369,3.773049645390071,6.036249014972419,149.8962737658017,98.80004720567378,1.8047073146666668,6.540782978723402,3.1698430765937995,7.8421076666666645,256.6218490963881,20.858870967741936,6.247080645161288,3.3669354838709675,4.668010752688171,154.14445340199237,76.66933485887095,1.5398683565777493,6.356768951612904,3.0328803265631215,7.739678790322582,211.80066560308723,17.636871508379887,6.227968994413408,2.810055865921788,3.6331471135940405,162.23776328455227,63.2954412793296,1.2959433138644887,6.2983885474860335,3.151665632112561,7.78572691620112,173.95821138315793,17.7035175879397,6.27128190954774,2.693467336683417,3.598827470686767,164.2615771272477,63.524430977386906,1.2350635637873693,6.333860552763818,3.2948694087722554,7.853860703517589,167.6626810444825,19.396634615384617,6.308231971153849,2.7716346153846154,4.225160256410256,162.94395235637415,71.06258645673074,1.2633648543815197,6.37187451923077,3.9503576092117756,7.87765176923077,172.88875041694658,19.2253829321663,6.326636323851204,2.800875273522976,3.7972283005105765,163.37404194456596,69.8545283238512,1.2971520443474163,6.392641356673959,3.3578220817462254,7.888912971553609,176.00779126959335,19.06153846153846,6.318827307692309,2.7192307692307693,3.652564102564103,163.57194463558997,68.64404771153843,1.2957146390435679,6.387394230769229,3.3443079297245966,7.915160761538461,174.30323066544545,19.678635547576302,6.276826750448834,2.798922800718133,4.001795332136445,160.79023267560666,71.37028112208259,1.343226487134199,6.3555441651705555,3.672446084624421,7.862633856373427,179.78061014829444,9.69151260056476,0.13916942831264317,0.024007935687626235,0.5652938355799457,3.7063242580851403,1.5100486648507683,44.74728237263573,0.2603958792009385,0.12982194043369377,2.223622613858286,0.08612828930683572,49.57016462748628,0.8561914942739828,-0.01776410657531335,-0.014292323581593767,0.1423729863903396,0.6980173408518923,0.0755639326279115,3.622946835678194,0.04045803849800807,-0.015094436162844338,-0.1880531853649506,-0.01090177157633926,3.9521502702799904,-0.5311346867432397,0.011271530010879303,-0.0002304910369826728,-0.06602964909536838,0.10453242506374896,-0.2331072480120175,-2.4932042248255084,-0.031154818924553476,0.008872231923264006,0.0387162823463453,0.006193675256385361,-5.651350183069466,-0.3061600743648671,0.007127356338500641,0.005336922867716877,0.002214218083961685,-0.15746083281996986,0.07509926632438055,-1.4227164734186666,-0.006698407262974407,0.004866778320129097,-0.09882349047997557,0.00379320398517585,-1.9299270353460445,0.015599602787768205,-0.02008063764397134,-0.006900166383327271,0.013585964882219182,-0.22629026818429804,-0.046288313262525894,0.0023867601266234083,0.0013613192862333289,-0.016509566520331417,-0.24525181661412776,-0.010895191922101826,0.5122281728933876,1.3253494151567442,0.021905412015823973,0.0023840606421903533,0.0006978825559330568,0.3554134516908905,-0.13450832047952355,5.987975481168315,0.0011869195553298613,0.02132506967298779,0.39677775253973174,0.016010310637016047,1.8682302977464387,0.2926110877228654,-0.001785764622119449,0.003810584058748336,0.004752004474998517,-0.18189308826752457,0.0654351782084149,1.3080051550839287,0.004832116781391537,-0.001335825018977111,-0.16627486975062178,-0.00189980557446497,0.3114500588102713,-0.3982223142087812,-0.023863423259302338,-0.0050235573898991135,0.017272138591867926,-0.2702552581475271,0.06015772842096292,-1.753660842006869,0.007163362604733646,-0.020516555818309235,-0.3037354292492172,-0.014568502782411228,1.6229442518072326,-0.09098055323089485,0.011329033205657415,0.001782966136100345,-0.011322482266443975,0.165123845458784,-0.0667605588131062,-0.3456598668500409,-0.011989144239944302,0.010067350475635322,0.21702288114478424,0.007709337290289121,-0.38074885483477344,,,0.4718309859154929,1.056338028169014,0.4295774647887324,0.0,0.6267605633802817,-0.19718309859154928,1.5703192578027356,0.018889926876256558,0.024946264904425572,1.355842002162329,0.19945984780720774,0.2804419656316497,2.9261612599650646,0.4799018134388574,2.0088730875481273,1.4264271941421038,0.2776887780685322,0.2477217938094907,0.0,0.582445893406024,7.433872119065708,3472.0,854.3462000000002,418.0,932.8888888888889,22599.061582535636,13713.329853,201.35259172003398,862.1272999999999,741.4513031550068,1065.9251259999999,28594.459293552245,3682.0,903.4516,532.0,851.1111111111111,21135.37460097804,13930.806656000002,254.46373136800003,922.2503999999997,446.9478737997257,1105.7371809999997,36183.68072259072,5173.0,1549.2759999999996,835.0,1157.6666666666665,38227.82444369411,19013.995044999996,381.88735243128184,1576.4787000000001,752.1543209876542,1919.4403400000003,52526.56506956563,6314.0,2229.6129,1006.0,1300.6666666666665,58081.119255869715,22659.767977999996,463.94770636348693,2254.8231,1128.2962962962968,2787.2902360000007,62277.03967517054,7046.0,2495.9702000000007,1072.0,1432.3333333333333,65376.10769664459,25282.723528999988,491.555298387373,2520.8765,1311.3580246913577,3125.8365600000006,66729.74705570404,8069.0,2624.224500000001,1153.0,1757.6666666666667,67784.68418025164,29562.03596599999,525.5597794227122,2650.6998000000003,1643.3487654320986,3277.103136,71921.72017344978,8786.0,2891.2728,1280.0,1735.3333333333335,74661.93716866664,31923.519443999998,592.7984842667693,2921.437099999999,1534.524691358025,3605.233227999999,80435.56061020416,9912.0,3285.7902000000004,1414.0,1899.3333333333335,85057.41121050679,35694.904809999985,673.7716123026553,3321.4449999999993,1739.0401234567903,4115.883596,90637.67994603164,10961.0,3496.1925000000006,1559.0,2229.0,89560.15960031291,39753.246585,748.1771533337488,3540.0380999999993,2045.5524691358025,4379.487057999999,100137.7998526,1327.7372262773722,19.066211678832115,3.2890871892047944,77.44525547445257,507.7664233576642,206.87666708455527,6130.377685051095,35.67423545052857,17.785605839416046,304.6362980985852,11.799575635036494,6791.1125539656205,120.72300069263157,-2.5047390271191823,-2.015217625004721,20.074591081037884,98.4204450601168,10.654514500535521,510.8355038306253,5.704583428219138,-2.1283154989610518,-26.515499136458036,-1.5371497922638357,557.2531881094786,-131.72140231232345,2.795339442698067,-0.05716177717170285,-16.375352975651357,25.924041415809743,-57.810597506980336,-618.3146477567261,-7.726395093289262,2.2003135169694734,9.601638021893633,1.5360314635835695,-1401.5348454012276,-109.60530662262241,2.5515935691832294,1.9106183866426418,0.7926900740582832,-56.37097814954921,26.885537344128235,-509.3324974838826,-2.3980298001448377,1.7423066386062167,-35.378809591831256,1.3579670266929542,-690.9138786538839,6.208641909531746,-7.992093782300594,-2.746266220564254,5.407214023123235,-90.06352673735061,-18.422748678485306,0.9499305303961165,0.5418050759208649,-6.570807475091904,-97.61022301242285,-4.3362863849965265,203.86681281156828,551.3453567052056,9.112651398582774,0.991769227151187,0.2903191432681516,147.85199590341045,-55.9554613194818,2490.997800166019,0.4937585350172223,8.87122898396292,165.0595450565284,6.660289224998675,777.1838038625185,133.7232670893495,-0.8160944323085882,1.7414369148479896,2.171666045074322,-83.12514133825873,29.903876441245604,597.7583558733554,2.2082773690959328,-0.6104720336725398,-75.98761547603415,-0.8682111475304913,142.332676876294,-207.0756033885662,-12.408980094837215,-2.612249842747539,8.981512067771321,-140.5327342367141,31.282018778900717,-911.9036378435718,3.724948554461496,-10.668609025520801,-157.94242320959296,-7.575621446853838,843.9310109397609,-50.67616814960843,6.310271495551181,0.9931121378078921,-6.306622622409294,91.97398192054268,-37.18563125890016,-192.53254583547277,-6.677953341648976,5.607514214928874,120.88174479764483,4.29410087069104,-212.07711214296882,0.7246541304746603,0.5818083611621895,0.4543070500554518,0.3465654937510143,0.2983172304854749,0.19828049503191245,0.1920377017155885,0.11327526412532822,0.12369735161710595,0.0661544100513064,0.08173696114534923,0.03897356817882448,0.050368017578179,0.024401800130378997,0.03220272534544308,0.014873454847958493,16.10102525231051,5.676101620103865,3.555599455057955,2.1755326611539827,0.4411015810222882,-0.3611160105288927,3.2417365960901527,0.9772197704671548,6.029505157298159,0.5598373441958833,14.55224135341087,10.250201811881517,32.16051359922386,11.687543928060151,3.007839059835012,0.7509084408614489,3.501596757999586,2.2253432924494536,7.014873463855933,0.5378164035328232,3.7141927789502365,2.4212243093244075,24.531642601585553,14.701777654450414,0.22979903204414176,0.5186863134425433,0.7045372360256351,0.8237405451313707,0.9003642290311457,0.9163543477374105,1.501912346446023,2395.253318315764,0.0,8.0,6.0,0.0,15.0,16.0,4.0,0.0,0.0,5.41963033676679,3.309660972495924,1.9522465821025845,1.0816117479371083,0.5219691606155248,0.40518083944764083,316.12061868309263,10343.753190093208,148.08525244772682,75.50184810287011,156.00038192224133,,22.0,2524.0,108.49979947865374,48.881342473024866,43.7337501111102,23.96854622924601,38.0541723765515,13.847474399381248,60.794147187767564,30.33183534230805,42.201498748991526,11.46733495432437,33.49999999999999,75.0,30.5,0.0,44.5,0.0,0.028169014084507144,-14.0,0.15781377959765058,0.03775163884885413,-0.12006214074879645,0.0997379626596796,0.1728045234248795,0.0,0.5963503649635027,0.8718309859154938,0.4385365853658521,0.5585987261146486,0.7720930232558142,111.49266730399422,1.3411848082142157,1.7711848082142156,96.26478215352536,14.16164919431175,19.911379559847127,207.75744945751958,34.07302875415888,0.5411954765751205,0.15323383084577116,0.0,0.32835820895522394,0.4489795918367347,0.38070202850533297,-2.9721694907124303,-0.06803946343913651,-0.0216946678154192,-0.06461238023287892,0.6192979714946669,4.834906038623224,0.043729710611479365,0.03529128495345418,0.05313083558926619,-8.99498317569713,0.7671346192085903,0.8751427403962774,1.6749889549275123,1.0274931317304028,0.6159890678307517,1.2575618599025993,0.7796805153168207,0.9468872281291625,0.856100215555419,0.7153958317168537,0.8537396825979707,0.9770313072399064,0.9755622550497437,0.6801883213395334,1.0009467152284512,1.4480572193001124,0.8468390109909363,1.349445987135378,0.9779942293989606,1.208857192742626,0.6949201459902253,0.6349202633595693,0.6648582187494416,1.161713542867183,1.0400355035764632,0.9523551282834585,0.9103032740727349,1.1085862920508214,1.0560215599862384,1.0179037248109497,1.0373897449276948,1.0425005721845297,0.9593640870284856,0.9891857143521396,0.95027303853916,1.02678909074514,1.0497778612689617,1.2957054810369961,1.5081623455447466,1.0677667318685793,1.1634052744443408,1.0639185667764854,1.0454789861287885,0.9944007244902924,1.2619672595894802,1.2885134326416325,1.2905047548571826,0.951614562954811,0.9341804457225019,0.9888635985951965,1.0870735248264634,1.171423004422533,1.0011080615919326,1.1245644273160216,0.9290003680082953,1.028306540209513,0.9654480708270108,1.0571039562574667,0.9854754603412706,0.9374769378775355,1.0723761222110884,1.1465280558373672,1.083367167616529,1.1162822736487807,1.1341346929686031,1.033228889657858,1.0616645285175978,1.0340873264408563,1.1262988397399603,1.232858623876345,1.1635130923237897,0.9639752628501295,1.2991854780733285,1.3732358894826833,1.4505230312196162,1.072221416660625,1.203218287089255,1.0321428124697152,1.2705315875738685,1.1314978997105842,1.3383166433915423,1.409047585208262,1.4026721817736632,0.946998661596276,1.2777992919344285,1.0087939690208338,1.031702384581481,1.152328432409383,1.0290162488575647,1.1320272999721115,1.247271255618012,1.2659767483969069,0.9994609187799809,1.1014789669923417,1.0335372063593131,1.0229109557329694,14.5,1.3772145699418425,8.222222222222225,4.791666666666667,4.519444444444446,2.9063888888888885,2.2956009070294785,2.2960246598639458,1.6659344293272862,1.4496990740740745,18236.003056416263,20801.729430872045,6890.692080580675,6177.6899699438145,23.177791078226345,0.4843809109915601,11.950911520983015,0.9394161723590329,0.0,0.4489795918367347,1.6784017461937357,3.7883711104646025,5.145785500857942,6.016420335023418,6.576062922345002,6.6928512435128855,0.19333333333333333,0.0067510518134404045,0.08140814081408146,0.04278273809523809,0.03797852474323064,0.02106078904991948,0.015304006046863189,0.014000150365024059,0.008956636716813366,0.007284919970221478,0.42886029094816547,61.84888888888889,32.67032643858445,20.38800705467372,419.7022614216031,0.0,5.158181869278375,678.2784299839788,,574.9520161517788,597.7432696643267,592.9708262785373,575.0335749835253,760.3834630809449,602.132752719767,604.1808310642393,720.4748987424186,0.08834446484897407,-0.12764374180948998,-0.5953166389461829,0.251856605236596,0.18833142818770005,0.05004072675722617,0.0809646227341335,0.15537127016817343,-0.11627030155625954,-0.08457063900724272,-0.12657596782749547,0.07972840719775526,-0.05480410629732747,0.08099142281132238,-0.009600618727976207,-0.11680588914900744,0.02820379917804474,-0.15437068581829744,-0.05571744456039135,-0.11964405512159576,0.06834154453110704,0.017411354833798576,0.07191220569028288,-0.11400708925497163,-0.031590535655603026,0.051213520274647414,0.2222982824161572,0.003916933008282456,-0.04248436506236005,0.04973301064558889,-0.031794477742154444,-0.025723937274005317,0.03748810335041011,-0.04444256406823613,0.044041325047829503,-0.038933238367255985,0.001609614869288738,-0.14428914372530385,-0.2874118988449156,0.02403345663283429,-0.06105517284157165,-0.03065352418102391,5.333866103303252e-05,0.005227883369010022,-0.12717085005183415,-0.1102938129364419,-0.12649957417924831,0.010333396645799336,0.13675361832367747,0.15740103470579483,0.09930302518342322,0.001234548321612398,0.09589378234124438,-0.08907548717498878,0.13381763458399737,0.004558134940430285,0.16426398805739248,0.17843754154454683,0.18588910526225164,0.03768860385649232,0.030192509650744704,-0.012831586963968416,0.15872185382070658,0.008406255607092097,-0.049076409834011396,0.04333315854749726,0.029230940645544365,0.018556809716880198,-0.010289670717557793,-0.07477656897098757,-0.022057857990152707,0.006283014413020017,-0.0410897999746268,-0.17147029738236275,-0.20924570338999493,0.030554266656999913,-0.07291732706818091,0.039838271322804056,-0.03919033177038889,0.02750950831754879,-0.1580361204721633,-0.13659486432465945,-0.16914886966476617,0.03274034419702779,-0.00938765257608942,0.08140461122112838,0.07426569944617484,-0.020029375085663235,0.04455191558012646,-0.044210865760213006,-0.007724711949466277,-0.046041989131067225,0.07754737328685359,0.09759879207570216,0.08950993166512662,-0.0076810084795169535,33.52555483345158,0.0,35.83200148841822,18.00903916671626,35.228755864692296,41.534201135277975,47.12855196723611,50.64620018763553,51.46465274238004,142.62998921591705,101.27633078408937,19.715903242865785,17.58824736047384,0.0,41.353658431827704,43042.36601627973,30090.079860860584,18128.08329917862,301.0,101.0,126.0,152.0,182.0,189.0,216.0,252.0,269.0,1018.440480312002,75.0,5.8664680569332965,6.693323668269949,7.549082710812286,8.39502555744203,9.253687176479549,10.107692902830086,10.968904936346597,11.82734926864625,12.690709312741351,0.659367396593674,0.9876788321167884,1.1353715070665877,0.6194121325524596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6585005376109095,0.973550880206097,1.0101488030366665,0.6130076914962688,15.0,0.0,1.0,0.0,0.0,2.0,3.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,0.0,0.0,2.0,3.0,10.0,7.0,0.0,2.0,10.0,0.0,0.0,0.0,0.0,68.98841588783802,36.25104497488776,0.0,41.35025810546054,0.0,33.561760288502754,0.0,0.0,0.0,100.45056784277438,68.83223884055045,41.44711896303973,30.898496398305447,504.3998622826298,-3937.887821826994,-90.14686925421447,-28.74370672866419,-85.606256996239,820.5204809657224,6405.865368266213,57.93838319351235,46.75814137420593,70.39412492600233,0.45454545454545453,0.7731126822211811,0.050484597569061006,517.7168219508059,0.03143871120897646,60.11289712290838,0.22688731777881865,12.0,0.22666666666666666,0.23646015213468705,0.5337213281352916,0.7249594592860279,0.8476180812800753,0.9264628344145471,0.942916454207031,-0.8053999999999897,,5.178571428571429,4.664640053703971,3.8100367228199064,5.168374980674689,-15.156484963140736,4.222307221542228,4.030290141629475,-6.868033312671608,272.0537999999996,48.881342473024866,0.0,42.201498748991526,11.46733495432437,112.91506354561758,24.65734558391907,107.81633700516664,0.0,0.0,5.017279836814924,0.0,6.318968113746434,2.3978952727983707,7.791109510610028,4.727387818712341,9.339524830357009,6.823286122355687,10.929009300010007,90.33333333333334,26.93709861393302,0.0,3.1733758026600274,0.0,0.0,1.5302399994212668,2.080545548980596,0.0,135.312,0.0,99.59780992353944,0.0,0.0,0.0,0.0,0.0,-5.651660267764476,155.54589646812252,48.68485518236869,0.0,0.0,146.8538238035292,52.82422515728078,0.0,49.800293743250265,91.12598253007565,0.0,10.902924932081056,0.0,84.85946215968697,90.21457365269461,89.6940360901023,1356.556859967958,,1150.6199961728908,1195.3551410172813,1185.8343275789668,1150.7847835436582,1524.5845480375274,1204.146613588949,1208.2481328287145,1442.3040575746597,89.6940360901023,1356.5568599679582,,1145.9461802471515,1190.9075531613353,1182.1316158342552,1146.1211779672585,1536.2590798421315,1200.1621828305927,1204.4007106239724,1447.817830797509,4.783528115896352,866.6113445292297,,749.0162725894648,766.6106270511443,763.734048923125,749.1433764038592,1007.989116070292,770.8742043448107,774.4388482579263,945.7718236454286,1.2632962829591874,19.10643464743603,,16.2059154390548,16.83598790165185,16.701891937731926,16.20823638793885,21.473021803345457,16.959811458999283,17.017579335615697,20.314141655981125,2.4221016284132966,678.2784299839788,,574.9520161517788,597.7432696643267,592.9708262785373,575.0335749835253,760.3834630809449,602.132752719767,604.1808310642393,720.4748987424186,133.3764705882353,0.0,2.6048052507039117,0.0,0.0,12.155640548545197,31.002587731117185,138.3903860160233,0.13289671024719052,18.737050399865865,0.0,2.0588400068571193,-13.359230268106346,0.0,0.0,0.0,0.0,83.98205373498882,1024.3127202981416,229.9410392285418,519.0068421336506,704.9726136175381,824.2495858982082,900.9206203612653,916.9206203612653,1934.0,229.35224359050142,300.6076229502104,124.3444608054048,382.82,332.21999999999997,0.8333333333333334,8.681755773420443,7.22881869049588,4.968381425980827,8.305901638617208,,8.29234458962403,8.307382635436829,8.306679486643722,8.292350808044503,8.315081385491078,8.307924753134243,8.307846260757563,8.31756407589017,0.06997720318282856,0.11698453012136913,,0.11679358576935253,0.11700538923150464,0.11699548572737636,0.11679367335273948,0.11711382233086026,0.11701302469203159,0.11701191916559947,0.11714878980127,3.5631889022974668,4.077061086977333,,4.075427534634334,4.077239377651123,4.077154732633143,4.0754282845329985,4.078165684436333,4.077304632862469,4.077295184925733,4.078464216672025,765.0700000000028,5666.161419373277,671.9877681334419,,672.8287297850317,669.0812775861767,669.7319968234339,672.8293702779974,669.6362106052355,668.9863483261934,668.9978000429674,667.584525923832,79.80509041370813,9.464616452583689,,9.47646098288777,9.423679966002489,9.432845025682168,9.476470003915457,9.431495924017401,9.422342934171738,9.422504225957287,9.402598956673689,10.602361953155341,8.47033492222238,,8.471585593615108,8.46600032795625,8.466972411667902,8.471586545555226,8.466829379725183,8.465858437877895,8.465875555744034,8.463760796902198,0.0,102.77118572619949,50.50567439024677,15.00038983768334,-6.009000755650301,14.603043506565395,-0.1561180078892339,2.2259852959874484,2.0588400068571193,940.7455625071627,668.2896386699235,-5217.387684568527,-119.43742095505817,-38.08312178517173,-113.42147140366363,1087.124277283408,8487.261342526004,76.76374254800295,61.9508127191679,93.26660815962641,23347.0,112.0,4.566031900603898,2.02206920980969,0.0,0.0,1.2909795561629693,0.2855018164961377,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.03608439182435161,0.4915816237971964,0.1591099925083943,0.5312219770570177,0.15341726458894006,51.45044326370088,41.308393642515455,34.073028754158884,25.992412031326072,30.13004027903297,20.026329998223158,24.196750416164154,14.272683279791355,18.801997445800104,10.055470327798574,14.876126928453559,7.093189408546055,9.519555322275831,4.61194022464163,6.955788674615705,3.2126662471590346,10.56346495855468,3.8923195925750256,14.476924057701668,4.868032417240344,21.506431801561284,6.069514852513316,233.67019837719351,116.16121464888815,75.92374289108203,49.56131900252983,34.76237885438276,32.52966407352414,352.0,403.0,150.65833800000047,78.16766200000013,0.34306569343065696,655.22,25.194444444444443,16.05555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,21.0,22.0,137.0,0.0,2.0,141.0,22.0,7.0,17.0,124.0,29.0,75.0,112.0,0.0,0.0,0.0,49.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,66.0,14.0,13.0,2.0,71.0,22.0,0.0,10.0,10.0,0.0,5.0,17.0,2.0,0.0,0.0,1.0,4.0,4.543294782270004,7.071225123404472,5.012300573415317,5.43208310671103,5.854534528548652,6.2673191373348605,6.309321509286258,6.613793111281529,6.9364528184530645,6.8895475510325666 +2391,CC(=O)Oc1ccc(C(c2ccc(OC(C)=O)cc2)c2ccccn2)cc1,0,24.26086956521739,6.258367391304346,3.369565217391304,8.695652173913043,157.7381832274072,95.93878110869571,1.5997013302637166,6.338934782608692,4.950483091787439,7.764144956521736,239.49652747287047,25.875,6.325,3.9166666666666665,8.208333333333334,142.0705522371895,98.9383604375001,1.9048808727083344,6.484968750000001,3.465277777777778,7.736054083333326,281.92184213530874,22.807692307692307,6.305371794871794,3.7051282051282053,6.564102564102564,148.61982058102038,86.05732752564099,1.6545909698601788,6.428361538461539,3.6737891737891712,7.765307025641023,240.69395544560038,18.989690721649485,6.354298969072165,3.3608247422680413,5.092783505154639,154.27920145587476,68.87165050515465,1.5125407518550815,6.448608247422681,3.256586483390606,7.875254226804122,215.95040987539616,18.8,6.04244,3.3,4.89,150.6206027531234,69.08532505000002,1.5748563152733903,6.166474999999998,3.0311111111111115,7.551669959999997,219.20058881287386,17.61946902654867,6.019964601769913,2.938053097345133,4.247787610619469,151.85735355785252,63.75325297345133,1.5265207718348588,6.138973451327433,3.159292035398231,7.536307469026547,209.17791022188732,14.252032520325203,5.887853658536587,2.5772357723577235,3.5121951219512195,156.17950018658152,49.73263299186993,1.335661610551455,5.986837398373983,2.724480578139115,7.460576975609755,175.7501307812725,13.69811320754717,5.772358490566036,2.660377358490566,3.830188679245283,159.11225752376762,48.78964313207544,1.2087733133506413,5.859209433962264,2.4538784067085957,7.374943698113208,158.2700027246372,18.026666666666667,6.301866666666665,2.8666666666666667,5.44,159.0781468490238,66.04960889333334,1.2549172507411201,6.372326666666667,3.303703703703704,7.867502666666666,182.50163011608427,7.200378071833647,0.13059002835538747,0.019025596351983913,0.5675803402646504,4.1568998109640845,1.4320276393152809,34.21487203071835,0.23603248003569793,0.12150094517958404,1.615889519008611,0.08522203591682416,50.06359307937816,0.3403827977315701,0.0013404064272211818,-0.011282675551561523,0.16249212350346567,1.2959987397605541,-0.1424462397844419,1.5822827206403662,-0.013618223205173018,0.002806120037807131,-0.09867937408107541,-0.0011570449747952116,-0.43842458418753294,0.7349619504628964,0.03122089695118998,0.0038149736353233835,0.004604721050845756,-0.013644515534874944,-0.13065962264626207,3.300900445034179,-0.016120954349898905,0.028475699190538446,0.3049267822424721,0.020857320827880357,-1.2799586982119684,-1.805039658566056,-0.04617566260012078,-0.002386700031251612,-0.03239432502484754,-1.2622337419367418,0.2215082071295113,-8.281564452502286,0.031979449710507736,-0.044784674448970045,-0.3931319115580413,-0.02613071005398241,-0.16229672841423565,-0.280812854442344,-0.005208615311909264,0.0009270353806876648,-0.12497164461247637,-0.4351606805293007,-0.0879604370420167,-1.3245798828922484,-0.007102869524497111,-0.004937901701323242,0.07787859693341732,-0.0031805541776937624,-1.794346326438237,-0.9221941549425364,-0.009490663214948894,-0.00024288420966803376,-0.02237064422771301,-0.5270421734111782,-0.11349057075503725,-4.403830433373203,-0.023191634974971745,-0.00992091439851446,-0.10480619636314972,-0.0044619997490673675,-6.020832729634102,-0.7906926706318105,-0.007736847019226348,-0.002305718341086318,0.04447338896829423,0.014185378148677527,-0.08729961705500683,-3.784772630753686,-0.021947196732439445,-0.008096031782624023,-0.1614984895910711,-0.0037018004979482715,-5.398619782314088,1.7676284909227087,0.03346198148874697,0.004269726633532588,0.030040660555694286,1.0129115097906338,-0.02793000220820547,8.24072120554089,-0.003985576990332157,0.033143271391375725,0.18387805003705412,0.017112238078253725,4.429495237995046,0.8320856962822938,-0.011561129804662878,-0.0031616963609996033,-0.08960932577189672,0.37759294265910515,-0.07049417989600494,4.038517864064271,0.005994235626419364,-0.006626742281033433,-0.07358678148848273,-0.012303977945809699,5.0356374377034445,,,0.47160493827160493,1.4259259259259258,0.8148148148148148,0.037037037037037035,0.6111111111111112,0.2037037037037037,0.6896795904568931,0.014419867374833736,0.023975422930389293,1.0934290303011982,0.2942684698973836,0.18813438726011958,1.7831086207580913,0.48240285715750314,2.0303788359291066,1.6821906433335019,0.07557463920157345,0.2726135533940313,0.0,0.3481881925956048,7.8506827845217515,1116.0,287.8848999999999,155.0,400.0,7255.956428460731,4413.183931000002,73.58626119213096,291.59099999999984,227.7222222222222,357.1506679999999,11016.840263752041,1242.0,303.6,188.0,394.0,6819.386507385096,4749.041301000005,91.43428189000005,311.27850000000007,166.33333333333334,371.3305959999997,13532.24842249482,1779.0,491.81899999999996,289.0,512.0,11592.346005319589,6712.471546999997,129.05809564909396,501.41220000000004,286.5555555555554,605.6939479999998,18774.12852475683,1842.0,616.367,326.0,494.0,14965.08254121985,6680.550099000001,146.7164529299429,625.515,315.8888888888888,763.8996599999998,20947.189757913427,1880.0,604.244,330.0,489.0,15062.06027531234,6908.532505000002,157.48563152733902,616.6474999999998,303.11111111111114,755.1669959999997,21920.058881287387,1991.0,680.2560000000002,332.0,480.0,17159.880952037336,7204.117586,172.49684721733905,693.704,357.00000000000006,851.6027439999998,23637.103855073266,1753.0,724.2060000000001,317.0,432.0,19210.078522949527,6117.113858000001,164.28637809782896,736.381,335.11111111111114,917.6509679999999,21617.26608609652,1452.0,611.8699999999999,282.0,406.0,16865.89929751937,5171.702171999997,128.12997121516798,621.0762,260.11111111111114,781.7440320000001,16776.620288811544,1352.0,472.63999999999993,215.0,408.0,11930.861013676786,4953.7206670000005,94.118793805584,477.9245,247.77777777777777,590.0627,13687.62225870632,331.21739130434776,6.007141304347823,0.87517743219126,26.108695652173918,191.21739130434787,65.87327140850292,1573.884113413044,10.857494081642105,5.589043478260866,74.3309178743961,3.9202136521739113,2302.9252816513954,16.338374291115365,0.06433950850661672,-0.5415684264749531,7.799621928166353,62.2079395085066,-6.837419509653211,75.94957059073758,-0.6536747138483049,0.1346937618147423,-4.73660995589162,-0.055538158790170156,-21.04438004100158,57.32703213610591,2.4352299621928184,0.2975679435552239,0.35916824196596897,-1.0642722117202457,-10.191450566408442,257.47023471266596,-1.2574344392921146,2.221104536861999,23.784289014912826,1.6268710245746678,-99.83677846053354,-175.08884688090743,-4.479039272211716,-0.23150990303140634,-3.1422495274102116,-122.43667296786394,21.486296091562597,-803.3117518927218,3.10200662191925,-4.3441134215500945,-38.13379542113,-2.5346788752362936,-15.742782656180857,-28.0812854442344,-0.5208615311909264,0.09270353806876648,-12.497164461247637,-43.516068052930066,-8.79604370420167,-132.45798828922483,-0.7102869524497111,-0.49379017013232424,7.787859693341733,-0.31805541776937624,-179.4346326438237,-104.20793950850661,-1.072444943289225,-0.027445915692487815,-2.52788279773157,-59.55576559546314,-12.82443449531921,-497.63283897117196,-2.620654752171807,-1.121063327032134,-11.843100189035919,-0.5042059716446126,-680.3540984486535,-97.25519848771269,-0.9516321833648408,-0.28360335595361713,5.470226843100191,1.744801512287336,-10.73785289776584,-465.5270335827034,-2.6995051980900517,-0.9958119092627548,-19.864314219701747,-0.4553214612476374,-664.0302332246329,187.36862003780712,3.5469700378071787,0.4525910231544543,3.184310018903594,107.36862003780719,-2.9605802340697798,873.5164477873344,-0.42247116097520865,3.5131867674858266,19.491073303927738,1.8138972362948949,469.52649522747487,62.40642722117203,-0.8670847353497159,-0.23712722707497025,-6.720699432892253,28.319470699432884,-5.287063492200371,302.88883980482035,0.4495676719814523,-0.4970056710775075,-5.519008611636205,-0.9227983459357274,377.67280782775833,0.712051995233897,0.5587318613637241,0.44913369459491687,0.2932408795641316,0.3024653790171724,0.15417882892538604,0.18073170542670322,0.08194920438082363,0.11913702709507078,0.04483226214452656,0.07776601489351735,0.024685827873580157,0.04697193566777061,0.012935557876698986,0.031275631549240276,0.006967760447091228,8.031143766122975,5.684431407931299,3.557961256367797,2.1837991113992707,0.4332866221163592,-0.46541058370539945,3.196363688725841,0.9714661087772012,6.031045288526868,0.9950307756324662,14.54785352564732,10.945062693708339,16.01612631063914,11.695840175200495,2.001632965836003,0.7402119529572441,3.504210787633695,2.233627119171246,7.009361896154977,1.250567001855404,3.7170939703282193,2.4295818437041925,20.90841266897408,14.69976887604211,0.24857848777489572,0.5223881825419261,0.6671074388728118,0.7781701598478766,0.7781701598478766,0.7781701598478766,1.5857700926635805,859.2913062763904,0.0,3.0,2.0,0.0,14.0,0.0,2.0,1.0,0.0,4.061263442727145,2.4505387449579863,1.5992070175942872,0.9458646740071082,0.9458646740071082,0.9458646740071082,180.8895908346897,1360.5443159524125,62.884177048491495,29.57705034679158,58.28107210158123,,14.0,591.0,0.0,9.589074368143644,17.856516622065094,11.49902366656781,16.82083097824245,13.847474399381248,30.462311845459517,42.46456947923127,4.9839785209472085,9.473725907600098,12.733333333333333,38.5,22.0,1.0,16.5,0.0,0.028395061728395093,5.5,0.1698851872764917,0.08003740065451148,-0.08984778662198023,0.0,0.14470044709388952,0.0,0.6101449275362321,0.8283950617283948,0.44025974025974035,0.5301075268817206,0.8283950617283948,18.621348942336112,0.38933641912051087,0.6473364191205109,29.522583818132354,7.945248687229356,5.0796284560232285,48.143932760468466,13.024877143252585,0.5692995529061105,0.13089005235602094,0.0,0.31413612565445026,0.13636363636363635,0.3589638789997586,-0.7615706805075992,-0.06041781524850053,-0.01655588435886085,-0.04230948225042218,0.6410361210002415,1.360009581633794,0.037641341857081574,0.029565425687691178,0.048571770772635504,-5.396402989966152,0.7090320622210555,0.6523329569696936,1.555121405699722,0.8258742714404662,0.4461545020463846,1.1290200268948558,0.7158783502890348,1.0487746943550906,0.6340781993885555,0.5850806713677577,0.6933769090602139,0.9228209044574847,0.7585652402205304,0.6056061201404516,0.8514014426704395,1.1821879203228078,0.9006060447056353,1.105452332099355,0.7665268730393241,1.0466540027504028,0.6029671496549629,0.4738856990018725,0.6121482490491728,0.9588009976056879,1.2038531908962227,1.5123262916061975,1.2917974187117829,1.1460810149617584,1.3246649132923585,0.855957967572948,1.1914321258777154,0.8237146106643,1.4987059067991455,1.2092413653554248,1.505313995055954,0.9187751669494226,0.9068817274875297,0.699910704107611,0.7262037358813468,1.3443796835970023,0.9378069577080489,1.0662947434538301,0.9128029546499224,1.0228295295915653,0.7180499696611384,0.5090412049523935,0.6682576595148751,1.0181181398706136,1.0027368807458816,0.7215040851483663,0.600481110955136,0.9227929527753421,0.9309239517560273,1.100285830877912,1.0097684828373088,1.081594679269481,0.7501331068508964,0.843066801750414,0.6574412308029067,1.1022330772789353,1.057075988192279,0.7624279108944959,0.7015318177907653,0.6585975102049105,0.8341929258310317,1.0423964978290812,1.0634128824630187,1.0850656190832761,0.798136047880378,0.749094668829898,0.6971558803904588,1.1292304097251946,0.7587788603951912,0.4420375584555995,0.5196790566539171,0.9105619530894065,0.66826044428428,0.9590504190162279,0.7693059280061741,1.0263857942885082,0.46682558486338843,0.3376029832571927,0.43911637291640965,0.9800625327165671,0.9437910212654241,1.414806073206347,1.6579993290950956,1.2869275603663612,1.0637107776261934,0.9989742224949854,0.9344225376357443,0.9392034122304701,1.3540528051778329,1.050931010951159,1.521874604128165,0.8511314860162541,5.5,0.1487603305785124,2.222222222222223,1.9375,1.3555555555555556,0.5000000000000001,0.7216326530612245,0.39583333333333337,0.32098765432098764,0.2825000000000001,5174.614133889707,5693.916058172836,2556.9277828032086,2364.744193513654,14.546594319421285,0.4057379100667647,8.644489541670222,0.6827592016047143,1.0,0.13636363636363635,1.4622985133298678,3.0730232110990268,3.924354938462726,4.577697282049905,4.577697282049905,4.577697282049905,0.18965517241379307,0.007083825265643447,0.05698005698005701,0.04967948717948718,0.03306233062330624,0.011904761904761908,0.021224489795918372,0.014136904761904762,0.011888431641518059,0.010089285714285719,0.4057047462806758,21.702734839476815,10.683760683760683,6.5,157.14008474365585,1.0,4.209906087628615,151.75262909775117,,114.15449051024964,112.813131059486,116.04568192708325,114.17907130173758,158.73618862139014,113.78113982163845,114.215660858526,136.2655449397863,0.047272906274612926,0.01026423260720491,-0.5930261182265129,0.28628920344157643,0.3117705017432164,-0.09947171121121104,0.04624546656844959,-0.057696395017810154,0.02309545850577175,-0.06106814415234137,-0.013576828602457654,-0.008757353542171659,0.10207268884086958,0.23907565795318989,0.2005179530115267,0.008112897371848142,-0.0032823777707816477,-0.09124099218415682,0.09647560400256965,-0.06829972869607075,0.23436607137870444,0.18870521694425765,0.24474093587997464,-0.025566656715640332,-0.2506867890211194,-0.35359256125175514,-0.12544679215812,-0.05707443110123013,-0.3036478624304394,0.15468151664686075,-0.2420457526501061,0.1354874960669443,-0.36859527621596866,-0.2432913308325916,-0.30661917158944335,-0.0032418114328491487,-0.038999737463901285,-0.03988524527871721,0.048725693720028766,-0.22018318068276432,-0.10468394724874944,-0.061423700651528405,-0.038713571154176216,-0.03009276317997786,-0.040640850110464526,0.04819549605173366,-0.037320795536942473,-0.03584134130351406,-0.1280757962626941,-0.0726752519658011,-0.012766181157980196,-0.039414057606861556,-0.1267873168415249,-0.07925166221603264,-0.12871100115234727,-0.09825611700332175,-0.0816529812492478,-0.06485975379520437,-0.0523573474989759,-0.12026369581759325,-0.10981266021638957,-0.05924531234629422,-0.12119033214146199,0.07835611245371406,0.00341248978656226,-0.06096224308683654,-0.11061776374191,-0.09298379921746412,-0.06663348808239897,-0.09994401702051667,-0.043437128180805154,-0.10783524414147272,0.24549106634237677,0.25623688048894205,0.22442012090135394,0.05292759178671865,0.24366993573408147,-0.019503815039184653,0.24085202476111306,-0.016885714159887533,0.27278200463698804,0.11379370178096579,0.200795931406228,0.088477373786813,0.11556138969108257,-0.08852995860603109,-0.16618119624249858,-0.15787954482375807,0.09083522813400027,-0.0492268291202197,0.11803399002744953,0.025395808346007236,-0.05454066444700327,-0.04553948807937691,-0.14437554575460104,0.10058481878676201,17.036688053926866,26.00267484711694,7.047003990147253,13.227853972254522,28.606059839312962,36.652928026985315,37.311497109321195,37.311497109321195,37.311497109321195,54.82022857008588,45.41914737000455,2.040515258442483,7.360565941638846,0.0,9.401081200081329,6495.779737715328,4629.911257974629,2382.9361433338436,104.0,39.0,48.0,64.0,80.0,82.0,104.0,116.0,112.0,361.13140808800057,29.0,4.919980925828125,5.739792912179234,6.6052979209482015,7.449498005382849,8.322880021769905,9.180602553712227,10.057881060021222,10.923976124422659,11.803421075708558,0.6884057971014493,0.9901739130434786,1.1102942214451772,0.6541051137906193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6992588778963814,0.9778346121057114,1.0091358181069703,0.6687940026017928,12.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,9.473725907600098,11.49902366656781,0.0,0.0,0.0,14.573052889090853,0.0,0.0,0.0,30.33183534230805,47.52510539416365,20.044317970994324,11.611834041009853,230.19928772923444,-488.38626520535115,-38.745229952149735,-10.617092721855458,-27.132570289186177,411.08887856392414,872.1580507470615,24.138947096341756,18.95995762493612,31.148501812395054,0.5,0.804225882167438,0.2011394918239041,60.95975870703927,0.14495041536554362,33.57300094743659,0.19577411783256232,7.0,0.1724137931034483,0.26473832012083154,0.5563481021027055,0.7104754087458668,0.828758203215247,0.828758203215247,0.828758203215247,4.112400000000003,,1.1428571428571428,1.3285248953001396,0.9177863289708527,1.1395624948769625,-4.847358875538426,1.1960679314565485,1.1342421939878375,-1.9153025404755315,100.68400000000003,19.06280027574374,0.0,4.9839785209472085,0.0,19.76538044554264,0.0,89.74771230293325,0.0,11.49902366656781,4.07753744390572,0.0,5.3706380281276624,0.0,6.853299093186078,0.0,8.424858580213442,0.0,10.045811427748324,31.66666666666667,22.23748871115123,4.50273709792559,0.0,0.0,0.0,0.0,3.888984420928867,0.0,45.548000000000016,0.0,22.23030603394809,0.0,0.0,0.0,0.0,0.0,-0.7128034606353513,51.073534186478156,9.473725907600098,0.0,11.49902366656781,16.922589096850906,9.589074368143644,0.0,36.586211423785095,72.9268813246908,0.0,0.0,0.0,30.08883523436849,32.16590838323354,34.387058273456695,303.50525819550234,,228.22432493584324,225.52785286746828,232.05866042529584,228.27373056681762,319.26769534483157,227.47368201872456,228.34730377675658,273.24046119085983,34.387058273456695,303.5052581955024,,227.21815944186295,224.3742337124143,231.27684244135781,227.27043040735865,322.3197361183188,226.428169487257,227.34777542442265,274.44639242004814,4.831244308036596,214.57200081585052,,162.54383547734497,160.87963006789857,165.13834607834832,162.5750816200026,220.71605803471326,162.0914177915207,162.6186676412418,190.93092552425526,1.2735947508687664,11.24093548872231,,8.452752775401601,8.352883439535862,8.594765200936884,8.454582613585838,11.824729457215984,8.424951185878687,8.45730754728728,10.120017081142956,2.4156221540182985,151.75262909775117,,114.15449051024964,112.813131059486,116.04568192708325,114.17907130173758,158.73618862139014,113.78113982163845,114.215660858526,136.2655449397863,44.98039215686273,0.0,2.740623636188349,0.0,0.0,0.0,0.0,46.420247632920635,0.0,0.0,10.220111595262694,0.0,-0.10744803476946374,0.0,0.0,0.0,0.0,30.76452411968247,515.740541260654,67.26573161317393,141.35906771055522,180.5203271692854,210.57407497429563,210.57407497429563,210.57407497429563,805.0,131.003330599973,125.54762503250463,61.77214457318123,65.49000000000001,65.49000000000001,1.0,8.724067615264254,5.857980995127572,4.368295048998704,5.0894145008874885,,5.099438541838924,5.101551585680855,5.094673292501938,5.099394786095519,5.03237336124564,5.0999477357015675,5.099350114817394,5.0641292307605665,0.1617887055184705,0.18849683336620326,,0.18886809414218236,0.18894635502521684,0.1886916034259977,0.18886647355909328,0.18638419856465335,0.18888695317413212,0.1888648190673109,0.187560341880021,2.467624557019323,2.620414567661149,,2.6223822168447275,2.622796498957687,2.6214473144694135,2.6223736363057584,2.6091434870417918,2.6224820647864,2.622364876153689,2.615433977029023,274.4200000000002,256.3806072231142,165.28497547327134,,163.94094149282535,163.71597191581554,164.37370943014403,163.9453892198669,170.34328190142597,163.8838878066551,163.95061708187413,167.43448163964996,9.495578045300526,6.121665758269309,,6.071886721956495,6.063554515400575,6.0879151640794085,6.072051452587663,6.309010440793554,6.069773622468708,6.072245077106449,6.201277097764813,6.5399148603410895,6.100922881227593,,6.092758023129654,6.091384820836918,6.095394324535941,6.092785152818361,6.1310674793065845,6.092409948904353,6.092817040135725,6.113843893364422,10.220111595262694,26.73304313187368,0.0,2.895971487360377,0.17276143816367484,20.484716672583737,1.752772038567493,2.740623636188349,0.0,336.45537700789953,147.62407910987193,-313.1963324563038,-24.846857468620865,-6.808615922963126,-17.39979624757244,263.6264331177698,559.3046370813985,15.480021119660567,12.158796458291274,19.97516561004995,1954.0,39.0,1.8358559825027003,0.6419039027831924,0.0,0.0,0.16666666666666666,0.06674642224496707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2687287392826324,0.08040075530555321,0.2730017401615745,0.06909985830003611,19.22540387131522,15.08576025682055,13.024877143252588,8.503985507359817,11.796149781669724,6.012974328090055,8.675121860481754,3.933561810279534,7.62476973408453,2.8692647772497,6.221281191481388,1.9748662298864126,3.85169872475719,1.0607157458893168,3.2526656811209884,0.7246470864974877,3.040318621543378,1.1243919576771935,5.330687354854322,1.6542922313024775,8.00381807085293,2.130614700952977,87.83520429821736,60.27543593633903,38.30742391289212,34.81150883326815,34.81150883326815,34.81150883326815,136.0,155.0,53.71706699999999,25.408932999999998,0.41304347826086957,139.05,8.63888888888889,6.000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,18.0,46.0,0.0,0.0,48.0,18.0,2.0,11.0,37.0,20.0,29.0,28.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,5.0,0.0,1.0,27.0,5.0,0.0,1.0,4.0,0.0,3.0,5.0,0.0,0.0,0.0,1.0,3.0,3.713572066704308,7.48959547921166,4.269697449699962,4.738389029774314,5.332114746131327,5.8966386250319545,6.043078102706436,6.545708791241494,6.965139361801371,7.2210137197386075 +5184,CN1C2CC(OC(=O)C(CO)c3ccccc3)CC1C1OC12,0,21.813953488372093,6.19336976744186,3.372093023255814,7.023255813953488,162.60046400137742,85.90454544186046,1.4076973721355583,6.250197674418603,4.220284237726099,7.7415119999999975,208.4051917178431,24.304347826086957,6.374456521739131,4.282608695652174,6.260869565217392,145.37782342552492,91.83027941304353,1.7603281344782615,6.515130434782609,2.853864734299516,7.804076956521735,259.40053351904805,19.583333333333332,6.309642857142858,3.7857142857142856,4.595238095238095,153.96146777980763,71.62912511904763,1.495140111893976,6.409054761904762,2.709986772486773,7.805041714285712,212.73044173002677,15.717948717948717,6.136358974358974,3.034188034188034,3.3846153846153846,158.57828909968444,55.64319072649571,1.2813611773173588,6.215697435897437,2.5206552706552716,7.700140410256409,175.69002675554327,13.443548387096774,6.1051532258064505,2.532258064516129,3.0483870967741935,161.34869619294778,46.01147692741937,1.093406919048984,6.1627806451612885,3.064516129032259,7.7124931935483865,144.7092755291757,12.77570093457944,6.113130841121497,2.3551401869158877,2.9626168224299065,166.97922066029545,44.33545895327102,0.9962256626861027,6.146912149532709,2.98208722741433,7.769208971962618,135.3819453591021,15.45,6.237625,2.75,3.45,160.72631649551107,54.57460043750001,1.1939178412447997,6.29830125,3.135416666666667,7.828751849999998,166.08611758208932,13.951219512195122,6.0418780487804895,2.707317073170732,2.7804878048780486,159.94303127445104,48.40212035365853,1.2156643182491826,6.113178048780487,2.8184281842818426,7.638154390243902,161.62345895702003,12.654761904761905,5.898130952380954,2.5357142857142856,2.511904761904762,161.45498417700153,43.36419203571428,1.1604806985455831,5.969804761904761,2.395833333333334,7.506443476190476,150.1653628624204,7.620335316387237,0.1429138994050838,0.02145999673437845,0.6457544618712817,3.8994050838290963,1.370294354172329,36.13381739210383,0.2281673609801178,0.1332033531638723,1.506730364761733,0.09255701027582476,49.895767927665645,0.49594375338020535,-0.0027952441978037154,-0.008351387373211356,0.22482187786582652,0.7780468878594773,-0.17102648520411715,2.3672003980882828,-0.006359337068224478,-0.0002981458837915169,-0.09065351946345186,-0.004562872763185738,1.2889257975910717,-0.5336797239176904,-0.006967747688583237,-0.0018495014777871565,-0.03362821602410574,-0.3606453939066161,-0.0030603976209446055,-2.519706191107158,-0.0029685504999810855,-0.007174754049808153,-0.011852180930060888,-0.0024357300986376103,-1.9837691078321347,-0.6465726449501463,-0.012370250031201882,-0.001563007920648424,-0.15261194547295145,-0.4253442609310647,0.005178877526298007,-3.060956665210576,-0.014476348272326788,-0.011602816491242668,-0.07840818450156825,-0.007772755058174198,-3.3728947717095163,-0.6490299900556534,0.010705717999267266,0.0036820904962172143,-0.09436661490954133,-0.07082293829271281,-0.25982368129613675,-3.2708386030940866,-0.05089823976274901,0.008237550812121635,0.2406179306454521,0.007806648388841397,-9.89771788049643,0.7380650313632526,-0.010423049589826271,-0.0008221436102557102,0.09712752030650568,0.07386159732717346,0.17255547183329525,3.6704266161552317,0.04032329968169081,-0.007371838275804566,-0.1596681319138014,-0.008923029836789772,8.856218649368786,-0.4488236884802596,-0.018135643591130315,-0.0019150594233427228,0.006861817198485673,-0.36335857220118994,0.008860570462456419,-2.031122558673606,0.003146855678869019,-0.016524777582477022,-0.24599070067904574,-0.012904720740941043,-0.2588074027027768,-0.6623092244984105,-0.005822265825957334,-0.0004298789248422038,-0.0030998957907372496,-0.3679246527457163,-0.023311806407090255,-3.122397008950124,-0.0007617991843337203,-0.007014810906356755,-0.13307750032611193,-0.0015388060784339568,-2.560698257702665,-0.28617141826984976,-0.00031918733420898375,0.00035412498613973886,-0.08456952277936593,-0.08738957995312796,-0.0640134969208517,-1.3862927617051692,-0.011651587720707877,-0.0009442723222333664,-0.12990004607094927,-0.0002339504751603219,-2.7083807352140163,,,0.4651515151515151,1.0113636363636365,0.3409090909090909,0.0,0.6704545454545454,-0.32954545454545453,0.9237685275204598,0.010379168835066692,0.026015532471430326,0.6826971950007589,0.1928991243529231,0.29282232328351454,1.6064657225212187,0.48572144763643765,2.0531743538016687,1.6109287659086815,0.09805265717992456,0.34419293071306256,0.0,0.44224558789298707,7.0499315849302455,938.0,266.31489999999997,145.0,302.0,6991.819952059229,3693.895454,60.53098700182901,268.7584999999999,181.47222222222223,332.8850159999999,8961.423243867253,1118.0,293.225,197.0,288.0,6687.379877574147,4224.192853000002,80.97509418600004,299.696,131.27777777777774,358.9875399999998,11932.424541876211,1645.0,530.0100000000001,318.0,386.0,12932.763293503842,6016.84651,125.59176939909398,538.3606,227.6388888888889,655.6235039999998,17869.357105322248,1839.0,717.954,355.0,396.0,18553.65982466308,6510.253314999998,149.91925774613097,727.2366000000001,294.9166666666668,900.9164279999998,20555.733130398563,1667.0,757.0389999999999,314.0,378.0,20007.238327925526,5705.423139000002,135.58245796207402,764.1847999999998,380.0000000000001,956.3491559999999,17943.950165617785,1367.0,654.1050000000001,252.0,317.0,17866.776610651614,4743.8941079999995,106.59614590741299,657.7195999999999,319.0833333333333,831.3053600000001,14485.868153423926,1236.0,499.01000000000005,220.0,276.0,12858.105319640887,4365.968035000001,95.51342729958398,503.86409999999995,250.83333333333334,626.3001479999998,13286.889406567145,1144.0,495.43400000000014,222.0,228.0,13115.328564504985,3968.9738689999995,99.68447409643298,501.28059999999994,231.1111111111111,626.32866,13253.123634475643,1063.0,495.4430000000001,213.0,211.0,13562.21867086813,3642.5921309999994,97.48037867782898,501.46359999999993,201.25000000000006,630.541252,12613.890480443313,327.6744186046512,6.145297674418604,0.9227798595782732,27.767441860465116,167.67441860465115,58.92265722941014,1553.7541478604646,9.811196522145066,5.727744186046508,64.78940568475451,3.9799514418604645,2145.5180208896227,22.813412655489447,-0.1285812330989709,-0.38416381916772235,10.34180638182802,35.79015684153595,-7.867218319389388,108.891218312061,-0.292529505138326,-0.013714710654409778,-4.170061895318786,-0.2098921471065439,59.290586689189304,-44.82909680908599,-0.5852908058409919,-0.15535812413412114,-2.824770146024882,-30.29421308815575,-0.2570734001593469,-211.65532005300128,-0.2493582419984112,-0.6026793401838848,-0.9955831981251145,-0.20460132828555927,-166.63660505789932,-75.64899945916711,-1.4473192536506203,-0.1828719267158656,-17.85559762033532,-49.76527852893457,0.6059286705768668,-358.1319298296374,-1.6937327478622342,-1.3575295294753922,-9.173757586683486,-0.9094123418063812,-394.62868829001343,-80.47971876690103,1.327509031909141,0.45657922153093455,-11.701460248783125,-8.782044348296388,-32.21813648072096,-405.5839867836667,-6.311381730580877,1.0214563007030828,29.83662340003606,0.9680244002163332,-1227.3170171815573,78.97295835586803,-1.115266306111411,-0.08796936629736099,10.392644672796107,7.90319091400756,18.46343548616259,392.7356479286098,4.314593065940916,-0.7887866955110886,-17.08449011477675,-0.9547641925365056,947.6153954824601,-35.90589507842077,-1.4508514872904252,-0.15320475386741783,0.5489453758788538,-29.068685776095194,0.7088456369965135,-162.4898046938885,0.25174845430952153,-1.321982206598162,-19.67925605432366,-1.0323776592752834,-20.704592216222146,-54.30935640886966,-0.4774257977285014,-0.03525007183706071,-0.25419145484045447,-30.169821525148734,-1.9115681253814008,-256.0365547339102,-0.06246753311536507,-0.5752144943212539,-10.912355026741178,-0.12618209843158446,-209.97725713161853,-24.03839913466738,-0.026811736073554634,0.029746498835738065,-7.103839913466738,-7.3407247160627485,-5.377133741351543,-116.44859198323422,-0.9787333685394617,-0.07931887506760278,-10.91160386995974,-0.01965183991346704,-227.50398175797736,0.6939645561169142,0.5723338803198653,0.42743487392006513,0.3169787814677371,0.26407693311836355,0.17680058440864904,0.16627004661756561,0.10177859667932239,0.10658683489623075,0.05648274698227451,0.06662238445269628,0.03320126917182628,0.04117931918158202,0.018821097058732417,0.026291310398054775,0.009842515709205519,8.029065789543814,5.6931432141951115,3.5552337982713604,2.193042511953688,0.4408949106323934,-0.4934252126397116,3.21481896204239,0.9779535569658442,6.028425683300618,0.9969660343450233,14.543913397058573,10.953459479544533,16.014442863449652,11.704197721151266,1.9833769296293846,0.7414833111358776,3.5013152822062623,2.243019217147578,7.008272202536386,1.1632643280112864,3.714230290877657,2.4390233712826324,20.892247786830392,14.701038004651153,0.26208309689827575,0.5882167294553649,0.7806598855621333,0.8563319139779556,0.900648008228223,0.9171302240547865,1.3414796579873691,545.0371822548029,0.0,1.0,1.0,0.0,5.0,7.0,1.0,1.0,0.0,3.9471054460374355,2.1064541252363926,1.0203326274634241,0.5932505814959761,0.3431369186549649,0.2501136628410112,196.84485742480535,1102.9662842086161,56.13366493932226,25.650378702525956,53.11104014579584,,11.0,435.0,5.917906046161393,9.901064578912528,18.68015364021307,24.291614433792525,18.405094737549014,0.0,0.0,30.33183534230805,11.947581713527669,9.473725907600098,10.233333333333333,22.25,7.5,0.0,14.75,0.0,0.034848484848484886,-7.25,0.13860465116279053,0.034931181775035514,-0.10367346938775501,0.024242424242424288,0.1715971731448761,0.0,0.5852713178294575,0.8575757575757573,0.446666666666667,0.550340136054422,0.833333333333333,20.322907605450116,0.22834171437146722,0.5723417143714672,15.019338290016695,4.243780735764308,6.44209111223732,35.34224589546681,10.685871848001629,0.5424028268551239,0.11400651465798045,0.0,0.4299674267100978,0.5882352941176471,0.3112044129069459,-0.6584241396378757,-0.06499557885591095,-0.015312189293904089,-0.05486867830315632,0.6887955870930541,1.4573046621730206,0.04268097786543987,0.033890806097046984,0.04700982781203292,-1.439086920457564,0.8024932884870553,0.7774014045512022,1.3634341291089793,0.9042495084116233,0.6207682566483749,1.3546729613966748,0.8090078879711167,1.1931404351251609,0.7540357552219088,0.7241969479296088,0.820264868935188,1.0356218811140339,0.9971788502484031,0.9598436581118175,1.1547564602621092,1.3234924623115578,1.0526352288488212,1.154217230165381,0.9995194214853793,1.0656635961515815,0.9552669990620929,0.6893059405348279,0.9316475475054293,1.0387093096959699,1.0423886735455221,1.039228621479826,1.1612754109631338,1.3509642228235195,1.1036345531491165,1.0368290559535907,1.043186617394499,1.066552009492089,1.0361460453554017,0.8006215572371077,1.0347605437174836,1.051103348617499,1.084844547723162,1.0153026634896876,0.9660258930209937,1.0978278489220294,1.0625430629502037,1.1237345099800307,1.0876521532076853,1.1892694258693404,1.020429172151763,0.9391988360671241,1.032868615493021,1.1615233703721204,0.972101245000431,1.381746256397271,1.2530652729752578,0.7280092049030198,1.151764812630433,0.730745659756755,0.9597395059188175,0.7275014734577657,1.3455182113272806,1.6576591922551438,1.4503118381993452,0.747801983824448,1.0790817955997158,1.3412609016990868,1.2831901126618075,0.9548052763819095,1.1710194174757282,0.9559250214639791,1.0715986659506096,0.9590856207648424,1.3171690730146617,1.7885511595908035,1.400230864976312,0.9581384740379437,1.051199605324655,0.9866967302808287,0.8987832126285521,0.9776320627527884,1.0065237982476913,1.0015058795961662,1.051480398639751,0.99800920738275,0.999647792095336,1.3691952975325716,0.9664009559500618,1.0376594842399098,0.9803938963804115,0.8025852060073912,0.690685587335507,1.0804020100502514,0.8826629680998613,1.0313209875289306,0.9847532012107028,1.0311840245482151,0.822985427925276,0.9859936785849603,0.7698908001168087,1.0480459614848656,4.0,0.04479338842975207,2.5555555555555562,2.2638888888888893,1.0494444444444446,0.5522222222222222,0.45478458049886616,0.28128543083900226,0.30690192743764166,0.13625771604938272,4241.032971827738,4849.0877508872045,2176.0710948463206,1960.657189524194,10.922535101531293,0.43745677224357643,6.144398151298249,0.7776411672188711,1.0,0.5882352941176471,1.4791593086646624,3.3198106294657053,4.405932127238674,4.833014173206122,5.083127836047133,5.176151091861087,0.16,0.00639905548996458,0.07516339869281047,0.06468253968253969,0.03886831275720165,0.023009259259259257,0.019773242630385487,0.013394544325666773,0.016152733023033772,0.009732694003527336,0.42717577986438904,15.5232,6.135865595325055,2.9219530949634756,129.3709528987289,1.0,4.083430400028517,101.15815932134515,,86.98582533322696,85.75203991927597,88.47087203883488,87.00767974341183,126.99601585184782,86.63119721721313,87.04321986521919,107.35166785858033,0.0650816181689141,-0.019558938699732107,-0.3891607010280954,0.34815381254096583,0.19952963878670923,-0.12481003419693633,0.06551204851678852,-0.02787137056285023,-0.002238276114751597,-0.06016572147451703,-0.049297970511235585,0.02583236717510069,-0.07003362736151947,-0.048754863715763784,-0.08618367936768115,-0.05207585546781534,-0.09248728617660655,-0.0022333870176332407,-0.06973263200410645,-0.013010408181211163,-0.05386316394739307,-0.007866159206219445,-0.026315998014402223,-0.03975826388137814,-0.08484831941183964,-0.08655736133921374,-0.07283355817778478,-0.2363312287935404,-0.10907927024431882,0.0037793905451986624,-0.08471168800115411,-0.063446183582709,-0.08710603911726157,-0.05203863035837029,-0.08397802646186367,-0.06759881472511323,-0.08517079145584834,0.0749102644587587,0.17157926638071597,-0.1461338952828659,-0.018162498322222748,-0.18961158272674397,-0.09052015090464395,-0.22307414848517362,0.061841917763042036,0.1596954148352232,0.08434421515536397,-0.19836788352160933,0.09685466593262271,-0.07293237140134669,-0.03831051888925287,0.1504093677108283,0.01894176053508235,0.1259258430919541,0.10157871160762866,0.17672685308046546,-0.05534273800701868,-0.1059699436926464,-0.09640576991627835,0.17749438513919114,-0.058898154719659326,-0.12689908865844846,-0.08923857011939053,0.010626046901172538,-0.0931830790568655,0.006466180376119472,-0.05621112589995704,0.013791874812205203,-0.12405676876728139,-0.1632612618900433,-0.13942456333112205,-0.005186961007955069,-0.08691339645830808,-0.04073967507844952,-0.020031639806987817,-0.004800424888671,-0.09435404756266705,-0.01701226188089406,-0.0864120437391829,-0.003338773701292458,-0.05266241982457336,-0.0883220405179504,-0.016625494642147947,-0.051320950935456744,-0.0375536516948866,-0.0022334240094048505,0.016501632806515686,-0.13096235143973836,-0.022411003236245994,-0.04671514315587798,-0.03836552187835293,-0.05106597048174292,-0.007088953091681434,-0.08621319985908099,-0.002527636474678009,-0.05428077064853237,8.146093374951603,15.87933526474213,9.658117896693065,13.733150536864073,30.94715754711953,34.500918578275346,37.171650470989704,37.935532484993914,38.02929992685438,45.16983578363671,35.44043284999099,2.1571584579583405,7.572244475687376,0.0,9.729402933645716,3795.692933998787,3267.926225760004,999.6003175611877,104.0,37.0,51.0,70.0,86.0,88.0,98.0,102.0,100.0,303.14705815200057,25.0,4.8283137373023015,5.726847747587197,6.647688373563329,7.565793282428515,8.496786381638575,9.425532393502772,10.363535538414585,11.300115834295553,12.243874082756925,0.627906976744186,0.9839069767441863,1.1276470658698219,0.5873646831489739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6503363459128256,0.9699042407660738,1.0071647555006016,0.611775626127171,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,6.0,1.0,0.0,0.0,0.0,14.580253302440804,24.2298052094063,0.0,0.0,0.0,9.694446914922299,0.0,0.0,0.0,30.33183534230805,12.611123474374185,24.925324904147942,6.606881964512918,162.23628219245535,-343.2479749332978,-33.88332759819359,-7.982511044960416,-28.603997911108156,359.0811396172607,759.7183092753183,22.25033734112867,17.667867657565537,24.507042234687685,0.45454545454545453,0.7964222700023595,0.21823215177352304,12.581640813531543,0.14914476825611328,15.522456754483517,0.20357772999764043,6.0,0.16,0.2725925430348575,0.6118040271789066,0.811964090661212,0.8906705425713152,0.936763697650834,0.9539068449204812,0.9180999999999995,,1.1428571428571428,1.3285248953001396,0.9177863289708527,1.1395624948769625,-4.847358875538426,1.1960679314565485,1.1342421939878375,-1.9153025404755315,79.38280000000005,19.374790486512623,0.0,4.899909730850478,0.0,49.155130113554236,13.654553947190108,35.89528683400505,0.0,0.0,3.9318256327243257,1.9459101490553132,5.293304824724492,4.110873864173311,6.876264611890766,6.251903883165888,8.56845648535378,8.32579052588609,10.323217104657997,27.0,9.32848076640104,0.0,0.0,0.0,0.0,0.0,0.8028518413538258,0.0,42.30800000000001,0.0,12.42388109410431,0.0,0.0,0.0,0.0,0.0,-0.3219954648526071,48.48882383240234,0.0,0.0,0.0,60.02587718237396,14.268263091671919,0.0,24.32300078371041,30.33183534230805,0.0,0.0,0.0,25.25668137540588,27.964462874251502,29.211723252296743,202.93010385020125,,174.42666308223284,171.94831124017276,177.3355963240441,174.47035470489698,256.3880071470343,173.7083977531771,174.54277984672245,215.91944339388846,29.211723252296743,202.93010385020125,,173.49159814716796,170.8613363258363,176.58468023670434,173.53798539090678,259.47269006783154,172.72979671834904,173.61476350618696,217.13827228328205,4.986774729396693,153.51293948462484,,133.1241059050691,131.19489407081682,136.05389855239707,133.16010517758195,200.1357292128244,132.5965258955887,133.21117365516963,166.49214221087732,1.3278056023771247,9.224095629554602,,7.928484685556038,7.815832329098762,8.060708923820187,7.930470668404408,11.654000324865194,7.895836261508051,7.933762720305566,9.814520154267656,2.6299655831075155,101.15815932134515,,86.98582533322696,85.75203991927597,88.47087203883488,87.00767974341183,126.99601585184782,86.63119721721313,87.04321986521919,107.35166785858033,41.705882352941174,0.0,2.128363935080205,0.0,0.0,0.0,9.557785546317293,43.308084486525864,1.426961844923154,0.0,11.375006813305877,0.0,0.7470256950474284,2.3649712616528094,0.0,0.0,0.0,26.306351923468352,415.1888044694716,63.60385027258048,142.75185706702533,189.455081471263,207.81960944786323,218.5744969500267,222.57449695002674,783.0,123.59848737148974,106.1286173402444,77.62754708163196,62.3,62.3,0.8333333333333334,7.196733386217893,5.643856189774724,3.293630439000401,4.629417012251111,,4.632885901967807,4.632844051428069,4.6350170972410725,4.632893162564877,4.63511027868494,4.632981796935435,4.6328761661377165,4.633485962025206,0.14971047450001823,0.21042804601141415,,0.2105857228167185,0.2105838205194577,0.21068259532913966,0.21058605284385806,0.21068683084931547,0.2105900816788834,0.21058528027898712,0.21061299827387298,1.9804477936582512,2.320888305253881,,2.3216373392492073,2.3216283058454827,2.322097248100436,2.3216389064346585,2.3221173516955846,2.32165803778943,2.321635237785773,2.3217668527345383,223.2099999999997,1023.5354403973141,124.40425401088217,,123.59484213185684,123.5738721041241,123.41016309533633,123.59456421208543,123.6124867691796,123.57875301301334,123.5968499501429,123.71814234522549,46.52433819987792,5.654738818676463,,5.6179473696298565,5.6169941865510955,5.609552867969833,5.617934736912974,5.618749398599072,5.617216046046061,5.618038634097404,5.623551924782976,7.719475391536681,5.611993736313628,,5.605466174192343,5.605296492298356,5.603970827401589,5.605463925554139,5.605608925925726,5.605335989421945,5.605482419222823,5.606463293076702,11.375006813305877,14.788852355757118,9.557785546317293,0.8028518413538258,-0.9152421107331821,10.061539681325034,2.2596835066288516,-0.2255082357016882,2.128363935080205,277.8742045750636,84.57660035656437,-178.94114933363286,-17.66396898582428,-4.161422077526346,-14.911762444469407,187.19525392576506,396.05439029304546,11.59948849707365,9.210567216117333,12.775948073969206,1081.0,35.0,1.4793569794637609,0.8812753195526852,0.0,0.0,0.4325123779837031,0.22243755969801512,0.0,0.0,0.23570226039551584,0.13608276348795434,0.2721655269759087,0.15713484026367722,0.4923023800353495,0.27643526866638857,1.1204841221423534,0.585336840389718,1.6729323128850102,0.8693316161585223,15.267220234572113,12.591345367037036,10.685871848001629,7.924469536693428,9.770846525379453,6.541621623120014,8.479772377495847,5.190708430645442,7.461078442736152,3.9537922887592156,5.72952506293188,2.85530914877706,3.6237800879792177,1.6562565411684527,2.576548419009368,0.9645665395021409,3.7401323382169576,2.072046156832347,6.429157668198456,3.022188402362747,9.435996279774507,4.0273062492973795,75.67439612065871,39.182503814731454,28.977701358183356,23.49834151037784,21.798035415099797,21.346637321201733,124.0,153.0,46.70065299999998,27.117346999999995,0.4186046511627907,163.05,6.499999999999999,4.777777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,6.0,6.0,43.0,0.0,1.0,46.0,6.0,1.0,4.0,42.0,7.0,25.0,39.0,0.0,0.0,2.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,5.0,1.0,3.0,22.0,5.0,0.0,1.0,4.0,0.0,4.0,4.0,0.0,0.0,0.0,0.0,1.0,3.4011973816621555,5.330905556141189,3.8815637979434374,4.300680995219929,4.737294338915133,5.070082752739676,4.996789887274202,5.190871344399189,5.269789282933498,5.12359188637571 +3899,Cc1oncc1C(=O)Nc1ccc(C(F)(F)F)cc1,0,32.5,7.583564285714286,3.8214285714285716,14.357142857142858,174.63698993011576,133.1235750160468,1.5037668265586075,7.545057142857144,11.319692460317459,8.787824000000002,243.3035156531733,30.724137931034484,6.949103448275862,4.379310344827586,11.689655172413794,151.77603550498273,120.53761225881377,1.7993854062068957,7.062072413793106,4.361111111111112,8.247186068965519,285.6197783900847,30.319148936170212,7.336680851063828,3.8085106382978724,11.851063829787234,163.2605781486095,120.49854940329588,1.5544363479690841,7.3734957446808504,8.036643026004725,8.568506978723407,248.7295764210472,24.37735849056604,6.900716981132079,3.3207547169811322,7.509433962264151,160.14391260668015,92.80561013228679,1.4136473192395846,6.969716981132075,4.9255765199161425,8.293148679245283,221.25542140527878,21.56896551724138,7.176187931034481,2.7241379310344827,6.724137931034483,173.8988654995853,80.03721599249656,1.1467738189895864,7.179377586206897,5.8697318007662815,8.563567862068963,179.8215803225087,18.25531914893617,6.955446808510637,2.6595744680851063,5.659574468085107,175.84396381135724,66.22700421402553,1.1173706963998298,6.956872340425534,4.8170803782505915,8.439165191489362,172.27018428241334,24.12121212121212,6.826696969696968,3.272727272727273,7.696969696969697,161.3323551783287,92.30303702627882,1.4426432244408185,6.882230303030304,4.942760942760945,8.206198181818182,218.03377691592854,19.805555555555557,6.840222222222222,2.8055555555555554,6.222222222222222,166.6624146391722,72.45368932728891,1.2376841062416113,6.882763888888892,4.3688271604938285,8.277374666666667,186.61845702479772,20.875,7.065718749999999,2.5,8.9375,175.65097599593727,80.22545780925,0.99340733127475,7.039815624999998,8.294270833333332,8.485393375,153.81948976952208,8.20918367346939,0.3628275510204079,0.026572112743646775,0.7589285714285714,5.78061224489796,3.6979072067096643,39.99334823862954,0.23684477119793232,0.3127994897959184,4.965091765873014,0.2163130612244897,41.59584229998451,0.12086558761435579,-0.002521885995777611,-0.013556885875809147,0.07974137931034483,1.4829345531315978,-0.11826013374098757,0.5213735489986298,-0.0013979003988929023,-0.0015418543279380617,-0.4541876197318004,-0.0013244306826179016,0.41089870130828976,1.8637646547980893,0.14461241858445503,0.002689562033178617,-0.09175531914893617,1.2984151107251407,1.0155274473345801,9.37504922676871,0.005845313327889833,0.12366373208858009,2.0910073138297873,0.08128573512809377,0.2793780033114477,-1.0824990373507895,-0.04739426261070464,-0.00504275622576816,-0.2205188679245283,-1.1539276087793608,-0.9030922411420953,-4.862304598128739,-0.05642866690957117,-0.039061753946861746,-0.19040716719077544,-0.03267100192529843,-8.46577960394042,-1.7264250527797325,-0.0599039057002111,0.005126789752857725,-0.00646551724137931,-1.3114004222378606,-0.46468763762467485,-8.669533257508679,-0.04028795040690655,-0.05301254398311047,-0.738400981800766,-0.03061483462350457,-8.557305726822324,-1.4964177160225784,-0.12399031697785488,-0.005931016302815121,0.09973404255319149,-1.4037125488493267,0.17855511659364162,-7.096083147197178,0.07073224238056605,-0.10814280286582716,-1.6067985372340425,-0.07372027095093357,11.020391208630866,0.6198206555349413,0.07021941867656149,0.011028390849388362,-0.08143939393939394,0.03324056895485481,0.8212048180224731,3.0850863578839993,-0.0063773918866239345,0.057673021026592504,0.17004682239057248,0.036683960420531805,-2.9262427526198573,-2.314342403628118,-0.07490532879818591,-0.007255749169975605,-0.013888888888888888,-0.7389455782312925,-0.5358274397867059,-11.223593550415936,-0.05488638975686593,-0.06647845804988657,-0.8654031635802466,-0.04386317233560092,-11.591987244964416,3.2729591836734686,0.1277318239795918,0.0036147174172547355,0.1484375,3.1457270408163267,-0.4560502744299796,16.097157804383475,0.002458565632535193,0.11634559948979589,2.5698784722222223,0.07671040306122445,5.720115045142839,,,0.43809523809523804,1.2763157894736843,0.631578947368421,0.02631578947368421,0.6447368421052632,-0.013157894736842105,0.6299748279402528,0.028325521001129436,0.0373781525800768,0.9737606141302863,0.27626669681149696,0.19089270652279972,1.6037354420705392,0.4671594033342967,1.9821805265808141,1.3061883918124473,0.21141834540574697,0.19777533406794393,0.2667984552946758,0.6759921347683666,9.645057578142866,910.0,212.3398,107.0,402.0,4889.835718043241,3727.46010044931,42.10547114364101,211.26160000000002,316.95138888888886,246.05907200000004,6812.498438288852,891.0,201.524,127.0,339.0,4401.505029644499,3495.590755505599,52.18217677999998,204.80010000000007,126.47222222222223,239.16839600000003,8282.973573312456,1425.0,344.8239999999999,179.0,557.0,7673.2471729846475,5663.431821954907,73.05850835454696,346.55429999999996,377.7222222222221,402.7198280000002,11690.290091789218,1292.0,365.73800000000017,176.0,398.0,8487.627368154048,4918.6973370112,74.92330791969799,369.395,261.05555555555554,439.53687999999994,11726.537334479775,1251.0,416.2188999999999,158.0,390.0,10086.134198975948,4642.1585275648,66.51288150139601,416.4039,340.44444444444434,496.68693599999983,10429.651658705505,858.0,326.90599999999995,125.0,266.0,8264.66629913379,3112.6691980592,52.516422730792,326.97300000000007,226.4027777777778,396.640764,8096.698661273427,796.0,225.28099999999995,108.0,254.0,5323.967720884847,3046.0002218672007,47.607226406547014,227.11360000000002,163.11111111111117,270.80454000000003,7195.114638225642,713.0,246.248,101.0,224.0,5999.8469270102,2608.3328157824008,44.556627824698005,247.7795000000001,157.27777777777783,297.98548800000003,6718.264452892718,668.0,226.10299999999998,80.0,286.0,5620.831231869993,2567.214649896,31.789034600792,225.27409999999995,265.41666666666663,271.532588,4922.2236726247065,229.85714285714292,10.159171428571423,0.7440191568221097,21.25,161.8571428571429,103.5414017878706,1119.813750681627,6.631653593542105,8.758385714285714,139.0225694444444,6.056765714285712,1164.6835843995664,3.505102040816318,-0.07313469387755073,-0.39314969039846526,2.3125,43.00510204081634,-3.4295438784886394,15.119832920960262,-0.040539111567894165,-0.04471377551020379,-13.17144097222221,-0.03840848979591915,11.916062337940403,87.5969387755102,6.7967836734693865,0.126409415559395,-4.3125,61.02551020408161,47.72979002472526,440.6273136581293,0.27472972641082216,5.812195408163264,98.27734375000001,3.8204295510204074,13.130766155638042,-57.372448979591844,-2.5118959183673457,-0.2672660799657125,-11.6875,-61.15816326530612,-47.86388878053105,-257.70214370082317,-2.990719346207272,-2.0702729591836726,-10.091579861111098,-1.731563102040817,-448.6863190088423,-100.13265306122449,-3.4744265306122437,0.29735380566574804,-0.375,-76.06122448979592,-26.95188298223114,-502.83292893550333,-2.33670112360058,-3.0747275510204073,-42.82725694444443,-1.7756604081632652,-496.32373215569487,-70.33163265306119,-5.8275448979591795,-0.2787577662323107,4.6875,-65.97448979591836,8.392090479901157,-333.5159079182674,3.324415391886604,-5.082711734693876,-75.51953125,-3.464852734693878,517.9583868056507,20.45408163265306,2.3172408163265295,0.36393689802981594,-2.6875,1.0969387755102087,27.099758994741613,101.80784981017197,-0.21045393225858983,1.9032096938775527,5.611545138888892,1.2105706938775496,-96.56601083645529,-83.31632653061224,-2.696591836734693,-0.2612069701191218,-0.5,-26.60204081632653,-19.289787832321412,-404.0493678149737,-1.9759100312471736,-2.3932244897959167,-31.15451388888888,-1.5790742040816332,-417.311540818719,104.734693877551,4.087418367346937,0.11567095735215153,4.75,100.66326530612245,-14.593608781759347,515.1090497402712,0.07867410024112617,3.7230591836734686,82.23611111111111,2.4547328979591825,183.04368144457084,0.7391371366021322,0.5149660495475523,0.4438014331675818,0.2638005207600326,0.3058173472445363,0.1318927803116192,0.18927481039843613,0.07251336799316999,0.12780085207879988,0.03737613454128301,0.07940591949968004,0.019949204893549424,0.05208900777186018,0.00984956733400742,0.03449146125968529,0.005126795810828841,9.014089384587098,5.693646997869483,4.124516420931185,2.192845240141918,0.5017931927913855,-0.4653200247894371,4.022096740385103,0.9778396262340227,7.0140862704571205,0.9959565880091956,17.430696196932576,10.954807731827243,19.00560399396,11.705290987298516,1.9835789255156366,0.5269905311475409,4.00713492265407,2.2426046241963666,8.007385909173882,1.219034982015575,4.0305757994433895,2.4384291457638123,20.89011223369469,13.30278980956035,0.37809639221382335,0.7344839006485383,0.8153197631997781,0.871022340883717,0.871022340883717,0.871022340883717,1.7606415971267853,587.7671184973083,0.0,2.0,2.0,0.0,6.0,0.0,2.0,0.0,0.0,2.8679915187070764,1.0399791242415621,0.6253491072973905,0.3396348215831049,0.3396348215831049,0.3396348215831049,-92.22861409576609,783.8807446349834,55.31659915504046,27.995740879820836,58.802224686743365,,10.0,317.0,17.646929738491977,17.96578232709628,11.250837766380558,5.760247418874442,12.13273413692322,18.329577708536295,6.923737199690624,0.0,10.473451861131776,4.523094936973348,8.323809523809523,24.25,12.0,0.5,12.25,0.0,0.06190476190476196,-0.25,0.33596784168212707,0.10536659108087665,-0.23060125060125042,0.034937343358395934,0.27535508155583427,0.0,0.7741496598639456,0.9987468671679195,0.4381818181818185,0.6687830687830689,0.9638095238095236,11.969521730864804,0.5381848990214593,0.7101848990214592,18.50145166847544,5.2490672394184426,3.6269614239331944,30.470973399340245,8.876028663351637,0.4386449184441657,0.2030892448512586,0.06006864988558353,0.3003432494279177,0.16666666666666666,0.6006839105073194,-1.0280645499159193,-0.09295179246205904,-0.03671659106842569,-0.08567204582632662,0.3993160894926807,0.6834255232036478,0.027823990054031644,0.024408054400130278,0.04271409520022799,-4.27363301995115,0.5569426287477763,0.5643711343745403,1.6466026448748465,1.0953346855983772,0.33937973643363656,0.9111065670922113,0.5536011562104785,1.0196512446375765,0.5466477362750397,0.6101713307837761,0.5942987471633727,0.8810554703906959,0.5435846237255859,0.4384154028070044,0.7615177808785701,1.1489361702127658,0.5590035867871024,0.7434732836783821,0.5381081482214648,0.9841015152534697,0.4291004966182822,0.40492621596394324,0.47067762227989407,0.9059841288262728,0.9341733409946407,0.8247184982241957,1.2947256191877534,1.2466148723640398,0.9631134573431696,1.019833808493082,0.91468842520893,1.1898457975076522,0.8196244178586369,0.7017321299946917,0.8717188790074543,1.1535495815986214,1.2090718158633542,1.1222125820159687,0.8192836393613884,0.8324543610547667,1.195019326170983,1.0442477458273867,1.213313785748401,1.0830921631476356,1.1309210882654166,1.1463849665386725,1.0906587775178977,1.157956884526484,1.2971053779934671,1.3228376090551865,1.0935095125716359,0.7704630788485607,1.3185386189930701,0.7810986213712292,1.286565467189211,0.6325384614755883,1.3415613430866027,1.3889477122950014,1.3216892629484882,0.776529509222837,0.7546189050228823,0.4547279395164909,0.5043645273329269,1.0203208556149732,0.7658268474685066,0.508689686357211,0.7425778476878877,0.9813434129035401,0.4695370240349989,0.6040140909828837,0.49738436115319035,1.0667915462182813,1.2284804226227466,1.0451246024000835,1.0898355609666064,0.8294117647058823,1.0634377758164164,0.9931073803215507,1.2241258816841512,1.1967818813944935,1.0574637041724908,0.9186532962024055,1.0433947420311078,1.2913100046509722,0.789213020509633,0.6556497111336415,0.6170045331581921,0.7345588235294117,0.6229451676963811,0.9150751051626599,0.7799773478911805,0.9188871046472948,0.6565604167923964,0.4802643081034505,0.6474853903049625,0.9482524948027472,5.5,0.06000000000000001,2.88888888888889,1.5,0.8722222222222225,0.6144444444444445,0.2727437641723356,0.24656320861678002,0.1781226379440665,0.1553086419753087,3774.7428177272914,4022.314286188358,1904.4845596750845,1810.138958595281,10.82339903566421,0.4507741160681898,5.9444909025093775,0.8207444864782742,1.0,0.16666666666666666,1.9393634033505271,3.7673757978160416,4.182005814760213,4.467720100474499,4.467720100474499,4.467720100474499,0.275,0.006666666666666668,0.09961685823754794,0.057692307692307696,0.039646464646464645,0.03840277777777778,0.017046485260770974,0.018966400662829234,0.016192967085824225,0.017256515775034297,0.5864874438052234,15.39,6.185493460166469,3.986159169550173,105.75664771197401,1.0,3.8646161519659947,83.5895365988611,,64.02069065022144,62.71929118933495,62.45096527618038,63.80481254861306,96.2804859397748,63.46884175403085,64.2051497539902,80.68922465608006,0.014723216390561669,-0.0069506463571609054,-0.5101922457803252,0.1050709939148073,0.25653589798216514,-0.031980286992169676,0.01303650661824397,-0.00590217969272655,-0.0049292098556299535,-0.09147617831630155,-0.0061227494776351366,0.009878359917439218,0.22703410338124635,0.3985706658101083,0.10121747032785997,-0.12090112640801001,0.22461550017840026,0.27462220941941357,0.23441521252060007,0.02467993402735869,0.39534505689015914,0.4211417255572364,0.3757782108392217,0.006716488664819073,-0.1318643948544156,-0.130624762307642,-0.18977626184330604,-0.29056603773584905,-0.19962031008010123,-0.24421711813197486,-0.1215778326214819,-0.23825168959467322,-0.12487793369595022,-0.038349173825852956,-0.15103573376640658,-0.20352465861578606,-0.2103041083560146,-0.16510296842601593,0.19293873250946172,-0.008519269776876268,-0.22686185592111266,-0.1256623305153582,-0.21677437972384583,-0.1701027647903517,-0.16947771883418916,-0.1487184963782704,-0.1415302175938997,-0.20572502571550308,-0.18228581251735568,-0.34173346712273456,-0.22320454380253185,0.13141426783479349,-0.24283112054233713,0.04828545082733889,-0.17743158449392038,0.29864388402079084,-0.3457256370091378,-0.3236191017209767,-0.34080360443157276,0.26493972953241457,0.07550332410494,0.193533866099964,0.4150362809229455,-0.10730837789661318,0.005750354382304979,0.22207285692091974,0.07713998686671894,-0.026926462654707783,0.18437696642095056,0.034248475236524266,0.16958735738320116,-0.07034940491206129,-0.28192113804295277,-0.20644884487830065,-0.2730587981458271,-0.01830065359477124,-0.12783171521035597,-0.1449001853844451,-0.2806365069372981,-0.23173992602520707,-0.2125273864521311,-0.17429751641822522,-0.20277634687107365,-0.27868139227387956,0.39869484151646967,0.35204554786526465,0.13603424959571542,0.19558823529411765,0.5441857899382171,-0.12332658688744261,0.40249587777287543,0.010380493603891122,0.37194945415577224,0.5175893202792314,0.354626773931207,0.13751650955617187,3.539529195983115,9.103740897861236,3.564033859430106,21.542308784144904,39.14566344723823,42.70732479003224,42.99532479003224,42.99532479003224,42.99532479003224,37.66143000503547,24.8175794444365,4.016948562709192,3.7577313472909344,5.069170650598839,12.843850560598966,4151.156443482948,4144.363588830405,371.4975025663007,38.0,29.0,34.0,39.0,39.0,41.0,40.0,39.0,38.0,270.06161218800025,20.0,4.59511985013459,5.41610040220442,6.293419278846481,7.130098510125578,8.00469951054955,8.846065190692881,9.71902370267014,10.562327926902078,11.434304246502023,0.8214285714285715,1.0748571428571425,1.161102936232351,0.8034635203444461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6739977972626178,1.0546218487394958,1.0661741754239933,0.690121943240964,5.0,1.0,0.0,1.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,9.83988354097968,11.323698910571437,0.0,0.0,5.907179729351506,4.794537184071822,0.0,13.171245143024459,0.0,5.156663257125445,31.18920547353706,5.687386274683562,11.760295063310071,275.1196506798763,-470.8645510587312,-42.5729143479671,-16.8165911092404,-39.2387125882276,182.89103658411022,313.01619357625225,12.743684807073357,11.179149770580437,19.563512098515766,0.5,0.8687692707174761,0.21084996365668834,117.4975112599653,0.24301167216147163,0.38884387646332547,0.13123072928252377,5.0,0.1,0.4034158980965061,0.7836691608789228,0.8699182570381689,0.9293509992314574,0.9293509992314574,0.9293509992314574,3.2541200000000012,,1.785714285714286,2.1134957836316377,1.8578771232215225,1.8868984339141763,-9.195566168632602,1.917699728753929,1.7180155866620463,-3.076617208505031,60.63720000000001,22.48887726406963,0.0,5.156663257125445,0.0,13.100035717134098,5.316788604006331,47.34946224772795,0.0,0.0,3.713572066704308,0.0,5.056245805348308,2.3978952727983707,6.569481420414296,4.59511985013459,8.153925132007862,6.555356891810665,9.774005094757891,23.000000000000004,5.410777588813303,3.446226956398313,0.0,4.72754261634763,0.0,0.0,0.06441380332997437,0.0,30.095999999999993,0.0,11.7445206207483,0.0,0.0,0.0,0.0,0.0,-0.48749196900982583,32.51088221450583,5.316788604006331,18.858631417708022,0.0,11.063842986476951,6.176298517443475,6.923737199690624,21.681687586340253,34.98540678243286,0.0,0.0,0.0,22.49697856964449,18.871938323353298,23.06072158645442,167.17907319772218,,127.85341137563084,125.21610913828762,124.70636453939008,127.41100420944568,195.73641683940141,126.73582037871918,128.22945576201596,162.3500126411617,23.06072158645442,167.17907319772218,,126.25566701472859,123.32508659503826,123.04405342913923,125.72272666331193,201.75653804818216,125.01998377930782,126.69228392131836,164.45506652066516,4.696558089414073,129.82528742516803,,100.56703271107918,98.54737175466158,97.67766176590955,100.32799498220044,145.56281240571874,99.70525876728955,100.80896773217624,125.20502208749278,1.213722188760759,8.798898589353799,,6.729126914506886,6.590321533594086,6.563492870494215,6.70584232681293,10.301916675757969,6.670306335722063,6.7489187243166295,8.544737507429563,2.358892940356818,83.5895365988611,,64.02069065022144,62.71929118933495,62.45096527618038,63.80481254861306,96.2804859397748,63.46884175403085,64.2051497539902,80.68922465608006,29.529411764705884,0.0,1.5641511920552325,0.0,37.050901041699206,0.0,0.0,29.85287691187181,0.0,2.4575245653817084,0.0,0.0,0.0,0.0,-4.395233082430503,0.0,0.0,19.32341441074699,397.9056107551436,54.30217529381476,105.48652233884917,117.09616281328597,125.09616281328597,125.09616281328597,125.09616281328597,376.0,111.00115861862773,60.10507650884286,65.81560153397629,55.13,55.13,1.0,7.54229630705762,5.321928094887363,4.146287250051607,4.299786005383512,,4.299280786511386,4.299610714745509,4.297597387097507,4.300100867132615,4.2589318573849155,4.299456318467339,4.2988701146294375,4.287935527328353,0.21822564473955827,0.22630452659913222,,0.22627793613217823,0.22629530077607943,0.22618933616302667,0.22632109827013763,0.22415430828341662,0.22628717465617573,0.22625632182260197,0.22568081722780803,2.0640671814453166,2.100419141443653,,2.100301635931733,2.100378373319159,2.0999100055279047,2.1004923660694903,2.0908722773106487,2.100342463312274,2.100206110303727,2.0976592742234645,169.39999999999984,86.92594291245702,93.65150208676667,,93.33638577264561,93.27524250061433,93.50191113012139,93.25539432641239,96.91547508044688,93.30966311502912,93.37802471105702,94.58338163208879,4.575049626971422,4.929026425619298,,4.912441356455032,4.909223289506017,4.92115321737481,4.908178648758547,5.100814477918257,4.911034900791006,4.914632879529317,4.978072717478358,5.106910411432935,5.181434354301366,,5.178063904845665,5.177408605122008,5.179835762152491,5.177195791027611,5.2156930938707795,5.177777559027382,5.178509922257966,5.191335676947402,41.77844365804683,11.7445206207483,5.903751521780022,-0.27300441704459555,-0.1500737486352559,4.165985922146636,-3.150441415763836,1.5641511920552325,0.0,211.55326201193927,126.00774028771804,-215.66099663865793,-19.498849759343244,-7.7021784513806395,-17.971749719888162,83.76604936031121,143.36476194461633,5.836743836763291,5.120170069450583,8.96029762153852,770.0,26.0,2.3219744005927625,0.5260688787399775,0.28867513459481287,0.013498731178900972,0.6254627916220945,0.07990845953844493,0.14433756729740643,0.004499577059633658,0.0,0.0,0.0,0.0,0.11785113019775792,0.026352313834736494,0.26922584527506843,0.06730624852988251,0.2847875176859688,0.052921156690229336,14.043605595440512,9.784354941403494,8.876028663351637,5.276010415200651,8.868703070091552,3.824890629036956,6.435343553546828,2.4654545117677795,4.984233231073195,1.4576692471100374,3.0968308604875214,0.7780189908484275,2.1356493186462675,0.4038322606943043,1.3796584503874116,0.20507183243315363,3.737496935342896,0.8878733579885738,5.014187105993144,0.8996149628545378,5.616199431372493,0.8047558343390444,59.93692703772279,35.76564642712918,29.81778244882831,28.90034462508934,28.90034462508934,28.90034462508934,98.0,112.0,31.51613699999998,15.541862999999996,0.4642857142857143,58.07,7.618055555555555,4.055555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,11.0,28.0,0.0,0.0,29.0,11.0,1.0,6.0,23.0,12.0,20.0,17.0,0.0,0.0,0.0,12.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,3.0,1.0,1.0,19.0,7.0,0.0,2.0,2.0,0.0,2.0,2.0,0.0,0.0,3.0,1.0,2.0,3.3141860046725258,6.037050177477259,3.907010463604602,4.402135587596595,4.880431691564408,5.133221590419151,5.261718214099707,5.418042958663758,5.576895624750347,5.752175734672774 +5282408,CN1CCC(=C2c3ccccc3CC(=O)c3sccc32)CC1,0,26.146341463414632,5.813134146341464,3.4390243902439024,6.059620596205963,156.74510512154467,103.42271134146341,1.748779248588561,5.932660975609756,3.19791562113152,7.395556609756098,236.43645035067374,26.454545454545453,6.073295454545455,4.159090909090909,5.946969696969697,140.81938910377494,100.86537525000007,2.060972315681819,6.257352272727274,2.595679012345679,7.524788909090905,284.04665890652603,22.11392405063291,5.978050632911394,3.8734177215189876,4.6497890295358655,149.35478506911167,82.6057136835443,1.8031694355543293,6.127082278481012,2.361384591342398,7.496002556962021,242.14181820101481,19.333333333333332,5.878847619047619,3.533333333333333,4.085714285714285,149.7163044292649,70.7693803142857,1.655672361811314,6.020173333333332,2.336654908877131,7.428720666666663,218.9510088948482,17.216666666666665,5.7280916666666695,3.075,3.475,151.66143087426195,62.49387500833333,1.5349008488031337,5.861487499999997,2.345679012345679,7.31650215,197.3839961736646,16.570247933884296,5.72809917355372,2.884297520661157,2.6914600550964183,153.36836936573616,59.87135250413221,1.4895151069357437,5.8518181818181825,2.307468625650445,7.324130016528925,188.99188876981478,15.732758620689655,5.735413793103449,2.603448275862069,1.9454022988505746,152.40666891369065,54.05671996551724,1.464401964609784,5.8674525862068965,2.183269476372925,7.36384179310345,175.0717563034043,10.644859813084112,5.657680373831778,2.102803738317757,1.2834890965732086,162.7282745981481,33.64338121495327,1.098617660376813,5.740716822429905,2.0920733817930084,7.3455063364486,125.49843141442358,9.090909090909092,5.636666666666668,1.7575757575757576,0.9191919191919191,169.7367945597367,29.206397681818185,0.9669038893170151,5.6835318181818195,2.1762065095398433,7.326203727272727,110.56276713152941,10.146341463414634,0.06366591314693631,0.007419074742706919,0.6067816775728733,3.2546764492035165,1.5127859170302436,46.46550234146342,0.3087167893747067,0.06563176680547286,0.9248214327972849,0.03598163712076144,55.383608958138055,0.8181818181818182,0.0032205059217997813,-0.0009311879615902855,0.2596263046887677,0.9742592492443776,-0.055873538949663626,3.7977480000000043,0.01602100616036811,0.004047390622464955,-0.0070689303564355314,0.0009088418149369784,2.470601881373918,0.34177215189873417,-0.006245536487473552,-0.001927641525163963,0.0378617308865278,0.020614278387303755,0.3688780400924199,1.7374114556962057,0.04188991689764277,-0.005259182674568351,-0.008011514580896922,-0.0035117763612677925,6.722244368753594,-0.09523809523809523,-0.006975227897226706,-0.00023729244195398069,0.018537718478230103,0.03728380373234623,0.08243950841198942,-0.5864265428571409,-0.003567374915850509,-0.006236877142290589,-0.08452861922834967,-0.001304059188124989,-0.7830118967230791,0.5166666666666667,0.006661180348998608,0.00047350578124804,-0.053123140987507436,0.2878935598299073,-0.0392861334610673,2.4405721499999995,-0.002165975561391272,0.007312664088836002,0.10946528918516124,0.002545576090620664,1.2806750169897414,0.8016528925619835,-0.00018949710178416137,0.00022509032513257343,-0.1111154812414885,-0.45073907098675897,0.009014747956239152,3.5954317768595048,0.020134929963289038,0.0004275357544948173,-0.014233663007741287,-9.747364565562275e-05,1.4058076697459496,-2.439655172413793,-0.0034972419947075792,0.00017751645157334134,-0.14988512584873542,-0.6446166417088895,-0.5227217885106631,-11.40732430172414,-0.09342485548407635,-0.006065009025826159,-0.0339378070602187,-0.002046439475681552,-17.179481112528098,-1.8037383177570094,-0.004609861175201672,-0.0005769406435446628,-0.019364308072075506,-0.2576904045767149,-0.35382147528168584,-8.230689822429909,-0.06279168793796566,-0.0054345249545497375,-0.08324044920159453,-0.00312384546359254,-8.398731419764353,1.2121212121212122,-0.0008951444847042666,0.00029470143428185865,1.8026787806622238e-05,-0.22601585956731693,0.4804934279585307,5.644206287878784,0.0784175776804869,-0.0011077091558055131,-0.0923478461833791,0.0006497039731040367,10.11399946721937,,,0.503030303030303,1.1818181818181819,0.5681818181818182,0.0,0.6136363636363636,-0.045454545454545456,0.9225263569382677,0.00804682360705518,0.023683187243418814,0.7534760924025478,0.21899123843932244,0.2690625544251267,1.6760024493408154,0.48805379286444917,2.087129185091405,1.8167278830666425,0.09600506039702764,0.08146622513154683,0.0,0.2704013020247624,7.539481347024404,1072.0,238.3385,141.0,248.44444444444446,6426.549309983331,4240.331165,71.699949192131,243.2391,131.11454046639233,303.217821,9693.894464377623,1164.0,267.225,183.0,261.6666666666667,6196.053120566097,4438.076511000003,90.68278189000003,275.3235,114.20987654320989,331.0907119999998,12498.052991887145,1747.0,472.26600000000013,306.0,367.33333333333337,11799.028020459822,6525.8513809999995,142.45038540879202,484.0395,186.54938271604942,592.1842019999997,19129.20363788017,2030.0,617.279,371.0,429.0,15720.211965072816,7430.784932999999,173.84559799018797,632.1181999999999,245.3487654320988,780.0156699999997,22989.85593395906,2066.0,687.3710000000003,369.0,417.0,18199.371704911435,7499.265001,184.18810185637605,703.3784999999997,281.4814814814815,877.9802579999999,23686.079540839753,2005.0,693.1000000000001,349.0,325.66666666666663,18557.572693254075,7244.433652999997,180.231327939225,708.07,279.2037037037038,886.2197319999999,22868.018541147587,1825.0,665.3080000000001,302.0,225.66666666666666,17679.173593988115,6270.579516,169.87062789473492,680.6245,253.25925925925927,854.2056480000002,20308.323731194898,1139.0,605.3718000000002,225.0,137.33333333333331,17411.925382001846,3599.84179,117.55208966031898,614.2566999999999,223.8518518518519,785.9691780000002,13428.332161343324,600.0,372.02000000000004,116.0,60.666666666666664,11202.628440942623,1927.6222470000002,63.815656694923,375.1131000000001,143.62962962962965,483.529446,7297.142630680941,416.0,2.6103024390243887,0.30418206445098367,24.878048780487806,133.44173441734418,62.02422259823999,1905.0855960000001,12.657388364362975,2.6909024390243874,37.91767874468868,1.475247121951219,2270.7279672836603,36.0,0.14170226055919038,-0.04097227030997256,11.423557406305779,42.86740696675261,-2.4584357137851995,167.1009120000002,0.7049242710561967,0.17808518738845802,-0.31103293568316337,0.03998903985722705,108.7064827804524,27.0,-0.4933973825104106,-0.15228368048795307,2.9910767400356963,1.6285279925969967,29.141365167301174,137.25550500000026,3.309303434913779,-0.41547543129089975,-0.6329096518908568,-0.2774303325401556,531.0573051315339,-10.0,-0.7323989292088041,-0.02491570640516797,1.9464604402141608,3.914799391896354,8.65614838325889,-61.574786999999795,-0.37457436616430345,-0.6548720999405119,-8.875505018976716,-0.13692621475312386,-82.21624915592331,62.0,0.7993416418798329,0.0568206937497648,-6.374776918500892,34.54722717958887,-4.714336015328076,292.8686579999999,-0.25991706736695264,0.8775196906603202,13.135834702219348,0.3054691308744797,153.68100203876898,97.0,-0.022929149315883527,0.027235929341041385,-13.444973230220109,-54.53942758939784,1.0907845027049374,435.0472450000001,2.436326525557974,0.05173182629387289,-1.7222732239366958,-0.011794311124330353,170.10272803925992,-283.0,-0.4056800713860792,0.020591908382507594,-17.386674598453308,-74.77553043823119,-60.63572746723692,-1323.2496190000002,-10.837283236152857,-0.7035410469958344,-3.936785618985369,-0.23738697917906001,-1992.8198090532594,-193.0,-0.49325514574657886,-0.06173264885927892,-2.071980963712079,-27.57287328970849,-37.858897855140384,-880.6838110000002,-6.718710609362326,-0.5814941701368219,-8.906728064570615,-0.33425146460440175,-898.6642619147857,80.0,-0.059079535990481595,0.01945029466260267,0.0011897679952370677,-14.917046731442918,31.712566245263027,372.51761499999975,5.175560126912136,-0.07310880428316387,-6.094957848103021,0.04288046222486642,667.5239648364784,0.6865492512616174,0.6172655581102684,0.4294873377207154,0.348673791565551,0.271591458893698,0.19773459221143933,0.16846638943802852,0.11225755226254915,0.10524003352591732,0.061097057031857846,0.06730918445943943,0.03442074344242502,0.041963508401600846,0.019700689189328196,0.02709672698351855,0.011256010968520384,16.004503031450184,5.67529111813199,3.543236306519736,2.174821566570177,0.3819428725369383,-0.38081111780287735,3.281461370282005,0.9780003791272708,6.021919630126364,0.650328220363509,14.543899830844715,10.311393454087037,32.06224582760617,11.686306985521274,2.936392386553821,0.7527989511773271,3.488325870191324,2.22504625062179,7.008268996227992,0.6099910281489211,3.7014222529933893,2.4211572500859337,24.44071879613777,14.702717121699928,0.25041289570840286,0.5833939895276917,0.7709314902577619,0.8208505188425833,0.8294501010078946,0.8294501010078946,1.6089693280279362,761.2473019729697,0.0,1.0,2.0,0.0,7.0,3.0,5.0,0.0,0.0,3.9371035490452746,2.048293154067352,0.9845006823561047,0.7013387195649639,0.6525582317600858,0.6525582317600858,107.67909778872513,598.4827771594719,39.227908202601235,14.597140906328582,29.230245773050754,,9.0,352.0,0.0,4.794537184071822,5.783244946364939,6.4208216229260096,30.80830325137847,27.83656353522952,11.336785877934737,6.06636706846161,41.59311275784002,0.0,11.066666666666666,26.0,12.5,0.0,13.5,0.0030303030303030195,0.0,-1.0,0.10292682926829255,0.0565117349286699,-0.04641509433962265,0.0,0.0565742574257424,0.0,0.5495934959349595,0.7651515151515149,0.446666666666667,0.49308176100628964,0.7651515151515149,20.29557985264189,0.17703011935521396,0.5210301193552139,16.57647403285605,4.817807245665094,5.919376197352788,36.87205388549794,10.737183443017882,0.6574257425742576,0.0753012048192771,0.0,0.35240963855421686,0.3157894736842105,0.3929146530449174,-0.4677120058264791,-0.04749958157538651,-0.011407609898206807,-0.029232000364154943,0.6070853469550828,0.7226533882913397,0.030523623419140066,0.01762569239734975,0.028906135531653582,-5.060523436407084,0.7451923076923077,0.6428896278638013,1.0697745565589263,0.6212121212121212,0.5809670629938704,1.0494775899441353,0.747290489580329,0.8574217942489376,0.6489374149738341,0.5245067465209764,0.6058220751145615,0.8839651673600404,0.8897273612463485,1.013171311019522,1.500295511705647,1.170265574584264,1.0569466009933264,0.8131055163571643,0.8852375393826954,0.8034471905815346,0.9839247723080519,0.5810459774513916,0.9428643879296702,0.8138957650881794,0.8653846153846153,1.0260369168821977,0.9518268430264818,1.1790849673202615,1.0345557231828555,0.9198852280808804,0.8754804337935902,0.9229184067953597,1.0081730198582828,1.0090618803309777,0.9495032928092145,0.9644804179511661,0.8497596153846154,0.6583464458530799,0.5856428012004746,1.1723856209150327,0.879562686163011,0.9596585140758584,0.853453326321477,0.9605991416699802,0.6879414528326399,0.7263482089298284,0.6782706561120947,0.962196374067216,0.7791640178003814,0.8722082310041466,0.729376749822266,1.1759844433641224,1.1091533457311464,0.9260653916697844,0.791046369237077,0.8537302890133109,0.8804014392376921,0.9922935765606663,0.8699494438095754,0.9513618624357243,1.446037798408488,0.9174257300179758,0.9169913638886709,1.0326233941852603,1.0544588083699824,1.3372553399377745,1.427721990108562,1.430115978546794,0.9767521815243275,0.935249496342358,0.9409142467241881,1.3055831615674074,1.3304277498202732,1.3355275576513077,1.3352818183822937,0.818948140003665,1.0581739638771002,1.2332208154688973,1.318239023471644,1.256253246830015,1.3087990170935362,1.3634952700296403,1.3950284973129974,1.1382567303578097,0.7488344988344988,1.5135712738924776,1.3843786681204777,0.8770053475935828,1.1584016443886467,0.6694272372304905,0.7662356751548227,0.6004255404365214,1.4385621146613476,1.5452557064800365,1.4998972429666304,0.7779294079913446,3.5,0.0,2.666666666666668,1.5555555555555556,1.7044444444444447,0.6258333333333334,0.4745124716553287,0.28121456916099774,0.14463655832703448,0.015625,4351.573503146417,4890.335293888839,2122.151185215514,1934.9950514865313,9.78378476836774,0.3979899403888661,5.889936851627567,0.6611018105676608,1.0,0.3157894736842105,1.4204484555728094,3.309258850550732,4.373051322261979,4.65621328505312,4.704993772857998,4.704993772857998,0.14,0.0,0.07407407407407411,0.03888888888888889,0.042611111111111113,0.016914414414414415,0.016946873987690313,0.018747637944066513,0.01807956979087931,0.0078125,0.3740750702111247,15.5232,6.481481481481482,2.9219530949634756,134.63343005654642,1.0,4.053091581696925,86.1713285567403,,68.29198133637725,69.41434482197995,69.3269905156623,68.29412012209026,75.51405719066001,69.5673926370093,69.63625959942067,73.72526741800522,0.08063811188811189,0.050584461332818506,-0.12551268101263702,0.4278743315508024,0.2993413521896464,-0.03693420088107986,0.08173263622743814,0.051895480620986,0.06166816496744765,-0.0076435624281049695,0.02525848982042498,0.044608900139413696,0.03368427458617332,-0.0980985927753727,-0.25982236222365446,0.062397617274758066,0.006333741220989409,0.24384021290769678,0.03739142736321671,0.13569043971495393,-0.08013166383522988,-0.008662769153894594,-0.09759912672904741,0.12137606225398985,-0.009386446886446886,-0.1095598500429639,-0.03198410181636778,0.030550887021475293,0.01145545626861629,0.05449515855741622,-0.01262068660202225,-0.011555493703714923,-0.0950283292049135,-0.09139993541529204,-0.03624235283537295,-0.014137971711358176,0.050921474358974365,0.10462710765845903,0.06382275387015134,-0.08754901960784314,0.08845535472515571,-0.02596939396302028,0.052524389644275055,-0.0070160601429496835,0.11141958299721132,0.11836370276807301,0.0707465333519209,0.02312371911259422,0.07900905912269549,-0.002976429496060408,0.03033940658892016,-0.18312267055582565,-0.13848967109989188,0.005959037465086958,0.07737851945379974,0.0652213635807483,0.00651415884874771,-0.01539071490232344,-0.0027089830662368713,0.025383099732784395,-0.24044678381962867,-0.054931152666203,0.023927033724500908,-0.24701656524678847,-0.19805859407826543,-0.3455358637505169,-0.24550093568115441,-0.30262317664453753,-0.09240965649762782,-0.03669660526526493,-0.0568745515612116,-0.310190712301058,-0.17777228612508988,-0.07240705343473902,-0.07776450077036973,-0.03191313908741071,-0.07917542913974653,-0.2338873407654893,-0.1771354963935312,-0.20339576627869083,-0.08280327071884597,-0.0900070502797704,-0.08681776910562188,-0.1516465174039592,0.11946386946386946,-0.014060027422183327,0.03972212769140186,2.970885323816861e-05,-0.06944341875292319,0.3176215633351409,0.12147089783730124,0.2540113799424985,-0.016877637304640473,-0.0998547859169492,0.01805654286722704,0.1826171977139316,14.50100844431116,25.738345660748294,10.818474386934481,14.805784130343252,32.90453624876009,37.83178787308729,38.65394683889784,38.70311757060516,38.70311757060516,45.91684207201091,39.96801342746613,2.112111328734608,1.7922569528940302,0.0,5.948828644544774,3275.7792127281223,2262.540786847738,1469.1454114922828,143.0,36.0,51.0,72.0,95.0,112.0,130.0,146.0,153.0,309.11873522800056,25.0,4.812184355372417,5.6937321388027,6.5998704992128365,7.503840746698951,8.418256443556213,9.330520532232288,10.248246785526897,11.164176172769997,12.083390755054971,0.6666666666666666,0.9591219512195123,1.106473741222941,0.6283406877029389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.718578457718709,0.9498804399808704,0.9879292274350274,0.6538336965641182,6.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,4.899909730850478,0.0,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,11.336785877934737,29.838572803915707,48.03575258091999,25.073785926448156,4.877147193701299,197.54661375656372,-235.15265274097248,-23.881475079522104,-5.735430554657865,-14.69704079631078,305.22571154528885,363.3301244184994,15.346433123079132,8.861710351670716,14.533204976739972,0.4444444444444444,0.9089515001690043,0.2568381661301416,32.40060292564031,0.14894163581775965,38.85906722290973,0.09104849983099582,5.0,0.0,0.265130129273298,0.6176811438691082,0.816240573771848,0.8690934368979664,0.8781984325681588,0.8781984325681588,4.014400000000004,,1.0178571428571428,0.44679187422285627,0.3114832760661568,1.0171244600138196,-1.1763381514864872,0.4315330477356183,0.46011389749064446,-0.5607402311299865,91.54850000000005,4.794537184071822,0.0,4.899909730850478,0.0,19.26246486877803,20.13718479450234,62.85250431163551,0.0,0.0,3.9318256327243257,0.0,5.272999558563747,2.3978952727983707,6.812345094177479,4.727387818712341,8.443115988019922,6.880384082186005,10.12426831466115,27.333333333333332,12.639519557823128,0.0,0.0,0.0,1.5915853856974886,0.0,4.557418745275889,0.0,39.324000000000005,0.0,12.58934697026959,0.0,0.0,0.0,0.0,0.0,3.1172939762324687,45.365423390140585,0.0,0.0,0.0,30.82033947171776,6.4208216229260096,0.0,39.20368209871613,41.28500264284323,0.0,5.573104530069267,0.0,25.761968195820497,29.46171676646707,29.30596282278557,172.34265711348075,,136.93015483366074,138.79959604090953,138.67604882919613,136.93544894896402,151.52873332757767,139.0955549969517,139.23069066270583,147.60346398995497,29.30596282278557,172.34265711348067,,136.12736100408603,138.43403905290904,138.421198876051,136.13309762592084,152.26234331988036,138.7419164010634,138.84127317936796,148.01127506714045,4.918238050341531,118.67405420704462,,94.99693593108512,95.77762419607686,95.60313742173668,94.99993000116108,104.13203760887014,95.99001008040705,96.11922006976313,101.51833385827217,1.332089219217526,7.833757141521852,,6.224097946984579,6.30907254731407,6.30345676496346,6.224338588589274,6.887669696708076,6.322525227134168,6.32866775739572,6.709248363179771,2.511471515765788,86.1713285567403,,68.29198133637725,69.41434482197995,69.3269905156623,68.29412012209026,75.51405719066001,69.5673926370093,69.63625959942067,73.72526741800522,38.94509803921569,0.0,2.1825714915595866,0.0,0.0,0.0,0.0,40.505098324836126,4.94096552973041,0.0,0.0,0.0,0.0,2.3812983434114385,0.0,0.0,0.0,26.807181559128846,456.9956593265775,58.238386678485185,135.67961287258,179.29510421274114,190.90474468717792,192.90474468717792,192.90474468717792,985.0,122.85421842922727,45.776665975275094,70.59022176184334,48.55,20.310000000000002,0.8,8.697457946943915,5.643856189774724,4.182891012128355,4.621155024495613,,4.621919306674716,4.62410075328982,4.6254246218030435,4.621901160129011,4.589392956144969,4.623124145348599,4.622304911960005,4.600905811363269,0.19013140964219796,0.21005250111343698,,0.2100872412124871,0.21018639787681,0.21024657371832015,0.21008641636950048,0.20860877073386222,0.2101420066067545,0.21010476872545478,0.20913208233469405,2.2194599975311196,2.3191020395138806,,2.3192674135341385,2.3197392807032413,2.3200255372339447,2.3192634873337608,2.3122051221272626,2.319528058859811,2.319350839741983,2.3147105599877587,237.2299999999998,154.7642506194938,126.45418144156224,,125.75050698105271,125.7974022609399,125.75668929883466,125.75178785844655,128.18121164775738,125.86486196254126,125.90967396806035,127.40934305493148,7.034738664522445,5.7479173382528295,,5.7159321355023955,5.718063739133632,5.71621314994703,5.715990357202116,5.826418711261699,5.7211300892064205,5.723166998548198,5.7913337752241585,5.830360355698788,5.6283374008778555,,5.622757200994463,5.6231300546633465,5.622806363148665,5.62276738680525,5.641902339100913,5.6236661676433775,5.6240221369698755,5.63586243719429,0.0,15.91289351851852,2.0615192743764172,6.467670540438399,0.26479397623246825,10.57800028344671,2.729820405013857,2.2111451247165532,2.1825714915595866,285.79514179939554,99.32097035389447,-118.22824601947778,-12.00694475736957,-2.8836157565726284,-7.389265376217361,153.45904073553737,182.6723315061003,7.715761866379866,4.455422719660983,7.306893260244011,917.0,40.0,1.377070129898636,0.882768330236003,0.0,0.0,0.3660993800453288,0.18518552202210953,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.10206207261596575,0.30274943015462097,0.1857415498312383,0.4986781177153,0.2618961161537897,15.104083527755582,13.579842278425906,10.737183443017885,8.716844789138776,9.777292520173129,7.118445319611816,8.591785861339455,5.725135165390006,7.577282413866047,4.398988106293765,6.394372523646745,3.2699706270303763,4.699912940979295,2.206477189204758,3.5225745078574113,1.4632814259076499,3.523242567902978,2.0904496950309674,6.1764068882537035,3.1206245044833585,10.427822812774835,4.616988958402435,72.4415902766126,39.98030270204223,27.75098147036787,25.734436158993276,25.57065313437776,25.57065313437776,122.0,148.0,49.20106699999998,24.098932999999995,0.4878048780487805,163.03,5.888888888888888,4.749999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,11.0,11.0,41.0,0.0,1.0,44.0,11.0,2.0,7.0,37.0,13.0,25.0,31.0,0.0,0.0,0.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,3.0,0.0,2.0,22.0,3.0,0.0,1.0,1.0,0.0,4.0,0.0,1.0,0.0,0.0,1.0,2.0,3.5115454388310208,7.413697121478808,4.1067670822206574,4.71961432037896,5.340837917703873,5.821750678353109,6.184535414165899,6.566276781924687,6.925963498630805,7.207281000215152 +3647,NS(=O)(=O)c1cc2c(cc1C(F)(F)F)NCNS2(=O)=O,0,51.92857142857143,8.154710714285715,4.285714285714286,15.531746031746033,178.3765318026497,211.1859572660469,1.779345222814,8.094042857142858,15.986916397217323,9.413261071428574,248.46418884086742,52.41379310344828,7.168365517241381,5.0344827586206895,8.206896551724139,154.10141616988966,207.72493229329655,2.089004704827586,7.336472413793103,3.272403150276713,8.689047448275861,302.10194360820856,40.98039215686274,7.879115686274509,4.1568627450980395,13.366013071895424,167.06675260661356,162.30328468539037,1.7487452799940773,7.900998039215687,10.726609779714355,9.168483019607844,262.5220546660927,32.953125,7.032575000000001,3.875,8.026041666666668,158.72823814783305,126.597159312675,1.6438851086780621,7.128714062499999,5.35328655478395,8.535972375,238.35361679481966,35.594202898550726,7.446907246376811,3.246376811594203,8.025764895330113,167.27738707112442,137.6262071603479,1.4058890689956232,7.496584057971015,6.037105375638653,8.928861753623186,212.61300817747212,38.28125,8.142225,2.6875,10.140625000000002,182.29531870690536,150.84021900465004,1.1418380094209843,8.085590624999996,11.109700520833337,9.500278999999999,185.18248545624806,36.38297872340426,8.291676595744681,2.404255319148936,8.964539007092197,186.40798674467803,140.46331972578724,1.0292866553881914,8.226987234042552,10.55358550039401,9.715228212765956,172.88914905987036,27.34285714285714,9.186171428571427,1.542857142857143,10.457142857142857,205.06707930260458,102.28580957718857,0.7120687886857144,8.96888,15.625661375661378,10.4274184,135.24713186475643,5.933333333333334,6.781866666666668,1.1333333333333333,0.0,192.84692861474642,11.89837888512,0.5817178590930666,6.699733333333335,4.466666666666667,8.4436992,71.88970410703504,15.928571428571429,0.39649630102040806,0.032424359728156084,1.0969387755102045,6.2437641723356005,3.8225472781057115,71.1996976610765,0.4176776103875509,0.337817857142857,7.186197697957783,0.2375546224489796,40.64069887886632,2.7586206896551726,-0.06152290200562973,-0.021624678399719485,-0.027973258268824873,-0.7207756665884746,-0.2672727469633133,11.578397342531991,-0.03931337829071343,-0.04233706896551722,-1.4906455759808543,-0.01241161998592538,5.7367153642652,-1.4901960784313726,0.15402127601040413,0.007927323667881568,0.027711084433773445,2.256858298875106,1.4732834682172529,-5.365524152015038,0.05107878500298124,0.12402205882352936,2.914796394809639,0.08249689715886356,2.75502310558084,-2.578125,-0.041237372448979466,-0.0020623885775736955,-0.05117984693877553,-0.2891510770975054,-0.5060575053021894,-10.810059777251036,-0.03365480482580989,-0.03526328125000001,-0.4892929016063733,-0.03947696173469381,-2.1119961989065423,-0.6666666666666666,-0.10788382690032532,-0.006015120542732202,-0.16422656018929316,-1.178086693614644,-1.2603722015519419,-3.3374348688788107,-0.07504692512570417,-0.08850471014492751,-2.083582539426429,-0.0678305054717539,-9.720595599967048,3.5,0.07047138871173458,0.003660631213246093,-0.09470663265306122,0.2698767006802721,0.07027749854936063,15.52758899413037,-0.024808059656852385,0.06522578124999998,0.6502631518946316,0.04808212755102038,-1.5756088354715838,-1.9148936170212767,-0.05717745603560579,0.006021250457150583,-0.25803300043421623,-0.8329232402180731,-0.9828924816580187,-9.024108090965585,-0.08861463584931095,-0.04653670212765959,-0.7602526187177869,-0.02238883977420761,-4.944689678130534,-7.285714285714286,-0.060617423469387956,-0.0053206614606479555,0.1908163265306123,-1.9655328798185947,0.9694073008459465,-33.700539355056264,0.0732195960496978,-0.07242357142857143,-0.230151359669381,-0.03593340408163272,-7.175710345086313,0.3333333333333333,-0.17403225340136033,-0.003466803814408096,0.5125850340136056,-1.8866213151927431,0.37482568432400193,0.29907288559331796,0.1472798634574964,-0.1522949999999999,-2.9500308598233533,-0.09986840816326524,13.453205295784006,,,0.45285714285714296,1.25,0.6,0.0,0.65,-0.05,0.7432276774172765,0.04933633245047009,0.057936332450470085,1.1373426578064068,0.24043720855343173,0.20593713711475298,1.8805703352236833,0.4463743456681847,1.962261386496786,0.8587468863659323,0.28661306092246475,0.3438683338950589,0.25416477141827143,1.103514500130854,11.821101157000006,1454.0,228.33190000000002,120.0,434.8888888888889,4994.542890474192,5913.206803449313,49.821666238792005,226.63320000000002,447.633659122085,263.57131000000004,6956.997287544288,1520.0,207.88260000000005,146.0,238.0,4468.9410689268,6024.0230365055995,60.58113644,212.7577,94.89969135802468,251.98237599999996,8760.956364638048,2090.0,401.83489999999995,212.0,681.6666666666666,8520.404382937291,8277.467518954909,89.18600927969794,402.95090000000005,547.0570987654321,467.59263400000003,13388.624787970726,2109.0,450.0848000000001,248.0,513.6666666666667,10158.607241461315,8102.2181960112,105.20864695539598,456.23769999999996,342.6103395061728,546.302232,15254.631474868458,2456.0,513.8366,224.0,553.7777777777778,11542.139707907585,9496.208294064005,97.006345760698,517.2643,416.5602709190671,616.0914609999999,14670.297564245577,2450.0,521.1024,172.0,649.0000000000001,11666.900397241943,9653.774016297602,73.077632602943,517.4777999999998,711.0208333333336,608.0178559999999,11851.679069199876,1710.0,389.7088,113.0,421.3333333333333,8761.175376999867,6601.7760271120005,48.376472803244994,386.6683999999999,496.01851851851853,456.61572599999994,8125.790005813908,957.0,321.51599999999996,54.0,366.0,7177.34777559116,3580.0033352016003,24.922407604000007,313.9108,546.8981481481483,364.959644,4733.649615266475,89.0,101.72800000000001,17.0,0.0,2892.703929221196,178.4756832768,8.725767886396,100.49600000000002,67.0,126.65548799999999,1078.3455616055257,446.0,11.101896428571425,0.9078820723883703,30.714285714285722,174.8253968253968,107.03132378695992,1993.591534510142,11.694973090851425,9.458899999999996,201.21353554281794,6.651529428571429,1137.9395686082569,80.0,-1.7841641581632621,-0.627115673591865,-0.8112244897959213,-20.902494331065764,-7.750909661936086,335.7735229334277,-1.1400879704306894,-1.2277749999999994,-43.228721703444776,-0.359936979591836,166.36474556369078,-76.0,7.85508507653061,0.40429350706196,1.4132653061224456,115.09977324263039,75.13745687907989,-273.64173175276693,2.6050180351520433,6.325124999999997,148.6546161352916,4.207341755102042,140.50617838462284,-165.0,-2.639191836734686,-0.13199286896471651,-3.275510204081634,-18.505668934240347,-32.38768033934012,-691.8438257440663,-2.153907508851833,-2.2568500000000005,-31.31474570280789,-2.526525551020404,-135.1677567300187,-46.0,-7.443984056122447,-0.4150433174485219,-11.331632653061227,-81.28798185941044,-86.96568190708399,-230.28300595263795,-5.178237833673588,-6.106824999999999,-143.76719522042362,-4.680304877551019,-670.7210963977263,224.0,4.510168877551013,0.23428039764774994,-6.061224489795918,17.272108843537413,4.497759907159081,993.7656956243437,-1.5877158180385527,4.174449999999998,41.61684172125642,3.077256163265304,-100.83896547018136,-90.0,-2.687340433673472,0.2829987714860774,-12.127551020408163,-39.147392290249435,-46.19594663792688,-424.1330802753825,-4.164887884917615,-2.1872250000000006,-35.73187307973598,-1.0522754693877576,-232.40041487213512,-255.0,-2.1216098214285783,-0.18622315112267845,6.678571428571431,-68.79365079365081,33.92925552960813,-1179.5188774269693,2.562685861739423,-2.534825,-8.055297588428335,-1.2576691428571452,-251.14986207802096,5.0,-2.610483801020405,-0.052002057216121444,7.688775510204083,-28.299319727891145,5.6223852648600285,4.48609328389977,2.2091979518624463,-2.2844249999999984,-44.2504628973503,-1.4980261224489786,201.79807943676008,0.7672467491345623,0.5577766956210868,0.42511842444589026,0.3796656246358844,0.3046806834692653,0.20439551671098236,0.1644837409206011,0.11990819034836749,0.10149277546125071,0.06725619498382052,0.06510650595763172,0.03944837416186967,0.042585250220543755,0.023366051616584445,0.028045176366660998,0.012437865312531798,16.014398410596982,5.693323154226835,4.124530320418075,2.1747428788745444,0.5111029927200614,-0.3673634195987969,4.045703891563161,0.9675392930105771,7.014090112770341,0.6418805245763807,17.430697787901252,10.31915518033257,32.0676791163134,11.705122578373077,2.957080119735298,0.5269691970192942,4.007152902119801,2.2302140516857816,8.00739446706181,0.29867025137695885,4.0306196871777935,2.4312371018277976,24.443130459328966,13.302785337334331,0.4635060524818846,0.7174119705140579,0.8003090006357455,0.8417575156965891,0.8417575156965891,0.8417575156965891,2.296468415592739,770.8922156146342,0.0,0.0,1.0,0.0,5.0,0.0,1.0,0.0,0.0,2.411063393011676,1.0983888393629808,0.669817410791552,0.45553169650583847,0.45553169650583847,0.45553169650583847,-153.80783453056472,965.0445707861634,71.99796137786976,34.46587752807726,73.82473111129856,,7.0,244.0,41.57729926699119,30.006839111682332,12.356077463582704,12.13273413692322,0.0,0.0,0.0,4.722094864452088,5.316788604006331,5.138973737607942,9.057142857142859,25.0,12.0,0.0,13.0,0.0,0.04714285714285706,-1.0,0.4385995777621391,0.10174069627851134,-0.33685888148362775,0.13452380952380938,0.3049677419354837,0.0,0.876530612244898,1.107142857142857,0.43793103448275894,0.7747899159663867,0.9726190476190476,14.86455354834553,0.9867266490094018,1.1587266490094017,22.746853156128136,4.808744171068635,4.118742742295059,37.611406704473666,8.927486913363694,0.40903225806451626,0.2860147213459516,0.23922187171398526,0.2208201892744479,0.25,0.6719413803401688,-1.4498087142687701,-0.12531801619980354,-0.051778882652456074,-0.12081739285573086,0.3280586196598312,0.7078329441967462,0.03565465334947153,0.025279748007026644,0.04423955901229664,-2.8209603647186396,0.9310344827586207,0.7269927554981369,1.8267045343316135,1.3640737770649556,0.7124349573896546,1.0889845113180376,0.8887626789077875,1.4560470775672454,0.6668990088152704,0.8447323545808301,0.6304912706790822,0.8586497079956222,0.916974413083619,0.41886961283982305,0.6627102840701156,0.9738714090287276,0.40611948429271844,0.6422258939646898,0.8853326709630288,0.8760914068271616,0.420363206018857,0.42702789568015803,0.47367589819823847,0.8181550046967221,1.0797540639013452,0.7874680797778757,0.9212814543804924,1.0507630813953486,0.8133561546667878,0.9448257970325852,1.055603256977356,1.0897601019180112,0.7858023428992803,0.7965786544876825,0.8827052978830474,1.0915069705543818,0.972558003509456,1.136907992595356,1.1193095776572421,1.1275025278058641,1.0731203764378934,1.2372941358234733,0.9724759052481985,1.14971394085548,1.1250046540019596,1.1771500723000157,1.167670186548923,1.2129503796917103,0.7600371356502242,0.9571829607779364,0.8770661003934446,1.043895348837209,1.0455521098147815,1.0202797908355878,0.7730654482589013,0.9733613478620765,0.9457186981308611,1.0164107815300956,0.9191649929019546,0.9776103540501888,1.2494036828546895,1.364389953995989,0.9899250691485548,1.2718456209797127,1.3076268501597583,1.3501655517318436,1.2588314131941238,1.25663747297594,1.35892077775226,1.3150987390078557,1.2819324481417276,1.05478427841265,1.2920563741191542,1.6535699981759868,1.1626312022542569,0.46465116279069757,1.647848193208644,0.9123908764513639,1.3480796398803807,0.5079725561996679,1.7200453692138773,1.482707607826927,1.6178276463419603,0.9105453018787317,1.0291479820627802,1.5632842651400292,0.7595262422293825,0.05860465116279068,1.6319139277283459,0.4756275984667145,1.1060278452917571,0.1921958400368974,1.6471915338992904,1.3843502090878224,1.5196365450300513,0.9208147736015604,8.5,0.0,4.000000000000002,2.5,2.4088888888888893,1.4444444444444442,0.5322448979591837,0.16666666666666666,0.0,0.0,5649.028640317769,5912.745891270084,2675.6706852945968,2584.739485427448,8.66910624412698,0.4227494580594875,5.00424627756218,0.7323500410036049,1.0,0.25,2.3962915290459277,3.708966082694623,4.137537511266052,4.351823225551765,4.351823225551765,4.351823225551765,0.40476190476190466,0.0,0.11428571428571432,0.07142857142857141,0.07084967320261439,0.04659498207885304,0.02419294990723562,0.013888888888888888,0.0,0.0,0.7460026845537824,16.3718820861678,5.0253061224489795,3.276621058893516,111.61322925259863,1.0,3.9318414138418243,72.33137754468015,,42.1490456409454,53.803710382987084,55.118821543494604,41.908356716396945,70.46947030511419,53.72671834873134,53.1098510202831,63.39778277480242,0.1731869491263337,-0.15516639587127723,-0.6669269210254115,-0.025501202886928715,-0.1154392841712429,-0.06992006311973259,0.16261863073699087,-0.0941237387712396,-0.12532513622455918,-0.2074317516208154,-0.05224743622318301,0.14115690730034086,-0.09355491075353908,0.38845577024053124,0.24448666787390042,0.025262197902416714,0.36145796615359427,0.38541929269409797,-0.07535880527970648,0.12229237031783131,0.36712700705777873,0.4056103821966912,0.3472754868265369,0.06778975710512418,-0.16185538116591927,-0.10400443167528299,-0.0636061465782097,-0.046656976744186056,-0.046310377701107644,-0.13238750719990297,-0.1518273269741802,-0.08057603277940269,-0.10438548615589557,-0.0680878709676222,-0.16618056650601443,-0.051967516730004056,-0.041853512705530636,-0.2720928962582489,-0.18551239232363004,-0.1497135153353556,-0.18868212525297187,-0.3297205004555307,-0.04687428428089129,-0.17967667708132667,-0.26198943683282105,-0.2899422792137425,-0.28553645798377203,-0.23918377065660848,0.21973094170403587,0.17773529924584933,0.11289756355828177,-0.08633720930232555,0.04322339749409842,0.01838499132551923,0.21808504114785032,-0.059395234601715204,0.19307973178699425,0.09048779051534127,0.20240451250889524,-0.03876923573996215,-0.12021753649460931,-0.14420678298500145,0.18570144507501124,-0.23523008411677382,-0.13340081675546406,-0.2571302354552165,-0.12674362936092762,-0.21216036877602323,-0.13775678562776528,-0.10579344608538116,-0.09424712322327525,-0.12166842142328009,-0.45739910313901344,-0.15288269603874038,-0.1640945728845864,0.17395348837209304,-0.31479934628654455,0.2536024358412495,-0.47332419184526536,0.17530170214716434,-0.21438645085580785,-0.03202686167885233,-0.15126375446282994,-0.17656463946336745,0.020926756352765318,-0.4389252887189047,-0.106919730828105,0.4672868217054263,-0.30216088614490644,0.09805652018246568,0.004200479712947086,0.3526161321427781,-0.4508198627747412,-0.41051345702077063,-0.4204018727722897,0.3310279022484981,0.9085602964160698,6.3910587572155535,3.3019272488946267,33.25518577157189,44.64510395881487,48.86746110167201,51.22503253024344,51.22503253024344,51.22503253024344,39.24522772993572,17.174937727318646,5.7322612184492945,6.877366677901178,5.083295428365429,22.070290002617078,3214.6602552384948,2503.816685390913,1023.3244040399059,42.0,35.0,41.0,54.0,73.0,80.0,83.0,66.0,67.0,330.9908323960002,21.0,4.727387818712341,5.579729825986222,6.53813982376767,7.427144133408616,8.37816098272068,9.281823473598047,10.22662122471816,11.13783921111854,12.078188136349144,1.0000000000000002,1.1141428571428569,1.1733158086374254,0.9850619360824006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6987455945252355,1.0921568627450982,1.1031110186244928,0.7005061353261025,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,5.316788604006331,4.895483475517775,0.0,20.046582306815168,0.0,0.0,21.974567706265816,17.893340007476546,0.0,0.0,12.13273413692322,0.0,22.815012430797474,300.5380334772601,-648.4533809838404,-56.05076759656276,-23.15904932085144,-54.03778174865337,146.7301989466954,316.591189802323,15.947193781306996,11.30682820722582,19.78694936264519,0.42857142857142855,0.5977530723374251,0.17168365974046798,32.02338315729831,0.19340532517365042,0.24428903533100663,0.4022469276625749,4.0,0.047619047619047616,0.4984636183301164,0.7715190874875414,0.8606682007774741,0.9052427574224402,0.9052427574224402,0.9052427574224402,0.014100000000000557,,3.678571428571429,2.821411779634354,2.2555940898961886,3.778647175459628,-11.030060653423762,2.6195816136988492,2.4979803885312504,-3.8787730425215754,61.6284,30.006839111682332,0.0,4.722094864452088,5.138973737607942,15.967265468479024,11.985479792905473,17.696185628620217,0.0,0.0,3.7612001156935624,0.0,5.209486152841421,0.0,6.829793737512425,0.0,8.531293315795018,0.0,10.278940088798224,28.000000000000004,0.8010416666666669,0.0,0.0,0.0,0.0,0.0,-3.7727546296296275,0.0,31.19599999999999,0.0,45.76900368480726,0.0,0.0,-8.827221749811034,0.0,0.0,0.0,32.85284264184791,15.17785720606636,18.858631417708022,0.0,23.504285157557018,26.22288082425864,0.0,5.563451491696996,21.92370108795877,0.0,0.0,0.0,27.581734210307214,19.564876646706594,22.70317089951013,144.66275508936047,,85.04949214066582,107.32527958801073,110.01208367799958,84.53872274811343,146.4369731645504,107.1914785360928,105.96990400171308,128.0566541568524,22.70317089951013,144.66275508936047,,82.4744921406658,104.93149510332262,108.02177379075326,81.89366972529166,151.96900126365222,105.00211513923992,103.79817723207483,130.67433859212633,5.0556303122777475,99.96411621916027,,59.94386623381296,74.56656957553892,76.16125360984272,59.65182242918074,94.45158529620994,74.4046217543356,73.52549002723656,85.05825903126234,1.1351585449755066,7.233137754468023,,4.252474607033291,5.366263979400537,5.500604183899979,4.226936137405671,7.321848658227521,5.35957392680464,5.298495200085654,6.40283270784262,2.5278151561388746,72.33137754468015,,42.1490456409454,53.803710382987084,55.118821543494604,41.908356716396945,70.46947030511419,53.72671834873134,53.1098510202831,63.39778277480242,30.58039215686275,0.0,0.0,0.0,38.48541737528345,4.712560232426304,0.0,30.887108521485796,-0.30421414399092983,4.379103127362056,0.0,0.0,0.0,0.0,-4.992935563114135,0.0,0.0,19.61417178913087,267.35596009034896,67.09616281328597,103.85105031544944,115.85105031544944,121.85105031544943,121.85105031544943,121.85105031544943,582.0,116.3750346303794,179.91227233360658,54.61071341064065,135.11999999999998,118.35999999999999,0.75,7.953428182356028,5.392317422778761,4.050635047479157,4.413117615642776,,4.4037697026085185,4.413397404997889,4.412152917813144,4.4053338327484175,4.3227328358817125,4.412513401186806,4.411722108050243,4.3799383449755425,0.20253175237395787,0.22065588078213877,,0.22018848513042594,0.22066987024989446,0.22060764589065718,0.22026669163742088,0.21613664179408562,0.2206256700593403,0.22058610540251214,0.21899691724877712,2.092020851232974,2.1777285625753073,,2.175608105275707,2.177791960044083,2.1775099408730454,2.1759632220364664,2.157034983706906,2.1775916399109083,2.1774122944848133,2.170181828359623,180.35999999999987,97.91831566023536,103.70940518984716,,101.98350380848244,102.8707873403267,103.1996238993419,101.84989756862936,109.91475209664269,102.96361367391722,103.00515708129754,106.42547689499675,4.895915783011768,5.185470259492358,,5.099175190424122,5.143539367016335,5.159981194967095,5.092494878431468,5.495737604832135,5.148180683695861,5.150257854064877,5.321273844749838,5.277280797993782,5.334739987824026,,5.317958253397117,5.326620889414498,5.329812389214545,5.316647317524148,5.392852264959781,5.327522841074921,5.327926236286644,5.360592173307079,86.25005527210884,-1.9040740740740731,7.096029147770219,-1.8686805555555548,0.0,0.8010416666666669,-4.992935563114135,-0.30421414399092983,-8.827221749811034,226.7739614090646,134.4211150095457,-290.03259752198005,-25.069727748920545,-10.358307054356432,-24.16938312683168,65.6277567261038,141.60118186388203,7.132673174687476,5.0571850665672144,8.850073866492627,703.0,35.0,4.302747680480768,1.5947437600318077,0.7814744144215573,0.12345533258576281,1.0922168098165177,0.34741923340346825,0.31903559372884915,0.03563848475064247,0.0,0.0,0.0,0.0,0.0,0.0,0.11448112065443451,0.07495992106986075,0.32380150693034393,0.17855854346547545,15.344934982691244,11.155533912421737,8.927486913363696,7.972978117353572,10.663823921424285,7.153843084884382,6.743833377744646,4.916235804283067,5.480609874907539,3.6318345291263077,4.752774934907116,2.879731313816486,3.4068200176435006,1.8692841293267557,2.327749638432863,1.0323428209401393,5.755299835147536,2.666575517114601,8.48207572761196,3.619248081587488,14.153487365827782,5.411292275392368,67.02613067104697,47.80308775157328,41.47146543529464,37.13984311901601,37.13984311901601,37.13984311901601,112.0,132.0,32.67334399999998,25.246655999999994,0.35714285714285715,61.12,9.881944444444445,3.930555555555556,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,28.0,0.0,0.0,29.0,6.0,4.0,7.0,22.0,10.0,21.0,19.0,0.0,0.0,0.0,8.0,0.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,5.0,3.0,1.0,20.0,12.0,0.0,3.0,4.0,0.0,2.0,1.0,2.0,0.0,3.0,0.0,1.0,3.367295829986474,5.891989456089514,4.119037174812473,4.513602992462601,5.068117729509618,5.633225881193066,6.038169204786392,6.271342811402496,6.1077186367440905,6.1189228482877835 +5634,C=CCCCCCCCCC(=O)O,0,16.484848484848484,5.75909090909091,2.0606060606060606,3.696969696969697,165.5755614872721,64.21704887878788,1.2380777605145457,5.818021212121212,4.205387205387205,7.394496606060607,173.12552611484682,18.0625,6.00625,2.59375,2.875,145.9107156553516,64.785339125,1.6331184336250002,6.147718749999999,2.7161458333333335,7.505597,221.95741760344563,12.327586206896552,5.74241379310345,2.1724137931034484,1.6206896551724137,154.535866914449,41.30655,1.2693903381662244,5.845346551724138,2.6465517241379315,7.329356689655172,157.90535176633668,8.148148148148149,5.529382716049383,1.7407407407407407,0.7407407407407407,165.06783180302864,25.47198698765432,0.9845906101872592,5.592888888888889,1.9886831275720165,7.218988543209877,114.80724876124711,7.8933333333333335,5.4924,1.7066666666666668,0.7466666666666667,165.94700736543425,24.725486413333332,0.9596532559889067,5.553513333333333,1.9444444444444446,7.1900781333333335,111.13213535738862,8.0,5.52,1.696969696969697,0.7878787878787878,166.16773329346927,25.115981090909088,0.9538252324207878,5.578954545454546,2.0239898989898992,7.2177418181818185,111.03199707346998,8.140350877192983,5.556315789473683,1.6842105263157894,0.8421052631578947,166.45816214614695,25.62978987719298,0.9461567803574735,5.612429824561404,2.128654970760234,7.254141403508772,110.90023617357708,8.333333333333334,5.606249999999999,1.6666666666666667,0.9166666666666666,166.85750181857875,26.33627695833333,0.9356126587704164,5.658458333333333,2.2725694444444446,7.304190833333334,110.71906493622436,8.615384615384615,5.679230769230769,1.641025641025641,1.0256410256410255,167.441152109056,27.368835,0.9202020195277947,5.725730769230769,2.482905982905983,7.377340000000001,110.45427620470883,6.931129476584021,0.10045913682277317,0.01621862223524264,0.2828282828282829,2.506887052341598,1.2167436549235433,33.0336238640955,0.2192102001659688,0.097226997245179,1.7541067238036936,0.06287372635445361,49.241315154057034,-0.3951446280991734,-0.006046258034894395,-0.011138431590676033,-0.0034722222222221804,0.4173553719008265,-0.0187081598951264,-1.8610480118227684,-0.004344751234377874,-0.00611686466942152,-0.06773782649729619,-0.003328749081726351,-1.7713467669306906,-0.9807637503562269,0.01977597289509515,0.002747351861111332,-0.07279693486590037,0.008264462809917385,-0.33477868181942055,-4.924824137345237,-0.06242997276205394,0.014896095753776007,0.4368546137093682,0.016167086602704155,-13.454736750376794,-0.27119681665136214,-0.004035642621501205,-0.0010382134402545922,-0.004115226337448562,-0.11631466176920724,-0.022378129225327514,-1.2817539276944536,-0.004525476592835968,-0.004046189164370969,-0.07337970048407756,-0.0022903668333163285,-1.4159385761696157,0.0555371900826446,-0.000725803489439854,0.00013529501454554254,-3.08395284618099e-18,-0.012341597796143265,-0.00014863438915904806,0.2690131508539936,0.0004169470606995048,-0.0004044517906335954,-0.040302009998979656,-0.0007970168595041336,0.34494882028753343,0.03856749311294768,-0.0016712580348943983,9.893240531160627e-06,-3.925030895139442e-18,-0.038567493112947694,-0.00016909526914780717,0.19313473829201014,0.0004646469877851247,-0.0012297520661156915,-0.06750586674829095,-0.0014706115702479352,0.3501905213538633,0.016238944468609563,-0.0029152771736503805,1.1370963608471809e-05,-4.057832692343408e-18,-0.07307525010874294,-0.00019601747965931676,0.09329472176308423,0.0005274100497398882,-0.0023156734812237127,-0.10330041510264794,-0.002356920400173989,0.3570874964411392,-0.014462809917355398,-0.004625803489439852,5.48024322657005e-05,-1.0022846750088219e-17,-0.12052341597796144,-0.00023303551911267944,-0.04398530096418801,0.000613709259927687,-0.003808815426997241,-0.1525179190898888,-0.003575595041322314,0.36657083718614336,-0.0593346047891503,-0.007125803489439852,3.0325148329890998e-05,-9.489085680556892e-18,-0.18987073532528076,-0.00028713880754447735,-0.24462533418097138,0.000739838874817548,-0.005991099809281628,-0.22445119414816384,-0.005356734901462172,0.38043110442884237,,,0.47435897435897434,0.6923076923076923,0.19230769230769232,0.0,0.5,-0.3076923076923077,0.8946441873998124,0.01108907325718711,0.01108907325718711,0.3367318161174253,0.11254699493069274,0.369764975071589,1.2313760035172376,0.4823119700022817,1.8970531344242567,1.6369132534222577,0.0,0.26013988100199903,0.0,0.26013988100199903,5.580191814545454,544.0,190.05,68.0,122.0,5463.993529079979,2119.162613,40.85656609698,191.9947,138.77777777777777,244.01838800000004,5713.142361789945,578.0,192.2,83.0,92.0,4669.142900971251,2073.130852,52.259789876000006,196.72699999999998,86.91666666666667,240.179104,7102.63736331026,715.0,333.06000000000006,126.0,94.0,8963.080281038043,2395.7799,73.62463961364101,339.0301,153.50000000000003,425.10268799999994,9158.510402447528,660.0,447.88000000000005,141.0,60.0,13370.494376045319,2063.2309459999997,79.751839425168,453.024,161.08333333333334,584.738072,9299.387149661015,592.0,411.93,128.0,56.0,12446.02555240757,1854.4114809999999,71.973994199168,416.51349999999996,145.83333333333334,539.25586,8334.910151804146,528.0,364.32,112.0,52.0,10967.070397368972,1657.6547519999997,62.95246533977199,368.211,133.58333333333334,476.37096,7328.111806849019,464.0,316.71,96.0,48.0,9488.115242330376,1460.898023,53.93093648037599,319.9085,121.33333333333334,413.48606,6321.313461893894,400.0,269.09999999999997,80.0,44.0,8009.16008729178,1264.1412939999998,44.90940762097999,271.606,109.08333333333334,350.60116000000005,5314.515116938769,336.0,221.49,64.0,40.0,6530.204932253184,1067.384565,35.88787876158399,223.3035,96.83333333333334,287.71626000000003,4307.716771983644,228.7272727272727,3.3151515151515145,0.5352145337630071,9.333333333333334,82.72727272727273,40.152540612476926,1090.1095875151516,7.23393660547697,3.208490909090907,57.88552188552189,2.074832969696969,1624.963400083882,-12.644628099173548,-0.19348025711662065,-0.35642981090163306,-0.11111111111110977,13.355371900826448,-0.5986611166440448,-59.55353637832859,-0.13903203950009196,-0.19573966942148863,-2.167610447913478,-0.10651997061524324,-56.6830965417821,-56.88429752066116,1.1470064279155188,0.15934640794445726,-4.222222222222221,0.47933884297520835,-19.417163545526392,-285.6397999660237,-3.6209384201991286,0.8639735537190084,25.337567595143355,0.937691022956841,-780.3747315218541,-21.96694214876033,-0.32688705234159765,-0.08409528866062196,-0.3333333333333335,-9.421487603305787,-1.8126284672515287,-103.82206814325075,-0.36656360401971344,-0.32774132231404846,-5.943755739210283,-0.18551971349862262,-114.69102466973887,4.165289256198345,-0.05443526170798905,0.010147126090915691,-2.3129646346357425e-16,-0.9256198347107448,-0.011147579186928604,20.175986314049517,0.03127102955246286,-0.030333884297519653,-3.022650749923474,-0.059776264462810015,25.871161521565007,2.5454545454545467,-0.11030303030303029,0.0006529538750566014,-2.5905203907920316e-16,-2.5454545454545476,-0.011160287763755274,12.74689272727267,0.03066670119381823,-0.08116363636363563,-4.455387205387203,-0.09706036363636372,23.112574409354977,0.9256198347107452,-0.16617079889807168,0.0006481449256828931,-2.3129646346357425e-16,-4.1652892561983474,-0.011172996340581056,5.317799140495802,0.03006237283517363,-0.1319933884297516,-5.888123660850932,-0.13434446280991738,20.353987297144933,-0.6942148760330591,-0.2220385674931129,0.002630516748753624,-4.810966440042345e-16,-5.785123966942149,-0.011185704917408614,-2.1112944462810246,0.02945804447652897,-0.18282314049586756,-7.320860116314662,-0.17162856198347107,17.59540018493488,-2.3140495867768616,-0.27790633608815424,0.001182680784865749,-3.700743415417188e-16,-7.40495867768595,-0.011198413494234618,-9.540388033057884,0.02885371611788437,-0.23365289256198352,-8.75359657177839,-0.20891266115702473,14.836813072724853,0.7647162538360427,0.6382133219871058,0.5225046341691386,0.4248150762085759,0.3881163099054235,0.2785340963310518,0.26350278050148307,0.20488904572514555,0.18738548158271712,0.14133418232603034,0.13343923781342693,0.09680565357821597,0.09520828168937001,0.06560387502435709,0.06812615854228463,0.04370376905214396,8.028632594557532,5.761711323172116,3.554696916655432,2.261711180016995,0.42492712692864787,-0.3344915367115559,3.037397164754255,0.9572764550720059,6.02199802405363,1.8125325264260588,13.642539496939232,11.02201134410389,16.013900744794636,11.772711391203242,1.9112052258780128,0.7416202456679752,3.500726857549835,2.311711143160517,7.008290539010505,1.311600620702397,3.713653751578164,2.5077111498476863,20.8206370166286,14.701443656079508,0.2380938914214851,0.4777063760816182,0.6161638686273859,0.741364991612248,0.8247547749837486,0.8604932535715346,2.8354061560854147,141.0257051333355,0.0,2.0,0.0,0.0,1.0,8.0,0.0,0.0,0.0,3.8331002940229553,2.614080682014861,1.9096833335955719,1.2727272727272725,0.8484848484848477,0.6666666666666652,208.24353295641032,521.675397862858,41.36588803502535,15.808345389783575,29.563492714426246,,11.0,203.0,5.969305287951849,4.794537184071822,0.0,6.4208216229260096,19.26246486877803,25.683286491704038,0.0,6.076020106833881,6.578935683598497,5.106527394840706,6.166666666666666,9.0,2.5,0.0,6.5,0.0,0.025641025641025685,-4.0,0.07721113574772115,0.011659451659451703,-0.06555168408826945,0.036996336996336976,0.13406269592476494,0.0,0.5040404040404045,0.817948717948718,0.42682926829268336,0.4923809523809528,0.7809523809523811,11.630374436197561,0.14415795234343243,0.14415795234343243,4.377513609526529,1.4631109340990056,4.806944675930657,16.00788804572409,6.2700556100296625,0.579937304075235,0.18918918918918917,0.0,0.08108108108108109,0.7272727272727273,0.24674623795151396,-0.3130871719582879,-0.054810589455751686,-0.009487490059342055,-0.028462470178026167,0.7532537620484862,0.9557758289836353,0.04580302016389961,0.028962903908595013,0.04344435586289252,-2.9385655438629303,1.1629570747217808,0.8144424131627054,1.6421840113864687,1.4464285714285714,0.7071428571428571,1.4319105825678213,1.1727227103047855,1.4271061160079537,0.849199850396958,0.7471643787808281,0.7777435695152268,1.363035458024779,1.1252672550846994,0.4435226628002267,0.4939842433222188,1.4482758620689655,0.7836301629405078,1.4660900060554074,1.1416126820494892,1.4775013042554188,0.5259062796345821,0.3365077582195407,0.33590339967349314,1.4257911194106825,0.9525604035407957,0.8049834111991332,0.6765832277010108,0.8888888888888887,0.8548093881427214,0.9691186890870624,0.9552471247948837,0.9780151268713538,0.8272617263382298,0.7811643658549196,0.770622032400768,0.9895565807497559,0.8897933227344994,0.7374625228519193,0.6577214786507263,0.8685714285714285,0.789098901098901,0.9304617419865268,0.8929174699265156,0.9369968840939029,0.7586270520833923,0.7072964169381106,0.7065535433827108,0.9395423156824343,0.9051404345521994,0.8117001828153563,0.7440603691135649,0.8831168831168831,0.8498168498168497,0.9253151616896321,0.906985786919211,0.9298597129053394,0.8250532205265951,0.7995579339227548,0.7918178094160716,0.9333169299874098,0.9253340027333836,0.9093813143461943,0.8481331882447776,0.9022556390977442,0.9297088876036244,0.9185433455095071,0.9254967303306519,0.9204686981835458,0.9124560737413357,0.9209546667972862,0.9040076331441778,0.9251256330202726,0.9531001589825121,1.0436928702010966,0.9888186018603808,0.9285714285714285,1.0395604395604394,0.9092320982618356,0.9509492775213835,0.907556052941079,1.032634996911604,1.0878751744997672,1.058268640770324,0.9138625996904589,0.9936814642696997,1.2399943749121076,1.200698514030172,0.9670329670329669,1.2001127078050153,0.8956233522844695,0.98814915418476,0.8886837252790124,1.2082811153912267,1.3318359165264702,1.2837270365316142,0.8974012432853463,1.5,0.03305785123966942,0.44444444444444464,0.25,0.16000000000000003,0.1111111111111111,0.0816326530612245,0.0625,0.0493827160493827,0.04000000000000001,1657.1597974765173,2132.8432877144683,1088.8713583103845,884.2083660334074,8.292575130501735,0.42897879360390023,4.735236255149395,0.7512484454147065,1.0,0.7272727272727273,1.2112938253354983,2.4303134373435924,3.1347107857628815,3.771666846631181,4.195909270873606,4.377727452691788,0.125,0.011019283746556474,0.037037037037037056,0.025,0.01777777777777778,0.013888888888888888,0.011661807580174929,0.010416666666666666,0.009876543209876541,0.010000000000000002,0.27167800490697835,13.0,10.083333333333334,12.0,80.65482499185119,1.0,3.3794636944224106,56.53381177622188,,53.59151213782467,53.48620011993482,53.818985218324855,53.593680293965654,57.67369784117337,53.5657740342675,53.59595589587428,55.5449899768601,-0.057010135135135115,-0.06018624314442411,-0.6867680515101039,-0.012276785714285567,0.1664835164835165,-0.015375596839501881,-0.056337991238241215,-0.01982002311520344,-0.06291323236072505,-0.038616707625639825,-0.05294340378301058,-0.035972775328782985,-0.14150128830656217,0.19685589106726345,0.16939489811541503,-0.25738916256157635,0.0032967032967033084,-0.27514314988596106,-0.1490851914281819,-0.2847950173613585,0.1532094600866081,0.24904676994913433,0.25713581077668973,-0.2732408082172892,-0.03912736265677443,-0.040171981853883126,-0.06401366436654414,-0.014550264550264558,-0.04639804639804641,-0.01839181912704011,-0.0388014930777123,-0.020644461751367558,-0.0416159017455576,-0.04183308774106818,-0.03642804341521413,-0.028755092583122352,0.008012718600953893,-0.007224862888482643,0.008341954858011924,-1.0903976134711357e-17,-0.0049230769230769285,-0.00012215752147759325,0.00814361609131192,0.0019020422424860942,-0.004159871250715296,-0.022975802698929713,-0.012676469261753521,0.007005272284225593,0.005564387917329098,-0.01663619744058501,0.0006099926607614595,-1.3877787807814454e-17,-0.015384615384615396,-0.00013897361902284394,0.005846610686329506,0.0021196412732314937,-0.012648257181229246,-0.03848446952070728,-0.023389922238063205,0.0071117215342086735,0.0023429001757175167,-0.029019532377561837,0.00070110539869182,-1.434733701935705e-17,-0.029149797570850202,-0.00016110006316131885,0.0028242351534578975,0.00240595578737018,-0.023817186037168658,-0.05889061007567777,-0.03748657089110225,0.007251786336817985,-0.002086645468998414,-0.04604661791590493,0.003378981979530682,-3.5437922437811914e-17,-0.04807692307692307,-0.0001915239238517523,-0.0013315312042405365,0.002799638244310869,-0.03917446321408534,-0.08694905333876221,-0.05686946278903095,0.007444375440405785,-0.008560596795890923,-0.07093235831809873,0.001869773393204464,-3.355069579911187e-17,-0.07573964497041419,-0.00023598956639927604,-0.007405343573184429,0.0033750202967626503,-0.06161971447265587,-0.1279575473386548,-0.08519830479369596,0.007725851822572581,13.18512473533854,2.170156536901524,,10.708614201283298,19.69578999218499,22.90976356098586,25.552360724886555,26.646845573371408,27.496966785492617,24.661690747515337,21.27987229448935,0.0,3.3818184530259874,0.0,3.3818184530259874,1518.0633645428159,1038.8807295696183,609.9338673701835,3.0,12.0,10.0,9.0,8.0,7.0,6.0,5.0,4.0,184.14632988,12.0,3.8918202981106265,4.532599493153256,5.220355825078324,5.877735781779639,6.569481420414296,7.233455418621439,7.926241523170962,8.593598522618644,9.286653054825347,0.515151515151515,0.9515151515151515,1.138535412291884,0.46492482900775306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6044249682453275,0.9379679144385028,0.9860513363790859,0.5408447347482561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.106527394840706,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,6.578935683598497,31.75930659853792,19.26246486877803,6.4208216229260096,0.0,101.44628833764153,-128.72144185451947,-22.53461251545766,-3.900649753167256,-11.701949259501768,309.68982129405185,392.9539560083385,18.83127551956769,11.90769563661632,17.861543454924476,0.45454545454545453,0.8027183415301197,0.3792611096926793,69.74382552931118,0.23867001899131338,19.993826002684067,0.19728165846988044,6.0,0.75,0.24012672219385403,0.4817850032805684,0.621424637248914,0.7476947196011048,0.83179647973407,0.8678400912196266,3.3778000000000015,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,54.76880000000004,9.901064578912528,0.0,0.0,0.0,51.36657298340809,0.0,12.654955790432378,0.0,0.0,3.2188758248682006,0.0,4.290459441148391,0.0,5.484796933490655,0.0,6.734591659972948,0.0,8.014666370464942,16.999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.400000000000002,3.662059769385256,10.162267057687783,0.0,0.0,0.0,1.9488370336273475,0.0,-0.6743913285521328,37.571668605632176,0.0,0.0,0.0,11.075832682792555,4.794537184071822,0.0,51.36657298340809,12.654955790432378,0.0,0.0,0.0,15.342519357255851,19.94602395209581,15.32259515108078,113.06762355244376,,107.10610119872626,106.88448815195756,107.58469837945638,107.11066348667018,115.68040930214343,107.05194162846345,107.11545185321967,111.21274748543036,15.32259515108078,113.06762355244373,,106.68302427564932,106.40097166844107,107.29170206489312,106.68882942973394,117.5119842110251,106.61410620806987,106.69492219131067,111.88796890983632,3.965779445495243,90.14542284530825,,86.7808986236983,86.65584876255421,87.051409459773,86.7834743803344,91.72598862051547,86.75032573426512,86.7861778357852,89.12265056432611,1.1786611654677523,8.697509504034135,,8.238930861440481,8.221883703996735,8.275746029188953,8.239281806666936,8.898493023241802,8.234764740651034,8.239650142555359,8.55482672964849,1.9828897227476208,56.53381177622188,,53.59151213782467,53.48620011993482,53.818985218324855,53.593680293965654,57.67369784117337,53.5657740342675,53.59595589587428,55.5449899768601,30.952941176470592,0.0,0.0,0.0,0.0,0.0,8.375068197044659,32.539694100509834,8.192825937473756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.84787624669245,330.0264960666983,39.97269623607144,80.20034343233854,103.44545593017509,124.46500593882897,138.465005938829,144.46500593882902,89.0,84.13194133777255,81.10961356499504,40.74339022994514,37.3,37.3,0.8333333333333334,4.709530201312334,4.584962500721156,3.318456779858531,3.54869457095259,,3.5584773367756517,3.5587486919345506,3.557877887944608,3.5584717080596797,3.5459559881515577,3.5585440265506945,3.5584657986023944,3.552857555044185,0.2552659061429639,0.27297650545789154,,0.2737290259058194,0.27374989937958083,0.27368291445727755,0.27372859292766766,0.27276584524242753,0.27373415588851496,0.2737281383540303,0.27329673500339885,1.4618641139872832,1.5289440738346212,,1.5316970034466788,1.5317732565143587,1.5315285327018853,1.5316954216688872,1.5281720603536937,1.5317157443697813,1.5316937609946772,1.5301164892431376,168.98999999999975,55.90113752286364,46.452357041481434,,45.898278355886355,45.87970287848567,45.938262231308364,45.89866036708527,46.5803025133709,45.893742212509444,45.89906129095706,46.2345710093713,4.300087501758742,3.5732582339601104,,3.5306367966066428,3.529207913729667,3.5337124793314127,3.530666182083482,3.5831001933362234,3.5302878625007263,3.530697022381312,3.556505462259331,4.28594899366772,4.1007914720670815,,4.088791872244172,4.088387080650273,4.089662634093274,4.088800195205792,4.10354202339317,4.088693037000051,4.088808930147456,4.096092072971757,0.0,10.162267057687783,8.375068197044659,0.0,-0.6743913285521328,0.0,10.141662971101102,3.662059769385256,0.0,211.11983241766956,41.70823232371296,-52.92203283024936,-9.264792921662929,-1.6036979645530105,-4.811093893659032,127.32466831937082,161.55756073765187,7.742217356517605,4.895683658716724,7.343525488075084,354.0,10.0,0.408248290463863,0.06454972243679029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.941311299868556,8.296773185832375,6.270055610029663,5.097780914502911,4.657395718865082,3.342409155972622,2.635027805014831,2.0488904572514555,1.686469334244454,1.272007640934273,1.0675139025074154,0.7744452286257277,0.6664579718255901,0.4592271251704997,0.40875695125370776,0.26222261431286376,0.28867513459481287,0.04564354645876384,0.2041241452319315,0.032274861218395144,0.14433756729740643,0.02282177322938192,47.548175670650494,33.435038236100155,27.469825682520003,21.966024965808813,19.350616050456097,17.747952947814614,48.0,46.0,33.309859999999965,20.932139999999997,0.0,12.02,5.361111111111111,3.3333333333333335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,33.0,0.0,0.0,32.0,0.0,2.0,2.0,30.0,2.0,12.0,30.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,1.0,1.0,0.0,13.0,2.0,0.0,0.0,2.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,2.70805020110221,1.791759469228055,2.772588722239781,2.5649493574615367,2.4849066497880004,2.3978952727983707,2.302585092994046,2.1972245773362196,2.0794415416798357,1.9459101490553132 +60846,CCCCC(=O)N(Cc1ccc(-c2ccccc2-c2nn[nH]n2)cc1)[C@H](C(=O)O)C(C)C,0,21.80327868852459,6.134991803278687,3.098360655737705,7.114754098360656,164.23328895607742,85.91293455737708,1.4394587908298522,6.198832786885244,4.528688524590164,7.6536257049180305,211.99307258167838,23.904761904761905,6.342915873015874,3.746031746031746,6.920634920634921,148.34041571818662,90.1822651746032,1.7827247088253972,6.477528571428572,3.232804232804232,7.744732190476188,257.9514304653566,19.678899082568808,6.15238256880734,3.44954128440367,5.495412844036697,154.7970149353187,72.913737853211,1.5329655707618082,6.259018348623851,3.069571865443426,7.625120513761469,214.30859748727948,16.555555555555557,6.005354166666664,3.0069444444444446,4.118055555555555,156.98009160357935,59.87344900694447,1.382668911500514,6.1017826388888885,2.7173996913580254,7.541349638888887,188.07644939659357,16.35542168674699,6.088656626506025,2.8012048192771086,3.8373493975903616,160.9392114090808,59.15597177710846,1.2900578158226745,6.167620481927708,3.015227576974564,7.637946771084337,178.58783385593287,16.49425287356322,6.2712643678160935,2.6379310344827585,3.706896551724138,160.2589892884094,58.596122775862064,1.2895713615538853,6.340863218390808,3.7769795657726717,7.814721402298848,178.75601573923242,13.825136612021858,6.035557377049178,2.4262295081967213,2.699453551912568,162.1313922054127,47.83604521857925,1.2103886713410545,6.105628415300546,2.997874924104433,7.616746469945355,160.8517131783427,12.254335260115607,5.8821387283237,2.2427745664739884,2.2427745664739884,161.68109429061954,41.331138595375734,1.166828493781861,5.956849710982658,2.6724470134874756,7.481337687861269,149.27744406132464,10.347560975609756,5.689847560975608,2.1341463414634148,1.9024390243902438,164.62796040990878,34.43021432317073,1.0567362958508781,5.755795731707318,2.3272357723577235,7.334844756097563,130.27288900082482,7.338349905939266,0.11641547970975537,0.016181942711898212,0.5697393173877991,3.8629400698736895,1.5132791242768522,34.93614369900565,0.22140291201716533,0.11007428110722918,1.5751739377108906,0.06820672722386452,49.4451698689978,0.2765342991088761,0.011765160415147132,-0.009111941675072156,0.24212641251071765,1.4995371614560011,0.1902964650681681,1.2865699065108804,0.004880996176723495,0.009636856025219553,-0.03784777470166705,0.005720735695729469,0.6489419607219485,0.6470614341118721,0.026104026982980366,-8.971628006715271e-06,0.04057802356572784,0.8227269477229414,0.12620566239591735,2.9712134004078026,0.004961378445122364,0.022749211147245176,0.26558323546469176,0.016347683965788017,1.253885575842944,0.2773149392337785,0.006442614552539624,0.00194455098923412,0.0031204276030935606,0.3320735913284961,-0.07500697504842674,1.2942721849879817,-0.0010358353039597473,0.00602939603302577,-0.07160684602904434,0.003233677603093564,0.34434595449041594,0.554500182940847,-0.007234559306832236,-0.0018664775844052437,-0.05374089747865422,-0.09136195413203468,-0.012796456954687487,2.696830864593013,0.010550372251075208,-0.004029465780347917,-0.05663804550819961,-0.006397606544425501,4.293101662850652,-0.9752445733596515,-0.015748813043088627,0.0009518000864802118,-0.04260534339119073,-0.6585873282117339,-0.10105651253311043,-4.578548418903892,-0.005697407093461942,-0.01571903332128601,-0.005546297068552074,-0.007254153264942438,-3.715112958494501,-0.8684045507480065,-0.021627922601451192,9.412486726674272e-05,-0.032876466899578974,-0.6509002956194571,-0.042510911846579104,-4.03634227510526,-0.0029341951286583345,-0.020210624384126116,-0.21859167686902162,-0.01252842963361104,-2.370196833171611,-0.9369474611368385,-0.012009197136079756,-0.0003604340674918134,0.0009041015452058533,-0.22795475764020162,-0.17430914325631788,-4.471815095101542,-0.02814065454920725,-0.011823982613909859,-0.1374047936023164,-0.006639267354633023,-6.567006160589554,0.4390391384429832,0.0023951960199524993,-0.0005227754074185649,0.07650218601084158,0.3491750840647349,-0.10461179770308147,2.0876341531534925,2.6822256666848685e-05,0.0033667124953295794,-0.026934899992644028,-0.00015068204193725322,1.434125462419094,,,0.4687500000000001,1.1875,0.59375,0.0,0.59375,0.0,0.9907902194520112,0.015509090837581008,0.023571590837581008,0.9849793657501941,0.22929194355415516,0.25251813943242307,1.9757695852022052,0.48181008298657824,2.0115691509229716,1.529047099002109,0.3205760751167128,0.16194597680414968,0.0,0.4825220519208625,7.134869504721324,1330.0,374.2344999999999,189.0,434.0,10018.230626320723,5240.689008000002,87.80698624062099,378.1287999999999,276.25,466.87116799999984,12931.577427482382,1506.0,399.60370000000006,236.0,436.0,9345.446190245757,5681.482706000002,112.31165665600003,408.08430000000004,203.66666666666663,487.9181279999998,16250.940119317469,2145.0,670.6097000000001,376.0,599.0,16872.87462794974,7947.597425999999,167.0932472130371,682.2329999999997,334.5833333333334,831.1381360000001,23359.637126113463,2384.0,864.7709999999996,433.0,593.0,22605.133190915425,8621.776657000004,199.10432325607403,878.6567,391.30555555555566,1085.9543479999998,27083.008713109473,2715.0,1010.7170000000001,465.0,637.0,26715.909093907412,9819.891315000004,214.149597426564,1023.8249999999995,500.5277777777776,1267.899164,29645.580420084858,2870.0,1091.2000000000003,459.0,645.0,27885.064136183235,10195.725363,224.38541691037602,1103.3102000000006,657.1944444444449,1359.7615239999996,31103.546738626443,2530.0,1104.5069999999996,444.0,494.0,29670.044773590525,8753.996275000003,221.501126855413,1117.33,548.6111111111112,1393.8646039999999,29435.863511636715,2120.0,1017.6100000000001,388.0,388.0,27970.82931227718,7150.2869770000025,201.86132942426195,1030.5349999999999,462.3333333333333,1294.2714199999996,25824.997822609163,1697.0,933.1349999999996,350.0,312.0,26998.98550722504,5646.555149,173.30475251954402,943.9505000000001,381.66666666666663,1202.9145400000002,21364.753796135272,447.6393442622952,7.101344262295077,0.9870985054257909,34.754098360655746,235.63934426229505,92.31002658088798,2131.1047656393444,13.505577633047086,6.71453114754098,96.08561020036433,4.160610360655736,3016.1553620088657,17.421660843859197,0.7412051061542694,-0.5740523255295459,15.253963988175212,94.47084117172807,11.98867729929459,81.05390411018547,0.30750275913358016,0.6071219295888318,-2.3844098062050243,0.36040634883095657,40.88334352548276,70.52969631819406,2.8453389411448597,-0.0009779074527319646,4.423004568664334,89.67723730180062,13.756417201154992,323.8622606444505,0.5407902505183377,2.4796640150497242,28.9485726656514,1.781897552270894,136.67352776688088,39.9333512496641,0.9277364955657058,0.28001534244971327,0.4493415748454727,47.81859715130344,-10.80100440697345,186.37519463826936,-0.1491602837702036,0.8682330287557108,-10.311385828182384,0.46564957484547326,49.5858174466199,92.0470303681806,-1.200936844934151,-0.30983527901127045,-8.9209889814566,-15.166084385917758,-2.1242118544781228,447.6739235224402,1.7513617936784844,-0.6688913195377542,-9.401915554361135,-1.0620026863746332,712.6548760332082,-169.69255576457937,-2.740293469497421,0.16561321504755686,-7.413329750067187,-114.5941951088417,-17.583833180761214,-796.6674248892772,-0.9913488342623779,-2.7351117979037656,-0.9650556899280609,-1.2622226680999842,-646.4296547780432,-158.9180327868852,-3.957909836065568,0.01722485070981392,-6.016393442622952,-119.11475409836065,-7.779496867923976,-738.6506363442625,-0.5369577085444752,-3.698544262295079,-40.00227686703096,-2.29270262295082,-433.7460204704048,-162.09191077667305,-2.077591104541798,-0.06235509367608371,0.15640956732061262,-39.43617307175488,-30.155481783342992,-773.6240114525667,-4.8683332370128545,-2.0455489922064056,-23.771029293200733,-1.148593252351513,-1136.092065781993,72.00241870464924,0.39281214727220987,-0.08573516681664464,12.546358505778018,57.264713786616525,-17.15633482330536,342.3720011171728,0.0043988500933631845,0.552140849234051,-4.417323598793621,-0.02471185487770953,235.19657583673143,0.721475349715032,0.5829529492209365,0.45346831339913257,0.3195281110483463,0.2939556955636734,0.17674353582812705,0.1793417646589183,0.0902664226606533,0.11857547170425334,0.04850973713704448,0.07638340915781602,0.026742597388710636,0.04873257322833486,0.01518027182364072,0.03188854233444028,0.008353321277073993,8.029066852826686,5.672834587543312,3.555240272189955,2.172586807265216,0.45662700496537456,-0.4004973980631245,3.2261949235342957,0.9726308151262593,6.023267835170844,0.9871487211959891,14.781784696450485,10.933409438884455,16.014439919257835,11.684026473731091,2.0099084329052945,0.7414630446602396,3.5013262860321435,2.222503380672987,7.009376392777161,1.2010017322187754,3.714206066394697,2.418450480209854,20.917991713661802,14.700681346425462,0.25025180463094426,0.5814793897367498,0.7640534492601934,0.8548017044735141,0.8726916882101845,0.8779885887820861,1.5853408420374167,1032.0529522380773,0.0,3.0,4.0,0.0,8.0,4.0,4.0,1.0,0.0,4.381722571354223,2.3314819304877874,1.2013805330351541,0.6396647542402301,0.5289288935490237,0.4961420083031216,157.4662309750791,1762.6828876078682,54.05088577922611,28.896440780456853,57.23214663612107,,15.0,793.0,12.011146117099809,14.69560176298435,18.369842181425476,12.245226120925937,35.09544921264,4.899909730850478,0.0,69.30214814676475,20.62413380791181,0.0,15.000000000000004,38.0,19.0,0.0,19.0,0.0,0.03124999999999989,0.0,0.1411974340698507,0.04608129350999368,-0.09511614055985701,0.03143382352941171,0.15220224719101083,0.0,0.5803278688524586,0.8343749999999996,0.4391304347826079,0.5342465753424649,0.8029411764705879,31.705287022464358,0.49629090680259225,0.7542909068025923,31.51933970400621,7.337342193732965,8.080580461837538,63.22462672647057,15.417922655570504,0.5617977528089891,0.16666666666666663,0.0,0.3266666666666666,0.375,0.38380851838929114,-0.9984024784715502,-0.04475317705883923,-0.01636725374543525,-0.039936099138862,0.6161914816107086,1.6029011159913673,0.035013163472336545,0.026277067475268312,0.044525030999760205,-5.73993850578079,0.8265582655826557,0.6371295382057601,1.5594661840258968,0.7809973045822102,0.450648326674485,1.128434753716233,0.8334865060963863,1.1023373974700863,0.6473167635867372,0.6391731684617126,0.6417890776230825,1.0246015364649013,0.8152860849213499,0.5278209862337668,0.8988884200996121,1.2433356413363337,0.713654751251942,1.0544241339714646,0.823502714701129,1.0429067363955173,0.5532680835320881,0.4427912927951797,0.4742950897014953,0.9978994984604005,0.8945073121902387,0.7575238294758323,0.8540829769386383,1.2408608490566035,0.8575958907286304,1.0807943637078996,0.8988675069353745,1.0604594394634368,0.7689169285568724,0.8849289191990038,0.7643640133684886,1.020440800353337,0.9071685555670272,1.0903264011070113,1.3246951221230256,1.2584110025005681,1.0652894030553828,1.0143318019594008,0.9049306920596764,0.9525619723166631,1.0577670253499805,1.1339452709512956,1.1473029938182524,0.8992603325578054,1.1520203971844003,1.4365322913567113,1.2648447361121804,1.1013337670787247,1.2577666572307278,1.06398887107702,1.1446937733996394,1.021001403574339,1.4083120570342214,1.6103535216524734,1.5269793747029115,1.0349979832204232,1.115139529773676,1.2639860382010335,1.0217929206159018,0.962264150943396,1.1673855572561571,0.9881850225564869,1.1106393127439704,1.0048450081606584,1.253149518636361,1.4123902864400668,1.3089320060039111,1.0298981540208434,1.0986342327100818,1.0033482569088223,0.8802878700378961,0.8232904351619587,0.9412346151649856,1.0516820490125227,1.1004135900340921,1.1354814716901618,1.018905689482848,1.0369786705410509,1.005683147384147,1.1406027887054482,0.9190488823147952,0.7861479616915371,0.8667002913069881,0.7526748734468476,0.7894971272656932,0.9274470276078727,0.921926160384699,0.9962010374093819,0.8051794414572546,0.8175191800779638,0.7881967961019812,0.9930808452501563,5.5,0.26517498214467916,3.555555555555557,2.5277777777777777,1.844444444444445,1.2119444444444443,0.7420861678004537,0.49829931972789115,0.30485481229528844,0.25469135802469145,6592.172735379596,7456.927273129371,3019.3887728198656,2722.7090717581655,14.245388944484086,0.4587152778049803,7.710811397375074,0.8474565399607003,1.0,0.375,1.549014766208663,3.5992554070750993,4.7293568045277325,5.291072583322657,5.401808444013863,5.434595329259765,0.16176470588235292,0.008286718192021224,0.0772946859903382,0.051587301587301584,0.03353535353535354,0.022035353535353536,0.015789067400009654,0.01346754918183489,0.010512234906734082,0.009433013260173758,0.40370598347147346,26.602076124567475,13.185255198487713,7.25,187.2105314815426,1.0,4.373329308625699,201.70702492285537,,164.53758479238928,162.389958283092,160.9874413455098,164.55726433201863,202.81834828402316,163.64221354961526,164.6655863879319,189.7114081836284,0.03768344418750926,0.10106182137014583,-0.5630931858615686,0.42497753818508494,0.38818545831207607,0.1257510673446346,0.0368263285609138,0.0220457632298218,0.0875486619424912,-0.024027679607668623,0.08387348181878267,0.013124476312676927,0.08817533129459737,0.22423158026803977,-0.0005544221831979815,0.07122208758871379,0.21297947491839886,0.08339879958115924,0.08504697673579724,0.022408821997507013,0.2066714487563536,0.16860565624304866,0.23967846913593308,0.02535911149997145,0.037789822342667895,0.055341562553383926,0.1201679565831324,0.00547693920335431,0.08596395111543997,-0.049565855925138846,0.037046795895358635,-0.004678508040036254,0.05477570212020932,-0.045459643735031856,0.047409951110543073,0.006964198027891121,0.07556197102185934,-0.0621443069673319,-0.11534323274008784,-0.09432541486701525,-0.023650885719027487,-0.008456111466417345,0.077193146668611,0.04765236443799456,-0.03660678716059568,-0.03595669287831693,-0.09379729544019338,0.08682550134269906,-0.13289698445291373,-0.13528109047313328,0.0588186538183932,-0.07478041639557578,-0.17048862169722154,-0.06677982330682194,-0.1310547740572239,-0.025733207578680008,-0.14280386992464902,-0.003521069601121123,-0.10635539279187578,-0.07513601365588356,-0.11833785004516705,-0.18578218854892384,0.0058166605173762525,-0.05770440251572328,-0.1684986781689161,-0.028091917191346783,-0.11553485438692372,-0.013252739550376135,-0.18360896097461565,-0.13877304063746018,-0.1836831958303891,-0.04793586187389616,-0.1276782210096746,-0.10315807799805347,-0.022273843994441687,0.0015868687970334808,-0.05901068966044179,-0.11518637934004057,-0.12799967659936146,-0.12710155567884088,-0.10741821336440519,-0.0872315052406205,-0.09734035959300569,-0.13281390635300613,0.059828046368795865,0.020574549243143194,-0.032306096784916936,0.13427577082374595,0.0903910176572199,-0.06912921484532611,0.05975571234019486,0.0001211468106831818,0.03058582315018607,-0.017099635378545534,-0.002209196190321412,0.029004359095513858,15.179160903284105,25.24669898073784,8.975847437303601,14.436464936460434,33.09750747278109,39.55412553692653,40.97800761877647,41.450383464713866,41.48343264504174,64.37021282953509,48.92950716806749,10.25843440373481,5.18227125773279,0.0,15.4407056614676,7667.16122167287,6441.92707880952,2788.5515450384983,128.0,46.0,60.0,78.0,89.0,91.0,100.0,110.0,120.0,435.2270397880008,34.0,5.081404364984463,5.921578419643816,6.794586580876499,7.6577552711348655,8.537191877922927,9.408289184655837,10.289599932128478,11.16403443334352,12.045980181547149,0.633879781420765,0.9813114754098362,1.1328450716815486,0.5944387044116666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6608716697752037,0.9676631308261009,1.002973027831839,0.6195199721047875,8.0,3.0,1.0,0.0,0.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,10.006437125691184,6.041840829147961,0.0,11.731584227351433,0.0,4.794537184071822,4.794537184071822,5.213385095654868,10.197363616602075,75.72296976969075,34.24246723983325,18.52902952053558,0.0,260.0744906988124,-676.5327074829336,-30.32543357707857,-11.090700122671041,-27.061308299317336,417.5407216738915,1086.1501801249346,23.725452202147533,17.80574065778581,30.17083833680374,0.4666666666666667,0.8592786535800325,0.18440921037293154,31.14244286592172,0.12539731368327323,17.331733436959876,0.14072134641996734,8.0,0.29411764705882354,0.2611841796462358,0.6068816071618741,0.7974315056196981,0.8921441436650966,0.9108156602722899,0.9163439585899785,4.161700000000002,,1.4642857142857144,1.7854816193578407,1.6456504849231428,1.460297629707019,-5.837791883926546,1.5820838433292534,1.44679936621724,-2.793606575391221,121.38650000000004,14.69560176298435,0.0,25.52404353876229,5.917906046161393,52.620273702910424,0.0,54.09438803938988,0.0,22.514758973090913,4.23410650459726,0.0,5.53338948872752,2.3978952727983707,7.025538314638521,4.442651256490317,8.612685172875459,6.293419278846481,10.252699719093494,38.666666666666664,15.580093248879672,11.779275941969619,2.494835645566573,0.0,0.0,0.0,4.176704118572113,0.0,59.86000000000001,0.0,24.7877002765781,0.0,0.0,0.0,0.0,0.0,-1.1018641473899407,69.10354937257446,0.0,0.0,0.0,48.54889678005431,16.133830774056218,5.917906046161393,45.597127959546896,48.53093654769288,0.0,22.514758973090913,0.0,36.26076096911166,40.313171856287425,40.628985942938996,403.41404984571074,,328.98365172763573,324.6683239649741,321.8926292537176,329.02326006218055,407.4610065317735,327.18554685902245,329.24074781547523,380.2958184220666,40.628985942938996,403.41404984571057,,327.610883870493,322.997650925186,320.4903174755035,327.6542310343302,411.474488451973,325.70234325590127,327.8843734096464,382.21642294264825,4.820894828054785,301.05264835062,,244.48138791591433,241.45951395782754,239.29274081205818,244.50850050094638,297.05009038904547,243.213023012926,244.66232832895935,279.4458047880777,1.2696558107168436,12.60668905767846,,10.280739116488617,10.14588512390544,10.059144664178675,10.281976876943142,12.733156454117921,10.224548339344452,10.288773369233601,11.884244325689581,2.4178780135192577,201.70702492285537,,164.53758479238928,162.389958283092,160.9874413455098,164.55726433201863,202.81834828402316,163.64221354961526,164.6655863879319,189.7114081836284,59.02745098039215,0.0,5.6742043106950675,0.0,0.0,0.0,9.766815400422592,61.18135469774218,2.228843432853104,0.0,0.0,0.0,-1.0581618887653137,1.5048869939517484,0.0,0.0,0.0,37.790718298392036,582.2602873329649,94.48990073872845,219.55457983158107,288.4907650761917,322.75542758268205,329.5103150848456,331.5103150848457,888.0,142.90042024623756,95.35492503973903,80.79238500806743,112.07000000000001,112.07000000000001,0.875,8.78570319554024,6.087462841250339,4.780566119635656,5.572075641780649,,5.5643262069198,5.564149929430956,5.563905761599973,5.564327330274626,5.557350748086449,5.564257361780366,5.564335079266918,5.562005627178824,0.14939269123861426,0.17412736380564528,,0.17388519396624375,0.17387968529471737,0.17387205504999917,0.17388522907108206,0.17366721087770154,0.17388304255563644,0.1738854712270912,0.17381267584933824,2.7277097843663873,2.880918440968614,,2.8795267102791207,2.879495029842968,2.879451146555932,2.8795269121642497,2.87827232035641,2.8795143376103063,2.879528304783058,2.879109577335537,340.9500000000012,371.88113557808987,207.23034382076625,,207.79938334936733,207.78314378004237,207.92807015988797,207.7999940411019,209.32375758284658,207.79874969884708,207.79982592881618,208.50113796082127,11.621285486815308,6.475948244398945,,6.493730729667729,6.493223243126324,6.497752192496499,6.493749813784435,6.541367424463956,6.493710928088971,6.4937445602755055,6.515660561275665,7.0817250850029865,6.496981756480112,,6.499723920946517,6.499645767663965,6.500343013159671,6.499726859794686,6.507032942528492,6.49972087160404,6.499726050784298,6.5030953088753085,0.0,26.29258727052985,24.040926987958784,3.6641060502838663,-0.7844634965719091,14.717128777584573,1.9744160739465781,5.928631669601594,0.0,408.88062184274486,176.23043124759857,-458.4288542581285,-20.548975113626422,-7.515227118985712,-18.337154170325135,282.9319447913061,735.9918849740083,16.07672733259664,12.065440737278823,20.444219027055787,3122.0,49.0,1.9591858072024213,1.011932406435615,0.0,0.0,0.5554465072933212,0.2001718545475698,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.022360679774997897,0.25,0.0667358954430545,0.3103012199276332,0.07335366388705482,23.087211190881025,18.65449437506997,15.417922655570507,10.863955775643774,13.521961995928978,8.130202648093844,10.760505879535097,5.415985359639198,9.24888679293176,3.783759496689469,6.798123415045626,2.3800911675952467,4.434664163778472,1.3814047359513055,3.188854233444028,0.8353321277073993,4.527406753867608,1.9096455719117964,7.8467284529041725,2.659329772938981,11.88443217693517,3.333216664752989,106.51841517760556,52.74570851493472,32.187698016748335,26.837362703777487,25.71459861247188,25.58572197845343,160.0,186.0,67.32299699999999,33.109003,0.2786885245901639,164.08,11.11111111111111,7.277777777777776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,17.0,17.0,61.0,0.0,0.0,63.0,17.0,2.0,10.0,53.0,19.0,34.0,44.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,5.0,2.0,1.0,32.0,8.0,0.0,5.0,3.0,0.0,3.0,10.0,0.0,0.0,0.0,1.0,3.0,3.817712325956905,7.577021919475296,4.347046915777855,4.8704149133209365,5.426325722747208,5.877035256356946,6.145525937234748,6.581462307402701,6.9609997935009496,7.302612235754007 +71616,C[C@@H](c1ncncc1F)[C@](O)(Cn1cncn1)c1ccc(F)cc1F,0,29.28205128205128,7.117038461538459,3.7435897435897436,12.051282051282051,173.58641808082015,119.03120642177724,1.4992546581509234,7.111866666666663,8.550747863247862,8.386324307692304,235.27016692670566,29.048780487804876,6.7914609756097555,4.439024390243903,10.146341463414634,152.44317604753286,113.07377810989273,1.7838891223414641,6.908758536585367,4.1114498644986455,8.10124702439024,276.48602291183016,26.352941176470587,6.807289705882354,4.161764705882353,8.617647058823529,160.59945372478083,101.79437008839997,1.5891554599911173,6.890600000000001,4.18954248366013,8.14825805882353,246.19586879400316,22.97752808988764,6.8216741573033675,3.5842696629213484,6.977528089887641,162.59618806332972,86.65584344897078,1.4347106719257978,6.884853932584269,4.447877652933832,8.20400391011236,216.97047090219627,21.14018691588785,6.761140186915886,3.1401869158878504,6.233644859813084,165.38147926197934,79.20989786981094,1.307996930705514,6.807259813084112,4.942107995846315,8.172051962616822,194.62340870583148,18.991803278688526,6.66862213114754,2.8278688524590163,5.459016393442623,169.79721671136664,69.86965502807868,1.2282008224121477,6.703537704918031,4.28415300546448,8.114631967213114,179.9622806165473,19.016806722689076,6.69230168067227,2.672268907563025,5.966386554621849,171.9980219003318,70.41372061536804,1.1901666590431177,6.717861344537815,4.528944911297853,8.12067220168067,173.71939172571805,19.896907216494846,6.89398762886598,2.536082474226804,6.670103092783505,178.12875751903795,74.9267668170327,1.1163185477657935,6.894728865979382,5.324169530355097,8.279624536082475,168.26332502006377,19.475409836065573,7.172080327868853,2.3114754098360657,6.754098360655738,183.2541790440589,71.92247343706227,1.0441348840621638,7.145752459016394,5.737704918032787,8.531454688524592,159.27621007782798,7.980276134122289,0.28350624589086126,0.019984780296140592,0.7034845496383955,5.21104536489152,3.183550805078993,38.80601712346665,0.22478143939852074,0.24746666666666675,3.640925195412377,0.16148860486522015,43.59211656734603,0.14417664886708115,-0.011058403489360331,-0.007292053243780891,0.2070845560526612,1.102900851493722,-0.4096303628526874,0.6711249751040851,-0.01314439371939487,-0.008041463414634166,-0.23829942235977256,-0.008481785603181472,-0.9076657160455124,0.3470240167072751,-0.015557414819971374,-0.002206616181419913,-0.08018138221758131,-0.15750087017055342,-0.0722442994758655,1.8027778418894793,0.0049203905334001714,-0.010788235294117668,-0.027281928276460678,-0.010951239857678766,3.6275341720456176,-1.1485273585532876,-0.023893022036064377,0.0004174382314503305,-0.15407515753237444,-0.816634532278439,-0.11007939856595202,-5.562596853713348,-0.02653585385596059,-0.022525842696629213,-0.36656061908150644,-0.013557529094548972,-6.539397593508162,-0.4768014156942985,0.01111141526418307,0.0009579439745578772,-0.07707668958567594,-0.2474699994469945,-0.23022658405626623,-2.186380057734128,-0.031211037964936218,0.008971962616822446,0.27941588614365986,0.007041438748486919,-6.394018461416364,-0.4504316616548649,-0.022398091204018027,-0.0012125842617539606,-0.005922548797706421,-0.32748084198273375,-0.07591235186037636,-2.3168832404274546,0.0027316855275057615,-0.01998360655737701,-0.28528002470572866,-0.011590979812677154,-0.27442025123603336,0.021232161503654548,0.0025760855032348523,0.0006742367221059244,-0.0019116127713412776,0.081348515737656,-0.16241794170570392,0.10837328137725494,-0.00376210612713805,0.0022949579831933087,-0.057569417203655514,0.0020593167034072065,-0.7820281402620722,0.6594278045507228,0.008332294949741406,-9.633551450939217e-05,0.003890549489280666,0.16378942231440244,-0.03630611402417822,3.2981729981610632,0.006006770277942378,0.009260824742268022,0.12197058101432932,0.0031697118146634387,3.1917574946187415,-1.290910854593074,-0.04026051238939011,2.721246655061094e-05,0.03506105775967063,-0.5973421282374625,0.12971365191116077,-6.566109795497564,-0.0022013763722408194,-0.038201639344262336,-0.6979140095733201,-0.020815579224194625,-3.604460842439138,,,0.44761904761904775,1.37,0.7,0.06,0.67,0.03,0.7685247523194899,0.01998696846627695,0.030306968466276948,1.1072004348206888,0.2739454006084987,0.20263617342014817,1.8757251871401786,0.47658157402864687,2.013378757044249,1.3221678970848467,0.40757614202788395,0.07168117681555165,0.21195354111596637,0.6912108599594019,8.95166781353847,1142.0,277.5644999999999,146.0,470.0,6769.870305151986,4642.217050449312,58.47093166788601,277.3627999999999,333.47916666666663,327.0666479999999,9175.536510141521,1191.0,278.44989999999996,182.0,416.0,6250.1702179488475,4636.024902505602,73.13945401600003,283.25910000000005,168.56944444444446,332.15112799999986,11335.926939385037,1792.0,462.8957000000001,283.0,586.0,10920.762853285096,6922.017166011198,108.06257127939598,468.5608000000001,284.88888888888886,554.081548,16741.319077992215,2045.0,607.1289999999997,319.0,621.0,14471.060737636346,7712.3700669584,127.689249801396,612.752,395.8611111111111,730.1563480000001,19310.371910295467,2262.0,723.4419999999998,336.0,667.0,17695.81828103179,8475.45907206977,139.95567158549,728.3768,528.8055555555557,874.4095599999999,20824.70473152397,2317.0,813.5718999999999,345.0,666.0,20715.260438786732,8524.0979134256,149.840500334282,817.8315999999999,522.6666666666666,989.9850999999999,21955.39823521877,2263.0,796.3839000000002,318.0,710.0,20467.764606139484,8379.232753228796,141.629832426131,799.4255,538.9444444444446,966.3599919999997,20672.607615360448,1930.0,668.7168,246.0,647.0,17278.48947934668,7267.8963812521715,108.28289913328197,668.7887000000001,516.4444444444445,803.12358,16321.542526946187,1188.0,437.49690000000004,141.0,412.0,11178.504921687592,4387.2708796607985,63.692227927792,435.8909,350.0,520.4187360000001,9715.848814747507,311.2307692307693,11.05674358974359,0.7794064315494831,27.435897435897424,203.23076923076928,124.15848139808074,1513.4346678151994,8.766476136542309,9.651200000000003,141.9960826210827,6.298055589743586,1700.0925461264953,5.911242603550328,-0.4533945430637736,-0.29897418299501655,8.49046679815911,45.2189349112426,-16.794844876960184,27.51612397926749,-0.5389201424951897,-0.32970000000000077,-9.770276316750675,-0.3477532097304403,-37.21429435786601,23.597633136094707,-1.0579042077580534,-0.1500499003365541,-5.452333990795529,-10.710059171597633,-4.9126123643588535,122.5888932484846,0.33458655627121164,-0.7336000000000014,-1.8551711227993262,-0.7446843103221561,246.67232369910198,-102.2189349112426,-2.1264789612097297,0.037152002599079414,-13.712689020381326,-72.68047337278107,-9.79706647236973,-495.071119980488,-2.3616909931804924,-2.0048,-32.623895098254074,-1.2066200894148584,-582.0063858222264,-51.01775147928994,1.1889214332675886,0.10250000527769286,-8.247205785667326,-26.479289940828412,-24.634244494020486,-233.94266617755167,-3.3395810622481754,0.9600000000000017,29.897499817371603,0.7534339460881003,-684.1599753715509,-54.95266272189352,-2.732567126890199,-0.1479352799339832,-0.7225509533201833,-39.95266272189352,-9.261306926965915,-282.6597553321495,0.3332656343557029,-2.4379999999999953,-34.8041630140989,-1.4140995371466127,-33.47927065079607,2.526627218934891,0.3065541748849474,0.080234169930605,-0.22748191978961202,9.680473372781064,-19.327735062978768,12.896420483893337,-0.4476906291294279,0.27310000000000373,-6.850760647235006,0.24505868770545755,-93.0613486911866,63.96449704142012,0.8082326101249164,-0.00934454490741104,0.3773833004602246,15.887573964497037,-3.521693060345288,319.9227808216231,0.5826567169604107,0.8982999999999981,11.831146358389944,0.30746204602235355,309.6004769780179,-78.74556213017752,-2.4558912557527965,0.0016599604595872674,2.1387245233399086,-36.43786982248521,7.912532766580807,-400.5326975253514,-0.13428395870669,-2.3303000000000025,-42.572754583972525,-1.2697503326758721,-219.87211138878743,0.7210693303426382,0.5257233570692394,0.4412792352117101,0.27306456424224773,0.2840178742970536,0.14407923632300376,0.17965529750287695,0.07864860548618556,0.11542268056174065,0.04065963898683617,0.06968872759803227,0.02180493469386772,0.04438423516752905,0.011175952941301802,0.02707371895425202,0.006032277657217721,9.006256053132088,5.691454261020076,4.110145591465352,2.190451721093198,0.4169039452916434,-0.40841558536438793,4.029038308066616,0.992931137541387,7.0062410667672825,0.993947704245139,17.42685718994555,10.952357313602624,19.002214768739982,11.703171980912224,1.9882432231325902,0.5449596026342319,3.991175128099476,2.2402156198850216,8.00400008051259,1.1364834304658822,4.0125731325910055,2.4359776294963242,20.89405781217114,13.303153782747538,0.33092190966897883,0.684784922021446,0.8579388201613729,0.9105011865528796,0.9105011865528796,0.9105011865528796,1.8163037298409421,873.966564339529,0.0,1.0,2.0,0.0,7.0,0.0,1.0,2.0,0.0,3.4273717150104295,1.4405335760867706,0.4683246796536009,0.17320224364521764,0.17320224364521764,0.17320224364521764,88.42063433062,1136.2234925145833,65.56910516180477,29.13393570550214,63.796704242955485,,10.0,408.0,28.970619380282766,18.277772537865165,17.802135892458033,6.06636706846161,24.65689778330084,24.260180284364893,0.0,0.0,20.050617371142664,0.0,11.190476190476193,34.25,17.5,1.5,16.75,0.0,0.052380952380952264,0.75,0.2722196426421775,0.07030888733016383,-0.2019107553120137,0.02478388278388277,0.24001855586930182,0.0,0.7130647130647131,0.944380952380952,0.44084507042253557,0.6427558257345493,0.9195970695970692,19.213118807987247,0.4996742116569237,0.7576742116569237,27.68001087051722,6.8486350152124675,5.065904335503705,46.893129678504465,11.914539350716172,0.47398144413069815,0.15106382978723398,0.044680851063829775,0.30382978723404247,0.25,0.41279732440504174,-0.9251386349319771,-0.07923183809278214,-0.023721503459794287,-0.07709488624433143,0.5872026755949583,1.3160063053007751,0.05009999603762501,0.0337437514179686,0.04874097427039908,-4.380415822605651,0.6164353833355435,0.6062251109787684,1.279906331209837,0.8952131297013909,0.4309650855781834,1.0712800502782576,0.6114274910193842,1.083442609612802,0.5866531951542988,0.6164527480123377,0.6463686761177466,0.9340204772328125,0.7155178680468726,0.7299798475463397,1.0412768939202688,1.4868884002199017,0.8029122322661083,0.9337306599412385,0.7064272839097409,0.9485010381603997,0.7132596738960835,0.6536868806084095,0.7521827860196563,0.8383031502831387,1.0083200497647833,0.9739011485160607,0.9494915450778444,1.5562322797437789,1.0210344563617957,1.0165114830634074,1.0057512689710193,1.1438478668430245,0.973720447873513,1.0503121818774868,1.0078761539166177,1.1126654617660001,0.9944539663033986,0.8520414407598851,1.0066664462155817,1.268547471394882,0.9549937388129919,0.9660851565975522,0.9861996913476772,1.134978964647153,0.8568890372840173,0.853216227191462,0.8779280026505917,1.1339389363321477,1.0573304538787547,1.0025715202250844,1.045004463965338,0.9706679944844495,1.03068651419069,0.9071914139378444,1.0573062105887219,0.9621434305803518,1.0115850708788097,0.9985295444804076,1.0015170464768295,1.0150402926890492,1.0111387115399793,0.911245930889464,0.9070966674061057,0.7681771774130216,0.9749648534659887,0.9381274431941669,1.0089438629319742,0.9644947282381944,0.9197513471568992,0.8930428766904587,0.8931397131815764,1.0191951752193464,0.9956479863018582,1.0864645359921028,0.9359408246367952,0.6853839483572601,1.0650124476146623,1.0526573149290388,0.9989437014322083,0.9138065451180368,1.0805303416144818,1.041330374589622,1.05972864192819,0.9050457097939404,1.30102185522232,1.5517621374062858,0.9436575361392041,0.5449364179561822,1.3134547846266487,1.2164123630511683,1.3222644023355372,0.9747382202112623,1.5526264295342862,1.6259074981832449,1.5101982907827083,1.0212999969727583,6.0,0.012345679012345678,4.000000000000001,2.9097222222222223,1.9105555555555558,1.218611111111111,0.7110204081632653,0.36203231292517,0.2665816326530612,0.061250000000000006,5709.278253890539,6171.087900493842,2473.2929329941917,2325.077528951194,10.734869123520888,0.4623271492853052,5.7718476836926325,0.8598670151761666,1.0,0.25,1.8580305038518192,3.844868642775478,4.817077539208648,5.112199975217031,5.112199975217031,5.112199975217031,0.22222222222222218,0.012345679012345678,0.10256410256410259,0.07096883468834689,0.04443152454780363,0.027695707070707072,0.0169290573372206,0.01034378036929057,0.01332908163265306,0.007656250000000001,0.5284862394446923,19.753086419753085,8.347140039447732,4.295857988165681,140.56237734998655,1.0,4.148861380455342,112.58919029200823,,88.66528870715214,87.16510959344915,86.59648375937209,88.45651100263359,123.95133497468979,88.021621974367,88.86018168863865,107.21370400314521,0.018066624067130534,-0.039005854896111816,-0.364880330717927,0.2943697287440166,0.21164675689149012,-0.12867090488996397,0.017294353423821084,-0.058476330405958656,-0.03249513772077383,-0.06545023848884167,-0.05252250219302127,-0.02082178585302798,0.043485214154866156,-0.05487503377953925,-0.11041483312408738,-0.11397746014293574,-0.030224428908580833,-0.02269299404947706,0.046456141998641474,0.02188966556387552,-0.0435947008113591,-0.007493130677564135,-0.06781431957269536,0.08321537144087492,-0.1439207540253378,-0.0842768806062292,0.020887806884269076,-0.2190171164548987,-0.15671222856365194,-0.03457755358900912,-0.14334366848355462,-0.11805180146086038,-0.09102576520728396,-0.10067787702515245,-0.08395347217139072,-0.15001330764486648,-0.05974748338037798,0.03919284116393163,0.04793367554522843,-0.10956415407459173,-0.04748951162741339,-0.07231754671198144,-0.05634126405649569,-0.13885060104807573,0.036255236867547586,0.0767430999394682,0.04360331649631729,-0.14667832087341207,-0.056443117266192895,-0.07900387214975295,-0.060675386158142136,-0.00841887544047801,-0.0628435983668607,-0.023845183101606805,-0.0597042266166088,0.012152629393313415,-0.08075272046353854,-0.07835371763890837,-0.07177583720133746,-0.006295180708008934,0.0026605798028553765,0.009086521163369866,0.033737509850740324,-0.0027173486216916674,0.0156107863281573,-0.051017857621931006,0.0027926927165045183,-0.01673672940792997,0.00927380650536089,-0.015811755011114724,0.012752086781144284,-0.017939668954910844,0.08263220388215926,0.02939016360489289,-0.004820444011986272,0.005530397918874669,0.03143120254103028,-0.011404282905193767,0.08499127822542248,0.02672271471352589,0.03742251377532874,0.03349988655850831,0.019628083463281567,0.07321868599079728,-0.16176267999967583,-0.14200926072326753,0.0013616595302709503,0.049839129768653324,-0.11462999962770377,0.04074496053407327,-0.16920339375738014,-0.009793408112926722,-0.15437084864330144,-0.19168589633555302,-0.12889813025239455,-0.08268607092914516,6.169089805608331,13.660833729610797,5.479913756094796,19.76647645980693,38.86292416317459,44.67498347470825,47.165811150818065,47.165811150818065,47.165811150818065,50.33446892610622,33.05419742712117,10.189403550697099,1.7920294203887912,5.298838527899159,17.280271498985048,3322.782906324391,2649.715164930889,1657.8182418616045,65.0,39.0,52.0,67.0,76.0,80.0,83.0,83.0,78.0,349.1150447280004,27.0,4.890349128221754,5.752572638825633,6.652863029353347,7.537430036586509,8.44741429680832,9.34233308143468,10.257624277921856,11.158291294379149,12.076447897736188,0.7692307692307695,1.0456410256410258,1.1592803853429234,0.7457207166934582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6760034085674808,1.0274509803921563,1.0443909089211354,0.6727455259985281,7.0,4.0,0.0,0.0,0.0,0.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,5.106527394840706,36.217452717369106,5.817220841045895,0.0,0.0,0.0,32.80498364101127,5.098681808301038,0.0,12.990104268152233,6.06636706846161,17.54772460632,18.435527972374114,209.28142986926193,-469.03001763617186,-40.16923411779938,-12.026410708619792,-39.08583480301432,297.70206419988193,667.1934748784114,25.399871044005387,17.107524996882347,24.710869439941163,0.5,0.6638101757456959,0.1706285436502571,57.979576177995796,0.09436396685638476,115.43541856082487,0.3361898242543041,5.0,0.18518518518518517,0.35154003932207534,0.7274505295082606,0.9113928022389157,0.9672300732331963,0.9672300732331963,0.9672300732331963,2.1769,,1.9642857142857149,2.384784755246342,2.3604916937161646,2.0651333902620452,-9.667817358838906,2.142531430100318,1.8903097657793637,-3.635596615177292,80.68180000000002,18.277772537865165,0.0,24.732420306287846,0.0,24.98745046274828,0.0,72.08694701097467,0.0,0.0,4.007333185232471,0.0,5.351858133476067,2.3978952727983707,6.898714534329988,4.442651256490317,8.543055850941965,6.259581464064923,10.241209008557773,30.00000000000001,7.462347726127487,15.094900023650926,0.0,0.0,0.0,0.0,-2.777830687830686,1.2761824452003023,40.78000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.211935028374015,0.0,13.171245143024459,0.0,29.838947701128554,12.145807216896262,17.451662523137685,24.099022732397472,43.37790500129153,0.0,0.0,0.0,29.08310795104487,26.36413293413175,31.48524254001891,225.17838058401645,,177.17343455716144,174.13943640647858,173.0041281832469,176.74781133404622,250.68624737908857,175.87184143432597,177.56913859601497,215.3804264758778,31.48524254001891,225.17838058401645,,175.3662917000186,171.94543443165196,170.8324758250281,174.8478886150051,257.5704873082186,173.90071251863367,175.830053611498,218.06300462146788,4.989295863782981,149.94188181358254,,121.04771863090436,119.36625823502501,118.68374129457646,120.82228657897303,160.66478510645328,120.32479074627926,121.26238861031538,141.88990143049494,1.2594097016007564,9.007135223360658,,7.086937382286457,6.965577456259143,6.920165127329876,7.069912453361849,10.027449895163542,7.034873657373039,7.102765543840599,8.615217059035112,2.4974957002090004,112.58919029200823,,88.66528870715214,87.16510959344915,86.59648375937209,88.45651100263359,123.95133497468979,88.021621974367,88.86018168863865,107.21370400314521,40.070588235294096,0.0,1.491209372637944,0.0,41.755505462617656,0.0,11.294389644746788,40.73124544792428,-0.23595049130763446,0.0,0.0,0.0,-0.9864247921390785,0.0,-1.9576620370370366,0.0,0.0,26.237075513942596,336.54080229820534,72.46318965022095,149.94987706824364,187.86602402913726,199.3757990334642,199.3757990334642,199.3757990334642,675.0,128.11532568126745,170.4426917709385,73.14229870589187,76.72,76.72,1.0,8.180530936742738,5.754887502163468,4.270308938825904,4.920563734525999,,4.940953012761001,4.942637567901068,4.943779774794216,4.941466049676045,4.883902815970514,4.941759824838702,4.940588637031977,4.917333150617365,0.17081235755303617,0.19682254938103994,,0.19763812051044002,0.1977055027160427,0.19775119099176863,0.19765864198704178,0.19535611263882058,0.19767039299354805,0.19762354548127908,0.1966933260246946,2.367976907510572,2.5097138360027746,,2.5138489620307416,2.514189841216829,2.5144209071042254,2.51395279023561,2.5022353894747007,2.514012239481529,2.5137752132692426,2.5090570728627513,230.36999999999995,185.1624966327249,147.20782968913588,,144.9932071665765,144.7477988798099,144.7982756015035,144.90533426941022,151.89122634762796,144.8854304492197,145.0503424997539,148.20400826610373,7.406499865308996,5.888313187565435,,5.7997282866630595,5.789911955192395,5.79193102406014,5.7962133707764085,6.075649053905119,5.795417217968788,5.802013699990156,5.9281603306441495,6.137524531596812,5.908136127577284,,5.8929776260703095,5.8912836418545425,5.891632302925465,5.8923713939766795,5.939455380410957,5.892234027140707,5.893371603691824,5.914880490700381,43.031687907817954,11.199901283414091,15.189388384983623,-2.2527985638699914,-3.4691189531368094,2.8012529919375155,4.661094734189971,1.2552588813303096,0.0,276.407880905812,106.10223055890489,-237.79047716449855,-20.36513866712339,-6.097191722166631,-19.815873097041546,150.9300326996527,338.25607911399055,12.877315370795522,8.67323279779463,12.5280029301478,1359.0,41.0,2.0775704482984425,0.8717645849030332,0.11785113019775792,0.04564354645876384,0.7292045542587002,0.26197718474904974,0.11615390417644599,0.035997930146750165,0.0,0.0,0.0,0.0,0.14433756729740643,0.029814239699997195,0.25343678769327627,0.061804778950690274,0.352580346433728,0.056675792698325386,18.026733258565955,13.143083926730986,11.914539350716172,7.372743234540689,11.076697097585091,5.619090216597147,9.342075470149602,4.089727485281649,7.733319597636624,2.7241958121180234,5.296343297450452,1.6571750367339468,3.5507388134023237,0.8940762353041442,2.247118673202918,0.5006790455490708,5.034907062342048,1.9388735904266448,8.55894023461255,2.6079224429557466,13.270086650601256,3.384327264037202,80.12056115287321,41.776004286153224,29.6522889011325,25.010024477938778,25.010024477938778,25.010024477938778,132.0,157.0,44.02810199999999,22.513897999999998,0.5128205128205128,129.09,8.840277777777779,5.458333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,17.0,39.0,0.0,0.0,41.0,17.0,0.0,8.0,33.0,17.0,27.0,24.0,0.0,0.0,0.0,16.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,6.0,1.0,2.0,25.0,9.0,0.0,5.0,1.0,0.0,3.0,5.0,0.0,0.0,3.0,2.0,3.0,3.597312260588446,6.79062437439206,4.208417018481948,4.7481876928230164,5.264308050445289,5.622662798371214,5.753365974845029,5.989587787095122,6.2949776757449465,6.579077585826837 +657181,CCNC(=O)[C@@H]1CCCN1C(=O)[C@H](CCCN=C(N)N)NC(=O)[C@H](CC(C)C)NC(=O)[C@@H](CC(C)C)NC(=O)[C@H](Cc1ccc(O)cc1)NC(=O)[C@H](CO)NC(=O)[C@H](Cc1c[nH]c2ccccc12)NC(=O)[C@H](Cc1cnc[nH]1)NC(=O)[C@@H]1CCC(=O)N1,0,21.98830409356725,6.275487719298246,3.0409356725146197,7.099415204678363,167.36377902887085,86.59465094152044,1.3390118830837192,6.31623567251462,5.457764782326185,7.793498175438596,199.34647854109835,23.664772727272727,6.445369318181817,3.7386363636363638,6.340909090909091,151.82186198165394,88.89491422727274,1.6838310752386356,6.565480113636369,3.1934974747474745,7.851083727272723,247.11521140514617,19.522151898734176,6.2736727848101275,3.3512658227848102,4.80379746835443,157.4525209061084,71.78728318354428,1.4358952946112913,6.36460569620253,3.0590717299578065,7.741555240506331,202.11624179920116,15.759550561797752,6.2274271910112375,2.7752808988764044,3.602247191011236,164.27839962719423,55.841900382022445,1.2102971970810585,6.28519191011236,3.0833333333333335,7.764510328089891,165.52429749562054,15.557377049180328,6.258141188524591,2.6762295081967213,3.747950819672131,166.3645983650517,55.37975330942623,1.1417350397375754,6.305878688524591,3.2709471766848814,7.82359231967213,159.64244037382858,17.531440162271807,6.419713184584179,2.8113590263691686,4.466531440162272,165.05519501348186,63.29178593509127,1.2041715914097646,6.465534279918865,4.137198557583954,7.94170554158215,170.55888835789847,16.3576512455516,6.323706227758008,2.7437722419928825,3.8220640569395017,165.2482468873316,58.35058509608541,1.195866326162717,6.373546085409254,3.383995650454724,7.861652213523136,166.89111629612498,15.890127388535031,6.279459713375796,2.679936305732484,3.785031847133758,164.51543125325784,56.5236436687898,1.1797023663564061,6.3321264331210205,3.3853060863411195,7.838846509554144,164.74334906609522,16.27433628318584,6.268007964601767,2.6283185840707963,3.9292035398230087,164.2195481697552,58.206434550147485,1.1946386556962658,6.321741592920354,3.7547935103244843,7.808040536873156,165.08574041072112,7.716699155295647,0.14421668205601718,0.026135912720821296,0.5846585274101433,3.9389213775178695,1.45294163271653,36.572450769125545,0.20914716657229543,0.13417866694025507,2.234585000512979,0.08738711097431687,47.29093134276806,0.029812008978676016,-0.015377467542460556,-0.016997609407129816,0.15743344494498698,1.0165544332211,-0.15800232660604266,0.22639151862034163,0.004131556864409433,-0.012083561278373135,-0.1338665587857647,-0.010042892473519421,1.7498014736730518,0.24804656977652773,0.01969725309832432,0.0022532091271324733,-0.044851731940456364,0.25683700578215346,-0.15189577805333937,1.0444231092518383,-0.020467073934434966,0.01714608877815483,0.14350141924010806,0.01162521414227206,-3.273135238479692,-0.39481204050492436,0.0013667872915088957,0.0038184137070447076,0.005038561754716442,-0.18856984325149112,0.07824993058418934,-1.9185072069861109,-0.01161214161059949,9.595100614852693e-06,-0.1452138927602424,0.0010678728748190688,-3.068586649726257,0.11768872697834447,-0.01970425395708134,-0.00640937273413863,0.003612012327178164,-0.11159178303987037,-0.06267940161836728,0.6757588872233213,0.008901315282520781,-0.015469861456600634,-0.2879948419045569,-0.013851520570712228,3.147732445542507,0.17852402774647552,0.014481506620542362,0.0024209929729477916,-0.012697861716158483,0.13006786367165016,-0.05381827991184846,0.7679388082085999,-0.0032541479748622953,0.012523146755580148,0.38362978556949945,0.010916613827884714,-0.7602660063758987,-0.2450024164140417,-0.004679000217970128,0.0031877970206439957,0.001905748047183309,-0.20130925706251923,0.12647932874802986,-1.1430159168539964,0.001070656841912766,-0.00478991332430539,-0.172133704551974,-0.0033676153134565372,-0.410209261522259,-0.2168947078713533,-0.017956080312805666,-0.00450946468526267,-0.014753137608675708,-0.13161516080836674,-0.0529175401778041,-0.9317001330302614,0.004013561817636442,-0.015282055587031298,-0.2683392892189376,-0.01223784792816646,0.8809298160688671,0.1398448596088715,0.014340783140898374,0.0018764278683477652,-0.01937363376008894,0.23030700316836014,-0.0648422403999906,0.5711906082658229,-0.009360273964335223,0.012408294194144296,0.33290006334299077,0.010125902877914485,-1.693241012220785,,,0.45862068965517233,1.0545977011494252,0.40229885057471265,0.005747126436781609,0.6522988505747126,-0.25,1.5982178926605923,0.021710198965897397,0.02764123344865602,1.4424356251768367,0.20547310977308222,0.27183064025381454,3.0406535178374288,0.4773037500268968,2.0023096852885924,1.392939743560621,0.3648410126074113,0.24452892912056032,0.0,0.6093699417279715,7.068102117707614,3760.0,1073.1084,520.0,1214.0,28619.206213936915,14807.685310999996,228.97103200731598,1080.0763,933.2777777777777,1332.6881879999999,34088.24783052782,4165.0,1134.3849999999998,658.0,1116.0,26720.647708771092,15645.504904000001,296.3542692419999,1155.524500000001,562.0555555555555,1381.7907359999992,43492.27720730573,6169.0,1982.4806000000003,1059.0,1518.0,49754.99660633025,22684.781485999993,453.74291309716807,2011.2153999999996,966.6666666666669,2446.331456000001,63868.73240854757,7013.0,2771.2051000000006,1235.0,1603.0,73103.88783410144,24849.645669999987,538.5822527010711,2796.9104,1372.0833333333335,3455.2070960000015,73658.31238555114,7592.0,3053.9729,1306.0,1829.0,81185.92400214523,27025.319615,557.1666993919368,3077.2688000000003,1596.2222222222222,3817.9130519999994,77905.51090242834,8643.0,3164.9186,1386.0,2202.0,81372.21114164656,31202.850465999996,593.656594565014,3187.5084,2039.6388888888891,3915.260832,84085.53196044394,9193.0,3553.9229000000005,1542.0,2148.0,92869.51475068035,32793.028824,672.0768753034469,3581.9329000000007,1901.805555555555,4418.248544000003,93792.80735842224,9979.0,3943.5007,1683.0,2377.0,103315.69082704592,35496.848223999994,740.853086071823,3976.5754000000006,2125.972222222223,4922.795608000002,103458.8232135078,11034.0,4249.709399999998,1782.0,2664.0,111340.85365909402,39463.96262499999,809.9650085620682,4286.1408,2545.7500000000005,5293.851484,111928.13199846892,1319.5555555555557,24.661052631578936,4.469241075260442,99.97660818713452,673.5555555555557,248.45301919452666,6253.889081520469,35.76416548386252,22.944552046783617,382.1140350877194,14.943195976608184,8086.749259613339,5.246913580246979,-2.706434287473058,-2.9915792556548477,27.70828631031771,178.9135802469136,-27.808409482663507,39.84490727718013,0.7271540081360601,-2.126706784993672,-23.560514346294585,-1.767549075339418,307.9650593664571,78.38271604938276,6.2243319790704845,0.7120140841738616,-14.173147293184211,81.1604938271605,-47.99906586485524,330.03770252358095,-6.46759536328145,5.418164053896926,45.34644847987415,3.673567668957971,-1034.3107353595826,-175.69135802469134,0.6082203447214586,1.6991940996348949,2.2421599808488164,-83.91358024691355,34.82121910996426,-853.7357071088194,-5.167403016716773,0.004269819773609448,-64.62018227830787,0.4752034292944856,-1365.5210591281843,57.4320987654321,-9.615675931055694,-3.1277738942596516,1.762662015662944,-54.45679012345674,-30.587547989763237,329.7703369649808,4.343841857870141,-7.549292390821109,-140.54148284942374,-6.7595420385075675,1536.0934334247434,88.01234567901243,7.139382763927385,1.1935495356632613,-6.260045826066132,64.12345679012353,-26.532411996541292,378.59383244683977,-1.6042949516071117,6.173911350501013,189.12948428576323,5.381890617147164,-374.8111411433181,-137.69135802469143,-2.6295981224992118,1.7915419256019256,1.0710304025170196,-113.13580246913581,71.08138275639278,-642.374945271946,0.6017091451549745,-2.691931288259629,-96.73914195820939,-1.892599806162574,-230.53760497550957,-136.20987654320987,-11.276418436441958,-2.8319438223449565,-9.264970418248344,-82.65432098765432,-33.23221523166097,-585.1076835430042,2.5205168214756855,-9.597130908655656,-168.51707362949284,-7.685368498888537,553.2239244912486,94.81481481481488,9.723050969529098,1.2722180947397848,-13.135323689340302,156.14814814814818,-43.96303899119363,387.26723240422797,-6.346265747819282,8.412823463629833,225.70624294654775,6.865362151226021,-1148.0174062856922,0.7278197962387865,0.5722018282814668,0.45136332882978264,0.32063688466077567,0.2995905690650451,0.18076891722650512,0.1875481113529558,0.09557611480069071,0.120158707216857,0.053873348441325346,0.07974032697077604,0.029411898717130486,0.049222653964781336,0.016593835401133166,0.030798744588419302,0.009436456194041081,8.03496682112499,5.676101621695722,3.5611140046936445,2.1755326655826455,0.4546436988575037,-0.40197055508841695,3.2427155302926507,0.9771915837366254,6.033386687197832,0.9871316710538911,14.565751681036193,10.937032753925195,16.021680982299472,11.687543927439652,2.0183922061089143,0.7508913788871291,3.5075570634300623,2.2253432977439385,7.01819027803732,1.2280693634834547,3.719912916002103,2.4212243150068864,20.917783223259814,14.701777635097327,0.21303997338448477,0.4975177078048379,0.7015612021875854,0.8208979931402212,0.8721644848475413,0.8898430641064252,1.1850833941359658,3054.280838456563,0.0,12.0,9.0,0.0,11.0,20.0,3.0,2.0,0.0,5.79561493236502,3.6293995276427653,2.075667522338791,1.1669524855066378,0.7765730264296566,0.6419557749170615,685.9036194860143,16940.11067963696,197.01011126714005,99.06497473471906,196.99602207952364,,31.0,4391.0,108.24088726165662,58.158426630399624,106.2361453712128,41.593454844471836,5.516700717616262,41.689541651074535,45.16715637606978,19.913841467842857,67.79543773153428,11.46733495432437,39.89999999999999,91.75,35.0,0.5,56.75,0.0,0.04137931034482768,-21.75,0.15609142377857044,0.02521812552772318,-0.13087329825084726,0.09469496021220225,0.19243137254902032,0.0,0.5947368421052622,0.8793103448275872,0.4386454183266918,0.569518716577539,0.7846153846153849,139.04495666147153,1.8887873100330737,2.4047873100330737,125.49189939038479,17.876160550258152,23.649265702081866,264.5368560518563,41.52542625234002,0.5215686274509796,0.18295739348370924,0.0,0.36090225563909784,0.5254237288135594,0.2979113465565484,-2.9738024791700353,-0.06288026888649519,-0.017390657772924187,-0.05718850921480838,0.7020886534434518,7.008370115271779,0.05321040907363981,0.0409846205571449,0.058893866514888905,-9.784459208995772,0.8754669463241372,0.8388754302349944,1.74626889011045,1.0144418417918064,0.5406350289433429,1.5130402204733304,0.8811217150949228,1.2071782395169344,0.8170079173302487,0.6458888328314246,0.820786112052094,1.0714027255722625,0.8777648571099675,0.6212993337518883,0.8967773168208699,1.4044424486000127,0.8178777109113003,1.3455343068540655,0.8877450480839495,1.2348678992273727,0.6335903945811829,0.5401019565463125,0.5877310917841166,1.1406421831550857,1.0306500505220613,0.9607455066730869,0.9269371347919022,1.100482141824357,1.0498370767981788,1.0208121573780542,1.0328459367584604,1.0741138855419208,0.9670368828576884,0.9812786959300344,0.9472713899108535,1.066887444232037,1.00715418615309,1.2696695377466223,1.367170150016437,1.123725974631205,1.1256784402702131,1.043863238198343,1.0010744670220884,0.9327967747635124,1.2363438823968496,1.3412517014956598,1.3182292285903099,0.9040764576170747,0.9986382271982902,1.0695435170412062,1.10251406845616,1.1744126474432413,1.0661384088556183,1.1013341988251506,0.9974961450708332,1.006157639137511,1.0574240299041378,1.0811625763528325,1.0768290077799092,0.9855864924780463,1.0422265246215638,1.1411106307687913,1.0343551255735386,1.0892227604800688,1.1166771944943765,0.9657938863293798,1.0396589314872664,0.9904224015857496,1.131029658295193,1.2242593817867322,1.1672483242498797,0.9875579690139049,1.0450102224043352,1.2620219854379702,1.2268791911104442,1.1669927259775443,1.1188840579405588,1.0524382034026534,1.0396577168650283,0.9890689766457402,1.237570849065335,1.3905574356013242,1.3234186919296664,0.96841109747991,0.9765903271862341,0.938788706426468,0.956892328370883,1.0784233542183441,0.9552179105000539,1.0949064821450243,0.9785300857027839,1.060336462854964,0.9383091589426468,0.9164989298226829,0.935404990363266,1.0325219000797232,20.0,1.572204877053362,10.222222222222225,6.041666666666666,5.814444444444446,3.306111111111111,2.909614512471655,2.70578231292517,1.9867252456538167,1.6662577160493832,21619.322632458163,24812.970542786028,8195.621153181064,7308.435579440095,28.86396270344095,0.48962692072358915,14.731389525074635,0.9593509936256143,0.0,0.5254237288135594,1.6222375825208781,3.788452987243133,5.342184992547107,6.2509000293792605,6.641279488456242,6.775896739968837,0.2173913043478261,0.0077831924606602074,0.08112874779541449,0.046474358974358976,0.04066045066045067,0.020408093278463647,0.016916363444602643,0.014392459111304094,0.009691342661725937,0.00808862968956011,0.46293494242436684,76.02221172022685,39.13769211388259,24.93491124260355,503.6685170913256,0.0,5.364241719870858,1109.746180712117,,987.4499331410638,962.4114841746082,941.1568977663554,987.6644163195269,1386.0049521251256,976.8132497325887,988.9592932077161,1262.1857031928037,0.00386331103218107,-0.10662752271951163,-0.650354536636809,0.269274178967967,0.25807939173989985,-0.1087465064309772,0.006190220066177826,0.0197543047420692,-0.0900557559105391,-0.05990667562658563,-0.11492418460281899,0.03700078268686157,0.03214412856905323,0.13658096149149682,0.08621122786874949,-0.07671440650859174,0.0652049079344662,-0.10454362008289587,0.02855764618688174,-0.09785967589171311,0.12778550546928125,0.06421837576425393,0.13303122179755683,-0.06921274640915343,-0.05116333195832591,0.009477317547619097,0.14609834934146954,0.00861795649682168,-0.047873472247450484,0.053856210615898806,-0.052457715210207194,-0.05552139099424781,7.150988181396261e-05,-0.0649847254532303,0.012220027220409168,-0.06488742265372024,0.015251174706944436,-0.13662950552022646,-0.24523240502837207,0.006177986222450671,-0.028330543401247188,-0.043139655583533054,0.018477265619666835,0.042560056769613865,-0.11529300304860537,-0.1288806833655662,-0.15850759243869728,0.06656101616454783,0.023134765805138582,0.1004149202026254,0.09263089446342909,-0.02171842386769947,0.03302118808820019,-0.03704090976540173,0.02099773988504193,-0.015559130100562184,0.09333187637909872,0.17167831408580658,0.12492247090183717,-0.016076359352397526,-0.03174963951340604,-0.03244423704154207,0.12196999028483985,0.003259591638259659,-0.051107711418544546,0.08705052281525893,-0.03125346791959947,0.005119155374943483,-0.035698024384443805,-0.07703162086582448,-0.038536750739434356,-0.008674163309430995,-0.02810718721909841,-0.12450765096530995,-0.1725390168475036,-0.025233767946612442,-0.033414010637425995,-0.036420967632998055,-0.025475463455044214,0.0191901324001398,-0.11389333293820728,-0.12008461936213514,-0.1400417955430884,0.018627880463673356,0.018122367711186697,0.09943914210512812,0.07179500055695014,-0.03313666499641792,0.058469560850561896,-0.044628248609516835,0.015618056658866893,-0.044754486124485356,0.0924759090032491,0.14897623642267763,0.11587410048251275,-0.03580477195401487,0.0,0.0,0.0,15.652686612331118,34.99049861454079,41.95962385394419,46.667121173860544,49.66574988243465,50.717181130964406,174.20094262010755,121.18575768977402,31.741168096844785,21.274016833488748,0.0,53.015184930333525,82132.23802120057,75696.08244415345,15498.172288299204,342.0,126.0,156.0,195.0,225.0,237.0,267.0,308.0,321.0,1208.645462128002,92.0,6.07993319509559,6.90875477931522,7.7752758464868625,8.625329850020815,9.49363784611014,10.353511663841456,11.223441770571819,12.088723890560281,12.960058542633702,0.6296296296296298,0.9904561403508771,1.1438983048294757,0.5888466761219371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6364975732745037,0.9750487329434698,1.0109207225395365,0.5991916612210355,11.0,1.0,2.0,0.0,0.0,2.0,4.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,1.0,11.0,0.0,5.0,0.0,0.0,2.0,2.0,15.0,9.0,0.0,0.0,11.0,1.0,0.0,0.0,0.0,84.39935395280766,60.12607929561554,5.959554568743835,59.071797293515054,0.0,52.93777657335388,4.9839785209472085,0.0,0.0,58.02678414107054,93.03130484127432,74.30809577959744,12.934202039277459,505.5664120852453,-5046.651183387613,-106.71010788730254,-29.51258001981061,-97.05098429591565,1191.4700315712596,11893.459496249347,90.3000033798375,69.55239471490844,99.94503778360797,0.4838709677419355,0.7713320655090193,0.05088738351793705,598.4670093218908,0.02936155107754167,927.2220683777612,0.22866793449098072,16.0,0.34782608695652173,0.2186936959538392,0.510720990966131,0.720179456497226,0.8426832451622843,0.895310263331435,0.9134580023492236,-1.438100000000009,,5.285714285714287,6.399255467659375,5.681603597861979,5.2711898048993255,-21.27844026297891,5.683598531211751,5.226145492420619,-9.897127788591169,320.11010000000033,58.158426630399624,0.0,67.7029427297491,28.295551779282825,159.62429131297085,26.241151182250643,84.07277474392603,0.0,5.749511833283905,5.220355825078324,0.0,6.535241271013659,3.713572066704308,8.008032846969307,5.973809611869261,9.557116483735667,7.9658927350845286,11.151309764140326,107.66666666666669,17.447687029261445,4.007783021643967,6.029801048182955,0.0,0.0,1.4333484581853,1.3963878966683927,0.0,169.368,0.0,139.67561015243416,0.0,0.0,0.0,0.0,4.008206179272088,-7.058929597173351,195.60661012584035,59.31843239038136,0.0,5.749511833283905,175.71397059021467,67.20783670949623,11.835812092322787,102.80608996010365,72.24434849831924,0.0,10.902924932081056,0.0,100.69278161685125,108.84108502994013,108.78847805809848,2219.492361424234,,1974.7783556088925,1924.6758590281208,1882.1831839557485,1975.2076558619297,2774.550397563972,1953.495842027679,1977.7984451397442,2525.5090072808475,108.78847805809848,2219.4923614242343,,1969.614151996414,1918.4237128815557,1876.632191934848,1970.0576428341546,2793.288344513231,1947.942900933967,1972.6924409230116,2534.2685341741985,4.7819993312862366,1610.6686622837033,,1440.9775703866778,1402.042954041933,1367.9761814947278,1441.3080361168277,2054.640065918945,1424.3928644865096,1443.3289808361153,1865.9993277871818,1.2504422765298675,25.511406453152112,,22.69860178860796,22.122711023311734,21.63428947075573,22.703536274275052,31.89138388004566,22.453975195720446,22.73331546137637,29.028839164147673,2.4221736228962656,1109.746180712117,,987.4499331410638,962.4114841746082,941.1568977663554,987.6644163195269,1386.0049521251256,976.8132497325887,988.9592932077161,1262.1857031928037,166.73333333333335,0.0,9.047262025823192,0.0,0.0,11.092308014447305,20.902607391440874,172.86744355426075,1.0878883123313332,24.26264902654415,0.0,0.0,-11.777876856792245,1.4452678977304454,0.0,0.0,0.0,102.46177406879707,1308.9786253296522,277.40262661107016,647.8254608185757,913.5136337255553,1068.9039050238534,1135.6587925260174,1158.6783425346712,2356.0,264.5086673846359,388.0578183268525,145.12533060459538,431.53999999999985,431.53999999999985,0.9375,8.79386980820702,7.523561956057013,5.110530487134888,9.193102866418174,,9.194305992728921,9.194217858983304,9.194804333317824,9.194308531929263,9.192077078950252,9.194311413598067,9.194305468137907,9.192789008566145,0.05874172973718262,0.10566784903928936,,0.10568167807734392,0.1056806650457851,0.10568740613008994,0.10568170726355475,0.10565605837873852,0.10568174038618468,0.10568167204756215,0.10566424147777177,3.7946262380172318,4.3817765401258235,,4.38190740427549,4.381897818541875,4.381961603807734,4.381907680446416,4.381664951610287,4.381907993865129,4.381907347219413,4.381742398964308,921.1300000000028,15310.569745166491,910.6094777948441,,907.607006076196,907.769209565233,908.262048345302,907.6066740169111,908.4631394951459,907.6867079759435,907.5966997006516,907.5106086853178,175.98356028927,10.466775606837288,,10.432264437657425,10.43412884557739,10.439793659141403,10.432260620884037,10.442105051668344,10.433180551447625,10.432145973570709,10.43115642167032,11.799621727543197,8.97743715680361,,8.97413449787997,8.974313197466392,8.974855962124238,8.974134132017495,8.975077339745917,8.974222309454683,8.97412314226681,8.974028281742585,0.0,155.16666829926362,45.878633863035525,13.298159891701674,-7.552275090046429,1.5814286195155958,5.804408138415735,8.822976278114295,0.0,1139.9825474954403,857.9646259973235,-8564.350976631004,-181.09094199126983,-50.08392383994741,-164.69905724290396,2021.9680651009937,20183.634206287676,153.24239659788978,118.0329485747817,169.61037148140906,46759.0,130.0,6.363326561069611,3.027229321026798,0.0,0.0,1.2876137402895291,0.2871886842050946,0.0,0.0,0.0,0.0,0.0,0.0,0.4762648725578599,0.236808068015579,0.7948281599442534,0.3059243215022689,1.035026865263387,0.31210395220061377,63.320322272774426,49.78155906048761,41.525426252340004,29.498593388791363,37.74841170219568,22.776883570539646,29.257505371061104,14.909873908907752,23.430947907287113,10.505302946058443,17.94157356842461,6.617677211354359,11.665768989653177,3.93273899006856,8.223264805107954,2.5195338038089687,12.882719284972067,4.768396097851009,18.590075954837726,6.208828098507724,27.77880634785888,7.331897908669426,291.4669094142498,131.1692985929384,82.38191324653103,53.76898911996683,39.735983820932034,36.235734279179354,436.0,500.0,181.7646120000011,102.06938800000019,0.3216374269005848,982.28,31.97222222222222,19.444444444444436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,20.0,21.0,171.0,0.0,3.0,176.0,21.0,11.0,20.0,156.0,32.0,92.0,144.0,0.0,0.0,0.0,59.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.0,14.0,15.0,4.0,87.0,28.0,0.0,16.0,12.0,0.0,6.0,32.0,0.0,0.0,0.0,2.0,4.0,4.740574822994295,7.1533664083567,5.214935757608986,5.6011958858811,6.010040932680917,6.3445392680142225,6.448765770999502,6.716433970641314,7.044131741647709,6.991424815216146 +5280343,O=c1c(O)c(-c2ccc(O)c(O)c2)oc2cc(O)cc(O)c12,0,31.1875,7.121875,4.0625,12.5625,157.78908944406217,123.9343269375,1.5869392827653126,7.149146875,9.344618055555554,8.55482475,255.5727002906171,30.294117647058822,6.9411764705882355,4.705882352941177,11.441176470588236,145.49971902368384,117.25612494117645,1.8699612199999998,7.061941176470588,4.807189542483661,8.348921411764707,299.46640234046396,30.941176470588236,6.813725490196078,4.745098039215686,11.509803921568627,142.86703121830394,120.42181498039213,1.8413844049019605,6.951999999999999,4.82244008714597,8.198371450980392,294.80508458348066,28.014492753623188,7.0657971014492755,3.8260869565217392,10.36231884057971,150.96949085213694,106.95518730434782,1.5322966324760723,7.143214492753622,5.969404186795492,8.500892869565217,247.41606072690942,24.698630136986303,7.026438356164385,3.2465753424657535,8.808219178082192,157.33765442508758,93.05168267123287,1.3166196853142877,7.068041095890411,6.139269406392694,8.516789205479451,210.06543820989953,22.453125,6.91875,3.1875,7.46875,157.8262841589593,83.096253625,1.315193342535078,6.9656203125,5.424479166666666,8.437586125,205.6381221657927,22.636363636363637,6.869090909090909,3.036363636363636,7.781818181818182,157.21442529218444,84.15405570909091,1.319016690768091,6.917678181818182,5.912121212121212,8.378521890909091,203.85345695857515,22.083333333333332,6.802916666666666,2.8958333333333335,7.104166666666667,158.1106097626676,82.16759816666666,1.2618050547727915,6.848308333333333,6.385416666666667,8.319804166666666,193.93679503295485,19.1,6.91075,2.45,5.7,160.94729060464996,67.88111912499998,1.13633985799245,6.93824,5.7972222222222225,8.4674485,173.39118603106385,7.421875,0.23124999999999996,0.07078276195645868,0.77734375,4.296875,1.3708566848059363,34.72748255859375,0.22593049611990232,0.20427490234374995,3.5294867621527777,0.16511249999999994,42.21438579590116,-0.9990808823529411,-0.06525735294117645,-0.034339407490980856,0.26125919117647056,0.004595588235294118,0.38348116729448484,-4.259697735064348,0.06585609333208294,-0.05877977366727937,-1.0094193601919932,-0.04334657352941176,8.862781326245578,0.3170955882352941,-0.012561274509803927,-0.0041770025589675484,-0.07268688725490197,0.04503676470588235,-0.225538428851348,1.4909420615042823,-0.03221484145958372,-0.00776019646139707,-0.14306587435321347,-0.01340482843137254,-1.6820791691977461,-0.5024909420289855,-0.005534420289855069,0.0016406068654579743,-0.0862205615942029,-0.08038949275362318,-0.2335353246408658,-2.4630875776154944,-0.039411705142421365,-0.004724540024909383,-0.06888893606582125,-0.004637402173913046,-6.621514014072276,0.3152825342465753,0.01894691780821918,0.006351296430556926,-0.07272046232876712,0.020761986301369863,-0.06728546415394855,1.3749062718857024,-0.011927491962412615,0.016876681560359603,0.21092895322012936,0.012923113013698624,-1.572661615348551,-1.236328125,-0.041601562499999994,-0.007971577259607114,-0.041015625,-0.9765625,0.02964529215175782,-5.663874725585939,0.004116139864038084,-0.03813442382812498,-0.5539279513888888,-0.027344609374999992,-1.6166435218444763,-0.39801136363636364,0.004715909090909091,0.0013122623876998247,-0.10461647727272727,-0.15710227272727273,-0.03428214266238629,-1.939544077911931,-0.008563868755612573,0.0027229953835227294,-0.06697097932449493,0.004977377272727273,-3.126983435371619,0.5520833333333334,0.03260416666666666,0.009702414980431964,-0.125,-0.14322916666666666,-0.13017159377627066,2.4056912877604195,-0.02276981341035286,0.029162727864583304,0.6372703269675924,0.02205579166666666,-2.943938424919462,-2.8375,-0.06518749999999998,-0.01891875866442458,-0.01953125,-1.2,-0.23817743800486219,-13.287611194531252,-0.04434322388886639,-0.06098529296874996,-0.9071343315972223,-0.04203402499999999,-12.692514227905507,,,0.4469696969696969,1.4772727272727273,0.8409090909090909,0.13636363636363635,0.6363636363636364,0.20454545454545456,0.6014593670997089,0.024286168602880857,0.036013441330153585,1.1713726985639925,0.30065483994524406,0.17115960792337945,1.7728320656637016,0.4718144478686235,2.023855598811348,1.4459851255561382,0.0,0.57787047325521,0.0,0.57787047325521,9.438832895625008,998.0,227.9,130.0,402.0,5049.2508622099895,3965.898462,50.78205704849,228.7727,299.0277777777777,273.754392,8178.326409299747,1030.0,236.0,160.0,389.0,4946.99044680525,3986.7082479999995,63.57868147999999,240.106,163.44444444444446,283.863328,10181.857679575774,1578.0,347.5,242.0,587.0,7286.2185921335,6141.512563999999,93.91060464999998,354.55199999999996,245.94444444444446,418.116944,15035.059313757514,1933.0,487.54,264.0,715.0,10416.89486879745,7379.907923999999,105.72846764084899,492.88179999999994,411.8888888888889,586.561608,17071.70819015675,1803.0,512.9300000000001,237.0,643.0,11485.648773031393,6792.772835,96.113237027943,515.967,448.1666666666667,621.725612,15334.776989322665,1437.0,442.8,204.0,478.0,10100.882186173396,5318.160232,84.17237392224499,445.7997,347.16666666666663,540.005512,13160.839818610733,1245.0,377.8,167.0,428.0,8646.793391070145,4628.473064,72.545917992245,380.4723,325.1666666666667,460.818704,11211.940132721633,1060.0,326.53999999999996,139.0,341.0,7589.3092686080445,3944.044712,60.56664262909399,328.7188,306.5,399.3506,9308.966161581833,764.0,276.43,98.0,228.0,6437.891624185999,2715.2447649999995,45.453594319698,277.5296,231.88888888888889,338.69794,6935.647441242554,237.5,7.399999999999999,2.2650483826066776,24.875,137.5,43.86741391378996,1111.279441875,7.229775875836874,6.5367968749999985,112.94357638888889,5.283599999999998,1350.860345468837,-33.96875,-2.218749999999999,-1.167539854693349,8.8828125,0.15625,13.038359688012484,-144.82972299218784,2.2391071732908197,-1.9985123046874986,-34.32025824652777,-1.4737834999999997,301.33456509234964,16.171875,-0.6406250000000003,-0.21302713050734495,-3.70703125,2.296875,-11.502459871418749,76.0380451367184,-1.6429569144387697,-0.39577001953125057,-7.2963595920138875,-0.6836462499999996,-85.78603762908506,-34.671875,-0.38187499999999974,0.11320187371660023,-5.94921875,-5.546875,-16.11393740021974,-169.9530428554691,-2.7194076548270742,-0.32599326171874743,-4.753336588541666,-0.31998075000000015,-456.88446697098703,23.015625,1.3831250000000002,0.4636446394306556,-5.30859375,1.515625,-4.911838883238245,100.36815784765628,-0.8707069132561209,1.231997753906251,15.397813585069443,0.9433872499999996,-114.80429792044423,-79.125,-2.6624999999999996,-0.5101809446148553,-2.625,-62.5,1.8972986977125004,-362.4879824375001,0.26343295129843736,-2.4406031249999987,-35.451388888888886,-1.7500549999999995,-103.46518539804649,-21.890625,0.259375,0.07217443132349036,-5.75390625,-8.640625,-1.8855178464312463,-106.67492428515621,-0.4710127815586915,0.14976474609375012,-3.6834038628472214,0.27375575,-171.98408894543903,26.5,1.5649999999999997,0.4657159190607343,-6.0,-6.875,-6.248236501260992,115.47318181250014,-1.0929510436969372,1.3998109374999985,30.58897569444444,1.0586779999999998,-141.30904439613417,-113.5,-2.607499999999999,-0.7567503465769831,-0.78125,-48.0,-9.527097520194488,-531.5044477812501,-1.7737289555546556,-2.4394117187499984,-36.28537326388889,-1.6813609999999994,-507.70056911622027,0.7280065172279794,0.4972416320170749,0.432496577212905,0.2551308681057303,0.2787994550596576,0.12917895991610356,0.17574764063175913,0.06475419645695729,0.10972244083146926,0.03285325608147402,0.06603903149330011,0.01678237769984092,0.043299398423820225,0.008142942017940302,0.027206207574895464,0.004124573117002045,8.0251721761573,5.671300002664825,3.549499134534112,2.1663570467111657,0.5159476037672308,-0.5242574629033532,3.3073714365824167,0.9776728190938644,6.023811566100449,2.8289813222910496,13.639771432799,10.93244937488883,16.013242495432255,11.685202131190463,2.017019149285687,0.7487251115730764,3.495887553271063,2.215290200641284,7.008282993346183,1.3643284789009318,3.708725876046242,2.411478394854487,20.915477325606734,14.701726113632487,0.28122113287512274,0.5326440983170474,0.7022205683823127,0.8367828488940531,0.9156545531133838,0.9272451170768444,1.735261332603093,956.2426827834672,0.0,0.0,0.0,0.0,13.0,0.0,2.0,0.0,0.0,3.4835663855438948,2.127813948504702,1.213403794478451,0.4878012648261505,0.0625,0.0,76.51466606922989,1596.2234527484268,124.83169752012039,49.88198289838834,109.14262201151888,,10.0,368.0,22.677325891752254,30.327174158275348,33.791966933246286,0.0,24.26546827384644,6.06636706846161,0.0,0.0,0.0,4.417150937053347,9.833333333333332,32.5,18.5,3.0,14.0,0.0,0.05303030303030309,4.5,0.30077284946236527,0.1347373188405795,-0.16603553062178578,0.11924803591470234,0.24048475120385215,0.0,0.7427083333333333,0.9439393939393935,0.44193548387096804,0.6079710144927538,0.8246913580246912,13.232106076193597,0.5342957092633789,0.7922957092633789,25.770199368407837,6.614406478795369,3.7655113743143476,39.00230544460143,10.379917853109717,0.4735152487961478,0.2033898305084746,0.0,0.5084745762711865,0.0,0.42021802049866663,-1.3988091873384316,-0.15833911694493563,-0.04371278710432599,-0.13988091873384317,0.5797819795013335,1.929960925086745,0.10198535271048388,0.060311278908960785,0.08772549659485203,-2.485399979011954,0.7716408668730651,1.0411367249602546,1.3251560324908185,0.7147502216967189,0.646524064171123,0.7462524909599089,0.7614781598167649,0.7031347669607684,1.0208190482752124,1.0492326235472245,1.0658922169821827,0.6136867416071483,0.5617750257997935,0.7125728669846317,0.7573607776354796,1.1973593457483498,0.6365775401069519,1.1843556053290363,0.566244947044082,1.1413658894551757,0.6746784945049719,0.677512609519986,0.7792556842556843,0.8837562497613541,0.8701754385964913,0.944692518605562,0.883017141367635,1.1017405869929358,0.8544400527009223,1.1567709914428481,0.8720484563711239,1.1361511936476694,0.9268439413929539,0.8998283405506936,0.9758972417795949,1.0157153094610554,0.9431867339581831,0.9523232136245835,0.8965901932268859,1.0413712397604462,1.023810709838107,1.0126714131490149,0.9439641802733044,1.0091258524005893,0.948704146688031,0.9059813312195079,0.9589986538858416,0.983164527657081,1.1614802631578947,1.1975190033783782,1.0946639901821604,1.0125628140703518,1.2540909090909091,0.942285998052956,1.1566793214396542,0.9429124406282212,1.2037911582268646,1.163295186417751,1.182925780954274,1.001289884943172,1.0465837320574163,0.9574201474201475,0.9311348768714421,1.0989492919141162,1.028892561983471,0.9893278535458088,1.0488989121949268,1.0055383534400968,0.966877221498488,1.0650397108482896,0.943782613782614,1.0565327823434563,0.9599122807017545,0.8282376126126126,0.7940020616938254,1.1293969849246233,1.0497727272727273,1.0524325393188918,0.9661555559862529,1.0711265055596721,0.8348275188934438,0.8663858807735957,0.8227889286345171,1.088717066507207,1.4635263157894738,1.3745777027027026,1.3666996542553493,0.8879396984924623,1.287909090909091,1.1172478385702795,1.4612239067859525,1.1419848017790715,1.3960570329026782,1.4261176995027323,1.336982956696192,1.2871072281078364,5.5,0.012345679012345678,3.333333333333335,2.375,2.1333333333333337,0.9305555555555556,0.6685714285714286,0.3107638888888889,0.1970269589317208,0.116875,4567.896368627862,4862.758895227803,2186.072026362031,2056.40417495736,12.098059588440265,0.44400370737553563,6.7264762791226405,0.7985731438598428,1.0,0.0,1.5164336144561052,2.872186051495298,3.786596205521549,4.5121987351738495,4.9375,5.0,0.22916666666666663,0.004115226337448559,0.09259259259259263,0.059375000000000004,0.06095238095238096,0.033234126984126984,0.027857142857142858,0.015538194444444445,0.015155919917824678,0.014609375,0.5525966257526278,16.84375,6.481481481481482,3.1653477717617657,122.10766954232908,1.0,4.032867485816312,92.59844898735274,,62.899260017008864,62.090503346723295,64.6445742488745,62.91590599984344,87.65306702546458,62.701641546552636,62.93337668854089,75.65066283894032,-0.13461300309597524,-0.28219395866454683,-0.48513799888318015,0.3360922258350576,0.0010695187165775401,0.2797383355567704,-0.12266071195564485,0.29148828716391084,-0.28774838706502415,-0.28599607484469136,-0.26252751020917114,0.20994694484234608,0.04272445820433436,-0.05431902490726024,-0.05901157914037023,-0.09350674943344173,0.010481283422459893,-0.16452371086717654,0.042932627177587626,-0.1425873975086885,-0.03798898627467391,-0.040534469738583684,-0.0811860303209784,-0.03984611258660239,-0.06770404271548436,-0.023932628280454355,0.023178056635698642,-0.11091690335736654,-0.01870882740447958,-0.17035721328807318,-0.07092617708351487,-0.17444172353565496,-0.023128343084257194,-0.019518117139445817,-0.028086317958440746,-0.15685444402972215,0.04248017303532804,0.08193261754905592,0.08972942359135215,-0.09354994148826323,0.004831880448318804,-0.049082785166177846,0.03959130263951323,-0.05279274895268075,0.08261749909912987,0.05976193351451337,0.07826853214443866,-0.03725416314125907,-0.16657894736842105,-0.17989864864864866,-0.1126203194007992,-0.052763819095477386,-0.22727272727272727,0.021625376657046044,-0.16309488359916668,0.01821861118675024,-0.18668188500197194,-0.15694291797004095,-0.16561198803845864,-0.03829603324470128,-0.0536267942583732,0.020393120393120398,0.01853929334527876,-0.1345820009136592,-0.03656198347107438,-0.025007823970482665,-0.05585040823616991,-0.0379048818228934,0.013330053532178535,-0.018974707609796106,0.030145369204192744,-0.07407388207636166,0.07438596491228071,0.140990990990991,0.13707313351802108,-0.16080402010050251,-0.03333333333333333,-0.09495638400355341,0.06927341432542455,-0.10078238131371525,0.1427621676964937,0.18055608928786443,0.1335803871097989,-0.06973780073818595,-0.3823157894736842,-0.28189189189189184,-0.26727918127950795,-0.02512562814070352,-0.2792727272727273,-0.1737434996996637,-0.38262523556413297,-0.19626931578698098,-0.2985452068219573,-0.25701593254989974,-0.2545780906957378,-0.3006679829305463,2.601022702043388,15.918534124023797,15.124143333816862,14.356747526866544,28.204467354147596,39.1874477141569,45.796046325055244,47.16168749999997,47.224687499999995,44.524823173849654,31.81167276223504,0.0,12.71315041161462,0.0,12.71315041161462,4224.312762055776,3371.3998951108147,858.2515541472708,109.0,36.0,49.0,65.0,84.0,95.0,103.0,109.0,118.0,302.0426526600003,24.0,4.795790545596741,5.673323267171493,6.583409222158765,7.478169694159785,8.392310009269547,9.293669979563187,10.209611032126512,11.114550164673927,12.031451365362408,0.8124999999999999,1.0499999999999998,1.1106922106871044,0.7863572974773125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6985765344311378,1.0334558823529412,1.0548069919883467,0.7097728984327296,5.0,0.0,0.0,1.0,0.0,2.0,7.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.949787911256877,22.46826802267485,17.25927108544225,11.178302225184446,0.0,4.794537184071822,0.0,0.0,0.0,0.0,18.19910120538483,17.696185628620217,0.0,201.50441061813277,-670.7618595874908,-75.9273255343082,-20.961308112109087,-67.07618595874908,278.01907668736266,925.461593160936,48.90437198581219,28.92067478627925,42.06643605276981,0.5,0.39558072628584434,0.15251223377597117,208.75544573386182,0.08815098006598668,253.5916119993753,0.6044192737141556,5.0,0.041666666666666664,0.30328672289122105,0.5744372102990596,0.7573192411043098,0.9024397470347699,0.9875,1.0,1.988,,1.75,1.9999999999999996,1.2119393011481083,1.7448590536908561,-7.576059850374065,1.811046511627907,1.739463601532567,-2.7929613464061798,76.244,29.949787911256877,0.0,0.0,0.0,0.0,0.0,40.55516291828041,0.0,40.07125807699096,3.8918202981106265,0.0,5.262690188904886,0.0,6.836259277277067,0.0,8.507748732588238,0.0,10.230234075932888,25.999999999999996,5.640871717501407,0.0,0.0,5.353238851095994,0.0,-0.4121156672545554,-2.580022623246827,0.0,33.599999999999994,0.0,12.14287430713026,0.0,0.0,0.0,0.0,0.0,0.0,35.54215074198734,5.428790391900541,0.0,28.747559166419524,25.532636974203527,0.0,0.0,0.0,39.54352346343322,0.0,22.292943266678478,0.0,25.163433519274,22.35444910179641,27.687065111164316,185.1968979747055,,125.63942912492683,123.9991885116284,129.1789721976446,125.67318844935134,178.9745435382502,125.23864250113911,125.708620322397,152.5708535626107,27.687065111164316,185.1968979747055,,124.17775622700796,122.3434012628968,128.1491549009026,124.2155530331212,182.88219390130317,123.72916489486073,124.25522420388363,154.09428702428676,4.998133080661807,135.8524432034761,,92.25874557860874,91.08892973394512,94.78911782806333,92.28284155038325,125.7648337086913,91.97273882865639,92.3081321260115,109.86898363651561,1.2585029595983779,8.418040817032068,,5.710883142042129,5.636326750528564,5.8717714635293,5.7124176567886975,8.135206524465918,5.692665568233596,5.714028196472591,6.935038798300486,2.4990665403309027,92.59844898735274,,62.899260017008864,62.090503346723295,64.6445742488745,62.91590599984344,87.65306702546458,62.701641546552636,62.93337668854089,75.65066283894032,33.07058823529412,0.0,0.0,0.0,0.0,0.0,47.909491566701156,33.753823743627095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.712732749847348,189.69024937942874,48.52587566259537,91.90995364784953,121.17107857668957,144.39035952556318,158.0,160.0,814.0,121.57228528008238,289.83323792606666,56.728752572813704,131.36,131.36,1.0,9.361562045467203,5.584962500721156,4.137961700505322,4.622984820854093,,4.618208353792695,4.619146980972163,4.616128007466803,4.618188845914295,4.573689444726232,4.618439389373781,4.61816836379451,4.597873314238661,0.18808916820478735,0.21013567367518604,,0.20991856153603158,0.20996122640782558,0.20982400033940013,0.20991767481428614,0.20789497476028326,0.20992906315335366,0.20991674380884137,0.20899424155630275,2.208660684087834,2.3194979219676273,,2.3184641880338215,2.318667412257353,2.318013620439205,2.3184599639022734,2.3087775578850738,2.318514213884662,2.3184555287945097,2.314051233963499,196.31999999999985,144.99237847853126,122.06976584727575,,122.46941516966588,122.35407041548015,122.71615989385477,122.47178297817523,127.2603399479316,122.44128515934175,122.47426781604736,124.76948334411826,6.590562658115058,5.548625720330715,,5.566791598621176,5.561548655249098,5.578007267902489,5.566899226280692,5.784560906724163,5.5655129617882615,5.567012173456698,5.671340152005375,5.765138539186378,5.5930500928601115,,5.596318687091428,5.595376418318117,5.5983314058855305,5.596338020780716,5.63469226945194,5.596088970624079,5.596358309639133,5.614925261912379,5.353238851095994,12.14287430713026,47.63361219952218,-0.8899886621315185,-2.713941746451665,5.640871717501407,0.0,0.0,0.0,238.6667775408753,96.62609768704552,-321.64606606091263,-36.40893592199105,-10.05143956440352,-32.16460660609126,133.3166771905781,443.7805705198316,23.450794999121836,13.868142828744737,20.171844114537798,986.0,40.0,1.9612093031735098,0.6309074370460367,0.0,0.0,0.6226595852509461,0.10012536629295592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16895785846218417,0.05764735362656345,0.5330114470540578,0.10213767530591043,16.016143379015546,10.939315904375647,10.37991785310972,6.123140834537527,10.036780382147674,4.650442556979728,8.611634390956198,3.172955626390907,7.131958654045502,2.1354616452958113,5.547278645437209,1.4097197267866373,4.1134428502629214,0.7735794917043287,2.8022393802142327,0.42483103105121056,4.746402142173786,1.1725837646523662,7.557085588264128,1.4829752049657674,11.880895635324869,1.8558654463759368,78.21942990603698,60.058325467503735,39.734936758692484,27.37349367586925,24.5625,24.375,120.0,145.0,37.33192999999999,12.636069999999998,0.5,114.07,8.61111111111111,4.694444444444443,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,17.0,32.0,0.0,0.0,34.0,17.0,1.0,8.0,26.0,18.0,24.0,16.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,7.0,5.0,1.0,22.0,7.0,0.0,0.0,7.0,0.0,3.0,1.0,0.0,0.0,0.0,1.0,3.0,3.5409593240373143,8.21957388698383,4.290459441148391,4.971547905388209,5.630763652752696,6.252024299807614,6.689910166119136,7.113676371500761,7.553302992461434,7.978310969867722 +5401,COc1cc2nc(N3CCN(C(=O)C4CCCO4)CC3)nc(N)c2cc1OC,0,22.830188679245282,6.33725471698113,3.30188679245283,7.962264150943396,166.60451931275898,90.02400279245286,1.3722120494570749,6.37905471698113,3.8815513626834384,7.842385811320752,205.77450411276166,25.321428571428573,6.5523750000000005,3.982142857142857,7.428571428571429,150.69772097882682,96.03395498214286,1.6592239951785714,6.671687499999999,3.103670634920635,7.946519499999999,249.44312421513956,20.831683168316832,6.525857425742576,3.5841584158415842,5.98019801980198,161.87974902480826,77.43813877227723,1.3879519109097622,6.590683168316833,2.945269526952695,8.001629544554456,204.78408350108378,18.872,6.3989031999999995,3.296,5.112,161.9644327966322,69.01994431199999,1.320634243994256,6.463719199999999,3.028222222222222,7.896995551999999,188.92055209978687,17.732824427480917,6.385967938931298,2.946564885496183,4.099236641221374,162.8213114532373,63.75574067175573,1.2521201966838476,6.447925954198474,3.149279050042409,7.89226613740458,177.36534422574456,15.430656934306569,6.403618978102189,2.72992700729927,3.343065693430657,167.31755605787248,53.758415576642335,1.170322227444007,6.44097518248175,2.982157339821573,7.948089167883212,161.6011806508581,14.084615384615384,6.068776923076922,2.6384615384615384,2.9461538461538463,161.81151822277906,48.47847609230768,1.2084876018690767,6.138568461538463,2.4940170940170945,7.618874707692307,157.93859640331308,11.379562043795621,5.864926277372263,2.3065693430656933,2.4744525547445257,169.08906229963583,38.57500667153285,1.014156878687628,5.911455474452556,2.3580697485806974,7.473558364963503,127.39796724280014,12.704761904761904,6.041257142857144,2.4952380952380953,3.0095238095238095,172.44311831209873,44.42628426666665,0.9936450879834476,6.071144761904762,2.4243386243386245,7.6500038095238105,132.57734367136482,7.723033107867567,0.14842506229975075,0.028471899981779052,0.6073335706657174,4.402278390886435,1.4822738881325375,36.58514426628694,0.21119258479683153,0.13754239943040222,1.1246983900953287,0.09088933570665716,47.28704308985782,0.5889615012968518,-0.004443424833443477,-0.013621006483691873,0.2865343538625845,1.5882876468494123,-0.5355058216367099,2.744142268416577,-0.03656827034333591,0.00010194019223935566,-0.04962913283267502,-0.006683458348166699,-2.1086276500050087,0.572875728299067,-0.0077418379395788935,-0.0014599695951250072,0.03772527484147485,0.38643821662337113,0.2627450251030779,2.862637843931637,0.034772943705449005,-0.005860576153734874,0.025056679751278794,-0.007649246037312997,7.2084491278713845,0.1485140619437521,0.0037698358134567755,0.0022517638782350827,-0.08959772160911361,-0.09782556069775739,-0.07900171522608278,0.6936333045809929,0.002526496608975352,0.00366486094695628,0.06894940864680985,0.003612860821644648,0.5985180634524816,-0.6873136782262033,-0.014095320113376003,-0.0005397444421409616,-0.08536900203544227,-0.8241421385459498,-0.2920512988815443,-3.2952229884531428,-0.038307527391062905,-0.01223365681193756,-0.18191829183489042,-0.009839149908011118,-6.711252214838108,-1.5495032910379303,-0.02690923803312081,-0.001199098860014813,-0.07517546572149479,-1.153690042174138,0.236242962119681,-7.215289301681506,0.013703393691222641,-0.02766893847461097,-0.24198404098516627,-0.013837124716435525,-2.575174624891699,-1.2448037900156093,0.00493342826628692,0.0006187818165733102,-0.07133937618095681,-0.17020291918832328,-0.29054949701919447,-6.063486722600432,-0.04846289399557761,0.0011871071008023482,0.014295320596495398,0.005370289257058419,-11.88042315767466,0.6977078369058789,0.01946995216106721,0.0013789629196552565,0.052630621594301964,0.553099656214514,-0.0642739930189044,3.206598297822689,-0.008194844018207475,0.01833257646823415,0.11965117914062004,0.011072171523751992,0.40283855692659853,1.3447117259150012,0.0017989269185780174,-0.0023113679448736584,0.015128244248927778,0.19035413382155997,0.24531378109239277,6.473512029130851,0.0398548940234264,0.005070251063757572,0.026115226756024228,-0.0009000167488853421,10.954617421483333,,,0.45833333333333337,1.1785714285714286,0.4642857142857143,0.05357142857142857,0.7142857142857143,-0.25,0.8917016234183608,0.011190243364247898,0.023475957649962183,0.9195589886999808,0.23433046600059249,0.2514154892913416,1.8112606121183414,0.4857459552919341,2.0544839920205265,1.4107373896636717,0.3724912678444796,0.2712553345123751,0.0,0.6437466023568547,7.305484043018882,1210.0,335.8744999999999,175.0,422.0,8830.039523576226,4771.272148000002,72.72723862122497,338.0898999999999,205.72222222222223,415.64644799999985,10906.048717976368,1418.0,366.93300000000005,223.0,416.0,8439.072374814303,5377.901479,92.91654373,373.61449999999996,173.80555555555554,445.00509199999993,13968.814956047816,2104.0,659.1116000000002,362.0,604.0,16349.854651505635,7821.2520159999995,140.18314300188598,665.6590000000001,297.4722222222222,808.1645840000001,20683.192433609463,2359.0,799.8629,412.0,639.0,20245.554099579025,8627.493038999999,165.079280499282,807.9648999999998,378.5277777777777,987.1244439999999,23615.06901247336,2323.0,836.5618000000001,386.0,537.0,21329.591800374088,8352.002028,164.02774576558403,844.6783,412.55555555555554,1033.886864,23234.860093572537,2114.0,877.2957999999999,374.0,458.0,22922.50517992853,7364.902934,160.33414515982898,882.4135999999997,408.5555555555555,1088.888216,22139.36174916756,1831.0,788.9409999999999,343.0,383.0,21035.497368961278,6302.201891999998,157.10338824297997,798.0139000000001,324.2222222222223,990.453712,20532.017532430702,1559.0,803.4948999999999,316.0,339.0,23165.20153505011,5284.775914,138.93949238020505,809.8694000000002,323.05555555555554,1023.8774959999998,17453.52151226362,1334.0,634.3320000000001,262.0,316.0,18106.527422770367,4664.759847999998,104.332734238262,637.4702,254.55555555555557,803.2504000000001,13920.621085493305,409.32075471698107,7.866528301886789,1.5090106990342897,32.18867924528302,233.32075471698104,78.56051607102448,1939.012646113208,11.19320699423207,7.289747169811318,59.60901467505242,4.81713479245283,2506.2132837624645,32.9818440726237,-0.2488317906728347,-0.7627763630867449,16.045923816304732,88.94410822356708,-29.988326011655754,153.6719670313283,-2.0478231392268107,0.005708650765403917,-2.779231438629801,-0.37427366749733515,-118.08314840028048,57.86044855820576,-0.7819256318974682,-0.14745692910762573,3.8102527589889603,39.030259878960486,26.53724753541087,289.1264222370953,3.5120673142503493,-0.5919181915272222,2.530724654879158,-0.7725738497686127,728.0533619150099,18.564257742969012,0.4712294766820969,0.28147048477938535,-11.1997152011392,-12.228195087219673,-9.875214403260347,86.70416307262411,0.31581207612191897,0.458107618369535,8.61867608085123,0.451607602705581,74.8147579315602,-90.03809184763263,-1.8464869348522563,-0.07070652192046598,-11.183339266642937,-107.96262014951942,-38.2587201534823,-431.67421148736173,-5.018286088229241,-1.6026090423638204,-23.831296230370643,-1.2889286379494564,-879.1740401437921,-212.28195087219646,-3.686565610537551,-0.16427654382202939,-10.299038803844786,-158.0555357778569,32.365285810396294,-988.4946343303664,1.8773649356975017,-3.7906445710217027,-33.15181361496778,-1.895686086151667,-352.7989236101628,-161.8244927020292,0.6413456746172995,0.08044163615453032,-9.274118903524386,-22.126379494482027,-37.771434612495284,-788.2532739380562,-6.30017621942509,0.15432392310430526,1.8583916775444018,0.6981376034175945,-1544.4550104977056,95.58597365610541,2.667383446066208,0.18891791999277013,7.210395158419369,75.77465290138841,-8.805537043589903,439.3039668017084,-1.1226936304944242,2.5115629761480784,16.392211542264945,1.5168874987540228,55.188882298944,141.19473122107513,0.18888732645069184,-0.24269363421173415,1.5884656461374167,19.987184051263796,25.75794701470124,679.7187630587393,4.184763872459772,0.532376361694545,2.742098809382544,-0.09450175863296092,1150.23482925575,0.7026070581609974,0.5778927174614151,0.4387382821991664,0.3048418503294779,0.2731653647744612,0.15789052239598048,0.1784000407608691,0.08685313572110699,0.11381148027591766,0.04697367799267754,0.07013171764452557,0.02411676310059524,0.045432478004179114,0.012528648482326505,0.02876759342961668,0.006798863971109043,8.022686414155922,5.68005044686085,3.5446373367596484,2.176345278467581,0.4434005940742053,-0.528209294291974,3.246088861770135,0.9779373454121315,6.022400621275456,0.9966232906142234,14.561114397304685,10.943757508868767,16.011000461422,11.693809584105132,2.0010755060559493,0.7514711962218874,3.489957913957546,2.2252026390146113,7.00827108893231,1.2539569511166522,3.702848708843138,2.420602060094366,20.900517510021555,14.702272372237374,0.27620639475555764,0.5873172546130067,0.7480692410307023,0.7860953796624853,0.8177838285223046,0.8241215182942685,1.3106317075066436,876.2432965501941,0.0,2.0,5.0,0.0,5.0,3.0,1.0,0.0,0.0,4.083333358004397,2.2309182241198857,1.2737693397042813,1.0473542453646587,0.8586750000816403,0.8209391510250361,388.29016565225584,2043.5930281197857,76.21774352042772,38.55835902112803,74.18694368076825,,15.0,705.0,0.0,4.794537184071822,12.011146117099809,66.95405824563362,12.841643245852019,0.0,26.352329219478285,9.799819461700956,9.967957041894417,19.944256338562333,12.833333333333334,33.0,13.0,1.5,20.0,0.0,0.041666666666666644,-7.0,0.16332849540396738,0.031212024304445474,-0.1321164710995219,0.038730158730158615,0.19372972972972957,0.0,0.6069182389937109,0.8809523809523807,0.4435897435897435,0.5757062146892654,0.8422222222222221,24.967645455714102,0.31332681419894115,0.6573268141989411,25.74765168359946,6.56125304801659,7.039633700157565,50.71529713931356,13.600886748174155,0.5202702702702704,0.13506493506493505,0.0,0.374025974025974,0.5263157894736842,0.20209266968890643,-0.6337234349513575,-0.059891216757185325,-0.011957045942478442,-0.052810286245946456,0.7979073303110937,2.5020827074826393,0.057061652529960684,0.04720910768835168,0.06102640749957657,-3.2043516613051666,0.7781183737438924,0.8355932381971175,1.5371913982280352,0.6634985764528554,0.48354647535870265,1.6801774173843251,0.784807599932934,1.3427229355421213,0.7906824291341215,0.7191705458098971,0.8914641555656756,1.091685469141721,0.8936805084583318,1.1359939696305295,1.284334587391478,1.1036411964760369,0.9819482676069651,0.9532742535819618,0.8880581004150829,0.8480242948017159,1.1062239720332647,0.7209613816640424,1.190639140243434,0.812243032890201,0.9370450815893797,0.9693640329458943,1.0125737613557877,1.3376131301289564,1.0706634319909434,1.1521739565072882,0.9375023694269744,1.001229407273406,0.9575493686402665,0.8985218140573618,0.9589891832044336,0.9655512724945935,1.052199327636234,1.1080579807433195,1.0273422938435528,1.1900253259712015,1.2155726178526944,1.2820948560145287,1.0529022896553928,1.173070444184642,1.0910473788339345,1.5924665252805628,1.1211374016758338,1.1072599853532132,1.2142958562998685,1.3469036235350766,1.114222111778011,1.1025320680124249,1.352669374822182,0.8506236531303619,1.2068697237761652,0.8668466778948921,1.3494679668328498,1.5783508940505173,1.3359198370553618,0.9829421986027121,1.0827694293353003,0.7356637868590586,0.784000148583387,1.0562719812426729,0.872618469998383,1.2338688893302256,1.0920825919545691,1.262183292466992,0.7725590296632694,0.5908875094518788,0.6736734884571483,1.271469427405691,0.8749050327750484,0.6181413313171398,0.7102315745175443,0.7959456105972051,0.7206645015589016,0.9582371157036795,0.8820284513661724,0.9768999701733436,0.6424896161981831,0.591207246412714,0.5424331149609448,0.986999004106908,0.8475365143752718,0.9630053157771744,1.1505445185431415,1.0077485624965108,0.9922983911339084,0.7246455768385862,0.8441345475909996,0.6909581904126985,0.9489641286979809,0.7421909266986375,0.9307631082704139,0.7140402544742048,5.5,0.16222426283032343,3.7777777777777795,1.9027777777777777,2.0311111111111115,1.0836111111111113,0.63437641723356,0.41578089569161,0.2312846434870244,0.18625771604938274,5628.7009287264445,6330.565687672651,2819.274163824855,2566.7602650046915,17.23160883062338,0.4598772493642811,9.307183959475044,0.8514309919791572,1.0,0.5263157894736842,1.6445870965588019,3.497002230443313,4.4541511148589175,4.68056620919854,4.869245454481558,4.906981303538163,0.17741935483870963,0.008111213141516171,0.0858585858585859,0.04048463356973995,0.04616161616161616,0.028516081871345033,0.01982426303854875,0.01599157291121577,0.009636860145292685,0.00776073816872428,0.4397649197052944,21.240374609781476,9.427685950413224,4.541789841440473,162.9167803904133,1.0,4.272664812615336,162.70243155850972,,126.70485332010918,122.9437919271243,122.45870136062949,126.74513927898347,198.78192691664478,125.22847020937193,126.9193911205937,172.78563455050804,0.07626038799404705,-0.02993715996877799,-0.47840173969453414,0.47179073856975373,0.36078764353873527,-0.36127319378969436,0.07500700963328694,-0.17315129874713542,0.0007411546742060318,-0.04412661498383445,-0.07353402130407662,-0.04459208087928149,0.07417755696469436,-0.05215991032527864,-0.05127756124667946,0.062116235070165796,0.0877814127846555,0.17725808111893596,0.07824590831447248,0.16465040067055753,-0.042609233065621935,0.022278577058472547,-0.08415999498555836,0.15244025967480004,0.01923001751636396,0.025398916834162625,0.07908723617588313,-0.1475263774912076,-0.02222157528707752,-0.05329765022415267,0.018959425157171597,0.011962998660231637,0.02664531782296509,0.06130479891677069,0.03975010702361229,0.012657126018963374,-0.08899530386915301,-0.09496590329812295,-0.01895709251881251,-0.14056361472306994,-0.18720809212158934,-0.19702924083044399,-0.090069973879799,-0.18138670648836921,-0.08894462262255289,-0.1617485127007883,-0.10825417340233076,-0.1419258168053554,-0.20063403450380507,-0.18129847895078838,-0.04211516831620621,-0.12377953294940144,-0.26206658001513466,0.15937875180228323,-0.19721910208046836,0.0648857709867294,-0.2011666118171198,-0.21515460777413922,-0.15224145504918712,-0.05445835596017687,-0.1611806880314302,0.033238512349913325,0.02173307074586899,-0.11746325187122374,-0.038662461588225804,-0.19601606649446354,-0.16573630756973426,-0.2294725169550777,0.008630844784724262,0.012710359259324393,0.0590860216471477,-0.251240559387457,0.09034116870418615,0.1311769849336281,0.04843241654184446,0.08665850882672581,0.12563940921127043,-0.04336175219269419,0.08764755099729252,-0.03880270714092998,0.133286728631709,0.10638512528721455,0.12182035920569517,0.008519005008646857,0.17411704794391256,0.012120102162699502,-0.08118067098974242,0.024909283760397496,0.043239912817787655,0.16549828142857906,0.17694373382849185,0.18871351028620173,0.03686318607756416,0.02321976005834837,-0.00990233608693237,0.23166213629950763,8.096451373689963,15.989444779060337,7.423616560551448,15.890128318731303,34.75499859831293,37.531276371917066,39.00512542852084,39.761012220973676,40.21425750399254,57.52555177657474,39.50064691058281,10.42975549964543,7.5951493663465035,0.0,18.02490486599193,9343.232706636752,8637.619703475933,1106.0874624421158,176.0,44.0,61.0,79.0,99.0,114.0,130.0,145.0,168.0,387.19065428000073,31.0,5.017279836814924,5.8888779583328805,6.776506992372183,7.6624678152002375,8.55468163582723,9.444858981311897,10.339384867764494,11.231742229258277,12.12779213427609,0.6477987421383645,0.9950943396226418,1.1411765312060622,0.6086244841599603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6452132527398035,0.9797262301146873,1.0138932787313282,0.6117332414195684,2.0,2.0,0.0,0.0,0.0,2.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,7.0,0.0,3.0,0.0,1.0,2.0,0.0,0.0,0.0,29.74407580026329,11.92182916558333,11.49902366656781,5.948339280986494,5.907179729351506,4.794537184071822,4.9839785209472085,4.9839785209472085,0.0,0.0,18.90801031431363,44.238498871089625,19.736295800171327,131.7030301145463,-412.99517081036385,-39.030879924099445,-7.792361713403091,-34.41626423419699,519.9931957668022,1630.597857309422,37.18686359632827,30.765997307724938,39.770679446571265,0.4666666666666667,0.8286110798896952,0.1571659885420853,92.95204123563673,0.08014576129411195,37.728697953654525,0.17138892011030504,8.0,0.12903225806451613,0.2871176563299909,0.6105186442764573,0.7776209795843932,0.8171493033688562,0.8500895731892419,0.8566776271533192,1.0567999999999995,,1.7142857142857144,2.071195905072126,1.8187846708014441,1.7095632088057127,-6.920086148265698,1.8408047735618116,1.6952941664361783,-3.1926010534492466,104.82140000000004,19.005126045471968,0.0,14.867866772744893,0.0,18.94560963360032,57.63907987873095,12.13273413692322,0.0,11.49902366656781,4.143134726391533,0.0,5.476463551931511,2.3978952727983707,7.014814351275545,4.442651256490317,8.645938147306799,6.293419278846481,10.326563344903953,34.33333333333332,3.5817484294970003,9.133544816074577,0.0,0.0,0.0,1.408895839710234,2.1162850450240853,0.0,52.740000000000016,0.0,12.508819624652265,0.0,0.0,0.0,0.0,0.0,0.09067140774253146,60.482356153921295,20.107303115612762,11.766202058821523,11.49902366656781,73.88451556056297,9.53140013787187,0.0,12.841643245852019,12.13273413692322,0.0,10.902924932081056,0.0,32.257097660477896,34.196302395209585,37.069800808839,325.40486311701943,,253.3569682103108,245.842206841905,244.96240316794183,253.43772990895442,399.6406196105233,250.4110570628808,253.7852339319449,346.48344083057293,37.069800808839,325.4048631170193,,251.88758045520885,244.0668960661289,243.4034448786835,251.97239001569244,404.4839399815551,248.83322439982788,252.33212464642818,348.7638701544653,4.932767984157129,249.34368185734763,,195.61100409149486,189.51723529227326,187.24340055353457,195.67183238980232,305.19195831611773,193.1516245212266,195.96541459654281,267.8427844624821,1.3239214574585356,11.621602254179265,,9.048463150368244,8.780078815782321,8.748657255997923,9.051347496748372,14.272879271804403,8.943252037960027,9.063758354712318,12.37440860109189,2.4667513166482213,162.70243155850972,,126.70485332010918,122.9437919271243,122.45870136062949,126.74513927898347,198.78192691664478,125.22847020937193,126.9193911205937,172.78563455050804,51.92549019607843,0.0,3.1586652130864685,0.0,0.0,6.181846382466873,0.0,53.73634377276039,4.975758740845858,0.0,16.206828515307535,0.0,-0.2763346534838935,3.913270639076465,0.0,0.0,0.0,32.42186179523713,540.0027134875828,87.1631161176165,185.3411182134956,236.07000908752264,248.07000908752264,258.0700090875226,260.07000908752264,1075.0,136.0435924511582,111.69351239376573,76.7408799299445,103.04,103.04,0.875,8.863311555535653,5.954196310386875,4.432718431799143,5.206814625366214,,5.198282617239373,5.197179066490048,5.189718095151626,5.198273600342395,5.182635795224131,5.197554769134075,5.198372827466384,5.194965249708781,0.1583113725642551,0.18595766519165052,,0.1856529506156919,0.1856135380889303,0.1853470748268438,0.18565262858365697,0.18509413554371898,0.18562695604050267,0.18565617240951374,0.18553447320388503,2.5186324545269,2.679587689684634,,2.6779477223032364,2.677735408355661,2.676298795957269,2.677945987710206,2.6749331848138405,2.6778076954676027,2.6779650760046247,2.677309352529761,282.71000000000055,308.15228165498985,176.04625987516863,,176.50509958350284,176.57557681274724,177.51573178495576,176.50701913867212,178.90141566311686,176.5720918633189,176.49731110923682,177.28630993024163,11.005438630535352,6.2873664241131655,,6.303753556553673,6.3062706004552584,6.33984756374842,6.303822112095433,6.389336273682745,6.3061461379756745,6.303475396758458,6.331653926080058,6.760213498926722,6.200366217882698,,6.202969185961499,6.203368399143595,6.208678651943641,6.2029800612548245,6.216454320817776,6.2033486626438945,6.20292505892989,6.207385413124721,16.206828515307535,25.55563507980331,0.7162925052941289,6.874449716882977,2.2069564527666166,3.5817484294970003,1.4910149118892542,3.20840917547271,3.1586652130864685,340.28029951817393,85.8303676627874,-269.1473941243369,-25.436277139363696,-5.078252719327112,-22.42894951036141,338.8776031652061,1062.6544695387636,24.23453865809164,20.05008433092007,25.918401696067406,2195.0,47.0,1.7309017802800122,0.7234854770228227,0.0,0.0,0.5233831830054567,0.11508419760987439,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.08333333333333333,0.27777777777777773,0.125,0.5437950364258503,0.1496290122957631,19.67299762850793,16.180996088919624,13.600886748174158,9.450097360213816,12.019276050076293,6.947182985423141,10.882402486413016,5.298041278987527,8.991106941797495,3.710920561421526,6.943040046808031,2.387559546958929,5.179302492476419,1.4282659269852216,3.7397871458501686,0.8838523162441755,4.786947589226472,1.6696554937906123,7.51792398193145,2.214877743425344,11.29304137472137,2.7295799310315023,93.51749730349509,42.01805391467447,34.26648644905111,30.399421697741218,28.23073902191039,27.386681560499856,150.0,180.0,57.10782499999998,36.286175000000014,0.41509433962264153,205.09,8.61111111111111,6.25,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,10.0,11.0,53.0,0.0,0.0,56.0,11.0,1.0,6.0,50.0,12.0,31.0,44.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,8.0,1.0,3.0,28.0,9.0,0.0,5.0,4.0,0.0,4.0,4.0,0.0,0.0,0.0,1.0,2.0,3.6506582412937387,7.480836913713587,4.22683374526818,4.824305715904762,5.3867860145356445,5.975081067857458,6.372145892638407,6.751868718385261,7.110415471354947,7.476472381163905 +9832383,Cc1cc(F)ccc1[C@H]1CNCCN1C(=O)N(C)[C@H](C)c1cc(C(F)(F)F)cc(C(F)(F)F)c1,0,28.103448275862068,7.2087017241379305,3.5517241379310347,11.655172413793103,177.5576384786979,115.75158165600675,1.4010406330409657,7.17515,10.41594827586207,8.459165999999998,218.4920679824371,27.116666666666667,6.669233333333334,4.25,8.983333333333333,151.52097452896675,105.22103084744003,1.7444943571666671,6.793316666666668,3.5773148148148146,7.998039666666663,266.397444925739,25.537037037037038,7.024295370370371,3.6574074074074074,9.046296296296296,167.23034883451197,100.14922093129832,1.4666869764647037,7.057228703703702,6.730967078189298,8.312817666666666,223.17533911222182,20.87857142857143,6.475642142857144,3.442857142857143,5.607142857142857,160.25436557930564,78.61032869674284,1.415185486570614,6.5604507142857145,3.8132936507936512,7.898988714285712,207.64028670898645,18.046242774566473,6.603809248554915,2.9421965317919074,4.872832369942197,167.91710155113196,65.8010756255815,1.2229642222062311,6.650052023121388,3.897920680796405,8.065127999999996,178.17583101513588,18.36111111111111,6.483260555555555,2.7944444444444443,5.016666666666667,166.59692403749898,68.19550567858667,1.2034177855009331,6.535851111111111,3.6805555555555545,7.953690511111111,175.44025667401903,18.893401015228427,6.92664467005076,2.4568527918781724,5.7360406091370555,176.26414033767068,71.1067260917966,1.1013880439934767,6.915022842639596,6.479413423575861,8.306986152284262,159.25499768036576,14.44973544973545,6.443772486772487,2.3174603174603177,3.3015873015873014,173.6620150266257,51.215290311255025,1.0399957735883862,6.46735291005291,3.80629041740153,7.961627068783068,145.45135997888667,15.84375,6.712843750000002,2.30625,4.93125,177.69705573170046,57.41023841691998,1.048081993350694,6.700886249999998,5.73559027777778,8.174553849999999,145.61876051824274,8.925089179548156,0.3668693519619499,0.01959068651873846,0.8121284185493461,5.994054696789536,3.8045680722804027,43.9540609807479,0.24304081422496546,0.3188786266349583,5.170795349451709,0.20820690249702736,45.98551144256716,0.16629013079667054,-0.008998173801030546,-0.01326424759390746,0.17580261593341245,1.6772096710265565,-0.3783604607144726,0.7572509764028844,-0.01256452353946665,-0.006056126634958403,-0.34481354868542763,-0.00628177720967102,-0.6151493544710799,1.8549235918439253,0.1327882789448187,0.002021474058092599,-0.02445281190822211,1.599176465407144,1.1689586468561086,9.476920151585054,0.04427364827440739,0.11306541870348354,2.097736472600226,0.07704072393975425,6.143372646810763,-0.04503991846441322,-0.005167073636826966,0.0020385114719036032,-0.07173432987939525,-0.2883896721589944,-0.4072110780289678,-0.1429435177632106,-0.03287213157652855,-0.002451262102938775,0.20016455749957507,-0.004578186733480538,-3.7844255316896507,-1.2525757252926255,-0.052828959297010855,-0.0013133559190521605,-0.029987697002604927,-0.6749396878200326,-0.41304287882141427,-6.047316227852278,-0.021507438831317907,-0.04603837349563214,-0.6091576952537621,-0.030700569230134776,-4.514898434138402,0.3883207821376668,-0.008966353877658944,-0.0024002530059275056,-0.1487184568635223,0.2881292112564408,-0.6631120466059767,2.1138266896157165,-0.03247707680973332,-0.003713425485533207,-0.22036697567563626,-0.009363425868674856,-1.7908625382066978,0.5697471586279326,0.10647769862443185,0.0036859480173231105,-0.03792922373051179,0.7446115031054402,0.9567156189352592,3.070616951933725,-0.0036239058540355413,0.08810760651750084,1.3410283178178688,0.061168601441358786,-4.1226683600840515,-0.3636952733266642,-0.03808162162077149,-0.0045601974739236445,0.021478587471453103,-0.3657022063680803,-0.2744223714004777,-1.800011398251916,-0.004146388932841267,-0.03184734584678115,-0.5275340325792831,-0.02306901816934991,0.294190502074064,0.343445303210464,0.05755402088287748,0.004132997151829221,0.12170778834720572,0.7331004756242572,0.821582643728709,1.342674397377666,0.04397840367559374,0.04481894879607606,0.7391214369467567,0.04142703802021403,2.8053297300938604,,,0.4421568627450982,1.0588235294117647,0.4117647058823529,0.014705882352941176,0.6470588235294118,-0.23529411764705882,1.0890726064172749,0.03581762142163679,0.043405856715754434,1.1364645243560205,0.22236412690063243,0.2392951211592924,2.2255371307732954,0.46165924805992486,1.9856833755914545,1.3956271188135092,0.18744143049264253,0.05227018540619026,0.3503446408791127,0.5900562567779457,8.46863379186208,1630.0,418.1047,206.0,676.0,10298.343031764478,6713.591736048392,81.26035671637601,416.1587,604.125,490.6316279999999,12672.539942981351,1627.0,400.154,255.0,539.0,9091.258471738005,6313.261850846402,104.66966143000003,407.59900000000005,214.63888888888889,479.8823799999998,15983.84669554434,2758.0,758.6239,395.0,977.0,18060.877674127292,10816.115860580217,158.402193458188,762.1806999999998,726.9444444444442,897.7843079999999,24102.936624119957,2923.0,906.5899000000001,482.0,785.0,22435.61118110279,11005.446017543998,198.12596811988595,918.4631,533.8611111111112,1105.8584199999996,29069.640139258103,3122.0,1142.4590000000003,509.0,843.0,29049.65856834583,11383.5860832256,211.57281044167797,1150.459,674.340277777778,1395.2671439999995,30824.418765618506,3305.0,1166.9868999999999,503.0,903.0,29987.446326749818,12275.1910221456,216.61520139016795,1176.4532,662.4999999999998,1431.664292,31579.246201323425,3722.0,1364.5489999999998,484.0,1130.0,34724.03564652112,14008.02504008393,216.97344466671493,1362.2595000000003,1276.4444444444446,1636.4762719999997,31373.234543032053,2731.0,1217.873,438.0,624.0,32822.12084003226,9679.6898688272,196.559201208205,1222.3297,719.3888888888891,1504.747516,27490.30703600958,2535.0,1074.0550000000003,369.0,789.0,28431.52891707207,9185.638146707197,167.69311893611103,1072.1417999999996,917.6944444444447,1307.928616,23299.00168291884,517.655172413793,21.278422413793095,1.1362598180868309,47.10344827586208,347.6551724137931,220.66494819226335,2549.335536883378,14.096367225047997,18.494960344827582,299.90613026819915,12.076000344827587,2667.159663668895,9.977407847800233,-0.5398904280618327,-0.7958548556344476,10.548156956004748,100.63258026159339,-22.701627642868356,45.43505858417306,-0.7538714123679989,-0.3633675980975042,-20.688812921125656,-0.3769066325802612,-36.90896126826479,200.33174791914394,14.34113412604042,0.2183191982740007,-2.640903686087988,172.71105826397155,126.24753386045974,1023.5073763711858,4.781554013635998,12.211065219976222,226.5555390408244,8.32039818549346,663.4842458555623,-6.305588585017851,-0.7233903091557752,0.28539160606650443,-10.042806183115335,-40.37455410225922,-57.00955092405549,-20.012092486849482,-4.602098420713998,-0.3431766944114285,28.02303804994051,-0.6409461426872753,-529.8195744365511,-216.69560047562422,-9.139409958382878,-0.22721057399602376,-5.187871581450652,-116.76456599286563,-71.45641803610467,-1046.185707418444,-3.720786917817998,-7.96463861474436,-105.38428127890084,-5.311198476813316,-781.0774291059436,69.89774078478003,-1.6139436979786097,-0.432045541066951,-26.769322235434018,51.86325802615934,-119.36016838907581,380.488804130829,-5.8458738257519975,-0.6684165873959773,-39.666055621614525,-1.685416656361474,-322.3552568772056,112.2401902497027,20.976106629013074,0.7261317594126527,-7.472057074910822,146.68846611177173,188.47297693024606,604.9115395309439,-0.7139094532450017,17.357198483947666,264.1825786101202,12.05021448394768,-812.1656669365582,-68.73840665873954,-7.197426486325812,-0.8618773225715688,4.059453032104637,-69.11771700356718,-51.86582819469029,-340.2021542696121,-0.7836675083069995,-6.019148365041638,-99.70393215748452,-4.360044434007133,55.60200489199809,54.951248513674244,9.208643341260396,0.6612795442926754,19.473246135552916,117.29607609988115,131.45322299659344,214.82790358042658,7.036544588094999,7.171031807372169,118.25942991148106,6.628326083234245,448.8527568150177,0.7477035521456282,0.5496632144001478,0.4360115120565957,0.2915053562940676,0.29712660681250075,0.15132533496815295,0.17931355718441488,0.08904430367811896,0.1095483083417281,0.04804953069727304,0.06921229673523989,0.02561757514773434,0.046064453449253515,0.013421247825393782,0.028024862347991036,0.007380303299150833,9.017867596674183,5.683799508026749,4.128421462364837,2.183416303407047,0.5096598360728412,-0.404307117930609,4.023738321565138,0.9776802851043345,7.017851219343754,0.993453624719421,17.434494131571412,10.944398292469822,19.009410813106925,11.695084012147156,2.001237730285937,0.5246150800766943,4.011087591767088,2.233316979148239,8.01120346545591,1.2174935442058854,4.03459875162248,2.429210878317964,20.908433109369284,13.299890587005883,0.2878509149016877,0.5723797295257249,0.7623329556257542,0.8391294378184068,0.8583285583665697,0.8640130706673339,1.7369229045050847,1019.584875185978,0.0,0.0,7.0,0.0,7.0,2.0,5.0,0.0,0.0,4.111851671779064,2.3858745050144288,1.2336012934764602,0.7677469829824277,0.65128340535892,0.6168006467382305,-61.91744459486921,1940.3532325063752,72.5963937425711,33.45436607769612,72.57977116112178,,14.0,788.0,47.411517029960834,35.52744251779556,18.17457496607118,36.34914993214236,4.899909730850478,31.004053050141515,12.990104268152233,0.0,5.316788604006331,0.0,15.033333333333339,36.0,14.0,0.5,22.0,0.0,0.05784313725490181,-8.0,0.26409805301430883,0.0690640394088673,-0.19503401360544154,0.019635854341736758,0.26613505461767595,0.0,0.7028735632183895,0.987254901960784,0.4387755102040806,0.6338095238095222,0.9676190476190473,37.02846861818735,1.2177991283356508,1.4757991283356509,38.6397938281047,7.5603803146215025,8.136034119415942,75.66826244629205,15.696414434037445,0.447864945382324,0.25498891352549874,0.06651884700665187,0.35254988913525487,0.43478260869565216,0.5446507440207828,-1.5242091736339056,-0.0815804806960244,-0.026279468510929407,-0.06928223516517752,0.4553492559792174,1.2742982926034765,0.02312290346463587,0.02197066021730132,0.03539717479454103,-6.651481895673912,0.6294730881961099,0.5434800228659679,1.9559489768031708,1.0991764275256222,0.35113816703035117,1.0413137420417107,0.6228845326928607,1.1914935822567159,0.527786614191359,0.5805172914896743,0.5642721352619576,1.0474802579009812,0.6254968247624124,0.42351850058742696,0.9255815470417625,1.1484768993004717,0.5730854217637594,0.6626986665512113,0.6124965832671361,0.8352857912322517,0.4251409644128696,0.351033191881382,0.4175147786635058,0.8367806657117383,0.7920192417494578,0.5979693940512714,0.9821812771144911,1.1798499267935576,0.7776178195936181,0.9124360910507581,0.7808548487711187,1.1630345304076082,0.595341213907306,0.5244170658215443,0.6070859229004423,1.1149561846031975,1.0438354518697182,0.9114754992865232,1.0710244970471001,1.045724405250552,1.0031616467509772,0.9238776983054549,1.0313642614164813,1.0527478316759982,0.9176231648957877,0.9032707507863789,0.9258838515826733,1.0907586244952743,0.8493910427213786,0.703686840224927,1.2492234425487796,1.2168252806246949,0.7851649804932884,0.9056630401841715,0.8326750287269206,1.0807805956941272,0.7018329457316285,0.7284953066412864,0.7295535123465127,1.0489164802946984,0.9381870138407044,0.6857685241536753,0.8036169407584866,0.9551824215353284,0.8722103119899062,0.682637604172811,0.9296828274395287,0.9614679393809166,0.7027514336959406,0.7159456064446589,0.6822044234472483,1.0605592811385227,1.0489761629849563,0.9643033477403488,1.0887244412732147,0.8355469567036183,1.0110593136282484,0.872537830543595,1.044692767586395,0.9524203930295128,0.973231402224128,0.9577625725294857,0.9644362543158587,1.0152611450903608,1.009244479416467,0.82492471580608,0.4559734877609172,0.6353038067349926,0.8920207424122198,0.6659657779233934,1.0151650912843735,0.7549100860500791,0.8500601660871827,0.8400892520648224,0.7795440092904703,0.9383424981590167,10.5,0.3884297520661157,5.555555555555558,3.375,2.684444444444445,2.5416666666666665,1.1787755102040816,0.7274305555555556,0.48475686570924664,0.3956250000000001,7950.4169602260645,8752.663750304839,3267.8759746658116,3027.7157885628103,14.27472420706424,0.46489343563069796,7.638498627761455,0.8687866428598946,0.0,0.43478260869565216,1.7461293233485076,3.472106490113143,4.624379701651112,5.090234012145144,5.206697589768652,5.241180348389341,0.2916666666666666,0.010498101407192317,0.10101010101010105,0.05720338983050847,0.046283524904214564,0.04099462365591396,0.019324188691870192,0.0158137077294686,0.011823338188030405,0.010692567567567571,0.6053102096515337,28.569444444444443,11.170909090909092,6.865051903114187,191.88682887493667,0.0,4.4462703803025265,206.16654599466523,,168.71828543457224,164.74516385730112,162.56690218280883,168.2116135242916,254.66632978770062,166.99731377388454,169.21254665397888,216.1702951914437,0.018631761257660532,-0.02452691606128984,-0.677069054278431,0.21647144948755467,0.2798122065727701,-0.09944899224465416,0.017228236925242568,-0.051697175141277175,-0.018991949064969024,-0.0666848183659,-0.030170840324377366,-0.013377025397213652,0.2078324994325528,0.36194977376739534,0.1031854629575672,-0.03010953852827934,0.26679377254659953,0.3072513422411842,0.21560966017988628,0.18216548695984225,0.35457195703780137,0.4056893245296706,0.3700200282305923,0.1335936570909606,-0.005046439039244807,-0.014084233553973383,0.10405513201151832,-0.08832880150596105,-0.04811261937824129,-0.10703214406803645,-0.003252111740615289,-0.13525354447710655,-0.00768713202514165,0.038710593626723154,-0.021988640523317435,-0.08229604092619795,-0.14034321675607492,-0.14399938020031186,-0.06703981087114724,-0.03692482163863944,-0.11260152300270729,-0.1085649858208063,-0.13758265090684185,-0.08849311544607488,-0.1443758522841838,-0.11780734956341962,-0.14745221633837569,-0.09818088986086866,0.04350889658643456,-0.024440182396563054,-0.12252010686974484,-0.18312184805596227,0.048069166170733334,-0.17429364753316584,0.04809172673582046,-0.1336280777090864,-0.01164526304167828,-0.042617616978208796,-0.04497173607781106,-0.03894406046659644,0.06383657879111262,0.290233288921543,0.18814797601898772,-0.04670348046465653,0.12422500974244699,0.2514649759865692,0.06985968721476431,-0.014910688419111166,0.2763045220285758,0.25934662410494863,0.2937875772021156,-0.08965146261845951,-0.0407497635048927,-0.10380158881388694,-0.2327737452978905,0.026447279741569626,-0.061010822367696,-0.07212970465685292,-0.04095210676984613,-0.017060463470153008,-0.09987293969137336,-0.1020218355064508,-0.11079852729512304,0.006397460696756376,0.03848088196109783,0.1568787923414402,0.2109674486331051,0.14986273792093704,0.12230460226145612,0.21594636450709223,0.030547220607573988,0.18095069264739247,0.14055174932556175,0.14294153742230972,0.19897053134828466,0.06100464346466018,7.34550454693782,20.321190588242743,9.03157345381725,18.593155745945175,35.16688005083264,41.921352974146316,43.292969070612315,43.789778149960256,44.20395056375336,67.51323477010945,47.45132203965931,6.373008636749846,1.7771863038104687,11.911717789889833,20.061912730450153,10532.20756194493,9499.463324744473,2347.160916549845,120.0,55.0,68.0,84.0,111.0,121.0,124.0,123.0,114.0,491.18075992800067,36.0,5.209486152841421,6.061456918928017,6.9726062513017535,7.8504931808711405,8.759197750371365,9.645946636996333,10.553283501082905,11.443821873068284,12.350341806422383,0.7298850574712644,1.0462758620689654,1.1706209242296788,0.7054651374171377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6443736526946108,1.02684246112238,1.0460481703794862,0.6382156207668609,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,7.0,0.0,0.0,3.0,1.0,0.0,0.0,2.0,2.0,2.0,0.0,0.0,15.116608065707286,5.817220841045895,0.0,0.0,0.0,0.0,9.184952231746642,26.34249028604892,0.0,6.06636706846161,60.86966421678028,26.681941200414915,23.210584641689913,377.6351660653688,-1056.814831747728,-56.56406185715268,-18.220945374960827,-48.037037806714906,315.7177214704996,883.5384007586472,16.032331885418415,15.233420702735296,24.542733354406874,0.5,0.8969711117479572,0.11468182911038773,0.0,0.14862791928344124,2.860977970229384,0.1030288882520429,7.0,0.08333333333333333,0.2980769867298761,0.5927138536299621,0.789415279000987,0.8689400010650413,0.8888211815810548,0.8947076395004935,5.931020000000005,,3.0119047619047623,3.5744248601164457,3.3248052968670345,3.2512889249675547,-16.624272393929488,3.2573489386959285,2.8637837795551935,-5.183586019893264,111.47370000000005,35.52744251779556,0.0,15.116608065707286,0.0,38.283753092564126,26.681941200414915,70.03268071030053,0.0,0.0,4.290459441148391,0.0,5.680172609017068,0.0,7.247792581767846,0.0,8.891374009484636,0.0,10.575487702494618,42.333333333333336,5.481856219223852,0.0,0.0,0.0,0.0,0.0,-2.280883042553456,0.0,60.684,0.0,13.344044863315697,0.0,0.0,0.0,0.0,0.0,-0.5613931405895689,67.89601360532137,5.316788604006331,35.52744251779556,0.0,42.51287517445394,12.35259703488695,12.740958040736519,46.824676316471525,36.39820241076966,0.0,0.0,0.0,40.91697797019398,37.37367185628742,41.165744935730075,412.33309198933046,,337.27426512864884,329.32003967758567,325.04697692212335,336.2322745678565,515.5083100310093,333.8283201594949,338.2766973130584,434.170091331085,41.165744935730075,412.3330919893305,,334.6167021034388,326.1661353892475,322.11332518959364,333.3634902222969,525.9569319693308,330.95418874299855,335.7498292722745,437.5241764027808,4.923935173419582,304.35259199888225,,251.58771119006008,245.30100188934216,241.0637185974136,251.07368830855157,375.1132435984226,248.8741370045799,252.23503875021242,324.59173472619136,1.210757203992061,12.127443882039131,,9.9198313273132,9.685883519928991,9.560205203591863,9.889184546113427,15.162009118559096,9.818480004691027,9.949314626854658,12.769708568561324,2.461967586709791,206.16654599466523,,168.71828543457224,164.74516385730112,162.56690218280883,168.2116135242916,254.66632978770062,166.99731377388454,169.21254665397888,216.1702951914437,59.556862745098044,0.0,4.39716329674604,0.0,93.15276807416232,0.0,0.0,60.6707938820102,1.0718912276929953,3.151851605234993,0.0,0.0,-1.5652814520870069,2.6094602702191985,-9.968144588031715,0.0,0.0,37.01650600447793,621.917510366704,101.27550075421344,201.3821764265623,268.21402269576447,295.23357270441835,301.9884602065818,303.9884602065818,990.0,148.8466340718836,71.43537716916424,70.68528634391257,35.580000000000005,35.580000000000005,1.0,8.06880427214291,6.169925001442312,5.245560767971201,5.752820515845101,,5.758589841491025,5.75810488848246,5.7555470077475395,5.759535983084604,5.724192481832625,5.758453748655975,5.7581685064642585,5.7546896167266075,0.1542811990579765,0.16920060340720885,,0.16937028945561838,0.16935602613183706,0.16928079434551588,0.16939811714954717,0.16835860240684192,0.16936628672517573,0.16935789724894879,0.16925557696254728,2.8811575825258857,2.973465690658363,,2.974468057171221,2.9743838397772167,2.9739395184098423,2.9746323445926497,2.968476919905487,2.9744444238778343,2.9743948881397584,2.973790539539904,320.3800000000013,243.18572202473075,226.43454850465096,,225.30946192254996,225.30268541436766,225.81587984506066,225.11875870384094,231.68491442064024,225.29771318658578,225.39938931791278,226.74874629548734,7.152521236021492,6.659839661901499,,6.626748880074999,6.6265495710108135,6.641643524854725,6.621139961877675,6.81426218884236,6.626403329017229,6.629393803468023,6.669080773396686,6.71760087121081,6.646231365711208,,6.641250275171585,6.6412201982718715,6.643495407902317,6.640403511041939,6.669153752700158,6.64119812892707,6.641649323898092,6.6476179915854825,93.15276807416232,15.953505133534895,3.151851605234993,-1.849078154031222,-0.43180488852223387,3.3551816265472763,-9.968144588031715,4.138561747081178,1.3304927773578568,413.29295104034645,261.8344328265106,-732.74561518302,-39.21885561941428,-12.633545089362412,-33.30661887195546,218.9037938278159,612.6039014148312,11.116063606688229,10.562136231290193,17.01677503930087,3402.0,59.0,4.697368563474176,1.3034352346271367,0.5773502691896257,0.026997462357801944,1.470376246979486,0.32598803234837403,0.28867513459481287,0.008999154119267315,0.0,0.0,0.0,0.0,0.0,0.0,0.21941609682128765,0.09375606889123267,0.3789166102287077,0.1306262587621768,25.42192077295136,18.688549289605024,15.696414434037447,10.494192826586433,16.34196337468754,8.322893423248413,12.193321888540213,6.055012650112089,9.20205790070516,4.036160578570935,7.682564937611628,2.8435508413985118,5.573798867359676,1.6239709868726475,3.4750829311508884,0.9151576090947033,8.082220478197126,2.6916844436530774,10.740443321205662,3.37154334308782,16.741675972484657,4.5857352580659825,114.31197920897469,66.37042833352251,46.304694274495105,41.91942267110552,40.76116412962611,39.96296116511696,182.0,214.0,62.414032,36.72596800000001,0.3620689655172414,174.11,14.847222222222223,7.111111111111112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,58.0,0.0,1.0,60.0,12.0,1.0,7.0,53.0,13.0,36.0,47.0,0.0,0.0,0.0,23.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,2.0,1.0,1.0,34.0,11.0,0.0,3.0,1.0,0.0,3.0,3.0,0.0,0.0,7.0,0.0,2.0,3.784189633918261,6.27493855933049,4.3694478524670215,4.844187086458591,5.31443674842792,5.82931319710341,5.988021125330222,6.165089544041006,6.194277831948941,6.172548359045047 +4463,Cc1ccnc2c1NC(=O)c1cccnc1N2C1CC1,0,23.941176470588236,6.2194,3.764705882352941,8.411764705882353,162.38747078623487,94.67467376470589,1.5747436667025294,6.296985294117648,4.064542483660131,7.686014588235294,234.63451229776643,26.45945945945946,6.414297297297297,4.513513513513513,8.54054054054054,147.6440309278108,101.43922851351348,1.8739888737837842,6.559202702702702,3.1493993993993996,7.778518162162161,277.73202277629645,22.64516129032258,6.350512903225807,4.17741935483871,7.483870967741935,155.51663047172332,85.37740927419357,1.6049345250684677,6.456754838709676,3.0573476702508957,7.764010516129031,231.95902944001972,22.423076923076923,6.376458974358974,4.051282051282051,7.217948717948718,159.02615991713574,84.91941480769229,1.5287306955043458,6.469515384615384,3.1153846153846154,7.808761897435899,224.48061531823046,22.27710843373494,6.559057831325301,3.6987951807228914,6.481927710843373,160.5693145701861,82.98422374698794,1.5050738742818792,6.638787951807229,3.538152610441768,7.9686093975903605,220.37642401905697,18.41304347826087,6.290434782608696,3.152173913043478,4.086956521739131,160.629970921982,66.67532998913043,1.4476480207042608,6.374946739130435,3.181159420289856,7.768727,203.38010534634637,12.561797752808989,6.0005280898876405,2.449438202247191,1.7865168539325842,158.24188523534488,40.962336202247194,1.2531532983718425,6.086112359550562,2.8146067415730336,7.564807011235955,159.3180174725327,6.774647887323944,5.591549295774648,1.6619718309859155,0.4647887323943662,166.5134335596384,18.402045704225348,0.9567280546010986,5.648063380281691,2.1737089201877935,7.271244450704224,106.30099817542536,2.75,5.071,1.3,0.0,173.78936551527687,4.897922400000001,0.6787388966518499,5.109500000000001,1.35,6.8581728,60.362249609786204,6.986159169550173,0.10396193771626291,0.01716967261122564,0.6505190311418684,3.9273356401384083,1.666859709875795,33.32707824913494,0.2190873996104844,0.09834991349480963,1.1712081891580162,0.057370588235294104,48.51176079756886,0.45740203871691865,-0.002061142803703375,-0.010570498047203381,0.2827083138501824,1.4637613391938649,-0.38266219312795996,2.1746055235200625,-0.010552927103824621,0.00045056345272606564,-0.017966712387127614,-0.0030062702702702703,0.3184104674329424,0.6153588570152925,0.020276202701194304,0.0024825967869777825,0.062004688023216896,0.8677307735238309,-0.16366761022846854,2.815232766994086,-0.014048428108887635,0.018526604531755773,0.1069912626657241,0.010631032258064513,-1.1734097105232186,1.3690444503593295,0.006080445390825991,-0.0005427501148025102,0.06139650430307871,0.5711560642356489,-0.12826435885809834,6.546379155842428,0.017342599304422827,0.008953932659036443,0.011672655487534359,9.215384615384431e-05,7.057980024807764,-0.5056488931504558,-0.0003704423229249382,0.0003923933443874569,-0.16079543085838158,-0.5658898570058781,-0.021016546756634214,-2.454152853670736,-0.015690349225128648,-0.0013599772793596555,0.0203620132201238,0.001071325301204821,-3.8346893298997067,-1.287949450880096,-0.024957334135700303,-0.0002959798088982668,-0.2553783661802317,-1.533473747555288,0.3205884589871515,-6.035342423687377,0.007610180354940756,-0.024059024748006613,-0.03301196864082379,-0.011166521739130431,-1.489440372870935,-3.424361416741185,-0.031176478363982713,-6.667151355841872e-05,-0.26585280510089027,-1.9379106566618716,-0.341444596113311,-16.371798883635936,-0.0852465868081619,-0.03370153279421481,-0.27734390187006724,-0.013996853932584262,-22.484571113125362,-1.034212193576686,-0.011619104244846206,-0.0009916317460904134,0.15312637068083237,0.02792533749208061,-0.03938270362633818,-4.887153424777039,-0.010820738506511786,-0.012717146303426068,-0.21158607740251575,-0.005575211267605633,-4.961254101361838,4.2638408304498245,0.04583806228373705,0.0007825339262993103,0.35536332179930785,2.4726643598615916,0.09441747935316028,20.292021350865046,0.07284442108472142,0.04844052768166087,0.2460303729334873,0.019736999999999984,22.717118459633845,,,0.4716666666666667,1.375,0.675,0.0,0.7,-0.025,0.7160858574709902,0.008009668347480315,0.025209668347480313,0.8950817714581643,0.2612008180397711,0.2265001917314034,1.6111676289291545,0.4877010097711745,2.0690283711533466,1.5587754274620402,0.4206243511901414,0.08962859250116514,0.0,0.5102529436913066,7.826963560823538,814.0,211.4596,128.0,286.0,5521.174006731986,3218.938908,53.541284667886,214.09750000000003,138.19444444444446,261.324496,7977.573418124059,979.0,237.329,167.0,316.0,5462.829144329,3753.251454999999,69.33758833000002,242.6905,116.52777777777779,287.80517199999997,10276.084842722968,1404.0,393.7318,259.0,464.0,9642.031089246846,5293.399375000001,99.505940554245,400.3187999999999,189.55555555555554,481.36865199999994,14381.459825281223,1749.0,497.3638,316.0,563.0,12404.040473536588,6623.714354999998,119.24099424933898,504.62219999999996,243.0,609.0834280000001,17509.487994821975,1849.0,544.4018,307.0,538.0,13327.253109325446,6887.690570999999,124.92113156539598,551.0194,293.66666666666674,661.3945799999999,18291.24319358173,1694.0,578.72,290.0,376.0,14777.957324822342,6134.130359,133.183617904792,586.4951,292.66666666666674,714.722884,18710.969691863866,1118.0,534.047,218.0,159.0,14083.527785945695,3645.647922,111.53064355509399,541.664,250.5,673.267824,14179.30355505541,481.0,397.0,118.0,33.0,11822.453782734327,1306.5452449999996,67.927691876678,401.01250000000005,154.33333333333334,516.2583559999999,7547.370870455201,110.0,202.84,52.0,0.0,6951.574620611074,195.916896,27.149555866073996,204.38000000000002,54.0,274.326912,2414.489984391448,237.52941176470588,3.534705882352939,0.5837688687816718,22.117647058823525,133.52941176470588,56.673230135777025,1133.120660470588,7.448971586756469,3.3438970588235275,39.82107843137255,1.9505999999999994,1649.3998671173413,16.92387543252599,-0.07626228373702487,-0.3911084277465251,10.460207612456749,54.159169550173,-14.158501145734519,80.46040437024232,-0.39045830284151095,0.01667084775086443,-0.6647683583237217,-0.111232,11.781187295018867,38.152249134948136,1.2571245674740468,0.15392100079262253,3.8442906574394478,53.79930795847751,-10.147391834165049,174.54443155363333,-0.8710025427510334,1.1486494809688579,6.6334582852748945,0.6591239999999998,-72.75140205243956,106.7854671280277,0.4742747404844273,-0.0423345089545958,4.78892733564014,44.55017301038062,-10.00461999093167,510.61757415570935,1.3527227457449804,0.6984067474048425,0.91046712802768,0.007187999999999856,550.5224419350056,-41.968858131487835,-0.030746712802769874,0.03256864758415892,-13.346020761245672,-46.968858131487885,-1.7443733808006399,-203.6946868546711,-1.3022989856856777,-0.1128781141868514,1.6900470972702752,0.08892000000000014,-318.2792143816757,-118.49134948096884,-2.296074740484428,-0.027230142418640545,-23.494809688581313,-141.0795847750865,29.494138226817938,-555.2515029792387,0.7001365926545495,-2.2134302768166085,-3.037101114955789,-1.0273199999999996,-137.02851430412602,-304.76816608996546,-2.7747065743944614,-0.005933764706699266,-23.660899653979236,-172.47404844290656,-30.38856905408468,-1457.0901006435984,-7.586946225926409,-2.999436418685118,-24.683607266435985,-1.2457199999999993,-2001.1268290681571,-73.4290657439447,-0.8249564013840807,-0.07040585397241934,10.871972318339099,1.9826989619377233,-2.796171957470011,-346.98789315916974,-0.7682724339623368,-0.9029173875432508,-15.022611495578618,-0.39583999999999997,-352.24904119669054,170.553633217993,1.8335224913494819,0.031301357051972414,14.214532871972315,98.90657439446366,3.776699174126411,811.6808540346018,2.913776843388857,1.9376211072664349,9.841214917339492,0.7894799999999993,908.6847383853537,0.6844934982691243,0.5564102127237295,0.42408783458363003,0.29421716763437755,0.2639949816114334,0.1545978338560578,0.1615727444424978,0.07423102327103719,0.10132756025991194,0.03779804140851206,0.06511962530894164,0.019948273120755138,0.04080034181989027,0.010700389274175106,0.026702135974490677,0.0056937990879087665,8.022021720203867,5.717675814311377,3.5437935160052985,2.213221722508466,0.4207052447234302,-0.39733189126090684,3.259474895566576,0.9780009085758439,6.021954109124511,0.9959487033748697,14.555020952955863,10.9829811034811,16.01006324314281,11.732173171090166,1.9695223650423639,0.751873734570164,3.4890188169138225,2.2617536778150877,7.0082697435557755,1.2600115822223705,3.7019399015571284,2.456832815349681,20.86375875118795,14.702709366884203,0.2858916914829227,0.6928603648412761,0.8267611437699443,0.863151957998684,0.884701281635582,0.884701281635582,1.6707283197831702,708.7697433173414,0.0,5.0,1.0,0.0,4.0,3.0,2.0,0.0,0.0,3.5266567012627714,1.3048390581353027,0.5738169118919689,0.3751437500636312,0.2574966912401022,0.2574966912401022,164.05526950112537,726.524460645037,35.238529547860935,21.36836648955991,41.77169155466426,,7.0,259.0,0.0,4.794537184071822,5.907179729351506,17.423155098679985,29.910343790067603,0.0,18.460054211687762,19.056471336613843,20.184655376751227,0.0,9.433333333333334,27.5,13.5,0.0,14.0,0.0,0.02833333333333332,-0.5,0.15675381263616534,0.058076563958916805,-0.09867724867724853,0.02468253968253964,0.13762525458248442,0.0,0.6049019607843138,0.818333333333333,0.44814814814814846,0.546825396825397,0.7936507936507934,14.321717149419804,0.1601933669496063,0.5041933669496063,17.901635429163285,5.224016360795422,4.530003834628068,32.22335257858309,9.75402019542349,0.5763747454175155,0.08833922261484098,0.0,0.4134275618374558,0.26666666666666666,0.31787409341187406,-0.512763275307987,-0.03710905703361362,-0.015081272803176086,-0.042730272942332254,0.6821259065881259,1.1003385342930623,0.0411310282773018,0.032362898067443004,0.05001538792241192,-3.950038807367465,0.7021605558009718,0.7381744950142354,1.6449765938628822,0.6048734905117886,0.40744136206691267,1.368876106639373,0.7062718349418482,1.014664579816104,0.7002927170194142,0.535362037731706,0.754791290829433,0.88812395311828,0.7831627762066816,0.6851039972299615,0.965986799879664,1.0588538091969804,0.7194862867699302,1.1864485757927894,0.7880001539147785,1.0048880330812582,0.6786737996590976,0.5361347107257518,0.6653209434317976,0.9338039001450292,0.7284927801272526,0.976676843708796,1.3561621663875265,1.1285801963993456,0.899830565909861,1.1504598778278419,0.7266621507799625,0.8445063558610321,0.9211822036836883,0.8467093727757236,1.0286239342529715,0.7585101619986405,1.0001297910811149,1.2253832203501975,1.4332453270809287,1.330235836964881,1.1939971339100894,1.1292304645053273,0.996595195902106,0.9503849732793025,1.1862147819459117,1.1256046528701127,1.2395051754233175,0.927455519416171,1.1272974675366627,1.3094343267707134,1.1788468689515577,1.3460626734505092,1.3713393028155523,0.8502712363225168,1.122115266285547,0.8987488033677262,1.2919823494150415,1.0981866886461982,1.2830326120391051,0.9469294321676602,1.4611082358047982,1.2986422893749265,0.7797828828541123,1.2405570164953386,1.4064569618373506,1.0947253273243716,1.4617517301338194,1.3980741517414332,1.342506954373528,1.6658197226385094,1.3259919678992462,1.457123592932975,1.2474363267270787,1.0055590909410532,0.48096149985497766,0.44130206772550207,0.9450362970776198,0.7801568681426087,1.2479386255710296,1.0996788572373632,1.0689496965963599,1.3153613624877225,0.9838080590587511,1.2080303947181597,0.6078194650817236,0.14704193709435837,0.07759746718014697,0.22380319148936176,0.33981277533039644,0.5570781954752627,0.6170183162000052,0.7802553919438102,0.21156078897024838,0.14502369668246445,0.07021424177176248,0.7882326405686674,3.0,0.0,2.2777777777777786,1.6180555555555554,1.6205555555555557,0.7436111111111111,0.3208163265306123,0.05555555555555555,0.0,0.0,3945.340362235286,4312.39578965767,1986.3797588489779,1844.812959813727,9.760876433933966,0.3934989036169144,5.919982258840773,0.6488016360787712,1.0,0.26666666666666666,1.5608061399875677,3.7826237831150364,4.51364592935837,4.712319091186708,4.829966150010237,4.829966150010237,0.13043478260869565,0.0,0.0734767025089606,0.041488603988603996,0.04155270655270655,0.021246031746031745,0.017823129251700678,0.01111111111111111,0.0,0.0,0.3371330677678103,13.648393194706994,5.325259515570934,2.4934359438660025,116.21205950623377,1.0,3.994834456997917,69.45089146525605,,52.566901452934474,51.10049539120077,49.883903676948066,52.57954660111908,74.24482911075275,51.94481948187271,52.655254480469274,67.55941423078062,0.06547260484853368,-0.019825936770520077,-0.6156493653986346,0.43458884416331245,0.37271103702821756,-0.22957072563501688,0.06525041010987838,-0.04816765876351938,0.004581228764881872,-0.015340323397195436,-0.05240089674417575,0.006563572671823104,0.08808257041972241,0.19503486705425718,0.1445919699921736,0.09531571722717919,0.22094642603382125,-0.0981891932828973,0.0844728345506003,-0.0641224832366642,0.18837438563414197,0.09135119072437525,0.18530457129816133,-0.02418814924940889,0.1959652531717911,0.0584872264253191,-0.03161097634719352,0.09438079650845613,0.1454309273692533,-0.07694970254434663,0.19642823492972564,0.07915836024918022,0.09104159160759183,0.009966336980554972,0.0016062907665491167,0.14549008134871638,-0.07237866771693002,-0.003563249503255357,0.022853862928691352,-0.24718021020251216,-0.1440900164534791,-0.012608467666544205,-0.07363840404264774,-0.07161684904300533,-0.013827945862213977,0.017385477158217356,0.018673772296198054,-0.079046591318365,-0.18435730128991962,-0.24006222550232623,-0.017238523738929847,-0.39257631822386685,-0.390461597395135,0.19233079849955695,-0.1810942555051022,0.034735819442244964,-0.24462680131667136,-0.02818625155324107,-0.1946384390087331,-0.030702665670827956,-0.4901636698554742,-0.29988358286540223,-0.003883097544610633,-0.4086779823093474,-0.4934415680839479,-0.20484303153428166,-0.49124615009000655,-0.38909853765995606,-0.34266967399003756,-0.2368015391605572,-0.24397264108882652,-0.4634870131172844,-0.1480373075501051,-0.11176305963589801,-0.05775484300394163,0.23539106982319452,0.007110504436309512,-0.023626885569915636,-0.14664212050763534,-0.04939005404121817,-0.12930510919155216,-0.18065624827523225,-0.09717891064215706,-0.10226909969449036,0.6103268945022284,0.44091196538525596,0.04557651994993106,0.5462765957446808,0.6296035242290748,0.05664392677665461,0.6088748974384444,0.3324902354687287,0.4925324889504584,0.2100654479801401,0.344026453398954,0.468280641356813,5.346465588956987,14.735337448926975,9.172594879731138,14.268863754660138,35.581477443812126,38.621760331528485,39.4692581727691,39.58784640806322,39.58784640806322,41.380567423066935,31.175508549240806,8.412487023802829,1.792571850023303,0.0,10.20505887382613,2389.528868389304,1496.932196904031,981.9050058576597,115.0,34.0,47.0,67.0,91.0,104.0,114.0,118.0,119.0,266.1167610680003,23.0,4.74493212836325,5.645446897643238,6.566672429803241,7.487173694213739,8.415160465851086,9.341280911236778,10.271216178807896,11.199268958746211,12.129833943444366,0.6862745098039217,0.9891764705882354,1.1258637242451486,0.65210811657941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6972015146178233,0.9763552479815455,1.0058266569555718,0.6629249410327942,5.0,2.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10.216698334856808,5.817862777835028,5.817862777835028,0.0,5.907179729351506,4.794537184071822,9.967957041894417,0.0,0.0,0.0,43.52793314262446,18.435527972374114,11.250837766380558,143.16722161895572,-230.94330426909193,-16.713537537385772,-6.792450125561526,-19.245275355757663,307.2224911200811,495.5811563759451,18.52499201047516,14.575916363998385,22.526416198906595,0.42857142857142855,0.8702677179292849,0.19742975985780603,18.85383412406043,0.16058555472531502,55.01834628857929,0.129732282070715,4.0,0.043478260869565216,0.30679460247496776,0.743518704931786,0.8872096111957168,0.9262611321655506,0.9493860300752943,0.9493860300752943,2.6512200000000004,,0.8214285714285716,1.0283852954862724,1.0741325277088927,0.8192662930274439,-3.1550215370664243,0.9034577723378214,0.8095467726672786,-1.6762929910317408,76.32520000000002,4.794537184071822,0.0,9.967957041894417,0.0,25.807221274690605,10.216698334856808,41.71969133200497,0.0,0.0,3.8501476017100584,1.9459101490553132,5.209486152841421,3.713572066704308,6.78105762593618,5.53338948872752,8.44741429680832,7.416378479192928,10.161882410862972,23.333333333333336,9.021379440665154,8.913307823129252,0.0,0.0,0.0,0.0,3.933940854119426,0.0,33.632000000000005,0.0,12.403475056689343,0.0,0.0,0.0,0.0,0.0,-0.11703703703703683,38.279366624335054,10.216698334856808,17.323111830353618,0.0,21.916977600393885,0.0,6.923737199690624,28.763083413317833,30.59278834861098,0.0,0.0,0.0,22.17167596369994,23.704851497005993,26.92723764931251,138.90178293051224,,105.05166004872609,102.09815225285291,99.6957127452637,105.0771665729354,148.8371161302046,103.79929318651165,105.22955428367183,135.2864577606644,26.92723764931251,138.90178293051224,,104.43085504836695,101.34978336781168,98.93888498891508,104.45789909634368,151.6446797585719,103.12759173210623,104.61651038205059,136.795121452593,4.933972728899812,93.1012979994553,,70.98265239260505,68.7923209970937,66.91686004098412,71.00137907764267,103.80972293933698,70.04950753437647,71.11517486663361,93.70149906488082,1.3463618824656254,6.945089146525612,,5.252583002436305,5.104907612642646,4.984785637263185,5.2538583286467695,7.4418558065102305,5.189964659325582,5.261477714183592,6.76432288803322,2.5358638401351072,69.45089146525605,,52.566901452934474,51.10049539120077,49.883903676948066,52.57954660111908,74.24482911075275,51.94481948187271,52.655254480469274,67.55941423078062,33.19607843137255,0.0,1.9814351851851852,0.0,0.0,0.0,0.0,34.198106336489445,2.2207671957671957,2.9763888888888888,0.0,0.0,0.39296296296296274,2.106712962962963,0.0,0.0,0.0,22.539447995115005,391.9596274842278,53.067408759577305,128.60920862591124,153.4639615981846,160.21884910034808,164.21884910034805,164.21884910034805,852.0,118.80098560810981,58.43008525480902,73.05923827183902,58.120000000000005,58.120000000000005,0.75,8.531585991360085,5.523561956057013,4.095704695354843,4.416438991170177,,4.414430337099789,4.412875928828226,4.411149669793542,4.414442295374395,4.425965030045026,4.413787763336798,4.414518262602118,4.424679360812313,0.20478523476774213,0.22082194955850887,,0.22072151685498947,0.22064379644141133,0.22055748348967713,0.22072211476871978,0.2212982515022513,0.22068938816683992,0.2207259131301059,0.22123396804061563,2.1030859698374864,2.1784808938263462,,2.178025977321445,2.1776737955253678,2.1772825321416858,2.1780286862232727,2.18063552112845,2.17788040462335,2.178045894869121,2.1803449955610494,194.45999999999978,119.45694575399547,110.46049453777597,,110.18226705693334,110.30599511552056,110.49835351813734,110.18147344425697,109.24418536201964,110.23639700881607,110.17491272819213,109.31823476059662,5.972847287699773,5.523024726888798,,5.509113352846667,5.515299755776028,5.524917675906867,5.509073672212848,5.462209268100982,5.511819850440803,5.508745636409606,5.465911738029831,5.476103200435265,5.397805122098612,,5.395283148331601,5.396405458157577,5.398147801118393,5.395275945579691,5.386732789888297,5.3957743041345845,5.3952163991678015,5.387410394037892,0.0,23.42349584278156,2.9763888888888888,2.417598261526833,1.399305555555556,5.908469387755101,5.726640211640211,1.9814351851851852,0.0,231.09245822281162,64.48104381860749,-104.01448846876029,-7.527605370316287,-3.0592496608458903,-8.66787403906336,138.36984952254463,223.2046546590416,8.34346583009086,6.564842784089459,10.145666120865528,676.0,39.0,1.293513352520627,0.6236865545644634,0.0,0.0,0.44983859872184484,0.13889191450668845,0.0,0.0,0.28867513459481287,0.28867513459481287,0.16666666666666666,0.12909944487358058,0.19245008972987526,0.12909944487358058,0.45412414523193156,0.19471008453224303,0.7380791642316196,0.25404210015184175,13.689869965382487,11.12820425447459,9.754020195423491,6.766994855590684,8.975829374788736,5.256326351105965,7.593918988797396,3.488858093738748,6.7889465374141,2.532468774370308,5.925885903113689,1.8152928539887174,4.243235549268588,1.112840484514211,3.044043501091937,0.6490930960215994,3.388565832487904,1.2776732286715244,6.026545631486794,1.809986775401269,10.54973263005062,2.5935488288441677,65.62262425671398,30.196426248719643,23.848945148443498,22.28101371797245,21.78984599061943,21.78984599061943,114.0,141.0,39.58710199999999,19.472897999999997,0.5294117647058824,149.05,5.388888888888888,4.277777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,12.0,12.0,34.0,0.0,0.0,37.0,12.0,1.0,7.0,30.0,13.0,23.0,24.0,0.0,0.0,0.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,4.0,1.0,3.0,20.0,5.0,0.0,4.0,1.0,0.0,4.0,1.0,0.0,0.0,0.0,2.0,2.0,3.4339872044851463,7.278445609436181,4.04305126783455,4.620058798481842,5.216293531069446,5.776878029726752,6.019201302079582,6.378267002901509,6.702305822296159,7.004711830045962 +6918182,N#Cc1c(N(CC(=O)[O-])CC(=O)[O-])sc(C(=O)[O-])c1CC(=O)[O-],0,44.96551724137931,7.822186206896553,4.0,18.842911877394638,160.15373808502048,179.49122558620698,1.7969003251411728,7.823393103448277,18.401459249798968,9.198545689655173,278.7323133276691,38.06896551724138,6.970689655172414,4.724137931034483,13.287356321839082,143.95096774253102,150.0492812758621,2.052761581379309,7.12153448275862,5.543848446147297,8.35049131034483,317.6353399048245,36.57446808510638,7.149506382978727,4.25531914893617,11.432624113475176,153.5225338527904,143.1057275744681,1.808455710522277,7.240012765957445,8.507289204097715,8.580069957446808,274.50898905613883,34.0,7.083070175438595,3.824561403508772,9.076023391812864,154.50817150476493,130.36651731578948,1.7705106588070176,7.1739614035087715,5.348115659519167,8.58587592982456,258.8369338050922,33.328125,6.769276562500002,3.6875,10.098958333333334,148.49359531850274,127.73872656249996,1.8064232837405627,6.9095984375,5.227719907407409,8.284899125,264.3643139248094,36.3768115942029,7.485811594202897,3.0,11.0,158.53641339343193,140.0555392318841,1.4436950253913043,7.546889855072465,7.373590982286635,8.98870585507246,240.77209355478487,37.333333333333336,8.30251851851852,2.5555555555555554,18.537037037037038,163.71811161611112,145.7551472222222,1.269853572592593,8.26587777777778,17.74485596707819,9.605419407407407,238.1365206553155,25.73913043478261,7.386956521739133,2.217391304347826,10.304347826086957,167.05613435448674,97.68576499999999,1.027813947973739,7.376769565217393,9.932367149758454,8.886191130434781,183.28716304117282,32.0,9.099999999999998,1.5,17.0625,177.29079190245,120.0964935,0.7630199929999999,8.935400000000003,20.9375,10.581983999999999,170.78688507277803,9.788347205707492,0.2539954815695599,0.07217697737627914,0.784780023781213,5.816620425419474,1.665722406008087,43.45037360523188,0.29359112244133406,0.21720951248513665,7.674370279029634,0.18177926753864437,33.95668951598642,0.0285374554102258,-0.009348870392389887,-0.00864705375553447,0.02497027348394766,1.2567049808429118,-0.25878356899891136,0.2879488620689684,0.0013776358858503582,-0.007241736028537469,0.20017281340882012,-0.00980241260404292,-1.0400130277468795,1.7149543350115113,0.05585396817365355,0.012947536376713862,0.06921850886735649,0.21843296986869717,0.1889143292359516,7.917460547372682,0.05545786762879727,0.04901616616489993,2.4685374720681104,0.042891232094517576,6.298545214448934,-1.2668711016542546,-0.04843335210797494,0.002782339986034977,0.056115318021569965,-1.7057109678675488,0.315166572693303,-5.985224348728542,0.0589332806101493,-0.048330867597054426,-1.6352631810733067,-0.02543894388468204,-0.086042495345855,-2.9451359988109393,0.023920843861474587,-0.005808619861361622,-0.21365933412604038,1.094119517109261,-0.4977760020108671,-12.424888169887035,-0.10716858221618956,0.021561662083828738,0.06580506154082041,-0.00033447766795494365,-7.165230091761566,-0.22013131365351796,-0.11695610125971495,-0.026019394066928627,-0.17758362198211236,-2.6503702171902552,-0.36833050200087436,-1.672373448810076,-0.082627089023616,-0.09508757345465198,-3.8079809428335345,-0.06934034350066345,-5.38123741258713,0.4594178006782048,0.07569570616990341,0.01730791803085298,-0.07341348482846698,1.95455879978274,-0.07810270831709465,1.7309031265689023,-0.053319936023982974,0.06503071739992074,2.0477652238636366,0.05024412837451015,-9.542885616759602,2.637439900739286,-0.036794582019335165,-0.025445162798464947,-0.02466008375122781,-0.05067006726521792,-0.10030256657755697,12.481277592669173,0.00021294698916348912,-0.022589872305226747,-1.5076362592082695,-0.043300708318254666,10.08951670032159,-3.995243757431629,-0.11311961950059482,-0.015995511431893525,0.23246135552913205,-2.84511659400185,0.44199979982060816,-18.02270117419739,0.11649833264649316,-0.109425029726516,-2.0429195434920544,-0.06954440546967863,3.7732607915440766,,,0.44782608695652176,1.2173913043478262,0.5869565217391305,0.021739130434782608,0.6304347826086957,-0.043478260869565216,0.7997104504080248,0.032495797688178604,0.03623492812296121,1.087601414574486,0.2589601118130318,0.20481424538457638,1.8873118649825107,0.4637743571976082,1.9342037507207284,1.0790240424620545,0.1721912175043373,0.5930516135797577,0.0,0.8551797082586737,11.654713119711728,1304.0,226.84340000000003,116.0,546.4444444444445,4644.458404465594,5205.245542000002,52.11010942909401,226.87840000000003,533.64231824417,266.757825,8083.237086502403,1104.0,202.15,137.0,385.33333333333337,4174.5780645334,4351.429157000001,59.53008585999996,206.5245,160.77160493827162,242.16424800000007,9211.42485723991,1719.0,336.02680000000015,200.0,537.3333333333333,7215.559091081148,6725.969196,84.99741839454701,340.28059999999994,399.8425925925926,403.263288,12901.922485638524,1938.0,403.73499999999996,218.0,517.3333333333333,8806.965775771601,7430.891487000001,100.919107552,408.9158,304.84259259259255,489.39492799999994,14753.705226890255,2133.0,433.2337000000001,236.0,646.3333333333334,9503.590100384175,8175.278499999998,115.61109015939601,442.2143,334.5740740740742,530.233544,16919.3160911878,2510.0,516.5209999999998,207.0,759.0,10939.012524146803,9663.832207000003,99.614956752,520.7354,508.7777777777778,620.2207039999997,16613.274455280156,2016.0,448.33600000000007,138.0,1001.0,8840.77802727,7870.77795,68.57209292000002,446.3574000000001,958.2222222222224,518.692648,12859.372115387037,1184.0,339.8000000000001,102.0,474.0,7684.58218030639,4493.54519,47.27944160679199,339.3314000000001,456.88888888888886,408.76479199999994,8431.20949989395,1024.0,291.19999999999993,48.0,546.0,5673.3053408784,3843.087792,24.416639775999997,285.9328000000001,670.0,338.62348799999995,5465.180322328897,283.86206896551727,7.3658689655172385,2.093132343912095,22.758620689655178,168.68199233716476,48.30594977423453,1260.0608345517246,8.514142550798688,6.299075862068963,222.5567380918594,5.271598758620687,984.7439959636062,0.8275862068965483,-0.2711172413793067,-0.25076455891049965,0.7241379310344822,36.44444444444444,-7.50472350096843,8.350517000000083,0.03995144068966039,-0.2100103448275866,5.805011588855783,-0.28426996551724465,-30.160377804659504,80.60285374554103,2.6251365041617167,0.6085342097055515,3.2532699167657553,10.266349583828767,8.878973474089726,372.12064572651605,2.606519778553472,2.3037598097502965,116.02126118720119,2.015887908442326,296.0316250790999,-72.21165279429252,-2.7607010701545716,0.1585933792039937,3.198573127229488,-97.22552516845029,17.96449464351827,-341.15778787752686,3.35919699477851,-2.7548594530321022,-93.21000132117848,-1.4500198014268764,-4.904422234713735,-188.48870392390012,1.5309340071343736,-0.3717516711271438,-13.674197384066584,70.0236490949927,-31.857664128695493,-795.1928428727703,-6.858789261836132,1.3799463733650392,4.2115239386125065,-0.021406570749116394,-458.5747258727402,-15.18906064209274,-8.069970986920332,-1.7953381906180752,-12.253269916765753,-182.8755449861276,-25.414804638060332,-115.39376796789526,-5.701269142629504,-6.561042568370986,-262.7506850555139,-4.784483701545779,-371.305381468512,24.80856123662306,4.087568133174784,0.9346275736660608,-3.964328180737217,105.54617518826797,-4.217546249123111,93.46876883472072,-2.8792765452950806,3.5116587395957195,110.57932208863637,2.7131829322235483,-515.3158233050185,121.32223543400715,-1.6925507728894176,-1.1704774887293876,-1.1343638525564792,-2.3308230942000243,-4.61391806256762,574.1387692627819,0.0097955615015205,-1.0391341260404303,-69.3512679235804,-1.9918325826397145,464.11776821479316,-127.84780023781212,-3.6198278240190342,-0.5118563658205928,7.438763376932226,-91.0437310080592,14.143993594259461,-576.7264375743165,3.727946644687781,-3.501600951248512,-65.37342539174574,-2.2254209750297163,120.74434532941045,0.7709428838538858,0.5167540634714569,0.46377435719760823,0.2843936125323695,0.31850352861636716,0.15852093184753213,0.16892755261110992,0.09944177858117782,0.1087487787967379,0.05388739261512069,0.07101652019165644,0.028915001242437975,0.051015476029115665,0.015223383842220696,0.030515651087542707,0.008519950230315921,16.004503938100854,5.719063011859491,3.5623311431899976,2.2125845285218637,0.3960420246503779,-0.6338007196139691,3.2757263099159895,0.9113051140991929,7.007424067720349,0.6531947198775143,14.563319156786926,10.3113372507063,32.062246090412486,11.73276980488699,2.9364879299507614,0.7404364245542359,3.508615221537991,2.2633038210826033,8.0050887559071,0.6047935261109333,3.721490247680493,2.4584890104698407,24.440720215561154,14.699772940250522,0.37300970907156317,0.6792478261847148,0.7769143544176832,0.8133850219126743,0.8133850219126743,0.8133850219126743,3.0067321617438973,701.3782715805091,1.0,5.0,2.0,0.0,1.0,1.0,2.0,0.0,0.0,2.9148043107924417,1.3194711209134615,0.8106818967009293,0.6206896551724137,0.6206896551724137,0.6206896551724137,-288.5410010643105,2128.677560736967,194.8262315059928,73.40267450817126,174.56146573772796,,9.0,318.0,59.39160576365385,39.60425831565011,5.001081976687867,16.236695608785215,0.0,6.069221312792274,0.0,0.0,0.0,5.261891554738487,10.3,28.0,13.5,0.5,14.5,0.0,0.05217391304347823,-1.0,0.43218390804597645,0.0685475444096133,-0.36363636363636315,0.0,0.2719399141630898,0.0,0.8655172413793102,1.013043478260869,0.43333333333333374,0.7969696969696969,1.013043478260869,18.39334035938457,0.7474033468281078,0.8334033468281078,25.014832535213177,5.956082571699731,4.7107276438452566,43.40817289459775,10.666810215544988,0.44206008583691014,0.2977346278317152,0.0,0.4271844660194175,0.25,0.7827945823697433,-3.9463725646933296,-0.36995388760558395,-0.13608181257563204,-0.32886438039111077,0.21720541763025658,0.22619549023127744,0.011938478263960705,0.007799844490733705,0.013305617072428085,-2.2737907812600455,0.6564625850340136,0.6453586954181029,0.8554774252363088,1.0181818181818179,0.38413664652705215,1.2168962406978254,0.6411529798749479,0.9294018201466744,0.6157225033557198,0.6322279446520692,0.6987222956192235,0.860481075520429,0.7985598494717036,0.544109944387268,0.6139519225648863,0.9947130883301093,0.7771838884372966,0.9523011775537528,0.7846881907589763,0.8364271837788239,0.53501465074172,0.43252332892149575,0.5214069063024028,0.816759215390046,1.2468373314237975,0.9998696428633321,0.7987056378899057,0.9281233386496542,1.1765105308585595,0.8606143827206758,1.2421862317595886,0.9273024448362206,1.0298937636921246,1.0082039015276325,0.9372527742791017,1.0515720130728439,1.6622289540816324,0.6329459425392608,0.8165353106369512,1.2495265151515147,0.6792449348112479,1.3687120938418251,1.6169866897040381,1.712489206690183,0.6255744034976124,0.7175655700646028,0.7039486704923203,1.3608936073294802,1.06859410430839,1.4082362999573967,1.3093973725545789,1.1768115942028983,1.393698190199862,1.2102150797326887,1.0768102017328256,1.3064145801532727,1.3837617581878303,1.4397500510457468,1.3259560433072424,1.1161691701423742,0.4712773998488284,0.7696539806654401,0.8391701853947617,0.9569023569023567,0.6040294371507745,0.990317879280906,0.49687535831506396,0.7936955847480877,0.7575679166706206,0.8581526488861383,0.816229153547799,0.9764702224811075,0.7076308784383317,1.2800355202057812,1.3361953751261573,0.9628458498023713,1.2521632474091395,0.8571012772464536,0.7334687610215509,0.7366438754589049,1.2849421094967506,1.255067242144315,1.3423213340524323,0.9342762629651129,1.2576530612244896,2.081220840577838,1.7944437876179955,0.615151515151515,1.9089174578658064,0.4028310974287504,1.2926162184696803,0.3247479723819784,2.148815206609399,1.8836644795233741,2.045021348100613,0.715618663191803,6.5,0.0,2.4444444444444455,2.263888888888889,2.0650000000000004,1.5422222222222224,0.7936507936507937,0.375,0.19753086419753083,0.0,5137.41982379541,5335.130636018686,2177.3952780305162,2119.185922246013,9.008803073710196,0.4174238608997198,5.248313712596823,0.7165138303542288,0.0,0.2727272727272727,1.9431766843351304,3.5385098742141103,4.047299098426643,4.237291339955158,4.237291339955158,4.237291339955158,0.28260869565217384,0.0,0.07638888888888892,0.06860269360269361,0.051625000000000004,0.03761517615176151,0.020885547201336674,0.017045454545454544,0.012345679012345677,0.0,0.5671171350546549,21.043478260869566,9.474609375,6.094182825484765,131.96674006571254,0.0,4.016791855608533,102.47962275220388,,77.40845413208572,80.26208447048224,81.07338716869945,77.42234434984084,113.57490021799984,81.02403571963212,81.35313784801855,100.91450374314684,0.002915451895043719,-0.03680723111536761,-0.11980348955948815,0.03181818181818179,0.21605414982056056,-0.15535816055874976,0.006627074480075272,0.00469236220221761,-0.03333986594640053,0.026083288417265482,-0.05392481077061787,-0.03062763309884061,0.17520366809337715,0.2199014243422957,0.17938596000237952,0.08820116054158605,0.03755324464943826,0.11341285231834387,0.18221846880550954,0.1888949065204755,0.22566307342664854,0.32165993851162444,0.23595227704061106,0.18548761096053407,-0.12942645729971186,-0.19068588074355503,0.03854885708956537,0.07150451887293989,-0.29324776985848083,0.18920714013123077,-0.13774851289213902,0.20073250212776939,-0.22250806165941578,-0.21308108960310337,-0.13994414340608996,-0.0025338893918191636,-0.30088184827502423,0.09417822598125059,-0.0804774607154804,-0.27225378787878773,0.18810227195293683,-0.2988349080347607,-0.2859558420089384,-0.36502664428351095,0.09926665658947222,0.008574652922420753,-0.0018400209907537294,-0.2110108551184961,-0.02248911987155109,-0.46046528283490357,-0.360494371096785,-0.22628458498023707,-0.45565466256105575,-0.22112358017899297,-0.03848927661714524,-0.2814359246851093,-0.4377689188964903,-0.4961945807122334,-0.38145353119503805,-0.15847355820872072,0.04693517618687685,0.2980198927246395,0.23979832157035164,-0.09354657687991018,0.3360299721881515,-0.0468881897940415,0.03983632321082006,-0.18161290293999766,0.29939166409376616,0.26683169425108333,0.27640186394649635,-0.28103109439649354,0.26944690919846204,-0.144863136115508,-0.3525384925141997,-0.03142292490118573,-0.008711255601926917,-0.060215655511252096,0.28725363114406677,0.0007253182160030762,-0.10400038215072435,-0.1964508102153886,-0.23820487839213778,0.29712898530852255,-0.4081632653061224,-0.4453607552448351,-0.22161514673168384,0.2962121212121212,-0.4891356811883887,0.26535021575405415,-0.4147881750785974,0.3968046842757382,-0.5037764160259961,-0.26620028343880825,-0.3825761122890113,0.11111980718166502,1.6397691447073577,11.13807593595028,9.286508438821325,24.09982679953736,44.49916684662205,49.41226742243655,52.45195329465127,52.45195329465127,52.45195329465127,44.486686266576754,24.817552976627255,3.960398002599758,13.640187112334427,0.0,19.669133289949496,3375.5621120193055,3156.4415333952593,1654.8483731552608,12.0,32.0,38.0,53.0,64.0,71.0,60.0,53.0,36.0,337.9866804716401,23.0,4.709530201312334,5.5254529391317835,6.421622267806518,7.2868764117507,8.193953023563742,9.078978053779355,9.989619376165415,10.88397299645228,11.795687956101624,0.9885057471264369,1.1004137931034481,1.1180166021178464,0.9710811066866865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7341886846995667,1.0815415821501015,1.0935153326468592,0.7602364872926857,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,44.50416804650058,11.07030328948014,0.0,0.0,0.0,0.0,0.0,5.261891554738487,11.336785877934737,0.0,5.563451491696996,12.390126910877859,41.438027361078994,399.3505295115063,-2013.2816563305812,-188.7356967429119,-69.42350539070969,-167.77347136088176,110.8095284471958,115.39590440638555,6.090534763080899,3.9791691174615704,6.787994376846209,0.4444444444444444,0.36539315574489006,0.10905811876901336,381.68576570441456,0.10619654506009683,3.114297193140281,0.6346068442551097,5.0,0.34782608695652173,0.39999676538135615,0.728391049236945,0.8331236994310965,0.8722330005417993,0.8722330005417993,0.8722330005417993,-5.418119999999998,,2.9107142857142856,2.6324596266658524,1.7486721626719133,2.9044836921868633,-9.270579820042371,2.4037637698898413,2.3398404921352967,-3.6730262057795953,64.30250000000001,39.60425831565011,5.261891554738487,0.0,0.0,6.4208216229260096,17.98942254267563,16.00405017709529,0.0,6.069221312792274,3.8501476017100584,0.0,5.1647859739235145,2.3978952727983707,6.642486801367256,4.844187086458591,8.214735833382303,7.050122520269059,9.849400886632361,28.66666666666667,0.0,0.0,0.0,0.0,0.3209259259259254,0.0,-1.922322373393801,0.0,31.911999999999995,0.0,43.12842645082725,0.0,0.0,0.0,0.0,0.0,-6.865245758797345,32.42248146141755,25.326019310213297,5.001081976687867,0.0,36.96673396363254,20.804433175141476,11.33111286753076,20.79858736116711,0.0,0.0,0.0,0.0,28.16135209391391,21.291471856287433,26.33351005710979,204.95924550440776,,154.84312037255125,160.2952594082109,161.99471588847092,154.87287209293402,229.5282248489992,161.83904850275212,162.50281130541663,202.14840106940494,26.33351005710979,204.95924550440776,,152.43861726696122,157.89170931429862,160.398102174727,152.47351599938827,236.47556896435538,159.64430766937443,160.3664352039018,205.50203369207327,4.77607384642134,139.13955936090713,,103.75039276237001,108.85352328806658,109.52689283742396,103.76646390682613,152.92955623757598,109.84797791659194,110.2561996273825,137.13241331080906,1.1449352198743388,8.911271543669903,,6.732309581415272,6.9693591047048224,7.04324851689004,6.733603134475392,9.97948803691301,7.036480369684875,7.065339621974636,8.789060916061084,2.481922048663049,102.47962275220388,,77.40845413208572,80.26208447048224,81.07338716869945,77.42234434984084,113.57490021799984,81.02403571963212,81.35313784801855,100.91450374314684,31.364705882352947,0.0,0.0,0.0,0.0,0.0,0.0,31.71194464675892,-2.88091836734694,0.0,0.0,0.0,0.0,0.6241128117913832,0.0,9.101626984126984,1.5316345427059712,22.046858131487884,186.4089935125262,56.35212384571878,102.6167863522092,117.37167385437263,122.88144885869959,122.88144885869959,122.88144885869959,465.0,119.88569322606375,323.75106444617586,71.01376197654152,215.79,187.54999999999998,0.8,7.581751494867686,5.523561956057013,3.830933649542804,4.709829928594671,,4.696226150967775,4.709723546494914,4.705933941900911,4.6962010973169095,4.6746230068913714,4.7087607734922265,4.707909807077538,4.6942651807099605,0.16656233258881756,0.20477521428672485,,0.2041837456942511,0.20477058897803974,0.20460582356090917,0.204182656405083,0.2032444785604944,0.20472872928227073,0.20469173074250166,0.20409848611782436,2.1760176691464963,2.382560921732874,,2.3796683625142294,2.3825383342291153,2.3817333761466237,2.379663027652387,2.375057642187016,2.3823338909294653,2.382153154774425,2.3792507123153084,209.35,181.30945502367584,124.24032096352076,,125.27580415515405,123.72316773058476,124.18232489988428,125.27917353629091,127.54793902912171,123.83980426270591,123.93539630361013,125.47594784151136,7.88301978363808,5.401753085370467,,5.44677409370235,5.379268162199337,5.399231517386273,5.446920588534388,5.545562566483553,5.3843393157698225,5.388495491461311,5.455475993109189,6.033114390597391,5.65512688518753,,5.66342686287946,5.65095567445414,5.654659970712092,5.6634537582232936,5.681401409251429,5.651897952209267,5.652669555222228,5.665023212474359,0.0,43.11591511295877,51.87945158310238,-0.9350963718820857,-6.865245758797345,1.5316345427059712,-0.9373119803476948,-1.943606386999245,0.0,277.31159449054763,203.73268928142846,-1027.0958864808013,-96.28541398923997,-35.41709953382073,-85.59132387340009,56.53059545499787,58.87038128015851,3.1071475677328415,2.0300131475916725,3.462963604715206,1133.0,33.0,2.2690759253434063,0.7549547499910655,0.0,0.0,0.3707908118985982,0.2025444337439024,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.07654655446197432,0.201832953436414,0.16490580204257463,0.43627535267557843,0.2543848867867292,17.731686328639373,11.885343459843508,10.66681021554499,6.541053088244499,10.192112915723749,5.072669819121028,6.419246999222177,3.7787875860847575,5.7636852762271085,2.8560318086013967,4.545057292266012,1.8505600795160304,3.622098798067212,1.0808602527976694,1.8309390652525623,0.5111970138189552,3.42694082667442,1.7209189209880325,5.743805181124424,2.555227964640049,9.137921682834806,3.3738303270301184,79.95703718126568,49.39934395798216,40.49336497948933,35.43556554554733,35.43556554554733,35.43556554554733,110.0,125.0,35.556757999999995,17.703242,0.1724137931034483,23.11,11.25,5.222222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,5.0,29.0,0.0,0.0,29.0,5.0,4.0,6.0,22.0,10.0,23.0,19.0,1.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,11.0,0.0,1.0,23.0,11.0,0.0,2.0,8.0,0.0,1.0,8.0,1.0,0.0,0.0,1.0,1.0,3.481240089335692,5.029620594007336,3.9749978045895347,4.386703182557784,4.997634481919004,5.395330640718035,5.778619347763734,5.782092913587448,5.762837237437516,5.685703361256295 +5510,Cc1cccc(N(C)C(=S)Oc2ccc3ccccc3c2)c1,0,27.435897435897434,5.863038461538462,3.358974358974359,6.6267806267806275,155.30035912653418,108.67433428205135,1.8156595739085377,5.9886948717948725,2.6563346347296966,7.430279307692306,246.96735834655811,26.048780487804876,6.161585365853658,3.902439024390244,7.0650406504065035,141.4561018746902,99.43145226829263,2.0039788602439033,6.336439024390245,2.9741041854862993,7.590948634146338,284.0257221561849,23.71641791044776,6.1034,3.6865671641791047,5.5721393034825875,148.5183913409461,89.68496094029847,1.7607280907327458,6.2484029850746285,2.7598120508568273,7.592107044776121,246.9344319134177,20.602409638554217,6.000277108433735,3.2409638554216866,4.265060240963855,149.0439467360891,75.87391506024096,1.6781685590493245,6.139644578313252,2.6308195745946756,7.527173951807226,223.33708286264573,18.122222222222224,5.897422222222222,2.7111111111111112,3.1333333333333333,154.0493231166064,64.80058541111111,1.4940488969098444,6.018972222222221,2.4121399176954736,7.5093824444444435,186.907271014303,18.3375,5.907825000000001,2.6625,3.066666666666667,157.65180241404505,65.74423815,1.4712308500054125,6.0202374999999995,2.330864197530865,7.5467623,182.71668255821854,19.35820895522388,5.895373134328359,2.656716417910448,3.09452736318408,153.03452412313584,69.92439529850746,1.5610217015894032,6.024029850746268,2.4216878570112406,7.512597313432836,194.05527444035027,15.823529411764707,5.73314705882353,2.5294117647058822,2.661764705882353,157.54811722398574,55.533229308823536,1.4393279090019262,5.847904411764707,2.1560457516339877,7.407827411764707,175.71859121694888,16.98148148148148,5.729611111111109,2.925925925925926,3.0,150.15841431493894,60.44809987037036,1.62199337192487,5.874611111111112,2.3079561042524004,7.303624703703703,206.15462632987132,10.181459566074949,0.06482143326758706,0.011688414035462127,0.5811965811965809,3.343560523047703,1.52039702226404,46.543155504273486,0.3092192469622129,0.06633583168967777,0.30551474600224193,0.03703943326758711,54.8759052680059,0.34637032760860076,0.005217966357178359,-0.007096015113422001,0.21680216802168023,1.2147745474824894,-0.1842705474690324,1.6350862655826672,-0.012120929162092833,0.005970484758101945,-0.03379249332545761,0.001221169609210906,-0.3919866591586048,1.3543230592599138,0.010303710245616092,0.0027108368037078016,-0.05306799336650087,-0.024174546945308815,0.06058007753949308,6.007561250414602,-0.005511290608459808,0.011893865975840667,0.03967276479241816,0.010516937570530011,3.201946313383833,-0.32850930348613394,-0.0053865244013529415,-0.0014080191376765958,-0.10575635876840699,-0.5291576122592497,-0.16816021213050822,-1.7603572101740244,-0.019457339881472475,-0.00566947395103098,-0.028581223159155032,-0.0026896396315043043,-6.6064078043059205,-0.9002629848783699,-0.005118669734823578,0.00010432678791431088,-0.048148148148148155,-0.36154089658363153,-0.23701889212162927,-4.175611633333331,-0.02933223090318652,-0.005701586675432841,-0.031091678849408094,-0.0039116779969318284,-6.620627850141659,-0.5984467455621305,-0.008026497370151212,-0.00045827931025785887,-0.038888888888888876,-0.15809043757761707,0.19872416071143353,-2.460639734722222,0.014031436092888889,-0.007545895792241966,0.007791482234541747,-0.006146889036817862,2.800260171601779,-0.523977744414025,-0.006524839314276739,0.0006529469255297964,0.03648424543946932,-0.08583207128939994,-0.12993453253046897,-2.475385386401325,-0.01126897864155743,-0.006895418371652598,-0.02807937878430619,-0.004222557262994675,-4.894934933147271,-1.0690915419422207,-0.008730143674826931,-0.0005228784027453484,0.06209150326797386,0.11827121819580358,0.2679954858359027,-4.2292696633986955,0.03144863591301659,-0.008668787949104681,-0.015602973020389169,-0.007565758682368403,8.84695502143534,-1.6102344948498795,-0.004908470304624145,0.00025744114153448554,-0.12962962962962965,-0.5955389972483992,-0.05887693555012397,-7.361570228395061,-0.035504491557398175,-0.006390769961282766,0.005429098549284258,-0.0022762998392870265,-5.741702146731587,,,0.503030303030303,1.4204545454545454,0.8181818181818182,0.045454545454545456,0.6022727272727273,0.2159090909090909,0.6752386375344249,0.012871966783539161,0.024599239510811888,0.9513234444048219,0.28916882351559786,0.19405982617236733,1.6265620819392468,0.4832286496879652,2.04242479709025,1.7730765705754232,0.09658168051326294,0.09233939295945165,0.0,0.26934822651482626,7.874438081128218,1070.0,228.65850000000003,131.0,258.44444444444446,6056.714005934833,4238.2990370000025,70.81072338243297,233.55910000000003,103.59705075445817,289.78089299999994,9631.726975515767,1068.0,252.625,160.0,289.66666666666663,5799.700176862299,4076.689542999998,82.16313327000003,259.79400000000004,121.93827160493828,311.22889399999985,11645.05460840358,1589.0,408.9278,247.0,373.33333333333337,9950.732219843389,6008.892382999998,117.96878207909397,418.6430000000001,184.90740740740742,508.6711720000001,16544.606938198987,1710.0,498.023,269.0,354.0,12370.647579095395,6297.534949999999,139.28799040109394,509.5904999999999,218.35802469135808,624.7554379999998,18536.977877599595,1631.0,530.7679999999999,244.0,282.0,13864.439080494576,5832.052687,134.464400721886,541.7074999999999,217.09259259259264,675.8444199999999,16821.65439128727,1467.0,472.62600000000003,213.0,245.33333333333334,12612.144193123604,5259.539052,117.698468000433,481.61899999999997,186.4691358024692,603.740984,14617.334604657482,1297.0,394.99000000000007,178.0,207.33333333333337,10253.313116250101,4684.934485,104.58845400649001,403.60999999999996,162.25308641975312,503.34402,13001.703387503469,1076.0,389.85400000000004,172.0,181.0,10713.27197123103,3776.259593,97.87429781213098,397.6575000000001,146.61111111111117,503.73226400000004,11948.864202752524,917.0,309.3989999999999,158.0,162.0,8108.554373006703,3264.1973929999995,87.58764208394298,317.22900000000004,124.62962962962962,394.395734,11132.349821813052,397.076923076923,2.5280358974358954,0.455848147383023,22.666666666666657,130.39886039886042,59.29548386829756,1815.183064666666,12.059550631526303,2.5870974358974332,11.915075094087435,1.4445378974358973,2140.16030545223,14.201183431952632,0.21393662064431274,-0.29093661965030204,8.88888888888889,49.80575644678206,-7.555092446230328,67.03853688888935,-0.4969580956458062,0.24478987508217973,-1.3854922263437621,0.05006795397764714,-16.071453025502798,90.73964497041422,0.6903485864562782,0.1816260658484227,-3.5555555555555585,-1.6196946453356906,4.058865195146036,402.5066037777783,-0.3692564707668071,0.7968890203813247,2.6580752410920168,0.7046348172255107,214.53040299671682,-27.266272189349117,-0.4470815253122941,-0.11686558842715745,-8.77777777777778,-43.920081817517726,-13.957297606832183,-146.10964844444402,-1.6149592101622154,-0.47056633793557134,-2.3722415222098676,-0.22324008941485726,-548.3318477573914,-81.02366863905328,-0.460680276134122,0.009389410912287979,-4.333333333333334,-32.53868069252684,-21.331700290946635,-375.8050469999997,-2.6399007812867867,-0.5131428007889557,-2.7982510964467284,-0.35205101972386454,-595.8565065127493,-47.875739644970444,-0.6421197896120969,-0.03666234482062871,-3.1111111111111103,-12.647235006209366,15.897932856914682,-196.85117877777776,1.122514887431111,-0.6036716633793573,0.6233185787633397,-0.49175112294542894,224.02081372814234,-35.10650887573968,-0.43716423405654153,0.04374744401049636,2.4444444444444446,-5.750748776389797,-8.70561367954142,-165.85082088888876,-0.7550215689843478,-0.4619930309007241,-1.8813183785485148,-0.2829113366206432,-327.9606405208671,-72.69822485207101,-0.5936497698882314,-0.03555573138668369,4.222222222222222,8.042442837314644,18.223693036841386,-287.5903371111113,2.138507242085128,-0.5894775805391183,-1.0610021653864634,-0.5144715904010514,601.5929414576032,-86.95266272189349,-0.26505739644970383,0.01390182164286222,-7.000000000000001,-32.15910585141356,-3.1793545197066946,-397.52479233333327,-1.9172425440995013,-0.3451015779092694,0.29317132166134996,-0.12292019132149944,-310.0519159235057,0.705760602662089,0.6105027144746044,0.4429595955473015,0.31465830262948763,0.29053498444209136,0.17042993528184017,0.18979758820907722,0.09395481939726988,0.12208224448492432,0.04891959867378297,0.08003902496294675,0.026390650850326457,0.052316981512852176,0.013944938677160103,0.033621745305483494,0.007188114144362619,16.00441228439454,5.655657082546513,3.52096750255871,2.1554688698654108,0.40769547220425617,-0.46893215648876974,3.1919421089358098,0.9778879864180183,6.010074751517896,0.653466561817218,14.543939489979737,10.31319167873893,32.0622007978878,11.666764059798775,2.9352080388800825,0.7783077760685476,3.4638632970130656,2.20543223933034,3.5110831546476886,1.1985590196297427,3.6774755108010546,2.401441830465111,24.440461320529415,14.706817468577865,0.254114288393543,0.5111681243444444,0.6806233693485703,0.8444218505356396,0.8660241359702076,0.8841968354712904,1.4713046784577954,828.2879483663928,0.0,0.0,1.0,0.0,13.0,0.0,3.0,0.0,0.0,3.8512177194021517,2.4004428362653205,1.4440618028589922,0.519606730935652,0.3976865385724855,0.2951224360083833,60.08259568479312,749.157016218011,29.23173423269768,19.209154262000283,38.31738328979841,,12.0,448.0,0.0,0.0,0.0,5.1745624433251,16.823122322432262,10.949675706161791,0.0,54.41215119275894,31.18920547353706,16.954736396846744,11.066666666666666,31.25,18.0,1.0,13.25,0.0030303030303030195,0.0,4.75,0.12045767852219458,0.0763325563325562,-0.04412512218963838,0.0,0.0565742574257424,0.0,0.5623931623931626,0.7651515151515149,0.44193548387096804,0.4860606060606064,0.7651515151515149,14.855250025757348,0.2831832692378615,0.5411832692378615,20.92911577690608,6.361714117343153,4.269316175792081,35.78436580266343,10.631030293135234,0.6574257425742576,0.16566265060240964,0.0,0.3072289156626506,0.10526315789473684,0.44456394320094517,-0.6145832604844383,-0.02345318429603055,-0.01575854514062662,-0.03414351447135768,0.5554360567990548,0.7678573757473749,0.03048896187089512,0.0196886506601891,0.03656463694035118,-4.913921990430806,0.6255469141285758,0.8264171395829348,1.6850192574142093,0.7155667144906747,0.5725605759444092,1.0708530901489233,0.6392293902717816,0.8109543686377638,0.7859839544332283,0.9841457204709538,0.8657663935806545,0.8629504710213697,0.6349008541176335,0.9956528984456562,0.9926400350487508,1.301141352063214,1.0900221418578941,0.9599945712825101,0.6500925627766411,0.8373900454910427,0.9158139802253394,0.8142698388238586,0.8802742142962674,0.8243566677283262,0.858411561783749,1.2205613435694924,1.384231855013133,1.2624025513819992,1.1925720798860722,1.0703451964132162,0.8716209561553109,0.9338430154502962,1.174867379700294,1.1344332660042478,1.2618424175693677,1.0300009374879684,1.250471393516725,1.3940567691819807,1.3813802413810476,1.0338235294117653,1.1609773505207193,1.1565065087819841,1.2341698438310602,1.1702700292827872,1.3418637327117084,1.2898643818464048,1.5381064333979715,1.0877504092830677,1.3942197791553665,1.5826219097830085,1.5805503304821735,1.1211397058823533,1.1745586628796154,0.9462951444191129,1.3570927262451433,1.1227873244477726,1.4928061643183934,1.1545331007431574,1.7402760803037742,0.9293980124117496,1.2833710178283324,1.3804575608267085,1.3364767708873841,0.9383230904302022,1.063442129531499,1.0866538871717764,1.2603098037991316,1.1609742194029669,1.3309660309626854,1.2711600701466,1.5266799291593085,1.0637239733008248,1.4657480000911642,1.3110392993732196,1.1097070322603448,0.8382352941176474,1.0009009240576283,0.8493376175969916,1.4201467763543703,1.1124246764063235,1.2879349610341524,1.1676000336002985,1.4717433701830267,0.8684223190237718,1.1058590554909813,0.5855995431742895,0.49603560017775566,1.288398692810458,1.0532262763090816,1.0142585239449244,1.1046836307193761,1.0896776704111295,0.6804887656386412,0.6235320743206181,0.4455901070085005,1.0817274077036871,4.5,0.06591164166921742,2.4444444444444455,1.4375,1.217777777777778,0.6041666666666666,0.36326530612244895,0.25,0.1803980851599899,0.09125000000000001,4184.343765783178,4628.257687386067,2117.9726043105356,1944.880347844191,14.553031708929133,0.45171885307762666,7.979152916569332,0.8238817905981762,1.0,0.10526315789473684,1.434184499460097,2.884959382596928,3.8413404160032565,4.765795487926597,4.887715680289763,4.990279782853865,0.1875,0.006591164166921742,0.07407407407407411,0.04356060606060606,0.04510288065843621,0.025173611111111112,0.017298347910592808,0.013157894736842105,0.010022115842221659,0.006517857142857143,0.42899855170366297,16.84375,7.7134986225895315,4.308390022675737,135.49714734740118,1.0,4.020679238555109,106.35656347416165,,76.93163484705946,75.72918318543593,77.30796571659066,76.95493100736414,120.44925631951091,76.81708036473049,77.4502952468039,101.49261479189651,0.034019712533429024,0.08049754678577158,-0.6070981992846084,0.3730272596843617,0.363317648688831,-0.1211989663033101,0.03513054170623514,-0.039198495181556506,0.09000391803380352,-0.1106083872141793,0.03296944638403906,-0.0071431470195197555,0.13301855696334297,0.15895529805830905,0.23192511794014511,-0.09130816505706772,-0.00723018075451895,0.03984490672658817,0.1290750742042619,-0.01782324568280608,0.1792977591881375,0.1298554826290677,0.2839389440586633,0.0583488563468064,-0.0322654430196571,-0.08309789108051686,-0.12046280474020928,-0.18196314670446503,-0.15826171191210114,-0.11060282917425016,-0.037822042598989504,-0.06292409050414055,-0.0854662375765944,-0.09355104306142165,-0.0726155719520143,-0.12038813340829987,-0.08842180033578723,-0.07896569817722757,0.008925658142994255,-0.082843137254902,-0.1081305076105163,-0.15589276264740498,-0.08971483751139167,-0.09485900761788921,-0.08595033076701501,-0.10176817733432722,-0.10560847323641165,-0.12064726436507024,-0.058778089887640494,-0.12382474384695125,-0.03920799766909863,-0.06691176470588237,-0.047282062486344756,0.13070543930394654,-0.052867918130224144,0.045376981642425235,-0.11375293864622112,0.025502802520977405,-0.16595526698290364,0.05102895629558579,-0.05146391251799898,-0.10065867083410175,0.05586274780725465,0.062774363476734,-0.025670859162783388,-0.08546092279040511,-0.05318473488919419,-0.03644332864873226,-0.1039471156992453,-0.09190842390337566,-0.11400167039515148,-0.08920007623092728,-0.10500376051234135,-0.13467989266433425,-0.044734760520884924,0.10683391003460213,0.035372836047243936,0.17626677894753284,-0.09086770369513028,0.10170335844864037,-0.13068032356415896,-0.05107109632042007,-0.2042622690177372,0.16121747747445997,-0.15815360110207075,-0.07572295238153194,0.022025327024985646,-0.22303921568627463,-0.178115213749909,-0.038724711169487606,-0.15816654776918032,-0.1148197982699857,-0.09633963724430405,0.01777033226816626,-0.06145611955890796,-0.10463065927914907,12.56306927191492,17.908659556580538,4.102824833376417,15.009480157822605,27.942312395907802,37.73663575738198,40.00997434645262,40.697126310611104,41.36476733625213,44.933345535985495,39.00768455265931,2.1247969712917847,2.0314666451079364,0.0,5.9256609833261775,5056.906909039913,4894.580462140724,635.0636454541982,62.0,33.0,42.0,52.0,64.0,60.0,63.0,68.0,68.0,307.1030851640005,24.0,4.74493212836325,5.579729825986222,6.440946540632921,7.289610521451167,8.152774052744075,9.00565049932022,9.869361837806752,10.723993992232447,11.588005107756247,0.6923076923076925,0.9631794871794875,1.1012854806209333,0.6562595398662336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7349528788576696,0.9543489190548008,0.9901861915700232,0.6734706091113579,11.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,9.636772684650527,5.749511833283905,0.0,0.0,5.1745624433251,0.0,0.0,0.0,0.0,42.46456947923127,59.742978837210345,12.735058257360752,0.0,240.91319979882778,-333.0481972065334,-12.70949153803602,-8.539697364270086,-18.50267762258519,300.9957954836209,416.10881901147764,16.52224269466166,10.669456897730194,19.814705667213218,0.5,0.9775191675294754,0.31215307965910144,23.165207401785658,0.1943298315958774,21.51672645161929,0.022480832470524487,6.0,0.08333333333333333,0.2713482229113726,0.5458353523789062,0.7267829877344992,0.9016902196995891,0.9247575639270661,0.9441627290057194,4.948320000000003,,1.0178571428571428,0.44679187422285627,0.3114832760661568,1.0171244600138196,-1.1763381514864872,0.4315330477356183,0.46011389749064446,-0.5607402311299865,96.75600000000003,4.736862953800049,0.0,0.0,0.0,6.923737199690624,11.947581713527669,72.29348924477472,0.0,5.749511833283905,3.8918202981106265,0.0,5.198497031265826,0.0,6.705639094860003,0.0,8.299285906897275,0.0,9.934453131793008,27.000000000000007,22.349204613561575,0.0,0.0,0.0,0.0,2.3276071696661527,2.964673496196765,0.0,37.564000000000014,0.0,0.0,5.410424015285127,0.0,0.0,0.0,0.0,0.43137140967498144,42.9501337442164,9.636772684650527,5.687386274683562,5.749511833283905,12.22223442600229,0.0,6.923737199690624,5.563451491696996,66.73003775307771,0.0,10.772448428929591,0.0,25.59412205478311,28.663162275449114,28.605260320002966,212.7131269483233,,153.94060266727013,151.41774892776067,154.58761477172078,153.98814841991202,241.64709146269513,153.59493045239412,154.85876195747232,203.34206427633023,28.605260320002962,212.71312694832324,,153.10781045947797,151.01157449664908,154.3044481571153,153.15595567990084,242.07485079050855,153.2026276817254,154.44047659611718,203.54596981492298,4.739067047864365,163.32158690521405,,119.3329372727098,116.82862386330726,119.89744896094905,119.37516390138072,198.3833288947572,118.78333705002507,119.9227874098541,163.20724881327578,1.3002391054546802,9.66877849765106,,6.997300121239551,6.882624951261849,7.0267097623509445,6.999461291814183,10.983958702849778,6.981587747836096,7.0390346344305605,9.242821103469556,2.369533523932182,106.35656347416165,,76.93163484705946,75.72918318543593,77.30796571659066,76.95493100736414,120.44925631951091,76.81708036473049,77.4502952468039,101.49261479189651,37.21960784313723,0.0,3.9749316916849384,0.0,0.0,0.0,0.0,38.617261471230904,0.0,0.0,5.835910808767951,0.0,0.0,1.872543461829176,0.0,0.0,0.0,26.26535375534296,529.7264299452337,55.93319547894378,112.5134159212802,149.812276224127,185.86602402913726,190.62091153130078,194.62091153130075,558.0,119.39500450629332,12.182565337214974,56.02969546292674,44.56,12.47,1.0,8.415894726946314,5.584962500721156,4.268216321274695,4.6298496648561205,,4.628675915648677,4.629419666591109,4.632208929596694,4.6287014645333615,4.656697690897663,4.630499658807255,4.6309296523783186,4.648154878662905,0.1940098327852134,0.21044771203891458,,0.2103943598022126,0.21042816666323222,0.21055495134530428,0.2103955211151528,0.21166807685898467,0.2104772572185116,0.21049680238083265,0.21127976721195021,2.239653376979226,2.3209817581417633,,2.320728208220985,2.320888878617488,2.321491205316501,2.3207337279019127,2.3267639072687496,2.321122140308674,2.3212149971576386,2.3249277009299223,239.48999999999978,140.09515012599968,119.29232457551502,,119.00600461940584,119.2436509468997,118.97603674147695,119.00361816977565,116.58108781738815,119.13570499529206,119.07726391053335,117.50353404176785,6.367961369363622,5.422378389796138,,5.409363846336629,5.420165952131804,5.408001670067134,5.409255371353439,5.299140355335825,5.415259317967821,5.412602905024243,5.341069729171266,5.730779195877489,5.5700343502275445,,5.567631311189391,5.569626247179908,5.56737946127739,5.567611257801614,5.547044424018841,5.568720581850296,5.56822991934607,5.554925770447397,5.835910808767951,1.872543461829176,2.758978579341134,2.211707698766682,0.7529657974300832,22.349204613561575,0.0,2.0600965631890955,1.9148351284958427,281.97868285165373,130.55303005326257,-180.48181392882336,-6.8873877899278835,-4.627738818687778,-10.026767440490186,163.1123291147704,225.49311203867614,8.953551938476878,5.781874667658362,10.737767239936957,1136.0,33.0,1.4209516299521356,0.6995171120772825,0.0,0.0,0.3156411416862253,0.12094727684026901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2347080484106438,0.07961181677178997,0.3936345532609666,0.10987409790201344,15.526733258565956,13.431059718441297,10.631030293135236,7.551799263107703,9.587654486589015,5.624187864300725,7.971498704781244,3.9461024146853347,6.348276713216064,2.5438191310367144,5.122497597628592,1.6890016544208932,3.1390188907711307,0.8366963206296062,2.11816995424546,0.452851191094845,3.257547650000226,1.39272256895191,4.7429696991000325,1.6557895095349509,6.9111485385776295,1.9915584132748683,70.69800412439474,53.86627000410454,31.72999583029685,25.487150501696203,24.197361450534522,23.01798629504551,114.0,132.0,47.86748099999999,21.730518999999997,0.48717948717948717,114.03,6.777777777777778,4.833333333333334,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,17.0,39.0,0.0,0.0,41.0,17.0,1.0,9.0,32.0,18.0,24.0,23.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,2.0,0.0,0.0,22.0,3.0,0.0,1.0,1.0,0.0,3.0,2.0,1.0,0.0,0.0,0.0,3.0,3.5409593240373143,6.801239582470866,4.1588830833596715,4.7318028369214575,5.3088863178972705,5.868413754902742,6.022160445329228,6.34311124558228,6.696445725756001,6.95462768280511 +71399,CN1CCN(C2=Nc3ccccc3Oc3ccc(Cl)cc32)CC1,0,28.4390243902439,6.0525268292682926,3.5121951219512195,7.014754591990365,160.93041580746055,115.03175556097563,1.639727714323951,6.1880243902439025,2.603110211486203,7.626680219512194,234.9540460070043,26.863636363636363,6.334659090909091,4.159090909090909,7.275252525252525,145.91122433957267,103.13436234090915,1.8839222177272736,6.503079545454546,2.819912083800973,7.750023318181814,273.9443314085609,23.233766233766232,6.3201155844155865,3.831168831168831,5.917748917748918,156.52683995832257,87.85617120779217,1.6308937721291297,6.446553246753248,2.649270482603816,7.794331116883113,233.27400753065032,20.40776699029126,6.224397087378642,3.466019417475728,5.227615965480044,157.70369622548995,75.29960266990291,1.493808723108621,6.348375728155338,2.599924088057853,7.756653747572814,207.33687771878232,17.321100917431192,6.033926605504587,3.0642201834862384,4.075433231396534,161.0057455524139,63.12323744954129,1.3551814253718073,6.138143119266056,2.360837391928116,7.606526055045874,182.28887104252618,19.359223300970875,6.022379611650485,3.2135922330097086,3.713052858683927,160.07213103015854,72.29336187378638,1.43517146410367,6.1429349514563105,2.3268009109433057,7.588390310679612,196.10375594746483,19.214285714285715,6.017255102040815,3.0714285714285716,2.789115646258504,152.2121847746719,69.98083584693877,1.5610429570229085,6.168724489795918,2.3539724531788018,7.57848355102041,205.85212627816742,15.150943396226415,5.8537641509433955,2.452830188679245,1.8846960167714883,159.48258668540936,52.42353014150943,1.3210786435512543,5.998703773584905,2.0987654320987654,7.521193320754718,161.92182914710412,12.880952380952381,5.630679761904761,1.9642857142857142,1.0185185185185186,164.05373716566146,43.31787680952379,1.153351707633631,5.786111904761905,1.8350970017636685,7.390541833333335,132.65492862502902,10.839976204640095,0.08701844140392619,0.015281049898924613,0.597263533610946,3.5987691042222076,1.5272554756429768,51.10510038905414,0.24938337846013442,0.09314729327781078,0.32774554016074464,0.05814242950624626,51.88547242130052,0.5092477421448269,0.00526248985993187,-0.005666326723332455,0.20595154399437574,1.2913584586695828,-0.45396382870739116,2.3741925882185893,-0.025049901018154373,0.006615068141257906,0.009611984025545929,-0.0003629356038072505,-1.5422696827171594,0.516058005052651,-0.006822717615519497,-0.0020726411339397734,0.005523922835047185,0.2952348141719549,0.19840950582728017,2.538651597325337,0.025833766651086023,-0.005104467810595121,0.03317757377351044,-0.005548096595254821,5.213685059661929,-0.563869171725106,-0.0007108164927256529,0.0007238360340629963,0.048959530561443455,0.45911496976416327,-0.011966675242237292,-2.6434479218507256,-0.011107802876216375,-0.0025167699531601015,0.0612543581685754,-0.0026420072945484274,-1.708992623908116,0.4739642742142348,-0.0019036953757320056,-0.0004935952183745056,0.04270066419616982,0.2793321640483754,-0.01337920681266676,2.3314736113933936,0.02156414859049724,-0.0012593093887976296,-0.0072340274481798505,-0.0025899622876291387,4.032664410540695,1.8495809821939089,0.00594610986294566,0.0016210058858030162,-0.07086050259034439,-0.4852256926284366,0.39722042484542325,8.666450498703385,0.0391204620021696,0.012794572694246949,-0.011540188413938128,0.011014220742392125,9.188015244327156,-1.3280299627286969,-0.01634128859158177,-0.001330129373603862,-0.25057363814056255,-1.5671398310133753,-0.3025469504930851,-6.387070536142237,-0.04212564737154782,-0.017069841809418573,-0.09168386555502861,-0.007371501183697745,-12.945873534559043,-2.077435937727993,-0.009044902517593972,-0.00019809116652777823,-0.09243150415857587,-0.7361225951575362,-0.2276405996471322,-9.875084941516167,-0.04461555837788754,-0.013458383935887202,-0.07904480060397938,-0.005074038802150562,-12.188231769266585,-1.2331237075436956,0.0065242124868983686,0.00108465471576583,-0.019156681113849494,0.05593903016072345,-0.23056728292786263,-5.878687153281776,-0.04693558596337456,0.003803635874337833,0.029117744203041515,0.001591442444973219,-6.108051583911878,,,0.48902691511387153,1.2934782608695652,0.6086956521739131,0.021739130434782608,0.6847826086956522,-0.07608695652173914,0.790744021436204,0.009161027137670762,0.024117548876801197,0.9012252010212258,0.25917594861637416,0.22793317913174188,1.6919692224574299,0.487109127748116,2.0886319565741007,1.6389386204785048,0.2813038527946675,0.09111629939506216,0.0772731839058669,0.44969333609559664,7.978386338439036,1166.0,248.15359999999998,144.0,287.60493827160496,6598.147048105882,4716.301978,67.228836287282,253.709,106.72751867093432,312.69388899999996,9633.115886287176,1182.0,278.725,183.0,320.1111111111111,6420.093870941198,4537.911943000003,82.89257758000004,286.13550000000004,124.0761316872428,341.0010259999998,12053.55058197668,1789.0,486.64890000000014,295.0,455.6666666666667,12052.566676790839,6764.925182999998,125.57882045394298,496.3846000000001,203.99382716049385,600.1634959999997,17962.098579860074,2102.0,641.1129000000001,357.0,538.4444444444445,16243.480711225464,7755.859074999999,153.86229848018797,653.8826999999998,267.7921810699589,798.9353359999999,21355.698405034578,1888.0,657.698,334.0,444.22222222222223,17549.626265213115,6880.432882000001,147.714775365527,669.0576000000001,257.3312757201646,829.1113400000003,19869.486943635355,1994.0,620.3050999999999,331.0,382.44444444444446,16487.42949610633,7446.216272999997,147.822660802678,632.7223,239.66049382716048,781.6042020000001,20198.68686258888,1883.0,589.6909999999999,301.0,273.33333333333337,14916.794107917847,6858.121913,152.98220978824503,604.535,230.6893004115226,742.6913880000002,20173.508375260408,1606.0,620.4989999999999,260.0,199.77777777777777,16905.154188653392,5556.894195,140.03433621643296,635.8625999999999,222.46913580246914,797.2464920000001,17163.713889593037,1082.0,472.97709999999995,165.0,85.55555555555556,13780.513921915563,3638.7016519999984,96.881543441225,486.03340000000003,154.14814814814815,620.8055140000001,11143.014004502438,444.4390243902439,3.5677560975609737,0.6265230458559091,24.487804878048784,147.5495332731105,62.61747450136205,2095.3091159512196,10.224718516865511,3.819039024390242,13.437567146590531,2.3838396097560968,2127.3043692733213,22.406900654372386,0.23154955383700226,-0.24931837582662802,9.061867935752533,56.81977218146164,-19.97440846312521,104.46447388161792,-1.1021956447987924,0.29106299821534787,0.4229272971240209,-0.01596916656751902,-67.85986603955502,39.73646638905412,-0.5253492563950013,-0.15959336731336254,0.4253420582986332,22.733080691240527,15.277531948700574,195.47617299405096,1.9892000321336238,-0.39304402141582434,2.554673180560304,-0.4272034378346212,401.4537495939685,-58.07852468768591,-0.07321409875074225,0.07455511150848862,5.042831647828676,47.28884188570882,-1.2325675499504412,-272.27513595062476,-1.1441036962502866,-0.2592273051754905,6.309198891363266,-0.272126751338488,-176.02624026253594,51.662105889351594,-0.2075027959547886,-0.05380187880282111,4.65437239738251,30.44720588127292,-1.4583335425806767,254.13062364187988,2.350492196364199,-0.13726472337894163,-0.7885089918516037,-0.28230588935157613,439.5604207489358,190.50684116597262,0.612449315883403,0.16696360623771067,-7.298631766805472,-49.97824634072897,40.913703759078594,892.6444013664487,4.029407586223469,1.3178409875074357,-1.1886394066356272,1.134464736466389,946.3655701656971,-130.1469363474123,-1.6014462819750135,-0.13035267861317848,-24.556216537775132,-153.57970343931078,-29.64960114832234,-625.9329125419392,-4.128313442411686,-1.67284449732302,-8.985018824392803,-0.7224071160023791,-1268.6956063867863,-220.20820939916723,-0.958759666864961,-0.02099766365194449,-9.797739440809043,-78.02899508669884,-24.129903562596013,-1046.7590038007138,-4.729249188056079,-1.4265886972040434,-8.378748864021814,-0.5378481130279595,-1291.952567542258,-103.58239143367042,0.5480338488994629,0.09111099612432973,-1.6091612135633575,4.6988785335007694,-19.36765176594046,-493.8097208756692,-3.942589220923463,0.319505413444378,2.4458905130554873,0.1336811653777504,-513.0763330485977,0.6874430569105274,0.5979852828289127,0.43090422839256426,0.31436631514219854,0.2784320516962668,0.17222805920142817,0.17546312305907577,0.09063891429419266,0.10851417569687082,0.04597022727068388,0.07046371227347359,0.025001871800625627,0.044337603437892496,0.012641013721016706,0.028257436440785155,0.0065243761340152764,17.001102901678163,5.693165634038689,3.5207767374700665,2.189367590937041,0.4072146547118919,-0.49069237497021045,3.221838299105815,0.992979567796798,6.010090409144233,0.7740005863065074,14.554389171838313,10.953495925168925,35.45051732199647,11.705057928955858,2.2078381731712944,0.7783011921309844,3.4635591655887437,2.2399044858445203,3.5110849131434194,1.3043266051531732,3.677049832977834,2.4359871298843587,22.45586385386787,14.706815290994992,0.2785724767107156,0.5688748961710068,0.701954912563349,0.8208505188425832,0.8380496831732058,0.8380496831732058,1.54859954019331,766.6120568595869,0.0,1.0,4.0,0.0,11.0,0.0,1.0,0.0,0.0,3.7773704281484566,2.1306516271662614,1.3757651696723583,0.7013387195649647,0.6037777439552086,0.6037777439552086,122.10874995578075,908.522864618607,36.72384466647793,22.159094258990415,46.91910511553586,,10.0,395.0,0.0,0.0,0.0,5.022633313741326,54.76450684235593,0.0,0.0,42.46456947923127,16.847491444378146,21.330207576668236,11.247619047619045,29.75,14.0,0.5,15.75,0.0,0.01097308488612848,-1.75,0.14305071622144777,0.0654526329629872,-0.07759808325846057,0.0,0.11420314880650062,0.0,0.5890824622531942,0.8153209109730846,0.4460317460317464,0.523629829290207,0.8153209109730846,18.187112493032693,0.21070362416642752,0.5547036241664275,20.728179623488195,5.961046818176605,5.242463120030063,38.91529211652089,11.203509938206668,0.5997968511934993,0.10795935647756143,0.0,0.3378492802709569,0.2777777777777778,0.3865437130357407,-0.6525987723390809,-0.03374245405918201,-0.015917043227782465,-0.05019990556454469,0.6134562869642594,1.035693522506082,0.03450083006942693,0.025260817622099557,0.03698905437521721,-4.6602461029217075,0.6003482304107922,0.8062235792619037,1.4544783510058585,0.6867982614994567,0.546450439432652,1.438601512554332,0.6057373322287677,0.9994400552756114,0.72389700430786,0.8171997602026604,0.8033046928230517,0.9237403917397995,0.7083203263644489,1.2465836710494145,1.5635941105872389,1.145547679412221,1.0084688092981766,1.0109210615624584,0.7086241234817655,0.770701218345323,1.1079145314165493,0.8498636219905841,1.1412959506050238,0.781574898416889,0.9310307715095271,1.2323266099116765,1.3266698114552131,1.014969249216725,0.9719044724801272,1.0601445164012262,0.9304454324486612,0.9655468405911383,1.160608136937794,0.9833023398182368,1.2346347674108213,0.9468732580670755,0.7955601606687752,1.1581149177932029,1.1723682682503658,0.951606418363244,1.00276742894969,1.0120027708215127,0.7964299680603443,0.8396941171349221,1.0751924263245756,1.2405770366440934,1.0929051734602215,0.871288502406108,0.6614643773183594,0.9249239080208624,0.9671691639674191,1.2211348779638724,1.1908798904786084,0.7725818094730449,0.6659503190943105,0.7718743049339518,0.8129224405523138,1.044430780486054,0.707995032482252,0.7771562349101663,0.9812874771245345,1.059815514824861,1.0298738373149505,1.3667777868119357,1.3399209548720754,1.1868288993042133,0.9856345174397815,1.1442779507642753,1.048233566714692,1.1935322141025546,1.0249658893637887,1.213494150487482,1.3644506019056375,0.9954039439506115,0.7646097632831654,0.9631286176050514,1.0809084536859244,1.0578968587898143,1.361779101319048,1.216805893007689,1.1099354485202253,1.1735098493289808,1.0953693759319405,1.2435628302482271,1.5573404205277763,0.6383430701749245,0.42776863186873443,0.8653481312843861,0.8009147880926532,0.9805463236250164,1.550219772795704,1.2987423773237885,0.8645156612784786,0.6118091159269328,0.8861822833741616,1.1894073831109622,4.5,0.012345679012345678,2.666666666666668,1.1875,1.717777777777778,0.736388888888889,0.5381859410430838,0.3332979024943311,0.22626921138825898,0.045625000000000006,4676.499408127602,5179.139076663943,2273.3513608630406,2093.5988006499715,11.028714664979013,0.43219445029998815,6.262165392832991,0.7611663016121083,1.0,0.2777777777777778,1.5801815764696274,3.2269003774518223,3.9817868349457255,4.656213285053119,4.753774260662875,4.753774260662875,0.17307692307692307,0.012345679012345678,0.0720720720720721,0.028963414634146346,0.04771604938271605,0.01937865497076023,0.01630866488009345,0.014491213151927439,0.017405323952942996,0.009125000000000001,0.4108829951339274,16.467455621301774,7.086924762600439,3.52,140.4982889875376,1.0,4.0901530434094795,96.82097765242844,,74.0531851137629,73.42110714767924,72.72196729229375,74.04187762014337,106.45562809727718,74.31023312270744,75.09630155330082,96.40352951338063,0.04697867712355692,0.0604755701783281,-0.37080742231796626,0.344825244476639,0.358833373653929,-0.2972415787321186,0.0464570575176309,-0.1004473560861586,0.07101728787253687,0.029327581454904546,-0.006242181602821743,-0.02972449918532518,0.04760693153844289,-0.07840542194785463,-0.13563473371588383,0.009248719408081987,0.08203772057106265,0.12991245341173158,0.04967511222948451,0.1035905713147427,-0.05479995854920982,0.10122967274318458,-0.09542251058942741,0.10048448662715764,-0.052017565452195325,-0.008168573020357287,0.04736821349650429,0.08197307855954825,0.1275755561048673,-0.007835411581811029,-0.05172571625388898,-0.04454107144110261,-0.02701924945531013,0.18689608450059414,-0.045440263108795544,-0.03293778670899263,0.04372373751257429,-0.021876918788919064,-0.03230113255563951,0.07149384114916481,0.07761880686389486,-0.008760293890604055,0.04562115314605186,0.08646987110227321,-0.013519548926040752,-0.02207208508354341,-0.044545133556053045,0.07772241867234435,0.17062592641136873,0.06833160611719917,0.10607948383946399,-0.11864193710594513,-0.13483101543223544,0.2600877398577948,0.16958093091936466,0.1568687626405834,0.13735850226036386,-0.035210817539357446,0.18943516526444534,0.1770826170709627,-0.1225122581136505,-0.18779109724257215,-0.08704437079925172,-0.4195361411496868,-0.43546551213156454,-0.19809845524745126,-0.12497912121331516,-0.16891922642022383,-0.18325644480626996,-0.27974100123547596,-0.12678350812474773,-0.2495086375901317,-0.19164580239933907,-0.10394236407440267,-0.012963190869608945,-0.15475832518980678,-0.2045484369346981,-0.14905207627512038,-0.19323090780252625,-0.1789034965095704,-0.14448497065553714,-0.2411773492484792,-0.08726912248490504,-0.2349064429885186,-0.11375704930199497,0.07497505565072098,0.07098037915851328,-0.032074084613925295,0.015543934201028273,-0.15096837864064194,-0.11503131993731282,-0.18820655271087974,0.0408346366329028,0.08884253371917908,0.027371447297403522,-0.11772180725879527,13.252917287678084,19.987111622272764,6.4829413267486204,17.377942352758026,32.73109893889149,39.3025435966258,41.055828872968206,41.15417033638284,41.15417033638284,48.038535001204316,37.69558827100561,6.469988614277353,2.09567488608643,1.7772832298349388,10.342946730198722,4178.470654405624,2360.75588260435,2114.1578567947226,170.0,37.0,50.0,68.0,96.0,110.0,129.0,153.0,167.0,327.1138398760005,26.0,4.844187086458591,5.707110264748875,6.597145701886651,7.482681828154651,8.379539026117442,9.274347501950475,10.174544693464336,11.073598459572551,11.975520467993162,0.6991869918699187,0.9769756097560977,1.1212397928140805,0.6656743513567848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7060650503870309,0.9681492109038737,1.0018563586946867,0.6574633153455492,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,14.536682415501005,17.272517893724736,5.749511833283905,0.0,0.0,0.0,4.992404732635669,0.0,0.0,23.733674027155736,37.37950732498524,31.201658937391628,5.563451491696996,208.0112564274611,-351.183801467544,-18.157869413199744,-8.565458572379125,-27.014138574426465,330.12000638324184,557.339063151063,18.565975253278186,13.593635686611291,19.904966541109392,0.5,0.9574428806198709,0.2691021767122173,44.162186753707935,0.09041392913651254,61.662207254584835,0.04255711938012914,5.0,0.0,0.29494470144341073,0.6023087362792391,0.7432101137821003,0.8690934368979663,0.887303428238351,0.887303428238351,3.7714000000000025,,1.3256302521008405,0.959325316894866,0.9805438548466842,1.3379508818231125,-2.402894764756166,0.93531153649505,0.879067952217064,-1.2736797330507026,93.23500000000006,4.736862953800049,0.0,9.799819461700956,4.992404732635669,0.0,33.22669760632749,53.05065428466959,0.0,11.49902366656781,3.970291913552122,0.0,5.303304908059076,0.0,6.834108738813838,2.70805020110221,8.452974619089586,5.37989735354046,10.116701972772454,28.666666666666668,13.602470675513002,0.0,0.0,0.0,0.0,0.0,4.08737517846645,0.0,40.056000000000004,0.0,0.0,0.0,0.0,0.0,0.0,4.910701373141849,0.9449537037037039,45.9708315053773,4.736862953800049,5.687386274683562,11.49902366656781,48.862136853785714,0.0,0.0,5.563451491696996,47.456974211866935,5.022633313741326,0.0,0.0,27.292648405628174,28.948667065868268,30.604629631337506,193.64195530485694,,148.06796699523295,146.92584032977072,145.5781543035762,148.04272457716166,214.16494041964467,148.67486498168415,150.2283409841507,193.47158758313554,30.604629631337506,193.641955304857,,146.9728811348019,146.13335419842275,144.76813981478986,146.93746080522078,215.31415095931058,147.90221632110138,149.50215441492787,194.08073875981205,4.8624189295764575,132.63340480309705,,103.75154102739582,102.20066697719805,100.2095601231529,103.74699513002427,149.28440237272952,103.57937349435005,104.82860376697012,135.35238435764603,1.3306360709277176,8.419215448037258,,6.437737695444911,6.3880800143378575,6.3294849697207045,6.436640199007029,9.311519148680203,6.46412456442105,6.531666999310899,8.411808155788503,2.4695139561994095,96.82097765242844,,74.0531851137629,73.42110714767924,72.72196729229375,74.04187762014337,106.45562809727718,74.31023312270744,75.09630155330082,96.40352951338063,39.694117647058825,0.0,2.148282417905434,6.231336346266901,0.0,0.0,0.0,41.076110706482154,3.9461837049634667,0.0,6.089298548122953,0.0,0.0,4.650509163027351,0.0,0.0,0.0,26.955995929167518,515.2299464170882,64.78744463525473,132.3029154755247,163.25326023277475,190.90474468717787,194.9047446871779,194.9047446871779,1029.0,124.50867503034674,22.90131639361473,65.76532970692975,28.07,28.07,1.0,8.875490256504794,5.700439718141092,4.313426623187982,4.72063161834578,,4.717537689821295,4.713704641868391,4.715764546897054,4.717606589248753,4.714373758837902,4.714538249597971,4.714545175143017,4.713806778754066,0.18754028796469485,0.20524485297155565,,0.20511033434005632,0.2049436800812344,0.20503324116943714,0.20511332996733708,0.20497277212338705,0.20497992389556394,0.20498022500621813,0.20494812081539415,2.294641751356553,2.384851731025952,,2.384196110527042,2.3833832699639133,2.3838201779213377,2.3842107153757697,2.383525211289005,2.383560102008091,2.3835615709833315,2.383404937799914,238.98999999999978,159.75548752402514,134.2741598274268,,134.12047934361462,134.72128411198474,134.6043303290499,134.10577312327646,134.2094318315814,134.60728049077113,134.5810135669355,134.36847918626216,6.945890761914137,5.838006949018556,,5.8313251888528095,5.857447135303684,5.852362188219561,5.830685787968542,5.835192688329626,5.852490456120484,5.8513484159537175,5.84210779070705,5.906553566300899,5.732792801603546,,5.731647618517311,5.7361172050937945,5.735248711463667,5.731537963178076,5.73231062690751,5.735270628510353,5.7350754720009585,5.733494993653603,6.089298548122953,9.5612105361692,0.6945681636852274,1.8120403439153445,2.5257203745695813,13.602470675513002,0.0,3.9461837049634667,2.148282417905434,287.19472132656983,111.93736010015057,-188.98298256239264,-9.771317197277014,-4.609341038107139,-14.537152504799435,177.64789591409124,299.9215738672156,9.990931708358849,7.3151603382247705,10.711484780971984,1075.0,41.0,1.5161824628322011,0.8289620694128335,0.0,0.0,0.27497165237684323,0.07165861765198955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23470804841064383,0.1018340389940122,0.4368096151609046,0.15359456787710327,15.81119030894213,13.753661505064994,11.20350993820667,8.173524193697162,10.301985912761872,6.372438190452842,8.773156152953788,4.531945714709633,7.3789639473872155,3.125975454406504,6.7645163782534645,2.40017969286006,4.877136378168174,1.3905115093118376,3.645209300861285,0.8416445212879706,3.4481467085794657,1.4891713661625734,5.440486876457888,1.8844141692994265,9.22957316181626,2.6156396524386785,74.759755660088,47.279764851879605,31.610287702657228,26.779812159894366,26.452246110663335,26.452246110663335,126.0,150.0,48.344273999999984,24.863725999999996,0.5121951219512195,170.05,6.1388888888888875,4.944444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,41.0,0.0,3.0,44.0,12.0,1.0,7.0,37.0,13.0,26.0,31.0,0.0,0.0,0.0,18.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,4.0,0.0,2.0,23.0,5.0,0.0,3.0,1.0,0.0,4.0,0.0,0.0,0.0,1.0,0.0,2.0,3.5263605246161616,7.751723943025677,4.110873864173311,4.68213122712422,5.261394012443439,5.8664680569332965,6.173004548567117,6.610275364050245,7.048793580377503,7.433869681470111 +2763,CC(C)(Oc1ccc(C2CC2(Cl)Cl)cc1)C(=O)O,0,39.125,6.30555625,3.5,7.1628086419753085,160.30770220471206,161.5927335,1.6848341458714375,6.492640625,4.823681722488949,8.0091125625,237.43769976542382,28.78787878787879,6.3515151515151524,4.151515151515151,6.855218855218855,143.3186711506621,111.18753227272725,1.9365183035151514,6.552560606060605,3.083426861204639,7.855979636363638,279.2187633395579,31.071428571428573,6.2890875,3.5,5.131834215167549,150.880932642749,122.39543396428571,1.7140758777489822,6.4962535714285705,3.320292257277854,7.911041160714286,238.54429066078563,20.914285714285715,6.473800000000001,2.8142857142857145,3.8031746031746034,156.52568123634552,74.66710985714286,1.4432422900485142,6.63006,3.60759847148736,8.141318457142857,197.33857123271764,17.68918918918919,6.178648648648649,2.5135135135135136,2.5045045045045042,160.2069472711336,63.851126216216215,1.318780535311311,6.288925675675675,3.0448782115448783,7.848158702702704,174.04509490572417,18.696969696969695,5.847939393939395,2.393939393939394,2.5656565656565653,157.27008079648255,67.92013287878787,1.3909779534528182,6.037613636363637,2.5881032547699214,7.573026060606061,175.01816101417975,15.11864406779661,5.99142372881356,2.0847457627118646,2.4444444444444446,164.0327860708626,52.33563793220339,1.1283541726709154,6.123152542372882,2.894425263304736,7.744373491525424,141.80838161985514,17.473684210526315,6.1057894736842115,2.5526315789473686,2.5087719298245617,167.68162691198646,64.73495586842105,1.0414470361548949,6.196192105263158,2.7455125081221574,7.844995789473683,140.6156786416569,24.583333333333332,6.034583333333333,3.3333333333333335,3.1342592592592595,148.61656158963743,93.70040783333332,1.7060432304040836,6.236458333333334,2.338091563786008,7.635169833333333,229.56496315309724,17.15234375,0.13964648437499996,0.026548280883381403,0.859375,3.9278067129629637,1.2707658399794988,79.94343750000002,0.2886628231620586,0.15011318359374995,1.8129479818601395,0.11687583984374998,52.97288887304161,-0.09173768939393939,-0.008059552556818195,-0.01567081248188127,0.19365530303030304,1.2848990483539096,0.029331879197200938,-0.3424466363636426,0.007922833665435737,-0.007706744199810617,-0.16418149252116207,-0.007599970525568176,1.663306868505621,4.829799107142857,0.03139079241071427,3.903429763136751e-05,-0.24330357142857142,0.25167410714285715,-0.1300545997186417,22.413062107142856,0.026014431469579824,0.036573814174107114,0.49068548257458844,0.023269238281249993,5.090625795577188,-5.0594866071428575,-0.011457377232142867,0.004661821935348101,-0.046875,-0.8043388999118166,-0.03719160482392282,-23.716083628571432,-0.050901628032419315,-0.025788049665178565,0.15659423153013208,-0.012595691629464308,-12.91480625069346,-0.4352829391891892,-0.04489310599662161,-0.004680826058613499,-0.028293918918918918,-1.1902775171004338,0.14356911469340353,-1.7579265945945919,0.058576143039117914,-0.04275376636402026,-0.5422294591965293,-0.027820072951858097,2.021694610521332,-0.5235558712121212,0.010573401988636379,0.0023736678798248305,0.011837121212121212,0.31701418116348684,-0.2615375394697098,-2.4979627575757557,-0.041184995478395714,0.008126068300189394,0.16733477685411785,0.0014446923532197263,-5.135584746190105,-1.1237420550847457,-0.009137268273305075,-0.0017403811238169086,0.0982521186440678,0.2023198825591128,-0.1557244188964423,-5.17115074576271,-0.026321173838359444,-0.011256986559851695,-0.08180478391529851,-0.01402210785222456,-2.860101691764199,4.536800986842105,0.0024479235197368446,0.001683869391423466,0.10444078947368421,-0.38833302875243675,0.38772527557198866,21.19641660526317,0.07062785743080488,0.021422424958881584,-0.2798428585838418,0.018981216077302642,16.306550966487862,0.8528645833333334,0.0062800781250000074,0.0014523545826423615,-0.5260416666666666,-0.5670492541152262,-0.28302417465368584,3.9164528333333326,-0.018810696915412733,0.00778525390625,-0.021069634864953307,0.003848009114583358,-4.600518093321046,,,0.49603174603174616,1.0555555555555556,0.4444444444444444,0.027777777777777776,0.6111111111111112,-0.16666666666666666,0.921423780430082,0.0384573831945089,0.04801293875006445,0.6760883238450057,0.18600969096053344,0.270767012643463,1.5975121042750877,0.4567767036039964,1.9509369852914824,1.4644280677555352,0.0,0.2980854658316713,0.18842345170427566,0.4865089175359469,9.000999989625011,1252.0,201.7778,112.0,229.20987654320987,5129.846470550786,5170.967472,53.914692667886,207.7645,154.35781511964638,256.291602,7598.006392493562,950.0,209.60000000000002,137.0,226.2222222222222,4729.51614797185,3669.1885649999995,63.905104015999996,216.23449999999997,101.75308641975309,259.24732800000004,9214.219190205411,1740.0,352.1889,196.0,287.38271604938274,8449.332227993944,6854.144302,95.988249153943,363.79019999999997,185.93636640755983,443.01830500000005,13358.480277003995,1464.0,453.16600000000005,197.0,266.22222222222223,10956.797686544187,5226.69769,101.026960303396,464.1042,252.5318930041152,569.892292,13813.699986290234,1309.0,457.22,186.0,185.33333333333331,11855.314098063887,4724.98334,97.589759613037,465.3805,225.320987654321,580.7637440000001,12879.337023023589,1234.0,385.96400000000006,158.0,169.33333333333331,10379.825332567849,4482.72877,91.804544927886,398.4825,170.8148148148148,499.81972,11551.198626935864,892.0,353.494,123.0,144.22222222222223,9677.934378180895,3087.802638,66.572896187584,361.266,170.7710905349794,456.91803600000003,8366.694515571453,664.0,232.02000000000004,97.0,95.33333333333334,6371.901822655485,2459.928323,39.574987373886,235.4553,104.32947530864199,298.10983999999996,5343.395788382963,590.0,144.82999999999998,80.0,75.22222222222223,3566.7974781512985,2248.8097879999996,40.945037529698006,149.675,56.114197530864196,183.244076,5509.559115674334,548.875,4.468687499999999,0.8495449882682049,27.5,125.68981481481484,40.66450687934396,2558.1900000000005,9.237210341185875,4.803621874999998,58.014335419524464,3.7400268749999994,1695.1324439373316,-3.02734375,-0.2659652343750004,-0.5171368119020819,6.390625,42.40166859567901,0.9679520135076309,-11.300739000000206,0.2614535109593793,-0.25432255859375036,-5.417989253198348,-0.2507990273437498,54.88912666068549,270.46875,1.757884374999999,0.0021859206673565806,-13.625,14.09375,-7.2830575842439345,1255.131478,1.4568081622964701,2.0481335937499985,27.478387024176953,1.3030773437499996,285.07504455232254,-354.1640625,-0.8020164062500007,0.3263275354743671,-3.28125,-56.303722993827165,-2.6034123376745977,-1660.1258540000003,-3.563113962269352,-1.8051634765624995,10.961596207109245,-0.8816984140625016,-904.0364375485422,-32.2109375,-3.322089843749999,-0.346381128337399,-2.09375,-88.0805362654321,10.62411448731186,-130.0865679999998,4.334634584894726,-3.163778710937499,-40.12497998054317,-2.058685398437499,149.60540117857855,-34.5546875,0.697844531250001,0.15666208006843882,0.78125,20.92293595679013,-17.26147760500085,-164.86554199999986,-2.718209701574117,0.5363205078125001,11.044095272371779,0.09534969531250194,-338.9485932485469,-66.30078125,-0.5390988281249994,-0.1026824863051976,5.796875,11.936873070987655,-9.187740714890097,-305.0978939999999,-1.5529492564632073,-0.66416220703125,-4.826482251002612,-0.8273043632812491,-168.74599981408775,172.3984375,0.09302109375000009,0.06398703687409171,3.96875,-14.756655092592597,14.733560471735569,805.4638310000005,2.6838585823705854,0.8140521484375002,-10.634028626185987,0.7212862109375003,619.6489367265388,20.46875,0.15072187500000017,0.034856509983416675,-12.625,-13.60918209876543,-6.79258019168846,93.99486799999998,-0.4514567259699056,0.18684609375,-0.5056712367588794,0.09235221875000059,-110.4124342397051,0.7528912091043217,0.6458530634232069,0.4327358244669441,0.3358100951455862,0.2975803296634325,0.21822297604535507,0.18859705122858278,0.10993294468514889,0.11220248201697171,0.057399456116228244,0.07626982033125909,0.03232595406124453,0.04730696735542604,0.017213924069364187,0.030089988889445318,0.009527821175773232,17.003203436619337,5.693160219905992,3.5552008660361825,2.192588788431463,0.4767670371118897,-0.5097029606158389,4.025058938634566,0.9726840590216678,6.022281411904929,0.7712467021625897,13.64279953444646,10.953526497884848,35.45203393588284,11.704449999360161,2.228710758316536,0.7412604907932852,3.501339015337655,2.2425051178053743,7.008291627817937,1.098796620862518,3.7142600350953363,2.438530826061023,22.463266072064194,14.701143998121452,0.3109516945386453,0.6686802527742338,0.782773017610545,0.830762697612185,0.830762697612185,0.830762697612185,1.772809417727346,465.6296301026942,0.0,1.0,2.0,0.0,5.0,2.0,1.0,2.0,0.0,3.3801116483376292,1.5165414066556506,0.9221804688852169,0.6721804688852169,0.6721804688852169,0.6721804688852169,-57.56127928138477,790.0133386399685,54.16123711017562,24.687916832499017,52.316179561766894,,10.0,292.0,15.903710212420977,4.794537184071822,5.917906046161393,5.749511833283905,11.984273114623004,13.847474399381248,12.13273413692322,12.13273413692322,0.0,33.04527012910579,8.92857142857143,19.0,8.0,0.5,11.0,0.0,0.003968253968253855,-3.0,0.2012706043956043,0.05364191729323298,-0.14762868710237131,0.031787802840434476,0.16527304653204544,0.0,0.6397321428571431,0.9039682539682539,0.4384615384615388,0.5860902255639101,0.8721804511278194,16.585628047741476,0.6922328975011602,0.8642328975011602,12.169589829210103,3.348174437289602,4.8738062275823335,28.75521787695158,8.221980664871936,0.5487269534679545,0.3466666666666666,0.11199999999999997,0.22399999999999995,0.46153846153846156,0.5594679692375404,-0.9132555446200126,-0.0781538508915014,-0.028539235769375393,-0.07025042650923172,0.4405320307624596,0.7191087636792174,0.03375675368662428,0.022472148864975543,0.03784782966732722,-3.5431617876885344,0.5408307626481164,0.7439368298009678,1.5455583587839898,1.1955922865013773,0.5484555674986259,1.145075856853848,0.5436509779937923,0.8458976391440187,0.688633480020708,0.7547836419628883,0.7280112570492335,0.8741750393808656,0.5355434817971826,0.5831921725178973,0.9559698481184109,1.670779220779221,0.9135862234687235,1.1628672048309079,0.5379855999959234,0.8526526501477228,0.5605351914055179,0.37531451776018426,0.6230419419493763,0.8503642740737967,1.1771871034909065,1.3001823402125503,1.1703057306319395,0.925974025974026,1.337831262749307,1.0301414114702572,1.1774363998485533,1.1054995941879788,1.2986351351514618,0.8145115032629249,1.271649700951108,1.1431802871094752,0.7178196187533468,1.4589409868896295,1.1573803305892094,0.8987714987714988,1.3427707423066364,0.8781402890482647,0.7175727224870665,0.6744163780558289,1.313092389130717,1.6455405210389493,1.2395784462652297,0.8924316920342358,0.9746934155952602,0.510995407013533,0.5700430631511066,0.7515151515151515,0.6785799726239521,1.1842415793819376,0.9780697610597546,1.1227172384003257,0.6262939972673318,0.45342879800172187,0.6328505812724092,1.1192849174176245,0.9979580729458175,1.0720498876243616,0.9178053572881948,0.5349768875192604,0.9200576105122326,1.0404560214111487,0.9988374901554136,1.0361670782425072,1.070082744877985,1.086830745358597,1.07397763108048,1.0418777736713631,0.5120281916360019,1.2640053118151817,1.1461096994761268,0.8751196172248804,1.2868814269272941,0.6135656151997269,0.5144490284506252,0.6390567526854095,1.0248355296327425,1.3836595287285731,0.9481322876435494,0.6534261647933299,0.6471570636908829,0.47661179410434634,0.8339720642422844,2.3015151515151513,0.9134140402142903,1.3110722375795714,0.6521911730722373,0.9861119361580987,0.5106841040300102,0.6614164116238432,0.5174230978398161,1.058176539116586,7.0,0.0,3.7222222222222223,1.4444444444444444,1.1522222222222225,0.4791666666666667,0.41882086167800464,0.21180555555555558,0.26003086419753085,0.12938271604938273,3567.7337164665296,3960.535406502104,1737.9886254404264,1593.1486556840778,11.650748030145335,0.4610989747564151,6.278600058299999,0.8556283123566093,1.0,0.46153846153846156,1.619888351662371,3.4834585933443494,4.077819531114783,4.327819531114783,4.327819531114783,4.327819531114783,0.36842105263157887,0.0,0.13786008230452676,0.06018518518518519,0.05761111111111113,0.02662037037037037,0.034901738473167056,0.02353395061728395,0.026003086419753088,0.012938271604938274,0.7480748487179147,14.409972299168976,4.835555555555556,3.5261707988980717,115.656000302254,1.0,3.8580016280746268,75.84820425537153,,58.34645689956011,59.97894569587319,62.11913979978516,58.3007925767461,86.76145244185237,60.16306606032408,60.288652981607285,73.66978280536584,-0.005348405485048619,-0.05771396675605137,-0.5902759787241376,0.2253443526170799,0.32712888954371144,0.023082048851481678,-0.004283611601810874,0.027446671444032015,-0.05133955602905148,-0.09056050927214519,-0.06502601851442089,0.03139921012221958,0.2815824576243615,0.2247875594663661,0.0014703135695615626,-0.2831168831168831,0.06407497250622227,-0.1023434810938417,0.2803615006815644,0.09012047753366226,0.24364158629189106,0.2706561288488434,0.19909365624545142,0.09609870074818318,-0.2949734847252497,-0.08204558305510776,0.17559788356263367,-0.05454545454545454,-0.20478067244430645,-0.029267079468018146,-0.2966607938090156,-0.17633593226462196,-0.17179070517196243,0.08637546862732469,-0.10776984915191497,-0.2438003009736915,-0.025377461269057718,-0.32147680765143943,-0.17631371609992216,-0.03292383292383292,-0.30303871959181544,0.11297841834945746,-0.021989629787868347,0.20292236595438756,-0.2848102034776933,-0.29908715783460343,-0.23803099929849014,0.03816470374811276,-0.030523867690800052,0.0757154899814239,0.08940947589983841,0.013774104683195593,0.0807102294818233,-0.20581096158040352,-0.031246626811309623,-0.14267509417128504,0.05413294226162643,0.09229982245956517,0.012360915268297704,-0.09694741697962504,-0.06551536463258822,-0.06543142359938181,-0.06555532282718712,0.11432973805855162,0.05150963307114764,-0.12254375589680205,-0.06468511872238054,-0.09118310958797225,-0.07498999281979378,-0.045122521293393274,-0.11997439223513227,-0.053991801327258386,0.264500353594074,0.017529431769748735,0.06342668283570589,0.12153110047846889,-0.09886765239002697,0.3051115031375441,0.2651426717204044,0.2446725098062025,0.14270848466485736,-0.15435790843635488,0.1624049598503713,0.30782823654509833,0.049722918090032646,0.04497125833927754,0.05470616304769855,-0.6121212121212121,-0.14436791205732966,-0.22271937578858106,0.04899029808836194,-0.06516494472463534,0.05186255943594646,-0.011621753671793288,0.032923905571311564,-0.0868466529047898,4.251415002085969,8.664656944385985,1.7710301384923586,20.852606352597036,38.06101376209111,41.4108795873637,41.6628795873637,41.6628795873637,41.6628795873637,35.116865735246684,26.359705219599633,0.0,5.365538384970083,3.3916221306769616,8.757160515647044,4519.353739744706,4300.702354878374,466.64632701341725,28.0,30.0,33.0,34.0,40.0,38.0,46.0,50.0,44.0,288.03199966800037,19.0,4.59511985013459,5.442417710521793,6.364750756851911,7.243512974665482,8.160803920954665,9.052633375946147,9.968572799192062,10.868206478314477,11.784440045009832,0.78125,0.9932500000000001,1.1199510448211858,0.7523103821496961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7075430763473054,0.9876225490196078,1.0230562636562273,0.6599657414003666,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,9.843390348640755,10.082865946769346,5.601050810983688,0.0,0.0,0.0,4.794537184071822,0.0,23.20187978046503,12.13273413692322,37.964481650927475,5.917906046161393,0.0,270.7650222394176,-441.98715823947254,-37.82402271138559,-13.812098694983517,-33.99901217226711,213.20374295803282,348.026180400496,16.337214398790035,10.8758181375155,18.317167389499787,0.5,0.8039219703482682,0.29301321488443854,100.8594572922977,0.2125461358484959,19.11690754024176,0.19607802965173188,5.0,0.21052631578947367,0.3239776703324742,0.6966917186688699,0.8155639062229566,0.8655639062229566,0.8655639062229566,0.8655639062229566,3.589800000000003,,2.0441176470588234,1.0903584048460373,0.7827243828257825,2.0701662718517935,-2.778992884760575,1.1622387400647634,1.1650527459805553,-1.0304061746988582,70.57980000000003,14.637927532712576,0.0,0.0,0.0,36.12060699293777,0.0,29.828919765543436,0.0,5.749511833283905,3.6635616461296463,1.9459101490553132,5.0689042022202315,4.110873864173311,6.655440350367647,6.137727054086234,8.319473692442186,8.09101504171053,10.025660936493804,25.0,7.207622197026959,0.0,0.0,0.0,0.0,0.0,1.5574315003779293,0.0,31.784000000000002,0.0,10.935818487735876,0.0,0.0,0.0,0.0,0.0,-1.0052752057613168,35.838433434277945,4.736862953800049,0.0,5.749511833283905,21.010237607261683,4.794537184071822,0.0,31.749653560165644,24.26546827384644,0.0,0.0,0.0,24.073932228790277,22.641378443113773,21.2939227152576,151.69640851074303,,116.46578961611368,119.83674045787458,124.15131022370079,116.37156667884199,174.44923584529164,120.19699448286318,120.44785565810564,147.6830343356313,21.2939227152576,151.69640851074303,,114.64879615206137,118.86753298690036,123.45555521674456,114.53141888164042,176.30189776846535,119.1638933805834,119.41225321723402,148.36997178543055,4.8564712159742385,117.56866331467329,,89.84564887382305,91.44909997996791,94.91997122607542,89.79964652035939,137.73461328740174,91.88685595005775,92.12052865603687,114.22896720961019,1.1829957064032,8.427578250596834,,6.470321645339649,6.657596692104144,6.897295012427822,6.4650870377134435,9.691624213627314,6.67761080460351,6.6915475365614245,8.204613018646183,2.5301567883653258,75.84820425537153,,58.34645689956011,59.97894569587319,62.11913979978516,58.3007925767461,86.76145244185237,60.16306606032408,60.288652981607285,73.66978280536584,31.60392156862745,0.0,3.0132659360040313,11.972086860005028,0.0,0.0,8.964113667684193,32.73780043699927,0.7469582362265893,0.0,5.404859693877551,0.0,0.1549697131939194,0.0,-1.8962955308152067,0.0,0.0,21.11890372481173,389.07312330455267,51.83642725319587,111.47067498701918,130.49022499567306,138.49022499567306,138.49022499567306,138.49022499567306,380.0,110.48045791159095,94.89564189289774,72.01856693667891,46.53,46.53,1.0,7.182921858363499,5.247927513443585,3.1619380488080795,4.180065169295549,,4.177742402383942,4.168385376085176,4.1698287645398,4.177942981818431,4.175266147397414,4.170147040212004,4.170560185388458,4.172595205061105,0.1756632249337822,0.2322258427386416,,0.2320968001324412,0.23157696533806535,0.23165715358554445,0.23210794343435726,0.23195923041096744,0.2316748355673336,0.2316977880771366,0.23181084472561697,1.7389718110901535,2.018113502057812,,2.0175576704114166,2.015315425751987,2.0156616362101736,2.017605680700293,2.0169647690527484,2.0157379615328868,2.01583702871403,2.016324858466149,197.19999999999968,230.5239731672611,87.40012591243502,,87.4760200124617,88.32446603415977,88.22483247575992,87.45395961204373,87.5555309341132,88.18627991985156,88.15349121281935,87.97876892192227,12.806887398181171,4.855562550690834,,4.8597788895812055,4.906914779675542,4.901379581986663,4.8585533117802076,4.864196163006288,4.899237773325087,4.897416178489964,4.887709384551237,6.02814152699471,5.058283388208281,,5.059151363704768,5.068803812662423,5.067675135632066,5.058899143924233,5.060059896214372,5.067238059350435,5.066866178325531,5.0648821880210235,4.754769515831024,10.935818487735876,8.964113667684193,-0.20409320235295736,-0.3349861426051901,7.207622197026959,0.7469582362265893,3.0132659360040313,0.0,244.03833008571996,131.0418134718711,-213.90797920628765,-18.305645566429604,-6.684624350196489,-16.4544599389452,103.18395221487376,168.43380078481317,7.9067014793484205,5.263556274525412,8.864936883411218,660.0,24.0,2.8782707079950685,2.258852775561323,0.408248290463863,0.36450740219987765,0.8737001203553127,0.24815470174770488,0.2041241452319315,0.018633899812498248,0.2041241452319315,0.2041241452319315,0.526099420661621,0.5649721225022415,0.606493072294114,0.6117514847248078,0.7112944921610614,0.5283237570981238,0.7786328598685986,0.48366004533202983,13.55204176387779,11.625355141617725,8.221980664871937,6.380391807766137,8.927409889902975,6.546689281360652,6.223702690543232,3.6277871746099133,3.8148843885770383,1.9515815079517602,3.0507928132503634,1.293038162449781,1.7976647595061896,0.6541291146358391,1.3841394889144847,0.4382797740855686,4.655757745891971,2.333612873486538,4.457853564695001,2.1351690632521003,5.769530748752952,2.299375765589358,64.66860190717873,37.10112734009915,30.5919171866887,29.7169171866887,29.7169171866887,29.7169171866887,98.0,115.0,37.81110199999998,17.668898,0.28125,55.05,8.069444444444445,3.6944444444444446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,6.0,6.0,32.0,0.0,0.0,33.0,6.0,1.0,4.0,29.0,7.0,19.0,26.0,0.0,0.0,0.0,13.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,2.0,1.0,0.0,18.0,5.0,0.0,0.0,3.0,0.0,2.0,4.0,0.0,0.0,2.0,0.0,1.0,3.1780538303479458,4.808111029984782,3.7495040759303713,4.081765780015241,4.435271149192694,4.9438720779365735,5.022234429939608,5.356291419885857,5.5575517380066,5.356291419885857 +135413539,CCCCCN=C(N)N/N=C/c1c[nH]c2ccc(OC)cc12,0,20.177777777777777,6.015433333333332,2.8222222222222224,6.0,167.1881620855606,79.30097008888887,1.367593351367267,6.075591111111109,2.947530864197531,7.545173866666664,198.31462651052107,22.804347826086957,6.378606521739131,3.369565217391304,6.043478260869565,152.42944696935427,85.22032684782603,1.6759698063043482,6.49835,3.089975845410628,7.78351260869565,241.9440430148119,17.935897435897434,6.16486794871795,3.076923076923077,4.576923076923077,159.1416444637652,65.33895283333332,1.4121502142479356,6.2533243589743615,2.757122507122508,7.660209282051285,195.47632009891018,15.127659574468085,6.020370212765958,2.6808510638297873,3.5,163.35432531966896,53.83224893617021,1.2619383362657448,6.094560638297871,2.578605200945627,7.559732765957446,169.0462038563496,13.757894736842106,5.983135789473686,2.4526315789473685,3.0736842105263156,164.84210067596769,47.78663549473682,1.1845058680313683,6.051437894736844,2.500292397660819,7.534833347368421,154.97189923632104,12.684782608695652,5.932955434782608,2.2717391304347827,2.8152173913043477,169.7010550297197,44.140986663043485,1.0585312948980545,5.981246739130436,2.4405193236714986,7.514162391304348,137.090260552511,13.935064935064934,6.101259740259741,2.4285714285714284,2.9220779220779223,169.97663085352247,48.82211163636363,1.1151250969477922,6.146196103896105,2.6323953823953827,7.656899428571427,148.75254307474907,14.542857142857143,6.160168571428572,2.4285714285714284,2.8857142857142857,167.78510717492625,50.427720085714284,1.1739103219048426,6.21411142857143,2.8313492063492074,7.672508342857143,154.73411201274868,11.808219178082192,5.983520547945207,2.191780821917808,2.0684931506849313,171.73860514650175,39.730209958904105,1.061746703739452,6.025965753424657,2.4691780821917817,7.565853205479454,136.48624466768035,7.217777777777777,0.09972839506172831,0.020493554083751416,0.4711111111111113,3.440000000000001,1.5126275249598482,34.442528984691364,0.2127690159691823,0.0959359999999999,0.5392866941015089,0.05266671802469132,48.819587487861384,0.23391304347826067,0.00048561460010735345,-0.010584141813964304,0.2206763285024155,1.2991304347826083,-0.04488302468223029,1.0956768418786926,-0.005760900326128472,0.0014891690821255527,-0.034469195443430606,-0.0007795083628555983,0.253464730914108,0.24974358974358943,0.00490137701804368,0.002442346911215134,0.04170940170940166,0.44974358974358936,0.12325100950455013,1.1971804970750246,0.008154406474618688,0.004118273504273483,0.07874116281523685,0.0017175019183285876,1.5001948234783877,0.16851063829787238,-0.00018477804045180098,-0.002157554788106459,-0.008463356973995284,0.13659574468085092,0.0199065687155922,0.8145916999422116,0.0033984767916490073,0.0002523451536642895,0.04238522604558854,-0.0008573525400577864,1.093332230289181,-0.4147368421052631,-0.004966874593892134,-0.001316762441284766,0.010058479532163737,0.1263157894736844,-0.23200939358519188,-2.0159754043404803,-0.026594241529367464,-0.004322853801169597,-0.043776622626525166,-0.003012813931124105,-4.754497132930693,0.7578260869565219,0.00955433440687063,0.002930287484250167,0.0061835748792270565,0.3143478260869565,-0.10810474670492635,3.5619456184487386,-0.0005558036016148481,0.010398371980676318,0.010471760004771284,0.004308782458400428,2.2992712116306184,0.1054545454545454,-0.008952781786115112,-0.002925098979296111,-0.05927849927849927,-0.31532467532467534,-0.12233331232409131,0.5823381564341834,0.014054176919735513,-0.007130603174603195,-0.028071366219514397,-0.005187320622093947,2.7497258030136726,-0.9885714285714284,0.0019749382716049437,0.005334383406505645,-0.061269841269841266,-0.4742857142857143,-0.18619520634646958,-4.817885163738975,-0.040664906053326975,-0.0004121269841269944,-0.010838722320203859,0.0029492718165784904,-9.390432526839142,-0.6290410958904111,-0.023661119567055626,-0.007054709765153912,0.005905631659056323,-0.47835616438356177,0.12096381611814648,-2.8704745722103855,0.014558326116804049,-0.021064432267884327,-0.13598041979066836,-0.01223262000338237,1.5794828997335177,,,0.4696969696969697,1.1477272727272727,0.5227272727272727,0.022727272727272728,0.625,-0.10227272727272728,0.7872251487877435,0.007886370886594385,0.015704552704776203,0.7683659754368809,0.2335701903875117,0.2546440551973983,1.5555911242246245,0.48821424558490994,2.008419597603726,1.4758180654537894,0.4462721276803059,0.08632940446963064,0.0,0.5326015321499366,6.6931168968000145,908.0,270.69449999999995,127.0,270.0,7523.467293850227,3568.5436539999996,61.541700811527015,273.4015999999999,132.63888888888889,339.5328239999999,8924.158192973448,1049.0,293.4159,155.0,278.0,7011.754560590297,3920.1350349999975,77.09461109000001,298.9241,142.13888888888889,358.0415799999999,11129.425978681347,1399.0,480.8597000000001,240.0,357.0,12413.048268173687,5096.438321,110.14771671133899,487.75930000000017,215.05555555555563,597.4963240000002,15247.152967714994,1422.0,565.9148000000001,252.0,329.0,15355.306580048882,5060.2314,118.62220360898002,572.8886999999999,242.3888888888889,710.61488,15890.343162496862,1307.0,568.3979000000002,233.0,292.0,15659.99956421693,4539.730371999998,112.52805746297999,574.8866000000002,237.5277777777778,715.809168,14722.330427450499,1167.0,545.8318999999999,209.0,259.0,15612.497062734212,4060.970773000001,97.38487913062102,550.2747,224.52777777777789,691.30294,12612.303970831013,1073.0,469.7970000000001,187.0,225.0,13088.20057572123,3759.3025959999995,85.86463246497999,473.2571000000001,202.69444444444446,589.5812559999999,11453.945816755679,1018.0,431.21180000000004,170.0,202.0,11744.957502244837,3529.9404059999997,82.17372253333897,434.9878000000001,198.1944444444445,537.075584,10831.387840892408,862.0,436.7970000000001,160.0,151.0,12536.918175694627,2900.3053269999996,77.50750937297998,439.89549999999997,180.25000000000006,552.3072840000001,9963.495860740666,324.79999999999995,4.487777777777774,0.9222099337688138,21.20000000000001,154.80000000000004,68.06823862319317,1549.9138043111113,9.574605718613203,4.317119999999996,24.2679012345679,2.3700023111111093,2196.881436953762,10.759999999999991,0.02233827160493826,-0.486870523442358,10.151111111111113,59.759999999999984,-2.064619135382593,50.40113472641986,-0.2650014150019097,0.06850177777777543,-1.5855829903978078,-0.03585738469135752,11.659377622048968,19.479999999999976,0.3823074074074071,0.19050305907478046,3.25333333333333,35.07999999999997,9.61357874135491,93.38007877185191,0.6360437050202576,0.32122533333333164,6.141810699588475,0.13396514962962983,117.01519623131423,15.840000000000005,-0.017369135802469293,-0.20281015008200712,-0.7955555555555567,12.839999999999986,1.8712174592656667,76.5716197945679,0.31945681841500667,0.02372044444444321,3.9842112482853227,-0.08059113876543192,102.77322964718302,-39.4,-0.4718530864197527,-0.12509243192205277,0.955555555555555,12.000000000000018,-22.04089239059323,-191.51766341234563,-2.526452945289909,-0.4106711111111117,-4.158779149519891,-0.28621732345678996,-451.67722762841584,69.72000000000001,0.878998765432098,0.2695864485510154,0.5688888888888892,28.919999999999998,-9.945636696853224,327.69899689728396,-0.05113393134856603,0.9566502222222213,0.9634019204389581,0.39640798617283934,211.53295147001688,8.119999999999996,-0.6893641975308636,-0.22523262140580055,-4.564444444444444,-24.28,-9.41966504895503,44.840038045432124,1.0821716228196345,-0.549056444444446,-2.1614951989026085,-0.39942368790123395,211.72888683205278,-69.19999999999999,0.13824567901234605,0.37340683845539513,-4.288888888888889,-33.2,-13.03366444425287,-337.25196146172823,-2.8465434237328884,-0.028848888888889607,-0.7587105624142702,0.20644902716049432,-657.3302768787399,-45.920000000000016,-1.7272617283950606,-0.5149938128562356,0.4311111111111116,-34.92000000000001,8.830358576624693,-209.54464377135815,1.0627578065266956,-1.5377035555555558,-9.92657064471879,-0.892981260246913,115.3022516805468,0.7175566492072636,0.5952365555158058,0.46698753925513126,0.3253849512277451,0.3011758998619221,0.17240004619254642,0.196392114095875,0.09298506946770038,0.12406064053517855,0.04817540376306497,0.080517136934787,0.02457802947634855,0.05525986510071627,0.01301527217481274,0.03756477227710247,0.007077083823296383,8.011086002982495,5.675747023686886,3.522237660001255,2.174663123036215,0.3975828281216556,-0.5292944792481954,3.241246554766054,0.9871711221810419,6.007459618620202,0.9878609837477944,14.642246936036518,10.936971573797823,16.0045537308593,11.687547026068058,2.0097142162093937,0.7766482969682849,3.4650090699265776,2.2243462250895183,4.005322338852801,1.335238559687464,3.6785028288727557,2.420204733260924,20.910021082548436,14.70645725674666,0.26306673873803865,0.6343019641857269,0.8317446153223899,0.887353044815194,0.887353044815194,0.887353044815194,1.6006283500170722,659.5999598961631,0.0,2.0,2.0,0.0,5.0,3.0,2.0,0.0,0.0,3.9922570103055133,1.876052986390449,0.7505430557959398,0.43355055565171075,0.43355055565171075,0.43355055565171075,338.7862782628926,1279.9605149011072,57.54276805858406,28.443566997802385,52.40398140626057,,15.0,527.0,0.0,0.0,0.0,5.959554568743835,41.602287908826554,6.4208216229260096,13.32439812081285,24.395944776997904,27.42731937612361,10.470530430962235,10.333333333333334,25.25,11.5,0.5,13.75,0.0,0.030303030303030276,-2.25,0.11953703703703689,0.03879804332634518,-0.08073899371069171,0.08088578088578069,0.14519266055045832,0.0,0.5570370370370372,0.8257575757575754,0.43750000000000033,0.518238993710692,0.7448717948717947,17.318953273330358,0.17350015950507647,0.34550015950507645,16.90405145961138,5.138544188525257,5.602169214342762,34.22300473294174,10.74071340286802,0.5688073394495416,0.13548387096774192,0.0,0.24193548387096772,0.375,0.2122010184241678,-0.4614636244804014,-0.03765396378180493,-0.010254747210675586,-0.0354972018831078,0.7877989815758323,1.7131895789174434,0.060111212123365294,0.03807087953149874,0.053537174341170106,-4.680021268225569,0.9335510816020562,0.9603949535507067,1.5978236846719276,0.6993437243642326,0.5746545331985169,1.3596780161827096,0.936778947827633,1.181534447309465,0.9322116515680345,1.0718717306148267,0.9997208376313245,1.071486833906788,0.9482758620689656,0.9948205001237932,0.925484990172573,1.144170295113691,0.969323527463062,1.0546767398618555,0.9482430726572437,1.0300689801028182,0.9852704509559084,0.7806379406827082,1.0664250987725972,0.9948797013769616,0.9547610313384343,0.9873820147181999,1.029869174351844,1.1150140505820951,1.006927263730826,1.039098148587031,0.9548121639332161,0.991516423762484,0.9780668396740464,0.8580587934134232,1.0014775762391614,0.9713846697793225,1.0338345864661656,1.0200040656233305,1.0046332405584586,0.9066534260178746,0.9439684482524138,1.1814401335104432,1.0352242635348876,1.1028006908849528,1.0130345181387985,1.0589638618089712,1.000046033463636,1.073699533958933,0.8923216962947099,0.9529244216713134,0.8476008460184957,0.9587776866283835,0.9438546230760586,1.015482768349764,0.8922672999628511,0.9108720783197293,0.93447715143429,1.0666711272231817,0.9349873839703945,0.8874032382492368,1.014250527797326,1.3295412584444526,1.4245645423704896,1.199460916442048,1.231081579918789,1.0730390229212792,1.0074320051677286,0.8241158376959876,1.2838784057096273,1.2796968001220936,1.3517609482526693,0.8560944060826126,1.139866291344124,1.0832959360520638,1.0367141568374614,1.1415094339622638,1.1430417128091543,1.2085722850919556,1.140887024645275,1.1039833677886246,1.0864432108177942,1.2961467743224877,0.9804161144693175,1.120688873884847,1.0976617855455837,1.363114767998318,1.5504010487235231,0.9097958128715425,1.1544724080563518,0.8864374979866387,1.0908851235741486,0.8040877742398277,1.3290551133530935,1.554031782048432,1.313705811012271,0.8748523474960923,3.5,0.05713906744209775,2.000000000000001,1.1041666666666665,0.7333333333333334,0.47944444444444445,0.3200453514739228,0.18753543083900226,0.13429862685815064,0.10594135802469137,3724.3055211389174,4302.298898830942,2093.2827958546263,1852.263718320718,16.292818200779937,0.4660042486284723,8.700295697085185,0.8726740754614163,1.0,0.375,1.4995960860241613,3.615800109939226,4.741310040533735,5.058302540677964,5.058302540677964,5.058302540677964,0.15217391304347822,0.0047615889535081455,0.06896551724137935,0.03943452380952381,0.030555555555555558,0.022830687830687833,0.016002267573696143,0.010418635046611236,0.008953241790543378,0.007567239858906526,0.3616631707038902,18.340264650283554,9.988109393579073,5.864197530864198,130.00584408950218,1.0,3.9869105525410005,123.73076984470649,,93.52615528285875,91.1961036506467,90.0078459697379,93.54851677787427,139.86434697975326,92.56521002412882,93.66448881391443,122.97722404672155,0.03240790319126149,0.004869371454406494,-0.5164619943768601,0.46841673502871195,0.3776541961577349,-0.02967222527794586,0.03181174188357908,-0.02707584231607711,0.015522526289667635,-0.0639162727737216,-0.014800777266776859,0.00519186547770667,0.03460117468738154,0.04914725655626869,0.11917634692518174,0.0885341074020318,0.1307394156231364,0.08148140072211218,0.03475878608121762,0.03832515950442607,0.04292730053653985,0.1460098379516398,0.032610764117167595,0.03072936296013152,0.023346609370087004,-0.0018528127354042944,-0.10527967863890941,-0.017964672822159793,0.03970806531420084,0.013160258151537079,0.023650751671117774,0.015972611313581703,0.002630348916614094,0.07859497834673156,-0.016278829822960313,0.022395359865771697,-0.05746046149857403,-0.04980401610612319,-0.06425251744541365,0.02135054617676264,0.03671970624235011,-0.15338170815802815,-0.058531573138445175,-0.124991138433518,-0.04505976694014344,-0.08117504678927824,-0.057205272022297485,-0.09738912960116393,0.1049943778110945,0.09580355124492716,0.14298581262551643,0.013125512715340446,0.09138018200202222,-0.07146818692711276,0.10341707544274445,-0.0026122393765046666,0.1083886338879704,0.019417797841680486,0.08181224538009707,0.04709730929623923,0.014610389610389603,-0.0897716420741922,-0.14273263521505594,-0.12582700318549367,-0.09166414980368467,-0.08087470993715956,0.01690753186831939,0.06605368199743489,-0.07432666751379255,-0.052052769939527885,-0.0984933334874221,0.05632423263915065,-0.136963406052076,0.019803169101262758,0.26029567076093846,-0.13005390835579508,-0.1378737541528239,-0.12309389011773537,-0.1398818642463907,-0.19112231105687366,-0.004295853320202998,-0.0200982565280272,0.05599877735301081,-0.19234969015610795,-0.08715162966461978,-0.23725559357904275,-0.3442404248830285,0.012535538898940303,-0.13905702453010513,0.07996933423603897,-0.08334099315082881,0.06842314916243583,-0.21956754782234353,-0.2521486646675414,-0.23226471027960105,0.0323534667335369,7.450309374677138,11.546705306934863,3.564033859430106,13.755935057789419,32.07715009510902,36.02593198009515,36.34546042024054,36.34546042024054,36.34546042024054,44.18523114728197,32.467997439983364,9.81798680896673,1.899246898331874,0.0,11.717233707298604,5961.421989039972,5232.600149009242,896.1336251359508,44.0,29.0,36.0,44.0,51.0,54.0,56.0,56.0,49.0,301.19026035600064,23.0,4.653960350157523,5.459585514144159,6.293419278846481,7.1284959456800365,7.978996370854115,8.82981174915805,9.690727406601606,10.551768111755967,11.41976796648398,0.6000000000000001,0.972888888888889,1.1430868508535887,0.5576258799803883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6434895409181638,0.9589542483660128,0.9968115238326457,0.5941252595155709,4.0,0.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15.454508951909443,5.749511833283905,0.0,5.959554568743835,0.0,4.992404732635669,5.425791397110385,5.101407525739723,0.0,19.765380445542643,24.619922828310838,29.207976401303704,13.32439812081285,124.89758108573568,-271.60892480473706,-22.162424240758117,-6.035753884549712,-20.892994215749006,463.6838593486283,1008.3515900963702,35.380343817825946,22.407813113252672,31.510987190511567,0.4666666666666667,0.9013001432314288,0.22842389673305646,82.76557247249913,0.0960823434731656,98.59234403158663,0.09869985676857138,8.0,0.30434782608695654,0.27305830285707644,0.6583934505378055,0.8633351907578256,0.9210556895738049,0.9210556895738049,0.9210556895738049,2.6048999999999998,,0.9642857142857145,1.2140530479292693,1.2993821131665406,0.9617664715096315,-3.6732033552482424,1.0646419828641371,0.9498097657793637,-1.9956176192751696,91.59480000000005,4.736862953800049,0.0,10.409769918057593,15.827479735537576,26.186202068468653,13.65455394719011,29.9593962686949,0.0,5.749511833283905,3.8501476017100584,0.0,5.093750200806762,2.3978952727983707,6.52649485957079,4.727387818712341,8.056743774975313,6.823286122355687,9.648401735787335,27.000000000000004,7.7506832567949235,0.0,3.189853680131735,0.0,0.0,2.0757505990838983,1.7702710245741176,0.0,43.78000000000001,0.0,0.0,0.0,0.0,0.0,1.7149764581758629,8.3386391373711,0.3377545246493663,51.4389082884115,15.896321828072619,0.0,5.749511833283905,30.81268761641647,0.0,0.0,31.749653560165648,34.489757035373295,0.0,10.902924932081056,0.0,25.093164599117472,28.957029341317373,28.329887396547008,247.46153968941297,,186.96464822805518,182.28183884239078,179.8975662928243,187.00960024015677,280.73047669275593,185.0336344134518,187.2426312854853,246.49870744415438,28.329887396547008,247.46153968941292,,186.08802485143178,181.17815425336426,178.71630982630924,186.13526708423893,283.4018973147547,184.0657780653936,186.37916786204948,247.9500657127182,4.721582690486041,191.18023251757467,,143.94602144417667,140.0349425248786,137.42602754914728,143.9817409645662,219.92804811418299,142.30314280696484,144.18150173255862,193.09321967164152,1.2877221543885005,11.248251804064227,,8.498393101275235,8.285538129199582,8.177162104219287,8.50043637455258,12.760476213307088,8.410619746065992,8.511028694794787,11.204486702007017,2.421262465266722,123.73076984470649,,93.52615528285875,91.1961036506467,90.0078459697379,93.54851677787427,139.86434697975326,92.56521002412882,93.66448881391443,122.97722404672155,43.15294117647058,0.0,3.810170733304787,0.0,0.0,5.750998854023295,0.0,44.85651857246906,4.110681543349813,2.7431900352733685,5.240363486601068,0.0,0.0,0.0,0.0,0.0,0.0,26.73563667820069,530.4885365668529,67.48182387108726,162.71100494726517,213.35895182401808,227.6236143305084,227.6236143305084,227.6236143305084,464.0,117.00653269368192,58.09290386751114,69.12410738671667,87.79,87.79,0.875,8.345885755885384,5.523561956057013,3.464954403764305,4.610066142923324,,4.590894931534194,4.589230962744889,4.585285808770462,4.590902070459984,4.597810085042911,4.590093185803617,4.591003420788573,4.6014602264087445,0.15749792744383206,0.20954846104196925,,0.20867704234246337,0.20860140739749494,0.2084220822168392,0.2086773668390902,0.20899136750195052,0.20864059935470988,0.20868197367220784,0.2091572830185793,2.0311568338327746,2.31669956497561,,2.3125323396221833,2.312169824156341,2.3113097997396124,2.3125338946393086,2.3140374820338154,2.3123576861486423,2.3125559707385865,2.314831054009377,244.54999999999984,1978.5835265003282,116.2337127439321,,117.4785823500687,117.56154230601508,117.90809867938276,117.47866440283025,117.44980521717423,117.52554533108064,117.47244660985696,117.05929074594674,89.935614840924,5.283350579269641,,5.339935561366759,5.343706468455231,5.359459030881035,5.339939291037738,5.338627509871556,5.342070242321847,5.339656664084408,5.320876852088488,8.378593837382448,5.544060289587512,,5.554713399462098,5.555419321138347,5.558362856637383,5.554714097910541,5.5544684130359245,5.555113077392018,5.55466116951239,5.551137925315659,5.240363486601068,7.401823867515432,5.171443023133138,10.483668179122239,1.1495227853360699,5.857956842346376,6.989736028193439,2.887188163697661,1.6516309573879087,286.73458088761396,73.51239818221008,-159.863972196401,-13.044391583142877,-3.552532715475577,-12.297228630492384,272.9157138415806,593.4970313632028,20.824213727359037,13.188822919182286,18.54678223010009,1306.0,28.0,0.962215376648032,0.3602620048115072,0.0,0.0,0.13608276348795434,0.04488959454956774,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.03608439182435161,0.2721655269759087,0.08655626121623441,0.41535507715912034,0.10172332773809885,15.7862462825598,13.095204221347727,10.74071340286802,7.483853878238136,8.734101095995742,4.999601339583847,7.070116107451501,3.3474625008372136,5.458668183547856,2.1197177655748587,4.106373983674137,1.253479503293776,2.9840327154386785,0.702824697439888,2.103627247517738,0.39631669410459747,2.2375856036989705,0.7428236734639837,3.3434865128321922,0.9362948558126659,4.504770195189343,1.0356538136199012,75.60853487088134,33.21748238085091,22.920087223758173,21.37714766025955,21.37714766025955,21.37714766025955,104.0,117.0,48.358238999999976,26.519760999999992,0.2,67.06,7.055555555555555,5.222222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,45.0,0.0,3.0,46.0,10.0,2.0,6.0,40.0,12.0,23.0,34.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,3.0,3.0,1.0,22.0,6.0,0.0,5.0,1.0,0.0,2.0,7.0,0.0,0.0,0.0,1.0,2.0,3.4339872044851463,6.840997630735685,3.9749978045895347,4.549921711757613,5.152930257547145,5.643678550586496,6.012147607787351,6.372933089391512,6.712419718704002,6.701206665272449 +5484727,CCOC(=O)[C@H](CCc1ccccc1)N[C@@H](C)C(=O)N1[C@H](C(=O)O)C[C@H]2CCCC[C@@H]21,0,20.246153846153845,6.071689230769232,2.923076923076923,6.123076923076923,164.30771184026102,79.52487973846155,1.3490224425364001,6.127249230769232,4.7,7.639415569230768,196.76669513693372,22.34328358208955,6.251179104477612,3.701492537313433,5.462686567164179,146.42648312739183,83.36802753731342,1.7235596747164177,6.391388059701493,2.8486733001658373,7.6934703880597,247.45301919377826,17.92,6.125967999999999,3.272,4.08,154.57915407384792,65.021378184,1.4326288995190877,6.2267224,2.8355555555555556,7.634257632,197.07142113490653,14.28888888888889,6.017910555555557,2.772222222222222,2.8833333333333333,162.28839905517282,50.25276253333334,1.2047426159869887,6.085825555555557,2.5990740740740743,7.5935723999999984,160.18788579509075,13.947368421052632,6.0836,2.6157894736842104,2.710526315789474,162.34691080885796,48.38886244210527,1.1634798866674156,6.147794736842105,2.780994152046784,7.677340968421054,156.57640495262524,14.257731958762887,6.138005154639176,2.463917525773196,2.88659793814433,162.7709197401498,49.709220932989695,1.1322024139304483,6.195516494845361,3.2888029782359682,7.7309874020618565,153.126417096357,13.502487562189055,6.174492537313434,2.2935323383084576,2.736318407960199,165.51786764778507,46.439760726368156,1.0787807414465274,6.217109950248757,3.346047540077391,7.777203223880599,144.33966005500235,11.883838383838384,5.9659393939393945,2.2474747474747474,2.202020202020202,165.24806529783913,40.19011127777777,1.0699986631577878,6.018376262626263,2.689814814814815,7.602296424242425,139.5515891905875,12.68108108108108,5.903486486486487,2.27027027027027,2.464864864864865,162.91824928140485,43.91847923243243,1.098570341128081,5.9686540540540545,2.6672672672672677,7.528082162162164,144.33353873074103,7.506745562130178,0.13009547928994078,0.020714720184229915,0.5562130177514791,3.660591715976332,1.3516022375734535,35.65056091597632,0.223433263846354,0.12248747928994076,1.9222222222222218,0.08199164023668636,49.71699148053058,0.24273779033824908,-0.0029233093703081134,-0.012408820483719303,0.19005563896493852,1.0861361829903737,-0.13595781903471008,1.1669068925196489,-0.0039025146379550895,-0.0013568707939590951,-0.0493366500829187,-0.0032821881126909756,0.5681102809932145,0.10679289940828399,0.02066166532544384,-0.00019310106849027968,0.001940828402366817,0.3911005917159765,-0.20583752075576342,0.3582964501775147,-0.021427263495408164,0.017795733017751537,0.28,0.014577684071005915,-3.9986304097854775,0.14009204470742928,0.01096160618014466,0.003951127681052682,-0.031854043392504944,-0.12033530571992108,0.1205190584570339,0.6183743583826429,0.0021273062603951332,0.00899510190664039,0.028086419753086435,0.006698103353057199,0.09029091574269173,-0.5520896916848336,-0.01868378698224846,-0.0036817529934377643,-0.0861725319215198,-0.4844783556524447,-0.05492803924182731,-2.566708166583619,-0.010436272985572956,-0.01643551167860475,-0.27017543859649124,-0.012281283961382738,-2.100338126859826,-0.26883913865674386,-0.004058254864881278,-0.0010443621788355198,-0.07009089245409628,-0.24029036783993168,-0.1795911490108613,-1.3061199384188376,-0.019315144500108957,-0.0033991525651192044,0.03708476517754866,-0.0026346990788751203,-3.325252796277853,-0.46518413847920165,0.0003074292443110732,0.004051282054944319,0.0067414407253672546,-0.17249374429627012,0.03945644815473868,-2.2279844454061055,-0.0040434168561399204,-0.0012986618387352512,-0.008015478164731932,0.001589067914863563,-2.427205850790209,-0.3613687167533321,-0.020524383718845237,-0.002017743738930564,0.022264060725599204,-0.1779188333034487,0.09287794459683708,-1.5838164976391127,0.014918474113553308,-0.018281473073934598,-0.27595398428731766,-0.013212701930548078,1.9656736968733515,0.41658084119622596,-0.0021472381256996817,-0.002016163437770618,-0.019830481368942905,0.1263521509675356,-0.080691346826052,1.9667941197825043,-0.009734149720290287,0.00019581384935229114,-0.04444444444444445,-0.0038650822325283886,0.7738578924746571,,,0.46666666666666673,0.9596774193548387,0.3387096774193548,0.0,0.6209677419354839,-0.28225806451612906,1.1835155424893429,0.01600938409040626,0.02433196473556755,0.7830808854351055,0.171497675890464,0.3097256355795522,1.9665964279244483,0.4812233114700162,2.013349124884537,1.5881045268056355,0.13797510347438482,0.2872694946045172,0.0,0.42524459807890197,6.61918111058463,1316.0,394.6598000000001,190.0,398.0,10680.001269616967,5169.117183000001,87.686458764866,398.2712000000001,305.5,496.5620119999999,12789.835183900692,1497.0,418.829,248.0,366.0,9810.574369535252,5585.657845,115.47849820599998,428.223,190.86111111111111,515.4625159999999,16579.352285983143,2240.0,765.746,409.0,510.0,19322.39425923099,8127.672273,179.07861243988597,778.3403,354.44444444444446,954.282204,24633.927641863316,2572.0,1083.2239000000002,499.0,519.0,29211.91182993111,9045.497256,216.85367087765798,1095.4486000000002,467.83333333333337,1366.8430319999998,28833.819443116336,2650.0,1155.884,497.0,515.0,30845.913053683013,9193.883864000001,221.06117846680897,1168.081,528.3888888888889,1458.6947840000003,29749.516940998794,2766.0,1190.7730000000001,478.0,560.0,31577.55842958906,9643.588861,219.64726830250697,1201.9302,638.0277777777778,1499.811556,29706.524916693255,2714.0,1241.073,461.0,550.0,33269.0913972048,9334.391905999999,216.834929030752,1249.6391,672.5555555555555,1563.2178480000002,29012.27167105547,2353.0,1181.256,445.0,436.0,32719.116928972147,7957.642032999998,211.859735305242,1191.6385,532.5833333333334,1505.2546920000002,27631.21465973632,2346.0,1092.145,420.0,456.0,30139.876117059895,8124.918658,203.235513108695,1104.201,493.4444444444445,1392.6952000000003,26701.704665187088,487.9384615384616,8.45620615384615,1.3464568119749445,36.153846153846146,237.93846153846158,87.85414544227449,2317.286459538461,14.523162150013011,7.961686153846149,124.94444444444441,5.329456615384613,3231.6044462344876,16.26343195266269,-0.1958617278106436,-0.8313909724091934,12.733727810650882,72.77112426035504,-9.109173875325576,78.18276179881647,-0.261468480742991,-0.09091034319525937,-3.305555555555553,-0.21990660355029537,38.06338882654537,13.349112426035498,2.5827081656804802,-0.02413763356128496,0.24260355029585212,48.887573964497065,-25.729690094470428,44.78705627218934,-2.6784079369260207,2.224466627218942,35.0,1.8222105088757394,-499.82880122318466,25.216568047337272,1.9730891124260388,0.7112029825894828,-5.73372781065089,-21.660355029585794,21.6934305222661,111.30738450887571,0.38291512687112395,1.6191183431952703,5.055555555555558,1.2056586035502959,16.25236483368451,-104.89704142011837,-3.5499195266272072,-0.6995330687531752,-16.372781065088763,-92.05088757396449,-10.43632745594719,-487.6745516508876,-1.9828918672588616,-3.122747218934902,-51.333333333333336,-2.33344395266272,-399.06424410336695,-52.15479289940831,-0.7873014437869681,-0.20260626269409085,-13.597633136094677,-46.616331360946745,-34.84068290810709,-253.3872680532545,-3.747138033021138,-0.6594355976331256,7.194444444444441,-0.5111316213017734,-645.0990424779035,-93.50201183431953,0.06179327810652571,0.8143076930438081,1.3550295857988182,-34.6712426035503,7.930746079102475,-447.8248735266272,-0.812726788084124,-0.2610310295857855,-1.6111111111111183,0.31940265088757613,-487.868376008832,-71.55100591715976,-4.063827976331357,-0.3995132603082517,4.408284023668642,-35.227928994082845,18.389833030173744,-313.5956665325443,2.953857874483555,-3.6197316686390506,-54.6388888888889,-2.6161149822485195,389.2033919809236,77.0674556213018,-0.3972390532544411,-0.3729902359875643,-3.668639053254437,23.37514792899409,-14.92789916281962,363.8569121597633,-1.8008176982537032,0.03622556213017386,-8.222222222222223,-0.7150402130177519,143.16371010781157,0.721938851925628,0.5954121707820648,0.4520582622900154,0.3465281088677558,0.2913076240299317,0.19254204804084168,0.18281859635340206,0.11160719338325874,0.11420043913360545,0.06660467639278604,0.07531603858946047,0.04001027782738931,0.04802518239192218,0.02298935758894615,0.030831895527429938,0.014196953434753207,8.031592181328348,5.694126735207389,3.558188523184269,2.194123114015118,0.45730795223639625,-0.4948465392904707,3.2148596356069876,0.9725612144284491,6.029064261024807,0.987899458261402,14.543803220204616,10.95442972812289,16.016751030864018,11.705129308032543,1.9825483641259691,0.7404304419735328,3.5043792174281987,2.2441220469399927,7.010461728561778,1.1746330206173974,3.717246499146034,2.4401216240201453,20.89162410313838,14.699771382458346,0.23570055574651347,0.5240191128952709,0.7550982434407958,0.8877826999472742,0.909542699067626,0.909542699067626,1.6285992623282426,768.4929777374001,0.0,3.0,3.0,0.0,5.0,11.0,1.0,1.0,0.0,4.563422724527017,2.778781438706786,1.3484421614114543,0.5271486539460071,0.3924580769896462,0.3924580769896462,285.7802006596056,2138.6782139551087,66.13045980120106,32.90274175315551,63.444042926203046,,14.0,720.0,24.09482777539573,19.490138947056174,30.443113857125628,19.26246486877803,31.246737983401033,0.0,18.747384130231726,30.33183534230805,5.316788604006331,4.736862953800049,14.466666666666669,29.75,10.5,0.0,19.25,0.0,0.03333333333333327,-8.75,0.1227254393546528,0.0221451787648973,-0.1005802605897555,0.03330074942978156,0.16463291139240466,0.0,0.5620512820512814,0.8494623655913973,0.4393258426966286,0.5399061032863841,0.8161616161616158,36.688981817169626,0.496290906802594,0.754290906802594,24.27550744848827,5.316427952604384,9.601494702966118,60.964489265657896,14.917922655570502,0.5493670886075953,0.16129032258064513,0.0,0.3387096774193548,0.625,0.29770839092177637,-0.901388988963967,-0.049794337290765954,-0.013867522907137953,-0.03919082560712899,0.7022916090782235,2.1263691006654555,0.04382752378562065,0.03271337077946854,0.05062783573012988,-3.5467937748569027,0.8946564942973366,0.7315033681822687,1.627649673993939,0.977580184185456,0.5299250546697521,1.4284722832266195,0.9034058655993066,1.2679799472921078,0.726842209102058,0.6093852657565885,0.7348144835522112,1.1407829843079655,0.9317896329928111,0.6332212699857763,0.9895641171008681,1.3312000000000004,0.8069313332471226,1.3467275421957585,0.9417432316946482,1.211084177356578,0.653404504959908,0.4307265451311696,0.5808854687105062,1.1492238611111774,0.9574977929120947,0.8421953826821694,0.8658093192445033,1.2637352245862887,1.037803353592827,0.9791097362845077,0.9604271681719716,0.9847820664511617,0.8545861435871591,0.7544291289956032,0.8090443485567965,0.9898814121794224,1.0865908623241796,1.258253445190235,1.3049948213331457,1.3695856662933932,1.2351712074703762,1.0668495524976678,1.0828620840723353,1.0304862172100144,1.2348106351935055,1.3365472373686553,1.2764279000136944,1.017132631787992,1.0668913410643168,1.2322535072045533,1.2358777808120642,1.2592235139284933,1.184747120721076,1.1397043703688288,1.0637417790825743,1.0577134256332346,1.207807147566795,1.3032688067548925,1.2617224874897837,1.0296713863658455,1.1145684115680896,1.2952309935733775,1.0719646470716904,0.9687731554991004,1.1749348434344504,0.9564205714588168,1.108853962349132,0.9444466349592368,1.2797149197211137,1.3687365750173104,1.306630366526348,0.9791178882630293,1.060574212295741,1.273091866123766,1.2160591793732658,0.9521598968407481,1.0874554415224271,0.8798484441886569,1.053927259561004,0.8779282695862173,1.2545619219118613,1.3021275449021117,1.2915913227103273,0.9141012220874183,0.9266565089493579,0.9906265942786412,1.1451761972420091,0.9951466359977001,0.972679390887072,1.0222126416244657,0.927059347619414,1.0289977949406268,0.9746722546763358,0.9493132082727461,1.0271677351267858,0.9713685331418269,5.5,0.2416141210080604,3.555555555555557,2.3541666666666665,2.1833333333333336,1.2327777777777778,0.7241723356009071,0.5963718820861679,0.4517746913580246,0.2803163580246914,6240.533166602556,7277.847167984386,2894.387438852577,2550.035424509967,14.386312282258823,0.42986400078733644,8.202154528031048,0.7539674768493175,1.0,0.625,1.4589450885014377,3.2435863743216684,4.673925651617,5.495219159082447,5.629909736038808,5.629909736038808,0.16666666666666666,0.008053804033602015,0.07901234567901236,0.04904513888888888,0.045486111111111116,0.025158730158730158,0.01574287686088928,0.01454565566063824,0.010756540270429158,0.007576117784451119,0.42204398711441904,25.619834710743802,12.459259259259259,6.756679115196783,183.69074000722307,1.0,4.344288489499937,184.92276856991373,,163.4729073118847,160.37039717170444,159.66092103352906,163.5052411900957,224.1181985682646,162.2411494509615,163.6512980351434,201.23509953875833,0.03233595548553104,-0.022470491567143556,-0.5990339417264308,0.341695776436964,0.2967105504418937,-0.10059011094772723,0.03273179614957237,-0.017466130918799495,-0.011077628520277072,-0.02566646536105598,-0.04003076537091147,0.011426883728788965,0.014226258040105935,0.15881924136192058,-0.009321925025918875,0.0034893617021275764,0.10684081210397002,-0.15229149155990285,0.01005023317927514,-0.0959000603873505,0.1452861396194395,0.14566473988439313,0.17779476089177287,-0.0804278434939363,0.01866215439806056,0.08425816361931211,0.19074009428622013,-0.05726950354609932,-0.03287318418897365,0.08916754878521294,0.01734543138998766,0.009520991743906115,0.07343690929705587,0.014611432241490056,0.0816925156482014,0.001816097737491821,-0.07354581117948107,-0.14361595871143484,-0.17773607177376585,-0.15492721164613668,-0.13234973830541694,-0.04063920413482019,-0.07199629124021394,-0.04670868073050017,-0.1341811569140072,-0.14055369637967757,-0.14978702616425518,-0.042245881424308004,-0.035813007971520455,-0.031194434172741238,-0.05041642704064094,-0.12601447685896033,-0.06564249347754501,-0.13287278166488037,-0.03663672898435428,-0.08644704090878427,-0.027751020633489016,0.01929265240450509,-0.032133752554156736,-0.06688362866003343,-0.0619688165302884,0.002363104744215691,0.19557503161585324,0.012120249814756024,-0.04712182009903926,0.029192351904932676,-0.062495074079119584,-0.01809675420093408,-0.010602404803034454,-0.004169901935409677,0.01938085285617387,-0.048820449076061145,-0.04813919877294829,-0.15776400402894108,-0.09740627539186696,0.040027938964109215,-0.04860384525456296,0.06871692130636146,-0.04442613122895765,0.06676926191174531,-0.1492517698944594,-0.14355987621883579,-0.1611469400100644,0.03953726157470971,0.055494200216107153,-0.016505094084892695,-0.09732998659115463,-0.0356526739505463,0.03451686524232755,-0.05970051290453474,0.05516867250470418,-0.04356625129454344,0.0015986438000636714,-0.023121387283237003,-0.04713995501701155,0.015565259872526754,14.695120172454647,23.463177018445318,10.276797952853734,13.586254697024714,29.92044793772604,36.92683680705158,39.359408773135286,39.4951768747073,39.4951768747073,62.41382287142065,49.2312403309747,4.27722820770593,8.905354332740032,0.0,13.182582540445962,8209.606093875469,7200.915400370687,2657.823093815232,94.0,45.0,59.0,76.0,94.0,95.0,98.0,107.0,100.0,430.24677218800093,33.0,5.056245805348308,5.8998973535824915,6.774223886357614,7.646353722445999,8.53089883847235,9.41548287218084,10.306516361943942,11.198255815176527,12.094140584489308,0.5948717948717949,0.9750153846153846,1.133666628638805,0.551475250251372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.635292141870106,0.9609653092006035,1.0011205109529944,0.5892460818237332,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,1.0,8.0,1.0,1.0,0.0,5.0,1.0,0.0,0.0,0.0,14.743300079491233,12.083681658295921,0.0,5.907179729351506,0.0,14.905862972149976,4.794537184071822,0.0,0.0,43.173478588160066,57.43294005186969,6.041840829147961,12.648722793660879,210.28841503449246,-636.7024497760341,-35.17258023580337,-9.795422304246678,-27.68271520765365,496.06861569409807,1501.9757641790748,30.957879565397683,23.107319448908836,35.761327718549396,0.5,0.8317659767356932,0.15843796754373657,162.5838270082665,0.10765065929637524,29.405631528551964,0.16823402326430678,7.0,0.2727272727272727,0.24225439790396683,0.5385898827542008,0.7760943530392963,0.9124682068063655,0.934833260077436,0.934833260077436,2.7733000000000008,,1.5357142857142858,1.799906933457422,1.3161701003068016,1.5313282524578438,-6.447834958059396,1.6159730722154224,1.5229999873188609,-2.633621646776986,116.41450000000007,24.227001900856216,0.0,10.216698334856808,5.917906046161393,82.96058907645516,6.606881964512918,35.89528683400505,0.0,0.0,4.204692619390966,0.0,5.5093883366279774,2.3978952727983707,7.007600613951853,4.844187086458591,8.595449689382004,7.065613363597717,10.233762051368387,38.666666666666664,9.851926272364132,0.0,0.0,0.0,0.0,0.0,1.1047311429418212,0.0,63.376,0.0,37.76290956459576,0.0,0.0,0.0,0.0,0.0,-1.5679532924563921,73.68833086152233,5.316788604006331,0.0,0.0,58.62647271205114,25.54129612894152,5.917906046161393,57.935855628634314,30.33183534230805,0.0,0.0,0.0,35.84589126633918,41.293989221556885,39.55072997538034,369.8455371398275,,326.84673628275556,320.6246713154439,319.23692786703833,326.9116870090651,450.3163438971934,324.37804257468326,327.20433800658884,403.31975444744467,39.55072997538034,369.84553713982757,,325.41010033805503,318.9408874099515,318.0056719667514,325.47915412773364,454.6842320945885,322.8663258297076,325.7795960829678,405.10382072429366,4.856378934565228,267.42929926757307,,237.95872226124402,232.94400037719635,230.5780865818981,238.00737606254032,330.2859429309653,235.9108677375116,238.2530440159629,297.35361752513467,1.2758299992058175,11.930501198058952,,10.54344310589534,10.342731332756255,10.297965415065752,10.545538290615003,14.526333674103013,10.463807824989782,10.554978645373833,13.01031465959499,2.5010637974088117,184.92276856991373,,163.4729073118847,160.37039717170444,159.66092103352906,163.5052411900957,224.1181985682646,162.2411494509615,163.6512980351434,201.23509953875833,62.46274509803923,0.0,3.4700207789960746,0.0,0.0,0.0,9.723295647271948,65.07283321194464,5.8837835798989575,3.1447763133030993,5.223341409872796,0.0,-1.8500421594185839,1.5865440759637188,0.0,0.0,0.0,38.300995318542654,587.5237455880903,94.83143075259345,210.83311433090844,303.805167355105,357.1892453403591,365.94413284252255,365.94413284252255,832.0,140.9220152399974,118.83328514050038,80.85858903357587,95.94000000000001,95.94000000000001,1.0,7.265342306845837,6.044394119358453,3.924227336602453,5.484233046776128,,5.487456917076104,5.4858942238992165,5.4829449207956085,5.487465507876179,5.488173521163869,5.486741665454563,5.487554376381647,5.4951960187924485,0.12658797860007914,0.17691074344439123,,0.17701473926051947,0.17696432980320054,0.17686919099340673,0.17701501638310255,0.17703785552141513,0.17699166662756655,0.1770178831090854,0.1772643877029822,2.498571586430034,2.8332793680534074,,2.8338670387592657,2.8335822227231477,2.8330444624121838,2.833868604291985,2.833997619702714,2.833736687259395,2.833884798978903,2.835276370920174,339.9500000000012,1481.9753709108945,197.76841938782079,,196.5504719466127,196.72889579451945,197.33619142492523,196.55028309274317,196.8979220073924,196.6445119394022,196.53809767800055,195.8787914256898,47.80565712615789,6.379626431865186,,6.340337804729442,6.346093412726434,6.365683594352427,6.340331712669134,6.3515458712062065,6.343371352883942,6.339938634774211,6.318670691151284,8.43253329839048,6.418498858619465,,6.412321364509039,6.413228728966896,6.416310941174367,6.412320403666979,6.414087543537538,6.412799702221556,6.412258405320844,6.408898168333188,5.223341409872796,39.349453640559474,12.868071960575048,1.1047311429418212,-1.3133845529801649,7.747315373469322,5.6182626856163385,3.7355416732786932,0.0,425.81662974353327,148.5387004403856,-449.739251881419,-24.844399338425184,-6.9190654135602925,-19.553880516583433,350.4015544193254,1060.931141011837,21.86731588746762,16.322017554028257,25.260265262186596,2772.0,48.0,1.917922060506525,0.9556711620556783,0.0,0.0,0.6129299111529052,0.1870835076372738,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.06085806194501846,0.38722835938571304,0.262332706815718,0.6138191047735724,0.3674634156133213,22.380104409694468,18.457777294244007,14.917922655570507,11.435427592635941,13.108843081346926,8.664392161837876,10.78629718485072,6.584824409612265,8.679233374154014,5.061955405851739,7.079707627409284,3.7609661157745946,4.562392327232607,2.1839889709498843,3.021525761688134,1.3913014366058143,4.760908040216178,2.165453276708042,7.163661639282921,3.316902991870421,11.729344142377398,4.7211371194443,106.60210998619291,54.211652006394814,32.42648311862248,23.866689126928083,23.158250867298733,23.158250867298733,156.0,182.0,68.96096199999998,40.729038000000024,0.3230769230769231,159.07,10.86111111111111,7.027777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,6.0,6.0,65.0,0.0,1.0,67.0,6.0,3.0,6.0,61.0,9.0,33.0,58.0,0.0,0.0,0.0,24.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,5.0,2.0,1.0,31.0,7.0,0.0,2.0,5.0,0.0,3.0,9.0,0.0,0.0,0.0,0.0,1.0,3.6888794541139363,5.380473224561269,4.102643365036796,4.4630304188269685,4.79268655965915,5.135430722392689,5.024291620543742,5.074001253051406,5.2571697982010415,5.342932159306988 +4843,NC(=O)CN1CCCC1=O,0,22.6,6.462490000000001,2.8,7.7,170.1662677003745,89.00367329999997,1.2442968524244997,6.47827,7.127777777777777,7.976722000000002,188.56743775886815,23.5,6.5354,3.4,6.2,154.43800143129002,87.9715793,1.5778789540000002,6.6409,3.4416666666666673,7.940574000000001,233.76967082212894,18.694444444444443,6.365444444444443,3.0,4.166666666666667,162.50034424825128,68.27368480555555,1.2911709462290277,6.429769444444444,3.4814814814814814,7.848598777777777,182.65547095150916,13.044444444444444,6.33030888888889,2.2444444444444445,2.511111111111111,168.94728878077981,43.49246002222221,1.0277527536620445,6.356471111111112,3.4283950617283954,7.917025511111112,137.18584155378792,11.72972972972973,6.132108108108109,1.9189189189189189,2.5405405405405403,170.2043397917429,39.452975,0.9301667695726487,6.156459459459461,3.3738738738738743,7.781262810810812,123.88184601136841,14.846153846153847,6.441269230769231,1.6923076923076923,3.4615384615384617,172.590504142292,52.55182453846154,0.8799931650304615,6.440430769230772,5.884615384615387,8.031561846153846,122.99426822252259,5.777777777777778,6.365333333333335,1.2222222222222223,0.0,180.76838781948314,11.429488,0.6875069986331113,6.331111111111111,3.7777777777777777,8.071488,79.06821814228289,1.0,4.840000000000001,1.0,0.0,184.917652024249,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718463999999999,31.083744430930263,,,,,,,,,,,,8.16,0.17744099999999988,0.02906606622976169,0.55,4.459999999999999,1.3605228471722488,38.48143089,0.19449886461224994,0.16310099999999997,3.2599999999999993,0.11094083999999997,44.75041387676411,-0.05999999999999943,-0.017898000000000042,-0.020080182683207905,0.1,1.1600000000000004,-0.3687313677999978,-0.23888128000001405,-0.016393199999999837,-0.01352400000000011,-0.16388888888888892,-0.01214975999999999,-1.0809052838012643,0.41222222222222255,0.02496288888888887,0.0040012145722828985,-0.08333333333333333,-0.0933333333333334,-0.13997616251888786,1.7880467155555502,-0.0206748824777777,0.02217788888888886,0.42950617283950604,0.015475626666666655,-2.758081213909835,-1.9866666666666668,-0.02716455555555555,0.003068743229300558,-0.10555555555555556,-1.0888888888888892,0.13588293942011673,-9.397660807777779,-0.025123736794105567,-0.027944999999999994,-0.5704938271604936,-0.014944208888888876,-9.065620089357319,-0.12216216216216232,-0.028403972972972945,-0.008366281366156202,-0.0472972972972973,-0.15459459459459463,-0.12265258418007455,-0.4226705791891846,0.004063471140871591,-0.023415054054054012,-0.5541441441441439,-0.020816029189189192,1.9352580536462891,1.3707692307692307,0.051504769230769194,0.00908942148502692,-0.09615384615384616,0.263076923076923,-0.3456028634146351,6.192296425384618,-0.03365904076059618,0.047552076923076884,0.9780341880341882,0.032368021538461536,-2.568041737778154,-5.5377777777777775,-0.11860433333333331,-0.007767539621680659,0.1388888888888889,-2.3600000000000003,0.18225278248430374,-25.807931356666664,-0.0023144916956945594,-0.11417544444444444,-1.75074074074074,-0.06577843999999997,-14.050578433836701,7.839999999999998,0.09424900000000024,0.005231123321645397,0.25,3.240000000000001,0.36713480497224704,37.208780010000034,0.12802334461224982,0.0979690000000004,0.9344444444444439,0.045198759999999866,41.179092954574685,,,,,,,,,,,,,,,0.4466666666666666,0.95,0.3,0.0,0.65,-0.35,0.628590458769196,0.021583625961543174,0.03018362596154317,0.5578005245512022,0.19851761848488853,0.2713201117908778,1.1863909833203983,0.4698377302757663,1.9305027482806743,1.2003127505001765,0.3851320682658552,0.3450579295146426,0.0,0.7301899977804978,7.103711378,452.0,129.24980000000002,56.0,154.0,3403.32535400749,1780.0734659999996,24.885937048489993,129.5654,142.55555555555554,159.53444000000005,3771.348755177363,470.0,130.708,68.0,124.0,3088.7600286258003,1759.4315860000002,31.557579080000004,132.818,68.83333333333334,158.81148000000002,4675.393416442579,673.0,229.15599999999995,108.0,150.0,5850.012392937046,2457.852653,46.482154064244995,231.4717,125.33333333333333,282.549556,6575.59695425433,587.0,284.86390000000006,101.0,113.0,7602.627995135092,1957.1607009999996,46.248873914792,286.04120000000006,154.2777777777778,356.26614800000004,6173.362869920456,434.0,226.88800000000003,71.0,94.0,6297.560572294487,1459.7600750000001,34.416170474188,227.78900000000004,124.83333333333334,287.90672400000005,4583.628302420631,386.0,167.473,44.0,90.0,4487.353107699591,1366.347438,22.879822290792,167.45120000000006,153.00000000000006,208.820608,3197.8509737855875,104.0,114.57600000000002,22.0,0.0,3253.8309807506967,205.73078399999997,12.375125975396003,113.96000000000001,68.0,145.286784,1423.227926561092,8.0,38.720000000000006,8.0,0.0,1479.341216193992,8.128512,3.5569032387919997,38.720000000000006,8.0,53.74771199999999,248.6699554474421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,163.20000000000002,3.5488199999999974,0.5813213245952338,11.0,89.19999999999999,27.210456943444974,769.6286178,3.889977292244999,3.2620199999999993,65.19999999999999,2.2188167999999995,895.0082775352821,-1.1999999999999886,-0.35796000000000083,-0.4016036536641581,2.0,23.200000000000006,-7.374627355999956,-4.777625600000281,-0.3278639999999967,-0.2704800000000022,-3.2777777777777786,-0.2429951999999998,-21.618105676025287,14.840000000000012,0.8986639999999994,0.14404372460218434,-3.0,-3.360000000000002,-5.039141850679963,64.3696817599998,-0.7442957691999973,0.798403999999999,15.462222222222218,0.5571225599999996,-99.29092370075406,-89.4,-1.2224049999999997,0.1380934453185251,-4.75,-49.000000000000014,6.114732273905252,-422.89473635,-1.1305681557347504,-1.2575249999999998,-25.67222222222221,-0.6724893999999995,-407.95290402107935,-4.520000000000006,-1.050946999999999,-0.3095524105477795,-1.75,-5.720000000000001,-4.538145614662758,-15.63881142999983,0.15034843221224886,-0.8663569999999985,-20.503333333333327,-0.7701930800000001,71.6045479849127,35.64,1.339123999999999,0.23632495861069994,-2.5,6.839999999999997,-8.985674448780513,160.99970706000008,-0.8751350597755005,1.236353999999999,25.428888888888892,0.84156856,-66.769085182232,-99.67999999999999,-2.1348779999999996,-0.13981571319025185,2.5,-42.480000000000004,3.280550084717467,-464.54276441999997,-0.04166085052250207,-2.055158,-31.51333333333332,-1.1840119199999994,-252.91041180906063,62.719999999999985,0.7539920000000019,0.041848986573163174,2.0,25.92000000000001,2.9370784397779763,297.67024008000027,1.0241867568979985,0.7837520000000032,7.475555555555551,0.3615900799999989,329.4327436365975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7560477932315068,0.5669487570363501,0.46983773027576625,0.3260092536028879,0.3306012546057172,0.18347384777453365,0.20094805062099702,0.10843405214546402,0.13611830995265273,0.06620640979628288,0.10450512660339939,0.036384032529681816,0.06890111547898456,0.024682758707604745,0.048112522432468816,0.013301504212493603,8.023276164594579,5.835620202558808,3.545495986840508,2.331922968571518,0.396206528437465,-0.4055025914800954,3.125211354696791,0.9727408022436712,6.023170824658519,1.8571779271909268,14.543595775528098,11.096452242198659,16.011177067056238,11.848262131485656,1.8534546296720418,0.7508954500058375,3.490846377616609,2.3808563038960715,7.009352554766641,1.3483741276550134,3.703702224904591,2.5769538237115395,20.745041673491237,14.701776379960629,0.3779574262745121,0.6327999476645592,0.8346193894603771,0.8570437718821347,0.8570437718821347,0.8570437718821347,2.261671738134262,167.130751455403,0.0,2.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,2.636452797660028,1.5000000000000004,0.6000000000000005,0.5000000000000004,0.5000000000000004,0.5000000000000004,110.06117133276719,411.3137486751407,44.57957416750101,20.565687433757034,45.476889943941,,5.0,82.0,5.907179729351506,9.589074368143644,12.45193613526408,12.965578028838586,6.4208216229260096,4.899909730850478,0.0,0.0,0.0,5.733667477162185,4.466666666666666,9.5,3.0,0.0,6.5,0.0,0.05333333333333341,-3.5,0.1833333333333333,0.0,-0.1833333333333333,0.1055555555555554,0.2354285714285715,0.0,0.616666666666667,0.9333333333333333,0.43333333333333374,0.616666666666667,0.827777777777778,6.2859045876919595,0.21583625961543174,0.3018362596154317,5.578005245512022,1.9851761848488851,2.713201117908778,11.863909833203982,4.698377302757663,0.4785714285714285,0.23880597014925378,0.0,0.31343283582089554,0.6666666666666666,0.329237232351654,-0.42021467886782804,-0.08742619750664324,-0.0210107339433914,-0.0840429357735656,0.670762767648346,0.8561132621318766,0.05090653824829226,0.04280566310659383,0.05707421747545845,-0.1835861787305667,0.8265931372549019,0.7406306885105474,1.7358277115439822,1.0363636363636364,0.4579596412556054,1.7364920287908092,0.8357988352729884,1.3716686682644756,0.7187279661068907,0.6046779141104296,0.720646697825616,1.1517125834227464,0.8214188453159041,0.5916794565204461,0.8628130150635795,1.4393939393939394,0.8934354758345792,1.3160854222135823,0.8319942048042579,1.2091927017926118,0.5988024462006839,0.44566102400969476,0.5538180429216948,1.0978156340032426,1.1939678649237473,1.148487227992529,0.8210025622725285,1.1898989898989898,1.247259591429995,0.8553055739021096,1.1934798391507755,1.0684542224774987,1.162042401811011,1.1751779898507915,1.1423144483532344,1.1344819114159879,0.9911565977742449,1.172328769501915,1.0852973172335931,0.9336609336609337,1.0477517876621019,0.8920267785140882,0.9850435774686962,0.8883794096432455,1.1584916625198414,1.259280753145784,1.2270528659750157,0.8909966533624948,0.8530118778280542,0.8698530562488164,0.760015185345238,0.9965034965034963,0.9708088996205588,1.0592031943351783,0.8544063928307917,1.0058697748857097,0.8614600768848749,0.9816442504325938,0.8945432954661658,0.9341316361103393,1.7398556644880174,2.0118142556305108,1.4040633914365672,0.1919191919191919,1.5857000498256106,0.49211441895355945,1.7202478099922047,0.6629220586033626,2.0285828344945083,2.0479720518064077,1.9770213666230678,1.0632444878015412,0.0,0.0,0.2609406652612925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,2.5,0.0,1.1111111111111116,0.6944444444444444,0.3550000000000001,0.16000000000000003,0.0,0.0,0.0,0.0,1461.4736155164765,1694.7931243844118,922.8998421130276,817.8140156882492,6.573202637535859,0.4516522762161541,3.6044007042627606,0.823660346576348,0.0,0.6666666666666666,1.6854752972273346,2.821928094887362,3.721928094887362,3.821928094887362,3.821928094887362,3.821928094887362,0.25,0.0,0.0854700854700855,0.07716049382716049,0.050714285714285726,0.026666666666666672,0.0,0.0,0.0,0.0,0.4900115316781984,8.1,3.408284023668639,2.2857142857142856,58.98089901358698,1.0,3.2007093830023488,24.97228832647421,,20.82764090055645,20.243346981812145,19.943465869721265,20.833232999358444,31.224586163776827,20.588194678267104,20.86198889554616,27.613399420157442,-0.007352941176470518,-0.10086733054930966,-0.6908462440179522,0.18181818181818182,0.2600896860986548,-0.271021812361608,-0.0062077026367044754,-0.08428429663423011,-0.08291794654845841,-0.050272665303340174,-0.1095156661874923,-0.024154084625405133,0.050517429193899815,0.14068275589569992,0.13765930830316228,-0.1515151515151515,-0.020926756352765336,-0.10288409548565723,0.046465182666068736,-0.10629821679933628,0.1359764127067821,0.13175035976671967,0.13949440680876996,-0.06163252973492435,-0.24346405228758167,-0.1530906360737122,0.10557820948465231,-0.19191919191919193,-0.2441454907822622,0.0998755292515226,-0.2442128733373038,-0.1291716372956309,-0.17133555281696616,-0.174998106490949,-0.13470430626709587,-0.20258181554080526,-0.014970853206147341,-0.16007559117099748,-0.28783672685606476,-0.085995085995086,-0.03466246515573871,-0.09015106540474446,-0.01098375422674374,0.02089200442877889,-0.14356168296977959,-0.16998286630188467,-0.18763179717396403,0.04324559006260139,0.1679864253393665,0.2902641961596769,0.3127159146056017,-0.17482517482517482,0.058985857192135206,-0.2540220946182171,0.16091648055098134,-0.17305520434629962,0.2915498796639928,0.30001048712705164,0.29175929746395957,-0.05738587680664036,-0.6786492374727667,-0.6684156048113649,-0.26723738810335546,0.25252525252525254,-0.5291479820627804,0.1339578992466781,-0.6706593481525984,-0.011899769699472004,-0.7000290889966614,-0.5370370370370369,-0.5929145659975171,-0.3139765024862089,0.9607843137254898,0.5311568352297401,0.17997355680312457,0.45454545454545453,0.7264573991031394,0.2698483202507852,0.9669281819681323,0.6582215524366956,0.6006646188558036,0.2866394001363325,0.4074131762478081,0.9201946839637215,,,,,,,,,,,,,3.3019272488946267,3.802319299816564,0.33333333333333337,16.73058556697811,26.608432705649882,28.615932705649882,30.215832705649888,30.215832705649888,30.215832705649888,19.305027482806743,12.003127505001766,3.851320682658552,3.450579295146426,0.0,7.301899977804978,655.4630612407659,589.426198155967,217.71165889467215,0.0,13.0,14.0,16.0,12.0,7.0,5.0,2.0,0.0,142.07422756,10.0,3.8501476017100584,4.61512051684126,5.442417710521793,6.236369590203704,7.063903961472068,7.869019376499023,8.69433468816865,9.504873919377065,10.328461127032336,0.6333333333333332,1.0028,1.15383484454233,0.5917825326783783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6135308383233532,0.9854901960784315,1.0213401310997814,0.5827332179930798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,10.633577208012664,0.0,0.0,11.814359458703011,0.0,9.589074368143644,0.0,0.0,0.0,0.0,6.4208216229260096,12.965578028838586,6.544756405912575,106.10110136421314,-135.41980024198716,-28.17426138983115,-6.770990012099357,-27.08396004839743,216.16227269698032,275.8939484331535,16.405312777669863,13.794697421657677,18.39292989554357,0.4,0.6656314429490171,0.28843215541513917,29.444886336659103,0.18533424834434695,24.727969446836497,0.3343685570509829,3.0,0.2,0.3899822625973747,0.6529326802603611,0.8611730721041444,0.8843108934201204,0.8843108934201204,0.8843108934201204,-0.9059000000000004,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,35.0084,9.589074368143644,0.0,4.899909730850478,5.733667477162185,12.841643245852019,13.08951281182515,0.0,0.0,0.0,3.044522437723423,0.0,4.290459441148391,2.3978952727983707,5.6937321388027,4.59511985013459,7.173958319756794,6.529418838262226,8.699681400989514,12.666666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.055999999999997,0.0,21.157083333333333,0.0,0.0,0.0,0.0,0.0,-0.39439814814814733,23.076696890846602,5.733667477162185,0.0,0.0,29.80378200137864,9.589074368143644,0.0,12.841643245852019,0.0,0.0,0.0,0.0,11.835650653567566,12.270616766467064,11.731205635949069,49.94457665283805,,41.49813893524046,40.298141132241774,39.72757820957412,41.509759687006955,63.25490031413929,41.00842728902821,41.56847466533756,55.514126482827926,11.731205635949069,49.94457665283804,,40.86956750666903,39.543929871190116,39.090164175436584,40.88293447487756,65.65012449259544,40.336579063814014,40.94646219600794,56.66343705291024,4.387098555905128,37.35551658992433,,31.59408072967507,30.632408542901977,30.05675178266265,31.60303745397474,48.375508379280014,31.196065222704235,31.65102711982595,42.659922920105004,1.173120563594907,4.9944576652838055,,4.149813893524046,4.029814113224178,3.972757820957412,4.1509759687006955,6.3254900314139295,4.100842728902821,4.1568474665337565,5.551412648282793,2.268814690328084,24.97228832641903,,20.82764089619166,20.243346973752345,19.94346585905425,20.833232995019653,31.224586163776735,20.588194672665878,20.861988891334985,27.613399420153673,19.70980392156863,0.0,0.0,0.0,0.0,4.901666666666666,0.0,20.426802621995627,2.1805555555555554,0.0,0.0,0.0,0.0,1.4884259259259258,0.0,0.0,0.0,11.654664359861595,214.50863468597106,33.70950594454669,56.43856189774724,74.43856189774723,76.43856189774725,76.43856189774725,76.43856189774725,89.0,83.60464849182596,107.75473937522241,52.42478769961601,63.400000000000006,63.400000000000006,0.6666666666666666,4.812184355372417,4.321928094887362,2.8995179667924265,3.118675977527452,,3.1239690713559156,3.1232003607046903,3.1223277029443777,3.123974958960737,3.1274998025876757,3.1236478408848365,3.1240132970770276,3.128121262595404,0.28995179667924265,0.3118675977527452,,0.31239690713559154,0.31232003607046904,0.31223277029443774,0.3123974958960737,0.31274998025876755,0.31236478408848367,0.31240132970770274,0.31281212625954036,1.0645445048291886,1.1374085455754839,,1.1391043315942169,1.1388582327286538,1.1385787822940074,1.1391062162477263,1.1402339002374806,1.139001498633786,1.1391184883950864,1.1404325887460385,107.64000000000007,35.739196764857816,34.63675039964531,,34.09555161361344,34.11810842322971,34.19816078244735,34.09553706762501,34.13121858953539,34.107446050122675,34.094004477176114,34.02809840992055,3.5739196764857817,3.4636750399645306,,3.409555161361344,3.4118108423229705,3.419816078244735,3.409553706762501,3.4131218589535393,3.4107446050122676,3.409400447717611,3.402809840992055,3.5762480350763175,3.544915268659946,,3.5291669245662893,3.5298282821426534,3.5321718643314424,3.529166497941969,3.5302124666332784,3.529515719693696,3.5291215470473176,3.527186607137214,0.0,22.645509259259256,0.0,4.901666666666666,-0.39439814814814733,0.0,1.4160648148148145,0.7644907407407406,0.0,134.27696854608084,34.19249891724002,-43.640841740675604,-9.079532537168996,-2.18204208703378,-8.72816834813512,69.66118334406467,88.91051470513298,5.2868314482611005,4.445525735256649,5.927367647008865,121.0,9.0,0.8106172175260455,0.2596864546451131,0.0,0.0,0.11785113019775792,0.032274861218395144,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.07905694150420949,0.20118446353109126,0.08817656065588989,0.13144585576580214,0.05077262294812929,7.560477932315068,5.669487570363501,4.698377302757662,3.260092536028879,4.297816309874324,2.3851600210689377,2.813272708693958,1.5180767300364963,2.1778929592424436,1.059302556740526,1.2540615192407927,0.43660839035618176,0.48230780835289194,0.1727793109532332,0.2405626121623441,0.06650752106246802,1.234296232322636,0.4338575679059656,1.662988024091115,0.5538627404624451,1.7852447357139174,0.3990500266161183,33.725012701657114,22.407617568587636,19.441833283925547,17.58429080801566,17.58429080801566,17.58429080801566,46.0,50.0,20.49192999999999,12.908069999999999,0.25,10.04,4.333333333333334,2.2777777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20.0,0.0,0.0,20.0,0.0,2.0,2.0,18.0,2.0,10.0,18.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,2.0,1.0,1.0,10.0,4.0,0.0,2.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,2.5649493574615367,0.0,2.8903717578961645,2.9444389791664403,3.091042453358316,3.044522437723423,2.3978952727983707,2.1972245773362196,1.9459101490553132,0.0 +444020,OCC(CO)N[C@H]1C[C@](O)(CO)[C@@H](O)[C@H](O)[C@H]1O,0,22.512820512820515,6.649100000000001,2.7948717948717947,6.871794871794871,170.78495684196741,88.5115541025641,1.1009820256879235,6.634405128205128,7.65900997150997,8.209142358974356,170.40967339782085,22.692307692307693,6.794974358974359,3.6923076923076925,4.923076923076923,154.52290624928335,83.70259769230769,1.4641642110769233,6.872423076923076,3.720085470085469,8.275628717948718,223.72864088806318,19.542857142857144,6.569542857142858,3.357142857142857,4.185714285714286,157.21231499498646,70.7158890571429,1.3094310440485148,6.6405,3.3273809523809517,8.085400799999999,193.08166349757974,16.81981981981982,6.563630630630629,2.5315315315315314,3.81981981981982,165.58188559731337,59.8037861891892,1.0585948895403603,6.5874927927927915,4.4025275275275275,8.126704684684684,151.90897534501025,12.93939393939394,6.444287878787878,2.0606060606060606,2.6666666666666665,170.62551973664176,43.64272364393939,0.8915895844588181,6.444205303030303,4.158670033670033,8.08732196969697,122.45211574502045,11.61864406779661,6.237796610169492,1.9406779661016949,2.1864406779661016,171.4801463028679,38.85328891525424,0.8601104349149151,6.2441135593220345,3.575094161958569,7.901853152542374,114.67908872710208,11.83,6.313579999999999,1.82,2.35,171.81298151020465,39.71744761,0.8257574372571499,6.311848000000001,3.9983333333333335,7.99095316,112.23100015930177,11.925,6.443,1.575,2.375,172.30836061000963,39.60571935,0.7649794839259249,6.4276800000000005,4.777083333333334,8.1207774,104.06875779773793,8.311475409836065,6.443934426229508,1.1639344262295082,1.639344262295082,180.87895437513478,24.638627213114752,0.5778789279167705,6.383449180327867,5.158469945355191,8.198559737704917,72.57404938060596,8.879684418145954,0.2352190664036818,0.040754786121662466,0.6587771203155816,4.007889546351087,1.0970896534420918,41.544079228139374,0.18053105808607625,0.21402879684418133,3.512391336109283,0.1575178382642997,42.28686056861668,-0.976331360946746,-0.06502748191978965,-0.020085466948258565,0.24457593688362927,-0.45759368836291914,0.14182962484338796,-4.219212094674534,0.0394777930348456,-0.05732130177514795,-0.9138587552049091,-0.04388853648915185,5.601820024617405,-1.0042265426880816,-0.041915183619799026,-0.005873007655035379,-0.10236686390532539,-0.5899408284023667,-0.21736097004719354,-4.610517152681491,-0.01783178078912306,-0.03657443786982249,-0.6082704569884055,-0.0289988023668639,-3.4588052505388167,-0.01689855536009399,0.021734987650372246,0.00650997369623305,-0.08566554720400871,0.14318460472306618,-0.1039498850833869,-0.2672494552126007,-0.02905292621166205,0.01859760648222185,0.3167069929890443,0.015198860280398737,-5.2066833329081925,-0.7001972386587771,-0.009175437810053194,-0.002076772042522275,-0.04397525551371706,-0.2642998027613412,-0.0310790126146972,-3.3033886397555436,-0.007401611513839091,-0.00966032365070826,-0.11126333602295144,-0.004884642460103996,-3.243297279471556,0.0001504362651691094,-0.0023433819186752603,-0.0008233045704339696,-0.0229666031491325,-0.04091866412596524,0.024823690181411288,-0.002655023880368254,-0.004668531140430907,-0.0017346203991575448,-0.09857970831460615,-0.0025301285728612974,-0.28622042983457124,0.1339053254437871,-0.0047518356344510146,-0.0007008177839678002,-0.0777514792899408,-0.032248520710059105,-0.018946255853024,0.6492308095529213,-0.0034093903983934636,-0.0031398224852070967,-0.09876954123748989,-0.00426982698224852,0.5830590672227379,-0.1957100591715975,0.010449523339907953,0.0020578286682719662,-0.05236686390532547,-0.007248520710059186,-0.20757891516927693,-1.069146628139385,-0.034135089140153216,0.009057869822485208,0.17174773084228204,0.007087182248520707,-5.902023385570953,-0.5724124551362882,-0.004288885655468248,0.0013815619953506677,0.1373557086041323,-0.15753225337084098,0.1573372081017655,-2.6261774164538116,0.028863401705403257,-0.006636026772722848,0.10268093982364675,0.00104351692695703,1.3564106125524797,,,0.42962962962962953,0.625,0.0,0.0,0.625,-0.625,1.1169501356932316,0.02910105795243882,0.03387883573021659,0.5939791838114401,0.13307964332795677,0.3330533855181097,1.7109293195046718,0.4661330288460665,1.9279543795958647,1.1391166415199434,0.1121023161359541,0.6767354219399668,0.0,0.788837738075921,6.8495333849230855,878.0,259.3149,109.0,268.0,6660.613316836729,3451.95061,42.938299001829016,258.7418,298.70138888888886,320.15655199999986,6645.9772625150135,885.0,265.004,144.0,192.0,6026.393343722051,3264.40131,57.102404232000005,268.0245,145.0833333333333,322.74952,8725.416994634465,1368.0,459.86800000000005,235.0,293.0,11004.862049649051,4950.112234000003,91.66017308339603,464.83500000000004,232.91666666666663,565.9780559999999,13515.716444830581,1867.0,728.5629999999999,281.0,424.0,18379.589301301785,6638.2202670000015,117.50403273898,731.2116999999998,488.68055555555554,902.06422,16861.896263296137,1708.0,850.646,272.0,352.0,22522.568605236713,5760.839521,117.68982514856398,850.6351000000001,548.9444444444443,1067.5265,16163.679278342699,1371.0,736.0600000000001,229.0,258.0,20234.657263738412,4584.688092,101.49303131995998,736.8054000000001,421.86111111111114,932.4186720000001,13532.132469798045,1183.0,631.358,182.0,235.0,17181.298151020466,3971.744761,82.57574372571499,631.1848000000001,399.83333333333337,799.095316,11223.100015930177,954.0,515.4399999999999,126.0,190.0,13784.668848800771,3168.4575480000003,61.19835871407399,514.2144000000001,382.1666666666667,649.662192,8325.500623819034,507.0,393.08,71.0,100.0,11033.616216883222,1502.95626,35.250614602923,389.3903999999999,314.66666666666663,500.11214399999994,4427.017012216963,346.3076923076922,9.17354358974359,1.5894366587448363,25.692307692307683,156.30769230769238,42.786496484241574,1620.2190898974357,7.040711265356974,8.347123076923072,136.98326210826204,6.143195692307688,1649.1875621760505,-38.076923076923094,-2.536071794871796,-0.7833332109820841,9.538461538461542,-17.846153846153847,5.531355368892131,-164.54927169230683,1.5396339283589784,-2.23553076923077,-35.640491452991455,-1.7116529230769222,218.4709809600788,-70.29585798816572,-2.9340628533859316,-0.41111053585247653,-7.1656804733727775,-41.29585798816567,-15.215267903303548,-322.73620068770435,-1.2482246552386143,-2.5602106508875746,-42.57893198918839,-2.029916165680473,-242.11636753771717,-1.8757396449704329,2.412583629191319,0.7226070802818686,-9.508875739644967,15.893491124260345,-11.538437244255945,-29.664689528598675,-3.2248748094944872,2.0643343195266253,35.154476221783916,1.6870734911242597,-577.9418499528093,-92.42603550295858,-1.2111577909270217,-0.27413390961294026,-5.8047337278106514,-34.88757396449704,-4.10242966514003,-436.04730044773174,-0.97701271982676,-1.2751627218934902,-14.68676035502959,-0.6447728047337276,-428.11524089024545,0.017751479289954908,-0.27651906640368074,-0.09714993931120841,-2.710059171597635,-4.828402366863898,2.9291954414065318,-0.313292817883454,-0.5508866745708471,-0.2046852071005903,-11.632405581123525,-0.2985551715976331,-33.77401072047941,13.390532544378711,-0.4751835634451015,-0.07008177839678002,-7.775147928994081,-3.2248520710059108,-1.8946255853024,64.92308095529214,-0.34093903983934637,-0.31398224852070966,-9.87695412374899,-0.4269826982248521,58.3059067222738,-15.6568047337278,0.8359618671926362,0.1646262934617573,-4.189349112426037,-0.5798816568047349,-16.606313213542155,-85.5317302511508,-2.7308071312122575,0.7246295857988166,13.739818467382563,0.5669745798816566,-472.1618708456762,-34.917159763313585,-0.26162202498356313,0.08427528171639073,8.37869822485207,-9.6094674556213,9.597569694207696,-160.19682240368252,1.7606675040295987,-0.40479763313609374,6.263537329242451,0.06365453254437883,82.74104736570126,0.7734602917711594,0.5469818688441126,0.4661330288460664,0.3191535456335862,0.2844969342289173,0.18181028264554341,0.19964248636180817,0.09923368787723265,0.11633837632581469,0.0580118439177997,0.07012488363635042,0.033251549425787,0.04726226976276135,0.018815184212453515,0.03337628701808803,0.010504527427915177,8.01319105149608,5.78611734543025,3.5214836585621296,2.2823026187723383,0.382432480007336,-0.25510566054619827,4.023923470521526,0.9871819952917801,5.014914898462719,1.976961921149748,14.54023168473374,11.04767083676013,16.00848963575591,11.799441808868773,1.8954142329773862,0.7842486926077951,3.4637380473411135,2.3313882643239916,6.00900570261273,1.1164710339401984,3.6773173315868517,2.5273672308897788,20.79546383137684,14.707142622460402,0.2960318828776128,0.5201177373856439,0.7311127086570842,0.8762446512304328,0.91267675714606,0.91267675714606,2.7894978786896303,262.6107499660216,0.0,0.0,3.0,0.0,0.0,6.0,0.0,1.0,0.0,3.7207546482469445,2.536370775614554,1.4211774862877071,0.6540967949827419,0.4615384615384617,0.4615384615384617,167.1480969179513,1278.1007734178402,80.45456866269066,32.77181470302155,72.57347224670079,,8.0,222.0,55.817277526063265,20.426109579362823,6.4208216229260096,0.0,0.0,0.0,0.0,0.0,5.316788604006331,15.319582184522117,7.733333333333332,11.25,0.0,0.0,11.25,0.0,0.07037037037037047,-11.25,0.199145299145299,0.0,-0.199145299145299,0.22165242165242127,0.29294736842105257,0.0,0.6324786324786327,1.02037037037037,0.4333333333333337,0.6324786324786327,0.7987179487179487,20.10510244247817,0.5238190431438987,0.6098190431438987,10.691625308605921,2.395433579903222,5.994960939325975,30.79672775108409,8.390394519229197,0.4210526315789474,0.30172413793103453,0.06465517241379312,0.3232758620689656,1.0,0.3014864195429288,-0.9152750707654678,-0.11443257689784428,-0.02346859155808892,-0.10169723008505198,0.698513580457071,2.1205998855694768,0.07667129785581091,0.05437435604024299,0.0706866628523159,2.094189613059406,1.032578113431068,1.136845868358339,1.411057614072822,1.2704590818363277,1.0036089238845143,1.506365705943762,1.0329333471006348,1.3370424079722931,1.1139652599483074,1.178580992021298,1.168803030738633,1.1526774013604444,1.011074443104652,0.9655633132610122,0.9396596883863362,1.9861420017108646,1.041901012373453,1.7120223660242733,1.0182587352898465,1.5446294301035517,0.9517159297629953,0.985920187718451,0.9835073962506913,1.3155591007102412,0.9499961978860251,0.8111685541462696,0.7365414786210912,1.3124831418244598,0.8968796552457966,1.3061761563189105,0.9582082904519822,1.30084652527039,0.8135052959266923,0.7958679141172796,0.8024017058214546,1.1868182975461097,1.0636232381567792,1.0430743349261538,1.0105568267029972,1.0140401016149523,1.059002922930088,0.97546125570425,1.063277093964791,0.9789872983624623,1.048257194430542,1.0320784486163188,1.0339394727576232,1.0274794765546524,0.9536194836193334,0.9219231870036027,0.9436374587472709,0.8711306201157012,0.9425672294141195,0.8903686704852632,0.9545713617852777,0.9431270492477731,0.9255126257773957,0.9127367759583243,0.9153663762823474,0.9572889550075052,0.9689071523767218,1.0201316327163787,0.9862391662773137,1.0205389221556889,1.0040452755905507,0.8615828903901501,0.966637518151414,0.9027888790466695,1.0171189428693075,1.0353992081092116,1.028282997383572,0.9131400295528808,1.0383107507774327,1.0506027366322659,1.0344300498455652,0.7210329341317369,1.021062992125984,0.9751935967822525,1.0375234014070362,1.029196445993071,1.0514377132240866,1.07420235721398,1.0618570898153439,1.03409449264723,1.1494563436286973,1.2868438370953272,1.2093741491286232,0.169726121527437,1.1796824577255707,0.31844405133067016,1.136652665957536,0.3739793575719376,1.2988411438689766,1.254517542052071,1.2676790360421049,0.6868789112169539,5.5,0.0,3.3333333333333344,2.125,1.4666666666666668,0.7361111111111112,0.44734693877551024,0.18055555555555555,0.0,0.0,3593.1112808574944,4277.429352499627,1703.7874843977293,1447.5640255014655,8.452884716610358,0.39343663381475336,5.127210207683003,0.6486323700838148,0.0,1.0,1.564647570615304,2.7490314432476946,3.8642247325745416,4.631305423879507,4.823863757323787,4.823863757323787,0.3055555555555556,0.0,0.12820512820512825,0.06854838709677417,0.05866666666666667,0.03680555555555556,0.02631452581032413,0.015046296296296297,0.0,0.0,0.6391421151863006,16.055555555555557,6.437869822485207,3.3217993079584773,104.12739735284994,0.0,3.781010838623859,66.92942514473191,,61.136958308993556,59.963241297783114,60.94778186711738,61.15293795751184,90.7535945246763,60.727431943150144,61.19877342899862,77.6595401079386,-0.10995113282985348,-0.27645497839103655,-0.4928370103157651,0.3712574850299404,-0.11417322834645664,0.12927806255250063,-0.10155988947317195,0.21867590792063493,-0.26782051116644545,-0.26018136014912313,-0.2786258177026981,0.13247188250183825,-0.11309259376784929,-0.17819636928523644,-0.1441059618740997,-0.1553892215568862,-0.14719488188976368,-0.1981250751615685,-0.11097892258877201,-0.09877403355505159,-0.17088559300947553,-0.17317844134708346,-0.18409852932470236,-0.08179385284292727,-0.0019030581003037883,0.09240317114885054,0.15973519470324962,-0.1300372228515941,0.03572568631623746,-0.09475058374422428,-0.0064329131895064975,-0.16093034915803667,0.0868930104567256,0.09016848143688463,0.09648977187521149,-0.12312768701425775,-0.07885384273656156,-0.03900805300496497,-0.05095774607484456,-0.06675285792052263,-0.06594488188976375,-0.028328598776943676,-0.07951526911006933,-0.040999103380372603,-0.04513562564079278,-0.03167737457927998,-0.03101009075497874,-0.07669751870581235,1.6941622932194247e-05,-0.00996255088715283,-0.020201420465714503,-0.03486247843296462,-0.010209528893634039,0.022626856523099613,-6.39085985222632e-05,-0.025859988801511243,-0.008104612205152911,-0.028066265652449778,-0.01606248918053323,-0.006768542899280411,0.015079964460239912,-0.020201745152308093,-0.01719596274841676,-0.11802395209580839,-0.008046259842519663,-0.017269560234736143,0.01562751712434567,-0.018885339921776143,-0.014670093611248823,-0.028120312284706312,-0.027106942485359428,0.013788185251459811,-0.022040204353620602,0.04442464422494787,0.050492932587816106,-0.07949101796407192,-0.001808562992125987,-0.1892087073449314,-0.02573523467130333,-0.18908153257417784,0.04232079961221096,0.04889766384418002,0.04499288668899265,-0.13957109386245517,-0.0644631529884714,-0.018233579960340817,0.03389938033845608,0.2085010307254344,-0.039305537627468676,0.14341326400091722,-0.06321424051865861,0.1598805325321992,-0.03100529868209301,0.02923391216919115,0.0066247539863142964,0.03207640847093634,1.6509636244473136,6.914638747687414,4.832409737652294,15.546007071404226,22.86472996137273,30.570137636468115,34.229996949966726,34.424095750078564,34.424095750078564,34.70317883272556,20.504099547358983,2.017841690447174,12.181237594919404,0.0,14.199079285366578,1911.19244580852,1596.1713201918399,798.5485377875846,4.0,26.0,34.0,37.0,43.0,43.0,34.0,23.0,14.0,267.1318020120003,18.0,4.48863636973214,5.342334251964811,6.2324480165505225,7.112327444710911,8.011355109161286,8.899321434159964,9.802506322682014,10.694283086332076,11.59979099799181,0.6153846153846155,1.0130256410256415,1.156845693640717,0.5705838024545874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5744918317211734,0.9936651583710403,1.033335200851589,0.5500192111979205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,4.0,1.0,0.0,0.0,5.0,0.0,1.0,0.0,0.0,41.06248036789126,17.808983586480295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4208216229260096,6.041840829147961,31.96645311043502,126.92552609544299,-385.3300259927928,-48.17601750432404,-9.880257076738278,-42.81444733253254,294.0736230133943,892.7707474250475,32.27855115836662,22.89155762628327,29.75902491416825,0.5,0.4663526734500809,0.12999968915976584,89.48193996576772,0.06954011644779617,186.46875417569987,0.533647326549919,4.0,0.2777777777777778,0.2960318828776128,0.5201177373856439,0.7311127086570842,0.8762446512304328,0.91267675714606,0.91267675714606,-4.492399999999994,,1.8928571428571428,2.1856677524429964,1.4371888866057563,1.8873592321730437,-8.094241668555883,1.972230722154223,1.879726594644652,-3.1122859746496085,59.55630000000005,35.745691763884935,0.0,5.316788604006331,0.0,42.41745325545052,19.820645893538753,0.0,0.0,0.0,3.6109179126442243,0.0,4.948759890378168,0.0,6.511745329644728,0.0,8.174421152646497,0.0,9.89176915958193,24.000000000000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.50800000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.11698205198796,5.316788604006331,0.0,0.0,91.56296928994821,0.0,0.0,6.4208216229260096,0.0,0.0,0.0,0.0,22.25276829572891,22.405181437125762,22.076590362388764,133.85885028946382,,122.06359915766964,119.68363062307256,121.73587608016744,122.09616933367113,184.2052696055379,121.23572713939427,122.18868834748116,156.35650887409372,22.076590362388764,133.85885028946382,,120.38105947512994,117.74081484312323,120.45837484762902,120.41851668285064,189.60143071790856,119.48263316414605,120.5178202633526,158.43136619052677,4.937183855327797,95.27762383670087,,87.30192003935795,85.53742707079545,86.17411158118007,87.32342062380528,127.64099427592262,86.6473226658745,87.39886648484193,110.84866127763613,1.2264772423549313,7.436602793859101,,6.7813110643149805,6.649090590170697,6.763104226675969,6.7831205185372845,10.23362608919655,6.735318174410793,6.788260463748953,8.68647271522743,2.4685919276638986,66.92942514473191,,61.136958308993556,59.963241297783114,60.94778186711738,61.15293795751184,90.7535945246763,60.727431943150144,61.19877342899862,77.6595401079386,38.75294117647057,0.0,0.0,0.0,0.0,0.0,65.77097316704459,40.30007283321197,-1.7874192176870745,2.6533101851851852,0.0,0.0,-6.28148195389267,0.0,-1.9387155139833712,0.0,0.0,21.450749236718902,196.33407870711554,61.021255253996856,107.21222628666008,150.70476457040712,180.62091153130078,188.1306865356277,188.1306865356277,294.0,108.18300303328553,224.66507040172175,51.13761344489555,153.64,153.64,1.0,5.68697535633982,5.169925001442312,3.5633464577250717,4.174513169090729,,4.180972886067413,4.181755189547775,4.177932213431113,4.180953314432517,4.149427471111667,4.181109406647966,4.180945446779623,4.165791479483857,0.1979636920958373,0.2319173982828183,,0.2322762714481896,0.23231973275265416,0.23210734519061738,0.23227518413513984,0.23052374839509263,0.232283855924887,0.2322747470433124,0.23143285997132537,1.8584867844424044,2.016784410200092,,2.0183306322202195,2.0185177251103794,2.017603103259375,2.0183259510894787,2.0107570308592666,2.018363284513222,2.0183240693032674,2.014692953555866,191.96999999999957,129.01294785637594,85.18033029786248,,84.39151659533606,84.29653470897242,84.80692398444418,84.39406107628628,87.81493072445554,84.37791124834185,84.39452802670337,86.12534426954117,7.167385992020886,4.732240572103471,,4.688417588629781,4.6831408171651345,4.711495776913566,4.688558948682571,4.878607262469752,4.687661736018992,4.688584890372409,4.784741348307843,5.44769943520662,5.032557207035389,,5.023253547178863,5.022127422409896,5.02816385512669,5.023283697633487,5.063018204894968,5.023092317183626,5.023289230595396,5.043590391552088,0.0,0.0,68.42428335222978,-1.9387155139833712,0.0,-1.5973280423280434,-4.9069779856387,-1.5645951436130008,0.0,241.68820149672626,53.43553848637303,-162.22361306905194,-20.28206237677287,-4.1595798222833835,-18.024845896561327,123.80474506399202,375.85572501520573,13.589242572138422,9.637326282441173,12.528524167173524,581.0,31.0,1.7249435157862851,0.9475720419173828,0.14433756729740643,0.06454972243679029,0.6225967945698356,0.15630451387181865,0.08333333333333333,0.016666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.039283710065919304,0.039283710065919304,0.21269039581923277,0.11769246970336808,13.922285251880869,9.845673639194027,8.390394519229195,5.744763821404552,7.39692028995185,4.727067348784129,6.787844536301478,3.37394538782591,4.3045199240551435,2.146438224958589,3.015369996363068,1.4298166253088411,2.032277599798738,0.8090529211355011,1.134793758614993,0.35715393254911604,4.61737840708593,1.7279342202499635,6.457521351401489,2.1703909215163537,9.371083317834168,2.7335761852501244,66.16223654710784,50.48417199235642,32.31297531494538,23.91156714767869,23.185292861123774,23.185292861123774,88.0,104.0,37.41665299999997,21.637347000000002,0.15384615384615385,18.08,8.868055555555555,4.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,39.0,0.0,1.0,39.0,0.0,0.0,0.0,39.0,0.0,18.0,39.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,8.0,8.0,0.0,18.0,8.0,0.0,1.0,7.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,0.0,2.9444389791664403,1.6094379124341003,3.295836866004329,3.5553480614894135,3.6375861597263857,3.784189633918261,3.784189633918261,3.5553480614894135,3.1780538303479458,2.70805020110221 +51353551,CC(C)N(C(=O)CN1C(=O)[C@H](NC(=O)Nc2cccc(C(=O)O)c2)C(=O)N(c2ccccc2)c2ccccc21)c1ccccc1,1,24.789473684210527,6.357427631578947,3.513157894736842,8.868421052631579,160.68899142995687,98.06929406578946,1.5594055796094601,6.425455263157893,5.958698830409356,7.839057947368421,235.23797716750798,26.3,6.437287499999999,4.2125,8.4,146.49183459562445,100.64207666250005,1.8595624158250004,6.5813374999999965,3.5125,7.822009449999996,277.0448782306594,23.654135338345863,6.416886466165414,3.969924812030075,7.323308270676692,152.21316817624933,89.42349173684215,1.6530679095033316,6.528712030075189,3.65016708437761,7.830146195488718,241.07127618143628,20.82608695652174,6.4193728260869545,3.5652173913043477,6.3478260869565215,158.86755627897514,77.35024422282609,1.4668930508640223,6.50264239130435,3.50211352657005,7.8846697173913025,213.23973181983536,20.965686274509803,6.436950980392155,3.3480392156862746,6.303921568627451,157.67677791190218,78.0361988480392,1.4164559174569846,6.51993774509804,4.018927015250545,7.919648607843135,208.36970821691213,20.533333333333335,6.5218124444444445,3.1333333333333333,6.062222222222222,158.09202922284564,75.51570263111108,1.400229042814587,6.594418666666665,4.50716049382716,7.998879217777776,203.22118629217002,17.60159362549801,6.296552988047809,2.8884462151394423,5.0199203187251,162.05038104412145,63.93610471713146,1.2773476794304939,6.362748605577689,3.5658477202301904,7.829204015936251,181.64505209300657,18.612765957446808,6.311217021276597,3.025531914893617,5.280851063829787,159.50152087204216,68.19688519148936,1.3383589439245194,6.385642978723404,4.082033096926715,7.828175217021274,190.71244027578518,18.49785407725322,6.3539695278969965,2.9699570815450644,4.92274678111588,159.28858785662598,67.26880935193134,1.362210093680129,6.429083261802575,3.841201716738198,7.869889253218881,194.32411167026487,7.281855955678671,0.13699783587257616,0.02362668276565619,0.6320983379501386,4.097645429362882,1.537243858624194,34.562865083621865,0.22590991222166804,0.12667624653739606,2.29348934287473,0.0864969882271468,48.41527051050236,0.18722299168975107,-0.00752735889889188,-0.015693039566311004,0.21921745152354594,1.0757098337950133,-0.24242978327220915,0.9292468497662668,-0.003846764308241944,-0.005186147853185539,-0.16110630193905817,-0.005981534937673137,0.547310866327252,0.45221606648199525,0.03134114315393751,0.004101801868647887,0.023224178868223134,0.43401266323704013,-0.18012257830115014,1.9693717574940615,-0.017979101074908504,0.02707834388603092,0.2212679450820032,0.019909578452710713,-3.117379596023929,-0.006398289774780162,-0.0034155203691436063,0.0006636324656954546,0.007346742141394633,0.04322985667830915,0.21139663204056652,0.0024938313523702603,0.009586658739425921,-0.0031468415030711317,-0.13681028108983367,-0.0025702516710827575,1.6954204978232688,0.36417087610667537,-0.002759574778664848,-0.004791589323039818,-0.08611020585519526,0.03586850252566407,-0.2070648896217083,1.7131875902687226,-0.013998168094893336,-0.0002562645972516049,0.016857091020464822,-0.0038002704768888406,-0.07450339937821118,-0.5839612188365649,0.011354813250230954,0.005312139265628599,-0.005607109879963079,-0.029809172052939314,-0.08478472603261454,-2.8909293244405987,-0.02380512254149044,0.00776256048014781,0.15852495212202047,0.008967911421975961,-6.3928742291728025,0.1352126121552571,-0.012534541680921711,-0.003362137586216,-0.00560431404575603,0.061821964220679614,0.031354113193824314,0.7244761637045999,0.008257947824332205,-0.009843723995982817,-0.2310679757118034,-0.009552444716976976,2.6084770453098494,0.31422467142099375,0.007974308584310754,0.002102195425425618,-0.008918046796723058,0.013552778923793288,-0.0669341477225518,1.451352239670389,-0.0016447926685963293,0.007687807214003669,0.2441350816617879,0.005268618491778148,0.49312350114347564,-0.6108597957509542,-0.016845848070452783,0.0006252238885640712,-0.0424213557951803,-0.5338324634717582,0.0021810584873951473,-2.8159539537935587,0.003347324166512541,-0.01578432198352213,-0.20352215917872382,-0.009921863537740909,-0.8991832893966525,,,0.4666666666666667,1.3722222222222222,0.7222222222222222,0.022222222222222223,0.65,0.07222222222222222,0.9397136265299366,0.016965305809650666,0.02652086136520622,1.4405636186066864,0.28209824730584887,0.1990300816039026,2.380277245136623,0.4811283289097515,2.0379995550882883,1.5623481416621654,0.24027785289306947,0.2353735605330539,0.0,0.4756514134261233,7.963518864631589,1884.0,483.1645,267.0,674.0,12212.363348676721,7453.2663489999995,118.51482405031898,488.3345999999999,452.8611111111111,595.768404,17878.086264730606,2104.0,514.983,337.0,672.0,11719.346767649957,8051.366133000003,148.76499326600003,526.5069999999997,281.0,625.7607559999997,22163.59025845275,3146.0,853.4459,528.0,974.0,20244.35136744116,11893.324401000007,219.8580319639431,868.3187000000001,485.4722222222221,1041.4094439999994,32062.479732131025,3832.0,1181.1645999999996,656.0,1168.0,29231.63035533143,14232.444937,269.9083213589801,1196.4862000000003,644.3888888888891,1450.7792279999996,39236.110654849705,4277.0,1313.1379999999997,683.0,1286.0,32166.06269402804,15919.384564999998,288.95700716122485,1330.0673000000002,819.8611111111112,1615.6083159999996,42507.420476250074,4620.0,1467.4078,705.0,1364.0,35570.70657514027,16991.033091999994,315.0515346332821,1483.7441999999996,1014.1111111111111,1799.7478239999996,45724.766915738255,4418.0,1580.4348,725.0,1260.0,40674.64564207449,16047.962283999996,320.614267537054,1597.0499,895.0277777777778,1965.1302079999991,45592.90807534465,4374.0,1483.1360000000002,711.0,1241.0,37482.857404929906,16026.26802,314.51435182226203,1500.6261,959.2777777777779,1839.6211759999994,44817.423464809515,4310.0,1480.4749000000002,692.0,1147.0,37114.240970593855,15673.632579000001,317.39495182747004,1497.9763999999998,895.0000000000001,1833.6841959999992,45277.518019171715,553.421052631579,10.411835526315787,1.7956278901898706,48.039473684210535,311.4210526315791,116.83053325543875,2626.777746355262,17.16915332884677,9.627394736842101,174.30519005847947,6.573771105263157,3679.5605587981795,14.977839335180086,-0.6021887119113504,-1.2554431653048803,17.537396121883674,86.05678670360106,-19.39438266177673,74.33974798130134,-0.30774114465935554,-0.4148918282548431,-12.888504155124654,-0.478522795013851,43.78486930618016,60.14473684210537,4.168372039473689,0.5455396485301689,3.088815789473677,57.723684210526336,-23.95630291405297,261.92644374671016,-2.391220442962831,3.6014197368421126,29.428636695906427,2.647973934210525,-414.61148627118257,-1.1772853185595498,-0.6284557479224235,0.12210837368796365,1.3518005540166125,7.954293628808884,38.89698029546424,0.45886496883612793,1.7639452080543696,-0.5790188365650882,-25.173091720529396,-0.47292630747922737,311.95737159948146,74.29085872576178,-0.562953254847629,-0.9774842219001229,-17.56648199445983,7.31717451523547,-42.241237482828495,349.4902684148194,-2.8556262913582406,-0.0522779778393274,3.438846568174824,-0.7752551772853234,-15.19869347315508,-131.3912742382271,2.554832981301965,1.195231334766435,-1.2615997229916927,-6.707063711911346,-19.076563357338273,-650.4590979991347,-5.3561525718353495,1.7465761080332574,35.66811422745461,2.017780069944591,-1438.3967015638805,33.93836565096953,-3.1461699619113497,-0.843896534140216,-1.4066828254847636,15.517313019390583,7.869882411649902,181.84351708985457,2.0727449039073833,-2.470774722991687,-57.99806190366265,-2.397663623961221,654.7277383727721,73.84279778393353,1.873962517313027,0.4940159249750203,-2.095740997229919,3.1849030470914226,-15.729524714799672,341.0677763225414,-0.3865262771201374,1.806634695290862,57.37174419052016,1.2381253455678647,115.88402276871678,-142.33033240997233,-3.925082600415498,0.1456771660354286,-9.88417590027701,-124.38296398891964,0.5081866275630693,-656.1172712338991,0.7799265307974221,-3.6777470221606556,-47.42066308864265,-2.3117942042936317,-209.50970642942002,0.7130410380433665,0.5463157333177382,0.441852546957935,0.2903727709379984,0.28520720243921455,0.1526487490652844,0.17406349308238292,0.07703001178868617,0.11293272695345831,0.04125283884954653,0.07153278481450778,0.021350108673102275,0.04210033812029171,0.010673830708435564,0.027546474475234305,0.005663128155879343,8.030944827642296,5.6933019508287925,3.5571351647965774,2.1921945888213177,0.4695515038655125,-0.39920081265175944,3.248990603374285,0.9723562924048004,6.027067368423631,0.9889303866126777,14.548341202675461,10.954436059416182,16.016749995253296,11.705090518763223,2.002246393987537,0.7413105564489378,3.5033109615641918,2.241888089177108,7.012651490354229,1.271650298844575,3.7161051822255837,2.437788457009567,20.905317377976854,14.700260580650646,0.24156868713701096,0.513427317602145,0.6646423755757644,0.7998386137479447,0.8798615315285013,0.9037852924352864,1.3969144050335476,1744.4669315554036,0.0,4.0,3.0,0.0,23.0,2.0,1.0,0.0,0.0,4.653595232937742,2.859351966471499,1.8613457634193376,0.9690623748913749,0.44091809216219513,0.2830233553200898,139.12665976933113,3905.554934775366,101.05650854715037,51.38888072072851,103.41076254345063,,17.0,1247.0,42.30855622340497,29.079213315199816,17.292678595528518,22.74954509873425,0.0,34.06528773554739,71.62994748392819,32.046575604766076,10.633577208012662,0.0,21.0,61.75,32.5,1.0,29.25,0.0,0.03333333333333333,3.25,0.18195192706174973,0.07768421052631624,-0.10426771653543349,0.0341666666666669,0.16281889763779533,0.0,0.6236842105263147,0.8466666666666669,0.441732283464565,0.5459999999999985,0.8125,42.28711319384715,0.7634387614342799,1.1934387614342798,64.82536283730089,12.6944211287632,8.956353672175617,107.11247603114803,21.650774800938816,0.5511811023622046,0.14285714285714285,0.0,0.3666666666666667,0.14705882352941177,0.4240445643136398,-1.8083094330863376,-0.06235660925784547,-0.02379354517218865,-0.05833256235762379,0.5759554356863603,2.4561230942195476,0.04798588222965934,0.032317409134467734,0.05458051320487884,-5.9030385826685965,0.7267296718972895,0.7179704871543579,1.7127092629093517,0.7610928512736235,0.47714741423018403,1.3140416108622142,0.7316015695266742,1.01884414459283,0.6939523420010335,0.5980590229797086,0.7182404208171754,0.9066774038354799,0.7703281027104136,0.5299681996874398,0.8495107346874701,1.1797159290996593,0.751466718172819,1.2505066872162924,0.7796511333096684,1.0534909168351325,0.5387937851221081,0.49386018543009874,0.4932261806988786,0.9928134927917391,0.9339142839421943,1.0004677020411412,1.1114845552964052,1.2048515594298164,1.0006287153448792,0.9665107926717692,0.9328019309102572,0.8974485746611037,0.9878823872523381,0.8998589802580568,0.9752887907225779,0.8880157027492261,0.909450085312299,1.1055786380876163,1.3682173869617595,1.3431050316593356,1.0359296245116263,1.176265659538276,0.907568640334508,1.0227584778357586,1.0691323914905497,1.1054042396201047,1.147646170590557,0.9336377082850408,1.0489300998573465,1.0848295325179234,0.9451139948981554,1.047749475029672,1.0398569094698886,1.096619451619609,1.048305113360833,1.0586482365285836,1.0801416462342932,1.1829772481524743,1.099488135135486,1.048121279233539,1.0015572517348579,1.1882771662184037,1.217530357245926,1.0325174241407415,1.0391255663504504,0.9866537211247715,0.996822004961901,0.9182811965897882,1.1668256410914848,1.1944597354711466,1.2023003969873327,0.9089294705709157,0.947203083740553,0.9912164817278142,0.9645701810204161,1.0729208552597072,1.0258397189490072,1.047295621724555,0.9469826742258378,0.9795487649922983,0.9814397046222906,0.9835402500364392,0.9944954295586513,0.9560701503119505,1.0704970826471074,1.2190263157794112,0.9827389018050215,1.1089324695568148,1.1612626309150686,1.0113239854450395,1.0656734659653146,0.9520149534949958,1.2069267339139205,1.2506737577090383,1.2283979374468235,0.9693532587337388,8.0,0.3809917355371901,4.888888888888891,4.5,3.4216666666666677,1.9763888888888885,1.8713378684807251,1.0721017573696145,0.9010456034265557,0.7121990740740742,10237.274472675406,11229.906328511172,4298.540864249214,3973.2164096718407,16.40547380778375,0.4280393025285274,9.38328624144997,0.7483718801323346,0.0,0.14705882352941177,1.594332280505843,3.388575546972086,4.386581750024248,5.27886513855221,5.80700942128139,5.964904158123495,0.16326530612244897,0.005013049151805133,0.07085346215781002,0.05555555555555555,0.038445692883895134,0.021482487922705316,0.021265203050917336,0.012182974515563803,0.010356846016397194,0.008792581161408325,0.40721315853850676,36.28488129945856,17.088006721277043,8.97398543184183,259.2273453583669,0.0,4.729240063855119,321.03076624057337,,261.43963565309883,253.86266018553752,247.88990690283285,261.50589835543684,384.28961335079197,258.24182458113245,261.8942263404175,345.24795455226126,0.02571088920589639,-0.05494509348230285,-0.6642083326704858,0.346809093399069,0.2625190130133511,-0.15770418070765915,0.02688570080975736,-0.017027868633171836,-0.04094017619676264,-0.07024506237169718,-0.06915310070641108,0.01130450910541805,0.0621017593913458,0.22877108207087593,0.17360887727371854,0.036741401572954475,0.1059175740602139,-0.11717241691396747,0.056979412809943175,-0.07958526873874835,0.2137602322945141,0.0964765525374795,0.23017655135490783,-0.06438835440045097,-0.000878661952903714,-0.024931199441138877,0.028088262422523085,0.011622783513748396,0.01054992615235396,0.13751665414345043,7.215349035262703e-05,0.04243575965812101,-0.02484160676597055,-0.05965158788065328,-0.029714926771012035,0.03501830063007691,0.05001072231079783,-0.02014319978916727,-0.20280415031452848,-0.13622912873722479,0.008753442225293036,-0.13469879125555767,0.04956729096745346,-0.06196349667542701,-0.0020229885574952924,0.007349975735808577,-0.04393529248566528,-0.0015388409192519067,-0.08019400855920111,0.08288315780982296,0.2248364409984096,-0.008870629051401463,-0.007274707528214358,-0.05515372564798884,-0.08364264124071441,-0.10537440481200445,0.06127873766654609,0.06911955035436111,0.10367888646510597,-0.1320425180271593,0.018568427194692462,-0.09149445026693916,-0.14230256610983968,-0.008866205951324794,0.015087192214747563,0.02039631709564004,0.02096111424651262,0.03655416330837805,-0.07770773341533177,-0.10074953102776389,-0.11043673210784664,0.05387715524059732,0.043151728533705656,0.058207551480796996,0.08897547938813377,-0.014108638262906705,0.0033074552587388033,-0.043541658889733124,0.041991664642354376,-0.00728074590628153,0.060688624932805794,0.10644700940959312,0.06091100510855254,0.010185288565856635,-0.08388792630189042,-0.12296433708720314,0.026462618335609023,-0.0671119559224764,-0.130277856557921,0.0014188109942082682,-0.08147339484098326,0.014817075238505114,-0.12460364444775716,-0.08873909085778568,-0.11470761862465592,-0.018572307454145058,25.910276534957735,42.2106610549787,16.765705434073485,15.011975597173983,30.75053898793028,40.58589492628426,46.786626526696615,48.76675912158236,49.21546964789815,91.70997997897298,70.30566637479744,10.812503380188126,10.591810223987425,0.0,21.40431360417555,16943.607836859446,11497.017697607263,7346.535138125693,315.0,69.0,93.0,126.0,160.0,180.0,220.0,246.0,276.0,605.2274337120008,49.0,5.4680601411351315,6.329720905522696,7.223295679562314,8.106212902619962,9.007856923358275,9.901034546375062,10.80732101380793,11.707052067213946,12.616740860636519,0.6973684210526315,0.9976315789473681,1.1203552268168981,0.6634828161904219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6914795382918374,0.9842105263157896,1.0139628933951779,0.664170308097743,18.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,20.640014333703846,6.544756405912575,6.041840829147961,5.907179729351506,11.814359458703011,24.18343101391642,9.589074368143644,0.0,0.0,54.59730361615449,68.44477801553573,23.103999653198645,16.93822404106412,388.35866908793344,-1656.1293407198057,-57.10892632101173,-21.791175535786916,-53.42352711999373,527.4853288572646,2249.4255940555604,43.947582226138636,29.59770518494159,49.9872354234569,0.47058823529411764,0.7912488753315963,0.1120051314958788,239.52826634281266,0.07861696531637724,122.59882107355412,0.20875112466840384,9.0,0.16326530612244897,0.2551777812843281,0.5423519302490196,0.7020858901748934,0.8448985887230196,0.9294297042957881,0.9547012421781284,5.028000000000004,,2.2142857142857144,2.642624476500698,2.1650530425580463,2.2080943670031,-9.084674676944003,2.358246634026928,2.1922837668740542,-3.990590009565298,170.79069999999965,29.079213315199816,0.0,5.316788604006331,0.0,25.93115605767717,26.56127420247034,114.75805872400603,0.0,0.0,4.59511985013459,0.0,5.926926025970411,0.0,7.45298232946546,2.70805020110221,9.06773940337716,5.53338948872752,10.73070660463555,53.0,29.986365524644686,0.0,0.0,0.0,0.0,0.0,1.8433450735390997,0.0,75.81999999999998,0.0,66.99401230526712,0.0,0.0,0.0,0.0,0.0,-4.051690209890598,85.14699723808425,25.333306400564094,33.231468557489634,0.0,53.45692444739364,14.383611552215466,0.0,24.205463075150064,109.19460723230902,0.0,0.0,0.0,50.42469403047207,52.55244491017964,57.743449694320766,642.0615324811467,,522.7808586077849,507.6078703943417,495.68358922599646,522.9136591834513,772.2130965723616,516.3788382007526,523.6910178467517,692.0921451083484,57.743449694320766,642.0615324811467,,520.664985591912,505.0826958945743,493.65555291447754,520.8037023438703,777.663901378528,514.1254025282382,521.596168913961,694.4864991140876,4.943964945562848,439.5382199847125,,364.15289347422953,353.0795069543059,343.9562207986447,364.2485614416612,541.7649071740959,359.4613113378259,364.8191261838979,486.03887293919496,1.283187770984906,14.268034055136594,,11.617352413506332,11.280174897652039,11.01519087168881,11.620303537410027,17.16029103494137,11.475085293350059,11.63757817437226,15.379825446852188,2.5226492750102403,321.03076624057337,,261.43963565309883,253.86266018553752,247.88990690283285,261.50589835543684,384.28961335079197,258.24182458113245,261.8942263404175,345.24795455226126,74.80000000000001,0.0,3.7178680202440124,0.0,0.0,0.0,9.315822109602284,77.06117989803352,-0.4173744850327641,4.974313236528522,0.0,0.0,-1.9877533025333514,4.125091727630993,0.0,0.0,0.0,50.47694341542847,724.6605333533306,121.16925331844408,257.53174156987853,333.38021300184283,401.193750529968,441.3327160173856,453.3327160173857,1779.0,175.1672950402318,191.1834645918674,91.01491390341289,139.36,139.36,0.8888888888888888,8.897272113133987,6.614709844115208,4.881955262113649,6.592512304474316,,6.598492446227733,6.597293850539746,6.595946872758687,6.598501775089355,6.607776097431475,6.597987926984939,6.598562258283155,6.606660075406186,0.10848789471363664,0.1465002734327626,,0.14663316547172742,0.14660653001199436,0.14657659717241528,0.14663337277976346,0.14683946883181054,0.14662195393299865,0.14663471685073678,0.14681466834235968,3.089623204861066,3.3900119024550763,,3.3909186024792413,3.3907369390808912,3.390532746977679,3.3909200162650572,3.392324548860278,3.390842139781799,3.390929182424083,3.3921556393414236,447.6400000000017,1264.9031728646678,356.14686339049933,,353.3045441722349,353.5375387180394,354.0689478920717,353.30351283121826,352.256999970107,353.4147886624977,353.2897425583329,352.0044965445371,28.108959396992617,7.914374742011097,,7.851212092716331,7.8563897492897645,7.868198842046038,7.8511891740270725,7.827933332669045,7.853661970277726,7.8508831679629525,7.822322145434158,8.646828251818329,7.379420580171821,,7.371407813136877,7.372067068039445,7.3735690590019125,7.3714048940051,7.368438419522574,7.371719802595875,7.371365917485632,7.367721346567034,0.0,71.11910403289811,14.290135346130805,1.8433450735390997,-3.137408364691546,27.084330376912284,0.0,3.300493535211248,0.0,554.1430244061131,355.6759561341691,-1516.7561165191717,-52.30286740019312,-19.95731732262068,-48.92761666190876,483.09427243807465,2060.1229291400964,40.24912940601213,27.106880646580215,45.78050953644659,6946.0,81.0,3.0466216625227167,1.2413469073570755,0.0,0.0,0.9237806315999643,0.25233685276348733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3707908118985982,0.11970558546551396,0.34249760589736283,0.08852862142010812,32.086846711951495,24.58420799929822,21.650774800938816,14.22826577596192,19.679296968305803,10.532763685504623,16.18790485666161,7.163791096347813,14.229523596135747,5.197857695042863,11.445245570321246,3.416017387696364,7.578060861652507,1.9212895275184017,6.060224384551547,1.2458881942934554,7.239433412566238,2.4724645673558046,12.637554614985598,3.6032646323975936,20.504212856899564,4.6877685449605675,145.18740097870068,96.54811451179361,59.187405285901676,36.43401591981429,29.62675105548733,28.27877585351979,236.0,280.0,87.76258299999999,41.70941700000003,0.4605263157894737,421.11,15.027777777777779,9.91666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,24.0,24.0,76.0,0.0,0.0,80.0,24.0,5.0,17.0,63.0,29.0,49.0,51.0,0.0,0.0,0.0,34.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,5.0,3.0,1.0,45.0,11.0,0.0,5.0,6.0,0.0,5.0,8.0,0.0,0.0,0.0,0.0,4.0,4.204692619390966,7.564789412588215,4.7535901911063645,5.2652775124698366,5.8148765221617875,6.3080984415095305,6.408837639571759,6.797626468610269,7.056821626900031,7.260193134124739 +4893,COc1cc2nc(N3CCN(C(=O)c4ccco4)CC3)nc(N)c2cc1OC,0,24.612244897959183,6.459479591836734,3.489795918367347,9.061224489795919,165.10956970365777,97.28995697959185,1.447934428608755,6.504691836734693,4.244331065759638,7.934134530612243,220.03497429087028,26.807692307692307,6.633326923076923,4.115384615384615,8.615384615384615,150.51119584543656,102.48986782692307,1.701199355576923,6.753355769230769,3.418803418803419,8.010280076923076,259.8051632801104,22.95505617977528,6.636984269662922,3.808988764044944,7.280898876404494,161.2682618882055,86.53033959550562,1.460505147700438,6.704865168539326,3.270287141073658,8.081386876404494,220.4804227468776,21.49056603773585,6.535744339622641,3.5754716981132075,6.245283018867925,159.82227442358482,79.92561206603774,1.4282055738914152,6.609272641509433,3.3304507337526204,7.989254301886793,209.7192044873138,19.296610169491526,6.493455932203389,3.093220338983051,4.805084745762712,161.35468337500248,70.05267101694915,1.3151952364884831,6.560188983050848,3.4157250470809792,7.971500610169492,189.74023399616829,16.448,6.4562224,2.832,3.8,166.43754853420026,58.01534584,1.212520285827464,6.4968128,3.112444444444445,7.9843504,169.7449655592767,15.478260869565217,6.177973913043478,2.782608695652174,3.4782608695652173,160.34591074855297,53.97662431304347,1.2707108421233737,6.25170347826087,2.7458937198067632,7.701924869565216,169.6344495987785,12.6890756302521,5.9761420168067225,2.436974789915966,3.0504201680672267,167.92383060326318,43.68007268907563,1.0697726358993025,6.025642016806723,2.6069094304388423,7.557890084033613,137.98207833898522,14.043478260869565,6.120608695652175,2.619565217391304,3.717391304347826,170.47281670911164,49.8700872173913,1.0513956248855434,6.15639347826087,2.6159420289855073,7.709452869565217,143.57988928340052,7.617659308621406,0.1532311536859641,0.03319705156205515,0.6205747605164514,4.5564348188254895,1.553813725971682,36.064761451062054,0.2135384689809296,0.14091336942940436,1.1758757924938683,0.09504878967097039,46.80347900820189,0.5165636113157986,-0.008201522602761668,-0.01595278435938859,0.3068192740204401,1.6099702047223916,-0.5486065616967426,2.4151070917165898,-0.03698939398850453,-0.0030873097747733747,-0.08161885895122051,-0.009017133470028525,-2.1471619005985554,0.7632166372625642,-0.00847813832251543,-0.0022520972697615154,0.03592604205176676,0.4103159264164274,0.3436479605665685,3.7912380472181515,0.043744819618466865,-0.0060687695669875644,0.04049277740600175,-0.008396284282298116,9.285010214408137,0.06081585502895836,0.005608199413766283,0.003741382165152736,-0.12307764846408342,-0.2626342797419316,-0.10609148806123238,0.24674360996990216,-0.0038869449459501995,0.005186457293737654,0.09719035220300412,0.005406112908929447,-0.6283164007158825,-1.1252691322118606,-0.019032571880360574,-0.000909567463797049,-0.1096788767392118,-1.0865282121150086,-0.34527770040294853,-5.3877227537254955,-0.05024486993485143,-0.017242753725495736,-0.19603413831807373,-0.012335043562357498,-9.629113601165084,-1.548761349437734,-0.026894141441066204,-0.0016208578287482311,-0.08506455643481882,-1.3735776759683465,0.25850461179811657,-7.206978850898792,0.01575692020464197,-0.02774412861307787,-0.26769438659817674,-0.013784352119950022,-2.30386821934374,-1.653861615631168,0.0021264328269018366,0.0010054855068314333,-0.09262444995744527,-0.5252014559151078,-0.3337734015362453,-8.020068121514585,-0.05770345881237735,-0.0021705832714629487,-0.04750154424384361,0.004351373594335702,-14.549002402789693,0.5147365068476366,0.01832974495920816,0.0010748995770140954,0.05375211309013404,0.5279417889604823,-0.07359848063885371,2.3278802814023583,-0.012681423187064077,0.01697315089301028,0.10132556423930127,0.01076714996202564,-0.7938469713766099,1.4639733444398164,0.0033928480886587014,-0.0017715773339471064,0.020507759448056086,0.4475580826829402,0.2176685516847173,7.036072190464119,0.03945389717902068,0.006715956213896375,0.04849076572362171,-0.00041556163192872045,11.200963516704059,,,0.45833333333333337,1.3214285714285714,0.6071428571428571,0.05357142857142857,0.7142857142857143,-0.10714285714285714,0.7767405077513343,0.011190243364247898,0.023475957649962183,1.0345201043670074,0.27384530529865286,0.21190064999328123,1.8112606121183414,0.4857459552919341,2.0544839920205265,1.4107373896636717,0.3724912678444796,0.2712553345123751,0.0,0.6437466023568547,7.819578656163278,1206.0,316.5145,171.0,444.0,8090.36891547923,4767.207892,70.94878700182899,318.7299,207.97222222222223,388.7725919999999,10781.713740252644,1394.0,344.933,214.0,448.0,7826.582183962701,5329.473127,88.46236649,351.17449999999997,177.7777777777778,416.53456399999993,13509.868490565741,2043.0,590.6916000000001,339.0,648.0,14352.87530805029,7701.200224,129.984958145339,596.7330000000001,291.05555555555554,719.243432,19622.757624472106,2278.0,692.7889,379.0,662.0,16941.16108889999,8472.114879,151.38979083249,700.5828999999999,353.02777777777777,846.860956,22230.23567565526,2277.0,766.2277999999999,365.0,567.0,19039.852638250293,8266.21518,155.193037905641,774.1023,403.05555555555554,940.637072,22389.34761154786,2056.0,807.0278,354.0,475.0,20804.693566775033,7251.91823,151.565035728433,812.1016,389.0555555555556,998.0438,21218.120694909587,1780.0,710.467,320.0,400.0,18439.77973608359,6207.311795999999,146.13174684418797,718.9459,315.77777777777777,885.7213599999999,19507.961703859528,1510.0,711.1609,290.0,363.0,19982.93584178832,5197.92865,127.30294367201701,717.0514,310.22222222222223,899.38892,16419.86732233924,1292.0,563.0960000000001,241.0,342.0,15683.499137238272,4588.048024,96.72839748947,566.3882,240.66666666666669,709.2696639999999,13209.349814072848,373.2653061224489,7.5083265306122415,1.6266555265407023,30.408163265306122,223.265306122449,76.13687257261242,1767.1733111020408,10.46338498006555,6.904755102040813,57.61791383219955,4.657390693877549,2293.3704714018927,26.86130778842153,-0.42647917534360674,-0.8295447866882066,15.954602249062885,83.71845064556436,-28.527541208230613,125.58556876926268,-1.9234484874022355,-0.1605401082882155,-4.244180665463467,-0.4688909404414833,-111.65241883112488,67.92628071636821,-0.7545543107038734,-0.2004366570087749,3.1974177426072417,36.51811745106204,30.584668490424598,337.4201862024155,3.893288946043551,-0.5401204914618932,3.6038571891341555,-0.7472693011245324,826.3659090823242,6.446480633069586,0.594469137859226,0.39658650950619,-13.046230737192843,-27.83923365264475,-11.245697734490632,26.15482265680963,-0.41201616427072113,0.5497644731361914,10.302177333518436,0.5730479683465214,-66.60153847588354,-132.78175760099955,-2.245843481882548,-0.10732896072805177,-12.942107455226992,-128.21032902957103,-40.742768647547926,-635.7512849396085,-5.928894652312469,-2.034644939608497,-23.1320283215327,-1.4555351403581847,-1136.2354049374799,-193.59516867971675,-3.3617676801332754,-0.2026072285935289,-10.633069554352353,-171.6972094960433,32.31307647476457,-900.872356362349,1.9696150255802463,-3.4680160766347337,-33.46179832477209,-1.7230440149937527,-287.98352741796754,-190.19408579758434,0.24453977509371122,0.11563083328561484,-10.651811745106206,-60.39816743023739,-38.38394117666821,-922.3078339741774,-6.6358977634233955,-0.24961707621823911,-5.462677588042015,0.5004079633486057,-1673.1352763208147,61.25364431486876,2.181239650145771,0.12791304966467734,6.396501457725951,62.82507288629739,-8.758219196023592,277.0177534868806,-1.5090893592606252,2.0198049562682234,12.057742144476851,1.2812908454810512,-94.46778959381658,134.68554768846312,0.31214202415660053,-0.1629851147231338,1.8867138692211598,41.175343606830495,20.02550675499399,647.318641522699,3.6297585404699024,0.6178679716784665,4.461150446573197,-0.03823167013744228,1030.4886435367735,0.7026070581609974,0.5612277244192583,0.4387382821991664,0.2862569273243141,0.2731653647744612,0.14522131870120683,0.1784000407608691,0.0786953836947009,0.11381148027591766,0.04143869662558886,0.07013171764452557,0.022025254516827,0.045432478004179114,0.01121106751836268,0.02876759342961668,0.005985180170302307,8.024867184247011,5.680050464923628,3.5492476661729713,2.176345290698051,0.45047247763563913,-0.5282092948101792,3.2461331363429653,0.9779362964009639,6.02335816772033,0.9966232906142275,14.561115011951054,10.943757534317267,16.01230328080578,11.693809606804956,2.0014927634806376,0.747524581386834,3.4953312587408645,2.225202649287464,7.0082715023867195,1.3670097203123246,3.7081376541013347,2.420602069109548,20.90078015696138,14.701629393799797,0.28524919387110975,0.6200067343751737,0.731110880925187,0.7794805402391246,0.8140302968919371,0.8209402482224996,1.3106317075066436,997.2266742298812,0.0,3.0,4.0,0.0,8.0,0.0,1.0,0.0,0.0,3.929774063433039,1.9523978956205457,1.2961178572311622,1.0104035715168758,0.8063219388638148,0.7655056123332029,341.74642452087693,2071.1295801289216,82.08793790227077,42.26795061487594,83.42769904631155,,15.0,705.0,0.0,4.794537184071822,5.907179729351506,66.10742369999514,0.0,6.263162995639057,43.38497308725198,4.899909730850478,9.967957041894417,19.62454432181563,12.833333333333334,37.0,17.0,1.5,20.0,0.0,0.041666666666666644,-3.0,0.18838304552590296,0.056266574426381055,-0.1321164710995219,0.038730158730158615,0.19372972972972957,0.0,0.6319727891156465,0.8809523809523807,0.4435897435897435,0.5757062146892654,0.8422222222222221,21.74873421703736,0.31332681419894115,0.6573268141989411,28.966562922276204,7.66766854836228,5.933218199811875,50.71529713931356,13.600886748174155,0.5202702702702704,0.13506493506493505,0.0,0.374025974025974,0.3157894736842105,0.23539509129615302,-0.7549680734428238,-0.06261405821041345,-0.01540751170291477,-0.06291400612023532,0.7646049087038469,2.4522698909758587,0.06450283171620234,0.05004632430562976,0.06627756462096915,-3.8653838704924364,0.7245825798040125,0.8481476138265336,1.5274072030682069,0.5919463087248322,0.46305723526930104,1.5908429114404143,0.7295497990494246,1.250305756362548,0.7970761168616539,0.7258248353508,0.9071838323582616,1.004716631635476,0.8293646064344121,1.102746961777083,1.28152535388825,1.0907774677626123,0.9360557073311012,0.894835244057664,0.8228282982911054,0.7677925338746402,1.0698323442196123,0.6960486113859475,1.1498008975368115,0.7248971665953399,0.901377183118933,0.9108167320747332,0.9849017836216256,1.3774851209319996,1.0445310613638714,1.1776956162251273,0.903129018962587,1.0081987056019723,0.8979275469868947,0.7983628170566126,0.8895209276756801,0.9583647081157599,1.0816135519085173,1.113643628298379,0.9891119181493323,1.1972699351609601,1.2207108108945557,1.2949219704573403,1.082856454781289,1.203722421956859,1.0999052332705817,1.520438938992856,1.1190941860018795,1.143823816741267,1.2082773100054678,1.293312319384194,1.0706451894721287,1.1049664429530202,1.3553023765996344,0.828401057929443,1.2015438253918906,0.8567231362876223,1.3029907458036905,1.4203915858241996,1.2711152602641516,0.9805419616542848,1.1349894216369127,0.7682239841623921,0.7911583079587896,1.0981032973446163,0.959980923614975,1.236190025512251,1.1446359093784488,1.2847420496454751,0.8075553863257178,0.6637428486606772,0.7044592409557768,1.3178223414110166,0.9325828964718749,0.6558204768583449,0.7169789965453226,0.815791551519937,0.7678244972577697,0.9760102621437573,0.9401110522500831,1.0099539452447246,0.6823445262159922,0.6539749491563482,0.5753880446174576,1.0384063106883492,0.86102645779352,0.9546201767833262,1.0789966301252467,1.0037350452290634,0.9359112948096336,0.7569946456940172,0.8581341251462477,0.7348985409785079,0.9442264175287046,0.7500686579908061,0.931678240118774,0.7507447454721987,5.5,0.16222426283032343,3.7777777777777795,1.9027777777777777,2.0311111111111115,1.0836111111111113,0.63437641723356,0.41578089569161,0.2312846434870244,0.18625771604938274,5677.677368090754,6264.17035859827,2838.5864532358573,2625.056189848555,16.758264834025894,0.46477722601408217,8.969404991657996,0.8683808847534408,1.0,0.3157894736842105,1.6849357806821694,3.6623119484946627,4.318591986884046,4.604306272598333,4.808387905251394,4.849204231782005,0.17741935483870963,0.008111213141516171,0.0858585858585859,0.04048463356973995,0.04616161616161616,0.028516081871345033,0.01982426303854875,0.01599157291121577,0.009636860145292685,0.00776073816872428,0.4397649197052944,21.240374609781476,9.427685950413224,4.541789841440473,161.20072132699008,1.0,4.272664812615336,162.70243155850972,,122.73505744787458,119.04238253252511,118.31991833281286,122.77386808698886,192.87212883700298,121.27451798538095,122.94678766282624,167.45384331505062,0.0678113302771587,-0.05352385859842888,-0.48054822969949895,0.4944114610221992,0.353339895935874,-0.35307099720313634,0.06696584129618494,-0.17322121941320057,-0.021909275090608592,-0.06941112273271509,-0.09486847229978479,-0.04587611746174434,0.10019043991620649,-0.05532907713982724,-0.0678402798981011,0.057891561722343624,0.09005196885976618,0.22116419415182295,0.10512305903818767,0.20485685706763013,-0.043067379564917255,0.0344362709603216,-0.08833657231579134,0.19838290680872295,0.00798353569844336,0.0365996031411463,0.11270224279282698,-0.1983284791693049,-0.057640302162740194,-0.068278125162582,0.006841681465291819,-0.018202551345899785,0.03680599871210942,0.08265358707391787,0.05687724091641507,-0.013424566165386459,-0.1477184902373252,-0.12420823979023494,-0.02739904361978645,-0.17673757251734734,-0.2384601679422427,-0.22221305850997558,-0.14939022294758128,-0.23529657290620842,-0.12236421423542865,-0.16671330387907102,-0.12977591408641412,-0.20573499673982928,-0.20331197375615087,-0.17551353490546545,-0.04882535503848486,-0.13707382550335567,-0.30145886654478976,0.16636782612823164,-0.19983436908845978,0.07378960933755298,-0.1968878377220076,-0.22765532576398595,-0.14502396261611747,-0.04922429417992641,-0.2171088977107947,0.013877287847481741,0.030288397900394327,-0.14925590895827254,-0.11526587711628644,-0.21480914729821884,-0.22237962484231005,-0.2702251219078032,-0.015403671633516514,-0.040396736242949156,0.04578042087015328,-0.31085301159429,0.06757147911105389,0.1196215294232765,0.03237936884258498,0.08661666008685359,0.11586729755887731,-0.047366347335378756,0.06454722526201004,-0.05938706616931216,0.12045096190474384,0.08617029526937016,0.11328024269744195,-0.01696128125940158,0.19218151995626026,0.022142025345655833,-0.05336550237407386,0.03304639626495481,0.09822549876798346,0.14008664490886616,0.19509548676792693,0.18476248034982481,0.0476601776048012,0.041237999823756526,-0.004372087570680982,0.23931903683359074,8.096451373689963,15.989444779060337,7.423616560551448,16.320909646250186,35.182485874810794,39.32017997363596,40.95548609608494,41.77307793281964,42.26332283077882,57.52555177657474,39.50064691058281,10.42975549964543,7.5951493663465035,0.0,18.02490486599193,9318.325949680058,8500.392729239504,1027.8392593863618,176.0,44.0,61.0,79.0,99.0,114.0,130.0,145.0,168.0,383.1593541520006,31.0,5.017279836814924,5.8888779583328805,6.776506992372183,7.6624678152002375,8.55468163582723,9.444858981311897,10.339384867764494,11.231742229258277,12.12779213427609,0.6870748299319728,1.0044897959183674,1.1357505482055703,0.6514572526204719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6652896614933398,0.9892757102841139,1.0196055115418345,0.6395552283197017,5.0,2.0,0.0,1.0,0.0,2.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,4.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,29.424363783516586,5.817862777835028,17.25927108544225,5.948339280986494,5.907179729351506,4.794537184071822,4.9839785209472085,4.9839785209472085,0.0,0.0,18.19910120538483,37.63161690657671,25.999458795810387,152.01046570580144,-487.53373660061055,-40.43411481474107,-9.949668093890011,-40.62781138338422,493.75689022667837,1583.595843528311,41.65382308752969,32.31828252098593,42.79988766292732,0.4666666666666667,0.818597735583041,0.15366557696048933,87.97673603682777,0.09016095920361292,62.88327107237445,0.181402264416959,8.0,0.12903225806451613,0.30009311744722744,0.6522709187426918,0.7691567519576054,0.8200434929730371,0.8563911651269169,0.8636606995576929,1.7845999999999997,,1.7142857142857144,2.071195905072126,1.8187846708014441,1.7095632088057127,-6.920086148265698,1.8408047735618116,1.6952941664361783,-3.1926010534492466,103.87890000000003,18.685414028725265,0.0,14.867866772744893,0.0,0.0,51.03219791421803,36.28887868835994,0.0,11.49902366656781,4.143134726391533,0.0,5.476463551931511,2.3978952727983707,7.014814351275545,4.442651256490317,8.645938147306799,6.293419278846481,10.326563344903953,33.666666666666664,8.430597859069803,9.090782470395565,0.0,5.196483885625264,0.0,1.3771061413801315,2.3972876922005932,0.0,49.220000000000006,0.0,12.400532587615228,0.0,0.0,0.0,0.0,0.0,-0.11071748114635738,55.65177686207294,20.107303115612762,11.766202058821523,11.49902366656781,61.173667208301765,0.0,0.0,10.554784602946263,34.945782206538844,0.0,10.902924932081056,0.0,31.921405378403126,32.59919341317365,37.069800808839,325.40486311701943,,245.4173764560967,238.03938802775346,236.6848370829503,245.4951875153223,387.8209905702307,242.50315260011752,245.84002700727973,335.8198583596581,37.069800808839,325.4048631170193,,243.94798870099464,236.26407725197734,235.12587879369195,244.0298476220603,392.6643438222717,240.92531993706461,244.38691772176296,338.1002876835504,4.932767984157129,249.34368185734763,,190.62100957274126,184.6149393605473,182.02897491452546,190.67992354761122,297.82580023056477,188.18160130707832,190.9718545366713,261.09460964940655,1.3239214574585356,11.621602254179265,,8.764906302003453,8.501406715276909,8.453029895819654,8.767685268404367,13.850749663222526,8.660826878575625,8.780000964545705,11.99356636998779,2.4667513166482213,162.70243155850972,,122.73505744787458,119.04238253252511,118.31991833281286,122.77386808698886,192.87212883700298,121.27451798538095,122.94678766282624,167.45384331505062,48.47450980392158,0.0,3.1418682091517587,0.0,0.0,6.167436373284136,0.0,49.96067006554989,2.3005034363250454,0.0,10.67155689828465,0.0,0.0,3.769895261147516,0.0,0.0,0.0,31.33820618766538,528.6236952797757,82.5618532534263,179.45328547623848,211.61100735731827,225.6110073573183,235.61100735731827,237.61100735731827,1075.0,136.0435924511582,117.14366065270418,76.7408799299445,106.95,106.95,0.875,8.917349178968614,5.954196310386875,4.432718431799143,5.206814625366214,,5.208332027451974,5.2074873075503785,5.200262301734576,5.208321040219822,5.190114358895306,5.207712097491947,5.208407263568387,5.203925164863604,0.1583113725642551,0.18595766519165052,,0.1860118581232848,0.18598168955537067,0.18572365363337773,0.1860114657221365,0.18536122710340378,0.18598971776756953,0.1860145451274424,0.18585447017370013,2.5186324545269,2.679587689684634,,2.6798790734062616,2.679716873990876,2.6783284841376176,2.6798769638549342,2.676375148585431,2.679760039739867,2.6798935186399016,2.679032597417413,274.11000000000035,308.15228165498985,176.04625987516863,,175.65551619299123,175.70887939310057,176.6166797451426,175.65751992882988,178.20547230307986,175.71459561101642,175.64879893108827,176.51104416411184,11.005438630535352,6.2873664241131655,,6.27341129260683,6.275317121182163,6.307738562326521,6.273482854601068,6.364481153681424,6.275521271822015,6.273171390396009,6.303965863003994,6.760213498926722,6.200366217882698,,6.1981441998575635,6.1984479483374315,6.203601150183958,6.19815560698245,6.212556640517855,6.198480480130684,6.198105958016432,6.203002864764663,15.868040783909914,25.26121031915831,0.7018824961113925,6.842660018552875,2.2865702110542356,6.932137414550973,1.4984604445188305,2.3005034363250454,3.1418682091517587,324.1073816226904,98.1633965129003,-314.8333720124583,-26.111031413385657,-6.425170857397109,-26.236114334371536,318.85208147512583,1022.6345007409425,26.898679199713328,20.870091851855964,27.63877029029574,2195.0,47.0,1.7309017802800122,0.6920166275776591,0.0,0.0,0.5233831830054567,0.10709742859106358,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.039283710065919304,0.27777777777777773,0.10297518836629299,0.5437950364258503,0.13078762539759417,19.67299762850793,15.714376283739233,13.600886748174158,8.873964747053737,12.019276050076293,6.389738022853101,10.882402486413016,4.800418405376755,8.991106941797495,3.2736570334215203,6.943040046808031,2.180500197165873,5.179302492476419,1.2780616970933456,3.7397871458501686,0.7780734221392999,4.786947589226472,1.5665337699549606,7.51792398193145,2.0194581087141508,11.29304137472137,2.491694681007546,92.62133167766791,45.19930566913361,35.33533113138234,31.166777891049787,28.93196008456958,28.046725020704635,150.0,180.0,54.44065299999998,32.273347,0.4489795918367347,205.09,8.61111111111111,6.25,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,15.0,16.0,49.0,0.0,0.0,52.0,16.0,1.0,8.0,44.0,17.0,31.0,35.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,8.0,1.0,3.0,28.0,9.0,0.0,5.0,4.0,0.0,4.0,4.0,0.0,0.0,0.0,2.0,3.0,3.713572066704308,7.545112020443469,4.327438444389479,4.954946388235667,5.53363649379238,6.047076627100872,6.439649847019481,6.79167781925386,7.145516470119728,7.512207848526752 +656684,COc1cc(N)c(Cl)cc1C(=O)NC1CCN(CCCOc2ccc(F)cc2)CC1OC,0,26.721311475409838,6.331206557377049,3.098360655737705,7.436146529042705,166.00198062410038,107.83020678934052,1.4476055613216556,6.406601639344261,4.513292655807667,7.874667557377046,211.78422820244722,25.476190476190474,6.454555555555555,3.746031746031746,6.5097001763668425,148.90096845521123,96.93199858468579,1.7319022057142865,6.596738095238095,3.1220197269579986,7.881788285714281,255.10893992582328,21.063063063063062,6.40128828828829,3.3603603603603602,4.886886886886887,158.15041941317196,78.5127694384721,1.4501962242976303,6.499406306306307,2.9766340414488566,7.9138790270270265,208.65259252319476,18.917241379310344,6.326759310344826,2.9448275862068964,3.9639846743295024,161.17384483874764,69.06928979670067,1.3246534749171033,6.419652413793103,2.9124237264084005,7.877951737931034,184.60038788307557,15.676829268292684,6.180298170731705,2.5060975609756095,3.1781842818428183,163.68027757472095,55.23023383955121,1.1962055566290732,6.2606310975609745,2.785029609555355,7.779023975609754,159.4427551382681,15.089285714285714,6.04133988095238,2.3988095238095237,2.603835978835979,164.54718896033813,53.99376978450478,1.1245111017205596,6.115154761904762,2.685644473838918,7.665051607142857,148.84609850692178,14.0625,6.0483931250000005,2.41875,2.4319444444444445,164.10191846441163,48.99473811772001,1.1436299159266379,6.120633124999997,2.675681584362139,7.666656325000001,149.4792574820837,14.294871794871796,6.07751282051282,2.423076923076923,2.5505698005698005,166.0689760311485,49.885801690297434,1.1358600279776094,6.155283333333331,2.5046362245436318,7.726801974358975,148.7694758610133,16.093525179856115,6.10864748201439,2.5035971223021583,2.49480415667466,162.35444258047664,56.96534888983021,1.2364201929213954,6.210432374100719,2.531818989253041,7.727608503597121,162.73292333720988,10.45794141359849,0.16778984144047293,0.023524593695290356,0.5697393173877991,4.19745787173898,1.7392339963706123,49.48304789596705,0.24149761667021552,0.15906041386723987,1.6244623411139119,0.10802955657081428,49.78399499705923,0.25946686118683016,-0.0063624669934262785,-0.009616684421258771,0.19164501776702786,1.070780355212059,-0.21854320520635714,1.2226651727928106,-0.017063788346220226,-0.0035895577652361454,-0.07317214720001729,-0.006743138147707387,-0.4031634733248204,0.19572864990763458,-0.017943821650190792,-0.0014870446165662062,-0.04190000266323834,-0.1682410410649533,-0.045626310019061964,1.1018405800656963,0.019169757555120442,-0.014955850287266408,0.04134024777554677,-0.013270436647612448,3.4723790380298274,-0.36353779573529504,-0.014025307805650977,-0.00043091997641050923,-0.07567487419955704,-0.295119241418438,-0.11846214742604616,-1.7651062582011747,-0.013252948371765676,-0.012208113132361411,-0.046531970919306206,-0.008695231754533945,-3.029414589621826,-0.8630793584205662,0.000537437647891672,0.001476035151738305,-0.06544103670007406,-0.023286799427162965,-0.04430700819523051,-4.165079461139607,-0.020610570182202845,-0.0024758376977077868,0.0007912154424324825,-0.00025717222455280697,-5.01761735649053,1.274786923638039,0.01611233459387511,-0.0013031721246984174,-0.022900909893653783,-0.052710567838669675,-0.037770962342179484,5.8962957778414165,-0.004178796524314955,0.019886463572260298,0.07551077864813414,0.0156103069147439,0.9141339404220762,-0.29810534802472477,-0.005953519719161559,0.0006860971819739505,0.007924617038430528,-0.3056571229027111,-0.05728559693306902,-1.3634442289851858,-0.006984810689338383,-0.00610963517871547,-0.05890994162712808,-0.00468760790278148,-2.5457140331209613,-0.4114933261668013,-0.006517878430805098,-0.0002756582334741566,-0.0022739958241167592,-0.22875409019366735,0.0710112347056501,-1.85013378773002,0.018794030187518913,-0.00787453744857674,-0.11669534632084247,-0.005052295116421681,2.8593862642691352,-0.8628240648545394,-0.006917474416059751,0.0009449684002533108,-0.058594135172915146,-0.554442957622913,-0.09819618037689082,-4.21188779146785,-0.0257330667460825,-0.007199651984942558,-0.11330906534913138,-0.002308169732743758,-5.865873500368332,,,0.4697916666666667,1.1484375,0.5,0.078125,0.6484375,-0.1484375,0.9528386881926053,0.0158998862987072,0.0239623862987072,0.9451503732008536,0.23488442807577875,0.2465348594496733,1.897989061393459,0.48141928752545204,2.0155052978640198,1.478583117916908,0.18863295996653,0.23825834770753343,0.11003087227304797,0.5369221799471113,7.625951841114767,1630.0,386.2036,189.0,453.60493827160496,10126.120818070123,6577.642614149772,88.30393924062099,390.80269999999996,275.31085200426764,480.3547209999998,12918.83792034928,1605.0,406.637,236.0,410.1111111111111,9380.761012678307,6106.715910835204,109.10983896000005,415.5945,196.6872427983539,496.5526619999997,16071.863215326866,2338.0,710.5430000000002,373.0,542.4444444444445,17554.696554862086,8714.917407670404,160.97178089703695,721.4341000000001,330.4063786008231,878.440572,23160.43777007462,2743.0,917.3800999999999,427.0,574.7777777777778,23370.20750161841,10015.047020521597,192.07475386297997,930.8495999999999,422.30144032921805,1142.3030019999999,26767.056243045958,2571.0,1013.5688999999996,411.0,521.2222222222222,26843.565522254237,9057.758349686399,196.177711287168,1026.7434999999998,456.7448559670782,1275.7599319999997,26148.611842675968,2535.0,1014.9450999999999,403.0,437.44444444444446,27643.92774533681,9070.953323796803,188.917865089054,1027.346,451.1882716049382,1287.72867,25006.14454916286,2250.0,967.7429000000001,387.0,389.1111111111111,26256.30695430586,7839.158098835202,182.98078654826207,979.3012999999995,428.1090534979423,1226.6650120000002,23916.681197133395,2230.0,948.0919999999999,378.0,397.8888888888889,25906.760260859166,7782.185063686399,177.19416436450706,960.2241999999998,390.72325102880654,1205.381108,23208.038234318075,2237.0,849.1020000000002,348.0,346.77777777777777,22567.267518686254,7918.1834956863995,171.86240681607396,863.2501,351.92283950617275,1074.1375819999998,22619.876343872173,637.934426229508,10.235180327868848,1.4350002154127117,34.754098360655746,256.04493017607774,106.09327377860735,3018.46592165399,14.731354616883147,9.702685245901632,99.09220280794862,6.589802950819672,3036.823694820613,16.3464122547703,-0.40083542058585553,-0.6058511185393026,12.073636119322755,67.45916237835971,-13.7682219280005,77.02790588594706,-1.0750186658118743,-0.22614213920987716,-4.609845273601089,-0.4248177033055654,-25.399298819463684,21.72588013974744,-1.9917642031711777,-0.16506195243884889,-4.650900295619455,-18.674755558209817,-5.064520412115878,122.30430438729228,2.127843088618369,-1.6600993818865712,4.588767503085691,-1.4730184678849818,385.4340732213108,-52.71298038161778,-2.0336696318193916,-0.062483396579523835,-10.972856758935771,-42.79229000567351,-17.177011376776694,-255.94040743917034,-1.9216775139060231,-1.7701764041924046,-6.7471357832994,-1.260808604407422,-439.26511549516476,-141.54501478097285,0.08813977425423421,0.242069764885082,-10.732330018812146,-3.8190351060547263,-7.266349344017803,-683.0730316268955,-3.3801335098812664,-0.40603738242407705,0.12975933255892713,-0.04217624482666034,-822.889246464447,214.16420317119054,2.7068722117710187,-0.21893291694933412,-3.8473528621338358,-8.855375396896505,-6.345521673486154,990.577690677358,-0.7020378160849126,3.3409258801397304,12.685810812886537,2.622531561676975,153.5745019909088,-47.69685568395596,-0.9525631550658495,0.10977554911583208,1.2679387261488846,-48.905139664433776,-9.165695509291043,-218.15107663762973,-1.1175697102941413,-0.9775416285944752,-9.425590660340493,-0.7500172644450368,-407.3142452993538,-64.192958882021,-1.0167890352055953,-0.04300268442196843,-0.35474334856221446,-35.68563807021211,11.077752614081415,-288.6208708858831,2.9318687092529507,-1.2284278419779713,-18.204474026051425,-0.7881580381617823,446.0642572259851,-119.93254501478098,-0.9615289438323054,0.1313506076352102,-8.144584789035205,-77.0675711095849,-13.649269072387824,-585.4524030140312,-3.5768962777054676,-1.0007516259070155,-15.749960083529261,-0.32083559285138236,-815.3564165511982,0.7214753497150318,0.59471430497557,0.4531005059063079,0.31944431125172573,0.2932387224522356,0.17566374004142335,0.19324496473769642,0.10093623039717946,0.12196591838107224,0.05602579894653195,0.08206825425837892,0.032193383532849215,0.054242740317093155,0.018674001933477062,0.03455842529130678,0.011235221625566694,17.001103857786383,5.6921971123709305,4.107725227000216,2.1877940464130656,0.4279951130584614,-0.5280375792558543,3.2150943550045654,0.977836545698814,7.004061580404815,0.7739960559722162,17.424773389658515,10.95290439250473,35.450517759313044,11.70449289485232,2.207964562406943,0.5458523913499256,3.9886788061591645,2.2382494153928905,8.001920446782695,1.192195460271244,4.009963473150659,2.4343672058348114,22.455868123466214,13.304118349340904,0.27841813475071897,0.6066205488099973,0.8057146826641608,0.8940291065545306,0.9047275471895148,0.9047275471895148,1.38747708206162,912.8596657522188,0.0,1.0,4.0,0.0,11.0,4.0,1.0,0.0,0.0,4.224233792625809,2.2125883100119355,0.9922840166062432,0.4509799181037204,0.38540614761191794,0.38540614761191794,284.57294682898123,2273.655668811459,69.33666518189327,37.27304375100751,78.56327579139332,,19.0,984.0,0.0,9.184952231746642,23.870207787293666,40.92413311711518,25.93115605767717,25.30889874666236,25.308898746662365,0.0,10.216698334856808,31.54519622879485,15.033333333333335,36.75,16.0,2.5,20.75,0.0,0.03020833333333328,-4.75,0.17015918270372993,0.050842128901864236,-0.11931705380186569,0.05053571428571413,0.18589695550351248,0.0,0.6092896174863378,0.8895833333333328,0.4391304347826079,0.5584474885844736,0.8390476190476187,30.49083802216337,0.5087963615586304,0.7667963615586304,30.244811942427315,7.51630169842492,7.889115502389545,60.735649964590685,15.405417200814465,0.5281030444964875,0.1818181818181818,0.0,0.3259423503325942,0.43478260869565216,0.3061614817620475,-0.9483130149845014,-0.04716663441359144,-0.015546114999745923,-0.059269563436531336,0.6938385182379525,2.149114556657389,0.04729151129690917,0.03523138617471129,0.04775810125905308,-5.8755965853080845,0.6882331490441684,0.755052181841174,1.4452953527665566,0.8632075471698112,0.5679485271428473,1.2965992665043817,0.6922598589221188,1.1459933830683464,0.721650986659592,0.6402979494877138,0.7792166661183068,1.035090799317341,0.8024208615255543,1.0528128850245113,1.2557106057850367,1.3064762876083629,1.0622301528288163,1.0591812372055538,0.7989792850539784,0.9067369432452982,1.0150213248020552,0.6461905808073297,1.0729951319116426,0.903018435800726,0.951562508307444,1.0704135648922344,1.1500768554688288,1.2501626545217954,1.066513408508003,1.1027231325927638,0.9521119279263756,1.039246645992518,1.0490142588839553,0.8992007922388734,1.0681573957754156,1.0318697119098375,1.0408975639841205,0.9281080893778959,0.9945553058200582,1.0632190520018405,0.9598974456022014,0.937315360643836,1.0403026859097688,1.0506906543662897,0.9499947454127119,0.8779047435508068,0.9460155089929513,1.0747361169201182,0.751028825468616,0.7469841871105353,0.9814688699825259,0.9916610512129378,0.9533245402518069,0.8227055173212454,0.7528908644488946,0.9476876920252961,0.7256054638632355,0.8132865870918906,0.7008601881092377,0.9603517530902665,0.9020323662435117,0.8818719808407517,0.9195610305286667,0.944133254716981,0.9992820827780491,0.8468664672719344,0.9000262900230948,0.9636200075424157,0.8907476158366167,0.9493326066531472,0.8933192473938495,1.0280638670449556,1.0840275004843032,0.9939906040757974,0.9799928744444681,0.9738751814223511,1.0521379459039821,0.8090164544063535,1.07801286234453,0.8915651556820197,1.0202092492849255,0.9361193234176922,1.0318628254979767,0.9230715304560076,1.122214527293723,0.9049005339619034,0.854967258117896,1.0867720917605537,1.0579365753364878,0.9879301200569834,1.1217854401612979,1.1210688775825748,0.9316177960552131,0.8028336401193877,0.9143506117983029,1.1196094227332034,7.0,0.15671870217324763,3.7777777777777795,1.8125,2.1600000000000006,1.0208333333333333,0.6081632653061224,0.47916666666666663,0.3978332073570168,0.28937500000000005,6759.735394485117,7658.783256964574,3123.954261308913,2829.8625326673605,17.56871099833437,0.47520104934358975,9.220041096311611,0.9054916149302811,1.0,0.43478260869565216,1.7065035449370771,3.7181490275509512,4.9384533209566435,5.479757419459166,5.545331189950969,5.545331189950969,0.20588235294117646,0.006268748086929905,0.08212560386473433,0.036989795918367346,0.0502325581395349,0.02489837398373984,0.01643684500827358,0.01295045045045045,0.011050922426583797,0.009645833333333333,0.45648148415312395,26.602076124567475,13.185255198487713,7.758620689655173,192.11757539959092,1.0,4.37203588953637,231.11326538243677,,192.08536282550125,189.05947283590714,190.88094829773783,192.01918656812674,290.7723861825852,191.5037646338503,193.26701171218534,248.65996856201917,0.024810510111430217,-0.0379192622080372,-0.408792795566286,0.3363731656184483,0.25510210892681134,-0.12565486050894092,0.024708768452649413,-0.0706582059959714,-0.02256726031300395,-0.04504391720761118,-0.062419381896538687,-0.00809825473726316,0.018715791394004946,-0.10694224093749292,-0.06321234006536375,-0.07354241033486313,-0.04008165089581998,-0.02623356610684574,0.022267031375718838,0.07937866145196079,-0.09402622515335174,0.02544857257029381,-0.12284079532357947,0.06974890300055153,-0.03476188872721985,-0.08358853959956067,-0.018317849906023236,-0.13282368249837342,-0.0703090419097338,-0.06811167886164245,-0.03567092839374257,-0.054878174594425275,-0.07675142315768738,-0.028644536559338594,-0.08048937744953297,-0.06085117495694701,-0.0825286090528583,0.0032030404420063754,0.06274434197916917,-0.11486136677404506,-0.005547833983981213,-0.025475012728413318,-0.08417184547516662,-0.08534481816583821,-0.015565392026291659,0.0004870629637926462,-0.002380572805408383,-0.10078776033917976,0.12189654476170902,0.09602687776298609,-0.05539615865753777,-0.04019541778975741,-0.012557736003394843,-0.021717010144120304,0.11915789403752501,-0.01730367604422962,0.125024593415547,0.046483551349276314,0.14450033315198524,0.01836200450518434,-0.02850516523616183,-0.03548200336832489,0.029165102312109552,0.013909198113207542,-0.07281958086123193,-0.032937256891603484,-0.027553764106279088,-0.02892289698608788,-0.038410783866153465,-0.036264270421149235,-0.04339190173115922,-0.05113518979887689,-0.03934744993232945,-0.03884548894527358,-0.011717874367766173,-0.003991291727140783,-0.05449824564859683,0.04082902867229739,-0.03738924472921986,0.07782283919258581,-0.04950658216663034,-0.07183628907077229,-0.04676771132638926,0.05743585392128616,-0.08250419759787589,-0.04122701563261131,0.040169382412861575,-0.10284376272566849,-0.13209017804703085,-0.056459441674785574,-0.08511779226540178,-0.10655619339392106,-0.04526363165980294,-0.06975173414696342,-0.021366094669015262,-0.11782649224343753,13.34706911772034,19.52674570216254,7.410051624349911,19.298280064105718,37.843035132532975,43.9413982792845,44.8477869089357,44.91388526959144,44.91388526959144,64.49616953164863,47.314659773341056,6.03625471892896,7.62426712664107,3.520987912737535,17.181509758307563,12939.629487329677,12574.166775404681,1781.989687401965,100.0,46.0,58.0,70.0,88.0,83.0,81.0,83.0,91.0,465.1830623080008,34.0,5.081404364984463,5.910796644040527,6.767343125265392,7.615298339825815,8.473659189392508,9.328034514792826,10.187951953831922,11.045845557481588,11.907390291219528,0.6721311475409835,0.993049180327869,1.1382026146407598,0.6359613021397054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6576224305487387,0.9801992928318869,1.0148830489654104,0.6184754231830576,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,1.0,1.0,0.0,6.0,1.0,3.0,0.0,2.0,1.0,0.0,0.0,0.0,30.16095467341914,17.316244507613703,0.0,0.0,5.907179729351506,4.794537184071822,4.39041504767482,0.0,0.0,11.600939890232516,43.173478588160066,32.81043382747687,42.1359578028086,224.73674443693358,-696.1057885799951,-34.6224998753961,-11.411570304590082,-43.50661178624969,509.3096912659148,1577.5498802314635,34.714165306497165,25.86147344641743,35.05666400514363,0.47368421052631576,0.8644146553918114,0.16008181834512497,18.06848749261328,0.08229693087387531,35.307248866886475,0.13558534460818872,10.0,0.2647058823529412,0.2877388506364589,0.6269286289247211,0.8326879171799569,0.9239588785617943,0.9350154751971712,0.9350154751971712,3.358100000000002,,2.408963585434174,2.206712076476747,1.8536496059981293,2.4535365920366647,-7.647982225637176,2.0707708096047845,1.9380523528738784,-3.017322832525487,122.03660000000002,23.39554109314679,0.0,10.216698334856808,0.0,24.987450462748285,46.19441374196789,52.801508057253876,0.0,11.49902366656781,4.23410650459726,0.0,5.53338948872752,0.0,7.025538314638521,0.0,8.606851063346772,0.0,10.235270238956767,40.99999999999999,9.058741731350246,0.0,0.0,0.0,0.0,0.0,1.735179287853295,0.0,60.576000000000015,0.0,12.866084627709721,0.0,0.0,0.0,0.0,0.0,-0.2806038550181562,69.43035949308634,20.524181988768614,10.077801322358383,11.49902366656781,63.413642941903944,4.736862953800049,5.817220841045895,23.19963192162084,36.39820241076966,5.022633313741326,0.0,0.0,38.79363943052203,40.11496826347306,41.04152220486512,462.2265307648736,,384.02016542691285,377.9810261670345,381.6460434951008,383.8850270992512,583.9826558408001,382.87810609210027,386.4128951523161,498.26285050920256,41.04152220486512,462.22653076487336,,381.79174744824684,375.9643731758159,379.9869560066518,381.61466504366973,589.1927545908077,380.9754089592958,384.6248261806897,500.3372599565638,4.796830916953507,356.65204325134783,,302.6547286563521,297.16619862896357,299.01306304805865,302.6030836176056,453.27029715290126,301.12288535004245,303.9885154382289,390.32628858413455,1.282547568902035,14.4445790864023,,12.000630169591027,11.811907067719828,11.9264388592219,11.9964070968516,18.249457995025004,11.964940815378133,12.075402973509878,15.57071407841258,2.398415458476754,231.11326538243677,,192.08536282550125,189.05947283590714,190.88094829773783,192.01918656812674,290.7723861825852,191.5037646338503,193.26701171218534,248.65996856201917,59.7921568627451,0.0,3.1263201522404165,6.092331557016383,12.94944560813834,5.804201643463326,0.0,61.90786598689003,4.457755364936401,3.04604895031739,16.59623488633294,0.0,-0.29054134912023644,2.2832458392243744,0.0,0.0,0.0,37.727000814166516,634.5204967596651,104.0967162411617,226.807090680608,301.24565257835525,334.2652025870091,338.26520258700907,338.26520258700907,766.0,142.31772398083461,99.52593894318335,67.63515561026684,86.05,86.05,0.9,7.613679854836557,6.087462841250339,4.384332037807958,5.566242266518211,,5.58120115697543,5.579761308689026,5.577036605026165,5.58144874326895,5.560414248884763,5.580082973187893,5.5802254882247615,5.575403706420152,0.1370103761814987,0.1739450708286941,,0.1744125361554822,0.17436754089653206,0.17428239390706765,0.1744202732271547,0.17376294527764885,0.17437759291212165,0.1743820465070238,0.17423136582562976,2.6411880951344613,2.879870998106272,,2.8825548241402608,2.882296809063367,2.8818083707608895,2.882599183910705,2.878823420487899,2.882354455835281,2.8823799954585576,2.881515538237768,339.6700000000013,1349.4070166491863,205.87404027835728,,203.55994319355477,203.86721215586735,204.36806354840544,203.52710416094712,206.91220582602983,203.84443259036846,203.8326252050957,204.9980719709905,42.16896927028707,6.433563758698665,,6.361248224798587,6.370850379870855,6.38650198588767,6.3602220050295974,6.466006432063432,6.370138518449014,6.3697695376592405,6.406189749093453,8.370571337814438,6.49041533662101,,6.479111332461402,6.480619670904402,6.483073411056914,6.478949995799417,6.49544538665969,6.480507927392456,6.480450002203632,6.486151383880303,29.54568049447128,15.149330466934096,3.348749908778214,6.492604581127433,0.463471536710208,8.920084234408774,1.4176180183309162,2.8882534944267193,3.1263201522404165,418.46934620187756,164.96720622539303,-510.9739729792659,-25.414522628656822,-8.376622507856819,-31.93587331120412,373.8569635426629,1157.994866727361,25.48180931163372,18.983522405366575,25.733219260608024,3560.0,49.0,2.040112969733178,0.9323476547158556,0.0,0.0,0.4142664266089148,0.12031690014170073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20693027063286606,0.1013157387805841,0.4690663018616284,0.16154868059099553,23.087211190881018,19.03085775921824,15.405417200814469,10.861106582558675,13.488981232802837,8.080532041905474,11.208207954786392,5.8543013630364085,8.537614286675057,3.9218059262572367,7.2220063747373455,2.833017750890731,4.502147446318732,1.5499421604785961,2.7992324485958493,0.9100529516709022,4.6921884440857395,1.907588153939155,6.442697578023069,2.300769708433868,9.980887689821731,2.957807073273827,103.27344441956484,48.0582180041209,29.764138373688617,25.90290376237094,25.518544767280726,25.518544767280726,160.0,184.0,66.99199699999998,38.502003000000016,0.39344262295081966,164.09,11.11111111111111,7.277777777777779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,61.0,0.0,1.0,63.0,12.0,1.0,7.0,56.0,13.0,34.0,50.0,0.0,0.0,0.0,23.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,6.0,2.0,1.0,32.0,9.0,0.0,3.0,4.0,0.0,3.0,9.0,0.0,0.0,2.0,0.0,2.0,3.7376696182833684,5.756038846802119,4.248495242049359,4.7140245909001735,5.148946909893768,5.6235661407994,5.584905090418781,5.49870393073963,5.432356442779426,5.615178921735998 +54677972,Cc1cc(NC(=O)C2=C(O)c3ccccc3S(=O)(=O)N2C)no1,0,34.44444444444444,6.830508333333333,3.861111111111111,10.956790123456791,162.4265801727177,136.92161883333335,1.668905215639917,6.875116666666667,7.640263012498094,8.305960916666665,242.83330398183867,36.5,6.736705263157894,4.526315789473684,8.736842105263158,147.74605084814075,142.00965192105267,1.9408907288421056,6.8869,3.5439408706952573,8.192911684210523,285.7497734084587,31.26984126984127,6.775188888888888,4.253968253968254,9.46031746031746,154.8724269127031,121.2951075238095,1.7329353537951429,6.874650793650795,4.697334901038604,8.211245587301587,254.6089192940406,29.32894736842105,6.817288157894736,3.763157894736842,7.793859649122806,154.23353375868578,110.96693001315782,1.6700052703229868,6.918965789473685,4.507756660168942,8.311639526315789,241.2785031079977,26.40909090909091,6.894156818181819,3.147727272727273,6.545454545454546,160.24341969487108,98.70812876136364,1.3642329799897046,6.957277272727271,5.232796717171717,8.422065136363635,204.20735250624924,23.696202531645568,7.217846835443037,2.7974683544303796,7.299578059071729,165.43294729339797,86.28270560759493,1.268089025059468,7.2312,7.00507891858103,8.72249151898734,191.11267302642804,19.25,6.391219444444444,2.7222222222222223,4.671296296296296,163.69431467450886,70.49658808333335,1.2265931830657637,6.446519444444445,3.854295267489711,7.962389166666668,171.70102008398504,22.066666666666666,6.660699999999999,2.75,5.361111111111111,163.69256975047367,81.09485753333333,1.2752173654132,6.711041666666666,4.521270576131688,8.210002933333334,182.5284608339952,19.176470588235293,6.591764705882353,2.6470588235294117,5.111111111111111,164.87256385810767,69.6896970980392,1.2139360308949216,6.628111764705881,4.171750181554104,8.156973372549018,173.25611551887764,11.083333333333336,0.19272862654320988,0.03095722042698333,0.7986111111111112,4.890603566529493,1.6466323344789886,50.15549880555558,0.2910003703162431,0.17277098765432097,3.0665175188191167,0.12810860108024688,45.768049196602774,2.242690058479533,-0.010533304905782996,-0.01689916489704868,0.3125,0.7598187856472455,-0.22035343582031158,9.66221206725147,-0.02240053393033288,-0.003783560753736223,-0.5942153284437723,0.00443167377355425,1.29201088390271,2.3082010582010586,0.039874459876543186,0.001213281308179911,0.03869047619047619,1.0745149911816576,0.17701993812911204,10.782963802910057,0.04754911179600036,0.037107583774250406,0.4858429375694037,0.021205526344797176,7.745845990353375,-1.8757309941520461,-0.006564079759584174,0.0018478023305487817,-0.17434210526315788,-0.08594144827088318,-0.07521901345954358,-8.129914296783628,-0.031110192015403104,-0.007485315139701158,-0.17443742432132636,-0.01275122534925276,-4.173205797582024,-0.7051767676767675,-0.0309943462401796,-0.0019184312114793435,-0.21306818181818182,-1.1865491333083926,-0.36606892118537393,-3.429406856691918,-0.06035125871914551,-0.025008361391694788,-0.4275664945157258,-0.01906682582772167,-6.820766779421211,-3.784458509142054,-0.015129435263322447,0.0005173558780354742,-0.010284810126582278,-0.5910255074577627,0.1395678549933554,-17.29153988150493,-0.0134691664694646,-0.021548554461634728,0.28658841714888805,-0.004794171755352407,-9.269944543434306,1.3935185185185182,-0.005023804012345649,0.00011825368351237847,0.04861111111111111,-0.08359053497942376,-0.10998435117913491,6.382460877314815,0.01695983185497336,-0.0016117283950616767,-0.2992046991693342,-0.005434479166666662,3.9121591303145444,-0.16666666666666657,-0.006851311728395062,0.00016618527774051354,0.008333333333333333,-0.43597393689986286,-0.01826616583440151,-0.9047070305555571,-0.014364640367618066,-0.00568672839506173,-0.2011010188572203,-0.002054505246913581,-2.0867519295647754,0.26960784313725455,-0.007537559005083495,-0.00048060890160382837,-0.15808823529411764,-0.5418986524651013,0.24366323697620768,1.2411054983660124,0.04727155336533207,-0.007396586782861276,0.03061037745446702,-0.0015993690541031202,4.5070041688892895,,,0.46521739130434797,1.358695652173913,0.6956521739130435,0.021739130434782608,0.6630434782608695,0.03260869565217391,0.72096803650129,0.02586127069771285,0.037078662002060676,1.1122107374596484,0.27481045088452577,0.19559843330354817,1.8331787739609384,0.4704088841880739,2.012666855247218,1.255021946870864,0.26731321205488034,0.3931439672778462,0.0,0.7576449083763536,9.3071553198889,1240.0,245.8983,139.0,394.44444444444446,5847.356886217837,4929.178278000001,60.08058776303701,247.5042,275.0494684499314,299.01459299999993,8741.998943346192,1387.0,255.9948,172.0,332.0,5614.349932229348,5396.366773000002,73.75384769600001,261.7022,134.66975308641977,311.3306439999999,10858.49138952143,1970.0,426.83689999999996,268.0,596.0,9756.962895500295,7641.591773999999,109.174927289094,433.10300000000007,295.93209876543204,517.3084719999999,16040.361915524558,2229.0,518.1139,286.0,592.3333333333333,11721.74856566012,8433.486680999995,126.920400544547,525.8414,342.5895061728396,631.6846039999999,18337.166236207824,2324.0,606.6858000000001,277.0,576.0,14101.420933148655,8686.315331,120.05250223909401,612.2403999999999,460.4861111111111,741.1417319999998,17970.247020549934,1872.0,570.2099,221.0,576.6666666666666,13069.20283617844,6816.333743,100.17903297969798,571.2648,553.4012345679014,689.0768299999999,15097.901169087816,1386.0,460.1678,196.0,336.3333333333333,11785.990656564638,5075.754342000001,88.314709180735,464.14940000000007,277.5092592592592,573.2920200000001,12362.473446046923,1324.0,399.64199999999994,165.0,321.66666666666663,9821.55418502842,4865.691451999999,76.51304192479199,402.66249999999997,271.27623456790127,492.60017600000003,10951.707650039712,978.0,336.18,135.0,260.66666666666663,8408.500756763491,3554.1745519999995,61.91073757564101,338.03369999999995,212.7592592592593,416.0056419999999,8836.06189146276,399.0000000000001,6.938230555555555,1.1144599353714,28.75,176.06172839506175,59.27876404124359,1805.5979570000009,10.47601333138475,6.219755555555555,110.39463067748821,4.611909638888887,1647.6497710776998,85.22222222222224,-0.40026558641975385,-0.6421682660878498,11.875,28.873113854595328,-8.37343056117184,367.16405855555587,-0.8512202893526495,-0.14377530864197646,-22.58018248086335,0.1684036033950615,49.09641358830298,145.41666666666669,2.5120909722222207,0.07643672241533439,2.4375,67.69444444444443,11.152256102134059,679.3267195833336,2.9955940431480226,2.3377777777777755,30.608105066872433,1.335948159722222,487.98829739226267,-142.55555555555551,-0.4988700617283972,0.1404329771217074,-13.25,-6.531550068587122,-5.716645022925312,-617.8734865555557,-2.364374593170636,-0.568883950617288,-13.257244248420804,-0.9690931265432098,-317.1636406162338,-62.05555555555554,-2.7275024691358047,-0.16882194661018224,-18.75,-104.41632373113855,-32.214065064312905,-301.7878033888888,-5.310910767284805,-2.2007358024691412,-37.62585151738387,-1.677880672839507,-600.2274765890666,-298.9722222222223,-1.1952253858024733,0.040871114364802466,-0.8125,-46.69101508916326,11.025860544475076,-1366.0316506388895,-1.0640641510877034,-1.7023358024691435,22.640484954762158,-0.37873956867284014,-732.3256189313101,100.33333333333331,-0.3617138888888867,0.00851426521289125,3.5,-6.018518518518511,-7.918873284897713,459.53718316666664,1.221107893558082,-0.11604444444444073,-21.54273834019206,-0.39128249999999964,281.6754573826472,-9.999999999999995,-0.4110787037037037,0.009971116664430813,0.5,-26.15843621399177,-1.0959699500640907,-54.28242183333343,-0.861878422057084,-0.3412037037037038,-12.066061131433218,-0.12327031481481487,-125.20511577388653,13.749999999999982,-0.38441550925925827,-0.024511053981795247,-8.0625,-27.636831275720162,12.426825085786591,63.29638041666663,2.4108492216319357,-0.3772259259259251,1.561129250177818,-0.08156782175925913,229.85721261335377,0.7293763653482344,0.568962181117176,0.4327761734530281,0.3209460798651611,0.27890920768153793,0.18106620504088172,0.17257815447104524,0.10038314995747344,0.1089863131255417,0.053346764582428485,0.06769196905056148,0.029795451972979087,0.04071794663184819,0.01667275841821784,0.02651938327097678,0.008663486518554987,16.013123049844904,5.688103827575376,3.581634916353448,2.1770005519053846,0.4758417785454113,-0.4614624132509519,4.048658757383679,0.971365614869764,6.0336370896487495,0.6449096594032029,14.566275337667394,10.319758991585243,32.066544008019235,11.699594303545716,2.954617589066783,0.7156511167062812,3.537410913387172,2.230298634364161,7.014575596692108,0.2975789889199191,3.7685068552236536,2.42930220612284,24.441831704172998,14.681675949397595,0.3417799061463314,0.7270677351494473,0.8051295207951936,0.8631878257013073,0.8731895660711234,0.8731895660711234,1.7405383287638947,929.3943137789188,0.0,2.0,1.0,0.0,9.0,0.0,1.0,0.0,0.0,3.2714781450344703,1.1313626653666828,0.6977615410767708,0.37527152789797125,0.3197159723424159,0.3197159723424159,55.51823766529,1239.8385855791473,65.84035430951823,34.439960710531864,72.43497737039475,,11.0,417.0,21.689635754415264,18.318861563241466,21.97383705810563,5.760247418874442,4.305215991296234,25.246773188062022,19.056471336613843,0.0,10.473451861131776,4.523094936973348,10.700000000000003,31.25,16.0,0.5,15.25,0.0,0.03478260869565205,0.75,0.261239316239316,0.0875603864734299,-0.17367892976588611,0.050434782608695494,0.21399999999999975,0.0,0.702777777777778,0.9304347826086954,0.44153846153846193,0.615217391304348,0.8799999999999999,16.58226483952967,0.5948092260473956,0.8528092260473956,25.580846961571915,6.320640370344092,4.498763965981608,42.163111801101586,10.8194043363257,0.5000000000000002,0.21806853582554508,0.07788161993769468,0.3644859813084111,0.14285714285714285,0.4468449914092023,-1.0608660691669642,-0.07980368318084018,-0.029468501921304558,-0.08160508224361263,0.5531550085907979,1.3132593872275258,0.046271810066729306,0.036479427422986814,0.057098234227283724,-2.952184280222187,0.7929362880886424,0.7230912325612114,1.535061399469638,0.8009153318077804,0.5748747965559364,1.332975002700591,0.7755743807050791,1.2663270808996832,0.6678042103533148,0.7786941113572565,0.650255927319052,0.8860887401471783,0.6613756613756612,0.5826853868841837,0.8762572932693582,1.1207729468599033,0.6354743706612439,1.0091338276731772,0.6490390975841753,0.8295537328542236,0.561736081089289,0.5753078509275357,0.6191814481380143,0.7442147091258595,1.2777008310249303,0.9381999223431439,1.0064376582904204,1.4096109839816935,0.912737259142527,1.1507542843900136,1.244566528995725,1.292287099007285,0.9275268264242348,0.9762674704766474,1.0219646639360531,1.0203849827316696,1.0760566188197764,1.263948799567671,1.2314738316989124,1.3626482213438735,1.2533805642853046,1.2159346439987655,1.0721224247917964,1.2102121871356328,1.2320693934186246,1.4570574841157629,1.2754605504880103,1.0560920616836078,1.2896957583832995,1.4032943513298732,1.4427621017571268,0.9477160154100166,1.1769662148428173,0.8905082892444219,1.2907197323572273,0.9384921692234115,1.421438498833466,1.479051978817674,1.3964236894652826,1.0339689112394286,0.7711988304093564,0.9516440310790092,0.9943958322514193,0.8285024154589372,1.012223020826029,0.964841973314332,0.7854991096855846,0.8046057310382464,0.9531239393116556,1.0411517517137847,0.9449614921203977,0.9413537271046976,0.9897660818713446,1.0536980490142573,0.8653686282252941,0.8217391304347827,1.091709908141084,0.9742529723949067,0.9956655338131468,0.9812521098204787,1.0532112730403838,1.0376198246119248,1.023320723488927,1.009524885150875,0.8341933264533881,1.1096891851770136,0.8801445251578921,1.0383631713554988,1.1910310719898363,0.7264080402431192,0.8516278437525507,0.6576999876109102,1.1213250399895922,0.8014276615026918,1.0850466296233698,0.8850569652762544,6.0,0.024793388429752067,3.777777777777779,3.2569444444444446,2.177777777777778,1.031388888888889,0.4889795918367347,0.41755243764172334,0.1940192743764172,0.0762577160493827,5376.256388718042,5742.248324889378,2656.129758391071,2517.265247906096,14.135041897086912,0.45882049324082297,7.649595001885797,0.8478157201266613,1.0,0.14285714285714285,1.8984468564078418,4.038562336075629,4.472163460365541,4.794653473544341,4.850209029099896,4.850209029099896,0.24,0.006198347107438017,0.0994152046783626,0.07943766937669376,0.05584045584045584,0.03223090277777778,0.020374149659863942,0.018979656256441966,0.011412898492730424,0.007625771604938271,0.5715150557947026,17.8112,6.718836565096953,3.2544378698224854,131.60933486108948,1.0,4.078070665534398,100.25893851873454,,70.27674593926517,74.96054201769,74.6908329770964,70.28831151828199,102.14412011295765,75.70587987595034,76.07065473550674,94.93614024015008,0.2023479752011608,-0.0546535566340552,-0.5458876689820257,0.391304347826087,0.15536298849641453,-0.1338206660991105,0.1926451196250732,-0.07697768187026435,-0.021899283005236657,-0.1937752922646267,0.03459310097983399,0.02822953799828139,0.2082587420933285,0.20689432904562993,0.03919219139979295,0.0484472049689441,0.21971009847035367,0.10750422812820748,0.21499066024074034,0.16339880167274914,0.21477902209192096,0.15843475036023816,0.16552773323560135,0.16924134033067606,-0.16923888669041012,-0.034058665167276035,0.0596888966471349,-0.21830663615560641,-0.017572769311962368,-0.04568051524589043,-0.1620941769177082,-0.10690774029460606,-0.043325070032462436,-0.056884535389349525,-0.0995344984000366,-0.09118164026732842,-0.06362497151970832,-0.16081859138466204,-0.06197039608269144,-0.26679841897233203,-0.24261813847046299,-0.2223136965795111,-0.06837549099027308,-0.2073923777263895,-0.14474861625339175,-0.13943063813976744,-0.14883329977023374,-0.14902900383893786,-0.341454903080486,-0.07850123531041933,0.01671196156824628,-0.012878370941111722,-0.12084919569082364,0.08475957387142899,-0.34475860659947416,-0.046285736526132444,-0.12472322323438315,0.09345729003343511,-0.03742271568752321,-0.2025418322641199,0.12573099415204672,-0.026066724505086993,0.0038199063701889937,0.06086956521739131,-0.01709206927985412,-0.06679350871239577,0.12725346231842974,0.05828113495712172,-0.009328698162485546,-0.09757149513515732,-0.042420876669026455,0.08547795239227571,-0.015037593984962393,-0.03554900925348002,0.005368223485454171,0.010434782608695651,-0.08914522123273262,-0.01109304454426441,-0.018038042729132328,-0.04936296250072593,-0.0329148340949448,-0.06557960866783573,-0.016037215531115236,-0.045594076352279155,0.024325519681556794,-0.0391097012430251,-0.015524937154400136,-0.19795396419437342,-0.11080404393718779,0.14797671093547743,0.024745153132213267,0.16244499384643382,-0.04281150952068594,0.009982130304689977,-0.012484478330235454,0.09847490220806332,3.400398555779217,9.539823071438404,7.455065665852576,22.017526419032027,42.63639048243367,46.010540252946456,46.94688796400847,47.002887964008465,47.002887964008465,46.291337670686005,28.865504778029873,6.148203877262248,9.042311247390462,0.0,17.425832892656132,4854.0130541817,4244.956329108141,849.8133192986325,84.0,38.0,52.0,69.0,82.0,84.0,91.0,89.0,96.0,335.0575915160004,25.0,4.844187086458591,5.726847747587197,6.650279048587422,7.554334823725748,8.480736654405622,9.394576760974909,10.32249389621096,11.242362684325837,12.171517431988255,0.8055555555555557,1.030555555555556,1.1260715349995607,0.7755252129991951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7028993512974053,1.015250544662309,1.0414036578457557,0.6821339360426985,5.0,1.0,0.0,1.0,0.0,0.0,4.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,14.946410935820385,5.760247418874442,17.274066962547035,0.0,15.930470882759089,9.099753175368056,8.417796984328938,0.0,0.0,17.289397394048667,19.056471336613843,18.677490542835795,4.895483475517775,233.35568077488117,-554.0156621219115,-41.675845483415166,-15.389323947830874,-42.616589393993195,288.87391844017117,685.8229234572358,24.164508826103063,19.05063676270099,29.818387976401553,0.45454545454545453,0.6891948047490326,0.2126515881927434,69.19157289487917,0.12351998025627492,163.93709419676372,0.3108051952509675,6.0,0.08,0.36720974789348215,0.7811645884512727,0.8650344945270757,0.9274125779787371,0.9381584892908077,0.9381584892908077,1.48242,,2.3035714285714284,1.9609845219659925,1.4545191904946573,2.2991871333729694,-6.541878845206732,1.7887851897184828,1.7346190845905674,-2.795367399848947,80.80930000000004,22.841956500214813,0.0,9.46187924842168,0.0,11.819220675208399,12.36446058668352,47.352573565935316,0.0,0.0,3.9318256327243257,0.0,5.313205979041787,2.3978952727983707,6.894670039433482,4.59511985013459,8.57828829077605,6.529418838262226,10.324530690607611,29.000000000000004,7.392595019935839,3.602190885613505,0.0,4.828449239461369,0.0,0.0,0.6174425288366048,0.0,37.10000000000001,0.0,37.35342114932393,0.0,0.0,-3.9241577433442507,0.0,0.0,-1.6144694822373393,40.538575259984185,5.316788604006331,5.817862777835028,0.0,35.94105533962002,14.817828337479405,6.923737199690624,11.323698910571437,45.44745306785501,0.0,5.759164871656176,0.0,27.918907667971023,25.304376646706594,28.796076163015947,200.51787703746908,,141.08045809366632,149.75056364216556,149.25518602458453,141.10472077670175,206.5690581060756,151.2562132136643,151.99047302887516,190.61217895017367,28.796076163015947,200.51787703746905,,139.1775077831074,147.96009951341415,147.9271467636981,139.2053922752197,210.83550083121045,149.6229745621822,150.40669038642298,192.66764788014905,5.095859577669295,147.13888986966137,,107.40676089078491,112.07451254178969,110.9096745442857,107.42600855284658,155.64903540474958,113.3536985602219,114.19536953909578,143.4732624447682,1.252003311435476,8.718168566846481,,6.133932960594188,6.510894071398503,6.489355914112371,6.134987859856598,8.981263395916331,6.576357096246274,6.60828143603805,8.2874860413119,2.5484948873875,100.25893851873454,,70.27674593926517,74.96054201769,74.6908329770964,70.28831151828199,102.14412011295765,75.70587987595034,76.07065473550674,94.93614024015008,36.54901960784313,0.0,2.844532496640632,0.0,0.0,0.0,10.346232914462082,37.490531682447205,0.0,2.3941002928949358,0.0,0.0,0.0,0.7429960317460318,0.0,0.0,0.0,24.556821697537146,359.9179266651835,68.3440868306823,145.38824409872265,160.9978845731595,172.60752504759628,174.60752504759625,174.60752504759625,733.0,124.38733613426454,162.3116725498688,71.56495459377844,121.11999999999999,112.74,0.8333333333333334,8.360590549652384,5.643856189774724,3.9417204487770814,4.726464445615868,,4.717355216810905,4.7290718381521515,4.729162827821954,4.717355650703569,4.719006074929794,4.729385011274239,4.729179695491452,4.7276279665641034,0.17137914994682962,0.20549845415721163,,0.2051024007309089,0.20561181905009354,0.20561577512269363,0.20510241959580733,0.20517417717086062,0.205625435272793,0.20561650849962837,0.20554904202452623,2.2045264130619473,2.386086571440778,,2.384157430064589,2.386638077463096,2.3866573177701973,2.384157522042535,2.3845073230126634,2.386704298227685,2.386660884498608,2.386332712667959,221.07999999999976,255.40004938554745,129.8386359276078,,129.02162434570442,128.51312006246243,128.79122934970988,129.02260701426846,130.38997061617525,128.5222941075089,128.5113188237608,129.46701951331363,11.104349973284672,5.645158083809036,,5.6096358411175835,5.587526959237497,5.5996186673786905,5.6096785658377595,5.669129157225011,5.587925830761257,5.58744864451134,5.6290008484049405,6.375740259899019,5.699201540291489,,5.692889143835195,5.688940123711764,5.691101839175832,5.692896760115233,5.703438857017098,5.689011507221931,5.688926107622792,5.696335296066498,30.546452304885065,12.317146111531033,16.342524092970525,-0.30885516397917145,-0.6269037853063373,7.392595019935839,0.0,1.6456698265726044,-2.7252950732762233,268.8261036292524,121.86524364562186,-289.3233771887876,-21.764360083752344,-8.036760477466322,-22.25564439913751,150.85851065069227,358.1570304495676,12.619421759484394,9.948806401376876,15.572044802155114,1115.0,41.0,2.3633469039385844,1.2849980087989163,0.16666666666666666,0.04564354645876384,0.9380035982439142,0.41100412354000027,0.1642664266089148,0.035997930146750165,0.0,0.0,0.0,0.0,0.11785113019775792,0.026352313834736494,0.3165928118194038,0.1015389083739554,0.4134045443660245,0.20181143626628617,16.77565640300939,13.086130165695048,10.819404336325702,8.023651996629027,10.598549891898442,6.880515791553505,8.974064032494352,5.219923797788619,7.520055605662377,3.6809267561875654,5.550741462146041,2.443227061784285,3.420307517075248,1.4005117071302988,2.413263877658887,0.7883772731885038,5.575771565727966,2.831239023767461,9.183145742630657,3.8983879065044142,15.028065703943463,5.386061421587197,75.80267347538397,36.93824816355506,29.644025637564887,27.503760424479182,27.32765347995461,27.32765347995461,126.0,153.0,42.25830899999999,24.581691,0.4722222222222222,119.09,8.95138888888889,4.888888888888888,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,36.0,0.0,0.0,38.0,11.0,4.0,9.0,29.0,15.0,25.0,23.0,0.0,0.0,0.0,14.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,6.0,2.0,2.0,23.0,9.0,0.0,3.0,5.0,0.0,3.0,2.0,1.0,0.0,0.0,1.0,2.0,3.56953269648137,6.91532034160094,4.244917420701475,4.79268655965915,5.344425365497529,5.7507853282515375,5.955513482822323,6.326317169290096,6.455591567864732,6.827256738265836 +5362129,CCOC(=O)[C@H](CCc1ccccc1)N[C@@H](C)C(=O)N1[C@H](C(=O)O)C[C@@H]2CCC[C@@H]21,0,20.612903225806452,6.108545161290321,2.967741935483871,6.354838709677419,164.24792918513663,81.01324087096779,1.3549731121801287,6.162720967741934,4.858870967741935,7.670718838709676,198.45404505305655,22.640625,6.274671875,3.75,5.65625,146.52398309405402,84.64343043750004,1.7259767122812508,6.414070312500001,2.900173611111111,7.7138552499999955,248.8494086170747,18.310924369747898,6.156773109243695,3.327731092436975,4.2521008403361344,154.60665596861463,66.67196416806726,1.4402598512187992,6.256788235294113,2.9007936507936516,7.66010668907563,199.33092882521834,14.414201183431953,6.053928402366864,2.78698224852071,2.9763313609467454,162.5998104302516,50.65214369822484,1.1967712545459288,6.119178106508876,2.672090729783038,7.6264917159763295,159.64489523468964,14.289017341040463,6.134965317919076,2.6184971098265897,2.861271676300578,162.76167589622557,49.780245138728326,1.1603033742625026,6.195745664739885,2.9063904945407844,7.727126312138728,157.85995153144026,15.028571428571428,6.214542857142855,2.4914285714285715,3.1085714285714285,162.1570766080696,52.76539645142857,1.1500046302498002,6.271766857142857,3.490634920634919,7.797723954285714,157.9070428191559,13.390374331550802,6.19001604278075,2.304812834224599,2.727272727272727,165.56294627204662,45.77064749732619,1.0850596489928233,6.231767914438501,3.3576945929887096,7.790344213903744,144.5728199519305,11.844086021505376,5.909306451612903,2.274193548387097,2.2903225806451615,165.081012879697,40.322309306451615,1.0729626352109787,5.965247311827955,2.581541218637993,7.546483419354841,139.4390275678498,13.116279069767442,5.9303895348837194,2.302325581395349,2.616279069767442,162.5546139871099,45.789009540697684,1.1076741338912734,5.995944767441859,2.7467700258397936,7.55242639534884,147.0436089400562,7.5598335067637885,0.13446305931321534,0.021648340581545886,0.5702393340270552,3.7533818938605608,1.3580724037586722,35.88128345057231,0.22324172591442246,0.12618899583766907,1.9998627008902767,0.08513673673257025,49.58009809027858,0.2420818158168574,-0.003529994797086155,-0.012990179275789571,0.1958896982310094,1.1004487513007284,-0.14185252530399348,1.1666379405567135,-0.004013829252785307,-0.001837760958636646,-0.05755339309457739,-0.003722688345473513,0.5923972174667718,0.15336790283230867,0.02121124266564078,-0.00018335831368903157,0.00010493271189851462,0.3748371356867409,-0.20059005937145485,0.5814215131034731,-0.019761603240730112,0.018346650679002187,0.2893718101184281,0.014952179504892466,-3.638002252615751,0.01775763658417938,0.010388095487319097,0.004220611269206949,-0.047047885277293734,-0.19621449550209658,0.10131444537403521,0.027097888996300088,-0.002506225235436024,0.008272132240208405,0.018294390157633577,0.006448286363440433,-0.9550395742708061,-0.5378308962845779,-0.021781854763522915,-0.004076029357709621,-0.08562251508243458,-0.5506968295308955,-0.014727924700944374,-2.473596863028035,-0.005705024609840146,-0.01902522555983943,-0.3220238047500563,-0.01439460285227941,-1.1617419559752051,-0.3467459491601011,-0.005526487884643795,-0.0009290525264192231,-0.07475546305931322,-0.30840493533521623,-0.22349846511352134,-1.6768212033833794,-0.023095910349044964,-0.004738645607254224,0.008112209503988834,-0.003696553875427463,-4.075973749937087,-0.7982326787492973,-0.002888210253356693,0.003896178326995673,0.015753420846155126,-0.22586766236151057,0.05596363176423941,-3.7961070282849305,-0.0035404700577038374,-0.005078257524748504,-0.017779056093159114,0.0005450980095376712,-3.5348243871043685,0.05359001040582735,-0.013526430801248728,-0.0018782407041895495,0.026534859521331933,0.05306971904266395,0.10547215488978004,0.3566992847728057,0.015823315972918126,-0.011182206035379848,-0.18807569275831504,-0.009454083246618093,3.360483055767622,0.5849526897853496,-0.001308820753575528,-0.002079401808206785,-0.026353362534181943,0.12583791109067588,-0.08955011963863782,2.7715565533661644,-0.007649996760553572,0.0013493481233211196,-0.051722019886692054,-0.003907121578781784,1.630745989995647,,,0.4655555555555556,0.975,0.35,0.0,0.625,-0.275,1.1414594038286385,0.016543030226753134,0.025143030226753134,0.7928430139632473,0.1772142650868128,0.3033831567655373,1.934302417791886,0.48059742185235005,2.0103696444671035,1.5712955619489355,0.14233845877859905,0.2967356237395687,0.0,0.4390740825181677,6.713405195548401,1278.0,378.7297999999999,184.0,394.0,10183.37160947847,5022.820934000003,84.00833295516799,382.0886999999999,301.25,475.5845679999999,12304.150793289506,1449.0,401.579,240.0,362.0,9377.534918019457,5417.179548000003,110.46250958600005,410.50050000000005,185.61111111111111,493.6867359999997,15926.36215149278,2179.0,732.6559999999997,396.0,506.0,18398.19206026514,7933.963736000004,171.39092229503711,744.5577999999995,345.1944444444445,911.552696,23720.380530200982,2436.0,1023.1139000000001,471.0,503.0,27479.367962712524,8560.212284999998,202.25434201826195,1034.1411,451.58333333333337,1288.8770999999997,26979.98729466255,2472.0,1061.3490000000002,453.0,495.0,28157.769930047023,8611.982409,200.73248374741297,1071.864,502.80555555555566,1336.792852,27309.771614939167,2630.0,1087.5449999999996,436.0,544.0,28377.488406412176,9233.944379,201.25081029371503,1097.5592,610.8611111111109,1364.601692,27633.732493352283,2504.0,1157.5330000000001,431.0,510.0,30960.270952872717,8559.111081999998,202.90615436165797,1165.3405999999998,627.8888888888887,1456.794368,27035.117331011006,2203.0,1099.1309999999999,423.0,426.0,30705.068395623643,7499.949531,199.57105014924204,1109.5359999999996,480.1666666666667,1403.6459160000004,25935.65912762006,2256.0,1020.0269999999997,396.0,450.0,27959.3936057829,7875.709641000001,190.51995102929902,1031.3024999999998,472.44444444444446,1299.0173400000006,25291.50073768967,468.7096774193549,8.336709677419352,1.342197116055845,35.35483870967742,232.70967741935476,84.20048903303768,2224.6395739354834,13.840987006694192,7.823717741935482,123.99148745519716,5.278477677419355,3073.966081597272,15.493236212278873,-0.22591966701351393,-0.8313714736505325,12.536940686784602,70.42872008324662,-9.078561619455582,74.66482819562967,-0.2568850721782596,-0.11761670135274535,-3.683417158052953,-0.23825205411030484,37.91342191787339,18.25078043704473,2.524137877211253,-0.021819639328994757,0.01248699271592324,44.60561914672216,-23.87021706520313,69.1891600593133,-2.351630785646883,2.1832514308012603,34.435245404092946,1.7793093610822035,-432.9222680612744,3.001040582726315,1.7555881373569273,0.7132833044959744,-7.9510926118626415,-33.16024973985432,17.12214126821195,4.579543240374715,-0.423552064788688,1.3979903485952205,3.0917519366400743,1.0897603954214332,-161.40168805176623,-93.04474505723198,-3.7682608740894645,-0.7051530788837644,-14.812695109261183,-95.27055150884492,-2.5479309732633766,-427.93225730385007,-0.9869692575023452,-3.2913640218522215,-55.71011822175974,-2.490266293444338,-200.98135838371047,-60.68054110301769,-0.9671353798126641,-0.16258419212336403,-13.082206035379812,-53.97086368366284,-39.112231394866235,-293.4437105920914,-4.041784311082869,-0.8292629812694892,1.419636663198046,-0.646896928199806,-713.2954062389903,-149.26951092611858,-0.5400953173777016,0.7285853471481908,2.9458896982310083,-42.23725286160248,10.46519913991277,-709.872014289282,-0.6620679007906176,-0.9496341571279703,-3.324683489420754,0.10193332778354451,-661.0121603885169,9.967741935483888,-2.5159161290322634,-0.3493527709792562,4.935483870967739,9.870967741935495,19.617820809499086,66.34606696774186,2.9431367709627714,-2.0798903225806518,-34.982078853046595,-1.7584594838709653,625.0498483727777,100.61186264308014,-0.22511716961499081,-0.35765711101156705,-4.5327783558792945,21.64412070759625,-15.402620577845706,476.7077271789803,-1.3157994428152144,0.23208787721123256,-8.896187420511033,-0.6720249115504668,280.48831027925127,0.7224332542835974,0.5916890171019153,0.45056008298657835,0.34173211226987316,0.28989294751712846,0.18888269934646826,0.18166029629052965,0.1092211105105563,0.11344545826342613,0.06521508535272913,0.07438280609701474,0.03670900320141641,0.04747780442611815,0.021796692200267104,0.030360997077152185,0.013339778744745321,8.031589135575178,5.694126750691995,3.5581808748809407,2.1941231294174637,0.45727853385226724,-0.49484558798148304,3.2148605161919726,0.972561760383896,6.029063230231324,0.9878999128602607,14.543802571439532,10.954429743863482,16.016749653459538,11.705129323635964,1.9824608345894073,0.7404304419850031,3.5043701589005307,2.244122062307834,7.010461108749786,1.1784781094415056,3.7172377547951334,2.4401216393412275,20.89154335536106,14.699771382458477,0.24080226846102293,0.5387281432586432,0.7718413156737927,0.8970567425024732,0.909569092428858,0.909569092428858,1.6124817176116926,753.2201749557545,0.0,3.0,3.0,0.0,5.0,10.0,1.0,1.0,0.0,4.478251055866904,2.6521790511613785,1.2233624424510392,0.4558816533304917,0.3791899194246291,0.3791899194246291,247.27936100849956,2013.785120101068,65.80278734417088,32.48040516292045,63.417787156331926,,13.0,663.0,24.09482777539573,19.490138947056174,30.443113857125628,19.26246486877803,24.825916360475023,0.0,18.747384130231726,30.33183534230805,5.316788604006331,4.736862953800049,13.966666666666669,29.25,10.5,0.0,18.75,0.0,0.03444444444444438,-8.25,0.12874468617154283,0.023671726755218336,-0.1050729594163245,0.034652777777777755,0.16913654096228825,0.0,0.5682795698924726,0.854444444444444,0.4395348837209298,0.5446078431372543,0.8197916666666663,34.24378211485916,0.496290906802594,0.754290906802594,23.785290418897418,5.316427952604384,9.101494702966118,58.029072533756576,14.417922655570502,0.5448634590377117,0.1670644391408114,0.0,0.350835322195704,0.6086956521739131,0.3173785618522536,-0.944027400218995,-0.05590058104332947,-0.015226248390628949,-0.04291033637359067,0.6826214381477466,2.0304249216692725,0.041293132252538875,0.03274878905918182,0.05076062304173181,-3.2808856333364984,0.8784755677907777,0.7300686419470046,1.6246772793687327,0.9705177919708029,0.5242583864707515,1.4252982523440367,0.8870916875689062,1.2582460632228074,0.7231110059001731,0.6107977693686334,0.7359987078508118,1.1268453705183634,0.916479957433765,0.6319889509445269,0.988925861755065,1.333895602036435,0.8084152430032178,1.3402615693603666,0.9263296537053426,1.1977296562891733,0.6496605695685972,0.43248277851261685,0.5825824397281114,1.1345026840367485,0.9733886633246048,0.859426941400478,0.8770915051782042,1.2812621474538937,1.063251845934024,0.9902151559248289,0.97630827851778,0.996495264655207,0.8715397576960521,0.7702181420410407,0.8260003577083904,1.0035541011256093,1.0896783215114036,1.3100961592872287,1.3505899176200047,1.3463830640057382,1.2689780308359953,1.02831236302325,1.084470533989142,0.9995300382360292,1.2823603145512612,1.4066702874291235,1.3344249020765289,0.9887796784614653,1.0816869531019566,1.2758526510365016,1.2412351474980956,1.2471923879040667,1.2080411105390316,1.1736381695496243,1.0778962581832463,1.0792331439847602,1.248143698699467,1.382667884204511,1.3166071024094381,1.0430093930111817,1.149725995635068,1.280224906702972,1.0335088854824253,0.9226550606971389,1.156452323097246,0.9476896676078617,1.1443081622944615,0.9411830980277763,1.2744106754160716,1.304427400314457,1.2721899832094308,1.0012651550587781,0.9820314292268869,1.0972956763324277,1.1100913312804856,0.9368917274939171,0.9695961556233254,0.8679820376264393,0.9784875002940613,0.8818211009405823,1.0866838600437116,1.0721417843123793,1.1037226817415893,0.8989553607092828,0.904958466044591,0.9864257105793176,1.1200274637321503,1.0081347606518418,0.9806984642265367,1.020640410787035,0.9051284076028521,1.0247107095463148,0.9681750348780515,0.9699151661815628,1.0340552286902902,0.9573670402052783,5.5,0.22110600959085808,3.555555555555557,2.1319444444444446,2.0411111111111118,1.2016666666666664,0.6817233560090703,0.546875,0.44749149659863935,0.28439043209876547,6036.227110522972,7019.104402525767,2817.696924310725,2490.4008224901845,13.484339811225983,0.47019256825836275,7.144103444117151,0.8874782422600181,1.0,0.6086956521739131,1.4759452545199703,3.3020172592254964,4.730833867935836,5.498314657056383,5.575006390962246,5.575006390962246,0.171875,0.008189111466328076,0.08080808080808084,0.04737654320987654,0.04535802469135804,0.025567375886524826,0.01623150847640643,0.014022435897435898,0.010914426746308277,0.008125440917107584,0.42846794809942657,24.638671875,11.743801652892563,6.292508917954816,177.32579789282644,1.0,4.315389945688374,175.4254860443833,,154.3138347723938,151.3051056720022,150.68800242998273,154.34540046528207,213.14429486198185,153.1224579741803,154.48651908735928,190.84231972927552,0.032022109428768056,-0.026252524783505492,-0.6000542732990372,0.343521897810219,0.29318859162739125,-0.10445137159947805,0.032513829728632676,-0.017979744764757683,-0.01456355957535919,-0.02877867219032407,-0.043725992895019515,0.011948286515853546,0.02028720641732259,0.157747732157661,-0.008469855368283296,0.00018401521192421995,0.09986650607012977,-0.14770203622155292,0.01620403333410303,-0.0885211004340001,0.14539025813790865,0.14469583836410807,0.17562547119770333,-0.07337626170064138,0.0023489454586918626,0.07725612923264888,0.1949623461118681,-0.08250550684576509,-0.052276720315363144,0.07460165238144302,0.0007552095797695852,-0.01122650895646973,0.06555351506917266,0.009147823072798688,0.07574035147360249,-0.019262559193243416,-0.07114321972876522,-0.16199136680941292,-0.18828368587217392,-0.15015189232521828,-0.14672016999700324,-0.010844727173737275,-0.06893836075946108,-0.02555536867703268,-0.15076770706943174,-0.1610229565293164,-0.1690762813413373,-0.023431618748713082,-0.045866876413332015,-0.04110041756353701,-0.042915646255639255,-0.13109489051094889,-0.08216721454315024,-0.16457036053081947,-0.04673247560091482,-0.10345696018269701,-0.037551971753147714,0.00405638322089688,-0.04341902235504988,-0.08220987668308553,-0.10558865853793181,-0.021479581589981214,0.17997584213530748,0.027625980717436268,-0.06017710660643519,0.04120813559671158,-0.10579629999897291,-0.015859356234600348,-0.04024326757684348,-0.008890138350619985,0.006402618076024241,-0.07129522778813258,0.007088781830695124,-0.10059588760166874,-0.0867614169831869,0.04653284671532844,0.014139173828666503,0.07766313091840302,0.009941096038667933,0.0708797421633617,-0.08861474775316196,-0.09404430247865996,-0.11104587290343372,0.06777887065992975,0.07737639846988588,-0.00973368269516157,-0.09605363516773982,-0.04621456459005264,0.03352654077020781,-0.06593913504964406,0.07724240291415656,-0.034267772878113854,0.010693072833838349,-0.025862785412052045,-0.04589231075481262,0.0328911408570891,12.970095501589517,21.820969384874765,10.276797952853734,13.795899029235288,30.50301714220395,37.43991374870961,39.54095417747061,39.61825944524772,39.61825944524772,60.311089334013104,47.13886685846806,4.270153763357971,8.902068712187061,0.0,13.17222247554503,7745.307556155815,6155.504794341544,2339.0011572821686,86.0,44.0,58.0,75.0,88.0,92.0,94.0,92.0,90.0,416.2311221240009,32.0,5.030437921392435,5.877735781779639,6.755768921984255,7.630946580890459,8.518592212329946,9.405989388981,10.300012819074817,11.194715454149488,12.0937490549462,0.6021505376344084,0.977677419354839,1.1334361486386806,0.55932330847261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6370231408151441,0.9635041113219481,1.0029838122312809,0.5928897986251095,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,1.0,7.0,1.0,1.0,0.0,5.0,1.0,0.0,0.0,0.0,14.743300079491233,12.083681658295921,0.0,5.907179729351506,0.0,14.905862972149976,4.794537184071822,0.0,0.0,36.75265696523406,57.43294005186969,6.041840829147961,12.648722793660879,214.87391833243618,-639.1322252971448,-37.84621373207856,-10.308584278986205,-29.05146478623385,462.15327934093574,1374.6528948039231,27.95657361209232,22.171820883934245,34.366322370098075,0.46153846153846156,0.8134887507818509,0.16127736672896387,158.29186143839203,0.10957988875468669,10.347913476054881,0.18651124921814902,7.0,0.28125,0.24788320330406952,0.5545697667820004,0.7945377715684435,0.9234352329742265,0.9363155160398144,0.9363155160398144,2.3831999999999995,,1.5357142857142858,1.799906933457422,1.3161701003068016,1.5313282524578438,-6.447834958059396,1.6159730722154224,1.5229999873188609,-2.633621646776986,111.79750000000007,24.227001900856216,0.0,10.216698334856808,5.917906046161393,76.53976745352915,6.606881964512918,35.89528683400505,0.0,0.0,4.174387269895637,0.0,5.484796933490655,3.044522437723423,6.9782137426306985,5.41610040220442,8.561210076833012,7.5352967024440884,10.198579603162921,37.33333333333332,9.838684849562272,0.0,0.0,0.0,0.0,0.0,1.1035737355344137,0.0,60.616000000000014,0.0,37.492965223222846,0.0,0.0,0.0,0.0,0.0,-1.578879218382318,70.2730412155982,5.316788604006331,0.0,0.0,58.62647271205114,25.54129612894152,5.917906046161393,51.5150340057083,30.33183534230805,0.0,0.0,0.0,34.67804512530182,39.49543473053893,37.87908201252878,350.8509720887666,,308.52528859240664,302.4902175484406,301.28826018661164,308.58871238040024,427.59794018571984,306.1371844102129,308.87150484223065,382.2113637879064,37.87908201252878,350.8509720887665,,307.0919552590734,300.8103044105469,300.05983475965866,307.15947267810634,432.73642468202314,304.6289428761452,307.4500381873998,384.3182611053281,4.852650522813645,253.7070570488205,,224.98896925876505,220.2001623445697,218.04485644037624,225.03574665641582,313.9906778209336,223.03758478125093,225.26966390948942,282.05185182577384,1.2626360670842927,11.695032402958885,,10.284176286413555,10.083007251614687,10.042942006220388,10.286290412680009,14.253264672857329,10.204572813673764,10.295716828074355,12.740378792930214,2.512781349218919,175.4254860443833,,154.3138347723938,151.3051056720022,150.68800242998273,154.34540046528207,213.14429486198185,153.1224579741803,154.48651908735928,190.84231972927552,59.73725490196078,0.0,3.4592496991144177,0.0,0.0,0.0,9.631458912578072,62.18499635833942,4.800855443889493,3.1291513133030993,5.206812484252961,0.0,-1.8170831857056418,1.5665440759637188,0.0,0.0,0.0,36.75916751475679,550.7540092806485,91.50860578023816,204.72507007198078,293.3116998120218,340.8955087374958,345.65039623965924,345.65039623965924,781.0,138.80794813552822,126.27318839272328,81.39310716838487,95.94000000000001,95.94000000000001,0.8571428571428571,7.22466236010851,6.0,3.8135785701232683,5.396065814210342,,5.400547972754891,5.399249354164254,5.3962893755428345,5.400553694344509,5.398427989149339,5.39993369414096,5.400630802824793,5.406276972862535,0.1271192856707756,0.17986886047367806,,0.1800182657584964,0.17997497847214178,0.1798763125180945,0.18001845647815032,0.1799475996383113,0.17999778980469866,0.18002102676082643,0.18020923242875114,2.437180294230841,2.784282423790673,,2.785112713526044,2.7848722240876618,2.784323853363476,2.785113772971607,2.7847200867361956,2.7849989633001675,2.7851280507538827,2.7861729695537223,325.860000000001,1638.05646409419,188.54328196038813,,187.2195813569428,187.36650811408867,187.95551668994244,187.21968071108097,187.82535539333145,187.30079072102427,187.2090262816696,186.7567067295953,54.601882136473,6.2847760653462705,,6.240652711898093,6.245550270469622,6.2651838896647485,6.240656023702699,6.260845179777715,6.243359690700809,6.240300876055653,6.225223557653177,8.499878023850975,6.337939881721208,,6.3308944485069905,6.331678923792169,6.334817610149334,6.3308949791892575,6.334124859072916,6.331328119791165,6.330838068865795,6.328419024912197,5.206812484252961,39.059509299186566,12.760610225881171,1.1035737355344137,-1.313893812239424,7.756616257713735,4.535334549606874,3.7247705933970368,0.0,408.52064451967595,145.47548678170622,-432.70989943567207,-25.62291602557663,-6.979191926381806,-19.668631792530544,312.89033960775276,930.6773971426884,18.927360689144194,15.010925760365943,23.26693492856721,2546.0,45.0,1.917922060506525,0.9556711620556783,0.0,0.0,0.6129299111529052,0.1870835076372738,0.0,0.0,0.0,0.0,0.0,0.0,0.19641855032959654,0.17870919214277636,0.4552697411296902,0.315037334485191,0.6815734822390008,0.4134317177541568,21.67299762850792,17.75067051305746,14.417922655570507,10.935427592635941,12.755289690753653,8.310838771244603,10.53629718485072,6.334824409612265,8.50840936975696,4.891131401454684,6.5456869365372965,3.230392281724644,4.36795800720287,2.0052956824245736,2.8539337252523054,1.2539392020060602,4.760908040216178,2.165453276708042,7.163661639282921,3.316902991870421,11.30119179225201,4.336363660548798,102.95325164951416,51.49451576520473,30.860247238588617,23.44323012805756,23.09709278360868,23.09709278360868,152.0,178.0,65.95737599999998,38.72262400000002,0.3225806451612903,154.07,10.61111111111111,6.777777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,6.0,6.0,62.0,0.0,1.0,64.0,6.0,3.0,6.0,58.0,9.0,32.0,55.0,0.0,0.0,0.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,5.0,2.0,1.0,30.0,7.0,0.0,2.0,5.0,0.0,3.0,9.0,0.0,0.0,0.0,0.0,1.0,3.6635616461296463,5.328482780879763,4.085976312551584,4.45143608604605,4.784361849773118,5.099485257627093,5.0043656810826604,5.048653361283777,5.1701288183340095,5.283838045283202 +35370,Cc1cn([C@H]2C[C@H](N=[N+]=[N-])[C@@H](CO)O2)c(=O)[nH]c1=O,0,27.3125,6.923265625000001,3.40625,10.75,170.93370295235115,108.14694659375,1.3216182425949063,6.921481249999999,8.122395833333332,8.348757375,210.04348965816362,27.96969696969697,6.889509090909091,4.181818181818182,8.909090909090908,155.32971665604094,107.14888993939392,1.6114614453333336,6.979960606060606,4.0218855218855225,8.243170181818181,252.18300125642142,23.724137931034484,6.804168965517241,3.7586206896551726,7.241379310344827,161.586959673137,89.2381180689655,1.3957198439352587,6.857398275862069,3.8975095785440614,8.228571172413794,212.2842527353789,19.974025974025974,6.69848051948052,3.103896103896104,5.4935064935064934,164.83500692316417,73.00711118181817,1.2012453710602728,6.738158441558441,3.826839826839827,8.192596831168832,180.02525941231184,18.5625,6.84453625,2.675,5.275,172.50754593960613,66.63811847499998,1.0894755524667374,6.844364999999999,4.59375,8.344878,161.63454732577688,17.02777777777778,6.5342208333333325,2.5972222222222223,4.555555555555555,170.15455636480257,61.01136508333333,1.08759396908175,6.556936111111111,3.952932098765432,8.06212288888889,156.654257257258,17.18032786885246,6.709373770491804,2.377049180327869,4.901639344262295,171.35552178077276,61.00744881967212,1.0560818406965575,6.715024590163935,4.9977231329690355,8.238619672131147,153.35990839247677,16.857142857142858,6.601222448979593,2.204081632653061,4.877551020408164,171.1141969315457,60.195261836734694,1.0181412067038775,6.610232653061224,4.920068027210884,8.135318530612246,146.0343009990487,15.61111111111111,6.640941666666667,1.75,4.75,177.0533435249678,55.02282825,0.8875887879900277,6.626911111111111,5.87037037037037,8.192283444444445,128.35966365213486,8.171875,0.20382958984374994,0.027811309977770586,0.6630859375,5.109375,1.506497878952053,38.40096024121094,0.18763891147822556,0.18421210937499993,3.4053548177083335,0.12942674609374996,41.767897938304344,0.17850378787878787,-0.009465385298295432,-0.019429271632856474,0.19960345643939395,1.1633522727272727,-0.15421971597872,0.8646945731830002,-0.0200423777919188,-0.006547526041666635,-0.11310944733796294,-0.01022704912405303,-1.4048961833626323,0.32165948275862066,0.017861196794181033,0.007597781681949108,-0.03754714439655173,0.1880387931034483,0.1423289942671496,1.4669352323881997,0.002732383990357904,0.014625929418103471,0.1454862981920498,0.009178756061422412,0.09716719383343163,-0.6012581168831169,-0.02442719536323051,-0.004521124291694796,-0.11113788555194805,-0.6174918831168831,-0.44428406321964603,-2.822000166535613,-0.032929426707425255,-0.020136947037337666,-0.13421710125811684,-0.016220142197646097,-4.978361081537097,-1.015625,-0.013581816406249964,0.0019223767934572953,-0.0474609375,-0.54375,0.1824463378432207,-4.773973424414062,0.008953431093806835,-0.014249609374999972,-0.13686523437500003,-0.0037515101562500012,-1.5069143350528957,-0.046875,-0.007542350260416695,-0.0010249118925241502,-0.0654296875,-0.359375,-0.0228350140850841,-0.21172121169704805,-0.00750762862551378,-0.005849348958333361,-0.3795060522762346,-0.006096242621527769,-0.3743436233445803,-0.9024077868852459,-0.014869497630635239,-0.0006140997182677966,-0.011446593237704918,-0.554047131147541,0.07507361817393297,-4.2254153477683145,-0.0017512710140985344,-0.015170408555327856,-0.23669589238957192,-0.00814073379866803,-2.888611507982474,0.19419642857142858,0.01691741270727038,0.0035802421989691363,-0.12290736607142858,0.19419642857142858,-0.2369989564448928,0.7939088812380428,-0.023714489630120978,0.014994523278061202,-0.06245515784438777,0.010413998804209184,-3.7548060550439626,0.359375,-0.004509016927083351,-0.005805206076477463,0.030490451388888888,0.4288194444444444,-0.15175687467925686,1.6959965643446189,-0.01657816260798945,-0.001846484375000025,0.18051034432870378,-0.006699891927083332,-0.28058629460290635,,,0.4385964912280702,1.0921052631578947,0.42105263157894735,0.05263157894736842,0.6710526315789473,-0.25,0.7830576498912876,0.018533313392587264,0.02758594497153463,0.8317434174372026,0.2309412945619419,0.24601031638089693,1.61480106732849,0.47695161094283883,1.9915733266802467,1.0910252878709978,0.514872234361188,0.38567580444806043,0.0,0.9005480388092485,8.34677355925001,874.0,221.54450000000003,109.0,344.0,5469.878494475237,3460.702291,42.291783763037,221.48739999999998,259.91666666666663,267.160236,6721.391669061236,923.0,227.3538,138.0,294.0,5125.880649649351,3535.9133679999995,53.17822769600001,230.33870000000002,132.72222222222223,272.024616,8322.039041461907,1376.0,394.6418,218.0,420.0,9372.043661041946,5175.810847999999,80.951750948245,397.7291,226.05555555555557,477.257128,12312.486658651977,1538.0,515.783,239.0,423.0,12692.295533083641,5621.547560999999,92.495893571641,518.8381999999999,294.6666666666667,630.829956,13861.944974748012,1485.0,547.5629,214.0,422.0,13800.60367516849,5331.049477999999,87.158044197339,547.5491999999999,367.5,667.59024,12930.76378606215,1226.0,470.46389999999997,187.0,328.0,12251.128058265786,4392.818286,78.306765773886,472.0994,284.6111111111111,580.4728480000001,11279.106522522576,1048.0,409.27180000000004,145.0,299.0,10452.686828627138,3721.4543779999995,64.42099228249,409.61650000000003,304.86111111111114,502.5558,9354.954411941082,826.0,323.45990000000006,108.0,239.0,8384.59564964574,2949.56783,49.888919128489995,323.90139999999997,241.08333333333331,398.630608,7155.680748953386,562.0,239.07390000000004,63.0,171.0,6373.920366898841,1980.821817,31.953196367641,238.5688,211.33333333333331,294.922204,4620.947891476855,261.5,6.522546874999998,0.8899619192886588,21.21875,163.5,48.20793212646569,1228.83072771875,6.004445167303218,5.894787499999998,108.97135416666667,4.141655874999999,1336.572734025739,5.890625,-0.31235771484374925,-0.6411659638842636,6.5869140625,38.390625,-5.08925062729776,28.53492091503901,-0.6613984671333204,-0.21606835937499896,-3.732611762152777,-0.33749262109375,-46.361574050966865,18.65625,1.0359494140624999,0.44067133755304827,-2.177734375,10.90625,8.255081667494677,85.08224347851558,0.15847827144075843,0.8483039062500013,8.43820529513889,0.5323678515624999,5.635697242339035,-46.296875,-1.8808940429687493,-0.34812657046049933,-8.5576171875,-47.546875,-34.20987286791274,-217.29401282324218,-2.5355658564717447,-1.5505449218750003,-10.334716796874996,-1.2489509492187496,-383.3338032783564,-81.25,-1.086545312499997,0.15379014347658362,-3.796875,-43.5,14.595707027457657,-381.91787395312497,0.7162744875045468,-1.1399687499999978,-10.949218750000002,-0.3001208125000001,-120.55314680423166,-3.375,-0.543049218750002,-0.07379365626173881,-4.7109375,-25.875,-1.6441210141260552,-15.24392724218746,-0.5405492610369922,-0.421153125000002,-27.32443576388889,-0.4389294687499994,-26.952740880809785,-55.046875,-0.9070393554687496,-0.03746008281433559,-0.6982421875,-33.796875,4.579490708609911,-257.7503362138672,-0.1068275318600106,-0.9253949218749993,-14.438449435763888,-0.4965847617187498,-176.20530198693092,9.515625,0.8289532226562486,0.17543186774948769,-6.0224609375,9.515625,-11.612948865799748,38.9015351806641,-1.162009991875928,0.7347316406249988,-3.060302734375001,0.51028594140625,-183.98549669715416,12.9375,-0.16232460937500065,-0.20898741875318866,1.09765625,15.4375,-5.463247488453247,61.05587631640628,-0.5968138538876202,-0.0664734375000009,6.498372395833336,-0.24119610937499997,-10.10110660570463,0.7363789132964851,0.5367499256572067,0.4531040303956969,0.28592841632824206,0.2862742034249041,0.15406621911729848,0.18261712131825666,0.08266906796153167,0.11441082570559612,0.0436980025848406,0.07368738145523239,0.022896301933988675,0.04783025922983447,0.011916865325856346,0.030285525914029325,0.006590136266070225,8.024280457947226,5.748823629267114,3.550733491637831,2.2381780856349693,0.4925092286152968,-0.4113220648697543,3.218744495748255,0.9561300388020533,6.0250620127810475,0.9959496503929781,14.825356872628934,11.016029880567624,16.011906587649417,11.766404451143005,1.9377963864977041,0.7440727063081658,3.4976445946272037,2.284830495705375,7.011156265446308,1.1920066786078143,3.709426286540911,2.479447597032405,20.823296618151122,14.701775839920442,0.35171838126543753,0.7430356955881413,0.9006240565346559,0.9006240565346559,0.9006240565346559,0.9006240565346559,1.9810785693113158,629.5425620141572,0.0,2.0,3.0,0.0,0.0,3.0,1.0,0.0,0.0,3.15420742997327,1.100602529652301,0.273590234442608,0.273590234442608,0.273590234442608,0.273590234442608,45.10842193172323,880.7801198618577,56.694194580787496,27.52437874568305,65.13026243195337,,10.0,297.0,29.622718680886617,9.589074368143644,13.027703587438928,5.563451491696996,0.0,10.763943219404432,6.923737199690624,0.0,15.009940293829068,15.374519347426006,8.333333333333334,20.75,8.0,1.0,12.75,0.0,0.06140350877192979,-4.75,0.257651515151515,0.023284313725490113,-0.2343672014260249,0.06349206349206338,0.26027949183303073,0.0,0.6958333333333335,0.9666666666666665,0.4381818181818185,0.6725490196078434,0.9031746031746031,14.878095347934464,0.35213295445915804,0.524132954459158,15.803124931306849,4.387884596676896,4.674196011237042,30.681220279241312,9.062080607913938,0.45372050816696924,0.22799999999999998,0.0,0.408,0.6,0.45048889204597325,-0.8710169311019046,-0.07864716470610515,-0.02721927909693452,-0.09677965901132272,0.5495111079540269,1.0624756510259932,0.045808192765928644,0.03320236409456229,0.04619459352286927,-1.0083857337151114,0.6933194275450489,0.747930789897717,1.7022833124288048,0.92970946579194,0.4653878231859883,1.4918063845190364,0.6990447347461406,1.3292859601061577,0.7164670842029868,0.6234340054868195,0.8026642754623384,1.04772731595592,0.8012131601503264,0.7514130320662403,0.7735394606319829,1.2972423950027934,0.7910998629125804,1.0892476522860826,0.8056029072911833,1.104825952831361,0.7486337834850735,0.5600328524947707,0.7871060958696614,1.0020737986335928,0.9953316282188176,1.0512207110257623,1.204369547210189,1.223801235583268,1.0329639779181063,1.3229260399684155,0.99617373062983,1.219722308970246,1.036413223425902,0.7313107174022457,1.0774889629154651,1.1118562660516547,1.1173040152963671,1.1078736977263959,0.9278177592846537,0.9678939617083947,1.0925840978593273,0.8169993739488286,1.115130130188997,0.8562520850335879,1.1161059665000646,0.9830310272035688,1.0706994397500493,0.9582409484617112,0.986243892075632,0.9465883166484206,0.9968236073511125,1.0855833742431682,1.0296466190961604,0.9542184579371322,0.9878182052635011,1.0050494779587018,0.9490787176146912,1.0323318419387248,0.9350921749383633,1.0052428783721807,1.1184214650659814,1.1053871259855519,0.9716187298366092,0.8741881745092832,1.1516017446232516,0.8499983548386992,1.1163893870796882,0.9419887142974398,1.1160902329555327,1.2056004236294888,1.10145981362991,1.0257301567734312,0.9907129199672221,0.9010233976952099,0.7206662663276439,1.1031829521204652,0.9422080758909067,1.0388958288567518,0.9936644884738427,1.063571232305203,0.9095882746980674,1.1483155766787536,0.8941505300505845,1.0710380427871933,1.0356384108774166,1.0803186702535832,1.0297960539875297,0.6696121747668139,1.0243798844716276,0.8886393476670407,1.033227961797062,0.9080225197977302,1.079575717435861,1.265336360377584,1.0784776323847094,0.9396510645801294,4.5,0.0,2.666666666666668,1.6666666666666665,1.4244444444444446,0.7783333333333333,0.36571428571428577,0.2838718820861678,0.12723607961703198,0.035625000000000004,3819.7087262057526,4202.8316059966755,1935.8655430234728,1797.7192009508476,10.572511330048906,0.4498244718265225,5.816737005129732,0.8176017448829294,1.0,0.6,1.8457925700267304,3.899397470347699,4.726409765557392,4.726409765557392,4.726409765557392,4.726409765557392,0.22500000000000003,0.0,0.09523809523809526,0.05747126436781609,0.054786324786324794,0.035378787878787885,0.020317460317460314,0.02027656300615484,0.014137342179670219,0.008906250000000001,0.5315120877743095,15.39,6.635204081632653,3.3659605551497442,106.62903730140096,1.0,3.860658200769667,76.69847952221298,,56.23007274395972,54.440943493459855,54.56379457250227,56.250296943096394,89.84825193276806,55.5411292655062,56.33106015820573,78.64206559992805,0.021843675763369836,-0.04643773902283437,-0.698610444757409,0.3010220020529299,0.22768974145120935,-0.10236968676384597,0.022517524763743586,-0.1068135475420545,-0.035543407346462004,-0.03321517239548067,-0.07901805023086257,-0.033635788553156645,0.039361772268741345,0.08762808583323416,0.27319035629828187,-0.05662485399421056,0.03680269956764737,0.0944767306052606,0.03820048309140775,0.01456192624883662,0.07939722023555748,0.042722801581644355,0.07091854147962433,0.002326360641298204,-0.07357651908321125,-0.11984126240922977,-0.16256423359088457,-0.16760706156876995,-0.120854680487708,-0.29491184118274233,-0.07348775001483202,-0.17549359270956189,-0.10931391592908235,-0.03941354379877499,-0.12532295439071825,-0.11919108519396089,-0.124282982791587,-0.06663319303473753,0.06912212315758731,-0.07157584683357879,-0.10642201834862385,0.12110626930993999,-0.12431911583530546,0.04771628135801582,-0.0773543575574182,-0.04019118174214363,-0.02898558659222263,-0.03607829001303273,-0.0057361376673040155,-0.03700321560867806,-0.03685234148781039,-0.09867452135493372,-0.07033639143730887,-0.015157680873051443,-0.0055134353507606875,-0.04001104337244569,-0.031753335750723435,-0.1114439089585463,-0.04710187658671393,-0.008962472181327534,-0.11042848634924615,-0.07295063313444226,-0.022080934654233938,-0.01726260894758444,-0.1084373590013536,0.049833205358480515,-0.110034106470955,-0.009333197471153309,-0.08235293872264124,-0.06950696918826764,-0.06289838881347838,-0.06915865175329777,0.02376399890740235,0.0829978253905078,0.12873331755429004,-0.18535661687355356,0.03800786369593709,-0.15731781621209687,0.02067419346420509,-0.12638364528603072,0.08139814113705687,-0.018340279115589362,0.08046249417926206,-0.0898969361730919,0.04397705544933078,-0.022121503215209518,-0.20873544184425433,0.04598265423007691,0.08392796466190962,-0.10073487443926683,0.04416547278222794,-0.08835141110863486,-0.010023686180375599,0.05300779331129435,-0.051765899470502655,-0.006717749957571777,0.8434326653017493,7.086836401870507,5.186076602462159,18.691544385347548,39.710686400110475,41.481252293681834,41.481252293681834,41.481252293681834,41.481252293681834,37.839893206924685,20.72948046954896,9.782572452862572,7.327840284513148,0.0,17.11041273737572,2728.3933243307924,2463.254833380129,704.6988092858201,37.0,28.0,37.0,47.0,56.0,59.0,57.0,55.0,51.0,267.09675389600034,20.0,4.574710978503383,5.424950017481403,6.3080984415095305,7.1846291527173145,8.073714641109857,8.958411469230219,9.8497175093263,10.737461325921066,11.629667959451364,0.7291666666666666,1.036875,1.1559568211992577,0.6953131504454251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6376554827844312,1.0178921568627453,1.0440413328477787,0.6303404678913089,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,9.843390348640755,6.22790117073487,0.0,0.0,5.559266895052008,14.345615352810384,4.794537184071822,0.0,0.0,5.114250125629398,12.454866198475877,23.092828333488544,18.75268918140918,205.21498970325052,-396.7816603326878,-35.82680368000315,-12.399426885396494,-44.08685114807642,250.32341163497375,483.9984595291699,20.867390900784343,15.12495186028656,21.043411283876953,0.5,0.6783019250214933,0.20360335282665526,135.06214146844914,0.17065412735798657,34.88398980907968,0.32169807497850655,5.0,0.15,0.36915851400534605,0.7798794940695398,0.9452819531114784,0.9452819531114784,0.9452819531114784,0.9452819531114784,-0.19628000000000012,,1.7142857142857144,2.0711959050721265,1.8187846708014441,1.7095632088057127,-6.920086148265698,1.8408047735618116,1.6952941664361778,-3.1926010534492466,64.60650000000003,9.843390348640755,0.0,9.551078168738563,5.114250125629398,31.718267210247767,6.606881964512918,43.041220370746906,0.0,0.0,3.713572066704308,0.0,5.030437921392435,2.3978952727983707,6.543911845564792,4.727387818712341,8.150467911624004,6.823286122355687,9.805929848941323,23.333333333333332,1.3876351095993953,0.0,2.1695405013857396,0.0,0.0,0.0,0.3712804967666081,1.2284599395313682,33.18,0.0,22.978246038773634,0.0,0.0,0.0,0.0,3.5295245968757873,0.0,36.990618278376246,11.24901029325548,0.0,0.0,33.410294744988455,4.736862953800049,6.923737199690624,18.212174285357875,20.900168065386115,0.0,10.442840646037716,0.0,22.250020814253602,20.404975449101798,23.74793697896838,153.39695904442596,,112.27969436009988,108.66386636533315,108.93613812702544,112.32063986421323,180.8590810933003,110.88848960747957,112.48366829889187,157.75390946560162,23.74793697896838,153.3969590444259,,110.74585977363367,106.8142254691792,107.38752324136621,110.79103067738707,186.61659001380178,109.24145375745056,110.9668261499753,160.47673225330533,4.799978732823203,111.79156916912973,,83.35688004302328,80.61374353339119,80.69977997904542,83.38753886512387,132.68145074836175,82.2950921759168,83.51224599574175,117.34859488082668,1.249891419945704,8.073524160232944,,5.909457597899994,5.719150861333324,5.733480954053971,5.9116126244322755,9.518899004910542,5.836236295130504,5.92019306836273,8.302837340294822,2.438920050140195,76.69847952221298,,56.23007274395972,54.440943493459855,54.56379457250227,56.250296943096394,89.84825193276806,55.5411292655062,56.33106015820573,78.64206559992805,32.57254901960785,0.0,1.5676236929957168,0.0,0.0,0.0,9.142265815276728,33.40932265112892,-0.04370055429579223,0.0,5.463571428571429,0.0,-1.86586262282691,0.0,0.0,0.0,0.0,20.170894972521886,308.9925745489311,59.06536224085537,124.78071905112637,151.24511249783654,151.24511249783654,151.24511249783654,151.24511249783654,466.0,111.74136149525042,146.54582678929307,66.19288880809327,133.07999999999998,133.07999999999998,1.0,7.6487397889562425,5.321928094887363,3.8773266027470936,4.283984054020979,,4.293803306133123,4.29330881630325,4.293121954545507,4.293809066836745,4.284824974498348,4.293652159679383,4.293823915501962,4.2910744878945755,0.20406982119721545,0.22547284494847258,,0.225989647691217,0.22596362191069735,0.22595378708134248,0.22598995088614446,0.2255171039209657,0.22598169261470438,0.2259907323948401,0.22584602567866185,1.996999782413722,2.0967373165336447,,2.0990267779037954,2.0989116076758143,2.098868082778739,2.0990281195348266,2.096933591296513,2.0989915762181837,2.0990315776856927,2.0983910511302937,181.91999999999982,112.04511433984133,96.04231147360339,,94.96903364911053,94.99913483088795,95.01367232228519,94.96873580138231,95.85523377696089,94.97901903612984,94.96768953915848,95.2083468817606,5.897111281044281,5.054858498610705,,4.998370192058449,4.999954464783577,5.000719595909747,4.998354515862227,5.045012304050573,4.998895738743676,4.9982994494293935,5.010965625355821,5.360755482968414,5.206642725057598,,5.195404763047599,5.195721670688181,5.195874686599513,5.195401626781136,5.204692958001805,5.195509901130221,5.1953906098082525,5.1979215014557,6.692031368102797,27.83457096843686,12.671790412152514,7.755911625835418,0.0,-0.5424683484504917,0.32880149281934923,1.2593624811035524,0.0,222.86580934668345,93.4833083400589,-180.7492832282789,-16.320484873447047,-5.648415100883716,-20.083253692030986,114.03192675372618,220.47988450408127,9.505897891043107,6.88999639075254,9.586081934960054,701.0,29.0,1.343189544674502,0.5917176487680227,0.0,0.0,0.4142664266089148,0.0966229031538001,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.05555555555555555,0.24719387459906544,0.1051115401751122,0.5129342533832978,0.1416358587271279,13.991199352633217,10.198248587486926,9.062080607913938,5.718568326564841,8.015677695897315,4.313854135284357,6.756833488775497,3.058755514576672,5.377308808163018,2.0538061214875083,4.126493361493014,1.2821929083033659,2.8219852945602337,0.7030950542255244,1.7262749770996715,0.37563776716600283,3.3739595651353556,1.1724400134953001,4.894694687077457,1.4273315613443267,7.337617767291267,1.6736738429288551,64.97285669051405,27.056474703476994,22.741729296672176,22.741729296672176,22.741729296672176,22.741729296672176,96.0,113.0,34.07630899999998,19.363691,0.34375,58.09,7.527777777777778,4.361111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,32.0,0.0,0.0,33.0,6.0,4.0,5.0,28.0,10.0,20.0,23.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,6.0,2.0,2.0,19.0,9.0,0.0,5.0,4.0,0.0,2.0,3.0,0.0,0.0,0.0,1.0,1.0,3.332204510175204,6.003578377491493,3.9219733362813143,4.409763389645481,4.898772200950862,5.348594519839047,5.5594789850497675,5.4956301578277245,5.703365721159859,5.926259136982707 +23716436,O=C([O-])CCC/C=C\CC1C(O)CC(O)C1/C=C/C(O)COc1cccc(Cl)c1,0,26.19298245614035,6.2198052631578955,2.912280701754386,6.764998917045701,162.24626725071704,105.17142035087721,1.4459050058907368,6.308108771929825,5.715492530289295,7.827969561403507,210.3514439079041,24.20689655172414,6.317672413793104,3.6379310344827585,5.46743295019157,144.69853551525776,91.30701225862073,1.789908477724138,6.4736379310344825,3.1378068681708524,7.793537827586204,258.84363037956354,20.0,6.193592233009708,3.174757281553398,3.9676375404530746,150.3402711961693,73.36273604854368,1.5217379591174176,6.322466990291263,3.3033381277717853,7.730321941747571,211.02855287961816,14.778523489932885,6.043167785234899,2.4496644295302015,2.6405667412378824,159.9575588849318,51.677711456375846,1.2086117411487785,6.133963758389261,2.843124257740216,7.681687892617449,159.47247524134872,13.684563758389261,5.953395973154363,2.2885906040268456,2.302013422818792,161.8493127593913,47.65470557718122,1.1360796464695302,6.034926174496644,2.867242522164222,7.608134738255035,147.57829754803785,13.121428571428572,5.910364285714285,2.3285714285714287,2.3968253968253967,161.7843121382418,45.490756864285714,1.1421004654854288,5.988814285714286,2.7829585537918873,7.559300014285713,149.0007203811994,14.191176470588236,5.994757352941176,2.3529411764705883,2.6200980392156867,160.72795153022943,49.544494132352945,1.1629441871387203,6.0797397058823535,2.984983962720891,7.634384279411764,153.4687090859674,13.829787234042554,6.0665673758865255,2.226950354609929,2.285263987391647,163.3263021137802,47.97347512056737,1.0884128724639222,6.135897872340425,3.064026792750197,7.7267495035461,142.48649703089146,12.278195488721805,5.963511278195488,2.2481203007518795,2.2280701754385968,165.210681055724,41.787582345864664,1.0694408482594513,6.028079699248122,2.7219669544230953,7.646730571428573,137.98642521192812,10.611265004616804,0.1500653739612188,0.027663050267019044,0.5287780855647892,3.822403094589408,1.2863276311367633,49.86219040320099,0.24737159128389904,0.14552028316405038,2.4810262278536785,0.10668862296091103,50.98603661843668,-0.16147674085394942,-0.012989965612761377,-0.008664971422423055,0.05894121268082495,0.3719685305142194,0.08825073760206874,-0.650938075009822,0.01631128982352978,-0.011887615287462325,-0.23280705145771152,-0.009263136875006645,2.426037749899632,-0.5961057472500872,0.000882147755694862,0.001257792678490409,-0.07757726798686371,-0.27705044051024535,-0.22670173672794827,-2.9356625815351722,-0.034646269281713105,-0.0004938311115891562,0.2165643850989743,0.001437980513795132,-7.980119508782397,-0.688858316756214,-0.009080033092267938,-4.2624465519353755e-05,-0.05744875552828852,-0.2896186519183924,-0.07411450075529057,-3.232753193852109,-0.01163416057726582,-0.009765897199138198,-0.17537746052199044,-0.006577554904864887,-3.411984077596327,0.20411236498168753,-0.0008005205525293767,0.0005148675152744016,-0.0009316237727251186,-0.15870764750371835,-0.02452018086688413,0.9025493468284523,-0.004721673563974863,0.000991055585507936,-0.030408019681561132,0.0017948872239470907,-0.8875078824649798,0.16931143648595168,-0.008535148397309128,-0.0010143542240240832,0.003302114936463959,-0.021883276525730633,0.01531370252306155,0.8669759422877379,0.0068433428513821675,-0.006780809479840021,-0.10836896168872327,-0.007257794389482446,1.9053386304412698,-0.18066644940524684,0.0016834263483786504,0.0005231366522855279,-0.05406188329440732,0.0591201124841943,-0.1095022004140206,-0.8824009535105821,-0.019358396611093315,0.0012639531620588784,0.036746658541191135,-0.0010291426977531392,-2.307079129470427,-0.01178758767018326,-0.00022050647335022813,0.0007201747560763241,0.022671460285652523,-0.1900453417887042,-0.031015144357694886,-0.12765251418766987,-0.006269597961746853,0.0006451268147973472,-0.07312733783774329,0.0028640991990989033,-2.083940039722753,-0.0981400870597545,-0.012682706766917332,-0.0011463597773310884,0.08129974057951897,-0.07011626966484868,0.2082481773800839,-0.2804758847997176,0.03644183949918328,-0.012376924768060543,-0.20571627503421655,-0.009149482478125122,5.5835531588096545,,,0.4729064039408867,0.9482758620689655,0.3620689655172414,0.034482758620689655,0.5862068965517241,-0.22413793103448276,1.0570541186928626,0.019004567643758033,0.024935602126516652,0.7378454097343123,0.18277850737052645,0.2952587719640981,1.794899528427175,0.4780372793346246,1.9875489607308394,1.5569952553419837,0.0,0.3698263062153573,0.060727399173498335,0.4305537053888556,7.423824383787908,1493.0,354.5289,166.0,385.60493827160496,9248.037233290872,5994.770960000001,82.416585335772,359.5622,325.7830742264898,446.1942649999999,11990.032302750533,1404.0,366.425,211.0,317.1111111111111,8392.51505988495,5295.806711000002,103.81469170800001,375.471,181.99279835390945,452.02519399999983,15012.930562014686,2060.0,637.9399999999999,327.0,408.6666666666667,15485.04793320544,7556.361812999999,156.739009789094,651.2141,340.2438271604939,796.2231599999998,21735.94094660067,2202.0,900.4319999999999,365.0,393.44444444444446,23833.676273854842,7699.979007000001,180.08314943116798,913.9605999999999,423.6255144032922,1144.571496,23761.39881096096,2039.0,887.056,341.0,343.0,24115.547601149305,7100.551131000001,169.27586732396,899.204,427.2191358024691,1133.6120760000001,21989.16633465764,1837.0,827.4509999999999,326.0,335.55555555555554,22649.80369935385,6368.705961,159.89406516796004,838.434,389.6141975308642,1058.302002,20860.100853367916,1930.0,815.2869999999999,320.0,356.33333333333337,21859.001408111202,6738.051202000001,158.16040945086596,826.8446,405.9578189300412,1038.2762619999999,20871.744435691566,1950.0,855.3860000000001,314.0,322.22222222222223,23029.00859804301,6764.259991999999,153.46621501741302,865.1615999999999,432.0277777777778,1089.47168,20090.596081355696,1633.0,793.1469999999999,299.0,296.33333333333337,21973.020580411292,5557.748452,142.235632818507,801.7346000000002,362.02160493827165,1017.0151660000001,18352.19455318644,604.8421052631578,8.553726315789472,1.5767938652200855,30.140350877192983,217.87697639159626,73.32067497479551,2842.1448529824565,14.100180703182245,8.294656140350872,141.41849498765967,6.0812515087719285,2906.2040872508906,-9.365650969529066,-0.7534180055401599,-0.5025683425005372,3.4185903354878473,21.574174769824726,5.118542780919987,-37.754408350569676,0.9460548097647272,-0.6894816866728148,-13.502808984547269,-0.5372619387503854,140.71018949417868,-61.39889196675898,0.09086121883657078,0.12955264588451212,-7.990458602646962,-28.536195372555273,-23.35027888297867,-302.3732458981227,-3.5685657360164496,-0.05086460449368309,22.306131665194354,0.1481119929208986,-821.9523094045869,-102.63988919667588,-1.3529249307479227,-0.0063510453623837095,-8.55986457371499,-43.15317913584047,-11.043060612538294,-481.6802258839642,-1.733489926012607,-1.4551186826715916,-26.131241617776574,-0.9800556808248682,-508.38562756185274,30.412742382271443,-0.11927756232687714,0.07671525977588584,-0.13881194213604267,-23.647439478054036,-3.6535069491657355,134.4798526774394,-0.7035293610322546,0.14766728224068246,-4.530794932552609,0.2674381963681165,-132.238674487282,23.703601108033233,-1.1949207756232778,-0.14200959136337166,0.4622960911049543,-3.0636587136022886,2.143918353228617,121.3766319202833,0.9580679991935035,-0.9493133271776029,-15.171654636421259,-1.0160912145275425,266.74740826177776,-24.57063711911357,0.22894598337949645,0.0711465847108318,-7.352416128039396,8.040335297850424,-14.892299256306803,-120.00652967743916,-2.632741939108691,0.17189763004000747,4.997545561601995,-0.13996340689442693,-313.76276160797806,-1.6620498614958397,-0.03109141274238217,0.1015446406067617,3.1966759002770058,-26.79639319220729,-4.373135354434979,-17.999004500461453,-0.8840133126063063,0.09096288088642596,-10.310954635121805,0.4038379870729454,-293.8355456009082,-13.052631578947349,-1.6868000000000052,-0.15246585038503477,10.812865497076023,-9.325463865424876,27.697007591551156,-37.30329267836244,4.846764653391377,-1.6461309941520523,-27.3602645795508,-1.2168811695906412,742.612570121684,0.7319104783212145,0.5833858429672046,0.46210270335680376,0.3395064237358107,0.31541192884333363,0.19802871569559707,0.19843912097781063,0.11649673397626867,0.13012592364228326,0.06791274745809646,0.08736981323919256,0.03906583897138292,0.059952712477868944,0.02406204982370101,0.04006387101979386,0.014501337315604886,17.001103543013762,5.700093239478176,3.555121850228211,2.1964134926186016,0.3781589631648625,-0.63430864477567,3.176742000528663,0.9727325949312171,7.004117614248935,0.7740014835779012,13.643184745313702,10.95967256227242,35.45051761455822,11.71152952300193,2.207827662875128,0.7415363415804505,3.501155034430596,2.247327801611157,8.001938331188002,1.1556610735864348,3.71408872962849,2.443614695032906,22.455866907162516,14.700804819841226,0.246349480629912,0.5986058479521755,0.8193276850903505,0.9253647099631296,0.9370606163958781,0.9370606163958781,1.64997966866397,704.2978336476307,0.0,1.0,1.0,0.0,10.0,8.0,0.0,2.0,0.0,4.35479313038527,2.241254926451688,0.9169239036226386,0.280701754385964,0.21052631578947256,0.21052631578947256,88.06717049632721,2006.86065435619,108.53938282449138,35.20808165537176,78.40942667255317,,18.0,807.0,24.281204451196757,25.220646763434644,31.28433730268772,30.03461001580326,0.0,0.0,36.417508487514205,12.152040213667762,0.0,16.337802844032566,13.714285714285714,27.5,10.5,1.0,17.0,0.0,0.027093596059113326,-6.5,0.1597700132684654,0.044215015149815184,-0.11555499811865022,0.05458743842364522,0.17798659966499142,0.0,0.5962406015037591,0.8822660098522164,0.4364705882352937,0.5520255863539439,0.8276785714285712,30.654569442093013,0.551132461668983,0.7231324616689829,21.397516882295058,5.300576713745267,8.562504386958846,52.05208632438807,13.863081100704113,0.5360134003350085,0.17361111111111113,0.0,0.2916666666666667,0.5,0.43764765153785945,-1.4897977358900443,-0.11668672321014965,-0.026136802384035856,-0.0744898867945022,0.5623523484621405,1.3519530352578764,0.037006994473685904,0.023718474302769764,0.03653927122318585,-3.0424887174275135,0.7351020800076815,0.8143440186075279,1.0581759054936015,1.2172935650917265,0.685511501668609,1.1752933658902054,0.740841499163778,1.0527946535089945,0.7910760057135163,0.7847413676663514,0.816005433865731,1.0171378408284706,0.8341742165930542,0.7766539624526267,0.7210534683026699,1.4430869039411371,0.913160874030975,1.3226058321035408,0.8430263235641607,1.1999523702320154,0.7746927178184437,0.6098311465065672,0.7611940948646732,1.1912167917247654,0.9743293846667774,1.00249475552932,0.8593454435468205,1.1472056628981724,0.997510901074787,1.056687043058677,0.9761726646544445,1.0239704193600256,1.0033933346647077,0.8956871306497515,0.9898265788146137,1.0528762456006673,0.8491206021346628,0.9162234730082581,0.8509125345931273,0.9165175676414747,0.9477306572365243,0.9927610939487181,0.8534581819200608,0.9681418759756827,0.8995836339077025,0.8185443862971443,0.8630288931182722,0.9991467737717428,0.8041768186564567,0.9337638013103552,0.8720404151151974,0.9754365541327125,0.894173199541125,0.9662035739556818,0.8073693547294242,0.9139454442195907,0.9168722453729459,0.8817469629195892,0.9020182099174091,0.9474337025435521,0.893184005241498,0.9033864660798531,0.817566737028954,1.1202492638498938,0.8458682051858419,1.073007193323535,0.8968226410484966,1.0395473186374125,0.900662801312713,0.8220471174280976,0.8986279954148376,1.0304622393706835,0.9045206903106201,1.0754647584050867,0.9469845646962054,0.8631015777871349,0.9828687466589351,0.9750582145950036,0.9066926250032259,0.9529738201083754,1.0463946354231999,0.9545744854675239,1.0186111621483638,0.9960268342300511,0.9279498781761226,1.1172157656127706,1.07046820549891,0.7823050058207217,1.0137523386133143,0.7659929775474434,0.9252853662625726,0.7725570745615269,1.1049472985566275,0.9573020362964699,1.0867327817124994,0.8485129357800889,6.0,0.23365574941332518,2.88888888888889,2.138888888888889,1.1522222222222223,0.7813888888888889,0.5756462585034013,0.30906320861678005,0.2615347064751826,0.27375771604938276,5437.823333838482,6309.287509099608,2677.9343287624133,2381.466749745963,16.815735937883197,0.4687164806946247,8.933923368788461,0.8822341813038852,1.0,0.5,1.478096883779472,3.5916350877130534,4.915966110542103,5.552188259778777,5.622363698375269,5.622363698375269,0.19999999999999998,0.007537282239139523,0.07407407407407413,0.05780780780780781,0.03491582491582492,0.02441840277777778,0.017443826015254585,0.010302106953892666,0.00968647061019195,0.009125257201646092,0.44531105259560944,25.26222222222222,13.420118343195266,9.347160493827161,175.6407082971613,1.0,4.255292702707626,204.24359224478587,,173.90777371544218,173.94547330749236,177.50490161543436,173.9007157402994,218.01741052544236,174.63270955419404,174.9210725964672,196.04958063123883,-0.015217482626594782,-0.08656204472670928,-0.3132326818186702,0.11146682188591402,0.09731274313814232,0.06860673398120129,-0.013054742877240988,0.06593841167804078,-0.08169043537429746,-0.09383498201029158,-0.08682403632110339,0.047582395314531484,-0.056176690242938095,0.00587842306595547,0.04546832928218325,-0.1467104445223051,-0.07248069699985563,-0.17623949858529098,-0.05887552387483387,-0.1400575915039124,-0.0033935551859285637,0.08728822882550617,0.013478292941525588,-0.1565157842823336,-0.06491764332117819,-0.060507183320080746,-0.0015408447408336704,-0.10864435780640827,-0.07576873625085384,-0.057617125653900106,-0.06483375815845781,-0.04703111022928148,-0.06711021300122638,-0.07068746736857694,-0.06165188679279135,-0.06691997071924875,0.01923544128743192,-0.005334478776804662,0.018612102074956158,-0.0017618426295599012,-0.04152038484072185,-0.01906215825062777,0.01810087642620914,-0.01908737191473202,0.006810429199005079,-0.01225622661307653,0.01682360474935278,-0.017406881203706953,0.015955820197901645,-0.05687620116493265,-0.03666819870668549,0.0062448029269915025,-0.005725004920780411,0.011904978290428548,0.01738744197310836,0.027664222944373273,-0.04659700580843265,-0.04367908749698009,-0.06802781953743638,0.03736981253711128,-0.01702591060789091,0.011217953242256244,0.0189110256185028,-0.10223926590426624,0.015466739383891384,-0.08512776820105347,-0.01769679483342422,-0.07825634508239232,0.008685752491520218,0.014811072179990802,-0.009646227209532926,-0.04524923454505545,-0.0011108560256533652,-0.0014694027511450666,0.026033815834653064,0.042875188863844615,-0.04971881224607431,-0.02411138780427654,-0.0025601064284467333,-0.02534485843425518,0.004433243261834997,-0.029474633124296042,0.026845404126626157,-0.04087276003267913,-0.009248669882154031,-0.08451454477563164,-0.04144010751763781,0.15375020788292035,-0.018343504839690484,0.16189357387592554,-0.0056250213344360405,0.1473161865921797,-0.0850529183901297,-0.08291580021392217,-0.08575874563005037,0.10951141781415949,17.136854882802677,23.318691054434108,5.8980462393313235,15.972721038390894,35.09133010156443,41.543282890667996,43.09666499253716,43.16740183464243,43.16740183464243,57.638919861194346,45.15286240491753,0.0,10.72496288024536,1.7610945760314518,12.486057456276813,11470.084853670847,10532.75295561929,1997.6526810257637,58.0,39.0,45.0,54.0,58.0,54.0,53.0,53.0,57.0,423.15798987591074,30.0,4.9344739331306915,5.726847747587197,6.5638555265321274,7.3796321526095525,8.224431573221159,9.053803514155955,9.904237271426673,10.743350700960299,11.598323040482457,0.6578947368421053,0.9854736842105264,1.1267016724337062,0.6191838767679334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6555541968694191,0.973512211902305,1.0119152579190145,0.6134252591584806,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,3.0,6.0,0.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,29.957509717234693,18.460360185545124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.97138738602965,49.80029374325026,23.33066627078058,12.207932775496605,309.0692756240307,-1052.1036853273847,-82.40483158261144,-18.4579593917085,-52.60518426636923,397.1364461203579,954.7569690288054,26.134551241879954,16.750122263663254,25.80424240618393,0.5,0.7314480983924395,0.1616201520754858,266.2429766040532,0.08780366599882014,71.21652793109088,0.2685519016075604,9.0,0.36666666666666664,0.2534072955584664,0.615755668114954,0.8428010983584541,0.9518760419441648,0.9639070314581236,0.9639070314581236,1.8602999999999985,,2.1470588235294117,1.8308934881373045,1.1704660278652468,2.1567782418700183,-6.2598206319064715,1.7453635560788934,1.7007529739754992,-2.310678238610545,108.31940000000004,29.957509717234693,0.0,0.0,11.835812092322787,50.416007277874954,6.606881964512918,53.59218201492329,0.0,5.749511833283905,4.110873864173311,0.0,5.37989735354046,2.3978952727983707,6.810142450115136,4.844187086458591,8.321907968230423,6.985641817639208,9.883335864325275,37.5,6.890358659900547,0.0,0.0,0.0,0.0,0.0,1.1056361921444502,0.0,56.172000000000004,0.0,10.393324459868877,0.0,0.0,0.0,7.1012698421353075,0.0,-1.059409470404001,64.22199532872125,9.843390348640755,0.0,5.749511833283905,46.207668600231784,4.794537184071822,11.835812092322787,32.10410811463005,48.569548701181965,5.022633313741326,0.0,0.0,35.293480975772205,37.366589221556886,35.72514254251589,408.4871844895718,,347.66747440857193,347.7646780985615,354.9290814358435,347.65268815357325,437.3299563540378,349.1450492079689,349.7248518843844,392.5772326221901,35.72514254251589,408.487184489572,,345.66848860735485,346.0600531268473,353.8393372030035,345.64465323872867,442.29464168279105,347.52005555230926,348.14139221895897,394.4098395010881,4.646333610772409,307.1601682414499,,263.4336599082697,263.08578486807306,268.0194872571172,263.43432577094154,327.2279573689682,264.09113844455345,264.50176841290994,294.3875983590468,1.2319014669833066,14.085764982399027,,11.988533600295584,11.991885451674534,12.238933842615292,11.98802372943356,15.080343322553027,12.039484455447203,12.05947765118567,13.537145952489313,2.405510650404828,204.24359224478587,,173.90777371544218,173.94547330749236,177.50490161543436,173.9007157402994,218.01741052544236,174.63270955419404,174.9210725964672,196.04958063123883,55.49019607843138,0.0,0.0,5.894319530491089,0.0,0.0,30.623521963448773,57.67916970138383,2.0536125124896927,0.0,5.502857607706301,0.0,-2.621037979872134,0.0,0.0,0.0,0.0,34.96523977203339,516.5528322437933,84.2515223754299,204.72319999964404,280.2100683008999,316.4747308073903,320.4747308073903,320.4747308073903,530.0,133.12895546010608,189.65288950059522,77.73388167728078,110.05000000000001,110.05000000000001,1.0,7.206840833871504,5.906890595608519,3.507256311021728,5.290174905804223,,5.297527086835416,5.295726570443425,5.295452119151232,5.297564282574257,5.2876580784047915,5.295976931911637,5.296015757397497,5.292287833307191,0.12093987279385268,0.18241982433807666,,0.1826733478219109,0.18261126104977327,0.18260179721211145,0.18267463043359505,0.18233303718637212,0.18261989420384955,0.1826212330137068,0.18249268390714452,2.3195447910292457,2.7305620457951107,,2.7319508612751933,2.731610924846296,2.7315590984537295,2.7319578825905446,2.7300861775429492,2.731658199860783,2.7316655309621156,2.730961372035729,318.63000000000085,1303.639289347249,174.29314480547916,,173.2159215096141,173.4694935681345,173.64372650619455,173.20923486010489,175.55225552720603,173.46685212555576,173.4735043347238,174.59030244816128,44.953078943008585,6.010108441568247,,5.972962810676348,5.981706674763259,5.987714707110157,5.972732236555341,6.053526052662277,5.981615590536405,5.981844977059441,6.020355256833148,8.23762582261431,6.225449358885407,,6.219249654471006,6.220712491341034,6.221716388298088,6.219211050753076,6.232647487870705,6.220697264094817,6.220735611949398,6.227152837321428,5.502857607706301,10.393324459868877,41.56418048640711,0.0,-0.9470535894151213,6.890358659900547,6.932950379982853,0.04684024283612209,0.0,404.2706625556466,218.26649086108395,-743.0016424465568,-58.194763563022896,-13.035116534150117,-37.15008212232784,280.4600305634288,674.2548344034724,18.45636962223754,11.82903218251706,18.223103632526282,2840.0,37.0,1.9332927526523607,0.8749997314234923,0.0,0.0,0.24800564528543081,0.1235304879001603,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.07856742013183861,0.3515792847081216,0.1989670913886154,0.560899670984031,0.23915236448504507,21.22540387131522,16.918189446048935,13.863081100704113,10.18519271207432,12.301065224890012,7.723119912128286,8.929760444001479,5.24235302893209,7.026799876683295,3.667288362737209,5.067449167873169,2.265818660340209,3.237446473804923,1.2993506904798544,2.1233851640490746,0.7685708777270589,3.358555525464207,1.574220610231561,4.913078322883663,2.122131439107844,6.442575287570722,2.3351536122240333,102.22991134975872,47.56538776787545,28.977149160135927,24.100464796731625,23.8314900588955,23.8314900588955,138.0,153.0,62.402203999999976,32.071796,0.2807017543859649,88.07,10.63888888888889,6.583333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,6.0,6.0,57.0,0.0,0.0,58.0,6.0,3.0,6.0,52.0,9.0,30.0,49.0,0.0,0.0,0.0,22.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,6.0,3.0,0.0,29.0,7.0,0.0,0.0,6.0,0.0,2.0,11.0,0.0,0.0,1.0,0.0,1.0,3.6109179126442243,5.4961431098779565,4.0163830207523885,4.3208159036289855,4.687901583585556,5.006041425086028,4.973711939991658,4.9724140812760576,5.1029105702054265,5.326661839557179 +53232,CC[C@H](C)C(=O)O[C@H]1C[C@@H](C)C=C2C=C[C@H](C)[C@H](CC[C@@H]3C[C@@H](O)CC(=O)O3)[C@H]21,0,18.76923076923077,5.930615384615385,2.8615384615384616,5.292307692307692,163.4977915083918,73.51934173846156,1.3254720703779077,5.991815384615385,3.9777777777777774,7.532241046153844,190.23652809721824,21.16417910447761,6.1410447761194025,3.611940298507463,4.776119402985074,144.1931536076515,78.31883431343283,1.7286238632238806,6.289283582089552,2.604892205638474,7.608923283582088,244.49712477773554,16.94573643410853,6.001705426356589,3.2248062015503876,3.434108527131783,152.29200675027545,61.17481801550388,1.4325486828316434,6.11109457364341,2.5202411714039625,7.54428750387597,195.0489082946652,13.378947368421052,5.920684210526316,2.663157894736842,2.336842105263158,158.46309708166635,46.23600412105263,1.2215104200297788,6.0029815789473675,2.3603801169590644,7.528304400000001,160.79945025602603,12.23222748815166,5.890663507109004,2.4597156398104265,2.042654028436019,161.17551298800967,41.66804694312796,1.1283760341724787,5.959005687203791,2.5699052132701423,7.520620492890996,145.64028446060593,11.668292682926829,5.880780487804878,2.4634146341463414,1.7951219512195122,161.46521240297585,39.10804543414634,1.1364655718431513,5.9490634146341455,2.3363143631436314,7.519249912195122,145.9212274684009,11.965686274509803,5.78186274509804,2.450980392156863,1.9215686274509804,159.7781466314397,40.71483409803921,1.1695582048073285,5.862774509803921,2.235021786492375,7.4094093333333335,149.43197913266323,11.605504587155963,5.776192660550459,2.330275229357798,1.7935779816513762,160.98402175838322,39.35553681192661,1.1375265069556695,5.850853669724771,2.2886085626911314,7.412943247706422,144.4704408879427,10.65158371040724,5.756108597285069,2.081447963800905,1.6153846153846154,161.1105987580029,34.928457058823525,1.0928335893074208,5.829667420814479,2.356083459024635,7.399034135746608,135.64464605532893,7.3136094674556205,0.11880710059171595,0.01642500993491844,0.5884023668639055,3.3751479289940822,1.2758721818984022,34.78365529846155,0.22798864615913747,0.11305562130177506,1.5313609467455627,0.07631673940828398,50.571463428382806,0.28914598604610064,-0.00024452883511426565,-0.008879185312575555,0.19185021637375255,1.1341517265742294,-0.008516448150564593,1.3782308131343168,0.0003704262779425682,0.0008167093526451337,-0.07676852424269182,-0.0014519329788925154,1.3032997359817267,0.4061281592587494,0.01943261318288157,0.0011280942767005562,-0.006887757442319133,0.3172790238979862,-0.058087016780979765,1.8096661996899168,-0.010001559950432238,0.017517068024402584,0.16320607107726967,0.013027265362139351,-0.9814951076324296,-0.4075365929616942,-0.010491311118031725,-0.0013143585731496747,-0.023220180629087497,-0.2569293055123015,-0.04768037493872007,-1.9077421831578967,-0.008343850355527,-0.009593394581127346,-0.11189401017336241,-0.007058019408284019,-1.9820563070931096,-0.1969488768613815,0.001671936958411647,0.001920981195299206,-0.033170868504444874,-0.3121512100731932,-0.03657335674316656,-0.9640745590521337,-0.007268543983798325,0.0009310356431756537,0.05962418713056702,0.0017475128702431383,-1.87301710380641,-0.7665175349978351,-0.019045749747438265,-0.0014591364148843623,-0.014518689565593872,-0.5361235387501803,0.053597595362967494,-3.5340318458536593,0.007111219405532048,-0.01837449559821039,-0.18551979602636262,-0.011304068488959441,-0.9505404605560739,-0.22122636036663182,-0.005201519897899995,-0.0001280594760970823,-0.0502424875275554,-0.14543450516301193,-0.049833941968454774,-1.0479561178431378,-0.008438319291945138,-0.004657582086088873,-0.031314859934769464,-0.003683168065900917,-1.5985789677283935,-0.05672873351066716,-0.000279224797785147,0.0012201046879943456,-0.07873405352586721,-0.16999619998914273,-0.001144182497241091,-0.2697590444036702,-0.0004708435217963765,-0.00040886759676456673,-0.04696707863609771,-1.7596438847065159e-07,-0.2801816879828229,-0.7887225896275668,-0.007047963800904989,-0.0019351315367882784,-0.05251653324051514,-0.08875739644970408,-0.1893605265351775,-3.8034387771945695,-0.03378270002153278,-0.007182701009397844,-0.07499903314382952,-0.0042213703863557255,-7.033962003400007,,,0.47126436781609204,0.7672413793103449,0.1724137931034483,0.0,0.5948275862068966,-0.4224137931034483,1.4144836598550246,0.02193508832746391,0.03083164005160184,0.5310739686434552,0.11114653309473757,0.3639602255561811,1.9455576284984797,0.4751067586509187,2.01360531276839,1.6919581008882814,0.0,0.3216472118801081,0.0,0.3216472118801081,6.2193272961846295,1220.0,385.49000000000007,186.0,344.0,10627.356448045466,4778.757213000002,86.155684574564,389.468,258.55555555555554,489.5956679999999,12365.374326319186,1418.0,411.45,242.0,320.0,9660.941291712652,5247.3618989999995,115.817798836,421.38199999999995,174.52777777777774,509.7978599999999,16381.307360108282,2186.0,774.22,416.0,443.0,19645.668870785532,7891.551524,184.798780085282,788.3311999999999,325.11111111111114,973.2130880000001,25161.309170011813,2542.0,1124.93,506.0,444.0,30107.988445516607,8784.840783,232.086979805658,1140.5665,448.47222222222223,1430.3778360000001,30551.89554864495,2581.0,1242.9299999999998,519.0,431.0,34008.03324047004,8791.957905,238.08734321039302,1257.3501999999999,542.25,1586.850924,30730.100021187853,2392.0,1205.56,505.0,368.0,33100.36854261005,8017.149314,232.975442227846,1219.5579999999998,478.9444444444444,1541.446232,29913.851631022182,2441.0,1179.5000000000002,500.0,392.0,32594.7419128137,8305.826156,238.589873780695,1196.0059999999999,455.94444444444446,1511.519504,30484.1237430633,2530.0,1259.21,508.0,391.0,35094.51674332754,8579.507025,247.98077851633596,1275.4861,498.91666666666663,1616.021628,31494.556113571507,2354.0,1272.1000000000001,460.0,357.0,35605.44232551864,7719.189009999999,241.51622323694,1288.3564999999999,520.6944444444443,1635.1865440000004,29977.466778227696,475.38461538461536,7.722461538461537,1.0676256457696984,38.24615384615385,219.38461538461536,82.93169182339615,2260.9375944000003,14.819262000343935,7.348615384615379,99.53846153846158,4.960588061538459,3287.1451228448823,19.372781065088745,-0.0163834319526558,-0.5949054159425622,12.85396449704142,75.98816568047337,-0.5706020260878277,92.34146447999923,0.02481856062215207,0.05471952662722396,-5.143491124260351,-0.09727950958579853,87.32108231077568,52.39053254437867,2.5068071005917223,0.14552416169437174,-0.8885207100591682,40.92899408284022,-7.49322516474639,233.44693975999928,-1.2902012336057587,2.2597017751479336,21.053583168967787,1.6805172317159762,-126.61286888458342,-77.4319526627219,-1.9933491124260276,-0.24972812889843818,-4.4118343195266245,-48.81656804733728,-9.059271238356814,-362.4710148000004,-1.58533156755013,-1.8227449704141956,-21.259861932938858,-1.3410236875739636,-376.5906983476908,-41.556213017751496,0.3527786982248575,0.4053270322081325,-6.999053254437868,-65.86390532544377,-7.716978272808144,-203.4197319600002,-1.5336627805814464,0.1964485207100629,12.580703484549641,0.36872521562130217,-395.2066089031525,-157.1360946745562,-3.904378698224844,-0.29912296505129427,-2.9763313609467437,-109.90532544378696,10.987507049408336,-724.4765284000001,1.4577999781340698,-3.76677159763313,-38.031558185404336,-2.3173340402366853,-194.86079441399514,-45.13017751479289,-1.061110059171599,-0.02612413312380479,-10.249467455621302,-29.668639053254434,-10.166124161564774,-213.7830480400001,-1.721417135556808,-0.9501467455621302,-6.388231426692971,-0.751366285443787,-326.11010941659225,-12.36686390532544,-0.06087100591716205,0.26598282198276735,-17.16402366863905,-37.05917159763312,-0.24943178439855784,-58.807471680000106,-0.10264388775161007,-0.08913313609467555,-10.2388231426693,-3.8360236686602045e-05,-61.07960798025539,-174.30769230769226,-1.5576000000000025,-0.42766406963020953,-11.606153846153846,-19.615384615384603,-41.848676364274226,-840.5599697599998,-7.465976704758745,-1.5873769230769235,-16.574786324786324,-0.9329228553846153,-1554.5056027514015,0.7285871570392383,0.6266793243296753,0.4444547097056982,0.36320960751305725,0.2920890632870143,0.21261424727271258,0.18198692540553377,0.12383880257083334,0.11525611321802334,0.06851210760452617,0.06986990609977659,0.04085621248084265,0.0470969732375518,0.024732426150092097,0.03016152378463885,0.015559779504702057,8.031323709941647,5.704734050630095,3.55793560741834,2.2046666234142327,0.43264497907742455,-0.49452999187002994,3.2007648699698423,0.9772031270975028,6.030548258705411,0.987555678560443,13.64516791395821,10.965045373694654,16.01643778598021,11.715772512946542,1.9749658730510966,0.7404096546914776,3.5041217040395587,2.254651631521438,7.009362274431043,1.1437802202678273,3.717020021083964,2.450654289720376,20.883906061627403,14.69976971584627,0.20935912091973627,0.4661467280302481,0.724746003010205,0.866001075653452,0.9016865017350653,0.9016865017350653,1.6818633699406182,666.182169981736,0.0,2.0,4.0,0.0,3.0,9.0,1.0,5.0,0.0,4.734862162210273,3.1556833150579036,1.5653631686439144,0.6966801925406818,0.4772238462869831,0.4772238462869831,249.9978381621277,1609.6395058949838,65.29997799880837,24.763684706076674,49.43453597100607,,13.0,609.0,6.103966387748303,14.69560176298435,42.4031770666491,24.17453976141019,25.683286491704038,5.573104530069267,0.0,13.847474399381248,32.07553471988289,9.473725907600098,13.66666666666667,22.25,5.0,0.0,17.25,0.0,0.028735632183907945,-12.25,0.09767686129131908,0.013764399851356468,-0.08391246143996262,0.017739463601532557,0.147701657458563,0.0,0.537435897435897,0.8321839080459765,0.43975903614457795,0.5236714975845406,0.814444444444444,41.02002613579571,0.6361175614964534,0.8941175614964534,15.4011450906602,3.2232494597473895,10.554846541129253,56.42117122645591,13.778096000876642,0.566298342541437,0.21951219512195116,0.0,0.4024390243902438,0.75,0.305616063993602,-0.7649955607469118,-0.06758981652689357,-0.01176916247302941,-0.03824977803734559,0.6943839360063978,1.7381305863227876,0.033957195542128914,0.026740470558812113,0.038625124140506395,-3.1868136527279023,0.9564604163647781,0.7322698008879818,1.531260436137536,1.1114179704854648,0.5464403089740638,1.326062954524684,0.9661017801448559,1.3058308991143417,0.7389626418841604,0.680553953570632,0.7441729161516405,1.1920225227766041,0.9324803692832594,0.6691042431497984,0.9120632636751012,1.4204194652846636,0.8695217282581515,1.2128361376937165,0.9415267988105651,1.2052235741379698,0.6877439663060262,0.5331064863073056,0.6573862258085846,1.1321891973230545,1.058954181570431,1.0967869110979696,1.2333025348208921,1.1757632214083074,1.1170000738170813,1.0906690585718652,1.0587215859251902,1.0842031692739236,1.0890667442378086,0.8986035413107728,1.1104961145902121,1.0663081058883377,1.031402322121505,1.0449729005426684,1.0085779102618864,1.1380508096525375,1.1745046296604031,1.0319393269267059,1.0311582488400763,1.0307582423759667,1.0429629594351455,0.9405812707086538,1.048079622046076,1.0286134180767765,1.1128139553240193,1.2413077322262585,1.145893086324098,1.0693248042697643,1.2330722129100675,0.9587270287097533,1.1081439251469556,0.9642586482710319,1.2334264498781153,1.138130960907754,1.2441329666768108,1.0067155259421132,0.9928802588996765,0.8907045167258072,0.9144301582084143,1.1647973751045066,0.9817121799631495,1.0671712219192344,0.9958788928845618,1.0678378967388886,0.9003504831149898,0.7826098668902557,0.8803997304308318,1.053097637294271,0.9735815444909593,0.8821639357205989,0.7630920961460862,1.2243241048956723,1.0123396425492492,1.0081521117688648,0.9757917013761845,1.0120982640835425,0.8930287444871733,0.9236923493832583,0.8676152763058869,1.0114882827295957,1.0694079573577004,0.9313139551780546,0.93048072670872,0.9919076238701432,0.9319363088854057,1.147509490692692,1.07313013785587,1.1507528222036967,0.945913288063624,0.9682900465698898,0.9136604101875963,1.1396263618525417,7.5,0.18589939802061015,3.333333333333335,2.6875,1.9822222222222226,1.034722222222222,0.9591836734693877,0.5989583333333334,0.4809775762156714,0.23500000000000004,5609.8119663895395,6733.295059615342,2665.1590684200796,2303.757497875459,12.817559866932248,0.4797428456742242,6.668427221770441,0.9221263786289381,1.0,0.75,1.2875056508181806,2.866684497970551,4.45700464438454,5.3256876204877726,5.545143966741471,5.545143966741471,0.2419354838709677,0.010935258707094714,0.0757575757575758,0.057180851063829786,0.04404938271604939,0.024636243386243387,0.02179962894248608,0.013310185185185184,0.012657304637254509,0.008703703703703703,0.5109656179703903,23.658688865764827,10.543388429752065,6.035714285714286,174.08058854529264,1.0,4.284711952539156,160.55072456440126,,145.84982820952064,144.5183699941923,148.72543915949728,145.8772396169885,192.43380670961574,145.52442614898257,145.9060093979677,168.9702564825415,0.039535333043520235,-0.0020582005107135483,-0.5405893419704435,0.3260527611339921,0.33603022754390743,-0.006675001047434671,0.0396229436299432,0.0016247575665851728,0.007223960588966404,-0.05013091420794015,-0.019025091875648343,0.025771445942579956,0.05553046837761218,0.1635644089124126,0.06868149737324089,-0.011705862909814293,0.09400447938071471,-0.04552730093585913,0.052026337777385835,-0.043868675563129095,0.15494203492672814,0.10657583466792335,0.17069997307465254,-0.019408081971414214,-0.055723045477772105,-0.08830542169432633,-0.08002178253514715,-0.039463098615404126,-0.07612386506237545,-0.03737080846748712,-0.05484593746081295,-0.036597657366248586,-0.08485552925776298,-0.07306834512866399,-0.09248324106883803,-0.039193176798215754,-0.026929094004509282,0.014072702305540702,0.11695464434486172,-0.05637446477525325,-0.09248519372785703,-0.028665376721944157,-0.027716309593683618,-0.03188116648021515,0.008235199917131725,0.03893542358989885,0.02289815948365124,-0.03703703584648877,-0.1048070092351409,-0.16030817731079505,-0.08883625767448329,-0.024674764044502855,-0.1588444566072589,0.04200859312036907,-0.10160035843070142,0.03119111203708089,-0.1625261564762361,-0.12114700745152732,-0.14812043303480565,-0.0187959848522515,-0.030248588108382508,-0.04378122075190749,-0.007796614833385074,-0.08538797659047527,-0.04308981657179001,-0.03905872600365469,-0.0301278318466285,-0.037012015440694976,-0.041197262307343094,-0.02044903913823817,-0.04826160151046912,-0.03161029678313016,-0.007756598675811286,-0.002350236613758559,0.07428334550961137,-0.13380988581930367,-0.05036703681305246,-0.0008967845787958423,-0.007755339169762341,-0.0020652060079681548,-0.0036165171802752913,-0.030670155678131802,-2.3057115625612157e-06,-0.005540312045341628,-0.10784313725490194,-0.05932274894179533,-0.11781615624318878,-0.0892527566135062,-0.026297335203366044,-0.1484165335852242,-0.10934557465450714,-0.14817711579353057,-0.06353245355421411,-0.04897541190613287,-0.05531381999658002,-0.13908954826591505,7.784998940627467,26.119520663861703,14.370146608176501,11.404651153022856,27.22288553120147,34.176710917867204,36.77975916064548,37.00097115766922,37.00097115766922,58.394554070283306,49.06678492576016,0.0,9.327769144523135,0.0,9.327769144523135,5833.140305070454,4802.18367672294,2441.963902390482,134.0,44.0,56.0,74.0,93.0,105.0,114.0,124.0,137.0,404.25627425200094,31.0,5.017279836814924,5.860786223465865,6.748759547491679,7.613324979540639,8.508555998020574,9.383368881858544,10.28236909466127,11.163779251737894,12.065113737076855,0.5641025641025641,0.9643076923076923,1.131109907578634,0.518175006244276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6273104375863657,0.9508295625942687,0.9943750350159671,0.574259938311231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,4.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,0.0,8.0,0.0,0.0,0.0,0.0,14.580253302440804,12.207932775496605,0.0,0.0,0.0,9.589074368143644,0.0,0.0,0.0,45.92300911926414,49.010109160257485,12.338727669087403,18.442694056835705,196.52692726497796,-491.9316902402314,-43.463745926366286,-7.568179849849713,-24.59658451201157,446.52476542710565,1117.7078156547525,21.83623207244208,17.19550485622696,24.837951458994503,0.46153846153846156,0.7672263177316516,0.18464421668634398,101.70844673676454,0.12321824265308243,19.938878882356605,0.23277368226834827,7.0,0.1935483870967742,0.21378728280807804,0.4760062133317274,0.7400751303735559,0.8843178938633535,0.9207581036059299,0.9207581036059299,4.195500000000004,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,110.83780000000007,24.169327670584448,0.0,0.0,29.589530230806965,84.53177769956346,0.0,23.80116485057091,0.0,0.0,4.143134726391533,0.0,5.476463551931511,0.0,6.9985096422506015,0.0,8.617400451833262,0.0,10.291229868989722,36.666666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.68,0.0,24.21316292324496,0.0,0.0,0.0,6.77212821239607,0.0,0.8643411429562784,73.5221439926112,0.0,0.0,0.0,35.35703713398931,19.06280027574374,29.589530230806965,66.21987853631856,23.80116485057091,0.0,0.0,0.0,33.681375405877944,40.775178443113774,36.16645310232926,321.1014491288026,,291.61344952248953,288.93821782089697,297.39117687558826,291.6685255860119,385.3976988207495,290.9596381840919,291.7263309337909,338.0780972678616,36.16645310232926,321.10144912880264,,290.52099482850576,287.70372323766253,296.61774343180866,290.5790354180094,390.27908474092726,289.8321125444296,290.6399538879191,339.9354853553732,4.952964654235849,230.00452079323486,,210.89235629803574,209.0678842984798,214.84500019514238,210.9299556044753,276.75764224210076,210.4461299899637,210.96941978858177,243.01114659474968,1.2471190724941124,11.072463763062158,,10.055636190430674,9.963386821410241,10.254868168123734,10.057535365034894,13.289575821405155,10.033090971865237,10.059528652889341,11.65786542302971,2.4764823271179246,160.55072456440126,,145.84982820952064,144.5183699941923,148.72543915949728,145.8772396169885,192.43380670961574,145.52442614898257,145.9060093979677,168.9702564825415,61.80392156862746,0.0,8.325527490847552,0.0,0.0,0.0,9.893439565731441,64.63437727603787,3.8558268627393257,0.0,11.505992733717301,0.0,0.23624773503373875,0.0,0.0,0.0,0.0,37.326895990230014,493.36618229525305,83.68786730318173,186.3344923680858,289.7053018849951,346.1696953317052,360.43435783819564,360.43435783819564,941.0,136.64333755066824,149.68551039683064,64.52673824139663,72.83,72.83,0.8571428571428571,7.432483807917119,5.954196310386875,4.19157650036016,5.300225679177484,,5.301990452392005,5.302386241685649,5.3010248604715455,5.301981943641746,5.278929340197231,5.302090371202389,5.301972998024119,5.292254105529472,0.14453712070207447,0.18276640273025807,,0.18282725697903465,0.18284090488571203,0.18279396070591536,0.1828269635738533,0.18203204621369762,0.1828307024552548,0.18282665510427995,0.18249152088032664,2.497787653230289,2.732460137620844,,2.7327930441017005,2.732867690505774,2.732610908757247,2.7327914392785377,2.728434037670872,2.7328118894522877,2.7327897520556714,2.730954999010252,328.59000000000117,392.3996203590014,181.6864156073484,,180.84776732341274,180.7791440125407,181.000983496011,180.8491967778759,183.5328813457438,180.83084815074318,180.85069776468765,182.14765197442154,13.531021391689704,6.265048814046497,,6.236129907703887,6.233763586639335,6.24141322400038,6.2361791992371005,6.328720046404959,6.235546487956661,6.236230957403023,6.2809535163593635,7.036991497198462,6.266992946844305,,6.2623663498535205,6.261986824383792,6.263213201923111,6.262374254008684,6.277104578329523,6.262272790699299,6.262382553634061,6.269528369748608,11.505992733717301,24.21316292324496,9.893439565731441,1.2726621945074328,0.7548182808576572,0.0,9.701063477760322,8.325527490847552,0.0,419.9960264435773,126.3769732373181,-316.3375060978586,-27.9494353886885,-4.866730863043978,-15.816875304892932,287.1385062368359,718.7439027919601,14.041825996201046,11.057598504491695,15.972086728710227,2246.0,47.0,2.3577835381353167,1.411023056042776,0.0,0.0,0.4193637438053669,0.21172461380250346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17915249285508827,0.1053794158928871,0.5165912672051698,0.24563431687078024,21.12902755413791,18.173700405560584,13.778096000876644,11.259497832904774,12.851918784628628,9.355026879999354,10.191267822709891,6.934972943966667,8.528952378133727,5.069895962734936,6.4979012672792225,3.7996277607183666,4.945182189942939,2.5969047457596703,3.438413711448829,1.7738148635360345,4.760060070825025,2.7394432147630305,7.668088884840157,3.919834629376152,11.175142983488909,5.5647792745004026,104.80810133504434,52.539462860434625,33.101840452201884,24.183160529469284,22.471807847835738,22.471807847835738,150.0,175.0,68.09454799999997,41.323452000000024,0.27692307692307694,149.05,10.972222222222221,6.388888888888888,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,65.0,0.0,0.0,67.0,0.0,4.0,4.0,63.0,4.0,31.0,63.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,5.0,1.0,1.0,29.0,5.0,0.0,0.0,5.0,0.0,3.0,6.0,0.0,0.0,0.0,0.0,0.0,3.58351893845611,5.736572297479192,3.9889840465642745,4.31748811353631,4.663439094112067,4.976733742420574,5.187385805840755,5.3471075307174685,5.529429087511423,5.713732805509369 +2202,O=C1c2c(O)cccc2Cc2cccc(O)c21,0,26.14814814814815,6.394444444444445,3.8518518518518516,9.481481481481481,154.83893936703666,103.62082729629628,1.682234853647778,6.479103703703704,6.544238683127572,7.881741185185187,255.15727406270327,27.03448275862069,6.4017241379310335,4.586206896551724,8.96551724137931,140.83064199243105,103.92512382758618,2.021321050068965,6.564551724137932,3.7816091954022992,7.814941379310347,302.2889353942009,25.29787234042553,6.251914893617022,4.48936170212766,8.25531914893617,141.50338968779678,96.7178349787234,1.9123457549967866,6.41504255319149,3.593380614657211,7.679372255319149,281.4913125540522,22.41269841269841,6.293809523809522,3.7142857142857144,7.142857142857143,147.41809784229673,84.1633168095238,1.6469911055777142,6.422674603174604,3.7716049382716053,7.7708619047619045,241.1534003508298,20.35820895522388,6.378656716417909,3.0597014925373136,5.955223880597015,153.37591597616856,75.35869717910448,1.3895002464297317,6.46791343283582,4.912935323383086,7.893468477611939,202.19161804578061,15.482758620689655,6.428275862068965,2.5172413793103448,3.9655172413793105,159.6342304649206,53.3423336551724,1.2168524836740342,6.48394827586207,4.126436781609195,8.01902593103448,170.86973940416812,14.875,6.03475,2.35,3.625,160.35035562669847,53.18381947499999,1.1627737721334745,6.101815,3.991666666666667,7.6364475,157.75361269207718,11.615384615384615,6.264615384615384,1.9230769230769231,1.8461538461538463,160.95892312369227,36.19805892307692,1.0747666948345385,6.314500000000002,3.7435897435897436,7.886907076923079,138.96364267123937,3.588235294117647,5.409411764705884,1.3529411764705883,0.0,173.72721811105538,6.708299294117647,0.6913128220965296,5.432705882352941,1.9411764705882353,7.183194352941176,66.60003878543634,7.048010973936898,0.1444444444444444,0.033104433123578796,0.6913580246913577,3.862825788751714,1.3701737750909866,33.41442762414266,0.23743708623364881,0.13243648834019198,2.5195092211553116,0.09846782990397802,48.653086443659305,-0.28172744903268526,-0.020689655172413782,-0.015608588189182681,0.2677735206470839,0.5254245305330872,0.28452438862651813,-1.1174683112435604,0.04714371395193228,-0.01953074121375531,-0.3567094482022821,-0.01225699976349273,6.218993198460233,0.13638618918366793,0.0019148936170212745,-0.00022934139188488455,0.009193590753874504,0.15608674079911292,-0.0731702824457165,0.6111122221930334,-0.011207674507759937,0.0024656393193824063,-0.008192348727328148,0.0002181937366838835,-0.9522991377761257,-0.10973936899862811,-0.0038095238095238113,-0.003321617924730531,-0.15167548500881828,0.11953752694493444,-0.21920490250972977,-0.5917355782872835,-0.03509382224251302,-0.0021029786400156977,-0.14874692446708912,-0.004735667646482463,-4.534567064195775,0.4511598386667485,0.03164179104477611,0.006894505045290431,-0.17449788096554264,-0.10107896730340063,-0.3086575931588182,1.8570127683393733,-0.051752730297389006,0.029151903036259006,0.5885922468134863,0.019926681981041285,-6.899348552237145,-2.7913059930939887,-0.06310344827586203,-0.007024842189865421,-0.02341421881651772,-1.5320467338347286,0.06883589788419783,-12.954371431294636,0.004695827951816037,-0.06104223546662883,-1.003438552785793,-0.037517510619175985,-6.568334659038052,1.634396433470507,0.03474999999999997,0.011604576561553327,-0.08950617283950621,0.23624828532235922,0.021090816624155722,7.621951199005491,0.00741916182575209,0.03357258573388207,0.5266841944825484,0.020854573799725645,5.275269416549868,-4.247441173367099,-0.06230769230769228,-0.015698193348487453,0.02374169040835701,-1.834335760261686,-0.28774599887627594,-20.05415867542471,-0.06098675882791379,-0.06302993563363929,-0.8222157738618645,-0.03453945383560196,-21.017329805286906,2.6360848866295488,0.012352941176470553,0.004141304647239376,0.33042846768336953,1.7145162591785683,0.46867301397698435,12.706496717905276,0.08842895698617033,0.01591427418704124,0.06539758107175199,0.0036716820785927373,21.32480113507919,,,0.4705882352941176,1.4558823529411764,0.8529411764705882,0.058823529411764705,0.6029411764705882,0.25,0.5767166927372311,0.013686647765943546,0.028863118354178843,0.9597188499748258,0.2933687164099184,0.18789837478726135,1.536435542712057,0.48126709119717975,2.061110068417026,1.745785127518378,0.0,0.3153249408986478,0.0,0.3153249408986478,8.372703488148149,706.0,172.65,104.0,256.0,4180.65136290999,2797.7623369999997,45.42034104849001,174.9358,176.69444444444446,212.80701200000004,6889.246399692988,784.0,185.64999999999998,133.0,260.0,4084.088617780501,3013.828590999999,58.61831045199998,190.372,109.66666666666667,226.63330000000005,8766.379126431826,1189.0,293.84000000000003,211.0,388.0,6650.659315326449,4545.738244,89.88025048484897,301.507,168.8888888888889,360.930496,13230.091690040452,1412.0,396.50999999999993,234.0,450.0,9287.340164064693,5302.2889589999995,103.760439651396,404.6285000000001,237.61111111111114,489.5643,15192.664222102278,1364.0,427.36999999999995,205.0,399.0,10276.186370403293,5049.032711000001,93.09651651079203,433.3501999999999,329.16666666666674,528.8623879999999,13546.8384090673,898.0,372.84,146.0,230.0,9258.785366965394,3093.8553519999996,70.57744405309398,376.0690000000001,239.33333333333334,465.10350399999993,9910.444885441751,595.0,241.39,94.0,145.0,6414.014225067939,2127.352779,46.51095088533898,244.0726,159.66666666666669,305.4579,6310.144507683088,302.0,162.88,50.0,48.0,4184.932001215999,941.1495319999999,27.943934065698002,164.17700000000005,97.33333333333333,205.05958400000006,3613.0547094522235,61.0,91.96000000000002,23.0,0.0,2953.3627078879413,114.041088,11.752317975641002,92.35600000000001,33.0,122.11430399999999,1132.2006593524177,190.29629629629625,3.8999999999999986,0.8938196943366274,18.666666666666657,104.29629629629628,36.994691927456635,902.1895458518518,6.410801328308518,3.5757851851851834,68.02674897119341,2.6586314074074067,1313.6333339788011,-8.170096021947872,-0.5999999999999996,-0.45264905748629775,7.765432098765432,15.23731138545953,8.251207270169026,-32.40658102606325,1.3671677046060362,-0.566391495198904,-10.344573997866181,-0.3554529931412892,180.35080275534676,6.410150891632393,0.0899999999999999,-0.010779045418589574,0.4320987654321017,7.3360768175583075,-3.439003274948675,28.722274443072568,-0.526760701864717,0.11588504801097309,-0.38504039018442293,0.010255105624142525,-44.75805947547791,-6.913580246913571,-0.2400000000000001,-0.20926192925802345,-9.555555555555552,7.53086419753087,-13.809908858112975,-37.27934143209886,-2.2109108012783203,-0.13248765432098897,-9.371056241426615,-0.29834706172839515,-285.67772504433384,30.22770919067215,2.119999999999999,0.46193183803445886,-11.691358024691358,-6.772290809327842,-20.680058741640817,124.41985547873801,-3.4674329299250632,1.9531775034293535,39.43568053650358,1.3350876927297661,-462.2563529998887,-161.89574759945134,-3.6599999999999984,-0.4074408470121944,-1.3580246913580276,-88.85871056241426,3.992482077283474,-751.3535430150889,0.27235802120533015,-3.5404496570644723,-58.199436061575994,-2.176015615912207,-380.963410224207,65.37585733882028,1.3899999999999988,0.4641830624621331,-3.580246913580248,9.449931412894369,0.8436326649662289,304.87804796021965,0.2967664730300836,1.3429034293552826,21.06736777930194,0.8341829519890258,211.01077666199473,-110.43347050754457,-1.6199999999999992,-0.4081530270606738,0.6172839506172823,-47.692729766803836,-7.481395970783174,-521.4081255610424,-1.5856557295257585,-1.6387783264746216,-21.377610120408477,-0.898025799725651,-546.4505749374596,44.81344307270233,0.2099999999999994,0.07040217900306939,5.617283950617282,29.146776406035663,7.967441237608734,216.0104442043897,1.5032922687648955,0.27054266117970105,1.1117588782197838,0.062418595336076535,362.5216192963463,0.705364667801954,0.5278755222228284,0.4306073973869502,0.2813935996647907,0.2709304983533651,0.14744376158567457,0.1672824747924006,0.07731356037454909,0.11059867861784291,0.04146893410018979,0.0659543157302165,0.02269238893198634,0.04433300544815054,0.012258257367801392,0.02757369412053301,0.006709541031755459,8.022155906883336,5.674320654980578,3.543452207022699,2.1730702375712774,0.4177230536786559,-0.37527832071736184,3.2733875954536047,0.9780140404287999,6.0219538126433125,1.9899155746390327,13.636920769591141,10.934833660298242,16.010380175177275,11.686047153506832,2.009443471062337,0.7527558805324066,3.488573908804528,2.222797013686441,7.008270006768681,1.3552250638144967,3.7016557890051276,2.4188453178281915,20.915877335711418,14.702451853336674,0.2658167738891445,0.6115312764294006,0.6796587422922293,0.7477862081550581,0.7477862081550581,0.7477862081550581,1.8267815716666844,575.8596033380337,0.0,0.0,0.0,0.0,9.0,1.0,4.0,0.0,0.0,3.380634717031242,1.5933166669871799,1.2411027779380341,0.888888888888888,0.888888888888888,0.888888888888888,69.52414453892706,649.8247559784538,58.80769995869173,24.067583554757547,47.79159435546276,,7.0,215.0,0.0,15.007591973753234,17.28226861293275,17.54772460632,11.126902983393991,12.13273413692322,12.13273413692322,12.13273413692322,0.0,0.0,7.999999999999999,24.75,14.5,1.0,10.25,0.0,0.029411764705882405,4.25,0.19235618597320703,0.10370370370370352,-0.08865248226950351,0.05634674922600602,0.15061971830985899,0.0,0.6370370370370372,0.8352941176470585,0.44468085106383015,0.5333333333333337,0.7789473684210525,9.804183776532929,0.2326730120210403,0.4906730120210403,16.31522044957204,4.987268178968613,3.194272371383443,26.11940422610497,8.181540550352056,0.563380281690141,0.12500000000000003,0.0,0.43750000000000006,0.07142857142857142,0.41272148367158074,-0.6733719559729189,-0.0797020305008135,-0.024939702073071064,-0.0561143296644099,0.5872785163284193,0.9581688835845109,0.067948798865599,0.035487736429055956,0.06387792557230074,-3.3035289426513152,0.7302586542462519,0.8160919540229886,1.257947646509791,0.6243842364532023,0.5587529388714734,0.7320428878823183,0.7282707193928168,0.7236007879192136,0.8062805950540457,0.8105330898266422,0.8293676552561067,0.7068150384724347,0.6889591943218243,0.5404255319148936,0.5849066213959483,1.1261398176291797,0.7107410541586074,0.9851087799475657,0.697357098272724,0.9766441128012878,0.5381874059897771,0.5705932361006444,0.5590601255854619,0.8967626144380964,0.8544736695768228,0.8317460317460319,0.8887177285975781,1.293367346938776,0.8428368506493508,1.1029014851244878,0.8591238647101448,1.085944605525446,0.8183599443286517,0.8782402226187955,0.8628396418688077,0.9997839768124094,0.9095007639885433,0.8497512437810946,0.805829586120211,1.2577292110874208,1.0343665196743557,1.1809039069825804,0.9154018101852404,1.1657573730445985,0.8390721577670478,0.8841208042844365,0.8784203982525275,1.0781931442373882,1.484074039274641,1.818390804597701,1.3694989572497438,0.9365763546798034,1.5387196316614422,0.9307988789485319,1.4670492451308421,0.9411151944564314,1.8161528384588292,1.9025928038974973,1.7922014391341323,1.0796698570339232,0.8778415725963412,0.735,0.6996618344162279,1.009821428571429,0.9909268465909092,0.9637835750461909,0.8826229369551561,0.9709769136160454,0.745618056433086,0.6953963884939959,0.7252697740001234,0.9665456205064106,1.7131179447255744,1.717948717948718,1.9755510465886343,0.5892857142857145,1.4286221590909094,1.184724751078719,1.7042499074274151,1.2250008057201902,1.7513356299885439,1.432443059798554,1.6452103844907784,1.4164396570494542,0.9965882810890025,0.7686274509803921,0.9834473232772514,0.24579831932773122,0.7625334224598931,0.678045103193669,0.9966687923960109,0.7246629961618397,0.8148370783046018,0.6295101568046231,0.6897355028151265,0.8834754230066094,3.0,0.0,2.222222222222223,2.0625,1.4622222222222223,0.638888888888889,0.12244897959183673,0.05555555555555555,0.0,0.0,3144.187130079058,3401.547153149395,1598.830031060137,1486.1269799160023,9.516922324384204,0.44186661119473325,5.311712107905052,0.791686396222572,1.0,0.07142857142857142,1.374252785132226,3.1615708351762883,3.513784724225434,3.8659986132745803,3.8659986132745803,3.8659986132745803,0.15789473684210525,0.0,0.07936507936507939,0.06653225806451611,0.05415637860082305,0.03993055555555556,0.011131725417439703,0.013888888888888888,0.0,0.0,0.42289962273440795,12.055401662049862,4.591836734693878,1.96,97.96254000526078,1.0,3.7926815009548434,54.32388909532743,,41.637548692458665,41.45603488376569,42.031434921609964,41.64129141520231,48.95905318094152,41.59313647723498,41.64521985915057,45.085887799452635,-0.03997261781721051,-0.14323607427055698,-0.4714954076064631,0.3873152709359608,0.13602076802507837,0.20765569579495438,-0.03344268900288344,0.19855244477495287,-0.14747250896283465,-0.14157894132997628,-0.1244772000707772,0.12782319998674457,0.0193510182784924,0.013256955810147289,-0.0069278151064769335,0.01329787234042563,0.04040739845261127,-0.05340219158760181,0.018288872970294166,-0.04720271245550529,0.018617522635067718,-0.003251565288406278,0.002215888548540752,-0.01957325233372186,-0.015570260801868416,-0.026373626373626394,-0.1003375563729165,-0.2193877551020408,0.030945616883116915,-0.1599832856932132,-0.01770898442263729,-0.14780261499662742,-0.01587914831004684,-0.059038055196671116,-0.04809355147869615,-0.09320204319302215,0.06401236325186059,0.2190585533869116,0.20826531055684458,-0.25239872068230285,-0.026167104816824955,-0.22526893943676723,0.05557517816039562,-0.21796397150216867,0.22011987331902058,0.23361384902714882,0.2023674331045277,-0.14180700663721818,-0.39604166387028383,-0.43687002652519885,-0.21220246133325094,-0.033866995073891716,-0.3966129506269593,0.05023880848954855,-0.3876879645226907,0.019777146132913415,-0.46091704961119595,-0.3982674658859434,-0.38101287147042434,-0.13500345279521456,0.23189470611132737,0.24057692307692294,0.35054448805190114,-0.12946428571428584,0.061159446022727236,0.015392804188472504,0.22810359898244864,0.031246853402047307,0.25349951629375406,0.2090423762136657,0.21179073226313821,0.10842620277870092,-0.6026439500553943,-0.43136094674556213,-0.47420214959990775,0.03434065934065927,-0.4748688811188812,-0.2100069378843338,-0.6001646624326773,-0.25685439370621344,-0.47592575447737007,-0.3263396565323307,-0.35076891477433275,-0.43198348432889566,0.3740182721589999,0.08552036199095,0.12509818947147933,0.4779411764705883,0.4438502673796792,0.3420537033310699,0.3802697703169559,0.3724311074941015,0.12016532895497771,0.025956476175056097,0.037288138493284745,0.43830315184163077,6.889031538745116,17.319267659194633,10.731301382750022,12.071204244247827,28.358710878541153,32.58915189991044,32.94418350007198,32.94418350007198,32.94418350007198,35.03887116308944,29.678347167812426,0.0,5.3605239952770125,0.0,5.3605239952770125,1843.5777609967174,1317.9488042197606,530.8057974845019,70.0,28.0,40.0,56.0,70.0,77.0,80.0,87.0,86.0,226.06299418,19.0,4.553876891600541,5.442417710521793,6.3578422665081,7.260522598089852,8.182838710766026,9.089640586738398,10.014089308863923,10.922244615954773,11.847417170204716,0.7283950617283951,0.9999999999999999,1.1001706092298706,0.6976043565003684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7197589265912621,0.9879448075526507,1.0159693561004557,0.6982791234140714,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.213054789681411,11.49902366656781,0.0,5.783244946364939,0.0,4.794537184071822,0.0,0.0,0.0,24.26546827384644,29.68045874324322,0.0,11.126902983393991,164.38242360313893,-268.1966374139504,-31.744441368214577,-9.933208793109271,-22.34971978449586,233.906568142066,381.62811856450344,27.063258590477147,14.134374761648276,25.4418745709669,0.42857142857142855,0.6998296368182685,0.31085570772374843,67.56061547084208,0.17966416069913102,135.28326070764962,0.30017036318173146,4.0,0.0,0.2890189903561215,0.6649097026454942,0.7389837767195683,0.8130578507936425,0.8130578507936425,0.8130578507936425,2.233000000000001,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,62.45210000000003,15.007591973753234,0.0,0.0,0.0,6.4208216229260096,0.0,58.65200837755764,0.0,11.49902366656781,3.6635616461296463,0.0,5.017279836814924,0.0,6.5998704992128365,0.0,8.293799608846818,0.0,10.043206015705211,19.666666666666668,10.049389644746785,0.0,0.0,0.0,0.0,0.0,2.159264928193501,0.0,26.999999999999996,0.0,12.229629629629631,0.0,0.0,0.0,0.0,0.0,-0.3079166666666662,29.704606449206505,0.0,0.0,11.49902366656781,15.996299736046351,6.4208216229260096,0.0,27.048343150859804,36.39820241076966,0.0,0.0,0.0,18.835317625509948,19.433491017964077,21.80761900536795,108.64777819065495,,83.18686209079968,82.81122943139692,84.00176365996876,83.1946067436639,100.59200983848564,83.09495968497609,83.20273567116504,91.15752666234275,21.80761900536795,108.64777819065495,,82.52509738491733,82.05492691038855,83.54346728558502,82.53478609310855,101.1649891549005,82.41011016377226,82.54495531764434,91.36875903307936,5.004786759651472,77.29939796555104,,61.341596723582796,61.14265276397596,61.773590241653594,61.3456996961127,69.45762956135272,61.292912321179614,61.350006303449405,65.13919097730128,1.2828011179628207,6.39104577592088,,4.893344828870569,4.871248790082172,4.94128021529228,4.893800396686111,5.917177049322684,4.887938804998593,4.894278568892061,5.362207450726044,2.502393379825736,54.32388909532743,,41.637548692458665,41.45603488376569,42.031434921609964,41.64129141520231,48.95905318094152,41.59313647723498,41.64521985915057,45.085887799452635,26.67450980392157,0.0,0.0,0.0,0.0,0.0,19.481530612244896,27.431172614712306,0.5547685185185184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853536332179928,278.7344404417611,37.1048251985701,85.36241254975978,94.87218755408672,104.38196255841366,104.38196255841366,104.38196255841366,630.0,109.6708898592481,119.5545513034438,50.617717606709434,57.53,57.53,0.75,8.493937358663205,5.247927513443585,3.800176733109795,4.075022866856295,,4.08258841104843,4.0833310665441065,4.080884532044735,4.082572801722392,4.041913411334996,4.082772737761162,4.082556405258902,4.064871663822151,0.22353980782998795,0.239707227462135,,0.24015225947343707,0.24019594509082978,0.2400520312967491,0.24015134127778778,0.23775961243147037,0.24016310222124482,0.24015037677993542,0.23911009787189125,1.8656758254261179,1.9355046092377293,,1.9373594527951068,1.937541344252587,1.93694201305094,1.9373556293982057,1.927346447581334,1.9374046012482868,1.9373516131816648,1.9330104225481084,163.04999999999976,86.64618480470435,84.26897510802213,,83.23791718825615,83.14923477217945,83.42932429629053,83.23974277845667,86.4600519410285,83.21624477946474,83.24165882405048,84.84993227233609,5.096834400276727,4.956998535766008,,4.896348069897421,4.891131457187027,4.907607311546502,4.896455457556275,5.085885408295794,4.8950732223214555,4.896568166120616,4.991172486608005,4.99246123630296,4.964642018769652,,4.952331230509251,4.951265253678356,4.95462810889374,4.9523531624633765,4.990310731053598,4.952070829583763,4.952376180597239,4.971512444537445,0.0,12.229629629629631,19.481530612244896,2.2122222222222234,-0.36087396069538813,10.049389644746785,0.5547685185185184,0.0,0.0,199.74634345879778,65.47170975752738,-106.8197683050566,-12.643461546060957,-3.9562877150020954,-8.901647358754715,93.16241118788453,151.9982785646756,10.778997977340898,5.629565872765763,10.133218570978373,450.0,31.0,1.2194101660764625,0.509254626413495,0.0,0.0,0.3965460111947051,0.10882141568036947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18144368465060579,0.07020960934454842,0.47276445964523284,0.13622722925597872,11.991199352633217,8.973883877788083,8.181540550352054,5.346478393631023,7.586053953894222,4.128425324398888,6.691298991696025,3.092542414981964,6.193526002599203,2.3222603096106282,4.616802101115155,1.5884672252390437,3.4136414195075915,0.9438858173207071,2.205895529642641,0.5367632825404367,3.1793103863701293,1.1318931154763971,6.153131402472651,1.6987476801812724,9.700987904176001,2.2731233324423994,55.030698334664955,39.3506018758904,32.00423520345448,30.779840758048493,30.779840758048493,30.779840758048493,94.0,115.0,32.45392999999999,10.900069999999998,0.5185185185185185,89.03,5.527777777777777,3.666666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,12.0,12.0,27.0,0.0,0.0,29.0,12.0,1.0,7.0,22.0,13.0,19.0,16.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,3.0,2.0,0.0,17.0,3.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,2.0,3.295836866004329,7.198557478770161,3.9512437185814275,4.590056548178043,5.202632116413628,5.708355336501335,5.972536537222463,6.301702805273125,6.710675351212637,7.020916539560116 +3676,CCN(CC)CC(=O)Nc1c(C)cccc1C,0,17.641025641025642,5.771276923076924,2.5641025641025643,4.717948717948718,165.41642926194817,68.98490258974357,1.3304945617096926,5.841841025641026,3.2592592592592595,7.362267179487178,187.5922596250975,20.17948717948718,6.1058717948717955,3.051282051282051,4.615384615384615,148.19455151108198,74.06737458974355,1.6748754566666666,6.245064102564104,2.715099715099715,7.553392307692302,232.3821139912882,15.55072463768116,5.929985507246376,2.8405797101449277,3.2028985507246377,160.13243731734687,55.9438800289855,1.337830716416449,6.019776811594203,2.430756843800323,7.469634898550726,179.11147228698056,14.46987951807229,5.988095180722892,2.5903614457831323,2.6506024096385543,160.61048994843173,50.517381626506015,1.3020801671793494,6.070327710843373,2.552878179384204,7.535631951807226,171.42816682938886,11.938144329896907,5.789958762886599,2.1649484536082473,1.8969072164948453,161.32308763229105,40.10535773195877,1.1798645801219483,5.872453608247423,2.34192439862543,7.379697979381446,148.50760340611325,10.085714285714285,5.723238095238097,1.8857142857142857,1.4476190476190476,166.6294453333949,33.38942263809523,0.9834607670310663,5.779042857142857,2.614285714285714,7.375935885714284,121.07910291238146,9.392857142857142,5.933142857142856,1.8333333333333333,1.2380952380952381,170.93326533629548,29.683169619047618,0.9357442735073931,5.961517857142859,2.7619047619047623,7.603700285714284,116.21128550033966,10.852459016393443,5.645688524590163,2.2459016393442623,1.0327868852459017,165.94714057228407,36.99444054098362,1.1543948125029184,5.716459016393446,1.8879781420765027,7.274833114754098,144.51346045465166,11.105263157894736,5.630421052631579,2.0526315789473686,0.49122807017543857,150.40021218811222,34.938671333333325,1.377327153503473,5.758473684210529,2.0701754385964914,7.198188491228072,165.4862070448878,6.869165023011178,0.07999381985535826,0.010612697051623267,0.5023011176857333,3.0742932281393816,1.3819454891207914,32.87928677843523,0.2225253186518909,0.07937922419460872,0.9964204835999706,0.04316126232741614,50.47607916908852,0.15055884286653545,0.0023009861932937817,-0.005683752676634253,0.25312294543063785,1.3938198553583168,-0.32326979252899773,0.6656312241946023,-0.021431828737672336,0.0031152531229453793,-0.05559208123310693,9.719921104533834e-05,-2.6150494318274062,0.8747963296458283,0.010803207272103535,0.00011119852846455466,-0.008804276362804791,0.2571820598576453,0.04917303371770882,4.15946283843581,0.01848385214239054,0.011028282308549834,0.10083786728156852,0.005578273904467862,5.120637990588146,-0.5006138954239043,-0.00020280966073373433,0.0010214725601388097,-0.08802864317229474,-0.26243039218016057,0.11469827035214589,-2.385642973677751,-0.0006949425951543042,-0.0020279112505248013,-0.04447595334218757,0.0011984806444713541,-2.0898013231133077,-0.8057233100849278,-0.00451293167137737,-0.0014733590824887231,-0.09574547401668736,-0.14698685753404242,-0.19651647470195832,-3.9314829251442016,-0.0429042251814565,-0.004602063211262267,-0.014028496053344065,-0.001977197828341372,-8.177885555569011,0.25879590494975113,0.0013873278857894134,0.0011919018147161266,0.022729407344791966,-0.13216868601483994,-0.17584769744778114,1.1792755268150665,-0.018643566599148526,0.0028110810556964305,0.0658370119908581,-0.0008135524373062914,-1.384891523392183,-1.0513994552456092,-0.03113447919601771,-0.00040081579778448816,0.048980933596318194,-0.7507279045740588,0.14259666144329383,-4.766269354442564,0.03229174491669666,-0.02995990185028647,-0.3984012189140396,-0.0171650242321781,1.8370964907506095,0.47930071889718806,-0.00968461430680849,-0.00043127814952599624,-0.21184294198165565,-0.8964874273827621,0.5013022356209851,2.4638159941582867,0.06195288455632266,-0.008123318351817718,-0.004430385052495136,-0.00502596178096808,11.01999035708749,-3.4580089276445545,-0.01511311810097232,-0.000600340877807838,-0.21845046541402818,-1.261427731063358,-0.4786704924141396,-16.673892490536,-0.11209593986752452,-0.02005632720855389,-0.0478524824003906,-0.003786320357105764,-27.297186302756117,,,0.4784313725490196,1.0588235294117647,0.47058823529411764,0.029411764705882353,0.5882352941176471,-0.11764705882352941,0.8682224584174345,0.019723306003150125,0.02478212953256189,0.6706414251153753,0.2131327418088524,0.26209769115112075,1.53886388353281,0.47523043295997314,1.944993100100678,1.5992753327687188,0.2419953542375095,0.1037224130944496,0.0,0.3457177673319591,6.004441367282051,688.0,225.07980000000003,100.0,184.0,6451.240741215978,2690.4112009999994,51.889287906678014,227.83180000000002,127.11111111111111,287.12841999999995,7316.098125378803,787.0,238.12900000000002,119.0,180.0,5779.587508932197,2888.6276089999988,65.32014281,243.55750000000006,105.88888888888889,294.5822999999998,9062.90244566024,1073.0,409.1689999999999,196.0,221.0,11049.138174896934,3860.1277219999993,92.31031943273497,415.3646,167.72222222222229,515.4048080000001,12358.691587801659,1201.0,497.0119,215.0,220.0,13330.670665719834,4192.942674999999,108.07265387588599,503.8372,211.88888888888894,625.4574519999998,14228.537846839276,1158.0,561.6260000000001,210.0,184.0,15648.339500332233,3890.2197000000006,114.44686427182899,569.628,227.16666666666674,715.8307040000003,14405.237530392984,1059.0,600.9400000000002,198.0,152.0,17496.091760006464,3505.8893769999995,103.26338053826197,606.7995,274.49999999999994,774.4732679999998,12713.305805800053,789.0,498.38399999999996,154.0,104.0,14358.394288248819,2493.386248,78.60251897462102,500.7675000000001,232.00000000000003,638.7108239999999,9761.747982028532,662.0,344.38699999999994,137.0,63.0,10122.775574909328,2256.6608730000007,70.41808356267802,348.70400000000024,115.16666666666667,443.76482,8815.321087733751,633.0,320.934,117.0,28.0,8572.812094722396,1991.5042659999997,78.50764774969797,328.2330000000001,118.0,410.2967440000001,9432.713801558604,267.8974358974359,3.119758974358972,0.4138951850133074,19.5897435897436,119.89743589743588,53.895874075710864,1282.292184358974,8.678487427423745,3.09578974358974,38.86039886039885,1.6832892307692295,1968.5670875944525,5.871794871794883,0.08973846153845749,-0.22166635438873586,9.871794871794876,54.35897435897435,-12.607521908630911,25.95961774358949,-0.8358413207692211,0.12149487179486979,-2.1680911680911703,0.003790769230768195,-101.98692784126885,60.36094674556215,0.7454213017751439,0.007672698464054271,-0.6074950690335306,17.745562130177525,3.3929393265219088,287.0029358520709,1.2753857978249472,0.7609514792899386,6.957812842428227,0.3849008994082825,353.3240213505821,-41.550953320184064,-0.01683320184089995,0.0847822224915212,-7.306377383300463,-21.781722550953326,9.519956439228109,-198.00836681525334,-0.057680235397807256,-0.16831663379355852,-3.691504127401568,0.0994738934911224,-173.45350981840454,-78.155161078238,-0.4377543721236049,-0.14291583100140615,-9.287310979618674,-14.257725180802115,-19.062098046089957,-381.35384373898756,-4.16170984260128,-0.44640013149243996,-1.3607641171743743,-0.19178818934911307,-793.2548988901941,27.17357001972387,0.1456694280078884,0.1251496905451933,2.3865877712031565,-13.877712031558193,-18.46400823201702,123.82393031558199,-1.9575744929105952,0.2951635108481252,6.912886259040102,-0.0854230059171606,-145.41360995617922,-88.31755424063117,-2.6152962524654875,-0.033668527013897005,4.114398422090728,-63.06114398422094,11.978119561236682,-400.3666257731754,2.7125065730025195,-2.5166317554240636,-33.46570238877933,-1.4418620355029605,154.3161052230512,29.237343852728472,-0.5907614727153179,-0.02630796712108577,-12.922419460880995,-54.68573307034849,30.57943637288009,150.2927756436555,3.7791259579356824,-0.4955224194608808,-0.2702534882022033,-0.3065836686390529,672.2194117823369,-197.1065088757396,-0.8614477317554223,-0.034219430035046766,-12.451676528599606,-71.9013806706114,-27.28421806760596,-950.411871960552,-6.389468572448897,-1.143210650887572,-2.727591496822264,-0.21582026035502855,-1555.9396192570987,0.7550881655443509,0.6593431198289613,0.47523043295997314,0.3626230195355945,0.30947382998704387,0.19438068047044038,0.20560279639845017,0.11566097157584171,0.13680327698919822,0.06347859597612436,0.09161760029984677,0.03107029997968843,0.05642046479352237,0.01795986350312109,0.03622651701015586,0.010007730990344481,8.022016217137876,5.686008419286522,3.5437558109163865,2.185302425773995,0.38436418850590615,-0.36676111879207757,3.2300481243223387,0.9778225372396191,6.021915929345316,0.987256900388485,14.543732247531704,10.947170672923335,16.010061509009216,11.697601515927229,1.9907193538841021,0.7518897288478129,3.488962011324217,2.2350798523085964,7.008268727989686,1.4155024009192896,3.701887946144289,2.430943728079628,20.898090473920124,14.70271133654424,0.24912174868761355,0.5366219657063379,0.7293880262049593,0.7613072655850743,0.7896593937617983,0.7896593937617983,2.3990794720543507,363.55864155890856,0.0,1.0,7.0,0.0,4.0,0.0,2.0,0.0,0.0,3.9336016543288976,2.373549359750989,1.3275496797645476,1.1543474361193304,1.0005012822731771,1.0005012822731771,199.7465267949332,616.7664798636665,25.66513425648839,15.814525124709395,30.244830941451152,,9.0,240.0,0.0,4.794537184071822,5.907179729351506,6.544756405912575,29.903802069902703,0.0,0.0,32.046575604766076,24.064172734238056,0.0,8.133333333333333,18.0,8.0,0.5,10.0,0.0,0.02156862745098042,-2.0,0.08119658119658107,0.02860398860398855,-0.052592592592592524,0.027342047930283164,0.1100396039603958,0.0,0.5145299145299148,0.7921568627450978,0.43333333333333374,0.48592592592592626,0.7648148148148146,14.759781793096387,0.33529620205355215,0.4212962020535521,11.40090422696138,3.6232566107504907,4.455660749569053,26.160686020057767,8.078917360319544,0.6039603960396042,0.28688524590163933,0.0,0.29508196721311475,0.5,0.28756428230014036,-0.37725412949625625,-0.023100655188167906,-0.009673182807596315,-0.026946723535446884,0.7124357176998596,0.934640819621603,0.031490443872470825,0.02396514922106674,0.03738563278486412,-4.050554074694199,1.0365620214395097,0.8231783191666681,1.6792910471814515,0.795811518324607,0.5526090675791275,1.5803218725738688,1.0437339557435272,1.3304620933636195,0.8294416403419702,0.6306634897360704,0.7780867373829142,1.2340902467916697,0.901437346028364,0.8840254646204766,1.2496442366272358,1.5180969724561797,1.132247926507234,1.1142920996506385,0.903063464306894,0.9545654529578449,0.8726892142577648,0.527902269539717,0.8230541249850556,0.92882913459523,1.1270722245797893,1.2297609728372074,1.2491668865206371,1.4723711600328009,1.2963891494120194,1.0517162067120178,1.1245197155705828,1.0266828192674082,1.216943888854041,1.1393630975514966,1.2173696685955808,1.0544768027209757,1.1106343047946825,1.026025270766137,1.4286092325256048,1.2398661413072807,1.027596500665826,1.1990835785052258,1.113646826962758,1.203094336960078,1.0273257551382156,0.8525465202406508,0.9864231491332833,1.1663833475198762,0.9652236928462042,1.2490217028600175,1.254531747909122,0.8775243081525801,1.1289013809116462,1.0231716830949669,0.9622522369321223,1.0028136501418823,1.1932153393726521,1.5675497486384589,1.4023659520967542,0.953428364910081,1.2538113924742942,2.3614805055617385,1.4608937650827585,0.7043287210172023,1.5809147012098255,0.7530207634663884,1.2306092053432869,0.6928349411245139,2.2160281256382017,3.243847533514873,2.7058896483763832,0.813807032759285,0.8871146411267039,0.958469903137827,0.9564215771465716,1.7807913483821125,1.3768598634113507,0.6395229880177067,0.8838416405604195,0.6802595556513399,0.9563226238545683,0.44017024421902795,0.8569101766735514,0.7498490245868116,1.4134762633996936,0.5039812411543955,0.2653556522745031,1.3612565445026172,1.0536783575705733,1.4931236478588803,1.4286599325897593,1.7080678789593426,0.6563322560499865,0.23016862170087984,0.27840491784400134,1.6943071303375243,4.0,0.0,2.000000000000001,1.4375,1.0133333333333336,0.22916666666666669,0.34530612244897957,0.1909722222222222,0.06550768455530359,0.03125,2754.889420896833,3294.099692179108,1528.5548774293252,1308.939941738167,10.269747667677208,0.4805370870572141,5.3347530386389845,0.9250652454377254,1.0,0.5,1.351800564533351,2.9118528591112596,3.957852539097701,4.131054782742918,4.284900936589072,4.284900936589072,0.23529411764705882,0.0,0.09090909090909097,0.062499999999999986,0.05066666666666668,0.013480392156862744,0.028775510204081627,0.01469017094017094,0.0065507684555303584,0.015625,0.5184917169794621,15.058823529411764,7.43801652892562,4.6390532544378695,103.82215798852502,1.0,3.7106099978238114,67.52618371377697,,56.17054452091103,54.779997680569394,53.606152859423204,56.182476220293445,78.41018913354456,55.58004185403154,56.25435450073362,71.46506673436062,0.021918070444104175,0.028764549529630368,-0.5355615682787151,0.5039267015706806,0.4533789563729683,-0.23392369313688738,0.020244697784356273,-0.09631186629688361,0.03924519488005983,-0.055791788856305057,0.0022520011186882537,-0.05180769732663504,0.12735118849457358,0.13505052379843188,0.010477876445888585,-0.017527885272023667,0.08365567002640688,0.035582469862102326,0.12650708838258334,0.08306404077688745,0.1389315960245786,0.10120011475200819,0.1292426032897682,0.10144682540485468,-0.07287842026605651,-0.002535316616964247,0.09625004418481636,-0.17525074118463382,-0.08536283714842263,0.08299768062857396,-0.0725576254057445,-0.00312298213688413,-0.02554712862339278,-0.044635727661378716,0.027767506783741035,-0.04140181562265833,-0.11729566947159027,-0.056416004130537566,-0.13882984460235442,-0.1906136989258919,-0.04781159330822895,-0.14220276866852702,-0.11957324231627708,-0.19280603861789783,-0.05797566375780768,-0.014078891676996112,-0.045809545915098296,-0.1620150711027717,0.03767501640778823,0.017342938345711285,0.11230903972085203,0.04525056095736723,-0.04299156788463891,-0.12724647884603418,0.03586682201356406,-0.08378177688766161,0.03541330976987998,0.06607352325094258,-0.01884913446540976,-0.02743659068195393,-0.15306073616276528,-0.38921105720809274,-0.03776757179016821,0.09751308900523552,-0.24419528290358072,0.10318544585576625,-0.1449626747247039,0.14511492495473058,-0.3774274963539047,-0.39983242563887755,-0.3976951392655362,0.03639538809257682,0.06977568849948536,-0.12106703148217994,-0.04063794033016612,-0.42174491459960484,-0.2916076512081226,0.3627510922590145,0.0749352019330981,0.27840825004384834,-0.10233557249063462,-0.004446300658622135,-0.11644612576068185,0.21832104510677042,-0.5034103731764326,-0.18892857133587668,-0.05656817252839728,-0.4348994213281895,-0.4103147089280085,-0.34637436583600334,-0.5071245189379238,-0.503744654975116,-0.25266469170047745,-0.04802438647939494,-0.08772496801375256,-0.5407945060731435,4.026914116436182,7.822630277634284,3.3019272488946267,12.088940949647712,25.76784647584616,28.727958440100817,29.466802711951605,29.621879635028534,29.621879635028534,33.064882701711525,27.18768065706822,4.113921022037662,1.7632810226056432,0.0,5.877202044643305,2270.296393163088,1935.174132437169,568.0307082401362,10.0,22.0,26.0,29.0,30.0,23.0,22.0,20.0,14.0,234.173213324,17.0,4.3694478524670215,5.1647859739235145,5.998936561946683,6.814542897259958,7.652070746116482,8.476162841858246,9.314970621054266,10.143881457256866,10.983477517076143,0.5470085470085472,0.9542564102564105,1.1374115049537552,0.500274321188483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6303001074773533,0.9413775766716941,0.9852092554204724,0.5689956943117943,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,5.907179729351506,0.0,9.694446914922299,0.0,0.0,0.0,32.046575604766076,38.06389019460039,5.687386274683562,6.544756405912575,135.1937594149891,-177.36001012877918,-10.860404480199477,-4.547692567404595,-12.66857215205566,334.9402862099223,439.4064697348873,14.804729776288912,11.2668325573048,17.576258789395492,0.4444444444444444,0.957546547344236,0.2473403874017223,0.0,0.18146737437755783,0.0,0.042453452655763904,5.0,0.29411764705882354,0.25576115280481787,0.5509236078040762,0.7488271233120419,0.7815970500788455,0.8107047976968255,0.8107047976968255,2.5837400000000006,,0.5357142857142858,0.6570497906002791,0.6236333567935969,0.5342659360630688,-2.118657900702788,0.5810893512851898,0.5290207864431083,-1.0376437345448832,72.33370000000005,4.794537184071822,0.0,4.899909730850478,0.0,27.694948798762496,24.951057821744055,29.32600418877882,0.0,0.0,3.5553480614894135,0.0,4.812184355372417,0.0,6.267200548541362,0.0,7.813995675002791,0.0,9.40713994795079,21.33333333333334,6.032499685059208,0.0,0.0,0.0,0.0,0.0,3.167083333333334,0.0,37.21600000000001,0.0,11.89231859410431,0.0,0.0,0.0,0.0,0.0,0.06120370370370365,44.35904869319645,5.316788604006331,5.687386274683562,0.0,30.44135867793971,4.794537184071822,13.847474399381248,24.974377382775238,18.19910120538483,0.0,0.0,0.0,19.51069852635084,24.58170419161678,20.811755906669607,135.05236742755395,,112.27806383173802,109.48269538577405,107.1389370886354,112.30209762457946,157.56813987910186,111.09172025497071,112.44647126188569,143.2963606691489,20.811755906669607,135.05236742755397,,111.80537475610777,108.90294557053855,106.58867236205282,111.83068650452387,158.93903616779193,110.57899435677794,111.97968821502415,143.96777720326617,4.642107869726891,101.03414484797091,,85.0236783827863,82.70193960681037,80.67067317914,85.04338876731089,121.84131254320069,84.03435317257485,85.16397409195466,110.47683891347236,1.2242209356864475,7.944256907503173,,6.604591990102237,6.440158552104356,6.302290416978553,6.6060057426223215,9.268714110535404,6.534807073821806,6.614498309522688,8.429197686420522,2.321053934863445,67.52618371377697,,56.17054452091103,54.779997680569394,53.606152859423204,56.182476220293445,78.41018913354456,55.58004185403154,56.25435450073362,71.46506673436062,36.71372549019607,0.0,8.15837396069539,0.0,0.0,0.0,0.0,38.42316096139842,2.258057760141093,2.9969907407407406,0.0,0.0,0.0,2.100138888888889,0.0,0.0,0.0,22.19083207815998,450.17523217711147,52.72022201680069,113.56226150533912,154.35624902481035,161.1111365269738,167.11113652697378,167.11113652697378,230.0,102.91827646895918,19.958813447799926,48.85586858835678,32.34,32.34,0.8,6.640529215097739,5.087462841250339,3.5056253045404144,4.0647568096009925,,4.056480893804874,4.055697670338301,4.055604031686102,4.0564891303512045,4.064162501652673,4.056185948274495,4.056522891834977,4.062265451068667,0.20621325320825967,0.23910334174123485,,0.2386165231649926,0.23857045119637063,0.23856494304035897,0.2386170076677179,0.2390683824501572,0.23859917342791145,0.23861899363735156,0.23895679123933333,1.7849971592145624,1.9329821668359215,,1.9309440738843084,1.9307509757016652,1.9307278872614513,1.9309461043481968,1.932835946181829,1.9308713615355209,1.9309544271470982,1.9323690619297311,205.88999999999953,116.37103645160316,76.38322130165014,,76.6517743783381,76.72390206647322,76.80748862352527,76.65122813304764,76.02325984776556,76.68258167109043,76.64750487927165,76.12525295300614,6.845355085388421,4.493130664802949,,4.508927904608123,4.513170709792542,4.518087566089722,4.508895772532214,4.471956461633268,4.510740098299437,4.508676757604214,4.477956056059185,5.287411927661383,4.866391306644869,,4.86990100520975,4.870841541481524,4.871930394581008,4.869893878861517,4.8616675951530555,4.870302836788277,4.869845303720633,4.863008299950502,0.0,13.9924574829932,2.9969907407407406,3.167083333333334,0.06120370370370365,6.032499685059208,0.0,10.416431720836485,0.0,247.68170548996534,63.55918905700979,-83.38297909391822,-5.105845895399094,-2.1380251049722623,-5.955927078137018,157.4668317986365,206.5799412902228,6.960207504110296,5.296921571544172,8.26319765160891,556.0,23.0,1.1002865641057304,0.581457801251935,0.0,0.0,0.19245008972987526,0.07216878364870322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.18419528592042317,0.060140653040586016,12.836498814253964,11.208833037092342,8.078917360319544,6.164591332105107,6.808424259714966,4.276374970349688,5.3456727063597045,3.0071852609718843,3.9672950326867484,1.8408792833076064,2.748528008995403,0.932108999390653,1.2976706902510144,0.41307686057178505,0.7969833742234289,0.22017008178757858,2.3414479844751517,1.147404545473977,3.421334506617377,1.3792358841528287,4.68472766876094,1.396618751352773,58.98020183154305,31.349805760796823,25.1604148421532,23.70214362592166,22.91732529447193,22.91732529447193,78.0,87.0,41.05144599999997,25.218553999999994,0.15384615384615385,17.03,7.305555555555555,4.055555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,39.0,0.0,1.0,39.0,6.0,1.0,4.0,35.0,7.0,17.0,32.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,2.0,1.0,0.0,17.0,3.0,0.0,2.0,1.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,1.0,3.091042453358316,4.2018901887852635,3.56953269648137,3.965563772356176,4.386703182557784,4.7637752161647295,4.579852378003801,4.4942386252808095,4.608913172266925,4.5591262474866845 +11476710,CCCCc1nc(Cl)c(CO)n1Cc1ccc(-c2ccccc2-c2nn[n-]n2)cc1,0,28.096153846153847,6.169005769230768,3.423076923076923,7.838556505223172,163.0522167114015,113.1925166346154,1.6114016905130382,6.28468846153846,3.4910206582017285,7.698744557692304,234.25886520525518,26.927272727272726,6.404994545454545,4.090909090909091,8.056565656565656,148.0387356563827,103.34783647272728,1.890091609018182,6.559078181818182,3.2731013842124956,7.797608836363635,275.0377837939428,23.086021505376344,6.2321580645161285,3.763440860215054,6.451612903225806,153.51639565387407,87.37137869892472,1.6651410642020648,6.367578494623656,2.883235983893092,7.6968399139784935,235.20304284713075,19.675213675213676,5.981599145299145,3.282051282051282,4.517568850902184,156.2327084099626,73.5527351880342,1.5175768755711876,6.11244871794872,2.4635081425204883,7.519221384615383,206.52510122759554,19.23846153846154,6.094607692307692,3.0846153846153848,4.361538461538461,158.70332710144666,70.6174400153846,1.4521495782098617,6.2215461538461545,2.7066001899335235,7.642989584615385,196.86891458893635,18.037037037037038,6.057607407407407,2.911111111111111,3.9753086419753085,160.31549665608057,65.25541094074072,1.4215451135816815,6.186066666666666,2.66247523243408,7.635034548148147,191.08543487722403,17.584615384615386,6.093184615384616,2.7615384615384615,3.3940170940170944,160.4895591825674,63.12577064615384,1.3943110856891077,6.209961538461539,2.7577635327635335,7.654693246153847,185.48716158749497,15.056,5.949696000000001,2.48,2.6595555555555555,162.70392830505946,52.40547511199999,1.260183712243008,6.067212,2.5089876543209875,7.5861997919999995,160.0471485200714,13.461538461538462,5.828125000000001,2.4711538461538463,2.7126068376068373,164.2392425397829,46.26504281730768,1.1901099947064422,5.9402163461538455,2.3010050648939537,7.499098096153846,149.93249205157628,10.033653846153847,0.09562466715976323,0.015070300083778902,0.5591715976331361,3.8556322594784125,1.624135240153024,47.36144996264792,0.23567813830485942,0.09798890532544377,0.7761933074136302,0.058942249630177475,49.844322500900404,0.3261363636363636,0.015564109064012914,-0.0020538341434744646,0.24712210866057027,1.5246319207857673,0.13466275963421714,1.520675220568852,0.0031258255400266636,0.01257130446476599,0.045949056395400166,0.007097896523668598,0.4425633193848052,0.7049731182795699,0.014427814229814843,0.000466730716846111,0.07647769930648342,0.7658741380136473,0.09702993647198908,3.262826652116337,0.0028145035760897314,0.013968042565375071,0.02270255112535403,0.009055923860310478,0.671609447237172,1.376602564102564,0.011112972550953306,0.0013074594194666396,-0.030243261012491786,0.2730964034382838,-0.011232903031750206,6.47893014747699,0.017369731952546548,0.013336406969099275,0.0540662699046154,0.0074971129602235675,4.495497269826985,-0.1971153846153846,-0.00019493343195265883,0.00015638469457967063,-0.06568047337278106,-0.06658631017605374,-0.11771274890214559,-1.020679775961538,-0.018010232793272758,0.0009809467455621295,0.04035807790160433,0.002549425961538462,-2.785289896114868,-1.0486111111111112,-0.010585066020162171,-0.00016322785024597007,-0.0665790050405435,-0.17907498045199846,-0.07202867583428219,-4.834451686152204,-0.005053895255048062,-0.011815144641683107,0.004019160632247284,-0.009186253333881218,0.17258890698713086,-1.3278846153846153,-0.01943768491124259,-0.00041722978224546076,-0.08934911242603549,-0.7731280590254948,-0.11590253941792476,-6.2634992801035505,-0.021526387172415958,-0.01959624260355029,-0.06268390227712799,-0.011005795931952667,-6.243855228350794,-1.4595,-0.014742436390532543,-0.0007106139350156388,0.023289940828402352,-0.24588107239389295,-0.16348565449880653,-6.862592351724852,-0.0255939832707641,-0.016275766863905316,-0.09161979024340533,-0.010178498245562115,-6.09377484937883,-0.71875,-0.0033161057692307873,-0.0007795789015004494,0.12795857988165682,0.5420410548615675,-0.06680396957408798,-3.247632265902368,0.0006602057003867969,-0.0051665310650887515,-0.03134066597583532,-0.006702433431952628,2.5104055246993555,,,0.4815873015873017,1.3083333333333333,0.6833333333333333,0.016666666666666666,0.625,0.058333333333333334,0.8594199987242315,0.006905788810543001,0.018372455477209667,0.9641192876133985,0.2548571800734499,0.23537748319511032,1.82353928633763,0.4902346632685602,2.0544710832342683,1.526288430134703,0.4109061375270372,0.05803488671877452,0.05924162885375372,0.5281826530995654,8.099132895844438,1461.0,320.78829999999994,178.0,407.60493827160496,8478.715268992879,5886.010865000001,83.79288790667799,326.8037999999999,181.53307422648987,400.33471699999984,12181.46099067327,1481.0,352.2747,225.0,443.1111111111111,8142.130461101049,5684.1310060000005,103.95503849600001,360.7493,180.02057613168725,428.8684859999999,15127.078108666854,2147.0,579.5907,350.0,600.0,14277.024795810288,8125.538218999999,154.85811897079202,592.1848,268.14094650205755,715.8061119999999,21873.88298478316,2302.0,699.8471,384.0,528.5555555555555,18279.226883965624,8605.670017000002,177.55649444182896,715.1565000000002,288.23045267489715,879.7489019999998,24163.43684362868,2501.0,792.299,401.0,567.0,20631.432523188065,9180.267201999999,188.779445167282,808.801,351.858024691358,993.588646,25592.958896561726,2435.0,817.777,393.0,536.6666666666666,21642.592048570878,8809.480476999997,191.908590333527,835.1189999999999,359.43415637860085,1030.729664,25796.533708425242,2286.0,792.1140000000001,359.0,441.2222222222223,20863.642693733764,8206.350183999999,181.260441139584,807.2950000000001,358.50925925925935,995.110122,24113.331006374345,1882.0,743.7120000000001,310.0,332.44444444444446,20337.991038132433,6550.684388999999,157.522964030376,758.4014999999999,313.62345679012344,948.2749739999999,20005.893565008926,1400.0,606.1250000000001,257.0,282.1111111111111,17080.88122413742,4811.564452999999,123.77143944947,617.7824999999999,239.3045267489712,779.906202,15592.979173363932,521.75,4.972482692307688,0.7836556043565029,29.076923076923073,200.49287749287745,84.45503248795725,2462.7953980576917,12.25526319185269,5.095423076923076,40.36205198550877,3.0649969807692288,2591.904770046821,17.9375,0.8560259985207103,-0.11296087789109555,13.591715976331365,83.8547556432172,7.406451779881944,83.63713713128686,0.1719204047014665,0.6914217455621294,2.5271981017470093,0.3903843088017729,24.340982566164286,65.5625,1.3417867233727805,0.043405956666688325,7.112426035502958,71.2262948352692,9.023784091894985,303.44287864681934,0.261748832576345,1.2990279585798816,2.1113372546579248,0.8422009190088744,62.45967859305699,161.0625,1.300217788461537,0.15297275207759684,-3.5384615384615388,31.952279202279204,-1.314249654714774,758.0348272548079,2.032258638447946,1.560359615384615,6.3257535788400014,0.8771622163461574,525.9731805697572,-25.625,-0.02534134615384565,0.020330010295357182,-8.538461538461538,-8.656220322886986,-15.302657357278926,-132.68837087499995,-2.3413302631254584,0.12752307692307685,5.246550127208563,0.331425375,-362.0876864949329,-141.5625,-1.428983912721893,-0.02203575978320596,-8.988165680473372,-24.175122361019792,-9.723871237628096,-652.6509776305476,-0.6822758594314884,-1.5950445266272195,0.5425866853533833,-1.2401442000739644,23.299502443262668,-172.625,-2.5268990384615364,-0.0542398716919099,-11.615384615384615,-100.50664767331432,-15.06733012433022,-814.2549064134615,-2.7984303324140747,-2.5475115384615377,-8.148907296026639,-1.4307534711538468,-811.7011796856033,-182.4375,-1.8428045488165679,-0.08882674187695486,2.911242603550294,-30.73513404923662,-20.435706812350816,-857.8240439656065,-3.1992479088455124,-2.0344708579881643,-11.452473780425667,-1.2723122806952645,-761.7218561723538,-74.75,-0.3448750000000019,-0.08107620575604674,13.307692307692308,56.372269705603024,-6.947612835705149,-337.75375565384627,0.06866139284022688,-0.5373192307692302,-3.2594292614868734,-0.6970530769230733,261.08217456873297,0.6974691494688161,0.5793253113980347,0.4456678756986911,0.3112932068763458,0.2783213927065088,0.16426802016708258,0.17650560585527617,0.0868073044878226,0.11386306968017539,0.04536125758746693,0.07370969143113085,0.025976962330214178,0.04862492359059757,0.014544439110371704,0.03211446047902,0.008149582551914577,17.001103653499733,5.672830789062235,3.5122132484289943,2.172577445886793,0.3810038340132242,-0.5143533272360161,3.263871128338246,0.9871710369630624,6.044013022539084,0.7740045929716621,14.781800021986367,10.933408988033007,35.45051764839029,11.684025340812314,2.2063195232102535,0.7880711035827481,3.453749680403921,2.2224917676180826,6.002698112954622,1.301419274103567,3.6674605597711527,2.4184372750400835,22.455828802337237,14.70815732336483,0.27045999995517234,0.6180876522922188,0.7884487975133809,0.8714726206213497,0.8930424892788057,0.899428937210188,1.306948917366311,1105.3755176033308,0.0,3.0,3.0,0.0,9.0,3.0,4.0,0.0,0.0,4.0716301196993845,1.9780885353461097,0.9521110577755172,0.4521110577755181,0.32220937504160396,0.28374783658006475,32.74726467260325,1461.8397121982362,64.71719187097575,28.112302157658384,59.12054416295969,,15.0,767.0,0.0,5.106527394840706,6.606881964512918,23.216198715653753,47.34067533356593,0.0,0.0,28.832567921637793,56.79731780239608,11.600939890232516,14.44761904761905,39.25,20.5,0.5,18.75,0.0,0.018412698412698346,1.75,0.1619963369963376,0.06466588966589015,-0.09733044733044743,0.017045570916538688,0.13266257903812972,0.0,0.60485347985348,0.8284126984126983,0.44285714285714245,0.5401875901875899,0.8113671274961596,25.782599961726945,0.20717366431629003,0.55117366431629,28.923578628401955,7.645715402203496,7.0613244958533095,54.7061785901289,14.707039898056806,0.5813374209618702,0.1071193144363876,0.0,0.3045484508899143,0.2727272727272727,0.4749606903020704,-1.3111535213332692,-0.0727044058961779,-0.02521449079487056,-0.05959788733333042,0.5250393096979296,0.9243588274637142,0.026264092770118392,0.017776131297379125,0.03081196091545715,-7.194474091003658,0.6273642026397177,0.6492516770881822,1.0959414842888646,0.605916305916306,0.4518192023542087,1.0886371789701212,0.6325962239057021,0.9246429963378339,0.6328406611994445,0.7803807866650914,0.6635698750756766,0.8984608024980665,0.685812325146452,0.6919957915785688,0.8847331597543409,1.056152927120669,0.7251136761425946,1.0280946926658856,0.691465780119854,0.9413014889914382,0.6713551864162624,0.7529736370382909,0.6509243164133293,0.9315087827754335,0.6996916196724534,0.6075190990209839,0.6965632347684207,1.2217813051146384,0.8204117109308022,1.0041095046787993,0.705051835207445,0.9218615984031775,0.6080456820223273,0.5000823142272827,0.5549543719067831,0.9161654726379963,0.9688327006007887,0.9017230597159525,0.9119989751145204,1.1738095238095239,0.953923379705285,1.07883760688778,0.9713023795525945,1.0600359801894716,0.8973168227896826,0.7636964084272921,0.8590101208720607,1.032313769839726,1.1722515040195922,1.025466057450622,0.9455979805370115,1.117342739564962,1.0023254920474025,1.025535809890661,1.167608203074653,1.0290357469204592,1.0668314869469748,0.8413452458073162,1.1127743823637448,0.9856549105797496,1.0981607754966642,1.1810060830934557,1.0133069291971748,1.0321428571428573,1.148181831099996,1.0686674462473256,1.0979734579789302,1.065755829546336,1.173383805979725,1.0725823908408776,1.1663467016967766,1.0945216139240772,1.2945740297077144,1.1598481396268931,0.9723893757608137,0.848920634920635,1.0086867974933569,0.9970959964729839,1.2903437437256238,1.1448496410136961,1.209285255998973,1.2874930056508158,1.2687645737987086,1.1410040675559847,1.2655541631344218,1.0097224494342136,0.9347172920269117,0.7757936507936508,0.8113125772668496,0.8795401274329258,1.25906610809834,1.0615341398457703,1.0862392531759266,1.1694401650365764,1.1888933125627439,1.0060861675767578,4.5,0.18947250280583613,3.333333333333335,2.291666666666667,1.4544444444444447,1.0075,0.5822222222222222,0.3324829931972789,0.23934712773998484,0.19938271604938274,6334.929057331303,6990.620376573579,2930.180033553212,2702.334527361546,15.59355347879904,0.4777860022601061,8.143171901134476,0.9149237751724981,1.0,0.2727272727272727,1.6288095984417073,3.722351182794982,4.7483286603655745,5.248328660365574,5.378230343099488,5.416691881561027,0.13636363636363638,0.006766875100208434,0.0740740740740741,0.04981884057971014,0.03094562647754138,0.02143617021276596,0.014200542005420053,0.011082766439909296,0.009972796989166035,0.007975308641975308,0.36263663688440706,23.168044077134986,11.227654320987654,5.506763787721124,179.30208336077052,1.0,4.3326928003424,183.824426908906,,142.5385579193884,141.92067010183436,140.66927062175597,142.52647730106398,172.95948874532831,142.7356703199226,143.50818038140957,163.30154404618423,0.03250424707061027,0.16276249137693158,-0.1362835598532728,0.44194324194324214,0.3954298071445274,0.08291351379182522,0.032107868778682824,0.013263111981915264,0.12829314117770563,0.05919795488640319,0.12042120156938481,0.00887891132188246,0.07026085702067586,0.15087962822092574,0.03097023378774535,0.13676964214598625,0.19863775548896725,0.05974252271186914,0.06889203465454706,0.011942149561827643,0.14254718448975398,0.029248578812153984,0.15364062140705928,0.013474141357323893,0.13719853058616832,0.11621449654184418,0.0867573579954084,-0.05408583186360966,0.07083051107037582,-0.006916236255480704,0.13679754637129274,0.07370107417463592,0.1361011935464121,0.06965567647674101,0.12719421140629772,0.09019075883207717,-0.01964542405366555,-0.0020385266452951647,0.010377012648075744,-0.11746031746031747,-0.017269880967605945,-0.07247718416051044,-0.02155085574378545,-0.07641876723404772,0.010010794000649146,0.05199488003327718,0.04325294635909514,-0.05587978241783814,-0.10450939679497417,-0.1106938861546818,-0.010831094891180192,-0.11906721536351167,-0.046445036352150346,-0.04434893970251869,-0.10207566892409212,-0.021444056251456976,-0.12057635099037269,0.005178040822897086,-0.15585175984151792,0.003462558990224276,-0.1323430761859128,-0.20327061508896463,-0.027685565644081037,-0.15978835978835979,-0.20051913849535094,-0.07136261596479154,-0.13224889197951756,-0.091338073727359,-0.1999842996354194,-0.08075810713441774,-0.18672168098446446,-0.1252671300374883,-0.14546046957355055,-0.15416980605957956,-0.0471532704103561,0.041650793650793626,-0.06377192010193306,-0.10066012389670402,-0.14489827395776744,-0.1085971887543393,-0.1660980578347083,-0.1180373360196747,-0.1726859478459894,-0.12225614761377789,-0.07163392429324389,-0.034678350970785206,-0.051729487612496745,0.22883597883597892,0.14058422027387396,-0.04113202393650038,-0.06857121706501058,0.0028013022554208805,-0.052725673870215296,-0.040377397842125434,-0.11371187007631772,0.05036492420283186,16.987275783978756,25.524959902184182,7.234229871646955,17.511096510151532,37.750084740487274,43.862577730186125,45.37269363761506,45.92682684150314,45.96559607227237,61.63413249702805,45.78865290404109,12.327184125811115,1.7410466015632355,1.7772488656126115,15.845479592986962,7723.150932639184,6768.780489952804,2034.8285490528415,151.0,45.0,62.0,83.0,98.0,104.0,115.0,125.0,137.0,421.15491058391075,33.0,5.056245805348308,5.916202062607435,6.796823718274855,7.677400430514807,8.566173813637858,9.453208116138121,10.344351978996153,11.233780183540627,12.125681127029214,0.7083333333333333,0.9857692307692308,1.128338953259204,0.6755169940375171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7023427683095349,0.9754147812971342,1.0065619922684745,0.6598758122093664,8.0,5.0,0.0,0.0,0.0,0.0,8.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.772308850933097,5.824404497999927,5.153109816892792,0.0,0.0,10.426770191309735,10.082660329248245,0.0,0.0,73.47643526054203,23.111176098016994,18.52902952053558,18.125214457361306,310.58490873033776,-857.3856848990251,-47.542652961862196,-16.488186248058174,-38.972076586319325,343.332173402941,604.4540272992109,17.17453890911356,11.624115909600212,20.148467576640368,0.4666666666666667,0.7962856459871376,0.1412837523822642,203.0934649069847,0.11962545332452783,24.27377062890099,0.20371435401286236,8.0,0.24242424242424243,0.28573402736953435,0.6529936929161734,0.8329758571526479,0.920688388943625,0.9434763998966248,0.9502235177267001,3.895900000000003,,1.754201680672269,1.5163285742238561,1.656292611219628,1.7654514172696751,-3.95744021930162,1.4188641680739975,1.2998569315533195,-2.2316536177809887,114.89280000000001,5.106527394840706,0.0,30.175211976650374,0.0,39.33784043889414,0.0,70.76583034913106,0.0,22.514758973090913,4.204692619390966,0.0,5.5093883366279774,3.044522437723423,7.01301578963963,5.351858133476067,8.610136937058975,7.40184157874383,10.258606286207554,36.83333333333333,16.214380658967045,19.610880410971255,0.0,0.0,0.0,0.0,6.521751512566891,2.023902910694938,51.260000000000005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.67362556947861,5.213385095654868,0.0,0.0,30.068354275836214,19.572459993351504,0.0,36.84716443008803,48.53093654769288,5.153109816892792,22.514758973090913,0.0,35.12688368995089,36.521823952095815,39.67996076979034,367.648853817812,,284.96016906006537,283.74025163205386,281.2411341324148,284.93525784097665,347.23812423042386,285.37674969530696,286.92970363404896,327.34697263162866,39.67996076979034,367.64885381781187,,283.3229141581046,282.328189997985,279.84331293211835,283.28750318485834,349.8764177099581,284.05247647177123,285.7165038312658,328.83474171014933,4.8358681422535845,278.1059493660708,,216.49338716054703,215.22536351548894,213.3205964485843,216.48542454688072,258.7770179334467,216.44617593852115,217.57199601800957,245.47031480093042,1.3226653589930113,12.254961793927066,,9.498672302002179,9.458008387735129,9.374704471080493,9.497841928032555,11.57460414101413,9.512558323176899,9.5643234544683,10.911565754387622,2.443171042148007,183.824426908906,,142.5385579193884,141.92067010183436,140.66927062175597,142.52647730106398,172.95948874532831,142.7356703199226,143.50818038140957,163.30154404618423,50.72156862745098,0.0,2.1438639548159197,6.25292734583349,0.0,0.0,9.762505120755169,52.34122359796068,3.414232529839736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.31354223488705,520.704786168522,84.69809911896877,193.56226150533905,246.91309033900987,272.91309033900984,279.66797784117335,281.6679778411734,983.0,140.16986723608738,133.21229596475675,81.39406211886842,90.82000000000001,90.82000000000001,0.875,9.033999333677654,6.044394119358453,4.783884458688562,5.393659463992186,,5.384886157313452,5.384560835375435,5.383969936238554,5.384873769336023,5.372694625057739,5.384658527817511,5.38468409253463,5.379209308146976,0.15946281528961875,0.17978864879973955,,0.17949620524378174,0.17948536117918118,0.17946566454128512,0.17949579231120077,0.17908982083525796,0.17948861759391704,0.17948946975115432,0.17930697693823253,2.663865153412863,2.783836379021968,,2.7822084583498277,2.782148042631484,2.7820382970868023,2.7822061578384862,2.779941863708932,2.7821661855328,2.7821709332166686,2.781153683294923,310.2400000000008,265.6077192424226,193.9116235801613,,194.4557797646057,194.77986496569986,194.87540142895904,194.44804026908204,196.1651487963415,194.74273841848472,194.73641833701052,195.5153187181263,8.853590641414087,6.463720786005377,,6.481859325486856,6.4926621655233285,6.495846714298635,6.481601342302735,6.538838293211383,6.491424613949491,6.491213944567018,6.51717729060421,6.680632769260791,6.366014795381801,,6.368817072482566,6.370482311935186,6.370972675974443,6.368777270890882,6.377569189013682,6.3702916860407965,6.370259232024374,6.374251021638268,2.023902910694938,4.46298902149371,25.291014427206772,4.720239009942409,1.4208945856504203,16.214380658967045,2.9404976332687514,2.617598851386904,0.0,358.3413376980623,203.09677727157316,-560.6591453320133,-31.08895290169601,-10.781906641000255,-25.484506606000604,224.5107730341281,395.2628138152092,11.230724370432004,7.601207957984794,13.175427127173643,2665.0,46.0,1.4841574595792648,0.7511197301648491,0.0,0.0,0.4114603012079802,0.15236338728491944,0.0,0.0,0.0,0.0,0.0,0.0,0.22290498742924503,0.04325741858350554,0.4952340867985052,0.14606460891199144,0.7217332973685118,0.19802164745799827,20.924074484064484,17.37975934194104,14.707039898056806,10.272675826919413,12.524462671792895,7.392060907518716,10.943347563027123,5.382052878245001,9.450634783454557,3.7649843797597553,7.2235497602508225,2.5457423083609894,5.056992053422148,1.5126216674786572,3.6931629550873004,0.9372019934701763,4.088995890356251,1.7205834762862844,7.153352872615359,2.4488170730644914,10.811979940965486,3.1797700320145332,98.69512870888862,49.58263389070165,31.338477386265545,26.701609279793843,25.464239040946744,25.321914436402857,156.0,185.0,60.991445999999996,26.570553999999998,0.4423076923076923,219.08,8.5,6.833333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,22.0,22.0,52.0,0.0,0.0,55.0,22.0,0.0,10.0,45.0,22.0,33.0,33.0,0.0,0.0,0.0,22.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,6.0,1.0,2.0,30.0,8.0,0.0,6.0,1.0,0.0,4.0,8.0,0.0,0.0,1.0,2.0,4.0,3.8066624897703196,7.907062178029634,4.412798293340635,5.035327906686628,5.639688299226896,6.069871301955509,6.350340192725432,6.776400088140456,7.170407963391059,7.54997916248655 +2284,NCC(CC(=O)O)c1ccc(Cl)cc1,0,32.23076923076923,6.250530769230769,2.923076923076923,6.600189933523267,162.97144028549567,131.52571265384614,1.556660109930308,6.384592307692308,5.593152427514568,7.884900807692309,222.62463985492107,26.0,6.363769230769231,3.5384615384615383,5.811965811965812,147.80297749899427,99.01254273076917,1.8488035144615376,6.531269230769232,3.4345520734409627,7.84129053846154,265.85422455375743,22.674418604651162,6.153558139534883,3.2093023255813953,4.224806201550387,150.7407795642755,85.2258481860465,1.650664035222023,6.310967441860465,3.5353861613551545,7.693647162790699,225.83652812704784,17.203389830508474,5.997559322033899,2.610169491525424,2.638418079096045,157.9854130253783,61.46171747457626,1.3863983423472883,6.138364406779662,2.6829880728185813,7.649093016949153,180.37339482576593,15.166666666666666,5.9464999999999995,2.2666666666666666,2.651851851851852,160.15964617688948,53.000873733333314,1.2479334880031334,6.064758333333331,2.8387174211248283,7.584762233333331,160.9956464357482,14.152542372881356,6.050898305084744,1.9661016949152543,2.7005649717514126,165.95215330483273,49.909435966101704,1.0570833060412372,6.110732203389832,3.8298458533863435,7.679405796610168,137.91984500776778,14.391304347826088,6.193978260869566,1.7391304347826086,2.111111111111111,171.15042798348858,49.98597195652171,0.9735596068670869,6.2630108695652185,3.6266774020397223,7.9264053043478295,124.64386106836719,18.708333333333332,6.2369625,1.5,2.060185185185185,174.12940481385635,65.44438791666666,1.0284111409496668,6.43535,3.167009602194788,8.201707500000001,123.08109906210412,44.857142857142854,6.7774285714285725,1.2857142857142858,1.222222222222222,175.54638200065398,174.27650228571432,1.2009582285282856,7.2764000000000015,3.4074074074074074,9.137751428571427,155.3849793871474,13.674556213017754,0.13442130177514786,0.025384802905515518,0.5562130177514792,3.5001826283877566,1.366574906138715,63.99461365828403,0.26183354634117156,0.13843786982248513,2.2303000336396983,0.10058619082840232,51.45079145639963,-0.5088757396449699,-0.022476331360946785,-0.01662860465463899,0.1065088757396449,0.39447731755424087,0.3034850010949675,-2.2128327514792923,0.036384300568047374,-0.021521597633136137,-0.30359534419363476,-0.013740822485207093,4.571627468959651,0.2574652538874369,0.0210352277418467,0.004225833554818526,-0.07678546855648828,-0.2320229958870388,-0.0009948265411668287,1.0767481833975503,-0.0016344292150159564,0.017376799229393145,0.44331804729008745,0.017385395039218363,-3.108574407872131,-1.4033697723397858,-0.018240597733426917,-0.002140550688341721,-0.05556112726908035,-0.5615730061623151,-0.040970259533086834,-6.50252128866212,-0.002440528896545789,-0.020137739444388708,-0.28077852383709756,-0.012812754713669652,-3.1697299123230005,-1.097633136094675,-0.00353284023668636,-0.0012493087447918304,-0.0844181459566075,-0.009489371027832583,-0.3139887900084198,-5.250531895463509,-0.049560809441522864,-0.004879921104536467,-0.08544904938542172,-0.004825583777120338,-7.95153824627893,1.313709758299067,0.017493430949754293,0.005967721378377807,-0.02166282218433454,0.10736320514677747,-0.15246551429767458,6.096690082915456,-0.0062131142560959834,0.01746421622705848,0.2974030266189874,0.008657021687894879,-0.5618294638741106,-0.1093388217134038,-0.03755524826344226,-0.006159659519666778,0.025726781579624425,-0.5430002509155241,0.010903822719335866,-0.2131770353743244,0.034451241029988935,-0.034256598919475176,-0.5066409485116563,-0.02867552945716488,3.3340894210982275,-3.479043392504931,-0.027769378698224878,-0.000568409150325186,0.020710059171597656,0.26940426619913777,0.11303404170070912,-15.971568090976334,-0.016682842059376743,-0.03229075443786985,-0.45445676396926804,-0.02949616198224846,0.5774153065633135,3.721048182586646,0.09713144547759921,0.013108646724956857,0.1360946745562131,-0.23319036139548982,0.1711690056095169,15.391509165891803,-0.21267995346123758,0.14452916314454764,-0.3159371902645091,0.14277473774302635,-7.672215537394736,,,0.48435374149659866,1.1428571428571428,0.5714285714285714,0.03571428571428571,0.5714285714285714,0.0,0.6733485334388457,0.020284614788378303,0.02642747193123544,0.7237512344596739,0.23542209877693793,0.2381656837470477,1.3970997678985195,0.47358778252398565,1.9456283895093394,1.4538205759136935,0.12380339261725237,0.24233835848088697,0.1256660624975063,0.4918078135956456,8.194448319384616,838.0,162.5138,76.0,171.60493827160494,4237.257447422888,3419.668529,40.473162858188005,165.9994,145.42196311537876,205.00742100000002,5788.240636227948,676.0,165.458,92.0,151.11111111111111,3842.877414973851,2574.3261109999985,48.068891375999975,169.81300000000005,89.29835390946504,203.87355400000004,6912.209838397694,975.0,264.60299999999995,138.0,181.66666666666666,6481.853521263846,3664.7114719999995,70.97855351454699,271.3716,152.02160493827165,330.82682800000003,9710.970709463058,1015.0,353.85600000000005,154.0,155.66666666666666,9321.13936849732,3626.2413309999993,81.79750219849001,362.16350000000006,158.2962962962963,451.296488,10642.030294720189,910.0,356.78999999999996,136.0,159.11111111111111,9609.578770613369,3180.052423999999,74.876009280188,363.88549999999987,170.3230452674897,455.08573399999983,9659.738786144891,835.0,357.00299999999993,116.0,159.33333333333334,9791.177044985132,2944.6567220000006,62.36791505643299,360.5332000000001,225.96090534979427,453.0849419999999,8137.270855458299,662.0,284.92300000000006,80.0,97.11111111111111,7872.919687240475,2299.3547099999987,44.783741915886,288.09850000000006,166.82716049382722,364.61464400000017,5733.617609144891,449.0,149.6871,36.0,49.44444444444444,4179.1057155325525,1570.6653099999996,24.681867382792003,154.4484,76.00823045267491,196.84098000000003,2953.946377490499,314.0,47.44200000000001,9.0,8.555555555555555,1228.824674004578,1219.9355160000002,8.406707599697999,50.93480000000001,23.85185185185185,63.96425999999999,1087.6948557100318,355.5384615384616,3.4949538461538445,0.6600048755434035,14.46153846153846,91.00474833808167,35.53094755960659,1663.8599551153848,6.807672204870461,3.5993846153846136,57.98780087463216,2.6152409615384604,1337.7205778663904,-13.230769230769218,-0.5843846153846164,-0.43234372102061375,2.7692307692307674,10.256410256410263,7.890610028469156,-57.5336515384616,0.9459918147692318,-0.5595615384615396,-7.893478949034504,-0.3572613846153844,118.86231419295092,11.071005917159788,0.9045147928994081,0.18171084285719663,-3.3017751479289963,-9.976988823142669,-0.042777541270173636,46.30017188609467,-0.07028045624568613,0.7472023668639053,19.06267603347376,0.7475719866863896,-133.66869953850164,-82.79881656804736,-1.076195266272188,-0.12629249061216155,-3.278106508875741,-33.13280736357659,-2.417245312452123,-383.6487560310651,-0.14399120489620154,-1.1881266272189337,-16.565932906388756,-0.7559525281065095,-187.01406482705704,-65.8579881656805,-0.2119704142011816,-0.07495852468750983,-5.06508875739645,-0.569362261669955,-18.839327400505187,-315.03191372781055,-2.973648566491372,-0.292795266272188,-5.126942963125304,-0.2895350266272203,-477.0922947767358,77.50887573964496,1.0321124260355032,0.3520955613242906,-1.2781065088757377,6.334429103659871,-8.9954653435628,359.7047148920119,-0.366573741109663,1.0303887573964503,17.546778570520257,0.5107642795857978,-33.147938368572525,-5.029585798816575,-1.727541420118344,-0.2833443379046718,1.1834319526627235,-24.978011542114107,0.5015758450894499,-9.806143627218923,1.584757087379491,-1.575803550295858,-23.30548363153619,-1.3190743550295845,153.36811337051847,-83.49704142011835,-0.6664650887573971,-0.013641819607804462,0.49704142011834374,6.465702388779307,2.7128170008170187,-383.317634183432,-0.40038820942504183,-0.7749781065088763,-10.906962335262433,-0.7079078875739631,13.857967357519524,26.04733727810652,0.6799201183431944,0.09176052707469799,0.9526627218934917,-1.6323325297684288,1.1981830392666182,107.74056416124262,-1.488759674228663,1.0117041420118336,-2.211560331851564,0.9994231642011844,-53.705508761763156,0.7537172688484136,0.597690748750168,0.47358778252398576,0.33450130386581034,0.3232127203139006,0.19547085433059921,0.20128557646933337,0.11494618963426044,0.13283550214257395,0.061260292907243094,0.09332381451022338,0.03443220455465045,0.06071615194165447,0.022972553678598788,0.04122802423699485,0.012494126185083793,17.00110203968719,5.692933699032115,3.554708630625511,2.190374383020621,0.42758928961883935,-0.3343646803616844,3.1315239594861355,0.9728328050401005,6.021999784859504,0.7740073191781891,14.537804030693385,10.952590045343571,35.4505169289747,11.70403001871244,2.207735977869446,0.7416186288549437,3.500746567435872,2.2412173218082057,7.008290930300019,1.2295376044150192,3.713676970367179,2.4374317085211454,22.45585791438144,14.701441998963015,0.3446691706548237,0.7258379462115414,0.8481905391174538,0.9108967074529941,0.9108967074529941,0.9108967074529941,2.3639478333265678,310.402966410215,0.0,1.0,1.0,0.0,5.0,1.0,1.0,1.0,0.0,3.0091858060587495,1.1388323259398776,0.5384615384615383,0.23076923076923084,0.23076923076923084,0.23076923076923084,21.992826057778643,554.6478382010152,52.486398510961564,21.33260916157751,44.49112003738287,,8.0,168.0,5.969305287951849,4.794537184071822,12.338727669087403,11.567389719653901,5.563451491696996,0.0,12.13273413692322,12.13273413692322,0.0,22.441134762235407,6.780952380952381,16.0,8.0,0.5,8.0,0.0,0.01564625850340137,0.0,0.18278388278388263,0.05927197802197792,-0.12351190476190471,0.10360144057623044,0.1679877300613496,0.0,0.6161172161172164,0.8870748299319727,0.43333333333333374,0.5568452380952384,0.7834733893557423,9.42687946814384,0.2839846070372962,0.3699846070372962,10.132517282435435,3.295909382877131,3.334319572458668,19.559396750579275,6.630228955335799,0.5460122699386504,0.26264044943820225,0.0,0.2949438202247191,0.3,0.47240210084479684,-0.6575883712834787,-0.08099602431210877,-0.025291860433979945,-0.06575883712834786,0.5275978991552033,0.7344214654795528,0.05073005121086854,0.028246979441521262,0.04590134159247205,-2.287712661145415,0.6436607529208133,0.8869380909619143,1.59843122849463,1.0638297872340428,0.6940821054389114,1.0243537428328502,0.6465073479965048,0.8152060870839613,0.8345042956060866,0.8483652343274153,0.8175392060137422,0.865324159113165,0.6729066245358396,0.48712257877342396,0.5338002735797485,1.4473033151905002,0.9035962931647885,1.135227595427699,0.6803027285811226,0.9759752049230048,0.5192828877526271,0.4409878161123309,0.45703045532704445,1.0439876092330977,0.9802510469457053,0.9110168558908697,0.735634055996435,1.1866660656328887,1.0594679521147707,1.021206821717564,0.9816439341435577,0.9862282079831012,0.9409211990460489,0.9034984206477997,0.9108442218810956,1.0477813923568373,0.8771906101254866,0.7869202630605884,0.8263211704246697,1.0084219858156032,0.8460927390741747,1.216418356919259,0.8831933814394209,1.1143505910252467,0.8044141270587565,0.7525042946724023,0.7656731525376187,1.1262087303541641,0.5863629362884949,0.9379321745906259,0.8302287024761429,0.8057609087630726,0.9729848782741396,1.048001298216994,0.5921362399000999,0.8619830529255352,0.8664263556569137,0.9469941724986196,0.8453993822120791,0.9352394295226802,1.0050585103380802,1.6957911942224968,1.5721918793289058,0.7516188714153562,1.3484502804844187,0.8214973599583932,0.9979055253769242,0.7558182410637706,1.5825395413188434,1.7211183508946735,1.635031710293525,0.8379019043746735,2.2691520625991632,1.6205060207684048,1.4624144665418042,0.792331560283688,1.11452941728931,0.5855761185262615,2.2441501699478823,1.2387486992405872,1.779456379651793,1.6143619981465653,1.9884094307729017,0.9704610542591521,3.510771465661123,0.910292012848666,1.194254562886304,0.49392097264437695,1.2226332595900993,0.3572768254280906,3.4882867320132402,2.461451593603017,1.0530073822142982,1.6726880873425112,1.1247092553014286,1.220598152526811,3.5,0.0,1.5555555555555562,0.75,0.7022222222222224,0.40277777777777785,0.20244897959183678,0.11805555555555555,0.0,0.0,2405.549118755947,2728.2049482704347,1281.6890952735162,1149.8791508631612,7.869209646213649,0.4465742296778699,4.355023410282126,0.806927059825809,1.0,0.3,1.6912539120823422,3.561607392201214,4.161978179679553,4.469670487371861,4.469670487371861,4.469670487371861,0.24999999999999994,0.0,0.0864197530864198,0.044117647058823525,0.046814814814814816,0.03098290598290598,0.025306122448979597,0.029513888888888888,0.0,0.0,0.5131551322808326,12.071428571428571,5.777777777777778,3.96,87.49008435321755,1.0,3.52065439231534,47.147694818128564,,37.93973478539878,38.85283089610043,39.086369156410726,37.91433552089679,44.49205828756552,38.82126156569387,38.86034050397175,42.141581516213144,-0.03721332756382514,-0.16720810663286004,-0.6550614049095488,0.19148936170212755,0.11270192428100353,0.22207710659086413,-0.03457842191680836,0.13895965996900295,-0.15546033510001747,-0.1361230953748352,-0.1366074445412553,0.08885436627022024,0.018828051885321,0.1564873086635718,0.16647100119498473,-0.1380504700643247,-0.06628882561876852,-0.0007279707366921666,0.016825606435365462,-0.006242245265571432,0.1255205620519509,0.1987705871871519,0.17284077362942832,-0.06041839823798232,-0.10262634856141227,-0.13569722575621776,-0.08432410116828719,-0.09989181391994234,-0.16044105859155844,-0.029980251612294808,-0.10161044683204172,-0.009320917547233451,-0.14546409497784635,-0.12589271380626132,-0.12738085226358667,-0.06160701949568822,-0.08026828212894851,-0.02628184811508439,-0.04921482941750102,-0.1517730496453901,-0.0027111074007596992,-0.2297633218625399,-0.08204646602759565,-0.189283650372839,-0.03524990026785191,-0.038312804598749285,-0.04797461497823961,-0.1545464709326622,0.09606964480854276,0.13013883007186083,0.23509031764359936,-0.038946988820771675,0.03067360093614052,-0.11156762326952788,0.09526880051921754,-0.02372925220208505,0.12615201497576017,0.1333466449057286,0.0860657075946295,-0.010919743855645358,-0.00799578575056912,-0.2793846493635547,-0.24265146129334056,0.04625346901017584,-0.15513483396883185,0.007978942588770957,-0.003331171534414426,0.13157687970623383,-0.24745106930207333,-0.2271626870241546,-0.2850841573878134,0.06480151863015747,-0.25441727967690747,-0.20658465832056797,-0.022391710207120972,0.03723404255319153,0.07696863129774173,0.08271338892069158,-0.24957675619796219,-0.06371544934749822,-0.23325087621815727,-0.20376485545203774,-0.29324265825483165,0.011222671026404445,0.27211473079062876,0.722589680317745,0.5163974198952184,0.24468085106382995,-0.06662234121849273,0.12525402364745478,0.24051257263742212,-0.8122715993928203,1.0440001953935956,-0.14165681096678326,1.4194268275512758,-0.14911754163969113,5.814165998393336,11.312564966585153,2.1822472719434427,20.38293315581747,34.09400901302561,38.08472122834223,38.39487507449608,38.39487507449608,38.39487507449608,27.23879745313075,20.35348806279171,1.7332474966415332,3.3927370187324177,1.7593248749650883,6.885309390339039,1844.3606905737256,1574.754190559634,523.1615875432781,0.0,18.0,20.0,23.0,26.0,20.0,16.0,12.0,4.0,213.055656304,14.0,4.174387269895637,4.948759890378168,5.777652323222656,6.580639137284949,7.411556287811163,8.224967478914584,9.05543941075822,9.873286043803006,10.703266939811954,0.717948717948718,0.9892307692307691,1.1289566202294106,0.6841837290176312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6813799170888993,0.9800904977375566,1.0160373130147347,0.6357455573126243,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,10.84019487200289,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,23.733674027155736,24.24094203453279,10.940539359902719,6.4208216229260096,188.22913249268146,-262.0168039951845,-32.272954257316556,-10.077569384430172,-26.201680399518448,210.2219585504601,292.6310342058307,20.21344425364501,11.255039777147335,18.28943963786442,0.5,0.7550837017638166,0.3456970406317002,67.84520304597099,0.21803904514359537,17.985239402993678,0.24491629823618344,4.0,0.2857142857142857,0.35980759535220497,0.7577179169972936,0.8854444327020352,0.9509047568723008,0.9509047568723008,0.9509047568723008,1.857,,1.2899159663865545,0.8737040977231583,0.7031788698096897,1.3022161039574311,-2.4488253927316816,0.8716640456749766,0.8470367662118319,-1.0340249546218707,55.50020000000002,9.901064578912528,0.0,0.0,5.733667477162185,12.338727669087403,6.544756405912575,34.85155307928476,0.0,0.0,3.367295829986474,0.0,4.61512051684126,0.0,6.052089168924417,0.0,7.575071699507561,0.0,9.143024664691316,18.666666666666668,7.091665406903502,0.0,0.0,0.0,0.0,0.0,1.5547652116402122,0.0,25.72,0.0,10.527246927577615,0.0,0.0,0.0,0.0,0.0,-0.837592592592592,29.352872125964673,5.733667477162185,0.0,0.0,17.62058908870513,4.794537184071822,0.0,17.9021791607844,24.26546827384644,5.022633313741326,0.0,0.0,17.788776954458413,17.715877844311382,16.905410223795208,94.29538963625714,,75.69519586131375,77.58084692109755,78.07228418856292,75.64264016979965,90.03361317201608,77.5179996962913,77.59967575562752,84.72631658440712,16.905410223795208,94.29538963625713,,74.58955360441101,76.83195769447768,77.46955944301173,74.52645493783612,91.43294196786275,76.77085908571274,76.87364424173163,85.31718798704816,4.566977006019423,69.16358111292539,,56.41578128194693,57.44729940664805,57.77169931173284,56.38759553959363,64.62561984113297,57.41623533653022,57.460817855480016,61.45454488368533,1.2075293016996578,6.735384974018367,,5.406799704379553,5.541489065792682,5.5765917277544945,5.403045726414261,6.430972369429719,5.536999978306521,5.542833982544822,6.05187975602908,2.2834885030097114,47.147694818128564,,37.93973478539878,38.85283089610043,39.086369156410726,37.91433552089679,44.49205828756552,38.82126156569387,38.86034050397175,42.141581516213144,25.482352941176472,0.0,0.0,5.717706793622798,0.0,5.494818121693122,8.649293255367992,26.416970138383103,0.3810166288737715,0.0,0.0,0.0,-0.13447530864197588,0.0,0.0,0.0,0.0,16.52938449012823,300.8639247966868,43.9726017141409,92.60179219723156,108.21143267166839,116.21143267166838,116.21143267166838,116.21143267166838,167.0,94.74995478188035,97.58716624645473,44.75260187995103,63.32000000000001,63.32000000000001,1.0,6.362596976135641,4.807354922057604,3.38731052610608,3.6800389529904556,,3.6877479159384414,3.682620198132054,3.681769034801492,3.6878554577807936,3.6576699870362246,3.68307331451591,3.6829557438799805,3.6682494387480986,0.24195075186471998,0.26285992521360396,,0.2634105654241744,0.2630442998665753,0.26298350248582086,0.2634182469843424,0.2612621419311589,0.263076665322565,0.2630682674199986,0.26201781705343563,1.5565084880098918,1.6393955737977857,,1.6414881874681524,1.6400967458049018,1.6398655892738088,1.6415173489718047,1.6332985657448833,1.6402197800809408,1.6401878576882902,1.6361867927240095,157.6599999999998,60.615755885001,57.59748608941209,,57.073206064713496,57.39562896567835,57.45265910739452,57.064180573101076,58.79198937403922,57.37846007575077,57.38852519240203,58.27369417409709,4.329696848928643,4.11410614924372,,4.076657576050964,4.099687783262739,4.103761364813894,4.076012898078648,4.199427812431373,4.098461433982198,4.099180370885859,4.162406726721221,4.441027094005159,4.389951159089579,,4.380806997351048,4.386440386623421,4.387433525439167,4.380648845988079,4.410477847109558,4.3861412095147365,4.386316610422123,4.401623013297069,0.0,10.527246927577615,9.288039948489685,6.410836640211641,-0.9720679012345679,7.091665406903502,0.05370275888133014,0.3273138699924414,0.0,191.50229897821296,75.00010320781297,-104.40088142351823,-12.85919383501318,-4.015418516289162,-10.440088142351822,83.76316874565688,116.59915485239611,8.054068916604574,4.484582878938312,7.287447178274757,318.0,17.0,1.0302567583920093,0.494094571103748,0.0,0.0,0.08333333333333333,0.048112522432468816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.13144585576580214,0.04753454689492521,10.55204176387779,8.367670482502353,6.6302289553358005,4.683018254121345,5.817828965650211,3.518475377950786,4.025711529386667,2.298923792685209,3.055216549279201,1.4089867368665911,2.426419177265808,0.8952373184209118,1.2143230388330895,0.4594510735719758,0.6596483877919176,0.1999060189613407,1.6139490435775308,0.8248483481087575,2.248558025088849,0.9143467828099321,3.171678568801631,1.0179254218448748,46.883089133715764,28.409525237791307,21.809890898397768,20.871226413101876,20.871226413101876,20.871226413101876,64.0,70.0,29.585515999999984,12.846483999999998,0.23076923076923078,14.04,5.944444444444445,3.2777777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,26.0,0.0,1.0,26.0,6.0,1.0,4.0,22.0,7.0,14.0,19.0,0.0,0.0,0.0,10.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,2.0,2.0,0.0,14.0,4.0,0.0,1.0,2.0,0.0,1.0,4.0,0.0,0.0,1.0,0.0,1.0,2.9444389791664403,0.0,3.417726683613366,3.7669972333778885,4.202825205216171,4.682709763443509,4.523146350509501,4.447053317890954,4.406719247264253,3.840795496139778 +3476,CCC1=C(C)CN(C(=O)NCCc2ccc(S(=O)(=O)NC(=O)NC3CCC(C)CC3)cc2)C1=O,1,24.558823529411764,6.168576470588236,3.0588235294117645,6.683006535947713,164.85016474172158,96.90224825000003,1.4487714524244997,6.226629411764705,5.453750353021867,7.731016661764706,204.01824657515746,27.242857142857144,6.290468571428572,3.742857142857143,5.290476190476191,147.44424219426864,103.28018542857144,1.8097972930000001,6.443301428571429,2.692041446208113,7.76108217142857,254.1481108900858,20.775193798449614,6.217696124031008,3.2635658914728682,4.919896640826873,156.25447063658268,76.96060973643412,1.5045747413366901,6.314755813953488,3.340606756627428,7.7205757984496115,204.2143095111281,17.085227272727273,6.025498863636364,2.6761363636363638,3.1515151515151514,159.05118659535722,61.32918902272726,1.3009424303117387,6.117033522727271,2.794007786195287,7.6090948409090915,171.98081134966017,14.902061855670103,6.174139175257733,2.3092783505154637,3.2044673539518898,165.9027710658734,52.075629551546385,1.1098878934324898,6.222871649484538,3.7850801832760608,7.7753496082474225,145.92737933965822,13.80232558139535,6.081098837209303,2.2732558139534884,2.5,167.67576360253446,47.88097592441861,1.0729397928863373,6.127343023255814,3.040078596037898,7.715441500000001,139.28654888312505,16.319148936170212,6.21717730496454,2.50354609929078,2.851063829787234,166.18468365944852,57.38682816312056,1.1852597168064893,6.274595744680853,3.2739361702127656,7.849946510638297,156.203104600896,17.023255813953487,6.35592093023256,2.635658914728682,2.9664082687338498,162.6484987461819,59.31779208527131,1.2588714847207751,6.4201062015503885,3.575090917791176,7.973418108527133,169.60903530230328,15.90625,6.192803906250001,2.53125,2.979166666666667,160.8261857230843,55.50615419531248,1.2894362650701563,6.264060937500001,3.2925588348765435,7.786001562499998,170.10283788249754,9.713667820069205,0.13577361591695497,0.016925008589925544,0.628892733564014,3.9378123798539018,1.468790354011764,44.84623545566608,0.2625633874665753,0.12718226643598612,2.383143142802388,0.08457176016435983,50.02386067715218,1.7972565496786939,-0.0067344562530893565,-0.014522510701507401,0.18245180425111215,0.8480419618827919,-0.2191854985409509,7.787069106518792,-0.013591937484395291,-0.0015932328225406525,-0.2568772352047815,0.002720194877656927,0.8876813463953939,1.0036144416727015,0.04958516201282157,0.007200368874879446,-0.0342734905179582,0.9006382458744249,0.18347552974116982,4.5431928655833405,0.010004488499326298,0.042125189104369576,0.49822056503280504,0.031107317697017235,0.40306963137155605,0.3406436772569988,-0.002222529687008497,-0.004206994709201634,-0.10182054105064488,0.03179174967669774,-0.28246681018698294,1.4148611760184033,-0.03383869727452342,0.00027697487417426865,-0.06216948614228704,-0.0017848138074079872,-3.610730371401789,-0.1825883779830915,0.01253228159668967,0.0019032196380609435,-0.025648343024292787,0.1904977070674641,-0.13397394395807358,-0.8723899449777938,-0.01862260564384907,0.010707666856918669,0.37675594259542095,0.00801308587869652,-3.2341809582093735,0.17603806228373725,-0.02146648527400012,-0.0003788200158355696,0.026716021565945127,-0.3001584810850925,-0.020504190373466468,0.9005769742244703,0.019766803136725675,-0.01778185603926932,-0.3242790627891026,-0.015312367209503505,2.7050279089947162,-0.8615610199023288,-0.026373073572357502,-0.00011001248005842888,-0.008325357677489022,-0.4436530139798931,0.08285709586110013,-3.576424107522578,0.011037755345608507,-0.02265454428329523,-0.3157028217391939,-0.020124214065069104,3.6047876610051555,-2.4795136933022173,-0.04524119457632556,-0.0006321165663715482,-0.009649687508382292,-1.0485688271356577,0.036132342411761734,-11.137428436172245,-0.008226256050551302,-0.04244289115098829,-0.6025360198610181,-0.029141937432941745,-2.1643288440965707,-1.5771788494809689,-0.022078831909601984,0.0017480760216078528,0.01678741349480968,-0.5622251658016149,0.1871231679688399,-7.275653747830612,0.00835571888609364,-0.02341753757569195,-0.40829354745370366,-0.01264992491619811,-3.2786820794254528,,,0.4735294117647059,1.0514705882352942,0.4264705882352941,0.0,0.625,-0.19852941176470587,1.0747076028435736,0.02390649792044683,0.031494733214564474,0.9019786122031784,0.18542193746087346,0.2881484341002413,1.9766862150467521,0.4735703715611148,1.9985685336591368,1.4333639310732744,0.24101089516331797,0.25858321925822864,0.0,0.5652046025858622,7.209191046882367,1670.0,419.46320000000003,208.0,454.44444444444446,11209.811202437068,6589.352881000002,98.51645876486597,423.41079999999994,370.85502400548694,525.709133,13873.240767110707,1907.0,440.3328,262.0,370.33333333333337,10321.096953598804,7229.612980000001,126.68581051000001,451.03110000000004,188.4429012345679,543.2757519999999,17790.367762306007,2680.0,802.0828,421.0,634.6666666666666,20156.826712119167,9927.918656000002,194.09014163243302,814.6034999999999,430.9382716049382,995.9542779999999,26343.645926935525,3007.0,1060.4878,471.0,554.6666666666666,27993.008840782873,10793.937267999998,228.965867734866,1076.5978999999998,491.74537037037044,1339.2006920000001,30268.622797540193,2891.0,1197.7830000000001,448.0,621.6666666666666,32185.13758677944,10102.672132999998,215.31825132590302,1207.2371000000003,734.3055555555558,1508.4178239999999,28309.91159189369,2374.0,1045.949,391.0,430.0,28840.231339635928,8235.527859,184.54564437645,1053.903,522.8935185185185,1327.0559380000002,23957.28640789751,2301.0,876.6220000000002,353.0,402.0,23432.040395982243,8091.542770999999,167.121620069715,884.7180000000002,461.62499999999994,1106.8424579999999,22024.637748726338,2196.0,819.9138000000002,340.0,382.66666666666663,20981.656338257464,7651.995178999999,162.39442152898,828.1937000000001,461.18672839506166,1028.570936,21879.565553997123,2036.0,792.6789000000001,324.0,381.33333333333337,20585.75177255479,7104.787736999998,165.04784192898,801.7998000000001,421.4475308641976,996.6081999999998,21773.163248959685,660.529411764706,9.232605882352939,1.150900584114937,42.76470588235295,267.7712418300653,99.87774407279994,3049.5440109852934,17.85431034772712,8.648394117647056,162.0537337105624,5.750879691176468,3401.622526046348,125.80795847750858,-0.47141193771625495,-1.016575749105518,12.771626297577852,59.362937331795436,-15.342984897866563,545.0948374563154,-0.9514356239076704,-0.11152629757784568,-17.981406464334704,0.1904136414359849,62.13769424767757,129.4662629757785,6.396485899653983,0.9288475848594485,-4.421280276816608,116.1823337178008,23.668343336610906,586.0718796602509,1.2905790164130924,5.434149394463676,64.27045288923185,4.012843982915223,51.99598244693073,59.95328719723179,-0.3911652249134955,-0.7404310688194876,-17.920415224913498,5.595347943098803,-49.714158592908994,249.01556697923897,-5.9556107203161215,0.048747577854671285,-10.94182956104252,-0.3141272301038057,-635.4885453667149,-35.42214532871975,2.431262629757796,0.36922460978382304,-4.9757785467128,36.956555171088034,-25.990945127866276,-169.243649325692,-3.6127854949067197,2.077287370242222,73.09065286351166,1.554538660467125,-627.4311058926185,30.278546712802807,-3.692235467128021,-0.06515704272371797,4.595155709342562,-51.62725874663592,-3.5267207442362327,154.89923956660888,3.3998901395168164,-3.0584792387543227,-55.77599879972565,-2.633727160034603,465.2648003470912,-121.48010380622836,-3.718603373702408,-0.015511759688238473,-1.173875432525952,-62.55507497116493,11.682850516415119,-504.2757991606835,1.5563235037307994,-3.1942907439446273,-44.51409786522634,-2.837514183174744,508.27506020172694,-319.85726643598605,-5.8361141003459975,-0.08154303706192972,-1.2448096885813156,-135.26537870049984,4.661072171117263,-1436.7282682662196,-1.061187030521118,-5.475132958477489,-77.72714656207134,-3.759309928849485,-279.19842088845763,-201.87889273356402,-2.826090484429054,0.22375373076580515,2.148788927335639,-71.9648212226067,23.951765500011508,-931.2836797223183,1.0695320174199858,-2.9974448096885697,-52.26157407407407,-1.6191903892733581,-419.67130616645795,0.7317677767557196,0.6127692877600294,0.4472609064743863,0.36922957730137873,0.2959485156496618,0.21270142712074996,0.18884613311415632,0.12477852965113514,0.12679308286438176,0.07009001128231199,0.07942189519863668,0.043209175840101914,0.052475470736269146,0.025455933574315023,0.03567314864953819,0.01490923223068147,16.013123954334063,5.694092092350315,3.5813784718323287,2.1846579130106507,0.47139579269889154,-0.3698192289238433,4.043828562046298,0.9711642894072555,6.025605067187023,0.6442273584895624,14.547821014205235,10.319765143477852,32.06654453031717,11.705168643113065,2.9545906562038873,0.7495522442223054,3.5373573738291295,2.2380333910771455,7.015574271691836,0.2989365699414639,3.768533594414594,2.4367794934692775,24.441833884438168,14.70074903565026,0.259706414475153,0.5600181141333332,0.7924348341102343,0.8624208453965267,0.8624208453965267,0.8624208453965267,1.3309991302510205,1057.3391753589833,0.0,1.0,5.0,0.0,5.0,7.0,3.0,1.0,0.0,4.450330545503766,2.5572314347461855,1.0921273898013277,0.6509509192130922,0.6509509192130922,0.6509509192130922,253.47152641190348,2474.5592931325677,71.850577027982,36.39057784018482,71.85229747039908,,21.0,1145.0,22.085520178083726,22.8014085365444,16.84450403401724,37.42216663390783,36.819842513470306,17.032643867773697,12.13273413692322,13.847474399381248,22.279409272155373,0.0,16.1,35.75,14.5,0.0,21.25,0.0,0.026470588235294076,-6.75,0.145048019207683,0.02987616099071233,-0.11517185821697068,0.04602543720190766,0.1682372881355929,0.0,0.5838235294117636,0.8676470588235291,0.4387755102040806,0.5539473684210513,0.8216216216216214,36.5400584966815,0.8128209292951922,1.0708209292951922,30.667272814908067,6.304345873669698,9.797046759408206,67.20733131158957,16.101392633077904,0.5457627118644071,0.19668737060041405,0.05175983436853002,0.30434782608695654,0.5416666666666666,0.34522954125474503,-1.0432651519864713,-0.051895228980698184,-0.015342134588036346,-0.04173060607945886,0.654770458745255,1.9786811976645444,0.035849117890523564,0.029098252906831535,0.04601584180615221,-5.4884816921975785,0.8781267890538527,0.6897984408746458,1.9777789003298836,1.0183631361760659,0.5649663682993763,1.5044719514375737,0.8762050296944824,1.344976712477723,0.6586752978573083,0.6241214638257324,0.5803342955350488,1.1063628902709568,0.8275896229378387,0.42322291641036447,0.5790973593040261,1.3238113517375214,0.690942915621019,1.0526001475004165,0.8322396792934948,1.0275840730228387,0.46090758710713864,0.4489457989702183,0.3857274844390547,1.0338353068054917,0.9454666387357409,0.8481262738580594,1.3035921549440763,1.246248593222458,0.9086828261501493,1.2554771292296896,0.9478539633701424,1.1835545033079327,0.8380010501006738,0.8128248034422717,0.8374893875135114,1.099480460961465,1.00675648380987,1.06298280395769,1.063838973516597,0.9489109318056125,1.0201290616264298,1.066196264029434,1.0081927755646285,0.9949303813485862,1.0564372943910147,0.9904787588686299,1.0659104447597012,1.005659320558466,0.9639158470488579,1.3258358076500687,1.2349232469181695,0.9017705767569815,1.1716234538082397,0.9421347980425986,0.9639936444854875,0.8229180611790806,1.2951895056990173,1.3146045425484134,1.3566133135176677,0.8780167438689271,1.3653994943437362,1.446385556968579,1.4302691266652208,1.1055879110694877,1.2386459300051986,0.9678186297069414,1.3289389228881696,1.082287759019383,1.4076183956096477,1.4264043033300748,1.5165296879830552,0.8843623833130834,1.520720504286727,1.7208278771828547,1.2605708166671241,1.1659255941908446,1.486949671343487,1.0154186858485692,1.4866827159316296,1.1793859113957548,1.6827638565943537,1.8516269883847163,1.8159987275640466,1.009512911124091,1.1641112020215512,1.2869724882696747,0.7913977701996013,0.8935157324621732,1.1925326733322759,0.8965492240432841,1.1617792442900423,0.986149404441611,1.2915661445264912,1.415688309035352,1.3175733595376107,1.0541701016613558,9.0,0.21518008366493213,4.888888888888891,3.3888888888888893,1.8194444444444446,1.1702777777777773,0.8278004535147393,0.47137188208616776,0.38247984378936756,0.33313271604938277,6911.676378487109,7870.571043882033,3532.5515553975983,3186.4389920499007,21.164839521793102,0.450186258531751,11.636719605052132,0.8187977574542825,0.0,0.5416666666666666,1.637132295746573,3.5302314065041536,4.995335451449011,5.436511922037247,5.436511922037247,5.436511922037247,0.25,0.00742000288499766,0.09586056644880178,0.06517094017094019,0.038711583924349875,0.030796783625730993,0.021784222460914195,0.012739780596923453,0.010927995536839074,0.010094930789375236,0.5435068064388724,28.569444444444443,12.9919261822376,7.99798437893676,200.95385825296708,1.0,4.436923020909566,267.3017049793496,,209.76328696349157,224.30716058837268,222.14448362181196,209.7917344062833,290.9115052279719,226.10466911713627,226.69375432714233,277.4213617274108,0.18502347238654998,-0.049600625332159094,-0.8580504183703512,0.2901159363332677,0.21535865096606138,-0.14922857979171844,0.17363930388799084,-0.05176630913982843,-0.012527161743438224,-0.10778925973481984,0.032164340346829745,0.017745158697853803,0.10331982318760735,0.3652046951680951,0.4254277825989052,-0.05449814998453876,0.22871537772651318,0.12491607753280515,0.10130600304399312,0.038103136144980926,0.33121904715837247,0.20906027677671807,0.3678215711315709,0.008057547456661087,0.0350684914871396,-0.016369378336126016,-0.24856676951442197,-0.1619044641740653,0.008073454651965226,-0.19231254441144063,0.03154916263633993,-0.12887820194973348,0.002177779040552613,-0.02608718084352274,-0.021104134570917234,-0.07218016207715348,-0.01879705805935112,0.09230277555806539,0.1124501431091632,-0.04078333498773378,0.048376532117696235,-0.09121379616372437,-0.019452913630626092,-0.07092613263233342,0.08419150843099729,0.15809203225299578,0.09474895477076033,-0.06465276598866246,0.01812271796241876,-0.15810498327694206,-0.02238226431749398,0.042481046671571605,-0.07622467810318297,-0.013959916279040491,0.02008143972563225,0.075283927920994,-0.13981395785409556,-0.13607200380241366,-0.18105768615605133,0.054074752975437713,-0.0886957466388006,-0.19424299334038814,-0.0064999955228331645,-0.013238120323490105,-0.11266484311178716,0.05641179194484042,-0.07974859140759197,0.042038440515677865,-0.17812659671934533,-0.13247329380641076,-0.23795430089144384,0.0720613645610044,-0.25526029294303704,-0.33321050095621696,-0.03734807950099416,-0.015343932269174592,-0.2662820688208007,0.024600067881077835,-0.248347008907413,-0.03133055270929012,-0.3337170530165918,-0.2528324921147973,-0.34458236858623076,-0.04326592979428122,-0.16236697390684832,-0.1626150394573446,0.10328361207735984,0.026693603851444273,-0.14277601662232423,0.12739950766815916,-0.16223555163338405,0.03182362539848528,-0.1841258080384859,-0.1713256497776221,-0.14957622841967325,-0.06554236388482013,11.488944017775093,19.712650093318718,5.63895009418456,17.541643370552343,35.58900226386932,41.29165829624627,42.1772759433051,42.1772759433051,42.1772759433051,67.95133014441065,48.73437365649133,8.19437043555281,8.791829454779773,0.0,19.216956487919315,20294.557123815553,19029.125353292922,2340.6086798840915,90.0,51.0,63.0,76.0,82.0,81.0,78.0,73.0,81.0,490.22499118800096,36.0,5.1647859739235145,5.998936561946683,6.876264611890766,7.724446645633537,8.603187384583098,9.45727857185611,10.336729941643739,11.19430296961181,12.074328226744996,0.642156862745098,0.982470588235294,1.1351449235236135,0.6006981345531301,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6521747270165551,0.9685121107266436,1.0069994858832099,0.602999664754972,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,5.0,0.0,3.0,0.0,0.0,0.0,0.0,8.0,3.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,10.633577208012662,0.0,0.0,0.0,15.930470882759089,9.694446914922299,22.72896621692467,0.0,0.0,25.980208536304467,74.63586314209758,18.159701765129803,11.440239881430351,282.6956109510279,-854.2909695758224,-42.495069827516744,-12.563102493762095,-34.1716387830329,536.1671373629314,1620.2683235567454,29.35550720046525,23.827475346422727,37.68065868736618,0.47619047619047616,0.7827031709364078,0.11160626641014762,44.85287939295374,0.10867495828066566,57.38743994190465,0.2172968290635919,11.0,0.19444444444444445,0.26893507828136703,0.5799183499868492,0.8205939948576327,0.8930669580761844,0.8930669580761844,0.8930669580761844,3.0740000000000016,,2.446428571428571,2.1466522744089893,1.6797687759523052,2.441687311855157,-7.060060663388549,1.9499694002447983,1.8748820777026522,-3.1146920280923758,128.52190000000004,22.8014085365444,0.0,20.255581803315227,5.917906046161393,70.23346564129368,13.08951281182515,40.97512882568197,0.0,0.0,4.290459441148391,0.0,5.6240175061873385,2.3978952727983707,7.134890851565884,4.844187086458591,8.722742874329398,7.002155954403621,10.35051038444937,43.666666666666664,6.144653644515657,0.0,0.0,0.0,0.0,0.0,0.80586872049302,0.0,66.80799999999999,0.0,61.85750228447711,0.0,0.0,-3.982603680362239,0.0,0.0,0.20156616770217672,77.18985479960571,15.355672072464749,9.589074368143644,0.0,50.41846911018017,21.238649960405414,5.917906046161393,58.43877120539892,40.30716080950275,0.0,0.0,0.0,40.84747314961285,44.34788143712575,42.176819649689705,534.6034099586993,,420.1616215944973,448.4880475135448,444.1901573156267,420.2194251234875,584.2583199516326,452.0946341519052,453.2772214732433,555.7588093454369,42.176819649689705,534.6034099586993,,418.0030081491192,446.46766890233636,442.6091984676715,418.0649951424389,588.8830711193324,450.2593688340277,451.5126265765822,557.957415482914,4.792735262885578,418.3766981330709,,326.51652656367935,350.8490072400455,347.37063531015446,326.5599323452154,453.0244860169164,353.5159301712884,354.2550962400478,433.0456425682409,1.240494695579109,15.723629704667628,,12.357694752779333,13.190824926868965,13.06441639163608,12.35939485657316,17.18406823387155,13.2969010044678,13.331682984507156,16.34584733368932,2.420550646080237,267.3017049793496,,209.76328696349157,224.30716058837268,222.14448362181196,209.7917344062833,290.9115052279719,226.10466911713627,226.69375432714233,277.4213617274108,65.85882352941177,0.0,5.919408628363863,0.0,0.0,0.0,0.0,68.47596504005827,5.406575931417711,7.566781649496249,0.0,0.0,0.6274123242162502,1.2028343296802062,0.0,0.0,0.0,41.003977203338096,640.9264696670376,111.32499611076696,240.05573564228246,339.68281069853276,369.68281069853276,369.68281069853276,369.68281069853276,745.0,147.43026088783424,177.9362786469215,84.36685937134096,133.06,124.68,0.9090909090909091,7.664610557849039,6.169925001442312,3.7593583724128705,5.744395414167467,,5.717100434435234,5.729426993661598,5.730874739390875,5.7170997087420465,5.729082474455955,5.729146900375139,5.728305439091411,5.731767805105333,0.11056936389449619,0.16895280629904316,,0.16815001277750688,0.16851255863710582,0.16855513939384925,0.1681499914335896,0.1685024257192928,0.1685043205992688,0.16847957173798267,0.1685814060325098,2.5480237288274212,2.972000100512543,,2.9672371914311575,2.9693909562421417,2.9696436102770356,2.967237064497366,2.9693308229051305,2.969342068258505,2.9691951837225177,2.9697994322374255,371.96000000000146,1834.3545215949985,223.47084811308414,,225.04726358644322,223.91906062834198,223.96090103471187,225.04784829986232,224.68208251674943,223.96309733083498,224.0387660656085,224.09551421798582,53.951603576323485,6.572672003326004,,6.619037164307153,6.585854724362999,6.587085324550349,6.619054361760656,6.608296544610277,6.587149921495147,6.589375472517897,6.591044535823112,8.73822337088018,6.633056403670046,,6.640085872151134,6.635060081698783,6.635246919289536,6.640088470328291,6.638461868055701,6.63525672584659,6.635594531296413,6.635847795352199,27.15199890263282,37.97781356094522,5.487129871765989,2.4110978377044106,0.385324026724841,4.993254920807383,4.798718443116101,6.527266116665473,-3.982603680362239,463.6827164655454,231.4889049196525,-699.5470512066548,-34.79762966875396,-10.287456635391985,-27.981882048266197,439.0472956566381,1326.7773724337278,24.038131304323198,19.511431947554822,30.85528773101694,4390.0,52.0,3.116433080099661,1.6956522362285158,0.2041241452319315,0.05103103630798288,0.6980466425228905,0.22826631603291464,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.07856742013183861,0.03952847075210474,0.42471798364855085,0.21449209756721316,0.688318010394176,0.3218717710989813,24.880104409694464,20.834155783841,16.101392633077907,13.292264782849633,15.093374298132751,10.847772783158248,11.897306386191849,7.861047368021514,9.636274297693014,5.326840857455711,6.512595406288208,3.543152418888357,4.250513129637801,2.061930619519517,2.782505594663979,1.1629201139931546,6.090280016063532,3.0709431457743794,9.426516674945491,3.665085915232701,12.055510890246754,4.118957532744973,112.60210837972788,50.8060077295565,32.22294614143672,28.529307832362473,28.529307832362473,28.529307832362473,174.0,201.0,74.06096199999998,46.78903800000004,0.36764705882352944,174.1,12.92361111111111,7.486111111111112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,6.0,6.0,68.0,0.0,0.0,70.0,6.0,6.0,9.0,61.0,12.0,36.0,58.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,5.0,3.0,1.0,34.0,10.0,0.0,4.0,5.0,0.0,3.0,7.0,1.0,0.0,0.0,0.0,1.0,3.828641396489095,5.9807826987611215,4.363098624788363,4.7295977643631435,5.1232196548434015,5.380185330504292,5.541753621130009,5.651172524383903,5.494603463692364,5.720311776607412 +155774,O=C(NCCNCC(O)COc1ccc(O)cc1)N1CCOCC1,0,21.79591836734694,6.337238775510204,2.795918367346939,6.938775510204081,167.6046452140556,85.75623853061225,1.2772192371678572,6.365975510204081,4.716553287981859,7.877007020408162,191.12776414794624,23.64,6.562660000000001,3.42,5.78,151.89947631361602,88.48921474,1.57666382164,6.67035,3.168333333333334,7.990964719999999,235.44587313061666,18.556818181818183,6.4965897727272734,2.9431818181818183,4.136363636363637,161.7336229534982,66.86807780681818,1.2900736370544545,6.556770454545454,3.102272727272727,7.9984975,185.5123060298514,14.41025641025641,6.2902128205128225,2.4444444444444446,2.9401709401709404,166.546683335478,50.00516503418803,1.0880431582497863,6.327597435897436,3.007122507122507,7.873588547008548,148.71702826437422,12.403508771929825,6.151964912280702,2.219298245614035,2.3157894736842106,168.23589514106072,41.74993855263158,1.0134375510054474,6.187421929824562,2.7741228070175437,7.767646771929824,134.38157998089545,12.844660194174757,6.116960194174758,2.1844660194174756,2.7184466019417477,168.1058877186099,44.16100743689321,1.0276665238783496,6.150480582524273,3.016990291262136,7.7271279999999996,135.08782181751036,12.204081632653061,5.9782959183673485,2.204081632653061,2.1020408163265305,165.29500907719412,41.534352040816316,1.036936590814,6.029766326530613,2.5615079365079363,7.599846775510204,134.62901482021422,11.443298969072165,6.06859793814433,2.11340206185567,2.1443298969072164,171.08461647189762,38.298412061855664,0.958474177900196,6.095990721649485,2.5635738831615122,7.701634226804124,124.93094458768779,13.097560975609756,6.104182926829269,2.2439024390243905,2.8780487804878048,168.2777313469436,45.45381075609756,1.0229291831856706,6.137809756097562,3.2449186991869916,7.710104585365853,134.69348675169942,8.0,0.16759108704706363,0.03218849427854306,0.45314452311536846,4.0,1.3428700497571415,37.78167390587255,0.20663520758408996,0.1546908788004997,1.7544078856032208,0.10679388254893792,46.63699113786758,0.14448979591836703,-0.016442229904206553,-0.017222803026112492,0.06889629321116207,0.5930612244897958,-0.3700139329623147,0.7234641190254001,-0.021794253421385922,-0.01174512369845892,-0.1801788606599102,-0.013565387855060385,-1.1576265080091734,-0.8225881261595547,-0.01649776608231416,0.0002354144219289401,-0.08858051569421828,-0.4443413729128013,0.00752362251075725,-3.8854473198335953,-0.017455073721153295,-0.015461982696603628,-0.02132450073412173,-0.010561044886600273,-4.169602140616114,-0.6509680795395083,-0.009629391599653977,0.00233017481812267,-0.040097252925241265,-0.48002790859933714,0.054032341618066436,-3.0653731828654025,-0.004402704564567028,-0.009890512500133465,-0.06925177187567857,-0.005185301352356742,-2.4608680355149604,-0.8757608306480488,-0.02565555178032544,-0.005953353738849114,-0.02976464484827229,-0.5198711063372717,-0.052607363447524515,-4.073335556606531,-0.010056907738211154,-0.023166693336840637,-0.27747646976203055,-0.01615360685971488,-2.8645875185176823,0.2078462452942343,0.019628924841186716,0.006679385920300845,-0.005155618815784689,0.23142460867842274,0.14534005336284506,0.9059668688451022,0.006849893169670688,0.016200244639167326,0.07786321053750081,0.014318683331783273,0.3474223508530455,-0.03790087463556849,-0.0010056434818825647,-0.001257566047757496,0.0018742190753852509,-0.049562682215743455,-0.2794836882369473,-0.22358585839233572,-0.024807783858761343,-0.00019477301124534165,-0.017197695404692452,-0.0025468704706372363,-3.5319834083607335,-0.22470018935409208,-0.019562052752933705,-0.004252002310960026,0.006354740507606357,-0.18346307595203026,0.04464472752598428,-0.9515527777429498,0.01107898293425762,-0.016747201123243335,-0.20532777245830647,-0.01280055622871913,2.0593181769294593,0.666998506719761,0.031949231519387236,0.00434103624459874,-0.02382645442447761,0.3394723743155798,0.06287911670561204,3.0206140986072882,0.003911004345091225,0.027982690139271217,0.5015859753557969,0.02234985662478032,0.9959655675112058,,,0.4527777777777778,1.0208333333333333,0.3541666666666667,0.041666666666666664,0.6666666666666666,-0.3125,0.8245386103050846,0.011097771534677245,0.01826443820134391,0.7587900221123448,0.22072765487413207,0.26460013869006965,1.5833286324174294,0.48532779356420175,2.003457270152369,1.3577869956841777,0.2575914319083323,0.3880788425598592,0.0,0.6456702744681914,6.922028997959198,1068.0,310.5247,137.0,340.0,8212.627615488725,4202.055688,62.58374262122501,311.9328,231.1111111111111,385.97334399999994,9365.260443249366,1182.0,328.13300000000004,171.0,289.0,7594.973815680801,4424.460736999999,78.833191082,333.5175,158.41666666666669,399.548236,11772.293656530834,1633.0,571.6999000000001,259.0,364.0,14232.558819907843,5884.390847,113.526480060792,576.9957999999999,273.0,703.86778,16325.082930626924,1686.0,735.9549000000002,286.0,344.0,19485.961950250927,5850.604308999999,127.301049515225,740.3289000000001,351.8333333333333,921.20986,17399.892306931783,1414.0,701.3240000000001,253.0,264.0,19178.892046080924,4759.4929950000005,115.531880814621,705.3661000000001,316.25,885.5117319999999,15319.500117822083,1323.0,630.0469,225.0,280.0,17314.90643501682,4548.583766000001,105.84965195947001,633.4995000000001,310.75,795.894184,13914.045647203566,1196.0,585.8730000000002,216.0,206.0,16198.910889565024,4070.366499999999,101.619785899772,590.9171,251.02777777777777,744.784984,13193.643452380995,1110.0,588.654,205.0,208.0,16595.20779777407,3714.9459699999998,92.971995256319,591.3111,248.66666666666669,747.05852,12118.301625005715,1074.0,500.54300000000006,184.0,236.0,13798.773970449374,3727.212482,83.880193021225,503.3004000000001,266.0833333333333,632.228576,11044.865913639353,392.0,8.211963265306117,1.57723621964861,22.204081632653054,196.0,65.80063243809994,1851.302021387755,10.125125171620407,7.579853061224486,85.96598639455782,5.232900244897958,2285.2125657555116,7.224489795918352,-0.8221114952103277,-0.8611401513056246,3.4448146605581034,29.653061224489793,-18.500696648115735,36.173205951270006,-1.0897126710692961,-0.5872561849229461,-9.00894303299551,-0.6782693927530192,-57.88132540045867,-72.38775510204081,-1.451803415243646,0.02071646912974673,-7.795085381091209,-39.102040816326515,0.662078780946638,-341.9193641453564,-1.53604648746149,-1.3606544773011193,-1.876556064602712,-0.929371950020824,-366.924988374218,-76.16326530612247,-1.1266388171595152,0.2726304537203524,-4.691378592253228,-56.16326530612245,6.321783969313773,-358.6486623952521,-0.5151164340543423,-1.1571899625156155,-8.102457309454394,-0.6066802582257388,-287.92156015525035,-99.83673469387756,-2.9247329029571,-0.678682326228799,-3.393169512703041,-59.265306122448976,-5.9972394330177945,-464.36025345314454,-1.1464874821560715,-2.641003040399833,-31.632317552871484,-1.8415111820074963,-326.5629771110158,21.408163265306133,2.0217792586422316,0.687976749790987,-0.531028738025823,23.836734693877542,14.97002549637304,93.31458749104553,0.7055389964760809,1.6686251978342346,8.019910685362584,1.4748243831736771,35.78450213786369,-3.7142857142857117,-0.09855306122449135,-0.12324147268023461,0.18367346938775458,-4.8571428571428585,-27.389401447220834,-21.9114141224489,-2.4311628181586116,-0.019087755102043483,-1.6853741496598604,-0.24959330612244918,-346.13437401935187,-21.795918367346932,-1.8975191170345693,-0.41244422416312254,0.6164098292378166,-17.795918367346935,4.330538570020475,-92.30061944106613,1.0746613446229891,-1.6244785089546037,-19.91679392845573,-1.2416539541857556,199.75386316215756,54.69387755102041,2.619836984589753,0.3559649720570967,-1.9537692628071641,27.836734693877546,5.156087569860187,247.69035608579765,0.3207023562974804,2.2945805914202397,41.13004997917534,1.8326882432319862,81.66917653591888,0.716685826872204,0.5670829688888324,0.4659146818216337,0.32242662677130257,0.31683238915857564,0.177232351299074,0.21468856716598103,0.10101055421721954,0.14097740716897056,0.05785388150719093,0.0966387477803758,0.03207328980976115,0.06710829403249716,0.017921353543399923,0.04372771377479115,0.010750141352591662,8.022653233365213,5.699405300107425,3.5447597898576695,2.1981486183889634,0.4194215247934325,-0.5216763439293546,3.124732103553506,0.9779571650598264,6.022210097543796,1.8944473528290517,14.546704564436633,10.959922619742946,16.011119112944712,11.71115038180816,1.977189608730435,0.7508441834261612,3.4901093586087732,2.2478783537851803,7.008272686365451,1.2493294784798954,3.7028557393327293,2.4439260188877108,20.8835539094555,14.702260650469583,0.27894603557200254,0.5931759637703041,0.7460977648301547,0.8621625735968168,0.8763474995455058,0.8763474995455058,1.432104146774212,490.9911790932765,0.0,0.0,8.0,0.0,6.0,1.0,0.0,0.0,0.0,4.009406790223845,2.201048903629715,1.3210011419020526,0.6530612244897958,0.5714285714285712,0.5714285714285712,250.63341382103977,1887.3380403864955,86.16936376252004,38.51710286503053,82.63402492242204,,17.0,662.0,6.103966387748303,9.901064578912528,18.387508310134894,51.68705779187261,0.0,12.13273413692322,17.0326438677737,0.0,10.633577208012662,14.580253302440804,10.866666666666667,24.5,8.5,1.0,16.0,0.0,0.0472222222222222,-7.5,0.16149659863945565,0.03257884972170677,-0.12891774891774888,0.0871031746031744,0.2162900763358777,0.0,0.5986394557823131,0.909722222222222,0.4371428571428575,0.5660606060606064,0.8226190476190476,19.78892664732203,0.26634651683225385,0.43834651683225384,18.210960530696276,5.29746371697917,6.350403328561672,37.999887178018305,11.647867045540842,0.49770992366412226,0.09202453987730061,0.0,0.22085889570552145,0.5625,0.29759269999224885,-0.9071710134563661,-0.08120783231379412,-0.018513694152170735,-0.07559758445469718,0.7024073000077513,2.1411934574462945,0.057970005123404826,0.043697825662169294,0.057870093444494466,-2.2559888571618982,0.8938775510204082,0.938616960522006,1.549030935096032,1.0376470588235298,0.7077551020408164,1.6813997945976988,0.8994348236015023,1.3793050913199687,0.9045642368814433,0.847466962095434,0.9773279826968548,1.1574200488839317,1.0756029684601114,1.1050385967962666,1.0759644242920674,1.412516711229947,1.1410018552875696,1.1978183997797476,1.0765823116388322,1.1526632098124683,1.0933985043057215,0.7331123612479948,1.1009759065302869,1.1013733575283082,1.077446363160649,1.109285939344227,1.0358793298219364,1.1363122171945705,1.1596023024594455,0.9694887991511908,1.0757380732753699,0.9904331009797176,1.1089342902118338,0.9984072006703962,1.1038839250128114,1.0169548500643346,1.09828141783029,1.1568565093356635,1.2009599374193862,1.0050309597523224,1.134264232008593,0.994426551776205,1.095729402468651,0.9834561502032672,1.1531344213514623,1.2832492721873532,1.1451668710563876,1.0137052820068937,0.950465623142461,0.8326417301278544,0.6104484801226175,0.9339663049685897,0.8892411333465426,0.8436141366657773,0.9527960584037801,0.9142015313035692,0.8489587426424732,1.086679507164583,0.8005497031877331,0.958266575384541,0.9489795918367347,0.8459962096115624,0.8167122589230772,0.871323529411765,0.8608912952936277,1.1666544504201741,0.9531590803098032,1.1210542615039647,0.8523228063222378,0.8198939621745668,0.8500192533806671,1.0811232316306423,1.0168314748579845,1.086630919743118,1.0600617313975786,0.8691631291691938,0.9972648853355776,0.8798719355281767,1.0133012205820042,0.8287127061837916,1.083105619196887,1.0289372803965446,1.0566035921030834,0.8849478329798791,0.8877551020408164,0.7314539747283919,0.8085338905789449,1.0413378766140606,0.8631159780985566,0.908488381059991,0.8921106357778629,0.9247544137211341,0.7472170075334231,0.6178469341866799,0.6887986891748168,0.9449885367682803,4.0,0.0743801652892562,2.222222222222223,0.8125,0.7733333333333334,0.46527777777777773,0.18204081632653063,0.20833333333333334,0.13958175862937766,0.09125000000000001,4140.057745008859,4838.160741896277,2339.228370624684,2074.018592259017,18.687007531123403,0.4825746699509173,9.66913103942122,0.9326460107879538,1.0,0.5625,1.6053030538913635,3.413660940485493,4.293708702213156,4.961648619625413,5.043281272686637,5.043281272686637,0.16,0.0049586776859504135,0.07168458781362012,0.028017241379310345,0.03362318840579711,0.021148989898989896,0.009102040816326531,0.011574074074074073,0.007754542146076537,0.005703125000000001,0.353566467220145,20.3136,11.583766909469302,8.297142857142857,140.91163121080288,1.0,4.066067104716037,156.32212102371136,,131.71800506575016,127.95554817415685,128.66195340782915,131.7619643213166,212.2258659853302,130.2964472075398,131.9270520477633,179.95162450809218,0.018061224489795878,-0.0981092144810134,-0.5350608474281215,0.15204044117647075,0.14826530612244895,-0.2755396421487186,0.019148545954522922,-0.10547212005251708,-0.07592641395234598,-0.10270066735248344,-0.12702401608860034,-0.024822066770710294,-0.10282351576994433,-0.09844059354827854,0.007313620198937606,-0.19547961229946523,-0.11108534322820032,0.005602643764463954,-0.10283946999049359,-0.08447289271384198,-0.09995406850422314,-0.01215481354656001,-0.09889185255307777,-0.08940547061215844,-0.08137100994243854,-0.05745765940971438,0.07239154456740061,-0.08848667672197087,-0.12000697714983428,0.0402364634074892,-0.08113386374839626,-0.021306652511166823,-0.06393727010167786,-0.03947301676193027,-0.04855429195563328,-0.05276644087608866,-0.1094701038310061,-0.15308422561350615,-0.18495284952852348,-0.06568466202270384,-0.12996777658431793,-0.039175319649908474,-0.10781246926101377,-0.04866986539125239,-0.14976121098075887,-0.1581596115926174,-0.15125966463774315,-0.0614230774461721,0.025980780661779286,0.11712391862267975,0.2075084923979604,-0.01137742718446603,0.05785615216960568,0.10823091436816976,0.02397900291824509,0.033149690460582,0.10472656671671189,0.04438147546898935,0.13407774855663468,0.007449501830553363,-0.004737609329446061,-0.006000578548668019,-0.039068806290693536,0.0041360294117646955,-0.012390670553935864,-0.2081241504250482,-0.005917838869430899,-0.12005593891189063,-0.0012591111561046512,-0.009802563899659708,-0.02384846781340815,-0.07573351801190467,-0.02808752366926151,-0.11672489926293161,-0.13209696216807576,0.014023650697392344,-0.045865768988007566,0.03324575414728945,-0.02518556430595433,0.05361614346262382,-0.10826236978614434,-0.11703536796844041,-0.11986226105089232,0.04415632584104179,0.08337481333997013,0.1906380111396683,0.1348629795178859,-0.052580254662840775,0.08486809357889495,0.04682442408852871,0.07994918663828132,0.018927095681405822,0.18089424765218168,0.28590043368582774,0.20928030792904806,0.021355699482561965,12.115060997250879,10.606779390426274,1.0491150634216482,15.66355265792464,30.750703972231367,35.76156561251271,37.333053130896914,37.41533884518263,37.41533884518263,48.082974483656855,32.586887896420265,6.182194365799974,9.313892221436621,0.0,15.496086587236594,10905.179977221422,10641.851925350627,480.70699441830766,26.0,31.0,35.0,38.0,44.0,35.0,32.0,32.0,29.0,339.1794209000007,25.0,4.727387818712341,5.501258210544727,6.300785794663244,7.089243155027514,7.889459149404524,8.683215975240689,9.483644576482009,10.279764123179618,11.08037175117133,0.6190476190476191,0.9935510204081633,1.1451074635159428,0.5766686659677609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.619575033606257,0.9773509403761504,1.0151166074587155,0.584096607501132,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,8.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,35.220267636144655,24.209872018829028,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,24.26546827384644,32.72378202956288,13.213763929025836,184.2489730469739,-561.6580232366973,-50.278315656187615,-11.462408637483618,-46.80483526972478,434.88238686801367,1325.6800171497982,35.89104810633242,27.05469422754691,35.82918965269726,0.47058823529411764,0.7304578257953799,0.16663435090538997,202.509808831288,0.10402307938107061,77.21321173400312,0.26954217420462023,9.0,0.32,0.2859102426412802,0.6079852806754314,0.7647249495382923,0.8836874491075847,0.8982265179691366,0.8982265179691366,-0.23669999999999924,,1.6785714285714288,1.9855746859004184,1.5414196857644495,1.6738284309400313,-6.966016776241215,1.7771572827417383,1.6632629804309458,-2.9529462750204147,88.26900000000003,24.481317881353334,0.0,15.53348693886314,0.0,6.103966387748303,52.54442792310162,24.26546827384644,0.0,11.49902366656781,3.9318256327243257,0.0,5.1647859739235145,0.0,6.57507584059962,0.0,8.06054004653864,0.0,9.584039577320695,30.333333333333332,6.320949292050326,0.0,0.0,0.0,0.0,0.0,0.7576999654444616,0.0,48.684000000000005,0.0,11.822743095179199,0.0,0.0,0.0,0.0,0.0,-0.0867481202893352,56.1102657122812,15.370440161812711,4.794537184071822,11.49902366656781,79.79247334371989,4.736862953800049,0.0,0.0,24.26546827384644,0.0,0.0,0.0,28.256764632420282,30.35917664670659,30.66476176553985,312.64424204742284,,263.3606863018466,255.84090016639064,257.3062622532747,263.4488143377127,426.19323616472064,260.5236013052092,263.77809849725884,360.7306296989465,30.66476176553985,312.64424204742284,,261.961876778037,254.186254594807,256.02174584847097,262.0539573119295,431.4177487469017,259.0426369029244,262.3920460135664,362.85619529120487,4.457162817927068,248.33983868208333,,212.07952669262863,205.9552121699145,206.37617800004398,212.14859671934158,339.3979266001335,209.7277067069698,212.42372758211565,289.2507480212028,1.2776984068974937,13.026843418642619,,10.973361929243609,10.660037506932943,10.721094260553114,10.97703393073803,17.75805150686336,10.855150054383715,10.990754104052451,15.03044290412277,2.228581408963534,156.32212102371136,,131.71800506575016,127.95554817415685,128.66195340782915,131.7619643213166,212.2258659853302,130.2964472075398,131.9270520477633,179.95162450809218,47.89019607843137,0.0,0.0,0.0,0.0,0.0,19.00002652337522,49.740713765477054,3.9667041472340947,5.882516715723647,10.601975494401488,0.0,-0.6585668194172887,1.7260330396315244,0.0,0.0,0.0,28.62073376755547,452.24934704523855,78.65984964067681,167.26938608378916,210.39172640844464,243.1207823616452,247.1207823616452,247.1207823616452,351.0,120.035130554426,166.882012869749,57.3162670711068,103.29,103.29,0.8888888888888888,6.595780513961311,5.643856189774724,4.333871733761351,4.835889571108651,,4.842226981247472,4.842013507670056,4.840443918117979,4.842224715250183,4.838863436689946,4.842078834110998,4.8422450286726555,4.841633165794684,0.18057798890672294,0.2014953987961938,,0.201759457551978,0.20175056281958567,0.20168516325491578,0.2017593631354243,0.2016193098620811,0.20175328475462492,0.2017602095280273,0.20173471524144515,2.34193004468202,2.451533835087386,,2.4528434723521033,2.452799385554033,2.452475172495962,2.452843004386056,2.4521486033760564,2.4528128770488755,2.4528471994371035,2.452720832114736,256.6700000000001,161.36627114664302,128.3560807534173,,127.56883479954773,127.5768000685358,127.78459353395263,127.56936595536303,128.1835266606984,127.58111403795954,127.56749693535306,127.79327956756207,6.723594631110125,5.348170031392388,,5.315368116647822,5.3157000028556585,5.324358063914693,5.315390248140126,5.340980277529099,5.315879751581647,5.315312372306377,5.324719981981753,5.959145494564459,5.730277019890215,,5.724124837049951,5.724187274089054,5.72581472065291,5.724129000721355,5.728931776397559,5.724221088203261,5.724114349604391,5.725882692371333,10.601975494401488,13.548776134810723,24.882543239098865,0.0,0.7576999654444616,6.234201171760991,-0.6585668194172887,3.9667041472340947,0.0,316.07488539361987,114.07431724551282,-347.7400957337,-31.128881946450445,-7.096736647626531,-28.97834131114167,269.24932358466896,820.7700718300785,22.221273422847826,16.75040962918528,22.182974914326454,1821.0,29.0,1.18384334148374,0.42912337120130406,0.0,0.0,0.11785113019775792,0.02282177322938192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.07342132423654162,0.20118446353109126,0.04658460339504361,17.200459844932894,13.609991253331977,11.647867045540842,8.060665669282564,9.821804063915845,5.494202890271294,7.514099850809336,3.535369397602684,5.3571414724208815,2.1984474972732553,4.252104902336535,1.4112247516294907,2.3487902911374006,0.6272473740189973,1.3992868407933168,0.3440045232829332,2.269729340079886,0.6864843018128207,2.6677102217176962,0.7292194488643057,3.479211999092671,0.7602026839145413,81.62057728577871,43.1691844679266,30.18925518479607,24.954281270936335,24.659202916314683,24.659202916314683,112.0,122.0,50.699824999999976,32.270175,0.42857142857142855,73.08,7.555555555555556,5.527777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,49.0,0.0,1.0,50.0,6.0,1.0,4.0,46.0,7.0,25.0,43.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,6.0,4.0,1.0,24.0,8.0,0.0,3.0,5.0,0.0,2.0,8.0,0.0,0.0,0.0,0.0,1.0,3.4011973816621555,4.1321620477220575,3.7727609380946383,4.081765780015241,4.3741834572128555,4.76909437764233,4.48863636973214,4.318321099840202,4.409003222372084,4.363098624788363 +57393422,CCOC(=O)[C@@H]1CC(=O)O[C@H](C)C/C=C/C=C/[C@H](O)[C@H](C)C[C@H](CC=O)[C@H](O[C@@H]2O[C@H](C)[C@@H](O[C@H]3C[C@@](C)(O)[C@@H](OC(=O)CC)[C@H](C)O3)[C@H](N(C)C)[C@H]2O)[C@H]1OC,0,20.580645161290324,6.2395556451612935,2.8306451612903225,6.564516129032258,165.97629544485628,80.79533316935476,1.2499356824587335,6.271194354838712,4.720262096774194,7.8207711290322575,184.96757803453139,22.428571428571427,6.393849206349207,3.5396825396825395,5.444444444444445,147.2815965628495,83.40029030952384,1.5969893634761907,6.518559523809519,2.9511684303350973,7.856114952380951,234.05596657505959,18.279661016949152,6.363381355932207,3.211864406779661,4.161016949152542,158.01708398375706,66.49815053813558,1.2837945051415809,6.433658898305085,2.92284604519774,7.9098922203389845,184.61309836562918,16.53030303030303,6.395448484848487,2.8545454545454545,3.624242424242424,160.5262418514595,58.71500589999998,1.1896551993415,6.448358484848484,3.008585858585857,7.973996739393941,168.73091402122932,15.45965770171149,6.286801955990218,2.67481662591687,3.251833740831296,162.07965601049665,54.69908928606356,1.1345794184948903,6.337416136919316,2.963155392556369,7.885907207823962,159.09750970602542,15.36830835117773,6.344648822269807,2.5910064239828694,3.3019271948608138,162.0637080564126,53.92113854603856,1.137904438508049,6.389402783725911,3.262193671187246,7.94017838972163,157.9497378214147,13.976014760147601,6.142826568265683,2.4833948339483394,2.695571955719557,162.2417964507642,48.59268473247231,1.1121580542626754,6.197516789667897,2.7942035670356713,7.757877025830256,150.97957183753644,13.74055829228243,6.1647159277504135,2.380952380952381,2.6666666666666665,163.75422654823447,47.70393465517238,1.0746875181067177,6.2110213464696225,2.9196770662287914,7.787569201970438,145.98423345107733,13.273155416012559,6.189045525902673,2.2653061224489797,2.5588697017268447,164.6684370226038,45.47313277237046,1.0477089026433912,6.229445525902669,3.108036804465376,7.81460092935636,140.99391994605682,7.989594172736735,0.17088232960457847,0.0233390943700627,0.6047736732570241,4.167013527575443,1.2322738282229524,37.7046845974896,0.21290337827902775,0.15793810483870968,1.858980716701352,0.11325184469302806,47.556951622648356,0.3242819153329038,-0.003601818851890432,-0.010964392190208106,0.23592013114645788,1.2305799184051005,-0.2353971924572065,1.4949920167577238,-0.02780322427313315,-0.0006969246031745606,-0.16161252958182146,-0.0059271434641494,-1.8967230138173399,0.5741018360112167,0.008974740515705713,-0.0006611774994497046,0.013665364468509128,0.16158133300410918,-0.010640624834220173,2.672223545553055,-0.0036154156630548917,0.00955911016949156,0.0692331296627806,0.004815013426162781,1.4503934242731922,-0.36251694888531516,-0.007146317874373319,0.0011304749970191081,-0.005726752435909586,-0.185879607731845,-0.00638168697921841,-1.6950376595619268,-0.0027499197327659868,-0.0070018560606060105,-0.13934382357655647,-0.004486471672500148,-1.3662084294369006,0.04534549127462485,-0.006976820495027358,-0.0023858235121467313,-0.04567989614526434,-0.19591959272253584,-0.007959323526288175,0.24921035432048733,-0.0008884773026883072,-0.005468261002444958,-0.08282950757164577,-0.0059714888290009,0.6120487725942972,-0.3973443972307576,0.0058321139956148205,0.0026314064550565118,-0.016737477912684644,-0.1294021440014974,0.02763384138217867,-1.9205232908307546,0.00025741662209363285,0.003297952355460427,0.07271565704858006,0.006445727041447351,-2.0946078171898064,-0.19641478932999515,-0.0071637618745464295,-0.0006465263179151788,-0.011525845617457222,-0.1520153130771682,-0.0528178462197167,-0.9157040039144232,-0.006838809494232371,-0.006200115313653125,-0.09712913901218878,-0.00514528648567181,-1.1580424016788908,-0.03949088336759218,-0.00454409399887912,-0.0007513734686965585,-0.03801960789339239,-0.16322625070696406,-0.019574535336079793,-0.16368962092833514,-0.00029685607967237375,-0.003834759852216734,-0.05098555673525286,-0.0035533605572157898,0.08902898139595877,-0.4395359360425511,-0.004433550043126199,0.0005170967806953719,-0.0595769345118981,-0.21140001666239205,-0.022995047584817775,-2.089157165879729,-0.006863707147786315,-0.004815728021978001,0.04430821466937584,-0.0017966110879234871,-2.346825290410626,,,0.45438596491228056,0.7719298245614035,0.14035087719298245,0.0,0.631578947368421,-0.49122807017543857,1.8361329116273064,0.026953115859954784,0.03147943164942847,0.9697868419507628,0.14778639235521862,0.32375546656330195,2.805919753578069,0.4715418589185206,1.9783960642713005,1.445471630003597,0.035559849105999554,0.4973645851617042,0.0,0.5329244342677038,6.560089277774209,2552.0,773.7049000000004,351.0,814.0,20581.06063516218,10018.62131299999,154.99202462488296,777.6281000000002,585.3125,969.7756199999999,22935.97967628189,2826.0,805.6250000000001,446.0,686.0,18557.48116691904,10508.436579000003,201.220659798,821.3384999999994,371.8472222222223,989.8704839999998,29491.05178845751,4314.0,1501.7580000000007,758.0,982.0,37292.03182016667,15693.563526999995,302.9755032134131,1518.3435,689.7916666666666,1866.7345640000003,43568.69121428849,5455.0,2110.4980000000005,942.0,1196.0,52973.65981098164,19375.951946999994,392.58621578269504,2127.9583,992.8333333333329,2631.4189240000005,55681.20162700568,6323.0,2571.301999999999,1094.0,1330.0,66290.57930829313,22371.927517999997,464.04298216441015,2592.0032,1211.930555555555,3225.3360480000006,65070.8814697644,7177.0,2962.951,1210.0,1542.0,75683.75166234469,25181.17170100001,531.4013727832589,2983.8511000000008,1523.444444444444,3708.063308000001,73762.52756260066,7575.0,3329.4120000000003,1346.0,1461.0,87935.0536763142,26337.235124999992,602.78966541037,3359.0541,1514.458333333334,4204.769347999999,81830.92793594475,8368.0,3754.3120000000017,1450.0,1624.0,99726.32396787479,29051.696204999982,654.4846985269911,3782.512,1778.083333333334,4742.629643999997,88904.3981717061,8455.0,3942.4220000000023,1443.0,1630.0,104893.79438339862,28966.385575999986,667.3905709838402,3968.1568,1979.8194444444446,4977.900792000001,89813.12700563819,990.7096774193551,21.189408870967732,2.894047701887775,74.99193548387099,516.7096774193549,152.8019546996461,4675.380890088711,26.400018906599442,19.584325,230.51360887096763,14.04322874193548,5897.062001208396,40.85952133194588,-0.45382917533819445,-1.3815134159662215,29.725936524453694,155.05306971904267,-29.66004624960802,188.3689941114732,-3.5032062584147767,-0.08781249999999463,-20.363178727309503,-0.7468200764828243,-238.98709974098483,135.48803329864714,2.1180387617065484,-0.1560378898701303,3.2250260145681544,38.133194588969765,-2.511187460875961,630.644756750521,-0.8532380964809544,2.2559500000000083,16.33901860041622,1.1363431685744163,342.29284812847334,-119.630593132154,-2.3582848985431952,0.3730567490163057,-1.8898283038501633,-61.34027055150885,-2.105956703142075,-559.3624276554358,-0.9074735118127756,-2.3106124999999835,-45.98346178026364,-1.4805356519250488,-450.8487817141772,18.546305931321566,-2.8535195824661894,-0.9758018164680131,-18.683077523413115,-80.13111342351716,-3.2553633222518634,101.92703491707931,-0.36338721679951763,-2.2365187499999877,-33.87726859680312,-2.442338931061368,250.3279479910676,-185.5598335067638,2.723597235952121,1.228866814511391,-7.816402185223729,-60.4308012486993,12.90500392547744,-896.8843768179623,0.12021356251772655,1.5401437500000195,33.95821184168689,3.010154528355913,-978.1818506276396,-106.45681581685737,-3.8827589360041648,-0.3504172643100269,-6.247008324661815,-82.39229968782517,-28.62727265108645,-496.31157012161736,-3.706634745873945,-3.360462499999994,-52.64399334460632,-2.788745275234121,-627.6589817099589,-24.049947970863638,-2.767353245317384,-0.4575864424362041,-23.153941207075967,-99.40478668054111,-11.920892019672594,-99.6869791453561,-0.18078535252047562,-2.335368749999991,-31.05020405176899,-2.163996579344416,54.218649670138895,-279.98439125910505,-2.824171377471389,0.3293906493029519,-37.95050728407909,-134.66181061394374,-14.647845311528922,-1330.7931146653875,-4.372181453139882,-3.0676187499999865,28.22433274439241,-1.1444412630072613,-1494.927709991569,0.7475752761111196,0.6172734512221847,0.45555738912467236,0.34074018332767986,0.2968758490722707,0.19192887952159868,0.1814979249581353,0.104302052792789,0.11594542370804595,0.05860560128300424,0.07291294669551805,0.03200490192552127,0.04614802496411673,0.017847217617555144,0.02893328140952176,0.009721621973807864,8.038687548530467,5.726473648747539,3.565259706452715,2.2262691907926278,0.4527799326269514,-0.4962749800182932,4.023037031858281,0.9571365838428961,6.0352886454143695,0.9872267891945001,14.544567976443332,10.986808128521911,16.024670200210377,11.737590867723343,1.9547855321695493,0.7403526461976471,3.511596097662628,2.2762240093977777,7.0117236413157675,1.1323410236151363,3.7244554163656565,2.4722320113207705,20.861762225138538,14.699769668192184,0.2033524729416328,0.4594754998857726,0.7459058024479915,0.8820864436093901,0.9007064456840046,0.9075753255272295,1.9925187726872167,1354.982977638865,0.0,4.0,10.0,0.0,4.0,16.0,0.0,4.0,0.0,5.521701345839838,3.717469801002253,1.6997418620268947,0.7404317542590748,0.6092651211422186,0.5608780243680256,486.8299633320767,6766.96613714501,92.99226201553105,54.572307557621045,111.29325404591904,,22.0,1949.0,121.24109821380252,34.4977309208094,32.29016845621696,12.706982146055566,0.0,7.109797541277533,84.84175732168411,6.923737199690624,0.0,37.89490363040039,25.89999999999999,44.0,8.0,0.0,36.0,0.0,0.04561403508771945,-28.0,0.14331176356963543,0.008744959677419395,-0.13456680389221604,0.030438596491228265,0.21400000000000047,0.0,0.5798387096774181,0.908771929824562,0.4365269461077827,0.5710937499999987,0.8783333333333337,104.65957596275646,1.5363276040174227,1.7943276040174228,55.27784999119348,8.423824364247462,18.45406159410821,159.93742595394994,26.877885958355673,0.4999999999999995,0.2831402831402832,0.01930501930501931,0.36293436293436304,0.8048780487804879,0.2736441049819814,-1.7219661292534976,-0.04750204558408615,-0.013886823623012075,-0.0538114415391718,0.7263558950180186,4.5707553213579954,0.03897310296348767,0.03686093001095157,0.049682123058239075,-2.164528591317331,0.9075024187846535,0.8017216731614031,1.4890094733640205,1.1259940905064034,0.5743300691483985,1.628752721679905,0.918709588590164,1.5302782196366282,0.7823600178787296,0.7712131754209953,0.850360458269198,1.2850126011635659,0.938252687074229,0.9735082427513302,1.1797387888447237,1.4872785664943011,1.0384195692980989,1.1989857754662605,0.9409260230331311,1.1623238337299782,0.9553608864855099,0.7009820120947017,0.9966516805091025,1.048930861897531,1.091421475763101,1.2119110659143308,1.2426809048493652,1.2947452805286979,1.179763958728249,1.108112830878436,1.0886162919374607,1.0910409232000975,1.1970724499869614,1.0278926528894283,1.2383718323379,1.0589357337761713,1.024493424517769,1.1586176958795142,1.3061786365422656,1.3073288370519107,1.1564665484825902,1.068090338428623,1.0217666915000412,1.0496820641030573,1.1405593859794252,1.0277081881160912,1.1900292107144472,1.0020656325480528,1.0913272187339111,1.126727132935408,1.0351361071396008,1.157255057012646,1.1499546949724386,1.0384144080910371,1.0898142598574567,1.0428909315791668,1.124923485012681,1.0221686982268576,1.1290267522706667,1.0548557439586455,1.0202571155042104,1.0410611945002135,1.0217681313445588,1.1272429801403077,1.0387005808502334,1.0930079483085795,1.0205856731401115,1.0794580206095818,1.0354629054828621,1.004711731447757,1.052378871383767,1.0482494733190764,1.015040894783509,1.0788415416034052,1.095475323127455,1.1473154854831042,1.078823269634469,1.0351907631020998,1.0134924523998727,1.0121274335884298,1.0710974688155237,1.0466163193272517,1.0917870289641483,0.9969877708367106,1.0741122876305027,1.1099677217675836,1.0815836185591654,1.1522432063811319,1.1057680791997542,1.0291949339841981,1.0726715949398187,1.0203987809028654,1.1072323380654507,1.0615657009957213,1.1055951427126354,1.0323511224502486,14.5,0.7763493521069278,7.555555555555558,5.875,5.111111111111112,2.9861111111111107,2.748571428571428,2.328125,1.6072058453010831,1.1787500000000004,14088.102992730983,16585.64744616097,5446.7136101512715,4776.296974074675,22.289544323476324,0.44905994635609614,12.280202745274218,0.8150795052674512,0.0,0.8048780487804879,1.432494964547037,3.236726509384622,5.25445444835998,6.2137645561278,6.344931189244656,6.393318286018849,0.24576271186440676,0.00776349352106928,0.0910307898259706,0.05934343434343435,0.044834307992202733,0.023888888888888887,0.020665950590762622,0.01605603448275862,0.011480041752150592,0.010161637931034483,0.530987291192679,51.35076127549555,24.589925968935987,14.811428571428571,336.63722124175905,0.0,4.933449307606615,487.20702112433327,,417.7173171227189,408.94032342725757,435.057739314261,417.8931011890313,671.4493900937541,415.5001645434146,418.09481978506153,551.2124929359833,0.04058803342470962,-0.02107777240762715,-0.46978653140338833,0.39009656269576676,0.2953145964757901,-0.19102669152413146,0.03965003374825369,-0.13059080836516687,-0.0044126438257966775,-0.08693609790024774,-0.05233595514682404,-0.03988319160713512,0.0718561948953867,0.05252000330562704,-0.02832918402771462,0.022595832247316518,0.038776291925820675,-0.008634951575304405,0.07087245455252987,-0.016981485649873465,0.06052440719896925,0.03724252168985947,0.04251598231546687,0.03049803182890431,-0.04537363738978742,-0.04182011031163895,0.048436969279715504,-0.009469248892842862,-0.044607392441079544,-0.005178789675685448,-0.044955624948385946,-0.012916280403789487,-0.044332911729924075,-0.0749571108106025,-0.039614998631243854,-0.028727838577152665,0.0056755687828750285,-0.040828215013054385,-0.1022243397416076,-0.07553221670390196,-0.04701678826479134,-0.006459054265370727,0.006609532926236966,-0.0041731479785345775,-0.03462281004339821,-0.04455641030995829,-0.0527275193193256,0.012869806657305118,-0.04973273843953607,0.034129415306487956,0.11274672501568202,-0.02767560602058705,-0.031053929425755772,0.022425081787242944,-0.05093593306330492,0.0012090772075784852,0.020881296244680016,0.039115874842214376,0.056914984995773396,-0.044044198497203035,-0.0245838255465128,-0.041922192254303686,-0.02770143124081476,-0.019058114013767308,-0.0364806382487598,-0.042862101758571546,-0.024286213071130987,-0.032121657953541424,-0.03925661460851918,-0.0522485995360611,-0.04543225321952359,-0.024350644062883727,-0.0049427896478583064,-0.02659194785905686,-0.03219377139416142,-0.06286584481866882,-0.039171039313120846,-0.015884890912848487,-0.004341360302460498,-0.00139432301202529,-0.024280143516555972,-0.0274266194787236,-0.03137574109143442,0.001872049792055215,-0.055013549692223426,-0.025945046824826352,0.02215582029432373,-0.0985111243203511,-0.05073178074979617,-0.018660663773066303,-0.05540842439559424,-0.032238601394059846,-0.030491235961682222,0.023834682238123517,-0.015863857165357848,-0.04934768126081871,10.17853109866501,32.32744046707654,28.70565910910027,13.507769170583483,32.31218794423608,41.020831274054,44.306675102452,44.85814913314991,44.9069233266983,112.76857566346413,82.39188291020503,2.0269113990419747,28.34978135421714,0.0,30.376692753259114,31562.940539540054,30435.86568779651,5520.97910290015,298.0,83.0,105.0,136.0,166.0,186.0,211.0,243.0,274.0,813.4510704440019,59.0,5.652489180268651,6.493753839851686,7.385851078125209,8.254008590564844,9.15302900526307,10.033594337881343,10.936440692397964,11.824233727927892,12.729738479827661,0.5913978494623654,0.9853870967741939,1.139868810433917,0.5465279139283615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6097891201468031,0.969607843137255,1.0110130864835656,0.5696063028962005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,5.0,0.0,3.0,0.0,10.0,0.0,0.0,0.0,3.0,7.0,0.0,8.0,0.0,15.0,1.0,1.0,0.0,0.0,62.90893272984481,30.19911049735815,18.684019846418728,0.0,0.0,14.383611552215466,0.0,0.0,0.0,38.151554826716776,66.97066367905629,32.79308403298157,55.50728240148978,294.26702048959754,-1851.7403920424222,-51.08198995227945,-14.933390258406629,-57.86688725132569,781.0969838216743,4915.225745102588,41.9102720632516,39.63891729921442,53.42636679459334,0.5,0.8115877807648603,0.07400317491595187,5.664536310261478,0.04954466410063262,0.0,0.18841221923513976,11.0,0.2033898305084746,0.2059900095727014,0.4654350215207768,0.7555804026572935,0.8935273436050177,0.9123888521478445,0.9193468232223627,2.6249000000000065,,3.892857142857143,4.471382038157282,2.822262373632166,3.8814838649625933,-16.752595783269097,4.041998164014688,3.8676849963961564,-6.304241799113814,205.25639999999922,72.3926345512098,0.0,4.899909730850478,17.75371813848418,166.14973272392723,27.81202347114483,24.304080427335524,0.0,0.0,4.77912349311153,0.0,6.111467339502679,0.0,7.623153068476902,0.0,9.231220849555537,0.0,10.897831321694126,73.33333333333331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.18800000000005,0.0,51.376427122322,0.0,0.0,0.0,7.581654635105107,0.0,-1.8871032950470072,141.3437324938057,0.0,0.0,0.0,151.38423436203934,57.073052366687676,17.75371813848418,86.99109013539042,24.304080427335524,0.0,0.0,0.0,67.76946132711683,75.61385089820358,68.84080833555528,974.4140422486666,,835.2980427667411,817.723756256685,870.01645187857,835.6500099617481,1344.5483438400502,830.8585045898461,836.0539313246356,1102.789769230839,68.84080833555528,974.4140422486663,,831.6854752240487,813.6016427726497,867.3588267144432,832.0475030449884,1359.6513759707768,827.1131532711312,832.4637824493432,1108.7292276710805,4.9786929533983635,701.399874404625,,596.0437254712831,582.1799808241301,624.3862406108292,596.3243105491217,986.3442444261555,592.5793400608582,596.6365355921055,802.8660970217617,1.2077334795711452,17.09498319734503,,14.654351627486687,14.346030811520789,15.263446524185438,14.660526490556984,23.588567435790353,14.576464992804318,14.667612830256765,19.34718893387437,2.4893464766991817,487.20702112433327,,417.7173171227189,408.94032342725757,435.057739314261,417.8931011890313,671.4493900937541,415.5001645434146,418.09481978506153,551.2124929359833,120.23137254901962,0.0,16.624926237157336,0.0,0.0,0.0,34.4907545242418,125.36562272396213,0.1803147292110625,0.0,48.124439671137566,0.0,-13.993769999133228,1.744535669969299,-1.4921792949639237,0.0,0.0,70.63118155912886,872.7522857733987,177.62937560383259,401.3540871636931,651.5523515966375,770.5068049598472,786.7714674663374,792.7714674663373,1818.0,198.46313893210828,202.61171853787314,95.64279607234077,206.04999999999998,206.04999999999998,1.0,7.742835955430749,6.882643049361842,5.5951797759622695,7.430912140149296,,7.4387439415800625,7.439021613031659,7.437071032653495,7.4387353703644745,7.430021761201117,7.438784792313361,7.438734000310143,7.434925107858184,0.09816104870109245,0.13036687965174204,,0.1305042796768432,0.13050915110581857,0.13047493039742972,0.1305041293046399,0.13035125896844066,0.13050499635637475,0.130504105268599,0.13043728259400322,3.462371647627466,3.7461147905236944,,3.7471681843765077,3.747205511413368,3.746943267767029,3.747167032136211,3.745994962395105,3.747173675978511,3.7471668479578004,3.7466546817843636,628.2000000000028,1712.3645114941903,481.92787024896097,,480.2085054829817,480.1990177559279,480.1081677148127,480.20825439832305,481.47872894013176,480.1967146470729,480.20999789643065,480.6585472933093,30.041482657792812,8.454874916648437,,8.424710622508451,8.42454417115663,8.422950310786188,8.424706217514439,8.446995244563714,8.424503765738121,8.424736805200538,8.432606092865075,9.186096624471284,7.918260630906519,,7.91468657084685,7.914666813136036,7.914477602760938,7.9146860479808,7.917328228446859,7.91466201696967,7.914689678686701,7.91562331197443,48.124439671137566,53.1209627922913,34.4907545242418,-1.4921792949639237,-4.269150578628853,-0.7859132511595337,-3.0759388111070862,11.795846887595658,4.841178060593086,807.6538874662931,316.4441614904407,-1991.2949629316636,-54.93173326327138,-16.05883034622309,-62.22796759161449,839.9635802779324,5285.6568393473735,45.06879798771306,42.62626483344656,57.452791732036665,13396.0,99.0,4.931547718303126,2.6513788284975486,0.2041241452319315,0.09128709291752768,1.2229674864980469,0.4689097658402054,0.08333333333333333,0.02151657414559676,0.0,0.0,0.0,0.0,0.0,0.0,0.09347344359512026,0.053966917821723984,0.3934399613205911,0.16165537832335602,42.611790738333816,35.18458671966453,26.87788595835567,20.10367081633311,24.64069547299847,15.93009700029269,19.057282120604206,10.951715543242845,15.768577624294249,7.970361774488577,12.103549151455997,5.312813719636531,8.58353264332571,3.3195824768652566,6.104922377409091,2.0512622364734594,10.044960790020168,4.766738375214432,16.33687140422937,6.757261888832656,25.729124206889544,8.916057575078318,206.64755637193167,88.13912307665346,46.96021002999966,30.99998216022976,28.907685897956117,28.41860357074658,284.0,330.0,126.27513099999996,86.28486900000017,0.24193548387096775,289.16,24.17361111111111,12.930555555555554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,124.0,0.0,1.0,126.0,0.0,6.0,6.0,120.0,6.0,59.0,120.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,67.0,16.0,3.0,3.0,57.0,16.0,0.0,1.0,15.0,0.0,3.0,12.0,0.0,0.0,0.0,0.0,0.0,4.189654742026425,6.045005314036012,4.553876891600541,4.804021044733257,5.087596335232384,5.318119993844216,5.442417710521793,5.58724865840025,5.762051382780177,5.91350300563827 +443879,Cc1ccc(O)c([C@H](CCN(C(C)C)C(C)C)c2ccccc2)c1,0,17.01818181818182,5.622089090909089,2.709090909090909,4.109090909090909,162.1566253698949,66.49950356363635,1.3998546190967085,5.712185454545452,2.6171717171717175,7.2312197818181785,195.28496120054794,19.964285714285715,5.995089285714286,3.2857142857142856,4.339285714285714,144.39036594782408,73.31722130357142,1.774256022964286,6.150866071428572,2.603670634920635,7.458875357142854,244.35228042765962,15.93,5.81421,3.1,3.04,153.7310515552793,57.392179019999986,1.4776578253243307,5.933535000000001,2.2472222222222222,7.351380399999997,196.84903348645472,13.634328358208956,5.802246268656717,2.7238805970149254,2.2313432835820897,157.26661692590355,47.19977943283581,1.36523847460841,5.904985074626866,2.1923714759535655,7.366615820895522,176.7194248262297,11.518292682926829,5.610085365853658,2.408536585365854,1.774390243902439,157.05179217967202,38.86059038414635,1.2569059683046342,5.7118109756097555,2.0254065040650406,7.221269585365853,156.0041802224377,10.310160427807487,5.539144385026739,2.144385026737968,1.7219251336898396,159.89651970598098,34.27604433155081,1.1531201352045026,5.629663101604279,2.008318478906714,7.1755340748663095,139.80635689314008,9.90625,5.534255208333334,2.1302083333333335,1.7239583333333333,165.2103194837621,33.68418622916668,1.0665986220545158,5.6029796875,2.0049189814814814,7.201429958333332,130.43906338824038,12.18954248366013,5.646738562091504,2.372549019607843,1.6666666666666667,157.85869664004588,41.89017560784315,1.272644044320987,5.746503267973855,2.1695715323166302,7.249520470588235,160.53543185908867,10.802547770700636,5.657515923566878,2.0127388535031847,0.802547770700637,157.00689579764312,34.989102343949035,1.228678192475293,5.756509554140127,2.3184713375796173,7.264797859872612,149.76683255574147,6.544132231404957,0.05506333884297515,0.009833309219435354,0.5401652892561981,2.580495867768596,1.3601696285351246,31.47548835173552,0.23688519690434895,0.05816614876033052,0.5714049586776857,0.02814456066115702,53.071960475251764,0.15521841794569075,0.0003664338842976122,-0.0041618438423182665,0.24749704840613931,1.0769716646989373,-0.09139254124360965,0.7475825907969365,0.0005866103391493904,0.0007165460448642288,-0.07567083169355901,-0.0004260632585597706,0.4634369644369782,0.5778677685950412,0.0032380975206612074,0.0003577917817683405,-0.018165289256198296,0.11768595041322316,0.011014392046398369,2.7632922435371943,0.010730837431876049,0.004250814876033054,0.0664435261707989,0.0008249317024792522,3.4855921223269415,-0.6715406438879981,-0.009813800172690205,-0.0008829178688802556,-0.06391020106081162,-0.3182163562353521,0.17731481332729315,-3.1682039430516813,-2.0754726854898103e-05,-0.009968319723695567,-0.02608609843345259,-0.00415988766251397,-1.5920396665215695,-0.46486393872203174,-0.001668006248740162,-0.00020296300362292855,-0.029300544245111856,-0.014087885506954207,-0.13153119134866223,-2.2575333653718994,-0.021672622387031448,-0.0021704724853860062,-0.013330309749378471,-0.0006205868252368579,-4.584467147473308,-0.07043266893534289,0.0031069771511910457,0.0005367636683956236,0.06839086047642198,0.4141565386485173,-0.18214808211101272,-0.40048609855128775,-0.021900719210751228,0.0030332095284394734,0.021956463025981744,0.00132966549343706,-3.404121120194805,1.2149586776859504,0.0061917369146005366,0.0004436734937116101,0.019020316804407716,0.3419473140495868,0.2394219699531973,5.878996982734155,0.0487436316625725,0.007318254648760319,0.02795846724823999,0.002242768126721763,10.669030917988755,-0.033258791119753814,-0.00043013622859610343,-0.0004953245869857796,-0.14622589531680444,-0.5138292011019283,-0.025198375557241724,-0.16859988257332492,-0.004482289814135405,-0.00026083681737157653,0.0007743507565254268,-0.0003644907859342354,-0.6422783432602885,-1.6665410327946517,-0.008415649207769616,-0.00010743216856547618,-0.17085434542296155,-1.1102005579828393,-0.2632362290762336,-8.048475321509711,-0.06017242030633676,-0.010268175396115157,-0.02992004585519354,-0.002855221923461635,-13.772200662359387,,,0.48888888888888893,1.0833333333333333,0.5208333333333334,0.020833333333333332,0.5625,-0.041666666666666664,1.077827620147043,0.021560789869073727,0.02872745653574039,0.7328899241486081,0.19962044693418166,0.2752443282956236,1.810717544295651,0.47486477522980525,1.986596865696101,1.823469876592985,0.08907427982220963,0.07405270928090625,0.0,0.16312698910311588,5.913464811127288,936.0,309.2148999999999,149.0,226.0,8918.614395344219,3657.4726959999994,76.99200405031897,314.17019999999985,143.94444444444446,397.7170879999998,10740.672866030136,1118.0,335.725,184.0,243.0,8085.8604930781485,4105.7643929999995,99.35833728600002,344.4485,145.80555555555554,417.69701999999984,13683.727703948938,1593.0,581.421,310.0,304.0,15373.10515552793,5739.2179019999985,147.76578253243306,593.3535,224.72222222222223,735.1380399999997,19684.903348645472,1827.0,777.5010000000001,365.0,299.0,21073.726668071075,6324.770443999999,182.94195559752694,791.2680000000001,293.77777777777777,987.1265199999999,23680.402926714778,1889.0,920.054,395.0,291.0,25756.49391746621,6373.136823000001,206.13257880196002,936.7369999999999,332.1666666666667,1184.288212,25584.685556479784,1928.0,1035.8200000000002,401.0,322.0,29900.649185018443,6409.620290000001,215.63346528324197,1052.747,375.5555555555555,1341.824872,26143.788739017196,1902.0,1062.577,409.0,331.0,31720.381340882323,6467.363756000002,204.78693543446704,1075.7721000000001,384.9444444444444,1382.6745519999997,25044.300170542152,1865.0,863.9510000000001,363.0,255.0,24152.38058592702,6409.196868000002,194.714538781111,879.2149999999999,331.9444444444444,1109.176632,24561.92107444057,1696.0,888.2299999999999,316.0,126.0,24650.08264022997,5493.289067999998,192.902476218621,903.7719999999999,363.9999999999999,1140.573264,23513.39271125141,359.9272727272726,3.0284836363636334,0.5408320070689444,29.709090909090897,141.9272727272728,74.80932956943185,1731.1518593454537,13.028685829739192,3.1991381818181788,31.427272727272715,1.547950836363636,2918.957826138847,8.692231404958681,0.02052029752066628,-0.23306325516982293,13.859834710743801,60.310413223140486,-5.117982309642141,41.86462508462844,0.032850178992365864,0.040126578512396816,-4.237566574839304,-0.023859542479347153,25.95247000847078,57.786776859504116,0.3238097520661207,0.03577917817683405,-1.8165289256198296,11.768595041322316,1.101439204639837,276.32922435371944,1.0730837431876048,0.42508148760330533,6.644352617079891,0.08249317024792521,348.55921223269416,-89.98644628099174,-1.3150492231404876,-0.11831099442995426,-8.563966942148756,-42.640991735537185,23.760184985857283,-424.5393283689253,-0.0027811333985563458,-1.335754842975206,-3.4955371900826466,-0.5574249467768719,-213.3333153138903,-76.23768595041321,-0.27355302479338656,-0.03328593259416028,-4.8052892561983445,-2.31041322314049,-21.571115381180604,-370.2354719209915,-3.5543100714731573,-0.35595748760330503,-2.186170798898069,-0.1017762393388447,-751.8526121856225,-13.17090909090912,0.5810047272727256,0.10037480598998161,12.78909090909091,77.44727272727273,-34.061691354759375,-74.8909004290908,-4.0954344924104795,0.5672101818181815,4.105858585858586,0.24864744727273022,-636.5706494764286,233.27206611570247,1.188813487603303,0.08518531079262914,3.6519008264462816,65.65388429752066,45.969018231013884,1128.7674206849579,9.35877727921392,1.4051048925619811,5.368025711662078,0.4306114803305785,2048.4539362538408,-5.088595041322334,-0.06581084297520383,-0.07578466180882429,-22.37256198347108,-78.61586776859504,-3.8553514602579835,-25.795782033718712,-0.685790341562717,-0.03990803305785121,0.1184756657483903,-0.05576709024793802,-98.26858651882415,-261.64694214876033,-1.3212569256198297,-0.01686685046477976,-26.824132231404963,-174.3014876033058,-41.328087964968674,-1263.6106254770245,-9.44706998809487,-1.6121035371900798,-4.697447199265386,-0.4482698419834767,-2162.2355039904237,0.73707791522427,0.6524789047691207,0.455870184220613,0.359997978156347,0.3044278293564886,0.21292756202827953,0.187415685600759,0.11340344884349525,0.12462919129627517,0.06923471961560589,0.07859700524402534,0.03452463259632924,0.04855961771692067,0.02107927830362389,0.03243188055593708,0.012839900303123224,8.006133904217704,5.682284434021822,3.512645934812407,2.1818542465010538,0.36315788092013257,-0.3754581052584184,3.2137173713774825,0.9871887527804408,5.01425870336813,0.987188752780439,14.543279784958042,10.94266135367732,16.002051331160146,11.693537681664653,2.0009880910778346,0.7874748284948655,3.4543605115333467,2.231760713119433,6.002807268830047,1.2340459365914316,3.6680466249449917,2.4277764602358043,20.90941700566648,14.708160962826302,0.20241554193302766,0.47976065325587863,0.6823162189331097,0.7556029588416371,0.7762297789867377,0.7762297789867377,2.066292550115889,625.6731039650488,0.0,0.0,6.0,0.0,9.0,3.0,3.0,1.0,0.0,4.576137840582067,2.9247706020397106,1.7187150002360152,1.2823513638723787,1.1595352274694068,1.1595352274694068,264.21568208758174,947.4715109952815,38.765557346814674,17.226754745368755,32.853322669667506,,9.0,366.0,0.0,5.106527394840706,5.917906046161393,17.833193491579827,18.52902952053558,11.126902983393991,0.0,18.19910120538483,69.85043107161165,0.0,11.733333333333334,26.0,12.5,0.5,13.5,0.0,0.011111111111111072,-1.0,0.05861471861471851,0.03506105834464035,-0.02355366027007816,0.01794444444444443,0.06093877551020366,0.0,0.495757575757576,0.7486111111111108,0.4371428571428575,0.46069651741293566,0.7306666666666664,25.86786288352903,0.5174589568577694,0.6894589568577694,17.589358179566595,4.7908907264203595,6.605863879094967,43.45722106309562,11.396754605515326,0.6530612244897963,0.24147727272727268,0.0,0.3323863636363636,0.45454545454545453,0.2775010643822737,-0.44282298596187375,-0.028122662624506592,-0.008051327017488615,-0.023306472945361777,0.7224989356177262,1.1529294013221603,0.03716714288700046,0.020962352751312002,0.03202581670339334,-5.331843933156785,1.0796824033715329,1.0132776040163087,1.3963818807548014,0.9088127294981644,0.7032022070934443,1.3000768962165272,1.0818900731861378,1.1819476861398894,1.013526309277125,1.1054434067523455,1.0172353799309894,1.1473397210754872,0.9616942816730656,0.9541299696337684,0.8465823586474516,1.5722460220318244,1.2099154496541118,1.1340740068662871,0.9631798509117774,1.018997691988865,0.9384689967639012,0.5448293317905702,0.9016479381727132,0.992099668947428,1.1565769354882491,1.3979472753052877,1.226579300884802,1.4581696779261593,1.3401860795943412,0.9902775592094767,1.1529836131382407,1.0147752549197921,1.3467358347747693,0.899553793082606,1.3405349384216554,1.0441154764025147,1.0621048105308295,0.931040075729761,0.8538295652073882,1.1692651580738578,0.9627912862526007,1.1084497043169932,1.064127586426584,1.1208211076137553,0.9565453437113314,0.9676813393820954,0.9185554065116815,1.1077068099691656,0.9800108162076715,0.812851330056213,0.7903883566446795,0.7921736626106994,0.729416286114753,1.106937322123654,0.9831792516641329,1.0854606578038062,0.839306087180832,0.853894059793429,0.7986152155924707,1.0556127435799323,0.7966453134471613,1.079834957908729,1.1090835444965854,0.9561467258261936,0.9214666602613371,0.7554318935949073,0.792735660209213,0.723066235810377,1.0242939273844207,1.20019164015042,1.19367635527795,0.7340876675195739,1.008537078197616,0.9825709355897285,1.1703950495847983,1.4315285477716182,1.3366414974906176,1.051969812725722,1.0093694255253753,1.0359686300775008,0.9826653849489276,0.9198018229565479,0.9676960321762127,1.025086300803651,1.2628347359628727,1.2001370909718405,1.1280713273544931,1.2040321511822814,1.4310280675815266,1.2173963490683626,1.2636932068100661,1.2750618460449554,1.213779122085652,1.2239359261831901,1.1860041903247334,1.2727233142957581,5.0,0.0,3.1111111111111125,2.0,1.0044444444444447,0.6944444444444444,0.7926530612244898,0.6059027777777778,0.33383723859914327,0.125,4145.86643806563,4997.346805580126,2156.2270350445974,1844.8625495696847,11.414362797372133,0.46187673180296623,6.142334212908529,0.8583102777742183,1.0,0.45454545454545453,1.205221872942593,2.8565891114849493,4.062644713288645,4.499008349652281,4.621824486055253,4.621824486055253,0.2,0.0,0.09150326797385624,0.05555555555555555,0.028698412698412702,0.020424836601307186,0.022018140589569156,0.016830632716049378,0.011922758521397975,0.010416666666666666,0.4573702713228149,20.3136,9.629757785467127,5.761904761904762,146.6919858919264,0.0,4.07768500389213,112.7667135810483,,96.93155286873963,95.92247807067393,95.27212411454128,96.9408130631,114.41384379224525,96.5118438784754,96.99151335138734,108.49194381128198,0.02371871662384899,0.006654770524224412,-0.42323939473930705,0.4581876202133242,0.417350664324146,-0.0671920173236316,0.02375126264739005,0.0024763486567134702,0.012318952864091206,-0.13242942775413138,-0.015138387260306065,0.008732237518398923,0.08830319256415438,0.05880677758926557,0.03638569415280582,-0.033629130966952185,0.04560594414552906,0.008097807667019187,0.08779187832314696,0.04529973832095982,0.0730805626060655,0.11628097579789803,0.02931051979851155,0.0656767168786298,-0.10261721801177989,-0.17822748091386809,-0.0897884780369954,-0.11831600869581103,-0.12331597202305146,0.1303622795329268,-0.100656228352911,-8.761512802878342e-05,-0.1713766500988284,-0.04565255872791097,-0.14780432043677733,-0.02999775497767717,-0.07103523007850811,-0.030292501032253734,-0.020640356068715497,-0.05424366361166671,-0.00545937146535184,-0.09670204994234335,-0.071723537380713,-0.09148998194168527,-0.037315045462770514,-0.02332900606992762,-0.022049973801628552,-0.08638209529891237,-0.010762720929956168,0.05642551317222614,0.054586269628816325,0.12661098711210317,0.16049494355774588,-0.13391571043031048,-0.012723745349901948,-0.09245288222714247,0.05214733299496237,0.038425398121836735,0.047244137488781736,-0.06414161243925023,0.18565619317033752,0.11244753850211653,0.04511944898821016,0.03521203080375359,0.13251225019215981,0.17602361126902236,0.18678016738094533,0.2057690066731123,0.1258163864160006,0.048929339557955455,0.07968744489293311,0.2010295233575153,-0.005082230912166868,-0.007811662671287126,-0.05037211542242359,-0.27070583435332535,-0.19912033478520785,-0.018525906643261744,-0.005356545407309893,-0.01892178098382945,-0.004484340513007593,0.0013551698226725005,-0.012950665328284122,-0.012102027841232517,-0.25466188241078114,-0.15283579573277664,-0.010925332069608723,-0.31630011928057455,-0.43022760541866356,-0.1935319121628482,-0.25570613016607663,-0.2540151140412272,-0.17653180784625166,-0.05236224397567862,-0.10144844532614058,-0.2595005072175837,12.938007399838632,20.550203659346547,6.652412704890515,9.975120095172668,23.51345730818248,29.130361354800602,30.921561849097053,31.045360514591245,31.045360514591245,47.678324776706425,43.76327703823164,2.137782715733031,1.7772650227417501,0.0,3.9150477384747813,4089.0907270222588,3229.658001682226,1691.9645929217113,45.0,34.0,42.0,51.0,59.0,59.0,66.0,67.0,58.0,325.24056461200087,25.0,4.77912349311153,5.602118820879701,6.46302945692067,7.30854279753919,8.174984532943087,9.030376034755907,9.899529730681785,10.76009197224363,11.630681833604383,0.5393939393939394,0.9437818181818185,1.1261293425897743,0.49272409382308635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6457548502994014,0.932477718360071,0.977368734688473,0.5794744296208574,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,5.106527394840706,5.749511833283905,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,48.02802097092827,59.21408258745031,23.565039196154313,0.0,164.7651320268856,-262.9243527730718,-16.697716928001732,-4.780442777692215,-13.838123830161674,428.9808141144673,684.5471582222098,22.067840418812946,12.44631196767654,19.01519883950583,0.4444444444444444,0.9351438305656158,0.31812699141228135,57.71494812558609,0.1836803146497832,108.98854060139911,0.06485616943438405,5.0,0.28,0.20846685428051634,0.4941033343423295,0.7027143984458658,0.7781920815491723,0.7994355506444546,0.7994355506444546,5.341420000000006,,0.3928571428571429,0.4713820381572824,0.39838377133594904,0.3917657575808813,-1.60047608252097,0.419905140758874,0.3887577933310232,-0.7183191063014545,102.72380000000005,5.106527394840706,0.0,4.899909730850478,0.0,59.04109532583644,6.544756405912575,65.22129102278387,0.0,5.749511833283905,3.9318256327243257,0.0,5.231108616854587,0.0,6.7226297948554485,0.0,8.302761580704049,0.0,9.928228944424575,29.66666666666667,16.46300826194675,0.0,0.0,0.0,0.0,0.0,3.8915998467288158,0.0,51.908000000000015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.93711384243759,0.0,0.0,5.749511833283905,28.63487518989968,0.0,6.923737199690624,56.724030942940885,48.53093654769288,0.0,0.0,0.0,27.09982516026975,35.51651676646708,29.80992038820827,225.5334271620967,,193.83036764224116,191.80567430483478,190.51104958147124,193.8489789797349,229.4945526188742,192.9886956618876,193.9506302199971,217.28318725018946,29.809920388208276,225.53342716209679,,193.47024859462203,191.37357410319066,190.14586445774665,193.4898603686193,230.42816366701152,192.60378261619184,193.59426890944377,217.70220672886543,4.786847305199825,155.5530775996628,,136.72540500432982,135.1590208010136,133.99925298549275,136.73933242444346,163.33426168233953,136.06640949166655,136.81931755179568,154.59431955624908,1.2420800161753445,9.39722613175403,,8.076265318426715,7.9919030960347825,7.937960399227968,8.077040790822288,9.562273025786425,8.041195652578649,8.081276259166545,9.05346613542456,2.3934236525999135,112.7667135810483,,96.93155286873963,95.92247807067393,95.27212411454128,96.9408130631,114.41384379224525,96.5118438784754,96.99151335138734,108.49194381128198,51.2862745098039,0.0,11.089461241286639,0.0,0.0,0.0,10.436688082640464,53.75528040786601,2.013554421768707,0.0,0.0,0.0,1.2557032627865956,2.5166515495086923,0.0,0.0,0.0,31.871093629147158,555.2378584574307,66.2872030118426,157.11240113167221,223.44545923087546,247.44545923087546,254.2003467330389,254.2003467330389,530.0,122.64847867267987,38.508087683922255,58.116554569562986,23.47,23.47,0.8,7.8571785168921675,5.643856189774724,4.157794954316521,4.827834641063204,,4.830435281065533,4.831068201839109,4.831540559924006,4.830429726952364,4.815756401185225,4.8307067418232466,4.83039646060675,4.821897111065102,0.17324145642985503,0.20115977671096683,,0.2012681367110639,0.20129450840996288,0.2013141899968336,0.20126790528968183,0.20065651671605103,0.2012794475759686,0.20126651919194793,0.20091237962771258,2.3004536120375785,2.449866790015732,,2.450405321261214,2.4505363403672153,2.4506341106685743,2.450404171444264,2.447361862931903,2.450461517673013,2.4503972845911175,2.4486361794868725,289.17000000000047,180.5099874149195,133.4689235148421,,133.06289070364798,133.00496434411778,133.03982485974032,133.06363264255867,134.481653226254,133.04185311367937,133.06603815033293,133.87217455106875,7.521249475621645,5.561205146451754,,5.5442871126519995,5.541873514338241,5.543326035822513,5.544318026773278,5.603402217760583,5.543410546403307,5.544418256263872,5.578007272961198,6.071254845534693,5.769337405435756,,5.766290616244889,5.7658551907746824,5.766117255789572,5.766296192080783,5.776896519851733,5.766132501137952,5.766314269792803,5.772354160771692,0.0,2.5166515495086923,10.436688082640464,3.493361940455195,0.6122193877551021,17.504730043251865,0.9974074074074073,12.105608255647939,0.0,346.5234498398786,97.82862920640814,-156.1102686008504,-9.914201735816874,-2.838368520015462,-8.216329926360546,254.70561935288225,406.4471001370204,13.102690788764482,7.389947275218552,11.290197226028345,1311.0,36.0,1.7659590187875251,1.134643874750962,0.0,0.0,0.49198750914037903,0.29581855824491676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.056131276171213614,0.2342920386527526,0.0672219556964402,17.68986996538248,15.659493714458899,11.396754605515325,8.999949453908675,10.350546198120613,7.239537108961504,7.871458795231878,4.7629448514268,6.356088756110034,3.5309707003959003,4.637223309397495,2.0369533231834254,2.8650174452983195,1.2436774199138094,2.1405041166918473,0.8474334200061328,3.735981436318729,2.2057059173796776,5.660007392583565,3.1083264852649837,7.798018311493459,3.4594542931043355,85.8273384303851,51.93042748220023,34.33465847724176,29.39489084149785,28.88605056510318,28.88605056510318,118.0,135.0,59.31258299999997,32.809416999999996,0.23636363636363636,73.02,9.38888888888889,5.38888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,55.0,0.0,1.0,56.0,12.0,0.0,6.0,50.0,12.0,25.0,44.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,2.0,1.0,0.0,24.0,2.0,0.0,1.0,1.0,0.0,2.0,7.0,0.0,0.0,0.0,0.0,2.0,3.4657359027997265,6.346567944313784,3.9889840465642745,4.454347296253507,4.9344739331306915,5.424399205019116,5.428522922202977,5.711151092917237,6.037274083139276,6.238385658333188 +11679357,CS(=O)(=O)CCNCc1ccc(-c2ccc3ncnc(Nc4ccc(OCc5cccc(F)c5)c(Cl)c4)c3c2)o1,0,32.54545454545455,6.432759090909092,3.606060606060606,8.879536101758324,161.37430103859813,131.2760423810571,1.7170227352435454,6.5332681818181815,5.158658054019851,7.945271363636363,245.55726526576962,31.8,6.443042857142856,4.185714285714286,7.715873015873015,144.9600265179743,123.34595589764571,1.9952165434285714,6.618577142857142,3.0836934156378604,7.88730797142857,288.2580409506649,25.889830508474578,6.465201694915255,3.788135593220339,6.879472693032016,151.78216339343132,98.06663870059661,1.7154811675079915,6.600756779661017,3.7383387389272515,7.945646864406778,246.72477464678715,21.29801324503311,6.426071523178808,3.185430463576159,4.932303164091244,158.09636385492874,78.41773685775894,1.4586069226823641,6.533637086092715,3.3215838170768266,7.9673482119205286,205.44339235271235,19.31168831168831,6.252402597402598,3.0,4.554112554112554,160.6064450141136,70.9064005330909,1.3747493600534089,6.351416883116883,3.0175464967131638,7.812461896103895,188.64987713951808,19.1156462585034,6.195210884353742,3.1156462585034013,4.652305366591081,160.23196607359247,69.66347040186122,1.4368547159528842,6.309757142857143,2.9168626298255926,7.776345210884354,194.96874100416548,22.131386861313867,6.20324890510949,3.27007299270073,5.128953771289538,155.35391317707217,83.11859858273868,1.5461672058049782,6.331192700729925,2.9785114595536335,7.749769664233577,213.1396662241482,22.617021276595743,6.223624113475178,3.1347517730496453,5.247438928289992,157.6160394756315,85.08574306149218,1.5217894961892058,6.358544680851064,3.176020780433704,7.7896421134751765,207.71971124531143,22.007518796992482,6.282684962406015,3.007518796992481,4.5321637426900585,158.6107309218352,82.19836510929323,1.4501255828141504,6.422227067669173,3.1701862681394846,7.871426240601504,199.6819933868955,11.6078971533517,0.15621581726354444,0.018587574669122406,0.6225895316804407,4.221496672675125,1.9005475587912566,53.76685274672743,0.28386484291619835,0.1469265610651974,1.8527028771909417,0.10102836547291089,49.90385434779009,1.3583366128820666,-0.006995362718089962,-0.00806718333218604,0.08736717827626919,0.798160213648429,-0.15825246639920612,5.914444324213129,-0.011292339012463294,-0.002535132493768797,-0.27654819149407517,-0.0003443442607897264,1.1405538987308348,-1.1405114317286895,0.0058883943440569304,9.806270601949577e-05,-0.0642947191483401,0.29713915198706603,-0.10279119334106646,-4.852651940403163,-0.035078278164104366,0.004976905806913556,0.3034558944826108,-0.0004490562792797156,-1.6803077415337282,-1.4917020901367684,-0.030297505001854744,-4.62698399372838e-05,0.0033386240490394605,-0.7308209678713838,-0.17056776154873873,-6.944596352075024,-0.019291360681315144,-0.027751927310431166,-0.3365767635394148,-0.01634306143919631,-4.928618313383513,-0.0709038436311163,-0.007492883379247018,-0.0004404765322195161,0.027744982290436836,-0.07174518959030743,-0.05939414522316518,-0.25130567538534554,0.005357038431892563,-0.006480949101403653,-0.06624390560524014,-0.005240589794044333,0.07613131245930144,-1.0041041209872377,-0.004143646577088147,-0.0006205255980903027,0.05953786473266992,0.1096454362447628,0.260693603311094,-4.552036496890326,0.0203891380826557,-0.007241022001086954,-0.04672661705781335,-0.004419145105976263,3.656723541548694,0.9185350519126233,0.0041145631832592506,0.0011752822501917884,0.012668154672136086,-0.03452831376840329,-0.025757057476700828,4.193230118798516,0.01259257496794498,0.005007856099146732,-0.09080280724183727,0.005077769674180439,1.0552118581950913,0.7176992360744777,0.01807250210030673,0.000400245002583045,-0.03135806810855167,0.3931950302750503,-0.1280602098844388,3.4529143772851754,0.00667413363391319,0.016260672977355742,0.21198479753404217,0.009312728230076396,1.796275107325222,-0.2665893383596733,-0.008162912273797436,-0.0014723587742416786,-0.034984154601379484,-0.3767726291206709,-0.22191717168077943,-1.0762166166660492,-0.027797724668536004,-0.003935857032388122,-0.07559115776233208,-0.004203875839737086,-3.209950345108243,,,0.48166666666666674,1.425,0.775,0.05,0.65,0.125,0.8124130828897205,0.01707289048495957,0.02782289048495957,1.1919918499476758,0.27963050580602145,0.20115194276834641,2.0044049328373963,0.4807824485743678,2.053717747476292,1.519963048538439,0.20558375599109285,0.18684189185325842,0.08869948782869316,0.5337546989378535,8.789920185030315,2148.0,424.56210000000004,238.0,586.0493827160494,10650.703868547476,8664.218797149768,113.323500526074,431.1957,340.4714315653101,524.3879099999999,16206.779507540794,2226.0,451.013,293.0,540.1111111111111,10147.201856258202,8634.2169128352,139.66515804,463.30039999999997,215.8585390946502,552.111558,20178.062866546545,3055.0,762.8938,447.0,811.7777777777778,17910.295280424896,11571.8633666704,202.426777765943,778.8893,441.1239711934157,937.5863299999999,29113.523408320885,3216.0,970.3368,481.0,744.7777777777778,23872.55094209424,11841.078265521599,220.249645325037,986.5791999999999,501.55915637860085,1203.0695799999999,31021.952245259567,2974.0,962.87,462.0,701.3333333333333,24733.392532173497,10919.585682096,211.71140144822496,978.1182,464.7021604938272,1203.1191319999998,29052.081079485783,2810.0,910.696,458.0,683.8888888888889,23554.099012818093,10240.5301490736,211.217643245074,927.5343,428.77880658436214,1143.122746,28660.404927612326,3032.0,849.8451000000001,448.0,702.6666666666667,21283.486105258886,11387.2480058352,211.824907195282,867.3733999999998,408.0560699588478,1061.718444,29200.134272708303,3189.0,877.5310000000001,442.0,739.8888888888889,22223.861566064043,11997.089771670398,214.57231896267803,896.5548,447.81893004115227,1098.339538,29288.47928558891,2927.0,835.5971,400.0,602.7777777777778,21095.22721260408,10932.382559536,192.866702514282,854.1562,421.6347736625514,1046.89969,26557.7051204571,766.1212121212122,10.310243939393933,1.2267799281620788,41.090909090909086,278.61878039655824,125.43613888022294,3548.6122812840104,18.73507963246909,9.697153030303028,122.27838989460216,6.667872121212119,3293.6543869541456,95.08356290174467,-0.48967539026629736,-0.5647028332530227,6.115702479338843,55.87121495539003,-11.077672647944429,414.01110269491903,-0.7904637308724306,-0.17745927456381577,-19.35837340458526,-0.02410409825528085,79.83877291115843,-134.58034894398537,0.6948305325987177,0.0115713993103005,-7.586776859504132,35.062419934473795,-12.129360814245842,-572.6129289675732,-4.139236823364315,0.5872748852157996,35.80779554894807,-0.05298864095500644,-198.27631350097994,-225.24701561065203,-4.5749232552800665,-0.006986745830529854,0.5041322314049586,-110.35396614857896,-25.75573199385955,-1048.6340491633287,-2.9129954628785866,-4.190541023875106,-50.823091294451636,-2.467802277318643,-744.2213653209105,-10.919191919191912,-1.1539040404040408,-0.06783338596180548,4.2727272727272725,-11.048759196907344,-9.146698364367438,-38.701074009343216,0.8249839185114547,-0.9980661616161625,-10.201561463206982,-0.8070508282828273,11.72422211873242,-147.60330578512395,-0.6091160468319576,-0.0912172629192745,8.752066115702478,16.11787912798013,38.321959686730814,-669.149365042878,2.9972032981503878,-1.0644302341597822,-6.868812707498562,-0.6496143305785106,537.538360607658,125.83930211202939,0.5636951561065173,0.16101366827627503,1.7355371900826437,-4.73037898627125,-3.5287168743080133,574.4725262753966,1.7251827706084621,0.6860762855831023,-12.439984592131706,0.6956544453627201,144.5640245727275,101.19559228650135,2.5482227961432486,0.056434545364209346,-4.421487603305786,55.44049926878209,-18.056489593705873,486.8609271972097,0.9410528423817598,2.2927548898071595,29.889856452299945,1.313094680440772,253.2747901328563,-35.45638200183655,-1.085667332415059,-0.19582371697414325,-4.652892561983472,-50.11075967304923,-29.514983833543663,-143.13681001658455,-3.6970973809152885,-0.5234689853076202,-10.053623982390166,-0.5591154866850324,-426.9233958993963,0.7028577232094118,0.5774500935123801,0.4370749532494252,0.3371293245419663,0.29517655619970595,0.1916542796330842,0.1837361032458879,0.0953871107041047,0.11857606063953635,0.048746568690952535,0.0753055628307946,0.02545755731857897,0.04903547337381592,0.013428936530379135,0.03143537401889741,0.0072415289788324445,17.001105721848468,5.675267047827789,4.1077352185118485,2.1726050596416586,0.4212973710345667,-0.5331668158791003,4.038020062745405,0.9684033028627433,7.004065153923598,0.6119718950608134,17.42477506362058,10.310066875214853,35.45051838799289,11.688269767814575,2.9582826193161345,0.5458475758304054,3.988691248888939,2.221732006489621,8.001922816840786,0.295491524804115,4.009983165625719,2.4172055121235028,24.443825973803836,13.304117128915392,0.28328964706047544,0.6140398076686822,0.8017486957718019,0.9034449989403932,0.9081729100016728,0.9081729100016728,1.0463197966006719,1760.5816038855614,0.0,1.0,4.0,0.0,19.0,0.0,3.0,0.0,0.0,4.228680023187394,2.1087729416590646,0.9056732956184428,0.2538619318509614,0.22355890154793112,0.22355890154793112,97.17839907369176,2831.734719948417,86.86239929653553,42.90507151436996,91.35520384758611,,23.0,1499.0,9.837253136417502,12.808212032003757,18.1769564123056,52.45085334081485,16.466376423778055,24.715823395199166,24.26546827384644,36.39820241076966,20.60153424990708,20.754953781085913,19.26666666666667,57.0,31.0,2.0,26.0,0.0,0.018333333333333268,5.0,0.20158730158730187,0.08611111111111147,-0.1154761904761904,0.027063492063492123,0.15929750479846416,0.0,0.6444444444444432,0.868333333333333,0.4428571428571413,0.5583333333333317,0.8412698412698408,32.49652331558882,0.6829156193983827,1.1129156193983827,47.67967399790703,11.185220232240857,8.046077710733856,80.17619731349585,19.231297942974713,0.5547024952015358,0.11245674740484427,0.04325259515570934,0.28546712802768165,0.1724137931034483,0.44531710313084133,-1.4191676735971888,-0.058912058451405784,-0.021502540509048325,-0.06170294233031257,0.5546828968691586,1.7677022301626377,0.03884397926512875,0.02678336712367632,0.04110935418982878,-10.51885611030566,0.6993484918688619,0.6843121308742514,1.4092013187740067,0.9604140328697851,0.5501739706393495,1.1277225300007516,0.6878129348183978,1.0772644778918665,0.638623372455436,0.68603611824132,0.6518853112118442,0.8761199790162878,0.9889958220426134,0.811826293135804,1.117518294573131,1.2668272836358183,0.8376043624538951,1.0626972125449266,0.9661463365896209,1.142667926731336,0.7927033921887797,0.6039733463232582,0.8623548502249173,0.949670725939199,1.0049116168297105,1.2663262408802523,1.1982483999417752,0.958543339389322,1.1828433890985552,1.0624345164735483,1.0094370104187926,0.9785699446454246,1.239373282709801,1.2563687414626505,1.2547460801878523,1.0276675240564113,0.8768025246646398,0.9856882871104092,1.203946554606124,0.8679677623261695,0.9912269461808366,0.9502959734083807,0.8844454248575854,0.8684814271431327,0.9851057057023942,0.7701670055188039,0.9820487605208736,0.9696866121832156,1.085355153057188,0.9249748155769776,1.0420360224965186,0.9039190897597977,0.9436373656811787,0.822477854951007,1.0893925742654944,0.883614960688172,0.97026127972217,0.7475088418371963,0.9481865429802127,0.9259419942096887,0.7617288662716672,0.7137557941036985,0.8705180690059247,0.9525789677669402,0.9101648952416922,0.8759405523274285,0.7696070999193221,0.8558858799913591,0.7270771581226616,0.6652373200040632,0.7127546118829093,0.9524769052553973,0.9609519513504687,0.6526628773026741,0.9209304344068198,1.0209157095336725,0.8105632674950795,0.9762566107651451,0.9617203643140209,0.9298062675579045,0.6984405351352283,0.4718668331579103,0.7087028695931178,0.9501548438494796,1.0991311242269899,1.0010667586406028,1.0749322962927623,1.0228558120966131,1.0596206211307242,1.077034000652713,1.1037960689034616,1.0500581499578934,1.0084056117580944,0.9034082471734506,1.046685760860478,1.046000038628343,9.5,0.2469156208550148,4.000000000000002,2.0347222222222223,2.1172222222222223,1.1530555555555555,0.7722448979591836,0.8125354308390023,0.4502629755605946,0.35313271604938273,8894.315694075001,9696.850921141298,4290.412888099581,4023.8186579570975,21.387744729704032,0.4701698579684086,11.331871827874508,0.8873973386368313,0.0,0.1724137931034483,1.8157140961710596,3.935621177699389,5.138720823740011,5.790532187507492,5.820835217810522,5.820835217810522,0.21590909090909088,0.006022332215975971,0.06451612903225809,0.034486817325800376,0.03920781893004117,0.021755765199161423,0.01379008746355685,0.014255007558578985,0.00900525951121189,0.008828317901234568,0.42777662604691025,31.425619834710744,14.650364203954215,9.25,235.65015567569458,0.0,4.619120350363641,347.68178837222433,,252.5932689902388,257.41663098409964,261.3677458393783,252.53959478154658,362.6433042086074,259.8978005834483,261.1061595679454,326.07893622587335,0.1170183190751183,-0.04478011792037941,-0.43400946469832924,0.14032869785082178,0.18907043533037823,-0.08326677523389854,0.11000168360371655,-0.039780688923837536,-0.017254419319348624,-0.14926742701094958,-0.003408391882595158,0.02285502620262722,-0.09825306139961575,0.03769397009345663,0.005275712822415561,-0.10326983650817462,0.07038715768992224,-0.05408504136904703,-0.09025359849984012,-0.12357387341010052,0.033873424728869124,0.163790912303601,-0.004444853454549086,-0.03367090104550488,-0.12850752125298162,-0.19394646158488058,-0.0024892887189928575,0.0053624802203598426,-0.1731189254753739,-0.08974664209782753,-0.12916129543211385,-0.06795966870406095,-0.18888298418770239,-0.18166796612834687,-0.16176705782276993,-0.09876227753942556,-0.006108241888639004,-0.0479649468952694,-0.023697364506152258,0.04456384323640961,-0.016995202212215208,-0.03125107022364634,-0.004673988945738348,0.018871792564583458,-0.0441101258643615,-0.035755277557337636,-0.05187245947722981,0.0015255597679635499,-0.08650181059687538,-0.02652514098554818,-0.03338389268832996,0.09562940220335922,0.025973119191227852,0.13716762945774133,-0.08466250606731655,0.0718269225353663,-0.049283274232994626,-0.025220782907543166,-0.04374162726765271,0.07327537300153704,0.07913018523319727,0.026338966535749467,0.06322945683409477,0.0203475227698469,-0.008179164037223558,-0.01355244037833089,0.07798913093446297,0.04436116441394794,0.03408407617275231,-0.049010992728371,0.05026083170218131,0.021144896962088457,0.06182853161024492,0.11568932273879444,0.021532933139896418,-0.050367162492939196,0.09314114418711271,-0.06738069210216702,0.06422013193798738,0.023511659863717276,0.11067211305749006,0.11441920889951464,0.09217934177677509,0.03599471685707113,-0.02296620437257212,-0.05225407014979902,-0.07921198975397012,-0.056191363364162625,-0.08925095963226555,-0.11676486108136024,-0.020016358810058008,-0.09792591566805037,-0.026787920467570323,-0.04080047518301639,-0.041610846815732024,-0.06432269384920547,19.62842414900473,33.87549426568118,11.156818129340522,22.073421820706283,42.40274987172098,51.51468808379685,52.50513818089873,52.53568363544418,52.53568363544418,82.1487098990517,60.79852194153756,8.223350239643715,7.4736756741303365,3.5479795131477263,21.35018795751414,27630.634927058098,26516.67121269436,2841.8517931943825,252.0,62.0,76.0,98.0,123.0,136.0,159.0,191.0,227.0,580.1347322120008,44.0,5.3612921657094255,6.192362489474872,7.069023426578259,7.916078096302786,8.794673401383422,9.650979555092,10.53126920341452,11.3942657951824,12.276237496647294,0.7626262626262627,1.002121212121212,1.1214880409828147,0.7329889560831864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7168537289058245,0.9910279263220442,1.019940850603633,0.6796860216247557,13.0,2.0,0.0,1.0,0.0,2.0,9.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,4.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19.78759109886606,51.676545465608676,0.0,0.0,0.0,0.0,22.776169073898174,0.0,0.0,23.733674027155736,66.2271221763131,29.437587570269333,22.836944044016953,395.692306370812,-1261.0199023224532,-52.34707608982105,-19.106362156400813,-54.82695227488928,492.87070544450376,1570.7148176259639,34.515323206714484,23.798709357969145,36.52825157269683,0.4782608695652174,0.8079667443618015,0.15292244047122566,18.64027906330359,0.0527421473698995,105.1594800759952,0.19203325563819854,12.0,0.25,0.3003963772573748,0.6511192188965189,0.8501630969565945,0.958000433651751,0.963013844376571,0.963013844376571,6.139100000000005,,3.1768207282913163,2.367789664985318,1.9919986961859846,3.221395472951791,-7.742026112784512,2.243582927107845,2.149671450145585,-3.179068585597448,154.12419999999975,21.962225922857154,0.0,15.284745645900749,0.0,13.151638370425493,23.8701678001771,101.28727796166254,0.0,17.07321074385534,4.48863636973214,0.0,5.820082930352362,2.3978952727983707,7.324489979348532,4.59511985013459,8.909370405197466,6.580639137284949,10.537919225261291,50.333333333333336,22.459777701685994,8.79698874038175,0.0,5.97398290028989,0.0,1.5309218101736353,4.747907310647763,0.0,66.13999999999999,0.0,22.593368794279318,0.0,0.0,-3.0189964704993364,0.0,0.0,0.0,74.01821070486577,15.370440161812711,15.89566410019341,5.749511833283905,36.939133222394126,22.988891506842997,5.817220841045895,11.323698910571437,83.54087583335722,5.022633313741326,22.226623842652494,0.0,48.3772711014903,47.31234610778442,51.18687544142877,695.3635767444488,,505.77557949534787,514.71487248495,522.6358917439472,505.6640943456681,728.4442292010026,519.6834220205412,522.1048355633835,653.2705464567059,51.18687544142877,695.3635767444489,,502.9164408398857,512.4654723032138,520.7434929825711,502.7648384200114,733.0894448686735,517.5520182397887,520.0626476857451,655.3369410373446,4.875513754592931,525.8255579559661,,384.4905950569064,388.2316018394192,393.66558951156026,384.46268924920275,549.3105733729928,392.253782236478,394.39062999323994,493.64423751725155,1.2796718860357192,17.384089418611218,,12.644389487383696,12.867871812123749,13.065897293598681,12.641602358641702,18.211105730025064,12.992085550513531,13.052620889084588,16.331763661417646,2.446018369782069,347.68178837222433,,252.5932689902388,257.41663098409964,261.3677458393783,252.53959478154658,362.6433042086074,259.8978005834483,261.1061595679454,326.07893622587335,65.40784313725491,0.0,1.2099470352455166,6.467436423952425,13.43080267349532,0.0,0.0,67.31609613983977,1.022559397315361,6.374405328345466,5.772009465798015,0.0,0.0,0.0,0.0,0.0,0.0,44.85927742723388,717.9293638167377,119.83713034728993,259.75099772815963,339.1555743668407,382.1751243754945,384.1751243754945,384.1751243754945,1408.0,163.18618162978498,170.63364799857817,90.65415317010971,114.73,106.35000000000001,0.9166666666666666,9.569389935678654,6.459431618637297,4.674929183811095,6.204591949907643,,6.206357730580065,6.192794133684956,6.188809260551039,6.206487068808489,6.186357761758674,6.193518712766365,6.194970906881778,6.191421480813009,0.11687322959527738,0.15511479874769107,,0.1551589432645016,0.1548198533421239,0.15472023151377598,0.1551621767202122,0.15465894404396685,0.15483796781915912,0.15487427267204446,0.15478553702032521,2.928508375897917,3.2115840161165194,,3.2118685681822026,3.2096807407478956,3.2090370642958854,3.211889407599841,3.2086408678130396,3.2097977374831177,3.2100321799642675,3.2094590629411948,403.0200000000013,1506.1132186849209,300.25785326375524,,299.41026755596056,301.71917892663265,302.2644293146059,299.3762107987144,302.64320377812203,301.5826715196518,301.38627723783355,302.05610065006357,37.652830467123025,7.506446331593881,,7.485256688899014,7.542979473165817,7.556610732865147,7.48440526996786,7.566080094453051,7.539566787991295,7.534656930945839,7.551402516251589,8.703581945063616,7.090935977487321,,7.088109126291484,7.095791074792565,7.097596589143135,7.087995373698485,7.098848927491335,7.095338540429512,7.094687116208852,7.096907124984745,47.77016383386254,8.79698874038175,7.555419093540143,2.9915328563347954,2.1726441865322363,20.978044529702686,2.6916802072288206,0.9561977100750518,-3.0189964704993364,478.51937103512125,351.5975475009974,-1120.4956423666943,-46.5136755900969,-16.97720670252568,-48.7172018420302,437.9466784653076,1395.6790890526709,30.669039542337288,21.146652864434405,32.45765323378304,6645.0,59.0,3.6668260992872317,1.960548456146255,0.3535533905932738,0.14433756729740643,0.33726722701904555,0.09298902294517844,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.034020690871988585,0.4388321936425753,0.13139066359221596,0.7808059672991264,0.18166337214596479,28.11430892837647,23.0980037404952,19.23129794297471,14.833690279846518,18.300946484381768,11.88256533725122,13.963943846687481,7.249420413511957,11.620453942674562,4.777163731713348,9.262584228187736,3.1312795501852135,6.6688243788389645,1.8263353681315624,4.998224469004689,1.1514031076343587,5.5444745793495045,2.2739135499594845,8.295492485812487,2.5583003015953936,11.441511463033933,2.793310213830162,123.02534760228859,65.23468082072021,34.4641263364286,29.584287475139895,29.46173007758358,29.46173007758358,212.0,244.0,79.011618,41.25438200000003,0.45454545454545453,376.11,12.034722222222221,8.569444444444445,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,28.0,66.0,0.0,1.0,70.0,28.0,2.0,15.0,55.0,30.0,44.0,40.0,0.0,0.0,0.0,29.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,8.0,2.0,2.0,40.0,11.0,0.0,4.0,4.0,0.0,5.0,11.0,1.0,0.0,2.0,2.0,5.0,4.110873864173311,8.51111184684255,4.768563732896527,5.280026096575785,5.870179292084522,6.41530152089881,6.736522019173603,7.186995569648217,7.695871672132784,8.192689359353093 +11856170,CC[C@](O)(c1nnc(NCc2ccc3c(-c4ccc(F)cc4)cc(=O)oc3c2)o1)C(F)(F)F,1,30.72,7.285894000000001,3.94,13.04,170.45634178784468,124.94602395198163,1.52716062764866,7.275116000000001,9.5075,8.56234024,242.98954288124276,29.849056603773583,6.82696037735849,4.622641509433962,11.056603773584905,149.3023067597349,116.53378270454341,1.827417074264151,6.951624528301887,4.036556603773585,8.156399396226414,287.22498091154745,28.95505617977528,7.070201123595505,4.112359550561798,10.96629213483146,157.84021819766906,113.64568236657654,1.616759222519607,7.136255056179776,6.126404494382022,8.370321617977527,253.68751574283837,24.582608695652173,6.886338260869565,3.5217391304347827,8.02608695652174,160.52511571802992,94.22911749498434,1.4227890378377304,6.944399130434782,5.292391304347826,8.282201391304348,220.02515700456826,21.96031746031746,7.081888888888889,3.0793650793650795,6.809523809523809,169.605492186315,81.83040840698412,1.2812194333225475,7.099292063492063,5.183531746031746,8.480665587301585,196.5598746281493,20.495726495726494,6.852666666666667,3.0256410256410255,6.3931623931623935,168.94394148200246,75.83874342767862,1.2689484607182653,6.883126495726495,4.5743114909781575,8.286367008547009,191.26491783557728,21.157894736842106,6.725768421052631,3.231578947368421,6.294736842105263,162.4076242937715,78.5172912477642,1.3346166160836106,6.780401052631579,4.2364035087719305,8.173509978947369,199.65758882128088,19.744444444444444,6.816988888888887,3.0555555555555554,6.155555555555556,166.98967851547602,72.42044361904,1.2308832143071222,6.850003333333333,4.272222222222222,8.281233377777777,184.6448589353022,20.925,6.82835,3.0375,7.375,169.6821726595873,78.93359644686,1.2098196149466875,6.85469375,5.046875,8.26242335,184.97039744713192,8.062400000000002,0.3152379599999998,0.029768859594721402,0.7716,5.422399999999999,3.1856629946764325,39.05442136289828,0.23614287828331557,0.27379999999999993,4.1251,0.19011372959999995,43.39538141062031,0.05684528301886828,-0.015611092075471735,-0.0185983625768747,0.16726792452830186,1.3851471698113211,-0.02754835029434443,0.2913182340314365,0.0002888601089817741,-0.012447773584905671,-0.4082132075471698,-0.011488464694339569,1.3271648715993005,1.445465168539326,0.10208442202247187,0.002250631381787322,-0.05924044943820225,1.4346786516853933,0.7158263241023775,7.048837980623564,0.0054798649365646315,0.08731105617977528,1.2078307116104865,0.059392668602247206,0.5763622263698254,0.592208695652174,0.027626700869565167,0.0007985011596068344,-0.0893391304347826,-0.028313043478260826,-0.2423647042999622,2.835228627591982,-0.01227204201829507,0.024994086956521718,0.4180376811594202,0.0168675803130435,-1.1911243021623212,-1.62208253968254,-0.03061713460317454,-0.0013123487693625065,-0.010488888888888893,-1.3223999999999998,0.3614889234047019,-7.918048121529225,0.013873542334409633,-0.03155193650793646,-0.4356555555555555,-0.013799889600000023,-2.92156440058035,-1.069921367521368,-0.04043519076923077,0.002297956017434525,-0.05877948717948718,-1.0866735042735043,0.30811542363935707,-5.234706218518668,0.01581589981311841,-0.0375882735042735,-0.4386731244064577,-0.02308532959999998,0.29314793273152934,-1.078821052631579,-0.014828928421052701,-0.0015122007449916213,-0.10170526315789473,-0.9916631578947368,0.042348120938650355,-4.902380625448083,-0.026935053159524852,-0.014526947368421082,-0.12723157894736847,-0.011791631915789424,-6.334377136649584,-1.4428444444444446,-0.04729642666666667,0.00035383617881193076,0.033511111111111117,-0.7015111111111112,-0.25202194595484834,-6.797232887121562,-0.005885963888550715,-0.04282666666666667,-0.7187851851851851,-0.026616417599999984,-3.630815497529861,1.0401,0.0019808899999999565,-0.0014029468111744637,0.08714999999999998,0.9511000000000001,-0.12072824560030808,4.696323604224545,0.012835947715712151,0.004530499999999958,-0.0010583333333332944,0.0015524174000000235,5.395542758387352,,,0.44473304473304487,1.2878787878787878,0.6363636363636364,0.045454545454545456,0.6515151515151515,-0.015151515151515152,0.8444918450393336,0.024597226947565852,0.03502146937180827,1.1628906735560849,0.2609685340998252,0.21183464993361187,2.0073825185954184,0.4728031840334371,2.028505458572931,1.4054992149656238,0.18565826888066408,0.2313157535705798,0.20603222115606393,0.6230062436073077,9.262310378080008,1536.0,364.29470000000003,197.0,652.0,8522.817089392234,6247.301197599081,76.358031382433,363.7558,475.375,428.11701199999993,12149.477144062137,1582.0,361.8289,245.0,586.0,7913.02225826595,6176.290483340801,96.853104936,368.4361,213.9375,432.28916799999996,15222.923988312014,2577.0,629.2479,366.0,976.0,14047.779419592545,10114.465730625312,143.89157080424502,635.1267,545.25,744.9586239999999,22578.188901112615,2827.0,791.9289,405.0,923.0,18460.38830757344,10836.3485119232,163.62073935133898,798.6058999999999,608.625,952.4531599999999,25302.89305552535,2767.0,892.318,388.0,858.0,21370.29201547569,10310.631459279999,161.43364859864099,894.5108,653.125,1068.5638639999997,24766.544203146812,2398.0,801.7620000000001,354.0,748.0,19766.441153394288,8873.1329810384,148.46696990403703,805.3258,535.1944444444445,969.50494,22377.99538676254,2010.0,638.948,307.0,598.0,15428.724307908293,7459.142668537599,126.788578527943,644.1381,402.45833333333337,776.483448,18967.470938021685,1777.0,613.5289999999999,275.0,554.0,15029.07106639284,6517.8399257136,110.779489287641,616.5003,384.5,745.311004,16618.0373041772,1674.0,546.268,243.0,590.0,13574.573812766985,6314.6877157488,96.78556919573501,548.3755,403.75,660.993868,14797.631795770554,403.1200000000001,15.761897999999992,1.48844297973607,38.58,271.11999999999995,159.28314973382163,1952.7210681449142,11.807143914165778,13.689999999999996,206.255,9.505686479999998,2169.7690705310156,3.0128000000000186,-0.827387880000002,-0.9857132165743591,8.865199999999998,73.41280000000002,-1.4600625656002548,15.439866403666132,0.01530958577603403,-0.6597320000000005,-21.635299999999997,-0.6088886287999972,70.33973819476293,128.64640000000003,9.085513559999995,0.20030619297907168,-5.2724,127.6864,63.708542845111594,627.3465802754972,0.4877079793542522,7.770684,107.49693333333329,5.285947505600001,51.296238146914455,68.10400000000001,3.177070599999994,0.09182763335478596,-10.274,-3.255999999999995,-27.871940994495652,326.0512921730779,-1.411284832103933,2.8743199999999978,48.07433333333332,1.9397717360000026,-136.97929474866694,-204.38240000000005,-3.857758959999992,-0.16535594493967581,-1.3216000000000006,-166.62239999999997,45.54760434899244,-997.6740633126823,1.7480663341356137,-3.9755439999999935,-54.892599999999995,-1.738786089600003,-368.1171144731241,-125.18080000000003,-4.7309173200000005,0.26886085403983945,-6.8772,-127.14080000000001,36.049504565804774,-612.4606275666841,1.850460278134854,-4.397828,-51.324755555555555,-2.7009835631999977,34.29830812958893,-102.488,-1.4087482000000067,-0.14365907077420403,-9.661999999999999,-94.208,4.023071489171784,-465.7261594175678,-2.558830050154861,-1.3800600000000027,-12.087000000000005,-1.1202050319999952,-601.7658279817105,-129.85600000000002,-4.2566784,0.031845256093073766,3.0160000000000005,-63.13600000000001,-22.68197513593635,-611.7509598409406,-0.5297367499695643,-3.8544000000000005,-64.69066666666666,-2.3954775839999987,-326.7733947776875,83.208,0.15847119999999654,-0.1122357448939571,6.971999999999999,76.08800000000001,-9.658259648024647,375.7058883379636,1.026875817256972,0.36243999999999665,-0.08466666666666356,0.12419339200000187,431.6434206709881,0.7212955800152984,0.5185230080551054,0.4334029186973173,0.27227467678729306,0.2840327204930309,0.13507448663979338,0.17772780343675346,0.0727791697678031,0.11146175325431494,0.037474721324611555,0.07036281917043426,0.019259908373213157,0.04633314962453527,0.010016967778905034,0.029395972359062154,0.005429875020846241,9.014456073184038,5.663836650561361,4.124813766860388,2.162047574775316,0.5318121375096718,-0.5003280257658402,4.115155702383394,0.9774835701258511,7.014446732411183,0.9880027729559424,17.43121089087826,10.924468385080297,19.006149049237415,11.675823592025475,2.0218355752757207,0.5268386655832322,4.00743005824523,2.211634342238197,8.007934435040829,1.1211017746600447,4.030892161403342,2.4076919698217396,20.926763135936223,13.301650988509095,0.3140008809236011,0.6726522853301297,0.812018301268747,0.8923223870976305,0.8990143942500374,0.8990143942500374,1.2723097297682988,1348.5075844478347,0.0,2.0,3.0,0.0,10.0,1.0,4.0,1.0,0.0,3.7669850282687953,1.6232251891746028,0.7901955000865364,0.31019550008653685,0.2701955000865368,0.2701955000865368,-69.92419711066015,2123.581975892423,92.91013475338576,42.47163951784846,86.18274204467383,,17.0,939.0,35.53170203350297,27.46272476961181,18.142435252567292,22.07657868955578,6.923737199690624,18.19910120538483,30.33183534230805,0.0,15.514152220608405,8.834301874106695,14.676190476190481,42.5,21.0,1.5,21.5,0.0,0.055266955266955124,-0.5,0.29654070660522225,0.09591666666666698,-0.20062403993855527,0.03796330653473512,0.2528298668262752,0.0,0.7384761904761892,0.9643578643578637,0.4419354838709669,0.6425595238095222,0.9263945578231286,27.868230886298008,0.8117084892696731,1.155708489269673,38.3753922273508,8.611961625294231,6.990543447809191,66.24362311364881,15.602505073103423,0.4611701331737248,0.15736534717715764,0.06813757300454248,0.3066190785204412,0.22727272727272727,0.5506141765790795,-1.6927432966829332,-0.09645377588877124,-0.03385486593365866,-0.07359753463838839,0.4493858234209207,1.3815387844647193,0.03805102104015937,0.027630775689294385,0.051168103128322935,-7.652775072601883,0.6008791801308285,0.6257557977220621,1.7311146471944714,0.9705390416385458,0.36487359214328274,0.9025991379597574,0.5956911005452292,1.020967388432987,0.6068964400402445,0.6440724364372185,0.6752630802184285,0.8688905383334684,0.5845416983483881,0.46610656643656573,0.9292356907015322,1.2629528019990564,0.5188423551410546,0.7510396583036154,0.581793873098521,0.9872050405879169,0.4593290025525069,0.4695047532007017,0.5005598891566343,0.9066501359644996,0.8069988869427162,0.7373998552933047,1.01834103062223,1.1817341717943517,0.8635835888488334,0.9509804392506247,0.8027360669088717,1.042915729093429,0.7333831104900437,0.7043247494980944,0.7613784057173434,1.000447421452876,1.183683931997089,1.1175755046195015,1.0723658812743018,0.8820056448361269,1.2428895773909057,0.8876608068677856,1.1839614126985722,0.8979329216817482,1.1331892703514328,1.063055037049607,1.0958050823022258,1.0112598256034733,1.1204591366825933,1.0384981099389987,0.8831001666094958,0.8955749624489905,1.1770736394519223,0.812500405741954,1.1190105507915373,0.8771176145777662,1.0529678535083942,0.954897999767619,1.0231230028666478,0.9779821962736215,1.0274333879946937,0.7317405556107521,1.1562430152877616,0.9826471310469018,1.0244638225839016,0.669575744561757,1.0047569993300949,1.027505393651381,0.748733036023221,0.6550280687861403,0.7746388963809508,1.1170967083434837,1.174326365460519,1.032034939221434,0.9937265203019651,0.8537814642013709,1.1004557227631884,0.8924543188929484,1.1612608302788523,0.9633910513919904,1.0473595893190488,1.0633548801360893,1.0368738308688206,1.0740428384850675,0.9275929003770587,1.0078841710560493,0.886493801185202,0.8811236391912908,0.8709012614340514,1.031489891321554,0.9400855160069989,0.938256926787482,1.0036655861943027,1.0258610734015876,0.98390113588093,0.914704944787209,9.5,0.2595673910825426,5.333333333333335,2.6875,2.2900000000000005,1.306111111111111,0.7560090702947846,0.5755385487528344,0.37414965986394555,0.30687500000000006,7378.129004740725,7908.31182398235,3317.145245295149,3136.786839296831,17.51991192891825,0.45894517981290206,9.479232798394657,0.8482415509286061,1.0,0.22727272727272727,1.876871161505929,4.020631000600122,4.853660689688188,5.3336606896881875,5.3736606896881876,5.3736606896881876,0.2638888888888889,0.008652246369418089,0.09876543209876547,0.047149122807017545,0.044038461538461554,0.02839371980676329,0.01938484795627653,0.017440562083419223,0.011692176870748298,0.009589843750000002,0.5489953021697589,26.074074074074073,10.545953360768175,5.713152152350724,183.22662190127969,1.0,4.433453928958423,224.01870557512729,,167.22677583399252,164.2648976981362,166.09565887954125,166.93703637635562,246.9726307131495,166.11075666669197,167.5428163260708,208.49502615999634,0.007050665188885228,-0.04952161242088911,-0.6247589874142357,0.21678061758463177,0.2554490944621056,-0.008647603447188396,0.007459289470057005,0.001223242941229887,-0.04546301528453497,-0.09895837859619641,-0.06042943199584451,0.030583090376398867,0.17928472521077168,0.32383289760684886,0.07560354721100579,-0.07677611383903869,0.2645836994108501,0.2247024639136645,0.18048757950156094,0.02320571755710579,0.3188862533958192,0.29280034704867436,0.3124059936502725,0.013281649051914316,0.07345315236805094,0.08763760833106896,0.02682337081358751,-0.11578425406270425,-0.005221496657985547,-0.07607983164100482,0.07259686685015003,-0.05196871532823245,0.09128592752564545,0.10134001143230957,0.08872363057909051,-0.027448181429529112,-0.20119102744623682,-0.09712388255264232,-0.04408461685227645,-0.013593686999596802,-0.24387724992623194,0.11347368632802236,-0.20274396202042758,0.0587506277354876,-0.11523716766959995,-0.10561090774903774,-0.07258754866907849,-0.06732431668097622,-0.13270507138338059,-0.12826878707510606,0.07719328347539378,-0.07617870292831413,-0.20040452645940995,0.0967194031993495,-0.1340361996373512,0.06697597627375014,-0.13728368701341678,-0.10634242185800533,-0.12142905011948166,0.0067552795528555065,-0.13380892198744526,-0.047040427558447305,-0.05079807441665531,-0.1318108646421653,-0.1828827009985868,0.013293346160412566,-0.12552690462097965,-0.11406252585440736,-0.053056783668448085,-0.03084327142308513,-0.06202409442284397,-0.14596892412839466,-0.17895967012855282,-0.150034046238171,0.011886118031698896,0.04343067795633893,-0.12937280744893614,-0.07911130159593237,-0.17404515673042173,-0.024925434683187656,-0.15641587533479434,-0.17424672982114012,-0.1400026061032048,-0.08366824716146586,0.12900625124032544,0.00628379272597741,-0.04712799987216284,0.1129471228615863,0.17540203599881973,-0.03789736886860201,0.1202507537004774,0.054356700523960126,0.01654674945215471,-0.00025655943694293334,0.008165730077813505,0.12433449328012774,10.112355254324541,23.65964531877249,8.863100152198529,20.405999718974282,41.5113717065303,49.358346176857154,50.282306176857155,50.32262617685715,50.32262617685715,66.94068013290673,46.381474093865585,6.126722873061915,7.633419867829133,6.799063298150109,20.559206039041154,15610.993230689775,14502.002465704223,1787.2530041928767,181.0,54.0,71.0,88.0,108.0,121.0,133.0,149.0,166.0,463.1155189040004,36.0,5.198497031265826,6.066108090103747,6.9726062513017535,7.861341795599989,8.768263145371286,9.664024052354822,10.571342565808699,11.470132779914321,12.377817633758383,0.7933333333333334,1.0560800000000001,1.1485765583510208,0.7716070482058113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6803770179640719,1.0376470588235296,1.0537072104879825,0.6864968410339916,8.0,2.0,0.0,2.0,0.0,2.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,19.25761787295373,11.400240982688137,0.0,5.601050810983688,5.890723922025908,0.0,9.184952231746642,13.171245143024459,5.098681808301038,36.2878872818381,41.310277303401826,17.997347688838982,0.0,380.3406161797887,-1169.274341054181,-66.62612427149111,-23.385486821083617,-50.838014828442645,310.41641906912855,954.3076348382422,26.284010481894654,19.08615269676484,35.34472721623119,0.47058823529411764,0.7265865356495689,0.13748836411839885,123.02469920916916,0.13851493234308998,0.0,0.2734134643504313,9.0,0.16666666666666666,0.3325512022978822,0.7123907600417803,0.8599901426407399,0.9450383763058076,0.95212572911123,0.95212572911123,4.754100000000002,,2.7619047619047623,3.26083600994223,2.783098273952314,2.895718743511223,-13.87654118335628,2.955622282157422,2.6687681802120076,-4.740590458165219,109.74550000000004,31.502489459646682,0.0,10.197363616602075,0.0,31.66666455695637,5.316788604006331,76.2224563056115,0.0,11.126902983393991,4.290459441148391,0.0,5.666426688112432,2.3978952727983707,7.234898420314831,4.59511985013459,8.89192414015454,6.6052979209482015,10.596459717781787,39.66666666666667,11.949426227881384,6.819340065625134,0.0,10.247874307573046,0.0,0.8824022822449056,0.10697659525540426,0.0,52.804,0.0,12.036191879099562,0.0,0.0,0.0,0.0,0.0,0.0,57.42882791755104,10.94237492308432,23.57631889571175,0.0,21.480189528886257,12.145807216896262,5.817220841045895,24.798734236339538,62.1597756058714,0.0,22.09614733950103,0.0,38.580352410290566,34.018850898203596,41.6154671624447,448.0374111502546,,334.2861635005969,328.33216897142745,332.02264513641865,333.6985746470439,498.6186111741612,332.0423847102229,334.92388912606816,418.42659488307305,41.6154671624447,448.03741115025457,,331.81928292588594,325.42891822186937,329.4796801936781,331.10536821538244,507.82180260965526,329.4010323064192,332.54323012748705,421.73064277815797,4.935092320963509,347.4894845407546,,259.88695626660154,255.1163059638985,257.6874759568001,259.59215192972874,383.6046263587931,258.09896490033395,260.3152886924487,325.982930949447,1.2610747624983243,13.576891246977413,,10.129883742442331,9.949459665800832,10.06129227686117,10.112078019607392,15.10965488406549,10.06189044576433,10.149208761396006,12.679593784335546,2.4789233042408285,224.01870557512729,,167.22677583399252,164.2648976981362,166.09565887954125,166.93703637635562,246.9726307131495,166.11075666669197,167.5428163260708,208.49502615999634,51.88235294117648,0.0,1.1466698953227166,0.0,52.705525173288216,0.0,9.894138717785966,52.68536052439913,-0.6420033757841992,2.6806161875141856,0.0,0.0,0.0,0.0,-8.229453458811381,0.0,0.0,34.32484205169958,501.89476121707776,93.84355807529646,201.0315500300061,242.6830344844094,266.6830344844094,268.6830344844094,268.6830344844094,1140.0,147.9501333454788,188.8622740318394,83.27848145139313,101.39000000000001,101.39000000000001,0.8888888888888888,9.424393511663185,6.169925001442312,4.6311654357647996,5.664704589397481,,5.657731340160483,5.657067725273743,5.656244835881974,5.6584535861136995,5.631414119080329,5.657568235117671,5.6574233833651455,5.656119689564469,0.14033834653832725,0.17165771483022668,,0.17144640424728735,0.17142629470526494,0.17140135866309014,0.17146829048829393,0.1706489126994039,0.17144146167023244,0.17143707222318622,0.17139756635043846,2.726731018884004,2.9281772149726835,,2.9269454570431974,2.92682815670341,2.926682683944875,2.927073105355575,2.9222830547650465,2.9269166279270546,2.9268910244166997,2.926660558364104,294.86000000000075,395.58099824482457,221.17851716220744,,221.7060646105807,221.7070063057662,221.94399112711764,221.5889906450935,225.93777544248172,221.69705060831382,221.76134813020295,222.67968498618092,11.987302977115895,6.70237930794568,,6.718365594260021,6.718394130477764,6.725575488700534,6.714817898336166,6.846599255832779,6.718092442676176,6.720040852430392,6.747869242005482,7.174278034319214,6.59289261388435,,6.595274939752497,6.595279187237504,6.596347526293487,6.59474674090696,6.614182099933961,6.595234281480334,6.595524263686207,6.59965681713873,62.953399480861265,12.036191879099562,20.008189240469143,-1.7817737694343059,-1.3707201086484435,11.632516501191507,-5.678670619793234,1.2008673962545244,0.0,362.09913401857017,262.7229564170971,-807.6844772192171,-46.02246407190111,-16.153689544384342,-35.11671640083552,214.42232532877665,659.1947125562702,18.15586515492501,13.183894251125407,24.414618983565568,3581.0,57.0,3.6127354677020773,1.0433855397071357,0.3520620726159658,0.05302720193100571,1.6864292172461892,0.1983974725532494,0.7803935893658893,0.0362172553787189,0.0,0.0,0.0,0.0,0.11785113019775792,0.020412414523193152,0.3491891690650783,0.08697784479192508,0.6637998474195632,0.12284173060325176,23.802754140504845,17.11125926581848,15.602505073103423,9.80188836434255,15.337766906623669,7.294022278548842,12.618674044009495,5.16732105351402,9.808634286379714,3.2977754765658167,7.599184470406899,2.080070104307021,5.606311104568768,1.212053101247509,3.9096643237552664,0.7221733777725501,7.927151811275423,2.0651932063709415,11.273797287300741,2.453722463396927,16.043175640992963,2.7532631560012417,102.72411636671474,54.288075470468065,34.431603303034876,31.221713132532244,31.07595888494125,31.07595888494125,180.0,215.0,56.81148099999999,27.556518999999998,0.46,240.11,11.875,7.020833333333335,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,22.0,50.0,0.0,0.0,53.0,22.0,1.0,10.0,43.0,23.0,36.0,30.0,0.0,0.0,0.0,22.0,0.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,7.0,2.0,2.0,33.0,11.0,0.0,3.0,4.0,0.0,4.0,6.0,0.0,0.0,4.0,2.0,4.0,3.8918202981106265,8.29164881119857,4.566948973167894,5.1597734320999695,5.777458806047403,6.358816661648259,6.742364582848164,7.143222579985179,7.618043766802784,8.008019847716765 +26248,CC(=O)Oc1cccc2c1C(=O)c1c(OC(C)=O)cc(C(=O)O)cc1C2=O,0,30.974358974358974,7.046923076923075,4.0,13.23076923076923,156.71063785694844,123.10141217948724,1.6274381245689233,7.084520512820509,9.713675213675213,8.479617948717946,260.28082774675096,30.195121951219512,6.6939024390243915,4.634146341463414,11.658536585365853,141.75752076580605,117.36495485365859,1.9308842779512199,6.842573170731708,4.3739837398373975,8.082286926829266,302.8837210901623,28.90909090909091,6.731666666666666,4.484848484848484,10.787878787878787,147.15762025488326,112.4391496212121,1.7392379196832424,6.845209090909091,5.195286195286195,8.14990103030303,273.27045076244764,27.358024691358025,6.962098765432101,4.234567901234568,10.074074074074074,150.47334030980556,104.35163724691355,1.6454174104900985,7.053858024691357,4.991083676268862,8.415081135802469,263.5802640252918,29.214285714285715,7.027738095238096,4.035714285714286,11.107142857142858,149.23762298720652,112.47833191666669,1.6239510063297382,7.120335714285713,5.7142857142857135,8.451511380952379,263.963416841647,27.685393258426966,7.064382022471912,3.539325842696629,10.404494382022472,151.55199787123198,105.57250821348318,1.5374437534123373,7.1371292134831466,6.2665418227215985,8.503781438202244,246.35252560272292,25.32967032967033,6.8832967032967005,3.076923076923077,8.824175824175825,153.66254331899665,95.99722389010992,1.4088317856477255,6.951093406593409,6.6199633699633695,8.352096439560437,222.0086458032755,22.11627906976744,6.982093023255816,2.616279069767442,7.011627906976744,158.07079787945867,81.15191295348836,1.237906398690651,7.017181395348836,7.406330749354005,8.491334790697675,191.0524798234207,17.52857142857143,6.738714285714287,2.3,4.642857142857143,162.94634574770703,62.02313304285712,1.1004919862234428,6.763217142857143,5.155555555555555,8.322597885714286,163.76955553986605,7.239973701512165,0.2200920447074293,0.03873320145384535,0.7784352399737016,4.983563445101906,1.3750550481087929,33.92147778829717,0.2273110811959737,0.19456857330703473,3.9043392504930976,0.15713267587113744,42.456400901664324,-0.016709161174451443,-0.01495133176183831,-0.0226736327178737,0.28222767434774937,1.6243164798511889,-0.0024903062882857454,0.0005227670499297878,0.0018817245347656417,-0.012199905389586436,-0.3395070637096904,-0.011696293131925422,1.3008520934962162,1.9325204709820096,0.04704859243320783,0.007302939537112661,0.14619568465722307,0.8470503855119238,0.10150028032434988,9.010770444026063,0.020069031490748207,0.04406837307991153,0.5845237383698921,0.03010321845675689,7.185242493888436,-1.3545669272164993,-0.07514744198504884,-0.00405884000617382,0.07721528234348744,-1.1431076046460662,0.19683462791257367,-5.9783758832639275,0.03549694968122103,-0.06684831373121973,-0.8640311361109081,-0.051532660676455504,4.326131347929934,-0.11909458063304172,-0.021374095989480642,-0.0017878089111797988,-0.09314830468676627,-0.20120691274537433,-0.15145163313167198,-0.5135151784070542,-0.021519521489682423,-0.016839727153188738,-0.5372248833787291,-0.01781175279421431,-1.5522629807269561,-0.47304774357496876,0.005099542731349086,0.0025147646112868814,-0.15642429212005707,-0.0633675361419528,-0.09909413118563684,-2.3260302636644945,-0.01942960865623468,0.0031874624175401716,-0.2823283026394521,0.004935832339752842,-4.825946431896206,0.560251714097868,0.0315816661970508,-0.0013808558625998584,-0.26955950032873116,0.09307786230863152,-0.2844710079307276,2.3879014782567887,-0.04723610274201228,0.029316098431483036,0.5590072320841553,0.019677908518831586,-5.866968090607108,-1.394416158280201,0.009585951714753124,0.0013987351781886016,-0.15201902053422625,-1.0369325566105532,-0.26117894752965315,-6.814397707199974,-0.05146151194311623,0.004774569209363481,0.7159648639970642,0.010582389125881091,-13.089565244696088,-1.4696440311824934,-0.04351695313233773,-0.001288398696952065,-0.04253780407626562,-1.468911430449892,0.020473923642492786,-6.770982988663479,0.0015874568773796948,-0.040412089790551296,-0.9371841833380293,-0.02799216744622897,-2.7840394517186375,,,0.45061728395061734,1.3888888888888888,0.7592592592592593,0.037037037037037035,0.6296296296296297,0.12962962962962962,0.728212507903622,0.026404759415461367,0.03596031497101692,1.2643405229307396,0.28896178300533615,0.18145618211153935,1.992553030834362,0.4704179651168755,2.012455777972943,1.4774211980591119,0.0,0.5350345799138313,0.0,0.5350345799138313,9.437261983179495,1208.0,274.8299999999999,156.0,516.0,6111.714876420989,4800.955075000003,63.47008685818801,276.29629999999986,378.8333333333333,330.7050999999999,10150.952282123288,1238.0,274.45000000000005,190.0,478.0,5812.058351398048,4811.963149000002,79.16625539600001,280.5455,179.33333333333331,331.3737639999999,12418.232564696653,1908.0,444.2899999999999,296.0,712.0,9712.402936822295,7420.983874999998,114.789702699094,451.7838,342.88888888888886,537.893468,18035.849750321544,2216.0,563.9300000000002,343.0,816.0,12188.340565094251,8452.482616999998,133.27881024969798,571.3625,404.2777777777778,681.621572,21350.001386048636,2454.0,590.33,339.0,933.0,12535.960330925349,9448.179881000002,136.411884531698,598.1081999999999,479.99999999999994,709.9269559999998,22172.92701469835,2464.0,628.7300000000001,315.0,926.0,13488.127810539645,9395.953231000003,136.832494053698,635.2045,557.7222222222223,756.8365479999998,21925.37477864234,2305.0,626.3799999999998,280.0,803.0,13983.291442028696,8735.747374000002,128.203692493943,632.5495000000002,602.4166666666666,760.0407759999998,20202.78676809807,1902.0,600.4600000000002,225.0,603.0,13594.088617633444,6979.064514,106.459950287396,603.4775999999999,636.9444444444445,730.2547920000001,16430.51326481418,1227.0,471.7100000000001,161.0,325.0,11406.244202339492,4341.619312999998,77.034439035641,473.4252,360.88888888888886,582.581852,11463.868887790622,282.3589743589744,8.583589743589743,1.5105948566999687,30.35897435897436,194.35897435897434,53.627146876242925,1322.9376337435895,8.865132166642974,7.588174358974355,152.2692307692308,6.12817435897436,1655.7996351649085,-0.6850756081525091,-0.6130046022353707,-0.9296189414328218,11.571334648257723,66.59697567389874,-0.10210255781971556,0.0214334490471213,0.0771507059253913,-0.5001961209730439,-13.919789612097308,-0.4795480184089423,53.334935833344865,127.54635108481264,3.105207100591717,0.48199400944943566,9.648915187376723,55.90532544378697,6.699018501407092,594.7108493057201,1.3245560783893817,2.908512623274161,38.57856673241288,1.9868124181459548,474.22600459663676,-109.71992110453644,-6.0869428007889566,-0.32876604050007946,6.254437869822483,-92.59171597633136,15.943604860918466,-484.2484465443781,2.8752529241789033,-5.414713412228798,-69.98652202498356,-4.174145514792896,350.4166391823246,-10.003944773175505,-1.795424063116374,-0.1501759485391031,-7.824457593688367,-16.901380670611445,-12.721937183060447,-43.135274986192556,-1.8076398051333236,-1.414537080867854,-45.12689020381325,-1.496187234714002,-130.3900903810643,-42.10124917817222,0.4538593030900686,0.22381405040453245,-13.92176199868508,-5.6397107166337985,-8.819377675521679,-207.01669346614,-1.7292351704048863,0.28368415516107526,-25.127218934911234,0.439289078238003,-429.5092324387623,50.98290598290599,2.8739316239316226,-0.1256578834965871,-24.529914529914535,8.470085470085468,-25.886861721696214,217.2990345213678,-4.2984853495231174,2.667764957264956,50.869658119658126,1.7906896752136743,-533.8940962452468,-119.91978961209729,0.8243918474687686,0.12029122532421974,-13.073635765943457,-89.17619986850757,-22.46138948755017,-586.0382028191977,-4.425690027107996,0.4106129520052594,61.57297830374752,0.9100854648257739,-1125.7026110438635,-102.87508218277453,-3.046186719263641,-0.09018790878664454,-2.977646285338593,-102.82380013149245,1.433174654974495,-473.96880920644355,0.11112198141657864,-2.828846285338591,-65.60289283366205,-1.9594517212360278,-194.88276162030462,0.7362203962437535,0.5256186286924122,0.43797534683295314,0.26584281307147956,0.28805361804250346,0.13317070734953623,0.16252203544347743,0.06596721047754935,0.10147089203352308,0.03395372362877875,0.0628639661958799,0.01738425770087338,0.04025094789223247,0.008886704233783986,0.025390369251650047,0.004565183509504388,8.034834538357714,5.671741148092149,3.561978876526926,2.1698555230893093,0.46835031611455813,-0.4640664159884876,3.289968963337715,0.971466112233925,6.0330909959201495,0.9950307756346036,13.648636567828076,10.932361999502968,16.01984185814875,11.683834787428514,2.0145024780130676,0.7402081827250546,3.5083664463102515,2.2194432812228757,7.012632819779346,1.3763892321298867,3.7212263053871086,2.415516162776149,20.918896491912353,14.69976887598521,0.2626900985023644,0.6035627491292865,0.7512298165141896,0.8214432055582802,0.839435519771814,0.8574278339853477,1.893617858168635,1047.9154457273426,0.0,3.0,2.0,0.0,9.0,0.0,5.0,0.0,0.0,3.7879531477969746,1.8448291513352362,1.0030619353529175,0.6028147437006908,0.5002506411365886,0.39768653857248637,33.77344255990141,1578.189082247084,90.91974563284437,40.466386724284206,89.21628207667936,,11.0,472.0,29.474405756585426,29.079213315199816,39.31628112505279,0.0,25.980208536304467,18.19910120538483,0.0,0.0,0.0,9.473725907600098,12.166666666666668,37.5,20.5,1.0,17.0,0.0,0.04938271604938267,3.5,0.2939282939282938,0.10216189039718448,-0.1917664035311093,0.022398589065255714,0.22798135818908088,0.0,0.7341880341880341,0.92716049382716,0.44025974025974035,0.6320261437908496,0.9047619047619043,19.661737713397795,0.7129285042174569,0.9709285042174569,34.13719411912997,7.801968141144076,4.8993169170115625,53.79893183252777,12.701285058155639,0.4860186418109191,0.2465753424657534,0.0,0.4931506849315068,0.10526315789473684,0.469800646885035,-1.3259432905195894,-0.11456859900148596,-0.0339985459107587,-0.10199563773227611,0.5301993531149656,1.4964097635068816,0.04802764795315701,0.038369481115561065,0.0575542216733416,-3.9607315951342654,0.5974059341029297,0.6845734403096211,1.4914394090317475,0.7174316084377058,0.32665229422742775,1.0000392029739902,0.6009253056786977,0.9735058341041188,0.6599353996295942,0.6431697254583052,0.7284779672533918,0.8128468985161783,0.4904030314037578,0.520849400927666,0.6787399032833117,0.9103194103194102,0.5954305588870233,0.9166837427595537,0.49631079630844976,0.8981148092637886,0.4997131624388681,0.49743541332326363,0.5611629537280292,0.7492443460042585,0.9885848434704226,1.276193447599828,1.1019635566482322,0.9349036536536535,1.0729160558975863,0.8450193231393697,0.9760868138753259,0.8054054783022814,1.259475182281182,1.0649004837305285,1.2923328423344318,0.753313832607542,0.7954666338020858,1.022701765017155,1.0731630770650458,1.192084942084942,0.8635224274406333,1.093471271895046,0.7923308477354877,1.0487759133399086,0.9914444786750316,1.0795197734450066,1.0714309952303402,0.8740192599972418,0.9072839843765941,0.9610185261015437,0.9499831331550885,1.2165293805040995,0.9094719990513179,1.0523403608371322,0.9077640921338429,1.0393425071886273,0.9503551622569764,1.1084455241758608,0.9790638200374204,0.9737979085352956,0.8562866483316899,0.8129235443729407,0.9714159392057852,1.3548503861003858,0.9303053147380325,1.1785581153572715,0.8630948300765544,1.1747417841595638,0.8022565572920582,0.8890312208069215,0.8367783747390002,1.0849770830757588,1.2331325657422345,1.0583743438548128,0.9784861671908283,1.0988666719044624,1.254930355280113,1.154726547058765,1.2380137271899072,1.1841904746088434,1.0757989489718822,0.9877530214413498,1.0340832739804353,1.2696289582162688,1.395791603964506,1.3217913046446919,1.0626109396208705,0.9387668918918918,1.432842065586129,0.9459475822775453,1.391034455726249,0.9719906168039034,1.3474466342365385,1.375242665896871,1.2750720756756933,1.143460622273679,6.5,0.06611570247933884,3.1111111111111125,2.8125,2.7244444444444453,1.875,1.0946938775510204,0.5815972222222222,0.2511967750062987,0.21375000000000005,6014.517705624492,6346.562803593738,2595.556511238683,2469.897287362259,12.269163373800433,0.46590050788495,6.552953926623385,0.8723103368624636,1.0,0.10526315789473684,1.497449071065274,3.4405730675270125,4.282340283509331,4.682587475161558,4.78515157772566,4.887715680289762,0.22413793103448276,0.008264462809917356,0.07235142118863053,0.057397959183673464,0.051404612159329136,0.03676470588235294,0.023797692990239577,0.01710580065359477,0.011961751190776132,0.01644230769230769,0.5196286447853043,21.702734839476815,8.788534342888047,4.451843043995244,151.86619568423666,1.0,4.223464336927882,127.35187768174609,,96.69830366958185,95.47056736358132,99.35274128174585,96.72358905213162,144.16262382418185,96.39816787130513,96.75012784524782,119.50874379985255,-0.002307903573042194,-0.06793217711123213,-0.585379774116831,0.3625576796308503,0.325934744835575,-0.0018110593402866553,1.5411093030567826e-05,0.008278190948127751,-0.06270234284102315,-0.08695634316787725,-0.0744357789815621,0.030639716647418925,0.266923686556814,0.21376780108408747,0.18854469196962392,0.18780712530712523,0.16996881746222112,0.07381543049054665,0.26563614062636026,0.08828883917650243,0.22649275949806336,0.1497113085898132,0.1915783479780117,0.16923814410294888,-0.1870955590534231,-0.3414364298579857,-0.10478968569149522,0.0991929429429429,-0.2293755496921724,0.14314672578621035,-0.17624161071562908,0.15616022542525207,-0.34357199929575055,-0.22130022026179857,-0.3279563616590912,0.10189585683322362,-0.01644958746302728,-0.09711435057951984,-0.04615701372658698,-0.11966095559845565,-0.040374104787033564,-0.11014223273459033,-0.015138349266853457,-0.09466991831836657,-0.08654906014351645,-0.1375968759146328,-0.1133548620327799,-0.03656134170021243,-0.06533832346326982,0.02317004568760294,0.06492529708094193,-0.20094708472517467,-0.012715306394711112,-0.07206557389969788,-0.06857101798987572,-0.08547585341641863,0.01638220583809424,-0.07231141674069319,0.03141187733479864,-0.11366828863034939,0.07738311452441492,0.14349299284775444,-0.03565044485788999,-0.3462837837837838,0.018676969468526195,-0.2068797233405164,0.07039497197497126,-0.20780378366723004,0.15067232047398219,0.14317588616654037,0.12523116792696382,-0.13818806978471693,-0.19259961648603208,0.043554285333192444,0.03611204665990082,-0.19528794783155246,-0.20807050377370076,-0.1899407212015769,-0.2008874067848225,-0.2263924471801235,0.024539262061756884,0.1833767042417335,0.06734683965135028,-0.3083060496581793,-0.20299024440869706,-0.1977216086578017,-0.03326341868454448,-0.05464527027027027,-0.29475122502826995,0.014889530183283914,-0.19960754749309456,0.006983631721900468,-0.20770101308591019,-0.24003656527021003,-0.17814351656039382,-0.06557408052950388,3.102671683933338,18.04375519083602,21.98626446080716,14.098532940413826,34.01399971205846,44.90260026147988,46.63907507169098,48.07548532810122,49.511895584511485,54.33630600526946,39.89037234759602,0.0,14.445933657673445,0.0,14.445933657673445,4911.3588781064645,3362.5585234850473,1790.418596064564,199.0,43.0,58.0,84.0,117.0,143.0,168.0,187.0,210.0,368.0532173440003,29.0,4.976733742420574,5.849324779946859,6.774223886357614,7.682021510826875,8.616676469901188,9.539140395148861,10.478160833848387,11.407909334449478,12.349033812749884,0.8119658119658121,1.0451282051282056,1.1068417041309415,0.7862386829167279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.708544695224935,1.029361488185017,1.0505723943451553,0.7171630681551299,5.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,14.580253302440804,11.49902366656781,5.783244946364939,5.783244946364939,0.0,19.178148736287287,4.794537184071822,0.0,0.0,12.13273413692322,18.19910120538483,24.974377382775238,16.690354475090988,262.70074563804934,-741.4342517465792,-64.0638887663391,-19.0111346601687,-57.0334039805061,296.47418819795075,836.7548305005047,26.855856866505263,21.455252064115502,32.182878096173255,0.45454545454545453,0.5607245092976177,0.16923372881893262,162.49186870039514,0.11881699477877956,84.69805591141437,0.43927549070238264,6.0,0.10344827586206896,0.2833179026037529,0.6509576613201711,0.8102203212135406,0.8859472337697595,0.9053523988484127,0.924757563927066,2.0107999999999997,,2.0,2.2857142857142856,1.3850734870264096,1.9941246327895499,-8.658354114713216,2.0697674418604652,1.9879584017515048,-3.1919558244642054,89.32630000000005,38.55293922279991,0.0,0.0,0.0,13.847474399381248,0.0,58.14909280079303,0.0,11.49902366656781,4.07753744390572,0.0,5.442417710521793,0.0,7.005789019253503,0.0,8.68050180902826,0.0,10.424332811684366,31.66666666666667,6.19326155307802,0.0,0.0,0.0,0.0,0.0,-1.4259050086083804,0.0,40.76000000000002,0.0,59.97778606948339,0.0,0.0,0.0,0.0,0.0,-4.198527003700163,43.166826461106716,9.473725907600098,0.0,11.49902366656781,34.58093315142613,9.589074368143644,0.0,56.048343410081685,30.33183534230805,0.0,0.0,0.0,30.66330863375239,27.633243113772465,33.08683268260598,254.70375536349218,,193.24845919101557,190.7718225578505,198.60288452741565,193.29946516850106,292.8147645967336,192.64301963580579,193.3529995125881,240.67257580498284,33.08683268260598,254.70375536349218,,191.3966073391637,188.65542044144846,197.32040907646527,191.45305347147368,296.9836017630771,190.72656830074985,191.51229728874407,242.2094434241693,5.123941113395299,176.02478673732526,,136.83594759181045,135.36985545310856,140.01575633475014,136.8661726529239,195.71124727143152,136.47727297130953,136.89789732342877,164.61356194369222,1.2254382475039252,9.43347242087008,,7.157350340407984,7.065623057698167,7.355662389904284,7.159239450685225,10.844991281360503,7.134926653177992,7.161222204169929,8.913799103888254,2.56197055669765,127.35187768174609,,96.69830366958185,95.47056736358132,99.35274128174585,96.72358905213162,144.16262382418185,96.39816787130513,96.75012784524782,119.50874379985255,40.14509803921567,0.0,2.2213153137747295,0.0,0.0,0.0,9.241438512018417,40.97232337946106,0.0,0.0,9.990630563953975,0.0,0.0,0.0,0.0,0.0,0.0,27.969359658050063,313.54309038671886,58.40051377154568,134.18234963355349,167.0112710568639,182.62091153130075,186.62091153130075,190.62091153130072,1265.0,133.67322476564973,245.63184344928118,62.63057879439364,124.04000000000002,124.04000000000002,0.8333333333333334,9.158997734266007,5.857980995127572,4.321070556286262,5.103610429002688,,5.105384931073025,5.1072713650349435,5.1012654128342945,5.1053459213030985,5.039522771838653,5.105847524149758,5.105304971653447,5.070777335613587,0.16003965023282452,0.18902260848158103,,0.1890883307804824,0.18915819870499792,0.1889357560308998,0.18908688597418882,0.18664899154957976,0.18910546385739846,0.18908536932049802,0.18780656798568843,2.4567549585206496,2.6231999895336924,,2.6235476245409814,2.6239170551628836,2.622740402127434,2.6235399836050894,2.6105631624831056,2.6236382292900315,2.623531962637556,2.616745899494812,245.64999999999992,246.69466518324055,166.9868021197631,,165.4894433620823,165.22341309758087,166.05455677639122,165.4948923125994,173.41797855687108,165.42467110046843,165.50061004690335,169.8514229959767,9.13683945123113,6.184696374806041,,6.129238643040086,6.119385670280773,6.150168769495971,6.1294404560222,6.422888094698929,6.12683967038772,6.129652223959384,6.290793444295433,6.5014031715985245,6.111166553081089,,6.102159179461138,6.100550349827294,6.105568162650976,6.102192105191635,6.148956514547637,6.101767704697081,6.102226653904616,6.1281758455386655,9.990630563953975,59.97778606948339,9.241438512018417,-0.966751464474678,-4.657680547833865,6.19326155307802,0.0,2.2213153137747295,0.0,319.6315685445696,146.89567206082407,-414.59144866413743,-35.822920762194514,-10.630549965747116,-31.891649897241347,165.78093456967088,467.892326982073,15.01712198643716,11.997239153386484,17.995858730079725,1652.0,49.0,2.5291178429189407,0.7848943165698941,0.0,0.0,0.6539345201866746,0.13573999056347663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16063397433656976,0.06051459454956774,0.4314077382637698,0.12005731643988293,19.877950698581344,14.19170297469513,12.70128505815564,7.709441579072908,12.386305575827649,5.726340416030058,9.42627805572169,3.826098207697862,8.523554930815939,2.852112784817415,7.355084044917948,2.0339581510021856,5.7558855485892435,1.27079870543111,4.265582034277208,0.7669508295967371,5.067440477956972,1.4675212420233974,8.700446073667324,2.137883813772237,15.27709760683108,3.015785118638596,93.90152480529774,58.48339133941528,35.72726837213391,32.146470830256895,29.78772051927887,27.428970208300846,144.0,173.0,46.147515999999996,19.850484,0.358974358974359,139.08,11.083333333333332,5.833333333333331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,12.0,12.0,39.0,0.0,0.0,41.0,12.0,5.0,11.0,30.0,17.0,29.0,24.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.0,1.0,0.0,27.0,8.0,0.0,0.0,8.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,2.0,3.713572066704308,7.981775991622176,4.330733340286331,4.912654885736052,5.5626028611934215,6.169610732491456,6.567287571085435,7.0016439944390845,7.315509431893773,7.718504923340793 +6321416,CO/N=C(\C(=O)N[C@@H]1C(=O)N2C(C(=O)OC(C)OC(C)=O)=C(COC(N)=O)CS[C@H]12)c1ccco1,0,32.175438596491226,6.976021052631579,3.508771929824561,11.306042884990253,165.1031295227821,127.71830936842106,1.4954653316961053,6.991031578947369,7.416726830794406,8.450597912280701,226.10740546954398,30.796610169491526,6.867491525423729,4.1525423728813555,9.734463276836157,150.4107296621187,118.81408662711867,1.7252782845762713,6.980916949152542,3.94967566436493,8.269125830508473,265.539543907604,27.285714285714285,6.90344693877551,3.7448979591836733,8.112244897959183,158.9746508085181,103.56222043877553,1.4574122201651838,6.965005102040816,4.4298941798941796,8.397841081632652,218.8252649905507,25.675675675675677,6.952780180180182,3.6216216216216215,7.165165165165165,160.61898662170339,96.0865714234234,1.4351648947202074,7.006571171171168,4.05641752863975,8.453495351351354,214.90351807423656,27.710743801652892,7.016528925619835,3.4545454545454546,7.8209366391184565,159.16759756877386,104.62144647933886,1.4170672961387774,7.074761983471073,4.749489847974697,8.506230479338843,216.64371277559326,25.762962962962963,7.074429629629629,3.140740740740741,6.758024691358024,162.34766398232844,96.25144143703703,1.2915997708714155,7.109898518518518,5.094467306812987,8.590739362962964,199.04626018799195,23.68840579710145,6.853299999999999,3.072463768115942,6.028985507246377,163.25257590587563,87.93716813768114,1.3029780205354065,6.895959420289856,4.360440150295224,8.380553347826085,193.5871906017544,23.041095890410958,6.730034246575342,2.856164383561644,6.0662100456621,161.69930395025224,85.14326543835615,1.2793896488286303,6.777481506849314,4.458587011669203,8.286838178082192,183.9059814102009,20.676056338028168,6.536753521126761,2.704225352112676,5.206572769953052,163.92484039102527,75.91067533802816,1.227943121897676,6.586549295774647,4.270974613110763,8.12148563380282,173.2159917398697,10.39766081871345,0.22331732840874108,0.043518207980209056,0.6722068328716528,5.38777743579221,1.5106571265351205,47.51402968975069,0.25870883302361647,0.19997845490920282,2.9365865871571333,0.15043691228070172,44.485868581449985,0.4500941619585683,-0.013627527635621892,-0.026469538031338034,0.2522653645711067,1.7846876251652695,-0.2772552193538526,2.129015058688206,-0.01912479498701646,-0.0087257341241894,-0.17291352432987595,-0.014042152542372885,-1.2612062803454893,0.587301587301587,0.033141139188824185,0.00546892767730014,0.08522245463282271,0.6255694234193114,-0.07438925989596114,3.0252573784555388,0.007623000925628033,0.029802837607803993,0.48189470327254674,0.018364387755102025,3.9777868529355276,-1.0630630630630635,-0.043666719905501035,-0.0032449075940903698,-0.020713234009632858,-0.9505331739865442,0.21906313809860536,-4.75250066936188,0.030039863224725676,-0.0407537038423464,-0.49709847439633237,-0.03117942342342343,1.0431926346638942,-0.186409550045914,0.006335448160781862,0.0038828833565411956,-0.08383507703578212,-0.22732119878094842,-0.1556306766703266,-0.8880752739177179,-0.03449455031571452,0.006819892198235264,-0.19383000008014897,0.004899487603305767,-3.04864550376956,-0.3012345679012349,-0.03532023938989769,-0.0014306920634342497,-0.023473889401867228,-1.1333120542313115,-0.20172259162645517,-1.67403192288909,-0.013773913834345928,-0.030343744058000634,-0.3381506762143032,-0.018755674074074094,-3.6148198730535883,-0.15217391304347846,-0.030037211449676804,-0.00562463918415533,-0.03452567345136296,-0.6630832526693461,0.11911928300241308,-0.8682128205668622,0.009474365517443503,-0.026594549493489585,-0.3505314374042594,-0.017791297101449277,-0.446426297736,0.2617960426179603,0.02859363049536843,0.008111673807693027,-0.05204341061738702,0.44835971072705666,-0.06272209657295372,0.9798856815542832,-0.02060489997800366,0.024299735429658017,0.25204340642426104,0.02239368493150684,-3.3653397026097482,0.48669796557120504,0.008250178386415721,-0.004825140406788185,-0.10487300534508992,0.2916833444839895,-0.09557413552108031,2.571010591198156,0.0020913344744499735,0.009552975780196636,0.2867864222999898,-0.0002968309859154806,3.331514900356421,,,0.45047619047619053,1.0857142857142856,0.4,0.0,0.6857142857142857,-0.2857142857142857,1.0230211421484772,0.02231648147540913,0.029687910046837702,1.0702694053330102,0.22958684660719827,0.24564563084233818,2.0932905474814874,0.47523247744953645,1.9941054521653638,1.1776103751219305,0.22802155830933254,0.5292512052426795,0.0,0.8164950770434338,8.949222173754396,1834.0,397.63320000000004,200.0,644.4444444444445,9410.878382798579,7279.943634,85.241523906678,398.4888,422.7534293552812,481.68408099999994,12888.122111764007,1817.0,405.182,245.0,574.3333333333333,8874.233050065004,7010.031111000001,101.79141879000001,411.8741,233.03086419753086,487.8784239999999,15666.833090548638,2674.0,676.5378000000001,367.0,795.0,15579.515779234775,10149.097603000002,142.82639757618801,682.5705,434.12962962962956,822.9884259999999,21444.875969073968,2850.0,771.7586000000001,402.0,795.3333333333334,17828.707515009075,10665.609427999996,159.30330331394302,777.7293999999996,450.2623456790123,938.3379840000002,23854.290506240257,3353.0,849.0,418.0,946.3333333333333,19259.279305821638,12659.195024000002,171.46514283279205,856.0461999999999,574.6882716049383,1029.253888,26213.889245846785,3478.0,955.0479999999999,424.0,912.3333333333333,21916.93463761434,12993.944593999999,174.3659690676411,959.8362999999999,687.7530864197532,1159.749814,26871.24512537891,3269.0,945.7553999999999,424.0,832.0,22528.855475010838,12135.329202999998,179.81096683388608,951.6424000000001,601.7407407407409,1156.5163619999998,26715.032303042106,3364.0,982.5849999999999,417.0,885.6666666666666,23608.098376736827,12430.916753999998,186.79088872898,989.5122999999999,650.9537037037037,1209.8783740000001,26850.27328588933,2936.0,928.2190000000002,384.0,739.3333333333334,23277.327335525588,10779.315897999999,174.36792330946997,935.29,606.4783950617283,1153.2509600000003,24596.670827061498,592.6666666666666,12.729087719298242,2.4805378548719164,38.31578947368421,307.103313840156,86.10745621250187,2708.2996923157893,14.746403482346139,11.39877192982456,167.3854354679566,8.574903999999998,2535.694509142649,26.55555555555553,-0.8040241305016916,-1.561702743848944,14.883656509695296,105.2965698847509,-16.358057941877306,125.61188846260416,-1.1283629042339711,-0.5148183133271746,-10.20189793546268,-0.8284870000000002,-74.41117054038386,57.55555555555553,3.2478316405047702,0.5359549123754137,8.351800554016625,61.30580349509252,-7.290147469804192,296.4752230886428,0.7470540907115473,2.9206780855647914,47.22568092070958,1.7997099999999986,389.8231115876817,-118.00000000000004,-4.847005909510615,-0.360184742944031,-2.299168975069247,-105.50918231250641,24.316008328945195,-527.5275742991687,3.33442481794455,-4.523661126500451,-55.177930657992896,-3.4609160000000005,115.79438244769226,-22.555555555555593,0.7665892274546053,0.46982888614148466,-10.144044321329636,-27.50586505249476,-18.831311877109517,-107.45710814404387,-4.1738405882014575,0.825206955986467,-23.453430009698025,0.5928379999999978,-368.88610595611675,-40.66666666666671,-4.768232317636188,-0.1931434285636237,-3.1689750692520757,-152.99712732122705,-27.23254986957145,-225.99430959002717,-1.8594783676367004,-4.096405447830086,-45.65034128893094,-2.5320160000000027,-488.00068286223444,-21.00000000000003,-4.145135180055399,-0.7762002074134355,-4.7645429362880884,-91.50548886836977,16.438461054333004,-119.81336923822698,1.3074624414072034,-3.6700478301015624,-48.373338361787795,-2.4551990000000004,-61.606829087568,38.2222222222222,4.1746700523237905,1.184304375923182,-7.5983379501385055,65.46051776615028,-9.157426099651243,143.06330950692535,-3.0083153967885345,3.5477613727300703,36.798337337942115,3.269477999999999,-491.3395965810232,69.11111111111111,1.1715253308710323,-0.6851699377639223,-14.891966759002768,41.41903491672651,-13.571527243993403,365.08350395013815,0.2969694953718962,1.3565225607879223,40.72367196659855,-0.042149999999998244,473.0751158506118,0.7342269044254356,0.5616377261065889,0.4495442354252372,0.3004062366457075,0.2943829447267242,0.15784507439270787,0.17071112378353465,0.08842094737648437,0.11173640732110059,0.050226334037872744,0.06827789446591202,0.029043841525401366,0.04206143252254332,0.016154498630252666,0.02654670453036956,0.009062879452179923,16.002004501852795,5.736987390027887,3.566195320112582,2.227581385062492,0.5029971383826741,-0.5295042805066656,3.2712947313222425,0.9714657358891677,6.036174532683447,0.6549414759027252,14.557383733516025,10.33807563411279,32.06099955555504,11.750346272163746,2.916289794585973,0.7382733926115833,3.5128519540532643,2.27885283885527,7.01263201328054,0.6221971599935239,3.7254556099282463,2.4761195369595645,24.434229370607024,14.696476248286672,0.3075328180993376,0.6934022017684104,0.8940148041869549,0.8997787357645711,0.8997787357645711,0.8997787357645711,1.6794535411229066,1083.6634599982663,0.0,5.0,6.0,0.0,5.0,1.0,1.0,0.0,0.0,3.9607954115200243,1.6118298768583728,0.39060811414895547,0.3555203948507071,0.3555203948507071,0.3555203948507071,217.66299479177076,3748.339650719665,118.67948740159778,65.7603447494678,140.10807365722377,,15.0,849.0,47.55195047699704,23.97268592035911,35.10181183602995,0.0,11.823646930541102,38.12494975445994,6.06636706846161,0.0,10.47250133075687,29.198995859352312,15.76666666666667,38.0,14.0,0.0,24.0,0.0,0.04952380952380945,-10.0,0.27425163568988464,0.03932052353104998,-0.23493111215883467,0.05308270676691751,0.25072869735553355,0.0,0.7128654970760221,0.9723809523809521,0.43861386138613745,0.6735449735449721,0.9192982456140346,35.8057399751967,0.7810768516393196,1.0390768516393196,37.459429186655356,8.03553963125194,8.597597079481837,73.26516916185206,16.633136710733776,0.4632713026444664,0.22621564482029596,0.0,0.40591966173361516,0.4,0.36597903819628574,-1.6893252530453478,-0.08916634099326465,-0.029637285141146445,-0.09937207370854984,0.6340209618037141,2.9265818802460135,0.056981965595552526,0.051343541758702003,0.07316454700615035,-1.6303638791653083,0.6782330174829841,0.7623255247007785,1.6786199317381034,0.817470664928292,0.3974934739781063,1.4429399498506394,0.677373053460909,1.146402341242456,0.7234404069278321,0.6219412302003009,0.8183215515605436,0.9854254172764574,0.993090149445605,0.770886801212702,0.9742140885105192,1.0141287284144427,0.8081660633582637,1.161613975696751,0.9706991626102637,1.1231912766868266,0.7588361319317254,0.5238080381462463,0.8066290054925729,0.8895537098032126,1.0597999574377528,1.1679898334351873,1.1927978829449901,1.165280665280665,1.1356202848865218,0.9479734594829909,1.0503857700228492,0.9298867478306683,1.1617644751395693,1.0724805051284156,1.1932155500274744,0.9133963490554717,1.0401509728639293,0.9418311432871761,1.0359339848358813,1.2924348378893833,0.9964731353549715,1.2169955093591294,1.0263154770490015,1.253221206682949,0.9195886962836312,1.1388964274781148,0.9549470107360688,1.0123647380391676,0.9847769028871393,1.250479303132516,1.114767320719122,1.0988603988603989,1.2376473309749094,1.1510788133024763,0.986863245665115,1.0317933058310427,1.2284826962310835,1.340066566980258,1.2414653150981394,0.9906907276226262,0.9705580280725781,1.1160969242623098,1.1509241135774826,1.1067447045707914,1.077063357317431,0.955207063898816,0.9727347970750384,0.9432859762714052,1.1085168220377828,1.1678619546603366,1.1008976251250582,0.9601290731578521,1.0613741775428758,0.8274752843036216,0.7708309812242796,1.071127502634352,0.8762885289189051,1.0515810179802512,1.0550621765344181,1.1887309645066841,0.8331385365765208,0.8560717784209335,0.8107858396695785,1.0870380413001743,1.0862814683375845,0.8751328059930484,0.9780286126859401,1.1939328277356447,0.9142422452247635,1.0495544703733568,1.0690262946794145,1.098600402439348,0.8733263502954529,0.8940027398884313,0.8961899469152517,0.9698243391116954,7.5,0.2780287725742271,4.000000000000002,3.6527777777777777,2.124444444444445,1.837222222222222,1.1795918367346938,0.9548256802721088,0.6555886243386242,0.39937500000000004,8225.013399687758,8899.024545375625,3584.975941021034,3357.6412045417437,17.514521563666882,0.48936668055905924,8.943498284475156,0.9583524261496195,0.0,0.4,1.8720946026447172,4.2210601373063685,5.442281900015786,5.477369619314034,5.477369619314034,5.477369619314034,0.2027027027027027,0.008177316840418445,0.08000000000000003,0.0702457264957265,0.035407407407407415,0.03113935969868174,0.02106413994169096,0.017360466914038333,0.013111772486772484,0.009740853658536587,0.4889497461459752,29.554419284149013,13.693047337278106,7.529411764705882,202.2473898544506,0.0,4.4690985232153615,232.71012306640822,,184.33009141128903,183.19072651453132,187.99959935230584,184.39580513081773,316.3571983733429,186.57538844173968,188.54549397697681,263.01075547988364,0.04328802120073969,-0.06102315361161415,-0.6082405333274681,0.37527938163531394,0.33124746640594144,-0.1835328576443894,0.04480813504116361,-0.0739240124254692,-0.043633371045651834,-0.05888248794913655,-0.09334246714776685,-0.028350717217903117,0.05648401092720551,0.14840379573306312,0.1256698731663598,0.12678010764745465,0.116108995012213,-0.049242980812318496,0.0636708230855048,0.0294655610963703,0.14903024238953902,0.16410028751750924,0.1220736817625965,0.0894168638216544,-0.10224059830359047,-0.19553663934926346,-0.0745643661514295,-0.030813780813780747,-0.17642398657226258,0.14501181919490483,-0.10002310265818283,0.11611456351775766,-0.2037904726329144,-0.1692776492851744,-0.20725912909755442,0.023449977890257306,-0.017928027591592406,0.028369711414360087,0.0892243393456603,-0.12471619289801103,-0.04219201730026984,-0.10302183992424864,-0.018690801005861343,-0.13333348503244052,0.03410313476685142,-0.06600520513437098,0.0325683871666002,-0.06853065031624007,-0.028971378577677825,-0.15816166009854155,-0.03287571179596575,-0.0349206349206349,-0.21034871386900028,-0.13353300896883924,-0.03523237102430396,-0.0532409878447736,-0.15173506601887563,-0.115150929890224,-0.12467468116520296,-0.08125771145583342,-0.014635398836015084,-0.1345046157578029,-0.12924795034559486,-0.0513616817964644,-0.12307176021495167,0.07885262705219412,-0.0182727675643589,0.036621731877931774,-0.13298707356032147,-0.1193669680769072,-0.11826417354440459,-0.010035238424503951,0.025178359554370762,0.1280403571864028,0.18639723886107634,-0.07742172211350294,0.08321793468091367,-0.041519743607746795,0.02062308097108538,-0.07964513517836759,0.12151176705856111,0.08582869905030131,0.14885764798018614,-0.07564963459009655,0.046808409512191264,0.036943744783276715,-0.11087635798290528,-0.1560130010834236,0.0541379720970417,-0.06326659692811396,0.054110556565837895,0.008083738193272528,0.047770024948607694,0.09765978757589558,-0.001973126019507903,0.07488928521776954,2.2405671446320317,11.42438591652996,15.84969396447113,20.99898822615894,45.923571772260395,51.84450434235596,51.879872763408585,51.879872763408585,51.879872763408585,69.79369082578773,41.21636312926756,7.980754540826639,18.523792183493782,0.0,28.577327696520182,12631.77194222633,11201.41420152964,2913.5873793185347,191.0,52.0,68.0,91.0,108.0,129.0,154.0,168.0,184.0,510.10566390400055,37.0,5.187385805840755,6.037870919922137,6.93828448401696,7.822845290279774,8.736649954872451,9.640237896224932,10.562896961111214,11.479027361564464,12.408111041626897,0.7777777777777778,1.039438596491228,1.1358780226322223,0.74562352930866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6659254753650593,1.021947024423805,1.0491624180626364,0.6548597526790721,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,1.0,8.0,0.0,3.0,0.0,0.0,1.0,0.0,2.0,1.0,4.0,1.0,3.0,1.0,0.0,0.0,0.0,34.51578446335865,30.829432460962984,5.760247418874442,12.001711732105914,11.814359458703011,19.283521283065944,9.589074368143644,0.0,11.761884949391115,5.15571272675054,12.13273413692322,25.173432536197303,6.263162995639057,297.19266453812213,-1371.8137402033851,-72.40737774902445,-24.0669077228664,-80.69492589431675,514.8556593298929,2376.5259105162795,46.272109652573334,41.6934370266014,59.413147762907,0.4666666666666667,0.6757699894794441,0.10016989195620661,218.23872958093474,0.08759207951197637,120.28526470483244,0.3242300105205559,8.0,0.24324324324324326,0.32095489510319486,0.7236653060585467,0.9330335197131452,0.9390490144701251,0.9390490144701251,0.9390490144701251,-0.16829999999999856,,3.6964285714285716,3.5752237029804173,2.545439705343811,3.6880152073486263,-12.47153198508431,3.243574051407589,3.117356078797343,-5.109664418382504,117.15809999999999,47.43801430254924,0.0,10.216698334856808,10.889380203912726,31.553214770833158,19.469533112537242,35.42628839456182,0.0,0.0,4.31748811353631,0.0,5.673323267171493,2.3978952727983707,7.223295679562314,4.442651256490317,8.882252884889363,6.293419278846481,10.611400185296548,44.333333333333336,4.389119958776275,0.0,0.0,5.180901802132308,0.0,0.0,0.12387413800032476,0.0,59.248,0.0,60.860473324704046,0.0,0.0,0.0,0.0,3.6533893986325237,-4.236038932895687,64.74504729003667,11.050456081168516,4.794537184071822,0.0,77.63307832315544,38.22632618142407,0.0,19.60772181825569,39.23890463949127,0.0,0.0,0.0,42.50054117059362,37.95775209580838,43.10892012302958,465.4202461328164,,368.70893017535093,366.17715453174947,375.85374500716347,368.84170323455436,634.6647571397289,372.9654297948275,376.91285332087955,526.3258304942588,43.10892012302958,465.4202461328167,,365.43495058351425,362.8062293260823,373.4672421723959,365.57517547947407,645.18592873177,369.9072028320717,373.9736318751562,531.1311753781494,5.156520218308403,331.8448087202622,,269.0538329445154,267.5273382402245,271.5129398212695,269.1411173776407,447.5495689348031,272.4662667141886,275.61092886746496,380.3142523364983,1.2316834320865593,13.297721318080468,,10.534540862152884,10.462204415192842,10.7386784287761,10.538334378130125,18.133278775420823,10.656155136995071,10.768938666310845,15.037880871264536,2.578466702137956,232.71012306640822,,184.33009141128903,183.19072651453132,187.99959935230584,184.39580513081773,316.3571983733429,186.57538844173968,188.54549397697681,263.01075547988364,58.250980392156876,0.0,3.7068407104247827,0.0,0.0,5.01861036776701,0.0,59.80225782957028,-0.21919092773575133,2.5587692515150127,19.41633259675835,1.2125023095658016,-2.944998207773489,1.112747543461829,0.0,0.0,0.0,37.327005902707114,548.7578872770888,106.70939235074889,240.600427826463,310.2100683008998,312.21006830089993,312.21006830089993,312.21006830089993,1217.0,150.8133097154596,263.29043659092633,84.8417259385912,214.36,189.06,0.875,7.8835641383807,6.20945336562895,4.047116298728547,5.8066824462427915,,5.810421602819465,5.8185383267289685,5.811606591577127,5.810387413216133,5.764122093811395,5.817627622164879,5.817224455598368,5.7944333733478635,0.11563189424938705,0.16590521274979406,,0.16601204579484186,0.16624395219225624,0.16604590261648935,0.16601106894903236,0.16468920268032555,0.16621793206185367,0.16620641301709624,0.16555523923851037,2.650767570998323,3.0117723687409406,,3.0124161017556412,3.01381205208598,3.012620022920166,3.0124102175520053,3.0044158285407474,3.013655522079456,3.013586218823346,3.0096606619642348,336.35000000000105,888.1532015373402,241.1078900568686,,239.11860242659174,238.134172757567,239.35304157540287,239.12427001034808,245.77263420378816,238.26365262966382,238.28904411089383,241.54387574390898,25.375805758209722,6.888796858767674,,6.831960069331193,6.803833507359057,6.838658330725797,6.8321220002956595,7.022075262965376,6.807532932276109,6.808258403168395,6.901253592683114,8.041907220860702,6.738007478393275,,6.729722641801042,6.725597234401113,6.730702591900535,6.729746343497745,6.757169825840113,6.726140813184999,6.726247376347595,6.739814105185167,19.89799926342502,66.67245600363151,5.527673053439717,4.886413668498564,-2.7541080054982814,2.0288358186247972,-0.9756140240057891,2.0885390594351767,1.2486361862168176,433.176992432085,241.33480510405136,-1113.9790483912716,-58.79828973677352,-19.54349207703985,-65.5281793171336,418.0876751928013,1929.8538822636533,37.57518908520918,33.85708565374831,48.24634705659135,3907.0,52.0,2.7328301720628643,0.9992594368539097,0.0,0.0,0.57906036609335,0.19970839765629017,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.47673354858215317,0.2355354332059492,0.6814417077356641,0.3736127996722711,1.070882122919704,0.5242297211363727,25.697941654890247,19.657320413730613,16.633136710733776,11.115030755891176,15.30791312578966,8.20794386842081,11.608356417280357,6.012624421600937,10.168013066220153,4.57059639744642,7.374012602318499,3.1367348847433476,5.425924795408088,2.083930323302594,4.088192497676912,1.3956834356357082,5.390675538865823,2.184271491375783,9.110642223164188,3.2110283500302423,13.726696992473306,4.346124003190686,119.69196363045586,46.484922568617584,28.84929643187075,28.7148090629527,28.7148090629527,28.7148090629527,178.0,209.0,63.389445999999985,39.26055400000002,0.2807017543859649,179.15,13.694444444444446,7.833333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,5.0,5.0,57.0,0.0,0.0,59.0,5.0,7.0,9.0,50.0,12.0,37.0,47.0,0.0,0.0,0.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,12.0,2.0,3.0,35.0,15.0,0.0,4.0,10.0,0.0,3.0,9.0,1.0,0.0,0.0,1.0,1.0,3.8607297110405954,6.2292503751590615,4.347046915777855,4.765373937528427,5.20709258014796,5.4199817489123925,5.651172524383903,5.88575674893234,5.949013622434416,6.090178020044014 +14957,CCCCCC[C@H]1C(=O)O[C@H](C)[C@H](NC(=O)c2cccc(NC=O)c2O)C(=O)O[C@@H](C)[C@@H]1OC(=O)CC(C)C,0,21.79746835443038,6.299997468354429,2.8860759493670884,7.291139240506329,165.04417404218307,85.77395006329118,1.3175006606830377,6.337412658227847,5.694444444444444,7.853692708860761,196.65782740938008,23.15,6.3801000000000005,3.5625,6.3375,147.2977324368257,86.66983050000005,1.6694566507000004,6.510574999999998,3.197222222222222,7.823039199999997,244.78002471947337,18.820689655172412,6.2556068965517255,3.1586206896551725,4.9862068965517246,155.63322107678988,69.05066740689652,1.3659098992126146,6.342458620689653,3.1624521072796945,7.775808993103449,193.3376671542792,16.544117647058822,6.252024509803923,2.75,4.215686274509804,161.03518152047062,59.636412313725515,1.196452665040221,6.3128602941176455,3.055964052287581,7.825113921568626,168.72462437801423,17.266094420600858,6.406605150214589,2.703862660944206,4.424892703862661,162.9013960550014,62.57728200429185,1.1459838785364678,6.452030472103004,3.7091082498807832,7.982132206008587,166.0879057296967,17.168776371308017,6.582788607594937,2.5949367088607596,4.274261603375527,162.90454765214938,61.01802648101265,1.1494940335213673,6.617023206751055,4.291373652133146,8.153441518987341,166.16761391945445,15.318367346938775,6.2903346938775515,2.5306122448979593,3.5306122448979593,162.07166814684305,53.79794353877551,1.1534659933302156,6.342854693877553,3.5293650793650784,7.879309142857143,160.41475017193991,14.938931297709924,6.203248091603054,2.3740458015267176,3.366412213740458,162.9147604023107,52.8820482519084,1.1157272277405879,6.253008396946564,3.611005089058526,7.804858167938932,153.6666861031089,13.466666666666667,6.1582851851851865,2.2555555555555555,2.4814814814814814,163.46536281795417,46.23513254074073,1.0894641825536557,6.207222222222221,3.1318930041152284,7.774002874074077,146.46452243770753,7.947764781285054,0.16716465310046452,0.02833632617491165,0.5787534049030604,4.327511616728087,1.315379064642114,37.54479308700527,0.21766472027630837,0.1543212305720236,2.4102440848154663,0.10966050825188271,48.11818765433022,0.15666559846178507,-0.0061698429738822474,-0.01647190972618233,0.21159469636276212,1.5542921807402648,-0.14258029020907023,0.7391209921086174,-0.01466407646263738,-0.0037551546226564673,-0.08793395823318914,-0.0059514892645409646,-0.7032031532118369,0.767992529932758,0.03126736785108492,0.0006626997793424536,0.029016128051981005,0.9450331235599955,-0.13071300916942483,3.4585207863251286,-0.017755457687642095,0.028501981998906065,0.2663018194475906,0.019780706588798217,-1.4192360494484524,0.6216693214699756,0.005370926447810393,0.0014785150328206571,0.031261487129702024,0.5126472316213775,-0.038705401218537105,2.935559080716228,-0.0014838355515977416,0.006360880373620418,-0.07373068198598137,0.00044204449073329677,1.9214143026239623,0.8644805601611388,0.007190429205180064,-0.0013219772448174456,0.0043943106399395105,0.20690463795762876,-0.02970214796990442,4.084220887841231,0.0026465551837820678,0.00883337908734512,0.020476715846116433,0.00237949370389491,3.4723475212393327,-0.7479036479196707,-0.006673380334347873,0.0011559121754930626,-0.045665758692517266,-0.39635742135341584,0.025534118147801918,-3.524867395823326,-0.0005618246501203893,-0.00809231960690037,-0.06334603310248235,-0.0022821949473910263,-2.8055797237079005,-0.5888911052323508,-0.01308759807592311,-0.0023236833880145853,-0.04142454931019037,-0.1529314048965205,-0.020075232972332806,-2.763786691086924,-0.008747652681602157,-0.01221367180168004,-0.03594803728253039,-0.00803253139835653,-2.4964862581114406,0.4511143374703847,0.013067224375620001,0.0021486816712442606,-0.043725866010413804,0.1930217681400147,-0.0223843852118114,2.078363091466061,-0.0013196726688811903,0.012204665649833494,0.317202743112083,0.008361566537952047,0.7531064609175516,-0.6501557798785808,-0.012280780620389639,0.0011146558404982643,-0.022213320514874742,-0.5164473879423405,-0.038424452333759955,-3.05202394471743,-0.009440955922744616,-0.012021990065694581,-0.18067045351891078,-0.008210838303453273,-3.085839758238286,,,0.4564102564102565,0.9871794871794872,0.3717948717948718,0.02564102564102564,0.6153846153846154,-0.24358974358974358,1.2967555243357156,0.023633457541861958,0.028043713952118365,1.001056987807114,0.18183490448969217,0.2923319857216022,2.2978125121428294,0.4741668902112943,1.9729665123463382,1.4442425897667195,0.10232809912630603,0.4263958234533128,0.0,0.5287239225796188,6.940169377974696,1722.0,497.6997999999999,228.0,576.0,13038.489749332462,6776.142055000003,104.08255219395998,500.6555999999999,449.8611111111111,620.4417240000001,15535.968365341027,1852.0,510.408,285.0,507.0,11783.818594946057,6933.586440000004,133.55653205600004,520.8459999999998,255.77777777777777,625.8431359999997,19582.40197755787,2729.0,907.0630000000002,458.0,723.0,22566.817056134532,10012.346773999996,198.05693538582912,919.6564999999997,458.5555555555557,1127.492304,28033.961737370482,3375.0,1275.4130000000002,561.0,860.0,32851.177030176004,12165.828112000005,244.07634366820508,1287.8234999999997,623.4166666666665,1596.3232399999997,34419.8233731149,4023.0,1492.7389999999994,630.0,1031.0,37956.02528081533,14580.506707000002,267.014243698997,1503.3231,864.2222222222225,1859.8368040000007,38698.48203501933,4069.0,1560.1209000000001,615.0,1013.0,38608.377793559404,14461.272275999998,272.43008594456404,1568.2345,1017.0555555555557,1932.36564,39381.724498910706,3753.0,1541.132,620.0,865.0,39707.55869597655,13180.496167000001,282.5991683659028,1553.9994000000004,864.6944444444442,1930.43074,39301.61379212528,3914.0,1625.2510000000002,622.0,882.0,42683.6672254054,13855.096642,292.32053366803405,1638.2881999999997,946.0833333333338,2044.8728400000002,40260.671759014534,3636.0,1662.7370000000003,609.0,670.0,44135.64796084763,12483.485785999997,294.15532928948704,1675.9499999999996,845.6111111111117,2098.980776000001,39545.42105818103,627.8734177215192,13.206007594936697,2.2385697678180203,45.72151898734177,341.8734177215188,103.914946106727,2966.038653873416,17.195512901828362,12.191377215189865,190.40928270042184,8.663180151898734,3801.3368246920877,12.533247876942806,-0.4935874379105798,-1.3177527780945864,16.92757570902097,124.34337445922118,-11.406423216725619,59.12967936868939,-1.1731261170109903,-0.3004123698125174,-7.034716658655131,-0.47611914116327714,-56.25625225694695,111.35891684024992,4.533768338407314,0.09609146800465578,4.207338567537246,137.02980291619934,-18.9533863295666,501.48551401714366,-2.5745413647081037,4.132787389841379,38.61376381990064,2.8682024553757413,-205.78922717002558,126.82054157987501,1.09566899535332,0.30161706669541405,6.377343374459213,104.58003525076101,-7.895901848581569,598.8540524661105,-0.3027024525259393,1.2976195962185653,-15.041059125140201,0.09017707610959254,391.9685177352883,201.42397051754534,1.6753700048069549,-0.30802069804246485,1.023874379105906,48.2087806441275,-6.92060047698773,951.6234668670069,0.6166473578212218,2.058177327351413,4.771074792145129,0.554422033007514,809.0569724487646,-177.25316455696196,-1.5815911392404458,0.27395118559185583,-10.822784810126592,-93.93670886075955,6.0515860010290545,-835.3935728101283,-0.13315244207853227,-1.9178797468353879,-15.013009845288316,-0.5408802025316732,-664.9223945187724,-144.27832078192594,-3.206461528601162,-0.5693024300635734,-10.14901458099664,-37.46819419964752,-4.918432078221538,-677.1277393162965,-2.1431749069925283,-2.99234959141161,-8.807269134219945,-1.96797019259735,-611.639133237303,118.19195641724079,3.4236127864124404,0.5629545978659963,-11.456176894728417,50.571703252683854,-5.864708925494587,544.531129964108,-0.3457542392468719,3.1976224002563756,83.10711869536576,2.190730432943436,197.31389276039852,-175.5420605672168,-3.3158107675052024,0.3009570769345314,-5.99759653901618,-139.4407947444319,-10.374602130115187,-824.0464650737061,-2.549058099141046,-3.245937317737537,-48.78102245010591,-2.2169263419323837,-833.1767347243372,0.746465518391368,0.5956241871340104,0.462312717956012,0.335764003991429,0.3038421896888778,0.18902493614434435,0.18605397430264858,0.0967495676106546,0.12494656026020985,0.05239796939645949,0.07752447514355464,0.02841830662032604,0.04752829473901746,0.016078828344348567,0.03130238161401084,0.00928836852702775,8.035433084314091,5.692354368745862,3.56280211434557,2.190549502591622,0.4733633770442687,-0.490920130260555,3.2429112154348383,0.9571831359552593,6.034077804850868,0.9871399386153418,14.541467766602018,10.95371657982693,16.020463742373238,11.70458328516817,1.9871399382922892,0.7401241282068006,3.509238377336896,2.240083198417818,7.012757330008862,1.1699847286000598,3.722047257837217,2.4359842964727254,20.891409634823255,14.699762709858208,0.2351311877777792,0.5245694165029211,0.7376155547673549,0.8597269862478556,0.890120723261976,0.890120723261976,2.221094114646763,1026.2861503355184,0.0,4.0,5.0,0.0,5.0,10.0,1.0,2.0,0.0,4.784966919317572,2.915360473048017,1.5392035113141604,0.7504330698119519,0.5541068039343955,0.5541068039343955,280.7644535437215,3784.4890023754388,87.37098108092246,47.90492408070175,97.1385900277087,,18.0,1059.0,59.83625346504522,29.079213315199816,23.58956543546796,19.25173855196814,19.26246486877803,32.046575604766076,0.0,13.847474399381248,17.557314407703284,14.210588861400147,17.800000000000004,38.5,14.5,1.0,24.0,0.0,0.04358974358974348,-9.5,0.15928453494771605,0.020819061801936045,-0.13846547314578,0.042673992673992855,0.20542857142857118,0.0,0.594936708860758,0.8974358974358972,0.43565217391304195,0.574117647058822,0.8547619047619044,50.57346544909291,0.9217048441326163,1.0937048441326163,39.04122252447745,7.091561275097995,11.400947443142485,89.61468797357035,18.49250871824048,0.5085714285714288,0.2528089887640449,0.0,0.3651685393258426,0.6071428571428571,0.33280010221664186,-1.5000805468649134,-0.06035643797114909,-0.018988361352720425,-0.06000322187459654,0.6671998977833581,3.0073716350109527,0.04370530432976568,0.038067995379885464,0.055692067315017635,-5.288072173446629,0.8525205636869478,0.7321503058734493,1.629021528631544,1.002263289036545,0.4334937796208533,1.471231094297112,0.8627135634454229,1.3600264280263996,0.7176476943965793,0.6130434662175641,0.7555461487852606,1.1704500940171878,0.8289063705718204,0.631946400569766,0.9756292638090975,1.2765437048917403,0.6781699419839846,1.2690208411704802,0.8389430497645148,1.2194681804069598,0.6354634948676008,0.5131927670795758,0.637943507364694,1.1027411798619426,0.9067488976962501,0.9735127050358334,1.135679320382283,1.1080507784509155,0.9070264583914138,1.0774350182979273,0.9070100502175963,1.0397198964648366,0.9591380062233605,0.8071278791836725,1.0112644982329775,0.9667967430017944,0.9261181667013632,1.1506800666536834,1.427355119770884,1.1788102605050406,1.1016049290116556,1.0339691351754965,0.9218367946366032,0.975642961927476,1.1191852406190672,1.0759501011499168,1.2004656050348599,0.894608499287043,1.167594048627071,1.4074060654788307,1.3065578108773457,1.223698781838317,1.3241632109004744,0.9887771891108112,1.1592906954685258,0.9799442369629803,1.3888887850595382,1.4764848834031372,1.4424313898866543,1.0012461612861132,1.0807910971331796,1.1702488425015094,1.1766650025497627,1.1941860465116279,1.0942109367443666,1.0364055365597673,1.078380376314218,1.0491768639317915,1.1605842521658785,1.118717967387279,1.1852129219515402,1.0380919881975252,0.941436660243015,0.9613921693445149,0.9699509612496086,1.1492575638457052,0.9831548356607942,1.0028533840250373,0.9418015435408631,1.004950305761147,0.9561916841459023,0.8463454792640351,0.977418228641756,0.9735453924313066,1.078720616104189,1.1065208101065207,0.999672791601617,1.0204288175218408,1.1420406299368093,1.0057404692452987,1.0771786804204977,1.0318956755841706,1.1076440691082625,1.0464673567356002,1.1188266929755168,1.0479719129031573,8.5,0.30793388429752055,4.888888888888889,3.6875,2.693333333333334,2.0808333333333335,1.3095238095238095,1.0235260770975056,0.7004598135550514,0.5768981481481481,8509.120291508207,9765.067395848353,3649.6749756421136,3247.5666566974505,18.628547009273355,0.47001700644402844,9.872813109572833,0.8868529974714933,0.0,0.6071428571428571,1.5188138288595305,3.388420275129086,4.764577236862943,5.553347678365151,5.749673944242708,5.749673944242708,0.21250000000000002,0.00669421487603306,0.09053497942386837,0.0576171875,0.035911111111111116,0.02890046296296296,0.019545131485429985,0.014621801101392936,0.011297738928307283,0.01048905723905724,0.4881116846281629,35.1975,17.840192043895748,10.97081755402094,228.49650279084472,0.0,4.546476439535411,273.4241275093886,,235.69383065420055,231.41227412194272,237.13051702056248,235.75854622228692,355.7072840902814,234.29569453790816,235.90979187785268,300.10255697204707,0.019711906777952506,-0.03690877742063225,-0.5813001171890162,0.36560423588039825,0.359165339899289,-0.10839483008486474,0.01968637809231759,-0.06737001956046197,-0.024333363651502835,-0.03648342455736037,-0.054271946751065565,-0.014614082273079016,0.09663000240535342,0.18704533088280034,0.02338693362194543,0.050135563447512035,0.21837795187122092,-0.09937288245118073,0.09211718861548786,-0.0815725105341046,0.1846925526271244,0.11048749009500392,0.18038131414969627,-0.0294947943518553,0.07821939105870965,0.03212955818227022,0.05217737203101866,0.05401521073545691,0.118462358284546,-0.029425282991764813,0.07818818108581514,-0.0068170696184210655,0.0412184399388373,-0.03059054576691404,0.004031027192742447,0.0399311444651023,0.10877027490757762,0.043014052742709176,-0.04665309245303277,0.007592716695421508,0.047811457549376546,-0.022580675615348746,0.10878261809504636,0.012158861483948673,0.05724020638380325,0.00849570214698159,0.021698729486365094,0.07216289080095582,-0.09410238834455593,-0.03992100130365017,0.04079259140221506,-0.0789036544850499,-0.09159014612954197,0.019411984601373593,-0.09388432072737479,-0.0025811470476575014,-0.052438148509472815,-0.026281999197327047,-0.02081145695722092,-0.0583060140141297,-0.07409518543113382,-0.07829165935012336,-0.0820036928454022,-0.07157547404343803,-0.035339340119934275,-0.015261937423182907,-0.07361304894349002,-0.04018865652870936,-0.0791444686930472,-0.014914687482899746,-0.07324908051589869,-0.051882383352540466,0.056759900410319544,0.07816978130996816,0.07582781402151756,-0.07555180779927813,0.044603408433124714,-0.01701744068574005,0.055356892942510554,-0.0060628689261446175,0.07908610892094609,0.13160606641894063,0.07624956943247152,0.01565118092825299,-0.08180360110927425,-0.07346517575703636,0.03933663925301494,-0.03838132152085639,-0.11934049719150432,-0.029211695218985725,-0.0812902054792193,-0.04337384538367108,-0.0779023729990526,-0.0749594012727318,-0.07487507065527671,-0.06413042362289775,7.527847556298734,21.988920675350773,19.384355447171725,14.464245726819765,32.51328720618106,39.20254715095581,42.74300831644788,42.94090519245245,42.94090519245245,76.94569398150719,56.32546100090206,3.990795865925935,16.6294371146792,0.0,20.62023298060513,16752.493897626435,14535.301176075845,2888.0809393121453,136.0,54.0,67.0,84.0,96.0,105.0,122.0,131.0,135.0,548.273380860001,40.0,5.241747015059643,6.066108090103747,6.934397209928558,7.783640596221253,8.659213451436667,9.52083524249312,10.399676582049104,11.268290110505259,12.148745393908516,0.6202531645569619,0.9905822784810123,1.1363511910389335,0.578196779534372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6279824149170015,0.9751303052866716,1.013404998755382,0.5922237360451608,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,5.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,0.0,6.0,0.0,0.0,0.0,0.0,29.95069346425351,12.207932775496605,17.89531905018017,6.410095306116121,5.907179729351506,19.178148736287287,4.794537184071822,0.0,0.0,52.520865159237516,38.318936205391864,6.4208216229260096,17.16874381254195,279.42133959680655,-1259.478326828303,-50.67569582719528,-15.942763630738012,-50.37913307313212,560.1857931405281,2525.010675547136,36.69528525372718,31.962160449963736,46.759456954576585,0.5,0.7450677000537032,0.1120203696960546,106.83752741170413,0.07375530002330001,0.640588544818135,0.254932299946297,9.0,0.3,0.24093696934157074,0.5375219111338752,0.755828514219937,0.8809550808014764,0.9120992899230149,0.9120992899230149,3.480400000000002,,2.5357142857142856,2.9427640763145644,2.008706843820007,2.5283905688526187,-10.777012015416005,2.650856793145655,2.5169791881946133,-4.229599559009088,141.73969999999989,43.289802176599956,0.0,5.316788604006331,11.835812092322787,97.49735572840203,5.316788604006331,23.762552697081826,0.0,5.749511833283905,4.394449154672439,0.0,5.6937321388027,0.0,7.1693500166706,0.0,8.736328721332908,2.9444389791664403,10.355868052653099,48.99999999999999,4.13086865780692,0.0,0.0,0.0,0.0,0.0,-0.7120620638417587,0.0,78.25599999999997,0.0,62.913099762716776,0.0,0.0,0.0,0.34562606914182203,0.0,-2.9206989301496167,89.77174409207575,10.633577208012662,5.687386274683562,5.749511833283905,59.68545828655674,33.38873759768743,11.835812092322787,83.50160441177799,18.19910120538483,0.0,0.0,0.0,45.67754558321539,49.61061077844312,47.262555945537315,546.8482550187772,,471.2576246783644,462.6736372656128,474.1580234337496,471.3874313897609,713.0897948254033,468.4554477018089,471.69050789990047,600.8558215685572,47.26255594553732,546.8482550187773,,468.8519470226868,459.8817841675711,472.2523271973049,468.98870187572106,722.1915801959786,465.9405322826707,469.30260456751085,604.4347135031031,4.792851873033774,389.0008476295258,,334.53938803970027,327.78930240398944,336.44826547844394,334.64019221848537,523.3401210565817,332.3152315424942,334.88202066533114,435.86558571813373,1.2118604088599312,14.021750128686595,,12.08352883790678,11.863426596554174,12.15789803676281,12.086857215122073,18.28435371347188,12.011678146200229,12.094628407689756,15.406559527398903,2.415135907048395,273.4241275093886,,235.69383065420055,231.41227412194272,237.13051702056248,235.75854622228692,355.7072840902814,234.29569453790816,235.90979187785268,300.10255697204707,77.03529411764706,0.0,8.769742881720692,0.0,0.0,0.0,10.385329768720753,80.05899490167518,4.0329990699151175,4.742289856846105,16.945138393670973,0.0,-5.46566679988112,0.0,0.0,0.0,0.0,46.7856751475677,625.5641553372901,119.98629247990291,267.6852017351978,376.40160171217246,438.71446659084694,454.2242415951739,454.2242415951739,1009.0,157.02265369170587,214.04297740004458,78.29416706329818,157.32999999999998,157.32999999999998,1.0,7.705867584543324,6.321928094887363,5.1916338029249705,6.123051832178623,,6.114118619950642,6.112269802850574,6.116798298796569,6.1141522939066135,6.142280494950779,6.113632377907523,6.114197942598921,6.133449222059267,0.13311881545961463,0.1570013290302211,,0.15677227230642674,0.1567248667397583,0.15684098202042485,0.15677313574119522,0.15749437166540461,0.15675980456173136,0.15677430622048513,0.15726792877075044,3.008024999026264,3.173037190756233,,3.1715771777818627,3.1712747471620872,3.1720153589757345,3.1715826853399154,3.1761726424525225,3.1714976468781892,3.1715901513825826,3.174733823804892,422.0500000000018,590.4461011228489,273.9798122325071,,273.793815949629,274.00178323429463,273.55678614644034,273.790219747715,270.42888711423006,273.85203202056306,273.78448825700326,271.5296614479699,15.139643618534587,7.025123390577105,,7.020354255118692,7.025686749597298,7.014276567857444,7.020262044813205,6.934074028570001,7.021846974886232,7.020115083512904,6.962299011486407,7.741854907931094,6.974030978825764,,6.9733518797218395,6.9741111676568535,6.972485781038115,6.973338744927252,6.960985722642131,6.973564484533394,6.973317810831399,6.965047936810981,16.945138393670973,62.913099762716776,15.127619625566858,-0.21282300380120844,-4.261861626538121,2.711279062964799,1.1744715703658937,8.769742881720692,0.0,537.2450194971829,234.6041497644998,-1057.466986733127,-42.547675672940734,-13.385658059913002,-42.29867946932508,470.3359875789084,2120.016973427291,30.80962323686047,26.83565789148469,39.259573581986864,5101.0,64.0,2.7788825373846144,1.3665866141094023,0.0,0.0,0.71147324487702,0.174410480019709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.1554376142423653,0.034814548289032785,29.11215521726335,23.229343298226407,18.49250871824048,13.43056015965716,16.4074782431994,10.207346551794595,12.465616278277455,6.482221029913859,10.495511061857627,4.401429429302597,7.4423496137812455,2.7281574355513,4.990470947596833,1.6882769761565997,3.8188905569093228,1.1331809602973855,5.85650902081518,2.147340044189881,9.716987250251258,2.767418449443994,14.358706790544451,3.303580587873661,136.57462931851657,63.82365275830697,40.63915693608715,28.386100413568133,26.87760906692894,26.87760906692894,188.0,215.0,82.84971999999998,50.81628000000006,0.21518987341772153,118.11,16.194444444444443,8.972222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,79.0,0.0,0.0,80.0,6.0,5.0,8.0,72.0,11.0,40.0,69.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,9.0,3.0,1.0,39.0,11.0,0.0,2.0,9.0,0.0,2.0,12.0,0.0,0.0,0.0,0.0,1.0,3.8918202981106265,5.921410845282301,4.310799125385514,4.670489652108734,5.080627665916291,5.4023958107033065,5.492546907697604,5.7180551339429195,5.760674649353951,5.830690418089585 +5943,ClC(Cl)(Cl)Cl,0,238.4,7.657120000000001,4.0,3.683950617283949,159.88641347152003,1034.2148242,4.359700000000001,9.28898,1.7611816034141135,11.168603200000002,487.8801470803387,102.0,7.075000000000001,4.0,3.111111111111111,146.019404089,425.78995,3.6405999999999996,8.058,1.6820987654320985,9.54235,461.9959078593148,289.0,8.0089,1.0,0.6049382716049383,168.15942781689998,1256.7025,4.752400000000001,9.9856,1.8108520042676421,12.075625000000002,503.97095841309095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.360000000000007,0.017424000000000012,0.01764715787422556,1.4400000000000002,1.6612345679012344,0.4663961166239994,87.90187536000002,0.041616000000000035,0.05953600000000005,0.0014647157445511348,0.08503056,0.5593671110065432,-19.359999999999996,-0.01742399999999997,-0.017647157874225564,-1.44,-1.6612345679012341,-0.4663961166240002,-87.90187536000006,-0.041615999999999986,-0.05953599999999999,-0.0014647157445511429,-0.08503055999999998,-0.5593671110065447,4.839999999999997,0.004355999999999979,0.004411789468556391,0.3600000000000001,0.4153086419753084,0.11659902915600034,21.97546884000003,0.010403999999999974,0.014883999999999972,0.0003661789361377888,0.02125763999999998,0.13984177775163684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6714285714285715,0.6,0.0,0.0,0.6,-0.6,0.8901562005844097,0.08284271247461898,0.08284271247461898,0.1098437994155903,0.0812723708441617,0.3187276291558383,1.0,0.4,1.7,0.4,0.0,0.0,1.3,1.3,30.375082143999997,1192.0,38.2856,20.0,18.419753086419746,799.4320673576001,5171.074121000001,21.798500000000004,46.444900000000004,8.805908017070568,55.843016000000006,2439.4007354016935,408.0,28.300000000000004,16.0,12.444444444444445,584.077616356,1703.1598,14.562399999999998,32.232,6.728395061728394,38.1694,1847.9836314372592,1734.0,48.0534,6.0,3.6296296296296298,1008.9565669013999,7540.215000000001,28.514400000000006,59.9136,10.865112025605853,72.45375000000001,3023.8257504785456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.80000000000003,0.08712000000000006,0.0882357893711278,7.200000000000001,8.306172839506171,2.331980583119997,439.5093768000001,0.20808000000000018,0.2976800000000002,0.007323578722755675,0.42515280000000005,2.796835555032716,-77.43999999999998,-0.06969599999999988,-0.07058863149690225,-5.76,-6.6449382716049366,-1.8655844664960008,-351.60750144000025,-0.16646399999999995,-0.23814399999999997,-0.0058588629782045714,-0.3401222399999999,-2.2374684440261787,29.03999999999998,0.02613599999999987,0.026470736811338345,2.1600000000000006,2.4918518518518504,0.6995941749360021,131.85281304000017,0.06242399999999984,0.08930399999999983,0.002197073616826733,0.12754583999999988,0.839050666509821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9,1.0071147352221455,0.5,0.5669467095138409,0.5,0.6428571428571428,,,,,,,,,,,17.00739704317108,5.99560295682892,2.9424026096288327,2.3905973903711697,0.3758641409298221,-0.17360023246417072,4.0160633859300825,0.9869366140699167,4.014965119483298,0.7658126582944783,12.9984752928194,11.232454707180604,35.45506448843476,12.008935511565248,2.2644234380743664,1.5885765619256333,3.233782718925741,2.4792172810742588,1.524804330190645,1.073874682155036,3.5390316147546934,2.6849683852453063,22.47779442840368,20.554029351488918,0.36096404744368116,0.36096404744368116,0.36096404744368116,0.36096404744368116,0.36096404744368116,0.36096404744368116,3.0237157840738176,19.11941547876375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5999999999999999,1.5999999999999999,1.5999999999999999,1.5999999999999999,1.5999999999999999,1.5999999999999999,-244.94035530740805,65.07703005269266,16.269257513173166,13.015406010538534,16.269257513173166,,2.0,12.0,3.2517177575741014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.40375956093006,3.3571428571428577,3.0,0.0,0.0,3.0,0.17142857142857154,0.0,-3.0,0.8309243697478992,0.0,-0.8309243697478992,0.0,0.1762425629290616,0.0,1.2485714285714284,1.2485714285714284,0.41764705882352926,1.2485714285714284,1.2485714285714284,4.4507810029220485,0.4142135623730949,0.4142135623730949,0.5492189970779515,0.4063618542208085,1.5936381457791915,5.0,2.0,0.5377574370709384,0.8510638297872339,0.14893617021276592,0.0,1.0,1.0,-0.26568521128753525,-0.06642130282188381,-0.05313704225750705,-0.06642130282188381,0.0,0.0,0.0,0.0,0.0,-2.3766293790726096,2.4999999999999996,2.4999999999999996,2.4999999999999996,2.4999999999999996,2.5000000000000004,2.5000000000000004,2.5000000000000004,2.5,2.5000000000000004,2.5,2.5000000000000004,2.4999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1437.3813608145706,1437.3813608145706,540.1776708936477,540.1776708936477,2.9353465921396453,0.3919883571831279,1.7847249037237327,0.6447053470342696,0.0,1.0,0.7219280948873623,0.7219280948873623,0.7219280948873623,0.7219280948873623,0.7219280948873623,0.7219280948873623,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.75,5.0,1.0,,49.952315935356246,1.0,2.4444657789995543,6.608188235265339,,3.1563451054950358,5.947945668880666,5.862946768452687,3.0989865512532857,5.287759558451524,5.517211442464275,5.423168275114992,6.136309093341967,-0.9999999999999996,-0.9999999999999976,-1.0000000000000002,-0.9999999999999998,-1.0,-1.0000000000000018,-1.0000000000000004,-0.9999999999999988,-0.9999999999999991,-1.0000000000000056,-0.9999999999999996,-1.0000000000000027,0.24999999999999978,0.2499999999999986,0.25000000000000006,0.25000000000000006,0.2499999999999999,0.2500000000000011,0.2500000000000003,0.24999999999999917,0.24999999999999933,0.25000000000000344,0.24999999999999975,0.2500000000000019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.708389067971744,14.708389067971744,14.708389067971744,14.708389067971744,14.708389067971744,14.708389067971744,8.5,2.0,0.0,0.0,6.5,6.5,304.476012575381,295.38239036414205,294.3853263613021,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,151.87541072,4.0,3.044522437723423,3.4965075614664802,4.394449154672439,4.859812404361672,5.771441123130016,6.240275845170769,7.155396301896734,7.6251071482389,8.54110501146255,2.466666666666667,1.1056000000000001,1.1212990772892375,2.561168928482225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.2443113772455092,1.1913725490196079,1.21238164603059,1.072684714024018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2517177575741014,0.0,0.0,0.0,0.0,46.40375956093006,0.0,0.0,0.0,244.94035530740805,-65.07703005269266,-16.269257513173166,-13.015406010538534,-16.269257513173166,0.0,0.0,0.0,0.0,0.0,0.5,1.0,0.25,244.8915721257097,1.0,0.0,0.0,1.0,0.0,0.31091750708257115,0.31091750708257115,0.31091750708257115,0.31091750708257115,0.31091750708257115,0.31091750708257115,2.5529,,2.5882352941176467,0.46643109540636063,0.5266436503817578,2.6447390691114245,0.9357798165137616,0.7721518987341778,0.8391366906474822,0.3331545189504377,26.143,0.0,0.0,0.0,0.0,3.2517177575741014,0.0,0.0,0.0,0.0,2.1972245773362196,0.0,3.4965075614664802,0.0,4.859812404361672,0.0,6.240275845170769,0.0,7.6251071482389,12.333333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5280000000000005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.606495386446188,0.0,0.0,0.0,3.2517177575741014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.805844642411126,6.221556886227546,4.0,13.211102550927981,,4.833711718107944,11.697967613279378,11.502687251064621,4.651935593348698,10.176190931460088,10.706611234773556,10.489455570170891,12.130254841045396,4.0,13.211102550927976,,3.2807705416373554,11.41810895603556,11.186701060835565,3.065092151881842,9.61472304155183,10.24332009553305,9.9859735557824,11.930362129675135,4.0,8.605551275463991,,3.1042999534020614,7.59244670416619,7.461689617822344,3.015755057382548,6.573416566647477,6.92862207308298,6.783202605229331,7.881892435099958,0.8,2.642220510185596,,0.9667423436215887,2.3395935226558757,2.300537450212924,0.9303871186697397,2.0352381862920175,2.141322246954711,2.0978911140341783,2.426050968209079,2.0,6.605551275463991,,2.9345029178775013,5.94227002572096,5.856672355608662,2.854915610496634,5.275251429032796,5.507735997133613,5.4125551232149425,6.131758324312786,5.956862745098039,0.0,0.0,19.305555555555554,0.0,0.0,0.0,6.06190823015295,0.0,0.0,0.0,0.0,0.0,0.0,-1.6111111111111107,0.0,0.0,5.363423570120091,244.94035530740805,3.6096404744368114,3.6096404744368114,3.6096404744368114,3.6096404744368114,3.6096404744368114,3.6096404744368114,15.0,60.128616988122985,0.0,29.418927536574042,0.0,0.0,1.0,2.772588722239781,3.0,2.121320343559643,2.203968201666536,,2.178408182701087,2.2020528117303706,2.201768367187427,2.176875733281166,2.199543858332352,2.20050013946137,2.2001204237968044,2.2026494927179865,0.42426406871192857,0.4407936403333072,,0.43568163654021735,0.4404105623460741,0.44035367343748544,0.43537514665623317,0.4399087716664704,0.440100027892274,0.4400240847593609,0.4405298985435973,0.058891517828191846,0.09711228307062644,,0.08544723809993102,0.09624284098172134,0.0961136601944992,0.08474351842850422,0.09510282118535421,0.09553749008618961,0.09536491639570685,0.09651377007069206,73.91000000000001,7.999999999999999,10.741398457130595,,11.862894442513879,10.823159862614807,10.835307653339664,11.933739679919956,10.930415173353337,10.889503203168823,10.905742784159816,10.797683830720903,1.5999999999999999,2.148279691426119,,2.3725788885027757,2.1646319725229612,2.1670615306679326,2.3867479359839914,2.1860830346706672,2.177900640633765,2.181148556831963,2.1595367661441807,1.3862943611198906,1.6809581102053015,,1.7802682340362634,1.6885410892819546,1.6896628484267093,1.7862224749888047,1.6984021056603782,1.6946521358005948,1.696142330864755,1.6861844704519342,-1.6111111111111107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.69671629122377,59.9957776581193,-15.939990863457414,-3.9849977158643535,-3.187998172691483,-3.9849977158643535,0.0,0.0,0.0,0.0,0.0,16.0,0.0,2.0,2.91572593464261,0.5,0.826530612244898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5,5.035573676110727,2.0,2.2677868380553634,3.0,3.8571428571428568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.299202075737345,20.299202075737345,20.299202075737345,20.299202075737345,20.299202075737345,20.299202075737345,20.0,16.0,10.39,2.040000000000001,0.0,4.04,4.0625,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,4.0,0.0,0.0,0.0,4.0,0.0,4.0,4.0,0.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.6094379124341003,0.0,1.9459101490553132,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2159,CCN1CCCC1CNC(=O)c1cc(S(=O)(=O)CC)c(N)cc1OC,0,24.96153846153846,6.156890384615384,2.9423076923076925,6.316239316239317,165.98338071201582,98.46591415384617,1.4236281621331344,6.2103480769230766,5.034070974464493,7.737363865384613,196.7563710319778,27.867924528301888,6.322490566037736,3.6226415094339623,4.849056603773585,148.55945316397168,105.47702796226416,1.7841283083018868,6.47118679245283,2.6662881434894015,7.816264452830187,246.7686098855621,20.670103092783506,6.2345257731958785,3.195876288659794,4.59106529209622,158.25697446859476,76.2304921443299,1.452477503665814,6.328069072164949,3.206885579737814,7.782765835051547,197.29022576199114,18.03174603174603,6.139259523809524,2.8412698412698414,3.4814814814814814,161.03926899313086,64.94852321428571,1.320094806603762,6.22320873015873,2.966955712326082,7.7320348730158726,176.1181216043889,16.779411764705884,6.249955882352942,2.5073529411764706,3.4215686274509807,160.97581476810015,59.133776617647044,1.2485058610575663,6.3179816176470585,3.5947485475671748,7.828340617647058,165.4610790313453,14.280821917808218,6.002580821917808,2.23972602739726,2.374429223744292,165.29087811704048,49.92002770547945,1.0887179964380818,6.061669178082194,2.7957889396245568,7.631515794520549,141.2864986265351,15.03875968992248,6.177991472868217,2.2325581395348837,3.302325581395349,168.25686564312318,53.316372038759695,1.0726831827993102,6.2130449612403105,3.9277562446167096,7.788986666666667,140.35054100076405,15.037037037037036,6.188138888888888,2.4722222222222223,2.074074074074074,163.86225065187105,51.69236412962963,1.1789356982997778,6.248621296296297,3.1368026977594874,7.8252271296296305,154.44104314218418,14.625,6.270459615384615,2.4038461538461537,1.717948717948718,162.66996610799626,49.310527201923065,1.1959884747022786,6.328102884615385,3.022836538461539,7.887984153846156,156.15411823947895,10.463017751479292,0.14024744822485197,0.02045750881444088,0.6342455621301777,3.909763313609468,1.4447564432510183,47.979423621301784,0.2720758434974389,0.13127851331360937,2.105316559676869,0.08777805140532537,49.76405032129407,2.134224628781959,-0.008132281316288919,-0.009320155030779358,0.28375153511220286,0.8552745835039016,-0.17109355888451103,9.27285311019314,-0.007933113916162485,-0.0023214015574411413,-0.3504698267226069,0.0017529467804509701,0.8648246118648846,0.7816293539925581,0.01152735351979504,-0.00034542953062769534,0.022177911303605254,0.835060018842731,0.034316605506116094,3.8062083152565083,0.02103220178601681,0.011641292396144658,0.37605297823858286,0.005325362948362051,4.889944220425652,-0.01643655489809301,-0.007485131375035214,-0.0013265408584760892,-0.09563139851601388,0.06859783141834434,0.029412121202442413,0.1424226662440102,-0.0036191173349282902,-0.004864166549262728,0.006432046702652516,-0.0075116721318212055,2.4752979157840405,-1.0874521406195612,0.007766875870170568,0.003717904767426969,-0.055060041768186546,0.006934775882739771,-0.21265718122561458,-5.0846734606682915,-0.03612764120151151,0.004445171641141653,0.07083069592725563,0.004458506711190322,-7.950592854940563,0.7693320904595929,-0.007975135263840482,-0.0055857775566911265,-0.020309840317743372,-0.1810722938225573,-0.18074889405052005,3.239848285442167,-0.019717127240782492,-0.004591856306233279,-0.21019142299050117,-0.002512823665599412,-1.6462894160632324,1.1714485574056233,0.04201723573459933,0.005456279603286259,-0.017072037979909176,0.45368331727902395,0.19712960135578028,5.362660889729828,0.020806474666602157,0.036859307199211024,0.5885242200812227,0.028306700234507532,3.0387143778073384,-1.8426473811089201,-0.023529339250493077,-0.0007694499425793662,-0.04468003506465043,-1.106938052450873,0.008043521499552843,-8.153491854920011,-0.011077350771954472,-0.022566583114179282,-0.2851393470099449,-0.017495032174556283,-1.3504374866823101,-2.729289940828402,-0.055624149408283974,-0.0026104827162713286,-0.0356878698224852,-1.7376314924391845,-0.04277008351615129,-12.78240413683432,-0.00999186746911908,-0.054185225591715964,-0.6685032392442025,-0.03097349981508885,-9.196672911864612,,,0.4746666666666667,1.09,0.46,0.04,0.63,-0.17,0.9724702247413626,0.023205916690966007,0.030085916690966004,0.8929043290055109,0.19874778465734938,0.27461484114660845,1.8653745537468733,0.4733626258039578,1.9757114517110517,1.3654259066228849,0.23834871673503638,0.2846400062275472,0.0,0.6102855450881668,7.099465910461553,1298.0,320.15829999999994,153.0,328.44444444444446,8631.135797024823,5120.227536000001,74.02866443092299,322.93809999999996,261.7716906721536,402.3429209999999,10231.331293662846,1477.0,335.092,192.0,257.0,7873.651017690499,5590.2824820000005,94.55880034,342.9729,141.31327160493828,414.2620159999999,13078.736323934792,2005.0,604.7490000000003,310.0,445.3333333333333,15350.926523453692,7394.357738,140.89031785558396,613.8227,311.06790123456796,754.9282860000001,19137.15189891314,2272.0,773.5467,358.0,438.66666666666663,20290.94789313449,8183.513925,166.33194563207402,784.1243000000001,373.8364197530864,974.2363939999999,22190.883322153,2282.0,849.994,341.0,465.33333333333337,21892.71080846162,8042.193619999998,169.79679710382902,859.2455,488.88580246913574,1064.6543239999999,22502.70674826296,2085.0,876.3767999999999,327.0,346.66666666666663,24132.46820508791,7288.324044999999,158.95282747995995,885.0037000000002,408.1851851851853,1114.2013060000002,20627.828799474122,1940.0,796.9609,288.0,426.0,21705.13566796289,6877.811993,138.37613058111103,801.4828,506.68055555555554,1004.7792800000001,18105.219789098563,1624.0,668.319,267.0,224.0,17697.123070402075,5582.775326,127.325055416376,674.8511000000001,338.77469135802465,845.12453,16679.63265935589,1521.0,652.1278,250.0,178.66666666666669,16917.676475231612,5128.294828999999,124.38280136903698,658.1227,314.37500000000006,820.3503520000002,16240.02829690581,544.0769230769232,7.292867307692303,1.0637904583509257,32.98076923076924,203.30769230769235,75.12733504905295,2494.9300283076927,14.147943861866823,6.826482692307688,109.4764611031972,4.564458673076919,2587.7306167072916,113.11390532544384,-0.4310109097633127,-0.49396821663130597,15.038831360946752,45.329552925706786,-9.067958620879084,491.4612148402364,-0.4204550375566117,-0.1230342825443805,-18.574900816298165,0.09290617936390141,45.83570442883888,75.81804733727813,1.1181532914201189,-0.033506664470886446,2.1512573964497097,81.0008218277449,3.328710734093261,369.2022065798813,2.0401235732436307,1.1292053624260319,36.47713888914254,0.516560205991119,474.3245893812882,-2.0710059171597193,-0.943126553254437,-0.16714414816798726,-12.049556213017748,8.643326758711387,3.705927271507744,17.945255946745284,-0.4560087842009646,-0.6128849852071037,0.8104378845342171,-0.9464706886094719,311.8875373887891,-147.89349112426032,1.0562951183431972,0.5056350483700678,-7.4881656804733705,0.9431295200526089,-28.921376646683584,-691.5155906508877,-4.913359203405565,0.6045433431952648,9.632974646106765,0.6063569127218837,-1081.2806282719166,112.32248520710057,-1.1643697485207103,-0.8155235232769045,-2.9652366863905324,-26.436554898093366,-26.389338531375927,473.0178496745564,-2.8787005771542438,-0.6704110207100588,-30.68794775661317,-0.36687225517751415,-240.35825474523193,151.1168639053254,5.420223409763314,0.7038600688239274,-2.2022928994082838,58.52514792899409,25.429718574895656,691.7832547751477,2.6840352319916785,4.754850628698222,75.91962439047774,3.6515643302514715,391.9941547371467,-199.00591715976338,-2.5411686390532524,-0.08310059379857154,-4.825443786982246,-119.54930966469428,0.868700321951707,-880.5771203313611,-1.196353883371083,-2.4371909763313626,-30.795049477074052,-1.8894634748520784,-145.8472485616895,-283.8461538461538,-5.784911538461533,-0.27149020249221817,-3.711538461538461,-180.71367521367517,-4.448088685679734,-1329.3700302307693,-1.0391542167883843,-5.63526346153846,-69.52433688139706,-3.2212439807692403,-956.4539828339197,0.7445007878477143,0.6342797357049916,0.4551563709653441,0.39281492496372916,0.28766064957434173,0.22635351200076484,0.18743694036794886,0.13497698786552756,0.11885148373420541,0.07406409536573125,0.07532100425147983,0.040386795041094756,0.04890703990129314,0.02204485757238314,0.0323286558127023,0.013709614427794363,16.01301206931703,5.692211588658199,3.580166997081428,2.179574212628762,0.4416798474556071,-0.5279383866867811,4.043919350322687,0.9711582108470277,6.022684947314517,0.6397437790954397,14.544087620003511,10.311683513841668,32.06648890216074,11.704495800289369,2.956948250927906,0.751762891364326,3.535897314350785,2.2333762996321584,7.014573570224202,0.29517565388881795,3.7671908778890804,2.432414559433629,24.443291068592604,14.701023436288091,0.2804833782966221,0.5845279240216115,0.799772724409662,0.8700896747741506,0.8700896747741506,0.8700896747741506,1.9811093274603433,733.6536618070231,0.0,1.0,6.0,0.0,5.0,3.0,1.0,0.0,0.0,4.05045612234294,2.261870588737452,0.9956622598234102,0.5820127405094295,0.5820127405094295,0.5820127405094295,282.64294478047543,1546.5098040942203,58.13661601560939,29.74057315565809,59.8564097744896,,12.0,481.0,9.837253136417502,13.212334168400758,33.55586641128053,12.586597235060536,25.931156057677168,26.166268877891376,0.0,0.0,17.140435534547432,10.470530430962235,11.866666666666667,27.25,11.5,1.0,15.75,0.0,0.025333333333333315,-4.25,0.14250087811731638,0.02891246684350124,-0.11358841127381514,0.06228571428571417,0.17542208774583945,0.0,0.5794871794871798,0.8813333333333331,0.4369863013698634,0.5505747126436785,0.8190476190476189,24.311755618534065,0.5801479172741502,0.7521479172741501,22.32260822513777,4.9686946164337344,6.865371028665211,46.634363843671835,11.834065645098946,0.5385779122541605,0.2443820224719101,0.0702247191011236,0.28651685393258425,0.5882352941176471,0.2746095518794938,-0.677322761620549,-0.05073266835880248,-0.0130254377234721,-0.04838019725861066,0.7253904481205062,1.789171054726295,0.04198811719730077,0.03440713566781337,0.047083448808586705,-3.9396138083381897,0.9320616001856646,0.7675624546426543,1.5346305056647107,0.9190604543704272,0.6053036738792632,1.5220689381848753,0.9264142615608874,1.3859932885020811,0.7298016455092827,0.7463384221841025,0.6740518496680244,1.1481456037628328,0.959593692289977,0.8347927821570592,1.1008610571953679,1.2912867061404825,0.8192177222332737,1.1546396465076412,0.9496457632239781,1.04146460259058,0.8236864717514072,0.5598390870595287,0.8447790014947968,0.9502159277879277,1.0783445429635163,1.0055377757516124,1.078547185899399,1.4420380397056778,1.033047262710524,1.088667695224888,1.0647549224072923,1.1201207350415403,0.9860823081129407,0.9285359128671846,1.0310295974095964,0.9738977723438375,1.072458645553513,1.046741072876528,0.9056010573129025,1.091545189504373,1.0610969226888636,1.2045796090716074,1.0757297632793594,1.1330243413471024,1.0518127084817586,1.1921382407754253,1.0776642510784553,1.1527388613255924,0.7903420106172613,1.0385618599734434,1.3450439564930674,0.9479372179400134,1.0540909302940304,1.0742637019246777,0.8072465680158594,0.9465063688699642,1.0169461674284428,1.0749380189416093,1.0020987263138832,0.9918940718176025,0.8011221842644315,0.8678262737331763,1.086327921400548,1.0009356566546883,0.9998401511085298,0.7994899038103082,0.8089274453740893,0.7741189361866032,0.8718082194270338,0.897868681737729,0.8477250976642585,0.8584819639072708,1.2966916442810685,1.37458794696926,1.2925257159755819,1.2098801425332035,1.448975981278289,0.9936398317205064,1.2783551003185327,1.1092016012581287,1.3584317911712556,1.436256468741416,1.4560474267752355,1.0037782333799694,1.2050579669164423,1.683200339847338,1.2824888152911051,1.0036443148688046,1.607619182746878,1.0202506948635575,1.214634083781976,0.9748255097826632,1.6687737744209417,1.6652238508184403,1.706404308808193,1.1422542875582444,6.5,0.15846138149168454,4.222222222222224,2.3194444444444446,1.654444444444445,1.2394444444444446,0.6310204081632652,0.2777777777777778,0.28194286974048877,0.2921836419753087,5206.842825434814,5961.614783673985,2705.0280591205815,2432.2840278817134,13.784301444557943,0.4780635077223922,7.1945299444697355,0.9159419101665717,1.0,0.5882352941176471,1.6499835957981521,3.4385691294036396,4.704777458317682,5.118426977631662,5.118426977631662,5.118426977631662,0.25,0.009321257734804973,0.11411411411411415,0.05798611111111111,0.043538011695906424,0.03873263888888889,0.02035549703752469,0.010288065843621397,0.012258385640890816,0.013913506760728984,0.5705075888275914,21.301775147928993,9.273922571219869,5.041666666666667,148.9899874864918,1.0,4.124719454485686,127.26944964849456,,98.02685629572,104.85420207851891,105.18433433733354,98.0415228247762,137.30069706416168,105.51035255751836,105.56602003674573,127.62142500366153,0.20397792295441877,-0.05798523551922901,-0.4555860205324852,0.4473843445734089,0.21875354462680188,-0.11842380747547529,0.1932672885648464,-0.029157729749856167,-0.01768302747225342,-0.16646894506752855,0.019970217524612553,0.01737850127313342,0.07470400725278795,0.0821929644046984,-0.01688521968930342,0.034967389017462734,0.21358326626473176,0.023752519441198144,0.07933001332610085,0.0773027164619074,0.0886762966939985,0.17862063379974588,0.06066850269632403,0.09826258491530464,-0.0015709191447915837,-0.05337089173297944,-0.06484371437932311,-0.1507797676893886,0.01754526448687127,0.02035784047881365,0.0029684113625070255,-0.01330186939202619,-0.037052267172182164,0.0030551446874287295,-0.0855757448651393,0.04974068428519491,-0.10393293468949855,0.05537980168964151,0.18173790372767745,-0.08681186760418448,0.0017737073389073343,-0.14719240894824417,-0.10597612636619524,-0.13278518495836836,0.03386061838255774,0.03364372716382707,0.050792956095626327,-0.15976579083914516,0.0735286997244005,-0.05686474417027775,-0.2730429011350662,-0.032022045608850185,-0.04631285305488033,-0.12510682675606935,0.06752578586633433,-0.07246923132655139,-0.034977973091939715,-0.09983839343512409,-0.02862701581282725,-0.03308190160234575,0.11196086876943322,0.2995935845280773,0.2667128071544416,-0.026917079124008397,0.11603856317844122,0.13644486742152576,0.11177001483087694,0.0764730686824022,0.280771820679888,0.27954191372130344,0.3224803898163341,0.06106244082200581,-0.17611050892543895,-0.16777017727103044,-0.037612103680787094,-0.07044595616024182,-0.2831214996052932,0.005567389255903341,-0.169937261424292,-0.0407142017077262,-0.17189852737188063,-0.1354377543364353,-0.1993098718240046,-0.02713680815696099,-0.260851123992648,-0.3966143420955828,-0.12760511262390847,-0.056268221574343996,-0.4444339345020387,-0.029603663452027414,-0.26641429121210247,-0.03672456672623762,-0.4127501464178958,-0.31753098419878795,-0.35286155615445497,-0.18480555446125635,6.471022884710964,12.97708212004073,5.669746481494515,18.223632066706344,35.37234873406213,38.92437956011334,39.34133827558183,39.34133827558183,39.34133827558183,49.39278629277629,34.13564766557212,5.95871791837591,7.11600015568868,0.0,15.25713862720417,6962.164859394085,5847.885690483926,1368.616990831123,57.0,37.0,48.0,57.0,62.0,68.0,65.0,57.0,55.0,369.17222734400076,26.0,4.844187086458591,5.6937321388027,6.580639137284949,7.449498005382849,8.340694647925071,9.214431989879436,10.107529830547938,10.983545434556431,11.877908798454563,0.6346153846153844,0.9811538461538464,1.1391580136203503,0.5915731092652248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6425772800552741,0.9668929110105579,1.0072062860664464,0.5891311003773348,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,1.0,0.0,6.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,15.787319034968565,5.749511833283905,9.837253136417502,0.0,5.907179729351506,9.694446914922299,8.417796984328938,0.0,0.0,13.847474399381248,31.997523126138777,18.652964303522147,29.008972389922654,172.18221325548103,-424.68636427955744,-31.80975702625303,-8.167045466914567,-30.334740305682683,454.82515803595646,1121.8234398146628,26.326858989356356,21.57352768874352,29.521669468806916,0.5,0.8112927115143966,0.20103120641894728,34.093296504814646,0.10324243804626217,87.86489191904705,0.18870728848560356,6.0,0.2692307692307692,0.2894484772020728,0.6032112081565795,0.8253358847643257,0.8979003779906257,0.8979003779906257,0.8979003779906257,1.2851000000000006,,2.053571428571429,1.675270236251707,1.281385004616356,2.0499215542742757,-5.459584580867579,1.5300642594859244,1.4861242843716291,-2.3963729217909213,97.73540000000006,17.949197122200808,0.0,10.216698334856808,0.0,37.626441949899004,38.23058784292424,17.696185628620217,0.0,5.749511833283905,3.970291913552122,0.0,5.303304908059076,2.3978952727983707,6.834108738813838,4.59511985013459,8.452974619089586,6.555356891810665,10.119928692790662,32.999999999999986,2.708277116402116,0.0,0.0,0.0,0.0,0.0,0.5081437051404594,0.0,51.02000000000001,0.0,36.98139355096696,0.0,0.0,-3.52197461813646,0.0,0.0,-0.35429988662131495,59.23621670825821,15.787319034968565,5.687386274683562,5.749511833283905,57.76364763944093,9.837253136417502,0.0,37.04710632100208,17.028217612440994,0.0,0.0,0.0,30.761801681791688,33.414018562874254,31.06567988457219,254.5388992969891,,196.63812152767298,209.57438253813768,210.26615787429773,196.66839234056562,276.40913151562097,210.89829997427785,211.01315013074174,255.81797950855287,31.06567988457219,254.53889929698903,,194.91312152767296,208.03313392078604,209.08728367005062,194.9464582349753,280.12164903061085,209.49064085555085,209.64591578911978,257.6392229291139,4.893339960188362,187.57448543861787,,149.58654828160817,156.2584413918001,155.72638957586796,149.6102505479791,206.79027105607685,157.46698880244946,157.9510771003545,192.04094118330863,1.2426271953828876,10.181555971879563,,7.865524861106919,8.382975301525507,8.41064631497191,7.8667356936226245,11.056365260624839,8.435931998971114,8.44052600522967,10.232719180342114,2.4472551508417912,127.26944964849456,,98.02685629572,104.85420207851891,105.18433433733354,98.0415228247762,137.30069706416168,105.51035255751836,105.56602003674573,127.62142500366153,50.27843137254901,0.0,5.067996751207881,0.0,0.0,5.839860166505639,0.0,52.37472687545521,4.5980610518363045,2.8998145786092215,5.2166444633408915,0.0,0.3125661506886701,2.326850303392962,0.0,0.0,0.0,30.634817219621414,508.68651039454437,85.79914698150391,178.80559472898926,244.64842783251945,266.15820283684644,266.15820283684644,266.15820283684644,557.0,126.09216706929254,118.32086089689324,73.2289808870489,110.11,101.73,1.0,7.559136008746709,5.700439718141092,4.03602536013062,4.926455637280225,,4.91634575002987,4.914195341130946,4.913595513976401,4.91633574172877,4.8970857837787545,4.9145747557232085,4.9150904227940995,4.908631131511056,0.1614410144052248,0.197058225491209,,0.1966538300011948,0.19656781364523784,0.19654382055905603,0.1966534296691508,0.1958834313511502,0.19658299022892833,0.19660361691176398,0.19634524526044225,2.3115511178270998,2.5109105236977793,,2.5088562526812526,2.5084187571429535,2.508296689597127,2.508854216959642,2.5049310220596,2.508495962040151,2.5086008826171997,2.5072858428579416,281.2400000000003,282.8640467146366,141.3483166123784,,140.55625761130116,141.46377363336674,141.80733437700277,140.55743517379398,143.351960200654,141.44590457660337,141.3593634329888,142.41870350997036,11.314561868585463,5.6539326644951355,,5.622250304452047,5.65855094533467,5.672293375080111,5.622297406951759,5.73407840802616,5.657836183064135,5.654374537319552,5.696748140398814,6.561257113786561,5.867517906585769,,5.8618985505500945,5.868334399454247,5.870760068026695,5.861906928388122,5.881593598338532,5.868208076050254,5.867596056713238,5.875062067100435,29.588389488230757,14.905944297472077,2.8998145786092215,6.111130026428999,-0.17206800621483143,3.020843267090786,2.1675766841784156,6.157749721368498,-2.0960467238305895,343.089668140301,107.95951691646087,-266.28148089024313,-19.944952134450247,-5.120797709427754,-19.020105777874516,285.1787267373377,703.39156605131,16.50713464927668,13.526760885602116,18.510304369771312,1539.0,40.0,2.2758152301286936,1.3003873339393421,0.2041241452319315,0.07216878364870322,0.615450890140006,0.2867418794117885,0.08333333333333333,0.020833333333333332,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.2222222222222222,0.14993277820691392,0.35587652188532315,0.1989336182607217,18.61251969619286,15.85699339262479,11.834065645098947,10.213188049056958,10.643444034250644,8.375079944028299,8.996973137661545,6.478895417545322,6.774534572849708,4.221653435846681,4.66990226359175,2.503981292547875,3.3256787132879335,1.4990503149220533,2.1013626278256496,0.8911249378066336,5.107165766983528,2.899506975546183,7.606046956664223,3.697211699785535,10.271154982370492,4.139666600030528,82.89130488626974,37.37144011439963,27.352866797069847,24.990657368139182,24.990657368139182,24.990657368139182,126.0,148.0,55.801410999999966,38.05658900000002,0.2692307692307692,76.08,10.340277777777779,5.736111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,52.0,0.0,1.0,53.0,6.0,3.0,6.0,47.0,9.0,26.0,44.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,6.0,2.0,1.0,25.0,8.0,0.0,3.0,4.0,0.0,2.0,7.0,1.0,0.0,0.0,0.0,1.0,3.4965075614664802,5.418042958663758,4.069026754237811,4.524502282920636,4.961970122114975,5.389357077228909,5.723585101952381,5.79434656107127,5.630875703848114,5.383204092230392 +5280453,C=C1/C(=C\C=C2/CCC[C@@]3(C)[C@H]2CC[C@@H]3[C@H](C)CCCC(C)(C)O)C[C@@H](O)C[C@@H]1O,0,16.324324324324323,5.654864864864866,2.7567567567567566,3.5945945945945947,163.7321373095197,63.618136297297326,1.3080118893696757,5.730112162162162,3.0790165165165164,7.287317513513513,181.78126260926896,19.18421052631579,6.001315789473685,3.473684210526316,3.513157894736842,144.35057366016255,69.80161921052631,1.7388913245789477,6.152664473684211,2.3991228070175437,7.487013578947367,238.6897476319168,15.612244897959183,5.790612244897958,3.251700680272109,2.401360544217687,151.2007821721063,55.86071327891158,1.479035317847123,5.915663265306121,2.1473922902494333,7.344014421768707,196.2772957879862,12.193693693693694,5.755900900900899,2.5585585585585586,1.617117117117117,155.6364473450442,40.87655892342342,1.290138343662662,5.856538288288288,2.2073948948948945,7.356656666666667,162.86691267432957,9.43525179856115,5.511942446043165,2.143884892086331,1.1546762589928057,160.9724629459391,30.66380333812949,1.1086481795573995,5.595923021582734,1.9523880895283778,7.167572748201438,131.9999776247026,8.194139194139193,5.448241758241756,2.0036630036630036,0.9597069597069597,163.07162741412142,25.685400772893765,1.0377533350089632,5.5245402930402925,1.8060134310134306,7.126747003663005,120.03379839918651,8.573170731707316,5.398048780487806,2.130081300813008,1.1056910569105691,164.74401128903204,28.28749667479675,1.0297318946257603,5.470865853658535,1.6937951671183378,7.087976552845529,121.37934721524242,10.644549763033176,5.567298578199055,2.3696682464454977,1.3696682464454977,158.53543559748744,35.44499654976303,1.1887380445731757,5.661890995260659,1.884807793575566,7.1998103507109,145.43056308974084,10.066666666666666,5.577750000000001,2.183333333333333,1.1916666666666667,161.8183321675146,33.48253500833333,1.0929146864804835,5.656516666666665,1.9900462962962966,7.234269433333333,133.3710866217234,6.663988312636961,0.07505478451424394,0.009530684900466258,0.6267348429510593,2.366691015339664,1.2682653048369565,31.917279957633312,0.22992558026601168,0.07535670197224247,1.0206963720477238,0.04452731921110297,51.36171441643112,0.05365037868594121,-0.0059011572027217974,-0.004463403572572424,0.22675022106032075,0.6877186574910618,0.13742108739734396,0.34373082615046563,0.023230193817095027,-0.005473700549767225,-0.16123493692839352,-0.0034781840759678254,3.5619007608276503,0.4922904150703384,0.0031195122314814023,0.00035804531139960747,-0.058983418056777086,-0.09458217180224902,0.0403278722860082,2.3494575612120614,0.008836802992206561,0.003925831581719695,0.05618791019370172,0.0008520865620170759,2.9678694752140244,-1.1627708789870954,-0.01117969320672017,-0.0005884869474339436,-0.08424640857073289,-0.3545166788410032,-0.11745124629687981,-5.53757214670076,-0.023816135967997684,-0.012234739469198841,-0.07926845764683602,-0.0052271025079133,-7.084945777656211,-0.21269529299861792,0.0040352407628316414,0.000573181223895253,-0.03622346826702261,-0.01300639546799377,-0.07471386351267066,-1.0675064914657024,-0.013836355615400467,0.003037396802791493,0.08209774401078113,0.003285957086777609,-2.935473940953557,-0.3046179532666019,-0.0014284108878703842,-0.0005808633371146562,0.03329881708260086,0.06475141610276744,-0.06156510603512522,-1.4713116427139927,-0.011402964407835765,-0.0017937973093378923,0.011355597504246136,-0.0004990408228246213,-2.6111222251484874,0.987297119136275,0.005327549038821224,0.00023710922567681954,0.047842173089371505,0.2119730145438781,0.16954144496292575,4.752752361527316,0.03204976242469574,0.006567688271659848,0.039528486957623385,0.0018656792507734936,7.800682258349977,-0.2734413675876463,0.00016617103846513072,-3.314357372495253e-05,-0.023942477125517978,-0.03878016610180053,-0.10263831363606715,-1.3477448775769507,-0.01804270661093035,-0.00013819294188513676,-0.0345523488776339,0.0002158686971844336,-3.422926908654304,0.2236242999756512,0.0022492695398100776,0.00021326484495185917,-0.08326637448259071,-0.09675858290723152,-0.03991985380988924,1.0391913013757004,-0.0054322280630594326,0.0028216538836133387,-0.010595646321997667,0.0004585357438519581,0.11260890517251285,,,0.4833333333333334,0.6583333333333333,0.1,0.0,0.5583333333333333,-0.4583333333333333,1.616761900609601,0.03015130657554851,0.03875130657554851,0.3617635241509222,0.07404091609813761,0.39294822940541707,1.9785254247605233,0.4669891455035547,2.0004370326280947,1.8272993444548031,0.0,0.1731376881732917,0.0,0.1731376881732917,5.626068179297313,1208.0,418.4600000000001,204.0,266.0,12116.178160904457,4707.742086000002,96.79287981335601,424.0283,227.84722222222223,539.261496,13451.813433085903,1458.0,456.1,264.0,267.0,10970.643598172353,5304.92306,132.15574066800002,467.6025,182.33333333333331,569.0130319999998,18140.420820025676,2295.0,851.2199999999999,478.0,353.0,22226.514979299627,8211.524852000002,217.41819172352706,869.6024999999998,315.6666666666667,1079.5701199999999,28852.76248083397,2707.0,1277.8099999999997,568.0,359.0,34551.29131059981,9074.596080999998,286.4107122931109,1300.1515,490.0416666666666,1633.17778,36156.454613701164,2623.0,1532.32,596.0,321.0,44750.34469897107,8524.537327999999,308.2041939169571,1555.6666,542.763888888889,1992.585224,36695.993779667326,2237.0,1487.3699999999994,547.0,262.0,44518.55428405515,7012.114410999998,283.3066604574469,1508.1995,493.0416666666666,1945.6019320000003,32769.22696297792,2109.0,1327.9200000000003,524.0,272.0,40527.026777101884,6958.724182,253.31404607793704,1345.8329999999996,416.6736111111111,1743.6422320000001,29859.319414949634,2246.0,1174.7000000000005,500.0,289.0,33450.97691106985,7478.8942720000005,250.82372740494006,1194.6589999999992,397.69444444444446,1519.159984,30685.84881193532,2416.0,1338.6600000000003,524.0,286.0,38836.3997202035,8035.808401999999,262.29952475531604,1357.5639999999996,477.6111111111112,1736.2246639999998,32009.060789213618,493.1351351351351,5.554054054054052,0.7052706826345031,46.378378378378386,175.13513513513516,93.85163255793478,2361.878716864865,17.014492939684864,5.576395945945943,75.53153153153156,3.2950216216216197,3800.7668668159026,4.077428780131532,-0.4484879474068566,-0.3392186715155042,17.233016800584377,52.26661796932069,10.444002642198141,26.123542787435387,1.765494730099222,-0.41600124178230913,-12.253855206557908,-0.2643419897735547,270.7044578229014,72.36669101533974,0.4585682980277661,0.0526326607757423,-8.670562454346232,-13.903579254930607,5.928197226043205,345.370261498173,1.2990100398543645,0.5770972425127953,8.259622798474153,0.12525672461651016,436.27681285646156,-258.13513513513516,-2.4818918918918778,-0.1306441023303355,-18.7027027027027,-78.70270270270271,-26.074176677907317,-1229.3410165675687,-5.287182184895486,-2.7161121621621427,-17.597597597597595,-1.1604167567567525,-1572.8579626396788,-59.129291453615785,1.1217969320671963,0.15934438024288033,-10.070124178232284,-3.6157779401022676,-20.770454056522443,-296.76680462746526,-3.8465068610813296,0.8443963111760351,22.823172834997152,0.9134960701241752,-816.0617555850888,-83.16070124178232,-0.38995617238861485,-0.15857569103230115,9.090577063550034,17.67713659605551,-16.807273947589184,-401.66807846092,-3.113009283339164,-0.48970666544924457,3.1000781186591952,-0.13623814463112163,-712.836367465537,242.87509130752366,1.3105770635500211,0.05832886951649761,11.76917457998539,52.14536157779401,41.70719546087974,1169.1770809357197,7.8842415564751525,1.6156513148283225,9.724007791575353,0.4589570956902794,1918.9678355540943,-57.69612856099337,0.03506208911614258,-0.006993294055964985,-5.051862673484293,-8.182615047479912,-21.65668417721017,-284.3741691687366,-3.807011094906304,-0.029158710737763858,-7.290545613180752,0.045548295105915494,-722.2375777260581,53.66983199415629,0.5398246895544186,0.0511835627884462,-19.98392987582177,-23.222059897735566,-9.580764914373416,249.40591233016806,-1.3037347351342639,0.6771969320672013,-2.54295511727944,0.11004857852446995,27.026137241403084,0.7368027842585192,0.6553755754626425,0.43780232390958257,0.38072903176309436,0.2943550540396694,0.23637334728700385,0.17739962238858592,0.14061716899676452,0.11390823591874412,0.08749441203173658,0.07073153470968917,0.05145222643494312,0.04679233954342755,0.03251195777591841,0.029334631696321122,0.01941013792447898,8.008390413588712,5.6971034891985,3.515089701472182,2.196966421620505,0.33096948979467367,-0.31912288218884705,4.029028171807359,0.9777523445088501,5.012634176403474,0.9919360994790238,13.625456353716645,10.957426958709782,16.004179874111248,11.708183692590797,1.9860545081099228,0.7869441018653777,3.4568200853858464,2.2469366206948056,6.004701781726253,1.0987611233525962,3.6705056075121667,2.442941885665034,20.895055292768845,14.707201496884391,0.18467619032035795,0.4485510638916247,0.7068368854526543,0.8713775398509908,0.8799524024950771,0.8799524024950771,1.5592306425343447,682.7119726280486,0.0,1.0,4.0,0.0,2.0,12.0,3.0,4.0,1.0,5.0452951524407865,3.3818858044945688,1.7537086150110435,0.7164804055223479,0.6624263514682935,0.6624263514682935,345.1346275271742,1528.17859019263,62.015008152468596,20.651062029630133,38.70848821601188,,15.0,724.0,17.808983586480295,15.319582184522117,0.0,30.092445807571586,29.90575835215195,38.524929737556064,5.573104530069267,13.847474399381248,32.5784502966475,0.0,14.500000000000002,19.75,3.0,0.0,16.75,0.0,0.016666666666666607,-13.75,0.053708359522312954,0.014493243243243414,-0.03921511627906954,0.043333333333333224,0.09168240343347589,0.0,0.49324324324324276,0.7766666666666662,0.4395348837209298,0.47874999999999934,0.733333333333333,48.50285701828803,0.9045391972664554,1.1625391972664554,10.852905724527666,2.221227482944128,11.788446882162512,59.3557627428157,14.00967436510664,0.6223175965665241,0.2413793103448276,0.0689655172413793,0.2758620689655172,0.7777777777777778,0.25507341055345334,-0.5532439791767065,-0.05205670793870829,-0.007476269988874413,-0.021278614583719484,0.7449265894465467,1.6157158429242675,0.03596184036003061,0.021833997877354957,0.033660746727588904,-4.599690770490099,1.153094838378419,1.0168958893584326,1.3723514366932164,1.1805069930069927,0.8500954353476281,1.232346254599158,1.1561087089394977,1.230077977192514,1.0344905568555078,1.1024838717440069,0.9953960718877507,1.2110186932770068,0.994939157291767,0.7617895625403447,0.664521300169409,1.8952357166642877,1.2731470983455109,1.1732572496530278,1.0007831988290214,1.16434803284543,0.7874528067986558,0.6837251788040276,0.737125385064185,1.1149959491436998,1.2369377763162703,1.19772100567721,1.027422895202721,1.3825757575757573,1.272055041152263,1.2077089683421791,1.2369699361214852,1.2131893019348865,1.2082245151882542,1.1344272655587362,1.1767164715319918,1.2281114288674955,0.9821793009525297,0.6451214794587686,0.6443732557063525,0.9936641595814255,0.8898678279598541,1.0713684777719907,0.9879209528754436,1.0783568193213138,0.6998353471731007,0.5660154113708078,0.5614782928791248,1.0731241807620258,0.9714290331685925,0.6968971417876526,0.6842409284650957,0.7293486428101811,0.79470814679148,1.0207678021395086,0.9757314068463302,1.0292061150964587,0.7438959616782981,0.5985945014749879,0.6221370349236468,1.0340830358234672,0.7555070540018126,0.5489837398373985,0.5314829273743971,0.8765824284116964,0.8056844700391447,0.8130152182618543,0.7590710155882605,0.8169601320205649,0.5822094627561704,0.4898580906543499,0.4985475434151762,0.8126325225771694,1.0155306389298855,0.6973557731114722,0.6379191112374553,1.1786420530496358,0.9659974548007721,1.1396682100690352,1.0215919531746853,1.1415578536463538,0.744831457225163,0.6769267144858783,0.6297676429142081,1.1209544680589778,0.9504916602725713,0.9052621654501216,0.8238200861560161,1.295278506216006,1.0377105838477365,1.0291344239524072,0.9523326021117029,1.0222151406622135,0.9056388538917938,0.9368404682861534,0.9130150154177447,0.9953674707738357,9.0,0.18998061422303847,5.111111111111113,3.1944444444444446,1.898888888888889,0.9586111111111111,0.6882086167800454,0.7309027777777778,0.565161249685059,0.32063271604938276,5196.2097164743745,6495.144498953665,2671.18857066335,2218.799346047826,17.85061429165214,0.4874078807164842,9.150084210270585,0.9508688533834011,0.0,0.7777777777777778,1.1641582131881631,2.8275675611343813,4.455744750617907,5.492972960106602,5.547027014160657,5.547027014160657,0.28125,0.009998979695949395,0.10648148148148154,0.06519274376417233,0.043156565656565664,0.027388888888888886,0.018110753073159083,0.018272569444444445,0.013456220230596646,0.01105630055342699,0.594364502788685,24.638671875,9.868055555555555,5.88,183.52414470158894,0.0,4.3259037520979025,185.65705396507028,,169.65217322564322,169.40801824740527,170.18025063786925,169.6572020448129,179.2680960839082,169.5924829904454,169.66248016783499,174.21782376722533,0.008050791233262472,-0.07862466384940286,-0.46831928861209815,0.361796098638204,0.290582358674464,0.108353580968621,0.010769427301033503,0.1010335335034011,-0.07263720951831802,-0.15796562165193512,-0.07811348488054799,0.06934933542031772,0.07387324106448463,0.041563136203387266,0.03756763707318571,-0.09411223696937973,-0.03996388678928361,0.031797662628004,0.07361083288835103,0.03843331821532363,0.05209664806145271,0.055048603808571774,0.01913626459247083,0.057783691781607936,-0.17448573203259166,-0.1489537712895369,-0.06174655374506756,-0.13442113442113438,-0.14979423868312755,-0.09260778943407184,-0.17349762116481354,-0.10358193264291725,-0.16235768218340407,-0.07766115351993212,-0.1173909096824745,-0.13794215902165577,-0.03191711675053249,0.0537639377549053,0.060140612126124524,-0.05779711894819806,-0.005495603517186256,-0.05891027944052731,-0.033446035905399844,-0.06017753918199332,0.04030692325030776,0.08043307124338693,0.07379642756391787,-0.05715295866398241,-0.045711057549268665,-0.01903157669581077,-0.060946652122161694,0.05313063005370696,0.027359471803916235,-0.04854276609186262,-0.04609765132451755,-0.049594153006564744,-0.02380408460548917,0.0111253432609587,-0.011207520049852555,-0.050837910198596556,0.14815408923572954,0.07098213755860106,0.024878508538795543,0.07633558853071046,0.08956514102178058,0.13367979421681128,0.14890843981179075,0.13939189535855848,0.08715466706702539,0.038726978992118126,0.04189965360205837,0.15187737300012052,-0.04103269014879841,0.002213996609817655,-0.0034775647365417666,-0.03820192445784861,-0.01638581709671757,-0.0809281096349647,-0.04222618216107182,-0.07847194118225513,-0.0018338507162380848,-0.03385174065850247,0.004848005696480518,-0.06664354855645699,0.03355712667616645,0.029968369829683674,0.02237665468736941,-0.13285742035742035,-0.04088348765432097,-0.031475948807904344,0.0325588929493714,-0.023626027416238912,0.0374439672884396,-0.010380801394189981,0.010297852014805809,0.0021924678031481,14.979218778046143,24.371904005158495,7.7257416532231495,9.823486464727274,24.641645439216862,32.59890910763427,33.94181352117725,33.996300007663734,33.996300007663734,60.01311097884284,54.81898033364409,0.0,5.194130645198751,0.0,5.194130645198751,11721.559527202471,11240.535245387668,1384.3123975505423,140.0,48.0,60.0,77.0,88.0,97.0,105.0,120.0,126.0,416.32904526800115,32.0,5.081404364984463,5.932245187448011,6.844815479208263,7.717351272185329,8.634264863002075,9.51951481976606,10.439717730523846,11.334217371746108,12.257150666748117,0.5180180180180181,0.9448648648648647,1.131953113917804,0.46876624355601954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6217421265576953,0.9325384207737152,0.9800594476486684,0.5549271486018893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,4.0,0.0,0.0,0.0,3.0,10.0,0.0,0.0,0.0,5.0,0.0,2.0,0.0,0.0,15.319582184522117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.9931980725688,93.10814342788281,6.4208216229260096,17.808983586480295,179.7164341004817,-389.79772493520204,-36.67746434822676,-5.267536823448676,-14.992220189815464,524.8510616276559,1138.380865257428,25.337543804241836,15.383525206181455,23.716268026196417,0.4666666666666667,0.8165006502506715,0.18104049975497546,171.92357589897853,0.09725473112831669,140.9136787946596,0.18349934974932855,8.0,0.1875,0.18748159373127793,0.4553649725088127,0.7175743963682362,0.8846145766246887,0.8933196994223345,0.8933196994223345,5.704700000000008,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,124.03840000000008,15.319582184522117,0.0,0.0,23.16870860788096,109.7121486145029,0.0,35.45028948747406,0.0,0.0,4.174387269895637,0.0,5.54907608489522,2.3978952727983707,7.104144092987527,4.844187086458591,8.750366278367625,7.065613363597717,10.448279725865392,38.333333333333336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.91999999999999,4.059444842101023,0.0,0.0,0.0,0.0,4.434295698689638,0.0,3.347966300727256,83.7645304299175,0.0,0.0,0.0,33.12856577100241,0.0,23.16870860788096,91.9031650280226,35.45028948747406,0.0,0.0,0.0,34.688702023145446,46.008917365269454,36.48420078254493,371.3141079301405,,339.25434645128644,338.7588936376677,340.3258744385629,339.2645509738061,359.6184864321556,339.1332217948443,339.27526137562614,348.83464201250865,36.48420078254493,371.3141079301405,,338.55434645128645,337.95889363766776,339.8410987181036,338.5666073523297,361.7830749608338,338.4088031901932,338.579475935013,349.6326309686247,4.980791821959924,278.63533421754926,,253.94432008113546,253.68326702531908,254.50894470779866,253.94969694034143,264.22871759697586,253.8804987208033,253.95534035726055,258.8262579266031,1.216140026084831,12.377136931004683,,11.30847821504288,11.29196312125559,11.344195814618763,11.308818365793536,11.987282881071852,11.30444072649481,11.309175379187538,11.627821400416956,2.5432475017434713,185.65705396507028,,169.65217322564322,169.40801824740527,170.18025063786925,169.6572020448129,179.2680960839082,169.5924829904454,169.66248016783499,174.21782376722533,69.00784313725492,0.0,8.776765833188161,0.0,0.0,0.0,30.19769641109438,72.52439912600146,10.506381949805565,0.0,0.0,0.0,1.0249686541319025,0.0,-0.18085302307125617,0.0,0.0,41.06460899653981,575.2798184075116,86.14770777592408,209.23999952394422,329.7251115457251,406.47999904788855,410.4799990478886,410.4799990478886,923.0,139.76068175561227,129.28767732062607,80.33394917486608,60.69,60.69,0.875,7.636752112435779,6.0,3.8600280325360057,5.385563663482344,,5.382996457566144,5.383446284561887,5.381997495483547,5.382987111036488,5.360788543622898,5.3831071477847185,5.3829772976454455,5.37336292248736,0.1286676010845335,0.1795187887827448,,0.17943321525220482,0.17944820948539625,0.17939991651611822,0.17943290370121628,0.1786929514540966,0.1794369049261573,0.1794325765881815,0.17911209741624531,2.449286734433506,2.7823342666830095,,2.781857470168717,2.7819410311009167,2.781671875622204,2.7818557338610965,2.7777233692778274,2.7818780328945896,2.781853910821251,2.780066243729703,363.42000000000166,699.5070009836603,190.64776075707329,,190.78897800651956,190.7182220190713,190.94201571272077,190.79043539636842,193.5404620108919,190.7716794086952,190.7919650373252,192.10788631282364,23.316900032788677,6.354925358569109,,6.359632600217319,6.357274067302376,6.364733857090693,6.359681179878947,6.451348733696396,6.35905598028984,6.35973216791084,6.403596210427454,7.648988091277756,6.349039829594934,,6.3497802787522755,6.349409350034523,6.350582087968284,6.349787917475947,6.364098885277775,6.349689605893321,6.349795934831858,6.356669410764063,0.0,0.0,30.19769641109438,3.167113277656,2.105513976972535,0.0,13.86013232565457,12.836210675289184,0.0,456.93998715991,126.62235791536726,-274.6388068981207,-25.84174920548818,-3.7113352283529824,-10.563031034543107,369.7929981212519,802.0661554192566,17.85200978605666,10.83873182998995,16.70971157123451,2677.0,49.0,3.7749915979526785,2.5841313181184162,0.4714045207910317,0.2759650132061769,0.7735411818046628,0.57118978080909,0.09622504486493763,0.08977918909913549,0.0,0.0,0.0,0.0,0.08333333333333333,0.08333333333333333,0.35296506395158445,0.3247357905059973,0.8250409972374595,0.6503912491943586,22.104083527755577,19.661267263879274,14.009674365106642,12.18332901641902,14.129042593904131,11.345920669776184,10.643977343315155,8.437030139805872,8.770934165743297,6.737069726443717,6.224375054452646,4.527795926274995,4.538856935712472,3.153659904264085,3.080136328113718,2.038064482070293,6.257195705563544,4.597914504182111,10.13170345683243,7.433484071447328,14.319488309111744,10.202721514466793,110.09833150334073,56.869962079274146,32.29250574389838,23.46189705092632,23.114929119506975,23.114929119506975,160.0,188.0,76.83489199999995,44.14110800000004,0.22972972972972974,154.03,12.01388888888889,6.361111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,74.0,0.0,0.0,76.0,0.0,3.0,3.0,73.0,3.0,32.0,73.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,3.0,3.0,0.0,30.0,3.0,0.0,0.0,3.0,0.0,3.0,6.0,0.0,0.0,0.0,0.0,0.0,3.58351893845611,6.171700597410915,4.04305126783455,4.3694478524670215,4.6913478822291435,4.962844630259907,5.25227342804663,5.501258210544727,5.771441123130016,5.971261839790462 +4091,CN(C)C(=N)N=C(N)N,0,20.0,6.268225000000001,2.35,5.9,179.87359553383695,78.46067164999997,1.1048170976669496,6.272900000000002,4.727777777777778,7.753667400000002,162.6279830922985,21.42105263157895,6.7457894736842094,2.473684210526316,5.7894736842105265,169.2740814815211,78.37591705263156,1.3181382821052636,6.79557894736842,4.0,8.11925389473684,194.28071693593,17.862068965517242,6.4928758620689635,2.5172413793103448,4.448275862068965,179.49719097987207,65.77969193103449,1.1014158134066205,6.495089655172413,3.888888888888889,7.944166896551724,155.1069907941792,15.933333333333334,6.497999999999999,2.1666666666666665,2.6,170.77161621526005,54.4126744,1.179775157333334,6.5405333333333315,3.7333333333333334,7.945528533333333,160.48613981696332,10.710526315789474,6.122831578947368,1.631578947368421,1.631578947368421,182.7902589105562,35.28156731578947,0.8630064613957105,6.116247368421054,3.578947368421054,7.694663368421054,107.13498914180536,10.76923076923077,6.1646153846153835,1.7692307692307692,0.46153846153846156,179.2033002848421,34.341606923076924,0.924294857272846,6.176461538461537,3.230769230769231,7.726459692307694,116.48559378242894,5.666666666666667,6.0169999999999995,1.0,0.0,180.6810231114915,11.264567999999999,0.8120197374748334,6.020666666666667,2.8333333333333335,7.631712000000001,86.90925031230653,1.0,4.8400000000000025,1.0,0.0,184.917652024249,1.016064,0.4446129048489999,4.8400000000000025,1.0,6.718464000000001,31.083744430930256,,,,,,,,,,,,7.75,0.13021874999999988,0.0367183087893028,0.5275000000000001,3.65,1.2576236457061267,36.75038692749999,0.15275606325012747,0.12249999999999997,1.4275000000000002,0.06247450999999995,39.818546693222494,-0.5921052631578947,-0.0396266447368422,-0.03384843835176823,0.17513157894736842,1.486842105263158,-1.1195465942579375,-2.735639306447371,-0.041510815758780004,-0.030947368421052748,-0.6356871345029241,-0.02334465736842102,-4.999109831602883,2.2327586206896552,0.0588510775862068,0.022520684759266676,-0.12922413793103454,0.49137931034482757,0.8805742205413172,10.506716317327587,0.051084209116282864,0.051365517241379256,0.6742241379310343,0.030861365862068963,10.864572464113154,-3.0833333333333335,-0.05374875000000003,-0.022592845123011372,-0.10583333333333335,-1.4,-0.7618634003456073,-14.642479500833334,-0.07558620633894071,-0.049653333333333376,-0.39453703703703713,-0.026507203333333305,-17.771322364641232,-0.15789473684210525,0.010252302631578943,0.016740800972543973,-0.09855263157894735,-0.6973684210526315,0.39141549026646055,-0.7838475761842103,0.008012234351671149,0.006963157894736859,0.05875730994152042,0.006740053157894734,-0.21963406909298497,-2.019230769230769,-0.044857211538461526,-0.016947780212291937,-0.14673076923076925,-2.019230769230769,-0.3743739344592004,-9.504354785192307,-0.028964238528585186,-0.040707692307692306,-0.3163888888888889,-0.022375171538461525,-8.037943155521909,-5.416666666666667,-0.07145624999999993,-0.0029000630233557423,0.12250000000000001,-0.5,-0.018191892632452366,-25.708301719166656,-0.07478360788645254,-0.07186666666666659,-0.8302777777777779,-0.031008343333333323,-24.81510687340986,6.25,0.07700625000000016,0.0072798373994013834,0.12250000000000005,2.25,0.05462239739592233,29.706315122500005,0.09544586993192233,0.07840000000000012,0.6669444444444448,0.03286968999999992,30.323327957463544,,,,,,,,,,,,,,,0.4444444444444444,1.0,0.3333333333333333,0.0,0.6666666666666666,-0.3333333333333333,0.5459426591504583,0.0419591446848786,0.0419591446848786,0.6804951724739983,0.24890341599803228,0.19960561291409964,1.2264378316244564,0.44850902891213196,1.8141697116720021,0.8184635280921638,0.9957061835798383,0.0,0.0,0.9957061835798383,6.455072267599999,400.0,125.36450000000002,47.0,118.0,3597.471910676739,1569.2134329999994,22.096341953338992,125.45800000000003,94.55555555555556,155.07334800000004,3252.55966184597,407.0,128.17,47.0,110.0,3216.207548148901,1489.1424239999997,25.044627360000007,129.11599999999999,76.0,154.26582399999995,3691.33362178267,518.0,188.29339999999993,73.0,129.0,5205.41853841629,1907.6110660000004,31.941058588791993,188.3576,112.77777777777777,230.38083999999998,4498.102733031197,478.0,194.93999999999997,65.0,78.0,5123.1484864578015,1632.380232,35.393254720000016,196.21599999999995,112.0,238.365856,4814.5841945089,407.0,232.6676,62.0,62.0,6946.029838601135,1340.6995579999998,32.794245533037,232.41740000000004,136.00000000000006,292.39720800000003,4071.129587388604,280.0,160.27999999999997,46.0,12.0,4659.285807405895,892.8817799999999,24.031666289093994,160.58799999999997,84.0,200.88795200000004,3028.6254383431524,136.0,144.408,24.0,0.0,4336.344554675796,270.349632,19.488473699396,144.496,68.0,183.16108800000003,2085.8220074953565,24.0,116.16000000000005,24.0,0.0,4438.023648581976,24.385536000000002,10.670709716375997,116.16000000000005,24.0,161.24313600000002,746.0098663423262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,155.0,2.604374999999998,0.734366175786056,10.55,73.0,25.152472914122534,735.0077385499998,3.0551212650025494,2.4499999999999993,28.550000000000004,1.249490199999999,796.3709338644499,-11.25,-0.7529062500000018,-0.6431203286835964,3.3275,28.25,-21.271385290900813,-51.977146822500046,-0.7887054994168201,-0.5880000000000022,-12.078055555555558,-0.4435484899999994,-94.98308680045479,64.75,1.7066812499999973,0.6530998580187336,-3.747500000000002,14.25,25.536652395698198,304.6947732025,1.481442064372203,1.4895999999999985,19.552499999999995,0.8949796099999999,315.0726014592815,-92.5,-1.612462500000001,-0.6777853536903412,-3.1750000000000003,-42.0,-22.85590201036822,-439.274385025,-2.2675861901682213,-1.4896000000000014,-11.836111111111114,-0.7952160999999992,-533.139670939237,-6.0,0.38958749999999986,0.636150436956671,-3.744999999999999,-26.5,14.873788630125501,-29.786207894999993,0.3044649053635037,0.2646000000000006,2.232777777777776,0.2561220199999999,-8.346094625533429,-52.5,-1.1662874999999997,-0.4406422855195904,-3.8150000000000004,-52.5,-9.733722295939211,-247.113224415,-0.7530702017432148,-1.0584,-8.226111111111111,-0.5817544599999996,-208.9865220435696,-130.0,-1.7149499999999982,-0.06960151256053781,2.9400000000000004,-12.0,-0.43660542317885676,-616.9992412599997,-1.794806589274861,-1.7247999999999981,-19.92666666666667,-0.7442002399999997,-595.5625649618366,150.0,1.848150000000004,0.1747160975856332,2.9400000000000013,54.0,1.310937537502136,712.9515629400001,2.290700878366136,1.8816000000000028,16.006666666666675,0.7888725599999981,727.759870979125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8265730654172694,0.6165697477087964,0.5045726575261485,0.2990747316799348,0.3850849930561872,0.17547029440387124,0.24765759151652503,0.08232599275763178,0.16928926245714151,0.03704745822595882,0.13608276348795434,0.028867513459481287,,,,,7.08371893177849,5.921273883909894,3.1982188797728446,2.376782215696891,0.37862517771864734,-0.412796995573881,3.1242100588360793,0.9776537709248283,5.0520002571582125,0.9949519283915402,14.563823152775866,11.235509155169485,14.052979315759272,11.969990326809574,1.7971797547873793,0.9778379467452859,3.181461350647161,2.4135411662653015,5.013226377777942,1.607540705411327,3.3433693687027626,2.6016338793346603,20.598923193302628,15.58413379439579,0.3275625466988199,0.6708165783717372,0.6708165783717372,0.6708165783717372,0.6708165783717372,0.6708165783717372,3.376600515177144,131.89342114105554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8831694139723547,1.375488750216347,1.375488750216347,1.375488750216347,1.375488750216347,1.375488750216347,211.8818588519897,502.5477129043321,44.05723209000079,25.127385645216606,45.33854624294678,,5.0,63.0,0.0,0.0,11.91910913748767,0.0,0.0,4.899909730850478,14.09534396535438,0.0,4.992404732635669,16.876618560115894,3.9999999999999996,9.0,3.0,0.0,6.0,0.0,0.05555555555555561,-3.0,0.1558620689655173,0.0,-0.1558620689655173,0.222222222222222,0.2320722891566266,0.0,0.5800000000000004,0.9222222222222223,0.4241379310344831,0.5800000000000004,0.7000000000000003,4.913483932354124,0.3776323021639074,0.3776323021639074,6.124456552265984,2.2401307439822906,1.7964505162268969,11.037940484620108,4.0365812602091875,0.4819277108433734,0.55,0.0,0.35000000000000003,0.5,0.17663047326778433,-0.2709431937610889,-0.05308168957585686,-0.013547159688054446,-0.054188638752217785,0.8233695267322155,1.26301178438314,0.08139670670843316,0.063150589219157,0.08420078562554267,0.5784859292833261,1.0903225806451615,1.329244060475162,2.1002591310526895,1.0426540284360188,0.6506849315068494,2.4435147625170828,1.0905587131385996,1.5672188438207557,1.2620000000000002,1.4652656158785755,1.4245601926289626,1.2880774111078945,0.7206896551724139,0.6278334698741342,0.5068788609414793,1.8630495178950808,1.1577704298535663,0.4244173511388736,0.7216510219590447,0.660307295151097,0.6479655172413792,0.28047855815233075,0.6011703675295901,0.7109877556858837,1.364731182795699,1.3676717062634989,1.5617534152575245,1.4107424960505528,1.4792237442922376,2.0156353786401975,1.367642758723079,1.7157339408512786,1.3502666666666665,1.1954336122462217,1.3975168432693597,1.5526407049067261,0.9790322580645162,0.9323542116630671,0.3622653651435502,0.995260663507109,1.2191780821917808,0.4847817274812132,0.977931906088501,0.7607709191964956,0.9515,1.1772718427709672,0.9033404183562229,0.8731731000005286,1.2116625310173699,1.3199933543778037,1.5996142282002093,1.3853445133065985,1.4715489989462593,1.2264542349018144,1.2090236503223866,1.1020697279661382,1.305153846153846,1.3395302887421976,1.3361432095696681,1.126228340393475,1.613978494623656,1.489906407487401,1.2159886326939877,0.0,0.6289954337899543,0.8536058007587065,1.613591446338204,1.3349501802457957,1.526333333333333,1.6082895504962054,1.4378021265526273,1.494422853191964,0.0,0.0,0.16680025381892508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,3.0,0.0,1.1111111111111116,0.5,0.32000000000000006,0.0,0.0,0.0,0.0,0.0,1228.9792510519944,1462.8934133399248,825.1814224578035,700.5356927105065,7.413482356077839,0.41922228361355424,4.305585353234095,0.721829146996071,0.0,0.5,1.4387586809150081,2.9464393446710155,2.9464393446710155,2.9464393446710155,2.9464393446710155,2.9464393446710155,0.375,0.0,0.11111111111111117,0.0625,0.053333333333333344,0.0,0.0,0.0,0.0,0.0,0.6019444444444445,9.0,3.92,4.5,53.85436592037309,1.0,3.0283261658188705,22.06270274947167,,16.532138289708662,15.734035236160498,14.99619429749368,16.53879334512952,28.860680508265737,16.19046447036541,16.58050235362805,25.151330497625388,-0.07640067911714771,-0.30430828691599504,-0.9218408872259756,0.33200299326515337,0.40735400144196104,-0.8902079712641996,-0.07443838106641311,-0.2717457813167712,-0.25263157894736943,-0.44531498038733736,-0.37366691420902765,-0.12554726997240662,0.28809788654060065,0.4519401206524164,0.6133366568840355,-0.2449746690635726,0.134624468587624,0.7001889822506439,0.2858940325731783,0.33441689992125556,0.4193103448275859,0.4723111298991483,0.4939833199503123,0.27285205931341566,-0.39784946236559143,-0.41275737940964785,-0.6153018989151641,-0.2006319115323855,-0.3835616438356164,-0.6057960208897302,-0.3984306214168455,-0.4948164068301075,-0.4053333333333338,-0.2763832133359279,-0.42428829507159527,-0.446307659130766,-0.02037351443123939,0.07873138569967038,0.45592516443516307,-0.18682963332501865,-0.1910598413842826,0.31123420079040404,-0.021328961181566884,0.05245117071753591,0.05684210526315805,0.04116098769983917,0.1078848502836555,-0.005515873564777009,-0.26054590570719605,-0.3444758265492609,-0.4615621135913906,-0.2781625956981407,-0.553213909378293,-0.2976836001274436,-0.258619176008737,-0.18961105642764733,-0.3323076923076924,-0.22163845106051758,-0.3581488120268817,-0.20186430251835497,-0.6989247311827957,-0.5487401007919366,-0.07898138882149773,0.23222748815165878,-0.136986301369863,-0.014465291500016316,-0.6995382598252146,-0.48956228836559873,-0.5866666666666662,-0.5816306674450282,-0.4963359189745281,-0.6232047358381775,0.8064516129032258,0.5913606911447101,0.19826178381947235,0.23222748815165886,0.6164383561643836,0.04343302353006659,0.808326594794871,0.6248254105346793,0.6400000000000012,0.46721151975092445,0.5261296167028752,0.7615377876818611,,,,,,,,,,,,,,,0.4999999999999999,13.059403715971456,24.12583165139772,24.12583165139772,24.12583165139772,24.12583165139772,24.12583165139772,16.32752740504802,7.366171752829475,8.961355652218545,0.0,0.0,8.961355652218545,639.0555843849876,516.3867873456252,174.78032130112592,0.0,10.0,8.0,6.0,4.0,0.0,0.0,0.0,0.0,129.10144535199998,8.0,3.6109179126442243,4.290459441148391,5.0689042022202315,5.783825182329737,6.555356891810665,7.284134806195205,8.049746290952191,8.78523362361273,9.546884034617925,0.5833333333333333,0.9909999999999999,1.1868892169835616,0.5377029389726087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5842731437125749,0.9725490196078432,1.0099417334304441,0.5384935375534299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,16.36724468517485,0.0,5.959554568743835,5.959554568743835,0.0,5.409283605791522,0.0,4.992404732635669,0.0,0.0,0.0,14.09534396535438,0.0,57.866913719542495,-88.76524036993477,-17.39039415988413,-4.438262018496739,-17.753048073986957,269.7487725715322,413.78247253439736,26.666837930116657,20.689123626719866,27.585498168959823,0.4,0.8249092298128731,0.2410450804321366,62.30198597479641,0.14340337398359904,35.41779312943562,0.175090770187127,3.0,0.0,0.33289741275820667,0.6817418707535913,0.6817418707535913,0.6817418707535913,0.6817418707535913,0.6817418707535913,-1.243829999999999,,0.7142857142857145,0.9283387622149836,1.1262479272882393,0.7125008924109377,-2.5909090909090904,0.8059210526315791,0.7013149655604256,-1.5966231412171439,37.22349999999998,0.0,5.409283605791522,4.899909730850478,16.459739686960038,0.0,14.09534396535438,0.0,0.0,0.0,2.833213344056216,0.0,4.04305126783455,0.0,5.3981627015177525,0.0,6.816735880594968,0.0,8.26796230533871,11.666666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.819999999999997,0.0,0.0,0.0,0.0,0.0,0.0,3.4583333333333335,-0.03824074074074013,23.737784339671233,11.46733495432437,0.0,0.0,30.91436283369253,0.0,5.409283605791522,0.0,4.992404732635669,0.0,0.0,0.0,10.754058779452173,11.685462874251497,9.335326473284185,44.125405497269526,,32.90554588363597,31.261771722246273,29.74210855520873,32.91925262531785,58.297118592287646,32.201834603276396,33.00515642679012,50.65746613767786,9.335326473284185,44.12540549726951,,32.34999032808042,30.53973046274573,28.86613794509565,32.3650852645538,60.31227010743915,31.575007117896273,32.45968923135424,51.8992841364023,4.233766315748669,32.99632785649692,,24.554866744789017,23.33071606391507,22.199109670016988,24.565074919591076,43.47293005143286,24.030784435436097,24.62905244769032,37.77995555371215,1.0372584970315761,4.902822833029948,,3.6561717648484415,3.473530191360697,3.3046787283565258,3.657694736146428,6.477457621365294,3.5779816225862664,3.6672396029766805,5.628607348630873,2.116883157874335,22.06270274863476,,16.532138021183066,15.734034612480356,14.99619293619195,16.538793078482364,28.86068050826503,16.190464085263926,16.58050209845733,25.15133049759258,19.450980392156865,0.0,3.3785185185185185,0.0,0.0,9.982777777777777,0.0,20.19883466860888,0.0,0.0,0.0,0.0,0.0,1.4997222222222222,0.0,0.0,0.0,10.769870751068598,270.25320345298627,28.775173618300162,58.92878689342031,58.92878689342031,58.92878689342031,58.92878689342031,58.92878689342031,45.0,75.9754623855313,57.362482838088454,36.3591254993422,91.49,91.49,0.6666666666666666,4.31748811353631,4.0,2.7745152011266696,2.9548760955957167,,2.947733935532063,2.9477449554211406,2.9477503160109615,2.947733825441457,2.9474217430742438,2.9477392099775237,2.947733129429582,2.9475138773204077,0.3082794667918522,0.32831956617730185,,0.3275259928368959,0.3275272172690156,0.32752781289010685,0.3275259806046063,0.32749130478602706,0.32752657888639153,0.32752590326995357,0.32750154192448977,0.9151155139816521,0.9780962038966691,,0.9756762020630374,0.9756799404833699,0.9756817590209393,0.9756761647154986,0.9755702871474249,0.9756779913835314,0.9756759285978576,0.9756015459268601,108.52000000000012,24.062497405383436,27.047689840704756,,27.1969026013264,27.202002730072287,27.207334819824847,27.19686266063129,27.158958664085247,27.199008695957563,27.196613255805513,27.165769653134028,2.6736108228203816,3.0052988711894173,,3.0218780668140446,3.02244474778581,3.0230372022027607,3.021873628959032,3.0176620737872497,3.022112077328618,3.021845917311724,3.018418850348225,3.07529398856195,3.1922410826864764,,3.1977425762086455,3.1979300847156553,3.198126083785291,3.197741107632425,3.1963464455054935,3.19782001197843,3.197731937237572,3.196597196472703,0.0,4.958055555555555,7.0522222222222215,9.982777777777777,-0.03824074074074013,0.0,0.0,0.0,3.3785185185185185,127.45128493628648,18.95810865177432,-29.080885142588393,-5.697365917562737,-1.4540442571294196,-5.816177028517679,88.37392925219754,135.56162871457437,8.73647440968803,6.778081435728717,9.037441914304958,96.0,8.0,0.9772838841927122,0.34814239699997196,0.0,0.0,0.23570226039551584,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.439157588755425,5.549127729379167,4.036581260209188,2.3925978534394785,3.850849930561872,1.7547029440387123,1.9812607321322002,0.6586079420610542,1.0157355747428491,0.2222847493557529,0.5443310539518174,0.11547005383792515,0.0,0.0,0.0,0.0,1.412225138403351,0.374071198499986,1.052198841323242,0.1641680799386462,1.3608276348795432,0.18213672050459181,33.86335853677223,20.96837135342472,20.96837135342472,20.96837135342472,20.96837135342472,20.96837135342472,36.0,36.0,19.51472299999999,12.745276999999994,0.0,8.05,5.583333333333334,2.111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,5.0,19.0,0.0,2.0,2.0,17.0,2.0,8.0,17.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,1.0,3.0,0.0,9.0,5.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3978952727983707,0.0,2.772588722239781,2.833213344056216,2.833213344056216,2.1972245773362196,0.0,0.0,0.0,0.0 +5282230,COc1ccc(/C=C/C(=O)Nc2ccccc2C(=O)O)cc1OC,0,25.21951219512195,6.474509756097561,3.2439024390243905,9.268292682926829,160.1071947769447,99.75764195121951,1.5166985215227562,6.530112195121951,5.980352303523036,7.973253463414633,231.1462425574931,26.214285714285715,6.513190476190477,3.7857142857142856,8.30952380952381,145.4546017047845,100.04053288095243,1.8010282127619053,6.651285714285714,3.8293650793650795,7.927175904761901,272.0815894254288,23.0,6.503939393939394,3.5606060606060606,7.166666666666667,152.22154872857254,86.61487686363634,1.5793848462893028,6.602450000000001,4.12121212121212,7.977740181818185,234.9984014952754,21.5,6.437923076923077,3.2948717948717947,6.256410256410256,152.58969077162814,79.80917614102565,1.5134144444133977,6.537661538461538,3.780982905982904,7.9196951282051264,221.72204730521395,19.209302325581394,6.4090930232558145,2.7906976744186047,5.011627906976744,155.91985954122956,69.82752158139535,1.3601032433714297,6.491339534883721,3.9140826873385004,7.919777674418602,195.81998863485518,16.01098901098901,6.33745054945055,2.4285714285714284,3.989010989010989,160.83458207380642,56.51415928571431,1.2004661086014834,6.396120879120878,3.7643467643467634,7.919206549450551,169.70600669332484,15.556962025316455,6.247569620253165,2.3417721518987342,4.329113924050633,160.97219267744734,54.941610556962,1.1779922529206965,6.305603797468353,4.386779184247539,7.82653124050633,162.28435487457892,14.529411764705882,6.040647058823531,2.426470588235294,4.161764705882353,163.08135712265926,51.97936292647058,1.1595580254092497,6.098635294117648,3.291258169934641,7.648219352941177,157.37140376201776,18.09259259259259,6.171481481481485,2.8703703703703702,5.166666666666667,156.68210392556827,66.55727851851852,1.36558140946924,6.255698148148151,3.514917695473252,7.715274222222223,191.96650426129065,7.6204640095181455,0.16706127305175486,0.034081819358051026,0.5734681737061273,4.44973230220107,1.4189261555735218,36.016501620464005,0.23010734779202377,0.15263950029744194,2.1572146209266974,0.1119316692444973,48.32887093335324,0.06420498002889385,-0.012341122064530722,-0.018284070018487846,0.23082915498144532,1.054913458542251,-0.0774888372814047,0.348435093240976,-0.006574476914657318,-0.009344726778278247,-0.23846704059375087,-0.009874672728817889,0.42905883120671584,0.3640149261803037,0.003685511870639789,-0.00021520438525784554,-0.008427523299623181,0.01183458619508577,0.11010964002403682,1.7934969904007296,0.027750862663462182,0.002985887729165538,0.2910895590848,0.0024073507111567697,4.503652706887718,-0.48569227718543617,-0.0057789716133558895,0.0015569439552588875,-0.13131682911575832,-0.4916334904437227,-0.18862594137970248,-2.342867888444001,-0.023916311731037216,-0.005349756707698409,-0.13345845387784716,-0.0032542621150414173,-4.650722619451348,-0.9477470497904071,-0.006940995116417402,0.0036750769720319304,-0.14437004551554306,-0.6859773390700441,-0.2430568180734832,-4.610669674916648,-0.05308161079301981,-0.007029857642875913,-0.08012853029834895,-0.005430475824191032,-10.03888746788616,-1.1034444437180906,-0.03881916637794091,-0.006257710203344202,-0.05484045995646236,-0.7448274509547561,-0.04126048051865016,-5.067362895457308,-0.003854645066392336,-0.03500653326447495,-0.3267625526697508,-0.025721384602310243,-2.2337985023787237,-0.2987597798176189,0.007874046491313935,0.0008389372013769725,0.0683965993719832,0.3671864998983428,-0.1104824160333514,-1.506660476283704,-0.017294434954985824,0.006059573490764242,0.3557780722913744,0.006988649372359732,-4.017056806426805,1.5904398642264759,0.023088834552262263,0.001032676878652401,0.12237113762816249,0.9745862056898905,0.25638245233324575,7.57305646812997,0.0457873127783216,0.022340557091367168,0.026489348465938,0.01340637523182981,10.65931267946387,1.1207284024059752,0.031373144292418505,0.0048319040197654884,0.0028642562848392767,0.5136823319452708,0.10236781832128124,5.2298977110626375,0.01821294171420745,0.028321610813669115,0.14453936883542276,0.01994426210148281,4.523189219630549,,,0.4611111111111112,1.34375,0.7291666666666666,0.0625,0.6145833333333334,0.11458333333333333,0.6481795565889616,0.015373737786031905,0.02254040445269857,1.0625501416328758,0.2952588645528567,0.18579296275999035,1.7107296982218374,0.48105182731284707,1.9949701119468644,1.5358622018219252,0.08451731189418965,0.3745905982307491,0.0,0.45910791012493873,7.978309088878059,1034.0,265.4549,133.0,380.0,6564.394985854733,4090.06332,62.184639382433005,267.7346,245.19444444444446,326.90339199999994,9476.995944857217,1101.0,273.55400000000003,159.0,349.0,6109.093271600948,4201.702381000002,75.64318493600003,279.354,160.83333333333334,332.94138799999985,11427.426755868008,1518.0,429.26,235.0,473.0,10046.622216085789,5716.581872999998,104.23939985509398,435.7617000000001,271.99999999999994,526.5308520000002,15509.894498688176,1677.0,502.158,257.0,488.0,11901.995880186996,6225.115739000001,118.04632666424502,509.9376,294.9166666666665,617.7362199999999,17294.31968980669,1652.0,551.182,240.0,431.0,13409.10792054574,6005.166856,116.96887892994296,558.2552000000001,336.61111111111103,681.1008799999997,16840.519022597546,1457.0,576.7080000000001,221.0,363.0,14635.946968716384,5142.788495000002,109.24241588273499,582.0469999999999,342.5555555555555,720.6477960000001,15443.24660909256,1229.0,493.55800000000005,185.0,342.0,12716.80322151834,4340.387233999998,93.06138798073502,498.1426999999999,346.55555555555554,618.295968,12820.464035091734,988.0,410.7640000000001,165.0,283.0,11089.532284340828,3534.5966789999993,78.84994572782898,414.70720000000006,223.8055555555556,520.078916,10701.255455817209,977.0,333.26000000000016,155.0,279.0,8460.833611980686,3594.09304,73.74139611133896,337.8077000000002,189.8055555555556,416.62480800000003,10366.191230109695,312.43902439024396,6.8495121951219495,1.3973545936800922,23.51219512195122,182.43902439024387,58.17597237851439,1476.6765664390243,9.434401259472974,6.25821951219512,88.4457994579946,4.589198439024389,1981.4837082674826,2.696609161213542,-0.5183271267102904,-0.7679309407764896,9.694824509220703,44.30636525877455,-3.2545311658189973,14.634273916120991,-0.27612803041560735,-0.39247852468768635,-10.015615704937536,-0.41473625461035135,18.020470910682064,24.02498512790004,0.24324378346222605,-0.014203489427017806,-0.55621653777513,0.7810826888756608,7.2672362415864304,118.37080136644815,1.831556935788504,0.1970685901249255,19.2119108995968,0.1588851469363468,297.2410786545894,-37.88399762046402,-0.45075978584175935,0.12144162851019323,-10.242712671029148,-38.34741225461037,-14.712823427616794,-182.74369529863208,-1.8654723150209027,-0.4172810232004759,-10.409759402472078,-0.25383244497323054,-362.75636431720517,-81.50624628197501,-0.5969255800118966,0.316056619594746,-12.415823914336704,-58.994051160023794,-20.902886354319556,-396.5175920428317,-4.565018528199704,-0.6045677572873285,-6.891053605658009,-0.46702092088042874,-863.3443222382098,-100.41344437834624,-3.5325441403926225,-0.5694516285043224,-4.990481856038075,-67.7792980368828,-3.754703727197165,-461.130023486615,-0.35077270104170255,-3.18559452706722,-29.73539229294732,-2.340645998810232,-203.27566371646384,-23.602022605591895,0.6220496728138009,0.06627603890878082,5.403331350386672,29.00773349196908,-8.728110866634761,-119.02617762641262,-1.3662603614438802,0.4787063057703751,28.106467711018578,0.5521033004164189,-317.34748770771756,108.14991076740036,1.5700407495538338,0.07022202774836327,8.321237358715049,66.27186198691255,17.43400675866071,514.967839832838,3.1135372689258687,1.5191578822129674,1.8012756956837839,0.9116335157644271,724.8332622035432,60.519333729922664,1.6941497917905992,0.2609228170673364,0.15466983938132095,27.73884592504462,5.527862189349187,282.41447639738243,0.9834988525672024,1.5293669839381323,7.805125917112829,1.0769901534800717,244.25221786004965,0.7302805524402481,0.5531816325025852,0.46180975422033327,0.28330670812122405,0.2995868582519968,0.1450830660955309,0.19254191657547085,0.07927065583444118,0.12826795398093038,0.04247761956588675,0.08595759127139642,0.023432847876075004,0.05903790694442104,0.01234953206957733,0.03873575314214735,0.006821493301712511,8.029470204444655,5.687963065734293,3.5554520409476176,2.1870153734493925,0.46267164312653064,-0.528355825772532,3.2054075190482685,0.9726794125031363,6.023628314917143,0.9966232906076644,14.54029619967402,10.948447860480593,16.015123548869926,11.699513209908515,1.9958224924452614,0.7414748709717652,3.50151408446558,2.2368021826007265,7.00937382005166,1.4433017484526083,3.7144225142297542,2.432829103317642,20.901748545598185,14.700562844695432,0.2730559683811213,0.5894635500529956,0.7121336873379955,0.8434034067883068,0.8692021532842406,0.8778017354495519,1.7325126881511836,782.7286296355626,0.0,2.0,0.0,0.0,12.0,0.0,2.0,0.0,0.0,3.808662409796444,2.013864025128989,1.3180268296904325,0.5734091464469984,0.42706768303236586,0.37828719522748777,129.07964833140767,1532.511399975769,77.54409837812806,37.378326828677295,75.72799409700195,,13.0,514.0,11.876485017303356,9.589074368143644,11.250837766380558,11.49902366656781,5.563451491696996,25.318551785034636,43.517652990419464,0.0,5.316788604006331,14.580253302440804,11.066666666666668,32.25,17.5,1.5,14.75,0.0,0.03888888888888883,2.75,0.20025551684088239,0.08588322246858815,-0.11437229437229424,0.04433760683760679,0.18785103011093474,0.0,0.6373983739837399,0.8763888888888886,0.4371428571428575,0.5515151515151517,0.8320512820512818,15.55630935813508,0.3689697068647657,0.5409697068647656,25.501203399189016,7.086212749268562,4.4590311062397685,41.0575127573241,11.54524385550833,0.5261489698890652,0.180722891566265,0.0,0.3162650602409638,0.1111111111111111,0.38832555255959905,-1.0297355755705009,-0.0762076904719446,-0.025115501843182942,-0.06864903837136671,0.6116744474404009,1.6219971491578307,0.0579682923508171,0.039560906077020265,0.06238450573683964,-3.549483999918336,0.7468123861566482,0.7957952870996349,1.4984816750983168,0.7291049199762892,0.5298573975044564,1.1723704186951538,0.7510401945286649,1.0713618791613264,0.7689392273334563,0.7075447953759045,0.8320411408432477,0.9256136031182659,0.8253731696354646,0.8932111414324851,1.0582320598954444,1.1857160819816424,0.926835196888673,0.9725602980812238,0.8245411159165104,0.8859282180997927,0.882383800119305,0.5472354108084041,0.9145361514766203,0.8479596228845518,0.9322844732680796,0.9004347004347002,0.9060852205167123,1.3849877646558144,1.0161456190867957,1.1886484513315145,0.9358544986089018,1.100710783929613,0.8922870465388208,0.8690757202392946,0.9021563163990162,1.0405107968206464,1.0450411197647185,0.979540133938516,0.8980484695775963,1.2363697770915758,1.0733117771421465,1.200019916296235,1.0492708361437761,1.2025586429663024,0.9774234062321306,0.9529332795104923,0.9868298788355826,1.1527073823748464,1.162776333736521,1.3281959716742324,1.2328992932091836,1.000182390223884,1.1974496092143152,0.9795299910806293,1.155836537723366,0.9735843049559294,1.320057370169028,1.2936739237047172,1.3348062043603413,1.0077112202726857,1.048508384470202,0.9448552369851213,0.7934971033691677,0.7644834287515101,0.9130846815135721,1.031543436995936,1.0508026780534576,1.0371665455864514,0.9569956112795753,1.0775230885199394,0.9201092754512875,1.0685443590674988,0.8218074114891857,0.7427192712358953,0.6917836852558273,0.6880034171344886,0.7609311104120794,0.755697985161535,0.822855192271499,0.7750005164160975,0.7553454521445425,0.9415500148246144,0.7266208038570734,0.8152267389751051,0.7883019631653511,0.6153344385228443,0.6609085929060634,1.0554018749039495,0.7978312537136067,0.9112344235301173,0.7943460864352501,0.9268965795600569,0.6291755204248821,0.7202569719996526,0.6107749413431958,0.9189305830969113,5.0,0.14447505356596266,2.666666666666668,1.5625,1.4355555555555557,0.736111111111111,0.34448979591836737,0.2708333333333333,0.1728395061728395,0.15250000000000002,4490.948829586083,4946.591885037189,2274.361427398277,2095.2076244202863,15.708701936249263,0.4972429553001625,7.897660561539294,0.9890322980894936,1.0,0.1111111111111111,1.5488895948216397,3.343687979489095,4.039525174927651,4.784142858171085,4.930484321585718,4.979264809390596,0.2,0.008498532562703685,0.08080808080808083,0.044642857142857144,0.044861111111111115,0.0272633744855967,0.015658627087198517,0.014254385964912278,0.008641975308641974,0.007625000000000002,0.4522539444711023,20.3136,10.222222222222221,6.046400951814396,138.88277757466176,1.0,4.074059477901256,131.76972857331418,,100.1165635136088,98.53219054105637,99.5806834968912,100.13729036177307,138.8898758095743,99.5510396881322,100.20127522712905,121.97003014087693,0.008425337348053907,-0.07387183061096089,-0.5364757622356409,0.4025143252321677,0.23707346574993643,-0.05461090203815727,0.009674318092099224,-0.028571347146200122,-0.061220894722981825,-0.11054395713826104,-0.08822054379666405,0.008877898922952269,0.04776807891561986,0.022060839135938065,-0.006314345575187392,-0.014695712309820093,0.00265961756603465,0.07760068386330587,0.04979653519101624,0.12059963721168974,0.01956169748555956,0.13493769060389252,0.02150732431139115,0.09318762511746595,-0.0637352629155908,-0.03459192850497188,0.04568253645447176,-0.22898712629003085,-0.11048608254490615,-0.13293569974644734,-0.0650498461269992,-0.10393545430219517,-0.03504831119909048,-0.06186609926670904,-0.029073649459591178,-0.09623073185104646,-0.12436867999201204,-0.04154760100665048,0.10783100906154472,-0.2517490109041783,-0.15416148488993908,-0.17129631243934684,-0.12801547811342504,-0.23068194606717285,-0.04605529780415381,-0.03714444057676899,-0.04851599070079982,-0.20772029790909136,-0.14480016470648788,-0.2323648423648424,-0.18360845521781,-0.0956294742601797,-0.16738702473996594,-0.029078666537070714,-0.14069558861813808,-0.016751507952176527,-0.22934124650735388,-0.15147428980867,-0.2297954169353616,-0.046220788097019475,-0.03920493285506771,0.04713268579531648,0.02461538782784474,0.11926834392562631,0.08251878426859817,-0.07786340085379218,-0.04183250478240905,-0.0751581169438228,0.03969859360752764,0.16492474547504185,0.06243674752222373,-0.08311919415552725,0.2087064333930293,0.1382057859999034,0.030299934044115382,0.2133878447644618,0.2190213117332495,0.18068766392541227,0.21026629815226358,0.19898240198616002,0.14636157120426296,0.012279421903120001,0.11977285179715914,0.2205578668320917,0.1470682626420331,0.18779423692467156,0.14177365266223868,0.004994621177193802,0.11544117647058828,0.07214457068056847,0.1452083760431383,0.07914976157418806,0.18554575164672335,0.06700277637341966,0.1781824771854128,0.09359186615114895,9.162753395874674,17.053876914701114,5.4539820948163,14.546458446918527,30.01464652281235,38.56688366259071,40.927653409251306,41.80643389705619,42.39233633608058,47.87928268672474,36.860692843726206,2.0284154854605516,8.990174357537978,0.0,11.01858984299853,6426.670400707374,6303.313595639319,820.7031496554619,45.0,33.0,41.0,49.0,56.0,50.0,46.0,44.0,45.0,327.11067264400043,25.0,4.762173934797756,5.579729825986222,6.428105272684596,7.2633296174768365,8.113426639943654,8.952734767106872,9.802616942151154,10.64320815639566,11.492753369429062,0.6991869918699186,1.0045853658536585,1.1187226978963218,0.6647077577261494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6792095954432599,0.990339550454328,1.0210505746718066,0.6570120834222795,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,19.897041906447136,0.0,11.49902366656781,5.907179729351506,0.0,4.794537184071822,4.794537184071822,0.0,0.0,18.19910120538483,35.90493987237732,6.076020106833881,25.470432848935623,224.4243285342584,-595.1133361994755,-44.04258141289292,-14.514959419499398,-39.67422241329836,353.50397686566606,937.3980637762937,33.50151696523513,22.863367409177897,36.0537716837036,0.46153846153846156,0.738960284561578,0.1858669843689044,88.07111668167526,0.1272040976346909,60.72801108666748,0.26103971543842197,7.0,0.24,0.2891039776163691,0.6241074238023102,0.7539871141606607,0.8929718001892034,0.9202867871997801,0.9293917828699725,3.0539000000000014,,1.3928571428571428,1.6142391810144252,1.0909205148491539,1.3888280739756562,-5.929653139877578,1.4547888616891067,1.3827369942067755,-2.314297018533557,90.61100000000003,24.169327670584444,0.0,0.0,0.0,0.0,19.536383686561397,59.66749256945914,0.0,11.49902366656781,3.9318256327243257,0.0,5.209486152841421,0.0,6.68586094706836,0.0,8.252967195000798,0.0,9.86635665419792,28.666666666666664,11.445003167009009,0.0,0.0,0.0,0.0,0.0,2.164274063428556,0.0,41.188,0.0,23.109849979695515,0.0,0.0,0.0,2.917216080876795,0.0,-1.5340229159746097,45.86763061374919,14.790514511606428,5.687386274683562,11.49902366656781,31.202607494699127,4.794537184071822,0.0,15.921440167465814,48.54058958606515,0.0,6.076020106833881,0.0,27.253018066772125,27.847593413173655,30.336232463325878,263.53945714662837,,200.11705559864612,196.92986115036155,199.07045695087828,200.15884505071483,280.25044042743093,198.98084697112364,200.28732237140753,244.90435070614294,30.336232463325878,263.53945714662825,,198.8402698843605,195.4501419010983,198.0704464789332,198.88575264957063,283.70940475902626,197.64729051457536,199.01981346005147,246.25435730028752,4.657493739285977,203.1262753979837,,156.43288299933798,154.02098456677214,154.57623261228798,156.4613046369766,209.90645525828933,155.5241594401261,156.5667344630221,187.95238641839694,1.2640096859719117,10.980810714442848,,8.338210649943589,8.205410881265065,8.294602372953262,8.339951877113117,11.67710168447629,8.290868623796818,8.345305098808646,10.204347946089289,2.328746869642989,131.76972857331418,,100.1165635136088,98.53219054105637,99.5806834968912,100.13729036177307,138.8898758095743,99.5510396881322,100.20127522712905,121.97003014087693,40.60392156862745,0.0,3.071027844643465,0.0,0.0,0.0,9.098434879547794,41.86307356154407,0.0,2.550748692995717,10.344134874444425,0.0,0.0,0.0,0.0,0.0,0.0,26.937495420313457,427.0660650145188,63.50447338768723,137.09120715905289,165.6205321720337,196.1498571850145,202.14985718501444,204.14985718501444,458.0,122.03807852597181,150.86224038540573,57.94649658183283,84.86,84.86,0.8571428571428571,7.92205708541295,5.643856189774724,4.563637876618934,4.833906569278453,,4.836952011029813,4.837689902602034,4.831994369597914,4.836927304200089,4.792685948612138,4.836989319402111,4.83693517778355,4.81772293591914,0.19015157819245557,0.20141277371993552,,0.2015396671262422,0.2015704126084181,0.20133309873324642,0.2015386376750037,0.19969524785883908,0.20154122164175461,0.20153896574098126,0.2007384556632975,2.3935888227832036,2.4511236916202006,,2.4517535099195253,2.4519060512911315,2.4507280327535153,2.451748401972875,2.442559732457934,2.451761223088548,2.4517500297784127,2.4477701338571665,243.38999999999976,132.57415882048502,130.9849798350698,,130.27288940884014,130.18215082766287,130.8327222428287,130.27580447806508,134.66205926816426,130.2669272572911,130.2750766270711,132.31662225896338,5.523923284186876,5.457707493127908,,5.428037058701673,5.424256284485953,5.451363426784529,5.4281585199193785,5.610919136173511,5.427788635720462,5.428128192794628,5.513192594123474,5.762610915423795,5.75055139623379,,5.745100136972767,5.744403367313283,5.749388315141896,5.7451225133599335,5.778237112706434,5.745054369292216,5.745116926343756,5.760666441240003,10.344134874444425,23.109849979695515,11.64918357254351,1.0200443628374734,-0.38979321538352707,11.445003167009009,2.917216080876795,0.0,3.071027844643465,304.591039907186,129.70117188031986,-343.9328419106584,-25.45345444139142,-8.38860590025996,-22.928856127377223,204.2999543021085,541.7488744834037,19.361474928045162,13.213387182522045,20.836495172438603,1535.0,35.0,1.4622153766480321,0.4629828539177448,0.0,0.0,0.2874574785652648,0.04789837913959047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.25137565482875424,0.06130852169962632,17.526733258565955,13.276359180062045,11.545243855508332,7.082667703030602,9.886366322315896,4.787741181152519,7.8942185795943045,3.2500968892120885,6.285129745065588,2.081403358728451,4.813625111198199,1.3122394810602003,2.9518953472210523,0.6174766034788665,1.781844644538778,0.3137886918787755,3.2132764676997323,0.9060271877323143,4.826279565687871,1.1027967370175054,6.734970651488076,1.2281347094494544,80.98610508208411,51.71558843245472,32.512926888246916,26.746549245235855,25.10871899908069,24.126020851387594,116.0,132.0,46.50548099999999,22.832518999999998,0.3902439024390244,73.06,8.777777777777779,5.583333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12.0,12.0,41.0,0.0,0.0,42.0,12.0,3.0,9.0,33.0,15.0,25.0,27.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,4.0,2.0,0.0,24.0,6.0,0.0,1.0,5.0,0.0,2.0,6.0,0.0,0.0,0.0,0.0,2.0,3.5553480614894135,6.369954491670576,4.0943445622221,4.624972813284271,5.110480629065972,5.595640316036498,5.671603576291966,5.859360706474645,5.978252653135751,6.195743780775795 +9703,CNNCc1ccc(C(=O)NC(C)C)cc1,0,18.914285714285715,5.928134285714286,2.6,5.257142857142857,167.26111816494947,74.1437376,1.3196471197751718,5.9870971428571425,3.6317460317460313,7.488389485714286,189.11792176597248,21.2,6.275340000000001,3.085714285714286,5.0285714285714285,152.28698319057995,78.28640377142854,1.6515275959999998,6.3963028571428575,2.9698412698412704,7.698349485714284,233.1982458271198,16.433333333333334,6.066283333333333,2.8333333333333335,3.5833333333333335,160.89588787594482,59.105482,1.3587037044748331,6.1515933333333335,2.716203703703704,7.580310400000001,184.52041577445866,13.653333333333334,5.966253333333334,2.3866666666666667,2.8,163.28819878117716,47.23161070666665,1.2192781579831335,6.040393333333333,2.6644444444444444,7.528369759999999,160.05581235828922,12.0,5.826025316455697,2.1392405063291138,2.2025316455696204,165.5368854644079,41.39637570886076,1.0669946034692912,5.887386075949368,2.731364275668073,7.445111139240504,137.10181555403855,12.123076923076923,6.011753846153847,2.2153846153846155,1.9076923076923078,166.0108118232444,40.73430046153846,1.1225331488551384,6.064992307692308,2.8589743589743586,7.621377723076923,145.89443217586552,11.854545454545455,5.722781818181818,2.1636363636363636,1.490909090909091,156.59397998145803,39.17699423636363,1.2592180796144,5.825118181818181,2.3116161616161617,7.298810254545455,155.5277494466112,8.37704918032787,5.610375409836065,1.7704918032786885,1.2131147540983607,167.23397391155044,26.0234847704918,0.9603607403061967,5.66447868852459,2.2199453551912574,7.268938295081967,110.20126788852346,8.928571428571429,5.62149761904762,1.9523809523809523,1.4285714285714286,171.96714895420072,29.60483357142857,0.8968082550709523,5.657921428571429,2.125,7.2902891428571435,105.56023986679752,7.1591836734693866,0.09797910204081627,0.014535662279225115,0.47673469387755085,3.216326530612245,1.4297380668182815,34.163769913469395,0.21348005554783345,0.09468767346938771,1.13233560090703,0.05326287673469387,48.93878218735862,0.04081632653061277,0.0029733061224489882,-0.006839392092328223,0.1714285714285715,1.1102040816326528,0.05469200391787702,0.17765377632652699,-0.002115683191836668,0.002455999999999996,-0.07913832199546492,0.0012997485714285968,-0.34796661649632826,0.24557823129251688,0.0026620884353741577,-0.0003202131883742026,-0.02197278911564621,0.1955782312925169,0.07403724288860296,1.1757124751020385,0.011612108204766557,0.0027433741496598585,0.09069349962207104,0.0021726204081632798,2.485859348082786,-0.6029931972789114,-0.013099368707482977,-0.0003344187554482507,0.0025034013605442335,0.04081632653061225,-0.007496898169692455,-2.854934292517008,-0.011956606861262405,-0.011764054421768708,-0.042748299319727914,-0.006903621877551009,-2.618057893632846,0.6664944458796174,0.0020528328597261623,0.0014488841797087356,-0.016698527512270734,-0.04236631361405321,-0.20855829113321506,3.151582310400413,-0.007568330691626958,0.004308818393180045,0.0609937139412727,-0.0012892940945492125,1.4757977281659913,-1.0712715855572996,-0.030352948194662464,-0.0016295603254382483,-0.0776138147566719,-1.062480376766091,0.10605019023731219,-4.896916741601255,0.02208902088872829,-0.028867058084772357,-0.35331240188383056,-0.016678482888540003,0.5685228859733806,-1.7617810760667905,-0.0040798812615955434,-0.0016071827282499516,-0.08452690166975883,-0.7020408163265307,-0.4367205473994964,-8.562425447495361,-0.07877860473842409,-0.006510998144712412,-0.08034425891568749,-0.0003899936178107729,-17.02396123414174,-0.32686517229842743,0.016045253931080614,0.0015962048384590196,-0.02380729340916696,-0.02475744396119104,-0.09838217429921196,-1.6890357940314469,-0.02786273222991077,0.012276635664101717,0.0024158953198766065,0.010049953241886898,-6.383602511440443,1.5816326530612246,0.03302953741496596,0.0026793939386927723,-0.12231292517006805,0.1360544217687075,0.1737599269907762,7.45287524979592,0.026085596738197787,0.03044844897959183,0.18896069538926688,0.017624470204081612,7.02290068017931,,,0.4708333333333333,1.046875,0.46875,0.0,0.578125,-0.109375,0.7513522741963153,0.017749037939831014,0.02312403793983101,0.6855124640012319,0.21702490413821263,0.2598644055702748,1.4368647381975472,0.4768893097084874,1.9533502026248792,1.4839669923706873,0.3592117034408231,0.11017150681336838,0.0,0.4693832102541915,6.318651777942857,662.0,207.4847,91.0,184.0,5854.139135773231,2595.030816,46.18764919213101,209.5484,127.1111111111111,262.093632,6619.127261809037,742.0,219.63690000000003,108.0,176.0,5330.044411670298,2740.024131999999,57.80346585999999,223.87060000000002,103.94444444444446,269.44223199999993,8161.938603949193,986.0,363.977,170.0,215.0,9653.753272556689,3546.32892,81.52222226848998,369.0956,162.97222222222223,454.81862400000006,11071.224946467519,1024.0,447.46900000000005,179.0,210.0,12246.614908588286,3542.370802999999,91.44586184873502,453.0295,199.83333333333334,564.6277319999999,12004.18592687169,948.0,460.25600000000003,169.0,174.0,13077.413951688224,3270.313681,84.292573674074,465.10350000000005,215.77777777777777,588.1637799999999,10831.043428769046,788.0,390.76400000000007,144.0,124.0,10790.702768510886,2647.72953,72.964654675584,394.22450000000003,185.83333333333331,495.389552,9483.13809143126,652.0,314.753,119.0,82.0,8612.668898980191,2154.7346829999997,69.256994378792,320.38149999999996,127.1388888888889,401.434564,8554.026219563617,511.0,342.2329,108.0,74.0,10201.272408604576,1587.4325709999998,58.582005158677994,345.5332,135.41666666666669,443.405236,6722.2773411999315,375.0,236.10290000000003,82.0,60.0,7222.62025607643,1243.40301,37.665946712979995,237.63270000000003,89.25,306.19214400000004,4433.530074405496,250.57142857142853,3.4292685714285693,0.508748179772879,16.68571428571428,112.57142857142857,50.04083233863985,1195.731946971429,7.471801944174171,3.3140685714285696,39.63174603174605,1.8642006857142854,1712.8573765575516,1.428571428571447,0.1040657142857146,-0.2393787232314878,6.000000000000003,38.85714285714285,1.9142201371256957,6.217882171428444,-0.07404891171428338,0.08595999999999986,-2.769841269841272,0.04549120000000089,-12.17883157737149,14.734693877551013,0.15972530612244945,-0.019212791302452157,-1.3183673469387727,11.734693877551013,4.442234573316178,70.54274850612231,0.6967264922859935,0.1646024489795915,5.441609977324263,0.13035722448979678,149.15156088496718,-45.22448979591836,-0.9824526530612233,-0.025081406658618802,0.18775510204081752,3.0612244897959187,-0.5622673627269341,-214.1200719387756,-0.8967455145946803,-0.8823040816326531,-3.2061224489795936,-0.5177716408163257,-196.35434202246344,52.653061224489775,0.1621737959183668,0.11446185019699012,-1.319183673469388,-3.3469387755102034,-16.47610499952399,248.9750025216326,-0.5978981246385296,0.3403966530612235,4.818503401360543,-0.1018542334693878,116.58802052511332,-69.63265306122447,-1.9729416326530602,-0.10592142115348614,-5.044897959183674,-69.06122448979592,6.893262365425292,-318.2995882040816,1.4357863577673389,-1.8763587755102031,-22.965306122448986,-1.0841013877551002,36.95398758826974,-96.89795918367348,-0.2243934693877549,-0.08839505005374734,-4.648979591836736,-38.61224489795919,-24.0196301069723,-470.93339961224484,-4.332823260613325,-0.35810489795918266,-4.418934240362812,-0.02144964897959251,-936.3178678777957,-19.938775510204074,0.9787604897959175,0.0973684951460002,-1.4522448979591847,-1.5102040816326534,-6.0013126322519295,-103.03118343591827,-1.699626666024557,0.7488747755102048,0.147369614512473,0.6130471477551008,-389.399753197867,66.42857142857143,1.3872405714285703,0.11253454542509644,-5.137142857142858,5.714285714285714,7.2979169336126,313.02076049142863,1.095595063004307,1.278834857142857,7.936349206349209,0.7402277485714277,294.96182856753103,0.7478909578906804,0.6251316510999088,0.47688930970848753,0.33912336277740385,0.32649335587216005,0.19643195332802696,0.20478476196119047,0.09569014282741119,0.13899048604633824,0.052397758429597124,0.08742192629648286,0.03043306733548235,0.0602106226680235,0.016785837500364748,0.03955574930004249,0.008826948838035574,8.022017191182789,5.689250376269947,3.5437682900999175,2.1887486342699964,0.39223882308128677,-0.35749024786382655,3.1366702139065157,0.9778867294709156,6.021947347319024,0.988718656938658,14.637473587409078,10.949798254404575,16.010061603374798,11.70056501118901,1.987268575282521,0.75187664096678,3.4889833937165475,2.2386170063234476,7.00826878011887,1.2908507476489297,3.701910524215793,2.4345977122023283,20.89521731012052,14.702710848389861,0.2759073453006104,0.6040922496383265,0.7852368632997003,0.8392941088759489,0.8392941088759489,0.8392941088759489,2.201847249246513,332.62203889304567,0.0,1.0,3.0,0.0,4.0,1.0,2.0,0.0,0.0,3.6710017218927273,1.9364125003090678,0.9789903573282981,0.6932760716140125,0.6932760716140125,0.6932760716140125,159.44948744384163,693.3039215779186,37.17496761990226,19.808683473654817,39.289284682073806,,11.0,258.0,0.0,4.794537184071822,11.949020558499466,5.563451491696996,12.10820789760957,0.0,0.0,45.16061465590488,16.1683713982271,0.0,7.533333333333333,16.75,7.5,0.0,9.25,0.0,0.029166666666666674,-1.75,0.1057142857142856,0.034982578397212416,-0.07073170731707318,0.08256578947368409,0.1418481012658227,0.0,0.5390476190476193,0.8229166666666665,0.43333333333333374,0.5040650406504069,0.7403508771929824,12.021636387141045,0.2839846070372962,0.3699846070372962,10.96819942401971,3.472398466211402,4.157830489124397,22.989835811160756,7.630228955335799,0.5721518987341773,0.24336283185840707,0.0,0.26548672566371684,0.4166666666666667,0.3309837320265268,-0.4864807739265363,-0.03951124899428322,-0.013899450683615325,-0.040540064493878036,0.669016267973473,0.9833218986940846,0.03929959436278347,0.02809491139125956,0.042753126030177606,-3.518202495587796,1.0002280501710377,0.8512860718320607,1.5926920471087642,0.9606164383561647,0.6213197969543147,1.3445929541288426,1.0056939156831584,1.2168412821730785,0.8543499401684936,0.6553388337071449,0.8061228355794433,1.1448060013937507,0.9600057012542761,0.9228474238016047,1.1173466523882774,1.4433504566210051,0.9916666666666667,1.1209737352864173,0.9618006895939752,1.0023981973616107,0.9175655042916603,0.588017662608138,0.8604369041158615,0.9826724341153902,1.0737590269859372,1.1402112681532532,1.2697060234706687,1.0324200913242014,1.0148223350253807,1.0800307372976907,1.073304597503852,1.066432702152867,1.1236319505990622,0.9586217024457968,1.1282217929203942,1.0513367138629697,0.8914307983199344,1.0452426361070297,0.989807605014814,1.0059389630657192,1.083868791364133,1.0689907074201253,0.890560504824045,1.006710839702619,1.012728562006616,1.3001198496100317,1.1569818615963117,0.9381647122252122,1.1909393912814668,1.6970068650143706,1.1368716781068278,1.2696259220231827,1.5891448652869973,0.8806184725515722,1.1780423646196987,0.85618982441738,1.6461745636915734,2.282412256919625,1.869082061947318,0.936263058770751,1.1459624753809476,0.5902371820760081,0.7631405638931383,1.0558841843088422,0.9967005076142132,1.391863268503451,1.1585877996848803,1.5025511835785508,0.6611274845279826,0.5244877079024786,0.4904015127606014,1.4371565160744602,0.9698487765669105,0.6439321818771166,0.5792939900624874,0.8017067145744445,0.8813347757343764,0.9266191764666656,0.9754440230577268,1.0818668869622103,0.6993558113841372,0.8676647091884164,0.6064781502713363,1.0896266207532015,0.7236792094260738,0.5764189059335714,0.6568876695290996,1.4312214611872152,0.9564297800338409,0.6825032145197849,0.7259211925807325,0.7524934124684726,0.6035151153581325,0.6908008918081808,0.5587162616540691,0.7648425540920489,3.5,0.03305785123966942,1.5555555555555562,0.75,0.5822222222222223,0.46527777777777785,0.22285714285714286,0.17708333333333331,0.07407407407407406,0.04000000000000001,2405.857641019782,2856.7929635687606,1463.8079038155101,1265.5370329831287,13.662298792755498,0.47718615401566084,7.142838976827696,0.9127266955166962,1.0,0.4166666666666667,1.4582812950522388,3.1928705166358986,4.150292659616668,4.436006945330954,4.436006945330954,4.436006945330954,0.21875,0.011019283746556474,0.07777777777777783,0.039473684210526314,0.03424836601307191,0.033234126984126984,0.020259740259740266,0.025297619047619044,0.012345679012345677,0.008000000000000002,0.4804062770517644,14.0625,7.35,5.264462809917355,96.40230047697948,1.0,3.647164210412807,66.88761686929072,,54.27331335980184,53.10292615783211,52.15304521853978,54.28349297913615,75.27296592766535,53.77527166806813,54.34429102155514,68.27024081857077,0.005701254275940781,0.030346329579652245,-0.47052497237111274,0.3595890410958907,0.3451776649746192,0.03825316342005765,0.005200063598850233,-0.009910448947595562,0.025937906276618093,-0.06988945850688884,0.024402522941123436,-0.00711024265303871,0.034302546560243244,0.02716996155226225,-0.022029487354825426,-0.04609018264840174,0.060807952622673404,0.05178378096441426,0.034414014556353234,0.05439434693310115,0.028972875234354396,0.08009418722631631,0.040790519426602785,0.050795284168818344,-0.08422652983656405,-0.133695537462938,-0.02300677802113041,0.005251141552511451,0.012690355329949238,-0.005243546593381223,-0.08356613745344955,-0.05600807452752112,-0.12424061116647879,-0.037752322973405965,-0.1296141384164891,-0.053496588525840286,0.09309643058181659,0.020951741922180408,0.09967789233652824,-0.03502687705912955,-0.013172267557668827,-0.14587167815804028,0.09224925464557326,-0.035452167520778816,0.045505589432114156,0.05386540341257059,-0.02420624220075977,0.030155996169173267,-0.14963599684238224,-0.30979002218266904,-0.11210774535999463,-0.1628029504741834,-0.33033971105037097,0.07417455875208999,-0.14333654494232495,0.10347112207762617,-0.30486606151649726,-0.3120209252458531,-0.31313522496384677,0.011617021522865681,-0.24608686638333166,-0.041640321013515114,-0.1105682491362636,-0.17730386052303873,-0.21827411167512692,-0.3054549343932403,-0.2506288231416622,-0.36902091174869744,-0.06876289073484736,-0.07095445806996589,-0.007322053214537369,-0.3478623797577702,-0.04565676579995139,0.1637620022726526,0.10981301077284743,-0.04993824388053003,-0.0076974286427560976,-0.06881132746094551,-0.04943938559208971,-0.1305167930484621,0.12965400050800407,0.002133550616920825,0.18868588889680935,-0.13044056729898343,0.22092360319270246,0.3371079824880052,0.18433242925038631,-0.2565639269406394,0.042301184433164135,0.12153269960662028,0.21815142967748274,0.12219219575925636,0.3215671888847891,0.16687693581117163,0.33089595013559514,0.14350378914809606,4.883593419305869,8.425573473838844,2.1822472719434427,13.441857618507768,26.59389187917385,30.816744827869893,31.104744827869897,31.104744827869897,31.104744827869897,31.253603241998068,23.743471877930997,5.7473872550531695,1.762744109013894,0.0,7.510131364067064,3144.455843734444,3025.0954166409715,282.4096801963419,6.0,20.0,22.0,25.0,28.0,26.0,24.0,22.0,16.0,221.152812228,16.0,4.290459441148391,5.056245805348308,5.872117789475416,6.665683717782408,7.489412083508719,8.29529885950246,9.122492281402987,9.93464701478523,10.763483027355077,0.5714285714285715,0.9658285714285715,1.1436243566207953,0.5264317233012595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6297872882805818,0.9519327731092435,0.9929872021641872,0.5753158268151551,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,0.0,5.907179729351506,15.646119978292592,0.0,0.0,0.0,12.13273413692322,38.59133201067865,18.150048726757532,0.0,156.12457622174725,-229.47231939248587,-18.637402410853273,-6.556351982642454,-19.12269328270716,315.5740636655889,463.8316021854327,18.53756520904899,13.252331491012363,20.166591399366645,0.45454545454545453,0.8723473707755629,0.23803618389606734,5.931492794492692,0.17075340877275852,37.07727586613097,0.1276526292244369,6.0,0.3125,0.2843050949293885,0.622478912956843,0.8091369974918267,0.8648395751757656,0.8648395751757656,0.8648395751757656,1.0487999999999995,,0.6785714285714287,0.8427175430432758,0.8488829422512447,0.6767661145452564,-2.636839718884606,0.7422735618115056,0.6692837795551935,-1.356968362788312,64.94360000000003,4.794537184071822,0.0,16.1683713982271,0.0,26.434071634441782,7.04767198267719,35.392371257240434,0.0,0.0,3.4965075614664802,0.0,4.727387818712341,0.0,6.142037405587356,0.0,7.644440761556566,0.0,9.195531256322475,20.000000000000004,7.563425925925926,0.0,0.0,0.0,0.0,0.0,1.8308838813303103,0.0,33.804,0.0,11.64135369425548,0.0,0.0,0.0,0.0,0.0,-0.02488360313261051,40.026852481727836,16.1683713982271,0.0,0.0,18.996692541176657,6.544756405912575,0.0,29.768914566847062,24.26546827384644,0.0,0.0,0.0,18.425110315544085,22.042555089820365,19.467361360434488,133.77523373858148,,108.46180529103225,106.10051262278381,104.19998006929816,108.48239019395413,151.53474674991241,107.45775914090981,108.60492157066588,137.0493447731871,19.467361360434488,133.77523373858145,,107.8680552910323,105.36313477262098,103.45720749482834,107.89021984372697,153.18277157421537,106.80826977432474,108.01929826355516,137.8974499999298,4.564260699986246,102.14787734282017,,82.45111084597384,80.83721562280698,79.495288624352,82.4650531389178,111.59752695390097,81.7625708022844,82.54920141630791,101.85420602358818,1.2167100850271555,8.360952108661342,,6.778862830689516,6.631282038923988,6.512498754331135,6.780149387122133,9.470921671869526,6.716109946306863,6.7878075981666175,8.565584048324194,2.2821303499931234,66.88761686929072,,54.27331335980184,53.10292615783211,52.15304521853978,54.28349297913615,75.27296592766535,53.77527166806813,54.34429102155514,68.27024081857077,33.317647058823525,0.0,5.718914417746489,0.0,0.0,0.0,0.0,34.75455207574655,0.7386702412446458,8.700029338513286,0.0,0.0,0.16493943744980877,0.0,0.0,0.0,0.0,20.13605393853043,411.4850683041268,51.039845326828356,111.75046808225645,145.2602430865834,155.2602430865834,155.2602430865834,155.2602430865834,221.0,99.48984002030899,60.213571583209315,47.20590480364522,53.16,53.16,0.8333333333333334,6.6636115085448395,5.0,3.4880035874828783,3.922508744796039,,3.911070114253217,3.913373343359047,3.9159724981914095,3.9110523703730395,3.8781275549886827,3.912079128440089,3.9109281531621365,3.8871528095103476,0.2180002242176799,0.24515679654975245,,0.24444188214082607,0.24458583395994044,0.2447482811369631,0.24444077314831497,0.24238297218679267,0.24450494552750557,0.24443300957263353,0.24294705059439672,1.7193331638134073,1.83673506426181,,1.8338146523074634,1.834403378952325,1.835067330955582,1.8338101154620707,1.8253560774769648,1.8340726083201035,1.8337783543983504,1.8276805933120472,187.68999999999963,97.7256046443652,70.3473487198558,,70.85124170363183,70.72293960388771,70.62360079505224,70.85236214710912,72.71022752482908,70.79732448136487,70.85889096320243,72.16789351713629,6.107850290272825,4.396709294990988,,4.428202606476989,4.420183725242982,4.413975049690765,4.42827263419432,4.5443892203018175,4.424832780085304,4.428680685200152,4.510493344821018,5.0521672281081225,4.723448725100308,,4.730586121038756,4.728773613508303,4.727368006764612,4.73060193494111,4.756485685112392,4.729824839420126,4.730694077462677,4.748998888113122,0.0,11.64135369425548,2.854760015117158,7.676153204726438,-0.02488360313261051,7.728365363375734,0.0,4.633723679669297,1.8238609793218379,224.0864956399705,73.64375025678493,-108.24178094922799,-8.791237368232448,-3.0926223128350854,-9.020148412435669,148.8558566147779,218.78873588763258,8.744144295931212,6.251106739646646,9.512553734244898,511.0,19.0,1.0147413627579769,0.5408906344338871,0.0,0.0,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.10703808753134778,0.033530743921848544,11.966255326250886,10.00210641759854,7.6302289553358005,5.425973804438462,6.529867117443201,3.9286390665605393,4.50526476314619,2.105183142203046,3.474762151158456,1.3099439607399281,2.4478139363015203,0.8521258853935059,1.565476189368611,0.43643177500948344,0.9493379832010198,0.21184677211285377,1.6583511163689635,0.599646645936151,2.336844263742746,0.6502333456186206,2.8842031168172273,0.7110803930418834,54.7653919839723,30.887911075011733,22.07042178815491,21.047280009948352,21.047280009948352,21.047280009948352,72.0,78.0,36.81106699999997,20.498932999999997,0.17142857142857143,16.04,6.444444444444445,3.7777777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,35.0,0.0,0.0,35.0,6.0,1.0,4.0,31.0,7.0,16.0,28.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,3.0,3.0,0.0,16.0,4.0,0.0,3.0,1.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,1.0,3.044522437723423,3.056356895370426,3.481240089335692,3.8969093676180977,4.329087249379662,4.775440247695233,4.8352893510387265,4.912654885736052,4.6913478822291435,4.466626251540024 +5388961,CCOC(=O)[C@H](CCc1ccccc1)N[C@@H](C)C(=O)N1CCC[C@H]1C(=O)O,0,21.2,6.19308727272727,2.8727272727272726,6.763636363636364,164.78759878384494,83.38116936363642,1.342966933377672,6.240385454545452,5.298989898989899,7.747075709090906,198.35027473305087,22.875,6.331767857142857,3.5714285714285716,5.892857142857143,147.46191612156872,85.56597700000002,1.6937987918928574,6.4651875,3.0803571428571432,7.768823999999997,245.95264426809618,18.425742574257427,6.22668316831683,3.128712871287129,4.425742574257426,156.4568618914385,67.12936591089111,1.3946573691107724,6.316126732673266,3.136963696369637,7.730745623762375,194.57473652442513,14.942028985507246,6.1440572463768115,2.6739130434782608,3.1449275362318843,163.5945947233338,52.80775807246376,1.1809664523501378,6.201424637681159,2.939412238325282,7.713354086956523,160.0003172159881,15.136690647482014,6.2712446043165455,2.5467625899280577,2.8992805755395685,162.45897714616677,52.92378876258992,1.1623218414044967,6.327287769784171,3.2705835331734616,7.854953208633094,161.51255614225147,14.510344827586207,6.296441379310345,2.3793103448275863,3.0206896551724136,163.22911655865784,49.942787282758616,1.133149468126731,6.344808275862069,3.668390804597701,7.88167768275862,154.59671706454168,13.025641025641026,6.0531987179487174,2.2628205128205128,2.9038461538461537,166.26326546567157,45.07320889102563,1.0691045166936215,6.097827564102563,3.164351851851852,7.661149256410257,140.59548539132416,12.733333333333333,5.943833333333332,2.2866666666666666,2.546666666666667,164.27934700212933,44.22226671333334,1.09317114014602,6.002213333333333,2.708518518518519,7.573676453333334,144.88116731307602,13.652482269503546,6.06309929078014,2.234042553191489,2.6808510638297873,162.18014686572246,47.348072070921994,1.1162126867295465,6.124907801418439,3.039992119779354,7.6731684539007095,150.15199491760168,7.711074380165288,0.14685335537190078,0.02429374350887599,0.5401652892561981,3.965619834710743,1.3565457822947575,36.532620203636355,0.22012984964821278,0.13679061157024786,2.209917355371901,0.0939055550413223,48.86783819945706,0.16132821723730756,-0.005240043683589,-0.014749836701685972,0.1767178276269184,1.1636009445100353,-0.20802432003383056,0.7733121600000044,-0.011358117162623204,-0.0032058388429751514,-0.09193394988849533,-0.005038227768595104,-0.569781991769062,0.2055772850012273,0.022680686032239668,-0.00040381661694777714,-0.027834056132886042,0.38379510678340567,-0.18882570613264596,0.8195994550495087,-0.01968536945007784,0.01978486997790692,0.31234487085072143,0.01611526368054984,-3.449013543224482,0.11369505329979616,0.011029345550365348,0.005272956484808299,-0.06229967660797702,-0.32372260150916277,0.17985083948125596,0.4937759730434787,0.003510121809224395,0.008864118337525468,-0.019019243821615375,0.006587964326266585,0.22560458029752464,-0.9147369046911233,-0.030844512991259752,-0.00430471406379939,-0.08705868363160711,-0.9815779772875914,-0.09487178944127761,-4.237218842877698,-0.013298870528473058,-0.0274204873060229,-0.47044347992680247,-0.0203815069052858,-3.128157701472595,-1.40787688800228,-0.021058772299800375,-0.002612261322506272,-0.027939583927044737,-0.5030493017953831,-0.184983611999574,-6.647232617931034,-0.021475706325085112,-0.021036128811627183,-0.10112251037015925,-0.010960059367341245,-7.18300312699615,0.33461326552235643,0.0183078800593346,0.005216596108595441,0.03314473405382497,0.42633820724729826,0.13098329614788834,1.5138059356410254,0.006911888851269031,0.015615320830684466,0.25776264980810426,0.012734277592710322,1.0475716993978805,0.513168044077135,-0.008753403856749359,-0.0016480632194100647,-0.003316804407713492,0.09231955922865014,0.06792293576798121,2.5258761266666654,0.016531225768441772,-0.005793860055096444,-0.1605907560453014,-0.007807789707988943,4.949110263730807,-0.23473653361467686,-0.01291421933063711,-0.003015523295619039,-0.04770880956567609,-0.23924975089385153,-0.16362419258903557,-1.1087056641134747,-0.022235769758383102,-0.010334235038977785,-0.16164384007710889,-0.010274469032295896,-2.7915351917360023,,,0.46172839506172847,1.0092592592592593,0.3888888888888889,0.0,0.6203703703703703,-0.23148148148148148,1.0191718908074179,0.01775756127396246,0.024127931644332825,0.8295048847962803,0.1980676542456336,0.28099750901274084,1.8486767756036981,0.47906516325837445,1.9826898255984284,1.4978065972781263,0.1561423427819231,0.3287408855383791,0.0,0.48488322832030223,6.83999676356365,1166.0,340.6197999999999,158.0,372.0,9063.317933111472,4585.964315000003,73.86318133577196,343.22119999999984,291.44444444444446,426.0891639999998,10909.265110317798,1281.0,354.579,200.0,330.0,8257.867302807848,4791.694712000001,94.85273234600001,362.0505,172.50000000000003,435.05414399999984,13773.348079013385,1861.0,628.8949999999999,316.0,447.0,15802.14305103529,6780.065957000002,140.86039428018802,637.9287999999998,316.8333333333333,780.8053079999999,19652.048388966938,2062.0,847.8799,369.0,434.0,22576.054071820065,7287.470613999999,162.973370424319,855.7965999999999,405.6388888888889,1064.442864,22080.04377580636,2104.0,871.7029999999999,354.0,403.0,22581.79782331718,7356.4066379999995,161.56273595522504,879.4929999999997,454.61111111111114,1091.838496,22450.245303772954,2104.0,912.9839999999999,345.0,438.0,23668.221901005385,7241.704155999999,164.306672878376,919.9971999999999,531.9166666666666,1142.8432639999999,22416.523974358544,2032.0,944.299,353.0,453.0,25937.069412644763,7031.420586999999,166.78030460420496,951.2610999999999,493.6388888888889,1195.139284,21932.89572104657,1910.0,891.5749999999998,343.0,382.0,24641.9020503194,6633.340007000001,163.975671021903,900.3319999999999,406.2777777777778,1136.051468,21732.175096961404,1925.0,854.8969999999997,315.0,378.0,22867.400708066867,6676.078162000002,157.38598882886606,863.6119999999999,428.63888888888886,1081.916752,21171.431283381837,424.1090909090908,8.076934545454543,1.3361558929881794,29.709090909090897,218.10909090909087,74.61001802621166,2009.2941111999996,12.107141730651703,7.523483636363632,121.54545454545458,5.164805527272726,2687.7311009701384,9.034380165289223,-0.29344244628098404,-0.8259908552944144,9.89619834710743,65.16165289256197,-11.649361921894512,43.305480960000246,-0.6360545611068994,-0.17952697520660849,-5.148301193755739,-0.28214075504132585,-31.907791539067468,20.763305785123958,2.2907492892562065,-0.04078547831172549,-2.8112396694214903,38.763305785123976,-19.07139631939724,82.77954496000038,-1.988222314457862,1.9982718677685989,31.546831955922865,1.627641631735534,-348.3503678656727,15.68991735537187,1.522049685950418,0.7276679949035453,-8.597355371900829,-44.67371900826446,24.819415848413325,68.14108428000006,0.4843968096729665,1.2232483305785147,-2.6246556473829217,0.9091390770247887,31.1334320810584,-127.14842975206615,-4.2873873057851055,-0.5983552548681151,-12.10115702479339,-136.43933884297522,-13.187178732337587,-588.9734191599999,-1.848543003457755,-3.811447735537183,-65.39164370982554,-2.833029459834726,-434.8139205046907,-204.1421487603306,-3.0535219834710543,-0.3787778917634094,-4.051239669421487,-72.94214876033055,-26.82262373993823,-963.8487296,-3.1139774171373413,-3.0502386776859414,-14.662764003673091,-1.5892086082644805,-1041.5354534144417,52.199669421487606,2.856029289256197,0.8137889929408888,5.170578512396695,66.50876033057853,20.43339419907058,236.15372595999997,1.0782546607979688,2.435990049586777,40.210973370064266,1.9865473044628104,163.42118510606937,76.97520661157024,-1.3130105785124038,-0.2472094829115097,-0.4975206611570238,13.84793388429752,10.18844036519718,378.8814189999998,2.479683865266266,-0.8690790082644667,-24.08861340679521,-1.1711684561983415,742.3665395596211,-33.09785123966944,-1.8209049256198326,-0.4251887846822845,-6.726942148760328,-33.734214876033064,-23.071011155054016,-156.32749863999993,-3.1352435359320174,-1.4571271404958677,-22.791781450872353,-1.4487001335537213,-393.6064620347763,0.7337477892200789,0.5884764145737653,0.461955693142004,0.3369777951493105,0.30222047312926115,0.1823015756583178,0.19451777213577398,0.10387337929815386,0.12710045503127268,0.0625330582973441,0.08482077098414843,0.03527852618950862,0.054064942556736224,0.020456688060190485,0.03374459544085995,0.012148125801553094,8.03157961743198,5.694126791691561,3.5581550271768485,2.1941231699406982,0.4568769972759624,-0.4948428846337377,3.190202705367979,0.9725630156183167,6.029059144577914,0.9879008572744755,14.543795528919718,10.954429785596751,16.016745447932088,11.705129365024609,1.9820117562160262,0.7404304463670919,3.5043388203756023,2.2441221026231037,7.0104592667185255,1.2480431853965601,3.717207835764212,2.440121679466397,20.891168294442558,14.699771382458808,0.25442909874170144,0.5626350508424917,0.7873311078460554,0.8907701591854664,0.9052897510048564,0.9052897510048564,1.9093911599968036,649.031972845491,0.0,3.0,4.0,0.0,5.0,7.0,1.0,0.0,0.0,4.266438912541764,2.431320169703964,1.0934357361348663,0.47753931829982665,0.39108681826049096,0.39108681826049096,223.4029815216731,1875.6179011300248,69.52243654247411,34.10214365690953,67.4576519375525,,13.0,564.0,30.064133063347583,19.490138947056174,12.514061693864424,32.22804289761662,5.563451491696996,4.899909730850478,13.847474399381248,30.33183534230805,5.316788604006331,4.736862953800049,12.466666666666669,27.25,10.5,0.0,16.75,0.0,0.03827160493827154,-6.25,0.14389719984656713,0.027600596125186616,-0.11629660372138051,0.03942103022562782,0.18425495750708176,0.0,0.5806060606060608,0.8716049382716045,0.43670886075949367,0.5530054644808742,0.8321839080459766,27.517641051800283,0.47945415439698635,0.6514541543969863,22.396631889499567,5.347826664632107,7.586932743344002,49.91427294129985,12.93475940797611,0.5297450424929182,0.18716577540106946,0.0,0.3128342245989304,0.55,0.32943790691391994,-0.9434990923874166,-0.058945236570919914,-0.01715452895249848,-0.049657846967758774,0.67056209308608,1.9204672957730906,0.04721173781107316,0.034917587195874365,0.05334631377147473,-2.945964519957667,0.8685433789395036,0.7408835398462539,1.6399408735476335,0.9737279244623189,0.5128495212689945,1.486030428473513,0.8774640011780986,1.2949657036472253,0.729371228173796,0.6264190885778393,0.752149520342408,1.1423281360055602,0.9051472754237615,0.6619046329957273,1.0376981259226317,1.3587200213289388,0.8224152275180836,1.3268671905159126,0.9144942151107597,1.180678383792373,0.6733052446097156,0.45741352370091154,0.6158810443075586,1.1145615986492614,0.9641694843224022,0.8927184218581262,0.897279891303173,1.3171198978234266,1.1096361830755181,0.9236028238482331,0.9660095330008847,0.9612593363940869,0.9007379139854355,0.8420092029527493,0.8718708848647047,0.9711671594243149,1.14409955359043,1.4076727391505333,1.3583489357973904,1.3599499837094833,1.3830779324523046,1.0842254888393434,1.1373074960688814,1.0413726508709487,1.3776874030795792,1.5653172301351137,1.4487900036492334,1.025227684548992,1.214863094903719,1.3705833149741018,1.2393706219872969,1.090575275397797,1.2174230490623312,1.1435641022474756,1.209341194790507,1.0616424104187108,1.3584111605605502,1.3881992623733008,1.3768319613561377,1.095589775544183,0.9467810762503384,0.8676459108750703,0.7808507850482761,0.8855098389982113,0.8697129812501604,0.8798139596523343,0.9481627226101834,0.9037039485677992,0.8786764232935689,0.7757069501179447,0.8341901996300753,0.9336431130970297,0.9091057189402386,0.9990493242936,0.9927290529474295,1.042105263157895,0.9498916305435146,0.8953495882489546,0.9071359508396893,0.8998385993888363,0.9876850085888647,0.9943193717277486,1.0197340388111558,0.8833237068331506,1.0190573572362867,1.1129896658516452,1.1435709027279763,1.018385895466028,1.093928472611438,1.0890250428366743,1.0181429378505507,1.0985125604625445,1.0971179489611724,1.0746351787902415,1.155808647991675,1.0450291155041065,5.0,0.15499030711151926,3.333333333333335,1.6180555555555554,1.5211111111111113,0.9169444444444446,0.5166893424036281,0.453125,0.3734174225245653,0.20562500000000006,5177.101213980166,5998.848934245504,2510.9166671774974,2225.2273520143663,13.478322240296086,0.44478741870373933,7.4833340825775885,0.8011119230498874,1.0,0.55,1.5149208009828965,3.350039543820696,4.687923977389794,5.303820395224833,5.390272895264169,5.390272895264169,0.17857142857142855,0.007749515355575962,0.09009009009009013,0.042580409356725156,0.040029239766081866,0.02547067901234568,0.01476255264010366,0.012946428571428572,0.010982865368369567,0.007615740740740743,0.4307989494728899,23.28061224489796,11.869978086194303,7.077504725897921,159.23680270316586,1.0,4.188766756923637,151.85847163486397,,132.22744948676583,129.61297024521684,129.3549619114066,132.25570839697366,185.18763199308498,131.20455865814384,132.37627748373515,164.6825517050019,0.020921626388701684,-0.0356821515607783,-0.6071454856801692,0.32715509704493784,0.2934222121659601,-0.15334854359425515,0.021167716842906085,-0.051597351203276125,-0.023436102859506668,-0.041600628034809024,-0.05365207379241917,-0.011659652089447093,0.026660005450086288,0.15444445225511977,-0.01662224748525225,-0.05152877588860485,0.09678061003832963,-0.13919597008604084,0.022434729578140907,-0.08942617042412387,0.1446361687457369,0.14133780618151565,0.17161139906428818,-0.0705783940993486,0.014744385502524372,0.07510448448681292,0.21704997761591438,-0.11533446862859888,-0.08163228322484307,0.13257999975276694,0.013516029518034121,0.01594568757864453,0.06480063387225492,-0.008606314519130366,0.0701552141762818,0.004616626980238123,-0.11862638843739384,-0.21003614737400547,-0.17719434891648606,-0.16117045164358118,-0.24752195575983368,-0.06993629752826386,-0.1159845316119958,-0.060413753744555064,-0.20045591573323218,-0.21287831365423743,-0.21704261155069152,-0.06401260658809642,-0.18257856410044151,-0.14340000775923573,-0.10752815108761864,-0.051724137931034496,-0.12685262903726527,-0.13636370730271438,-0.1819533496606243,-0.0975592649493252,-0.153783425413112,-0.04575850319666891,-0.11671364236672015,-0.14698835454268072,0.04339385784982974,0.12466776814850813,0.2147300232543206,0.061360355271004016,0.10750859260779239,0.0965564877038758,0.04143710270993224,0.03139914401574729,0.11415491641884597,0.11663904497674124,0.1356072874187977,0.02143683326285384,0.06654948698162282,-0.05960642734094622,-0.06783899808639729,-0.006140350877192972,0.023279982216294324,0.050070507501104415,0.06914029468970985,0.07509761077318752,-0.04235568500343351,-0.07266821795617602,-0.08314513134556518,0.10127540824561773,-0.030441482216599404,-0.08793955914682589,-0.1241275678454942,-0.08832261256803563,-0.06033098503283603,-0.12061826052950894,-0.030348375176306605,-0.10101206080828135,-0.07554783855667398,-0.07314474438792136,-0.10941279275517522,-0.0571241801272686,11.966503815791874,16.59455111991203,6.130850101614126,14.341040327472513,30.79906129035165,36.97254734250686,39.089735062344666,39.17687918238432,39.17687918238432,53.532625291157565,40.44077812650941,4.215843255111924,8.876003909536236,0.0,13.09184716464816,7057.639712203011,5568.902228006376,2148.454331379966,49.0,37.0,46.0,54.0,57.0,53.0,51.0,55.0,55.0,376.19982199600076,28.0,4.875197323201151,5.6937321388027,6.541029999189903,7.380879035564116,8.232971790593437,9.081028635495842,9.936196726945832,10.788638432968888,11.646135555982916,0.6121212121212118,0.9835636363636365,1.1353174895227238,0.5698609607859461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6345150136091455,0.9688413547237075,1.0074422300205261,0.5941002164942732,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,1.0,6.0,1.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,14.743300079491233,12.083681658295921,0.0,5.907179729351506,0.0,14.905862972149976,4.794537184071822,0.0,0.0,30.33183534230805,45.09421238278229,6.544756405912575,12.648722793660879,215.74961147341708,-617.899635518555,-38.60336537321313,-11.23453882761009,-32.521033448345,439.1525929950902,1257.7182656114699,30.919071169260988,22.867604829299445,34.93661848920749,0.46153846153846156,0.7904042609518267,0.16749921844479665,155.03981560919308,0.11379864494476934,61.86166144847082,0.20959573904817339,7.0,0.32142857142857145,0.26203538199481985,0.579455302873433,0.8108687591991671,0.9174001719383258,0.9323538341083327,0.9323538341083327,1.6046,,1.5357142857142858,1.7999069334574216,1.3161701003068016,1.5313282524578438,-6.447834958059397,1.6159730722154224,1.5229999873188609,-2.633621646776986,100.15250000000007,24.227001900856216,0.0,10.216698334856808,0.0,57.65628337852917,13.151638370425493,35.89528683400505,0.0,0.0,4.04305126783455,0.0,5.3230099791384085,2.3978952727983707,6.785587645007929,4.59511985013459,8.330622620332868,6.6052979209482015,9.919705330558962,33.66666666666665,9.77639072247169,0.0,0.0,0.0,0.0,0.0,1.0954279680957173,0.0,54.09600000000001,0.0,36.336629533082586,0.0,0.0,0.0,0.0,0.0,-1.6830856200788,62.44246192374981,5.316788604006331,0.0,0.0,59.129388288815754,25.54129612894152,0.0,38.673390759856275,30.33183534230805,0.0,0.0,0.0,31.342352843227033,34.898325748503005,33.82861739545147,303.71694326972795,,264.34114235977506,259.0926140509183,258.61242974130903,264.3979850715431,371.8207975550886,262.2894156072347,264.63974015359486,329.9503526648432,33.82861739545147,303.71694326972784,,262.9191846878174,257.42603355697634,257.39375372250646,262.9800885414896,376.82309894422923,260.79314424407227,263.22955498015165,331.99872505678087,4.703539046536864,219.21370592830897,,193.0893940384753,189.020890930359,187.51732214086744,193.13013246816664,271.10581943307255,191.44502143026023,193.3266667234193,242.51383465894116,1.2529117553870914,11.24877567665659,,9.790412679991668,9.596022742626603,9.578238138567,9.792517965612706,13.771140650188466,9.71442280026795,9.80147185754055,12.220383432031229,2.3879198041935576,151.85847163486397,,132.22744948676583,129.61297024521684,129.3549619114066,132.25570839697366,185.18763199308498,131.20455865814384,132.37627748373515,164.6825517050019,53.28627450980391,0.0,3.399535597679537,0.0,0.0,0.0,9.27628884455086,55.40932265112893,2.9763552653658034,3.0492609126984127,5.137459346392879,0.0,-2.085899238815004,1.388303335222978,0.0,0.0,0.0,32.675511907185026,517.6374929186526,83.3206440540593,184.25217491013828,257.83581875643864,291.71012173736585,296.4650092395293,296.4650092395293,512.0,129.1758096387448,137.26471154985475,75.00028988675388,95.94000000000001,95.94000000000001,0.8571428571428571,6.968732779705957,5.807354922057604,3.9500231636518994,5.1173244219395935,,5.123450913169379,5.122678242799821,5.119791674734365,5.123451164586974,5.1138762187497,5.1230415328451295,5.123504219810173,5.123653596998319,0.14629715420932962,0.18953053414591087,,0.18975744122849553,0.18972882380740078,0.18962191387905053,0.18975745054025828,0.18940282291665558,0.18974227899426405,0.18975941554852493,0.18976494803697477,2.3669732161217905,2.6258835016324804,,2.62707999149974,2.6269291695924104,2.6263655227054548,2.6270800405716628,2.6252094451963788,2.6270000850680266,2.6270903958862335,2.627119550738892,294.45000000000056,465.39497285980156,157.0414906863567,,155.69723381775162,155.76857590519597,156.2538919988583,155.6978563796758,156.98718268735237,155.74515640829867,155.6912841961948,155.8592781663612,17.236850846659316,5.8163515069021,,5.7665642154722825,5.769206515007259,5.7871811851429005,5.766587273321327,5.814340099531569,5.768339126233284,5.766343859118326,5.772565858013378,7.136138222057784,6.049761815332549,,6.041165085589345,6.041623191015141,6.044733970109268,6.041169084123322,6.049415936091891,6.041472831692182,6.041126872095825,6.042205310119973,5.137459346392879,37.72493286830557,12.325549757249274,1.0954279680957173,-1.6830856200788,7.690491483656686,2.2880621800340273,4.087828683011313,0.0,368.98914779584584,141.2948961671648,-404.6638334413889,-25.28142908282052,-7.3575242443888875,-21.298096496915203,287.60200125054575,823.6824647492592,20.24896786886769,14.97604481362289,22.8800684652572,1982.0,38.0,1.6401442827287471,0.7003467337176004,0.0,0.0,0.5241396328610608,0.11382076130138935,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.2381448361039201,0.12336210787250688,0.3548603490124733,0.12953476179363377,19.81119030894213,15.888863193491664,12.934759407976113,9.435378264180693,11.182157505782662,6.745158299357759,8.947817518245603,4.7781754477150775,6.863424571688725,3.376785148056581,4.834783946096461,2.0108759928019913,2.86544195550702,1.0842044671900957,1.7209743674838573,0.6195544158792078,3.972204269452178,1.4578928791282224,5.568398416112757,1.9905136282285378,7.988576392342912,2.3078470432974045,92.58218248992426,46.56853182314203,29.3151331074544,23.1723902912409,22.801054004428945,22.801054004428945,130.0,148.0,58.280203999999976,34.709796000000004,0.3090909090909091,82.07,10.13888888888889,6.222222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,6.0,6.0,55.0,0.0,1.0,56.0,6.0,3.0,6.0,50.0,9.0,28.0,47.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,5.0,2.0,1.0,27.0,7.0,0.0,2.0,5.0,0.0,2.0,9.0,0.0,0.0,0.0,0.0,1.0,3.5553480614894135,5.094516778076958,3.960813169597578,4.300680995219929,4.58113360815985,4.859327790831471,4.635335600319817,4.6521730395834275,4.874720110116457,5.044231243524771 +107751,CC(=O)SCC(Cc1ccccc1)C(=O)NCC(=O)OCc1ccccc1,0,26.8,6.13897,2.98,7.1288888888888895,159.52324975335654,106.01655332000001,1.6197162562305396,6.222097999999999,5.15173525377229,7.7045571399999995,226.2887115298615,26.254901960784313,6.2314509803921565,3.549019607843137,6.03921568627451,143.19170355962942,99.78303352941177,1.927004845490196,6.395637254901961,3.1426410070200923,7.687985647058822,270.9634635896187,21.96511627906977,6.152430232558139,3.1511627906976742,4.263565891472868,150.33219591503143,81.05601144186045,1.6265518382086397,6.28104534883721,3.05289979902383,7.692307372093023,219.7113052887553,17.227272727272727,6.091600000000001,2.7454545454545456,3.1454545454545455,155.32222294710868,60.7386174090909,1.4031564984716907,6.192592727272729,2.960914702581369,7.683368654545454,182.93642488731922,16.37719298245614,6.1177438596491225,2.517543859649123,3.0906432748538015,160.09057333244377,57.562915289473686,1.2602292696125352,6.196893859649122,2.923543426467403,7.741732473684211,165.4533439418393,17.8,6.024327272727273,2.5545454545454547,4.130303030303031,159.53339398018232,65.28696396363637,1.2995524681224546,6.108347272727273,3.343855218855219,7.626459109090908,172.65467308398414,18.47747747747748,6.198378378378379,2.4864864864864864,3.681681681681682,159.5564023394153,66.63118655855855,1.3114610798696125,6.279344144144145,3.7236125013902788,7.807450432432432,174.3256051225545,17.660377358490567,6.331122641509434,2.4056603773584904,3.169811320754717,162.14472554662922,62.44936538679245,1.2468121372682357,6.396164150943397,3.5163347309573725,7.95001262264151,169.2451846583919,15.770833333333334,6.055364583333334,2.3645833333333335,3.618055555555556,158.5985322759892,55.852465062499995,1.2582237719596978,6.1392291666666665,3.299864969135802,7.6511956875,168.25254200791463,10.1536,0.12568515999999993,0.01824841678737873,0.4836000000000001,3.8407111111111107,1.4696754681379784,46.57923792639999,0.29195604201089154,0.11823363999999993,2.0319326474622774,0.08154657959999997,52.43396487690412,0.5013019607843134,-0.0013586501960783795,-0.009953030600151841,0.06620392156862741,0.7466527233115468,-0.022053396482905732,2.296185486933334,0.008570090154110723,-0.00028109098039217603,-0.045299332956776635,-0.001940241168627472,0.800280519625272,-0.24336744186046513,0.01449379348837212,0.0005613527458343525,-0.10290232558139539,-0.3622614987080103,-0.09250913481803343,-1.3097756431441854,-0.030989758955099523,0.01208745302325581,0.07472038153571314,0.012329447144186025,-4.941542840727306,-1.9561454545454542,-0.004301687272727249,0.0024108220295261853,-0.02960000000000002,-0.6878222222222223,-0.17328893936049872,-9.008608468218181,-0.04519043739356197,-0.00713091272727272,-0.1985552313256017,-0.0034054839636363807,-9.361841487323668,-0.8332491228070174,-0.026505668771929784,-0.004116422310278611,0.01061052631578948,-0.3549021442495127,-0.06884561631928794,-3.994821255873684,-0.01596453453875247,-0.024068271578947364,-0.4058160614155416,-0.014230414512280737,-3.752020136514367,1.9918545454545453,0.02896578545454544,0.0011107473688016973,-0.019418181818181814,1.0278545454545454,-0.013782233146366101,9.286023740145454,0.020977913133678406,0.029009232727272707,0.45141122334455663,0.015938218218181813,6.352037354577264,-0.19936576576576587,0.007218461621621661,0.0022127263145736193,-0.027563963963963965,-0.04931971971971971,-0.12921190920655187,-0.7002793163099102,-0.013198199393833219,0.006837963603603586,0.15954246963012392,0.0010351840036035463,-0.5008808837483751,-1.2200150943396226,-0.04382931094339612,-0.001501415327272903,-0.001901886792452828,-1.0234364779874212,0.1020497351913712,-5.751776335833963,-0.0005422498438159408,-0.03989801735849056,-0.5580331469834614,-0.02362260205283029,-1.7805744664088259,-0.3077666666666667,-0.007413826666666655,-0.001658596990266232,-0.010683333333333324,0.3266037037037037,-0.1489664953582304,-1.455926008066666,-0.028043462408648676,-0.005678035833333339,-0.0683366826703246,-0.00695524585000001,-3.857291805999488,,,0.4839506172839506,1.1944444444444444,0.6111111111111112,0.0,0.5833333333333334,0.027777777777777776,0.8510513613762979,0.013796283952403822,0.02016665432277419,0.8891127233520223,0.23982557076171418,0.2432008698182189,1.7401640847283202,0.48302644057993305,1.997039396029773,1.5824928953694124,0.07394097105273555,0.2680577858045588,0.0,0.4145465006603609,7.702695584320012,1340.0,306.94849999999997,149.0,356.44444444444446,7976.162487667827,5300.827666000001,80.98581281152698,311.10489999999993,257.5867626886145,385.227857,11314.435576493075,1339.0,317.804,181.0,308.0,7302.7768815411,5088.93471,98.27724712,326.1775,160.2746913580247,392.08726799999994,13819.136643070553,1889.0,529.1089999999999,271.0,366.66666666666663,12928.568848692703,6970.816983999999,139.883458085943,540.1699000000001,262.54938271604937,661.5384339999999,18895.172254832956,1895.0,670.076,302.0,346.0,17085.444524181956,6681.247914999999,154.34721483188596,681.1852000000001,325.7006172839506,845.1705519999999,20123.006737605116,1867.0,697.4227999999999,287.0,352.33333333333337,18250.32535989859,6562.172343,143.666136735829,706.4458999999999,333.28395061728395,882.557502,18861.681209369683,1958.0,662.676,281.0,454.33333333333337,17548.673337820055,7181.566036,142.95077149347,671.9182000000001,367.8240740740741,838.910502,18992.014039238256,2051.0,688.0200000000001,276.0,408.6666666666667,17710.7606596751,7396.061708,145.57217986552698,697.0072,413.32098765432096,866.626998,19350.14216860355,1872.0,671.0989999999999,255.0,336.0,17187.340907942697,6619.632731,132.16208655043297,677.9934000000001,372.73148148148147,842.7013380000001,17939.989573789542,1514.0,581.315,227.0,347.33333333333337,15225.459098494961,5361.836646,120.789482108131,589.366,316.787037037037,734.514786,16152.244032759805,507.68000000000006,6.284257999999997,0.9124208393689366,24.180000000000003,192.03555555555553,73.48377340689892,2328.9618963199996,14.597802100544577,5.911681999999996,101.59663237311386,4.077328979999999,2621.698243845206,25.566399999999984,-0.06929115999999735,-0.507604560607744,3.376399999999998,38.07928888888888,-1.1247232206281923,117.10545983360004,0.43707459785964686,-0.014335640000000979,-2.3102659807956085,-0.09895229960000107,40.814306500888875,-20.9296,1.2464662400000024,0.04827633614175431,-8.849600000000004,-31.154488888888885,-7.955785594350875,-112.64070531039994,-2.665119270138559,1.0395209599999997,6.425952812071331,1.0603324543999981,-424.9726843025483,-215.17599999999996,-0.4731855999999974,0.2651904232478804,-3.256000000000002,-75.66044444444445,-19.061783329654858,-990.9469315039998,-4.970948113291817,-0.7844003999999992,-21.841075445816188,-0.3746032360000019,-1029.8025636056034,-94.99039999999998,-3.0216462399999955,-0.46927214337176165,1.2096000000000007,-40.45884444444445,-7.848400260398826,-455.40962316959997,-1.8199569374177815,-2.7437829599999994,-46.26303100137174,-1.622267254400004,-427.7302955626378,219.10399999999998,3.1862363999999985,0.1221822105681867,-2.1359999999999997,113.064,-1.5160456461002711,1021.462611416,2.307570444704625,3.191015599999998,49.65523456790123,1.7532040039999994,698.724109003499,-22.12960000000001,0.8012492400000044,0.24561262091767175,-3.0596,-5.474488888888888,-14.342521921927258,-77.73100411040004,-1.4650001327154873,0.7590139599999981,17.709214128943756,0.11490542439999364,-55.597778096069646,-129.3216,-4.645906959999989,-0.15915002469092773,-0.20159999999999975,-108.48426666666666,10.817271930285347,-609.6882915984,-0.05747848344448972,-4.229189839999999,-59.151513580246906,-2.503995817600011,-188.74089343933554,-29.545600000000004,-0.7117273599999989,-0.1592253110655583,-1.0255999999999992,31.353955555555554,-14.300783554390117,-139.76889677439993,-2.692172391230273,-0.5450914400000005,-6.560321536351162,-0.667703601600001,-370.30001337595087,0.7216635887151505,0.5939636340399673,0.46577549627350695,0.34551150135515457,0.32034876750544605,0.20714976387556838,0.20993948956057834,0.12329909444577443,0.13537647079619727,0.07140231713513029,0.09309692537180322,0.04223289322719697,0.06173390545393354,0.025758544377662264,0.04047733349842382,0.015512126863280313,16.002004215389924,5.693999276338973,3.5558131026616184,2.1939533395837456,0.4532890741801914,-0.48910258852919464,3.1256735613336883,0.9725718832483077,6.029015112572109,0.6561923290115363,14.540282740522027,10.3379404176306,32.06099918266951,11.705007073558681,2.9163963960460593,0.7413674069927262,3.5019082334424856,2.243961550137074,7.010444737775792,0.6267951105305917,3.714814239898432,2.4399704417477697,24.434231831429486,14.700477568571932,0.26380112297659564,0.5619870806598972,0.7337493814240764,0.8259104956627921,0.8851964252764016,0.9055116821882556,1.7016310169330346,749.2916285849511,0.0,3.0,4.0,0.0,10.0,1.0,2.0,1.0,0.0,4.085611817353305,2.3242599881712915,1.3096788691072794,0.7652932501298073,0.41509775004326865,0.29509775004326766,190.51082576009475,1598.4643350575461,62.76115964179122,31.96928670115092,63.22876116211425,,15.0,661.0,11.887211334113243,14.383611552215466,24.17409502996272,12.1736752296728,22.888787932785107,6.923737199690624,0.0,60.6636706846161,5.316788604006331,4.736862953800049,13.066666666666666,32.25,16.5,0.0,15.75,0.0,0.01604938271604939,0.75,0.15395780590717312,0.056258064516129136,-0.09769974139104398,0.01922398589065255,0.1366804123711337,0.0,0.5906666666666668,0.8382716049382712,0.43670886075949367,0.5344086021505376,0.8190476190476187,22.97838675716004,0.3724996667149032,0.5444996667149031,24.006043530504602,6.4752904105662825,6.56642348509191,46.984430287664644,13.041713895658193,0.5773195876288663,0.11479591836734693,0.0,0.22959183673469388,0.2857142857142857,0.35820411126786095,-0.852329444996709,-0.05213273167942741,-0.01704658889993418,-0.044859444473511,0.6417958887321391,1.5271224322581198,0.04129266158902725,0.0305424486451624,0.04926201394381032,-5.138485810895544,0.7645699313447407,0.6416610720772757,1.5439966949114943,1.0132340777502067,0.5675805315645978,1.1244249420642776,0.7681119272846646,0.9797435203702053,0.637342083943317,0.5405469782451727,0.647649515211525,0.972030200834493,1.0420522174744755,0.6978775285579405,1.0439411647906633,1.4491603670148305,1.0011940618231767,1.1350363581840446,1.0360331447401614,1.1819297763467942,0.7118765506496585,0.6021002142292419,0.6608554551409312,1.0845017873739309,1.2433207747185053,1.0148525092381633,0.9537437162839755,1.1145574855252274,1.153637373550353,1.13466018537965,1.2348075745536327,1.2014286280974147,1.034984013625287,1.0605287676504649,1.0320384012325101,1.1576495599624845,1.115031018295818,1.3968964126139238,1.3774441906208916,1.0043460595243277,1.1499657308425668,1.0362379158230701,1.1144836568358656,1.0318663762693638,1.3696014510953118,1.3820965818023634,1.3761967390944325,1.0225486248971123,0.7734560782740737,0.7606511670619159,1.087164241199001,1.1329799233025037,0.7238584815943176,0.9891322710966769,0.7726060208286203,0.8855578212452422,0.7471108591737207,0.700318319527808,0.7837438045709835,0.8559157015159241,1.1795133062466814,1.1658801869515691,1.1977939536959565,1.1136446620317586,1.1203844675076857,1.10972014315357,1.158367247336156,1.1078901516471027,1.1409433295201172,1.24302865389976,1.230311765354611,0.9662387034372381,1.2051028281074394,1.8367331062762118,1.5083682638064824,0.9654400174789705,1.4710544518310726,0.9458583510239412,1.1996024619054402,0.9680657431579333,1.7735414739066095,1.8405961723919146,1.8183726066351646,0.9410382782911126,0.8907760137619496,1.1126041716725614,1.2137155170579403,0.9710159911772813,0.9212673530750478,1.057420074090944,0.9032771227749483,0.979768867842671,1.0939710312846103,1.1708307781089256,1.14233412464304,1.030023826560327,5.0,0.08254259769411285,2.222222222222223,0.875,1.1022222222222224,0.7638888888888888,0.38857142857142857,0.37326388888888895,0.31670445956160237,0.14,5306.591846373843,5964.626819651877,2570.8739795498623,2336.745542718205,15.155820447246056,0.46077415520380155,8.172410084245753,0.8545105166054348,1.0,0.2857142857142857,1.5582443724214192,3.319596201603433,4.334177320667445,4.878562939644917,5.228758439731456,5.348758439731457,0.17857142857142855,0.004344347247058572,0.06349206349206352,0.026515151515151516,0.03674074074074074,0.021825396825396824,0.011102040816326531,0.012442129629629628,0.011729794798577867,0.005600000000000001,0.37236309363637377,23.28061224489796,13.26530612244898,9.846153846153847,163.04406009374193,1.0,4.18019696758118,168.96635824224333,,136.23013874560397,142.6167047099796,145.24544236164135,136.25339707541485,189.82829100733983,143.43293212531603,143.43063579892313,170.51727305702144,0.04937184454620168,-0.010809949210220047,-0.5454188555708416,0.1368981008449698,0.19440481247118363,-0.015005623323662419,0.04929633006365506,0.02935404280412533,-0.002377419661546208,-0.022293717763407123,-0.023793041696471992,0.015262635993750226,-0.023968586694420216,0.1153182562553298,0.03076172318809621,-0.21278396522207482,-0.09432146501724488,-0.06294528065793933,-0.02811930167714994,-0.10614529071449542,0.10223362000235987,0.0367730601843683,0.15119514766485717,-0.09424316571001737,-0.19265535913818288,-0.03422589646006936,0.13211129807127145,-0.0612076095947064,-0.1790872060729495,-0.11790966313130957,-0.19340394710735098,-0.15478507340456452,-0.060312045939486636,-0.0977174275798863,-0.04176121157185091,-0.17854536671605642,-0.08206440304985595,-0.21088940629052624,-0.2255769559760208,0.021940707849027043,-0.09240532130177324,-0.046844094367658365,-0.08576398914438906,-0.05468129526895321,-0.2035653438306338,-0.1997192485303948,-0.17450657749329737,-0.07155705553304514,0.1961722488038277,0.2304630511235014,0.06086814991917165,-0.04015339499210466,0.26762089512043225,-0.009377739130277282,0.19935971805331662,0.07185298509046036,0.24535515211468348,0.22215855624364986,0.19544925484749354,0.12114356351821834,-0.019634983234100796,0.057432887236819885,0.12125579661814942,-0.05699744409421829,-0.012841298992011823,-0.08791866776565191,-0.015034151426359183,-0.045206118369493634,0.05783433212073646,0.07851759743581058,0.01269438900664261,-0.009552603640107347,-0.12015591458592248,-0.34872303892835194,-0.08227647059833358,-0.003932768388033143,-0.2664705697407538,0.06943691815218515,-0.12348369341985294,-0.001857299612918139,-0.33745063890861,-0.27463171462912445,-0.28968231615235396,-0.033958417422542186,-0.030311088349616554,-0.058987287494137404,-0.09088991168885281,-0.02209125999448578,0.08503730019132259,-0.10136012921748305,-0.0312569735547666,-0.09605371485205469,-0.04802386049633034,-0.03363137196288061,-0.08529169321529718,-0.07356475549874983,17.1495095151994,17.65632188467731,3.59088518824575,16.69754054122349,31.99361866172175,37.89896067879387,41.420662470175344,42.65389953426258,43.21497953426257,53.92006369280387,42.727308174974134,1.9964062184238598,7.237560216723088,0.0,11.192755517829745,8108.16250174246,7110.157696622692,1837.2465023525547,37.0,35.0,39.0,44.0,53.0,46.0,45.0,46.0,45.0,385.1347792160006,28.0,4.844187086458591,5.616771097666572,6.424869023905388,7.217443431696533,8.028455164114252,8.829519094780778,9.642057851228413,10.447583528813514,11.261009427187183,0.6799999999999998,0.9808800000000001,1.1164832180314912,0.6418749479643661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.689990886227545,0.9688627450980393,1.005455207574654,0.6407046895990232,10.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,4.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,10.05365155780638,13.151638370425493,5.11527693018572,5.907179729351506,0.0,14.383611552215466,0.0,0.0,0.0,72.42555563400722,17.54772460632,12.676590806437414,5.917906046161393,240.63377873110903,-572.5764965326604,-35.021642200568394,-11.451529930653207,-30.13560508066633,431.1446044912038,1025.8878385248856,27.739517441222823,20.517756770497712,33.09315608144792,0.4666666666666667,0.8646765907162303,0.19311313410300832,65.33853622814394,0.13668813389719758,45.79915507798382,0.1353234092837699,8.0,0.32142857142857145,0.2760956906103621,0.5881787363075839,0.7679460948207549,0.8644024184180437,0.9264513949176587,0.9477134533339259,2.9846000000000013,,1.7678571428571428,1.3039347313657133,0.8308858337010604,1.7649211973099008,-4.423220944503943,1.2076958384332928,1.205598298147459,-1.7577236653040635,106.02270000000001,19.120474506015515,0.0,5.316788604006331,5.917906046161393,19.951440787129552,12.297610012659364,71.7905736680101,0.0,0.0,4.04305126783455,0.0,5.2832037287379885,0.0,6.693323668269949,0.0,8.174421152646497,0.0,9.69196372993396,33.99999999999999,18.939097333746748,0.0,0.0,0.0,0.0,0.0,1.8939305796362285,0.0,49.044000000000004,0.0,35.63324561791567,0.0,0.0,0.0,0.0,0.0,-0.7941834982952181,55.82416090157456,5.316788604006331,0.0,0.0,29.289371960148436,32.14817809345444,5.917906046161393,18.050640183084614,60.6636706846161,0.0,0.0,0.0,32.093747398218305,34.49954431137725,34.45836141173264,337.93271648448666,,272.551081244693,285.13682166208025,290.42933762449,272.5990652604368,381.42495947627856,286.77640529963696,286.7719680202057,341.6855548789703,34.45836141173264,337.9327164844867,,271.0451288637406,283.9294746885935,289.65999888958174,271.09561387013594,384.07980295918355,285.6581684121988,285.6556732996987,342.79226977934695,4.535908912382379,251.0191740538357,,207.8006392435964,213.2852279659391,216.93207991795987,207.84389319181332,300.42221929518774,215.05129964305348,215.6220082820638,264.2244896371973,1.2762356078419497,12.51602653646247,,10.094484490544186,10.56062302452149,10.756642134240371,10.096261676312475,14.12685035097328,10.621348344430999,10.621184000748359,12.655020551072974,2.2679544561911884,168.96635824224333,,136.23013874560397,142.6167047099796,145.24544236164135,136.25339707541485,189.82829100733983,143.43293212531603,143.43063579892313,170.51727305702144,48.44313725490196,0.0,1.4752937067975846,0.0,0.0,0.0,0.0,50.2727603787327,0.8531855261107603,2.6246736426051904,5.1617209625024385,1.1128293330441876,-0.3997932040635863,0.0,0.0,0.0,0.0,32.03523447995116,580.8710421215306,77.91221862107096,165.97981008017163,216.70886603337226,243.92814698224586,261.4379219865728,267.43792198657286,445.0,127.31189570585121,90.90734110078225,60.88596354742294,97.77,72.47,0.875,7.215837226812538,5.807354922057604,4.2878484921769715,5.115514976824167,,5.12701697757822,5.1201995289074596,5.119033598115667,5.127027520385126,5.135681486309504,5.121458892495723,5.122802146319443,5.133231034692164,0.1588092034139619,0.18946351766015432,,0.18988951768808224,0.18963701958916518,0.18959383696724694,0.18988990816241208,0.1902104254188705,0.1896836626850268,0.18973341282664602,0.19011966795156163,2.4490368631734434,2.625529847077029,,2.627775777212298,2.6264451817921084,2.6262174438780734,2.6277778335339583,2.629464321569407,2.626691111414596,2.626953356553865,2.6289870652564646,296.1400000000005,270.71911824755057,155.3558412746426,,153.2734639769626,154.24485266034196,154.43539434652638,153.2724527749192,152.77692533779714,154.1225278106196,153.97648472014004,153.05082217013197,10.02663400916854,5.753920047208985,,5.676794962109726,5.712772320753406,5.719829420241718,5.676757510182193,5.658404642140635,5.7082417707636885,5.702832767412594,5.668548969264147,6.59433359235853,6.038970008880413,,6.025475445254801,6.031793065127751,6.033027622325582,6.025468847861144,6.022230626152024,6.030999694207961,6.030051667142129,6.024021810292745,5.1617209625024385,35.63324561791567,2.58590744085822,1.8939305796362285,-0.7850478827129244,18.939097333746748,0.5059685513834141,1.4523480636260215,0.0,366.1977931015817,161.6525708246602,-384.64451311180676,-23.526782175288155,-7.692890262236134,-20.24444805851614,289.63362534012435,689.1692735316807,18.634808178031815,13.783385470633615,22.231266888118732,2202.0,33.0,1.5075406425847215,0.7478909578906802,0.0,0.0,0.11785113019775792,0.02946278254943948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2041241452319315,0.06415002990995841,0.14433756729740643,0.045360921162651446,19.484916895309063,16.037018119079118,13.041713895658194,9.674322037944329,11.212206862690612,7.250241735644893,8.187640092862555,4.808664683385203,5.95656471503268,3.141701953945733,4.934137044705571,2.2383433410414395,2.839759650880943,1.184893041372464,1.8214800074290718,0.6980457088476141,2.5350563636705865,1.1412654033580198,3.0315310211370226,1.3233434798432482,4.279452419940701,1.6306624587231446,90.00859023527951,56.217897682638885,38.41689994027326,28.44214540245337,25.31370796560689,24.147673984878978,126.0,137.0,57.61423899999998,30.443760999999995,0.4,82.06,8.916666666666668,6.1944444444444455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,50.0,0.0,0.0,51.0,12.0,3.0,9.0,42.0,15.0,28.0,36.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,5.0,1.0,0.0,27.0,6.0,0.0,1.0,4.0,0.0,2.0,9.0,1.0,0.0,0.0,0.0,2.0,3.6375861597263857,5.101009067445759,4.07753744390572,4.400603020246817,4.764308407326388,5.2223808004580965,4.922714412723786,5.0271645960474665,5.237438806241952,5.391067453928651 +28417,C#C[C@]1(O)CC[C@H]2[C@@H]3CCC4=Cc5oncc5C[C@]4(C)[C@H]3CC[C@@]21C,0,19.153846153846153,5.809709615384614,3.480769230769231,5.423076923076923,160.85375140480238,75.18031617307692,1.4587837775177497,5.896996153846152,3.0116185897435903,7.388364384615382,208.32170510136095,22.464285714285715,6.122678571428572,4.428571428571429,5.732142857142857,142.9375089829741,84.18175630357145,1.8679875008214286,6.281144642857143,2.6008184523809526,7.5634262142857125,264.4467056824571,19.272727272727273,5.922945454545456,4.1454545454545455,4.318181818181818,147.91457966809764,71.5317549090909,1.6657236994821552,6.064763636363636,2.207070707070707,7.423914618181818,230.88623893618038,15.67251461988304,5.834502923976608,3.327485380116959,2.5555555555555554,150.64108110152856,55.65178354970759,1.4901531377835089,5.9603216374269,2.2483755685510074,7.378470573099414,197.3590811372644,11.258620689655173,5.699060344827585,2.5732758620689653,1.5689655172413792,156.7802177940787,36.93447888362068,1.2489674135970132,5.797075431034482,2.0634877873563218,7.305873327586206,154.2478773235805,8.726530612244899,5.467285714285714,2.179591836734694,1.2163265306122448,163.20784777586556,28.08447831428571,1.043179066921657,5.543646938775511,1.787953514739229,7.138874008163267,122.3646512153858,9.015873015873016,5.562798941798943,2.2116402116402116,1.4074074074074074,166.29162409359193,29.457492068783058,1.0091279419165184,5.624492063492062,1.8816872427983538,7.239016910052911,120.96892104579344,10.420634920634921,5.690793650793651,2.3015873015873014,1.8015873015873016,162.7921358749295,34.35790090476191,1.0936442315417616,5.763980158730158,2.2056878306878303,7.32902946031746,134.6012192987144,10.208333333333334,5.7348125,2.1458333333333335,2.0729166666666665,166.65184991557516,34.12838167708333,1.0120663737230522,5.7887239583333345,2.450086805555556,7.400607374999999,126.41214490568876,6.903846153846154,0.08013088017751474,0.008816305618084488,0.808801775147929,3.173076923076923,1.3879691770038731,33.06445952773667,0.23829375140720235,0.07962322485207093,0.8046797953648916,0.046557282544378666,52.88740853978082,0.5267857142857143,0.010509779163144559,-0.0032600556737415443,0.3869399830938293,1.3392857142857142,0.17476671100528426,2.519267143623199,0.02393017698797874,0.009183849323753148,0.006160406100309928,0.0063342930050717785,4.373173083065206,0.9772727272727273,0.00609259884346423,-0.00018869664249927467,-0.07768289402904785,0.3090909090909091,0.10787871875280985,4.673552219990583,0.02146123458374688,0.007581460462614285,0.08445312033052418,0.0019267768961807148,6.4049159634918755,-0.6505847953216374,-0.0030055877798539667,0.0005669772947104402,-0.22355661095539642,-0.6154970760233918,-0.16420221041514024,-3.153000165051129,-0.028741978995004216,-0.0036328514827502698,0.07170409527338509,-0.0013132667998892811,-6.141479429821835,-1.6702586206896552,-0.011891382498469692,-0.0008976871459830873,-0.06725668230973271,-0.49353448275862066,-0.23107753391075678,-8.006782597862681,-0.046116259586395744,-0.01372388798204446,-0.10999761421988705,-0.004870667159763301,-11.941548550532225,0.3622448979591837,0.005213766604274829,0.000293811193790055,0.047791631445477586,0.22755102040816327,-0.07380202729924648,1.6920084134721067,-0.004173747430792967,0.005587575775872488,-0.007575312546122969,0.0021618870003623403,0.5132855338622153,0.6547619047619048,-0.0012357845324191567,-4.775347982841696e-05,0.02300530665915281,0.062169312169312166,0.1703378087963665,3.199938694180286,0.031309116775369614,0.00016132948248333205,-0.04256164088562591,-0.001746241844337965,6.810719786458176,-0.35714285714285715,-0.0043854436695782845,0.000464294018120142,0.004842913496759643,-0.12698412698412698,-0.06676454693544355,-1.7215494819491397,-0.01563011652123527,-0.004108847562693712,-0.06375463256472871,-0.0025977050108011604,-3.0335611785705625,0.546875,-0.0064468056582840235,-0.00023194810349491936,0.06719982741617354,0.010416666666666666,0.17586207895073622,2.721650421782545,0.034525609278097356,-0.004549066198224856,-0.10275254509779752,-0.005135321005917178,7.118469180776342,,,0.48266666666666663,0.9,0.28,0.0,0.62,-0.34,1.3787718566926241,0.02010532803416993,0.03730532803416993,0.4948433319450794,0.12054989368917063,0.3559133207715833,1.8736151886377035,0.4764632144607539,2.088310156019989,1.85486532063631,0.08116434232508503,0.1522804930585944,0.0,0.23344483538367944,6.4846957520000155,996.0,302.10489999999993,181.0,282.0,8364.395073049724,3909.376441,75.85675643092299,306.64379999999994,156.60416666666669,384.1949479999999,10832.72866527077,1258.0,342.87,248.0,321.0,8004.50050304655,4714.178353000001,104.607300046,351.7441,145.64583333333334,423.5518679999999,14809.015518217599,2120.0,651.5240000000001,456.0,475.0,16270.60376349074,7868.493039999999,183.22960694303706,667.1239999999999,242.77777777777777,816.6306079999999,25397.48628297984,2680.0,997.6999999999999,569.0,437.0,25759.62486836138,9516.454986999997,254.81618656098001,1019.2149999999999,384.4722222222223,1261.7184679999998,33748.402874472216,2612.0,1322.1819999999998,597.0,364.0,36373.01052822626,8568.799100999997,289.7604399545071,1344.9215,478.7291666666667,1694.9626119999998,35785.50753907068,2138.0,1339.485,534.0,298.0,39985.92270508706,6880.697186999999,255.57887139580595,1358.1935000000003,438.0486111111111,1749.0241320000005,29979.339547769523,1704.0,1051.3690000000001,418.0,266.0,31429.116953688874,5567.466000999998,190.725181022222,1063.0289999999998,355.63888888888886,1368.1741960000002,22863.12607765496,1313.0,717.0400000000001,290.0,227.0,20511.809120241116,4329.095514000001,137.79917317426197,726.2615,277.91666666666663,923.4577119999999,16959.753631638014,980.0,550.542,206.0,199.0,15998.577591895215,3276.324641,97.158371877413,555.7175000000001,235.20833333333337,710.4583079999999,12135.565910946121,359.0,4.166805769230766,0.4584478921403934,42.05769230769231,165.0,72.1743972042014,1719.351895442307,12.391275073174523,4.140407692307688,41.843349358974365,2.4209786923076906,2750.1452440686026,29.5,0.5885476331360953,-0.1825631177295265,21.66863905325444,75.0,9.78693581629592,141.07896004289913,1.3400899113268094,0.5142955621301764,0.344982741617356,0.3547204082840196,244.8976926516515,107.5,0.6701858727810653,-0.020756630674920215,-8.545118343195263,34.0,11.866659062809084,514.0907441989641,2.360735804212157,0.8339606508875714,9.28984323635766,0.21194545857987862,704.5407559841063,-111.25,-0.5139555103550283,0.09695311739548526,-38.22818047337279,-105.25,-28.07857798098898,-539.163028223743,-4.914878408145721,-0.6212176035502961,12.261400291748851,-0.22456862278106707,-1050.1929824995339,-387.5,-2.7588007396449683,-0.20826341786807626,-15.603550295857987,-114.5,-53.60998786729557,-1857.573562704142,-10.698972224043812,-3.183942011834315,-25.519446499013796,-1.1299947810650859,-2770.4392637234764,88.75,1.2773728180473332,0.07198374247856348,11.70894970414201,55.75,-18.081496688315386,414.54206130066615,-1.022568120544277,1.3689560650887596,-1.8559515738001273,0.5296623150887734,125.75495579624274,123.75,-0.2335632766272206,-0.009025407687570805,4.3480029585798805,11.75,32.19384586251327,604.788413200074,5.917423070544857,0.030491272189349758,-8.044150127383297,-0.33003970857987536,1287.2260396405952,-45.0,-0.5525659023668639,0.058501046283137896,0.610207100591715,-16.0,-8.412332913865887,-216.9152347255916,-1.969394681675644,-0.5177147928994077,-8.033083703155818,-0.3273108313609462,-382.2287084998909,52.5,-0.6188933431952662,-0.022267017935512258,6.451183431952661,1.0,16.882759579270676,261.2784404911243,3.3144584906973464,-0.43671035502958616,-9.864244329388562,-0.4929908165680491,683.3730413545288,0.6979753195750533,0.6086609825962949,0.4107441503972017,0.3365425281778494,0.24910110847978503,0.1957093605220406,0.15847118741504362,0.11710106891873616,0.0961314538015013,0.0699654415543799,0.05781448971003068,0.040874641554503315,0.03647836704085627,0.024305261884760388,0.0225982304133893,0.013926744868723263,8.033337761200682,5.669790853444065,3.5694730115068336,2.169497897100733,0.3859918168021388,-0.46156434446592,4.11607924214039,0.9114220609132553,6.033165538157971,0.9950210980216654,14.56491069840994,10.930141971148814,16.01598180013384,11.680966645344093,2.0062678178432845,0.7158003597056629,3.515024839600844,2.219435419042015,6.002560129358242,1.080272029173172,3.723220107548217,2.4154464228726478,20.914702776872506,14.681755643898764,0.22027812092876756,0.5512883484428789,0.7553183350946681,0.8719667200044267,0.8849369583651575,0.8849369583651575,1.4460615555126812,801.194381990157,1.0,1.0,2.0,1.0,2.0,7.0,2.0,4.0,2.0,4.394028041700658,2.430893326267531,1.220845066449308,0.5290341346985956,0.4521110577755181,0.4521110577755181,168.21916590271582,797.1635964895612,46.58861163034705,15.33006916326079,29.969296708484514,,11.0,476.0,5.601050810983688,5.106527394840706,10.82998093879356,17.75371813848418,44.28517715643051,11.984273114623004,5.573104530069267,6.196843571613076,31.000592082196217,10.946444832593606,12.066666666666666,22.5,7.0,0.0,15.5,0.0,0.017333333333333343,-8.5,0.08023344814389577,0.0305982905982905,-0.04963515754560527,0.018358974358974378,0.0930737564322468,0.0,0.5294871794871797,0.7773333333333331,0.44925373134328395,0.4988888888888892,0.7589743589743587,34.469296417315604,0.5026332008542482,0.9326332008542482,12.371083298626985,3.0137473422292658,8.897833019289582,46.84037971594259,11.911580361518848,0.6209262435677532,0.15193370165745856,0.12430939226519337,0.24861878453038674,0.6818181818181818,0.33839540360074355,-0.5182987275553361,-0.05355163073634735,-0.009967283222218001,-0.025914936377766807,0.6616045963992565,1.0133377014277596,0.03596175781151956,0.019487263488995373,0.03166680316961749,-4.520572515736027,0.899298647035416,0.7146828548734825,1.290198367512886,0.9094650205761318,0.5464285714285714,1.0398380828227338,0.9036967302200911,1.0328401239844045,0.7376169325311969,0.8574444628341085,0.7158051581455384,0.9986293814974472,0.8149151683970626,0.6524091650254978,0.7408833421877236,1.7638109489961342,0.9399173553719008,1.021636017682404,0.8202358706986266,1.0040001609251303,0.6617029538153992,0.5328926031313024,0.6558150994318594,0.940954597347813,1.0492596393490692,0.8120288907278022,0.7340022436394481,1.6203723758412951,1.1188729399255715,1.163872027354497,1.0543392083704515,1.1864564515774148,0.8444165906328339,0.7426884346857798,0.7924893041786437,1.1569297447361788,1.198642061281337,0.9815545587647835,0.9044082353094243,0.9774135565961876,0.9932210031347962,1.1528301312215004,1.2011405621994977,1.199815324343163,1.024805377704383,1.1140336121136203,0.9205345300393003,1.2259055326611819,0.882229549201296,0.6098488812459834,0.6409060612949347,0.7226225469611713,0.7298330241187384,0.9615499241298832,0.8870522793762887,0.9789413295301695,0.6527412512976126,0.7022964825956808,0.5587237197526927,0.9708620651689001,0.8835610381571385,0.9958785625010308,0.8552325154412763,0.8340772675477751,0.9607984607984608,0.796217991772278,0.8807208474188063,0.7916855315241004,0.9830705092097042,0.8766622445350147,0.9927682557832802,0.8168194229098346,1.0412189945616128,1.113428828606799,0.9900156981844395,0.8613451782176063,1.0658730158730159,1.0087776100985204,1.0400305675545518,1.0094557107010078,1.1006044643725255,1.125726486724562,1.1120654512404888,1.0117455936782929,0.9566939415041783,1.4808949358921408,1.456330281661442,0.7010459533607682,1.165530303030303,0.7941221650060789,0.9469382985804734,0.7625354293634827,1.4026505948410883,1.6864296189555186,1.5957854719148392,0.7857583784839246,7.5,0.052345679012345686,6.444444444444446,3.520833333333333,2.546666666666667,1.146111111111111,0.7576417233560093,0.40192743764172334,0.2610308012093726,0.14594135802469138,4972.00200017833,5823.933348592252,2394.6172324370395,2122.273135568609,11.305767678652161,0.4896501605167812,5.769896720034694,0.9594402165632143,1.0,0.75,1.3064116764404345,3.2695463918735608,4.479594651691784,5.171405583442496,5.248328660365574,5.248328660365574,0.25862068965517243,0.008724279835390947,0.1342592592592593,0.0640151515151515,0.056592592592592604,0.03274603174603175,0.026125576667448594,0.018269428983714694,0.015354753012316036,0.012161779835390948,0.6268695431024688,17.122473246135552,5.510416666666667,2.121256391526662,149.4111683415793,1.0,4.214960073116541,107.41519428264304,,98.61409226557396,98.40455981040455,98.8059985263985,98.6176439903293,105.29262554186415,98.55103876533592,98.62414901441332,102.21679313593361,0.07630322323915638,0.13115766530783315,-0.3697757104806281,0.478411391991639,0.42207792207792205,0.12591541217258356,0.07619260013942976,0.10042301506717334,0.11534133841998344,0.00765572360061112,0.13605375268700218,0.08268836011837856,0.1415548240060775,0.07603309523079287,-0.02140314216333538,-0.0960468886394812,0.09741046831955921,0.07772414585292252,0.14134669934858896,0.09006209544736817,0.09521669684567038,0.10495245539528915,0.04138508071952224,0.12110474194768364,-0.09423512355633744,-0.037508483286289356,0.06431007717647916,-0.27640469868467854,-0.19397483608009924,-0.11830393148181709,-0.09535919262210174,-0.12061574768651487,-0.045625525586279775,0.0891088550829961,-0.02820754838166226,-0.11612365966470715,-0.2419316107962732,-0.14839949932069377,-0.10182123724723226,-0.08315595288775367,-0.15553814002089864,-0.16648607025234535,-0.24215676627485952,-0.19352693603614943,-0.172360363543948,-0.13669737310852612,-0.1046166548728559,-0.2257919017066234,0.05247001307486784,0.06506563503014967,0.033325885752800294,0.05908942452152327,0.071713048855906,-0.05317267020191223,0.05117302498329777,-0.017515135861287282,0.07017520059321185,-0.009414070776671923,0.0464349910951443,0.009705250229383663,0.0948401644780475,-0.015422076104511906,-0.005416495513774206,0.028443689623387836,0.019592752926086258,0.12272448957696934,0.09677879934786063,0.1313887443144399,0.002026161120490412,-0.0528926426769866,-0.03750738335454689,0.1287777180713117,-0.051730998806207726,-0.05472850990608324,0.05266310382523001,0.0059877631894092705,-0.04001924001924002,-0.04810232679630842,-0.052066463705689466,-0.0655918018367428,-0.051603631607830366,-0.07922981654562163,-0.05579588989810592,-0.057358854637182315,0.07921309192200557,-0.08045344870794319,-0.02630899081120041,0.083085657674135,0.0032828282828282827,0.12670459968740752,0.08231347073734693,0.14488675877656199,-0.057132403349354405,-0.12769370585625697,-0.1103011328253998,0.13459667201167508,11.7449342426451,19.8797153778974,5.688218364190332,11.229064241773262,30.234593897824528,35.340186030770006,36.46072375766704,36.5382622192055,36.5382622192055,52.207753900499725,46.37163301590775,2.0291085581271258,3.80701232646486,0.0,5.836120884591986,4236.179155318297,4029.164415668589,858.243691312221,362.0,48.0,74.0,102.0,135.0,174.0,223.0,275.0,318.0,337.2041791040008,29.0,5.043425116919247,5.988961416889864,6.957497370876951,7.918992488165245,8.890272839380247,9.856553165346915,10.829193818819975,11.797781046657828,12.771269970523502,0.5833333333333334,0.9574615384615387,1.1214600119958549,0.5403108048391538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6615316789497929,0.9458521870286576,0.9867359515939269,0.6058122524229282,1.0,1.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,7.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,1.0,9.629622331814055,5.601050810983688,5.760247418874442,0.0,0.0,0.0,0.0,0.0,6.423349895620259,30.497676505431606,74.1904800751969,10.978441961093775,6.196843571613076,176.1230614950871,-269.75649696990524,-27.871764961878387,-5.187624941728947,-13.487824848495263,344.3422273978029,527.407099519656,18.716846668468666,10.142444221531843,16.48147185998925,0.45454545454545453,0.8716161444996907,0.24616407834274753,90.16874049748944,0.13855291327764438,119.20427716110325,0.1283838555003093,6.0,0.0,0.22917735140377105,0.5735603836785694,0.7858331765944147,0.9071941532834745,0.920688388943625,0.920688388943625,4.221000000000004,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,96.35280000000006,9.629622331814055,0.0,5.156663257125445,28.58369907727774,64.394276570847,0.0,23.093647012253783,0.0,12.343784214475903,4.07753744390572,0.0,5.5254529391317835,3.044522437723423,7.193685818395112,5.476463551931511,8.962263554116761,7.653020413804189,10.782470939599769,30.333333333333336,1.8998785841433299,4.016355487596018,0.0,5.43159951074859,0.0,0.0,2.2230861566517235,0.0,49.78800000000001,0.0,0.0,0.0,0.0,0.0,2.2661525651927437,0.0,1.5479736971949276,58.31592062378445,0.0,0.0,0.0,15.864241462949838,6.4208216229260096,40.92748329175364,63.69610304750874,16.293043038655693,0.0,6.076020106833881,0.0,28.096161851635998,34.39964730538923,32.93231788141694,214.83038856528617,,197.17675595971934,196.74855191489937,197.56627561621985,197.18400547372426,211.70364724319268,197.04778744499254,197.19731782134266,204.880511705611,32.93231788141694,214.8303885652861,,196.5853273882907,196.0520232969375,197.04047909558275,196.59425664397907,213.2680214305885,196.42345145968045,196.6110454352767,205.55089985622678,5.241758859777224,159.52703512407192,,149.49900580845366,149.28882804245504,149.67841345888985,149.5025076433248,156.2576520411383,149.4351673697292,149.50913081503487,152.9391951049497,1.3172927152566778,8.593215542611446,,7.887070238388774,7.869942076595975,7.902651024648794,7.88736021894897,8.468145889727706,7.881911497799702,7.887892712853707,8.195220468224441,2.649995211607813,107.41519428264304,,98.61409226557396,98.40455981040455,98.8059985263985,98.6176439903293,105.29262554186415,98.55103876533592,98.62414901441332,102.21679313593361,49.18431372549019,0.0,4.712299671411775,0.0,0.0,0.0,11.075594510391138,51.3102694828842,7.445560883303939,0.0,0.0,0.0,1.896279053287982,0.0,-0.8144479744058113,0.0,2.7744038747781534,31.502237125992266,453.64594845073844,67.9334071749026,170.01641237742516,232.93892188797275,268.9130903390098,272.91309033900984,272.91309033900984,1765.0,134.05394723357975,66.81934044215153,77.71541709860827,46.260000000000005,46.260000000000005,0.8333333333333334,8.315612359683472,5.857980995127572,4.481763703607432,4.927009320683794,,4.944290821612744,4.9448123864748545,4.9439437809720665,4.944282343699282,4.922173762627153,4.944456643686801,4.9442646825400285,4.933679365947283,0.17927054814429727,0.19708037282735177,,0.19777163286450974,0.1977924954589942,0.19775775123888267,0.19777129374797128,0.19688695050508614,0.19777826574747207,0.19777058730160113,0.1973471746378913,2.4163073846688428,2.511022907190594,,2.5145242734412676,2.5146297561835587,2.5144540808022846,2.5145225587523394,2.5100409864761017,2.5145578109695856,2.5145189867090036,2.5123757632623684,266.7600000000005,183.355941508742,156.1756504934046,,154.36594351619274,154.29926371217755,154.43306775452632,154.36709336502787,156.65265189870098,154.34608581089793,154.36912895815794,155.56498870791762,7.334237660349681,6.247026019736183,,6.17463774064771,6.171970548487102,6.177322710181053,6.174683734601115,6.26610607594804,6.173843432435917,6.174765158326318,6.222599548316705,6.127720031150017,5.9672720704021796,,5.955616772053357,5.955184719437832,5.956051515928441,5.955624220876112,5.970321677942987,5.955488123322918,5.955637407492926,5.963354309996409,5.43159951074859,0.0,15.091949997987156,1.9898099857226852,5.63748482178429,0.0,17.386856012345504,4.712299671411775,0.0,331.7807588958856,91.66594008174071,-140.39889312617572,-14.506286202838762,-2.6999787139649176,-7.019944656308787,179.21817686061868,274.49708841565894,9.741469008468467,5.278790161839592,8.578034012989342,1299.0,55.0,2.8980758828777122,2.191839625192394,0.3449132028137237,0.24365261598403626,1.6173420319894494,1.0389540921400486,0.5556615254084083,0.2830910798294555,0.0,0.0,0.0,0.0,0.19001991384646114,0.0985210974834397,0.5990705405441121,0.38236886221797933,1.2641466174945608,0.8289893014399743,17.449382989376332,15.21652456490737,11.91158036151885,9.759733317157632,11.956853207029681,9.39404930505795,11.726867868713228,8.665479099986475,9.805408287753133,7.136475038546751,7.804956110854142,5.518076609857947,6.34723586510899,4.229115567948307,5.039405382185814,3.1056641057252876,8.424729955062901,5.896964781049001,14.032537011231483,9.671460597474459,22.38750633996661,15.033205588087432,86.22138914258097,40.010405591472,26.865958930801046,22.130108732797986,21.714656468468583,21.714656468468583,154.0,199.0,57.447410999999974,28.822588999999994,0.38461538461538464,241.03,7.854166666666667,5.145833333333331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,5.0,5.0,52.0,0.0,0.0,56.0,5.0,1.0,3.0,52.0,7.0,29.0,49.0,1.0,0.0,0.0,22.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,3.0,1.0,1.0,25.0,3.0,0.0,1.0,2.0,0.0,5.0,0.0,0.0,0.0,0.0,1.0,1.0,3.56953269648137,7.006355495221746,4.131158535344817,4.694782344677779,5.146403765925465,5.470167623474696,5.839732814268033,6.203167908279636,6.528962529789785,6.719541396483344 +60726,Nc1c(CC(=O)O)cccc1C(=O)c1ccc(Br)cc1,0,63.0625,6.422265625,3.5,8.908350480109739,157.12771738432775,297.65324534375003,1.862842714318375,6.535046874999999,6.650883594821673,7.948376656250001,260.0516695704763,31.757575757575758,6.408575757575758,4.121212121212121,8.15263748597082,143.7574063024197,126.24278242424242,2.0483191326060606,6.578484848484848,3.784418256640479,7.8317441818181806,298.17733112052065,30.923076923076923,6.2784615384615385,3.8846153846153846,6.972222222222222,144.49021238503653,123.50225759615384,1.921408083071115,6.443492307692308,3.9878917378917382,7.738941692307692,271.20996505567524,26.470588235294116,6.291411764705883,3.2941176470588234,5.522875816993464,150.65066030827717,101.68854947058823,1.6817156649911176,6.433455882352941,3.715686274509804,7.820401352941176,231.5200318029792,22.211267605633804,6.312281690140845,2.887323943661972,5.225873761085029,155.95868236037174,82.5014556338028,1.4668053728442676,6.421304225352112,4.130107807337854,7.847885267605633,202.94675092555528,20.71014492753623,6.332231884057971,2.6666666666666665,4.797638217928073,158.92477899079623,78.18480376811594,1.343481833336058,6.409966666666667,4.41299874753981,7.884177246376812,189.26543861781252,23.639344262295083,6.372655737704918,2.5081967213114753,3.894960534304797,159.10459931299664,91.52919590163934,1.3641277693105411,6.4606213114754105,3.969135802469136,7.95003855737705,188.37896167187466,21.754716981132077,6.075905660377358,2.339622641509434,3.883298392732355,159.30603493459134,84.68303277358488,1.3460194274592265,6.1671924528301885,4.2581528068949455,7.672707018867925,172.78911881613968,27.452380952380953,5.875233333333334,2.1666666666666665,2.6807760141093473,160.9055084574092,111.61843142857143,1.3385743656913571,5.998866666666667,2.922104644326867,7.554637952380953,163.81087056248742,35.5,0.13941005859374997,0.027152826434411706,0.65234375,3.9494813100137174,1.4335768229664638,188.6015651083984,0.33085509352710935,0.13256552734374993,2.621896081827632,0.09629700683593748,51.74801756950508,-0.4981060606060606,-0.019878808593749974,-0.016431887253580205,0.16773200757575757,0.542664946793033,0.34734469712354243,-2.206977100822681,0.04040316434215949,-0.018705962949810598,-0.34112232704731854,-0.011392980320785978,5.394180583145265,0.8365384615384616,0.022720229867788457,0.002902019584016362,-0.08263221153846154,-0.08185442386831299,-0.07961237772045399,4.062871740760216,0.0017381444412872089,0.019722273137019224,0.3432130104154302,0.016205803260216357,-1.171577734736585,-3.7169117647058822,-0.01899755859374999,-0.0018299298121235625,-0.08708639705882353,-0.5227358690389738,-0.2494248933191485,-18.815751997185203,-0.038578081971245425,-0.019910793887867637,-0.2377976523967033,-0.013824852424172787,-7.57397032922752,-3.169894366197183,-0.007576563875440136,0.0008212154418397488,-0.08808318661971831,-0.12707965039896446,-0.17690461358552892,-16.112894556901956,-0.054410306703193884,-0.008819004456426052,-0.04025055882680127,-0.006989137997909329,-8.441871624641353,1.5552536231884058,-0.0009138629415760864,0.005384572261851752,-0.03730751811594203,-0.3533761132979464,0.05243253948523805,8.19106451116678,0.02468964542328014,-0.0004677465466485505,-0.10761222688439043,-0.0031298727779664887,2.8935002904385776,0.8534836065573771,-0.03878956679047128,-0.009878925498308775,-0.01095030737704918,-1.167679661674425,0.026182169209160177,4.944100268138449,0.005171238207839417,-0.0340245949667008,-0.7699662701189136,-0.01977472046298669,-3.0421067718806967,2.9587264150943398,0.039243007443985824,0.0039735987916581835,-0.0025795990566037734,0.627247279162461,0.007438317205970368,14.887897682875149,0.029608784612984985,0.034601158977004706,0.7961325706783856,0.029179831017836104,0.8832423114419057,3.6398809523809526,0.023342396763392795,0.0024972144277331004,-0.007998511904761904,0.7450447857469465,-0.1033775313860273,17.20992364308966,0.01938394491099185,0.028119889322916636,0.2558877177347169,0.010336804175967291,8.569500662771649,,,0.5116666666666666,1.375,0.8,0.05,0.575,0.225,0.662411360638135,0.021407127969036478,0.030007127969036474,0.9861503005729638,0.2797557865003889,0.1945477636492294,1.6485616612110987,0.47430355014961834,1.991717536094089,1.555133575615636,0.0892548417708114,0.2593760506585931,0.08795306804904905,0.43658396047845355,10.40625172950001,2018.0,205.5125,112.0,285.06721536351165,5028.086956298488,9524.903851000001,59.610966858188,209.12149999999997,212.82827503429354,254.34805300000002,8321.653426255241,1048.0,211.483,136.0,269.03703703703707,4743.99440797985,4166.01182,67.59453137599999,217.08999999999997,124.88580246913581,258.44755799999996,9839.851926977182,1608.0,326.48,202.0,362.55555555555554,7513.491044021899,6422.117394999999,99.91322031969798,335.0616,207.37037037037038,402.424968,14102.918182895111,1800.0,427.81600000000003,224.0,375.55555555555554,10244.244900962847,6914.821363999999,114.35666521939599,437.475,252.66666666666669,531.787292,15743.362162602585,1577.0,448.172,205.0,371.03703703703707,11073.066447586394,5857.603349999999,104.143181471943,455.9126,293.23765432098764,557.199854,14409.219315714425,1429.0,436.924,184.0,331.03703703703707,10965.809750364939,5394.7514599999995,92.700246500188,442.2877,304.4969135802469,544.00823,13059.315264629064,1442.0,388.732,153.0,237.5925925925926,9705.380558092795,5583.280949999999,83.211793927943,394.09790000000004,242.1172839506173,484.952352,11491.116661984355,1153.0,322.02299999999997,124.0,205.8148148148148,8443.21985153334,4488.200736999999,71.339029655339,326.8612,225.6820987654321,406.653472,9157.823297255403,1153.0,246.7598,91.0,112.59259259259258,6758.0313552111875,4687.97412,56.220123359037,251.9524,122.7283950617284,317.294794,6880.056563624472,1136.0,4.461121874999999,0.8688904459011746,20.875,126.38340192043896,45.87445833492684,6035.250083468749,10.587362992867499,4.242096874999998,83.90067461848422,3.0815042187499992,1655.9365622241626,-16.4375,-0.6560006835937492,-0.5422522793681468,5.53515625,17.907943244170088,11.4623750050769,-72.83024432714848,1.333304423291263,-0.6172967773437498,-11.257036792561513,-0.3759683505859373,178.00795924379375,43.5,1.1814519531249998,0.1509050183688508,-4.296875,-4.256430041152275,-4.1398436414636075,211.26933051953125,0.09038351094693486,1.0255582031249997,17.84707654160237,0.8427017695312505,-60.92204220630242,-252.75,-1.2918339843749993,-0.12443522722440226,-5.921875,-35.54603909465022,-16.960892745702097,-1279.4711358085938,-2.623309574044689,-1.3539339843749993,-16.170240362975825,-0.9400899648437495,-515.0299823874714,-225.0625,-0.5379360351562497,0.058306296370622165,-6.25390625,-9.022655178326477,-12.560227564572553,-1144.015513540039,-3.8631317759267656,-0.6261493164062497,-2.85778967670289,-0.4962287978515624,-599.3728853495361,107.3125,-0.06305654296874996,0.37153548606777087,-2.57421875,-24.3829518175583,3.6178452244814254,565.1834512705078,1.7035855342063297,-0.03227451171874998,-7.42524365502294,-0.21596122167968773,199.65152004026186,52.0625,-2.3661635742187483,-0.6026144553968352,-0.66796875,-71.22845936213992,1.5971123217587708,301.5901163564454,0.31544553067820447,-2.0755002929687487,-46.96794247725373,-1.206257948242188,-185.5685130847225,156.8125,2.0798793945312486,0.21060073595788373,-0.13671875,33.24410579561044,0.3942308119164295,789.0585771923829,1.5692655844882042,1.8338614257812496,42.19502624595444,1.5465310439453135,46.811842506421,152.875,0.9803806640624974,0.10488300596479022,-0.3359375,31.291881001371756,-4.341856318213146,722.8167930097658,0.8141256862616577,1.1810353515624987,10.74728414485811,0.4341457753906262,359.91902783640927,0.7349153066909883,0.6026790061627586,0.4517176668091603,0.31785722147425616,0.30077836063045643,0.17933034611907675,0.18846867912245166,0.09493894636871336,0.1211830931857152,0.048845414110961036,0.07926138623743229,0.02824784069370373,0.05104532987042327,0.016044836302822447,0.031373769025591865,0.007775821856434002,35.000417977066625,5.682824133578533,3.5550566141463245,2.180822599780268,0.4358045051622133,-0.3771105060955865,3.2462883524090036,0.9726554277393855,6.023221479726138,0.25601433498445514,14.537823555281816,10.943498846515887,79.90417850752698,11.694752263919215,3.0589805370887007,0.7415520134675946,3.5010990609094064,2.2306799696524022,7.009370901405975,1.0438518244861428,3.7140233890997933,2.426651589420637,26.523891778613944,14.700688574172034,0.31277229967176357,0.6573491435200451,0.783639824154947,0.898264729087415,0.9099305047898489,0.9099305047898489,1.9228339073558964,665.3188854920963,0.0,1.0,0.0,0.0,10.0,1.0,3.0,0.0,0.0,3.324306138904535,1.478217778400202,0.801608889200101,0.1875,0.125,0.125,-32.95099474379933,913.9549965877851,65.0692891770284,28.561093643368284,59.94163080530563,,11.0,344.0,5.969305287951849,9.589074368143644,17.89145284397451,16.690354475090988,4.472719515832414,0.0,42.46456947923127,0.0,15.929943897949348,10.84019487200289,10.233333333333333,27.5,16.0,1.0,11.5,0.011666666666666626,0.0,4.5,0.19852729885057452,0.09176136363636345,-0.10676593521421107,0.07021739130434779,0.10366202783300182,0.0,0.6364583333333335,0.8383333333333332,0.43793103448275894,0.54469696969697,0.7681159420289854,13.2482272127627,0.42814255938072954,0.6001425593807295,19.723006011459276,5.5951157300077785,3.890955272984588,32.971233224221976,9.486071002992366,0.6103379721669981,0.2671009771986971,0.0,0.3420195439739414,0.06666666666666667,0.5332443180438404,-0.9833994075495132,-0.08230780348060594,-0.030731231485922286,-0.07564610827303947,0.46675568195615963,0.8607822822939467,0.04898924300354121,0.026899446321685835,0.04530433064704983,-4.046083263054807,0.49615877080665816,0.7787322997020109,1.529746588842544,0.8325167846125929,0.5648741590554286,0.8053244479743188,0.49134633820296614,0.6184778274258366,0.7568791189980889,0.742862941577908,0.7566235468147213,0.7017339173715689,0.5838214382448537,0.444664364404284,0.5781480924010102,1.3136803316444035,0.8184590838294432,1.0337096036148927,0.5844184255190019,0.8054081023420006,0.4607579377102998,0.4842545692287191,0.44929199338839076,0.8974535277082226,0.9916243786246892,0.9645720628091479,0.8417890087540556,1.233885170834801,1.0427473528661575,1.146880213715676,0.988467218407015,1.0388687962511156,0.9779377368997636,0.9442586999840221,0.9810642857144773,1.0667601016378723,0.803288038087681,0.9991770745392047,0.9615838917973023,1.160833263051362,0.9882713059440613,1.1455376589339301,0.7936855023180052,1.0173843939885434,0.9986650299722121,0.9845940208705315,0.9859251516186188,1.0836032164634435,0.3662226985098999,1.1492967558862588,0.8719626860080432,1.0223032196476611,1.14287545726613,0.9520202755449745,0.3492947525168656,0.6890518499725935,1.107901298854982,1.230130573546378,1.140579115123908,0.8702744280305358,0.6019178596167166,1.466433858396757,1.483789374382614,0.8764111122018259,1.31277786768256,0.9731682741619869,0.5883277287533399,0.8218539307988418,1.4069971074828145,1.5024350278689282,1.3767586932048477,0.982354082307784,0.6271259633271326,0.6164810661693297,0.7552000127155114,0.7705344028923286,0.7809904843781342,0.9558722753576806,0.621546151053995,0.8065920293812868,0.6524816965755257,0.5368490597205359,0.5526419896748712,1.0084509961773398,1.3277267773306505,0.6324927809672047,0.6801989251354901,0.8309096093527232,0.8003418693422872,0.9726451117067415,1.3459630216268088,1.1302760238909397,0.6599729167238897,0.6130983566757038,0.676221260379109,0.99218344105302,4.5,0.05774920926436078,2.666666666666668,1.6875,1.3155555555555556,0.6458333333333333,0.4236734693877551,0.2482638888888889,0.14386495338876287,0.07125000000000001,4231.392715338882,4587.264573530441,2012.7494429230428,1879.2955888811045,13.117365605599964,0.48604672976914326,6.741712949811864,0.945702183295422,1.0,0.06666666666666667,1.675693861095465,3.521782221599798,4.198391110799899,4.8125,4.875,4.875,0.2142857142857143,0.01924973642145359,0.09195402298850579,0.05625,0.048724279835390946,0.025833333333333333,0.021183673469387754,0.016550925925925924,0.01307863212625117,0.01017857142857143,0.5172888898145342,16.3718820861678,7.319857312722949,4.25,123.90803992368845,1.0,3.9053500173643974,86.12980487792309,,66.27655277993854,67.76233932930583,68.26516777944839,66.23405526056317,74.27556965089609,67.79650606960831,67.85689160906283,71.32546052276287,-0.01403115663679044,-0.1425923552021316,-0.6051630497205076,0.2571221193975685,0.13740157357299868,0.24229234984755887,-0.011701796321542852,0.12211740164383766,-0.1411072948196025,-0.13010520493609118,-0.11831084573787796,0.10423936677187874,0.023564463705308777,0.16297410744225202,0.10687725607594696,-0.12666973744818055,-0.020725360482343615,-0.055534085404446015,0.021542089210262322,0.005253491559575431,0.14877376895939357,0.13090259861717649,0.16828979209942013,-0.022640050571270415,-0.10470173985086992,-0.13627107531107294,-0.06739371374629456,-0.13349771046143008,-0.13235557482285143,-0.17398781099363755,-0.09976455914547094,-0.11660114269355942,-0.1501958637877087,-0.09069682587531955,-0.14356471585587677,-0.14636252140586026,-0.08929279904780797,-0.05434732580895571,0.030244197370149075,-0.13502572320148437,-0.03217628858674687,-0.12340086052693341,-0.08543351455032253,-0.1644535863817241,-0.06652562421871466,-0.015351698759450458,-0.07257897444119753,-0.16313420341760332,0.04380996121657481,-0.006555215246262415,0.19830614226693172,-0.05718996789030635,-0.0894740563531668,0.03657462833190951,0.043430522469201045,0.07462374285997546,-0.003528417651412928,-0.04104366592949699,-0.032502285177969194,0.05591519108055082,0.024041791734010623,-0.27824080401190143,-0.3638267832695632,-0.016786099931284968,-0.2956539276977536,0.018263527136956694,0.02621452406981266,0.015629918683466484,-0.2566624645823125,-0.2936677297988855,-0.20535135112431013,-0.05878692392021988,0.08334440605899548,0.28149337171102207,0.14634199504999987,-0.003954355440063269,0.1588176345010435,0.005188642203756091,0.07893835702963736,0.0894916995151502,0.2610117401583742,0.3036476449987406,0.3030190862271574,0.0170681381225007,0.10253185781354796,0.16743696257537677,0.09196885759812817,-0.012261191901910464,0.18864370464494207,-0.07211160903962636,0.09125016345011924,0.058587415730396136,0.2121206763655846,0.09759643774910658,0.10734294362417977,0.1656005595047495,7.965248664877701,18.412608588486968,7.271606023348207,26.485090758948587,42.342197621503885,50.71819698968629,52.02490624999999,52.08790624999999,52.08790624999999,39.83435072188178,31.102671512312718,1.785096835416228,5.187521013171862,1.759061360980981,8.731679209569071,6424.676333552186,6101.113406456448,497.0856507315366,36.0,29.0,36.0,44.0,53.0,49.0,49.0,49.0,44.0,333.0000553440003,21.0,4.61512051684126,5.442417710521793,6.3080984415095305,7.158513997329321,8.027802848370312,8.887790764195326,9.758866322925,10.623787731088578,11.49591154561097,0.875,1.002625,1.108118417138087,0.8694347889434686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7411586077844312,0.992279411764706,1.0204502002913327,0.7013149043354368,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.84019487200289,0.0,5.783244946364939,0.0,0.0,9.589074368143644,0.0,0.0,0.0,28.06267803487257,35.89528683400505,21.287008773909967,6.4208216229260096,264.26968208299627,-487.36130887821406,-40.79079011767582,-15.23004090244419,-37.48933145217031,231.31868733919694,426.59368770957104,24.278499059352573,13.331052740924095,22.452299353135317,0.45454545454545453,0.7519126011278018,0.26081227021284226,124.08063242037176,0.1666842014927958,24.093333325956404,0.2480873988721981,6.0,0.19047619047619047,0.335138772219093,0.7043564443199596,0.8396782221599798,0.9625,0.975,0.975,2.889400000000001,,1.7214285714285715,1.1304018504617663,0.7915041297522206,1.7399790343205195,-3.3126055948058313,1.0758605147375038,1.032687437260667,-1.2922542057851245,79.76870000000002,14.69560176298435,0.0,0.0,0.0,6.4208216229260096,5.733667477162185,63.62764347015467,0.0,0.0,3.7612001156935624,0.0,5.0689042022202315,0.0,6.5722825426940075,0.0,8.165932137321585,0.0,9.80659111529043,28.0,11.771924170131015,0.0,0.0,0.0,0.0,0.0,2.3781275224544993,0.0,32.084,0.0,23.13756132495851,0.0,0.0,0.0,0.0,0.0,-1.2016856993281948,35.45978934841878,5.733667477162185,5.687386274683562,0.0,16.859077629157493,11.21535880699783,0.0,21.48489165916281,46.93728899506368,0.0,0.0,0.0,27.821913246190995,23.7170754491018,24.85871237593433,172.25960975584624,,132.80852210708184,135.41163847356546,136.45118514592156,132.80560585272582,150.20744209919508,135.48542608774287,135.61051447439957,143.29704814841827,24.85871237593433,172.25960975584627,,131.43137924993897,134.3942768081499,135.73883142914457,131.41362262526945,151.86374489659798,134.5171516244791,134.681095780865,143.94317525131083,4.789061220922719,127.4518061018473,,100.0441170637139,101.73967062841072,102.31228063312541,99.99625017282293,109.06720089116635,101.77095272600646,101.83464106883329,105.6741434470183,1.2429356187967167,8.612980487792312,,6.640426105354092,6.770581923678273,6.822559257296078,6.640280292636291,7.510372104959754,6.774271304387144,6.780525723719978,7.164852407420914,2.39453061046136,86.12980487792309,,66.27655277993854,67.76233932930583,68.26516777944839,66.23405526056317,74.27556965089609,67.79650606960831,67.85689160906283,71.32546052276287,31.752941176470593,3.302767389720402,0.0,0.0,0.0,5.906347159234064,8.822724835189662,32.65440640932265,-0.20110003569328927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.442076938733976,372.63913994092724,53.62220355505488,112.69703109119354,134.34851554559677,154.0,156.0,156.0,430.0,113.3183098783921,122.9492294812659,53.37491011321981,80.39000000000001,80.39000000000001,0.8333333333333334,7.964133987033176,5.392317422778761,3.946587476351716,4.400435680505434,,4.4068033839683105,4.398828386408103,4.396902938247956,4.406969364436868,4.382549221873054,4.39928135160747,4.399325273665422,4.391903861268271,0.1973293738175858,0.2200217840252717,,0.22034016919841554,0.21994141932040515,0.2198451469123978,0.22034846822184342,0.21912746109365272,0.21996406758037348,0.2199662636832711,0.21959519306341355,2.0659984560328026,2.1748507348788624,,2.1762967509403803,2.1744854102101208,2.1740475959750483,2.1763344148269623,2.170777749770035,2.174588378964377,2.174598362831101,2.1729099950167288,211.17999999999975,121.57517209406952,102.25972961532588,,101.28482579642736,101.87334700199693,102.04289611231151,101.26823771581742,103.81200589139097,101.87515531871163,101.89202155080193,102.95598500828324,6.078758604703475,5.112986480766294,,5.064241289821368,5.093667350099847,5.102144805615575,5.063411885790871,5.190600294569548,5.093757765935582,5.094601077540096,5.147799250414161,5.493679952387098,5.320663126118003,,5.311083785889669,5.316877526242064,5.318540455558501,5.310919995914248,5.335728808296759,5.31689527672066,5.317060820871469,5.327448747441422,0.8765276363580838,23.13756132495851,8.822724835189662,7.407947045330479,-1.2016856993281948,11.771924170131015,-0.20110003569328927,0.0,0.0,257.0427085868847,130.9689808312335,-241.53059638641997,-20.215441161861868,-7.547831137075624,-18.579276645109225,114.63885107531473,211.4148700977866,12.032141760842793,6.606714690555831,11.127098426199295,830.0,30.0,1.5512397013397141,0.7726405673454673,0.0,0.0,0.3495849299935525,0.08203785259348685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.28688347000816744,0.11137072638088737,14.698306133819765,12.053580123255172,9.486071002992366,6.675001650959379,8.722572458283237,5.200580037453226,6.78487244840826,3.417802069273681,5.332056100171469,2.1491982208822855,4.200853470583911,1.4971355567662976,2.50122116365074,0.7861969788383,1.5373146822540014,0.3810152709652661,3.18375662463527,1.2713824662443924,4.744470286528019,1.4353127958677667,7.227554248732794,1.7813535761628294,66.72955611789783,45.096164429195056,30.013737775599296,26.8125,26.625,26.625,100.0,115.0,39.60751599999999,14.584483999999998,0.40625,61.05,7.777777777777778,4.444444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12.0,12.0,32.0,0.0,0.0,33.0,12.0,2.0,8.0,25.0,14.0,21.0,19.0,0.0,1.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,2.0,0.0,20.0,5.0,0.0,1.0,3.0,0.0,2.0,4.0,0.0,0.0,1.0,0.0,2.0,3.4011973816621555,6.447751484314735,3.9889840465642745,4.51085950651685,5.032070574816321,5.5422434570447745,5.638799410279479,5.891989456089514,6.112713790740852,6.319587291385759 +57469,CC(C)Cn1cnc2c(N)nc3ccccc3c21,0,21.058823529411764,5.9599882352941185,3.3529411764705883,6.588235294117647,164.0812843790584,82.9629092352941,1.4999531316936472,6.042394117647058,2.9387254901960786,7.466740941176472,217.6421537727127,24.055555555555557,6.303000000000001,3.9722222222222223,7.194444444444445,149.16102254758889,90.96698366666664,1.8116490261111113,6.44338888888889,3.040123456790124,7.69045911111111,261.9591902510251,20.741935483870968,6.15581935483871,3.838709677419355,6.241935483870968,155.85778566290472,77.77649279032256,1.5972326282063223,6.2673903225806455,2.738351254480287,7.60326535483871,225.88757430565525,17.756410256410255,6.050715384615385,3.230769230769231,4.910256410256411,157.9374448443659,64.80134303846154,1.435674842222295,6.1509833333333335,2.6723646723646723,7.535611333333332,195.92740116933757,15.35632183908046,5.975882758620691,2.9195402298850577,3.689655172413793,166.61635153125317,55.70341356321839,1.2580148624278735,6.043645977011494,2.476372924648787,7.5151225747126436,170.00144154040748,16.056338028169016,6.07105633802817,2.9295774647887325,2.704225352112676,156.80327378491268,56.06705929577465,1.4396308208408168,6.175077464788733,2.7104851330203443,7.55691571830986,191.1534816409446,11.18421052631579,5.847763157894738,2.3157894736842106,1.355263157894737,164.4380252693202,36.213541868421046,1.1826257737241708,5.921223684210527,2.3421052631578947,7.421188105263158,146.43206315435003,9.655737704918034,5.6240327868852455,1.9836065573770492,0.6065573770491803,162.39308953909241,30.58236067213115,1.1088941803727046,5.704959016393443,2.2049180327868854,7.238683344262296,131.18123343554805,5.9411764705882355,5.630352941176471,1.4509803921568627,0.11764705882352941,171.91653151182618,14.501055098039215,0.893071293975196,5.6721764705882345,2.1241830065359477,7.29004062745098,95.7076397827747,6.885813148788926,0.0750830449826989,0.015572923093555362,0.6401384083044983,3.4740484429065748,1.6270003635277772,33.00711676124567,0.22114551151947404,0.07443252595155704,0.4934880815071126,0.034382062283737,50.387296249532774,0.37235678585159565,-0.0021536332179931308,-0.008828799005032549,0.3255478662053057,1.6321607074202231,-0.2626701251835953,1.7817154871203347,-0.0033022070164674586,-0.0001478854286812685,-0.08903092827544969,-0.0023354217608612077,1.0524230928511298,1.1540350485545263,0.013434602076124525,2.1460165835252504e-05,0.12266994084161184,1.1303158834691371,0.12134177389014932,5.505580506306504,0.02597629502141403,0.013553622056033039,0.10148082003199761,0.005889057260855002,6.827884575014373,0.26727885724425515,0.011475778546712775,0.0007501614002803837,0.09440156152958924,0.7846242569425961,-0.273730978493224,1.1756832651494984,-0.024589022526247024,0.010726222163073377,0.06556588195861551,0.0052724626031408015,-3.3324908383912715,1.358946824165772,0.004915332299248284,0.001149344252164798,-0.08503360776359226,-0.011573797876148397,0.3050334313805383,6.5817815139402605,0.055197383360310256,0.0066576701268742655,0.07765608497173943,0.0013194901165334276,12.304398064227303,-2.433451922608314,-0.020722150202251582,-0.0015001695125599727,-0.29631073639066224,-1.836931624348165,-0.3575377977999356,-11.67658618792339,-0.07118498119577392,-0.022119849895219035,-0.08973221296251177,-0.008475311662361708,-17.26620256241826,-2.184574758696048,-0.024242797304680364,-0.0009116347089989451,-0.23766162811873973,-1.5677016936805683,0.009208297312021038,-10.398364964806046,-0.03489640494020083,-0.025295993443817135,-0.16102549120783508,-0.009959582407576028,-11.014264046559,-1.166430313687674,-0.002470315956662284,0.001750555069615762,-0.1637642520846333,-1.0237109308525725,-0.3997732302520376,-5.680185228940948,-0.05872353633746536,-0.003937733280390264,0.0059761850738367026,-0.0004835126212490775,-12.281628515982682,-2.3264129181084194,-0.026233910034602022,-0.0018520695468732047,0.126874279123414,-0.4359861591695503,0.11278896427821795,-11.056758783160323,-0.029824049913708225,-0.02754059976931947,-0.25462161988978593,-0.010603667820069195,-10.670200243173499,,,0.47777777777777786,1.3611111111111112,0.6944444444444444,0.027777777777777776,0.6666666666666666,0.027777777777777776,0.7165518321437412,0.01386165357925822,0.028194986912591553,0.826860719610443,0.25160262503277175,0.22976980818647533,1.5434125517541843,0.4813724332192471,2.055766710638275,1.603432134674532,0.4523345759637427,0.0,0.0,0.4523345759637427,7.0628675444705875,716.0,202.63960000000003,114.0,224.0,5578.763668887985,2820.7389139999996,50.998406477584005,205.4414,99.91666666666667,253.86919200000003,7399.833228272232,866.0,226.90800000000002,143.0,259.0,5369.7968117131995,3274.811411999999,65.21936494,231.96200000000005,109.44444444444446,276.85652799999997,9430.530849036904,1286.0,381.6608,238.0,387.0,9663.182711100093,4822.142552999999,99.02842294879198,388.57820000000004,169.77777777777777,471.40245200000004,14005.029606950626,1385.0,471.95580000000007,252.0,383.0,12319.12069786054,5054.504757,111.982637693339,479.7767,208.44444444444446,587.7776839999999,15282.33729120833,1336.0,519.9018000000001,254.0,321.0,14495.622583219025,4846.19698,109.447293031225,525.7972,215.44444444444446,653.815664,14790.12541401545,1140.0,431.0450000000001,208.0,192.0,11133.0324387288,3980.76121,102.213788279698,438.43050000000005,192.44444444444446,536.541016,13571.897196507067,850.0,444.43000000000006,176.0,103.0,12497.289920468336,2752.2291819999996,89.87955880303699,450.01300000000003,178.0,564.010296,11128.836799730603,589.0,343.066,121.0,37.0,9905.978461884637,1865.524001,67.64254500273498,348.0025,134.5,441.55968400000006,8002.055239568431,303.0,287.148,74.0,6.0,8767.743107103135,739.55381,45.546635992735,289.28099999999995,108.33333333333333,371.792072,4881.08962892151,234.11764705882348,2.5528235294117625,0.5294793851808823,21.764705882352942,118.11764705882354,55.318012359944426,1122.2419698823528,7.518947391662117,2.5307058823529394,16.778594771241828,1.1689901176470578,1713.1680724841144,13.404844290657444,-0.07753079584775271,-0.31783676418117174,11.719723183391004,58.75778546712803,-9.45612450660943,64.14175753633205,-0.1188794525928285,-0.005323875432525667,-3.2051134179161886,-0.08407518339100348,37.887231342640675,71.55017301038063,0.8329453287197206,0.0013305302817856553,7.605536332179934,70.0795847750865,7.523189981189257,341.3459913910033,1.6105302913276698,0.8403245674740484,6.291810841983852,0.3651215501730101,423.32884365089114,20.8477508650519,0.8951107266435965,0.05851258922186992,7.363321799307961,61.200692041522494,-21.35101632247147,91.70329468166088,-1.9179437570472677,0.8366453287197234,5.11413879277201,0.4112520830449825,-259.9342853945192,118.22837370242216,0.4276339100346007,0.09999294993833743,-7.397923875432526,-1.0069204152249105,26.53790853010683,572.6149917128026,4.802172352346992,0.5792173010380611,6.75607939254133,0.1147956401384082,1070.4826315877754,-172.7750865051903,-1.4712726643598624,-0.10651203539175806,-21.03806228373702,-130.42214532871972,-25.38518364379543,-829.0376193425607,-5.054133664899949,-1.5705093425605514,-6.370987120338335,-0.6017471280276813,-1225.9003819316965,-166.02768166089965,-1.8424525951557076,-0.06928423788391982,-18.06228373702422,-119.1453287197232,0.6998305957135988,-790.2757373252595,-2.652126775455263,-1.9224955017301022,-12.237937331795466,-0.7569282629757781,-837.084067538484,-71.15224913494811,-0.1506892733563993,0.10678385924656147,-9.989619377162631,-62.446366782006926,-24.386167045374293,-346.4912989653978,-3.582135716585387,-0.24020173010380608,0.36454728950403886,-0.029494269896193727,-749.1793394749436,-118.64705882352939,-1.3379294117647031,-0.09445554689053344,6.470588235294114,-22.235294117647065,5.752237178189116,-563.8946979411764,-1.5210265455991194,-1.404570588235293,-12.985702614379083,-0.540787058823529,-544.1802124018484,0.7054614518788758,0.5883444140007669,0.43323518989732246,0.30780134845693147,0.2803297026093111,0.17248912111157813,0.16378397113788676,0.07605685493074252,0.10414669246452835,0.04030982814919261,0.0669894179215778,0.021211825102012402,0.04355191987877949,0.011335536247089524,0.029008336553209724,0.006353481910445957,7.075357281006564,5.671568481530988,3.1945173434044674,2.167403388846784,0.42889094108058995,-0.44030743068563327,3.309310357617215,0.9886070886642446,5.053739086925626,0.9889178615008639,14.558552674557948,10.936672044639922,14.045987710543264,11.685914341560347,2.0120554005250324,0.9961650685338987,3.180804741421092,2.2160595516845056,4.005280956755749,1.257099883427966,3.3449356862017527,2.411224610056923,20.908976630861975,15.584269149233446,0.26001462688995663,0.6481703603259721,0.7715986331427229,0.8152336974757509,0.8261424635590079,0.8261424635590079,1.7795543505870977,712.2091703961677,0.0,1.0,3.0,0.0,7.0,0.0,1.0,1.0,0.0,3.685381438494307,1.5923225143358124,0.9267580883625568,0.6914639707154979,0.6326404413037334,0.6326404413037334,165.49737409843488,675.9775784971939,41.653159967270206,19.88169348521159,39.408759835919724,,8.0,243.0,0.0,0.0,0.0,11.735768823996422,28.481082773226156,0.0,0.0,24.52642128014937,34.44889815752863,5.733667477162185,8.600000000000001,24.5,12.5,0.5,12.0,0.0,0.022222222222222143,0.5,0.11482352941176449,0.04929971988795512,-0.06552380952380937,0.04888888888888876,0.10836619718309826,0.0,0.5588235294117648,0.7888888888888885,0.44400000000000034,0.5095238095238097,0.7399999999999998,12.897932978587342,0.24950976442664796,0.507509764426648,14.883492952987975,4.528847250589892,4.135856547356556,27.781425931575317,8.664703797946448,0.6056338028169017,0.16279069767441856,0.0,0.39534883720930225,0.2857142857142857,0.31246880513570613,-0.47868670638008526,-0.04631604864507453,-0.01407902077588486,-0.04351697330728047,0.6875311948642937,1.053263678786172,0.04808142323130399,0.030978343493710942,0.04579407299070314,-3.5076056777940523,0.841813232830821,0.9646671505599337,1.692109030494158,0.6528153153153153,0.46175713811420976,1.3590570173576428,0.8432594241975645,1.040201245354158,0.9140565679574792,1.1715765041956794,1.0438890642259748,0.9500714959025147,0.7707043280920735,0.8174885604955782,1.023288714735877,1.0760244115082824,0.7412647795913121,1.0332204580619702,0.7716880224595988,0.8781251732513615,0.7945679329855242,0.566157540992104,0.8546224458759873,0.8315259284870419,0.9089775802087362,0.8275181061161984,0.8902289277939412,0.9233367983367983,0.802329144958627,1.2160076254785521,0.9123123956465401,1.0935115128691562,0.8249036271245839,0.7193358328869847,0.8440633307437398,1.0315245812823093,0.8125151620169816,1.1128023141063232,1.069400975015284,1.237371854613234,1.13358634427806,0.8000764516916289,0.8076162900380504,0.6765886005045261,1.0601464928128193,0.7808765676080011,1.1707660401691222,0.695426092049623,1.2844751928657374,1.2583754914388865,1.237911791837238,1.49486105824134,1.5070913528982661,1.2917852408268498,1.2849421293401304,1.2993183454570028,1.2626054733870191,1.183845440074836,1.2539994682470716,1.2965143479572798,1.292703649828088,1.336322966011046,1.0622591904915366,1.2468883357041252,1.4005884357307612,0.9492923645997846,1.289735475768814,1.1068446858731866,1.347684630140271,1.4840794407013789,1.3084407806491538,1.1735658975248235,1.124172089957987,0.7731959393762197,0.6658927044347566,1.093664155959238,1.1083697994905624,1.1089046618873386,1.129701008907785,1.2685494062759861,0.8363988573135663,0.9426449024032596,0.7022804043129475,1.2521149505155809,1.3570351758793973,1.4020323517212776,1.0783559415472384,0.3716216216216216,0.9477091633466135,0.7648571361944774,1.3524015973187715,1.0496106748973544,1.4269931662870157,1.9110873058382436,1.3479860344011367,1.1630033835920799,3.5,0.0,2.000000000000001,1.4375,1.382777777777778,0.583888888888889,0.3705668934240363,0.12152777777777778,0.04081632653061224,0.0,3294.3798534889224,3696.769124894907,1756.100336345401,1590.0046634216947,9.921972485216008,0.4383406783955362,5.572768335024579,0.7804387135307406,1.0,0.2857142857142857,1.402081402756032,3.4951403269145267,4.160704752887782,4.395998870534841,4.454822399946606,4.454822399946606,0.17500000000000002,0.0,0.06896551724137935,0.049568965517241374,0.049384920634920636,0.02654040404040404,0.02646906381600259,0.013503086419753087,0.02040816326530612,0.0,0.42984012093500723,13.005,5.174791914387634,2.4,105.45281920706918,1.0,3.844435896045221,63.2816638140285,,45.93648011847413,45.08670700555908,44.30257487597322,45.94357277930352,58.39955039990099,45.572487921920526,45.98802687329592,54.691391463309614,0.05407593523171415,-0.028683349463109607,-0.5669326787265921,0.5085585585585586,0.469815183709606,-0.16144441702155207,0.05397973715814776,-0.014932281436680513,-0.0019868387749935675,-0.18041150660325825,-0.06792558694089393,0.020886675237330052,0.16759604473982823,0.17892990460389838,0.0013780435250549392,0.19163034001743687,0.325359850918905,0.07458005333634192,0.16679980096809663,0.11746245647462107,0.1820927327503859,0.2056398600794475,0.17128283964631685,0.1355080562608613,0.03881587424300993,0.1528411447532142,0.048170879402263764,0.14747054747054752,0.22585299826335684,-0.1682427273093542,0.035619084019174074,-0.1111893357332813,0.14410665264879402,0.1328621387539438,0.1533492249426446,-0.0661375204950032,0.19735458903713982,0.06546527648660101,0.07380401516529919,-0.13283628456042249,-0.003331501579887337,0.18748209171824845,0.19940492111289357,0.24959757483230485,0.08944570994684878,0.15736162205696588,0.03837728248074164,0.2441964340236136,-0.3534008068511572,-0.27598974185219194,-0.0963319155657294,-0.46288542063189936,-0.5287582066101789,-0.21975274610553672,-0.35375965348276367,-0.3218920461313789,-0.29717989027559416,-0.18183258385586457,-0.24650387729565024,-0.34266975701396885,-0.31725733932822003,-0.3228797834486673,-0.05853972972975204,-0.37126600284495015,-0.4512607464877333,0.005659677476687809,-0.31503402857092255,-0.15779838668408996,-0.3398513367701714,-0.3263006691388842,-0.28967379342707417,-0.21859208305230568,-0.1693961611335366,-0.032901115787612366,0.11241017881480483,-0.2558263181214001,-0.2946737639605512,-0.24571182601657263,-0.1720897123498581,-0.2655425196468172,-0.05290339445087569,0.012110089985527987,-0.014062932504132628,-0.24374454336982934,-0.33785594639865996,-0.3493985897967644,-0.11892883152037512,0.1981981981981981,-0.12549800796812752,0.06932325696207034,-0.3349810546355351,-0.13486165605980172,-0.3700075930144267,-0.5159630585447403,-0.30840697490926305,-0.21176369913423246,5.171982057366219,12.158380090371702,6.713077740047608,11.934653994623375,30.352003475575057,33.72924535813257,34.613657122838454,34.67295124048551,34.67295124048551,37.00380079148895,28.861778424141576,8.14202236734737,0.0,0.0,8.14202236734737,2079.4494437320104,1361.8633300756308,833.6429175921694,72.0,29.0,40.0,58.0,75.0,83.0,91.0,94.0,89.0,240.13749651199998,20.0,4.59511985013459,5.4680601411351315,6.3818160174060985,7.284134806195205,8.206037762778815,9.11943049661634,10.043466862589568,10.961746486855022,11.886259866324007,0.627450980392157,0.9703529411764708,1.1319197116783535,0.5884556803322445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6771519549137022,0.9580161476355249,0.9928023649372352,0.6284257851318831,5.0,2.0,0.0,0.0,0.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,10.30076712495354,5.516700717616262,5.817862777835028,0.0,0.0,0.0,9.967957041894417,0.0,0.0,32.046575604766076,11.984273114623004,11.93098062037737,17.360721509997063,137.87777221559497,-211.22190625154622,-20.437091639399213,-6.212409007398418,-19.20199147741329,303.37514631402985,464.75567224564776,21.216068327870993,13.66928447781317,20.20676835850643,0.5,0.8729301606484763,0.24923553256476164,77.59281771642169,0.10302100952635053,200.43451227257887,0.12706983935152372,4.0,0.1,0.2755954090490112,0.6870104875410806,0.8178349174664854,0.864084713285973,0.8756471622408449,0.8756471622408449,2.8227,,0.5714285714285716,0.7426710097719869,0.9009983418305914,0.5700007139287502,-2.0727272727272723,0.6447368421052633,0.5610519724483405,-1.277298512973715,74.28440000000003,0.0,0.0,14.53505668968577,5.917906046161393,20.392230805293824,5.733667477162185,30.59278834861098,0.0,0.0,3.713572066704308,0.0,5.056245805348308,2.3978952727983707,6.602587892189336,4.727387818712341,8.256607344626158,6.86171134048073,9.973526543316103,21.333333333333336,9.908458994708994,8.795069916855631,0.0,0.0,0.0,3.925005668934241,0.5057464096749811,2.167037037037037,32.992000000000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.48527019706402,5.733667477162185,5.817862777835028,0.0,14.53505668968577,6.544756405912575,5.917906046161393,13.847474399381248,30.59278834861098,0.0,21.936326367313583,0.0,20.00749313129631,23.023166467065874,23.133418116238808,126.56332762805698,,91.8094681734562,90.10006262502696,88.53545255450359,91.8238121459483,117.49000989071115,91.07397987446043,91.91371463854202,109.8085490976105,23.133418116238808,126.56332762805695,,91.36115368857679,89.52242961742651,87.83467606641312,91.37653473929353,118.87182807252933,90.57251788615633,91.47294883424111,110.66008143959299,4.961013420408911,88.57172556136676,,64.90446338659831,63.69357344979717,62.57774850991168,64.91457711369685,83.57035744643825,64.38558512648163,64.97796868288656,77.91810183358976,1.2851898953466003,7.031295979336499,,5.1005260096364555,5.005559034723721,4.9186362530279775,5.101322896997128,6.527222771706175,5.059665548581135,5.106317479919001,6.10047494986725,2.5188547106526493,63.2816638140285,,45.93648011847413,45.08670700555908,44.30257487597322,45.94357277930352,58.39955039990099,45.572487921920526,45.98802687329592,54.691391463309614,32.57254901960785,0.0,4.386053476946334,0.0,0.0,5.979497354497354,0.0,33.755280407865996,0.934471844293273,0.0,0.0,0.0,0.5653259637188206,0.0,0.0,0.0,0.0,21.366476694484025,385.18298105867444,47.67076769370509,118.8347711150939,141.4639615981846,149.4639615981846,151.4639615981846,151.4639615981846,669.0,111.94607229003478,56.069937470950414,65.58953408417565,56.730000000000004,56.730000000000004,1.0,9.210829998183456,5.321928094887363,3.7492220254011146,4.177830674578045,,4.151089929968698,4.149980622913878,4.148864308661984,4.151098774999585,4.1566564250806035,4.150626972599039,4.151154061317636,4.156300595976658,0.20829011252228413,0.23210170414322473,,0.23061610722048323,0.230554479050771,0.23049246159233241,0.23061659861108805,0.2309253569489224,0.23059038736661325,0.23061967007320203,0.2309055886653699,1.909335023468622,2.017578799349742,,2.0111575983899233,2.0108903299564465,2.0106213011294636,2.011159729160784,2.0124976720289185,2.011046065468342,2.0111730475501757,2.012412063718118,189.65999999999966,116.21260464934504,92.53041083330024,,94.30580210192178,94.34381203998394,94.38243498684118,94.30550061032822,94.26890624258613,94.32161801724658,94.30361670838354,94.22457492021431,6.456255813852502,5.140578379627791,,5.239211227884543,5.241322891110219,5.243468610380066,5.239194478351568,5.237161457921451,5.240089889847032,5.239089817132419,5.234698606678573,5.343207977183593,5.115324021154285,,5.134329380770936,5.134732349404075,5.135141650685745,5.134326183808832,5.133938067851718,5.134497075535057,5.134306207023282,5.133467692718152,2.167037037037037,8.795069916855631,1.1109722222222222,8.793530801209371,1.0710723733938017,8.052162698412697,1.8562962962962963,5.320525321239607,0.0,209.09916394294734,60.83896939049411,-93.20228259088559,-9.017926332142299,-2.741243605614282,-8.472934780989597,133.8651687204176,205.07479678158987,9.361652069397014,6.03161167004676,8.916295512243039,550.0,29.0,1.360560522279732,0.812607010778664,0.0,0.0,0.31054382448977325,0.08452686038081839,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.30784674735107304,0.0910331306198259,0.5909373293979935,0.13277055786073935,12.698306133819765,10.590199452013804,8.66470379794645,6.15602696913863,8.129561375670022,5.0021845122357655,6.5513588455154705,3.0422741972297005,6.040508162942644,2.337970032653171,5.024206344118334,1.5908868826509301,3.6148093499386973,0.9408495085084305,2.639758626342085,0.5781668538505821,2.8832604776433213,1.1113412054279,5.261897260091969,1.6756822857205087,8.757057356528213,2.2359630941490285,62.635095251493574,31.32870534444403,24.30173507475311,22.53925911864994,22.357643657399922,22.357643657399922,98.0,118.0,38.44868799999998,19.471311999999994,0.38235294117647056,94.04,5.777777777777777,3.8888888888888884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,15.0,34.0,0.0,0.0,36.0,15.0,0.0,6.0,30.0,15.0,20.0,21.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,16.0,4.0,1.0,2.0,18.0,4.0,0.0,4.0,0.0,0.0,3.0,2.0,0.0,0.0,0.0,2.0,3.0,3.349904087274605,7.922349221276971,4.06474409244581,4.793722292532682,5.541508613166024,6.169022170201307,6.620968638844489,7.086881632379524,7.532006542060296,7.8174972708400645 +39764,CC(=O)O[C@H]1C[C@@H]2CC[C@@H]3[C@H](CC[C@@]4(C)[C@H]3C[C@H]([N+]3(C)CCCCC3)[C@@H]4OC(C)=O)[C@@]2(C)C[C@@H]1N1CCCCC1,0,16.855670103092784,5.734327835051548,2.9587628865979383,4.061855670103093,165.10927362136283,65.76453468041237,1.2902922842927114,5.801882474226805,2.7444873997709047,7.351960082474226,180.6550468694952,20.352941176470587,6.0757352941176475,3.843137254901961,3.950980392156863,145.59875361387552,74.87457216666665,1.7020771144117643,6.223,2.15958605664488,7.5352932156862735,236.8233104850728,16.320574162679424,5.956851674641149,3.54066985645933,2.7416267942583734,155.23715228938744,58.65576400956938,1.4306138437663538,6.062532057416267,2.0592105263157894,7.49104057416268,192.77806494446602,13.110429447852761,5.839558282208589,3.0153374233128836,1.8650306748466257,157.7653018189078,44.887142110429444,1.292040817874049,5.932647852760736,1.8576814928425356,7.422488294478528,166.27477680832004,10.969483568075118,5.6554413145539915,2.591549295774648,1.4976525821596245,159.92489828571632,36.59335650234741,1.1678613224424508,5.742311032863849,1.7209996087636927,7.280432300469483,144.32856470479447,10.301455301455302,5.640153846153845,2.4261954261954264,1.3908523908523909,163.81808637085663,34.482333079002075,1.0756470641663782,5.710154261954262,1.7799434049434046,7.291189197505197,132.39914274395193,10.511777301927195,5.708884368308351,2.3683083511777303,1.2698072805139187,162.54552752693493,34.682366449678796,1.1113143815460622,5.781952890792291,1.9305109445634068,7.349040839400428,137.48796649824578,9.333333333333334,5.613092592592592,2.154320987654321,1.0411522633744856,163.05870111895092,29.91960418930041,1.0561004089526562,5.684787037037037,1.8979481024234108,7.271963358024691,126.49659574592769,8.110874200426439,5.534407249466951,2.0063965884861408,0.906183368869936,166.3788123242273,25.44421596162047,0.9672584672004436,5.593794243070363,1.7796730632551525,7.22307634968017,112.72070459784936,6.838771389095547,0.0856200446381124,0.011789501856324389,0.6621320012753747,2.7286640450632373,1.2951758387688925,32.6913637164417,0.22332679344029327,0.08436056966733971,0.8574045535598303,0.05015324391540011,50.28742809779044,0.644147551676639,0.006607972341875501,-0.005399119906330391,0.2859173215465377,1.0391750493374097,-0.20200651186622368,3.023023268094385,-0.008748336552514526,0.007825442056937642,-0.002637073830252436,0.001836371204874792,0.8231786655600882,0.5635864267185907,0.0101013779436466,-0.0001104760845855909,0.007477824601407334,0.10263867283741897,0.09396453593490244,2.6629397720405166,0.014620361950927906,0.009725347562473329,0.16256213722210724,0.006927580037640863,3.568698065924475,-0.7165779794440379,-0.006947373712807234,0.001041699028525699,-0.04793935058914351,-0.29757176753493414,0.014148281358782464,-3.3968634280348966,-0.0070942628753373526,-0.007855503574113494,-0.046285668325218805,-0.0028814523778629736,-3.3170814202551053,-0.4030228774068578,-0.0021970786635710357,-0.00018174573889589825,-0.03529883734332875,-0.047622469147260336,-0.13338666485876421,-1.958443754823195,-0.02078189639253222,-0.0023991568606024413,-0.008927450967184052,-0.0011899534647927261,-4.1700361346939445,0.3350931971401735,0.0023976161630535056,0.0002671070647720411,-0.0409604728873514,-0.02692582786110259,0.02640722042125276,1.6008984952521457,0.00664071165517596,0.002827873653062297,0.016171788444346632,0.000677132062480982,2.046939493374089,-0.4873949790202693,-0.008687887195343271,-0.00012620993538619839,-0.05668817249328232,-0.2947251060138102,0.005601641126201469,-2.2913547190686936,-0.004413372014666913,-0.008484903537844628,-0.045417809923105554,-0.004765309877121151,-1.8720171972274655,-0.5576844602422949,-0.005229602993718914,-0.00011152383111454276,-0.01748391676474718,-0.1867693439474595,-0.10725439423123195,-2.674975321464826,-0.018713086568927333,-0.005466748870598021,-0.051326492712932874,-0.002786201023711211,-4.318054615648866,-0.0791160575060717,-0.0036467784213318616,-0.00033452063714740806,0.011905762776237684,-0.015741177808934564,-0.0018821068831574724,-0.3532917722305085,0.0016703192203163205,-0.0032853163316617865,-0.05188166481259949,-0.0023775458519618266,0.12427697901037726,,,0.47833333333333333,0.71875,0.075,0.0,0.64375,-0.56875,1.8723061446273963,0.02162701292766709,0.03452701292766709,0.4250351746350578,0.08463894031274925,0.39158938581891106,2.297341319262454,0.47622832613166033,2.0654335507533252,1.7658636902259484,0.11427100056420621,0.18529885996317055,0.0,0.2995698605273767,5.746714275506098,1635.0,556.2298000000002,287.0,394.0,16015.599541272195,6379.159864,125.158351576393,562.7826000000001,266.21527777777777,713.1401279999999,17523.539546341035,2076.0,619.725,392.0,403.0,14851.072868615303,7637.206360999999,173.61186566999996,634.746,220.27777777777777,768.5999079999999,24155.977669477426,3411.0,1244.982,740.0,573.0,32444.564828481973,12259.054678,298.99829334716793,1267.0692,430.375,1565.62748,40290.6155733934,4274.0,1903.6960000000001,983.0,608.0,51431.48839296394,14633.208327999999,421.20530662693994,1934.0432,605.6041666666666,2419.731184,54205.577239512335,4673.0,2409.2180000000003,1104.0,638.0,68128.00666971515,15588.769869999998,497.508923360484,2446.2245,733.1458333333331,3101.46416,61483.968564242445,4955.0,2712.9139999999998,1167.0,669.0,78796.49954438204,16586.002211,517.386237864028,2746.5842000000002,856.1527777777776,3507.062004,63683.987659840874,4909.0,2666.049,1106.0,593.0,75908.76135507862,16196.665131999998,518.9838161820111,2700.172,901.548611111111,3432.0020719999998,64206.88035468078,4536.0,2727.9629999999997,1047.0,506.0,79246.52874381015,14540.927636,513.264798750991,2762.8064999999997,922.4027777777777,3534.174192,61477.345532520856,3804.0,2595.637,941.0,425.0,78031.66298006261,11933.337286,453.64422111700804,2623.4895,834.6666666666665,3387.6228079999996,52866.01045639135,663.360824742268,8.305144329896903,1.1435816800634657,64.22680412371135,264.680412371134,125.63205636058258,3171.062280494845,21.662698963708447,8.182975257731952,83.16824169530354,4.8648646597938106,4877.8805254856725,65.70305027101718,0.6740131788713011,-0.5507102304456999,29.163566797746846,105.99585503241579,-20.604664210354816,308.3483733456273,-0.8923303283564817,0.7981950898076395,-0.2689815306857485,0.18730986289722878,83.964223887129,117.78956318418545,2.1111879902221395,-0.023089501678388497,1.5628653416941327,21.451482623020564,19.63858801039461,556.554412356468,3.0556556477439325,2.0325976405569257,33.97548667942041,1.4478642278669402,745.8578957782153,-233.60442129875636,-2.2648438303751584,0.3395938832993779,-15.628228292060784,-97.00839621638853,4.612339722963084,-1107.3774775393763,-2.312729697359977,-2.5608941651609993,-15.08912787402133,-0.9393534751833295,-1081.3685430031644,-171.68774577532145,-0.9359555106812611,-0.07742368476965265,-15.037304708258045,-20.287171856732904,-56.82271922983355,-834.2970395546811,-8.853087863218725,-1.02204082261664,-3.803094112020406,-0.5069201760017014,-1776.4353933796203,161.17982782442346,1.153253374428736,0.12847849815535178,-19.701987458816024,-12.951323201190347,12.701873022622578,770.0321762162821,3.194182306139637,1.3602072271229648,7.77863024173073,0.3257005220533523,984.5778963129369,-227.61345520246576,-4.057243320225307,-0.058940039825354645,-26.473376554362844,-137.63662450844936,2.615966405936086,-1070.06265380508,-2.0610447308494484,-3.9624499521734418,-21.210117234090294,-2.225399712615577,-874.2320311052264,-271.03464767775534,-2.5415870549473922,-0.05420058192166778,-8.49718354766713,-90.76990115846532,-52.12563559637873,-1300.0380062319055,-9.094560072498684,-2.6568399511106384,-24.944675458485378,-1.3540936975236484,-2098.574543205349,-37.105430970347626,-1.7103390796046432,-0.15689017882213438,5.5838027420554734,-7.38261239239031,-0.8827081282008545,-165.6938411761085,0.7833797143283543,-1.5408133595493778,-24.33250079710916,-1.1150690045700966,58.28590315586694,0.707147045090757,0.655495604776093,0.42331406767258684,0.3807880981309109,0.26979649413861595,0.22914333249205815,0.15857558661425006,0.13981994452535645,0.09680456047716178,0.08269854695820447,0.06018298277485505,0.04979474400576431,0.0365702803724996,0.02966651703085025,0.022502182304410995,0.017784900832904627,8.031162020325116,5.743374800744395,3.5579550106638886,2.243187466358295,0.43166202226416667,-0.4928890394897257,4.0318280243846125,0.9714661188569902,6.030553580350881,0.9950138763696692,14.547344162714625,11.00378515413744,16.016138729088702,11.754493666822373,1.9494951577799962,0.7402906865986674,3.5041851748361736,2.293133314380939,7.009366403911991,1.0833572320716622,3.717067553346527,2.4891168971279676,20.85621112626644,14.699769173529468,0.1919293614163923,0.3594334016900521,0.6576746213812776,0.8014666079312653,0.8376386838953842,0.8499474621656863,1.281532097596196,957.5883692364077,0.0,2.0,8.0,0.0,0.0,17.0,0.0,4.0,2.0,5.313901725875277,4.191551001476541,2.1932036874706107,1.229734149640663,0.9873653351630649,0.9048911083589406,543.6913913946191,2877.6445360718667,47.72207479444796,29.66643851620481,49.35258634568815,,15.0,1031.0,0.0,9.589074368143644,29.56153382079708,35.25239026617688,29.91127133860718,90.13937228693729,13.847474399381248,0.0,25.795056112908917,9.473725907600098,19.133333333333333,28.75,3.0,0.0,25.75,0.0,0.021666666666666678,-22.75,0.0593564511090281,0.0,-0.0593564511090281,0.0,0.11358158995815859,0.0,0.504810996563572,0.7966666666666662,0.4454545454545439,0.504810996563572,0.7966666666666662,74.89224578509585,0.8650805171066835,1.3810805171066836,17.001406985402312,3.3855576125099702,15.663575432756442,91.89365277049816,19.049133045266412,0.6004184100418414,0.16550522648083624,0.07317073170731707,0.28222996515679444,0.9411764705882353,0.16465790025719104,-0.44695543026573475,-0.025315700608973493,-0.004607787940883865,-0.016553904824656848,0.8353420997428089,3.1028354117943464,0.03355306582340943,0.03198799393602419,0.04432622016849066,-5.962746440374385,1.0328865453494984,0.7595179122469556,1.5903074621894613,1.0550845057123972,0.6276159447186213,1.5731927057970265,1.04237854591281,1.393797933627907,0.7715186039568523,0.5700705430274795,0.7451775163791564,1.2746738461581177,1.0060990544985788,0.8876421503851593,1.269816810161552,1.7164054159914597,1.1306223450231518,1.1782900428586052,1.009847419241103,1.0993487709718677,0.8918205450578548,0.3847622523659416,0.8190823592480765,1.0668406725721757,1.1604044774044615,1.099103831111091,1.058026223810273,1.4694856670178926,1.2010317186086423,1.1433418823537855,1.1611144843125898,1.1423992585278413,1.1099639282644778,0.7551647683194528,1.0605756717008354,1.1557140585846013,1.0444467695114834,0.8355588228295666,0.9550192188892555,1.171903330092917,0.9374047510113261,1.1670655081713324,1.0490878182059236,1.1613721655302662,0.8623345115413188,0.5085191642307106,0.7980278921686155,1.1378964404962653,0.9358506406341548,0.9286319595264866,1.0384189201291647,1.1963839379569716,1.0255179406850359,0.9727431439776453,0.9363875516114273,0.9615663122112097,0.9272339706958427,0.6970316167471358,0.9326948495727572,0.9511003755445503,1.0866217040889288,1.1640150583895397,1.1180382815408638,1.1794391302703984,1.1758676029991597,1.0180635243098282,1.0847897835177933,1.0330483346600619,1.154632885528957,1.0944766184303942,1.1724173010988592,1.0453566766799272,1.059029252732047,0.9899299499847662,0.8562889592923179,0.9241939638943384,1.0097432479608999,1.06654696215316,1.0602473668734633,1.0868121411849097,1.0016170340565245,1.207470308313273,0.98600917407402,1.085255533673353,0.9614927613156405,0.9645280889945058,0.7959504568640384,0.822246027372881,0.9063672390227275,0.9185692114976046,0.9608515096565997,0.9322566371971822,0.9681307766893356,1.1605336744414525,0.9647622024307133,0.9460670817365076,11.0,0.39425160697887973,7.1111111111111125,4.638888888888889,4.375,2.8233333333333333,1.8190022675736959,1.0799319727891157,0.7908793146888383,0.4934490740740741,8680.576901404089,10636.51164231053,3806.6454968251983,3246.877774919189,16.973192985172208,0.47407563942204173,8.92661566769298,0.9014141100082568,0.0,0.9411764705882353,1.2860111163118513,2.4083618407105867,4.406709154716517,5.370178692546465,5.612547507024063,5.695021733828187,0.24444444444444444,0.009856290174471993,0.10158730158730161,0.057986111111111106,0.05335365853658537,0.03245210727969348,0.02165478889968686,0.014999055177626605,0.013635850253255836,0.010280189043209877,0.5602497965073872,30.044444444444444,11.493061224489797,5.3428,243.02712736784562,0.0,4.648233138213029,254.0639139440275,,237.5251682373597,234.48694982772028,236.1323042130239,237.563771155783,309.6513881573704,236.42327831998676,237.68941205848793,278.62155374148693,0.09419053730963069,0.07717786611540807,-0.45795996914272286,0.43181317470808556,0.3808365677033453,-0.15596840662055397,0.09247161710094078,-0.03917280330652939,0.09276184463660954,-0.003075647101830349,0.03661520295621225,0.01636947238501262,0.08241047911284649,0.11797912493904648,-0.009370716925272532,0.011293555646009886,0.03761499075824862,0.07254963621327189,0.08145698035537213,0.06546622429716065,0.11528309494380415,0.18959794014059148,0.13812825446199448,0.07096600882003108,-0.10478168353260424,-0.0811419071570388,0.08835818860038497,-0.07240150075333085,-0.10905401420644213,0.010923830521908803,-0.1039070580688712,-0.03176628637366798,-0.0931181902290397,-0.05398346455363088,-0.0574529612226776,-0.06596243923639541,-0.0589320587685501,-0.025660797922465003,-0.015415896372110252,-0.05331087649492458,-0.017452668544308346,-0.10298730169762327,-0.059907068172815964,-0.09305599239747418,-0.02843931554828366,-0.010412180492998848,-0.023726350917599125,-0.08292402877683001,0.048999034779036645,0.02800297726061036,0.022656348675898767,-0.061861491074974205,-0.009867769507872333,0.020388907537337703,0.0489700738439062,0.02973540054409711,0.03352127260654466,0.018861327919479205,0.013501261526037821,0.040704795826773034,-0.07126937739100665,-0.10147024837541367,-0.010705281438035825,-0.08561460914755911,-0.10801077052597725,0.004325004341901571,-0.0700905211218303,-0.019761945920952984,-0.10057902135207566,-0.05297127211948761,-0.09501498816625717,-0.0372263459882475,-0.08154746350075767,-0.06107919022727348,-0.009459588070272591,-0.02640548520698334,-0.06844717446450285,-0.08281068177829877,-0.08182513720342238,-0.08379239356217373,-0.06480218059402791,-0.059862631356262415,-0.055553754975671214,-0.08586747779687297,-0.011568753070503663,-0.04259257790328874,-0.028374450525910647,0.017980950555637296,-0.005768822232774999,-0.0014531670733963639,-0.010806883900435911,0.007479260300949436,-0.03894374284830962,-0.06051013444842774,-0.047405624568818264,0.0024713329695188334,25.12711665081132,34.9282668466545,11.402113003595833,11.473889699990224,25.160052498166117,32.318666690239546,34.81889581103506,35.51693553479137,36.13602831829653,82.61734203013302,70.63454760903794,4.570840022568248,7.411954398526822,0.0,11.982794421095068,12969.07879929102,12433.57645675301,2873.9508586645115,648.0,70.0,100.0,145.0,209.0,265.0,338.0,431.0,546.0,557.4312847240915,45.0,5.442417710521793,6.3473892096560105,7.2991214627108,8.237214703349489,9.199380531739841,10.152493763376064,11.120282796881948,12.08134240885872,13.052449367513917,0.527491408934708,0.9506804123711341,1.1366471723345892,0.4788050815961656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6185270757454162,0.937699615928846,0.9840442705791366,0.5548166593573542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,5.0,0.0,0.0,0.0,0.0,17.0,0.0,2.0,0.0,8.0,1.0,2.0,0.0,0.0,13.956756765294722,12.145807216896262,6.103966387748303,0.0,0.0,14.488984098994122,0.0,0.0,0.0,20.268296022307258,112.80516531805364,31.725127320852,20.13718479450234,133.48023252017634,-362.3252492886095,-20.522219695616307,-3.735311848336181,-13.41945367735591,677.1716239147954,2515.319286783257,27.19985509883166,25.93112666786863,35.93313266833224,0.4666666666666667,0.9032411885187401,0.16978841696818556,0.0,0.08147921963811024,21.454938073814386,0.09675881148125985,8.0,0.08888888888888889,0.19485274231071262,0.3649081280765044,0.6676920226201335,0.813674183425558,0.8503972160281037,0.8628934760206514,5.965900000000007,,1.2857142857142858,1.514192647743136,1.1430359144285005,1.28206267335915,-5.365540693720245,1.3572521419828643,1.2745051870999227,-2.2346271687189603,156.37039999999976,23.545831133438362,0.0,4.899909730850478,34.501605123439134,135.45724433059314,33.22669760632749,0.0,0.0,0.0,4.51085950651685,0.0,5.916202062607435,2.3978952727983707,7.532088143541722,4.948759890378168,9.252920819511301,7.260522598089852,11.033291613631048,51.16666666666668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.21600000000001,0.0,24.67940142023528,0.0,0.0,0.0,0.0,0.0,-0.20183388836456273,110.25477571645516,0.0,0.0,0.0,78.83986320456881,19.06280027574374,34.501605123439134,111.16562989680064,0.0,0.0,0.0,0.0,46.44409291482806,59.99712634730537,51.475156635446496,508.12782788805515,,474.9860507604337,468.8981900230534,472.26995265010174,475.063439177898,621.1807155575427,472.7786940328744,475.3150988576209,558.0252269920254,51.475156635446496,508.1278278880552,,473.8322050516674,467.57705813082873,471.2983721228377,473.9127091150202,624.6683170084608,471.5763865486009,474.1693562344275,559.4777346516929,5.25275099937398,368.048107877165,,349.0850902621799,345.4999250665676,347.21038517338815,349.1299368741537,433.4019955752636,347.77397865791966,349.2800270864764,397.4490232199695,1.2868789158861624,12.703195697201378,,11.874651269010844,11.722454750576336,11.806748816252544,11.87658597944745,15.529517888938567,11.81946735082186,11.882877471440523,13.950630674800635,2.657504117202076,254.0639139440275,,237.5251682373597,234.48694982772028,236.1323042130239,237.563771155783,309.6513881573704,236.42327831998676,237.68941205848793,278.62155374148693,90.95686274509806,0.0,10.827771975916686,0.0,0.0,0.0,0.0,95.45229424617625,20.980067907836837,0.0,12.448646651731726,0.0,3.5957883604402165,2.693312328123888,0.3772267335538443,0.0,0.0,53.817215957663365,732.214146281247,124.74307828224957,233.61109854892692,427.4507880075022,520.9073331770071,544.4171081813341,552.4171081813341,2837.0,167.9320919546086,78.43771015372477,92.85253990707474,55.84,55.84,0.875,7.998671361015776,6.491853096329675,4.9927380000423485,6.215434912155069,,6.229332833903577,6.231382311525275,6.229216821293397,6.229304851958885,6.176790474399792,6.230044269226001,6.229225322830269,6.201221808053837,0.1248184500010587,0.15538587280387672,,0.15573332084758942,0.15578455778813188,0.15573042053233493,0.1557326212989721,0.1544197618599948,0.15575110673065,0.1557306330707567,0.1550305452013459,2.9942788178072166,3.213330061454838,,3.215563598923725,3.2158925491671515,3.2155449751491454,3.2155591069486955,3.2070931569733854,3.2156777997087738,3.2155463399324424,3.2110406995711545,461.7500000000024,700.99612608271,310.13335162012766,,307.2109489625955,306.79473998358236,307.29383750795733,307.2169383263337,316.99506748664714,307.07166505952875,307.2322066139563,312.75078977446617,17.52490315206775,7.753333790503191,,7.680273724064888,7.669868499589559,7.682345937698933,7.680423458158343,7.924876687166178,7.676791626488219,7.680805165348907,7.818769744361655,7.938796721866329,7.123296732620532,,7.113829002912559,7.112473285692819,7.114098776387688,7.11384849865441,7.145180574897083,7.113375518140976,7.113898196136298,7.131701035721808,13.548265162257803,27.372713748359168,0.0,0.3772267335538443,2.5032598420926226,0.7960452526970376,16.308085198175473,13.125927097386809,2.46847696547724,575.6809434522287,108.20599828985264,-293.7196359690753,-16.636375494417702,-3.028037484217271,-10.878505035891678,548.9504340516135,2039.0482493575366,22.049613030630116,21.021115972758107,29.12926070510766,4889.0,80.0,4.225855561743251,3.3875335472845873,0.3800398276929223,0.3800398276929223,1.34234939036262,1.1874766528326024,0.2621886974951644,0.24185395284047334,0.0,0.0,0.0,0.0,0.06804138174397717,0.06804138174397717,0.5723588151085133,0.529018939342066,1.2372447147929977,1.1328125446714299,28.28588180363028,26.21982419104372,19.04913304526641,17.13546441589099,18.885754589703115,16.04003327444407,15.857558661425006,13.981994452535647,14.036661269188459,11.991289308939649,12.578243399944705,10.40710149720474,9.691124298712394,7.861627013175316,7.605737618890917,6.0112964815217635,9.49329750378805,8.302165614891829,16.614545178222574,14.167762937325644,29.137152550747835,23.91042806440879,141.52573998065452,76.12465504345131,45.11158714258751,32.139270841991994,29.454673688237804,27.829963767426086,230.0,285.0,100.19520099999995,66.38079900000011,0.29896907216494845,465.06,13.159722222222223,8.38888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,6.0,0.0,0.0,0.0,97.0,0.0,2.0,102.0,0.0,2.0,2.0,100.0,2.0,45.0,100.0,0.0,0.0,0.0,34.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,57.0,5.0,0.0,2.0,40.0,6.0,0.0,2.0,4.0,0.0,6.0,4.0,0.0,0.0,0.0,0.0,0.0,3.871201010907891,6.530877627725885,4.31748811353631,4.634728988229636,5.0106352940962555,5.384495062789089,5.627621113690637,5.87493073085203,6.118097198041348,6.359573868672378 +3696,CN(C)CCCN1c2ccccc2CCc2ccccc21,0,17.91111111111111,5.639106666666667,2.933333333333333,4.622222222222222,161.5465897758217,70.17324295555554,1.4684402159194665,5.7375711111111105,2.0969135802469134,7.220360266666665,206.21020768939908,21.4468085106383,6.048936170212766,3.574468085106383,4.9361702127659575,144.94457778765096,79.84018363829783,1.8118800731914904,6.20626595744681,2.517139479905438,7.481623063829781,252.75592360475287,16.964285714285715,5.941428571428572,3.3452380952380953,3.6547619047619047,155.5028078901492,61.378875797619024,1.5309926532540354,6.056125000000001,2.2106481481481493,7.4475363333333275,207.10880347772195,14.973451327433628,5.794637168141596,3.0530973451327434,2.9911504424778763,155.00616212071574,53.07807188495577,1.4383323790024944,5.909482300884958,2.076696165191741,7.333781345132743,188.31965601289238,12.25563909774436,5.675134586466164,2.6466165413533833,2.075187969924812,159.88294583066337,42.084867849624054,1.2901840212031355,5.770331578947369,1.9185463659147877,7.263616,162.8716787067187,11.609022556390977,5.576375939849624,2.4962406015037595,1.887218045112782,156.33178544390128,39.17282481954886,1.293616707259173,5.68471052631579,1.9085213032581456,7.17426252631579,159.695076162917,9.75,5.505863636363637,2.2045454545454546,1.4621212121212122,162.51496182960005,32.17135550757577,1.1312960946833712,5.589874999999999,1.811868686868687,7.145297909090909,135.65266633372102,10.179245283018869,5.533283018867925,2.1792452830188678,1.3867924528301887,161.2284325022039,33.73772485849056,1.144539382830349,5.621325471698113,1.880503144654088,7.160706830188682,137.7149243096465,9.426966292134832,5.562494382022472,1.9662921348314606,0.6966292134831461,163.4568144040576,30.25073373033708,1.1185943733811574,5.641775280898878,1.9101123595505618,7.195081258426967,133.13122176311145,6.50172839506173,0.044304888888888845,0.006650504624262187,0.5135802469135803,2.723950617283951,1.4529427672552562,31.342343091358018,0.23717716174019554,0.04881609876543205,0.18842249657064475,0.017697106172839497,53.54234057679677,0.5157656947727867,0.007304472813238743,-0.0009519272958418108,0.2353559232991855,1.0301864985552924,-0.305468988602279,2.403202050958767,-0.013821591453364283,0.008033168374047779,0.016647112045063164,0.0025371368531652196,-0.6083213502625154,0.06467372134038804,-0.006596317460317466,-0.0011535596978531914,0.024250440917107575,0.04192239858906527,0.21723451548732883,0.3885638417107622,0.024726738351808428,-0.0057673950617284035,0.0021051342347638523,-0.0032271728395061707,4.193054588346976,-0.2209024363596637,-0.0014202871189773908,0.0001423159823804036,0.021522997924177882,0.012332568556757309,-0.1145106392564996,-1.0742158477002037,-0.012472469994653344,-0.0014234143996503914,-0.016626364155043285,-0.0007009575002731342,-2.4438699642272494,-0.2587877100157801,-0.003989249791144526,-0.00010638482917546596,-0.056437389770723115,-0.27382530400074256,0.2379677872314909,-1.192180640397289,0.0129461875136706,-0.004510601689408704,-0.016181709417576864,-0.0012605821962313173,1.1715754491721302,-0.6514359974009097,-0.0013764678362573077,-0.00022229941109941397,-0.04307063956186762,-0.15101828645688292,-0.19869821279434244,-3.1690384741483344,-0.03117639500172035,-0.002259139701104608,-0.008894974060666071,-0.0002131202079272251,-6.6324404661023015,0.07386083052749717,-0.0002739797979797948,-7.479739909481259e-05,-0.04236812570145904,-0.08405162738496078,0.006841915593724636,0.3602407539281692,0.0030458303808402936,-5.4499438832771195e-05,0.008500436463399432,-0.0002468698092031428,0.7157106380229664,-0.0801351036571163,0.002984922431865828,0.000676195063658818,-0.09701840204984857,-0.2763615187514558,-0.24449676976991103,-0.44156502573957684,-0.02239797291178865,0.002853733519683206,0.013813701891968837,0.0012091688795713943,-3.652512429246242,-0.7207046747121653,-0.007608709113607986,-0.000787233057966203,-0.15827437924816204,-0.84180330142877,0.04194906812647727,-3.4280140908586514,-0.009436393186226286,-0.00812713497017616,-0.015395724480202225,-0.0029849693438757092,-3.3719902409842955,,,0.4904761904761905,1.1904761904761905,0.5714285714285714,0.0,0.6190476190476191,-0.047619047619047616,0.844697531977477,0.0076282555690288705,0.01991396985474316,0.7665776693192331,0.2339291119227332,0.25435756404981397,1.6112752012967102,0.4882866759725471,2.060527776639348,1.8566358999877508,0.20389187665159736,0.0,0.0,0.20389187665159736,6.226532194844459,806.0,253.7598,132.0,208.0,7269.596539911977,3157.7959329999994,66.07980971637599,258.1907,94.36111111111111,324.9162119999999,9279.459346022959,1008.0,284.3,168.0,232.0,6812.395156019596,3752.488630999998,85.15836344000004,291.69450000000006,118.30555555555557,351.6362839999997,11879.528409423385,1425.0,499.08000000000004,281.0,307.0,13062.235862772533,5155.825566999998,128.60338287333897,508.71450000000004,185.69444444444454,625.5930519999995,17397.139492128645,1692.0,654.7940000000003,345.0,338.0,17515.69631964088,5997.822123000002,162.53155882728188,667.7715000000003,234.6666666666667,828.7172919999999,21280.12112945684,1630.0,754.7928999999999,352.0,276.0,21264.431795478227,5597.287423999999,171.594474820017,767.4541,255.16666666666677,966.060928,21661.933267993587,1544.0,741.658,332.0,251.0,20792.12746403887,5209.985700999998,172.05102206547002,756.0665,253.83333333333337,954.176916,21239.445129667958,1287.0,726.7740000000001,291.0,193.0,21451.974961507207,4246.618927000001,149.331084498205,737.8634999999999,239.16666666666669,943.179324,17906.151956051173,1079.0,586.528,231.0,147.0,17090.213845233615,3576.1988349999992,121.32117458001699,595.8605,199.33333333333334,759.0349240000003,14597.781976822529,839.0,495.06200000000007,175.0,62.0,14547.656481961127,2692.315302,99.55489923092301,502.11800000000017,170.0,640.3622320000001,11848.67873691692,292.57777777777784,1.9937199999999982,0.2992727080917984,23.111111111111114,122.5777777777778,65.38242452648653,1410.4054391111108,10.6729722783088,2.1967244444444423,8.479012345679013,0.7963697777777774,2409.4053259558546,24.24098765432097,0.3433102222222209,-0.044740582904565104,11.061728395061719,48.418765432098745,-14.357042464307114,112.95049639506203,-0.6496147983081213,0.3775589135802456,0.7824142661179687,0.11924543209876531,-28.591103462338225,5.432592592592595,-0.5540906666666672,-0.09689901461966809,2.0370370370370363,3.5214814814814828,18.247699300935622,32.63936270370402,2.077046021551908,-0.4844611851851859,0.1768312757201636,-0.27108251851851833,352.21658542114596,-24.961975308641996,-0.16049244444444516,0.016081706008985605,2.4320987654321007,1.3935802469135758,-12.939702235984454,-121.38639079012302,-1.409389109395828,-0.16084582716049423,-1.8787791495198913,-0.07920819753086417,-276.15730595767917,-34.41876543209875,-0.5305702222222219,-0.014149182280336974,-7.506172839506174,-36.41876543209876,31.64971570178829,-158.56002517283943,1.7218429393181898,-0.5999100246913577,-2.152167352537723,-0.1676574320987652,155.81953473989333,-86.640987654321,-0.1830702222222219,-0.029565821676222057,-5.728395061728394,-20.085432098765427,-26.426862301647546,-421.48211706172845,-4.146460535228806,-0.30046558024691283,-1.1830315500685875,-0.02834498765432094,-882.1145819916061,9.749629629629627,-0.03616533333333292,-0.00987325668051526,-5.5925925925925934,-11.094814814814823,0.9031328583716519,47.55177951851833,0.40204961027091873,-0.007193925925925798,1.122057613168725,-0.032586814814814846,94.47380421903156,-8.494320987654328,0.3164017777777778,0.0716766767478347,-10.28395061728395,-29.294320987654316,-25.91665759561057,-46.80589272839514,-2.374185128649597,0.30249575308641985,1.4642524005486968,0.1281719012345678,-387.1663175001016,-64.14271604938271,-0.6771751111111107,-0.07006374215899207,-14.086419753086421,-74.92049382716053,3.733467063256477,-305.09325408641996,-0.8398389935741394,-0.7233150123456782,-1.370219478737998,-0.2656622716049381,-300.1071314476023,0.697928084312518,0.6213696785928411,0.4458269650184127,0.3406914625260587,0.28976574265085925,0.19567393360802462,0.17714169231629595,0.10281823268646434,0.11368100085575646,0.05738488989694558,0.07353509522360696,0.03157179950479221,0.04727067434950834,0.01839586702389097,0.03200252700205093,0.010811741635610557,7.034245831185699,5.691806554833155,3.1280107481143897,2.1918065548331644,0.34024810542446293,-0.41966066553638415,3.2286777350062623,0.9889041893964122,5.023810615584955,0.9949350505230907,14.54527206830057,10.952106554833161,14.024748479069544,11.702806554833145,1.9949352649312047,1.0450432108533982,3.107011531509856,2.2418065548331674,2.2691075806097083,1.35027750402491,3.2671720764041194,2.4375931686139376,20.90033664026775,15.59112025964995,0.21098860104445546,0.48547147385806677,0.6580771645992639,0.7356698001761727,0.7589475908492452,0.7744661179646273,1.7043469931371242,556.5202782227694,0.0,0.0,2.0,0.0,10.0,3.0,2.0,0.0,0.0,4.283327172727464,2.711111111111111,1.7224394445405982,1.277995000096154,1.144661666762821,1.0557727778739308,208.47837462771778,646.7327969451421,24.95291966290464,14.37183993211427,27.574376152793292,,9.0,331.0,0.0,0.0,0.0,0.0,25.931156057677168,28.92249715568712,0.0,0.0,72.42609997474823,0.0,10.3,25.0,12.0,0.0,13.0,0.0,0.00952380952380949,-1.0,0.062071563088512194,0.043040935672514546,-0.019030627415997647,0.0,0.04948387096774165,0.0,0.5044444444444447,0.7380952380952378,0.4423728813559325,0.46140350877193015,0.7380952380952378,17.738648171527018,0.1601933669496063,0.4181933669496063,16.098131055703895,4.912511350377397,5.341508845046093,33.83677922723091,10.25402019542349,0.6645161290322583,0.0970873786407767,0.0,0.27184466019417475,0.3684210526315789,0.3023670970209678,-0.370755539688413,-0.014520078905592416,-0.008239011993075848,-0.020597529982689614,0.697632902979032,0.8554213272433181,0.03278955653826294,0.01900936282762929,0.031682271379382156,-4.912940894456963,0.9695185212717474,0.9648039524959436,1.3741851262060651,0.6886252045826514,0.6949994599848794,1.3997108780369087,0.972238060166887,1.1448262049527302,0.9334323302164782,0.9783578483004745,1.0423623491298055,1.0785943492558758,1.0437599010438139,1.6287141624701564,1.8762516789141623,1.3145604395604393,1.2777115922511133,0.9934320355939473,1.0376165373232729,0.8841832556217858,1.4803707742639045,0.9678425825775854,1.837473044347908,0.908478888392854,1.0473880832769844,1.1718797022651124,1.247946580180984,1.2636147038801906,1.1562822874084722,1.150018005834517,1.046784758642605,1.059318472972436,1.1317204041651787,1.0154055488838838,1.2372053132193532,1.0470745002229176,1.0368812811308232,1.2256425024200048,1.26907782824329,1.216743782533256,1.179426085154874,0.8553421871295775,1.0338719466945643,0.9184571128126962,1.1902985380572477,1.014446424739776,1.2625311912465476,0.95169503059691,1.0606266539811473,0.7710481588880814,0.6786487603800335,1.0020242914979756,0.9527171809145779,1.108719596737176,1.0638118879760505,1.1490092059957338,0.8427284131812625,0.957004479749169,0.6719766491266449,1.1334204582509295,0.9513139905818014,0.924653411712778,0.9239573393760087,0.9374999999999999,0.9572153734590281,0.930945200398084,0.9514531978684581,0.9494109164245211,0.9331317537424405,0.9260337798485729,0.9109604025377378,0.951785660496407,0.9775178490050127,0.8477108687315908,0.755693567127312,1.095609579100145,1.0497762940057738,1.1120946707062098,0.9796477892007316,1.0628978347806939,0.8712783687578441,0.9369539895165986,0.8241384363274623,1.0385448695649764,1.0898859336356668,1.2776635489369201,1.2013866739638919,1.2621002592912702,1.3027271023620763,0.9342690094845664,1.087047443558185,0.9821917698593131,1.2406111771408965,1.190425552799827,1.3189649450984342,1.011418937367491,3.0,0.0,2.222222222222223,1.375,0.9894444444444443,0.42722222222222217,0.32666666666666655,0.3107284580498866,0.16983182161753588,0.0625,3573.7351989198714,4203.783045878587,1954.2287027080224,1714.1673551549256,10.548629428152596,0.4330054071322429,5.981015847928223,0.7636852495227142,1.0,0.3684210526315789,1.2085259236022108,2.780741985218564,3.7694136517890766,4.213858096233521,4.347191429566854,4.436080318455744,0.13043478260869565,0.0,0.07168458781362011,0.039285714285714285,0.030920138888888886,0.01473180076628352,0.014202898550724633,0.016354129371046664,0.01213084440125256,0.015625,0.3453698966862263,15.879017013232515,7.513007284079085,3.8548483045806066,127.55692831321478,1.0,3.9748212966617804,87.32117390419893,,72.27457110208067,70.7905269441109,69.383550763075,72.28669018518342,94.93302655581341,71.65264427694886,72.36264829268563,88.10845407472317,0.07932747470111597,0.16486832483786276,-0.1431361001342689,0.4582651391162025,0.3781957323376481,-0.21024158383013136,0.07667588999181744,-0.05827538938384164,0.16455981893695026,0.08834991759501343,0.1433645042520608,-0.011361500892737195,0.009947158264794604,-0.1488846406287173,-0.17345446143211551,0.04721840659340657,0.01539029317310681,0.14951347044295832,0.01239740885287866,0.10425429738000726,-0.1181453497429509,0.011172414510358534,-0.18235596305903673,0.07831287431920912,-0.033975955766999764,-0.03205711953232282,0.021399275757392963,0.04190776038121174,0.004527456730861774,-0.0788129042913513,-0.03427362927427069,-0.052587145841283475,-0.02915870861557557,-0.08823980393874893,-0.039608594389794846,-0.045643689422242596,-0.03980290997888156,-0.0900408485652468,-0.015996504804666366,-0.10989010989010989,-0.10052506174791581,0.16378331796305656,-0.038037380834045155,0.0545844609096549,-0.09239988043867976,-0.08587992257872402,-0.07123097889111309,0.0218812893973456,-0.10019428032332081,-0.03106808008726346,-0.03342594639937959,-0.08386350491613646,-0.0554409046546751,-0.1367557052296711,-0.10111045191838669,-0.13144771095570765,-0.046278579367025605,-0.04720760112278367,-0.012042658604507315,-0.12387281532060165,0.011360183944871772,-0.006183963098675228,-0.011246875736607834,-0.08249562937062938,-0.03085651657986685,0.0047090055767644926,0.011493740365170653,0.01284200535368875,-0.0011164234793658617,0.04511370254672528,-0.01394972753127426,0.01336718997176467,-0.012325200129550394,0.06737230375075857,0.10167575272287488,-0.1889060232220609,-0.10145614131104023,-0.1682769447497152,-0.014088449751586343,-0.09443562250029555,0.05845886074173565,0.07331238118262434,0.06832579675806869,-0.06821727234743083,-0.11084816696735034,-0.17173520359546962,-0.11837192851415232,-0.30817847882454624,-0.3090376514491042,0.028871796654263922,-0.10937325524344263,-0.03978626406096779,-0.16648472892576158,-0.08170852610707208,-0.16866991217224364,-0.06297801337518645,21.47691469873046,18.983711863956895,3.086163688434105,9.592206294986495,23.175999689050794,27.595736284509428,29.021780728953868,29.64520295117609,29.734802951176093,43.27108330942631,38.98935389974277,4.281729409683544,0.0,0.0,4.281729409683544,3229.534731446875,2205.32177281653,1417.4415966903844,100.0,31.0,41.0,55.0,72.0,81.0,92.0,100.0,102.0,280.19394876800067,23.0,4.6913478822291435,5.53338948872752,6.405228458030842,7.274479558773871,8.158516244806831,9.039907859574642,9.929496371717178,10.816914186795634,11.709223888694977,0.5629629629629631,0.9461333333333337,1.1236656059094536,0.5188114598654937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6644448702594813,0.935337690631808,0.9773407785061102,0.6003969061673112,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,9.799819461700956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.39820241076966,63.162202360362194,17.9195289552797,0.0,159.48002578933105,-195.55071836055362,-7.65844756635812,-4.345571519123415,-10.863928797808535,367.95840041704884,451.18207858458845,17.29447209654652,10.026268412990854,16.71044735498476,0.4444444444444444,0.9961062997324268,0.27809268051636116,1.5385212115816418,0.05259139792414468,208.8768758343118,0.0038937002675730466,5.0,0.17391304347826086,0.22005794809221954,0.5063394698370564,0.6863646178569959,0.7672925736214128,0.7915709603507378,0.8077565515036215,3.8750000000000027,,0.2857142857142858,0.37133550488599343,0.4504991709152957,0.2850003569643751,-1.0363636363636362,0.32236842105263164,0.28052598622417024,-0.6386492564868576,90.46900000000007,0.0,0.0,4.899909730850478,0.0,19.26246486877803,32.08476650803001,59.65783953108687,0.0,0.0,3.8501476017100584,0.0,5.14166355650266,0.0,6.634633357861686,2.70805020110221,8.226573474977114,5.37989735354046,9.873389104712095,25.33333333333334,17.73370134164777,0.0,0.0,0.0,0.0,0.0,5.7217762660619815,0.0,42.576000000000015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.56495226592541,4.899909730850478,11.374772549367124,0.0,32.08476650803001,12.841643245852019,0.0,17.54772460632,48.53093654769288,0.0,0.0,0.0,23.346515693947214,29.900019161676656,27.545010834223554,174.64234780839786,,144.5219313198076,141.54568860204216,138.72419684320568,144.54623747922733,190.386867145917,143.27458679951172,144.6985798247785,176.52102684301158,27.545010834223554,174.64234780839786,,144.26342791844706,141.20971838333583,138.31660235523472,144.28838001340245,190.90241674799051,142.98292013284512,144.4447705991471,176.85555740593333,4.822977605706515,120.71517644943678,,101.9109786075611,99.61712752612416,97.48522798974332,101.93001587603986,137.67547084089662,100.93414758978004,102.04933677055254,126.84225829430858,1.311667182582074,8.316302276590374,,6.881996729514648,6.740270885811531,6.605914135390746,6.8831541656774915,9.066041292662714,6.82259937140532,6.890408563084691,8.405763183000552,2.4476334782893154,87.32117390419893,,72.27457110208067,70.7905269441109,69.383550763075,72.28669018518342,94.93302655581341,71.65264427694886,72.36264829268563,88.10845407472317,42.09019607843136,0.0,4.286346686822878,0.0,0.0,0.0,0.0,43.98033503277496,5.650241559586798,0.0,0.0,0.0,0.0,4.7746008125472414,0.0,0.0,0.0,27.017860777529005,525.3847390651318,54.383666562099485,125.13338933483539,169.62361433050845,189.62361433050845,195.62361433050842,199.62361433050847,718.0,117.55850393935064,2.0536871412480884,62.81435465040629,6.48,6.48,0.8,8.291761868898005,5.523561956057013,3.941955037638573,4.506173128792474,,4.502743146060185,4.503066209757805,4.503308733372269,4.502740134965827,4.493777532338454,4.502892676845461,4.502721179886698,4.496940309302606,0.18771214464945585,0.21457967279964163,,0.21441634028858023,0.2144317242741812,0.21444327301772712,0.21441619690313463,0.21398940630183114,0.2144234608021648,0.21441529428031894,0.21414001472869554,2.1136141474178336,2.24738560783721,,2.2466241437957257,2.246695889417911,2.2467497454068197,2.2466234750710687,2.2446310140047165,2.246657352064021,2.246619265385753,2.2453345789814683,240.14999999999992,212.80106608333392,114.35200634339836,,114.43344947442945,114.46417792168083,114.49846340315712,114.43322595553366,114.39795234091275,114.44539390159174,114.43183291043462,114.34718497545327,10.133384099206378,5.445333635399922,,5.449211879734736,5.450675139127658,5.45230778110272,5.449201235977793,5.447521540043464,5.449780661980559,5.449134900496887,5.445104046450156,6.102295111974421,5.48121881067956,,5.481930771448047,5.482199262194635,5.4824987475738585,5.481928818180754,5.481620524396988,5.4820351448099265,5.4819166446746195,5.481176647277775,0.0,4.7746008125472414,0.0,5.7217762660619815,0.0,17.73370134164777,3.448812515747039,2.2014290438397577,4.286346686822878,284.48556886679427,84.11589381367766,-103.14096313561745,-4.039359531584007,-2.2920214030137216,-5.730053507534303,194.07539962538524,237.9707654611786,9.12176914467265,5.2882392324706355,8.813732054117725,882.0,35.0,1.1498299142610593,0.7285082976265596,0.0,0.0,0.24719387459906544,0.09834817412823682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.24615119001767477,0.07810433467529065,14.656489770562878,13.048763250449664,10.254020195423491,7.835903638099349,8.982738022176637,6.065891941848763,7.2628093849681346,4.215547540145038,6.252455047066605,3.156168944332007,5.294526856099702,2.2731695643450394,3.828924622310175,1.4900652289351686,2.9442324841886856,0.9946802304761713,2.5609771795529035,1.317374558991493,4.350864457860488,1.9050952611637308,7.090271988080093,2.633655311541099,74.27741516220016,47.71386696227213,34.48038696170102,29.87554480064216,28.501387868940085,28.05839176292591,108.0,126.0,49.933031999999976,27.496967999999995,0.3333333333333333,109.02,5.916666666666666,4.694444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,45.0,0.0,1.0,47.0,12.0,0.0,6.0,41.0,12.0,23.0,35.0,0.0,0.0,0.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,2.0,0.0,1.0,21.0,2.0,0.0,2.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,0.0,2.0,3.4011973816621555,7.040522707985752,3.9318256327243257,4.471638793363569,5.015622835607295,5.5534439637152975,5.71042701737487,6.084072214777468,6.452048954437226,6.785234475306218 +6918493,COC(c1ccccc1)(c1ccccc1)[C@H](Oc1nc(C)cc(C)n1)C(=O)O,0,23.36,6.236596,3.32,8.12,160.43898894686959,92.24856344000001,1.52260199813356,6.307052,4.510138888888889,7.750153919999998,227.0681134053303,25.192307692307693,6.3730769230769235,3.9615384615384617,7.769230769230769,144.44881107455865,95.79989426923075,1.8284853556923077,6.520538461538461,3.4153311965811968,7.789191538461538,270.4276758918481,22.41860465116279,6.380522093023257,3.8255813953488373,6.930232558139535,152.2770083951191,84.4484163488372,1.584904019740012,6.485022093023255,3.5482881136950897,7.846587906976744,231.64382014217023,21.476635514018692,6.441607476635514,3.616822429906542,6.570093457943925,153.96804845443543,79.81634747663549,1.5202741464746918,6.536091588785047,3.434579439252337,7.917542654205608,221.64418080691345,21.015748031496063,6.3890393700787405,3.338582677165354,5.960629921259843,154.07648464324475,78.27829980314961,1.435687099234134,6.4821511811023615,3.490157480314961,7.88722925984252,210.67925289024683,19.766666666666666,6.554893333333334,2.92,5.373333333333333,157.77604960882528,71.92611185333332,1.3675072589822597,6.623370666666665,3.978148148148148,8.060417226666665,199.36153165431355,16.233532934131738,6.222263473053892,2.5269461077844313,4.119760479041916,159.569775642781,57.86209089820357,1.2493039185665928,6.293850299401197,3.510645375914837,7.78830994011976,174.39516340441327,14.81045751633987,6.100954248366013,2.3856209150326797,3.104575163398693,163.55677885217426,52.40991204575164,1.1814561577422484,6.164437908496732,3.2794117647058822,7.678820209150327,161.5323319439882,12.819672131147541,6.154524590163934,2.3278688524590163,1.8852459016393444,162.46902540840435,42.54354422950819,1.2246230792400168,6.21411475409836,3.066939890710383,7.754555672131148,161.37458389379378,7.36,0.13174335999999992,0.02401781914790819,0.6304000000000001,4.12,1.4608100552293524,34.9654629664,0.23131313014839358,0.12287775999999993,1.3713361111111113,0.08390047999999999,49.941984711092665,0.2692307692307692,-0.0034116676923076497,-0.014012774473426422,0.3119076923076924,1.3461538461538463,-0.17724733602414477,1.278349133599999,-0.010723827252878166,-0.001400606153846177,-0.16911388888888895,-0.004256313846153872,-0.12811323235997796,0.9767441860465116,0.026222081860465145,0.0005822835163582517,0.08866976744186053,0.5348837209302325,0.10732975315453612,4.5715203136,0.015632298830774796,0.023529170232558117,0.24934864341085275,0.015481402790697636,3.8449790561485866,-0.018691588785046728,0.013731219439252396,0.0012561710529854348,-0.05432523364485976,0.19626168224299065,0.06797845064429532,-0.1852472056523363,-0.0037906164462029315,0.011555772710280358,-0.03035350467289725,0.012013140934579385,-1.2057452731683866,0.7007874015748031,0.01421194708661421,-0.001237647948939469,-0.17024251968503934,0.05511811023622047,-0.24976490216614525,3.1911595491905516,-0.02922483626809909,0.01517099590551178,0.16656196412948382,0.006910517165354283,-1.7822376479952138,-1.1133333333333333,-0.010845866666666587,0.0025010093454768145,-0.05386666666666663,-0.52,0.027567362049715355,-5.280819163733333,-0.015121357919484794,-0.012406453333333338,0.0873712962962962,-0.006278528000000078,-5.750593212338763,-0.5329341317365269,-0.02155761149700596,-0.0015814328386143384,-0.027525748502994035,-0.23952095808383234,-0.20166497386606685,-2.451286967837127,-0.01265525794280749,-0.01881555640718563,-0.2223906686626748,-0.015103551616766492,-2.4695395831281366,0.11764705882352941,-0.014802209673202608,0.0011064010508796856,-0.08059607843137258,-0.6862745098039216,0.044089028337109516,0.6382745596130718,0.0065872876966973715,-0.011433995294117654,-0.06921192810457522,-0.010582570457516342,2.7060086000157257,-2.8524590163934427,-0.058978441967213066,-0.0024732642460420177,-0.10417049180327868,-2.2131147540983607,0.2763871929989542,-13.20545628049836,0.03288881317338998,-0.05874448131147537,-0.5735446721311477,-0.031182835409836077,-3.430920829588853,,,0.4690476190476191,1.3392857142857142,0.7142857142857143,0.017857142857142856,0.625,0.08928571428571429,0.8332674510067276,0.015921931826808615,0.025136217541094328,1.14323128909177,0.2799086238410534,0.20110564298831995,1.9764987400984977,0.48101426682937337,2.0180972298034106,1.6087622464778555,0.1442459113712529,0.26508907195430226,0.0,0.40933498332555524,7.5631591436800125,1168.0,311.8298,166.0,406.0,8021.949447343479,4612.428172000001,76.130099906678,315.3526,225.50694444444446,387.5076959999999,11353.405670266515,1310.0,331.40000000000003,206.0,404.0,7511.33817587705,4981.594501999999,95.081238496,339.068,177.59722222222223,405.03796,14062.239146376101,1928.0,548.7249,329.0,596.0,13095.822721980243,7262.563805999999,136.30174569764102,557.7118999999999,305.1527777777777,674.80656,19921.36853222664,2298.0,689.252,387.0,703.0,16474.581184624592,8540.349179999997,162.66933367279202,699.3618,367.50000000000006,847.1770640000001,23715.92734633974,2669.0,811.408,424.0,757.0,19567.713549692086,9941.344075,182.332261602735,823.2331999999999,443.25000000000006,1001.678116,26756.265117061346,2965.0,983.2340000000002,438.0,806.0,23666.40744132379,10788.916777999999,205.12608884733896,993.5055999999998,596.7222222222222,1209.0625839999998,29904.229748147034,2711.0,1039.118,422.0,688.0,26648.152532344426,9662.969179999996,208.633754400621,1051.0729999999999,586.2777777777777,1300.6477599999998,29123.992288537018,2266.0,933.4459999999999,365.0,475.0,25024.187164382663,8018.7165430000005,180.762792134564,943.1589999999999,501.75,1174.859492,24714.446787430195,1564.0,750.852,284.0,230.0,19821.221099825332,5190.312395999999,149.40401566728204,758.122,374.1666666666667,946.055792,19687.69923504284,368.0,6.587167999999997,1.2008909573954094,31.520000000000003,206.0,73.04050276146762,1748.27314832,11.565656507419678,6.143887999999997,68.56680555555556,4.195023999999999,2497.099235554633,14.0,-0.1774067199999978,-0.7286642726181739,16.219200000000004,70.0,-9.216861473255529,66.47415494719995,-0.5576390171496647,-0.0728315200000012,-8.793922222222225,-0.22132832000000136,-6.661888082718853,84.0,2.2550990400000024,0.050076382406809644,7.625600000000006,46.0,9.230358771290106,393.1507469696,1.3443776994466323,2.023508639999998,21.443983333333335,1.3314006399999967,330.66819882877843,-2.0,1.4692404800000063,0.1344103026694415,-5.812799999999995,21.0,7.273694218939599,-19.821451004799982,-0.40559595974371365,1.2364676799999983,-3.247825000000006,1.2854060799999942,-129.01474422901737,89.0,1.8049172800000046,-0.15718128951531257,-21.620799999999996,7.0,-31.720142575100446,405.27726274720004,-3.7115542060485844,1.926716479999996,21.153369444444444,0.8776356799999939,-226.34418129539216,-167.0,-1.6268799999999881,0.3751514018215222,-8.079999999999995,-78.0,4.135104307457303,-792.1228745599999,-2.268203687922719,-1.8609680000000006,13.10569444444443,-0.9417792000000118,-862.5889818508144,-89.0,-3.600121119999996,-0.2640992840485945,-4.5968000000000035,-40.0,-33.67805063563316,-409.36492362880017,-2.1134280764488507,-3.14219792,-37.13924166666669,-2.522293120000004,-412.4131103823988,18.0,-2.264738079999999,0.16927936078459188,-12.331200000000004,-105.0,6.745621335577756,97.65600762079998,1.0078550175946979,-1.7494012800000012,-10.589425000000007,-1.6191332800000002,414.019315802406,-348.0,-7.195369919999994,-0.3017382380171262,-12.7088,-270.0,33.71923754587241,-1611.0656662208,4.012435207153578,-7.166826719999995,-69.97245000000002,-3.8043059200000013,-418.5723412098401,0.719573342933057,0.5712353174345349,0.44894664904074855,0.29501415729100794,0.2858447962596978,0.15336274509581055,0.17019936282792858,0.07904932743264804,0.11328009522111666,0.04285424118297896,0.07309057206619254,0.022074991923227417,0.045918585295854415,0.011628757510662679,0.030200190379369544,0.006174332745963214,8.029106407335872,5.685748551752616,3.5554351814278147,2.1854764868880685,0.5057708853978511,-0.47397523995290525,4.034724363605153,0.9728218037691141,6.022328729161949,0.9950375767075819,14.555828276700625,10.946094472408012,16.01446769602024,11.696904648342068,1.9981739733631383,0.7412566324639258,3.5015780388429674,2.235416347753092,7.008294290405233,1.143702511638899,3.7144709375544074,2.431426944130238,20.906144269348346,14.70095391348262,0.25520763612094777,0.5604989295994506,0.679737830678814,0.7941235379340649,0.8260666399367227,0.8260666399367227,1.8883763898442665,885.5152815355898,0.0,1.0,2.0,0.0,13.0,1.0,2.0,1.0,0.0,4.124299824400821,2.3065355311778832,1.5965637063165516,0.915488750216344,0.7252932501298073,0.7252932501298073,165.66208229487182,1610.5874643020893,55.4621877450158,32.21174928604179,63.27839766265494,,10.0,470.0,17.67432248668384,9.901064578912528,6.010464839586836,22.514758973090913,0.0,7.109797541277533,19.913841467842857,60.6636706846161,9.967957041894417,9.473725907600098,13.133333333333335,37.5,20.0,0.5,17.5,0.0,0.030952380952380905,2.5,0.16133333333333366,0.06591666666666696,-0.0954166666666667,0.018555008210180635,0.1543409090909088,0.0,0.6013333333333335,0.8380952380952378,0.43999999999999984,0.5354166666666665,0.8195402298850571,23.331488628188374,0.4458140911506412,0.7038140911506412,32.01047609456956,7.837441467549496,5.6309580036729585,55.341964722757936,13.468399471222455,0.5596590909090912,0.16497461928934007,0.03807106598984771,0.266497461928934,0.22727272727272727,0.365876390657226,-0.9541811053490642,-0.048189098223940914,-0.01908362210698128,-0.045437195492812575,0.6341236093427739,1.6537518734229806,0.04161767831008019,0.03307503746845961,0.057025926669757955,-5.074734999123942,0.7707462374581939,0.7781743815575046,1.599450677678861,0.7623364896524794,0.5008868558625841,1.232258324336064,0.7757401091511872,1.0988213665599929,0.7533000839458411,0.7982342381478663,0.8283589722563611,0.9654885534389339,0.7780112487360971,0.7879578090487869,1.0283523324315798,1.2201555306339273,0.8809268457891172,0.9865477482025776,0.7800761441348993,0.9365886529179183,0.7777411715778005,0.5412825898354567,0.8314778552255087,0.8732929401688283,0.937665075172694,0.9950067518414618,1.1354279910345257,1.5327755111722567,1.0081435441429998,1.0164312273767824,0.9381627309667553,0.9980409652584135,0.9781499801483433,0.9284922287116919,0.9937955107507344,0.953231852665586,0.8644406881205067,1.03711948973529,1.4147864213873194,1.603531316199688,1.0591506765537804,1.1753948378101406,0.8652139554304018,1.118423993067669,0.9958173321975133,0.7618554951014225,1.1229319555590165,0.9794330012414963,1.1633061594202898,1.4902305006744427,1.4211317518878634,1.0052876480541453,1.254336569579288,1.0023929593350334,1.1545173739600831,1.0128537183857413,1.4595524310773025,1.106090775217195,1.5650084512825988,1.0106105793641467,1.086744988284301,1.34348358745494,1.3036331622981023,0.9215705644548466,1.0739491890006396,1.1002163741203415,1.0804142023522034,1.0205568112314964,1.3151730708476768,1.7194632107884837,1.3987921258429403,1.0033058460246755,1.0025575447570332,1.1570297999387014,1.0267259902018389,1.0617804651471416,1.1908750555238277,0.9725611100395763,0.9988162306567541,0.9072187176718493,1.1362998511053333,1.3296680705660093,1.1398631025461177,0.9069872167828403,1.4144689950106912,1.6302592864306311,1.0209699368504905,1.0385027461096779,1.6007082603851663,0.7834815446303643,1.400443056047671,0.807994392197052,1.6445254076950597,1.9212230397268877,1.5758119893364366,1.0189063046457263,6.5,0.04938271604938271,3.3333333333333344,3.1875,1.991111111111112,1.1041666666666665,0.9151020408163266,0.5850694444444444,0.2824389014865205,0.12000000000000002,6065.400931833539,6712.075713496983,2682.150023965848,2455.853510992909,12.701805745886864,0.4683484399326695,6.752934840472934,0.8809311870980985,1.0,0.22727272727272727,1.5195563653739033,3.337320658596841,4.047292483458173,4.72836743955838,4.918562939644917,4.918562939644917,0.21666666666666667,0.008230452674897118,0.07936507936507939,0.06640625,0.03620202020202022,0.01903735632183908,0.017598116169544736,0.0136062661498708,0.01008710362451859,0.0075000000000000015,0.4746993111744366,22.68,10.346938775510203,5.201600492459218,163.3573864911512,1.0,4.250497072599932,133.6000692927122,,103.23945314432717,101.51487458263053,104.57644016787427,103.26781808636837,156.54300347921583,102.71009777633795,103.3230885764953,130.77508190197415,0.03658026755852843,-0.02589631608232591,-0.5834324251978079,0.49477743069113633,0.3267363704256908,-0.12133496438475454,0.03656033769175104,-0.04636065080265242,-0.011398369842078645,-0.12332052479232543,-0.05073050650191599,-0.0025652411112833205,0.1327098078867543,0.19903911559918586,0.024243813011181125,0.14065635698264675,0.12982614585685257,0.0734727644914006,0.13074388055416267,0.06758068087508157,0.19148436814406553,0.18182897787823915,0.18452102765917,0.07698891180218904,-0.0025396180414465662,0.10422703230927466,0.052301628438851826,-0.08617581479197296,0.047636330641502585,0.046534763640863945,-0.005298005229627569,-0.016387381225489227,0.09404283338400997,-0.02213425609298922,0.14318322057966043,-0.024142918631357025,0.0952156795617939,0.10787600290909703,-0.05153040504292668,-0.27005475838362836,0.013378182096170017,-0.1709769872352989,0.09126604593387169,-0.1263431792624594,0.12346413138969808,0.12145962086167823,0.08236564517097261,-0.035686159817340204,-0.151268115942029,-0.08232571771865083,0.10413140885418974,-0.08544839255499148,-0.1262135922330097,0.018871284429505916,-0.15102957935400216,-0.06537180967541288,-0.10096581621713599,0.06371253231675236,-0.07483304028773233,-0.1151454681988538,-0.07240952876854986,-0.16363338157616422,-0.06584414800009317,-0.043663941153226575,-0.058136154874716586,-0.13805009976769686,-0.07010594912450285,-0.05471050404570118,-0.1531241813586579,-0.1621707959564231,-0.1800174637471263,-0.04944816665605251,0.015984654731457798,-0.11235640014952265,0.046065841534827554,-0.12784910918682196,-0.16657148296211688,0.030181219097774745,0.018254428955407243,0.02847779411601689,-0.09305178816831995,-0.05047043357481263,-0.12613241852151913,0.054183040895743405,-0.38756236635780467,-0.44767677070945433,-0.10297622073057472,-0.16524506948489637,-0.5371637752665924,0.18920132156097488,-0.37767142660711,0.14218307950046297,-0.47807252761993213,-0.41823785393242424,-0.3716645650875428,-0.06869812742597729,14.253211902972023,17.579802276392442,6.671904670453248,14.050514496744242,30.616568646283522,36.373086900262116,39.152331543463305,39.34404860755054,39.34404860755054,56.5067224344955,45.045342901379954,4.038885518395081,7.422494014720463,0.0,11.461379533115547,4236.838862470045,3718.8074053009286,1908.5983972401673,72.0,42.0,57.0,78.0,93.0,91.0,98.0,98.0,90.0,378.1579571840006,30.0,4.976733742420574,5.8377304471659395,6.741700694652055,7.631916513071252,8.54772239645106,9.450852217451484,10.371207325767013,11.281359040644935,12.203815099188954,0.6666666666666665,0.9883200000000001,1.1197441382556415,0.6301357089334776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6804484550898203,0.9752156862745099,1.00830298616169,0.646704587828211,11.0,2.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,14.580253302440804,0.0,5.601050810983688,6.103966387748303,0.0,0.0,14.76249422596624,0.0,0.0,60.6636706846161,31.04074445123685,18.497653530974457,0.0,225.9551656707394,-589.2759282766226,-29.76025770111837,-11.785518565532449,-28.060758489362975,391.6172479656112,1021.3115360254668,25.701930043897423,20.426230720509338,35.217639173291964,0.5,0.8492638282069416,0.1834400032773298,134.02588523519552,0.13359225270012318,26.171152537751382,0.15073617179305837,5.0,0.23333333333333334,0.2692408017282518,0.5913192233075044,0.7171147434250484,0.8377902059455405,0.871489771223466,0.871489771223466,3.515640000000001,,1.2857142857142858,1.514192647743136,1.1430359144285005,1.28206267335915,-5.365540693720245,1.3572521419828643,1.2745051870999227,-2.2346271687189603,104.23080000000007,19.374790486512623,0.0,9.967957041894417,0.0,25.55249159811324,7.109797541277533,89.24479672616864,0.0,6.010464839586836,4.110873864173311,0.0,5.43372200355424,0.0,6.980075940561763,0.0,8.635687085464026,0.0,10.351724752488161,33.33333333333333,20.108542165322916,8.478279163517259,0.0,0.0,0.0,0.0,2.6826786239187035,0.0,49.416000000000004,0.0,12.365341080876796,0.0,0.0,0.0,0.0,0.0,-1.183041383219954,55.98720691278207,4.736862953800049,0.0,6.010464839586836,34.257553653712804,15.13245094885556,13.847474399381248,22.514758973090913,66.73003775307771,0.0,0.0,0.0,31.50678544667388,34.02242275449102,35.4824833602052,267.2001385854244,,206.38706955396043,202.92159254756513,209.07123491328937,206.4440602674968,315.07629698734746,205.32324897110567,206.55514106819777,262.3482449356336,35.4824833602052,267.2001385854245,,205.1931920029401,201.51555651751795,208.00984442132,205.25357349937752,318.4515476521519,204.06294341069307,205.37167196589064,263.78479097266734,5.048008411005327,182.90032891535907,,141.79597101332644,139.0653404797381,144.05056552279174,141.84140045299216,230.46645819975663,140.96171914761283,141.92827180493663,187.22507487358422,1.267231548578757,9.542862092336586,,7.370966769784301,7.247199733841612,7.466829818331763,7.3730021524106,11.252724892405267,7.332973177539488,7.3769693238642065,9.36958017627263,2.524004205502664,133.6000692927122,,103.23945314432717,101.51487458263053,104.57644016787427,103.26781808636837,156.54300347921583,102.71009777633795,103.3230885764953,130.77508190197415,48.760784313725495,0.0,5.075600434618291,0.0,0.0,0.0,10.101989323507182,50.415149308084494,0.0,0.0,11.760857662509448,0.0,-1.4134259259259265,0.0,-1.3934878117913838,0.0,0.0,32.33522939141055,524.481912199808,75.97781826869516,166.86603292984205,202.36462417290863,236.418371977919,245.92814698224586,245.92814698224586,777.0,135.04303747681325,93.09050143654267,63.5120836462415,81.54,81.54,1.0,8.321919364956145,5.906890595608519,4.2357678053087655,5.211474332952522,,5.222597115357054,5.22204041238869,5.224744799628165,5.2226110687166,5.21602060496777,5.222528981623401,5.222612006002862,5.223010898882148,0.1512774216181702,0.18612408331973293,,0.1865213255484662,0.1865014432995961,0.18659802855814875,0.18652182388273572,0.18628645017742038,0.18651889220083576,0.18652185735724508,0.18653610353150527,2.47318402880717,2.680482214287602,,2.6826142270254545,2.682507626299979,2.6830253716627874,2.6826168987500005,2.6813541921366206,2.682601180991731,2.6826170782169694,2.6826934533423423,288.7000000000004,273.0357614265119,173.13943980316202,,171.64588061084703,171.68065085894904,171.5447116559478,171.64511372638717,172.27931130862774,171.65149570282733,171.64482778041435,171.70674017596315,9.751277193803997,6.183551421541501,,6.130210021815965,6.131451816391037,6.126596844855278,6.130182633085256,6.152832546736705,6.130410560815262,6.1301724207290835,6.13238357771297,6.63922219802343,6.183716697449875,,6.175052938025239,6.175255487173258,6.174463359172499,6.1750484701861605,6.17873647984705,6.1750856507248875,6.175046804270919,6.175407439852625,11.760857662509448,20.843620244394053,10.101989323507182,1.290869289073654,-1.183041383219954,20.10686368837658,-1.4134259259259265,3.6017408352229783,1.4738595993953134,350.0885965533613,139.54367703688,-363.92055732359495,-18.379114178919465,-7.278411146471896,-17.32955034874261,241.85200904774777,630.7338303778963,15.872802972322368,12.614676607557927,21.74944242682401,1809.0,48.0,1.9711124480056728,0.8183715283830102,0.06804138174397717,0.02946278254943948,0.5852871903890684,0.17096286293412924,0.09581915952175495,0.025655920337018252,0.0,0.0,0.0,0.0,0.0,0.0,0.2721655269759087,0.07858378663969906,0.2862573585363889,0.06683508492434839,20.148053602125596,15.994588888166977,13.468399471222456,8.850424718730238,12.005481442907307,6.441235294024043,9.701363681191928,4.505811663660938,8.8358474272471,3.342630812272359,6.7974232021559065,2.0529742488601497,4.178591261922752,1.0582169334703038,2.9596186571782153,0.605084609104395,4.610186444002036,1.7354338551643382,9.039165946970147,2.779172942770502,14.979788247879693,3.6046057251114925,92.18544025236923,57.17245411796242,40.31161480220121,30.815135358831554,29.727257388258923,29.727257388258923,144.0,171.0,56.81744599999998,28.690554,0.42,144.06,9.590277777777779,6.319444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,18.0,18.0,50.0,0.0,0.0,52.0,18.0,1.0,10.0,42.0,19.0,30.0,33.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,5.0,1.0,1.0,28.0,6.0,0.0,2.0,4.0,0.0,3.0,7.0,0.0,0.0,0.0,1.0,3.0,3.713572066704308,6.814525745630982,4.283586561860629,4.8060681283549815,5.366559956644284,5.85525098926352,5.915527981018042,6.214483090609041,6.510351342150745,6.735037458330877 +6279,CC(=O)O[C@]1(C(C)=O)CC[C@H]2[C@@H]3C[C@H](C)C4=CC(=O)CC[C@]4(C)[C@H]3CC[C@@]21C,0,18.612903225806452,5.863870967741935,3.193548387096774,5.387096774193548,162.45273964829786,72.91543683870972,1.3648912058849352,5.934748387096771,4.127576164874552,7.464629419354837,194.9486461369834,21.23076923076923,6.05,4.092307692307692,5.123076923076923,142.60825419467088,78.82043204615391,1.8010554852307699,6.210230769230771,2.4962606837606836,7.511112676923073,252.7097217301433,17.96923076923077,5.90176923076923,3.853846153846154,3.730769230769231,150.46371850304834,66.25177143846155,1.5407359505898321,6.027954615384612,2.3440170940170946,7.433300461538461,211.76137521514846,15.700507614213198,5.9659898477157345,3.299492385786802,2.66497461928934,152.79534256514324,55.576335015228416,1.4303189451026648,6.074584263959387,2.406937394247039,7.523388304568525,191.7921187717664,12.738636363636363,5.799431818181818,2.6856060606060606,1.8257575757575757,155.48722046919764,43.15852704924242,1.287856503175019,5.899380681818184,2.1699547558922556,7.394362378787879,164.47496708479184,9.965079365079365,5.6479365079365085,2.1746031746031744,1.2952380952380953,161.32360192388782,32.401643739682534,1.0807725527766827,5.7242574603174585,2.2824735449735445,7.298238653968254,131.04048911348642,8.102739726027398,5.610171232876712,1.9212328767123288,1.0205479452054795,166.727059771297,25.177401297945213,0.9468407139252811,5.662450342465752,2.1488299086757983,7.309065575342464,111.38389484788982,8.5,5.540566037735852,1.9528301886792452,1.3254716981132075,165.90781674904488,27.30238273584907,0.9551611478132546,5.6004009433962265,2.008844339622641,7.232654037735849,112.76485062456653,9.525641025641026,5.6958333333333355,1.9423076923076923,1.608974358974359,167.9550359771352,31.766391749999993,0.9332971883937818,5.741266025641025,2.347934472934472,7.392420846153845,115.79486839480215,7.1404786680541115,0.10387096774193545,0.010928237870882112,0.7960457856399584,3.463059313215402,1.2993536948125497,34.04785436628512,0.23310539211869086,0.10018605619146718,1.6924662533240835,0.06552746722164411,51.60246345057077,0.39550148082926423,0.0020000000000002316,-0.005551304526726878,0.41536860641959517,1.5200672376530857,0.04292393575835329,1.8945369562955332,0.008863131795662855,0.0026769711038182684,-0.022165384837731318,0.00039228860962132697,2.6417710401794534,1.3808612823180972,0.018076923076923167,0.0004914212641666245,0.03397902825582328,0.3411590490674778,0.13353142942586668,6.547699307908434,0.026568240817679993,0.018470494677019163,0.20570889142364163,0.009917139229968768,7.83533983233415,-0.6115774072059034,-0.005989847715735863,0.0004973481995733604,-0.15072074879699127,-0.6214021984290897,0.0009349344635082284,-2.8866376412155232,-0.002479912799877143,-0.006913532857587967,-0.06317927845007754,-0.002208778503779441,-2.4714471886128173,-1.2178247091098287,-0.00965909090909086,-0.000988983358679388,-0.1661582001072115,-0.5270866836943839,-0.19389773089185436,-5.839547472467913,-0.03660633815934553,-0.010706840648945195,-0.04929521158953389,-0.0045733875539999335,-9.023711358604825,-0.49797994813603563,0.002222222222222129,0.0006057119324564475,-0.0386469121120526,-0.14938803825380312,-0.18612631299848884,-2.464573105865253,-0.03303688634553989,0.0013045838494953632,0.08071709707700864,0.0019082743042135892,-6.40203936227148,-0.17903368352030571,-0.009280821917808331,-0.0004429497844654458,0.04476287542941855,-0.07662537596396453,0.07858620762446815,-0.7724656805803053,0.012995518572394234,-0.008631869271449601,-0.18658050677329072,-0.0057742798597351045,1.5525523844841154,0.5765024640213615,0.004716981132075283,0.00047527734366941543,0.033838572241964925,0.37717197102075295,-0.015294452165113378,2.7203139404708105,0.00018042799236566505,0.0058506753970902,-0.041823480111126354,0.0012083891386724611,2.1328149291717304,1.0880159556018039,-0.0010897435897436463,1.0418112668776541e-05,-0.017509805491075017,0.12751140638757705,0.17745534227581564,5.271660799347632,0.034925939043601244,0.0016348081592357912,-0.05345530534136156,-0.0035031223084927535,9.077902714702642,,,0.4761904761904762,0.7946428571428571,0.19642857142857142,0.0,0.5982142857142857,-0.4017857142857143,1.5925208317078925,0.030900411527574674,0.043186125813288956,0.5005606633880981,0.10131100897021154,0.36472477815839577,2.0930814950959906,0.4660357871286073,2.030229456982647,1.7742236591402132,0.0,0.25600579784243405,0.0,0.25600579784243405,6.229769509161306,1154.0,363.55999999999995,198.0,334.0,10072.069858194467,4520.757084000003,84.62325476486598,367.95439999999985,255.9097222222222,462.80702399999984,12086.81606049297,1380.0,393.25,266.0,333.0,9269.536522653607,5123.328083000004,117.06860654000005,403.6650000000001,162.25694444444443,488.22232399999973,16426.131912459314,2336.0,767.2299999999999,501.0,485.0,19560.283405396283,8612.730287,200.29567357667818,783.6340999999995,304.7222222222223,966.3290599999999,27528.9787779693,3093.0,1175.2999999999997,650.0,525.0,30100.682485333222,10948.537997999998,281.77283218522496,1196.6930999999993,474.1666666666667,1482.1074959999994,37783.04739803798,3363.0,1531.05,709.0,482.0,41048.626203868174,11393.851141,339.99411683820506,1557.4365000000005,572.8680555555554,1952.1116680000002,43421.39131038504,3139.0,1779.1000000000001,685.0,408.0,50816.93460602467,10206.517777999998,340.44335412465506,1803.1410999999994,718.9791666666665,2298.945176,41277.75407074822,2366.0,1638.1699999999998,561.0,298.0,48684.30145321872,7351.801179000002,276.4774884661821,1653.4354999999998,627.458333333333,2134.2471479999995,32524.097295583826,1802.0,1174.6000000000006,414.0,281.0,35172.45715079751,5788.105140000002,202.49416333640997,1187.285,425.8749999999999,1533.322656,23906.148332408105,1486.0,888.5500000000004,303.0,251.0,26200.98561243309,4955.557112999999,145.59436138942996,895.6374999999999,366.27777777777766,1153.2176519999998,18063.999469589136,442.70967741935493,6.439999999999998,0.677550747994691,49.35483870967742,214.70967741935493,80.55992907837808,2110.9669707096778,14.452534311358834,6.211535483870965,104.93290770609318,4.062702967741935,3199.3527339353877,25.707596253902175,0.13000000000001505,-0.36083479423724707,26.998959417273685,98.80437044745057,2.7900558242929643,123.14490215920966,0.5761035667180856,0.17400312174818744,-1.4407500144525356,0.025498759625386253,171.71511761166448,179.51196670135263,2.3500000000000116,0.06388476434166118,4.417273673257027,44.350676378772114,17.35908582536267,851.2009100280964,3.453871306298399,2.401164308012491,26.742155885073412,1.2892280998959398,1018.5941782034396,-120.48074921956297,-1.179999999999965,0.09797759531595202,-29.69198751300728,-122.41623309053068,0.184182089311121,-568.667615319458,-0.4885428215757972,-1.3619659729448295,-12.446317854665274,-0.4351293652445499,-486.875096156725,-321.50572320499475,-2.549999999999987,-0.26109160669135845,-43.86576482830384,-139.15088449531737,-51.18900095544955,-1541.6405327315292,-9.66407327406722,-2.8266059313215313,-13.013935859636948,-1.2073743142559825,-2382.2597986716737,-156.86368366285123,0.6999999999999706,0.19079925872378098,-12.173777315296569,-47.057232049947984,-58.62978859452399,-776.3405283475547,-10.406619198845066,0.4109439125910394,25.42588557925772,0.6011064058272806,-2016.6423991155161,-52.27783558792927,-2.7100000000000324,-0.12934133706391018,13.070759625390217,-22.37460978147764,22.9471726263447,-225.55997872944914,3.794691423139116,-2.5205058272632836,-54.48150797780089,-1.6860897190426505,453.3452962693617,122.21852237252864,0.99999999999996,0.10075879685791607,7.173777315296564,79.96045785639963,-3.242423859004036,576.7065553798118,0.03825073438152099,1.2403431841831223,-8.866577783558787,0.25617849739856174,452.15676498440683,169.73048907388142,-0.1700000000000088,0.0016252255763291403,-2.7315296566077025,19.89177939646202,27.68303339502724,822.3790846982306,5.448446490801794,0.25503007284078344,-8.339027633252403,-0.5464870801248696,1416.152823493612,0.7315272565784262,0.6417675705753363,0.42093554966454855,0.3550070986844698,0.26441795458244194,0.20526886175848355,0.15263560907272775,0.12217145680212588,0.09496898069274295,0.07381830867396051,0.06019713241308914,0.04323961576109094,0.03536967694095508,0.027062839352751625,0.02119232954880395,0.015330686980784672,8.029823827418776,5.712506478012266,3.5562804498579372,2.2117263642138143,0.4257823798029442,-0.48438182080278536,4.118710341441255,0.9715038919744902,6.029733402656091,0.9933220353851899,13.643734651112897,10.972932160398864,16.015221404758275,11.723927049652692,1.97222270914446,0.7409894245706872,3.5024865953255233,2.2615457325268022,7.010445383864187,1.0773655678035736,3.7153798471833825,2.45757794495855,20.879525256710686,14.700462570550613,0.20634130057977176,0.4513014479475114,0.7217482231644891,0.8644338084548587,0.8749954636448727,0.8749954636448727,1.6733961979504195,766.5668378003054,0.0,1.0,5.0,0.0,3.0,7.0,1.0,5.0,2.0,4.693755429351924,3.1974103782201015,1.5453796375504059,0.6737812501744749,0.6092651211422169,0.6092651211422169,261.730358306486,1111.3507800322184,44.15165147896525,17.925012581164808,34.29009031862027,,12.0,544.0,5.601050810983688,14.383611552215466,28.36577611947529,36.51326743049759,32.10410811463005,12.496841729759891,6.923737199690624,6.076020106833881,20.771211599071872,4.736862953800049,13.333333333333334,22.25,5.5,0.0,16.75,0.0,0.023809523809523787,-11.25,0.08651778329197696,0.007190860215053885,-0.07932692307692307,0.0,0.12576470588235256,0.0,0.5301075268817205,0.8095238095238091,0.4435897435897435,0.5229166666666666,0.8095238095238091,44.59058328782099,0.8652115227720909,1.2092115227720908,14.015698574866747,2.8367082511659234,10.212293788435082,58.60628186268774,13.049002039601005,0.5882352941176474,0.2625,0.11249999999999999,0.3,0.7916666666666666,0.2782830360489852,-0.5239775868860349,-0.051555534514348196,-0.00845125140138766,-0.02495131366123976,0.721716963951015,1.358916873104696,0.02324794019664736,0.021918014082333803,0.033144313978163316,-4.786098647659257,0.9221184673676657,0.5872670807453414,1.4305073648971072,0.9602362996480643,0.4392693694526626,1.2445457599096914,0.9326446495748162,1.233277599441615,0.6138151549298653,0.5210176950640915,0.569246833539838,1.147879060157261,0.7742615407035398,0.5147694696607739,0.8828505027548184,1.6732830568124686,0.9113200351331358,1.0532215662505207,0.7828674184917189,1.0413310778688967,0.5330005031860993,0.4095351867031373,0.5065699744240484,0.96375303854355,1.093209938645405,1.0169231011760254,1.073941483502837,1.6813907965893633,1.259001458170636,1.1154652542696097,1.0948185515843258,1.1184557936049897,1.0270932050361605,0.8466061100238058,1.0026724117134298,1.1190586693007505,1.1372714134937245,0.9009210897797851,1.0754253786864263,1.294467963953258,1.05140212977127,1.2168009014946508,1.1424183005992246,1.224917869299597,0.9315782939360698,0.6426047466804384,0.8588659831873587,1.222641421563069,1.015255629114562,0.7773094745144431,0.7307840883373649,0.8867434381159871,0.8861356742216114,1.1185765646894663,1.0207958396127257,1.1242241503635548,0.8063016180324453,0.7719970234992529,0.7395781854460562,1.1128221123413422,0.9916475936565478,1.0852308984940013,0.798356164489938,0.7407220879219266,0.9466909040766592,0.8373849576409795,0.9877165825133287,0.8474975713463087,1.0829757216641551,1.20018319946194,1.0775557858403528,0.8964966713036648,0.8546744306902105,0.7698274346654166,0.7349633311649577,0.7782972623011469,0.7524750686003263,0.9193810676457618,0.8570796169527041,0.9183703093964413,0.7779223017688955,0.7911035093790607,0.7618943957308094,0.9033883499891333,0.8501331655568756,1.1988821866539257,1.2889973800643506,0.8279265124853359,1.0499120708518241,0.7452442732547122,0.8427307778341345,0.7319145391385182,1.1526424514148705,1.0586439030961636,1.263406224551427,0.730391583557086,9.5,0.10315273951637588,6.888888888888891,4.479166666666666,3.6366666666666676,1.5975000000000001,1.0768707482993198,0.6423965419501133,0.42302847064751825,0.19719135802469137,5738.327563730283,6816.278012772222,2593.236786775583,2256.6821399293967,12.269984352646736,0.4434892800933885,6.828377825334293,0.7969105791310019,1.0,0.7916666666666666,1.2604408810349512,2.7567859321667734,4.408816672836469,5.2804150602124,5.344931189244658,5.344931189244658,0.30645161290322576,0.011461415501819542,0.13507625272331159,0.07224462365591398,0.05961748633879782,0.03195,0.03076773566569485,0.022942733641075484,0.01692113882590073,0.010378492527615336,0.6978114917833551,21.240374609781476,7.017301038062284,2.9259002770083105,168.01810354228854,1.0,4.295540526308287,130.42838184837845,,119.6786428221387,119.08380177136188,120.96867859331896,119.69090579263896,143.4896864345102,119.53311964813017,119.70377717312704,130.93606433149054,0.0553886509876017,0.019254658385095404,-0.507978010024665,0.5217898441427855,0.4389376849112424,0.03303483564923074,0.05564335819562075,0.03802199389343165,0.026719996829721152,-0.013096500325603219,0.005986628604069588,0.05119466908222253,0.19338497410488067,0.17403248924988146,0.04496802411997257,0.042684766214178,0.09851377588757392,0.1027675758794302,0.19230872046939024,0.11397523058648157,0.18436192998474665,0.12154386595278911,0.15134324048302414,0.1518404221116208,-0.08564935708610799,-0.05766623577261237,0.04551037463217436,-0.18933678378288704,-0.17943735357282303,0.000719538080540192,-0.08478177832180608,-0.010638590456176319,-0.0690069368972405,-0.03732971238037418,-0.033707674009562025,-0.0478939768249665,-0.1705522508677565,-0.0929912478825518,-0.09049797143549536,-0.20872945137651008,-0.15220261509323998,-0.1492262897053807,-0.1715099991220108,-0.1570377151151724,-0.10686956903945975,-0.02912625967738841,-0.06979344308441875,-0.17486977859590952,-0.0697404153539391,0.021394064872324852,0.055426312971311203,-0.048548604627036016,-0.04313759157509157,-0.14324530244656764,-0.07238556295945989,-0.1417251057355139,0.013021610981493794,0.04769199794588309,0.02912174672887822,-0.12406460727216828,-0.025073064684204862,-0.08934952778014235,-0.04053258994715601,0.05623153370937415,-0.02212649828767124,0.06048099754378682,-0.02268764640115521,0.05574954081618701,-0.08615838969599819,-0.11024178851828673,-0.08811999157855173,0.030086788123425193,0.08073722936819124,0.045411930153519825,0.04349075754800089,0.04250832408435071,0.10891293994920176,-0.011770815156930632,0.07989678031413693,0.0007740189565147256,0.058398100688871114,-0.024711559257966337,0.018440955982399438,0.04133164943209973,0.15237297192266588,-0.010491320273929518,0.0009533204521961605,-0.021995977878330835,0.03682045118343194,0.1365720072866042,0.15483092539798154,0.1498289624541071,0.016317721461272843,-0.03158426659106072,-0.053460364897724155,0.17591994853885667,7.971116459067144,19.89354341811453,7.856519282378958,10.926745991020075,27.952990676759107,35.20808649061466,36.44159314896057,36.50662540702509,36.50662540702509,56.846424795514125,49.67826245592597,0.0,7.168162339588154,0.0,7.168162339588154,5617.935891156383,5233.7120523416115,1252.2266938683733,338.0,51.0,76.0,109.0,145.0,175.0,221.0,278.0,323.0,386.24570956800096,31.0,5.10594547390058,6.037870919922137,7.014814351275545,7.9748769005588755,8.954802752850968,9.924808634239811,10.906341227535142,11.88086176118598,12.863419058251528,0.5645161290322578,0.9600000000000002,1.1273785205401912,0.519056456312896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6370384585667376,0.9472485768500947,0.9905786716161926,0.5817785335810854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,5.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,0.0,4.0,0.0,3.0,0.0,0.0,4.736862953800049,0.0,17.167540703713566,0.0,0.0,14.383611552215466,0.0,0.0,0.0,26.344316129141138,80.61130169812293,18.759549292013414,0.0,164.25247179509788,-309.2700691827735,-30.429896478521094,-4.988226922302799,-14.727146151560644,425.98283010158383,802.0807108494448,13.721755000444153,12.93678565886201,19.562944167059626,0.5,0.8310617100586846,0.23933404799119926,5.5172261362269035,0.16099782223677622,9.684257766463272,0.16893828994131577,6.0,0.06451612903225806,0.21168950691735824,0.46299883115336027,0.7404553768483333,0.8868392617490477,0.8976746668430504,0.8976746668430504,4.655200000000004,,1.0,1.1428571428571428,0.6925367435132048,0.9970623163947749,-4.329177057356608,1.0348837209302326,0.9939792008757524,-1.5959779122321027,106.43500000000007,19.120474506015512,0.0,0.0,34.501605123439134,85.16548816991887,0.0,11.64912463690315,0.0,0.0,4.143134726391533,0.0,5.58724865840025,2.3978952727983707,7.249215057114389,4.948759890378168,9.021960500598263,7.260522598089852,10.853851154743419,34.999999999999986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.52000000000001,0.0,36.807793100848954,0.0,0.0,0.0,1.949963995999124,0.0,1.3040867623704937,69.89746827349185,0.0,0.0,0.0,23.136845991665414,19.120474506015512,34.501605123439134,79.5644373589352,11.64912463690315,0.0,0.0,0.0,32.18150029139955,39.49638443113773,34.7532950337267,260.8567636967569,,239.28585707284884,238.08597088966252,241.887890276387,239.3105928483926,288.525507532362,238.99231903047962,239.3365558319058,262.44212077449254,34.7532950337267,260.8567636967569,,238.3572856442773,237.02474639986644,241.2448204431248,238.38474926888307,291.30854992637705,238.03135557533017,238.41357514537856,263.46810657521326,5.280479206844988,190.032351357418,,177.3859904408762,176.67863652109932,178.92610045691745,177.40059125841907,207.4972838844559,177.2127811259793,177.41591727667566,191.1406291144978,1.2411891083473823,9.316312989169889,,8.545923466887459,8.503070388916518,8.638853224156678,8.546806887442592,10.30448241187007,8.535439965374271,8.547734136853778,9.372932884803305,2.6712145287039184,130.42838184837845,,119.6786428221387,119.08380177136188,120.96867859331896,119.69090579263896,143.4896864345102,119.53311964813017,119.70377717312704,130.93606433149054,58.72941176470587,0.0,9.867532380698123,0.0,0.0,0.0,0.0,61.415877640203945,6.244323646105978,0.0,5.840635588908046,0.0,1.8832898190140255,0.0,-1.1476252939447384,0.0,0.0,36.070269082027295,490.5219593312601,78.14733462416697,170.92072779433994,273.34663371586106,327.3857337331688,331.3857337331688,331.3857337331688,1775.0,139.66374107972058,99.71334256542164,79.46258785851425,60.440000000000005,60.440000000000005,1.0,7.823645930834952,5.954196310386875,4.520824176322626,5.20352486593315,,5.224157653550712,5.22501588087431,5.222186034218328,5.224139604090507,5.178232500103191,5.224370765476303,5.224120644042955,5.203810643943975,0.16145800629723664,0.1858401737833268,,0.18657705905538258,0.18660771003122537,0.186506644079226,0.1865764144318038,0.1849368750036854,0.18658467019558225,0.18657573728724838,0.18585038014085625,2.538313734297786,2.67895567195931,,2.682912987404115,2.683077254429196,2.682535511913221,2.6829095323990053,2.674083199028763,2.6829537801200023,2.6829059030775486,2.679010590532969,311.8600000000009,226.97453182299517,180.36222742339118,,177.77940482743736,177.65708763733815,178.04689256292238,177.78193427796683,182.5228837563488,177.7494110747109,177.78458954051817,180.11879450165736,8.106233279392685,6.44150812226397,,6.349264458122763,6.344895987047791,6.358817591532942,6.3493547956416725,6.518674419869599,6.3481932526682465,6.349449626447077,6.432814089344906,6.454457233755918,6.2245866205324285,,6.210162900185266,6.209474635488079,6.211666374143393,6.2101771281130596,6.236494972788726,6.209994172636578,6.210192063504181,6.223236019840952,5.840635588908046,36.807793100848954,0.0,0.2175757695053333,1.8221755179344474,0.0,8.1942876421051,9.867532380698123,0.0,398.84934054434495,96.94760727725577,-182.54211265170193,-17.960799134684663,-2.944227623414547,-8.69248155484295,251.43010432781114,473.416350513727,8.099064205239454,7.635747588931079,11.546740256432363,1759.0,62.0,3.5044652544297987,2.4663291538689567,0.2920819864624269,0.24020853705628312,1.6680303292795482,1.1085974476355829,0.4665853503457128,0.27954616594921056,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.4038859871952694,0.34863126612595285,1.100526893257589,0.8539686820100869,20.482763184195935,17.969491976109417,13.049002039601005,11.005220059218564,13.485315683704538,10.46871194968266,11.600306289527309,9.285030716961566,10.351618895508983,8.046195645461696,8.728584199897925,6.269744285358187,6.1896934646671395,4.7359968867315345,4.683504830285673,3.3880818227534126,8.808500724861167,6.472093850110311,15.985453555970595,11.519521570268042,28.0453990682709,18.656592733224244,100.64763006864646,48.94728115360573,29.91008468171588,23.172195496595318,22.791008875900236,22.791008875900236,164.0,209.0,65.95896199999997,38.449038000000016,0.27419354838709675,205.04,11.32638888888889,5.812499999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,62.0,0.0,0.0,65.0,0.0,4.0,4.0,61.0,4.0,31.0,61.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,4.0,0.0,0.0,28.0,4.0,0.0,0.0,4.0,0.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,3.58351893845611,6.318968113746434,4.110873864173311,4.532599493153256,4.919980925828125,5.272999558563747,5.424950017481403,5.683579767338681,5.958424693029782,6.20455776256869 +11718722,CN1CCN(c2cccc3nc(CN(C)[C@H]4CCCc5cccnc54)c(CO)n23)CC1,0,19.904761904761905,5.9314190476190465,3.2063492063492065,5.904761904761905,165.2908106920392,78.22217852380956,1.4137209040502852,6.003542857142855,2.741181657848325,7.468647047619045,203.73589333441495,23.313432835820894,6.302238805970149,3.9402985074626864,6.0,149.0471375150904,87.64438983582096,1.7311370387462695,6.4377164179104485,2.680762852404643,7.704664417910443,249.26938163862945,18.951219512195124,6.224160975609755,3.6504065040650406,4.7073170731707314,160.31739956865565,69.57892908943093,1.4712142660547562,6.314339024390241,2.420731707317073,7.692631934959347,206.54634843603708,16.349693251533743,6.04637852760736,3.2208588957055215,3.705521472392638,160.31624813525448,58.59572226993864,1.3803544531679506,6.135821472392637,2.266871165644171,7.551806478527604,185.99734502430587,14.103626943005182,5.913268393782383,2.8290155440414506,2.8704663212435233,162.26041258802493,49.488381595854925,1.2478632741389069,5.993703626943003,2.2284110535405874,7.463557554404141,163.11601899358942,13.218274111675127,5.913304060913707,2.6802030456852792,2.436548223350254,164.54300734109825,45.74658684771572,1.2121621944418983,5.983973604060913,2.2480259447264523,7.480134517766494,157.2312325498405,13.037037037037036,5.886205291005291,2.677248677248677,2.492063492063492,161.35638617919054,44.50915942857142,1.2188563436598678,5.967837037037037,2.2655790711346264,7.4502539259259235,156.13350176129308,12.129032258064516,5.862611827956989,2.4623655913978495,2.4193548387096775,166.04764764920913,41.63819772580645,1.1050324258362578,5.923095161290322,2.2749402628434874,7.466784193548387,141.69087161373977,12.720496894409937,5.915627329192546,2.527950310559006,2.472049689440994,166.20491375373607,43.96033608695653,1.142937209715559,5.976075776397516,2.3542097998619727,7.504596621118016,148.1870779875712,7.036029226505416,0.08576966490299814,0.013522842696508382,0.585034013605442,3.385235575711766,1.5239348231954664,33.65892462585033,0.22044639837395,0.08397661879566634,0.5698468687886673,0.043800598639455755,50.204520684934145,0.6304005294765775,0.004148221853694742,-0.005155066636939477,0.2787423427082272,1.2226772411562759,-0.5817367400754664,2.9516428595796618,-0.02370839487646608,0.006277302076165161,-0.015732519898199484,-0.0003600925982334371,-1.4874113350522342,0.26336424361976,-0.007284492622703781,-0.0014413776439373477,0.045628007300481145,0.19367783246993497,0.11724467189255461,1.3496657585863685,0.025624195218150143,-0.005747027880709434,-0.020249071223390508,-0.004548319893811291,4.941705187996557,-0.22825826536022276,0.001752791032341247,0.0009175951578397719,-0.04798074649082537,0.021912150454365006,0.04691686002447392,-1.1106236909978666,-0.004818868028762852,0.000764280999834726,0.013050957462941734,0.0017407837736321014,-1.5931475615456143,-0.09039224978035743,0.004007931938847341,-0.00020621384284060347,-0.0695310939574448,-0.13677764331600994,-0.13067913112208804,-0.49534736036798,-0.018815745124355982,0.0035941353781966043,0.04146299770254589,0.00226941863170137,-3.0889416559026004,-0.33519931755368065,-0.004087729523093266,0.00016802348569993773,-0.07339111617574272,-0.4987638973619151,0.15569779446362642,-1.5724533079871532,0.0072117990998961466,-0.004529064206995034,-0.01748068824989837,-0.0009005009841500265,0.16612787404123114,-0.9705215419501132,-0.0037060552616107866,-0.0003349356342588893,-0.05542957923910305,-0.35500125976316455,-0.22701496898827317,-4.717528579743005,-0.04556957103116376,-0.004637641723355972,-0.024003154073700825,-0.0014085774754346283,-9.470267851873132,0.21452547566218844,-0.0028823974512146456,-0.0003248982693977657,0.03503767098237145,0.040434333829111095,-0.03602005251707833,1.0626133403554954,0.007432220665113891,-0.0019400681897609694,-0.07074766718050557,-0.002760795260039517,1.838106483012144,0.07705368781973344,-0.003389678705620689,0.000490387605115227,-0.039731834762890654,-0.20412545050226205,0.08865795488227564,0.42321288287488834,0.017730673503279393,-0.0030145562895044975,-0.007970588485886408,-0.0014878047914818418,2.8907404561105827,,,0.47526881720430114,1.153225806451613,0.45161290322580644,0.0,0.7016129032258065,-0.25,1.0212160735551958,0.008452103844602663,0.022323071586538144,0.8716850213139578,0.22278721040337857,0.2659933813124412,1.8929010948691536,0.4887805917158198,2.083654136869038,1.6088048367279846,0.41822593084023696,0.05662336930081631,0.0,0.47484930014105325,6.670853327682554,1254.0,373.67939999999993,202.0,372.0,10413.32107359847,4927.997247000002,89.06441695516797,378.22319999999985,172.69444444444446,470.52476399999983,12835.361280068142,1562.0,422.25,264.0,402.0,9986.158213511058,5872.174119000004,115.98618159600005,431.32700000000006,179.6111111111111,516.2125159999997,16701.048569788174,2331.0,765.5717999999998,449.0,579.0,19719.040146944644,8558.208278000004,180.95935472473502,776.6636999999997,297.74999999999994,946.1937279999996,25405.20085763256,2665.0,985.5596999999998,525.0,604.0,26131.54844604648,9551.102729999999,224.99777586637595,1000.1388999999998,369.49999999999983,1230.9444559999995,30317.567238961856,2722.0,1141.2608,546.0,554.0,31316.259629488814,9551.257648,240.83761190880904,1156.7847999999997,430.08333333333337,1440.4666079999993,31481.39166576276,2604.0,1164.9209000000003,528.0,480.0,32414.972446196356,9012.077608999996,238.795952305054,1178.8428,442.86111111111114,1473.5864999999994,30974.552812318583,2464.0,1112.4928,506.0,471.0,30496.35698786701,8412.231131999999,230.36384895171503,1127.9212,428.1944444444444,1408.0979919999995,29509.23183288439,2256.0,1090.4458,458.0,450.0,30884.8624627529,7744.704776999999,205.53603120554396,1101.6957,423.1388888888887,1388.82186,26354.502120155597,2048.0,952.4159999999999,407.0,398.0,26758.991114351506,7077.614110000001,184.012890764205,962.1482000000001,379.0277777777776,1208.2400560000005,23858.119555998965,443.2698412698412,5.403488888888883,0.8519390898800281,36.85714285714285,213.26984126984127,96.00789386131439,2120.512251428571,13.88812309755885,5.29052698412698,35.90035273368604,2.7594377142857125,3162.884803150851,42.23683547493069,0.2779308641975477,-0.3453894646749449,18.67573696145122,81.91937515747048,-38.976361585056246,197.76007159183735,-1.5884624567232275,0.4205792391030658,-1.0540788331793653,-0.024126204081640283,-99.65655944849969,32.39380196523048,-0.895992592592565,-0.17728945020429376,5.612244897959181,23.822373393802003,14.421094642784217,166.00888830612334,3.1517760118324674,-0.7068844293272604,-2.4906357604770326,-0.5594433469387888,607.8297381235765,-37.20609725371631,0.28570493827162324,0.1495680107278828,-7.820861678004536,3.5716805240614957,7.6474481839892485,-181.03166163265226,-0.7854754886883448,0.12457780297306033,2.1273060664595027,0.28374775510203254,-259.6830525319351,-17.445704207608983,0.7735308641975369,-0.03979927166823647,-13.419501133786847,-26.39808515998992,-25.22107230656299,-95.60204055102014,-3.631438809000705,0.6936681279919447,8.002358556591357,0.4379977959183644,-596.1657395892018,-66.03426555807509,-0.8052827160493734,0.033100626682887734,-14.458049886621316,-98.25648778029728,30.6724655093344,-309.7733016734692,1.4207244226795408,-0.8922256487780218,-3.443695585229979,-0.17739869387755522,32.72719118612253,-183.4285714285714,-0.7004444444444387,-0.06330283487493008,-10.476190476190476,-67.0952380952381,-42.90582913878363,-891.612901571428,-8.612648924889951,-0.8765142857142787,-4.536596119929456,-0.26622114285714477,-1789.880624004022,39.90173847316705,-0.5361259259259241,-0.060431078107984426,6.517006802721089,7.520786092214664,-6.699729768176569,197.64608130612214,1.3823930437111838,-0.3608526832955403,-13.159066095574035,-0.5135079183673502,341.8878058402588,12.405643738977084,-0.5457382716049309,0.07895240442355156,-6.396825396825395,-32.86419753086419,14.273930736046378,68.13727414285702,2.8546384340279825,-0.4853435626102241,-1.2832647462277116,-0.23953657142857654,465.4092134338038,0.6894086529437804,0.5979325188227745,0.43291995266258326,0.3237251852800395,0.2707232130421601,0.17804255928709145,0.16942981517351083,0.0968310829079778,0.10765473407481616,0.051653770844421805,0.07022705211204881,0.02958527699689788,0.045021664916691066,0.015853774903105456,0.028275066083350665,0.008492531280013295,8.006078233963065,5.716420287382453,3.5122054294248612,2.2126847821775866,0.39173344506342794,-0.4459569583374062,3.300466572731915,0.9877821289111524,5.083761011121387,0.9960191279200257,14.562639501046888,10.980978861613682,16.002045504936653,11.730389584248236,1.970962400578258,0.788067032185851,3.453733209387271,2.2614660102313016,6.002697871973954,1.2418618414354357,3.667444233363742,2.4567047635334105,20.86611111276283,14.708156583911343,0.23267073809698305,0.5556116583401459,0.7808095217468148,0.8462745805558667,0.8616121778660044,0.8616121778660044,1.2559865100291288,1055.404182275166,0.0,3.0,6.0,0.0,8.0,4.0,1.0,0.0,0.0,4.5325218257402335,2.5272352416370154,1.1288796107740264,0.7223773810210625,0.6271392857829658,0.6271392857829658,346.4525123710199,1642.4097976004866,46.54274768506671,26.069996787309318,49.66872675026811,,15.0,787.0,0.0,5.106527394840706,6.606881964512918,12.586597235060536,61.87356485780199,17.678201109471466,0.0,18.3295777085363,51.394868969552434,9.967957041894417,14.733333333333336,35.75,14.0,0.0,21.75,0.0,0.024731182795698838,-7.75,0.1012075941487709,0.033847937957527274,-0.06735965619124362,0.015692204301075208,0.12150670241286832,0.0,0.5470899470899468,0.8021505376344084,0.44588235294117595,0.5132420091324196,0.7864583333333331,31.657698280211072,0.26201521918268256,0.6920152191826825,27.02223566073269,6.9064035225047355,8.245794820685678,58.67993394094376,15.152198343190413,0.5924932975871317,0.09049773755656107,0.0,0.3461538461538461,0.5,0.2405745131442308,-0.5917388232316596,-0.029459588609012984,-0.009392679733835868,-0.03287437906842554,0.7594254868557692,1.867951588266321,0.04024332620127461,0.02965002521057653,0.04151003529480714,-4.231551381124746,0.8809700690844996,0.9143633567870504,1.493933088074643,0.6527825986347334,0.61613486600934,1.6699584079757446,0.8853124675260008,1.2383038483798863,0.8718280550472213,0.913621570612219,0.9890713250341986,1.0962414975040957,0.9768132852853274,1.2720543798009862,1.4827188434314298,1.2376945862481883,1.1333022313551508,1.107750421053391,0.9721252299120036,0.8757968644945895,1.2169195144021512,0.8615511718232808,1.2894002603853205,0.8774167411495735,1.0151276225642794,0.9633747324401559,1.034633395526412,1.3054881818614166,1.0763460312647828,1.090973994882653,1.0163767066516622,1.029947770231945,0.9658589934076054,0.6190780200946584,0.8985234728967278,1.0267063270459076,0.9928571402065935,0.9126997011952089,0.9744685312031895,1.2115114270795682,1.076988278339686,1.12072892874897,0.995329965458588,1.0788595721548937,0.9164850937757935,0.7368593840342833,0.8791954405909888,1.050954877100184,1.043342430375274,1.1063069401651868,1.0541791419612918,1.1442175264628343,1.2078547216886826,0.9095817833350008,1.04136629783396,0.9349799620238233,1.1011305548925179,1.0447975683993669,1.0794965646709636,0.9668162345037519,1.1167370908830483,1.021768808198975,1.003813203429583,1.0813953488372097,1.0913218219708247,1.160864165510885,1.1192775089147207,1.2141137776290123,1.0323840275160876,1.1235415489671106,1.0286807452652424,1.1852778980330414,0.9869834562773044,1.2428760019246832,1.1413958287870287,0.9043927648578812,1.0206162548377493,0.9467289652393007,0.9823063687072339,0.9213890041659227,1.2075545629324895,1.791352460023091,1.382964113876064,0.9222114590303405,1.0099284132910271,1.2671255365849186,1.2561466558330945,1.086619480957196,1.1348583299895156,0.8980592299193431,1.00453597420883,0.8678817052747072,1.2341370572943275,1.5485217647617948,1.3530035752715417,0.8954674594807006,5.0,0.1272339557188042,3.7777777777777795,2.666666666666667,1.8761111111111113,1.2055555555555555,0.7323809523809524,0.54343820861678,0.4250755857898715,0.20500771604938275,6337.19962516094,7300.5995610492955,3068.104379712554,2744.593253260863,16.416912832325714,0.47083153128064703,8.687312624580894,0.8897573440460504,1.0,0.5,1.4447580977596834,3.4500446818629014,4.84840031272589,5.254902542478854,5.350140637716951,5.350140637716951,0.14285714285714285,0.005089358228752169,0.07555555555555558,0.049382716049382706,0.03607905982905984,0.024603174603174603,0.016645021645021647,0.013254590454067808,0.011186199626049248,0.006406491126543211,0.3810593099747496,22.775510204081634,10.092,4.665740924419758,183.48733151117335,1.0,4.385876641756004,178.9688287726498,,142.13455027817736,138.29883753261555,135.05316174698885,142.16742701759443,201.55402505828886,140.50513300898885,142.36580008982992,183.17438935465884,0.08959606465274428,0.04836467366855409,-0.3812117579590364,0.47645493462917915,0.3611793666380812,-0.3817333466110121,0.08769272614588453,-0.10754720898750544,0.07475059327453065,-0.027608329114174754,-0.008221179833580271,-0.029627039851385158,0.037430805805587185,-0.08493087423090942,-0.10658836135907382,0.07799205899035733,0.05721251243474039,0.07693548969942811,0.04009830300846314,0.11623775850800262,-0.06843604759430982,-0.03553423267277801,-0.10384150068931128,0.0984314782927409,-0.03244134696034965,0.020436025188201208,0.06785519719730942,-0.0820136015598992,0.0064728583770002025,0.030786657874315247,-0.03299641041249721,-0.02185959065018816,0.00910111660597327,0.022902569405504263,0.03974337857711371,-0.031733149521407565,-0.012847054335681396,0.04672901477906136,-0.015249296872605653,-0.11884966060167894,-0.040404172843200616,-0.08575112867889795,-0.01471667220133198,-0.08535292598629012,0.042799238999392544,0.07276164874027377,0.05181250261856167,-0.061527161573510646,-0.04764041006125327,-0.04765938549155246,0.012425160113954564,-0.12544760555621143,-0.1473350631608694,0.10216827655211073,-0.046717277080786365,0.032714524497073204,-0.05393244300553761,-0.030676115299286197,-0.020559102206855494,0.003309022211043325,-0.13793597364463223,-0.04320939420484129,-0.024768138014751154,-0.0947459086993971,-0.10486752009526647,-0.14896632423705383,-0.14015684197230424,-0.20671497183575074,-0.05522539237547035,-0.042122112778692135,-0.03215886355867694,-0.18863376689332803,0.030489565741718325,-0.03360625757923288,-0.02402588543617792,0.059889972493123306,0.011944319065774185,-0.02363621591214091,0.03157003238123061,0.03371441184766551,-0.023102480399712015,-0.12415206795975738,-0.06303099377168288,0.03661236992077769,0.010951302977745544,-0.03952071760399522,0.03626364782323807,-0.06791371755982474,-0.06029874315595996,0.058176999129380735,0.01257357112799312,0.08043076972027598,-0.03589756687917596,-0.01398724626289448,-0.033967681668661515,0.05757928602190726,19.16275344719629,24.251967128658233,6.50517800828668,12.914377351008849,32.40553017431593,37.71594366832466,38.47499950321724,38.570999503217244,38.570999503217244,64.59327824294017,49.87294993856752,12.965003856047346,1.7553244483253057,0.0,14.72032830437265,8924.377949851565,8149.818835947505,1321.9035661926991,227.0,50.0,71.0,99.0,129.0,139.0,163.0,190.0,211.0,420.2637596440009,35.0,5.14166355650266,6.023447592961033,6.926577033222725,7.826842098158293,8.736328721332908,9.643226075660339,10.55552623920546,11.465991077781014,12.380147793970153,0.5978835978835977,0.9671111111111113,1.1364833325791743,0.5557881465799209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6541143997718849,0.9541238717709305,0.9923004890229947,0.6020924660521652,6.0,2.0,0.0,0.0,0.0,1.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,9.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,14.906346856541662,11.465039998602755,0.0,0.0,0.0,14.28458285805948,4.9839785209472085,0.0,0.0,12.13273413692322,57.120361531214236,38.92062560117595,29.730506778206262,160.63888999771228,-395.1219374410519,-19.671059714891417,-6.271776784778602,-21.951218746725107,507.0914023687322,1247.2878601594348,26.87168797017529,19.798220002530716,27.717508003543,0.4666666666666667,0.9045153421252594,0.1585788182809988,160.58901064312803,0.08562299267062427,169.38721493703807,0.09548465787474061,8.0,0.14285714285714285,0.24170828809264208,0.5771930921787537,0.8111382392623456,0.879146134986751,0.8950794853496249,0.8950794853496249,2.482800000000001,,1.1071428571428574,1.399720800372266,1.5246316986241886,1.104266649991819,-4.19138517343006,1.225826193390453,1.090072758891449,-2.3149422475185983,122.20780000000006,5.106527394840706,0.0,24.168471109857165,0.0,38.45594406835148,45.17427931985515,59.1739143901635,0.0,0.0,4.2626798770413155,0.0,5.602118820879701,2.3978952727983707,7.152268856032539,4.844187086458591,8.798303718484979,7.050122520269059,10.494075844768336,37.66666666666666,12.401561755964124,9.651379219982768,0.0,0.0,0.0,0.9083771888384986,5.535018239371075,2.1543254755605945,60.92800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.59844995248798,4.899909730850478,5.817862777835028,0.0,69.54936809370255,19.572459993351504,0.0,41.528719551242354,36.52867891392113,0.0,5.647177220767728,0.0,35.01465323453502,41.20920718562875,41.44442462699688,357.9376575452996,,284.3183879799034,276.6757000629236,270.2587081994752,284.3840278661128,403.66178778903594,281.06916021309223,284.77956822184694,366.6474809348039,41.44442462699688,357.93765754529966,,283.47086138491113,275.62382411184416,269.1275298424314,283.5385680147403,407.2994352900077,280.1418734152625,283.94374201622077,368.66372095683624,4.930499528699247,266.1854554434839,,211.43549129842125,205.6789338038472,200.663664688296,211.4844137052812,301.02094633250005,208.98300823126533,211.78333799616064,273.47225317027585,1.3369169234515121,11.546376049848375,,9.171560902577529,8.925022582674956,8.718022845144363,9.173678318261702,13.021347993194707,9.066747103648137,9.186437684575708,11.827338094671095,2.5188021068685056,178.9688287726498,,142.13455027817736,138.29883753261555,135.05316174698885,142.16742701759443,201.55402505828886,140.50513300898885,142.36580008982992,183.17438935465884,60.10980392156862,0.0,4.320927649093095,0.0,0.0,0.0,10.332779732276036,62.51493080844867,8.129617243634684,0.0,0.0,0.0,0.2901918362488345,7.109154992363624,0.0,0.0,0.0,37.93182536128641,603.972293847234,91.01976015886005,217.3528149573628,305.44921970173107,331.0588601761678,337.0588601761679,337.0588601761679,1345.0,144.6997501887946,63.757998519210474,81.60165199673288,60.14,60.14,0.875,8.931648495503154,6.129283016944966,4.465495292226321,5.486218167513679,,5.478171747324826,5.478113554256581,5.477680529124437,5.4781712978754795,5.474637767039462,5.4781449688243296,5.478174106039713,5.47671720311394,0.14404823523310714,0.17697477959721547,,0.17671521765563955,0.1767133404598897,0.17669937190723992,0.17671520315727354,0.17660121829159553,0.17671435383304288,0.17671529374321654,0.17666829687464322,2.6277822473778016,2.833641271264213,,2.8321735340356295,2.8321629112621904,2.8320838617420785,2.8321734519919506,2.8315282237335806,2.8321686458051794,2.8321739646016084,2.8319079824219138,330.37000000000126,372.7175954365427,208.46773933423916,,209.6125832351949,209.64344139053495,209.80492652029412,209.61270204443161,209.88979498076077,209.6302905045348,209.61040001474422,209.59990380678965,12.023148239888474,6.724765784975457,,6.761696233393384,6.762691657759192,6.767900855493359,6.761700065949407,6.770638547766477,6.762267435630155,6.761625806927233,6.76128721957386,7.052223127585139,6.471186413344714,,6.476663096655048,6.476810301005532,6.477580289161843,6.476663663458821,6.477984718654403,6.476747569262501,6.476652681097991,6.47660260500081,2.1543254755605945,16.760534212346393,10.332779732276036,5.317717893179134,1.1256775350304393,10.791569719591662,5.295339905054462,4.734461211201519,4.320927649093095,385.4933874852253,107.26345298359354,-263.8348868079096,-13.134962454582233,-4.187855346157295,-14.657493711550533,338.60029036018386,832.8518875293763,17.943040064705016,13.219871230625024,18.507819722875034,2683.0,54.0,1.8464862267199238,1.1053689067141463,0.0,0.0,0.5021821435332832,0.21381371308973487,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.025,0.5147770179839392,0.2063532803882444,0.8999272514303892,0.3025054727757649,21.371668241257193,18.535908083506012,15.152198343190415,11.330381484801384,13.536160652108007,8.902127964354573,12.029516877319269,6.875006886466424,10.6578186734068,5.113723313597759,9.059289722454297,3.8165007325998266,6.258011423420058,2.2036747115316584,4.6088357715861585,1.3842825986421672,4.900530211101466,2.484266683732269,8.661148070142238,3.5662118776562957,14.24462793740766,5.038364631666276,106.591521979612,46.59126877748635,29.335288858298757,26.21916263417479,25.535643370523715,25.535643370523715,170.0,206.0,68.81937599999998,41.22262400000003,0.42857142857142855,295.07,8.472222222222221,6.805555555555554,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,15.0,16.0,63.0,0.0,2.0,67.0,16.0,0.0,7.0,60.0,16.0,35.0,51.0,0.0,0.0,0.0,24.0,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,7.0,1.0,4.0,31.0,7.0,0.0,6.0,1.0,0.0,5.0,5.0,0.0,0.0,0.0,3.0,3.0,3.784189633918261,7.631681693937716,4.378896741664954,5.0081321638781375,5.637241950847957,6.154858094016418,6.434170244152703,6.824551982948742,7.1962856243611855,7.3656596392007465 +3278,C=C(CC)C(=O)c1ccc(OCC(=O)O)c(Cl)c1Cl,0,42.38709677419355,6.591864516129033,3.2903225806451615,8.942254082039028,159.53104684854156,174.9968820967743,1.731247447038323,6.7715516129032265,6.67148865977354,8.264722258064518,250.07192518051798,30.64516129032258,6.487096774193548,3.903225806451613,8.03942652329749,143.54258144745322,119.12497603225803,1.9428533998709672,6.686580645161292,3.692187707420683,7.984046193548389,285.93414702551183,28.6,6.4347999999999965,3.48,6.688888888888886,150.95776830535385,111.12074388000002,1.7035901272218796,6.6088119999999995,3.9716460905349815,8.009215200000002,245.98066274375594,33.18032786885246,6.596211475409834,3.0327868852459017,5.594616474397896,155.01297443000234,130.67776232786883,1.6483450514744749,6.7927573770491785,4.233490996224588,8.263118836065576,232.9876009110686,28.262295081967213,6.452081967213115,2.737704918032787,4.193078324225865,155.72008913520693,108.0677641311475,1.5722173987064583,6.662668852459015,3.6782702556837354,8.16213406557377,217.8592942289484,25.89830508474576,6.274644067796611,2.542372881355932,3.856873822975518,156.53736474756528,97.65354528813556,1.5384956042846094,6.498769491525425,3.4195089628234645,8.01948,206.41691031159388,26.962962962962962,6.37788888888889,2.2777777777777777,3.695473251028807,158.45939495997467,100.72165696296295,1.4646160122424812,6.629433333333337,3.6018899557994226,8.18913251851852,192.6906263698005,22.09090909090909,6.268477272727275,2.090909090909091,2.666666666666666,163.7175315081252,78.67247668181818,1.2536180404725454,6.517915909090909,3.0714786756453436,8.164562409090907,160.0385913763782,16.88888888888889,6.563481481481479,2.2962962962962963,3.6296296296296298,165.5046757808021,56.216720555555575,1.1558081613109625,6.6974629629629625,3.601623228166438,8.340464444444443,158.77591220288355,17.063475546305927,0.16972757544224762,0.03150672480366107,0.6888657648283034,4.470317698899038,1.2805910456268998,79.37687353798127,0.2850847902284828,0.17328220603537967,2.6897870794232164,0.1389122434963579,50.28126775634951,-0.19771071800208093,-0.01188345473465141,-0.016464281684761946,0.2611862643080125,1.3542606081627935,-0.022876600543451243,-0.8410945140478563,0.0019134378064517624,-0.01112268470343394,-0.2879245299178238,-0.01063711134235173,0.40037303747941194,1.9907180020811652,0.017698747138397503,-0.0030797846847397457,-0.015317377731529573,0.5826492465410259,0.013013866597968984,9.481224961373572,0.03761573652356497,0.017784697190426624,0.3887345119942979,0.007352110052029118,7.384852247870639,4.139062793196977,0.01752007130550484,0.006027839843863108,-0.024138107504136707,-0.27195769602643155,0.07174086597289053,19.259771968100186,0.059727860521580134,0.022787862711315023,0.017654438170569414,0.020334016154620372,6.253054605441124,-0.11900172293205472,-0.019840954606710905,-0.0028422549636995084,-0.05480970983094792,-0.9031150299865154,-0.047337735527464904,-0.5375309827194984,-0.0013456297464700963,-0.013816473618669079,-0.44528670217197186,-0.008264698282185555,-1.598328166775027,-1.2329670717296606,-0.008548679870897176,-0.0027271336161579043,-0.1049401224007478,-0.2653753773173868,-0.11999477533759395,-5.6819518037002394,-0.02109566041482287,-0.009475699747790946,-0.22389152915596536,-0.01006174486322511,-2.820064134080511,-2.881874590511428,0.018304443673642437,0.003647161109452712,-0.1088179751030948,0.08718484546133222,-0.2856626453426773,-13.751895248853428,-0.09111997239564526,0.012642823833198443,0.03986322740233256,0.011943938104597832,-13.312601137967077,-5.424179358622647,0.0006400198656702481,0.0023759601505747353,-0.036373096206603006,0.09495872121609222,-0.17993269552215077,-25.62682517727745,-0.13243796064115437,-0.005834552076435512,-0.06544194213503014,-0.0049070484816952,-13.959890500241238,-7.73731067175396,-0.07204848344702665,-0.012851585338187902,-0.1201680348402513,-0.9141721467359624,0.13910097633613663,-35.8237551508845,-0.0464796631844686,-0.0843909276602305,-0.45127503265761026,-0.06540404994797079,-7.87824708332243,,,0.48746867167919794,1.1973684210526316,0.6052631578947368,0.07894736842105263,0.5921052631578947,0.013157894736842105,0.7559314600714933,0.02816300247699014,0.032689318266463825,0.9232884321027955,0.24486353578236283,0.22245838607607313,1.6792198921742887,0.46732192185843596,1.9352246244817877,1.3724059599172513,0.0,0.37635886369689836,0.1864598008676375,0.5628186645645359,9.742298845935496,1314.0,204.34780000000003,102.0,277.2098765432099,4945.462452304789,5424.903345000003,53.668670858188015,209.9181,206.81614845297975,256.20639000000006,7752.229680596058,950.0,201.09999999999997,121.0,249.22222222222217,4449.82002487105,3692.874256999999,60.22845539599998,207.28400000000005,114.45781893004117,247.50543200000007,8863.958557790867,1430.0,321.73999999999984,174.0,334.44444444444434,7547.888415267693,5556.037194000001,85.17950636109398,330.44059999999996,198.58230452674908,400.46076000000005,12299.033137187796,2024.0,402.3688999999999,185.0,341.27160493827165,9455.791440230143,7971.343501999999,100.54904813994297,414.3581999999999,258.24295076969986,504.0502490000002,14212.243655575185,1724.0,393.577,167.0,255.77777777777774,9498.925437247623,6592.133611999998,95.90526132109396,406.42279999999994,224.37448559670787,497.890178,13289.416947965852,1528.0,370.20400000000006,150.0,227.55555555555557,9235.704520106352,5761.559171999998,90.77124065279196,383.4274000000001,201.7510288065844,473.14932,12178.597708384039,1456.0,344.40600000000006,123.0,199.55555555555557,8556.807327838633,5438.969475999999,79.08926466109398,357.98940000000016,194.50205761316883,442.213156,10405.293823969227,972.0,275.8130000000001,92.0,117.33333333333331,7203.571386357509,3461.588974,55.159193780791995,286.7883,135.14506172839512,359.24074599999994,7041.698020560641,456.0,177.21399999999994,62.0,98.0,4468.626246081657,1517.8514550000004,31.20682035539599,180.83149999999998,97.24382716049384,225.19253999999995,4286.9496294778555,528.9677419354838,5.261554838709676,0.976708468913493,21.354838709677406,138.57984866587017,39.698322414433896,2460.6830796774193,8.837628497082967,5.37174838709677,83.38339946211971,4.306279548387095,1558.7193004468347,-6.129032258064509,-0.36838709677419373,-0.5103927322276203,8.096774193548388,41.982078853046595,-0.7091746168469886,-26.073929935483545,0.05931657200000463,-0.3448032258064522,-8.925660427452538,-0.3297504516129036,12.41156416186177,99.53590010405826,0.8849373569198751,-0.1539892342369873,-0.7658688865764787,29.132462327051293,0.6506933298984492,474.0612480686786,1.8807868261782485,0.8892348595213313,19.436725599714897,0.3676055026014559,369.24261239353194,252.48283038501557,1.0687243496357952,0.3676982304756496,-1.4724245577523392,-16.589419457612326,4.376192824346322,1174.8460900541113,3.643399491816388,1.3900596253902164,1.0769207284047342,1.2403749854318427,381.4363309319085,-7.259105098855338,-1.2102982310093653,-0.17337755278567002,-3.343392299687823,-55.090016829177436,-2.887601867175359,-32.789389945889404,-0.08208341453467588,-0.8428048907388138,-27.162488832490283,-0.5041465952133188,-97.49801817327665,-72.74505723204997,-0.5043721123829333,-0.16090088335331634,-6.19146722164412,-15.657147261725822,-7.079691744918043,-335.23515641831415,-1.2446439644745493,-0.5590662851196658,-13.209600220201956,-0.5936429469302815,-166.38378391075014,-155.62122788761712,0.9884399583766916,0.19694669991044644,-5.876170655567119,4.70798165491194,-15.425782848504575,-742.6023434380851,-4.920478509364844,0.6827124869927159,2.152614279725958,0.6449726576482829,-718.8804614502221,-238.66389177939647,0.028160874089490917,0.10454224662528835,-1.6004162330905323,4.178183733508058,-7.917038602974634,-1127.5803078002077,-5.827270268210793,-0.25672029136316254,-2.8794454539413263,-0.2159101331945888,-614.2351820106145,-208.90738813735692,-1.9453090530697197,-0.34699280413107336,-3.2445369406867854,-24.682647961870984,3.755726361075689,-967.2413890738815,-1.254950905980652,-2.2785550468262237,-12.184425881755477,-1.7659093485952115,-212.7126712497056,0.7672097784347433,0.6166192729939898,0.46732192185843596,0.32563149171355776,0.3052063114711367,0.17168451005013863,0.20158514620561233,0.10172183753702702,0.12118987382383539,0.050582169218507916,0.0755251657415076,0.026901742432068103,0.05149233103618015,0.014923760602848021,0.033410556811475894,0.00783869687406335,17.002139160560954,5.691142841275346,3.55552148805934,2.1846400923992593,0.4954993299640419,-0.5097080237959829,3.265482001481726,0.9725376271609625,6.023442045283211,0.7729079748138387,13.643262262394257,10.950177425980371,35.45153053672956,11.702938140880569,2.2171753499121425,0.7412582389648112,3.5016457235064498,2.236215558167221,7.00937036188566,1.2763368572846068,3.71457441438093,2.4327185007560184,22.457518797418807,14.700615141461881,0.3248116118285583,0.7302394623320867,0.8596357205077296,0.8844045876053505,0.8844045876053505,0.8844045876053505,2.5586388718494475,537.6899088554333,0.0,2.0,2.0,0.0,6.0,1.0,2.0,0.0,0.0,3.2621053659512276,1.1500478856259106,0.4759641129730152,0.3469318549084983,0.3469318549084983,0.3469318549084983,-3.8412526236775193,913.7322902953069,61.725560047555916,29.475235170816347,62.23026311566922,,11.0,303.0,12.576187252464766,9.589074368143644,27.141474898828495,11.993926152995277,0.0,12.13273413692322,6.923737199690624,0.0,6.578935683598497,33.04527012910579,9.261904761904761,22.75,11.5,1.5,11.25,0.0,0.012531328320802055,0.25,0.2549923195084485,0.0796565441726731,-0.17533577533577538,0.03167919799498742,0.19185234899328862,0.0,0.6883256528417822,0.9335839598997493,0.4333333333333337,0.6086691086691091,0.9019047619047619,14.362697741358371,0.5350970470628127,0.6210970470628127,17.542480209953116,4.652407179864894,4.226709335445389,31.905177951311487,8.879116515310283,0.5221476510067113,0.37017994858611825,0.0,0.37789203084832906,0.23076923076923078,0.5040101603168434,-0.961561629893583,-0.07994813560283405,-0.031018117093341385,-0.08013013582446525,0.4959898396831565,0.9462602864128307,0.04893138141298217,0.030524525368155826,0.04980317296909634,-4.0205708697999665,0.5360409806073912,0.7263092842665175,1.4736886251508423,0.8157099697885203,0.4705523975929236,1.1428284266124826,0.5377638044674983,0.8418694802459243,0.6836663980370424,0.7226978048145835,0.7386724350469555,0.8502899501621239,0.5728137577753385,0.6987820354831946,1.0230432368045852,1.222205438066466,0.7934722134412341,1.0431990208255535,0.5724498498135165,0.7622084962281439,0.6739872643135356,0.5172729020480817,0.733730071282399,0.7744931432886295,0.68754386280614,0.8806565916085755,0.7674096890377758,1.1284730820662678,1.050994294184595,0.9429238696827722,0.6864681743635529,0.7499139695711058,0.8351800430483391,0.9214982486370301,0.8481912628948209,0.7986016958930006,1.009234432827674,1.026130326322057,0.8966403070300223,1.1054430191669562,1.1656099800936701,1.0182033405496234,1.008020853344533,0.9866885365353989,1.004746595094405,1.1358547240443677,1.006177949179596,0.9820846500884818,1.1799444330747242,0.8325985086451608,0.7139093034960465,1.1191049208868868,0.9373625518290719,1.0550988449054355,1.1785702025708042,1.0956753904344707,0.9040139714818064,0.971436083357948,0.9306982754182017,1.057657752409391,1.496625604748547,0.7430629892713345,0.6549055261123404,1.0536253776435052,0.856201421178977,1.140275715909505,1.4973451725602023,1.3993810888723444,0.8741980978673908,0.8080460050364503,0.8880919548417681,1.2713618372648932,1.8200113095832091,0.9013862493508213,0.7590876505731358,0.9418772315298001,0.9200168168259176,1.0025370934286122,1.8205936152810858,1.5922210642788692,1.064591171624414,0.8476331280838332,1.0740221592959993,1.337897173583549,1.558591156103048,1.7176587211570125,1.809871489037944,1.09264853977845,1.396786988555339,0.7925247173483325,1.5540848593468997,1.1517109929830938,1.7390778971197922,1.2013536295045297,1.719191170612848,1.1149369149742492,4.5,0.03305785123966942,3.1111111111111125,1.625,1.2844444444444445,0.7708333333333335,0.42612244897959184,0.17708333333333331,0.09876543209876541,0.08000000000000002,4293.300939874186,4764.738566319113,1813.0134289016962,1686.181057892314,12.542621034731345,0.45399083793131517,6.8483860013187225,0.8314710987838804,1.0,0.23076923076923078,1.6920909444356471,3.8041484247609643,4.47823219741386,4.607264455478377,4.607264455478377,4.607264455478377,0.23684210526315788,0.006611570247933884,0.1196581196581197,0.05603448275862069,0.05137777777777778,0.035037878787878785,0.0236734693877551,0.016098484848484848,0.014109347442680773,0.01142857142857143,0.570871807600981,17.05263157894737,7.695266272189349,4.5,120.13375052364273,1.0,3.826141794482501,81.82068660535757,,62.74515424391454,63.84444053359249,65.89827729979379,62.71483726048291,89.9139334364069,64.08071798150111,64.2139785200771,77.00067622979077,-0.011586778875472607,-0.07001487356245736,-0.522564049020062,0.3791540785498492,0.3029450476185002,-0.017864095350012574,-0.010596216209566361,0.0067118200340264625,-0.06418826813159904,-0.10704361401704882,-0.07657432544907837,0.007962667914809148,0.1166654470057324,0.1042773815172996,-0.09775007411693508,-0.022235649546827687,0.13033732405294646,0.010162390751059939,0.11944568409886884,0.13194578529923545,0.10263429579604645,0.1445224103305813,0.05292629265052422,0.14687084430042202,0.24256856593866905,0.10322466022303081,0.19131915111540493,-0.035040364518845,-0.060836324025339415,0.056021683282792716,0.24263706933335594,0.20950910946077098,0.13150722877259735,0.006563507686398411,0.14638030200090682,0.12436151442604566,-0.006974061210983327,-0.11689882775390315,-0.0902110575253839,-0.07956515279084742,-0.2020247979710563,-0.03696553688167577,-0.006771884035748695,-0.004720103606339832,-0.07973394346011568,-0.16554719352264,-0.05949582322023505,-0.03178774597570067,-0.07225767507819271,-0.05036706527282005,-0.0865571916202795,-0.1523375492856778,-0.059363874156582695,-0.09370265062165242,-0.07158195517717722,-0.07399784603701808,-0.05468362831124309,-0.08323764020904414,-0.07243238328008803,-0.05608578025012892,-0.16889141855601186,0.10784602104842297,0.115758179632461,-0.15796687926597305,0.019503053548700654,-0.22307093768786598,-0.17324813432306885,-0.3196241101554967,0.07296088919030215,0.0148202167031305,0.08598189622436692,-0.26476263889121937,-0.31788244686159073,0.0037708655414571955,0.07541120714326517,-0.052801428179071776,0.021242052044640792,-0.1405075384031493,-0.3228500195968943,-0.46455638876774596,-0.03367080908032905,-0.02432978529626336,-0.035324809089443986,-0.277636008858953,-0.4534428317816537,-0.4244948604214419,-0.407899755314921,-0.17444332550072747,-0.20449825008211547,0.10862248085456604,-0.45131224693226407,-0.1630380321139448,-0.4870143887884258,-0.16777351490378162,-0.47082998806858667,-0.1566835411051776,1.701901334924234,9.748047918843575,7.963811952022753,21.992276077695486,42.6773976579661,45.743777326606676,48.09609990725183,48.09609990725183,48.09609990725183,36.769267865153964,26.075713238427774,0.0,7.150818410241069,3.5427362164851126,10.693554626726181,3680.607091503856,2884.8307606498506,973.9012398297832,13.0,26.0,32.0,35.0,40.0,40.0,37.0,32.0,26.0,302.01126422400034,19.0,4.51085950651685,5.332718793265369,6.18826412308259,7.037905963447182,7.902117546276448,8.762958920766726,9.63187566026184,10.498663515870101,11.370220696727491,0.8387096774193551,1.0136774193548386,1.1171783826306123,0.8141327439094806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7200988217114163,1.007337128399747,1.0380847214717008,0.6868346782400869,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,2.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9.843390348640755,10.772145147025231,12.390126910877857,0.0,0.0,4.794537184071822,4.794537184071822,0.0,0.0,36.70455266375416,24.126660289918497,5.563451491696996,5.022633313741326,241.39064248198352,-460.53035811841414,-38.29036265116719,-14.85581800381981,-38.37752984320118,237.549389858306,453.20193217689274,23.435197396388723,14.61941716699654,23.852733272468033,0.45454545454545453,0.7772068955258578,0.2517487802187492,34.05184554378266,0.17885506942851778,41.20934828752867,0.22279310447414208,6.0,0.3157894736842105,0.34154701154817807,0.7678638847607346,0.9039270785505374,0.9299721219804861,0.9299721219804861,0.9299721219804861,3.6057000000000023,,2.2941176470588234,1.3760726905603229,0.9558585687040837,2.319431850950487,-3.861287149099727,1.4209596702973215,1.4135475461994935,-1.4294006527568839,73.35430000000004,19.432464716784395,0.0,0.0,0.0,13.344558822616634,6.606881964512918,39.89349246977063,0.0,5.749511833283905,3.6635616461296463,0.0,4.962844630259907,0.0,6.459904454377535,0.0,8.050384453067021,0.0,9.69393867348769,26.000000000000007,2.8491043083900225,0.0,0.0,0.0,0.0,0.0,0.38494834971025593,0.0,31.423999999999992,3.641988691673486,22.353996486935248,0.0,0.0,0.0,0.0,0.0,-1.0110570538668475,34.63252986154898,4.736862953800049,0.0,5.749511833283905,23.465959593670412,4.794537184071822,0.0,23.70254749838545,24.284774350590983,10.045266627482652,0.0,0.0,25.2381150611939,22.323063473053903,23.011414676515876,163.64137321071516,,125.24882241971763,127.54403131028388,131.69593790814508,125.18552379981315,181.0472207093716,128.01186126086566,128.27916256160688,154.45274213939956,23.011414676515876,163.64137321071513,,123.19619084077027,126.31280837662467,130.8406960308835,123.11024267001534,183.68915402191354,126.74047629270495,127.0144094939547,155.43075311233852,4.798519719524655,121.36329526030909,,93.44420901515346,94.24333350163292,97.29617835695234,93.42012926048302,137.17891536443113,94.70955453221353,94.93150405884856,114.76819444247955,1.2111270882376777,8.612703853195535,,6.592043285248296,6.712843753172836,6.931365153060267,6.588711778937534,9.528801089966926,6.737466382150824,6.75153487166352,8.129091691547345,2.399259859762326,81.82068660535757,,62.74515424391454,63.84444053359249,65.89827729979379,62.71483726048291,89.9139334364069,64.08071798150111,64.2139785200771,77.00067622979077,31.22745098039216,0.0,1.8056403084649837,11.930302028218692,0.0,0.0,8.515718563876932,32.18062636562273,-0.03268131870134028,0.0,4.950928524187453,0.0,0.0,0.0,0.0,0.0,0.0,21.291875025442696,372.23549567825035,52.45481927750506,117.92860116758989,138.82519811982965,142.82519811982968,142.82519811982968,142.82519811982968,319.0,109.2355847262146,106.7045366620391,51.8306338573218,63.60000000000001,63.60000000000001,0.8333333333333334,7.222725677608875,5.247927513443585,3.6721022947839024,4.277377393098425,,4.259601262367782,4.266545195478604,4.265080976702657,4.25932696860109,4.244736634448803,4.265678725447103,4.265415509042419,4.2569282904441454,0.1932685418307317,0.22512512595254872,,0.22418954012462008,0.22455501028834757,0.2244779461422451,0.22417510361058368,0.22340719128677913,0.2245094066024791,0.22449555310749572,0.22404885739179714,1.9426182165992287,2.095193949330946,,2.091029441689735,2.092658298214882,2.09231505326702,2.090965045380868,2.087533662656244,2.092455192894977,2.092393485358398,2.0904017277847156,205.32999999999979,135.6542311945533,92.04049606771069,,92.15952700728002,92.4900833029224,92.59818791579347,92.15331363593191,93.53166677845137,92.45571141559073,92.45361167828739,93.15269985113456,7.139696378660699,4.844236635142668,,4.850501421435791,4.867899121206442,4.873588837673341,4.850174401891153,4.92271930412902,4.8660900745047755,4.865979562015125,4.902773676375503,5.551963116789056,5.164082541022022,,5.165374950807327,5.1689553174076615,5.170123458689139,5.165307528794528,5.180153947249667,5.168583620524478,5.168560909530048,5.176093966709087,4.950928524187453,22.353996486935248,8.55907520282881,0.6373728426555814,-1.3068381857640508,2.8491043083900225,0.5040147949292971,4.910932886507832,0.0,259.91209808946866,115.61164211696445,-220.56642461091838,-18.33878752647143,-7.115045955190915,-18.380535384243203,113.77191246115312,217.0565480534827,11.224054198927485,7.001824130757506,11.424028844920139,744.0,29.0,1.5240502502036257,0.6551484622492758,0.0,0.0,0.5005537597276803,0.19492756194415564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05555555555555555,0.020833333333333332,0.18246983613200962,0.06616739851081721,14.576985790260121,11.715766186885807,8.879116515310283,6.186998342557597,7.935364098249554,4.463797261303604,6.450724678579594,3.2550988011848645,4.241645583834239,1.770375922647777,3.0210066296603038,1.0760696972827242,2.059693241447206,0.5969504241139209,1.236190602024608,0.290031784340344,3.6224903339792833,1.544686588173401,4.824528021736482,1.7678370481567605,6.929772631929043,2.181433133890711,68.24197838596501,35.14294712803387,29.431980155239742,26.001300568984018,26.001300568984018,26.001300568984018,90.0,103.0,37.27951599999999,16.530483999999998,0.1935483870967742,19.06,9.027777777777779,4.388888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,31.0,0.0,0.0,31.0,6.0,3.0,6.0,25.0,9.0,19.0,22.0,0.0,0.0,0.0,13.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,1.0,0.0,19.0,6.0,0.0,0.0,4.0,0.0,1.0,6.0,0.0,0.0,2.0,0.0,1.0,3.258096538021482,4.593856426087818,3.7954891891721947,4.273187854639731,4.652769164787371,5.110857631897958,5.295187473539109,5.431672962471224,5.395330640718035,5.298942171316879 +6918686,CCCCN1C(=O)[C@@H]([C@H](O)C2CCCCC2)NC(=O)C12CCN(Cc1ccc(Oc3ccc(C(=O)O)cc3)cc1)CC2,1,20.729411764705883,6.072290588235295,3.1176470588235294,6.352941176470588,163.3188316618554,81.51532821176474,1.395779751864788,6.134457647058824,4.471650326797385,7.628778635294119,204.01112882010673,23.04494382022472,6.2758876404494375,3.9101123595505616,5.921348314606742,146.13715213314163,86.44827921348315,1.7626074232808986,6.418219101123592,2.854556803995006,7.708825168539324,254.5693439189742,18.939393939393938,6.150551515151516,3.478787878787879,4.63030303030303,153.7409234707754,69.37352555757576,1.49700004911263,6.258686666666666,2.7818181818181817,7.641529818181817,208.79071245348763,15.493827160493828,6.035011934156379,2.9176954732510287,3.4444444444444446,159.74143228555764,55.3116387037037,1.2683756848002055,6.115725925925926,2.6302583447645183,7.594052098765432,171.8960173201346,13.945054945054945,6.066717582417583,2.6043956043956045,2.9084249084249083,162.86471314320016,48.5361279157509,1.1597700543320075,6.129440659340661,2.8714896214896215,7.656337421245421,155.22641585361157,13.477941176470589,6.027437132352941,2.5330882352941178,2.6838235294117645,163.90290355787312,46.83630893749999,1.146678946939081,6.0865897058823535,2.932189542483661,7.627398073529411,152.25777695726475,13.237547892720306,5.992030651340997,2.5555555555555554,2.3984674329501914,162.09097806588633,45.49750978544062,1.180907653491348,6.059304214559389,2.677735206470838,7.585886743295019,154.5496371949716,12.148854961832061,5.908557251908396,2.4618320610687023,2.0763358778625953,162.84867812380585,41.10659054961832,1.1346777093970761,5.975456106870229,2.4966072943172177,7.523988732824429,146.4137028094767,11.92430278884462,5.878585657370519,2.3745019920318726,2.1235059760956174,163.63498829769813,40.4733102191235,1.1130568155788008,5.9424545816733065,2.478585657370518,7.5021236812749015,143.0965429516611,7.428373702422148,0.12385652595155705,0.0198919236203477,0.5951557093425606,3.6401384083045008,1.3906469805632784,35.3197975150173,0.22698730466453892,0.11696005536332173,1.7426758938869664,0.07727463529411763,50.274949907133816,0.28517553749854235,-0.0040908947552582104,-0.011170750095189051,0.20457991524435304,1.0835892850200228,-0.1333819848966522,1.3917100331651155,0.0017200430739041058,-0.002394040822673931,-0.06840200830277028,-0.004038921348314616,1.4609370490521232,0.1463143546188533,0.01159310684701696,0.00023755494978850672,-0.024389220929013255,0.4753696130858763,-0.10722706163175401,0.6007717546440169,-0.015143232521545532,0.010444130019922494,0.1928138070439108,0.007552509090909082,-2.164905232255237,0.26375895310920316,0.005635253278653538,0.001590681613988151,-0.04347330798695656,0.17225568513534684,-0.05363435147519253,1.2000298187517613,-0.011350069119542063,0.0058256284904666614,0.056076089759715717,0.00210839506172839,-0.723736507342924,-0.31391561149346614,-0.007398939224558544,-0.0012432672583616107,-0.03342332408076352,-0.18269389203645256,-0.03515291152904682,-1.4822454257692943,-0.00886593056517335,-0.00666531285093218,-0.05533330727967404,-0.004764468864468871,-1.8124589910598925,-0.064446366782007,-0.003902996539792349,-0.0008184155231342661,-0.01859861591695502,-0.24697231833910033,0.09853793527718568,-0.2617424660121111,0.01171147192283253,-0.0037420882352940887,-0.020994028738946548,-0.0017975441176470632,1.573146643186374,-0.6257142478357133,-0.0033385994246244548,0.0019840445665528423,-0.04568534648477377,-0.47358443039149406,0.016486414813231556,-2.977822261016851,-0.004784536606409688,-0.004653880019621076,-0.10457332207918846,-4.107279693487454e-06,-2.906401887594409,-0.6502416862569009,-0.015346121820439002,-0.0009666324688632069,-0.03498507620380887,-0.4286431231675428,-0.035853425414179345,-3.03844959189202,-0.006705799493195452,-0.014301101613883094,-0.1790202535137689,-0.009181282442748085,-2.3720260804920197,-0.23142033940363124,-0.009424165979679917,0.0006237249466339742,-0.013248045878768678,-0.0983057389817892,0.0014106000550739356,-1.0453350600372209,0.003326498132863851,-0.008531599773914744,-0.053265886856265814,-0.00609110756972111,0.12251803016537997,,,0.46904761904761905,1.0416666666666667,0.40476190476190477,0.011904761904761904,0.6369047619047619,-0.23214285714285715,1.2285077014388026,0.01458367141386141,0.024821766651956647,0.9029088493327067,0.1855784293741593,0.29779536498276726,2.1314165507715095,0.48337379435692657,2.0477149296735955,1.6330351464257946,0.15577538362510146,0.2589043996226995,0.0,0.414679783247801,6.791943365835308,1762.0,516.1447000000001,265.0,540.0,13882.100691257709,6928.802898000003,118.64127890850699,521.4289,380.0902777777777,648.4461840000001,17340.945949709072,2051.0,558.554,348.0,527.0,13006.206539849605,7693.89685,156.87206067199998,571.2214999999997,254.05555555555554,686.0854399999998,22656.671608788703,3125.0,1014.8410000000001,574.0,764.0,25367.252372677944,11446.631717,247.00500810358398,1032.6833,459.0,1260.8524199999997,34450.46755482546,3765.0,1466.5079,709.0,837.0,38817.16804539051,13440.728205,308.2152914064499,1486.1214,639.1527777777779,1845.35466,41770.73220879271,3807.0,1656.2139000000002,711.0,794.0,44462.06668809365,13250.362920999996,316.61722483263804,1673.3373000000004,783.9166666666666,2090.180116,42376.811528035956,3666.0,1639.4629,689.0,730.0,44581.58976774149,12739.476030999998,311.89667356743,1655.5524,797.5555555555558,2074.652276,41414.115332376015,3455.0,1563.92,667.0,626.0,42305.745275196336,11874.850054000002,308.21689756124186,1581.4784000000004,698.8888888888887,1979.91644,40337.45530788759,3183.0,1548.042,645.0,544.0,42666.353668437136,10769.926723999999,297.28555986203395,1565.5695,654.1111111111111,1971.2850480000004,38360.39013608289,2993.0,1475.5250000000003,596.0,533.0,41072.38206272223,10158.800864999997,279.377260710279,1491.5561,622.125,1883.0330440000002,35917.232280866934,631.4117647058825,10.52780470588235,1.6908135077295545,50.58823529411765,309.41176470588255,118.20499334787867,3002.1827887764707,19.293920896485808,9.941604705882346,148.12745098039215,6.568343999999998,4273.370742106375,25.380622837370268,-0.3640896332179807,-0.9941967584718255,18.20761245674742,96.43944636678204,-11.870996655802047,123.86219295169529,0.1530838335774654,-0.21306963321797986,-6.087778738946556,-0.3594640000000008,130.02339736563897,24.141868512110797,1.9128626297577984,0.03919656671510361,-4.024221453287187,78.43598615916959,-17.692465169239412,99.1273395162628,-2.498633366055013,1.7232814532872114,31.81427816224528,1.2461639999999985,-357.2093633221141,64.09342560553637,1.3693665467128098,0.3865356321991207,-10.564013840830444,41.85813148788928,-13.033147408471784,291.607245956678,-2.758066796048721,1.4156277231833987,13.626489811610918,0.5123399999999988,-175.86797128433054,-85.69896193771626,-2.0199104083044825,-0.33941196153271974,-9.12456747404844,-49.875432525951545,-9.596744847429783,-404.6530012350173,-2.4203990442923247,-1.8196304083044852,-15.105992887351013,-1.3007000000000017,-494.8013045593506,-17.529411764705905,-1.061615058823519,-0.2226090222925204,-5.058823529411765,-67.17647058823529,26.802318395394508,-71.19395075529422,3.1855203630104483,-1.017847999999992,-5.710375816993461,-0.4889320000000012,427.89588694669374,-163.31141868512117,-0.8713744498269826,0.5178356318702918,-11.923875432525953,-123.60553633217995,4.302954266253436,-777.2116101253981,-1.2487640542729286,-1.2146626851211006,-27.29363706266819,-0.0010720000000002256,-758.5708926621407,-170.36332179930804,-4.020683916955019,-0.2532577068421602,-9.166089965397925,-112.30449826989621,-9.393597458514988,-796.0737930757092,-1.7569194672172084,-3.7468886228373703,-46.90330642060745,-2.4054959999999985,-621.4708330889091,-58.08650519031144,-2.3654656608996594,0.15655496160512752,-3.325259515570938,-24.674740484429087,0.3540606138235578,-262.3791000693424,0.8349510313488266,-2.1414315432526005,-13.369737600922718,-1.5288679999999986,30.752025571510373,0.7069442666087165,0.582502110961102,0.4413412904998025,0.3355557815883985,0.2803871841315546,0.18563875734748803,0.17912523192834595,0.10587899367801872,0.1130357611297848,0.059816292785050525,0.07182230958627153,0.03469768327712817,0.04524431039930821,0.018842785537449485,0.028800119815793546,0.010941506226697258,8.03003118200916,5.693394770087953,3.556034237140913,2.192070026886893,0.4588961820415949,-0.49479127500890424,4.029824959235988,0.972551702696467,6.0248427273063525,0.9879296288152863,14.545217893453813,10.953951938188068,16.015850051944316,11.705170722658915,1.9934733922803323,0.74140028785919,3.502128957015141,2.2417769263028418,7.010471117381199,1.1542527620141692,3.715008477617238,2.4378208857462487,20.898859989010862,14.700405495016396,0.2218570066054141,0.5206917816123564,0.7198217645838314,0.8511041004110002,0.8715750085670746,0.8715750085670746,1.096593596912419,1233.4372181917213,0.0,3.0,5.0,0.0,10.0,11.0,2.0,2.0,0.0,4.941871210558936,2.965165882556562,1.6479788239366524,0.7795842647822404,0.644175147084276,0.644175147084276,284.512393245136,3266.1260292814286,90.36450798397074,38.42501210919327,76.43015848139427,,23.0,1603.0,23.654037757231457,19.49013894705617,23.2957169965614,43.97493613015756,50.63313763516563,18.55355575984923,12.13273413692322,29.165378004696915,17.140435534547432,9.843390348640755,19.7,43.75,17.0,0.5,26.75,0.0,0.03095238095238097,-9.75,0.12350947158524445,0.032892662219527136,-0.09061680936571731,0.035873015873016056,0.15434090909090903,0.0,0.565882352941175,0.838095238095238,0.4423728813559305,0.5329896907216478,0.802222222222222,51.59732346042971,0.6125141993821792,1.0425141993821792,37.92217167197368,7.79429403371469,12.507405329276226,89.51949513240339,20.301699362990917,0.5596590909090909,0.10998307952622673,0.025380710659898477,0.29441624365482233,0.5454545454545454,0.3334443297202666,-1.2751007602739584,-0.06381996331252363,-0.015001185414987748,-0.04396899173358479,0.6665556702797335,2.54892816036676,0.04198014630731188,0.02998739012196187,0.045516574292263565,-5.939467102676229,0.8744449538691501,0.7770927679068048,1.576193481521693,0.9048602038149985,0.5490665185628227,1.3741815541159998,0.8809304902485398,1.1826997786861437,0.7664358494039264,0.6628313654857101,0.7862561961644101,1.0725090261343166,0.9175398478919996,0.7037316228681076,0.954264224977673,1.4189429175475685,0.8128033183546487,1.2653402094772224,0.9254633333107017,1.1539745669061676,0.7126916017517654,0.4829004185745201,0.6595841896443693,1.0880260184761283,0.9386373517172842,0.8866479813125597,0.9430689184017639,1.2675567039908124,0.9457212599164431,1.1053235346962467,0.9417457278008248,1.0604417456027926,0.8828308724005526,0.7415769822962739,0.8816525646850002,1.0143914640061245,1.0577030571440853,1.18491062864584,1.1715018479104458,1.1039355992844362,1.1078093009651937,1.0362860018295577,1.054847763072934,1.002514727499221,1.1678612988651234,1.1791214609733374,1.1936260435717834,0.9993896733196116,1.0222191168250416,1.1351748630014367,1.0774163923438744,1.0835755813953487,1.1208650190114062,0.926657575482478,1.0186391413319698,0.9026088093550976,1.1246289213103722,1.246226379972202,1.12640238141142,0.9293773390899017,1.0754954179329188,1.0342344577042601,0.8718233614017696,1.1069767441860463,1.131178707224334,1.001474243639466,1.07528971514182,1.0022913523868184,1.043749257360427,1.0981652735967928,0.9990871997253955,1.0387120525613722,1.0741831975729539,1.0973826067021526,0.9011842710329875,1.1217646014557072,1.1004382782341153,1.0082049587946462,1.072799322097003,1.0045931094541092,1.0977789091743035,1.1426508087035734,1.0820938212150988,1.0288431594905483,1.0181699139718374,1.0407992720439843,0.8300209465648282,0.9989252293152968,0.9864238862042318,0.9644696254946697,1.0167531262371707,0.952723605346554,1.0418524539439393,0.9616687133259273,1.0310330471552136,0.9768588126814799,9.0,0.27609427609427606,5.555555555555557,3.375,3.1155555555555563,1.8125,1.2342857142857142,0.892361111111111,0.44343663391282434,0.3375,8833.533411193994,10245.09282646201,3968.8432124445126,3529.9166743158603,22.857260820072366,0.49420780745493276,11.561024065758863,0.9770965521791793,0.0,0.5454545454545454,1.4675197255787655,3.44422505358114,4.761412112201049,5.629806671355461,5.765215789053426,5.765215789053426,0.19565217391304346,0.006734006734006734,0.0854700854700855,0.046232876712328765,0.04515297906602255,0.027052238805970148,0.019907834101382485,0.01593501984126984,0.008366728941751401,0.0068877551020408165,0.4573916986879017,33.36578449905482,15.52662721893491,8.057851239669422,247.39089682534708,0.0,4.665196693654554,360.0723108297407,,304.7972603611108,299.8082228798401,300.8842299893794,304.85589992406346,413.06274699870534,302.91727509868934,305.0739577504644,369.1435439138948,0.038390036490161504,-0.03302930325091023,-0.5615721389439857,0.3437418343349885,0.29767804502926465,-0.09591361917215405,0.03940311471415959,0.007577706059138996,-0.020468875593784082,-0.03925113587828569,-0.05226710333787975,0.02905894589155666,0.019696687388135174,0.09360109818962041,0.01194228141643922,-0.04097956307258622,0.13059108192188038,-0.07710588174456894,0.017009490340044564,-0.06671400651206236,0.08929655502880121,0.11064237918265316,0.09773593964129652,-0.043061310578213934,0.035506958006595715,0.045498234633656744,0.07996620358832579,-0.0730452674897119,0.047321191068550573,-0.038567912795142344,0.033976123963947745,-0.05000310099419946,0.0498087015466099,0.032178151976751286,0.027284438855046757,-0.01439556893999468,-0.04225899558487595,-0.05973798447610607,-0.06250110758970827,-0.056158957321748,-0.050188721291382854,-0.025278098626301416,-0.04196641912058165,-0.03905914728700873,-0.05698794199632707,-0.03175192098185015,-0.061656309943549564,-0.03605093579223461,-0.008675703372461346,-0.03151223974519433,-0.0411431060542128,-0.03125000000000001,-0.0678469581749049,0.07085761998150898,-0.007410644579738126,0.05159527287281875,-0.031994583310257174,-0.01204700702671696,-0.02326176125976356,0.03129086445818916,-0.08423300616010858,-0.026955377594962197,0.09974121178121446,-0.07676200659360244,-0.13010066576344267,0.011855212029837917,-0.08431028687949692,-0.021078432617545204,-0.039790337010053405,-0.060007326919489304,-5.3151718903034575e-05,-0.05781013989995049,-0.08753486460231243,-0.12390240806884249,-0.04859421779975197,-0.058783064086632336,-0.1177546222389922,-0.02578183098607599,-0.086026812316807,-0.02954261914826404,-0.12227338273275025,-0.10272722205072317,-0.1188136625660269,-0.04718107297716946,-0.031153567210568944,-0.07608937766723661,0.03135568779260534,-0.022259798017233413,-0.02700604426400861,0.0010143480515109413,-0.029596292549320658,0.014654996400701933,-0.07294455998171684,-0.030565572774096543,-0.07882415163187168,0.0024369597660801475,31.74293642559947,33.22924427216571,7.055758915686371,13.570545235426266,31.80235327930393,39.380132912778215,41.48260436000945,41.87799086829605,41.87799086829605,86.00402704629101,68.58747614988337,6.542566112254262,10.873984784153379,0.0,17.416550896407642,23888.803588310962,23308.640192708062,2060.731616509769,261.0,65.0,88.0,113.0,149.0,164.0,190.0,213.0,235.0,577.3151860960012,46.0,5.407171771460119,6.270988431858299,7.160069207596127,8.046549357283078,8.94494150776486,9.842622276764853,10.74791701729286,11.653078635153634,12.563848483262898,0.6078431372549019,0.9755764705882352,1.1300853952799297,0.5658753985317381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6473694892567805,0.9619838523644751,1.0007283321194465,0.6024939188946495,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,2.0,13.0,1.0,1.0,0.0,3.0,2.0,1.0,0.0,0.0,25.166616078338272,23.079789748099113,0.0,11.814359458703011,0.0,14.488984098994122,4.794537184071822,0.0,0.0,44.73975782831788,79.98366806325811,26.1790256236503,11.6674178794453,284.79680128391584,-1089.0712046156614,-54.50901331779005,-12.812602407243077,-37.55417946950558,569.3091945290519,2177.0548246657672,35.85549466618069,25.61240970195019,38.875979011888695,0.4782608695652174,0.7886533460222868,0.12490471042987365,215.2943145768095,0.08765176062705739,109.69230732192597,0.2113466539777131,12.0,0.21739130434782608,0.2289639905259224,0.5373716610359595,0.7428805887553297,0.8783684327341066,0.8994951074910628,0.8994951074910628,4.580000000000004,,1.9285714285714286,2.2712889716147044,1.7145538716427509,1.923094010038725,-8.048311040580366,2.0358782129742963,1.911757780649884,-3.3519407530784404,158.2927999999997,29.333529295696927,0.0,15.116608065707286,5.917906046161393,88.94062068121693,19.634269217737724,59.65783953108687,0.0,11.49902366656781,4.532599493153256,0.0,5.8664680569332965,0.0,7.410347097821024,0.0,9.053101595549691,0.0,10.752419790885464,51.666666666666664,14.091044904447042,0.0,0.0,0.0,0.0,0.0,2.548595872236504,0.0,82.92399999999999,0.0,38.579913956729136,0.0,0.0,0.0,0.0,0.0,-1.2130219453448152,96.05725859879402,10.05365155780638,0.0,11.49902366656781,75.11554068505455,16.133830774056218,5.917906046161393,80.63257197349054,48.53093654769288,0.0,0.0,0.0,48.09940887519774,55.02640658682634,54.91593372766688,720.1446216594815,,609.6132687858958,599.6659088677907,601.9277872999132,609.7305415089702,829.191517250965,605.8699167481154,610.1644785793708,739.5640176384861,54.91593372766688,720.1446216594813,,607.9002839310489,597.6659636026499,600.458169695648,608.0223474992185,834.173805037991,604.0689214549278,608.4655184331941,741.639028580868,5.104065193168392,553.3670794666346,,466.9758718410171,458.99503210255085,459.9896144305947,467.06737630853206,637.1363100147507,463.93363430885006,467.42204106335015,568.7447829770663,1.3075222316111161,17.146300515701938,,14.514601637759423,14.277759734947397,14.331613983331268,14.517393845451672,19.742655172642024,14.425474208288463,14.52772568046121,17.60866708663062,2.5520325965841963,360.0723108297407,,304.7972603611108,299.8082228798401,300.8842299893794,304.85589992406346,413.06274699870534,302.91727509868934,305.0739577504644,369.1435439138948,81.76862745098039,0.0,2.0868016956541564,0.0,0.0,0.0,20.214494381301506,85.06190823015295,10.620605798441122,2.987770918421306,5.856862063180724,0.0,-1.6226693154933798,4.127951783380704,-0.8616834462873402,0.0,0.0,51.21198310604521,673.5935514555941,124.73917667419506,292.7591295543969,404.7200295370892,478.5335670652142,490.0433420695412,490.0433420695412,1566.0,168.63718668843669,180.51244435737334,79.61493603434273,119.41000000000001,119.41000000000001,0.9166666666666666,8.416540327357655,6.523561956057013,4.324506312656314,6.363691038045715,,6.366001092320694,6.364640935802263,6.361917960927895,6.366007952160887,6.371020915372485,6.365363904491216,6.3660878217753485,6.3741205315160485,0.10296443601562652,0.15151645328680274,,0.15157145457906415,0.1515390699000539,0.15147423716494987,0.15157161790859255,0.15169097417553537,0.15155628344026703,0.15157351956607973,0.15176477455990592,2.899382511795157,3.285693086196301,,3.2860560257358715,3.2858423434218764,3.2854144233630427,3.2860571033097514,3.2868442513208884,3.2859559284045687,3.2860696494947446,3.2873306509764104,447.9900000000018,6231.386872262238,320.5991432517048,,319.75079534447036,319.9151839409617,320.45269789315756,319.75058513717727,319.79795836359403,319.8372475902379,319.7393710009222,319.03538033851,148.36635410148187,7.633312934564399,,7.6131141748683415,7.617028189070517,7.629826140313275,7.613109169932792,7.614237103895096,7.615172561672331,7.6128421666886235,7.596080484250238,10.172438724216567,7.205276093133397,,7.202626453139929,7.203140435766592,7.204819202280909,7.202625795729953,7.202773941564964,7.202896790421086,7.202590723603649,7.20038653207616,5.856862063180724,42.70786574010984,23.202265299722814,0.4611200162046869,0.0740620541423267,13.240999230550544,7.152717352062582,4.720774910693147,0.0,557.7451895687506,243.2466555649468,-930.1822457294877,-46.55647510057339,-10.943320537993973,-32.07524985274097,486.25039651871435,1859.4355789605806,30.624392977224808,21.87571269365388,33.20420676715323,7244.0,73.0,2.850498860962116,1.454800840433689,0.08333333333333333,0.05590169943749474,0.9119472827857077,0.2668332027837838,0.09294625597086754,0.03117512199074333,0.0,0.0,0.0,0.0,0.0,0.0,0.3801812329972549,0.22965675821821363,0.6027603665157986,0.26434185674059557,29.691659197566093,24.465088660366288,20.301699362990913,15.43556595306633,18.22516696855105,12.066519227586722,15.763020409694443,9.317351443665647,12.773041007665682,6.759241084710709,10.701524128354459,5.169954808292097,7.4200669054865465,3.0902168281417155,5.472022765000774,2.078886183072479,7.4120076664016885,3.3090837528408343,11.636629080891701,4.758665323029466,18.68404232767647,6.71885068795778,142.8478104840147,71.4718742048479,40.346647678825164,30.147531440871347,28.782333088748473,28.782333088748473,222.0,264.0,91.89409899999998,51.46790100000006,0.3764705882352941,394.09,13.145833333333334,9.305555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,12.0,12.0,85.0,0.0,1.0,89.0,12.0,3.0,9.0,80.0,15.0,46.0,74.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.0,6.0,3.0,2.0,42.0,9.0,0.0,3.0,6.0,0.0,5.0,10.0,0.0,1.0,0.0,0.0,2.0,4.02535169073515,7.099550052003093,4.51085950651685,4.966335035199676,5.387929525237724,5.851124312554129,5.951293382418705,6.213357316520539,6.497811406164065,6.771505910290566 +3950,O=NN(CCCl)C(=O)NC1CCCCC1,0,29.161290322580644,6.273341935483872,2.6451612903225805,6.180804460374353,170.08431693709304,118.44712135483869,1.3510553057285166,6.365809677419356,5.0118195987039735,7.894968806451616,192.76409866599047,24.903225806451612,6.4419,3.3870967741935485,5.50179211469534,153.07103353125154,94.08950038709673,1.6573895790322568,6.577183870967745,3.0516726403823182,7.882534903225809,235.29589591388583,18.051724137931036,6.167308620689658,2.793103448275862,3.6130268199233715,160.53692576610388,64.64687260344827,1.3515959550679826,6.282420689655169,2.547679863771817,7.726004310344825,178.07419347874838,13.829268292682928,5.9776951219512195,2.268292682926829,2.5230352303523036,169.07260694945796,48.28331623170732,1.060856282405183,6.052470731707319,2.4711306835290574,7.613863146341463,136.21991685446284,14.733333333333333,6.174441333333336,2.1066666666666665,2.506666666666667,172.4363323339097,52.44527485333337,0.9789763046183466,6.218547999999998,3.399286694101509,7.813531893333334,128.86684531579206,18.45614035087719,6.44691403508772,2.1403508771929824,2.042884990253411,174.48623226100227,67.62830275438596,0.9994071551155086,6.507284210526318,3.339831059129305,8.125356456140349,139.4338584895221,16.204545454545453,6.378363636363636,2.2954545454545454,1.916666666666667,167.90206429382798,56.292322000000006,1.1696409211157726,6.452409090909091,3.094089038533483,7.989819590909089,157.64364341526468,14.106382978723405,6.115425531914894,1.851063829787234,1.0449172576832153,168.40842900365274,48.04302668085107,1.0955206056274467,6.2035638297872335,2.758142894667717,7.81103804255319,136.31223744045096,11.666666666666666,5.757190476190478,1.4761904761904763,0.455026455026455,171.65969463865102,37.743584999999996,0.9834816595615239,5.895392857142858,2.1468988830099938,7.619935142857142,107.78687750987982,13.161290322580646,0.14532154006243492,0.013502986283069736,0.4432882414151926,3.805449570277873,1.3158740812167313,61.61692321123831,0.2327362292401248,0.14641727367325705,2.1605499719989516,0.09988493444328823,47.92244082147595,0.25806451612903225,0.02560551508844946,-0.011242807949054323,0.08428720083246612,1.4250202335530127,-0.07226243069365827,1.1166716503641965,-0.01142321697190411,0.020716649323621123,0.28278049699601315,0.014049298647242447,-2.7103041484502373,-1.3275862068965518,0.03314770354156947,0.004936911182891146,-0.045067996698841005,0.7712680446303227,-0.14022134091791064,-6.466160256288355,-0.04777482194109422,0.022998744124295825,0.24967271950792888,0.01926494375470952,-10.178989066235157,0.4634146341463415,0.013580584249130757,-0.0018943135071045748,-0.03573513362605012,0.43762723325001773,-0.08270249324923158,2.0822617553234717,-0.02168275241208122,0.014183198395979833,0.13237283581888748,0.007601744156239677,-0.7926719839174952,1.5066666666666666,0.009208825528962876,-0.0002745816699548872,-0.02436351023239681,-0.12294326468913146,-0.10983202625123259,7.045584983170311,0.008399153942233806,0.012477694068678455,0.21617590738279782,0.0075467382448838,2.4861321910870515,1.894736842105263,-0.031358608540080726,0.0007026282388426143,-0.00525768114354565,-1.350063794009246,0.11020460998986586,8.844447519378573,0.02889596758609806,-0.013941382332000726,-0.6432751042241778,-0.004992653741533834,6.726751994492584,-2.522727272727273,-0.052758343581496565,-2.7902820785508748e-05,-0.12290700974363827,-1.5770635596337994,-0.02976338459511707,-11.707637439977299,-0.010695918724117522,-0.051474751679122195,-0.48366898906460315,-0.033624317141235434,-6.001449111165286,-1.8085106382978724,-0.043381251798879694,-0.00032304738479367666,-0.05138707463413554,-1.1487306230075658,-0.02148595128009432,-8.37871181247371,-0.0005972995915167785,-0.042684329266942656,-0.44562223664548634,-0.026818315362986244,-6.420386807889515,-2.0476190476190474,-0.015972538526336583,0.0001789559085530293,0.039046628016451125,-0.05634562762554435,-0.03286218142667303,-9.409808475447202,-0.005325973118699411,-0.021459669986621004,-0.1710305769140445,-0.017782104950200685,-2.5026807927799783,,,0.47206349206349213,0.8166666666666667,0.2,0.0,0.6166666666666667,-0.4166666666666667,0.89650805608718,0.009321776979590801,0.015055110312924135,0.49711540336132337,0.14217420570304184,0.3427849214755737,1.3936234594485033,0.4849591271786155,1.95766592718887,1.2094610669492998,0.40146392710597084,0.23268005831581534,0.1140608748177837,0.7482048602395698,7.519132401032258,904.0,194.47360000000003,82.0,191.60493827160494,5272.613825049884,3671.8607619999993,41.88271447758402,197.34010000000004,155.3664075598232,244.7440330000001,5975.687058645704,772.0,199.6989,105.0,170.55555555555554,4745.202039468798,2916.7745119999986,51.37907694999996,203.89270000000008,94.60185185185186,244.3585820000001,7294.172773330461,1047.0,357.70390000000015,162.0,209.55555555555554,9311.141694434025,3749.5186109999995,78.39256539394299,364.3803999999998,147.7654320987654,448.1082499999998,10328.303221767406,1134.0,490.171,186.0,206.88888888888889,13863.953769855552,3959.2319310000003,86.99021515722501,496.30260000000015,202.6327160493827,624.336778,11170.033182065952,1105.0,463.0831000000002,158.0,188.0,12932.724925043227,3933.3956140000028,73.42322284637599,466.3910999999999,254.9465020576132,586.014892,9665.013398684405,1052.0,367.4741,122.0,116.44444444444444,9945.71523887713,3854.813257,56.96620784158399,370.9152000000001,190.37037037037038,463.1453179999999,7947.729933902759,713.0,280.64799999999997,101.0,84.33333333333334,7387.690828928431,2476.862168,51.46420052909399,283.906,136.13991769547326,351.5520619999999,6936.320310271646,663.0,287.425,87.0,49.111111111111114,7915.196163171679,2258.0222540000004,51.489468464489995,291.5675,129.6327160493827,367.11878799999994,6406.675159701195,490.0,241.80200000000005,62.0,19.11111111111111,7209.707174823343,1585.23057,41.306229701584,247.60650000000004,90.16975308641975,320.03727599999996,4527.048855414952,408.0,4.5049677419354826,0.4185925747751618,13.74193548387097,117.96893667861406,40.79209651771867,1910.1246195483875,7.214823106443869,4.538935483870969,66.9770491319675,3.096432967741935,1485.5956654657546,8.0,0.7937709677419332,-0.34852704642068405,2.6129032258064497,44.17562724014339,-2.2401353515034064,34.61682116129009,-0.35411972612902737,0.6422161290322548,8.766195406876408,0.43552825806451584,-84.01942860195736,-77.0,1.9225668054110292,0.2863408486076865,-2.6139438085327784,44.73354658855872,-8.132837773238817,-375.03729486472463,-2.7709396725834647,1.333927159209158,14.481017731459875,1.1173667377731522,-590.3813658416391,38.0,1.113607908428722,-0.15533370758257514,-2.9302809573361097,35.885433126501454,-6.78160444643699,170.7454639365247,-1.77798569779066,1.1630222684703464,10.854572537148773,0.6233430208116535,-64.9991026812346,113.0,0.6906619146722156,-0.020593625246616544,-1.8272632674297609,-9.22074485168486,-8.237401968842445,528.4188737377733,0.6299365456675354,0.935827055150884,16.213193053709837,0.566005368366285,186.45991433152886,108.0,-1.7874406867846016,0.040049809614029014,-0.2996878251821021,-76.95363625852701,6.281662769422354,504.13350860457865,1.6470701524075895,-0.7946587929240414,-36.666680940778136,-0.28458126326742855,383.4248636860773,-111.0,-2.321367117585849,-0.0012277241145623849,-5.407908428720084,-69.39079662388717,-1.309588922185151,-515.1360473590012,-0.470620423861171,-2.2648890738813767,-21.28143551884254,-1.4794699542143592,-264.0637608912726,-85.0,-2.0389188345473457,-0.015183227085302804,-2.4151925078043703,-53.990339281355595,-1.009839710164433,-393.79945518626437,-0.02807308080128859,-2.006163475546305,-20.944245122337858,-1.2604608220603535,-301.7581799708072,-86.0,-0.6708466181061365,0.00751614815922723,1.6399583766909471,-2.3665163602728625,-1.3802116199202672,-395.21195596878243,-0.22369087098537524,-0.9013061394380821,-7.183284230389869,-0.7468484079084288,-105.11259329675909,0.7397341225498538,0.6247943285633856,0.4849591271786155,0.38556588907290773,0.31522361498814644,0.2253423556853519,0.21040211543888082,0.13005296059697236,0.14795117915757475,0.08328997246637669,0.09913139857213225,0.05622236434391854,0.05987527581491253,0.025585799715843835,0.04161250501480468,0.016329427937890828,17.001101467977428,5.799507744724661,3.588922566663121,2.298517308967866,0.44140983367588293,-0.33554688067412713,3.1252117538279363,0.9574751697798727,6.04284976017521,0.7679009982702233,14.660261055086416,11.060815210336576,35.45051686755525,11.811219790974427,2.2036550535041766,0.6880315902842095,3.533933613617978,2.3481645556842636,7.011392684240713,1.2332421603471215,3.7385200783230053,2.54394245079646,22.45577740307621,14.66259529632921,0.34721311146541395,0.5331187020605934,0.7009116781501328,0.7806194088398053,0.815853506999752,0.815853506999752,2.273417379081851,219.4029963976061,0.0,0.0,2.0,0.0,0.0,6.0,0.0,0.0,0.0,3.2027165327465896,2.2649354647924063,1.41852156293668,1.0164443549782889,0.838709677419355,0.838709677419355,114.93220926723205,539.6844195378761,34.14513939291927,17.409174823802456,36.136643955621736,,9.0,206.0,6.031114512338072,9.701602428060104,18.466600680030876,0.0,30.69219901565857,6.4208216229260096,0.0,0.0,10.60267332496904,11.600939890232516,7.0809523809523816,12.25,3.0,0.0,9.25,0.0,0.027936507936507895,-6.25,0.17050691244239607,0.0,-0.17050691244239607,0.039246031746031695,0.2052760862127948,0.0,0.6038402457757298,0.9279365079365076,0.43333333333333374,0.6038402457757298,0.8886904761904759,13.4476208413077,0.13982665469386202,0.225826654693862,7.456731050419851,2.1326130855456276,5.141773822133605,20.90435189172755,7.274386907679233,0.5087239137872052,0.19502353732347005,0.0,0.19771351714862134,0.8888888888888888,0.3692142626575346,-0.4534892281671642,-0.04982891830747329,-0.014628684779585942,-0.045348922816716424,0.6307857373424653,0.7747656742925462,0.027881190297171943,0.02499244110621117,0.0368936035377403,-2.0385515185037173,0.6416034155597724,0.5048512752946566,1.950523937357848,1.0915492957746478,0.4121936398622647,1.6021049225001271,0.6510702873899566,1.1861306554388031,0.5146545658709228,0.3886858123040149,0.48262583558425837,1.1775504104292982,0.9184837728194726,0.45194934969824424,0.6403330268029743,1.3362068965517238,0.5671504054535423,1.3663715431914172,0.9275190069869405,1.2715734992315537,0.5380230084379298,0.3397394805857368,0.4577346203619293,1.2715805181713862,0.7541248206599713,0.7143699131686777,1.2372116226872878,1.1314840261078667,0.7645207665364078,1.0556192628463419,0.7598234961269493,0.9977868032811862,0.7085845400587655,0.5641430456855697,0.6605433190590418,0.978310563201522,0.6607843137254902,1.056384922737623,1.4775000044566602,1.0624413145539906,1.1413341435419624,0.9812069360695227,0.6629310171916365,0.7831120179366184,0.9742108068539583,1.0804889606034238,0.959875970500166,0.839731130554397,0.8178534571723426,1.6407092189493884,1.429957851976108,1.1298492710649863,1.681811882349179,0.7737096159896688,0.8146429578861212,0.7088987935044453,1.437805248906555,1.9908304876892957,1.448604620862889,0.7175340624585124,1.044451871657754,1.525263166631298,0.8473768826339422,1.314820742637644,1.5794119542600407,1.0882670827608656,1.0431143117311332,0.9668132630171935,1.450750657232921,1.5217938019338138,1.4569617250496236,1.0587173594753454,1.1084167709637047,1.3503532590728027,0.39183003863012095,0.743182499250824,1.2839458022142836,0.9450301139887838,1.1061043511801099,0.9722991251130434,1.329581132000721,1.433884908595166,1.341263338991399,1.0936829010306954,1.608893557422969,0.9639517255912059,0.24295191525316412,0.4418175720992622,0.7974478428195262,0.7033578419129263,1.598501440411877,1.136467693958572,1.1215892904099596,0.9906144197391162,1.2141710558184509,1.0617722243848624,2.5,0.0,1.333333333333334,0.8125,0.6311111111111112,0.22916666666666669,0.12244897959183673,0.08680555555555555,0.05316200554295791,0.015625,2648.6743642943557,3067.9138315553128,1442.7874244649463,1283.2489220273483,10.249735551281352,0.4680688117553781,5.452154010986234,0.8799424100324137,1.0,0.8888888888888888,1.7514797776402853,2.6892608455944687,3.535674747450195,3.937751955408586,4.11548663296752,4.11548663296752,0.16666666666666666,0.0,0.07407407407407411,0.04513888888888889,0.03944444444444445,0.016369047619047616,0.011131725417439703,0.010850694444444444,0.013290501385739478,0.015625,0.3925910429407453,13.066666666666666,7.302469135802469,4.571428571428571,94.0923089746755,1.0,3.580246987587095,55.48758676503872,,46.96038781413653,46.69200341614126,45.53594070263704,46.94276202860266,74.7946032631508,47.35367168627552,48.0171990118289,65.72600729045156,0.0196078431372549,0.17619903475732837,-0.83261640894583,0.19014084507042237,0.3744683005874016,-0.0549159161390582,0.018122807699046662,-0.04908224649510087,0.14149047311078977,0.13088357161875003,0.14065483173760535,-0.056556053948647,-0.10087052062204192,0.2280990383622973,0.3656162480947734,-0.10166747612109436,0.20267461974906817,-0.10656136701792478,-0.10494130377332753,-0.20527453803422546,0.15707671333656664,0.11555979854376171,0.19287136605818764,-0.21240548043357482,0.03521042563366811,0.09345197032247311,-0.14028848636835956,-0.08061376388411774,0.115000139975068,-0.06284985351543683,0.03379366652542768,-0.09316449133370687,0.09686834101030238,0.06126812040196204,0.07610501221839143,-0.016540726439006156,0.11447712418300653,0.06336862054315184,-0.02033488475798588,-0.054960876369327075,-0.03230715909346663,-0.08346697288062374,0.114344965895429,0.0360887257203433,0.08522009565977523,0.10005596268749607,0.07555431944712962,0.05187824635954095,0.14396284829721362,-0.21578775263879005,0.0520350257426819,-0.011860637509266124,-0.35477116936558556,0.08375011831524524,0.14353925932097555,0.12415758251494548,-0.09521678680557966,-0.2977367395159189,-0.049984051842858424,0.14036747459403318,-0.19167780748663105,-0.363045585388304,-0.002066418509251821,-0.27726205719163466,-0.41442240410996767,-0.022618717869719092,-0.19000684925212144,-0.04595725710191018,-0.351562014424559,-0.2238638288088797,-0.33663051719102194,-0.1252325425894375,-0.1374113475177305,-0.2985190755633451,-0.02392414374283404,-0.11592248526620715,-0.301864629078158,-0.01632827303675379,-0.13598069127452825,-0.002566422913471356,-0.2915252292034646,-0.2062540753145341,-0.2684920955543391,-0.13397453672710852,-0.15557889822595702,-0.10991170696012618,0.013253061567381366,0.08808405991504582,-0.014806562689892645,-0.024973652035373176,-0.1527146761805683,-0.022884160047142277,-0.1465651521043216,-0.07916066702026157,-0.17802589599031923,-0.05222356686929075,6.932975959970572,5.205177412138249,0.4999999999999999,21.03268682475439,30.944359548291644,33.52066885665007,34.9037700108626,35.08292656584201,35.08292656584201,29.364988907833048,18.141916004239498,6.021958906589562,3.49020087473723,1.7109131222667555,11.223072903593547,2344.288279199336,2249.3585988790874,467.2822595057319,6.0,18.0,21.0,23.0,23.0,17.0,16.0,14.0,10.0,233.093104432,15.0,4.204692619390966,4.976733742420574,5.777652323222656,6.569481420414296,7.377133712833954,8.175547596021026,8.985320060649112,9.78633556772527,10.59685970778737,0.666666666666667,0.9901935483870966,1.153707352666075,0.6276397173558645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6332371643809159,0.9779886148007592,1.0167398914550196,0.5848053945096287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,7.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,0.0,0.0,0.0,4.794537184071822,5.008912523954532,16.5080051342208,19.26246486877803,12.841643245852019,11.9218442741183,11.830641126875284,162.22950515271617,-199.25918502743656,-21.894389185107354,-6.42771564604634,-19.925918502743656,277.1617144199482,340.42523451043957,12.250750207811917,10.981459177756115,16.210725452878076,0.4444444444444444,0.9246401623451922,0.2716741526695979,2.362305082517505,0.27694981253291273,18.253876351897297,0.07535983765480786,5.0,0.26666666666666666,0.35353459328371095,0.542824845264249,0.7136727182242184,0.7948316353861007,0.8307072177053356,0.8307072177053356,2.2509000000000006,,1.5756302521008405,1.2450396026091517,1.1536780407249854,1.5872164609218062,-3.485189029095318,1.194032466727608,1.1275627524360021,-1.6726742111087283,58.62570000000003,4.794537184071822,0.0,10.325701127960862,5.2858847209627084,38.14594894377801,12.424759850882914,4.907065243988282,0.0,0.0,3.4339872044851463,0.0,4.634728988229636,0.0,6.042632833682381,0.0,7.538494999413465,0.0,9.073489189226986,20.666666666666675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.695999999999994,0.0,21.82941216301335,0.0,0.0,0.0,0.0,2.6300323601662887,-0.43282407407407386,35.76492793264833,5.316788604006331,4.794537184071822,0.0,29.50662771632348,0.0,4.907065243988282,32.10410811463005,5.2858847209627084,0.0,0.0,0.0,19.4568312380318,19.630352095808394,18.77001963993254,110.97517353007743,,93.71069159465961,93.21800155193463,90.91805766651078,93.67389519574908,150.9832821379397,94.548139043654,95.884056323333,132.1210842653466,18.77001963993254,110.97517353007743,,92.34514537617221,92.1389672296734,89.91820336454913,92.29830759628352,153.07439555539685,93.51331090582343,94.90683527122175,133.1246887920118,4.482307764871043,82.65740391064543,,70.98650269800396,70.01495127690735,68.09517999023765,70.97262080150976,113.1548955284945,71.13678815698601,72.20832688210302,99.57813537182548,1.2513346426621692,7.398344902005162,,6.247379439643974,6.214533436795643,6.0612038444340515,6.244926346383272,10.065552142529315,6.303209269576934,6.3922704215555335,8.80807228435644,2.2411538824355213,55.48758676503872,,46.96038781413653,46.69200341614126,45.53594070263704,46.94276202860266,74.7946032631508,47.35367168627552,48.0171990118289,65.72600729045156,30.317647058823535,0.0,0.0,5.441307826628593,0.0,0.0,0.0,31.518936635105607,5.833032293678788,2.789274691358025,0.0,0.0,0.1859495464852603,0.8349263038548751,0.0,0.0,0.0,18.128967229798487,406.2787685987204,54.295873106848845,83.36708621342852,109.60591717095603,122.07031061766617,127.58008562199312,127.58008562199312,178.0,96.44975675046524,33.11245097394402,45.72333321503761,61.77,61.77,0.8,5.384495062789089,4.906890595608519,3.530845125878801,3.8135960190056273,,3.814376778373216,3.805601275149879,3.8043672331546903,3.8145434383738586,3.8186127439758804,3.808021669069058,3.8092585465799327,3.819648237621113,0.23538967505858674,0.25423973460037513,,0.25429178522488105,0.2537067516766586,0.2536244822103127,0.25430289589159055,0.25457418293172535,0.2538681112712705,0.25395056977199554,0.25464321584140753,1.6670023628290425,1.7440376891220422,,1.7442423986539335,1.7419391093160104,1.7416147868159477,1.7442860902894295,1.7453523087422727,1.7425749154278833,1.7428996711114684,1.7456234420942414,172.12999999999974,69.33430197649626,63.17310367622879,,62.511701476142065,62.94386766365716,63.04669718419393,62.50198737355814,62.73794630106388,62.84754502511258,62.79878633110179,62.591084936721074,4.622286798433084,4.2115402450819195,,4.1674467650761375,4.196257844243811,4.203113145612929,4.166799158237209,4.182529753404259,4.189836335007505,4.186585755406786,4.172738995781405,4.644404869858632,4.551343743935129,,4.540818870944639,4.547708447866892,4.549340785073945,4.5406634623219055,4.544431576848554,4.546176981524129,4.545400855457699,4.542087962921081,0.0,21.82941216301335,6.2542333553791885,0.0,0.21212962962962956,-0.24687452758881356,5.4645446393578005,0.15635802469135807,0.0,212.37275284527877,71.2822201197218,-87.55273632026054,-9.620202365842873,-2.8242818167825976,-8.755273632026054,121.78242371783158,149.57985896485232,5.3828720744905505,4.825156740801688,7.12285042689773,402.0,18.0,0.606493072294114,0.26069179187482505,0.0,0.0,0.11785113019775792,0.014433756729740644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.10206207261596575,0.07216878364870322,0.05103103630798288,11.096011838247808,9.371914928450783,7.274386907679233,5.783488336093616,5.6740250697866355,4.0561624023363345,4.4184444242164975,2.7311121725364194,3.402877120624219,1.915669366726664,2.280022167159042,1.2931143799101266,1.017879688853513,0.4349585951693452,0.6658000802368749,0.26127084700625325,1.4449779553427078,0.4984228844352495,2.1176092753154823,0.6482987706203758,2.584800666878897,0.7325999643656234,49.4983051878708,32.96340408614904,28.001143033394516,25.163078522228776,24.44667558867302,24.44667558867302,66.0,72.0,32.78268799999998,19.437311999999995,0.1935483870967742,15.06,5.583333333333333,3.6944444444444438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,31.0,0.0,0.0,31.0,0.0,2.0,2.0,29.0,2.0,15.0,29.0,0.0,0.0,0.0,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,3.0,1.0,0.0,15.0,6.0,0.0,3.0,2.0,0.0,1.0,4.0,0.0,0.0,1.0,0.0,0.0,2.8903717578961645,2.1972245773362196,3.091042453358316,3.295836866004329,3.4657359027997265,3.367295829986474,3.091042453358316,3.044522437723423,2.9444389791664403,2.5649493574615367 +3658,OCCOCCN1CCN(C(c2ccccc2)c2ccc(Cl)cc2)CC1,0,24.49056603773585,5.911107547169809,2.9245283018867925,5.313300722105754,162.5849095771061,98.45303526415098,1.4911369137909998,6.025820754716979,2.8145653417995993,7.527013075471696,210.4999414180418,23.818181818181817,6.2286363636363635,3.6363636363636362,4.874747474747474,146.12124133755543,89.80683340000003,1.7885043644727276,6.388345454545454,2.65794986906098,7.682313345454544,254.26757433865447,18.989795918367346,6.192234693877553,3.2653061224489797,3.4557823129251704,156.8446448919438,69.14530251020408,1.5012925094366525,6.3063469387755084,2.429358780549257,7.719879959183671,205.98258265990492,15.477272727272727,5.955468939393938,2.8636363636363638,2.830808080808081,159.73671461470647,54.66417084090908,1.352976595018,6.06370303030303,2.207210998877666,7.550255999999999,175.71807399400117,13.342465753424657,5.706904109589041,2.6575342465753424,2.254185692541857,158.67253902707395,46.42722669178081,1.2823940274696162,5.818729452054795,1.9103176616494735,7.321225876712329,162.2722484960553,13.018987341772151,5.7631075949367085,2.518987341772152,2.160337552742616,161.25722189239596,45.50845215189872,1.2388873736035193,5.852015822784811,2.065856644267334,7.373103075949367,158.89174649784897,13.018867924528301,5.759742767295598,2.3836477987421385,1.9748427672955975,159.41276880492143,44.71394030817609,1.2583977465139307,5.863679874213837,2.0960995936537516,7.3779398238993705,157.01138364307678,11.865384615384615,5.569711538461537,2.2115384615384617,1.4985754985754984,162.60726522499584,41.103217589743586,1.142542939500949,5.671653846153846,1.8210667932890152,7.236404923076923,136.76269114443966,12.629032258064516,5.719072580645162,2.0725806451612905,1.5062724014336917,166.8846676849504,43.16231133064516,1.0923218951883547,5.837588709677419,1.9596276383910793,7.464898032258065,130.05287362922758,10.250622997508007,0.09026849412602347,0.012265036988623187,0.47205411178355283,3.0475499826395755,1.3925692914854169,48.415029468138115,0.24949298569455247,0.09521737273050902,0.6387170073938206,0.060611494482022056,52.70395731981846,0.32227580180588333,0.0016210427521926162,-0.0031354389772389572,0.13789443024046083,0.4140471204669617,-0.2897720247958366,1.5212955033884665,-0.013514892520677979,0.0026156632900741707,-0.0387526538655259,-0.0016482883070650233,-0.6769011705233202,-0.8095371291984224,-0.023545506062873697,-0.0033054653352345693,-0.019031393262182117,-0.6458756860865725,0.08231308407594298,-3.715528697248635,0.013566351288855303,-0.02271169310016631,-0.1088843454940063,-0.01323169240269986,-0.8369427129430121,-0.8145166510243049,-0.00012421167891085632,0.0019675013899376247,-0.02265445483672614,-0.104631983641912,0.19130732525963456,-3.8224572171375537,0.011184916072446783,-0.003705751804265478,0.026191741603690318,0.0020982096346159815,-1.2233171099613362,-0.176702087712197,0.0022572231135732992,-0.00018849176658250507,-0.027882491209761193,0.08325550191795512,-0.14267591357964735,-0.8715219824829199,-0.017153884161870674,0.0019278715186508927,0.034385242683184866,0.0005574144091643264,-2.228768686939297,0.39005051574730404,-0.005589129425760776,-0.0013253941787050032,-0.004177350379206077,-0.17325948323961035,0.11137909562752749,1.9195836319335213,0.02383568065095178,-0.0041506065494725485,-0.029594677541369956,-0.003264313087228634,4.094973999545382,-0.6040109172896642,0.0009647442743562395,0.0010280459944835639,-0.029429215616470855,-0.24988463009110923,-0.05741245675230212,-2.9545801027649228,-0.017947726202574933,-0.0004510027293224125,-0.045388719679689174,0.0036001981725406725,-5.752441436241464,1.141612125859189,0.007522362187474327,3.644359641128682e-05,-0.024061852470538818,0.05804529171880136,-0.1736969660239003,5.323338050971692,-0.00295782808017274,0.009529518899873073,0.020362710746836373,0.00435079627753291,-0.1666130079420195,-0.21562604072164346,-0.004383421088896289,-0.0009773019477887553,0.016381676408778263,0.08445222650809905,0.022844913848260665,-0.899617063390715,0.007914647160687729,-0.005026548019614392,-0.03546066096451086,-0.006153573605576547,2.258561879209954,,,0.4877289377289377,1.1153846153846154,0.4807692307692308,0.019230769230769232,0.6346153846153846,-0.15384615384615385,0.8940262902288054,0.005347127572862658,0.01527020449593958,0.8000174706976211,0.23088906117137822,0.2604643328854936,1.6940437609264265,0.4913533940568718,2.043264985078021,1.6609200968865852,0.1728864817370494,0.1416239987072874,0.06783440774709915,0.38234488819143597,7.059926524226429,1298.0,313.2886999999999,155.0,281.60493827160496,8617.000207586623,5218.0108690000025,79.03025643092299,319.36849999999987,149.17196311537876,398.9316929999999,11156.496895156215,1310.0,342.575,200.0,268.1111111111111,8036.668273565549,4939.375837000001,98.36774004600002,351.359,146.1872427983539,422.5272339999999,13984.716588625995,1861.0,606.8390000000002,320.0,338.6666666666667,15370.775199410493,6776.239645999999,147.12666592479195,618.0219999999998,238.07716049382717,756.5482359999997,20186.293100670682,2043.0,786.1218999999999,378.0,373.6666666666667,21085.246329141253,7215.670550999998,178.592910542376,800.4087999999999,291.3518518518519,996.6337919999999,23194.785767208155,1948.0,833.208,388.0,329.1111111111111,23166.190697952796,6778.375096999998,187.22952801056397,849.5345000000001,278.90637860082313,1068.898978,23691.748280424075,2057.0,910.5709999999999,398.0,341.3333333333333,25478.64105899856,7190.335439999998,195.74420502935604,924.6185000000002,326.40534979423876,1164.950286,25104.895946660137,2070.0,915.7991000000001,379.0,314.0,25346.630239982507,7109.516508999999,200.08524169571498,932.3251,333.2798353909465,1173.092432,24964.80999924921,1851.0,868.8749999999999,345.0,233.77777777777777,25366.73337509935,6412.101944,178.23669856214804,884.7779999999999,284.0864197530864,1128.879168,21334.979818532585,1566.0,709.1650000000001,257.0,186.77777777777777,20693.698792933847,5352.1266049999995,135.44791500335597,723.861,242.99382716049385,925.6473560000001,16126.55633002422,543.2830188679244,4.784230188679244,0.6500469603970289,25.0188679245283,161.5201490798975,73.8061724487271,2565.99656181132,13.223128241811281,5.046520754716978,33.85200139187249,3.212409207547169,2793.3097379503783,17.725169099323583,0.08915735137059388,-0.17244914374814266,7.584193663225346,22.772591625682892,-15.93746136377101,83.67125268636566,-0.7433190886372888,0.14386148095407938,-2.1313959626039245,-0.09065585688857627,-37.22956437878261,-79.3346386614454,-2.3074595941616223,-0.3239356028529878,-1.8650765396938473,-63.29581723648411,8.066682239442413,-364.12181233036625,1.3295024263078197,-2.2257459238162984,-10.670665858412617,-1.2967058554645863,-82.02038586841519,-107.51619793520825,-0.016395941616233034,0.25971018347176644,-2.9903880384478505,-13.811421840732383,25.252566934271762,-504.5643526621571,1.4764089215629752,-0.48915923816304313,3.457309891687122,0.2769636717693096,-161.47785851489638,-25.798504805980762,0.3295545745817017,-0.02751979792104574,-4.070843716625134,12.155303280021448,-20.83068338262851,-127.24220944250631,-2.5044670876331185,0.28146924172303034,5.02024543174499,0.08138250373799166,-325.4002282931374,61.627981488074035,-0.8830824492702026,-0.20941228023539052,-0.6600213599145601,-27.374998351858437,17.597897109149343,303.29421384549636,3.7660375428503814,-0.6557958348166626,-4.675959051536453,-0.5157614677821242,647.0058919281703,-96.0377358490566,0.15339433962264207,0.16345931312288667,-4.679245283018866,-39.73165618448637,-9.128580623616037,-469.7782363396227,-2.8536884662094146,-0.07170943396226359,-7.216806429070579,0.5724315094339669,-914.6381883623928,178.09149163403347,1.173488501245995,0.0056852010401607445,-3.753648985404056,9.055065508133012,-27.096726699728446,830.440735951584,-0.46142118050694747,1.4866049483801993,3.1765828765064743,0.678724219295134,-25.991629238955042,-26.73762904948379,-0.5435442150231399,-0.12118544152580565,2.0313278746885044,10.472076087004282,2.8327693171843222,-111.55251586044866,0.9814162479252784,-0.6232919544321847,-4.397121959599346,-0.7630431270914918,280.0616730220343,0.6996932183267544,0.6082361322069255,0.4562567230528095,0.34318798361821995,0.295153699409909,0.19485544023540377,0.18914508602712732,0.11114211470706885,0.11976487262172289,0.061455673985589716,0.07875609563075421,0.03565604439020503,0.0492772749572793,0.020517171694268813,0.0326474887398795,0.011858139483370736,17.00110319391131,5.687551959644379,3.520609936390027,2.1860878009911007,0.3439939557463969,-0.4125988700447448,3.1924044129226226,0.9878142839824047,6.005012762265119,0.774001411472596,14.5446560926515,10.947799379254668,35.450517456606136,11.698764048171714,2.207827685337815,0.7788669989150602,3.463130568703794,2.2364652546628894,6.00269630661162,1.2600047688691132,3.6766789678504517,2.432531722124394,22.455865832467087,14.706305421776207,0.2511990170737738,0.4984258482888996,0.6603477996879598,0.8170573893320311,0.8767237987152913,0.8767237987152913,1.5172568855861006,642.8204701858949,0.0,0.0,8.0,0.0,10.0,1.0,2.0,0.0,0.0,4.238125064844672,2.7718876661097673,1.811571103176318,0.8821676887200658,0.5283018867924518,0.5283018867924518,184.40928989668444,1254.6371247611298,55.77365189683887,23.672398580398674,49.63723713868177,,15.0,634.0,0.0,0.0,12.648722793660879,13.213763929025836,37.7464153433042,11.126902983393991,0.0,12.13273413692322,52.26438894093222,21.44433023887327,12.68095238095238,29.0,12.5,0.5,16.5,0.0,0.012271062271062295,-4.0,0.11264903717733904,0.046742691270993286,-0.06590634590634575,0.019115452448785653,0.11637881508078973,0.0,0.5531895777178798,0.8161172161172158,0.44054054054054076,0.5064468864468865,0.7970017636684301,23.24468354594894,0.1390253168944291,0.3970253168944291,20.800454238138148,6.003115590455834,6.772072655022833,44.04513778408709,12.775188245478667,0.5976211849192102,0.08261359369132558,0.0,0.2208036049568156,0.42857142857142855,0.35339568959864875,-0.7049743598633987,-0.04787036770813104,-0.013301403016290543,-0.04406089749146242,0.6466043104013516,1.289884039977408,0.04080908851104392,0.024337434716554866,0.03486173081020022,-4.725262602760464,0.7291695870983225,0.8980101507016583,1.275132671293914,0.8502673796791445,0.8410941195935845,1.4477736497116094,0.7357034492014448,1.0959202807200923,0.8347843134695725,0.964215538048975,0.8760994234275582,1.0479849608636094,0.9161233987239408,1.5132368602411181,1.630319491040949,1.3679471788715487,1.4436052041719882,1.112320951578356,0.9161562898976495,0.892166850781717,1.3837446149092423,1.0884670677539676,1.3686633205793617,0.9706419890082819,0.9926741892776486,1.028240215202925,0.9125810098004297,1.2754010695187166,1.097632402862672,0.930962221375888,0.9937387280205142,0.9207875444199637,1.0336095047872935,0.7121957500802778,0.9371870293956114,0.9952163358238497,0.8260282536030625,0.629980110519253,0.6495563139383126,1.188691915122213,0.8595308905782886,1.1224452790228847,0.8334714872257497,1.044721363264574,0.6648209805887313,0.3685806892179139,0.5618725953062234,1.0467512359382243,0.6836309076345901,0.9427999853710927,0.9607955093209557,0.9997517994539588,1.0533778099279298,0.9359669459388408,0.6896594266560744,0.8294836088516856,0.8841659912219445,0.7454998989929711,0.8022265677123848,0.8935767370222802,0.8674492371095832,0.7891095562123253,0.7067022353346512,0.8758169934640523,0.9757602328217523,1.0538266171466484,0.875261074772478,1.035512306748128,0.8027694028690043,0.7580424616899625,0.6628274313228075,1.0990295981086244,0.7534440045379827,0.5307227913088676,0.5829239707057217,0.9659376571141277,0.8129679197084152,1.0713958502157008,0.7603112317849328,0.9745505039173304,0.5710435909016585,0.4755915077243053,0.47205131788233845,0.9980845620263861,1.3701051070227448,1.0765216589163866,1.0121994867830195,0.9135041113219481,0.9353092304624773,0.8616557362371043,1.357502989646164,0.9871662890999068,1.162260028229618,1.1646940479716608,1.2736725777389784,0.9315450226488365,3.5,0.05774920926436078,2.222222222222223,1.4375,0.9955555555555557,0.35416666666666674,0.6220408163265307,0.4392361111111111,0.15621063240110855,0.11812500000000001,4931.359907051096,5747.411754621808,2490.469044254436,2214.885419652438,14.634831354575097,0.45661228341364546,7.9523875923889475,0.8403065978048865,1.0,0.42857142857142855,1.4897953897185272,2.9560327884534314,3.916349351386881,4.845752765843133,5.199618567770747,5.199618567770747,0.12499999999999999,0.004124943518882912,0.061728395061728426,0.03885135135135134,0.027654320987654326,0.009081196581196582,0.017772594752186593,0.015687003968253968,0.00743860154290993,0.0073828125000000005,0.3147212202641641,20.727040816326532,11.11111111111111,6.260869565217392,160.49785775059254,1.0,4.169050913343677,148.10674776173596,,123.30101076274583,121.86240792891438,122.00014717365006,123.30057556814603,179.24544789740162,123.29312762585964,124.4004140330256,157.6278400197155,0.03143963073114977,0.01795801257002787,-0.2556404012598845,0.29211572740984504,0.1358622903071611,-0.20808445695850755,0.031421967932284946,-0.05416942878395747,0.027470441738370658,-0.06067265066832918,-0.027194318852407137,-0.012843460053971748,-0.07897443203161662,-0.2608385826177837,-0.2695030873776129,-0.04031612645058037,-0.21193276230605415,0.059108788754160875,-0.07674329104134536,0.05437568215029588,-0.23852467726080365,-0.17047353402767668,-0.21830335179450996,-0.01588007344238444,-0.07946020951334559,-0.0013760247150843674,0.16041544691325768,-0.047991224461812775,-0.03433314768845467,0.1373772396313379,-0.07895187215889457,0.044830583277961064,-0.03891886215715866,0.04100680160461266,0.03461735521532686,-0.02321110543062253,-0.017238180328664355,0.025005658235773817,-0.01536821835574947,-0.05906630302278974,0.02731883066470497,-0.10245516287915463,-0.018001062729012026,-0.06875497567242918,0.020247056428528983,0.05383486314774704,0.009196513201463146,-0.04228845043674178,0.038051396080231205,-0.06191672387885209,-0.10806279507631436,-0.008849304083853598,-0.056852056316249504,0.07998100798899734,0.0396485069413579,0.09553647604399253,-0.043590853543290786,-0.046334569455299394,-0.05385633723644383,0.07769765702215181,-0.05892431293556529,0.010687497157195998,0.08381923311255886,-0.06234288587229762,-0.08199525242065975,-0.04122771994423471,-0.06102609324464687,-0.07193679675046195,-0.004736559268431744,-0.07106233144611314,0.05939794428940414,-0.10914629050214324,0.11137002366946108,0.08333319681806577,0.002971340114594942,-0.0509726573074989,0.01904654297696754,-0.12473129135184528,0.10995218033431077,-0.011855355660354833,0.10008172486384596,0.031880645905959286,0.07178170270695763,-0.0031612997659924754,-0.021035408362405247,-0.04855981182954723,-0.07968194051883266,0.03470296307108457,0.027711514819833215,0.01640486688019136,-0.018581359409948355,0.03172292454897878,-0.05279024064065374,-0.05551857951802824,-0.10152486187915653,0.042853743704757044,28.60178059396314,18.20380369552695,2.701599969404812,16.040876968630332,27.498296647973376,34.79857946526041,38.38338088413241,39.155285159645246,39.155285159645246,53.12488961202855,43.183922519051215,4.495048525163284,3.6822239663894725,1.7636946014245778,9.940967092977335,7982.919850309373,6376.765305779217,1980.4941505736488,90.0,36.0,46.0,59.0,76.0,77.0,92.0,98.0,92.0,374.17610578400075,28.0,4.859812404361672,5.680172609017068,6.52649485957079,7.373374309910049,8.234564993267135,9.095266164130717,9.964535614101061,10.832990615882418,11.706870868999076,0.6289308176100626,0.9650566037735852,1.127514768449314,0.5889396983582659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6672399841825785,0.9550129485756566,0.9950734516071407,0.6103972940485198,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,8.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,9.843390348640755,0.0,0.0,0.0,0.0,9.799819461700956,0.0,0.0,0.0,54.06550936946379,23.259637120317212,37.7464153433042,25.862486722686715,222.26306986822132,-443.38335190102526,-30.107370281209157,-8.365723620774062,-27.71145949381408,406.67235976490576,811.2537728601045,25.666281615629714,15.306674959624612,21.92577764486769,0.4666666666666667,0.8863141255156038,0.19749789393356823,177.12448057259687,0.10534864536723557,210.15225837362485,0.11368587448439638,8.0,0.2857142857142857,0.26009358920682435,0.5160743435426869,0.6837297030315577,0.8459881390256949,0.9077672445029198,0.9077672445029198,3.055900000000001,,1.4327731092436975,1.0593718501661549,0.9284284552673375,1.4447162824396187,-2.9670072109134997,1.0328482562012924,0.987299759323917,-1.3533495828652995,105.65480000000005,9.843390348640755,0.0,9.799819461700956,0.0,6.041840829147961,52.54442792310162,70.74683991328982,0.0,0.0,4.04305126783455,0.0,5.303304908059076,0.0,6.771935555839602,0.0,8.337348564497175,0.0,9.955937677537047,33.33333333333332,18.891729399965353,0.0,0.0,0.0,0.0,0.0,3.364019386318061,0.0,51.14800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.75828272781364,0.0,0.0,0.0,67.45077477964328,4.736862953800049,0.0,17.16874381254195,54.59730361615449,5.022633313741326,0.0,0.0,31.21380401298809,35.363719161676656,34.38005123636802,296.213495523472,,246.57373193924292,243.81228612983068,244.16217956010945,246.570539483583,359.86028373830175,246.64440995393704,248.83755125892628,315.88030292383036,34.38005123636802,296.21349552347203,,245.36138546219053,242.91589456430552,243.37658625180637,245.34808724459566,361.4579030057167,245.77046142945912,248.0021437702676,316.60902962229636,4.822230741454613,216.22387505808683,,183.48834972379873,180.1371778679577,179.83681622551518,183.50852555056292,276.9407173964971,182.70140437946483,184.6635887139128,240.81530218435702,1.3223096629372315,11.392826750902769,,9.483605074586267,9.377395620378103,9.39085306000421,9.483482287830116,13.840780143780837,9.48632345976681,9.570675048420242,12.14924242014732,2.4111153707273068,148.10674776173596,,123.30101076274583,121.86240792891438,122.00014717365006,123.30057556814603,179.24544789740162,123.29312762585964,124.4004140330256,157.6278400197155,50.6156862745098,0.0,0.0,6.090422103266382,0.0,0.0,8.77909416100397,52.738892935178455,6.202457080457192,0.0,5.391908339762187,0.0,0.25116257638398665,4.97365139728731,0.0,0.0,0.0,32.35105658457155,557.4343553210655,78.95915565508194,156.66973778803185,207.56651562350467,256.82489658968603,275.5797840918496,275.5797840918496,720.0,128.27408243924,71.50107431206158,60.41157797376745,35.940000000000005,35.940000000000005,0.875,7.946025783435653,5.807354922057604,4.2149491119491715,4.991418388108534,,4.999378973628361,4.996756657059736,4.990522851783657,4.999410903399219,4.967617704056569,4.996967565583976,4.997374392735599,4.985550511783272,0.16211342738266044,0.1919776303118667,,0.1922838066780139,0.19218294834845137,0.19194318660706375,0.1922850347461238,0.19106221938679113,0.1921910602147683,0.19220670741290766,0.19175194276089508,2.394148963323955,2.5632315605145255,,2.564825144473095,2.5643004783969907,2.5630521292183963,2.5648315312001393,2.5584518350182472,2.5643426865907677,2.5644240980840998,2.5620552760015176,292.3100000000006,566.4262276892206,155.99539177883523,,154.76309871625617,155.22743317380971,155.73656319314284,154.75374893214172,156.4894748583684,155.15344924012112,155.0909001842825,155.49370416659187,21.7856241418931,5.999822760724432,,5.95242687370216,5.970285891300374,5.989867815120879,5.952067266620835,6.018825956091092,5.967440355389273,5.965034622472404,5.980527083330457,7.294858292283342,6.005337911961401,,5.997406997380001,6.000402797296848,6.0036773273402755,5.997346582031445,6.008500199444879,5.9999260673222805,5.999522842852264,6.002116688152427,5.391908339762187,4.97365139728731,9.55063141262038,2.592482134701652,0.0,19.14289197634934,0.0,6.202457080457192,0.0,351.869061247396,139.78911933914748,-278.8594989200472,-18.93559186293592,-5.261499979623532,-17.42871868250295,255.77065530865855,510.22624017526493,16.1424338550109,9.626910191986129,13.789898383115268,1831.0,37.0,1.1039103909378554,0.7331953765532788,0.0,0.0,0.16666666666666666,0.07530800950958866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2687287392826324,0.10985279273275698,0.29740950839602887,0.1302759179322524,18.192023676495612,15.814139437380064,12.775188245478667,9.609263541310158,10.625533178756724,7.014795848474535,8.700673957247856,5.112537276525167,7.06612748468165,3.6258847651497934,5.9854632679373205,2.7098593736555827,3.794350171710506,1.5798222204586987,3.003568964068914,1.0909488324701078,2.5971225635232873,1.5101735726566574,4.27678014032148,2.1074377465560414,6.903616178048503,2.9288978258856138,87.25276451702632,59.781706795716964,38.46343403727184,27.79982412090757,25.251842195626022,25.251842195626022,128.0,146.0,59.05741099999997,32.75258899999999,0.3584905660377358,134.05,7.166666666666667,6.000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,53.0,0.0,2.0,55.0,12.0,0.0,6.0,49.0,12.0,28.0,43.0,0.0,0.0,0.0,21.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,4.0,1.0,1.0,26.0,5.0,0.0,2.0,2.0,0.0,3.0,8.0,0.0,0.0,1.0,0.0,2.0,3.5553480614894135,6.46090649520289,4.007333185232471,4.465908118654584,4.955827057601261,5.469114437490037,5.486092774024455,5.847882818629958,6.163183216430004,6.307529062686427 +3488,COc1ccc(Cl)cc1C(=O)NCCc1ccc(S(=O)(=O)NC(=O)NC2CCCCC2)cc1,1,30.62295081967213,6.274708196721311,3.180327868852459,7.246711192066384,162.79393933128642,122.94260372131151,1.5836439563241307,6.37069344262295,5.342427839868472,7.8644560983606535,221.70292104864268,30.07936507936508,6.351314285714286,3.857142857142857,5.673721340388007,146.2023717640541,115.40016126984133,1.8964045182539693,6.5229380952380955,2.7886618982297997,7.838635269841266,268.3117830257437,23.428571428571427,6.322365178571425,3.3214285714285716,5.288690476190475,153.97576019830422,87.80873009821434,1.5981128230043762,6.44120714285714,3.5504850088183426,7.839790982142854,218.892276976921,19.11111111111111,6.089220915032678,2.784313725490196,3.634713144517066,159.20444980344254,69.64613152287578,1.356170533996536,6.20017908496732,2.856817692783561,7.703361490196079,180.12491946067172,17.96794871794872,6.2628653846153854,2.5,4.005698005698006,163.38800624261438,64.85451283333327,1.2192182666978593,6.335648076923078,3.880684815870002,7.86732835897436,163.21886320165638,18.411347517730498,6.2479794326241125,2.4609929078014185,3.123719464144996,164.97978153734402,67.00824241134748,1.1977529438948082,6.325919858156028,3.301604500481568,7.876604936170215,161.10494144247187,18.838709677419356,6.2796532258064515,2.653225806451613,3.0510752688172045,162.80753393494354,67.26972732258068,1.314443361012314,6.369842741935487,3.292450716845877,7.926779758064516,172.81180380145096,18.310924369747898,6.33880504201681,2.638655462184874,3.1055088702147526,160.77208699225812,63.65313699159665,1.345538785778016,6.448808403361348,3.41702977487291,8.01730475630252,177.68644118259462,17.13157894736842,6.177621929824564,2.6228070175438596,3.208576998050683,158.883211558154,60.41578699999998,1.3509403682568595,6.277392982456144,3.2612266262363714,7.798143719298244,178.6532714477008,12.455791453910235,0.14055974200483742,0.01988920020084823,0.5993012631013167,3.968566793076332,1.4774997625984276,57.35836184842785,0.28665141566258406,0.13625751142166076,2.1979248883024924,0.09608191830153182,51.13846987397303,1.6995559309453423,-0.00900658041233143,-0.01311256755018923,0.11394359768452753,0.48979103565186516,-0.12513045536705247,7.340484723000731,-0.013877649908220414,-0.0036912350750564625,-0.27260139986715354,0.0015867941626887818,1.4430010352939606,0.456972012131915,0.03376603375628677,0.004639284041274973,-0.036069412984220846,0.625856328327662,0.07770674701520175,2.048442810090897,0.005129807763239244,0.027581686470610912,0.4676117721122722,0.021108033981840475,-1.8641488954458407,0.31052162869985395,-0.005644452173057727,-0.003991767191558361,-0.052853175669622866,0.1899692922071356,-0.1762541012666626,1.3839842263605435,-0.018758347074848462,-0.003300605817889307,-0.04860364543786712,-0.005276304886767007,-0.5895846946272175,0.17882393070514555,0.02198054803299366,0.0029308169127358957,-0.027001977687277322,0.3936379926257197,-0.14983526518749732,0.9099844924716953,-0.011524851832604214,0.018914115312261004,0.3849857368703699,0.012020278840124271,-1.4558029224348175,0.998923114163241,-0.015882297521637702,-0.00029279608712013165,-0.005533096609048502,-0.532213569721599,-0.02732102948949762,4.637838616518091,0.009540254922397023,-0.007477032407592658,-0.3325807136983221,-0.005789579736248782,1.9334271821064388,-1.8360135586167436,-0.0325218519995491,-0.001004734276974164,-0.038883494724796484,-0.6988861746825125,0.07068058178047115,-8.004546712520916,0.0017181631039354412,-0.030564756265658636,-0.3361027196978231,-0.02494770174944307,0.42069475573296067,-4.461439614813943,-0.048641819425969623,-0.0006792303916540979,-0.005004528013839238,-0.8738202119909543,0.07935078772862406,-20.27342191303729,-0.02630834298283607,-0.05108024182529755,-0.5688195055285751,-0.0352466285922056,-4.985595637367144,-2.1645921441604554,-0.014046008901587442,0.0033213353566065203,0.0036610607410760073,-0.5649515010514927,0.13405096853337156,-9.856834415152033,-0.007496348596930816,-0.017716470294252107,-0.33997307608663563,-0.010861810449935654,-3.486969173015613,,,0.4822510822510824,1.196969696969697,0.5757575757575758,0.030303030303030304,0.6212121212121212,-0.045454545454545456,0.9149096567539066,0.019217822252760874,0.027036004070942695,1.009119939742698,0.22441456433274737,0.2537680243954947,1.9240295964966045,0.47818258872824204,2.0093319070908637,1.4360110989586503,0.18193241390498213,0.27029242331763803,0.053499709161613784,0.5733208081322134,8.084324912721325,1868.0,382.75719999999995,194.0,442.0493827160494,9930.430299208472,7499.498827000002,96.60228133577198,388.61229999999995,325.8880982319768,479.73182199999985,13523.878183967203,1895.0,400.13280000000003,243.0,357.44444444444446,9210.749421135408,7270.210160000004,119.47348465000006,410.9451,175.68569958847738,493.8340219999997,16903.642330621853,2624.0,708.1048999999996,372.0,592.3333333333333,17245.285142210072,9834.577771000006,178.98863617649013,721.4151999999997,397.6543209876544,878.0565899999997,24515.935021415153,2924.0,931.6507999999998,426.0,556.1111111111111,24358.28081992671,10655.858122999995,207.49409170147,948.6274,437.09310699588485,1178.6143080000002,27559.11267748277,2803.0,977.0070000000002,390.0,624.8888888888889,25488.528973847842,10117.304001999992,190.19804960486604,988.3611000000001,605.3868312757203,1227.3032240000002,25462.142659458394,2596.0,880.9650999999999,347.0,440.44444444444446,23262.149196765506,9448.162179999996,168.88316508916796,891.9546999999999,465.5262345679011,1110.6012960000003,22715.796743388535,2336.0,778.677,329.0,378.33333333333337,20188.134207933,8341.446188000004,162.99097676552694,789.8605000000003,408.26388888888874,982.9206899999999,21428.66367137992,2179.0,754.3178000000004,314.0,369.55555555555554,19131.87835207872,7574.723302000001,160.11911550758393,767.4082000000004,406.62654320987633,954.059266,21144.68650072876,1953.0,704.2489000000003,299.0,365.7777777777778,18112.686117629553,6887.399717999998,154.00720198128198,715.6228000000004,371.77983539094635,888.9883839999998,20366.47294503789,759.8032786885243,8.574144262295082,1.213241212251742,36.55737704918032,242.08257437765627,90.12748551850409,3498.860072754099,17.48573635541763,8.311708196721307,134.07341818645205,5.860997016393441,3119.446662312355,107.07202364955657,-0.5674145659768801,-0.8260917556619215,7.178446654125234,30.856835246067504,-7.883218688124305,462.4505375490461,-0.8742919442178861,-0.23254780972855713,-17.173888191630674,0.09996803224939325,90.90906522351952,51.18086535877448,3.7817957807041185,0.519599812622797,-4.039774254232735,70.09590877269815,8.703155665702596,229.42559473018048,0.5745384694827953,3.0891488847084223,52.372518476574484,2.3640998059661333,-208.78467628993417,47.50980919107765,-0.8636011824778322,-0.6107403803084293,-8.086535877452299,29.065301707691745,-26.96687749379938,211.74958663316318,-2.870027102451815,-0.5049926901370639,-7.436357751993669,-0.8072746476753521,-90.20645827796429,27.896533190002707,3.428965493147011,0.4572074383867997,-4.212308519215262,61.407526849612275,-23.374301369249583,141.95758082558447,-1.7978768858862573,2.950601988712717,60.05777495177771,1.8751634990593864,-227.10525589983152,140.84815909701697,-2.239403950550916,-0.04128424828393856,-0.7801666218758387,-75.04211333074545,-3.8522651580191645,653.9352449290509,1.3451759440579802,-1.0542615694705648,-46.89388063146342,-0.8163307428110782,272.6132326770079,-227.66568126847622,-4.032709647944088,-0.12458705034479634,-4.821553345874764,-86.66188566063154,8.764392140778423,-992.5637923525936,0.21305222488799472,-3.7900297769416706,-41.676737242530066,-3.0935150169309407,52.166149710887126,-530.9113141628593,-5.788376511690386,-0.08082841660683765,-0.5955388336468693,-103.98460522692356,9.442743739706263,-2412.5372076514373,-3.1306928149574924,-6.0785487772104085,-67.68952115790043,-4.194348802472466,-593.2858808466901,-246.76350443429192,-1.6012450147809685,0.37863223065314333,0.4173609244826648,-64.40447111987017,15.281810412804358,-1123.6791233273318,-0.8545837400501131,-2.01967761354474,-38.75693067387646,-1.2382463912926647,-397.5144857237799,0.7226280065113592,0.6051039201382249,0.4508578693723425,0.3623997680152194,0.3002887265455885,0.20889977832515463,0.1917989818968832,0.12221511559235511,0.1286649319987204,0.06912285498417936,0.08312380643805942,0.04179599786060538,0.05548685836086002,0.024952863630816342,0.035562295759820416,0.014804387600390139,17.0011050133592,5.693503286302112,3.5812921043657773,2.184656694845231,0.47132141627597596,-0.5281409268850291,4.043825928628287,0.9713045721470237,6.024330629514207,0.6442258939121527,14.544785318199976,10.319765774567832,35.45051806583623,11.705147234672426,2.9545911858231038,0.7506008330860845,3.5372940483067867,2.2380288305612646,7.015032560414722,0.298936955442357,3.7685062929854842,2.4365781060165363,24.441834084768487,14.700841287065519,0.2827554035599914,0.5960306399672446,0.7664467799118148,0.8568009864944797,0.8713933516802136,0.8713933516802136,1.3372093457758096,1083.77575374057,0.0,1.0,1.0,0.0,10.0,7.0,2.0,0.0,0.0,4.180530996451221,2.241412244448662,1.1865662361902283,0.6272895492867301,0.5369653688879286,0.5369653688879286,200.64945936329633,2334.293471480812,68.529142102592,38.267106089849385,76.33488782919132,,19.0,1033.0,16.054405665745655,18.00687135247258,16.84450403401724,29.30117466756081,37.667559606327046,25.30889874666236,24.26546827384644,0.0,15.355672072464749,16.337802844032566,15.914285714285718,39.5,19.0,1.0,20.5,0.0,0.017748917748917632,-1.5,0.17557253790213223,0.051701902409290956,-0.12387063549284127,0.0484487734487733,0.1668487229862471,0.0,0.614519906323184,0.8813852813852809,0.43894736842105175,0.562818003913893,0.8329365079365076,30.192018672878916,0.6341881343411089,0.8921881343411089,33.30095801150903,7.405680622980663,8.374344805051324,63.49297668438795,15.780025428031987,0.5471512770137529,0.16008378216636743,0.052363853979652895,0.25134649910233386,0.391304347826087,0.37207381384912047,-1.107480315120981,-0.04839233343735656,-0.018155415001983304,-0.04815131804873831,0.6279261861508796,1.8690266947759178,0.038990626050247223,0.030639781881572424,0.04918491302041889,-6.650875749653144,0.742046710804802,0.7165396449802405,1.7249406878150457,1.042067051035661,0.6382981942160295,1.3605179304206607,0.7363323706388836,1.2031034933628513,0.6652692417312028,0.6537071993600039,0.616280405696277,0.9886720835672409,0.7850951343254142,0.6062422988880352,0.8363674129211598,1.2016335682254968,0.7472225158278307,1.0815063532817115,0.7854126766087919,0.9773508284073636,0.6232408917597518,0.5009245549539808,0.5986414130395379,1.0166534304392698,0.9267104615212791,0.9030547342989147,1.195206328702841,1.1585333685043528,0.8795120800529423,1.1496168354957281,0.925008042663283,1.077697731356899,0.8911997367502282,0.8380258809710479,0.8978525267413144,1.0086827162379557,0.9005367421048791,0.9737145743491924,1.0159868305230015,0.9994825802000692,0.9630052110363617,1.0932718231860912,0.898368249841385,0.9747678961669713,0.9562669129309472,0.991835406872602,0.9679558167284552,0.974792961157828,0.8403630995117422,1.285502642503083,1.2181778985746867,0.9835893521610537,1.2319549696708054,1.0011805826818756,0.8406432973455333,0.8767242917926668,1.1913443240084836,1.4117034464187972,1.1945459801377127,0.8974025820741183,1.3036056815619288,1.414466369898831,1.2947360708063067,1.2243237378851444,1.2693764001809063,0.9982255485069068,1.2732716639990602,1.1296488944476522,1.368989000511674,1.4774143192876632,1.4260385594051326,0.9585444212675169,1.6407387154395723,1.6059823521166223,0.9980554771031716,1.1516373365489696,1.350751762669905,0.9449441975838253,1.6155834492759447,1.2580733756346232,1.6149124048367947,1.8216784327062112,1.6965510838043123,1.0746518554334594,1.1145544235145561,1.1244823260799375,0.6045982882590955,0.9717960821335854,1.1577574519932046,0.8982404301020491,1.1110199327962487,1.0268813169796385,1.137336670462609,1.3854320823779236,1.1491076620768683,1.0533808099537696,8.0,0.19375573921028466,4.000000000000002,2.5,1.706666666666667,1.1944444444444446,0.7102040816326531,0.4739583333333333,0.2587553539934492,0.255,7327.321206819811,8149.742894542902,3508.4144686626287,3224.463801777946,18.072042758584463,0.4348888823731853,10.212712281103249,0.7695634872651277,0.0,0.391304347826087,1.7502063411116653,3.6893250931142245,4.744171101372658,5.303447788276157,5.393771968674958,5.393771968674958,0.2285714285714286,0.007176138489269802,0.08333333333333337,0.05102040816326531,0.03710144927536231,0.02986111111111111,0.01919470490899062,0.013541666666666667,0.007610451588042623,0.008225806451612904,0.48563649855908325,27.58530612244898,13.347222222222221,8.561236623067776,198.64724753010972,1.0,4.403016362691569,250.5130337189624,,189.0175043444717,205.15259742786407,204.76584652554718,189.0085299394726,258.4303780076061,206.20404934107466,206.22778888239475,246.7773424311965,0.13644704451211748,-0.06407652919583096,-0.6592807864456012,0.1901274112036444,0.1234176117449674,-0.08469067713891872,0.12797584321529798,-0.048412982284224006,-0.02709014010709188,-0.124026713250283,0.016515013342146022,0.028217524670764098,0.036687513099656004,0.24022549611057695,0.23325644040111365,-0.06018577834721337,0.15770336268991306,0.05259340744565778,0.035713063345567696,0.017895630312454187,0.20242323658221656,0.2127514796346928,0.21968789086410187,-0.03645296584039173,0.02492989946474836,-0.04015696167728788,-0.2007002368746895,-0.08819133034379675,0.047868488074475926,-0.11929213508413065,0.024128726514501694,-0.06543957590960868,-0.024223294433106838,-0.022113424210508312,-0.05491464970764315,-0.011529181379110586,0.014356689526060387,0.1563786879477709,0.14735720306193623,-0.04505576635621477,0.09918895489234832,-0.10141136329117727,0.015864896819689025,-0.040205110468284094,0.1388115423136536,0.17515873218383873,0.12510448430475013,-0.028467862374891854,0.08019748226032238,-0.11299321765325315,-0.014721360545591197,-0.009232579588461652,-0.1341072476467104,-0.01849139348858444,0.08085723627836157,0.03328172965880904,-0.0548742768716385,-0.15131577765388596,-0.060256704264370214,0.03780768542491058,-0.14740240035412328,-0.23137387373996354,-0.050516575167829744,-0.06488138290177926,-0.17610543330196887,0.047837964898327735,-0.139553265723894,0.005993911106156483,-0.2243161198730052,-0.15291820092969732,-0.25965032953599276,0.008226580825936554,-0.35818194542855547,-0.34605797315916814,-0.03415071419639741,-0.008350604815917404,-0.2201853358032034,0.05370612553539269,-0.3534518988985556,-0.0917781721817955,-0.37488019040084536,-0.25879842780609635,-0.3668393514125297,-0.09749207689736855,-0.17378198343879042,-0.09992910275193906,0.16699190128645158,0.006108882070647456,-0.14235655603355907,0.09072825047201413,-0.17184651195581874,-0.026151444532737732,-0.13002197170199992,-0.15467911478503915,-0.11304739374424508,-0.06818681086096222,15.116955993770816,20.519597732906412,5.159098788047987,21.18338771772728,38.72316771578308,45.12452020367679,46.18518958253953,46.276236356381524,46.276236356381524,66.30795293399851,47.38836626563546,6.00376965886441,8.919649969482055,1.765490402333255,18.919586668363042,13394.214036037523,10547.254084428649,3466.1374284609483,83.0,48.0,58.0,70.0,80.0,76.0,74.0,72.0,76.0,493.14381967600076,35.0,5.117993812416755,5.937536205082426,6.80128303447162,7.635786861395585,8.5016733797582,9.34145634983372,10.208432264538738,11.051064593306913,11.91893042733086,0.7103825136612021,0.9906885245901641,1.1279487123119194,0.674249424366462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6819495828016099,0.9791706846673096,1.0149964777381109,0.6346128871878893,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,7.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,15.37044016181271,5.749511833283905,0.0,0.0,15.930470882759089,4.794537184071822,17.934429032852847,0.0,0.0,42.99613889593376,55.15775170278308,17.60923054880186,17.568732508492303,291.79486951957597,-868.529474576969,-37.9511647837365,-14.238188107819168,-37.76215106856387,492.4443288828723,1465.763996903843,30.577977318855496,24.028917982030215,38.57273676062745,0.47368421052631576,0.8355121953935073,0.16661228247400706,31.95298418310349,0.11033398871907638,59.95026664791885,0.16448780460649268,10.0,0.22857142857142856,0.2951077145208518,0.6220685360229216,0.7999293901156271,0.894230765319224,0.9094606052628553,0.9094606052628553,3.641700000000003,,2.95063025210084,2.077592295817583,1.5861801030900966,2.960371900650826,-6.3079338910782905,1.981823164402027,1.9444032572524377,-2.7120787701113374,126.20940000000004,22.74373430627263,0.0,15.355672072464749,0.0,49.4622540422218,13.65455394719011,58.614105776366586,0.0,5.749511833283905,4.2626798770413155,0.0,5.572154032177765,0.0,7.069023426578259,0.0,8.648747631156539,0.0,10.271285406914535,43.33333333333333,10.980284566529098,0.0,0.0,0.0,0.0,0.0,2.0194371401144373,0.0,60.43200000000001,0.0,49.50415431317343,0.0,0.0,-3.9669749258931923,0.0,0.0,-1.021427226368941,68.80487145102708,20.092535026264798,4.794537184071822,5.749511833283905,40.05248600235658,16.444112776333593,0.0,48.02554828209587,47.360052954749044,5.022633313741326,0.0,0.0,41.12921488635418,41.598924550898204,41.32223763839339,501.02606743792484,,378.600042568388,410.17928017113314,409.4355609236344,378.58126368270166,519.862453901673,412.287988187337,412.3377351431378,494.7052637345614,41.32223763839339,501.02606743792484,,376.007064468057,408.2276025599107,407.9455129480043,375.9797247397055,523.1686899062904,410.42627551774746,410.51117450753725,496.2667636325043,4.745723656375901,391.37982935134016,,296.6033144945314,322.5110188071877,321.46869070199136,296.60082558008713,399.66718539136184,324.0481497036522,323.9309565010549,384.74748635108915,1.2521890193452543,15.18260810417954,,11.472728562678425,12.429675156701004,12.407138209807103,11.472159505536414,15.753407693990091,12.493575399616274,12.495082883125388,14.991068598017012,2.37286182818795,250.5130337189624,,189.0175043444717,205.15259742786407,204.76584652554718,189.0085299394726,258.4303780076061,206.20404934107466,206.22778888239475,246.7773424311965,59.72941176470589,0.0,1.4762971499942044,5.964797870782417,0.0,0.0,0.0,61.91478514202477,5.764093645767151,7.604471897107153,5.190221033290695,0.0,0.012422313281325925,0.0,0.0,0.0,0.0,38.71138611846125,655.2414143708738,106.76258680781159,225.0488306799677,289.3944371837322,323.51031508484556,329.02009008917247,329.02009008917247,705.0,144.5141569281348,128.99778403157435,68.82389037386841,121.97999999999999,113.6,0.9,7.850432310300216,6.129283016944966,4.586753122831801,5.6617032567782335,,5.646213227376126,5.654766025892804,5.655370135057463,5.646239963657668,5.636411688298875,5.654404013388434,5.653542219609623,5.647277271443364,0.13899251887369093,0.17156676535691617,,0.17109737052654928,0.17135654623917587,0.1713748525774989,0.17109818071689903,0.170800354190875,0.17134557616328588,0.1713194612002916,0.17112961428616252,2.7170948615864816,2.927647244176954,,2.9249075636862765,2.926421202452961,2.9265280286054733,2.9249122989339837,2.9231701060261637,2.926357181396909,2.9262047587088764,2.9250959986206304,355.8300000000013,370.1680013307579,213.52654021231984,,213.62217261838583,213.0954586734573,213.27317769936133,213.61503504900307,215.8641853136576,213.13397983472683,213.20465496589532,214.45746386371744,11.217212161538118,6.470501218555147,,6.473399170254116,6.457438141619918,6.462823566647313,6.47318288027282,6.541338948898715,6.458605449537177,6.460747120178646,6.498711026173256,7.10787942870842,6.557683603543212,,6.558131374564363,6.555662696573097,6.556496336860095,6.558097961887492,6.568571906700746,6.555843449744484,6.556174994324529,6.5620338835100815,32.247890438446774,24.517860572036895,5.960432930946736,1.1694307992493345,0.10482349454083417,10.289125801906621,5.428139305761584,0.3359543400055667,-2.490677775898988,437.0645797261327,228.83697456997922,-681.1348589311417,-29.762791048436736,-11.166145228379374,-29.61455908396268,386.19414574093537,1149.5095819790383,23.980448421307475,18.84441937670555,30.25025215734312,3998.0,49.0,2.7188646331529815,1.3425756458271891,0.2041241452319315,0.05103103630798288,0.5127281391382528,0.14909576091603594,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.25343678769327627,0.15389611160997793,0.32819862965661417,0.15381987661702717,23.846724214874854,19.968429364561423,15.780025428031989,12.683991880532679,14.41385887418825,10.027189359607423,11.124340950019226,7.088476704356596,9.006545239910427,4.838599848892555,6.649904515044754,3.3436798288484306,4.217001235425362,1.896417635942042,2.6316098862267108,1.0955246824288702,5.0129557172341235,2.298513609734694,7.701745090787801,2.7364882506324135,10.325425019071588,3.1470398053017457,107.18633557461465,54.95063306380715,35.048839930564576,30.49665951294564,29.876443982207203,29.876443982207203,166.0,189.0,69.47020399999998,40.43779600000003,0.4262295081967213,169.1,11.45138888888889,7.347222222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,12.0,12.0,61.0,0.0,0.0,63.0,12.0,4.0,10.0,53.0,16.0,35.0,47.0,0.0,0.0,0.0,23.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,5.0,3.0,0.0,33.0,10.0,0.0,3.0,5.0,0.0,3.0,8.0,1.0,0.0,1.0,0.0,2.0,3.828641396489095,6.159491715863525,4.382026634673881,4.799914262780603,5.2665686682334565,5.673323267171493,5.754158681981268,5.857307959089541,5.710840839023647,5.91350300563827 +9568614,COc1ccc2nc([S@@+]([O-])Cc3ncc(C)c(OC)c3C)[nH]c2c1,0,28.511627906976745,6.260193023255813,3.372093023255814,8.356014929658341,162.00798360531005,112.93327960465118,1.6239199347007207,6.334523255813952,4.381278536115256,7.7963603023255805,227.1225711918848,29.933333333333334,6.417644444444445,3.911111111111111,7.182716049382715,146.0420814407777,114.85861980000004,1.8983139973333338,6.574082222222224,3.0685718640451154,7.8717229777777735,270.2168285281239,24.644736842105264,6.340019736842103,3.710526315789474,6.1345029239766085,155.63314067028418,93.28781234210523,1.6003386927504866,6.449881578947368,2.9806873149953077,7.873609026315792,226.94749793327165,25.542168674698797,6.507636144578314,3.5421686746987953,5.366800535475234,153.0844923312708,95.56902114457831,1.6594552804680607,6.6213,3.5962739848282013,7.988583469879516,232.20059541650835,20.606060606060606,6.408202020202021,2.909090909090909,4.007856341189675,159.559058844208,74.440170020202,1.460365094830758,6.489609090909092,3.2381150323537145,7.947358808080809,193.6600525898155,17.660194174757283,5.973949514563107,2.533980582524272,3.256742179072276,157.58223959574283,62.22370632038836,1.3477978021872044,6.078310679611651,2.7977213099471263,7.6037714174757305,166.37191755566843,15.267326732673267,5.965257425742573,2.287128712871287,3.5093509350935093,167.98011441429844,54.892438316831665,1.1031927024298318,6.019532673267327,2.9590718331092365,7.611485881188118,141.83096072123794,17.726027397260275,6.156876712328768,2.7534246575342465,4.281582952815829,164.96850853891735,63.176482493150694,1.3042781740839862,6.22964109589041,3.125458030328655,7.769724958904113,169.73257303872748,18.440677966101696,6.385627118644071,3.0677966101694913,4.101694915254237,158.31108010981248,65.41261350847458,1.3872828912388815,6.468872881355931,3.4844109646369543,7.947890779661016,192.6793006497725,10.597079502433747,0.13168977825851808,0.031391216856887616,0.6457544618712817,4.580173467139394,1.5957578119901032,48.404937858301786,0.28989133539596745,0.12283645213628987,1.4397367556462193,0.0820478301784748,50.70390518239748,1.5719127456282653,-0.0028494681809987403,-0.008994967926082984,0.3630310678444805,1.4299136225342586,-0.28922666454388984,6.9476547432486075,-0.01703783989549928,0.001800343729343179,-0.23079923023538254,-4.951803377201198e-05,-0.36058398172034917,1.4589180495858352,-0.005149906777489967,-0.0035111765506657174,0.027746150123822217,0.3025350267482097,0.03940196035142027,7.138134727071534,0.03824289060333939,-0.00042938359283825064,-0.02970229533357674,-0.006485307228658451,12.428597190146315,-0.6026833130249508,-0.006923233007747587,0.0004939630871981821,-0.17699570591723301,-1.2468505112330819,-0.27396245521504864,-2.9533977994617704,-0.029721357377058864,-0.006994143366326308,-0.007324962743846953,-0.004204705493689193,-7.336583688613405,-1.5818105336764077,-0.025494993198616752,-0.0013929319941177072,-0.15197950298004378,-1.1818462384934754,0.15373451808938138,-7.646845638663541,0.007733066494613372,-0.02769057475785434,-0.15368012672554401,-0.012013254185991872,-8.843375546577715,-1.3265895498485145,0.015366509842633373,0.00028629181818735536,0.018278051111332825,0.6644097930230032,-0.37145603462642757,-6.166191701607271,-0.08536156465306734,0.012511301306925288,0.13624433396711907,0.0075636101014980505,-12.233628087687094,2.6320248033456672,0.010472390749080306,-0.001013388961495555,0.125371487933001,1.0281987395903223,0.06754256080704125,12.2994364751083,0.0529594873075063,0.014382359744898212,-0.02289455073085343,0.005575768486042756,13.022347875950093,-1.1189017388147613,0.023791394089363368,0.007904361117269556,-0.016573193951562124,0.6870501119669497,0.3224678201669311,-4.407329639442274,0.0027717366537798084,0.02032831371270659,0.2738376468007721,0.012148977084984847,6.883336929625193,-3.2443006297494743,-0.039165261112282405,-0.007120593793471332,-0.11087074094104923,-1.6296389094572876,-0.21580162031369698,-14.533074751088543,-0.034343926258794906,-0.03790448524626229,-0.3883004582740075,-0.02684982781347681,-5.416291738573216,,,0.4805555555555556,1.3020833333333333,0.6458333333333334,0.0625,0.65625,-0.010416666666666666,0.841079978146214,0.016075269136265558,0.026825269136265557,0.8966910865794446,0.25706398539781605,0.2232863105647974,1.7377710647256588,0.4803502959626134,2.0260815999694066,1.4469415568854744,0.2572480500268542,0.23215982800967203,0.0,0.5791400430839325,8.025923545767455,1226.0,269.18829999999997,145.0,359.30864197530866,6966.343295028331,4856.131023000001,69.82855719213099,272.38449999999995,188.39497705295602,335.24349299999994,9766.270561251045,1347.0,288.79400000000004,176.0,323.2222222222222,6571.893664834996,5168.637891000002,85.42412988000002,295.8337000000001,138.08573388203018,354.2275339999998,12159.757283765577,1873.0,481.8414999999998,282.0,466.22222222222223,11828.118690941597,7089.8737379999975,121.62574064903698,490.191,226.53223593964339,598.3942860000002,17248.009842928645,2120.0,540.1338000000001,294.0,445.44444444444446,12706.012863495478,7932.228755,137.73478827884904,549.5679,298.4907407407407,663.0524279999998,19272.649419570193,2040.0,634.412,288.0,396.7777777777778,15796.346825576593,7369.576831999998,144.57614438824504,642.4713000000002,320.5733882030177,786.7885220000001,19172.345206391736,1819.0,615.3168000000001,261.0,335.44444444444446,16230.970678361513,6409.041751000001,138.82317362528204,626.066,288.165294924554,783.1884560000002,17136.307508233847,1542.0,602.4909999999999,231.0,354.44444444444446,16965.991555844143,5544.136269999998,111.42246294541302,607.9728,298.8662551440329,768.7600739999999,14324.927032845033,1294.0,449.45200000000006,201.0,312.55555555555554,12042.701123340967,4611.883222,95.212306708131,454.76379999999995,228.15843621399182,567.1899220000003,12390.477831827106,1088.0,376.7520000000002,181.0,242.0,9340.353726478936,3859.344197,81.849690583094,381.6634999999999,205.5802469135803,468.9255559999999,11368.078738336577,455.6744186046511,5.662660465116277,1.3498223248461676,27.767441860465116,196.94745908699394,68.61758591557444,2081.4123279069768,12.4653274220266,5.2819674418604645,61.90868049278743,3.5280566976744168,2180.2679228430916,70.73607355327194,-0.1282260681449433,-0.40477355667373427,16.336398053001624,64.34611301404163,-13.015199904475043,312.64446344618733,-0.7667027952974677,0.08101546782044305,-10.385965360592214,-0.002228311519740539,-16.226279177415712,110.87777176852347,-0.39139291508923746,-0.2668494178505945,2.1087074094104885,22.992662032863937,2.9945489867079402,542.4982392574366,2.9064596858537937,-0.03263315305570705,-2.2573744453518323,-0.49288334937804223,944.5733864511199,-50.02271498107092,-0.5746283396430497,0.040998936237449116,-14.69064359113034,-103.4885924323458,-22.738883782849037,-245.13201735532695,-2.4668726622958856,-0.5805138994050836,-0.6079719077392971,-0.34899055597620304,-608.9364461549126,-156.59924283396435,-2.5240043266630585,-0.13790026741765302,-15.045970795024335,-117.00277761085407,15.219717290848758,-757.0377182276906,0.7655735829667238,-2.74136690102758,-15.214332545828858,-1.1893121644131954,-875.4941791111938,-136.638723634397,1.5827505137912374,0.0294880572732976,1.8826392644672811,68.43420868136933,-38.25997156652204,-635.1177452655489,-8.792241159265936,1.2886640346133047,14.033166398613265,0.7790518404542992,-1260.0636930317708,265.8345051379124,1.057711465657111,-0.10235228511105107,12.662520281233101,103.84807269862254,6.821798641511167,1242.2430839859383,5.348908218058136,1.4526183342347194,-2.3123496238161962,0.5631526170903184,1315.2571354709594,-81.67982693347757,1.7367717685235258,0.5770183615606775,-1.209843158464035,50.15465817358732,23.540150872185972,-321.735063679286,0.202336775725926,1.483966901027581,19.990148216456365,0.8868753272038938,502.48359586263905,-191.413737155219,-2.310750405624662,-0.4201150338148086,-6.541373715521905,-96.14869565797997,-12.732295598508122,-857.4514103142241,-2.0262916492688996,-2.2363646295294752,-22.90972703816644,-1.5841398409951317,-319.56121257581975,0.719467509773838,0.6227932037242415,0.44340027319625863,0.3427162613625739,0.2783213330140469,0.18848779809441263,0.18260194701086999,0.10386704991715712,0.1163596620842043,0.06100934102048122,0.07293356622732022,0.034171916259920235,0.047809983041397344,0.02114249688688949,0.03073960956689677,0.012433301209893544,16.00351567638826,5.694302431604483,3.524150037590362,2.190633016969119,0.464034568816201,-0.627696964342854,3.2579333853209222,0.9871994545943878,7.00188970528379,0.5439016265990579,14.556412038956529,10.334522750438103,32.06175233418245,11.708296702943944,2.922010703795297,0.7760432310534143,3.4670664089290057,2.239541807320006,8.001600737388504,0.39695618525071064,3.6807087312402604,2.43495473916684,24.435471932944836,14.705532984461996,0.3003526697630425,0.6334538995139141,0.7733183399875431,0.8090352399112614,0.8416724610427877,0.8661503768914326,1.5302713880797636,878.8884252759137,0.0,1.0,3.0,0.0,8.0,0.0,2.0,0.0,0.0,3.7141224665351356,1.815298986301626,1.018010174670171,0.8144081397361367,0.6283616281082303,0.4888267443872998,256.17097431444347,1452.847850521669,80.92794942623897,33.78715931445742,72.74374327814296,,13.0,513.0,11.175854473385288,4.552749873690364,5.752853606746789,5.156436481820707,39.35325608004278,0.0,20.416438654168143,32.04657560476608,14.951935562841626,9.473725907600098,11.533333333333335,31.25,15.5,1.5,15.75,0.0,0.019444444444444375,-0.25,0.16967624259005903,0.05865145531665927,-0.11102478727339976,0.02227777777777773,0.15322204213938384,0.0,0.6108527131782947,0.8569444444444442,0.44117647058823567,0.5522012578616354,0.8346666666666664,20.185919475509138,0.3858064592703734,0.6438064592703734,21.52058607790667,6.169535649547585,5.358871453555137,41.70650555341581,11.528407103102722,0.5607779578606161,0.20231213872832365,0.0,0.4190751445086705,0.29411764705882354,0.28360960084937675,-0.6961120111975383,-0.08773559195845722,-0.016188651423198565,-0.06961120111975383,0.7163903991506234,1.758360648094553,0.04898584048056473,0.04089210809522217,0.05328365600286524,-6.014489392915416,0.7906229798237556,0.7793709971700924,1.1639923094986215,0.5882188721384701,0.5200609940988502,1.3469900000081825,0.7841772684101639,1.149089420869705,0.7298669247335308,0.7444774445851715,0.7759429532801592,0.9767776654528886,0.9083701777665559,1.0546693108861296,1.160293615134145,1.1841774662787623,0.9597853728331047,1.0422611083853917,0.8869329911858217,0.9347438433936744,1.0023126709906551,0.7501751078744912,1.1205694759222034,0.7211691742295077,1.0249867490785844,1.0845676854635067,1.1603164827151164,1.4578918689834717,1.3099170174505315,1.2985854336932319,1.0198844585584728,1.1237591908516642,1.0588633855230396,1.150423851341245,1.106534497690037,1.068697214433528,1.1228112501971848,1.3394405361970116,1.2432056887301985,1.1993553626719455,1.2967484921993004,0.9661956255523203,1.1273485794963498,0.9372447493309506,1.3427010121450083,1.174556155383073,1.308902545977607,1.0906168041751578,1.3986736577771481,0.6881039492178349,0.8172734033659478,0.9618724691418257,0.7414203589332143,1.2370227512769607,1.373209487778116,1.5264021814925892,0.7210502752225243,0.8884841521434856,0.7087395346520802,1.2844333585193315,0.7688527605439937,0.9473502438163701,1.131094184744456,0.6664261903577292,0.8206570932616319,0.8612334237181464,0.7675291207280144,0.749535757255483,0.9227929611245006,1.6663336103872515,0.9257901666299192,0.7317122287673032,1.4128689101080707,0.823211725630977,0.7557787502416816,1.025641908170992,0.8676980099554947,0.8622130115997856,1.3705156647722447,1.1617276011129205,0.8395836349751366,0.9355525118540408,0.8125990576724493,0.8532746287095646,1.2966439051733236,1.5378349702902019,1.7360792257889321,1.320287880078358,1.5468673836443227,1.1316556583753672,1.285942853742113,1.101611605061191,1.5159759467203222,2.194620230710891,1.6347645876394652,1.0378389303762527,5.5,0.09907152331394756,3.333333333333335,2.1041666666666665,1.742777777777778,0.6808333333333334,0.6026757369614513,0.33425453514739234,0.195523116654069,0.21001543209876544,4878.834060970912,5381.316115236197,2508.107694324508,2316.12670634882,16.726625657319453,0.4681378511951731,8.896259064355874,0.8801864397516317,1.0,0.29411764705882354,1.7121422881669623,3.610965768400472,4.408254580031927,4.611856614965961,4.797903126593868,4.937438010314798,0.21153846153846156,0.007620886408765196,0.09009009009009013,0.053952991452991456,0.052811447811447816,0.025216049382716044,0.024107029478458046,0.014532805875973576,0.009310624602574714,0.012353848946986202,0.5015342355884648,18.781065088757398,8.131482834185537,4.0656,142.96481028678306,1.0,4.10847611359098,122.25437833173805,,77.57781691935686,91.94673690200952,94.3868891132541,77.58734274230848,115.1894713180878,91.99223434107878,91.1282239497155,107.60945670527974,0.1483345241740667,-0.021637732394119424,-0.2865440982135542,0.5621812767541411,0.3121963901134359,-0.18124721832518503,0.14353194220777285,-0.05877319469458102,0.014656428918556327,-0.16030654863137764,-0.0006035264267720147,-0.007111562322925979,0.1376717093847203,-0.03910635165153265,-0.11185219632208435,0.042967028123071425,0.06605318093708835,0.02469169196939807,0.1474670775937644,0.13192146826707593,-0.0034955714315310867,-0.0206303653894319,-0.07904300716486061,0.24512110350153196,-0.056872585780500876,-0.05257228844410916,0.015735710069799364,-0.2740913402353131,-0.27222779228312033,-0.17168172585875313,-0.061014390889363404,-0.10252585623665489,-0.0569386631141556,-0.0050877097602187536,-0.05124700415041926,-0.14469464752707833,-0.14926853510093285,-0.19359887711685525,-0.044373303541180846,-0.23535184339204437,-0.258035257173701,0.09633950523961766,-0.1579765614212446,0.02667574208125485,-0.22542636388692674,-0.10674182354715628,-0.1464176951402615,-0.1744121190422194,-0.12518444818158128,0.11668718746315775,0.009120124890110446,0.028304955196695472,0.1450621461806705,-0.23277719954457055,-0.12738765866527657,-0.29446055894175155,0.10185332683692061,0.09463142024596463,0.09218537632311888,-0.2412758552557044,0.24837265802726033,0.07952318613918634,-0.03228256381763057,0.194147304177654,0.22448903889059402,0.042326323142236416,0.25409466511687423,0.18268737572017474,0.11708543754536847,-0.01590190056693893,0.06795753737684529,0.2568312604148481,-0.1055858586847246,0.18066242045497918,0.2518016792182824,-0.025664853950115887,0.15000526004008655,0.20207817110089826,-0.0910512405231068,0.009561295269463114,0.16549088938316012,0.19019980265618858,0.1480718875631171,0.13575555777930165,-0.3061504473005399,-0.2974054754302776,-0.22683395250123878,-0.17169179229480738,-0.3558028797706431,-0.13523456923865296,-0.30023950849047565,-0.11847172393712271,-0.30857684821608483,-0.26970239993610534,-0.32724604361957693,-0.10682198381148662,2.403374092040789,11.281815350927427,7.6544682943119335,18.97032184498711,37.194365818131516,40.84287078179799,42.25712488882546,42.95642721440685,43.09707837719755,48.62595839926576,34.726597365251386,6.173953200644501,5.571835872232128,0.0,13.899361034014381,7234.479872145792,6992.705059385892,619.3294416509307,92.0,37.0,50.0,63.0,76.0,80.0,85.0,94.0,89.0,345.11471246800056,26.0,4.844187086458591,5.707110264748875,6.591673732008658,7.470224135899966,8.357259153499912,9.240966565517944,10.128988323424016,11.014933799184323,11.903540859828057,0.7054263565891473,0.990232558139535,1.124783070962007,0.6687997242837476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6916176994847516,0.9773825809393524,1.0114585274140822,0.6454117883735132,4.0,2.0,1.0,0.0,0.0,2.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,14.026475781290461,11.49902366656781,5.752853606746789,0.0,0.0,9.967957041894417,0.0,4.9839785209472085,0.0,0.0,25.98020853630447,34.565968096853965,30.946924512636052,167.87377827226024,-412.0415989813255,-51.932322696091525,-9.58236276700757,-41.20415989813255,424.04475258670374,1040.8062515403435,28.995626730147436,24.20479654744985,31.539583380010406,0.46153846153846156,0.8313769017938282,0.24799381540561963,173.51332047291856,0.1309870405398645,31.74144870014912,0.16862309820617205,7.0,0.19230769230769232,0.31552870447084536,0.6654606679984442,0.8123920927765236,0.8499136742212189,0.884199968760513,0.9099146896649837,2.8997400000000004,,1.8035714285714288,1.389555950537421,1.1082508187380549,1.8006559751755822,-4.377290316528427,1.2713433292533662,1.237629484152691,-1.9973784437328954,93.02110000000005,14.026475781290461,0.0,14.951935562841626,0.0,24.756764487948743,14.219595082555067,41.216775755240356,0.0,11.49902366656781,3.970291913552122,0.0,5.303304908059076,2.3978952727983707,6.834108738813838,4.727387818712341,8.452974619089586,6.842683282238422,10.115893663307597,30.333333333333336,7.235607092622785,8.802208282621793,3.099455861048123,0.0,0.0,1.5501718526916943,4.548533729553718,0.0,42.580000000000005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.3656720513663,9.473725907600098,0.0,11.49902366656781,33.72428051908705,16.928708080132076,13.847474399381248,16.82083097824245,29.552381258818613,0.0,11.033401435232523,0.0,28.758388144201145,29.739561077844318,30.886685106623396,244.5087566634761,,155.53024617765033,183.77767747480758,188.69348324365598,155.55030212658218,231.74126517373702,183.8785234047198,182.15331210908496,215.71825802149272,30.886685106623396,244.50875666347613,,154.07965298578154,182.58124459130266,187.76994089470764,154.10195028910485,234.756232952704,182.7756191019251,181.06987588100725,217.21629185429242,4.810787470065683,186.41674490770225,,115.86553152385629,142.5660653470349,145.89606896703143,115.87459562989179,168.3475767177876,142.26194181284046,140.49327460708088,162.24200651074926,1.2869452127759748,10.187864860978172,,6.480426924068763,7.657403228116983,7.862228468485665,6.481262588607591,9.655886048905709,7.661605141863325,7.58972133787854,8.98826075089553,2.438280402180096,122.25437833173805,,77.57781691935686,91.94673690200952,94.3868891132541,77.58734274230848,115.1894713180878,91.99223434107878,91.1282239497155,107.60945670527974,42.02745098039215,0.0,7.096842176235907,0.0,0.0,0.0,0.0,43.492716678805536,0.2772124590576974,0.0,10.593551863754577,0.0,0.0,0.0,0.0,0.0,0.0,27.752706900061067,492.10739429987984,73.62211839117938,155.27152804122028,189.55494694137286,198.30983444353635,206.30983444353632,212.30983444353632,716.0,125.25888392057034,99.81113655908415,72.64454021657136,83.09,83.09,0.8571428571428571,8.58715569682291,5.700439718141092,4.31729460864553,4.827385122801892,,4.806154576048002,4.834028358474461,4.830021516519363,4.806104154402008,4.7623300036303995,4.8321201253908885,4.830084237526046,4.805219629513029,0.17988727536023041,0.20114104678341216,,0.20025644066866674,0.2014178482697692,0.2012508965216401,0.20025433976675033,0.1984304168179333,0.2013383385579537,0.2012535098969186,0.2002174845630429,2.338097695436014,2.4497736759753206,,2.445366037290364,2.4511488860793946,2.4503196597743724,2.44535554617742,2.4362057823938765,2.450754058064587,2.450332645347881,2.4451714872670425,251.60999999999996,168.61419288772612,136.9919413157974,,138.91910643401576,136.46989984643187,136.9497847811305,138.9237251650371,142.57551836229894,136.66212555735933,136.84734782154865,139.23650217439373,7.025591370321922,5.707997554824892,,5.788296101417323,5.686245826934662,5.706241032547104,5.788488548543213,5.940646598429122,5.694255231556639,5.701972825897861,5.801520923933072,6.003081960207392,5.795390838939485,,5.809360532974821,5.791572813716585,5.795083061547554,5.809393780051919,5.835340550106526,5.792980380203016,5.79433479246681,5.811642679142721,23.273809406586523,11.901664143669915,0.4296249055177628,4.159259620358974,1.7870335154263732,5.497643809513399,1.737963283109387,3.8621827815596546,3.2346593946762527,292.23360539784335,99.36760020465972,-243.89505792180452,-30.73970415436412,-5.671978091204757,-24.389505792180454,250.9999469695745,616.0725073205853,17.163048775443773,14.327267612106636,18.668863858199554,1419.0,39.0,1.6707281859074596,0.9334697243392285,0.0,0.0,0.4722019733928051,0.15322985755489757,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02795084971874737,0.3152352563430426,0.10996855304382712,0.6429315392245266,0.19357522882782616,17.26722023457211,14.947036889381796,11.528407103102724,8.91062279542692,10.297889321519735,6.974048529493267,9.1300973505435,5.193352495857856,7.330658711304871,3.843588484290317,5.542951033276337,2.5970656357539377,3.8247986433117873,1.6913997509511591,2.6128668131862254,1.0568306028409513,4.339411752177487,1.9305963081042945,6.559965224012013,2.7055925454878365,9.542899657155624,3.4453650391896873,77.9594954042403,38.11721372190221,29.982205030353363,27.325732026786362,25.598787430784455,24.828009743071505,126.0,150.0,49.665066999999986,29.940932999999998,0.3953488372093023,124.07,8.5,5.388888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,43.0,0.0,0.0,45.0,16.0,0.0,7.0,38.0,16.0,26.0,29.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,5.0,1.0,2.0,24.0,7.0,0.0,3.0,3.0,0.0,3.0,5.0,1.0,0.0,0.0,2.0,3.0,3.5553480614894135,7.202806615956765,4.21582445975981,4.845170854368724,5.432902890880455,5.945420608606575,6.21869349182644,6.518167364757124,6.887620330848504,6.911755081595902 +3011155,COc1nc(N)nc2c1ncn2[C@@H]1O[C@H](CO)[C@@H](O)[C@@H]1O,0,27.11111111111111,6.936791666666668,3.5833333333333335,10.277777777777779,170.8877622337843,107.30462613888888,1.2948087103537502,6.930652777777778,6.193672839506173,8.374705444444443,206.20741212879952,28.157894736842106,7.029157894736843,4.368421052631579,9.157894736842104,156.6529806782908,107.65272071052631,1.5443545173157893,7.108394736842106,3.948830409356725,8.403553789473683,248.35924057184505,25.46153846153846,7.064253846153846,4.092307692307692,8.569230769230769,164.05400785909382,96.32814913846155,1.372050363665308,7.100449230769231,3.8867521367521363,8.478179199999998,217.98569092509987,23.333333333333332,7.025553086419753,3.432098765432099,7.728395061728395,166.08590025727025,87.2343285432099,1.2198382757733457,7.043022222222222,4.593278463648834,8.47758775308642,190.74217203126142,20.72093023255814,6.892683720930234,3.104651162790698,6.22093023255814,168.6166348503766,76.05121843023257,1.166886038596965,6.9052953488372095,4.189276485788113,8.372106372093022,177.11729280097418,18.63855421686747,6.722215662650604,2.9036144578313254,4.903614457831325,168.87326923664747,67.17940775903615,1.136702171606494,6.742596385542169,4.137215528781794,8.224672096385541,167.43139133079075,16.82894736842105,6.687947368421052,2.6447368421052633,4.605263157894737,171.73491067062096,58.939125434210524,1.077451477668316,6.699723684210527,3.879020467836257,8.192639631578947,153.9863443055806,16.546875,6.5280000000000005,2.375,4.515625,171.88721214170363,59.556915281250006,0.9752854218192656,6.534960937499999,4.0234375,8.082375875,140.7487782233407,15.416666666666666,6.745041666666666,2.1666666666666665,3.1041666666666665,171.7610322868978,52.65615472916667,0.9694485076477917,6.741329166666667,4.272569444444445,8.302643250000001,138.22227860970645,8.33333333333333,0.21285455246913568,0.045455905411221506,0.7121913580246914,4.833333333333335,1.4536485343375258,39.117861138117284,0.18752632702734184,0.1923020833333333,2.137924382716049,0.13684874999999994,41.83522895409612,-0.16081871345029192,-0.05424344135802473,-0.02537412853996752,0.3280133203378817,0.786549707602339,-0.6036503013861733,-0.5289213303687385,-0.01648617643457496,-0.04301224415204678,-0.5986131416504225,-0.03894075292397662,0.9433011265822178,0.17264957264957306,-0.021625065289648675,0.00021617654794261175,0.08139838556505222,0.26495726495726474,0.277592389703427,1.0161182170109253,0.024220924936818457,-0.018557126068376038,-0.31444385090218435,-0.019420218376068398,4.99352163317216,0.4362139917695476,0.018780838477366224,0.0008792089984341351,-0.05615569272976679,0.35390946502057596,-0.24378919889185835,1.9733918004972608,-0.008940211208095919,0.017046784979423874,0.17909093507087334,0.01334223353909462,-1.1163181914837266,-0.3074935400516795,-0.0005390485931668295,0.004142642278446659,-0.09268231409704279,-0.38113695090439276,0.09625243025907293,-1.4482349036211588,0.0026403966148978437,-0.001985739664082668,-0.0681210522538042,-0.0006926543927648706,-0.9889748368456338,-0.9049531459170014,-0.019615964785066182,-0.003764076238284965,-0.1251766324557489,-1.037483266398929,-0.151354673396279,-4.242953984502826,-0.012198456539825417,-0.018324506358768398,-0.02030576007734642,-0.011121305555555551,-3.878197001420494,-1.9108187134502925,-0.018437337556855074,-0.002416133249756308,-0.08024691358024694,-0.8187134502923975,0.07485097361222379,-9.142331942576348,-0.03362712721518284,-0.0192721125730994,-0.2179479369720598,-0.0053620292397660715,-9.661387539525048,1.4027777777777775,0.03464674961419754,0.004971007263022966,-0.1548996913580247,0.29861111111111127,-0.10761003216349303,6.46601492915702,-0.014582435345778024,0.03334483506944441,0.35403404706790126,0.01939006423611112,1.5677358785848579,-2.368055555555556,-0.0332775848765432,-0.0031770633880447018,-0.25733024691358025,-1.7083333333333333,-0.09654310259730126,-11.223678752121913,-0.03777376795959935,-0.0332550347222222,-0.04190779320987651,-0.01665442361111111,-11.72042599313527,,,0.43650793650793657,1.1785714285714286,0.42857142857142855,0.047619047619047616,0.75,-0.32142857142857145,0.7882541614565552,0.016768235926626657,0.029053950212340945,0.9073092861165761,0.2424758527252699,0.23667084288967943,1.6955634475731314,0.4791466956149493,2.02948881562776,1.1052220346270143,0.48505559046095137,0.4392111905397941,0.0,0.9242667810007454,8.252981071666676,976.0,249.72450000000003,129.0,370.0,6151.959440416234,3862.966541,46.61311357273501,249.50350000000003,222.97222222222223,301.48939599999994,7423.466836636782,1070.0,267.10800000000006,166.0,348.0,5952.81326577505,4090.803387,58.685471658,270.119,150.05555555555554,319.335044,9437.651141730112,1655.0,459.17650000000003,266.0,557.0,10663.510510841097,6261.329694000001,89.18327363824503,461.5292,252.63888888888886,551.0816479999999,14169.069910131491,1890.0,569.0698,278.0,626.0,13452.957920838891,7065.980612000001,98.806900337641,570.4848,372.05555555555554,686.684608,15450.115934532176,1782.0,592.7708000000001,267.0,535.0,14501.030597132389,6540.404785000001,100.352199319339,593.8554,360.27777777777777,720.001148,15232.08718088378,1547.0,557.9439000000001,241.0,407.0,14016.48134664174,5575.8908440000005,94.346280243339,559.6355,343.38888888888886,682.6477839999999,13896.805480455632,1279.0,508.284,201.0,350.0,13051.853210967192,4479.373533,81.886312302792,509.17900000000003,294.80555555555554,622.6406119999999,11702.962167224125,1059.0,417.79200000000003,152.0,289.0,11000.781577069032,3811.6425780000004,62.418266996433,418.23749999999995,257.5,517.272056,9007.921806293805,740.0,323.762,104.0,149.0,8244.529549771094,2527.4954270000003,46.533528367094,323.5838,205.08333333333334,398.5268760000001,6634.66937326591,299.9999999999999,7.662763888888884,1.6364125948039743,25.63888888888889,174.00000000000006,52.33134723615093,1408.2430009722223,6.750947772984306,6.922874999999999,76.96527777777776,4.926554999999998,1506.0682423474602,-6.111111111111093,-2.0612507716049397,-0.9642168845187657,12.464506172839506,29.888888888888882,-22.938711452674582,-20.09901055401206,-0.6264747045138485,-1.6344652777777777,-22.747299382716054,-1.4797486111111116,35.845442810124275,11.22222222222225,-1.4056292438271638,0.014051475616269763,5.290895061728394,17.222222222222207,18.043505330722752,66.04768410571015,1.5743601208931997,-1.2062131944444425,-20.43885030864198,-1.2623141944444458,324.57890615619044,35.33333333333336,1.5212479166666641,0.07121592887316494,-4.54861111111111,28.666666666666654,-19.746925110240525,159.84473584027813,-0.7241571078557695,1.380789583333334,14.50636574074074,1.0807209166666643,-90.42177351018185,-26.444444444444436,-0.046358179012347345,0.3562672359464127,-7.97067901234568,-32.77777777777778,8.277709002280272,-124.54820171141967,0.22707410888121454,-0.17077361111110945,-5.8584104938271615,-0.05956827777777887,-85.0518359687245,-75.11111111111111,-1.6281250771604932,-0.3124183277776521,-10.389660493827158,-86.11111111111111,-12.562437891891157,-352.1651807137345,-1.0124718928055096,-1.520934027777777,-1.685378086419753,-0.9230683611111108,-321.890351117901,-145.22222222222223,-1.4012376543209857,-0.1836261269814794,-6.098765432098767,-62.222222222222214,5.688673994529008,-694.8172276358024,-2.5556616683538955,-1.4646805555555542,-16.564043209876544,-0.40751422222222144,-734.2654530039036,89.77777777777776,2.2173919753086424,0.3181444648334698,-9.91358024691358,19.11111111111112,-6.887042058463554,413.8249554660493,-0.9332758621297935,2.1340694444444424,22.65817901234568,1.2409641111111116,100.3350962294309,-113.66666666666667,-1.5973240740740735,-0.1524990426261457,-12.351851851851853,-82.0,-4.63406892467046,-538.7365801018518,-1.813140862060769,-1.5962416666666657,-2.0115740740740726,-0.7994123333333334,-562.580447670493,0.7212333281434509,0.5294381021786542,0.4374817655614756,0.2708505818607834,0.2676451944845541,0.13658801206634982,0.17020909311561855,0.0692121347998245,0.10477832765694133,0.03500088778328465,0.06693373420249095,0.017693700110466167,0.041990402008341185,0.008740649497655368,0.026261402237336987,0.004442974905596705,8.013858162826073,5.76259946450271,3.525659585314557,2.2473729214817424,0.47268355230683595,-0.5100414359363374,3.27553277642149,0.9871999806256607,6.008363144462892,0.9975746071092835,14.565397569428526,11.0394920717452,16.00763486880222,11.78562073452549,1.9337046097278703,0.7757864821978595,3.4687793847471404,2.2925981675324536,6.0047789772577,1.1639739089449077,3.6820682950902244,2.4857915222208735,20.799148344297322,14.705666586448382,0.34123090300084546,0.7035133625345008,0.8543669351017683,0.9033552264198882,0.9136579499429642,0.9136579499429642,1.7478008177434667,661.7365205628685,0.0,2.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,3.3298996580003237,1.3763576394898527,0.5629072918469564,0.2987468750600968,0.24319131950454143,0.24319131950454143,151.4162391092585,1576.3657606027082,95.76842361995828,43.78793779451968,94.02543204706926,,10.0,343.0,31.146682298492692,10.213054789681411,11.828327617421866,11.16387793838399,0.0,18.00421726383343,0.0,0.0,14.951935562841626,20.313920779602988,9.166666666666668,24.75,9.0,1.0,15.75,0.0,0.06349206349206343,-6.75,0.2529974890144379,0.020808966861598388,-0.23218852215283953,0.1303418803418801,0.2675714285714283,0.0,0.6953703703703704,0.9777777777777773,0.4423728813559325,0.674561403508772,0.8474358974358972,16.55333739058766,0.3521329544591598,0.6101329544591598,19.0534950084481,5.091992907230668,4.970087700683268,35.60683239903576,10.062080607913936,0.4464285714285717,0.20727272727272725,0.0,0.48,0.5454545454545454,0.3442631678200704,-1.1163398580766504,-0.12261115959246024,-0.031009440502129185,-0.11163398580766504,0.6557368321799297,2.126353413891692,0.07439110390552257,0.059065372608102566,0.08178282361121891,0.44321382003140647,0.778289473684211,1.065727871959229,1.5539361617468082,0.7723669954952386,0.6166817906836054,1.7821438615229905,0.7763393868854678,1.297300611021208,1.010788033949236,1.1528324555863179,1.1333119027500218,0.9759874502369541,0.8462820512820517,1.0561528604235129,1.0121986809956494,1.0920910075839654,0.8896993810786912,1.0041609749182563,0.8410851903547467,0.9461753010963491,1.032907348686559,0.9811145274467483,1.1267198025644853,0.8338775179438664,0.8764403292181074,0.9372794645261247,0.9775372232557356,1.1628746840014446,0.9076557400312186,1.23613636462689,0.8766087762207551,1.06723025589849,0.9237393566640205,0.9247841483397442,0.9609179860251184,0.972758807081581,0.9862403100775198,1.0028889411474506,0.9091397931325949,1.142885938169266,1.0665597433841214,0.9609456572622995,0.985371904322108,0.9679421219055518,1.0036275928848957,1.0029187798618882,1.0175522671120747,0.9720602366724785,1.0528112449799203,1.0208072351830404,1.0583474860594693,1.1924186453288776,1.164485528320177,1.1217636232777792,1.053690933842144,1.0441020653817128,1.0229788663347392,0.996631115275865,1.001413571175919,1.0604250656426308,1.177412280701755,0.98184435230711,0.9960866817974507,0.9789302617323372,1.1142619479733813,0.9602765698176199,1.1835020579680562,1.1027494836831415,0.9983683003619768,0.9660124325068742,0.8992437546702462,1.178089546410462,0.8576822916666671,0.7987632744204933,0.8374702334035895,1.130484832069339,0.9476023706896548,0.9380355234956667,0.861347972192843,1.006880041490636,0.7990657105971144,0.7576214698186413,0.7997828540937838,0.9574906621106991,1.3064236111111116,1.2344164330030325,1.182887509034463,1.2229144095341278,1.3640445402298846,0.9360637531393508,1.3061490402926788,1.1116914004904985,1.2508493881997482,1.0685847694667512,1.2136747094741327,1.2193881943622276,4.5,0.0,3.1111111111111125,2.361111111111111,1.5844444444444445,0.8338888888888889,0.44671201814058953,0.38548752834467115,0.15848607961703196,0.035625000000000004,4509.394510306516,4957.954054241971,2181.020980816129,2007.842698532848,12.318511056111063,0.4678338576325359,6.555494508441581,0.8791124056695317,0.0,0.5454545454545454,1.8400253434419882,3.7935673619524595,4.607017709595356,4.871178126382215,4.926733681937771,4.926733681937771,0.19565217391304346,0.0,0.09150326797385624,0.06558641975308642,0.048013468013468015,0.029781746031746027,0.021272000863837598,0.021415973796926176,0.01440782541973018,0.007125000000000001,0.49475787576569413,15.879017013232515,6.2456747404844295,2.698875468554769,118.32464744714628,1.0,3.9913516522118617,85.38251175377046,,63.64750706585788,61.586150924469116,63.020553812581426,63.67466050848651,108.30584022839659,62.91424438561286,63.75752490229955,91.60845388724387,-0.019298245614035037,-0.2548380606794404,-0.5582141266446651,0.4605690825112619,0.16273442226255286,-0.4152656485573908,-0.013521223169672384,-0.08791393025135735,-0.2236701933046147,-0.27999734064024095,-0.2845532233504262,0.022548009181861034,0.020717948717948777,-0.10159550283888973,0.0047557417674766005,0.11429285773814482,0.054818744473916825,0.19096252164553293,0.025975812261902986,0.1291601308507844,-0.09649987013510102,-0.14707903303049033,-0.14191008961403306,0.1193616422812296,0.052345679012345735,0.08823320083834939,0.019342019270769787,-0.07884916335620559,0.07322264793529155,-0.1677084887668262,0.05044733385421079,-0.047674432437384714,0.08864586739746994,0.08376860122777295,0.09749620321043946,-0.026683687872453416,-0.03689922480620155,-0.0025324738743607218,0.09113540344141913,-0.1301368137267253,-0.07885592087677089,0.06621437574863187,-0.03702234379604072,0.014080138275799894,-0.010326147432529992,-0.03186317196460534,-0.005061459405108712,-0.02363976154954932,-0.1085943775100402,-0.0921566607691444,-0.08280719972977907,-0.17576263885444263,-0.21465171028943353,-0.10412054208499316,-0.10846589923518084,-0.06504930125382795,-0.09529021236345629,-0.009497885070916166,-0.08126713291539422,-0.09270170376444843,-0.2292982456140352,-0.08661941848543983,-0.053153341197332026,-0.1126760563380282,-0.1693889897156684,0.05149179588058799,-0.2337124698688565,-0.17931950008427305,-0.10021790840244531,-0.10194370705252714,-0.039182157233924854,-0.23093903824755083,0.16833333333333336,0.16277194550124263,0.10935888787281298,-0.21749729144095342,0.06178160919540231,-0.07402754491307238,0.16529571763463305,-0.07776206987540404,0.1733981998086054,0.16559708562663544,0.1416897431369386,0.03747405996761874,-0.28416666666666685,-0.15633954966205627,-0.06989330339596302,-0.3613217768147346,-0.35344827586206884,-0.06641433628335686,-0.28691954073085346,-0.20143181258006423,-0.17293122438293332,-0.01960209329603897,-0.12169949386538875,-0.28015685072491314,0.19999999999999996,4.9973364337250334,10.051997297324872,18.677059787117432,36.15322724194693,41.290555424922644,42.38966245837713,42.44566245837713,42.44566245837713,42.61926512818296,23.209662727167302,10.186167399679979,9.223435001335677,0.0,19.409602401015654,3382.514400632635,2939.9047611603146,705.8440047534336,101.0,34.0,49.0,67.0,81.0,92.0,102.0,112.0,112.0,297.10731858000037,23.0,4.74493212836325,5.638354669333745,6.555356891810665,7.469083884921234,8.39185670010494,9.31154225248515,10.236417809461043,11.158690399249249,12.084509348681506,0.7222222222222222,1.0372222222222223,1.155980388819323,0.6874971091314444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6301047072521625,1.0179738562091503,1.0452172857489685,0.6229867189090168,1.0,3.0,0.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,3.0,1.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,30.526975569284396,18.31189916324491,17.39177910911886,11.828327617421866,0.0,4.567099647791355,4.9839785209472085,9.967957041894417,0.0,0.0,0.0,0.0,20.043999580554992,167.3561527016611,-542.6846703881829,-59.60478455368244,-15.074574177449529,-54.268467038818294,318.7723918109196,1033.6810902145253,36.16363906627584,28.71336361707015,39.756965008250965,0.5,0.5776071755442286,0.14780245620324228,116.14137737774487,0.07600735057528879,102.56537022927597,0.42239282445577137,5.0,0.13043478260869565,0.3559094847466173,0.7337760917023216,0.8911188669681057,0.9422144663652273,0.9529603776772979,0.9529603776772979,-1.9713999999999994,,1.9642857142857144,2.3569101907864116,1.9919188566797454,1.9588287879044064,-8.002380412604852,2.09952570379437,1.9437889666551165,-3.5915955315072723,69.2968,24.793308092122217,0.0,19.519035210632982,0.0,24.539800333979777,19.450346982952638,6.3273200747645415,0.0,5.879988336435371,3.8501476017100584,0.0,5.209486152841421,3.044522437723423,6.767343125265392,5.476463551931511,8.41604600941128,7.627057417018934,10.114437057749631,26.0,1.3766543839758127,12.059460034013604,0.0,0.0,0.0,0.6515074640967502,0.1767007327622423,1.4161111111111113,37.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.61529399749563,10.470530430962235,5.948339280986494,5.879988336435371,66.86719606419045,4.736862953800049,0.0,6.22790117073487,6.3273200747645415,0.0,11.16387793838399,0.0,24.749895928731995,22.68376946107785,27.040309472238434,170.7650235075409,,127.1079393017838,122.94783421172048,125.85140106738383,127.16276589431546,217.83895596931828,125.62853394229292,127.32992704587004,183.697753813929,27.040309472238434,170.76502350754097,,125.33272464710059,120.83627097250147,124.10118671492904,125.39239026478765,224.61406086939797,123.73726345747315,125.57256360910286,186.80850330599495,4.895636443979072,124.45536244690334,,92.34866751082863,89.2629912151212,91.11261115573356,92.38838317326693,155.60864278490044,91.23627501161619,92.51490359465862,133.86179566622596,1.2876337843923065,8.131667786073375,,6.0527590143706576,5.854658771986689,5.9929238603516115,6.055369804491212,10.373283617586585,5.982311140109187,6.063329859327145,8.747512086377572,2.524083041010968,85.38251175377046,,63.64750706585788,61.586150924469116,63.020553812581426,63.67466050848651,108.30584022839659,62.91424438561286,63.75752490229955,91.60845388724387,36.647058823529406,0.0,1.4233086506079833,0.0,0.0,5.606400541698161,28.97113689612923,37.62782228696287,-0.4148804799697654,0.0,10.506794847568656,0.0,-4.273194181993786,0.0,0.0,0.0,0.0,22.427521880724605,280.7913355473385,66.24091236391158,136.56842503028855,165.8526375454328,175.36241254975977,177.36241254975974,177.36241254975974,794.0,119.5907440844108,205.33720896524213,71.50550335365165,148.76999999999998,148.76999999999998,1.0,8.485571097990146,5.523561956057013,4.098148431577531,4.511738411146544,,4.499424176146477,4.498495914137754,4.490595404261425,4.4994118950018915,4.477491496614043,4.498755444186885,4.4995040524971746,4.492036227214905,0.19514992531321576,0.21484468624507352,,0.2142582941022132,0.21421409114941686,0.21383787639340118,0.21425770928580437,0.2132138807911449,0.214226449723185,0.2142620977379607,0.21390648701023357,2.1524726143824604,2.248619880991465,,2.245886772461624,2.245680444331856,2.243922644431782,2.2458840429653897,2.241000300543295,2.2457381352952104,2.2459045248758382,2.24424344640273,195.31999999999977,129.03097028731784,115.41405029386037,,116.39971786350254,116.43713846093483,117.0897248909024,116.40121813494389,118.80844186393982,116.44140532789731,116.39508229339432,117.25447513337575,6.144331918443707,5.495907156850494,,5.542843707785836,5.544625640996896,5.5757011852810665,5.542915149283043,5.657544850663801,5.544828825137968,5.542622966352111,5.5835464349226545,5.601989800023169,5.49046344437181,,5.498967456170706,5.499288888080973,5.50487786503479,5.4989803450487935,5.519449808594091,5.499325532650229,5.498927630795692,5.506283918776242,11.922905958679769,12.059460034013604,28.97113689612923,6.257908005794911,0.1767007327622423,0.0,-2.8965397980179737,-0.4148804799697654,1.4233086506079833,228.33202152203117,81.35660292808372,-263.8145089450969,-28.975587161067597,-7.328180804030472,-26.381450894509697,154.96435886183642,502.5018838761648,17.580177223566977,13.958385663226801,19.326995533698643,866.0,36.0,1.5512397013397141,0.6130315720399444,0.0,0.0,0.5206116245185313,0.11840232903750747,0.0,0.0,0.0,0.0,0.0,0.0,0.17479246499677625,0.07422843462213273,0.49275936539252807,0.14944344478376304,0.8923453800255605,0.18742056460210707,15.14589989101247,11.118200145751738,10.06208060791394,6.229563382798019,9.099936612474838,4.643992410255894,8.34024556266531,3.391394605191401,7.020147953015069,2.3450594814800714,5.421632470401767,1.4331897089477594,3.8631169847673887,0.8041397537842938,2.6786630282083728,0.45318344037086394,4.268006439571666,1.3132375194348962,7.173470936048357,1.7618009193612714,10.899033747990563,2.077237389323743,72.05554936630975,36.025731951736134,25.560318410009366,23.39674271488383,23.22063577035926,23.22063577035926,114.0,140.0,37.88189499999998,23.080105000000003,0.3888888888888889,109.1,7.75,4.694444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,9.0,10.0,36.0,0.0,0.0,38.0,10.0,0.0,4.0,34.0,10.0,23.0,28.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,10.0,4.0,3.0,21.0,10.0,0.0,5.0,5.0,0.0,3.0,3.0,0.0,0.0,0.0,2.0,2.0,3.367295829986474,6.9476593523416375,3.993602992420569,4.638363153343855,5.272678994368022,5.7698822763607245,6.159392648745472,6.522471862345661,6.865422540998849,6.885142143404974 +10253143,O=C(NCC1CCOCC1)c1cnc(Nc2ccc(Cl)cc2Cl)nc1C(F)(F)F,0,39.34782608695652,7.031030434782606,3.630434782608696,10.765432098765434,171.49439243545726,163.19500948802855,1.6156646604876732,7.1184999999999965,7.704487526755597,8.469660913043475,241.235653641344,31.041666666666668,6.714750000000001,4.3125,8.921296296296296,150.91518928414783,121.50733734386672,1.8497791510416677,6.874135416666668,3.4337277091906717,8.098626249999993,280.6141450066052,28.571428571428573,6.937341666666664,3.630952380952381,8.37037037037037,161.93034683418978,111.59069310660614,1.5856277505743457,7.031292857142857,5.509063296100333,8.32513638095238,235.03086673425423,23.236363636363638,6.469755454545457,3.118181818181818,5.881818181818182,163.4720606711341,88.00097718520729,1.392964038203936,6.591222727272728,3.484773662551441,8.014918781818183,196.42912687318676,23.375,6.540916964285715,2.7589285714285716,6.01929012345679,168.9285020621518,89.35444112068573,1.2437945856743478,6.639928571428569,3.7489817400439827,8.09815424107143,177.2066723052097,24.43,7.042103,2.8,7.518888888888889,178.5463833233047,94.72653248268796,1.1500182871222502,7.056282000000001,6.093811728395064,8.475870900000004,173.8721581283621,24.325,6.906411250000003,3.35,5.881944444444445,167.72836859176542,91.86364444455998,1.4177641074386744,6.988696250000001,4.280144032921809,8.376556224999998,211.70369909195637,27.1375,7.0796025,3.3,6.65,166.53654376307415,103.80659122588004,1.4330485954462246,7.176336250000001,4.76611368312757,8.529434099999996,218.10285959053323,29.666666666666668,7.214869047619045,2.9761904761904763,5.891534391534392,173.62391578751001,116.93447427257144,1.2777413651183689,7.3082488095238105,4.999020184205367,8.657875738095239,202.48762249330426,14.347826086956522,0.2665079395085065,0.023706500825633775,0.6810018903591684,5.093211043431584,2.81353801287771,67.81209675043874,0.26650761895111397,0.24498393194707002,3.444628612023733,0.16949991304347825,46.54715899810493,0.0,-0.015989461247637053,-0.013640143683962833,0.034577819785759224,1.0699778096727262,-0.3484790780747931,0.04135078613291424,-0.010824478102643186,-0.01265558049779459,-0.21925491031910585,-0.012229041666666628,0.0075287310933043194,0.7738095238095238,0.08104832343145195,0.0029936264379975134,-0.02339319470699435,1.1105246107871607,0.6991244082566133,4.065626809850759,0.019827308517870887,0.06545954631379962,1.352228736302833,0.043084523809523836,-0.9248133548002754,0.4636363636363636,0.019969017013232504,-0.0005423256967599671,0.00990720054992265,1.0266981938689559,-0.2392906099763093,2.4022793726528677,-0.0158190543675943,0.017600455404708778,0.2797507435737519,0.005424490909090972,-0.970763183761446,2.2589285714285716,0.007100484404536853,-0.005484181491960583,0.0041689170942479205,1.4584816948553558,-0.7152054263095141,10.82809602613094,-0.012298112860850701,0.011488117742371077,0.06299166162236976,-0.001931598214285672,2.315442119326427,3.53,0.10914593005671071,0.007612603816387387,0.0992155009451796,1.4231496651030366,0.9423607145719163,16.8259440032933,0.061518677676337764,0.097502415879017,1.171546898900503,0.06444567999999996,12.648270259381198,-1.8,-0.07368658081285441,-0.0013528089286801812,-0.011980151228733494,-1.7565698732759223,0.027394757321302247,-8.575467499366686,0.03211620063254945,-0.06938170368620042,-0.9059582694651027,-0.04611930000000002,1.724346967518284,-1.925,-0.07020206994328917,-0.0017203939904542945,-0.12638232514177697,-1.547538740694065,-0.5709841583742592,-9.381505760880795,-0.023746671978488045,-0.06296942107750482,-0.9061936079358424,-0.03984831250000005,-6.704610963246478,1.2738095238095237,-0.05818268070933475,0.0011412488694788874,-0.12613646592852643,-1.7810033906442222,-1.0030265535036977,6.299171559571876,-0.054512895777511186,-0.03274288639841584,-0.7780426573873113,-0.023469000000000066,-3.55163896876563,,,0.4673234811165846,1.1896551724137931,0.5172413793103449,0.05172413793103448,0.6724137931034483,-0.15517241379310345,0.8868459707221691,0.023379708748804212,0.032276260472942145,1.0212062346689081,0.23342229418209998,0.24023984404747842,1.9080522053910773,0.4736621382295784,2.01321445465339,1.3024628685570407,0.2831559430586885,0.1304311008419248,0.297164542195736,0.7107515860963494,9.740610126173925,1810.0,323.42739999999986,167.0,495.20987654320993,7888.742052031033,7506.970436449313,74.32057438243297,327.45099999999985,354.40642623075746,389.6044019999999,11096.840067501824,1490.0,322.30800000000005,207.0,428.22222222222223,7243.929085639095,5832.352192505603,88.78939925000005,329.9585000000001,164.81893004115224,388.7340599999997,13469.47896031705,2400.0,582.7366999999998,305.0,703.1111111111111,13602.14913407194,9373.618220954915,133.19273104824504,590.6286,462.761316872428,699.3114559999999,19742.592805677355,2556.0,711.6731000000003,343.0,647.0,17981.92667382475,9680.107490372802,153.22604420243297,725.0345000000001,383.3251028806585,881.6410660000003,21607.203956050544,2618.0,732.5827,309.0,674.1604938271605,18919.992230961,10007.697405516803,139.30499359552695,743.6719999999997,419.88595488492604,906.9932750000002,19847.14729818349,2443.0,704.2103,280.0,751.8888888888889,17854.63833233047,9472.653248268796,115.00182871222502,705.6282000000001,609.3811728395063,847.5870900000003,17387.21581283621,1946.0,552.5129000000003,268.0,470.55555555555554,13418.269487341233,7349.091555564799,113.42112859509396,559.0957000000001,342.4115226337447,670.1244979999999,16936.29592735651,2171.0,566.3682,264.0,532.0,13322.923501045932,8304.527298070403,114.64388763569798,574.1069000000001,381.28909465020564,682.3547279999997,17448.228767242657,2492.0,606.0489999999998,250.0,494.8888888888889,14584.408926150842,9822.495838896,107.33027466994298,613.8929,419.91769547325083,727.261562,17008.960289437557,660.0,12.259365217391299,1.0904990379791537,31.326086956521745,234.28770799785286,129.42274859237466,3119.356450520182,12.259350471751242,11.26926086956522,158.4529161530917,7.796995999999999,2141.169313912827,0.0,-0.7674941398865786,-0.654726896830216,1.6597353497164429,51.35893486429085,-16.72699574759007,1.9848377343798838,-0.519574948926873,-0.6074678638941403,-10.524235695317081,-0.5869939999999981,0.36137909247860733,65.0,6.8080591682419636,0.2514646207917911,-1.9650283553875256,93.2840673061215,58.726450293555516,341.51265202746373,1.6654939155011546,5.498601890359168,113.58721384943797,3.619100000000002,-77.68432180322313,51.0,2.1965918714555754,-0.05965582664359638,1.0897920604914915,112.93680132558515,-26.321967097394023,264.25073099181543,-1.7400959804353733,1.9360500945179655,30.77258179311271,0.5966940000000069,-106.78395021375906,253.0,0.7952542533081275,-0.6142283270995853,0.46691871455576706,163.34994982379985,-80.10300774666558,1212.7467549266653,-1.3773886404152786,1.2866691871455607,7.055066101705412,-0.21633899999999526,259.3295173645598,353.0,10.91459300567107,0.7612603816387388,9.92155009451796,142.31496651030366,94.23607145719163,1682.5944003293303,6.151867767633776,9.7502415879017,117.15468989005029,6.444567999999996,1264.8270259381197,-144.0,-5.894926465028353,-0.10822471429441449,-0.9584120982986795,-140.5255898620738,2.19158058570418,-686.0373999493349,2.5692960506039557,-5.550536294896034,-72.47666155720822,-3.689544000000002,137.94775740146272,-154.0,-5.6161655954631335,-0.13763151923634356,-10.110586011342157,-123.80309925552521,-45.678732669940736,-750.5204608704637,-1.8997337582790434,-5.037553686200385,-72.49548863486739,-3.187865000000004,-536.3688770597182,107.0,-4.887345179584119,0.09586490503622655,-10.59546313799622,-149.60428481411466,-84.25423049431062,529.1304110040376,-4.579083245310939,-2.750402457466931,-65.35558322053414,-1.9713960000000057,-298.3376733763129,0.7247688651768509,0.5701685958928123,0.4431032906018637,0.30697874497588523,0.3014866150724323,0.1661869843681461,0.18595940180018142,0.09282025214787762,0.11919595831350392,0.04960807099361851,0.07912784704112895,0.025110971600135545,0.05057562387849984,0.013377830883747102,0.03162202380885062,0.0062540748082798615,17.002126841042816,5.699324605929348,4.124547563810763,2.1926137496666778,0.5280603625550582,-0.41744630426558016,4.022246072689899,0.9778068752942406,7.014095625803319,0.773085136683035,17.43070314688132,10.95884601439993,35.451528315462824,11.711100736842218,2.2123206384562764,0.5269602691753321,4.007174209036541,2.2443675556281595,8.007391041939698,1.21698270071542,4.030627393582445,2.4407388053694796,22.457058277621112,13.302784291456602,0.34888529593309653,0.7013557228736041,0.829404988445938,0.8548047884511669,0.8548047884511669,0.8548047884511669,1.5380239382799623,889.8953230732446,0.0,2.0,4.0,0.0,7.0,2.0,1.0,1.0,0.0,3.50653056150828,1.4687722349855923,0.7284733696592811,0.5816279891774672,0.5816279891774672,0.5816279891774672,-52.25902530683999,1692.439903856753,70.73230161704072,36.79217182297289,80.59968456224559,,16.0,727.0,23.340857733340435,17.96578232709628,29.12102132148535,18.23639724276716,19.038486817465095,18.19910120538483,0.0,0.0,20.60153424990708,27.938742734265084,13.552380952380954,34.5,15.0,1.5,19.5,0.0,0.03267651888341538,-4.5,0.2830152909775749,0.06263323364772677,-0.2203820573298481,0.0432650034429789,0.23252478430045653,0.0,0.7227743271221528,0.9706075533661738,0.43975903614457795,0.6601410934744261,0.9273425499231949,25.718533150942903,0.6780115537153222,0.9360115537153222,29.61498080539834,6.769246531280899,6.9669554773768745,55.33351395634124,13.736202008657774,0.48147521569954344,0.19325368938861553,0.03689388615600843,0.29515108924806743,0.3888888888888889,0.5398599431623834,-1.3937976453013798,-0.07806052426031565,-0.03029994881089956,-0.0819880967824341,0.4601400568376167,1.187978726430913,0.02983990081059664,0.025825624487628533,0.04096478367003148,-6.913527762520758,0.5227272727272728,0.625572765310921,1.7231079495749457,1.1073039555863982,0.4396946266478494,1.1080434272545574,0.5227592019909056,0.9393727646033599,0.6000019170077894,0.575915230146892,0.6577053441479257,0.885625477534937,0.6229707792207793,0.548971706406936,0.8717358453524942,1.0346237731733914,0.6416075707955826,0.7736917706579433,0.6199147389354795,0.8345544891368724,0.5594540761407243,0.3926756023788778,0.5907449576001541,0.924386418955703,0.8476239669421488,0.5990322023392036,0.9526458164409691,0.9271970222698882,0.6380612122906123,0.8413253269993214,0.8416748213118311,0.9897306466539563,0.628483986836064,0.5014705884269653,0.6633049679412663,1.0244192745833696,0.7783076298701299,0.7858037660446484,1.3246955610392401,0.9234658471299692,0.6426838093787087,1.0412288641600012,0.775374552330105,0.9631914063592316,0.785145056689692,0.7824677726082644,0.8173381487929088,0.953320723737481,0.5856818181818182,0.7460090582035951,0.9317594083024108,0.811623872310895,0.8505330738319,0.6681022000430324,0.5912970021755393,0.6292515556937887,0.7255458094933114,0.8464390702439348,0.6981677687150283,0.661196115033152,0.8872159090909091,1.340785418618738,1.1898719028708746,1.1851145038167936,1.3868869106804926,1.0779056379462288,0.8937476130506384,0.8015481869802328,1.3096253202246968,1.4697476752230514,1.3050971970487095,0.8765199147415206,0.9336647727272728,1.447776072436547,1.1710443469400993,1.3916117279666895,1.3553344183441094,1.4261661480538586,0.9438136846928917,1.051255705215517,1.3902897165432702,1.6425368531166815,1.3917430547931535,1.0357698058633618,0.8137175324675325,1.6050127515645534,1.1270245968174826,1.3167938931297707,1.490671596604771,1.7457645860778337,0.8203702330308735,1.17838653052272,1.459532120576448,1.7141339528324724,1.4448719142236683,0.969364049943708,7.5,0.12784409754106724,3.555555555555557,2.1875,2.0755555555555563,1.0555555555555554,0.7722448979591837,0.7135416666666667,0.4154698916603678,0.29500000000000004,6730.927075673193,7258.444573027871,2885.527294076258,2709.6385282767146,16.690215204265684,0.4765762504702482,8.736055022675217,0.9104979491251748,1.0,0.3888888888888889,2.017031394548733,4.054789721071421,4.795088586397732,4.941933966879546,4.941933966879546,4.941933966879546,0.24193548387096772,0.006728636712687749,0.08080808080808084,0.04971590909090909,0.05062330623306234,0.025745257452574524,0.02206413994169096,0.019284909909909907,0.010933418201588625,0.010535714285714289,0.5183748565071862,23.658688865764827,10.543388429752065,6.738341046635814,174.31942940840642,1.0,4.284544310248675,174.77481729485564,,137.0922858513179,136.14291418688074,134.1381124851163,136.8669623373763,200.95526879597517,137.6850114187581,139.27788606092122,177.2322704352707,0.0,-0.05999619102201905,-0.5753756652780145,0.050774924820726236,0.21007922125131923,-0.12385795979289642,0.00060978480410498,-0.040616017452877184,-0.051658818589493824,-0.06365124807759544,-0.0721477754595058,0.00016174415915718585,0.05393217893217893,0.3041122286297404,0.12627871401250887,-0.03435114503816796,0.21804017177323515,0.24848585839490508,0.05995430026021802,0.07439677933375649,0.26719934566134107,0.3925615468624913,0.2541861115791385,-0.01986830935993166,0.03231404958677686,0.07492841320247094,-0.02287666580356523,0.01454797804554915,0.20158171046005025,-0.08504971636461413,0.03542552859696563,-0.059356856024802895,0.07184330525200096,0.08121361548158228,0.032002912636890514,-0.02085547656734471,0.1574404761904762,0.02664267495231682,-0.23133660814381143,0.006121740854565301,0.28635799349729957,-0.2542014442442155,0.15967794162124743,-0.04614544570715094,0.046893351947886686,0.01828692399595494,-0.01139586551758407,0.04974400520170726,0.24603030303030302,0.40954100751368777,0.3211188303318007,0.14569049271339346,0.27942091010314396,0.3349379714290982,0.24812599535472168,0.23083271659720264,0.3979951464738629,0.3401083341208777,0.38021069652979156,0.2717302308374211,-0.12545454545454546,-0.2764892518727475,-0.057064892816969116,-0.017591950034698173,-0.34488456462868694,0.009736764598848502,-0.1264592588978043,0.12050762660725504,-0.2832092012515771,-0.26300608033701744,-0.27209040507395427,0.037045160319848676,-0.13416666666666666,-0.2634145537005603,-0.07257055788655392,-0.18558292852185984,-0.30384343540797026,-0.20294168970201754,-0.1383456080912304,-0.0891031636241662,-0.2570349025629553,-0.263074400756211,-0.23509340969265632,-0.1440391015812467,0.08878066378066377,-0.2183149996080235,0.048140755899531915,-0.18522190277915465,-0.34968183636157746,-0.3565000895359483,0.09289156155654663,-0.20454535593412282,-0.13365319977593512,-0.2258712752578015,-0.13846024802372647,-0.07630194936086705,6.841047552748432,15.222454003781897,7.093098073557999,26.18804093266481,45.970586087742085,48.897720978475895,50.543349817653734,50.543349817653734,50.543349817653734,58.38321918494832,37.77142318815418,8.211522348701967,3.7825019244158193,8.617771723676345,20.611795996794132,11397.989587613138,11319.411911771565,1460.2741894388146,109.0,44.0,53.0,66.0,83.0,77.0,86.0,96.0,106.0,448.0680658040005,31.0,5.017279836814924,5.84354441703136,6.7226297948554485,7.57095858316901,8.449984441722787,9.309189736018352,10.18855370645454,11.054676478421662,11.934952661377372,0.8333333333333333,1.0403478260869568,1.1534079349187158,0.8131227707934395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6955282608695654,1.0281329923273654,1.0491624180626369,0.6780079248488924,4.0,2.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,3.0,0.0,0.0,5.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,15.37044016181271,0.0,5.693927994848461,5.948339280986494,5.907179729351506,4.794537184071822,9.967957041894417,13.171245143024459,0.0,23.20187978046503,36.95865049739824,30.977997220292814,16.273471080121883,353.89606950690495,-913.6805103018562,-51.171258525963175,-19.862619789170786,-53.74591237069742,301.63704420006496,778.7593935548969,19.56104309107755,16.9295520338021,26.853772191548167,0.5,0.8697575387017314,0.1477387070707983,152.93581036200624,0.16804252083229484,0.8434793779671277,0.13024246129826872,8.0,0.16129032258064516,0.36516860145596847,0.734089660499785,0.8681152894717776,0.8947005584793583,0.8947005584793583,0.8947005584793583,4.702200000000003,,3.3655462184873954,2.7180468362208114,2.5716981193276967,3.4942683254342635,-9.764039896739359,2.6261440991736498,2.4181099182099577,-3.54868920551667,102.65490000000004,22.702645280896327,0.0,15.284745645900749,5.917906046161393,19.017941763295493,25.07530893894474,45.69859089102601,0.0,0.0,4.143134726391533,0.0,5.476463551931511,0.0,6.9930151229329605,0.0,8.592486175451668,0.0,10.236847809109337,38.33333333333333,5.2677354377706225,7.3317853993449225,0.0,0.0,0.0,0.0,-1.479399200570819,0.0,47.85600000000001,0.0,12.337493428972955,0.0,0.0,0.0,0.0,0.0,-0.8750998394120086,53.05676500626093,10.633577208012662,24.80697069869452,0.0,35.63365710618434,10.913161471243523,5.917906046161393,28.893559916469297,24.395944776997904,10.045266627482652,0.0,0.0,37.40364745649822,31.99430000000001,36.406717933200476,349.54963458971133,,273.95246506687806,272.0983768678152,268.0988664792445,273.4929406523089,404.47328204428766,275.18890945136627,278.38900592058656,355.2376668136858,36.406717933200476,349.54963458971133,,270.8894445650781,269.6614344758225,265.73679617957737,270.3097122972134,411.6745774886898,272.8195130849729,276.2070414640914,358.0132300760582,4.8634071952441325,259.0247509925773,,204.40233561571452,201.79610226717585,198.19220986582314,204.19311198542965,295.4986132704618,204.2851626857564,206.69612082904317,263.3372659422415,1.2554040666620854,12.053435675507288,,9.446636726444071,9.382702650614318,9.244788499284294,9.430791056976169,13.947354553251298,9.489272739702285,9.599620893813329,12.249574717713303,2.4317035976220662,174.77481729485564,,137.0922858513179,136.14291418688074,134.1381124851163,136.8669623373763,200.95526879597517,137.6850114187581,139.27788606092122,177.2322704352707,47.29411764705881,0.0,0.0,11.810903335378638,40.48956489194494,0.0,0.0,48.2614712308813,2.900055621354063,5.138342360551505,5.226709263164234,0.0,0.16290883171426174,0.0,-4.838777307991098,0.0,0.0,31.188364543049047,570.1548675152563,92.78344414924172,186.52032716928537,220.57407497429568,227.3289624764591,227.3289624764591,227.3289624764591,780.0,136.09176965586548,85.37824619171361,64.441947385817,76.14,76.14,1.0,8.325646715594324,5.954196310386875,4.295412869709316,5.293683131793887,,5.285576366351768,5.280030012152173,5.2776807663552185,5.285567341949101,5.284192842080262,5.2815212780667435,5.2824627810656795,5.289756099807572,0.1481176851623902,0.18254079764806505,,0.18226125401212995,0.18207000041904042,0.18198899194328338,0.18226094282583108,0.18221354627862973,0.18212142338161186,0.1821538890022648,0.18240538275198523,2.5222584157968475,2.7312249847925325,,2.729692407388547,2.7286425188141736,2.7281974894162273,2.729690700023116,2.72943061845974,2.7289249140577327,2.7291031617711257,2.730482875903238,283.22000000000037,396.96932363528293,180.15562227302945,,180.21559485653626,181.08588328334628,181.458483061788,180.13718946782245,182.64477051248062,180.92265197106545,180.8795994810597,180.9989552036858,13.688597366733894,6.212262837001015,,6.21433085712194,6.244340802874009,6.257189071096138,6.21162722302836,6.2980955349131245,6.238712136933291,6.237227568312403,6.241343282885717,7.048569744254011,6.25853178254234,,6.2588646203562925,6.263682149000072,6.265737621070335,6.258429461293497,6.272253858630194,6.262780339747268,6.262542350679836,6.263201995886267,45.716274155109176,19.66927882831788,5.695690559443448,-1.691864738766609,-1.0570736683938997,4.419228904498878,-2.5029348058975436,1.4127196525322534,0.0,352.75191271485147,231.99059237251964,-598.947829851549,-33.54445443382897,-13.020604996772803,-35.232225285385226,197.73307079383548,510.5025700855931,12.822911484850279,11.097881958382455,17.60353689950321,2436.0,44.0,2.954953909986525,0.9921804219570826,0.28867513459481287,0.013498731178900972,0.6157420880884382,0.10207225219756845,0.11785113019775792,0.003018408052601845,0.0,0.0,0.0,0.0,0.0,0.0,0.2381448361039201,0.09741558304485401,0.37778099293950307,0.12989990492839293,21.018297090128677,16.53488928089156,13.736202008657775,9.516341094252443,13.265411063187022,7.312227312198429,9.855848295409615,4.919473363837514,7.866933248691259,3.2741326855788215,6.5676113044137026,2.08421064281125,3.894323038644488,1.0300929780485268,2.719494047561153,0.5378504335120681,4.799410709990535,1.6429030358357142,6.953170425184305,1.9465880646129194,11.019498180337076,2.183790157689283,91.57662118513906,45.2147728118616,37.80794666305258,34.79321153836149,34.79321153836149,34.79321153836149,150.0,172.0,53.430481,27.437518999999995,0.4782608695652174,149.11,10.45138888888889,6.249999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,46.0,0.0,0.0,48.0,12.0,1.0,7.0,41.0,13.0,31.0,35.0,0.0,0.0,0.0,18.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,5.0,2.0,2.0,29.0,11.0,0.0,4.0,2.0,0.0,3.0,5.0,0.0,0.0,5.0,1.0,2.0,3.6635616461296463,7.042531989626198,4.219507705176107,4.695924549256556,5.1943447761650585,5.708355336501335,5.808892959058818,6.087200772505629,6.400516963126176,6.79167781925386 +54718859,Cn1c(=O)c(C(=O)NCCO)c(O)c2ncc(Cc3ccc(F)cc3)cc21,0,26.355555555555554,6.665659999999997,3.511111111111111,9.955555555555556,164.8153287472552,105.17126502555048,1.5001154952729328,6.701491111111109,7.355555555555555,8.09364284444444,230.6417370266364,26.914893617021278,6.5931702127659575,4.191489361702128,8.76595744680851,148.41530861983185,103.29748367734472,1.8098728281276604,6.723776595744682,3.8132387706855795,7.97210723404255,274.54569170739285,23.871794871794872,6.520564102564103,3.91025641025641,7.6923076923076925,155.06168915560627,90.70726693167178,1.6115467478345382,6.621579487179488,3.7881054131054124,7.93909092307692,240.56377777190704,21.861386138613863,6.5085831683168305,3.386138613861386,6.811881188118812,157.3808630681974,81.91636422298615,1.4580562057276232,6.594042574257427,4.036853685368536,7.960108514851486,215.81731828501543,20.172727272727272,6.5862718181818165,2.9727272727272727,6.154545454545454,162.08258491062304,74.45321937896728,1.3029743680066823,6.63808909090909,4.9267676767676765,8.069897454545455,190.33569204506387,19.346534653465348,6.526741584158414,3.00990099009901,5.089108910891089,160.99419018800535,70.51912556272475,1.327801549232574,6.588404950495052,4.292079207920792,8.020754732673268,192.42182517118553,17.581632653061224,6.505632653061225,2.795918367346939,4.285714285714286,161.89536607391622,62.43979555802447,1.2718863036932953,6.566040816326532,3.85204081632653,8.017049673469385,181.831999692596,16.175257731958762,6.389175257731959,2.597938144329897,4.391752577319588,166.72862008984828,57.94774120278761,1.1537220815240101,6.427178350515466,4.096792668957615,7.943883587628864,162.74576202873203,16.9873417721519,6.334455696202533,2.6455696202531644,4.417721518987341,162.44203913904477,61.169021750744314,1.2495369068125062,6.397497468354432,3.86251758087201,7.850199443037976,175.33541669956,7.769876543209879,0.20163624691358015,0.029454302450070795,0.6587654320987656,4.614320987654322,1.989236714751116,37.065343595763906,0.2258621393069699,0.18084513580246905,3.084444444444446,0.12519208691358022,46.70284761982935,-0.08713422642500598,-0.02070749986866299,-0.014423676482725535,0.2523456790123456,1.0272865773574993,-0.17972591976876812,-0.2975738971721983,0.008879054690750345,-0.017223717362752824,-0.29224586288416077,-0.013798445306015247,1.9619681352675509,0.3965052231718902,-0.0020879848053181388,-0.0006969346868086155,0.02869895536562206,0.381690408357075,0.012759964919478147,1.971953226778824,0.017069656419839305,-0.000728554605887946,-0.02198005698005694,-0.0017924664007597313,4.040848009386814,0.15311575602004682,-0.0026701963085197433,-0.0030766741117571627,-0.0321427698325388,0.18567901234567913,-0.15107156121564033,0.5976441194585732,-0.018338181184373126,-0.0012323965285417479,-0.16332233223322334,-0.0034070783327221615,-1.7365558550645155,0.2327497194163861,0.02697060157126824,0.006751178921469161,-0.0860381593714927,-0.10179573512906834,0.026211256105825437,0.8548455800388955,-0.004443938654652494,0.022316722783389458,0.34252525252525273,0.019937776520763176,-1.8571512819029383,-0.9531548710426601,-0.011698315120400923,-0.002157968350095301,-0.12411196675223084,-1.1709766532208779,-0.006955992786608865,-4.501921021098938,-0.012522576582009247,-0.012179393228211701,-0.09907590759075913,-0.005534213206209512,-4.539677400414621,-2.3687427563618035,-0.054404410178886344,-0.0032027262995879603,-0.056044343663391276,-1.409785840262031,-0.2407980620592962,-11.230714899790156,-0.03711353981026124,-0.0505748410178886,-0.6742403628117917,-0.031664601199294526,-10.568478126216998,0.049825633193330776,-0.00632772457681048,0.0028005924913775326,-0.016841033473335883,-0.17858215603920066,0.0942695717204089,0.43178693333048235,0.030802886117900875,-0.005546922744049895,0.030217640320733104,-0.001931384966272112,4.769266555672399,-0.49842787935614946,-0.001601929051414284,-0.001570218378711638,-0.03907485544616346,-0.12908892014377255,0.04209172483475424,-2.487361535976789,-0.02705219275194147,-0.002201197687138611,-0.04147679324894516,-0.001427639093608366,-5.159366652908418,,,0.4562610229276896,1.3333333333333333,0.6851851851851852,0.05555555555555555,0.6481481481481481,0.037037037037037035,0.7432645090621662,0.018381144696392307,0.02793670025194786,1.1197992100480483,0.2742240030612089,0.20421757677473562,1.8630637191102144,0.4784415798359446,2.0194054838606195,1.4645375547275936,0.22864599346773692,0.2610064464478237,0.06521548921746466,0.5548679291330253,8.247291872800012,1186.0,299.9546999999999,158.0,448.0,7416.689793626483,4732.706926149772,67.50519728728197,301.56709999999987,331.0,364.21392799999984,10378.878166198638,1265.0,309.879,197.0,412.0,6975.519505132097,4854.981732835202,85.06402292200004,316.01750000000004,179.22222222222223,374.68903999999986,12903.647510247463,1862.0,508.60400000000004,305.0,600.0,12094.81175413729,7075.166820670399,125.70064633109398,516.4832000000001,295.4722222222222,619.2490919999998,18763.97466620875,2208.0,657.3668999999999,342.0,688.0,15895.46716988794,8273.5527865216,147.26367677848995,665.9983000000002,407.7222222222221,803.9709600000001,21797.549146786558,2219.0,724.4898999999998,327.0,677.0,17829.084340168534,8189.8541316864,143.32718048073505,730.1897999999999,541.9444444444445,887.68872,20936.926124957026,1954.0,659.2008999999998,304.0,514.0,16260.413208988539,7122.4316818352,134.10795647248997,665.4289000000002,433.49999999999994,810.096228,19434.60434228974,1723.0,637.552,274.0,420.0,15865.74587524379,6119.099964686398,124.64485776194294,643.4720000000001,377.49999999999994,785.6708679999998,17819.53596987441,1569.0,619.75,252.0,426.0,16172.676148715283,5620.930896670398,111.91104190782899,623.4363000000002,397.3888888888887,770.5567079999998,15786.338916787008,1342.0,500.42200000000014,209.0,349.0,12832.921091984537,4832.352718308801,98.713415638188,505.40230000000014,305.1388888888888,620.1657560000001,13851.49791926524,349.64444444444456,9.073631111111107,1.3254436102531857,29.64444444444445,207.64444444444447,89.51565216380023,1667.9404618093756,10.163796268813647,8.138031111111108,138.80000000000007,5.633643911111109,2101.6281428923207,-4.095308641975281,-0.9732524938271605,-0.6779127946881002,11.860246913580243,48.282469135802465,-8.447118229132101,-13.98597316709332,0.41731557046526624,-0.8095147160493827,-13.735555555555555,-0.6485269293827166,92.21250235757489,30.927407407407436,-0.16286281481481482,-0.05436090557107201,2.2385185185185206,29.77185185185185,0.9952772637192955,153.81235168874827,1.3314332007474659,-0.056827259259259785,-1.7144444444444413,-0.13981237925925905,315.18614473217156,15.464691358024728,-0.26968982716049406,-0.31074408528747344,-3.246419753086419,18.753580246913593,-15.258227682779674,60.3620560653159,-1.8521562996216856,-0.12447204938271654,-16.49555555555556,-0.3441149116049383,-175.39214136151605,25.602469135802473,2.9667661728395065,0.7426296813616078,-9.464197530864197,-11.197530864197518,2.883238171640798,94.03301380427851,-0.4888332520117744,2.4548395061728403,37.6777777777778,2.1931554172839496,-204.2866410093232,-96.26864197530867,-1.1815298271604933,-0.21795480335962542,-12.535308641975314,-118.26864197530867,-0.7025552714474954,-454.6940231309928,-1.264780234782934,-1.2301187160493818,-10.006666666666671,-0.5589555338271607,-458.5074174418767,-232.13679012345676,-5.331632197530862,-0.3138671773596201,-5.492345679012345,-138.15901234567903,-23.598210081811025,-1100.6100601794353,-3.6371269014056016,-4.956334419753083,-66.07555555555558,-3.1031309175308635,-1035.710856369266,4.833086419753085,-0.6137892839506166,0.27165747166362064,-1.6335802469135805,-17.322469135802464,9.144148456879662,41.88333253305679,2.987879953436385,-0.5380515061728398,2.931111111111111,-0.18734434172839487,462.6188559002227,-39.375802469135806,-0.12655239506172844,-0.1240472519182194,-3.086913580246913,-10.19802469135803,3.325246261945585,-196.50156134216635,-2.137123227403376,-0.17389461728395025,-3.2766666666666677,-0.1127834883950609,-407.5899655797651,0.7241361957388252,0.5395828664679329,0.445445608812776,0.28487416378767344,0.2839658541525169,0.14833720716535378,0.1805482275699528,0.07656538921875913,0.11232080802196036,0.03926210989722707,0.07105121486637868,0.021166631620112217,0.04374038484067585,0.01092780307685861,0.02787837508501721,0.0059415562681653725,9.004069912316542,5.690113618349736,4.107721147672797,2.18517402312952,0.4980078619991399,-0.44108249391988263,3.32172959003796,0.9772462013883978,7.0040600070994365,0.9969618668859526,17.424772479681696,10.95222878109226,19.000142323073725,11.7026875396694,2.0006551198147355,0.545854933237947,3.9886736280077066,2.233029490511773,8.001921069514228,1.371760554345143,4.009956320969341,2.4278605178287274,20.898420270213958,13.304118966885458,0.3008033399267811,0.7021159711576398,0.8524395714977465,0.9045177480594658,0.9045177480594658,0.9045177480594658,1.5903557549314433,1061.2232045685846,0.0,3.0,2.0,0.0,9.0,1.0,3.0,0.0,0.0,3.744981339634516,1.414416455372101,0.5414339550355622,0.23899750004807618,0.23899750004807618,0.23899750004807618,133.67395718415918,1682.2505853523094,86.4555007454853,37.38334634116244,76.30479761343143,,16.0,661.0,22.779409949384412,19.086016810659167,24.48555992908765,11.937522340542271,11.126902983393991,29.944349339004837,18.19910120538483,0.0,10.30076712495354,5.106527394840706,12.31904761904762,36.0,18.5,1.5,17.5,0.0,0.043738977072310385,1.0,0.21931697931697924,0.0757003620161516,-0.14361661730082764,0.059929453262786536,0.20664561678760518,0.0,0.6595767195767196,0.8992945326278656,0.44025974025974035,0.583876357560568,0.8393650793650791,20.06814174467849,0.49629090680259225,0.7542909068025923,30.234578671297303,7.404048082652642,5.513874572917862,50.30272041597579,12.917922655570504,0.5073543832123948,0.17201391573250865,0.0,0.3977580208735988,0.21052631578947367,0.38818952515682886,-1.0924465138701398,-0.08676415287335137,-0.02427658919711422,-0.06827790711688374,0.6118104748431711,1.7217626367471794,0.05786582284943472,0.0382613919277151,0.05937112540507515,-4.695800732615418,0.7242615936757095,0.7387935814718208,1.4404348836712948,0.7105489808287345,0.4869207228213348,1.140550742291521,0.7225698164705004,1.00616180202021,0.7196852895535436,0.6889941477439174,0.7684867919378915,0.892825513976597,0.7558594322926341,0.7174477704173766,0.9286890160218075,1.1512512974282088,0.7484440858798733,1.0150830830700508,0.7550043296074276,0.9249768113901531,0.7076347789198346,0.6378441176712066,0.7145232103495549,0.8623729969895084,0.8572216062333319,0.8637294463779368,1.067422974896659,1.1389107426484775,0.8612399125186488,1.1025884484978916,0.8624850449636143,1.08587837839319,0.8525075142309325,0.8930309457458707,0.8789075975991177,1.0003060101360197,0.929515698487352,0.8205843844458693,0.8225987300886798,1.1941529235382307,1.0306078767123286,0.8984145944287936,0.9312139628355716,0.9733555244102057,0.8301319947986328,0.9104226705091253,0.8187960887805255,0.9871754523423966,1.0522146024186756,0.91346032020725,1.173772464712442,1.2491279112918785,1.2158064051268138,0.8459684045205326,1.0432500329421521,0.9959387429131339,0.9265982208177252,0.9369719392688544,0.9294140496976345,1.037853788637618,1.2571371500169914,1.2232989339531242,1.2090427621593212,1.0374659608971024,1.2670796058149285,1.0476482619885112,1.2510872167551554,1.1173793529725544,1.2315389194239577,1.2041706692283056,1.2261239335751166,1.1704413374381863,1.0307378203876558,0.9855507240524295,0.9569328428817693,1.0252090449620548,1.0726106835192766,0.7690108314862524,1.0191101988484823,0.7910486296831118,0.9969895479614507,0.9460157593643431,0.9784896809181679,0.8789230796494909,1.0346134228382295,0.9333237531188271,0.9707225347556928,0.9863739016567664,0.9763525229755503,0.9833159717481016,1.041416713177829,1.1170441572418086,0.9414182662413645,0.8817339299683439,0.915763158926082,1.1165039897020055,5.5,0.1362105907560453,3.333333333333335,2.5625,2.342222222222223,0.986111111111111,0.7281632653061224,0.5190972222222222,0.28722600151171573,0.23937500000000006,5479.897945462264,5999.523949173585,2626.0132021149816,2431.6583683480258,15.471451992186179,0.4728246269659694,8.156168475358845,0.896901963088187,1.0,0.21052631578947367,1.7468717566951588,4.077436640957574,4.9504191412941125,5.252855596281599,5.252855596281599,5.252855596281599,0.1896551724137931,0.009080706050403021,0.08130081300813014,0.055706521739130425,0.05447028423772611,0.02595029239766082,0.022755102040816325,0.01789990421455939,0.011489040060468629,0.012598684210526316,0.48090652037321424,21.702734839476815,9.666864961332541,4.950743801652893,153.2710491687814,1.0,4.217004863905398,151.18300615311387,,113.23381218715271,111.42744990635406,110.8793917630194,113.16428718986052,144.51967274585726,112.49650859525613,113.38036758683195,131.6094733955477,-0.011214364339051548,-0.10269730857239212,-0.4896967601651984,0.3830584707646175,0.22263006412124742,-0.0903491869197953,-0.008028359332576299,0.03931183295259058,-0.09524014724712142,-0.09474829848549876,-0.11021819067158997,0.042009604023257194,0.05103108408053116,-0.010355205660086672,-0.023661558035197688,0.04356475608349675,0.08271865121180189,0.0064145030226202175,0.053202075995437234,0.0755755545051306,-0.004028610460851551,-0.007126099165004047,-0.014317729218756984,0.08652251876117141,0.019706330617808233,-0.013242640395227007,-0.104455847052313,-0.04879243546543558,0.04023972602739728,-0.0759444866945067,0.016124067969705166,-0.08119192194248036,-0.006814651237774249,-0.052950323850828866,-0.02721480579738286,-0.037183082907501316,0.029955394802223322,0.1337586965840901,0.22920858278390274,-0.13060515196946978,-0.022060826587795734,0.013176539479417796,0.02306320398272508,-0.019675447457852702,0.12340239445403303,0.11104925334031963,0.159257481940741,-0.039765268641015775,-0.12267310371560862,-0.0580169255253731,-0.07326496201203074,-0.18840084908041035,-0.2537700901939509,-0.003496815001968816,-0.12145903920916169,-0.05544345156932112,-0.06734708773983744,-0.03212115159642766,-0.0442057748428602,-0.09720343901443688,-0.30486234152997654,-0.2698146340831452,-0.10873543194638657,-0.08507480953400849,-0.30552400754822473,-0.12105048146038451,-0.3029977280737709,-0.16431943806137475,-0.2796582877027435,-0.21859377756866433,-0.2529281361141661,-0.2262919428863643,0.006412667294807092,-0.031381880359648326,0.09508262828919248,-0.025564537318969384,-0.038701719389916664,0.04738982094054275,0.011649343873338061,0.13637914797236814,-0.030672225268522615,0.00979678540657773,-0.015427372559140597,0.10211939525604938,-0.06414875147427242,-0.007944648226372013,-0.05331032304612816,-0.059315279069326085,-0.027975713109068854,0.021159736557557235,-0.06710747276766275,-0.11977302984443423,-0.012171727358721462,-0.013447087148433222,-0.011403588907291413,-0.11047220706768694,8.112235313060012,19.046511383609925,10.624554547955446,17.774008495407518,39.41345991381894,44.11015681060768,45.081279423901734,45.081279423901734,45.081279423901734,54.52394806423672,39.54251397764503,6.173441823628897,7.04717405409124,1.7608182088715458,14.981434086591682,7737.304239558938,7480.429739370062,1019.5566387166282,144.0,41.0,55.0,72.0,93.0,99.0,111.0,126.0,136.0,371.12813427600054,29.0,4.948759890378168,5.808142489980444,6.698268054115413,7.581209826196346,8.480321716640333,9.374582815370232,10.279352190868002,11.180204184708169,12.089016220828102,0.7185185185185184,1.0169777777777782,1.1332142798642624,0.6870894332047474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6759450964737195,1.0013943355119823,1.0279841385449546,0.6590242666847592,6.0,1.0,0.0,0.0,0.0,2.0,5.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,2.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.096943041479097,16.897373050359153,5.749511833283905,0.0,11.466446624403513,14.573052889090853,4.39041504767482,0.0,0.0,12.13273413692322,35.74682581170483,19.78927196020284,12.123582682129179,232.04816023693996,-653.0320559227104,-51.865031753867804,-14.51182346494912,-40.8145034951694,365.72211742109914,1029.2185294295991,34.5904689916175,22.871522876213312,35.490294118262035,0.5,0.628422354060852,0.17932538026802197,101.21872288176232,0.10420582385307338,206.11719145158048,0.37157764593914805,8.0,0.1724137931034483,0.31808421056685426,0.742451877251162,0.9014114278844395,0.9564814469986819,0.9564814469986819,0.9564814469986819,1.0911000000000004,,1.7619047619047619,2.090104302625157,1.7219886934026896,1.7923518247588088,-7.881927179765617,1.8777328349212405,1.728268180212008,-3.1006114622630965,97.27380000000001,19.398007021428054,0.0,14.867866772744893,7.04767198267719,6.4208216229260096,13.151638370425493,69.39005830918184,0.0,5.749511833283905,4.07753744390572,0.0,5.407171771460119,0.0,6.9440872082295275,0.0,8.585038738311304,0.0,10.286332066606759,32.33333333333333,9.271898305864966,4.2065173059964724,0.0,0.0,0.0,0.4906707976400444,0.38572188692209475,1.2401526413034347,45.76400000000002,0.0,24.648226880966433,0.0,0.0,0.0,0.0,0.0,-0.7766308203742638,50.99464259389181,10.876055499058339,4.39041504767482,5.749511833283905,38.82295105819698,13.4684936056032,5.817220841045895,21.48489165916281,41.32321609799295,0.0,11.033401435232523,0.0,30.91902449421363,30.417529341317376,34.606105614452986,302.36601230622773,,226.33711291046063,222.70007727177295,221.6486587572694,226.19580757788702,291.4159696205867,224.85392586940696,226.632715308463,264.0023994593227,34.606105614452986,302.3660123062278,,224.83437959521967,220.9517831823551,220.28646662484005,224.66443845828138,296.92127267148027,223.26762854250944,225.1579218061729,266.3195582533584,5.013047616034282,226.38558599790053,,168.9699028526663,166.48615008609414,165.3857700152418,168.89314446961473,206.77310690837896,167.9424901839872,169.16375480409152,191.86440746981313,1.2817076153501106,11.198741196526953,,8.382856033720763,8.248151010065666,8.20920958360257,8.377622502884705,10.793184060021728,8.327923180348407,8.393804270683814,9.777866646641582,2.50652380801714,151.18300615311387,,113.23381218715271,111.42744990635406,110.8793917630194,113.16428718986052,144.51967274585726,112.49650859525613,113.38036758683195,131.6094733955477,45.0627450980392,0.0,1.4824238838862756,0.0,13.031481611896595,0.0,19.194978746928804,46.25928623452295,0.14464804393005548,2.3501218433634974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.656092000814166,375.6522050734741,78.60922905128214,183.4846488430908,222.76886135823506,236.37850183267193,236.37850183267193,236.37850183267193,933.0,132.4398573890852,222.11807258456508,62.30016722851343,104.45,104.45,1.0,9.2694045858126,5.857980995127572,4.074640150973455,5.0936283407359255,,5.076316772734095,5.076848036486206,5.075670235721149,5.076628232312396,5.043030597944486,5.076527598641529,5.076136351725042,5.0636620428224965,0.15091259818420202,0.18865290150873798,,0.188011732323485,0.18803140875874838,0.1879877865081907,0.18802326786342208,0.18677891103498095,0.188019540690427,0.18800505006389046,0.18754303862305544,2.3980342092942784,2.621242186704788,,2.6178377268912367,2.6179423767738257,2.6177103553701184,2.6178990804351088,2.6112589834956434,2.61787925730375,2.617802184543617,2.6153417184257837,262.4700000000002,434.62026873382433,164.85500525483474,,166.1278125384198,166.01845333807577,166.28777317593577,166.09786370948646,170.71813576421115,166.09244514305558,166.14800893463286,168.27940226318742,16.097046990141642,6.105740935364249,,6.152881945867399,6.148831605113918,6.158806413923547,6.15177272998098,6.322893917193006,6.151572042335392,6.1536299605419575,6.2325704541921265,7.06772447742073,6.0983181045471335,,6.106009220154221,6.105350719875694,6.106971633811927,6.105828928074737,6.133265640659981,6.105796304808573,6.106130784197903,6.118877479689139,14.27163425320003,28.854744186962904,21.5451005902923,1.0334209071618905,-1.6038701712984191,7.738868181778293,2.00218679138322,-0.32450862336649267,1.4824238838862756,317.9014193810584,138.71149317487277,-390.3631533885187,-31.003374432252574,-8.674736741967084,-24.39769708678242,218.61781167649644,615.2362461079302,20.677154253440985,13.671916580176227,21.21504296923897,1948.0,46.0,1.8932525927308377,0.7460274421839029,0.0,0.0,0.5306689868820993,0.12017446172857807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18841175211434752,0.06038710244964971,0.4538115754988427,0.10820460423006034,19.55167728494828,14.568737394634187,12.917922655570504,8.26135074984253,11.642600020253193,6.081825493779505,9.930152516347405,4.211096407031753,8.087098177581145,2.8268719126003488,6.607762982573218,1.9684967406704361,4.330298099226909,1.0818525046090024,3.09449963443691,0.6595127457663563,4.673479747431482,1.4725520218578974,7.747865488250505,1.9229094806933429,12.764789025269184,2.566564462713994,85.89256659989503,38.51459841651328,26.9492352096246,24.556823896387172,24.556823896387172,24.556823896387172,140.0,166.0,50.797273999999994,24.326725999999997,0.37777777777777777,139.08,9.86111111111111,6.027777777777778,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,17.0,45.0,0.0,0.0,47.0,17.0,2.0,9.0,38.0,19.0,29.0,28.0,0.0,0.0,0.0,19.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,6.0,3.0,2.0,27.0,8.0,0.0,3.0,4.0,0.0,3.0,5.0,0.0,0.0,1.0,2.0,3.0,3.7013019741124933,8.119027549141943,4.3694478524670215,5.0106352940962555,5.643678550586496,6.251663006373203,6.615772304228651,7.010565670836461,7.478412563194956,7.838860728994306 +5282481,CN(C/C=C/C#CC(C)(C)C)Cc1cccc2ccccc12,0,17.659574468085108,5.567551063829787,2.8297872340425534,4.553191489361702,159.50772002779203,69.17328063829787,1.508345162153723,5.676470212765957,2.2956560283687946,7.159873872340423,210.94176001555036,20.75,5.948437500000001,3.2708333333333335,4.770833333333333,142.81095402734363,76.9307052291666,1.8568251614583346,6.115750000000002,2.6721643518518516,7.397151916666661,256.287178909286,16.59036144578313,5.808891566265059,3.1566265060240966,3.3493975903614457,153.2950240885962,60.343538301204774,1.5714561491311567,5.934487951807229,2.340194109772424,7.335824530120478,211.1419477929897,13.8,5.7023714285714275,2.5714285714285716,2.5142857142857142,150.00142354302372,47.20806483809524,1.4785227487503998,5.835300000000005,2.3246031746031752,7.246196266666669,187.51123553021645,10.0703125,5.447640624999999,2.203125,1.6875,162.49628658206487,34.28055175781248,1.1385493613070237,5.53341015625,1.907552083333334,7.09777103125,138.077582777881,12.623655913978494,5.6663225806451605,2.4408602150537635,1.946236559139785,154.22366911722136,42.77483154838709,1.3600501324503873,5.782139784946237,2.199372759856631,7.2354638279569885,170.1824132067629,10.306930693069306,5.51051485148515,2.1881188118811883,1.4554455445544554,159.66612372146997,34.20844169306931,1.1998789627274251,5.605945544554457,1.9727722772277227,7.137471801980198,145.12191239393962,10.21111111111111,5.518766666666668,2.077777777777778,1.5222222222222221,158.64412471978193,33.46555231111111,1.197050591181955,5.616961111111113,1.9986111111111111,7.140275911111109,143.59801232817568,9.635294117647058,5.494423529411765,2.1411764705882352,1.5176470588235293,166.3465469303443,32.49936301176471,1.1053503378183998,5.566023529411767,1.8862745098039218,7.151126588235292,134.49011287648028,6.358533272974198,0.033044545043005843,0.004172796041141627,0.5477591670439114,2.6989588048890893,1.4110858339596863,30.72325445269354,0.24440351161926202,0.03938189225894064,0.2483212615059604,0.011645895880488902,54.87756804831192,0.2549419043307671,0.00395479006337705,-0.0004835847874125412,0.17121246416176247,1.0647823298626824,-0.14321658293212988,1.1865126993454944,-0.006756497085496471,0.004231582918364227,-0.02019503022148454,0.001460300928021732,-0.31590187604883474,0.5522588316143696,-0.0035611818028110902,-0.0007268121314541409,-0.07608523728231172,-0.11192983795753411,0.38451950702453774,2.748867922851213,0.04673454634317498,-0.0024893262502250135,0.04900456662927548,-0.0019266372288611168,8.821207368911695,-1.7605596154260714,-0.005637675742094044,-0.00017670033204768862,0.019414085235723983,-0.17048869344025525,-0.4353668079916793,-8.537446176300412,-0.07509645773725107,-0.007927566017805946,-0.06937833681835497,-0.0013992462350988345,-16.497856430517047,1.0960877376641016,0.00564857330805795,0.00010892938572310963,0.0004456201901312899,0.04173268447261208,0.12661285889044624,5.28079893078386,0.03448231745839792,0.007046748033612494,0.018183337341557273,0.0017194731354685342,8.3920251710389,-1.2699951810043957,-0.003395197067714201,0.00015422306482745869,-0.08516479504665661,-0.5628343482430136,-0.37156252191671313,-6.171004298952961,-0.058827993474571606,-0.005024719987149346,-0.043281415551564076,-0.0007702500328567855,-12.603481849141714,-0.259734031347906,-0.0014969570927214912,-0.0004876250166925994,-0.031854385076352805,-0.2900689797363618,-0.04200880120147899,-1.2518542843766955,-0.008762796164529662,-0.0017684311255933153,-0.02334583843173814,-0.0005212959226207814,-2.0596323678332973,-0.6750817363311703,-0.0005900769578994987,0.00017442742169393856,-0.021045219053367516,-0.058060459735425805,-0.26707250224402007,-3.298161801156884,-0.03741601520085265,-0.0015036180272622027,-0.02138075717183911,0.00010038875308083093,-7.651379250879774,1.003419167576492,-0.00399087795915106,-0.00021215675865777874,-0.019849279684712267,0.08777461188187366,0.602178031256185,4.964105512262664,0.07537875386509531,-0.0022559598434212977,0.059089043041390406,-0.0023576055175352144,14.506140573962057,,,0.4954545454545455,1.1477272727272727,0.5909090909090909,0.0,0.5568181818181818,0.03409090909090909,0.86854357359702,0.020859327394385844,0.02867750921256766,0.7485052606002754,0.22551183527834048,0.249729453798778,1.6170488341972955,0.4752412890771185,1.9993992113782084,1.902868465365659,0.0965307460125496,0.0,0.0,0.0965307460125496,6.195717017021291,830.0,261.6749,133.0,214.0,7496.862841306225,3251.1441899999995,70.89222262122497,266.79409999999996,107.89583333333334,336.5140719999999,9914.262720730867,996.0,285.52500000000003,157.0,229.0,6854.9257933124945,3692.6738509999973,89.12760775000007,293.5560000000001,128.26388888888889,355.0632919999997,12301.784587645729,1377.0,482.1379999999999,262.0,278.0,12723.486999353483,5008.513678999996,130.430860377886,492.5625,194.2361111111112,608.8734359999996,17524.781666818144,1449.0,598.7489999999999,270.0,264.0,15750.14947201749,4956.846808,155.24488861879198,612.7065000000005,244.0833333333334,760.8506080000002,19688.679730672728,1289.0,697.2979999999999,282.0,216.0,20799.524682504303,4387.910624999998,145.73431824729903,708.2765,244.16666666666674,908.514692,17673.930595568767,1174.0,526.968,227.0,181.0,14342.801227901586,3978.0593339999996,126.48466231788602,537.739,204.54166666666669,672.8981359999999,15826.96442822895,1041.0,556.5620000000001,221.0,147.0,16126.278495868466,3455.052611,121.18777523546994,566.2005000000001,199.25,720.8846520000001,14657.313151787903,919.0,496.68900000000014,187.0,137.0,14277.971224780373,3011.899708,107.73455320637594,505.52650000000017,179.875,642.6248319999999,12923.821109535811,819.0,467.02600000000007,182.0,129.0,14139.456489079264,2762.4458560000003,93.95477871456399,473.1120000000002,160.33333333333334,607.8457599999998,11431.659594500825,298.85106382978734,1.5530936170212746,0.19612141393365645,25.744680851063833,126.8510638297872,66.32103419610526,1443.9929592765964,11.486965046105315,1.8509489361702103,11.67109929078014,0.5473571063829784,2579.2456982706603,12.23721140787682,0.1898299230420984,-0.023212069795801978,8.218198279764598,51.10955183340876,-6.874395980742234,56.95260956858373,-0.3243118601038306,0.2031159800814829,-0.9693614506312579,0.07009444454504314,-15.163290050344067,45.83748302399268,-0.2955780896333205,-0.0603254069106937,-6.315074694431872,-9.290176550475332,31.915119083036632,228.15603759665066,3.8789673464835235,-0.20661407876867613,4.067379030229865,-0.1599108899954727,732.1602116196707,-184.8587596197375,-0.5919559529198747,-0.018553534865007305,2.0384789497510183,-17.901312811226802,-45.713514839126326,-896.4318485115432,-7.885128062411363,-0.8323944318696244,-7.2847253659272715,-0.14692085468537763,-1732.27492520429,140.299230421005,0.7230173834314176,0.013942961372558033,0.05703938433680511,5.341783612494346,16.20644593797712,675.942263140334,4.413736634674934,0.9019837483023992,2.327467179719331,0.22009256133997238,1074.1792218929793,-118.1095518334088,-0.31575332729742067,0.014342745028953658,-7.920325939339065,-52.343594386600266,-34.55531453825432,-573.9033998026254,-5.47100339313516,-0.4672989588048892,-4.025171646295459,-0.07163325305568105,-1172.1238119701793,-26.23313716613851,-0.1511926663648706,-0.049250126685952536,-3.2172928927116335,-29.296966953372543,-4.242888921349378,-126.43728272204625,-0.8850424126174959,-0.17861154368492485,-2.357929681605552,-0.05265088818469892,-208.02286915116304,-60.75735626980533,-0.05310692621095488,0.01569846795245447,-1.8940697148030763,-5.225441376188322,-24.036525201961805,-296.8345621041195,-3.3674413680767388,-0.13532562245359825,-1.92426814546552,0.009034987777274784,-688.6241325791797,85.29062924400182,-0.3392246265278401,-0.018033324485911193,-1.6871887732005428,7.4608420099592605,51.18513265677572,421.94896854232644,6.407194078533101,-0.1917565866908103,5.022568658518185,-0.20039646899049324,1233.0219487867748,0.7273540560083466,0.6389808900263495,0.4545786243346352,0.3384715861549928,0.31936271243626396,0.2179590055653316,0.1927064278866899,0.09957745287964935,0.12675932861982755,0.05560619734149478,0.08393185101938208,0.030879605247966294,0.057200577651847655,0.01829824515196849,0.0373537650100913,0.010047233603942949,7.031481198745506,5.652991204698626,3.1230957745623895,2.1529538052421393,0.35348592508592785,-0.4112402070072851,4.017155771777963,0.9893400346143332,5.009717012531771,0.9895597701237763,14.543899029898848,10.913336892438856,14.02302169405249,11.664022643530728,2.0296641739749566,1.0476754309909724,3.1006850285101724,2.2029420033351643,2.810306261057261,1.1968862289369202,3.259589281825011,2.398934713040469,20.938863052935805,15.592094366263511,0.1931908398326262,0.5133987772696659,0.6910539970122903,0.7703792471806339,0.7951273489607479,0.8024548142285819,1.623467442230609,702.4950517709103,0.0,0.0,5.0,2.0,9.0,0.0,3.0,0.0,1.0,4.432661077079194,2.573099935522288,1.541393020720733,1.0807231387121519,0.9370021280278245,0.8944489365384625,201.63533194428229,693.3304534617694,27.18163870629754,14.751711775782326,28.63968559806409,,13.0,474.0,0.0,0.0,5.41499046939678,0.0,13.08951281182515,16.335899920626588,0.0,6.076020106833881,93.100251536376,0.0,10.9,25.25,13.0,0.0,12.25,0.0,0.00454545454545453,0.75,0.05824468085106371,0.049712934819317656,-0.008531746031746057,0.0,0.024126582278480635,0.0,0.49574468085106405,0.7181818181818179,0.43750000000000033,0.4460317460317464,0.7181818181818179,19.10795861913444,0.4589052026764886,0.6309052026764885,16.46711573320606,4.961260376123491,5.494047983573116,35.5750743523405,10.455308359696607,0.6898734177215193,0.18348623853211007,0.04587155963302752,0.17431192660550457,0.3333333333333333,0.330615815957734,-0.38512358821677306,-0.016548949653815655,-0.008194118898229215,-0.0202696625377249,0.669384184042266,0.779743818689155,0.029119035701748324,0.016590294014662867,0.027847993524612674,-4.9223195679607965,1.006911813564953,0.9948973668203754,1.2671495682372187,1.0236742424242422,0.6799312311304933,1.21976155054132,1.0083130344406832,1.0902068514461956,0.9792769704479741,1.097103008819682,1.0461358955409612,1.0594196718723974,0.9541360658353187,1.5590825809092912,1.7742390743939438,1.8190680075674597,1.3369250231385121,0.8232816849136935,0.9487425970383406,0.800006327881378,1.3798763828548402,0.752195565398701,1.8597346706220863,0.8306905934103819,1.2746275841961443,1.1073861014333979,1.004803879122909,0.9018968909878,1.0844363508570154,1.3369187768958561,1.2762793874532783,1.3272037736772093,1.1545465274089806,1.3514536499496623,1.031374934967968,1.3149724706061507,0.7972721326356256,0.8461348035287158,0.9575652440347048,0.87942923553719,1.0213133700939285,0.8614884447386877,0.7972968014300552,0.8133617817016977,0.8248378886448124,0.9171273658057985,0.8907683289652123,0.8051060557026379,1.2007635434417478,1.236229821640551,1.1995880042843545,1.0374833377765929,1.2048673859172614,1.287635398148607,1.2010292595365166,1.227806144207391,1.217099039319929,1.1357308057233326,1.2795816074258708,1.2160350413559033,1.0172622345532285,1.0748365480890065,1.2525464461157194,0.9287701497422469,1.0717331880789558,1.002419931719907,1.0167342226007794,1.0016818136560286,1.0579989225688367,1.0627091535587285,1.1028004502493616,1.0049449486347497,1.080880282247219,1.010576556878927,1.0026596299417965,0.7841965105601468,0.9085895858958591,1.159490015436054,1.081897328644089,1.1229875054768963,1.0256192657679644,1.067755693407042,0.9928882590668132,1.1103212365803639,0.8366158253134656,1.5631670102016104,1.6799981682551606,1.1351288283908603,1.0302957949365592,0.5674634397723071,0.8294488477121779,0.6087652569209271,1.3581535892491508,0.726124676988152,1.8937816124819502,0.6616923374190979,5.0,0.12386491174369962,2.000000000000001,1.1875,0.8755555555555556,0.48611111111111116,0.2644897959183673,0.2708333333333333,0.09019904257999495,0.11125000000000002,3443.620970095433,4059.2166416932823,1985.720232996315,1736.9619872804926,15.137131673751163,0.456235252425807,8.231038583574623,0.839030581627686,1.0,0.3684210526315789,1.121927774598444,2.9814889161553495,4.013195830956905,4.473865712965486,4.617586723649813,4.660139915139175,0.21739130434782605,0.009528070134130739,0.06451612903225808,0.04241071428571428,0.03502222222222222,0.0220959595959596,0.013920515574650913,0.016927083333333332,0.005637440161249684,0.009270833333333336,0.4367202720206783,18.340264650283554,8.74089490114464,6.57439446366782,134.19688693947325,1.0,3.992796682451897,119.58118804087806,,94.59460656426029,93.61142934542085,92.70332847904542,94.60280880255453,109.88821657093143,94.17358653251914,94.65421588772622,105.26765974672779,0.040094451563908895,0.1196805723374338,-0.11588986920152423,0.3125688705234159,0.3945159622050765,-0.1014938846988818,0.03861936895951046,-0.02764484454716802,0.10744996432728687,-0.0813262227286156,0.12539189281850488,-0.005756484612633124,0.08685317948427611,-0.10776912795066139,-0.17417868601487985,-0.1389027183112616,-0.0414714880993279,0.2724990200954162,0.08947189911419741,0.19121880055463053,-0.06320991977372231,0.19734341848975842,-0.16543486637974608,0.16074340905824894,-0.2768814032803781,-0.1706083631884442,-0.042345786926922396,0.035442739079102704,-0.06316831999488828,-0.30853318594375273,-0.27788222076037017,-0.30726423380625656,-0.201299774162228,-0.27938943446729264,-0.12014929975830192,-0.3006302395906652,0.17238059322938915,0.1709381473010632,0.02610465132949749,0.0008135330578512557,0.01546251257967127,0.08972725531171584,0.17188279773274104,0.1410876514414218,0.17893370860087893,0.07322505222180027,0.1476462741135506,0.15292268716519858,-0.1997308383054755,-0.10274606786976549,0.03695916678095417,-0.1554785390562516,-0.20853758390956345,-0.2633167401830273,-0.20085776747560488,-0.2407002791605357,-0.1275896027065234,-0.17429605217483643,-0.06613918248635844,-0.2296654589001855,-0.040848104460168316,-0.04530118634628728,-0.11685809991307197,-0.05815399721790358,-0.10747440057658898,-0.02977054987760521,-0.040746148371236246,-0.03585380629956156,-0.04490467634124001,-0.09401465782734747,-0.04476220017509697,-0.037531407478190046,-0.10616941161580198,-0.017857015647561276,0.041801089718781784,-0.0384205693296602,-0.021512169667151235,-0.1892673683035855,-0.10735066515284909,-0.1530911522218235,-0.0381804413402925,-0.08610119424399716,0.00862009708063924,-0.1394263543920864,0.15780670234774813,-0.12077267076781144,-0.05084282973958516,-0.03623723869713173,0.03252165676736984,0.4267479814225027,0.1615748591968406,0.30841927501648275,-0.05728419113505497,0.23795402247492248,-0.20244088919643,0.2643364327149384,19.22196322758289,12.824720223381124,2.381101577952299,8.381159019319036,25.199144097272768,30.19470586453091,31.772210620197782,32.38529416492503,32.428187781946306,43.986782650320585,41.863106238044494,2.123676412276091,0.0,0.0,2.123676412276091,6442.4685737306445,6072.125200274041,623.0952848731176,38.0,31.0,34.0,42.0,50.0,47.0,48.0,51.0,47.0,291.19869980000067,23.0,4.6913478822291435,5.476463551931511,6.333279628139691,7.141245122350491,8.00202481821611,8.82217476094608,9.68477168454907,10.513334642573437,11.377254642539828,0.5602836879432626,0.941021276595745,1.1166352942865925,0.5162608034833317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6732045483501086,0.9310805173133078,0.9736405758472678,0.6070385343270783,7.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,60.381458223776434,50.23080360920953,18.50450328122193,0.0,196.7829233101037,-229.22601359960856,-9.849954337955483,-4.877149225523587,-12.064527031558347,398.418255254386,464.10443986216086,17.331684368342057,9.874562550258739,16.575158566505742,0.46153846153846156,1.0,0.2561745601155973,0.0,0.061572257570145866,279.4679321110181,0.0,7.0,0.17391304347826086,0.20198214567394868,0.5367614049876722,0.7225009695802795,0.8054359795890664,0.8313102638110066,0.8389711713283127,4.877300000000004,,0.1428571428571429,0.18566775244299671,0.22524958545764784,0.14250017848218755,-0.5181818181818181,0.16118421052631582,0.14026299311208512,-0.3193246282434288,96.65300000000006,0.0,0.0,4.899909730850478,5.41499046939678,27.315968004984448,13.592428388589765,60.18006118459603,0.0,11.840868637711289,3.8501476017100584,0.0,5.14166355650266,0.0,6.610696044717759,0.0,8.167068178341237,0.0,9.773777421013383,26.33333333333334,15.072607698130302,0.0,0.0,0.0,0.0,2.6466109154226944,1.3701626931636854,0.0,44.228000000000016,0.0,0.0,0.0,0.0,0.0,4.0919850718065005,0.0,0.0,52.48185883146985,0.0,0.0,0.0,18.492338119440245,6.544756405912575,17.25585910710807,26.334663090768867,54.61660969289903,0.0,10.772448428929591,0.0,24.26425776371659,31.6406137724551,26.962485802032678,239.16237608175615,,189.17622611553358,187.205979804256,185.38617972304922,189.1926630434289,220.01197033194552,188.33251995499046,189.29568059426043,210.68046705174805,26.962485802032678,239.16237608175612,,189.0463559856637,187.03719093839888,185.18140737263332,189.06311742662677,220.29461496004473,188.18598885451195,189.1681687823404,210.85464412169904,4.757594259860122,186.68900638989368,,149.08622369087442,147.33855319488632,145.72617780148033,149.1008122077319,176.4739573211064,148.3375821247746,149.19224806725862,168.16664578295945,1.2255675364560308,10.87101709462528,,8.59891936888789,8.509362718375273,8.426644532865874,8.59966650197404,10.000544105997523,8.560569088863202,8.604349117920929,9.576384865988548,2.3787971299300614,119.58118804087806,,94.59460656426029,93.61142934542085,92.70332847904542,94.60280880255453,109.88821657093143,94.17358653251914,94.65421588772622,105.26765974672779,43.760784313725466,0.0,8.518585820519668,0.0,0.0,0.0,0.0,45.76110706482159,1.8476555413832196,0.0,0.0,0.0,0.0,2.3026209372637942,0.06864675442104984,0.0,6.331124567889088,28.530811113372682,595.2011785644897,52.73060540612686,140.12997905930143,188.62020405497452,210.27168850937784,217.0265760115412,219.02657601154124,433.0,117.04189673347537,0.0,55.543352802285106,3.24,3.24,0.8571428571428571,8.191552317598807,5.523561956057013,3.5577099947348225,4.626056121280241,,4.62601336685019,4.624912533789012,4.623856916359011,4.626022372093521,4.638730582882935,4.6255471952472424,4.626078745764062,4.635622378471328,0.16171409066976467,0.21027527824001097,,0.2102733348568268,0.21022329699040965,0.21017531437995504,0.21027374418606914,0.21085139013104248,0.21025214523851102,0.21027630662563918,0.21071010811233307,2.0575744383418413,2.32016205580772,,2.320152813674356,2.3199148195366455,2.319686547561595,2.3201547603255763,2.3228981078970206,2.320052036816179,2.3201669464592607,2.3222278283549485,260.61,787.5900309949316,114.90566836939502,,114.90427354594877,114.97307508040721,115.03879928378537,114.90370955845184,114.08021489812549,114.93344310240961,114.90017850183798,114.28817069327049,35.79954686340598,5.222984925881591,,5.222921524815853,5.226048867291237,5.229036331081153,5.222895889020538,5.185464313551159,5.224247413745892,5.222735386447181,5.194916849694113,7.457435049602374,5.5325688770691155,,5.532556738138705,5.533155331579286,5.533726816902368,5.532551829801847,5.525359200777829,5.532810565552611,5.532521098758574,5.527180432312018,0.0,2.3026209372637942,2.6466109154226944,1.4388094475847353,6.331124567889088,15.072607698130302,4.0919850718065005,8.224078545387393,2.142162816515495,315.1643197690473,117.12542787553933,-136.43559345212677,-5.862704430757511,-2.902884967066527,-7.1808207080066735,237.13901508901824,276.23550958297045,10.315838962544936,5.877351267722775,9.865553913677514,1273.0,28.0,2.3187514031959213,1.7311709873479812,0.3535533905932738,0.25,0.13608276348795434,0.05351904376567389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.25137565482875424,0.07471451958015056,16.001789232183626,14.057579580579688,10.455308359696609,7.784846481564834,9.900244085524182,6.756729172525279,6.552018548147457,3.385633397908078,5.323891802032757,2.3354602883427806,4.196592550969104,1.5439802623983148,2.6884271496368397,0.8600175221425191,1.7929807204843824,0.4822672129892615,2.4798468218068876,1.2341304936517974,3.7108415127913204,1.540953028036096,5.012507391633281,1.7100526477846347,78.37149439398921,44.76540925045121,30.673431949902366,26.325044147400643,25.01189655540687,24.860637455335485,108.0,119.0,52.839824999999976,26.790174999999994,0.2127659574468085,67.01,7.756944444444443,4.8472222222222205,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,11.0,47.0,0.0,1.0,48.0,11.0,1.0,6.0,41.0,13.0,23.0,35.0,1.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,1.0,0.0,0.0,22.0,1.0,0.0,1.0,0.0,0.0,2.0,4.0,0.0,0.0,0.0,0.0,2.0,3.481240089335692,6.450837529909852,4.034240638152395,4.579852378003801,5.115745778498873,5.651392087454277,5.834810737062605,6.1471987938596,6.482055575292926,6.761061751393471 +54677470,Cc1cnc(NC(=O)C2=C(O)c3ccccc3S(=O)(=O)N2C)s1,0,39.77777777777778,6.655608333333334,3.861111111111111,9.969135802469136,160.2565391004288,158.36260769444448,1.8846495489732495,6.731305555555555,7.311654568663313,8.17796461111111,253.39959453190215,38.973684210526315,6.582231578947368,4.526315789473684,7.535087719298245,145.612055648825,151.95326492105266,2.1122738867368427,6.760002631578948,3.2411468486029893,8.081471999999998,295.5071825269649,34.84126984126984,6.6654365079365085,4.238095238095238,8.597883597883598,153.57761397566182,135.6059349523809,1.9040910361760954,6.789014285714288,4.379727611209092,8.150734349206349,264.34108581946305,30.786666666666665,6.632345333333334,3.8,7.613333333333333,149.94298554164095,115.83028831999997,1.8132237666739597,6.772590666666667,4.266584362139918,8.176589466666664,249.1592785369292,28.160919540229884,6.874020689655174,3.160919540229885,6.214559386973181,159.5403842849202,105.71222934482759,1.4286978580258047,6.9474781609195375,5.110383851284234,8.41480436781609,209.20403519002548,24.89873417721519,7.101464556962026,2.7974683544303796,6.654008438818565,164.39312457491187,91.28042806329114,1.33723637846262,7.1313088607594946,6.701828410689171,8.629952734177213,194.85271866397147,23.90277777777778,6.317880555555556,2.6944444444444446,3.9506172839506175,162.09520524504288,89.15492309722222,1.377528123149097,6.39427638888889,3.65976747065996,7.939507680555557,178.87456841829837,26.70689655172414,6.476551724137932,2.793103448275862,4.229885057471264,160.97604554326483,98.89281841379311,1.5368741342895171,6.572812068965517,3.804757343550447,8.112493172413792,198.87178472433024,22.29787234042553,6.239489361702129,2.8297872340425534,4.035460992907802,156.30739337987885,81.46040165957446,1.5545972416222338,6.351202127659573,3.443065405831364,7.829666851063828,201.93531594626725,14.219135802469133,0.1686823302469135,0.028665196329277096,0.7986111111111112,4.610768175582991,1.7634914869462113,63.08602897145061,0.3665306075353788,0.15208055555555547,3.0704702741579033,0.1104711666666666,48.68187922011167,2.136127355425601,-0.020796365334632888,-0.018095343832038858,0.3125,0.34472240271460525,-0.27883545421218475,9.370619517584482,-0.012735733756193874,-0.01227236842105262,-0.5977559595075368,-0.002365818713450298,2.122898996475094,2.8628747795414458,0.04004566798941797,0.0032366743321396085,0.050595238095238096,1.0104350382128158,0.3258469327158176,13.27465261055997,0.07083300672854001,0.03716071428571428,0.44137154819060687,0.02571288359788359,10.22847839114393,-4.253950617283951,0.014393188271604919,2.738276297543765e-05,-0.18416666666666667,0.7391906721536351,-0.4175603500154226,-18.339101132932093,-0.11651164902089811,0.010737666666666649,0.037222627076665106,-0.00489602222222221,-10.079411039236112,-0.5550234142188164,-0.02690576575138359,-0.0008239176858854978,-0.21336206896551724,-1.2605482238304717,-0.32517256932057687,-2.839477291373983,-0.06108519358388523,-0.021508908045976997,-0.45409860102670413,-0.013770532567049779,-7.34436951906095,-3.2978981090795427,-0.013582365408657628,0.0009647140017288946,-0.010284810126582278,-0.6165503290444687,0.18167355365760987,-15.016459904994917,0.0005238501790251299,-0.019683860759493632,0.37415627942203583,-0.00493624331926859,-7.386761352784142,3.7507716049382713,-0.016228780864197517,0.00039484444653473924,0.06944444444444445,-0.4003772290809328,-0.0649521567911675,16.26391404436728,0.07084223896145486,-0.010742361111111114,-0.4055615489889754,-0.009165152777777786,6.505504482200207,-1.1664538101319708,-0.01759550074499787,-0.001011089857416691,0.0021551724137931034,-0.6554680478690696,0.1926085432524522,-4.994489841182415,-0.005186325563621197,-0.015699999999999995,-0.32190549547614167,-0.00942367049808428,1.4004809932447622,-1.6233911216180719,-0.018603015826109768,-8.01337538100766e-05,-0.25132978723404253,-0.620618451390713,0.005759241282347432,-7.280606195445889,-0.019425951616192105,-0.01791117021276596,-0.031654056388167484,-0.013601413711583934,-5.118568023107367,,,0.48695652173913045,1.3478260869565217,0.6956521739130435,0.021739130434782608,0.6521739130434783,0.043478260869565216,0.7805770407519251,0.02586127069771285,0.037078662002060676,1.0526017332090136,0.26017823819701535,0.21023064599105853,1.8331787739609389,0.4704088841880739,2.0126668552472173,1.2543453220218612,0.26731321205488034,0.3068475562371256,0.0,0.7583215332253562,9.750965219333343,1432.0,239.60190000000003,139.0,358.8888888888889,5769.235407615437,5701.053877000001,67.84738376303699,242.327,263.21956447187927,294.40672599999994,9122.385403148477,1481.0,250.1248,172.0,286.3333333333333,5533.258114655349,5774.224067000001,80.26640769600002,256.8801,123.1635802469136,307.09593599999994,11229.272936024667,2195.0,419.9225,267.0,541.6666666666666,9675.389680466695,8543.173901999997,119.95773527909401,427.7079000000001,275.9228395061728,513.496264,16653.488406626173,2309.0,497.42590000000007,285.0,571.0,11245.723915623072,8687.271623999997,135.99178250054698,507.9443,319.9938271604939,613.2442099999998,18686.94589026969,2450.0,598.0398000000001,275.0,540.6666666666667,13880.013432788057,9196.963953,124.29671364824502,604.4305999999998,444.60339506172835,732.0879799999999,18200.751061532217,1967.0,561.0157,221.0,525.6666666666666,12987.056841418038,7211.153817,105.64167389854698,563.3734000000001,529.4444444444445,681.7662659999999,15393.364774453747,1721.0,454.8874,194.0,284.44444444444446,11670.854777643088,6419.154463,99.18202486673499,460.38790000000006,263.5032578875171,571.6445530000001,12878.968926117483,1549.0,375.64000000000004,162.0,245.33333333333331,9336.61064150936,5735.7834680000005,89.138699788792,381.2231,220.67592592592592,470.52460399999995,11534.563514011154,1048.0,293.2560000000001,133.0,189.66666666666669,7346.447488854305,3828.6388779999993,73.06607035624499,298.50649999999996,161.8240740740741,367.9943419999999,9490.95984947456,511.8888888888888,6.072563888888887,1.0319470678539755,28.75,165.98765432098767,63.48569353006361,2271.097042972222,13.195101871273637,5.474899999999997,110.53692986968451,3.9769619999999977,1752.54765192402,81.17283950617283,-0.7902618827160497,-0.6876230656174767,11.875,13.099451303155,-10.595747260063021,356.0835416682103,-0.4839578827353672,-0.4663499999999996,-22.714726461286396,-0.08990111111111132,80.67016186605358,180.3611111111111,2.522877083333332,0.20391048292479533,3.1875,63.6574074074074,20.52835676109651,836.3031144652781,4.462479423898021,2.341125,27.806407536008233,1.6199116666666662,644.3941386420677,-319.0462962962963,1.079489120370369,0.002053707223157824,-13.8125,55.43930041152263,-31.317026251156694,-1375.4325849699069,-8.738373676567358,0.8053249999999986,2.7916970307498827,-0.36720166666666576,-755.9558279427083,-48.287037037037024,-2.3408016203703723,-0.07168083867203831,-18.5625,-109.66769547325103,-28.290013530890185,-247.03452434953653,-5.314411841798015,-1.8712749999999987,-39.50657828932326,-1.1980363333333308,-638.9601481583027,-260.5339506172839,-1.0730068672839526,0.07621240613658267,-0.8125,-48.70747599451303,14.35221073895118,-1186.3003324945985,0.041384164142985264,-1.555024999999997,29.558346074340832,-0.3899632222222186,-583.5541468699472,270.05555555555554,-1.1684722222222212,0.028428800150501227,5.0,-28.82716049382716,-4.67655528896406,1171.0018111944441,5.10064120522475,-0.7734500000000002,-29.200431527206227,-0.6598910000000006,468.3963227184149,-67.6543209876543,-1.0205390432098764,-0.05864321173016807,0.125,-38.01714677640604,11.171295508642228,-289.68041078858005,-0.3008068826900294,-0.9105999999999996,-18.670518737616216,-0.5465728888888883,81.2278976081962,-76.29938271604938,-0.874341743827159,-0.0037662864290736,-11.8125,-29.169067215363512,0.2706843402703293,-342.1884911859568,-0.9130197259610289,-0.8418250000000002,-1.4877406502438717,-0.6392664444444449,-240.57269708604625,0.7293763653482344,0.6044620324618597,0.4327761734530281,0.353248891684239,0.2789092076815379,0.21233026792907828,0.17257815447104521,0.11577493001186262,0.1089863131255417,0.06244137096420891,0.06769196905056148,0.03376960089715475,0.04071794663184819,0.018838729501324283,0.02651938327097678,0.010205336477250684,16.013263000278283,5.688104459163405,3.581014414575552,2.17699982455537,0.47557595726352553,-0.38199934590771584,4.048658757383671,0.9713656148697625,6.022512486729728,0.6448316605258118,14.551216837290399,10.311573600712741,32.06678809991052,11.69959447207088,2.954776785484547,0.7517061747218964,3.5370501577313913,2.230298883588902,7.014575191827046,0.29757775808673276,3.7683472700439005,2.429303580480163,24.442571971796298,14.701030303241476,0.34982950920336386,0.745119078576296,0.8231808642220422,0.8631878257013073,0.8731895660711234,0.8731895660711234,1.7405383287638947,931.0039542533557,0.0,2.0,1.0,0.0,8.0,0.0,1.0,0.0,0.0,3.226765909633448,1.0310948744101047,0.5974937501201936,0.37527152789797125,0.3197159723424159,0.3197159723424159,63.783617740240544,1227.1259232394514,63.61212930517975,34.08683120109586,71.41788156320266,,11.0,417.0,15.930470882759089,18.318861563241466,21.91513915192678,5.131558479839333,9.182363184997534,30.517191997535146,18.329577708536295,6.923737199690624,10.30076712495354,0.0,11.200000000000001,31.0,16.0,0.5,15.0,0.0,0.01304347826086952,1.0,0.24735042735042695,0.08454106280193219,-0.16280936454849476,0.04869565217391292,0.1781148325358849,0.0,0.6888888888888889,0.9086956521739127,0.44153846153846193,0.6043478260869567,0.8599999999999998,17.95327193729428,0.5948092260473956,0.8528092260473956,24.209839863807314,5.984099478531354,4.8353048577943465,42.16311180110159,10.8194043363257,0.5358851674641151,0.2083333333333333,0.0744047619047619,0.3482142857142857,0.14285714285714285,0.44015935797574723,-1.0134822852836491,-0.07266368939390792,-0.02815228570232359,-0.07796017579104995,0.5598406420242528,1.2890526192213054,0.046695819928818764,0.035807017200591804,0.05604576605310023,-2.9971430159268126,0.7944003975643472,0.7614966143981354,1.617827768121974,0.8009153318077804,0.6658707012976846,1.2877381444328715,0.7764032450614773,1.0929265185299915,0.6989192785064089,0.7749941627466147,0.6676509607081991,0.8381002016782151,0.7103321033210334,0.5659425384573512,0.8045491752307354,1.0917874396135268,0.6781331349944217,0.9149738322763669,0.6931093759457289,0.7802236401746788,0.5443782839260384,0.592588168725736,0.554964372861049,0.6850824508401399,1.4454308660733668,0.7849062472697101,1.049837669274706,1.4446376811594204,0.7439419858683525,1.3143971418966942,1.4122129993335395,1.5036183910133039,0.7797226128939954,0.9225509421015867,0.934771365680638,1.1427111881200434,0.9045829809210872,1.4009094386855574,1.3008662581874884,1.357321339330335,1.3441928161988175,1.1521563771330414,0.9128634653573026,1.0416437257913085,1.354214101008091,1.4893372477452658,1.4008050342961786,1.010880097556148,1.0619640448079835,1.5444480560890301,1.5054010039831545,0.9477160154100166,1.2415772650884287,0.8577213416225471,1.0748524113453448,0.8191291801946786,1.5514947270292903,1.4295598477843738,1.5509793688393878,0.970126924239849,0.6813680269155634,1.0953214892300205,1.0611043675268526,0.7946859903381643,1.1125418371141689,0.9365529243290592,0.697687877077647,0.7212206194481875,1.0858322374229061,1.132586704540712,1.0735812076320237,0.8915803442542082,1.3220979319326662,1.0925901146963575,0.9042401296330153,0.7976011994002998,1.1520498582988166,0.9475840411966382,1.3034979340469741,1.1895846198599145,1.091974755010484,1.0759933000140234,1.0502141176936153,0.980680778118193,1.0547086071611655,0.8817308667717116,0.7126403293882295,1.2303422756706754,1.0248846759453407,0.964699621698845,1.0579878466847938,1.0160692184547087,0.9042018838000734,0.7177274528603962,0.8773447559516913,1.1150805498801857,6.0,0.024793388429752067,3.777777777777779,3.2569444444444446,2.177777777777778,1.031388888888889,0.4889795918367346,0.41755243764172345,0.1940192743764172,0.0762577160493827,5633.175625219117,5999.083487724003,2704.2877799959538,2565.77163033856,14.239605609008308,0.46952584668995573,7.55374272890764,0.8851059825633647,1.0,0.14285714285714285,1.9431590918088644,4.138830127032207,4.572431251322119,4.794653473544341,4.850209029099896,4.850209029099896,0.24000000000000005,0.006198347107438017,0.0994152046783626,0.07943766937669378,0.05584045584045585,0.03223090277777778,0.020374149659863946,0.01897965625644197,0.011412898492730424,0.007625771604938271,0.5715150557947026,17.8112,6.718836565096953,3.2544378698224854,136.50401256165483,1.0,4.078070665534398,100.25893851873454,,66.6673780693706,75.53136672576079,75.49151171004404,66.67573424440133,96.57560248825465,76.01502298729862,75.99074957968317,93.0271844650556,0.1502290564701313,-0.12328715938528725,-0.6312653025005533,0.391304347826087,0.07476463565011444,-0.1581155657831024,0.14853715902494238,-0.03474671281023803,-0.08069649914297879,-0.19467895994253692,-0.0214157122155582,0.043607581105827006,0.2013395764209743,0.23740286211839734,0.1129130355487516,0.06335403726708075,0.2191467885034266,0.1847737486275466,0.2104214328748981,0.19325263776696455,0.24434888569393318,0.14374721419885947,0.2327565135205742,0.21010853637955493,-0.29917082700238773,0.08532718424352144,0.0009552616581059437,-0.2306086956521739,0.1603183339531424,-0.2367804739100273,-0.2906998812880011,-0.31787699751555404,0.07060512520776627,0.01212277721427336,-0.04431945791787794,-0.207046465763221,-0.039033554635749194,-0.15950553749168342,-0.02874278886567375,-0.2671664167916042,-0.27339223657044665,-0.18439134621719613,-0.0450096057347179,-0.16665782428003387,-0.1414310196816695,-0.14789219907079013,-0.12465273050479043,-0.15086454419423506,-0.23193379364917996,-0.08052038046175942,0.03365454018340657,-0.012878370941111722,-0.13371965485263446,0.10301924052506138,-0.23803146512503695,0.0014292126448800487,-0.12943048956908274,0.12185634317031474,-0.04468354474940151,-0.15173533707245407,0.26378337312784894,-0.09620913370382174,0.013774349981739573,0.08695652173913043,-0.0868352547415396,-0.03683156809769653,0.25780532250218924,0.19327782593058596,-0.07063599335147679,-0.1320845058824754,-0.08296420735224537,0.1336329777407735,-0.08203408606094174,-0.10431146356136982,-0.03527238557176802,0.0026986506746626685,-0.1421602698093125,0.10922000172849544,-0.07916950745850014,-0.014149774826432726,-0.1032347622787631,-0.10483915059702911,-0.08530434485696224,0.028768014211460215,-0.11416946459827554,-0.1102843184516071,-0.002795506888896912,-0.31470860314523585,-0.13460196387172324,0.003265817456437257,-0.11540758412200433,-0.052999534600441364,-0.11777422923881256,-0.010309188352865204,-0.12312184366283156,-0.10514318890534452,3.2428314389336603,9.09429270248958,7.455065665852576,24.147720665523405,46.14821677859021,48.41912004520778,49.25439782298555,49.31039782298555,49.31039782298555,46.291337670686,28.84994240650281,6.148203877262248,7.057493793453889,0.0,17.441395264183193,5378.629488291656,4625.002052026857,881.4266754486816,84.0,38.0,52.0,69.0,82.0,84.0,91.0,89.0,96.0,351.03474789600034,25.0,4.844187086458591,5.726847747587197,6.650279048587422,7.554334823725748,8.480736654405622,9.394576760974909,10.32249389621096,11.242362684325837,12.171517431988255,0.8425925925925927,1.018777777777778,1.1180343502788064,0.8126694048973625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7377962242182304,1.0058823529411762,1.0343529983005588,0.6952521484949227,5.0,1.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,5.106527394840706,0.0,16.58776266455134,0.0,15.930470882759089,14.416541779374388,13.401775505276145,0.0,11.336785877934737,12.13273413692322,19.056471336613843,23.685114239688563,4.895483475517775,234.5810078586414,-540.1309585284729,-38.725795973396984,-15.003637736902025,-41.548535271420995,298.36462559888196,686.9949647109784,24.88633333178276,19.083193464193837,29.869346291781664,0.45454545454545453,0.7096650658673979,0.21926336304247215,67.48750176316916,0.1273604708175143,157.30479886046837,0.29033493413260214,6.0,0.08,0.3758582747847908,0.800559026654652,0.8844289327304546,0.9274125779787371,0.9381584892908077,0.9381584892908077,1.95092,,2.678571428571429,1.6506800723172808,1.1944845093465637,2.675280256707214,-5.035446649833097,1.5416921664626684,1.5574803885312503,-2.2387940466194536,86.42030000000003,18.318861563241466,0.0,9.289194512243443,0.0,11.819220675208399,12.36446058668352,46.59994984391364,0.0,0.0,3.9318256327243257,0.0,5.313205979041787,2.3978952727983707,6.894670039433482,4.59511985013459,8.57828829077605,6.529418838262226,10.324530690607611,30.333333333333336,7.577338954744483,3.9957094041320236,0.0,0.0,1.2527758356428988,0.0,1.2904040745660075,0.0,36.67600000000001,0.0,37.44399985302763,0.0,0.0,-3.897318882800034,0.0,0.0,-1.4604776077097503,40.24923661003703,5.316788604006331,5.131558479839333,0.0,35.76837060344178,14.817828337479405,6.923737199690624,10.440598685398296,41.05483463403313,0.0,5.759164871656176,0.0,29.25609857630505,26.560664071856294,28.79607616301595,200.51787703746908,,134.09626739700647,150.91919605392877,150.87915520188403,134.11510527051627,195.4423590947339,151.8959857862092,151.8460660821028,186.6384021596641,28.79607616301595,200.51787703746908,,132.1164537324102,149.41205337920434,149.78853891074152,132.13772421121098,198.2483269453101,150.48835380813466,150.42401877083526,188.29316297673074,5.095859577669298,147.1388898696614,,101.55521786188619,112.66681519181222,111.97379789511191,101.57021433159483,147.53696232730056,113.5654165363117,113.81059607091623,140.92759171980418,1.252003311435476,8.718168566846481,,5.830272495522021,6.561704176257773,6.559963269647132,5.831091533500707,8.497493873684082,6.604173295052574,6.6020028731349045,8.1147131373767,2.5484948873875006,100.25893851873454,,66.6673780693706,75.53136672576079,75.49151171004404,66.67573424440133,96.57560248825465,76.01502298729862,75.99074957968317,93.0271844650556,36.211764705882345,0.0,3.0565565423700343,0.0,0.0,0.0,10.373071775006299,37.23670793882012,0.0,2.5063688114134544,0.0,0.0,0.0,0.7782379062736204,0.0,0.0,0.0,25.029077345817218,378.21289807137543,69.95372730511912,148.99788457315947,164.60752504759625,172.60752504759628,174.60752504759625,174.60752504759625,733.0,124.38733613426454,154.73273538614797,71.56495459377844,136.21999999999997,99.59999999999998,0.8333333333333334,8.360590549652384,5.643856189774724,3.9417204487770805,4.726464445615869,,4.726661645547159,4.727517216796181,4.7267962601833835,4.72666485510006,4.730974241135663,4.728578374114833,4.729454719572605,4.73234415173053,0.1713791499468296,0.20549845415721169,,0.20550702806726778,0.20554422681722526,0.2055128808775384,0.20550716761304608,0.2056945322232897,0.20559036409194925,0.20562846606837412,0.2057540935535013,2.2045264130619473,2.3860865714407784,,2.3861282930743237,2.3863092863184363,2.3861567725233415,2.386128972105753,2.3870402748716946,2.3865337251077663,2.386719037519258,2.387329795005661,231.55999999999983,255.400049385547,129.8386359276078,,128.59655727099508,128.6380632398899,128.9346730546781,128.597225106572,129.72299417328588,128.6059084825912,128.53997323890312,129.17861435745226,11.104349973284652,5.645158083809036,,5.591154663956308,5.592959271299561,5.605855350203395,5.59118370028574,5.640130181447212,5.59156123837353,5.5886944886479615,5.616461493802272,6.375740259899017,5.699201540291489,,5.689589163548202,5.689911872592363,5.692214988598857,5.6895943567964276,5.698310485924722,5.6896618783378745,5.689149054685466,5.69410517703394,25.795490310321657,17.279040643391067,13.21041889749727,-0.23368297010161987,-1.1239526643990931,5.988899788182796,1.5884391665616864,1.8308550117577895,-2.671617352187789,278.5449011520762,125.01892383032792,-287.86043584297624,-20.638743866188868,-7.996123217860452,-22.143110449459716,159.01212439111293,366.1309666500213,13.263062681942044,10.170304629167255,15.918737680435706,1115.0,41.0,2.3633469039385844,1.5930811861339336,0.16666666666666666,0.04564354645876384,0.9380035982439142,0.41100412354000027,0.1642664266089148,0.035997930146750165,0.0,0.0,0.0,0.0,0.11785113019775792,0.07905694150420949,0.3165928118194038,0.1805958498781649,0.4134045443660245,0.24133990701839092,16.77565640300939,13.902626746622772,10.819404336325702,8.831222292105975,10.59854989189844,8.068550181304975,8.97406403249435,6.0202963606168565,7.520055605662377,4.308454596530415,5.550741462146041,2.7691072735666893,3.4203075170752477,1.5824532781112397,2.413263877658887,0.9286856194298122,5.575771565727966,3.179584953913139,9.183145742630657,4.32451082841682,15.028065703943463,5.704689445100209,76.36676844601888,35.53525411287205,30.36758681457,28.652632647021917,28.476525702497344,28.476525702497344,126.0,153.0,44.35630899999998,26.445690999999997,0.4722222222222222,119.09,8.95138888888889,4.888888888888888,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,36.0,0.0,0.0,38.0,11.0,4.0,9.0,29.0,15.0,25.0,23.0,0.0,0.0,0.0,14.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,6.0,2.0,2.0,23.0,9.0,0.0,3.0,4.0,0.0,3.0,2.0,2.0,0.0,0.0,1.0,2.0,3.56953269648137,6.91532034160094,4.244917420701475,4.79268655965915,5.344425365497529,5.7507853282515375,5.955513482822323,6.326317169290096,6.455591567864732,6.827256738265836 +2240,C[C@@H]1CC[C@H]2[C@@H](C)C(=O)O[C@@H]3O[C@@]4(C)CC[C@@H]1[C@]32OO4,0,21.0,6.225714285714285,3.4285714285714284,6.9523809523809526,164.22285987847567,82.52750542857144,1.3055000930161431,6.266321428571429,3.709325396825397,7.801726857142856,193.29880448909987,23.822222222222223,6.405555555555556,4.355555555555555,6.711111111111111,145.09924390536213,89.58741499999996,1.6966679737777788,6.53766888888889,2.6635802469135808,7.850767733333328,249.16569728636588,20.494505494505493,6.322197802197802,3.9450549450549453,5.395604395604396,153.10162421516748,76.32284265934065,1.427044170494912,6.415690109890107,2.632631257631257,7.8366964395604395,206.92456106919494,17.829787234042552,6.343829787234044,3.3617021276595747,4.00709219858156,157.3176350175045,64.51232632624114,1.2716066174232483,6.415614893617022,2.580131993695824,7.903468198581559,182.39234748131716,13.573099415204679,6.243976608187134,2.6608187134502925,2.5146198830409356,162.35801799975266,46.10864412865495,1.0860096791813862,6.291220467836258,2.5750487329434697,7.863320795321638,147.03941434722773,11.080246913580247,6.03246913580247,2.240740740740741,1.654320987654321,166.05923755832228,36.52681859259259,0.9801255902197595,6.070796913580246,2.3794581618655695,7.697336592592592,126.92204071519987,8.471544715447154,5.913252032520323,1.910569105691057,0.8373983739837398,168.79297214045656,25.537977991869905,0.8846820106313658,5.94059837398374,2.4132791327913283,7.613582991869918,106.8105652087429,5.549295774647887,5.5811267605633805,1.4225352112676057,0.09859154929577464,167.11506777511937,13.20833574647887,0.848989198230648,5.627443661971831,2.285211267605634,7.294919211267605,89.76929747718873,2.0625,5.101250000000001,1.0,0.0,180.95992802732414,3.3468749999999994,0.5338640230648123,5.106749999999999,1.5,6.940404000000001,44.72347131053735,7.902494331065758,0.16473922902494326,0.016747038158237155,0.8072562358276643,4.331065759637188,1.2590971398327993,37.33838020408164,0.2214499527287754,0.15247647392290242,1.2523935500125976,0.1098208163265306,48.78395444613135,0.890098261526833,0.025705215419501135,-0.009056426242926371,0.3567649281934994,2.0647014361300076,-0.04088367237820262,4.092915792743771,-0.005413209911000846,0.024123102796674293,0.01175254052238178,0.016157786848072543,1.1833669628929155,1.6171289028431894,0.041184371184371155,0.0009146498212350648,0.036804465375893894,1.060352346066632,-0.020274146047060196,7.4878188854003165,-0.00032070165956982384,0.03900484475841621,0.2149337655290036,0.025563447409733098,3.7507418279591347,0.20388864765764442,-0.0007507116321706065,-0.0001853341662383319,-0.045351473922902494,-0.054470014956337125,-0.09315331330866158,0.9397792994644676,-0.013584209156653912,0.0006465250639263192,-0.028463946650370192,-0.0023487069040382196,-0.7549543902136744,-1.3505589370251023,-0.02184866929227831,0.00022789698811109254,-0.12415960536261286,-0.7627004017981465,-0.12208522711201171,-6.377906930898675,-0.023960333911996888,-0.02150816425985594,-0.09969505996030639,-0.012887335958944982,-7.094601972304647,-0.6864449483497101,-0.020039052658100277,-0.0004551445902607591,-0.10502225581590661,-0.6814478877970944,0.010612354063415992,-3.163743674981103,0.000863655359261519,-0.0186489166036785,-0.03692797420751567,-0.012838858654572929,-1.307074010613268,-1.2633150821304133,-0.023055140755489183,0.00023248551937438976,-0.1804656822078425,-1.0561915823239867,0.03840448050829087,-5.8900115803882525,0.0024092881206193586,-0.02319507632321221,-0.04987279464631382,-0.012585383109341283,-3.356852820696391,-1.9970617354923197,-0.012069879595030478,-0.00010209908146875356,0.12165053814953213,-0.17613618217239957,-0.32506756542819665,-9.59940582983616,-0.06176467331600689,-0.01444780189070938,-0.25275684086884626,-0.004610860592124155,-15.300121313407987,4.076672335600907,0.037492913832199534,0.00012505611289206336,0.38321995464852615,1.811791383219955,0.4510614857668887,19.439846938775503,0.09005176536756372,0.041266085600906825,0.03828105316200569,0.017381505102040836,25.782602615318254,,,0.45833333333333337,0.7375,0.075,0.0,0.6625,-0.5875,1.3483302131085737,0.02262170229317535,0.044121702293175344,0.40484313850184195,0.09535300328074178,0.3777359725447377,1.7531733516104158,0.47308897582547943,2.081846521797468,1.5805189889667322,0.0,0.5013275328307358,0.0,0.5013275328307358,6.71777913819049,882.0,261.47999999999996,144.0,292.0,6897.360114895978,3466.1552280000005,54.831003906678006,263.1855,155.79166666666669,327.67252799999994,8118.549788542195,1072.0,288.25,196.0,302.0,6529.4659757412965,4031.4336749999984,76.35005882000004,294.1951,119.86111111111113,353.28454799999975,11212.456377886465,1865.0,575.3199999999999,359.0,491.0,13932.24780358024,6945.378682,129.861019515037,583.8277999999998,239.5694444444444,713.139376,18830.13505729674,2514.0,894.4800000000001,474.0,565.0,22181.786537468135,9096.238012,179.29653305667802,904.6017,363.7986111111112,1114.3890159999999,25717.32099486572,2321.0,1067.72,455.0,430.0,27763.221077957707,7884.578145999997,185.70765514001704,1075.7987,440.3333333333333,1344.627856,25143.73985337594,1795.0,977.2600000000001,363.0,268.0,26901.59648444821,5917.344612,158.78034561560105,983.4690999999998,385.4722222222223,1246.9685279999999,20561.37059586238,1042.0,727.3299999999998,235.0,103.0,20761.535573276156,3141.1712929999985,108.81588730765799,730.6936,296.83333333333337,936.470708,13137.699520675376,394.0,396.26000000000005,101.0,7.0,11865.169812033475,937.7918379999998,60.278233074376004,399.5485,162.25,517.939264,6373.6201208804,99.0,244.86000000000004,48.0,0.0,8686.076545311558,160.64999999999998,25.62547310711099,245.12399999999997,72.0,333.13939200000004,2146.7266229057927,331.9047619047618,6.919047619047617,0.7033756026459604,33.9047619047619,181.90476190476193,52.88207987297757,1568.2119685714288,9.300898014608567,6.4040119047619015,52.6005291005291,4.612474285714285,2048.9260867375165,40.054421768707485,1.1567346938775511,-0.4075391809316867,16.054421768707474,92.91156462585035,-1.8397652570191179,184.18121067346968,-0.2435944459950381,1.0855396258503431,0.5288643235071802,0.7271004081632644,53.2515133301812,147.15873015873024,3.747777777777775,0.0832331337323909,3.3492063492063444,96.49206349206351,-1.8449472902824777,681.3915185714288,-0.029183851020853968,3.549440873015875,19.558972663139325,2.326273714285712,341.31750634428124,28.748299319727863,-0.10585034013605552,-0.0261321174396048,-6.394557823129252,-7.680272108843535,-13.134617176521283,132.50888122448993,-1.9153734910882017,0.091160034013611,-4.013416477702197,-0.33116767346938897,-106.44856902012809,-230.9455782312925,-3.736122448979591,0.03897038496699683,-21.2312925170068,-130.42176870748304,-20.876573836154,-1090.6220851836733,-4.097217098951468,-3.6778960884353658,-17.047855253212393,-2.203734448979592,-1213.1769372640947,-111.20408163265304,-3.246326530612245,-0.07373342362224297,-17.01360544217687,-110.3945578231293,1.7192013582733907,-512.5264753469387,0.1399121682003661,-3.021124489795917,-5.982331821617538,-2.0798951020408145,-211.74598971934938,-155.38775510204084,-2.8357823129251694,0.02859571888304994,-22.197278911564627,-129.91156462585036,4.723751102519778,-724.4714243877551,0.2963424388361811,-2.8529943877551016,-6.1343537414966,-1.5480021224489777,-412.89289694565605,-141.7913832199547,-0.8569614512471639,-0.007249034784281503,8.63718820861678,-12.505668934240369,-23.07979714540196,-681.5578139183673,-4.3852918054364896,-1.025793934240366,-17.945735701688083,-0.327371102040815,-1086.308613251967,195.68027210884355,1.7996598639455776,0.006002693418819042,18.394557823129254,86.96598639455785,21.65095131681066,933.1126530612241,4.322484737643059,1.9807721088435275,1.837490551776273,0.8343122448979602,1237.5649255352762,0.7060477932315069,0.6128209961506819,0.4113817181091126,0.3353503443055387,0.2553283818767466,0.1877806824418483,0.15629595409887354,0.10480630486852997,0.09279600480789514,0.05737583975117491,0.05704373470291922,0.031129157328847547,0.03756809115530254,0.018520499626524748,0.024242762572801016,0.010300482584473726,8.105284138828164,5.760148551073766,3.610637032249961,2.258758867556066,0.44647867867096064,-0.4635845204273732,4.0348599411779125,0.97785885053902,6.105230752448649,0.993043173424634,13.722539753109013,11.020668112381385,16.101680567154403,11.771880169272581,1.9234638165130409,0.6909636208644677,3.5520122415429647,2.308428494866002,7.008270980606348,1.0877427964881687,3.765762309648199,2.5044876942647245,20.828614543217878,14.608569856285605,0.2506872557995856,0.46924543225825927,0.708817249619501,0.8392742279729901,0.8802664746772105,0.8802664746772105,1.8172817323754271,451.54482686786565,0.0,1.0,4.0,0.0,0.0,5.0,0.0,5.0,0.0,4.007630833775837,2.8004112051035115,1.4771214289835175,0.7565342264480321,0.5301110120592964,0.5301110120592964,158.70863745758578,738.0660546061199,36.37087745527633,17.573001300145712,36.28405718720423,,7.0,254.0,17.6781886928895,4.794537184071822,17.805117380274638,11.835812092322787,25.683286491704038,0.0,0.0,13.847474399381248,6.923737199690624,19.248867814112323,9.166666666666668,14.75,1.5,0.0,13.25,0.0,0.04166666666666661,-11.75,0.13359788359788344,0.0,-0.13359788359788344,0.0,0.19998130841121464,0.0,0.5817460317460319,0.8916666666666663,0.44814814814814846,0.5817460317460319,0.8916666666666663,26.966604262171476,0.452434045863507,0.8824340458635069,8.09686277003684,1.9070600656148358,7.554719450894753,35.063467032208315,9.461779516509589,0.5140186915887853,0.19999999999999996,0.10909090909090907,0.3272727272727272,0.9333333333333333,0.31655311320975027,-0.5401092299296871,-0.06021375397803292,-0.012859743569754454,-0.04500910249414059,0.6834468867902497,1.1661106977568463,0.023866411359952783,0.027764540422782057,0.03887035659189488,-2.0339082319552055,0.7933333333333336,0.591250286763019,1.6298901015374545,0.9942883895131087,0.3806631762652704,1.3713076283424277,0.8060562087126226,1.3427943447185073,0.586138996450018,0.6033596539757581,0.6215343291972755,1.154814698619706,0.7466063348416291,0.6446609137593309,1.0537801052241622,1.4285328435609337,0.7319069673781714,1.1928281534275185,0.755131776081049,1.1644173186125308,0.6341556153058243,0.5051856243640683,0.677655939044992,1.0081730867686671,0.9720275344180228,1.079858985810722,1.1321336047305544,1.2478633755677746,1.0726133452155506,1.1626667207522516,0.9720381041757462,1.1326180780057522,1.057007007741435,0.8442612688482944,1.1208730730408245,1.0347453398804733,1.1876160990712077,1.2821627365040267,1.1291661939369608,1.10672925290755,1.2488862863966197,1.0818025229105284,1.1839062101262108,1.0802138013526363,1.2761174048653519,1.1217713536469047,1.2868513066375455,1.102797841211923,1.084694989106754,1.1787330172567614,1.118399423950454,0.9517400124843948,1.16870273414776,0.9053241240140704,1.0799950852781282,0.9104671996683544,1.1765196723091425,0.93646780424744,1.1749039985471188,0.9623664877044418,1.150932568149211,1.1687543014452857,0.952995691266108,1.061797752808989,1.2598167539267013,0.8282242478603654,1.1461081295262,0.855385269371414,1.1831333408930786,1.2185881154755318,1.1349518015121722,0.979873896786861,1.14917149958575,0.7448818859474812,0.46945798617841167,0.5109590125019783,0.7793507115994395,1.1347797674185274,1.1586743521993543,1.1839173097340596,0.7946618493756806,1.8449274647533143,0.6713469664880258,1.2727429439249636,0.3821691176470589,0.346281400550585,0.15221106580488758,0.0,0.26765379581151827,0.2649187844812261,0.3814325335679293,0.2797992915362449,0.3566445977874733,0.9256085600764472,0.3264673755827364,0.3337386367542316,6.5,0.0,4.4444444444444455,2.8472222222222223,2.445555555555556,1.2049999999999996,0.44829931972789117,0.0,0.0,0.0,4447.033560625356,5102.253095874067,2053.14184433444,1837.6108004366629,8.653346870546311,0.4664595708000244,4.6169104033275445,0.8742722111976847,1.0,0.9333333333333333,1.384686589002924,2.591906217675249,3.915195993795243,4.6357831963307286,4.862206410719464,4.862206410719464,0.28260869565217384,0.0,0.11695906432748543,0.05931712962962962,0.06435672514619883,0.04303571428571428,0.034484563055991624,0.0,0.0,0.0,0.6007618920971937,13.648393194706994,4.2631578947368425,1.6952908587257618,118.37011434907475,1.0,3.9866912403663273,64.35753578746112,,57.50977664560909,56.62812938688773,59.21227086488241,57.52580832813032,81.6466321866473,57.31152765871491,57.54263857475695,70.75887294679454,0.11263510282161648,0.15603578802477638,-0.5407777875320539,0.44194756554307096,0.476719022687609,-0.0324706260421112,0.10961685457089952,-0.02444439406871659,0.15820868738656563,0.009384063437777658,0.14712863543128785,0.02425729886656941,0.2046352499724094,0.24999735295674722,0.05461561695822539,0.04559204840103711,0.24482480869915424,-0.016102130173810483,0.20053946755252622,-0.001448190237198238,0.2558089373062133,0.17161839066229748,0.23277415215823213,0.07688474357077413,0.02580054336212947,-0.004556969439604096,-0.011066683224052604,-0.05617977528089888,-0.012576584605101922,-0.07398421484861112,0.025169257325247756,-0.06134211811411585,0.004240162743094554,-0.022727637530617975,-0.02138671868049862,-0.015475465217714503,-0.17090286692340612,-0.13262578331582572,0.01360819662305479,-0.15380445495761877,-0.1760999357031322,-0.09696251643318315,-0.1708137015060304,-0.10819751197392538,-0.14105890375410463,-0.07960361977215834,-0.11734875399784886,-0.1454290053533629,-0.08686433923162762,-0.12164104917029904,-0.027177617078330527,-0.13009779442363714,-0.157339538491371,0.008428542745181082,-0.08473167978066866,0.0039000024548178414,-0.12230684592764168,-0.02948591854944016,-0.11690733218007693,-0.026793113134290433,-0.15986282674878405,-0.13994930589360954,0.013882187236794468,-0.22355439846533304,-0.24386412974077384,0.03050160253194663,-0.15774684247669607,0.010879605486166778,-0.1521223289498449,-0.03982198299073974,-0.11459924930735464,-0.06881059272066854,-0.2527128336734902,-0.07326657813363306,-0.006096545580421657,0.15069631270770695,-0.040668092323574975,-0.25817512814886046,-0.257092187110645,-0.27891030255334587,-0.09475430221461383,-0.20181902155780332,-0.041985306122790673,-0.3136301984354881,0.5158715925394549,0.2275894700619408,0.007467357016234754,0.4747191011235957,0.418324607329843,0.35824200651173504,0.5206398036691062,0.40664612594366256,0.2706390339389173,0.030566312930644386,0.15827149791311285,0.5285057947442156,2.406851949670727,9.082360626756563,6.631975707865092,12.712509385581907,28.124882588709344,33.51409266366459,35.48611187778,35.71434647788385,35.71434647788385,41.63693043594936,31.610379779334643,0.0,10.026550656614717,0.0,10.026550656614717,1967.9930379972843,1238.3329325873337,1018.2614288474397,205.0,38.0,57.0,83.0,123.0,160.0,178.0,187.0,204.0,282.1467238040006,23.0,4.812184355372417,5.746203190540153,6.720220155135295,7.6783263565068856,8.656433258507741,9.622118842140939,10.600352812464484,11.569334153391853,12.54678232008808,0.603174603174603,0.9847619047619047,1.1336932493129042,0.5596774385384826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6234594525235244,0.9696545284780578,1.0099885547809802,0.5841452705649735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,4.0,0.0,4.0,0.0,5.0,0.0,2.0,0.0,0.0,9.473725907600098,0.0,5.601050810983688,12.07713788190581,0.0,4.794537184071822,9.775141906512223,0.0,0.0,13.847474399381248,32.104108114630044,18.256633715248796,5.917906046161393,136.93258620932517,-233.63710734000477,-26.046892965228068,-5.562788270000113,-19.469758945000397,295.64122366691095,504.4289472661151,10.323984490048257,12.010213030145598,16.814298242203837,0.42857142857142855,0.7805457044270662,0.25320794838333505,42.547153134037615,0.18225774916045756,21.775377149688357,0.2194542955729338,4.0,0.0,0.2567887756669505,0.4806664768520975,0.7260692735290926,0.8597014665249109,0.9016914305118706,0.9016914305118706,2.3949000000000007,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,68.04700000000005,24.043404998184144,0.0,0.0,23.671624184645573,64.13268678366542,0.0,0.0,0.0,0.0,3.8501476017100584,0.0,5.293304824724492,0.0,6.955592608396297,3.367295829986474,8.725669705687043,6.111467339502679,10.555734610523901,25.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.36,0.0,12.121545256991686,0.0,0.0,0.0,0.0,0.0,-0.16789068405139806,47.615116471141974,0.0,0.0,0.0,23.647493980841347,24.043404998184144,23.671624184645573,46.454498090775914,0.0,0.0,0.0,0.0,23.50645241861627,26.185297005988026,25.880063857252857,129.66784969297487,,115.86087562391793,114.05402743370999,119.18768059025427,115.89181457559317,164.92393735629082,115.46420415590123,115.92430269419184,142.9371498463738,25.880063857252853,129.66784969297487,,115.04221157240298,113.13509101995439,118.60301284506778,115.07525445859335,168.70473569499035,114.62092924259446,115.10995444999008,144.13413328054796,5.2538839086908125,85.11171127850714,,74.53219236608973,73.29738404495798,77.29140254046916,74.55800506178923,111.96996598191636,74.20027807665402,74.58511066765678,95.71523360444489,1.2940031928626428,6.483392484648744,,5.793043781195896,5.7027013716854995,5.959384029512714,5.794590728779658,8.246196867814541,5.773210207795062,5.796215134709592,7.1468574923186905,2.6488214222697835,64.35753578746112,,57.50977664560909,56.62812938688773,59.21227086488241,57.52580832813032,81.6466321866473,57.31152765871491,57.54263857475695,70.75887294679454,40.725490196078425,0.0,6.063429232804233,0.0,0.0,0.0,0.0,42.41951930080117,3.864296107331822,0.0,23.15141865079365,0.0,0.2039195956160229,0.0,-1.403384826152683,0.0,0.0,24.534101363728887,337.6436291465465,58.15683673812281,108.86006114236046,164.4382317394002,194.7028942458906,204.2126692502175,204.2126692502175,1278.0,120.95195544414784,94.9301807296896,64.85921252053095,53.99000000000001,53.99000000000001,0.75,7.234177179749849,5.523561956057013,4.061958945493743,4.418598113343434,,4.416226013455934,4.414784709943398,4.419377631218316,4.4162604765133935,4.401431363652399,4.4158499033073895,4.4162965524924385,4.421242292267564,0.20309794727468714,0.22092990566717172,,0.2208113006727967,0.22073923549716992,0.2209688815609158,0.22081302382566967,0.22007156818261997,0.22079249516536947,0.22081482762462193,0.2210621146133782,2.0948125366985106,2.1789696574140254,,2.1784326688083766,2.1781062501071706,2.1791460593185863,2.1784404725129165,2.175076978503361,2.1783474996698144,2.1784486413770234,2.1795678987581364,203.8199999999996,113.51516531373252,111.28230792371271,,111.28641929305854,111.39220760581003,111.07033309265002,111.28410848151357,112.35713002588139,111.30998226839708,111.28168859057008,110.99567042797355,5.675758265686627,5.5641153961856356,,5.564320964652927,5.569610380290501,5.553516654632501,5.564205424075679,5.617856501294069,5.565499113419854,5.564084429528505,5.549783521398678,5.425083623654666,5.405217467749002,,5.405254412466237,5.4062045559279905,5.403310812677937,5.405233647708494,5.414829639802284,5.4054661227657865,5.405211902310275,5.402638375958167,11.596643518518519,23.67632038926682,0.0,-0.6101157407407405,-0.13705498866213173,0.0,3.244110922146636,6.063429232804233,0.0,256.085077324345,59.233450512773935,-101.065293650529,-11.267203725407239,-2.4063165154887853,-8.42210780421075,127.88665047806813,218.20275153076238,4.465885303963345,5.195303607875296,7.273425051025414,627.0,48.0,2.420449568968677,1.4655794554465298,0.24481807704061406,0.09820927516479827,0.7244386410572053,0.3984331755117551,0.08957624642754414,0.03862229996596576,0.0,0.0,0.0,0.0,0.0,0.0,0.13842726880637102,0.07757530498190829,0.6039632332078554,0.2874113144867894,14.120955864630139,12.256419923013636,9.46177951650959,7.713057919027389,9.702478511316372,7.135665932790236,8.90886938363579,5.973959377506208,7.702068399055297,4.762194699347518,7.016379368459064,3.8288863514482485,6.0108945848484066,2.9632799402439596,4.315211737958581,1.8334859000363233,5.856652424646892,3.326498643786777,10.26037574811654,5.3781059754519385,18.519487337452713,8.627946573510393,73.11716217768034,38.574115041248184,28.278801130297637,22.60465432990183,21.453297946074954,21.453297946074954,122.0,156.0,43.729445999999975,28.146553999999995,0.38095238095238093,149.05,6.791666666666666,4.083333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,0.0,0.0,0.0,42.0,0.0,0.0,45.0,0.0,1.0,1.0,44.0,1.0,23.0,44.0,0.0,0.0,2.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,5.0,0.0,4.0,20.0,5.0,0.0,0.0,5.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,3.2188758248682006,5.424950017481403,3.713572066704308,4.110873864173311,4.477336814478207,4.882801922586371,5.1647859739235145,5.267858159063328,5.327876168789581,5.420534999272286 +9800961,CC(C)[C@@H]1C(=O)N(S(C)(=O)=O)[C@@H]2CCN(C(=O)/C=C/CN3CCCCC3)[C@@H]12,0,23.689655172413794,6.069281034482759,3.0172413793103448,5.869731800766283,165.93784685003138,93.3244833448276,1.4031882077641205,6.125915517241379,4.99606363227851,7.6603070517241365,193.15000129112457,27.033333333333335,6.230346666666667,3.816666666666667,4.466666666666667,146.90106829041505,102.15845161666671,1.773544226833334,6.386335000000001,2.349537037037037,7.719370466666663,244.76063875053902,19.564102564102566,6.205376068376067,3.41025641025641,4.1424501424501425,158.69067703713358,71.44830424786328,1.4331577360891712,6.297115384615381,2.9662867996201325,7.730010324786322,193.42459495990485,15.93939393939394,6.041429696969697,2.83030303030303,2.747474747474748,162.30751561085816,56.43572104242426,1.2569509961385819,6.118659393939391,2.483829031051253,7.634964678787879,163.8129516433689,15.464088397790055,6.022788950276244,2.5193370165745854,2.7274401473296503,162.72449334842136,54.80934035359118,1.1817719627160275,6.092640883977902,3.169130686856285,7.644205690607738,153.8634762558879,14.17142857142857,6.184542285714285,2.2857142857142856,2.382857142857143,165.6294227425694,48.254131331428546,1.1423410194823598,6.233479999999999,3.11652557319224,7.8111444228571445,146.7705109545469,13.509554140127388,5.905917197452228,2.171974522292994,1.9044585987261147,161.9979521814067,45.91422811464968,1.1334009714828606,5.98141592356688,3.009200283085633,7.56035566878981,141.11321024903907,11.253333333333334,6.044333333333332,1.9533333333333334,1.86,169.79274964380957,37.26439997333334,0.9552709356696666,6.072594666666669,3.4953703703703702,7.7117982,120.79487264385885,11.981981981981981,5.906377477477477,2.3333333333333335,1.7147147147147146,167.34115114230949,40.540050207207216,1.0819961843217565,5.959127027027031,2.46825992659326,7.549448414414412,136.26988193759468,10.076099881093935,0.1299758917954815,0.012894059434195452,0.6626040428061831,3.7388030122869598,1.4209812686534629,46.346694653983356,0.26754583782717384,0.12257065992865633,2.256996358807612,0.08063351991676573,50.01344889908446,2.397463337296868,0.0009602863654380381,-0.007182084797839903,0.2379706698374951,0.8152838331791955,-0.48033736387521464,10.417550644867227,-0.03237947613141208,0.006508478002378241,-0.2523875221079919,0.007569293301625017,-1.2315661357118683,0.254580932345498,0.0291157085581878,0.001999455119144662,0.05976554163236683,0.717102937871864,-0.040233781103515276,1.3025942525890029,-0.00617645712788005,0.025515281715906047,0.44155949652594995,0.017274972862485628,0.5216532742411135,0.058069397902929254,-0.012893895975209858,-0.0015804934606342988,-0.04160090800994489,-0.11430516020290105,0.04424783846266032,0.14281677067704482,7.214963107249843e-05,-0.010804055957914414,-0.16964053865059978,-0.007032370909451244,-0.7645301335633083,0.5388743997214573,0.014127861300346212,0.00047749662907925673,-0.08554174522569162,0.086560549026306,-0.11408938213467167,2.559946471754883,-0.011559445585583113,0.01419910574099502,0.24273399351503297,0.007381170690969036,0.7470014764362458,-1.4370851027688114,-0.019440551894003663,0.000164023552036177,-0.12969763886529645,-0.6079217862333199,0.1922797513447864,-6.642140279205027,0.008628090924380084,-0.020897694411414883,-0.41716825735275426,-0.011271895778834761,-3.274871224280607,-0.8195657277884235,0.0037060322106682105,-1.6286666894539862e-05,-0.05728886599968194,-0.10527688787570488,-0.3018594126031537,-3.8081941789119673,-0.056371474041971736,0.0035737393685103314,0.1409796531045206,0.0016531404170800636,-7.018735994875361,-0.3457550535077285,-0.012589799841458547,-0.00012109631491221667,0.09325802615933415,-0.38189368917074035,0.04445614125105318,-1.5438664868569179,0.021570649699277248,-0.012231096710265522,-0.00659508482183399,-0.006849066813317502,1.3308470942381545,-0.16556866021788724,-0.015378345973797818,-0.0006043430713318465,0.029225717989094912,-0.40653971450642085,0.21652468095934743,-0.6546836182579735,0.027741334198194693,-0.014015021531638661,-0.17243069746725923,-0.00981747129918265,3.5946839786728044,,,0.47654320987654314,0.9074074074074074,0.25925925925925924,0.0,0.6481481481481481,-0.3888888888888889,1.2017999931449637,0.02592522005814574,0.0354807756137013,0.7139743336696087,0.14538645892096336,0.3255110455532278,1.9157743268145724,0.47089750447419115,2.0065115708074814,1.4230017475540777,0.24646928587837483,0.25782671192327816,0.0,0.5835098232534038,6.848336680551739,1374.0,352.0183,175.0,340.44444444444446,9624.39511730182,5412.820034,81.38491605031899,355.3031,289.77169067215357,444.2978089999999,11202.700074885224,1622.0,373.8208,229.0,268.0,8814.064097424904,6129.507097000002,106.41265361000004,383.18010000000004,140.97222222222223,463.1622279999998,14685.638325032342,2289.0,726.0289999999998,399.0,484.66666666666663,18566.80921334463,8359.451597000003,167.67945512243304,736.7624999999996,347.0555555555555,904.4112079999998,22630.677610308867,2630.0,996.8359,467.0,453.33333333333337,26780.740075791597,9311.893972000003,207.396914362866,1009.5787999999995,409.83179012345676,1259.769172,27029.13702115587,2799.0,1090.1248,456.0,493.6666666666667,29453.13329606427,9920.490604000004,213.90072525160096,1102.7680000000003,573.6126543209876,1383.6012300000004,27849.289202315707,2480.0,1082.2948999999999,400.0,417.0,28985.148979949645,8444.472982999996,199.90967840941295,1090.859,545.391975308642,1366.9502740000003,25684.839417045707,2121.0,927.2289999999998,341.0,299.0,25433.678492480853,7208.533813999999,177.9439525228091,939.0823000000001,472.4444444444444,1186.97584,22154.774009099136,1688.0,906.6499999999997,293.0,279.0,25468.912446571434,5589.659996000001,143.29064035045,910.8892000000004,524.3055555555555,1156.76973,18119.23089657883,1330.0,655.6079,259.0,190.33333333333331,18574.867776796353,4499.945573000001,120.10157645971498,661.4631000000004,273.97685185185185,837.9887739999997,15125.95689507301,584.4137931034483,7.538601724137926,0.7478554471833362,38.43103448275862,216.85057471264366,82.41691358190084,2688.1082899310345,15.517658593976083,7.109098275862067,130.9057888108415,4.676744155172413,2900.7800361468985,143.84780023781207,0.05761718192628228,-0.4309250878703942,14.278240190249706,48.91702999075173,-28.820241832512878,625.0530386920336,-1.9427685678847249,0.39050868014269446,-15.143251326479515,0.454157598097501,-73.8939681427121,29.785969084423265,3.4065379013079724,0.23393624893992543,6.992568370986919,83.90104373100809,-4.707352389111287,152.40352755291335,-0.7226454839619658,2.9852879607610077,51.662461093536145,2.0211718249108186,61.03343308621028,9.581450653983326,-2.1274928359096266,-0.2607814210046593,-6.864149821640908,-18.860351433478673,7.3008933463389525,23.564767161712396,0.011904689126962242,-1.7826692330558784,-27.990688877348962,-1.1603412000594553,-126.14747203794587,97.53626634958378,2.5571428953626643,0.08642688986334547,-15.483055885850183,15.667459373761385,-20.65017816637557,463.3503113876339,-2.0922596509905436,2.570038139120099,43.93485282622097,1.3359918950653955,135.20726723496048,-251.489892984542,-3.4020965814506408,0.028704121606330978,-22.69708680142688,-106.386312590831,33.64895648533762,-1162.3745488608797,1.5099159117665146,-3.6570965219976044,-73.004445036732,-1.9725817612960832,-573.1024642491062,-128.6718192627825,0.581847057074909,-0.002557006702442758,-8.994351961950064,-16.528471396485667,-47.39192777869513,-597.8864860891789,-8.850321424589563,0.5610770808561221,22.13380553740973,0.25954304548157,-1101.9415511954317,-51.86325802615928,-1.888469976218782,-0.018164447236832502,13.988703923900122,-57.28405337561105,6.6684211876579775,-231.5799730285377,3.2355974548915873,-1.8346645065398284,-0.9892627232750985,-1.0273600219976253,199.62706413572317,-18.378121284185482,-1.7069964030915579,-0.06708208091783496,3.244054696789535,-45.125908310212715,24.034239586487566,-72.66988162663506,3.079288095999611,-1.5556673900118914,-19.139807418865775,-1.0897393142092742,399.0099216326813,0.732119267947115,0.6414938771991501,0.43842181451045387,0.40659030621559267,0.28992851014978305,0.23646910078433708,0.16488919355562584,0.12610633563911938,0.106441139288722,0.07409139654347457,0.06464555692812705,0.04523483918892501,0.041746170763729766,0.026613231743164267,0.02716053387659084,0.014889496021886276,16.013331867255715,5.756224605004163,3.581289478621938,2.253798418680331,0.44181633630700495,-0.4055191910930941,4.04287025034489,0.96813179214496,6.024107418216283,0.6165072759668316,14.545642667622516,10.318102664217498,32.066648691843774,11.768652130045513,2.955937018963915,0.7511571933510459,3.5373509462182158,2.3031117641277215,7.015027389398171,0.2979015727478384,3.7686281894821296,2.498971615249952,24.44236371185493,14.700871407955646,0.2654394781665817,0.5042310508510307,0.7672216039713177,0.8230759525518524,0.8230759525518524,0.8230759525518524,1.6221886449223808,712.4664074834941,0.0,2.0,6.0,0.0,2.0,6.0,0.0,2.0,0.0,4.259406825510081,2.821316144152811,1.2374903019106442,0.9011148708015604,0.9011148708015604,0.9011148708015604,293.9751667779002,1409.30087168607,48.710463908458706,24.298290891139136,47.54326854752361,,13.0,596.0,21.983038028716937,18.00687135247258,23.774106334012366,12.965578028838586,30.195254392545365,19.26246486877803,10.975929837684358,19.92349450621513,4.899909730850478,0.0,12.866666666666665,24.5,7.0,0.0,17.5,0.0,0.023456790123456837,-10.5,0.12410807583221373,0.008812260536398608,-0.11529581529581512,0.0,0.16492460881934545,0.0,0.5643678160919541,0.8679012345679008,0.44025974025974035,0.5555555555555555,0.8679012345679008,32.44859981491402,0.699980941569935,0.957980941569935,19.277307009079436,3.9254343908660108,8.78879822993715,51.725906823993455,12.71423262080316,0.5490753911806545,0.2202072538860104,0.06476683937823835,0.32642487046632124,0.7894736842105263,0.27139767027351414,-0.5948532491944364,-0.047518715415672846,-0.010256090503352354,-0.03499136759967273,0.7286023297264859,1.5969608831632376,0.028238197343862147,0.027533808330400644,0.03895026544300579,-1.6377458304535872,0.8940582959641256,0.6324153569135775,1.6697684580040093,1.0382234185733512,0.5887438602070745,1.7624277673872983,0.8942135623139906,1.4956587396123826,0.6009545562910276,0.6189849433945062,0.5141355439212294,1.2327088024065258,0.9861733931240658,0.6469735130599935,1.0997577056477332,1.2866871426763755,0.8097794522049797,1.2586928040043435,0.9819825521015443,1.1159350058428954,0.6623500415586173,0.4462773823901155,0.5994115250143502,1.0429685318437438,0.9354362005707298,1.0389295853843499,1.3002037089355107,1.2674415759207145,1.058229972790558,1.0531592603089392,0.9426638074139059,0.9847001037338371,1.026701109997527,0.9036595481123063,0.9983961295963227,1.0194598684578446,0.9629425463914972,0.9215102313392126,1.1264021724265971,1.2578318449172015,1.040362152851193,1.0919968734313035,0.9585281103108645,1.0674980092247568,0.9090852691234349,0.9779866380398547,0.9563441595617174,0.9851604776260182,1.1681742472773864,1.46122482697674,1.243423430190155,1.2204422226494904,1.3748506004755343,0.8546364559648103,1.1665722281067763,0.9234484069037638,1.450466896666344,1.6165584286483212,1.498146276026446,1.0099650489329377,1.1719566707606182,0.9194879999379082,1.0029710318991811,1.043891608301686,0.9857482979187444,1.2068788967121464,1.1620541191865081,1.3111661003171542,0.9229209407706755,0.9797217236731757,0.9526819317501662,1.1596695145461482,0.9249439461883407,1.4317113962184063,1.121212054172101,0.6427097353073127,1.2975242941446692,0.8092896826907658,0.9338420891646456,0.7122170375206338,1.4062211003529472,1.4959182122151615,1.470201300705216,0.8599659450600257,0.8870288449884863,1.1060605540815334,1.076307702048856,0.8484837461957246,1.1061435653824077,0.7939561191061587,0.8953626987079606,0.7571496666633929,1.1018645698161529,0.9826667349659647,1.0849937291243619,0.8719275248937336,6.0,0.2012080399959188,3.333333333333335,3.0347222222222223,2.2211111111111115,1.6261111111111108,0.5796825396825396,0.2942885487528345,0.21720679012345678,0.2287654320987655,5727.267527713706,6640.37367926772,2918.540697567444,2613.927015826079,14.758422810693526,0.48613004830553286,7.583910016817605,0.9460176581692255,1.0,0.7894736842105263,1.5985741696174907,3.036664850974761,4.620490693216928,4.9568661243260115,4.9568661243260115,4.9568661243260115,0.20689655172413793,0.010060401999795939,0.07751937984496127,0.06897095959595959,0.04725768321513003,0.04279239766081871,0.018115079365079362,0.01177154195011338,0.009873035914702576,0.010893592004703117,0.5041506232754019,21.702734839476815,8.788534342888047,4.609418282548477,161.9644336973093,1.0,4.226253099338684,146.47233583641892,,121.02880731629591,124.27331414106068,122.77924619437982,121.04798484324094,165.79926558623688,125.56026460143273,126.32480872337356,155.85552797540097,0.23793564629061434,0.007388188318407996,-0.5570072663689442,0.35914460894272476,0.21806011991000854,-0.3380321574051342,0.22477440349614816,-0.12102403234666725,0.053099803869593065,-0.11182451452483962,0.09387278776169575,-0.024624699212343528,0.025265820639906043,0.22400853078201372,0.15506793103823022,0.09019797310510634,0.19180013911276506,-0.028314082663201637,0.028105440146572545,-0.023085603491502814,0.20816793946249057,0.19564032294639108,0.21424058977355553,0.010430259974545825,0.0057630827987212065,-0.09920221201866071,-0.12257531995259618,-0.06278396345691101,-0.03057266184585173,0.031138931552975393,0.003081487725139643,0.0002696720369804624,-0.08814553143634081,-0.07516207901204684,-0.08721398888093235,-0.015286490941785535,0.053480454350453815,0.10869601358516977,0.037032296269157924,-0.12909934093280692,0.023151941608541296,-0.08028915275060874,0.05523471502913021,-0.04320547716032925,0.1158442464881871,0.10754735716245069,0.09153973060568704,0.01493601207034375,-0.1426231498027579,-0.14957044437589695,0.012720862105007938,-0.19573928090751785,-0.16259797165977594,0.13531476845362836,-0.14331421752498494,0.032249019437011604,-0.17049507952048745,-0.18483337632549277,-0.13979168701143418,-0.0654798118579772,-0.08133759465070382,0.028513227795349105,-0.0012631139927389437,-0.08646018179584121,-0.028157912446772335,-0.2124302545445929,-0.08216754630170083,-0.21069837789211257,0.029156564634558287,0.06246339412749482,0.020501900683320338,-0.14033697234193032,-0.03431437337738962,-0.09686257710982847,-0.009391636166269363,0.14074472857783762,-0.10214330306135672,0.031285522358208355,-0.033311253334960905,0.08062412734378326,-0.0997881280673921,-0.002922062676839329,-0.08494068993127768,0.0266097844386516,-0.016431820066467213,-0.11831691063136399,-0.04686988410563004,0.04410736443037922,-0.10873525916460298,0.15237687205020553,-0.014125788756797687,0.10368815461115384,-0.11434238454615703,-0.07639830555967561,-0.12175421970065022,0.07187434695667645,13.261485828720652,11.14813876694379,7.585432434654,17.413274091703276,33.09524428527509,37.248948099536314,37.58801453409426,37.58801453409426,37.58801453409426,54.175812411802,38.4210471839601,6.654670718716121,6.96132122192851,0.0,15.754765227841903,7917.907664312432,6928.596515089119,1592.8074507013935,93.0,43.0,57.0,81.0,96.0,112.0,114.0,99.0,100.0,397.20352747200087,29.0,4.976733742420574,5.84354441703136,6.769641976852503,7.668093709082406,8.60611940061064,9.520981848562874,10.465813949164522,11.391379106890733,12.340520493081563,0.614942528735632,0.9748275862068967,1.1390826896570097,0.5706464476528701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.638122888705348,0.9608519269776877,1.002593113494236,0.5813529797791926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,2.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,4.0,3.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,21.837650612110593,0.0,14.488984098994122,12.72301297562517,0.0,0.0,26.344316129141138,38.26988372676457,19.165532918659032,24.25735688796872,174.50429196685934,-382.480973290032,-30.553761866967353,-6.594499539483311,-22.49888078176659,468.47945874475954,1026.8198983960378,18.156702041491357,17.703791351655823,25.04438776575702,0.46153846153846156,0.7992906198306987,0.1520074781582005,1.9702717593953822,0.1122931505406813,48.596066724066624,0.20070938016930132,7.0,0.1724137931034483,0.27288824783609217,0.5183807959603376,0.7887513969505981,0.846173131740941,0.846173131740941,0.846173131740941,1.0720000000000016,,2.053571428571429,1.675270236251707,1.281385004616356,2.0499215542742757,-5.459584580867579,1.5300642594859244,1.4861242843716291,-2.3963729217909213,103.35480000000005,18.00687135247258,0.0,14.105035452997189,11.835812092322787,51.61444254938121,32.43479480716171,12.152040213667762,0.0,0.0,4.07753744390572,0.0,5.442417710521793,3.044522437723423,6.98933526597456,5.53338948872752,8.630343289348893,7.765993079407675,10.330681536107859,35.66666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.540000000000006,0.0,49.90319549156212,0.0,0.0,-3.631814115965399,3.4984329727261274,0.0,-0.4809196457636209,66.06679600010656,0.0,0.0,0.0,78.85566836148678,19.612365521551226,11.835812092322787,39.53076089108529,12.152040213667762,0.0,0.0,0.0,33.09749396386646,37.01112754491018,32.9743158846515,292.94467167283784,,242.67059853569623,248.42253419054717,245.46357498101028,242.70982536564185,332.3928849148795,251.00719110957021,252.53953416642327,311.88856505611983,32.9743158846515,292.9446716728378,,240.95114088741263,246.9231865756925,244.3551845542454,240.99332102494748,337.0581157533412,249.62894420967336,251.19225200612505,314.107428872593,4.922637600753417,219.91817494852887,,184.39878370795563,186.42744271703955,183.59417362396445,184.43008751144927,252.5924199148555,188.54465915122688,190.00341347442517,235.7440894070039,1.2212709586907964,10.84980265454955,,8.987799945766527,9.200834599649895,9.091243517815196,8.989252791320068,12.310847589439982,9.296562633687786,9.3533160802379,11.551428335411845,2.598081732182709,146.47233583641892,,121.02880731629591,124.27331414106068,122.77924619437982,121.04798484324094,165.79926558623688,125.56026460143273,126.32480872337356,155.85552797540097,55.72941176470589,0.0,4.9075631380665925,0.0,0.0,0.0,0.0,58.1504005826657,7.588283183257966,0.0,0.0,0.0,-1.2843933604841804,5.082985669933722,0.0,0.0,0.0,33.718472827193175,513.9308806473573,92.71730183781446,176.12656135653614,267.9884602065818,287.49823521090866,287.49823521090866,287.49823521090866,851.0,133.58282864369718,129.05287006426158,78.81422025171744,86.38,78.0,0.8571428571428571,7.246368080102461,5.857980995127572,3.8768816342856596,5.112662939515905,,5.10978196404717,5.108421012193699,5.10779309631515,5.109789704099563,5.119314550585781,5.109107192885268,5.109801593721757,5.115549508995661,0.14358820867724664,0.18935788664873723,,0.18925118385359888,0.18920077822939627,0.18917752208574629,0.18925147052220603,0.18960424261428818,0.189226192329084,0.1892519108785836,0.18946479662946894,2.348282900999761,2.624972164681297,,2.6244085078316512,2.6241421299049876,2.624019204548751,2.624410022582493,2.6262723262606813,2.6242764443260156,2.6244123494117853,2.625536597532281,302.86000000000075,1696.0226860481303,163.87001026171797,,162.10139377873054,163.24192133851008,163.55733900146936,162.10046178659596,162.1055444164311,163.1467395449289,163.0009755855765,162.5642977031248,62.81565503881964,6.069259639322888,,6.003755325138168,6.045997086611485,6.057679222276643,6.0037208069109615,6.00390905246041,6.042471834997366,6.037073169836167,6.020899914930548,8.429292965480295,6.092325266189504,,6.081473799979789,6.08848505350135,6.0904153991243755,6.081468050523895,6.081499404846383,6.087901811448629,6.08700795898672,6.0843253746931865,25.355763870126275,29.630417291369568,0.0,0.0,-0.9724483403834956,-0.7928646658643057,8.77408946466703,7.220189829383656,-3.631814115965399,378.86163858801564,112.20342416412664,-245.9290507818553,-19.645572403572302,-4.240156047963023,-14.466414751873844,301.2246795150546,660.2285095760078,11.67446437919142,11.383250165103583,16.103134379902627,1903.0,44.0,2.922248026538163,1.8765828780423326,0.28867513459481287,0.09128709291752768,0.7827594654646349,0.4750698924238937,0.09622504486493763,0.026352313834736494,0.0,0.0,0.0,0.0,0.16037507477489604,0.11756874754118651,0.4843887793842956,0.3374832993418579,0.9221716652203673,0.629583418582863,19.767220234572104,17.320334684377052,12.714232620803163,11.791118880252187,12.46692593644067,10.168171333726495,9.398684032670673,7.188061131429804,8.621732282386482,6.001403120021441,6.205973465100197,4.342544562136801,4.675571125537734,2.980681955234398,3.0963008619313555,1.6974025464950355,5.106094792139026,3.4478559013821,9.621838593686064,5.702607993483006,14.980456195469534,8.702691389991164,89.87348882429826,43.164885418117855,30.89563081951025,28.711074824830295,28.711074824830295,28.711074824830295,144.0,172.0,61.80858299999997,44.62141700000004,0.3103448275862069,139.08,10.5625,5.8055555555555545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,58.0,0.0,1.0,60.0,0.0,5.0,5.0,55.0,5.0,29.0,55.0,0.0,0.0,0.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,5.0,0.0,3.0,27.0,8.0,0.0,3.0,4.0,0.0,3.0,5.0,1.0,0.0,0.0,0.0,0.0,3.5553480614894135,5.351858133476067,4.04305126783455,4.30406509320417,4.727387818712341,4.882801922586371,5.147494476813453,5.293304824724492,5.247024072160486,5.308267697401205 +4485,COC(=O)C1=C(C)NC(C)=C(C(=O)OC)C1c1ccccc1[N+](=O)[O-],0,25.86046511627907,6.644646511627905,3.3488372093023258,10.186046511627907,163.23743326515077,102.30184448837213,1.434733867146093,6.67784418604651,7.407622739018089,8.131039348837207,221.9597148308107,26.704545454545453,6.614068181818182,4.0,8.704545454545455,147.943793933309,102.0408072272728,1.7456514902272737,6.736334090909093,3.791666666666667,8.00553545454545,264.2855954812248,22.945945945945947,6.507837837837837,3.8378378378378377,7.797297297297297,155.23358797662817,87.06914125675672,1.5141183332998376,6.591591891891893,4.34084084084084,7.992672054054055,226.40629589985681,23.976744186046513,6.477883720930233,3.988372093023256,7.162790697674419,150.9727361099622,90.50614703488374,1.6335264933086857,6.594517441860467,3.6705426356589137,7.911227209302327,244.31450493802672,21.93913043478261,6.65135652173913,3.3304347826086955,6.408695652173913,156.74078775356824,81.44539341739129,1.404245819701225,6.723607826086959,4.297101449275362,8.136629947826085,211.52553776373705,20.5859375,6.6597968750000005,2.9453125,5.9609375,157.63622623881872,75.36719796875002,1.330813924769453,6.725539062500002,4.267795138888888,8.17726525,200.63501507900205,19.808823529411764,6.59575661764706,2.411764705882353,5.544117647058823,160.5098746430675,72.46309941911765,1.221405194658706,6.646605882352941,4.5827205882352935,8.101454852941176,179.37146820089697,15.290780141843971,6.569794326241134,1.8439716312056738,3.730496453900709,168.72125862674193,53.35450080141845,0.9598159528391416,6.574439716312057,5.542553191489363,8.163475886524823,135.23322208267808,8.227722772277227,6.260673267326735,1.4158415841584158,0.32673267326732675,171.2540584308998,22.300742643564362,0.8415327054156435,6.265559405940593,3.638613861386138,7.946195287128712,103.14426288066775,7.945916711736072,0.19068350459707942,0.02887565969752169,0.6987560843699296,5.201730665224446,1.4310024082911021,37.42856005300162,0.2193930377966739,0.17297187669010267,3.1397151613484766,0.1274035997836668,46.4493442399331,0.3696224003146659,0.01812378927184227,-0.012412199986158228,0.39743841880131736,1.8664511529573715,-0.017728157941351647,1.653641786321845,-0.008997543099352438,0.01588547003294163,-0.14921422171962997,0.01026729239392301,-1.0267549126321809,1.6807331939835997,0.028773566427433395,2.907171189961232e-05,0.1522809992252934,0.8947495359069187,0.2051967191676746,8.025510010480463,0.06339546310343114,0.02670911011065146,0.6336628678435062,0.01993913560288249,12.526827902237352,-0.08977825851811841,-0.013004651162790686,-0.002138167269871993,-0.062466197944835065,-0.26176311519740403,-0.08406599116320658,-0.4206713042184976,-0.016628642046169474,-0.00970438074634939,-0.07288474250345532,-0.009247047052460778,-1.1188158858688568,-0.4476356197239406,-0.015409611776048144,0.006765412147078004,-0.1064406141980389,-0.6433889058715638,-0.014011295720687681,-2.0821556851553127,-0.01198698309527708,-0.013756527852893467,-0.35724689935544224,-0.012148236386295778,-2.185869985641868,-1.278947234991888,-0.051605161573823666,-0.01020886723342514,-0.15315288669551114,-0.8280024675500269,-0.24692986241635526,-5.870905671097553,-0.019758309957118247,-0.04535732363777719,-0.6585903228471847,-0.035768950074364515,-4.209297227245256,0.06605319250469233,0.033758680765437615,0.0017936802306936538,-0.24082174784462188,0.21926796678649832,-0.26336405807714647,-0.012318077967421825,-0.0618327352073411,0.02971023685298889,0.1617316770768159,0.021620954251900852,-9.875803881422133,-0.14482814172122915,0.028107127103398816,0.006972306414314294,-0.10103218531005836,-0.31042273185812536,-0.03156131537918102,-0.8761004354855406,-0.014949034734777,0.022920354878427675,0.8558224346344435,0.02259362469266498,-4.450336084041173,-3.904700962254148,-0.08301963169816168,-0.005738137590196156,0.1331573395305999,-1.983448371878832,0.03897231172602251,-18.206491805707127,-0.011236449081621224,-0.08012465126988627,-1.083174623573769,-0.04825038219214024,-11.511001289377331,,,0.452,1.15,0.52,0.02,0.63,-0.11,0.9240274939258571,0.02345634568316271,0.030336345683162708,1.059521150651304,0.25149728896931706,0.22161490784244406,1.9835486445771613,0.47311219681176114,1.9774887028518497,1.390490306308025,0.16115951618662044,0.42583888035720396,0.0,0.5869983965438245,8.049220611534894,1112.0,285.7197999999999,144.0,438.0,7019.209630401483,4398.979313000002,61.693556287282,287.1472999999999,318.5277777777778,349.6346919999999,9544.26773772486,1175.0,291.019,176.0,383.0,6509.526933065596,4489.795518000003,76.80866557000004,296.3987000000001,166.83333333333334,352.2435599999998,11628.566201173891,1698.0,481.5799999999999,284.0,577.0,11487.285510270485,6443.116452999998,112.04475666418799,487.77780000000007,321.2222222222221,591.4577320000001,16754.065896589404,2062.0,557.0980000000001,343.0,616.0,12983.65530545675,7783.528645000001,140.48327842454697,567.1285000000001,315.6666666666666,680.3655400000001,21011.047424670298,2523.0,764.906,383.0,737.0,18025.190591660346,9366.220242999998,161.4882692656409,773.2149000000003,494.16666666666663,935.7124439999999,24325.43684282976,2635.0,852.4540000000001,377.0,763.0,20177.436958568796,9647.001340000003,170.34418237049,860.8690000000003,546.2777777777777,1046.689952,25681.28193011226,2694.0,897.0229000000002,328.0,754.0,21829.34295145718,9854.981521000002,166.11110647358402,903.9384,623.2499999999999,1101.79786,24394.519675321986,2156.0,926.3409999999999,260.0,526.0,23789.697466370613,7522.984613000001,135.33404935031896,926.996,781.5000000000002,1151.0501000000002,19067.88431365761,831.0,632.3280000000002,143.0,33.0,17296.659901520878,2252.3750070000006,84.99480324698,632.8214999999999,367.49999999999994,802.5657239999999,10417.570550947443,341.6744186046511,8.199390697674415,1.2416533669934327,30.046511627906977,223.67441860465115,61.53310355651739,1609.4280822790695,9.433900625256978,7.437790697674415,135.0077519379845,5.478354790697673,1997.3218023171232,16.2633856138453,0.7974467279610599,-0.546136799390962,17.487290427257964,82.12385073012435,-0.7800389494194725,72.76023859816118,-0.3958918963715073,0.6989606814494317,-6.565425755663719,0.4517608653326124,-45.177216155815955,124.37425635478637,2.129243915630071,0.0021513066805713115,11.268793942671712,66.21146565711199,15.184557218407921,593.8877407755542,4.691264269653904,1.9764741481882082,46.89105222041946,1.4754960346133044,926.9852647655641,-7.7209302325581834,-1.118399999999999,-0.18388238520899142,-5.3720930232558155,-22.511627906976745,-7.229675240035766,-36.17773216279079,-1.4300632159705748,-0.8345767441860477,-6.268087855297158,-0.7952460465116269,-96.2181661847217,-51.47809626825317,-1.7721053542455365,0.7780223969139705,-12.240670632774473,-73.98972417522984,-1.6112990078790834,-239.44790379286098,-1.378503055956864,-1.5820007030827488,-41.083393425875855,-1.3970471844240144,-251.37504834881483,-163.70524607896166,-6.605460681449429,-1.306735005878418,-19.603569497025426,-105.98431584640345,-31.607022389293473,-751.4759259004868,-2.5290636745111357,-5.80573742563548,-84.29956132443964,-4.578425609518658,-538.7900450873927,8.983234180638156,4.591180584099516,0.24394051137433692,-32.751757706868574,29.82044348296377,-35.81751189849192,-1.6752586035693682,-8.40925198819839,4.040592212006489,21.995508082446964,2.940449778258516,-1343.1093278734102,-20.42076798269331,3.963104921579233,0.9830952044183154,-14.245538128718229,-43.76960519199567,-4.450145468464524,-123.53016140346122,-2.107813897603557,3.2317700378583023,120.67096328345653,3.185701081665762,-627.4973878498054,-394.37479718766895,-8.38498280151433,-0.5795518966098118,13.448891292590591,-200.32828555976204,3.9362034843282734,-1838.8556723764198,-1.1348813572437437,-8.092589778258514,-109.40063698095067,-4.8732886014061645,-1162.6111302271104,0.7489300064080838,0.5722382908510669,0.4549155738574627,0.2872875083294639,0.2851234700793851,0.14809409549121444,0.17204261912647756,0.07950061833988188,0.10579219303900957,0.042768690936885144,0.0651269049288586,0.022797768215917797,0.043082427781117615,0.011944967244747777,0.029419166978009226,0.0064386447152576,8.054933670050804,5.686722845544234,3.607815195635122,2.1855074753494534,0.47170132306843,-0.4972320416458471,3.2889282943257894,0.9725217783525538,7.004122451395462,0.9950274514410071,14.594783518353426,10.948220607894651,16.028476157020282,11.698636958360998,1.9963748582117382,0.6692121808170455,3.5533109505073868,2.2351324989868138,8.001938664721033,1.2388644633406296,3.7572390160718956,2.430949413380707,20.901464687094684,14.651514136509869,0.2907735341066355,0.6220196635699489,0.7274421870824453,0.7600794082139718,0.7682387134968534,0.7682387134968534,2.4342563268315733,771.1110283918142,0.0,2.0,2.0,0.0,7.0,0.0,3.0,1.0,0.0,3.76872775189638,1.880479159023202,1.279524418805904,1.0934779071779968,1.04696627927102,1.04696627927102,208.98078584366,1369.3139816812352,55.12181872534434,31.84451120188918,65.70036326123966,,8.0,326.0,22.779827670882764,19.703392636909218,22.39704682651909,11.394078626111666,0.0,32.418696287939895,19.913841467842857,0.0,5.316788604006331,9.473725907600098,11.3,28.75,13.0,0.5,15.75,0.0,0.04799999999999997,-2.75,0.22115323351385763,0.06757349714787175,-0.15357973636598587,0.02369230769230768,0.22055021834061111,0.0,0.658139534883721,0.9159999999999997,0.4369863013698634,0.5905660377358493,0.892307692307692,23.10068734814643,0.5864086420790677,0.7584086420790677,26.488028766282603,6.287432224232926,5.540372696061102,49.58871611442903,11.827804920294028,0.49344978165938885,0.2949852507374631,0.0,0.4336283185840708,0.29411764705882354,0.30782864766583856,-0.7752189156094739,-0.05550566243640692,-0.018028346874638928,-0.06460157630078948,0.6921713523341614,1.743126668817768,0.04587049427392816,0.04053782950738994,0.05622989254250864,-3.8393701223921672,0.6844634061827093,0.5606275777001736,1.4355708184618365,0.6512630171685899,0.37341206828106394,1.24876166859649,0.694636832001816,1.1620672741219826,0.5506308847878457,0.5557060252850043,0.5869840880640677,1.0060857455146617,0.663623704019838,0.6852641685000187,1.0698770124852024,1.0389297966697346,0.7257169833589048,0.9294529650710875,0.6643894089866397,0.7731397026498619,0.6770978596825545,0.44316774571999656,0.6925096318882833,0.7294012345124429,0.7782806969779472,0.7158667206695449,1.1314277595704147,1.4953560371517027,0.8144104803493449,1.260889099756129,0.7862893827931151,1.1650382127628174,0.6981954193699681,0.6403235530546624,0.7140015418650386,1.016363303628157,0.9550663478497615,1.0435481666779995,0.847548153617303,1.3978328173374612,1.0662236567305867,1.0772728964934337,0.9544767781264765,1.0730752718504062,1.0289349243302215,1.1269991611911085,1.0799226854451083,0.9970704680645683,1.097193094030765,1.328726875320146,1.468443260689469,1.3432299729102168,1.17578125,1.183816568684259,1.0908057052040516,1.0963229639707062,1.3046688594348474,1.290685917403537,1.375741778407196,1.0327731635875017,0.9418150734293174,0.8040836894623614,1.0839267267405264,1.2796337188126023,0.912631646545081,1.2060694063695372,0.9501058755920423,1.2524485591043997,0.8036820825727304,0.8602719524304899,0.8122557655925735,1.1637155930191838,1.114598478836362,1.0585534873320561,0.8192043926879579,0.8525788814966077,1.1452816748737962,0.89758500999604,1.1139270551376357,0.9560242281939139,1.071855978419049,0.898928331166906,1.0297016986963266,1.0341562259222739,1.6205283133812973,1.605883995839388,0.9035611087581201,0.3736780798822917,1.4891694409615635,0.7793727824123191,1.6107029482287927,0.928170940318001,1.6428413217934004,1.6893236047881313,1.5389049828360715,1.2152803571052588,5.0,0.0,3.333333333333335,2.8125,2.2977777777777786,1.8750000000000002,1.143673469387755,0.4097222222222222,0.04081632653061224,0.0,5536.875737219256,6049.370258138596,2422.7608034508285,2242.0015953181055,11.539683489296646,0.4889447809174161,5.8974154737661735,0.956735715946979,1.0,0.29411764705882354,1.6575370028057181,3.545785595678896,4.146740335896194,4.332786847524101,4.379298475431078,4.379298475431078,0.1923076923076923,0.0,0.09009009009009013,0.0625,0.04505446623093684,0.03605769230769232,0.02334027488546439,0.012415824915824915,0.0058309037900874635,0.0,0.4675969445277883,21.301775147928993,9.273922571219869,4.465974625144176,143.81370172517111,1.0,4.123557995300746,105.85411078387882,,85.7349736940237,84.52179607064727,85.99713894709838,85.7530017153776,121.73989955281723,85.33133630952625,85.7971135719434,104.17981607733034,0.046517275944855524,0.09504644520845386,-0.42984991914222936,0.5687799043062196,0.358813493638821,-0.012388629004840425,0.044181282528105964,-0.04101106940180599,0.09183845568954613,-0.04752476388830888,0.08058871500771582,-0.02210483117540907,0.21152162235745142,0.15089698759330492,0.0010067895315343206,0.21793155384486648,0.17200997004490465,0.14339369240665342,0.21442208834953164,0.2889584087995715,0.1544130214792295,0.20182176894395548,0.1565037066200597,0.26968793870437197,-0.011298665940648038,-0.06820018957733101,-0.07404739120316983,-0.08939628482972138,-0.05032231233104596,-0.05874622619510325,-0.011239313070628306,-0.07579384566241495,-0.05610380676932707,-0.023213807227070893,-0.07258073608722516,-0.024086796146994823,-0.056335302264468166,-0.08081250556312758,0.23429463492599129,-0.15232871180508817,-0.12368747005162421,-0.009791245381214921,-0.055630130633046684,-0.054637025931452816,-0.07953043070429151,-0.11378321949498382,-0.09535237942196031,-0.04705922164047792,-0.1609565367206644,-0.27063254203800735,-0.3535457662392848,-0.21917932469040255,-0.1591782660116448,-0.17255726544250752,-0.15685630606103776,-0.0900589652048557,-0.2622236892245762,-0.20976116908781198,-0.2807530567040548,-0.09062124118485335,0.008312847327877492,0.17704038341843376,0.06211737669313231,-0.34464350755782186,0.0421528873558157,-0.1840416595746019,-0.0003291090533533354,-0.28183544850974535,0.17176339542304847,0.05151157629450493,0.16970442192068003,-0.21261449527487145,-0.0182267379555236,0.14740198509981295,0.2414596406575849,-0.1445886305249984,-0.0596768175510162,-0.02205538942235005,-0.023407270657618606,-0.06813814551686578,0.13250914146865564,0.27257964199111495,0.17733898203056497,-0.09581052557067452,-0.49140975219220806,-0.4353792000707398,-0.1987188396838131,0.19056340618581985,-0.38130547303014767,0.027234274030721657,-0.48643313501575763,-0.05121606954562883,-0.46322357601194336,-0.3449913663851456,-0.37872071333989066,-0.24781838102853507,3.965406456500188,10.088764572270334,16.39533182589003,16.11410056260444,35.10440914008752,37.95040470860573,38.64970703418713,38.69659075511736,38.69659075511736,49.437217571296245,34.76225765770062,4.028987904665511,10.6459720089301,0.0,14.674959913595611,3340.317947996745,2343.260654083115,1841.5218622600678,57.0,37.0,51.0,70.0,90.0,100.0,97.0,79.0,70.0,346.11648629600046,26.0,4.844187086458591,5.713732805509369,6.6240652277998935,7.526717561352706,8.449128460502108,9.361773075736393,10.28742254209393,11.203774577902795,12.130136079440232,0.7054263565891472,1.016186046511628,1.1296604597052124,0.6705849095693289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6601347166132853,1.0001823985408116,1.0302511898914277,0.6437481858761046,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,6.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,14.790514511606428,0.0,0.0,0.0,5.687386274683562,10.114318268765572,9.589074368143644,0.0,0.0,18.19910120538483,13.847474399381248,23.023897186270272,36.20702123767267,167.3773741846182,-421.5140712108595,-30.18040101670041,-9.802652818857197,-35.12617260090496,376.3581600282782,947.7999104703756,24.941417708643932,22.041858383031983,30.574190660334693,0.5,0.7944878350170839,0.18487535370498237,7.709294149543137,0.13341230997409012,42.142807050739535,0.205512164982916,4.0,0.15384615384615385,0.3054655601478695,0.6534486900231539,0.7641979378729835,0.7984842324122777,0.8070558060471013,0.8070558060471013,2.1756,,1.7857142857142858,2.0856212191717076,1.489304286185103,1.7805938315565375,-7.530129222398548,1.8746940024479806,1.7714947875377987,-3.0326161248350116,88.40510000000003,23.98611132456141,0.0,5.316788604006331,0.0,19.76538044554264,14.219595082555067,62.48352572055921,0.0,0.0,3.970291913552122,0.0,5.303304908059076,0.0,6.853299093186078,0.0,8.512582578858554,0.0,10.234695959482242,30.333333333333332,5.96895667989418,0.0,0.0,0.0,0.0,0.0,0.01972789115646334,0.0,43.696000000000005,0.0,36.12635952066012,0.0,-0.5497694633408918,0.0,0.0,0.0,-0.18517006802720815,48.575399767324136,5.316788604006331,5.687386274683562,0.0,31.081516707276435,19.06280027574374,10.114318268765572,25.328831937239634,46.80575596009664,0.0,0.0,0.0,28.835151111481142,28.385792814371264,30.901578321985404,211.70822156775768,,171.32709024519025,168.8767424437608,171.87513355130199,171.3635559242307,245.65228286833099,170.51269709885668,171.45250756088376,209.087460024621,30.901578321985404,211.70822156775773,,169.71324611509402,167.00817221304195,170.58043828223023,169.75427201893348,251.00992832803297,168.82529313338347,169.85066071765493,211.3922482794957,5.035015805178075,137.74908224592542,,113.53567993419654,112.28323424093064,113.90172717376905,113.5545948340067,153.09350104127975,113.1226037352748,113.5995496444389,133.6618814943404,1.2360631328794163,8.468328862710306,,6.8530836098076096,6.755069697750432,6.87500534205208,6.854542236969228,9.82609131473324,6.820507883954267,6.85810030243535,8.36349840098484,2.5175079025890374,105.85411078387882,,85.7349736940237,84.52179607064727,85.99713894709838,85.7530017153776,121.73989955281723,85.33133630952625,85.7971135719434,104.17981607733034,43.007843137254895,0.0,5.709638290501386,0.0,0.0,0.0,0.0,44.30080116533139,0.0,2.9459941893424038,9.655559334845048,0.0,-0.9696759259259264,0.0,0.0,0.0,0.0,27.6811719926725,431.9912673986616,71.27409112064588,152.46878061419253,178.30983444353635,186.30983444353635,188.30983444353635,188.30983444353635,702.0,127.14093741679602,111.74426681423472,59.87417445313807,107.77000000000001,107.77000000000001,1.0,8.140443083046454,5.700439718141092,4.240369894374113,4.922988898941103,,4.928866857032357,4.930757480679036,4.924473983267361,4.928827220900563,4.842969742105082,4.92933471665889,4.928784958650362,4.886719616410039,0.16961479577496452,0.19691955595764413,,0.1971546742812943,0.19723029922716143,0.19697895933069443,0.1971530888360225,0.1937187896842033,0.19717338866635561,0.19715139834601447,0.19546878465640155,2.360941236552078,2.5102065777098543,,2.511399847066271,2.511783355322791,2.5105081953661545,2.511391805402271,2.4938188475171263,2.5114947649117596,2.511383230861209,2.5028119751604248,249.44999999999993,171.78216819102684,144.80139286868842,,143.28759112129808,143.03709954824802,143.6907959641006,143.292337173789,151.66907168633333,143.2197083783863,143.2988975458652,147.75581212258626,6.871286727641074,5.792055714747537,,5.731503644851923,5.721483981929921,5.747631838564024,5.73169348695156,6.066762867453333,5.728788335135452,5.731955901834608,5.91023248490345,6.06251794203866,5.891653831038404,,5.881144469248418,5.879394765886335,5.883954472553617,5.8811775912644615,5.937991719303798,5.880670605271475,5.881223373349066,5.9118517249337765,9.655559334845048,35.57659005731922,14.391040406903503,1.1918650793650811,-2.3269831821617526,5.96895667989418,0.0,3.288860544217687,2.4207777462836986,320.61850118028076,91.00902596742522,-229.19217868808954,-16.41015646957504,-5.330050667164873,-19.099348224007464,204.63930519835858,515.352490646545,13.561535081836503,11.984941642942903,16.624273891824032,1280.0,45.0,1.8816412352246388,0.7439176387520026,0.0,0.0,0.6253429948075898,0.18833491631854135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12869425449598476,0.04581997368995358,0.26551430732207915,0.09307408205899381,18.723250160202095,14.305957271276673,11.82780492029403,7.469475216566062,10.54956839293725,5.479481533174934,8.774173575450355,4.054531535333976,7.40545351273067,2.9938083655819603,5.8614214435972745,2.051799139432602,4.308242778111762,1.1944967244747777,2.8536591968668947,0.6245485373799872,4.646351707052242,1.7127585165580814,8.20139975910694,2.61547773644272,13.793381694865962,3.803653441141116,85.36667581999278,42.42716629360329,35.267104235614596,33.70017808204608,33.54081693066459,33.54081693066459,126.0,151.0,47.40427399999999,25.001725999999994,0.27906976744186046,76.08,10.86111111111111,5.749999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,43.0,0.0,0.0,44.0,6.0,5.0,8.0,36.0,11.0,26.0,33.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,7.0,1.0,1.0,25.0,8.0,0.0,2.0,6.0,0.0,2.0,4.0,0.0,0.0,0.0,0.0,1.0,3.5553480614894135,6.577339663943455,4.119037174812473,4.6515765588022475,5.175443268397502,5.6544609193234905,5.925591802957274,6.158632807945108,6.26974711353724,6.486922693742851 +24802841,COC[C@]12CNCC[C@@]1(c1ccc(Cl)c(Cl)c1)C2,0,34.628571428571426,5.927791428571429,3.4,5.17742504409171,161.47803639767235,142.9297094857143,1.656029239498086,6.124611428571429,2.2237153526248177,7.642448971428572,226.4373470522472,26.783783783783782,6.196054054054054,4.324324324324325,5.114114114114114,144.5612161227216,102.70038351351349,1.9250989529729732,6.3958648648648655,2.408582193304416,7.687083783783782,270.90433090416,22.44776119402985,6.102776119402987,3.8059701492537314,3.61028192371476,153.61107830007077,84.67077785074628,1.668735032668537,6.2655597014925375,2.13028990848228,7.685110686567165,227.1253313558477,22.11111111111111,5.915043333333334,3.2444444444444445,2.7968449931412893,152.45905333505803,82.88855356666667,1.583835342151566,6.109412222222222,1.952465113719115,7.549951433333334,204.07360688798573,14.037037037037036,5.761564814814814,2.574074074074074,1.8940329218106997,161.31627516706388,49.045246990740736,1.2505045485613056,5.884723148148147,1.8887650510592897,7.438501092592592,155.02726522792892,14.65979381443299,5.723206185567011,2.350515463917526,1.7044673539518902,159.60220564826872,52.06000660824741,1.2503003906105667,5.852139175257732,1.945844469899453,7.396287711340207,153.8021215095287,14.89010989010989,5.737956043956044,2.0,1.2405372405372406,167.21129928509265,52.91091092307692,1.14488451273811,5.880340659340659,1.8552096052096056,7.515757494505493,134.73477791433936,17.8135593220339,5.8175779661016955,1.7457627118644068,1.0075329566854991,167.44254256750818,61.849438,1.1960928403124234,6.068572881355933,1.798074911069261,7.759587559322036,133.82466580488042,17.90625,5.700628125000001,1.46875,0.39236111111111116,171.91147890320522,62.31148459375001,1.1074826069699062,5.9844156250000005,1.5995370370370372,7.756598562500001,117.62601698672952,16.261224489795925,0.08106742857142853,0.009581393496649966,0.7477551020408163,3.007649281934996,1.3433719697296105,76.0659132277551,0.2852913218610564,0.10109306122448976,0.28832894749120497,0.07114641142857143,55.12628831984174,0.20904578047435216,0.0004845405405405291,-0.002116364235564304,0.37425261996690573,0.7327291917768105,-0.023605804952556195,1.0278858873028172,0.001833392009723639,0.0006975179260892989,0.012830640962622167,-0.0021359913513513437,1.847924860607525,0.4526347852573868,-0.019238985074626864,-0.002294858980725034,-0.080377703320134,-0.46621360318588473,0.3329305997353765,2.396190898470912,0.06810282168366863,-0.017882698751142276,-0.06909655273365818,-0.012009810149253716,8.741497713036738,0.7641723356009076,-0.00019066666666666646,0.00034185422682160484,-0.14712018140589567,-0.20893871952073012,-0.2922964828778765,3.2718765281179194,-0.037494651569460115,0.0019417006802721051,-0.010271928260203133,0.004269326666666665,-8.760508963374406,-0.016250944822373745,-0.0003500740740740708,0.000652026919561631,-0.08161753590325017,-0.18702415945802187,0.0721746752950713,-0.05053462114134769,0.009506843106554773,-0.0014071617535903053,-0.0004053888486248436,-0.0004800807407407509,0.3422229529594088,0.8180096780980431,0.0019190515463917539,0.0001763667726034709,-0.050847885545970965,-0.13310247199299727,-0.2970170078966914,3.7758981145129376,-0.013688108080454564,0.0037462023984851877,0.009179419103114686,0.0009570630927834902,-3.6112581868674236,0.9497645211930923,-0.0055113846153846124,-0.00131169577571993,-0.018712715855573003,-0.14722716437002145,0.04222103014073258,4.669910849481942,0.038976273585710375,-0.004011616954474087,-0.011561402866517504,-0.006463778461538465,5.636293670182897,-3.5527499135247322,0.002165016949152544,0.00013753940626319477,0.03674852992044274,0.08980087201233294,-0.12446352913109632,-16.75943027666552,-0.07599116220115755,-0.0021295745416810776,-0.012162117890951377,0.0006072244067796748,-9.566052386133393,-2.8335459183673475,0.018781499999999996,0.002409717287985504,0.10045918367346937,0.2707788485764677,0.1726101718616117,-13.400155916147959,-0.06130445544462957,0.01798131377551021,0.022619133158521744,0.015591072500000011,-1.368964745425333,,,0.508994708994709,1.0277777777777777,0.3888888888888889,0.05555555555555555,0.6388888888888888,-0.25,0.9462579931054997,0.015535425558740497,0.02986875889207383,0.5949612054217012,0.18112349893876425,0.29857516230100056,1.5412191985272008,0.47969866123976485,2.0247409313044225,1.613247217553242,0.11199890972194274,0.10402320803496304,0.19547159599427463,0.4114937137511804,8.144820557828584,1212.0,207.4727,119.0,181.20987654320987,5651.731273918533,5002.539832000001,57.96102338243301,214.3614,77.83003734186862,267.48571400000003,7925.307146828652,991.0,229.254,160.0,189.22222222222223,5348.764996540699,3799.914189999999,71.22866126000001,236.64700000000002,89.11754115226339,284.42209999999994,10023.460243453921,1504.0,408.8860000000001,255.0,241.8888888888889,10291.942246104742,5672.942116,111.80524718879198,419.7925,142.72942386831275,514.902416,15217.397200841795,1990.0,532.3539000000001,292.0,251.71604938271605,13721.314800155222,7459.969821000001,142.54518079364095,549.8471,175.72186023472034,679.495629,18366.624619918715,1516.0,622.2489999999999,278.0,204.55555555555557,17422.157718042898,5296.886675,135.054491244621,635.5500999999999,203.9866255144033,803.3581179999999,16742.944644616324,1422.0,555.1510000000001,228.0,165.33333333333334,15481.413947882067,5049.820640999999,121.27913788922498,567.6575,188.74691358024694,717.4399080000001,14918.805786424284,1355.0,522.154,182.0,112.88888888888889,15216.22823494343,4814.892894,104.184490659168,535.111,168.8240740740741,683.9339319999999,12260.864790204882,1051.0,343.23710000000005,103.0,59.44444444444444,9879.110011482982,3649.116842,70.56947757843298,358.04580000000004,106.0864197530864,457.8156660000001,7895.6552824879445,573.0,182.42010000000002,47.0,12.555555555555557,5501.167324902567,1993.9675070000003,35.439443423037,191.50130000000001,51.18518518518519,248.21115400000002,3764.032543575345,569.1428571428573,2.8373599999999985,0.33534877238274885,26.17142857142857,105.26772486772487,47.018018940536365,2662.3069629714287,9.985196265136974,3.5382571428571414,10.091513162192173,2.4901244000000005,1929.420091194461,7.73469387755103,0.017927999999999576,-0.07830547671587926,13.847346938775512,27.11098009574199,-0.8734147832445792,38.031777830204234,0.06783550435977465,0.02580816326530406,0.47473371561702016,-0.07903167999999972,68.37321984247842,30.326530612244916,-1.2890119999999998,-0.15375555170857727,-5.385306122448978,-31.236311413454278,22.306350182270222,160.54479019755112,4.562889052805798,-1.1981408163265326,-4.6294690331550985,-0.804657279999999,585.6803467734615,68.77551020408168,-0.01715999999999998,0.030766880413944438,-13.24081632653061,-18.804484756865712,-26.306683459008887,294.46888753061273,-3.3745186412514103,0.17475306122448947,-0.924473543418282,0.38423939999999984,-788.4458067036966,-1.7551020408163645,-0.03780799999999965,0.07041890731265615,-8.814693877551019,-20.198609221466363,7.7948649318677,-5.457739083265551,1.0267390555079154,-0.15197346938775297,-0.04378199565148311,-0.0518487200000011,36.96007891961615,79.34693877551018,0.18614800000000012,0.017107576942536677,-4.932244897959183,-12.910939783320735,-28.810649765979065,366.26211710775493,-1.3277464838040927,0.3633816326530632,0.8904036530021247,0.09283511999999855,-350.29204412614007,86.4285714285714,-0.5015359999999998,-0.11936431559051364,-1.7028571428571433,-13.397671957671953,3.8421137428066645,424.9618873028568,3.546840896299644,-0.36505714285714197,-1.052087660853093,-0.5882038400000004,512.9027239866437,-209.61224489795921,0.1277360000000001,0.008114824969528492,2.1681632653061214,5.298251448727644,-7.343348218734683,-988.8063863232655,-4.4834785698682955,-0.12564489795918357,-0.7175649555661312,0.035826240000000814,-564.3970907818701,-90.67346938775512,0.6010079999999999,0.07711095321553613,3.21469387755102,8.664923154446967,5.523525499571575,-428.8049893167347,-1.9617425742281462,0.5754020408163267,0.7238122610726958,0.49891432000000036,-43.80687185361066,0.7112843677463531,0.6635344356678247,0.43172879511578827,0.352186222497593,0.25919021076635096,0.20459003794421943,0.16010624230126583,0.1176668596038035,0.0997828802438484,0.06451654352949,0.06520800407035326,0.03768904186174815,0.042197919784953485,0.02257638350629687,0.027133011250848656,0.012848010280960036,17.002138851501527,5.691975443796572,3.521813503411782,2.1868623024114,0.35512999209104,-0.42132627199827327,4.121426047106414,0.9877477581383028,6.004928285233545,0.7729040642248446,14.540216801461314,10.950947713270695,35.451530402425504,11.703132281009907,2.2169944824060024,0.7771379253353394,3.4644255799405363,2.2385821146941796,3.513001436583291,1.1020518769610008,3.6779658382680287,2.4350202194137904,22.457518655108117,14.70646166958482,0.293851977849876,0.6115367654190833,0.7946375177766393,0.8738509544919,0.8845882016181347,0.8845882016181347,1.7465508201666025,474.8618377498997,0.0,0.0,3.0,0.0,5.0,2.0,1.0,0.0,2.0,3.5654239202874924,1.8747283240046047,0.9002792858379136,0.4787110714903857,0.4215682143475288,0.4215682143475288,101.61271777287027,527.4907903191564,33.650360906257305,15.071165437690183,32.19251622121578,,9.0,266.0,0.0,0.0,10.82998093879356,10.045266627482652,26.117216399264077,11.984273114623004,7.109797541277533,12.13273413692322,11.383155672467941,27.938742734265084,9.161904761904761,18.5,7.0,1.0,11.5,0.008994708994708963,0.0,-4.5,0.13423129251700677,0.04071677451468392,-0.09351451800232286,0.028473962684488985,0.10877823214847426,0.0,0.5782312925170071,0.8410052910052909,0.44400000000000034,0.5375145180023232,0.8125313283208019,17.032643875898994,0.27963766005732893,0.5376376600573289,10.709301697590622,3.2602229808977565,5.37435292141801,27.741945573489616,8.634575902315767,0.6052217678515257,0.21049896049896055,0.10914760914760915,0.16372141372141374,0.5714285714285714,0.3932151173029205,-0.435950109277675,-0.039422725293837176,-0.012455717407933576,-0.039631828116152276,0.6067848826970795,0.6727308393793241,0.03130365464850641,0.019220881125123546,0.028030451640805174,-5.391616168761905,0.555410832519266,0.8201047566866496,1.2176919493108922,0.8426767378732446,0.7846177768673195,1.2383991108775212,0.559947801278106,0.8727627788272317,0.7108508148002973,0.916806149361805,0.7113106694806306,0.9115782324632514,0.637066924414074,1.3899351046947572,1.5442842243077488,1.6772306589324124,1.3971360851905654,0.8765499583557567,0.6370588731148579,0.6461201028833398,1.1449422233706668,1.4366414341231557,1.116996331948525,0.7719374390729394,0.7493920124944219,0.7288242121784569,0.7239686392144602,1.4723435225618633,0.9966044977002174,1.285486081238587,0.7561612262053646,1.0694143486521528,0.7258667840233419,0.7613390568248046,0.6523627761997215,1.1300659546714673,0.7138252082403687,0.9860874845578937,0.9184700520696465,1.0826055312954879,1.0549657173408153,0.926208871435547,0.718267067745337,0.8619277934764726,0.8998974325386035,1.031897289061947,0.8217089326794125,0.9463958435664792,0.6395763466236076,0.8713719359857965,0.8415488336890421,0.8370661324449648,0.956235017582157,1.184713656389316,0.645637407656515,0.9464249566312142,0.7864181070483682,0.9826380073206482,0.7375336286556936,1.027139484162483,0.9472891566265058,1.194037128462087,1.280076703709803,0.6923916694659054,1.0404258949665974,0.8741940019135475,0.9442642447989441,0.8247050467694542,1.1265420921829645,1.1481618432934682,1.1547789639446422,0.8586658967915463,1.8827896331087055,1.0626254149835155,0.9876492379380772,0.5724964843460885,0.8435550522881988,0.9042691667064211,1.8728597779829834,1.4186531279281829,1.325180821846189,0.9926972285071306,1.448204409222776,1.1850691028162785,2.141268197791164,0.7702241255956241,0.5399046526390041,0.5074713427947599,0.721360292392958,0.591073033254608,2.127113209138808,1.4580675041509317,1.1855563221198495,0.6910499073381687,1.341924649427153,1.0750634899353615,5.0,0.0,4.222222222222224,1.9513888888888893,1.0455555555555556,0.6633333333333333,0.4196371882086168,0.18055555555555558,0.06550768455530359,0.0,3619.525134324112,4102.79176491139,1789.723996809058,1618.9923766115135,9.775716913036216,0.3981447099557775,5.8835669380856235,0.6615289697404222,1.0,0.5714285714285714,1.5638590966574741,3.2545546929403617,4.229003731107053,4.650571945454581,4.707714802597438,4.707714802597438,0.25,0.0,0.15079365079365084,0.0650462962962963,0.04356481481481482,0.03158730158730159,0.02622732426303855,0.020061728395061727,0.016376921138825898,0.0,0.6036580372889897,13.005,4.528616024973985,1.9834710743801653,117.60921759448964,1.0,3.889522537459605,65.4182351820194,,53.569988386858654,55.388715005792896,55.93145574145163,53.51989142431808,66.549247855185,55.32358032679672,55.39323030585859,61.62918261977508,0.012855475957885608,0.005977006414032243,-0.2208827177700476,0.5005015932963532,0.24362188642733076,-0.017572054117898184,0.013513094679152026,0.006426385484717071,0.006899760652616636,0.04450000970857616,-0.03002247490016845,0.0335216630201166,0.027835221482946718,-0.23732077621871758,-0.2395120272982638,-0.10749201590301764,-0.1550092977881857,0.24783202808853283,0.03150150700611827,0.23871326067477197,-0.1768934339759631,-0.2396448685949782,-0.16880415903072152,0.15857221625948628,0.046993529674252583,-0.002351951579402448,0.03567896746346244,-0.1967491508976225,-0.06946911023691821,-0.21758417583828923,0.043013702054970786,-0.13142583982179765,0.019207061857196277,-0.03562572662086405,0.06000761782557259,-0.15891708348920736,-0.0009993678417373408,-0.004318307367620776,0.06805136641028316,-0.10915008895358239,-0.062182835140172435,0.05372650086602475,-0.0006643530458911063,0.03332328177575913,-0.013919469215256297,-0.001405994272001459,-0.006747785743526017,0.00620798104479368,0.05030431002359952,0.023672288367958743,0.018407215262073902,-0.06800072029892405,-0.044254651894573525,-0.22109811324742323,0.04963981834027569,-0.04797940572170995,0.03705696862978833,0.0318366198849829,0.013452022014411065,-0.0655088215973288,0.058406703738029,-0.06798519100095213,-0.13690031373605002,-0.025025193147463896,-0.04895090835700818,0.03142914329917922,0.06139295055196912,0.13661920499878624,-0.039682416437719616,-0.04009796091275285,-0.09085178481599002,0.1022433006459862,-0.21847985160982908,0.026706372550659444,0.014354843719891472,0.04914514099622527,0.029857494539575705,-0.09265008645084946,-0.22032773374434816,-0.2663633849969227,-0.021065486749403027,-0.042181397312950564,0.008534856426164337,-0.1735297745901434,-0.1742516942771084,0.23167751007979256,0.2514996684801679,0.13434770742358076,0.09003006108553319,0.1284902288800578,-0.17616505669268004,-0.21488370219156644,0.17786892154329423,0.0784490539549856,0.2191406732531115,-0.02483324720653464,9.504347768398201,8.558037999869786,1.6509636244473134,19.624009577266946,34.70413187309988,38.43866299460918,39.492346611814355,41.51823232610007,41.51823232610007,36.4453367634796,29.038449915958356,2.015980374994969,1.8724177446293346,3.5184887278969432,7.406886847521247,2971.5522128711423,2604.9128894801856,922.5730641029209,44.0,31.0,44.0,57.0,72.0,76.0,74.0,70.0,58.0,285.06871952400047,20.0,4.634728988229636,5.556828061699537,6.520621127558696,7.48605261786314,8.46653127661401,9.447702360527948,10.435497201969248,11.423689797898676,12.41527547496035,0.7142857142857144,0.9672000000000001,1.123809543262613,0.6807949855489609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7010689649272884,0.9624649859943978,1.0020393299344506,0.636000308220174,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,5.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,10.05365155780638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.268246848926644,37.082585280384805,24.48453488598367,16.65214859199557,187.08479950233868,-207.4173529915573,-18.756635573986678,-5.926210085473067,-18.856122999232483,288.69751727520895,320.0734373275991,14.893725332270627,9.144955352217117,13.336393221983297,0.4444444444444444,0.9594809440162638,0.3463816965306397,29.408038348180266,0.11023564238770717,196.09706626471285,0.040519055983736244,5.0,0.15,0.3048884398640414,0.634504799635485,0.8244824310018039,0.9066709577325079,0.9178114732692957,0.9178114732692957,3.261000000000001,,1.6869747899159662,0.7045975858604627,0.6617055965268279,1.7141352921365935,-1.1325861742640893,0.8059810901259629,0.8083261386547643,-0.5517418468262356,74.55270000000004,4.736862953800049,0.0,5.316788604006331,5.41499046939678,18.2566337152488,26.806192317615604,33.807819324564484,0.0,0.0,3.713572066704308,1.9459101490553132,5.10594547390058,4.2626798770413155,6.75343791859778,6.490723534502507,8.529319371214077,8.63141433550626,10.375395617193007,25.000000000000004,6.0649321302595105,0.0,0.0,0.0,0.0,0.0,2.5967442470815496,0.0,33.852000000000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.33333401419145,5.316788604006331,0.0,0.0,26.806192317615604,10.15185342319683,5.41499046939678,18.405094737549014,18.19910120538483,10.045266627482652,0.0,0.0,23.827824494213633,24.537413772455096,23.399158957942962,130.8364703640389,,106.95253513039331,110.69914139093463,111.78938863884471,106.8493233717321,133.4760244351247,110.55760719913502,110.69664659631108,123.44227918849218,23.399158957942962,130.83647036403892,,105.47701509670517,110.11417565948587,111.26336959122303,105.34958528253915,134.23108188463414,109.87194248863511,110.00118243540632,123.81010708637639,5.093810190140973,94.04161383948602,,77.85458369533765,79.90458931372154,80.59144385890025,77.79976147666534,93.85872466508869,79.81287902788009,79.8728563123348,87.14112002600825,1.2999532754412757,7.26869279800216,,5.941807507244073,6.149952299496368,6.210521591046929,5.936073520651783,7.415334690840262,6.142089288840834,6.14981369979506,6.8579043993606765,2.7115927940472426,65.4182351820194,,53.569988386858654,55.388715005792896,55.93145574145163,53.51989142431808,66.549247855185,55.32358032679672,55.39323030585859,61.62918261977508,33.68627450980392,0.0,1.7790432448699645,12.162637287939866,0.0,0.0,0.0,35.07137654770577,5.222384180524061,3.483292845944962,5.427427073710143,0.0,0.0,0.0,0.4857612118921639,0.0,0.0,22.260010787706086,456.50406644796647,54.735068383011594,113.90941425291265,148.01513058874684,162.77001809091033,164.77001809091033,164.77001809091033,564.0,114.38692690732124,19.278250329581184,73.80839834371515,21.259999999999998,21.259999999999998,0.8,7.374805331962635,5.321928094887363,3.343319973837986,4.171856627917957,,4.184474460269718,4.178663974588429,4.175683580132273,4.184571165204782,4.1259283927787616,4.178980657057574,4.17876842888504,4.1518319206284415,0.18573999854655476,0.23176981266210872,,0.23247080334831768,0.23214799858824606,0.23198242111845963,0.23247617584471014,0.22921824404326452,0.2321655920587541,0.23215380160472446,0.2306573289238023,1.794750982338849,2.016147836138053,,2.0191677839616236,2.0177782370441655,2.017064741570564,2.0191908941080836,2.005077724281518,2.017854019751675,2.0178032337875607,2.011336328402097,202.96999999999966,156.85216590083962,93.65380640046385,,92.43940578020971,93.2017014645206,93.39210684425909,92.41903808724778,96.0881366871274,93.14798941962633,93.15683116193802,94.92362080284536,8.714009216713313,5.2029892444702135,,5.135522543344984,5.177872303584477,5.188450380236616,5.1343910048470995,5.3382298159515225,5.174888301090352,5.175379508996556,5.273534489046964,5.643090408183279,5.127391737925804,,5.114340022120284,5.122552642484113,5.1245934974037075,5.11411966223173,5.153052525673563,5.121976177386404,5.12207109433263,5.14085924157912,5.427427073710143,0.0,4.76480561154503,1.8009926933736455,0.0,6.0649321302595105,2.3265104560342658,2.895873724489796,1.7790432448699645,245.0306220043161,89.01163934108568,-98.68550874618953,-8.924075528343549,-2.819585964176844,-8.97140988601723,137.357173617125,152.2852815506783,7.08617114403617,4.351008044305094,6.345220064611596,567.0,30.0,1.640980495914413,1.3892135592805956,0.16055713129702165,0.15088834764831843,0.6075216681632671,0.4470117842050396,0.10825317547305482,0.08333333333333333,0.1767766952966369,0.1767766952966369,0.4770620726159658,0.46338834764831843,0.8911740041334268,0.7566464995172225,1.5375309043707228,1.0902165979433254,2.312725475390769,1.4298148099214487,12.803118619434356,11.943619842020844,8.634575902315765,7.043724449951861,8.03489653375688,6.342291176270802,7.044674661255697,5.177341822567354,5.687624173899359,3.67744298118093,4.694976293065435,2.713611014045867,3.207041903656465,1.7158051464785622,2.0078428325628006,0.9507527607910428,4.196384979818484,3.142331839315214,6.464222588239417,4.20885727521529,9.951183621847804,5.692858116545071,63.24011316484906,36.53752431919196,28.90636859863261,26.388341168071506,23.348466237324963,23.348466237324963,102.0,129.0,40.977480999999976,20.380518999999996,0.37142857142857144,94.04,5.958333333333334,3.9652777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,6.0,6.0,35.0,0.0,1.0,37.0,6.0,0.0,3.0,34.0,6.0,20.0,31.0,0.0,0.0,0.0,14.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,2.0,1.0,1.0,18.0,4.0,0.0,1.0,1.0,0.0,3.0,3.0,0.0,0.0,2.0,0.0,1.0,3.1780538303479458,5.319344733740112,3.7495040759303713,4.2520603082138555,4.703883658924124,5.1772084939220715,5.3315103339038,5.49806434005585,5.578313729455029,5.48945412172716 +5281004,CCCC1O[C@@H]2C[C@H]3[C@@H]4CCC5=CC(=O)C=C[C@]5(C)[C@H]4[C@@H](O)C[C@]3(C)[C@]2(C(=O)CO)O1,1,20.276923076923076,6.066307692307694,3.353846153846154,6.184615384615385,162.61179670599176,79.64549549230772,1.3645932733056307,6.124986153846154,4.491346153846154,7.646938030769229,199.12483871032327,22.666666666666668,6.234057971014493,4.36231884057971,5.666666666666667,143.77513510079856,84.81339099999998,1.778521360753623,6.382601449275361,2.6905193236714973,7.689442956521741,256.4114688253043,19.514705882352942,6.135220588235295,4.080882352941177,4.6911764705882355,150.4073099381815,72.12117588970588,1.5464867945851763,6.252680882352941,2.53890931372549,7.651141323529411,218.9097243181246,16.845410628019323,6.078937198067632,3.420289855072464,3.5942028985507246,154.02464620125423,60.6532455169082,1.3939872288614443,6.177778743961353,2.663177670424047,7.632995285024154,191.90972604329983,14.578947368421053,6.013872180451128,2.9022556390977443,2.6390977443609023,156.72004861140718,50.91289629699248,1.2567842618686238,6.0997733082706755,2.556364870509607,7.598246481203008,167.8963215651968,11.933993399339935,5.9891419141914195,2.442244224422442,2.0297029702970297,162.20265693471674,39.86454767986798,1.0824917459499208,6.047725082508251,2.6299275760909424,7.624813927392739,140.0829953387568,10.55072463768116,5.866050724637682,2.2282608695652173,1.818840579710145,165.17121999218102,34.83755453260869,1.0081387477395218,5.91558768115942,2.561493558776167,7.532663782608695,127.21937524230344,11.027149321266968,5.84081447963801,2.2036199095022626,1.9547511312217194,164.09403175714198,36.98917138461538,1.0256344301084932,5.896672850678733,2.688097033685269,7.497133067873302,129.95846616232353,10.313513513513513,5.8852972972972974,2.0432432432432432,1.7567567567567568,165.88034399617644,33.75186254054054,0.9778386838196648,5.931332432432432,2.6156906906906907,7.558409427027027,123.68740921366941,7.537514792899409,0.13520946745562132,0.015744557687543508,0.7938461538461538,3.7221301775147935,1.2972312353098794,35.771991899171596,0.23010734968588067,0.1270083786982248,1.8193786982248519,0.08849902390532544,50.54410501232994,0.3345030443358198,-0.004707795214818544,-0.0066157141594099965,0.4063768115942029,1.147212074436155,0.08319809687826094,1.6560845293679696,0.016013620906384606,-0.003231477917845753,-0.13361132550095758,-0.004224164596518315,3.7787011016628043,0.734657152801949,0.005792794987817662,-0.001397492188469518,0.09970588235294113,0.4152001392272887,0.10031481860882653,3.516184158973193,0.01942478085647968,0.006534596414897349,0.017567474474997104,0.0025657245109641427,5.1163480908862535,-0.0035868850584571082,0.002530406197295868,0.0005559549523143126,-0.1028019323671498,-0.12168424663407935,-0.0037880749864607145,-0.03241263934254129,-0.0010292627287265712,0.0020695179944544774,0.07068333984443236,0.0019635137386730664,-0.3358403612153989,-0.6048369444320862,-0.00031646572051428044,0.000602407854932929,-0.15578947368421056,-0.44381901499310406,-0.19558043374134867,-2.9647094600738546,-0.03477097953341338,-0.001057198825466011,0.02593329971872482,0.00025468020109445036,-6.881604788059921,-0.95909387388443,-0.01234071904231841,-0.0003525533396568161,-0.06178217821782179,-0.4848110609877556,-0.10698348219000506,-4.554704361014704,-0.020764447541036842,-0.012565814595660729,-0.14097858257226115,-0.006861665794129709,-5.745275588233707,-0.181438984649687,-0.00652496355372611,-0.0007767217725949924,-0.01753623188405795,-0.14208558442672162,0.054916394241696455,-0.8084966346231007,0.008757679821702904,-0.006251650716062096,-0.10272906364043485,-0.0038372205608438355,0.8064617938369698,0.18702401670727473,0.004927671423598998,0.001689627222018246,-0.007420814479637987,0.06457361642882002,-0.04036164976597368,0.8497246880194936,-0.006143227569074095,0.004880845109641469,0.0870122210619948,0.0027058264949530123,-0.33644350059907346,-0.34965616504078045,-0.016940860387014235,-0.0009298629065749645,0.028108108108108133,-0.13219254757716303,0.015231325914938742,-1.5709411836622407,0.0030822205376334734,-0.01503652007036623,-0.2000844039305577,-0.011728516462497998,0.17501922797371303,,,0.4677419354838711,0.7903225806451613,0.16129032258064516,0.0,0.6290322580645161,-0.46774193548387094,1.5346304547963165,0.02279630876280703,0.03666727650474251,0.60013744653218,0.11504563157465654,0.3593907552229589,2.134767901328497,0.4744363867976154,2.0589967466003896,1.6976542137844561,0.0,0.3613425328159331,0.0,0.3613425328159331,6.619008289353859,1318.0,394.3100000000001,218.0,402.0,10569.766785889466,5176.957207000001,88.698562764866,398.12410000000006,291.9375,497.0509719999999,12943.114516171012,1564.0,430.15,301.0,391.0,9920.4843219551,5852.123978999999,122.71797389199999,440.39949999999993,185.64583333333331,530.5715640000001,17692.391348946,2654.0,834.3900000000001,555.0,638.0,20455.394151592685,9808.479921,210.322204063584,850.3646,345.29166666666663,1040.55522,29771.722507264945,3487.0,1258.34,708.0,744.0,31883.101763659623,12555.221821999998,288.555356374319,1278.8002000000001,551.2777777777777,1580.030024,39725.313290963066,3878.0,1599.69,772.0,702.0,41687.53293063431,13542.830414999999,334.30461365705395,1622.5396999999998,679.9930555555554,2021.133564,44660.42153634235,3616.0,1814.71,740.0,615.0,49147.405051219175,12078.957946999999,327.994999022826,1832.4606999999999,796.8680555555555,2310.31862,42445.14758764331,2912.0,1619.0300000000002,615.0,502.0,45587.25671784196,9615.165051,278.24629437610804,1632.7022,706.9722222222222,2079.015204,35112.54756687575,2437.0,1290.8200000000002,487.0,432.0,36264.78101832838,8174.606876,226.665209053977,1303.1647,594.0694444444445,1656.8664079999999,28720.8210218735,1908.0,1088.78,378.0,325.0,30687.86363929264,6244.09457,180.90015650663798,1097.2965,483.90277777777777,1398.305744,22882.170704528842,489.9384615384616,8.788615384615385,1.023396249690328,51.599999999999994,241.93846153846158,84.32003029514216,2325.1794734461537,14.956977729582244,8.255544615384611,118.25961538461537,5.752436553846153,3285.3668258014463,23.080710059171565,-0.32483786982247953,-0.45648427699928973,28.04,79.15763313609469,5.740668684600005,114.2698325263899,1.1049398425405377,-0.22297197633135696,-9.219181459566073,-0.29146735715976374,260.7303760147335,99.91337278106506,0.7878201183432021,-0.19005893763185444,13.559999999999993,56.467218934911266,13.642815330800408,478.20104562035425,2.641770196481237,0.8887051124260396,2.3891765285996063,0.3489385334911234,695.8233403605304,-0.7424852071006214,0.5237940828402446,0.1150826751290627,-21.28000000000001,-25.188639053254427,-0.7841315221973679,-6.709416343906046,-0.21305738484640024,0.42839022485207684,14.631451347797498,0.4064473439053248,-69.51895477158757,-160.88662721893493,-0.0841798816567986,0.16024048941215913,-41.44000000000001,-118.05585798816568,-52.02439537519875,-788.6127163796453,-9.24908055588796,-0.2812148875739589,6.898257725180802,0.0677449334911238,-1830.5068736239389,-290.6054437869823,-3.7392378698224777,-0.10682366191601528,-18.720000000000002,-146.89775147928995,-32.41599510357153,-1380.0754213874554,-6.291627604934163,-3.8074418224852007,-42.71651051939513,-2.079084735621302,-1740.8185032348133,-50.07715976331361,-1.8008899408284063,-0.2143752092362179,-4.8399999999999945,-39.215621301775165,15.156924810708222,-223.1450711559758,2.4171196307900016,-1.7254555976331385,-28.35322156476002,-1.0590728747928986,222.58345509900366,41.332307692307715,1.0890153846153785,0.37340761606603234,-1.639999999999995,14.270769230769224,-8.919924598280183,187.7891560523081,-1.357653292765375,1.0786667692307645,19.22970085470085,0.5979876553846157,-74.35401363239524,-64.68639053254438,-3.1340591715976336,-0.17202463771636842,5.200000000000005,-24.45562130177516,2.817795294263667,-290.6241189775145,0.5702107994621926,-2.7817562130177524,-37.01561472715318,-2.1697755455621297,32.37855717513691,0.7155301224821033,0.602365169157027,0.4202150854493166,0.3373421015265443,0.25318355731980474,0.18816083344970508,0.14970819307765873,0.10529606487709957,0.09116944257447601,0.06016972001140278,0.05571520464431114,0.03410927157565903,0.03378755605004357,0.020045887774173803,0.020716364858535317,0.011570502537693452,8.024799135607665,5.703492007934448,3.5466585534744497,2.2023886427718864,0.4088233705139226,-0.3901342569899854,4.12096965755733,0.977157386535019,6.023773603339894,0.9877755067480624,13.639563107241743,10.963972862904207,16.01319642969088,11.715100644893804,1.9807186223487803,0.751876180368395,3.492005889434052,2.2521377900247654,7.009362398287998,1.072417828484156,3.7050455326777447,2.448182399845384,20.887279093327535,14.70178892835574,0.21592258930334596,0.5286546156616958,0.7827994064151349,0.9026955123266276,0.9026955123266276,0.9026955123266276,1.5065669751651936,862.0735282455938,0.0,0.0,5.0,0.0,5.0,8.0,1.0,4.0,2.0,4.68584486694164,2.750088489840413,1.1769768225233523,0.4348409616383151,0.4348409616383151,0.4348409616383151,219.04938552950446,1593.8069885006116,64.76268546988963,24.520107515394024,48.965182752834785,,14.0,696.0,36.120882749725205,19.802129157825057,34.735198500610835,19.26246486877803,24.835569398847298,0.0,12.152040213667762,6.076020106833881,20.771211599071872,9.473725907600098,14.500000000000004,24.5,5.0,0.0,19.5,0.0,0.03225806451612892,-14.5,0.11565610859728492,0.015161649944258726,-0.1004944586530262,0.03323558162267837,0.16266920152091202,0.0,0.5615384615384609,0.848387096774193,0.44588235294117595,0.5463768115942021,0.8151515151515146,47.573544098685815,0.706685571647018,1.136685571647018,18.60426084249758,3.566414578814353,11.141113411911725,66.1778049411834,14.707527990726078,0.551330798479088,0.19540229885057467,0.10344827586206894,0.3103448275862068,0.76,0.3211856399844925,-0.8357611819236864,-0.06638507025675608,-0.012857864337287483,-0.03979815152017555,0.6788143600155074,1.7663513594839517,0.03934906021971682,0.0271746362997531,0.04014434907918072,-3.1718437804137105,0.8803235134301215,0.7524886508186578,1.3194032688156194,0.9257386810470735,0.557813424459079,1.2067968900617996,0.887734367190374,1.1866159462067374,0.7489459278333843,0.7338313118422496,0.7747945150086172,1.0794019190354827,0.8524479942074172,0.783634113239876,0.9768487857935308,1.4956680346557227,0.9005693082269152,1.0867339569191814,0.8572950894631424,1.0701093270286108,0.778015440011204,0.6309785534399683,0.8042166364055674,0.9894303904906488,0.9648850552219754,0.8784311178560956,0.8739914850051552,1.5608733101149685,1.056203425693995,1.1055612644462267,0.9687230890722953,1.0997969530528218,0.8811143983762784,0.7307448593567061,0.8817815910743705,1.0587159065068439,1.0501855971335736,0.928200134829248,0.8831461761557363,1.3289036544850499,1.095910321396777,1.2043219414339497,1.054951097067554,1.2005535105750111,0.9347983122216817,0.7282379186984184,0.9264306130843069,1.15998829209061,1.1368572641978132,1.1980696021497956,1.108710818757388,0.9967508378744853,1.1423683383218137,1.0501912253185928,1.1343293698792307,1.0529994141303698,1.1953495312409335,1.1249884725036452,1.1975923584589239,1.0770111737184251,1.0234944074153967,1.0993141527475239,1.1217650838276527,0.9189978654083811,1.0188241756013763,0.8814221805864118,1.0198544725885792,0.8883176435982673,1.0981464608106795,1.142768110573906,1.0936367772203845,0.9316809449902972,0.9575493828756773,0.9344874385002395,0.9169087051828955,0.8670946017047249,0.9426128330004263,0.9693399476230016,0.9581961110620354,0.9703348328301509,0.9368347950722666,0.9586240870850333,0.9316116334905972,0.9694715633512128,1.0595042697033528,1.2393429034538155,1.1363507851879142,0.7207207207207207,1.0531156872248058,0.8996559693627362,1.053466077982742,0.8985800697209583,1.225343095565514,1.2618748026829985,1.2518223844517746,0.9319489881586666,9.5,0.1362105907560453,6.888888888888891,5.298611111111111,4.021666666666667,2.0702777777777777,1.3617687074829934,0.729202097505669,0.4144620811287478,0.2596913580246914,6962.987219622457,8126.327148732677,2973.9866990934715,2623.621218776634,12.669889322696148,0.4403358071716316,7.090883381011503,0.786785741904108,1.0,0.76,1.3365229460868147,3.2722793231880414,4.845390990505102,5.587526851390139,5.587526851390139,5.587526851390139,0.2714285714285714,0.009080706050403023,0.12085769980506826,0.07569444444444443,0.05664319248826291,0.035089453860640295,0.028973802286872203,0.018230052437641725,0.013815402704291591,0.01129092860976919,0.641104254115965,22.775510204081634,7.765466297322253,2.9693220552960486,183.22810210482677,1.0,4.407758745651351,155.58972366982485,,143.20411741468064,142.33297800662749,145.08636403414093,143.22205442239198,176.92158111002945,142.99119391306394,143.24088040573423,159.37067233477612,0.04437842624878598,-0.03481853233660391,-0.4201905376258424,0.5119087742950231,0.30821385059727546,0.0641351322830172,0.0462955636922841,0.06959195752871337,-0.02544302943606444,-0.0734378860384156,-0.04773119984958529,0.07476047109234622,0.09746676099316191,0.042843116660591714,-0.08876033332934849,0.12559849521203825,0.11154906449416854,0.07732994386684158,0.0982943351011611,0.08441616872731979,0.051450120707577256,0.009655754732171758,0.028991557169137885,0.10122541668584596,-0.0004758710472894957,0.018714711661196374,0.035310928598150645,-0.1294985582144329,-0.03269209856473262,-0.0029201231695256155,-0.0009060898658900764,-0.00447296763937187,0.016294342276202942,0.03885026240737969,0.02218684062293835,-0.006644501097278755,-0.08024354990345928,-0.0023405588859238087,0.038261338736084734,-0.19624643002855985,-0.11923790781799976,-0.15076759518100016,-0.0828779529088094,-0.15110764424030443,-0.008323851042756344,0.014253931709779639,0.0028777741251350113,-0.1361504924536935,-0.12724271861966074,-0.09127111639847928,-0.02239207646561852,-0.07782638728989179,-0.13025096862986565,-0.08247063382223378,-0.12732599218552831,-0.09023808917612745,-0.09893689475020724,-0.07748721182116314,-0.07753380197130974,-0.11366855910955749,-0.024071459842521115,-0.04825818544006724,-0.04933271470747667,-0.02209021458263114,-0.03817319052542915,0.04233354296975293,-0.022601387054485604,0.038059105168339935,-0.04922234879413886,-0.056463815774399524,-0.04335890263545529,0.015955605379504457,0.024812424498782758,0.03644472178116053,0.10731500087519223,-0.009347925216598241,0.017348564759745933,-0.03111368942356078,0.023753910333384913,-0.026697224480053374,0.03842931592126283,0.047825238993339694,0.030574647894960446,-0.006656434029586635,-0.04638878657593724,-0.12529344805366233,-0.059059322276842144,0.035407500523779625,-0.0355152940044203,0.011741411631443117,-0.04391539582392169,0.013394707043651624,-0.11838998516856429,-0.10997402801614523,-0.13252707142900175,0.0034627030774611223,9.408625975105794,24.268000109218793,10.264202945455919,11.937598867921848,31.482392834183113,38.70401137195928,39.452084319731405,39.452084319731405,39.452084319731405,63.82889914461208,52.62728062731814,0.0,11.201618517293927,0.0,11.201618517293927,6392.622939498432,5677.589941686435,1804.1640945241124,533.0,57.0,89.0,135.0,186.0,240.0,311.0,386.0,469.0,430.23553880800085,35.0,5.220355825078324,6.1675164908883415,7.153833801578843,8.130059039992796,9.125544720271467,10.112734998658226,11.111895507027121,12.104311200994454,13.105316908411961,0.5948717948717949,0.9741538461538461,1.1279421603058806,0.5514701267427934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6377978995854444,0.9604223227752641,1.001187741610174,0.5923056506286306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,0.0,6.0,0.0,3.0,0.0,0.0,19.68678069728151,6.606881964512918,23.45756743304878,0.0,0.0,9.589074368143644,0.0,0.0,0.0,38.84115785890103,56.091960420620595,16.747886984954953,12.207932775496605,196.72781613680863,-511.9079176133256,-40.661188639475874,-7.875506424820394,-24.376567505396462,415.7772016663131,1081.8990708872861,24.10149683041376,16.64460109057363,24.588615247438323,0.5,0.7494440003479368,0.150939159882301,51.65658993902105,0.08096418044009307,246.6888182009092,0.25055599965206315,7.0,0.11428571428571428,0.22192648931130635,0.5433542793764564,0.8045657689692838,0.9277956818416828,0.9277956818416828,0.9277956818416828,2.7168000000000014,,1.5,1.714285714285714,1.0388051152698072,1.4955934745921624,-6.493765586034913,1.552325581395349,1.4909688013136289,-2.393966868348154,112.86660000000005,29.275855065425155,0.0,0.0,28.58369907727774,83.39515165244345,6.606881964512918,23.80116485057091,0.0,0.0,4.2626798770413155,0.0,5.700443573390687,3.044522437723423,7.3632795869630385,5.638354669333745,9.142810715182584,7.959625305098115,10.98751060056093,38.666666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.32,0.0,25.208902687328237,0.0,0.0,0.0,5.369722480985558,0.0,0.8092520458993404,73.31624041988223,0.0,0.0,0.0,52.485436962739705,19.06280027574374,28.58369907727774,59.296141336627926,23.80116485057091,0.0,0.0,0.0,35.84555823828157,41.456863473053886,39.925591092237305,311.1794473396497,,286.3114606358129,284.55535693491396,290.10570838342574,286.34761894319735,356.77583054923605,285.88223778861845,286.3855692758998,319.82249099719337,39.925591092237305,311.17944733964976,,284.9082348293611,282.95167029896936,289.1339229530122,284.948515370192,360.33692780609397,284.4300622447324,284.9907920101547,321.13531153790046,5.34357252921326,223.56371720297722,,208.54651869527794,207.49294892930402,210.83441661059368,208.5682470266051,252.19177596664434,208.28869810749342,208.59105376175975,228.7446192794974,1.2879222932979775,10.038046688375797,,9.235853568897191,9.17920506241658,9.358248657529863,9.237019965909592,11.508897759652776,9.222007670600595,9.238244170190317,10.31685454829656,2.726928567399276,155.58972366982485,,143.20411741468064,142.33297800662749,145.08636403414093,143.22205442239198,176.92158111002945,142.99119391306394,143.24088040573423,159.37067233477612,62.427450980392166,0.0,6.256503836204414,0.0,0.0,0.0,21.409031293408894,65.07720320466132,3.824107596241972,0.0,12.663810702885378,0.0,-1.1343980638819668,0.0,-2.156932579071829,0.0,0.0,38.49986729086099,459.0382107755558,86.87399149564295,212.69815600722268,314.95041438283164,363.18924534035904,363.18924534035904,363.18924534035904,2472.0,148.23156849290154,153.4668070275659,85.09922676529384,93.06,93.06,1.0,8.20903626577507,6.129283016944966,4.555666277558493,5.458883608571635,,5.472605153646195,5.473246838994017,5.471157378144858,5.472591742830217,5.441395340169885,5.472763748026693,5.472577658965193,5.458430146323339,0.14695697669543525,0.17609301963134308,,0.1765356501176192,0.1765563496449683,0.1764889476820922,0.17653521751065218,0.17552888194096403,0.1765407660653772,0.1765347631924256,0.1760783918168819,2.6477739053937444,2.8286464130470548,,2.831156876640737,2.8312741238589503,2.83089229204187,2.831154426101728,2.825437635824144,2.831185855907116,2.8311518525709753,2.8285633409180058,326.8300000000013,352.5940984307892,215.34899941603712,,213.15011169531323,213.03311171662438,213.40513697191355,213.15252844152263,217.62533311748535,213.1214461399026,213.15506527915846,215.36094058496442,11.374003175186749,6.946741916646358,,6.875810054687523,6.872035861826593,6.8840366765133405,6.8758880142426655,7.0201720360479145,6.874885359351697,6.8759698477147895,6.9471271156440135,6.9967196440226544,6.5036620766652975,,6.493398778724295,6.492849719187453,6.4945945221023615,6.493410116895734,6.514177040273218,6.493264284386463,6.493422018338135,6.50371752543869,12.663810702885378,25.208902687328237,21.409031293408894,-1.0469771787655986,0.027438757376094358,0.0,8.313972413546814,5.673821324220179,0.0,421.36932072344155,120.49677452524523,-313.546168191309,-24.90518207151826,-4.8237872029432145,-14.93076991387186,254.66562230875724,662.668609674998,14.76228774519446,10.194901687307661,15.06065021988632,2307.0,70.0,3.296834935132906,2.2562417121667506,0.27883876791260265,0.21485818849873858,1.5991965571411524,1.0007822116407974,0.42810303400778266,0.2446996672288794,0.0,0.0,0.0,0.0,0.1422588984322123,0.08670334287665674,0.6059190637370165,0.38425635341195996,1.60370379293172,0.9261569739577455,22.181433796945203,18.673320243867835,14.707527990726081,11.806973553429051,14.43146276722887,10.72516750663319,13.324029183911627,9.371349774061862,12.307874747554262,8.122912201539375,10.363028063841872,6.344324513072579,8.109013452010457,4.8110130658017125,6.442789471004484,3.5984262892226635,9.070656521158254,5.954025330931918,17.770043947665126,10.759646413512709,32.0154230953381,17.681351145958445,111.38679176186908,48.58683381885658,28.399221634301732,23.370940232616014,23.370940232616014,23.370940232616014,184.0,238.0,69.23296199999997,39.317038000000025,0.3076923076923077,295.06,11.1875,6.604166666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,0.0,0.0,0.0,65.0,0.0,0.0,69.0,0.0,4.0,4.0,65.0,4.0,35.0,65.0,0.0,0.0,0.0,25.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,6.0,2.0,1.0,31.0,6.0,0.0,0.0,6.0,0.0,5.0,4.0,0.0,0.0,0.0,0.0,0.0,3.6888794541139363,6.8308742346461795,4.204692619390966,4.718498871295094,5.153291594497779,5.537334267018537,5.805134968916488,6.066108090103747,6.331501849893691,6.626717749249025 +4888,CC(C(=O)O)c1ccc2c(c1)Cc1cccnc1O2,0,24.8125,6.338903125,3.59375,8.9375,158.54496055883553,98.16470934375,1.5860337425949063,6.412496875,5.248263888888889,7.834517375000001,239.04152212364977,26.352941176470587,6.405882352941177,4.235294117647059,8.5,143.0958869623809,100.89723449999998,1.9047694031176468,6.559338235294117,3.500000000000001,7.813749294117646,284.25133305526555,23.56140350877193,6.323842105263158,3.9473684210526314,7.2631578947368425,148.17719205122097,89.32364705263157,1.7100509252525615,6.450450877192981,3.683235867446394,7.76885796491228,249.6645374045782,19.986486486486488,6.258364864864865,3.391891891891892,5.1891891891891895,151.72923481465128,73.61295479729729,1.5098351296364054,6.368533783783783,3.3059309309309315,7.758452162162162,216.3177389616282,15.949367088607595,6.26040506329114,2.848101265822785,3.8607594936708862,158.25669467444104,55.924448101265824,1.3097653479195064,6.335772151898734,3.2988748241912798,7.822738430379746,181.2192291427878,14.81159420289855,5.973971014492753,2.739130434782609,3.739130434782609,158.36403701328965,52.48874075362318,1.2736542968512319,6.059485507246377,2.9460547504025762,7.5571437681159415,171.55512678624547,15.035714285714286,6.028803571428573,2.642857142857143,3.6607142857142856,159.22380382354893,53.33703535714285,1.2319868311819282,6.108866071428571,2.9404761904761907,7.609588857142858,167.517140369673,14.91304347826087,6.2875000000000005,2.4565217391304346,4.130434782608695,162.55125685934436,52.2439344347826,1.1400901352280435,6.331015217391306,3.73792270531401,7.88713252173913,155.63749105313275,15.3125,6.076062500000001,2.40625,3.9375,160.6886773013373,54.52444378124999,1.1677565924982187,6.149234375000001,3.359375,7.6476451249999995,159.88650379828897,7.27734375,0.14035927734374992,0.02632324647150358,0.6396484375,4.15234375,1.4559395866137712,34.527693202148434,0.23286071473603806,0.12964130859374995,1.8103298611111107,0.09186330859374998,49.204153756981825,0.16567095588235295,-0.008037769990808784,-0.016690062189250295,0.21329273897058823,1.1895680147058822,-0.04168204981461827,0.8495898024471504,0.006347411625889323,-0.006150683593749983,-0.16970486111111108,-0.006468701976102941,1.9666359548886647,0.7643229166666666,0.031143299410635976,0.004116443167720485,-0.0639905427631579,0.4200246710526316,0.03907608324702084,3.4847463208778793,0.000859581907401613,0.027673055441337725,0.3876172636452241,0.020644875616776307,1.0048505303674746,-0.5619721283783784,-0.011042554370777013,0.0002682805895685451,-0.08770586993243243,-0.7266680743243243,-0.2581375551610547,-2.7091647692937073,-0.036319969436657586,-0.009461072107263505,-0.10068271396396396,-0.008220306904560808,-6.134926976737995,-1.9767108386075949,-0.041488391267800594,-0.0009399576373795948,-0.006737045094936709,-1.1286095727848102,0.012442277808563986,-9.217099693050336,-0.004913007647403993,-0.040147479479825915,-0.316065620604782,-0.02386107599881328,-5.791629278933374,0.12120697463768115,-0.005665255604619607,-0.0002603150684744093,-0.011025249094202898,0.05961277173913043,-0.05757950992477586,0.6061690501160546,-0.0008709047538347346,-0.004113953521286252,-0.08767990136876005,-0.004941147361865941,0.7510888184075771,0.19252232142857142,-0.0036870117187500313,-0.003634405391314668,-0.05036272321428571,-0.030691964285714284,-0.10880702816276051,0.8823868849051345,-0.01869792131407157,-0.0014395228794643069,-0.11117311507936505,-0.004520759486607141,-1.1035636804180762,-0.23250679347826086,0.01758060037364132,0.0070160984555567175,-0.04453974184782609,-0.07218070652173914,0.10361872572440856,-1.128423445354959,0.023994391293686093,0.012400267493206534,0.014473882850241532,0.016707419667119562,0.4677263162331925,0.525390625,0.004337109374999969,-0.00812681703390581,-0.171875,0.177734375,-0.4222792075178745,2.355766596679688,-0.05037551216352831,0.007372949218749974,0.0856119791666667,-0.0014452773437500011,-4.491997599350977,,,0.46842105263157896,1.3421052631578947,0.7105263157894737,0.0,0.631578947368421,0.07894736842105263,0.6824106620959359,0.01401823772801336,0.027597185096434412,0.874675390530831,0.2673575239642916,0.2141091626431212,1.557086052626767,0.4814666866074127,2.055911128686391,1.6596276546706425,0.10795763109780938,0.28832584291793945,0.0,0.39628347401574887,7.971548227375,794.0,202.8449,115.0,286.0,5073.438737882737,3141.270699,50.753079763037,205.1999,167.94444444444446,250.70455600000003,7649.328707956793,896.0,217.8,144.0,289.0,4865.26015672095,3430.5059729999994,64.76215970599999,223.01749999999998,119.00000000000003,265.66747599999997,9664.545323879029,1343.0,360.459,225.0,414.0,8446.099946919596,5091.4478819999995,97.472902739396,367.67569999999995,209.94444444444446,442.824904,14230.878632060958,1479.0,463.119,251.0,384.0,11227.963376284195,5447.358655,111.727799593094,471.27149999999995,244.6388888888889,574.12546,16007.512683160488,1260.0,494.57200000000006,225.0,305.0,12502.278879280842,4418.0314,103.471462485641,500.526,260.6111111111111,617.9963359999999,14316.319102280237,1022.0,412.204,189.0,258.0,10927.118553916986,3621.7231119999997,87.882146482735,418.10450000000003,203.27777777777777,521.44292,11837.303748250937,842.0,337.61300000000006,148.0,205.0,8916.53301411874,2986.87398,68.99126254618798,342.0965,164.66666666666669,426.136976,9380.959860701689,686.0,289.225,113.0,190.0,7477.35781552984,2403.2209839999996,52.44414622049,291.22670000000005,171.94444444444446,362.808096,7159.324588444107,490.0,194.43400000000003,77.0,126.0,5142.037673642793,1744.7822009999998,37.368210959943,196.77550000000002,107.5,244.72464399999998,5116.368121545247,232.875,4.4914968749999975,0.8423438870881146,20.46875,132.875,46.59006677164068,1104.88618246875,7.451542871553218,4.148521874999998,57.93055555555554,2.9396258749999995,1574.5329202234184,5.6328125,-0.2732841796874987,-0.56746211443451,7.251953125,40.4453125,-1.4171896936970212,28.886053283203115,0.21581199528023698,-0.20912324218749942,-5.769965277777777,-0.2199358671875,66.8656224662146,43.56640625,1.7751680664062506,0.23463726056006765,-3.6474609375,23.94140625,2.227336745080188,198.6305402900391,0.04899616872189194,1.5773641601562503,22.09418402777777,1.1767579101562495,57.276480230946056,-41.5859375,-0.817149023437499,0.01985276362807234,-6.490234375,-53.7734375,-19.102179081918045,-200.47819292773434,-2.6876777383126615,-0.7001193359374993,-7.450520833333333,-0.6083027109374999,-453.9845962786116,-156.16015625,-3.277582910156247,-0.07425665335298799,-0.5322265625,-89.16015625,0.982939946876555,-728.1508757509766,-0.38812760414491543,-3.1716508789062474,-24.96918402777778,-1.8850250039062493,-457.5387130357365,8.36328125,-0.3909026367187529,-0.017961739724734242,-0.7607421875,4.11328125,-3.9729861848095345,41.825664458007765,-0.06009242801459669,-0.2838627929687514,-6.049913194444444,-0.3409391679687499,51.82512847012282,10.78125,-0.20647265625000175,-0.2035267019136214,-2.8203125,-1.71875,-6.093193577114588,49.41366555468753,-1.0470835935880078,-0.08061328125000118,-6.225694444444443,-0.2531625312499999,-61.79956610341227,-10.6953125,0.8087076171875008,0.322740528955609,-2.048828125,-3.3203125,4.766461383322794,-51.90747848632812,1.1037419995095603,0.5704123046875006,0.6657986111111105,0.7685413046874998,21.515410546726855,16.8125,0.138787499999999,-0.2600581450849859,-5.5,5.6875,-13.512934640571984,75.38453109375001,-1.612016389232906,0.23593437499999917,2.7395833333333344,-0.046248875000000036,-143.74392317923127,0.705548048158227,0.5504990756548196,0.4356127164543258,0.2915699006420371,0.2824148689978135,0.1557867574320304,0.18132612532198356,0.08481175175252936,0.11111118714674623,0.043311662474893736,0.07085744103758337,0.022964746969239527,0.045838864190889415,0.012426930537459309,0.03004698436305296,0.00667562221133923,8.02878972716486,5.685417464055362,3.554861664620158,2.1845493925584343,0.43700814874797883,-0.47650527230939893,3.1935119572594988,0.9728685076672742,6.022145068655567,0.9939491138454286,14.54787295907914,10.945956408143,16.01412929879003,11.696917786683535,1.9954727111072292,0.7415777508599543,3.5009064465983606,2.234334733056912,7.008292039608323,1.262417817245227,3.713827381397236,2.430331190306179,20.902036144150415,14.701170102051133,0.2831052618926846,0.65687604337341,0.8144780483642368,0.8821957792445763,0.8938615549470103,0.8938615549470103,1.6128636895975033,651.588988374735,0.0,3.0,1.0,0.0,6.0,1.0,3.0,1.0,0.0,3.48324883662892,1.4807524370391922,0.6363914992687585,0.273590234442608,0.211090234442608,0.211090234442608,106.6872854343988,780.231659229164,60.746898984672065,24.382239350911377,49.004936690540156,,10.0,315.0,11.887211334113243,4.794537184071822,0.0,5.879988336435371,28.8606879313009,0.0,19.18694783976531,24.26546827384644,4.9839785209472085,9.843390348640755,8.9,25.5,13.5,0.0,12.0,0.0,0.03157894736842103,1.5,0.17847877358490538,0.07663690476190466,-0.10184186882300073,0.027105263157894743,0.15774999999999972,0.0,0.6218750000000001,0.8421052631578945,0.4433962264150947,0.5452380952380954,0.8149999999999997,12.965802579822784,0.26634651683225385,0.5243465168322539,16.618832420085788,5.0797929553215395,4.068074090219302,29.584634999908573,9.147867045540842,0.5562500000000002,0.13108614232209737,0.0,0.3932584269662921,0.2,0.3842456382360192,-0.6505597802483429,-0.07709575297734139,-0.020329993132760717,-0.05421331502069525,0.6157543617639809,1.0425232778571676,0.054723488509226995,0.03257885243303649,0.05212616389285839,-3.4600126179734305,0.7184490543399326,0.7531021342084183,1.5302724619360697,0.7572519083969466,0.4666039510818438,1.069250612255515,0.7216914600018701,0.9641211367094361,0.7314518783023313,0.728799695375633,0.7927314299917202,0.860611317824901,0.7111337118964884,0.5189525338833787,0.6532838370172624,1.2886567563948037,0.7592546747866845,0.9993341882979617,0.7196134841060932,0.9792820915794491,0.5244740586701516,0.40368963646228984,0.5198298570036957,0.9111784557651721,0.9633111372241808,0.9500227748292323,0.9033078884727332,1.176810398184444,1.0876916427245684,1.1599261209365936,0.9662850173225084,1.1306187815704438,0.9403889968217473,0.8455714165376117,0.9729689597761243,1.0672698597269978,1.261256853992132,1.3974443850876768,1.063630624838789,0.9106193835153155,1.2861140550388797,0.9555109054708315,1.2537163207723803,0.9782258052683692,1.3998386816762443,1.1730756974771557,1.3819173675061323,1.0639233747876422,0.9675216068830856,0.8690781053260555,0.7913259186930706,0.9767452151786702,0.9179925559327581,0.9796550936994924,0.9697949774049466,0.9910913741930922,0.8806931113702177,0.9538080396387759,0.855061486205355,1.004839685745544,0.9734299516908212,0.9230531143520899,1.0197328879168093,1.0276990185387131,0.9811181292836986,1.0192325544303995,0.9760057125630032,1.0557794826873645,0.9230056015002761,0.9354043223618866,0.9228584961634663,1.0302481556100018,1.1242736119862773,1.1766966547930835,0.9306941431846519,0.9877198805177564,1.1284715121272855,0.8301018933188314,1.1183305727079622,0.8622911458003307,1.1915454040875808,1.2915993453764607,1.1631880669612198,0.9640894966706218,0.942230273752013,0.9012088119286514,1.4164551788147646,1.2068702290076336,0.9514346190028222,1.2588542962501441,0.9470234123229201,1.1674196027042374,0.8881582069517229,0.9329821985135459,0.9098076128480124,1.083818143098452,4.0,0.024691358024691357,2.4444444444444455,1.0625,1.3200000000000003,0.48611111111111116,0.40244897959183673,0.22743055555555558,0.14386495338876287,0.06000000000000001,3484.9590705956107,3825.2017254952034,1811.9865375552654,1676.5484784303385,11.178520641643209,0.46334135002778454,5.999049796230788,0.8633818723536333,1.0,0.2,1.51675116337108,3.5192475629608078,4.3636085007312415,4.726409765557392,4.788909765557392,4.788909765557392,0.19047619047619052,0.012345679012345678,0.08148148148148153,0.034274193548387094,0.05500000000000001,0.024305555555555556,0.025153061224489796,0.018952546296296294,0.015984994820973653,0.010000000000000002,0.46797370241572006,13.959183673469388,5.78,2.88,110.23138369231135,1.0,3.8900163599774884,75.77661031049928,,57.953934499516365,57.28705962115786,58.65589132927857,57.96546847507845,69.81158778545718,57.75740705790685,57.98548017482427,65.4455294692639,0.022765305800258914,-0.057265683771823006,-0.6340426971011437,0.33345307588684325,0.28648110231863205,-0.02862896935961643,0.024606040069722526,0.027258404806858486,-0.04744385613249286,-0.09374250779189643,-0.07041660130825123,0.03996890109322546,0.10502773304705672,0.22188272838113726,0.156380527461792,-0.10004017677782243,0.10115363667871466,0.0268390828893554,0.10092612618155,0.0036913994203616614,0.21345862473554092,0.2141141633753528,0.22473472742065925,0.020422067115114063,-0.0772221496859178,-0.07867349119882547,0.010191774402104017,-0.13711574169589436,-0.17500190689278178,-0.17729963353866338,-0.07846353225604813,-0.15597293634449463,-0.07297883838022001,-0.055615673213371616,-0.08948411537095546,-0.12468311124784824,-0.2716253218913281,-0.295587096577824,-0.03570827171326123,-0.010532418591168229,-0.2718006120723532,0.008545875064433323,-0.2669480303560163,-0.02109848221059181,-0.3096812267271532,-0.17459007189484965,-0.25974544531522237,-0.1177061048044459,0.016655386745703906,-0.04036253044210958,-0.00988917034820212,-0.01723641995795995,0.014356415395312691,-0.0395480076606025,0.017556025146746167,-0.003740024395364236,-0.03173335386622738,-0.048433107828727694,-0.05378804048651604,0.015264744153861224,0.026455026455026454,-0.026268386304955642,-0.13806828102487737,-0.0787350054525627,-0.007391479639833355,-0.07473320264326642,0.02555591767278068,-0.08029658989609653,-0.011103890380922202,-0.06141041887865191,-0.04921180780238864,-0.022428262578573176,-0.03194940372004014,0.1252542810589226,0.266536214032416,-0.0696315964155327,-0.017383124054153546,0.07116966025039906,-0.032681692308501646,0.10304181759849536,0.09565058874918173,0.00799516329104687,0.18187260967276186,0.009505829904997085,0.07219538378958669,0.03090005489539589,-0.30873156328584145,-0.2687022900763359,0.04280338664158043,-0.2900389627429616,0.06822832278100478,-0.2163332368906969,0.05687191296297534,0.04729081754974829,-0.015732911930502056,-0.09129305671096082,6.643494673586935,16.43577282824146,7.478012285100988,13.997376519642408,32.76696712701034,38.55723611873709,39.610627293681844,39.67362729368183,39.67362729368183,39.06231144504143,31.532925438742208,2.051194990858378,5.478191015440849,0.0,7.529386006299228,3103.8097444245145,2827.988844860391,513.3029791204517,90.0,30.0,40.0,51.0,69.0,75.0,88.0,101.0,109.0,255.089543276,21.0,4.634728988229636,5.493061443340548,6.375024819828097,7.253470382684528,8.14060704285845,9.025816391627028,9.915663128466262,10.804035006794324,11.69543867006514,0.6979166666666665,0.9958750000000001,1.1130712242347007,0.6641646199317293,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6965626684131737,0.9829656862745098,1.0133148215586307,0.669507550122125,6.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,9.843390348640755,5.749511833283905,0.0,5.879988336435371,0.0,4.794537184071822,4.9839785209472085,0.0,0.0,18.19910120538483,30.183374320007832,18.18111668623608,5.917906046161393,177.07377699941242,-299.8006118724583,-35.52840894429659,-9.368769121014322,-24.983384322704865,283.7610624338112,480.4310473567058,25.218490040375478,15.013470229897056,24.02155236783529,0.5,0.6958177311685481,0.2839721882346875,93.95876881319992,0.1832075280158095,50.803696566242124,0.304182268831452,5.0,0.09523809523809523,0.303350232674216,0.7038495125921616,0.8727217001462483,0.9452819531114784,0.9577819531114784,0.9577819531114784,2.9662000000000006,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,69.60980000000004,14.637927532712578,0.0,4.9839785209472085,0.0,19.262464868778025,0.0,53.21903338901211,0.0,11.629500169719275,3.7612001156935624,0.0,5.093750200806762,0.0,6.637258031284457,0.0,8.274611946209552,0.0,9.95953701838715,22.33333333333333,11.066984788099507,4.187568394641807,0.0,0.0,0.0,0.0,4.2129538821701535,0.0,31.868000000000002,0.0,11.02494804366242,0.0,0.0,0.0,0.0,0.0,-0.8206068384143779,35.61827917551042,4.736862953800049,0.0,11.629500169719275,16.059811203739763,11.21535880699783,0.0,29.531997720943004,36.52867891392113,0.0,0.0,0.0,21.253267837815336,22.29000538922156,24.939689845801254,151.55322062099867,,115.81388403662672,114.46958093274897,117.25976151364188,115.83722148533815,140.84322341579764,115.4161460104217,115.87772378188339,131.36989306350176,24.939689845801258,151.55322062099867,,115.15357184125355,113.72420454857715,116.7120405307195,115.17846875787475,143.38824018211366,114.73296267744902,115.22127397428167,132.40736700094533,4.887360046623163,114.02677809375847,,87.9899347930128,87.07022615221429,89.15326120479166,88.0064577107493,102.75490407389933,87.72659720230385,88.03276182529893,97.79904378401402,1.3126152550421712,7.976485295842036,,6.09546758087509,6.024714785934156,6.171566395454835,6.096695867649376,7.412801232410402,6.0745340005485104,6.098827567467547,6.91420489807904,2.443680023311582,75.77661031049928,,57.953934499516365,57.28705962115786,58.65589132927857,57.96546847507845,69.81158778545718,57.75740705790685,57.98548017482427,65.4455294692639,31.454901960784312,0.0,1.683775352733686,0.0,0.0,0.0,9.05603700740831,32.42607428987618,0.7209183673469387,0.0,5.714092025699168,0.0,-0.5133376900142781,0.0,0.0,0.0,0.0,21.424241603908,320.65705241784775,48.53603722787456,112.61592201474585,139.63547202339973,151.24511249783654,153.24511249783654,153.24511249783654,693.0,113.33784587389403,140.17778701537583,52.72635731238149,59.42,59.42,1.0,8.508366853646109,5.392317422778761,3.947118609139216,4.295219230403952,,4.292280248616745,4.292145041018899,4.29299800846225,4.292283709781368,4.27766609287371,4.292286200844087,4.292280177835221,4.288515715284052,0.20774308469153768,0.22606417002126064,,0.22590948676930236,0.22590237057994206,0.22594726360327633,0.22590966893586148,0.22514032067756365,0.22590980004442562,0.225909483043959,0.22571135343600274,2.0148397328549095,2.0993564834733482,,2.0986720043862443,2.098640503710708,2.098839211511205,2.098672810755593,2.0952614416296975,2.0986733911137807,2.0986719878958193,2.0977945721316953,187.1199999999997,115.23850342159334,98.35295275188179,,98.57209319446677,98.57421530076178,98.50698660695713,98.57189569718268,99.8346278671287,98.56880659437837,98.5724767577806,98.9694448653467,6.065184390610176,5.176471197467462,,5.188004904971936,5.188116594776936,5.184578242471428,5.187994510378036,5.254454098269932,5.187831926019914,5.188025092514769,5.208918150807722,5.388857809681637,5.230416453453397,,5.232642077238217,5.2326636054759135,5.231981361854892,5.232640073654084,5.245368981925255,5.232608734587431,5.232645968426434,5.236665050944789,5.714092025699168,15.212516438304228,9.05603700740831,2.822609599395314,0.05639975434618294,9.367879871084236,2.4200232843622094,1.683775352733686,0.0,228.03908928037495,81.60176559135867,-138.15856683422652,-16.372728631162822,-4.317455213569579,-11.513213902852211,130.76698364408634,221.39936456736294,11.621558808504782,6.918730142730092,11.069968228368149,696.0,31.0,1.359116756396542,0.6019604966213914,0.0,0.0,0.4553418012614795,0.11715499729593795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20693027063286606,0.06361503127400697,0.4104947253922921,0.10403749724379524,13.405412915006313,10.459482437441572,9.147867045540842,6.122967913482778,8.472446069934405,4.673602722960912,7.253045012879342,3.3924700701011745,5.666670544484058,2.2088947862195805,4.889163431593253,1.5845675408775273,3.437914814316706,0.9320197903094481,2.6441346239486605,0.5874547545978522,3.4373046725931915,1.2640977529831132,4.664085110659545,1.4564603754121492,7.183031375734644,1.8500849672718314,61.75644010971039,35.31267220862594,24.052722972541424,21.804229296672176,21.616729296672176,21.616729296672176,102.0,121.0,37.22430899999999,16.785690999999996,0.4375,99.04,6.027777777777778,4.111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,12.0,12.0,32.0,0.0,0.0,34.0,12.0,1.0,7.0,27.0,13.0,21.0,21.0,0.0,0.0,0.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,3.0,1.0,2.0,19.0,4.0,0.0,1.0,3.0,0.0,3.0,2.0,0.0,0.0,0.0,1.0,2.0,3.367295829986474,7.237531037012228,3.970291913552122,4.51085950651685,5.061011501421323,5.653365988742185,5.882625767073831,6.299638347606767,6.735037458330877,7.085823009405256 +2708,O=C(O)CCCc1ccc(N(CCCl)CCCl)cc1,0,33.63157894736842,6.0369131578947375,2.710526315789474,5.242365172189733,163.3425753623561,138.435262131579,1.5656171892666055,6.207236842105263,3.9922378247860166,7.744062052631578,215.89119506986495,25.63157894736842,6.220394736842105,3.3684210526315788,4.871345029239766,146.12165400806177,97.52226676315786,1.8293748833157901,6.407736842105264,2.7729044834307994,7.724720421052627,255.84098709350516,19.597014925373134,6.080597014925375,2.91044776119403,3.3300165837479265,155.89300477701343,70.77842544776118,1.5096878131931792,6.248755223880599,2.817210245070942,7.69759808955224,199.29219384245468,15.908045977011493,5.954301149425286,2.5517241379310347,2.0893997445721584,161.59650823265858,55.9572766091954,1.3100229262905976,6.0874632183908055,2.3338299985809567,7.616470804597702,168.92495854939796,15.932584269662922,5.803067415730337,2.404494382022472,1.7003745318352061,156.64667851496273,57.00572734831461,1.3678752468717301,5.939365168539325,2.2440121144865217,7.442099595505616,171.79416924530608,15.474747474747474,5.697969696969697,2.04040404040404,1.5196408529741865,161.1036217101276,55.05765686868688,1.2658813491896161,5.85860101010101,2.0995136550692104,7.445726343434343,151.41261695363005,18.154761904761905,5.711308333333333,2.0,1.6897413286302176,165.53174292478562,66.40577842857144,1.2206114051841666,5.907584523809525,2.131052177005538,7.550954488095239,143.50147057997683,16.384615384615383,6.045519230769229,2.2115384615384617,2.1965811965811968,163.83918440074513,57.22298788461536,1.2157627681189997,6.192009615384615,2.8457581513137074,7.786608692307693,154.1230782744458,15.116279069767442,5.9542558139534885,2.116279069767442,1.9328165374677004,163.04565028534626,53.53573820930231,1.187172631918372,6.056976744186048,2.465977605512489,7.623945116279069,149.36307486700932,15.903047091412741,0.1076881578947368,0.018576523813189024,0.4605263157894737,3.10495537088335,1.3030234974766257,74.34638919459833,0.27840351464992324,0.12192686980609413,1.483235344968442,0.08806431301939058,53.6900146952621,-0.07479224376731249,-0.004234210526315893,-0.010167745071792009,0.09210526315789473,0.8316405047706985,-0.1992307172496234,-0.3135919473684131,-0.005378713141274068,-0.004105124653739677,-0.040749717861906225,-0.0046742382271468185,-0.9503033900434277,-2.32881299871832,0.007816044776119356,0.0014895108451002022,-0.033582089552238806,0.08498188242127822,-0.11260988790173831,-11.010001153749943,-0.041930445904467435,0.00022285525282173782,0.3754993579279246,0.0032325927150948816,-7.338602297229599,-1.4027446110739645,-0.013827873563218398,-0.0006584585031233883,-0.04310344827586207,-0.6408833133448664,0.2040552610909111,-6.58678619429586,-0.005731459348842966,-0.013710354379596895,-0.13804926354521635,-0.005724312414429901,-1.2953670161991615,-0.02309440069718935,-0.008511516853932536,-0.0006319068867031649,-0.06460674157303371,-0.6814204620340302,-0.15087704393357718,-0.19231053404245466,-0.010678173516576558,-0.007416520900121351,-0.13626159834045015,-0.002409115503128003,-5.882763762258628,0.19955790592909692,-0.0010371212121211316,-0.00014653302976621636,0.0025252525252525255,-0.0020222055720157174,-0.1359160778959761,0.9901525911539193,0.0016214193496217914,-0.0010866784185343326,-0.06274268543768684,-0.002342877081059896,-1.2817024864643363,1.3970782218704658,0.009639880952381025,0.0016002093663052687,0.0,0.3829696886791377,-0.013471943507698148,6.537913372757553,0.006309292226692454,0.010502641472101325,0.1865571823794962,0.002839957030734735,4.029655278752423,-2.243128063072662,-0.017162500000000042,-0.0010563830594852866,-0.0673076923076923,-0.26752347204794125,-0.0893585275612395,-10.397030602493073,-0.026190454155417073,-0.021311485190709595,0.006561262484381252,-0.01813767334327723,-4.3664910873937695,0.23771178251626604,-0.018006395348837217,-0.005403138919282394,-0.029069767441860465,0.0053699687361565985,-0.15191113082212865,1.1516397337982338,0.005255788349152116,-0.01580275719899503,-0.17080482520821083,-0.010980473362107838,-3.346191675841587,,,0.49974937343358394,1.013157894736842,0.42105263157894735,0.02631578947368421,0.5921052631578947,-0.17105263157894737,0.8813740523661955,0.012946305504026867,0.01747262129350055,0.6355305835477559,0.1915824662683361,0.2909561525630631,1.5169046359139513,0.4825386188313992,1.9626034413766842,1.4877734930837476,0.11550674776200506,0.1782371207056641,0.18108607982526712,0.4748299482929363,7.975770637052646,1278.0,229.40270000000004,103.0,199.20987654320987,6207.017863769532,5260.539961000002,59.493453192131014,235.875,151.70503734186863,294.27435799999995,8203.865412654868,974.0,236.375,128.0,185.11111111111111,5552.622852306347,3705.8461369999986,69.51624556600002,243.49400000000003,105.37037037037038,293.53937599999983,9721.957509553196,1313.0,407.4000000000001,195.0,223.1111111111111,10444.8313200599,4742.154504999999,101.149083483943,418.66660000000013,188.75308641975312,515.7390720000001,13352.576987444463,1384.0,518.0242,222.0,181.77777777777777,14058.896216241295,4868.283065,113.971994587282,529.6093000000001,203.04320987654324,662.63296,14696.471393797623,1418.0,516.473,214.0,151.33333333333334,13941.554387831682,5073.509734,121.74089697158398,528.6034999999999,199.71707818930042,662.3468639999999,15289.681062832242,1532.0,564.0989999999999,202.0,150.44444444444446,15949.258549302634,5450.708030000001,125.32225356977199,580.0015,207.85185185185185,737.126908,14989.849078409376,1525.0,479.74989999999997,168.0,141.93827160493828,13904.666405681992,5578.085388,102.53135803546999,496.23710000000005,179.0083828684652,634.2801770000001,12054.123528718053,852.0,314.3669999999999,115.0,114.22222222222223,8519.637588838747,2975.5953699999986,63.21966394218799,321.98449999999997,147.97942386831278,404.903652,8014.400070271181,650.0,256.033,91.0,83.11111111111111,7010.9629622698885,2302.036742999999,51.04842317248999,260.45000000000005,106.03703703703704,327.82964,6422.6122192814,604.3157894736842,4.092149999999998,0.7059079049011829,17.5,117.98830409356731,49.514892904111775,2825.1627893947366,10.579333556697083,4.633221052631577,56.36294310880079,3.346443894736842,2040.2205584199598,-2.8421052631578747,-0.16090000000000393,-0.38637431272809636,3.5,31.602339181286542,-7.5707672554856895,-11.916493999999698,-0.2043910993684146,-0.1559947368421077,-1.5484892787524365,-0.1776210526315791,-36.11152882165025,-156.03047091412745,0.5236749999999968,0.09979722662171354,-2.25,5.6937861222256405,-7.544862489416467,-737.6700773012462,-2.809339875599318,0.014931301939056434,25.15845698117095,0.21658371191135706,-491.6863539143831,-122.0387811634349,-1.2030250000000007,-0.05728588977173479,-3.75,-55.75684826100338,17.752807714909267,-573.0503989037398,-0.49863696334933805,-1.1928008310249298,-12.010285928433822,-0.49801518005540135,-112.69693040932705,-2.055401662049852,-0.7575249999999957,-0.056239712916581676,-5.75,-60.64642112102869,-13.428056910088369,-17.115637529778464,-0.9503574429753137,-0.6600703601108002,-12.127282252300063,-0.21441127977839228,-523.5659748410179,19.756232686980596,-0.10267499999999204,-0.01450676994685542,0.25,-0.20019835162955602,-13.455691711701634,98.02510652423801,0.16052051561255734,-0.10758116343489893,-6.211525858330997,-0.23194483102492972,-126.88854615996928,117.35457063711912,0.8097500000000061,0.13441758676964258,0.0,32.16945384904757,-1.1316432546466444,549.1847233116345,0.5299805470421661,0.8822218836565113,15.670803319877681,0.23855639058171774,338.49104341520354,-116.64265927977843,-0.8924500000000022,-0.05493191909323491,-3.5,-13.911220546492943,-4.646643433184455,-540.6455913296398,-1.3619036160816878,-1.108197229916899,0.3411856491878251,-0.943159013850416,-227.05753654447602,10.22160664819944,-0.7742750000000004,-0.23233497352914295,-1.25,0.23090865565473373,-6.532178625351532,49.52050855332405,0.22599889901354098,-0.6795185595567863,-7.344607483953066,-0.47216035457063704,-143.88624206118823,0.7414513510426595,0.648926887609657,0.4825386188313992,0.3903070900248725,0.3236080883489243,0.21889916053574385,0.202725267224196,0.12325037653749994,0.13734699760130492,0.07664294911691609,0.09051677789113066,0.044414763977555026,0.06218815495983651,0.026587209506432282,0.039851026069744666,0.013628637113569372,17.00212339492274,5.692992933559492,3.554725701387346,2.192357265194836,0.425325032405259,-0.433381786220396,3.1310442355874026,0.9728132225003204,6.0220021761603935,0.7670708668333335,14.543281380854534,10.954038071870427,35.451527091764106,11.70450962082605,2.205298055022701,0.7416142037358875,3.5007710904011504,2.2421528487618154,7.008291814256058,1.2764613304546732,3.71370499195926,2.438025640906669,22.456913337539856,14.701440817384784,0.29968393252855285,0.5959661878162636,0.7780135339907907,0.836576383490381,0.836576383490381,0.836576383490381,2.224596813297317,375.5372835152444,0.0,1.0,4.0,0.0,5.0,3.0,1.0,0.0,0.0,3.631936622743015,2.0342886554949073,1.052631578947369,0.7368421052631575,0.7368421052631575,0.7368421052631575,42.01668546859031,880.0883539326353,64.29841595711773,23.160219840332516,52.03284450583918,,12.0,343.0,5.969305287951849,4.794537184071822,6.4208216229260096,18.180828512866686,30.761172201131718,0.0,0.0,24.26546827384644,4.899909730850478,28.30840717530574,9.495238095238095,19.25,8.0,0.5,11.25,0.0,0.00025062656641603923,-3.25,0.15363408521303246,0.03913192071086802,-0.11450216450216444,0.028696741854636554,0.14216174361915668,0.0,0.5869674185463661,0.8739348370927317,0.4333333333333337,0.5478354978354981,0.8452380952380951,16.746106994957714,0.24597980457651047,0.33197980457651044,12.075081087407362,3.6400668590983862,5.528166898698199,28.821188082365076,9.168233757796585,0.5718382563808433,0.22066198595787362,0.0,0.2001003009027081,0.5,0.46043974799963605,-0.7630734392521795,-0.08145652595208773,-0.02008087998032052,-0.06358945327101496,0.5395602520003641,0.8941975556333072,0.039622112694424554,0.023531514621929144,0.03439221367820413,-4.554712063401816,0.6058178017766941,0.7736008673860157,1.5316482714473991,1.0015037593984961,0.6436346263988014,1.4503141133491668,0.6111372323746062,0.9726257429835448,0.7136052331446122,0.6986196295142868,0.7082938897872328,1.0227497169251896,0.9809910125387693,0.7248610873275569,0.8765379238525411,1.3884861407249467,0.9908694039714192,1.2460837029659222,0.9850134808842154,1.107230444011782,0.7956066848348068,0.3408748317132146,0.7236868877356817,1.1158102239899967,0.8691314941727882,1.0462392180374507,0.9822926560668479,1.3001642036124794,1.2815287728525373,0.9180944452900638,0.8727241937659853,0.9259064266849562,0.9866921072288579,0.8829333454776245,0.8817158527069637,0.9745420767404911,0.6487232580942521,0.7662232718247748,0.6856452365896206,1.0690208667736758,1.081275722456366,1.18073529975455,0.656166987316785,0.9550945406884919,0.7351785950047737,0.7586097583017976,0.6384701377310975,1.0976076683932894,0.9369474223158251,0.693923213662226,0.5455895822932638,0.7367965367965369,0.7873977794510437,1.0416062923133915,0.938051677707626,0.9874088276098139,0.7728161989582939,0.6718925117834301,0.764362310057415,1.032052264284623,1.201201051749737,0.6393505742411574,0.6036048123992422,0.9564625850340136,0.7458833495399213,0.8769269676171212,1.1975497852697188,1.046012651365725,0.8075360132057077,0.4092090350917357,0.8705013714951523,0.9428000006234293,1.1780169295083947,1.393126285881317,1.2247134040707137,1.2807692307692307,1.2307976664328264,1.0097375015278816,1.1745923935424782,1.062064120421039,1.3518816121661756,1.353882443767865,1.418558043453903,1.0280515709957252,0.689863406018723,1.307524702003183,1.4344179969915383,0.8850498338870433,0.9589581962963641,1.1106441859426457,0.6929957637166495,0.850598357618255,1.1454151588326928,1.3539936238716728,1.1025125232573834,0.9885239643358391,3.5,0.06611570247933884,1.7777777777777786,0.75,0.5022222222222223,0.5486111111111112,0.34448979591836737,0.17708333333333331,0.09019904257999495,0.08000000000000002,3401.512809793144,3947.1295715508813,1768.1948743609373,1574.721502536649,12.89749040361433,0.4730076368594391,6.796878946383423,0.897560704752143,1.0,0.5,1.6159908907005702,3.213638857948678,4.195295934496216,4.511085408180428,4.511085408180428,4.511085408180428,0.18421052631578944,0.008264462809917356,0.07729468599033822,0.03260869565217391,0.022828282828282833,0.027430555555555552,0.020264105642256905,0.014756944444444446,0.01002211584222166,0.010000000000000002,0.4076803750809803,17.05263157894737,9.833648393194707,6.816568047337278,123.67306201087634,1.0,3.811418431126394,93.1857827426815,,76.4457847498068,77.82465741014906,77.38034807755542,76.39488820349285,95.71895664005777,78.04683071468838,78.41097119510569,90.12674860676529,-0.0047030134122974755,-0.039319184291876884,-0.5473437966135019,0.2,0.26784298176050736,-0.15289879087786543,-0.004217984905058405,-0.019319846403654414,-0.03366874471778242,-0.0274735347968486,-0.053077552834797155,-0.01769981616576625,-0.14643816278301927,0.0725803554348046,0.08018243133533272,-0.07292110874200426,0.027369759713197144,-0.08642199324863546,-0.14809059690756146,-0.15061033247799552,0.0018277780211708437,0.25316235835514955,0.03670718142527392,-0.136684676636477,-0.08820602762544874,-0.12840663108691014,-0.03544573299854377,-0.09359605911330049,-0.20640661033480073,0.1566013671173812,-0.08859591253389917,-0.020586878567427407,-0.11244735800567256,-0.09307306761096201,-0.06500149967864377,-0.02412677708418418,-0.0014521997303057576,-0.0790385593024294,-0.03401642272030042,-0.1402889245585875,-0.2194622403993421,-0.11578996405341777,-0.002586682905865011,-0.0383550241095331,-0.06082761668462565,-0.0918678204390749,-0.027356319722809264,-0.10956904734797467,0.012548406904790801,-0.009630782366385156,-0.007888075898364813,0.005483405483405483,-0.00065128329733139,-0.10430823247561138,0.013318099263196754,0.005823990231088264,-0.008912542577879075,-0.04230123402232016,-0.026604160081780525,-0.023872269242970437,0.08784971922926985,0.08951662969111081,0.08614148601737569,0.0,0.12334144711722025,-0.010338987388782538,0.08793854608923722,0.022662401495275784,0.08613885920965703,0.1257771957851136,0.03224867069716895,0.07505409155918935,-0.14105020567309373,-0.15937221265105186,-0.05686656287842574,-0.14615384615384613,-0.08616016660227604,-0.06857783281290555,-0.1398458044180103,-0.09407371953744943,-0.17478907827784165,0.0044236152453074485,-0.20595940309309582,-0.08132780577873622,0.014947562008077347,-0.16720868571675393,-0.29085844981644277,-0.06312292358803986,0.001729483388557968,-0.11658356976394718,0.015490190529413186,0.018878311776203596,-0.12960848764613472,-0.11515692758241611,-0.1246869814301519,-0.062324283106163364,15.657788575285878,10.646691229274998,0.6850067105944414,20.31648676463477,34.09619399203132,37.98123064098071,38.2995464304544,38.2995464304544,38.2995464304544,37.289465386157,28.267696368591203,2.1946282074780963,3.386505293407618,3.440635516680075,9.02176901756579,5284.4531503520075,4696.094773651543,991.4424031114304,20.0,23.0,26.0,30.0,34.0,33.0,32.0,30.0,26.0,303.07928420800056,19.0,4.442651256490317,5.209486152841421,6.018593214496234,6.814542897259958,7.633853559681768,8.442254104751743,9.266437111328052,10.0817592530548,10.908759386883016,0.7017543859649124,0.9740000000000004,1.130473940350285,0.6665184107550534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6793738890639777,0.9673890608875124,1.007628320619466,0.6188588867344423,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,7.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,10.006437125691184,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,23.20187978046503,12.13273413692322,30.537828874472233,36.9577275993754,0.0,244.5150256975066,-405.22765990215703,-43.257222303101614,-10.663885786898872,-33.76897165851309,286.5317111660969,474.86069403047827,21.041193654016116,12.496334053433642,18.26387284732609,0.5,0.80440183550595,0.2903751125709257,116.50078748601635,0.18274108219090981,35.03285285316142,0.19559816449404996,6.0,0.47368421052631576,0.3079293466917932,0.6123634234116836,0.7994195658665542,0.8595936961065881,0.8595936961065881,0.8595936961065881,3.377900000000002,,1.9369747899159662,0.9903118715747484,0.8348397824051291,1.9634008712352873,-2.2148804386032412,1.0647020203585211,1.0568209388737024,-0.9507363248842613,80.66880000000005,9.901064578912528,0.0,0.0,0.0,19.26246486877803,29.749429432616306,29.828919765543436,0.0,0.0,3.6635616461296463,0.0,4.875197323201151,0.0,6.274762021241939,0.0,7.767687277186908,0.0,9.312806703520673,26.66666666666667,8.142549445704208,0.0,0.0,0.0,0.0,0.0,2.2546125178466454,0.0,37.012000000000015,0.0,10.445114971741956,0.0,0.0,0.0,0.0,0.0,-0.743499798194964,42.95800973331083,4.899909730850478,5.687386274683562,0.0,35.92535238455839,11.21535880699783,0.0,18.405094737549014,24.26546827384644,0.0,0.0,0.0,25.327699608692026,25.81620778443115,23.161897317511972,186.37156548536302,,152.68767741646457,155.5450714653955,154.67281828327873,152.5831026310662,192.13734920809551,155.98158753249692,156.71069808085628,180.5537297371783,23.161897317511972,186.37156548536313,,150.95459470969766,154.65900294872336,153.9258563727057,150.8263755357504,193.65279371871884,155.02895940901826,155.76512145133762,181.20423353841488,4.587723725448155,141.69450352210913,,116.56164537728952,117.70675417520258,117.11838500334116,116.51206529785902,141.94992060700974,118.1001572058075,118.60745749508823,134.26424134857302,1.2190472272374722,9.809029762387528,,8.036193548234976,8.186582708705027,8.140674646488355,8.030689612161378,10.112492063583975,8.209557238552469,8.247931477939805,9.502827880904121,2.2938618627240768,93.1857827426815,,76.4457847498068,77.82465741014906,77.38034807755542,76.39488820349285,95.71895664005777,78.04683071468838,78.41097119510569,90.12674860676529,36.76078431372547,0.0,0.0,11.54197397540101,0.0,0.0,8.594839721052537,38.28987618353971,4.346721802922951,0.0,0.0,0.0,0.0,2.1399095857478794,0.0,0.0,0.0,23.51663769590881,427.17496987252787,61.40765384662167,122.11827660204976,159.4212455108562,171.42124551085624,171.42124551085624,171.42124551085624,292.0,106.81833693678732,103.87176699107557,50.89401497128032,40.54,40.54,1.0,6.891435330115041,5.247927513443585,3.6101893092320614,4.274549631616444,,4.272023590224789,4.2648067031495085,4.263423411029056,4.272180581323358,4.257052312723425,4.265901292749647,4.266216960866707,4.261115841239367,0.19000996364379272,0.22497629640086547,,0.22484334685393625,0.2244635106920794,0.22439070584363452,0.22485160954333464,0.22405538488018026,0.22452112067103405,0.22453773478245828,0.22426925480207197,1.9256140973727316,2.094532633682001,,2.0939415098714065,2.0922507444358756,2.0919263413383833,2.0939782578459245,2.090430861578899,2.092507367826729,2.0925813630780423,2.0913849467180374,226.2599999999996,161.97036849707874,91.01491334937947,,91.10487268586603,91.74407726110886,91.82559969168659,91.08814482748583,92.45138808427932,91.66372320490571,91.64655267880732,92.1720139764666,8.524756236688354,4.790258597335762,,4.794993299256107,4.828635645321519,4.832926299562452,4.7941128856571495,4.865862530751543,4.824406484468722,4.823502772568807,4.851158630340348,5.729267294162751,5.1528772622221135,,5.153865176229279,5.160856818011002,5.1617450086674355,5.153681548353133,5.168536858325256,5.159980584163366,5.159793245771496,5.165510434611553,0.0,12.585024557489836,8.594839721052537,2.2546125178466454,0.3899364869404556,8.142549445704208,1.6723402060846442,1.5409453117028875,0.0,275.8973079035483,129.848906510781,-215.19482647791455,-22.9716067498456,-5.663021749418806,-17.932902206492884,152.16173022270027,252.17322202967148,11.173857229680419,6.636137421833462,9.69897007806429,846.0,23.0,0.9457057690291277,0.36873985075953064,0.0,0.0,0.08333333333333333,0.037267799624996496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.10703808753134778,0.032064454907958485,14.08757566981053,12.329610864583483,9.168233757796585,7.415834710472578,7.442986032025258,5.034680692322109,5.270856947829096,3.2045097899749986,4.120409928039147,2.2992884735074828,3.0775704482984425,1.510101975236871,2.052209113674605,0.8773779137122653,1.2752328342318293,0.4361163876342199,1.6644968780690952,0.743748523083384,2.3174907929125976,1.0511764100960317,3.029887459139315,1.2819813385096688,66.22741082653624,39.28238110380863,30.485383515865283,29.19700061405287,29.19700061405287,29.19700061405287,84.0,91.0,43.11306699999998,22.658932999999998,0.15789473684210525,19.05,7.194444444444445,4.611111111111112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,38.0,0.0,0.0,38.0,6.0,1.0,4.0,34.0,7.0,19.0,31.0,0.0,0.0,0.0,14.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,2.0,1.0,0.0,19.0,5.0,0.0,1.0,2.0,0.0,1.0,9.0,0.0,0.0,2.0,0.0,1.0,3.1780538303479458,4.73674654377681,3.56953269648137,3.917010546939185,4.335655417491759,4.798369860929229,4.8342958089798485,4.972846888034599,4.972846888034599,4.924986624562562 +4659569,Cc1ccc(C(=O)c2cc(O)c(O)c([N+](=O)[O-])c2)cc1,0,28.516129032258064,6.8198354838709685,3.6451612903225805,11.419354838709678,159.60360159191094,113.12614361290322,1.5600439339786778,6.860793548387098,9.523297491039427,8.271953032258066,245.04599584755854,28.375,6.68953125,4.25,9.8125,145.93522927010622,109.31580065624998,1.8920110863124995,6.817084375000001,4.329861111111112,8.072590375000003,288.67265900214,26.42,6.487399999999999,4.02,9.24,146.12887196969092,101.59286107999996,1.7657023196909396,6.619022,4.991111111111112,7.911783520000003,267.4168480132783,24.078125,6.5856093750000015,3.421875,7.71875,150.30649569218198,90.65644674999994,1.5504779808702809,6.6893,5.026041666666667,8.032805375000002,233.44791371612155,19.90277777777778,6.663180555555554,2.7222222222222223,6.722222222222222,160.43418634506793,72.90748731944443,1.229244342340139,6.709115277777778,5.554012345679012,8.1976735,184.23040846622547,21.224137931034484,6.675310344827585,2.7413793103448274,7.482758620689655,161.1151966968791,79.27966379310342,1.2567184041954997,6.717756896551725,6.241379310344826,8.196762896551725,190.37707128298524,22.02127659574468,6.745744680851064,2.8297872340425534,7.23404255319149,157.41431148699567,81.85695651063827,1.331210845196702,6.79934680851064,7.0141843971631195,8.247073361702126,200.74960797738044,19.857142857142858,6.6409047619047605,2.8095238095238093,5.333333333333333,159.63341936635945,72.3318177142857,1.2658510589379999,6.699499999999999,4.910052910052911,8.16573866666667,190.51476023408782,17.56756756756757,6.742243243243243,2.2432432432432434,4.54054054054054,162.37167945448374,61.48550732432433,1.1298112064242702,6.778472972972973,5.213213213213213,8.298385837837841,167.81592199364587,7.533818938605619,0.1983444328824141,0.037511912800465425,0.7221644120707595,4.759625390218523,1.4515391412086152,35.43386105723206,0.2245488475824974,0.1777346514047865,4.07885304659498,0.13657696566077,44.877252073566765,-0.17091571279916848,0.009857280827263238,-0.01356477378027171,0.22743236212278872,0.907713319458897,0.41801867146992644,-0.73010156630462,0.047385850925687145,0.004793473595213323,-0.5069444444444442,0.00803196579084288,4.262382498072181,0.9545681581685741,0.024552470343392332,-0.0048146191438284665,-0.10087408949011448,0.6223100936524459,-0.037687247632259176,4.426083421477635,0.0016368481859607331,0.023141413111342345,0.5733333333333334,0.015529728532778375,2.339466861828331,-0.3165810353798131,0.01610163566597296,0.003975805584082805,-0.09313215400624351,0.06396331945889697,-0.36398794912144194,-1.7536486741675272,-0.06600870131696912,0.014345792143600412,0.15277777777777782,0.009604707726326751,-10.766821240856586,-0.14985836512891648,-0.002465759047288721,-0.004545679057812274,-0.006214591282229163,0.2278298069140943,-0.08545950042581806,-0.723908083665743,-0.010653923042195888,-0.0021927607237830988,-0.20370370370370364,-0.0022285158399815057,-1.8621565694591586,1.5334780580573395,0.04113921561591731,0.0015577217093919612,-0.024722810291004323,0.9722989701819229,0.1742087532699811,7.145939151889194,0.023200587399102142,0.03776050988553589,0.5823754789272029,0.02715656047938569,6.419038889856465,0.12095113689197864,0.03354609560077044,0.00293048672091377,-0.06739433657316181,-0.16250802577102755,-0.145884431961135,0.3802019050191533,-0.012928665084432876,0.0280162751566409,0.8747044917257678,0.0257810961099918,-3.837578187038857,-1.2588573410633763,-0.04975902581636194,0.00039833049435455167,-0.12923046429810217,-1.4017144839205193,-0.23781964881334344,-5.832010789950945,-0.03327855013753272,-0.04304540409295873,-0.5714285714285716,-0.03471795490808184,-5.617803518854259,-3.1711336726945474,-0.08032734482661645,-0.0019854861504075283,-0.008999634389852889,-1.5634614843771972,-0.30251666238695846,-14.843682894198048,-0.057110392204390154,-0.07353421548499592,-1.219219219219219,-0.051981356244902556,-14.313665030580701,,,0.4533333333333333,1.425,0.825,0.075,0.6,0.225,0.5988300011649683,0.02587294784288847,0.03447294784288847,1.0934828935901693,0.2967802816365072,0.17305744863925906,1.6923128947551376,0.4698377302757663,1.983566580318513,1.4461685598973708,0.10073846477315904,0.4366595556479834,0.0,0.5373980204211424,8.808507175870979,884.0,211.41490000000002,113.0,354.0,4947.711649349239,3506.9104519999996,48.361361953339014,212.68460000000002,295.22222222222223,256.43054400000005,7596.425871274315,908.0,214.065,136.0,314.0,4669.927336643399,3498.1056209999992,60.54435476199998,218.14670000000004,138.55555555555557,258.3228920000001,9237.52508806848,1321.0,324.36999999999995,201.0,462.0,7306.443598484546,5079.643053999998,88.28511598454698,330.9511,249.55555555555563,395.5891760000001,13370.842400663914,1541.0,421.4790000000001,219.0,494.0,9619.615724299647,5802.012591999996,99.23059077569798,428.1152,321.6666666666667,514.0995440000002,14940.666477831779,1433.0,479.7489999999999,196.0,484.0,11551.26141684489,5249.3390869999985,88.50559264849,483.0563,399.88888888888886,590.2324920000001,13264.589409568234,1231.0,387.1679999999999,159.0,434.0,9344.681408418988,4598.2204999999985,72.88966744333898,389.6299,361.9999999999999,475.4122480000001,11041.870134413144,1035.0,317.05,133.0,340.0,7398.472639888796,3847.276955999999,62.566909724244994,319.56930000000006,329.66666666666663,387.612448,9435.23157493688,834.0,278.91799999999995,118.0,224.0,6704.603613387097,3037.9363439999997,53.165744475396,281.37899999999996,206.22222222222226,342.9610240000001,8001.619929831689,650.0,249.463,83.0,168.0,6007.752139815899,2274.963771,41.803014637698,250.8035,192.88888888888889,307.0402760000001,6209.189113764897,233.5483870967742,6.148677419354837,1.162869296814428,22.387096774193544,147.5483870967742,44.99771337746707,1098.4496927741939,6.96101427505742,5.509774193548382,126.44444444444437,4.23388593548387,1391.1948142805697,-5.469302809573391,0.3154329864724236,-0.43407276096869474,7.277835587929239,29.046826222684704,13.376597487037646,-23.36325012174784,1.5163472296219886,0.15339115504682635,-16.222222222222214,0.25702290530697214,136.3962399383098,47.72840790842871,1.2276235171696166,-0.24073095719142332,-5.043704474505724,31.115504682622294,-1.8843623816129589,221.30417107388178,0.08184240929803666,1.1570706555671173,28.666666666666668,0.7764864266389188,116.97334309141657,-20.261186264308037,1.0305046826222695,0.25445155738129954,-5.960457856399585,4.093652445369406,-23.295228743772284,-112.23351514672174,-4.224556884286024,0.9181306971904264,9.77777777777778,0.6147012944849121,-689.0765594148215,-10.789802289281987,-0.1775346514047879,-0.3272888921624837,-0.44745057232049973,16.40374609781479,-6.1530840306589,-52.12138202393349,-0.767082459038104,-0.1578787721123831,-14.666666666666663,-0.1604531404786684,-134.07527300105943,88.9417273673257,2.386074505723204,0.09034785914473374,-1.4339229968782508,56.393340270551526,10.104107689658903,414.46447080957324,1.3456340691479243,2.190109573361082,33.777777777777764,1.5750805078043701,372.304255611675,5.684703433922996,1.5766664932362104,0.1377328758829472,-3.167533818938605,-7.637877211238295,-6.856568302173345,17.869489535900204,-0.6076472589683451,1.3167649323621222,41.111111111111086,1.2117115171696147,-180.36617479082628,-52.872008324661806,-2.0898790842872015,0.01672988076289117,-5.427679500520291,-58.87200832466181,-9.988425250160425,-244.9444531779397,-1.3976991057763741,-1.8079069719042669,-24.000000000000007,-1.4581541061394372,-235.9477477918789,-117.33194588969825,-2.9721117585848087,-0.07346298756507855,-0.3329864724245569,-57.8480749219563,-11.193116508317463,-549.2162670853278,-2.1130845115624357,-2.720765972944849,-45.11111111111111,-1.9233101810613946,-529.605606131486,0.7430721420318147,0.5276494930037312,0.4474645050245393,0.27478627932826694,0.29516083429425016,0.14534645647042502,0.1901663788265378,0.07572372612109761,0.11732830119366205,0.03937074791050922,0.07548054126789908,0.021302960057660383,0.04940378758531975,0.010978865560025544,0.030547025337694374,0.005591311847464751,8.054658018543643,5.683136202695005,3.6076539151583185,2.181796496033242,0.5285514919161066,-0.38611033939758715,3.2443853770297126,0.9726738418966147,7.004118814472309,0.9959464975505536,14.594742874732137,10.94383264881054,16.0280423679948,11.694888425090205,2.0009410971958923,0.669221651673682,3.55313998092136,2.2314612881536573,8.00193742469502,1.408866112108055,3.757020005110854,2.4274617091097075,20.90672160135692,14.651539376075801,0.30678748154938423,0.665570375595358,0.7717032360327437,0.8899587948384591,0.9020814932067885,0.9020814932067885,1.9688336329766714,691.4556053660622,0.0,0.0,1.0,0.0,10.0,0.0,3.0,0.0,0.0,3.3214953931694686,1.4120786293812047,0.8472471776287227,0.2178995968439814,0.1533834678117234,0.1533834678117234,-27.026156505502883,1014.9597826913625,85.67378093923178,32.740638151334274,69.8801379614084,,10.0,323.0,27.89296593643398,25.12191024251881,5.563451491696996,5.563451491696996,17.696185628620217,0.0,24.26546827384644,6.923737199690624,0.0,0.0,9.066666666666666,28.5,16.5,1.5,12.0,0.0,0.046666666666666676,4.5,0.25669262143121974,0.11012753188297064,-0.1465650895482491,0.05560606060606055,0.21674223034734907,0.0,0.6946236559139787,0.9116666666666665,0.43793103448275894,0.584496124031008,0.856060606060606,11.976600023299367,0.5174589568577694,0.6894589568577694,21.869657871803383,5.9356056327301445,3.4611489727851814,33.84625789510275,9.396754605515326,0.4972577696526509,0.2389705882352941,0.0,0.43014705882352944,0.07142857142857142,0.5282621787313647,-1.1213719770280872,-0.12438771297886167,-0.0361732895815512,-0.09344766475234062,0.47173782126863534,1.0013845294496075,0.054796308915138724,0.03230272675643896,0.052704448918400405,-3.1992554228701837,0.6783926104972375,0.6010972560319816,1.218125318332146,0.7956592219020174,0.4543001202448622,0.8154164333669947,0.682220088307949,0.7984531753035098,0.6052397535464838,0.7212489015817226,0.6162809213002096,0.7826374278235474,0.5895994475138121,0.4966824231804374,0.8780876174720714,1.3132564841498562,0.5937035417577612,1.0590200067577809,0.5990233375533048,1.0251266799292746,0.48456613759711514,0.49771528998242553,0.5243616936851362,0.8954265803220955,0.838958908839779,0.678560561148739,0.7676142274469292,1.120204430835735,0.7449886587232181,1.2653345827784521,0.8505605781741629,1.2850202112727667,0.6728922537953086,0.676557007908612,0.700867222267496,1.1710832127558262,1.046357044198895,1.0724393041951499,1.0961620419643907,0.9492074927953893,0.9756686343098672,0.9977762520355848,1.0447946059867979,1.0041319394458936,1.0729001393418156,1.1033611599297017,1.0772284774551346,1.0134186384652706,0.8316226900361974,0.83758971470935,0.8833099836860279,0.9588343436350991,0.8378315214932979,0.8348253389131809,0.8320126882662968,0.8549075877160945,0.8353227361951777,0.928580086055391,0.8399901338831548,0.8405194161186269,0.9510990948630539,0.8631747312059007,0.8596423261760843,1.0264271261266786,1.0598758942775537,1.0477758027176767,0.9544880085853539,1.0256649798210866,0.8690532616834556,0.9226713532513187,0.8586184940624731,1.0324926388029452,1.146902131018153,1.2525109367493514,0.9812156133163231,1.1486208316179498,1.2441439190455366,1.1444820100290902,1.1433171356776368,1.0903662554930256,1.2425191594995415,1.0977906100928954,1.2502037326130901,1.0727183321987614,1.4633231297595937,1.5572696363136478,1.1796872390549877,0.796791027338578,1.3820477670499531,1.1525038157022984,1.4563618158506275,1.1770414285741904,1.5607496925096742,1.4645181209328846,1.536975619707091,1.24904613266443,5.0,0.0,3.1111111111111125,1.75,1.386666666666667,0.8194444444444444,0.486530612244898,0.2673611111111111,0.16427311665406902,0.12250000000000003,3740.1837003972796,4031.2540010828493,1890.3197671368534,1767.0872631007533,12.03981009617848,0.47712815612659476,6.295277704874482,0.9125145324178411,1.0,0.07142857142857142,1.6327009172174063,3.5421176810056703,4.106949132758152,4.7362967135428935,4.8008128425751515,4.8008128425751515,0.23809523809523814,0.0,0.10370370370370376,0.0546875,0.05135802469135803,0.03414351851851852,0.024326530612244893,0.016710069444444444,0.014933919695824456,0.02041666666666667,0.5583751714279988,16.3718820861678,6.84,3.814404432132964,113.62134688128981,1.0,3.9098377281903476,83.67080938810945,,63.0794487155195,62.48507712537703,62.995119857031256,63.08772759094417,82.56446790252576,62.87189584643848,63.11098379201143,72.96940327435422,-0.022686464088397917,0.04969779430666954,-0.3616124256959621,0.3149315561959654,0.1907110843900306,0.28798305164672705,-0.020604629146267033,0.21102691657447928,0.02696983147251517,-0.12428602811950791,0.058809080667326326,0.09497868744469706,0.1267044198895027,0.12378704048602131,-0.12834907058561754,-0.13968299711815566,0.13074770441626596,-0.025963645459039512,0.12491112425848015,0.007289497156556852,0.1302020339221209,0.14056239015817232,0.11370679131465791,0.052130350093478765,-0.04202132251381221,0.0811801744671029,0.10598781259785495,-0.1289625360230548,0.013438729777000433,-0.2507599959160382,-0.04949075889119363,-0.29396143434990496,0.0807146610422534,0.03745606326889283,0.07032450662422046,-0.2399171237848222,-0.019891421117249824,-0.012431702828536225,-0.12117961251381118,-0.008605507524815889,0.04786717193800712,-0.05887509196249488,-0.020429839200884745,-0.04744590389528374,-0.012337271918851306,-0.04994141769185707,-0.016316923056532796,-0.04149444280604674,0.2035459135073347,0.20741300886577518,0.04152605380796881,-0.03423432376031003,0.20428056631937644,0.12001657297710018,0.20166978530358903,0.10332089275398501,0.212454406538527,0.14277922550148478,0.19883704655466708,0.14303547105187742,0.016054425767015396,0.16913051257989076,0.07812149533674034,-0.0933227052547673,-0.0341430285889719,-0.10050327119643858,0.010729903365739873,-0.057576180967408394,0.157629786511548,0.21444864076580786,0.1887660630418962,-0.08551277116406233,-0.16709418574059456,-0.25087180463421893,0.010618773200752628,-0.17894881295457668,-0.29450100984862676,-0.16383963894719666,-0.16458863403373397,-0.14820183000630385,-0.24218914968316355,-0.14009540547326146,-0.25420066070521974,-0.1251815398510822,-0.4209198148424668,-0.4049891577962133,-0.05292948298767888,-0.012462029753096005,-0.328484146586464,-0.20841095758194286,-0.41891237509293244,-0.25433393588630315,-0.4137303272254067,-0.298912269035292,-0.38060119430397876,-0.3189514591293708,5.073734767183264,15.031250000784645,7.400542052841979,15.786504559152,34.35263642747865,41.13682699447771,43.44824161397324,43.51327387203776,43.51327387203776,39.67133160637026,28.923371197947414,2.014769295463181,8.733191112959668,0.0,10.747960408422848,3799.9788686255615,3277.415139366102,658.8656155603276,44.0,30.0,38.0,45.0,56.0,55.0,54.0,46.0,44.0,273.0637224520003,21.0,4.634728988229636,5.476463551931511,6.35088571671474,7.214504414151143,8.09101504171053,8.961750799330497,9.839215662515988,10.713417268418873,11.591468587289008,0.7634408602150541,1.029290322580645,1.116831021805699,0.7338541820535475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6919977400038636,1.013788741302973,1.038695580668656,0.6874842583534136,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.213054789681411,0.0,11.532756779648844,5.749511833283905,0.0,14.908855452837393,0.0,0.0,0.0,29.828919765543436,12.990104268152233,17.193270051855603,4.923311048817671,252.57954197437078,-536.1648661292515,-59.47386134455246,-17.29564084287908,-44.68040551077097,225.5533854688679,478.7949165621109,26.199919594679315,15.444997308455191,25.19973245063742,0.5,0.5317140712566599,0.23745565173797706,124.28103626752903,0.1483410949005101,39.81263616316028,0.46828592874334,5.0,0.14285714285714285,0.3295591888020901,0.7149732184773003,0.8289839310863802,0.9560171654104346,0.9690396871254087,0.9690396871254087,2.545420000000002,,1.3928571428571428,1.6142391810144252,1.0909205148491539,1.3888280739756562,-5.929653139877578,1.4547888616891067,1.3827369942067755,-2.314297018533557,71.03750000000001,19.930903022570906,0.0,0.0,0.0,6.923737199690624,0.0,63.20287515462622,0.0,11.49902366656781,3.7612001156935624,0.0,5.093750200806762,0.0,6.621405651764134,0.0,8.235095497258357,0.0,9.893588720356881,23.666666666666675,8.603579302091207,0.0,0.0,0.0,0.0,0.0,-1.0023109305450553,0.0,31.907999999999994,0.0,22.933710510068735,0.0,-0.8601440329218106,0.0,0.0,0.0,-0.46907407407407464,34.621761675976664,0.0,5.687386274683562,11.49902366656781,20.919610784864023,0.0,17.038055468456196,21.48489165916281,36.39820241076966,0.0,0.0,0.0,22.74947964365997,21.451929940119772,24.756726066792794,167.34161877621892,,126.01961171675327,124.80873033265263,125.8811476625776,126.03657237449076,168.09376237499032,125.59831280670804,126.08369388460218,147.09595505797517,24.756726066792798,167.34161877621895,,124.76604028818196,123.35591506973964,124.89931919921347,124.78662710791264,171.0585889449291,124.28900283118783,124.83923058981611,148.25310356724196,4.823266982225215,123.90570948671856,,95.47095090162124,94.82695438176674,95.33585919550612,95.47979480199092,117.17589102896818,95.24385131925999,95.50537051243543,106.32186891760125,1.2378363033396398,8.367080938810947,,6.300980585837664,6.240436516632632,6.29405738312888,6.301828618724538,8.404688118749515,6.2799156403354015,6.304184694230109,7.354797752898759,2.411633491112606,83.67080938810945,,63.0794487155195,62.48507712537703,62.995119857031256,63.08772759094417,82.56446790252576,62.87189584643848,63.11098379201143,72.96940327435422,31.427450980392162,0.0,1.866549137357218,0.0,0.0,0.0,18.8412433723617,32.19956300072833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.312012008955822,254.23000545270963,50.613728433739595,109.80564811117578,127.31542311550272,146.8251981198297,148.8251981198297,148.8251981198297,453.0,113.87345003029193,223.90292199052902,53.605040185879695,100.67,100.67,1.0,8.079022475688882,5.392317422778761,3.977023989515345,4.40568685653361,,4.4067403136594825,4.407716009900955,4.406822894552699,4.406726239561973,4.35267349354755,4.407093002127988,4.406685772049105,4.382007370220927,0.19885119947576727,0.22028434282668047,,0.22033701568297412,0.22038580049504777,0.22034114472763494,0.22033631197809864,0.2176336746773775,0.2203546501063994,0.22033428860245524,0.21910036851104633,2.073680978830506,2.176043354361161,,2.1762824388064663,2.176503824269084,2.1763011783085875,2.176279245035338,2.163937433091458,2.176362469471004,2.1762700618693143,2.1706541036626423,191.32999999999984,117.18682371329548,102.17339890721279,,101.47126803570698,101.29964783503472,101.52940657619982,101.47390470401398,106.90052580213165,101.41502550970031,101.48000814655776,104.35854397489835,5.859341185664774,5.1086699453606395,,5.073563401785349,5.064982391751736,5.076470328809991,5.073695235200699,5.345026290106583,5.070751275485016,5.074000407327889,5.217927198744918,5.4569166257281445,5.31981853978438,,5.312922865429077,5.311230115352812,5.313495657043623,5.312948849474636,5.365045917214317,5.312368441308409,5.313008995568494,5.34097968878498,0.0,22.073566477146922,29.59435675469045,0.5485059208868748,-2.0198909255060045,8.603579302091207,0.0,1.866549137357218,0.0,238.0435579594986,120.76659581647827,-256.3580770345912,-28.436411431024137,-8.269615388212618,-21.363173086215934,107.84450048896305,228.9276151007833,12.527044254581492,7.384761777444623,12.048821847409648,809.0,32.0,1.7120270046047,0.6155604126548275,0.0,0.0,0.5431830368376225,0.07572776329061115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1388888888888889,0.048611111111111105,0.30670699678687174,0.08113389981249824,14.861442840636295,10.552989860074625,9.396754605515326,5.770511865893606,8.854825028827506,4.360393694112751,7.226322395408436,2.877501592601709,5.279773553714793,1.771683655972915,4.2269103110023485,1.1929657632289814,2.7172083171925863,0.6038376058014049,1.6495393682354962,0.30193083976309654,3.9836451136455295,1.054895473855691,5.350525533982416,1.1580872455065883,8.173744972559597,1.383123973153018,67.44145218224298,39.74204230537188,27.843532904129606,23.38273496940454,23.192141659057,23.192141659057,102.0,119.0,35.82472299999999,13.069276999999996,0.41935483870967744,61.06,8.38888888888889,4.388888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,31.0,0.0,0.0,32.0,12.0,2.0,8.0,24.0,14.0,21.0,18.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,5.0,2.0,0.0,20.0,6.0,0.0,1.0,5.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,2.0,3.4011973816621555,6.69670626178623,4.02535169073515,4.590056548178043,5.093750200806762,5.638799410279479,5.809455441496072,6.030985695895189,6.10709248442948,6.359790108266689 +2265,Cn1cnc([N+](=O)[O-])c1Sc1ncnc2nc[nH]c12,0,40.69230769230769,7.175303846153847,4.1923076923076925,13.478632478632479,168.94175336364782,162.25544161538465,1.7837999359208847,7.208357692307692,7.6667985649467125,8.528947115384616,260.07678192337005,37.25,7.130142857142857,4.75,11.761904761904763,157.755067656775,146.1867261071428,1.8910656485714281,7.230596428571429,4.188271604938271,8.427782857142859,285.87404579435514,36.25,7.142320454545455,4.454545454545454,10.909090909090908,165.90402582876703,141.64613822727273,1.7769332280578867,7.213704545454547,4.986391694725028,8.500637818181817,266.2427739369853,38.46666666666667,6.856802222222224,4.044444444444444,8.88888888888889,156.46445127442334,149.7955722,1.897196218996644,6.977513333333334,4.1889574759945125,8.29397728888889,262.09369319031623,34.4468085106383,6.875774468085106,3.5531914893617023,7.730496453900709,162.5914134502176,130.1254839148936,1.671034401373341,6.981259574468086,3.871552403467299,8.421324978723401,230.28952769560067,26.789473684210527,7.043097368421054,3.9210526315789473,8.763157894736842,163.98808839248238,100.96939307894736,1.477825156894737,7.100928947368422,4.566764132553607,8.406298631578947,229.34802094113653,25.488372093023255,7.2539209302325585,3.372093023255814,8.767441860465116,171.93119549426737,95.83789511627907,1.3035827371092554,7.260281395348837,5.289405684754524,8.618967627906976,207.5235381039294,24.125,7.125640000000002,2.8,7.8,171.47719323486007,89.60141225000001,1.2409721682500003,7.140215,5.187500000000002,8.475701399999998,192.26145610716944,13.705882352941176,6.7805882352941165,1.6470588235294117,4.970588235294118,182.75341094614686,46.093809352941186,0.7623365894938822,6.732541176470587,5.843137254901961,8.349350823529411,107.5910782675625,10.863905325443787,0.16706582840236675,0.0387953552192715,0.6405325443786982,4.7836949375410915,2.068409599409166,48.53618622485206,0.278313314314966,0.14707352071005916,2.8355695164811974,0.10086817899408278,38.20213229520061,0.36961115807269607,0.0064851331360946856,-0.010468438091464942,0.22485207100591706,1.0444491406029868,-0.86385250704286,1.8386621817413413,-0.0009432357781486354,0.006953677092138612,-0.14903237392553617,0.0020327935333896868,-2.2649686919164216,1.53294782140936,9.719607315762688e-05,-0.004464402839281954,0.03953738569123188,0.19163528778913372,0.6026868798218924,7.199180647525554,0.08045557071360308,0.0016228079612694909,0.5797062228686161,0.005005619956966111,13.020698315626085,1.6642998027613405,0.03138682117028268,0.0032697715835508117,-0.15164365548980935,0.04441522390240334,-0.2976287618732511,7.30886219395135,-0.016789169598269368,0.02829032544378699,0.25891772162744,0.020433417587113728,-6.240933275471592,-3.7035125267531175,-0.0013979887951655594,0.0013523280507915987,-0.07261110411683241,0.21794172367003803,-0.28267333929182953,-16.248344540727675,-0.12698182797865826,-0.000479330857358687,-0.2044244598042258,-0.0007101560808258843,-6.411209841038906,-2.740423544067269,-0.03791481625661785,-0.005955611958738154,-0.11522890065400188,-1.1395203986297104,-0.3320916122652779,-12.532050603394579,-0.06759631257528684,-0.03480287293677982,-0.36663642084244874,-0.026381801463718456,-10.530864787407499,-1.3308105132792072,-0.04253738475299296,-0.00037789354601055125,-0.08865419017476263,-1.5328501750684222,0.05825089547483966,-6.116229756157974,0.023640533235130604,-0.04025554217696435,-0.7501221297848877,-0.026917670049538992,-0.6730584807934022,-1.6177514792899408,-0.006054193786982234,0.0004096724729620542,-0.2443786982248521,-0.5339086127547665,-0.18190090188665198,-7.996165247928994,-0.07779306611787559,-0.0077893860946745466,-0.03714701991055272,-0.002512105917159761,-16.539233183551037,1.448311869126349,-0.0067613035154890444,0.001371363489909589,0.21014618865297596,0.13611401167962267,0.354260455358853,6.608872924469179,0.07424701422881905,-0.005417185868430203,-0.16481865836650508,-0.003943335102680127,9.288754122550145,,,0.46315789473684216,1.5263157894736843,0.7631578947368421,0.05263157894736842,0.7631578947368421,0.0,0.5856012822442355,0.01313209286456042,0.026711040232981473,0.9716905091318504,0.3033329420985649,0.1790198893723008,1.5572917913760858,0.48235283147086566,2.0446036168838035,0.9998648304255875,0.7553330381055993,0.18010392116613475,0.0,1.0447387864582156,10.655315133230776,1058.0,186.55790000000002,109.0,350.44444444444446,4392.485587454843,4218.641482000001,46.378798333943,187.4173,199.33676268861453,221.75262500000002,6761.996330007621,1043.0,199.644,133.0,329.33333333333337,4417.1418943897,4093.2283309999984,52.949838159999985,202.4567,117.27160493827161,235.97792000000004,8004.473282241944,1595.0,314.26210000000003,196.0,479.99999999999994,7299.777136465749,6232.430082,78.18506203454702,317.4030000000001,219.40123456790124,374.028064,11714.682053227354,1731.0,308.5561000000001,182.0,400.0,7040.90030734905,6740.800749,85.37382985484898,313.98810000000003,188.50308641975306,373.22897800000004,11794.21619356423,1619.0,323.16139999999996,167.0,363.3333333333333,7641.796432160228,6115.897743999999,78.53861686454702,328.11920000000003,181.96296296296305,395.8022739999999,10823.607801693232,1018.0,267.63770000000005,149.0,333.0,6231.54735891433,3836.836937,56.157355962000004,269.8353,173.53703703703707,319.439348,8715.224795763188,1096.0,311.9186,145.0,377.0,7393.041406253497,4121.02949,56.054057695697985,312.1921,227.4444444444445,370.61560799999995,8923.512138468965,965.0,285.0256000000001,112.0,312.0,6859.087729394402,3584.0564900000004,49.63888673000001,285.6086,207.50000000000006,339.02805599999994,7690.458244286778,466.0,230.53999999999996,56.0,169.0,6213.615972168993,1567.1895180000004,25.919444042791994,228.90639999999996,198.66666666666669,283.877928,3658.096661097125,282.46153846153845,4.343711538461536,1.008679235701059,16.653846153846153,124.37606837606837,53.778649584638316,1261.9408418461535,7.236146172189115,3.8239115384615383,73.72480742851113,2.6225726538461522,993.2554396752159,10.34911242603549,0.18158372781065119,-0.29311626656101836,6.295857988165678,29.24457593688363,-24.18787019720008,51.48254108875756,-0.02641060178816179,0.19470295857988112,-4.172906469915013,0.05691821893491123,-63.41912337365981,67.44970414201184,0.004276627218935583,-0.19643372492840597,1.7396449704142025,8.431952662721883,26.518222712163265,316.7639484911244,3.540045111398536,0.0714035502958576,25.507073806219108,0.22024727810650888,572.9107258875478,74.89349112426032,1.4124069526627205,0.14713972125978653,-6.823964497041421,1.9986850756081505,-13.3932942842963,328.89879872781074,-0.7555126319221215,1.2730646449704146,11.6512974732348,0.9195037914201177,-280.84199739622164,-174.06508875739652,-0.06570547337278129,0.06355941838720514,-3.4127218934911236,10.243261012491788,-13.285646946715987,-763.6721934142008,-5.9681459149969385,-0.02252855029585829,-9.607949610798613,-0.03337733579881656,-301.32686252882854,-104.13609467455622,-1.4407630177514783,-0.22631325443204986,-4.378698224852071,-43.301775147929,-12.61948126608056,-476.21792292899397,-2.5686598778608998,-1.3225091715976331,-13.932183992013051,-1.0025084556213013,-400.1728619214849,-57.22485207100591,-1.829107544378697,-0.016249422478453703,-3.8121301775147933,-65.91255752794216,2.504788505418105,-262.9978795147929,1.016542929110616,-1.730988313609467,-32.25525158075017,-1.1574598121301767,-28.9415146741163,-64.71005917159763,-0.24216775147928937,0.01638689891848217,-9.775147928994084,-21.356344510190663,-7.276036075466079,-319.84660991715975,-3.1117226447150235,-0.3115754437869819,-1.4858807964221088,-0.10048423668639044,-661.5693273420414,49.24260355029587,-0.22988431952662752,0.04662635865692603,7.1449704142011825,4.627876397107171,12.044855482201001,224.7016794319521,2.5243984837798474,-0.18418431952662692,-5.603834384461173,-0.1340733934911243,315.8176401667049,0.705548048158227,0.5515303378912289,0.43641446656887856,0.2863223057480289,0.2802627937178119,0.1547495500619998,0.17416113693297147,0.08849402973727431,0.11265503292712475,0.04707478832298948,0.07420596922171382,0.026758102606783848,0.048750346114592585,0.01543862090784725,0.030590579413280146,0.00839282026836253,16.002003909695468,5.763705233859946,3.607584431779498,2.23099916618806,0.549663328445035,-0.4821373710362777,3.248430899219235,0.972949872486239,7.004118532716059,0.6606597124422845,14.595905040160947,10.337686959565367,32.060998884837815,11.786151418477672,2.916574242099451,0.6691320074385352,3.553083846031499,2.2846638607244345,8.001935742641832,0.6282945951137657,3.7569119407265514,2.4831175706092017,24.43423512355208,14.651588968782608,0.3927609868582979,0.7701005663728988,0.8657421199031707,0.8807389677411542,0.8807389677411542,0.8807389677411542,1.6545553051955606,764.8623146411958,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.685857458530279,0.750375961704882,0.25980336546782556,0.18288028854474891,0.18288028854474891,0.18288028854474891,47.06077992719986,944.7672898673272,76.21914806915763,36.33720345643566,74.90605726496932,,8.0,273.0,4.923311048817671,10.114318268765572,5.817862777835028,21.215797895722474,11.761884949391115,18.981960224293623,11.614771630468544,0.0,24.91989260473604,0.0,8.8,29.0,14.5,1.0,14.5,0.0,0.03684210526315786,0.0,0.3258345428156747,0.0625641025641025,-0.2632704402515722,0.03210526315789475,0.2223798882681563,0.0,0.7692307692307694,0.9421052631578947,0.4433962264150947,0.7066666666666669,0.9099999999999999,11.126424362640474,0.24950976442664796,0.507509764426648,18.462119673505157,5.763325899872733,3.401377898073715,29.58854403614563,9.164703797946448,0.49162011173184367,0.13257575757575754,0.0,0.37499999999999994,0.1111111111111111,0.44760515648217225,-0.9416279748708342,-0.1071737918688929,-0.03621646057195516,-0.09416279748708344,0.5523948435178277,1.1620742752803848,0.06254249172535871,0.04469516443386096,0.07262964220502405,-2.745563286271154,0.635358309990663,0.6395226204864808,1.240615654913469,0.6433520290333223,0.4422870199481662,1.552536258829666,0.6236875482853221,0.8623758470744298,0.5981860959069155,0.5513201810837832,0.6514183550950474,0.822417319897841,0.7563378886908299,0.8104911529125579,1.177214847122387,0.9552802855343272,0.7783801976610525,0.8036948319227792,0.738924221595995,0.6797358524414681,0.7819664300467787,0.4435264566545964,0.7328213652760887,0.5169574709336133,1.0552075768579037,0.5503422031161072,0.7671933533017588,1.2176032845778806,0.7908611263820169,1.279144955354505,1.022707460016494,1.369060106525164,0.5264097833325676,0.5660692788567812,0.5235739918661881,1.1366530264275223,2.0441495155982015,0.9101197990096299,0.8715794318402732,1.00609306667977,0.9477566876820323,1.2496432144872647,1.9776600343372341,2.1146980316494632,0.8938713858841423,0.9658931814036177,0.8745066328239094,1.2560206902688578,0.8769242346061231,1.1326264619591777,1.114840348531114,1.28388233864106,1.0934696985040941,1.1179080524511542,0.8986845473290307,0.9527157753974778,1.1337419560476125,1.0643263972953896,1.1939071427028956,1.1299633039460348,0.7245275371130365,1.378984938953656,1.2068986507979675,1.152048982222461,1.3392429075520667,0.82584203536016,0.7567908831057046,0.5177986462322975,1.3974032761693427,1.5609939631210168,1.439422289921113,0.870152866564384,0.7445703976034859,1.0288796137652576,0.884864200904043,1.1633949191685913,1.0276293636613523,0.9713995849818006,0.7899738690734399,0.8599723687870579,1.0519251581898112,0.9233380057679371,1.0122722419554882,1.295953520593712,0.9345363962578496,1.4903729086699167,0.8204821241540702,0.529819318027442,1.454317983378068,0.38305242505722664,0.9796816947761322,0.5004703559304562,1.5542292844224024,1.7725119825084423,1.5102256422828464,1.0220635479538405,3.5,0.0,2.666666666666668,1.3819444444444444,0.9783333333333335,0.42694444444444446,0.3542403628117914,0.23348922902494332,0.10331632653061223,0.0,4243.249227527065,4428.001172844347,2071.237118117121,1998.5596674432006,10.133373834528644,0.4618805311085908,5.452965745914657,0.858323398073889,1.0,0.1111111111111111,2.0145822596108127,3.9500637564362098,4.440636352673266,4.517559429596343,4.517559429596343,4.517559429596343,0.16666666666666669,0.0,0.08888888888888893,0.04935515873015872,0.03913333333333333,0.020330687830687828,0.016101834673263243,0.012971623834719073,0.01721938775510204,0.0,0.4106675817128198,13.959183673469388,5.78,2.741225461035098,109.81807397196779,1.0,3.893744849993796,73.06198530008034,,41.572754261456474,52.31430326646456,52.67467666575739,41.57812202635545,70.1932626604646,52.38103088303898,51.8738038526392,65.3847310994604,0.03402194211017736,0.038817831259159,-0.2698374079138414,0.35103926096997673,0.21833523128877722,-0.41764092919004847,0.03788229617431063,-0.003389114820001675,0.04728027899629258,-0.05255818030886369,0.020152971468920207,-0.059289064663046905,0.1411046741929095,0.0005817830856681039,-0.11507570465714598,0.061725803065295036,0.040060097955919784,0.2913769497076632,0.1483260471717769,0.2890827228716477,0.011033991390392399,0.2044408431883564,0.04962536259586638,0.34083695158717336,0.15319535221496,0.18787098157912724,0.08428255302909458,-0.23674621503720814,0.00928471076904281,-0.1438925645859832,0.15058583630967243,-0.06032470864569971,0.19235498890081348,0.09131065915419495,0.2025754582950527,-0.1633660976629739,-0.3409006628656192,-0.008367891917421905,0.034857988621272706,-0.11336052282443122,0.04555928555554259,-0.13666216757675761,-0.3347676404869242,-0.4562549524129251,-0.0032591241104756048,-0.07209291065376755,-0.00704043721129876,-0.1678233505788983,-0.2522503153308107,-0.22694537009269528,-0.15351353080999033,-0.17989546614804913,-0.23820925320447905,-0.1605540857865573,-0.25820015081814923,-0.24287847220556752,-0.23663588638358787,-0.12929904158986255,-0.2615473157819781,-0.2756617014472385,-0.12249835334650655,-0.25461451428920906,-0.009740690447985216,-0.1384070035984747,-0.32043225897183486,0.028162166473931865,-0.1260138101461765,0.08494215698346619,-0.2737103319660386,-0.2645402009807724,-0.26685987908156905,-0.017618348515011022,-0.14891067538126362,-0.03623837289096079,0.010559833017292504,-0.38152424942263286,-0.1116100879604178,-0.0879423988066055,-0.16474646794219497,-0.27951615002449187,-0.05296253232443213,-0.013100373556226669,-0.024904840577196587,-0.4329400530773222,0.13331410995770862,-0.04047089449797538,0.035348651459914136,0.3280804238554544,0.02845373993467648,0.17127190642513276,0.13616382823842943,0.2667749274287109,-0.036833182766527,-0.05812541622010275,-0.03909394560311685,0.24314753037272488,0.5436901865014462,4.658444514245644,4.508797713853318,24.367517630595593,44.523937192496184,49.86451129258006,49.94204975411853,49.94204975411853,49.94204975411853,38.847468720792264,18.997431778086163,14.351327724006385,3.4219745021565604,0.0,19.850036942706097,2519.076083363794,2336.7106051599926,753.3090537623166,63.0,30.0,41.0,54.0,59.0,62.0,65.0,71.0,66.0,277.0381934640002,21.0,4.634728988229636,5.501258210544727,6.391917113392602,7.275864600546533,8.169336395928386,9.057771773331575,9.951563175767692,10.841637618763176,11.735324739379084,0.9102564102564104,1.0589230769230769,1.1472115820114097,0.8878463972128112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7347201980654078,1.042081447963801,1.057216090537285,0.7237998168125382,3.0,4.0,1.0,0.0,0.0,2.0,3.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,19.665396437504135,16.869980771050045,10.673137199436969,6.3273200747645415,0.0,0.0,14.951935562841626,0.0,0.0,0.0,21.669174519155995,7.04767198267719,6.3273200747645415,201.0183288010007,-422.88271062030276,-48.131475298607754,-16.264719639242415,-42.28827106203028,248.07910872820057,521.8845792470245,28.087672770549872,20.07248381719325,32.61778620293903,0.5,0.6059174763635021,0.1700463921577107,207.93729130470825,0.18816261883353047,29.5037296535035,0.394082523636498,4.0,0.14285714285714285,0.42859442529081737,0.8403604754659768,0.944727859296838,0.9610929403394043,0.9610929403394043,0.9610929403394043,1.1457999999999997,,2.1250000000000004,1.8465126745951226,1.8361149746903451,2.1213911100056384,-5.367723324916547,1.6573592411260711,1.5501866563820934,-2.875682478648585,65.66910000000001,4.923311048817671,0.0,29.486992252527394,7.04767198267719,10.051919957338482,0.0,29.096278493059202,0.0,0.0,3.7612001156935624,0.0,5.093750200806762,3.044522437723423,6.61338421837956,5.351858133476067,8.222285073872717,7.40184157874383,9.878836189094999,23.666666666666668,4.26446696271101,15.865667831947594,2.912283163265306,0.0,0.0,1.1577031368102801,0.7709051398337121,1.5764984882842024,27.532,0.0,10.902370480599647,0.0,-0.5201606198034772,0.0,0.0,0.0,0.0,29.827501132296653,0.0,5.817862777835028,0.0,34.41030330134507,7.04767198267719,10.114318268765572,0.0,29.033880181632107,0.0,11.16387793838399,0.0,23.084006327533093,19.102725149700603,24.46901211198691,146.12397060016067,,83.06782264138587,104.43423677770858,105.15607807102107,83.08041349738349,141.58187127760476,104.587602898591,103.58443016250132,131.16991516230996,24.46901211198691,146.1239706001607,,81.39199919629299,102.80227271463457,103.56388597226663,81.40734367685668,145.7542486458458,103.11264008118559,102.19855558334658,133.64514467756933,4.779116679820424,107.58150044382933,,59.4348684707042,80.85036512733807,82.12291732498625,59.43695899666754,96.36080181302519,80.43208359409502,79.0118851670095,93.73749990137523,1.2878427427361532,7.6907352947452985,,4.3719906653360985,5.496538777774136,5.534530424790582,4.372653341967552,7.451677435663409,5.5046106788732105,5.451812113815859,6.903679745384735,2.4411864703101145,73.06198530008034,,41.572754261456474,52.31430326646456,52.67467666575739,41.57812202635545,70.1932626604646,52.38103088303898,51.8738038526392,65.3847310994604,27.094117647058827,0.0,1.6881727135298563,0.0,0.0,0.0,0.0,27.48761835396941,0.0,0.0,0.0,1.1463888888888887,0.0,0.0,0.0,0.0,0.0,18.818795237125993,272.1159859890092,52.37913874988113,102.70165766734145,115.45654516950492,117.45654516950492,117.45654516950492,117.45654516950492,551.0,113.55940261588341,176.98145154019213,68.36767794779092,140.72,115.41999999999999,1.0,8.513869706001797,5.392317422778761,4.072583107879186,4.306235510486437,,4.293270440181403,4.31922057902313,4.320865914891825,4.293223251764945,4.240196599425685,4.317030394678101,4.314452659239472,4.280292458990061,0.21434647936206244,0.22664397423612828,,0.22596160211481067,0.22732739889595424,0.22741399552062236,0.22595911851394448,0.22316824207503605,0.22721212603568952,0.2270764557494459,0.22527855047316112,2.0461313545495035,2.1019179771828935,,2.098902669047124,2.1049288506280694,2.105309711604344,2.0988916777349185,2.0864635221303853,2.104421643415437,2.1038243565994494,2.095875224971341,172.9399999999999,99.20263400404515,98.26173824820947,,99.42446961865605,96.74429161270606,96.53170431608669,99.42930289015945,103.58487579501846,96.9878832870322,97.26783509935794,100.52791716492716,5.221191263370797,5.171670434116288,,5.232866822034529,5.091804821721372,5.080616016636141,5.233121204745234,5.451835568158867,5.10462543615959,5.11935974207147,5.290943008680377,5.2390184525708445,5.229488603049622,,5.241252142765182,5.213925214922575,5.211725382694799,5.241300754078344,5.2822452188061355,5.216439942306625,5.219322246194135,5.252289357832638,1.5764984882842024,29.16016085600907,11.868851962081129,1.1577031368102801,-0.19557634164777005,0.0,4.26446696271101,0.0,1.6881727135298563,189.0625390463737,90.27681636093186,-189.9155417149807,-21.61572222110479,-7.304443912114643,-18.991554171498077,111.41169203436299,234.37702722584407,12.614101867412668,9.01450104714785,14.648564201615255,676.0,28.0,1.3106172175260458,0.6099382605541814,0.0,0.0,0.42394612739640186,0.16503404262485155,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.061142374677876435,0.439238078985758,0.12366155331722818,0.6608761682361742,0.17037328419152245,13.405412915006313,10.479076419933348,9.16470379794645,6.012768420708607,8.407883811534356,4.642486501859994,7.140606614251831,3.628255219228247,6.083371778064737,2.542038569441432,4.378152184081116,1.578728053800247,3.0225214591047402,0.9571944962865295,1.9883876618632095,0.5455333174435645,3.285475187174098,1.489455887353677,5.234699488894033,1.9534924728278555,7.371766485428704,2.2910601879926777,64.59771149427334,34.56079248162662,26.415434431333587,26.207708299168893,26.207708299168893,26.207708299168893,102.0,122.0,31.901550999999998,17.488449,0.5769230769230769,99.1,6.027777777777778,4.1388888888888875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,15.0,26.0,0.0,0.0,28.0,15.0,1.0,7.0,21.0,16.0,21.0,12.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,8.0,1.0,3.0,19.0,10.0,0.0,7.0,2.0,0.0,3.0,3.0,1.0,0.0,0.0,3.0,3.0,3.417726683613366,7.214748704582066,4.085976312551584,4.7318028369214575,5.346512115397705,5.708355336501335,6.029971363670798,6.378227203754532,6.802294931952436,6.902573910094035 +137654606,CC[C@H]1OC(=O)[C@H](C)[C@@H](O[C@H]2C[C@@](C)(OC)[C@@H](O)[C@H](C)O2)C[C@@H](O[C@@H]2O[C@H](C)C[C@H](N(C)C)[C@H]2O)[C@](C)(O)C[C@@H](C)[C@@H]2N[C@@H](COCCOC)O[C@H]([C@H]2C)[C@]1(C)O,0,19.142857142857142,6.123607518796993,2.827067669172932,5.669172932330827,167.45194195780394,74.94732283458643,1.199701780214466,6.154857894736841,3.724885129490392,7.722494105263156,174.75681783772623,21.551470588235293,6.379992647058824,3.5441176470588234,4.830882352941177,148.62269635574853,79.52679614705883,1.5527118401029407,6.499014705882351,2.7080269607843133,7.848859235294117,225.6006747727355,17.748091603053435,6.339259541984731,3.2557251908396947,3.7251908396946565,159.56407267863193,64.4077400076336,1.2571103094958127,6.405478625954198,2.620812128922816,7.894620122137405,180.5190711463021,16.38544474393531,6.399185983827493,2.870619946091644,3.274932614555256,160.31372055566416,57.81222722371967,1.1992534965502644,6.453016442048517,2.9711740041928705,7.967994997304583,168.2513645447667,13.536437246963562,6.150097165991904,2.526315789473684,2.437246963562753,163.51999972630554,46.636168273279345,1.0940621837510747,6.199303238866397,2.578356950067477,7.7667726396761125,147.2647429809074,12.874779541446209,6.064638447971783,2.4444444444444446,2.2169312169312168,163.57898964735958,44.11678991887126,1.067221870233155,6.116272663139329,2.580712326082697,7.693067654320988,141.8207062655053,12.75,6.100612341772152,2.4319620253164556,2.3860759493670884,165.43440062806502,43.74336773101266,1.0493363569194065,6.1418525316455685,2.5838937236286914,7.736985632911393,139.70709581385435,13.105105105105105,6.038812312312311,2.4264264264264264,2.3483483483483485,162.5799401330462,45.12311205555556,1.0873832809910329,6.096001951951951,2.5696634134134144,7.659532894894893,144.13960563807078,11.85219707057257,6.045765645805595,2.2210386151797605,2.1105193075898803,166.28473670601767,40.0173785725699,0.9973823670106098,6.084384687083889,2.562768160970558,7.693880916111851,130.32754076434748,7.796596755045507,0.15826037650517263,0.020671480434531576,0.6553225168183616,3.796596755045509,1.2019666681879386,36.836752339872234,0.20609351882400742,0.14719889196675898,1.2849471736986575,0.10315084764542934,46.774026264043805,0.40237493889522646,-0.003536858150462302,-0.008941921583376183,0.2870702297539516,1.1794647221769592,-0.24814902653494345,1.8676845020118908,-0.02732894734692649,-0.0003630173537557771,-0.1908854261926377,-0.006046637119113635,-1.522596726365976,0.8356135416886938,0.0007533295156045192,-0.0020934121005085457,-0.022911336195047642,0.09274491975217278,0.0475298375702776,3.997757315841478,0.011072260122776427,0.0032336311348883456,0.0010445231005923625,-0.0021088106827938393,4.9614874900593415,-0.5049241773749167,0.000757879377120742,0.0020786133870695344,-0.03807184296391425,-0.1749482942709305,-0.04760468359699804,-2.432709021954798,-0.010219331691019433,-0.0007800382286399847,0.02680972866506838,0.00223817774824341,-3.488900548874584,-0.3327295972725335,-0.006899035906712942,-0.0006599062473567278,-0.03025783081184741,-0.19433198380566802,0.017986885735001634,-1.5536827587483732,-0.000915884783171153,-0.006672714681440383,-0.070160354254636,-0.003974497762625221,-0.9490227523867881,-0.1777347853063457,-0.006337710050676651,-0.0003869221713799553,0.00020519134092542314,-0.1436681372046099,-0.06810749392991389,-0.8364471969753108,-0.00946170804989865,-0.005407041971400202,-0.024036501220872968,-0.004917315296037385,-1.4857532691428694,0.010983905466531156,-0.0019222614390262925,0.00041287007906175993,0.005439356218661253,-0.030655001928538865,0.12723514596204877,0.10626008623654805,0.018177002709387133,-0.002202406290543104,-0.006836119427959822,-0.00045215444089907926,2.4929689740668617,-0.04808132231954928,0.0017142198957395018,-0.0002003174596314691,-0.02866578489847186,0.0499114072521275,-0.12160064199715953,-0.2814619906658863,-0.017812736364416222,0.0019014083335413198,0.002192644691160738,0.0005116793025712583,-2.5769918122229907,-0.09791930242594364,-0.0006139762168353314,-9.512021410136345e-05,-0.018457384613682206,-0.032883210198036944,0.02085234127189347,-0.463721743073983,0.00017551824428876247,-0.0008494701432254443,-0.007680410474574391,-0.00011835034358622451,-0.3126477506407377,,,0.4555555555555555,0.6754385964912281,0.02631578947368421,0.0,0.6491228070175439,-0.6228070175438597,2.1286728662908962,0.031974867132511145,0.038009954851809385,0.7819242678289249,0.11659007179782907,0.34993003584813515,2.910597134119821,0.46652010764596424,1.985783688981596,1.4443266331331002,0.07161707125439398,0.4698399845941012,0.0,0.5414570558484951,6.169395903097761,2546.0,814.4398,376.0,754.0,22271.108280387925,9967.993936999996,159.560336768524,818.5960999999999,495.4097222222222,1027.0917159999997,23242.656772417587,2931.0,867.6790000000001,482.0,657.0,20212.6867043818,10815.644276,211.16881025399994,883.8659999999996,368.29166666666663,1067.4448559999998,30681.691769092027,4650.0,1660.8859999999995,853.0,976.0,41805.78704180157,16874.827882000005,329.3629010879029,1678.2354,686.6527777777777,2068.390472,47295.996640331156,6079.0,2374.098,1065.0,1215.0,59476.3903261514,21448.336299999995,444.9230472201481,2394.0690999999997,1102.305555555555,2956.1261440000003,62421.256246108445,6687.0,3038.1480000000006,1248.0,1204.0,80778.87986479494,23038.267126999996,540.4667187730308,3062.4558,1273.7083333333337,3836.7856839999995,72748.78303256826,7300.0,3438.650000000001,1386.0,1257.0,92749.28713005288,25014.219884000006,605.114800422199,3467.9265999999993,1463.2638888888891,4361.96936,80412.3404525415,8058.0,3855.587,1537.0,1508.0,104554.54119693709,27645.808406000004,663.1805775730649,3881.6507999999994,1633.020833333333,4889.774920000001,88294.88455435596,8728.0,4021.8489999999993,1616.0,1564.0,108278.24012860877,30051.992629000004,724.1972651400279,4059.9372999999996,1711.395833333334,5101.248907999999,95996.97735495513,8901.0,4540.370000000002,1668.0,1585.0,124879.83726621927,30053.051308,749.034157624968,4569.372900000001,1924.638888888889,5778.104568000001,97875.98311402494,1036.9473684210525,21.048630075187962,2.7493068977926995,87.1578947368421,504.94736842105266,159.86156686899585,4899.288061203008,27.410438003592986,19.577452631578943,170.89797410192145,13.719062736842101,6220.945493117826,54.7229916897508,-0.48101270846287303,-1.2161013353391608,39.041551246537416,160.40720221606645,-33.74826760875231,254.00509227361715,-3.7167368391820026,-0.04937036011078569,-25.96041796219873,-0.8223426481994544,-207.07315478577274,218.93074792243777,0.19737233308838403,-0.548473970333239,-6.002770083102482,24.299168975069268,12.452817443412732,1047.4124167504672,2.9009321521674236,0.8472113573407465,0.27366505235519895,-0.5525083988919859,1299.9097223955475,-187.3268698060941,0.2811732489117953,0.7711655666027973,-14.124653739612185,-64.90581717451522,-17.661337614486275,-902.5350471452301,-3.7913720573682097,-0.28939418282543433,9.94640933474037,0.8303639445983051,-1294.3821036324707,-164.36842105263153,-3.4081237379161933,-0.32599368619422353,-14.947368421052621,-96.0,8.885521553090808,-767.5192828216964,-0.45244708288654956,-3.296321052631549,-34.65921500179019,-1.9634018947368594,-468.81723967907334,-100.77562326869801,-3.593481598733661,-0.21938487117243466,0.11634349030471491,-81.45983379501382,-38.61694905826118,-474.2655606850012,-5.364788464292535,-3.0657927977839146,-13.628696192234973,-2.788117772853197,-842.4221036040069,6.941828254847691,-1.2148692294646168,0.26093388996703226,3.4376731301939123,-19.373961218836563,80.41261224801482,67.15637450149836,11.487865712332669,-1.3919207756232417,-4.320427478470608,-0.2857616066482181,1575.5563916102565,-32.02216066481982,1.1416704505625082,-0.13341142811455842,-19.091412742382257,33.240997229916914,-80.98602757010825,-187.45368578348027,-11.863282418701203,1.266337950138519,1.4603013643130516,0.340778415512458,-1716.276546940512,-73.53739612188367,-0.4610961388433339,-0.07143528079012396,-13.861495844875337,-24.695290858725745,15.660108295191996,-348.25502904856125,0.13181420146086062,-0.6379520775623087,-5.767988266405368,-0.08888110803325461,-234.79846073119398,0.7477232790661597,0.6440878848888562,0.44319410226366596,0.34874778746715235,0.28702232442099745,0.20105864712454774,0.1806588112454984,0.11183999727495794,0.11251638147367608,0.06456627496632455,0.06968819267756636,0.03402071282001719,0.04295445994431788,0.019394375930386818,0.027226907153061808,0.010579854817305789,8.03305865217648,5.776067875356663,3.558001597139379,2.273803020244655,0.4364356849230952,-0.49038897253345987,4.029177628146309,0.9775645319468167,6.02987366862854,0.9874907886359798,14.544880629332722,11.037338035031068,16.020872889745892,11.78843301841206,1.9245162155407063,0.7412708506638166,3.504044175430406,2.3232085868553196,7.0082832113057165,1.1134889397775827,3.7169528283187376,2.519137771105102,20.82373351916172,14.700307770932428,0.19972439506528725,0.40048353032659956,0.7049153949978977,0.8583066938938767,0.9030767672927968,0.9030767672927968,1.787459388506603,1259.7956685753365,0.0,1.0,15.0,0.0,0.0,15.0,0.0,6.0,0.0,5.637632271577898,4.212637488545692,2.0517703460333196,0.9629939852226732,0.6452145678806405,0.6452145678806405,615.5784887810804,6457.186232901917,78.77238363427153,48.55027242783396,92.86085472517647,,20.0,1764.0,90.22608311070772,25.220646763434644,55.89280697165795,26.055407174877857,0.0,7.109797541277533,41.72848353973065,46.69020249496735,5.316788604006331,42.63176658420044,25.96666666666666,38.5,1.5,0.0,37.0,0.0,0.044444444444444536,-35.5,0.1199635452267036,0.0,-0.1199635452267036,0.048575740426334946,0.20913933895009762,0.0,0.5581453634085201,0.9023391812865504,0.43818181818181645,0.5581453634085201,0.8537634408602155,121.33435337858108,1.8225674265531353,2.166567426553135,44.56968326624872,6.645634092476257,19.946012043343703,165.9040366448298,26.59164613581996,0.5048606610499023,0.31450577663671375,0.0577663671373556,0.34274711168164324,0.975609756097561,0.20384156536874468,-1.26650446255049,-0.03565273384136431,-0.009522589943988647,-0.04085498266291903,0.7961584346312555,4.946676152793651,0.04014298109823022,0.037193053780403385,0.04849682502738872,-3.4875764392469684,0.9846775782691517,0.8883742883936308,1.4618313935362344,1.152573529411765,0.6621831659493065,1.7317941585379975,0.9954230792588509,1.6052899007718726,0.8669080594894246,0.9897044203185508,0.9382454360699921,1.3522726380067576,0.964442715545599,1.125720847140581,1.2926223171632771,1.6965787144595643,1.2072908163021734,1.1887296846796989,0.9633841163113784,1.1194975089848882,1.0939998649162241,0.8631866953459851,1.1694205256579224,1.0045450820748683,1.1624832647964103,1.2405254447777,1.2198107236851408,1.4144790812141101,1.270074456912929,1.221613010628835,1.1611816164267483,1.1909595141191807,1.2285952871589687,1.1479161815471952,1.2604334176297953,1.1584689589378336,1.0804760157110176,1.1404441889331196,1.1978507661229096,1.2309085841694538,1.1520180882282194,1.0680604902227386,1.0790664402743542,1.067421510553874,1.1328428754320943,1.1310556830593568,1.1504288077544853,1.0566261888671726,1.0375693064760165,1.0724827716129421,1.0979863483843804,1.1512281777982263,1.0770046976009033,1.1174510983958366,1.0376581996864709,1.10586734369308,1.0649272046319558,1.1286450759881868,1.092473674463041,1.0678394212796987,1.0295525160331986,1.1159844110550703,1.0712150298735563,1.1214914694551459,1.115763610167747,0.9181107352807027,1.026242406562164,0.9253299203625016,1.1101753688395783,1.095132469194938,1.1223795828297787,0.949548840920084,1.0057587787767466,0.9577951012849817,1.0465142673830927,1.2040899595247423,0.980496443911078,1.1888958753410952,1.0090793670827807,1.1749249645192439,0.9555069417825068,1.0833797086850063,0.9706283511251281,1.1124857600743765,1.0305779821064893,1.0805184442595313,1.0737813700620977,1.0224338563075321,1.0804622396321268,0.9760260020332328,1.0289077629548589,0.9871822024099064,1.0763486841747758,1.1217855945541206,1.0872874624829623,0.993306595620439,17.5,1.1357004387307417,9.55555555555556,6.9375,5.342222222222223,3.9097222222222214,2.833469387755102,2.5538194444444446,1.8863693625598388,1.4462500000000003,14670.311999688483,17597.45624886253,5538.349140749732,4767.016055516438,20.89237814156908,0.4859389749963875,10.73995732221807,0.9452943354205323,0.0,0.975609756097561,1.417650163923292,2.8426449469554984,5.00351208946787,6.092288450278517,6.410067867620549,6.410067867620549,0.2916666666666667,0.008669468997944595,0.10617283950617287,0.06423611111111112,0.04645410628019324,0.03153001792114695,0.020532386867790596,0.017139727815063382,0.013099787239998878,0.010556569343065696,0.610057681749154,49.653333333333336,20.91358024691358,11.928994082840237,339.9836710177781,0.0,4.952357714012767,450.88409699300917,,397.23049771271167,389.1353844997541,410.06716067500395,397.383317449653,642.8694363772968,395.0459402405034,397.5926739348808,525.9584555620595,0.05160904834982425,-0.022348349148194408,-0.43257286829049557,0.4380594629156012,0.31066368073182987,-0.2064525024716767,0.05070166025440582,-0.13260459379250986,-0.0024661690648986345,-0.148555076893304,-0.05861936433036733,-0.032552184363406594,0.10717670388018118,0.0047600639669898494,-0.1012705455295555,-0.03496192425415785,0.024428435711250845,0.03954339070145152,0.1085263238994685,0.05372444599886487,0.02196776817870733,0.0008128918619944149,-0.02044394913789428,0.10607356018597319,-0.06476212548098745,0.004788813181522864,0.1005546455007269,-0.05809634490930635,-0.0460802938943758,-0.03960566033729199,-0.06604026868355668,-0.049585895516424186,-0.00529921263820475,0.020864459811135962,0.021698103305335125,-0.07459055436406972,-0.04267626090283688,-0.04359294511401249,-0.031923511692677736,-0.04617242660720919,-0.05118583730216,0.014964546198371965,-0.04217751729070484,-0.004444025160991445,-0.04533128335604076,-0.05460174214997715,-0.03853092682560552,-0.02028952451151981,-0.022796457337789854,-0.04004609486360919,-0.01871768074886423,0.0003131150474145799,-0.03784129484219817,-0.05666337988605908,-0.022706865938068522,-0.04590977971499643,-0.03673289859152772,-0.01870621743280315,-0.047671108946580464,-0.03176449384014221,0.0014088076902814047,-0.012146195285738277,0.019972932290425755,0.0083002736500948,-0.008074337072484648,0.10585580226934743,0.0028846214578349717,0.08819783762782613,-0.014962111882203977,-0.0053201560094353045,-0.0043834292322377675,0.05329814799337171,-0.0061669628211095855,0.010831642977188756,-0.0096905231468976,-0.043743018380699515,0.01314635460976925,-0.10116806498509834,-0.007640792762320439,-0.08643035679170155,0.01291727341242965,0.0017064084314449425,0.004960495374018685,-0.055094504750898034,-0.012559236485146667,-0.00387953213807288,-0.004601519199489251,-0.028165344757714338,-0.008661233288559448,0.01734851874331095,-0.012588562064198283,0.0008516436872459121,-0.005770900391133888,-0.005977218855205312,-0.0011473521186470704,-0.0066842171951546694,3.9677691161772772,22.74580988746513,26.5517093800772,13.496405026030907,28.781511408384333,38.913493040250046,42.19332568101713,42.73907590512648,42.73907590512648,113.18967027195097,82.32661808858671,4.082173061500457,26.78087912186377,0.0,30.863052183364225,24235.43114955848,19044.346260977996,9054.85045132132,358.0,90.0,117.0,146.0,182.0,207.0,240.0,271.0,316.0,820.5296551120022,60.0,5.707110264748875,6.5722825426940075,7.484930283289661,8.37216741936598,9.286838342948908,10.182973629388371,11.0988483800135,11.99965714690674,12.916212135590888,0.5614035087719298,0.9769624060150378,1.1450668277044131,0.5139768495420551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5968856332447887,0.9611971104231166,1.005213324644459,0.5497185799834412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,13.0,0.0,0.0,0.0,4.0,8.0,1.0,9.0,0.0,16.0,1.0,3.0,0.0,0.0,67.95778589441373,30.14085114496347,12.580053458670426,0.0,0.0,10.111325788078153,0.0,0.0,0.0,20.771211599071872,80.81813807843754,45.06282603286439,67.46048550040902,211.84688343706378,-1316.2429495922345,-37.052897119589446,-9.896563530768681,-42.459449986846266,827.4253722181442,5140.943283309683,41.71948651468209,38.65370889706528,50.40140473833021,0.5,0.8642759500891664,0.07386502855705263,40.8609391066338,0.050083403433152825,26.885828770840963,0.13572404991083345,10.0,0.2,0.20093457304981518,0.402910156034535,0.7091866463475509,0.8635073798921185,0.9085487258973487,0.9085487258973487,1.9557000000000087,,3.7857142857142856,4.371335504885993,2.8743777732115126,3.7747184643460874,-16.188483337111762,3.9444614443084456,3.759453189289304,-6.224571949299216,208.97689999999918,67.85241334763508,0.0,10.216698334856808,17.75371813848418,190.94426273448437,48.1355849414482,0.0,0.0,0.0,4.795790545596741,0.0,6.175867270105761,0.0,7.740229524763182,0.0,9.392745258631441,0.0,11.09378223642709,74.66666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129.93600000000004,0.0,14.360765770180368,0.0,0.0,0.0,0.0,0.0,-0.6368770102829788,152.29388808468696,5.316788604006331,0.0,0.0,175.95742936225207,47.42630376827226,17.75371813848418,94.41774291184565,0.0,0.0,0.0,0.0,68.35892098909333,79.3857892215569,69.53910379121639,903.8095225034585,,795.0506420218285,778.7539990769228,821.1529189129177,795.3591490910081,1288.4071304687013,790.6608923585786,795.7792263563365,1052.9059620848193,69.53910379121639,903.8095225034585,,791.8069555521437,775.0348838729369,818.646681148203,792.124389491345,1302.052197852325,787.2862663739256,792.5571707153406,1058.6937219675012,5.005462505661467,598.5463173930932,,528.7121349816874,518.189624880051,545.6045865630254,528.9106614764922,836.3699543953652,525.8686050972028,529.1834052649642,692.4387964526562,1.219984277038884,15.856307412341378,,13.948256877575938,13.662350860998647,14.406191559875749,13.953669282298389,22.603633867871952,13.871243725589098,13.961039058883097,18.472034422540688,2.502731252830733,450.88409699300917,,397.23049771271167,389.1353844997541,410.06716067500395,397.383317449653,642.8694363772968,395.0459402405034,397.5926739348808,525.9584555620595,127.83921568627451,0.0,23.178038638546127,0.0,0.0,0.0,47.59452677850802,133.69337217771306,2.101020657151779,3.574043867448345,55.29479783946923,0.0,-11.424035371272142,1.9341813351600166,-4.2264625049087705,0.0,0.0,73.11257113779769,898.2180161577157,188.54747180179783,378.0717779450813,665.4671078992268,810.2743638870427,852.539026393533,852.539026393533,2044.0,200.62102014494693,141.0542394974919,96.1984148355242,196.32999999999998,196.32999999999998,1.0,7.659171367666058,6.906890595608519,5.815064456994605,7.417695495464052,,7.42962309746761,7.431883861900448,7.427423946041607,7.429585616357875,7.381105405310211,7.430308445131854,7.429514573792847,7.399895338606116,0.10201867468411588,0.13013500869235178,,0.1303442648678528,0.13038392740176225,0.13030568326388783,0.13034360730452413,0.12949307728614406,0.13035628851108516,0.13034236094373416,0.1298227252387038,3.5009180453575413,3.7443346036536593,,3.745941305159364,3.746245549467355,3.745645263632993,3.7459362603268356,3.7393895861537674,3.7460335461852083,3.7459266981643737,3.741932031519003,642.9500000000031,1192.5091999048316,492.23916010978394,,489.5291868244661,489.0757219782967,489.954206624367,489.53670099367196,499.3768085870883,489.39216824592694,489.55086872456934,495.4901312811936,20.9212140334181,8.63577473876814,,8.58823134779765,8.580275824180644,8.59568783551521,8.588363175327578,8.760996641878743,8.585827513086437,8.588611732009989,8.692809320722695,8.824281112378133,7.939430871009671,,7.933910260824057,7.932983502998613,7.934778105709266,7.933925610494184,7.953827113055788,7.933630322954228,7.9339545511759715,7.946013611724404,55.29479783946923,16.294947105340384,51.168570645956365,-4.2264625049087705,-2.15239247058303,-0.5751666717683055,-8.14832076844851,17.20123419649718,6.892792628445457,810.6862569034894,220.16658840316316,-1367.9347792129854,-38.508047968036074,-10.285223903857036,-44.1269283617092,859.9202329715006,5342.839722240744,43.35790485489068,40.171727234892806,52.38078159059551,12362.0,108.0,6.257151876472842,3.7356513168267296,0.5151283791960046,0.24915602550085397,2.1363034476841065,0.8375439271593152,0.3367701210266096,0.08695367134908767,0.0,0.0,0.0,0.0,0.0,0.0,0.15922363354357993,0.0825332533140827,0.5495408435276252,0.22766973488774606,42.6202269067711,36.7130094386648,26.591646135819957,20.92486724802914,25.83200919788977,18.095278241209297,21.137080915723313,13.085279681170078,16.427391695156707,9.426676145083386,12.683251067317078,6.191769733243128,8.891573208473801,4.014635817590071,6.534457716734834,2.5391651561533894,13.819819591639764,7.091226192430579,20.909634989128683,9.917034393554015,32.08940073129487,12.972516426790792,203.3751083080098,99.15580007112979,49.97541414521207,31.711369278956294,28.042493349694166,28.042493349694166,300.0,357.0,132.57426800000005,95.01573200000017,0.23308270676691728,408.16,24.6875,12.45833333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0,0.0,0.0,133.0,0.0,2.0,136.0,0.0,1.0,1.0,135.0,1.0,60.0,135.0,0.0,0.0,2.0,41.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,76.0,16.0,5.0,4.0,57.0,16.0,0.0,2.0,14.0,0.0,4.0,12.0,0.0,0.0,0.0,0.0,0.0,4.127134385045092,5.929589143389895,4.532599493153256,4.795790545596741,5.017279836814924,5.241747015059643,5.365976015021851,5.521460917862246,5.648974238161206,5.805134968916488 +27350,CC(=O)O[C@H]1C[C@@H]2CC[C@@H]3[C@H](CC[C@@]4(C)[C@H]3C[C@H]([N+]3(C)CCCCC3)[C@@H]4OC(C)=O)[C@@]2(C)C[C@@H]1[N+]1(C)CCCCC1,0,16.574257425742573,5.712869306930697,2.9504950495049505,3.8217821782178216,165.31828567757367,64.61853640594062,1.280010794959802,5.780248514851488,2.6809680968096807,7.3350102574257425,178.61690773646683,20.150943396226417,6.074528301886794,3.830188679245283,3.7735849056603774,145.98206450928308,73.97892171698113,1.6866933830188677,6.220075471698111,2.127620545073375,7.535127622641508,234.16224433699082,16.25229357798165,5.9564862385321105,3.5596330275229358,2.6192660550458715,155.83772589010826,58.42776330733945,1.4261433438610782,6.060370183486237,2.0076452599388377,7.491931027522935,192.27209191117458,13.087209302325581,5.830511627906977,3.008720930232558,1.752906976744186,157.21622524797837,44.708616406976745,1.3021817644387792,5.926143023255813,1.8290939922480618,7.411453767441858,167.16848103400267,10.685344827586206,5.633228448275863,2.5366379310344827,1.3814655172413792,160.22591864937277,35.47198675431034,1.1531066784983166,5.719168103448276,1.6969737787356316,7.263214568965518,141.6023720885131,10.003831417624522,5.620984674329501,2.3869731800766285,1.2758620689655173,164.23964293411382,33.31450030459769,1.0612243081491513,5.689402681992339,1.738159855257556,7.278265386973179,129.82458008540397,10.409181636726547,5.691375249500998,2.349301397205589,1.1976047904191616,162.45783880891,34.29919933932136,1.1092701882439104,5.76527744510978,1.9160983588378793,7.332972718562873,136.7808480543392,9.113851992409867,5.602301707779886,2.1157495256166983,0.9620493358633776,163.22330242275206,28.993327694497157,1.047772073020353,5.673278937381403,1.890430634619439,7.264400083491459,124.77215488333883,7.827111984282908,5.503530451866405,1.9764243614931238,0.8330058939096268,166.7327917658255,24.392436730844796,0.95379636772767,5.5622681728880154,1.733136869679109,7.197630302554026,110.14806828176738,6.785413194784824,0.08329087344377993,0.012086529439062802,0.6856190569552002,2.5920988138417815,1.2862344998508508,32.44661545456328,0.22246166166537984,0.08233771198902062,0.8275958783997217,0.04853854328007056,50.13396998350815,0.6597577374027329,0.007275201654295938,-0.00562466190342221,0.3024250304724102,1.0279273397169715,-0.24262283773901344,3.088564693391135,-0.011790581282114524,0.008509588590093995,-0.008981705661692655,0.0020849994062736117,0.40099344791945774,0.6669893849226871,0.009160539036917674,-0.0006340100591604204,-0.0019965662657645497,0.12545046402178583,0.15602791100149294,3.177783223200369,0.022624777894477224,0.009057996068023662,0.1640422762414311,0.006290742395286014,5.131858634969686,-0.789385103603614,-0.006957071924093104,0.0015001960387756028,-0.05060293906434163,-0.28934150322699786,-0.004670809220146523,-3.7514540070615516,-0.010385018722612825,-0.007997428774652647,-0.04650497861206798,-0.002778521636045666,-4.040601881119522,-0.37490619580906526,-0.0015105900706151164,-6.960817286558021e-05,-0.027950057296613928,-0.03207406136653271,-0.1372150051496022,-1.8298625417303997,-0.021491471178293444,-0.0017201014564156895,-0.005443983792156948,-0.0008270638502310537,-4.189542774503923,0.34311000236247574,0.0018645986551540047,-6.741436223116566e-05,-0.04175122189583246,-0.03730195484553577,0.041132565346436153,1.648400638396017,0.009253637695563898,0.0023250151457617513,0.007026712211830422,0.0003870175863608859,2.444095460902406,-0.44773212128825396,-0.007590314166295362,-1.4325956452704956e-05,-0.0598804351888322,-0.26862694569688195,-0.003852030274964799,-2.110862632069652,-0.005637138019012827,-0.007418558217356062,-0.030273169581933213,-0.0041711302249925995,-1.9453148439101373,-0.6294960850472857,-0.005856826813310526,-0.00047430410910403797,-0.011431144805351704,-0.18811211536168548,-0.10980501269400117,-3.015478738723572,-0.019479753797431908,-0.006200069439186953,-0.0570563600266315,-0.0030212740745921636,-4.673437321770908,-0.013019255980335431,-0.002653187435493568,-0.0003818484636852496,0.016203581104283278,0.0039057767941007107,0.0020042015345742284,-0.04137326226231866,0.0025462208445920288,-0.0022867481500042143,-0.044522605453566046,-0.0018430516735425727,0.43754378028336494,,,0.47886178861788614,0.7195121951219512,0.07317073170731707,0.0,0.6463414634146342,-0.573170731707317,1.918569431768207,0.024856793063082548,0.03744215891674109,0.4472810262414929,0.08621987288658119,0.38683098191309473,2.3658504580097,0.4730508547996759,2.0577514724760935,1.7635201050457938,0.11351976486674994,0.18071160256355023,0.0,0.2942313674303001,5.667863477625561,1674.0,576.9998000000004,298.0,386.0,16697.14685343494,6526.472177000002,129.28109029094,583.8051000000003,270.77777777777777,740.836036,18040.30768138315,2136.0,643.9000000000001,406.0,400.0,15474.098837984006,7841.765702,178.78949859999997,659.3279999999997,225.52777777777777,798.7235279999999,24821.197899721028,3543.0,1298.5140000000001,776.0,571.0,33972.6242440436,12737.252401,310.89924896171505,1321.1606999999997,437.66666666666663,1633.2409639999998,41915.31603663606,4502.0,2005.696,1035.0,603.0,54082.381485304555,15379.764044000001,447.95052696694006,2038.5931999999998,629.2083333333333,2549.5400959999993,57505.957475696916,4958.0,2613.8180000000007,1177.0,641.0,74344.82625330897,16459.001854,535.041498823219,2653.6940000000004,787.395833333333,3370.1315600000003,65703.50064907008,5222.0,2934.1539999999995,1246.0,666.0,85733.09361160742,17390.169158999997,553.959088853857,2969.8682000000013,907.3194444444442,3799.2545319999995,67768.43080458087,5215.0,2851.3790000000004,1177.0,600.0,81391.37724326391,17183.898869,555.7443643101991,2888.404,959.9652777777775,3673.8193319999996,68527.20487522394,4803.0,2952.413,1115.0,507.0,86018.68037679033,15279.483695000003,552.175882481726,2989.8179999999998,996.2569444444443,3828.338843999999,65754.92562351956,3984.0,2801.2970000000005,1006.0,424.0,84866.99100880518,12415.750296000002,485.482351173384,2831.1945,882.1666666666665,3663.593823999999,56065.36675541959,685.3267326732672,8.412378217821773,1.220739473345343,69.24752475247521,261.8019801980199,129.90968448493592,3277.108160910891,22.468627828203363,8.316108910891083,83.58718371837189,4.902392871287127,5063.530968334323,69.9343201646897,0.7711713753553694,-0.5962141617627542,32.05705323007548,108.96029800999898,-25.718020800335424,327.3878574994603,-1.2498016159041396,0.9020163905499634,-0.9520608001394215,0.22100993706500285,42.50530547946252,145.40368591314578,1.9969975100480528,-0.13821419289697165,-0.43525144593667187,27.34820115674931,34.01408459832546,692.7567426576804,4.9322015809960345,1.9746431428291582,35.76121622063198,1.3713818421723512,1118.7451824233915,-271.54847563964324,-2.3932327418880277,0.5160674373388073,-17.40741103813352,-99.53347711008726,-1.606758371730404,-1290.5001784291737,-3.5724464405788114,-2.75111549848051,-15.997712642551386,-0.9558114427997091,-1389.9670471051154,-173.95647485540627,-0.700913792765414,-0.03229819220962922,-12.968826585628863,-14.882364474071178,-63.667762389415415,-849.0562193629055,-9.972042626728157,-0.7981270757768799,-2.526008479560824,-0.3837576265072089,-1943.94784736982,179.10342123321234,0.9733204979903904,-0.035190297084668476,-21.794137829624546,-19.471620429369672,21.471199110839674,860.4651332427209,4.830398877084355,1.2136579060876342,3.6679437745754804,0.20202318008038245,1275.8178305910558,-224.31379276541523,-3.8027473973139765,-0.007177304182805183,-30.000098029604935,-134.58209979413786,-1.9298671677573642,-1057.5421786668958,-2.8242061475254263,-3.7166976668953873,-15.166857960548539,-2.089736242721292,-974.6027367989788,-331.7444368199196,-3.086547730614647,-0.249958265497828,-6.024213312420348,-99.13508479560825,-57.86724168973862,-1589.1572953073223,-10.265830251246616,-3.2674365944515245,-30.068701734034804,-1.5922114373100702,-2462.9014685732686,-6.626801293990734,-1.350472404666226,-0.19436086801579205,8.247622782080189,1.9880403881972617,1.0201385810982821,-21.0589904915202,1.2960264098973426,-1.1639548083521452,-22.662006175865116,-0.9381133018331695,222.70978416423276,0.7124032081570891,0.6651856242815553,0.4216322836257979,0.38566504151938064,0.26910949771432974,0.2355786321004494,0.15808584312848856,0.14465070122457935,0.09608921859848274,0.08557639899869897,0.059494497637688444,0.05179153916923469,0.03632447924256979,0.030842295999863243,0.021981283026207166,0.01839288100972633,8.03116505483388,5.743366236370603,3.557965368803858,2.243166277419116,0.4351816807947397,-0.4879969098771405,4.03285400443325,0.9714661188573892,6.030551912312855,0.9950121662421356,14.548247207981772,11.00378363721857,16.016139947235615,11.754490687310719,1.9497796912607053,0.7402906667784962,3.5041979637265595,2.2931063030378476,7.0093667967523725,1.0821058237351047,3.71707907633084,2.489085784320837,20.856308687807655,14.69976917352921,0.18840925927605587,0.3429276504035594,0.6229207442553893,0.748178849197606,0.7826383497404705,0.8031588782232535,1.2989812116613517,1002.1320848082502,0.0,2.0,8.0,0.0,0.0,17.0,0.0,4.0,2.0,5.385528131976089,4.341773782894508,2.450451932542699,1.6043475249238393,1.371577475376049,1.2329636139899085,571.6609593244383,3514.5838851989024,49.43834894203619,34.79786024949408,54.75427926091814,,15.0,1056.0,0.0,9.589074368143644,29.56153382079708,35.25239026617688,21.30478938447665,103.22888509876245,13.847474399381248,0.0,27.94281836473563,9.473725907600098,19.633333333333333,29.5,3.0,0.0,26.5,0.0,0.021138211382113834,-23.5,0.055527322643768584,0.0,-0.055527322643768584,0.0,0.11113408393039881,0.0,0.5006600660065988,0.7943089430894305,0.44513274336283026,0.5006600660065988,0.7943089430894305,78.66134670249649,1.0191285155863845,1.5351285155863845,18.33852207590121,3.5350147883498284,15.860070258436883,96.9998687783977,19.39508504678671,0.6028659160696012,0.18675721561969438,0.09168081494057724,0.2546689303904924,0.9428571428571428,0.14927964540821861,-0.3897739120276496,-0.02195080106289255,-0.0038591476438381146,-0.016240579667818736,0.8507203545917814,3.922698669329631,0.038711152455408224,0.038838600686431975,0.05094413856272247,-7.049760167879665,1.0544481558674075,0.7849618806279628,1.652639282278761,1.0898829724669667,0.6342111534965098,1.6234457277087884,1.0638776814453372,1.4171793769409997,0.7954214394777478,0.5840698602966647,0.7673742007406773,1.2960621116709417,1.0086931834297757,0.9370638808317447,1.3963076595874349,1.815055106211616,1.1336392131228532,1.1426039911731996,1.011340182800845,1.0642451706864662,0.9347504129427239,0.3698214603910265,0.8625898085826205,1.0400028408601536,1.1830208502022934,1.0929319555873265,1.0338643396437104,1.4881734177467736,1.1942054395491313,1.1771308959478721,1.184290568587929,1.178428503000968,1.1081462755027354,0.7475411506464034,1.0487882607566965,1.1895184183227578,1.0421658807107184,0.8236208280691321,0.9471153318851195,1.1344237178665462,0.929400783497518,1.1701517037100344,1.0469972384939918,1.1661699730079742,0.8519207749909956,0.4953570611464993,0.7853848492554627,1.1400990290636823,0.935454467859832,0.9510353839904467,1.0882855022777786,1.189580121768303,1.0460217852649951,0.9553455768694381,0.9354144190884112,0.9458634708355366,0.9472302731180154,0.6984232262247606,0.9605269474320594,0.9395407746448439,1.0837379244804335,1.1458366858049083,1.0993610391208537,1.1904415361441834,1.1756382854893794,1.0316323219696244,1.0823809678920944,1.0464265074503223,1.137668847929796,1.0903744377999718,1.1546646930794917,1.0539112238836934,1.0742947110476744,1.0163120697443293,0.8690531057859973,0.8933111004878678,1.0259503202526825,1.070670374504901,1.0751622589452843,1.0917988556583473,1.0273538296945472,1.2861674597357713,1.0145969675968776,1.093357619211013,0.9434359630610413,0.928672907753645,0.7749067944491378,0.7958126331129746,0.8926346413524114,0.910491954414713,0.9431943927323347,0.9242916971131261,0.9346005167728546,1.114719921142263,0.9255497801850965,0.935893171314652,12.5,0.4603673094582186,8.000000000000004,5.076388888888889,4.766111111111111,3.163611111111111,1.9618594104308387,1.1545847505668934,0.8722442680776011,0.5381404320987657,8959.781123976705,11037.6845065076,3914.0041452347546,3325.547120302901,17.976438712805624,0.46734870845429277,9.575173297768167,0.8774008734646787,0.0,0.9428571428571428,1.2726833507757063,2.3164376998572864,4.207759550209095,5.053863957827955,5.286634007375746,5.425247868761886,0.2717391304347826,0.010961126415671872,0.10958904109589046,0.060433201058201054,0.055419896640826874,0.03476495726495726,0.022043364162144256,0.01539446334089191,0.014537404467960022,0.010551773178407166,0.6054343580597334,31.001890359168243,11.416776130606117,5.340236686390533,249.60204096883757,0.0,4.67411734594396,261.3871529223417,,244.3265018661787,241.1362291540764,242.65512276001394,244.36641066301823,318.9014482840105,243.16005356866535,244.4999113211089,287.1025878613975,0.09723177033784969,0.08734692474087917,-0.46536616915387663,0.44109776034444637,0.396561787779019,-0.1886303296693935,0.09518911757425721,-0.05300050891397891,0.10334983064903129,-0.010852767511433362,0.04295554141876548,0.007998437946393768,0.09829753410379283,0.10998250658400045,-0.05245592312970712,-0.0029120635511959083,0.048397253743523064,0.12130596016479547,0.0979388197715225,0.10170191899631109,0.11001029600180663,0.1982154340336143,0.12960303235694612,0.10236290157467759,-0.11633559828166759,-0.08352742187040481,0.12412132418484632,-0.0738062026587574,-0.11162441095297648,-0.003631382318456037,-0.11561927043869684,-0.04668228514014095,-0.09712959689381542,-0.05619285913070543,-0.05724361400822054,-0.08059608848947532,-0.05525178571250651,-0.01813632164194726,-0.00575915304856757,-0.04076616163608218,-0.012373780349444067,-0.10667961803661259,-0.05639609913375568,-0.09660752786527448,-0.020890809507131524,-0.0065780702082321755,-0.017039321626502908,-0.08356694624188142,0.05056582296656384,0.022386590247640763,-0.0055776443164310885,-0.06089565549891152,-0.014390637674128667,0.03197905619170206,0.05080346949296947,0.04159655028327058,0.028237548622577487,0.008490511365785923,0.007973407527452342,0.04875128504098927,-0.06598450358666068,-0.09113020253556,-0.001185282882479439,-0.08733776370621642,-0.10363298816480944,-0.0029948118134068657,-0.06505648131545817,-0.025339818001953257,-0.09009915430180152,-0.03657965242706481,-0.08593439240491636,-0.038802329928191596,-0.0927719605242475,-0.07031774996649295,-0.039242374040898864,-0.016672734938431914,-0.07257135197052238,-0.08536935738135927,-0.09293661901181365,-0.08756454326378614,-0.07530048248138964,-0.06894229601162147,-0.062244844414864595,-0.09321897554309506,-0.0019187123328527516,-0.031854479678189815,-0.03159289567865053,0.023633504553158966,0.0015068008878534654,0.0015581929537783598,-0.0012751179647768145,0.011445661358144388,-0.02777279201429768,-0.053797519557077844,-0.037970889709401545,0.008727491168708511,25.12711665081132,34.9282668466545,11.402113003595833,11.334599196837834,24.029073277716105,30.440309560859628,32.761678122415724,33.68947864919158,34.99757765909257,84.36781037151984,72.30432430687755,4.654310359536748,7.409175705105559,0.0,12.063486064642305,14516.431381752243,13817.298316318796,2652.963956198191,671.0,73.0,104.0,150.0,216.0,275.0,347.0,440.0,562.0,572.4542112401816,46.0,5.476463551931511,6.385194398997726,7.3453648404168685,8.286773231131251,9.255218130754269,10.210714866221961,11.183212334041519,12.145956332003188,13.120587802002879,0.5214521452145215,0.949069306930693,1.1374030711419945,0.4722362586770707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6157916641963597,0.936090079596195,0.983010391352318,0.5507916600330909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,6.0,0.0,0.0,0.0,0.0,17.0,0.0,2.0,0.0,8.0,0.0,2.0,0.0,0.0,18.439787622989346,12.083681658295921,12.207932775496605,0.0,0.0,9.589074368143644,0.0,0.0,0.0,13.847474399381248,99.71565250622848,32.10410811463005,40.27436958900468,121.6600978306521,-317.65839300760507,-17.889489203098435,-3.1451326040356933,-13.235766375316878,693.3210571550904,3196.9254921912975,31.548859738937757,31.652727645458384,41.51851288560126,0.4666666666666667,0.9166644994704953,0.17472260997531,1.6794367369609111,0.06563615114789849,10.07760499108559,0.08333550052950468,8.0,0.08695652173913043,0.1911449274437457,0.3479068974991341,0.631965440134992,0.7590422699729608,0.7940021161945452,0.8148205990176309,6.110500000000007,,1.2857142857142858,1.514192647743136,1.1430359144285005,1.28206267335915,-5.365540693720245,1.3572521419828643,1.2745051870999227,-2.2346271687189603,160.71579999999972,28.028861991132985,0.0,0.0,34.501605123439134,135.45724433059314,40.27436958900468,0.0,0.0,0.0,4.532599493153256,0.0,5.953243334287785,2.3978952727983707,7.583247524303362,4.948759890378168,9.315870873185647,7.260522598089852,11.105152696260319,52.66666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.856,0.0,24.82838914648949,0.0,0.0,0.0,0.0,0.0,-0.18927573103367834,114.87771018534144,0.0,0.0,0.0,85.47065631409015,19.06280027574374,34.501605123439134,111.16562989680064,0.0,0.0,0.0,0.0,47.69586212638414,62.194958083832326,52.14362748023338,522.7743058446836,,488.5902859623225,482.1985952521653,485.3402736866402,488.6702816834336,639.6350324146574,486.25389971577056,488.9376516574812,574.96821914626,52.14362748023338,522.7743058446836,,487.44269216789166,480.88927174088496,484.36451132066475,487.5257664412292,643.1684372617419,485.06004953166405,487.7978752407191,576.4398028915139,5.2664123480065195,379.03853670844546,,359.49778842587705,355.73413983477536,357.26420094612405,359.54407370933984,446.4833913308073,358.10947768104154,359.7036269444079,409.76795626127375,1.271795792200814,12.750592825480087,,11.916836242983477,11.760941347613787,11.837567650893664,11.918787358132526,15.600854449137985,11.85985121257977,11.925308577011736,14.023615101128293,2.6605310611173123,261.3871529223417,,244.3265018661787,241.1362291540764,242.65512276001394,244.36641066301823,318.9014482840105,243.16005356866535,244.4999113211089,287.1025878613975,94.54509803921569,0.0,13.343993371772408,0.0,0.0,0.0,0.0,99.28404952658413,21.2309207641841,0.0,12.557293345946603,0.0,3.6626493455750113,0.0,0.37702997429458496,0.0,0.0,55.62995766334218,747.0642925128918,128.54101842834632,233.96020768558594,424.98371457111864,510.4402597406235,533.9500347449504,547.9500347449505,2925.0,170.40948548750117,67.91686247285068,94.09729168245676,52.6,52.6,0.875,8.028455164114252,6.523561956057013,5.129667979602114,6.296237968146141,,6.31010139058556,6.312125326578135,6.309863232814973,6.310073447045392,6.257545548528111,6.310799568923547,6.309995606886676,6.2820886897003,0.12511385316102716,0.15356677971088148,,0.15390491196550146,0.1539542762580033,0.15389910323938957,0.15390423041574128,0.15262306215922222,0.15392194070545237,0.15390233187528476,0.15322167535854392,3.046027909473301,3.2509392808306132,,3.2531387183728904,3.2534594123447658,3.2531009753557387,3.2531342899809657,3.244774997037225,3.253249356803687,3.2531219540486687,3.2486894927946004,477.9900000000024,615.7586673202785,320.7978035733445,,317.7707228974973,317.32916308979617,317.82367042200616,317.77697081111006,327.9713130564795,317.6213939337745,317.79342878964985,323.5833778298595,15.018504080982403,7.824336672520597,,7.750505436524325,7.73973568511698,7.751796839561126,7.750657824661221,7.99930031845072,7.746863266677427,7.751059238771948,7.892277508045353,7.833842086649648,7.181798002962675,,7.172317099269291,7.1709265782234155,7.172483707172658,7.172336760779119,7.203913118075881,7.171847062067014,7.17238855041109,7.190443791165719,14.746293128718081,24.82838914648949,0.0,0.37702997429458496,2.5188518240644746,0.8464773514624696,16.432124208996765,13.309669955258457,4.941164410715675,594.2951581499569,99.15068704570328,-258.88560402425287,-14.579596572846132,-2.563223802220325,-10.786900167677205,565.0435959361917,2605.4340300294266,25.711726148522686,25.796376534944816,33.836805584797744,5163.0,84.0,4.8435431195476575,4.073461835031088,0.5243773949903288,0.5243773949903288,1.4907844237390901,1.3639559168281543,0.32111426259404335,0.3007795179393523,0.0,0.0,0.0,0.0,0.06804138174397717,0.06804138174397717,0.558685090140866,0.538350345486175,1.3140170170888767,1.229128069239605,29.208531534440652,27.272610595543764,19.395085046786704,17.74059190989151,19.644993333146072,17.197240143332806,16.44092768536281,15.043672927356251,14.413382789772411,12.836459849804845,12.850811489740703,11.186972460554694,9.989231791706693,8.481631399962392,7.6275052100938865,6.3823297103750365,10.643921295584118,9.67051822640863,18.46877701223607,16.316163731668205,31.986823741606674,27.315374320517474,145.5154495911412,79.89551834886,51.605400746632654,39.60000275207528,36.5331461123159,32.659994603957756,238.0,296.0,103.86557999999995,69.96042000000011,0.2871287128712871,476.06,14.11111111111111,8.527777777777779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,6.0,0.0,0.0,0.0,101.0,0.0,2.0,106.0,0.0,2.0,2.0,104.0,2.0,46.0,104.0,0.0,0.0,0.0,35.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,60.0,4.0,0.0,2.0,41.0,6.0,0.0,2.0,4.0,0.0,6.0,4.0,0.0,0.0,0.0,0.0,0.0,3.8918202981106265,6.565264970035361,4.356708826689592,4.672828834461906,5.043425116919247,5.41610040220442,5.666426688112432,5.8998973535824915,6.137727054086234,6.386879319362645 +5287792,Cc1ccc2c(c1)C(=O)[C@]1(O)CCN(c3ccccc3)C1=N2,0,23.42105263157895,6.139205263157895,3.736842105263158,8.0,158.79904050613115,92.56156057894735,1.6058003809890529,6.227247368421053,4.545504385964912,7.64030042105263,237.89615901986585,25.658536585365855,6.306707317073171,4.487804878048781,8.073170731707316,143.64144365828412,98.04892324390241,1.9341905520975615,6.465048780487805,3.171070460704607,7.704544487804875,283.8262931093439,23.35211267605634,6.25151971830986,4.253521126760563,7.169014084507042,149.21803735513018,88.58293349295772,1.7342304392147179,6.38540985915493,3.05066510172144,7.682922140845068,252.1754928570113,20.673684210526314,6.339157894736844,3.5473684210526315,6.126315789473685,155.46223621383936,76.68844775789474,1.4865530673225362,6.434440000000001,3.712280701754386,7.808085600000002,213.2396059244277,17.785714285714285,6.275000000000001,3.163265306122449,4.846938775510204,159.77710887309934,64.31589039795918,1.3629912777452753,6.352649999999999,3.396825396825396,7.790563714285714,191.44987009005467,17.191011235955056,6.104168539325842,3.101123595505618,4.112359550561798,155.8399770961347,62.02924619101123,1.396319997552674,6.202196629213483,3.1644818976279647,7.634295056179774,193.03252955936543,15.30232558139535,6.122302325581396,2.7674418604651163,3.244186046511628,158.47865600149174,53.49656224418604,1.3136902222713835,6.205470930232559,3.230620155038761,7.678156883720928,178.0637572234789,12.105263157894736,5.893144736842104,2.3289473684210527,2.3157894736842106,159.3488477178768,40.396455473684206,1.1985555910623025,5.972236842105263,2.8819444444444446,7.505506210526315,153.30593794813763,9.810344827586206,5.62348275862069,2.086206896551724,1.7758620689655173,163.96582490864017,32.206145482758615,1.097144720258276,5.694525862068966,2.3189655172413794,7.277685517241378,133.9172669511737,6.997229916897507,0.10571800554016615,0.015926136388244673,0.7202216066481997,3.7867036011080333,1.5178790369587578,33.37769198891965,0.23242067149781712,0.10031966759002764,1.5059874192059097,0.06389930193905814,50.455945599204824,0.27106276602932283,-0.004290020944530819,-0.006416336418498811,0.30288494020674284,1.222282278224444,-0.12598307612288337,1.3445853358556954,0.008072864232349807,-0.0028869333153165376,-0.16778227728606923,-0.003765889872305926,2.123323774395382,0.7907611876243614,0.007925508173695871,-0.0019391365402834395,0.00475986110569228,0.5698568140142791,-0.07301879767374193,3.7276003513323785,-0.0022195948389653643,0.009120955093441527,-0.01997669109455129,0.002263731418984821,2.2800145004998313,0.15457063711911379,0.01892808864265923,0.0018060232946738757,-0.05429362880886429,0.11966759002770075,-0.21941924027683513,0.579828568975075,-0.02657439899115621,0.01673401662049861,0.23232052169898423,0.012351594459833788,-4.243678019319688,-0.6100118717847248,-0.009685782124484179,-0.0011987375405094912,-0.05856747130985359,-0.4907852337610947,0.1177872197820724,-2.8624780001978607,0.0019363729528417881,-0.009892975860704386,-0.1504091133221525,-0.0047149861495844846,-1.3023632853880094,-0.4910205733138286,-0.009515758349154977,0.0011205884478389847,-0.16611161256186,-0.692085032213888,-0.18327084169872376,-2.358901197671883,-0.026530552354931288,-0.00825473559712409,-0.04652474097475109,-0.006382679821967691,-4.635912161137053,-1.5902531727114604,-0.02667987824518457,-0.0005681205597550726,-0.1333183018746377,-1.1349288153063197,0.008981416616809923,-7.500543949139986,-0.01916429360398059,-0.02607223796946465,-0.18829183577057695,-0.01428158100882561,-6.735620364641219,-1.3857340720221607,-0.02011232686980606,-0.0003472756952360782,-0.024930747922437647,-0.6011080332409972,-0.10227148093209137,-6.534624608725767,-0.01724382956931513,-0.02050554016620496,-0.2130102531548169,-0.010846373961218833,-6.614049128685092,0.5907918616868846,-0.002483432037443816,6.917210357101574e-05,0.07197440061132872,0.32672652593370927,0.2704554138451899,2.9177118695195245,0.039412979805903275,-0.0013421721272327872,-0.017065761613653002,-0.0019622928646480077,7.761697256995559,,,0.47575757575757577,1.3295454545454546,0.6818181818181818,0.0,0.6477272727272727,0.03409090909090909,0.7590450348161883,0.014592791668311168,0.030229155304674803,0.9464756571024755,0.2602404369657813,0.22126738783741187,1.7055206919186638,0.4815078248031932,2.0763348027178945,1.7146964623952343,0.19851960827573958,0.16311873204692093,0.0,0.3616383403226605,7.687399414526329,890.0,233.2898,142.0,304.0,6034.363539232983,3517.3393019999994,61.02041447758401,236.6354,172.72916666666666,290.33141599999993,9040.054042754902,1052.0,258.575,184.0,331.0,5889.299189989649,4020.0058529999988,79.30181263600002,265.067,130.01388888888889,315.8863239999999,11636.8780174831,1658.0,443.85790000000003,302.0,509.0,10594.480652214243,6289.3882779999985,123.13036118424498,453.36410000000006,216.59722222222226,545.4874719999998,17904.459992847802,1964.0,602.2200000000001,337.0,582.0,14768.91244031474,7285.402537,141.22254139564095,611.2718000000001,352.6666666666667,741.7681320000002,20257.762562820633,1743.0,614.9500000000002,310.0,475.0,15658.156669563736,6302.957259,133.57314521903697,622.5596999999999,332.8888888888888,763.475244,18762.08726882536,1530.0,543.271,276.0,366.0,13869.75796155599,5520.602911,124.27247978218799,551.9955,281.63888888888886,679.4522599999999,17179.895130783523,1316.0,526.518,238.0,279.0,13629.16441612829,4600.704352999999,112.97735911533898,533.6705000000001,277.8333333333334,660.3214919999998,15313.483121219184,920.0,447.8789999999999,177.0,176.0,12110.512426558636,3070.1306159999995,91.09022492073498,453.89,219.0277777777778,570.418472,11651.25128405846,569.0,326.16200000000003,121.0,103.0,9510.01784470113,1867.9564379999997,63.634393774980005,330.2825,134.5,422.1057599999999,7767.201483168074,265.89473684210526,4.017284210526314,0.6051931827532976,27.368421052631586,143.89473684210526,57.6794034044328,1268.3522955789467,8.831985516917051,3.8121473684210505,57.22752192982457,2.4281734736842093,1917.3259327697833,11.113573407202235,-0.1758908587257636,-0.26306979315845125,12.418282548476457,50.1135734072022,-5.165306121038218,55.127998770083515,0.3309874335263421,-0.11836426592797804,-6.879073368728839,-0.15440148476454296,87.05627475021066,56.14404432132966,0.5627110803324069,-0.1376786943601242,0.3379501385041519,40.45983379501382,-5.184334634835677,264.6596249445989,-0.15759123356654087,0.6475878116343484,-1.4183450677131417,0.1607249307479223,161.88102953548804,14.68421052631581,1.7981684210526268,0.1715722129940182,-5.157894736842108,11.368421052631572,-20.844827826299337,55.08371405263212,-2.5245679041598397,1.5897315789473683,22.070449561403503,1.1734014736842098,-403.14941183537036,-59.781163434903036,-0.9492066481994496,-0.11747627896993014,-5.739612188365652,-48.09695290858728,11.543147538643096,-280.52284401939033,0.18976454937849524,-0.9695116343490299,-14.740093105570946,-0.4620686426592795,-127.63160196802492,-43.70083102493074,-0.8469024930747929,0.09973237185766963,-14.78393351800554,-61.595567867036024,-16.311104911186415,-209.94220659279762,-2.3612191595888845,-0.734671468144044,-4.140701946752847,-0.5680585041551245,-412.59618234119773,-136.7617728531856,-2.294469529085873,-0.04885836813893624,-11.465373961218841,-97.6038781163435,0.7724018290456535,-645.0467796260388,-1.6481292499423308,-2.2422124653739597,-16.19309787626962,-1.2282159667590025,-579.2633513591448,-105.3157894736842,-1.5285368421052605,-0.026392952837941942,-1.8947368421052613,-45.68421052631578,-7.772632550838945,-496.63147026315823,-1.3105310472679497,-1.558421052631577,-16.188779239766085,-0.8243244210526313,-502.667733780067,34.265927977839304,-0.14403905817174134,0.004011982007118913,4.174515235457066,18.950138504155138,15.686414003021014,169.2272884321324,2.28595282874239,-0.07784598337950166,-0.9898141735918741,-0.11381298614958446,450.17844090574243,0.6963466580627004,0.5583138542206292,0.4237268858268102,0.29562627059309926,0.26524914307061354,0.15480523465565754,0.16699939653563944,0.0798060969351938,0.10127675261527096,0.042209661871816274,0.06438261479950098,0.02213944752721145,0.0395461458592864,0.011721996922751882,0.0248822077867546,0.0062517421151157,8.022148253686055,5.685650549456919,3.5436570114056214,2.1842111966202116,0.4207756595484925,-0.410868410033602,4.029092948372643,0.9779794866157027,6.021956900154444,0.9959446444447169,14.554099866992228,10.947054614847408,16.010238691169594,11.697628478174233,1.996688121513253,0.7524442579085869,3.48883909404799,2.2337716608772324,7.008270077213166,1.1715836709343797,3.7019049162363546,2.4295834191843997,20.90144339921121,14.702535662196821,0.26416791573396875,0.6175965254186228,0.7588688088112409,0.8713552889506162,0.8936411455579945,0.8936411455579945,1.5515368528393017,797.9893846488097,0.0,1.0,2.0,0.0,11.0,1.0,2.0,1.0,0.0,3.764701316472674,1.7803022224842957,0.9870993422191292,0.35552039485070885,0.23039177637272168,0.23039177637272168,100.55319770551259,852.3095739620471,43.53254945298598,22.429199314790715,45.6373196875503,,11.0,397.0,5.601050810983688,9.901064578912528,5.783244946364939,30.052035580976415,11.250837766380558,0.0,6.06636706846161,54.28821640977237,4.992404732635669,0.0,10.466666666666667,29.25,15.0,0.0,14.25,0.0,0.024242424242424235,0.75,0.14631578947368407,0.070315789473684,-0.07600000000000007,0.022002635046113217,0.12377443609022543,0.0,0.592982456140351,0.8060606060606059,0.446666666666667,0.5226666666666671,0.7840579710144927,16.698990765956143,0.3210414167028457,0.6650414167028457,20.822464456254462,5.725289613247189,4.867882532423061,37.521455222210605,10.59317214567025,0.5902255639097745,0.11146496815286623,0.04777070063694267,0.3248407643312102,0.2222222222222222,0.3991279088576474,-0.6825187664330712,-0.05205541152654071,-0.01796102016929135,-0.048751340459505084,0.6008720911423527,1.0275063941389446,0.035285804790438524,0.027039641951024856,0.04281276642245602,-4.136430691823845,0.7415826622636773,0.7485535703809253,1.3750057787133396,0.7254221388367729,0.4797714418256107,1.1477027584418265,0.7443938349438547,0.9321741003729552,0.7290961451919727,0.7350254601000739,0.7685852603569483,0.8597617876008853,0.7339820793326866,0.7217750102208461,1.1816782875512957,1.285278981581798,0.7713972201901975,1.1144978810790496,0.7381413409038998,0.9612948222695004,0.699734635495117,0.6614661544144557,0.7370661172946144,0.8697776164806925,0.9257323832145685,0.9793498881150396,1.188690158733438,1.1669230769230767,1.0082297000731528,1.196288732250436,0.9270521921929898,1.039969164579712,0.9568810506027823,0.9311765325771435,0.9901308100418389,0.98321197238333,1.0905036598962625,1.3668785946312116,1.3295752588693417,1.1036106750392463,1.2384336324141947,0.9621192711636273,1.0837630856926859,0.9159292128002113,1.3350349575042662,1.4284447039979205,1.3816366354917748,0.9370026162358441,1.0342649923937122,1.129652000766175,0.9998326169377836,1.3063526361279167,1.1773197274438407,1.0946468991056908,1.0335590684715745,1.0818417810699568,1.110879687845254,1.1497864695275009,1.1674003865071652,1.0468124483353856,1.2305315417334144,1.4467567727236885,1.150694485768669,1.1554226296958852,1.300611592181147,0.9612051550560439,1.2241427703543795,1.043512048856009,1.4302083810934345,1.4268145403997068,1.4736099172514303,1.0824993650999242,1.2276573634204275,1.2628762688592976,0.9664216932617481,0.8271634615384613,1.1131126554498902,0.9499010114849684,1.2238466031429798,1.0790350953472967,1.2791754336552958,1.3442746104889363,1.2945133049541941,1.1427274709891335,0.9704708957872609,0.8194459842217178,0.6953935766362417,0.6060344827586206,0.8600635673384961,0.7103724182351215,0.9708314986755767,0.8491533997271113,0.8548397228803215,0.7968754765964113,0.7641174221202756,0.9214640355265348,5.0,0.024793388429752067,3.777777777777779,2.1944444444444446,2.0011111111111113,0.9311111111111111,0.5101587301587303,0.1901218820861678,0.10632401108591583,0.0625,4278.389831151526,4712.152045150963,2112.8155907843975,1944.058570422548,12.636138292129495,0.4781560217244161,6.594092676405298,0.9162815738613422,1.0,0.2222222222222222,1.4832261969709113,3.4676252909592895,4.260828171224456,4.892407118592876,5.0175357370708635,5.0175357370708635,0.2,0.008264462809917356,0.0994152046783626,0.0535230352303523,0.057174603174603184,0.030035842293906812,0.020406349206349213,0.011882617630385487,0.010632401108591583,0.010416666666666666,0.5017511827991352,15.5232,5.8171745152354575,2.512396694214876,128.27739971318547,1.0,4.061626661366815,90.1338077406854,,68.12460591753567,66.70276611185938,65.8082615837022,68.13770820502072,91.31080638572223,67.53410647521183,68.20900296599623,83.67425272444443,0.03873858216016847,-0.040579851299794745,-0.40288091612946425,0.4205440900562851,0.32278266454939597,-0.0829994176448373,0.04028395181734122,0.03473384781278212,-0.02877734131969468,-0.11141014536133306,-0.058934757626891134,0.042082726806111935,0.11301060519888935,0.07496838531147544,-0.12175812720747176,0.006608884073672741,0.15048888797304666,-0.04810580810183883,0.11167939210925144,-0.009549902875081447,0.0909189126375076,-0.013264845934161107,0.03542654380080366,0.04518822258552149,0.022090261282660364,0.17904318707060507,0.11339996409970025,-0.07538461538461541,0.031602048280907076,-0.14455647316697012,0.017371739459024305,-0.11433750199541004,0.16680693848473307,0.15426458331337473,0.19329779958494248,-0.08410659970638956,-0.08717905214342267,-0.09161903949090483,-0.07526857181722353,-0.08131868131868131,-0.12960751235388088,0.07759987252875723,-0.0857602137723637,0.008331328450102917,-0.09861451994770969,-0.09987408354411191,-0.07378775677520308,-0.025811889360538205,-0.07017356570320353,-0.0900107630723282,0.0703616006118162,-0.23063958513396707,-0.18276715188676923,-0.12074140115007294,-0.0706729871692436,-0.11414884994504655,-0.08228431966958251,-0.030893180368852656,-0.09988653441089171,-0.09188039399681995,-0.2272689609456996,-0.2523683464218203,-0.03567221489917738,-0.1851073345259392,-0.2997141933618006,0.005917083244528633,-0.22471727378962963,-0.08245520280308019,-0.2598915905105768,-0.1250288238595387,-0.22350136191544312,-0.13349507743141714,-0.19804038004750596,-0.19024504640474557,-0.02180539502929334,-0.03461538461538457,-0.1587417702999268,-0.06737788614368365,-0.19577820452340017,-0.07419232316208621,-0.2044019947315229,-0.14144225272953131,-0.16974166590369336,-0.1310856243032997,0.08443224943347796,-0.02349109808451947,0.004343307245696624,0.09993368700265254,0.08628257195469571,0.17817982017004325,0.08741502769239148,0.1695760516993147,-0.013378953095396887,-0.011331941685576354,-0.030709143998466214,0.15383117222002635,11.608192722411575,16.706337743368444,5.630061524710363,13.371452314822259,31.629050976185063,38.0010724482738,40.014494216334455,40.14062386376027,40.14062386376027,45.679365659793675,37.723322172695156,4.367431382066271,3.5886121050322606,0.0,7.9560434870985315,3594.4188443295566,2938.802561527383,804.7047379236851,162.0,38.0,55.0,76.0,103.0,118.0,138.0,164.0,173.0,292.1211777520005,25.0,4.844187086458591,5.746203190540153,6.675823221634848,7.602401335665818,8.54110501146255,9.478151314785551,10.42207299091356,11.364576257345753,12.31167063298934,0.6754385964912282,0.982526315789474,1.1137517323320825,0.6405049757020974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7017442168294992,0.9706914344685238,1.0023766627055626,0.6652670466110319,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,10.006437125691184,5.835619785757269,5.601050810983688,5.783244946364939,0.0,4.794537184071822,4.992404732635669,0.0,0.0,29.828919765543436,31.18920547353706,24.21641579521914,5.687386274683562,198.93306004984825,-340.18053795482416,-25.945422701127836,-8.952119419863795,-24.298609853916012,299.48625775536084,512.129036007223,17.587126751858147,13.47707989492692,21.33870983363429,0.45454545454545453,0.8434272238528735,0.21875876634285316,99.26108352505946,0.12406872657008425,115.66010646982612,0.15657277614712656,6.0,0.04,0.28263084678119876,0.6607608969590937,0.811906826134606,0.9322550866146733,0.9560985216006646,0.9560985216006646,2.8627200000000013,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,85.95930000000004,9.901064578912528,0.0,0.0,4.992404732635669,18.94560963360032,11.444666136763054,59.65783953108687,0.0,0.0,3.9318256327243257,0.0,5.313205979041787,2.3978952727983707,6.912742820493176,4.844187086458591,8.613775289262481,7.065613363597717,10.371019379393825,25.66666666666667,15.328375411765563,0.0,0.0,0.0,0.0,0.0,3.089876771823923,0.0,37.33600000000001,0.0,12.79155076845553,0.0,0.0,0.0,0.0,4.6002229780801205,0.2034112811791391,42.32256582861913,4.899909730850478,11.374772549367124,0.0,28.871199343859182,0.0,6.923737199690624,22.342261790391824,53.52334128032855,0.0,0.0,0.0,24.339189076679702,26.66628023952097,29.2590245871856,180.26761548137085,,136.17778326364277,133.31982639859925,131.54408975443425,136.20418627229944,184.09106107966684,134.99186656119477,136.3473226968414,168.00152281825387,29.2590245871856,180.26761548137085,,135.46349754935716,132.4627681474043,130.85510737244158,135.49188489487972,185.82256493648637,134.22840266890586,135.64049034533048,168.78514366149187,5.0991015583487105,131.321306713152,,98.53486075975579,96.09618674153657,94.27282873344116,98.55647905532813,137.51482083893188,97.50865905200536,98.68101648224217,125.07814004771642,1.329955663053891,8.193982521880493,,6.18989923925649,6.059992109027238,5.979276807019739,6.191099376013611,8.36777550362122,6.135993934599762,6.197605577129154,7.636432855375176,2.5887313735408353,90.1338077406854,,68.12460591753567,66.70276611185938,65.8082615837022,68.13770820502072,91.31080638572223,67.53410647521183,68.20900296599623,83.67425272444443,36.886274509803904,0.0,1.9323018759973125,0.0,0.0,0.0,10.926947278911566,38.09031318281138,0.9494049981103554,0.0,0.0,0.0,0.0,1.9312471655328798,-1.503338529856387,0.0,0.0,25.28014777121921,420.3804215310906,56.36259548489463,131.769761056453,161.91147050652933,185.9114705065293,190.6663580086928,190.6663580086928,1074.0,123.98619104179616,78.03889627411853,71.45026482377028,52.9,52.9,0.8333333333333334,8.695407366120184,5.643856189774724,4.01478033904085,4.616428695226233,,4.624623842452605,4.623169846423567,4.621446262932437,4.624635095117836,4.631339971607469,4.624014925600079,4.624707733983734,4.6328382591741795,0.1824900154109477,0.20983766796482878,,0.2102101746569366,0.21014408392834394,0.2100657392242017,0.2102106861417198,0.21051545325488494,0.21018249661818542,0.21021398790835155,0.21058355723518998,2.1784399961893457,2.3180787568405763,,2.3198523966594853,2.3195379441338484,2.3191650603946616,2.31985482986312,2.3213035973055667,2.3197207195838256,2.3198705366797534,2.3216270555859344,218.33999999999975,187.29265281308827,126.87683271184783,,126.01217166360384,126.13999218999444,126.46109244478835,126.0116953938287,125.88324745012319,126.07356015404079,126.00400656344404,125.4730370101367,8.513302400594922,5.767128759629447,,5.727825984709265,5.733636008636111,5.748231474763107,5.727804336083123,5.721965793187418,5.730616370638217,5.727454843792911,5.703319864097122,6.021129742206097,5.631674155075484,,5.624835863155012,5.625849699684397,5.6283920516161965,5.624832083594127,5.623812230210898,5.625322907710909,5.62477106493277,5.620548251312971,0.0,19.32302091206853,10.926947278911566,1.5865382419675358,0.2034112811791391,15.328375411765563,0.3679988662131519,2.513708007894516,0.0,267.14066070269257,99.15208007894806,-169.5525516580525,-12.93169988286392,-4.461909254159276,-12.11089654700375,149.26973628246196,255.25500475495946,8.76576371781488,6.717236967235775,10.635625198123309,956.0,41.0,1.871457879096767,0.8604126799085777,0.11785113019775792,0.03952847075210474,0.7338414619808524,0.16765518530568702,0.11615390417644599,0.015974409455019732,0.0,0.0,0.0,0.0,0.08333333333333333,0.05590169943749474,0.4478711077230122,0.17600840046808203,0.8278665356995256,0.25072899070478283,15.319626477379408,12.282904792853842,10.593172145670254,7.390656764827482,10.079467436683315,5.882598916914986,9.18496680946017,4.389335331435659,7.697033198760592,3.207934302258037,6.631409324348602,2.2803630953027794,4.666445211395795,1.383195636884722,3.4337446745721345,0.8627404118859666,5.030673327134335,1.776725000881372,8.403157986602588,2.5613558577956623,14.122073696206538,3.4840181941773967,70.26268362049075,42.216341755894895,27.463600155161185,22.51627242822181,22.063038149954146,22.063038149954146,126.0,156.0,44.53268799999999,19.769311999999996,0.5,163.04,6.590277777777777,4.652777777777779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,38.0,0.0,2.0,41.0,12.0,2.0,8.0,33.0,14.0,25.0,27.0,0.0,0.0,0.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,4.0,1.0,2.0,22.0,4.0,0.0,2.0,2.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,2.0,3.5263605246161616,7.431040459097868,4.143134726391533,4.7535901911063645,5.308267697401205,5.867529816013755,6.120709421978134,6.516886252900129,6.894638377331432,7.235506562683932 +135398739,O=c1[nH]cnc2c1ncn2[C@H]1CC[C@@H](CO)O1,0,26.20689655172414,6.725158620689656,3.586206896551724,9.793103448275861,168.5610170289134,103.70766127586205,1.3791023054547589,6.743868965517242,5.659961685823754,8.168566206896553,214.84837842911253,27.774193548387096,6.807387096774193,4.387096774193548,8.774193548387096,153.58436356456284,106.4419452580645,1.6460465608387091,6.910548387096775,3.5206093189964163,8.16908012903226,256.69221994254957,23.87272727272727,6.825540000000001,3.890909090909091,7.545454545454546,161.93878880327725,89.56004943636366,1.4317814748826727,6.882390909090907,3.492929292929292,8.23640938181818,217.80321080342912,18.742857142857144,6.552882857142858,3.1285714285714286,5.714285714285714,166.09943093966766,68.5157194428571,1.1762909008719569,6.58939857142857,3.5210317460317455,8.067594342857143,171.86287857501327,18.603174603174605,6.588125396825395,2.9206349206349205,5.349206349206349,168.14590743614585,67.73225298412696,1.1738884691006193,6.6173650793650785,3.599647266313933,8.090284063492065,170.84908337012826,14.982142857142858,6.283142857142858,2.8035714285714284,3.482142857142857,167.17684844564266,52.26844226785715,1.1437298084373215,6.328439285714285,2.8521825396825404,7.831527928571428,156.61868555199177,15.978260869565217,6.3806956521739115,2.630434782608696,3.869565217391304,167.99622312030525,56.66180515217391,1.1201603229487171,6.415558695652174,3.421497584541064,7.922285652173912,156.09730125647602,15.378378378378379,6.557135135135135,2.3513513513513513,3.6216216216216215,169.69061677044175,53.010462621621606,1.0344126026552705,6.574870270270272,3.9527027027027044,8.10122108108108,144.67581742569323,11.5,6.301346153846154,1.9230769230769231,2.1153846153846154,173.1512725939863,37.17920723076921,0.8731814371959233,6.3127692307692325,3.464743589743589,7.920459999999999,115.94100197264493,7.923900118906065,0.18214744351961942,0.03218485238127769,0.6135552913198575,4.613555291319858,1.550077450651837,37.352030644470865,0.1986937864413745,0.16552841854934594,2.0412207689258812,0.11432220689655169,43.8490844132438,0.264086532929309,-0.02510561927045376,-0.017553085737228483,0.18510989221740648,0.9593034406045028,-0.7035108541267909,1.3275045590886387,-0.028550502744408936,-0.017824080395842195,-0.1732501843257088,-0.01955690322580645,-1.190869909893723,-0.2919251972759697,-0.00384719273592046,0.0016130664364229544,0.029704896767917058,0.35258890930710185,0.1692821580662318,-1.3606992294238496,0.0002745397055690662,-0.004613371527402485,-0.10553633841386512,-0.003904218181818153,-0.9809371394458442,0.43669101409886196,0.0033067436724987177,-0.0005069743774306312,-0.03178189230507897,0.32733140818753187,-0.20532944307679954,2.0809010663665704,-0.003042705006729719,0.003944734160013586,0.14655974557877058,-0.00010988571428571376,0.5706864033319962,0.1680539040824414,0.0073262839023837765,0.0014933344563520462,-0.04541079214087537,0.05256402997187781,0.12941231010029616,0.7798986467168717,0.006508725115767748,0.005977985391540678,-0.0033018976736772974,0.0037859682539682577,1.053819877164295,-0.9417572617632074,-0.020597812977747543,-0.002755307261857628,-0.07353066077798538,-0.8075208085612366,-0.05598230723946134,-4.425949399396974,-0.011423094311356088,-0.019035191948360747,-0.27204657626031,-0.01118371428571431,-3.506896811156145,-0.13154629581760852,0.00949153699012564,0.0020090413880748093,-0.09406503644729365,-0.5985627875717314,0.04237588385583895,-0.7190870065398315,-0.0074938359508640705,0.0080656594116735,0.05825032885855923,0.009448086956521719,-1.642847217343872,-1.816723977247164,-0.021348561879358546,0.0018663177438733765,-0.1745990937429701,-1.2864350676479097,-0.1343117293333776,-8.671328906353438,-0.04509199218242119,-0.021684616126233233,-0.2862502811967735,-0.011470378378378363,-11.28092245939777,-1.4636879173145527,-0.04564744351961946,-0.008017944277423958,-0.07774627275221811,-1.108250251532059,-0.21334331097610623,-6.870884355346195,-0.04087442639714383,-0.0395671453397969,-0.5257108956573877,-0.028996307692307707,-7.241872349511278,,,0.44705882352941173,1.2205882352941178,0.47058823529411764,0.029411764705882353,0.75,-0.27941176470588236,0.6924168526079066,0.007187562616989496,0.02236403320522479,0.7541109385730665,0.23566454233689865,0.25210163400923513,1.4465277911809733,0.4877661763461338,2.059760590652196,1.2396787046748168,0.4931989314121317,0.3268829545652481,0.0,0.8200818859773797,8.141066904965516,760.0,195.02960000000002,104.0,284.0,4888.269493838488,3007.5221769999994,39.99396685818801,195.5722,164.13888888888889,236.88842000000005,6230.602974444263,861.0,211.029,136.0,272.0,4761.115270501448,3299.700302999999,51.02744338599998,214.22700000000003,109.1388888888889,253.24148400000007,7957.458818219036,1313.0,375.40470000000005,214.0,415.0,8906.633384180248,4925.802719000001,78.747981118547,378.5314999999999,192.11111111111106,453.0025159999999,11979.176594188602,1312.0,458.7018000000001,219.0,400.0,11626.960165776736,4796.100360999997,82.34036306103698,461.25789999999995,246.47222222222217,564.7316040000001,12030.40150025093,1172.0,415.05189999999993,184.0,337.0,10593.192168477188,4267.131937999999,73.95497355333902,416.89399999999995,226.7777777777778,509.6878960000001,10763.49225231808,839.0,351.85600000000005,157.0,195.0,9361.903512955989,2927.032767,64.04886927249001,354.39259999999996,159.72222222222226,438.565564,8770.64639091154,735.0,293.51199999999994,121.0,178.0,7727.826263534042,2606.443037,51.52737485564099,295.1157,157.38888888888894,364.42513999999994,7180.475857797897,569.0,242.61399999999998,87.0,134.0,6278.552820506345,1961.3871169999995,38.273266298245005,243.27020000000005,146.25000000000006,299.74517999999995,5353.00524475065,299.0,163.835,50.0,55.0,4501.933087443644,966.6593879999995,22.702717367094007,164.13200000000003,90.08333333333331,205.93195999999998,3014.466051288768,229.7931034482759,5.282275862068963,0.933360719057053,17.79310344827587,133.79310344827587,44.95224606890328,1083.2088886896552,5.762119806799861,4.800324137931033,59.19540229885055,3.315343999999999,1271.6234479840703,8.18668252080858,-0.7782741973840666,-0.544145657854083,5.738406658739601,29.738406658739585,-21.80883647793052,41.1526413317478,-0.885065585076677,-0.5525464922711081,-5.370755714096973,-0.6062639999999999,-36.916967206705415,-16.055885850178335,-0.2115956004756253,0.0887186540032625,1.6337693222354381,19.3923900118906,9.31051869364275,-74.83845761831172,0.015099683806298642,-0.25373543400713666,-5.804498612762582,-0.21473199999999842,-53.95154266952143,30.568370986920335,0.23147205707491025,-0.035488206420144185,-2.224732461355528,22.913198573127232,-14.373061015375967,145.66307464565992,-0.21298935047108034,0.276131391200951,10.25918219051394,-0.007691999999999963,39.94804823323973,10.587395957193808,0.4615558858501779,0.0940800707501789,-2.8608799048751483,3.3115338882283023,8.152975536318658,49.133614743162916,0.41004968229336813,0.37661307966706276,-0.20801955344166972,0.23851600000000023,66.39065226135058,-52.73840665873961,-1.1534775267538624,-0.15429720666402716,-4.117717003567181,-45.22116527942925,-3.135009205409835,-247.85316636623054,-0.639693281435941,-1.0659707491082018,-15.234608270577358,-0.6262880000000014,-196.38622142474412,-6.051129607609992,0.4366107015457794,0.09241590385144123,-4.326991676575508,-27.533888228299645,1.9492906573685918,-33.078002300832246,-0.34471645373974724,0.371020332936981,2.6795151274937243,0.43461199999999905,-75.5709719978181,-67.21878715814506,-0.7898967895362662,0.06905375652331493,-6.460166468489894,-47.59809750297266,-4.969533985334971,-320.8391695350772,-1.668403710749584,-0.8023307966706296,-10.591260404280618,-0.42440399999999945,-417.39413099771747,-38.05588585017837,-1.186833531510106,-0.2084665512130229,-2.021403091557671,-28.814506539833534,-5.546926085378762,-178.64299323900107,-1.0627350863257397,-1.0287457788347194,-13.668483287092082,-0.7539040000000004,-188.2886810872932,0.6957683909303933,0.5315336696026886,0.43642236830969866,0.28730486264551497,0.2712780564424906,0.14919924366727996,0.17436007395250913,0.07800483378547077,0.11006673452198608,0.04116565544453401,0.0699848140994783,0.021076644988422457,0.046030661467939375,0.010987030391124416,0.02939241635926946,0.005760866509855248,8.022483298530794,5.758993524030496,3.5458932713146103,2.241217440123868,0.5002181444290885,-0.41176539717179117,3.27356480266606,0.977790463806909,6.022196124140669,1.8907371153306265,14.563678936179919,11.036104773274909,16.010488072588334,11.783638911582583,1.9396769679755086,0.7487502013490243,3.49180061467052,2.2860530153840384,7.008279693247251,1.2399945696530266,3.7043561621483225,2.4795606599858733,20.80050481778839,14.702397243448875,0.3488269367889381,0.7319800266162202,0.8664345244740039,0.9067708738313388,0.9067708738313388,0.9067708738313388,1.6475910705220052,590.4936898575354,0.0,2.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,3.0687489124031364,1.103448275862069,0.4137931034482758,0.2068965517241388,0.2068965517241388,0.2068965517241388,118.36774978180063,869.1153581747513,67.37147426029598,29.96949510947418,62.473986925202325,,9.0,260.0,0.0,4.794537184071822,24.4980164180481,11.16387793838399,12.841643245852019,6.3273200747645415,10.894419722555895,0.0,14.951935562841626,9.843390348640755,7.6,20.75,8.0,0.5,12.75,0.0,0.052941176470588255,-4.75,0.22428466617754927,0.023804226918798688,-0.2004804392587506,0.06625386996904026,0.23298734177215175,0.0,0.6689655172413794,0.929411764705882,0.44468085106383015,0.6451612903225807,0.8631578947368418,11.771086494334414,0.12218856448882143,0.38018856448882143,12.819885955742132,4.006297219727277,4.285727778156997,24.590972450076546,8.292024997884274,0.4810126582278482,0.08771929824561403,0.0,0.3815789473684211,0.5,0.3580735483986805,-0.7462934214255128,-0.09844307344843937,-0.025734255911224576,-0.08292149126950142,0.6419264516013194,1.3378968930028146,0.06311772835001793,0.0461343756207867,0.06689484465014073,-1.1709053984118487,0.7075088099756031,0.8781283390253384,1.5306446506478832,0.7868217054263563,0.5231958762886597,1.7505108650469312,0.7103659630693939,1.2703200906053087,0.8276658829629462,0.7338855830462473,0.9305938417483733,0.9930877225268017,0.8906035141329258,0.9302181898891781,0.9810003617085393,1.0586328400281886,0.8199906279287721,1.0511393948950203,0.891138515174675,1.016410488392011,0.9205173840794714,0.7451097381582821,0.9560853139495958,0.9529943057639678,0.9182172869147658,0.9764616870993434,0.9483725239612609,1.0903100775193795,0.9432474226804123,1.079049863275875,0.9169964943710734,0.9935297188853545,0.96958035879761,0.7528737864077674,1.0103480061194254,0.9582987397828971,0.9506135787648391,0.9423253067802831,0.8701863374637833,1.011627906976744,0.9832760595647193,0.8855047971203637,0.9504627154816018,0.9138371425008148,0.9455009663300196,0.9185940309241285,0.9443900173791249,0.928494547556634,1.0748799519807921,0.9466326883657774,0.9132874668600055,1.095930232558139,1.0931056701030926,0.9865468515344797,1.0779257629269037,1.0348340715760582,0.9604872228455839,0.8978033980582529,0.8964689637033139,1.0849240145377783,0.9959810010960906,0.8558860243216687,0.8269738369195943,1.0262891809908996,1.103260869565217,0.9018982191276506,1.0001949698268546,1.0010006469137844,0.8680681920467515,0.8321943154636278,0.8054556132885783,1.0293853389175536,1.2398932545991368,1.181278297607466,0.96923787332465,1.14833438089252,1.2726386179994424,0.977378779206516,1.2401427872858826,1.1406491428511396,1.1944125860714827,1.4880984868363514,1.1746325977440455,1.1955130749016565,1.2653522947640594,1.3149314709418116,1.2650293661297958,0.9381335718545017,1.263719270420301,0.9044797056869341,1.2622747071649734,1.0867829220529135,1.3165841696587464,1.7530669653970634,1.3089634137513328,1.1356117479914254,3.0,0.0,2.222222222222223,1.2569444444444444,0.8733333333333333,0.3091666666666666,0.2319274376417233,0.15975765306122447,0.05744520030234315,0.015625,3301.6453111174446,3630.4038530303233,1774.205546364889,1645.2075779855973,10.483458135077194,0.43565672410575357,5.9162691066496516,0.7719711436544027,1.0,0.5,1.7892320827244355,3.754532719265503,4.444187891679296,4.651084443403433,4.651084443403433,4.651084443403433,0.15789473684210525,0.0,0.08230452674897124,0.05027777777777778,0.03969696969696969,0.020611111111111108,0.01784057212628641,0.01775085034013605,0.014361300075585788,0.0078125,0.4085503447189433,12.055401662049862,4.938271604938271,2.1717451523545708,96.07932400188179,1.0,3.7914819876004637,61.170355397804414,,44.114646533444684,42.68972009855303,43.382749484294216,44.132539402674254,71.36581102658874,43.59431990911274,44.1920584399278,62.80676197762344,0.0333278472679395,-0.1378313018582091,-0.5453834471348802,0.30170042510627676,0.2079314931825739,-0.45385529208940567,0.035540358480754944,-0.1436909691830393,-0.10767988090533608,-0.08487576991335212,-0.17106827935453672,-0.02715837572959774,-0.036841100076394136,-0.021121310634843318,0.050118807981896926,0.04841437632135317,0.07642455482661666,0.10920883856161216,-0.036429056357750414,0.0013817226521578739,-0.027870570913641545,-0.05170255957634598,-0.034151004321942596,-0.022370755343515684,0.05511061567484136,0.01815421401806577,-0.01575195596440095,-0.051799557032115126,0.0709499263622975,-0.13246398945449764,0.05571052043122591,-0.015313538793662691,0.0238311595953393,0.07180004623208511,-0.0009611930811058219,0.01301478493721139,0.021208483393357323,0.04022172236304074,0.04639867347102505,-0.07401255075673678,0.011393388970708565,0.08348764124391063,0.02087968534134618,0.03275756747274115,0.03611455630356651,-0.0016176092875121988,0.03311664773401478,0.024032882128914152,-0.11885021865889214,-0.11308318458792377,-0.08560882085823773,-0.11984357696566993,-0.17503221649484535,-0.03611581293303745,-0.11849287235611478,-0.05749094884115323,-0.11499651911847472,-0.13327641007859464,-0.09782626306220865,-0.07997651166684229,-0.01660120569967118,0.052109087049049305,0.062421954411184206,-0.1533114256825076,-0.12974002689376962,0.02733791388167029,-0.019251617492616193,-0.03771550225640881,0.04872673515737742,0.02853700576896019,0.0826443716667501,-0.03746594117818525,-0.2292714383050517,-0.11720483947972102,0.05798745701126893,-0.28456945317410426,-0.2788381164669825,-0.08664839894090257,-0.23215147226907284,-0.2269421353834121,-0.13100237600450945,-0.14023484649698248,-0.10033377319909265,-0.2572670013604794,-0.1847181180164374,-0.2506071050879322,-0.24912167321569237,-0.12671437090041746,-0.24021609833465504,-0.13763396847453738,-0.1839494195307766,-0.20571567500528767,-0.23903536133888373,-0.2575472989793378,-0.25363670348444195,-0.16515447121454616,2.8310127240586844,8.509893761809371,3.925136389583283,17.831578394042204,36.04619684344763,39.15550718827522,39.36405891241316,39.36405891241316,39.36405891241316,35.01593004108733,21.074537979471884,8.38438183400624,5.557010227609217,0.0,13.941392061615456,2419.897837079851,2151.788374270828,385.7602780606712,54.0,27.0,38.0,51.0,58.0,65.0,69.0,74.0,65.0,236.090940244,19.0,4.532599493153256,5.407171771460119,6.300785794663244,7.193685818395112,8.094683648698815,8.993799971795545,9.897720957641791,10.799595985047786,11.704859011558087,0.7126436781609197,1.0231724137931033,1.147684452579355,0.67820302653602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6505784844104896,1.0058147396889792,1.0335032774945374,0.6354213241435458,2.0,2.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,14.827368869587964,6.22790117073487,11.16387793838399,0.0,5.559266895052008,9.361636831863176,9.967957041894417,0.0,0.0,0.0,12.841643245852019,0.0,25.365488501790306,149.3180436138743,-311.2072202694234,-41.0511393550121,-10.731283457566322,-34.57858002993593,267.6857933956749,557.908137905328,26.320334905283882,19.238211651907857,27.8954068952664,0.4444444444444444,0.6107279245647754,0.18888701165321498,179.5399679327474,0.13357272076885907,65.79116460248993,0.38927207543522446,5.0,0.10526315789473684,0.3683077567654111,0.7728586676298654,0.9148220003611995,0.9574110001805995,0.9574110001805995,0.9574110001805995,-0.21050000000000008,,1.3214285714285716,1.599813866914844,1.4204008994654949,1.3177974512248314,-5.319610065744728,1.4208996328029377,1.3065363731051547,-2.474281947147792,58.378500000000024,9.843390348640755,0.0,19.519035210632982,0.0,25.173510804335194,6.606881964512918,23.008444228652912,0.0,0.0,3.6635616461296463,0.0,4.990432586778736,3.044522437723423,6.51471269087253,5.351858133476067,8.130059039992796,7.423568444259167,9.79473239269909,20.66666666666667,2.9014399880322497,8.1277059712774,2.4748109567901233,0.0,0.0,0.8202669123204842,0.0,1.7363425925925926,29.671999999999993,0.0,11.47522053728899,0.0,0.0,0.0,0.0,0.0,0.0,33.282849124801295,5.559266895052008,0.0,0.0,37.336410957734905,4.736862953800049,0.0,19.06954441658689,17.449177333600908,0.0,11.16387793838399,0.0,19.66788776954458,18.8667760479042,22.443327358379214,122.34071079560886,,88.07383088201544,85.19122680099844,86.59839298041604,88.11004381108677,143.6828656033374,87.02147515554279,88.23040671831382,125.99025187025104,22.443327358379214,122.34071079560887,,86.90984023063552,83.80042816582925,85.39690857296492,86.94915921626855,148.05123211892226,85.77599880677727,87.0788650721604,128.08780590239468,4.79426555021043,91.31546036779659,,66.35840592503936,64.07051337412481,65.38837644874515,66.38766349999702,109.36169646088673,65.53077729362909,66.48194557258063,96.84039557580778,1.3201957269634832,7.196512399741698,,5.180813581295026,5.01124863535285,5.094023116495061,5.18294375359334,8.451933270784552,5.1189103032672225,5.190023924606695,7.411191286485355,2.475015326557474,61.170355397804414,,44.114646533444684,42.68972009855303,43.382749484294216,44.132539402674254,71.36581102658874,43.59431990911274,44.1920584399278,62.80676197762344,29.1686274509804,0.0,0.0,0.0,0.0,0.0,9.018203315276729,29.971595047341584,1.5896210474930716,0.0,5.623655517762661,0.0,-0.3417623299319734,0.0,0.0,0.0,0.0,18.42721840016283,254.6758879123899,51.88773039900863,108.88144885869959,128.8814488586996,134.88144885869957,134.88144885869957,134.88144885869957,537.0,108.92490245241375,162.3279490971593,65.91344737193145,93.03,93.03,0.8,8.24893377211882,5.247927513443585,3.7268316108294823,4.060627364646606,,4.053043090401168,4.051749938784243,4.0466436927565015,4.053042100249801,4.046223805808648,4.052357772714387,4.0531304857870305,4.050814429522363,0.21922538887232249,0.2388604332145062,,0.23841429943536283,0.2383382316931908,0.2380378642797942,0.23841424119116475,0.2380131650475675,0.23837398663025808,0.23841944034041357,0.2382832017366096,1.8461866896503523,1.9319657360502864,,1.9300962303816969,1.929777122509789,1.9285160707662583,1.9300959860834088,1.928412303603802,1.9299271288899909,1.9301177930548976,1.929546205673214,159.50999999999974,100.86251604146788,84.66241078784884,,84.89357677328198,84.97419776020472,85.1946472718517,84.89337233874964,85.1624505594606,84.93275729585683,84.8884368571804,84.77884964934654,5.933089178909875,4.980141811049932,,4.993739810193057,4.998482221188513,5.0114498395206875,4.993727784632332,5.009555915262388,4.996044546815107,4.993437462187082,4.986991155843914,5.144386613279717,4.969299961863955,,4.972026685136724,4.972975905707813,4.97556685747609,4.9720242770066125,4.975188866618247,4.9724881038381845,4.971966137897435,4.970674348238632,7.359998110355253,22.077737465356513,9.018203315276729,0.561429070084825,0.0,0.0,4.1382455435878045,0.011053162005543182,0.0,182.4588217974731,62.2661971217448,-129.7746049574255,-17.118482624653755,-4.474986377842258,-14.419400550825056,111.62600295894188,232.6498342053745,10.97568064687975,8.022408076047395,11.632491710268726,502.0,25.0,1.014741362757977,0.4238550644432215,0.0,0.0,0.27537753772002593,0.06077446731445334,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.09690889520345845,0.39856858967637593,0.13868935189794096,0.7064413457791556,0.15823181968497324,11.828062645816686,9.036072383245706,8.292024997884274,5.458792390264785,7.324507523947246,4.028379579016559,6.625682810195347,2.964183683847889,5.61340346062129,2.0994484276712346,4.059119217769742,1.2224454093285024,2.9919929954160596,0.714156975423087,2.0280767287895927,0.3974997891800121,2.7764841823384594,0.9119969698100646,4.613725438997286,1.2604835442810336,6.564863330449057,1.4019005889848941,57.26543470311034,27.474338583726407,22.073011700615865,21.36336308160636,21.36336308160636,21.36336308160636,92.0,111.0,31.50751599999998,19.202484,0.4827586206896552,89.07,4.916666666666667,3.7777777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,9.0,10.0,29.0,0.0,0.0,31.0,10.0,1.0,4.0,27.0,11.0,19.0,20.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,6.0,2.0,3.0,17.0,7.0,0.0,4.0,3.0,0.0,3.0,2.0,0.0,0.0,0.0,2.0,2.0,3.258096538021482,6.529213525216141,3.8969093676180977,4.5604342921467,5.189130093741584,5.645226025196178,6.027487544841525,6.341832534568565,6.679761115258233,6.577758127427754 +17755052,CS(=O)(=O)N1CCN(Cc2cc3nc(-c4cccc5[nH]ncc45)nc(N4CCOCC4)c3s2)CC1,0,30.677419354838708,6.275185483870966,3.629032258064516,7.820788530465951,163.850656551652,121.65277511290327,1.6672396843697255,6.350682258064515,4.0241506814460815,7.802978935483869,227.8399331749653,32.298507462686565,6.466413432835822,4.313432835820896,6.6318407960199,148.15201287824937,124.58789232835825,1.9264806620895527,6.6229059701492545,2.6276027271052147,7.910444358208952,271.95234602583673,25.508196721311474,6.50256393442623,3.860655737704918,6.035519125683059,159.2503550841098,96.04367233606557,1.6398261260835072,6.599282786885244,3.218452742359846,7.9865868852459005,227.78802245099436,21.219354838709677,6.276781290322581,3.393548387096774,4.264516129032258,159.62557222099997,77.21106562580647,1.4970298134663356,6.375361290322582,2.6349462365591387,7.832674193548388,200.01227649336317,18.90532544378698,6.084223076923078,3.100591715976331,3.9368836291913216,159.3779293726659,68.54472088757396,1.4126790482758633,6.1814721893491145,2.6165169113887052,7.653526792899408,184.28841528377015,18.50595238095238,6.090812500000001,2.994047619047619,3.936507936507936,163.48271031980508,66.79514480952382,1.3911647315304225,6.173790476190476,2.588798868312757,7.685555880952379,177.79175726016433,20.90277777777778,6.092497222222218,3.5347222222222223,4.122685185185185,156.61168369913537,75.81640222916664,1.5671443357450134,6.214066666666666,2.3254886831275736,7.658565513888888,204.27536122832862,21.858156028368793,6.220002836879429,3.425531914893617,4.277383766745468,155.95267123759837,80.30934465248232,1.5631366994158935,6.3288737588652495,2.6604512642403373,7.732373113475175,206.14947088159184,20.006451612903227,6.093906451612903,3.0387096774193547,2.9612903225806453,160.46522089750138,72.80229776774195,1.4166467643379095,6.193373548387098,2.324830744723216,7.666138270967737,183.70116253305466,11.71279916753382,0.12398545785639953,0.015534265078227449,0.650624349635796,4.116198404439818,1.7165491022065191,53.02090382648285,0.3066524816155839,0.1159954474505723,1.3279042865513606,0.073144030176899,50.331541895995706,2.1899451752682983,0.0021064776274715116,-0.0055918155744678925,0.18254849581437238,0.7989570013270443,-0.43557136197814195,9.655591480690978,-0.026696875750653742,0.0073192853371024,-0.21719131995595573,0.005767764238122527,-0.4475033960464086,0.0677402296105496,0.0022985849780796886,-0.0014862388416336727,0.0065676122891114,0.33732412919905436,0.20645198138311105,0.6442642835118786,0.041059097918397604,0.0015632119888778781,0.31055324665952455,0.00028383285853182764,6.0277867558984894,-1.5662851196670131,-0.022268350676378702,0.00021984645338398007,-0.03022892819979188,-0.29688981385131236,-0.05875752458393046,-7.037394131477629,-0.016580597195354665,-0.020901409989594093,-0.1332000621994408,-0.011976401248699309,-1.7140852973442124,-0.2155668712940785,-0.0065943240522385125,-0.0006505569497653457,0.043782980007265604,0.15134629238527414,-0.28012302475048007,-0.9376926274944748,-0.012671034864541544,-0.0054301678170545,-0.10586551094443848,-0.00554765243305479,-2.275531996872206,-0.2713629156136961,0.009059847443139554,0.001716072216376327,0.08622280858232995,0.2820564172020989,0.38149861487934117,-0.8033751794974248,0.03655707858379452,0.006436541796739472,-0.04094782257223366,0.002964008993607868,6.492366656954248,-1.9269568736270084,-0.0034769901144641197,-0.0010410560059824052,-0.09047650017343048,-0.41966315951747807,-0.03308854843779005,-8.54816322332423,-0.04785940781286088,-0.004018655335876987,-0.0136184809017741,-0.0025096981876517235,-3.617165033241748,-0.2238950266049697,-0.007088649345761246,0.0006228441657265704,-0.13209312108397728,-0.7498444045923404,-0.17445792400666132,-1.7007262150666775,-0.015701296168506216,-0.00859813562261527,-0.10766164220853344,-0.0032633781521907595,-9.129418981031726,0.19895941727367308,-0.009610473465140492,-0.00047780901035021845,-0.09557752341311133,-0.8012486992715923,-0.16241077840517928,0.6356449282518211,-0.027060666906602745,-0.00683944328824143,-0.08322749525742643,-0.0021901510926118396,-3.695306325247275,,,0.48476190476190484,1.2428571428571429,0.5428571428571428,0.0,0.7,-0.15714285714285714,1.0038071975617315,0.01315921767145777,0.027902074814314913,0.9589980241873803,0.23194503900827013,0.2524447022452177,1.9628052217491119,0.4843897412534878,2.0920391863871757,1.3892451313677947,0.4277821414813905,0.15396687932546407,0.0,0.7027940550193809,8.276801285870981,1902.0,389.0614999999999,225.0,484.8888888888889,10158.740706202425,7542.472057000003,103.36886043092298,393.7422999999999,249.49734224965707,483.78469399999983,14126.075856847849,2164.0,433.2497,289.0,444.3333333333333,9926.184862842707,8347.388786000003,129.07420436000004,443.73470000000003,176.0493827160494,529.9997719999998,18220.80718373106,3112.0,793.3128,471.0,736.3333333333333,19428.543320261397,11717.328024999999,200.0587873821879,805.1124999999997,392.6512345679012,974.3635999999999,27790.138739021313,3289.0,972.9011,526.0,661.0,24741.963694254995,11967.715172000002,232.039621087282,988.1810000000002,408.4166666666665,1214.0645000000002,31001.90285647129,3195.0,1028.2337000000002,524.0,665.3333333333334,26934.87006398054,11584.05783,238.7427591586209,1044.6688000000004,442.19135802469117,1293.4460279999998,31144.742182957154,3109.0,1023.2565000000002,503.0,661.3333333333333,27465.095333727255,11221.584328,233.715674897111,1037.1968,434.9182098765432,1291.1733879999997,29869.015219707606,3010.0,877.3195999999995,509.0,593.6666666666666,22552.08245267549,10917.561920999997,225.66878434728193,894.8255999999999,334.8703703703706,1102.833434,29415.65201687932,3082.0,877.0203999999994,483.0,603.1111111111111,21989.32664450137,11323.617596000007,220.40227461764098,892.3712000000002,375.12362825788756,1090.2646089999996,29067.07539430445,3101.0,944.5554999999999,471.0,459.0,24872.109239112713,11284.356154000001,219.58024847237598,959.9729000000002,360.34876543209845,1188.2514319999993,28473.680192623473,726.1935483870968,7.68709838709677,0.9631244348501018,40.33870967741935,255.20430107526875,106.42604433680418,3287.2960372419366,19.0124538601662,7.1917177419354825,82.33006576618436,4.534929870967738,3120.5555975517336,146.726326742976,0.1411340010405913,-0.3746516434893488,12.230749219562949,53.53011908891197,-29.18328125253551,646.9246292062955,-1.7886906752938008,0.49039211758586077,-14.551818437049034,0.3864402039542093,-29.982727535109376,8.264308012487051,0.280427367325722,-0.18132113867930807,0.8012486992715908,41.153543762284635,25.187141728739547,78.60024258844919,5.009209946044508,0.19071186264310114,37.887496092461994,0.03462760874088297,735.3899842196157,-242.77419354838702,-3.451594354838699,0.03407620027451691,-4.685483870967741,-46.01792114695341,-9.10741631050922,-1090.7960903790324,-2.569992565279973,-3.2397185483870845,-20.646009640913324,-1.8563421935483928,-265.6832210883529,-36.43080124869927,-1.1144407648283086,-0.10994412451034342,7.399323621227887,25.57752341311133,-47.34079118283113,-158.47005404656625,-2.141404892107521,-0.9176983610822105,-17.891271349610104,-0.9375532611862596,-384.5649074714028,-45.58896982310094,1.522054370447445,0.2883001323512229,14.485431841831431,47.38547808995261,64.09176729972931,-134.96703015556736,6.14158920207748,1.0813390218522312,-6.879234192135255,0.49795351092612183,1090.7175983683137,-277.4817898022892,-0.5006865764828332,-0.14991206486146635,-13.028616024973989,-60.431494970516844,-4.764750975041768,-1230.9355041586891,-6.8917547250519675,-0.5786863683662862,-1.9610612498554705,-0.3613965390218482,-520.8717647868117,-31.56919875130073,-0.9994995577523357,0.08782102736744643,-18.625130072840797,-105.72806104751999,-24.598567284939246,-239.80239632440154,-2.2138827597593767,-1.212337122788753,-15.180291551403215,-0.4601363194588971,-1287.2480763254734,30.838709677419327,-1.4896233870967763,-0.07406039660428386,-14.814516129032256,-124.1935483870968,-25.17367065280279,98.52496387903227,-4.194403370523426,-1.0601137096774216,-12.900261764901096,-0.33947341935483516,-572.7724804133276,0.6855139595661952,0.6030922446800449,0.42384102359680187,0.35878980845192177,0.27667400510052687,0.20494074925039976,0.1694577144376493,0.11286155214510045,0.10787324443288324,0.06124155744759002,0.06784098888293785,0.032997153669240505,0.04237064345082753,0.01882378364527586,0.026800918634067358,0.010445265082443306,16.01347014249969,5.676365434645714,3.5810259857331017,2.1742064224798923,0.4298347571470598,-0.4200937045877964,4.04276354304988,0.968605738135073,6.017773481461402,0.6164984880041977,14.690912201168139,10.310802541021639,32.066888492588,11.689097417253201,2.9561022383972575,0.7609226475571619,3.5371139335413893,2.223668191009508,7.014211999391584,0.29790041157509073,3.7684844550400163,2.4193270263573923,24.442983037770052,14.701787237862831,0.2839596807587484,0.6017440398360927,0.7550964011155692,0.8246374954001754,0.8246374954001754,0.8246374954001754,1.1204134933714982,1469.076729839661,0.0,3.0,9.0,0.0,8.0,0.0,2.0,0.0,0.0,4.17468160490793,2.1831948605986726,1.222168346948668,0.7863691532607024,0.7863691532607024,0.7863691532607024,266.9857339664273,2104.1968850693056,74.27478180193071,33.93865943660171,75.28312216375416,,15.0,945.0,10.023291153407584,8.417796984328938,0.0,32.12768123885091,65.22464186526132,11.132916377212704,15.64200186923097,24.395944776997908,26.06355014676464,14.704819995694466,16.96666666666667,43.5,19.0,0.0,24.5,0.0,0.015238095238095184,-5.5,0.16929824561403517,0.04398148148148173,-0.12531676413255344,0.015582010582010475,0.15094690265486688,0.0,0.6166666666666657,0.8609523809523806,0.4473684210526305,0.572685185185184,0.8453703703703701,35.133251914660605,0.46057261850102194,0.976572618501022,33.56493084655831,8.118076365289454,8.83556457858262,68.69818276121892,16.953640943872074,0.5630530973451331,0.06876227897838898,0.04911591355599214,0.30648330058939094,0.43478260869565216,0.31947533049970733,-0.9090802017602414,-0.058164689729824914,-0.014662583899358731,-0.060605346784016106,0.6805246695002926,1.9364609557942505,0.04227835820236132,0.03123324122248792,0.04120129693179257,-5.3624820974473515,0.7628922949219785,0.7284199497556177,1.4225304523115823,0.8125227520931926,0.620749375227176,1.4768319839650252,0.7549893215626374,1.1730392027868701,0.6665126562979323,0.7247646584471918,0.6624341672336048,0.9746713936818397,0.9584221748400853,1.0448578378393123,1.3983553944030367,1.1589364254298282,0.9711173843431367,1.0123453221726681,0.9463747694929727,0.8502208812031505,1.0205802373473964,0.5833150916258865,1.057079246294281,0.8020108186720543,1.1841240227434258,1.1740641682618194,1.105933383534144,1.1170731707317074,1.0677270301396031,1.1012050999574103,1.1734887124977318,1.1078447813632455,1.1627370642528978,1.0666692890608254,1.163403820748347,1.0034832994795584,0.9478539782070206,0.9108118875476326,0.8619549076640542,0.9350555635733874,0.9085590558339814,1.1519470192756318,0.950079778097482,1.0148135278075348,0.9135718918890366,1.1060061447352663,0.9204076609845253,1.0437132573996297,1.1179952702474025,0.8449827036784687,0.7711511274379731,0.8146051103368177,0.9479553727757786,0.783381938936828,1.101911463700733,0.947012666013984,0.8712911138554208,0.9730257279021528,0.8478875709269819,0.8769280155946599,1.2979111757679853,0.7324074586966213,1.0345109888457635,1.244410569105691,1.0393678957988075,1.1192618237810452,1.2770364004568222,1.3211133578220886,0.7543130090280821,0.4435771262302137,0.691435520055985,1.0992355902609,0.8426772860620907,0.8782714263916227,0.900160482213167,1.2226258432797095,1.125523259068546,1.1542523772869173,0.8622817285952107,0.9743064840251604,0.8945059126892108,0.7972829894767949,0.851353552509177,1.1511487253532997,0.9738539445628998,0.8974575120735391,1.0285009431494838,1.0682926829268293,1.1032808067189128,1.125008635884875,0.9764506187307798,1.0978489685552004,0.8901508792035638,0.6252156702249094,0.8036985904665201,1.0681895972733615,7.5,0.1958922558922559,4.000000000000002,2.4444444444444446,1.5011111111111113,1.4211111111111112,0.8368707482993197,0.5868409863945578,0.3686303224993701,0.29720679012345674,8472.404848229588,9353.868782366779,3983.596244432364,3711.6860424469246,17.64092506949066,0.4766049759263538,9.233172401427453,0.9106028028636576,0.0,0.43478260869565216,1.7795147054789453,3.7710014497882023,4.732027963438207,5.1678271571261725,5.1678271571261725,5.1678271571261725,0.1875,0.005761536938007526,0.06779661016949155,0.0421455938697318,0.026805555555555555,0.026316872427983536,0.015497606449987399,0.01107247144140675,0.007372606449987402,0.0072489461005721175,0.3975177994027237,25.2875,10.636598678540649,5.44,207.12032856114115,0.0,4.518090214168808,227.40931180228884,,162.08766770703286,173.08083574152235,171.35965108741217,162.10902603104893,230.39359948350864,174.6756459102337,175.34566495759177,217.56087180562983,0.1869702659410834,0.01698971527702259,-0.3599665350313407,0.2805743374292073,0.1941007023532375,-0.2537482682075576,0.1821091453342636,-0.08705905659071315,0.06309976380944843,-0.16355946897348553,0.07885488705193269,-0.008891112395704516,0.005783436447737931,0.018539149814988137,-0.09567487320122783,0.010094322926567062,0.08195040570328424,0.12027152681955304,0.012151137325389798,0.13389455615059667,0.013476494321417143,0.23386719193899744,0.0038804651294900927,0.11976161525816578,-0.1337242359630419,-0.17960453638175858,0.014152356244526366,-0.04646141543382647,-0.07212718743855513,-0.03423002843810366,-0.13272867159164864,-0.05406966579236726,-0.18019164069780025,-0.10030848122749011,-0.1637372348739105,-0.03405588688075901,-0.01840438551115933,-0.0531862701178721,-0.04187883665492195,0.06729379254215474,0.036768463886976105,-0.1631896369235223,-0.017685338419789757,-0.041320503254318394,-0.046813628779425936,-0.0797237511894603,-0.07584559422878094,-0.04521085409174091,-0.023168066978034994,0.07307185535930115,0.11047012573395207,0.13252318120370907,0.06852352328251886,0.22224742326854968,-0.01515204610857945,0.11921337923370229,0.055489607033777734,-0.030836426229617322,0.04052291057027355,0.12899200804080213,-0.16451719576719573,-0.02804353167361921,-0.06701675301276601,-0.13906104224976681,-0.10195406496072214,-0.01927620269950725,-0.16122251048943076,-0.1560705054813706,-0.034644940161030084,-0.010255619354269902,-0.034311729632370724,-0.0718667638022336,-0.01911541582865813,-0.05717323199283055,0.04009485885492824,-0.20302517290955968,-0.1821691597235795,-0.10163293539486071,-0.032076522509546505,-0.05120224720108146,-0.07412476792487126,-0.08107635715834352,-0.044615782645532,-0.18138564083525618,0.016986496090973687,-0.07751290862087538,-0.030758391719470986,-0.1469012395041983,-0.19465745344231913,-0.09461470003765704,0.011988572098507486,-0.0882453869736678,-0.05896303207206332,-0.06267582392822357,-0.029942991756332738,-0.0734192950592135,16.34638847178184,24.80457690780897,10.35319932599702,20.384590539168865,41.34283839118264,46.193231413274255,46.632517000511726,46.632517000511726,46.632517000511726,73.22137152355114,48.62357959787281,14.972374951848668,5.388840776391243,0.0,24.59779192567833,13489.181276701993,11392.998810084542,2484.7704070958243,380.0,59.0,80.0,110.0,142.0,170.0,217.0,267.0,309.0,513.1616797240008,40.0,5.293304824724492,6.1675164908883415,7.075808863978387,7.9672801789422,8.879472402074802,9.779114097696372,10.693874867521128,11.5986535188529,12.51535352529819,0.7258064516129031,0.9920645161290325,1.1308037272255111,0.6897373644052095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.698468331079776,0.979190385831752,1.0124756243685833,0.6474020505177184,5.0,3.0,1.0,0.0,1.0,4.0,4.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,9.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,9.636772684650527,0.0,11.642267275834955,10.023291153407584,0.0,9.998591539151516,18.385754026223353,9.40389779959727,11.336785877934737,12.13273413692322,12.13273413692322,61.6401177412511,41.39969803585194,236.24293520031358,-672.2389952939714,-43.011136432025566,-10.842564440225344,-44.8159330195981,503.2286691667409,1431.9578897753343,31.26364536990514,23.096094996376365,30.467189144156055,0.4666666666666667,0.8220009142020969,0.13276064004423935,174.29481096806074,0.07407714401252026,7.815604628621328,0.1779990857979032,8.0,0.125,0.298867321921289,0.6333350889371635,0.7947383184500248,0.8679302609003821,0.8679302609003821,0.8679302609003821,2.1483999999999996,,3.0000000000000004,2.1076367963749822,1.9223486652988537,2.9960153915372705,-6.025879658221217,1.9277080783353737,1.8700375607606525,-3.1170980815351426,137.2284999999999,13.154659938128987,0.0,29.3704463806432,0.0,6.544756405912575,63.63798127886316,35.339459039160815,0.0,11.387855989696924,4.394449154672439,0.0,5.75890177387728,3.044522437723423,7.311218384419629,5.351858133476067,8.948066103458935,7.423568444259167,10.63057711727143,44.99999999999999,10.012429097475872,14.244740236359188,3.0297711507004035,0.0,1.7272050185815064,3.9758270451970166,3.8024474625297424,0.0,61.50800000000001,0.0,23.689386433534175,0.0,0.0,-3.134761120382375,0.0,0.0,0.0,70.10983108798169,4.899909730850478,5.817862777835028,0.0,96.52631491298484,21.30491051312021,0.0,4.877147193701299,30.462311845459517,0.0,32.50740155586334,0.0,42.763716593122986,43.30503652694611,46.37560487669552,454.81862360457774,,325.1930417475312,346.3115833955562,342.9336166616438,325.237108202748,463.12438466590913,349.4648568394434,350.7607100594765,435.8554083208821,46.37560487669552,454.81862360457785,,323.08790082624427,344.57436997581726,341.37561153457466,323.1350084830252,466.86874169075753,347.868163652655,349.2112503662747,438.2388416927948,4.966189116983912,331.38824582821974,,237.81081185590267,254.6043389499626,251.98721194359644,237.83817313532558,335.4313236784,256.81867643676287,257.71995457589213,317.65558192712973,1.3250172821913004,12.994817817273649,,9.291229764215178,9.894616668444463,9.798103333189822,9.2924888057928,13.232125276168832,9.984710195412669,10.0217345731279,12.453011666310916,2.5196038597685644,227.40931180228884,,162.08766770703286,173.08083574152235,171.35965108741217,162.10902603104893,230.39359948350864,174.6756459102337,175.34566495759177,217.56087180562983,60.70980392156862,0.0,1.2798673527750268,0.0,0.0,0.0,0.0,62.77348871085216,6.219282594851261,0.0,5.5861453361633036,0.0,0.0,6.150992725548205,0.0,0.0,0.0,40.13892713209854,607.8463348162101,110.32991173969461,233.80208988686854,293.3857337331688,320.4052837418227,320.4052837418227,320.4052837418227,1809.0,154.9703787699768,131.62526955084445,87.86316154915835,144.17000000000002,107.55000000000001,0.875,9.807067743649224,6.321928094887363,4.824514564936852,5.816497612072428,,5.815650121385003,5.808473551699649,5.806422745247946,5.815644529836485,5.798610477495681,5.808550374680194,5.80926490412697,5.799912767678622,0.13784327328391005,0.16618564605921224,,0.1661614320395715,0.16595638719141853,0.1658977927213699,0.1661612722810424,0.16567458507130517,0.16595858213371983,0.1659789972607706,0.16571179336224634,2.8264730899217194,3.0134612642262435,,3.013315548970842,3.012080777077664,3.011727643236331,3.0133145875046106,3.0103812845000113,3.012094003009027,3.0122170088290594,3.010605845879229,355.5400000000012,530.7143157614588,254.6692412060269,,254.94277487226728,255.69052603924828,255.95357106163115,254.9438086615518,257.2691641369325,255.70502609890332,255.64034091106282,257.01880283634273,15.163266164613109,7.2762640344579115,,7.28407928206478,7.30544360112138,7.312959173189461,7.28410881890148,7.3505475467695,7.305857888540094,7.30400974031608,7.34339436675265,7.526986833208389,6.792728578390428,,6.793802076203975,6.7967307990276815,6.797759033486162,6.793806131181368,6.8028858365939415,6.796787506832818,6.796534506835717,6.801912213501647,31.913406807424714,15.845360826926935,8.228428694024755,2.8494731425699076,1.6426409190857245,8.191174980470944,3.1011214697799554,6.219282594851261,-3.134761120382375,407.89974781521374,174.69494231295798,-497.1016483681298,-31.805514063040214,-8.017768522066609,-33.14010989120866,372.1233113522276,1058.8921981382282,23.11857800004639,17.078906421584332,22.529621236983584,3828.0,58.0,3.129608982164191,2.0705525765922577,0.28867513459481287,0.09128709291752768,0.816289339979239,0.4204978601420446,0.14433756729740643,0.04564354645876384,0.0,0.0,0.0,0.0,0.21407617506269555,0.12066320886671358,0.6520053773696521,0.3131937826729581,0.9087844095838588,0.3953954082960264,23.992988584816832,21.10822856380157,16.953640943872074,14.351592338076872,16.323766300931084,12.091504205773585,13.556617155011942,9.028924171608036,11.866056887617155,6.736571319234902,9.633420421377176,4.685595821032152,7.203009386640679,3.200043219696896,5.815799343592617,2.2666225228901973,6.153125923303311,3.930268942258475,9.805825551228532,5.1867544257354465,14.445642347271079,6.401495410102738,114.93789606766902,51.54921557063997,36.107911289714956,33.0301919120063,33.0301919120063,33.0301919120063,198.0,238.0,72.31941099999999,45.91858900000005,0.5,410.12,9.284722222222221,7.333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,18.0,20.0,62.0,0.0,1.0,67.0,20.0,2.0,10.0,57.0,22.0,40.0,45.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,9.0,1.0,5.0,35.0,12.0,0.0,7.0,3.0,0.0,6.0,5.0,2.0,0.0,0.0,3.0,4.0,3.970291913552122,8.83183198444872,4.639571612705423,5.227089857259669,5.886798234879631,6.435849842446805,6.9159714337534774,7.469066058179338,7.9933350960440235,8.351762858776668 +3440,NS(=O)(=O)c1cc(C(=O)O)c(NCc2ccco2)cc1Cl,0,43.9375,6.946946875000001,3.71875,10.626543209876544,161.90163234363246,178.09763621875,1.7861238110418438,7.04885,8.416641958638166,8.5115819375,252.9204511305336,39.666666666666664,6.7669030303030295,4.333333333333333,7.872053872053872,147.90331210331368,155.1834583939394,2.017104698666666,6.947033333333333,3.516149145778776,8.286984303030303,294.6120213845012,32.9811320754717,6.871018867924528,3.9245283018867925,8.737945492662472,151.7782636879379,127.47019690566037,1.7989631346358113,7.005979245283019,5.928061184874602,8.36147637735849,262.7708658393747,29.636363636363637,6.659972727272727,3.3333333333333335,5.8125701459034795,156.33188239176465,112.80681631818182,1.6178810671726664,6.796748484848485,4.079637250419144,8.257411681818182,224.18065038383557,30.176470588235293,6.772679411764706,2.985294117647059,5.753267973856208,159.44024656470245,115.26100536764706,1.4839729460205295,6.924151470588235,4.504432946017913,8.385601264705883,211.64388051100642,24.573529411764707,6.4786,2.7205882352941178,4.995098039215685,161.84985118140528,91.6071844117647,1.3291746437380587,6.603376470588235,3.652603788428952,8.147742264705883,187.27803754604133,30.263157894736842,7.114875438596492,2.719298245614035,7.701754385964913,163.59828814656814,115.27978091228071,1.3490318664700351,7.210880701754386,7.584912641686521,8.73573705263158,198.97305571806456,25.291666666666668,6.8969375,2.6875,5.013888888888889,162.136076501826,93.0642063125,1.3796875695530624,6.993793750000001,4.849344135802469,8.540180125000001,195.12344733321902,23.714285714285715,6.547119047619049,2.2857142857142856,3.825396825396826,163.97361151599483,87.82354554761906,1.2628474118081665,6.653885714285715,4.238352439741329,8.24686819047619,172.33623199507042,15.71484375,0.20156396484374997,0.03762016017385722,0.7646484375,4.617235725308642,1.5686117279010525,71.27313805371095,0.3262011502344912,0.18772460937499996,3.470222276624538,0.14611033984374996,46.36165518600801,1.5635653409090908,-0.04109767696496211,-0.022368787883573344,0.09993489583333333,-0.19142670922184848,0.06260389540314093,6.681206956705725,-0.005680099719852996,-0.030872526041666647,-0.9149880156477144,-0.014188120146780305,4.896559403176662,-0.8422022405660378,0.0385015422317217,0.004269522894149258,-0.06122862617924528,0.49116748922664766,0.0027561293377541185,-3.418305854418489,-0.005142678419334401,0.030379753832547166,1.1884710210618334,0.020732687278891503,-0.7350742638355696,-0.09552556818181818,-0.03863129438920453,-0.0012650113745298374,-0.11881510416666667,-0.9468045618219231,-0.2262587162174612,-0.7103898747336655,0.018902018462235104,-0.038282374526515145,-0.3648126220223894,-0.029825053858901506,-3.410502150617104,-0.19462316176470587,-0.004118008961397055,0.0038215446994591387,-0.02567784926470588,-0.4823523738198984,-0.2973911097564045,-1.0245509218175557,-0.06383792182020537,0.0046679457720588385,-0.3735701996021709,0.00479615739889706,-9.999787737657146,0.5305606617647058,-0.027784369255514717,-0.012034837635368577,-0.08817784926470588,0.12136040758896165,-0.1818037405089248,2.142189915498624,-0.028480930836778415,-0.022968175551470616,-0.641726301599154,-0.021626292049632352,1.9916905535972969,-0.044887609649122806,0.09106377638432016,0.014035646228580952,-0.025613349780701754,1.0288277358132987,0.2823368899952485,-0.050604921035499684,-0.015497700882821258,0.07948865816885967,1.6503478156705764,0.0621390318667763,-0.6828401899677637,-3.7057291666666665,-0.03403610026041663,-0.0032595982426551293,0.019856770833333332,-1.19970100308642,0.17880351050628254,-16.765365735351565,-0.007184944023821293,-0.03486249999999997,-0.7225909541972687,-0.017148201822916657,-5.897218273169687,0.32979910714285715,-0.050858012462797614,-0.0065951192156541135,0.001720610119047619,-0.65179260361552,-0.14578289737602437,1.4583244500093029,0.010124797776081726,-0.044620145089285725,-0.7891525729371646,-0.038083493117559514,0.8654837338983393,,,0.47687074829931975,1.369047619047619,0.7380952380952381,0.047619047619047616,0.6309523809523809,0.10714285714285714,0.6753807205531552,0.029881014118976236,0.03807149030945242,1.0585303151273346,0.27536646138551485,0.1906674560370849,1.7339110356804899,0.46603391742259975,1.977058638720847,1.1932351998883852,0.17803668820350563,0.41969964069935145,0.08463777183085555,0.7838234388324614,10.31274125412501,1406.0,222.30230000000003,119.0,340.0493827160494,5180.852234996239,5699.124359,57.155961953339,225.5632,269.3325426764213,272.370622,8093.454436177075,1309.0,223.3078,143.0,259.77777777777777,4880.809299409351,5121.054126999999,66.56445505599999,229.25209999999998,116.0329218106996,273.470482,9722.196705688539,1748.0,364.164,208.0,463.1111111111111,8044.247975460708,6755.920435999999,95.345046135698,371.3169,314.1872427983539,443.158248,13926.85588948686,1956.0,439.5582,220.0,383.6296296296297,10317.904237856466,7445.249877,106.78015043339599,448.5854,269.2560585276635,544.9891709999999,14795.922925333147,2052.0,460.5422,203.0,391.2222222222222,10841.936766399767,7837.748365,100.910160329396,470.8423,306.3014403292181,570.2208860000001,14391.783874748437,1671.0,440.5448,185.0,339.66666666666663,11005.78988033556,6229.28854,90.383875774188,449.02959999999996,248.37705761316874,554.046474,12734.90655313081,1725.0,405.5479,155.0,439.0,9325.102424354383,6570.947512000001,76.89481638879201,411.0202,432.3400205761317,497.937012,11341.46417592968,1214.0,331.053,129.0,240.66666666666669,7782.531672087648,4467.081903,66.225003338547,335.70210000000003,232.76851851851853,409.9286460000001,9365.925471994513,996.0,274.97900000000004,96.0,160.66666666666669,6886.8916836717835,3688.5889130000005,53.039591295943,279.46320000000003,178.0108024691358,346.368464,7238.121743792957,502.875,6.450046874999999,1.203845125563431,24.46875,147.75154320987653,50.19557529283368,2280.7404177187505,10.438436807503718,6.007187499999999,111.04711285198522,4.675530874999999,1483.5729659522563,51.59765625,-1.3562233398437495,-0.7381700001579203,3.2978515625,-6.317081404321,2.065928548303651,220.47982957128892,-0.18744329075514887,-1.0187933593749994,-30.194604516374575,-0.46820796484375005,161.58646030482984,-44.63671875,2.04058173828125,0.22628471338991066,-3.2451171875,26.031876929012327,0.14607485490096828,-181.17021028417992,-0.27256195622472323,1.6101269531249998,62.988964116277174,1.0988324257812496,-38.95893598328519,-6.3046875,-2.549665429687499,-0.08349075071896926,-7.841796875,-62.489101080246925,-14.933075270352438,-46.885731732421924,1.2475332185075168,-2.5266367187499994,-24.0776330534777,-1.9684535546874995,-225.09314194072886,-13.234375,-0.28002460937499973,0.25986503956322143,-1.74609375,-32.79996141975309,-20.222595463435503,-69.66946268359379,-4.340978683773965,0.317420312500001,-25.402773572947623,0.3261387031250001,-679.985566160686,36.078125,-1.8893371093750007,-0.8183689592050633,-5.99609375,8.252507716049392,-12.362654354606887,145.66891425390645,-1.9367032969009323,-1.561835937500002,-43.637388508742475,-1.470587859375,135.4349576446162,-2.55859375,5.190635253906249,0.8000318350291142,-1.4599609375,58.64318094135802,16.093202729729164,-2.884480499023482,-0.8833689503208118,4.530853515625001,94.06982549322285,3.541924816406249,-38.92189082816253,-177.875,-1.6337328124999984,-0.1564607156474462,0.953125,-57.58564814814815,8.582568504301562,-804.7375552968751,-0.34487731314342207,-1.6733999999999984,-34.6843658014689,-0.8231136874999996,-283.066477112145,13.8515625,-2.1360365234375,-0.27699500705747276,0.072265625,-27.37528935185184,-6.122881689793023,61.24962690039072,0.42524150659543253,-1.8740460937500005,-33.14440806336091,-1.5995067109374996,36.35031682373025,0.7438550411728638,0.5766692116237613,0.44485055753975433,0.34414238162876454,0.3067809626929869,0.18901054967991476,0.18110913777112775,0.10572985251473319,0.11997709568300179,0.05934585062714476,0.07160405685157264,0.030214107948966208,0.05124194574596306,0.016838952037897908,0.03150673059085817,0.009484279786682783,17.00110388880614,5.6928542262635355,3.5814261743340685,2.179844014328194,0.4720188100164177,-0.5360294751255501,4.042996155572617,0.9678889850755233,6.023267157704022,0.642093541825073,14.54059382005876,10.319285006927183,35.45051754014301,11.704861165417968,2.955644146208149,0.7414332869771246,3.537468256045737,2.233693707097964,7.0145839140522455,0.30019322108798263,3.76877791375522,2.4324943090954294,24.442066744733705,14.699967269062627,0.3809870957365257,0.7678149455545009,0.8516016262776791,0.898264729087415,0.898264729087415,0.898264729087415,1.959419276617892,771.1955159056122,0.0,2.0,1.0,0.0,8.0,0.0,1.0,0.0,0.0,2.958841821503155,0.8863914992687585,0.4375,0.1875,0.1875,0.1875,-51.483333386472765,1195.1298974169463,82.49838705007761,37.34780929427957,81.7126980358066,,10.0,341.0,20.88807991687721,13.212334168400758,22.81822748603446,5.760247418874442,6.06636706846161,12.329530064100666,12.13273413692322,0.0,5.316788604006331,26.263591959734512,10.014285714285714,28.75,15.5,1.0,13.25,0.0,0.023129251700680274,2.25,0.2993486533957843,0.10406037414965974,-0.19528827924612457,0.10655782312925155,0.22033802816901393,0.0,0.7370535714285715,0.9659863945578229,0.4377049180327872,0.6329931972789118,0.8594285714285713,14.182995131616261,0.627501296498501,0.7995012964985009,22.22913661767403,5.782695689095812,4.004016576778783,36.41213174929029,9.786712265874595,0.49366197183098603,0.2444127436994769,0.08321445553970519,0.2995720399429387,0.08333333333333333,0.5511418435539164,-1.3086340375878496,-0.10933840761340535,-0.0408948136746203,-0.10905283646565411,0.4488581564460835,1.0657711230680935,0.054563940056805454,0.03330534759587792,0.053288556153404665,-3.3571788057487355,0.7285381782026077,0.8736372966516641,1.5703088367042637,1.074964201400983,0.7210755814413524,1.187865254783221,0.7092325591219416,1.1296895767318216,0.7994294713245971,0.8899946552338204,0.7719314997799177,0.7703960664078159,0.8124416679564204,0.6109000505929115,0.797262705104433,1.2191137135834598,0.722000465475677,1.1080174513254735,0.7980799824546556,0.9737324899372484,0.6097015465946356,0.43403236118896016,0.6630459541535333,0.8921351910863557,0.9060026062263199,1.0461713963054795,0.9171212336440754,1.1901389372653741,1.1204870108393086,1.1461375142143644,0.909499294305437,0.8974105132448185,1.0586734640794881,0.917462057167603,1.0714916102571146,1.0226170013323024,0.9790761942360837,0.8996931879342529,0.810388830116945,0.9315603636090453,0.9835208348821078,1.1820714732892812,0.98814671815956,1.0936917583620933,0.8734765645320709,1.0033357559990959,0.8725578880041586,1.143773715164742,0.9740901580617332,1.0421606888116834,1.2433921305278022,1.0992412290586733,0.9549897980561936,1.0199692770307003,0.9864074209835952,1.0174343851393024,1.0569128280766606,1.0918487075309342,1.058860433053781,0.9951518825329912,1.0620336573474451,0.7322616441953472,0.8436456391188284,1.0113150052653985,0.8564697414551493,0.7261087902536657,1.0638728208843988,1.0010930131924916,0.7543949818884724,0.7494497604167777,0.7796861423953161,0.9463303270597789,1.2130043914160245,1.282946102620378,1.2896030785790207,0.8314176245210728,1.2825062928882531,0.8213573727523302,1.2116902032664978,0.9903640556333884,1.2831706809551058,1.282522618004736,1.2320033114599702,1.066587021515915,1.0288933868352212,1.2868282264929092,1.0450073220678018,0.8446147296722009,1.1823646935770018,0.9490319020958855,1.036914087675855,0.9245368964498945,1.292787459466958,1.3140456642959606,1.2964293218208234,1.0246485658859446,6.0,0.06000000000000001,2.8888888888888897,1.8472222222222223,1.3694444444444447,1.156111111111111,0.36653061224489786,0.2647392290249433,0.2514644746787604,0.09530864197530865,4986.574217173687,5328.146740174374,2435.4171266550584,2308.8035282728542,11.406513929744884,0.4612857560184787,6.144851528127207,0.856271689809452,1.0,0.08333333333333333,2.041158178496845,4.1136085007312415,4.5625,4.8125,4.8125,4.8125,0.2727272727272727,0.010000000000000002,0.0902777777777778,0.06157407407407407,0.04564814814814815,0.04624444444444444,0.014097331240188382,0.014707734945830185,0.01934342112913541,0.011913580246913582,0.5865337847337847,17.355371900826448,7.05078125,4.487534626038781,124.92226167058834,1.0,3.9601626019451373,92.6793527434833,,63.21578729901488,69.40471547034718,70.19518120427264,63.19984400664531,88.25205852526773,69.62742354498022,69.50192115995894,83.68886305772834,0.09949607936185118,-0.203893969821543,-0.5945957640849634,0.1306939123031077,-0.04145915881499693,0.03991038335975642,0.09374088386105313,-0.017412874589098872,-0.16445646707936665,-0.2636684173838331,-0.09710551739153468,0.10561657869053925,-0.053592784883148316,0.19101401513692015,0.11349029016405436,-0.08007421865587122,0.10637695765334036,0.0017570500645447005,-0.047960647556201004,-0.015765359550809564,0.16183149313077203,0.3424769154031975,0.14189746804410275,-0.01585522045937255,-0.006078683931032924,-0.1916577420926953,-0.033625890179194706,-0.15538527032779906,-0.2050587447013296,-0.14424137738675222,-0.009967147429348776,0.057945897642136764,-0.20392837494226457,-0.10512658640911042,-0.20412692141292907,-0.07356299374847161,-0.01238467049758009,-0.020430283580645418,0.10158236120735031,-0.033581248591390576,-0.10446778170236376,-0.18958873280537133,-0.014374993858772727,-0.1957010935562771,0.024865923480144887,-0.10765022232683612,0.03282558512988238,-0.21569091305167834,0.03376175227734643,-0.13784393096778402,-0.31990394458053784,-0.11531815791450681,0.02628421306794971,-0.11590104630429801,0.03005606283091232,-0.08731094545897453,-0.12235037072624416,-0.18492368800748893,-0.14801342651560084,0.04295986727838809,-0.002856382816349848,0.4517859948573235,0.37308842290189187,-0.033496896775783644,0.22282330749845486,0.17999157151084247,-0.000710013932561299,-0.047509645112166723,0.4234322736561011,0.4755740941401191,0.42528839460114615,-0.014728555036012725,-0.23581075482641478,-0.16886004542925626,-0.08664498576272066,0.025968497232865047,-0.259831005922104,0.11398838050607855,-0.23522699004381287,-0.02202611492527345,-0.18571086719034477,-0.20822612979711722,-0.1173647384658396,-0.1272003393647057,0.02098647065090018,-0.252316987821817,-0.17530811100153568,0.0022501976524965032,-0.14116511315262134,-0.09293752863310245,0.020461066957797192,0.031038510344931245,-0.23768937507896057,-0.22740692383104866,-0.2606488572833785,0.018668093932926344,4.504807837463253,11.089650116439543,5.798364452997587,27.65382403462792,47.098361118737095,50.30159375,50.55359375,50.55359375,50.55359375,41.51823141313779,25.05793919765609,3.7387704522736183,8.81369245468638,1.7773932084479664,16.46029221548169,4088.265090229074,3068.487642899378,1385.6404003257817,40.0,32.0,38.0,47.0,51.0,59.0,52.0,49.0,45.0,330.0077201320003,22.0,4.6913478822291435,5.517452896464707,6.408528791059498,7.259116128097101,8.153349757998892,9.01225522000275,9.90862433664128,10.771868732388134,11.669852287744238,0.8854166666666666,1.038875,1.1245053501016846,0.8605106777120973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7235165232035929,1.0272058823529413,1.0532820466132555,0.6983714443822513,5.0,0.0,0.0,1.0,0.0,0.0,5.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.840466935900384,10.655730894392217,0.0,10.023291153407584,0.0,0.0,18.3513079060087,0.0,0.0,11.600939890232516,24.26546827384644,0.0,29.081390481673516,277.4109936514849,-658.6860949487788,-55.03424690950472,-20.583940467149336,-54.89050791239822,225.92766026501212,536.4438024681675,27.46414014057289,16.763868827130235,26.82219012340837,0.5,0.5780139233488739,0.20113794377546676,110.14523225654293,0.14207538729716482,61.521268563638856,0.42198607665112603,5.0,0.22727272727272727,0.40823163569936904,0.8227217001462483,0.9125,0.9625,0.9625,0.9625,1.8907,,2.8077731092436973,1.8919245433745857,1.3609305176324487,2.817871722168638,-5.789752072896474,1.8206389538757113,1.8041402641403526,-2.3927541418679086,75.81920000000002,22.73601250029481,0.0,0.0,5.138973737607942,11.440239881430351,5.316788604006331,46.874963493798255,0.0,0.0,3.8066624897703196,0.0,5.153291594497779,2.3978952727983707,6.670766320845874,4.442651256490317,8.275121630216509,6.259581464064923,9.93183202554527,28.333333333333332,6.990384591002677,0.0,0.0,5.104997218023011,0.0,0.0,-0.11219866727554995,0.0,33.244,0.0,33.93030219501585,0.0,0.0,-4.105997483098177,0.0,0.0,-1.3069337364575457,35.98417120325391,10.455762341614273,5.687386274683562,0.0,19.493629667121493,16.56804755932016,0.0,16.118236094643258,39.841265682056616,5.022633313741326,0.0,0.0,27.536341686787114,23.152528742514974,25.138767695268402,185.3587054869666,,126.81742257939327,138.62924765084915,140.26074997829457,126.78398218733705,178.64738391261426,139.08145290387705,138.83201943761878,168.0613701559904,25.138767695268402,185.35870548696664,,124.54446339571979,136.9175063973198,139.02943189091286,124.5028479360577,182.29386912343193,137.4342081360847,137.1997020557775,169.77048025732458,4.86830321233221,135.55503670312544,,96.01677468471777,102.32730953225662,102.8431501051887,96.00883310656008,134.20647010829344,102.91998537614629,103.04260653575558,125.98317973374435,1.197084175965162,8.826605023188886,,6.038924884733013,6.601392745278531,6.679083332299742,6.037332485111288,8.50701828155306,6.62292632875605,6.611048544648513,8.002922388380496,2.434782684560184,92.6793527434833,,63.21578729901488,69.40471547034718,70.19518120427264,63.19984400664531,88.25205852526773,69.62742354498022,69.50192115995894,83.68886305772834,32.87058823529412,0.0,0.0,5.8357995909269045,0.0,4.987276141951016,9.161756503527338,33.70502549162418,0.22056602733686081,2.821825396825397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.34788622023204,290.9367501234155,65.31706171189904,131.63547202339973,146.0,154.0,154.0,154.0,456.0,116.39239603262574,212.40190379308152,67.93780205422937,131.01000000000002,122.63000000000001,1.0,7.859389023128288,5.459431618637297,3.8499957668748728,4.510842272075508,,4.516800890681777,4.513039616553613,4.510347486020676,4.516750586730072,4.500655952447709,4.513359122036873,4.514138383349177,4.506570337305592,0.18333313175594632,0.2148020129559766,,0.21508575669913224,0.21490664840731488,0.21477845171527027,0.21508336127286057,0.21431695011655758,0.21492186295413682,0.2149589706356751,0.21459858749074248,2.090009393515446,2.2484212373648917,,2.2497413204395422,2.2489082438547046,2.2483115431740814,2.2497301833022085,2.246160498093246,2.248979037422028,2.249151679134479,2.2474737515894136,210.3199999999998,186.78159802307223,109.90952699632446,,107.974753935001,109.45707342237127,109.84196575415085,107.96648439701268,110.24798470151616,109.37703962389524,109.25688907092062,110.05661883166636,8.894361810622488,5.233786999824974,,5.141654949285762,5.212241591541489,5.230569797816707,5.141261161762508,5.249904033405532,5.208430458280726,5.202709003377173,5.240791372936493,5.971877354017739,5.441594890246422,,5.423834784666401,5.437469793584628,5.440980002552539,5.423758194034095,5.444669579537936,5.436738337223184,5.435639234574411,5.4429322947521275,27.803894068493637,10.791697268413538,16.808307021895587,-0.09140636810279568,-0.7254669390904505,5.51201811224779,1.4783664787548867,0.22056602733686081,-4.105997483098177,253.44135850920767,139.63167612617633,-331.54217238503225,-27.700863758738244,-10.360692887032258,-27.62851436541935,113.71812440029485,270.0129014361747,13.823763329329994,8.437903169880459,13.50064507180873,939.0,30.0,2.559785703097598,1.1223428974716716,0.28867513459481287,0.05892556509887896,0.6410108691585386,0.26253311860504336,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.14433756729740643,0.039283710065919304,0.1576176281715213,0.048611111111111105,0.22686084200293505,0.08386051993929036,15.62095586463014,12.110053444098986,9.786712265874595,7.57113239583282,9.81699080617558,6.048337589757272,6.882147235302854,4.017734395559861,5.638923497101084,2.7892549794758037,3.651806899430205,1.5409195053972766,3.0232747990118205,0.9934981702359766,1.638349990724625,0.49318254890750474,3.9882526708971384,1.9625309648103122,6.103852476713819,2.5924927374148394,8.069810011281985,2.973848749365915,69.42548607951049,35.302722972541424,29.3125,28.4375,28.4375,28.4375,108.0,124.0,38.66472299999999,20.805276999999997,0.40625,64.09,8.729166666666666,4.499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,11.0,11.0,32.0,0.0,0.0,33.0,11.0,3.0,8.0,25.0,14.0,22.0,19.0,0.0,0.0,0.0,12.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,5.0,3.0,1.0,21.0,9.0,0.0,2.0,5.0,0.0,2.0,5.0,1.0,0.0,1.0,1.0,2.0,3.449987545831587,6.291858449555998,4.1067670822206574,4.549921711757613,5.07165199590203,5.404646163270411,5.766365960957969,5.84914464845038,5.944192760869129,6.043078102706436 +16759177,O=C(/C=C/c1c(C(=O)[O-])[nH]c2cc(Cl)cc(Cl)c12)Nc1ccccc1,1,42.416666666666664,6.593266666666667,3.9166666666666665,10.53360768175583,156.43181723744553,174.48977730555558,1.9151487209260827,6.7844500000000005,6.947825111348202,8.17339061111111,280.80466706641084,32.421052631578945,6.489684210526316,4.578947368421052,9.663742690058479,143.7469920576763,127.2363225526316,2.1141121944736847,6.693447368421054,3.7203811999133634,7.910918947368418,314.37073618679375,31.5,6.496166666666666,4.316666666666666,8.785185185185185,145.52108591970497,122.95918163333332,1.980309980333333,6.692970000000001,4.449725651577504,7.952799466666668,288.1778485688639,26.90909090909091,6.389077922077922,3.5584415584415585,6.591630591630592,153.59165883826643,102.44760029870132,1.7316829047564282,6.5785935064935055,3.579739190850302,7.958138519480521,242.99922170717898,30.545454545454547,6.429364935064935,3.2337662337662336,6.295013628346962,155.90555046448563,119.64219161038957,1.638817308333,6.617985714285714,3.8631573425812102,8.036859597402598,232.31219712586622,25.955882352941178,6.490161764705881,3.073529411764706,6.524509803921568,155.80268438916698,97.75366610294115,1.5824101093102059,6.670985294117647,4.279774872912127,8.114721705882353,225.5643929045425,29.5,6.766708064516131,2.8548387096774195,7.397849462365593,158.56191173135372,113.84715979032259,1.469716525321661,6.916693548387097,5.051290986326828,8.369868806451613,220.07760866529952,31.53846153846154,6.871482692307694,3.0384615384615383,7.13888888888889,161.32708820547853,122.38435719230769,1.4715190587133458,7.026259615384617,6.194563152896486,8.490624038461538,218.1098331915778,24.818181818181817,6.393068181818183,3.409090909090909,6.3232323232323235,154.63835355952898,93.40170852272726,1.6728771148499086,6.564602272727274,3.6138701833146283,7.980677454545455,237.26541014317175,14.267746913580245,0.13319722222222216,0.029788487592864503,0.6566358024691359,4.065691205608902,1.4805772570985445,66.44703439737653,0.2567253898437308,0.13664722222222223,2.75768911788891,0.10779061111111111,45.70557673624384,-0.16467673814165032,-0.011408625730994146,-0.011757081723687671,0.09409519168291093,0.5005855975100071,0.06783708817878673,-0.6786760136046116,0.01485242245462679,-0.010445467836257319,-0.15304966145174892,-0.007598947368421036,2.6313844405471505,0.04984567901234573,0.02423611111111111,0.00593746074954207,-0.0066358024691358,0.11629324798049051,-0.3200085206314346,0.09015302206790304,-0.02293630960535937,0.019383888888888878,0.5639694481607552,0.01594613333333334,-6.1861511910714055,-1.442710838544172,-0.00046302308802309225,0.0027991225156774146,-0.05201819785153118,0.0058709770643926625,-0.03198203349927186,-6.701857085327484,-0.010598166847696436,-0.006146139971139963,0.013529255009847453,-0.004926415584415574,-3.2548952860886007,3.5028158569825245,-0.005067784992784997,-0.001702656518806178,-0.09530824114157448,-0.09257378804703902,-0.07416477716413768,16.304801987904852,0.01942953226614231,0.005453643578643578,-0.15498372111629746,0.0012824545454545493,3.688262402894753,-2.3057371096586783,-0.025724673202614373,-0.004111505192427905,-0.012436456063907047,0.08106502774863956,-0.12441680232427696,-10.603030669843866,-0.02581921482867393,-0.02901609477124184,-0.2628391279005351,-0.027140647058823533,-3.0531381347142634,1.2559986061330146,-0.0021875448028673664,-0.004878053383184583,-0.0298436877737953,0.01484333131751153,-0.12453355454996731,5.849980694469335,-0.010408953244830635,0.004958154121863765,-0.6657710607695899,-0.0004357096774193851,0.9972659055252159,2.2445394112060777,0.054276495726495746,0.009888608208068826,0.152659069325736,-0.07109903509080487,0.28481570847521853,10.053251810422605,0.008167597058419367,0.059470726495726475,0.6848612835378063,0.0580086538461538,2.520178683547194,-2.0177469135802473,-0.032534722222222215,-0.007935333939933339,-0.060676206509539844,-0.3937246262349143,0.16239694059392829,-9.16869199270483,0.024369850062215627,-0.03495441919191918,-0.44049593356895345,-0.02566981818181818,2.837543075396161,,,0.48914285714285716,1.41,0.78,0.06,0.63,0.15,0.6870063497994002,0.018472642567677795,0.028792642567677794,1.0850635856923116,0.2905595937446219,0.1875363061826241,1.7720699354917118,0.47809589992724605,2.0244210472307818,1.5103821174881533,0.16360929359215384,0.20830798087057595,0.14212165527989895,0.5140389297426287,10.361533920886398,1527.0,237.3576,141.0,379.2098765432099,5631.545420548039,6281.631983000001,68.94535395333898,244.24020000000002,250.12170400853526,294.2420619999999,10108.96801439079,1232.0,246.608,174.0,367.22222222222223,5462.3856981917,4834.980257000001,80.33626339000001,254.35100000000003,141.3744855967078,300.61491999999987,11946.087975098162,1890.0,389.77,259.0,527.1111111111111,8731.265155182298,7377.550897999999,118.81859881999998,401.57820000000004,266.9835390946502,477.1679680000001,17290.670914131835,2072.0,491.959,274.0,507.5555555555556,11826.557730546514,7888.465223000001,133.33958366624498,506.5516999999999,275.63991769547323,612.7766660000001,18710.94007145278,2352.0,495.0611,249.0,484.71604938271605,12004.727385765393,9212.448753999997,126.188932741641,509.5849,297.4631153787532,618.838189,17888.0391786917,1765.0,441.3309999999999,209.0,443.66666666666663,10594.582538463355,6647.249294999999,107.603887433094,453.62699999999995,291.02469135802465,551.801076,15338.378717508891,1829.0,419.5359000000001,177.0,458.66666666666674,9830.83852734393,7058.523907000001,91.12242456994299,428.83500000000004,313.18004115226336,518.931866,13644.81173724857,1640.0,357.3171000000001,158.0,371.2222222222223,8389.008586684884,6363.986574,76.51899105309398,365.36550000000005,322.11728395061726,441.51245,11341.711325962046,1092.0,281.2950000000001,150.0,278.22222222222223,6804.087556619275,4109.675174999999,73.60659305339598,288.8425000000001,159.01028806584364,351.149808,10439.678046299558,513.6388888888888,4.795099999999998,1.0723855533431221,23.638888888888893,146.36488340192045,53.300781255547605,2392.093238305555,9.242114034374309,4.9193,99.27680824400075,3.880462,1645.4007625047784,-6.257716049382712,-0.4335277777777775,-0.4467691055001315,3.5756172839506153,19.022252705380268,2.5778093507938955,-25.789688516975243,0.564392053275818,-0.3969277777777781,-5.815887135166459,-0.28875999999999935,99.99260874079172,2.990740740740744,1.4541666666666666,0.3562476449725242,-0.39814814814814803,6.97759487882943,-19.200511237886076,5.409181324074183,-1.3761785763215622,1.1630333333333327,33.838166889645315,0.9567680000000005,-371.16907146428434,-111.08873456790124,-0.0356527777777781,0.21553243370716094,-4.005401234567901,0.452065233958235,-2.4626165794439334,-516.0429955702162,-0.8160588472726257,-0.47325277777777713,1.0417526357582538,-0.37933399999999917,-250.62693702882225,269.7168209876544,-0.3902194444444448,-0.13110455194807571,-7.338734567901235,-7.1281816796220046,-5.7106878416386015,1255.4697530686735,1.4960739844929578,0.4199305555555555,-11.933746525954904,0.0987490000000003,283.996205022896,-156.79012345679013,-1.7492777777777773,-0.27958235308509755,-0.8456790123456792,5.51242188690749,-8.460342558050833,-721.0060855493829,-1.7557066083498274,-1.9730944444444452,-17.873060697236387,-1.8455640000000002,-207.61339316056993,77.87191358024691,-0.1356277777777767,-0.30243930975744415,-1.8503086419753085,0.9202865416857149,-7.721080382097973,362.69880305709876,-0.6453551011794993,0.30740555555555343,-41.277805767714575,-0.027014000000001877,61.83048614256339,116.71604938271604,2.822377777777779,0.514207626819579,7.938271604938272,-3.697149824721853,14.810416840711364,522.7690941419754,0.42471504703780705,3.0924777777777765,35.61278674396593,3.0164499999999976,131.0492915444541,-88.78086419753087,-1.4315277777777775,-0.3491546933570669,-2.669753086419753,-17.323883554336227,7.1454653861328445,-403.4224476790125,1.0722734027374876,-1.537994444444444,-19.38182107703395,-1.1294719999999998,124.85189531743109,0.7189730806303463,0.566336012587958,0.4426813888215242,0.294710803311901,0.2926573303220248,0.15867889135909524,0.1757033916632023,0.08181449060790459,0.11374824195199876,0.045585944826989196,0.07191366528041788,0.02297072927021392,0.04717275705060289,0.012595169196430743,0.03153741196572326,0.0063803348681963756,17.00212588630063,5.672751213370374,3.5551839777983547,2.1686497915659033,0.40589210665600184,-0.6231669014292454,3.2996261649542267,0.9726955537009905,7.004119996993294,0.773085132801191,14.548055343873854,10.932466252634406,35.45152786074794,11.684189870102914,2.2127574755660566,0.7414516029952025,3.501282192106685,2.219711349503484,8.001937618807899,1.292811278256668,3.714191190614701,2.4159500463521324,22.45705909465692,14.700682634415905,0.3195585701510063,0.5585622031645839,0.740247124496066,0.9020373534107654,0.9256866094937516,0.9256866094937516,1.5598049932199716,994.4738668583764,0.0,2.0,0.0,0.0,14.0,0.0,2.0,0.0,0.0,3.385202370364871,2.050376042447919,1.0356725698651186,0.1320802083934307,8.881784197001252e-16,8.881784197001252e-16,-63.601309496134036,1210.961219317735,73.78023750100627,33.63781164771487,73.17965291726037,,13.0,541.0,11.876485017303356,14.69560176298435,16.280012800286784,21.612944520505945,0.0,18.218407282129373,30.33183534230805,6.06636706846161,10.30076712495354,23.20187978046503,12.22857142857143,35.25,19.5,1.5,15.75,0.0,0.010857142857142819,3.75,0.2611390565615915,0.12368742368742347,-0.137451632874168,0.04287830687830674,0.15743302990897245,0.0,0.701984126984127,0.8788571428571426,0.44084507042253557,0.5782967032967036,0.8359788359788358,17.175158744985005,0.4618160641919449,0.7198160641919449,27.126589642307792,7.263989843615549,4.688407654565602,44.3017483872928,11.952397498181151,0.5565669700910275,0.1985981308411215,0.0,0.36799065420560745,0.0,0.555246398541497,-1.4150582492702102,-0.09278205043067703,-0.03930717359083918,-0.094337216618014,0.4447536014585031,0.6887112067593475,0.03539431693530168,0.01913086685442632,0.032795771750445124,-6.006613301249221,0.49761050183730926,0.6570358556816224,1.1218098133249677,0.8377141443502998,0.4995437281112809,1.005117170264294,0.49862044234668135,0.673352081722645,0.617361584393158,0.5305534515237985,0.6263055451698928,0.6819887275890585,0.598507381969607,0.4789924436751406,0.571359509266283,1.0611045828437131,0.6898805060918463,1.2283334256606244,0.6024008121874331,0.8774858000689145,0.4980620548994097,0.39808301368279847,0.5064050363075324,0.9296661647529628,1.0017649864061633,0.792096477275097,0.6793273899966973,1.0864223907702166,0.8520554656215387,1.0411108271586411,1.002654639555483,0.9654036928340801,0.8553692968142176,0.6346052781529075,0.8328293711606316,1.0161733410910396,0.7145982566457394,1.000453114069097,1.077142574447497,1.1633372502937718,1.0068352219476866,1.0411682825824369,0.715605201904789,0.8954394357396456,0.9231588751540775,0.9791888034826849,0.9317663955758594,0.9078185503767288,1.1799460468844942,1.2788805852052403,1.2098770895990498,0.9907029791940275,1.0171856910524284,1.0282422579394204,1.1770542316154156,1.0991562774671473,1.28345840094418,1.2438425192957132,1.3372920619791573,1.0494260882444064,0.8622067230614372,1.4445778318054523,1.5739134026777846,1.0149349910920735,1.194284926081567,1.043110837522866,0.8606204431735183,1.0289352306517112,1.2867864756525154,1.8907037393993322,1.359507080475502,0.9242241850481921,0.8851811484173175,1.0379064846646338,0.9637587621551925,0.7545421675856456,1.1960677853074762,0.8225476465861519,0.8882965543614205,0.9689837152808246,0.919756406868394,1.3034824618844858,0.8437317366611737,0.8889511011627969,1.0159242088288654,1.181967718940358,1.1571827322000054,1.144108535412883,1.0624238519212745,0.8756180176271326,1.0141542191735464,0.8543969077067984,1.1798576756116443,1.0764583688354312,1.1474115242416538,0.9101640750311948,5.5,0.10743801652892562,2.4444444444444455,2.479166666666667,1.7305555555555558,0.7883333333333333,0.7503854875283447,0.22743055555555555,0.317476064499874,0.15375771604938276,18677.313719305297,19002.802093130806,2449.867561963411,2331.5678734481626,15.066828890900581,0.46601925019569457,8.045396588336263,0.8727266860584065,1.0,0.0,1.7847226310774411,3.119548958994393,4.134252431577194,5.037844793048881,5.169925001442311,5.169925001442311,0.20370370370370366,0.0063198833252309196,0.06432748538011698,0.06524122807017545,0.04677177177177179,0.025430107526881723,0.02501284958427815,0.009097222222222224,0.015117907833327336,0.0066851180891035955,0.46770727750681185,19.753086419753085,8.79224376731302,4.837984173261141,152.42316029336757,1.0,4.144999324970168,129.8268922788746,,95.61666087595677,96.66695302825804,96.12577978493805,95.57214086324153,118.19873979045458,97.01582433173152,97.47215089698506,111.32673572256033,-0.011541888087803735,-0.08565212953135272,-0.39468541956134584,0.1432989053126352,0.12312435258718486,0.04581799960356382,-0.010213789370130372,0.057853344632829214,-0.07644112823069613,-0.05549924408046141,-0.07049730296628527,0.05757250271082351,0.003493591476934729,0.18195658067610695,0.19932065134331703,-0.010105757931844884,0.028603561387066476,-0.2161376713691715,0.0013567651722235848,-0.08934180456136707,0.14185351574410984,0.20450798623468117,0.14793619934945898,-0.13534784227251373,-0.10111693509021942,-0.003476221803264026,0.09396658715724503,-0.0792192531322966,0.0014440292603366545,-0.021601056848560788,-0.10086013839606493,-0.04128211414596569,-0.04497815521741684,0.004906011675530883,-0.0457035685541981,-0.07121440136007554,0.2455058866826755,-0.03804722732378052,-0.057158206286848555,-0.14514627558105817,-0.02276950790540292,-0.05009179818787491,0.24538043173449137,0.07568216091898468,0.039910387419179315,-0.05620057754550011,0.011897646114396629,0.0806961133906886,-0.16160485069047903,-0.19313220481202015,-0.1380232943888286,-0.01893965576830027,0.019938805887865948,-0.08403263100778266,-0.15957116470291255,-0.10057133361211423,-0.21234309998672704,-0.09531137001466866,-0.2517904553936225,-0.06680012271441638,0.08803061995286286,-0.016423351526188238,-0.1637563292858502,-0.04544937644516887,0.0036508752305227043,-0.08411148688992633,0.08803975598797084,-0.040545086916282745,0.03628433890738429,-0.24142353699363212,-0.004042185798262646,0.021819348463322175,0.15731561716094733,0.4074896970144205,0.33196073406685916,0.23248666726927592,-0.017487563982409398,0.19236801531948813,0.15129722344417418,0.03181452782442359,0.4352135779168079,0.2483460804537994,0.5381605433738397,0.055139413251265895,-0.14142015034341035,-0.2442597651769515,-0.2663892859681187,-0.09240465762204891,-0.09684075998977591,0.10968488122813265,-0.13798496916917075,0.09492574956084242,-0.2558004372388532,-0.15973371715886733,-0.23814521429289978,0.06208308215364957,8.735371884149817,18.211776902060286,11.760950085433993,22.77001046995358,36.80803358839542,49.32808144203187,53.605792186459354,53.73892903651993,53.73892903651993,50.61052618076954,37.759552937203836,4.090232339803846,5.207699521764399,3.5530413819974735,12.850973243565717,7877.525758357728,6614.8290781535125,1435.6348025877214,77.0,38.0,49.0,67.0,81.0,88.0,90.0,91.0,87.0,373.01522115191034,27.0,4.875197323201151,5.720311776607412,6.610696044717759,7.4815557019095165,8.381831553485561,9.265491216441031,10.171183730899397,11.063053820541235,11.972379896577873,0.8842592592592595,1.0166666666666668,1.1054715411174163,0.8654034727425786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7711364437791086,1.0111111111111108,1.0342316096139843,0.7450580319786506,7.0,0.0,1.0,0.0,0.0,2.0,5.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.201831703866066,0.0,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,41.40098098584986,30.34148838068032,33.25241611903682,16.685866596541636,319.6081461647314,-814.5287298618322,-53.406738365895194,-22.625798051717563,-54.30191532412214,256.0068366685974,396.4324894559029,20.37349913511107,11.012013595997303,18.877737593138235,0.46153846153846156,0.8369264045227355,0.21313520727808533,8.063867413703846,0.16007628382664404,36.15609320866254,0.16307359547726444,7.0,0.14814814814814814,0.3452124799836626,0.6034031360462865,0.7996735794859334,0.9744522003014391,0.9999999999999998,0.9999999999999998,3.490100000000001,,2.329831932773109,1.4616939097320307,1.233223553741078,2.3551666288161686,-3.8153565211242113,1.484607161117395,1.4455787322047255,-1.6690554311857158,96.75489999999998,14.69560176298435,0.0,4.9839785209472085,0.0,0.0,5.316788604006331,69.84323570009326,0.0,0.0,4.007333185232471,0.0,5.332718793265369,2.3978952727983707,6.842683282238422,4.844187086458591,8.445697189711167,7.065613363597717,10.102543308321248,31.833333333333343,11.936736209828187,0.0,2.704837934982686,0.0,0.0,0.897078995305908,1.3325810014145418,0.0,36.60000000000001,0.0,23.40910771178944,0.0,0.0,0.0,2.606164808515999,0.0,-1.8181105640569308,39.79697548022699,10.423315998847038,5.687386274683562,0.0,16.860463538250563,4.794537184071822,0.0,16.051916670617278,48.54058958606515,10.045266627482652,16.97894503891494,0.0,31.154525018732826,27.76091197604791,31.385286365655894,259.6537845577493,,191.04693519729167,193.21697054373755,192.1529016855768,190.95586839617778,237.92362218935887,193.91288009057365,194.82865549539372,223.32109361759495,31.385286365655894,259.6537845577493,,188.90348981914042,191.87221214678402,191.0183360161351,188.7891150976668,240.21283610203346,192.54704150234568,193.4987230617655,224.32252687630637,4.860023165521163,193.5721280328744,,146.37548711959036,146.80357978531208,145.7158893256571,146.33677343854714,178.99392634318406,147.49900889227246,148.2524720963503,168.96516985599277,1.2554114546262358,10.386151382309972,,7.641877407891667,7.728678821749502,7.686116067423073,7.638234735847111,9.516944887574354,7.756515203622946,7.793146219815749,8.932843744703797,2.507588695053289,129.8268922788746,,95.61666087595677,96.66695302825804,96.12577978493805,95.57214086324153,118.19873979045458,97.01582433173152,97.47215089698506,111.32673572256033,36.39999999999999,0.0,0.0,12.111640889977217,0.0,0.0,0.0,37.232337946103435,0.0,2.6717367147476274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.822089151231424,481.74737797211384,64.25001471878788,112.30376252379816,148.83308753677898,181.36241254975974,186.1173000519232,186.1173000519232,720.0,127.54170106438093,93.86760486121476,74.03867148162335,85.02000000000001,85.02000000000001,0.8571428571428571,8.857561844993159,5.754887502163468,3.7692438790867664,4.925395776070506,,4.93016032524791,4.9264032089308625,4.926238459435208,4.930209399033963,4.916929758029586,4.927067215277428,4.927139127117954,4.921685634787098,0.15076975516347066,0.19701583104282022,,0.1972064130099164,0.1970561283572345,0.19704953837740832,0.1972083759613585,0.19667719032118344,0.19708268861109712,0.19708556508471817,0.1968674253914839,2.2431651506422567,2.510695363892918,,2.5116622397342407,2.5108998814364454,2.510866438731186,2.5116721934758197,2.508975034667972,2.5110346575750007,2.511049252731227,2.5099418123979786,248.79999999999995,781.0506589099928,145.36898435635382,,144.10141835021247,144.94705711442649,145.09879760562882,144.08056184026722,146.3493110211706,144.84089859775594,144.81838726550404,145.72839121019052,31.24202635639971,5.814759374254153,,5.7640567340084985,5.797882284577059,5.803951904225153,5.763222473610689,5.853972440846824,5.793635943910237,5.792735490620162,5.829135648407621,7.576930743771575,5.895565961676947,,5.886808077650153,5.892659284272186,5.893705605069927,5.886663332236385,5.902287037253586,5.891926620824126,5.891771187641791,5.898035286834983,0.0,26.113945646772123,15.129586644074795,1.1422585871108306,-1.8181105640569308,11.936736209828187,2.606164808515999,0.0,0.0,301.2183352923827,183.9712375680039,-468.85494085667153,-30.741718787668837,-13.023748357129767,-31.256996057111436,147.36137089420944,228.19248061273328,11.727291354911797,6.338680017020369,10.866308600606347,1568.0,38.0,1.900453312904093,0.8028179574017497,0.0,0.0,0.3711222158935555,0.10468640152840673,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.03125,0.3594505816079353,0.12024274011266414,0.6879280331743274,0.19689048010841168,17.974327015758657,14.15840031469895,11.952397498181153,7.957191689421328,11.120978552236942,6.029797871645619,8.609466191496914,4.008910039787325,7.621132210783917,3.054258303408276,5.825006887713849,1.8606290708873274,4.151202620453055,1.1083748892859053,2.8383670769150933,0.5742301381376738,3.775159813851845,1.3941143904288449,6.5047014177300975,2.181045510208986,9.797270437765844,2.6983456565355617,78.03888331971643,60.59924931465014,36.59924931465013,27.89473785493458,27.429324313207815,27.429324313207815,130.0,152.0,46.360723,15.799276999999996,0.5277777777777778,129.07,8.75,5.472222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,15.0,16.0,36.0,0.0,0.0,38.0,16.0,3.0,10.0,28.0,19.0,27.0,19.0,0.0,0.0,0.0,18.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,3.0,2.0,1.0,25.0,7.0,0.0,2.0,3.0,0.0,3.0,4.0,0.0,0.0,2.0,1.0,3.0,3.6635616461296463,7.416047226950716,4.300680995219929,4.913573581253124,5.566673260683794,6.124546620053534,6.484563668188867,6.831793425991231,7.179799107450741,7.304552722851818 +130313,CC1(C)[C@H](C(=O)O)N2C(=O)C[C@H]2S1(=O)=O,0,35.53846153846154,6.918019230769231,3.8076923076923075,10.247863247863249,165.16443538497458,141.12189715384616,1.5399216135899618,6.935615384615384,10.308793658330696,8.458896038461539,217.38852682865314,37.111111111111114,6.620555555555556,4.814814814814815,6.5432098765432105,146.06150977285742,143.70333318518513,1.9359344846666657,6.783829629629632,3.127029035208048,8.15385214814815,272.81071648257983,31.02,6.623335999999998,4.34,7.02,154.78128001210743,119.33060898000002,1.6806148594788601,6.728719999999997,4.618179012345679,8.16140956,233.1710019486384,25.159420289855074,6.7707246376811625,3.217391304347826,5.309178743961352,155.440323864464,91.0653285072464,1.5048508668362026,6.863694202898549,4.436549472177489,8.353078028985507,207.83260187265847,18.25287356321839,6.648597701149426,2.0919540229885056,3.153256704980843,168.39511280404292,64.86546481609194,0.9936227093383103,6.669104597701149,4.394423158790975,8.294839609195403,145.0666144412712,17.05263157894737,7.120842105263159,1.543859649122807,5.333333333333333,169.79790780997058,58.754013684210506,0.8417249396981051,7.079382456140351,9.73960363872645,8.728873263157896,122.79489849376351,3.909090909090909,5.986666666666666,1.0303030303030303,0.0,184.05919797647215,7.304945454545455,0.5003991915191213,5.937999999999999,3.3181818181818183,7.814958545454546,53.68196844512916,1.0,4.840000000000001,1.0,0.0,184.91765202424898,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,,,,,,,,,,,,13.520710059171599,0.23579423076923073,0.035452421847687245,1.0724852071005917,5.497698882314268,1.4724555994203021,60.64857667455621,0.3210442134320784,0.21156745562130175,4.970192510612738,0.15984307840236683,46.842027010506065,2.8211702827087426,-0.02145833333333334,-0.020180132727174695,0.44460880999342556,0.6650108359510065,-0.21840058282440175,12.311161963620439,0.00028864540470799696,-0.012617598071444216,-0.6022143842326914,-0.002481823416611903,2.4897195439102044,2.7362130177514787,0.053299999999999965,0.0021880891656546044,-0.06940828402366853,1.0906771860618014,0.07119148927521815,12.831557380828407,0.05386979290173624,0.04967192899408282,0.9944471432861749,0.032714270828402336,9.163489940484048,-6.002315410342168,-0.007782246376811589,0.005369064562746331,-0.27928565303147235,-0.02736567285062279,-0.2853031317186977,-26.547628200754644,-0.1136440953014758,-0.01351004202040992,-0.5100448113010564,-0.017683597911842874,-14.782691503926367,0.08936951642521967,-0.07581925287356318,-0.010216787432637573,-0.24843569339590565,-1.766487564896053,-0.043772572439510174,0.01944726089913694,-0.01967947792458372,-0.06253226552404272,-1.5179544696933434,-0.04661293074542609,-1.1145587117626052,-1.8432471711823932,0.0599372807017544,0.012079651794803864,0.07191425308834204,0.2694326216593422,-0.2503937901708705,-8.98361129398941,-0.04921473125127682,0.04465521644347555,1.917953004197818,0.0480919013547182,-17.13520037438539,2.8918773534158153,-0.052441666666666706,-0.006643926054260489,0.40770127308588844,-0.4013507859661699,0.5960101326940977,13.725472772996227,0.15459364960051475,-0.041671651425497516,-1.3205545114377024,-0.038764522458310954,25.67615130529847,13.633136094674558,0.14822499999999983,0.011841050313900012,0.42751479289940814,4.750164365548982,0.6467800158479671,63.404468786982235,0.1911742770577292,0.15450946745562133,1.7175185266353359,0.08340988313609443,56.01123705651367,,,,,,,,,,,,,,,0.4599999999999999,1.0666666666666667,0.4,0.0,0.6666666666666666,-0.26666666666666666,0.8588288992207176,0.046998838090235515,0.058465504756902174,0.7929138192854703,0.18262237056797406,0.26465969549999674,1.651742718506188,0.44728206606797083,1.9469614726344673,1.0769324312692532,0.1464652639663866,0.5761308458045153,0.0,0.8700290413652145,8.962915132769231,924.0,179.8685,99.0,266.44444444444446,4294.275320009339,3669.169326,40.03796195333901,180.326,268.0286351165981,219.93129700000003,5652.101697544982,1002.0,178.755,130.0,176.66666666666669,3943.6607638671503,3879.9899959999984,52.270231085999974,183.16340000000005,84.42978395061729,220.15400800000006,7365.8893450296555,1551.0,331.1667999999999,217.0,351.0,7739.064000605372,5966.530449000001,84.030742973943,336.43599999999986,230.90895061728395,408.070478,11658.55009743192,1736.0,467.18000000000023,222.0,366.3333333333333,10725.382346648017,6283.507667000002,103.83470981169798,473.5948999999999,306.12191358024677,576.362384,14340.449529213434,1588.0,578.4280000000001,182.0,274.3333333333333,14650.374813951734,5643.295438999999,86.445175712433,580.2121,382.31481481481484,721.6510460000001,12620.795456390595,972.0,405.88800000000003,88.0,304.0,9678.480745168323,3348.978779999999,47.97832156279199,403.5248,555.1574074074076,497.54577600000005,6999.30921414452,129.0,197.56,34.0,0.0,6073.953533223581,241.0632,16.513173320131003,195.95399999999995,109.5,257.893632,1771.5049586892621,2.0,9.680000000000001,2.0,0.0,369.83530404849796,2.032128,0.8892258096979999,9.680000000000001,2.0,13.436928,62.16748886186053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,351.53846153846155,6.130649999999999,0.9217629680398683,27.884615384615383,142.94017094017096,38.28384558492785,1576.8629935384615,8.347149549234038,5.500753846153845,129.22500527593118,4.155920038461538,1217.8927022731577,76.17159763313605,-0.5793750000000002,-0.5448635836337168,12.00443786982249,17.955292570677177,-5.896815736258847,332.40137301775184,0.007793425927115918,-0.34067514792899384,-16.259788374282667,-0.06700923224852139,67.22242768557552,136.81065088757393,2.6649999999999983,0.10940445828273022,-3.4704142011834263,54.53385930309007,3.5595744637609075,641.5778690414204,2.693489645086812,2.483596449704141,49.72235716430875,1.635713541420117,458.1744970242024,-414.1597633136096,-0.5369749999999996,0.37046545482949683,-19.27071005917159,-1.8882314266929727,-19.68591608859014,-1831.7863458520706,-7.84144257580183,-0.9321928994082845,-35.19309197977289,-1.2201682559171583,-1020.0057137709193,7.7751479289941114,-6.596274999999997,-0.8888605066394688,-21.613905325443792,-153.6844181459566,-3.8082138022373853,1.6919116982249136,-1.7121145794387835,-5.440307100591716,-132.06203886332088,-4.05532497485207,-96.96660792334666,-105.06508875739641,3.4164250000000007,0.6885401523038203,4.0991124260354965,15.357659434582505,-14.272446039739616,-512.0658437573964,-2.805239681322779,2.5453473372781064,109.32332123927561,2.7412383772189375,-976.7064213399673,95.43195266272191,-1.7305750000000013,-0.21924955979059613,13.454142011834318,-13.244575936883606,19.668334378905225,452.9406015088755,5.101590436816987,-1.375164497041418,-43.57829887744418,-1.2792292411242614,847.3129930748495,27.266272189349117,0.29644999999999966,0.023682100627800025,0.8550295857988163,9.500328731097964,1.2935600316959341,126.80893757396447,0.3823485541154584,0.30901893491124266,3.4350370532706718,0.16681976627218886,112.02247411302734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7729238751423118,0.6075981695875171,0.41932693693872264,0.3769056770367031,0.2717859113559119,0.25126375677775287,0.15369024465996578,0.14657543145901888,0.09105140515199453,0.08045451331576944,0.059999286659348186,0.04618373669624432,0.036111411374683,0.028631098696132763,0.02257426793309905,0.015685653059943547,16.013011124594115,5.802131017087407,3.5803939325705048,2.241095215837751,0.4696569353846858,-0.39672280991256703,4.128082937895481,0.9706311103610558,6.024072026787138,0.6429515759265295,14.543343540612186,10.311843994698176,32.066488419148165,11.815390387180821,2.9569126753603023,0.7413989058679732,3.536072536935454,2.3165835002428565,7.015022100579529,0.2906317328338154,3.767290507018955,2.531925832250226,24.44328711090706,14.699971911087978,0.3768991698429657,0.6443034622588142,0.7817899083636995,0.7817899083636995,0.7817899083636995,0.7817899083636995,2.383397848349861,451.6524873640714,0.0,2.0,3.0,0.0,0.0,2.0,0.0,1.0,0.0,2.833207241517195,1.5084338826489856,0.8272990386279586,0.8272990386279586,0.8272990386279586,0.8272990386279586,-15.713212530040067,692.2811986501688,64.10136236286695,26.626199948083414,63.50795838470462,,5.0,131.0,37.876474249055114,18.00687135247258,6.4208216229260096,0.0,4.899909730850478,13.847474399381248,0.0,0.0,0.0,5.106527394840706,6.899999999999999,16.0,6.0,0.0,10.0,0.0,0.0400000000000001,-4.0,0.2643112701252234,0.0,-0.2643112701252234,0.043749999999999956,0.254,0.0,0.703846153846154,0.9999999999999999,0.43953488372093064,0.703846153846154,0.9562499999999999,12.882433488310763,0.7049825713535327,0.8769825713535326,11.893707289282055,2.739335558519611,3.969895432499951,24.77614077759282,6.709230991019562,0.45999999999999996,0.38647342995169087,0.19323671497584546,0.3478260869565218,0.75,0.5210160878598106,-0.9648294628629018,-0.12886654496615946,-0.03710882549472699,-0.12060368285786273,0.4789839121401893,0.8869933221611712,0.042601875100852345,0.03411512777542966,0.049277406786731745,-0.09512107639709222,0.8454899100413324,0.6659843029151339,1.5213416033550304,1.0293742017879948,0.5617619832221602,1.5279442831633636,0.8264448049746692,1.3947156247891057,0.6177772784937117,0.7190279974475721,0.6128214723736214,1.0381645258989434,0.824945295404814,0.46497108789443203,0.7884749971472975,1.6137931034482758,0.6185571633580483,1.1842174501466989,0.8019257832999281,1.0507048512642316,0.4504291719456634,0.5004320823147305,0.4817988511495107,0.8543017600034872,1.6459740589223988,0.8586814387249051,0.7398268883680604,1.4682658670664668,0.8798429056220513,1.4129766630742986,1.6117390410635022,1.70562031248352,0.8744256032040363,0.9781331690506581,0.9382232916358733,1.336143407188157,0.8194685480017103,1.3677062237967488,1.1957065864099141,1.025366627031312,1.3636710405859016,0.8654775060266531,0.8397593787244003,0.8015496046774877,1.3470436878951368,1.3497079103596237,1.334188263985923,0.9279178394004818,0.9213885369879843,1.0623068645163838,0.9025574041225394,0.4482758620689655,1.0562087471728832,0.8764223504764155,0.9509103856915696,0.7986279399541605,1.0977044098433713,0.9207521981868408,1.0417737226427513,1.1909993833269366,0.7133147669252703,1.362997497175765,1.096871525764213,0.013584117032392894,1.1924887477984822,0.05414015435312613,0.7308711919352618,0.05645532793306382,1.3848859410411811,1.308060236083228,1.3385148305499783,0.40741690385133483,0.0,0.0,0.8914830758934232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,5.5,0.0,3.88888888888889,3.326388888888889,1.8383333333333338,0.125,0.0,0.0,0.0,0.0,3502.8688596800043,3832.3104231653524,1789.479135341182,1675.0224680765032,6.856595552887549,0.38634804955968177,4.207563234409856,0.6295882369190917,0.0,0.75,1.8672324766238968,3.192005835492106,3.873140679513133,3.873140679513133,3.873140679513133,3.873140679513133,0.34375,0.0,0.14957264957264962,0.11470306513409961,0.08356060606060607,0.010416666666666666,0.0,0.0,0.0,0.0,0.702002987434022,11.484375,3.017857142857143,1.1992861392028555,86.78469352582084,1.0,3.6834462050260925,41.76342839265202,,30.11168719597599,34.39404995716441,35.15025083106892,30.115435029838387,42.573460907080204,34.51436508972096,34.331653751530936,41.189277796748364,0.20865548261609518,-0.09100448837670833,-0.5692173249509936,0.4145593869731803,0.12096166963423591,-0.14832405330957682,0.20299177060135887,0.0008990830316555889,-0.05963865299788484,-0.12116520294672628,-0.015526624245589817,0.05315140489867768,0.2023719912472647,0.22604454666307802,0.061719032201952254,-0.06471724137931024,0.19838794546759145,0.04834881900903896,0.21157227563118736,0.1677955578948106,0.2347805755295078,0.20008221837740786,0.20466491984127055,0.19562539294955777,-0.4439349253163354,-0.03300439689055832,0.15144422532861698,-0.2604097951024487,-0.004977659460152746,-0.19376009153078708,-0.43772879194199,-0.35398269318290915,-0.06385690077302067,-0.10262073555741945,-0.11063098939654198,-0.315586076166405,0.006609824190749289,-0.32154837981496953,-0.2881830605686554,-0.23164486722156172,-0.32131399021847595,-0.029727600925109867,0.000320654860599484,-0.0612983417897585,-0.2955665621652758,-0.3054116045710684,-0.29161682327018973,-0.02379398977573332,-0.13632769012246146,0.2541931603085504,0.34072853602783937,0.06705384150030237,0.04900825371249216,-0.1700518441910569,-0.14812567394938203,-0.15329580535077586,0.2110684571610428,0.3858910897520483,0.3008694641982451,-0.36580825954739715,0.2138850208872091,-0.22240436712800998,-0.18740401100958662,0.3801462904911181,-0.07300341371137818,0.40477290651666764,0.2263115397851447,0.4815338297110323,-0.19696626450945412,-0.2656948415213199,-0.24251611546626065,0.5481434716635905,1.0083150984682714,0.6286201300025276,0.33399834755358104,0.3986206896551723,0.8640277445587181,0.43925264442785295,1.0454403427670578,0.595476476632322,0.7303082934087358,0.3455637830864616,0.5218235532609673,1.1957475077658588,,,,,,,,,,,,,,2.1491398636470835,2.94168275343288,22.46112485845593,37.494270263898244,39.33400803282529,39.33400803282529,39.33400803282529,39.33400803282529,29.20442208951701,16.1539864690388,2.196978959495799,8.64196268706773,0.0,13.050435620478218,1122.0394299623067,826.6070941460085,730.3440536055464,0.0,28.0,41.0,53.0,64.0,57.0,34.0,22.0,4.0,233.035793452,16.0,4.48863636973214,5.424950017481403,6.418364935936212,7.389563953677635,8.37816098272068,9.357466436866476,10.344030187256989,11.325908903872053,12.3116526371014,0.7820512820512822,1.034,1.136223426893258,0.7468730586705775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6610944956241365,1.0168929110105582,1.0490923861280745,0.6345794908327984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,10.006437125691184,11.4157136421167,9.837253136417502,5.907179729351506,0.0,4.794537184071822,13.212334168400758,0.0,0.0,0.0,13.847474399381248,0.0,11.167844076143568,194.77546379521544,-360.68964181961144,-48.17517471787616,-13.872678531523515,-45.08620522745143,179.06225126517538,331.5915568305574,15.926187644990797,12.753521416559899,18.421753157253193,0.4,0.4445300942208196,0.25902607790619375,74.92939375857952,0.17690820834282656,19.763148674828138,0.5554699057791803,3.0,0.0625,0.3972463404684065,0.6790866444202514,0.8239953944234104,0.8239953944234104,0.8239953944234104,0.8239953944234104,-0.794999999999999,,2.017857142857143,1.5896490170799988,1.0040200195793616,2.014186776408595,-5.505515208843095,1.466416768665851,1.454093098366397,-2.156718143362089,49.67360000000002,23.113398747313287,0.0,4.899909730850478,0.0,36.43103211764152,0.0,0.0,0.0,0.0,3.4965075614664802,0.0,5.030437921392435,2.3978952727983707,6.75110146893676,5.209486152841421,8.551981016901902,7.6783263565068856,10.396139022323208,20.333333333333336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.884,0.0,45.94104166666668,0.0,0.0,-3.5684722222222223,0.0,0.0,-1.6660416666666658,29.54180909922471,0.0,0.0,0.0,46.46345522265773,19.426327504561144,0.0,20.268296022307258,0.0,0.0,0.0,0.0,19.418699525435017,17.18845688622755,17.219909661664587,83.52685678530406,,60.59289502315199,68.57614671205148,70.16663232619392,60.60172216618341,87.03914184117488,68.8332079436198,68.46942842327967,82.91016799153766,17.219909661664587,83.52685678530408,,59.129061423880145,67.19845089724882,69.29648164255849,59.140469675202404,90.70797372293059,67.56231341077608,67.20921440469547,84.53527373685881,5.10422094517509,54.0057319531496,,40.996911945263804,45.300099868200256,46.24457317396265,41.00340976965499,57.88188603898844,45.47660305297342,45.30241225083613,55.73387412013054,1.1479939774443058,5.5684571190202705,,4.0395263348768,4.5717431141367655,4.677775488412928,4.040114811078894,5.802609456078326,4.588880529574653,4.564628561551978,5.5273445327691775,2.6761628843124106,41.76342839265202,,30.111687195975254,34.394049957164405,35.15025083106892,30.115435029837656,42.573460907080204,34.514365089720954,34.33165375153093,41.189277796748364,26.439215686274512,0.0,2.707777777777778,0.0,0.0,0.0,8.962615740740741,27.276402039329938,-0.08775462962962965,0.0,0.0,0.0,-2.185324074074075,0.9699074074074074,-1.4070833333333335,0.0,0.0,16.49906676165276,166.18211469909147,48.548044392221314,82.99215172279476,100.70165766734146,100.70165766734146,100.70165766734146,100.70165766734146,334.0,106.43873442464499,207.65560036129935,64.51187477316746,100.13,91.75,0.6666666666666666,6.263398262591624,5.0,3.4324897816093873,3.8141626204796215,,3.8003965509189515,3.8275343388505068,3.8256151491992516,3.8003627466183296,3.7879400553391482,3.8269816428374632,3.8259213232077682,3.8153510776722523,0.22883265210729248,0.25427750803197474,,0.2533597700612634,0.25516895592336714,0.25504100994661677,0.25335751644122195,0.2525293370226099,0.25513210952249754,0.25506142154718453,0.2543567385114835,1.6387509898108854,1.7441862521539409,,1.7405705249008347,1.7476859282310784,1.7471843857760456,1.740561629920926,1.7372874584227127,1.7475415177901503,1.7472644151949168,1.7444977942126518,148.9399999999999,67.71401857893628,70.2369224493774,,69.67407369771087,68.51817284668115,68.82338873329564,69.67584986922044,70.60322190249653,68.54616604536966,68.57371469153622,69.14818880151334,4.514267905262418,4.6824614966251605,,4.644938246514058,4.567878189778743,4.588225915553043,4.64505665794803,4.706881460166435,4.569744403024644,4.5715809794357485,4.609879253434223,4.62075833570334,4.657339241688361,,4.64929338677296,4.632564115223151,4.637008747795529,4.649318879022459,4.662540887578769,4.632972583236115,4.6333744016506175,4.641716973562289,22.351342592592594,23.15252314814815,8.033078703703703,0.0,-1.6660416666666658,-1.2557870370370374,-0.08775462962962965,2.707777777777778,-3.5684722222222223,190.39542477711962,72.81441433503122,-134.83939154379433,-18.009697239165934,-5.18613044399209,-16.854923942974292,66.94022286654274,123.96142993885333,5.953809598826386,4.767747305340512,6.886746107714075,303.0,29.0,2.548923418281907,2.5966891584287173,0.28867513459481287,0.41247895569215276,1.8349871426660245,1.3096254781442644,0.7290465554594939,0.45025001992510943,0.0,0.0,0.13608276348795434,0.09128709291752768,0.33080408779623893,0.2930629190869866,0.7226669336876681,0.7445498635050127,1.7145012010504457,1.5229053824232452,11.593858127134677,9.113972543812757,6.709230991019562,6.030490832587249,7.610005517965534,7.03538518977708,6.301300031058597,6.009592689819774,4.82572447305571,4.264089205735781,3.839954346198284,2.9557591485596366,2.058350448356931,1.6319726256795675,0.7675251097253677,0.5333122040380807,6.438705219757179,5.702087935400536,9.447973084583756,7.778907677076339,16.631794147196562,11.069538526144393,53.343971922081906,30.119990705976285,27.016206872142966,27.016206872142966,27.016206872142966,27.016206872142966,88.0,113.0,28.70472299999998,21.137276999999997,0.2692307692307692,46.07,7.930555555555555,3.006944444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,26.0,0.0,0.0,27.0,0.0,4.0,4.0,23.0,4.0,16.0,23.0,0.0,0.0,0.0,8.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,4.0,1.0,2.0,15.0,7.0,0.0,1.0,5.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,3.044522437723423,0.0,3.6888794541139363,4.04305126783455,4.31748811353631,4.709530201312334,4.564348191467836,4.07753744390572,3.9512437185814275,1.9459101490553132 +71360,COc1cc(C(C)=O)ccc1OCCCN1CCC(c2noc3cc(F)ccc23)CC1,0,22.862068965517242,6.298962068965517,3.2586206896551726,8.0,163.85655826697803,90.80993203706502,1.4524347143262586,6.3516896551724145,4.508620689655173,7.79622496551724,216.08452071727538,24.918032786885245,6.3966393442622955,3.918032786885246,7.278688524590164,145.78016316366075,94.73649334156072,1.7806217437704925,6.537239344262296,3.113387978142076,7.8034179016393415,262.6059634915731,20.24770642201835,6.2958165137614674,3.5137614678899083,5.440366972477064,155.2215223224219,75.31866949238899,1.4892037181012576,6.396059633027521,2.9148827726809383,7.783900220183484,215.4031780333732,17.19858156028369,6.226581560283688,3.0354609929078014,4.141843971631205,159.1904731664303,62.19405512426666,1.332377432884241,6.306582269503548,2.8963750985027574,7.755840283687942,186.46986380906029,15.045751633986928,6.1383398692810465,2.679738562091503,3.3137254901960786,160.93114246176034,52.929821830441824,1.2327485637978697,6.2091359477124195,2.7492737835875083,7.692795032679737,166.48081222088064,13.180645161290322,5.996463870967741,2.4516129032258065,2.6516129032258067,162.75336733951522,45.62352568037161,1.1444343068145937,6.059834838709678,2.5417562724014333,7.592874580645162,150.10084724598434,12.307692307692308,5.929790209790208,2.4265734265734267,2.265734265734266,162.12832021993717,41.84502820863776,1.1186956519759723,5.994872027972026,2.3572261072261065,7.543613566433566,143.82166240289268,12.031007751937985,5.9487286821705405,2.37984496124031,2.1705426356589146,165.417546773766,41.040860721674406,1.0867543650574651,6.004306976744187,2.3740310077519373,7.56286291472868,140.5448861065558,13.258928571428571,6.03494642857143,2.5267857142857144,2.3482142857142856,165.5582847836363,46.126653146185696,1.139614816826973,6.094357142857143,2.5503472222222223,7.616320249999999,151.39144769681386,7.67895362663496,0.16565362663495833,0.01832917432814171,0.5758026159334126,4.403091557669442,1.7912085268393603,36.73967101920359,0.2329938844734283,0.1515896551724137,1.61471132249967,0.10114896551724135,49.85909844464369,0.5607298103350813,0.011181817118574716,-0.004849645474050792,0.21023469328083277,1.548293405586636,-0.17434687561456275,2.5681960293528223,-0.016157967431206195,0.011398360655737785,0.03003461054473706,0.004839868852459012,-0.7166900301169645,0.36185624365925245,-0.01134413596744807,-0.003056541188970764,-0.009526121153279762,0.2504990782052822,-0.05069562990293614,1.8256010558389553,0.006358050918619724,-0.00780917431192656,0.07066426187939462,-0.00915651376146789,3.281671248620527,-0.28301329892647215,-0.01074932240409507,0.0014183937415847034,-0.06675394877762882,-0.27787756891913534,-0.045056072200376135,-1.3571288037044382,-0.00408139132005076,-0.009364539007092167,-0.02901392297248296,-0.006008453900709219,-0.8707652893409273,-0.7652732119403448,-0.0018506741896124222,-0.0005393989271118937,-0.07580261593341263,-0.3408873656478049,-0.09871199006000499,-3.6641518871379746,-0.026771665885524366,-0.0030071895424836495,-0.0032245822096839648,-0.00017780392156862532,-6.212235775776344,-0.1690537378696636,0.005853292163706771,-0.0009656780429656767,-0.054111848413946534,-0.15081124621226655,0.009329249613224429,-0.7662828159157177,-0.009795316588183643,0.004476129032258027,0.0834471251582218,0.0032821677419354817,-2.2937011315270683,-0.35727530495663684,0.0038504244863340805,0.0011017421810478733,-0.022028803538910544,-0.23815304790334524,-0.22433866747421524,-1.703473913003626,-0.020095716771574727,0.0025041958041957506,0.060448766453522734,0.0026400559440559446,-4.583095460227614,-0.09194480546414852,-0.008910750398657961,0.0005728320499128157,0.02189853349187476,-0.3044548295218872,-0.06654316187786465,-0.3187200270576682,0.007855143701220667,-0.007788372093023305,-0.13222001001637645,-0.006200372093023254,1.1012137524659493,-0.15586249363003235,-0.017706335994564303,-0.001162504155613421,-0.025925768642772202,-0.6928083064379141,0.024278049107062043,-0.7714853475867809,0.005982475023827183,-0.015035714285714315,-0.20598971604099425,-0.010792750000000002,1.3756234034297923,,,0.46513056835637484,1.1935483870967742,0.5483870967741935,0.04838709677419355,0.6451612903225806,-0.0967741935483871,0.9147482473718613,0.011876399002107423,0.02297317319565581,0.8833220685187494,0.23446052780977442,0.2508957687485406,1.7980703158906108,0.485356296558315,2.0518254316275977,1.6068672188996662,0.13875009275897554,0.24904242903619192,0.057165690932763996,0.44495821272793146,7.34819802696553,1326.0,365.3398,189.0,464.0,9503.680379484726,5266.976058149771,84.241213430923,368.398,261.5,452.1810479999999,12532.902201601972,1520.0,390.19500000000005,239.0,444.0,8892.589952983306,5778.926093835204,108.61792637000005,398.77160000000003,189.91666666666666,476.0084919999998,16018.96377298596,2207.0,686.2439999999999,383.0,593.0,16919.145933143987,8209.7349746704,162.32320527303708,697.1704999999998,317.7222222222223,848.4451239999997,23478.94640563768,2425.0,877.9480000000001,428.0,584.0,22445.856716466675,8769.361772521599,187.865218036678,889.2281000000003,408.3888888888888,1093.5734799999998,26292.2507970775,2302.0,939.166,410.0,507.0,24622.464796649332,8098.262740057599,188.61053026107405,949.9978000000002,420.6388888888888,1176.9976399999998,25471.564269794737,2043.0,929.4518999999999,380.0,411.0,25226.77193762486,7071.646480457599,177.38731755626202,939.2744000000001,393.9722222222222,1176.8955600000002,23265.631323127574,1760.0,847.9599999999997,347.0,324.0,23184.349791451015,5983.839033835199,159.97347823256405,857.2666999999997,337.08333333333326,1078.73674,20566.497723613655,1552.0,767.3859999999997,307.0,280.0,21338.863533815813,5294.271033095998,140.191313092413,774.5556,306.2499999999999,975.6093159999998,18130.290307745698,1485.0,675.9140000000001,283.0,263.0,18542.527895767267,5166.185152372798,127.63685948462098,682.568,285.6388888888889,853.0278679999999,16955.84214204315,445.3793103448277,9.607910344827584,1.0630921110322191,33.396551724137936,255.37931034482762,103.8900945566829,2130.9009191138084,13.513645299458842,8.792199999999996,93.65325670498086,5.8666399999999985,2891.827709789334,34.20451843043996,0.6820908442330577,-0.2958283739170983,12.824316290130799,94.4458977407848,-10.635159412488328,156.65995779052216,-0.9856360133035779,0.6953000000000049,1.8321112432289608,0.2952319999999997,-43.718091837134835,39.442330558858515,-1.2365108204518396,-0.33316298959781326,-1.038347205707494,27.30439952437576,-5.525823659420039,198.99051508644612,0.69302755012955,-0.8511999999999951,7.702404544854014,-0.99806,357.70216609963745,-39.90487514863257,-1.5156544589774048,0.19999351756344316,-9.412306777645663,-39.180737217598086,-6.352906180253035,-191.35516132232578,-0.5754761761271572,-1.3203999999999956,-4.090963139120097,-0.847192,-122.77790579707076,-117.08680142687275,-0.2831531510107006,-0.08252803584811974,-11.597800237812132,-52.15576694411415,-15.102934479180764,-560.6152387321101,-4.096064880485228,-0.4600999999999984,-0.49336107808164664,-0.027203999999999673,-950.4720736937807,-26.203329369797856,0.9072602853745495,-0.14968009665967988,-8.387336504161713,-23.375743162901315,1.4460336900497865,-118.77383646693625,-1.5182740711684646,0.6937999999999942,12.934304399524379,0.5087359999999996,-355.5236753866956,-51.09036860879907,0.5506107015457735,0.15754913188984587,-3.1501189060642076,-34.05588585017837,-32.08042944881278,-243.59676955951852,-2.873687498335186,0.3580999999999923,8.644173602853751,0.3775280000000001,-655.3826508125488,-11.860879904875159,-1.1494868014268769,0.07389533443875324,2.8249108204518443,-39.27467300832345,-8.58406788224454,-41.1148834904392,1.013313537457466,-1.0047000000000064,-17.05638129211256,-0.7998479999999998,142.05657406810747,-17.456599286563623,-1.983109631391202,-0.13020046542870314,-2.9036860879904864,-77.59453032104638,2.7191414999909487,-86.40635892971946,0.6700372026686445,-1.6840000000000033,-23.070848196591356,-1.2087880000000002,154.06982118413674,0.7030425152279859,0.5773091670483165,0.44253074097964024,0.31289723479630216,0.2849826119300748,0.169107449961393,0.1823540106324364,0.09488107264951497,0.11666808865049513,0.0522960788531539,0.07609925690864487,0.030118107188062015,0.050795669569018966,0.01661511949717664,0.03314014875980052,0.009782390375722375,9.004071471976113,5.680335906244004,4.107725068884271,2.1785273490939625,0.43535901479079364,-0.5266646022649676,3.251155627328924,0.9728683694856562,7.004061973009614,0.9955238410109304,17.424772980663228,10.941721788714828,19.000142889414544,11.692691798401452,2.004650732306983,0.545855738277133,3.9886785351653806,2.2281081346720533,8.001920229077452,1.222981285378121,4.009964538064374,2.4239767308896965,20.90752028531593,13.304118801608412,0.2578133619213309,0.5595346948084728,0.7648128111935787,0.8375614523390977,0.8587578771551226,0.8587578771551226,1.115680686505747,1056.913957279493,0.0,0.0,5.0,0.0,12.0,3.0,2.0,1.0,0.0,4.28312176854692,2.4400496274741066,1.1861032330943324,0.7417163794595503,0.6122375000746025,0.6122375000746025,203.9537270276548,1692.9983020630293,67.32591523272059,29.189625897638436,60.590883348524926,,19.0,996.0,0.0,9.184952231746642,11.600465787410833,35.17028331058136,49.97688629582901,19.056471336613843,31.37526581512397,0.0,10.056572987975922,13.996820844573445,14.41904761904762,37.0,17.0,1.5,20.0,0.0,0.03486943164362518,-3.0,0.15714285714285736,0.05137227304715031,-0.10577058409570705,0.0,0.17357522755666577,0.0,0.5996715927750407,0.8606758832565281,0.4425287356321833,0.5482993197278904,0.8606758832565281,28.3571956685277,0.3681683690653301,0.7121683690653301,27.382984124081233,7.268276362103007,7.777768831204758,55.740179792608934,15.046045193307766,0.5404247724433342,0.11228533685601057,0.0,0.3398282694848085,0.4166666666666667,0.35309777596612574,-0.8611488485223971,-0.06042840563908461,-0.01484739394004133,-0.047841602695688726,0.6469022240338742,1.5776907793007215,0.036557580613195834,0.02720156516035726,0.03944226948251803,-6.612972941506366,0.7479533581426517,0.6066095322317027,1.222446955825049,0.7554524911769932,0.43907686722772404,1.1811732783962539,0.75269209266823,1.1866007757049513,0.5965121469439566,0.521047702178359,0.6509726907104423,1.0401555520246655,0.8659251309093903,0.9111402806910205,1.3495593508321075,1.2135241767037837,0.8835750581601329,1.028974472487636,0.8612026221276745,0.9949490732885046,0.8929912647761811,0.5861379819366248,0.9497009150291802,0.919896901377638,0.992078108629903,1.0091267079099913,0.9899988091430294,1.1983655356495566,1.0352560603535947,1.0242472042406754,0.9908723956636972,1.0139871999654455,1.0033322572667167,0.9220547254219348,1.0129076964856611,0.9957688334378513,1.0602330898293042,0.8976758635481463,0.9931469835799555,1.0485995120815492,1.0160587864635455,0.9786079070447566,1.057565467753198,1.0866887107681074,0.9122878968925666,0.7516689147481767,0.8925958620667527,1.1013262203756862,0.9970117084086751,0.8055950652638211,1.0071351726294449,0.9524838876213633,0.9467890028137604,0.8256269768205532,0.9922068551060369,1.0038698145200524,0.8274151722457809,0.577869438210699,0.8174954175011646,1.0360985480820164,1.0166866270923252,0.7695675852779875,1.021203148434878,0.895155438263337,0.9427359030383605,0.9018050531354449,1.012164312257804,1.052542956724333,0.7977898957801599,0.4701852752766083,0.78440192687462,1.0918745336042404,1.0079728045978664,0.9466194580611625,0.9737190568302976,0.8930736814301665,1.018230033473802,0.909327705639207,1.0032760284940836,0.9113011069899556,0.9585972873418988,0.9025230705266676,0.9391380161664583,0.9628538363136325,1.0192756492500994,1.1266929842241034,0.8919041049381998,1.0514879415886127,1.1438867134755604,1.0642953453046533,1.0256574059184502,0.9428886669515284,1.117985056559873,1.239294736549886,1.0750886185034607,0.9561982359121631,6.0,0.17671870217324764,3.7777777777777795,1.8194444444444444,1.6538888888888892,0.9344444444444445,0.46934240362811797,0.4262329931972789,0.17083175862937766,0.15844135802469136,6115.456526236906,6916.882700760218,3073.345014982103,2804.6759087739583,18.661163382784505,0.4819190710155226,9.667992861284109,0.9302003684253773,1.0,0.4166666666666667,1.5748592265806516,3.4179313676534653,4.6718777620332395,5.116264615668022,5.245743495052969,5.245743495052969,0.1764705882352941,0.008032668280602165,0.08037825059101661,0.03790509259259259,0.03937830687830689,0.02595679012345679,0.01564474678760393,0.015786407155454773,0.006327102171458431,0.006337654320987655,0.4122176071367739,24.134948096885815,11.421457673155274,6.118626430801249,180.45800914510943,1.0,4.363565566424126,224.9275713196893,,184.48047853511773,181.5763351901575,184.5901505147137,184.43788751450217,263.50335162827986,183.48017793136623,184.67097953600108,227.06739742362606,0.07302164299965984,0.06750119116447394,-0.2645861394097216,0.36511590510930375,0.351637794787567,-0.09733477314458909,0.06990253200717128,-0.06934931990907652,0.07519220650494664,0.018600606886339088,0.0478489209228149,-0.014374307849001183,0.047123118754634756,-0.06848106013668213,-0.16675825840544825,-0.016544074114420815,0.05689163509874219,-0.028302472405259294,0.04969018516482429,0.027288488421011864,-0.051515219181972736,0.04376278341196128,-0.09052503616467651,0.06581890469327316,-0.03685571142724729,-0.06489035357965782,0.07738448640356765,-0.1159319998388969,-0.06310965040804559,-0.025154007210918594,-0.036939057048036045,-0.01751716071550462,-0.06177558090254384,-0.017968489208069507,-0.05940203016396691,-0.01746452135125746,-0.09965852760015947,-0.011171950938874702,-0.029428435643373593,-0.13164687661331959,-0.07742000391839154,-0.055109155958622626,-0.09973284423866358,-0.11490286942950868,-0.019837696306277356,-0.0019970022905965125,-0.0017578422147907953,-0.12459583044152933,-0.022015204947102362,0.03533452471043899,-0.05268529971276569,-0.09397638516495412,-0.03425121740872702,0.005208354847264021,-0.020857095195958245,-0.04204108880506151,0.029527932015987544,0.05167928408964188,0.03244885130709537,-0.04600366238217607,-0.04652656108215106,0.023243828490510782,0.06010866399782737,-0.03825756071496906,-0.05408768924836979,-0.12524430523455993,-0.04636606332466153,-0.08624997526004394,0.016519569236750027,0.037436268397464646,0.026100671722697286,-0.09192094528776967,-0.011973611241150338,-0.05379145980482567,0.031252474315404254,0.038031319910514554,-0.06914569582174104,-0.037149868862718066,-0.008675092024941522,0.03371394798182569,-0.051377992015121575,-0.08188461192660243,-0.06129941182607912,0.0220865155371507,-0.020297360969782775,-0.10688770511244385,-0.06342370555276837,-0.0450254443543034,-0.15734587785965046,0.013554004876194604,-0.020998700483287683,0.025676532400615227,-0.09918694167232668,-0.12757061474128378,-0.10670153614334615,0.02759021816162771,16.010552039087177,23.05149154476556,6.576167802474724,15.366619829020753,34.070817263755146,39.839279862828214,41.56867055588353,41.69918526630355,41.69918526630355,63.606588380455534,49.81288378588965,4.301252875528242,7.72031530012195,1.7721364189156839,13.793704594565876,12329.259719943366,11811.71959209424,1395.0688693149168,124.0,47.0,62.0,79.0,98.0,104.0,112.0,116.0,114.0,426.19548556400076,34.0,5.093750200806762,5.942799375126701,6.814542897259958,7.681099001536359,8.557374981049069,9.430519533826377,10.309519166816033,11.186322367787438,12.067321941680945,0.6494252873563219,0.9906206896551725,1.1305639266057406,0.6122095022091818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6612472744166837,0.9764705882352942,1.0101966496722505,0.6264888543414028,6.0,1.0,0.0,1.0,0.0,2.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,7.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,18.896730575423923,5.817220841045895,22.86528875457499,0.0,0.0,4.794537184071822,4.39041504767482,0.0,0.0,5.156663257125445,69.60755022260186,29.47870522669737,19.410607500638914,245.11408144801516,-597.7939351728829,-41.94830483161483,-10.30679198573936,-33.21077417627127,449.06780847566995,1095.2043668901465,25.37761040110576,18.882833911899073,27.380109172253658,0.47368421052631576,0.8155874461500168,0.20208167351152695,49.16274612740907,0.0695268765376629,114.16394419134842,0.18441255384998326,10.0,0.23529411764705882,0.2688399344228933,0.5834657658494216,0.7975235436781232,0.8733836145804366,0.895486601854148,0.895486601854148,4.826600000000004,,1.619047619047619,1.9044365501821605,1.496739107945042,1.6498516462766213,-7.363745361583799,1.7165486243949246,1.5880051870999226,-2.7812868340196677,115.49250000000005,23.181773076320084,0.0,10.056572987975922,0.0,32.10410811463005,33.35094872352818,53.47280273836101,0.0,11.49902366656781,4.23410650459726,0.0,5.54907608489522,2.3978952727983707,7.057036981697891,4.727387818712341,8.653296274408579,6.842683282238422,10.29650889041995,37.66666666666667,9.8694543963839,4.214315965379433,0.0,5.321639449172578,0.0,1.4299359854917773,2.476504925594508,0.0,57.456,0.0,11.510371048889144,0.0,0.0,0.0,0.0,0.0,-0.0008942288571116563,65.57270774313295,9.473725907600098,4.39041504767482,11.49902366656781,49.190766657869034,0.0,5.817220841045895,48.156024785247325,40.92129734774301,0.0,10.969244356107037,0.0,35.508151128132546,38.35234191616766,40.54203687312436,449.8551426393786,,368.8565023851356,363.0298035061097,369.0837372160116,368.7693329873091,529.4394933673473,366.8496107901908,369.2395071244473,455.03198414854876,40.54203687312436,449.8551426393786,,367.3718518908622,361.3002279933161,367.76197562591534,367.2557093874948,534.3704486181437,365.28238352285473,367.78276956905853,456.9160816812718,4.80268996589375,356.4382225580408,,298.0750092187439,293.1976114638175,297.6297651189831,298.0534623559664,427.3711347660528,296.37376260485144,298.3731131806969,368.51399759755554,1.3078076410685278,14.511456214173503,,11.898596851133407,11.710638822777733,11.905927006968117,11.895784935074486,17.078693334430557,11.8338584125868,11.910951842724106,14.67845110156609,2.4552371533594073,224.9275713196893,,184.48047853511773,181.5763351901575,184.5901505147137,184.43788751450217,263.50335162827986,183.48017793136623,184.67097953600108,227.06739742362606,56.635294117647064,0.0,3.1053830015435664,0.0,13.362128376723248,0.0,0.0,58.59140568099053,6.391932086161537,0.0,11.221086449707972,0.0,0.33635463383114994,2.428454576644963,0.0,0.0,0.0,36.33635355180136,566.1660347664505,91.34183514167779,198.24001932390098,270.96891019792787,296.74334770874526,304.25312271307223,304.25312271307223,921.0,142.08324946588962,128.01585515723474,80.75799110976803,64.80000000000001,64.80000000000001,0.9,8.41997822991653,6.087462841250339,3.8558088430718658,5.491664211531865,,5.50414425605669,5.503421278952416,5.502497921224058,5.504354068548194,5.496898218637446,5.503865417562563,5.504088498242728,5.5059070524762825,0.12438093042167309,0.17715045843651178,,0.17755304051795773,0.17752971867588438,0.17749993294271155,0.17755980866284496,0.17731929737540147,0.17754404572782462,0.1775512418787977,0.17760990491858977,2.4809829131184227,2.8346334561459443,,2.83690342109131,2.836772061054795,2.8366042681219685,2.836941539367817,2.8355860843963936,2.8368527600722064,2.8368932908887237,2.837223636935044,316.38000000000113,2643.95818529011,200.04900661460394,,198.34321455942043,198.37861601162578,198.57592722172745,198.31531405310466,199.74249161740514,198.36074846659926,198.35389033087807,198.6063022692797,85.28897371903581,6.453193761761417,,6.398168211594207,6.399310193923412,6.405675071668628,6.39726819526144,6.4433061812066175,6.398733821503202,6.398512591318648,6.4066549119122485,9.011434497394394,6.429964481096457,,6.421401048435583,6.421579518333488,6.42257364337735,6.421260370727432,6.428431106531906,6.421489446378756,6.4214548717245785,6.422726596079441,29.904854275603796,13.938825625534108,5.129120479782353,2.067152140056642,1.259944661600762,9.8694543963839,2.897663699408933,5.025408953821314,1.5742424344748567,383.6645849026252,170.15375630649126,-414.97772370322883,-29.11975352710523,-7.154788339710842,-23.054317983512707,311.73473999152804,760.2710372604749,17.616677549986566,13.10812133207715,19.00677593151187,3379.0,48.0,1.9316314734693196,0.864336136472126,0.0,0.0,0.44163831904350986,0.11582868622776515,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02282177322938192,0.4110544158647975,0.15219071562136385,0.6906280518991041,0.19618087277969085,21.794317972067564,17.89658417849781,15.046045193307767,10.638505983074273,13.394182760713514,7.948050148185472,11.305948659211056,5.882626504269928,9.216779003389115,4.131390229399158,7.457727177047198,2.9515745044300776,5.282749635177972,1.7279724277063708,3.7116966610976583,1.095627722080906,4.597482020462811,1.842551769767225,6.781672299153787,2.361345408275742,9.87894763900685,2.9543489371631724,101.48748167647337,50.1712187659062,32.5106053433013,27.627347128458705,26.862088371797764,26.862088371797764,162.0,190.0,64.04841099999999,35.985589000000004,0.43103448275862066,226.07,9.36111111111111,6.888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,15.0,16.0,58.0,0.0,1.0,61.0,16.0,1.0,8.0,53.0,17.0,34.0,44.0,0.0,0.0,0.0,24.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,6.0,0.0,2.0,31.0,7.0,0.0,2.0,4.0,0.0,4.0,8.0,0.0,0.0,1.0,1.0,3.0,3.784189633918261,6.7267110310817415,4.366278277705742,4.94787297235994,5.5126724118291675,6.003732734210176,6.2677637201012635,6.53758567242494,6.718177773849184,6.577595110527974 +135398508,C=C1[C@@H](n2cnc3c(=O)[nH]c(N)nc32)C[C@H](O)[C@H]1CO,0,25.257142857142856,6.613557142857143,3.5714285714285716,8.971428571428572,168.79574928289242,99.8655617142857,1.3747315877924287,6.638251428571429,6.199206349206349,8.066470857142855,211.83434812735422,26.62162162162162,6.754378378378378,4.378378378378378,8.35135135135135,154.92648308365406,101.43059075675674,1.672797728972973,6.8556351351351354,3.7282282282282284,8.125100972972973,256.81719953918844,24.03125,6.637757812499999,4.15625,7.40625,158.52403188500384,90.760592453125,1.5427900466780626,6.71868125,3.5546874999999996,8.0383139375,230.01614439609304,19.67816091954023,6.481342528735634,3.2528735632183907,5.67816091954023,162.40396656586944,72.16810434482758,1.3170397319366667,6.545319540229886,3.5405491698595153,7.958005057471265,191.1293526005704,17.489583333333332,6.386372916666666,2.78125,4.75,165.08578056728265,63.21844411458333,1.1907861342336772,6.4329864583333345,4.041666666666667,7.898786208333333,167.124928127334,14.10989010989011,6.2793285714285725,2.5494505494505493,3.2637362637362637,169.99495589223386,48.99951365934064,1.072766309545912,6.3098868131868135,3.2728937728937733,7.857235296703296,146.65145278833157,15.985507246376812,6.346608695652174,2.6666666666666665,3.9855072463768115,168.63484206882225,56.71832753623189,1.1361507555802461,6.386850724637681,3.528582930756844,7.876203014492753,158.60316942278678,16.785714285714285,6.542857142857143,2.4107142857142856,4.107142857142857,169.14436782054537,59.40841685714286,1.072384144407,6.570682142857144,4.250000000000001,8.061341714285714,153.4420942142726,13.533333333333333,6.567999999999999,1.9333333333333333,2.911111111111111,174.0040636209165,44.970144266666665,0.9000537386209556,6.563573333333334,4.82037037037037,8.131579555555556,121.7023167953835,7.856326530612244,0.16921224489795916,0.034319311055412534,0.7297959183673468,4.256326530612245,1.5555079981895503,37.101139954285706,0.1991864980528163,0.15468048979591828,2.3314285714285723,0.10375437061224485,44.53353961273117,-0.17215664644236137,-0.036839271924986206,-0.0218541568335905,0.2949145063430778,0.8008163265306123,-0.32676398508942134,-0.6031122616216136,0.012304834650017686,-0.030170296745725387,-0.45669669669669677,-0.023908495708769968,3.320241134037491,0.36956632653061194,0.013616326530612226,0.006274009172114011,0.017971938775510198,0.3820663265306124,0.2855089809663295,1.7463133506250068,0.012281670928511818,0.010900760204081601,-0.02423611111111109,0.006112441887755108,1.7086769790803809,-0.3200375322542813,-0.010814215341308935,-0.006666081712764597,-0.12519821721792165,0.08521698334506222,-0.2132017759709833,-1.521161315862067,-0.022867842532688233,-0.008970407694112139,-0.1757726692209451,-0.00820882841191649,-3.548625571338639,0.3023044217687075,0.029971386054421758,0.007973050093942896,-0.031284013605442175,0.32700680272108834,-0.0896187386420229,1.2389011245833332,-0.024352572622029115,0.025720730442176886,0.39104166666666673,0.018816485340136038,-4.2067273038402355,-0.439686028257457,-0.02804505494505493,-0.005107589315520385,0.01902668759811616,-0.6352904238618526,0.029100430714205906,-1.8875067257142897,0.024417369095210358,-0.024992232339089454,-0.3838095238095238,-0.01776263309262167,3.152320487197075,-0.34783791777580597,-0.010068766637089605,0.0005556397078579189,-0.1107482993197279,-0.6145045844424727,-0.010001229659244437,-1.6652136950724643,-0.012462126069611364,-0.008248647145814837,-0.0902737520128824,-0.005361655084294595,-1.6394097351759616,-0.9726530612244899,-0.016630102040816323,-0.00028793982345382143,-0.2563265306122449,-0.9491836734693876,-0.37018654944460155,-4.710622125714283,-0.057561515585673455,-0.014103653061224509,-0.14690476190476204,-0.01057953795918366,-9.659856121380388,-2.0664852607709747,-0.006577641723355994,0.0019478193973802528,-0.13233560090702948,-1.0112471655328796,-0.18537936422638157,-9.987016373333333,-0.05986516108218776,-0.009643029478458045,0.05666666666666655,0.002097479546485283,-15.007284774531428,,,0.45000000000000007,1.1875,0.475,0.05,0.7125,-0.2375,0.7929958589257378,0.019506887845997235,0.03240688784599723,0.8740672877278517,0.22877120065368098,0.24743258961897657,1.6670631466535895,0.4762037902726576,2.0293634273629233,1.2587603087067762,0.506665686613678,0.26393743204246856,0.0,0.7706031186561464,7.917642552571441,884.0,231.4745,125.0,314.0,5907.851224901235,3495.2946599999996,48.11560557273501,232.33880000000002,216.97222222222223,282.32647999999995,7414.202184457397,985.0,249.912,162.0,309.0,5732.2798740952,3752.9318579999995,61.893515971999996,253.6585,137.94444444444446,300.628736,9502.236382949972,1538.0,424.81649999999996,266.0,474.0,10145.538040640246,5808.677917,98.73856298739601,429.9956,227.49999999999997,514.452092,14721.033241349955,1712.0,563.8768000000001,283.0,494.0,14129.14509123064,6278.625077999999,114.58245667849,569.4428,308.0277777777778,692.34644,16628.253676249624,1679.0,613.0917999999999,267.0,456.0,15848.234934459135,6068.970635,114.31546888643301,617.5667000000001,388.00000000000006,758.283476,16043.993100224063,1284.0,571.4189000000001,232.0,297.0,15469.54098619328,4458.955742999999,97.62173416867797,574.1997,297.83333333333337,715.0084119999999,13345.282203738172,1103.0,437.916,184.0,275.0,11635.804102748736,3913.5646,78.39440213503698,440.6927,243.47222222222226,543.458008,10943.618690172289,940.0,366.4,135.0,230.0,9472.084597950541,3326.871344,60.053512086792,367.95820000000003,238.00000000000003,451.43513599999994,8592.757275999265,609.0,295.55999999999995,87.0,131.0,7830.182862941243,2023.6564919999998,40.502418237943004,295.36080000000004,216.91666666666666,365.92108,5476.604255792257,274.97142857142853,5.92242857142857,1.2011758869394387,25.542857142857137,148.9714285714286,54.44277993663426,1298.5398983999996,6.97152743184857,5.41381714285714,81.60000000000002,3.6314029714285696,1558.6738864455908,-6.3697959183673705,-1.3630530612244895,-0.8086038028428484,10.911836734693878,29.630204081632655,-12.09026744830859,-22.315153679999703,0.45527888205065437,-1.1163009795918393,-16.89777777777778,-0.8846143412244888,122.84892195938717,23.652244897959164,0.8714448979591825,0.4015365870152967,1.1502040816326526,24.452244897959194,18.272574781845087,111.76405444000044,0.7860269394247563,0.6976486530612225,-1.5511111111111098,0.3911962808163269,109.35532666114437,-27.843265306122472,-0.9408367346938773,-0.57994910901052,-10.892244897959184,7.413877551020414,-18.548554509475547,-132.34103447999982,-1.9895023003438763,-0.7804254693877561,-15.292222222222222,-0.7141680718367346,-308.7304247064616,29.021224489795916,2.8772530612244887,0.7654128090185179,-3.0032653061224486,31.392653061224483,-8.603398909634198,118.93450795999999,-2.337846971714795,2.469190122448981,37.540000000000006,1.8063825926530597,-403.8458211686626,-40.01142857142859,-2.5520999999999985,-0.464790627712355,1.7314285714285707,-57.811428571428586,2.6481391949927375,-171.76311204000035,2.2219805876641425,-2.2742931428571405,-34.92666666666667,-1.616399611428572,286.86116433493385,-24.00081632653061,-0.6947448979591827,0.038339139842196404,-7.641632653061225,-42.40081632653062,-0.6900848464878662,-114.89974496000004,-0.8598866988031841,-0.5691566530612238,-6.228888888888886,-0.369954200816327,-113.11927172714135,-54.46857142857144,-0.931285714285714,-0.016124630113414,-14.354285714285714,-53.154285714285706,-20.730446768897686,-263.7948390399999,-3.2234448727977134,-0.7898045714285725,-8.226666666666674,-0.5924541257142849,-540.9519427973017,-92.99183673469386,-0.29599387755101975,0.08765187288211138,-5.955102040816326,-45.50612244897958,-8.34207139018717,-449.4157368,-2.693932248698449,-0.43393632653061204,2.549999999999995,0.09438657959183773,-675.3278148539142,0.721939655491296,0.5326193978735714,0.43291253661150697,0.28296507546999844,0.2706313525378508,0.15024397072538934,0.1672277177497337,0.0812044536619598,0.10895183875538736,0.042167745646974196,0.06499463994885789,0.021367629322023036,0.041712479161776325,0.01085576705450427,0.026246660914501063,0.0055966404119537965,8.022437810283773,5.737778528866945,3.5458635714169833,2.2360546654178544,0.5028213143160747,-0.4207778120300048,3.277135806065712,0.9771525146289001,6.02210636628417,1.977056998122803,14.56540322992617,10.998719071056614,16.010420458020132,11.74930989808832,1.9519838077249196,0.7487423504569553,3.4917765023225398,2.283625143461196,7.008281359698405,1.1887156587543264,3.704327487682945,2.4776448359452186,20.852246678115346,14.702424982777623,0.32605895625685766,0.7649170626370262,0.8982350910519469,0.9088321781042537,0.9088321781042537,0.9088321781042537,1.7474336309839646,734.2582885949367,0.0,3.0,1.0,0.0,1.0,3.0,1.0,1.0,0.0,3.371069626268055,1.0046074131065774,0.2857142857142865,0.22857142857142954,0.22857142857142954,0.22857142857142954,124.83711698074214,1169.7146992098592,81.69832788723164,33.42041997742455,69.5724817934151,,9.0,305.0,11.66323328280031,15.007591973753234,30.03166883842503,17.641103373763006,0.0,6.3273200747645415,4.567099647791355,0.0,21.53087124644012,5.733667477162185,9.000000000000002,23.75,9.5,1.0,14.25,0.0,0.04999999999999991,-4.75,0.2085714285714284,0.03604395604395605,-0.17252747252747236,0.12299999999999978,0.2221967213114751,0.0,0.6514285714285716,0.9149999999999997,0.44285714285714317,0.6153846153846155,0.7919999999999999,15.859917178514756,0.3901377569199447,0.6481377569199447,17.481345754557033,4.5754240130736195,4.948651792379532,33.34126293307179,9.524075805453151,0.49180327868852486,0.21111111111111105,0.0,0.4888888888888888,0.4166666666666667,0.3617103914227027,-0.9373822934878661,-0.10311425286376787,-0.02678235124251046,-0.08521657213526054,0.6382896085772973,1.6541448390362876,0.07789008395839433,0.047261281115322504,0.06892270162651197,-1.0741799889299954,0.7987070611758892,0.9929952167957808,1.6382628077479018,0.7914626035431406,0.576747633709659,1.5287882857995956,0.7977382373688202,1.065889134852321,0.950037079440891,0.939533283283283,1.0198453122486641,0.90526099048882,0.776671602244389,0.7037028200906961,0.7053323981207478,1.2375034955257274,0.7774141733793631,1.0515760466637971,0.781196036253325,1.0336743035382565,0.7021686177590041,0.7083695023148145,0.7229204409851703,0.9529173441894685,0.940871002570203,0.9333529354193056,1.0277788548559916,1.2622463935817327,0.8958749432341749,1.2180729146125868,0.9435794597919572,1.1504922460055176,0.9237600170316504,0.9180103235419325,0.9492574998888226,1.0674077109181603,0.9119129260182877,0.7293917995352611,0.624947560235312,0.9844565622669652,0.8677558816008183,1.04314996391733,0.9186440707776204,1.1310346719517057,0.7433727938723984,0.7075858410493824,0.7236026555046893,1.0924865559492756,1.0741175906387876,1.160318661968564,1.0461809747986388,0.9069007055584238,1.1725089256734826,0.8556101188717354,1.0685543966742916,0.8227802154913777,1.1638261123308908,1.1207137769637765,1.1604368436533046,0.9123097336290581,1.012489910489477,0.9608000327211744,0.9291669804486509,1.041727458418442,1.1378507140752598,0.9746646785070436,1.0146537059918617,1.0137945116334282,0.9613616593517437,0.8601717659688672,0.9195469287072056,1.0114223119732328,1.119466957605985,1.161925006633379,1.1133813894119573,1.2716722595078302,1.2430475642500958,1.1819156291051487,1.1201405325149727,1.206231274303673,1.1500385125678427,1.2080439814814812,1.1730537455244376,1.1470643385352959,1.3354114713216958,1.2622682136510917,1.1741924120316012,1.0205070842654738,1.2704897071985677,0.9438235049735855,1.3351519277943713,1.1455633384034642,1.279973042521886,1.4124228395061722,1.2289025945192082,1.2348884713148853,4.5,0.0,3.1111111111111125,2.4861111111111107,1.3844444444444446,0.6913888888888889,0.44671201814058953,0.35423752834467115,0.10254472159234063,0.015625,4099.838955653702,4548.979446378602,2008.6985605503944,1836.444339777017,9.325270531247684,0.3828365396509154,5.755216229756167,0.6203162763951913,0.0,0.4166666666666667,1.7582133906769113,4.124675603838389,4.84356873123068,4.900711588373537,4.900711588373537,4.900711588373537,0.20454545454545453,0.0,0.09427609427609432,0.07312091503267974,0.044659498207885305,0.030060386473429946,0.022335600907029473,0.022139845521541947,0.012818090199042578,0.005208333333333333,0.5091642184964911,14.917355371900827,5.652892561983471,2.4934359438660025,113.1401844181926,1.0,3.9481344441926467,77.65804950333013,,59.03497103473323,57.60016446780735,57.111609388728446,59.04942741286953,85.05414504540131,58.45763551685421,59.1182827584327,75.61492365849556,-0.021913122598908222,-0.2177104378421406,-0.6367889145065998,0.404105447729609,0.18814729574223246,-0.21006898419663586,-0.016255895704680244,0.06177544547600278,-0.19504914152735972,-0.19588706353412236,-0.23043362479756918,0.07455596754515123,0.0470406016209476,0.08046891960344443,0.18281279487178198,0.024625978747203577,0.08976433640199466,0.18354709927472715,0.0470689944507563,0.06165915385115717,0.07047275463417398,-0.01039539079520696,0.05891262075694893,0.038368317316324604,-0.040736281900612493,-0.06390917718649901,-0.1942370492811301,-0.1715523669932372,0.020021251361277564,-0.13706247490795806,-0.04100039291882597,-0.11480618795067422,-0.05799314254789003,-0.07539268900408182,-0.0791179047540548,-0.07968433684359921,0.03847910605430868,0.17712303310257213,0.23231964304497474,-0.04286679716629382,0.07682841068917015,-0.05761380767333231,0.03339253527276654,-0.12226015749105539,0.16628296481419344,0.16772620506535946,0.18135607424633501,-0.09446200190738094,-0.05596585459428355,-0.1657389213290508,-0.14882552004827795,0.026071244192049557,-0.1492579150806999,0.018707991696652018,-0.05087462886692936,0.1225854630404509,-0.16157326869124608,-0.16462418300653592,-0.17119889010753025,0.07078531180341872,-0.044274880431770816,-0.0595037708007563,0.016190293183938737,-0.15175242356450416,-0.1443743989148502,-0.006429558492071291,-0.04488308707291105,-0.06256511456066118,-0.05332700430867463,-0.038720359319251024,-0.051676426281186696,-0.036812922337466525,-0.12380507065669162,-0.09827954265865836,-0.008390023418270519,-0.3512304250559285,-0.22300537015726885,-0.23798434329843385,-0.12696704552794044,-0.28898301917236596,-0.09117926300745832,-0.06301062091503272,-0.10196715470157831,-0.21691193211641427,-0.263034543271451,-0.03887213793140408,0.05675578376953054,-0.18133233905045987,-0.23758683885266155,-0.11917609195333223,-0.2691835449163791,-0.30054828850052834,-0.062341601653710985,0.0243055555555555,0.020215818708245754,-0.33698836663414855,0.8434326653017493,8.3623478560569,10.051997297324872,17.36566948109931,38.024158929604795,40.34823177344479,40.40583177344479,40.40583177344479,40.40583177344479,40.58726854725847,25.175206174135525,10.133313732273558,5.278748640849371,0.0,15.412062373122929,2470.105494040183,1973.7409226806483,828.0239048396033,85.0,33.0,47.0,65.0,75.0,86.0,94.0,103.0,100.0,277.1174893400004,22.0,4.709530201312334,5.602118820879701,6.523562306149512,7.43307534889858,8.358666283188,9.27453508401818,10.201181835114634,11.120105074395143,12.046930361683625,0.6952380952380953,1.0154285714285716,1.1484720528887202,0.6595953709099991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6492368691189052,0.9985434173669466,1.0276141920715849,0.6285121049111686,1.0,2.0,1.0,0.0,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,20.513821914634953,0.0,11.16387793838399,5.948339280986494,5.559266895052007,9.77851570501903,4.9839785209472085,4.9839785209472085,0.0,6.578935683598497,11.993926152995277,5.917906046161393,25.08000925617372,163.26202276415634,-423.0979617040872,-46.5417690438429,-12.08851319154535,-38.46345106400793,288.0991397448985,746.6167375057721,35.156558843388744,21.3319067858792,31.109030729407166,0.4444444444444444,0.5589199204603083,0.15267017618017267,191.65313746815218,0.10803853595761119,82.2150946456784,0.4410800795396917,5.0,0.09090909090909091,0.34277956292692824,0.8041427213534947,0.944297422316061,0.9554379378528487,0.9554379378528487,0.9554379378528487,-0.827800000000001,,1.4642857142857144,1.7854816193578404,1.6456504849231428,1.460297629707019,-5.837791883926547,1.5820838433292534,1.44679936621724,-2.793606575391221,71.9377,10.213054789681411,0.0,19.51903521063298,5.917906046161393,18.566628839822272,12.340549441675103,28.83316436755613,0.0,0.0,3.8066624897703196,0.0,5.176149732573829,3.044522437723423,6.736966958001855,5.476463551931511,8.38776764397578,7.627057417018934,10.086433914098924,24.333333333333336,1.4808210506424793,8.118960695389266,2.3804743795666417,0.0,0.0,0.5390074640967499,0.006588745065927881,1.6687962962962963,35.540000000000006,3.932350009448224,11.73091868228773,0.0,0.0,0.0,0.0,0.0,0.6944009826152686,40.19652185110521,11.29293437221419,5.948339280986494,0.0,42.4429383525756,0.0,5.917906046161393,12.462662452073971,23.273897472504125,0.0,11.16387793838399,0.0,23.08583798184997,22.723290419161682,25.225681351351856,155.31609900666027,,117.92351349803789,115.02178077367896,114.05865372896457,117.95282506276837,170.99681933554254,116.7570626493755,118.09188558024367,151.58578631122558,25.225681351351856,155.31609900666024,,116.60764858106589,113.43573329082149,112.62960874015886,116.64045124803393,175.9460819747292,115.34148328333993,116.79106512172638,154.0234538923823,4.882506177117766,113.83350217767119,,87.73265017342132,85.60734015973414,84.64665136079137,87.75334476193893,125.14356923106273,86.86563305453508,87.85736330319455,111.99832522514515,1.2612840675675927,7.765804950333013,,5.896175674901895,5.751089038683948,5.702932686448229,5.897641253138419,8.549840966777127,5.837853132468775,5.9045942790121835,7.579289315561279,2.5207697299353766,77.65804950333013,,59.03497103473323,57.60016446780735,57.111609388728446,59.04942741286953,85.05414504540131,58.45763551685421,59.1182827584327,75.61492365849556,34.949019607843134,0.0,0.0,0.0,0.0,5.547289147140337,19.229591784244562,35.96649672250547,0.22538123582766434,0.0,0.0,0.0,-1.3130210695389277,0.0,0.0,0.0,0.0,21.997923671890902,252.27474504843318,61.5374686736919,144.3636461343436,169.52490559307378,171.52490559307378,171.52490559307378,171.52490559307378,730.0,117.26970531563971,199.0864174606216,70.34202414509457,130.05,130.05,0.8,8.56554278235706,5.459431618637297,4.048032135960302,4.407807269214032,,4.401119466624316,4.400589149792023,4.395665894726034,4.401111486825043,4.385089648906025,4.4007245506628365,4.401165978748178,4.396483482314951,0.20240160679801508,0.22039036346070162,,0.2200559733312158,0.22002945748960118,0.2197832947363017,0.22005557434125214,0.21925448244530124,0.22003622753314184,0.2200582989374089,0.21982417411574753,2.0913780512389692,2.176524528499608,,2.1750061133566034,2.174885610200672,2.1737662121033763,2.17500430022552,2.171357250623459,2.174916378532635,2.1750166815491827,2.173952193381949,193.3699999999997,113.88521524995745,107.302743021708,,107.22774072017026,107.24352129747218,107.63743622883705,107.22870078136019,108.65344741096246,107.25022519151639,107.2253158666503,107.7349169783627,5.694260762497873,5.3651371510854,,5.361387036008513,5.362176064873609,5.381871811441853,5.3614350390680094,5.432672370548123,5.36251125957582,5.361265793332516,5.386745848918135,5.428338237934151,5.368801393911856,,5.368102171094797,5.368249329060689,5.371915688119733,5.368111124532458,5.381310616266261,5.368311838053666,5.368079556788817,5.372820918106133,1.6687962962962963,22.230353757243638,19.229591784244562,6.372471524103468,-0.37138012303686896,-0.2631018518518524,1.2016324168556307,3.764969529478458,0.0,225.4110938951657,73.69013638840937,-190.96998784996833,-21.00714698085687,-5.456285367141953,-17.360907986360758,130.036762633116,336.99379858932315,15.868305269369934,9.62839424540923,14.041408274555128,752.0,34.0,1.6329435625554916,0.7284166660842505,0.0,0.0,0.5162515966602192,0.18825832868605485,0.0,0.0,0.0,0.0,0.0,0.0,0.17479246499677625,0.09690889520345845,0.49275936539252807,0.21506889955309516,0.9248890710048332,0.27619344024368236,14.438793109825921,10.652387957471428,9.524075805453153,6.225231660339966,8.930834633749077,4.958051033937848,7.859702734237484,3.816609322112111,7.081869519100178,2.7409034670533226,4.874597996164342,1.6025721991517277,3.587273207912764,0.9335959666873672,2.4671861259631,0.5260841987236569,4.133723937224148,1.6793880370189362,7.341974436570843,2.354010752050847,10.6600296204527,2.756194193197234,67.30884026703622,27.425826963926532,22.290518589811846,22.11170241741499,22.11170241741499,22.11170241741499,110.0,135.0,37.94789499999998,19.906105,0.4,104.08,7.5,4.361111111111109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,9.0,10.0,35.0,0.0,0.0,37.0,10.0,2.0,5.0,32.0,12.0,22.0,25.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,7.0,4.0,2.0,20.0,8.0,0.0,5.0,3.0,0.0,3.0,2.0,0.0,0.0,0.0,2.0,2.0,3.4011973816621555,6.988759063135224,4.06474409244581,4.7106556938340685,5.356291419885857,5.820453781459894,6.251632892694062,6.590118596800695,6.945935035864924,7.019502776253876 +3657,NC(=O)NO,0,29.555555555555557,7.6622,2.2222222222222223,11.333333333333334,184.4275179346662,116.96183077777775,0.9193066243773335,7.556988888888889,12.669753086419753,9.057897333333333,163.0290866494591,27.125,7.850875,2.375,9.0,182.08671866188124,101.402787,1.07884061075,7.7957,6.75,9.19424,189.6400440761219,24.3,7.545889999999998,2.1,7.4,178.75462945003991,90.41394,0.9367226120849,7.48548,7.999999999999998,8.939864799999999,154.92329402494926,17.2,7.6697000000000015,1.4,4.5,186.9893807351999,58.392728999999996,0.6888282072848999,7.55092,9.866666666666667,9.2108736,109.86084872857835,5.5,6.589000000000001,1.0,0.0,187.1715440905413,10.755360000000001,0.5378336779496666,6.5120000000000005,4.166666666666667,8.35488,65.86242593981413,1.0,4.840000000000001,1.0,0.0,184.91765202424898,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.80246913580247,0.2879580246913579,0.0643244762640313,0.4444444444444444,5.3580246913580245,0.799808047130617,45.54994158024691,0.10105129680222222,0.2609876543209875,4.850480109739369,0.18411832098765424,30.78378505519828,-2.0108024691358026,-0.12456080246913573,-0.05475014026017857,-0.01388888888888886,0.0030864197530863224,-0.5560731048745896,-8.9821254691358,0.010699094469777761,-0.10542515432098763,-2.033736282578875,-0.07788265432098762,3.1087579889303742,0.497530864197531,0.052465308641975295,0.021079900715592247,-0.2555555555555556,-0.31358024691358033,0.06705135186026079,1.99962691975309,-0.059196396404122234,0.044219012345679036,0.3930384087791496,0.025506701234567893,-9.731551197228484,-3.4913580246913583,-0.04911580246913574,0.003320283410087106,-0.022222222222222247,-2.2358024691358027,0.011362498367016083,-16.47872374691358,-0.02012226754625556,-0.04970654320987648,-0.1171467764060357,-0.01924672098765429,-12.513736549929087,-3.6358024691358017,-0.1440691358024691,-0.029106270315866583,0.11111111111111106,-1.765432098765432,0.010132532755308595,-16.51833858024692,0.023297134355000023,-0.1297320987654321,-2.4615912208504804,-0.09457283950617283,-1.8573329733720587,11.8641975308642,0.2657975308641973,0.03958837976584682,0.11111111111111106,5.975308641975309,0.002257464052160469,55.39163319753086,0.05654012100277783,0.2511123456790121,3.2266803840877913,0.1496830123456788,35.099889325986396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.3933333333333333,0.9,0.3,0.0,0.6,-0.3,0.3476130556979168,0.028831590468686573,0.028831590468686573,0.538887782797621,0.2660032549863547,0.18800786701957775,0.8865008384955377,0.4540111220059324,1.7393603864164349,0.3851623963437928,0.6899812122026584,0.6642167778699836,0.0,1.3541979900726422,8.44747526311111,266.0,68.9598,20.0,102.0,1659.847661411996,1052.6564769999998,8.273759619396001,68.0129,114.02777777777777,81.521076,1467.2617798451317,217.0,62.807,19.0,72.0,1456.6937492950499,811.222296,8.630724886,62.3656,54.0,73.55392,1517.1203526089753,243.0,75.45889999999999,21.0,74.0,1787.5462945003992,904.1393999999999,9.367226120849,74.8548,79.99999999999999,89.398648,1549.2329402494927,172.0,76.69700000000002,14.0,45.0,1869.893807351999,583.92729,6.888282072848999,75.50919999999999,98.66666666666667,92.108736,1098.6084872857834,33.0,39.534000000000006,6.0,0.0,1123.0292645432478,64.53216,3.227002067698,39.072,25.0,50.12928,395.1745556388848,2.0,9.680000000000001,2.0,0.0,369.83530404849796,2.032128,0.8892258096979999,9.680000000000001,2.0,13.436928,62.16748886186053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.22222222222223,2.591622222222221,0.5789202863762817,4.0,48.22222222222222,7.198272424175554,409.9494742222222,0.90946167122,2.348888888888888,43.65432098765432,1.6570648888888881,277.0540654967845,-16.08641975308642,-0.9964864197530858,-0.43800112208142855,-0.11111111111111088,0.02469135802469058,-4.448584838996717,-71.8570037530864,0.08559275575822209,-0.8434012345679011,-16.269890260631,-0.623061234567901,24.870063911442994,4.97530864197531,0.524653086419753,0.21079900715592248,-2.555555555555556,-3.1358024691358035,0.6705135186026079,19.9962691975309,-0.5919639640412223,0.4421901234567904,3.930384087791496,0.2550670123456789,-97.31551197228484,-34.91358024691358,-0.4911580246913574,0.03320283410087106,-0.22222222222222246,-22.35802469135803,0.11362498367016083,-164.7872374691358,-0.2012226754625556,-0.49706543209876486,-1.171467764060357,-0.1924672098765429,-125.13736549929087,-21.81481481481481,-0.8644148148148146,-0.1746376218951995,0.6666666666666664,-10.592592592592592,0.060795196531851566,-99.11003148148151,0.13978280613000013,-0.7783925925925925,-14.769547325102883,-0.567437037037037,-11.143997840232352,23.7283950617284,0.5315950617283945,0.07917675953169365,0.22222222222222213,11.950617283950619,0.004514928104320938,110.78326639506172,0.11308024200555566,0.5022246913580242,6.453360768175583,0.2993660246913576,70.19977865197279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8568914100752346,0.48656243103068936,0.5675139025074155,0.24160151939418084,0.45052378514530367,0.11901354224652991,0.408248290463863,0.055096634447777064,,,,,,,,,8.022603344994518,5.957232906780606,3.546295347291693,2.424669787526292,0.44752489864396233,-0.32250813996466754,3.0373350910425434,0.9726328119692287,6.021929560218662,2.9877836187924194,14.551653126205764,11.235105180636326,16.010433469480734,11.989061666687741,1.7509773888085045,0.747557091596384,3.4918095401577607,2.466077193638008,7.008272126492851,1.6416467027627677,3.7040365809624456,2.6600726919985656,20.59145666847859,14.696524332634876,0.579380164285695,0.8333333333333333,0.9298966940476158,0.9298966940476158,0.9298966940476158,0.9298966940476158,2.5395388613593903,42.91260938324327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3333333333333333,0.5283208335737188,0.22222222222222232,0.22222222222222232,0.22222222222222232,0.22222222222222232,-10.980366078432823,237.77178583056917,51.63290023109051,26.419087314507685,53.801582843788395,,3.0,19.0,6.031114512338072,4.794537184071822,0.0,0.0,0.0,5.480096598121202,0.0,0.0,5.733667477162185,5.20725302477729,1.9666666666666666,4.5,1.5,0.0,3.0,0.0,0.10666666666666669,-1.5,0.3638344226579522,0.0,-0.3638344226579522,0.3851851851851853,0.3768571428571429,0.0,0.7814814814814814,1.1666666666666667,0.41764705882352926,0.7814814814814814,0.7814814814814814,1.738065278489584,0.14415795234343287,0.14415795234343287,2.6944389139881046,1.3300162749317734,0.9400393350978887,4.432504192477689,2.270055610029662,0.3371428571428571,0.5423728813559322,0.0,0.2542372881355932,0.0,0.5254808223652061,-0.5798875798170107,-0.14430047304376953,-0.06443195331300117,-0.14497189495425267,0.4745191776347938,0.5236495144710699,0.09533612005178728,0.05818327938567444,0.104729902894214,1.1823645096291175,0.9294710327455918,1.1181027756102997,1.8169788371801285,1.375,0.673963133640553,2.1158140626974635,0.9263243055024633,1.1398577383776638,1.082788552507096,1.0546875,1.1021077160258728,0.8476727225328938,0.7526448362720403,0.6307555113485336,0.6557776087206264,1.9,0.8626728110599079,1.3622077823348095,0.7617937624935519,1.8280062695416643,0.6339678334910123,0.7225961538461537,0.6780808690922318,1.292631327932752,1.2740554156171284,1.1754182279653242,0.7882324306422153,0.6,1.4101382488479264,0.4964288725299916,1.2744461462994576,0.7534461548643341,1.194113528855251,1.163178733031674,1.1359989657750948,1.1227483420387296,1.3828715365239295,1.4989067336631712,1.1541683947139987,0.0,1.3133640552995391,0.08118682496204663,1.3711677446750328,0.1777689748197839,1.5094796594134343,1.4507918552036199,1.5070566538532926,0.8441369200036725,0.0,0.0,0.0495292703232799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.5,0.0,0.44444444444444464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,602.8198446707395,692.3661682554938,459.9897192803917,404.90474022318926,4.45445101567502,0.43384359170746734,2.5219159879495936,0.7662963544224348,0.0,0.0,1.836591668108979,2.6416041678685933,2.94770277922009,2.94770277922009,2.94770277922009,2.94770277922009,0.375,0.0,0.11111111111111116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.48611111111111116,5.0,2.25,4.0,28.538798260168065,1.0,2.4085761750980286,7.460499637077914,,5.430310558463128,5.157946045967959,5.149862820477558,5.433393615275328,12.832519079302454,5.324351491394997,5.445859865229603,9.485013329071053,-0.20513224181360204,-0.43256583178275293,-0.8511556321958509,-0.031249999999999938,0.0005760368663594289,-0.6952582021018063,-0.19719290865196124,0.10587785420228746,-0.4039469016083255,-0.41928556278280543,-0.42300328344950483,0.10098686640892512,0.05075566750629724,0.18219776544935393,0.32771196813272185,-0.5750000000000001,-0.05852534562211983,0.08383430511960152,0.0438996593712481,-0.5858054104934598,0.16942951750236535,0.08103082579185521,0.13853429195825767,-0.31612588184912543,-0.3561712846347607,-0.17056584035739075,0.05161772940767384,-0.05000000000000006,-0.41728110599078344,0.014206531689422309,-0.3617726647987559,-0.1991292361704066,-0.19045553453169334,-0.024151583710407248,-0.10453452369329855,-0.4065041555965505,-0.3709068010075566,-0.5003129742846609,-0.4524913688592613,0.2499999999999999,-0.32949308755760365,0.012668705687145763,-0.3626423658775937,0.23054760396194832,-0.49708136234626316,-0.5074943438914027,-0.5136525197430747,-0.0603347824200852,1.2103274559193957,0.9230426245251788,0.6154481476592091,0.2499999999999999,1.1152073732718897,0.0028225073006696083,1.2160637593781651,0.559519004624337,0.9621617786187316,0.6652290723981901,0.812971851702447,1.1402070688529344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.223627331632784,26.255079931390476,26.563627331632784,26.563627331632784,26.563627331632784,26.563627331632784,8.696801932082174,1.9258119817189638,3.449906061013292,3.321083889349918,0.0,6.7709899503632105,172.49699645013558,123.96592177082105,52.26238765093434,0.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,76.027277368,4.0,2.833213344056216,3.367295829986474,4.007333185232471,4.574710978503383,5.220355825078324,5.796057750765372,6.444131256700441,7.02197642307216,7.6708948313621175,0.7407407407407408,1.0862222222222224,1.2034253281193417,0.7035680256061574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5416614770459082,1.0592592592592593,1.0848102290199886,0.5587978831671079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.733667477162185,0.0,0.0,0.0,0.0,5.20725302477729,10.274633782193025,0.0,0.0,0.0,0.0,0.0,0.0,113.22185198866921,-124.94451355349116,-31.091461582401635,-13.882723728165683,-31.23612838837279,102.24148591023639,112.82727227707801,20.541438648688874,12.536363586342002,22.565454455415605,0.3333333333333333,0.24621937866492305,0.31706345185748747,52.15504942322226,0.3039235475355034,34.51127678287248,0.7537806213350768,2.0,0.0,0.579380164285695,0.8333333333333333,0.9298966940476158,0.9298966940476158,0.9298966940476158,0.9298966940476158,-0.9561000000000002,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,14.5056,10.001790208849112,0.0,5.480096598121202,5.733667477162185,0.0,0.0,0.0,0.0,0.0,2.1972245773362196,0.0,3.2188758248682006,0.0,4.394449154672439,0.0,5.60947179518496,0.0,6.834108738813838,6.666666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.776000000000002,0.0,9.229166666666666,0.0,0.0,0.0,0.0,0.0,-0.9398148148148147,10.830827953074074,11.213764075283386,4.794537184071822,0.0,11.238367537115362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.332112230455416,4.874953293413173,5.226251859505506,14.918588541826846,,10.521483272740904,9.904531299000958,9.947614810261753,10.528614783552946,26.945410981682556,10.284682426101515,10.55630567498737,19.54441111841514,5.226251859505506,14.918588541826846,,10.050054701312334,9.338872853212218,9.469554284658614,10.05849587445589,28.865982280707716,9.780796257190868,10.089796322990143,20.406394045976885,3.695518130045147,11.32198879388197,,8.213425546195698,7.724270624468341,7.721192519420031,8.218940218930474,21.783138072376133,8.023515670997952,8.241251469916326,15.451931595701687,1.0452503719011013,2.9837177083653694,,2.1042966545481807,1.9809062598001916,1.9895229620523505,2.105722956710589,5.389082196336512,2.056936485220303,2.111261134997474,3.9088822236830283,1.8477590650225733,7.459294270913424,,5.417884493513309,5.140818464763392,5.133160913665256,5.421013694808826,12.83251505783289,5.310303269354307,5.433655954826094,9.48487791668699,9.533333333333335,0.0,0.0,0.0,0.0,4.291666666666667,7.418981481481481,9.763292061179897,0.0,1.1666666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.029180948503971,53.05124918253891,16.52932501298081,23.77443751081734,26.52932501298081,26.52932501298081,26.52932501298081,26.52932501298081,15.0,55.93596942475696,162.4120887163667,27.25413009087566,75.35000000000001,75.35000000000001,0.5,2.995732273553991,3.0,2.130986313697834,2.2019587059383854,,2.1997523677053503,2.1994947953509754,2.2003613142231773,2.1997568273174384,2.194816083167924,2.199700765881894,2.19976033767487,2.1979656553811306,0.4261972627395668,0.4403917411876771,,0.4399504735410701,0.43989895907019505,0.44007226284463546,0.4399513654634877,0.4389632166335848,0.4399401531763788,0.43995206753497396,0.4395931310762261,0.06343775005718415,0.09620010458486043,,0.0951976133350259,0.0950805149565432,0.09547440005724882,0.09519964065757047,0.09295107346713961,0.09517415504514672,0.09520123644969936,0.09438504990410657,52.350000000000044,8.629874180987336,10.158195172930267,,10.141280587004196,10.159782759983287,10.152439660019791,10.141075333654296,10.041120112948649,10.147832406930966,10.140345266929728,10.048459168895068,1.7259748361974672,2.0316390345860533,,2.028256117400839,2.0319565519966574,2.0304879320039584,2.0282150667308594,2.00822402258973,2.029566481386193,2.028069053385946,2.0096918337790135,1.4620827451692444,1.6251336053508358,,1.6234671002606789,1.6252898794703858,1.6245668566389544,1.6234468606641832,1.613541492515448,1.624112946154136,1.6233748670164738,1.6142721256631052,0.0,9.229166666666666,7.418981481481481,5.458333333333334,0.0,-0.9398148148148147,0.0,0.0,0.0,62.789960322277906,24.395158152574513,-26.92096194239026,-6.699070092699846,-2.9912179935989176,-6.730240485597565,22.029291825963462,24.310140690847884,4.425926936492091,2.7011267434275434,4.862028138169578,18.0,2.0,0.408248290463863,0.05892556509887896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.284457050376173,2.4328121551534467,2.270055610029662,0.9664060775767234,1.8020951405812147,0.47605416898611963,0.816496580927726,0.11019326889555413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.408248290463863,0.026352313834736494,0.0,0.0,0.0,0.0,18.659316679807734,14.616876395539549,14.34853889561968,14.34853889561968,14.34853889561968,14.34853889561968,16.0,14.0,8.141172000000001,3.7408280000000005,0.0,4.04,3.361111111111111,1.3333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,8.0,0.0,1.0,1.0,7.0,1.0,4.0,7.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,0.0,5.0,4.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.791759469228055,0.0,1.9459101490553132,1.3862943611198906,0.0,0.0,0.0,0.0,0.0,0.0 +1935,Nc1c2c(nc3ccccc13)CCCC2,0,20.0,5.788268965517242,3.310344827586207,5.724137931034483,160.67772010791333,78.69139886206895,1.5482855402719315,5.888817241379312,2.685823754789272,7.32718882758621,221.63863762819568,23.096774193548388,6.130096774193549,4.032258064516129,6.290322580645161,145.12415475217415,87.03016429032252,1.9156476232258055,6.289903225806454,2.780465949820789,7.543505677419357,272.3561133591695,19.29090909090909,5.922727272727275,3.690909090909091,5.072727272727272,148.54587032102995,71.38267723636363,1.679953028804454,6.065763636363633,2.453535353535354,7.400079709090906,230.6897684739709,15.891891891891891,5.8437432432432415,3.135135135135135,3.7027027027027026,156.96110519179098,57.50387141891891,1.412768703820743,5.951108108108108,2.375750750750752,7.376282000000001,188.50477914634692,14.257142857142858,5.938012857142856,2.8142857142857145,2.6,160.60843591402846,49.44932747142857,1.319708538121286,6.027079999999998,2.561904761904762,7.468152399999998,171.66691461824976,11.206349206349206,5.791809523809524,2.4126984126984126,1.4444444444444444,162.60255085349428,36.455702158730155,1.2192813054498253,5.873444444444444,2.280423280423281,7.370291555555557,150.84286931983402,7.943396226415095,5.456641509433963,1.9811320754716981,0.6792452830188679,162.26043954920917,23.833912867924518,1.079752152029887,5.539603773584904,1.8113207547169805,7.1107313207547165,122.8672661220237,5.2105263157894735,5.226842105263158,1.631578947368421,0.3157894736842105,166.7976923012811,13.809078368421051,0.8848586807179473,5.2922368421052655,1.5,6.9508094736842105,91.36316573486157,2.6666666666666665,5.060000000000001,1.3333333333333333,0.0,174.31928392046603,4.713072,0.6675900398993332,5.096666666666668,1.2777777777777777,6.8515200000000025,58.96803507745972,6.6397146254458965,0.054721284185493435,0.011052839985352624,0.5707491082045183,2.9845422116527933,1.5435823416693093,31.9487159120095,0.234091952887384,0.05742497027348391,0.4530321046373366,0.023403005945303194,52.831502111957505,0.2590617927965937,-0.00449347550918654,-0.005866692936969794,0.25794944574431333,1.1811974991369718,0.18307458001573806,1.3097473738636718,0.025697435537601513,-0.0034759157684784896,-0.047921487902693134,-0.002445613286793677,4.8781947661278915,0.3527618635823152,0.00515721111231214,0.0002594590837631295,0.05056750621554429,0.6499405469678957,-0.2250101361883479,1.6403959343854662,-0.010721786973315666,0.0056667538644470305,0.04055897860891915,0.0017876022051670367,-0.6058286186623535,0.6035286177973457,0.004820467911431021,-1.7257708934651243e-05,-0.07494295722595369,0.022913519940868363,-0.20496919592952748,2.858846367114437,-0.0013475382190825515,0.005973631776842205,0.04837878901493646,0.0012676948934666151,1.6442206100399903,-1.206217088500085,-0.006331875318498426,0.00162367646920968,-0.1919313742143706,-1.068286054017326,-0.08381509782291371,-5.803130337625277,-0.03412986841093874,-0.007990487514863288,-0.015374742842043718,-0.0018310335315100525,-8.691834934342742,-2.0639072910178733,-0.021750840835739763,-0.0023819333060216973,-0.12849404525980032,-1.2281109034973483,0.09394832743179454,-9.820704552950946,-0.028802926765480973,-0.02317592812789007,-0.16324313668744903,-0.008585856520015827,-9.90866195056318,-1.0411459852376996,-0.005598967985103023,-5.7310098847595655e-05,-0.02618176923249502,-0.35994884795728366,-0.0972370337759613,-5.01136422430619,-0.030934242346671012,-0.006942536961837812,-0.07213136004108114,-0.0017096188275413952,-7.698977184136619,0.679704612303649,0.008781801113962182,0.0008456612180126135,0.10257212591526377,0.5290694035922147,-0.07625740988110334,3.216756503598482,0.00442838646379736,0.009067407221978956,0.03648191028502695,0.0036133352525188163,2.4335218650805763,2.6246531906460566,0.018375267538644605,0.0005097950455665338,0.21086008719778043,1.2683313515655965,0.2008757475200034,12.597309904082454,0.06963044533640891,0.021087673404677106,0.10699343814682709,0.006546695204121926,17.919342577057435,,,0.48666666666666664,1.3166666666666667,0.7,0.03333333333333333,0.6166666666666667,0.08333333333333333,0.6827657235537216,0.0036026811377971885,0.02080268113779719,0.6944399805867926,0.23505611639823432,0.2556221066221748,1.3772057041405141,0.49067822302040914,2.089433377710436,1.8304878403561473,0.2589455373542887,0.0,0.0,0.2589455373542887,6.831575808551724,580.0,167.8598,96.0,166.0,4659.6538831294865,2282.050567,44.900280667886015,170.77570000000003,77.88888888888889,212.48847600000008,6427.520491217675,716.0,190.03300000000002,125.0,195.0,4498.848797317399,2697.9350929999982,59.38507631999997,194.98700000000008,86.19444444444446,233.84867600000007,8443.039514134254,1061.0,325.7500000000001,203.0,279.0,8170.022867656647,3926.047248,92.39741658424497,333.61699999999985,134.94444444444446,407.00438399999985,12687.9372660684,1176.0,432.4369999999999,232.0,274.0,11615.121784192532,4255.286485,104.54488408273498,440.382,175.80555555555563,545.844868,13949.353656829671,998.0,415.6608999999999,197.0,182.0,11242.590513981992,3461.452923,92.37959766849002,421.8955999999999,179.33333333333334,522.7706679999999,12016.684023277483,706.0,364.884,152.0,91.0,10243.960703770139,2296.7092359999997,76.81472224333899,370.027,143.66666666666669,464.32836800000007,9503.100767149543,421.0,289.20200000000006,105.0,36.0,8599.803296108086,1263.1973819999994,57.226864057584,293.59899999999993,95.99999999999997,376.86875999999995,6511.9651044672555,198.0,198.62,62.0,12.0,6338.312307448682,524.744978,33.624629867281996,201.10500000000008,57.0,264.13076,3471.8002979247394,48.0,91.08000000000003,24.0,0.0,3137.7471105683885,84.83529600000001,12.016620718187998,91.74000000000001,23.0,123.32736000000004,1061.424631394275,192.551724137931,1.5869172413793096,0.3205323595752261,16.551724137931032,86.551724137931,44.76388790840997,926.5127614482756,6.7886666337341355,1.6653241379310333,13.137931034482762,0.6786871724137926,1532.1135612467676,8.030915576694404,-0.13929774078478274,-0.18186748104606362,7.996432818073713,36.61712247324613,5.67531198048788,40.602168589773825,0.7966205016656469,-0.10775338882283318,-1.485566124983487,-0.075814011890604,151.22403774996462,19.401902497027336,0.28364661117716766,0.01427024960697212,2.781212841854936,35.74673008323426,-12.375557490359133,90.22177639120063,-0.5896982835323616,0.31167146254458666,2.230743823490553,0.09831812128418702,-33.32057402642944,44.66111771700358,0.35671462544589555,-0.001277070461164192,-5.545778834720573,1.6956004756242589,-15.167720498785034,211.5546311664683,-0.09971782821210881,0.44204875148632317,3.580030387105298,0.09380942211652951,121.67232514295928,-84.43519619500594,-0.44323127229488984,0.1136573528446776,-13.435196195005942,-74.78002378121282,-5.86705684760396,-406.2191236337694,-2.389090788765712,-0.5593341260404302,-1.0762319989430602,-0.12817234720570367,-608.4284454039919,-130.02615933412602,-1.370302972651605,-0.15006179827936691,-8.09512485136742,-77.37098692033294,5.918744628203056,-618.7043868359096,-1.8145843862253013,-1.4600834720570743,-10.28431761130929,-0.540908960760997,-624.2457028854803,-55.18073721759808,-0.2967453032104602,-0.00303743523892257,-1.387633769322236,-19.077288941736033,-5.153562790125949,-265.60230388822805,-1.6395148443735637,-0.36795445897740403,-3.822962082177301,-0.09060979785969395,-408.0457907592408,25.82877526753866,0.3337084423305629,0.032135126284479315,3.8977407847800234,20.104637336504158,-2.897781575481927,122.23674713674232,0.16827868562429968,0.3445614744352003,1.3863125908310243,0.13730673959571502,92.4738308730619,47.24375743162902,0.3307548156956029,0.009176310820197608,3.7954815695600477,22.829964328180736,3.615763455360061,226.75157827348417,1.2533480160553605,0.3795781212841879,1.9258818866428875,0.11784051367419467,322.5481663870338,0.6833808251084706,0.5774928044129519,0.4329513732533022,0.3247262223806438,0.27131673538991286,0.17395757253598096,0.1732921735814185,0.09451336130486189,0.11192910780254141,0.05238585306217138,0.07170214365305454,0.029873142661865703,0.04658176943877464,0.015838642872749293,0.031051385091066405,0.009375278681284165,7.045184428314365,5.670932356638538,3.149166360094909,2.167804174204001,0.3798149703970657,-0.39366569758275416,3.2801619929602324,0.9939052002064912,5.044572326986758,1.8374409443289936,14.547995632852123,10.935007399438858,14.029686543699585,11.684539101739025,2.0108396830662216,1.0226790092671987,3.1320152162862,2.216816329538748,4.005239551238899,1.3154226905598367,3.294547067605011,2.4122068404072414,20.911920770088766,15.58938060949611,0.24993868618853596,0.6328474973356644,0.7395655131245034,0.8329437769397374,0.8729630328605521,0.8729630328605521,1.7601959850462248,517.1700342808027,0.0,0.0,0.0,0.0,7.0,4.0,2.0,0.0,0.0,3.5658167325738157,1.5862068965517238,1.0344827586206895,0.5517241379310347,0.3448275862068968,0.3448275862068968,175.4900109097071,385.2066877262553,26.522502548595646,13.282989231939837,25.134863915038046,,7.0,189.0,0.0,0.0,0.0,0.0,29.43195445261664,24.099022732397476,0.0,18.19910120538483,6.06636706846161,10.717645998109393,7.3,19.75,10.5,0.5,9.25,0.0,0.013333333333333345,1.25,0.08814129520605546,0.05069897483690583,-0.03744232036914963,0.05333333333333323,0.06798230088495572,0.0,0.53448275862069,0.7533333333333333,0.4463414634146345,0.4837837837837841,0.7000000000000001,10.241485853305823,0.05404021706695783,0.31204021706695784,10.416599708801888,3.5258417459735147,3.8343315993326224,20.65808556210771,7.360173345306137,0.6460176991150443,0.05479452054794521,0.0,0.3424657534246575,0.3076923076923077,0.27422365103832846,-0.2718033265727296,-0.02458660258936869,-0.009372528502507917,-0.024709393324793598,0.7257763489616716,0.7193705767122914,0.04365835061004242,0.02480588195559625,0.03996503203957174,-3.849428414744934,0.8795290692300585,1.0155417076195747,1.5824602694359684,0.6002688172043011,0.5165659940881636,1.0039055888488932,0.8786916629450269,0.8932334724650838,0.9766770527859236,1.143914806348131,1.0723344163332755,0.8774822160386809,0.8672050013024227,0.6880303800709008,0.6552708445443878,1.0765151515151516,0.7999420499818909,1.1739367823655629,0.8713550121894623,1.054243815256916,0.7070247933884293,0.5995439963943899,0.6829163188779993,0.9972017133683271,0.8764229845891739,0.9519323367643465,0.8721468440676851,1.3030405405405407,1.1082265532464741,1.1350388832095095,0.8771854785719818,0.9666500555719334,0.9173832923832923,0.8164128695624756,1.0115398714454662,0.9265680283601342,1.173710601719198,1.467184260961395,1.2643426851245443,1.4379166666666667,1.4673306772908372,1.1041350624898696,1.1697156517368732,1.05599505153762,1.4064529220779218,1.4039078448527265,1.53967017865323,1.0778743072072994,1.2960442534224772,1.6223908423618985,1.7100085248385801,1.141203703703704,1.3659141212926078,0.9412646564625035,1.2898056568815035,1.0442389527877327,1.5738410894660892,1.7285732801918277,1.6619065638962471,1.114428105630012,1.1084500189219877,0.7974378824118055,0.8712830088908832,0.734119496855346,0.8759076899947384,0.918782571715576,1.1109782637506267,1.1184022679768324,0.8798241852487129,0.9483319302068373,0.6816056055499333,1.13875863366264,0.8610126677725836,0.3761015947778075,0.28195420165454305,0.4006578947368421,0.5703921157475363,0.8098997827444837,0.866538303553779,0.9831359322255872,0.4878139952153104,0.3925956623843071,0.23173345940285386,0.9744383531362764,0.6058978032473736,0.26466408521401263,0.16781201837199697,0.28194444444444444,0.39539619300575496,0.5699294767461182,0.6097862136119185,0.6918363967513391,0.3432765151515147,0.26640419947506555,0.16307169365386015,0.6857158781329351,2.0,0.0,1.7777777777777786,1.1875,1.0799999999999998,0.23611111111111116,0.0783673469387755,0.0,0.0,0.0,2489.9653209094577,2831.7602398701156,1407.1541661349263,1260.8758115415155,9.350597541643003,0.4423205259065497,5.214636319482979,0.7931447120688363,1.0,0.3076923076923077,1.2921642625537564,3.271774098575848,3.8234982365068824,4.306256857196537,4.513153408920675,4.513153408920675,0.11764705882352941,0.0,0.07407407407407411,0.0475,0.05684210526315789,0.019675925925925927,0.013061224489795917,0.0,0.0,0.0,0.3288003885764832,10.173010380622838,4.107638888888889,1.7439446366782008,89.1265436332486,1.0,3.6729504548840852,44.56630206043945,,32.958660283880334,32.6265181539489,32.32016246940093,32.96143316496716,36.5345387465064,32.81637177716187,32.97881277515395,35.57363267718105,0.039017007117108767,-0.08211568087391043,-0.5307860192262275,0.45194892473118237,0.39577175170286605,0.11860370196885758,0.04099530564767827,0.10977496330240763,-0.060529692082113284,-0.10577945229964544,-0.10449996434259307,0.09233496249624512,0.05312907007033079,0.09424506732755575,0.023474426853819313,0.0885984848484849,0.21776892430278905,-0.14577138524726213,0.05134465932537972,-0.04580160420325795,0.09868100649350559,0.08952782417349342,0.07638344447482374,-0.011467185191488895,0.09089677069619767,0.08809127898187966,-0.001561382319613909,-0.13130630630630638,0.007677398514051912,-0.13278798959818577,0.08948235587896658,-0.005756448277958619,0.10402498683748629,0.10678887548966287,0.054168037064530675,0.031121973525485833,-0.181667007777323,-0.115711380183161,0.14690129155596193,-0.33627976190476183,-0.35793966989186116,-0.05429907790488958,-0.18163892262862072,-0.1457968460255351,-0.1391465677179969,-0.033937424488605684,-0.07823924566739372,-0.16451992820350822,-0.3108427707281575,-0.39748410804850764,-0.21550418798953647,-0.22513227513227516,-0.41149054575349414,0.0608638262408431,-0.307389648460311,-0.12304108026873256,-0.40358624510410235,-0.3603345878061538,-0.3668698174961983,-0.1875521526827935,-0.15680583337838566,-0.10231792013732208,-0.00518510165021332,-0.045872641509433994,-0.12060437495301819,-0.06299439372363135,-0.1568565146126083,-0.1321456887565577,-0.12089752817936662,-0.1592190913242762,-0.07305124955046652,-0.14572701657850623,0.10236955210375519,0.16048236521997103,0.07651076276624791,0.17971491228070177,0.17726986789683374,-0.04940287785271932,0.10068500131453813,0.018917294717634956,0.15790007689678942,0.08052831115408834,0.15439620281957778,0.04606194728144575,0.3952960840496658,0.3357974472301561,0.046123443951248844,0.3694444444444445,0.4249667994687916,0.1301360750880099,0.3942978471741061,0.29744911979057415,0.36722132034632293,0.23617186740546342,0.279737364483121,0.3391791234533477,8.916188524554371,14.563109592079908,6.083643418932058,10.470547667350589,27.061483928377534,30.652932204239605,32.65720806630858,32.8657597904465,32.8657597904465,31.341500665656536,27.457317605342208,3.884183060314331,0.0,0.0,3.884183060314331,1458.2757248856963,1113.8484099917575,371.388007773156,44.0,24.0,34.0,46.0,60.0,60.0,64.0,66.0,66.0,198.115698448,17.0,4.418840607796598,5.293304824724492,6.184148890937483,7.075808863978387,7.974188669286011,8.870522545103873,9.771155440487087,10.668932138591325,11.570297744828098,0.6091954022988507,0.9577931034482756,1.120293242631191,0.5692167237503551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6864567829857529,0.9469912102772144,0.9841776125775422,0.6313352330551596,4.0,1.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.733667477162185,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,18.19910120538483,37.31310505186265,16.76753848399682,5.516700717616262,106.57341155026289,-105.63278431267503,-9.55525938940004,-3.6425098038853454,-9.602980392061365,282.06342245997,279.5739034135803,16.967243159195604,9.64047942805449,15.531883522976681,0.42857142857142855,0.9500740452990467,0.401445472496275,11.03079546714101,0.1576389746944587,131.28134891684357,0.049925954700953415,4.0,0.0,0.2659879204652639,0.6734843347179316,0.7870550009029988,0.8864293338149327,0.9290183336343328,0.9290183336343328,2.695800000000001,,0.2857142857142858,0.37133550488599343,0.4504991709152957,0.2850003569643751,-1.0363636363636362,0.32236842105263164,0.28052598622417024,-0.6386492564868576,62.797400000000025,0.0,0.0,4.9839785209472085,0.0,25.683286491704038,5.733667477162185,35.5228477603919,0.0,0.0,3.5553480614894135,0.0,4.875197323201151,0.0,6.434546518787453,0.0,8.103796712981794,0.0,9.827416115584832,17.66666666666667,8.145553193499621,4.696574074074074,0.0,0.0,0.0,2.1470370370370375,3.465462962962963,0.0,27.775999999999993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.48850403630453,5.733667477162185,5.687386274683562,0.0,4.9839785209472085,12.841643245852019,0.0,24.099022732397476,24.26546827384644,0.0,10.902924932081056,0.0,16.5072849887603,19.907246706586832,20.26483098841392,89.13260412087891,,65.89481616866372,65.23319168833416,64.62744883332182,65.90035989495826,73.48362294755827,65.6107836364113,65.9351137027708,71.40272505695684,20.26483098841392,89.13260412087891,,65.68529235913995,64.96087898475113,64.2970827746506,65.69135963318439,74.10544112937647,65.37438012763937,65.72939464620643,71.78591461084895,4.919908227490034,64.11030580575697,,46.69794922045338,46.15393721466833,45.65420934545356,46.70250024793495,51.968727088780064,46.46462187982724,46.73102821475211,50.6165464137314,1.350988732560928,5.942173608058594,,4.392987744577582,4.348879445888944,4.308496588888121,4.39335732633055,4.898908196503885,4.37405224242742,4.395674246851387,4.76018167046379,2.459954113745017,44.56630206043945,,32.9586602838803,32.626518153948844,32.320162469400856,32.961433164967126,36.5345387465064,32.81637177716183,32.97881277515391,35.57363267718105,27.462745098039218,0.0,0.0,0.0,0.0,6.1997685185185185,0.0,28.541150764748725,4.6789375472411185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.308721758599628,369.2337690403161,37.472763614058934,94.8814488586996,110.88144885869959,124.88144885869957,130.88144885869957,130.88144885869957,496.0,103.82719972573337,19.403064969916837,47.796304732044646,38.91,38.91,0.75,8.387593790513357,5.087462841250339,3.6099957107644194,3.8301664389734116,,3.8150985206148085,3.8145873542315742,3.8140706986715878,3.815102582322996,3.8151308847263863,3.8148855796687986,3.8151279640713227,3.816328405926965,0.24066638071762797,0.2553444292648941,,0.25433990137432055,0.2543058236154383,0.25427137991143917,0.25434017215486643,0.2543420589817591,0.25432570531125326,0.2543418642714215,0.2544218937284643,1.6891716922983477,1.7483733670075274,,1.74443159704975,1.7442976029660135,1.7441621517353532,1.7444326616896284,1.7444400801791184,1.7443757801716893,1.7444393146336443,1.7447539182446308,159.9099999999997,74.56102664874497,69.90435838856655,,70.96272651107039,70.9803068750757,70.99871252647188,70.96258971365677,71.21377485476039,70.96996508165826,70.96173598304168,71.07784931639338,4.9707351099163315,4.66029055923777,,4.730848434071359,4.73202045833838,4.733247501764792,4.730839314243784,4.7475849903173595,4.7313310054438835,4.7307823988694455,4.738523287759559,4.717083047821295,4.6525931071719,,4.6676198685825865,4.667867578719194,4.668126851555094,4.667617940844573,4.671151374874998,4.667721868629411,4.6676059100582945,4.669240853711101,0.0,4.696574074074074,1.1093981481481483,10.702870370370372,0.0,8.145553193499621,4.6789375472411185,0.0,0.0,183.34611647139218,41.41835325456375,-41.05279086296381,-3.7135257572429827,-1.4156134780332348,-3.732071896633074,109.62023549493355,108.65271669453648,6.594095663271561,3.7466454032598775,6.036262038585359,326.0,25.0,0.7979489500391173,0.37633257888672467,0.0,0.0,0.29321760375163153,0.09293360101857039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21202758782931808,0.10425320263715146,0.3877371560452639,0.12948271977248382,10.25071237662706,8.662392066194279,7.360173345306137,5.520345780470945,6.5116016493579085,4.174981740863543,5.891933901768229,3.2134542843653042,5.148738958916905,2.4097492408598837,4.302128619183272,1.7923885597119422,2.794906166326478,0.9503185723649576,1.98728864582825,0.6000178356021866,2.3573430858781244,0.9479250826163287,4.16230288333313,1.430525147983364,6.762116884862596,2.027784439642681,51.29975976033022,29.42658036809309,23.03933817867007,19.451917427106,18.742268808096494,18.742268808096494,82.0,99.0,33.24510199999998,14.614897999999997,0.4827586206896552,79.02,3.805555555555556,3.2777777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,10.0,11.0,29.0,0.0,0.0,31.0,11.0,0.0,5.0,26.0,11.0,17.0,20.0,0.0,0.0,0.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,2.0,1.0,1.0,15.0,2.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,2.0,3.1570004211501135,6.65420034039935,3.817712325956905,4.4942386252808095,5.135062872471308,5.748795673794924,6.056344806721308,6.403263719277728,6.722592188853526,7.008883020954388 +2717,CN1C(=O)CCS(=O)(=O)C1c1ccc(Cl)cc1,0,41.172413793103445,6.447151724137931,3.5172413793103448,8.139633886760324,160.58044470743062,167.16359486206906,1.8039747192478623,6.585927586206897,6.880240935202266,8.091155241379312,242.23881212787163,37.333333333333336,6.346,4.266666666666667,5.614814814814816,142.81457993752664,145.41105050000013,2.109705723999999,6.561230000000003,2.633453360768176,7.90047446666667,288.01455187002955,29.462962962962962,6.426033333333332,3.7777777777777777,5.5,152.52396656612476,112.29069648148145,1.7772263235971293,6.582127777777781,3.807127343392777,7.999911000000001,241.6794356733886,24.958904109589042,6.4609726027397265,3.1095890410958904,4.219178082191782,156.65212842703886,92.25613263013695,1.564643432151972,6.5958657534246585,3.6382969727718595,8.092914684931507,207.107454131607,21.586666666666666,6.4071066666666665,2.6266666666666665,3.481481481481481,159.31054444504898,77.16508696000001,1.39631722258188,6.5220226666666665,3.8423319615912215,8.085316799999998,183.91473876524455,17.768115942028984,6.364840579710147,2.246376811594203,3.753623188405797,161.65927463537025,63.1164849710145,1.2274882631621447,6.432408695652175,4.997331066976797,7.995754492753624,164.00271730579956,17.428571428571427,5.9412375,1.9642857142857142,2.2929894179894177,164.0176146681799,63.18143255357145,1.148140320599714,6.046066071428572,3.0312663302632443,7.6630424464285705,140.46216767639118,22.294117647058822,5.873382352941177,1.7647058823529411,1.3758169934640523,168.08668443496137,86.11129141176468,1.1202901191142942,6.052802941176471,2.567417090292907,7.732103941176469,136.29426803314513,26.076923076923077,6.036153846153847,1.3846153846153846,0.47863247863247865,173.09437141028818,92.3000716923077,1.2817341491843075,6.482184615384616,1.961538461538461,8.337316923076925,136.29568844537286,17.1961950059453,0.15570392390011892,0.01547567350882304,0.7776456599286562,4.35131604057486,1.507022888909768,78.06887386206895,0.35090941022258726,0.15358216409036848,3.150935716964058,0.11578971938168849,52.097840445762294,2.550931430836309,-0.004262544589774092,-0.007061990077752761,0.16488307570352762,0.2912836472355561,-0.25394474704124304,11.04971720000001,-0.02449355779111138,0.0022782956797463326,-0.4590165568976963,0.00899677717003566,0.3898094682127156,-0.42288721539613294,0.02467628044215438,0.00013868728602467624,-0.07266481701677895,0.2573669293256495,0.024022006549928216,-1.402058518518515,-0.00993918728437468,0.02157920244858411,0.48648787318501474,0.013429538600431577,2.1891759368604697,-2.445132181193295,-0.0174525304187774,0.0016523356289590192,-0.13664424282898693,-0.740756023779604,-0.04740261983552747,-11.084625397260272,-0.009583131500876462,-0.022136722427638342,-0.4537961021922686,-0.017926107666997856,-6.098765200532878,-3.9902179944510507,-0.041145854934601676,-0.002797190641387033,-0.1509789932619897,-0.7146025454705593,-0.13054888026068448,-17.978774506666664,-0.0580795590646982,-0.041494210067380105,-0.4867039056863414,-0.03210523386444708,-7.592883104059568,-0.9763049509727899,-0.0035978769236071607,0.0009276329250203557,0.04444329559358251,-0.1526067532432166,-0.037828028636500685,-4.375784956521742,0.0008063759337184068,-0.006312099122852361,0.3261387697218774,-0.0018959112857364388,-3.735136791676567,3.718829624596569,-0.004117655427212478,-0.0002962386666713719,0.033930694751146566,0.13795751048030086,-0.06947918833708477,16.372925892857136,0.032035430229996296,0.0011793506879565496,-0.24651960435319117,0.0009329487217597948,1.7728283018683721,7.673987549835628,0.04026727285444501,0.0004306664096772978,0.02559977617682026,0.1901033368823814,0.019731633756571318,35.63096417647057,0.06894675834878981,0.06146428621389105,-0.06818911099783076,0.04227585059802754,16.488943223641783,-10.212110125308696,0.015826049574682168,0.0010344167960903588,0.17726150187505715,1.0562878497876516,0.2192701619747139,-47.53871330769231,-0.14654319867322932,-0.0025667794749840026,0.3054730385347351,-0.001095024421476254,-10.043363747146959,,,0.4969187675070028,1.2794117647058822,0.6470588235294118,0.029411764705882353,0.6323529411764706,0.014705882352941176,0.7141665238758989,0.029334869252753956,0.03945251631157748,0.8991713844033118,0.2395700234523848,0.2260488462579845,1.6133379082792108,0.4656188697103693,1.9862248980731143,1.3188039302331902,0.1248182956741277,0.3079368967299111,0.10357940823552449,0.6674209678399246,9.41457385944829,1194.0,186.9674,102.0,236.04938271604937,4656.832896515488,4847.744251000003,52.31526685818801,190.99190000000002,199.52698712086573,234.64350200000004,7024.925551708277,1120.0,190.38,128.0,168.44444444444446,4284.4373981257995,4362.3315150000035,63.291171719999966,196.83690000000007,79.00360082304528,237.0142340000001,8640.436556100887,1591.0,347.0057999999999,204.0,297.0,8236.294194570737,6063.697609999998,95.97022147424498,355.43490000000014,205.58487654320996,431.995194,13050.689526362985,1822.0,471.65100000000007,227.0,308.00000000000006,11435.605375173836,6734.697681999997,114.21897054709396,481.49820000000005,265.5956790123457,590.782772,15118.84415160731,1619.0,480.533,197.0,261.1111111111111,11948.290833378673,5787.381522000001,104.723791693641,489.1517,288.1748971193416,606.3987599999998,13793.605407393341,1226.0,439.1740000000001,155.0,259.0,11154.489949840547,4355.037463000001,84.69669015818798,443.8362000000001,344.81584362139904,551.7070600000001,11316.18749410017,976.0,332.7093,110.0,128.4074074074074,9184.986421418074,3538.160223000001,64.29585795358399,338.57970000000006,169.7509144947417,429.13037699999995,7865.881389877906,758.0,199.69500000000002,60.0,46.77777777777778,5714.947270788686,2927.7839079999994,38.089864049886,205.7953,87.29218106995884,262.8915339999999,4634.005113126935,339.0,78.47000000000001,18.0,6.222222222222222,2250.226828333746,1199.900932,16.662543939396,84.26840000000001,25.499999999999993,108.38512000000001,1771.8439497898473,498.68965517241367,4.515413793103448,0.44879453175586814,22.55172413793103,126.18816517667092,43.70366377838327,2263.9973419999997,10.17637289645503,4.453882758620686,91.37713579195768,3.357901862068966,1510.8373729271066,76.52794292508928,-0.12787633769322274,-0.2118597023325828,4.946492271105829,8.738509417066684,-7.618342411237291,331.49151600000033,-0.7348067337333414,0.06834887039238997,-13.77049670693089,0.2699033151010698,11.694284046381469,-22.83590963139118,1.3325191438763366,0.007489113445332518,-3.923900118906063,13.897814183585071,1.2971883536961237,-75.71115999999981,-0.5367161133562327,1.165276932223542,26.270345151990796,0.7251950844233052,118.21550059046537,-178.49464922711056,-1.27403472057075,0.1206205009140084,-9.975029726516047,-54.075189735911096,-3.4603912479935053,-809.1776539999998,-0.6995685995639818,-1.615980737217599,-33.12711546003561,-1.3086058596908436,-445.20985963890007,-299.2663495838288,-3.0859391200951256,-0.20978929810402747,-11.32342449464923,-53.595190910291954,-9.791166019551335,-1348.4080879999997,-4.355966929852365,-3.112065755053508,-36.50279292647561,-2.407892539833531,-569.4662328044676,-67.3650416171225,-0.2482535077288941,0.06400667182640454,3.066587395957193,-10.529865973781945,-2.610133975918547,-301.9291620000002,0.05563993942657006,-0.43553483947681293,22.50357511080954,-0.13081787871581427,-257.72443862568315,208.25445897740786,-0.23058870392389874,-0.016589365333596826,1.9001189060642076,7.725620586896848,-3.8908345468767473,916.8838499999997,1.7939840928797928,0.06604363852556677,-13.805097843778706,0.05224512841854851,99.27838490462884,260.91557669441136,1.3690872770511302,0.014642657929028125,0.8703923900118888,6.463513454000967,0.6708755477234248,1211.4527819999994,2.3441897838588535,2.0897857312722956,-2.318429773926246,1.4373789203329363,560.6240696038207,-132.75743162901304,0.2057386444708682,0.013447418349174664,2.304399524375743,13.731742047239472,2.8505121056712808,-618.003273,-1.905061582751981,-0.033368133174792036,3.9711495009515563,-0.014235317479191302,-130.56372871291046,0.7429054137098481,0.6371506862136497,0.43975115472646,0.40204544738599235,0.29294045567196364,0.2460172189786289,0.18172907430568203,0.1510226562559419,0.11179558207341503,0.09132932213970515,0.07512833200654123,0.05274071727987129,0.04727655272099849,0.0332972316817612,0.03152023924619502,0.019812609465872533,17.001103418457475,5.694681360480094,3.580054316815394,2.189995933722343,0.4320357589438351,-0.40531864906993725,4.043779180297453,0.971445015691479,6.022519742569116,0.6386171564185718,14.543964739328914,10.312080054666183,35.450517340772,11.705851952588567,2.9567699838557457,0.751694178436875,3.5357865316881734,2.2416360733219833,7.01456796557228,0.2929119893742054,3.7670877907417477,2.438396165135039,24.443281248370475,14.701067706577915,0.3671984404997081,0.6595270012828741,0.8145690189427153,0.8679280268371349,0.8679280268371349,0.8679280268371349,2.094710768221802,538.3399004379567,0.0,1.0,2.0,0.0,5.0,1.0,1.0,0.0,0.0,2.9595925970975037,1.4482758620689649,0.646720258695292,0.37085818972977425,0.37085818972977425,0.37085818972977425,-10.260966926146978,583.5317680591857,45.92956359885604,20.12178510548916,44.85882432886656,,8.0,222.0,15.211125949386242,13.212334168400758,18.080854959024304,10.586084805438322,0.0,11.947581713527669,24.26546827384644,0.0,0.0,11.600939890232516,8.447619047619048,21.75,11.0,0.5,10.75,0.0,0.003081232492997188,0.25,0.22165141918836473,0.06178747361013359,-0.15986394557823114,0.0,0.17082792406613578,0.0,0.6604269293924467,0.9148459383753499,0.438775510204082,0.5986394557823131,0.9148459383753499,12.140830905890281,0.49869277729681727,0.6706927772968172,15.2859135348563,4.072690398690542,3.8428303863857365,27.42674444074658,7.9155207850762785,0.5431720759338642,0.26211950394588496,0.09864712514092447,0.28410372040586246,0.36363636363636365,0.511799031159778,-0.6868343703049649,-0.08097309526095069,-0.023683943803619472,-0.06868343703049648,0.48820096884022196,0.6551657674220304,0.024655225336590317,0.022591923014552776,0.034482408811685815,-2.823523505915796,0.7074540174249759,0.5599486815276409,1.4476096635740976,1.0760448521916415,0.6379133829932706,1.3783227959272952,0.6904925319475046,1.1874582150349369,0.5066515642557006,0.6605182610085224,0.459074027965643,0.9366621880245122,0.9045928794234701,0.6319834233188488,1.2023181973514117,1.3680484766111682,0.8359461527542873,1.1384589725274963,0.8822877921454279,1.0725745950770549,0.6200149900059939,0.575168959413918,0.62913143873954,0.889302572709017,1.0483364054688433,1.1369670527582472,1.1166552838858943,1.3266306396883252,1.1825360396865419,1.0620084134989656,1.042024635523308,1.0032371106653302,1.1298444061662622,1.1984379485694914,1.153906282540112,1.0358679674912616,1.2049177153920623,1.3968290886134587,1.3036163295509922,1.2581447502548424,1.2206188599805678,1.1026554595315352,1.1890607924691932,1.2235274816190678,1.3436120775931533,1.3583151879694495,1.3552613428263434,1.087013741226963,0.755952130420753,1.2189153638107593,0.8636587837647364,0.6837743207906752,1.1093550270907946,0.9365640001893121,0.7590820488885003,0.823551304467021,1.1562742945937803,1.184660063973789,1.121614155378854,0.9936795428987643,0.6100988798229845,0.9260834536110026,0.6615659050900236,0.5986238532110094,0.8943874487207168,0.8704176504539602,0.6330611421936908,0.7183136758580899,0.9183784624961099,0.9384403720859945,0.8720956181237718,0.9807253670352389,0.7447753544786746,0.6013584750723124,0.4844839213346642,0.6573124662709122,0.8825680601507577,0.7093330341139193,0.7642269830170563,0.6651569460085816,0.5998110817181556,0.7736810168547246,0.6130584345175389,0.7652996032103729,3.308362499069179,0.6492666733634453,0.33208277635443606,0.4297812279463657,0.5444017347760736,0.40070679371069706,3.3778117068804607,1.653085103189474,1.2823556092505473,0.3945956587443616,1.4462104518559722,1.3809097319571702,5.0,0.0,3.111111111111112,2.0625,1.4977777777777779,0.44444444444444453,0.422857142857143,0.10590277777777778,0.02040816326530612,0.0,3821.7673990326675,4178.550118980936,1978.5050183620358,1858.9532190455748,9.183023891146238,0.46374642317285203,4.924429407716325,0.8647894265185155,1.0,0.36363636363636365,1.8983883980300684,3.409705133058607,4.21126073643228,4.487122805397798,4.487122805397798,4.487122805397798,0.27777777777777773,0.0,0.11522633744855973,0.07366071428571429,0.06240740740740741,0.023391812865497078,0.03844155844155844,0.015128968253968252,0.01020408163265306,0.0,0.616238658113136,13.432098765432098,4.938271604938271,2.71280276816609,105.10030291686617,1.0,3.76268864090396,58.0948794866408,,38.68984294199281,45.46237921025863,45.75114289520631,38.65912860824503,51.09718289972567,45.368312979587564,45.12284779364853,50.88399081649181,0.14834278338634604,-0.027375961266772136,-0.4563284482401724,0.2120285423037718,0.06694150563172473,-0.16850755812007298,0.1415380631661538,-0.06980023070790475,0.01483437672102193,-0.14567626829910738,0.07769927432312658,0.0074822577073715,-0.02459190624727893,0.15848207176836304,0.00896163168249882,-0.09344206591913015,0.05914691714547315,0.015940040942116384,-0.017959251224702603,-0.028324083067678637,0.14050591470951537,0.15439473124312042,0.1159821327156216,0.042020473749570554,-0.14219030316578354,-0.11208792933165167,0.10676986872441994,-0.1757153030874282,-0.17023723785453687,-0.03145447901578997,-0.14198520932740033,-0.027309417250445733,-0.1441360235985019,-0.14401947324698308,-0.15481605588753825,-0.117063685334177,-0.23204075047250275,-0.2642570200157316,-0.18074758683635256,-0.19414882772680947,-0.16422676238799516,-0.0866270056157727,-0.23029376007692032,-0.16551154620748826,-0.27017596941116623,-0.1544632926232094,-0.2772718859315618,-0.14574276091087346,-0.05677447543687709,-0.023107169257437145,0.059941360516005376,0.05715108806453043,-0.035071401805844345,-0.025101163966969854,-0.05605031480603679,0.002297960414361388,-0.04109916773368482,0.10350537079065315,-0.01637374454192059,-0.07169465681720763,0.2162588655985144,-0.026445418484468478,-0.019142214812329778,0.04363259065093925,0.0317047783231289,-0.046103605226161096,0.20972412029132895,0.09129259374855674,0.007678956048975934,-0.07823695133670135,0.008057267318218715,0.034028825124028265,0.44626078892350746,0.2586143742933267,0.027828605290216607,0.03291958985429028,0.04368869903029763,0.013093121479293429,0.4564042289046321,0.19648022065026932,0.40020458480924365,-0.02164090832787008,0.3651088440647282,0.31649955319756473,-0.5938587066370222,0.10164194439206475,0.06684147190754663,0.22794636556104453,0.2427513515309046,0.14549889294205842,-0.6089329966726954,-0.4176097716509646,-0.016712744544175696,0.09694676945966384,-0.009457009027430342,-0.19277888797718676,5.03405078222385,9.981764384969873,2.1822472719434427,25.97682272915179,40.327123296110926,44.17040168913917,44.44847065465641,44.44847065465641,44.44847065465641,33.76582326724294,22.419666813964234,2.121911026460171,5.234927244408489,1.7608499400039164,11.346156453278716,2497.9534437950383,2207.8325714573175,712.6246798564816,22.0,27.0,34.0,43.0,52.0,45.0,44.0,38.0,26.0,273.02264192400037,18.0,4.51085950651685,5.3612921657094255,6.270988431858299,7.1459844677143876,8.057377488557991,8.942330199321866,9.853719410302007,10.74343705115356,11.654728800544591,0.8160919540229886,1.003310344827586,1.120079504220963,0.7858629589542917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7218153210819742,0.9945909398242057,1.0284300675590827,0.6700427016290347,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4.899909730850478,0.0,15.211125949386242,5.907179729351506,0.0,4.794537184071822,8.417796984328938,0.0,0.0,23.733674027155736,17.696185628620217,18.491126919344527,5.752853606746789,222.54170111299828,-298.6509935436435,-35.20891847513329,-10.298310122194602,-29.865099354364347,212.2807341868513,284.8807745155421,10.720645123722756,9.823474983294558,14.993724974502218,0.5,0.7337064983555998,0.24215924328275604,1.9435006079304753,0.16702869428196312,15.557650309554628,0.26629350164440035,4.0,0.05555555555555555,0.3907772385141281,0.7018770012641985,0.8668746832595814,0.9236600163521151,0.9236600163521151,0.9236600163521151,1.6155000000000002,,2.1649159663865545,1.1348282195030177,0.7894125604181986,2.1768403854890632,-3.106981726036351,1.142012882884279,1.1668876705903912,-1.2754405575084284,65.36680000000003,13.212334168400758,0.0,4.899909730850478,0.0,11.79469443589475,12.800525589423978,34.85155307928476,0.0,0.0,3.6109179126442243,0.0,4.976733742420574,0.0,6.546785410760524,0.0,8.213110697596676,0.0,9.930956794525674,23.66666666666667,6.525755542957924,0.0,0.0,0.0,0.0,0.0,1.1119323979591846,0.0,29.095999999999993,0.0,35.560443261666805,0.0,0.0,-3.3095445956160234,0.0,0.0,-0.15298611111111127,32.48230562240793,0.0,0.0,0.0,32.0254120339549,14.631790320489323,0.0,17.358145927591746,24.26546827384644,5.022633313741326,0.0,0.0,22.79002580967446,20.932644311377253,21.011257531595618,116.18975897328164,,77.78829322035335,90.7912492182228,91.40941372448106,77.72443684702523,103.71242684708496,90.60227150236521,90.10841468487466,102.2181371238689,21.011257531595618,116.18975897328161,,76.13276924605776,89.80529457689988,90.71287322999444,76.05979419929832,105.3572995255748,89.62319600377427,89.07880791670664,103.04342219049204,4.938925135154645,83.70312359759609,,57.30297045252508,66.22675122169748,66.48281558009049,57.26412636142213,74.23902093979048,66.13719366875341,65.88035438515571,73.61026892215577,1.2359563253879775,6.834691704310685,,4.575781954138432,5.340661718718988,5.37702433673418,4.572025696883837,6.100730991004998,5.329545382492071,5.300494981463215,6.0128315955217,2.4694625675773225,58.0948794866408,,38.68984294199281,45.46237921025863,45.75114289520631,38.65912860824503,51.09718289972567,45.368312979587564,45.12284779364853,50.88399081649181,28.843137254901965,0.0,1.512219387755102,5.756733862783796,0.0,0.0,0.0,29.8244719592134,-0.035327870860278,0.0,0.0,0.0,-0.8879475308641978,1.2798327664399094,0.0,0.0,0.0,19.431238347242004,319.032046410307,55.05326354287198,98.8814488586996,122.12656135653611,130.12656135653614,130.12656135653614,130.12656135653614,366.0,107.54071752167899,115.79038888954267,50.27850455794767,62.830000000000005,54.45,1.0,7.15305163493748,5.169925001442312,3.6627992392400865,4.063496434225654,,4.06164399428626,4.07189004111956,4.072573918957324,4.061864514076537,4.046878273902532,4.072937829825838,4.072171207223756,4.063840384388709,0.21545877877882863,0.2390292020132738,,0.2389202349580153,0.23952294359526824,0.239563171703372,0.2389332067103845,0.2380516631707372,0.23958457822504928,0.23953948277786802,0.23904943437580642,1.8288559256145844,1.9326720447598413,,1.9322160674169786,1.934735526291455,1.9349034631483735,1.9322703591777626,1.9285740383969294,1.9349928156359715,1.934804574422537,1.9327566850721447,183.10999999999976,91.52321058903897,81.23657030505292,,79.98706993611539,79.92639888250231,80.01965427408003,79.97253948343449,81.54175720200772,79.87879906764934,79.8931427120103,80.73741036754618,5.3837182699434685,4.778621782650172,,4.705121760947964,4.701552875441313,4.70703848671059,4.7042670284373225,4.796573953059277,4.698752886332314,4.699596630118253,4.7492594333850695,5.04722085881522,4.9279937700571645,,4.912493246874638,4.911734448294726,4.91290053398805,4.912311570353,4.93174349840513,4.911138725291078,4.911318276772267,4.921830292248864,23.99250188964475,12.847774138461968,-0.35004291068279136,0.5740277777777782,-0.24676941609977332,6.525755542957924,0.058455434128384054,0.0,-1.7973252078609214,223.7410766801332,96.76612443372515,-129.86015231736673,-15.309627675631324,-4.477936286805749,-12.98601523173667,92.30442580636672,123.87255214495535,4.661577020682587,4.271467315343289,6.5196080076292295,478.0,28.0,2.030196011903758,1.3074073196473683,0.2041241452319315,0.08333333333333333,0.47205864982887064,0.28666877555094317,0.06804138174397717,0.018633899812498248,0.0,0.0,0.0,0.0,0.0,0.0,0.13144585576580214,0.10683471928198726,0.3516737232734552,0.2629445428064249,12.629392033067417,10.831561665632044,7.915520785076279,7.2368180529478625,7.909392303143018,6.64246491242298,6.1787885263931885,5.134770312702025,4.807210029156846,3.927160852007322,3.906673264340144,2.7425172985533073,2.127444872444932,1.4983754256792539,1.3868905268325808,0.8717548164983915,3.7895974529031426,2.5540432595311873,6.0525864167457,3.9594834659405604,9.856365946104777,5.505418241418627,56.15993385961477,34.47166677751781,27.178341952292158,26.271591195687645,26.271591195687645,26.271591195687645,90.0,106.0,34.957515999999984,21.782483999999997,0.41379310344827586,52.06,7.118055555555555,3.624999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,29.0,0.0,0.0,30.0,6.0,3.0,6.0,24.0,9.0,18.0,21.0,0.0,0.0,0.0,11.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,0.0,1.0,17.0,6.0,0.0,1.0,3.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,1.0,3.2188758248682006,4.887525596934148,3.8394523125933104,4.178226046202803,4.633514658997234,5.127306600899948,5.064965638641303,5.320567975482857,5.399575729872122,4.976733742420574 +104865,COc1ccccc1Oc1c(NS(=O)(=O)c2ccc(C(C)(C)C)cc2)nc(-c2ncccn2)nc1OCCO,0,27.735294117647058,6.40717794117647,3.426470588235294,8.712418300653596,162.6808435176224,109.84160255882355,1.5663720329503086,6.467551470588234,4.899522411845397,7.916054602941178,227.17761324103068,30.239436619718308,6.499292957746478,3.9859154929577465,7.52582159624413,146.51175738888384,116.200445943662,1.849052347267606,6.649656338028168,3.212419579203617,7.945992563380281,270.35137843426503,24.949579831932773,6.540720168067226,3.672268907563025,7.383753501400561,155.83113395355102,94.6498216554622,1.5779184514276134,6.633535294117648,3.8524224504616664,8.014957798319328,229.4136070462051,23.306122448979593,6.508968707482995,3.3333333333333335,6.557823129251701,156.284284412517,86.88675891156464,1.4980703783744014,6.596426530612244,3.669585117997817,8.004604517006804,211.8189881101904,20.327380952380953,6.317648214285715,3.0297619047619047,5.440476190476191,161.0184294924454,75.2376002797619,1.3272083348503927,6.392283928571429,3.383515211640213,7.867247761904761,185.70792647256266,22.141104294478527,6.489672392638035,3.214723926380368,6.216768916155419,161.13678675991702,82.61760685276073,1.3661453101722334,6.55814171779141,3.602812807695221,8.01228271165644,195.15072975662386,25.81132075471698,6.631085534591193,3.4339622641509435,7.287211740041927,161.33118187081087,98.23077890566037,1.4515951490822263,6.699157232704402,3.8794161037347616,8.12869217610063,208.6950050095875,27.5625,6.829456249999998,3.5,6.527083333333333,157.80982532122601,102.8671846625,1.5662150892318374,6.92002375,4.346990740740741,8.332510350000002,226.59086175622224,21.195876288659793,6.815221649484537,2.8917525773195876,5.005154639175258,163.39350973308646,76.07062344329897,1.3526231665298558,6.864018556701032,4.334908361970218,8.357830989690722,194.96209409428272,9.54757785467128,0.1505585423875432,0.025630248884409273,0.6650086505190314,4.433198769703961,1.5694318812108075,44.036581381487885,0.26277907119295396,0.13862740051903105,1.5970674414161692,0.09572460272491344,48.871326502607374,1.6955870169111562,-0.008940522503533187,-0.01284227413653848,0.2407494273600078,1.0928529655441301,-0.3612864824284286,7.367527119754862,-0.03166310771737761,-0.0026137095496855324,-0.36504538188233454,-0.0010492669751206525,-0.6629374273202262,1.2069945625308949,0.02104140818091955,-0.003117900741088212,0.010102570439940632,0.925811501071017,0.1503304432936195,5.764917940311416,0.029900815256726523,0.019529791769649144,0.2796117221398364,0.009484021718981668,6.180891237698423,0.12329049266765517,0.028916757732504864,0.0066830019081936705,0.04687610338252945,0.7753513169973875,-0.06094709443284572,0.4507304762552082,-0.019314415789773928,0.02407814169785572,0.0807154515764185,0.018324544233869977,-4.4114812614748935,1.2243058988301203,0.009583526940187853,-0.003623624263841065,0.1036363074641621,0.6940771406601856,-0.1400458568200096,5.740682607482698,0.00033018588555596556,0.011503648150436653,0.04399590907834931,0.0022914963647223466,3.425390269879601,1.3185354618209604,0.008877175764748446,-0.0031895511213258397,0.09374270278302582,0.5420408148824307,-0.04983204589530586,5.993009095776635,0.01202778779476459,0.009896552927378179,-0.022309646594335056,0.005586797311174515,2.870358186308079,2.7467247720397814,0.04364458376857973,0.006243479330612563,-0.08583735936105855,0.8937013823904207,0.04195754703218982,12.610995968123657,0.03602784634763432,0.041665847723662275,0.2555824047893625,0.02738265189957774,7.262553647937769,-2.0411440311418687,-0.00882202584342531,-0.0012577618978821562,-0.17787629757785478,-0.42892997885428646,-0.24774042374830985,-8.955482584429069,-0.06330618296479708,-0.007562078827854447,0.17972609878797802,-0.011858375702854779,-5.329553425272483,-3.461313452002996,-0.06539378344272785,-0.003244374590482489,-0.06873818356936466,-1.6096862031653163,0.2701785347680299,-15.825050535823852,0.009115408368568194,-0.06303721707451904,-0.5550776479594377,-0.03733106239744241,-4.128540777727064,,,0.4700854700854701,1.3974358974358974,0.7435897435897436,0.05128205128205128,0.6538461538461539,0.08974358974358974,0.9114042624662574,0.020398514589694754,0.02921902741020757,1.3004967186832168,0.27064774506626993,0.2067540880971916,2.211900981149474,0.4774018331634616,2.026047785541119,1.4151677407027752,0.2647671347446608,0.28834888371416684,0.0,0.6108800448383446,8.10564492129413,1886.0,435.68809999999996,233.0,592.4444444444445,11062.297359198323,7469.2289740000015,106.51329824062098,439.79349999999994,333.167524005487,538.2917130000001,15448.077700390086,2147.0,461.4498,283.0,534.3333333333333,10402.334774610752,8250.231662000002,131.28271665600002,472.12559999999996,228.0817901234568,564.1654719999999,19194.947868832816,2969.0,778.3457,437.0,878.6666666666667,18543.90494047257,11263.328777000002,187.772295719886,789.3907,458.4382716049383,953.779978,27300.21923849841,3426.0,956.8184000000002,490.0,964.0,22973.78980864,12772.353560000001,220.216345621037,969.6746999999999,539.4290123456791,1176.6768640000003,31137.391252197987,3415.0,1061.3649,509.0,914.0,27051.096154730825,12639.916847,222.97100025486597,1073.9037,568.4305555555558,1321.697624,31198.931647390527,3609.0,1057.8165999999997,524.0,1013.3333333333334,26265.296241866476,13466.669917,222.68168555807404,1068.9770999999998,587.258487654321,1306.0020819999997,31809.56895032969,4104.0,1054.3425999999997,546.0,1158.6666666666665,25651.657917458928,15618.693845999998,230.803628704074,1065.166,616.8271604938271,1292.462056,33182.50579652441,4410.0,1092.7129999999997,560.0,1044.3333333333333,25249.57205139616,16458.749546,250.594414277094,1107.2038,695.5185185185185,1333.2016560000002,36254.53788099556,4112.0,1322.153,561.0,971.0,31698.340888218776,14757.700948,262.40889430679204,1331.6196000000002,840.9722222222222,1621.419212,37822.64625429085,649.2352941176471,10.237980882352938,1.7428569241398306,45.22058823529413,301.45751633986936,106.7213679223349,2994.487533941176,17.86897684112087,9.42666323529411,108.6005860162995,6.509272985294114,3323.2502021773016,120.38667820069209,-0.6347770977508562,-0.911801463694232,17.093209342560552,77.59256055363323,-25.65134025241843,523.0944255025952,-2.2480806479338105,-0.1855733780276728,-25.91822211364575,-0.07449795523356632,-47.06855733973606,143.6323529411765,2.5039275735294266,-0.37103018818949723,1.2022058823529354,110.17156862745102,17.88932275194072,686.0252348970585,3.5581970155504563,2.324045220588248,33.273794934640534,1.1285985845588185,735.5260572861123,18.12370242214531,4.250763386678215,0.9824012805044696,6.890787197231829,113.97664359861595,-8.959222881628321,66.2573800095156,-2.8392191210967677,3.5394868295847908,11.86517138173352,2.693708002378887,-648.4877454368094,205.68339100346023,1.6100325259515593,-0.608768876325299,17.410899653979232,116.60495963091118,-23.527703945761616,964.4346780570933,0.055471228773402215,1.9326128892733576,7.391312725162685,0.3849713892733542,575.465565339773,214.92128027681653,1.4469796496539966,-0.5198968327761119,15.28006055363321,88.3526528258362,-8.122623480934855,976.8604826115916,1.9605294105466282,1.613138127162643,-3.636472394876614,0.910647961721446,467.86838436821694,436.72923875432525,6.939488819204176,0.9927132135673975,-13.648140138408309,142.0985198000769,6.6712499781181815,2005.1483589316615,5.728427569273856,6.624869788062302,40.637602361508634,4.353841652032861,1154.7460300221053,-326.583044982699,-1.4115241349480496,-0.201241903661145,-28.460207612456763,-68.62879661668583,-39.638467799729575,-1432.877213508651,-10.128989274367532,-1.2099326124567116,28.756175806076484,-1.8973401124567646,-852.7285480435972,-671.4948096885812,-12.686393987889204,-0.6294086705536028,-13.335207612456745,-312.27912341407136,52.4146357449978,-3070.0598039498273,1.7683892235022296,-12.229220112456693,-107.68506370413091,-7.2422261051038275,-800.9369108790505,0.7191126878877979,0.5837723288376838,0.4433017022232142,0.3209003654831246,0.29186102940235287,0.1831627259161497,0.17997544988761413,0.08984123156309248,0.11543645380465828,0.04671116332415202,0.07162076181918686,0.024084246708935098,0.04459780807244505,0.014360124613612182,0.029899812603553406,0.008171607019924476,16.0131246015817,5.69080184755199,3.5811652813336994,2.182463445748332,0.49281291903104707,-0.5245972982419488,4.043955012343201,0.97136557905711,6.018690016901179,0.644225806353103,14.559738426526437,10.319763339849633,32.066544824538354,11.701860511265483,2.954600893951812,0.7608336110745981,3.537175626522932,2.235465722352149,7.014215750023525,0.2989355637621789,3.768448990251218,2.433895152042222,24.44183521239492,14.701307100229414,0.2697435489134436,0.5916287246046544,0.7603251767981367,0.8349613522831274,0.8441390619903172,0.8487279168439122,1.5338581002993898,1525.0502777727938,0.0,6.0,5.0,0.0,13.0,0.0,1.0,0.0,1.0,4.358570983762897,2.295483056210559,1.214241544563066,0.7358691179015837,0.6770455884898183,0.6476338237839352,284.6040594123768,3214.5137149807365,79.85560460608583,47.27226051442259,92.33934222110518,,14.0,936.0,10.023291153407584,13.524324379169643,58.36992165077845,5.749511833283905,5.563451491696996,31.636218821426905,42.46456947923127,20.771211599071872,24.65800894824092,14.210588861400147,18.333333333333332,54.5,29.0,2.0,25.5,0.0,0.029914529914529944,3.5,0.18985161632220482,0.06293183940242797,-0.12691977691977685,0.028100896393579378,0.1774146341463414,0.0,0.6303921568627439,0.876068376068376,0.44054054054053904,0.5674603174603159,0.8479674796747966,35.54476623618404,0.7955420689980954,1.1395420689980953,50.71937202864546,10.555262057584528,8.063409435790472,86.2641382648295,18.618671493375,0.5365853658536586,0.16363636363636364,0.07272727272727274,0.24545454545454548,0.25925925925925924,0.32667719822476304,-1.2790240518948415,-0.049196951981161044,-0.018809177233747667,-0.051160962075793646,0.6733228017752371,2.636229473130303,0.048066573749002264,0.03876808048721034,0.061307662165821,-7.584815753271512,0.8037841983494699,0.8041465811031631,1.532781028237263,0.8973227985800982,0.5636335847838585,1.4294388922750414,0.7962555063599072,1.2973739983679846,0.7481894071550267,0.8809050691914895,0.7814330024084148,0.9950572118046543,0.8117112569409389,0.8624646128913327,1.2630862355901846,1.3197677119628337,0.7951115185792027,0.9940878786317621,0.8033340622212188,0.898893372373478,0.8422416239008446,0.7161134752397867,0.9266954405302298,0.8211659992038577,0.988457501329788,0.821869910880351,0.9159742302368126,1.0935811072396437,0.8403804467822729,1.1120188093415027,0.9820697409224314,1.1230711587384379,0.8231475083027506,0.8528849463184587,0.8490913198697965,1.04738669115127,0.8983783442705704,0.942665471085597,1.1930622230170471,0.8598722415795585,0.8649807889463265,1.0972537211603561,0.8915230105674952,1.009010307189815,0.9200890207644596,0.947771145123877,0.9809070747292599,0.9081869268564727,0.8486954921844038,1.0549426036930378,1.3378517571268775,0.8771589605466605,0.9562053266745133,1.0645854288838077,0.8479574394038009,0.9212507302348134,1.0258214136609347,1.0528105070065432,1.0686087729776041,0.8803807633293685,0.8262357091612376,0.8592879787981411,1.1192472874522612,1.3371907756813415,0.910835696783975,1.070661045920344,0.8104247795301298,0.9153392759629326,0.8249146673852701,0.8510102384670645,0.8704437075373038,0.778308949617537,1.7185747372474405,1.319067008200577,1.5426059462422075,1.5649674796747963,1.1934552040196862,1.374759177164775,1.6454549061112547,1.6065470525901393,1.2707519764416677,1.2529026552097868,1.428202810014726,1.0302266860850686,1.528026861848945,1.9388329111421971,1.4245801398218696,1.0615774034028997,1.548582722889557,0.8836493896879831,1.502475523142877,1.0003073058812195,1.907236919987227,2.4023590454588293,1.9735334757349725,0.9556083273735523,9.5,0.32996632996632996,5.333333333333336,2.6875,2.400000000000001,2.0625,1.3853061224489795,1.0920138888888888,0.7971781305114638,0.4181250000000001,9459.834536362418,10332.972514406316,4143.2191279636445,3842.391598920583,15.780235069029228,0.48279667557344974,8.16159003793435,0.9334755844981296,0.0,0.25925925925925924,1.7288918574874423,3.7919797850397803,4.873221296687273,5.351593723348755,5.410417252760521,5.439829017466404,0.2261904761904762,0.00622577981068547,0.08888888888888892,0.0419921875,0.03809523809523809,0.03125,0.018720353006067288,0.013650173611111111,0.011071918479325885,0.00614889705882353,0.4822339126406165,31.92517006802721,14.450555555555555,8.526315789473685,226.48137997899107,0.0,4.582945784762877,258.898601993473,,174.61635452518757,190.246261839071,195.3603791266919,174.66051783192026,285.8172809507469,192.00801016348052,191.94456903280886,249.37383862321715,0.17759342135990727,-0.05938236623279704,-0.5010592832889094,0.36202450475208964,0.24651567013249628,-0.23020207933440107,0.16730470187797153,-0.12049326292856845,-0.018854205877767413,-0.2285723022182692,-0.01096130926900748,-0.0135649566885576,0.12641892853906989,0.1397556581463056,-0.12164925729553926,0.015191637630661944,0.20883600063185087,0.0957865359391326,0.13091202267428675,0.11378689756754218,0.14087973731403883,0.17507821829483675,0.09907611469787109,0.1264727536578869,0.012913274397373324,0.19206321523804387,0.26074666454990614,0.07048946407831418,0.1748965830939188,-0.0388338577561107,0.010235364828857637,-0.07350058626088872,0.1736896285128727,0.050539789042875746,0.19142982798821062,-0.09026727075311804,0.12823209377979697,0.06365315968269342,-0.14138076770863095,0.15584204413472696,0.15656350565723323,-0.08923347263212537,0.13036167720993821,0.0012565151557047554,0.08298249918389985,0.027547934381115913,0.023938426480676928,0.07008997944217557,0.13810156689906952,0.058961621333303495,-0.12444479707202626,0.14096463664023132,0.12226855664282045,-0.03175164624339142,0.1360916062911273,0.04577148301864878,0.07138958741435508,-0.013969132433475947,0.05836323319334588,0.058732970674633525,0.28768812507728436,0.28988447335148193,0.24359807658404886,-0.12907705680830395,0.20159289687119086,0.026734226272898072,0.28637545360015326,0.13710318018888087,0.30055997275908164,0.1600323180859098,0.28605657396425094,0.14860561739715206,-0.21378658149859564,-0.0585953191597531,-0.04907333922329741,-0.26747967479674806,-0.09675405979663065,-0.15785356899796094,-0.20336461876656434,-0.24091029273146525,-0.054549669109724884,0.11253507154876898,-0.1238801244956068,-0.10905276788400947,-0.36253314764115824,-0.4343412363438127,-0.12658381138296407,-0.10336434498365596,-0.36309813450408573,0.1721505329429072,-0.35936146811061026,0.03468848689960896,-0.4547240793559074,-0.34756055603214425,-0.38998398880506996,-0.08447777200209204,12.304734775021736,23.02201026427107,9.598876572849472,18.576989891858528,37.85504237807918,45.97720132629239,47.10663602648481,47.48954779119068,47.519194850014216,79.01586363610365,55.191541887408235,10.32591825504177,11.245606464852507,0.0,23.82432174869544,12123.382038302661,8813.932700913296,4993.430767478451,236.0,60.0,76.0,96.0,125.0,147.0,180.0,187.0,219.0,551.1838546480009,42.0,5.3230099791384085,6.1675164908883415,7.0587581525186645,7.9269635448629785,8.824824939175638,9.703877405604631,10.605074021909918,11.490608278819195,12.393493677868827,0.7107843137254901,1.0005294117647057,1.1272316914030611,0.6753833495766137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6836826083127862,0.9865628604382931,1.0183850306327922,0.6488554465344047,11.0,4.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,1.0,2.0,1.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,19.31711625624085,6.606881964512918,23.14129094240277,11.573916331283833,15.903279489842955,4.722094864452088,23.36973254717056,4.9839785209472085,0.0,45.036679872918306,41.310277303401826,12.393687143226153,18.612162981308227,268.20953671403373,-1050.1083340649816,-40.39183564177374,-15.442769618602668,-42.004333362599255,552.8135961264105,2164.405380915755,39.463768964312095,31.829490895819923,50.33500885850593,0.5,0.8040329947930515,0.12587824650450127,11.988546543153374,0.06729936054466668,73.01209391807024,0.19596700520694854,7.0,0.23809523809523808,0.28400860959215896,0.6229162927031393,0.800534052325539,0.8791172714985412,0.8887803332610149,0.8936118641422518,4.203900000000004,,2.8392857142857144,2.6180343125662717,2.0781525472882545,2.833453069436038,-8.66053674590952,2.3698745410036723,2.263639871033676,-3.8330111343938302,144.65729999999982,27.73491324056979,0.0,19.935914083788834,0.0,31.081685543986428,25.04565633475546,72.55444225107765,0.0,34.777332832286945,4.442651256490317,0.0,5.783825182329737,0.0,7.321849713788356,0.0,8.945984124827898,0.0,10.614351853901232,48.33333333333333,17.982051626925745,17.081706125669594,0.0,0.0,0.0,0.0,1.270496193099476,0.0,68.03599999999999,0.0,26.99930004409171,0.0,0.0,-4.139544726841353,0.0,0.0,0.0,76.65175501540816,18.932683725852236,5.817862777835028,23.128523836287087,53.78379993326184,15.438281622804364,0.0,26.334663090768867,71.88647423489842,0.0,11.648808995999854,0.0,45.92606777120973,46.49041736526946,49.70245619396702,517.797203986946,,349.86438820624693,380.35826550826675,390.61418632788184,349.95366432855644,574.5186240399316,383.8944882992173,383.7730539696673,499.73050061422754,49.70245619396702,517.797203986946,,347.31631128316997,377.87448936557576,388.6426057060955,347.4108218303447,580.2950986474034,381.6461457859574,381.6254981945841,502.5806883808283,4.9376984268002415,351.21354843126863,,232.06018987380122,262.9878954149634,268.8683901331342,232.10853459428006,380.8775061270336,264.71324462398655,263.7816726720963,337.453877947152,1.274421953691462,13.276851384280667,,8.970881748878126,9.752776038673506,10.015748367381585,8.973170880219396,14.731246770254657,9.843448417928649,9.840334717170956,12.813602579851988,2.4688492134001208,258.898601993473,,174.61635452518757,190.246261839071,195.3603791266919,174.66051783192026,285.8172809507469,192.00801016348052,191.94456903280886,249.37383862321715,67.08627450980393,0.0,7.594444912344338,0.0,0.0,0.0,9.395256492261813,69.25018208302987,-0.4669668183002591,2.5033288454270597,17.097728602067647,0.0,0.0,0.0,-0.15113463007910566,0.0,0.0,44.122170364339524,660.1296882920757,117.56464630914608,257.8546253827051,331.3790481747346,363.90837318771537,367.9083731877154,369.9083731877155,1407.0,160.4941264907866,160.89344454836854,76.10866213133752,154.03,145.65,1.0,9.241948044722125,6.392317422778761,5.1873114024875395,6.1344215345823825,,6.104156733809177,6.119781313096512,6.11866440319854,6.104159794708192,6.110593479961117,6.1204229817160005,6.120235392995453,6.129776756487547,0.1330079846791677,0.15729285986108674,,0.15651683932844043,0.15691746956657723,0.1568888308512446,0.15651691781303056,0.1566818841015671,0.15693392260810257,0.15692911264090906,0.15717376298686017,3.0071920818845363,3.1748923374613267,,3.1699465240176528,3.1725029158672267,3.172320391071682,3.1699470254625504,3.171000454165237,3.1726077619310047,3.1725771118279105,3.174134884229298,397.7200000000013,428.07965094898213,285.958339583445,,289.51175044824527,287.12426627913686,287.65920085472794,289.5128624397365,288.9906940353204,287.10903684981304,287.1604793088674,286.54454434875043,10.976401306384158,7.332265117524232,,7.423378216621673,7.362160673824022,7.375876944993024,7.423406729224014,7.4100177957774465,7.361770175636232,7.363089213047883,7.347296008942319,7.420285831750965,7.016822687553011,,7.029172438092636,7.020891658735893,7.022753002217823,7.029176279005324,7.027371040159758,7.0208386160814715,7.021017773977702,7.018870554862066,46.60035749158642,17.10271684940353,9.395256492261813,0.8274611654028595,0.27088967388357243,14.982425241738916,2.999626385186832,5.652701663790072,-2.664768296587345,477.1189059998771,220.20623409064012,-862.163234255891,-33.162631439785386,-12.678871091998394,-34.48652937023563,453.87275056849757,1777.026886576168,32.400667228771006,26.13274833200247,41.32620666456205,4854.0,64.0,3.841260117519156,2.3620090361991952,0.4927992798267444,0.3010310363079829,1.0842238445761783,0.41197074961515084,0.2463996399133722,0.10034367876932762,0.0,0.0,0.0,0.0,0.0,0.0,0.324284294838188,0.08730056452854307,0.41003617378270735,0.10291875209029352,28.04539482762412,22.767120824669668,18.618671493374997,13.477815350291234,17.511661764141174,10.989763554968983,13.678134191458673,6.8279335987950285,11.081899565247195,4.484271679118594,8.952595227398358,3.010530838616887,6.555877786649423,2.110938318200991,5.381966268639613,1.4708892635864057,7.036977902851912,3.130249144960534,10.260148587578206,3.5336865157336534,14.639426867653295,3.9311743425117216,126.87892426325223,63.616934728404026,37.32131538964847,33.08628069835131,32.244744231035064,32.12452473570417,204.0,238.0,77.63899699999999,46.08700300000004,0.39705882352941174,282.12,13.375,8.569444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,24.0,68.0,0.0,0.0,71.0,24.0,2.0,14.0,57.0,26.0,42.0,45.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,10.0,2.0,2.0,39.0,12.0,0.0,5.0,6.0,0.0,4.0,10.0,1.0,0.0,0.0,2.0,4.0,4.04305126783455,8.109633704126333,4.672828834461906,5.204006687076795,5.754158681981268,6.321442527336019,6.610359514342717,7.056525438306512,7.325560599174906,7.751522359925722 +5743,C[C@@H]1C[C@H]2[C@@H]3CCC4=CC(=O)C=C[C@]4(C)[C@@]3(F)[C@@H](O)C[C@]2(C)[C@@]1(O)C(=O)CO,0,21.43859649122807,6.24421052631579,3.456140350877193,6.912280701754386,164.6122479216793,84.98343591490826,1.3644884779056317,6.288129824561404,6.244639376218323,7.78044540350877,201.36488276291513,22.9,6.2725,4.516666666666667,6.033333333333333,144.4916761631475,85.97963424725336,1.798430766966667,6.418925000000001,2.953240740740741,7.718970933333332,260.07649656990145,20.52991452991453,6.133418803418803,4.239316239316239,5.111111111111111,149.87115464277127,76.99498461970599,1.6060293777426158,6.259837606837605,2.757241215574549,7.62318105982906,229.60073369034822,18.90810810810811,6.261297297297297,3.4594594594594597,4.113513513513514,154.2078496340175,69.55924586842809,1.4393868868161075,6.359058918918917,3.610548048048047,7.760118205405404,203.38631008071744,14.49802371541502,6.177312252964425,2.739130434782609,2.541501976284585,159.82073300778646,50.120038970086945,1.2285972367306959,6.250547826086955,3.167764602547211,7.73529775494071,165.3035963145704,11.280701754385966,5.978596491228069,2.175438596491228,1.936842105263158,164.86447444569785,37.4343309189277,1.0290842032539407,6.030361754385965,2.9264863547758284,7.609825824561404,131.7826555023254,9.756972111553784,5.885139442231075,1.9641434262948207,1.8764940239043826,169.9057088266478,32.18758088432829,0.9070915800308725,5.915117529880478,3.078297919433378,7.559309051792829,113.0394540790632,10.89820359281437,5.9329940119760485,2.029940119760479,2.2215568862275448,168.2600396320919,36.82257266068503,0.9608605310696887,5.969649101796406,3.3567032601463747,7.584984550898206,122.3354263201181,10.899159663865547,5.984873949579832,1.9327731092436975,2.1596638655462184,167.23449063559008,36.23940840880671,0.9660099675219411,6.0229260504201685,3.363912231559291,7.637431697478991,123.63614009640976,7.865189289012003,0.17706371191135725,0.01756587793600035,0.907356109572176,4.075715604801478,1.6717271261474553,37.57479861895522,0.23254191830698306,0.16207060634041237,2.9262764611333396,0.11143263034779927,49.993038124827706,-0.0002770083102490754,-0.013090027700830979,-0.007745355291371739,0.49322868574946116,1.1225300092336103,0.21145261410580424,0.1416401642432539,0.035601791969406035,-0.011960811018774954,-0.2660506651619301,-0.008022199938442592,5.399220109004838,1.071382910718091,0.002670880981130292,-0.0024349125424809217,0.006424067365895554,0.4047162440514241,0.08202476484274003,5.224753422326426,0.02898473022543868,0.00495803363559597,-0.03284957720938025,-0.0009125247847463961,7.9656006436223485,0.1401212847196228,0.01398607471737668,0.0024065017208380465,-0.21375724755226147,-0.29657857303286655,-0.1590262075440511,0.6516497368924644,-0.01592553829589633,0.012549071231896752,0.2627026495562968,0.009019703080365685,-2.423111917758709,-1.6643710378505028,-0.02362497673349169,-8.673901586329546e-05,-0.15151393496569934,-0.8861309712809171,-0.20118210193526323,-8.07235313830381,-0.04328920175944878,-0.023484599822140427,-0.27901147719787567,-0.012339967703045135,-10.853403652422827,-0.8190212373037856,-0.014223453370267784,-0.0007442615321038411,-0.009233610341643564,-0.2083102493074793,-0.16874365419700488,-3.9334732326156745,-0.026951698802551296,-0.013368230224684525,-0.24539986662562838,-0.00862053431825177,-5.845949233509885,0.5939565836377482,0.0064611360651576156,-0.0006854249835119143,0.0414801244391471,0.2844577369193585,0.13580080909707656,2.9256323006643594,0.02463422278611467,0.006432497035557331,0.07778041079415453,0.0030731285115003126,5.201017425034697,0.6897009305488745,0.01473899845737884,0.0019631003796347943,0.009126714253856116,0.29795810041965926,0.11328219451963713,3.2283779545313416,0.014916569402426862,0.013723237550752573,0.21752511699694885,0.009391882311093407,3.717056252091237,-0.14043622989361954,-0.002963756139574958,-0.0008213043440614433,0.02748098315965356,-0.0422495868153356,0.03947942790100622,-0.6475768369441163,-0.0017082877042220352,-0.002863470854639194,-0.11952510562037474,-0.0026551165633381707,-0.4890174794231066,,,0.4625850340136055,0.7857142857142857,0.17857142857142858,0.0,0.6071428571428571,-0.42857142857142855,1.526802575982492,0.03396357743444715,0.04624929172016142,0.6601636811601271,0.11664657542076677,0.3463260458009681,2.186966257142619,0.4629726212217348,2.0200885121074816,1.6430279493462994,0.0,0.3127814066167857,0.06427915614439612,0.37706056276118183,6.88070003943861,1222.0,355.92,197.0,394.0,9382.898131535721,4844.055847149771,77.775843240621,358.4234,355.94444444444446,443.4853879999999,11477.798317486162,1374.0,376.35,271.0,362.0,8669.50056978885,5158.778054835201,107.90584601800002,385.13550000000004,177.19444444444446,463.1382559999999,15604.589794194086,2402.0,717.61,496.0,598.0,17534.925093204238,9008.4132005056,187.90543719588604,732.4009999999998,322.59722222222223,891.912184,26863.285841770743,3498.0,1158.34,640.0,761.0,28528.452182293237,12868.460485659198,266.2865740609799,1176.4258999999997,667.9513888888887,1435.6218679999997,37626.46736493272,3668.0,1562.8599999999994,693.0,643.0,40434.645450969976,12680.369859431998,310.8351008928661,1581.3885999999998,801.4444444444443,1957.0303319999996,41821.80986758631,3215.0,1703.8999999999999,620.0,552.0,46986.37521702389,10668.784311894395,293.2889979273731,1718.6531,834.0486111111111,2168.80036,37558.056818162746,2449.0,1477.1699999999998,493.0,471.0,42646.3329154886,8079.0828019664,227.679986587749,1484.6944999999998,772.6527777777778,1897.3865720000001,28372.902973844866,1820.0,990.8100000000001,339.0,371.0,28099.426618559344,6149.3696343344,160.463708688638,996.9313999999999,560.5694444444446,1266.6924200000003,20430.016195459724,1297.0,712.2,230.0,257.0,19900.90438563522,4312.4896006479985,114.95518613511099,716.7282,400.3055555555556,908.854372,14712.700671472761,448.31578947368416,10.092631578947364,1.00125504235202,51.719298245614034,232.31578947368425,95.28844619040495,2141.7635212804475,13.254889343498034,9.238024561403504,166.79775828460035,6.351659929824558,2849.6031731151793,-0.016620498614944523,-0.7854016620498587,-0.46472131748230433,29.59372114496767,67.35180055401662,12.687156846348254,8.498409854595234,2.136107518164362,-0.7176486611264973,-15.963039909715807,-0.4813319963065555,323.95320654029024,125.35180055401665,0.3124930747922442,-0.28488476747026786,0.7516158818097798,47.35180055401662,9.596897486600584,611.2961504121919,3.3912134363763253,0.5800899353647284,-3.8434005334974892,-0.10676539981532834,931.9752753038148,25.92243767313022,2.587423822714686,0.4452028183550386,-39.54509079716837,-54.867036011080316,-29.419848395649456,120.55520132510591,-2.946224584740821,2.321578177900899,48.5999901679149,1.6686450698676518,-448.27570478536114,-421.0858725761772,-5.977119113573398,-0.02194497101341375,-38.333025546321934,-224.19113573407202,-50.899071789621594,-2042.305343990864,-10.952168045140542,-5.941603755001528,-70.58990373106255,-3.122011828870419,-2745.9111240629754,-233.4210526315789,-4.053684210526319,-0.2121145366495947,-2.631578947368416,-59.3684210526316,-48.09194144614639,-1121.0398712954673,-7.681234158727119,-3.8099456140350894,-69.93896198830409,-2.4568522807017543,-1666.0955315503172,149.0831024930748,1.6217451523545614,-0.1720416708614905,10.411511234225923,71.39889196675898,34.086003083366215,734.3337074667542,6.183189919314782,1.6145567559248901,19.522883109332785,0.7713552563865784,1305.455373683709,115.18005540166205,2.461412742382266,0.32783776339901066,1.5241612803939713,49.7590027700831,18.9181264847794,539.139118406734,2.491067090205286,2.2917806709756796,36.32669453849046,1.568444345952599,620.7483940992366,-16.711911357340725,-0.35268698060942,-0.09773521694331175,3.270236995998774,-5.027700831024937,4.69805192021974,-77.06164359634984,-0.2032862368024222,-0.34075303170206406,-14.223487568824595,-0.3159588710372423,-58.19308005134968,0.7392252190649915,0.5933245582391766,0.4181688191680186,0.3271721073139524,0.25128951628760116,0.18394624290473255,0.15627708028934378,0.10465777624969459,0.09103154905618162,0.06259511353470285,0.05502735294285919,0.03570174471289903,0.03246455454442696,0.020006753858479435,0.01943239075562017,0.011494835500209128,9.00406389097513,5.70333532282235,4.107678383057921,2.2021230909936618,0.3987440175969649,-0.3800036087019454,4.123946483601727,0.9771523618430016,7.004056002154444,0.9934518416231902,17.424771341800547,10.963892936713384,19.00014195079825,11.71502890999363,1.9812174152191282,0.5459781904042451,3.988613527642447,2.25184783701721,8.001802230253393,1.0635973087450215,4.009869439680131,2.447857874599668,20.88747117430153,13.304119510481236,0.23940393527553605,0.5728171953365443,0.7980288180870044,0.9011990301195901,0.9011990301195901,0.9011990301195901,1.7687957566101882,804.7488254884713,0.0,0.0,4.0,0.0,5.0,5.0,1.0,5.0,2.0,4.396466402511525,2.3959868421454757,1.0447171056427145,0.4256958334472003,0.4256958334472003,0.4256958334472003,158.69321562998678,1354.596866510061,65.8756778892703,23.764857307194053,48.324086989196005,,12.0,530.0,52.42969695947186,24.90865655266576,18.121972615452343,24.835569398847298,0.0,12.152040213667762,26.847231705905752,0.0,0.0,0.0,12.952380952380954,22.0,5.0,0.0,17.0,0.0,0.03741496598639449,-12.0,0.13970181864918702,0.01857649588452026,-0.12112532276466675,0.0558097432521395,0.18635693501454864,0.0,0.5832915622389305,0.8767006802721085,0.4435897435897435,0.5647150663544103,0.820890937019969,42.750472127509774,0.95098016816452,1.2949801681645199,18.48458307248356,3.2661041117814698,9.697129282427106,61.23505519999333,12.963233394208576,0.5276430649854513,0.2665441176470588,0.15441176470588233,0.2702205882352941,0.7272727272727273,0.35561756489255003,-0.8765551948056827,-0.07625531316745349,-0.015378161312380397,-0.04613448393714119,0.64438243510745,1.588326412126567,0.04361484952662937,0.027865375651343283,0.04179806347701494,-2.797529767186576,0.8598105971667842,0.6921881518564874,1.2862823106035148,0.9474219810040705,0.5303126415949252,1.0182315286161072,0.8607161568370868,1.0994400469518057,0.6972803861386027,0.7275832751432354,0.7123060611955077,1.0364398938683461,0.7414645306169139,0.6397491165951743,0.8598680710570812,1.7352050934140486,0.8076245357622791,1.0710640436216188,0.7452703145351904,1.0581518813495512,0.6327693136865143,0.6660914705639762,0.6578674882264959,0.9519006759692235,0.9223228393925741,0.8474365479371735,0.7211350096087644,1.7470607649712127,1.0684431599701194,1.3017618869743717,0.9297400800701602,1.1960355103118303,0.8402353276938374,0.8336938079286935,0.8339238755515628,1.1082749514096453,1.1883915669862566,1.1925108955364165,0.9111405207123625,1.228278299483538,1.1895352731427669,1.3130159606843002,1.1981722329622153,1.2359036904125325,1.1908235190191696,1.1045455809975506,1.1472146532370766,1.2263168750669255,1.0878296939813727,1.055013210958142,0.9676059196861797,0.7997286295793757,0.9781603987313093,1.0492105000309258,1.0884414507140603,1.0665724249525073,1.0602011442409842,1.039501094168622,1.0447757897330534,1.0840445501939877,0.9308677476054926,0.9670263460135261,1.0223299638901668,0.7268781049479152,0.8912171883377227,0.7749080052332413,0.9264704069173323,0.7740875580191205,0.9714753503585496,0.9276023999156602,0.9657537823759179,0.8282711137101466,0.9117824459088398,0.9176790349213965,0.9307447163679717,0.8104550735706335,0.9223456123548099,0.8411919585192031,0.9130690322198756,0.8444193257328259,0.9214526697379027,0.8993864002650996,0.902977708616043,0.8725432763556941,1.023963095451846,1.0304547350855238,1.1246978494546636,0.6733179024662782,1.0290252938511153,0.8255008371428542,1.0186842723184248,0.9124899502333926,1.0359663247623137,1.0776621690576025,1.0497724564487185,0.9500104921905158,10.0,0.06601367207427813,8.666666666666668,5.798611111111111,3.818888888888889,2.0388888888888888,1.1445804988662132,0.5955215419501133,0.3038548752834467,0.16719135802469137,6343.876945325897,7339.255373028415,2623.545507855008,2315.6139171144937,12.312715419448091,0.4558051707002719,6.700516065902685,0.8375771803763803,1.0,0.7272727272727273,1.4364236116532163,3.4369031720192655,4.788172908522027,5.407194180717541,5.407194180717541,5.407194180717541,0.32258064516129026,0.009430524582039732,0.16352201257861637,0.08283730158730158,0.05967013888888889,0.04077777777777778,0.030934608077465214,0.020535225584486665,0.015192743764172333,0.012860873694207029,0.7583418516962459,21.240374609781476,6.497686009255963,2.395124716553288,163.87178561127467,1.0,4.302534848811815,123.84031644971577,,114.86675488535963,114.46790660096823,115.48396010899721,114.81378333516898,131.52186165681195,114.74844710899667,114.91373605915454,122.14717866040716,-3.521953510210715e-05,-0.07392834793491843,-0.44093186344521035,0.5435888738127542,0.2754191209787041,0.12648751748923465,0.003769552185219197,0.15309838427671105,-0.07380000167120077,-0.0909178161037079,-0.07199147963575846,0.10799943975246144,0.1362183249950332,0.015084293400939235,-0.13861604591312204,0.007079984691924917,0.09929943187759226,0.04906588136292825,0.13904940583475844,0.12464303398054616,0.03059181271391148,-0.011225725814251223,-0.008189026696204322,0.1593341981684135,0.017815373485718655,0.07898893887629825,0.13699865896859315,-0.23558252961238044,-0.07276723937349217,-0.09512689305373163,0.017342733982444528,-0.06848459156027398,0.07742965560046552,0.08977369467495655,0.08094310483575351,-0.0484689870559264,-0.21161233082790498,-0.133426417409113,-0.004937926597197193,-0.16698398056430025,-0.21741727274518194,-0.12034386401259954,-0.21483423557808717,-0.18615655222342267,-0.1449035105897826,-0.09534693010168124,-0.1107392660886681,-0.21709830127392826,-0.10413242545198402,-0.08032957863996672,-0.0423697315224146,-0.010176390773405678,-0.05111010421386498,-0.10093971172548934,-0.10468381407721956,-0.11590038905145626,-0.08248398970388224,-0.08386079370319838,-0.07736095155741803,-0.11693526644476225,0.07551713783513517,0.03649045869089331,-0.039020251991343485,0.04571537459389041,0.06979332330848782,0.08123383713347618,0.07786155636742326,0.1059345470505432,0.039689473500497334,0.026579994005088082,0.027578353861957502,0.10403483405125864,0.08769031554172706,0.08324121469201758,0.11175646254557664,0.010058580261458113,0.0731057142624583,0.06776356783819097,0.0859187027792275,0.06414572267669699,0.08467443826259494,0.07433512174468365,0.08428305319348402,0.07435147755593714,-0.017855416409343742,-0.016738359924695873,-0.046755667268882875,0.03028687730180272,-0.01036617637539838,0.023615952199081514,-0.017234339523976464,-0.007346149531487445,-0.017668045546919055,-0.04084545913822612,-0.023827101227451263,-0.009781711569560505,7.098323376798651,17.49517186257132,5.851085878768621,13.738536438897423,32.83035833479011,39.108624195919056,39.732597638292134,39.732597638292134,39.732597638292134,56.56247833900948,46.00478258169638,0.0,8.75787938527,1.7998163720430915,10.557695757313091,5050.6965693013635,4775.430102737698,1123.1336177484518,332.0,53.0,84.0,116.0,155.0,194.0,243.0,288.0,321.0,392.19990224800074,31.0,5.1298987149230735,6.093569770045136,7.084226422097916,8.071843149609158,9.06820060481506,10.062924236792623,11.062143902371083,12.059953790733452,13.06066880839849,0.6140350877192982,0.985263157894737,1.1336124025862637,0.5732572673879354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6370836957663619,0.9706226350189199,1.0084844303037273,0.5978430408404486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,3.0,0.0,1.0,0.0,3.0,5.0,0.0,0.0,0.0,4.0,0.0,4.0,0.0,0.0,15.319582184522117,12.207932775496605,17.235249711475557,0.0,0.0,9.589074368143644,4.39041504767482,0.0,0.0,25.496599036284397,56.594875997385216,16.747886984954953,6.103966387748303,195.43268841984067,-481.71843907938677,-41.906762572639494,-8.451200685603276,-25.353602056809827,354.12590404982745,872.8784274306743,23.96891531663081,15.313656621590777,22.970484932386174,0.5,0.6789943257513795,0.1581059369180031,34.600075861951545,0.0858240769810167,130.14404643909836,0.3210056742486206,6.0,0.06451612903225806,0.2462627630839889,0.5892281808285431,0.8208920272616668,0.9270180249561659,0.9270180249561659,0.9270180249561659,1.8957000000000002,,1.5833333333333335,1.8188153310104527,1.2193741229080475,1.61411686841094,-7.409675989559316,1.6529011335748511,1.5559740010946905,-2.541632055590836,99.94440000000004,29.299071600340582,0.0,0.0,28.583699077277743,63.82827510825357,6.606881964512918,23.80116485057091,0.0,0.0,4.143134726391533,0.0,5.616771097666572,2.3978952727983707,7.323170717943469,5.043425116919247,9.13938128303569,7.40184157874383,11.012924377287385,34.99999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.160000000000004,0.0,24.380376536674213,0.0,0.0,0.0,4.448177124219241,0.0,-0.11987342297519898,64.61590694741703,0.0,4.39041504767482,0.0,50.866731059242575,9.589074368143644,28.583699077277743,46.454498090775914,23.80116485057091,0.0,0.0,0.0,32.675664241112315,36.31377065868263,35.275293180256256,247.68063289943154,,229.620414532624,228.80589782114998,230.88082206635812,229.51227260830862,266.7485613084036,229.37882985130943,229.7163311182309,245.56517334860973,35.275293180256256,247.68063289943157,,228.1501764373861,227.116997870926,229.7485460950865,228.01344980192692,270.45339930318323,227.84399308441854,228.2714981172144,246.83598937640522,5.393211061304875,178.4100519727808,,167.9347474575515,167.50921013633678,168.60652102403563,167.88149589608904,185.66667844610555,167.8096304116043,167.98326464006084,175.7157456086167,1.2598318992948663,8.845736889265412,,8.200729090450858,8.171639207898213,8.245743645227076,8.196866878868166,9.526734332442986,8.192101066118195,8.20415468279396,8.770184762450347,2.7238923532875696,123.84031644971577,,114.86675488535963,114.46790660096823,115.48396010899721,114.81378333516898,131.52186165681195,114.74844710899667,114.91373605915454,122.14717866040716,55.325490196078434,0.0,5.257134843504794,0.0,16.85906328735198,0.0,31.96344205578165,57.48361252731245,0.6081851498953319,0.0,0.0,0.0,-2.6911447047954997,0.0,-5.872027536323171,0.0,0.0,34.07705332790557,373.14716595481946,81.87614586423332,195.90348080509813,272.9258557857555,308.2100683008998,308.2100683008998,308.2100683008998,1845.0,140.693429399786,176.41142651484873,80.0785441707861,94.83,94.83,1.0,8.017637159908478,5.954196310386875,4.551583314177744,5.203553273108567,,5.219115560544476,5.219361136497564,5.2179281898812695,5.218964556645176,5.187344880185034,5.2191299506141435,5.219171688731643,5.208687104041426,0.16255654693491944,0.18584118832530597,,0.18639698430515986,0.18640575487491298,0.18635457821004534,0.1863915913087563,0.18526231714946548,0.1863974982362194,0.18639898888327294,0.18602453943005096,2.545094570750589,2.678961131162179,,2.6819473718744535,2.681994423941582,2.6817198418004744,2.681918438603658,2.67584139967595,2.6819501290561374,2.681958126165043,2.679947245804739,291.3100000000007,220.65273496585849,180.98696483267796,,178.59513980485968,178.45794373167908,178.82570530332387,178.58135417988044,184.37413481358902,178.55588084763752,178.60928095856733,181.15787480185696,7.8804548202092315,6.463820172595641,,6.3783978501735605,6.37349799041711,6.386632332261567,6.377905506424301,6.584790529056751,6.376995744558483,6.378902891377405,6.46992410006632,6.426209547861177,6.228044428354583,,6.214740872514536,6.2139723812942735,6.216031035265822,6.214663680284822,6.246586451727766,6.214521027378389,6.214820049326989,6.228988304744152,16.85906328735198,24.380376536674213,31.96344205578165,-5.1691156987486355,-2.1191335745667015,0.0,4.439214381714833,4.479486345126001,0.0,379.11515600192865,107.40171317057086,-264.7325073471534,-23.03022145438033,-4.644429953458831,-13.933289860376492,194.61293338667193,479.69783997593873,13.172323364432298,8.415751578525242,12.623627367787867,1670.0,70.0,3.613038628057037,2.399136420485058,0.37079081189859814,0.23800275690049974,2.7077595067902354,1.2973988161371035,0.8893562880894406,0.35793477945439134,0.0,0.0,0.0,0.0,0.05892556509887896,0.05892556509887896,0.42109766634481494,0.34351492803316375,1.2604023241496514,0.8690383571899402,20.698306133819763,16.613087630696945,12.963233394208578,10.142335326732525,13.318344363242861,9.749150873950825,13.127274744304879,8.791253204974346,10.559659690517067,7.26103317002553,8.529239706143175,5.5337704304993505,6.29812358161883,3.8813102485450104,4.7220709536157015,2.793245026550818,11.397235032882097,6.57130414080876,20.00554710685335,11.289789033037682,35.57906959454254,18.453773823404465,97.59842209833185,43.354752069865846,26.921084289799907,23.253225190381347,23.253225190381347,23.253225190381347,168.0,221.0,60.64399699999996,31.942002999999996,0.2982456140350877,205.06,12.027777777777779,5.819444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,57.0,0.0,0.0,60.0,0.0,4.0,4.0,56.0,4.0,31.0,56.0,0.0,0.0,0.0,22.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,5.0,3.0,0.0,28.0,6.0,0.0,0.0,5.0,0.0,4.0,2.0,0.0,0.0,1.0,0.0,0.0,3.58351893845611,6.551080335043404,4.143134726391533,4.672828834461906,5.043425116919247,5.402677381872279,5.673323267171493,5.910796644040527,6.152732694704104,6.400257445308821 +159269,Cc1cn([C@@H]2C[C@@H](O)[C@H](CO)O2)c(=O)[nH]c1=O,0,25.548387096774192,6.785800000000001,3.2903225806451615,9.419354838709678,167.952491737806,100.93865190322579,1.2822451828350325,6.788264516129033,7.505376344086022,8.27824219354839,201.25560228359583,26.21875,6.78996875,4.0625,7.8125,152.44593134095308,99.48669293749995,1.5873542400624991,6.888859375000001,3.6788194444444446,8.198614750000003,246.84823270586796,22.87719298245614,6.774349122807015,3.6315789473684212,6.631578947368421,159.9505433399069,85.4972556140351,1.3653380867411407,6.829219298245613,3.764132553606238,8.230193684210525,207.3927090926515,18.960526315789473,6.688644736842105,2.8947368421052633,5.065789473684211,163.47851052597946,68.60118623684208,1.1459564980853945,6.723818421052632,4.04714912280702,8.223378736842108,171.15813271984086,16.545454545454547,6.727077922077921,2.4805194805194803,4.51948051948052,170.65587971655887,58.26893601298702,1.025022615271247,6.725605194805194,4.670995670995672,8.289739480519481,148.47216489047054,14.696969696969697,6.2991666666666655,2.484848484848485,3.3636363636363638,167.20248293004596,51.672572136363634,1.0403876766732274,6.333433333333333,3.2845117845117855,7.8990753333333315,145.96629406334677,15.464285714285714,6.561107142857144,2.232142857142857,3.767857142857143,167.29002875257746,53.913285678571434,1.0201686480953391,6.5752375,4.595734126984128,8.153316714285712,144.69101788382744,13.391304347826088,6.405369565217391,1.9565217391304348,3.0652173913043477,169.0641522679911,45.425008804347826,0.9228510372899784,6.417308695652176,4.438405797101451,8.025934347826086,126.50502203331517,10.65625,6.3298125,1.46875,2.09375,172.49419799057313,34.084359,0.7724888859528124,6.322300000000001,4.661458333333334,8.012229750000001,101.37014001516258,8.499479708636835,0.21898043704474496,0.035083686794148444,0.6888657648283034,4.8865764828303835,1.3429796642564622,39.88156828095733,0.20030282800630803,0.1982786680541102,3.2431494970516836,0.1454421560874089,44.119368175547066,-0.08718132154006186,-0.034297170915712834,-0.023256402017448576,0.212343912591051,0.901729968782519,-0.36974906510954597,-0.26195650676379645,-0.011438380957973155,-0.027292680150884596,-0.41379241819863555,-0.025477591571279892,0.4269277360562473,0.30187852565857975,0.012602302061084003,0.006862011764919946,-0.04879785311353298,0.14568158168574405,0.11151032585912515,1.3925802040454873,3.691065424725495e-05,0.010402995782901523,-0.07475359690705549,0.00483178845135733,0.07576059576023117,-0.6085629004874309,-0.019377805465797694,-0.004037582123666984,-0.1065228106687113,-0.48632181389999457,-0.3997617570921118,-2.8840354634700724,-0.035548271796050745,-0.016183506763787762,-0.18864327181116167,-0.013190257954981086,-5.777564037419852,-0.8857386110247716,-0.0032336419044015395,0.0037388725446385607,-0.029041717907482754,-0.3210130140411097,0.23574894026181034,-4.184390963822858,0.013539056048852404,-0.00597426922713085,0.10763949889860401,0.0028009172263740644,-1.3890279350500965,0.21508529625074882,-0.015252480055497706,-0.00500510320659698,-0.07009743638255604,-0.26487560306498925,-0.018920963170186784,1.0834225435783462,-0.003897778795446339,-0.011247974016964589,-0.27861164541705663,-0.012906236243811712,1.760808759532678,-0.8139958376690949,-0.003011082206035367,0.003617374770674464,-0.06271369109558496,-0.5576594321391407,0.0043960262734999145,-3.8864940649435105,-0.009052147092041328,-0.004899923814478955,-0.02683165270964436,0.0007741595807938202,-4.258302337704996,-0.6172917703479165,-0.0011539293308600433,-0.0005268590190108236,-0.14047866805411038,-0.3627335655793333,-0.10689579679735565,-3.0267036687553692,-0.03451855224211662,-0.0017473917567750472,-0.10348142786047144,-0.0005929022304664646,-6.621122068120037,-0.5529071279916759,-0.00996551768990632,-0.0023906585496223285,0.08835197710717994,-0.0932297086368367,-0.15801520453557047,-2.6402772386186184,-0.02346024468990287,-0.009035321279916677,-0.09782019597641346,-0.006532527055150895,-4.547305104881056,,,0.43921568627450974,1.0441176470588236,0.35294117647058826,0.058823529411764705,0.6911764705882353,-0.3382352941176471,0.8027618295917786,0.022949279818820275,0.0330669268776438,0.7546416607253397,0.20949575409965462,0.2625087050446484,1.5574034903171183,0.472004459144303,1.9883468516718854,1.207523781870668,0.2474873411918202,0.5333357286093973,0.0,0.7808230698012175,7.809363598322581,792.0,210.35980000000004,102.0,292.0,5206.527243871987,3129.0982089999993,39.74960066788601,210.4362,232.66666666666669,256.6255080000001,6238.923670791471,839.0,217.279,130.0,250.0,4878.269802910499,3183.5741739999985,50.79533568199997,220.44350000000003,117.72222222222223,262.3556720000001,7899.143446587775,1304.0,386.1378999999999,207.0,378.0,9117.180970374693,4873.343570000001,77.82427094424501,389.2655,214.55555555555557,469.12103999999994,11821.384418281135,1441.0,508.33699999999993,220.0,385.0,12424.36679997444,5213.690153999998,87.09269385448998,511.01020000000005,307.5833333333335,624.9767840000002,13008.018086707905,1274.0,517.9849999999999,191.0,348.0,13140.502738175033,4486.708073000001,78.92674137588601,517.8716,359.66666666666674,638.3099400000001,11432.35669656623,970.0,415.74499999999995,164.0,222.0,11035.363873383034,3410.389761,68.66558666043301,418.0066,216.77777777777783,521.3389719999999,9633.775408180887,866.0,367.422,125.0,211.0,9368.241610144338,3019.1439980000005,57.12944429333899,368.2133,257.3611111111112,456.5857359999998,8102.697001494337,616.0,294.647,90.0,141.0,7776.9510043275895,2089.550405,42.451147715339005,295.1962000000001,204.16666666666674,369.1929799999999,5819.231013532498,341.0,202.554,47.0,67.0,5519.81433569834,1090.699488,24.719644350489997,202.31360000000004,149.16666666666669,256.39135200000004,3243.8444804852024,263.4838709677419,6.788393548387094,1.0875942906186018,21.354838709677406,151.4838709677419,41.63236959195033,1236.3286167096774,6.209387668195549,6.146638709677417,100.53763440860219,4.508706838709676,1367.700413441959,-2.7898022892819796,-1.0975094693028107,-0.7442048645583544,6.795005202913632,28.855359001040608,-11.831970083505471,-8.382608216441486,-0.366028190655141,-0.8733657648283071,-13.241357382356338,-0.8152829302809566,13.661687553799913,17.207075962539047,0.7183312174817882,0.39113467060043694,-2.7814776274713795,8.30385015608741,6.356088573970133,79.37707163059278,0.002103907292093532,0.5929707596253868,-4.260955023702163,0.2754119417273678,4.3183539583331765,-46.250780437044746,-1.4727132154006246,-0.30685624139869083,-8.095733610822059,-36.960457856399586,-30.381893539000497,-219.1866952237255,-2.701668656499857,-1.22994651404787,-14.336888657648286,-1.0024596045785625,-439.09486684390873,-68.20187304890742,-0.24899042663891854,0.28789318593716917,-2.236212278876172,-24.718002081165448,18.152668400159396,-322.19810421436006,1.0425073157616351,-0.46001873048907543,8.288241415192509,0.21567062643080295,-106.95515099885743,14.195629552549422,-1.0066636836628486,-0.3303368116354007,-4.6264308012486985,-17.481789802289292,-1.2487835692323277,71.50588787617085,-0.2572534004994584,-0.7423662851196628,-18.388368597525737,-0.851811592091573,116.21337812915675,-45.58376690946931,-0.16862060353798056,0.20257298715776997,-3.511966701352758,-31.22892819979188,0.2461774713159952,-217.6436676368366,-0.5069202371543143,-0.2743957336108215,-1.5025725517400843,0.04335293652445393,-238.4649309114798,-28.39542143600416,-0.05308074921956199,-0.024235514874497887,-6.462018730489078,-16.68574401664933,-4.91720665267836,-139.22836876274698,-1.5878534031373643,-0.08038002081165217,-4.760145681581687,-0.02727350260145737,-304.57161513352173,-17.693028095733627,-0.31889656607700223,-0.07650107358791451,2.827263267429758,-2.9833506763787745,-5.056486545138255,-84.48887163579579,-0.7507278300768918,-0.2891302809573337,-3.130246271245231,-0.20904086576482864,-145.5137633561938,0.739822693544713,0.546470605707239,0.44578198919184175,0.29393541019905167,0.2863156457734373,0.15744106144204803,0.18542571539613623,0.0835361233746964,0.1154888374551175,0.04405407153758446,0.07278056045706413,0.023275753565088077,0.0473371049335263,0.012195968362546798,0.03067644833307153,0.0068948681062079185,8.024483975886152,5.748824197141061,3.550815080929747,2.238178832526407,0.49250475875760247,-0.4107201405209737,3.2187080343746897,0.9772509342231971,6.023728082128074,0.9959500935295471,14.55774390910436,11.016029945514308,16.012266618415055,11.766404730427217,1.9377400815843902,0.7440552911335576,3.497705128675703,2.2848313894327057,7.009376633393559,1.1933507497882367,3.709513654440269,2.4794487893419994,20.823294354343023,14.701775821844217,0.3361357379258822,0.7066371799441984,0.8856497704335697,0.9108057732585748,0.9108057732585748,0.9108057732585748,1.9820949826086112,520.1629217962848,0.0,2.0,3.0,0.0,0.0,3.0,1.0,0.0,0.0,3.2300609784553833,1.3296542241572138,0.4114479839407572,0.2824157258762394,0.2824157258762394,0.2824157258762394,96.52946402555031,952.480166614946,72.30933975328568,30.725166664998262,71.46179111729153,,9.0,242.0,29.68484423948696,14.69560176298435,13.027703587438928,5.563451491696996,0.0,10.763943219404432,6.923737199690624,0.0,4.9839785209472085,9.843390348640755,7.466666666666666,17.75,6.0,1.0,11.75,0.0,0.060784313725490244,-5.75,0.2300416940969935,0.022352557836428755,-0.20768913626056473,0.10088235294117631,0.26238709677419353,0.0,0.6688172043010755,0.972549019607843,0.438775510204082,0.6464646464646467,0.8716666666666667,13.646951103060236,0.3901377569199447,0.5621377569199446,12.828908232330775,3.5614278196941287,4.462647985759022,26.47585933539101,8.024075805453151,0.45161290322580644,0.24553571428571427,0.0,0.4553571428571429,0.6,0.38699866072188094,-0.8630164915807753,-0.1101662394070842,-0.027839241663895974,-0.10787706144759691,0.6130013392781188,1.3670079999018647,0.05913030267824267,0.044097032254898874,0.05943513043051586,-0.29712752245089685,0.7792222698334967,0.8805056317661741,1.6352835007654263,0.9658232628398798,0.5631787691652472,1.6658650298204487,0.783129624459595,1.3165505075595019,0.8450807824155665,0.7839363302139034,0.9179397548021637,1.053720771237717,0.8259768544770351,0.7903621726467213,0.7729023548838992,1.3308952138654802,0.8529655698018472,1.1380754562164315,0.8303459804243043,1.1100631260492713,0.7848405944784321,0.7044000375269721,0.8191397632959728,1.003281481549962,1.0097492138770041,1.0604884803128718,1.1406335748453422,1.2015026236285586,1.0709842643235008,1.3318814131666703,1.0104465443384687,1.191736203949264,1.0470806272794977,0.9138914297776524,1.076169699602632,1.1003732666819863,1.1067978299858812,1.074795724736658,0.895792594332409,0.9304743594773812,1.096940750901569,0.7691572822506301,1.1046864650399777,0.8131716115389235,1.0868467891136457,1.0076237933189802,1.032424229016926,0.938790999170763,0.9332984596206929,0.9323801855694527,1.0803369826639404,1.0961960999725358,0.973701022146508,0.9553222504620975,0.9342422842100423,0.9872385549867337,0.9293068791192077,0.9035387295414029,0.9322415022145304,0.9593617913205045,1.0877597243598716,1.0377678806480077,0.8414991997374408,0.9281937850668974,1.129893982720857,0.9032279505566256,1.0878010622843157,0.9939849749169805,1.0484127325668835,1.1090670359052706,1.029387096763511,1.0548216809349977,1.0791849422986843,0.9955739569183819,0.8751681104132252,1.0994351766714838,1.0461725057403157,0.9299859872833536,1.0815448402892909,1.084421358302588,1.0058785022448329,1.215115670774238,0.9905107536274704,1.1111793175117815,1.1403686642997064,1.1384481939524864,1.0528511623213574,0.548763217522659,1.0428090396081775,0.8131919177613891,1.137613610110082,0.9542116679856557,1.1492638023246906,1.3138995655080208,1.1402795599527886,1.041626325748476,4.5,0.0,2.666666666666668,1.6666666666666665,1.2194444444444446,0.6427777777777778,0.3248979591836735,0.2057468820861678,0.045099521289997474,0.0,3272.756846225002,3674.153760252502,1706.6493216644399,1552.3037904387984,9.75761878351946,0.4081785670113038,5.774767931019905,0.6896988589108769,0.0,0.6,1.7241353319314916,3.624542086229661,4.542748326446118,4.6717805845106355,4.6717805845106355,4.6717805845106355,0.25,0.0,0.1025641025641026,0.0641025641025641,0.058068783068783075,0.037810457516339865,0.023206997084548105,0.022860764676240864,0.011274880322499369,0.0,0.569888549335078,13.432098765432098,5.325443786982248,2.71280276816609,96.28954903482216,1.0,3.7595029772439457,61.50235177790225,,45.83204302026658,44.46416305461187,45.44014368274201,45.850165236869685,73.55632841396502,45.346747213119905,45.904925432896555,63.93923754974823,-0.010257253917727652,-0.1566220771981781,-0.6628836403056555,0.30825151057401834,0.18453204855195932,-0.27531992847729136,-0.006568360223910139,-0.057105439158417336,-0.13764809103638131,-0.12758968360071293,-0.17517336277638912,0.009676651178628388,0.03551729470591273,0.05754989911956809,0.1955898137268872,-0.07083797106058191,0.029812606473594565,0.08303202857569895,0.03491788974382978,0.00018427425421119135,0.05246654057643027,-0.02304969196610063,0.03322137529681206,0.0017171731802410781,-0.07160001804216713,-0.08849103475776772,-0.1150843167469049,-0.15463507711877889,-0.099521989599211,-0.2976677664835968,-0.07231499631992011,-0.17747264055069278,-0.08162000946754033,-0.058166690121024475,-0.09069074819720017,-0.13095300944545343,-0.10421092130200853,-0.014766807245620754,0.10657011523834951,-0.042158747596814115,-0.06569282506250139,0.17554170516225368,-0.10492042174331499,0.06759293507541503,-0.030130670564624092,0.03318980484755885,0.019257946263466753,-0.031483404964533425,0.02530570148101979,-0.06965224958602634,-0.14266183699461638,-0.1017577588574568,-0.054204739042899214,-0.014088793504302491,0.027165996481027535,-0.019459429675768674,-0.05672810962142946,-0.08590774050667102,-0.08873793259813356,0.03991010824376667,-0.09577007835455441,-0.013750462126532807,0.10310703068064672,-0.09103905912818305,-0.11412068021416405,0.003273337929456858,-0.0974508835150105,-0.045192307977580094,-0.024712309511488985,-0.008273332060096755,0.005322800497598235,-0.09651775430603601,-0.07262700677085553,-0.005269554424280637,-0.015017207914953156,-0.20392749244713015,-0.07423061254721879,-0.07959599064855406,-0.07589229308719438,-0.17233182669307867,-0.008812807620324463,-0.031907695884677977,-0.004076550062350133,-0.15007291223607688,-0.06505187928501475,-0.045508712213730915,-0.06814159993074226,0.12825717522658608,-0.019078737223168673,-0.11766016175908013,-0.06620294417758137,-0.1171238814918981,-0.045568801568966255,-0.030162098930481274,-0.04491494922025859,-0.10306822814841164,0.8434326653017493,7.086836401870507,5.186076602462159,17.212164915284212,34.72712552467286,38.29687096319814,38.42693547932717,38.42693547932717,38.42693547932717,33.80189647842205,20.527904291801356,4.207284800260943,9.066707386359754,0.0,13.273992186620697,2318.9125921012046,2103.8670831614927,477.2122070047508,23.0,26.0,34.0,42.0,49.0,50.0,46.0,42.0,37.0,242.090271548,18.0,4.48863636973214,5.342334251964811,6.2285110035911835,7.104144092987527,7.99260665240021,8.874727765766853,9.763938087586043,10.648396667654662,11.537842442632778,0.6881720430107529,1.025032258064516,1.146304335557438,0.6505622534182374,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6228530423024922,1.0067046173308034,1.038531118577168,0.6091199122801255,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,14.94991774348146,12.331867558483172,0.0,0.0,5.559266895052008,14.345615352810384,4.794537184071822,0.0,0.0,0.0,6.923737199690624,18.18111668623608,12.71084835226122,165.29349800955205,-368.6085488441381,-47.05381419198572,-11.890598349810906,-46.076068605517264,261.82296203510236,583.8716177708079,25.255525561299965,18.834568315187354,25.385722511774258,0.4444444444444444,0.52058408205669,0.17648632895382815,183.12938036304877,0.1479625144441691,59.552436586826,0.4794159179433098,5.0,0.1111111111111111,0.3480151418942971,0.7316105093838358,0.9169496002655116,0.9429946436954604,0.9429946436954604,0.9429946436954604,-1.5142799999999992,,1.5357142857142858,1.799906933457422,1.3161701003068016,1.5313282524578438,-6.447834958059396,1.6159730722154224,1.5229999873188609,-2.633621646776986,57.67930000000002,14.94991774348146,0.0,9.551078168738563,0.0,31.78039276884811,6.606881964512918,32.5983797247092,0.0,0.0,3.6109179126442243,0.0,4.948759890378168,2.3978952727983707,6.47543271670409,4.727387818712341,8.087332926473351,6.803505257608338,9.743729514150925,21.33333333333334,1.3872099395313682,0.0,2.159338388133031,0.0,0.0,0.0,0.3843872826908543,1.2178703703703704,31.775999999999993,0.0,22.756874370118418,0.0,0.0,0.0,0.0,0.0,0.0,35.53543440228058,11.24901029325548,0.0,0.0,38.5789476984295,4.736862953800049,6.923737199690624,18.212174285357875,15.785917939756718,0.0,0.0,0.0,20.16742985596536,19.308444311377258,21.16301284502881,123.00470355580453,,91.4834137716256,88.7165723523464,90.72544382427145,91.52017420874432,148.33550644397897,90.50337994715565,91.63067439669678,128.29579990592237,21.16301284502881,123.0047035558045,,90.1283717548189,87.13185248987452,89.58339214991011,90.16900222128153,153.56049178598943,89.07752135402444,90.28685087847424,130.51209674627347,4.7908424133724266,90.68466079147166,,67.74416640950562,65.50437386533682,66.98573242429335,67.77340597550037,110.47262606755498,66.94265627771217,67.86424542408831,97.04776766779469,1.2448831085311065,7.235570797400266,,5.381377280683859,5.2186219030792005,5.336790813192438,5.3835396593379015,8.72561802611641,5.323728232185626,5.390039670393928,7.546811759171904,2.4301269515674297,61.50235177790225,,45.83204302026658,44.46416305461187,45.44014368274201,45.850165236869685,73.55632841396502,45.346747213119905,45.904925432896555,63.93923754974823,31.20784313725491,0.0,1.5730943720080623,0.0,0.0,0.0,18.50208425191064,32.194464675892206,-0.10578388762912572,0.0,5.325515873015873,0.0,-2.172714474678761,0.0,0.0,0.0,0.0,18.88271728068389,222.3500302836494,53.44819528987624,112.36080467311949,140.82519811982965,144.8251981198297,144.8251981198297,144.8251981198297,384.0,106.9811373343162,204.76642976100504,63.79496130946981,104.54999999999998,104.54999999999998,0.8,7.335959874059791,5.169925001442312,3.7725843607193155,4.059539737448527,,4.053651618921632,4.051978371207002,4.048498311133083,4.0536590671306705,4.050502980696249,4.052884015924478,4.053754364791362,4.056534712511167,0.2219167271011362,0.238796455144031,,0.23845009523068422,0.23835166889452952,0.23814695947841666,0.2384505333606277,0.23826488121742642,0.23840494211320462,0.23845613910537425,0.23861968897124508,1.8583885244917104,1.931697853089035,,1.93024636025421,1.9298334996275999,1.9289742760474353,1.9302481976598127,1.9294693172338413,1.9300569814531972,1.9302717064302721,1.930957341135083,166.4499999999998,82.15069055767141,81.27906900659185,,81.32560874484213,81.43827392771391,81.68358960470029,81.32514374992381,81.66182052786925,81.37843293974069,81.31853475896835,81.04403512744574,4.832393562215965,4.781121706270109,,4.78385933793189,4.79048670163023,4.804917035570605,4.783831985289636,4.803636501639367,4.786966643514158,4.783443221115785,4.767296183967396,4.939183501568198,4.92851678067556,,4.929089208728242,4.93047360923548,4.933481371121153,4.9290834910182255,4.933214830703002,4.9297385373645515,4.929002221447595,4.925620901562704,6.5433862433862435,24.91621275825145,18.50208425191064,-0.6434892027798764,0.0,0.0,-0.5805272108843542,1.262333160115898,0.0,203.93867240049804,70.59957373823802,-157.43877852450538,-20.097458549279864,-5.078670274984045,-19.679847315563173,111.82889670283889,249.38117850281307,10.787050674309727,8.044554145252036,10.842659934904916,505.0,26.0,1.412225138403351,0.5917176487680227,0.0,0.0,0.44878422347333935,0.0966229031538001,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.05555555555555555,0.27537753772002593,0.1051115401751122,0.5010224357519736,0.12921325885212906,12.576985790260121,9.290000297023063,8.024075805453151,5.2908373835829305,7.44420679010937,4.093467597493249,6.304474323468631,2.840228194739678,4.850531173114935,1.8502710045785473,3.5662474623961424,1.1405119246893158,2.366855246676315,0.6097984181273399,1.4111166233212904,0.31716393288556427,3.4424127629673404,1.1197353858258272,4.748547091375584,1.295085008310031,6.832559089888939,1.4925270772241472,59.39719294203161,28.506936014625765,21.717135921562768,21.335949300867686,21.335949300867686,21.335949300867686,88.0,104.0,32.24510199999998,19.796898,0.3548387096774194,52.07,7.027777777777779,3.7777777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,31.0,0.0,0.0,32.0,6.0,2.0,3.0,29.0,8.0,18.0,24.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,6.0,3.0,2.0,17.0,7.0,0.0,2.0,5.0,0.0,2.0,2.0,0.0,0.0,0.0,1.0,1.0,3.1780538303479458,5.229101255859354,3.7954891891721947,4.307437777682809,4.788532867290456,5.248667457904216,5.445389480910951,5.281298361378442,5.388500790606016,5.4785534168509695 +135398740,Nc1nc2c(ncn2COC(CO)CO)c(=O)[nH]1,0,27.032258064516128,6.944983870967743,3.3225806451612905,10.193548387096774,172.3575528511367,106.98187645161289,1.2742865730011939,6.934996774193548,6.907706093189964,8.374829677419356,203.1572505584485,27.78125,7.0363125,4.0,8.8125,159.33592672029368,105.99140796874994,1.5125189797499996,7.1084375,4.072048611111111,8.398708125,242.51992642543533,24.358490566037737,7.042745283018867,3.660377358490566,7.943396226415095,166.83406853292536,91.47694584905662,1.3323480837999253,7.069315094339625,4.0927672955974845,8.451634415094338,208.09382550803556,21.53125,6.8943562499999995,3.015625,6.859375,167.9138290249085,79.63537015624995,1.1807892845436248,6.913539062499999,4.363715277777778,8.361084749999998,181.06278224006542,18.924242424242426,6.783451515151516,2.6515151515151514,5.651515151515151,171.4877904855733,68.816056030303,1.0639075521240604,6.785110606060604,4.569023569023568,8.284699393939393,157.65130117196355,15.741379310344827,6.54658448275862,2.586206896551724,3.7586206896551726,172.01341618516273,55.36336689655172,1.045069675210138,6.558125862068964,3.5225095785440614,8.10040206896552,148.81875828554448,17.176470588235293,6.588509803921569,2.5686274509803924,4.470588235294118,169.51554598412244,61.00427825490198,1.104613618940059,6.6117411764705905,3.9319172113289764,8.097940941176471,157.61492236821957,15.916666666666666,6.566499999999999,2.375,4.395833333333333,173.8232540049195,56.52640902083335,0.9872674226705832,6.566341666666669,4.079861111111112,8.122357916666665,141.42244284300813,18.3125,6.643875,2.53125,4.125,165.81727371437964,65.1938075625,1.1151544883030624,6.6858125000000035,4.020833333333334,8.13739375,164.3116474590925,8.347554630593132,0.21012174817898005,0.04316086676365735,0.6160249739854315,4.799167533818938,1.4524029038991315,39.19374455150884,0.18149899443357534,0.19008511966701358,2.578621805989132,0.1331147804370447,41.1881632178263,-0.2719497918834541,-0.05698011511446415,-0.026972971265605234,0.22873309053069701,0.634300208116545,-0.7194953201297287,-1.058065762194333,-0.019614564986294044,-0.045176551118626576,-0.5608126662041854,-0.03932930866285114,0.33791824974207146,-0.1826124516521701,-0.014450719572772133,0.006099944347277498,0.03461410087762348,0.059627353582156574,0.34733231362748795,-0.7138225028174298,0.022796942671774584,-0.014088528066283267,-0.2736748931602956,-0.012873641057860303,2.7828439687518873,0.029461498439126266,-0.002271798582206061,-0.005800204858195616,-0.010178199791883476,0.31423972424557745,-0.27648627158997585,0.12749753014437903,-0.013460467421872778,-0.0010609261186264969,-0.025320394698809083,-0.001234312695109248,-1.7298156934566185,0.34306120518399386,0.02465454703118594,0.007246196631520397,-0.026093400182890296,0.24237694320940936,0.020158873807734266,1.5043158600258575,-0.007945068510702528,0.020790540157033396,0.3338361064687808,0.014741954655819374,-1.6347588716634576,-0.6762531845419641,-0.02949360579855749,-0.005251210214340606,-0.06819405073737848,-0.8581219275897948,0.06207284122568799,-3.0286388295956073,0.016400728459625872,-0.026785564605834374,-0.45305018319837664,-0.019089823818579793,1.3645815079577033,-0.9231397033319051,0.0020528248760482695,0.000754588801863433,-0.04739752300503968,-0.4272510252800392,-0.07454164189620477,-4.524170091673296,-0.033368333999338244,0.00044612637979234257,-0.04118066465804734,0.005934563016465671,-7.457233256488476,0.4709937565036417,0.007648413111342375,0.002839159313678928,-0.12812174817898023,-0.37107613596947614,0.19644482091203497,2.235329691098682,0.016041624244425182,0.007084033558792983,0.0719158284194704,0.0035218620360735198,3.7121892517223856,-1.9060223725286158,-0.04311267559833503,-0.014629602004683691,-0.46884755463059313,-1.8031997918834546,-0.7330834154133133,-9.174136013202395,-0.11234416936408544,-0.036034212408948996,-0.5470077826916409,-0.0280934336628512,-18.17266575273932,,,0.4351851851851851,1.2083333333333333,0.4722222222222222,0.05555555555555555,0.7361111111111112,-0.2638888888888889,0.6641619270943159,0.014600919832339897,0.024156475387895452,0.8657782984552689,0.2557922781793798,0.22484088878678563,1.5299402255495849,0.4806331669661654,2.0008121098027476,1.0383707615146787,0.5609287300637387,0.4015126182243301,0.0,0.9624413482880689,8.228927545032258,838.0,215.29450000000003,103.0,316.0,5343.084138385238,3316.4381699999994,39.50288376303701,214.9849,214.13888888888889,259.61972000000003,6297.874767311904,889.0,225.162,128.0,282.0,5098.749655049398,3391.725054999998,48.40060735199999,227.47,130.30555555555554,268.75866,7760.6376456139305,1291.0,373.2655,194.0,421.0,8842.205632245044,4848.278130000001,70.61444844139604,374.6737000000001,216.91666666666666,447.93662399999994,11028.972751925885,1378.0,441.23879999999997,193.0,439.0,10746.485057594144,5096.663689999997,75.57051421079198,442.46649999999994,279.27777777777777,535.1094239999999,11588.018063364187,1249.0,447.7078,175.0,373.0,11318.194172047837,4541.859697999998,70.21789844018798,447.8172999999999,301.5555555555555,546.7901599999999,10404.985877349594,913.0,379.70189999999997,150.0,218.0,9976.778138739439,3211.0752799999996,60.614041162188,380.3712999999999,204.30555555555557,469.82332000000014,8631.48798056158,876.0,336.014,131.0,228.0,8645.292845190244,3111.2181910000013,56.335294565943016,337.1988000000001,200.5277777777778,412.99498800000003,8038.3610407791975,764.0,315.19199999999995,114.0,211.0,8343.516192236137,2713.267633000001,47.388836288187996,315.1844000000001,195.83333333333337,389.87317999999993,6788.27725646439,586.0,212.604,81.0,132.0,5306.152758860148,2086.201842,35.684943625698,213.9460000000001,128.66666666666669,260.3966,5257.97271869096,258.7741935483871,6.5137741935483815,1.3379868696733779,19.096774193548377,148.77419354838707,45.024490020873074,1215.006081096774,5.626468827440836,5.892638709677421,79.93727598566309,4.1265581935483855,1276.8330597526153,-8.70239334027053,-1.8233636836628528,-0.8631350804993675,7.3194588969823045,20.29760665972944,-23.02385024415132,-33.85810439021866,-0.6276660795614094,-1.4456496357960504,-17.94600531853393,-1.2585378772112366,10.813383991746287,-9.678459937565016,-0.7658881373569231,0.3232970504057074,1.8345473465140447,3.1602497398542986,18.40861262225686,-37.83259264932378,1.208237961604053,-0.7466919875130131,-14.504769337495665,-0.6823029760665961,147.49073034385003,1.885535900104081,-0.1453951092611879,-0.3712131109245194,-0.6514047866805425,20.111342351716957,-17.695121381758455,8.159841929240258,-0.8614699149998578,-0.0678992715920958,-1.6205052607237813,-0.07899601248699187,-110.70820438122358,22.642039542143593,1.6272001040582722,0.4782489776803462,-1.7221644120707595,15.996878251821018,1.3304856713104616,99.28484676170659,-0.5243745217063669,1.3721756503642042,22.033183026939533,0.9729690072840788,-107.8940855297882,-39.22268470343392,-1.7106291363163344,-0.30457019243175515,-3.955254942767952,-49.7710718002081,3.6002247910899037,-175.66105211654522,0.9512422506583006,-1.5535627471383937,-26.276910625505845,-1.107209781477628,79.14572746154678,-47.08012486992716,0.10469406867846175,0.038484028895035084,-2.4172736732570237,-21.789802289282,-3.801623736706443,-230.7326746753381,-1.7017850339662504,0.02275244536940947,-2.100213897560414,0.30266271383974924,-380.3188960809123,22.607700312174803,0.367123829344434,0.13627964705658854,-6.1498439125910505,-17.811654526534856,9.429351403777678,107.29582517273673,0.7699979637324087,0.3400336108220632,3.451959764134579,0.16904937773152895,178.1850840826745,-60.99271592091571,-1.379605619146721,-0.4681472641498781,-15.00312174817898,-57.70239334027055,-23.458669293226027,-293.5723524224766,-3.595013419650734,-1.1530947970863679,-17.504249046132507,-0.8989898772112384,-581.5253040876582,0.7289419924794521,0.5225519838642243,0.45533668449426196,0.2733253433836606,0.2876489046163599,0.13925621208538155,0.18547733734216654,0.06910879756316254,0.11938222560367429,0.03288644235196599,0.0720724689460027,0.016731659133205547,0.05011624999555683,0.008519155574345707,0.031913444874676115,0.004455903415216322,8.022610873113022,5.758957199034653,3.545995941128198,2.2410173618669598,0.5032953137242113,-0.40892388547635455,3.2695140784329624,0.9777171876231834,6.022192433824639,1.9772072983961462,14.565409083291222,11.036109042385126,16.010734565197087,11.783643403259584,1.9394791793763815,0.748732870601763,3.491908904179326,2.285772198720205,7.008280977873294,1.2487962575996687,3.704455877924796,2.479221496856027,20.800220307201165,14.702325260040727,0.35774777279788833,0.7560708273307217,0.8459602698059283,0.8459602698059283,0.8459602698059283,0.8459602698059283,1.8660883853866523,588.1457870436972,0.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,3.104667155588768,1.0453668373086034,0.5806451612903221,0.5806451612903221,0.5806451612903221,0.5806451612903221,66.14317162051145,1257.4891329831112,94.43304091886219,40.564165580100365,92.40110841249226,,9.0,271.0,11.66323328280031,4.794537184071822,37.056797895895805,0.0,0.0,10.894419722555895,0.0,0.0,14.951935562841626,20.683585220643646,7.833333333333332,21.75,8.5,1.0,13.25,0.0,0.06481481481481488,-4.75,0.2572373862696442,0.023981753014011065,-0.23325563325563314,0.14814814814814803,0.2706037735849056,0.0,0.695698924731183,0.9814814814814814,0.4384615384615388,0.6717171717171719,0.8333333333333334,11.954914687697686,0.26281655698211814,0.43481655698211813,15.58400937219484,4.604261007228836,4.047135998162141,27.538924059892526,8.651397005390978,0.44339622641509435,0.17872340425531916,0.0,0.37021276595744684,0.4444444444444444,0.4268590042341382,-1.1871197655467125,-0.13748445484468383,-0.03829418598537783,-0.13190219617185697,0.5731409957658617,1.5939385084297706,0.07136330605893958,0.051417371239670016,0.07245175038317139,-0.5961160611302603,0.7897812266267764,1.0520758275267799,1.6423365938134162,0.7854729729729734,0.6206973655680834,1.8878790541603487,0.7886808971595806,1.3052492552000754,0.9970199115298582,0.9621801787916151,1.0975385933199475,0.9874248820249646,0.890264038046316,0.9963747874138342,0.8695057921293478,1.1559790922998474,0.9340481762097238,0.9565203965459649,0.8872947920110047,0.9318300932143099,0.9863569734002994,0.8626063581162108,1.040989688457066,0.8833903676082494,0.9229209517576665,0.9835635604079697,1.0666221658881616,0.9695682010135139,0.9184430561578493,1.2470486885014707,0.9228946505716606,1.0922788288849103,0.9702081222306889,0.8622483115682097,1.0017765850153466,1.0040114130336677,0.9406235126130414,0.8826505483304727,0.7667068320457656,0.9520884520884526,0.9639379484349131,0.9315930465726387,0.9424744658389246,0.9952753731288625,0.8900280323907284,0.8020808918690321,0.8932163120034943,0.9977589186486452,1.0723635003739718,1.089051599903892,1.0460822847446098,1.17820945945946,1.1542602506205704,0.8617209148346617,1.0693410706618554,0.8646831999330938,1.0960124132177351,1.1674922403163397,1.0816132453864702,0.9540810647580443,1.0411075424934373,0.849570709741057,0.8305771000460898,0.908684419713832,0.9963777358298048,1.0705720588770562,1.0488253206903573,1.1863362717648578,0.8607748657299428,0.8216204988889401,0.7943851308611862,1.1776997922622428,0.9673008601346299,0.9496510496367504,0.8183378871135397,1.1454814189189193,1.1174653078924548,0.7158865074013756,0.9664702715952668,0.8287992438719723,0.9574604906175989,0.8622211635466875,0.9463706960695762,0.8880267119988577,1.1194605459985043,1.0579264102868862,1.3835140269151405,1.8900443412162171,1.2413947311361668,1.5881768203238493,1.1280009639028619,1.6702264010824988,1.04023060414908,1.279160478085416,1.0632547256596814,1.4386780698699917,4.0,0.0,2.222222222222223,1.3194444444444444,1.0094444444444446,0.44805555555555554,0.25315192743764164,0.2726048752834467,0.164273116654069,0.03125,3454.756388205812,3824.2753074589996,1836.9865369408353,1686.0482959281146,10.354687199755018,0.44492571682029874,5.747620574954045,0.8015606744949076,0.0,0.4444444444444444,1.8495291547981068,3.9088294730782716,4.373551149096553,4.373551149096553,4.373551149096553,4.373551149096553,0.21052631578947367,0.0,0.0854700854700855,0.05074786324786325,0.045883838383838395,0.02800347222222222,0.016876795162509447,0.02096960579103436,0.0164273116654069,0.005208333333333333,0.4801136210657671,14.409972299168976,6.437869822485207,3.3217993079584773,100.85433749022316,1.0,3.8065227346254478,72.7708852828291,,52.26703690954664,50.362235515472406,51.76311818767374,52.292370027347545,97.87909812600938,51.59345122209943,52.36827465305352,78.08101963482622,-0.03257837820992264,-0.27117666594858586,-0.6249404446232583,0.3713048986486486,0.1321687987857762,-0.495382733123272,-0.026995781451905204,-0.10806982731506287,-0.23766484824149173,-0.2174854276426409,-0.2954541076034118,0.008204256352849935,-0.021876161311111378,-0.06877307893166358,0.14133044131573883,0.0561894441611422,0.01242452011978588,0.23914322444208636,-0.018212664061207945,0.12560368581059972,-0.07411694345650624,-0.10613223409677822,-0.09671083117587204,0.06756416774485996,0.0035293567688856075,-0.010811820298920036,-0.1343857362725521,-0.0165223817567568,0.06547796509106678,-0.19036471962960058,0.003253007121501759,-0.07416276582622618,-0.005581321254840996,-0.009819351810335152,-0.009272544273872004,-0.041997883816968846,0.04109720994537748,0.11733457980839467,0.16788811659412492,-0.04235769860769863,0.05050395542589819,0.013879670547074511,0.03838152943128129,-0.043774724678214395,0.10937489580170058,0.12946299674244974,0.1107461891716182,-0.03969001635294898,-0.08101213043440883,-0.14036436520333473,-0.12166600460309271,-0.1107001397949675,-0.178806412058498,0.04273803161577741,-0.07727352576928029,0.09036264091054332,-0.14091352680713076,-0.1756946994499612,-0.1434087466162943,0.03313042877734131,-0.1105880397534232,0.009769692541771971,0.01748317071562654,-0.07694091149973506,-0.08902607009846439,-0.05132297773303106,-0.1154309225475403,-0.1838485888226247,0.0023469821339716424,-0.01597002885898224,0.04458229955367251,-0.18105282377003337,0.05642296185489899,0.036399911849331834,0.0657808687954705,-0.20798141891891903,-0.0773209381324082,0.13525504554187945,0.05703281777940323,0.08838409432783974,0.03726769129115745,0.027889250084071265,0.026457332720757853,0.09012757456772785,-0.22833302169035152,-0.20517950175063265,-0.3389552412094333,-0.7610853040540545,-0.3757317866435386,-0.5047383294575302,-0.2340714345664433,-0.618979569086268,-0.18956882302030187,-0.21213183779845315,-0.2110466889598162,-0.44121088033549793,1.9309787692112594,5.701224454638313,3.7691691356845607,18.797252327819802,37.22024897267949,38.52733358339625,38.52733358339625,38.52733358339625,38.52733358339625,36.01461797644946,18.690673707264217,10.096717141147296,7.227227128037942,0.0,17.32394426918524,2969.2352873354116,2535.5780588947387,605.3021918055729,31.0,26.0,34.0,43.0,49.0,53.0,52.0,55.0,44.0,255.096753896,19.0,4.51085950651685,5.351858133476067,6.22455842927536,7.089243155027514,7.972121128921655,8.84779106484485,9.736310733068626,10.61837176273886,11.510432359764517,0.7204301075268819,1.038064516129032,1.1609876863992334,0.6854845423952771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6259669499710261,1.0184693232131563,1.0454620210041585,0.6184159668555443,1.0,2.0,1.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,3.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,20.683585220643646,12.834783135247786,11.16387793838399,5.948339280986494,5.559266895052007,14.345615352810384,4.9839785209472085,4.9839785209472085,0.0,0.0,0.0,0.0,19.541084003790377,193.00946124114176,-536.7705591404206,-62.1652590091534,-17.315179327110343,-59.64117323782451,259.1526328616532,720.7185738426906,32.267781909708795,23.24898625299002,32.75993517466775,0.4444444444444444,0.5028871291362885,0.14152212873097647,238.1477121751399,0.10067596741833625,88.69689051355185,0.49711287086371153,5.0,0.2631578947368421,0.373325770502961,0.7889936587460398,0.8827973045652324,0.8827973045652324,0.8827973045652324,0.8827973045652324,-1.970899999999999,,1.7142857142857144,2.0711959050721265,1.8187846708014441,1.7095632088057127,-6.920086148265698,1.8408047735618118,1.695294166436178,-3.1926010534492466,61.60570000000001,14.94991774348146,0.0,19.51903521063298,0.0,12.834783135247786,18.94743140618802,16.68112415388837,0.0,0.0,3.6635616461296463,0.0,4.962844630259907,2.3978952727983707,6.459904454377535,4.727387818712341,8.052933036797567,6.842683282238422,9.70069794710231,22.33333333333334,1.3731698790627362,7.828791572184429,2.3281605095742,0.0,0.0,0.433543083900227,-0.018410756277819296,1.4575925925925926,32.17999999999999,0.0,11.49114307760141,0.0,0.0,0.0,0.0,0.0,0.0,35.99061827837624,11.29293437221419,5.948339280986494,0.0,49.04982031708853,11.467679701299534,0.0,0.0,11.121857258836364,0.0,11.16387793838399,0.0,21.250020814253592,19.40497544910181,22.531119151455055,145.54177056565823,,104.34359762861709,100.49433815260346,103.32414918970288,104.39478858705002,196.99964365027384,102.98236858046978,104.54818328761414,156.66875190397963,22.531119151455055,145.54177056565823,,102.8217787005128,98.67415810378562,101.75949199169881,102.87706928702812,202.67828240028456,101.35439143033429,103.04255258829886,159.35464032310168,4.787730605002169,109.02364481815418,,78.95672647802698,75.94496261056636,78.54599658286588,78.99785110815658,153.4986905040406,77.90765202268005,79.11522498411091,120.53975513734076,1.251728841747503,8.085653920314346,,5.796866534923172,5.583018786255748,5.740230510539049,5.799710477058334,10.944424647237435,5.721242698914988,5.808232404867452,8.703819550221091,2.4506090541348255,72.7708852828291,,52.26703690954664,50.362235515472406,51.76311818767374,52.292370027347545,97.87909812600938,51.59345122209943,52.36827465305352,78.08101963482622,31.572549019607848,0.0,0.0,0.0,0.0,5.432488032249936,17.71130374989502,32.40932265112892,-0.6143442932728647,0.0,5.202571806500378,0.0,-0.6927836829176119,0.0,0.0,0.0,0.0,19.170894972521875,227.3864974076069,57.33540379874131,121.17371366542642,135.58008562199313,135.58008562199313,135.58008562199313,135.58008562199313,424.0,108.8615462736343,224.7755966951881,64.80790808841611,139.28,139.28,0.8,8.107970642334926,5.247927513443585,3.505501988768373,4.17746654627224,,4.1635305762655035,4.1624023250021684,4.1580622953069915,4.163530258731646,4.161019445397523,4.162927310131703,4.163607916438149,4.165744878373986,0.19475011048713184,0.2320814747929022,,0.2313072542369724,0.23124457361123157,0.23100346085038842,0.23130723659620253,0.23116774696652906,0.2312737394517613,0.23131155091323052,0.231430271020777,1.842120395894863,2.0174916382837953,,2.0141500754539634,2.0138790544684184,2.012835836262024,2.014149999188432,2.013546768143031,2.0140051720285004,2.014168650904033,2.0146817668772345,172.1299999999998,192.99582168960552,87.83556021791149,,88.57489278759397,88.64028452528926,88.8607488146585,88.57484859652556,88.62589702851577,88.60893362513356,88.57048584357607,88.40051028386807,10.721990093866973,4.879753345439528,,4.920827377088553,4.924460251404959,4.936708267481028,4.9208249220291975,4.923660946028654,4.9227185347296425,4.920582546865337,4.911139460214893,5.850455204296001,5.063253097418641,,5.07163510523908,5.072373097793157,5.074857189278028,5.071634606327052,5.072210771322547,5.072019348413501,5.071585350127738,5.069664406971003,6.660164399092971,21.64809515936004,17.71130374989502,5.432805545057528,-0.018410756277819296,0.0,0.6803861961451243,-0.6143442932728647,0.0,197.3062830705679,87.27156217644689,-242.70730007366075,-28.108773694021444,-7.829267744311637,-26.967477785962302,117.17899716697792,325.88161960749085,14.590267840346215,10.512310309919059,14.812800891249584,632.0,26.0,1.1673337338648355,0.4306206812975535,0.0,0.0,0.21982198216447035,0.04300364102538306,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.24719387459906544,0.061731540599665534,0.49138527681617994,0.07996178786074322,13.120955864630139,9.405935709556037,8.651397005390978,5.193181524289551,7.478871520025358,3.62066151421992,6.306229469633663,2.3496991171475266,5.133435700957994,1.4141170211345377,3.5315509783541317,0.8198512975270719,2.656161249764512,0.45151524544032245,1.6594991334831581,0.23170697759124875,2.7236651132684857,0.7613371412832985,4.336869276867754,0.8770495995622396,5.946437208666412,0.9417873712625375,61.865315667049344,28.38139717613293,25.540494705472174,25.540494705472174,25.540494705472174,25.540494705472174,90.0,105.0,32.40630899999998,19.635691,0.2903225806451613,55.09,6.666666666666667,4.166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,31.0,0.0,0.0,32.0,10.0,1.0,4.0,28.0,11.0,19.0,21.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,8.0,4.0,2.0,18.0,9.0,0.0,5.0,4.0,0.0,2.0,5.0,0.0,0.0,0.0,2.0,2.0,3.258096538021482,6.042326596178886,3.8969093676180977,4.5339426766997235,5.1772084939220715,5.643235974788167,6.022046793898045,6.257293355989224,6.575702169867765,6.415665792854217 +5073,Cc1nc2n(c(=O)c1CCN1CCC(c3noc4cc(F)ccc34)CC1)CCCC2,0,22.105263157894736,6.200694736842105,3.3859649122807016,7.473684210526316,165.41164170894254,87.77487777455738,1.4488755338758421,6.25809649122807,4.223684210526316,7.69018196491228,213.39003670819815,24.62295081967213,6.349508196721311,4.131147540983607,7.131147540983607,147.06088384234928,93.56059675139676,1.7976502683606563,6.490837704918034,2.866120218579235,7.740755081967209,262.12427489497736,20.05263157894737,6.210279824561401,3.6578947368421053,5.368421052631579,155.9499846224407,74.62034407605616,1.5164538228336584,6.315313157894734,2.6764132553606235,7.672336175438595,215.0323480792587,16.30128205128205,6.092557692307693,3.0705128205128207,3.717948717948718,161.4247126482133,58.79605522770256,1.3164986672988523,6.174798076923075,2.563212250712251,7.616081923076924,180.6739769337531,14.620481927710843,6.112457831325303,2.753012048192771,3.0,162.99570617510673,51.149855675045806,1.2154431105278372,6.17976686746988,2.767235609103079,7.658466168674699,162.36789601411576,12.880503144654089,6.042784276729561,2.5660377358490565,2.4842767295597485,165.34015087156203,44.030810745016346,1.1505041060915975,6.098283647798743,2.5847309573724666,7.625767295597483,149.89372506326586,12.602836879432624,5.827390070921987,2.6099290780141846,2.1843971631205674,160.40101825960264,43.16802791372483,1.2012114953983544,5.9099156028368816,2.1392828999211972,7.4154775886524815,153.15183238674229,11.886524822695035,5.880262411347518,2.425531914893617,1.9432624113475176,165.78702394294865,40.38857846167376,1.103150973682709,5.943060283687944,2.28053585500394,7.47433069503546,140.68737731971527,11.390625,5.9776484375,2.4296875,1.9921875,170.0450436742489,38.28265011228749,1.055466859330172,6.0218124999999985,2.3782552083333335,7.57958984375,135.70796768528737,7.47799322868575,0.14391468144044314,0.011888741020280862,0.608187134502924,4.144659895352416,1.8678564461829132,35.91127849148018,0.22826105532954447,0.13290569405971062,1.552084402038234,0.08168240320098491,49.827465938080074,0.6284203462351594,0.012265818990963219,-0.004480728455239019,0.21493624772313297,1.6663841080988344,-0.27147727016702683,2.90584457094483,-0.010672405948646557,0.012233420119179264,0.06258181724403362,0.005950498725963604,-0.1074168642868199,0.5607879347491534,0.006916020313942774,0.0006622023177898278,0.0029239766081870866,0.6149584487534627,-0.1197588689467504,2.660180869045981,-0.003974383524629569,0.0077604032009849664,0.12190503060770838,0.002765757463835028,1.2761672765944483,0.06238014063498815,-0.009682090347325787,-0.0014399051876911539,-0.08119658119658119,-0.1810971423159789,-0.06872037980208301,0.2914208582143084,-0.0031399057090200676,-0.007147034590524882,-0.009218155224618739,-0.006254062670170703,0.7537807064675092,-0.8188302610256352,-0.0030394753529352685,0.00012601806309244423,-0.09170013386880857,-0.6284899524228029,-0.12563089804530175,-3.920693035745698,-0.02692435672097948,-0.004003654321811691,0.00033874082561907915,-0.0002072765892749159,-6.314295946229958,-0.8517105408340447,-0.007266783393438908,0.000758350461601955,-0.04402515723270439,-0.6243023978350378,0.2555580642797295,-3.917756502400333,0.008483176164568723,-0.009285380697689265,-0.13033295843971987,-0.0033838318669895486,-1.7582835932144283,-0.4640576805956662,0.0028712834718374386,0.00024334618162560716,-0.061465721040189124,-0.28376652718021267,-0.30290970286493146,-2.241897111492053,-0.031902276853922225,0.0017669449847088168,-0.03273293037246593,0.0015678921828647652,-6.459218062767634,-0.25813507265738067,-0.0076153906603014035,-0.00011543366218639016,0.01418439716312058,-0.3178588501863093,-0.18800092888989814,-1.1874089886609904,-0.015180725750767942,-0.006161386482256463,-0.10400399613774591,-0.004879534966569096,-2.354361409955508,-0.4552410357032931,-0.026075289993074794,-0.0009771772566968342,0.03819444444444445,-0.5088320444752231,0.2004368917229002,-2.0762146287407166,0.02782052326282599,-0.023377843182517722,-0.22397082382185962,-0.014259759560634036,3.764820773994762,,,0.4684126984126984,1.1583333333333334,0.48333333333333334,0.03333333333333333,0.675,-0.19166666666666668,1.010549352667661,0.010561892468302502,0.024895225801635834,0.7945271829409604,0.20648422170013217,0.2800943379106685,1.8050765356086214,0.4865785596108007,2.084660754739795,1.610802872813314,0.28616398275100086,0.12862234553201696,0.05907155364346333,0.47385788192648115,7.196698321473697,1260.0,353.4396,193.0,426.0,9428.463577409724,5003.168033149771,82.585905430923,356.7115,240.75000000000003,438.34037199999995,12163.232092367294,1502.0,387.32,252.0,435.0,8970.713914383306,5707.196401835202,109.65666637000004,395.94110000000006,174.83333333333334,472.18605999999977,15989.580768593618,2286.0,707.9718999999998,417.0,612.0,17778.29824695824,8506.719224670402,172.87573580303706,719.9456999999998,305.1111111111111,874.6463239999998,24513.68768103549,2543.0,950.4390000000002,479.0,580.0,25182.255173121277,9172.184615521599,205.37379209862098,963.2684999999997,399.86111111111114,1188.10878,28185.140401665485,2427.0,1014.6680000000002,457.0,498.0,27057.287225067717,8490.876042057604,201.76355634762098,1025.8413,459.36111111111114,1271.305384,26953.070738343216,2048.0,960.8027000000002,408.0,395.0,26289.08398857836,7000.898908457599,182.930152868564,969.6271000000002,410.9722222222222,1212.4969999999998,23833.10228505927,1777.0,821.6620000000001,368.0,308.0,22616.543574603973,6086.691935835201,169.37082085116796,833.2981000000003,301.6388888888888,1045.58234,21594.40836653066,1676.0,829.1170000000001,342.0,274.0,23375.97037595576,5694.789563096,155.54428728926197,837.9715000000001,321.55555555555554,1053.880628,19836.92020207985,1458.0,765.139,311.0,255.0,21765.765590303858,4900.179214372799,135.099757994262,770.7919999999998,304.4166666666667,970.1875,17370.619863716784,426.2456140350877,8.203136842105259,0.6776582381560091,34.66666666666667,236.24561403508773,106.46781743242606,2046.9428740143705,13.010880153784035,7.575624561403505,88.46881091617934,4.65589698245614,2840.165558470564,38.33364112034472,0.7482149584487564,-0.27332443576958015,13.11111111111111,101.6494305940289,-16.560113480188637,177.25651882763464,-0.6510167628674399,0.7462386272699351,3.817490851886051,0.3629804222837798,-6.552428721496014,63.92982456140349,0.7884263157894762,0.07549106422804037,0.3333333333333279,70.10526315789475,-13.652511059929546,303.2606190712418,-0.4530797218077708,0.8846859649122861,13.897173489278755,0.31529635087719315,145.48306953176711,9.731301939058152,-1.5104060941828228,-0.22462520927982,-12.666666666666664,-28.251154201292707,-10.72037924912495,45.46165388143211,-0.48982529060713054,-1.1149373961218816,-1.4380322150405234,-0.9756337765466296,117.58979020893143,-135.92582333025544,-0.5045529085872545,0.020918998473345742,-15.222222222222223,-104.32933210218529,-20.85472907552009,-650.8350439337859,-4.469443215682594,-0.6646066174207407,0.05623097705276714,-0.03440791381963604,-1048.173127074173,-135.4219759926131,-1.1554185595567863,0.12057772339471085,-6.999999999999998,-99.26408125577102,40.63373222047699,-622.923283881653,1.348825010166427,-1.4763755309325932,-20.72294039191546,-0.5380292668513382,-279.5670913210941,-65.43213296398893,0.40485096952907884,0.03431181160921061,-8.666666666666666,-40.01108033240999,-42.710268103955336,-316.1074927203795,-4.4982210364030335,0.24913924284394318,-4.615343182517696,0.2210727977839319,-910.7497468502363,-36.39704524469067,-1.0737700831024979,-0.01627614636828101,2.0000000000000018,-44.81809787626962,-26.508130973475637,-167.42466740119966,-2.14048233085828,-0.8687554939981612,-14.664563455422174,-0.6880144302862425,-331.96495880372663,-58.27085257002152,-3.3376371191135736,-0.12507868885719478,4.888888888888889,-65.13050169282856,25.655922140531224,-265.7554724788117,3.5610269776417267,-2.9923639273622684,-28.66826544919803,-1.8252492237611566,481.8970590713295,0.6888187153356881,0.5787928108186922,0.42933402318600067,0.322443003942425,0.2731809813316884,0.17510413265745833,0.17431337180306594,0.09845211341458904,0.11223598459640133,0.05432782339989521,0.07129128977974798,0.03164467311077713,0.04711970940043812,0.017606166252969294,0.030545619422382,0.01043599279267631,9.004069880801264,5.6803359269806455,4.107722410925389,2.178527361604119,0.4432384530234508,-0.46170399687088753,3.2816268179893755,0.9778788374387563,7.004060479474175,0.9959474141533653,17.424773019215095,10.941721809771876,19.00014245147839,11.692691821722978,2.0021059052737,0.5458590141583843,3.9886754225881607,2.2281081443355943,8.001919925997552,1.2229808112056493,4.009958050132912,2.4239767389928404,20.904398776014794,13.304119452303834,0.2595234495276579,0.5617696477286497,0.7578560062798096,0.8522544714772962,0.8522544714772962,0.8522544714772962,1.0845696628237356,1128.1689101168888,0.0,2.0,5.0,0.0,7.0,6.0,2.0,1.0,0.0,4.2530506587320165,2.4131381582742932,1.2194697369180165,0.644822587757254,0.644822587757254,0.644822587757254,264.0317376587566,1313.836094486211,53.73456443494383,23.04975604361774,46.134277429377924,,17.0,887.0,0.0,9.184952231746642,11.376487736097904,11.500926187803636,92.86589155506502,12.13273413692322,6.06636706846161,11.49083684748198,10.056572987975922,9.507073457920557,14.052380952380952,34.75,14.5,1.0,20.25,0.0,0.031587301587301594,-5.75,0.138704484789209,0.03508257824047334,-0.10362190654873565,0.0,0.1574175782723498,0.0,0.5850459482038428,0.8415873015873012,0.4463414634146338,0.5499633699633695,0.8415873015873012,30.316480580029832,0.3168567740490751,0.746856774049075,23.83581548822881,6.194526651003965,8.402830137320056,54.15229606825864,14.59735678832402,0.5565824217276502,0.0796340223652999,0.0,0.3771602846492714,0.5217391304347826,0.2990279375702975,-0.5980844423412857,-0.04990384611128636,-0.010492709514759396,-0.03518143778478151,0.7009720624297026,1.4020110912096018,0.031898033723399125,0.024596685810694775,0.035050277280240044,-6.306074397168239,0.7559714342777871,0.5651016978752925,1.4064532160913075,0.7282471626733921,0.3924784460194832,1.2675271508791996,0.7600192814539145,1.1618212596637918,0.5609232912550541,0.4701316203679706,0.5796700843878122,1.0382744241487594,0.8268850839644387,0.6952081659818623,1.071538293150242,1.1761133603238865,0.7599881182236744,1.0962285416298432,0.826944081464343,1.0432293702283482,0.6916893656617046,0.47605460013881384,0.6860924094721333,0.9730118418727293,0.9419752539196069,0.9297840936527293,1.2044772135641502,1.2167159763313606,1.005906613807995,1.0267911502335998,0.9414926170499157,0.9985830111150154,0.9217014446754059,0.7708947565120928,0.916286904966464,0.9676682939868284,1.0862564515553157,0.9562686275541097,1.0763441240310392,1.1288229842446709,1.1502221570076534,0.9772270216491786,1.080725675815857,1.0759038027937038,0.9690814969586259,0.9581727852258884,0.9574973166863608,1.0910878815564709,1.1125955976913662,1.0094478676995395,0.9798958925702718,1.0362844702467342,1.1576268954095428,0.6948272664207228,1.1001768509215533,0.9040594480512993,1.036230148736856,1.105855066053014,1.0428318438993431,0.9963500719115446,0.9918697763050043,0.6342424130071311,0.8431797383529249,1.048281505728314,0.8994125472822015,0.9713333970127248,0.9903401420155429,1.1426910836678736,0.671645767153765,0.5624720033997922,0.6272494319769162,1.150631317627791,1.0095734172160378,0.8786004148596438,0.9006738694477289,0.8764320785597378,0.9801075047953711,0.9722151964099526,1.0070170183648972,1.0156818619273296,0.8906887279806314,0.919620837838769,0.8512388630664991,1.0305496023673277,1.0941461557458019,1.3051954491414068,1.0932327681124945,0.8897235576923075,1.154651065646814,0.8760485437489216,1.0919139114121326,0.8073536417051436,1.2948008339767483,1.3122758733708644,1.2787849790136732,0.8800252596039424,5.5,0.1815120906029997,4.000000000000002,2.3194444444444446,1.9383333333333335,0.9761111111111112,0.5697505668934241,0.40019132653061223,0.195019211388259,0.158125,6028.148227406402,6818.168216854276,2995.886344376087,2731.511556392499,17.764833969176376,0.4773253038063744,9.285229197769462,0.9132359138150214,1.0,0.5217391304347826,1.5798393554327252,3.419751855890448,4.613420277246725,5.188067426407487,5.188067426407487,5.188067426407487,0.16176470588235295,0.007563003775124986,0.08163265306122452,0.04547930283224401,0.04405303030303031,0.0271141975308642,0.017804705215419502,0.013799700914848695,0.0078007684555303596,0.006875000000000001,0.4138870679706395,21.825259515570934,9.46938775510204,4.577854671280277,174.23929709545143,1.0,4.356775498721811,191.8907958182884,,158.44541460965493,156.1506970490252,154.58521654322797,158.38073977192124,199.48656763457305,157.47396245122297,158.62300149570524,184.71817074595626,0.08403596085438067,0.08522979635013289,-0.37688838940939146,0.35340479192938207,0.4020556933917357,-0.14534161376363175,0.08091732438972427,-0.04675526420062598,0.0920458691083856,0.040321143078204835,0.07284921222655523,-0.0021557761821623723,0.07499176819229501,0.04805639177824162,0.05569995314560094,0.004807692307692228,0.14837368186543892,-0.06411567076874965,0.07407647348665403,-0.017411570795077953,0.05839029889493256,0.0785427844308079,0.033859893385233784,0.025611723425396034,0.008341828981028832,-0.06727659923516956,-0.121115026833778,-0.1335059171597633,-0.04369408995875653,-0.03679103923779453,0.008115023203182446,-0.01375576619711554,-0.05377523243897985,-0.005939210014940708,-0.07656560562722636,0.01512781539812244,-0.10949866307508596,-0.021119981106257794,0.010599782001935404,-0.1507761816496756,-0.15163848621874995,-0.06725939688889727,-0.10917720561454997,-0.11795422868832495,-0.030124024031754175,0.0002182489722686709,-0.0025375917107249924,-0.12672320029432463,-0.11389560204024578,-0.05049369057211966,0.06378728078173239,-0.07238751814223511,-0.15062813683098453,0.13681889997594787,-0.10909543371812301,0.03716436057093232,-0.06986443104174014,-0.08397285499974327,-0.041426693319287,-0.0352874375630385,-0.06205644568057785,0.019951289493877485,0.020468624996581707,-0.10106382978723402,-0.0684655760291483,-0.16216969108303117,-0.06242877462644319,-0.13976224199903198,0.01329472749237501,-0.02108965873858424,0.019194981065956934,-0.1296316788574883,-0.034519297458998593,-0.05291600956955121,-0.009709494217215536,0.02332242225859249,-0.07669117809708295,-0.10065063044544473,-0.03306507143550177,-0.06650598249820261,-0.04635908586044728,-0.06700923996218595,-0.05973789672376167,-0.04725027383253328,-0.06087743352815276,-0.1811857534762056,-0.08219350182074613,0.06280048076923077,-0.12276810578493984,0.10730850978002408,-0.057815113133142575,0.12188028843843299,-0.1758979805034895,-0.144303250214831,-0.17457566136425937,0.0755571390821531,15.185375058103181,24.328190904670606,7.8333813861530635,15.28508668910576,35.181389953972186,40.00495907684501,40.58420340319906,40.58420340319906,40.58420340319906,62.539822642193855,48.32408618439942,8.584919482530026,3.858670365960509,1.7721466093039,14.215736457794435,10977.480755667126,10850.05919633927,1003.3909618320922,173.0,49.0,68.0,91.0,115.0,125.0,137.0,152.0,163.0,410.21180432400075,34.0,5.117993812416755,5.993961427306569,6.8885724595653635,7.776954403322442,8.675051276031818,9.567525185909115,10.466896138710247,11.361206825334252,12.261114654698208,0.6374269005847953,0.984421052631579,1.1357089844136463,0.5995869330306868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6615654060300451,0.9705538355693156,1.004497770281494,0.6214505697380028,3.0,2.0,0.0,1.0,0.0,2.0,5.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,10.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9.423004667823825,11.641625339045822,5.583020141642242,0.0,5.559266895052008,9.361636831863176,9.374393568622029,0.0,0.0,5.156663257125445,64.25009226306904,48.138211250384416,5.693927994848461,196.42746611314828,-392.8736976396262,-32.78117128649905,-6.892521011221511,-23.110217508213303,460.45920377190487,920.9623968465849,20.953393148444775,16.15723503239623,23.02405992116462,0.47058823529411764,0.8160626715243592,0.177936979877605,149.71456655557043,0.1282340614472534,52.871411609518525,0.18393732847564073,9.0,0.11764705882352941,0.27085018774504616,0.5862877317394695,0.7909321564513261,0.8894505834686836,0.8894505834686836,0.8894505834686836,3.5904200000000026,,1.404761904761905,1.7043434836395828,1.6009699071037353,1.436320845043609,-6.235520469269131,1.52147518498244,1.3715415728862168,-2.621947134390474,112.25800000000005,8.913509984648169,0.0,19.607651156714486,0.0,57.911329389320656,19.634269217737724,57.145838104948396,0.0,0.0,4.23410650459726,0.0,5.579729825986222,2.3978952727983707,7.126890808898808,4.727387818712341,8.766705997750515,6.842683282238422,10.454466147075888,36.333333333333336,4.627242259171112,8.948505248024166,0.0,5.339437982991097,0.0,1.4323329404564147,3.3520155807758396,1.88550095063533,56.112,0.0,12.922109630386284,0.0,0.0,0.0,0.0,0.0,0.0,64.73541211157784,5.559266895052008,4.39041504767482,0.0,39.241920374452214,19.386399651764595,12.740958040736519,54.37690451725928,27.51673332643,0.0,10.969244356107037,0.0,34.176455182749145,37.70922814371257,39.79564544422906,383.7815916365768,,316.7971784256591,312.18777119914114,309.0637017593157,316.6657248208395,400.45240566625785,314.84649322344717,317.1545668865515,369.9687459365822,39.79564544422906,383.78159163657676,,315.53406483212245,310.6922319409305,307.72216603211166,315.37282991919943,405.20865573841513,313.4927001452628,315.9201130864827,372.0582886263031,4.897719567733853,301.40440905722284,,254.7594175445775,251.17744273435193,248.3912261707656,254.69825845910114,317.0275893164901,253.23353790283988,255.01874607581468,295.54279396118153,1.3265215148076352,12.792719721219227,,10.55990594752197,10.40625903997137,10.302123391977188,10.55552416069465,13.348413522208595,10.494883107448238,10.571818896218383,12.332291531219406,2.4587712381071016,191.8907958182884,,158.44541460965493,156.1506970490252,154.58521654322797,158.38073977192124,199.48656763457305,157.47396245122297,158.62300149570524,184.71817074595626,55.32156862745099,0.0,1.9691772544902053,0.0,13.391455125428823,0.0,0.0,57.25637290604516,9.395502812363514,0.0,0.0,0.0,0.3247532625436662,2.4180918262366675,0.0,0.0,0.0,35.42268247506616,536.0606907151363,90.05084325966534,194.92585578575554,262.96495580306333,295.7198433052268,295.7198433052268,295.7198433052268,1137.0,142.1092761832948,120.82597916991679,80.12986565805782,64.16,64.16,0.8888888888888888,8.612695114200339,6.087462841250339,4.798130725599912,5.404942030882643,,5.415486823248277,5.415258733468677,5.414469445844577,5.415740994271225,5.402770577868584,5.41541095399062,5.415379265692996,5.413523227769842,0.1599376908533304,0.18016473436275476,,0.18051622744160925,0.18050862444895588,0.1804823148614859,0.18052469980904082,0.18009235259561948,0.180513698466354,0.18051264218976654,0.18045077425899472,2.6668386985668713,2.7859260146106744,,2.787875067803653,2.7878329488602356,2.78768718571412,2.7879220008064993,2.785524180638605,2.787861058021783,2.7878552065008906,2.7875124131397997,303.95000000000107,252.5826210541745,196.17668467374037,,194.61802137386456,194.61355731434904,194.75289891318246,194.58611619190586,196.4029358021784,194.6168566704722,194.6332262393448,195.14827844291565,8.419420701805816,6.5392228224580125,,6.487267379128819,6.487118577144968,6.491763297106082,6.486203873063529,6.54676452673928,6.487228555682407,6.48777420797816,6.504942614763855,6.630350695957062,6.377627994251453,,6.369651061397717,6.369628123590201,6.370343858613356,6.369487110509478,6.378780632553019,6.369645076818955,6.36972918505477,6.372371960543886,20.61639405905525,20.05844080987514,5.145664014026554,3.380492052384917,0.9737534052999743,4.627242259171112,5.810256603119455,5.554423463734266,0.0,361.0616669712265,129.0305840890251,-258.07349492792133,-21.533514441319888,-4.527605174174058,-15.180793819289487,302.4695129836497,604.9679219539099,13.764004648074177,10.613472314980879,15.124198048847747,2793.0,51.0,1.9652826839039528,0.956692512930005,0.0,0.0,0.5130395859161019,0.1647224384373876,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02282177322938192,0.47170728861680516,0.19653615384262424,0.8491042716898356,0.2615813447826552,20.66456146007064,17.363784324560765,14.597356788324023,10.963062134042449,13.385868085252731,8.580102500215459,11.853309282608484,6.6947437121920546,10.213474598272521,4.9438319293904645,8.198498324671018,3.63913740773937,5.889963675054766,2.200770781621162,4.184749860866334,1.4297310125966545,5.016550146575926,2.194093855176694,8.390739793528146,3.0737058685900176,12.726752196053924,4.116437348544411,97.86146069912395,43.814850802642994,30.040405269145463,26.42589651782976,26.42589651782976,26.42589651782976,166.0,200.0,62.974410999999975,35.363589000000005,0.47368421052631576,286.07,8.222222222222223,6.444444444444445,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,15.0,16.0,57.0,0.0,1.0,61.0,16.0,1.0,7.0,54.0,17.0,34.0,44.0,0.0,0.0,0.0,23.0,0.0,1.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,6.0,0.0,4.0,30.0,7.0,0.0,4.0,2.0,0.0,5.0,4.0,0.0,0.0,1.0,2.0,3.0,3.784189633918261,6.998759325688969,4.427836170705175,5.055449309886049,5.64831380885817,6.1220815407444515,6.423120129191683,6.65675664904597,6.909718194951435,6.871735375268466 +2712,CN=C1CN(O)C(c2ccccc2)=c2cc(Cl)ccc2=N1,0,31.142857142857142,6.179817142857143,3.5428571428571427,7.817283950617285,160.1396493665396,126.39169942857147,1.7106452762253146,6.324114285714287,3.677929104883838,7.735400028571428,247.4784887161371,28.0,6.400540540540542,4.162162162162162,8.003003003003002,146.04292433210404,108.02155016216213,1.956463351783784,6.569272972972973,3.335390946502058,7.809343081081078,284.9691701966353,25.283333333333335,6.311398333333333,4.0,6.727777777777778,152.8864030432499,96.69598436666664,1.7671660499899329,6.461393333333334,3.0443415637860083,7.770396866666668,253.35944696332893,23.714285714285715,6.342815584415585,3.792207792207792,6.447330447330447,154.8984830374497,89.06927624675323,1.6576422277434413,6.490593506493507,3.0889316444872006,7.842580571428573,234.9286772333707,22.59259259259259,6.3398518518518525,3.419753086419753,5.829903978052126,156.94558102793005,84.62309676543208,1.5518471909128766,6.465558024691358,3.3401666412640347,7.835519456790123,219.66755965107515,21.386363636363637,6.254229545454546,3.0,4.271464646464646,157.61000582632036,79.7122616590909,1.4955771445641022,6.379781818181817,3.150556490834269,7.787147659090908,208.7894107103273,18.376344086021504,6.04541935483871,2.4623655913978495,2.6260454002389486,159.06236178698106,66.86799164516128,1.369648499989645,6.177606451612903,2.833886455152883,7.668132623655914,178.0093637122828,14.28,5.758254666666667,2.013333333333333,1.5274074074074073,163.84942395132774,48.91971201333334,1.2232051689884134,5.913551999999999,2.213086419753086,7.49615048,145.47277362322012,11.955555555555556,5.564200000000001,1.7555555555555555,0.7358024691358025,165.88390968013144,40.26022977777778,1.1204237742829999,5.700744444444444,1.9201646090534983,7.318664088888891,126.0672340537295,11.276734693877549,0.09443297959183666,0.012982769089946269,0.6040816326530614,3.6115293524817345,1.5732832484299466,53.04079447836735,0.247436944993964,0.09980212244897953,0.8511422163744329,0.0648741306122449,50.4519842680121,0.1626475455046881,0.01029474241588519,-0.003430855962991561,0.24379481522338678,1.0248498838975035,-0.10279627638909235,0.7864307710535101,0.00919410624107689,0.007779421952564777,-0.07890304598711421,0.005524874793160508,0.9231243237107141,0.5037414965986393,-0.0036972176870748857,-0.002952454609316636,0.053061224489795965,0.011157302427143915,0.1511001795839892,2.46532377210885,0.024218387453496883,-0.0027221224489796217,-0.04215309595870052,-0.003407668707482992,4.327356513156746,-1.0489053803339519,-0.0047602523191095265,0.0007066574902774646,0.007421150278293169,0.023285920428777786,-0.010025943687837548,-4.886270644972166,-0.01281267752423234,-0.007569729128014869,-0.09366005736376108,-0.006348888682745823,-2.365083174902431,-0.2968405139833712,0.005980777021919816,0.0014583564376410665,-0.13882590073066262,-0.10015695715872064,-0.150390720474784,-1.451894079072811,-0.02089902552634538,0.00398362711010327,0.16399468768184336,0.0019503053665910794,-3.4401409591917163,0.0745640074211503,-0.01289310946196664,-0.0012505315297784995,-0.15862708719851573,-0.8523382349572824,-0.018065814178759118,0.2742755566975903,-0.010958324124330633,-0.008259395176252328,-0.0480409014418421,-0.0035533601576994396,-2.63841295310926,-0.09854728988369539,-0.015682749177090175,-0.0003808388474047044,-0.1288128154487602,-1.0381512636914583,-0.18982215832008179,-0.5751797616238759,-0.013437791232731212,-0.012007652402896625,-0.1768010517726372,-0.003605759490893128,-6.697577438330739,-1.5110204081632654,-0.0038537414965985587,0.000384022709072806,0.014965986394557772,-0.06982447299907638,-0.058419379889214335,-7.095343580462591,-0.023603591619809818,-0.00643511292517003,-0.03988220229411682,-0.0036326582312925172,-3.729845071487566,0.3245351473922908,0.006018448979591964,0.0005310018435071972,0.046712018140589506,0.2880277707790932,-0.04280447153645496,1.5933781921088332,0.0061272398192111326,0.00518359183673474,0.049906234911787285,0.000761783673469383,1.9724792041542454,,,0.4879818594104308,1.3333333333333333,0.6904761904761905,0.023809523809523808,0.6428571428571429,0.047619047619047616,0.7139283205799969,0.010873414970070036,0.02315912925578432,0.9620257614504082,0.28170524658154217,0.20333626998996376,1.675954082030405,0.48504151657150596,2.0493013174870818,1.5878585459370778,0.29155203361188714,0.08535572334340899,0.08453501459470807,0.46144277155000424,8.545215421371442,1090.0,216.2936,124.0,273.60493827160496,5604.887727828886,4423.709480000001,59.87258466788601,221.34400000000002,128.72751867093433,270.739001,8661.747105064798,1036.0,236.82000000000002,154.0,296.1111111111111,5403.588200287849,3996.7973559999987,72.389144016,243.06310000000002,123.40946502057614,288.9456939999999,10543.859297275505,1517.0,378.6839,240.0,403.6666666666667,9173.184182594994,5801.759061999998,106.02996299939598,387.68360000000007,182.6604938271605,466.22381200000007,15201.566817799736,1826.0,488.39680000000004,292.0,496.44444444444446,11927.183193883626,6858.334270999999,127.63845153624499,499.77570000000003,237.84773662551444,603.8787040000001,18089.508146969543,1830.0,513.528,277.0,472.22222222222223,12712.592063262333,6854.470837999998,125.699622463943,523.7102,270.5534979423868,634.6770759999999,17793.072331737087,1882.0,550.3722,264.0,375.88888888888886,13869.680512716192,7014.679025999999,131.610788721641,561.4207999999999,277.2489711934157,685.2689939999999,18373.468142508802,1709.0,562.224,229.0,244.22222222222223,14792.799646189238,6218.723222999999,127.377310499037,574.5174,263.5514403292181,713.136334,16554.870825242302,1071.0,431.8691,151.0,114.55555555555556,12288.706796349581,3668.9784010000003,91.740387674131,443.5164,165.98148148148147,562.211286,10910.45802174151,538.0,250.38900000000007,79.0,33.111111111111114,7464.775935605915,1811.71034,50.419069842735,256.5335,86.40740740740742,329.3398840000001,5673.025532417828,394.6857142857142,3.3051542857142833,0.4543969181481194,21.14285714285715,126.4035273368607,55.06491369504813,1856.4278067428575,8.66029307478874,3.4930742857142834,29.78997757310515,2.2705945714285716,1765.8194493804233,6.01795918367346,0.38090546938775205,-0.12694167063068776,9.02040816326531,37.91944570420763,-3.803462226396417,29.097938528979874,0.34018193091984494,0.28783861224489676,-2.919412701523226,0.20442036734693877,34.15559997729642,30.22448979591836,-0.22183306122449314,-0.17714727655899815,3.1836734693877577,0.6694381456286349,9.066010775039352,147.91942632653098,1.453103247209813,-0.1633273469387773,-2.5291857575220313,-0.20446012244897951,259.6413907894048,-80.7657142857143,-0.36653942857143357,0.05441262675136478,0.5714285714285741,1.7930158730158894,-0.7719976639634912,-376.2428396628568,-0.9865761693658901,-0.582869142857145,-7.211824417009604,-0.48886442857142837,-182.1114044674872,-24.044081632653064,0.4844429387755051,0.11812687144892638,-11.244897959183671,-8.112713529856372,-12.181648358457503,-117.60342040489769,-1.6928210676339757,0.3226737959183649,13.283569702229311,0.15797473469387743,-278.651417694529,6.561632653061226,-1.1345936326530643,-0.11004677462050796,-13.959183673469385,-75.00576467624086,-1.5897916477308025,24.136248989387944,-0.9643325229410956,-0.7268267755102049,-4.227599326882105,-0.3126956938775507,-232.1803398736149,-9.164897959183671,-1.4584956734693864,-0.03541801280863751,-11.979591836734699,-96.54806752330562,-17.653460723767605,-53.49171783102046,-1.2497145846440028,-1.116711673469386,-16.44249781485526,-0.3353356326530609,-622.8747017647587,-113.32653061224491,-0.2890306122448919,0.02880170318046045,1.1224489795918329,-5.236835474930729,-4.381453491691075,-532.1507685346943,-1.7702693714857363,-0.48263346938775226,-2.9911651720587615,-0.2724493673469388,-279.73838036156747,14.604081632653086,0.2708302040816384,0.023895082957823874,2.102040816326528,12.961249685059194,-1.9262012191404732,71.70201864489749,0.27572579186450097,0.2332616326530633,2.2457805710304277,0.034280265306122236,88.76156418694104,0.7056964989228289,0.5832693683681462,0.44286399339137505,0.30117765768953797,0.28251753049348116,0.160057064689892,0.17615013689489292,0.08262718129647414,0.11097488049480447,0.04263110571303818,0.0723911723452101,0.023311096516389487,0.04513063003990954,0.012338155555768882,0.029705712815059765,0.006662231123240932,17.001102713828374,5.655699804342891,3.5278407209513025,2.152007378529622,0.41146986900101606,-0.40468835461617597,3.296563148754792,0.9876140357642375,5.116898307465583,0.7740022053549802,14.55773054301051,10.918979385351808,35.450517235345515,11.668987768955487,2.207959091726877,0.763538957353068,3.469965904122259,2.2014689507488843,6.0030341858571274,1.3038212744581232,3.680301483426676,2.3970218239703214,22.45586274247807,14.696762421287744,0.2989729809077709,0.6134555159659645,0.7492403647088256,0.8741006393167832,0.898837995952203,0.898837995952203,1.81322760934986,815.1608877592522,0.0,1.0,1.0,0.0,11.0,0.0,2.0,0.0,0.0,3.487367326027712,1.7602754421267663,1.0145650001236275,0.32885071440934244,0.19299678577610013,0.19299678577610013,59.32436369411354,756.756589639167,45.443845620938376,21.621616846833344,44.88411596488392,,9.0,308.0,0.0,5.20725302477729,6.544756405912575,16.55529241255443,16.139331915608167,5.063217724965349,13.1140390511388,42.46456947923127,9.984809465271338,11.600939890232516,10.247619047619047,28.0,14.5,0.5,13.5,0.0,0.012018140589569203,1.0,0.17340943156923777,0.08062527138514963,-0.09278416018408814,0.023922902494331044,0.12344017563117449,0.0,0.6157823129251703,0.8263038548752834,0.4423728813559325,0.5351570415400206,0.8023809523809523,14.992494732179935,0.22834171437147077,0.4863417143714708,20.202540990458573,5.915810178212386,4.270061669789239,35.19503572263851,10.185871848001625,0.5905598243688255,0.15102230483271376,0.0,0.3317843866171004,0.125,0.44033261916088,-0.6703026730449623,-0.05178402742598946,-0.01915150494414178,-0.05156174408038172,0.55966738083912,0.8519617331721485,0.03962918207558185,0.02434176380491853,0.03872553332600675,-4.354187947708644,0.5843856017592808,0.7094112137663164,1.2041789488637225,0.6519357195032869,0.5720645552208753,1.160903315806007,0.5880139323009392,0.8170303074827595,0.671193778877882,0.9252728025546465,0.6846413558400638,0.8230657044957728,0.6625947106799865,0.9132680067957349,1.2272163064717962,1.0586711711711707,0.9770166743871515,1.0065999814204323,0.664138710388741,0.7702412816788636,0.8474430901091906,0.7341525551183191,0.8383035544749069,0.7869719647802115,0.95262382036669,1.09818006413281,1.0317104794372016,1.19041769041769,1.02968775923452,1.0676341880568434,0.9510455454707932,0.9541137469218445,1.06897091208905,1.1414728379944103,1.1265846255659493,0.9284216590306258,0.8183726654119011,1.0730635952670111,1.0758888254268368,1.379796463129796,1.0781946632948711,1.1543471004658326,0.8206728177178251,0.9678701220135137,1.0065508210068006,0.9524180130077021,1.0313297539804351,0.9522214349879597,0.7924314266159498,1.3010962550896499,1.2684438538376015,1.2334920147420143,1.2165790416992437,1.0295446452007835,0.7955954537508957,0.9498993947057818,1.1572578105573808,1.3520154507227475,1.1588461830141836,0.962932242033061,0.9901985051786331,1.2704067524863556,1.065036628440611,1.0720720720720716,1.234386421884385,1.0345828361395792,0.9920105773272451,1.0464203040084128,1.2012922951475067,1.593225094556669,1.187282317534177,1.1206599328010072,1.51729163650403,0.8525972132415404,0.8381592623250881,0.7290090090090087,0.9427355817617958,0.8866773552576694,1.5115997027808812,1.2064923575630875,1.0240988426622695,0.7557798893987608,1.0065457577023142,1.168072045014999,1.280681434293712,0.6077537767850043,0.5363232445564562,0.6789789789789787,0.8463825032106673,0.8496241447313222,1.278457927903607,1.0953334009267732,0.7864489042444442,0.38446725863098286,0.7255393800846148,1.1082225686604565,4.0,0.0,2.000000000000001,1.875,1.5444444444444447,0.7608333333333334,0.5087074829931972,0.17708333333333337,0.05316200554295791,0.015625,4257.434184947003,4652.462907416853,2053.602028785383,1905.8483665906265,11.202149301172174,0.4457946850096796,6.208290682024722,0.8043854379445382,1.0,0.125,1.6419156909172545,3.3690075748182,4.114718016821339,4.800432302535624,4.936286231168866,4.936286231168866,0.17391304347826084,0.0,0.06250000000000003,0.05067567567567567,0.04290123456790124,0.021738095238095237,0.019565672422815275,0.012648809523809524,0.008860334257159652,0.015625,0.40842786516371754,15.879017013232515,7.05078125,3.504597079502434,126.85484871791323,1.0,3.9790041270198238,81.65952143422525,,57.22385513486028,57.482155818847794,56.8603288218436,57.20345198055857,76.22329475607701,57.81999850424122,58.20094894790371,69.45090773425284,0.014423283860087082,0.10901638876991579,-0.26426226479283094,0.4035792549306063,0.28377171659791645,-0.06533869631655811,0.014826904061066718,0.03715737050221491,0.07794846203337755,-0.0927025407378023,0.08516298778912183,0.018297086568624804,0.04467086530572849,-0.03915176353701006,-0.2274133190586428,0.08783783783783788,0.0030893567068690586,0.09604130707854366,0.04647976706145173,0.0978770064191007,-0.027275195979636756,-0.04952532625893933,-0.052527389196947466,0.08577178035592956,-0.09301499137896997,-0.05040879086612057,0.05443041352593211,0.012285012285012338,0.006447661961483548,-0.006372624699235124,-0.09212287811723913,-0.05178158631300953,-0.07584737621070774,-0.11004043221204567,-0.09786472084987724,-0.04687790201349835,-0.02632326839652742,0.06333356257284536,0.1123301529540723,-0.22981314647981305,-0.027732560747400763,-0.09559036532351435,-0.027373158591449166,-0.08446202537319232,0.039915254428980355,0.1926760117485456,0.030062913339804542,-0.06818643526321834,0.006612198428471778,-0.13653185060657766,-0.0963224040352762,-0.26259213759213745,-0.23600479236630909,-0.011482874553446014,0.005171030324771122,-0.04428734005181786,-0.08275771069372463,-0.05644286056739081,-0.05477314492178717,-0.05229552397966009,-0.008738991610505783,-0.16607279834730412,-0.029334177074721475,-0.21323743097936648,-0.28745474904643153,-0.12065351773719973,-0.010844101550146697,-0.05430794190034562,-0.12031459961219895,-0.20772210374636052,-0.05558085259662109,-0.13275151682343606,-0.1339944983350225,-0.040809275671014604,0.029579414561889533,0.024774774774774685,-0.019333768657063547,-0.037132143844736024,-0.13377144234437177,-0.0953923498384027,-0.06447871816012495,-0.046857271942168495,-0.055995482282530325,-0.07392861005572753,0.02877917732413177,0.0637324905515555,0.040900507420901434,0.0773273273273272,0.07975229955729675,-0.027207098009320037,0.030040616996389286,0.024762833292177128,0.051938693381843426,0.058634425542150086,0.011742487587580825,0.039096167034303346,10.310410669398491,17.800459656166524,6.455107950793857,18.529254415415984,33.982242538405934,41.41277503005067,43.59877580680223,43.73571656686455,43.73571656686455,43.035327667228714,33.34502946467863,6.12259270584963,1.792470190211589,1.7752353064888693,9.690298202550089,3288.195230134061,2081.323241340271,1402.769333483553,84.0,32.0,43.0,59.0,78.0,86.0,94.0,98.0,89.0,299.08253974800044,23.0,4.709530201312334,5.564520407322694,6.453624998892692,7.333676395657684,8.231908243564177,9.121399862679535,10.02282493512475,10.91637854079876,11.818901674577651,0.742857142857143,0.9867428571428574,1.1182929203865413,0.7130558892443831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7243302309666383,0.9783753501400558,1.008583914264905,0.6820668663313076,8.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,12.380376191669844,0.0,0.0,0.0,10.19965775741296,10.055622457601018,0.0,0.0,41.932775232540564,18.19910120538483,22.85240676372038,11.054269761362137,218.90061268078026,-333.2246111830697,-25.743165137820192,-9.520703176659135,-25.632662398697676,278.2249763748938,423.5319784560973,19.700680483118187,12.10091367017421,19.25145356618624,0.4444444444444444,0.8533413037549645,0.1891540759416825,120.4477139940433,0.16151820289655844,106.63092458627521,0.14665869624503533,5.0,0.043478260869565216,0.3201062771332883,0.6568184215393134,0.8022013999282284,0.9358875863696817,0.9623735354164469,0.9623735354164469,1.8492000000000002,,1.3256302521008405,0.959325316894866,0.9805438548466842,1.3379508818231125,-2.402894764756166,0.93531153649505,0.879067952217064,-1.2736797330507026,83.03650000000003,5.20725302477729,0.0,5.063217724965349,9.984809465271338,0.0,13.592428388589765,69.69290177704238,0.0,0.0,3.8501476017100584,0.0,5.1647859739235145,0.0,6.680854678790215,2.70805020110221,8.289790583181643,5.37989735354046,9.949750717005767,26.000000000000004,15.107250864337503,0.0,0.0,0.0,0.0,0.0,1.4988315696649037,0.0,34.53600000000001,0.0,0.0,0.0,0.0,0.0,0.0,8.603079648526077,1.2384292328042332,39.140252213528946,10.575880423911173,0.0,0.0,29.698518924089672,0.0,0.0,5.563451491696996,58.515746012964215,5.022633313741326,5.697039313055833,0.0,24.956956123553407,25.35155808383234,27.36495759475799,163.3190428684505,,114.32145976952049,114.87294732180084,113.64907538851773,114.27948006761018,153.59082511441892,115.55091971929241,116.31817713845342,139.50832962710126,27.36495759475799,163.31904286845048,,113.12208001761981,114.05108210739087,112.8553017917371,113.06895307929409,154.84948427691023,114.7046854719874,115.52282994359044,140.17549520155643,4.865075580884607,110.20987488816205,,79.14963776929864,79.27037357745732,78.53053899596927,79.13044313697483,102.61334132451307,79.68552611500692,80.1358905594405,93.92250591571779,1.3030932187979996,7.777097279450024,,5.443879036643833,5.470140348657183,5.411860732786558,5.4418800032195325,7.31384881497233,5.502424748537734,5.5389608161168296,6.6432537917667265,2.460339844129962,81.65952143422525,,57.22385513486028,57.482155818847794,56.8603288218436,57.20345198055857,76.22329475607701,57.81999850424122,58.20094894790371,69.45090773425284,34.24313725490195,0.0,1.6624757320623722,6.115296394277875,0.0,0.0,10.453943688586545,35.300436999271675,0.22919312169312178,0.0,0.0,0.0,0.0,1.1699691358024689,0.0,0.0,0.0,23.872340321595768,424.2177982947236,57.467049182103906,117.915265118637,144.01513058874687,168.01513058874684,172.77001809091033,172.77001809091033,707.0,118.17276525993027,72.90779076095036,63.02327710925387,48.19,48.19,0.8,9.002135462692403,5.523561956057013,4.074398489225002,4.5103985523318535,,4.511777292641234,4.507734400445304,4.5082144062174265,4.511837111210965,4.470123598223602,4.508423146138812,4.508384740212475,4.491501807891985,0.19401897567738105,0.214780883444374,,0.21484653774482068,0.21465401906882398,0.21467687648654413,0.21484938624814118,0.2128630284868382,0.21468681648280055,0.21468498762916546,0.2138810384710469,2.1466604705206396,2.2483228651447837,,2.248628498806509,2.2477320217899552,2.247838501048627,2.248641757034765,2.239353403581891,2.2478848021049154,2.247876283363733,2.244124468930499,217.36999999999975,135.3177887045441,114.63861616140183,,114.35256647611178,114.84567811652616,114.84275611095747,114.33940610736238,117.7385245458273,114.80869567168664,114.82734305136697,116.45439720026371,6.44370422402591,5.458981721971516,,5.445360308386275,5.4688418150726745,5.468702671950355,5.444733624160113,5.606596406944157,5.467080746270792,5.46796871673176,5.545447485726844,5.649563347276797,5.483722057009321,,5.481223708987509,5.485526642477514,5.485501199267205,5.481108616458329,5.510403616790359,5.485204572015287,5.485366980144473,5.49943710076128,0.0,8.603079648526077,13.75624748047367,1.5755275258251453,0.5620403439153441,15.107250864337503,0.0,0.22919312169312178,1.6624757320623722,262.3227508788553,108.82109602358084,-165.6544811222315,-12.797586133296354,-4.732985174920899,-12.742652394017808,138.31275527037008,210.5485842739024,9.79371238996775,6.015673836397212,9.57039019426829,828.0,37.0,1.309028748154659,0.6063571315982447,0.0,0.0,0.2475252785940228,0.07108289976385775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.056131276171213614,0.24643819429622343,0.07493999620273607,14.819626477379408,12.248656735731071,10.185871848001627,6.927086126859373,9.040560975791397,5.121826070076544,7.574455886480395,3.552968795748388,6.547517949193464,2.515235237069253,5.646511442926388,1.81826552827838,3.88123418343222,1.0610813777961239,2.792337004615618,0.6262497255846475,2.9928533799145054,1.129288784049533,5.25558606987332,1.598798273761885,8.884881988974492,2.224012673100573,67.00573967346045,44.25531278445419,29.064108994070818,23.98425108193324,23.51250720778526,23.51250720778526,110.0,130.0,42.33710199999999,17.404897999999996,0.4857142857142857,109.05,6.527777777777777,4.694444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,35.0,0.0,2.0,37.0,12.0,3.0,8.0,29.0,15.0,23.0,22.0,0.0,0.0,0.0,16.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,3.0,1.0,1.0,21.0,5.0,0.0,3.0,1.0,0.0,3.0,1.0,0.0,0.0,1.0,0.0,2.0,3.4965075614664802,7.766112296548592,4.1588830833596715,4.808111029984782,5.464890566373852,6.1050722113538844,6.462053942259367,6.886340102226653,7.252850941047093,7.503255175836758 +2662,Cc1ccc(-c2cc(C(F)(F)F)nn2-c2ccc(S(N)(=O)=O)cc2)cc1,0,35.0,7.079207500000001,3.9,11.811111111111112,169.17414071561467,141.94751686123277,1.6973258916971499,7.0968025,9.783354766803841,8.407486424999998,248.13982697946204,35.69047619047619,6.657826190476191,4.5,8.896825396825395,148.29586436243807,139.7972839882286,2.0104034838095237,6.817992857142857,3.418283362727807,8.066623714285711,294.78315472423094,31.014285714285716,7.028085714285714,3.9857142857142858,10.642857142857142,157.5714004855036,121.66619962792736,1.7381697504199423,7.1073,7.396428571428573,8.344912228571424,258.93566704647384,24.88235294117647,6.636741176470589,3.588235294117647,7.152941176470589,157.49416092539596,94.09406772203292,1.5900737819223054,6.7305188235294136,4.588235294117647,8.063110494117646,228.6141314111739,21.23404255319149,6.613978723404256,3.1382978723404253,6.379432624113476,164.2299034031346,78.81210201754891,1.3966979243137232,6.6777723404255305,4.217723929603363,8.067508234042553,200.28848047504886,19.90909090909091,6.316906818181818,3.215909090909091,6.037878787878788,161.63592263064186,74.6552601024,1.3881930064952728,6.398405681818181,3.5768097643097647,7.808779113636363,199.06730593672148,25.337662337662337,6.656931168831168,3.4285714285714284,7.233766233766234,159.82427187425446,98.04696832496622,1.4866760667375583,6.744311688311688,4.744027577360911,8.052221714285718,220.80483571091472,24.48780487804878,7.178230487804876,2.8536585365853657,6.38211382113821,173.60585921321092,92.6711585137756,1.3062884279401707,7.201973170731707,5.884899126769046,8.559370560975609,197.63412702785737,21.18918918918919,6.887743243243242,2.635135135135135,5.373873873873874,174.24848444708744,78.0802544070054,1.221608294126203,6.914385135135134,4.862956706706705,8.368829486486488,175.582237952836,10.99,0.2866684374999998,0.017170747379245954,0.8375,5.223333333333334,3.234585515306808,51.044063735854294,0.3049198736906475,0.24942193749999997,4.427130272633745,0.168146744375,46.16719662837003,1.9504761904761903,-0.010295461309523805,-0.009040209103664315,0.10416666666666667,0.6549735449735452,0.04595941323313627,8.236616058564683,-0.011334075237785598,-0.004653187499999991,-0.8298482408223916,0.005093193720238089,2.5230239295458596,0.7042857142857144,0.13036584821428568,0.0007401344804524771,-0.05178571428571429,1.6228571428571428,0.6909414382715777,3.9844365576626792,0.002632038330207498,0.10983013392857141,2.1023487103174596,0.07438743062500003,-0.14967403136073978,-1.3182352941176474,0.010158915441176475,0.000341506297872025,-0.019852941176470587,-0.1394117647058823,-0.030476854230926363,-5.877798543822915,-0.03491255034017044,0.006202474264705879,0.14123846374969745,0.0026236182720588246,-7.207377274649712,-1.2017021276595738,-0.007906416223404246,-0.00022295076189026363,0.03856382978723404,0.07926713947990544,0.12888381834975068,-5.424779405065529,-0.011234650096921973,-0.009012150265957454,-0.3516391725403497,-0.006540771236702128,-2.648764147555435,1.3225000000000007,-0.005322585227272705,-0.003096903245239084,-0.02556818181818182,0.35621212121212115,-0.20644239521126873,6.446514424721678,0.017479348138953067,-0.0003211988636364318,-0.14879994972876914,-0.004243741250000001,6.671358006619294,1.4294805194805194,0.01848240665584415,0.0045484436949092205,-0.1452922077922078,0.07709956709956706,-0.9050748494807718,6.753476715187378,-0.051983931403513074,0.021634556006493468,0.17213904087167975,0.00805043062499999,-4.107122973503244,-1.398536585365854,-0.08677084603658534,0.0010781751091768,0.004573170731707317,-1.4597831978319786,-0.3429089499615702,-7.274155468032109,0.008535828090623233,-0.07662864481707311,-0.9460713441818063,-0.04987938919207317,-3.0912714217776736,-1.2845945945945947,-0.09480553209459452,-0.002330660105575609,-0.11993243243243243,-1.172282282282282,-0.04232947606982285,-6.6687089342186985,0.02940082945393493,-0.08296349155405404,-1.273232161559708,-0.056432276131756755,2.1118897396958,,,0.46373626373626387,1.3461538461538463,0.7307692307692307,0.0,0.6153846153846154,0.11538461538461539,0.7484644368411936,0.0330974437856726,0.043020520708749524,1.1477257719826262,0.26912203175024985,0.194481046093812,1.8961902088238198,0.46360307784406185,2.00603534103394,1.3659289946635294,0.23257819497430385,0.13005677869423402,0.1954915170845618,0.6401063463704106,9.526897058700008,1400.0,283.16830000000004,156.0,472.44444444444446,6766.965628624586,5677.900674449311,67.893035667886,283.8721,391.3341906721536,336.29945699999996,9925.593079178481,1499.0,279.62870000000004,189.0,373.66666666666663,6228.426303222399,5871.4859275056015,84.43694632,286.3557,143.5679012345679,338.79819599999985,12380.8924984177,2171.0,491.966,279.0,745.0,11029.998033985252,8516.633973954915,121.67188252939596,497.511,517.7500000000001,584.1438559999997,18125.496693253168,2115.0,564.123,305.0,608.0,13387.003678658657,7997.9957563727985,135.15627146339597,572.0941000000001,390.0,685.364392,19432.20116994978,1996.0,621.714,295.0,599.6666666666667,15437.610919894652,7408.337589649597,131.28960488548998,627.7105999999999,396.4660493827161,758.3457739999999,18827.11716465459,1752.0,555.8878,283.0,531.3333333333334,14223.961191496483,6569.662889011201,122.16098457158401,563.0596999999999,314.7592592592593,687.172562,17517.92292243149,1951.0,512.5836999999999,264.0,557.0,12306.468934317594,7549.616561022399,114.47405713879199,519.312,365.2901234567902,620.0210720000002,17001.972349740434,2008.0,588.6148999999998,234.0,523.3333333333333,14235.680455483296,7599.0349981295985,107.11565109109401,590.5618,482.5617283950618,701.8683859999999,16205.998416284305,1568.0,509.6929999999999,195.0,397.6666666666667,12894.38784908447,5777.938826118399,90.39901376533902,511.6644999999999,359.8587962962962,619.2933820000002,12993.085608509866,439.6,11.466737499999994,0.6868298951698382,33.5,208.93333333333334,129.38342061227232,2041.762549434172,12.1967949476259,9.976877499999999,177.0852109053498,6.725869775,1846.687865134801,81.91999999999999,-0.43240937499999976,-0.37968878235390124,4.375,27.508888888888897,1.9302953557917233,345.9378744597167,-0.4760311599869951,-0.1954338749999996,-34.85362611454045,0.21391413624999972,105.9670050409261,49.30000000000001,9.125609374999998,0.0518094136316734,-3.625,113.6,48.36590067901044,278.91055903638755,0.18424268311452485,7.688109374999999,147.16440972222216,5.207120143750002,-10.477182195251785,-112.05000000000003,0.8635078125000004,0.029028035319122125,-1.6875,-11.849999999999994,-2.590532609628741,-499.6128762249478,-2.9675667789144877,0.5272103124999997,12.005269418724284,0.2230075531250001,-612.6270683452256,-112.95999999999994,-0.7432031249999991,-0.02095737161768478,3.625,7.4511111111111115,12.115078924876565,-509.9292640761597,-1.0560571091106654,-0.8471421250000006,-33.05408221879287,-0.61483249625,-248.98382987021088,116.38000000000005,-0.46838749999999807,-0.2725274855810394,-2.25,31.34666666666666,-18.16693077859165,567.2932693755076,1.5381826362278699,-0.028265500000006,-13.094395576131685,-0.3734492300000001,587.0795045824979,110.07,1.4231453124999995,0.35023016450801,-11.1875,5.936666666666664,-69.69076341001943,520.0177070694281,-4.002762718070507,1.665860812499997,13.254706147119341,0.6198831581249992,-316.2484689597498,-114.68000000000002,-7.115209374999998,0.0884103589524976,0.375,-119.70222222222225,-28.118533896848753,-596.4807483786329,0.6999379034311051,-6.283548874999996,-77.57785022290811,-4.09010991375,-253.48425658576923,-95.06,-7.015609374999995,-0.17246884781259506,-8.875,-86.74888888888887,-3.1323812291668904,-493.4844611321837,2.175661379591185,-6.139298374999999,-94.2191799554184,-4.17598843375,156.2798407374892,0.7350969113920329,0.5516563367016605,0.4304885722837718,0.32061896424741365,0.2990638023853908,0.16955208690790619,0.1760797945155623,0.09011889220944988,0.10802218609529564,0.0452132233422381,0.0674175163585246,0.023456694981440537,0.043873761351806144,0.012415934662408751,0.028236002930808475,0.0065702135525489945,16.013355460025213,5.685447523477619,4.124539673073794,2.1845678768300005,0.5269852302322506,-0.4151767416276858,4.042993556883226,0.968257881426922,7.014092889356985,0.6420961534814491,17.43070057531942,10.319285215317644,32.066660336073824,11.696828557927928,2.955646242218921,0.5269655556624719,4.007163531521193,2.2346245352389067,8.00739238718403,0.300209638446357,4.030618337631459,2.4305949627670596,24.442067748058342,13.30278625225362,0.3446116241306793,0.615341560049689,0.7492317795875969,0.874350745946407,0.874350745946407,0.874350745946407,1.6813667413468125,1038.352309274621,0.0,0.0,2.0,0.0,13.0,0.0,2.0,0.0,0.0,3.3574903053597294,1.8142106257572141,1.0509775004326931,0.3377443751081728,0.3377443751081728,0.3377443751081728,-97.42839266111676,1183.921774391634,64.93161162470818,29.59804435979085,59.83138584721772,,12.0,503.0,21.89351766569952,21.589042127353398,16.276797745049798,5.563451491696996,16.31162149530379,24.26546827384644,24.26546827384644,6.923737199690624,5.098681808301038,5.138973737607942,12.05714285714286,35.0,19.0,0.0,16.0,0.0,0.036263736263736135,3.0,0.2780308880308879,0.10851851851851857,-0.1695123695123693,0.04599686028257444,0.22273108265424885,0.0,0.7185714285714286,0.9439560439560437,0.44054054054054076,0.6100529100529101,0.8979591836734693,19.460075357871034,0.8605335384274877,1.1185335384274877,29.84087007154828,6.997172825506496,5.056507198439112,49.300945429419315,12.053680023945608,0.4912689173457511,0.20102685624012634,0.11058451816745654,0.28199052132701413,0.11764705882352941,0.5820524925757982,-1.1607037775263518,-0.07994639416119674,-0.02901759443815879,-0.06108967250138692,0.41794750742420195,0.8334527501603646,0.02942214688212227,0.02083631875400912,0.0396882261981126,-4.859144467784868,0.7509261666450018,0.5626541239700606,1.7257187572349388,1.1226012793176974,0.49875406448476006,0.9075170545568535,0.7260590834199763,1.1686151422691156,0.5318107508371948,0.7224015807889935,0.510915248663349,0.8591665539847865,0.7743728064474196,0.37196830023734806,0.8321332341245515,1.1309168443496802,0.5156919500410247,0.7994436725708558,0.7505140073761236,0.9771953011512535,0.3714424392086316,0.36275617038275615,0.39969287944515053,0.8968802016144429,0.9419659583578653,0.6146403379134393,0.832493115538632,0.9587357330992099,0.815580539810053,0.8129438351419206,0.9285229213682914,1.032253727274116,0.6275915603501255,0.61592801600523,0.6480450495734889,1.092024069147819,0.9508765221768338,0.7989209678233758,0.805579609659547,0.7864401397268974,0.8638100992545723,0.7838245241974815,0.9534003341380878,0.8984282485246746,0.8162696535489717,0.8105889811931751,0.8058500089061128,1.0230098922483315,0.6336209570684093,0.6656691503656474,0.992920564433138,0.9458955223880597,0.7867160758832743,0.7769799038625722,0.6455258186132375,0.7365117318795987,0.6690541796177302,0.6392217908483784,0.6637715516942868,0.8824419492368073,0.6423342353733619,0.8028881050828227,0.8544158763492709,1.1944175227757319,0.8483308331744834,1.2973660438238017,0.6573263313684703,1.0592150576808539,0.7776880143058842,0.7516153979946011,0.7994324933470547,1.0605572150422613,1.0781281209081426,1.7234850461830227,0.9926279463611319,0.9015289406625411,1.4086941802730086,1.4868179617250294,1.1175171694324242,0.9355165007623318,1.705132204134131,1.5435852863214057,1.6855190437378655,0.9847431873676843,1.231248309273787,1.6386976867845993,0.9743939917662973,1.1327148043565956,1.4005286396798837,1.212864673232963,1.2545423583504667,0.9433940820290656,1.634617346662523,1.5603881347686819,1.6191423743045568,0.9589819397522419,8.5,0.0743801652892562,4.222222222222223,1.7777777777777777,1.9194444444444447,1.4241666666666666,0.7819501133786848,0.5868055555555556,0.5941279289493575,0.3000000000000001,5916.391279752363,6324.624210723146,2874.078756217678,2727.081243432882,12.162629240395665,0.43399839888465475,6.884067623836262,0.766779454385696,1.0,0.11764705882352941,1.9644377895276333,3.5077174691301485,4.2709505944546695,4.98418371977919,4.98418371977919,4.98418371977919,0.3035714285714286,0.004375303840544482,0.09819121447028425,0.04336043360433604,0.050511695906432744,0.040690476190476194,0.021133786848072565,0.017258986928104576,0.023765117157974296,0.015000000000000005,0.6178584435176537,20.727040816326532,7.787993510005409,4.899408284023669,147.47998201558556,1.0,4.193670374806864,132.39186160967387,,89.92796656800685,95.46722797467152,95.54760048390457,89.71208400282222,129.1561436276969,96.00266022541922,96.22600476282217,115.98167807077117,0.17747736037089992,-0.03591417806337264,-0.5264889701068628,0.12437810945273632,0.1253937865297151,0.014208748853800798,0.16136285898372021,-0.03717066749569901,-0.018655887074888876,-0.18744608577526825,0.030290171475929824,0.05464971048286362,0.06408423241908229,0.45476177758245795,0.04310438352538268,-0.061833688699360345,0.3106937733612909,0.21361050279916322,0.07805876464463266,0.00863190154957823,0.4403387088939257,0.47487843836742366,0.44239590187426747,-0.0032419995644432124,-0.11994861638923088,0.035437858209195004,0.019888842944879553,-0.023705004389815626,-0.026690191073238476,-0.009422182250771492,-0.11515146157327283,-0.11449745770126651,0.024867396696835777,0.03190293825839312,0.015603146417201185,-0.15611468317356603,-0.1093450525622906,-0.027580351336739854,-0.012984336497766027,0.046046363925055574,0.015175585095068047,0.039845543653071656,-0.10627640136839385,-0.036844597765772195,-0.03613214762216918,-0.07942824152115044,-0.03889918452488699,-0.0573732940485226,0.12033666969972708,-0.0185670430748858,-0.1803592573368279,-0.030529172320217096,0.06819632186575389,-0.06382344638419218,0.12629312701436674,0.057324397807820525,-0.0012877731079145027,-0.033610926393689906,-0.02523831945586548,0.14450429079160731,0.13007102088084796,0.06447311331874184,0.26489491659558523,-0.17348323318472575,0.014760606336866698,-0.27981169308950027,0.1323067996728405,-0.17048390704848806,0.08673878578340155,0.038882759320581835,0.04787741002612553,-0.0889619312726342,-0.1272553762844271,-0.3026871280051031,0.06279139080923032,0.0054605023662176915,-0.2794734903315849,-0.1060132583723156,-0.1425073737403593,0.02799367580508428,-0.3072249601824744,-0.2136985554795926,-0.29664201574329874,-0.06695817913011569,-0.11688758822516784,-0.3307149294892103,-0.13573434248952063,-0.14320290439693426,-0.22443183451479554,-0.013086522483177508,-0.13064612113816623,0.0964214929583867,-0.3326230739188851,-0.28759762716497816,-0.33561325460992447,0.04574437899480408,9.842868357794968,17.988780865581813,4.159632929523649,23.810059626617054,37.6271513296942,46.79434439796701,47.51328338829413,47.51328338829413,47.51328338829413,52.15691886688244,35.51415386125176,6.0470330693319,3.3814762460500845,5.082779444198607,16.642765005630675,6702.650857425206,4643.71286021434,2414.8863699614803,140.0,43.0,52.0,65.0,86.0,105.0,114.0,122.0,142.0,381.07588234800033,28.0,4.962844630259907,5.808142489980444,6.720220155135295,7.594381242551817,8.506536611227709,9.393078508655353,10.306182159681624,11.199706757174393,12.113469298945102,0.8166666666666668,1.0425,1.1439973002495492,0.7937998701190575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7065883532934132,1.0261764705882352,1.0453113619810632,0.6905750559739469,9.0,1.0,0.0,0.0,0.0,0.0,6.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,5.693927994848461,10.023291153407584,0.0,0.0,18.238573657082064,18.269926951325495,0.0,29.828919765543436,37.255572541998674,5.563451491696996,16.276797745049798,345.56195074555916,-689.1046197994123,-47.46381516065556,-17.227615494985304,-36.26866419996906,248.1335580844424,494.81715459222175,17.467796464052622,12.370428864805547,23.562721647248654,0.5,0.8315731132182451,0.1165930788253147,12.660165145682518,0.21798616556607747,1.5171953749587954,0.16842688678175483,6.0,0.10714285714285714,0.3691214451797681,0.6591065130135676,0.8025194099404801,0.936537215631937,0.936537215631937,0.936537215631937,3.5139200000000006,,2.553571428571429,2.274573372140208,1.996226213409378,2.654757314829302,-9.289610055779939,2.090511846256989,1.9296346839337528,-3.2383629615769918,90.1122,21.589042127353398,0.0,9.780484743446223,5.138973737607942,17.995519192651873,0.0,65.85468310269995,0.0,16.944765761229018,4.04305126783455,0.0,5.43372200355424,2.3978952727983707,6.9930151229329605,4.727387818712341,8.621373010325902,6.880384082186005,10.285922831529602,32.66666666666667,13.057512641554172,3.6533390022675736,0.0,0.0,0.0,0.0,0.8579433477043528,1.1254029667422523,41.699999999999996,0.0,22.68634254090076,0.0,0.0,-3.8965234053714837,0.0,0.0,0.0,45.75989200998197,5.138973737607942,13.171245143024459,0.0,18.19828172777516,16.199589670851058,6.923737199690624,11.257379486545457,59.49278709167226,0.0,16.944765761229018,0.0,31.7519948047623,28.263534131736527,31.703670945359057,264.78372321934773,,180.38415411323064,190.75948876687073,190.94164510523922,179.93715783571574,262.70129631057057,191.84451184728022,192.30357608841865,233.2088803575335,31.703670945359057,264.7837232193476,,178.22343982751636,188.65988257720284,189.0989747543998,177.6908247231679,267.60189731117384,189.91480860458142,190.52237484171067,235.2017191031194,4.867956896236976,187.57759896748468,,127.71950713419896,134.6705513693646,134.33710712811478,127.50504253450853,183.45320603617273,135.53383064218025,135.9254671242918,166.01077499990305,1.2193719594368868,10.183989354590297,,6.937852081278101,7.336903414110413,7.3439094271245855,6.920659916758297,10.103896011945022,7.378635071049239,7.396291388016102,8.969572321443597,2.489344517796562,132.39186160967387,,89.92796656800685,95.46722797467152,95.54760048390457,89.71208400282222,129.1561436276969,96.00266022541922,96.22600476282217,115.98167807077117,41.04705882352941,0.0,1.8692489037768758,0.0,39.376450554816344,5.04286724810465,0.0,41.81245447924253,0.0,0.0,0.0,0.0,0.0,0.0,-4.60591713382884,0.0,0.0,27.623002238957874,493.7012225814545,78.57751158110533,140.30869876520595,170.83802377818677,199.3673487911676,199.3673487911676,199.3673487911676,923.0,130.60456185361164,99.99428624854698,75.38275140987398,86.36,77.98,1.0,9.102187767619473,5.807354922057604,4.351039293015295,5.009038758905636,,5.015044871191286,5.001527078441804,4.99734826644338,5.015602281216363,4.984276485834402,5.002995881027882,5.004755560581864,5.007184245239496,0.16734766511597288,0.19265533688098602,,0.19288634119966483,0.19236642609391555,0.1922057025555146,0.19290778004678322,0.19170294176286162,0.19242291850107238,0.19249059848391784,0.19258400943228832,2.425926179526235,2.566755477225971,,2.5679538137973767,2.5652547265200205,2.564418870066653,2.5680649551858,2.5617996996598,2.565548354232722,2.5659000175573725,2.5663851752295868,246.7199999999999,197.32758497545896,156.61053013218734,,155.39155666291842,157.1331085495484,157.68516721181788,155.29116367847388,159.2772820272674,157.01371843057652,156.87380448556212,157.1373581543721,7.589522499056114,6.023481928161051,,5.97659833318917,6.043581098059554,6.064814123531457,5.9727370645566875,6.126049308741054,6.038989170406789,6.033607864829312,6.043744544398927,6.240376660627109,6.0092734685469,,6.0014595485564435,6.012604716331368,6.016111877577345,6.000813275163263,6.0261580405196735,6.011844625097166,6.01095313407528,6.01263176058321,63.188196062459355,-0.1376510348234279,8.696206250372224,0.9955943825277807,0.0,13.057512641554172,-4.60591713382884,1.8692489037768758,-3.8965234053714837,299.0095963600345,205.15857818017267,-409.11831788891675,-28.179053892818537,-10.227957947222919,-21.53254304678509,147.31577902474174,293.7707223734426,10.370552309864623,7.344268059336066,13.98908201778298,1654.0,41.0,3.9148999370677453,1.3504878462647008,0.5773502691896257,0.07242429627777994,1.0576637228279484,0.2105269000375547,0.28867513459481287,0.023127212436347272,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.32589030021024656,0.09885682574477749,0.610328022936556,0.1594602676092978,19.112519696192855,14.343064754243173,12.05368002394561,8.977330998927583,12.859743502571806,7.290739737039966,9.15614931480924,4.686182394891394,7.0214420961942166,2.9388595172454766,5.797906406833115,2.017275768403886,4.606744941939645,1.3036731395529189,3.218904334112166,0.7490043449905853,5.885731069563482,2.050792362445921,7.4538515637440295,2.129499550714218,10.522918172099695,2.483319484841302,79.97486714489395,55.10822735195803,35.1494142662324,31.989041823355834,31.989041823355834,31.989041823355834,142.0,166.0,47.20010199999999,25.179897999999994,0.425,134.09,10.402777777777779,5.333333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,17.0,40.0,0.0,0.0,42.0,17.0,2.0,10.0,32.0,19.0,28.0,23.0,0.0,0.0,0.0,17.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,4.0,1.0,1.0,26.0,9.0,0.0,3.0,2.0,0.0,3.0,3.0,1.0,0.0,3.0,1.0,3.0,3.676300671907076,7.970470491757097,4.37260741275739,4.893164709621917,5.471482548056005,6.022842082800238,6.441046216685831,6.864652038564631,7.235709194648692,7.690743163541872 +62884,CC(NC(C)(C)C)C(=O)c1cccc(Cl)c1,0,26.11764705882353,5.825111764705883,2.823529411764706,4.870733478576616,162.99103358929065,105.95850808823529,1.496009890802412,5.962155882352941,3.492190091628787,7.487883441176471,206.73244209109296,22.794117647058822,6.0714411764705885,3.235294117647059,4.826797385620915,145.55694410498822,85.45703226470586,1.8171901638235293,6.247705882352942,2.7265038731541997,7.5553666470588245,250.77757783501897,19.616666666666667,5.905983333333334,3.1,3.3444444444444446,154.72886968708147,73.56129821666666,1.5163895099697995,6.047716666666668,2.4758230452674894,7.471614933333334,204.62315418308995,16.126582278481013,6.0672151898734175,2.367088607594937,2.524613220815753,159.4898679865269,55.93708989873417,1.36076119335562,6.191418987341772,2.842657706933375,7.66161017721519,174.8201544933273,11.864583333333334,5.6297500000000005,2.0520833333333335,1.7233796296296298,166.0659966408297,41.76964767708332,1.0724502014547708,5.715479166666667,2.282139489026063,7.33872275,132.20613882797176,15.054794520547945,5.867726027397261,2.0136986301369864,1.6849315068493151,157.96575956272918,52.6148172328767,1.2490070259477808,5.993512328767123,2.7999041659620048,7.503036383561643,157.41941715683993,10.475609756097562,5.669610975609757,1.8414634146341464,0.7913279132791328,169.4006678492275,35.40256197560976,0.9879817109093171,5.742913414634147,2.329080096356519,7.411307365853659,117.32095640772529,12.791666666666666,5.660062500000001,1.9375,0.7523148148148149,155.30925058820637,40.853858604166675,1.3612541892551044,5.845239583333334,2.0482253086419755,7.369893541666666,158.5779596771334,11.36,5.349100000000001,1.66,0.22666666666666668,165.10651349508555,39.97743114,1.07135917453356,5.471630000000001,1.6464814814814814,7.112854200000002,117.2917273291562,11.944636678200693,0.0792207612456747,0.008314564917821806,0.6608996539792387,3.057926438549276,1.3454963564812028,56.23817413581316,0.2603635697063252,0.09008659169550166,1.1143342650341828,0.057929869377162616,53.66683469154391,-0.015570934256055255,-0.0015778546712803144,-0.0037207504351373924,0.1643598615916954,1.3023836985774702,-0.0548107922100328,-0.06360955017301292,-0.0019044774913494374,-0.0013903114186852009,-0.11944813782448345,-0.001496692041522489,-0.20669207944050322,1.977912341407151,0.010957670126874252,-0.0003219543646018056,-0.10501730103806237,0.16308542298546128,-0.1145109648715495,9.403354605853515,0.02664521305764241,0.014027084775086447,0.10487760991164982,0.0034681757208765824,7.881649316872766,-2.6296701852744073,-0.014406837195041855,0.00010364657799372233,0.006263413779510301,-0.16385291603197097,-0.02286894867711436,-12.534536301114713,-0.054138198702920935,-0.018946941658271696,-0.02627952489743078,-0.0067823872476019354,-14.252069768135915,2.1160250865051906,0.003844128460207617,-0.00017452977585106144,-0.02854671280276816,0.263673960869751,0.17982585480611926,10.183317319456458,0.06364040565056382,0.007260375216262992,-0.0242473309478482,-0.0006131993403979272,13.528242231677178,-0.6835569038251883,0.003643219415082702,0.0006379253609447915,-0.033985874768924486,-0.3447421288030537,-0.45022270589350805,-3.591072265144333,-0.08329728384028175,0.005670579940275855,0.01927530426409414,0.007698896134521497,-14.878660568041072,1.2339859903789347,-0.01145282724280529,-5.6971260260940065e-05,0.004810532534391116,-0.6852534307734462,0.3191649830325566,6.039436619208372,0.07255285611304631,-0.007681211494640871,-0.2426731986091072,-0.005375069161954591,11.395165491448118,-4.956891580161476,-0.016031790657439423,-0.0013845866199325724,-0.1278114186851211,-0.8819248650803821,-0.36936275228873,-23.58460782086217,-0.11622084966577623,-0.02478064806805072,-0.10293725640886862,-0.009108390823241056,-24.67068985131503,2.7188927335640143,0.011470415224913535,0.0009407821099758815,-0.08913494809688577,-0.3122474262035967,-0.11685379310847502,12.808095258892736,0.03227178880811003,0.016043584775086585,0.0678886912493823,0.007619671211072655,4.785191665790457,,,0.4967261904761905,1.0625,0.5,0.03125,0.5625,-0.0625,0.9135073293539475,0.03879382782656016,0.044168827826560154,0.6624597383205553,0.19377075272142874,0.26207376710032954,1.5759670676745028,0.4558445198217583,1.9255961582417862,1.5847931452455433,0.12062031750964003,0.11021452770578578,0.1099681677808173,0.3408030129962431,7.032579172823529,888.0,198.05380000000002,96.0,165.60493827160494,5541.695142035882,3602.589275,50.86433628728201,202.7133,118.73446311537876,254.58803700000004,7028.903031097161,775.0,206.429,110.0,164.11111111111111,4948.9360995696,2905.5390969999994,61.784465569999995,212.42200000000003,92.70113168724279,256.882466,8526.437646390645,1177.0,354.35900000000004,186.0,200.66666666666669,9283.732181224888,4413.677892999999,90.98337059818797,362.86300000000006,148.54938271604937,448.29689600000006,12277.389250985398,1274.0,479.31,187.0,199.44444444444446,12599.699570935623,4419.030102,107.50013427509398,489.12210000000005,224.56995884773661,605.267204,13810.792204972857,1139.0,540.456,197.0,165.44444444444446,15942.33567751965,4009.886176999999,102.955219339658,548.686,219.08539094650206,704.517384,12691.789327485289,1099.0,428.34400000000005,147.0,123.0,11531.50044807923,3840.8816579999993,91.177512894188,437.52639999999997,204.39300411522635,547.7216559999999,11491.617452449314,859.0,464.90810000000005,151.0,64.88888888888889,13890.854763636653,2903.0100820000002,81.014500294564,470.91890000000006,190.98456790123456,607.727204,9620.318425433474,614.0,271.68300000000005,93.0,36.111111111111114,7454.844028233905,1960.9852130000004,65.34020108424501,280.5715,98.31481481481482,353.75489,7611.742064502404,568.0,267.45500000000004,83.0,11.333333333333334,8255.325674754278,1998.871557,53.567958726678,273.58150000000006,82.32407407407408,355.6427100000001,5864.58636645781,406.11764705882354,2.69350588235294,0.28269520720594143,22.470588235294116,103.96949891067538,45.746876120360895,1912.0979206176476,8.852361370015057,3.0629441176470564,37.88736501116222,1.969615558823529,1824.672379512493,-0.5294117647058787,-0.053647058823530686,-0.12650551479467134,5.588235294117644,44.28104575163398,-1.8635669351411153,-2.1627247058824395,-0.06475223470588087,-0.047270588235296826,-4.061236686032437,-0.05088752941176462,-7.02753070097711,118.67474048442907,0.657460207612455,-0.019317261876108337,-6.301038062283742,9.785125379127676,-6.870657892292971,564.2012763512109,1.5987127834585446,0.8416250865051869,6.29265659469899,0.20809054325259493,472.89895901236594,-207.74394463667818,-1.1381401384083065,0.008188079661504064,0.49480968858131374,-12.944380366525706,-1.8066469454920346,-990.2283677880623,-4.276917697530754,-1.496808391003464,-2.0760824668970317,-0.5358085925605529,-1125.9135116827372,203.13840830449828,0.3690363321799312,-0.016754858481701898,-2.7404844290657433,25.312700243496096,17.26328206138745,977.59846266782,6.1094789424541265,0.6969960207612472,-2.327743770993427,-0.05886713667820102,1298.711254241009,-49.89965397923875,0.26595501730103727,0.04656855134896978,-2.4809688581314875,-25.166175402622923,-32.866257530226086,-262.1482753555363,-6.080701720340568,0.4139523356401374,1.4070972112788722,0.5620194178200693,-1086.1422214669983,101.18685121107265,-0.9391318339100337,-0.004671643341397086,0.3944636678200715,-56.19078132342259,26.17152860866964,495.23380277508653,5.949334201269798,-0.6298593425605514,-19.89920228594679,-0.4407556712802765,934.4035702987458,-237.93079584775083,-0.7695259515570924,-0.06646015775676348,-6.134948096885814,-42.33239352385834,-17.72941210985904,-1132.0611754013842,-5.578600783957259,-1.1894711072664346,-4.940988307625694,-0.4372027595155707,-1184.1931128631213,135.9446366782007,0.5735207612456767,0.04703910549879407,-4.456747404844289,-15.612371310179835,-5.842689655423751,640.4047629446368,1.6135894404055016,0.8021792387543292,3.3944345624691143,0.38098356055363275,239.25958328952282,0.7715584364182027,0.6830558159649798,0.45584451982175833,0.35919616238568397,0.3318714021168611,0.23595910012575255,0.19793230196717876,0.10378410927111137,0.13240760207122504,0.06655929821783725,0.0848714393875694,0.030928734338644553,0.05396404459240298,0.020066648702518165,0.03421578778389761,0.009896478977769175,17.00110220858766,5.6933621331269055,3.5432426945836895,2.1901901698677158,0.37255171516351754,-0.3807751975274464,4.017057388660325,0.9777917189761314,6.021926075326178,0.7739929931804533,14.540233326777956,10.953056461521864,35.45051700713205,11.70473462317993,2.2077733218648463,0.752757336357525,3.48833896965933,2.2409595717174247,7.0082676645285265,1.196736012162803,3.701426728441149,2.437201339718062,22.45585983213748,14.70271781120826,0.2791542897487198,0.5653101097208169,0.6568379993338291,0.7562348701942339,0.7562348701942339,0.7562348701942339,2.4572187482871057,381.76413832846157,0.0,0.0,4.0,0.0,6.0,1.0,1.0,1.0,0.0,3.6224813635822297,2.1207563628186525,1.640424632671098,1.118797059332581,1.118797059332581,1.118797059332581,63.148853536520306,471.55885930725435,27.981671282538002,13.869378214919244,30.111615551472745,,8.0,200.0,0.0,4.794537184071822,17.364011027896243,10.586084805438322,0.0,0.0,24.26546827384644,27.694948798762496,5.316788604006331,11.600939890232516,7.947619047619048,17.0,8.0,0.5,9.0,0.0,0.003273809523809512,-1.0,0.10938375350140045,0.03640756302520998,-0.07297619047619047,0.03033963585434174,0.10509813936519508,0.0,0.5427170868347342,0.8157738095238094,0.43333333333333374,0.5063095238095242,0.7854341736694677,14.61611726966316,0.6207012452249625,0.7067012452249625,10.599355813128884,3.10033204354286,4.193180273605273,25.215473082792045,7.293512317148132,0.6089018606348049,0.38346315158777716,0.06291192330736968,0.2516476932294787,0.46153846153846156,0.42961962474034393,-0.45158148075414,-0.03910501923210492,-0.013281808257474706,-0.041052861886740004,0.5703803752596559,0.5995378228090282,0.023266992767081753,0.017633465376736126,0.026066861861262086,-4.0609383162383805,0.7026361529548087,0.7289035064730853,1.4514523661658427,1.2310209424083771,0.5805760445915928,1.3124783329301484,0.7107354800817657,1.0394148682773203,0.7022871113048671,0.6727177077987924,0.6216153125373273,1.0678911339991466,0.603335023174971,0.69009687789367,1.1024989273751955,1.8969240837696337,1.0656110738583182,1.2180062468830988,0.6076527226438723,0.8696193526297243,0.6441474033537514,0.5394522991518178,0.6488080601695205,0.8595804665505202,1.1309156680405417,1.4511429326829612,1.7265793876290694,0.9573696069984757,1.12603122302746,1.1555842139826786,1.133805390468553,1.1393014441868639,1.3654001324092635,1.0759633930143984,1.2603926183824523,1.2075210272873915,0.6373614933371958,1.0799673602193511,1.015707773567081,1.0631953534031415,0.9686111751393486,0.7417099657633656,0.6363124866701299,0.6603216279988264,0.9639260296946136,1.435122471670353,1.0601157704461857,0.682814065897637,0.9027345672153526,1.0488034340991708,1.1055096774788915,0.9153517894283871,1.1170220736193006,1.350338536242634,0.9116225894406458,1.2707595528466193,0.9587337647744365,1.2501235871126797,0.9028450534000312,1.244939572057976,0.7699619167396773,1.5333438693289392,1.006878204324325,0.8327959392159366,1.3780555524322269,0.6053970362758719,0.7660210650609923,0.6035658687998123,1.3352337438676949,2.002935070653153,1.4050714697348379,0.6889794550490047,1.6344555692352258,0.6576860520729596,0.57071111908094,0.9178664921465969,0.9581617667602641,1.2728223038555861,1.635128257704536,1.5454791020851943,0.947108570569838,0.29664416229980506,0.8244770592287425,1.5065008047128856,0.7418786210892236,0.2826097410765762,0.17023412875274438,0.8370942408376962,0.8130162189346632,0.9306780200189726,0.7441209280068649,0.8544770137406709,0.4106274720304665,0.151092048593233,0.35453860367406137,0.8976329800123964,5.5,0.0,2.000000000000001,1.5,0.8622222222222224,0.5138888888888888,0.2636734693877551,0.2065972222222222,0.061224489795918366,0.0,2695.357647321542,3154.094192093472,1452.2527434808303,1269.1030173571448,10.794264201381162,0.4812572506958252,5.599446288540097,0.9277377878367814,1.0,0.46153846153846156,1.4649814776681094,2.9667064784316866,3.447038208579241,3.968665781917758,3.968665781917758,3.968665781917758,0.34375,0.0,0.08695652173913049,0.07500000000000002,0.045380116959064326,0.03211805555555555,0.021972789115646263,0.025824652777777776,0.01020408163265306,0.0,0.6412062177798274,14.0625,5.55765595463138,4.816635160680529,102.00064843080672,1.0,3.663695043168346,58.47935179095538,,48.445748595823886,48.92456091558284,48.44509659569282,48.423597295071495,59.33261962934182,49.112643540035435,49.36718318336374,56.36435883532859,-0.0013035921205098403,-0.019917186435348247,-0.44749791142554807,0.24869109947643966,0.4259041951301286,-0.04073648504955913,-0.0011310742418379044,-0.007314684974927852,-0.015433056046615025,-0.10719237626675628,-0.025836275096324003,-0.0038513931486455068,0.16558999613750483,0.1383181624939576,-0.03872173322162827,-0.15890052356020956,0.05333202948558545,-0.08510685615754715,0.1672059015135298,0.10233848417309933,0.15570668743356253,0.09411683119017492,0.05986852306357561,0.14686257093740332,-0.2201548909456268,-0.18185683864314595,0.012465664652104845,0.009477102525018204,-0.05358301428261471,-0.01699666340005719,-0.2228830593049529,-0.2079330789786975,-0.21031921956059288,-0.02358316146423501,-0.1170792774180796,-0.26556568595951796,0.1771527375434531,0.04852425550780097,-0.02099084889901654,-0.0431937172774869,0.08622639104256598,0.13365019826319502,0.18107482107907902,0.24442899489489428,0.08059329451383306,-0.02175947712341449,-0.010585201502968787,0.2520782585638272,-0.05722709884283877,0.0459881899365315,0.0767238415058176,-0.0514236534461737,-0.11273722103223788,-0.33461458570645924,-0.06385470937360134,-0.31992680056674666,0.06294588166286468,0.017297596303836944,0.13290028472870322,-0.2772412543716771,0.10330879235791196,-0.14456850783456202,-0.006851983335751621,0.007278763887115354,-0.22409088136814054,0.2372098456418343,0.10739033960496921,0.2786597840661106,-0.08526475860696171,-0.21777415109968196,-0.09278579806488525,0.2123316114494752,-0.41498889532638084,-0.20236855093733053,-0.16652544464049923,-0.19339005235602097,-0.2884061741847459,-0.274517839093004,-0.4193700841692725,-0.4463790759854249,-0.27507587535124944,-0.09237556417213014,-0.157231337152502,-0.4597008560894742,0.2276245654692932,0.144790520118106,0.11314868778754344,-0.13486910994764392,-0.10211083637176419,-0.08684809330444851,0.22774735232267052,0.12394894126129362,0.17809070665382604,0.0609230940657647,0.13153268414025662,0.08916478292960403,3.5327755290014426,7.2580334843740575,3.1473451902649443,16.654176123603822,28.557891302114207,32.68118253356457,33.2069831274898,33.2069831274898,33.2069831274898,30.80953853186858,25.356690323928692,1.9299250801542405,1.7634324432925725,1.7594906844930769,5.45284820793989,2837.1653850335924,2527.8685585540443,487.61303029668034,9.0,23.0,23.0,27.0,28.0,23.0,19.0,17.0,9.0,239.107691876,16.0,4.3694478524670215,5.14166355650266,6.018593214496234,6.812345094177479,7.68662133494462,8.490233009833455,9.36142922633904,10.17072454136085,11.039508015264646,0.627450980392157,0.9588235294117647,1.1290986761924113,0.5870672471802808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6656265234237408,0.9502883506343714,0.9926417034402983,0.6011784940314413,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,5.316788604006331,0.0,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,0.0,23.733674027155736,39.827682935685715,16.12501005782167,6.041840829147961,192.73829287675366,-202.59094017856725,-17.543506431448055,-5.9585570640755074,-18.41735819805157,255.88714641327397,268.9679191286871,10.43816485108995,7.910821150843738,11.694257353421174,0.5,0.947300083776818,0.28792674551730973,0.0,0.17030233988285604,24.413748105518607,0.052699916223182035,4.0,0.1875,0.28795915044129594,0.5831406677562215,0.6775554566472405,0.7800874238803058,0.7800874238803058,0.7800874238803058,3.2993000000000023,,1.0399159663865545,0.5879898120088726,0.5300446839313885,1.0529505248587374,-1.3665311283925297,0.6129431154424184,0.5985419659928938,-0.635030476563845,68.13320000000003,4.794537184071822,0.0,5.316788604006331,0.0,39.275714880293805,0.0,34.85155307928476,0.0,0.0,3.4965075614664802,0.0,4.8283137373023015,0.0,6.318968113746434,0.0,7.877397186353287,0.0,9.470625553571013,21.333333333333336,7.041018321680524,0.0,0.0,0.0,0.0,0.0,1.2412580309901744,0.0,32.6,0.0,12.053441358024692,0.0,0.0,0.0,0.0,0.0,0.06706018518518553,38.38935499054199,5.316788604006331,0.0,0.0,17.364011027896243,0.0,0.0,38.05293747453131,24.26546827384644,5.022633313741326,0.0,0.0,19.960286404129548,22.63130179640719,18.23831480424754,116.95870358191075,,96.76150769584947,97.77562310466458,96.82393760589422,96.71557577453565,119.17768843183086,98.14866919064058,98.65954862097838,112.9668540993686,18.23831480424754,116.95870358191073,,95.85158122526124,97.2611320191568,96.36014850745426,95.79424406528429,120.03177038707624,97.61234396462851,98.13582440073466,113.36374814722106,4.640019009614408,87.45920617731448,,73.91870917133672,74.09456482203345,73.26189020035044,73.89792003391688,91.59221051284602,74.48866999807662,74.93042342055553,86.49063714048083,1.1398946752654713,7.309918973869422,,6.047594230990592,6.110976444041536,6.0514961003683885,6.044723485908478,7.448605526989429,6.134291824415036,6.166221788811149,7.060428381210538,2.320009504807205,58.47935179095538,,48.445748595823886,48.92456091558284,48.44509659569282,48.423597295071495,59.33261962934182,49.112643540035435,49.36718318336374,56.36435883532859,32.30980392156863,0.0,7.9789119845469045,5.85407392972621,0.0,0.0,0.0,33.749817916970144,0.0,3.2441761148904007,0.0,0.0,-0.20975308641975343,0.0,-0.07574239417989426,0.0,0.0,20.440068797069003,424.982916223855,49.80937024071572,100.86802026667735,117.1992990916942,134.93463658520378,134.93463658520378,134.93463658520378,210.0,101.09056584538601,23.6425230661727,47.991812152439515,29.1,29.1,1.0,6.54965074223381,5.0,3.6745156713516494,3.9467506393832688,,3.9465757431871094,3.9427952174398078,3.943559045928009,3.946635459516313,3.9449079047716604,3.94359061395334,3.943736806410021,3.9435625532607106,0.22965722945947808,0.2466719149614543,,0.24666098394919433,0.24642470108998799,0.24647244037050056,0.24666471621976957,0.24655674404822878,0.24647441337208376,0.2464835504006263,0.2464726595787944,1.7714249631170615,1.8428962466778969,,1.842851931724299,1.8418935470684026,1.8420872559648283,1.842867062785073,1.842429238473021,1.8420952608909913,1.842132331104742,1.8420881453470086,194.05999999999963,67.36747014917964,69.9063300691144,,69.55359351406564,69.9267314192063,69.94689599840495,69.54461228648475,69.75467342952192,69.86318449968394,69.84238830134696,69.8111649520827,4.210466884323727,4.36914562931965,,4.3470995946291024,4.370420713700394,4.37168099990031,4.346538267905297,4.35966708934512,4.366449031230246,4.365149268834185,4.363197809505169,4.680165891920226,4.717159833313963,,4.7121012143475225,4.717451629117037,4.71773995479659,4.711972079287272,4.714988050276429,4.716542451606171,4.716244736947068,4.715797582555975,0.0,12.053441358024692,3.835665627362056,0.5740261243386244,0.06706018518518553,6.83126523526077,0.0,7.9789119845469045,0.0,234.60002769829438,86.46730130984363,-90.88744953378946,-7.87046327949581,-2.6731602804055723,-8.262495412162679,114.79748346832666,120.66585087403188,4.682826291701955,3.5489956139421146,5.246341342349211,454.0,20.0,2.444154323166692,1.7255787022342324,0.3535533905932738,0.25,0.23230780835289197,0.049104637582399135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.13144585576580214,0.04538592830632449,12.344934982691242,10.928893055439676,7.293512317148133,5.7471385981709435,7.633042248687806,5.427059302892308,4.552442945245112,2.3870345132355615,3.575005255923076,1.7971010518816057,2.3764003028519434,0.8660045614820475,1.2411730256252684,0.46153292015791775,0.6500999678940547,0.18803310057761433,2.5504656684636586,1.168218029454696,3.90324098044765,1.8158286086756992,5.052583555980298,1.7139984813780555,54.8977211132526,35.209098170126616,27.444587645950456,25.72204249765653,25.72204249765653,25.72204249765653,78.0,85.0,37.79427399999997,20.005725999999996,0.17647058823529413,16.03,7.756944444444445,3.4305555555555554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,34.0,0.0,1.0,34.0,6.0,1.0,4.0,30.0,7.0,16.0,27.0,0.0,0.0,0.0,13.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,2.0,1.0,0.0,16.0,3.0,0.0,1.0,1.0,0.0,1.0,3.0,0.0,0.0,1.0,0.0,1.0,3.044522437723423,4.123093975508087,3.56953269648137,3.917010546939185,4.325786916351006,4.7433003629753445,4.588151180818497,4.6491870714048655,4.364689715020605,3.944006051281197 +4238,CCO/C([O-])=N/c1c[n+](N2CCOCC2)no1,0,25.483870967741936,6.797083870967743,3.096774193548387,10.0,171.50844282578987,100.68574790322579,1.2495966667060003,6.793009677419355,5.301075268817204,8.262469290322583,196.31110769423066,27.5,6.95218125,3.65625,8.625,156.55159125329988,104.91312893749993,1.4771393856249988,7.027587500000003,3.5234375000000004,8.310624500000001,232.43423230265185,21.892857142857142,6.953926785714285,3.142857142857143,6.839285714285714,169.71856466259803,81.31064519642852,1.1509010177641428,6.962135714285716,3.8343253968253963,8.412263928571432,177.7412673273677,17.22222222222222,6.627679365079364,2.857142857142857,4.714285714285714,173.8098569478887,61.966326285714295,1.0635479834267616,6.634688888888889,2.9206349206349214,8.155864888888887,155.85557892963772,18.68421052631579,6.6439456140350845,2.7719298245614037,5.157894736842105,168.09431089607878,67.63265998245613,1.1440310138735437,6.67043684210526,3.7928849902534125,8.138552070175436,166.48167798687874,16.910714285714285,6.739428571428571,2.517857142857143,4.767857142857143,173.35330391411136,60.2209067857143,0.9835725812890711,6.731607142857141,3.822916666666668,8.289102714285711,144.85779737421885,18.81081081081081,6.918000000000002,2.864864864864865,5.081081081081081,169.75019082585803,67.26316054054048,1.0916795627404323,6.91881891891892,3.533783783783783,8.430524972972975,162.94646303203498,18.580645161290324,6.841354838709679,2.7096774193548385,3.774193548387097,170.56002142340475,66.00705412903228,1.1160652466999355,6.857245161290324,3.5752688172043006,8.329738322580642,166.84747093700702,16.161290322580644,6.970225806451612,2.4838709677419355,2.870967741935484,174.63903497512726,55.19455458064517,0.9692076852434516,6.955645161290325,3.951612903225805,8.537007225806454,147.92670445140047,8.434963579604577,0.20709802289281992,0.041383773085129076,0.49531737773152973,5.467221644120707,1.3915373236379414,39.62664777315296,0.18583053611036623,0.18810967741935478,1.9202219909816167,0.13187695317377726,42.46734792052708,0.9360041623309069,0.02479814646201868,-0.008741698836161996,0.1589164932362123,2.0468912591050996,-0.4778667472747942,4.188063311524443,-0.07170631470114429,0.025140624999999805,0.009129487513007316,0.007774240374609784,-7.581624043331191,0.6744834250037172,0.01622945406570534,0.008417340036102613,0.07035082503344733,0.87897651256132,-0.26187985051118934,3.135271999888503,-0.00688352297739274,0.01533392857142841,0.3747408866425514,0.00839195466032409,0.19245588328526225,0.059148043539302676,-0.025701811935318702,-0.005891628634548473,-0.04575260558611234,-0.08012486992715925,0.17881077228319742,0.48713689965809326,0.03219677913068951,-0.02161111111111113,-0.06103100275837012,-0.017958644930049703,6.2999058305471936,-0.19670664695036227,0.017436385709330565,0.006345403891553784,-0.03125399346441024,-0.058053562626649825,-0.0915703604287756,-1.117137171002429,-0.02790397259633228,0.015038596491228044,0.10922213905674116,0.01505358672435511,-5.161184236910975,-0.17862717407462445,-0.00802855284673704,-0.010553003902258435,-0.007414151925078034,-0.8122677270700164,0.09674863419012535,-0.7863398584064215,0.008514999931898654,-0.007758928571428627,-0.3152392720876072,-0.006924506169169004,0.9487902268166845,-1.5247630565008292,-0.021307961864049284,0.003256778184456506,-0.1570436201029333,-1.4916331524031838,-0.1141222686558895,-7.162710371234924,-0.004982579015018408,-0.022264864864864994,-0.18344489130129088,-0.009636541665494809,-5.580568065925705,-2.3309053069719035,-0.061651196670135286,-0.0041381767243294865,-0.20395421436004166,-2.4755463059313207,-0.1478047037382785,-10.931924008324664,-0.03873056769441827,-0.05522580645161303,-0.3690600069372182,-0.03651002705515085,-9.041191577805526,-3.684703433922996,-0.13069510926118622,-0.01330865460421165,-0.22164412070759631,-3.7908428720083234,0.15223046073759292,-16.94081024245578,0.0020457704061654083,-0.1168290322580647,-1.020811654526535,-0.08071791467221637,-4.188985337674371,,,0.43725490196078426,1.0588235294117647,0.35294117647058826,0.029411764705882353,0.7058823529411765,-0.35294117647058826,0.7236311804675734,0.007187562616989496,0.017305209675813026,0.6866716538369386,0.22832146203842008,0.2594447143077137,1.4103028343045119,0.4877661763461338,2.013143602370672,1.0584175448435924,0.5008939669513713,0.4538320905757087,0.0,0.9547260575270801,7.8097259654193545,790.0,210.70960000000002,96.0,310.0,5316.761727599486,3121.2581849999992,38.73749666788601,210.5833,164.33333333333331,256.13654800000006,6085.6443385211505,880.0,222.4698,117.0,276.0,5009.650920105596,3357.220125999998,47.26846033999996,224.8828000000001,112.75000000000001,265.93998400000004,7437.895433684859,1226.0,389.4198999999999,176.0,383.0,9504.23962110549,4553.396130999998,64.45045699479199,389.8796000000001,214.7222222222222,471.0867800000002,9953.51097033259,1085.0,417.5437999999999,180.0,297.0,10950.02098771699,3903.8785560000006,67.00352295588598,417.9854,184.00000000000006,513.8194879999999,9818.901472567177,1065.0,378.70489999999984,158.0,294.0,9581.37572107649,3855.0616189999996,65.20976779079199,380.21489999999983,216.1944444444445,463.8974679999999,9489.455645252088,947.0,377.408,141.0,267.0,9707.785019190236,3372.3707800000007,55.080064552187984,376.96999999999986,214.0833333333334,464.1897519999998,8112.036652956255,696.0,255.96600000000007,106.0,188.0,6280.757060556747,2488.736939999998,40.392143821396,255.99630000000005,130.74999999999997,311.9294240000001,6029.019132185294,576.0,212.08200000000005,84.0,117.0,5287.360664125547,2046.2186780000006,34.598022647698,212.57460000000003,110.83333333333331,258.2218879999999,5172.271599047218,501.0,216.07699999999997,77.0,89.0,5413.810084228945,1711.0311920000001,30.045438242547,215.62500000000006,122.49999999999996,264.64722400000005,4585.727837993414,261.4838709677419,6.420038709677417,1.2828969656390015,15.354838709677422,169.48387096774192,43.13765703277618,1228.4260809677419,5.7607466194213535,5.831399999999998,59.52688172043012,4.088185548387095,1316.4877855363395,29.95213319458902,0.7935406867845978,-0.2797343627571839,5.085327783558793,65.50052029136319,-15.291735912793415,134.01802596878218,-2.2946020704366172,0.8044999999999938,0.2921436004162341,0.2487756919875131,-242.6119693865981,37.77107180020816,0.9088494276794991,0.4713710420217463,3.939646201873051,49.22268470343392,-14.665271628626604,175.57523199375618,-0.38547728673399345,0.8586999999999909,20.985489651982878,0.46994946097814905,10.777529463974686,3.7263267429760685,-1.6192141519250782,-0.3711726039765538,-2.8824141519250777,-5.047866805411033,11.265078653841437,30.689624678459875,2.028397085233439,-1.3615000000000013,-3.8449531737773173,-1.1313946305931313,396.8940673244732,-11.21227887617065,0.9938739854318421,0.3616880218185657,-1.7814776274713835,-3.30905306971904,-5.219510544440209,-63.67681874713845,-1.59052643799094,0.8571999999999985,6.225661926234246,0.8580544432882412,-294.18750150392555,-10.00312174817897,-0.44959895941727424,-0.5909682185264723,-0.4151925078043699,-45.48699271592092,5.417923514647019,-44.035032070759605,0.47683999618632467,-0.4345000000000031,-17.653399236906004,-0.38777234547346423,53.13225270173433,-56.41623309053068,-0.7883945889698235,0.12050079282489073,-5.810613943808532,-55.1904266389178,-4.222523940267911,-265.0202837356922,-0.1843554235556811,-0.8238000000000048,-6.787460978147763,-0.35655204162330795,-206.4810184392511,-72.25806451612901,-1.911187096774194,-0.1282834784542141,-6.322580645161292,-76.74193548387095,-4.581945815886634,-338.8896442580646,-1.2006475985269665,-1.7120000000000037,-11.440860215053764,-1.1318108387096764,-280.2769389119713,-114.22580645161288,-4.051548387096773,-0.41256829273056117,-6.870967741935486,-117.51612903225802,4.71914428286538,-525.1651175161292,0.06341888259112766,-3.6217000000000055,-31.64516129032259,-2.502255354838707,-129.8585454679055,0.7110338629300311,0.5621902532954738,0.46066805543801526,0.3031761049998743,0.30290420850537325,0.14871909565085623,0.19340934958078143,0.08149617531974006,0.12974625393973632,0.04253852697856462,0.08204778308813021,0.022841252978922488,0.05297048211028841,0.010572298999051094,0.03604381847466823,0.005565126100292662,8.033907963116452,5.829943319349443,3.573157766874033,2.3158484704901525,0.6033138242863367,-0.6317925790923301,3.1348899715178122,0.9878341688314054,7.004091546142111,0.9880188598127724,14.726646165159979,11.101077627477059,16.016395397347573,11.850575313131298,1.859882981326032,0.7097604347233744,3.519317095072172,2.361519028236223,8.00191809201783,1.377701709336415,3.7261953083166004,2.5555049761356363,20.73509325350298,14.681182876835987,0.35059790137453783,0.6208468906602971,0.7629527816525562,0.7976037605460533,0.7976037605460533,0.7976037605460533,1.7065490822166243,386.10250204832664,0.0,2.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1558804490899117,1.7696968979999248,1.0407955647254972,0.8630608871665642,0.8630608871665642,0.8630608871665642,196.06158168010677,1003.9148583201247,75.11148020271594,32.38435026839112,67.10725984416052,,11.0,295.0,6.08380568594452,5.106527394840706,12.491064166373928,13.213763929025836,13.08951281182515,10.987649299862316,6.923737199690624,5.008912523954532,15.000634230914994,9.259957890773396,7.433333333333333,18.0,6.0,0.5,12.0,0.0,0.06274509803921573,-6.0,0.2311169629141978,0.02241772564353206,-0.20869923727066575,0.0,0.2653078470824949,0.0,0.6698924731182798,0.9745098039215684,0.438775510204082,0.6474747474747478,0.9745098039215684,12.301730067948746,0.12218856448882143,0.2941885644888214,11.673418115227957,3.8814648546531414,4.410560143231133,23.975148183176703,8.292024997884274,0.4486921529175051,0.11210762331838565,0.0,0.242152466367713,0.6666666666666666,0.2866389786604882,-0.6263033073385846,-0.1026229799030219,-0.020203332494793055,-0.07828791341732308,0.7133610213395118,1.5586867113441663,0.06085486203871784,0.0502802164949731,0.06776898744974635,-0.7631608469292683,0.6812083641746856,0.6621893484211732,1.1334512802745178,0.7631959033613444,0.3955022363913209,1.785548424202227,0.6922872037139953,1.6537397404710872,0.6292523021915837,0.5669707369942195,0.7445916321486324,1.2402732630816644,0.8737905784075289,0.9532736246906647,0.8618059153409285,0.9245573229291714,0.812340257762793,1.2603057754177867,0.8729636533838225,0.9964751467240771,0.9387861405494393,0.5134734981420312,0.9737357693000364,0.9194592600874846,0.9670085650840649,1.077915915729676,0.9897274775064938,1.224989995998399,0.9609005383653272,0.8418400489465027,0.9618718475244152,0.7197953261122488,1.0704119079466339,0.6826314340765206,1.0583130214593508,0.7798904407374202,0.9399794823847184,0.7943221494414717,0.8071833143269167,1.0454444935869083,0.9300683188748422,1.1553139635392666,0.9472534486261074,1.16529604885579,0.7968295055985474,1.0909612361829426,0.7495318465588767,1.1035998330701335,1.0417878291212859,1.1468347072716731,1.51047805777633,0.9420018007202879,1.2706645277067812,0.8092008124366746,1.0365157486118268,0.8363738214658276,1.1454138065350639,1.5779185590421134,1.1747691558689342,0.8895390033735868,1.164352731710245,1.2267544117668625,0.9994965393709327,1.3993300022711783,1.3466959536620746,1.0698713324635465,1.1601355221269203,0.9800910474476275,1.228799537267487,0.7886890231994999,1.2352629949285654,1.049162584739075,1.2120651369356035,1.2816323085178865,1.080442005910867,1.4495798319327728,1.4474685953559194,1.1886382262566153,1.2108519390315955,1.1494463965773791,1.2684084052189097,1.1671333092485547,1.2527120636340034,1.1276706874805122,1.482235381199112,1.9038248186625342,2.0103551371304977,1.5756302521008398,1.9385230300723257,0.7558740880859205,1.4642660672220351,0.8202323094319022,1.8782796584010706,2.7147308526011558,1.9339605758693235,0.9441786496528317,3.0,0.020610141822263034,1.333333333333334,0.9097222222222221,0.4411111111111111,0.3894444444444444,0.19841269841269837,0.14671910430839,0.05366591080876794,0.04125,3173.5054093708723,3520.054832344168,1781.794117459872,1643.368069733672,12.743906996183158,0.47711957916333064,6.663539453267624,0.9124831608723921,0.0,0.6666666666666666,1.7983158612969632,3.18449941238695,3.9134007456613777,4.091135423220311,4.091135423220311,4.091135423220311,0.16666666666666669,0.006870047274087678,0.057971014492753645,0.045486111111111116,0.023216374269005847,0.024340277777777777,0.016534391534391533,0.014671910430839,0.006708238851095992,0.006875,0.3693400324077293,13.432098765432098,6.805293005671078,4.0,97.99018974099147,1.0,3.743668055617736,71.06742841853477,,51.59183821457215,49.36625697538526,49.713960673078134,51.617756023843185,103.25228901891569,50.74288545893323,51.7169998008455,82.40960108089298,0.1109671848013819,0.1197411067263184,-0.21123494027912246,0.3208377100840336,0.3743933193757139,-0.3434092202611509,0.10568805455105526,-0.38586938509695384,0.13364875930308232,0.004754391708815045,0.05895071267202762,-0.17852831444806389,0.07996281414120063,0.07836605023556706,0.20339711458371867,0.14203181272509008,0.1607720648213606,-0.18819462910743084,0.07912029344083575,-0.037041936817663594,0.08151589424739872,0.19515498124827954,0.06363473266830649,0.004531855477422843,0.0070122464645040565,-0.12410457413502321,-0.14236567126030328,-0.09237028144591167,-0.014655500570993537,0.12849872529162681,0.012293164499978934,0.1732588185160677,-0.11488569544953961,-0.031783305807872295,-0.13617728115378272,0.14834705106466187,-0.023320390786984724,0.08419387817311261,0.15333072406184137,-0.06309892378003831,-0.01061847614849838,-0.06580517739141932,-0.028191563853637122,-0.15015816657688535,0.0799458948499622,0.05687995428117498,0.1141487300250155,-0.12153300099100978,-0.021176994113707638,-0.03876692174358459,-0.25500342563135137,-0.014968487394957963,-0.14857047691554737,0.06952643852713361,-0.019843713828833293,0.04582131715339576,-0.041246833644457165,-0.16416813970891825,-0.05250732597715102,0.02234164065512732,-0.18076699941984914,-0.10288829205808914,0.07869698535600184,-0.31705655235066993,-0.27283202502083365,-0.08201164763409717,-0.1807548903010579,-0.026812487975922398,-0.11836108152601692,-0.09553316864552411,-0.07307221947110439,-0.131408442937598,-0.27633851468048354,-0.2976908992609834,-0.09999515307163974,-0.411764705882353,-0.45279786829082597,-0.10621684465628839,-0.2758730456057158,-0.2084187480975456,-0.2935830160853319,-0.1921965317919075,-0.27684918536934017,-0.21289748525679328,-0.4368369109301752,-0.6310784981700442,-0.3215911361401217,-0.44747899159663873,-0.6933764750666157,0.10939732492378418,-0.42751055651831266,0.01100879569625957,-0.6210686970538819,-0.5316112716763006,-0.6120699085749466,-0.09864014455325985,4.307294763063802,2.997669585461677,0.4999999999999999,18.18182670501856,34.530846044888975,36.24338591742007,36.42254247239948,36.42254247239948,36.42254247239948,34.223441240301426,17.99309826234107,8.515197438173313,7.7151455397870485,0.0,16.230342977960362,3307.445536435445,3069.9418054500893,350.7895379139577,26.0,23.0,28.0,35.0,37.0,37.0,39.0,36.0,33.0,242.101504928,18.0,4.418840607796598,5.220355825078324,6.056784013228625,6.880384082186005,7.727094484779841,8.561210076833012,9.412382853382338,10.252629192258004,11.105934192866018,0.6881720430107529,1.026838709677419,1.1583072530296992,0.6505729962588056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6175990341896854,1.0078431372549022,1.0383901510701785,0.6027046873666307,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,14.580253302440804,0.0,6.08380568594452,5.2713665444792746,6.196843571613076,4.523094936973348,0.0,4.992404732635669,5.008912523954532,6.923737199690624,6.606881964512918,0.0,31.094082469100226,131.69905912176648,-287.7611296509692,-47.15112355151215,-9.282617085515136,-35.97014120637115,327.76064080187325,716.1537286691555,27.960356651203792,23.101733182875982,31.137118637789367,0.45454545454545453,0.6950313434526506,0.2747484364686948,50.95959345300611,0.14927286920561553,42.412739005030296,0.30496865654734934,6.0,0.16666666666666666,0.3629884139888942,0.6427882976115397,0.7899163659414576,0.8257919482606922,0.8257919482606922,0.8257919482606922,-1.6853999999999976,,1.5714285714285716,1.8855281526291297,1.5935350853437962,1.5670630303235251,-6.40190433008388,1.679620563035496,1.555031173324093,-2.873276425205818,54.18900000000003,23.89415396766339,0.0,5.2713665444792746,4.992404732635669,6.923737199690624,37.91907122931844,6.196843571613076,0.0,0.0,3.6109179126442243,0.0,4.859812404361672,2.3978952727983707,6.293419278846481,4.59511985013459,7.80994708647679,6.580639137284949,9.371353167823885,21.33333333333334,1.53,3.763552059712774,0.0,4.897834467120181,0.0,0.0,0.12031651549508737,1.5144633408919124,31.83199999999999,0.0,0.0,0.0,0.0,0.0,0.0,3.595217545351474,-0.682613431174939,35.907524843920676,14.906245647044475,5.884182201861009,0.0,44.2653309357877,9.473725907600098,0.0,6.923737199690624,15.712343241222094,0.0,0.0,0.0,20.167762884022974,19.14557005988025,21.830383585867192,142.13485683706955,,103.01813036850798,98.54953856952926,99.29519655581136,103.07041412595784,207.25774325313537,101.31732972766841,103.26906894353755,165.33833246076614,21.830383585867192,142.13485683706955,,101.81644969623903,97.1992956309511,98.14324980162085,101.87207180865161,212.9064823679153,100.0423914773898,102.07992745805443,167.69247858699185,4.576522048566932,108.54743516391395,,77.86875624761717,74.44436203734769,74.20264009613345,77.90601461680095,153.74586228329088,76.52253054512047,78.06546584371173,124.00558306848677,1.2841402109333642,8.360873931592327,,6.0598900216769405,5.797031680560544,5.840893915047727,6.062965536821049,12.191631956066786,5.959842925156965,6.0746511143257385,9.725784262398008,2.3473205096530982,71.06742841853477,,51.59183821457215,49.36625697538526,49.713960673078134,51.617756023843185,103.25228901891569,50.74288545893323,51.7169998008455,82.40960108089298,31.243137254901967,0.0,1.7100364771712173,0.0,0.0,0.0,0.0,32.19009468317553,3.0004487223034304,0.0,9.877857319631762,0.0,0.0,1.9277520313681027,0.0,0.0,0.0,18.68384530836555,319.33889250027903,55.74779170020586,98.71948178399545,121.31542311550271,126.82519811982964,126.82519811982964,126.82519811982964,329.0,104.63561532840875,140.12080742336067,62.519104110370954,87.03,87.03,0.8333333333333334,7.0412476083437,5.169925001442312,3.5797352442620003,4.0550737676002555,,4.036676849296153,4.034320045529139,4.028149376401233,4.036684613672068,4.044350809901062,4.035516930523779,4.0368316435056535,4.049298267828495,0.21057266142717648,0.23853375103530916,,0.23745157937036196,0.23731294385465523,0.2369499633177196,0.23745203609835694,0.23790298881770955,0.23738334885433995,0.23746068491209726,0.23819401575461735,1.8059170946232792,1.930597130227397,,1.9260500424900222,1.9254660244648105,1.92393530973962,1.9260519659455617,1.9279492967025593,1.925762656232458,1.9260883886959268,1.9291718499652817,166.44999999999968,125.12027633615614,80.21055528030847,,81.32123380643023,81.44540333399836,81.88750863099614,81.32119601251779,81.20416953279417,81.38810951893113,81.31249408143864,80.78295903424406,7.360016255068008,4.718267957665204,,4.783601988613543,4.790906078470492,4.816912272411537,4.783599765442223,4.776715854870245,4.787535854054773,4.7830878871434495,4.751938766720238,5.359903736425755,4.915283369248464,,4.929035411945662,4.930561149084885,4.9359747105208145,4.929034947197165,4.927594845837528,4.92985743869471,4.92892793454705,4.922394291304513,14.775691786751942,5.109680886243386,16.76977237654321,0.0,0.12031651549508737,0.0,0.847386568825061,4.710485199474647,0.0,199.84598142058985,60.51041018431252,-132.2146422791219,-21.664041078040235,-4.264988460616836,-16.526830284890238,150.59280566960857,329.0437772735259,12.846657076720039,10.61431539592019,14.306251185805474,581.0,20.0,0.8261326131600777,0.25674633143054276,0.0,0.0,0.08333333333333333,0.028867513459481287,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.026352313834736494,0.25343678769327627,0.06921377249831542,0.25137565482875424,0.05065145917288378,12.08757566981053,9.557234306023055,8.292024997884274,5.457169889997737,6.966796795623585,3.4205391999696935,5.41546178826188,2.2818929089527216,4.541118887890772,1.4888484442497616,3.0357679742608177,0.845126360220132,1.9599078380806711,0.39117506296489046,1.4057089205120608,0.21703991791141383,1.6720135958407631,0.5246749975533115,2.704567768385425,0.6617146322670167,3.285642953237337,0.6750277322015953,58.09496395975628,29.349383472375983,25.919869340158805,25.203466406603052,25.203466406603052,25.203466406603052,82.0,92.0,31.973101999999976,22.400897999999998,0.3548387096774194,52.08,5.194444444444445,3.944444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,5.0,5.0,31.0,0.0,1.0,32.0,5.0,1.0,3.0,29.0,6.0,18.0,26.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,7.0,0.0,2.0,17.0,8.0,0.0,4.0,4.0,0.0,2.0,3.0,0.0,0.0,0.0,1.0,1.0,3.1135153092103742,4.945207488773801,3.5624655292582776,4.005057871395335,4.511546083955424,4.697065450692347,5.0106352940962555,5.206750173022546,5.173320876373351,5.147494476813453 +5358,CNS(=O)(=O)Cc1ccc2[nH]cc(CCN(C)C)c2c1,0,25.75609756097561,6.045568292682927,3.0,5.962059620596206,165.13034743913,101.69275090243903,1.505070219556805,6.115204878048781,4.426003295526782,7.6270038292682925,203.45113580245268,29.523809523809526,6.273304761904761,3.5476190476190474,4.404761904761905,148.34988219125466,112.2523699285715,1.8335425354761914,6.432811904761907,2.4874338624338628,7.774691904761899,250.98056916605458,20.986666666666668,6.2472933333333325,3.2666666666666666,4.497777777777777,159.88593453347437,77.24107082666667,1.5218587085091735,6.34133066666667,3.3706584362139917,7.782169866666666,205.4006846699548,16.97826086956522,6.045749999999999,2.7717391304347827,2.858695652173913,155.55484221975792,59.4583319673913,1.4380239747787062,6.153282608695653,2.8450080515297915,7.624987565217388,185.12952203369474,13.385321100917432,5.809559633027525,2.36697247706422,2.281345565749236,162.35957426376586,46.213449596330264,1.1935221796909998,5.889541284403668,2.5436062974289277,7.449269100917428,147.88565466094954,14.094736842105263,5.833977894736843,2.4947368421052634,2.424561403508772,164.42132128366478,49.866636642105256,1.1806238610980944,5.9064536842105255,2.5182910981156605,7.465670989473686,148.87327090722948,17.350649350649352,6.0191012987012975,2.5714285714285716,2.7012987012987013,157.67922291513034,61.658240077922066,1.3616460521511815,6.118924675324677,2.714646464646466,7.5880070389610355,173.7626545489522,13.523255813953488,5.883312790697676,2.1627906976744184,2.2364341085271318,165.37665815888195,46.25099317441861,1.126441923735174,5.952172093023257,2.662198535745048,7.51698574418605,137.71223111069494,11.291666666666666,5.928455555555555,2.0,0.7546296296296295,168.63434551545117,36.52427641666667,1.0295034376365142,5.977308333333332,2.5978652263374493,7.601414361111111,124.59497228404491,10.905413444378345,0.11456145151695411,0.012670579838159118,0.6389054134443785,3.625884063718687,1.533823433973776,49.78213174657942,0.2904160795553718,0.10911897679952404,1.7163066353638543,0.06812534681737059,51.23613745398519,2.901787484773802,-0.00672875697572302,-0.005291463802853228,0.20139656100393757,0.42089616598837293,-0.3682450545979563,12.517461908472848,-0.028973799308908917,0.0008508838276536276,-0.4191140665098883,0.007824622985184554,0.04531499027572378,0.07539956375173529,0.019979686694427963,-3.884553890384938e-05,-0.026872893119175102,0.468786216317448,0.45168209767671397,0.7530275513067589,0.04104889545231274,0.016968437834622242,0.5175003950932816,0.013029795946857034,8.696824405267112,-2.2675555440602126,-0.020067124899774948,-0.0006423673857338841,-0.01138685565010476,-0.40946483430900077,-0.1564121959370253,-10.479027584861495,-0.0404641576306096,-0.021034459302175186,-0.1790327846160876,-0.011714336478028085,-9.590327217234677,0.02298216985302522,-0.0041529261197736375,0.00028091767129475784,0.047825398817872705,0.10694207188211954,-0.10557250774911049,0.15815098848435544,-0.0005785312013158588,-0.003237347799747863,-0.036864085544200606,-0.003963059728536426,-0.15886120537883366,1.2396443219887912,0.004474851435548993,0.00038049786160829696,-0.02889257647390338,-0.08205294119693445,0.07888587535081709,5.854673414396193,0.030076573086078,0.006111036037446368,0.007105824069381882,9.294483859857252e-05,6.351510894124511,-0.4796928235357741,-0.010384733113406501,-0.002156837609570541,-0.1362129839226805,-0.4609947524879114,-0.44595154532471404,-2.6944993110393476,-0.05179025574566986,-0.009612419941747712,-0.12624950623716794,-0.00416399173343016,-12.1883113335065,-0.48368911085594135,0.024033897320255078,0.003151589491254468,-0.15733990011482643,0.23013786859366048,-0.15441364895605172,-2.097621114418327,-0.04682182005581934,0.021199798016131026,0.23026508406781018,0.01161493593929415,-4.681902525397134,-1.4220123603675061,-0.029520157479013806,-0.0040518782199632794,-0.09927126710291498,-1.3884179390574398,0.015882873820160844,-6.561843154099743,-0.005332984616110634,-0.027914166501421103,-0.33889415014075097,-0.015957478592438346,-2.698486702006212,,,0.48500000000000004,1.175,0.55,0.0,0.625,-0.075,0.7948381552431049,0.02521990903896576,0.033819909038965756,0.8374604555506089,0.23085231275618717,0.23963845632350184,1.6322986107937136,0.470490769079689,1.990165953805943,1.4158859709213427,0.2946435578777282,0.17106821250343632,0.0,0.5742799828846008,7.198425558829283,1056.0,247.8683,123.0,244.44444444444446,6770.344245004329,4169.402787,61.707879001829006,250.7234,181.46613511659808,312.707157,8341.49656790056,1240.0,263.4788,149.0,185.0,6230.695052032696,4714.599537000003,77.00878649000003,270.1781000000001,104.47222222222223,326.53705999999977,10541.183904974292,1574.0,468.54699999999997,245.0,337.3333333333333,11991.445090010578,5793.080312,114.13940313818802,475.5998000000002,252.7993827160494,583.66274,15405.051350246611,1562.0,556.209,255.0,263.0,14311.045484217728,5470.166541,132.29820567964097,566.1020000000001,261.7407407407408,701.4988559999997,17031.916027099916,1459.0,633.2420000000002,258.0,248.66666666666669,17697.19359475048,5037.266005999999,130.09391758631898,641.9599999999998,277.2530864197531,811.9703319999996,16119.536358043499,1339.0,554.2279000000001,237.0,230.33333333333334,15620.025521948155,4737.330480999999,112.15926680431897,561.1130999999999,239.23765432098776,709.2387440000002,14142.960736186802,1336.0,463.47079999999994,198.0,208.0,12141.300164465036,4747.684485999999,104.84674601564097,471.1572000000001,209.02777777777786,584.2765419999997,13379.72440026932,1163.0,505.96490000000017,186.0,192.33333333333331,14222.392601663849,3977.5854130000007,96.87400544122495,511.8868000000001,228.94907407407413,646.4607740000002,11843.251875519765,813.0,426.8487999999999,144.0,54.33333333333333,12141.672877112484,2629.7479020000005,74.12424750982902,430.36619999999994,187.04629629629636,547.301834,8970.838004451234,447.12195121951214,4.697019512195118,0.5194937733645238,26.195121951219516,148.66124661246616,62.88676079292482,2041.0674016097562,11.907059261770243,4.4738780487804855,70.36857204991803,2.7931392195121942,2100.6816356133927,121.8750743604997,-0.28260779298036687,-0.22224147971983557,8.458655562165378,17.677638971511662,-15.466292293114165,525.7334001558596,-1.2168995709741746,0.03573712076145236,-17.60279079341531,0.32863416537775125,1.9032295915803985,5.654967281380147,1.4984765020820972,-0.0029134154177887033,-2.0154669839381327,35.1589662238086,33.876157325753546,56.477066348006915,3.078667158923455,1.2726328375966682,38.81252963199612,0.9772346960142776,652.2618303950334,-208.61511005353958,-1.846175490779295,-0.05909779948751734,-1.047590719809638,-37.67076475642807,-14.389922026206328,-964.0705378072576,-3.722702502016083,-1.9351702558001171,-16.47101618468006,-1.0777189559785838,-882.3101039855903,2.505056513979749,-0.4526689470553265,0.030620026171128606,5.212968471148125,11.65668583515103,-11.507403344653044,17.238457744794744,-0.06305990094342862,-0.3528709101725171,-4.018185324317866,-0.43197351041047044,-17.31587138629287,117.76621058893517,0.42511088637715433,0.03614729685278821,-2.744794765020821,-7.795029413708773,7.4941581583276236,556.1939743676384,2.85727444317741,0.580548423557405,0.6750532865912788,0.00882975966686439,603.3935349418285,-36.936347412254605,-0.7996244497323006,-0.16607649593693166,-10.488399762046399,-35.496595941569176,-34.33826899000298,-207.47644695002975,-3.9878496924165794,-0.7401563355145738,-9.72121198026193,-0.3206273634741223,-938.4999726800005,-41.597263533610956,2.0669151695419368,0.27103669624788423,-13.531231409875073,19.7918566990548,-13.279573810220448,-180.39541583997612,-4.026676524800464,1.8231826293872682,19.802797229831675,0.9988844907792969,-402.64361718415347,-102.38488994646043,-2.125451338488994,-0.2917352318373561,-7.147531231409879,-99.96609161213567,1.1435669150515808,-472.4527070951815,-0.3839748923599656,-2.0098199881023193,-24.400378810134068,-1.1489384586555609,-194.2910425444473,0.7375356188313531,0.6459588234068712,0.44808644674256104,0.3910258913612261,0.3044510113785695,0.23789181201846696,0.18810360462052114,0.1332360385195951,0.11259270875160227,0.06637619750230273,0.07465956190541705,0.038657916733625945,0.04854545881921991,0.02284725097654864,0.03161047848144682,0.013539738312766078,16.013121463134386,5.67291638779322,3.5806992296137965,2.171700636591246,0.4278663752972909,-0.3811042936849227,4.038943334222166,0.9712869816732271,6.017534737928498,0.6398713669036903,14.548522982147054,10.320179308839945,32.066543585381126,11.684346336145579,2.954370011907214,0.761060710400492,3.536695135878858,2.2217578790852346,7.014204178235306,0.29802087511999764,3.768034946644562,2.417836660055532,24.441821252247415,14.70214776249377,0.29418329671436116,0.6006831093015116,0.770253963870525,0.8271120001008606,0.8271120001008606,0.8271120001008606,1.8736827371486204,689.5069699952306,0.0,1.0,2.0,0.0,4.0,1.0,3.0,0.0,0.0,3.7145493241298513,2.002759364352554,1.0557125003693733,0.7381625001583041,0.7381625001583041,0.7381625001583041,172.50063800720352,816.491311947145,42.971428972375534,19.91442224261329,39.68991338035331,,11.0,344.0,10.023291153407584,8.417796984328938,5.752853606746789,0.0,29.43195445261664,12.611123474374185,0.0,38.49128874235229,14.605983116249774,0.0,9.700000000000001,23.5,11.0,0.0,12.5,0.0,0.014999999999999947,-1.5,0.1303616484440705,0.0438028870084618,-0.0865587614356087,0.04999999999999993,0.14341176470588202,0.0,0.5682926829268294,0.8499999999999996,0.43793103448275894,0.5244897959183676,0.7999999999999997,15.896763104862098,0.5043981807793152,0.6763981807793151,16.749209111012178,4.617046255123744,4.792769126470037,32.645972215874274,9.40981538159378,0.570588235294118,0.22336769759450167,0.0859106529209622,0.2474226804123711,0.42857142857142855,0.336515794261116,-0.520801362898216,-0.04343204523465834,-0.012702472265810146,-0.03720009734987256,0.6634842057388842,1.0268269261148866,0.03801866725163777,0.025044559173533817,0.038030626893143946,-4.358705370797221,0.9180407925771228,0.7928938948558035,1.5543132986014228,1.0180012414649284,0.7520382369077132,1.5855562769761329,0.9112624385417832,1.399846101388024,0.7313352590816895,0.7870733950751924,0.5885073130833536,1.112772631656008,1.05683322423449,0.8446263968813296,1.2686860239044064,1.4048417132216013,0.9947547518351076,0.883613066233726,1.0403896938395532,0.9330947271766633,0.8471040020934533,0.524471167685033,0.7962463588627517,0.8312775647791807,1.1766073105712038,1.0880627940003202,0.9417959037103476,1.1120557039915795,1.0970699570733808,1.1853537692572857,1.1777900079100776,1.2039530162557586,1.1031427395080242,1.14309880474363,1.1180539070790378,1.2228160661667444,0.8864030811915596,0.8992389979006317,0.7693029213661626,0.7985239095894622,0.8879796043151509,0.9985997517621511,0.892584573048648,0.9414429369781262,0.9060792514224814,0.9419531809044445,0.9243043839894788,0.9944450978739013,0.7519436820285496,0.8526706171684764,0.8297009206850915,1.093011859257081,1.0446451187031307,0.8763834944651031,0.7579650946831302,0.7931929349339136,0.846598612226558,0.8553319534905675,0.8729837904691842,0.8480469313724923,0.9184280698572649,0.9466074719702088,1.176093757591803,1.2097027739485837,1.0803492118207008,1.3573817188007165,0.9358900908111123,1.1443777955598557,0.9478165337053516,0.8675555873280582,0.8986433924816918,1.244937943119891,1.078733844491016,0.697211060117123,0.9218463106167398,1.207396821272357,0.851875184415179,1.0747076653805376,1.0714056900728879,1.1615527562468622,0.7218387648119855,0.6371556021145662,0.6991410805631333,1.060854298847396,1.1002466846073655,1.4617484754502108,1.3740371163208371,1.0710221394578934,1.4643035097953427,0.8756047785084932,1.103347714670978,0.9135571110718756,1.4407957423429352,1.51210106064217,1.473520357040703,0.9694642499205283,6.0,0.03305785123966942,2.4444444444444455,1.3541666666666667,0.9733333333333334,0.593888888888889,0.6645351473922904,0.3411989795918367,0.14614040060468628,0.12000000000000001,3948.0116452898674,4505.165703428431,2244.5415506335585,2031.3961564338456,12.127139668707802,0.4623316657265601,6.52037898517548,0.859882638153345,1.0,0.42857142857142855,1.6430026804882325,3.3547926402655297,4.3018395042487105,4.61938950445978,4.61938950445978,4.61938950445978,0.2857142857142857,0.004722550177095631,0.08148148148148152,0.05015432098765431,0.04055555555555555,0.02582125603864734,0.031644530828204294,0.01895549886621315,0.01328549096406239,0.020000000000000004,0.5723349706131999,16.3718820861678,6.84,4.496326530612245,119.58235250485261,1.0,3.9113922318784438,89.35616763613103,,64.16318330554844,71.4911405038589,71.7538224531671,64.16512317895643,79.60636254758401,71.54493063123914,71.18884680739615,79.62527307372898,0.2660868842409318,-0.05873491376571135,-0.4176181256454648,0.31522124678549257,0.11608097738147319,-0.24008308025645422,0.25144487528565784,-0.09976651207904164,0.007797762154761509,-0.24419533076094924,0.1148562664372291,0.0008844341616582797,0.006913957378718472,0.17440147999059827,-0.0030658059378514727,-0.042060831781502175,0.12928880462787423,0.2944811558306368,0.015126462545640188,0.14134511944090275,0.15550400427413336,0.30151977766115917,0.19126208607476328,0.16974004750216912,-0.20792935138365795,-0.17516472281084172,-0.05069755243554917,-0.017822443526839944,-0.1129282754532024,-0.10197535940091751,-0.21049776731550912,-0.13933167093420032,-0.19276628061515086,-0.10431281970667958,-0.17195268758677593,-0.1871789657416639,0.00210740931283741,-0.036250641597003856,0.022170861545636397,0.07485520988160523,0.02949406820593164,-0.06882963541350841,0.0031768625194565346,-0.0019920770303131718,-0.029668054949741646,-0.021478729257715348,-0.058173057660323366,-0.0031005695056834795,0.11367238191485698,0.03906070826002719,0.030030027549518893,-0.04522199353131432,-0.022629775181719793,0.05143087111822404,0.1176059202165137,0.10356373218771274,0.05600342137256022,0.004140183299982092,0.001364320960416358,0.1239654511394181,-0.04398667010493325,-0.09064770894483343,-0.17022406528507408,-0.21319741710803153,-0.12713995935521383,-0.2907450332593748,-0.05412583223145098,-0.17833122678661922,-0.08809118472039815,-0.07355882896205387,-0.06112250326729237,-0.2378850541661681,-0.04435311997320737,0.20979043999541389,0.2487328544951859,-0.24626477848512404,0.06347082933413827,-0.10067237566973551,-0.04213602432889902,-0.16122323573647762,0.1942814956474509,0.13416313805661792,0.17049360453798929,-0.09137891258102579,-0.1303950893398308,-0.2576796739926525,-0.3197863295695841,-0.1553770949720671,-0.3829184592387342,0.010355086164651984,-0.13181121265564555,-0.01836325531380857,-0.2558140418848105,-0.19745547978313674,-0.23423702539404187,-0.05266764506652563,6.843913827986956,12.918797657739537,3.3019272488946267,18.313792160203903,32.76267388286945,36.269396008901296,36.58948640911406,36.58948640911406,36.58948640911406,39.80331907611886,28.317719418426854,5.8928711575545645,3.4213642500687262,0.0,11.485599657692017,3917.3866519784488,3015.7420801576786,1152.5114363601947,53.0,30.0,35.0,44.0,53.0,58.0,68.0,73.0,56.0,295.1354479120006,21.0,4.634728988229636,5.4510384535657,6.336825731146441,7.181591944611865,8.07246736935477,8.93102321585603,9.824065485558638,10.690967162330788,11.584939102678662,0.6422764227642276,0.9741463414634147,1.1358920883925676,0.5998586661414029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6599481962903462,0.9610712577714013,1.0012168475654168,0.5995057463275631,4.0,0.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,9.883888251797686,0.0,0.0,10.023291153407584,0.0,0.0,13.139891848781026,0.0,0.0,6.06636706846161,50.82347469127478,23.64452490960671,5.752853606746789,177.53760660604462,-274.76222234719404,-22.913698234869695,-6.701517618224245,-19.62587302479957,350.03824461324814,541.729089599951,20.057730737505842,13.212904624389047,20.06404035555374,0.45454545454545453,0.8291600614095171,0.23318838944520331,33.851856723884225,0.1389385833188492,0.0,0.17083993859048308,6.0,0.2857142857142857,0.30667041198517586,0.6261801355122223,0.8029487162309626,0.8622201894592856,0.8622201894592856,0.8622201894592856,1.3211999999999997,,1.5535714285714284,1.1038416648231353,0.9351166328597537,1.5513903960768884,-3.2949960521892754,1.012622399020808,0.9891346839337528,-1.5983839656748697,82.24020000000004,8.417796984328938,0.0,14.605983116249774,0.0,12.1736752296728,27.687772353944144,35.5228477603919,0.0,0.0,3.7612001156935624,0.0,5.093750200806762,2.3978952727983707,6.597145701886651,4.727387818712341,8.178358165605836,6.823286122355687,9.805488761654026,26.333333333333332,7.758620795540438,0.0,3.2323430020156207,0.0,0.0,2.152791477702192,2.0231098828420264,0.0,39.940000000000005,0.0,23.234845504623642,0.0,0.0,-3.23126930324599,0.0,0.0,0.0,46.571575624095274,4.722094864452088,0.0,0.0,45.989457590070764,22.196966383080383,0.0,11.126902983393991,24.395944776997908,0.0,10.902924932081056,0.0,24.59420531179752,27.057876047904195,24.479285650648034,178.71233527226207,,128.93207869695752,142.87189684123547,143.41413324304824,128.9367272869543,160.47067460201947,142.9885990225762,142.2787801463989,159.7300613371604,24.479285650648034,178.712335272262,,127.68922155410033,141.87843934289464,142.57252827347446,127.6956149700928,162.50772114735733,142.07723886345744,141.3885589308586,160.84893011313287,4.77313475326557,131.93669343182953,,96.48779404391593,106.18591371169946,106.6493541810386,96.49039535990113,115.85382302825815,106.16443258754714,105.6088923739085,115.74909263060228,1.2239642825324017,8.935616763613103,,6.446603934847876,7.143594842061773,7.170706662152412,6.446836364347715,8.023533730100974,7.149429951128811,7.113939007319945,7.98650306685802,2.4339926929328044,89.35616763613103,,64.16318330554844,71.4911405038589,71.7538224531671,64.16512317895643,79.60636254758401,71.54493063123914,71.18884680739615,79.62527307372898,39.40392156862745,0.0,5.520041960004081,0.0,0.0,0.0,0.0,41.04989075018209,1.915641652494331,2.344126062079255,0.0,0.0,0.0,2.133082299277736,0.0,0.0,0.0,24.57973559943009,437.44482519516697,67.36310990001753,137.5464982508867,176.37541967419713,189.39496968285096,189.39496968285096,189.39496968285096,511.0,113.70764745333253,90.13102602412579,67.38451215951324,73.58,65.2,0.8333333333333334,8.311132387746863,5.392317422778761,3.750542589722244,4.39668802332112,,4.386618871632038,4.384843308599265,4.386343761892385,4.386598722214334,4.3513885195583155,4.383834667331881,4.383252467840061,4.359320744968327,0.18752712948611222,0.21983440116605601,,0.2193309435816019,0.21924216542996328,0.21931718809461925,0.2193299361107167,0.2175694259779158,0.21919173336659403,0.21916262339200304,0.21796603724841637,2.015047700668189,2.173998716074262,,2.1717059222050388,2.1713010722448973,2.1716432045687655,2.1717013288121385,2.163642174625552,2.1710710167508758,2.1709382019439283,2.1654634333455287,227.22999999999962,160.4896634212292,102.9151326304628,,102.72971098798301,103.41013834748523,103.3843934724505,102.73084843143182,105.7992699263141,103.4801042682314,103.49343973614954,105.40647352370631,8.02448317106146,5.14575663152314,,5.136485549399151,5.1705069173742615,5.169219673622525,5.136542421571591,5.289963496315705,5.17400521341157,5.174671986807477,5.270323676185315,5.771376718696152,5.327051874107997,,5.325248554467534,5.331850187609964,5.331601197707367,5.325259626601787,5.354690799452907,5.3325265454945,5.332655407064714,5.35097123341215,25.578971566702897,5.365425301293357,1.1070861678004538,3.068815192743765,0.011647376543209909,5.754139266817838,2.9441949326026706,0.9642808720710506,2.2887726567580913,262.72125856574803,93.66455392861991,-144.95791333772544,-12.088713850843384,-3.5355588618957428,-10.354136666980386,184.67172486114134,285.8031855759466,10.581974367367014,6.97080940429138,10.585303169479502,859.0,27.0,2.28889531370363,1.2804315666346142,0.25,0.07216878364870322,0.13608276348795434,0.050296115882772816,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.03608439182435161,0.2721655269759087,0.09123844603689252,0.4153550771591204,0.12304451299674507,14.750712376627062,12.919176468137422,9.409815381593782,8.211543718585748,9.133530341357085,7.136754360554009,6.58362616171824,4.663261348185828,4.9540791850704995,2.92055269010132,3.956956780987104,2.048869586882175,2.8156366115147544,1.325140556639821,2.1495125367383836,0.9207022052680933,3.3623030456339724,1.8002462205227407,4.5869832331012335,2.0237576885084625,6.076609787674833,2.3603470972880003,66.13502084510827,35.124725174051584,27.01245008837963,25.517037671231005,25.517037671231005,25.517037671231005,102.0,116.0,45.18665299999998,30.573346999999995,0.21951219512195122,61.06,7.868055555555555,4.388888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,41.0,0.0,1.0,42.0,10.0,2.0,6.0,36.0,12.0,21.0,30.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,3.0,2.0,1.0,20.0,6.0,0.0,3.0,2.0,0.0,2.0,6.0,1.0,0.0,0.0,1.0,2.0,3.367295829986474,6.731395602309993,4.029806041084529,4.484413984852291,5.094899846459348,5.593781579441872,5.959191517807545,6.414111920170116,6.778816004994286,6.6026779915902365 +6915944,C=CC1=C(C(=O)O)N2C(=O)[C@@H](NC(=O)/C(=N\O)c3csc(N)n3)[C@H]2SC1,0,40.87179487179487,6.94106923076923,3.871794871794872,11.048433048433049,163.51709792404966,162.80548656410264,1.8182201990522298,6.9908666666666655,8.259435123632656,8.41440292307692,251.933449398877,35.48780487804878,6.862975609756099,4.634146341463414,9.829268292682928,151.3918907283268,138.08039873170733,2.0051674963902437,6.993526829268292,4.247741644083108,8.276773463414635,290.6928807346296,34.234375,6.7295515625,4.359375,8.734375,152.82327734269325,131.59292632812503,1.8718769228835463,6.861093750000001,4.193672839506172,8.210114375000002,263.17166090416794,29.76923076923077,6.775057692307693,3.8461538461538463,8.021367521367521,156.9043353213351,113.17325955128206,1.6841495729153337,6.872229487179486,4.234924026590694,8.245283871794872,239.54764090081795,29.477272727272727,6.8699852272727275,3.3295454545454546,7.393939393939394,158.52647693125402,111.85883729545458,1.5292886629800568,6.9514022727272735,5.003682659932659,8.363619818181817,222.68609175220834,28.373626373626372,7.01046923076923,2.78021978021978,6.076923076923077,164.3742986382352,106.2897254835165,1.3016085677669451,7.057276923076922,5.769196852530185,8.577222835164836,193.02685499596714,22.415584415584416,6.716696103896104,2.8701298701298703,5.467532467532467,164.9354210222277,81.91393606493504,1.2967563078505193,6.761953246753246,4.829725829725829,8.272717740259742,180.36261200962812,25.96923076923077,6.852872307692309,2.9384615384615387,6.02051282051282,165.92224743881496,96.79061392307693,1.3682506554583385,6.897896923076923,4.89059829059829,8.419533569230769,192.6644053725983,30.70909090909091,6.681661818181818,3.0,6.78989898989899,162.9751550935451,116.69334510909091,1.5098740490998181,6.759854545454546,5.0666729018580865,8.266760127272729,205.22505133799854,13.510848126232741,0.1903993425378041,0.04444420767442776,0.7416173570019725,4.561180509898459,1.8330083483998034,60.0129247863248,0.34365778528531365,0.16939421433267582,3.3632807814510888,0.12384247863247867,45.020830646089834,-0.1756386202915285,-0.02819884222510863,-0.0267462500247634,0.29903304950209264,0.8688104566778738,0.08754069806935788,-0.4577221571815582,0.0638805497409754,-0.025602469492150587,-0.3416406703048044,-0.02001383197831977,5.718129212949941,-1.0104474852071008,0.026390521244247202,0.001972247957168091,0.02561020710059176,0.7089850883921396,-0.2966214875031262,-4.130764060763876,-0.04526188983873297,0.02328711579552925,0.4297213553010484,0.01568167361111111,-1.9308715948964474,-1.1459566074950691,0.01406160420775805,0.004091442473366529,-0.12327416173570015,0.09734093067426408,0.11491116907019432,-4.968203696581191,-0.01877398412362717,0.009905884286653508,-0.10332088303756547,0.004484213675213674,-3.2255170538339413,-0.2841581495427648,-0.0010257702767318216,-0.001665980902468895,-0.19499731038192578,-0.310662509380458,-0.24750347208573775,-1.3488618358585815,-0.04892260802599016,0.0007022891638275836,-0.13751818956195339,-0.002959388888888889,-6.371223933544397,0.09298393913778547,-0.033045975392129244,-0.004034503136679343,-0.05832628909551988,-1.038529371862705,-0.23682973187691822,-0.014454482295479732,-0.04563660342676252,-0.02575769700385091,-0.3374873722293794,-0.011596463980463977,-3.905571302863344,-1.2404518558364712,-0.0028091660476275903,0.008376260588102818,0.026281410896795514,-0.44947739819534693,0.07313323633040221,-5.488963629148636,-0.004493023742264699,-0.005709099447560958,-0.2234023699677388,-0.006125936507936503,-2.8445201351521554,-0.10414201183431951,-0.03623527942143326,-0.006031812918758595,0.1076923076923077,-0.4623858572576522,0.23148872579487723,-0.42354946837607105,0.051544769382754985,-0.03273516107823801,-0.6092749968660068,-0.020693145299145295,4.490500189964553,2.8140935987089843,0.012838419699958161,-0.0036244180290225182,-0.013878429263044646,0.9897648410468923,-0.09804664932036083,12.423733214141418,0.035245348985392666,0.01613930548084393,0.5345303466069533,0.008378414141414135,8.49457092255596,,,0.47435897435897445,1.1538461538461537,0.4807692307692308,0.019230769230769232,0.6730769230769231,-0.19230769230769232,0.891666985361046,0.020414067285124602,0.030337144208201525,0.9594340097048003,0.22662131897223897,0.2496651353723709,1.8511009950658464,0.47628645434460987,2.0055156205281324,1.131037779624218,0.38251482556283645,0.3363796528456007,0.0,0.8744778409039148,10.129123346564114,1594.0,270.70169999999996,151.0,430.8888888888889,6377.166819037937,6349.413976000003,70.91058776303696,272.64379999999994,322.11796982167357,328.1617139999999,9825.404526556204,1455.0,281.38200000000006,190.0,403.0,6207.0675198614,5661.296348000001,82.211867352,286.7346,174.15740740740742,339.347712,11918.408110119814,2191.0,430.6913,279.0,559.0,9780.689749932368,8421.947285000002,119.80012306454697,439.11000000000007,268.39506172839504,525.4473200000001,16842.986297866748,2322.0,528.4545,300.0,625.6666666666666,12238.538155064138,8827.514245,131.36366668739603,536.0338999999999,330.3240740740741,643.132142,18684.7159902638,2594.0,604.5587,293.0,650.6666666666666,13950.329969950355,9843.577682000003,134.577402342245,611.7234000000001,440.324074074074,735.9985439999999,19596.376074194333,2582.0,637.9526999999999,253.0,553.0,14958.061176079402,9672.365019000003,118.446379666792,642.2121999999999,524.9969135802469,780.5272780000001,17565.44380463301,1726.0,517.1856,221.0,421.0,12700.027418711532,6307.373076999998,99.85023570448999,520.6704,371.88888888888886,636.9992660000001,13887.921124741366,1688.0,445.4367000000001,191.0,391.3333333333333,10784.946083522973,6291.389905000001,88.936292604792,448.3633,317.88888888888886,547.269682,12523.18634921889,1689.0,367.4914,165.0,373.44444444444446,8963.633530144982,6418.133981,83.04307270049,371.79200000000003,278.66700960219475,454.67180700000006,11287.377823589919,526.9230769230769,7.42557435897436,1.7333240993026828,28.923076923076927,177.8860398860399,71.48732558759234,2340.5040666666673,13.402653626127233,6.606374358974357,131.16795047659247,4.829856666666668,1755.8123951975035,-7.201183431952668,-1.1561525312294538,-1.0965962510152993,12.2603550295858,35.621228723792825,3.5891686208436733,-18.766608444443886,2.619102539379991,-1.049701249178174,-14.00726748249698,-0.8205671111111106,234.44329773094756,-64.66863905325445,1.688993359631821,0.12622386925875784,1.6390532544378726,45.37504565709693,-18.98377520020008,-264.36889988888805,-2.89676094967891,1.490375410913872,27.502166739267096,1.003627111111111,-123.57578207337264,-89.38461538461539,1.0968051282051279,0.31913251292258926,-9.615384615384611,7.592592592592599,8.963071187475157,-387.51988833333286,-1.4643707616429193,0.7726589743589737,-8.059028876930107,0.34976866666666656,-251.59033019904743,-25.005917159763303,-0.0902677843524003,-0.14660631941726276,-17.159763313609467,-27.338300825480303,-21.780305543544923,-118.69984155555517,-4.305189506287134,0.06180144641682736,-12.101600681451899,-0.2604262222222222,-560.6677061519069,8.461538461538478,-3.0071837606837613,-0.3671397854378202,-5.307692307692309,-94.50617283950616,-21.55150560079956,-1.3153578888886557,-4.152930911835389,-2.343950427350433,-30.711350872873524,-1.055278222222222,-355.4069885605643,-95.51479289940829,-0.21630578566732445,0.644972065283917,2.0236686390532546,-34.609759661041714,5.63125919744097,-422.650199444445,-0.34596282815438184,-0.4396006574621938,-17.201982487515888,-0.47169711111111073,-219.02805040671598,-6.769230769230768,-2.3552931623931617,-0.3920678397193087,7.0,-30.05508072174739,15.04676717666702,-27.530715444444617,3.350410009879074,-2.127785470085471,-39.60287479629044,-1.345054444444444,291.882512347696,154.77514792899413,0.7061130834976989,-0.1993429915962385,-0.7633136094674555,54.437066257579076,-5.392565712619846,683.305326777778,1.9384941941965967,0.8876618014464162,29.39916906338243,0.4608127777777774,467.2014007405778,0.7310656619453179,0.5658179807690686,0.4422659933199949,0.3247619357557391,0.27547840518975014,0.177032340120422,0.16668404435192094,0.09981146726218443,0.10842507555759673,0.05755752149620306,0.06880749166889664,0.03361112640741094,0.041767059078977445,0.0184810682880736,0.026941595640125417,0.01052488788608752,16.004888517087462,5.717679843847275,3.555975699631548,2.2121675601926025,0.479500140965843,-0.38326566195005934,3.270913288508542,0.9573832277855767,6.024516124650656,0.650208291881604,14.559919023218283,10.311867990964366,32.062823493453905,11.730019396743666,2.9363585585619516,0.7413529089314909,3.502078159151696,2.2628451925816995,7.010461638314871,0.610221332377387,3.7149018110372936,2.459598458477855,24.440902706627867,14.696362276041054,0.36306974846794804,0.815718621220968,0.913948575703247,0.913948575703247,0.913948575703247,0.913948575703247,1.6221919732028487,876.8334656726947,0.0,5.0,2.0,0.0,4.0,1.0,1.0,0.0,0.0,3.2468709280388284,0.7053788462647947,0.1538461538461542,0.1538461538461542,0.1538461538461542,0.1538461538461542,-52.90161301038768,1987.9456813420543,108.7831611356294,50.972966188257814,109.91085997651413,,13.0,552.0,29.199378388771564,19.49013894705617,22.234210790514332,11.325958136816055,16.236695608785215,23.21796782669091,0.0,0.0,22.035415535302576,10.940920501939475,12.333333333333336,30.0,12.5,0.5,17.5,0.0,0.02564102564102555,-5.0,0.2893739893739892,0.057321937321937244,-0.23205205205205198,0.10401157981803133,0.21196472184531856,0.0,0.72991452991453,0.9448717948717946,0.44054054054054076,0.6725925925925927,0.8408602150537633,23.183341619387196,0.5307657494132396,0.7887657494132396,24.945284252324807,5.892154293278213,6.491293519681643,48.128625871712,12.383447812959856,0.5020352781546814,0.20810810810810804,0.0,0.4378378378378378,0.21428571428571427,0.5448798762411602,-1.8378836502157883,-0.12055350841946129,-0.04712522180040483,-0.12252557668105254,0.4551201237588398,1.5351233745515447,0.06402214177595256,0.03936213780901397,0.0639634739396477,-0.554208528418457,0.731721559551362,0.8421386834644634,1.5863422731400325,0.721004151530877,0.49960429038288906,1.0964422283529653,0.7199596900153814,0.7167384054160608,0.8182529587519309,0.7525419333912348,0.8660741586079819,0.7100982517553368,1.103161496350365,0.5465835609194003,0.777702824829968,1.0880152925531914,0.651614901982767,1.3203162558396113,1.076984725117333,1.2639199146324127,0.5325517063259805,0.5104282565349846,0.5427799466271254,0.9807518963340912,0.9481508515815086,0.7329269876041702,0.7630826046452239,1.238031914893617,0.8602613792882539,1.0023497882316668,0.9428098866596766,1.0003057476480595,0.7381464521833226,0.8221539881090923,0.7653159214099942,0.9900576066756874,0.8813818845388188,0.967349107290453,1.0060977520364613,1.2914349613152802,1.013750549636148,1.1266826115311155,0.8833951928264503,1.056099075732939,0.9467466056481583,1.0487928038562904,1.0055173134882534,1.0535415576153575,0.9850677789363921,1.394361521990775,1.1667107099204954,1.0178571428571428,1.3028467096502587,1.0430983041270947,0.9924929383711405,1.0907829974808272,1.3625588162659197,1.4289072978256898,1.352198840079639,1.0151044948937966,1.0288349606597782,1.073620916396438,0.8236597508241653,0.9384498480243161,1.1425428570596579,0.8602975361321199,1.0378304450746911,0.9127745445453322,1.1006565712964271,1.1433907189485542,1.108962537307063,1.0584178678595153,0.9918832116788322,1.320754606222293,1.184798197584556,0.7984042553191488,1.1584772093917166,0.8004283404923466,0.995255490902986,0.7923155429946926,1.3230576063677428,1.3461213637324105,1.3063763690816108,0.8645196414571069,0.9840663570006636,0.9011130310876091,1.0356656298847242,0.9674564796905221,0.8247023228861211,1.0561342247889265,0.974537056717057,1.039061306179073,0.8791701706757332,0.8130731566368115,0.881194868258528,0.8470402594035443,5.5,0.11212937455361698,3.555555555555557,3.3472222222222223,2.009444444444445,1.476111111111111,0.5477551020408163,0.4201388888888889,0.3351048752834467,0.2471913580246914,6112.851428213433,6519.702512478532,2727.2813347797196,2577.528846219374,14.711770611329587,0.4796585650145424,7.655143831076121,0.9218150482825719,1.0,0.21428571428571427,2.0385312908234203,4.580023372597454,5.1315560650160945,5.1315560650160945,5.1315560650160945,5.1315560650160945,0.1964285714285714,0.006595845561977469,0.09116809116809124,0.07969576719576718,0.04566919191919193,0.03884502923976608,0.019562682215743442,0.016159188034188032,0.013404195011337865,0.011771017048794827,0.5192995788234295,20.727040816326532,8.566329565734682,3.9381688466111773,154.61000062384144,1.0,4.1949165736144645,135.29079845993888,,106.06307530905531,108.59250287776256,107.40540962108564,106.08171739006096,149.63974044506077,109.96576295515783,110.90236853758138,140.32663933472202,-0.01299982196902262,-0.1481036743575399,-0.6017938315087258,0.4032174364296834,0.19047929692596516,0.04775793746153964,-0.007627059651088022,0.18588419199623282,-0.15114134560622902,-0.10157958627450765,-0.1616071658070883,0.12701074437964804,-0.07478786496350368,0.13860615741888566,0.0443758154406897,0.03453291223404261,0.15543894543387038,-0.16182222397517915,-0.06883124052812631,-0.1317062839160049,0.13747291126363584,0.1277685043933932,0.12662596698866835,-0.04288840448269579,-0.08481751824817518,0.07385321829546809,0.09205794607337901,-0.16622340425531906,0.021341170441077566,0.06268993219289509,-0.08278556184805877,-0.054629881607484956,0.05847829175085753,-0.03072026683213396,0.0362090110334537,-0.07164499205245306,-0.021031851360318505,-0.005387467535651565,-0.03748476999911655,-0.2629352030947775,-0.06811011068434429,-0.1350258291522816,-0.02247618893198733,-0.1423585034902478,0.004145886366864617,-0.040888108516060645,-0.023896395821270053,-0.1415172452864939,0.0068821689259645595,-0.1735613944442477,-0.09077680417285758,-0.07864741641337387,-0.2276887243574197,-0.12920275681432003,-0.00024085615468575673,-0.1327966523117578,-0.15205771404485507,-0.10034469143660683,-0.09363882335461196,-0.0867503163938747,-0.09181154611811547,-0.014754074306059255,0.18846686725663775,0.03543796628903012,-0.09854409340299343,0.039897928666962554,-0.09146302481827066,-0.013074121799785428,-0.03370303684840601,-0.06642394271683488,-0.04946555152627515,-0.063182311261936,-0.00770802919708029,-0.19031199865744644,-0.13571651367809556,0.14521276595744678,-0.10137416316986451,0.12628896425756292,-0.007057637498657383,0.14998865612766832,-0.19324840111687017,-0.18115496042621065,-0.16709246720227025,0.09974272188055605,0.20828400796284016,0.06742890773065077,-0.08154984009553916,-0.0187137330754352,0.2169975160814073,-0.053489472323437315,0.20701762592601425,0.10255943701706352,0.09527660401167959,0.15893122856555852,0.06765379887363486,0.1886809017215175,0.552604724796058,7.532237481825222,13.038653982846531,25.35279288412312,51.05010113942703,53.43375169710123,53.43375169710123,53.43375169710123,53.43375169710123,52.143406133731446,29.406982270229665,9.945385464633748,8.745870973985618,0.0,22.736423863501784,7363.191606111363,6886.963081838633,1158.1203036095267,110.0,41.0,58.0,77.0,90.0,100.0,111.0,107.0,111.0,395.0358105160004,28.0,4.9344739331306915,5.820082930352362,6.739336627357174,7.649216319820633,8.574895901544526,9.494541392591309,10.423798052313334,11.349382481896765,12.281481556809796,0.8717948717948713,1.0392820512820518,1.1292333127709628,0.8441151166985824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7271350990327041,1.024233283056812,1.0485554746297652,0.6989693226239123,1.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,1.0,6.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,21.364236500786514,22.806680950020997,10.843243482610035,0.0,11.814359458703011,14.48898409899412,9.77851570501903,0.0,23.098670827325854,17.81066851718292,5.573104530069267,11.132916377212704,0.0,321.13529229857596,-1083.1915968238075,-71.05049727835423,-27.774143508302757,-72.21277312158716,268.2336792881883,904.7540845182469,37.73266385727518,23.198822679955054,37.69808685492696,0.46153846153846156,0.6062135501828576,0.14128416719512166,177.42810143945692,0.1044957162367111,84.09823076957,0.3937864498171422,7.0,0.17857142857142858,0.38569085311018025,0.8665420686911058,0.9708922523820199,0.9708922523820199,0.9708922523820199,0.9708922523820199,-0.17179999999999884,,3.2142857142857144,2.3077298629175598,1.8181178661401605,3.2095461927702833,-7.154104550535885,2.1227815177478586,2.0865011749743583,-3.2764377811643364,94.7314,24.69739197183346,0.0,15.200676855804016,5.15571272675054,11.4157136421167,11.486521083908974,34.99909039887186,0.0,0.0,4.04305126783455,0.0,5.43372200355424,2.3978952727983707,7.036148493750536,4.59511985013459,8.740816627567298,6.555356891810665,10.504437203964528,33.99999999999998,1.440332267523375,3.858712044212134,0.0,0.0,1.0637767429277305,0.0,0.26700342214893724,0.0,40.53200000000002,3.560929314884075,36.19263712107854,0.0,0.0,0.0,1.3978455605112974,2.925379529898379,-2.7001522033795666,44.04009919806755,11.050456081168516,5.131558479839333,0.0,60.86158566970474,14.383611552215466,0.0,5.693927994848461,34.460875130773935,0.0,0.0,0.0,32.920489551244714,28.35826886227546,32.73072874324343,270.58159691987777,,212.37969622901568,217.00748807376223,214.67096402169898,212.41935384726625,301.2727302361724,219.76823502433507,221.64423698478015,280.90531234491823,32.73072874324343,270.58159691987794,,209.9071687564882,214.87727589260754,213.00617780066932,209.95047216051995,306.4900407343424,217.80874439256775,219.71823590018852,283.92971645060834,5.145322208668496,202.69951631209784,,163.82116258448573,166.90788202524865,164.37768698818357,163.8490205707886,228.35872682807735,169.15535013429385,170.7930189059773,216.54216723181946,1.2588741824324396,10.406984496918376,,8.168449854962141,8.346441848990855,8.256575539296115,8.16997514797178,11.587412701391246,8.452624424012887,8.524778345568468,10.804050474804548,2.5729689593910146,135.29079845993888,,106.06307530905531,108.59250287776256,107.40540962108564,106.08171739006096,149.63974044506077,109.96576295515783,110.90236853758138,140.32663933472202,39.945098039215665,0.0,0.0,0.0,0.0,5.4952804739259955,18.454503539252578,40.89366351056084,0.34277437459526183,2.457125141723356,0.0,1.3018693573108255,-1.5114405654237,1.1200905454774501,0.0,0.0,0.0,27.25980358233258,357.2834566332321,79.50272034211339,178.6209115313007,200.1306865356277,200.1306865356277,200.1306865356277,200.1306865356277,859.0,131.2672091958166,232.08551495353205,75.30654761141477,211.75000000000006,158.21000000000004,0.8571428571428571,7.65388027183235,5.807354922057604,3.845091374236209,5.023063032914055,,5.0301391805978595,5.03333957266763,5.032257587458441,5.030134719390294,5.016494836115902,5.03358075523627,5.033674966210698,5.028549267690381,0.14788812977831572,0.19319473203515597,,0.19346689156145613,0.19358998356413964,0.1935483687484016,0.1934667199765498,0.19294210908138082,0.1935992598167796,0.19360288331579606,0.19340574106501465,2.302308812133418,2.569551358574672,,2.570959098855252,2.5715951397822776,2.5713801529918974,2.570958211959406,2.568242895030571,2.5716430556415135,2.5716617719584596,2.5706429715730734,253.08999999999997,396.3945295090111,155.33020826699118,,153.21755420774073,153.10210101518624,153.46099639014815,153.218716385109,155.31007085713742,153.08740810473617,153.05292241225868,153.83184049938671,15.245943442654273,5.974238779499661,,5.892982854143875,5.888542346737932,5.9023460150056986,5.893027553273423,5.973464263736054,5.887977234797545,5.886650862009949,5.916609249976412,6.937921446956688,6.001064671829747,,5.987370279371168,5.98661647075293,5.988957884588851,5.987377864487422,6.000935020839614,5.986520498095319,5.986295204730246,5.991371506025809,0.0,41.17143971076812,24.9000901831174,5.489065226948213,-2.2747827253414377,-0.9435667044595608,1.3978455605112974,3.560929314884075,0.0,317.5921903512645,189.26717696222667,-638.3995174514723,-41.87495851167182,-16.3692183961916,-42.55996783009815,158.08860770701347,533.2339843314436,22.23846129279134,13.672666264908813,22.21808268047682,1701.0,42.0,2.0139646640729563,0.9163655289775632,0.0,0.0,0.6116040570726224,0.1967261783346446,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.4502471114825046,0.27530866464423936,0.7840008863440658,0.43914296185018,1.1301295466238126,0.5569429633553385,19.007707210578264,14.711267499995785,12.383447812959856,9.093334201160694,11.294614612779757,7.258325944937301,9.667674572411414,5.789065101206697,8.348730817934948,4.431929155207635,6.192674250200698,3.025001376666985,4.176705907897745,1.8481068288073599,2.9905171160539212,1.1682625553557147,4.979998372175025,2.175184252815131,8.306967131628086,3.183802596182036,12.686542028566938,4.216447060687777,86.96438005543342,33.453135066627304,28.152165793873642,28.152165793873642,28.152165793873642,28.152165793873642,138.0,168.0,47.35830899999999,23.415691000000002,0.41025641025641024,134.12,10.222222222222221,5.833333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,5.0,5.0,39.0,0.0,0.0,41.0,5.0,6.0,8.0,33.0,11.0,28.0,30.0,0.0,0.0,0.0,14.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,9.0,4.0,3.0,26.0,12.0,0.0,5.0,5.0,0.0,3.0,5.0,2.0,0.0,0.0,1.0,1.0,3.624340932976365,5.895779296973574,4.162781723775329,4.690200435172667,5.139101798468557,5.361878848037781,5.5134287461649825,5.664695085948154,5.5909869805108565,5.797576353942562 +51039,N[C@@H](C(=O)N[C@@H]1C(=O)N2C(C(=O)O)=C(Cl)CS[C@H]12)c1ccccc1,0,39.526315789473685,6.651242105263158,3.736842105263158,9.369720597790774,161.62571148280227,159.87349900000004,1.7742972807338415,6.763123684210528,7.098182842795145,8.210460052631575,249.58367818355754,32.375,6.613424999999999,4.575,8.386111111111111,148.30790226372622,125.72520752500004,1.9958071996500006,6.7770125,3.5978137860082304,8.051320349999997,290.0112436716695,30.166666666666668,6.53070909090909,4.090909090909091,7.146464646464647,150.9496021185149,115.2338607121212,1.8277163731772423,6.684878787878789,3.824947000872927,8.034352454545454,254.49954326771822,28.482758620689655,6.508516091954023,3.4367816091954024,5.833546189868028,157.4407268589012,108.35948479310346,1.6106250409516316,6.64655747126437,3.7616098786454972,8.078622494252873,219.74743822000565,26.41111111111111,6.5906,2.988888888888889,5.170370370370371,160.50757504286747,100.00642077777779,1.4092377784276666,6.707249999999999,3.93659122085048,8.177822244444444,201.29929002128193,24.82758620689655,6.704540229885056,2.5977011494252875,4.992337164750959,165.1552324008606,92.51586120689655,1.2499830226096207,6.784585057471266,5.097819403055674,8.323459402298852,177.8213592560461,19.958904109589042,6.386586301369864,2.712328767123288,4.175038051750381,165.48256993576007,72.49591761643836,1.2643973834347257,6.462164383561644,3.814476577033655,8.006465452054794,169.70570792047886,21.766666666666666,6.377716666666668,2.95,4.701851851851852,160.02044427089902,79.67885375000002,1.4418949005940165,6.485341666666669,3.600548696844993,7.998559166666666,194.99772546233493,25.30909090909091,6.4500363636363645,2.909090909090909,5.254545454545455,158.80560965783909,95.23762236363638,1.4861074378325816,6.567265454545456,4.708941264496819,8.052001963636362,201.76479378319934,14.526315789473685,0.16483739612188364,0.033509886971275646,0.7202216066481997,4.194760781095039,1.6133033605273563,66.18943915512469,0.31063654146624914,0.15687098337950128,2.9928854599558106,0.11673452354570639,48.19648297886367,-0.125,-0.025321080332409977,-0.020883802865083474,0.21004155124653745,0.644956567832838,0.07555737253201708,-0.37273875907201387,0.04006416532127442,-0.022584864958448796,-0.25673230916044226,-0.01759798670360111,4.751723293203585,-1.196969696969697,0.025131981868546958,0.00018715938919817334,-0.050365147318055935,0.3420596650821336,-0.27343193959658363,-5.249597108075204,-0.04136805494445978,0.020006050113321572,0.3706382022917689,0.015158194157642897,-5.648498354087356,0.9540229885057471,0.01949212595918106,0.008826009846547541,-0.07472856369599137,-0.005505181474445193,0.06061120755486256,3.9066620608463136,-0.00252467330213495,0.0147731787499602,0.030837543754631803,0.011477344572865915,-3.3502356909306696,0.9666666666666667,-0.02140423822714683,-0.010014841363593563,-0.13133271775931057,-0.5683511355820784,-0.29533758111992936,4.365737613296402,-0.03657993610088614,-0.009884755309325984,-0.5311858879678734,-0.008568710680209276,-3.1775999986793977,0.9195402298850575,0.0029866813130830284,0.0017953671028619984,0.0045212850638392844,-0.20754711047745503,-0.16476437115969222,3.712731538160282,-0.020695018816716957,0.00508449151463046,0.08212024756833686,0.010863965867481798,-1.850734888213358,-0.0410958904109589,0.0027163169278640173,0.007413489246676764,0.06636815542822451,-0.03680373729324514,0.24496099767092055,0.011990728797474029,0.017541950913353404,0.002325880355177821,-0.17421694045378866,0.0009066264182445904,3.5437350346378427,-1.65,-0.03478493998153276,-0.01035401877491976,-0.025484764542936297,-0.17888467106688102,0.04361560397989518,-7.161903624422902,0.015193023677117355,-0.033026071098799605,-0.4027278934477112,-0.027756083194829178,2.030397242729887,0.5818181818181818,0.031823656509695306,0.003291474061246433,-0.10586753966255356,0.2455133047930832,-0.05220990027589363,2.908416855401664,-0.006599522900459832,0.03246360992193402,0.6868850448904995,0.02677296640644673,-0.2108275592836405,,,0.48253968253968255,1.1354166666666667,0.4791666666666667,0.0,0.65625,-0.17708333333333334,0.8963707041645166,0.020859258518840147,0.031609258518840146,0.8766084560748237,0.21824759723915774,0.25731870934088114,1.7729791602393403,0.47556630658003884,2.013317382629131,1.3112793885875802,0.2517451016812091,0.2911167163955038,0.07400962663015655,0.702037994041551,9.658930384421064,1502.0,252.74720000000002,142.0,356.0493827160494,6141.777036346486,6075.192962000002,67.42329666788598,256.99870000000004,269.7309480262155,311.9974819999999,9484.179770975186,1295.0,264.537,183.0,335.44444444444446,5932.316090549049,5029.008301000002,79.83228798600003,271.0805,143.91255144032922,322.0528139999999,11600.44974686678,1991.0,431.0267999999999,270.0,471.6666666666667,9962.673739821983,7605.434806999999,120.62928062969799,441.2020000000001,252.44650205761317,530.267262,16796.969855669402,2478.0,566.2409,299.0,507.5185185185185,13697.343236724404,9427.275177000001,140.12437856279195,578.2505000000002,327.26005944215825,702.8401569999999,19118.027125140492,2377.0,593.154,269.0,465.33333333333337,14445.681753858073,9000.577870000001,126.83140005848999,603.6524999999999,354.2932098765432,736.0040019999999,18116.936101915373,2160.0,583.2949999999998,226.0,434.33333333333337,14368.505218874872,8048.879924999999,108.74852296703699,590.2589000000002,443.5102880658436,724.140968,15470.458255276011,1457.0,466.22080000000005,198.0,304.77777777777777,12080.227605310485,5292.201986,92.30100899073499,471.73800000000006,278.4567901234568,584.4719779999999,12388.516678194956,1306.0,382.66300000000007,177.0,282.1111111111111,9601.22665625394,4780.731225000001,86.513694035641,389.1205000000001,216.03292181069958,479.91355,11699.863527740095,1392.0,354.75200000000007,160.0,289.0,8734.30853118115,5238.069230000001,81.73590908079198,361.1996000000001,258.9917695473251,442.8601079999999,11097.063658075964,552.0,6.263821052631578,1.2733757049084746,27.368421052631586,159.4009096816115,61.30552770003954,2515.198687894738,11.804188575717468,5.961097368421049,113.7296474783208,4.435911894736843,1831.4663531968195,-5.0,-1.0128432132963991,-0.8353521146033389,8.401662049861498,25.798262713313516,3.0222949012806835,-14.909550362880555,1.602566612850977,-0.9033945983379518,-10.269292366417691,-0.7039194681440445,190.0689317281434,-79.0,1.6587108033240991,0.01235251968707944,-3.3240997229916918,22.575937895420818,-18.04650801337452,-346.47340913296347,-2.7302916263343455,1.3203993074792237,24.462121351256748,1.0004408144044312,-372.8008913697655,83.0,1.6958149584487523,0.7678628566496362,-6.5013850415512495,-0.47895078827673176,5.2731750572730425,339.87959929362927,-0.21964657728574066,1.2852665512465373,2.6828663066529668,0.9985289778393346,-291.47050511096825,87.0,-1.926381440443215,-0.9013357227234207,-11.819944598337951,-51.15160220238705,-26.580382300793644,392.9163851966762,-3.2921942490797527,-0.8896279778393386,-47.806729917108605,-0.7711839612188348,-285.9839998811458,80.0,0.25984127423822345,0.15619693794899386,0.39335180055401775,-18.056598611538586,-14.334500290893224,323.0076438199445,-1.8004666370543752,0.44235076177285,7.144461538445307,0.9451650304709164,-161.01393527456216,-3.0,0.19829113573407325,0.5411847150074037,4.844875346260389,-2.686672822406895,17.8821528299772,0.8753232022156041,1.2805624166747984,0.16978926592798094,-12.717836653126572,0.0661837285318551,258.6926575285625,-99.0,-2.0870963988919655,-0.6212411264951856,-1.5290858725761778,-10.73308026401286,2.616936238793711,-429.71421746537413,0.9115814206270413,-1.9815642659279762,-24.163673606862673,-1.6653649916897506,121.82383456379323,32.0,1.7503011080332418,0.1810310733685538,-5.822714681440446,13.503231763619576,-2.8715445151741497,159.9629270470915,-0.36297375952529076,1.7854985457063712,37.77867746897747,1.47251315235457,-11.595515760600227,0.7262648725578599,0.5783778981959983,0.4389842829969589,0.32757980043614887,0.2792202790104289,0.18169249815151464,0.17147869719346012,0.10592898701675145,0.10916461636042452,0.06047442594349584,0.07014117506148891,0.03631789882215919,0.042178933483361825,0.021018691959221965,0.027097993628880202,0.011768828104462252,17.001104089189266,5.693902586283981,3.555651334325106,2.193688900762849,0.48337847714318405,-0.38193135334073214,3.2700731715712608,0.9725786606048655,6.024489762961195,0.6549396385069205,14.54424263191467,10.338081661567573,35.450517657549824,11.705060547322416,2.9162812613002336,0.7413824413548462,3.5017668596342175,2.243625369436276,7.010456825297287,0.6221986999167474,3.714655990566616,2.4395975064372277,24.434227665043693,14.700469221265234,0.35418808977989136,0.725254063143162,0.8388356776624053,0.9033136152922336,0.9258406864795449,0.9258406864795449,1.5805855858836009,739.4945289535813,0.0,3.0,2.0,0.0,7.0,2.0,1.0,0.0,0.0,3.2805582985552024,1.219439379674668,0.5885402099105326,0.23039177637272168,0.1052631578947345,0.1052631578947345,-9.021494563351894,1559.020175966134,85.14568898664209,41.0268467359509,86.14625958612086,,12.0,484.0,35.24121921791952,19.490138947056174,16.48217927191622,5.563451491696996,4.899909730850478,11.761884949391115,24.26546827384644,6.06636706846161,5.316788604006331,17.3346073673947,11.58095238095238,27.25,11.5,0.0,15.75,0.0,0.01746031746031747,-4.25,0.2487984667551228,0.06782172823362742,-0.18097673852149537,0.08820861678004521,0.1880484429065742,0.0,0.6899749373433585,0.9174603174603172,0.44117647058823567,0.622153209109731,0.829251700680272,21.512896899948398,0.5006222044521635,0.7586222044521636,21.03860294579577,5.2379423337397855,6.175649024181147,42.55149984574417,11.413591357920932,0.5259515570934258,0.2113486842105263,0.0,0.423108552631579,0.26666666666666666,0.5079437886198097,-1.3945900835579468,-0.09586236675238627,-0.036699739040998595,-0.09297267223719646,0.49205621138019046,1.3509697890164227,0.05408603712862935,0.03555183655306376,0.05873781691375751,-1.773476334088956,0.6283967391304348,0.8067547679825494,1.635115471276092,0.8449519230769229,0.5385307030058941,1.1193635786783502,0.6220996687828995,0.7403065120311438,0.7651802123152001,0.678763551705836,0.7897666524117996,0.7464551248167559,0.9556708388230127,0.5376387190783312,0.8854266890039268,1.2085372960372958,0.7184143425960167,1.3208771721893449,0.9355796314963277,1.1930612883333662,0.5460106631566144,0.49984159902509606,0.5398543911552556,1.0366050875981203,0.8960311510911211,0.7245843437305516,0.655784758530104,1.1732206012378423,0.9180843433524187,1.00142570149663,0.9005827915394835,0.9868519712980097,0.7569256451282416,0.794315441235013,0.7488987397445332,1.0199873521707885,0.8274355877616747,1.1710602210746308,1.351328826207639,1.2017094017094014,1.1316205451246497,1.1680499996919,0.8298765706026794,1.0289210623328253,1.0852887089110377,1.2536938306289283,1.0993273847499438,0.9963868526357059,0.9079730967849409,1.2312366385006153,1.0643997675655665,0.9245910698496903,1.1372914939492558,1.0389413003729207,0.9163977114920251,0.9962540972157973,1.1838398279053515,1.297411320652811,1.1346245843220828,0.9775485757735255,0.9434559261465157,1.0191166589728415,0.7884411683420213,0.8518967334035824,1.0563520460499296,0.8122945890315305,0.9399482181171529,0.9085717263250332,1.0085039782786305,1.0801094466112973,0.9623718290935239,0.9371278368032807,1.0707880434782608,1.1880525115267901,1.1838561718485046,1.0026762820512818,1.0556882970946548,0.9437368890772954,1.0596970493568734,0.9754835455451819,1.175195812733762,1.1562501801022107,1.1897403078711102,0.9592147201226375,0.937796442687747,0.7473564831103443,0.7469529124483675,1.1184090909090907,0.9221199348674702,1.0286480941644955,0.9258479838801947,1.064838763729245,0.7250800414987335,0.7475647863051881,0.6921616979665137,0.9985330694322808,4.5,0.09907152331394756,3.333333333333335,3.0625,1.715555555555556,1.1041666666666665,0.5061224489795919,0.3958333333333333,0.2383471907281431,0.16250000000000003,5465.034268681577,5895.519132563264,2418.6583536060048,2264.1150161690966,13.292491000757163,0.45838259565111084,7.199444473161063,0.846321761395685,1.0,0.26666666666666666,1.9673692148883828,4.028488133768917,4.659387303533053,5.0175357370708635,5.142664355548851,5.142664355548851,0.1730769230769231,0.008255960276162296,0.09259259259259263,0.078525641025641,0.04636636636636638,0.03561827956989248,0.022005323868677908,0.01799242424242424,0.010833963214915593,0.009558823529411767,0.4948262977630074,18.781065088757398,7.7091412742382275,3.618369526521894,146.36937966522206,1.0,4.11855584779671,119.04087178854735,,95.66138923636512,98.33043637021609,97.4005466412388,95.64879276902388,128.75201775180423,99.20849367388267,99.89004386125931,121.79387891544548,-0.008605072463768116,-0.15361247464554179,-0.6232131693844527,0.2916346153846154,0.15375288401177253,0.04683395223779792,-0.005631393222692909,0.12897441212861113,-0.14397095289325518,-0.08578086685757526,-0.15075220396741307,0.09859066470238981,-0.08240008783487045,0.15246529282690158,0.0055851990595672425,-0.06993006993006995,0.0815444987050821,-0.16948575592578213,-0.07931170251755723,-0.1331718887584719,0.12753187162040708,0.12383975506274181,0.12985185271011826,-0.11719731409788713,0.06567549558554056,0.11825063012259816,0.2633852466919125,-0.10375773651635722,-0.0013123946183667878,0.037569628278124934,0.05902243788001401,-0.008127418912849495,0.09417406859891367,0.010303616415406393,0.09832005326489433,-0.06951203664383351,0.06654589371980676,-0.1298506208586319,-0.29886228420221733,-0.1823504273504273,-0.1354907145464707,-0.18306388516006653,0.06595822035996791,-0.11775799436931526,-0.06301200576662955,-0.17748286564087765,-0.0734033978975746,-0.06593012191518038,0.06330168249208729,0.018118954699300298,0.05357723541117789,0.0062776304155614665,-0.04947769880295176,-0.10212857370224164,0.056092506380949224,-0.0666213276745662,0.03241193116211996,0.027438486593318993,0.0930655776671595,-0.03839979130894237,-0.002829064919594997,0.016478766298003916,0.22123289323630171,0.09214963119072708,-0.00877373924613588,0.1518381500121885,0.00018115773377943257,0.05647098319648059,0.01482670857969358,-0.058210360130641604,0.007766566313945751,0.07352683879842291,-0.11358695652173913,-0.2110257793432515,-0.3089839957919024,-0.03538461538461539,-0.0426447848642714,0.02703496753743705,-0.10820311692984627,0.048909325365921526,-0.21053014641275716,-0.1345617461263143,-0.2377709896932207,0.04212749805043468,0.04005270092226614,0.19306090279516636,0.09822396787156737,-0.14699300699300705,0.058528559220722025,-0.03236210966474853,0.04394079920492091,-0.021245159598124338,0.20694464471736151,0.22950595807319712,0.22934917274891695,-0.004374334935935012,5.2226320157457815,11.012043188097866,11.824819102860843,25.738241167606564,43.75064241435578,48.03730892218477,50.56411273230417,50.69024237972997,50.69024237972997,48.31961718309914,31.470705326101925,6.041882440349019,6.9868011934920915,1.776231039123757,16.848911856997223,6298.715986034023,5942.311514135018,976.5296056431616,86.0,38.0,53.0,68.0,83.0,87.0,96.0,93.0,89.0,367.0393546080004,26.0,4.859812404361672,5.739792912179234,6.650279048587422,7.555381944240273,8.474494436883122,9.390743422947507,10.315630315397533,11.238896430838867,12.168168265630008,0.8333333333333335,1.0187368421052636,1.1233804699042793,0.8058490243592494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7244421998109047,1.007946336429308,1.0360332732778783,0.689573483882717,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,16.156983476009223,23.154593784320497,0.0,5.907179729351506,5.907179729351506,14.488984098994122,4.794537184071822,0.0,11.761884949391115,41.932775232540564,5.563451491696996,5.752853606746789,5.032286352113597,288.42737054298584,-791.8946147149603,-54.43383893234953,-20.839331966183167,-52.7929743143307,279.40587597963395,767.1255612511738,30.711850054292547,20.187514769767734,33.35328527179017,0.5,0.683316756011063,0.17356357927539104,149.50191951056988,0.1287164049042814,95.61944719550719,0.3166832439889372,6.0,0.15384615384615385,0.3748849826619336,0.7676341038341636,0.8878528317315983,0.9560985216006646,0.9799419565866558,0.9799419565866558,0.6213000000000004,,2.70063025210084,1.791878010103297,1.4130459172117955,2.711106321552132,-5.225639626739139,1.7231022341694688,1.6959084570334997,-2.3130842920533117,88.90790000000001,19.490138947056174,0.0,10.216698334856808,5.733667477162185,17.45755447126466,5.752853606746789,46.624612499174475,0.0,0.0,3.970291913552122,0.0,5.3612921657094255,0.0,6.9726062513017535,0.0,8.684231891345675,0.0,10.451695662489449,31.66666666666667,8.783708996607974,0.0,0.0,0.0,0.0,0.0,0.6287880291005292,0.0,38.71200000000002,0.0,35.79736389182434,0.0,0.0,0.0,0.0,0.0,-2.3571878528985293,42.68845785636262,11.050456081168516,0.0,0.0,44.95866912120953,14.383611552215466,0.0,11.605292320844956,41.06116100747748,0.0,0.0,0.0,30.62226292565148,27.52880359281438,30.504131318901663,238.0817435770948,,191.34986647539486,196.51154957292357,194.6833394560433,191.32407286753815,259.17862783106193,198.27339549491785,199.63876201776583,244.16602890390428,30.504131318901663,238.08174357709476,,189.09934126531084,194.86899473032895,193.40152201829568,189.06481759957802,262.7296751303476,196.69388511359588,198.08417926548503,245.90084212294423,5.136565081327692,180.0215800360258,,148.75737019954863,151.8838750456307,149.88199086790453,148.75189494391915,200.07197000338357,153.44783448400395,154.67313494641945,190.2632553843855,1.2710054716209027,9.920072649045617,,7.972911103141453,8.187981232205148,8.111805810668471,7.971836369480756,10.799109492960914,8.261391478954911,8.318281750740242,10.173584537662679,2.5682825406638456,119.04087178854735,,95.66138923636512,98.33043637021609,97.4005466412388,95.64879276902388,128.75201775180423,99.20849367388267,99.89004386125931,121.79387891544548,38.30196078431371,0.0,0.0,5.89769055303123,0.0,5.908378711052323,9.200762810080505,39.36926438455938,0.27256435463686546,2.603318216175359,0.0,1.2999990026874944,-2.1998916253744305,1.1089493575207863,0.0,0.0,0.0,26.203792387543245,388.0099719690667,74.76003016575855,153.08254908321885,177.056717534256,190.6663580086928,195.42124551085632,195.42124551085632,743.0,126.39319918106563,179.8232745535531,59.440117884398425,138.03,112.73,1.0,7.4598428004967685,5.700439718141092,3.7195134387193214,4.829343245493022,,4.833391609113036,4.8368961219764826,4.835336332298743,4.833397464978493,4.834813719852944,4.837818134709555,4.838212242232071,4.841221115752748,0.15497972661330506,0.20122263522887593,,0.2013913170463765,0.20153733841568677,0.2014723471791143,0.20139156104077052,0.20145057166053934,0.20157575561289812,0.20159217675966964,0.20171754648969784,2.189061601041214,2.450179221755069,,2.451017155097503,2.4517419552511943,2.451419425845778,2.4510183666405316,2.4513113380821987,2.45193255782847,2.4520140184083523,2.4526357229041245,241.5399999999999,440.46472988328253,137.74340611336427,,136.02326862261043,136.20611776267432,136.52385551172108,136.01435537860766,136.6714712273739,136.1002892246695,136.03672708995708,135.97318505135306,18.352697078470104,5.739308588056844,,5.667636192608768,5.675254906778097,5.688493979655045,5.667264807441986,5.694644634473913,5.670845384361229,5.668196962081545,5.665549377139711,6.963299111155099,5.800861315735668,,5.7882947012685575,5.789638047554489,5.791968102362811,5.788229171773962,5.793048763088458,5.788860772098478,5.788393638764476,5.78792643490959,0.0,36.906313249345125,11.429902166695511,6.317975526757995,-1.9791947623350927,7.0717587082621804,0.0,0.0,0.0,303.4429299315253,163.77865020140624,-449.664089977375,-30.909343481645404,-11.833265525720394,-29.977605998491672,158.65594565501198,435.59939793574074,17.43920952304483,11.463142050940547,18.939104258075687,1383.0,39.0,1.8506924494489134,0.9236369899023787,0.0,0.0,0.7026573033928827,0.2376689578246429,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.33239598128474673,0.1962517231400299,0.7001704470182966,0.38604595959429067,1.060737239963053,0.5581214180869666,17.430356941388638,13.881069556703958,11.413591357920932,8.51707481133987,10.610370602396298,6.904314929757557,9.088370951253387,5.614236311887827,7.423193912508867,4.112260964157717,5.821717530103579,3.0143856022392126,3.6695672130524786,1.828626200452311,2.6014073883724995,1.129807498028376,4.7829504924575685,2.2783428180932437,7.46142623189444,3.1795402972116436,11.639104327750285,4.438566188205016,76.64303138039271,41.22027010675382,31.902961609601768,27.034758952163862,26.5815246738962,26.5815246738962,128.0,155.0,45.97310199999999,21.328897999999995,0.4473684210526316,124.09,9.11111111111111,5.249999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,6.0,6.0,38.0,0.0,1.0,40.0,6.0,4.0,7.0,33.0,10.0,26.0,30.0,0.0,0.0,0.0,15.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,5.0,3.0,2.0,24.0,9.0,0.0,3.0,4.0,0.0,3.0,4.0,1.0,0.0,1.0,0.0,1.0,3.5263605246161616,5.65861075600948,4.051784947803305,4.51906748693468,4.935372809595709,5.2816161748246255,5.221368825333784,5.465948207931988,5.5202101359605935,5.499981886185123 +16204922,CC(=O)CC(c1ccccc1)c1c([O-])c2ccccc2oc1=O,0,25.13157894736842,6.325,3.5526315789473686,9.578947368421053,155.9121760337825,99.47713849999998,1.6376607782298687,6.407418421052633,6.650584795321637,7.827727052631577,246.80632651470134,26.25,6.28125,4.25,8.525,139.98604948921246,100.69271712499997,1.9794466162500008,6.4515,3.5347222222222223,7.693605499999997,292.625869773087,23.223880597014926,6.24044776119403,3.985074626865672,7.313432835820896,145.31273306747303,87.86880267164177,1.7436868104387457,6.380814925373135,3.6077943615257055,7.699160537313435,253.53173843510066,20.21590909090909,6.247272727272727,3.4886363636363638,6.2727272727272725,150.81166929166636,74.84647297727271,1.5314506239731926,6.359625,3.5195707070707063,7.75989009090909,220.8160287158153,20.106382978723403,6.350106382978722,3.1702127659574466,6.48936170212766,154.24185185756528,74.5868254787234,1.4197860756370848,6.4387148936170195,4.451832151300236,7.877366680851063,206.84025016922584,20.21505376344086,6.3960215053763445,3.043010752688172,6.010752688172043,154.1993501373687,74.76976463440859,1.4181784154643873,6.485908602150537,4.34468339307049,7.925499827956989,209.13197566376505,20.244444444444444,6.5776666666666666,2.7333333333333334,5.666666666666667,154.71221846006495,73.8957422111111,1.3688326783899332,6.65058111111111,5.603086419753086,8.09698991111111,200.89023129623817,14.329411764705883,6.243294117647058,2.3411764705882354,3.0470588235294116,159.46050055620458,48.97908703529413,1.2278421274845646,6.307129411764705,3.7705882352941162,7.845129505882353,167.39065958942214,11.698412698412698,5.772539682539682,2.1904761904761907,2.0476190476190474,157.6380469909331,38.928633603174596,1.229266755762492,5.862722222222222,2.804232804232805,7.388468888888888,154.75989647587767,7.180747922437671,0.14061634349030463,0.034104809811479384,0.626731301939058,4.457063711911355,1.3715900602665538,34.069482249999986,0.2390498622942555,0.1297563019390581,2.755155432440752,0.09493695567867037,49.71346794013507,0.24359418282548528,0.00033760387811632446,-0.006160783479287642,0.20550554016620498,1.1995152354570642,-0.00045320628325252186,1.160865562500004,0.001300578862570277,0.001088434903047076,-0.08629578331794394,-0.0007292056786703674,1.1792285059524428,0.450438251953529,0.020314528465704713,0.0003885623788961377,0.04333939719684129,0.4439574978294124,-0.10253087021450157,1.99844362313433,-0.016990095205554338,0.01865772005622854,0.13382073933196434,0.013095567494935284,-1.7260273154147725,-0.20556849660035229,-0.01103201334676405,-0.005229988470782158,6.29564341475737e-05,0.10453915890203974,-0.09414968184808278,-0.9594106874999988,-0.01450664237808534,-0.009072240934273489,-0.32273916449816725,-0.00876753342986652,-1.840345318263825,0.6017268815936819,0.012975481817645986,0.004275908001393176,-0.05450285849001001,0.39176047621854176,-0.00043425760117320867,2.8018313297872344,0.0013912939873914447,0.012558955619732406,0.22506106625279132,0.007738698296693602,1.7620244954566873,-0.011251600988889759,-0.019594838113960664,-0.0035389548295989694,-0.13748399011110118,-0.5238435647693087,-0.045522007877169084,0.03443808870967803,-0.004229767775016991,-0.015691134989426047,-0.3019076175630549,-0.015794398802609196,0.919610253809881,-1.1132040627885502,0.004550323176361896,0.003292865159657736,-0.11854416743613415,-0.979870729455217,-0.18126170152687981,-5.412259733333331,-0.03623258092615992,0.0011193998153277824,0.2952994083649668,0.0062845636195753216,-9.611559267353128,-2.2624816685677045,-0.05041820107544402,-0.004934642115618537,-0.04561675085546684,-1.7090760958122855,0.1149881453830112,-10.48016539117647,0.013156757161624903,-0.04925122453967733,-0.712465373961219,-0.029244960632230685,-4.219277515493992,-0.9501714813349166,-0.007550345161148409,-0.0007830861783227553,-0.04235369124565799,-0.4821263685529615,-0.10791539018883611,-4.538533757936511,-0.021623087514219656,-0.008634372114496731,-0.10902622052206547,-0.0031459849184365023,-6.178510456918,,,0.4710144927536232,1.3804347826086956,0.782608695652174,0.043478260869565216,0.5978260869565217,0.18478260869565216,0.7189469809713691,0.01473157225668208,0.02594896356102991,1.0398343573133708,0.27844119107224896,0.20309739155685574,1.75878133828474,0.4815385826291047,2.0354760636136846,1.7162587144887114,0.0,0.3192173491249729,0.0,0.3192173491249729,8.081515329997641,955.0,240.35000000000002,135.0,364.0,5924.662689283735,3780.1312629999993,62.23110957273501,243.48190000000002,252.7222222222222,297.4536279999999,9378.64040755865,1050.0,251.25,170.0,341.0,5599.441979568498,4027.7086849999987,79.17786465000003,258.06,141.38888888888889,307.74421999999987,11705.03479092348,1556.0,418.11,267.0,490.0,9735.953115520693,5887.209778999999,116.82701629939596,427.5146000000001,241.72222222222226,515.8437560000001,16986.626475151745,1779.0,549.76,307.0,552.0,13271.42689766664,6586.489621999999,134.76765490964095,559.647,309.7222222222222,682.870328,19431.810526991747,1890.0,596.9099999999999,298.0,610.0,14498.734074611137,7011.161595,133.45989110988597,605.2391999999999,418.4722222222222,740.4724679999999,19442.983515907228,1880.0,594.83,283.0,559.0,14340.539562775288,6953.588110999999,131.89059263818802,603.1895,404.05555555555554,737.0714839999999,19449.27373673015,1822.0,591.99,246.0,510.0,13924.099661405844,6650.616798999999,123.19494105509398,598.5523,504.2777777777777,728.729092,18080.120816661434,1218.0,530.68,199.0,259.0,13554.14254727739,4163.222398000001,104.36658083618799,536.1059999999999,320.4999999999999,666.836008,14228.206065100883,737.0,363.66999999999996,138.0,129.0,9931.196960428786,2452.5039169999995,77.44380561303699,369.3515,176.6666666666667,465.47353999999996,9749.873477980293,272.8684210526315,5.343421052631577,1.2959827728362165,23.815789473684205,169.3684210526315,52.12042229012904,1294.6403254999993,9.08389476718171,4.930739473684207,104.69590643274857,3.607604315789474,1889.1117817251325,9.743767313019411,0.01350415512465298,-0.2464313391715057,8.220221606648199,47.98060941828257,-0.018128251330100875,46.43462250000016,0.052023154502811086,0.043537396121883044,-3.451831332717757,-0.029168227146814697,47.16914023809771,30.179362880886444,1.3610734072022157,0.026033679386041224,2.9037396121883665,29.74515235457063,-6.8695683043716045,133.89572275000012,-1.1383363787721406,1.2500672437673122,8.965989535241611,0.877403022160664,-115.64383013278976,-18.090027700831,-0.9708171745152364,-0.46023898542882985,0.005540166204986485,9.199445983379498,-8.285172002631285,-84.4281404999999,-1.27658452927151,-0.798357202216067,-28.40104647583872,-0.7715429418282538,-161.9503880072166,56.5623268698061,1.2196952908587226,0.4019353521309585,-5.123268698060941,36.82548476454293,-0.040820214510281616,263.37214500000005,0.1307816348147958,1.180541828254846,21.155740227762383,0.7274376398891986,165.6303025729286,-1.0463988919667475,-1.8223199445983416,-0.32912279915270415,-12.78601108033241,-48.717451523545705,-4.233546732576725,3.202742250000057,-0.3933684030765802,-1.4592755540166225,-28.077408433364106,-1.4688790886426553,85.52375360431894,-100.18836565096952,0.4095290858725706,0.29635786436919626,-10.668975069252074,-88.18836565096953,-16.313553137419184,-487.1033759999998,-3.260932283354393,0.10074598337950041,26.576946752847014,0.565610725761779,-865.0403340617814,-192.31094182825487,-4.285547091412742,-0.41944457982757566,-3.8774238227146816,-145.27146814404426,9.773992357555953,-890.81405825,1.1183243587381166,-4.186354085872573,-60.55955678670362,-2.4858216537396083,-358.63858881698934,-59.86080332409974,-0.4756717451523498,-0.049334429234333586,-2.6682825484764536,-30.373961218836573,-6.798669581896675,-285.9276267500002,-1.3622545133958384,-0.5439654432132941,-6.868651892890124,-0.19819704986149964,-389.246158785834,0.7129120324595233,0.5471008181514619,0.4430154960187764,0.2933065855756675,0.2871239515384683,0.1566498585262416,0.17181333307277855,0.081373429651859,0.11141393373665977,0.042786500756044975,0.07108269049364402,0.023204451199426386,0.046154984809161435,0.011980046329359301,0.028361702011198392,0.006575456545656764,8.03901478350784,5.672985657842535,3.5743433190940777,2.1701131783629277,0.49082892438226516,-0.887665385619995,3.2911887107735107,0.9726805973558955,7.004065876866705,0.9959495240587978,13.651465769363334,10.933756795704895,16.019516335404937,11.685571293880036,2.0132530904047536,0.720425900778801,3.5225354514463705,2.2194609026130054,8.001919486440181,1.234335150411581,3.735076864005314,2.415576867953164,20.91658879617754,14.697804254608808,0.24422344570632903,0.5758033896272345,0.7148862295647973,0.8486013692090666,0.9030150189029426,0.9030150189029426,1.7782147277040985,909.5509726944721,0.0,1.0,1.0,0.0,12.0,1.0,3.0,1.0,0.0,3.8766837286725235,2.0149585534286465,1.2340487628837131,0.4832770520157945,0.17776019742535265,0.17776019742535265,33.283349189521005,991.4156497035926,64.44399589816524,26.089885518515594,55.14184884382398,,10.0,379.0,11.54349236523938,14.69560176298435,29.100050035914087,5.386224214464796,5.563451491696996,6.923737199690624,24.26546827384644,30.33183534230805,0.0,4.417150937053347,10.833333333333334,31.75,18.0,1.0,13.75,0.0,0.028985507246376784,4.25,0.18126855600539776,0.0869095816464236,-0.09435897435897417,0.0,0.14878260869565185,0.0,0.6228070175438597,0.8333333333333329,0.44153846153846193,0.5358974358974361,0.8333333333333329,16.53578056234149,0.33882616190368786,0.5968261619036879,23.91619021820753,6.404147394661726,4.671240005807682,40.45197078054902,11.075387400469408,0.5652173913043481,0.13846153846153844,0.0,0.3692307692307692,0.15789473684210525,0.467551392776248,-1.152771692579006,-0.09307003780556136,-0.030336097173131734,-0.07204823078618787,0.532448607223752,0.7803304618665107,0.03258546031882923,0.020535012154381856,0.035469566448477756,-5.592356974386977,0.6695076670845792,0.5496244767298695,0.8442621985459213,0.7573756906077349,0.3986870727159728,0.9743178873430499,0.6771562365006067,0.9604207996397434,0.54384844592009,0.5175902781656703,0.5740936557081282,0.8689184020441263,0.7407211219435662,0.5436172988786675,0.6940248192659383,1.101426568813392,0.6896120701650236,1.0465404037868622,0.7501190858915422,1.0397843389624222,0.546936823465872,0.5454179487970412,0.555648685816658,0.9616333522700214,0.9376189077582657,0.9949894786326701,1.088058248604356,1.1475389251632349,0.9048657410023168,1.0408507993485194,0.9380106098125922,1.0269786866891093,0.9814094736995835,1.0175995770135018,1.0192416228075338,0.9785758805975044,0.897966114215245,1.0272425301387877,1.2606981652733662,1.1899847184671448,0.9760919297039263,0.9747626343786798,0.8963141019238199,0.9563415076240004,1.0068658284630234,1.0648606824483233,1.0593956618176852,0.9049421669151726,0.9870841227521657,1.3320168505559045,1.5346515816414068,1.3197172221232107,1.2132677746813962,1.0071677963904906,0.9796698520161883,0.9732439619793969,1.2897749150939637,1.393720356232721,1.3911247034232215,0.9045041559159199,1.1608566131953155,1.3467963555774443,1.2761589553315194,1.1565623081645184,1.342307161107659,1.104334396790509,1.1557643530623989,1.0915960327548375,1.328444305917366,1.3895121550081608,1.3689361418375487,1.079466710785937,1.3806913140412884,1.6044248736184945,1.2890330721963605,0.8955996100097499,1.4842339048733235,0.8926670382660898,1.3677319119353408,0.9119431679213024,1.6099008692452106,1.5183110126137251,1.5704284350708193,1.0527949636218126,1.133199233980409,0.7325578577486973,0.45270650698350284,0.7891256686836798,0.9553232314264014,1.0482837012966686,1.1408091353274101,1.0927605061017982,0.785663087793493,0.672372236984313,0.6550123984532488,1.1953959263134102,4.0,0.0,2.4444444444444455,2.0,1.8888888888888893,1.2013888888888886,0.5306122448979592,0.34722222222222227,0.09019904257999495,0.05374999999999999,4590.154843905417,5006.936235744342,2180.9078604611705,2027.6483011312162,11.54112878523867,0.46863828922715683,6.132513935574124,0.8819572049057548,1.0,0.15789473684210525,1.3712437847710617,3.2329689600149387,4.013878750559872,4.764650461427791,5.070167316018233,5.070167316018233,0.16,0.0,0.06984126984126987,0.052631578947368404,0.04843304843304844,0.0308048433048433,0.015160349854227404,0.01578282828282828,0.006938387890768841,0.008958333333333332,0.4085506398876879,17.8112,7.92,3.9837030330466274,132.5520250911752,1.0,4.064995713965812,98.19973647804994,,74.54834489473322,74.17861219397459,75.34845290109354,74.55596163005373,83.45696562740704,74.45794126975791,74.56395602402655,79.42441573761182,0.03392323271289428,0.002400886481162141,-0.18064265754134115,0.32790055248618794,0.2691267868241146,-0.00033042400669223727,0.034073472381577055,0.005440617493304997,0.008388300890066019,-0.03132156621795227,-0.00768094651295206,0.023720503815434262,0.0627285983046481,0.14446776214960658,0.011393184159184225,0.0691514801682197,0.09960761759876816,-0.07475329049451977,0.058657880635515997,-0.07107343648933204,0.14379047319791374,0.04857103078696889,0.13793961899578253,-0.03471951137050535,-0.02862772775493382,-0.07845470215576111,-0.15335046580502523,0.00010045203415369773,0.023454714955647212,-0.06864272684346065,-0.028160412901490434,-0.060684587888314975,-0.06991753617126356,-0.11714009333123443,-0.09235111203209073,-0.037019049254016397,0.0837972434199322,0.09227577318237287,0.1253755122819639,-0.08696367697190549,0.08789653941261258,-0.00031660888610465386,0.08223874108880054,0.005820099514129183,0.09678879123443962,0.08168724842264634,0.0815140768036263,0.035443604489200316,-0.0015669121253695454,-0.13934964903501212,-0.10376703019782821,-0.21936672013307199,-0.11753109190908671,-0.03318922263720865,0.0010108192562767238,-0.01769408162139165,-0.12092772955872012,-0.1095791598572714,-0.16636723486339627,0.018498211690185753,-0.15502619989069985,0.03235984568661207,0.09655134210862498,-0.18914671577655,-0.21984669567018864,-0.13215442921163598,-0.15885946530148204,-0.1515691353193915,0.00862693987574896,0.10718067114760396,0.06619723135894996,-0.19333914260271207,-0.3150760468137493,-0.35855150136883135,-0.14469050385841997,-0.07278518037049075,-0.3834533689174862,0.08383565083627428,-0.30761152500861605,0.055037710690792004,-0.37956711006459537,-0.25859353181031114,-0.30804611779647784,-0.08487192083591603,-0.1323220772540862,-0.053694648671254896,-0.02296116537964611,-0.06757870735771287,-0.10817129835153459,-0.07867904070977587,-0.1332140513505019,-0.0904542981397035,-0.06654298855212433,-0.03957171317390276,-0.03313762165583445,-0.12428242713540241,11.326220558463957,21.864617541378593,11.971347356274473,12.008943351263207,30.782689145281346,37.837090660929576,41.955470496543064,42.26343148597024,42.26343148597024,46.81594946311475,39.47395043324036,0.0,7.341999029874377,0.0,7.341999029874377,3140.8028891261997,2973.464486528709,1124.5126420542688,78.0,35.0,47.0,65.0,84.0,87.0,91.0,99.0,99.0,307.0975825399104,25.0,4.795790545596741,5.652489180268651,6.546785410760524,7.430707082545968,8.334471554600944,9.228867676590067,10.136462615763627,11.035711906538346,11.945181795054973,0.7061403508771932,0.9947368421052637,1.1040057009792672,0.6733411039880108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7081609675386072,0.9825593395252832,1.0126691455514247,0.6821817091068807,9.0,0.0,0.0,1.0,0.0,2.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,9.523678331894054,11.366265088007182,0.0,0.0,0.0,4.794537184071822,4.794537184071822,0.0,0.0,54.280448380976786,18.55355575984923,23.288403375249196,0.0,239.78958730820045,-591.2133996280933,-47.732134479672766,-15.558247358634034,-36.95083747675583,273.07293649772146,400.20225007549936,16.71186141849248,10.531638159881561,18.191011367068153,0.5,0.7986861398392613,0.35350748402407667,57.63049822157099,0.2312906618782888,28.087753264631655,0.2013138601607388,5.0,0.16,0.26129243996956025,0.6160468016627633,0.7648502652289961,0.9079108751449431,0.966127543307337,0.966127543307337,2.9776000000000007,,1.0,1.1428571428571428,0.6925367435132048,0.9970623163947749,-4.329177057356608,1.0348837209302326,0.9939792008757524,-1.5959779122321027,85.51300000000006,14.318215515965875,0.0,0.0,0.0,19.262464868778025,0.0,76.14433010269829,0.0,5.749511833283905,3.9318256327243257,0.0,5.25227342804663,0.0,6.785587645007929,0.0,8.424858580213442,0.0,10.123064751970729,26.83333333333334,15.721095941463004,0.0,0.0,5.290790107709751,0.0,0.6180276308054091,0.40225387377173183,0.0,37.80000000000002,0.0,24.024608056185436,0.0,0.0,0.0,0.0,0.0,-0.09184103888468953,41.95221663721215,10.732113713918693,0.0,5.749511833283905,5.783244946364939,4.794537184071822,0.0,30.389367852172015,63.80899173727966,0.0,10.969244356107037,0.0,25.58696195154441,26.910116766467077,29.447228431669426,196.39947295609988,,149.0511343325148,148.31964481413354,150.64809449885632,149.06624932981538,168.79618214931696,148.87187135247203,149.08211569827262,159.54273491532467,29.447228431669426,196.3994729560998,,148.225047375993,147.37554543525164,150.07599892812812,148.24258915540233,171.24310831217082,148.01696740909492,148.26100244537528,160.44480938745585,4.96413043358293,137.18843796014903,,104.93169275501842,104.43474632940998,106.01458893858214,104.94195339442638,114.55708974014213,104.80997979349553,104.95272378845928,110.63628831549127,1.280314279637801,8.539107519830429,,6.480484101413687,6.448680209310154,6.549917152124188,6.481141275209365,7.33896444127465,6.472690058803131,6.481831117316201,6.936640648492377,2.482065216791464,98.19973647804994,,74.54834489473322,74.17861219397459,75.34845290109354,74.55596163005373,83.45696562740704,74.45794126975791,74.56395602402655,79.42441573761182,37.33725490196076,0.0,1.4475023620559333,0.0,0.0,0.0,0.0,38.481427530954136,0.085668225623583,0.0,0.0,0.0,-0.5953184051398341,0.0,0.0,0.0,0.0,25.922904946061465,409.616189406773,52.10726382130034,122.85282048056767,152.52739252127515,181.05671753425605,192.66635800869284,192.66635800869284,733.0,123.10646776771985,103.24633439914894,57.51761003796305,70.34,70.34,1.0,8.972588438675377,5.643856189774724,4.121170927580907,4.7228140462287165,,4.723354124818575,4.722982892975141,4.724026981785565,4.7233613596263755,4.722066337584724,4.723266995091507,4.723368935492526,4.726011268040289,0.17918134467743077,0.20533974114037898,,0.2053632228181989,0.205347082303267,0.2053924774689376,0.2053635373750598,0.20530723206890103,0.20535943456919595,0.2053638667605446,0.2054787507843604,2.2490464516412643,2.385313941113098,,2.385428289826919,2.3853496917750125,2.3855707328935285,2.3854298215355456,2.385155610119974,2.3854098430773427,2.3854314254484157,2.385990685962803,228.61999999999978,175.48693963678872,130.33466601837,,129.84272161167627,129.8290036493558,129.87874451057638,129.84302439583465,131.34825438239545,129.83918925995835,129.84334305354625,130.41583774732138,7.629866940729944,5.666724609494348,,5.645335722246794,5.644739289102426,5.646901935242451,5.64534888677542,5.710793668799802,5.64518214173732,5.645362741458532,5.67025381510093,6.00047374504787,5.703014619404968,,5.699233007194678,5.699127351006509,5.699510403589123,5.699235339122118,5.710761349160265,5.6992058019749825,5.699237793295702,5.7036372201700765,5.290790107709751,24.024608056185436,13.127565192743763,0.3584915385907459,-1.0557214243722177,15.721095941463004,0.085668225623583,1.4475023620559333,0.0,277.52534916022034,122.97909292926416,-303.211196241143,-24.48002295588864,-7.97924200634587,-18.950699765071437,140.04887539531566,205.2487360065293,8.570887424582866,5.401282526487613,9.329488000296788,1092.0,38.0,1.5530106120096074,0.6348000429674152,0.0,0.0,0.40272855482424136,0.11585192134959056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23075632711195054,0.0726105518097527,0.3470246649094343,0.07587503762979858,16.396976746569035,12.583318817483624,11.07538740046941,7.3326646393916874,10.04933830384639,5.482745048418456,8.075226654420591,3.824551193637373,7.241905692882885,2.7811225491429235,5.970946001466098,1.9491739007518163,4.015483678397045,1.0422640306542592,2.580914883019054,0.5983665456547655,3.4304322239100813,1.261592859475194,6.29075835466581,1.8275690306610193,10.615845280644443,2.5222648294668137,75.88073758509655,48.62751227305157,33.452211328860855,24.093300925320086,22.858818085933567,22.858818085933567,120.0,142.0,44.939894999999986,19.388104999999996,0.4473684210526316,119.04,7.638888888888888,5.083333333333333,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,16.0,17.0,38.0,0.0,0.0,40.0,17.0,2.0,9.0,31.0,19.0,25.0,21.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,4.0,0.0,1.0,23.0,4.0,0.0,0.0,4.0,0.0,3.0,4.0,0.0,0.0,0.0,1.0,3.0,3.597312260588446,7.6283152638710465,4.248495242049359,4.853981484050879,5.504823276709224,6.122629861525839,6.438351469808369,6.80194327252879,7.22654986109528,7.589474122913797 +46861584,COc1cccc2c1c(NS(=O)(=O)c1ccc(Cl)s1)nn2Cc1cccc(CNC(=O)C(C)(C)O)c1,0,36.16393442622951,6.391240983606556,3.5901639344262297,8.270390609188423,161.00068146288243,145.323842704918,1.7652023380528685,6.4998819672131125,5.363089705437746,7.968236573770489,240.88910266249295,33.765625,6.466854687500001,4.1875,6.871527777777777,146.0490149145712,130.78869184375006,2.0104241782187504,6.6429171875,2.996728716563786,7.951338281249996,283.19187490198306,31.045871559633028,6.4783733944954145,3.8623853211009176,6.770302412504247,153.35999822791302,119.94264628440368,1.793233731480175,6.610446788990823,3.775771552501646,7.989093376146788,246.7680829559809,25.50735294117647,6.473216911764706,3.2941176470588234,4.946895424836602,155.23308222392586,95.03594511764705,1.5590842939260507,6.5945227941176485,3.6452470648753317,8.028359249999998,214.21037928871166,21.335483870967742,6.397406451612905,3.0064516129032257,4.844205495818399,163.7174273502982,78.72017859354835,1.34629965102531,6.471674193548386,3.4616944702567958,7.9653825483871,183.51598478380365,23.335664335664337,6.314628671328669,3.111888111888112,4.697746697746698,159.46609263728666,87.52240724475526,1.4536160077830775,6.424967132867133,3.150198566865233,7.879103790209788,198.95780526165115,21.45394736842105,6.222076973684213,3.0921052631578947,4.744152046783626,160.9958572793068,79.63463971710526,1.450091455815902,6.319588815789473,3.23088585661685,7.810831828947369,195.29515804723414,22.93793103448276,6.301668965517241,3.0620689655172413,4.319540229885057,155.18842937328046,84.82308193793105,1.5558709346474902,6.421535862068967,3.3904037178941393,7.87666868965517,210.3550423246559,19.878205128205128,6.139603205128206,2.7756410256410255,3.3789173789173788,157.3764234069888,72.13398217948716,1.4382941229565702,6.253391025641027,3.030277250184657,7.7674267948717945,186.41963784035744,14.181671593657622,0.14206062886320875,0.021202715250625455,0.7390486428379467,4.1971990802950225,1.611060252285594,64.30702215963453,0.3275689059027412,0.1362554152109647,2.047830720043569,0.09708437785541517,51.01731492665933,1.610080455522707,-0.007349332756651362,-0.010855353185395327,0.20536734076861046,0.6399100575313281,-0.044689287833822755,7.042973847537623,-0.003299541611302797,-0.0030958096781777927,-0.4004018083063668,0.0010318544704044368,1.9452279321871835,3.476021292490673,0.022423624407959846,-6.35258855574678e-05,-0.0405977479665376,0.5322877635448571,0.12287081865261039,15.390752591455882,0.06906667326544265,0.020751638481319837,0.3814605483654969,0.012346903690681912,7.19291136003254,-1.0504035126547262,-0.010223635131289734,0.0015358867868106169,-0.000499944670155106,-0.5812738091543865,-0.46679698616985843,-5.100900982802301,-0.06239070201993341,-0.01017297789177472,-0.12937492238648074,-0.004883888101316892,-10.3205263965122,0.7580428431483042,-0.008389756309004636,-0.000508201926576482,0.029433641667605818,0.0083163240569764,0.04931586861994748,3.365681679921286,0.030327271608480665,-0.008105071477490395,-0.14232060510787778,-0.0063753624138499256,2.94308343253916,1.5146484797116355,-0.0011012570874435708,-0.0016208624565267086,0.011839812968541794,-0.01229554020022541,-0.07223062332618273,6.705636929898913,-0.0028308350722178605,0.005598797789149871,-0.12752053975733846,0.007331817948780593,-0.2723172356611912,0.9001877678609315,0.006285283561295053,0.001249306282882561,-0.011050368463486062,0.39631224811708277,0.33372261609404996,4.49833485222917,0.04580480224390051,0.007201001959009284,0.18053196031566365,0.002277572964256936,10.22072187854488,-0.9626778118599933,-0.0198780398298566,0.0005296733504433007,-0.04905429574919611,-0.6296942474048494,-5.997427288325296e-05,-4.36367053973626,-0.01562999148784903,-0.017583996330241183,-0.25072143111535744,-0.01198168356485557,-3.505194042704434,-0.9373462468732557,-0.012166030292380762,-0.0013913045696548475,-0.07742611236295728,-0.61643841210266,-0.09749250907055962,-4.050228537839633,-0.00840618281264557,-0.011135890200456204,-0.17937658662535988,-0.009057592861720351,-2.715839144398504,,,0.49021164021164026,1.2986111111111112,0.6666666666666666,0.041666666666666664,0.6319444444444444,0.034722222222222224,0.9568242261480532,0.026102778370597948,0.0356583339261535,1.147670339227066,0.24906751006288527,0.22244675496576946,2.104494565375119,0.47151426502865473,2.020365727264368,1.3751866479264896,0.23393941076995606,0.24484385207478404,0.04866748175383267,0.6451790793378778,8.98517196032788,2206.0,389.8656999999999,219.0,504.4938271604938,9821.041569235827,8864.754404999998,107.67734262122498,396.4927999999999,327.1484720317025,486.06243099999983,14694.23526241207,2161.0,413.87870000000004,268.0,439.7777777777777,9347.136954532556,8370.476278000004,128.66714740600003,425.1467,191.7906378600823,508.88564999999977,18124.279993726916,3384.0,706.1427000000002,421.0,737.9629629629629,16716.23980684252,13073.748445000001,195.46247673133908,720.5386999999997,411.55909922267944,870.8111779999999,26897.72104220192,3469.0,880.3575000000001,448.0,672.7777777777778,21111.69918245392,12924.888535999999,212.0354639739429,896.8551000000002,495.75360082304513,1091.8568579999996,29132.611583264785,3307.0,991.5980000000003,466.0,750.8518518518518,25376.201239296224,12201.627681999995,208.67644590892306,1003.1094999999999,536.5626428898033,1234.6342950000005,28444.977641489564,3337.0,902.9918999999996,445.0,671.7777777777778,22803.65124713199,12515.704236000001,207.8670891129801,918.7703,450.47839506172835,1126.7118419999997,28450.966152416113,3261.0,945.7557000000003,470.0,721.1111111111111,24471.37030645463,12104.465236999999,220.4139012840171,960.5774999999999,491.09465020576124,1187.2464380000001,29684.86402317959,3326.0,913.7419999999998,444.0,626.3333333333333,22502.322259125667,12299.346881000003,225.60128552388608,931.1227000000002,491.6085390946502,1142.1169599999996,30501.481137075105,3101.0,957.7781000000002,433.0,527.1111111111111,24550.722051490255,11252.901219999998,224.37388318122495,975.5290000000002,472.7232510288065,1211.71858,29081.46350309576,865.0819672131149,8.665698360655734,1.2933656302881527,45.08196721311475,256.0291438979964,98.27467538942123,3922.7283517377064,19.981703260067214,8.311580327868848,124.91767392265771,5.922147049180325,3112.0562105262193,103.04514915345325,-0.4703572964256872,-0.694742603865301,13.14350980919107,40.954243682005,-2.8601144213646563,450.7503262424079,-0.211170663123379,-0.19813181940337873,-25.625715731607475,0.06603868610588395,124.49458765997974,378.88632088148336,2.4441750604676233,-0.00692432152576399,-4.425154528352599,58.01936622638942,13.392919233134533,1677.5920324686913,7.528267385933249,2.2619285944638623,41.579199771839164,1.3458125022843284,784.0273382435469,-142.85487772104275,-1.390414377855404,0.2088806030062439,-0.06799247514109441,-79.05323804499656,-63.484390119100745,-693.722533661113,-8.485135474710944,-1.3835249932813618,-17.59498944456138,-0.6642087817790973,-1403.5915899256593,117.49664068798714,-1.3004122278957186,-0.07877129861935471,4.562214458478902,1.2890302288313418,7.64395963609186,521.6806603877993,4.700727099314503,-1.256286079011011,-22.059693791721056,-0.9881811741467385,456.17793204356985,216.59473259876387,-0.15747976350443063,-0.23178333128331932,1.6930932545014765,-1.7582622486322337,-10.328979135644131,958.9060809755446,-0.40480941532715403,0.8006280838484316,-18.2354371852994,1.0484499666756248,-38.94136469955034,136.8285407148616,0.9553631013168481,0.18989455499814928,-1.6796560064498813,60.23946171379658,50.725837646295595,683.7468975388338,6.962329941072877,1.094552297769411,27.440857967980875,0.34619109056705427,1553.5497255388218,-139.58828271969904,-2.882315775329207,0.07680263581427861,-7.112872883633436,-91.30566587370316,-0.00869626956807168,-632.7322282617577,-2.2663487657381096,-2.5496794678849715,-36.354607511726826,-1.7373441169040578,-508.25313619214296,-146.2260145122279,-1.8979007256113989,-0.21704351286615622,-12.078473528621336,-96.16439228801497,-15.2088314150073,-631.8356519029827,-1.311364518772709,-1.737198871271168,-27.98274751355614,-1.4129844864283747,-423.6709065261667,0.7246447553022504,0.6157884193123865,0.43524393694952734,0.3476079258383721,0.2910850568780039,0.21052876410948923,0.17853275924772935,0.11504903854102393,0.10964832123972429,0.06469025250727004,0.07048021273628434,0.03777556655088185,0.044519835223106784,0.01923091971829871,0.027827645125298704,0.009981237848627792,17.00111111034655,5.681139314253083,3.5811085300501224,2.1785739876010095,0.4767759024311767,-0.5281583194806048,4.043952590119607,0.9712652499536486,6.022700350664633,0.642956174844546,14.692477731269626,10.300546811764061,35.45051894276526,11.694234406818937,2.9612723026334935,0.7514479854182035,3.5371250640374523,2.2278979649592245,7.014583455533976,0.2986704592921133,3.768421867376094,2.423579350307549,24.446296776935352,14.700992626630235,0.29919385428173056,0.6470620692547194,0.7792249206436318,0.8698236843443232,0.8750713260903829,0.8750713260903829,1.3800210008283225,1523.032903803299,0.0,4.0,4.0,0.0,11.0,0.0,3.0,1.0,0.0,4.061395823542831,1.8879404321605868,1.0621965167126453,0.4961420083031216,0.4633551230572204,0.4633551230572204,38.93585829656632,2608.6459209790673,76.75135768307689,42.764687229165034,88.66944136688551,,17.0,1002.0,21.531521693742775,18.318861563241462,16.571798361269682,27.53352218702317,22.463688861328727,33.090006077582004,16.814537072068404,30.33183534230805,15.137565276759457,16.337802844032566,17.64761904761905,46.75,24.0,1.5,22.75,0.0,0.009788359788359754,1.25,0.2039445286311244,0.07171345438324395,-0.13223107424788044,0.044983719983720194,0.15995604724173984,0.0,0.6451209992193585,0.8847883597883595,0.4411764705882341,0.5734075448361146,0.8398046398046393,34.445672141329915,0.9397000213415261,1.283700021341526,41.316132212174374,8.96643036226387,8.0080831787677,75.76180435350429,16.97451354103157,0.5540439527582601,0.20102536427415002,0.07555315704263357,0.2776578521316784,0.25,0.47566563470193945,-1.5510192125475157,-0.05878938030164624,-0.025426544467992057,-0.06462580052281315,0.5243343652980607,1.7097150078663927,0.037147663682655,0.02802811488305562,0.04620851372611872,-6.56916810027736,0.7168757106310403,0.751724613399429,1.5545868922839066,0.9669886363636364,0.6549230903765888,1.2046837478665444,0.7063101157699693,1.0401716455328995,0.6947234788357702,0.7907953159230248,0.6782755684538371,0.8794443219356167,0.5994022875799948,0.7444473249371895,1.1199933807929137,1.343119266055046,0.8479963936303713,1.0271896699145597,0.5991978558937046,0.7533879974600564,0.7175663178932858,0.5977633241399334,0.7501644870984103,0.7808611966446523,0.9694763067250776,1.1037534102356277,1.0920291474315666,1.0226470588235295,1.1240997145870297,1.3498948449738135,0.9689500144658282,1.1596518689306548,1.0684923857789106,1.1146230396611492,1.0703061680278918,1.1222912899447073,0.7542078527022318,1.1831609758750496,1.1472977003763405,0.9316363636363636,1.0769569953672251,0.9960903172040753,0.7609058634966922,0.7553570456482278,1.1412596153268642,1.17082583817341,1.1140369515266317,0.8617039069479404,0.686300623765092,0.9394793606257836,1.042412625045201,0.9307056579783852,0.9725667758536283,1.0757227647779735,0.6965609076596887,0.8585020834998313,0.8764054966647282,0.8917293958818794,0.8074306914373419,0.94112461967725,0.8229369258849225,0.8852871701348779,0.9180366489925968,1.0507177033492825,0.9092037239513122,0.8236285403776135,0.8152741745669059,0.8127983445864577,0.8617376038313481,0.7066673009138019,0.8419207835949676,0.7766301809687637,0.9195859716531727,1.0916548592423074,0.8630028422074157,1.046369905956113,1.1159728900489991,1.0197593551564044,0.915761857273189,1.0159167628625105,1.0517606470260434,1.183790944198548,1.0581788041933171,1.0265306878871099,1.002128248859346,1.0174709281225156,0.9269223728337163,1.0195104895104896,1.1135161734016312,1.019435876220949,0.9963278030316828,1.0324361278122454,1.0077343963735734,1.040877222877036,1.0190447218197622,1.0607083349729696,10.5,0.3290521375369861,4.888888888888891,3.229166666666667,2.090555555555556,1.7091666666666667,1.0965532879818591,0.73093820861678,0.5938995968757872,0.3850077160493828,8851.98659483679,9629.033623558595,3959.2011981379655,3698.0951212298232,17.95576809549157,0.47445561321165636,9.436553133058823,0.9027888512159818,0.0,0.25,1.8693415140200553,4.0427969054023,4.868540820850241,5.434595329259765,5.467382214505666,5.467382214505666,0.26923076923076916,0.008893301014513137,0.08429118773946363,0.05665204678362573,0.03801010101010103,0.03107575757575757,0.018906091172101017,0.012823477344154035,0.011877991937515747,0.009390432098765434,0.5411511559067665,28.994082840236686,12.027348394768133,7.158566335147307,217.2625151597683,0.0,4.51462134121429,247.71147217849625,,172.80475763896354,189.17629297161207,188.60401786645494,172.80305786808657,253.80238634109594,190.4761353519789,190.6722072126056,239.28318109046464,0.11353248768239516,-0.051733776032542346,-0.5119793883509853,0.27788068181818165,0.1524612117008156,-0.027739054309373307,0.10952106956615529,-0.010072816900034056,-0.022720635898283676,-0.19552485680937923,0.010628429549614528,0.03812877912104103,0.24510659900242165,0.1578454536446669,-0.0029961202990543326,-0.054932443703085976,0.12681975607109927,0.07626705362403105,0.23933237886914077,0.2108462434036682,0.15229955043761018,0.18627543020615545,0.12717703881328654,0.14098961049543302,-0.07406767994292658,-0.07196670332308715,0.07243821221271696,-0.0006764705882353271,-0.13849088357122402,-0.28974520692669226,-0.07932105719558777,-0.19046588640027357,-0.07466109054105383,-0.06317657075860655,-0.050305602293608136,-0.2022945819737597,0.05345229144125145,-0.059057575460145235,-0.023968719127211345,0.039826392961876816,0.001981398522652836,0.030610815796605732,0.05233770071900362,0.0925828766466777,-0.05948439894987869,-0.06949822742421298,-0.06566826254317208,0.05768793274930348,0.10680324034502549,-0.007752021768846171,-0.07644598521309176,0.016020343293070553,-0.0029294631884273525,-0.044834215991431677,0.10427534512876317,-0.00864195294854502,0.0410904607386153,-0.06227103564235298,0.0755200590531635,-0.005337741432544318,0.06347543460698361,0.04424366984428317,0.05892199504239006,-0.014952153110047868,0.09442302843762794,0.2071447145571379,0.06995091206466673,0.13983257085304812,0.052849290047371315,0.08815765802742852,0.023459726627170194,0.20033829481692292,-0.06788182940934309,-0.13992645245149038,0.024981392438766823,-0.06637492163009409,-0.1500272527841562,-3.722658590711806e-05,-0.06785682796668718,-0.04771512560013784,-0.1290517246820306,-0.12243269361152233,-0.12341515524464225,-0.06870596870382881,-0.06609561085115376,-0.08563970460876619,-0.06561916967751599,-0.10476456876456876,-0.1468689953251706,-0.06051450213128158,-0.06298267905774617,-0.025662334431527083,-0.08172805596911116,-0.0875934640835662,-0.09329609007959601,-0.05323367465149229,11.542963091112835,21.876774795773592,7.937578084580915,23.865184076135787,44.7609807946637,50.73936612238321,52.03145726358134,52.06450644390921,52.06450644390921,72.73316618151725,49.50671932535363,8.421818787718419,8.814378674692225,1.752029343137976,23.226446856163598,16139.843615110793,14415.702606359708,3020.7447558324675,232.0,58.0,73.0,94.0,116.0,134.0,156.0,182.0,207.0,548.0954895800007,39.0,5.272999558563747,6.124683390894205,7.030857476116121,7.906547232368036,8.815073088844464,9.701799673251209,10.612975492684125,11.506857089568621,12.420494271192512,0.7814207650273224,0.9999344262295085,1.1211921748001066,0.7493909271692207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7179721704132718,0.9892639022822244,1.021688775327451,0.6695682415004691,9.0,1.0,0.0,0.0,1.0,2.0,6.0,1.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,3.0,1.0,0.0,0.0,1.0,2.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,15.160178952647085,15.559741821789673,5.817862777835028,0.0,15.930470882759089,14.198434983669095,8.417796984328938,5.098681808301038,11.336785877934737,41.932775232540564,49.23984565662168,6.544756405912575,28.893807895016796,380.5410480703405,-1240.8432177151335,-47.03255977155642,-20.34169209369071,-51.70180073813056,419.4769063669068,1367.8027032639336,29.71879791152047,22.422995135474324,36.96764062875496,0.47058823529411764,0.8243473644828457,0.15208445263094755,2.480689496663681,0.08346774897200271,7.841039149327733,0.17565263551715435,9.0,0.23076923076923078,0.31519546518784497,0.6816685135922076,0.8208997538998865,0.9163439585899785,0.9218722569076669,0.9218722569076669,3.996000000000002,,3.7184873949579833,2.238669884326153,1.7245291932779523,3.728230781565952,-6.401977778225627,2.154635281905087,2.156022354524144,-2.873824523183298,140.11099999999993,23.05572451704151,0.0,15.097273347452553,0.0,36.74721719971217,11.831892405729622,70.06053561529411,0.0,5.749511833283905,4.3694478524670215,0.0,5.739792912179234,3.044522437723423,7.2813856635702825,5.41610040220442,8.900412690577083,7.5352967024440884,10.562534885899066,47.666666666666664,15.879130383895799,4.5621252501740415,0.0,0.0,0.9518671769903263,1.2053899486111486,2.7810150924548926,1.6861465244534029,60.996000000000016,0.0,37.92406452160535,0.0,0.0,-3.9107451730432543,0.0,0.0,-0.47034993549537973,68.3927226628065,14.775746422258468,5.817862777835028,5.749511833283905,41.92283720422859,27.907341149304557,0.0,24.97437738277524,58.806482793676565,4.336329015745631,10.902924932081056,0.0,45.712846557322464,43.79630239520958,45.03173730254401,495.4229443569925,,346.4900396269243,378.22821539409495,377.11222855550557,346.4900301992451,510.3510936977294,380.832568743852,381.2246354055154,479.3646467707024,45.03173730254401,495.4229443569926,,343.39130013112594,376.1139160588981,375.483506539632,343.38317121460693,514.0626371065157,378.79763542205274,379.1883920706871,481.44018670411253,4.899195129406792,364.6488668925417,,261.6892358409471,278.7241051544306,276.3137171290168,261.70814328539893,382.8738772759051,281.2351169339258,282.2806218381959,359.20295965169316,1.2508815917373335,13.761748454360903,,9.62472332297012,10.506339316502638,10.475339682097378,9.624723061090142,14.176419269381373,10.578682465107,10.589573205708762,13.315684632519512,2.5203324538899405,247.71147217849625,,172.80475763896354,189.17629297161207,188.60401786645494,172.80305786808657,253.80238634109594,190.4761353519789,190.6722072126056,239.28318109046464,60.345098039215685,0.0,4.359431337341624,5.932223137962948,0.0,0.0,9.82530419592215,62.32301529497452,0.5855837440840805,5.279738068004524,5.489606071600778,0.0,0.0,0.0,-1.4694192334513203,0.0,0.0,40.84366273152862,659.4926922793021,114.02983235522338,246.6106112295403,296.9809900718647,331.5103150848457,333.5103150848457,333.5103150848457,1327.0,154.39228727348305,140.52526215794518,88.84949354706461,159.17000000000002,122.55,0.8888888888888888,9.303794426836806,6.285402218862249,4.459894818783262,5.901502525509232,,5.889397123907255,5.885563103502009,5.883036425669842,5.889411995254952,5.883051967834442,5.8868767682567436,5.88797687685213,5.889971992301168,0.12388596718842394,0.1639306257085898,,0.1635943645529793,0.1634878639861669,0.16341767849082894,0.16359477764597088,0.1634181102176234,0.16352435467379844,0.1635549132458925,0.1636103331194769,2.776059027983496,3.0561408292925725,,3.0540874820137085,3.0534362661341308,3.053006873008003,3.054090007115787,3.053009514865531,3.053659442429699,3.0538462997158686,3.054185087987118,376.79000000000116,1251.1413108748,253.74218453888463,,253.51923995177393,254.8739559727468,255.54590942350444,253.50850381655357,255.6275609084961,254.70627858390617,254.52420626165943,254.69512981211898,34.753925302077775,7.048394014969017,,7.042201109771498,7.0798321103540784,7.098497483986234,7.0419028837931545,7.100765580791558,7.075174405108505,7.070116840601651,7.0748647170033045,8.412745307882837,6.817252575496976,,6.816373562858908,6.821702978115814,6.824335923596585,6.81633121355809,6.824655390432894,6.821044878042376,6.8203297899421,6.821001105993044,36.11694316884755,11.991636684244947,17.623861074893338,0.9364268833138545,0.14475269257991297,15.879130383895799,0.0,3.4362170941252477,-2.4019471857427974,444.43697317879884,304.43967085663996,-992.6968528137929,-37.62689226038813,-16.27371889858677,-41.36236886724137,335.58905656531743,1094.2667207389493,23.77557191350854,17.93879870063851,29.574776236187812,4292.0,57.0,4.209081231623467,2.584563267288063,0.4927992798267444,0.16283443518297236,1.1853475622428724,0.41087672297857103,0.30618621784789724,0.05890616505373353,0.0,0.0,0.0,0.0,0.19641855032959654,0.12706207261596575,0.5401789982032655,0.34967297772498546,0.8403371424966989,0.47155889976497034,26.087211190881014,22.168383095245915,16.974513541031566,13.556709107696511,16.882933298924225,12.210668318350375,13.032891425084243,8.398579813494747,10.306942196534083,6.080883735683384,8.175704677408984,4.381965719902294,5.965657919896309,2.5769432422520273,4.341112639546598,1.5570731043859354,7.5523220500412025,4.044926593587338,10.174844089392886,4.993514294421082,14.45946967869647,6.241840528913104,115.30643783897315,55.737959825889355,36.330991195975784,31.738019338359596,31.60914270434114,31.60914270434114,194.0,228.0,73.13982499999999,40.160175000000024,0.3770491803278688,261.12,13.23611111111111,7.6527777777777795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,21.0,61.0,0.0,0.0,64.0,21.0,3.0,12.0,52.0,24.0,39.0,40.0,0.0,0.0,0.0,24.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,8.0,3.0,2.0,36.0,12.0,0.0,4.0,5.0,0.0,4.0,9.0,2.0,0.0,1.0,2.0,4.0,3.979681653901961,8.18810735802871,4.653960350157523,5.202632116413628,5.7907244047900095,6.272759075064222,6.631775302476759,7.034449877335929,7.470973943755124,7.826859237520788 +50088,CC(C)COCC(CN(Cc1ccccc1)c1ccccc1)N1CCCC1,0,17.37704918032787,5.666554098360655,2.721311475409836,4.262295081967213,162.9212479738847,67.95483900000004,1.3953056190961637,5.753062295081966,2.120673952641166,7.2648384918032765,195.47987009906996,20.761904761904763,6.060317460317459,3.365079365079365,4.174603174603175,145.35690022759692,76.74514242857148,1.7480648657142865,6.2118809523809535,2.42989417989418,7.508610095238091,243.27652673456402,15.817391304347826,5.978226086956521,3.0434782608695654,2.869565217391304,156.14787150642337,56.07504101739129,1.4298316793207482,6.082273913043476,2.1710144927536232,7.506778469565214,191.3564204693647,12.283870967741935,5.78947677419355,2.567741935483871,2.109677419354839,160.19130196572883,41.55181699354841,1.2272485921752772,5.875994838709677,1.981182795698925,7.372520722580646,154.7466839428518,10.994186046511627,5.686098837209304,2.4127906976744184,1.8837209302325582,164.52232349430815,37.459413505813956,1.1048290238592389,5.754706976744186,1.8236434108527135,7.322318255813954,138.11099039418656,12.696969696969697,5.780448484848484,2.618181818181818,2.290909090909091,161.0093700895125,43.877152824242444,1.2287550444100492,5.865296969696969,1.944949494949495,7.373104484848486,157.75614504269112,12.53225806451613,5.729758064516129,2.5483870967741935,2.139784946236559,160.91445428621506,43.54340867741935,1.2389617251774037,5.816064516129031,1.9735663082437271,7.333340043010752,158.9104913281338,12.265,5.703895000000001,2.445,1.86,158.28370462609925,41.77138384999998,1.2722307857767803,5.801372500000001,2.0061111111111107,7.295103159999999,160.51943503373892,9.95475113122172,5.566113122171947,2.1040723981900453,1.2171945701357465,160.86750493396823,32.482253529411764,1.15493182809586,5.6527918552036205,1.8743086978381096,7.20224318552036,139.39960068035808,6.627250739048642,0.05975119591507656,0.008267382663234572,0.44665412523515186,2.627250739048643,1.3894360182324044,31.846757999999983,0.23339967666847133,0.062100080623488235,0.2469168980859387,0.030149570545552267,52.51063590250802,0.49426890706116694,0.007433451495800603,-0.0014264634028906338,0.1336217009423138,0.6948934191610892,-0.2887970485168437,2.2841897142857217,-0.01845638740770791,0.008296614666649913,0.008786111715431753,0.0025117315621759674,-1.1699538352887813,-0.48911816599090957,-0.009086420433964452,-0.0021206114082002285,-0.045798815185258704,-0.25433555729525725,-0.03383520915159918,-2.294765165217387,-0.003765237182945505,-0.00880156316090788,-0.024092791013791703,-0.004750602619679237,-1.8220789205121877,-0.7844162599370619,0.0010253984794237876,0.0009472022008863052,-0.00329082539379804,-0.05834539795927217,-0.09640706574109648,-3.8222583096774145,-0.03213538239613081,-0.0007671139391941629,-0.0013971848242899274,0.0017950809615867624,-7.314111860279895,0.5659440760485738,0.0021596504440542187,0.00017751484846606873,0.04009768566839372,0.14362230708174217,0.07441219593298842,2.7521980988372086,0.02474813659235716,0.002682077211052325,-0.003276240653821072,0.0005220302931819719,5.149475806179733,-0.0008225224564917981,-0.0033458506592394218,-0.000690213645569094,0.011766143021182012,0.0976374874789279,-0.005788943749052101,0.012472533333334354,0.001013266072055794,-0.002640925134168779,-0.007166939483521057,-0.002177146501836472,0.4284192251202061,0.3312368336642076,-0.0036212646617713837,4.480205961375538e-06,-0.025889097912747454,-0.02686293718014302,0.1324096865962917,1.6528282096774203,0.024123242752889015,-0.0025971721094744855,0.01306459318851929,-0.0025115585589490967,4.738398291949876,-0.5589720505240526,-0.004400195915076525,0.0002896263646872552,-0.07640822359580757,-0.26429991937651165,-0.057572430127320315,-2.6913102999999974,-0.018324869347614993,-0.004699515049717742,0.008297127414972082,-0.001838638086535898,-4.167745747280453,-0.5995079899944182,-0.005353539954836276,-0.0004468784566803256,-0.05714296137490409,-0.29530207055224045,-0.005711439800775941,-2.8649412443438913,-0.012481583855408332,-0.0058560186102845566,-0.017826985534116765,-0.0021640896465091606,-3.527421352673292,,,0.4864197530864198,1.0740740740740742,0.46296296296296297,0.018518518518518517,0.6111111111111112,-0.14814814814814814,1.0190419414540084,0.00718025450966006,0.016735810065215614,0.7214374066587366,0.20274615415947964,0.2868963158631972,1.7404793481127447,0.4896424700226768,2.03479423976602,1.7948223065404034,0.16605857063260843,0.07391336259300833,0.0,0.23997193322561675,6.004378913245918,1060.0,345.65979999999996,166.0,260.0,9938.196126406967,4145.245179000002,85.11364276486599,350.9367999999999,129.36111111111111,443.1551479999999,11924.272076043268,1308.0,381.79999999999995,212.0,263.0,9157.484714338607,4834.943973000003,110.12808654000006,391.34850000000006,153.08333333333334,473.0424359999997,15326.421184277533,1819.0,687.496,350.0,330.0,17957.005223238688,6448.629716999999,164.43064312188605,699.4614999999998,249.66666666666669,863.2795239999996,22005.98835397694,1904.0,897.3689000000003,398.0,327.0,24829.65180468797,6440.531634000003,190.22353178716796,910.7792,307.08333333333337,1142.740712,23985.73601114203,1891.0,978.0090000000004,415.0,324.0,28297.839641021,6443.019123,190.03059210378908,989.8095999999999,313.66666666666674,1259.43874,23755.090347800087,2095.0,953.7739999999999,432.0,378.0,26566.54606476956,7239.730216000004,202.74458232765812,967.7739999999999,320.9166666666667,1216.5622400000002,26029.763932044032,2331.0,1065.735,474.0,398.0,29930.088497236,8099.074013999999,230.44688088299708,1081.7879999999998,367.08333333333326,1364.0012479999998,29557.351387032882,2453.0,1140.7790000000002,489.0,372.0,31656.740925219852,8354.276769999995,254.44615715535605,1160.2745000000002,401.2222222222222,1459.0206319999998,32103.887006747784,2200.0,1230.1110000000003,465.0,269.0,35551.71859040698,7178.57803,255.23993400918505,1249.267,414.22222222222223,1591.6957439999996,30807.311750359135,404.2622950819672,3.6448229508196706,0.5043103424573089,27.245901639344265,160.2622950819672,84.75559711217667,1942.652237999999,14.23738027677675,3.7881049180327824,15.06193078324226,1.8391238032786883,3203.148790052989,31.13894114485352,0.46830744423543796,-0.08986719438210992,8.418167159365769,43.778285407148616,-18.19421405656115,143.90395200000046,-1.1627524066855983,0.5226867239989446,0.5535250380722004,0.15823908841708595,-73.70709162319322,-56.2485890889546,-1.044938349905912,-0.24387031194302627,-5.266863746304751,-29.24858908895458,-3.891049052433906,-263.89799399999947,-0.4330022760387331,-1.0121797635044063,-2.770670966586046,-0.5463193012631122,-209.53907585890158,-121.58452029024458,0.15893676431068707,0.1468163411373773,-0.5100779360386962,-9.043536683687186,-14.943095189869954,-592.4500379999993,-4.980984271400276,-0.11890266057509526,-0.21656364776493875,0.27823754904594816,-1133.6873383433838,97.3423810803547,0.3714598763773256,0.030532553936163824,6.896801934963721,24.703036818059655,12.798897700474008,473.37807299999986,4.256679493885431,0.46131728030099994,-0.5635133924572244,0.08978921042729918,885.7098386629141,-0.1357162053211467,-0.5520653587745046,-0.11388525151890051,1.941413598495032,16.110185434023105,-0.9551757185935967,2.0579680000001686,0.167188901889206,-0.43575264713784856,-1.1825450147809744,-0.3592291728030179,70.689172144834,61.610051061542606,-0.6735552270894773,0.0008333183088158501,-4.8153722117710265,-4.996506315506601,24.628201706910257,307.42604700000015,4.486923152037357,-0.4830740123622543,2.430014333064588,-0.467149891964532,881.342082302677,-111.79441010481052,-0.880039183015305,0.05792527293745103,-15.281644719161513,-52.859983875302326,-11.514486025464063,-538.2620599999995,-3.6649738695229983,-0.9399030099435484,1.6594254829944166,-0.3677276173071796,-833.5491494560905,-132.49126578876644,-1.183132330018817,-0.09876013892635196,-12.628594463853805,-65.26175759204514,-1.262228195971483,-633.152015,-2.7584300320452413,-1.294180112872887,-3.939763803039805,-0.4782638118785245,-779.5601189407975,0.6999677947289689,0.6254715911567287,0.45587402381421643,0.35787700090221203,0.30440478346849104,0.2170236143852623,0.19346020063547387,0.11527136278562293,0.12660081554298713,0.06747083594884726,0.0813520728936462,0.036701279592304265,0.051905374272474956,0.02216140144609946,0.03460772365017803,0.012566011413029212,8.010010605042488,5.694806082964111,3.519940025848257,2.19462282150731,0.33462638108200005,-0.43015705979633956,3.1346204887099764,0.9888955403803659,6.005013935499225,0.9889050668448087,14.54457380201649,10.955264601730144,16.004023671640667,11.705921197074126,1.9866701205148196,0.7792933356464067,3.4623690772399476,2.244551346488329,3.5100101565034065,1.2394692367632867,3.675928440734341,2.4405032900742887,20.894169367808054,14.706816755139705,0.20600650165770812,0.4684193870039901,0.6924651850779521,0.8125045198691719,0.8755976858765963,0.8809650844157837,1.6085850775007469,637.9454534358497,0.0,0.0,8.0,0.0,11.0,3.0,1.0,1.0,0.0,4.672341583931464,3.069386056019975,1.7007968190467952,0.9675336066992459,0.5821274590873298,0.5493405738414276,292.5681369072091,1156.8989086194479,29.62241821396971,18.96555587900734,35.86389484722857,,12.0,538.0,0.0,0.0,0.0,11.959746875309353,26.303276740850986,37.18199382405773,0.0,0.0,84.31096454569833,4.736862953800049,13.133333333333335,29.0,12.5,0.5,16.5,0.0,0.013580246913580198,-4.0,0.062472500177418344,0.03332584774309477,-0.029146652434323572,0.0,0.07230618892508112,0.0,0.5027322404371587,0.7580246913580244,0.44025974025974035,0.4694063926940639,0.7580246913580244,27.514132419258225,0.19386687176082162,0.45186687176082163,19.478809979785886,5.47414616230595,7.746200528306324,46.99294239904411,13.220346690612274,0.6416938110749189,0.07614213197969542,0.0,0.21319796954314718,0.5,0.26526425389285807,-0.49244342229602656,-0.01504906772461255,-0.008072842988459452,-0.023449686776001268,0.734735746107142,1.3639824438703494,0.03248475133347116,0.022360367932300812,0.03409956109675874,-5.361923726022448,1.0177267987486966,0.9157672591638213,1.330532254434359,0.9437854564208354,0.8022562543839139,1.4680845309806196,1.0226462585513691,1.2600858060650686,0.9038066156552671,0.9871061739485975,0.9475257401108618,1.170290592798495,1.1686342959906908,1.629086107858076,1.8953121149057914,1.5415162454873645,1.4063900946417136,1.1805400338521217,1.1626059742243642,1.0479912533450522,1.5324836088929918,1.2513552451008743,1.7357634219055444,1.0576704311882574,1.1547916176124322,1.2402195404703311,1.269127360624634,1.1650168859904506,1.1436896151206377,1.1331733778898476,1.1538058430205207,1.1223893621764505,1.2203020660961819,1.015163513940524,1.234780842193013,1.1244914389733727,0.9384017993549483,1.3602680057193597,1.4257278164616491,0.998656703887163,1.0839787995280326,0.9093938114623393,0.9324424734773232,0.831402319104959,1.279758763290495,1.1715197135842186,1.5300885783571014,0.8438157665738013,1.0416279584162798,1.3870283400558092,1.559580238853454,1.1477956459905918,1.1231587561374796,1.0497770986312,1.0375329744053106,0.9729474099279026,1.3118192865391176,1.088770764850097,1.4843032588012213,0.9697191857396938,0.9766894278314106,1.2998241879465324,1.2753220519122237,1.231318659989907,1.1603960984108548,0.9298252946700787,0.9721833402969545,0.88337501016721,1.2363020657611412,1.0476458907930513,1.3990936591792842,0.8946037754782046,1.090875912408759,1.0724965389940004,0.9603298642290125,1.2001805054151624,1.1269026186579378,1.0897440770577613,1.0914290338876398,1.0995238887411765,1.0726286858258642,0.944434030717136,1.0475607985527533,1.0944490560952553,1.0604199006946968,0.9812591408040164,0.9126391571544439,0.9765261283630363,1.028291651546682,0.9758714462139911,1.0609635996114506,1.049005777710369,1.0026515641597904,1.0734964423083762,0.9549074064756413,1.059669134118398,4.0,0.09560044893378225,2.000000000000001,0.9027777777777778,0.8322222222222223,0.6875,0.4449433106575963,0.31770833333333337,0.2562830687830688,0.15844135802469134,5051.456832296824,6051.445431054263,2521.3734523637677,2185.3217317325025,11.270236970525087,0.37026215470401336,7.097294745793636,0.5879623679437344,1.0,0.5,1.2583957536314225,2.8613512815429116,4.229940518516091,4.963203730863641,5.348609878475557,5.381396763721459,0.1379310344827586,0.006828603495270161,0.05405405405405407,0.026552287581699342,0.02377777777777778,0.017187499999999998,0.009672680666469485,0.006906702898550724,0.006744291283764969,0.006888754696725711,0.2965436869370709,21.702734839476815,11.869978086194303,7.395555555555555,164.49518411470473,1.0,4.2046034048085215,145.65953434747155,,123.48314523763969,120.86394315859889,120.89334214033036,123.51229139133687,177.43597037858046,122.47135642044584,123.63092973926841,156.31579881911665,0.07458128966644778,0.12440674001513961,-0.1725411125862338,0.2991614616163355,0.26449451848388017,-0.2078519951456577,0.07172440329046124,-0.07907631951831696,0.13360070684854905,0.03558327430621525,0.08330903282290711,-0.022280321218370577,-0.07380408335977999,-0.1520709384106527,-0.2565033571786491,-0.10253753989431265,-0.09680673165872056,-0.02435175762511414,-0.07205647636777934,-0.016132143954482734,-0.14173191198046284,-0.09757449247319751,-0.1575678370775353,-0.034699235482409406,-0.11836224262878375,0.01716113734160518,0.11457098811919722,-0.007367726408136285,-0.022207776780529025,-0.06938575398652931,-0.12002032701970532,-0.13768391993865947,-0.012352865430967185,-0.0056585225034037215,0.05953918842308607,-0.13928819818254298,0.08539650879873249,0.036144053871719914,0.02147171066067685,0.0897734587076372,0.05466638754615003,0.05355568371377994,0.08642003995625583,0.10603329424277753,0.04318959305888369,-0.013268596354554827,0.017314684213934284,0.09806538651979614,-0.00012411216790778512,-0.055996379787859415,-0.08348635519660964,0.026342850891587402,0.037163368546347254,-0.004166398217038168,0.0003916421675743057,0.004341334514764863,-0.04252691957327181,-0.029025714882529526,-0.07221152614917262,0.008158713330297794,0.04998103236271356,-0.060605726903244415,0.0005419134620802322,-0.05796229442438825,-0.0102247329426465,0.0952974335333116,0.05189941813472571,0.10335593903651577,-0.04182236292447183,0.052910891436730244,-0.08330329465736312,0.09023692458699704,-0.08434448499594485,-0.07364197231015182,0.03503241309673941,-0.1710679903730445,-0.10059942716857609,-0.04143582674685668,-0.08450814051464826,-0.07851283090526405,-0.07567647259930022,0.03360291449993953,-0.06098388976247419,-0.07936955391319861,-0.09046103936614884,-0.08959720174379736,-0.054053196142427824,-0.1279355952322612,-0.1123996526723493,-0.004110617348211434,-0.08996021649500062,-0.05347729711355852,-0.09429969416287075,-0.07219832126642113,-0.07177845678562782,-0.0671753691808713,32.67770811242014,17.77291611945526,1.3398602321756279,10.653355467920054,24.61192877159051,30.04352772400295,33.94101858914123,34.690262084294694,34.723311264622566,54.93944447368255,48.46020227659089,4.483581407080427,1.9956607900112249,0.0,6.4792421970916525,4169.058011082098,3211.608422677023,2561.1053381211495,76.0,37.0,45.0,56.0,65.0,68.0,77.0,83.0,84.0,366.267113708001,29.0,4.890349128221754,5.6937321388027,6.52649485957079,7.351799869057777,8.19450550976564,9.031094081699155,9.879246088163093,10.72231979864831,11.573540674977666,0.5464480874316938,0.9471475409836068,1.1287014191596974,0.500291399550412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6454595268479435,0.9355191256830601,0.9795111816890143,0.5810130967356598,10.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,9.636772684650527,0.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,62.37841094707412,49.54524773245878,25.38378105102163,12.648722793660879,165.30901202003406,-306.8839258243996,-9.378370741136871,-5.030884029908191,-14.613520277352364,457.8771489272432,850.0149827950481,20.244047472832836,13.93467184909915,21.250374569876207,0.5,0.9981546375718943,0.20441848465922094,1.2303985290318462,0.03472450928313372,240.69209041118833,0.0018453624281059024,6.0,0.3448275862068966,0.21218200739750415,0.4824613060201254,0.7132233780992732,0.8368611604882111,0.9018456852910396,0.9073739836087282,4.830200000000005,,0.5357142857142858,0.6570497906002791,0.6236333567935969,0.5342659360630688,-2.118657900702788,0.5810893512851898,0.5290207864431083,-1.0376437345448832,114.18600000000008,4.736862953800049,0.0,4.899909730850478,5.917906046161393,39.275714880293805,37.74794287761404,66.2271221763131,0.0,0.0,4.07753744390572,0.0,5.332718793265369,2.3978952727983707,6.767343125265392,4.442651256490317,8.28374674710613,6.293419278846481,9.845275642787714,33.33333333333332,21.57579476718501,0.0,0.0,0.0,0.0,0.0,2.6379938534055603,0.0,57.77600000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.85078656874154,4.899909730850478,5.687386274683562,0.0,43.789783706761995,11.281619359712625,5.917906046161393,32.25256913693026,60.6636706846161,0.0,0.0,0.0,30.517775372575134,39.37303113772455,35.12840837933862,291.3190686949431,,246.92660793559682,241.67921596233847,241.74048921719452,246.98500752815056,355.65662886853227,244.89966918524092,247.22267275361514,313.01591013250913,35.12840837933862,291.3190686949432,,246.43057618956513,241.07083652659745,241.16305092386716,246.4903168466107,356.99059865786364,244.36162348960647,246.73283869209374,313.6692413727782,4.68103093867539,198.38508956436263,,170.53800361229253,166.8358691467596,167.02608113084034,170.57945537394443,248.23177062625373,169.1115204372915,170.74658935746905,217.25493462446994,1.3010521621977267,10.789595136849744,,9.145429923540624,8.951082072679203,8.953351452488686,9.147592871412984,13.172467735871566,9.070358117971885,9.15639528717093,11.593181856759598,2.3502739436312527,145.65953434747155,,123.48314523763969,120.86394315859889,120.89334214033036,123.51229139133687,177.43597037858046,122.47135642044584,123.63092973926841,156.31579881911665,57.06666666666666,0.0,4.437573801125389,0.0,0.0,0.0,0.0,59.75018208302987,8.600983801501929,0.0,6.088269085411943,0.0,1.022168138082189,5.137216553287981,0.0,0.0,0.0,35.44179890087525,622.0361566201497,76.76214097151677,174.54242817411762,258.02637162948156,302.7554275826821,326.26520258700896,328.265202587009,647.0,129.8630821489069,1.1500043271276632,74.44058756046549,15.71,15.71,1.0,7.672117859382131,5.857980995127572,4.483383656061646,5.109403348951782,,5.111965603739833,5.110608070897132,5.106616753499815,5.111969150342891,5.112632503592641,5.111284877165796,5.112055826550863,5.117935037080187,0.1660512465208017,0.18923716107228822,,0.1893320593977716,0.18928178040359747,0.18913395383332648,0.1893321907534404,0.18935675939232002,0.1893068473024369,0.1893354009833653,0.1895531495214884,2.493629814727396,2.62433440895117,,2.624835761529984,2.6245701664080725,2.623788874488017,2.6248364553143526,2.624966211616482,2.624702589291602,2.6248534107126753,2.6260028176388333,316.4700000000008,252.91580330423363,162.94173915101453,,162.4239732121582,162.56894103896028,162.94114409266203,162.42346381531382,162.01556139806613,162.4948843451996,162.41448836826376,161.66444070750975,9.367251974230875,6.034879227815353,,6.015702711561414,6.021071890331862,6.034857188617112,6.0156838450116235,6.000576348076523,6.018329049822207,6.015351421046806,5.987571878055917,6.526308413085938,6.086644481402863,,6.083461808144818,6.084353937357857,6.086640829426138,6.083458671922787,6.080944161642146,6.083898293331922,6.083403410848815,6.0787746063653385,6.088269085411943,5.137216553287981,0.0,2.6379938534055603,0.5821974275757642,22.015765477691435,2.6204420753609066,10.418115527266412,0.0,379.75572193757137,103.01828857075233,-191.24581559093662,-5.844470858109358,-3.135177304769453,-9.10694359956841,285.3427026254534,529.717573875712,12.615810226629124,8.683894653700195,13.2429393468928,1895.0,34.0,1.2790391023624612,0.9706373085337646,0.0,0.0,0.16666666666666666,0.10181752206178679,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.11180339887498948,0.2874574785652648,0.12869975234674869,0.24894547894534008,0.12831193626258458,18.89913045768216,16.887732961231674,13.220346690612276,10.37843302616415,11.262976988334168,8.029873732254705,8.705709028596324,5.187211325353032,7.08964567040728,3.7783668131354466,5.287884738087003,2.385583173499777,3.529565450528297,1.5069752983347633,2.6647947210637084,0.9675828788032493,2.515941226553049,1.454642688586894,3.7809310892394885,1.9439258243734276,5.298567389323842,2.3585824323378426,95.26769996745226,57.36747617935991,37.612040887554095,25.57369997734342,22.7693943891867,22.640517755168243,132.0,148.0,65.75296199999997,39.26503800000002,0.3442622950819672,139.03,7.416666666666667,6.138888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,61.0,0.0,1.0,63.0,12.0,0.0,6.0,57.0,12.0,29.0,51.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,3.0,0.0,1.0,27.0,3.0,0.0,2.0,1.0,0.0,3.0,10.0,0.0,0.0,0.0,0.0,2.0,3.58351893845611,6.2127313384093314,4.007333185232471,4.412798293340635,4.842216642471293,5.265923298737032,5.137267945029622,5.444849815490406,5.740997973582345,6.048553514092109 +34312,NC(=O)N1c2ccccc2CC(=O)c2ccccc21,0,25.096774193548388,6.296122580645163,3.6774193548387095,8.96774193548387,158.52612460858026,99.37040912903224,1.6411375115544522,6.379609677419356,5.836021505376345,7.768903612903228,246.61833418655445,26.606060606060606,6.377515151515152,4.393939393939394,8.666666666666666,145.143728516412,102.13791190909086,1.9534111424242417,6.53228787878788,3.565656565656566,7.7573460606060625,289.80462328564374,24.35185185185185,6.315646296296298,4.2407407407407405,7.685185185185185,147.58564920726482,92.58531344444438,1.7954663079573692,6.451135185185188,3.6553497942386843,7.723513333333334,260.5918250654473,21.81081081081081,6.321027027027026,3.891891891891892,6.756756756756757,152.81083956283638,81.65473016216215,1.6216635407174866,6.434290540540539,3.4369369369369376,7.782447243243243,235.65837542233135,21.31645569620253,6.333025316455697,3.3797468354430378,6.265822784810126,153.71541222482838,79.3738640506329,1.5467775761404303,6.439672151898735,3.828410689170182,7.796216810126582,224.09649127603655,18.61904761904762,6.303999999999999,2.7023809523809526,4.75,156.25639787909932,67.57291703571427,1.3750134229618096,6.393351190476191,4.142857142857143,7.815769285714285,195.75275989650513,12.554054054054054,6.194716216216216,1.9594594594594594,2.554054054054054,164.2033862682566,41.29132327027027,1.0906042995586347,6.241198648648648,4.376126126126127,7.787371567567569,141.39948866234803,6.148936170212766,5.5684680851063835,1.574468085106383,0.574468085106383,169.60059489055917,16.572302872340423,0.8723176021729999,5.609861702127659,2.3404255319148937,7.2830484255319154,95.96598823475705,2.764705882352941,5.072941176470589,1.3529411764705883,0.0,173.69585050259644,4.930543058823529,0.6807063419611175,5.111764705882353,1.3529411764705883,6.859346823529413,60.60828746843204,6.965660770031216,0.12009594172736726,0.01913484882545923,0.643080124869927,3.868886576482829,1.557464664258242,33.14599026430802,0.22768375543972108,0.11185515088449524,2.1520985084980917,0.07454346722164405,48.61370264956949,0.09201273925519547,-0.00932507173714254,-0.014167698921531328,0.24939299340964272,0.9013969034780686,0.05808614855949264,0.5152151667770202,0.015444181680462828,-0.00750422224324414,-0.19519072094514342,-0.0056477331062971,3.167143012596906,0.3754383936485919,0.03089013951516549,0.007065131575313277,0.049273519096620026,0.23923767680271302,0.03104858469306909,1.6243636174124108,-0.010865395075382858,0.02589938913939953,0.20685542751677563,0.018780169576444284,-2.4125117788011146,-0.22198160699721556,-0.017412593863374324,-0.004035396137328185,-0.017971144922237534,-0.25859886942092986,-0.0366280873110112,-0.9487244779087147,0.008805613320328644,-0.014965787327389849,-0.2280212053885311,-0.011138644205079165,1.4448727181195642,-0.22250029636849775,-0.0020049658188332656,0.0018515680637190876,-0.2449584425506131,-0.297224673665354,-0.1284576170454212,-1.1319965403390488,-0.028735319018506685,-0.001091982244234013,0.025230106356043218,-0.0018786342285857308,-4.122145668843369,-0.9134334274812941,-0.016784420990040162,-0.0011868315659885015,-0.2148927208760715,-0.8231876517516474,-0.3598947668203302,-4.395275268916308,-0.0513376978095844,-0.014598200039641265,-0.21623061295277737,-0.011461835885238589,-8.995217914045481,-2.228520403858594,-0.015771181483252236,0.0015936038489451022,0.0033889248249290307,-1.013176027223894,-0.06467428841455185,-10.614774136583508,-0.030880127732627532,-0.019276598138200606,-0.05398022892819989,-0.004190143769159374,-11.92479463358899,0.6342019616091381,-0.00661687515221276,-0.0028293525059907908,0.2354373768459273,0.4845794495981585,0.2608973630302317,3.1884011323975603,0.052232002974179126,-0.005183222264042243,-0.2646013682555846,-0.0049177294042110345,9.578568335117247,4.865458774560811,0.051123413111342574,0.002639546747740319,0.28860867968415255,2.7079635183938304,0.26155170598548233,23.146500500397888,0.0877231482366372,0.05464446960886343,0.5207351410907757,0.023191826896002937,27.192003922906608,,,0.4719298245614034,1.4210526315789473,0.7894736842105263,0.0,0.631578947368421,0.15789473684210525,0.6215569946047169,0.012245948001107385,0.025824895369528436,1.0126628184083983,0.293991642068989,0.18924733426532972,1.6342198130131151,0.4832389763343187,2.0560173697761828,1.6622445324840518,0.2087906398737685,0.18498219741836228,0.0,0.3937728372921308,8.131931536258064,778.0,195.17980000000003,114.0,278.0,4914.309862865988,3080.4826829999993,50.875262858188016,197.76790000000003,180.91666666666669,240.83601200000007,7645.168359783188,878.0,210.45800000000003,145.0,286.0,4789.743041041596,3370.551092999998,64.46256769999998,215.56550000000004,117.66666666666669,255.99242000000007,9563.552568426243,1315.0,341.0449000000001,229.0,415.0,7969.6250571923,4999.606925999997,96.95518062969794,348.36130000000014,197.38888888888894,417.06972,14071.958553534156,1614.0,467.7559999999999,288.0,500.0,11308.002127649892,6042.450032,120.00310201309401,476.13749999999993,254.33333333333337,575.9010959999999,17438.71978125252,1684.0,500.3090000000001,267.0,495.0,12143.517565761442,6270.53526,122.195428515094,508.73410000000007,302.4444444444444,615.901128,17703.622810806886,1564.0,529.536,227.0,399.0,13125.537421844343,5676.125030999999,115.50112752879201,537.0415,348.0,656.5246199999999,16443.23183130643,929.0,458.409,145.0,189.0,12151.050583850989,3055.557922,80.70471816733897,461.84869999999995,323.83333333333337,576.2654960000001,10463.562161013755,289.0,261.718,74.0,27.0,7971.227959856281,778.8982349999999,40.998927302130994,263.66349999999994,110.0,342.30327600000004,4510.4014470335815,47.0,86.24000000000002,23.0,0.0,2952.8294585441395,83.819232,11.572007813338997,86.9,23.0,116.60889600000002,1030.3408869633447,215.93548387096772,3.722974193548385,0.5931803135892362,19.93548387096774,119.9354838709677,48.2814045920055,1027.5256981935486,7.058196418631353,3.4675096774193523,66.71505376344085,2.310847483870966,1507.0247821366543,3.0364203954214504,-0.3077273673257038,-0.4675340644105338,8.22996878251821,29.746097814776263,1.916842902463257,17.002100503641664,0.5096579954552733,-0.24763933402705662,-6.441293791189733,-0.1863751925078043,104.5157194156979,20.27367325702396,1.6680675338189366,0.38151710506691694,2.6607700312174813,12.918834547346503,1.6766235734257309,87.71563534027018,-0.5867313340706743,1.3985670135275745,11.170193085905884,1.0141291571279913,-130.27563605526018,-16.42663891779395,-1.2885319458897,-0.2986193141622857,-1.3298647242455774,-19.13631633714881,-2.7104784610148287,-70.20561136524489,0.6516153857043196,-1.1074682622268488,-16.8735691987513,-0.8242596711758582,106.92058114084774,-17.577523413111322,-0.15839229968782798,0.14627387703380793,-19.351716961498436,-23.480749219562966,-10.148151746588274,-89.42772668678485,-2.270090202462028,-0.08626659729448703,1.9931784021274142,-0.14841210405827274,-325.6495078386261,-76.72840790842871,-1.4098913631633736,-0.09969385154303412,-18.050988553590006,-69.14776274713839,-30.231160412907737,-369.20312258896985,-4.3123666160050895,-1.2262488033298662,-18.1633714880333,-0.9627942143600415,-755.5983047798204,-164.91050988553596,-1.1670674297606654,0.11792668482193756,0.2507804370447483,-74.97502601456816,-4.7858973426768365,-785.4932861071795,-2.2851294522144374,-1.4264682622268448,-3.994536940686792,-0.3100706389177937,-882.4348028855852,29.807492195629493,-0.3109931321539997,-0.13297956778156717,11.065556711758584,22.77523413111345,12.26217606242089,149.85485322268534,2.454904139786419,-0.24361144640998544,-12.436264308012477,-0.2311332819979186,450.1927117505106,82.71279916753379,0.8690980228928238,0.04487229471158542,4.906347554630593,46.03537981269512,4.4463790017532,393.4905085067641,1.4912935200228323,0.9289559833506783,8.852497398543186,0.39426105723204996,462.26406668941235,0.705548048158227,0.5351036515958351,0.4372162166834312,0.284740530374972,0.278497031244502,0.14731540950731298,0.16682718213150288,0.07736366200746916,0.10791438641971952,0.040987770425274836,0.07055188830166123,0.022292602190142185,0.04472747647018739,0.01175792958226853,0.029419619266653443,0.0065155581946378886,8.023289004787511,5.691284510236063,3.545615902002836,2.1907264281727095,0.43361284141261486,-0.38280846983166367,3.2461009195652486,0.9727881958090119,6.023202288687965,1.9899488320519583,14.545860550051872,10.95166937042652,16.01118248837758,11.70254368789524,1.9959697114715054,0.7504689216504935,3.491017040308714,2.240541662148692,7.00935688748337,1.3851877756803197,3.7038152844396928,2.436499770957547,20.90028315532708,14.7017765982965,0.28875234398022076,0.5875341377499215,0.6959129571789854,0.8283759587033968,0.888586413941766,0.9006285049894397,1.89903903593655,679.3507213541043,0.0,0.0,0.0,0.0,11.0,1.0,2.0,0.0,0.0,3.4071906110574726,1.806451612903226,1.225806451612903,0.516129032258065,0.19354838709677225,0.12903225806451424,34.88631242607218,680.6583018260594,48.69919321487296,21.956719413743855,44.49189467083318,,7.0,234.0,6.031114512338072,9.589074368143644,12.204066569290948,16.93822404106412,5.563451491696996,4.899909730850478,30.33183534230805,18.19910120538483,0.0,5.733667477162185,8.966666666666665,27.0,15.0,0.0,12.0,0.0,0.02807017543859658,3.0,0.1770338811117872,0.0894223555888971,-0.08761152552289009,0.0497911445279865,0.1404392324093816,0.0,0.6204301075268819,0.8228070175438594,0.4433962264150947,0.5310077519379848,0.7730158730158729,11.809582897489621,0.2326730120210403,0.4906730120210403,19.240593549759566,5.58584119931079,3.5956993510412647,31.05017644724919,9.181540550352056,0.5735607675906184,0.11895910780669147,0.0,0.37918215613382905,0.06666666666666667,0.45912770770420885,-0.7322621288166269,-0.06941803850077019,-0.02362135899408474,-0.056327856062817455,0.5408722922957909,0.8626364506617945,0.044692483433324284,0.027826982279412726,0.04792424725898858,-3.074329077670576,0.703071950457669,0.6975605698531003,1.7216113990960493,0.6384230656075317,0.4623697980341338,1.0394465882388562,0.7061767394707512,0.8530396739895694,0.6791355497129282,0.6109202265218061,0.671479742197437,0.7903422754515466,0.7255253460810677,0.4215118601942525,0.5063071055600968,1.086839266450917,0.7642998027613414,1.0122335671847305,0.7350810146214989,0.9888184828144191,0.4453724652565877,0.47743125509263,0.40830330571455037,0.9441929564609433,0.9086798181509864,1.064253734569351,1.1004235697059335,1.230320125951194,1.042790369713447,1.0422273222605816,0.9058351848982055,0.9001696615315667,1.0402024789290731,0.9602827503141792,1.0752573214020125,0.8755530136600105,0.9267887736230821,0.9723595792112801,0.9747464616839552,1.4667567899717342,1.0290342568823583,1.096727434766686,0.9286767030117468,1.0599746439240463,0.9518887764893812,0.9021142270157125,0.9880711678674303,0.9909671432695899,1.1040003841393147,1.2790752871632538,1.2283012906568302,1.2630027739251042,1.1955832628909557,1.1843107500033305,1.1019655344574046,1.1778856952978003,1.250485746819455,1.373556635161116,1.3439314952466708,1.1158497511862975,1.4287300446547535,1.450785368280659,1.017907522571185,0.7320913146155866,1.3216565139642067,0.9659705669524496,1.422790923409178,1.1058977055830792,1.4762619801864294,1.505917130766031,1.4225883004134063,1.2323242718542586,1.1336128257124514,0.9930118380124788,0.8640235081894857,0.2881636025614543,0.9579618417588961,0.662057842029749,1.1308263748166416,0.8402353726808418,1.0404364341789858,1.0332925827685124,0.9378869147135351,0.9890830186816509,0.6129281709696129,0.12798116867449114,0.1940209028844919,0.26556253569388927,0.3972724108470716,0.5994539550665838,0.6237680437897457,0.754885278168671,0.1870303105389929,0.07935416893810472,0.054333007692626126,0.7908635786569445,3.0,0.0,2.222222222222223,1.875,1.7494444444444446,0.7747222222222221,0.26866213151927437,0.014739229024943318,0.0,0.0,3653.3581363572093,3981.7343053074596,1809.4645025901234,1681.9200945611683,9.680101699229533,0.46216235699395186,5.206323081972454,0.8592971559425688,1.0,0.06666666666666667,1.5470056993294024,3.147744697483649,3.728389858773972,4.43806727812881,4.760647923290103,4.825164052322361,0.14285714285714285,0.0,0.07407407407407411,0.052083333333333336,0.04859567901234568,0.024991039426523292,0.019190152251376737,0.004913076341647772,0.0,0.0,0.36670449729644383,13.959183673469388,5.78,2.6122448979591835,110.00026108252523,1.0,3.890097317285835,64.16223665915813,,48.5774160652088,47.65814377626377,47.043900139115514,48.58560786652333,64.16621139836954,48.21208075250476,48.62971402075924,58.869690846277685,0.013209477505862394,-0.07764685136748097,-0.7404134232135126,0.3878101402373247,0.23298612809102318,0.037295323542480975,0.015543815787932869,0.06783172409746926,-0.0670887499047157,-0.09069785615035032,-0.07576429319425664,0.06514918304880349,0.0538984607553476,0.2572121844490795,0.36922850239156335,0.0766211195013784,0.06183631183631181,0.01993533812072474,0.04900633845782378,-0.04772143297794231,0.23154400074203077,0.09611801072300173,0.25193582048718244,-0.04962616808251858,-0.03186798989009922,-0.14498902804645206,-0.2108925016412476,-0.02794542114930465,-0.06684064376372073,-0.02351776457699327,-0.028622601718745814,0.038674754390459434,-0.13379613910533222,-0.10595295916433803,-0.14942482044684133,0.029721511412839473,-0.031942453661506776,-0.016694700836642654,0.09676418562845114,-0.38091434189504725,-0.07682434410769372,-0.08247867190399495,-0.03415183952304469,-0.12620715502083465,-0.009762467223003654,0.011723490470541158,-0.02520186273332159,-0.0847939046848116,-0.13113378007312873,-0.1397584360356063,-0.06202461157724971,-0.33416165819078436,-0.21277120315581857,-0.2310773239865019,-0.13260352862799188,-0.22547808784353954,-0.13050985961939093,-0.10047431012053465,-0.15376043417940974,-0.1850346183027295,-0.3199295052447131,-0.13132151891572474,0.08328280319752442,0.0052698329397359205,-0.2618779349548581,-0.041525364843737,-0.32024308376188776,-0.135627276847175,-0.17233536395750038,-0.025082601337738788,-0.05621074421854562,-0.24529698384730197,0.09104692039234864,-0.05509657576301696,-0.14786385467682875,0.366108930661709,0.1252503633845698,0.16751414591770958,0.09619266484341146,0.22940592697667211,-0.04633869985473073,-0.12295039804671618,-0.06597129953170662,0.19703433009750534,0.6984920648869047,0.4256880988318414,0.13794447877886332,0.4487911669522178,0.699933550612284,0.16793427933727725,0.6983197761124761,0.3852850549975304,0.4885288623435039,0.24196621996368872,0.3111181671634007,0.5593485466210917,11.04341413164354,18.627850465358833,6.994587260004557,14.27578436269988,28.30006341323317,35.53148276807187,39.086321477749294,40.12135373581381,40.186385993878325,39.06433002574747,31.582646117196983,3.9670221576016016,3.5146617509488833,0.0,7.481683908550485,2098.037780440581,1308.5384105288488,946.1953920311224,90.0,30.0,42.0,59.0,77.0,83.0,89.0,91.0,89.0,252.089877624,21.0,4.634728988229636,5.5093883366279774,6.415096959171596,7.313886831633462,8.225503097566918,9.130539301772627,10.042858113983936,10.949911409458652,11.862052998728103,0.709677419354839,0.994064516129032,1.1126447269926059,0.6775321546646754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.711908750241453,0.9817836812144214,1.010149660503254,0.6837578117305632,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,5.733667477162185,0.0,5.783244946364939,0.0,0.0,9.694446914922299,4.794537184071822,0.0,0.0,30.33183534230805,23.762552697081826,11.984273114623004,11.374772549367124,195.94292067739997,-312.50908584723834,-29.625685802217205,-10.080938253136722,-24.039160449787566,230.82923310347215,368.14921597882113,19.073507412655754,11.875781160607133,20.452734221045617,0.42857142857142855,0.7896316346433836,0.2200039447285951,59.99537150881365,0.20278002906320283,34.017318558399126,0.21036836535661618,4.0,0.0,0.3122616873469425,0.6353693919807228,0.7525720874154905,0.8958198262802064,0.9609324348550778,0.973954956570052,2.6422000000000008,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,72.64090000000003,9.589074368143644,0.0,0.0,5.733667477162185,6.4208216229260096,4.899909730850478,59.65783953108687,0.0,0.0,3.7612001156935624,0.0,5.093750200806762,0.0,6.637258031284457,2.70805020110221,8.278682162970906,5.459585514144159,9.970819044696412,22.000000000000007,14.34766156462585,0.0,0.0,0.0,0.0,0.0,2.5539351851851864,0.0,30.815999999999992,0.0,24.0337358276644,0.0,0.0,0.0,0.0,0.0,-0.5959259259259246,34.49198653677078,10.633577208012664,16.169309733438947,0.0,11.814359458703011,6.4208216229260096,0.0,15.921440167465814,48.53093654769288,0.0,0.0,0.0,21.00349679460494,22.069171257485042,24.691841042060876,128.32447331831636,,97.0721253635003,95.21704922870495,94.00393001058136,97.08873873145069,130.28268307252307,96.3357604227445,97.17758429555404,118.49550706760957,24.691841042060876,128.3244733183164,,96.36911784470337,94.37352347621301,93.29103273555913,96.3876842178849,131.53337496178102,95.58435122349175,96.48191245485643,119.17601990515834,4.88368171988329,85.65919010003147,,66.34207332295567,65.03966752917572,64.00314881853383,66.35294507331749,87.23648972819758,65.8405323534946,66.4137360748224,80.33263748129549,1.2995705811610987,6.75391964833244,,5.109059229657911,5.01142364361605,4.947575263714808,5.109933617444773,6.856983319606478,5.070303180144447,5.114609699766002,6.236605635137345,2.484579097525304,64.16223665915813,,48.5774160652088,47.65814377626377,47.043900139115514,48.58560786652333,64.16621139836954,48.21208075250476,48.62971402075924,58.869690846277685,30.435294117647064,0.0,0.0,0.0,0.0,5.487445200302343,0.0,31.314639475600874,0.27476851851851825,0.0,0.0,0.0,0.0,1.3983796296296294,0.0,0.0,0.0,21.19649216364746,336.9927934102676,47.95717667921147,97.58008562199312,115.58008562199313,137.5800856219931,147.5800856219932,149.5800856219932,690.0,114.08396603717291,89.77936037060451,60.90934527069847,63.400000000000006,63.400000000000006,0.75,8.420183130131704,5.392317422778761,3.973869204057963,4.303654890089189,,4.313039258392556,4.312735153498173,4.311936092194487,4.3130403871679945,4.3016013950188405,4.31288699494616,4.313057494542829,4.308184420105173,0.20915101073989278,0.2265081521099573,,0.22700206623118716,0.22698606071043018,0.22694400485234142,0.22700212564042077,0.22640007342204424,0.22699405236558737,0.22700302602856992,0.22674654842658803,2.021594116840892,2.1013185222875435,,2.1034967061367063,2.103426195390659,2.103240898749614,2.1034969678489754,2.100841256987989,2.103461402462193,2.103500934271585,2.1023704533026297,186.92999999999975,104.43235190301674,98.9746875925188,,97.81942701422827,97.84560924206454,98.00448891219251,97.81961532646626,98.6311321854813,97.83485918240896,97.8176001924794,98.1128176488571,5.496439573842986,5.209194083816779,,5.148390895485698,5.149768907477081,5.158130995378554,5.148400806656119,5.19111222028849,5.14920311486363,5.1482947469726,5.163832507834584,5.290393397745277,5.236718022731407,,5.224977083714092,5.22524470667314,5.226867169020394,5.224979008812842,5.2332408401911525,5.225134833063852,5.224958408090412,5.227971903218323,0.0,25.43211545729403,0.0,8.041380385487528,-0.007592592592592373,13.75932823129252,0.27476851851851825,0.0,0.0,227.60916397886243,83.62298227560858,-133.3701756431174,-12.643417737047642,-4.302263730423142,-10.2592442802398,98.5114889671558,157.115833816021,8.140041838654527,5.068252703742613,8.728657434223386,593.0,36.0,1.25506166197049,0.4841054118939205,0.0,0.0,0.4216549356008844,0.11127056511633146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.22945227244023164,0.06825806135987239,13.405412915006313,10.166969380320866,9.181540550352056,5.979551137874412,8.35491093733506,4.41946228521939,7.0067416495231205,3.2492738043137046,6.366948798763452,2.4182784550912153,5.432495399227915,1.7165303686409483,3.7123805470255533,0.975908155328288,2.6183461147321565,0.5798846793227721,3.1368294887320194,1.1088049117312861,5.700119551851033,1.6551917973870989,9.86940921539946,2.324410380719302,59.62206974728573,43.43655317984202,30.688973602154114,23.696122654279797,21.667067446238345,21.476474135890804,102.0,123.0,36.855515999999994,14.914483999999998,0.4838709677419355,99.04,6.027777777777778,4.166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,31.0,0.0,0.0,33.0,12.0,2.0,8.0,25.0,14.0,21.0,19.0,0.0,0.0,0.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,2.0,1.0,1.0,19.0,4.0,0.0,2.0,2.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,2.0,3.4011973816621555,7.16683289834382,3.9889840465642745,4.5591262474866845,5.169062530690774,5.7157933873223365,5.915527981018042,6.275585599146011,6.590730214333482,6.848668536522811 +3152,COc1cc2c(cc1OC)C(=O)C(CC1CCN(Cc3ccccc3)CC1)C2,0,19.894736842105264,5.90412105263158,3.1052631578947367,5.964912280701754,160.9345679838723,78.17376863157897,1.4555611621161582,5.985305263157896,3.1310916179337234,7.47481796491228,209.7951006069411,22.8,6.167083333333334,3.816666666666667,5.6,143.5752615751517,85.57857518333337,1.8107530831666672,6.322725,2.7009259259259255,7.60541313333333,259.0821544792483,18.118181818181817,6.07880909090909,3.481818181818182,4.154545454545454,153.21883617374303,66.05328268181817,1.5320719136276093,6.191354545454544,2.4179292929292937,7.597033563636361,212.87171103317021,15.26530612244898,5.910687074829933,2.9523809523809526,3.2244897959183674,154.46235723601515,53.997150585034014,1.379834557854952,6.016473469387755,2.380763416477703,7.464430911564624,183.14324063485296,12.282352941176471,5.770923529411765,2.5588235294117645,2.2470588235294118,159.44159898363975,42.002671141176464,1.1947565188265121,5.856582352941175,2.208333333333333,7.382306729411765,152.5577867673073,12.237804878048781,5.805463414634147,2.4634146341463414,2.1646341463414633,161.2758776486299,42.056660396341464,1.168690146633555,5.88098231707317,2.2493224932249323,7.427334609756098,150.0855370460746,11.934640522875817,5.781163398692811,2.4379084967320264,1.8300653594771241,158.67282316076512,40.12842486274508,1.2062244648553335,5.867369934640523,2.3188090050835153,7.391159790849673,152.0135480887453,10.16891891891892,5.706777027027027,2.310810810810811,1.6081081081081081,162.84415372175647,33.21893943918918,1.0898694142851688,5.776345270270271,2.1597222222222228,7.353387054054055,133.5082377353209,10.844827586206897,5.6645689655172395,2.336206896551724,1.7844827586206897,161.15862518122768,36.38057622413794,1.1198444218496895,5.744064655172414,2.0268199233716473,7.304083172413794,138.952977751392,7.085872576177286,0.0960210526315789,0.015055764595749832,0.5564789165897199,3.4718374884579872,1.3820817499085514,33.846206304709135,0.2369389548332988,0.09318781163434896,0.8458671044081938,0.05846463034779929,52.30539002163376,0.535180055401662,0.00511500000000005,-0.003864655596511101,0.21895967990150814,1.0404432132963988,-0.16338528759868337,2.500552861080325,-0.011111705591412613,0.0063929778393352794,0.031147190588557142,0.0010518877808556781,0.31979865545092,-0.07965248048350543,-0.012575454545454487,-0.003433843096421573,-0.021550686924648184,-0.07008310249307484,0.19280111428287303,-0.2612602544699114,0.025060165196324573,-0.011222165701334592,-0.01746022863289716,-0.007533992389266595,3.928221158610208,-0.4600222360412311,0.005039455782312943,0.002365350447165123,-0.08112386228729722,-0.018203403244954598,-0.16897181892039653,-2.2989489212504965,-0.03219705148226557,0.003752396027663177,0.04863104572905389,0.00427664474469382,-6.286362587291329,-0.2350985823692358,-0.00201882352941177,-0.0009200030942905786,-0.029337533720782873,-0.1267394492423008,-0.13799725812055536,-1.1622970273097604,-0.021272257433732917,-0.0016195763402313927,-0.03115548876778576,-0.0017610472724639312,-3.5052889209120326,0.12497466387406259,0.0011841463414634136,-0.0009941957687893813,-0.04984648184431984,-0.20429362880886423,0.06334148322333745,0.6096716962536318,0.00925667596219333,0.0011029778393351756,0.016358327056646988,0.001181130456650829,1.6475138176840862,-0.8705302989155034,-0.00047385620915032714,0.000893564640497993,-0.06364552592351191,-0.5272210453895316,-0.16259095315533392,-4.216074213893868,-0.02989996928782012,-0.0023025003168395666,-0.013390579035211786,0.00170593541300792,-7.409381344031275,-0.5030134012128471,-0.005085810810810823,0.00016600463669417647,-0.005388352341260908,-0.34760799580744167,-0.010856405601041619,-2.3730672239836776,-0.003094795930588454,-0.005867292430935108,-0.09865278482545334,-0.0023861301107201464,-2.2091858563613567,0.08200401184449337,0.0014844827586206633,0.0005191438287330784,0.02670317657422445,-0.02371286655841046,-0.1346507096825842,0.35228510273187663,-0.014037800761693591,0.0019726693093895836,-0.06231699349873639,-0.00011739259825306318,-1.6340060114856678,,,0.47857142857142854,1.1428571428571428,0.5178571428571429,0.03571428571428571,0.625,-0.10714285714285714,0.9654577622224033,0.00860168461169662,0.020887398897410904,0.7875522235884642,0.21723904433551836,0.27109546970896703,1.7530099858108676,0.48833451404448536,2.0629237549280757,1.7827679424702965,0.07988841996918601,0.20026739248859352,0.0,0.2801558124577795,6.6528902418947515,1134.0,336.53490000000005,177.0,340.0,9173.270375080721,4455.904812000001,82.96698624062101,341.16240000000005,178.47222222222223,426.0646239999999,11958.320734595643,1368.0,370.02500000000003,229.0,336.0,8614.515694509102,5134.714511000002,108.64518499000003,379.3635,162.05555555555554,456.3247879999998,15544.929268754899,1993.0,668.6689999999999,383.0,457.0,16854.071979111734,7265.861094999999,168.52791049903703,681.0489999999999,265.9722222222223,835.6736919999997,23415.888213648723,2244.0,868.8710000000001,434.0,474.0,22705.966513694228,7937.581136,202.83568000467795,884.4215999999999,349.97222222222234,1097.2713439999998,26922.056373323383,2088.0,981.057,435.0,382.0,27105.07182721876,7140.454093999999,203.10860820050706,995.6189999999998,375.41666666666663,1254.992144,25934.823750442243,2007.0,952.0960000000001,404.0,355.0,26449.243934375303,6897.292305,191.66518404790304,964.4810999999999,368.8888888888889,1218.0828760000002,24614.02807555623,1826.0,884.518,373.0,280.0,24276.941943597063,6139.649003999997,184.55234312286603,897.7076000000001,354.7777777777778,1130.847448,23258.07285757803,1505.0,844.603,342.0,238.0,24100.934750819957,4916.403036999998,161.300673314205,854.8991000000001,319.63888888888897,1088.3012840000001,19759.219184827492,1258.0,657.0899999999998,271.0,207.0,18694.40052102241,4220.146842000001,129.90195293456398,666.3115,235.1111111111111,847.2736480000001,16118.545419161474,403.89473684210526,5.473199999999997,0.8581785819577404,31.719298245614034,197.89473684210526,78.77865974478743,1929.2337593684208,13.505520425498032,5.311705263157891,48.21442495126705,3.33248392982456,2981.4072312331245,32.11080332409972,0.306900000000003,-0.23187933579066608,13.137580794090487,62.42659279778393,-9.803117255921002,150.03317166481952,-0.6667023354847568,0.3835786703601168,1.8688314353134285,0.0631132668513407,19.1879193270552,-8.761772853185597,-1.3832999999999935,-0.37772274060637306,-2.3705755617113002,-7.709141274238233,21.208122571116032,-28.738627991690255,2.756618171595703,-1.234438227146805,-1.9206251496186875,-0.8287391628193255,432.10432744712284,-67.62326869806097,0.7408000000000026,0.3477065157332731,-11.925207756232691,-2.675900277008326,-24.83885738129829,-337.945491423823,-4.732966567893039,0.5516022160664871,7.148763722170922,0.6286667774699916,-924.0953003318253,-39.96675900277009,-0.3432000000000009,-0.15640052602939836,-4.987380732533088,-21.545706371191137,-23.45953388049441,-197.59049464265925,-3.6162837637345957,-0.27532797783933677,-5.296433090523579,-0.2993780363188683,-595.8991165550456,20.495844875346265,0.19419999999999982,-0.16304810608145853,-8.174823022468454,-33.504155124653735,10.388003248627342,99.98615818559563,1.518094857799706,0.1808883656509688,2.682765637290106,0.19370539489073596,270.1922661001901,-133.19113573407202,-0.07250000000000005,0.13671538999619293,-9.737765466297324,-80.66481994459834,-24.876415832766092,-645.0593547257618,-4.574695301036479,-0.3522825484764537,-2.0487585923874034,0.26100811819021175,-1133.6353456367851,-74.44598337950137,-0.7527000000000018,0.02456868623073812,-0.7974761465066145,-51.44598337950137,-1.6067480289541596,-351.2139491495843,-0.4580297977270912,-0.8683592797783961,-14.600612154167093,-0.3531472563865817,-326.95950674148077,9.51246537396123,0.17219999999999694,0.06022068413303709,3.0975684826100363,-2.750692520775613,-15.619482323179767,40.86507191689769,-1.6283848883564567,0.22882963988919172,-7.228771245853421,-0.01361754139735533,-189.54469733233748,0.696780747203264,0.600637798496572,0.4410763352659868,0.32999870398957803,0.27788569911786387,0.1876851444856941,0.18137189765399953,0.10837857492607243,0.11440566897074211,0.06200028307994111,0.07454193554137384,0.03676300344126368,0.04692777737919973,0.021142273207618658,0.030088285806182,0.012724371252336962,8.022285763873718,5.687614937232787,3.543525946510782,2.1863577238621077,0.4206384913894569,-0.5283336569131598,3.223730582169254,0.9779690567082276,6.022152445060552,0.9966232906142302,14.54327123209762,10.948128408110167,16.010573704508392,11.69934209744701,1.9995402462590441,0.7527452710533712,3.488626839526025,2.2360821820187247,7.008270435679056,1.1999397604937783,3.7017117549800633,2.4321309156219617,20.905754558651328,14.70237646147683,0.22211279793533803,0.5214764134733078,0.7376318358525998,0.8161854655267146,0.8357214127511614,0.841505653337904,1.2301987705529924,825.2439471833666,0.0,0.0,3.0,0.0,10.0,4.0,3.0,2.0,0.0,4.485533971546856,2.6695675793156215,1.3583495081617638,0.8818361843243938,0.763329386040823,0.7282416667425773,305.5847764115545,1412.7954226018192,57.090050634063644,24.785884607049457,46.913265182239925,,16.0,759.0,0.0,4.794537184071822,11.701150992526333,17.416929712729203,43.60281544698374,18.405094737549014,14.219595082555067,12.13273413692322,35.23174507315853,9.473725907600098,13.399999999999999,32.0,14.5,1.0,17.5,0.0,0.02142857142857148,-3.0,0.10026990553306364,0.04241037376048851,-0.057859531772575135,0.0,0.1131031390134527,0.0,0.5438596491228072,0.796428571428571,0.4435897435897435,0.5014492753623186,0.796428571428571,27.032817342227293,0.24084716912750537,0.5848471691275053,22.051462260477,6.082693241394514,7.590673151851076,49.08427960270429,13.67336639324559,0.6008968609865473,0.09950248756218906,0.0,0.32835820895522394,0.4583333333333333,0.2689664542940454,-0.5745802860240199,-0.04454905387339431,-0.010080355895158245,-0.028729014301201,0.7310335457059547,1.5616723092377847,0.04177538268660369,0.027397759811189203,0.04220735970912931,-5.840589977313907,0.8642515854400139,0.7319654559185366,1.221418207473239,0.7797566371681416,0.5942553191489361,1.2942767776090471,0.8713894512280452,1.1723446528623942,0.723347112897302,0.5624565375596345,0.7579005690207882,1.0605189971551887,1.0001705878171867,1.182972234956449,1.4574479898324628,1.3401649235720032,1.1036170212765957,0.9705480324640577,0.9967332879220248,0.9235423870384355,1.153813334889885,0.7140450759719783,1.1829035232664151,0.9254892476825244,1.026198543008551,0.8259223297592075,0.7369356751924867,1.2370417193426044,0.9567375886524823,1.1718902162091307,1.0315623828582987,1.1604849615550867,0.8447578582771562,0.8406011389758459,0.7879697055555258,1.1283679539255451,1.00521240552515,0.9384672263994395,0.8693666674203444,1.074869859448204,0.983767209011264,1.080285165416706,1.0073533808760546,1.0726385729437495,0.9428539621122998,1.166127835463449,0.9330316666996824,1.052684383170427,0.9781587495312013,1.0455461022490076,1.0979216230874649,1.0765162961364128,1.0689348728593668,0.9203595246677077,0.9763759235571506,0.9263940303110527,1.0384708763439208,1.0065553587734473,1.0485240835716612,0.9383237892456807,1.0924350280464892,0.9233116423747993,0.7390669624842295,1.0962172479611314,1.0949242108190793,1.096331219135154,1.0951893968238462,1.117010610972564,0.9504051232736428,1.2361265036458509,0.8840051847003246,1.1309857545951256,1.0543956779296888,1.0296832131407883,0.7707228168063458,0.9722105955513035,1.0621262219666474,0.9511399680228391,1.053105763082564,0.9664719964913095,1.0437254869194659,1.4892338262901055,1.0082019705468597,1.009329465913184,0.95142577264925,0.8321967606418235,0.7609484408789109,0.8446940799511748,0.9001650770359501,1.038637339733496,0.9543446473059422,1.0339110117395882,0.846201396935358,1.007671277565713,0.8271687662226096,1.0177555909785714,5.5,0.17151923273135397,2.666666666666668,2.076388888888889,1.577777777777778,0.9972222222222221,0.5790022675736961,0.2977607709750567,0.24567743764172334,0.11687500000000003,5111.056082826812,5933.5035396840085,2656.399440064435,2367.1668424324707,17.666400331115085,0.4762203480693476,9.253301016299021,0.9091997871891336,1.0,0.4583333333333333,1.3473560426178854,3.16332243484912,4.4745405060029775,4.9510538298403475,5.069560628123918,5.104648347422164,0.17741935483870963,0.008167582511016855,0.06201550387596902,0.04719065656565656,0.04152046783625731,0.026951951951951953,0.018093820861678003,0.011910430839002267,0.011167156256441966,0.005312500000000001,0.4097494255366836,21.240374609781476,9.871281773931855,5.023781212841855,167.00458662052273,1.0,4.269525285456684,173.03696027939534,,150.66395229573098,149.1609314920228,149.78908014527946,150.68251540462526,185.50701187596925,150.11087547789603,150.74598486718187,170.69715047457072,0.07552775605942141,0.05326956807717661,-0.2566894276230962,0.3934734513274336,0.29968085106382975,-0.11821680418650643,0.07387985638828937,-0.046896913170020454,0.06860315450286668,0.03682279453384004,0.017991865758803568,0.006114066931126022,-0.011241026370033408,-0.1309655976560159,-0.22807497251856143,-0.038726870474658164,-0.02018617021276597,0.13950051384126166,-0.007719041009141441,0.10576633637113808,-0.12042525202081374,-0.020641810683858088,-0.12886410714388769,0.07510165122534172,-0.0649210426938563,0.052482821675041647,0.1571059664304827,-0.14578065739570167,-0.005243161094224955,-0.12225891770264453,-0.06792338557986737,-0.1358875390706361,0.040267025932391856,0.057492536919352515,0.07314926510699815,-0.12018575111840785,-0.03317849422802742,-0.021024801062718514,-0.06110636815816653,-0.05271993753253515,-0.03650500625782228,-0.09984739189970944,-0.03434054076388603,-0.08977948538980964,-0.017379701399001607,-0.03683260479739725,-0.03012158397286813,-0.06701582608335829,0.01763715936612064,0.012332153303993022,-0.0660342264563593,-0.08957478955320529,-0.058843085106382975,0.045830489569469085,0.01801299947075032,0.039067767344149774,0.01183607405293568,0.019339121915719844,0.020202478825649305,0.03149797405205595,-0.12285435414718401,-0.00493491995935991,0.059350332878493714,-0.11437185493666495,-0.15185648727576137,-0.11764206651747779,-0.12456563598110762,-0.12619271199561335,-0.02470817026881299,-0.015830594387023042,0.029178930968339463,-0.141656172355597,-0.07098820869344714,-0.052965580687023506,0.011025985139342493,-0.009682940684046843,-0.10012219666474982,-0.007855111032151287,-0.07011324113017373,-0.013061575006802212,-0.0629620153970053,-0.11662917769390643,-0.0408132249622607,-0.04223629448987239,0.011572888301744372,0.015459971724288873,0.0344813991631903,0.04798596277082701,-0.006830062362435779,-0.09742600949002739,0.01040840735769143,-0.05924648722946403,0.02116874808832252,-0.07367232177959696,-0.0020079250917128567,-0.03123972521397575,20.572601910800675,23.689167270484443,8.345543158019035,11.821406745104449,29.3622767526361,34.47741059382933,36.26166632577153,36.90712117844137,37.3285597749326,57.76186513798611,49.9175023891683,2.236875759137208,5.607486989680618,0.0,7.844362748817826,9205.596470765535,9012.04314140212,1004.1045814218851,145.0,43.0,58.0,76.0,97.0,103.0,121.0,136.0,137.0,379.2147437880008,31.0,5.003946305945459,5.860786223465865,6.739336627357174,7.614312146452,8.500047032581268,9.383200644980624,10.27349817965989,11.162076374884272,12.05590651682503,0.5964912280701754,0.964,1.1217648481211198,0.5543164380020069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6610252862695661,0.9519091847265223,0.9917327915564584,0.6098046321788596,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,9.473725907600098,0.0,17.28226861293275,0.0,0.0,9.694446914922299,0.0,0.0,0.0,30.33183534230805,67.9503424700078,18.026113943770966,14.219595082555067,177.8790468425384,-379.99457546006863,-29.462199148720043,-6.66657149929945,-18.999728773003433,483.4638232540929,1032.8008471417504,27.627851485343605,18.119313107750006,27.913536409236496,0.5,0.9021340321099515,0.23071185119600027,60.32299519019173,0.07780076974156737,40.68771596463545,0.09786596789004849,8.0,0.1935483870967742,0.23099287648934425,0.5423250613619022,0.767122386181959,0.8488165931154333,0.8691335882920587,0.875149083049038,4.361100000000004,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,110.13050000000005,14.268263091671919,0.0,4.899909730850478,11.835812092322787,32.22804289761662,27.30910789438022,59.15492395432226,0.0,11.49902366656781,4.143134726391533,0.0,5.459585514144159,2.3978952727983707,6.976348070447749,4.844187086458591,8.579792333172758,7.018401799069201,10.22893495265826,34.0,14.515899250917201,0.0,0.0,0.0,0.0,0.0,4.663872519511811,0.0,54.948,0.0,12.936933437749705,0.0,0.0,0.0,0.0,0.0,0.28024834187577685,63.94059634290383,9.473725907600098,0.0,11.49902366656781,37.99226257159563,12.965578028838586,11.835812092322787,40.74735652794084,42.46456947923127,0.0,0.0,0.0,31.596036966114394,37.67844131736527,37.25698720535658,346.07392055879063,,301.2641290812579,298.2473765119323,299.5501944550375,301.30143817240923,372.3586896845096,300.1547975985618,301.42870206338023,341.935839542862,37.25698720535658,346.07392055879075,,300.46498986866413,297.3310462789115,298.9119211895296,300.50451987912146,374.7790883631377,299.32298018006975,300.6350380081418,342.9106090115589,4.839654332323429,268.1698340288397,,240.0733865274787,237.90522266990183,238.0006784903572,240.09772134124313,286.1368277152282,239.23803079473385,240.1955874661947,267.7123925082689,1.330606685905592,12.359782877099665,,10.759433181473497,10.651692018283297,10.698221230537055,10.760765649014616,13.298524631589629,10.719814199948635,10.765310787977866,12.21199426938793,2.486992101930292,173.03696027939534,,150.66395229573098,149.1609314920228,149.78908014527946,150.68251540462526,185.50701187596925,150.11087547789603,150.74598486718187,170.69715047457072,54.25882352941177,0.0,3.256059296099534,0.0,0.0,0.0,0.0,56.52876911871813,7.458685177817469,0.0,10.773646631006095,0.0,0.746816930731072,2.534505080958003,0.0,0.0,0.0,34.758864034195,596.6199100074418,76.79929442921947,180.30937878639983,255.0488088421697,282.2100683008998,288.96495580306333,290.96495580306333,975.0,135.59311005215156,64.72296008918943,77.64827975514062,38.77,38.77,1.0,8.000339015725842,5.954196310386875,3.967231242118633,5.206565657978978,,5.2229219040507955,5.223926605662109,5.221386098323373,5.222903488540899,5.1843049283957034,5.223201681750561,5.222876150004106,5.204721657341867,0.14168683007566546,0.18594877349924924,,0.18653292514467126,0.18656880734507533,0.18647807494012048,0.18653226744788926,0.1851537474427037,0.1865429172053772,0.18653129107157523,0.18588291633363813,2.4076878484484605,2.679539872860412,,2.682676414207009,2.682868759604471,2.682382319904516,2.6826728882989634,2.675255195565227,2.6827299800484496,2.6826676539291534,2.6791856418031865,303.0700000000009,935.1777518556652,175.47459533487498,,173.2337747270574,173.08824269881467,173.51680922165977,173.2366466885098,178.14043909681283,173.19673020946132,173.24003679437035,175.70537770467956,33.39920542341661,6.266949833388392,,6.186920525966336,6.181722953529095,6.197028900773563,6.1870230960182075,6.362158539171887,6.185597507480762,6.187144171227513,6.275192060881413,7.870356037337972,6.19711369368229,,6.184261398496437,6.183420955039271,6.185893894997164,6.184277976889714,6.212191640079188,6.184047534433028,6.184297545917139,6.1984280192175945,10.773646631006095,15.471438518707707,0.0,3.3088814785703318,2.382056313548328,14.515899250917201,4.189755871867163,3.2689293059503055,3.256059296099534,371.34649734734893,117.63903936889746,-251.30670315591271,-19.48461534437304,-4.408889529051101,-12.565335157795637,319.7353524587523,683.0354764869574,18.271482595920617,11.9830785348589,18.460418283431277,2333.0,44.0,1.6075719555802908,0.9754342772968208,0.0,0.0,0.32616718007408674,0.08982479942376215,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.05103103630798288,0.48618504830335985,0.23330136098166676,0.7206889007285604,0.303886737352622,19.50986092169139,16.817858357904015,13.67336639324559,10.22995982367692,11.949085062068146,8.070461212884846,10.519570063931972,6.285957345712201,8.694830841776401,4.712021514075524,7.230567747513262,3.566011333802577,4.833561070057573,2.1776541403847216,3.640682582548022,1.5396489215327724,4.083661899342483,2.0441460139904803,6.487185018856208,2.8911064701988,9.674995428821221,3.789796450969464,96.13012250067337,49.964698215604805,33.056384556242676,27.909952140852536,26.470322003920366,25.663397790412,148.0,175.0,62.92299699999998,35.14300300000001,0.40350877192982454,205.04,8.0,6.277777777777779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,12.0,12.0,57.0,0.0,1.0,60.0,12.0,1.0,7.0,53.0,13.0,31.0,47.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,4.0,0.0,1.0,28.0,4.0,0.0,1.0,3.0,0.0,4.0,6.0,0.0,0.0,0.0,0.0,2.0,3.6635616461296463,6.244773512753918,4.189654742026425,4.718498871295094,5.212214667494625,5.705447753975262,5.8250778533263325,6.054732730458067,6.195934833156571,6.1966350464319415 +5311221,CC(C)OC(=O)CCC/C=C\C[C@H]1[C@@H](O)C[C@@H](O)[C@@H]1CC[C@@H](O)CCc1ccccc1,0,18.253521126760564,5.878169014084507,2.619718309859155,4.704225352112676,163.67064462426,71.4274607183099,1.3170695238585912,5.941309859154928,3.9679186228482,7.486627549295774,187.84145221889537,20.416666666666668,6.133333333333334,3.3055555555555554,4.069444444444445,144.96944894855216,75.0026987777778,1.713234492055556,6.277375,2.701388888888889,7.611425111111109,240.54322438226498,15.857142857142858,5.956015037593984,2.917293233082707,2.699248120300752,151.99370769054542,56.15863062406015,1.4120346176446246,6.067899248120301,2.5273600668337504,7.504923338345863,188.866740858768,11.683937823834198,5.854455958549222,2.300518134715026,1.689119170984456,160.71028819581713,39.143154005181344,1.1396611316456007,5.927108808290158,2.356217616580311,7.487740870466322,145.6190997561361,10.665024630541872,5.765123152709359,2.147783251231527,1.4975369458128078,162.60270888959133,35.348268315270936,1.0726065405787542,5.831340394088669,2.4727695675971537,7.417293241379312,133.82365313040629,10.365482233502538,5.765279187817257,2.0913705583756346,1.5482233502538072,163.51063128479203,34.152318182741126,1.0530334320829235,5.82786802030457,2.4163846587704456,7.426442680203047,131.3986071680303,10.851063829787234,5.721861702127659,2.122340425531915,1.675531914893617,162.78624246411326,36.567151781914895,1.0676317762571064,5.789739893617021,2.419621749408984,7.3749795106382985,133.66100902868672,10.240641711229946,5.755133689839571,2.0802139037433154,1.4171122994652405,163.15375260641574,33.528151096256686,1.0541202457117165,5.818612834224599,2.4340463458110513,7.413496962566845,130.28182130350532,9.502732240437158,5.657978142076504,2.07103825136612,1.4262295081967213,164.75738438189447,31.05184669398907,1.0207667519157433,5.719109289617486,2.160746812386157,7.33528880874317,124.6464554006746,7.204919658797858,0.11140646697083911,0.0155014391656196,0.47411227930966054,2.951398532037293,1.2712426385641251,34.30315498512199,0.22778864566807375,0.10670363023209672,1.5090590491304636,0.07090136084110292,50.644770819029546,-0.01986488571491539,-0.006887687628115838,-0.0078225070509091,0.10061385527562874,0.5448847230487781,0.06596432064742684,-0.030728461647820234,0.01152859005859295,-0.006077260905022939,-0.15378387959473067,-0.00466811670964765,1.870109864866026,-0.4105746413245969,0.0064321436401956434,0.0007190753228638566,-0.05835457519020723,-0.17675064471335053,-0.18655776853506917,-2.070377760405277,-0.03326349388462093,0.005022156064631089,0.04422851249660884,0.004854318074495861,-6.3764087527360545,-0.7417364142528674,-0.013792075961570994,-0.0009424569945356995,-0.06208571578342565,-0.4269878190547356,-0.05017788933251855,-3.4862267000019527,-0.010175754798186097,-0.013375089036738045,-0.17215999215186187,-0.008316735284655498,-3.3896480908415034,-0.2931733186882342,-0.001972622524852855,0.0008248008167840181,-0.021604126947210218,-0.2388473629538279,-0.04320759369697789,-1.4063001781421895,-0.008313506011884452,-0.002312240514480763,0.005967894138344726,-0.0007893988623337896,-2.1372798040376533,-0.33496899031998517,-0.010565686245880225,-0.0007418805670291462,0.006190859319065894,-0.13313871935408833,0.007011183918336673,-1.5388122814686067,0.0008397081601278156,-0.009751746339911197,-0.13277909075641783,-0.0068647537059059955,-0.5259622785612947,0.34707314911344006,0.0065707580816031525,0.0009264977771464645,-0.025131158542504646,0.12554183356054818,-0.036228867784165356,1.606512474872007,-0.004806176574200855,0.006724381455047295,0.09223785760546026,0.0033869232464008104,0.3899547509091336,-0.44970387209905516,-0.0035801507849537563,-0.00020569867551445452,0.011614918099392468,-0.13638007907352223,-0.036495503046578316,-2.1421022686197784,-0.007901208042587541,-0.0041824582806017415,-0.012569715027210632,-0.0013485037197653027,-2.634244119900396,0.08092656609246801,-0.006225985172948021,-0.0007607219690971324,0.05440307511195085,0.046446461420721674,0.07768099519455185,0.45157190835910543,0.013887517727050564,-0.005276246256109814,-0.10746887664442403,-0.0044410166557723564,2.544205434641526,,,0.47311827956989244,0.8387096774193549,0.27419354838709675,0.0,0.5645161290322581,-0.2903225806451613,1.241336923244359,0.01777846650545112,0.023326853602225313,0.5813203507285566,0.1420502663726142,0.3374039626823571,1.8226572739729154,0.4794542290549713,1.9872338056864924,1.6971335754922754,0.0,0.2901002301942173,0.0,0.2901002301942173,6.088557385633818,1296.0,417.34999999999997,186.0,334.0,11620.615768322461,5071.3497110000035,93.51193619395998,421.8329999999999,281.72222222222223,531.5505559999999,13336.743107541572,1470.0,441.6,238.0,293.0,10437.800324295755,5400.194312000001,123.35288342800003,451.971,194.5,548.0226079999999,17319.11215552308,2109.0,792.1499999999999,388.0,359.0,20215.16312284254,7469.097873,187.80060414673505,807.0306,336.1388888888888,998.1548039999998,25119.276534216144,2255.0,1129.9099999999999,444.0,326.0,31017.085621792703,7554.628723,219.95459840760094,1143.9320000000005,454.75,1445.133988,28104.486252934268,2165.0,1170.32,436.0,304.0,33008.34990458704,7175.698468,217.73912773748708,1183.7621,501.97222222222223,1505.7105280000003,27166.201585472474,2042.0,1135.7599999999998,412.0,305.0,32211.59436310403,6728.006682000002,207.44758612033596,1148.0900000000004,476.0277777777778,1463.0092080000004,25885.525612101974,2040.0,1075.7099999999998,399.0,315.0,30603.81358325329,6874.624535,200.714773936336,1088.4711,454.88888888888897,1386.4961480000002,25128.269697393105,1915.0,1076.2099999999998,389.0,265.0,30509.751737399743,6269.764255,197.120485948091,1088.0806,455.1666666666666,1386.323932,24362.700583755493,1739.0,1035.4100000000003,379.0,261.0,30150.601341886686,5682.487945,186.80031560058103,1046.597,395.41666666666674,1342.357852,22810.30133832345,511.54929577464793,7.909859154929577,1.1006021807589916,33.6619718309859,209.54929577464782,90.25822733805288,2435.5240039436617,16.172993842433236,7.575957746478868,107.14319248826291,5.033996619718307,3595.7787281510978,-1.4302717714739082,-0.49591350922434035,-0.5632205076654552,7.244197579845269,39.23170005951202,4.749431086614733,-2.2124492386430568,0.8300584842186924,-0.4375627851616516,-11.072439330820607,-0.33610440309463074,134.64791027035386,-54.60642729617139,0.8554751041460206,0.09563701794089294,-7.761158500297562,-23.50783574687562,-24.8121832151642,-275.36024213390186,-4.424044686654583,0.6679467565959349,5.882392162048976,0.6456243039079494,-848.0623641138952,-143.1551279508034,-2.661870660583202,-0.18189419994539,-11.98254314620115,-82.40864907756396,-9.68433264117608,-672.8417531003769,-1.9639206760499168,-2.5813921840904426,-33.22687848530934,-1.605129909938511,-654.2020815324101,-59.514183693711544,-0.40044237254512954,0.16743456580715568,-4.385637770283674,-48.48601467962707,-8.77114152048651,-285.4789361628645,-1.6876417204125436,-0.46938482443959484,1.2114825100839794,-0.1602479690537593,-433.8678002196436,-65.98889109303708,-2.0814401904384043,-0.1461504717047418,1.2195992858559812,-26.2283277127554,1.3812032319123246,-303.14601944931553,0.16542250754517968,-1.9210940289625058,-26.15748087901431,-1.352356480063481,-103.61456887657506,65.24975203332673,1.2353025193413927,0.17418158210353532,-4.724657805990874,23.601864709383058,-6.811027143423087,302.0243452759373,-0.9035611959497607,1.2641837135488914,17.340717229826527,0.6367415703233523,73.31149317091712,-84.09462408252331,-0.6694881967863524,-0.038465652321203,2.1719896845863915,-25.50307478674866,-6.824659069710145,-400.57312423189853,-1.4775259039638702,-0.7821196984725256,-2.350536710088388,-0.2521701955961116,-492.603650421374,14.809561594921647,-1.1393552866494878,-0.13921212034477523,9.955762745487005,8.499702439992067,14.215622120602989,82.63765922971629,2.541415744050253,-0.9655530648680959,-19.666804425929598,-0.8127060480063412,465.5895945393993,0.730310239796397,0.6137952225023119,0.4644712843970035,0.3684486812260582,0.31727248795308677,0.22174399841664613,0.1999729713347535,0.13100886332891792,0.13470540276969192,0.07982925720357302,0.08921562899069574,0.049801882474555234,0.06047160275435286,0.033441054824476575,0.04050587602689072,0.02137646394662151,8.029167507545768,5.694127400483291,3.555279587428345,2.1941250940894284,0.42182959565191136,-0.4952197215335048,3.176609257883121,0.9777961943713994,6.0282994683186955,0.9889330993367639,13.643101104687663,10.954427796696692,16.0146405214051,11.705128756124711,1.9831936466160294,0.7414527883850516,3.50134895002243,2.244124594281847,7.0082759214477335,1.1490761868535508,3.714268258757276,2.4401246825424177,20.892484229083585,14.70093935484953,0.20212495110830214,0.4833098750334711,0.7192595854631951,0.8666581944105838,0.8970212074080876,0.9015161768635792,1.6092048226982487,657.0209861111852,0.0,1.0,2.0,0.0,7.0,13.0,1.0,2.0,0.0,4.883073196360559,3.1209472996599907,1.6423008300581374,0.7185852113894908,0.5283066902017897,0.50013767611728,328.4703359235182,2119.3450862763225,71.7444135993466,29.849930792624264,57.271692415070234,,20.0,953.0,18.31189916324491,20.11411936859394,23.90908376802294,38.524929737556064,19.26246486877803,5.563451491696996,0.0,38.122595711599956,18.208754243757102,4.736862953800049,14.666666666666666,26.0,8.5,0.0,17.5,0.0,0.026881720430107545,-9.0,0.09237476138884582,0.023153265585071803,-0.06922149580377401,0.046204933586337704,0.13958746736292404,0.0,0.5286384976525814,0.8236559139784942,0.4362637362637356,0.5054852320675096,0.7774509803921565,38.481444620575125,0.5511324616689848,0.7231324616689847,18.020930872585254,4.40355825755104,10.45952284315307,56.50237549316038,14.863081100704111,0.5744125326370759,0.1590909090909091,0.0,0.27272727272727276,0.6538461538461539,0.2893710443588185,-0.786517996721435,-0.05238459140607566,-0.011077718263682184,-0.0314607198688574,0.7106289556411816,1.9315079151806451,0.03962646260300199,0.027204336833530216,0.041989302503927066,-4.162474788434184,1.0414984092021535,0.8849715099715098,1.4380706749180263,1.227481403998141,0.7539329136233965,1.2690562344642753,1.0476698814352843,1.2567744457609595,0.8917583541501543,0.8930373283477813,0.889157883071492,1.1878750660280433,1.060246638070948,0.7761798995351625,0.8221062069639752,1.5713499229244667,1.0360581855229556,1.3256584615436964,1.069237149029002,1.3192287241842477,0.7994090881115369,0.7044324930592151,0.757339236772883,1.2523878883231923,1.1163385051699344,1.2025066243006652,1.14910105627601,1.2498536648817402,1.1890805146103687,1.0565278352223482,1.1139212796550961,1.056253608788534,1.1939296554241787,1.0959848636809129,1.2119302017333284,1.06836540000156,1.0273051800091142,1.0148835838491008,0.9581195189007267,1.034627037945463,1.0474039428733009,1.0147470964462162,1.0273364933392999,1.0170629738748098,1.017686282562158,1.0650158237052627,1.0097303781322882,1.0236704044751161,1.0401863581475435,1.1434999891535422,0.9804029141659596,0.9341906845358202,1.033521030267837,0.9595664726033534,1.0371547707742537,0.9601951002995455,1.133875167047027,1.2694912324972742,1.1532025958865255,0.9782302642482065,0.921844977270597,0.8616703984057704,0.8414354423842664,1.0563406926021548,0.8448984363604125,1.0056859410365577,0.9241630026739884,1.0013556400069548,0.8645487202607844,0.8760798032774557,0.8626275456615555,0.9763040300798647,1.0482468668284293,1.0394865891189418,1.018969954853898,0.8896247734544563,0.94766669086826,0.9991593680513708,1.0476665477664198,1.0051164795285954,1.0444382856455627,1.0492896451312856,1.0286443098365423,1.0256433845041473,0.9485275089670445,0.973226865474133,0.9855355262647887,0.7954363582321607,0.8990150859045192,0.8817906022888632,0.947092050449594,0.8870420037766178,0.9744357611335116,0.9878313546643993,0.9670427521319233,0.9100730407235711,6.0,0.20406897255382106,2.88888888888889,2.201388888888889,1.0411111111111113,0.8369444444444444,0.534829931972789,0.30906320861678005,0.286226064499874,0.27375771604938276,5317.534005281946,6489.662494288332,2776.1797085076437,2362.1509338322253,19.507747625236643,0.4767203530980199,10.20800728918677,0.9110240689092164,0.0,0.6538461538461539,1.2666739231441229,3.0287998198446915,4.507446289446545,5.431161908115191,5.621440429302893,5.649609443387402,0.1875,0.006183908259206699,0.0704607046070461,0.05644586894586894,0.028919753086419756,0.024616013071895423,0.015280855199222542,0.009969780923121936,0.009869864293099101,0.008554928626543211,0.4178016770124237,27.24609375,15.008923259964307,10.647351742870077,186.6925798078543,1.0,4.317970023442014,237.3583811131876,,217.78527455602307,217.0269744837174,219.423184198048,217.80088638403063,247.14182082828057,217.59994706834146,217.8172718754859,231.84633589677358,-0.0027571279980420833,-0.061824845679009865,-0.5046310195674293,0.212215248721525,0.18461916177502968,0.05188963825342884,-0.0008957911207044313,0.05061090742596556,-0.056954584317365456,-0.10190713191994881,-0.06583959255887019,0.036926020882758946,-0.056985318472392424,0.05773581924897835,0.04638764924863767,-0.12308176298486813,-0.05988708159698886,-0.14675229014170507,-0.06035531604318157,-0.14602788381775367,0.04706640302403143,0.029308669214828803,0.06846579553493869,-0.12590458303229496,-0.10294860309054803,-0.12379959922058295,-0.060798032006341714,-0.1309515034578447,-0.14467304717401014,-0.039471527944653216,-0.10162991426048137,-0.044671914038304956,-0.12534802243977247,-0.11408433106117509,-0.11730007980092426,-0.06692987323318794,-0.04069071309216378,-0.0177065351634317,0.053208015589502874,-0.04556753302965973,-0.08092684209236771,-0.033988471111841466,-0.0409962342750144,-0.036496577726699446,-0.021669745532099386,0.00395471213786067,-0.011133761792004414,-0.04220139156468608,-0.04649170375008384,-0.09483907472486151,-0.04785881872662194,0.013057791559586272,-0.045110383402605155,0.005515220860005011,-0.04485920557849627,0.003686347744265582,-0.09139095191700278,-0.08798800208177845,-0.09682118402904281,-0.01038532251317182,0.048171689005530045,0.05898004182578614,0.05976850066936555,-0.05300676577939999,0.04253638815558029,-0.028498782754082293,0.04683279061557998,-0.021099280695510435,0.06301923786867172,0.06112276233233466,0.04776950972762351,0.007699802854327654,-0.06241622299700818,-0.032135933238874446,-0.013269650212263543,0.02449824357281902,-0.046208628754511746,-0.028708526554616018,-0.06244621725170333,-0.034686575441082015,-0.03919696332265598,-0.00832950508759312,-0.019019433530866003,-0.052014138425335525,0.011232126092294362,-0.055885312067006726,-0.0490742801987267,0.11474723917964198,0.015737102569018554,0.061106348102273327,0.013164150893845239,0.060966681136894796,-0.049447673379370234,-0.07121581935865848,-0.06263655031565785,0.05023629080547744,22.84321676306514,24.31137103543133,5.614539196725017,11.157499395620603,26.312655358836473,33.1441411564508,36.01367672163552,36.62775916113357,36.65615352733075,61.604247976281265,52.61114084026054,0.0,8.993107136020736,0.0,8.993107136020736,14061.537051567086,13576.57766584152,1694.6313817240807,59.0,41.0,47.0,56.0,58.0,53.0,53.0,54.0,57.0,432.2875743800011,32.0,4.990432586778736,5.777652323222656,6.608000625296087,7.416378479192928,8.254528881939745,9.076008659180891,9.920000460910341,10.751606504306949,11.600689058973689,0.5539906103286383,0.9605633802816897,1.1317284969642198,0.5072826434922918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6249617947204185,0.9472521402927367,0.9916908589189911,0.5691626985605883,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,3.0,9.0,0.0,1.0,0.0,6.0,0.0,0.0,0.0,0.0,20.056445138322168,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,42.483875555975814,82.61331096680912,6.4208216229260096,24.41586555099321,225.63327975903556,-613.2771009725097,-40.846198671949594,-8.63770564750014,-24.531084038900392,554.1036156825537,1506.0679853038127,30.898214927397007,21.212225145124126,32.74060837616984,0.5,0.8190763572048456,0.1703269899751226,52.66778077256876,0.11241441092397218,36.14505287760117,0.1809236427951543,10.0,0.40625,0.20597170884095545,0.49250802691357487,0.7329482337819424,0.8831520715525994,0.9140929407444739,0.918673456583112,4.1864000000000035,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,122.45040000000004,24.85098232239399,0.0,0.0,11.835812092322787,96.05073455670856,0.0,48.04732704767281,0.0,0.0,4.174387269895637,0.0,5.43372200355424,2.3978952727983707,6.853299093186078,4.844187086458591,8.351610750626559,6.985641817639208,9.897720957641791,39.33333333333332,10.14068295884416,0.0,0.0,0.0,0.0,0.0,1.2206994230533783,0.0,68.19999999999997,0.0,11.543842089060048,0.0,0.0,0.0,4.10156694300769,0.0,-0.163311607914848,80.35272328445961,0.0,0.0,0.0,45.70475302346717,15.95222176079788,11.835812092322787,70.77749887448634,42.483875555975814,0.0,0.0,0.0,36.01706768795272,44.37228742514971,38.35202461879932,474.71676222637524,,435.4899039507558,433.9617830688173,438.7905186587159,435.5213645167391,495.33102320269586,435.1164357720918,435.5543841379979,464.0787954819903,38.35202461879932,474.7167622263754,,434.3205491120462,432.62537753886346,437.9806974667045,434.3554448725678,499.6951129782568,433.90628948552006,434.392069749877,465.68764418383716,4.633113204065309,359.6196062825202,,332.95227230220326,332.04818253288914,334.90910369484754,332.9708979682812,368.91068714571963,332.731205695281,332.9904471882597,349.935819469824,1.2371620844773974,15.313443942786298,,14.048061417766315,13.9987671957683,14.154532859958577,14.049076274733519,15.97842010331277,14.036014057164252,14.050141423806384,14.970283725225494,2.405459134203384,237.3583811131876,,217.78527455602307,217.0269744837174,219.423184198048,217.80088638403063,247.14182082828057,217.59994706834146,217.8172718754859,231.84633589677358,67.25490196078431,0.0,3.6901627087388498,0.0,0.0,0.0,31.181980862169286,70.41005098324837,5.9702706581558616,0.0,5.12222353722379,0.0,-1.4747842390048806,0.0,0.0,0.0,0.0,40.41055159780177,638.6640558965125,89.93384854323273,215.0447872089731,320.02868655070466,385.6124954761786,399.1222704805054,401.12227048050556,541.0,137.39529757980202,141.07283954507668,79.93846425180048,86.99000000000001,86.99000000000001,1.0,6.921596545170618,6.0,3.4894990697650945,5.471834913600848,,5.481241840104648,5.4818163379554585,5.47996432444965,5.481229896169097,5.453924564032772,5.481383271864767,5.481217355369517,5.469037234682139,0.11256448612145466,0.17651080366454347,,0.17681425290660155,0.17683278509533737,0.17677304272418226,0.17681386761835796,0.17593305045267008,0.1768188152214441,0.17681346307643603,0.17642055595748835,2.381160304384989,2.831016122058157,,2.832733799935924,2.8328386060661126,2.8325007022929083,2.8327316208770696,2.827737564508388,2.832759602471117,2.8327293329208696,2.8305047041489133,363.3300000000016,2534.2511084788907,191.49392048688105,,190.14068778823233,190.0335534297215,190.3721849935629,190.14289389819808,194.17893375509854,190.11450029362848,190.14520935010148,192.11513090246066,81.75003575738357,6.177223241512292,,6.133570573813946,6.13011462676521,6.141038225598804,6.133641738651551,6.263836572745114,6.132725815923499,6.133716430648435,6.197262287176151,8.9690555631527,6.386258172803062,,6.379166371688148,6.378602765058707,6.380383135957906,6.379177974134702,6.400182184405039,6.379028635265525,6.379190151491204,6.389496943923568,5.12222353722379,11.543842089060048,31.181980862169286,1.2206994230533783,-0.14430747000062727,10.14068295884416,8.578049224244452,3.6901627087388498,0.0,453.40799689129176,175.93459306761395,-478.19478275772275,-31.84928814305634,-6.735137785320041,-19.12779131030891,432.0550330452739,1174.336775184764,24.092478182175512,16.5399545800671,25.52906033010356,3531.0,39.0,1.933292752652361,1.024562438219534,0.0,0.0,0.24800564528543081,0.1416218521379426,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.07856742013183861,0.370308023990754,0.21345896295872097,0.49080955620052197,0.2484171786945019,22.639617433688308,19.02765189757167,14.863081100704113,11.790357799233862,13.008172006076558,9.09150393508249,9.398729652733415,6.157416576459142,7.543502555102747,4.470438403400089,5.1745064814603525,2.8885091835242034,3.2049949459807014,1.7723759056972583,2.1468114294252083,1.13295258917094,3.3320690883645585,1.8265758252830568,5.14728926530187,2.558036259795617,6.344125537447908,2.8810922048789624,112.23190231326613,58.312218444837775,35.615285170583796,25.289141974064695,23.59952100825964,23.48262672320316,146.0,161.0,74.10171999999997,42.73228000000003,0.22535211267605634,94.05,11.13888888888889,7.083333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,6.0,71.0,0.0,0.0,72.0,6.0,2.0,5.0,67.0,8.0,32.0,64.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,5.0,3.0,0.0,31.0,5.0,0.0,0.0,5.0,0.0,2.0,13.0,0.0,0.0,0.0,0.0,1.0,3.6375861597263857,4.947429218192463,3.9982007016691985,4.259152536523347,4.58113360815985,4.835785752141002,4.6255853707306835,4.685020567475825,4.776493988572505,4.907124917726591 +9803963,Cc1cc(SCc2sc(-c3ccc(C(F)(F)F)cc3)nc2C)ccc1OCC(=O)O,1,36.875,6.810043750000001,3.625,10.476851851851853,164.25238809300382,148.9675191135273,1.822089401818375,6.859352083333334,8.003181084247828,8.229743124999999,251.469486066399,32.32,6.5089999999999995,4.16,8.486666666666668,143.86470933154902,125.85915999011199,2.07296102512,6.676810000000001,3.51425925925926,7.936987759999999,295.2945496944113,31.240963855421686,6.706648192771084,3.6987951807228914,8.008032128514056,154.16234957908617,121.90869339704712,1.8323646669974938,6.816301204819276,5.707385095939313,8.14315443373494,254.95278168663637,28.71578947368421,6.489816842105263,3.3789473684210525,5.436257309941521,151.62268826048282,108.56649242117051,1.8048524334794418,6.619653684210526,3.893245975019854,8.015902578947369,239.03012968629827,23.252336448598133,6.400044859813084,2.953271028037383,4.034267912772585,158.5078019234128,85.14058623892336,1.5916963443999252,6.508595327102804,3.4206472827968155,7.967981682242992,205.28831591387956,20.764705882352942,6.122372549019608,2.872549019607843,4.0620915032679745,158.08883879230513,75.41139258881567,1.5294273423851175,6.238751960784313,3.0017550229968535,7.72706511764706,196.009998893568,22.117021276595743,6.067670212765957,2.9468085106382977,4.209219858156029,153.53597889759465,82.44154187771915,1.569204801539734,6.192648936170212,3.1689486472287896,7.644923531914895,204.13255780982396,23.081632653061224,6.317867346938776,2.622448979591837,3.9081632653061225,161.081776053007,85.75335498615509,1.4291374686166631,6.409360204081633,3.413107835726883,7.944462877551021,183.04891854335932,21.85185185185185,6.0500493827160495,2.814814814814815,4.592592592592593,158.51564411802073,81.84663560507653,1.4149966611336913,6.1650938271604945,2.836781740588325,7.6579290864197525,188.07311490814087,13.109375,0.2596433593749999,0.025204741487139536,0.7065972222222222,5.097029320987654,2.954480129408678,59.706669226058246,0.35953809455835933,0.2276541232638888,3.658883600477729,0.155620875,50.166764282742406,0.413125,-0.008768359375,-0.014338693947942308,0.14256944444444447,1.2177854938271602,0.01496389999360435,1.9519937552094284,0.027322018095400677,-0.007379289930555549,-0.3365935770438005,-0.007562090000000002,2.2422055075781615,1.5577936746987953,0.10124436652861442,-0.0004751195406855299,-0.051476740294511346,0.8404985683474637,0.8443083221830863,7.883179550444549,0.04513745025733644,0.08608084159554885,1.5847457738439756,0.05650219578313253,5.407604335072722,-0.8870065789473685,-0.0018189514802631535,0.00411327533000199,-0.12238669590643274,-0.8299727907732295,-0.199803330286036,-4.480842104884236,0.00207069367822354,-0.005549781158625724,0.08806079508336237,-0.0010008342105263144,-7.15226399744812,-3.098860981308411,-0.04376473787967289,-0.0026525946130674196,-0.051612798546209766,-0.933088511018807,-0.10249175426911929,-14.335669910980414,-0.022217628214614035,-0.04308866376233125,-0.227929823058911,-0.026870684579439242,-8.1275626748243,-1.8299632352941178,-0.008679266237745141,0.0006541518589310655,-0.003982843137254902,0.35363335148874375,0.07526582957117636,-8.20729260258465,-0.02858028707789981,-0.008621402675653665,-0.06497346233410776,-0.00688500980392158,-0.2567031758204083,0.866688829787234,0.01641601562499993,-0.000635027930938287,-0.023086583924349875,0.327714571841345,-0.28047037881525394,4.146713132130963,-0.013536620517375319,0.01652085457299045,0.18822856619380277,0.0056112393617021115,-2.0723721905301056,0.03730867346938776,0.0032297911352040408,-0.0009631156281370235,0.11950821995464851,0.13643628747795436,0.07987986144178126,0.880004054270455,-0.012658218299275195,0.0034090357497165292,-0.3017221166283586,0.004615999999999996,-0.28030931177664653,1.9230324074074074,0.028862967785493736,0.00231989994843704,-0.10886059670781893,1.2387045610425242,-0.5130463800808104,9.343905866952644,-0.05650673477362479,0.03425004340277765,0.1690895791061767,0.01578499691358022,5.568625917748822,,,0.48079365079365094,1.225,0.6166666666666667,0.03333333333333333,0.6083333333333333,0.008333333333333333,0.9223813079267186,0.02613882345326566,0.034738823453265656,0.9513276428870462,0.2415982536031419,0.22940337502269562,1.8737089508137648,0.47100162862583755,2.0074033996341116,1.453091936655309,0.06803403094225449,0.17982071015288797,0.1690452447037807,0.554311462978802,9.438917085333342,1770.0,326.88210000000004,174.0,502.8888888888889,7884.114628464183,7150.44091744931,87.460291287282,329.24890000000005,384.15269204389574,395.02766999999994,12070.535331187153,1616.0,325.45,208.0,424.33333333333337,7193.235466577451,6292.957999505599,103.648051256,333.8405,175.712962962963,396.849388,14764.727484720563,2593.0,556.6518,307.0,664.6666666666666,12795.475015064152,10118.42155195491,152.086267360792,565.7529999999999,473.71296296296293,675.8818180000001,21161.08087999082,2728.0,616.5326,321.0,516.4444444444445,14404.155384745867,10313.816780011199,171.46098118054698,628.8670999999999,369.85836762688615,761.510745,22707.862320198336,2488.0,684.8048,316.0,431.66666666666663,16960.33480580517,9110.0427275648,170.311508850792,696.4197,366.00925925925924,852.5740400000001,21965.849802785113,2118.0,624.482,293.0,414.33333333333337,16125.061556815122,7691.962044059199,156.001588923282,636.3526999999999,306.17901234567904,788.160642,19993.019887143935,2079.0,570.361,277.0,395.6666666666667,14432.382016373896,7749.504936505599,147.505251344735,582.1089999999999,297.88117283950623,718.6228120000001,19188.46043412345,2262.0,619.1510000000001,257.0,383.0,15786.014053194685,8403.828788643199,140.055471924433,628.1173,334.4845679012345,778.557362,17938.794017249213,1770.0,490.05400000000003,228.0,372.0,12839.76717355968,6629.577484011199,114.61472955182899,499.37260000000003,229.77932098765433,620.292256,15233.92230755941,629.25,12.462881249999995,1.2098275913826977,33.916666666666664,244.6574074074074,141.81504621161656,2865.920122850796,17.25782853880125,10.927397916666663,175.626412822931,7.469802,2408.0046855716355,20.65625,-0.43841796874999994,-0.7169346973971154,7.128472222222224,60.88927469135801,0.7481949996802175,97.59968776047143,1.3661009047700339,-0.36896449652777746,-16.829678852190025,-0.3781045000000001,112.11027537890809,129.296875,8.403282421874996,-0.03943492187689898,-4.272569444444442,69.76138117283949,70.07759074119616,654.3039026868976,3.7464083713589242,7.144709852430555,131.53389922904998,4.68968225,448.8311598110359,-84.265625,-0.17280039062499958,0.39076115635018904,-11.62673611111111,-78.8474151234568,-18.98131637717342,-425.6799999640025,0.1967158994312363,-0.5272292100694438,8.365775532919425,-0.09507924999999987,-679.4650797575714,-331.578125,-4.682826953124999,-0.2838276235982139,-5.522569444444445,-99.84047067901234,-10.966617706795764,-1533.9166804749043,-2.3772862189637016,-4.610487022569444,-24.388491067303477,-2.875163249999999,-869.6492062062002,-186.65625,-0.8852851562500044,0.06672348961096869,-0.40625,36.07060185185186,7.677114616259989,-837.1438454636342,-2.9151892819457808,-0.8793830729166738,-6.6272931580789916,-0.7022710000000011,-26.183723933681648,81.46875,1.5431054687499932,-0.05969262550819898,-2.1701388888888884,30.80516975308643,-26.36421560863387,389.79103442031055,-1.27244232863328,1.5529603298611026,17.69348522221746,0.5274564999999984,-194.8029859098299,3.65625,0.316519531249996,-0.0943853315574283,11.711805555555554,13.370756172839528,7.828226421294564,86.24039731850459,-1.2405053933289691,0.3340855034722199,-29.568767429579147,0.4523679999999996,-27.47031255411136,155.765625,2.3379003906249927,0.18791189582340026,-8.817708333333334,100.33506944444446,-41.55675678654564,756.8563752231642,-4.577045516663608,2.77425351562499,13.696255907600312,1.2785847499999978,451.05869933765456,0.7296180192710583,0.5916657460146325,0.44156402683672275,0.33294815926997895,0.30242533912626934,0.1876844035691793,0.18661993792497225,0.12052385676327107,0.11954396669489518,0.07357507890427163,0.07602961734942644,0.04304705300371055,0.05106831262234542,0.02712528186651244,0.0326928374040835,0.016971586335590785,16.004899263437967,5.689318686222107,4.124546510157421,2.1824956943487472,0.503590450958473,-0.5118437907741007,4.022110526023878,0.9726344545150024,7.014096047161897,0.6528042100476981,17.43070158256858,10.311271647436255,32.062827168414856,11.700618990110982,2.936717982209949,0.5269677369373164,4.007170253059781,2.236054046546774,8.007392513558274,0.604678898520099,4.03062132377608,2.4335210199048483,24.440949005682583,13.302784901783545,0.31615291933436723,0.6615544701707835,0.7938681190040622,0.8847126461407838,0.8847126461407838,0.8847126461407838,1.379363837242867,1046.6404197067425,0.0,2.0,5.0,0.0,11.0,0.0,3.0,0.0,0.0,3.7251477272633857,1.6932736949967406,0.9149197283519506,0.3805138022185517,0.3805138022185517,0.3805138022185517,-28.092788666651984,1761.1249968759516,81.86694188950112,36.69010410158233,77.36174107414092,,18.0,871.0,17.70905529709232,17.96578232709628,6.606881964512918,22.073440628580453,33.16274429268775,23.469520014857956,17.828252017852726,25.980208536304467,4.9839785209472085,9.843390348640755,14.423809523809528,36.75,18.5,1.0,18.25,0.0,0.019206349206349078,0.25,0.24746908453303823,0.08738799283154175,-0.16008109170149648,0.01997439836149506,0.19094698670350507,0.0,0.687003968253968,0.9192063492063488,0.4395348837209298,0.5996159754224263,0.8992319508448537,27.671439237801557,0.7841647035979697,1.0421647035979698,28.539829286611386,7.2479476080942575,6.8821012506808685,56.211268524412944,14.130048858775126,0.5230530132964949,0.17497523935292172,0.03466490590954109,0.31198415318586986,0.23809523809523808,0.5204028338400853,-1.3312372779098365,-0.08231910161632405,-0.02773410995645493,-0.0700651198899914,0.4795971661599146,1.2268527080469125,0.03659523132422817,0.02555943141764401,0.042305265794721124,-6.835761526200749,0.686420341676599,0.5869568884803422,1.6157006452764673,0.9838820638820639,0.4478189456155623,0.8410737996631281,0.6738206613396422,0.8322415217007475,0.5766505482873612,0.6396082088707898,0.6371224618805158,0.8424118674433171,0.8567093164074654,0.45023567362801903,0.8905872793984343,1.1520085255025014,0.7286888157405765,0.7063828115580296,0.8279034999694015,0.917870429143538,0.4523685218631984,0.3677571024990752,0.4882104784616425,0.8322637208066249,1.1188089413043933,0.6976201303454819,0.7847907202026382,1.159653433337644,0.9862532044450908,0.9026284023263073,1.0973849799832902,1.0835036631415367,0.7148657613780603,0.6401862412909638,0.7283806212069116,1.0979034455350192,1.3947177881991246,1.0241288890538023,0.9228612626548962,0.9259914119727205,1.0977734280634157,1.0166470620497332,1.3764499355810482,1.199817536392398,1.0460574055406548,0.8257256303267452,1.0147600666926562,1.1698153460413527,1.3144343951327055,0.7407891065853383,0.5122597007761285,0.9102471455412633,0.800543644017801,0.8533522831542134,1.292091378477649,1.2200623463421192,0.7620944059177929,0.7232548709430483,0.726316647230763,1.0842452488488954,0.876440206595153,0.456786427295855,0.7448479444015036,0.9877149877149878,0.7093819778223518,0.7571670469454619,0.86377850550387,1.0040419499116542,0.47287332623979744,0.49442240495720496,0.4962920034560487,1.0845206993310923,1.2320384649688243,0.7694226372560256,0.9132871774245228,0.657523943238229,0.9015012431192059,0.7448693485592236,1.1932346108133838,1.174925444353425,0.785034764023194,0.8897017333562645,0.7694897695263884,1.0528469761525459,0.9857512127410155,0.5512258528242827,0.5453518411051066,1.171899171899172,0.6486520581816347,0.976850187042714,0.9626579077628173,1.2412978085094386,0.5376792563052789,0.5672332559439568,0.5353772189661324,0.9886426639778748,8.5,0.1850851953882257,4.222222222222223,1.9791666666666665,1.610555555555556,1.2641666666666664,0.5829024943310658,0.5416666666666667,0.4469875913328294,0.1559413580246914,6752.209973404033,7303.124654629097,3016.9082320295024,2831.14894093784,14.225561164663235,0.35679946507467364,9.149888550724341,0.5547250751526458,0.0,0.23809523809523808,1.8598147734577704,3.8916888057244154,4.6700427723692055,5.204448698502604,5.204448698502604,5.204448698502604,0.265625,0.008412963426737531,0.09178743961352659,0.04498106060606061,0.042383040935672515,0.03611904761904761,0.016654356980887592,0.017473118279569894,0.015413365218373425,0.005997744539411206,0.5448471372192869,24.638671875,10.744801512287335,6.997685950413223,179.2842727852533,0.0,4.319479564387203,207.6866600045864,,136.37922922127785,163.89921252431088,169.22602281628966,136.13658728148877,193.1044832582326,163.1498113904707,161.09507719881896,178.82720975969855,0.03151370679380215,-0.03377078233815316,-0.568888752747513,0.2017690417690418,0.23892063732354382,0.005064816596549351,0.032693060599627365,0.07599199781308802,-0.03241447958314258,-0.09199351873337881,-0.04859303097993764,0.0446950394277171,0.11883050677082588,0.3899362832630291,-0.01885040324368948,-0.07285160297208486,0.16489969262813658,0.28577221209880654,0.13203180905298317,0.12554288666624125,0.37812116188102995,0.43312276281132867,0.363075941984856,0.10779256769671633,-0.06766200363841665,-0.007005576744352869,0.16319450576792255,-0.17320574162679425,-0.1628346117915612,-0.0676272377997091,-0.0750475979143822,0.005759316494034069,-0.024378127130131565,0.024067667818638595,-0.006431233666603626,-0.14256976904345675,-0.23638510465284662,-0.16855712383717847,-0.10524188928582662,-0.0730441571563067,-0.18306516448251506,-0.034690283833329554,-0.24010165190597813,-0.0617949211804807,-0.18927249436367272,-0.06229490958093089,-0.17266761017401583,-0.16201090086290892,-0.13959195120241183,-0.033427645746987034,0.025953523834586437,-0.005636652695476225,0.06938028589174763,0.025475151727028324,-0.13746023198029403,-0.07949167977041924,-0.03787061948208174,-0.017757728703264673,-0.04424219953731516,-0.0051169968701512475,0.0661121395785256,0.06322524737207111,-0.0251947805638992,-0.03267290501333054,0.06429521024961332,-0.09493053482522099,0.06945142286250966,-0.03765003131032082,0.07256997736799191,0.05144426189705142,0.03605711227174447,-0.0413096642799227,0.0028459536377125343,0.012439336569125539,-0.038211684441534284,0.1691320262748834,0.02676780510485999,0.027036858581874684,0.014738789915388345,-0.035206890426517916,0.014974627741597689,-0.08246289020753864,0.02966183039389797,-0.00558755015963974,0.14669138745420032,0.11116389748989221,0.09204220363143759,-0.15406315406315407,0.2430248058299378,-0.17365030652059033,0.15649685350182974,-0.15716480570170224,0.15044771828303843,0.04621343490787714,0.10143238761239597,0.11100229399615583,7.231160383917862,18.992967771488225,7.552710570905603,23.307105329380327,43.85655259875224,50.06274346904265,50.60142464258512,50.60142464258512,50.60142464258512,60.22210198902334,43.59275809965927,2.041020928267635,5.394621304586639,5.071357341113421,16.62934388936406,10645.51909661514,8833.084367788655,3018.8886009741273,120.0,46.0,55.0,66.0,80.0,89.0,94.0,100.0,120.0,453.06802009600045,32.0,5.056245805348308,5.883322388488279,6.760414691083428,7.608374474380783,8.48528964240323,9.341631757657359,10.219064422181425,11.080186791476603,11.958130382247253,0.8125,1.02375,1.1278839225716306,0.7865952904282185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7241675898203592,1.0098856209150329,1.0347778587035688,0.6894288452405185,7.0,1.0,0.0,0.0,1.0,0.0,8.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,3.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,9.843390348640755,10.75713553013667,6.606881964512918,0.0,0.0,0.0,9.77851570501903,13.171245143024459,23.098670827325854,12.13273413692322,49.74276123338629,21.08893576766286,11.257379486545457,358.27294745383216,-916.4944391208568,-56.67284121072784,-19.093634148351185,-48.236549427413514,330.1801587871802,844.6305577550947,25.19410067877328,17.596469953231143,29.12519164672741,0.5,0.8375863965405062,0.18828055411723554,42.302189908446174,0.1625862439429209,0.5811906243573427,0.16241360345949388,9.0,0.21875,0.3330039858311712,0.6968155659455014,0.8361815807655267,0.9318681545006939,0.9318681545006939,0.9318681545006939,6.201440000000006,,3.1428571428571432,2.164361989034074,1.6319607331025914,3.244381239396559,-8.911402752720972,2.0384922624136603,1.9689596020881424,-2.841129307976692,111.15980000000003,27.80917267573703,0.0,4.9839785209472085,0.0,30.672109999089287,6.606881964512918,64.16254765117502,0.0,16.320587021833667,4.174387269895637,0.0,5.517452896464707,2.3978952727983707,7.027314514039777,4.727387818712341,8.610501368549889,6.803505257608338,10.232971139621664,39.0,10.549315231491075,4.505850809515756,0.0,0.0,1.4607268740191717,0.0,4.917944834120251,0.0,49.14,0.0,10.623333075067082,0.0,0.0,0.0,0.0,0.0,-1.0302107318324494,54.13842828343827,4.736862953800049,13.171245143024459,5.749511833283905,22.666693168252678,16.723689308262085,13.847474399381248,21.697978171943753,47.360052954749044,0.0,10.571075188549761,0.0,37.75657394055449,34.76004431137724,37.073922929539954,415.3733200091728,,273.0249830416268,327.65413424935286,338.3432482503725,272.52135911264656,390.4248015951224,326.16372329678046,322.0588904241654,358.60146262205603,37.073922929539954,415.37332000917274,,270.51069732734095,325.63406305958773,336.82008489947657,269.9258541211292,395.1770156917793,324.2611305185277,320.2211947955499,360.4955488273736,4.757431136818433,321.2159169202529,,204.90565484163045,256.8984080770299,265.3975135758484,204.6372614071211,280.98080499396815,254.89967793825772,250.5974997827073,269.5465818153561,1.235797430984665,13.845777333639093,,9.100832768054227,10.921804474978428,11.278108275012416,9.084045303754886,13.014160053170746,10.872124109892683,10.735296347472179,11.953382087401868,2.4137640561372686,207.6866600045864,,136.37922922127785,163.89921252431088,169.22602281628966,136.13658728148877,193.1044832582326,163.1498113904707,161.09507719881896,178.82720975969855,48.47450980392158,0.0,3.732114347209495,0.0,38.201573152628555,0.0,8.706183880002943,49.6693372177713,0.2768056821428051,0.0,5.229648101048914,1.5990660285515081,0.0,0.0,-4.3556846172984445,0.0,0.0,33.09258457154489,576.6389564435278,89.27110912597297,186.80106267477194,224.16205307372186,249.813537528125,249.813537528125,249.813537528125,832.0,138.39266035526668,111.81414979748459,79.49141553769074,112.96,59.42,1.0,8.625892034901915,6.0,4.425112234025984,5.38456442400791,,5.362578506108689,5.391981207285185,5.389285750302636,5.363150287539594,5.294511549371456,5.389664773888656,5.38682428186341,5.351212721331255,0.14750374113419945,0.17948548080026366,,0.17875261687028965,0.17973270690950616,0.1796428583434212,0.1787716762513198,0.17648371831238185,0.1796554924629552,0.179560809395447,0.1783737573777085,2.5859079304280423,2.78214870909833,,2.778057212648872,2.783525176976268,2.7830251509497694,2.7781638313117987,2.765283015944499,2.783095477571146,2.782568312911797,2.7759355007730484,301.04000000000065,550.2306911135066,189.01635394382302,,192.07708411191882,188.1837808758978,188.42285978146083,191.99451857830798,199.47975984676253,188.4836707128671,188.87222538604516,193.06686083933582,18.341023037116887,6.300545131460767,,6.402569470397294,6.27279269586326,6.280761992715361,6.399817285943599,6.649325328225418,6.282789023762237,6.295740846201506,6.435562027977861,7.408949917343129,6.340445828787647,,6.356509059874038,6.336031331850067,6.337300979869348,6.3560791112170465,6.394325065448989,6.337623664285848,6.339683018940247,6.361648846799604,43.43122125367747,17.168822613984148,9.391761308870763,1.6646631361085436,0.1634345876615353,10.549315231491075,-4.3556846172984445,3.3433402496008937,0.0,370.86280853808717,246.65412355671376,-630.9634434653682,-39.01659357102924,-13.14507173886184,-33.20860228765096,227.31355593618488,581.4885311125738,17.344956871250265,12.114344398178622,20.05132865905427,2994.0,44.0,3.2608065942353375,1.2379843754297237,0.28867513459481287,0.013498731178900972,0.7520482956210685,0.21220310670022358,0.14433756729740643,0.004499577059633658,0.0,0.0,0.0,0.0,0.09622504486493763,0.06846531968814577,0.37119669724178084,0.20294431035382354,0.5436062056378096,0.2967900235256553,21.88854057813175,17.749972380438976,14.130048858775128,10.654341096639326,13.911565599808391,8.633482564182247,10.264096585873475,6.628812121979909,7.889901801863082,4.8559552076819275,6.082369387954115,3.443764240296844,4.545079823388742,2.4141500861196072,3.073126715983849,1.5953291155455338,5.414286211649183,2.577336330307808,6.908137656852521,3.3747135992486172,8.891530023002607,4.102754932830565,94.97382007402346,50.32575812893785,34.70677805202714,31.935777346829937,31.935777346829937,31.935777346829937,156.0,179.0,58.04927399999999,30.060726,0.3958333333333333,154.09,11.3125,6.416666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,17.0,17.0,48.0,0.0,0.0,50.0,17.0,1.0,9.0,41.0,18.0,32.0,32.0,0.0,0.0,0.0,21.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,5.0,1.0,1.0,30.0,9.0,0.0,1.0,3.0,0.0,3.0,7.0,2.0,0.0,3.0,1.0,3.0,3.7495040759303713,7.3530068456281965,4.359908829420263,4.862715164019633,5.379032924729969,5.849684945626963,6.1052116716427935,6.4151481035265485,6.724958609339946,7.159316204657841 +9810927,CC(C)(C)c1nnc([C@H]2O[C@@H](n3cnc4c(Nc5ccc(Cl)cc5F)ncnc43)[C@H](O)[C@@H]2O)o1,0,31.745454545454546,6.776058181818179,3.8727272727272726,10.283726150392818,167.9663843806569,128.4685464754504,1.5274406545787085,6.837165454545451,5.481030642501835,8.224227654545452,232.66165189618027,29.593220338983052,6.782693220338984,4.5423728813559325,9.645951035781543,151.76252327609834,114.62341211585085,1.765542980542373,6.910179661016948,3.6194636255841526,8.151483355932202,272.22325134973994,27.313725490196077,6.7695058823529415,4.254901960784314,8.614379084967322,158.57886507017395,105.36513485951372,1.5788808004670682,6.8644284313725485,3.522679133381748,8.181496666666666,241.61460874728786,23.931818181818183,6.821437121212122,3.409090909090909,7.071548821548821,161.5057942751055,89.49081411150304,1.3720000943340454,6.896826515151515,4.1248986781394175,8.27627484848485,203.48401486652918,19.662337662337663,6.682218831168832,2.9675324675324677,5.549062049062049,173.5388450228231,72.96904647377663,1.125333442749435,6.709731818181819,3.5531639142750255,8.216775649350646,167.0773922266693,22.610169491525422,6.811466101694915,3.6440677966101696,7.060263653483992,166.35372893216865,84.22965219392542,1.3467259440999322,6.861049152542373,4.022036513915046,8.241557542372883,201.33791259437072,24.254545454545454,6.835799090909089,3.590909090909091,7.455555555555556,163.259038252984,91.27476444811634,1.4047356077917637,6.903852727272728,4.128582117471007,8.259060854545456,212.7368560927257,22.05785123966942,6.767949586776858,3.165289256198347,6.0578512396694215,166.22320533594083,82.24263704550084,1.2904207888928674,6.819437190082644,3.8992364724687953,8.240733983471076,191.4292096012887,19.025,6.499849166666666,2.9166666666666665,4.5777777777777775,166.20478698900868,69.20362272717331,1.2063314054548664,6.564473333333334,3.432630315500686,8.041746416666667,169.72203577235885,10.417851239669421,0.1926352396694214,0.027727582825831563,0.7623140495867765,4.716033057851241,1.9619320606851567,49.13149962815406,0.22710875447014411,0.1779506115702478,1.8528821888922904,0.12275221355371901,45.20241923567428,0.12082364476817496,-0.017452404538450667,-0.014846178622479481,0.23953494887239113,1.3849009526872902,-0.3935198386633351,0.6452325487804106,-0.013487528856738162,-0.013459579212774764,-0.2481099395334813,-0.014855478268665111,-0.08540244525144719,1.1917744287797762,0.008410321827904783,-0.0018682037320229238,-0.06962242748339008,0.6593768142906585,0.022626806156324435,5.718568243771422,0.01850482635639353,0.009174932101766417,-0.05943664690472824,0.0001865682644627643,5.731312972685848,-1.09732782369146,0.021202542699724613,0.004423575297806905,0.026115702479338854,0.4102584770261537,-0.5103104816142956,-5.396070630487787,-0.06472719959545015,0.014629085399449163,0.13806487475242935,0.01259429002754812,-12.964935901898155,1.1956080283353012,-0.01529971428571423,-0.002186803478308043,0.09990554899645807,-0.05812788782485757,0.23510458256727068,5.993913407069437,0.06319540493359098,-0.009338273907910248,-0.1321016781122467,-0.008861708595041387,13.034940550406327,-0.7568342905168792,-0.005640016248774222,0.0012388653689381643,-0.09081944249894945,-0.7053157149305069,0.12448113983126115,-3.6591831333623666,-0.008309738474580643,-0.006167992155763988,0.010728348898254135,0.000852852856142244,-3.583223641162438,-0.7676033057851241,-0.00117333884297509,-0.0015867166378560628,-0.11272727272727276,-0.15950413223140514,-0.14978152509380965,-3.620179814752683,-0.033379615704308724,-0.002625289256198214,0.08527505696697617,-0.003256925619834797,-5.472605373336132,-0.23918858001502627,-0.006573797145003671,0.0018123291025251085,-0.1229451540195342,-0.41727875634211725,0.03763744840152008,-1.0904035183909317,-0.0029912647579158867,-0.006510746806911995,0.006303427545987855,-0.005014043606311121,-2.3610491183493534,-0.47982093663911857,-0.021430436639118484,-0.0022844854860098337,0.0013223140495867939,-0.20397918579736754,-0.2891164533345727,-2.306539491967006,-0.025435681775544436,-0.018380823691460088,-0.21364926032679954,-0.013163838856749285,-6.4494956645911135,,,0.45980392156862754,1.286764705882353,0.5735294117647058,0.04411764705882353,0.7132352941176471,-0.13970588235294118,0.9535882316500699,0.02306366775288146,0.035710726576410876,1.0796715496144411,0.24497587893383202,0.22943732279484816,2.033259781264511,0.4744132017286802,2.050094500550711,1.2892904935630878,0.4306298609395049,0.22627626328006317,0.10389788276805535,0.7608040069876234,8.893322873672737,1746.0,372.68319999999983,213.0,565.604938271605,9238.15114093613,7065.770056149773,84.00923600182897,376.0440999999998,301.45668533760096,452.3325209999999,12796.390854289915,1746.0,400.17890000000006,268.0,569.1111111111111,8953.988873289802,6762.781314835201,104.16703585200001,407.70059999999995,213.548353909465,480.93751799999995,16061.171829634657,2786.0,690.4896,434.0,878.6666666666667,16175.044237157743,10747.243755670399,161.04584164764097,700.1717,359.3132716049383,834.5126599999999,24644.69009222336,3159.0,900.4297,450.0,933.4444444444443,21318.764844313926,11812.787462718401,181.104012452094,910.3811,544.4866255144032,1092.46828,26859.88996238185,3028.0,1029.0617000000002,457.0,854.5555555555555,26724.982133514757,11237.2331569616,173.301350183413,1033.2987,547.187242798354,1265.3834499999996,25729.91840290707,2668.0,803.7529999999999,430.0,833.1111111111111,19629.7400139959,9939.0989588832,158.913661403792,809.6038,474.60030864197535,972.5037900000001,23757.873686135747,2668.0,751.9378999999998,395.0,820.1111111111111,17958.49420782824,10040.224089292798,154.520916857094,759.4238,454.1440329218107,908.4966940000002,23401.054170199826,2669.0,818.9218999999998,383.0,733.0,20113.00784564884,9951.359082505602,156.14091545603696,825.1518999999998,471.80761316872423,997.1288120000002,23162.93436175593,2283.0,779.9818999999999,350.0,549.3333333333333,19944.57443868104,8304.434727260797,144.75976865458398,787.7368,411.9156378600823,965.0095700000002,20366.64429268306,572.9818181818182,10.594938181818177,1.525017055420736,41.92727272727271,259.38181818181823,107.90626333768361,2702.2324795484733,12.490981495857927,9.787283636363629,101.90852038907597,6.751371745454546,2486.1330579620853,7.128595041322323,-1.0296918677685893,-0.8759245387262894,14.132561983471076,81.70915620855013,-23.21767048113677,38.068720378044226,-0.7957642025475515,-0.7941151735537111,-14.638486432475396,-0.8764732178512415,-5.038744269835385,121.56099173553719,0.8578528264462879,-0.19055678066633822,-7.101487603305788,67.25643505764717,2.3079342279450925,583.293960864685,1.8874922883521403,0.9358430743801746,-6.06253798428228,0.01902996297520196,584.5939232139565,-144.84727272727272,2.798735636363649,0.5839119393105114,3.4472727272727286,54.15411896745229,-67.36098357308701,-712.281323224388,-8.54399034659942,1.9310392727272896,18.224563467320674,1.6624462836363518,-1711.3715390505565,184.1236363636364,-2.3561559999999915,-0.3367677356594386,15.385454545454543,-8.951694725028066,36.20610571535968,923.0626646886933,9.732092359773011,-1.4380941818181783,-20.343658429285995,-1.3647031236363736,2007.3808447625745,-89.30644628099175,-0.6655219173553582,0.1461861135347034,-10.716694214876036,-83.22725436179982,14.688774500088815,-431.7836097367593,-0.9805491400005157,-0.7278230743801506,1.2659451699939879,0.10063663702478479,-422.8203896571677,-84.43636363636365,-0.1290672727272599,-0.1745388301641669,-12.400000000000004,-17.545454545454565,-16.47596776031906,-398.2197796227951,-3.6717577274739597,-0.28878181818180354,9.380256266367379,-0.3582618181818277,-601.9865910669746,-28.941818181818178,-0.7954294545454441,0.21929182140553813,-14.876363636363637,-50.49072951739619,4.554131256583929,-131.93882572530273,-0.36194303570782227,-0.7878003636363514,0.7627147330645304,-0.6066992763636456,-285.6869433202718,-57.57851239669423,-2.571652396694218,-0.27413825832118005,0.15867768595041526,-24.477502295684104,-34.693974400148726,-276.7847390360407,-3.052281813065332,-2.2056988429752105,-25.637911239215946,-1.5796606628099141,-773.9394797509336,0.7117041663203016,0.5618298723432628,0.42447496996776657,0.28319273100817766,0.2770502322249547,0.16130718528796228,0.17017063600620383,0.07109037173433638,0.10534776133641062,0.03540414986867846,0.06581927755156,0.018383954807206823,0.04198174911621882,0.009254584053122624,0.025673409890097525,0.004627519686805077,17.001104094476847,5.698869792699168,4.107732767831322,2.194705527082136,0.45443790589875255,-0.48935136448139216,4.022122104884431,0.9886637098711089,7.00406697742128,0.7739921108489645,17.42477469415477,10.959531682725078,35.450517864757074,11.71090453699734,2.2078539493544436,0.5458429188566827,3.9886885407694836,2.2453557861069537,8.001920593102366,1.165515427708205,4.009977994634264,2.441323067574763,22.455867172609683,13.3041170537816,0.3161369845264851,0.6988872675447623,0.8122078601041435,0.8443301767785366,0.8503037058680656,0.8503037058680656,1.218895504061787,1354.644097630968,0.0,4.0,4.0,0.0,7.0,3.0,0.0,0.0,1.0,3.8568875674747485,1.5269094421229354,0.8370745457692328,0.6415311366389886,0.6051675002753525,0.6051675002753525,66.46597542790926,2553.531985399323,87.13439507550981,46.4278542799877,99.71982406079377,,17.0,961.0,35.77201164442245,14.603469837356231,22.418606288285826,17.054601860409896,0.0,35.42084100270527,0.0,20.771211599071872,30.46608778345003,20.754953781085913,15.633333333333336,43.75,19.5,1.5,24.25,0.0,0.04019607843137246,-4.75,0.24198581560283666,0.04910052910052931,-0.19288528650230735,0.05071542130365658,0.2171779661016946,0.0,0.6866666666666655,0.925490196078431,0.4446808510638289,0.6375661375661362,0.8747747747747744,32.421999876102376,0.7841647035979697,1.2141647035979697,36.708832686891,8.329179883750289,7.800868975024837,69.13083256299338,16.130048858775126,0.49682203389830537,0.20255863539445626,0.03198294243070362,0.40938166311300633,0.38095238095238093,0.45361050653593327,-1.6168683159392945,-0.07761308966432859,-0.029397605744350814,-0.08509833241785762,0.5463894934640671,1.9475736285093905,0.044016674281134836,0.03541042960926166,0.05409926745859418,-4.85533005847625,0.599806058754624,0.8055277721014458,1.5610581909150472,0.8950122745380515,0.4717430958677776,1.326816448211335,0.6000208120692934,1.047183275412997,0.761054813447848,0.8209892016609872,0.8611723132625945,0.9029245216988782,0.6181286375056464,0.799511368924109,1.1247187340363998,1.4142135605326267,0.7520016511675,1.0307489676063606,0.6166236098615744,0.8783383248973099,0.7688499915562163,0.7668769232050222,0.8552008714210226,0.7918579142592351,0.9763517801611982,0.8955629497859696,1.0175654746701581,0.9659583694709458,0.8631341807249558,1.2706695026468433,0.9791008369218048,1.253806173500049,0.9024379222315564,0.9125399911411392,0.9356291327257973,1.2092699521097183,0.8448286022538735,1.2371821907996645,1.249434338196921,0.7108784537232069,1.1353668061925455,0.7661899034530779,0.8373156642844836,0.6059388039426798,1.194677551645202,1.0531953571470196,1.2038536107449294,0.6608253699340141,0.8034685687179117,0.9945921525964964,1.1414831320330694,1.1133079512546495,1.13125336127698,0.9558309194304964,0.8073494775084483,0.9046687885437464,0.9681336167555102,0.9321494693087451,0.9206894045478001,0.9668739440353958,0.8439106428888749,0.962671625695701,1.2191392133799006,1.1532957502168264,0.9784686200289732,1.1168459420890455,0.8444686956066355,1.0597735528984786,0.9426866698643848,0.8869593125367617,0.9750932582196371,1.0150973087182988,0.8563726366924945,1.1059282386773936,1.0384001685368278,1.1229598675392263,1.097035120587623,0.966515599062069,0.856421667239602,0.93251925115946,1.080270104574555,0.9853564527738462,1.1081338776972376,0.9770176362441965,0.9703187472234561,1.0512074076196936,1.1545910701159277,0.9981569817866441,0.9760064722650591,1.0016208681067393,0.9700824647637477,1.0552537133874216,1.0449104552363497,1.189510210756017,1.0510097121784643,1.1262977107219745,8.5,0.3299806142230385,5.333333333333336,3.0138888888888893,2.5516666666666667,1.3163888888888886,1.0165079365079364,0.8378684807256234,0.41774533887629123,0.35657407407407415,7980.215031567335,8640.405137013817,3529.622424426759,3304.9776347642464,16.85042433141733,0.4595692545556945,9.106487382480731,0.8503758500598773,0.0,0.38095238095238093,1.9244721460499115,4.2544502714017245,4.944285167755427,5.139828576885671,5.1761922132493074,5.1761922132493074,0.22368421052631576,0.009999412552213288,0.09195402298850579,0.05196360153256705,0.046393939393939404,0.025811546840958606,0.019548229548229545,0.01709935674950252,0.010993298391481346,0.010187830687830688,0.507635449211544,25.641274238227147,10.045184304399525,5.086364364685147,197.1417930171424,0.0,4.481941345814211,221.08230284128058,,163.81613455506118,160.70129624263686,162.74580967746505,163.7606159963257,256.01090624514825,163.30992691577143,165.1826944402234,224.69139634344702,0.011597751013001499,-0.09059819256539194,-0.5354299621331755,0.3142208240845549,0.2936580248057656,-0.20057770936568925,0.013132767240238477,-0.05938797422497089,-0.07563659991953138,-0.13390486509118477,-0.12102004386392619,-0.0018893335068236035,0.11439733601125923,0.04365931094610528,-0.06737708597817146,-0.091330374300631,0.13981598648739954,0.011532920333858339,0.11639311413353406,0.08148002220154921,0.05155886805224336,-0.03207794173911364,0.0015198769868302047,0.12679217328621714,-0.10533149288147066,0.11006575295418426,0.15953699698935944,0.03425845620121425,0.0869922818592538,-0.26010609227522496,-0.10982914568713166,-0.2850053039411091,0.08220868290567344,0.0745135743546484,0.10259929057846755,-0.2868195136703231,0.11476531972184698,-0.07942323695274994,-0.07886744012430733,0.13105563127245698,-0.012325589560507088,0.11983319263622523,0.12199736324829613,0.2782605412152823,-0.05247677333339127,-0.07129523879293218,-0.07219184353985855,0.28836820618926073,-0.07264783045038901,-0.029278216480291837,0.04467989066050188,-0.11913651932320998,-0.14955699128450742,0.06344824182535107,-0.07447733452177241,-0.03658924771071758,-0.03466125854436365,0.0057900869049142675,0.0069477594859747045,-0.0792706165234297,-0.07368153836390177,-0.006090987531609689,-0.05722520595548798,-0.1478751084128362,-0.033821673909995825,-0.07634388982944809,-0.07368347887102135,-0.1469763496444028,-0.0147529094338732,0.04602292443533941,-0.026532520478007478,-0.12106886015996879,-0.02295949275069666,-0.03412562081727555,0.06536195794307417,-0.1612788772372468,-0.08848088027021621,0.01918386938861488,-0.022193572894039906,-0.013171067601047148,-0.03658738090001906,0.0034019580865830633,-0.04084686916148251,-0.05223280431163263,-0.04605757229591082,-0.1112487864416446,-0.08239035837922236,0.0017346053772766927,-0.043252280740013783,-0.14736313205137483,-0.04694624649000697,-0.11199780402515583,-0.10329171408441085,-0.11530644614514082,-0.10723911590391406,-0.1426803205148165,2.45254447815602,12.804822908061515,15.645111777685292,22.3300669642554,45.11219127950247,48.68279594278932,49.89772188101079,49.934376426465334,49.934376426465334,69.70321301872418,43.83587678114498,14.641415271943167,7.6933929515221475,3.532528014113882,25.867336237579195,13281.719259104017,11538.61413427632,2620.887090223916,293.0,58.0,79.0,106.0,132.0,159.0,186.0,227.0,263.0,489.13275805200055,38.0,5.262690188904886,6.1463292576688975,7.065613363597717,7.967973179662935,8.888618807300878,9.798848998423558,10.72099608411258,11.636018820332144,12.559623213686137,0.7696969696969694,1.026327272727273,1.1442209807101862,0.7415814339885411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6828269243331521,1.0119786096256682,1.0365291663907836,0.6653007975130919,5.0,5.0,0.0,1.0,0.0,2.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,4.0,0.0,1.0,0.0,0.0,24.683857284541137,24.35247369130704,29.31360827470219,11.781447844051817,0.0,4.567099647791355,19.342350610516444,0.0,10.197363616602075,32.372151489304386,18.19910120538483,10.437623783138106,12.014706349448105,324.9622115901373,-1158.3089373526939,-55.60127224184105,-21.06016249732171,-60.96362828172074,391.4281870180466,1395.223048046629,31.53312283366877,25.36769178266599,38.756195779073025,0.47058823529411764,0.7510682268372865,0.11831850732780187,47.475203359441366,0.06946701253720082,36.72717630716388,0.24893177316271362,9.0,0.10526315789473684,0.33287535137242635,0.7358909464583305,0.8552114749388423,0.8890345578846757,0.8953243648099511,0.8953243648099511,3.034800000000002,,2.9803921568627456,2.949383086248734,2.7546479478287207,3.023537305965415,-9.72070949836445,2.7155076517100483,2.499104325322219,-4.294621345499202,117.89030000000004,23.757483728209625,0.0,29.716398827235054,0.0,50.72600240244842,5.316788604006331,53.47504335375295,0.0,0.0,4.343805421853684,0.0,5.733341276897746,3.4339872044851463,7.29641326877392,5.820082930352362,8.937612591306213,7.946971357693591,10.62027801484355,42.33333333333332,6.841106679840909,20.677496126935104,0.0,5.685252664101489,0.0,0.6000742857553527,0.5181614922447637,1.4537071811749391,56.448000000000015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.932153939060235,5.316788604006331,15.89566410019341,0.0,52.13738639241306,10.15185342319683,5.817220841045895,44.884527001606855,35.270892291967264,5.022633313741326,11.16387793838399,0.0,40.78697886936976,37.55548083832336,43.390469891991074,442.16460568256116,,327.45695192442463,321.22909936255314,325.3295812403519,327.3433768570063,514.0098141304193,326.4601180873246,330.21838274366314,450.1881849400588,43.390469891991074,442.1646056825612,,324.6538901364285,318.4740779290224,322.78884546037216,324.49961538974026,521.7425219886608,323.9126579369059,327.86760042643175,453.6774140323934,4.917858355325592,332.8192682522633,,246.0749094799052,240.4379131124307,244.15831690738167,246.0465936659773,388.38058600149964,244.70649833196376,247.65785125120883,342.82415620180717,1.276190290940914,13.00484134360474,,9.631086821306607,9.447914687133917,9.568517095304468,9.627746378147245,15.117935709718214,9.601768179038958,9.712305374813623,13.240828968825259,2.539192264443087,221.08230284128058,,163.81613455506118,160.70129624263686,162.74580967746505,163.7606159963257,256.01090624514825,163.30992691577143,165.1826944402234,224.69139634344702,55.65882352941175,0.0,5.7283898895855465,5.813801998264045,14.244269211213968,0.0,21.352012645979215,57.009104151493105,0.0,2.8712343388213006,5.9121825420684555,0.0,-4.778300377300476,0.0,-0.3916109009068345,0.0,0.0,36.59154386322005,538.0580664059054,105.84596803274513,233.99476492709485,271.9356842265485,282.6905717287119,284.6905717287119,284.6905717287119,1575.0,152.04671191368973,178.33233220227837,88.13249206620621,144.24,144.24,0.8888888888888888,9.235782322645075,6.247927513443585,4.794306674186791,5.735810196537592,,5.73250600010802,5.725906841726309,5.723999696816361,5.73272876904798,5.738192248918015,5.728081411913781,5.729321662121174,5.742165860946127,0.14100901982902325,0.16870029989816449,,0.1686031176502359,0.16840902475665614,0.16835293225930473,0.16860966967788177,0.16877036026229456,0.16847298270334649,0.16850946065062278,0.16888723120429786,2.791204536006893,2.970504444507517,,2.969928214054093,2.9687763688199547,2.968443240349226,2.969967073954387,2.9709196531369324,2.9691560741532315,2.9693725717669097,2.971611898474363,321.09000000000094,450.7847517231979,239.4550872697149,,239.9518286396034,240.77729847053385,240.94937787134856,239.9062919094939,239.9938062540356,240.52386925873745,240.39723553299976,238.9714199644832,13.258375050682291,7.042796684403379,,7.057406724694218,7.081685249133349,7.08674640798084,7.056067409102761,7.058641360412812,7.074231448786396,7.070506927441169,7.028571175425976,7.334765388289304,6.702141303830131,,6.704213620816704,6.707647865157978,6.708362292722756,6.704023828341403,6.704388547356242,6.706594764720206,6.706068134770293,6.700119394664596,27.29541159855885,12.675843717494613,32.485558328938815,0.35905005604163187,0.1069158863538453,4.188669950549321,-2.125863648008889,5.7283898895855465,0.0,376.07858235407525,232.7998082936554,-829.801401341518,-39.83221758445465,-15.08729820620942,-43.67375796534306,280.415394924337,999.5243955374495,22.59002643617279,18.173170827953633,27.76456654270693,3618.0,58.0,3.600054362971695,2.201424701819304,0.28867513459481287,0.25,1.1218592136193866,0.278520890209079,0.14433756729740643,0.04564354645876384,0.0,0.0,0.0,0.0,0.2926435951945342,0.09464084914532588,0.6900588857748788,0.18803022863745697,1.335193191925592,0.2753480923015889,24.197941654890254,19.102215659670932,16.13004885877513,10.76132377831075,16.06891346904737,9.355816746701812,13.443480244490102,5.6161393670125745,11.166862701659525,3.752839886079917,8.68814463680592,2.4266820345513005,6.6750981094787925,1.4714788644464971,4.77525423955814,0.8607186617457444,7.448534022549487,2.578152997565307,11.212195517639188,2.9888421853999656,16.601171098968717,3.4322889178596614,108.0433925616107,43.67935865006272,34.536182584993696,31.964782464858295,31.82727847527558,31.82727847527558,192.0,233.0,62.71765299999999,33.002347,0.4727272727272727,322.13,11.756944444444445,7.083333333333331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,20.0,21.0,55.0,0.0,0.0,59.0,21.0,0.0,9.0,50.0,21.0,38.0,38.0,0.0,0.0,0.0,21.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,11.0,3.0,4.0,34.0,13.0,0.0,7.0,4.0,0.0,5.0,4.0,0.0,0.0,2.0,3.0,4.0,3.901972669574645,8.12037728960033,4.564348191467836,5.170483995038151,5.768320995793772,6.2292503751590615,6.585503328125835,6.959168488054634,7.41959367097521,7.730126738291856 +4168,CCN(CC)CCNC(=O)c1cc(Cl)c(N)cc1OC,0,25.952380952380953,6.0658,2.7142857142857144,5.70487948265726,167.04979803917567,104.7447083571429,1.3927355215875716,6.1641095238095245,3.6714224022180133,7.684699928571428,197.1374769994747,23.642857142857142,6.348500000000001,3.261904761904762,5.4074074074074066,151.38558822328565,88.73198640476187,1.6649375902380954,6.489642857142857,2.970066627474035,7.80345376190476,237.43595128843168,19.068493150684933,6.1919452054794535,2.9315068493150687,4.006088280060883,162.1665049050703,70.50937298630136,1.36288709377926,6.288686301369865,2.6817464344100572,7.747530027397264,187.884642723552,18.696629213483146,6.137674157303371,2.696629213483146,3.4244694132334583,162.97831411899296,68.70569631460674,1.3244983480818202,6.247162921348313,2.6797290424007034,7.73058806741573,179.64722556551033,16.08080808080808,6.087070707070706,2.2525252525252526,2.951739618406285,160.685384643853,56.443764636363625,1.244660731531151,6.1959777777777765,2.9011826079727308,7.705331151515149,161.01597633544483,13.572727272727272,5.874528181818179,1.9454545454545455,1.7767676767676768,168.3242223870292,48.16493414545454,1.0074576435919183,5.948184545454547,2.464337822671157,7.547951363636362,127.03535215487892,12.604395604395604,5.925647252747253,2.021978021978022,1.663003663003663,170.7403504313039,43.50469721978021,1.0321686161573513,5.988936263736265,2.6169108669108674,7.591723516483517,129.07629952727024,13.643835616438356,6.041794520547945,2.1780821917808217,1.7884322678843225,167.01137053662165,45.79266345205481,1.1294435178100135,6.147556164383563,2.6928800947065787,7.754476027397261,142.3651400215406,14.866666666666667,6.067118333333331,2.3,1.6814814814814814,162.24062891139954,51.05212478333332,1.2249976515748326,6.174206666666667,2.656378600823045,7.710110166666669,158.1559469584012,11.439909297052154,0.11684671201814052,0.02202364007360715,0.5351473922902494,3.5413342291649172,1.3663323325812347,53.792644637755096,0.2379577733818368,0.11953605442176864,1.1509628288647165,0.07852992346938774,50.01509369804647,0.060090702947846096,-0.00579977324263035,-0.01045011936420622,0.27437641723356015,1.3799445704207611,-0.2973868005263019,0.2834635170068054,-0.019942050346938793,-0.003912585034013618,-0.09802473801591963,-0.005949312925170053,-1.8554346121753846,1.069549280899575,-0.0035539527226415473,-0.0005929554485591571,0.014754760351629181,0.41588674479882726,0.07195944754136661,5.183915424867207,0.037998975519450924,-0.0013594073245736785,0.08366698817767532,-0.003957446952753694,7.295464288802836,0.8495503070141917,-0.003923437539809914,-0.0015004488129590047,-0.06698259828275885,0.11575446288007965,0.16623363379887193,4.060141979419859,0.017995774234883966,-0.0005682641595964326,0.023270600851828322,-0.0029026176908965745,4.632977866674763,-1.2681921253349822,0.015214759843331283,0.002913703905647158,-0.056551913694770854,0.31794046961595457,-0.34284800068061677,-6.158270269789734,-0.05625701213060298,0.009282560296846015,0.09392182156024781,0.008702681148216864,-11.451810511979701,2.0765409193980617,0.014721556380127789,-0.0018537053942151657,0.004679447536590401,0.044657967938391274,-0.16746533953398543,9.556718807050098,-0.0077211391795730805,0.022420742115027828,-0.011852178300019436,0.01652838627087198,1.5333335165045412,0.5339263910692479,-0.00382939124367696,0.0013381826069749766,-0.0003488574917146242,-0.31675398871166077,0.21839639868930136,2.616608251569858,0.030280132864083202,-0.0032237048665620122,0.01629254478885417,-0.0033541605180533755,4.535195423571065,-2.476438977417451,-0.01872172832603359,-0.0006509641051951454,-0.010685552759916752,-0.6957961492280546,0.0713458003571788,-11.48456968276489,-0.005205329643157678,-0.023939250768800657,-0.1781218711129221,-0.01590136867486719,-2.298064258903714,-2.112925170068027,-0.02388044217687072,-6.804127275615003e-05,-0.09705215419501138,-1.2132331121749107,-0.10807797828608767,-9.985608979421773,-0.03479962814878435,-0.024086054421768702,-0.3366263093155771,-0.01242472465986393,-8.689876124310729,,,0.47904761904761906,1.075,0.45,0.075,0.625,-0.175,0.8599634269758207,0.019330389853490358,0.023630389853490356,0.7880201064341152,0.22073635299477457,0.25564393527038987,1.647983533409936,0.47638028826516443,1.9466511699352487,1.3819033168190598,0.2930871469111155,0.18360873889632726,0.08805196730874607,0.5647478531161888,7.122382252952395,1090.0,254.7636,114.0,239.60493827160494,7016.091517645378,4399.277751000001,58.494891906678006,258.8926,154.19974089315656,322.75739699999997,8279.774033977938,993.0,266.63700000000006,137.0,227.1111111111111,6358.194705377998,3726.7434289999983,69.92737879,272.565,124.74279835390948,327.7450579999999,9972.309954114131,1392.0,452.0120000000001,214.0,292.44444444444446,11838.154858070131,5147.184227999999,99.49075784588598,459.07410000000016,195.7674897119342,565.5696920000003,13715.578918819296,1664.0,546.253,240.0,304.77777777777777,14505.069956590374,6114.806972,117.880352979282,555.9974999999998,238.49588477366262,688.022338,15988.603075330419,1592.0,602.6199999999999,223.0,292.22222222222223,15907.853079741448,5587.932698999999,123.22141242158396,613.4017999999999,287.21707818930037,762.8277839999997,15940.581657209039,1493.0,646.1980999999997,214.0,195.44444444444446,18515.66446257321,5298.142755999999,110.82034079511101,654.3003000000001,271.07716049382725,830.2746499999998,13973.888737036681,1147.0,539.2339000000001,184.0,151.33333333333334,15537.371889248656,3958.927446999999,93.92734407031898,544.9932000000001,238.13888888888894,690.84684,11745.94325698159,996.0,441.051,159.0,130.55555555555554,12191.83004917338,3342.864432000001,82.44937680013099,448.77160000000003,196.58024691358025,566.0767500000001,10392.655221572464,892.0,364.0270999999999,138.0,100.88888888888889,9734.437734683972,3063.1274869999993,73.49985909448996,370.4524,159.3827160493827,462.60661000000016,9489.356817504071,480.4761904761905,4.907561904761902,0.9249928830915002,22.476190476190474,148.73603762492652,57.38595796841186,2259.291074785714,9.994226482037146,5.020514285714283,48.34043881231809,3.298256785714285,2100.633935317952,2.523809523809536,-0.2435904761904747,-0.43890501329666126,11.523809523809526,57.95767195767197,-12.49024562210468,11.905467714285827,-0.8375661145714294,-0.16432857142857196,-4.117038996668624,-0.24987114285714224,-77.92825371136615,78.07709750566897,-0.25943854875283295,-0.04328574774481847,1.0770975056689303,30.35973237031439,5.253039670519763,378.4258260153061,2.7739252129199174,-0.09923673469387853,6.107690136970298,-0.2888936275510197,532.568893082607,75.60997732426306,-0.3491859410430823,-0.13353994435335143,-5.961451247165537,10.30214719632709,14.794793408099602,361.35263616836744,1.601623906904673,-0.050575510204082505,2.0710834758127206,-0.25833297448979514,412.3350301340539,-125.55102040816323,1.506261224489797,0.28845668665906865,-5.5986394557823145,31.476106491979504,-33.94195206738106,-609.6687567091836,-5.569444200929695,0.9189734693877555,9.298260334464533,0.8615654336734696,-1133.7292406859904,228.4195011337868,1.6193712018140567,-0.20390759336366823,0.5147392290249442,4.91237647322304,-18.421187348738396,1051.2390687755108,-0.8493253097530389,2.466281632653061,-1.303739613002138,1.8181224897959178,168.66668681549953,48.58730158730155,-0.3484746031746033,0.12177461723472287,-0.0317460317460308,-28.82461297276113,19.874072280726423,238.1113508928571,2.7554920906315714,-0.2933571428571431,1.4826215757857293,-0.30522860714285716,412.70278354496696,-180.78004535147392,-1.366686167800452,-0.04752037967924562,-0.7800453514739228,-50.793118893647986,5.208243426074053,-838.373586841837,-0.3799890639505105,-1.747565306122448,-13.002896591243314,-1.1607999132653049,-167.75869089997113,-126.77551020408161,-1.4328265306122432,-0.004082476365369002,-5.823129251700683,-72.79398673049464,-6.48467869716526,-599.1365387653063,-2.087977688927061,-1.4451632653061222,-20.197578558934623,-0.7454834795918358,-521.3925674586437,0.756047793231507,0.6479040763885218,0.4763802882651643,0.3521634607216258,0.30187939900903255,0.18323031949094787,0.20553770255739193,0.10933664155688537,0.12984403131562897,0.05833459169077914,0.08364320263319369,0.028516677854787988,0.056712613263226665,0.016543860270386054,0.038331137336347396,0.00989585008646098,17.00110263141285,5.692198171575874,3.543933604443696,2.1877963651734316,0.42543107253476037,-0.5279365215582733,3.214506531498903,0.9778281842448778,6.022054778699226,0.773997296934547,14.544075062972277,10.952904733798052,35.45051719858991,11.704493348968613,2.2078733990440127,0.7518721173201285,3.4891708767254808,2.238252261576514,7.008269792922642,1.2996603097679973,3.7020985167604015,2.4343703677090507,22.455861091026755,14.702493269137824,0.2944613857747566,0.5958697056659017,0.750950334120039,0.8112978663800524,0.8112978663800524,0.8112978663800524,2.417543310091892,461.97739235477394,0.0,1.0,6.0,0.0,5.0,0.0,1.0,0.0,0.0,3.7658417147854877,2.100994185795696,1.2443967263450109,0.9110633930116769,0.9110633930116769,0.9110633930116769,245.84107720732558,1117.9600197278692,46.92568201239156,26.61809570780641,54.16775243303867,,11.0,341.0,0.0,4.794537184071822,5.907179729351506,28.567739319318363,19.634269217737724,13.176164609739143,6.06636706846161,0.0,24.064172734238056,22.07147032119475,9.58095238095238,21.5,9.0,1.5,12.5,0.0,0.020952380952380965,-3.5,0.138548752834467,0.03398526077097497,-0.10456349206349203,0.07447204968944088,0.16397266265718957,0.0,0.5718820861678007,0.8709523809523807,0.4333333333333337,0.5378968253968257,0.7964803312629398,17.199268539516414,0.3866077970698072,0.47260779706980716,15.760402128682305,4.414727059895491,5.112878705407797,32.95967066819872,9.527605765303289,0.5500273373428104,0.30765407554671964,0.0,0.30268389662027834,0.5,0.2761119920979998,-0.5622350543142192,-0.03637349088382501,-0.013386548912243315,-0.05111227766492901,0.723888007902,1.4740222268062118,0.04909715205789088,0.03509576730490981,0.04754910409052297,-4.199430716596491,0.7334489593657086,0.8989989210043198,1.5965435253015383,0.7600635593220341,0.5722579051383399,1.6194117485014998,0.7406208391546387,1.1796672394208867,0.8393308691577794,0.7698175682249428,0.8504557187261655,1.1233308595761033,0.7288288960994882,1.074760446636369,1.1992930570886782,1.2993963315532855,1.0390366560181927,1.104219660530821,0.7293439380649376,0.8103891670828789,1.002006444946737,0.6159620592152142,1.0180762720315428,0.8410977611343942,0.8724958519392879,1.0418567312483942,1.1722119711301466,1.3732384307750904,1.0636984500599547,0.9938667268947136,0.87211066229589,0.9236628499819913,0.9937430389934027,0.891307747119377,1.0180212393459835,0.901352149224567,1.0938012433552573,0.8893864767521359,0.845180548209344,1.041056753980483,0.8959941310336565,1.3000448381092504,1.097085442067483,1.2736980831504352,0.9315247536772935,1.131025742916965,0.9457576053219271,1.2411350971264568,0.6714077844850888,0.9056645817727355,1.0123736031913204,0.8374518489984593,0.9722215235357526,1.017877449855952,0.6772961626166291,0.9302329113916512,0.8136537856627716,1.1378308333834035,0.7761893735109519,0.9073620155701922,0.8509758328886178,1.1123450511149573,1.0658044150127943,0.9120762711864407,1.0983051079355424,0.7551286074711184,0.8497976894964041,0.7508890313116912,1.0724132285383836,1.215084262686608,1.0593466410457397,0.8253814998992848,1.4605801213733929,1.3607803280382937,1.0822649153794783,1.0745008126306015,1.337722399696789,0.845568835364539,1.4499880914847143,1.0485677534331985,1.4130719566703003,1.8270696819013723,1.5229142420422295,1.0151348121340786,1.1733151635282457,1.2870593292372896,0.83718443838107,1.276906779661017,1.4289026679841899,1.1063565679099563,1.1732247291227873,1.1644175250373099,1.2635607905849144,1.8651504925984856,1.2779446534473458,1.1694472335420698,4.5,0.05774920926436078,2.666666666666668,1.5,1.2044444444444447,0.6041666666666667,0.3053061224489796,0.1996527777777778,0.16855631141345426,0.17125000000000007,3714.650774040307,4279.0887944538445,1882.7841778619224,1662.0165623932467,13.481610239221347,0.4643362801334035,7.221609490532902,0.8668428771861634,1.0,0.5,1.6264757079932732,3.2913232369830645,4.14792069643375,4.481254029767084,4.481254029767084,4.481254029767084,0.22500000000000003,0.007218651158045097,0.10256410256410262,0.051724137931034475,0.048177777777777785,0.028769841269841268,0.017959183673469388,0.013310185185185184,0.012039736529532446,0.01317307692307692,0.5199366930120652,18.05,9.106508875739644,5.37890625,124.57886014192627,1.0,3.870178762388324,93.52463205173123,,76.75562202979506,75.93959360550198,75.16826639225722,76.74791511542014,111.61228194360977,76.87919867715533,77.69704206555458,99.54816883295217,0.005252725470763157,-0.049635741925968195,-0.47449555701418816,0.5127118644067798,0.38966798418972337,-0.2176533435057396,0.005269559043168007,-0.08380499642236508,-0.03273142193742259,-0.08516759669172722,-0.07575854734519376,-0.037097493476211475,0.09349281127387762,-0.030415513293089447,-0.026923589678063593,0.027571395402832495,0.11743786886133523,0.052666138263319104,0.09636848048234471,0.15968789327372052,-0.011372362348326913,0.07269304106041594,-0.050394127205489664,0.14586525285441557,0.07426197926526432,-0.033577646063338074,-0.06812901082401558,-0.12516663492668073,0.032686681174223915,0.1216641294617015,0.07547764209700508,0.07562591454412043,-0.004753914309329473,0.020218377403883596,-0.03696193199561773,0.09263159426722661,-0.11085683394900438,0.13021127920971523,0.13229892496921541,-0.10567539804827944,0.08977985387471552,-0.25092577589298387,-0.11448164170510904,-0.23641594611969524,0.07765489953427453,0.08160282782797612,0.1108199367036097,-0.22896709103690022,0.1815172538066492,0.1259903349085446,-0.08416889251820923,0.008744221879815115,0.01261049227452391,-0.12256559809106973,0.17765846746160135,-0.032447518187117275,0.1875646826682009,-0.010297620394665703,0.21047246120537755,0.03065741565459531,0.04667225737592435,-0.03277277706438538,0.060761191270040676,-0.0006518904823989377,-0.08944481605351172,0.1598413456825056,0.04864249135156586,0.12725002606027272,-0.026968473086685263,0.014155578599288706,-0.042711878095244585,0.09067653558646045,-0.21647365491399323,-0.16022469098768505,-0.029557516514958516,-0.019967494775946136,-0.19647853159348092,0.052217018258211324,-0.21349702659356312,-0.021875014079935067,-0.20026803531873222,-0.1547590127551013,-0.20248801950081877,-0.04594741484995906,-0.18469772051536174,-0.20437410487993252,-0.0030894653440005056,-0.1813559322033899,-0.3425920948616599,-0.0791007983262095,-0.18563149379744825,-0.1462428718096275,-0.20149614723591217,-0.29247365846525003,-0.1582164366263173,-0.17374507337272357,4.000913745780976,8.39043208271309,5.085675264759766,18.54556008577474,33.22961566985884,36.18887543279465,36.52487543279466,36.52487543279466,36.52487543279466,38.933023398704975,27.638066336381197,5.86174293822231,3.672174777926545,1.7610393461749214,11.294957062323776,4963.68300250142,4250.684819713093,854.9044991857177,21.0,26.0,32.0,35.0,40.0,37.0,30.0,24.0,24.0,299.1400546240006,20.0,4.532599493153256,5.342334251964811,6.180016653652572,7.014814351275545,7.85979918056211,8.703672758358856,9.553575403548212,10.402716190456456,11.256393161510664,0.6349206349206349,0.9756190476190476,1.1431142112004966,0.5942945157415226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6434765611633877,0.9641456582633052,1.00434398085527,0.5893916819322885,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,1.0,0.0,1.0,0.0,4.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,20.687228765819043,5.749511833283905,0.0,0.0,5.907179729351506,4.794537184071822,0.0,0.0,0.0,25.448414289613766,19.15587988028676,19.15587988028676,23.383268621399417,151.59291067734412,-308.6821681329812,-19.97002488982013,-7.349575431737648,-28.06201528481647,397.4339878846697,809.2778515948879,26.955657122571427,19.268520276068763,26.105737148222197,0.45454545454545453,0.9230678397859688,0.24350647814465115,24.875512954238605,0.1250561936803157,56.10397726198465,0.07693216021403107,6.0,0.35,0.3016283316561732,0.6103726800428201,0.7692278423580357,0.8310441834964921,0.8310441834964921,0.8310441834964921,2.0023999999999997,,1.5756302521008405,1.2450396026091517,1.1536780407249854,1.5872164609218062,-3.485189029095318,1.194032466727608,1.1275627524360021,-1.6726742111087283,82.53760000000004,9.53140013787187,0.0,10.216698334856808,0.0,13.847474399381248,39.02249064209002,22.71881894236154,0.0,5.749511833283905,3.713572066704308,0.0,4.976733742420574,0.0,6.444131256700441,0.0,8.006700845440367,0.0,9.62251624577579,26.666666666666664,3.0874031557067267,0.0,0.0,0.0,0.0,0.0,1.556839632713101,0.0,40.976,0.0,12.136979717813052,0.0,0.0,0.0,0.0,0.0,-0.21212396069538908,48.010796870420855,15.787319034968565,5.687386274683562,5.749511833283905,44.09591262512983,0.0,0.0,24.205463075150064,12.13273413692322,5.022633313741326,0.0,0.0,24.96036966114395,27.02601556886228,24.777474305635796,187.0492641034625,,153.3536810343801,151.75468325074306,150.22116498044193,153.3371085847481,224.27012059594807,153.6389941076379,155.28132785586556,199.59813992923694,24.777474305635796,187.04926410346252,,151.93561380748946,150.6341476083948,149.18285474378933,151.90861376991842,226.70975291631487,152.5643648875831,154.2665213786732,200.76901187701299,4.7472906430883395,140.72024632376124,,118.11237755853898,116.20850176647052,114.4500901646189,118.11403713171217,169.95250368997915,117.76460098549072,119.11024794483937,152.73853480632445,1.2388737152817897,9.352463205173125,,7.667684051719005,7.587734162537153,7.5110582490220965,7.666855429237406,11.213506029797404,7.681949705381895,7.764066392793278,9.979906996461846,2.3736453215441693,93.52463205173123,,76.75562202979506,75.93959360550198,75.16826639225722,76.74791511542014,111.61228194360977,76.87919867715533,77.69704206555458,99.54816883295217,40.49411764705882,0.0,5.678124560340921,5.947448979519535,0.0,5.690821951867677,0.0,42.18244719592134,3.307741786899435,2.8594031872008063,5.162170493197279,0.0,0.0,2.2296349398813025,0.0,0.0,0.0,24.75445064115612,506.7890732400284,68.31197973571747,138.2355759532887,174.2126692502175,188.21266925021752,188.21266925021752,188.21266925021752,309.0,110.84592144448247,42.23782532198544,52.76365415704148,67.59,67.59,0.8333333333333334,6.904562688082973,5.321928094887363,3.5515060837015473,4.401851784789167,,4.395795282396038,4.395554542989249,4.395601328326759,4.395777651383837,4.378992457764725,4.395510965227379,4.395315754421682,4.387592755670841,0.17757530418507736,0.22009258923945835,,0.2197897641198019,0.21977772714946245,0.21978006641633793,0.21978888256919188,0.21894962288823624,0.21977554826136894,0.21976578772108407,0.21937963778354205,1.9605189430091507,2.175172493126712,,2.173795646953262,2.1737408796168163,2.1737515233451714,2.1737916360641223,2.1699658460129654,2.1737309655144066,2.173686553125912,2.171927910022103,233.97999999999962,289.7727668542411,97.70682523557555,,97.46973012644236,97.7147823968539,97.85384976630887,97.4636478931553,99.33618578399106,97.70704092781793,97.71414238498001,98.59950498449042,14.488638342712056,4.885341261778778,,4.873486506322118,4.885739119842695,4.8926924883154435,4.873182394657765,4.966809289199553,4.885352046390897,4.885707119249,4.929975249224521,6.362244233823275,5.275118596284058,,5.272689050119372,5.275200032123003,5.276622217177494,5.272626646919358,5.291657093931164,5.275120803826916,5.275193482305727,5.284213421714659,5.162170493197279,14.366614657694354,3.2063410703787696,6.477354097388369,0.2112456433190566,3.0874031557067267,0.0,7.490470702871497,1.4953956443688585,282.67976106908174,83.22858559317065,-169.4748134114488,-10.96408082946417,-4.0351146050344955,-15.406801219222617,218.2019497514532,444.31530893607106,14.79938082870645,10.578935927049313,14.332751901163586,902.0,29.0,1.2139803565731002,0.5872360190743116,0.0,0.0,0.33093309327558146,0.08629620926971213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05555555555555555,0.020833333333333332,0.18246983613200962,0.05457274955585772,15.120955864630139,12.958081527770435,9.527605765303287,7.043269214432516,7.848864374234846,4.763988306764644,6.577206481836542,3.498772529820332,4.544541096047014,2.04171070917727,3.3457281053277477,1.1406671141915194,2.0983666907393865,0.612122830004284,1.1499341200904218,0.2968755025938294,3.0791985404917352,1.2988109465981583,3.939960633469934,1.3665738168828356,5.73213269187477,1.4513930766613015,66.369512949008,34.541445594799455,27.48870394870478,25.810672240211737,25.810672240211737,25.810672240211737,92.0,104.0,45.13344599999997,26.894553999999996,0.14285714285714285,20.06,8.666666666666666,4.833333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,42.0,0.0,1.0,42.0,6.0,1.0,4.0,38.0,7.0,20.0,35.0,0.0,0.0,0.0,14.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,4.0,2.0,0.0,20.0,6.0,0.0,3.0,2.0,0.0,1.0,7.0,0.0,0.0,1.0,0.0,1.0,3.2188758248682006,4.5129178262830045,3.7013019741124933,4.178226046202803,4.593856426087818,5.056643815303811,5.117245029154514,4.959780500044607,4.574710978503383,4.620058798481842 +5497,CCN(CC)C(=O)c1cccnc1,0,19.85185185185185,5.976288888888889,2.6666666666666665,6.074074074074074,165.36007780229576,77.9713409259259,1.3769179506624445,6.040807407407407,4.076131687242799,7.526616444444446,199.01335418274232,22.0,6.217592592592593,3.2222222222222223,5.777777777777778,148.25596741391115,81.95194270370365,1.6902318644444434,6.355166666666669,3.053497942386832,7.641406074074077,239.95230922846915,17.043478260869566,6.1166086956521735,2.847826086956522,4.391304347826087,161.4317179764824,61.79099373913042,1.3539366521476524,6.198263043478261,2.773550724637681,7.624476869565221,185.98139833046199,15.436363636363636,6.008872727272726,2.6,3.381818181818182,163.35589410350704,55.615711581818175,1.2380836370524728,6.082990909090909,2.8181818181818192,7.565331854545454,169.11035951293968,14.796296296296296,6.230312962962962,2.2962962962962963,2.685185185185185,161.49264970713227,51.03590248148148,1.2130518257396854,6.292207407407409,3.629629629629631,7.788610814814816,163.22873184965138,11.0,5.899089285714285,1.8928571428571428,1.375,163.05372642968015,35.8099460357143,1.1014136377685178,5.962089285714285,2.8333333333333335,7.52583942857143,138.22192378771274,8.235294117647058,5.590196078431373,1.6666666666666667,0.5490196078431373,167.0623556792879,25.17419478431373,1.0017279154594707,5.651411764705883,2.0980392156862746,7.242562980392157,115.79533509543607,5.631578947368421,5.459578947368422,1.5263157894736843,0.15789473684210525,172.15351565753645,14.710495631578944,0.8600542267785262,5.502973684210527,1.8157894736842106,7.155168210526317,91.381141920646,3.2222222222222223,5.133333333333335,1.3333333333333333,0.0,170.78649455253836,5.9454080000000005,0.7419157515827778,5.182222222222222,1.4444444444444444,6.895872000000001,68.26279862630287,7.209876543209877,0.1019492455418381,0.013794874647494022,0.47187928669410134,3.654320987654321,1.4561170722926162,34.39422813443073,0.22032907198150617,0.09804691358024685,1.380048773052888,0.057529887517146765,49.851037848716224,0.27160493827160564,0.004832098765432013,-0.006474721860150236,0.25925925925925924,1.5720164609053509,-0.5609831711012379,1.199752065843619,-0.03765494592592589,0.006109876543209791,-0.02773967383020883,0.0006489547325102983,-4.630290884610247,0.4680622651637148,0.007314200512912209,-0.0004514519798660246,0.018458877557106235,0.72410091250671,0.04141712666710184,2.2119454114629935,0.010292315807923775,0.007249624261943052,0.0558744690297741,0.004518434544044856,2.8265863137763945,0.9914702581369252,-0.0004272253398179653,-0.0007606906106401008,-0.10756952238433719,0.03187429854096512,0.060766289142049075,4.738836447387453,0.013214911398008995,0.003074635241301864,0.10072189660667025,-0.002443191220850475,6.223368428538112,-1.532921810699588,-0.008928737997256596,0.0027062970043577215,-0.11796982167352538,-1.0020576131687242,-3.468978835638356e-05,-7.3279917674897135,-0.0309841975222037,-0.011705349794238729,-0.12056089010821537,-0.003673917695473226,-9.637017243948371,-1.564373897707231,-0.023948848716441314,-0.001047072755129737,-0.03933960415441899,-0.9274691358024691,-0.20586538645303995,-7.366116176097395,-0.02015761189133355,-0.024154585537918858,-0.35432860844383496,-0.013042519792279042,-7.647045494483412,-0.8046477850399422,-0.007186573065440093,-0.0011651284300470866,-0.0310659243121117,-0.5998547567175019,-0.08866937158681028,-3.8494902164931815,-0.01963805409846697,-0.007737981118373212,-0.06741260747554619,-0.0028374053094488948,-5.196504360257452,-0.6270305393112418,-0.00773910908959631,-0.00030147112010928194,-0.02158688903328281,-0.45159194282001325,0.15730767886875305,-2.9752006997328677,-0.0021779956341728543,-0.007972254710851124,-0.025164649162916358,-0.0025630103241643396,-1.772010629178744,0.851851851851851,0.020216186556927467,0.00122489035508029,0.0713305898491083,0.691358024691358,-0.19359755986057828,3.9325016145404685,-0.015207922470456776,0.019550617283950755,0.12680993750952613,0.010222425240054827,-0.20332771617673373,,,0.47179487179487184,1.1923076923076923,0.5769230769230769,0.0,0.6153846153846154,-0.038461538461538464,0.6441775175015496,0.009460761714481172,0.016076146329865787,0.6942559467128849,0.24236417387228051,0.24157610767270715,1.3384334642144347,0.4839402815449877,1.9507844306972204,1.4992342285355589,0.3155907731987757,0.13595942896288613,0.0,0.4515502021616618,6.596689372888888,536.0,161.3598,72.0,164.0,4464.722100661986,2105.2262049999995,37.176784667886004,163.1018,110.05555555555556,203.21864400000004,5373.360562934043,594.0,167.875,87.0,156.0,4002.911120175601,2212.7024529999985,45.63626033999997,171.58950000000007,82.44444444444446,206.31796400000007,6478.712349168667,784.0,281.364,131.0,202.0,7425.8590269181905,2842.3857119999993,62.28108599879201,285.1201,127.58333333333333,350.72593600000016,8555.144323201252,849.0,330.48799999999994,143.0,186.0,8984.574175692887,3058.8641369999996,68.09460003788601,334.5645,155.00000000000006,416.093252,9301.069773211682,799.0,336.4369,124.0,145.0,8720.603084185143,2755.938734,65.50479858994301,339.77920000000006,196.00000000000009,420.5849840000001,8814.351519881175,616.0,330.349,106.0,77.0,9131.008680062088,2005.3569780000005,61.679163715037,333.87699999999995,158.66666666666669,421.4470080000001,7740.427732111913,420.0,285.1,85.0,28.0,8520.180139643682,1283.8839340000002,51.088123688433,288.22200000000004,107.0,369.370712,5905.56208986724,214.0,207.46400000000006,58.0,6.0,6541.833594986385,558.9988339999999,32.68206061758399,209.11300000000003,69.0,271.89639200000005,3472.483392984548,58.0,92.40000000000002,24.0,0.0,3074.1569019456906,107.01734400000001,13.35448352849,93.28,26.0,124.125696,1228.7303752734517,194.66666666666666,2.7526296296296286,0.3724616154823386,12.740740740740737,98.66666666666666,39.31516095190064,928.6441596296297,5.9488849435006665,2.647266666666665,37.261316872427976,1.5533069629629626,1345.978021915338,7.333333333333352,0.13046666666666434,-0.17481749022405638,7.0,42.44444444444447,-15.146545619733423,32.39330577777771,-1.016683539999999,0.16496666666666435,-0.7489711934156384,0.017521777777778053,-125.01785388447666,21.53086419753088,0.3364532235939616,-0.02076679107383713,0.8491083676268868,33.30864197530866,1.9051878266866844,101.7494889272977,0.47344652716449365,0.3334827160493804,2.5702255753696086,0.20784798902606338,130.02297043371414,54.53086419753089,-0.023497393689988093,-0.041837983585205546,-5.9163237311385455,1.7530864197530818,3.342145902812699,260.63600460630994,0.7268201268904947,0.16910493827160253,5.5397043133668635,-0.13437551714677612,342.28526356959617,-82.77777777777776,-0.4821518518518562,0.14614003823531696,-6.37037037037037,-54.11111111111111,-0.0018732485712447122,-395.7115554444445,-1.6731466661989998,-0.6320888888888914,-6.51028806584363,-0.1983915555555542,-520.3989311732121,-87.60493827160494,-1.3411355281207136,-0.05863607428726527,-2.2030178326474634,-51.93827160493827,-11.528461641370237,-412.50250586145415,-1.1288262659146788,-1.352656790123456,-19.842402072854757,-0.7303811083676264,-428.23454769107104,-41.03703703703705,-0.36651522633744477,-0.05942154993240141,-1.5843621399176966,-30.592592592592595,-4.522137950927324,-196.32400104115226,-1.0015407590218155,-0.3946370370370338,-3.4380429812528552,-0.14470767078189364,-265.02172237313005,-23.827160493827186,-0.29408614540465977,-0.011455902564152713,-0.8203017832647467,-17.160493827160504,5.977691797012616,-113.05762658984898,-0.08276383409856847,-0.3029456790123427,-0.9562566681908216,-0.0973943923182449,-67.33640390879228,15.333333333333318,0.3638913580246944,0.02204802639144522,1.2839506172839494,12.444444444444445,-3.484756077490409,70.78502906172844,-0.27374260446822196,0.35191111111111356,2.2825788751714704,0.1840036543209869,-3.659898891181207,0.744753713528824,0.6174069323534906,0.48394028154498775,0.34498575021071515,0.3021114430665878,0.16994644123378438,0.20928623998877988,0.09795711008174464,0.14652836081256654,0.05631721426362031,0.09039449163407952,0.027062380033678595,0.06038274703108187,0.014941937976718783,0.04286878042996372,0.008539160928744379,8.022016228542057,5.723625842284712,3.5437933363984087,2.219274859210593,0.40164559934721006,-0.4094074325675117,3.167578293125938,0.9779884363845931,6.022010688830175,0.9872569003884872,14.548140203622124,10.988163124514115,16.010060584654724,11.7379081928606,1.9557248559715312,0.7518194109314048,3.489023094708137,2.26793257251059,7.008267620984823,1.4390745407818477,3.7019393787443575,2.4632306270426323,20.854264159824726,14.702711901967898,0.29798691111362946,0.606763449905165,0.7391578054135727,0.7541095896048394,0.7541095896048394,0.7541095896048394,2.3830663406642363,267.5130516555259,0.0,3.0,4.0,0.0,2.0,0.0,1.0,0.0,0.0,3.2786018465807434,1.7488622573656887,1.0929546297898867,1.0188805557158123,1.0188805557158123,1.0188805557158123,173.6215565452572,406.41779800137937,29.451430419215345,15.052511037088124,30.675432738114434,,7.0,140.0,0.0,4.794537184071822,5.907179729351506,5.563451491696996,13.08951281182515,0.0,29.42633101099985,13.847474399381248,4.9839785209472085,0.0,6.133333333333334,15.5,7.5,0.0,8.0,0.0,0.028205128205128174,-0.5,0.11728395061728386,0.03233771405814412,-0.08494623655913974,0.0,0.1389999999999999,0.0,0.5506172839506176,0.8205128205128205,0.43333333333333374,0.5182795698924735,0.8205128205128205,8.374307727520145,0.12298990228825524,0.20898990228825523,9.025327307267505,3.1507342603396467,3.140489399745193,17.39963503478765,6.29122366008484,0.5750000000000001,0.21739130434782605,0.0,0.22826086956521735,0.4,0.27437396167482536,-0.28982188759232064,-0.043691434749102045,-0.010734143984900767,-0.041403126798902956,0.7256260383251747,0.7664805611648379,0.03285447004198846,0.02838816893203103,0.038324028058241894,-2.2864000431563376,0.8879375951293759,0.679464754241735,1.5336750846602116,0.6802325581395351,0.45382882882882886,1.6616902534615412,0.8973547843793938,1.3328500424916647,0.6743335543859353,0.5527638190954774,0.6695417432933052,1.1841504327189565,0.908799880881477,0.9025393372930463,1.3576422539742803,1.2865267947421644,0.8592831962397179,1.0977255438539504,0.9101394546400728,0.9356588798045593,0.8909977696437233,0.600018727176254,0.8357349194450048,0.9163141007991961,0.8462951432129514,1.041402197592507,1.482709712801354,1.5583509513742078,1.078009828009828,0.9870099827199843,0.8451501520671719,0.903363887824229,0.9955826364071347,0.8524831951967632,1.0713650785349094,0.8372011939329643,1.2564687975646878,1.581292635997901,1.17996447264535,1.473837209302326,1.503003003003003,0.9924028271863405,1.2486377002131308,1.112910218624131,1.5513163822363247,2.1202440775305096,1.7527601803826522,1.1329100139772559,1.205632338551859,1.417805292486069,0.8219265839083374,0.911025747508306,1.2516891891891893,1.0348707685758618,1.1990538294535393,1.0615937776186632,1.4068965563762084,1.8759614398523232,1.5358734528690274,1.1075536050548385,1.0226631748589847,0.7504830793608328,0.6328478631181691,0.6002051983584133,0.9274642289348172,0.9471516836872553,1.0268663233317203,1.017560401757613,0.7934962143713158,0.5199104767535155,0.6339329029199371,1.0582957621889018,0.9946827685652487,0.7210158069653753,0.5563400286434647,0.5370257037943698,0.8945590327169275,0.7117004826761013,0.9978890461133868,0.8750306260373011,0.768735312556745,0.33511542675784944,0.5520280749890801,0.9542953885698188,0.7420091324200913,0.18891026762287896,0.09420485065749153,0.34011627906976755,0.40990990990990994,0.8034205095336119,0.7532406134158238,0.9774766066654879,0.26736172320296786,0.15506101938262745,0.08821551763110515,0.966387374354577,2.0,0.0,1.5555555555555562,1.0625,0.35111111111111115,0.18055555555555558,0.12081632653061225,0.05555555555555555,0.0,0.0,1967.135141138965,2285.4724920165804,1174.9596203634135,1036.5819484216654,9.402422559874001,0.4357969915594963,5.304875094909773,0.7724116763646288,1.0,0.4,1.4762856555827248,3.0060252447977795,3.6619328723735816,3.736006946447656,3.736006946447656,3.736006946447656,0.15384615384615385,0.0,0.09722222222222227,0.06249999999999999,0.02507936507936508,0.018055555555555557,0.020136054421768707,0.027777777777777776,0.0,0.0,0.4046171289028432,11.076923076923077,5.671875,3.0,78.39711744267363,1.0,3.4446816489608487,40.08314155024376,,31.927535407012908,31.17764912091846,30.593093613275446,31.934113604604352,43.16276638682561,31.611214959002233,31.97252369693921,39.629283756999534,0.03767123287671243,0.04739710176127795,-0.4693570638082192,0.549418604651163,0.4301801801801805,-0.3852596619981835,0.03488236634223501,-0.17090321121620547,0.062315847792691,-0.020100502512562835,0.01128030595083082,-0.09288253734379348,0.06491959499702209,0.07174354723312391,-0.03272606612253888,0.03911779575328619,0.1981492361927146,0.02844354170086868,0.06431152933037333,0.04671338065086428,0.07394036178415317,0.040487314739008004,0.07854064624579943,0.05670065129545112,0.13751556662515574,-0.004190568920322612,-0.05514298825312544,-0.22795983086680766,0.0087223587223587,0.041731733181573256,0.13777999113297698,0.05997806498780251,0.03135881721340894,0.07298430213003078,-0.04246820785321861,0.12483929517022839,-0.21261415525114152,-0.08758022631557784,0.19618134078872168,-0.25000000000000006,-0.2742117117117117,-2.3823488520579904e-05,-0.21305876494300346,-0.14062691429483454,-0.1193851939526729,-0.08735987630460006,-0.06386102692062828,-0.19331628106106816,-0.2169765166340509,-0.23490952374545182,-0.07590302789159076,-0.08336794019933562,-0.2538006756756757,-0.14137969423633678,-0.2141672186189712,-0.09148866152817783,-0.2463574288664319,-0.25675078690154085,-0.2267085919191433,-0.15339791957170537,-0.1116035455278002,-0.07049167482549791,-0.08446096538171471,-0.06583447332421348,-0.1641494435612083,-0.06089439734897332,-0.1119225644909765,-0.08913056239857142,-0.07892121063086839,-0.048847989137672826,-0.049320543319386935,-0.10424064542101151,-0.08696827685652497,-0.07591139148175767,-0.021853849912586716,-0.04574663402692783,-0.12357752489331446,0.10803230170296435,-0.08650290647908188,-0.009885194062614077,-0.08131061366175696,-0.01823460855462966,-0.044550935779257964,-0.03554611309309736,0.11815068493150672,0.19829657835605183,0.08879314864255064,0.15116279069767433,0.18918918918918917,-0.1329546665885623,0.11433609148518131,-0.0690236759665256,0.19940063965348057,0.09188801148600156,0.1776889488443383,-0.004078705779281381,5.087561571431172,5.553157574048103,1.0,13.583229548559547,27.180456990801524,28.656648916434968,28.731315583101633,28.731315583101633,28.731315583101633,25.360197599063866,19.490044970962266,4.102680051584084,1.7674725765175197,0.0,5.870152628101604,1226.2912032722988,999.5405817372457,355.1003908400454,0.0,16.0,20.0,21.0,20.0,14.0,12.0,8.0,4.0,178.110613068,13.0,4.07753744390572,4.875197323201151,5.68697535633982,6.502790045915623,7.323170717943469,8.144098463338524,8.966866554188723,9.789366553431428,10.612778714919378,0.5925925925925926,0.9694814814814814,1.136958892944435,0.549604220822271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6439809713905524,0.9559912854030502,0.9952523535917565,0.5934637356672774,4.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,5.907179729351506,9.77851570501903,0.0,0.0,0.0,0.0,25.980208536304467,25.4831999550513,5.563451491696996,105.56679241253313,-111.51046133279732,-16.81050415356302,-4.130017086399901,-15.930065904685334,279.1883489577903,294.90733666858205,12.640926265652325,10.922493950688223,14.7453668334291,0.42857142857142855,0.8532121840280855,0.32108008876021493,0.0,0.2413099463331269,9.398064396266891,0.1467878159719144,4.0,0.23076923076923078,0.3104775149592954,0.6321969223099477,0.7701408015872945,0.7857193140211577,0.7857193140211577,0.7857193140211577,1.5636,,0.5357142857142858,0.6570497906002791,0.6236333567935969,0.5342659360630688,-2.118657900702788,0.5810893512851898,0.5290207864431083,-1.0376437345448832,51.48850000000004,4.794537184071822,0.0,9.883888251797686,0.0,13.847474399381248,13.08951281182515,30.08987277184637,0.0,0.0,3.295836866004329,0.0,4.51085950651685,0.0,5.958424693029782,0.0,7.497207223203318,0.0,9.076466063419854,15.999999999999998,6.823463718820862,3.9092422524565382,0.0,0.0,0.0,0.0,0.6585185185185187,0.0,26.176,0.0,11.692870370370372,0.0,0.0,0.0,0.0,0.0,0.053796296296296564,30.697890109499745,0.0,0.0,0.0,28.880580792974342,0.0,0.0,24.205463075150064,24.526421280149375,0.0,0.0,0.0,14.839313962201318,17.387486227544915,16.383376869909686,80.16628310048752,,63.77265323160807,62.25421365866728,61.097110711289716,63.78603244981423,86.6514801429901,63.13303155626805,63.86365958057932,79.41820501162135,16.383376869909686,80.1662831004875,,63.371219208117594,61.77445411856637,60.665364541201846,63.38563950588251,88.444190674354,62.70307853167211,63.46655576492638,80.29621124854393,4.55682721899289,58.65115843403895,,47.412274122480326,46.31014811853587,45.40520348043002,47.42180788174099,63.849803752588414,46.94483678395164,47.47870409067161,58.73266214854067,1.260259759223822,6.166637161575963,,4.9055887101236975,4.7887856660513295,4.699777747022286,4.906617880754941,6.6654984725377,4.85638704278985,4.912589198506102,6.109092693201642,2.2784136094964453,40.08314155024376,,31.927535407012822,31.17764912091828,30.593093613275123,31.93411360460427,43.16276638682561,31.611214959002115,31.972523696939128,39.629283756999534,25.811764705882357,0.0,3.940017006802721,0.0,0.0,0.0,0.0,26.871813546977425,1.4806103552532124,0.0,0.0,0.0,0.0,1.7748148148148148,0.0,0.0,0.0,16.02352086301649,328.27777448460847,39.85971270073357,81.16268160954004,98.87218755408671,100.87218755408671,100.87218755408671,100.87218755408671,141.0,91.97878117318383,56.47736688571494,43.33879435217413,33.2,33.2,0.75,6.182472228392121,4.700439718141093,3.2827856929986914,3.5518871519700626,,3.5456917552234706,3.545754204877089,3.5467026385445237,3.5456938354029934,3.5468891372604894,3.545765727037929,3.5456825096836613,3.54616293358357,0.25252197638451473,0.2732220886130817,,0.27274551963257465,0.2727503234520838,0.2728232798880403,0.27274567964638413,0.27283762594311456,0.2727512097721484,0.2727448084372047,0.27278176412181304,1.4510566230611601,1.5298433188140301,,1.5280975408801463,1.5281151535515172,1.5283826021082096,1.5280981275580237,1.528435184416835,1.5281184031118231,1.5280949333348486,1.528230419621031,149.5299999999999,53.237467286014166,51.40590960132626,,51.353390739589955,51.34238112523776,51.346922946182204,51.353523527973934,51.579081707104606,51.34916855194845,51.35402231309325,51.48337555153197,4.095189791231859,3.9543007385635582,,3.950260826122304,3.9494139327105966,3.9497633035524773,3.9502710406133796,3.9676216697772775,3.949936042457573,3.950309408699481,3.9602596578101514,4.237126685225236,4.202117403108194,,4.2010952305917435,4.200880818368252,4.200969275895323,4.201097816364764,4.205480461487774,4.2010130089280775,4.201107529090645,4.203623215199867,0.0,17.376927437641726,0.0,0.6585185185185187,0.053796296296296564,3.5599074074074073,3.263556311413454,5.420627362055933,0.0,178.49776459453605,40.61736613869578,-42.90422331437041,-6.4679279021105485,-1.5890453079396452,-6.129174759195775,107.4191526722018,113.46711401106585,4.863661372392895,4.202485704113549,5.673355700553292,252.0,17.0,0.5257834230632086,0.24078027866708662,0.0,0.0,0.19245008972987526,0.03803628871563654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.024845199749997663,0.05892556509887896,0.012422599874998832,9.681798275874712,8.026290120595378,6.291223660084841,4.484814752739297,4.833783089065405,2.71914305974055,4.185724799775597,1.9591422016348927,3.0770955770638975,1.1826614995360265,1.8078898326815904,0.5412476006735719,0.8453584584351461,0.20918713167406297,0.5144253651595646,0.10246993114493254,1.6391500707438749,0.5990752063069512,2.4359164367547885,0.7420837283670326,3.031814336833025,0.7367243397412189,44.02474000534437,25.0537357784265,22.323811123290636,22.11974538238964,22.11974538238964,22.11974538238964,58.0,65.0,29.037101999999976,17.762897999999996,0.2222222222222222,13.03,5.083333333333334,3.222222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,27.0,0.0,0.0,27.0,6.0,1.0,4.0,23.0,7.0,13.0,20.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,2.0,0.0,1.0,13.0,3.0,0.0,2.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,1.0,2.8903717578961645,0.0,3.3141860046725258,3.8010914447208646,4.168601332828593,4.521108998361656,4.235011891712072,4.385925275089539,3.944006051281197,3.446011397451948 +3333,CCOC(=O)C1=C(C)NC(C)=C(C(=O)OC)C1c1cccc(Cl)c1Cl,0,35.22727272727273,6.338697727272725,3.2954545454545454,7.93658810325477,161.024951357603,144.3075556136364,1.6348968452757042,6.489822727272725,4.736351858779842,7.980451227272725,234.78896758138418,28.155555555555555,6.394533333333333,3.9555555555555557,7.471604938271605,144.93271372903322,108.4736125333334,1.8753535528888898,6.57688888888889,3.212642889803383,7.863865155555551,273.5752286221534,24.948051948051948,6.326883116883115,3.7142857142857144,6.2813852813852815,154.0825049144907,95.88153824675322,1.6130011754939868,6.467561038961039,3.2529260862594205,7.887016571428574,230.31413570960262,28.571428571428573,6.362405494505494,3.7252747252747254,5.736806403473071,152.78933748926852,110.75636708791211,1.7205064880966159,6.548358241758241,3.0011096204511842,7.940956076923078,243.6264876539061,24.772727272727273,6.513254545454545,3.3454545454545452,5.583838383838383,154.51231621544645,92.95527390909089,1.5621597314799267,6.6644672727272765,3.712532734754957,8.095849145454544,223.13523568471032,23.565573770491802,6.539737704918034,2.9754098360655736,5.005464480874317,155.61734212964683,87.66307042622951,1.4950969033835413,6.678327868852459,3.631324630641571,8.143553868852457,213.65118699954482,25.40909090909091,6.43528106060606,2.462121212121212,3.937710437710438,157.83646860702524,96.68327893939397,1.4104144340661742,6.584984090909091,3.824954794862203,8.058308136363635,196.37946556792284,18.056338028169016,6.132261267605635,1.9154929577464788,1.3427230046948355,164.42269496166332,64.55000455633804,1.1705712841652816,6.278394366197184,2.8137497826464966,7.889544352112676,148.75621677486595,11.542056074766355,5.879915887850468,1.6074766355140186,0.3187954309449637,165.79761901170983,35.188665364485985,1.0913795574801495,6.0318411214953285,2.3291219568478136,7.705010186915887,123.16631881849746,14.566115702479335,0.1419927169421487,0.023660397195527115,0.6916322314049588,4.3304254667891025,1.3487720028095211,68.0418696585744,0.27040382037772476,0.14629359504132225,1.6718874585737653,0.11038609504132225,51.49440229059455,0.12984389348025632,-0.0030521108815426898,-0.012664355647489267,0.3917011019283747,1.7703726377127045,-0.13222380632039943,0.6225328666781503,-0.013771209309337746,-0.0018656152433425583,-0.08422547830776204,-0.0050324920110192805,-0.6329173045651262,2.2207792207792214,0.02203824527744982,0.0011462246078860364,0.15695100354191274,0.7844534814231786,0.15830887191576984,10.63087618794274,0.0705860909111691,0.021323878394332915,0.24614010835017203,0.012725177095631637,12.828806503178686,2.0297883934247567,-0.012493416242848047,-0.0031454749446393347,-0.019054808827536032,-0.09401373037736675,0.11164599614814558,9.563192533483566,0.03720963778653483,-0.007405633003360313,-0.10497003671807265,-0.007653632004359286,6.022411538912062,-1.3429752066115708,-0.001177985537190069,0.006637968999490219,-0.09452479338842969,-0.35673910825425975,0.014580176033917152,-6.219750566425617,-0.012544982456191811,-0.006942520661157069,-0.07848331487968602,-0.008106804132231433,-2.9960357752130946,-1.8611976696924537,-0.0417172139615228,-0.007823431338872056,-0.17430734317843108,-0.774363940782222,-0.15286020148774718,-8.50971653730016,-0.004718827113501492,-0.04202079325294681,-0.37740278919450737,-0.0329920145644222,-3.9468198723169903,1.9586776859504125,0.03584748622589532,0.004813075201250401,-0.21504820936639119,-0.4053497942386832,-0.2514213385549347,8.737505882920116,-0.04070771010658247,0.04091807851239666,0.33185504712503067,0.036094532369146004,-6.894530744453139,-0.7191246653474564,-0.014195213741124429,0.0004886504557674619,-0.1056847282039344,-1.1819690718538354,-0.07737063241463042,-3.5474481867433934,-0.03364236315866582,-0.008860496449772999,-0.20803740790185835,-0.0012395220579676388,-6.383796220304855,-5.264926237738471,-0.033097793407739245,-0.0029179309495944747,0.01886054684482886,-0.7189891933590603,-0.1046030438332234,-24.632505073612613,-0.05707238046378229,-0.04315472503282606,-0.20469492505686032,-0.026810343554491363,-13.995484297373594,,,0.4864761904761904,1.1,0.48,0.04,0.62,-0.14,1.0317054128947034,0.02345634568316271,0.030336345683162708,0.9438906910136372,0.22630574996021458,0.24680644685154654,1.9755961039083405,0.47311219681176114,1.9768596337923685,1.4630859880794023,0.08014579937623352,0.2922495012160822,0.14137834512064978,0.5137736457129656,8.706116214727285,1550.0,278.9026999999999,145.0,349.2098765432099,7085.097859734531,6349.532447000001,71.93546119213099,285.5521999999999,208.39948178631306,351.1398539999999,10330.714573580904,1267.0,287.754,178.0,336.22222222222223,6521.972117806496,4881.312564000003,84.39090988000004,295.96000000000004,144.56893004115224,353.8739319999998,12310.885287996904,1921.0,487.1699999999999,286.0,483.6666666666667,11864.352878415784,7382.8784449999985,124.20109051303699,498.0022,250.47530864197537,607.3002760000002,17734.1884496394,2600.0,578.9789,339.0,522.0493827160494,13903.829711523436,10078.829405000002,156.56609041679204,595.9005999999999,273.10097546105777,722.6270030000001,22170.010376505455,2725.0,716.458,368.0,614.2222222222222,16996.35478369911,10225.080129999998,171.83757046279194,733.0914000000004,408.37860082304525,890.5434059999998,24544.875925318134,2875.0,797.8480000000002,363.0,610.6666666666667,18985.315739816913,10694.894592,182.40182221279204,814.756,443.0216049382717,993.5135719999997,26065.44481394447,3354.0,849.4571,325.0,519.7777777777778,20834.413856127332,12762.192820000004,186.174705296735,869.2179000000001,504.89403292181083,1063.6966739999998,25922.089454965815,2564.0,870.7811000000002,272.0,190.66666666666666,23348.022684556192,9166.100647000001,166.22112235146997,891.5320000000002,399.5524691358025,1120.315298,21123.382782030963,1235.0,629.1510000000001,172.0,34.111111111111114,17740.345234252953,3765.187194,116.777612650376,645.4070000000002,249.21604938271605,824.4360899999999,13178.796113579228,640.9090909090908,6.2476795454545435,1.041057476603193,30.431818181818187,190.5387205387205,59.34596812361893,2993.8422649772738,11.897768096619888,6.436918181818179,73.56304817724568,4.8569881818181795,2265.75370078616,5.842975206611535,-0.13734498966942105,-0.569896004137017,17.62654958677686,79.6667686970717,-5.950071284417975,28.013979000516763,-0.6197044189201986,-0.08395268595041512,-3.790146523849292,-0.2264621404958676,-28.48127870543068,171.00000000000006,1.6969448863636363,0.0882592948072248,12.08522727272728,60.40291806958476,12.189783137514278,818.5774664715909,5.435129000160021,1.6419386363636344,18.952788342963245,0.9798386363636361,987.8181007447588,184.71074380165285,-1.1369008780991723,-0.28623821996217946,-1.7339876033057788,-8.555249464340374,10.159785649481247,870.2505205470045,3.3860770385746695,-0.6739126033057885,-9.55227334134461,-0.6964805123966951,548.0394500409976,-147.72727272727278,-0.1295784090909076,0.7301765899439241,-10.397727272727266,-39.24130190796857,1.6038193637308868,-684.1725623068179,-1.3799480701810993,-0.7636772727272776,-8.633164636765462,-0.8917484545454576,-329.5639352734404,-227.06611570247935,-5.089500103305782,-0.9544586233423907,-21.265495867768593,-94.47240077543108,-18.648944581505155,-1038.1854175506196,-0.5756969078471821,-5.126536776859511,-46.0431402817299,-4.025025776859508,-481.5120244226728,258.54545454545445,4.731868181818182,0.6353259265650529,-28.386363636363637,-53.506172839506185,-33.18761668925138,1153.3507765454553,-5.3734177340688865,5.401186363636359,43.804866220504046,4.764478272727272,-910.0780582678143,-102.11570247933882,-2.015720351239669,0.06938836471897959,-15.007231404958684,-167.8396082032446,-10.98662980287752,-503.7376425175619,-4.777215568530546,-1.2581904958677659,-29.541311922063887,-0.17601213223140472,-906.4990632832894,-563.3471074380163,-3.541463894628099,-0.3122186116066088,2.018078512396688,-76.93184368941945,-11.192525690154904,-2635.6780428765496,-6.106744709624705,-4.6175555785123885,-21.902356981084054,-2.868706760330576,-1497.5168198189745,0.7489300064080838,0.6366915143142348,0.4549155738574627,0.3255562517631293,0.2839181335320805,0.16961147206982088,0.17476304107925644,0.09386287888662494,0.1080219217296228,0.048193266792770216,0.06382949331540573,0.025533963541937554,0.04403360719464023,0.014546207868837384,0.027763626867469148,0.007907070666429483,17.002140322668858,5.687498856896452,3.5580157817400124,2.1824952882118596,0.4634638439775861,-0.496692020909299,3.2906717650665485,0.9771684341182372,6.0303440445148215,0.772906011818938,14.540255054909931,10.947133439240307,35.451531068399454,11.699100334209048,2.2172163751584066,0.7401360226103848,3.5042545919845765,2.2337948515740553,7.009359438055579,1.2365521383034455,3.7171658194684936,2.430086895198355,22.45752609502745,14.699724103529395,0.296810111147834,0.61138413462853,0.7831953778298846,0.8181005300280638,0.8340482630809689,0.8420221296074213,2.3992769349896816,783.2807861577598,0.0,2.0,4.0,0.0,7.0,0.0,3.0,1.0,0.0,3.7674834723043125,1.9742732145595046,0.994873579791304,0.7958988638330435,0.7049897729239518,0.6595352274694068,140.50013531642094,1269.0865104574777,44.05440946365785,28.842875237669958,60.587611365580514,,9.0,362.0,17.856516622065094,9.589074368143644,11.629515278254244,33.12637249168852,0.0,7.109797541277533,38.970312804456704,0.0,5.316788604006331,32.67560568806513,12.16190476190476,27.5,12.0,1.0,15.5,0.0,0.013523809523809618,-3.5,0.20024313585957398,0.062449895783229015,-0.13779324007634497,0.022827838827838787,0.1695531869537411,0.0,0.6372294372294374,0.8935238095238093,0.4369863013698634,0.5747795414462084,0.8706959706959705,25.792635322367584,0.5864086420790677,0.7584086420790677,23.59726727534093,5.657643749005365,6.1701611712886635,49.38990259770851,11.827804920294028,0.5444468130462589,0.33672670321065,0.0,0.4111198120595146,0.3333333333333333,0.3782043995749156,-0.8321519943439689,-0.0380284878783092,-0.018912545325999296,-0.05943942816742635,0.6217956004250842,1.3681185347119322,0.03835055958544962,0.031093603061634827,0.04560395115706441,-5.592245853283915,0.5620835303388496,0.7069531390866693,1.5773028871743116,0.6593975603684341,0.43571858658446394,1.2873043225893928,0.5665856486269377,0.9635192053604532,0.6596786937220884,0.5867730188011169,0.708293851639322,0.9312120441454809,0.5676697061803446,0.7671457033943978,1.0259944453596639,1.027632561613144,0.8398168951270207,0.9532256769257701,0.5670612746014705,0.6650892360179179,0.728416760702821,0.5259676301538476,0.7595301978734139,0.6969581050802864,0.7251118385160941,0.9093859818619812,1.349947659636174,1.381939942059434,0.9805007680073948,1.039246434656225,0.7246166753394169,0.8233045788239134,0.8698888409859642,0.7918895787440358,0.9001903746350692,0.8214689406634021,0.9569787234042555,1.1160219848896626,0.9927329261804955,1.4386855862584016,1.1806953525357837,1.042702278556404,0.9552360548639415,0.9944925956423712,1.0945168565985135,1.4263080242836919,1.1661715378422883,0.9716569880932654,0.9742117195674923,1.5523462454635693,1.5683691040312213,1.4072038100368516,1.333810425290919,1.1287653453143194,0.9700856990654921,0.953914171780185,1.4507785184109707,1.7191380996417804,1.521994629923231,0.9774134215389506,0.778421985815603,0.8343195176584954,0.9706205379641875,1.2524271844660193,1.0985448449863542,1.2153811259779235,0.7838006818751763,1.0939576731541816,0.7660764750494661,0.9039053130678864,0.7361850390075257,1.0631598226060504,1.1897053241434425,1.1731751735800664,0.9284341453835498,0.9104860680137584,1.2526170867461945,0.9643069824499938,1.1902878393953975,1.1272463036320268,1.1527135075554782,1.1884051486356964,1.1031187066057657,1.1168451283507062,1.6584940677404392,1.1435462123808462,0.7837911719569484,0.6074556964675828,1.0385857116197343,0.9193505299314418,1.656297601825038,1.275032059702489,1.2955934402768798,0.9898741352838836,1.2336163403507336,1.3209945780372367,5.0,0.0,3.555555555555557,2.875,2.3288888888888892,1.8055555555555556,0.980408163265306,0.4409722222222222,0.10254472159234063,0.015625,5925.292412903991,6475.692411260395,2411.525227926575,2220.5022148578178,12.673351070661914,0.4504540301315788,6.964589005609896,0.8196839842887608,1.0,0.3333333333333333,1.691948146332985,3.4851584040777928,4.464558038845993,4.663532754804254,4.7544418457133455,4.7998963911678905,0.1923076923076923,0.0,0.09609609609609614,0.06388888888888888,0.047528344671201816,0.036111111111111115,0.020008329862557267,0.014699074074074073,0.009322247417485512,0.005208333333333333,0.48517011776244046,21.301775147928993,9.273922571219869,4.465974625144176,156.13220057083126,1.0,4.123561482739637,107.81545456131857,,87.09113122748855,88.30045436271246,90.17366862739398,87.0533194899721,117.5425207284855,88.63248563843077,88.87622876212635,103.63334351085004,0.008914105594956605,-0.021494841054321073,-0.5352554119371844,0.5663430420711975,0.4088218701118506,-0.09803273351239081,0.009149261620851138,-0.05092830896435141,-0.01275254219308504,-0.050377480778288845,-0.045589908847988525,-0.012290992348904854,0.15246200607902743,0.15520687083147186,0.048444859078812276,0.22692841139443093,0.18114928600880192,0.11737259639583936,0.15624021269972663,0.2610395474907419,0.14576084748146184,0.1472228929572487,0.1152788047341294,0.2491301176928481,0.13935001169043723,-0.08798631726962565,-0.13294260948560796,-0.027550492823084208,-0.021710044682301272,0.08277603324771315,0.1405486442608128,0.13760766299291557,-0.05062171724789804,-0.06278534848728352,-0.06933510965755427,0.11695274187136366,-0.09219858156028375,-0.008296098296858486,0.28055188358144284,-0.13666915608663172,-0.08237969016905226,0.010809963436033911,-0.09141063579874492,-0.04639351041219697,-0.047456080761403646,-0.04694294133089417,-0.07344044672652572,-0.058181775920143466,-0.12777584001860254,-0.2937982655724477,-0.3306551142916163,-0.2520231638487248,-0.17881936699314505,-0.1133328695801337,-0.12506588340386374,-0.017451037144777776,-0.28723604229616184,-0.22573456560075986,-0.2988783555761427,-0.07664560994502263,0.13446808510638295,0.2524600345558601,0.2034232629940925,-0.3109285536470002,-0.09360507353085552,-0.1864075900383598,0.1284136653910868,-0.1505441382067688,0.27969835932214876,0.19849125933878695,0.32698441190110283,-0.13388893622933506,-0.049369693337328935,-0.09997142139978844,0.020652673398899618,-0.1528048049311553,-0.27294525235882533,-0.05736375922206698,-0.05213625381759856,-0.1244152657002815,-0.06056653708776693,-0.12443266251864137,-0.01122896916956463,-0.12397068295461806,-0.36145025518658447,-0.233095007409599,-0.1233255268489785,0.027269618141589742,-0.16603199821198447,-0.07755428168388208,-0.3620198151111285,-0.21106351376270638,-0.2949871115043453,-0.12243343534108399,-0.2428779054504564,-0.271786518045086,2.0273234235234026,10.98620892288596,18.783025274994763,20.819363207878467,38.38087987184538,42.42761593943284,44.69400063493695,45.96718245311878,46.51313699857332,49.42149084480921,36.57714970198506,2.003644984405838,7.306237530402055,3.5344586280162447,12.844341142824138,4470.8529341508765,2807.7913129961194,2415.7824425032004,57.0,37.0,51.0,69.0,88.0,99.0,93.0,86.0,77.0,383.0691134480005,26.0,4.844187086458591,5.713732805509369,6.621405651764134,7.522400231387125,8.443115988019922,9.354180941951856,10.279283518982245,11.194247958815929,12.120770715693752,0.7575757575757573,0.995727272727273,1.1221995881750286,0.7270853989903194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6994701551442571,0.987700534759358,1.0216182215453886,0.6578689978350573,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,4.0,2.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,14.790514511606428,0.0,0.0,0.0,0.0,0.0,9.589074368143644,0.0,0.0,35.33461391738825,32.40103015923048,11.394078626111666,40.82606123957303,218.14322164381485,-479.97410169619525,-21.93432141281558,-10.908502311277166,-34.28386440687109,358.6433569602358,789.1124087612826,22.12008805084227,17.93437292639279,26.30374695870942,0.4444444444444444,0.9196419313084554,0.21160127587035862,10.301483685490208,0.1528177205283148,39.88305295685759,0.0803580686915445,5.0,0.15384615384615385,0.30991287454852384,0.6383738541902841,0.8177697516358617,0.8542158013086893,0.8708675513917471,0.8791934264332758,3.9643000000000033,,2.436974789915966,1.5617404430033197,1.1811081541617314,2.461932029432675,-4.379468967281546,1.5821438808236374,1.5538105393115786,-1.7487252810003127,96.38770000000002,19.06280027574374,0.0,5.316788604006331,0.0,26.689117645233267,13.716679505790452,56.34810701081467,0.0,0.0,3.970291913552122,0.0,5.303304908059076,0.0,6.853299093186078,0.0,8.514188682395938,0.0,10.236847809109337,33.33333333333332,5.087606922398589,0.0,0.0,0.0,0.0,0.0,1.1510352366255157,0.0,43.81200000000001,0.0,24.99981961766188,0.0,0.0,0.0,0.0,0.0,0.683526077097508,49.376781879701255,5.316788604006331,0.0,0.0,25.65529008169415,19.06280027574374,0.0,32.25256913693026,40.73938889163503,10.045266627482652,0.0,0.0,31.991757555574054,30.776686826347316,30.659403334118906,215.63090912263723,,173.9873044717838,176.47596948998464,180.252848602455,173.90968441758957,236.24931204574966,177.13839976639565,177.6281526811078,207.68638108914018,30.659403334118906,215.63090912263723,,171.77435292224322,175.0893524326657,179.24170255796162,171.67365925632743,239.46451042425258,175.72014277742568,176.2265787799547,209.01541230270044,5.033470415131587,139.26476817849044,,114.55161983352787,115.85629714889936,118.0656279392115,114.51244508249096,153.32803057466867,116.21615967840177,116.47339169339914,134.39811474966086,1.2263761333647563,8.62523636490549,,6.959492178871352,7.059038779599385,7.2101139440982,6.956387376703583,9.449972481829986,7.085535990655826,7.1051261072443115,8.307455243565608,2.5167352075657936,107.81545456131857,,87.09113122748855,88.30045436271246,90.17366862739398,87.0533194899721,117.5425207284855,88.63248563843077,88.87622876212635,103.63334351085004,43.45882352941175,0.0,6.486703217295148,12.523859179474258,0.0,0.0,0.0,44.9512017479971,0.2101838291901128,3.0492573696145127,10.100647439531368,0.0,-0.7370833333333338,0.0,0.0,0.0,0.0,28.94623590474252,530.4371231002254,74.44571843865134,153.3469697794229,196.4405537092237,205.19544121138716,209.1954412113872,211.1954412113872,708.0,127.0933248985829,46.34945550382525,59.87793240630255,64.63,64.63,0.8,8.094092231856722,5.700439718141092,4.226771612792471,4.917572709451185,,4.919177233740692,4.918325452517577,4.912149157767206,4.919129440981164,4.853289190222858,4.91794426351137,4.917852061569466,4.887774062841824,0.16907086451169884,0.19670290837804738,,0.1967670893496277,0.19673301810070307,0.19648596631068824,0.19676517763924659,0.1941315676089143,0.1967177705404548,0.19671408246277863,0.19551096251367295,2.3577292214319105,2.5091057889027977,,2.509432019479564,2.5092588492650476,2.508002288252911,2.5094223038321246,2.4959473905121072,2.5091813424423592,2.5091625942009643,2.503027729852274,270.6000000000001,186.3850140929833,144.90182466354798,,143.46754628749622,144.0949454432263,144.67812543565222,143.4528596864844,149.4353726603489,144.07986989155023,144.07925672990234,146.91679801296516,7.455400563719333,5.796072986541919,,5.738701851499849,5.763797817729052,5.787125017426089,5.738114387459376,5.977414906413956,5.7631947956620095,5.7631702691960935,5.876671920518606,6.144105234396804,5.892347173692576,,5.882399583220904,5.8867631575345625,5.8908021822502015,5.882297209177659,5.92315474134335,5.886658529712229,5.886654273996611,5.9061571585026735,10.100647439531368,24.99981961766188,3.6606447100445125,2.3039277840765946,-1.8178371441169048,5.087606922398589,0.0,5.410709421628734,1.286177624856527,342.39586691099146,125.82208245760108,-276.8426199359012,-12.651422201699468,-6.291877725815936,-19.77447285256437,206.86067480016567,455.1494463834214,12.758569905265658,10.344305599623214,15.171648212780712,1300.0,45.0,1.8403774885287425,0.938573112668231,0.0,0.0,0.6483548593838729,0.2931767652685373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11340230290662862,0.04209845712841021,0.3446557360110151,0.1315910471405023,18.723250160202095,15.91728785785587,11.82780492029403,8.464462545841362,10.50497094068698,6.2756244665833725,8.912915095042079,4.7870068232178715,7.4535125993439735,3.325335408701145,5.616995411755704,2.2469887916905047,4.359327112269383,1.440074579014901,2.582017298674631,0.7353575719779419,4.760016863350428,2.2917426320872267,8.259257070421688,3.215692336085072,13.648868965592616,4.6266317067362825,84.73678328148526,45.320155405076385,35.546126494098786,31.50917691085677,29.30772042626939,28.36423907573195,126.0,151.0,51.397066999999986,25.858932999999993,0.2727272727272727,76.07,10.86111111111111,5.749999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,44.0,0.0,0.0,45.0,6.0,4.0,7.0,38.0,10.0,26.0,35.0,0.0,0.0,0.0,18.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,5.0,1.0,1.0,25.0,7.0,0.0,1.0,4.0,0.0,2.0,4.0,0.0,0.0,2.0,0.0,1.0,3.5263605246161616,6.433643221691859,4.102643365036796,4.632298853376344,5.140932295044114,5.612899978179028,5.877385580410275,6.043671486494801,6.294227639650359,6.5144348745073595 +91610,COc1ccc2c(c1)C(=O)N(CCc1ccc(S(=O)(=O)NC(=O)NC3CCCCC3)cc1)C(=O)C2(C)C,1,25.6,6.231404285714285,3.3,7.434920634920635,162.56411202393312,101.15573045714288,1.512453569428814,6.295289999999999,5.545250342935527,7.78231852857143,215.51120473814916,28.164383561643834,6.311353424657534,4.013698630136986,6.08675799086758,145.34251030030828,107.40277030136987,1.8645564138356163,6.471138356164384,2.815427870793168,7.776510794520545,265.21791008616754,22.225563909774436,6.275675939849625,3.5714285714285716,5.659147869674186,153.82040415849,83.1929614736842,1.5847882018464967,6.381848120300751,3.405342058850831,7.77168305263158,220.49442835644405,19.119565217391305,6.128906521739131,3.0217391304347827,4.057971014492753,156.20558245092462,69.8098641141304,1.4055564690313698,6.230483152173912,3.0495672302737513,7.684618652173911,191.9401143897528,16.427884615384617,6.23769230769231,2.5961538461538463,3.8205128205128203,162.48251006223776,58.32996300961539,1.2171076095711975,6.299516826923078,3.8699919871794886,7.8193825961538455,164.7733486247633,15.742105263157894,6.142931578947372,2.5473684210526315,3.4157894736842107,162.2730072749184,55.66066764210524,1.204947310420842,6.2089115789473714,3.289571150097467,7.7386454631578925,160.40991096367006,16.658823529411766,6.165788235294118,2.6058823529411765,3.2058823529411766,162.42243570856024,59.195511,1.2267007096518179,6.2358441176470585,3.3002450980392175,7.791699141176473,163.8582428999614,17.444444444444443,6.410881045751637,2.7320261437908497,3.1808278867102397,161.2781486636216,61.201324320261456,1.3004360009978952,6.474606535947712,3.674261679980636,8.02260888888889,178.21314420886455,15.871621621621621,6.139958783783784,2.5945945945945947,2.8738738738738743,155.81996453992397,54.82654614864864,1.363992442879649,6.231150675675674,3.192984651317985,7.716751486486484,178.1680291981689,9.6,0.14108540816326529,0.018196034023743833,0.6940816326530612,4.160544217687074,1.4745903081710086,44.33945525387756,0.26743854170298553,0.131419775510204,2.344180314100949,0.09033324673469385,50.52913595040551,1.7534246575342465,-0.004887873916689847,-0.012171252871879331,0.22881464914733013,0.9662659584381704,-0.18310466062835296,7.623392317159613,-0.01510588060578766,3.3453452614043155e-05,-0.24871622367871565,0.0030948423064019906,1.0597423688031236,1.0225563909774436,0.03691452738990338,0.004459682582490541,-0.024908700322234172,0.842821339061941,0.20223685468105201,4.751930030332965,0.024312107797080207,0.03171832330827074,0.41886083153209286,0.022639918571428552,3.5481444708747443,0.29347826086956524,-0.004312450088731123,-0.0025780597268576177,-0.07498225377107363,0.01557724539091,-0.23111724663265834,1.2501168872715116,-0.029407440676380715,-0.001542205634427664,-0.03435841958450938,-0.0034631380390417045,-2.5409849098934356,-0.4375,0.0027258143642073006,1.9630537901804075e-05,-0.03659536891679748,-0.04171027385313096,-0.04484233607544788,-2.0012024799764534,-0.010108613637398088,0.0017130335557300352,0.21375553434415862,0.0019420743504709316,-2.1264027442861395,-0.15263157894736842,-0.008100295381310383,0.0014695717863230833,-0.012427497314715355,-0.15427855352667372,-0.07489660831864095,-0.7600505835016107,-0.005777520983181984,-0.007076978517722857,-0.1963633952606382,-0.0057391210204081715,-2.1309748535532975,-0.4470588235294118,-0.016546458583433316,-0.00032867942319086236,-0.03937575030012006,-0.34271041750033343,0.0003207944340064498,-1.7176835537094866,0.00019720403623851496,-0.013272918367346911,-0.24133763793583268,-0.01495052312124852,2.8168002939502927,-2.581699346405229,-0.047127807789782344,-0.0007297540625767343,-0.07466053087901828,-1.4373156670075438,0.2440328958070453,-11.590001026986807,0.018125713477209177,-0.0455969370414831,-0.5347562792835467,-0.028555111067093585,0.3639179207519389,-2.641891891891892,-0.021465823221180326,0.0015106953450556243,0.019528405956977392,-0.8412391983820555,-0.10161160842241668,-12.460629095962497,-0.040489186005337206,-0.02492506508549359,-0.43873394511291314,-0.010706022410369553,-13.814284320589024,,,0.4738738738738739,1.1689189189189189,0.5405405405405406,0.013513513513513514,0.6283783783783784,-0.08783783783783784,1.0497305866936288,0.02405868104013013,0.03335597833742743,1.0681654356844805,0.21158348337193306,0.2620392832196421,2.117896022378109,0.47362276659157515,2.020408232435247,1.5025929328723324,0.16797841108019568,0.2895396774902368,0.0,0.5178152995629147,7.531557239657155,1792.0,436.1982999999999,231.0,520.4444444444445,11379.487841675318,7080.901132000002,105.87174986001698,440.67029999999994,388.16752400548694,544.7622970000001,15085.784331670442,2056.0,460.7288,293.0,444.33333333333337,10610.003251922504,7840.402232,136.11261821,472.3931,205.52623456790127,567.6852879999998,19360.90743629023,2956.0,834.6649000000002,475.0,752.6666666666667,20458.113753079168,11064.663875999999,210.77683084558407,848.7857999999999,452.9104938271605,1033.6338460000002,29325.758971407056,3518.0,1127.7188,556.0,746.6666666666666,28741.82717097013,12845.014996999995,258.62239030177204,1146.4089,561.1203703703702,1413.9698319999995,35316.981047714515,3417.0,1297.4400000000005,540.0,794.6666666666666,33796.362092945456,12132.632306000001,253.15838279080907,1310.2995000000003,804.9583333333336,1626.43158,34272.85651395076,2991.0,1167.1570000000006,484.0,649.0,30831.871382234498,10575.526851999995,228.93998897995996,1179.6932000000006,625.0185185185187,1470.3426379999996,30477.88308309731,2832.0,1048.184,443.0,545.0,27611.814070455242,10063.23687,208.53912064080905,1060.0935,561.041666666667,1324.5888540000003,27855.901292993436,2669.0,980.8648000000004,418.0,486.6666666666667,24675.556745534108,9363.802621000003,198.96670815267797,990.6147999999998,562.1620370370373,1227.45916,27266.611063956276,2349.0,908.7139,384.0,425.33333333333337,23061.354751908748,8114.328829999999,201.87088154618806,922.2102999999997,472.5617283950618,1142.0792199999996,26368.868321329,672.0,9.87597857142857,1.2737223816620684,48.58571428571428,291.2380952380952,103.2213215719706,3103.761867771429,18.720697919208988,9.199384285714281,164.09262198706642,6.32332727142857,3537.039516528386,128.0,-0.35681479591835885,-0.8885014596471912,16.7034693877551,70.53741496598644,-13.366640225869766,556.5076391526518,-1.1027292842224992,0.0024421020408251504,-18.156284328546242,0.22592348836734533,77.36119292262802,136.0,4.90963214285715,0.5931377834712419,-3.312857142857145,112.09523809523816,26.897501672579917,632.0066940342844,3.2335103370116673,4.218537000000008,55.70849059376835,3.0111091699999974,471.90321462634097,54.0,-0.7934908163265266,-0.4743629897418017,-13.79673469387755,2.86621315192744,-42.525573380409135,230.02150725795815,-5.4109690844540514,-0.2837658367346902,-6.3219492035497264,-0.6372173991836736,-467.54122342039216,-91.0,0.5669693877551185,0.004083151883575248,-7.611836734693877,-8.67573696145124,-9.327205903693159,-416.2501158351023,-2.1025916365788024,0.3563109795918473,44.46115114358499,0.40395146489795375,-442.291770811517,-29.0,-1.5390561224489727,0.2792186394013858,-2.3612244897959176,-29.312925170068006,-14.230355580541781,-144.40961086530604,-1.097728986804577,-1.3446259183673428,-37.309045099521256,-1.0904329938775525,-404.8852221751265,-76.0,-2.8128979591836636,-0.0558755019424466,-6.69387755102041,-58.26077097505669,0.054535053781096465,-292.00620413061273,0.033524686160547545,-2.256396122448975,-41.02739844909156,-2.5415889306122486,478.85604997154974,-395.0,-7.210554591836699,-0.11165237157424035,-11.423061224489796,-219.9092970521542,37.33703305847793,-1773.2701571289813,2.773234162013004,-6.976331367346914,-81.81771073038266,-4.368931993265319,55.67944187504665,-391.0,-3.176941836734688,0.2235829110682324,2.890204081632654,-124.50340136054422,-15.038518046517668,-1844.1731062024496,-5.992399528789907,-3.6889096326530515,-64.93262387671115,-1.584491316734694,-2044.5140794471756,0.7241707560018259,0.5997296711215558,0.43810105909720704,0.3495264321793573,0.2851407188327222,0.19980855194421776,0.18055752757982388,0.11074725076142573,0.11492665776428722,0.06082224768310031,0.07030312965305338,0.03408730642250728,0.04515590700225569,0.01867356933063301,0.02990161898439923,0.011074540547500344,16.013124332635634,5.684385420103052,3.5814825676797355,2.183294781752543,0.47178933671655904,-0.5292957924280823,4.0440155732595,0.9711664138262789,6.025955735566032,0.6442267898838407,14.54554161944075,10.319763873498244,32.066544702365704,11.69603839543033,2.9545967840327303,0.7499016240948234,3.53745090757568,2.233031650834099,7.015577319077184,0.2989357526577727,3.768608583972066,2.429017657836293,24.441834897492342,14.700731867476296,0.2546319559351056,0.5706475387236563,0.7579623059161523,0.8297356903377835,0.8465187273752618,0.8465187273752618,1.24946490579866,1297.9215968489532,0.0,2.0,3.0,0.0,9.0,7.0,3.0,0.0,1.0,4.501594728624757,2.4815228128959212,1.2841473630275813,0.8253491072973906,0.7180666072355768,0.7180666072355768,221.1125785696504,2643.8964270490146,79.82006524056726,37.769948957843056,75.32195676715105,,20.0,1224.0,21.469396135142436,22.8014085365444,29.296440169281322,23.297236439603907,37.667559606327046,24.14244140905123,44.179309741689295,0.0,10.038883468458419,4.736862953800049,17.533333333333335,43.25,20.0,0.5,23.25,0.0,0.02612612612612608,-3.25,0.15714285714285692,0.043623693379791106,-0.11351916376306581,0.028921228921228948,0.1655119916579767,0.0,0.5980952380952366,0.8639639639639636,0.44095238095237965,0.5544715447154455,0.8350427350427346,38.84003170766427,0.8901711984848149,1.2341711984848147,39.52212112032578,7.828588884761523,9.695453479126758,78.36215282799004,17.52404236388828,0.5484880083420233,0.18060836501901137,0.07604562737642585,0.279467680608365,0.4444444444444444,0.3661895724148987,-1.1718092341017006,-0.06058179354350686,-0.01674013191573858,-0.04506958592698848,0.6338104275851013,2.02819787252891,0.03602742813717245,0.028974255321841565,0.04609540619383886,-6.702719180822911,0.8312744618395304,0.6652103765862294,1.7145878123688985,0.962992351161826,0.5405516184810558,1.3863351629315397,0.8280628799693162,1.283632005229134,0.6319686646602914,0.6232398499693251,0.5873674913987541,1.0398871093456463,0.8071462137486574,0.5530983643269307,0.8100447278379914,1.3614416812392642,0.725405321675674,0.9978106393611184,0.8080690845472936,0.9487945492789076,0.5717694689455801,0.48877921643814326,0.548374252322743,0.9382423563120825,0.9302455357142857,0.8702384465336886,1.182801669577601,1.2349309026756836,0.9343729561805104,1.225941443812197,0.9316808512161459,1.1472460545767702,0.8551897067955947,0.81712834034581,0.8655408996035584,1.0586258248770564,1.0151850103021975,1.103343097562567,1.0786698186510995,1.0412308031574424,1.0740479731599337,1.0319944410442068,1.0165759599102273,0.9735008118423943,1.09604150212657,1.1092628213510733,1.1040153890708388,0.9921007786249405,0.9600446428571427,1.11434116569699,0.9852876969280738,0.9866447948745727,1.0797158445492412,1.0312521328724988,0.965911614607169,0.9513302781881082,1.1045910305324373,1.2023980162990489,1.119661506187167,1.0048947058318072,1.234860819327731,1.256937274463898,1.155786884681726,1.140313402632444,1.169964509675682,0.9940117184969199,1.207649926696339,1.095262544046825,1.2294028665948447,1.3532004984503536,1.3279010737700454,0.9243006166769356,1.4676995798319328,1.7356572416105072,1.3247155831270438,1.2484505710546496,1.5533113616059027,0.8409031209437037,1.4384790504556042,1.0222192304318143,1.7093129259755997,1.7198553642926875,1.7944504659591893,0.9393394581073735,1.2089014237451736,1.0954617829865994,0.6991377158011269,0.86841509254035,1.1446665149452921,1.0844836804487432,1.216521240873373,1.1699361068871672,1.1288356829890742,1.2546334275687323,1.088677153171795,1.2766104483539136,10.0,0.301295786144271,5.77777777777778,3.8125,2.8844444444444446,1.7916666666666665,1.1567346938775511,0.6788194444444444,0.38599143361048116,0.3506250000000001,7973.490678371568,8949.183579767343,3859.4486970172416,3525.1655390347287,21.992361479861245,0.47921629440629293,11.453263506238443,0.9201829651332385,0.0,0.4444444444444444,1.6276882883202093,3.647760204049045,4.845135653917385,5.303933909647576,5.4112164097093896,5.4112164097093896,0.25,0.008608451032693457,0.09792843691148778,0.058653846153846154,0.04807407407407408,0.03513071895424837,0.02360683048729696,0.014442966903073286,0.009649785840262028,0.010017857142857143,0.5561129674998393,29.97,12.668773340993967,7.019058863214707,217.16941219392436,0.0,4.537739449191136,281.2491468506853,,215.03563978462452,231.0865998888423,230.5919110224337,215.0606991634206,291.27615740679846,232.51302674814343,232.63140413811493,277.5839439833264,0.182648401826484,-0.034644787014639786,-0.6688959174288847,0.32966532808642096,0.23224508811381797,-0.12417324297720683,0.17193247579407134,-0.056483558837843555,0.00025455417561146026,-0.10609944217286224,0.03426027977818016,0.020972897099274836,0.10651629072681705,0.26164667112268314,0.24509091248516807,-0.03588727773565053,0.20257478227943976,0.13714782577941542,0.1071715925043396,0.09090727029195732,0.24135122119279523,0.17868114880605349,0.2506266451146314,0.07021977328797505,0.030570652173913044,-0.030566237464761184,-0.14168250749001302,-0.10803088605653068,0.0037440403408498537,-0.1567331925023446,0.02819423197947807,-0.109959620962338,-0.01173495867300367,-0.01465690133895979,-0.03833735821776495,-0.05028751950928707,-0.045572916666666664,0.019320313841761468,0.0010788360736294718,-0.0527248772985321,-0.010025196625916045,-0.030410030384010567,-0.04513367312516643,-0.037797893949872825,0.013034823329134568,0.0911856195781335,0.021498998659649066,-0.04208270543896119,-0.015899122807017545,-0.057414125860107725,0.08076330173956879,-0.017904950556337913,-0.03708133971291864,-0.05079146926683528,-0.017141631063118282,-0.021603172625725874,-0.05385017962668312,-0.08376633575474267,-0.06353276592906933,-0.042173190051079744,-0.04656862745098039,-0.117279730050365,-0.01806324514242893,-0.05673071933860285,-0.08237153592633914,0.0002175481774353607,-0.038739392350998096,0.0007373807641290825,-0.1009963555014317,-0.10295182349417162,-0.16550410465327095,0.055746060979847155,-0.2689270152505447,-0.3340374345109143,-0.040105116401985455,-0.10756736292478376,-0.3454633797418394,0.1654919976449111,-0.2613924993129734,0.06777524795711534,-0.3469564368411416,-0.22812079602700655,-0.3161085436346501,0.0072021401891598814,-0.2751970720720721,-0.15214772031094728,0.08302333041828412,0.028135603995645173,-0.20219450974846662,-0.06890836584193306,-0.28102801499512775,-0.15139622639097425,-0.18965992742514082,-0.1871587874336273,-0.11851696686838714,-0.27339245092470577,15.116955993770816,22.75318272997017,6.88037778268742,17.279117158534522,36.71051932992853,42.78779733983374,43.99766636998555,44.105807130047864,44.105807130047864,74.75510460010413,55.5959385162763,6.2152012099672405,10.712968067138762,0.0,19.159166083827845,20126.015523751696,19316.33206206826,2530.857201336552,171.0,59.0,77.0,97.0,121.0,133.0,141.0,142.0,162.0,527.2090067760008,40.0,5.293304824724492,6.154858094016418,7.0587581525186645,7.939871576361883,8.849513965486398,9.73996812270477,10.653747312552309,11.550616162091854,12.467655835807854,0.6666666666666665,0.9871428571428567,1.1271551113203027,0.6275628293112266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6681451582549188,0.9736134453781513,1.009993757153262,0.6241414119973253,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,7.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,10.05365155780638,5.749511833283905,0.0,5.907179729351506,15.930470882759089,14.48898409899412,17.934429032852847,0.0,0.0,37.46156607416286,68.50231052539971,18.150048726757532,17.42027148619209,302.55161000244505,-968.1673021303571,-50.05363493162646,-13.830961459005103,-37.23720392809066,523.6641885720954,1675.7291249186574,29.766430308940805,23.938987498837957,38.08475283906039,0.5,0.7775696554745973,0.15523152584309044,126.11062313151564,0.1026278629730949,55.70478301355041,0.2224303445254028,10.0,0.175,0.2655593295040081,0.595136526403574,0.790489791468686,0.8653432864797339,0.8828465572155152,0.8828465572155152,3.518500000000002,,2.553571428571429,2.246698807680278,1.6276533763729586,2.548452712471663,-7.624173109545884,2.0475061199510405,1.9831138848095056,-3.1943618779069722,137.9356999999999,27.53827149034445,0.0,14.938793199308897,0.0,68.72471891099983,13.65455394719011,59.15492395432226,0.0,5.749511833283905,4.394449154672439,0.0,5.75890177387728,0.0,7.323170717943469,0.0,8.980801413573113,0.0,10.692649210279308,46.66666666666666,11.20337271129879,0.0,0.0,0.0,0.0,0.0,2.342508287728599,0.0,69.09999999999997,0.0,63.83832165649867,0.0,0.0,-4.028055785488974,0.0,0.0,-1.3974348508944796,78.90085779242119,14.775746422258468,4.794537184071822,5.749511833283905,50.85957546255857,26.653640429802195,0.0,67.4364741731741,47.360052954749044,0.0,0.0,0.0,43.92939805178587,46.770161077844314,46.62377003853283,562.4982937013706,,430.71804013318683,462.0517565988911,461.09584078127966,430.76906319427655,585.7930514999958,464.915377489803,465.155612931105,556.3765654339691,46.62377003853283,562.4982937013704,,428.44053048067724,459.9265009700043,459.55616866849465,428.49611888315314,590.1764879231425,462.97854737633577,463.2796943914203,558.3622498445599,5.089109107887901,436.1098325894062,,333.1669502288331,360.28207735672913,359.0108195461489,333.2025816208111,447.95901484676494,362.2645632808475,362.2506332208285,430.5717377869062,1.2601018929333199,15.20265658652353,,11.641028111707753,12.487885313483542,12.462049750845397,11.642407113358825,15.832244635135023,12.565280472697378,12.571773322462297,15.037204471188353,2.544554553943951,281.2491468506853,,215.03563978462452,231.0865998888423,230.5919110224337,215.0606991634206,291.27615740679846,232.51302674814343,232.63140413811493,277.5839439833264,68.15294117647059,0.0,5.0972063684143345,0.0,0.0,0.0,0.0,70.69956300072835,5.359090166068388,4.812215672464015,5.253767410412626,0.0,-0.009662866676335202,1.239664829917234,-0.8776602664095323,0.0,0.0,43.68989883981277,642.4403338452747,113.93818018241465,255.34321428343316,339.15949577421696,371.2753736753303,378.78514867965725,378.78514867965725,1180.0,156.7082940462646,183.77546472926585,74.1499722703456,130.26,121.88,1.0,8.42345926866578,6.321928094887363,4.003331929052883,5.993234968742248,,5.979857565968203,5.986542273365913,5.98651468015204,5.979846376116315,5.967609582382837,5.985992360681222,5.985336365744324,5.9780109993547885,0.1081981602446725,0.16197932347952024,,0.16161777205319466,0.16179843982070036,0.16179769405816324,0.16161746962476528,0.1612867454698064,0.16178357731570872,0.16176584772281957,0.16156786484742672,2.695459816296102,3.0989641475564182,,3.0967295689290903,3.0978468152492544,3.0978422060314115,3.096727697670079,3.0946792619102195,3.097754952882281,3.097645358541912,3.096420723482596,390.66000000000145,8262.070815023682,259.19019608451714,,259.10060417821035,258.54501922170766,258.8520694917405,259.1027042810085,261.79535920349656,258.6306791633094,258.6854070424988,260.1406672327692,223.2992112168563,7.0051404347166795,,7.002719031843523,6.9877032222083155,6.996001878155149,7.002775791378609,7.07555024874315,6.99001835576512,6.991497487635103,7.030828844128897,10.327763358742232,6.865894959664957,,6.865549239049606,6.863402654031885,6.864589557912008,6.86555734437338,6.875895946473433,6.863733914540268,6.863945498447488,6.869555332181267,32.62591650661434,39.74308603982271,2.7354532926973483,0.967297782365748,-0.13595070121260444,10.469289664052054,5.214360552064333,3.722417820906371,-2.508537623976955,484.83476164766273,249.97292006818307,-799.9151206833915,-41.35510395659227,-11.42735886690559,-30.76596618013044,432.65962574598257,1384.5138771392844,24.593494988414932,19.778769673418346,31.466224480438278,5028.0,65.0,3.7556789693331307,2.1041910077301313,0.3707908118985982,0.1760310363079829,1.2348011070517155,0.4192630358893528,0.26632849922488055,0.07591651048972782,0.0,0.0,0.0,0.0,0.0,0.0,0.2855118026482555,0.16787153646935163,0.4905193803485196,0.20395205557630747,26.79431797206756,22.189997831497564,17.52404236388828,13.981057287174291,16.82330241113061,11.788704564708848,13.902929623646438,8.527538308629781,11.14788580313586,5.89975802526073,8.50667868801946,4.124564077123381,6.0057356313000065,2.4835847209741906,4.2161282768002915,1.5615102171975486,8.06616814453473,3.7308093331363965,12.470840239174048,4.7346516078986065,18.8548561610357,5.996034566140531,122.83107172273805,57.69220653817575,36.21640487013326,31.448568178438464,30.744733260166356,30.744733260166356,198.0,235.0,78.10616899999998,46.95183100000004,0.4,268.1,13.48611111111111,7.986111111111112,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,12.0,12.0,70.0,0.0,0.0,73.0,12.0,5.0,11.0,62.0,17.0,40.0,56.0,0.0,0.0,0.0,27.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,6.0,2.0,1.0,37.0,10.0,0.0,3.0,6.0,0.0,4.0,7.0,1.0,0.0,0.0,0.0,2.0,3.9512437185814275,6.963515145866599,4.532599493153256,5.0072963928307415,5.485833740219095,5.938854596835685,6.1771658029463214,6.404246571179003,6.43022338331561,6.740149906023863 +2732,NS(=O)(=O)c1cc(C2(O)NC(=O)c3ccccc32)ccc1Cl,0,42.84848484848485,6.744009090909092,4.090909090909091,10.122708567153012,159.06029276890115,173.68741212121213,1.8815320591920912,6.870745454545456,8.011970990194584,8.306058727272728,264.3665897791327,38.77142857142857,6.594508571428572,4.857142857142857,7.993650793650794,145.18000191255288,151.82236094285716,2.1440392873142855,6.791945714285714,3.259273956496179,8.101850799999998,308.8801516724061,33.56896551724138,6.725965517241379,4.5344827586206895,9.46743295019157,147.06045138058465,130.42429975862066,1.9690374064629137,6.886517241379311,5.3724811976727675,8.180512,285.9606967371291,30.128205128205128,6.56363076923077,3.6923076923076925,6.767331433998101,151.67912630919892,115.5360403974359,1.7274490772486668,6.718965384615385,4.199916757529927,8.120667935897435,244.48260901174652,27.734939759036145,6.683410843373493,3.180722891566265,5.896921017402946,157.1502463297555,104.76686827710841,1.5246932878963373,6.8289313253012045,4.724636199117457,8.273733493975904,218.1530972982334,21.911392405063292,6.36907341772152,2.911392405063291,4.592123769338959,159.17323731983228,80.27018098734177,1.3900450629283416,6.480448101265822,3.7604508516955777,7.992692556962026,190.83262976330727,26.833333333333332,6.615803030303031,2.878787878787879,5.430976430976431,160.7638656842114,101.52032178787879,1.4453555632498487,6.720816666666667,5.299694475620401,8.234505636363638,195.9154720834862,26.4,6.549018181818182,2.4545454545454546,4.555555555555555,162.44288445151005,98.65511367272728,1.427758937287127,6.687912727272728,4.141040029928919,8.250047927272727,192.28639892709643,27.641025641025642,6.675282051282052,2.128205128205128,5.213675213675214,164.3948966663062,104.54598502564103,1.3023419246356924,6.8036589743589735,6.780626780626781,8.387005538461539,175.7688093443667,15.046831955922864,0.17022387511478415,0.0236379327218319,0.8943985307621671,4.180276389030597,1.5995373873743037,68.30661079522497,0.32261159765423136,0.161075665748393,3.328058105965784,0.12437859504132226,47.15460757746734,1.4925619834710744,-0.033063875114784196,-0.017122612110900215,0.18698675062311426,-0.23359262012460716,0.23362391496102441,6.3468216142988325,0.009529001968397134,-0.024946921159648416,-0.9080378630374476,-0.006403426210153483,6.655575508472134,-0.7202906811057278,0.05214111966055538,0.007379706592143532,-0.037031759602292505,0.7742626153168352,0.0650328435719698,-2.978391980177953,-0.012907124324262777,0.04175651815965295,0.8557467169348721,0.02971303505272157,-1.699978974150353,0.26785335876244976,-0.026440541781450867,-0.003633245627247635,-0.17101080737444369,-0.5031825637886246,-0.28811714714772674,0.9587014452567649,-0.006827824673550751,-0.024668167690894964,-0.3422580142557697,-0.021820547255774522,-3.612296319488097,-1.3834511600119483,-0.014742750616792227,0.0019463763660447467,-0.06343832630798679,-0.6918490545523932,-0.22501530469073222,-6.560694629836147,-0.056482776127303694,-0.009619988493920578,-0.1752646184827147,-0.003291048491486605,-9.571266931865518,-0.6782090176796737,-0.02970105194639141,-0.004433376204234879,-0.07046297264939382,-0.4197124751614798,-0.13097806123331898,-3.2626941554090974,-0.021157592094219888,-0.026657407213678787,-0.4796809775014889,-0.020318284339366034,-1.7894506596993451,1.1887052341597797,0.04939885215794305,0.009859727930339743,0.03443526170798898,0.19441326848734272,0.23509177855161528,5.694537534435261,0.019525610143561984,0.046469191919191924,0.4579980955723983,0.03661677685950413,0.9858090058530333,-1.1140495867768592,-0.046521671258034886,-0.012962555112199655,-0.10266299357208447,-0.2525615300026072,-0.05419052932851743,-4.869931374839305,0.012317276524393392,-0.04373539026629937,-0.8298181829378571,-0.0378817123966942,2.0818148040873323,0.6874337783428695,0.06647426008335097,0.01118801052353298,-0.03892067528431165,0.9607828261026918,-0.21149360846520587,3.694692704386521,-0.02607105996800762,0.06235005297732568,1.4375686130788599,0.04143123712650984,0.4425117446029499,,,0.4854978354978355,1.3977272727272727,0.7727272727272727,0.022727272727272728,0.625,0.14772727272727273,0.7135734215483519,0.031008918016776865,0.04273619074404959,1.1105847520168164,0.27010382492032187,0.1949878735344056,1.8241581735651684,0.4650916984547275,2.014554669654434,1.3516108131841211,0.169038828071833,0.31657439407887045,0.08050781490072727,0.662943856470313,10.242812288242433,1414.0,222.55230000000003,135.0,334.0493827160494,5248.989661373738,5731.6846000000005,62.09055795333901,226.73460000000003,264.39504267642127,274.099938,8724.09746271138,1357.0,230.80780000000004,170.0,279.77777777777777,5081.3000669393505,5313.782633000001,75.04137505599999,237.7181,114.07458847736626,283.56477799999993,10810.805308534213,1947.0,390.106,263.0,549.1111111111111,8529.50618007391,7564.609385999999,114.20416957484899,399.418,311.60390946502054,474.469696,16585.72041075349,2350.0,511.96320000000003,288.0,527.8518518518518,11830.971852117516,9011.811151,134.74102802539602,524.0793,327.5935070873343,633.412099,19069.643502916228,2302.0,554.7230999999999,264.0,489.44444444444446,13043.470445369707,8695.650066999999,126.549542895396,566.8013,392.14480452674894,686.71988,18106.707075753373,1731.0,503.15680000000003,230.0,362.77777777777777,12574.685748266751,6341.344298,109.81355997133899,511.9554,297.07561728395063,631.422712,15075.777751301273,1771.0,436.64300000000003,190.0,358.44444444444446,10610.415135157951,6700.341238,95.39346717449001,443.57390000000004,349.7798353909465,543.4773720000001,12930.421157510089,1452.0,360.196,135.0,250.55555555555554,8934.358644833053,5426.031252000001,78.526741550792,367.83520000000004,227.75720164609055,453.75263599999994,10575.751940990303,1078.0,260.336,83.0,203.33333333333334,6411.400969985942,4077.2934160000004,50.791335060792,265.3427,264.44444444444446,327.093216,6854.983564430301,496.5454545454545,5.617387878787877,0.7800517798204527,29.515151515151516,137.94912083800972,52.784733783352024,2254.118156242424,10.646182722589636,5.3154969696969685,109.82591749687087,4.104493636363634,1556.102050056422,52.239669421487605,-1.1572356290174468,-0.5992914238815076,6.544536271808999,-8.17574170436125,8.176837023635855,222.13875650045912,0.3335150688938997,-0.8731422405876945,-31.781325206310665,-0.22411991735537193,232.9451427965247,-41.77685950413221,3.024184940312212,0.42802298234432484,-2.1478420569329653,44.90723168837644,3.7719049271742486,-172.74673485032127,-0.7486132108072411,2.421878053259871,49.63330958222259,1.723356033057851,-98.59878050072048,20.89256198347108,-2.0623622589531676,-0.2833931589253155,-13.338842975206608,-39.24823997551272,-22.473137477522684,74.77871273002766,-0.5325703245369586,-1.924117079889807,-26.696125111950035,-1.7020026859504127,-281.7591129200716,-114.82644628099172,-1.223648301193755,0.16154923838171398,-5.265381083562904,-57.42347152784864,-18.676270289330773,-544.5376542764002,-4.688070418566206,-0.798459044995408,-14.546963334065321,-0.2731570247933882,-794.4151553448379,-53.57851239669422,-2.3463831037649214,-0.3502367201345555,-5.5665748393021115,-33.157285537756906,-10.3472668374322,-257.7528382773187,-1.6714497754433713,-2.1059351698806243,-37.894797222617626,-1.6051444628099167,-141.36660211624826,78.45454545454545,3.2603242424242413,0.650742043402423,2.272727272727273,12.83127572016462,15.516057384406608,375.8394772727272,1.288690269475091,3.066966666666667,30.227874307778286,2.4167072727272725,65.0633943863002,-61.27272727272725,-2.5586919191919186,-0.712940531170981,-5.646464646464646,-13.890884150143396,-2.9804791130684585,-267.84622561616175,0.6774502088416365,-2.4054464646464653,-45.64000006158214,-2.0834941818181814,114.49981422480329,26.80991735537191,2.592496143250688,0.43633241041778625,-1.5179063360881544,37.47053021800498,-8.24825073014303,144.09301547107432,-1.0167713387522972,2.4316520661157015,56.06517591007554,1.6158182479338838,17.257958039515046,0.7327707211195519,0.5749726777649012,0.4263340569168336,0.338730875428346,0.2816265709064303,0.17993088326035672,0.16470543774228258,0.09615439138016012,0.1051211651752648,0.05131805637374368,0.0657671815656086,0.025900802323293295,0.04197013760174784,0.01463699822338317,0.025290361069042568,0.008042235900821723,17.001103964550826,5.683899365187379,3.581167289557613,2.178031677601537,0.45634597944593397,-0.3671243762380274,4.043226001328526,0.9683017650930948,6.022499830374545,0.6420934344489608,14.540662561575424,10.319284397743795,35.450517575158436,11.695202663665379,2.955647333259435,0.7517596758138552,3.537273621717187,2.2304889655766553,7.014580742490266,0.30019269253011577,3.768658655115284,2.427850638752113,24.442067311151224,14.701029104890175,0.3613889868367786,0.6572287539950468,0.7704960226359349,0.8795732252678732,0.9017755587119499,0.9017755587119499,1.8033234941370715,897.4658924470708,0.0,1.0,0.0,0.0,9.0,1.0,3.0,0.0,0.0,3.0714156579944465,1.4562986791203012,0.8379237713455518,0.24242424242424043,0.12121212121211933,0.12121212121211933,-125.09146012531988,1016.4900615935013,72.34235287075784,30.802729139197005,65.43029566653594,,9.0,336.0,21.65545647672934,18.318861563241466,15.481568280956097,11.126902983393991,6.06636706846161,12.13273413692322,24.26546827384644,0.0,5.316788604006331,16.73991362784046,10.68095238095238,30.75,17.0,0.5,13.75,0.0,0.014502164502164532,3.25,0.2707629288274448,0.11005291005290996,-0.16071001877453484,0.09523809523809512,0.18573810645313227,0.0,0.7126984126984128,0.9190476190476189,0.44193548387096804,0.6026455026455029,0.8238095238095238,15.69861527406374,0.682196196369091,0.940196196369091,24.432864544369963,5.942284148247081,4.289733217756924,40.131479818433704,10.232017366004005,0.5282618935468677,0.22915737851092285,0.1248328131966117,0.2808738296923763,0.07142857142857142,0.6244227867834639,-1.2626533582472803,-0.10573498564775664,-0.038262222977190306,-0.09018952558909145,0.3755772132165361,0.7594595193936521,0.03817631153647853,0.02301392483011067,0.03997155365229747,-3.910513251082958,0.7107391327091072,0.8135636982449207,1.6949820665092394,1.0222352596069229,0.7185329420889629,1.0031195824652945,0.6919777891704991,1.0133364882318465,0.7430650459434223,0.8786134103650126,0.6721723384516073,0.6946165594257198,0.7472316569653658,0.4375281839664803,0.6226495093996244,1.2524251221411882,0.5974525225929036,1.02112068055208,0.7343619992935465,0.9341622779903778,0.4503786232114116,0.5054863699768738,0.5103292868546316,0.8596836639024131,0.7985428461444574,1.0198334392454598,1.0886150830045505,1.2787869214973937,1.0103967920520596,1.1413597181409734,0.802945368196761,0.9208040140437055,1.0067476537135867,0.9708269274225753,1.0571688882439654,0.9850155218844829,0.9876429923281557,1.074694079212946,0.9991907630930904,0.9862200341406694,1.0844914405872927,1.1030126200653854,0.9995926272488556,1.0372058570428542,1.046995461863004,0.9839868575523298,1.0319615968466953,1.1098671426310103,0.9393508197025248,1.1269420988322316,1.2046543548093953,1.0087074051932523,1.0923668419228885,1.0183555133995306,0.945884737497773,1.004355039840732,1.1181711657295543,1.044153455639838,1.0805371912442976,1.066966000625311,0.9408031246185768,0.7944121553315517,0.6319462433212972,0.8788501026694044,0.9949178007148707,0.8283037212212633,0.9314793841597484,0.9763245152876198,0.7820974007390623,0.9382971745174183,0.7562041573208492,0.9907432516793674,1.293006224826071,1.362584788141582,1.4965578263888724,0.975770020533881,1.1423265299480936,0.980474458263229,1.2896529229822735,1.03795685568923,1.3839957950281452,1.3818421983070788,1.4095748451309356,0.9885269315866799,1.2864264991690844,0.8138831667938802,0.40496289968740984,0.8756910440688674,0.9489531236896576,1.0411652507074538,1.277569586148299,1.203981464147119,0.8467394584739296,0.9035906030571605,0.8971195632608636,1.0570343160314841,7.0,0.0,4.444444444444446,3.2986111111111116,1.3611111111111114,1.1947222222222222,0.5174603174603175,0.5747236394557823,0.127739984882842,0.0625,5229.075185041875,5577.699604111353,2478.2756305753783,2351.044634425444,10.75831249135513,0.4265008030481495,6.169883574349228,0.7436816046386853,1.0,0.07142857142857142,1.9729784613640071,3.588095440238152,4.2064703480129015,4.801969876934213,4.923181998146334,4.923181998146334,0.29166666666666663,0.0,0.1169590643274854,0.08246527777777778,0.03678678678678679,0.04266865079365079,0.019902319902319904,0.02873618197278911,0.009124284634488713,0.015625,0.6439342328619652,16.84375,5.8171745152354575,2.9219530949634756,131.1221012529823,1.0,4.042778697806234,89.14952216924851,,61.27736689048915,68.50859786595367,69.33766253352262,61.249355035423264,74.12404565089192,68.30097164676718,67.86124722999062,74.19286960538389,0.09919443427316003,-0.1942375891307186,-0.7243701178270061,0.20906424171311233,-0.05587970707811908,0.146057176784424,0.09291665243538204,0.029537071939397933,-0.15487703275190287,-0.2728431518096767,-0.051483345731844585,0.14114369412444178,-0.04786992260003281,0.30630908634523774,0.3121976307736786,-0.04140409261488351,0.18521804379934456,0.04065728259013906,-0.043603275664002926,-0.040008246504815284,0.2592354218475086,0.2571309423356775,0.23889186915843533,-0.03605117424331365,0.017801312565135348,-0.15532804527932212,-0.15370403452802722,-0.19120202179750428,-0.12037064465618078,-0.1801252971152372,0.014035265900263109,-0.021164225722810737,-0.1531464580716226,-0.10284015583809895,-0.17543651500907442,-0.07660537336788739,-0.09194301923916831,-0.08660800728952386,0.08234122623790537,-0.07092847777145546,-0.16550318451857973,-0.14067523927033845,-0.09604772588562947,-0.17507980660955902,-0.05972341290178125,-0.052662727903860895,-0.02645992656850016,-0.20297628214043528,-0.0450732100728161,-0.17448229237152313,-0.1875534657115015,-0.07878252280820315,-0.10040304422521946,-0.08188496390717319,-0.047765422957234155,-0.06558224269697882,-0.1654961790151393,-0.14413239259303381,-0.16335836831583198,-0.03794858554934572,0.07900036616623948,0.29019931619247163,0.41711464561506845,0.038501026694045176,0.046507276168987234,0.14697485686003664,0.08336729736901749,0.060523584042037885,0.288492937175121,0.1376172173050115,0.2943977365827211,0.020905889296894475,-0.07403881362138409,-0.27329698155834325,-0.548379389379829,-0.11478439425051334,-0.06041742375345091,-0.033878876327781915,-0.07129516921047034,0.038179893760653956,-0.27152077915118417,-0.24934005252202424,-0.30456777859654044,0.04414870382851241,0.04568628003267331,0.39051079079551276,0.47330748653835447,-0.04351603222239773,0.22983715350111011,-0.1322217349432388,0.054089826173088384,-0.08081253171793921,0.3870854898387886,0.43195418087860743,0.3331058460078694,0.009384273718659946,6.630592898361011,14.098322403974285,5.454766633798684,26.494343856126584,42.189208542098356,48.69796328100799,50.631923775857636,50.75410559403946,50.75410559403946,44.320202732397554,29.735437890050665,3.718854217580326,6.96463666973515,1.7711719278159999,14.584764842346885,3911.941491925509,3503.1120130331033,1141.3630707588618,87.0,38.0,51.0,69.0,85.0,92.0,100.0,110.0,103.0,338.0128055120003,24.0,4.8283137373023015,5.713732805509369,6.658011045870748,7.5688956634069955,8.514589805546123,9.434842999328023,10.380994213509263,11.306110375768128,12.252445604898279,0.8787878787878788,1.0255757575757576,1.1143874281835968,0.8546761428286698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7476451279259664,1.015805109922757,1.0416473548301661,0.7161541550247026,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,10.423315998847038,4.895483475517775,5.724985593970254,10.023291153407584,5.907179729351506,4.794537184071822,13.556770721936878,0.0,0.0,35.866408164078955,18.19910120538483,16.690354475090988,5.022633313741326,313.8892808686303,-634.7195569979089,-53.151613474250944,-19.2339259696336,-45.33711121413634,188.7978207433104,381.77050459559246,19.190739396506892,11.568803169563408,20.0931844523996,0.4444444444444444,0.6124980082032613,0.17957219944890251,157.57212366610958,0.1256039517124488,52.09773860098001,0.3875019917967386,5.0,0.08333333333333333,0.39112298021926384,0.7113035491157235,0.8338901062210977,0.9519418513525918,0.9759709256762961,0.9759709256762961,0.9242000000000001,,2.5577731092436977,1.6062102576603001,1.1877963317541478,2.5686061430699443,-4.707457808557321,1.5619180236431531,1.5556454639214143,-1.9937596638098831,79.7322,18.318861563241466,0.0,5.316788604006331,5.138973737607942,10.620469069488028,0.0,64.17755726806358,0.0,0.0,3.8918202981106265,0.0,5.303304908059076,2.3978952727983707,6.910750787961936,4.948759890378168,8.604654467186231,7.221835825288449,10.344930943309528,29.0,10.37609818979032,0.0,0.0,0.0,0.0,0.0,0.4214841059880765,0.0,33.844,0.0,35.08196533114274,0.0,0.0,-4.058960157365413,0.0,0.0,-0.4535133219954648,36.774785130058696,10.455762341614273,0.0,0.0,19.43150410852115,15.748276747377837,0.0,21.48489165916281,47.360052954749044,5.022633313741326,0.0,0.0,28.204312713346102,24.67228922155689,27.135033118416878,178.29904433849703,,123.00926010981102,136.87117661757458,138.5673435823403,122.95162756930763,150.75224700340044,136.45995074593046,135.5810721450793,149.29199360340866,27.135033118416878,178.299044338497,,120.91653665679345,135.4109854742471,137.48752873529105,120.85004072497767,152.9555491103411,135.04002526989123,134.1668489960598,150.37949887457768,5.025299952730184,129.95934513102654,,92.85596355482362,101.5321785399947,102.44868407992759,92.82721045843226,108.78826824111971,101.30789213961269,100.78109062384428,109.13789178360796,1.2334105962916764,8.10450201538623,,5.59133000499141,6.221417118980662,6.298515617379104,5.588710344059438,6.852374863790929,6.20272503390593,6.162776006594513,6.785999709245848,2.5640239961449427,89.14952216924851,,61.27736689048915,68.50859786595367,69.33766253352262,61.249355035423264,74.12404565089192,68.30097164676718,67.86124722999062,74.19286960538389,33.52156862745098,0.0,0.0,5.833687851683882,0.0,5.109019904258,10.855585789871505,34.374362709395484,0.0,2.4480196523053666,0.0,0.0,0.0,0.0,-1.8356095679012343,0.0,0.0,23.633087115815187,307.89484848678416,65.10828922501223,118.40714952785902,138.81352148442576,158.46500593882902,162.46500593882902,162.46500593882902,781.0,122.65793625113925,194.79225312515658,71.6239523930924,117.87,109.49000000000001,0.8,8.537932879533757,5.584962500721156,4.040308295199183,4.627690926774519,,4.648939913114141,4.635367512014577,4.633816520123848,4.649053901799693,4.627872032379716,4.636780722596563,4.638176852609684,4.630581983776334,0.18365037705450832,0.21034958758065994,,0.21131545059609733,0.21069852327338986,0.2106280236419931,0.21132063189998604,0.21035781965362343,0.21076276011802558,0.21082622057316744,0.21048099926256061,2.1847783601186834,2.3205153841411605,,2.3250965782987527,2.3221728468567857,2.321838191314329,2.325121097283778,2.32055451857437,2.3224776760198167,2.322778729693075,2.321139919002839,217.46999999999983,147.58846499497787,122.52380263095122,,119.19213461474374,121.19491330081108,121.5148374902838,119.17701004060612,122.71960859291453,121.09154381038105,120.95705994180489,122.42237594499437,6.708566590680812,5.569263755952329,,5.41782430067017,5.508859695491413,5.523401704103809,5.417136820027551,5.5781640269506605,5.5041610822900475,5.498048179172949,5.5646534520451985,5.782885119036208,5.596762678665293,,5.569194128042788,5.585857463653486,5.588493734950519,5.569067227607082,5.598359508546208,5.585004180329817,5.583892966463431,5.595934523742907,23.11885896951373,11.642478369691498,18.35008702863862,-1.030959152179389,-0.4535133219954648,10.37609818979032,0.0,0.0,-4.058960157365413,264.2501841099483,157.78809282690816,-319.0653344436938,-26.718630523369384,-9.66864649829375,-22.790381031692412,94.90622930010547,191.91110843608647,9.646937165020136,5.815488134426864,10.100584654530866,952.0,40.0,3.0463186030846336,1.3579354856333747,0.4065262647925708,0.08687641481762633,1.0250324997819709,0.37250654305129566,0.2248892177291057,0.0343960106468422,0.0,0.0,0.0,0.0,0.06804138174397717,0.03125,0.4229662334961218,0.1302766147547332,0.7780940279198576,0.21382117619863264,16.12095586463014,12.649398910827827,10.232017366004007,8.129541010280304,10.70180969444435,6.837373563893555,8.399977324856412,4.903873960388166,7.253360397093272,3.540945889788314,5.590210433076731,2.20156819747993,3.861252659360801,1.3466038365512516,2.5290361069042566,0.8042235900821723,5.741225539587729,2.6235911470514024,9.73073664996491,3.654964251665723,14.961067579985244,4.522902068810328,70.17966809611535,45.427225671081665,32.72403913980783,28.627310527098697,28.25829305808555,28.25829305808555,124.0,151.0,41.20272299999999,19.069276999999996,0.45454545454545453,114.08,8.791666666666666,4.541666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,33.0,0.0,0.0,35.0,12.0,3.0,9.0,26.0,15.0,24.0,20.0,0.0,0.0,0.0,14.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,4.0,3.0,1.0,22.0,8.0,0.0,2.0,4.0,0.0,3.0,2.0,1.0,0.0,1.0,0.0,2.0,3.5263605246161616,7.185221282150421,4.219507705176107,4.74493212836325,5.319344733740112,5.8377304471659395,6.075920578648298,6.44819690759794,6.746008110423791,6.994190969462749 +1046,NC(=O)c1cnccn1,0,28.285714285714285,6.855335714285715,3.2142857142857144,11.0,169.83796534312464,112.21121949999996,1.460054894588928,6.876492857142858,7.5396825396825395,8.232251714285713,229.9526091093363,28.428571428571427,6.848785714285713,3.642857142857143,9.857142857142858,157.61913798473572,109.33615092857143,1.692758395,6.9461071428571435,4.674603174603175,8.172831714285717,264.0338794212063,25.8,6.844850000000001,3.35,8.6,162.85281181888251,98.11957395,1.4911495677424493,6.910154999999999,5.2,8.204691,229.7232889021619,22.285714285714285,6.949847619047619,2.8095238095238093,7.142857142857143,168.97115038965944,82.1996352857143,1.2894319827070952,6.972585714285714,5.444444444444444,8.35591257142857,194.08649893237333,18.5625,6.79043125,2.1875,5.25,170.92017376666868,66.0689363125,1.1199064781780623,6.8036062500000005,5.479166666666666,8.246850249999998,161.4027805688735,11.666666666666666,6.283916666666667,1.6666666666666667,2.25,175.76916014762477,38.18797349999999,0.8821663775455831,6.292166666666668,3.972222222222222,7.885050666666667,117.00942674496345,4.833333333333333,5.855666666666668,1.3333333333333333,0.0,176.48430109612468,9.415392,0.730759119283,5.859333333333335,2.8333333333333335,7.570367999999999,76.77008785483142,1.0,4.840000000000001,1.0,0.0,184.91765202424898,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,,,,,,,,,,,,7.387755102040816,0.16572295918367339,0.036252641806353916,0.5153061224489798,4.387755102040817,1.7392112981030852,34.87803978061224,0.18864320590920913,0.14988010204081625,2.5306122448979593,0.09916255102040815,41.32229832038003,-0.3061224489795914,-0.03850408163265303,-0.021268504005072,0.12244897959183675,0.673469387755102,-0.5012831870040804,-1.3027769795918307,-0.006649061632653043,-0.030600000000000047,-0.5476190476190474,-0.023405714285714276,0.9348218100181739,0.06938775510204102,-0.005490816326530598,-0.002315818981618814,-0.111734693877551,-0.3448979591836736,-0.4716787184904576,0.3014401336734743,-0.018696316300866316,-0.0028243877551020697,0.24954648526077103,-0.0027908938775510093,-1.6336883407433997,-1.442176870748299,-0.007029421768707462,0.004005323056321848,-0.12414965986394556,-1.183673469387755,0.2826213385557432,-6.854594943877549,-0.012499990018576537,-0.010914115646258507,-0.27513227513227523,-0.0031523197278911196,-7.073524623238986,-1.968112244897959,-9.84056122448878e-05,0.005273298992638673,-0.1447704081632653,-0.9948979591836733,-0.004911937594533178,-9.530897271683672,-0.06167392828927169,-0.0049818877551020225,-0.14271541950113384,0.0024368061224489973,-15.65830694576882,-0.5782312925170073,-0.0405170068027211,-0.007760737071589454,-0.015306122448979637,-0.5663265306122446,-0.20254003723664118,-2.599628179421776,-0.00969195813889371,-0.03336879251700677,-0.468442932728647,-0.02593314625850343,-0.1663104504740609,-0.9353741496598644,-0.029074149659863973,-0.0020626504124004385,0.19897959183673464,0.18367346938775553,0.008219783585388524,-4.25686375680273,0.014577995915576522,-0.02745629251700669,-0.7369614512471655,-0.01788064625850348,-0.2892634857978867,12.755102040816325,0.1493270408163263,0.013663561163702638,0.4132653061224489,6.612244897959185,0.40088226915698205,60.62068371938773,0.21231445635086224,0.1548984693877552,1.5328798185941044,0.06752573469387728,66.56920388637462,,,,,,,,,,,,,,,0.44814814814814813,1.5,0.8333333333333334,0.0,0.6666666666666666,0.16666666666666666,0.34421065646042426,0.012187012192531575,0.021742567748087128,0.7640981806966929,0.32518939871571617,0.15309176268876282,1.108308837157117,0.47828116140447896,1.9476238212508197,1.1259263071573349,0.6323873782455013,0.18931013584798384,0.0,0.821697514093485,8.788804412857143,396.0,95.97470000000001,45.0,154.0,2377.731514803745,1570.9570729999994,20.44076852424499,96.27090000000001,105.55555555555556,115.25152399999997,3219.3365275307083,398.0,95.88299999999998,51.0,138.0,2206.6679317863,1530.706113,23.69861753,97.2455,65.44444444444444,114.41964400000003,3696.4743118968877,516.0,136.89700000000002,67.0,172.0,3257.0562363776503,1962.3914790000001,29.822991354848988,138.20309999999998,104.0,164.09382,4594.465778043238,468.0,145.9468,59.0,150.0,3548.3941581828485,1726.1923410000002,27.078071636849,146.4243,114.33333333333331,175.47416399999997,4075.81647757984,297.0,108.6469,35.0,84.0,2734.722780266699,1057.102981,17.918503650848997,108.85770000000001,87.66666666666666,131.94960399999997,2582.444489101976,140.0,75.40700000000001,20.0,27.0,2109.229921771497,458.2556819999999,10.585996530546998,75.50600000000001,47.666666666666664,94.620608,1404.1131209395614,29.0,35.13400000000001,8.0,0.0,1058.905806576748,56.492352000000004,4.384554715698,35.156000000000006,17.0,45.422208,460.6205271289885,2.0,9.680000000000001,2.0,0.0,369.83530404849796,2.032128,0.8892258096979999,9.680000000000001,2.0,13.436928,62.16748886186053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.42857142857143,2.3201214285714276,0.5075369852889549,7.214285714285716,61.42857142857144,24.348958173443194,488.2925569285714,2.641004882728928,2.0983214285714276,35.42857142857143,1.388275714285714,578.5121764853204,-4.285714285714279,-0.5390571428571425,-0.297759056071008,1.7142857142857144,9.428571428571429,-7.017964618057125,-18.23887771428563,-0.0930868628571426,-0.42840000000000067,-7.666666666666664,-0.32767999999999986,13.087505340254435,1.3877551020408205,-0.10981632653061195,-0.04631637963237628,-2.23469387755102,-6.897959183673472,-9.433574369809152,6.028802673469485,-0.37392632601732634,-0.05648775510204139,4.990929705215421,-0.05581787755102019,-32.673766814867996,-30.285714285714278,-0.14761785714285672,0.0841117841827588,-2.6071428571428568,-24.857142857142858,5.935048109670607,-143.94649382142853,-0.2624997903901073,-0.22919642857142863,-5.7777777777777795,-0.06619871428571351,-148.5440170880187,-31.489795918367346,-0.0015744897959182047,0.08437278388221876,-2.316326530612245,-15.918367346938773,-0.07859100151253084,-152.49435634693876,-0.9867828526283471,-0.07971020408163236,-2.2834467120181414,0.038988897959183956,-250.5329111323011,-6.9387755102040884,-0.48620408163265316,-0.09312884485907345,-0.18367346938775564,-6.795918367346935,-2.4304804468396943,-31.195538153061314,-0.11630349766672451,-0.40042551020408124,-5.621315192743764,-0.3111977551020412,-1.9957254056887308,-5.612244897959187,-0.17444489795918383,-0.012375902474402631,1.1938775510204078,1.1020408163265332,0.04931870151233114,-25.54118254081638,0.08746797549345914,-0.16473775510204014,-4.421768707482993,-0.10728387755102088,-1.7355809147873202,25.51020408163265,0.2986540816326526,0.027327122327405275,0.8265306122448978,13.22448979591837,0.8017645383139641,121.24136743877546,0.4246289127017245,0.3097969387755104,3.0657596371882088,0.13505146938775456,133.13840777274925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7433593827013323,0.512452950913587,0.47828116140447896,0.2625568016384837,0.33110063929196226,0.1322639696731114,0.21605324632026024,0.06796886667661185,0.15006945490382098,0.03552767839148509,0.10420363526279108,0.01892628949282428,0.07519741058851521,0.009479726020076113,0.05892556509887896,0.004741963281073743,8.022036221671557,5.792702339712174,3.543941903799181,2.2747848723560717,0.42969012267484075,-0.3800187138881604,3.1342122372371355,0.973020142353526,6.021934392528001,2.839157331921863,14.549894303954055,11.0707292308448,16.010062916191604,11.8175431407025,1.9002226532120623,0.7515815322684656,3.4892101439961785,2.3193968069575153,7.008271343532245,1.5249250733474127,3.702099989470392,2.512409233935897,20.766865482784254,14.702709564550482,0.4338687223564064,0.7288257392763363,0.8102744035726079,0.8445333273680554,0.8787922511635028,0.8787922511635028,2.2283621149350434,208.70290908206394,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.9981548893597922,0.7682062501545333,0.4285714285714284,0.28571428571428514,0.1428571428571419,0.1428571428571419,91.24487302885665,321.47536684137265,45.92122231928328,22.96252620295519,48.454014061022676,,5.0,69.0,5.907179729351506,4.794537184071822,5.693927994848461,0.0,0.0,18.59053071483923,0.0,0.0,9.967957041894417,5.733667477162185,4.033333333333333,13.5,7.5,0.0,6.0,0.0,0.051851851851851864,1.5,0.2642857142857143,0.04970238095238089,-0.2145833333333334,0.11245791245791237,0.2260967741935484,0.0,0.6976190476190479,0.9185185185185186,0.4333333333333336,0.647916666666667,0.8060606060606063,3.097895908143818,0.10968310973278417,0.19568310973278416,6.876883626270236,2.9267045884414453,1.3778258641988654,9.974779534414054,4.304530452640311,0.48790322580645157,0.18181818181818185,0.0,0.24793388429752067,0.0,0.33815918851685267,-0.38563679521618804,-0.092291585130779,-0.02754548537258486,-0.09640919880404701,0.6618408114831476,0.7547633722539601,0.07060913767696593,0.05391166944671144,0.07547633722539603,-0.742605195967224,0.7002762430939226,0.8821567220927474,1.554510965513782,0.8366336633663365,0.483720930232558,1.4739454686121942,0.700737202454391,1.0148049479998873,0.8344578149200895,0.7833781362007168,0.8775330754594856,0.8304910380655854,0.7667127071823204,0.8201618141907596,1.012846161046603,1.306435643564356,0.9047093023255813,1.3436442837067786,0.7694346536086144,1.0320674444535527,0.7933245961908327,0.5962701612903225,0.8067388836923088,0.9051120757465785,1.0863259668508287,1.07065619512936,0.8451311515652691,1.201320132013201,1.23953488372093,0.8041896280636335,1.0843440772513797,0.9528464232234689,1.0855718005889061,1.1862305854241337,1.0975362722994162,1.0186591842167656,1.2294112569060773,1.0524300991019557,0.8387483046778639,1.0699257425742572,1.1771802325581393,0.8766719833689602,1.2329158790568364,1.1978214582304347,1.0806375844637721,1.192540322580645,1.0517444301409866,1.2609682029831308,1.2411947513812154,1.2970369982687688,1.083925482650874,0.7508250825082506,1.2168604651162789,0.7853776631237446,1.2365876868089574,0.959632757008394,1.3046797610334793,1.2910692951015532,1.292005481963065,1.0481850453522217,1.4140193370165746,1.2265773240522098,0.7775543633534313,0.30033003300330025,1.1110465116279067,0.5254353140948569,1.4106756940950653,0.9101450892416676,1.2846220618521607,1.4371639784946235,1.1999201476034502,1.1875548819402333,0.0,0.0,0.06988211611372248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,1.5,0.0,0.8888888888888893,0.4375,0.19111111111111112,0.125,0.0,0.0,0.0,0.0,1355.8454312262566,1465.8367419732226,854.4765773929399,798.2164142781976,7.0587796695677065,0.46188404810147937,3.7984419411313515,0.8583355436164113,0.0,0.0,1.809200032697812,3.039148671903071,3.378783493486176,3.521640636343319,3.6644977792004623,3.6644977792004623,0.16666666666666669,0.0,0.08080808080808084,0.048611111111111105,0.03822222222222222,0.0625,0.0,0.0,0.0,0.0,0.39680808080808083,7.111111111111111,3.239669421487603,2.0,51.73705399284308,1.0,3.089765428947129,20.071097236761165,,13.90542541016005,13.57389148418034,13.387859509898126,13.908548519837588,19.68995278263801,13.768847733161936,13.92498400512592,17.712459998642004,-0.041436464088397726,-0.23234005609312314,-0.5866745965350397,0.23762376237623759,0.15348837209302324,-0.28822443112623375,-0.03735235660566019,-0.03524675909003119,-0.2041631916668089,-0.2163978494623655,-0.2360338055532402,0.02262269641369688,0.009392265193370193,-0.03313250230129573,-0.06388000615207373,-0.21683168316831675,-0.07860465116279072,-0.27120265318245457,0.0086426913774276,-0.0991094071517452,-0.01884431433288533,0.09861111111111114,-0.028144635740327308,-0.03953527289496552,-0.1952117863720073,-0.042416704380209884,0.11048361875850504,-0.24092409240924084,-0.26976744186046503,0.1624997140163425,-0.19653039525712773,-0.06626260383102574,-0.07281897661963367,-0.10872162485065713,-0.03178941743080366,-0.17117936104126,-0.26640193370165743,-0.000593795891224844,0.14545971630995547,-0.28094059405940586,-0.22674418604651156,-0.002824232800172415,-0.2732635587216011,-0.3269342672163573,-0.03323915374534056,-0.05639560931899643,0.024573854720089747,-0.37893117232654483,-0.07826887661141811,-0.24448638258876043,-0.21407369738856513,-0.02970297029702978,-0.12906976744186038,-0.11645510666676705,-0.07453481318829273,-0.05137719162575243,-0.22263657458626215,-0.18511051373954598,-0.26152157232387313,-0.004024714433466957,-0.1266114180478822,-0.1754382724221128,-0.05689655455782321,0.38613861386138587,0.04186046511627916,0.004726155812323459,-0.12204997137393613,0.07727813914799916,-0.18318837619639217,-0.2912186379928315,-0.18031652145398674,-0.007000179020904624,1.7265193370165743,0.9010642915857227,0.37689835782692827,0.8019801980198016,1.5069767441860464,0.23049658750159593,1.7380759956895606,1.1254815954148154,1.0334825455721424,0.6057347670250897,0.6809600398438735,1.610975347262882,,,,,,,,,,,,,1.6509636244473134,2.6207413942088964,1.0,17.92820590354467,29.278398187638654,31.477750087794423,33.193607230651565,33.337607230651564,33.337607230651564,17.528614391257378,10.133336764416013,5.6914864042095115,1.7037912226318546,0.0,7.395277626841366,542.3912277340977,426.2285743838277,118.70737590419179,0.0,11.0,12.0,12.0,12.0,6.0,4.0,0.0,0.0,123.04326178,9.0,3.713572066704308,4.465908118654584,5.25227342804663,6.028278520230698,6.816735880594968,7.598399329323964,8.386400901166214,9.169830828637973,9.9572652582166,0.7619047619047618,1.034571428571429,1.1514160685899004,0.7321562377344579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6751909751924722,1.0170868347338937,1.0385495786078451,0.6673756651449508,3.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.733667477162185,5.693927994848461,0.0,0.0,5.907179729351506,9.77851570501903,4.9839785209472085,0.0,0.0,0.0,0.0,12.393687143226153,6.196843571613076,95.32605508152186,-108.70984917923606,-26.016719422365043,-7.764989227088289,-27.177462294809015,186.5709281103785,212.76551766213657,19.90450289691824,15.1975369758669,21.27655176621366,0.4,0.6311694493434651,0.3193697855459313,33.82677559016226,0.2353566426509967,36.73643692472244,0.3688305506565352,3.0,0.1111111111111111,0.47518554737735563,0.7982309855842459,0.8874359135554886,0.9249572757036592,0.9624786378518297,0.9624786378518297,-0.4245000000000001,,0.6785714285714287,0.8427175430432758,0.8488829422512447,0.6767661145452564,-2.636839718884606,0.7422735618115056,0.6692837795551935,-1.356968362788312,30.549899999999997,4.794537184071822,0.0,9.967957041894417,5.733667477162185,0.0,0.0,24.28445870968769,0.0,0.0,2.9444389791664403,0.0,4.143134726391533,0.0,5.556828061699537,0.0,7.055312843339752,0.0,8.590257762273243,10.666666666666664,4.21712962962963,7.2837962962962965,0.0,0.0,0.0,0.0,0.19212962962962998,0.0,14.484000000000004,0.0,10.320648148148148,0.0,0.0,0.0,0.0,0.0,-0.5526851851851851,16.119824960258605,5.733667477162185,0.0,0.0,15.875136771245923,0.0,0.0,10.488465178920283,18.59053071483923,0.0,0.0,0.0,10.250187328282411,9.45267365269461,11.189957230158047,40.14219445750919,,27.70026545576539,27.021666804774775,26.700006955097265,27.70683554224374,40.5518343085198,27.42337093058884,27.740033399818827,36.02801688469221,11.189957230158049,40.14219445750918,,27.32328132878127,26.553490391972957,26.228405320513247,27.33085436749638,42.0167452634557,27.010996729582445,27.368209077843723,36.78188819735239,4.387986555425315,29.89720831178863,,21.076404827768528,20.591768400103582,20.32490751101672,21.08098117496012,29.74823433167704,20.876533954265295,21.105061123255474,26.751886866257287,1.2433285811286718,4.460243828612132,,3.077807272862821,3.0024074227527526,2.966667439455252,3.078537282471527,4.505759367613312,3.047041214509871,3.082225933313203,4.003112987188023,2.1939932777126576,20.0710972287546,,13.905420784902251,13.573884876508181,13.387851540701337,13.90854391027522,19.689952772285537,13.768842380177619,13.924979475705978,17.712459917282036,14.239215686274513,0.0,0.0,0.0,0.0,4.872314814814815,0.0,14.53969410050983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.343259312029312,177.92476365281573,25.32880045776937,42.54808140664299,47.30296890880646,49.30296890880646,51.30296890880647,51.30296890880647,75.0,79.38866433157592,103.97221953908463,37.28997237287051,68.87,68.87,0.6666666666666666,5.690148283380397,4.169925001442312,2.856387792498919,2.9654550858731703,,2.962594761143627,2.9629706212623113,2.9630453724428327,2.962591061471808,2.956523431846596,2.962746823625242,2.96257282133656,2.9585435287555595,0.3173764213887688,0.3294950095414634,,0.3291771956826252,0.32921895791803457,0.3292272636047592,0.32917678460797867,0.3285026035385107,0.32919409151391577,0.3291747579262844,0.3287270587506177,0.9441973012893093,0.9816699909746948,,0.9807049771757785,0.9808318376844161,0.9808570658244024,0.9807037283805745,0.9786535461253155,0.9807563033244816,0.9806975715431913,0.9793365804851819,89.06000000000007,27.60911722931685,29.083993036596635,,29.075368504262556,29.062786782757378,29.083141280452146,29.07556472819601,29.348240982563397,29.07141395722122,29.075984559394403,29.237223303826955,3.0676796921463168,3.2315547818440704,,3.2305965004736175,3.2291985314174863,3.2314601422724607,3.23061830313289,3.260915664729266,3.2301571063579133,3.2306649510438223,3.248580367091884,3.2127855369124223,3.2648274397061017,,3.2645308569318483,3.2640980354348645,3.264798153197335,3.26453760571205,3.2738720963692667,3.2643948374693768,3.264552044921445,3.2700821524651316,0.0,17.604444444444443,0.0,5.064444444444445,-0.5526851851851851,0.0,4.21712962962963,0.0,0.0,103.01459907296935,26.87212734706593,-30.64497852687312,-7.334034717714824,-2.1889270376337944,-7.66124463171828,52.59378178562861,59.97795755621927,5.611019318575692,4.284139825444234,5.997795755621929,88.0,9.0,0.5,0.12347528753566925,0.0,0.0,0.16666666666666666,0.015214515486254614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.019245008972987525,0.05892556509887896,0.009622504486493762,6.69023444431199,4.612076558222283,4.304530452640311,2.3630112147463533,3.6421070322115847,1.4549036664042256,2.592638955843123,0.8156264001193423,1.8008334588458519,0.42633214069782105,1.250443623153493,0.22711547391389136,0.45118446353109126,0.05687835612045668,0.23570226039551584,0.018967853124294973,1.0404401145198807,0.19012843125093587,1.054737854124365,0.15046180776973314,1.2071067811865475,0.1257064597634699,30.74423261967496,21.632579989653912,19.47059955461488,17.92143819285122,17.66324463255728,17.66324463255728,40.0,43.0,15.785965000000001,7.594034999999999,0.42857142857142855,9.04,3.4722222222222223,2.1111111111111107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,14.0,0.0,0.0,14.0,6.0,1.0,4.0,10.0,7.0,9.0,7.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,3.0,1.0,1.0,9.0,4.0,0.0,3.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,2.6390573296152584,0.0,3.1135153092103742,3.548179572010801,3.944006051281197,4.342993403944672,3.840795496139778,3.840795496139778,0.0,0.0 +9795056,C[C@@H]1NC(C)(C)CO[C@@]1(O)c1cccc(Cl)c1,0,27.2,6.00868,3.142857142857143,5.531569664902999,163.63275508109663,110.24449359999998,1.4716440082080575,6.129911428571429,3.2862624382171712,7.655421514285714,207.00839451604335,24.25,6.281361111111112,3.75,5.5586419753086425,146.88012459396802,91.49686052777776,1.7745658123888886,6.442333333333334,2.7579018061271148,7.758438055555555,252.75482402214539,22.076923076923077,6.228138461538462,3.5384615384615383,4.671794871794872,154.7160162724029,83.39421289230768,1.5171354578536917,6.353401538461539,2.7860161443494778,7.766095200000001,214.26684935870188,18.61111111111111,6.316122222222224,2.8,3.1938271604938273,159.1494724048047,66.47472504444444,1.3530047396343776,6.4264688888888895,2.973385345221766,7.884229466666666,184.29642634677964,12.513274336283185,5.993097345132744,2.230088495575221,1.8180924287118978,166.5676506284164,42.76826792920353,1.0579032527837522,6.056482300884956,2.466295203758331,7.683878265486727,135.77967125938434,14.954545454545455,5.836124999999999,2.147727272727273,1.6351010101010102,160.00124110592185,52.68278646590908,1.1923812814105796,5.959060227272729,2.3968621399176957,7.500549977272727,149.07558566903757,10.886363636363637,5.610671590909091,1.8409090909090908,0.7550505050505051,168.76703270745955,36.93844426136363,1.0080365957075228,5.704777272727273,2.0077511223344557,7.372943068181818,116.54297562572407,10.673076923076923,5.532596153846153,1.75,0.5598290598290598,162.54962693284278,32.54871744230769,1.175065637651654,5.711163461538462,1.7725546058879391,7.337812961538462,129.25194436813456,10.378378378378379,5.304594594594596,1.6216216216216217,0.2042042042042042,166.7833370942698,36.21631389189189,1.0152755928995134,5.415972972972974,1.5846680013346681,7.077366594594595,109.50222336572469,12.10122448979592,0.11072081632653057,0.014531955693388146,0.7624489795918367,3.343048626858151,1.329738536737757,56.85349722122449,0.2555849333647298,0.11620620408163258,0.9047657151566618,0.08018758693877549,52.285246247057636,0.05988662131519282,-0.006711451247165561,-0.008733204220807046,0.25897959183673475,1.222432462697013,-0.036323167194040745,0.34958245099772534,0.0036937339631084062,-0.005660013605442276,-0.22664280936171657,-0.00627523535147392,1.455923127576253,1.8455886970172681,0.02135039246467815,0.0005440900838307288,-0.1101412872841445,0.45226272845320453,-0.10623986397245973,8.74165367987441,0.02318860762965532,0.02192320251177385,0.15347302826726694,0.01051512295133438,7.085014227837059,-1.9523356009070296,-0.007029705215419522,0.002028599928107784,-0.06530612244897961,-0.37256459785560325,-0.08906865959444289,-9.329291445351478,-0.05658463699631896,-0.010897886621315276,0.05282360835915936,-0.00572941487528344,-11.97517065367171,-0.1381397868882063,-0.02828607549214376,-0.002619390173341497,-0.07268918186743724,-0.5798546701538696,0.15409671861595917,-0.38964533045331434,0.047648137457973576,-0.026308555535488533,-0.17156015770313454,-0.019130547747877903,5.4712973343667715,0.24812615955473064,0.007947820037105757,0.0018149881692339207,-0.06537105751391467,-0.2296888384983623,-0.3453019924401079,0.7618012713079806,-0.06586372535326777,0.013135224489795943,0.016339665516620243,0.014306949424860852,-11.018119953483021,1.2578664192949904,-0.003901692949907218,-0.0005173367294119857,0.031057513914656807,-0.2654552325980897,0.18490455770577385,6.077314568061229,0.05054396892677601,-0.0006565287569572617,-0.10409522176497484,-0.0016748496011131748,8.502069840982607,-4.267708006279435,-0.00614795918367344,-0.00028051238722291043,-0.0234379905808477,-0.1945748783844021,-0.1560654637502779,-20.155697984411304,-0.07919757062420561,-0.015920764521193016,-0.015674645047073034,-0.007407641334379906,-14.585036355861963,3.3180805295091007,0.020623276337562082,0.0012028657186191193,-0.04275785990071702,0.01152499438213731,-0.05624832030934705,15.641786766420305,0.04262959004910956,0.025224066188637737,0.08973170701565761,0.01266890186431328,8.2528718454604,,,0.4871148459383754,1.0,0.38235294117647056,0.029411764705882353,0.6176470588235294,-0.23529411764705882,0.9827698498904868,0.034133007688534264,0.04425065474735779,0.6463263247160032,0.1828077356623097,0.2780129956122793,1.6290961746064898,0.460820731274589,1.9809497697481082,1.538963889120086,0.11589123014644036,0.22244633548289172,0.10364831499868958,0.44198588062802163,7.288645899885714,952.0,210.3038,110.0,193.60493827160494,5727.146427838382,3858.5572759999995,51.50754028728201,214.54690000000002,115.01918533760099,267.939753,7245.293808061518,873.0,226.12900000000002,135.0,200.11111111111111,5287.684485382849,3293.886978999999,63.88436924599999,231.924,99.28446502057614,279.30377,9099.173664797234,1435.0,404.829,230.0,303.6666666666667,10056.541057706188,5420.623837999999,98.61380476048997,412.97110000000004,181.09104938271605,504.7961880000001,13927.345208315623,1675.0,568.4510000000001,252.0,287.44444444444446,14323.452516432422,5982.725254,121.77042656709399,578.3822,267.60468106995893,709.5806519999999,16586.678371210168,1414.0,677.2200000000001,252.0,205.44444444444446,18822.144521011054,4832.814275999999,119.543067564564,684.3825,278.6913580246914,868.2782440000001,15343.102852310432,1316.0,513.579,189.0,143.88888888888889,14080.109217321122,4636.085208999999,104.929552764131,524.3973000000001,210.9238683127572,660.048398,13118.651538875305,958.0,493.7391,162.0,66.44444444444444,14851.498878256441,3250.5830949999995,88.707220422262,502.0204,176.6820987654321,648.81899,10255.781855063718,555.0,287.695,91.0,29.11111111111111,8452.580600507825,1692.533307,61.103413157886,296.9805,92.17283950617283,381.566274,6721.1011071429975,384.0,196.27000000000004,60.0,7.555555555555555,6170.983472487982,1340.003614,37.565196937281996,200.39100000000005,58.63271604938272,261.862564,4051.5822645318135,423.5428571428572,3.8752285714285697,0.5086184492685851,26.685714285714283,117.00670194003528,46.540848785821495,1989.872402742857,8.945472667765543,4.067217142857141,31.666800030483163,2.8065655428571423,1829.9836186470172,2.1559183673469415,-0.24161224489796018,-0.31439535194905366,9.323265306122451,44.00756865709246,-1.3076340189854667,12.584968235918112,0.13297442267190263,-0.20376048979592196,-8.159141137021797,-0.22590847265306113,52.4132325927451,119.96326530612242,1.3877755102040796,0.035365855448997376,-7.159183673469393,29.397077349458293,-6.905591158209882,568.2074891918367,1.5072594959275958,1.4250081632653002,9.975746837372352,0.6834829918367347,460.5259248094088,-175.71020408163267,-0.632673469387757,0.18257399352970058,-5.8775510204081645,-33.53081380700429,-8.01617936349986,-839.636230081633,-5.092617329668706,-0.9808097959183749,4.754124752324342,-0.5156473387755096,-1077.765358830454,-15.609795918367311,-3.196326530612245,-0.2959910895875892,-8.213877551020408,-65.52357772738726,17.412929203603387,-44.02992234122452,5.384239532751014,-2.9728667755102043,-19.386297820454203,-2.161751895510203,618.2565987834452,21.835102040816295,0.6994081632653066,0.15971895889258503,-5.752653061224491,-20.212617787855883,-30.386575334729493,67.03851187510229,-5.796007831087564,1.155899755102043,1.4378905654625813,1.259011549387755,-969.5945559065058,110.69224489795916,-0.3433489795918352,-0.04552563218825474,2.733061224489799,-23.36006046863189,16.271601078108098,534.8036819893881,4.447869265556289,-0.05777453061223903,-9.160379515317786,-0.14738676489795938,748.1821460064695,-221.9208163265306,-0.31969387755101886,-0.014586644135591341,-1.2187755102040803,-10.11789367598891,-8.115404115014451,-1048.0962951893878,-4.118273672458692,-0.8278797551020368,-0.8150815424477977,-0.38519734938775513,-758.421890504822,122.76897959183673,0.7630612244897971,0.04450603158890742,-1.5820408163265296,0.42642479213908047,-2.081187851445841,578.7461103575513,1.5772948318170537,0.9332904489795962,3.3200731595793314,0.46874936897959135,305.3562582820348,0.7459881338749831,0.6519537313015401,0.43521957953711193,0.3396096622838338,0.2944251769845963,0.20292170895130018,0.18217718785064324,0.09766388741320939,0.11360467633482693,0.05795007831103424,0.0728277268133634,0.02904173939833684,0.04710660061124416,0.018641613326395527,0.0288186539878514,0.008836953380514947,17.001102324156268,5.693659163638262,3.5287186926052274,2.1907215189803324,0.3720484056597717,-0.38249674101574965,4.029249339060953,0.9917617485040447,6.007563624649414,0.7739961594167226,14.540234077220543,10.953304401574963,35.45051705949524,11.704886276878927,2.2077742153290476,0.771323536523178,3.4721199159618226,2.241567156724431,6.002558794409747,1.1561899310881334,3.6855101245348085,2.4378022413583222,22.455859990114384,14.706374522015295,0.293858101888249,0.6257151478688261,0.7513718233431333,0.8392941088759489,0.8392941088759489,0.8392941088759489,2.0761354022735077,421.63541876010703,0.0,0.0,4.0,0.0,5.0,2.0,1.0,1.0,0.0,3.5761247531941662,1.822126786023353,1.157980714656596,0.6932760716140125,0.6932760716140125,0.6932760716140125,88.98483118536691,621.7912828286887,31.53758549651025,17.76546522367682,38.1159618128099,,8.0,218.0,5.7871111525705965,5.106527394840706,11.580766081531305,17.19296676995124,0.0,0.0,12.13273413692322,32.903945735995094,5.316788604006331,16.337802844032566,8.280952380952382,17.0,6.5,0.5,10.5,0.0,0.012885154061624604,-4.0,0.13034013605442163,0.039382777501244304,-0.09095735855317733,0.058322276278932494,0.14364906526730048,0.0,0.5691156462585036,0.8540616246498597,0.438775510204082,0.5297328687572593,0.7957393483709272,16.707087448138275,0.5802611307050825,0.7522611307050824,10.987547520172054,3.107731506259265,4.726220925408748,27.69463496831033,7.833952431668013,0.5703509347326995,0.3076480736055204,0.12075905692926968,0.18113858539390454,0.5384615384615384,0.3987127929938646,-0.5643823325883162,-0.04111252908802383,-0.016125209502523316,-0.05130748478075601,0.6012872070061355,0.8511286379789136,0.030682942299778793,0.024317961085111816,0.035463693249121395,-3.6468235144469485,0.6912589194699285,0.9316669083318794,1.640833979157988,1.1502200808945993,0.6714967143717512,1.312679820778942,0.696709468492733,1.0282714409424163,0.8628654403845726,1.1597187084848375,0.887710774673698,1.0173290872769707,0.6181192660550457,0.8867621846056299,1.1162899080726625,1.8425300609454787,1.0860523500086496,1.2323431386802657,0.6206656532452434,0.8855944492255645,0.8119027087560156,0.737885399944677,0.8737312757753438,0.853752792570106,1.041794087665647,1.350278488437344,1.357812273413325,1.2174637163930528,1.2374433330452672,1.2068553532205288,1.0443546784998408,1.1562742422254884,1.2795087690706037,1.0923573496155494,1.2777350785806958,1.1636323570429894,0.8386275066980595,1.7000511335606387,1.4830778994257194,1.020399461825624,1.3666671006332833,0.7652889194280952,0.8340088595208279,0.6893955121561087,1.538988399228395,1.7047824652398822,1.6117692956269025,0.7984377657321098,0.8561170767306087,0.7521034368814775,0.850228417957853,0.9845240412692234,0.9223358210550491,1.2496407822597764,0.8660100233286885,1.224865119011764,0.7229325999474033,0.904687686046526,0.6295321129628682,1.194900090356739,0.8930619266055044,0.9023426686854835,0.759763387912183,0.6732407046914543,0.9495676587772488,0.698507512553722,0.8903106753347172,0.7363728212653119,0.9098487104939044,1.2419237792626827,0.8898210676330498,0.7911746851376104,1.7892113620324628,0.46375626762037137,0.459882453504129,0.6370449678800858,0.6817837400244232,1.0034458627717693,1.784641152139852,1.437988931601382,0.7772589114851216,0.2795009219188147,0.7181165665871818,1.3292385753359688,0.6693218447805603,0.18588336849379505,0.08857485723860793,0.7059146941373923,0.691500933154888,0.8671091875095436,0.6730158655874389,0.802101626806154,0.29164572355564283,0.16809527141379038,0.23224089633543776,0.849606718258307,6.5,0.0,3.3333333333333344,1.8125,1.3155555555555556,0.6180555555555555,0.3020408163265307,0.1840277777777778,0.04081632653061224,0.0,3283.3041466520317,3788.2679150761955,1625.7526733875832,1437.295445316678,10.007597057453268,0.4658838176789575,5.345219534534238,0.8722518304059312,1.0,0.5384615384615384,1.5531582637508001,3.3071562309216134,3.9713023022883704,4.436006945330954,4.436006945330954,4.436006945330954,0.3611111111111111,0.0,0.11904761904761908,0.06473214285714286,0.0597979797979798,0.03433641975308642,0.02517006802721089,0.030671296296296294,0.01020408163265306,0.0,0.7050707185230994,13.432098765432098,4.591836734693878,2.71280276816609,106.74107415893661,1.0,3.7678625802047416,58.573467519717994,,47.62286438087975,48.1459891583289,49.01784369261419,47.60509565061034,63.86949360719436,48.40048637783896,48.56234119131317,58.10037143733687,0.004948806739821316,-0.060615984146762336,-0.6009655138695849,0.33966809421841554,0.36566397894303854,-0.027316022052840738,0.006148829325968352,0.014452080232121125,-0.048706638773487756,-0.2504988922159511,-0.07825694214074758,0.027845773560991605,0.152512557598904,0.19283088016360875,0.037440940181112915,-0.14445725580629232,0.13528451988993295,-0.07989530350312146,0.1537575366007737,0.09072760011469166,0.18865776302591578,0.16962736949055682,0.13113155480489574,0.1355069495964317,-0.16133372309168315,-0.06349036656926352,0.1395957963889727,-0.08565310492505357,-0.11144456436032917,-0.06698208492396913,-0.1640935369208682,-0.2213926942069408,-0.09378059207286148,0.05838374230395419,-0.07145014701163085,-0.22903536873646485,-0.011415356107531886,-0.25547206415751417,-0.18025035505257467,-0.09533645373405848,-0.1734508632316324,0.11588497615027696,-0.0068534980167913465,0.18642780241657594,-0.22639544715708368,-0.18961832309641463,-0.23857243344265217,0.1046432354648166,0.020504219202276373,0.07178252744873709,0.12489634619927428,-0.08573827136460972,-0.06870640069457423,-0.2596766077692507,0.01339937397947062,-0.2576979968505328,0.11303376264290248,0.018059554250230404,0.17841850554481004,-0.21073095651917423,0.10394538340774172,-0.03523901899711976,-0.035599938530459965,0.040733891376289716,-0.07940513651683512,0.13905331957920056,0.10689429613122291,0.19775801437656643,-0.005649687657778264,-0.11505212898894004,-0.020886644243228683,0.16260934874072747,-0.3526674519490223,-0.05552667861066235,-0.019303140825741714,-0.03074040520507327,-0.05820282625301403,-0.11736552670959868,-0.3545199322740484,-0.30986791584927875,-0.13700442800806908,-0.01732453472152063,-0.09237890323393518,-0.2789512798112285,0.2741937836379282,0.18626376702951022,0.08277383608913753,-0.05607963423809245,0.003447450416827672,-0.042300285924886306,0.27512444319046975,0.16679226544342285,0.21706299063790366,0.09917673217770016,0.15799081064736603,0.15784322419491006,3.925136389583283,6.4829413267486204,1.1905507889761497,17.89524591522047,31.633194999182336,35.68368358730016,36.15210586748709,36.15210586748709,36.15210586748709,33.67614608571784,26.162386115041464,1.970150912489486,3.7815877032091594,1.7620213549777228,7.513759970676368,2432.704523698037,2200.71745237228,504.24615931966264,25.0,28.0,34.0,41.0,53.0,48.0,39.0,37.0,26.0,255.102606496,18.0,4.532599493153256,5.37989735354046,6.300785794663244,7.1785454837637,8.096512917501594,8.987321812850125,9.90323752128092,10.800493522998416,11.715237539904505,0.6476190476190476,0.9714285714285716,1.131392601821063,0.6083518679305874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6603297519247221,0.9616806722689075,1.0022994485485384,0.6044247971853102,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,15.160178952647085,0.0,0.0,5.7871111525705965,0.0,0.0,0.0,0.0,0.0,23.733674027155736,32.903945735995094,16.12501005782167,12.648722793660879,175.1425062686151,-247.91613903586446,-18.059494227536955,-7.083318258167555,-22.53783082144222,264.127337453982,373.8751437928243,13.478091268973294,10.682146965509265,15.578130991367676,0.5,0.9199908582102837,0.2547353220299565,40.39959810252411,0.15124464641787097,75.57740234900096,0.08000914178971633,4.0,0.05555555555555555,0.3028022159471074,0.6447599440304186,0.7742412124986824,0.8648395751757656,0.8648395751757656,0.8648395751757656,2.2720000000000002,,1.2899159663865545,0.8737040977231583,0.7031788698096897,1.3022161039574311,-2.4488253927316816,0.8716640456749766,0.8470367662118319,-1.0340249546218707,67.97750000000003,9.843390348640755,0.0,5.316788604006331,0.0,38.13908883317377,6.606881964512918,34.85155307928476,0.0,0.0,3.6109179126442243,0.0,5.003946305945459,0.0,6.597145701886651,0.0,8.279189777195004,0.0,10.007261810752583,22.666666666666668,7.144023329239102,0.0,0.0,0.0,0.0,0.0,1.275054327286471,0.0,34.00000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.5987410637372,5.316788604006331,0.0,0.0,23.294175440884928,10.523974106370645,0.0,26.334663090768867,24.26546827384644,5.022633313741326,0.0,0.0,21.292315377570556,23.111541317365273,20.48691786651392,117.14693503943602,,95.15095577773891,96.35350530558881,98.10949590189782,95.11191658192978,128.60327852947051,96.82772562723082,97.13078569770974,116.56569285865794,20.48691786651392,117.14693503943599,,94.1645494505022,95.68537864262404,97.57177088380809,94.11610426713887,130.18781260712043,96.1611590040676,96.48305170001834,117.23476782929569,4.964452155904826,85.88365584729853,,70.22623597467823,70.59810929422689,72.10779087981268,70.21184806820719,95.15301328119608,71.04606975264757,71.27546822402027,86.21986977492841,1.2051128156772895,6.8909961787903535,,5.597115045749348,5.66785325326993,5.771146817758695,5.594818622466457,7.5648987370276775,5.695748566307695,5.713575629277043,6.8568054622739965,2.482226077952413,58.573467519717994,,47.62286438087975,48.1459891583289,49.01784369261419,47.60509565061034,63.86949360719436,48.40048637783896,48.56234119131317,58.10037143733687,33.65882352941176,0.0,5.989998232832228,5.942718564534866,0.0,0.0,10.624413580246912,35.080480699198844,0.44479497354497344,3.3460279667422523,5.668441358024691,0.0,-0.20396604938271645,0.0,-1.4537285052910054,0.0,0.0,21.154867901485854,404.1242405122493,54.360539231278004,115.75046808225648,138.99558058009296,155.2602430865834,155.2602430865834,155.2602430865834,366.0,107.89463143965622,35.1456032103478,50.498461508423915,41.489999999999995,41.489999999999995,1.0,6.959517213540726,5.169925001442312,3.6922418178015675,4.063789011446407,,4.067150695282008,4.061967285278529,4.064165580954959,4.067234496180647,4.070670714386734,4.063271048678847,4.063650587435013,4.0677924211939995,0.21719069516479808,0.23904641243802396,,0.23924415854600045,0.23893925207520758,0.2390685635855858,0.23924908801062628,0.23945121849333728,0.23901594403993218,0.23903826984911838,0.2392819071290588,1.8368620633372965,1.9327440435158432,,1.933570930480547,1.9322956603421726,1.93283670385358,1.9335915345942374,1.934436031629136,1.9326165773068007,1.9327099801408467,1.9337287007081037,193.36999999999964,87.21933036522657,81.15510218476169,,80.85333262762605,81.32341979125559,81.23821851162296,80.84186875793131,80.89451925898717,81.23238627865123,81.20706941327312,80.97395001151622,5.130548845013328,4.773829540280099,,4.756078389860356,4.783730575956211,4.778718735977821,4.7554040445841945,4.758501132881598,4.778375663450072,4.776886436074889,4.7631735300891895,4.999054235910361,4.9269904165492315,,4.923265056119828,4.929062292445908,4.928014058824204,4.923123260078687,4.923774325723979,4.927942264508158,4.927630556179966,4.924755749212601,5.668441358024691,0.0,14.564477355757116,0.5463177910052914,-1.319027777777778,6.940057279856386,0.0,6.4347932063772015,0.0,233.67025464978485,76.93482135779854,-108.90208365059384,-7.9329912070393025,-3.1114881043026807,-9.900189422781256,116.02317424627635,164.23207598563747,5.9205190454008,4.6923450281610695,6.843003166068225,482.0,28.0,2.5370097156389857,1.595583379985807,0.36785113019775795,0.20312900913137338,0.5898430018766758,0.14446290226738215,0.1422588984322123,0.02196026152894708,0.0,0.0,0.0,0.0,0.0,0.0,0.1343643696413162,0.048611111111111105,0.358586927781371,0.12761954487924027,12.681798275874712,11.083213432126183,7.833952431668015,6.112973921109009,8.243904955568697,5.681807850636405,6.19402438692187,3.3205721720491193,4.657791729727904,2.375953210752404,3.85986952110826,1.5392121881118526,2.2611168293397195,0.8947974396669853,1.1239275055262046,0.34464118184008297,4.447863279367679,1.8884907763373349,6.370352504073988,2.6212130494984245,10.076353102734737,3.2954052364555504,57.56911288454019,33.26683529805308,25.242522881379852,23.392095103408902,23.392095103408902,23.392095103408902,92.0,108.0,38.59627399999998,20.873725999999998,0.34285714285714286,52.04,7.208333333333333,3.5416666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,35.0,0.0,1.0,36.0,6.0,0.0,3.0,33.0,6.0,18.0,30.0,0.0,0.0,0.0,13.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,3.0,2.0,1.0,17.0,4.0,0.0,1.0,2.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,1.0,3.091042453358316,5.022234429939608,3.6506582412937387,4.047427642434349,4.473066345354754,4.922259350144829,4.888938359118736,4.977595440018056,4.997212273764115,4.826311734631628 +64143,Cc1c(O)cccc1C(=O)N[C@@H](CSc1ccccc1)[C@H](O)CN1C[C@H]2CCCC[C@H]2C[C@H]1C(=O)NC(C)(C)C,0,21.83529411764706,5.894450588235294,2.976470588235294,5.228758169934641,163.07728088013303,85.91151180000003,1.4572376084494705,5.97171294117647,3.823978253852981,7.4868589764705895,201.68932023128863,23.113636363636363,6.168556818181819,3.647727272727273,4.909090909090909,145.9068317228387,86.37811532954547,1.8154676963863636,6.319397727272724,2.6993020482603813,7.6285099090909085,252.39925128510268,19.061728395061728,6.00138888888889,3.3518518518518516,3.5864197530864197,153.00661515571358,69.69644055555554,1.5504567259443212,6.122973456790123,2.4653825636335926,7.529475543209878,207.34999216721593,15.574468085106384,5.966968936170212,2.7319148936170214,2.6624113475177307,158.3083519918405,54.52054816595745,1.3389432275172939,6.061421702127658,2.4673496191226687,7.542628306382976,171.89862888329455,13.056537102473499,5.803038515901061,2.4134275618374557,2.0789163722025914,163.69527085161624,45.272175452296814,1.1305143753795408,5.87600106007067,2.341714653404878,7.446154318021201,141.7069987049664,14.184615384615384,6.036756923076922,2.5384615384615383,2.4423076923076925,164.49057401289315,49.26573210384614,1.1521538735758918,6.097625769230768,2.878228869895536,7.660354853846153,149.7491520149182,15.050980392156863,5.995560784313727,2.6784313725490194,2.5843137254901962,161.77928802931135,53.139820690196075,1.2600991954884075,6.071752156862744,2.641521423384168,7.58298139607843,164.321176301562,14.51864406779661,5.882003050847457,2.48135593220339,2.2824858757062145,159.90858282037968,50.60905116271187,1.2566214312165525,5.969397288135595,2.4680372462858338,7.498732718644072,158.4207371203381,13.399390243902438,5.831109146341461,2.317073170731707,2.034552845528455,163.37186447079597,46.33472622256097,1.1571042819896282,5.904918292682928,2.483678673592292,7.489074341463415,144.59746345058045,8.875294117647057,0.09768622837370242,0.015916059266707517,0.6012456747404844,3.1461130334486724,1.4302748042212996,41.29084072442907,0.2639079450475016,0.09479617993079578,1.3916695857718542,0.058540791141868505,52.13139633938089,0.4009090909090908,-0.004788648159798536,-0.008930492416030235,0.1734869455803711,0.8857348572227459,-0.01621751009203246,1.8957889319880492,0.018391242111965498,-0.003649629128656641,-0.09589069574595968,-0.003632969216734804,2.492594864388677,0.3328395061728394,0.009154011277713767,0.00046006841739372115,-0.07611858686829856,0.10734456358190814,-0.07187504737747456,1.573183764895554,-0.002039040419636451,0.008604873083002352,0.10670633308118217,0.004437548219061053,0.2900945755345195,-0.847659574468085,-0.0007474048442905892,0.0010191848360154305,-0.02792902893322539,-0.049025006748631916,-0.08069819173693688,-4.113690488083632,-0.03021429356777833,-0.0025161649120222984,-0.026003616994009392,0.0009438925126997086,-7.305505809101621,0.6130035335689046,0.0025158044677026877,-0.001181221949173873,0.0017474659787007762,0.05992405747721384,-0.0784926323839172,2.8598920862132116,-0.0057216146401475355,0.004285495396578907,-0.0008184940664316923,-0.00017648854365608273,1.3628494063962822,-0.17384615384615376,-0.0051571107266435,0.0008325255179275145,0.0056321533138142124,-0.2633025759323337,0.01465263589744668,-0.7788986785467127,0.005659167480733113,-0.00481617540590888,-0.04076434847908955,-0.0016436206893798032,0.9985161411418497,0.1286274509803922,-0.002690588235294037,-0.0003361383037098339,-0.04733564013840831,-0.1642496475714469,0.10822403368110996,0.5328797083275669,0.015214471596913479,-0.002811081891580084,0.014292813147206762,-0.0007006421683967564,0.6518559360945836,-0.22305084745762707,-0.0020751216937422694,0.0002449236192127315,-0.028164917013664893,0.017781948272828585,-0.10384004397516264,-1.110835860500849,-0.014971759229600432,-0.0021154062518326986,-0.04000760668852796,-0.002078718998299213,-3.6704366257770613,0.30329268292682937,-0.003924538990632107,-0.00023444630594417936,0.017082876192083717,0.05324134244802658,0.03332610780095246,1.4450499539425268,0.007348181720090632,-0.0023874926998058814,-0.036217897982917385,-0.001837631708582998,2.799421156693969,,,0.4841666666666666,1.00625,0.4,0.025,0.60625,-0.20625,1.3724458139302063,0.022508863865317162,0.03110886386531716,0.844698786375556,0.17169630815175524,0.303650167042255,2.217144600305762,0.47534647519401024,2.0212314701988987,1.6362164209281613,0.15632559093726575,0.17755960749397245,0.0,0.38501504927073726,6.67427150494119,1856.0,501.0283,253.0,444.44444444444446,13861.568874811308,7302.478503000002,123.86519671820498,507.59559999999993,325.0381515775034,636.3830130000001,17143.592219659535,2034.0,542.8330000000001,321.0,432.0,12839.801191609806,7601.274149000001,159.761157282,556.1069999999997,237.53858024691357,671.308872,22211.134113089036,3088.0,972.2250000000003,543.0,581.0,24787.071655225598,11290.823369999998,251.17398960298004,991.9217,399.391975308642,1219.7750380000002,33590.69873108898,3660.0,1402.2377,642.0,625.6666666666667,37202.46271808252,12812.328819,314.6516584665641,1424.4340999999997,579.8271604938271,1772.5176519999995,40396.17778757422,3695.0,1642.2599000000002,683.0,588.3333333333334,46325.7616510074,12812.025652999999,319.93556823241005,1662.9082999999996,662.7052469135805,2107.261672,40103.08063350549,3688.0,1569.5567999999996,660.0,635.0,42767.549243352216,12809.090346999996,299.5600071297319,1585.3826999999997,748.3395061728394,1991.6922619999998,38934.77952387873,3838.0,1528.8680000000004,683.0,659.0,41253.71844747439,13550.654276,321.3252948495439,1548.2967999999998,673.5879629629629,1933.6602559999997,41901.899956898305,4283.0,1735.1908999999998,732.0,673.3333333333333,47173.031932012,14929.670093000002,370.703322208883,1760.9722000000006,728.0709876543209,2212.126152000001,46734.11745049974,4395.0,1912.6037999999994,760.0,667.3333333333333,53585.971546421075,15197.790200999996,379.53020449259805,1936.8132000000005,814.6466049382717,2456.416384,47427.968011790384,754.3999999999999,8.303329411764706,1.352865037670139,51.10588235294117,267.41960784313716,121.57335835881047,3509.7214615764706,22.432175329037637,8.057675294117642,118.2919147906076,4.975967247058823,4431.168688847376,35.279999999999994,-0.42140103806227114,-0.7858833326106607,15.266851211072655,77.94466743560164,-1.4271408880988563,166.82942601494833,1.6184293058529637,-0.3211673633217844,-8.438381225644452,-0.31970129107266276,219.34834806620358,53.91999999999999,1.4829498269896302,0.07453108361778282,-12.331211072664367,17.389819300269117,-11.643757675150878,254.85576991307974,-0.33032454798110505,1.393989439446381,17.28642595915151,0.7188828114878905,46.99532123659216,-199.2,-0.17564013840828846,0.23950843646362618,-6.563321799307967,-11.5208765859285,-18.964075058180164,-966.7172646996536,-7.1003589884279075,-0.5912987543252402,-6.110849993592208,0.22181474048443153,-1716.793865138881,173.48,0.7119726643598606,-0.3342858116162061,0.49453287197231965,16.958508266051517,-22.213414964648567,809.3494603983389,-1.6192169431617525,1.2127951972318307,-0.23163382080016892,-0.04994625785467141,385.68638201014784,-45.19999999999998,-1.34084878892731,0.21645663466115378,1.4643598615916953,-68.45866974240676,3.809685333336137,-202.5136564221453,1.4713835449906092,-1.2522056055363089,-10.598730604563283,-0.4273413792387488,259.6141966968809,32.80000000000001,-0.6860999999999795,-0.08571526744600765,-12.07058823529412,-41.88366013071896,27.597128588683038,135.88432562352958,3.8796902572129373,-0.7168258823529214,3.6446673525377244,-0.17866375294117287,166.2232637041188,-65.79999999999998,-0.6121608996539695,0.0722524676677558,-8.308650519031143,5.245674740484433,-30.63281297267298,-327.69657884775046,-4.416668972732127,-0.6240448442906461,-11.802243973115747,-0.6132221044982679,-1082.778804604233,99.48000000000003,-1.287248788927331,-0.07689838834969083,5.603183391003459,17.463160322952717,10.930963358712406,473.97638489314875,2.4102036041897272,-0.7830976055363291,-11.879470538396902,-0.6027432004152233,918.2101393956218,0.7215808018204977,0.6261322496944176,0.442182767622335,0.3608270173652246,0.2973872183352294,0.2223564239215029,0.18456874706284418,0.12479388225885128,0.12004864229664347,0.07461872573691354,0.07502985447722363,0.04556156525994488,0.047355795499654275,0.028018045298335095,0.030836473565157375,0.017005105807579492,16.002005273593575,5.686426052226683,3.5457591588171615,2.185355968064344,0.40692682949864295,-0.365759083371775,4.01708509882582,0.9772378671894905,6.0231973121918285,0.6561912288918891,14.544340748974966,10.337665313312195,32.0609998029464,11.698067264488653,2.9164715796055845,0.7512173773782524,3.4910910323209188,2.235110924560754,7.009366881320017,0.6266395749869234,3.7039722179899095,2.4311278471683817,24.434239843991328,14.701778087289021,0.2231643468799534,0.5394978163785695,0.7566970575389879,0.8446323136685375,0.8696447389230324,0.8767911461386025,1.4611512423625457,1152.5947105502235,0.0,2.0,7.0,0.0,10.0,8.0,2.0,3.0,0.0,4.93986208043528,2.8568180460638732,1.426569187837428,0.8475188237330329,0.6828129413800932,0.6357541178506807,367.2003149356981,3030.2458731316538,69.35022846049196,35.6499514486077,69.84194639666717,,14.0,975.0,12.145807216896262,19.802129157825057,29.144637373518222,35.26032508837614,30.70270475020838,12.841643245852019,36.884723354466566,51.103046941379915,15.533486938863138,0.0,19.366666666666664,40.25,16.0,1.0,24.25,0.0,0.01583333333333341,-8.25,0.10121775025799779,0.029884778653729627,-0.07133297160426816,0.046666666666666856,0.11871311475409818,0.0,0.5415686274509787,0.8133333333333329,0.4403508771929809,0.511683848797249,0.766666666666666,54.89783255720825,0.9003545546126865,1.2443545546126864,33.78795145502224,6.86785232607021,12.1460066816902,88.68578401223049,19.01385900776041,0.5952868852459018,0.17211703958691912,0.02581755593803787,0.3046471600688469,0.5625,0.29334199521197557,-1.000532713158843,-0.038072011302878864,-0.01177097309598639,-0.03705676715403123,0.7066580047880244,2.4102735453717,0.03998772482642503,0.02835615935731412,0.0415564404374431,-6.050714092286793,0.897100645907645,0.8544527045590753,1.5673218911163165,1.064634605725766,0.6637225507657526,1.275007473124228,0.9038364518449801,1.063580729101015,0.8505605722402596,0.7507314611051966,0.8387507616029288,1.0705272938661399,0.9801264679313461,0.7113063710013476,0.8710918625361681,1.643646408839779,0.9861815368081992,1.2266437635395533,0.9777917180248954,1.1140481425190991,0.7270491440878345,0.5413563710894539,0.676681593198726,1.0608677735679837,1.1328941133999686,1.009851566395204,1.0303437286337251,1.1365640061126134,1.010359984823827,1.1608813414295691,1.1329860647072814,1.155896400270069,1.0213684491799992,0.8770505266524985,0.9586379563008474,1.1497328007655172,0.9708414990126243,1.0377645680131242,1.1874713778760946,0.9960613396325869,1.0077640890903758,1.033201805503356,0.9654043290533527,1.0098932633806983,1.0107658877121113,1.0415317209610038,1.0676501483709429,0.942698290245687,1.097408026755853,1.520838966738414,1.2206755012750417,1.0999787505312368,1.311489279139444,0.990254548451241,1.089434841102812,0.9358376086023472,1.4609635621075356,1.6856966742533925,1.5645964890981021,0.9152541338887615,0.9355311583806377,1.2277569734606808,1.2069569153387154,1.2504604051565378,1.1460679649616772,0.9718360672388278,0.9428788576812495,0.8719017058538594,1.2000772664835164,1.1223322069285933,1.2111067422951822,0.9513690345070678,1.105163829825476,1.077946116678634,1.042505618627861,1.089263976027718,0.9624519800523352,1.1036971298611764,1.0978735470493735,1.1121939814411128,1.069792089342256,1.080477798575369,1.1107588153866363,1.0723575711076319,1.1100729379510128,1.1993498580352009,1.0930641645057475,0.9846845101738312,1.016132444546818,0.9552120904349964,1.0932349354169537,1.0262927011352436,1.1667576472280987,1.2292566749853844,1.2333049291178908,0.9221220052500775,9.5,0.47903275176002447,4.888888888888891,2.875,2.631111111111111,1.736111111111111,1.1844897959183673,1.0885416666666665,0.7316704459561599,0.5781250000000001,8428.642957434251,9873.267706782157,3766.4642626946256,3304.133047480147,16.38378670277134,0.44877121622178084,9.031214817850405,0.8141287781560025,0.0,0.5625,1.4695288557024215,3.5525728900738285,4.982821748300274,5.561872112404669,5.7265779947576085,5.773636818287021,0.22093023255813954,0.007258071996364008,0.08014571948998181,0.04563492063492063,0.04313296903460838,0.028001792114695348,0.017418967587034814,0.015331572769953051,0.010305217548678308,0.008501838235294119,0.47666130196967,32.90427257977285,15.134641225477022,9.49831111111111,242.669857073699,0.0,4.60557697388728,278.9068866334665,,234.78701692748314,245.28503886935724,243.81181784776862,234.8157365188532,305.80449996376404,246.7888558582818,247.3512015104719,289.8105590902351,0.0451713583341367,-0.04902070885037529,-0.5610994698110121,0.2885458521680896,0.28153306883949764,-0.011338737174260675,0.045913062042992885,0.06968809562991823,-0.038499748948965934,-0.06890334942024068,-0.06205876527924981,0.047813698450768924,0.037501800138774334,0.09370830904326397,0.02890592512155764,-0.1266014710228953,0.03411974154795078,-0.05025261380913879,0.038100066196152915,-0.007726332071091826,0.090772361178311,0.07667504856908992,0.07580266908773134,0.005564680708837592,-0.09550777283906049,-0.007651076889071438,0.06403499879818333,-0.046451941538341035,-0.015582722625478019,-0.05642145935785556,-0.0996271913070986,-0.11448800286152798,-0.02654289354127116,-0.018685194574822258,0.01612367196084295,-0.14013639231034608,0.06906853175153353,0.025753931844705695,-0.07421572949559814,0.0029064092302286165,0.0190470135179876,-0.054879406497447054,0.06926214230656733,-0.02168034251154388,0.04520746932742917,-0.0005881382152773967,-0.0030147960116968377,0.026142583972314663,-0.019587649889876817,-0.052792607642858064,0.052307264252838846,0.009367474146479671,-0.08369139097450339,0.01024462981113911,-0.018863715654156923,0.021443717731629876,-0.0508055853033829,-0.029291685969037428,-0.028076502850749516,0.019153834565285844,0.014492753623188411,-0.027543168367613585,-0.021119442826714813,-0.07872928176795582,-0.052207166692736874,0.0756666015241956,0.012905518487355409,0.05765067661822375,-0.02965395750791079,0.01027026335369657,-0.011968443793299807,0.012504095072591814,-0.02513165699085141,-0.02124272508304663,0.015388458607027904,-0.04684427380840904,0.005652037318359334,-0.07260146348707963,-0.02690271839981308,-0.05673099090254982,-0.022315311158920246,-0.028747920553526186,-0.03550889828703577,-0.07040741057235703,0.03417269094483099,-0.04017494641740729,-0.014730172966532198,0.028412472487984543,0.01692289561181629,0.023300492816201543,0.0349968644035767,0.027843730581010015,-0.025185537028483918,-0.026024782285394305,-0.031390619647241484,0.05369933194325818,19.99955398772341,32.769040547479534,12.481884537918253,14.98543965038735,33.53331134661125,39.20757718558855,41.08573054084107,41.5106481878999,41.55808348201755,80.84925880795595,65.44865683712645,6.25302363749063,7.102384299758898,0.0,15.400601970829491,13259.3371063018,11934.929983308195,6087.77954172903,179.0,61.0,75.0,95.0,118.0,125.0,143.0,161.0,177.0,567.3130779200012,43.0,5.342334251964811,6.175867270105761,7.057036981697891,7.908019444632471,8.791638037085997,9.651880224221337,10.536964343355363,11.40321104034719,12.28940685334581,0.6,0.9630588235294116,1.1291038061361864,0.5561460817779781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6541295174357167,0.9506805074971165,0.9925324536223813,0.59425020533758,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,2.0,8.0,2.0,0.0,1.0,5.0,1.0,1.0,0.0,0.0,20.846631997694075,5.749511833283905,0.0,5.907179729351506,5.907179729351506,14.48898409899412,0.0,0.0,11.761884949391115,43.52793314262448,76.63787241078373,40.403678129867046,18.187648046044224,260.61238986651006,-888.8983704072946,-33.82413024598866,-10.457627887144643,-32.92216186693684,627.8127048022081,2141.3475027243594,35.52609821450331,25.19232356146306,36.919784529730336,0.5,0.9004147814289286,0.1488389867866608,181.09605320518145,0.08593511841515608,263.16987032295015,0.09958521857107142,7.0,0.20930232558139536,0.22927745714758344,0.5542762058784027,0.7774251559857139,0.8677692104947888,0.8934667976749198,0.9008089654406717,4.747620000000004,,2.053571428571429,1.6752702362517067,1.281385004616356,2.0499215542742757,-5.459584580867579,1.5300642594859244,1.486124284371629,-2.3963729217909213,160.5924999999997,19.802129157825057,0.0,15.533486938863138,11.835812092322787,88.4211136873379,18.842366418571938,59.65783953108687,0.0,5.749511833283905,4.465908118654584,0.0,5.802118375377063,0.0,7.319202458767849,0.0,8.918248591035702,0.0,10.560670711162487,51.0,14.796964215143053,0.0,0.0,0.0,0.0,0.0,1.9944462234592246,0.0,81.85999999999999,0.0,26.79383220740884,0.0,0.0,0.0,0.0,0.0,-0.3217766959604973,95.97382352157584,10.633577208012662,0.0,5.749511833283905,69.49626369623441,4.794537184071822,18.75954929201341,68.79675988116773,53.42642002321065,0.0,0.0,0.0,47.272416951128136,55.60100898203592,50.40900113021804,557.813773266933,,469.73081200478185,490.4863142269018,487.58639875125675,469.78967939581753,613.5827035941992,493.5012085035893,494.6280968067252,580.459848703097,50.40900113021804,557.8137732669331,,467.91828224225355,488.95590193459725,486.4331522471021,467.9802521752407,617.0685845083958,492.09334756176753,493.2506492712991,582.0174911022614,4.879949532191857,384.75046018484903,,330.5872632059095,340.75011914336943,337.71735107379527,330.632662456253,436.1272623478741,343.2699705319305,344.6224095054234,410.0307167741586,1.260225028255451,13.945344331673326,,11.743270300119546,12.262157855672545,12.189659968781418,11.744741984895438,15.33956758985498,12.337530212589732,12.36570242016813,14.511496217577426,2.439974766095929,278.9068866334665,,234.78701692748314,245.28503886935724,243.81181784776862,234.8157365188532,305.80449996376404,246.7888558582818,247.3512015104719,289.8105590902351,80.8078431372549,0.0,7.685840841279327,0.0,0.0,0.0,21.775298853736857,84.36525855790241,7.099654588138015,6.220428032207399,0.0,1.5746738881375424,-0.6857129016467423,2.1569067040396406,-0.34055595594265253,0.0,0.0,50.5112674536943,799.9510874321091,124.90995273470583,301.96869565627543,423.5398486055233,472.75912955439685,486.75912955439674,490.7591295543968,1217.0,162.15635844675663,88.47400723660911,77.06614825499769,127.2,101.9,1.0,7.808119860306033,6.426264754702098,4.734498292385162,6.229092552296603,,6.233531349436133,6.232045333382534,6.231061962631358,6.233537140179837,6.240692900781269,6.233023962180492,6.233879523855156,6.241907923298538,0.11836245730962905,0.15572731380741506,,0.1558382837359033,0.15580113333456336,0.15577654906578395,0.15583842850449592,0.15601732251953174,0.1558255990545123,0.1558469880963789,0.15604769808246347,2.941170124886444,3.215525025572831,,3.216237363096971,3.215998943953044,3.2158411388840737,3.216238292063345,3.2173855791284134,3.2161559633448764,3.216293216621436,3.2175802537059686,453.6700000000019,848.439504121574,292.33225506743463,,290.8152731736136,290.9798478964175,291.3416492171803,290.81523591895257,290.6587842947385,290.8741330248603,290.76101679240315,290.03627359278056,21.21098760303935,7.308306376685866,,7.27038182934034,7.274496197410437,7.283541230429508,7.270380897973814,7.266469607368462,7.2718533256215085,7.269025419810079,7.250906839819514,8.129693145811698,7.064185376336322,,7.058982626629821,7.0595483746783465,7.060790991923668,7.0589824985256024,7.058444377741008,7.059185002161575,7.058796042746318,7.056300357632805,0.0,29.999754220217127,27.995726885944254,0.5433338262603096,1.2722780430953866,13.93078789274311,4.671330342755238,8.762114900847036,0.0,556.3706928117099,231.53458713899508,-789.7196188799701,-30.050206115879533,-9.290819045646707,-29.248874773332226,557.7645616981258,1902.4268578265123,31.56227716943028,22.3814924450178,32.80046306597435,5398.0,63.0,3.8388756419662675,2.6027795093854325,0.3535533905932738,0.25,0.6763261186247367,0.26796922354705843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3089923432488318,0.18249775779574046,0.5153125325530719,0.3167811862239517,28.86323207281991,25.045289987776705,19.013859007760406,15.515561746704659,18.140620318448995,13.563741859211676,13.842656029713314,9.359541169413847,11.40462101818113,7.088778945006786,8.853522828312387,5.376264700673496,5.919474437456785,3.502255662291887,4.409615719817505,2.431730130483867,6.3395978694596336,3.510433970705487,9.93195310447865,4.880613858736154,14.411490114386611,6.515305385287583,135.155333217369,61.487752671359935,37.571487816736955,30.097100269873955,28.62532956450446,28.304445711691503,208.0,240.0,92.85368499999997,52.19031500000006,0.3411764705882353,289.08,14.145833333333334,8.652777777777777,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,12.0,12.0,85.0,0.0,1.0,88.0,12.0,2.0,8.0,80.0,14.0,43.0,74.0,0.0,0.0,0.0,32.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.0,6.0,4.0,1.0,40.0,8.0,0.0,3.0,4.0,0.0,4.0,9.0,1.0,0.0,0.0,0.0,2.0,3.9512437185814275,6.127960291696519,4.442651256490317,4.832305758571839,5.244389024522481,5.609013814870108,5.53758029974213,5.6949939686231215,5.7524734275551515,5.939430847108885 +60613,Nc1ccn(C[C@@H](CO)OCP(=O)(O)O)c(=O)n1,0,33.0625,6.993071875,3.125,9.790895061728396,170.61251710814332,132.87837341977013,1.5375595208714377,6.978203125,8.85720337267566,8.48197040625,201.5116266951718,35.3125,6.8418125,3.65625,6.375,155.56083741836406,137.481165378,1.731999604625,6.948915625,3.61376350308642,8.325857875,245.76431015113445,26.92452830188679,7.04716603773585,3.2264150943396226,7.119496855345911,163.13480756751184,100.69913287966037,1.3892205005546416,7.083892452830189,5.915705800139762,8.521002603773585,202.5668966368318,19.492753623188406,6.925347826086957,2.608695652173913,4.995169082125603,167.84444681589702,69.96277293307246,1.1495922002020724,6.929123188405797,4.724220194429535,8.463648840579712,165.58585403336025,17.285714285714285,6.3665842857142865,2.4571428571428573,3.6031746031746033,167.65080796643795,62.03769862657142,1.1589578422226285,6.402082857142857,3.527336860670194,7.959138971428572,151.0258129370694,19.73134328358209,6.54673432835821,2.4477611940298507,3.7097844112769485,168.14721111005244,71.28408514859699,1.1360408554139552,6.5778567164179105,3.9795467108899945,8.16323128358209,153.4249103639818,20.0,7.072709677419356,2.161290322580645,4.885304659498209,171.03603106782765,71.36249422354838,1.087884115644242,7.049464516129032,6.55303332005841,8.642400516129033,147.58876674917425,18.12962962962963,6.393337037037037,2.0555555555555554,3.1810699588477367,172.9403078159769,65.89594963055555,1.036126261600611,6.409440740740742,3.920724737082762,8.054363666666667,132.93847835787577,22.833333333333332,7.186805555555555,2.0277777777777777,6.867283950617284,172.94896223367675,84.36729829105555,1.0297490067761943,7.149658333333333,8.754572473708276,8.723265833333334,146.37098911497728,12.24609375,0.25418037109374997,0.04431543933126372,0.68359375,5.066309799382716,1.402914908647546,56.75887651831246,0.37944038595112106,0.22632568359374994,3.7977411112867463,0.16649703808593747,43.556919086762406,2.234375,-0.09664169921874996,-0.03180747903008148,0.04296875,-0.32696759259259256,-0.458136733308632,10.108848806662177,-0.05032220376953129,-0.07742177734375001,-1.2786482055273347,-0.0593639287109375,1.587186506346573,-1.6718012971698113,0.041792977962853785,0.007246416364292941,-0.11048054245283019,0.4519903403796878,-0.038186051014587816,-7.813344808056032,-0.09122819586015532,0.03610568433077827,0.9709644108919078,0.025467346348024725,-4.2830615867713915,-1.7451879528985508,-0.021618414572010823,0.00015833179096648523,0.022927989130434784,-0.8192843923331544,-0.02131970699559661,-8.170881962796253,0.022310185864307344,-0.024062549535778976,-0.42993863290107265,-0.006640822506227374,-5.140319301784253,0.29854910714285715,-0.0010417996651786157,0.000696527826496206,-0.056808035714285714,0.016284997795414417,0.04424956622024612,1.4340608058005468,0.011003651981176216,-0.0004439425223214119,-0.05495221957408295,-0.0035859965680803013,-0.1884700777094625,-0.7190415111940298,-0.021847208780317175,-0.007130227219352132,-0.10150419776119403,-0.4330985408605123,-0.1785193424052008,-3.2250800286784713,-0.06390074850758096,-0.015375450384794778,-0.4910906848282183,-0.018477556276235978,0.027577359216862163,-2.085811491935484,0.003725878906250048,0.012904398217151267,0.041204637096774195,-0.6154311653723616,0.07060849580224955,-9.798700465313473,0.021039517184481726,-0.004324121093749981,-0.03085096515964392,0.007974999716481806,-8.94662632879434,1.8546006944444444,-0.038308438223379655,-0.015496287035279556,-0.04586226851851852,-0.15370120313214441,-0.04249114567603565,8.784719680064965,0.016816254219198374,-0.02767689887152778,-0.7077487051741675,-0.028982048502604125,7.58614205118722,0.8129340277777778,0.09439784071180557,0.018851185060603643,-0.0013020833333333333,1.2001296724965707,-0.03755016752140447,3.593247416062445,-0.007693898513963102,0.0807354275173611,1.8724030698170822,0.06073242024739575,-4.211416052850762,,,0.45555555555555544,1.125,0.4444444444444444,0.05555555555555555,0.6805555555555556,-0.2361111111111111,0.7263582011805901,0.03330739973165474,0.038085177509432515,0.8787957231156525,0.22588797580061973,0.23603871126623086,1.6051539242962425,0.4619266870668506,1.936594726157183,0.9044870930553925,0.33026883550012676,0.5848018641118059,0.0,1.0321076331017898,8.720688181187514,1058.0,223.7783,100.0,313.30864197530866,5459.600547460586,4252.107949432644,49.201904667886005,223.3025,283.4305079256211,271.423053,6448.372054245498,1130.0,218.938,117.0,204.0,4977.94679738765,4399.397292096,55.423987348,222.3653,115.64043209876544,266.427452,7864.4579248363025,1427.0,373.49980000000005,171.0,377.3333333333333,8646.144801078128,5337.0540426219995,73.628686529396,375.4463,313.5324074074074,451.61313800000005,10736.045521752087,1345.0,477.84900000000005,180.0,344.66666666666663,11581.266830296894,4827.431332382,79.321861813943,478.1095,325.97119341563786,583.9917700000001,11425.423928301858,1210.0,445.6609000000001,172.0,252.22222222222223,11735.556557650656,4342.638903859999,81.127048955584,448.1458,246.91358024691357,557.139728,10571.806905594856,1322.0,438.63120000000004,164.0,248.55555555555554,11265.863144373514,4776.0337049559985,76.114737312735,440.7164,266.6296296296296,546.936496,10279.468994386782,1240.0,438.50800000000004,134.0,302.8888888888889,10604.233926205314,4424.47464186,67.448815169943,437.0668,406.28806584362144,535.828832,9150.503538448804,979.0,345.2402,111.0,171.77777777777777,9338.776622062753,3558.38128005,55.95081812643299,346.10980000000006,211.71913580246914,434.935638,7178.677831325291,822.0,258.72499999999997,73.0,247.22222222222223,6226.1626404123635,3037.222738478,37.070964243942996,257.3877,315.16460905349794,314.03757,5269.355608139182,391.875,8.133771874999999,1.4180940586004391,21.875,162.1219135802469,44.893277076721475,1816.2840485859988,12.142092350435874,7.242421874999998,121.52771556117588,5.327905218749999,1393.821410776397,71.5,-3.0925343749999987,-1.0178393289626073,1.375,-10.462962962962962,-14.660375465876225,323.48316181318967,-1.6103105206250012,-2.4774968750000004,-40.91674257687471,-1.89964571875,50.78996820309034,-88.60546875,2.2150278320312506,0.38406006730752584,-5.85546875,23.955488040123456,-2.0238607037731544,-414.1072748269697,-4.835094380588232,1.9136012695312483,51.46111377727111,1.3497693564453104,-227.00226409888376,-120.41796875,-1.4916706054687467,0.01092489357668748,1.58203125,-56.53062307098766,-1.471059782696166,-563.7908554329415,1.5394028246372067,-1.6603159179687494,-29.66576567017401,-0.4582167529296888,-354.68203182311345,20.8984375,-0.0729259765625031,0.04875694785473442,-3.9765625,1.1399498456790091,3.0974696354172284,100.38425640603828,0.7702556386823352,-0.03107597656249883,-3.8466553701858066,-0.2510197597656211,-13.192905439662375,-48.17578125,-1.4637629882812508,-0.47772522369659287,-6.80078125,-29.017602237654323,-11.960795941148453,-216.08036192145758,-4.281350150007924,-1.0301551757812502,-32.90307588349063,-1.2379962705078105,1.8476830675297649,-129.3203125,0.23100449218750296,0.8000726894633785,2.5546875,-38.156732253086425,4.377726739739472,-607.5194288494354,1.304450065437867,-0.2680955078124988,-1.912759839897923,0.494449982421872,-554.690832385249,100.1484375,-2.0686556640625016,-0.8367994999050961,-2.4765625,-8.299864969135799,-2.2945218665059253,474.37486272350816,0.9080777278367121,-1.4945525390625,-38.218430079405046,-1.5650306191406227,409.6516707641099,29.265625,3.3983222656250005,0.6786426621817312,-0.046875,43.204668209876544,-1.351806030770561,129.35690697824802,-0.27698034650267167,2.9064753906249994,67.40651051341496,2.186367128906247,-151.61097790262744,0.7643971413924633,0.5685097253171889,0.4619266870668506,0.3729756885699666,0.33059596182818757,0.20559771755177814,0.20500669815603506,0.0985393473440559,0.1297207072153857,0.05610813147745459,0.08640684900385628,0.03357655488273006,0.06316312935866356,0.017969605823977663,0.036077249528588165,0.01097037904712468,15.010857928506697,5.774096137246633,3.5508600629156364,1.9947453084091937,0.5015064064127157,-0.4201841769854586,4.02755075619056,0.976914481998155,6.0225784779856575,0.5352459432635988,14.558808283120433,10.452727663974844,30.978850388970905,11.792250626458921,3.6589861907138195,0.7461145321134295,3.497512834955258,2.115262172238971,7.008823225966509,0.29262428728580614,3.714884159720751,2.427409300740657,24.438644184806883,14.701858598519113,0.3773771413952189,0.7833384188798622,0.8945971167298774,0.8945971167298774,0.8945971167298774,0.8945971167298774,2.378265562387603,497.8508195677134,0.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,3.0489884817280273,0.9501991236427099,0.375,0.375,0.375,0.375,40.82006118475255,1316.741615792776,93.5320750229865,41.14817549352425,92.68686253434214,,10.0,276.0,32.34432444630741,9.35958546900315,12.362619183747604,0.0,4.567099647791355,12.263210640074686,0.0,0.0,4.9839785209472085,25.36388103130789,8.199999999999998,20.25,8.0,1.0,12.25,0.0,0.044444444444444585,-4.25,0.2666666666666666,0.02352941176470591,-0.2431372549019607,0.15458937198067613,0.2634505494505495,0.0,0.7000000000000003,1.011111111111111,0.4333333333333337,0.6764705882352944,0.856521739130435,13.074447621250622,0.5995331951697853,0.6855331951697853,15.818323016081743,4.065983564411155,4.248696802792155,28.892770637332365,8.31468036720331,0.45054945054945045,0.2520325203252033,0.12195121951219516,0.2317073170731708,0.5,0.45716977379285806,-1.2632368413283033,-0.12537089155290562,-0.03947615129150948,-0.12632368413283032,0.5428302262071418,1.4999310532768002,0.07090514599278194,0.046872845414900006,0.06817868423985456,0.6327890058463225,0.8578149920255184,1.176586662015278,1.7813491598612925,1.3285714285714285,0.8163485793155966,1.8073619077009508,0.8591430885308535,1.686860246281772,1.1070420590487904,1.09362321322568,1.1608831583064654,1.0641837893540704,1.1313773283981825,0.7774307463746812,0.8373782372635031,1.4438814016172505,0.8584369553055318,1.268171238712555,1.1301296885704235,1.4896921289688438,0.7620088580715978,0.5771623459206066,0.7961830169228545,1.1002971551455705,0.877054295818598,1.047527534696195,0.9212648382214218,0.780455486542443,1.1514073718459412,0.9863020504761949,0.8825945780914553,0.544213764294346,1.0708191330049353,0.974726367571823,1.024958389454066,1.0369771478161551,0.8487035771246297,0.7973122204494717,0.78967348487376,0.9919999999999999,0.8939007458678107,0.9522347076647328,0.8525692632072085,0.8155216581146212,0.8065590233633986,0.7358374859782209,0.7981406421968629,1.0302051337574496,1.1488204908471995,1.038946488936694,1.0225138177362736,1.226780383795309,1.0684313902383755,1.1009416426409808,1.1449213217475747,1.3561853164133162,1.019812442270702,1.0819815308739729,1.0584830429249477,1.017107881551664,1.103030303030303,1.1186015713035962,0.7448533839631784,0.7657142857142856,1.1490552567702632,0.8286013101796726,1.1036781054180844,0.7799616330315207,1.148176002934101,1.2639865965441865,1.1135775706220186,1.095084413917661,0.9353653494004371,1.1041425376241591,1.2972320240915687,1.0366137566137565,1.0227813649640312,0.8691025884976837,0.9314399107525285,0.9940617023098998,1.0863929050999588,1.1808358982240816,1.1052820634552647,0.8163879158171353,0.9185185185185185,0.796740681203878,0.6992643221914396,0.8463492063492063,0.8476438267785659,0.8822228236877546,0.9188871651293419,0.8895838313598046,0.8077826559610319,0.8034559233404619,0.8208223835740717,0.9717806415896846,6.0,0.0,2.000000000000001,1.0625,1.1733333333333336,0.5069444444444444,0.3657142857142857,0.3524305555555556,0.09070294784580497,0.10687500000000003,3730.6787253866255,4157.921161606822,2055.9364337578563,1890.0810993985733,11.879067025408254,0.45925074027437085,6.423596700220645,0.8492859343115702,0.0,0.5,1.9510115182719727,4.04980087635729,4.625,4.625,4.625,4.625,0.33333333333333337,0.0,0.08000000000000004,0.04829545454545454,0.06175438596491229,0.025347222222222215,0.021512605042016807,0.02711004273504273,0.007558578987150413,0.026718750000000006,0.6316303728301323,16.055555555555557,6.9632,6.144,102.001038725071,1.0,3.774234320159334,76.34797651693707,,52.12323261645476,58.96561748201833,59.31436465258818,52.0215187389484,93.37443764096955,59.64935158971776,59.571610254190084,80.85411386168789,0.1824561403508772,-0.38020913575228577,-0.71775163487191,0.06285714285714286,-0.06453762314977868,-0.32656059928131365,0.17810163672638407,-0.132622160509856,-0.34208127029330243,-0.3366865112862063,-0.35654645508046096,0.036439365768387015,-0.13651710752008667,0.16442252319884756,0.16351900090902918,-0.16161725067385446,0.08921490360395228,-0.02721907849094024,-0.1376585529407927,-0.2404282707848268,0.1595297703621974,0.2556689311986637,0.15295975616623134,-0.09833251930054615,-0.14250976585072694,-0.08505147143733317,0.003572835863883337,0.03354037267080746,-0.16171225700271563,-0.015196721386437809,-0.14395778183100633,0.058797604815796566,-0.10631824525479296,-0.11320904198111634,-0.03988552939181844,-0.11801384050017605,0.02437912964228754,-0.004098662932529775,0.015717497942185996,-0.08310204081632654,0.0032143707037810038,0.031541161867688815,0.02526584199280032,0.02899968582309446,-0.0019615207398126313,-0.014469711853387527,-0.021537900069005363,-0.004326983672422813,-0.058715989430836245,-0.08595159683774015,-0.1608971348800753,-0.1484861407249467,-0.0854859963189147,-0.12724887397290477,-0.05682071645019161,-0.16840787347241565,-0.06793506658481326,-0.1293112590978661,-0.11097828819452503,0.0006331338348777595,-0.17032463857591193,0.014658405329323493,0.29119418450732704,0.060276497695852534,-0.12147523340308687,0.05032984920683347,-0.17263732241338603,0.055448808201433795,-0.01910574630810214,-0.008123504013466318,0.047898748279026494,-0.20540080695269725,0.1514442672337409,-0.15071359782243082,-0.3496814489289563,-0.06708994708994709,-0.03033790060585547,-0.030287756879708725,0.1547726138876392,0.04431856713682718,-0.12228792787480212,-0.18636044017607323,-0.17406945394214782,0.17416617635595721,0.06638312954102428,0.37138131597497975,0.4253863968195951,-0.0019047619047619048,0.2368843833124448,-0.026765819715754542,0.06330723292070684,-0.020276962597635083,0.35672234028144845,0.49303072930705294,0.36476576968323426,-0.09668764782150704,3.3024975143599957,5.7144417267013825,0.9654893846056297,23.1002814938404,41.72854303336814,42.30834374999999,42.30834374999999,42.30834374999999,42.30834374999999,34.858705070829295,16.280767674997065,5.944839039002281,10.526433554012506,0.0,18.577937395832215,3606.5449319990453,3411.0161846469596,517.3885281084176,16.0,25.0,25.0,28.0,34.0,29.0,24.0,24.0,16.0,279.06202179800044,18.0,4.465908118654584,5.231108616854587,6.089044875446846,6.880384082186005,7.734121303328305,8.537191877922927,9.3868953338758,10.196865870532788,11.043609599160991,0.7604166666666665,1.038375,1.1552142593891817,0.7263882118474732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6444068488023953,1.0189950980392157,1.0501297341587765,0.6107042094952169,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,3.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,25.36388103130789,12.165833146889858,0.0,0.0,0.0,9.132147932722685,4.794537184071822,4.9839785209472085,0.0,0.0,6.06636706846161,6.196843571613076,19.255604758173796,217.8566375973533,-601.974466635626,-59.743409236573484,-18.81170208236331,-60.19744666356259,258.67669878210586,714.76714915715,33.78866578641302,22.336473411160938,32.489415870779546,0.5,0.4681157162716463,0.14244647255887122,154.939230168396,0.12684569666921197,6.350284984828398,0.5318842837283536,5.0,0.3333333333333333,0.39020230365439457,0.809960175271458,0.925,0.925,0.925,0.925,-1.6618000000000002,,2.5285714285714285,2.057696738604996,1.6407832156969757,2.535314185295447,-7.508366136999099,1.871494651330461,1.8199088740892482,-3.1943618779069722,61.77930000000002,24.195261839077034,0.0,9.551078168738563,0.0,12.648722793660877,18.688519810729932,22.74749122234998,0.0,0.0,3.6109179126442243,0.0,4.919980925828125,0.0,6.38856140554563,0.0,7.926241523170962,0.0,9.499795870977106,24.33333333333333,2.7430385093852356,3.464246937200806,0.0,0.0,0.0,0.0,0.0629021181517877,1.1219469639707735,33.228,0.0,21.979777759492993,0.0,0.0,0.0,0.0,0.0,0.0,36.96685630045381,11.423410875365658,5.817862777835028,0.0,43.50324749040026,15.846667644643954,0.0,0.0,17.057747824146507,0.0,0.0,0.0,23.24442277911914,20.62101916167665,20.838499045592815,152.69595303387413,,104.5228397380526,117.70260199308055,118.44642005898781,104.34331074404218,189.08257259142107,119.09075932928769,118.94100841125915,162.21034135083502,20.838499045592815,152.6959530338742,,102.5561730713859,115.87722099841088,117.00768740652421,102.37139971103457,194.39486987515346,117.42720852810504,117.32331163429097,164.9025896012828,4.610630804430087,114.32436175109626,,80.16231815095992,89.42238395957438,90.12059256477369,80.03225459912636,144.89027877054053,90.50310250666051,90.45617764746342,123.60514986554729,1.1576943914218232,8.483108501881896,,5.806824429891811,6.53903344406003,6.580356669943767,5.7968505968912325,10.504587366190059,6.616153296071539,6.607833800625508,9.011685630601946,2.305315402215044,76.34797651693707,,52.12323261645476,58.96561748201833,59.31436465258818,52.0215187389484,93.37443764096955,59.64935158971776,59.571610254190084,80.85411386168789,32.6078431372549,0.0,0.0,0.0,0.0,5.298507257433124,26.24361860331828,33.60415149308085,-1.3940397455278408,0.0,4.8130129598135545,0.0,-0.9159726946334097,0.0,0.0,0.0,0.0,19.54253470384694,223.0727440865879,62.43236858470313,129.59362804343328,148.0,148.0,148.0,148.0,257.0,105.56512967796282,253.46059229287127,50.34549763816605,157.70999999999998,147.89999999999998,1.0,6.815434376832115,5.169925001442312,3.702663110391764,4.18091676542998,,4.1941480455956786,4.179291080584797,4.180150196836158,4.194248084806453,4.190917526400207,4.1802319570343665,4.181976272169546,4.184913364166744,0.20570350613287577,0.23227315363499887,,0.23300822475531546,0.2321828378102665,0.23223056649089768,0.23301378248924742,0.23282875146667814,0.23223510872413147,0.23233201512053034,0.23249518689815243,1.8968389852149479,2.018317209264459,,2.0214768961378753,2.0179282991092053,2.01813384305069,2.0215007479467846,2.0207063549113164,2.0181534020126386,2.018570592092739,2.0192726671159553,185.43999999999974,101.21965271029684,83.14695302451562,,81.64007350510118,82.97724906208359,82.98728287245748,81.62079541398026,82.27041844650172,82.91883084208433,82.79480605577051,82.7224326489384,5.6233140394609356,4.619275168028646,,4.535559639172288,4.609847170115755,4.610404604025415,4.534488634110015,4.570578802583429,4.6066017134491295,4.599711447542806,4.5956907027188,5.205079599643802,5.008396225546313,,4.990106903199815,5.006353127438599,5.0064740425554515,4.989870740164077,4.997798272328704,5.005648852540149,5.004151995530758,5.003277483461671,16.541021736250364,32.0903508564047,8.991230631141345,4.667238360985656,0.0629021181517877,1.3877130180776014,-0.38467679201310223,-0.570010156840514,-4.313547549935613,221.3174023979206,103.81595036667751,-286.8609010011203,-28.469726130187762,-8.964403156285009,-28.686090100112025,123.26807031426131,340.6103743222913,16.101425639009882,10.644074197571603,15.48228974192233,665.0,22.0,2.455828378668748,0.9701899840365763,0.3535533905932738,0.07745966692414834,0.11785113019775792,0.016666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.016666666666666666,0.18419528592042317,0.02821175568066727,13.759148545064338,10.2331750557094,8.31468036720331,6.713562394259399,8.26489904570469,5.139942938794453,5.125167453900876,2.4634836836013974,3.6321798020308,1.5710276813687285,2.9378328661311137,1.141602866012822,1.8317307514012433,0.5211185688953522,0.865853988686116,0.2632890971309923,2.555113723374102,0.7442765977824819,3.095164075379205,0.8035429007635965,4.269300079999308,1.0188501811641548,62.107393672612,27.44296707227147,25.25,25.25,25.25,25.25,86.0,93.0,34.437101999999975,27.636898,0.1875,18.1,8.256944444444445,3.986111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,6.0,6.0,32.0,0.0,0.0,32.0,6.0,2.0,4.0,28.0,8.0,18.0,24.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,7.0,4.0,1.0,18.0,10.0,0.0,3.0,6.0,1.0,1.0,6.0,0.0,0.0,0.0,1.0,1.0,3.1780538303479458,4.73674654377681,3.7495040759303713,4.029806041084529,4.447053317890954,4.879482023876701,4.853981484050879,4.586242176102573,4.762707980204307,4.659895085677338 +6603857,CN(C)c1cc2c(Nc3ccc4c(cnn4Cc4ccccc4)c3)ncnc2cn1,0,23.372549019607842,6.105182352941176,3.627450980392157,8.0,162.31806514214176,92.407538627451,1.6068935490554705,6.193896078431371,2.974945533769063,7.567275764705881,237.1930703105079,26.327272727272728,6.406889090909091,4.2,8.327272727272728,148.57529964371454,100.8874225818182,1.8712992454545454,6.549183636363637,3.2121212121212124,7.761692072727272,275.74507535670386,23.054945054945055,6.365414285714285,4.021978021978022,7.010989010989011,156.81701108653783,87.1556936263736,1.6762540810323407,6.473684615384616,2.9975579975579976,7.767143384615384,243.5489875958784,20.144144144144143,6.218602702702702,3.5495495495495497,5.531531531531532,155.24742339210312,74.15718803603605,1.5707604901283332,6.330703603603603,2.8743743743743746,7.654933333333333,220.05318161086413,16.283464566929133,6.066038582677165,3.062992125984252,4.3858267716535435,162.45304173162228,58.44811440944882,1.340781973715189,6.148961417322835,2.6036745406824147,7.570748283464567,181.52292021183726,16.810344827586206,6.029243965517242,3.0948275862068964,4.681034482758621,161.72908480620112,61.20067118103447,1.3892304897545429,6.11421724137931,2.6120689655172415,7.532296310344828,188.23896227469805,17.77570093457944,6.00885046728972,3.2523364485981308,4.4392523364485985,156.97396795934753,65.04760169158878,1.4758228588559252,6.11596261682243,2.673676012461059,7.502256485981308,202.1830777466402,16.721153846153847,6.187449999999999,3.048076923076923,4.153846153846154,162.2235654025567,59.28686322115383,1.4218067874883846,6.27106923076923,2.7922008547008543,7.666017653846153,193.20644169151427,14.917525773195877,5.873144329896906,2.917525773195876,3.7731958762886597,159.80231054516682,53.142166938144335,1.3097074734740206,5.966855670103093,2.4215349369988552,7.411853402061856,172.52136709820064,6.738946559015763,0.07960138408304493,0.014070199532146438,0.582083813917724,3.680123029603998,1.728093412742509,32.27815727412534,0.21760825466930794,0.07748819684736635,0.36872570378914077,0.03730932718185312,49.0193923533667,0.5451889133550037,0.007641503617489793,-0.005148284719211942,0.23324595435322076,1.2346719793086576,-0.36147375700547585,2.5356908763202957,-0.017058465039295034,0.008524708678480297,-0.008099837280921564,0.0025515526755443144,-0.9800346100761002,0.42804331385646305,-0.0006837370242214314,0.00033714684730456004,-0.02810837758934645,0.04795281611890587,0.23592767221204206,2.1076204397294354,0.02947283291226544,-7.854375536036848e-05,0.021456009921984497,-0.0004941838937687255,5.735999676059726,-0.9201866226087677,-0.006788983447114917,-0.0010557034870092156,-0.05532175774390309,-0.33477768425865323,-0.41224275799742316,-4.459899068507954,-0.04656298198689456,-0.006805631929507357,-0.01702105796684809,-0.003252968234670686,-9.359421422528625,-0.28842934425584354,-0.007954325259515562,-0.002662000849310616,0.021127549367747724,-0.03352738347152972,-0.14448447343769513,-1.3589020325011276,-0.008182018243232928,-0.006844071480684291,-0.029422528450764113,-0.004248663294250859,-1.598873756361829,0.6055429609301463,0.01745515749910511,0.005363040025375185,-0.012780230415357492,0.2930007026475229,0.4519488287632363,2.867535445110633,0.026037939593842638,0.014606292672579516,0.041142074739895215,0.00966782427183179,4.541332580425147,0.14285662954938252,-0.001656799146266534,-0.001930409623666704,-0.09555275289518411,-0.4869766121585156,-0.22657415722286475,0.6725623448961038,-0.008523698156112227,-0.00041354044274848057,0.034421120880498465,-0.0016339150506455048,-0.5505724477554677,-1.9785770265874072,-0.026510207612456708,-0.0013116044833271065,-0.04795862538077071,-0.9991275544908764,0.32704877524522985,-9.343016426651731,-0.004739864332246314,-0.027434105595481005,-0.14583312795538866,-0.010801472732381063,-5.871087760078985,0.26913914949444484,0.004789580137694844,0.00044354948203127097,-0.010019936820493304,0.1007542697693592,-0.43273842036542504,1.2105231651307786,-0.026524688832954415,0.005685019243193532,0.023734373025089947,0.0012463332183894648,-3.096019888653275,,,0.47666666666666674,1.5166666666666666,0.8333333333333334,0.03333333333333333,0.6833333333333333,0.15,0.6798676671426186,0.008145904299254762,0.022479237632588092,1.1080473837785176,0.303907798301202,0.1850867494786464,1.7879150509211361,0.4889945477798484,2.0913363147698467,1.6038089422232085,0.48752737254663786,0.0,0.0,0.48752737254663786,7.748742032784326,1192.0,311.36429999999996,185.0,408.0,8278.22132224923,4712.784470000001,81.951571001829,315.8886999999999,151.72222222222223,385.93106399999994,12096.846585835903,1448.0,352.37890000000004,231.0,458.0,8171.6414804043,5548.808242000001,102.9214585,360.2051,176.66666666666669,426.893064,15165.979144618714,2098.0,579.2526999999999,366.0,638.0,14270.348008874944,7931.168119999998,152.539121373943,589.1053,272.77777777777777,706.8100479999999,22162.957871224935,2236.0,690.2648999999999,394.0,614.0,17232.463996523446,8231.447872,174.35441440424498,702.7081,319.0555555555556,849.6976,24425.90315880592,2068.0,770.3869,389.0,557.0,20631.536299916028,7422.91053,170.279310661829,780.9181,330.6666666666667,961.485032,23053.41086690333,1950.0,699.3923000000001,359.0,543.0,18760.57383751933,7099.277856999999,161.15073681152697,709.2492,303.0,873.7463720000001,21835.719623864974,1902.0,642.947,348.0,475.0,16796.214571650187,6960.093381,157.913045897584,654.408,286.0833333333333,802.7414439999999,21633.589318890503,1739.0,643.4947999999999,317.0,432.0,16871.250801865895,6165.833774999998,147.867905898792,652.1912,290.38888888888886,797.2658359999999,20093.469935917485,1447.0,569.6949999999999,283.0,366.0,15500.82412288118,5154.790193000001,127.04162492697999,578.785,234.88888888888894,718.94978,16734.57260852546,343.6862745098039,4.059670588235291,0.7175801761394683,29.686274509803926,187.6862745098039,88.13276404986796,1646.1860209803924,11.098020988134705,3.951898039215684,18.80501089324618,1.902775686274509,2499.9890100217017,29.98539023452521,0.4202826989619386,-0.28315565955665684,12.828527489427142,67.90695886197616,-19.88105663530117,139.46299819761626,-0.9382155771612268,0.4688589773164163,-0.44549105045068604,0.14033539715493729,-53.90190355418551,38.95194156093814,-0.062220069204150255,0.030680363104714965,-2.557862360630527,4.363706266820434,21.46941817129583,191.79346001537863,2.6820277950161553,-0.007147481737793532,1.9524969029005892,-0.044970734332954024,521.9759705214351,-102.14071510957322,-0.7535771626297558,-0.11718308705802294,-6.140715109573243,-37.16032295271051,-45.75894613771397,-495.0487966043829,-5.168491000545297,-0.7554251441753166,-1.889337434320138,-0.36107947404844615,-1038.8957779006773,-36.63052672049213,-1.0101993079584763,-0.33807410786244824,2.683198769703961,-4.2579777008842745,-18.34952812658728,-172.5805581276432,-1.039116316890582,-0.8691970780469049,-3.736661113247042,-0.539580238369859,-203.05696705795228,70.24298346789696,2.0247982698961926,0.6221126429435214,-1.482506728181469,33.98808150711266,52.42606413653541,332.6341116328334,3.020400992885746,1.694329950019224,4.772480669827845,1.1214676155324876,526.794579329317,15.285659361783932,-0.17727750865051914,-0.20655382973233732,-10.2241445597847,-52.10649750096117,-24.243434822846528,71.9641709038831,-0.9120357027040082,-0.04424882737408742,3.683059934213336,-0.174828910419069,-58.911251909835045,-205.77201076509036,-2.7570615916954977,-0.13640686626601908,-4.987697039600154,-103.90926566705114,34.0130726255039,-971.6737083717801,-0.4929458905536166,-2.8531469819300246,-15.166645307360422,-1.1233531641676306,-610.5931270482145,26.10649750096115,0.4645892733563999,0.043024299757033285,-0.9719338715878505,9.773164167627842,-41.97562677544623,117.42074701768553,-2.572894816796578,0.5514468665897726,2.302234183433725,0.12089432218377809,-300.3139291993677,0.6833808251084704,0.5606197194820602,0.43146577745280756,0.28583693846951064,0.2780822748187395,0.15339095665804828,0.17611211365319482,0.07761831359238441,0.11215633409011737,0.039955200998869456,0.07227924265238633,0.021021632721969497,0.04688650647531741,0.011022965904228717,0.03040753569790917,0.005745367993227472,7.175159895234196,5.681365567027486,3.2615745726746974,2.179141141428134,0.42163971022420843,-0.4335943673556659,3.2461007833611037,0.9889126032663459,5.167526051697617,0.9949370874973138,14.692401962313797,10.944575439336809,14.17027491512006,11.694340191632444,2.0068396618373976,0.913218123067394,3.237459557837505,2.2284563782993003,3.0618372096332105,1.4105477167354545,3.3953065167946037,2.424034717171614,20.905668407061505,15.443248430451193,0.23713187122557197,0.5785616331650073,0.7515250106644844,0.8502070770083896,0.8720413709651242,0.8720413709651242,1.136383950884006,1325.749955098526,0.0,4.0,1.0,0.0,12.0,0.0,3.0,0.0,0.0,4.2339622612170285,2.1628188730156497,1.1136075984210043,0.5149933824802044,0.3825446079279793,0.3825446079279793,290.62177964868596,1498.5123523469651,51.26676139939079,29.38259514405814,56.43437696552855,,16.0,829.0,0.0,0.0,0.0,0.0,45.6737181004283,5.563451491696996,12.524163646377618,60.20573554527117,49.63287424899544,0.0,14.300000000000002,45.5,25.0,1.0,20.5,0.0,0.02333333333333325,4.5,0.14385461501673885,0.0693005560433132,-0.07455405897342565,0.015913978494623615,0.11315966386554588,0.0,0.5901960784313727,0.7933333333333331,0.4463414634146338,0.5208955223880595,0.7774193548387095,20.39603001427856,0.24437712897764285,0.6743771289776428,33.241421513355526,9.117233949036061,5.552602484359392,53.637451527634084,14.669836433395453,0.6008403361344541,0.06993006993006992,0.0,0.33566433566433557,0.13043478260869565,0.28044911596677957,-0.634967402711641,-0.030865206789354803,-0.012450341229640024,-0.03735102368892007,0.7195508840332205,1.6291417228341705,0.04659397607273268,0.03194395534968962,0.047915933024534424,-6.354993670830914,0.7274075764491099,0.7955750736605167,1.4645871823064633,0.6277771106040589,0.5182729931998633,1.3423056616315665,0.7306338771384369,1.0183942634462324,0.749582276130949,0.8238455340639206,0.8711149588429388,0.9000690866108856,0.8377177363941398,1.1126058355332247,1.2637959587256655,1.2400743246185781,1.009985626575681,0.9762856359630351,0.8339317117734033,0.7823541793789234,1.0600553778614659,0.8505773320695411,1.1737185276398783,0.7698506084399096,1.036719626975218,1.0561368156304864,1.1484223795994493,1.1456139098147022,1.032007770411448,1.2955403503442535,1.0382389300360975,1.1635230983840308,1.0382854409403082,0.9667997952189581,1.0863570039308765,1.1132119570167867,1.0412810818775449,1.1764559508566785,1.252175593203941,0.9084502647208728,1.0089713764885115,1.075666631125615,1.0391771442513982,0.9963389934936705,1.1525310102064337,1.1221088204210823,1.2029968048140736,0.9968900117424285,0.9017345645981207,0.7767850397638153,0.6105268412367973,1.0381553773971666,0.923220744412583,0.7176881868023033,0.9025869154484406,0.8633566115945838,0.8075451783492674,0.8958391177463464,0.736414199839952,0.8930681697153285,0.9211563234472373,0.8839225994932548,1.024139551263126,1.2277929357152555,1.0954848838707916,1.1103044979159027,0.9231608863721381,1.037788512427115,0.8792356225364248,0.8276168413781084,0.897271577712269,0.998214782842178,1.2652695248042691,1.4854487725638528,1.2699204022251998,0.9231150289604714,1.25516329679514,0.8595944945929521,1.2585300879341272,0.9497336438377753,1.4726918121021253,1.5691143018193654,1.4806572704123249,1.0422660139518012,0.9523789918457419,0.7953517186193684,0.8701508628180057,1.024459001212055,0.9378998453392844,1.1703904507381224,0.9566738080709861,1.1399841928266496,0.8084983623255678,0.826898121302279,0.7913517916564204,1.0881451244813625,5.5,0.14029180695847362,3.1111111111111125,1.7916666666666665,1.5061111111111112,0.9830555555555557,0.47600907029478445,0.45921910430839,0.2547398589065255,0.17594135802469138,5914.19215103712,6491.097605484617,2998.484667990967,2782.6682400920263,16.760353384574884,0.47918168403497824,8.729099024732944,0.9200553616228045,1.0,0.13043478260869565,1.4384630807544665,3.5096064689558455,4.558817743550491,5.157431959491291,5.289880734043516,5.289880734043516,0.16176470588235295,0.006680562236117792,0.06481481481481485,0.03732638888888888,0.03585978835978836,0.023976964769647696,0.011609977324263039,0.013120545837382572,0.00878413306574226,0.007330889917695474,0.3712687710966939,21.825259515570934,9.868055555555555,5.0101775147928995,173.57962019189705,1.0,4.353762540476331,186.8412040601539,,135.17313939851852,132.1313834454505,129.32477695328004,135.19852872038285,181.02738465520804,133.87019936953112,135.35765982511495,167.35265011565357,0.08090120741877936,0.09599711996863923,-0.36589990834526287,0.40070853848925175,0.3354974736922084,-0.20917489433155806,0.0785574856329529,-0.07839070749047741,0.11001299585370378,-0.021967107792283263,0.06838913666567978,-0.019992793933701025,0.06351783770770542,-0.008589511754068448,0.023961767317817673,-0.048289227285264275,0.01303022092825681,0.1365248374146751,0.0652955626255324,0.13543986627278606,-0.0010136221844867718,0.058189623618575596,-0.01324558578502299,0.11701490778813728,-0.13654754709067804,-0.08528725379991187,-0.0750311667291733,-0.09504087971723377,-0.09096915553246523,-0.23855351508063904,-0.13817080791297454,-0.21397617501989885,-0.08782798163329136,-0.046161842778885145,-0.08718914224357541,-0.19093303635955436,-0.04280036081751763,-0.09992697176241476,-0.18919425010488977,0.03629640416480305,-0.009110397451885584,-0.08360918013592576,-0.04209974011095249,-0.03759976043035164,-0.08832405139282713,-0.0797951652092843,-0.11387670631373287,-0.032617168014568765,0.08985721367978722,0.2192820853578984,0.3811630398788696,-0.02195599690247347,0.07961709439889336,0.2615303232051484,0.08883826362074555,0.11965510974485612,0.1884970004057586,0.11157907983388836,0.25912620253667085,0.09264359190109879,0.02119865891476175,-0.02081369771834698,-0.1371984540273407,-0.16415634760922973,-0.1323261772068846,-0.1311122162448894,0.020836454175010784,-0.03916992105407678,-0.005336818503636865,0.09335156330783628,-0.04379374204958123,-0.01123172730878729,-0.2936033116244777,-0.33303701836138516,-0.09321861287968662,-0.08239127121227517,-0.27149297630910674,0.1892541067708827,-0.289453215910229,-0.021781638474373727,-0.35404237950613027,-0.3955057281246243,-0.28951132460075,-0.11977071681664274,0.03993786671811108,0.060169558517953255,0.03152403638753562,-0.01721390731182502,0.027377962355840293,-0.2504137896565805,0.037502858507389214,-0.1218919239679722,0.07336626059826494,0.06436864254698844,0.03340540590063679,-0.06315908337530907,15.569697896075255,22.76762471216668,7.31689054506498,12.262579823228286,32.28119434523584,40.97442516438305,43.0351621604495,43.16867052519814,43.16867052519814,62.7400894430954,48.11426826669626,14.625821176399135,0.0,0.0,14.625821176399135,9973.863489239842,9102.14548538377,1377.8700713955413,214.0,48.0,65.0,87.0,113.0,125.0,147.0,172.0,193.0,395.18584367200066,34.0,5.10594547390058,5.968707559985366,6.853299093186078,7.732369222284388,8.62245370207373,9.507700460979235,10.400771905735452,11.28924426915111,12.18421039867304,0.6797385620915032,0.9818823529411764,1.1254060604730867,0.645601009532112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.705796090172596,0.9698577470203769,0.9993002299244536,0.6665673902371863,12.0,4.0,0.0,0.0,0.0,4.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,10.216698334856808,17.9630456304346,0.0,0.0,0.0,4.681802935145185,14.951935562841626,5.098681808301038,0.0,30.33183534230805,29.828919765543436,30.55517866896753,29.97184498437125,185.61670006947827,-420.25646448100554,-20.428296988751185,-8.240322832960896,-24.720968498882684,476.2384797181642,1078.2558878659595,30.8384644106396,21.142272311097244,31.713408466645866,0.5,0.9314124233855765,0.16020669735946763,7.477740852743788,0.07423754442274089,80.50540504061684,0.06858757661442348,8.0,0.14705882352941177,0.25358871982165526,0.6187135585527257,0.803680519128003,0.9092110779017826,0.932560662350644,0.932560662350644,4.232400000000002,,1.0000000000000004,1.2996742671009769,1.5767470982035352,0.9975012493753128,-3.6272727272727265,1.1282894736842106,0.9818409517845959,-2.2352723977040014,120.2197,0.0,0.0,24.732420306287846,0.0,6.544756405912575,24.31204230021119,78.88176232584217,0.0,0.0,4.23410650459726,0.0,5.564520407322694,2.3978952727983707,7.0925737159746784,4.727387818712341,8.709630081951286,6.823286122355687,10.373459931293572,34.666666666666664,23.787615946741212,17.784582634902577,0.0,0.0,0.0,3.8952880882781544,3.7842194415194337,2.017422003134485,50.076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.39570908412742,10.216698334856808,17.323111830353618,0.0,38.82776427164223,6.544756405912575,0.0,5.563451491696996,73.31831083414518,0.0,21.805849864162113,0.0,32.92565148613771,35.9956005988024,40.10986097468057,373.68240812030774,,270.2796121303704,264.1761219397609,258.54910104058513,270.330557357474,363.2692585855461,267.6651794408166,270.6498635867776,335.4503910305418,40.10986097468057,373.6824081203076,,269.4020557241357,263.04447330590153,257.1825868888087,269.455139493307,365.6820420376887,266.67825495394834,269.78785557520337,336.94057262901117,4.880614612344081,286.2498864930039,,208.49413989379525,203.9460269133253,199.74846400523202,208.53209745175258,278.0367486839199,206.5461003129132,208.76999971025788,257.1565126232491,1.3369953658226856,12.456080270676924,,9.009320404345681,8.805870731325363,8.618303368019504,9.011018578582467,12.108975286184869,8.92217264802722,9.021662119559254,11.18167970101806,2.455040589163293,186.8412040601539,,135.17313939851852,132.1313834454505,129.32477695328004,135.19852872038285,181.02738465520804,133.87019936953112,135.35765982511495,167.35265011565357,49.46274509803922,0.0,3.9287595680765013,0.0,0.0,0.0,0.0,50.96431172614713,0.7440232277145017,3.429713218429398,0.0,0.0,0.0,1.9617092045370712,0.0,0.0,0.0,33.9949369020965,616.4601369363045,73.3616171184778,178.9899299167481,232.49970492107502,263.0290299340558,269.7839174362193,269.7839174362193,1228.0,141.66470208596897,45.395042851337955,79.92285985500588,71.76,71.76,1.0,9.559483802480036,6.087462841250339,4.845366107327339,5.391768230939915,,5.386613595320918,5.386345862461489,5.386039967744633,5.3866155737891575,5.3869118582092375,5.386506510675517,5.386627881906599,5.387368001906817,0.16151220357757798,0.17972560769799717,,0.17955378651069728,0.17954486208204964,0.17953466559148776,0.1795538524596386,0.1795637286069746,0.17955021702251722,0.17955426273021996,0.1795789333968939,2.676635095103879,2.783485677478154,,2.782529200690625,2.782479496083356,2.7824227037029567,2.7825295679840716,2.7825845702889387,2.7825093207218967,2.7825318529259264,2.782669242991667,298.8900000000008,286.8456337986831,198.7115010694455,,199.0829052460053,199.0519090278462,199.02599798199216,199.08317524960384,199.55919529942346,199.06929070876902,199.0848715081288,199.41285660003157,9.56152112662277,6.62371670231485,,6.636096841533511,6.63506363426154,6.634199932733072,6.636105841653461,6.651973176647449,6.635643023625634,6.636162383604293,6.647095220001052,6.757556498399808,6.390466318128288,,6.392333635911461,6.392177928763478,6.392047747985121,6.392334992147523,6.394723199278711,6.392265247303387,6.392343512462193,6.393989620546778,2.017422003134485,15.177126436006567,9.999813543514808,4.067907932411659,1.6106646757336003,18.563367520837843,5.224248425903369,0.7440232277145017,3.9287595680765013,335.4216411688884,122.85137439607344,-278.1489178559949,-13.52057417624527,-5.453900350117548,-16.361701050352643,315.2009046156591,713.6492445206087,20.410597406878686,13.99312244158056,20.98968366237084,2703.0,48.0,1.8470804841064388,0.8937402276117994,0.0,0.0,0.4388321936425753,0.13443534600944831,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.5103103630798288,0.142944680569979,0.749712558302988,0.170577704363052,20.501424753254113,16.818591584461807,14.669836433395457,9.718455907963362,13.347949191299495,7.362765919586317,11.447287387457663,5.045190383504987,9.75760106584021,3.4761024869016426,8.167554419719655,2.3754444975825533,5.860813309414676,1.3778707380285897,4.469907747592648,0.8445690950044383,4.484208431423214,1.6645077443356555,6.966419929499121,2.0285044591067827,10.496199113307473,2.4598172172563806,101.83802222131429,55.03303489574995,31.962284857168783,26.18641718392425,25.654755610801086,25.654755610801086,164.0,195.0,60.112652999999995,28.477346999999995,0.5294117647058824,286.07,7.611111111111111,6.472222222222222,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,27.0,51.0,0.0,0.0,55.0,27.0,0.0,12.0,43.0,27.0,34.0,28.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,7.0,1.0,3.0,30.0,7.0,0.0,7.0,0.0,0.0,5.0,5.0,0.0,0.0,0.0,3.0,5.0,3.8815637979434374,8.480665754386571,4.55650501400681,5.2169717270940845,5.865227911500195,6.4570639607687745,6.797713685265217,7.265205703408136,7.738602154663755,8.131017021703403 +3034034,C=C[C@H]1CN2CC[C@H]1C[C@H]2[C@H](O)c1ccnc2ccc(OC)cc12,0,20.208333333333332,5.927287500000001,3.25,5.958333333333333,161.81861390847868,79.45825116666667,1.4615649524245,6.007508333333334,3.1140046296296298,7.482503333333333,211.16162086877083,23.215686274509803,6.226960784313725,4.0588235294117645,5.8431372549019605,144.98857365093824,87.31942484313724,1.8105570022745094,6.376892156862744,2.799019607843137,7.654936862745099,260.4121049465177,19.268817204301076,6.14805376344086,3.763440860215054,4.56989247311828,152.984520331944,70.74111684946236,1.5751609047612043,6.263462365591398,2.4958183990442055,7.636615870967742,220.91939399893144,15.84732824427481,5.961656488549619,3.2213740458015265,3.5114503816793894,156.23332873154223,56.53538807633587,1.3986092399616794,6.063302290076336,2.3725614927905005,7.5001247633587775,187.73163138765733,13.18918918918919,5.829290540540541,2.668918918918919,2.7162162162162162,158.42920172592312,45.50600437837838,1.2419529987453986,5.920037162162162,2.3667417417417416,7.416063243243244,160.50874672663915,12.141891891891891,5.79618918918919,2.4527027027027026,2.5878378378378377,163.10267755123817,41.965560547297294,1.126766468242588,5.865443918918919,2.411036036036036,7.418008027027028,144.43292280376036,13.065040650406504,5.861552032520326,2.6178861788617884,2.6260162601626016,161.2103257636461,45.38429630894309,1.199166129115187,5.937977235772358,2.4480578139114724,7.459468162601626,155.3755793337045,12.918181818181818,5.868536363636364,2.590909090909091,2.2454545454545456,160.1444486219207,44.22154194545454,1.2311491458320636,5.951041818181819,2.400252525252525,7.454726472727273,158.44194852867028,11.03921568627451,5.811656862745098,2.3137254901960786,1.7058823529411764,163.0070525922934,36.40561359803922,1.1224001457654313,5.881259803921568,2.263616557734205,7.433996745098039,140.48451285935226,7.067708333333333,0.09304982638888885,0.015051439126871902,0.609375,3.3177083333333335,1.441226122768325,33.77642313888889,0.2328374115178055,0.09045208333333327,0.7692780671296297,0.05415308333333332,51.76323351674906,0.46170343137254904,0.0006915134803922215,-0.00483694607897642,0.26317401960784315,0.8685661764705882,-0.17611152015118667,2.200334419934627,-0.0023196103061421153,0.0021920343137255484,-0.06050219566993464,-0.0014468872549019804,1.2870989693191437,-0.1376008064516129,-0.011940507392473057,-0.0017599406981033392,-0.008568548387096774,-0.058299731182795696,0.05650986248464782,-0.5638843987455292,0.014009594522891598,-0.010491330645161237,-0.03585512806152926,-0.007224717741935498,2.125846246884815,-0.3441078244274809,-0.0018489994168786853,0.0008783124010736178,-0.09219942748091603,-0.07502385496183206,-0.02678814829472327,-1.661769914970318,-0.011255080767914958,-0.002210734732824403,0.04366369142281595,-0.0005656660305343567,-2.603949015340105,-0.49028716216216217,-0.0022814705330330325,-0.0014149703523304103,-0.048564189189189186,0.04265202702702703,-0.22694915796791884,-2.4148394170420424,-0.03647165016290803,-0.0021141891891891867,-0.01678338494744745,-0.0016428243243243232,-6.447762799382609,0.6423141891891891,0.008682211899399387,0.0005643432518605451,0.020692567567567568,0.2766047297297297,0.039964140273801504,3.0455190367867884,0.010606287719536782,0.008707094594594579,-0.010425464527027042,0.004021898648648648,3.2976051406571405,0.12334857723577236,0.0075295435298102995,0.001281813220975159,-0.039253048780487805,-0.16323678861788618,0.010919720824392317,0.5556198773712738,0.000925514606061652,0.006385315040650409,0.02682062302393856,0.005214583333333331,-0.016118666187683924,-0.7661931818181819,-0.004750546085858573,-0.0001422144762218397,-0.05710227272727273,-0.609375,-0.07113666732371945,-3.672493194949495,-0.018833875449164646,-0.005818977272727257,-0.020456518308080814,-0.0016716500000000009,-5.186964897528996,-0.9819240196078431,-0.015121435866013068,-0.0009773229283178463,-0.048100490196078434,-0.7037377450980392,-0.04474342389945012,-4.635082611111109,-0.01276464423330393,-0.015048651960784304,-0.16054985362200438,-0.007927563725490193,-4.515556517951798,,,0.4777777777777778,1.125,0.4791666666666667,0.020833333333333332,0.6458333333333334,-0.16666666666666666,0.9369896928622814,0.008632236013178826,0.026548902679845488,0.7782978970052145,0.21186671103084986,0.2759266180548503,1.715287589867496,0.48779332908570017,2.0757372127543223,1.7416526456787214,0.17957796219178554,0.1545066048838156,0.0,0.33408456707560114,6.753828708500014,970.0,284.50980000000004,156.0,286.0,7767.293467606976,3813.996056,70.155117716376,288.3604,149.47222222222223,359.16015999999996,10135.757801701,1184.0,317.575,207.0,298.0,7394.41725619785,4453.290666999999,92.33840711599998,325.22149999999993,142.75,390.40178000000003,13281.0173522724,1792.0,571.769,350.0,425.0,14227.560390870793,6578.9238669999995,146.489964142792,582.502,232.11111111111111,710.205276,20545.503641900625,2076.0,780.9770000000001,422.0,460.0,20466.566063832033,7406.135837999999,183.21781043498,794.2926,310.80555555555554,982.5163439999999,24592.84371178311,1952.0,862.735,395.0,402.0,23447.521855436622,6734.888648,183.80904381431898,876.1655,350.27777777777777,1097.57736,23755.294515542595,1797.0,857.836,363.0,383.0,24139.19627758325,6210.902961,166.761437299903,868.0857,356.8333333333333,1097.8651880000002,21376.07257495653,1607.0,720.9709,322.0,323.0,19828.87006892847,5582.268446,147.497433881168,730.3712,301.1111111111111,917.514584,19111.196258045653,1421.0,645.5390000000001,285.0,247.0,17615.889348411278,4864.369613999999,135.426406041527,654.6146000000001,264.02777777777777,820.0199120000001,17428.61433815373,1126.0,592.789,236.0,174.0,16626.719364413926,3713.372587,114.484814868074,599.8885,230.88888888888889,758.267668,14329.420311653932,339.25,4.466391666666665,0.7224690780898513,29.25,159.25,69.1788538928796,1621.2683106666666,11.176195752854664,4.341699999999997,36.92534722222222,2.599347999999999,2484.635208803955,23.546875,0.035267187500003294,-0.24668425002779742,13.421875,44.296875,-8.98168752771052,112.21705541666597,-0.11830012561324788,0.11179375000000297,-3.0856119791666665,-0.073791250000001,65.64204743527633,-12.796875,-1.1104671874999943,-0.16367448492361056,-0.796875,-5.421875,5.255417211072247,-52.44124908333421,1.3028922906289186,-0.975693749999995,-3.3345269097222214,-0.6718987500000013,197.7037009602878,-45.078125,-0.24221892361110778,0.11505892454064393,-12.078125,-9.828125,-3.5092474266087486,-217.69185886111165,-1.4744155805968595,-0.2896062499999968,5.71994357638889,-0.07410225000000072,-341.11732100955373,-72.5625,-0.3376576388888888,-0.20941561214490073,-7.1875,6.3125,-33.58847537925199,-357.3962337222223,-5.397804224110388,-0.3128999999999996,-2.4839409722222223,-0.24313799999999985,-954.2688943086262,95.0625,1.2849673611111092,0.08352280127536069,3.0625,40.9375,5.914692760522622,450.7368174444447,1.5697305824914436,1.2886499999999976,-1.5429687500000022,0.5952409999999999,488.0455608172568,15.171875,0.9261338541666668,0.15766302617994457,-4.828125,-20.078125,1.3431256614002551,68.34124491666668,0.1138382965455832,0.7853937500000003,3.298936631944443,0.6413937499999997,-1.9825959410851226,-84.28125,-0.5225600694444431,-0.01564359238440237,-6.28125,-67.03125,-7.82503340560914,-403.97425144444446,-2.071726299408111,-0.6400874999999983,-2.2502170138888897,-0.1838815000000001,-570.5661387281896,-100.15625,-1.5423864583333329,-0.09968693868842032,-4.90625,-71.78125,-4.563829237743913,-472.7784263333331,-1.3019937117970009,-1.5349624999999991,-16.376085069444446,-0.8086114999999997,-460.5867648310834,0.6950597415393837,0.5857885697830306,0.4335940702984003,0.32159223560280714,0.2658008249631668,0.17883060663938127,0.17200476747509827,0.10391936386802844,0.10738090887628186,0.058477710976984974,0.06777668246842039,0.03353135406826954,0.043982886638341656,0.018880829612553524,0.028529321763971275,0.010710897765292372,8.011353927593717,5.670063242299072,3.5224342082788564,2.1674933238518026,0.3964000783419313,-0.5293016341199063,3.2537053675757,0.9574759002787414,6.007460577248749,0.997570731019336,14.548157796401657,10.933095991098325,16.0049608273377,11.683118305777553,2.0116840975624433,0.7766105251985196,3.465202043799178,2.216711283654493,6.002602358515155,1.1673468732508094,3.678699179604975,2.412280107418001,20.91420367076588,14.706040527175164,0.24144884280990217,0.6196000920327691,0.8476476782097223,0.9047948784010268,0.9047948784010268,0.9047948784010268,1.4597148156867092,760.3873010425311,0.0,2.0,2.0,0.0,7.0,4.0,2.0,2.0,0.0,4.176617956563645,1.9709033111276626,0.6407268229617387,0.3073934896284056,0.3073934896284056,0.3073934896284056,247.5083442732248,995.542102398886,52.26402157250176,20.740460466643455,39.55461454439922,,12.0,483.0,6.103966387748303,5.106527394840706,6.041840829147961,11.835812092322787,41.72622269181311,6.4208216229260096,13.30664111289061,24.26546827384644,22.538844042230064,4.736862953800049,11.466666666666667,27.0,11.5,0.5,15.5,0.0,0.022222222222222216,-4.0,0.10315656565656545,0.04286398467432939,-0.060292580982236055,0.019888888888888845,0.11469686411149793,0.0,0.5486111111111113,0.7972222222222219,0.4454545454545458,0.5057471264367819,0.7773333333333331,22.487752628694754,0.2071736643162918,0.6371736643162917,18.679149528125148,5.084801064740397,6.622238833316407,41.1669021568199,11.707039898056804,0.599303135888502,0.11627906976744186,0.0,0.38372093023255816,0.45,0.27141550555299904,-0.49909268474555774,-0.0531068541604132,-0.010397764265532454,-0.03119329279659736,0.7285844944470009,1.3397583555760884,0.043429244321417676,0.027911632407835174,0.04186744861175276,-3.551490838498236,0.87063447339142,0.8650038704094929,1.2733171454248202,0.7876654935478464,0.6626035029396374,1.305544971326931,0.8744872138160438,1.1152801795156508,0.841811985636782,0.9705739458790709,0.9129760352875216,1.0179126403994558,0.9943661302208383,1.177657844485731,1.2391855605537017,1.339031339031339,1.0948498506102193,1.093332493954698,0.9916712799788474,0.9658416523228862,1.143233994117066,0.8590138507404133,1.1901059688400604,0.9511660067888648,1.011031293772185,0.9430367259280816,0.8558534779480237,1.3615188882364453,1.0160700804103204,1.081400947210485,1.013000551896167,1.0550995349569536,0.9471559052659396,0.7903959423437833,0.9107282240724441,1.0420800789541738,1.035780437770121,0.9473931911600648,0.9279964860748635,1.0748440748440748,0.8993593279307566,1.1385826762606266,1.0388966034877483,1.1525816624074845,0.9521724116036251,1.1627073027232886,0.9547852467701983,1.1148406167116387,0.9089406281742317,0.9832283946081998,0.9484320737038755,0.9445599445599445,0.910327124612839,0.9020890817526379,0.9077938452063837,0.9127148021209522,0.9728501072876549,1.4293153466598387,1.0304681186371518,0.9027251747255695,0.9759812115438767,0.9863079029210344,1.0267712075912176,1.0646932110346743,1.0857551275669743,0.9595084397091104,0.975536537607881,0.965888821933511,0.986783398133173,1.1226446215282597,0.9942499464312194,0.9705024378800163,1.0881757888390167,1.0511508425637466,1.0464150010512516,1.0079254079254079,1.1858998144712432,1.0468523530836265,1.0882202370747474,1.0549220292275556,1.0600530374570498,0.9713428421219102,1.026307792989207,1.0730485151231488,1.1368503186093892,1.253793939683951,1.1405941943276028,0.9294452823864588,1.2311693908332566,0.9812305021312596,1.1330865182058567,1.005404545339305,1.2461457900063544,1.3286464051980282,1.257577767540922,1.0450590158555082,4.5,0.07417610447913478,3.1111111111111125,1.625,1.6711111111111112,0.9305555555555557,0.48734693877551016,0.3072916666666667,0.17233560090702943,0.12687500000000002,4668.123094854216,5374.889276988505,2293.149327475132,2047.9637778915537,11.954104925595717,0.46097573008136644,6.443552680049972,0.8552040340427554,1.0,0.45,1.4083445441575106,3.6140591895934935,4.944235677759417,5.2775690110927505,5.2775690110927505,5.2775690110927505,0.16666666666666663,0.010596586354162111,0.07977207977207984,0.03869047619047619,0.046419753086419754,0.028198653198653202,0.01624489795918367,0.011818910256410256,0.009070294784580497,0.009759615384615386,0.4172379336532475,17.415637860082306,7.3188691650230115,3.2410714285714284,142.3134262032049,1.0,4.132304663699703,110.94457791177038,,90.9885067143196,89.77794724747719,89.89034224244264,91.00227715712019,110.50355568301924,90.52493300058774,91.05643174282858,102.34694161699268,0.06532576184490009,0.007431647185478205,-0.3213610365231347,0.4318753142282554,0.2617970265029088,-0.12219562036032865,0.0651440921049229,-0.009962360820888659,0.024234204818118804,-0.07864801851908189,-0.026718464874766704,0.024865119156489257,-0.019468942401407282,-0.12832380086954018,-0.11692840021930201,-0.014061207609594705,-0.01757228946169038,0.039209574120196336,-0.016694615543713216,0.06016900132829495,-0.11598771701585549,-0.04660880063214824,-0.13341286030685542,0.04106865244801513,-0.04868732666917931,-0.01987106788518926,0.05835404798638381,-0.15130162458406732,-0.022613155655685644,-0.01858705436400796,-0.04919910874331212,-0.048338798711710734,-0.024440948747166184,0.05675930887479503,-0.010445684635396696,-0.05030499136993719,-0.06937003326096915,-0.024518804833637654,-0.09400897418534619,-0.07969507969507968,0.012855869998727142,-0.157469500713734,-0.07149482368551004,-0.1566399915080613,-0.023373582025722883,-0.021817058960319106,-0.030336671952954176,-0.12456259706604887,0.0908801210938278,0.09330712626064756,0.037494305169331076,0.03395703395703396,0.08337222622936909,0.027729264438419898,0.09016700863390989,0.04555233478330307,0.09626195742233228,-0.013552270593034165,0.07426906098572995,0.06370554767584473,0.017452414759961895,0.0809194796166692,0.0851621702197692,-0.06441525953721076,-0.04920166941072865,0.007576688107357908,0.016449932400673717,0.003974939422442756,0.070593344070576,0.034864666198027805,0.09629337818560653,-0.0003113921811408555,-0.10840758357339052,-0.05105378774168073,-0.009448563358166783,-0.09370629370629371,-0.1836734693877551,-0.04935843598718517,-0.10872948801737167,-0.0808885278632484,-0.06433215309461929,-0.02659183874097599,-0.03086897175753307,-0.10020558116506857,-0.13893103298799256,-0.16250901751084545,-0.06493219153861472,-0.07893413775766718,-0.21211561547696003,-0.031045387807366685,-0.1372283439265199,-0.05482213597073851,-0.16637153514007122,-0.20870197719409364,-0.14639173316675155,-0.08723482308134203,10.367266822184,24.163655981791067,9.595433520528273,12.557310303389,33.01041017767415,37.1019780777454,37.437978077745406,37.437978077745406,37.437978077745406,49.81769310610374,41.79966349628931,4.309871092602853,3.708158517211574,0.0,8.018029609814427,3776.3309259363778,3152.8238603332097,1271.949215858881,153.0,39.0,56.0,76.0,105.0,112.0,126.0,132.0,147.0,324.1837780080007,27.0,4.890349128221754,5.777652323222656,6.680854678790215,7.585281078639126,8.494333897270154,9.40351943877092,10.314702763735975,11.225816561559018,12.138056083012769,0.6041666666666666,0.9661666666666666,1.12466092525658,0.5627202841839426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6637603792415169,0.9539215686274511,0.9925345957756736,0.6134887288825567,5.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,0.0,4.0,1.0,0.0,0.0,0.0,9.843390348640755,5.749511833283905,0.0,0.0,0.0,9.883888251797686,0.0,0.0,6.578935683598497,6.076020106833881,61.051131509630814,24.169665021138407,18.730464646642098,146.9426055166631,-270.20556302188913,-28.7517085850526,-5.629282562956024,-16.88784768886807,394.4509497898879,725.3365393769968,23.512312987449157,15.111177903687432,22.66676685553115,0.5,0.8527741716056477,0.27013767222872487,72.00249484582636,0.11475808045824629,132.54121747995393,0.14722582839435228,6.0,0.14814814814814814,0.2521672337058053,0.6471053635770749,0.8852764324059463,0.9449605096562934,0.9449605096562934,0.9449605096562934,3.1732000000000014,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,95.02680000000007,9.843390348640755,0.0,9.883888251797686,11.835812092322787,24.987450462748285,20.199310353102682,48.68071912758889,0.0,5.749511833283905,4.007333185232471,0.0,5.351858133476067,0.0,6.934397209928558,0.0,8.619569258033104,0.0,10.353447900530844,28.999999999999996,9.568129438886563,4.42455099941211,0.0,0.0,0.0,1.8745875587889484,1.743282807460297,0.0,46.376,3.979849799827808,0.0,0.0,0.0,0.0,2.0894117482979317,0.0,0.0,53.98372441231584,4.736862953800049,0.0,5.749511833283905,41.231566828889044,0.0,11.835812092322787,24.509061125297315,43.11726763589189,0.0,10.902924932081056,0.0,27.010573640829243,31.86049820359281,32.595631483432186,222.8584179890234,,182.73777941471647,180.27881536182872,180.56170259927828,182.76580398029714,222.68595053176836,181.7960979022689,182.87584157560366,205.8491975039791,32.595631483432186,222.85841798902334,,182.1365182270349,179.57174230459282,179.96412694227442,182.16617120350676,224.81991864179636,181.15996505817674,182.28003455964006,206.80695631238098,4.989896260827983,163.50258314100208,,136.719827330575,134.9834697750273,134.66385903076656,136.73813557521237,160.51353334591306,136.03266837809224,136.8195534052102,151.20595736410726,1.3581513118096744,9.285767416209309,,7.614074142279853,7.511617306742863,7.523404274969928,7.615241832512381,9.278581272157014,7.574837412594538,7.619826732316819,8.57704989599913,2.494948130413992,110.94457791177038,,90.9885067143196,89.77794724747719,89.89034224244264,91.00227715712019,110.50355568301924,90.52493300058774,91.05643174282858,102.34694161699268,45.788235294117655,0.0,1.661567054154883,0.0,0.0,0.0,11.151855158730157,47.64166059723233,4.335080941518531,0.0,5.3495717015634945,0.0,0.888137215017625,2.4339755763416475,0.0,0.0,0.0,29.44745898636272,461.68644063918043,67.60053811956051,173.47484110048768,237.32331253245204,253.323312532452,253.323312532452,253.323312532452,997.0,127.51056595322258,79.70711466737055,59.26660568720104,45.59,45.59,1.0,8.613208023463029,5.754887502163468,4.4275867864798695,4.823742446479141,,4.828252162577957,4.828938736838238,4.826552130443957,4.828237860411827,4.796027569432232,4.828427894444384,4.82822144683088,4.816741727573447,0.18448278276999455,0.20098926860329755,,0.20117717344074823,0.20120578070159326,0.20110633876849823,0.20117657751715945,0.19983448205967633,0.20118449560184934,0.20117589361795332,0.20069757198222696,2.3633234295260523,2.44901880532014,,2.4499532684253618,2.4500954576538008,2.449601105481407,2.4499503062380463,2.4432567229247124,2.449989664343091,2.449946906735097,2.4475664467020715,255.12000000000018,172.09945801180763,142.70448000401663,,141.87147849953413,141.7559300995402,142.09110254335246,141.87373339631353,145.43368236633103,141.84112932868328,141.87660637622017,143.51985436427623,7.1708107504919845,5.946020000167359,,5.911311604147255,5.906497087480841,5.920462605973019,5.91140555817973,6.059736765263793,5.910047055361804,5.911525265675841,5.9799939318448425,6.02354129130326,5.836244655906026,,5.830390304132859,5.829575514004097,5.83193715644561,5.8304061979466395,5.855188928764327,5.830176361078309,5.830426448001029,5.841942120922206,5.3495717015634945,6.858526575753758,12.13080666834635,1.8461944391954317,2.0068593648815507,7.95765726390546,5.620374760237224,6.068442171961847,1.661567054154883,303.2055490458908,79.55377962667424,-146.28755042802888,-15.565989731999512,-3.047657300583935,-9.142971901751805,213.55320210079321,392.6925278470624,12.729414721755493,8.181094330147133,12.2716414952207,1286.0,42.0,1.4714891920923363,0.8998869507799445,0.0,0.0,0.4321064926405204,0.20852297062733116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3277210825314642,0.19113256465887216,0.6831323525096153,0.3716823910008341,16.681433796945207,14.058925674792736,11.707039898056808,8.682990361275793,10.366232173563507,6.9743936589358695,9.632266978605504,5.8194843766095925,8.160949074597422,4.444306034250858,7.116551659184141,3.520792177168302,4.9260833034942655,2.1146529166059946,3.5946945422603807,1.349573118426839,4.204149146715663,2.2874995095199266,6.9686060773611604,3.351046260105559,11.528760369665397,4.939120484713901,80.88292341759114,35.05186492447132,22.984524221890034,21.39329609646936,21.39329609646936,21.39329609646936,132.0,161.0,53.20703199999998,28.662967999999996,0.3958333333333333,177.04,7.0,5.333333333333332,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,10.0,11.0,48.0,0.0,1.0,51.0,11.0,1.0,6.0,45.0,12.0,27.0,39.0,0.0,0.0,2.0,20.0,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,4.0,1.0,4.0,24.0,4.0,0.0,2.0,2.0,0.0,5.0,4.0,0.0,0.0,0.0,1.0,2.0,3.5409593240373143,7.166605262611263,4.102643365036796,4.709530201312334,5.288267030694535,5.877735781779639,6.158566707538567,6.523699961872766,6.846876718676053,7.198674294376859 +3034010,CCCCCCCCCCC[C@@H](C[C@@H]1OC(=O)[C@H]1CCCCCC)OC(=O)[C@H](CC(C)C)NC=O,0,16.65909090909091,5.777782954545457,2.352272727272727,4.0227272727272725,166.0928224513375,64.92666994318184,1.237143226784057,5.835251136363638,3.4482323232323235,7.405838318181816,173.34882572287876,19.03409090909091,6.043795454545455,3.022727272727273,3.465909090909091,146.10666842252394,69.04748698863638,1.638619959318182,6.186147727272725,2.4049873737373737,7.525315499999999,225.29360168687518,13.351190476190476,5.83817261904762,2.5238095238095237,2.238095238095238,156.11164927745165,45.84050402380952,1.27348438058703,5.933826190476189,2.22718253968254,7.4175681904761905,163.02668917648748,10.163179916317992,5.653861924686195,2.100418410041841,1.5397489539748954,163.62238610766275,33.80827868200838,1.0526356500341636,5.721678661087865,1.947117619711762,7.310288485355648,129.1111159712018,10.534136546184738,5.723449799196786,2.108433734939759,1.6746987951807228,164.9075822925283,35.517065771084354,1.0211625768586587,5.782687148594377,2.1393351182507807,7.387062891566266,127.7567464850708,11.55,5.887825,2.183333333333333,1.8375,164.4617585010538,39.05670967916665,1.0544545732069788,5.943604999999999,2.567824074074075,7.530023883333332,135.2618494559041,11.224489795918368,5.8874530612244875,2.1714285714285713,1.6816326530612244,164.1230023468297,37.49985171428571,1.0597821751870447,5.94325795918367,2.445804988662131,7.534398530612246,134.94177610934798,11.008,5.809268000000001,2.176,1.54,163.66398800864093,36.84374167600002,1.0687014497642837,5.8713724,2.2666666666666657,7.457475248000001,135.13200967945056,10.848249027237355,5.8144630350194575,2.1167315175097277,1.4941634241245136,163.32677811123816,35.95935414007783,1.0639758121843312,5.876988715953306,2.383700821444012,7.4610067548638135,133.5763055111363,6.964359504132233,0.1009352143595041,0.013621284110375019,0.3986311983471074,2.7825413223140494,1.2358225128173401,33.190731794292354,0.21704256110213008,0.09759306559917347,1.2993428604224055,0.062107858987603286,48.96404129545081,0.1399793388429749,0.0022453770661157555,-0.007544065377314416,0.11608987603305793,0.9222623966942153,-0.11515834693190344,0.6177765909090875,-0.015071943888946409,0.0029018078512397256,0.02010875803489441,0.00032755578512401495,-1.4753362719397494,-0.4175521448248719,0.016782230175127925,0.0003018349490046063,-0.015243752459661544,0.37600846123573417,-0.1975749346905323,-2.1647647824552356,-0.03751075010066803,0.013445604584809161,0.15576626656172113,0.012526990308933495,-7.7464981178832355,0.26414943462775337,0.006316525845897153,0.0006857711639332995,0.0246285962515993,0.29638602648777623,-0.01807974362343922,1.2163296026266248,-0.004476927690820991,0.00609936498279677,0.013133366279762223,0.003039027280939856,0.06558236505468784,0.6217120548308943,0.005088996118772615,-0.0005049897484864172,0.0092275092103953,0.22247875800723557,-0.008394665905443128,2.9506783385572244,0.005928774671422129,0.006066527317949482,-0.0064769523456544255,0.0016935731044010846,2.940316976872384,0.11092458677685947,0.0017494873450413534,-0.0005738344087513892,0.0020316804407713514,-0.003374655647382807,0.016629612040967186,0.5160995231318861,0.00030694026460689034,0.0018802156508264717,0.08688399142944596,0.001196869042699773,0.4634639288185622,-0.26621479170180473,-0.0037260260478157855,0.0006371338620743277,0.0003483934896272552,-0.1599995783437341,0.028511396066376912,-1.2407311523628568,0.003485045458295373,-0.004045769680806172,-0.03638161531830361,-0.0013876623271208788,-0.398889333290868,-0.0963595041322315,-0.005896959814049565,7.905580030155234e-05,-0.024403925619834715,-0.1776322314049586,0.011177896171535504,-0.423201928292356,0.0019005454867037739,-0.005211088326446259,-0.10042114325068868,-0.00430082662396691,0.25828077598606836,-0.3680560021867063,-0.004753665898237748,-0.0006814890632259172,-0.02491347638035824,-0.17323817410039558,-0.07283597726614233,-1.7543823197168344,-0.010799333437206229,-0.004713904828038051,0.019833828647279318,-0.002709841831607517,-2.5774408359129097,,,0.47333333333333333,0.6928571428571428,0.12857142857142856,0.0,0.5642857142857143,-0.4357142857142857,1.4869890257694307,0.014078884198641665,0.01653602705578452,0.45181038914859073,0.0857168922212667,0.3977531825050372,1.9387994149180214,0.48347007472630393,1.9608630335803667,1.6386973555706257,0.05579351649034955,0.26637216151939164,0.0,0.32216567800974116,5.62945879313638,1466.0,508.4449000000002,207.0,354.0,14616.1683757177,5713.546955000002,108.86860395699702,513.5021000000002,303.44444444444446,651.7137719999998,15254.696663613331,1675.0,531.854,266.0,305.0,12857.386821182106,6076.178855000001,144.19855642000002,544.3809999999997,211.63888888888889,662.2277639999999,19825.836948445016,2243.0,980.8130000000002,424.0,376.0,26226.757078611878,7701.204676,213.94537593862103,996.8827999999999,374.16666666666674,1246.151456,27388.483781649895,2429.0,1351.2730000000006,502.0,368.0,39105.750279731394,8080.178605000002,251.5799203581651,1367.4811999999997,465.3611111111111,1747.1589479999998,30857.55671711723,2623.0,1425.1389999999997,525.0,417.0,41061.987990839545,8843.749377000004,254.26948163780602,1439.8890999999999,532.6944444444443,1839.3786600000003,31811.429874782632,2772.0,1413.078,524.0,441.0,39470.82204025291,9373.610322999997,253.0690975696749,1426.4651999999996,616.277777777778,1807.2057319999997,32462.843869416985,2750.0,1442.4259999999995,532.0,412.0,40210.135574973276,9187.46367,259.64663292082594,1456.0981999999992,599.2222222222222,1845.9276400000003,33060.735146790255,2752.0,1452.3170000000002,544.0,385.0,40915.997002160235,9210.935419000005,267.17536244107094,1467.8431,566.6666666666664,1864.3688120000002,33783.00241986264,2788.0,1494.3170000000005,544.0,384.0,41974.981974588205,9241.554014000001,273.4417837313731,1510.3860999999997,612.6111111111111,1917.478736,34329.11051636203,612.8636363636365,8.882298863636361,1.1986730017130016,35.07954545454545,244.86363636363635,108.75238112792593,2920.784397897727,19.099745376987446,8.588189772727265,114.34217171717168,5.465491590909089,4308.835633999672,12.318181818181792,0.1975931818181865,-0.6638777532036686,10.215909090909097,81.15909090909095,-10.133934530007503,54.3643399999997,-1.326331062227284,0.25535909090909586,1.7695707070707083,0.028824909090913314,-129.82959193069794,-70.14876033057848,2.819414669421491,0.05070827143277386,-2.5609504132231393,63.169421487603344,-33.19258902800943,-363.68048345247956,-6.30180601691223,2.258861570247939,26.16873278236915,2.104534371900827,-1301.4116838043835,63.13171487603306,1.5096496771694194,0.16389930818005857,5.886234504132233,70.83626033057853,-4.321058726001973,290.7027750277633,-1.069985718106217,1.457748230888428,3.138874540863171,0.7263275201446256,15.674185248070394,154.80630165289267,1.2671600335743811,-0.12574244737311788,2.29764979338843,55.39721074380166,-2.090271810455339,734.7189063007489,1.4762648931841102,1.510565302169421,-1.612761134067952,0.42169970299587006,732.1389272412237,26.62190082644627,0.4198769628099248,-0.13772025810033342,0.4876033057851243,-0.8099173553718737,3.991106889832125,123.86388555165267,0.07366566350565368,0.4512517561983532,20.85215794306703,0.2872485702479455,111.23134291645492,-65.22262396694217,-0.9128763817148674,0.1560977962082103,0.08535640495867752,-39.19989669421486,6.985292036262344,-303.97913232889994,0.8538361372823664,-0.9912135717975122,-8.913495752984385,-0.3399772701446153,-97.72788665626267,-24.089876033057877,-1.4742399535123913,0.019763950075388087,-6.100981404958679,-44.40805785123965,2.794474042883876,-105.800482073089,0.47513637167594347,-1.3027720816115647,-25.10528581267217,-1.0752066559917275,64.57019399651709,-94.59039256198352,-1.2216921358471011,-0.1751426892490607,-6.402763429752067,-44.522210743801665,-18.718846157398577,-450.8762561672265,-2.775428693362001,-1.211473540805779,5.0972939623507845,-0.6964293507231318,-662.4022948296179,0.7397341225498537,0.657890238503668,0.48347007472630404,0.4151440307817825,0.32372323060648406,0.25736950642560313,0.20202980546548213,0.14700557016624038,0.1368670680773219,0.08955921568903243,0.09187106954038561,0.0558820523324951,0.05895489205546167,0.03402765178484839,0.03819813261697133,0.02175001371151684,8.031746216533968,5.7920591472263805,3.5585308182340896,2.288386523227748,0.4551324651286406,-0.49328871106015054,3.1640971026379296,0.9572332136195812,6.030885827433198,0.9871379675256493,14.540286581073193,11.052906483342271,16.016839110520618,11.804840701419403,1.9026473314357621,0.7402895414043399,3.5047839307540354,2.3374695961619416,7.0106558739056695,1.1812904959892951,3.7176508186524604,2.533634196669825,20.805484583703148,14.699769282732902,0.19619673446713828,0.33333197962500316,0.5280083429004938,0.6908698691367987,0.7684970797174284,0.8231570030015213,2.554024605831434,579.4194352374097,0.0,2.0,4.0,0.0,0.0,20.0,0.0,2.0,0.0,5.182623561647568,4.29017554822688,3.023261754729268,1.9633923871940642,1.4582104422438666,1.102494886461975,458.50274277775986,2833.5319246013846,66.84046491073815,32.19922641592483,60.95989372414149,,20.0,1037.0,6.041840829147961,14.383611552215466,35.98235544372309,19.25173855196814,38.524929737556064,57.787394606334104,0.0,13.847474399381248,19.16426300338758,9.473725907600098,16.566666666666666,24.25,4.5,0.0,19.75,0.0,0.026666666666666672,-15.25,0.07386363636363613,0.0,-0.07386363636363613,0.014470899470899412,0.13743387470997648,0.0,0.5071969696969683,0.8209523809523805,0.4333333333333321,0.5071969696969683,0.8064814814814811,52.04461590193007,0.4927609469524583,0.5787609469524583,15.813363620200676,3.000091227744335,13.921361387676303,67.85797952213075,16.921452615420637,0.5765661252900235,0.18108651911468812,0.0,0.2112676056338028,0.896551724137931,0.24803364966067923,-0.7724481134755895,-0.044775583925687916,-0.008777819471313517,-0.028609189387984797,0.7519663503393208,2.3418394621510723,0.028687653814224005,0.02661181206989855,0.03839081085493563,-7.969992253959911,1.1017763109100347,0.7283017436492368,1.6540419192019278,1.2118561710398446,0.5672684239836644,1.5704353516371055,1.114236419004872,1.5126208380651698,0.7540372898458466,0.5433957420024516,0.7025915077172422,1.3878896567844679,1.0984732096502472,0.6669328979326146,0.9730712274671355,1.3729001804803556,0.7846203824020792,1.3733733341177028,1.1095130995713243,1.3698538970297276,0.7152608056265126,0.4825914597113486,0.602702124423035,1.3163135259389556,0.9366755657286704,0.8155163604656609,0.9751922771665082,1.0013703030524823,0.8228386484431373,1.031663299050171,0.9401785315502537,1.0411360827653318,0.8277065150782855,0.6386602673002522,0.8115955942143669,1.0138817829113789,0.920152016506283,1.0373321273420308,1.24383613000391,1.1155369778433462,1.0259459967212454,0.9860298914797709,0.9188404389535446,0.9568509936085328,1.01555161574292,0.9760052589026369,1.082371280630979,0.9239037477467553,1.0626038344582065,1.3169485517864115,1.488541648123315,1.18837058632977,1.2790792648969742,1.0049424997741114,1.0577081642558388,0.9890775759657082,1.279263694182564,1.2379175454675964,1.3637913673489324,0.9794128125671081,1.1202978202331884,1.3946021465160658,1.3794213978833163,1.1388112096150413,1.3356371915760923,0.9886238102466179,1.1138110012197142,0.981089640427908,1.3611254980361824,1.3221266280118211,1.4432051344934205,1.0004847982327407,1.0618349032114514,1.2497214708057636,1.2402906045413833,1.2846802721088437,1.2449704844997216,1.0126724412146972,1.057949999598772,1.0034391484993157,1.2242153094226789,1.3091684758003075,1.2951831779915997,1.000726454452654,1.101958338660212,1.2355005593129806,1.297979778629108,1.2014384408571657,1.221429453671073,1.08555114118525,1.0992934333514561,1.0673890535672648,1.2165925419625618,1.1557441129915824,1.266912980483316,1.062848004205264,5.5,0.27252321191715134,2.3333333333333344,2.25,1.4622222222222225,0.8819444444444445,0.6914285714285715,0.5486111111111112,0.4149659863945578,0.3268750000000001,6058.711405055918,7562.178450830948,3090.7049841999374,2566.9335357594223,21.307958665702554,0.49146318459240607,10.83588144269302,0.9664259689802335,0.0,0.896551724137931,1.2768080569897293,2.1692560704104165,3.436169863908029,4.496039231443233,5.001221176393431,5.356936732175322,0.15714285714285714,0.006646907607735398,0.05833333333333336,0.05487804878048781,0.032493827160493836,0.01876477541371159,0.015031055900621117,0.011672576832151301,0.009020999704229515,0.007428977272727275,0.37141335914834833,33.02857142857143,20.989795918367346,15.11111111111111,214.21331802015848,0.0,4.416494583912943,276.1444164078322,,262.7574576918768,261.0684120265534,264.8287524939086,262.7875335557925,314.2459996194849,262.27307180762824,262.83599147404794,289.4037885976449,0.020099384409997725,0.02224572544244396,-0.5538439192798479,0.2912212504049241,0.33144607388156694,-0.093183564579491,0.018612924678428556,-0.06944234260972555,0.029733750378923455,0.0154760984551508,0.005273982881770164,-0.030131015188013515,-0.05995557015359725,0.1662673456595052,0.022159067130440777,-0.03824023940642015,0.13513131259557848,-0.15987322826812328,-0.06522196605582223,-0.17282670233059602,0.13777213065559274,0.11988080383270265,0.2016973457647909,-0.15820789936722304,0.03792874771485059,0.06258000130063017,0.05034555908065697,0.06178291200919501,0.10651630727312693,-0.01462972509071898,0.03664666420026903,-0.020626957533524306,0.06249793410371593,0.010107698806681923,0.04893144491659977,0.0013393985324651094,0.08927052867704599,0.05041844069055007,-0.03707357870186249,0.023147985528118302,0.07995523955856843,-0.006792776323766401,0.08890067133333401,0.02731618462902456,0.062161458713321335,-0.004984790806907442,0.02726825770534324,0.060050537069242384,0.015927464214195646,0.01733277485110548,-0.04212777621416124,0.005096641831335713,-0.0012127962378565276,0.013456310973859978,0.015549507203713937,0.0014141938938071164,0.019265873443803323,0.06686764061735076,0.019270814711849393,0.009465393716625716,-0.03822530866533367,-0.036915025855542176,0.04677487503465533,0.0008739744683101601,-0.05750124070418958,0.023070785465283895,-0.03738185587629072,0.01605696800018626,-0.04145550358488213,-0.0280000117185977,-0.022342781569685985,-0.008146577013199447,-0.013836089890973829,-0.05842321583670669,0.0058038434306892815,-0.0612193067703272,-0.06383812882866156,0.00904490414732204,-0.012750605527930298,0.008756556672815274,-0.05339609217573746,-0.07728610077408099,-0.06924770381837432,0.0052749072411648525,-0.052848507026141314,-0.04709620847791007,-0.050031190723556135,-0.062497557852119925,-0.06225897624992869,-0.058937247469376536,-0.05285759683124935,-0.04975675453868501,-0.0483016369974341,0.015264507353225851,-0.04363122277566195,-0.05263946291443832,25.69372215545862,21.083828176584923,6.258764189770795,11.572190741186445,20.725143925997497,27.15191056808311,30.95251006836234,32.91856623536985,34.277400242870726,68.63020617531284,57.3544074449719,1.952773077162234,9.323025653178707,0.0,11.275798730340941,15525.884012834027,13764.758552602892,3426.2096967832294,67.0,42.0,48.0,54.0,57.0,60.0,64.0,68.0,68.0,495.39237379600144,35.0,5.043425116919247,5.814130531825066,6.6293632534374485,7.4342573821331355,8.268475388982598,9.093918908958932,9.941216769346136,10.780434363667258,11.637185258850824,0.518939393939394,0.9530454545454546,1.1402595936407314,0.46902555233460225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.604790616494284,0.9393493761140822,0.9868651923458913,0.5419363169143092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,17.0,1.0,2.0,0.0,5.0,0.0,0.0,0.0,0.0,14.790514511606428,18.249773604644567,0.0,6.410095306116121,0.0,9.589074368143644,4.794537184071822,0.0,0.0,104.74480827387463,31.60119253786543,6.4208216229260096,5.917906046161393,225.67320699261666,-702.81126468893,-40.73902727835778,-7.986491644192386,-26.03004684033074,684.1759497703765,2130.7206599124547,26.101437632380375,24.21273477173244,34.92984688381075,0.5,0.8461380838992796,0.14802305494486012,95.57826255206699,0.10545296020738831,8.064661285841538,0.1538619161007205,10.0,0.6571428571428571,0.1976656975988065,0.33582770102426596,0.5319616441164423,0.6960425462932189,0.7742509669060487,0.8293201396728214,6.881900000000007,,1.3928571428571428,1.6142391810144252,1.0909205148491539,1.3888280739756562,-5.929653139877578,1.4547888616891067,1.3827369942067755,-2.314297018533557,140.91269999999997,23.85733745981556,0.0,5.316788604006331,11.835812092322787,155.0986899931493,0.0,0.0,0.0,0.0,4.2626798770413155,0.0,5.5093883366279774,0.0,6.93828448401696,0.0,8.469472455204826,0.0,10.066498860795583,45.66666666666668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.86800000000001,0.0,35.961655674734466,0.0,0.0,0.0,0.5732791705270874,0.0,-0.48905203110579243,100.34284424038435,5.316788604006331,0.0,0.0,36.59847948666439,23.85733745981556,11.835812092322787,136.8489163885047,0.0,0.0,0.0,0.0,41.274248605444996,53.22157425149699,42.33399408711127,552.2888328156644,,525.4353235470189,522.0445818141917,529.595166672683,525.4957055073578,628.8308365612484,524.4630128231599,525.5929694055698,578.939822739206,42.33399408711127,552.2888328156644,,524.1220582408964,520.5225848720925,528.5665844729681,524.1862390376091,634.4216523788473,523.0913547535672,524.2892459538891,581.1218742138235,4.826032722660937,376.119117343149,,362.1945926839961,360.43043295938156,364.46848139093015,362.22634047288227,422.6060640283628,361.69317768184555,362.276193228817,390.4675043011186,1.2095426882031792,15.77968093759041,,15.012437815629113,14.915559480405477,15.131290476362372,15.014163014495937,17.966595330321383,14.984657509233141,15.01694198301628,16.541137792548742,2.4130163613304694,276.1444164078322,,262.7574576918768,261.0684120265534,264.8287524939086,262.7875335557925,314.2459996194849,262.27307180762824,262.83599147404794,289.4037885976449,82.66274509803924,0.0,8.45165818235921,0.0,0.0,0.0,0.0,86.84413692643844,18.37495574328393,2.6204883015733538,11.402396285570127,0.0,-0.8953813269423767,0.0,0.0,0.0,0.0,47.69039588845921,769.8580221408143,112.35910901509618,190.89453419611664,302.3829480239066,395.65145236700454,440.1074635226219,471.4104324314284,598.0,144.64240697412066,139.99113462217895,70.24632401368666,81.69999999999999,81.69999999999999,1.0,6.561030665896573,6.129283016944966,3.6299276978798236,5.7898662877635765,,5.7781997786786885,5.77641840181861,5.781172180221197,5.778233493800795,5.807851556939122,5.777741383436881,5.778275839475187,5.797563941073928,0.10371221993942353,0.16542475107895932,,0.16509142224796253,0.165040525766246,0.16517634800631992,0.16509238553716557,0.16593861591254633,0.16507832524105376,0.16509359541357677,0.16564468403068366,2.54197569863432,3.0088721661631044,,3.006855145690851,3.0065468054503754,3.007369429964874,3.006860980557252,3.0119736873129916,3.0067758107001974,3.006868309011402,3.0102007876591013,435.04000000000224,8777.268516581358,228.07791617185381,,228.46823441939236,228.5976435809014,228.122280758415,228.46538844821117,226.03901152796075,228.4953540592257,228.46333857740106,226.97113352977559,250.7791004737531,6.516511890624395,,6.527663840554068,6.531361245168611,6.517779450240429,6.527582527091748,6.45825747222745,6.528438687406449,6.527523959354316,6.484889529422159,10.332683503826924,6.682450276666667,,6.68416015130751,6.684726411757899,6.6826447727979685,6.684147694482103,6.673470570251346,6.684278846278177,6.6841387220945565,6.67758581282354,11.402396285570127,35.961655674734466,2.6204883015733538,0.0,-0.30238132020598285,-0.6324977677537624,18.49868064372259,8.45165818235921,0.0,544.8220900038089,205.32857708623268,-639.4522365407557,-37.066369616558404,-7.266502687963134,-23.68341616817614,622.4969109760971,1938.6343957188353,23.74837102012314,22.029936314986763,31.78089173309567,4600.0,41.0,1.5531930533081137,0.9384627132052199,0.0,0.0,0.2821175568066727,0.07067289134094253,0.0,0.0,0.0,0.0,0.13608276348795434,0.06804138174397717,0.3285328532178296,0.12400282264271541,0.3840884087733851,0.13510286958767426,0.40571449410620547,0.13785447085749164,25.89069428924488,23.02615834762838,16.92145261542064,14.53004107736239,13.59637568547233,10.80951926987533,9.697430662343143,7.0562673679795385,7.390821676175383,4.836197647207751,5.23665096380198,3.185276982952221,3.5372935233277003,2.0416591070909034,2.444680487486165,1.3920008775370778,2.950093558219696,1.3534441965248847,4.137621931091369,1.6630318796515475,5.54207042250477,1.8783126459730513,125.09603900221207,86.23841102706696,62.91485903594433,44.26001290729447,34.45885435169375,28.709203146522498,154.0,167.0,88.88002899999995,59.81597100000009,0.045454545454545456,35.06,13.027777777777779,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,88.0,0.0,0.0,88.0,0.0,3.0,3.0,85.0,3.0,35.0,85.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.0,5.0,1.0,1.0,35.0,6.0,0.0,1.0,5.0,0.0,1.0,23.0,0.0,0.0,0.0,0.0,0.0,3.6635616461296463,4.406719247264253,3.871201010907891,4.02535169073515,4.189654742026425,4.2626798770413155,4.290459441148391,4.343805421853684,4.465908118654584,4.406719247264253 +5311027,CCNC(=O)CCC/C=C\C[C@H]1[C@@H](O)C[C@@H](O)[C@@H]1/C=C/[C@@H](O)CCc1ccccc1,0,18.53731343283582,5.876938805970149,2.6417910447761193,4.746268656716418,163.6545855696599,72.60097680597018,1.3426267683494475,5.943559701492537,4.070066334991708,7.473202507462684,191.74475177248914,20.66176470588235,6.146382352941177,3.3529411764705883,4.147058823529412,145.83510152044784,76.08483927941177,1.732920566,6.289360294117647,2.776960784313726,7.6141778235294115,243.5320106074231,16.073170731707318,5.954821138211382,2.951219512195122,2.83739837398374,151.8125600497967,56.91430369918698,1.451160029197878,6.071041463414635,2.5596205962059617,7.487786634146341,193.79316832585593,11.98314606741573,5.821544943820226,2.331460674157303,1.8932584269662922,160.82923800114636,40.60737717977528,1.16185608328682,5.898345505617978,2.441947565543071,7.443026741573034,148.69004435664954,11.082872928176796,5.7868121546961335,2.18232044198895,1.7458563535911602,161.9844314621616,36.94568051933701,1.1059231599234698,5.856461878453038,2.6038980969920194,7.4263701657458565,138.81941104377913,10.953757225433526,5.751346820809249,2.161849710982659,1.8265895953757225,162.7268527811228,36.7459968150289,1.0916560686976586,5.820332369942197,2.4592164418754017,7.3984981965317935,137.3857992925943,11.620481927710843,5.769030120481928,2.1987951807228914,1.9337349397590362,161.87117226504878,39.63403675903614,1.1074925356996868,5.8406060240963855,2.5610776439089693,7.4064238554216875,140.69322123020714,10.710059171597633,5.797153846153846,2.1301775147928996,1.5857988165680474,163.00760406641893,35.399254331360936,1.0736635990136036,5.86075798816568,2.563116370808679,7.44687299408284,134.20779646482512,10.012195121951219,5.697884146341464,2.1341463414634148,1.5670731707317074,164.34807124862772,33.01436414634146,1.050127634788061,5.761003048780489,2.25609756097561,7.3624573658536585,129.69446890760247,7.159278235687236,0.10475326353308084,0.014998709209960371,0.45845399866339936,2.8607707730006684,1.3180089529014891,34.128767076409,0.22820491976529075,0.10087703274671413,1.543390015098636,0.06473102249944307,50.875152495930784,-0.10418604955905267,-0.009676551504985885,-0.007641905176040732,0.10388138325056018,0.3582810268237391,0.09140441453180859,-0.39978612842832023,0.018551591708766246,-0.0088750573296816,-0.17018862011278113,-0.005889478162305258,2.568423969279015,-0.7405183764468518,0.00047598049070273325,0.0005790658410848938,-0.05510489054545258,-0.24494745058833967,-0.18006622990559332,-3.616465749264239,-0.03595790503876752,-0.0009300966952640657,-0.022670442231265717,0.0010073611918565103,-7.670836118458074,-0.44026096250259683,-0.008905049546832303,-0.0007200701074306093,-0.05915834211468232,-0.3175039609932895,-0.020624152441971938,-2.079304267923339,-0.00945226685439736,-0.008290876449548316,-0.14235213334634897,-0.0054641199336205116,-2.2614336542456646,-0.42422422397782683,-0.0025162552045577243,0.0007693425202169553,-0.010033119633136373,-0.2225255351017651,-0.044865400979837544,-2.031814029983668,-0.009724849989708786,-0.00313515924131301,-0.00839235148301262,-0.0006283986023539438,-2.811735774547299,-0.051781039586812815,-0.006008116436195357,-0.0007574035659682935,0.006303140496293447,0.0054185117892549045,0.002877761936533023,-0.21487424481552203,0.0008514486044339838,-0.005041643220357537,-0.07831653855073982,-0.004398085220519779,0.35825198561571253,0.3213007968608675,0.00701032215294682,0.00096666808239277,-0.03290104056233847,0.12996830270513998,-0.05405892823057834,1.4765232229975815,-0.006943255365499125,0.007075197068067314,0.10204995373190992,0.0037641409603663026,-0.02951201649836838,-0.46599906938855157,-0.004635335422156182,-0.00027558458627406916,0.011827728793988202,-0.18497813853983636,-0.023745513945753353,-2.205406923799267,-0.004509569011660054,-0.005216810190854424,-0.030007715551009416,-0.0018375553970850528,-2.2167629599533134,-0.020945509076387345,-0.008052326146841355,-0.0008218750616992299,0.05583431586153688,-0.005383077332666854,0.08000448525600161,-0.02384788201511475,0.014167401651056562,-0.007103461578166702,-0.136114906899793,-0.005334984639960006,2.2895705991292683,,,0.4744444444444444,0.8833333333333333,0.31666666666666665,0.0,0.5666666666666667,-0.25,1.136115741559246,0.013565816977518352,0.019299150310851682,0.6475288564719911,0.16243179540433286,0.321142839697252,1.7836445980312372,0.4835746351015848,1.9923901502397314,1.693157723471038,0.0638539385730594,0.23537848819563406,0.0,0.29923242676869344,6.198093412895537,1242.0,393.7549,177.0,318.0,10964.857233167213,4864.265446000002,89.95599347941298,398.2185,272.69444444444446,500.7045679999998,12846.898368756772,1405.0,417.954,228.0,282.0,9916.786903390454,5173.769071000001,117.838598488,427.6765,188.83333333333334,517.764092,16560.17672130477,1977.0,732.443,363.0,349.0,18672.944886124995,7000.459354999999,178.492683591339,746.7381,314.8333333333333,920.9977559999999,23836.55970408028,2133.0,1036.2350000000001,415.0,337.0,28627.604364204053,7228.113138,206.81038282505398,1049.9055,434.66666666666663,1324.85876,26466.827895483617,2006.0,1047.4130000000002,395.0,316.0,29319.18209465125,6687.1681739999985,200.17209194614802,1060.0195999999999,471.3055555555555,1344.173,25126.313398924023,1895.0,994.9830000000001,374.0,316.0,28151.745531134246,6357.057449000001,188.85649988469495,1006.9175000000001,425.44444444444446,1279.9401880000003,23767.743277618814,1929.0,957.6590000000001,365.0,321.0,26870.6145959981,6579.250101999999,183.843760926148,969.5406,425.1388888888889,1229.4663600000001,23355.074724214384,1810.0,979.719,360.0,268.0,27548.285087224802,5982.473981999999,181.449148233299,990.4681,433.1666666666667,1258.521536,22681.117602555445,1642.0,934.453,350.0,257.0,26953.083684774945,5414.355719999999,172.220932105242,944.8045000000001,370.00000000000006,1207.443008,21269.892900846804,479.67164179104486,7.018468656716417,1.0049135170673449,30.716417910447756,191.67164179104478,88.30659984439977,2286.6273941194027,15.28972962427448,6.758761194029846,103.40713101160861,4.336978507462685,3408.635217227363,-7.084651370015582,-0.6580055023390402,-0.5196495519707698,7.063934061038092,24.36310982401426,6.215500188162983,-27.185456733125775,1.2615082361961047,-0.6035038984183488,-11.572826167669117,-0.4004845150367575,174.65282991097303,-91.08376030296277,0.05854560035643619,0.07122509845344194,-6.777901537090668,-30.12853642236578,-22.148146278387976,-444.8252871595014,-4.422822319768406,-0.11440189351748008,-2.788464394445683,0.12390542659835076,-943.5128425703431,-78.36645132546224,-1.58509881933615,-0.12817247912264845,-10.530184896413454,-56.51570505680552,-3.671099134671005,-370.1161596903543,-1.68250350008273,-1.4757760080196003,-25.338679735650114,-0.9726133481844511,-402.5351904557283,-76.78458453998665,-0.4554421920249481,0.13925099615926892,-1.8159946535976836,-40.27712185341948,-8.120637577350596,-367.7583394270439,-1.7601978481372904,-0.5674638226776548,-1.5190156184252843,-0.11374014702606383,-508.9241751930611,-8.958119848518617,-1.0394041434617967,-0.13103081691251478,1.0904433058587664,0.9374025395410985,0.49785281502021295,-37.17324435308531,0.1473006085670792,-0.8722042771218539,-13.54876116927799,-0.7608687431499217,61.977593511518265,53.335932278904004,1.1637134773891722,0.16046690167719982,-5.461572733348186,21.574738249053237,-8.973782086276005,245.10285501759853,-1.1525803906728547,1.1744827132991742,16.940292319497047,0.6248473994208062,-4.898994738729151,-78.75384272666521,-0.7833716863443948,-0.046573795080317684,1.9988861661840063,-31.261305413232346,-4.012991856832317,-372.7137701220761,-0.7621171629705491,-0.8816409222543976,-5.071303928120591,-0.3105468621073739,-374.63294023211,-3.4350634885275246,-1.3205814880819824,-0.1347875101186737,9.156827801292048,-0.882824682557364,13.120735581984263,-3.911052650478819,2.3234538707732764,-1.1649676988193391,-22.322844731566054,-0.8749374809534409,375.48957825720004,0.7256457981895077,0.5996549031703629,0.46797545332411444,0.3609675627767502,0.3119820007732949,0.20874270962770064,0.2023137091152556,0.12535806030150584,0.13440834107231067,0.07510461942859502,0.08950650048499782,0.044607790753618724,0.060646799432304326,0.028393954447599543,0.040586412548412894,0.01769581968945857,8.02232962354932,5.694110970613215,3.543973730407986,2.1941079930664373,0.3585683018600595,-0.36392481357676026,3.1766704570426025,0.9778435858921767,6.021921873824371,0.9880001283692958,14.540283631524552,10.954411481491075,16.010619929865737,11.70511271376197,1.9838900431451667,0.7518624236793753,3.4891702721558224,2.2441073456791147,7.008274195506443,1.1556605709838703,3.7021016716670174,2.440107459816145,20.89310747301987,14.702362941501855,0.21532358162607895,0.5383828820988303,0.7812928407174182,0.9059806807709714,0.9270243950924529,0.9270243950924529,1.614609758380596,672.9860136970174,0.0,1.0,2.0,0.0,9.0,10.0,1.0,2.0,0.0,4.729047451830436,2.723025791212176,1.2146877311231963,0.44044440304965615,0.3097744403307985,0.3097744403307985,335.27979355572484,2003.7820093776927,71.8439335467709,29.907194169816307,57.3904215008524,,20.0,914.0,18.31189916324491,20.11411936859394,17.742991821674295,32.22804289761662,19.26246486877803,5.563451491696996,6.076020106833881,55.483632862500315,5.316788604006331,0.0,14.233333333333333,26.5,9.5,0.0,17.0,0.0,0.025555555555555585,-7.5,0.09448213478064238,0.029979970278478096,-0.06450216450216428,0.06065359477124166,0.1322561307901905,0.0,0.5308457711442782,0.8155555555555551,0.43636363636363584,0.5008658008658001,0.7549019607843135,34.08347224677738,0.40697450932555057,0.5789745093255505,19.425865694159732,4.872953862129986,9.63428519091756,53.509337940937115,14.507239053047545,0.5817438692098095,0.12880562060889927,0.0,0.24590163934426232,0.56,0.2762886906933504,-0.7387953209296632,-0.050529784779251366,-0.011026795834771091,-0.03358160549680287,0.7237113093066496,1.9352023699481136,0.0453441733202651,0.028883617461912137,0.04300449710995808,-3.739026202325438,1.038026269067587,0.9297760994515432,1.4533450688395704,1.1691390842051106,0.812741051879403,1.2362600346933734,1.0420406794797947,1.1781209758530693,0.9341110955519771,0.8978052081716826,0.9206678157480165,1.1343383385298136,1.0906851398466064,0.7851184550093412,0.7902843297807888,1.537272748820783,1.0344164156483489,1.3206721364080887,1.0991457873936963,1.313930986320629,0.8153027495975641,0.7431880931002498,0.748852943670983,1.2634078924867758,1.0566919625407563,1.0914543580552325,1.0236825729940033,1.2614488813181777,1.1249048504818284,1.0321660130850745,1.0561710313880206,1.0489821252583251,1.0854844736279714,1.0914459648578747,1.0950791612973458,1.0446988109357536,1.051340747721583,1.0549019301399203,0.9587203618813744,0.9971811929191567,1.0843821335552113,1.0092572202811743,1.0508536233198573,1.0313519174429784,1.0572207771954876,1.0788899763068314,1.0587251296486138,1.0405871107811033,0.992586522644218,1.0629157734178152,1.003579330788166,0.968772645309156,0.982261510055967,0.9616533274192993,0.9911332516801411,0.9752125458404483,1.05395378839693,1.0982413996199338,1.084952271260802,0.97257904652768,0.9399502296946824,0.9231490639890627,0.9073668147688201,1.1261196389054762,0.887813518518866,1.0127450433146399,0.9414699355416644,1.0227411065435967,0.9200403674600751,0.9032317355285032,0.9450937490364536,0.990274314594358,1.0681863457920555,1.1549320563129983,1.1106640045870995,0.9408456535615093,1.0289416476447013,0.9699852800781856,1.065357059669931,0.990207226766556,1.1495519836003534,1.119042385110407,1.1734807420970916,1.013134200829602,0.9786801658700511,1.0630464125090024,1.065015180569449,0.8450632866386975,0.958479892578088,0.8767696928751857,0.9758730736120781,0.893264865729097,1.0576470053269047,1.053540471485912,1.0732612953286014,0.918459339517041,5.0,0.20406897255382106,2.88888888888889,1.9513888888888888,0.9611111111111112,0.7813888888888889,0.4940136054421769,0.27781320861678005,0.2615347064751826,0.27375771604938276,5090.965985536812,6170.115506943897,2674.0315524175844,2283.4125844203663,20.87115361595203,0.4799700412931028,10.853625153068842,0.9229661354253375,1.0,0.56,1.3370417386273359,3.343063399245596,4.851401459334576,5.625644787408116,5.756314750126974,5.756314750126974,0.16129032258064513,0.006377155392306908,0.07407407407407413,0.051352339181286545,0.028267973856209154,0.023678451178451177,0.014529811924769907,0.009260440287226,0.009340525231256521,0.008830894066109122,0.3870019877723346,26.253902185223726,14.948060486522024,10.003780718336484,180.07435161537458,1.0,4.284321655110958,222.8656983270691,,198.95754710698054,198.2348530903993,198.49602209971476,198.9663567651553,215.70269756237778,198.6895967659053,198.99722229303978,208.6330390336069,-0.014552591215090775,-0.09237470202472547,-0.5095041892648924,0.22659063625450182,0.12523933417004865,0.0693503745407717,-0.011714051302622838,0.08129356601008689,-0.08797896892908647,-0.11026935411520372,-0.09098385804667199,0.05048484069869763,-0.10343478100286008,0.0045438249334582275,0.038607711702307465,-0.12019720780298186,-0.08562288628648627,-0.13661988373386402,-0.10596532072686761,-0.15756849184386693,-0.009220103624572182,-0.014688731953353268,0.015562262929883079,-0.15077765357207765,-0.061495160267414174,-0.0850097576580047,-0.04800880511453771,-0.12903877441827452,-0.11098546027868529,-0.01564796080980296,-0.06092526762739776,-0.041420083599069804,-0.08218794926656262,-0.09223341602171208,-0.08441269305868795,-0.04445065111945451,-0.05925516651429661,-0.02402078102094735,0.05129391532613012,-0.021884681260033616,-0.07778516797008438,-0.034040285448038894,-0.059533765911752766,-0.042614550114479635,-0.031079019237063476,-0.0054376090300650775,-0.009707842979915086,-0.05526736799014398,-0.007232717863750161,-0.05735493323602283,-0.05049791654506613,0.013748686923159033,0.0018940740867439078,0.002183416076345965,-0.006295986149586126,0.0037310703262212774,-0.049978107831703235,-0.05074319373883905,-0.06794400969886764,0.007041786963574548,0.04487893699385257,0.06692223150387078,0.06445008492802988,-0.07176519489034859,0.04543121872320304,-0.04101560016839948,0.04326330393629151,-0.03042552883014213,0.07013684756005846,0.06612065176888425,0.05815049438464669,-0.0005800870375912657,-0.06509023033434587,-0.044250033515111954,-0.018373886873615658,0.025799161591940255,-0.0646602448143066,-0.018016200795510185,-0.06462017566769125,-0.01976105079723152,-0.05171454838439775,-0.019442730131367127,-0.02838755400628598,-0.043572605706304654,-0.0029256453495520186,-0.07686945375499876,-0.05479638615524579,0.12178826234326487,-0.0018816877547376972,0.0607010180620384,-0.0006987618967225817,0.06208192910839856,-0.07041703532262238,-0.08819216501870013,-0.08241774089086738,0.045003709803374016,23.984893656259754,23.921104630888948,5.090352016092505,12.002854613823814,28.173332231769066,34.84429509611727,37.18153874673039,37.313254069151,37.313254069151,59.77170450719194,50.79473170413114,1.915618157191782,7.061354645869022,0.0,8.976972803060804,14836.304968936849,14575.287492396512,1068.224296150427,58.0,39.0,46.0,54.0,57.0,52.0,52.0,53.0,56.0,415.272258664001,31.0,4.948759890378168,5.739792912179234,6.5638555265321274,7.377133712833954,8.211482916445066,9.038008749211576,9.879860621904971,10.716349235602204,11.564445233710527,0.5621890547263682,0.9610149253731344,1.1315095671611306,0.5164097090105214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6321328179461971,0.9479075212174423,0.9912056614234,0.5767309605038113,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,3.0,8.0,1.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,20.63637078852845,0.0,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,54.635915769643574,50.50920285217906,25.30430569792599,18.31189916324491,207.03918694264814,-553.6223078058534,-37.864906923369006,-8.26301951949035,-25.16465035481152,542.318980498373,1450.1597015718394,33.9790266234019,21.644174650325958,32.22577114604088,0.5,0.8252356459864788,0.1468598997526484,100.61682556808,0.08208530484765485,49.787818109387175,0.17476435401352103,10.0,0.3870967741935484,0.22041247608600315,0.5511068654421342,0.7997576868744439,0.9273923628187837,0.9489334181208401,0.9489334181208401,3.1469000000000014,,1.1428571428571428,1.3285248953001396,0.9177863289708527,1.1395624948769625,-4.847358875538426,1.1960679314565485,1.1342421939878375,-1.9153025404755315,119.81210000000003,20.11411936859394,0.0,5.316788604006331,11.835812092322787,70.1813877234176,6.544756405912575,60.19936726134057,0.0,0.0,4.143134726391533,0.0,5.389071729816501,2.3978952727983707,6.805722553416985,4.844187086458591,8.304742269640771,6.985641817639208,9.852878234709586,37.666666666666664,10.055973018577982,0.0,0.0,0.0,0.0,0.0,1.191168889480109,0.0,64.388,0.0,11.436932079877312,0.0,0.0,0.0,7.726699113438208,0.0,0.07987097549500821,75.81114099979575,5.316788604006331,0.0,0.0,46.0834174830311,11.21535880699783,11.835812092322787,51.01211842894368,54.635915769643574,0.0,0.0,0.0,34.59945050370494,42.35289880239521,37.667981029053585,445.7313966541382,,397.8389037377706,396.3811378544453,396.93085844416487,397.8567426973188,432.37486689986326,397.2994556697135,397.9188284398137,417.6491385753088,37.667981029053585,445.7313966541382,,396.772237071104,395.14118128549853,396.0742578704589,396.7931510354337,436.252754000294,396.18312560035406,396.86020239209154,419.1813806076892,4.633047602146519,336.0309045028647,,301.51019206367073,300.6679098100759,300.8467681046513,301.5200847795761,320.41736845401346,301.1920850064605,301.5570373778494,312.61301558764484,1.2555993676351196,14.857713221804607,,13.261296791259019,13.212704595148177,13.231028614805496,13.26189142324396,14.412495563328775,13.243315188990449,13.26396094799379,13.921637952510293,2.4054565921693487,222.8656983270691,,198.95754710698054,198.2348530903993,198.49602209971476,198.9663567651553,215.70269756237778,198.6895967659053,198.99722229303978,208.6330390336069,63.50980392156863,0.0,1.9090161985240495,0.0,0.0,0.0,30.967761222034934,66.4107793153678,5.267800331100777,2.787013783071964,0.0,0.0,-1.9222356116003452,0.0,0.0,0.0,0.0,38.64097435375536,618.397071383435,89.5817964880315,223.98524774945494,325.04389777541655,376.91820075634377,385.6730882585072,385.6730882585072,528.0,135.0396887987978,130.961096057586,78.72327369087154,89.79,89.79,1.0,7.1525624699323735,5.954196310386875,3.485733689813901,5.379151242897216,,5.383325830113862,5.384110682720074,5.385447927362036,5.383321179824478,5.368877389817648,5.383693890213344,5.383274770503963,5.374323089262212,0.11619112299379669,0.17930504142990722,,0.17944419433712874,0.17947035609066914,0.17951493091206788,0.17944403932748262,0.17896257966058826,0.17945646300711146,0.1794424923501321,0.1791441029754071,2.3472908386463476,2.781142888852873,,2.7819186558807956,2.782064438510982,2.782312776385773,2.781917792048373,2.7792311231589464,2.781987023936058,2.781909171065338,2.7802449178696724,349.0500000000014,2324.88643283209,182.88954864849524,,182.1098584371148,181.98605291514644,182.0457920398861,182.11140724082884,185.09159534995976,182.06454998537083,182.1165947438577,183.79627694223183,77.49621442773633,6.096318288283174,,6.070328614570494,6.066201763838214,6.068193067996203,6.0703802413609615,6.169719844998658,6.068818332845694,6.07055315812859,6.126542564741061,8.850038759402832,6.307494699996455,,6.303222411427312,6.302542340474138,6.302870548712531,6.303230916168028,6.319463101219702,6.30297358311357,6.303259401089566,6.31244024235751,0.0,11.436932079877312,33.75477500510689,1.191168889480109,-0.1390451243216151,10.055973018577982,10.63202702292278,2.568169108356533,0.0,435.682086365922,155.1465057158218,-414.86139803186325,-28.374377262420634,-6.191961164654676,-18.8573362741756,406.39115739474363,1086.6890164666916,25.462461121942116,16.219239051741663,24.148644810370925,3203.0,38.0,1.5250444621884978,0.7534415544623645,0.0,0.0,0.24800564528543081,0.1235304879001603,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.07856742013183861,0.370308023990754,0.20326432856581683,0.49080955620052197,0.21899555535827234,21.76937394568523,17.989647095110886,14.507239053047547,11.189994446079256,12.167298030158502,8.140965675480325,9.306430619301757,5.766470773869269,7.258050417904776,4.055649449144131,5.101870527644876,2.5426440729562674,3.153633570479825,1.4764856312751762,2.1104934525174706,0.9201826238518457,3.133824306534308,1.5636084063964113,4.642197587237934,2.123351207947842,5.986971786768008,2.3236055079189875,105.5079139919983,52.364223555731,30.131308422448154,22.336144569031706,21.763066518313984,21.763066518313984,140.0,155.0,70.72934099999996,38.55665900000002,0.23880597014925373,91.05,10.277777777777779,7.000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,6.0,67.0,0.0,0.0,68.0,6.0,3.0,6.0,62.0,9.0,31.0,59.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,4.0,4.0,0.0,30.0,5.0,0.0,1.0,4.0,0.0,2.0,12.0,0.0,0.0,0.0,0.0,1.0,3.6375861597263857,5.440793014794791,3.9982007016691985,4.314149212270796,4.640778613455459,4.934024191724415,4.82078547088151,4.925894065641165,5.068511043182339,5.273640378835596 +71236597,CN1CCCn2c1cc(OCc1cc(F)c(Oc3ccc(C(F)(F)F)nc3)c(F)c1)nc2=O,0,31.32,7.4405920000000005,3.9,13.68,174.50730940299468,128.08408897497702,1.4889235276486599,7.410034,10.001249999999999,8.668528319999998,238.59855288504565,30.339622641509433,6.8915094339622645,4.528301886792453,11.11320754716981,151.24571107800566,118.83389153162263,1.7598170428301887,7.010094339622642,3.9758909853249476,8.197069056603773,279.61657246881106,28.35164835164835,7.208536263736263,3.9450549450549453,10.67032967032967,165.2099756022895,111.12777997028252,1.4902016727026706,7.246793406593407,6.10927960927961,8.49800021978022,238.00658724248865,24.61946902654867,6.968477876106195,3.4867256637168142,8.495575221238939,164.17806907041853,94.24898067396813,1.37653326604992,7.0151823008849545,4.785889872173059,8.337500212389381,214.29681528785557,21.264462809917354,6.879693388429752,2.975206611570248,6.8429752066115705,168.74954923394077,80.0883785161072,1.2217635118395374,6.907495041322314,4.861570247933885,8.302489157024793,187.08817515726392,20.072727272727274,6.860345454545456,2.918181818181818,5.990909090909091,170.03733988402936,74.57379953224728,1.1883437509780361,6.886171818181819,4.690530303030303,8.298326036363635,180.8335040392987,21.571428571428573,7.22876923076923,3.065934065934066,7.384615384615385,173.3337131932109,80.16604942503736,1.2122428140526593,7.219369230769232,5.315934065934066,8.646340175824175,188.1192791781237,23.513513513513512,6.790027027027027,3.5675675675675675,8.324324324324325,161.98777712593915,89.83298653976215,1.4155561050418108,6.856964864864864,4.563438438438439,8.169878594594595,216.4305094115452,22.70731707317073,6.789829268292682,3.2560975609756095,8.414634146341463,167.3331918517949,87.5807405838244,1.2465274336778538,6.835982926829267,4.352981029810298,8.205226390243903,196.71199567993713,8.28,0.34582703999999986,0.03075428338657116,0.7316000000000003,5.839999999999999,3.5546231273653928,40.33065439726172,0.23468117389531556,0.29927844,4.502224999999999,0.20415271039999994,42.59656193977221,0.307924528301887,-0.015215417358490583,-0.01601360767230288,0.1065132075471698,1.5720754716981131,-0.6475865081561168,1.3905836046676583,-0.036385483215471054,-0.00961444000000005,-0.2590462788259956,-0.012371961720754684,-2.716967894520321,1.2290109890109893,0.06592016879120877,0.000224892814672915,-0.026105494505494514,1.1257142857142861,0.5351552145502894,6.228255637834701,0.016385497247776264,0.0575401753846154,1.2275994810744808,0.03578329135824176,3.7604059156833602,0.21168141592920356,0.018292181238938027,-0.0008537365209718693,-0.0868212389380531,0.40283185840707975,-0.13088252875625953,1.0463007576548569,-0.027274567335498243,0.016792073274336232,0.22873861848574245,0.009513339865486739,-3.5538774016066634,0.11272727272727265,-0.001737023471074407,0.002596429067939282,-0.07903801652892563,0.011900826446280873,-0.21948456826096466,0.780858685649391,-0.012918104522579072,0.0003090476033056987,0.10041274104683198,-0.0027824505652892365,-0.5750237126865103,-0.349090909090909,-0.036053949090909095,-0.0014317356163256036,0.002218181818181818,-0.8818181818181818,-0.28440920270607284,-2.006785423143655,-0.010084248802583774,-0.03035829454545462,-0.6276454545454544,-0.020496937309090885,-0.8363019279134128,-1.8589010989010992,-0.0402946883516483,0.0015885086104711049,0.09235604395604396,-1.2369230769230768,0.42826915237225766,-8.449975914242996,0.06079070019737097,-0.040797978461538376,-0.555714010989011,-0.018317055015384633,3.193971198072729,-0.01945945945945945,-0.0019226075675676,0.001673386901949043,0.02488648648648647,0.8021621621621622,-0.36542609235869067,-0.050424077278146275,-0.037172604765246135,-0.00021865621621631613,0.016990465465465558,-0.004139741751351316,-4.83430872979261,2.020487804878049,-0.01160186926829272,-0.009161689047938664,-0.06599024390243902,1.5034146341463415,-0.8943933909791406,9.879389927651514,-0.018503329394512415,-0.0005550985365855133,-0.37162201897018954,-0.014868000156097537,6.655777782338806,,,0.44025974025974035,1.303030303030303,0.6060606060606061,0.07575757575757576,0.696969696969697,-0.09090909090909091,0.797397867890977,0.024272771394047748,0.034697013818290164,1.1728381066353764,0.2654154755229626,0.20771216406399257,1.9702359745263534,0.47312763958695514,2.0330448469410727,1.3359349032090533,0.2561211334799736,0.17916014907016667,0.2618286611818787,0.6971099437320188,9.36244163008001,1566.0,372.0296,195.0,684.0,8725.365470149734,6404.204448748851,74.446176382433,370.50169999999997,500.06249999999994,433.4264159999999,11929.927644252282,1608.0,365.25,240.0,589.0,8016.0226871343,6298.196251175999,93.27030327,371.535,210.72222222222223,434.44465999999994,14819.678340846986,2580.0,655.9767999999999,359.0,971.0,15034.107779808342,10112.62797729571,135.60835221594303,659.4582,555.9444444444445,773.31802,21658.599439066467,2782.0,787.438,394.0,960.0,18552.121804957293,10650.1348161584,155.54825906364098,792.7155999999999,540.8055555555557,942.1375240000001,24215.540127527678,2573.0,832.4429,360.0,828.0,20418.695457306832,9690.693800448971,147.833384932584,835.8069,588.2500000000001,1004.601188,22637.669194028935,2208.0,754.6380000000001,321.0,659.0,18704.10738724323,8203.1179485472,130.71781260758397,757.4789000000001,515.9583333333334,912.8158639999999,19891.68544432286,1963.0,657.818,279.0,672.0,15773.367900582192,7295.110497678399,110.314096078792,656.9626000000001,483.75,786.816956,17118.854405209255,1740.0,502.462,264.0,616.0,11987.095507319496,6647.641003942399,104.751151773094,507.4153999999999,337.69444444444446,604.571016,16015.857696454344,1862.0,556.766,267.0,690.0,13721.321731847183,7181.6207278736,102.21524956158402,560.5505999999999,356.9444444444444,672.828564,16130.383645754844,414.0,17.291351999999993,1.537714169328558,36.58000000000001,291.99999999999994,177.73115636826964,2016.5327198630857,11.734058694765778,14.963921999999998,225.11124999999996,10.207635519999997,2129.8280969886105,16.32000000000001,-0.8064171200000009,-0.8487212066320525,5.645199999999999,83.32,-34.322084932274194,73.7009310473859,-1.9284306104199658,-0.5095653200000027,-13.72945277777777,-0.6557139711999983,-143.999298409577,111.84000000000002,5.998735359999998,0.020465246135235267,-2.375600000000001,102.44000000000003,48.69912452407633,566.7712630429578,1.49108024954764,5.236155960000001,111.71155277777775,3.2562795136,342.19693832718576,23.92,2.067016479999997,-0.09647222686982122,-9.8108,45.52000000000001,-14.789725749457327,118.23198561499883,-3.0820261089113017,1.8975042799999944,25.847463888888896,1.0750074048000016,-401.588146381553,13.63999999999999,-0.21017984000000325,0.3141679172206531,-9.563600000000001,1.4399999999999857,-26.557632759576723,94.4839009635763,-1.5630906472320676,0.03739475999998954,12.14994166666667,-0.3366765183999976,-69.57786923506775,-38.39999999999999,-3.9659344000000005,-0.1574909177958164,0.244,-97.0,-31.285012297668015,-220.74639654580204,-1.1092673682842151,-3.339412400000008,-69.04099999999998,-2.2546631039999974,-91.99321207047541,-169.16000000000003,-3.6668166399999955,0.14455428355287053,8.4044,-112.55999999999999,38.972492865875445,-768.9478081961126,5.531953717960758,-3.7126160399999923,-50.569975,-1.6668520064000016,290.65137902461834,-1.4399999999999995,-0.1422729600000024,0.12383063074422919,1.8415999999999988,59.36,-27.04153083454311,-3.731381718582824,-2.750772752628214,-0.016180560000007393,1.2572944444444514,-0.3063408895999974,-357.73884600465317,165.68,-0.9513532800000031,-0.7512585019309704,-5.411199999999999,123.28,-73.34025806028953,810.1099740674242,-1.517273010350018,-0.04551808000001209,-30.47300555555554,-1.219176012799998,545.773778151782,0.7197075120514409,0.5210894047976213,0.4337003362880422,0.2712376288085055,0.29062622977093133,0.1380778423252554,0.1798729567389108,0.07348785086490921,0.11689048758670607,0.039186836237755804,0.07389530885652715,0.020618684607955816,0.049261004709690935,0.010468285372834249,0.03194815662065531,0.0054829192595827365,9.014846306509192,5.693209423596412,4.125080387669683,2.1917784358380685,0.523520395826399,-0.5021930679599064,4.022115995878742,0.977596134488542,7.0148385827259805,0.9969632208220891,17.431794872871585,10.954145215778777,19.006766010698712,11.705155302766753,1.987426821728601,0.5267583090645084,4.007680226669912,2.2414499144030975,8.00855373522255,1.2200032095231943,4.031115684797769,2.437235433335912,20.89142931554245,13.30130502273989,0.322806781378298,0.6794023850035154,0.8299134967349402,0.8890638490460235,0.8890638490460235,0.8890638490460235,1.2161022696541977,1205.0453824670537,0.0,3.0,4.0,0.0,10.0,1.0,1.0,0.0,0.0,3.7218012431242,1.59856101571875,0.7023883095752739,0.35019550008653777,0.35019550008653777,0.35019550008653777,17.537183614098126,2273.440052378489,88.24256673508071,45.468801047569784,97.9902972866669,,18.0,994.0,34.943923425871105,26.74661242244592,23.79983362592919,18.428986252209214,37.36152280583649,4.567099647791355,6.06636706846161,11.947581713527669,9.967957041894417,9.473725907600098,14.528571428571432,43.0,20.0,2.5,23.0,0.0,0.059740259740259635,-3.0,0.3114930875576033,0.08776036866359471,-0.2237327188940086,0.0,0.2679473684210524,0.0,0.7534285714285702,0.9870129870129868,0.4419354838709669,0.6656682027649755,0.9870129870129868,26.31412964040224,0.8010014560035756,1.1450014560035755,38.70365751896742,8.758710692257765,6.854501414111755,65.01778715936966,15.61321210636952,0.4460526315789476,0.15568666011143883,0.03441494591937069,0.3647984267453293,0.2857142857142857,0.48763390459033595,-1.5634361171220017,-0.08787111187513943,-0.03126872234244003,-0.08685756206233343,0.5123660954096639,1.6427316706479094,0.036574867987034215,0.03285463341295818,0.05133536470774717,-6.2287229605229415,0.5582900373712516,0.6036232600059812,1.6337583731246663,0.9604175908063995,0.35303049883690885,1.0866430583876896,0.5551210772446539,1.1944263589618835,0.5767056458785867,0.5725249778373617,0.6518986902870034,0.9793083436580663,0.6561687105165367,0.5978837994142524,1.0932668005009973,1.052487698195735,0.6334299262381455,0.7714342148312435,0.644141509273825,0.8886442582249527,0.5894212657720246,0.4466523745880065,0.6289955414443746,0.8186524130029648,0.8332157667478945,0.7127324155824264,1.12497484234548,1.0668821397639792,0.7833525275791007,0.8740489699489745,0.8245598703184766,1.0783299436616922,0.710469972821107,0.6264103393475072,0.7383308242282006,1.0446215790939974,0.9683794466403163,0.8564850393144885,0.9222408951992678,1.0240207131205685,0.9499886788180687,0.8766134365689376,0.9553214271271829,1.0054528332820947,0.8594294136753586,0.7832515124995258,0.8742765432832247,1.023585892476873,1.0738252086078173,1.0740437290165732,0.9380124830342734,0.9376708583925638,1.1594022415940226,1.0083371630827411,1.081216363778785,1.0435435498369618,1.0776519685146715,1.1318916611993923,1.069699361679403,1.0620457183043497,1.2336492010405056,1.0686971863605133,1.1181950992764984,0.6771249526853679,1.2216807165437304,0.6711522226147107,1.2034606961096366,0.635305946617469,1.0946903852119474,1.0196560931197696,1.085161545664352,0.8503800470710547,0.8524937981459721,0.7761320006452717,0.8019412392704051,0.9503420862086795,0.696177341725287,1.020222126659795,0.8508990719999291,1.1803526106347633,0.7704290720401069,0.7588836163874063,0.7912341946815782,1.1244153777396482,0.7426210675150231,0.9166089809857184,1.186888269360787,1.2006760991612098,0.6978366187771468,1.1523793194118086,0.741471212844438,1.0768649326948003,0.8918476329022663,0.9896175845965715,0.9476520959402315,0.8905113899384395,9.0,0.22283440465258647,4.444444444444446,2.6875,2.684444444444445,1.034722222222222,0.6677551020408166,0.6649305555555556,0.4809775762156714,0.3537500000000001,7359.756179456847,7856.453875778108,3335.0145237401216,3165.9631001593725,19.14995795691308,0.4907257218037148,9.752581015996117,0.9635784543090131,1.0,0.2857142857142857,1.9220549466505246,4.045295174055974,4.9414678801994505,5.293660689688187,5.293660689688187,5.293660689688187,0.25,0.008253126098243942,0.08385744234800842,0.048863636363636366,0.05592592592592593,0.025237127371273715,0.01854875283446712,0.018998015873015868,0.012999393951774903,0.00907051282051282,0.5317539335868591,26.074074074074073,10.947668209327162,6.415682780129205,183.57445173780232,1.0,4.42929346139832,233.99346256926572,,168.11478815545235,163.51307834087498,169.06164662580088,167.80734896981272,293.88244482445543,166.52625878718936,168.52886388597895,231.1953609499582,0.037188952693464616,-0.043997188185431045,-0.5206951978369039,0.14558940342696794,0.26919100542775914,-0.18218148167963266,0.03447956958422359,-0.1550421902683236,-0.032125401348657295,-0.057537390695932715,-0.060601506080982644,-0.06378373678049121,0.1484312788660615,0.19061600501571188,0.0073125688492261965,-0.0356827426264277,0.19275929549902163,0.15055188563602648,0.1544298184821314,0.06982024580755403,0.19226301562055526,0.2726650669556677,0.1752770819850049,0.08827956399392616,0.025565388397246806,0.052894016728530065,-0.0277599224225349,-0.11867309860313431,0.06897805794641777,-0.03682036718566751,0.025943064234680416,-0.11621966467435788,0.05610852981703671,0.05080568351998012,0.04659913574915115,-0.08343108550947217,0.013614404918752735,-0.005022809873613144,0.08442495750276566,-0.10803446764478622,0.002037812747650835,-0.061746227489281456,0.019361418685594354,-0.05504533792873161,0.0010326423891600703,0.022302914902483106,-0.013629260957826782,-0.013499298687521854,-0.042160737812911714,-0.10425428009015464,-0.046554023006459326,0.0030319598389581975,-0.1509962640099627,-0.08001107079862797,-0.04975831543362975,-0.042969994717522865,-0.10143829453753708,-0.1394078382456351,-0.10040002539731596,-0.01963308515593043,-0.22450496363539846,-0.11651688182522778,0.0516516216783229,0.1262384417113777,-0.2118018967334036,0.12048229503578377,-0.2095174511925776,0.25903526554067746,-0.13632114114714838,-0.12343097268328684,-0.08972232099929367,0.07498190118227671,-0.0023501762632197405,-0.005559448351891746,0.054411506875810554,0.03401652062122261,0.13735653461680863,-0.1028030481052815,-0.0012502667767664553,-0.1583961940714842,-0.0007306113204022186,0.0037737930613120315,-0.020277672254462104,-0.113490584912179,0.24402026628961943,-0.03354818428394935,-0.2978996106909488,-0.09019989598474439,0.2574340126962914,-0.2516141258671338,0.24495982213277165,-0.07884454081845615,-0.0018547895952194663,-0.08254185851888557,-0.07282783621616586,0.15625152545760596,8.089073236251966,19.58068018069575,8.11987091737965,21.137397517720522,44.43271748765382,49.731197058251,50.80580741021566,50.80580741021566,50.80580741021566,67.09047994905539,44.085851805898756,8.45199740483913,5.9122849193155,8.640345819001997,23.004628143156623,16627.710226474643,16171.238560330405,1175.5661828007032,150.0,53.0,67.0,85.0,107.0,112.0,120.0,132.0,158.0,468.1220815040005,36.0,5.187385805840755,6.037870919922137,6.932447891572509,7.79770203551669,8.689632748355741,9.559940347242952,10.450191772337018,11.323083702176397,12.21223859692109,0.8,1.0654400000000002,1.1611491363462785,0.7799250953292816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6706165389221558,1.0457254901960786,1.0594901675163875,0.6802912232851619,6.0,2.0,0.0,0.0,0.0,0.0,8.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,0.0,4.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,14.373635638450576,23.868184570480313,17.383953515375694,5.879988336435371,0.0,4.567099647791355,18.55934580036867,18.155223663971668,0.0,0.0,36.249741388469445,26.20355186296395,6.196843571613076,345.77306085545985,-1108.6064495933808,-62.307938451008305,-22.172128991867616,-61.58924719963227,363.310244469558,1164.8336027851083,25.934628284072407,23.296672055702164,36.40105008703463,0.5,0.7533400214842645,0.147396074018904,66.54947884958797,0.1350009564806111,1.0499214571417421,0.24665997851573532,9.0,0.1388888888888889,0.3405570379579859,0.7167608525151742,0.8755481560908961,0.9379510235003852,0.9379510235003852,0.9379510235003852,4.146500000000003,,2.988095238095238,3.5510333791099655,3.188916867048202,3.1567423158121874,-15.310633405062502,3.217382044863239,2.874036373105155,-5.207580273651329,106.38700000000006,31.425801145974198,0.0,14.53505668968577,0.0,25.74875851079498,18.492338119440245,69.90478066483367,0.0,17.37901200300318,4.290459441148391,0.0,5.652489180268651,0.0,7.199678345691172,0.0,8.832441791585824,0.0,10.508977693165527,40.0,5.737067597060235,7.014302854812943,0.0,0.0,0.0,0.0,-3.6820357597403737,1.5118377966153158,53.272000000000006,0.0,12.185145198209256,0.0,0.0,0.0,0.0,0.0,0.0,58.05745681731392,20.063379036654048,27.76993801620913,17.37901200300318,28.127485078275534,19.32793688786897,11.63444168209179,17.678201109471466,41.32321609799295,0.0,0.0,0.0,38.99625476646408,33.53082694610779,41.61582590090818,467.98692513853155,,336.048479629808,326.8109425375615,337.93002556268976,335.42338022351566,592.6664668401771,332.8575247231749,336.88354374934545,463.49812511633024,41.61582590090818,467.98692513853155,,333.30233940729477,323.5765460149946,335.08329407818167,332.5185226932552,603.0755230539735,329.9119833810324,334.2424509546703,467.59830217356756,4.858769033544309,364.13912274411064,,262.11247318980224,255.34279283856796,265.25804591733566,261.8200435288089,452.011755046449,259.87861021649286,262.6399203003172,357.3616806963385,1.2610856333608538,14.181421973894896,,10.183287261509333,9.903361895077621,10.240303804929994,10.16434485525805,17.959589904247792,10.086591658278026,10.20859223482865,14.045397730797886,2.429384516772155,233.99346256926572,,168.11478815545235,163.51307834087498,169.06164662580088,167.80734896981272,293.88244482445543,166.52625878718936,168.52886388597895,231.1953609499582,52.28627450980393,0.0,1.8232892337399902,0.0,66.60414156459211,0.0,0.0,52.974508375819376,1.8231306482360927,0.0,10.491210167682862,0.0,0.0,1.8760044632819826,-4.648269779292397,0.0,0.0,34.0145611642581,534.1808324676823,96.10274733252623,202.26475870279873,247.07339400997253,264.68303448440935,264.68303448440935,264.68303448440935,1053.0,147.1904938198853,174.9024728573355,69.48404645185957,69.47999999999999,69.47999999999999,1.0,8.743718518076856,6.169925001442312,4.575663893902398,5.660607457306762,,5.657836507362345,5.659050533758072,5.662996370985045,5.65825980220553,5.647081129182201,5.658559260458057,5.657541298201629,5.653872088400821,0.138656481633406,0.1715335593123261,,0.17144959113219227,0.17148637981085066,0.17160595063591044,0.1714624182486524,0.1711236705812788,0.17147149274115325,0.17144064540004936,0.1713294572242673,2.7146742700932744,2.9274536795411543,,2.9269640450987473,2.9271785963964625,2.9278756147748393,2.927038857972693,2.925061265835602,2.92709178066253,2.9269118666976626,2.926263104283259,290.9400000000007,437.044508864643,220.22108457240068,,220.3258022984015,220.08733494316158,219.6561255772222,220.2052500458655,223.79679566346357,220.19457972266426,220.3993354855632,221.98626882840642,13.243772995898272,6.673366199163657,,6.6765394635879245,6.669313180095806,6.656246229612794,6.672886365026228,6.7817210807110175,6.672563021898917,6.678767741986763,6.726856631163831,7.273957509330409,6.588554440095351,,6.589029838883057,6.5879469130646395,6.585985726405305,6.588482534646937,6.604660946390133,6.588434077211297,6.589363530708369,6.5965379963074975,78.6071895288903,21.075452516304182,0.0,-1.5545462228969609,-2.6133135220414436,5.018788559744921,-3.12364208280853,1.0167819890675398,1.8232892337399902,366.6137003424919,245.18190488373804,-786.0943255823074,-44.18151894482875,-15.721886511646147,-43.67190697679485,257.6172290069145,825.9640612165136,18.38981194604576,16.51928122433027,25.81137691301605,3732.0,55.0,3.4737927388235663,0.9331578434526139,0.28867513459481287,0.013498731178900972,0.8734684369075254,0.12560693721731322,0.14433756729740643,0.0034853574033876186,0.0,0.0,0.0,0.0,0.0,0.0,0.2624858261884216,0.09213900326799812,0.6119063678932339,0.16041919102304752,23.75034789769755,17.195950358321504,15.61321210636952,9.764554637106198,15.403190177859361,7.318125643238536,12.051488101507024,4.923686007948917,9.935691444870017,3.3308810802092434,7.906798047648405,2.206199253051272,5.517232527485385,1.172447961757436,3.8337787944786372,0.6579503111499284,6.3465763649769045,1.6389857321055887,9.333685405255661,2.046046289245535,13.47326646083661,2.5056137010146293,104.18310630822303,47.72314994734572,34.42460527486329,31.59322162771422,31.59322162771422,31.59322162771422,178.0,209.0,55.996480999999996,32.659518999999996,0.5,240.12,11.784722222222221,6.972222222222221,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,18.0,50.0,0.0,0.0,53.0,18.0,1.0,9.0,44.0,19.0,36.0,34.0,0.0,0.0,0.0,21.0,0.0,5.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,7.0,0.0,3.0,33.0,12.0,0.0,4.0,3.0,0.0,4.0,5.0,0.0,0.0,5.0,2.0,3.0,3.8501476017100584,7.48849460014474,4.4942386252808095,5.035327906686628,5.575475506168485,6.090319572878847,6.28051287330991,6.495312760260933,6.791888375122129,7.22798016794691 +25019940,O=C(CN1C(=O)C2(CCCC2)NC[C@H]1c1cc(F)cc(F)c1)Nc1ccc2c(c1)C[C@@]1(C2)C(=O)Nc2ncccc21,1,24.914285714285715,6.451492857142856,3.8142857142857145,9.057142857142857,164.4699862661532,99.60595004713632,1.5421397748660142,6.504672857142855,6.074404761904762,7.880782571428573,232.1469107298855,26.407894736842106,6.423513157894737,4.644736842105263,8.171052631578947,146.80760728946453,101.48446924566316,1.8907088021052632,6.5708881578947365,3.190606725146199,7.792086684210524,281.05303747879384,23.244604316546763,6.347330215827337,4.287769784172662,6.64748201438849,151.92726956788127,88.14374468590505,1.6864414781927484,6.468341007194244,3.1654676258992804,7.757782791366904,245.2059326510814,18.8643216080402,6.3054361809045245,3.442211055276382,5.025125628140704,158.4634527375605,68.97909789468943,1.4236460782418643,6.394029648241207,3.139796203238415,7.778671959798993,200.91401490233594,16.981900452488688,6.253076923076924,3.0588235294117645,4.515837104072398,162.31757613132336,61.55980405199351,1.2806827936482443,6.3217782805429845,3.3990698843640033,7.77087467873303,178.91179832730515,16.55924170616114,6.264729857819905,2.924170616113744,4.469194312796208,163.44848231032353,59.61048184652889,1.2540470777642752,6.327673459715638,3.459189046866772,7.7880623127962085,174.34298518913317,16.833333333333332,6.258105555555556,2.9343434343434343,4.616161616161616,164.0802146837718,61.34696009741413,1.236596813345995,6.319343939393939,3.419753086419753,7.783122646464646,173.66625404576243,17.71590909090909,6.431743749999998,2.909090909090909,4.926136363636363,164.55016929026067,64.43181150845454,1.269725940862341,6.486634090909091,4.033222853535354,7.930238227272727,180.7009377625477,17.41566265060241,6.289662048192771,3.0060240963855422,4.644578313253012,161.76617522453782,63.65221578421203,1.3068586711793493,6.357225301204818,3.847054886211513,7.794023421686746,182.42182387094599,7.513469387755102,0.17646785714285704,0.016913992871072994,0.7267346938775513,4.34204081632653,2.1644257517462955,36.152934842943836,0.23186719359295124,0.15931185714285717,2.589960317460317,0.10258031102040813,48.58957164980359,0.28314715359828085,-0.007085526315789378,-0.009779663446260922,0.19506981740064444,1.057583243823845,-0.09863591283679092,1.3811559390124795,0.008899593376820803,-0.004895052631578843,-0.026118421052631503,-0.004856014027926965,2.7057004820671877,0.3416179709293785,0.012293345323741035,0.001504295642145706,-0.057772720599030956,0.11489649097048907,-0.10768615052811477,1.5883142845614893,-0.005285264245039177,0.011201647482014436,0.14791366906474826,0.007191351877844668,-0.29716461286316714,-0.774632345400472,-0.009366708542713537,0.0006555804011244018,-0.11029535432263357,-0.3749194954363655,-0.1530887349997717,-3.807309696047446,-0.028999432801668584,-0.00928101005025122,-0.1592322724734785,-0.004754212815095889,-6.284656761862433,-0.12122633668852155,-0.0021121040723982042,-0.0016451190886970807,-0.03145350447871457,-0.08360513436143686,-0.058643492320213784,-0.41249536657054164,-0.006596631137484193,-0.0013790452488687912,0.02991955756661643,-0.002573218324868406,-0.8044751003788908,-0.20216268497920492,-0.004002962085308056,0.0008701604002024645,-0.0008714575877744478,0.025190057065480182,0.035719861045682234,-0.9744481388806493,-0.0019160066553514333,-0.0038628862559241762,-0.03867298578199052,-0.002116729436115681,-0.7375654342657911,0.5888394145537006,0.0006661616161616015,0.000739385739933986,0.013885796742939594,0.15204287775716338,0.007037569276808204,2.8465047649709803,0.0081295066163671,0.002149939393939372,-0.14294051627384957,-0.002159423863121009,3.2975919656660424,-0.41152133580704997,-0.00881051136363626,-0.0013029062426802727,-0.0036015769944341396,-0.24122912801484225,0.06727921320881661,-1.9620248704063092,0.007504425562723446,-0.008750534090909015,-0.055943813131313226,-0.0037029486827458726,-0.044511753092817345,0.06295057782149002,0.019013253012048176,0.00048191125030450674,-0.014084091467912474,-0.08472584214408652,0.08078724241007257,0.4769690443318525,0.00025087296706839435,0.015779373493975898,0.24716198125836675,0.011201404642242434,-0.7545142753343956,,,0.46515679442508717,1.2560975609756098,0.5853658536585366,0.036585365853658534,0.6707317073170732,-0.08536585365853659,1.0248566143186026,0.015946075445521186,0.030629002274789475,1.1332874017320458,0.23443250261524082,0.24752906980199643,2.1581440160506484,0.48196157241723725,2.0869565214305696,1.6143432787155578,0.25524206704616154,0.1312569428273389,0.08611423284151197,0.4726132427150124,7.960340660400012,1744.0,451.6044999999999,267.0,634.0,11512.899038630723,6972.4165032995425,107.94978424062099,455.32709999999986,425.2083333333333,551.6547800000001,16250.283751091985,2007.0,488.187,353.0,621.0,11157.378153999305,7712.8196626704,143.69386896,499.3875,242.48611111111111,592.1985879999999,21360.03084838833,3231.0,882.2788999999998,596.0,924.0,21117.890469935497,12251.980511340802,234.41536546879203,899.0994,440.0,1078.3318079999997,34083.62463850032,3754.0,1254.7818000000004,685.0,1000.0,31534.22709477454,13726.840481043197,283.305569570131,1272.4119000000003,624.8194444444446,1547.9557199999997,39981.88896556485,3753.0,1381.9300000000003,676.0,998.0,35872.18432502246,13604.716695490566,283.030897396262,1397.1129999999996,751.1944444444447,1717.3633039999995,39539.50743033444,3494.0,1321.858,617.0,943.0,34487.62976747826,12577.811669617597,264.60393340826204,1335.1390999999996,729.8888888888889,1643.281148,36786.3698749071,3333.0,1239.1049,581.0,914.0,32487.882507386814,12146.698099287998,244.846169042507,1251.2300999999998,677.1111111111111,1541.058284,34385.91830106096,3118.0,1131.9868999999997,512.0,867.0,28960.829795085876,11339.998825487999,223.471765591772,1141.6476,709.8472222222223,1395.721928,31803.365046208397,2891.0,1044.0839,499.0,771.0,26853.185087273276,10566.267820179197,216.938539415772,1055.2993999999999,638.6111111111112,1293.8078879999998,30282.022762577035,525.9428571428572,12.352749999999993,1.1839795009751095,50.87142857142859,303.94285714285706,151.5098026222407,2530.7054390060684,16.230703551506586,11.151830000000002,181.2972222222222,7.1806217714285685,3401.270015486251,21.519183673469346,-0.5384999999999928,-0.74325442191583,14.825306122448978,80.37632653061223,-7.49632937559611,104.96785136494844,0.676369096638381,-0.372023999999992,-1.9849999999999943,-0.3690570661224493,205.63323663710628,47.48489795918361,1.708775000000004,0.20909709425825315,-8.030408163265303,15.97061224489798,-14.968374923407954,220.77568555404702,-0.7346517300604456,1.5570290000000067,20.56000000000001,0.9995979110204088,-41.30588118798023,-154.15183673469392,-1.8639749999999937,0.13046049982375596,-21.94877551020408,-74.60897959183673,-30.464658264954565,-757.6546295134417,-5.770887127532048,-1.846920999999993,-31.687222222222218,-0.9460883502040819,-1250.6466956106242,-26.791020408163263,-0.46677500000000316,-0.3635713186020548,-6.951224489795919,-18.476734693877546,-12.960211802767246,-91.16147601208971,-1.4578554813840066,-0.30476900000000284,6.612222222222231,-0.5686812497959177,-177.78899718373486,-42.65632653061224,-0.844625,0.18360384444272002,-0.18387755102040848,5.315102040816319,7.536890680638952,-205.608557303817,-0.40427740427915243,-0.8150690000000012,-8.16,-0.44662991102040867,-155.62630663008193,116.59020408163272,0.1318999999999971,0.14639837650692922,2.7493877551020396,30.104489795918347,1.3934387168080244,563.607943464254,1.6096423100406856,0.4256879999999957,-28.302222222222216,-0.42756592489795975,652.9232092018764,-72.42775510204079,-1.5506499999999817,-0.229311498711728,-0.6338775510204085,-42.45632653061224,11.841141524751723,-345.3163771915104,1.3207788990393265,-1.5400939999999868,-9.846111111111128,-0.6517189681632736,-7.834068544335852,10.449795918367343,3.1561999999999975,0.07999726755054812,-2.3379591836734708,-14.064489795918362,13.410682240072045,79.17686135908751,0.041644912533353465,2.619375999999999,41.02888888888888,1.8594331706122442,-125.24936970550968,0.6915803879117713,0.5440355597511853,0.42043456317248346,0.29725432085242437,0.2653760166942584,0.1617051035771466,0.16293100734725274,0.08917788699247334,0.10326903875668335,0.04905483909099213,0.06446777964472765,0.025934388043097435,0.04103414457331038,0.014336458329971782,0.02549138088771053,0.007888595336381563,9.005184831279053,5.688133847367314,4.109010233742274,2.1875878754232296,0.4188032950473562,-0.39869642054780363,4.030614654956959,0.9772126784125509,7.0051669236531,1.8388146351137646,17.425821707666355,10.94909495387652,19.001184626209962,11.699589210265906,2.005924898595552,0.5452382807058261,3.990024639031016,2.237414780877271,8.002970594680113,1.149071735057576,4.011408677307811,2.433308653777364,20.91097168387695,13.30315469870096,0.25704107815995997,0.5944108912217727,0.7702909575755734,0.8692711114795905,0.8913871661561286,0.900233588026744,1.0062309696310308,1584.0626514299265,0.0,5.0,2.0,0.0,11.0,7.0,4.0,1.0,1.0,4.4689437493899,2.2897265117246723,1.1536412500309066,0.5142857142857125,0.371428571428571,0.31428571428571317,149.19935040861384,2668.4897312218172,87.65921082054705,38.121281874597386,77.80191692212387,,17.0,1275.0,34.53737796237138,23.164441647565106,18.359115864615585,49.296743441832206,35.59836478940461,17.032643867773697,12.263210640074686,24.26546827384644,20.9343443329662,0.0,19.071428571428573,51.5,24.0,1.5,27.5,0.0,0.034843205574912856,-3.5,0.17980327266041585,0.06093972472710052,-0.11886354793331533,0.038129553373455916,0.1726374695863745,0.0,0.627551020408162,0.8592334494773517,0.44774774774774617,0.5666112956810615,0.8211038961038958,42.01912118706271,0.6537890932663686,1.2557890932663685,46.464783471013874,9.611732607224873,10.148691861881854,88.48390465807658,19.760424469106727,0.5413625304136255,0.08239700374531835,0.05243445692883895,0.33558052434456925,0.3548387096774194,0.4085677652029658,-1.3362632769772984,-0.07151631257940705,-0.019089475385389975,-0.05139474142220378,0.5914322347970344,1.9343405023332847,0.03592219199740994,0.02763343574761835,0.043962284143938275,-8.697421757996361,0.6896261493858505,0.5991726751660881,1.5810166662429999,0.8566487828670241,0.4420844836286996,1.0645089858901484,0.6894888120324795,0.9800627851186067,0.5865340156350074,0.4921524781202397,0.6024710314748252,0.8857721863040302,0.7583708131278549,0.5621887416500185,0.9190245536029285,1.4149085112701745,0.7757753188312296,1.0269233093573162,0.7595999630366117,1.0218445653225632,0.5645044081773665,0.4834959617456264,0.5475232616875787,0.9650002994134096,1.0169102520424809,0.8886461613281849,1.040416614473665,1.2268588096336777,0.9930539612898108,1.0283913705278833,1.0172215585438635,1.1023873752133357,0.8959868889085181,0.8611763137935221,0.880415178970263,1.095099542008933,0.9973039461497164,0.8895097002874862,1.231645461046108,1.0341482195885283,0.9912705157554368,0.8712537221128404,0.9855683229989687,0.9818362655540195,0.8965280389445482,0.8969122623137941,0.9226405365539597,0.9922134873599724,1.0284035789096435,0.9740815815040516,1.0643963106634176,0.9192396299564394,0.9866066297249692,0.8670126745326864,1.0229377159971744,0.9674926885437537,0.9820663484669905,1.0074612762725945,0.9915402078579312,0.993120122043519,0.9431978685156651,1.0149301192287574,1.0575434727152555,0.9556176763421916,0.9923366490625377,0.9230026364744999,0.9398162663020461,0.9392946216836243,1.0085449625484755,1.1230569906087398,1.0564800146032671,0.9213799839191573,1.0819692092864763,1.2286936705297495,1.2465792041311972,0.9209380026039669,1.116378730195355,0.9979177333592666,1.0792189102969383,0.9371062707291946,1.2212848545526114,1.2794697471714092,1.2462672597224735,0.9555952448811414,0.9788101231523224,0.8648754374727056,0.9792810942959608,0.9764161955319167,1.0051627831121444,0.8966104053827759,0.9714894664993698,0.9849147237936399,0.8757357604358389,0.9367009767662435,0.8843166846387049,1.002318796910656,11.0,0.2793633302724212,6.000000000000002,4.687499999999999,3.0722222222222224,1.9661111111111107,1.1126984126984125,0.9472080498866213,0.48926839254220206,0.4259567901234569,9094.002362558873,10058.053015430849,3996.4777815723096,3696.1861441738683,18.900468633455674,0.4922661214891565,9.596408244936992,0.9695357003415782,0.0,0.3548387096774194,1.6603392675550663,3.839556505220294,4.97564176691406,5.614997302659254,5.757854445516395,5.814997302659253,0.23404255319148937,0.006208074006053804,0.08333333333333337,0.061677631578947366,0.042085235920852365,0.029344941956882253,0.017118437118437118,0.015786800831443685,0.008736935581110751,0.008191476733143402,0.5065254202516934,29.696695337256678,11.73611111111111,5.444433971156565,235.07616182701838,0.0,4.683255697545212,296.4647826032925,,248.6663803067825,244.19886118576196,240.84339724450868,248.5495358337097,325.62334568475126,246.76383236325097,249.00848420369996,298.09191382137925,0.037685274137102785,-0.04015193718850108,-0.5781995724372395,0.26841957463160837,0.24356824096337854,-0.045571400523769304,0.03820314851373808,0.03838228789038722,-0.0307262291669187,-0.01008448696165465,-0.04733865572859174,0.05568479799673486,0.04546740703916652,0.06966336829142279,0.08893793757702324,-0.07949630186331132,0.026461402789781752,-0.049752757950339364,0.04393320463363403,-0.022794359836508793,0.07031270416972016,0.057110399749209506,0.07010460200704563,-0.006115810507754668,-0.10309915505384377,-0.053078836533561186,0.03875964747777578,-0.15176838982895374,-0.08634637749756492,-0.07072949251146965,-0.10531122058519515,-0.1250691499401068,-0.05825686936741193,-0.06148058385296794,-0.046346250735680154,-0.1293416786457272,-0.01613453525026498,-0.011968774974631103,-0.09726379224805226,-0.0432805874601801,-0.019254801577883094,-0.027094249951932617,-0.011409733908533585,-0.02845004088445883,-0.008656262462825866,0.01155212972373074,-0.025084914437006046,-0.016556538225463914,-0.02690670242280813,-0.022683802875599693,0.051446184637493175,-0.0011991413030313935,0.005801432582292391,0.016503158409043525,-0.026953500265299697,-0.008263379677226058,-0.024247324243168368,-0.014931883520096853,-0.020634851026085917,-0.015179500646385562,0.07837117371015681,0.0037749742471362355,0.04371444079289604,0.01910710588048413,0.03501645520822057,0.003251471791596535,0.07873509515442695,0.03506104718996451,0.013495162459951058,-0.055190234116797306,-0.02105105591550991,0.06786624894396187,-0.05477114693216387,-0.04992700374042529,-0.07703126355862173,-0.0049558346736105815,-0.05555662376728367,0.03108409385470238,-0.05427014097001445,0.03236518908275423,-0.05492707352637468,-0.02160025879708112,-0.03609804499431845,-0.000916076260429377,0.008378363519266109,0.10774343452618834,0.02849186788583145,-0.01937996298589472,-0.019512907807201732,0.03732502366731316,0.013193093352003348,0.001081968359477401,0.09904707519557888,0.09543079853081715,0.10919643868123913,-0.015528317079482747,21.5012286375523,37.28906436719328,12.619186993671137,16.49071073433788,36.94889558761429,44.242812776920246,47.163061993307565,48.135433421879,48.193033421878994,85.56521737865336,66.18807442733787,10.464924748892622,5.381534655920896,3.530683546501991,19.37714295131551,16438.63478221816,14571.962804226047,3751.7086252915233,374.0,72.0,103.0,147.0,190.0,225.0,265.0,322.0,342.0,557.2238462280009,47.0,5.476463551931511,6.3784261836515865,7.315218389752975,8.236685322712457,9.178540059426386,10.108670778473344,11.053283962966008,11.988246183410249,12.934594209283446,0.6952380952380951,1.0019999999999996,1.131401468623648,0.6632037375263152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6854319674935843,0.9878431372549018,1.0156383310789723,0.6583403942892039,9.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,2.0,0.0,0.0,8.0,3.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,20.85027554286947,23.997060865839394,0.0,17.721539188054518,0.0,14.383611552215466,13.764808616296847,0.0,0.0,24.974377382775238,72.70547630910308,30.058804812367818,16.995756550928085,333.350952765724,-1090.2588859523603,-58.35024925374024,-15.575126942176574,-41.933034075090774,482.55030317433784,1578.2308452694567,29.308961566806804,22.54615493242081,35.8688828470331,0.47058823529411764,0.7227085326741333,0.09922985096178742,22.205366032572385,0.07445830178249364,12.690807924297625,0.2772914673258671,9.0,0.0851063829787234,0.270886376590036,0.6264283268704491,0.8117820229802476,0.9160936584484805,0.9394009755461247,0.9487239023851826,3.7729000000000017,,2.1309523809523814,2.5659694242358895,2.353056871956226,2.1958755755419617,-9.834201219653657,2.3006768081533746,2.07379936621724,-3.8869259059926358,147.03809999999982,23.164441647565106,0.0,15.200676855804016,0.0,55.52068628848413,23.723090019837812,88.61602776818573,0.0,0.0,4.553876891600541,0.0,5.948034989180646,3.4339872044851463,7.537430036586509,5.8998973535824915,9.2213792190914,8.100161446936607,10.957712470499597,48.66666666666666,14.215279764231802,4.30666033804379,0.0,0.0,0.0,0.0,2.8578580858906317,0.0,70.13999999999997,0.0,40.156959512332435,0.0,0.0,0.0,0.0,0.0,-0.705141293806586,79.19810280365536,15.950365812018994,20.28607914786823,0.0,46.233865504060695,32.640245267464266,11.63444168209179,53.97893328763998,54.72778011930596,0.0,0.0,0.0,46.42426162684207,47.980237724550896,53.661062392322094,592.9295652065852,,497.3204628870567,488.4036388139263,481.76863770151067,497.07993512908314,654.2984712338073,493.5246011969109,498.00660644176924,597.3214644932929,53.661062392322094,592.9295652065853,,495.45408427708276,486.17465304003497,479.7555770818767,495.15474924342004,661.0808925891561,491.5169190350694,496.19023145188544,600.0707535487509,5.099623332189466,447.5421124354519,,377.5889852399613,370.5358527418828,364.8409321491868,377.49028951295577,495.8868466703095,374.5787068247712,378.08973334762396,455.43464271182984,1.308806399812734,14.461696712355735,,12.129767387489188,11.912283873510397,11.750454578085627,12.123900856806905,15.958499298385544,12.037185395046608,12.146502596140714,14.568816207153484,2.609080393519708,296.4647826032925,,248.6663803067825,244.19886118576196,240.84339724450868,248.5495358337097,325.62334568475126,246.76383236325097,249.00848420369996,298.09191382137925,69.14901960784313,0.0,0.0,0.0,28.210606945382843,0.0,0.0,71.09468317552806,4.182605762413928,9.148120657014644,0.0,0.0,-0.6952680990584754,1.4588522249655909,-1.4698672307439404,0.0,0.0,46.08382760024427,589.6587994874244,116.22374872885464,268.7689553654206,348.29492368398417,393.0498111861478,403.0498111861477,407.04981118614774,2128.0,170.67012864160796,226.24245645263755,96.65247961196295,103.43,103.43,0.8888888888888888,9.06700031703446,6.554588851677638,4.094323355538977,6.321543987033497,,6.323661672354238,6.3226639581711845,6.321623439704064,6.323876807024456,6.323829855995271,6.323271905096579,6.323619322551586,6.331073940131694,0.09986154525704823,0.15418399968374383,,0.1542356505452253,0.1542113160529557,0.15418593755375765,0.15424089773230382,0.15423975258525052,0.15422614402674584,0.15423461762320942,0.15441643756418766,2.8205884406195816,3.2549504537780227,,3.255285392631147,3.255127605426504,3.254963022253609,3.2553194126375837,3.255311988203979,3.255223754407874,3.2552786955707007,3.2564568542644996,391.0600000000014,3884.725446314489,318.0888671236333,,316.61936954986066,316.7305846036244,317.08166652642143,316.5609989816588,317.8559017272639,316.66762685753207,316.6396265316507,316.1476199259222,94.74940112962169,7.758265051795934,,7.722423647557577,7.725136209844497,7.733699183571255,7.72099997516241,7.752582968957657,7.723600655061758,7.722917720284164,7.710917559168834,9.675794563825434,7.17331777381341,,7.168687299165296,7.169038495385261,7.170146337520147,7.168502926524361,7.1725851145693955,7.168839701813822,7.168751276090764,7.167196229880116,28.210606945382843,45.92247207534182,9.148120657014644,2.264084783658216,-1.5812352223181108,11.866343626848245,5.7997938025529585,0.036479998186053075,0.0,487.3888826309107,271.9814610303704,-889.5435943483432,-47.608041650542305,-12.707765633547758,-34.213215167243966,393.7133984141998,1287.680528818695,23.91321855265667,18.395436125981355,29.26546656406124,5908.0,76.0,3.631790476934486,1.8427121070299222,0.1853954059492991,0.125,1.0077765667221712,0.34295386183772153,0.1518718210697465,0.04221084160386249,0.0,0.0,0.0,0.0,0.2763747150773105,0.21875,0.902653397087326,0.44108920712885524,1.7709325517530083,0.6479116525379407,28.354795904382627,22.305457949798598,19.760424469106724,13.970953080063946,19.107073201986605,11.642767457554555,16.781893756767033,9.185322360224754,15.180548697232453,7.2110613463758435,12.248878132498254,4.9275337281885125,9.232682528994836,3.225703124243651,6.755215935243291,2.0904777641411143,8.82835537009753,4.032812660034031,15.751796836817723,6.2802585154507184,24.798994199417923,8.276419126615615,128.89781896429426,63.35920776498594,38.71830270624654,30.180148776732953,27.934844195621555,27.57721185082784,238.0,294.0,80.12699699999999,38.48300300000002,0.5142857142857142,569.1,11.819444444444445,8.597222222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,0.0,18.0,18.0,70.0,0.0,1.0,76.0,18.0,3.0,12.0,64.0,21.0,47.0,55.0,0.0,0.0,0.0,31.0,0.0,2.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,5.0,3.0,3.0,41.0,10.0,0.0,5.0,3.0,0.0,7.0,4.0,0.0,2.0,2.0,1.0,3.0,4.0943445622221,7.82305802295694,4.695924549256556,5.2351112906442445,5.785746412507631,6.285415988432703,6.525212925506396,6.862757913051401,7.266652751273966,7.520573252498187 +2789,CN1C(=O)CC(=O)N(c2ccccc2)c2cc(Cl)ccc21,0,32.470588235294116,6.302314705882353,3.676470588235294,8.694262890341323,158.65239114109227,131.83721670588238,1.7312110518540296,6.444,5.168456431498068,7.857959323529411,253.05117542283946,28.666666666666668,6.378472222222222,4.361111111111111,8.475308641975309,144.45472566185276,111.01767299999999,1.9683876675,6.55775,3.3061271147690903,7.786969499999998,289.2869398919624,26.283333333333335,6.381866666666666,4.116666666666666,7.161111111111111,151.7996999190316,100.99316604999997,1.7609855786565995,6.529378333333333,3.217489711934157,7.833214266666668,254.7206116313892,24.1,6.4682362499999995,3.8125,6.543055555555556,156.12388624922784,90.5104879125,1.6276768396030625,6.6045074999999995,3.4237911522633753,7.9732107999999995,235.2858540132916,23.129411764705882,6.4314599999999995,3.3294117647058825,6.094117647058823,154.60415943378217,86.51542527058821,1.561392293555823,6.556308235294116,4.103292181069959,7.936145458823529,223.22399195231495,20.08695652173913,6.147696739130434,2.858695652173913,4.240338164251208,155.55157875560207,74.42087966304348,1.4671494323063912,6.275183695652173,3.3745079620683485,7.7130442391304355,202.31548622860635,20.022988505747126,6.099747126436783,2.413793103448276,2.962962962962963,159.12389488037684,74.32302441379309,1.3610425955814252,6.2387,3.2596376708764963,7.759615632183909,179.82488131645042,17.112903225806452,6.004354838709677,2.0161290322580645,1.89247311827957,161.73060141556806,58.854605806451616,1.2943080456853227,6.199546774193547,2.818100358422939,7.792585387096775,158.34545024310944,10.210526315789474,5.627657894736844,1.631578947368421,0.8508771929824562,166.51396113169517,32.401175289473684,1.0227537493430787,5.743236842105264,2.3083170890188436,7.397763,114.5513004534005,11.418685121107266,0.11539005190311415,0.01566226330117864,0.6652249134948097,3.9856465462001798,1.5066337920549615,53.596948051903105,0.2505294324842362,0.11729550173010377,1.859729777087951,0.08321121885813146,49.72213733708727,0.2675893886966556,0.0008098663975393777,-0.007926339366914078,0.23836985774702038,1.2024031592787203,-0.37358222075577063,1.2588102422145329,-0.017291674414096517,0.001956459054209882,-0.0722445828375132,-0.0020072556228373714,-1.278716907712198,0.8411188004613612,0.017193820645905387,0.0024698133522977265,0.013206459054209883,0.13198840901647518,-0.0872986063801554,3.947286806920416,0.008166059595929002,0.015506361014994202,0.007418306806481347,0.009151106632064589,1.7692709915249085,-1.418685121107266,-0.023498875432525983,-0.0038324786933084526,-0.030666089965397946,-0.3876164082190609,0.10428940806245915,-6.518364026167821,0.003116031424435873,-0.024439178200692073,-0.21108566123401942,-0.01777999532871972,-0.15544867908429566,-0.7294117647058822,0.01189468858131485,0.0021764943347137465,-0.15138408304498271,-0.20862061600239218,-0.04684971679009383,-3.599781738408303,-0.02963014717331887,0.00855377162629756,0.26009669568895366,0.010106199826989615,-6.738956874104432,0.29359109372649306,-0.008867577478561749,0.0002195067786361889,-0.1281405145178276,-0.5169922567871518,-0.039094454191664775,1.333023441703024,-0.009727050324643449,-0.00547676771475853,-0.06621626275794344,-0.004102877745599517,-2.244985598576995,1.1519707274390483,-0.011716049198584084,8.322788290717399e-05,-0.09997812512428902,-0.8501946642979933,-0.10414610069259758,5.432234012329476,0.016979312429295304,-0.006151147436662277,-0.25265667964974237,-0.0040979507715865225,0.5059164014595792,-4.461379618260967,-0.01721040294675742,-0.0004456288287101724,0.045401272463444615,-0.3209242654121176,-0.10393766053364821,-21.048765436153584,-0.07484777139800701,-0.023849296796517434,-0.16991559492881242,-0.011659688497600176,-13.042887542915953,-0.25150245856856757,0.002274344381715607,-0.00033257168586245736,0.1219267892915681,0.572450766799094,-0.0090044224148274,-1.0828124218721562,0.0017148946256129755,0.0005010926971408426,-0.0012614047800599854,-0.0030864580222181724,1.973902610720299,,,0.48480725623582765,1.3928571428571428,0.7380952380952381,0.023809523809523808,0.6547619047619048,0.08333333333333333,0.6861679841921996,0.01613457913827085,0.028420293423985138,1.0374457807230095,0.2851387913058393,0.19464156109746586,1.723613764915209,0.47978035240330513,2.0396857342109826,1.576513187288235,0.20971507235504583,0.1689911259401787,0.08446634862752303,0.46317254692274756,8.82548692164707,1104.0,214.27870000000001,125.0,295.60493827160496,5394.181298797137,4482.465368000001,58.861175763037004,219.096,175.72751867093433,267.170617,8603.739964376542,1032.0,229.625,157.0,305.1111111111111,5200.3701238266995,3996.6362279999994,70.86195603,236.079,119.02057613168725,280.3309019999999,10414.329836110646,1577.0,382.912,247.0,429.6666666666667,9107.981995141896,6059.5899629999985,105.65913471939598,391.7627,193.04938271604942,469.9928560000001,15283.236697883352,1928.0,517.4589,305.0,523.4444444444445,12489.910899938226,7240.839032999999,130.214147168245,528.3606,273.90329218107,637.856864,18822.868321063328,1966.0,546.6741,283.0,518.0,13141.353551871485,7353.811147999998,132.71834495224496,557.2861999999999,348.77983539094646,674.572364,18974.03931594677,1848.0,565.5880999999999,263.0,390.1111111111111,14310.745245515389,6846.720929,134.977747772188,577.3168999999999,310.45473251028807,709.6000700000001,18613.024733031783,1742.0,530.6780000000001,210.0,257.77777777777777,13843.778854592785,6466.103123999999,118.410705815584,542.7669,283.5884773662552,675.0865600000001,15644.764674531185,1061.0,372.27,125.0,117.33333333333334,10027.29728776522,3648.98556,80.24709883249001,384.3718999999999,174.72222222222223,483.14029400000004,9817.417915072785,388.0,213.85100000000006,62.0,32.333333333333336,6327.530523004417,1231.244661,38.864642475036995,218.24300000000002,87.71604938271605,281.114994,4352.949417229219,388.2352941176471,3.923261764705881,0.5325169522400738,22.61764705882353,135.5119825708061,51.225548929868694,1822.2962337647057,8.518000704464031,3.988047058823528,63.23081242099033,2.8291814411764697,1690.552669460967,9.633217993079603,0.029155190311417598,-0.2853482172089068,8.581314878892734,43.28651373403393,-13.448959947207744,45.317168719723185,-0.6225002789074746,0.07043252595155575,-2.6008049821504753,-0.07226120242214537,-46.03380867763913,50.467128027681674,1.031629238754323,0.1481888011378636,0.792387543252593,7.919304540988511,-5.237916382809324,236.83720841522495,0.4899635757557401,0.9303816608996521,0.4450984083888808,0.5490663979238753,106.15625949149451,-113.49480968858128,-1.8799100346020787,-0.3065982954646762,-2.4532871972318357,-31.009312657524873,8.343152644996731,-521.4691220934257,0.24928251395486986,-1.955134256055366,-16.886852898721553,-1.4223996262975778,-12.435894326743654,-61.999999999999986,1.0110485294117622,0.18500201845066844,-12.86764705882353,-17.732752360203335,-3.982225927157976,-305.98144776470576,-2.518562509732104,0.7270705882352926,22.10821913356106,0.8590269852941174,-572.8113342988768,27.01038062283736,-0.8158171280276809,0.02019462363452938,-11.788927335640139,-47.56328762441797,-3.596689785633159,122.63815663667822,-0.8948886298671972,-0.5038626297577847,-6.091896173730797,-0.37746475259515555,-206.53867506908352,100.2214532871972,-1.0192962802768153,0.007240825812924137,-8.698096885813145,-73.96693579392542,-9.06071076025599,472.6043590726644,1.4772001813486915,-0.5351498269896181,-21.981131129527586,-0.3565217171280275,44.014726926983386,-276.60553633217995,-1.0670449826989599,-0.02762898738003069,2.814878892733566,-19.897304455551293,-6.444134953086189,-1305.0234570415223,-4.640561826676435,-1.4786564013840808,-10.53476688558637,-0.7229006868512109,-808.6590276607891,-9.557093425605567,0.08642508650519305,-0.01263772406277338,4.633217993079588,21.753129138365573,-0.34216805176344117,-41.14687203114193,0.06516599577329307,0.01904152249135202,-0.04793338164227945,-0.11728540484429055,75.00829920737137,0.7134649135331399,0.5795583869361371,0.43806032175953946,0.29983768868041955,0.280932139905209,0.15950612702355704,0.17509724848673924,0.08255913493355965,0.10949404063924169,0.04231972686485966,0.06881296009317933,0.022816120471396552,0.04407286619370818,0.012589670222694103,0.02846420069805652,0.006479328228690058,17.001102724138693,5.697307603369929,3.5457969404843106,2.1929697485041,0.41939631439092606,-0.4011657499708768,3.239572689699905,0.9773311092449359,6.02325696430194,0.7740022672050347,14.54506505342325,10.959232565855947,35.45051723995015,11.709989943249862,2.2078064716421286,0.7517436453925049,3.4912674948240103,2.2432002458945197,7.009357171542207,1.3043482402155915,3.704120626494276,2.4390240745779184,22.45586246003352,14.701780176648509,0.3063668433290772,0.5635644230198877,0.719014525585454,0.8590851292252915,0.895475943454031,0.895475943454031,1.8588095611648652,715.4718451602737,0.0,2.0,0.0,0.0,12.0,1.0,0.0,0.0,0.0,3.414874009877476,2.010721411076479,1.1620522060096157,0.39734632365667455,0.19867316182833772,0.19867316182833772,20.365715822294646,764.9156287007208,45.74108689613403,22.497518491197674,47.162245962677375,,8.0,290.0,0.0,9.589074368143644,18.23518108162902,22.08479213779201,0.0,4.899909730850478,30.146682918912497,30.33183534230805,0.0,11.600939890232516,10.18095238095238,29.25,15.5,0.5,13.75,0.0,0.015192743764172366,1.75,0.19348146038076225,0.0876141761052246,-0.10586728427553765,0.0,0.13942327331362514,0.0,0.6358543417366948,0.8437641723356005,0.4423728813559325,0.5482401656314702,0.8437641723356005,14.409527668036192,0.33882616190368786,0.5968261619036879,21.7863613951832,5.987914617422625,4.087472783046783,36.19588906321939,10.075387400469408,0.5745767266863748,0.18475210477081386,0.0,0.3732460243217961,0.125,0.4790381227536145,-0.7542999881166932,-0.06163695261091196,-0.022185293768138034,-0.058023076008976396,0.5209618772463857,0.8203137060519757,0.03252316010001795,0.02412687370741105,0.03906255743104647,-3.9760220876242607,0.5430555555555555,0.6107938522542891,1.531326621016675,0.688990030342436,0.461278358342265,1.3368194991031845,0.5480386274446696,0.9039606590456509,0.573415584019698,0.5057309533681383,0.5982577152408322,0.8534444759602388,0.6148333333333333,0.6489020240511159,1.048729913661658,1.1429128738621586,0.8703366827438369,1.1613651074861673,0.6185184524836888,0.8231063322753134,0.6299825360488992,0.567180005757117,0.612579251643655,0.8263399138066305,0.9668749999999999,1.2830491060484635,1.5691769196285104,1.2584200260078022,1.1347021704180063,1.018653072860825,0.9634833878505958,0.8701177641332658,1.228331480984353,1.0995840827714685,1.2471190866898945,0.8627884574668263,0.83,1.0084834872543778,1.0377978689186937,1.3217165149544863,1.0726591639871381,1.0579224840543535,0.8343954879678724,1.0082843757314621,0.9620343438038372,1.0552582203085716,0.9428596521199143,1.016127151151566,0.7747010869565217,1.04226454304441,0.9460569416258915,1.1101373890428,1.080746539913323,0.9832804028909017,0.7791809165062398,0.9814430145502505,0.9797681309698854,1.0931822333600392,0.9724257657380206,1.0126090625437905,0.9999712643678159,1.200166914141716,0.8261613394803803,1.0146181785570152,1.2247058986583879,0.9527059742244872,0.9976470421110788,0.9654809673141488,1.1593700740224133,1.4258676402063948,1.1925987224809222,1.0149636078650193,2.0852419354838707,1.111365615476163,0.7109940737838668,0.6589202567221779,1.0121488953428066,0.9079533538887697,2.0739576712722134,1.4651433575305466,1.3242699317619329,1.0621392664368203,1.3409237988740996,1.3446540633169326,1.3096710526315787,0.8278114608228423,0.5258072629967804,0.5183423448087058,0.82716407175495,0.8274420112324489,1.30892093679706,1.1173928094128314,0.9524863850118062,0.7797972886572146,0.9074757182977623,1.1498472389400225,4.0,0.0,2.666666666666668,2.125,1.7544444444444447,0.9099999999999999,0.5699319727891156,0.15019132653061223,0.061224489795918366,0.0,4323.921473630988,4698.26790622142,2036.76887516851,1903.8173894036913,10.261578617491987,0.489235218536189,5.24125296003701,0.9578483800979387,1.0,0.125,1.6725888313728632,3.0767414301738603,3.9254106352407234,4.6901165175936645,4.888789679422001,4.888789679422001,0.17391304347826086,0.0,0.08080808080808084,0.05448717948717949,0.046169590643274847,0.026764705882352944,0.021920460491889063,0.01155317896389325,0.015306122448979591,0.0,0.4309223622039109,15.879017013232515,6.629935720844812,3.2,127.08841239699416,1.0,3.983179226641667,79.31743895331397,,58.866129818304984,58.66029526272588,57.65339844166911,58.84938838668397,82.33110029214126,59.27234947027185,59.8819630394024,75.26299749185003,0.023434343434343474,0.00701851142435894,-0.506078796818439,0.35832972113856376,0.30168333928784097,-0.24795821169404814,0.023486603024401784,-0.06902053081202163,0.016679744963380455,-0.038846817278280626,-0.024122415827841474,-0.025717255455919737,0.07366161616161618,0.14900609161994285,0.15769198262117484,0.019852622453402635,0.03311593426223652,-0.057942817186574,0.07364760402211477,0.03259521053057439,0.13219911067582324,0.003988916507051507,0.10997443322716496,0.035583164487284144,-0.1242424242424242,-0.2036473252673162,-0.24469507501001117,-0.0460988296488947,-0.09725308145766341,0.06922014401403702,-0.12161819400342457,0.012437785826349725,-0.20835563035423535,-0.11350340454544257,-0.21367305482008628,-0.0031263474864413757,-0.06387878787878785,0.10308244415473597,0.13896422840433015,-0.22756827048114436,-0.05234297963558411,-0.031095623261040442,-0.06716393132911759,-0.11827012450995457,0.0729249758100676,0.139857251786453,0.12145237103448618,-0.13553232493644052,0.025711462450592876,-0.07684871730543377,0.014015010117961064,-0.19262735342341833,-0.12971352346334872,-0.02594821276266623,0.024871256482964822,-0.038825978361865694,-0.046692052414427095,-0.03560531404816664,-0.04930678581447771,-0.04515062543183319,0.1008847091605712,-0.10153430911376417,0.00531391161716141,-0.15029221410101185,-0.21331411464685662,-0.0691250264276552,0.10135342047963102,0.06777372327446467,-0.05244146063517448,-0.1358566619529874,-0.04924757536088017,0.010174872371832273,-0.39070869990224827,-0.14914979812304724,-0.02845239031811177,0.06824950711019763,-0.08052000138298243,-0.068986678170734,-0.3927232090858985,-0.2987583959929202,-0.20332661052419998,-0.0913657441108858,-0.1401215924679462,-0.262315504550674,-0.022025518341307886,0.01971005597280806,-0.021233948087019464,0.1832865649168436,0.14362808145766334,-0.005976516962722499,-0.020202874626808306,0.006845082466391968,0.004272053827723538,-0.0006782731532293633,-0.037091849687724665,0.03969866776519247,10.310410669398491,17.206506317614576,5.773470188248168,19.200660297803307,32.13939825897398,40.76168034709315,44.600328205513875,44.80059075263684,44.80059075263684,42.833400418430635,33.106776933052934,4.404016519455962,3.5488136447437526,1.7737933211779837,9.726623485377699,3112.1246211183034,1886.6506715887622,1465.450160968468,87.0,33.0,45.0,61.0,80.0,91.0,95.0,93.0,89.0,300.06655533600036,23.0,4.727387818712341,5.594711379601839,6.493753839851686,7.384610383176974,8.292298107063221,9.191055610564316,10.101805482414681,11.003881586286656,11.915660182284995,0.7647058823529411,0.9949411764705883,1.1132722119513065,0.7364376772272475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7286422860162031,0.9863898500576702,1.015412792939463,0.6928900575903066,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,4.899909730850478,6.4208216229260096,0.0,11.814359458703011,0.0,14.488984098994122,0.0,0.0,0.0,29.800041095617345,30.33183534230805,17.75769157110208,11.374772549367124,232.70707488108744,-366.4237468376941,-29.941990554365127,-10.777169024638063,-28.18644206443801,253.07279070338208,398.4918818630268,15.7990963417689,11.720349466559611,18.97580389823937,0.5,0.8346090651546076,0.19880321419804212,8.178115530206965,0.15277908705803914,16.39020408414873,0.1653909348453925,4.0,0.043478260869565216,0.3287667907490393,0.604769317473323,0.7715851216469977,0.9218969580603327,0.9609484790301662,0.9609484790301662,3.3712000000000018,,1.4327731092436975,1.0593718501661549,0.9284284552673375,1.4447162824396187,-2.9670072109134997,1.0328482562012924,0.987299759323917,-1.3533495828652995,83.06700000000002,9.589074368143644,0.0,0.0,0.0,6.4208216229260096,16.847491444378146,53.553569861434205,0.0,0.0,3.8501476017100584,0.0,5.187385805840755,0.0,6.725033642166843,2.70805020110221,8.353025845202325,5.459585514144159,10.030428525977277,26.0,14.412079694017523,0.0,0.0,0.0,0.0,0.0,2.5189813240110874,0.0,33.828,0.0,24.574543965734446,0.0,0.0,0.0,0.0,0.0,-0.49900903880070535,37.85125520634442,9.799819461700956,17.062158824050687,0.0,18.8620314413802,9.589074368143644,0.0,6.4208216229260096,48.53093654769288,5.022633313741326,0.0,0.0,25.038881025726415,24.773837724550905,26.833283177325868,158.634877906628,,117.59580505477723,117.21969796829308,115.21837512569371,117.56118474646892,166.07506116090795,118.4463324399531,119.66989753029776,151.1704471660169,26.833283177325868,158.634877906628,,116.29948652736627,116.26121867528563,114.41915812602275,116.25406049092842,167.62920779519598,117.51185068434239,118.77662631948093,151.87934456656546,4.899803561165212,108.02078192558349,,81.61505968273018,80.85254097737894,79.33495585742898,81.60282040402979,114.33221979949991,81.78892492186293,82.6771000907731,104.41782267433751,1.2777753893964698,7.5540418050775235,,5.5998002407036775,5.581890379442528,5.4865892916997,5.598151654593758,7.908336245757521,5.640301544759671,5.698566549061798,7.1985927221912815,2.4820998667543597,79.31743895331397,,58.866129818304984,58.66029526272588,57.65339844166911,58.84938838668397,82.33110029214126,59.27234947027185,59.8819630394024,75.26299749185003,33.537254901960786,0.0,1.663536470143613,6.073112734805855,0.0,0.0,0.0,34.524034959941744,-0.16895502645502658,0.0,0.0,0.0,0.0,3.0368209876543206,0.0,0.0,0.0,23.558261958070425,405.436279486385,56.86802026667735,104.60920862591125,133.4639615981846,159.4639615981846,166.21884910034805,166.21884910034805,718.0,118.7051643899567,80.34358609808451,63.31365713614363,40.620000000000005,40.620000000000005,1.0,8.262873358570857,5.523561956057013,4.0886919088310005,4.517191225861297,,4.528593758563013,4.522456875859088,4.52122240566656,4.52868232802194,4.531949550754184,4.524099391097722,4.524866369847371,4.531091307271205,0.19469961470623812,0.2151043440886332,,0.21564732183633395,0.21535508932662326,0.21529630503174094,0.2156515394296162,0.21580712146448494,0.21543330433798674,0.2154698271355891,0.21576625272720024,2.1501624369369368,2.249827735210493,,2.25234880745811,2.250992747506128,2.250719745741743,2.2523683650951045,2.2530895560490176,2.2513558724805853,2.2515253899197596,2.25290016189335,213.2599999999998,132.09794980815883,114.48517269922732,,112.98832271842768,113.67164530950264,113.86968248773127,112.97353708768247,112.9618438832088,113.52820561512542,113.45542196517556,112.98706445082772,6.290378562293277,5.451674890439397,,5.3803963199251275,5.412935490928697,5.422365832749108,5.379692242270594,5.379135423009943,5.406105029291687,5.402639141198836,5.380336402420367,5.625481036138423,5.482382663261713,,5.469221819326923,5.475251332762432,5.4769920031729376,5.469090950951357,5.468987441669775,5.473988658400181,5.473347346485129,5.469210683002602,0.0,27.61136495338877,0.5187315759637192,2.000249748047368,-0.49900903880070535,14.412079694017523,-0.16895502645502658,0.0,1.663536470143613,260.11621723262596,113.04441155628972,-178.00127848577273,-14.545216146830946,-5.235331720169786,-13.692406037367132,122.93766625097552,193.57933280792344,7.67488289726058,5.6935097884683366,9.218063467043972,807.0,39.0,1.502473049869406,0.689421823814252,0.0,0.0,0.44968963602539413,0.13212515013435036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.056131276171213614,0.23172350701864095,0.07197702795365883,14.982763184195939,12.17072612565888,10.075387400469408,6.89626683964965,9.270760616871897,5.263702191777383,7.879376181903266,3.715161072010184,6.679136478993743,2.581503338756439,5.5050368074543465,1.8252896377117243,4.010630823627444,1.1456599902651634,2.7040990663153694,0.6155361817255555,3.6764792080983946,1.3855911680284505,6.170582116261059,1.8827972728723952,10.293143490793861,2.612243358986558,65.7789550218312,49.16589230173788,32.14667086381363,24.66218481417875,24.0023306899578,24.0023306899578,112.0,134.0,41.37230899999999,18.707690999999997,0.5,109.05,7.138888888888888,4.583333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,34.0,0.0,0.0,36.0,12.0,2.0,8.0,28.0,14.0,23.0,22.0,0.0,0.0,0.0,16.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,2.0,0.0,1.0,21.0,5.0,0.0,2.0,2.0,0.0,3.0,1.0,0.0,0.0,1.0,0.0,2.0,3.4657359027997265,6.876909398811035,4.04305126783455,4.574710978503383,5.153291594497779,5.678037224904343,5.87861074902419,6.192298581502331,6.470799503782602,6.622653208793743 +10219,CC[C@H]1CN2CCc3cc(OC)c(OC)cc3[C@@H]2C[C@@H]1C[C@H]1NCCc2cc(OC)c(OC)cc21,0,19.173333333333332,5.902664000000001,3.066666666666667,5.626666666666667,163.17370235213284,75.20754894666669,1.3820724292528,5.973201333333334,2.4344444444444444,7.482982133333334,198.36708509691422,22.417721518987342,6.229481012658228,3.810126582278481,5.443037974683544,145.71027858252413,83.74259406329118,1.7287698783544307,6.373151898734179,2.600210970464135,7.6714506835443,248.10153900126903,17.722972972972972,6.129912162162165,3.527027027027027,4.108108108108108,156.2863155994192,64.54662532432434,1.4526579880643715,6.226841216216216,2.3019894894894897,7.662167135135136,203.0406415339924,16.360406091370557,5.965791878172588,3.284263959390863,3.49746192893401,154.8121927454262,58.79868790862944,1.4293748074592383,6.071440101522846,2.213056965595036,7.503323329949238,192.8634674838469,13.62704918032787,5.816245901639343,2.819672131147541,2.290983606557377,155.90988065248558,47.08145500819674,1.3055131944787253,5.91858606557377,2.0455373406193074,7.388109213114752,168.62019994077795,11.542553191489361,5.787375886524822,2.5425531914893615,1.8191489361702127,162.2818177957755,38.94434117021276,1.145406278372593,5.860078723404255,1.9456264775413719,7.410389872340428,144.7525924411807,11.787878787878787,5.786605681818184,2.5265151515151514,1.8295454545454546,160.56020121446184,39.70882720833336,1.1794656156635794,5.8662833333333335,1.961279461279461,7.398349772727272,148.68224711984593,10.736263736263735,5.700842490842492,2.3663003663003663,1.6336996336996337,162.5562786563528,35.7008788241758,1.1215031527134391,5.775802197802198,1.868538868538869,7.332788937728938,138.92432602317555,10.335877862595419,5.667740458015266,2.3053435114503817,1.7099236641221374,164.34048372688252,34.44477347709922,1.073207758879427,5.736282442748093,1.8563401187446993,7.313211923664124,132.3752196620709,7.155555555555555,0.10163118222222219,0.018877984112285643,0.591288888888889,3.475555555555555,1.3662048802550386,34.13671139982221,0.2297497600121956,0.09807171555555551,0.392720987654321,0.06149855573333331,51.19608243579072,0.64646976090014,0.005530066722925647,-0.005428039633587705,0.3307364275668075,1.3004781997187054,-0.21149195157530137,3.008619424144028,-0.018177561137184654,0.007448031279887659,0.03271267385528993,0.0006446611443037989,-0.08151061133127854,0.3209309309309308,-0.014892137177177016,-0.004373411688131837,0.059882282282282366,0.13489489489489495,0.23981691092651042,1.7101991289165164,0.0443277061414265,-0.012449256096095956,-0.012145412078745399,-0.009853751048648638,8.077273970675794,0.0993344613649181,0.007558042820079036,0.00318344223386379,-0.07047670614777211,0.012701635645798093,0.02458096573738109,0.4347146158799791,0.0018136414618355429,0.0065040881669487524,0.06724141129284952,0.006121921559390865,0.16760196316527315,-0.7671948998178508,-0.001722985500910737,-0.0007367616945715417,-0.08265500910746808,-0.3846812386156647,-0.29101390974009733,-3.7606923465435314,-0.047102381219199144,-0.0022698630965391387,-0.0022504351345881387,-0.000737969285245902,-9.0331062082499,-0.3252482269503546,-0.004665073475177306,-0.0007789136927749998,-0.047979196217494094,-0.41933806146572083,0.026390405717691152,-1.5221403686638293,0.0010349066726822221,-0.004987550070921983,-0.040900656685053834,-0.0023861841021276596,-0.8892962103191513,-0.6317171717171718,-0.002059682222222226,0.0009990201842784905,-0.05184444444444446,-0.3304545454545454,-0.06361731552143747,-3.0338201974484833,-0.01640896226859581,-0.003414619595959589,-0.03378860830527497,-0.0004862896727272726,-4.640207322095364,-0.3443711843711844,-0.0057969941880342294,-0.0005725991252908717,-0.00511062271062272,-0.11018315018315017,-0.05960357036125613,-1.6294714416781437,-0.007689014596475163,-0.005558406642246677,-0.029214000814000808,-0.0033047840117216122,-1.9962599569283972,0.19080576759966084,-0.0017288310771841147,-0.0006410333560571725,0.0066754877014418975,0.06001696352841394,0.01857537543243906,0.9220905506103471,0.003421737372561197,-0.0007595527056828414,-0.015928508151917823,-0.0016752620946564893,1.4406018413616284,,,0.47523809523809524,1.05,0.4,0.05714285714285714,0.65,-0.25,1.2393726645983654,0.009208637402995379,0.021494351688709664,0.7971832578728482,0.19473738074545896,0.29360294077649124,2.0365559224712135,0.4883403215219502,2.07269122324636,1.7305380441613187,0.12436399713771833,0.21778918194732344,0.0,0.34215317908504184,6.403984103466682,1438.0,442.69980000000004,230.0,422.0,12238.027676409964,5640.566171000001,103.65543219396,447.99010000000004,182.58333333333334,561.2236600000001,14877.531382268568,1771.0,492.129,301.0,430.0,11511.112008019407,6615.664931000003,136.57282039000003,503.4790000000001,205.41666666666666,606.0446039999997,19600.021581100253,2623.0,907.2270000000003,522.0,608.0,23130.37470871404,9552.900548000001,214.99338223352697,921.5725,340.69444444444446,1134.0007360000002,30050.01494703088,3223.0,1175.261,647.0,689.0,30498.00197084896,11583.341518,281.58683706946994,1196.0737000000006,435.97222222222206,1478.1546959999998,37994.10309431784,3325.0,1419.1639999999998,688.0,559.0,38042.010879206486,11487.875022000006,318.54521945280896,1444.1349999999998,499.111111111111,1802.6986479999994,41143.32878554982,3255.0,1632.04,717.0,513.0,45763.47261840869,10982.304209999998,323.0045705010712,1652.5422,548.6666666666669,2089.7299440000006,40820.231068412955,3112.0,1527.6639000000005,667.0,483.0,42387.893120617926,10483.130383000007,311.378922535185,1548.6988000000001,517.7777777777777,1953.1643399999998,39252.11323963932,2931.0,1556.3300000000002,646.0,446.0,44377.86407318431,9746.339918999995,306.17036069076886,1576.794,510.11111111111126,2001.85138,37926.341004326925,2708.0,1484.9479999999996,604.0,448.0,43057.20673644322,9024.530650999995,281.1804328264099,1502.9060000000004,486.3611111111112,1916.0615240000004,34682.307551462574,536.6666666666666,7.622338666666664,1.4158488084214231,44.34666666666667,260.66666666666663,102.4653660191279,2560.2533549866657,17.23123200091467,7.355378666666663,29.454074074074075,4.612391679999998,3839.706182684304,51.07111111111106,0.43687527111112606,-0.42881513105342867,26.128177777777793,102.73777777777772,-16.707864174448808,237.6809345073782,-1.4360273298375876,0.5883944711111251,2.584301234567904,0.050928230400000114,-6.439338295171005,47.497777777777756,-2.2040363022221983,-0.6472649298435119,8.86257777777779,19.964444444444453,35.49290281712354,253.10947107964444,6.5605005089311215,-1.8424899022222014,-1.797520987654319,-1.4583551551999985,1195.4365476600176,19.568888888888864,1.48893443555557,0.6271381200711666,-13.883911111111106,2.5022222222222243,4.842450250264075,85.63877932835588,0.35728736798160193,1.2813053688889042,13.246558024691357,1.2060185472000005,33.01758674355881,-187.19555555555561,-0.42040846222221984,-0.17976985347545618,-20.16782222222221,-93.86222222222219,-71.00739397658374,-917.6089325566217,-11.492981017484592,-0.5538465955555498,-0.5491061728395058,-0.1800645056000001,-2204.0779148129755,-91.72,-1.3155507200000003,-0.21965366136254993,-13.530133333333335,-118.25333333333327,7.442094412388904,-429.24358396319985,0.29184368169638664,-1.4064891199999991,-11.53398518518518,-0.6729039168,-250.78153131000067,-166.77333333333334,-0.5437561066666676,0.2637413286495215,-13.686933333333336,-87.23999999999998,-16.794971297659494,-800.9285321263995,-4.331966038909294,-0.9014595733333315,-8.920192592592592,-0.12838047359999996,-1225.014733033176,-94.01333333333335,-1.5825794133333446,-0.15631956120440796,-1.3952000000000027,-30.079999999999995,-16.271774708622925,-444.8457035781332,-2.0991009848377193,-1.5174450133333428,-7.97542222222222,-0.9022060352000001,-544.9789682414524,49.99111111111114,-0.45295374222223805,-0.1679507392869792,1.748977777777777,15.724444444444451,4.866748363299033,241.58772425991094,0.8964951916110336,-0.19900280888890445,-4.17326913580247,-0.4389186688000002,377.4376824367466,0.7007533937038983,0.62445323315328,0.438254134699186,0.3350297608766626,0.2641387783836005,0.18266547147682594,0.17035363257155273,0.10671504930488791,0.10674162439544961,0.06069415586456916,0.06683713373903251,0.035122168175179366,0.04312490363395657,0.021027364866873247,0.027629555375575616,0.012504828550025694,8.01521111552046,5.6860264866643595,3.528412146369827,2.184966660215414,0.4211620641006277,-0.5283733155897243,3.2252815668207595,0.9871954887127186,6.0113577428385465,0.9877495165089161,14.543681565952477,10.946715051836202,16.008005167280658,11.697697202074657,2.0024792572786447,0.7741148883227426,3.471836237610947,2.2347169575635557,3.517902799357857,1.1641296976452113,3.6852070993148955,2.430711446326839,20.90828409349914,14.705490591487951,0.21510692703521792,0.4662465298662716,0.6830964492352509,0.7434652638861297,0.7850708812253895,0.8058736898950196,1.2888557651912795,1053.4626672680454,0.0,0.0,4.0,0.0,8.0,7.0,4.0,2.0,0.0,4.850114302055921,3.2404624079653432,1.8505865002596158,1.4636591668108965,1.1969925001442308,1.063659166810897,507.644253354236,2292.0516964096523,67.65754944903051,30.560689285462033,53.31859816803206,,16.0,931.0,0.0,0.0,0.0,23.91949375061871,55.3500250137388,41.64020561855258,28.439190165110134,0.0,41.40590380839387,18.947451815200196,16.633333333333333,36.75,14.0,2.0,22.75,0.0,0.024761904761904777,-8.75,0.09389232531500563,0.032858237547892966,-0.061034087767112666,0.014179894179894181,0.12763102232667423,0.0,0.538222222222221,0.8104761904761901,0.4443298969072154,0.5053639846743281,0.796296296296296,43.37804326094279,0.32230230910483826,0.7523023091048382,27.901414025549684,6.815808326091064,10.276102927177194,71.27945728649247,17.091911253268258,0.5863689776733257,0.15030060120240482,0.0,0.38476953907815636,0.5862068965517241,0.16626956010267901,-0.501075881170136,-0.038938271000495586,-0.006681011748935147,-0.021785907876962433,0.8337304398973209,2.5125598129442808,0.05001923650917268,0.033500797505923746,0.04831845794123618,-7.09462934762445,0.9146002044185865,0.8535567650161108,1.303142333217808,0.6864786073665862,0.6019133024701351,1.4267733189848915,0.9215610834771298,1.279935203310803,0.8290751981202946,0.8432040536380586,0.9023647676936759,1.1319523784084164,0.9968944099378884,1.3453712106555573,1.4962189832679875,1.234591100420926,1.1547314578005117,0.9622354070031783,0.9897368814357814,0.8608960692339244,1.2955145386577875,1.1126078263712493,1.3873542066574884,0.8650138758287698,0.9655673613519565,0.7827359073770925,0.7125047020928772,1.4230291412681502,1.0224272008516495,1.115306252428074,0.9704361734985167,1.075039781986841,0.7991921531307858,0.6358901108356352,0.7272886683911644,1.0515858096936301,1.0576137867834234,0.7498194607708051,0.7546301743614633,1.2173092278422364,0.997678294411136,1.293247123401187,1.0658203876839991,1.273230631571739,0.7804746343550816,0.749940322641157,0.6999999582877049,1.2258506985938853,1.0285383903792784,1.0128001406600928,0.9753372895970147,1.1065301109248857,1.1073624639495023,0.9716945175411197,1.0279499656008262,0.9754956908238517,1.019671577394776,1.0428678216303942,0.9934356037766457,1.000268428813281,1.0605378317334841,0.9185326645314645,0.8175159505619546,1.1314095555677033,1.0290920716112533,1.0557574954413695,1.0628071681301485,1.0757993703507993,0.94185925067179,0.9808720361322654,0.8874836321819315,1.091803424443796,1.0058767319636885,0.8847396636253736,0.8099471315821296,0.9382454586904375,0.904176386273573,1.0297370120141425,1.0079247833973992,1.0126399047655958,0.9022407970234628,0.8898672436383374,0.8363130058770617,1.026943215700099,0.9312716324498602,0.8560021344200218,0.8308253227006739,0.9266856550058983,0.890128072470276,0.9481414183730359,0.9328419565462441,0.9410813395422502,0.8645682303721751,0.8667624760676473,0.8173254122463662,0.9447507117578505,7.0,0.2723191511070299,4.444444444444446,2.3125,3.231111111111112,1.4305555555555558,1.009795918367347,0.7552083333333333,0.5170068027210883,0.38062500000000005,7166.08947349184,8404.587060035114,3398.5553786864166,3003.5447787906833,17.829339516690467,0.48125575341793836,9.248867294641375,0.9277322237092169,0.0,0.5862068965517241,1.3787043884399597,2.988356282530537,4.378232190236265,4.765159523684984,5.03182619035165,5.165159523684983,0.17948717948717952,0.007166293450184998,0.07936507936507939,0.035037878787878785,0.05211469534050181,0.024664750957854406,0.018359925788497218,0.014808006535947715,0.01100014473874656,0.008650568181818183,0.43065452263368853,26.600920447074294,11.806760204081632,5.30650815424478,209.43889658155464,1.0,4.497630598824886,218.12774554998256,,186.50744028919897,184.84223159052502,187.15014958191367,186.53228932334991,231.71689727709298,186.01951888667492,186.5839055686307,209.76570540799068,0.09034515292082701,0.054413090569327936,-0.2875328001815183,0.5593482877520422,0.37417851014924397,-0.15480251507798798,0.08813442481046072,-0.0791189559293544,0.0759447434736523,0.08329749334426742,0.010482541201441273,-0.0015921259489631418,0.044850595937552445,-0.1465311811941195,-0.23166730420573114,0.10127415449123219,0.03881246975876134,0.17553510047610296,0.05009853201399545,0.19293907483983222,-0.12694033162949742,-0.030926312727233146,-0.16022735706796004,0.15777132910132677,0.013882145221805326,0.07436736102855675,0.16863253062025998,-0.11919166328358934,0.0036545626858114724,0.0179921519038875,0.012734519467573644,0.007893986316848692,0.066319714405978,0.17121929666778196,0.09954577772421858,0.0032737263319996554,-0.10721667854597296,-0.016953315539942594,-0.03902756195732059,-0.13978786116341188,-0.1106819420569368,-0.21300898126331666,-0.1101656308511053,-0.20501601924066798,-0.023144931070909126,-0.005730366355080075,-0.011999782376123501,-0.17644135602717398,-0.04545394476014272,-0.04590198965684435,-0.04126042739214347,-0.08114340911707885,-0.12065353430919079,0.019316579891564052,-0.04458954322916287,0.0045044951195043125,-0.05085615197683213,-0.10414685736392376,-0.03880065269295919,-0.017370395702337026,-0.08828345567476004,-0.020266242871391744,0.05291985512522686,-0.08768039687312087,-0.09507963264357125,-0.04656498922003675,-0.08887265565552643,-0.07142102027756107,-0.034817577898138025,-0.08603718509441165,-0.007907334845974195,-0.09063598426530067,-0.04812640775373696,-0.05703952331636546,-0.0303315821162403,-0.008643190844032712,-0.03170231303223631,-0.04362710983006409,-0.0477336970920588,-0.03346691024211304,-0.05667695941443952,-0.07438869256388055,-0.05373758736793164,-0.0389924357870951,0.02666540230430043,-0.017010833086679344,-0.03395666360583454,0.011289722886533576,0.01726830792057946,0.01359633221993137,0.027011698338790465,0.014893322945710864,-0.007744870183825542,-0.04055935041072554,-0.027240673779733455,0.028138907760538266,14.146324920876559,36.080680699793916,16.01019313671593,12.41549668987274,28.082912831378202,31.759295137980367,33.61638455676334,35.058837890096676,36.57958455676334,72.5441928136226,60.568831545646155,4.352739899820142,7.62262136815632,0.0,11.975361267976464,11327.734853503536,10316.174779429559,2094.213740300982,344.0,56.0,81.0,111.0,155.0,184.0,221.0,265.0,320.0,480.2988077600011,39.0,5.25227342804663,6.142037405587356,7.048386408721883,7.9561263512135,8.868835492826895,9.781602364546004,10.696774142468731,11.61163893790626,12.528065560886553,0.5777777777777778,0.9634133333333331,1.1296641830146625,0.5335653428801376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6427921756487026,0.9505359477124183,0.9920757465404224,0.5894890616731123,4.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,8.0,1.0,4.0,0.0,4.0,1.0,0.0,0.0,0.0,24.264240419206526,0.0,22.99804733313562,0.0,0.0,4.899909730850478,0.0,0.0,0.0,13.344558822616634,90.58312923057383,25.17319447012107,28.439190165110134,126.4580281017083,-381.0984272946322,-29.614903445776694,-5.08131236392843,-16.569496838897052,634.1022814559443,1910.95326911502,38.042646003253815,25.479376921533603,36.74910132913501,0.5,0.9236195902987098,0.16354306588121567,96.88897962755104,0.05328032000393297,131.68370321711419,0.07638040970128993,8.0,0.1794871794871795,0.22134283512596514,0.4797629263298772,0.7028992827992736,0.7650181776772228,0.8078299337929618,0.8292358118508313,4.943400000000005,,1.2857142857142858,1.514192647743136,1.1430359144285005,1.28206267335915,-5.365540693720245,1.3572521419828643,1.2745051870999227,-2.2346271687189603,138.06269999999995,18.947451815200196,0.0,10.216698334856808,11.835812092322787,51.1115269726166,48.07345938284786,46.519274240634424,0.0,22.99804733313562,4.3694478524670215,0.0,5.713732805509369,0.0,7.2813856635702825,0.0,8.952475967933584,0.0,10.676577435769277,43.333333333333336,8.817199059822755,0.0,0.0,0.0,0.0,0.0,8.932171759484172,0.0,72.25599999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.72481372609968,24.264240419206526,0.0,22.99804733313562,52.97336911369834,12.841643245852019,11.835812092322787,60.523689693552555,24.26546827384644,0.0,0.0,0.0,40.017400716010314,48.20941317365269,46.727337582455256,436.25549109996524,,372.94141119064284,369.60332690492373,374.29453741880167,372.99131792250785,464.9668061809632,371.9614805080936,373.0949822694272,420.1698757213296,46.727337582455256,436.25549109996535,,371.7847490669891,368.26218484549406,373.2821341803078,371.8377962546672,468.79933524790647,370.7541854508136,371.9467119339097,421.76603798470023,5.023359535018759,321.3299650706095,,280.61786358861974,278.755360595918,281.13678170684756,280.6448753214954,330.4727609264559,280.0810539629259,280.7019063713592,306.39424169181024,1.3350667880701501,12.464442602856149,,10.655468891161224,10.560095054426393,10.69412964053719,10.656894797785938,13.284765890884662,10.627470871659817,10.659856636269348,12.004853592037989,2.511679767509379,218.12774554998256,,186.50744028919897,184.84223159052502,187.15014958191367,186.53228932334991,231.71689727709298,186.01951888667492,186.5839055686307,209.76570540799068,71.29019607843138,0.0,9.259541055870994,0.0,0.0,0.0,0.0,74.40568099053168,8.95329148169138,3.8340264410146263,22.50539135875391,0.0,2.147730243842256,2.7173152661865685,0.0,0.0,0.0,44.21167962548343,702.468401511099,103.40282913299697,224.1267211897903,328.3674142677198,357.3869642763738,377.3869642763737,387.38696427637376,1811.0,153.8857400922038,58.09190804655341,71.99361972524953,52.19000000000001,52.19000000000001,1.0,8.558407109124566,6.285402218862249,4.991274997093445,5.826676521124798,,5.8454291450849265,5.846710539961139,5.839884041223291,5.845394959674338,5.77499440131677,5.845638445596893,5.845384598614443,5.813909322726705,0.14260785705981271,0.16647647203213708,,0.16701226128814076,0.16704887257031825,0.16685382974923688,0.16701128456212394,0.16499984003762203,0.16701824130276838,0.1670109885318412,0.1661116949350487,2.8604543560611306,3.0152097413217755,,3.018422981611289,3.0186421707273716,3.0174739091834555,3.0184171333647867,3.006300255433798,3.0184587868122024,3.018415360846565,3.013016174144192,382.81000000000176,381.87542382734614,248.76270768803155,,246.10006463356942,245.8466096093457,246.88491864898614,246.1059201652472,256.2896807797765,246.05008116327375,246.10952779076473,251.06661868251643,10.910726395067032,7.1075059339437585,,7.0314304181019835,7.024188845981306,7.053854818542462,7.031597719007062,7.322562307993615,7.030002318950679,7.031700794021849,7.173331962357612,7.197857408279456,6.769262429412257,,6.75850118852367,6.757470771773564,6.761685280149708,6.758524981536591,6.799071338783198,6.758298065672262,6.758539640261882,6.778481285489087,22.50539135875391,2.7173152661865685,3.8340264410146263,5.602582796160019,4.688021817947483,9.60649644904168,5.652650726315881,5.661668601303688,6.898513209942805,467.89341101584586,96.1789569990856,-289.84833783514006,-22.523920132239915,-3.8646445044685347,-12.602101645006089,482.2730274753468,1453.395209908328,28.93372662062692,19.37860279877771,27.949907882852465,3690.0,66.0,2.07491495713053,1.2622750160345213,0.0,0.0,0.5777210825314643,0.2806111356980281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2902636039661994,0.15305906800060695,0.751250843019295,0.3504369326052053,24.526368779636442,21.8558631603648,17.091911253268254,13.06616067418984,14.791771589481629,10.229266402702253,13.79864423829577,8.643918993695921,11.848320307894907,6.737051300967177,10.359755729550038,5.443936067152801,7.9349822686480085,3.8690351355046775,6.106131738002211,2.7635671095556784,5.988819159571129,3.3100777849256446,10.065053263129494,5.056778887061475,16.482822255333232,7.613777443182338,120.7462357269263,61.18085433857976,47.37285399329673,41.570567428876075,37.117679505041345,32.89643040977962,190.0,232.0,80.50971999999997,49.35228000000005,0.3333333333333333,331.06,10.694444444444445,7.972222222222222,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,12.0,12.0,75.0,0.0,2.0,79.0,12.0,0.0,6.0,73.0,12.0,39.0,67.0,0.0,0.0,0.0,29.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,6.0,1.0,3.0,35.0,6.0,0.0,2.0,4.0,0.0,5.0,7.0,0.0,0.0,0.0,0.0,2.0,3.828641396489095,7.088434863477087,4.382026634673881,4.959341999708705,5.483759050678235,6.023750210605951,6.270042805310292,6.502415163062124,6.698961401857067,6.963337798975616 +135398735,CO[C@H]1/C=C/O[C@@]2(C)Oc3c(C)c(O)c4c(O)c(c(/C=N/N5CCN(C)CC5)c(O)c4c3C2=O)NC(=O)/C(C)=C\C=C\[C@H](C)[C@H](O)[C@@H](C)[C@@H](O)[C@@H](C)[C@H](OC(C)=O)[C@@H]1C,0,21.965811965811966,6.274953846153848,3.1794871794871793,7.35042735042735,164.51074196706358,86.48452241880338,1.3527239015490768,6.318778632478636,4.99934710351377,7.820002017094017,201.57290571516373,23.801652892561982,6.442800826446282,3.87603305785124,6.8347107438016526,147.7530616005607,89.44697255371901,1.6911178210743802,6.569856198347105,3.227731864095501,7.877691999999999,249.68636282033646,20.433179723502302,6.3197142857142845,3.6313364055299537,5.686635944700461,156.26136298502013,76.22838223963136,1.4416140813035294,6.410386175115206,3.011648745519713,7.82295402764977,210.1733198699853,19.44406779661017,6.38959966101695,3.2508474576271187,4.983050847457627,156.65095797580867,71.24764830847455,1.3744589856503933,6.471623389830508,3.3709039548022606,7.905375145762712,199.27742520814306,16.651832460732983,6.313559685863875,2.8089005235602094,4.358638743455497,160.24312147036454,59.49223095287959,1.2439456663800652,6.375418848167538,3.410703897614893,7.87704259685864,174.63821042143445,16.20094562647754,6.139593144208039,2.683215130023641,4.094562647754137,160.14534141786712,58.484607408983436,1.2038098034185603,6.209100236406618,3.342888100866824,7.712420104018914,167.30533726234083,15.848017621145374,6.308207048458149,2.594713656387665,3.8744493392070485,162.70862284031395,56.4048696740088,1.1617928886583695,6.356164977973568,3.619676945668136,7.893857638766521,162.33880284654828,15.647948164146868,6.222680345572353,2.613390928725702,3.511879049676026,160.82306234718808,55.410277678185736,1.1949455781440859,6.285251403887688,3.29835613150948,7.797490963282938,165.13786208874947,14.514851485148515,6.200271089108912,2.502970297029703,3.265346534653465,163.45781045660962,50.83357938217821,1.1380744870973898,6.249998811881188,3.260946094609461,7.798336665346533,155.21102195902932,7.823069617941411,0.15757606837606827,0.028619863410906853,0.7062605011322964,4.2504200452918415,1.3580264701030658,37.010372356052294,0.220264220790509,0.14588973628460794,1.9068595222441374,0.10214816042077578,48.57446415556554,0.1821574781947744,-0.008238475665748302,-0.013401285263836703,0.3575948354503134,1.5823835147844472,-0.09652764457871195,0.9082364840974517,-0.003563910345905886,-0.005973362759143595,-0.22225365392614804,-0.007655714846148368,0.739987997423031,1.284339102370533,0.006825396825396875,-0.0005993103680407681,0.03138178489708681,0.7053482007989869,0.1105586130719625,6.1366247728617935,0.025239809876466544,0.009263814465716877,0.0728063216690181,0.0019968834958810386,8.20261044175502,0.05935831194414418,-0.007418493408662819,-0.0006563437904054262,-0.017429558064064765,0.10328124400266954,-0.04522693470824055,0.29050108540793296,-0.009710938539316068,-0.005282275760198369,-0.002497690834283589,-0.006357188611417502,-0.27985363240323957,-0.3442805187334653,-0.004231471785921988,0.0008394829743891102,0.008399184731578364,0.22232797457659847,0.055238369176395116,-1.6074467288316467,0.0037741966522115956,-0.0048121688258887544,-0.08061824203252582,-0.0017349673299805763,-0.6745005154195423,0.9694583164304932,0.019291804570527964,-0.00033104857495069206,-0.015084327686619005,0.6096959353915165,-0.1211666697019758,4.479854745218633,-0.015922667789388223,0.019543890031287734,0.22017998999041008,0.00971622728607998,0.6366163256351738,0.11237599371565257,0.0063462065589819415,0.0007814356251592105,-0.013726896704418451,0.01316292093429782,0.047082195830155764,0.5401991190032327,0.013878167613328548,0.004998267781810108,0.08823957055135757,0.0056530307385299385,1.6421106533394705,-0.29477957345266426,-0.003638060955123559,-0.0013342388232463708,-0.00835941014265209,-0.15324628073146654,-0.11954584318052495,-1.4209069675233859,-0.01631614285376806,-0.00346756021253998,-0.05304731440025231,-0.0030040982472881225,-3.1177792671315507,-0.20658489254579634,-0.002538723872387213,0.0018599763171626609,0.03714306999404741,-0.16137883347835105,0.08547611400423517,-0.9380812410484962,0.01149247456216394,-0.0033533632626904855,-0.08731729024315978,-0.0009261051444789224,0.6824517241223115,,,0.45932203389830506,0.9830508474576272,0.3474576271186441,0.025423728813559324,0.635593220338983,-0.288135593220339,1.6395751035405888,0.028531009063501114,0.03727677177536552,1.2502568233937135,0.1924591059685201,0.27755587755057365,2.8898319269343022,0.4700149835190937,2.0012965980985333,1.4841358144410683,0.14253932561280191,0.3746214580446628,0.0,0.5171607836574648,7.029103617914546,2570.0,734.1696000000003,372.0,860.0,19247.75681014644,10118.689122999995,158.268696481242,739.2971000000003,584.9236111111111,914.940236,23584.029968674156,2880.0,779.5789000000001,469.0,827.0,17878.120453667845,10823.083679,204.62525635,794.9525999999996,390.5555555555556,953.2007319999999,30212.04990126071,4434.0,1371.3779999999997,788.0,1234.0,33908.71576774937,16541.558946000005,312.8302556428659,1391.0537999999997,653.5277777777777,1697.581024,45607.61041178681,5736.0,1884.9319000000003,959.0,1470.0,46212.03260286355,21018.056250999995,405.465400766866,1909.1289,994.4166666666669,2332.085668,58786.8404364022,6361.0,2411.7798000000003,1073.0,1665.0,61212.872401679255,22726.032224000002,475.1872445571849,2435.4099999999994,1302.8888888888891,3009.0302720000004,66711.79638098796,6853.0,2597.0479000000005,1135.0,1732.0,67741.47941975779,24738.988933999994,509.21154684605096,2626.4493999999995,1414.0416666666665,3262.3537040000006,70770.15766197017,7195.0,2863.9259999999995,1178.0,1759.0,73869.71476950253,25607.810831999996,527.4539714508998,2885.6989,1643.3333333333337,3583.8113680000006,73701.81649233292,7245.0,2881.1009999999997,1210.0,1626.0,74461.07786674808,25654.958564999997,553.2598026807118,2910.0714,1527.1388888888891,3610.238316,76458.83014709101,7330.0,3131.1369000000004,1264.0,1649.0,82546.19428058786,25670.957587999994,574.7276159841819,3156.2493999999997,1646.7777777777778,3938.1600159999994,78381.56608930981,915.2991452991452,18.43639999999999,3.348524019076102,82.63247863247868,497.29914529914544,158.8890970020587,4330.213565658119,25.770913832489555,17.06909914529913,223.10256410256406,11.951334769230765,5683.212306201169,22.0410548615677,-0.9968555555555445,-1.621555516924241,43.268975089487924,191.46840528891812,-11.679844994024146,109.89661457579166,-0.4312331518546122,-0.722776893856375,-26.892692125063913,-0.9263414963839525,89.53854768818675,278.70158521440567,1.481111111111122,-0.13005034986484668,6.809847322667838,153.06055957338015,23.991219036615863,1331.6475757110093,5.47703874319324,2.010247739060562,15.798971802176927,0.4333237186061854,1779.9664658608392,17.510702023522533,-2.1884555555555316,-0.19362141816960074,-5.141719628899105,30.467966980787512,-13.341945738930963,85.69782019534023,-2.86472686909824,-1.5582713492585187,-0.7368187961136589,-1.8753706403681631,-82.55682155895568,-131.51515815618376,-1.6164222222221993,0.3206824962166401,3.2084885674629353,84.92928628826061,21.101057025382936,-614.044650413689,1.4417431211448295,-1.8382484914895043,-30.796168456424862,-0.6627575200525802,-257.65919689026515,410.0808678500986,8.160433333333328,-0.14003354720414274,-6.380670611439839,257.90138067061145,-51.25350128393576,1894.9785572274818,-6.735288474911218,8.267065483234711,93.13613576594346,4.109964142011831,269.2887057436785,51.01870114690627,2.8811777777778014,0.35477177382228153,-6.232011103805977,5.97596610417121,21.375316906890717,245.25040002746766,6.300688096451161,2.269213572941789,40.06076503031634,2.566475955292592,745.5182366161196,-136.48294250858356,-1.6844222222222078,-0.6177525751630697,-3.870406896047917,-70.95302797866901,-55.34972539258305,-657.8799259633277,-7.554374141294612,-1.6054803784060108,-24.56090656731682,-1.3908974884944008,-1443.531800681908,-104.32537073562716,-1.2820555555555426,0.9392880401671437,18.757250346993942,-81.49631090656729,43.165437572138764,-473.73102672949057,5.80369965389279,-1.6934484476586953,-44.09523157279569,-0.4676830979618558,344.6381206817673,0.7401714399921314,0.5990979269601298,0.4401727623432782,0.3141034469250919,0.27934213430294047,0.17148006503390895,0.178583023822221,0.09196184657812856,0.10519315077646098,0.047444900121508246,0.06489914602631174,0.023574242052034105,0.039274364620802776,0.011927720021927006,0.02371588811229447,0.005742721079989632,8.032718131275674,5.6470780535220015,3.5583794527855606,2.145555834721988,0.4884569507057818,-0.4941188532907026,4.024128726148664,0.9722469028134828,6.0303179514962055,0.9930390334298586,14.643269434748127,10.907932704876426,16.019708915956258,11.659075452519463,2.0398596164681604,0.74115824690633,3.504561278966541,2.1952089287656404,7.010481370130635,1.1370731872753908,3.717415164167615,2.391203194463897,20.94367450213678,14.700256989792445,0.21771992400155082,0.5457394068740181,0.7794557035398525,0.8543810405169342,0.8846905723778061,0.891959175973887,1.4791991198622982,2072.6280698397927,0.0,4.0,12.0,0.0,10.0,5.0,6.0,4.0,0.0,5.334289163916609,3.020019067904307,1.371084585147461,0.8424651711990485,0.6286228634327751,0.5773408121507249,474.47845381058414,6628.0303461177045,111.24769636176538,56.64983201810004,119.75176676085903,,21.0,1949.0,88.78286635172938,39.91624852641899,44.47280554205731,13.08951281182515,13.08951281182515,59.43346758166389,44.85590153638479,7.04767198267719,15.318105860596532,18.947451815200196,27.099999999999998,58.0,20.5,1.5,37.5,0.0,0.040677966101694954,-17.0,0.15437212360289354,0.03537047747574085,-0.1190016461271527,0.05382007822685819,0.1938464491362769,0.0,0.594017094017093,0.883050847457628,0.4396449704141995,0.5586466165413522,0.8292307692307698,96.73493110889474,1.6833295347465658,2.199329534746566,73.7651525802291,11.355087252142685,16.375796775483845,170.50008368912384,27.73088402762653,0.5201535508637231,0.2829028290282903,0.01845018450184502,0.4354243542435425,0.5348837209302325,0.26831685900624896,-1.736762293838478,-0.06333755484043802,-0.01484412216955964,-0.0643245294014251,0.7316831409937511,4.736041167974667,0.04530474709937643,0.04047898434166382,0.05262267964416295,-4.738131351361962,0.8656701052408996,0.8446252840455221,1.4560108071092004,0.8411236523659884,0.5108586837084517,1.3872599542386685,0.8716668307175695,1.2511680251542059,0.8244389251170113,0.8388751110904261,0.88364617095328,1.0942643665203007,0.7782200509240473,0.849139855267285,0.9824995524580472,1.3649914488197077,0.8545700561574561,1.09509284496995,0.7802237852679929,0.9862527479770652,0.8239049998666932,0.6352412438777189,0.8691460780329274,0.8736433351742933,0.9649008041707358,1.0711545215084826,1.0815297462998479,1.2539084030490235,1.0164601136779403,1.1737936143939043,0.9652504204355263,1.1293410129527899,1.0463680109886018,0.9191241087296286,1.1080253812737193,1.0294707241513257,1.0465551068020784,1.1247019752979,1.0774063594377663,1.0565296644405784,0.9776158753994366,1.0039081981656457,1.0442558146132113,1.0135268107451045,1.117636619213965,1.136773786608147,1.1435525797497126,1.0102861328685164,0.8448968157624429,0.8071779883694982,1.0447458830752299,1.1300143487178578,0.8315746670138165,1.118169785291135,0.8495745326648474,1.1130474232184138,0.7973357422689527,0.8383046150415763,0.839800768427261,1.0076481442399088,1.0145740562407264,1.1329613739607445,1.1277773532077466,1.0714072857640167,1.093085145044946,0.9529207333778934,1.010519854502779,0.9263976767505905,1.12393588931943,1.1520387148944518,1.1518346246712923,0.9389160993437115,1.0289310357832686,1.054301067383226,1.172930511669269,1.0581607422585335,1.0421129928470012,1.1184779655858408,1.0291920423909116,1.0964764357692625,1.048408735824579,1.0672570364006555,1.0756486142118855,1.0640768505285476,1.0384702050371255,1.1006957824072097,1.0390858978979878,0.9145590024455482,1.0785388245960574,0.921861961157925,1.035377945480975,0.9307555203136959,1.1003305869460969,1.1546612847125424,1.108249326511284,0.9641578501474519,14.0,1.1539842873176207,9.777777777777779,6.638888888888889,6.000555555555557,4.233333333333333,2.86875283446712,2.028734410430839,1.6951688082640461,1.4434645061728397,15706.17053337777,17908.196758120313,5687.884948186721,5078.964438633486,19.324431607599884,0.46213516321994647,10.39393225248902,0.8592031522018331,0.0,0.5348837209302325,1.5360755556667955,3.8503456516790977,5.499280134435944,6.027899548384356,6.24174185615063,6.29302390743268,0.22222222222222218,0.008069820191032313,0.1040189125295509,0.05772946859903381,0.050004629629629635,0.03256410256410257,0.0217329760186903,0.01525364218369052,0.012842187941394289,0.010459887725890142,0.5348978496052367,50.00655076845553,21.326618379357175,10.930112373054504,343.9147588784286,0.0,4.995161138484702,482.07126591872697,,392.91980832376345,386.79730625469335,392.2082083332809,393.0040561764638,548.9140361723712,390.7859853491549,393.2432344802707,482.46546870372094,0.0232846551406132,-0.05228253091127075,-0.4682511957317572,0.5063214421265347,0.3722887380359599,-0.07107935427163369,0.02454005259282208,-0.016180160051030183,-0.04094436600728719,-0.11655481241983838,-0.07494716316586043,0.015234094915656315,0.16417329323326388,0.04331493288122599,-0.02094036436988636,0.044433725016158575,0.1659478812171272,0.08141123572029622,0.1658082419118994,0.11458878698448198,0.06349874022422407,0.03818127178206294,0.01954889336876296,0.16886672008331738,0.007587598582532355,-0.047078807620443815,-0.022933155933766533,-0.0246786533242638,0.024299067598524387,-0.033303426482407306,0.007849180295005257,-0.04408768026175272,-0.036207315844985,-0.001309845222024597,-0.06223497892894528,-0.005761332363996332,-0.044008366989844123,-0.02685351798360162,0.02933217962421122,0.011892474119836178,0.05230729485733287,0.04067547311666382,-0.043432330627951155,0.017134860299445522,-0.03298497172207488,-0.04227801843402085,-0.016984812284761456,-0.01388590748545107,0.12392300769088639,0.12242851829813702,-0.01156709136580056,-0.021358022517803832,0.14344369001056073,-0.08922261264375797,0.12104322275174419,-0.07228894339826578,0.13396343381662348,0.11546733643560986,0.09511896490407878,0.013105987615145556,0.014364693042987845,0.04027392372702304,0.027303960677234056,-0.019436024926229218,0.0030968517920665953,0.03466957151916378,0.014595884467368621,0.06300690853703347,0.034260585488065265,0.046274814438092705,0.05534148353963089,0.03380604772253203,-0.037680806620539,-0.023087648985130323,-0.046619328823837104,-0.011836156955188703,-0.03605438500159915,-0.08802909649577903,-0.038392128397244436,-0.07407532097228886,-0.023768363017500526,-0.027819204184387006,-0.02940922513840125,-0.06418556172120579,-0.02640713973348965,-0.01611110048975419,0.06498900048746688,0.052591175542874916,-0.03796773771973647,0.06294141968952054,-0.02534644158734307,0.05217585734495804,-0.022985600962007368,-0.04579114991145134,-0.009066292928468275,0.014049598610839598,7.363642732687287,31.495358838803767,44.69492987923449,14.603942213098062,37.94196390554718,44.87762803171055,46.91121610807514,47.31485462438901,47.36654693208132,118.07649928781346,87.56401305202303,8.409820211155314,22.102666024635106,0.0,30.51248623579042,21659.28231291447,17575.541609248066,8799.572924370343,535.0,94.0,129.0,167.0,222.0,268.0,320.0,386.0,465.0,822.4051232960019,63.0,5.752572638825633,6.634633357861686,7.5480289699350145,8.45553053102413,9.378140332251117,10.299070660789841,11.229806299938259,12.160400365703815,13.098093225564847,0.6267806267806267,0.9893333333333334,1.1343503046137968,0.5856120493536198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6372280771789754,0.974325456678398,1.0116906642762433,0.6010465797178602,0.0,0.0,0.0,0.0,0.0,2.0,8.0,0.0,0.0,3.0,0.0,0.0,0.0,6.0,1.0,4.0,0.0,10.0,0.0,0.0,0.0,5.0,4.0,1.0,4.0,0.0,8.0,2.0,1.0,0.0,0.0,54.69678712426053,23.35250188760002,5.749511833283905,0.0,11.690424675716445,19.392524076169995,0.0,5.101407525739723,0.0,45.92300911926414,26.97116648889232,87.3307019851857,52.98909366374336,274.75147273670495,-1778.4122838684038,-64.85647803273842,-15.200104990328239,-65.8671216247557,749.2299265472891,4849.618062249301,46.39121832902695,41.4497270277718,53.88464513610333,0.42857142857142855,0.7689152474541552,0.0782868939234738,163.85023982368858,0.04821854966971127,0.0,0.23108475254584493,12.0,0.06349206349206349,0.22357991436587632,0.5604281299221286,0.8004349636287433,0.8773769362203332,0.9085022572905136,0.9159664973090784,4.335420000000004,,3.571428571428571,4.171242438343415,2.978608572370206,3.561187663113075,-15.060258444797096,3.7493880048959616,3.5429895750755973,-6.065232249670023,220.47919999999948,58.86370034161918,0.0,9.90882225480501,28.77303171038529,85.59287430108878,45.653283751611355,52.82961988091657,0.0,22.99804733313562,4.844187086458591,0.0,6.220590170099739,2.3978952727983707,7.783640596221253,4.948759890378168,9.438192819018127,7.234898420314831,11.150045595952545,73.33333333333333,0.0,0.0,0.0,0.0,0.0,-0.5529011712635026,-2.3299319547099344,0.0,115.75200000000001,0.0,40.49629433229384,0.0,0.0,0.0,8.740610433379418,4.552228739898013,-1.8465396121853592,132.71898563981424,10.05365155780638,5.687386274683562,22.99804733313562,129.855261623381,23.79966322954379,30.595361384336194,69.95105205699716,41.2406729315653,0.0,10.772448428929591,0.0,68.5166097743735,74.55568502994012,73.90718723457539,971.435590308814,,790.384694057729,778.4250266863463,789.1093710473932,790.5493231346186,1104.214792000626,786.2064026439828,791.0183150822097,970.2581296778343,73.90718723457539,971.4355903088142,,787.5033784398968,775.0338879589428,786.6374529326511,787.6761805655319,1115.530025236465,783.1638664608498,788.1623031744828,974.5912018554254,5.212255612642731,675.7323388766252,,549.3535922986912,541.1555575837111,550.2647414703562,549.4718369673963,766.9864926196227,546.5751432768934,549.7790783934455,673.350809111669,1.252664190416532,16.465010005234134,,13.39635074674117,13.193644520107565,13.37473510249819,13.399141070078281,18.71550494916315,13.325532248203098,13.407090086139148,16.445053045387024,2.639345383431985,482.07126591872697,,392.91980832376345,386.79730625469335,392.2082083332809,393.0040561764638,548.9140361723712,390.7859853491549,393.2432344802707,482.46546870372094,113.99607843137257,0.0,15.949353319219316,0.0,0.0,0.0,58.41658245110125,118.36780772032047,2.5617266531706777,2.6658880740395925,23.596420517505617,0.0,-6.353960616138492,3.896794851369558,-2.042566017680001,0.0,0.0,70.32244982698965,787.3549110189043,179.72084001301508,450.49044124645445,643.4157757290054,705.2642471609697,730.2837971696237,736.2837971696235,2708.0,206.55627638189432,236.6264882650898,113.01820985124162,220.14999999999995,220.14999999999995,0.75,9.906397182641502,6.977279923499917,4.666649316651156,7.599314912384799,,7.5929410646807804,7.594904681252801,7.5966891554115605,7.592926241908624,7.545417302409004,7.59382089899787,7.592816417762055,7.566316408664158,0.0790957511296806,0.12880194766753897,,0.12869391635052171,0.12872719798733562,0.12875744331206035,0.12869366511709532,0.1278884288543899,0.12870882879657405,0.1286918036908823,0.12824265099430776,3.3153936739914447,3.803010451033562,,3.802171359316359,3.8024299366835264,3.802664865840552,3.802169407136499,3.795892750072407,3.8022872279024575,3.802154943023807,3.7986586960556687,621.1900000000023,9527.135071240282,512.0449783135531,,513.7164407451033,513.289448049525,513.4446243251556,513.7214142667787,524.5983361841143,513.5535105546544,513.7405023814132,519.6931303147752,161.47686561424206,8.678728445992425,,8.707058317713615,8.69982115338178,8.7024512597484,8.707142614691163,8.891497223459563,8.704296789061939,8.70746614205785,8.808358140928393,10.93685168024864,8.013364820361407,,8.016623792437883,8.015792263184078,8.016094534786797,8.01663347384421,8.037585246749853,8.016306582357691,8.016670629702404,8.028190854279488,23.596420517505617,42.62670316058528,66.84818411685347,-0.35005530822548714,-8.342717254488937,0.0,4.8603847953800585,15.090435620913437,3.4206443514765565,782.7337872707614,281.3403975082693,-1821.0610989394117,-66.4118271285951,-15.564624777259931,-67.44670736812635,767.1975085713373,4965.918689374971,47.50374465904628,42.44374948183735,55.17687432638856,13890.0,115.0,5.353788737425785,2.7474366268457384,0.14433756729740643,0.041666666666666664,1.9782878099297574,0.6147921954076373,0.08333333333333333,0.008505172717997146,0.0,0.0,0.0,0.0,0.06804138174397717,0.02551551815399144,0.42017011345966915,0.1531143696413162,1.0168742489201545,0.28694590827334665,43.67011495953575,35.346777690647656,27.730884027626526,19.78851715628079,26.258160624476407,16.11912611318744,23.037210073066507,11.863078208578584,17.567256179668984,7.9232983202918765,14.407610417841205,5.233481735551571,10.525529718375145,3.1966289658764375,7.58908419593423,1.8376707455966823,13.687014331161178,5.666839722372048,20.730008486214622,7.37170366023979,34.30468336191266,9.75269301012925,203.04929969389133,72.81024027133684,41.62776037168524,32.74669743410952,30.50812377099421,30.00267727578463,314.0,380.0,124.507994,71.72400600000013,0.3247863247863248,547.16,24.729166666666668,12.888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0,10.0,11.0,117.0,0.0,1.0,121.0,11.0,7.0,12.0,109.0,18.0,63.0,103.0,0.0,0.0,5.0,43.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,58.0,15.0,6.0,4.0,59.0,16.0,0.0,4.0,12.0,0.0,6.0,4.0,0.0,0.0,0.0,0.0,2.0,4.33729074083249,8.833948321637825,4.908971640319756,5.467004732066187,6.030985695895189,6.640774123054389,7.132322815947364,7.614358395999148,8.080360763872225,8.518214544657397 +68553,Clc1ccc(COC(Cn2ccnc2)c2ccc(Cl)cc2Cl)c(Cl)c1,0,50.76923076923077,6.240907692307693,3.641025641025641,7.241532130421019,157.7362733499894,212.46536341025632,2.0127585812278457,6.540107692307693,2.703534678500385,7.996032615384611,276.34306693797566,33.51219512195122,6.370121951219512,4.2926829268292686,7.157181571815719,143.4507626769902,131.8634958780488,2.113124398536586,6.6125853658536595,2.8820887282946908,7.863070536585363,303.4409170347735,31.102941176470587,6.413292647058824,3.8676470588235294,5.51797385620915,151.375911239261,121.10002513235298,1.9174245554073237,6.633008823529412,2.740120430888405,7.981202529411763,268.4207453199627,27.372093023255815,6.210034883720931,3.2093023255813953,3.903100775193798,153.32924832813356,103.50842945348836,1.7407962870493605,6.466704651162791,2.3854794717197825,7.918978697674418,228.75293929076994,29.186813186813186,6.1929978021978,2.8461538461538463,3.461402794736128,158.30626319092386,112.36964695604395,1.5418683556597474,6.446379120879121,2.3450944726664886,7.973393318681319,200.20314173880172,21.430232558139537,6.1502686046511625,3.058139534883721,4.089147286821706,160.75352410540282,79.80150172093022,1.4532593429451397,6.311430232558139,2.378935783328548,7.819329651162792,195.1417721895897,26.38095238095238,6.1052857142857135,3.1785714285714284,4.03968253968254,153.47264609717956,99.7900694642857,1.7243203117237145,6.357729761904762,2.3896727415245937,7.800102142857143,228.32756591808916,25.467391304347824,6.006481521739131,2.9130434782608696,3.5736714975845416,156.87202460883617,96.53569053260868,1.655090049324848,6.25423043478261,2.33067185543031,7.726704173913044,213.91523521009518,30.2875,6.015448749999999,2.7625,3.288117283950618,156.6605514703866,117.34085051250001,1.7629636608523498,6.31478875,2.30594326322207,7.814854187500001,222.40557443439752,21.220249835634448,0.08541946088099933,0.01158021857637376,0.6009204470742929,3.332180745286157,1.409102285283017,98.62029363445106,0.2948373998482247,0.11453267587113736,0.3195947684006494,0.09013060092044707,51.96581323706073,0.08431551771139004,0.0012717211077435638,-0.003571868126972774,0.06074309263802698,0.4035414267503764,-0.29383039890438284,0.4140763755552413,-0.016294834431763196,0.0008819582752040072,0.004522366232059592,-0.0034002469492150538,-1.3128858555555771,-0.26210503925436063,-0.019140539312371956,-0.00211584057957348,-0.11788877286614845,-0.8431717513752038,0.20503137575365962,-1.0137491864872157,0.038333012193340794,-0.020609071044591448,-0.07026490649211395,-0.015042121282438023,1.8699309694662842,-3.000214057459138,-0.007871041083742347,0.0007050955534095402,-0.11672247450422762,-0.47445052450684205,-0.18342950504945377,-13.988060317516014,-0.042429220785572784,-0.01581806644955125,-0.03070456620933377,-0.01229775178508631,-9.899670401556921,1.6290034751573212,0.004429228890767341,0.0006681817791936212,0.042359350051657745,0.09202151652294109,-0.23455872231475924,7.243735635202404,-0.03551493090083774,0.010404630412322723,0.014080577119161766,0.010741461068845687,-5.0839200700672675,0.6655581548247026,-0.006188661835084018,-0.001112288337284794,0.015954925615032953,0.1816299248552611,0.2673848607074678,3.3932500679938067,0.058799955441732124,-0.006325818387535725,0.009187040443047445,-0.007160307539409505,9.733778698245356,-1.7294073447919605,0.0009629567014182559,-0.0001260011713852996,-0.008429604583450743,-0.09841177077644314,-0.12353763163222163,-8.240602782192168,-0.042852633130944624,0.0009119822485207298,-0.01167933860021722,0.00496016708932094,-5.737877016185196,-0.34706142983734944,0.004404758739959447,0.001003995606582483,-0.03570305576994539,-0.07000710750865582,0.009623039267525828,-1.5992312749192548,-0.008756947786586073,0.005722006403110117,0.0037710798764830447,0.003896193951347801,0.07262998056973767,0.5851988823142669,-0.002525454470742897,-0.0009203761003518079,-0.016625575279421427,-0.06327840277270472,-0.04336246333465993,2.866965808177187,0.021725457505354005,-0.0024367463839579076,-0.0013311677339279192,-0.003954970471729124,2.4347462242314037,,,0.5196190476190475,1.37,0.72,0.08,0.65,0.07,0.7789698410088031,0.015573456764820364,0.025893456764820365,0.9603355592066564,0.27093967409064923,0.21005541163945424,1.7393054002154593,0.48099508573010347,2.0257525644222096,1.4931578087691855,0.16744726291988854,0.08251934580375782,0.28262814692937804,0.5325947556530245,10.615026250974369,1980.0,243.39540000000002,142.0,282.41975308641975,6151.714660649586,8286.149172999996,78.49758466788597,255.06420000000003,105.43785246151502,311.84527199999985,10777.37961058105,1374.0,261.175,176.0,293.44444444444446,5881.4812697565985,5406.403331000001,86.63810034000002,271.11600000000004,118.16563786008231,322.3858919999999,12441.077598425714,2115.0,436.1039,263.0,375.22222222222223,10293.561964269747,8234.801709000003,130.384869767698,451.0446,186.32818930041154,542.7217719999999,18252.610681757462,2354.0,534.0630000000001,276.0,335.66666666666663,13186.315356219486,8901.724933,149.708480686245,556.1366,205.1512345679013,681.032168,19672.752779006216,2656.0,563.5627999999998,259.0,314.98765432098764,14405.86995037407,10225.637873,140.31002036503702,586.6205,213.40359701265047,725.578792,18218.485898230956,1843.0,528.9231,263.0,351.6666666666667,13824.803073064642,6862.929147999998,124.98030349328201,542.7829999999999,204.58847736625515,672.4623500000001,16782.192408304712,2216.0,512.8439999999999,267.0,339.33333333333337,12891.702272163084,8382.365834999999,144.842906184792,534.0493,200.73251028806587,655.20858,19179.51553711949,2343.0,552.5963,268.0,328.7777777777778,14432.226264012927,8881.283528999998,152.26828453788602,575.3892000000001,214.42181069958852,710.8567840000001,19680.201639328756,2423.0,481.2358999999999,221.0,263.0493827160494,12532.844117630928,9387.268041000001,141.03709286818798,505.18309999999997,184.47546105776559,625.188335,17792.4459547518,827.5897435897434,3.3313589743589738,0.4516285244785766,23.435897435897424,129.95504906616011,54.95498912603767,3846.191451743591,11.498658594080764,4.466774358974357,12.464195967625326,3.5150934358974357,2026.6667162453684,3.4569362261669916,0.052140565417486115,-0.14644659320588374,2.490466798159106,16.545198496765433,-12.047046355079697,16.977131397764893,-0.668088211702291,0.036160289283364296,0.18541701551444328,-0.1394101249178172,-53.82832007777866,-17.823142669296523,-1.301556673241293,-0.14387715941099663,-8.016436554898094,-57.33567909351386,13.942133551248855,-68.93494468113066,2.606644829147174,-1.4014168310322184,-4.778013641463748,-1.0228642472057856,127.15530592370733,-258.01840894148586,-0.6769095332018419,0.06063821759322045,-10.038132807363576,-40.802745107588414,-15.774937434253024,-1202.9731873063772,-3.6489129875592594,-1.3603537146614075,-2.6405926940027045,-1.0576066535174227,-851.3716545338953,148.23931623931622,0.40305982905982807,0.060804541906619526,3.8547008547008548,8.373958003587639,-21.344843730643092,659.1799428034187,-3.231858711976234,0.9468213675213677,1.2813325178437207,0.9774729572649575,-462.6367263761213,57.238001314924425,-0.5322249178172256,-0.09565679700649228,1.3721236028928339,15.620173537552455,22.99509802084223,291.8195058474674,5.056796167988963,-0.5440203813280724,0.7900854781020802,-0.6157864483892175,837.1049680491005,-145.27021696252467,0.0808883629191335,-0.010584098396365167,-0.7080867850098624,-8.266588745221224,-10.377161057106617,-692.2106337041421,-3.5996211829993485,0.0766065088757413,-0.9810644424182465,0.416654035502959,-481.9816693595565,-31.92965154503615,0.4052378040762691,0.09236759580558843,-3.2846811308349757,-6.440653890796336,0.8853196126123761,-147.12927729257143,-0.8056391963659187,0.5264245890861308,0.3469393486364401,0.35844984352399767,6.681958212415866,46.81591058514135,-0.20203635765943176,-0.07363008802814464,-1.3300460223537143,-5.062272221816377,-3.4689970667727943,229.35726465417497,1.7380366004283203,-0.1949397107166326,-0.10649341871423354,-0.3163976377383299,194.7796979385123,0.7124476123576851,0.6410386164737545,0.4453658201204662,0.33337279446154183,0.29563689631457135,0.1931881562518465,0.18981692087319751,0.10542854360507378,0.1255290996745806,0.05985979538655832,0.07723957226063644,0.03180884650254118,0.05301429399596036,0.01921527909194418,0.0324001077324813,0.009230519968817612,17.004170224538132,5.693769271489587,3.5200807350046723,2.188056165688103,0.37416937103432923,-0.4364846425647044,3.2042999261325247,0.9928887473740058,6.005856855381252,0.7730619137291886,14.55771646500209,10.952596266509744,35.453548353007236,11.705015742175473,2.2165114643357313,0.77915946056735,3.4625893290735004,2.2398557900776774,3.5096521108122354,1.2522836380547737,3.676156490121255,2.436332135630291,22.45936109170934,14.706817273055627,0.3094849864491744,0.6050130941395945,0.7700510331301961,0.8500139523761662,0.8865480228487839,0.913948575703247,1.5729521034707818,852.2873328004229,0.0,2.0,2.0,0.0,10.0,1.0,2.0,0.0,0.0,3.547733818840207,1.888429243378066,0.9617891026750502,0.5128205128205128,0.3076923076923075,0.1538461538461542,-75.81241858707071,888.4715670818878,44.85024166768856,22.781322232868916,51.321672453674644,,12.0,502.0,0.0,0.0,6.103966387748303,33.242171625390796,11.126902983393991,0.0,36.78963192022405,22.89667735632765,4.9839785209472085,51.14062251473012,12.990476190476189,34.25,18.0,2.0,16.25,0.01961904761904755,0.0,1.75,0.22606579648833142,0.09691985163683259,-0.12914594485149883,0.0,0.11836681222707413,0.0,0.666910866910867,0.8723809523809521,0.44084507042253557,0.5699910152740344,0.8723809523809521,19.474246025220076,0.3893364191205091,0.6473364191205091,24.00838898016641,6.773491852266231,5.251385290986356,43.482635005386484,12.024877143252587,0.5956331877729258,0.21994134897360706,0.0,0.3002199413489736,0.16666666666666666,0.5652182123573254,-0.8640088989849507,-0.04904694322983214,-0.022154074332947457,-0.06171492135606791,0.4347817876426745,0.664620009452863,0.02811858294319845,0.017041538703919563,0.02658480037811452,-7.051862463506561,0.47428354225294655,0.7400620029537194,1.3135662118097415,0.9293643592891074,0.7543108078305822,1.2893772286172267,0.47522327858315605,0.7359757130416275,0.6212476717469305,0.8374066510849153,0.6737112937474024,0.76799926747363,0.6232485620348029,1.3635519069892525,1.5669050515725436,1.3114622216501486,1.3274393335068073,0.9494673024832003,0.622151514359955,0.6469771234986289,1.0865394310409349,1.3524365336124307,1.0619199436945852,0.7667410805559757,1.0267136355907047,1.1344284423206659,1.0038771525517793,1.2255101521551073,1.1158212362253404,1.085523266981519,1.0270860681469223,1.074355141827942,1.1147821296488116,1.1074116598361547,1.1361337213008975,1.1205643325076495,0.9163111024556063,1.2261636287867206,1.1330009935072693,0.846358236949047,1.0088321798826323,1.092397657238792,0.9197785837021062,1.1363875360210762,1.0730082446757478,1.2071962405670842,1.0536854449967632,1.1006468545228392,0.7042305175996566,1.4459323670961453,1.5144547285977819,0.9992621240649335,1.1171225099565487,0.8254913313660364,0.7053082582911862,0.7497666532290618,1.164871081660034,1.2891853533564985,1.1045235621921878,0.8158102754874348,0.9158695979321214,0.8124462181445931,0.8833070209368655,0.9651453579243519,0.9412821502344025,1.0772299137038694,0.919254780460949,1.0552669507261219,0.8217808263438622,0.8705263974941057,0.7558775906235634,1.05875834945836,0.9125898500433761,0.6781192639519926,0.6633827523867889,1.0045904290743035,0.9457572612745586,1.005842926196163,0.914622196600894,0.9814671251571506,0.7509920329380567,0.7905718755310682,0.6974472653589396,1.001574497023567,1.0589485995786345,0.7369121037075802,0.730355361970287,0.9424644420131296,0.9071892781978333,0.9872179976953709,1.057234657242976,0.9464673863969619,0.8886362240405228,0.7692701579032685,0.9065129976229104,0.9757493928125411,5.5,0.0708070605040302,2.88888888888889,1.7222222222222223,1.1416666666666668,0.7152777777777779,0.5224943310657596,0.5173965419501134,0.2844466490299823,0.2837654320987654,6002.375807374508,6483.342202896558,2522.799541507412,2380.286052987861,11.43014678690788,0.4236001071378096,6.5883353833728115,0.7349066375331316,0.0,0.16666666666666666,1.7376684000220413,3.3969729754841826,4.3236131161871985,4.772581706041736,4.977709911169941,5.1315560650160945,0.20370370370370366,0.006437005500366382,0.07807807807807811,0.049206349206349205,0.03567708333333334,0.023073476702508967,0.014928409459021703,0.01478275834143181,0.00917569835580588,0.013512639623750735,0.44857520230434983,19.753086419753085,9.273922571219869,5.489603024574669,165.60580790040453,0.0,4.141111010727788,127.99675889886441,,95.55605601587348,98.63999792670262,100.53537827598197,95.4617882238628,139.89625501128992,98.94710218041959,99.34237461935679,122.24372211075467,0.003973351792013393,0.014887955210993902,-0.3084456569982354,0.1010834178363666,0.12110430303675546,-0.20852311572638407,0.004198693395601408,-0.05526718944120179,0.007700494801992693,0.014150313707232772,-0.03772577697796834,-0.025264414694452612,-0.012351647190044696,-0.22407703250477398,-0.18271162721317444,-0.19618033208907207,-0.25303902033765424,0.1455049629079831,-0.010279316245445475,0.13001407627754727,-0.17994053564049323,-0.21985624747157526,-0.1668924996485357,0.0359838681045156,-0.14138448325056854,-0.09214575932184534,0.06088793132524226,-0.19423947890692594,-0.1423843905160366,-0.13017472682092207,-0.14183754480963703,-0.14390718683387638,-0.13810963840003546,-0.09607343187433535,-0.13644369015070482,-0.19050352115911318,0.0767664607049909,0.05185269076958758,0.05770027351270051,0.07049077836824012,0.027616003919690914,-0.16645968483944962,0.07345076117956262,-0.12045599004441085,0.0908442095950779,0.04405759577863339,0.11917662768415954,-0.09783201211294701,0.031364294010669626,-0.07245025631460783,-0.09605072045480312,0.02655081166352859,0.054507824976842104,0.18975546594459164,0.0344072192744764,0.19943180706382888,-0.05523156024620441,0.028745903723713075,-0.07944369022602528,0.18731119734124485,-0.08149797284138592,0.011273270651517958,-0.010880724794121782,-0.01402782119412318,-0.029533743304789386,-0.08767115980328512,-0.08355889521822997,-0.14534327447265558,0.007962638099426022,-0.0365442108413233,0.05503310794187409,-0.1104163806695338,-0.016355199987068057,0.05156622032648815,0.08669919310770688,-0.05941394729331178,-0.02100939680648801,0.006829198538694476,-0.01621604657604259,-0.029700939538518323,0.049959597639611976,0.011799566980882352,0.04322831437445691,0.0013976492629569736,0.027577379477010784,-0.029565329079531313,-0.07947830123255026,-0.027666849015317293,-0.018990087156052687,-0.030773112631742424,0.029070749057024392,0.07368623355292699,-0.02127555621506243,-0.004165173731064161,-0.043880440508989184,0.04685284560302047,12.212104772639659,20.347284948010273,5.891893662354394,23.91138498011128,40.229714552768044,45.53951279850975,50.65340647041645,53.75509877810876,54.4744321114421,50.64381411055524,37.32894521922964,4.186181572997214,2.0629836450939454,7.0657036732344505,13.314868891325611,6883.448855198339,4921.909635934282,2559.0885749440295,81.0,37.0,46.0,57.0,64.0,67.0,67.0,76.0,79.0,413.98602378800035,27.0,4.859812404361672,5.68697535633982,6.546785410760524,7.388327859577107,8.25088114470065,9.098179005087852,9.962275194019217,10.81249180235931,11.677617531494358,0.9059829059829057,0.9924102564102568,1.1103688588704084,0.8883374001182681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7848472593274992,0.9940673705379584,1.0239415840289845,0.7278703700804249,9.0,1.0,0.0,0.0,0.0,0.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,9.303962601591405,6.103966387748303,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,58.53649369785329,29.828919765543436,38.04767188988845,19.478958445190035,328.51682190777126,-502.1803108763361,-28.507124437754342,-12.876418227598363,-35.87002220545258,252.70440332070055,386.29125620555163,16.343117229934215,9.904904005270554,15.451650248222064,0.5,0.957879619806503,0.2399971331435456,6.986644646881099,0.06823258946755767,209.63165541238465,0.042120380193496586,6.0,0.2222222222222222,0.3287674860052745,0.642708508230699,0.8180291559944727,0.9029741746067333,0.9417845047640401,0.9708922523820199,6.454800000000002,,3.1239495798319323,1.1234808860066399,1.1502770071753545,3.1790050051744934,-1.1828780841890265,1.3532412500193676,1.3681574770905907,-0.7044892155944456,102.68100000000003,4.736862953800049,0.0,9.551078168738563,0.0,19.255604758173796,0.0,86.33664586711966,0.0,0.0,4.007333185232471,0.0,5.313205979041787,2.3978952727983707,6.796823718274855,4.442651256490317,8.366137716496281,6.259581464064923,9.980217085394802,35.33333333333332,16.021967512917488,4.065089053629818,0.0,0.0,0.0,0.0,3.9934040695700475,1.929634248761233,38.704000000000015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.30438549594593,0.0,0.0,0.0,9.551078168738563,17.888501324225544,0.0,17.230869371142294,55.11920962876035,20.090533254965305,0.0,0.0,34.645158604612455,30.60904311377247,31.545958943422978,255.99351779772894,,190.8621960653604,197.1901173825247,200.97873439138988,190.66925604731165,280.2656612562554,197.78594506083763,198.57529664054636,244.76923990774714,31.545958943422978,255.99351779772897,,187.98816245191506,196.15651496739855,199.92047954478852,187.74457144255115,280.97538810676883,196.54096311081975,197.316591761623,245.1919334371038,4.730186415363823,180.90380762238638,,137.34196658560865,140.03649027699709,144.28012472487706,137.25299457415989,212.48292612144448,140.8846495276984,141.5106255222462,179.3632579531043,1.2618383577369192,10.239740711909157,,7.634487842614416,7.887604695300988,8.039149375655596,7.626770241892466,11.210626450250215,7.911437802433506,7.9430118656218545,9.790769596309886,2.3696304692047625,127.99675889886441,,95.55605601587348,98.63999792670262,100.53537827598197,95.4617882238628,139.89625501128992,98.94710218041959,99.34237461935679,122.24372211075467,38.768627450980375,0.0,0.0,24.53900865365617,0.0,0.0,0.0,39.933721777130394,0.8897644067915234,0.0,6.125288170823886,0.0,-0.28637833837238635,0.0,0.0,0.0,0.0,28.38694443313657,556.7399662453186,67.76906760085961,132.4819460438831,168.62091153130075,186.1306865356277,194.13068653562772,200.1306865356277,626.0,126.28334570870051,24.481258983153147,72.56384567779381,27.05,27.05,1.0,8.00289278758841,5.754887502163468,4.458774076871822,4.923807477867205,,4.941523920911608,4.930897774268163,4.934275172606181,4.941721127283828,4.948546735747879,4.933237289531607,4.933714156880974,4.939754136023339,0.17835096307487286,0.19695229911468823,,0.19766095683646434,0.19723591097072654,0.19737100690424725,0.19766884509135313,0.19794186942991515,0.19732949158126428,0.19734856627523897,0.19759016544093355,2.4111645894657228,2.5103728407047745,,2.5139645015164547,2.511811807663805,2.512496519120595,2.5140044087273523,2.5153846766113412,2.5122861554484164,2.5123828149591736,2.5136062917996553,272.29,171.14654196038464,145.15611182970773,,142.71394803857623,144.4870661695451,144.08564193488755,142.66893590506936,142.0944353783042,144.17070217354072,144.10223868601858,143.35397273070296,6.845861678415385,5.806244473188309,,5.70855792154305,5.779482646781804,5.763425677395502,5.706757436202775,5.683777415132169,5.766828086941628,5.764089547440744,5.734158909228118,6.058810891915788,5.894100528449072,,5.877132995368534,5.889480727943412,5.8866985903239355,5.8768175445379995,5.872782606311104,5.8872887611414075,5.886813770400999,5.881607637322856,8.054922419585118,4.065089053629818,2.2881851682235,1.7052189013465475,0.0,10.701039532212572,5.03454964233253,0.8897644067915234,0.0,320.65116481856853,190.9409497373985,-291.87785557315897,-16.56894579345209,-7.484047578798949,-20.848418255225642,146.8771629186875,224.52067722683626,9.498966620434913,5.75694044171375,8.980827089073449,1547.0,35.0,1.7222950320338768,1.0794293029847941,0.0,0.0,0.2821175568066727,0.1454260442533386,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.03849001794597505,0.2381448361039201,0.07532907513005968,0.4184873245731758,0.1557216634692471,17.811190308942127,16.025965411843863,12.024877143252588,9.00106545046163,10.93856516363914,7.14796178131832,8.731578360167086,4.849713005833394,7.155158681451093,3.412008337033824,4.943332624680732,2.0357661761626353,3.551957697729344,1.2874236991602601,2.170807218076247,0.6184448379107801,3.5257115293866654,1.8838012698623459,5.347430631849492,2.441992946049682,7.143143372291755,2.843802311927673,90.10484267301638,62.747858597868564,49.49990978445603,38.33438777818186,33.27992282608611,31.932065505527234,128.0,147.0,51.117101999999996,20.670897999999998,0.5384615384615384,129.07,8.13888888888889,5.499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,17.0,39.0,0.0,0.0,41.0,17.0,0.0,8.0,33.0,17.0,27.0,24.0,0.0,0.0,0.0,18.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,3.0,0.0,1.0,25.0,7.0,0.0,2.0,1.0,0.0,3.0,6.0,0.0,0.0,4.0,1.0,3.0,3.597312260588446,6.6888605013323135,4.193435464866331,4.6993433560053415,5.189130093741584,5.531411248715415,5.582556017222057,5.644120930598134,6.0000990373749925,6.352466055454041 +36314,CC(=O)O[C@H]1C(=O)[C@]2(C)[C@@H](O)C[C@H]3OC[C@@]3(OC(C)=O)[C@H]2[C@H](OC(=O)c2ccccc2)[C@]2(O)C[C@H](OC(=O)[C@H](O)[C@@H](NC(=O)c3ccccc3)c3ccccc3)C(C)=C1C2(C)C,0,23.787610619469028,6.385087610619471,3.5132743362831858,8.424778761061948,161.04153144700618,93.91133640707959,1.4510479128079554,6.436898230088497,5.860865290068829,7.913022796460176,219.14469379574007,25.218487394957982,6.417680672268908,4.352941176470588,7.546218487394958,144.118725475429,95.79444369747897,1.8056648641008397,6.561777310924369,3.2865896358543423,7.8471474957983185,269.1159976480219,22.431924882629108,6.380347417840375,4.112676056338028,6.323943661971831,150.50835728590016,84.41272897183099,1.5742080187315912,6.489544600938967,3.340082159624413,7.8619394366197195,231.75627428378056,20.649350649350648,6.4663766233766236,3.7564935064935066,5.525974025974026,153.2432488242915,76.03504321103894,1.4516518542776848,6.556024675324675,3.510055916305916,7.9733166103896105,212.3053331808543,19.00493827160494,6.442790123456791,3.3358024691358024,5.098765432098766,156.72762119661024,69.1785324962963,1.3139817126092643,6.516284197530865,3.4634430727023315,7.97988686419753,191.42110770356078,18.316326530612244,6.466246938775511,3.0387755102040814,4.993877551020408,160.16033737812688,66.74703946734692,1.2212956274182796,6.519410000000001,3.78562925170068,8.031002457142856,178.5626224307606,18.34165067178503,6.493573896353167,2.9769673704414585,4.690978886756238,159.209503077241,66.46221324760077,1.2503360524429343,6.5501443378119,3.992802303262956,8.054515147792705,182.55573309350578,17.163375224416516,6.435122082585279,2.6983842010771992,4.206463195691203,158.1250667023419,60.9079031956912,1.2424710633584166,6.496048473967684,4.123703371234789,7.995598104129263,175.9673996193986,13.933006535947712,6.147568627450981,2.3937908496732025,3.287581699346405,163.19130057716868,48.63414450980392,1.1057424756070882,6.197093300653595,3.3649918300653594,7.768932078431371,150.2796766042175,7.787610619469026,0.16734676168846427,0.02634337201192688,0.774688699193359,4.424778761061947,1.3565986072325884,36.80616366653614,0.2308159784152665,0.15366833737959115,2.3576739673340805,0.11242096264390315,49.195697192935334,0.21008403361344538,-0.008501710747733943,-0.013706868636544137,0.3329933116640815,1.2436974789915967,0.004927832932242988,1.0531578597522613,0.004467241767252474,-0.006247723116186645,-0.2119852346138549,-0.007213595647547128,2.109182586067248,0.9107981220657277,0.01858959628236962,-0.00028486237661992886,0.014251431264907008,0.2300469483568075,0.031154102531962994,4.263736650344501,0.008349034810841597,0.017874830180340705,0.13495053583043143,0.011105709340807424,3.4858794273619687,-0.5064935064935064,-0.005328576997049428,0.0017145735903173428,-0.022303915835124154,-0.38961038961038963,-0.10040983086216897,-2.419242013364085,-0.015012866301939133,-0.0055518478956237535,-0.08810246214310745,-0.002980789905137511,-3.6856000650186704,-0.4222222222222222,-0.010776443759916194,-0.001535720654497356,-0.030233329369257482,-0.08148148148148149,-0.1547198695657767,-2.023944187043074,-0.027001922146804233,-0.009154269860744847,-0.2019824514983508,-0.008441874781999965,-4.318605934167256,0.44693877551020406,0.005660890469744202,0.0013327126575587679,-0.0484470520920405,0.09183673469387756,0.03683816027942234,2.117094597054252,0.007843823856820599,0.005899058322052351,0.06343001998355924,0.0032058545495228814,2.4773898112587838,-0.2763915547024952,-0.009327900750513018,-0.0012302233526775448,-0.12253915695837851,-0.5143953934740882,0.02916397244256016,-1.2585627873555294,0.004366519677646989,-0.008642780672781541,-0.10060201207068037,-0.005762450388709772,0.09070560573176627,-1.3213644524236985,-0.0062164841269383335,0.0007511342840078317,-0.053505368772806344,-0.40754039497307004,-0.16491372257651965,-6.339029591005085,-0.03228749891505226,-0.008441402631175937,-0.014404300326707892,-0.0009884535957469548,-9.192981547178382,0.14869281045751634,-0.0021183722500930408,0.00013449036870443707,0.03798120652704131,0.0915032679738562,0.0970907246741338,0.7631407980945439,0.017506932035378453,-0.001869783385722287,-0.07085142120648609,-0.0012674247874626967,2.9555375291331623,,,0.46075268817204296,1.0846774193548387,0.45161290322580644,0.0,0.6330645161290323,-0.1814516129032258,1.6166408151303047,0.02648263927737061,0.03619231669672545,1.389634504724766,0.211308570653553,0.2608251378492876,3.0062753198550705,0.4721337085028406,2.026456173682485,1.5738724988311,0.03290074650612979,0.41968292834525583,0.0,0.4525836748513856,7.55160137444249,2688.0,721.5149000000002,397.0,952.0,18197.6930535117,10611.981013999994,163.96841414729897,727.3695000000001,662.2777777777777,894.1715759999998,24763.35039891863,3001.0,763.7040000000001,518.0,898.0,17150.12833157605,11399.538799999997,214.87411882799992,780.8514999999999,391.10416666666674,933.8105519999999,32024.803720114607,4778.0,1359.014,876.0,1347.0,32058.280101896737,17979.911271,335.30630798982895,1382.273,711.4375,1674.5931000000003,49364.08642244526,6360.0,1991.644,1157.0,1702.0,47198.92063788178,23418.793308999993,447.10877111752694,2019.2556,1081.0972222222222,2455.781516,65390.04261970312,7697.0,2609.3300000000004,1351.0,2065.0,63474.68658462715,28017.305661,532.162593606752,2639.0951000000005,1402.6944444444443,3231.85418,77525.54861994211,8975.0,3168.4610000000002,1489.0,2447.0,78478.56531528218,32706.049338999994,598.4348574349569,3194.5109,1854.9583333333333,3935.1912039999997,87495.68499107269,9556.0,3383.152,1551.0,2444.0,82948.15110324256,34626.813102,651.4250833227688,3412.6252,2080.25,4196.402391999999,95111.5369417165,9560.0,3584.3630000000003,1503.0,2343.0,88075.66215320445,33925.702079999995,692.056382290638,3618.299,2296.9027777777774,4453.548143999999,98013.84158800502,8527.0,3762.3120000000004,1465.0,2012.0,99873.07595322724,29764.096439999998,676.714395071538,3792.6211000000003,2059.375,4754.586431999999,91971.16208178112,880.0,18.91018407079646,2.9768010373477374,87.53982300884957,500.0,153.29564261728248,4159.0964943185845,26.082205560925114,17.3645221238938,266.4171583087511,12.703568778761056,5559.113782801693,25.0,-1.0117035789803392,-1.6311173677487523,39.6262040880257,148.0,0.5864121189369156,125.32578531051908,0.5316017703030443,-0.7434790508262107,-25.226242919048733,-0.8584178820581082,250.99272774200256,194.0,3.959584008144729,-0.06067568622004485,3.0355548594251927,49.0,6.6358238393081175,908.1759065233786,1.77834441470926,3.80733882841257,28.744464131881895,2.3655160895919813,742.4923180280994,-156.0,-1.641201715091224,0.5280886658177416,-6.86960607721824,-120.0,-30.926227905548043,-745.1265401161382,-4.623962820997253,-1.709969151852116,-27.135558340077093,-0.9180832907823534,-1135.1648200257505,-171.0,-4.364459722766059,-0.6219668650714292,-12.24449839454928,-33.0,-62.661547174139564,-819.697395752445,-10.935778469455714,-3.707479293601663,-81.80289285683207,-3.418959286709986,-1749.0354033377387,219.0,2.773836330174659,0.6530292022037962,-23.739055525099843,45.0,18.050698536916947,1037.3763525565835,3.8434736898420936,2.890538577805652,31.080709791944027,1.5708687292662118,1213.9210075168041,-144.0,-4.859836291017283,-0.6409463667450008,-63.84290077531521,-268.0,15.194429642573843,-655.7112122122309,2.274956752054081,-4.502888730519183,-52.413648288824476,-3.0022366525177913,47.257620586250226,-736.0,-3.462581658704652,0.4183817961923622,-29.802490406453135,-227.0,-91.85694347512144,-3530.8394821898323,-17.98413689568411,-4.701861265564997,-8.023195281976296,-0.5505686528310538,-5120.490721778358,91.0,-1.296443817056941,0.08230810564711548,23.244498394549282,56.0,59.41952350056988,467.0421684338609,10.714242405651614,-1.1443074320620397,-43.36106977836948,-0.7756639699271703,1808.7889678294953,0.7248422235980644,0.5682701373632808,0.43047485187023704,0.30107132291660355,0.272192473380455,0.16527657429758488,0.16278852996644957,0.08927056393935268,0.09718089458262445,0.048091462767646725,0.059651454193215325,0.025656084582001012,0.03492160159705209,0.014285508930987364,0.020634768717817567,0.007392885226749892,8.039798625386231,5.693824006487955,3.5678076108365384,2.1934730275194694,0.48061783174208816,-0.48770360947158786,4.11819636132376,0.9714662173207522,6.03757572707471,0.9919243263663173,14.540311970783609,10.954335864112425,16.024845357348838,11.704993593435905,2.009558154287472,0.7401901558613108,3.51448030992776,2.2433472146991487,7.013768901427246,1.0692951819053658,3.7272643448755853,2.4393090158230333,20.914710948810395,14.699768798616676,0.2088558566458878,0.5370077001068683,0.7346303764233031,0.8360867933198306,0.8896006724030203,0.9080516584280455,1.3087747649378922,2280.346269552866,0.0,5.0,7.0,0.0,16.0,9.0,5.0,3.0,2.0,5.342144578568156,3.0198744945625076,1.621335256475434,0.9033469029611965,0.5246390488065868,0.39406482312372226,259.7423825657545,6917.667154719638,107.71789311577763,61.21829340459858,127.5226972030679,,19.0,2007.0,112.60409521300997,39.292268104881224,35.30081563097145,5.563451491696996,13.847474399381248,25.980208536304467,92.71024628938218,0.0,5.316788604006331,23.684314769000245,28.566666666666663,67.25,28.0,0.0,39.25,0.0,0.03924731182795705,-11.25,0.17546536466280221,0.04781866169849436,-0.12764670296430786,0.03512544802867401,0.19016136919315463,0.0,0.6179941002949845,0.8795698924731191,0.44252873563218226,0.5701754385964901,0.8444444444444451,100.23173053807889,1.641923635196978,2.243923635196978,86.15733929293549,13.101131380520286,16.171158546655832,186.38906983101438,29.272289927176118,0.5238386308068453,0.21003500583430573,0.07001166861143525,0.3325554259043174,0.44680851063829785,0.38044595060942804,-2.422724851966986,-0.06018532482520139,-0.02144004293776094,-0.06547905005316176,0.619554049390572,3.945393531435638,0.03897531416333106,0.034914987003855216,0.05191307278204789,-6.5326062568672505,0.7679144385026738,0.7392642756450423,1.5164691399713348,0.9246212031112484,0.496,1.1815009179522504,0.774309962792131,1.1278242978211015,0.7210374405297895,0.7005329090396433,0.7752082663476714,0.9850017933788451,0.7612462654716176,0.7179091105831978,1.0306702753012977,1.5256906040637948,0.868131455399061,1.08466145316272,0.7667307146031846,1.0459160553271132,0.7064281278193564,0.6082148155738583,0.7451655711372673,0.9388957470027971,0.9977272727272728,1.0395197115646666,1.1203633281465744,1.4642686468404218,1.0796363636363635,1.146554438896371,0.9984534709838353,1.1077430491712927,1.0281140456116287,0.9297288081710273,1.060674885797759,1.0523199506358405,1.032794612794613,1.1562047915685827,1.3261198591527568,1.3362807206721479,1.0422913580246913,1.1491010041319871,1.0314186225932453,1.121031874955784,1.135782991790526,1.0959493002262253,1.1885809176930846,1.0514993500234282,0.9751948051948053,1.1808137684270164,1.3148681033634704,1.2807232395586619,1.1028571428571428,0.9565247323170074,0.9698916549980956,0.9372417108700426,1.15808542593458,1.0343696001908662,1.2133273309599257,0.899711910656106,1.0617867736869657,1.2838493355953764,1.361130542656264,1.40711391279174,1.2412437619961614,0.9683440174528513,1.0550594483829385,0.9603902676608924,1.2632069499112772,1.3081005320471872,1.3133914874334325,0.9455678034009243,1.1740166476252651,1.1876225792310005,1.0875254938164745,1.111738190772733,1.144330341113106,1.119686836169797,1.1729572784818212,1.1316570582323033,1.1889900992376812,1.2649694833625054,1.187412658012905,1.1468212676846645,1.0143345216874629,1.0576740918981165,0.9710550579596366,0.8278585190647224,0.9893333333333334,0.8725259856645792,1.0112325562485072,0.8839631870058843,1.0603937116140176,1.065253587636962,1.050910196440589,0.9277144057419456,16.5,0.9583715947352311,11.000000000000007,8.3125,7.648888888888889,6.291666666666666,4.194285714285714,2.734375,1.8606701940035273,1.4437500000000005,16693.736127420747,18719.413252772632,5969.180477970771,5439.93882205414,20.96970109186075,0.4669823053146985,11.177221734223467,0.8761103242368136,0.0,0.44680851063829785,1.4780343838470311,3.8003044678526803,5.198843705939754,5.916832059453991,6.295539913608601,6.426114139291466,0.24264705882352938,0.007920426402770506,0.10679611650485443,0.06443798449612403,0.05133482475764356,0.03679337231968811,0.023045525902668756,0.015897529069767442,0.012241251276338995,0.010774253731343286,0.5718883432847285,49.892301038062286,19.918367346938776,9.3153809043463,357.88540739081833,0.0,5.068341867668806,494.8222208219407,,425.2349328989018,419.2749076065041,432.2305787462012,425.3399653075472,619.00961734352,423.51410494067363,425.51287716381717,523.7586628827157,0.02697669977081742,-0.05080295944752657,-0.5203156463925117,0.42984144729464785,0.28107563025210086,0.0036324915166289218,0.028613627578627097,0.019354127031948165,-0.04065719212379799,-0.08991287071534976,-0.06416593024911567,0.04287331426151907,0.11695475885616731,0.1110842904565811,-0.010813436354729315,0.018396332978325672,0.0519906103286385,0.022964864010524253,0.11584300632290712,0.03617182340739276,0.11632084061784533,0.05723884544690697,0.09878681946520151,0.07085740473787924,-0.06503837072018889,-0.03184153038449111,0.0650855778653194,-0.02879081088745454,-0.08805194805194806,-0.07401587346975193,-0.06572926304633155,-0.06504257809625784,-0.03612876920708521,-0.03736838229703514,-0.026514538170067575,-0.07491712233621796,-0.05421717171717171,-0.06439589061172164,-0.058296282412215995,-0.039026423646992395,-0.018414814814814818,-0.1140498514010711,-0.054989273138597354,-0.11698463135955188,-0.05957160737759524,-0.08567022170870417,-0.07509164290595752,-0.08778422058397868,0.05739100185528757,0.033827308115364774,0.05059005570567756,-0.06253744522475385,0.02075510204081633,0.027154797360857418,0.05752011038789942,0.03398301933286693,0.03838824850092906,0.02690364353273247,0.028516519287221584,0.05035785551616383,-0.03549118827429768,-0.05573995371286602,-0.04669953991161667,-0.15817857816432826,-0.11625335892514395,0.021497864060212767,-0.034194348499835756,0.018917753041304098,-0.056243080521084614,-0.042670027096424715,-0.05125779261437665,0.0018437711203896077,-0.16967520809531583,-0.03714732250696941,0.028513217050108768,-0.06906692821067166,-0.09210412926391383,-0.1215641249351845,-0.17222739235842927,-0.139884158526335,-0.054932608597983365,-0.006109538692067517,-0.008792431344658664,-0.1868655608462141,0.01909350861556744,-0.012658579280049893,0.005105282977575801,0.049027701793751564,0.0206797385620915,0.07156923511236336,0.02073404892203925,0.07584800738483241,-0.012167655468956842,-0.03005140752629199,-0.011273918650539432,0.06007715507195999,19.853404465617793,46.26380800815743,33.64711740371416,13.66204869816887,36.01824223067947,45.25368406482309,49.12083828678277,50.62038135409191,50.94674353641208,125.64028276831407,97.5800949275282,2.0398462833800473,26.02034155740586,0.0,28.060187840785908,24427.42972444494,23548.741800522996,9253.563133951258,838.0,105.0,151.0,210.0,298.0,375.0,465.0,563.0,700.0,853.3309553120014,68.0,5.849324779946859,6.755768921984255,7.704811922932594,8.647694999480395,9.61146273065021,10.572777396565506,11.54745248766479,12.520412471588006,13.503170972306132,0.6666666666666665,0.99741592920354,1.1222303473736022,0.6291563117289979,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6614617296380688,0.982994967898664,1.0170996912645263,0.6334669028710178,15.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,6.0,0.0,0.0,0.0,3.0,3.0,1.0,5.0,0.0,8.0,0.0,4.0,0.0,0.0,44.32068555752869,23.912949974228596,23.592228532845233,0.0,5.907179729351506,19.178148736287287,9.589074368143644,0.0,0.0,80.57751215245895,54.82260322506321,37.66755960632704,35.649037188664344,413.27725055115934,-2631.798456676931,-65.37913080016699,-23.29025182899939,-71.12968801829541,673.0196331169138,4285.868698042707,42.338762315610644,37.928041575599195,56.393009184772495,0.47368421052631576,0.7878436984711933,0.07156539757197689,2.3429963955104802,0.05307913774573183,11.571559565105193,0.21215630152880666,10.0,0.14705882352941177,0.21671489736445623,0.5572147723388922,0.7622737958328765,0.8675479180327403,0.9230754718171208,0.9422207503211654,3.735700000000003,,3.642857142857143,4.185667752442996,2.6491281877538646,3.6322182858638996,-15.670301518929946,3.7832772337821297,3.6191901961772186,-5.905247321055788,217.69009999999938,67.77112005795328,0.0,5.316788604006331,16.747886984954953,108.25180722160088,6.606881964512918,118.83206956215372,0.0,0.0,4.919980925828125,0.0,6.336825731146441,0.0,7.96102146588337,0.0,9.692581318886397,0.0,11.493304221223058,75.33333333333331,24.27430308654666,0.0,0.0,0.0,0.0,0.0,0.6898964973347581,0.0,112.70800000000003,0.0,83.45331184567333,0.0,0.0,0.0,0.0,0.0,-5.119051295789378,126.81202925321705,5.316788604006331,0.0,0.0,105.32000992501608,42.86246350528753,16.747886984954953,86.70533611637835,102.14171508706272,0.0,0.0,0.0,71.09466322537676,74.74517544910178,78.42733716986142,992.1092033294947,,851.4979598863554,839.5504378261903,865.5399272164259,851.7085653974075,1245.29227740766,848.0489841178219,852.0550799404709,1050.9915054549467,78.42733716986142,992.1092033294947,,848.0901257849732,835.6348131545501,863.0617105246563,848.3106837751473,1254.8499963080426,844.5097892862194,848.6693858859828,1054.6108505872064,5.459944246157157,691.0156576078411,,599.4119049809667,590.982318688998,609.169630770688,599.5600131406222,874.370096042822,596.9700379532654,599.8059469269588,739.1084671984252,1.2649570511267971,16.001761344024107,,13.733838062683152,13.541136093970811,13.960321406716547,13.737234925764637,20.085359313026775,13.678209421255191,13.742823870007596,16.951475894434626,2.7299721230785785,494.8222208219407,,425.2349328989018,419.2749076065041,432.2305787462012,425.3399653075472,619.00961734352,423.51410494067363,425.51287716381717,523.7586628827157,111.07843137254903,0.0,8.286407581012057,0.0,0.0,0.0,37.511076210251176,114.93226511289147,-1.0641753774285918,2.722876220320356,30.27238288139994,0.0,-12.65014846437359,0.0,-7.876879184946717,0.0,0.0,71.58176002442501,855.8321544667864,167.01788537471452,429.4344048673529,587.4693387711922,668.602022718301,711.3960102377719,726.1508977399357,3835.0,216.71287668311874,230.46472920128673,102.4037136629674,221.29,221.29,0.9,8.933878450876865,7.087462841250339,5.220230167069964,7.742516497566268,,7.7562368998194975,7.756676586545915,7.758652928310442,7.756238372705591,7.741040784759652,7.756514391912192,7.756200631442282,7.749089150616403,0.08419726075919297,0.12487929834784303,,0.12510059515837899,0.1251076868797728,0.12513956335984586,0.1251006189146063,0.12485549652838149,0.12510507083729341,0.12510001018455294,0.12498530888090972,3.4770907862819342,3.87127605569427,,3.8730465730366124,3.8731032595806223,3.873358019464816,3.873046762933591,3.8710854389278286,3.873082349036305,3.8730418969981573,3.8721245995565106,620.4300000000025,19325.312926913088,580.4864494510472,,574.8462458710433,574.5648569229788,574.8799755389069,574.8502378249441,582.8526981312069,574.7497718282939,574.860930797946,579.1449718403754,311.6985955953724,9.362684668565278,,9.271713643081343,9.267175111660949,9.27225766998237,9.271778029434582,9.400849969858177,9.270157610133772,9.271950496741065,9.341047932909282,11.69372035823006,8.188415750024289,,8.178651898605905,8.178162275784267,8.178710572866342,8.178658842967234,8.192483784609582,8.178484058701294,8.178677444113841,8.186102121427412,30.27238288139994,83.45331184567333,40.233952430571534,-7.01908503282536,-6.841158827712649,22.937711636968977,-10.511556872841574,7.974441938765803,0.0,794.1491465895612,448.94178936463385,-2858.9144619305944,-71.02114604514874,-25.300127981686682,-77.26795843055659,731.0991301023334,4655.725810494336,45.9924655618111,41.20111336720652,61.25955013808339,14767.0,129.0,6.235126812295467,3.4501136346717964,0.42595801811164313,0.302089402224566,3.070636304998979,1.394955892999391,0.7711110059212487,0.3587923479548688,0.0,0.0,0.14433756729740643,0.08333333333333333,0.2874574785652648,0.14105877840333636,0.771877832735229,0.3363451363140954,1.253853514361847,0.5885048583832783,44.940217863079994,35.23274851652341,29.272289927176118,20.472849958329043,28.580209704947777,17.354040301246414,24.581068024933884,13.479855154842253,20.407987862351135,10.099207181205813,17.776133349578167,7.645513205436302,13.095600598894533,5.357065849120262,9.59516745378517,3.4376916304387,15.989319434428387,8.03319136856164,26.550085611199997,12.308308602383697,48.945106734990375,19.890649761277288,217.09104285404544,98.393576961913,55.196582339876564,37.222421701832054,31.413005727705936,30.064573753791723,346.0,429.0,124.82444299999997,65.62155700000011,0.3805309734513274,842.15,23.36111111111111,13.215277777777773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,18.0,18.0,113.0,0.0,0.0,119.0,18.0,7.0,16.0,103.0,25.0,68.0,94.0,0.0,0.0,2.0,47.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,51.0,14.0,4.0,1.0,62.0,15.0,0.0,1.0,14.0,0.0,7.0,10.0,0.0,0.0,0.0,0.0,3.0,4.442651256490317,7.572728011140437,4.993828175779875,5.469114437490037,5.914516005893729,6.3759826233387695,6.500256855087799,6.787422119522251,6.999821566689404,7.320609685522156 +84029,CC[C@H]1OC(=O)[C@H](C)[C@@H](O[C@H]2C[C@@](C)(OC)[C@@H](O)[C@H](C)O2)[C@H](C)[C@@H](O[C@@H]2O[C@H](C)C[C@H](N(C)C)[C@H]2O)[C@](C)(OC)C[C@@H](C)C(=O)[C@H](C)[C@@H](O)[C@]1(C)O,0,19.15702479338843,6.116817355371903,2.834710743801653,5.735537190082645,166.9389280936833,75.0076452561983,1.2084970449138925,6.149862809917357,4.154212580348944,7.718079074380165,175.99020583443843,21.333333333333332,6.342073170731708,3.5528455284552845,4.951219512195122,147.82251458457802,78.63130447154474,1.5713264397886177,6.465004065040647,2.781391147244806,7.815256910569105,227.09414411160472,17.843220338983052,6.2780423728813535,3.2796610169491527,3.8686440677966103,158.5966617396634,65.11151121610169,1.2789207156400586,6.35081906779661,2.627412900188323,7.835449644067797,183.31690933113214,17.119402985074625,6.413632835820896,2.916417910447761,3.388059701492537,158.81717829074086,60.957121910447725,1.2266994363383763,6.473805373134329,3.1642620232172467,7.976736310447765,174.30244312064738,14.111842105263158,6.258195175438597,2.508771929824561,2.616228070175439,162.66672583385176,48.61579304824561,1.110927626916241,6.304607236842106,2.932748538011697,7.870845999999998,151.61280342716336,13.014953271028038,6.062966355140187,2.3869158878504675,2.2878504672897195,162.85857401966337,44.69427863551401,1.0747846662259066,6.116776822429908,2.7364745586708215,7.690863491588785,142.9742135852446,12.556478405315614,6.087315614617941,2.377076411960133,2.340531561461794,165.25609705971866,43.02501152491695,1.0418637879305912,6.128171096345515,2.7068452380952377,7.734391720930234,138.72272654925055,13.424390243902439,6.043478048780488,2.4211382113821136,2.3853658536585365,161.49130055470593,46.40803519837399,1.1139001436881282,6.105031219512195,2.6209914182475162,7.659841255284556,148.3099718068179,11.919831223628693,6.043426160337554,2.1645569620253164,2.050632911392405,165.25786572044436,40.1599402925457,1.0129466213172877,6.085622784810125,2.7187646507266763,7.688713372714486,132.00059356997082,7.7873096099993155,0.1579732258725497,0.020105760475405268,0.6948978894884231,3.8534253124786555,1.1993251074882385,36.796447571887164,0.20858436532164554,0.14695784440953477,1.5681410271004559,0.10358090731507408,47.13059830485061,0.29990398940940494,-0.0038837277874861405,-0.008919804815769749,0.34091478268788583,1.3568817492696466,-0.20453834998700532,1.3938592185448844,-0.022604674233600512,-0.0012188872100454859,-0.21522112221270195,-0.00573354643353137,-1.3425722378862506,1.2090134044284744,0.0063798102669656905,-0.0017657502992424817,-0.028873236175634035,0.28640519599592046,0.08585770897914963,5.757489524449864,0.016238089616967415,0.008941101521267777,-0.0015705651621205066,0.001140535323951001,6.821763810675593,-0.24752917333963984,9.185615532752108e-05,0.0017161750620728286,-0.07015384113514801,-0.2583839901646064,-0.0800234292546885,-1.217675355481581,-0.01526634007178895,-0.0002075397345625782,0.05428472293723429,0.00021199304264150976,-2.944443595339266,-0.7246193098688254,-0.011993887029574431,-0.0006411159386779181,-0.038181201073169926,-0.3243728258902842,0.023606956256604424,-3.3892125566993982,-0.000394089477586111,-0.01226629917247524,-0.12314204404824332,-0.006503941677840478,-2.2270215603970036,-0.12621437558207743,-0.0018724782089982715,-0.00012467704640820227,0.017993127735644404,-0.06113366190323296,-0.07791501303316078,-0.6268913176506609,-0.01368567645816705,-0.001403708316231389,0.03877273670583108,-0.001700065730150944,-2.072451745100874,0.059633087894755105,-0.004759460462484046,0.00028371317231248226,0.01668334112029182,-0.07537144245861244,0.13821100586524157,0.36939162706398976,0.024272850270001634,-0.004565848033817547,-0.04925168441354469,-0.00247802502189158,3.6183450684866987,-0.07023643926760945,0.0012860645930822493,-0.00029824631887646685,-0.06057685206317267,-0.004376061655569142,-0.11796932364127989,-0.38474736446930313,-0.017973834594998593,0.0014603374086469584,-0.0335125919731296,0.00014555896188619055,-2.6627625992375594,-0.26159213606550236,0.0011452453761862462,0.0002963148367042788,-0.04085457951876082,-0.08841037600226938,-0.024738651710735787,-1.2689746790462126,-0.0067359477548172815,0.0002817413211901145,0.03375417152949514,0.001727988315570673,-2.01501507388381,,,0.45641025641025634,0.6875,0.057692307692307696,0.0,0.6298076923076923,-0.5721153846153846,2.120469263965395,0.03707758836483394,0.042039126826372404,0.8201164413293469,0.11506004419232357,0.3462126282577097,2.9405857052947417,0.4612726724500333,1.9609838162255353,1.4522616556261172,0.038724962869956206,0.46999719772946214,0.0,0.5087221605994183,6.177494969157041,2318.0,740.1349000000002,343.0,694.0,20199.61029933568,9075.925075999994,146.228142434581,744.1334000000002,502.6597222222223,933.8875679999999,21294.81490596705,2624.0,780.075,437.0,609.0,18182.169293903095,9671.650450000003,193.27315209399998,795.1954999999996,342.11111111111114,961.2765999999999,27932.57972572738,4211.0,1481.6179999999995,774.0,913.0,37428.812170560566,15366.316646999998,301.82528889105384,1498.7932999999998,620.0694444444442,1849.166116,43262.790602147186,5735.0,2148.567,977.0,1135.0,53203.75472739819,20420.635839999988,410.9443111733561,2168.7248000000004,1060.0277777777776,2672.206664000001,58391.31844541687,6435.0,2853.737,1144.0,1193.0,74176.0269802364,22168.801629999998,506.5829978738059,2874.9009,1337.333333333334,3589.105775999999,69135.43836278649,6963.0,3243.687,1277.0,1224.0,87129.3371005199,23911.439069999997,575.0097964308601,3272.4756000000007,1464.0138888888894,4114.611968,76491.20426810587,7559.0,3664.5640000000003,1431.0,1409.0,99484.17042995064,25901.056938,627.2020003342159,3689.1589999999997,1629.520833333333,4656.103816000001,83511.08138264883,8256.0,3716.7390000000005,1489.0,1467.0,99317.14984114414,28540.941647000003,685.0485883681988,3754.5942,1611.9097222222224,4710.802372000002,91210.63266119301,8475.0,4296.876000000001,1539.0,1458.0,117498.34252723593,28553.717547999993,720.2050477565916,4326.877799999999,1933.0416666666667,5466.675208,93852.42202824926,942.2644628099172,19.114760330578513,2.432797017524037,84.0826446280992,466.2644628099173,145.11833800607687,4452.370156198347,25.23870820391911,17.781899173553708,189.74506427915517,12.533289785123964,5702.802394886923,36.888190697356805,-0.4776985178607953,-1.097135992339679,41.932518270609954,166.89645516016654,-25.158217048401653,171.44468388102078,-2.780374930732863,-0.14992312683559475,-26.47219803216234,-0.7052262113243585,-165.1363852600088,285.32716344511994,1.505635223003903,-0.41671707062122565,-6.814083737449632,67.59162625503723,20.262419319079314,1358.7675277701678,3.83218914960431,2.1100999590191956,-0.37065337826043954,0.26916633645243626,1609.93625931944,-82.92227306877935,0.030771812034719563,0.5749186457943976,-23.501536780274584,-86.55863670514314,-26.80784880032065,-407.92124408632964,-5.114223924049298,-0.0695258110784637,18.185382183973488,0.07101766928490577,-986.3886044386542,-330.4264053001844,-5.469212485485941,-0.29234886803713067,-17.410627689365487,-147.9140086059696,10.764772053011617,-1545.4809258549255,-0.17970480177926662,-5.59343242264871,-56.152772085998954,-2.965797405095258,-1015.5218315410336,-67.52469093641143,-1.0017758418140752,-0.06670221982838821,9.626323338569756,-32.70650911822963,-41.68453197274102,-335.3868549431036,-7.321836905119372,-0.7509839491837931,20.74341413761963,-0.9095351656307551,-1108.7616836289676,35.89911891264257,-2.8651951984153956,0.1707953297321143,10.043371354415676,-45.37360836008469,83.20302553087542,222.37375949252183,14.612255862540984,-2.7486405163581633,-29.6495140169539,-1.4917710631787313,2178.2437312289926,-43.19541014957981,0.7909297247455833,-0.18342148610902712,-37.25476401885119,-2.6912779181750226,-72.55113403938714,-236.6196291486214,-11.053908275924135,0.8981075063178794,-20.610244063474703,0.0895187615600072,-1637.598998531099,-185.99200874257218,0.814269462468421,0.2106798488967422,-29.047606037838943,-62.85977733761353,-17.589181366333143,-902.2409968018571,-4.789258853675087,0.2003180793661714,23.999215957471044,1.2285996923707485,-1432.675717531389,0.7628938353551015,0.651903533735868,0.44418849939632843,0.3496830204391251,0.2828728876472038,0.2003791669002866,0.18456565032094915,0.11153477999579534,0.11201268016771314,0.06553431486927169,0.06943988460859851,0.03328024656327893,0.041165991041467016,0.018562116168949323,0.0258024335873348,0.010031014428549546,8.032999937935962,5.773201467684145,3.558094501339151,2.269628261187052,0.4364183145582958,-0.4903822686427907,4.02929665157333,0.977235261909871,6.030160798007081,0.9874757014817701,14.544563191658458,11.03407443275395,16.020434454037638,11.786113147960528,1.9278587359841979,0.7412581318251018,3.5041508941879647,2.3187998910141396,7.009377044615488,1.117688050095019,3.7170635475352394,2.5149475453344334,20.826566822117165,14.700267234747434,0.1995198759085256,0.3932915939146782,0.6690751747303061,0.832083499831255,0.8786917351828971,0.8881832295756991,2.211918012209636,1187.5764542086654,0.0,1.0,12.0,0.0,1.0,13.0,0.0,7.0,0.0,5.529050821193257,4.179278833094026,2.2582298998806882,1.122749070623411,0.7980861572751099,0.7319704547957713,477.7265206439234,5256.374876936097,78.60267012015197,43.44111468542229,88.13971298255362,,14.0,1218.0,101.75190007845703,30.015183947506465,37.19151703203923,6.4208216229260096,0.0,21.14333228224569,48.46616039783436,32.842728095586104,0.0,33.15804067660034,23.73333333333333,35.75,3.0,0.0,32.75,0.0,0.04358974358974364,-29.75,0.12073365231260008,0.0,-0.12073365231260008,0.0428113553113556,0.2065160370634358,0.0,0.5575757575757562,0.8993589743589749,0.4368421052631561,0.5575757575757562,0.8565476190476193,110.26440172620053,1.9280345949713649,2.186034594971365,42.64605494912604,5.983122298000826,18.003056669400905,152.91045667532657,23.98617896740173,0.5074839629365642,0.37921348314606745,0.06320224719101124,0.37500000000000006,0.9473684210526315,0.24980063058128435,-1.375361034737766,-0.04516183323778212,-0.011366620121799719,-0.04742624257716434,0.7501993694187157,4.130473884642983,0.03717120731513197,0.034136147806966805,0.044896455267858515,-3.092060604504545,0.9856898190081066,0.8570748575694561,1.452368682548559,1.1254896508076537,0.6078409502589125,1.6762900150718272,0.9968103606114226,1.5758582081455779,0.8415024767082566,0.9161486703608576,0.900793529474093,1.345549446612361,0.8952468816645474,1.0207937989337463,1.229480305180355,1.7446515378182332,1.1199725295028453,1.155054955976688,0.8958194024846524,1.1048638040961587,0.9905402268208829,0.7878360099546727,1.0627585339785037,0.9741947429658193,1.132679437900923,1.2524390171658764,1.2679403735753578,1.5251519090218255,1.3236994861912919,1.2567776012138232,1.131493043415174,1.232371665459131,1.2312842920002187,1.0718164992585026,1.291517520204172,1.1572154378977046,1.1679590595060811,1.302213554840143,1.3111668879152634,1.237817243127476,1.2696092699045285,1.057843471231472,1.163494363640724,1.0633912043791915,1.2908536216146531,1.30615390841114,1.3216641667107323,1.0769626065544167,1.0296531873688575,1.0411620272834514,1.1049672220570341,1.04703394579182,1.0621704546471051,1.1251107933347397,1.0307548234234858,1.1278087851428975,1.0346877934194587,0.9457352622718777,1.058471862286717,1.0812948702013858,1.0261207066311786,1.1598246789761668,1.0543268790671585,1.0834143706810464,1.1581410188237797,0.8814580227978682,1.0210948929252606,0.8844518126743857,1.1506643063285198,1.137768387229524,1.1741430490598779,0.9157348822170451,1.0081577487060855,0.9526102738542488,1.009483334908538,1.2612445880700203,1.014602673943362,1.1986588441504458,1.0118140562365825,1.1869251553998128,0.9507552585544634,0.9819408420035,0.9662980642888561,1.1222005524000067,1.0487349284738814,1.055104830014716,1.0266188235792062,1.0538155088796706,1.0880987349849296,1.0278754580581917,1.0484016017385218,1.0325920535993491,1.0549532165752802,0.9957533710109308,1.053550523032785,1.037630403314621,17.0,1.0985613712886437,10.444444444444446,7.0625,5.360000000000001,3.4236111111111103,2.8775510204081627,2.6006944444444446,1.8327034517510705,1.2650000000000006,13392.57418360079,16020.184176472523,4985.129438208644,4284.916830386147,15.23648552755194,0.44901618145232497,8.395056977216955,0.8149353326489259,0.0,0.9473684210526315,1.3898124160813374,2.739584404180569,4.660633337393906,5.796114166651184,6.120777079999485,6.186892782478823,0.3148148148148148,0.010171864548968925,0.12583668005354756,0.06790865384615385,0.048727272727272744,0.02901365348399247,0.02213500784929356,0.018186674436674433,0.013475760674640224,0.01072033898305085,0.6609907214184094,46.382716049382715,18.507766003774133,10.12396694214876,310.2792452855395,0.0,4.856832890679317,364.2545224161712,,323.2632188068702,317.44785528081263,333.7643197179924,323.3767211463684,511.8693560433996,321.7489895975962,323.5179156073065,419.18665797852555,0.038511887215106025,-0.02458472165795659,-0.44364423950444754,0.49059694646484514,0.3521235366559768,-0.17054454101721636,0.03788026590941366,-0.10837185327262275,-0.008294128257956423,-0.1372460247473104,-0.05535331348364207,-0.02848621248561734,0.15525431310398105,0.04038538956033487,-0.08782310429901259,-0.041550329353986414,0.07432483382211834,0.07158835285201566,0.15646862413013585,0.07784902570203488,0.06084126748859464,-0.0010015458654407715,0.011011057476854321,0.14474171888400383,-0.03178622473438058,0.0005814666049905773,0.0853573812426628,-0.1009556111715846,-0.06705306816973311,-0.06672371715979711,-0.03309219872659382,-0.07319024150370827,-0.0014122399208865426,0.03461724551497037,0.0020466420707888366,-0.06247413996940982,-0.09305130348719871,-0.07592354314047439,-0.03188717678508976,-0.05494505257639873,-0.08417778978091481,0.019683533771793344,-0.09210705870663419,-0.001889352909928839,-0.08346814844597292,-0.07852740405366282,-0.06279093171154297,-0.04725213853624689,-0.01620769969387265,-0.011853136496110786,-0.006201060962638828,0.025893196695259448,-0.015864758480010527,-0.06496571492306967,-0.017036734767016254,-0.06561218736151764,-0.009551775353478953,0.024725286843316086,-0.016412925646419146,-0.04397253206283996,0.007657726593814002,-0.03012827291584147,0.014111039105411581,0.024008334710260707,-0.01955959603382865,0.1152406507645776,0.010038785030601934,0.11636946150097069,-0.031069100476825654,-0.031407688187721654,-0.02392356937320392,0.0767727378524347,-0.009019345933982407,0.008141028873587895,-0.014833874065161675,-0.08717374592656878,-0.001135629031500369,-0.09836309012853446,-0.010456100788469964,-0.0861705745168494,0.009937117780370833,-0.021370904398245023,0.0014052682647722609,-0.056497534404597455,-0.03359210679508675,0.007249616951610599,0.01473780795641882,-0.058792205497756725,-0.02294332154718753,-0.020627144013141065,-0.034486336665165505,-0.032293636890905884,0.0019171574155985296,0.021524959137066712,0.0166824983518869,-0.04275386153280444,0.7220329629736978,13.184668863039423,28.25890456366055,13.101723916521602,28.05490497476952,37.072547645112934,40.596191436025265,41.60088966920928,41.84940206590349,101.97115844372783,75.5176060925581,2.013698069237723,24.439854281932032,0.0,26.453552351169755,16609.068486742635,11122.531863225102,10071.363574913508,274.0,83.0,110.0,131.0,155.0,171.0,195.0,219.0,250.0,747.476891268002,54.0,5.616771097666572,6.493753839851686,7.411556287811163,8.305731144875866,9.22276289197474,10.122261571332395,11.039026257804146,11.941188709354371,12.85788989008943,0.5619834710743802,0.9764297520661162,1.1433078511846235,0.5146549547212576,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5987762508041766,0.9608167233835686,1.0048936695298345,0.5515984392899259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,14.0,0.0,0.0,0.0,4.0,4.0,0.0,7.0,0.0,15.0,1.0,3.0,0.0,0.0,58.484059986813634,29.696194920593534,12.580053458670426,0.0,0.0,9.589074368143644,0.0,0.0,0.0,27.694948798762496,74.90023203227615,44.43597567311321,47.639839606870275,238.48258766500368,-1313.0457588302581,-43.115627167070045,-10.85161784157238,-45.277439959664065,716.2091083089271,3943.3291181058394,35.48704295308192,32.589496843849915,42.86227302288956,0.42857142857142855,0.8251221847123569,0.08335458434382116,1.0058083180091208,0.056519751290453696,8.359343280148297,0.17487781528764307,8.0,0.14814814814814814,0.20087294233449796,0.3959587449888252,0.6736125831025638,0.8377263674508368,0.88465068178028,0.8942065438073175,2.439700000000004,,3.392857142857143,3.899953466728711,2.4759940018755637,3.382952706765206,-14.588007254590796,3.5245563035495717,3.370695395958281,-5.506252842997762,191.0481999999994,63.1732246241068,0.0,4.899909730850478,23.671624184645573,179.17743631136617,28.314939047909448,0.0,0.0,0.0,4.6913478822291435,0.0,6.089044875446846,0.0,7.67275789664251,0.0,9.337237305164534,0.0,11.043865390436705,68.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118.14800000000005,0.0,28.148141516472787,0.0,0.0,0.0,0.0,0.0,-1.035925520027736,138.34024999333946,0.0,0.0,0.0,149.65028641519538,42.747115044743985,23.671624184645573,94.92065848861026,0.0,0.0,0.0,0.0,62.27324952127216,72.45192634730537,63.17515873150212,728.5090448323424,,646.4536103738818,634.8194811529472,667.4578858544039,646.6806713321988,1026.082105894943,643.423480131583,646.9632637397544,838.5850949125509,63.17515873150212,728.5090448323424,,643.4652186629864,631.4115393343038,665.2378970542104,643.7005109003032,1038.32671934139,640.3246150727406,643.9934635004842,843.8795688000489,4.987173765434309,468.11988097663965,,416.50985802634796,409.2568118326591,429.90434532016087,416.6523455303718,670.0953791144731,414.63008629822787,416.82691593326336,541.7072566213475,1.2149068986827332,14.009789323698893,,12.431800199497728,12.208066945248985,12.835728574123152,12.436166756388438,19.732348190287365,12.373528464068904,12.441601225764508,16.12663644062598,2.4935868827171546,364.2545224161712,,323.2632188068702,317.44785528081263,333.7643197179924,323.3767211463684,511.8693560433996,321.7489895975962,323.5179156073065,419.18665797852555,116.2588235294118,0.0,23.816919899110715,0.0,0.0,0.0,45.554949847812736,121.59213401310997,0.9622906781187732,0.0,43.86754276257445,0.0,-13.408774528566239,1.9224086962276552,-4.244220018389807,0.0,0.0,66.74341115408103,787.7372979087548,168.16730234584182,331.4897129058488,563.9366338246626,701.3298141647932,740.6140266799376,748.6140266799376,1694.0,189.0109416907604,166.95439806517575,90.83425334991975,182.91,182.91,0.75,7.502738210754851,6.754887502163468,6.271597058219621,7.11517765500175,,7.120042275495191,7.121126920362553,7.120699905436272,7.1200296998879065,7.088496204103935,7.1204685974341055,7.119979580301807,7.103510684284128,0.12060763573499271,0.13683033951926443,,0.13692388991336907,0.13694474846851062,0.13693653664300523,0.13692364807476742,0.13631723469430643,0.13693208841219434,0.13692268423657322,0.1366059746977717,3.484689662027654,3.610888825897131,,3.6115722885631882,3.6117246138188666,3.6116646475053265,3.6115705223351373,3.6071318426621786,3.6116321630919668,3.6115634830720142,3.6092477500035445,591.3900000000027,471.63032045670116,421.08322438550346,,419.57499019963444,419.360844710935,419.4551425673508,419.5775552520838,425.24262785379517,419.4933734526622,419.58702651692386,422.66202657760317,9.06981385493656,8.097754315105835,,8.068749811531431,8.064631629056443,8.066445049372131,8.06879913946315,8.177742843342214,8.067180258705042,8.068981279171613,8.128115895723138,7.8048540849250045,7.691489122359027,,7.687900896423785,7.68739037944635,7.687615215067614,7.68790700985921,7.7013185206843815,7.687706355071101,7.687929582939739,7.695231493727484,43.86754276257445,30.070550212700443,45.554949847812736,-4.244220018389807,-4.469379090464671,-0.2831510558060053,-8.729879224204524,17.05158608857152,6.765333810539196,748.731313682707,227.67734607815396,-1253.553882389036,-41.16213122310978,-10.359949441231702,-43.2259959444495,683.7588882834261,3764.6635635478483,33.8791852219775,31.112922012792136,40.92025612552009,9201.0,104.0,6.045699385512573,3.699789123088049,0.4553418012614795,0.24120226591665966,2.3481530794971093,0.8564601477997913,0.3218172766304832,0.08192001229714069,0.0,0.0,0.0,0.0,0.0,0.0,0.10366807798802437,0.05985279273275698,0.3948487851733933,0.16451696651629477,39.67047943846528,33.89898375426513,23.986178967401734,18.882883103712754,23.47844967471792,16.631470852723787,20.302221535304408,12.268825799537487,14.67366110197042,8.584995247874591,10.76318211433277,5.158438217308234,7.0393844680908595,3.1741218648903344,5.0314745495302855,1.9560478135671615,14.76150868069347,7.325389564586598,21.863759367708518,10.20173295989671,32.99448087116561,12.795942214214778,187.89050153508066,93.72600865733105,52.91019765698059,33.92384756035613,29.2711545538422,28.28738123065826,274.0,330.0,120.99471699999995,84.81928300000015,0.23140495867768596,264.14,24.9375,11.38888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,121.0,0.0,1.0,123.0,0.0,2.0,2.0,121.0,2.0,54.0,121.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,69.0,14.0,4.0,3.0,52.0,14.0,0.0,1.0,13.0,0.0,3.0,8.0,0.0,0.0,0.0,0.0,0.0,4.04305126783455,5.697093486505405,4.477336814478207,4.770684624465665,4.9344739331306915,5.1298987149230735,5.209486152841421,5.342334251964811,5.472270673671475,5.602118820879701 +60919,Cc1nc(C)c2c(n1)N(Cc1ccc(-c3ccccc3-c3nn[nH]n3)cc1)C(=O)CC2,0,24.153846153846153,6.2233519230769225,3.673076923076923,8.615384615384615,162.76293477022557,95.55293213461542,1.5883610577274807,6.302351923076921,3.8418803418803416,7.678514999999998,236.79302620769735,26.642857142857142,6.4348875,4.285714285714286,8.785714285714286,148.3849352064161,102.23154119642858,1.8904017589285718,6.575139285714286,3.306051587301588,7.787466928571427,278.94349629867173,23.13684210526316,6.305742105263156,4.031578947368421,7.189473684210526,154.2814696123815,87.80352124210526,1.6772659290909584,6.419695789473683,3.0929824561403505,7.716457010526314,242.4115468660767,20.264957264957264,6.219940170940172,3.6923076923076925,5.495726495726496,155.0180249270337,74.97706047863248,1.5823367584242818,6.331213675213675,2.9294871794871793,7.676886358974359,224.13862212777371,18.984496124031008,6.237503100775195,3.3410852713178296,4.961240310077519,156.5823913429906,69.08848696899223,1.4987908180061398,6.337517054263564,3.0686907838070634,7.704022976744186,208.9496432727704,16.9645390070922,6.101198581560284,2.9858156028368796,4.283687943262412,160.08566268194204,61.08845830496452,1.3931236000860354,6.191985815602838,2.8427895981087463,7.602806950354611,190.84930925459005,15.071428571428571,5.999935714285714,2.6714285714285713,3.5642857142857145,161.1798597622234,53.34528669285714,1.2834533526290999,6.08219,2.9047619047619047,7.5408514,171.2972236697316,12.959349593495935,5.935146341463415,2.5609756097560976,2.951219512195122,164.3971562389591,44.626571756097555,1.1873751541745527,6.002593495934959,2.6273712737127375,7.520071154471545,154.65884476981947,13.869565217391305,5.83063043478261,2.8043478260869565,3.4565217391304346,160.90853850142858,48.767278489130426,1.2679711433894458,5.919271739130436,2.3448067632850247,7.390605173913043,164.9817373227295,6.899408284023666,0.0986788091715976,0.011278219717924465,0.6105769230769231,3.9763313609467454,1.711726970902994,32.939493539571004,0.21609961168073186,0.0936296967455621,0.9344181459566077,0.05220789792899405,48.09529403815965,0.5044378698224845,0.01670491335587489,-0.005815568528884602,0.2544642857142857,1.6170752324598472,0.10443543887571792,2.335496063107571,-0.00030074104817172923,0.014631223584108188,0.01719968066121911,0.008415793005071821,0.5304830694373034,0.995328558081594,0.02537653495795702,0.0018111054526705817,0.020394736842105264,0.46982248520710074,0.22856076270093567,4.670641957797416,0.016115490553746087,0.022620910541887255,0.09531644693588012,0.013512235674244763,4.019151254318448,-0.5752794214332679,-0.01525320101906639,-0.0016441816380489106,-0.09561965811965811,-0.7817225509533201,-0.07429147429309603,-2.6887784647846784,-0.005756632085403292,-0.013701869658119658,-0.14071517276645482,-0.008216368014464176,-1.789743043273525,-1.2744828218889044,-0.012054092415485516,0.0008560510462469906,-0.14874031007751937,-0.8183110866474016,-0.19963858122476316,-6.090135961902549,-0.032093948811645547,-0.012856426024035585,-0.08432207493030393,-0.005284579503233809,-8.458756318704667,-0.6320869528725502,-0.014070803170506513,-0.0008514124418989604,-0.09530141843971632,-0.31893910780981166,-0.06784413588362374,-2.9920009260958285,-0.013260470260153315,-0.012529151191825082,0.001994535136924664,-0.007230501311427245,-2.8601242237546143,-0.2521555367709212,-0.002479180050718515,0.0008722943212146079,-0.0035714285714285713,-0.10435333896872362,-0.16410692568588203,-1.236745707290787,-0.018447881346214987,-0.0020415236686390508,0.053356579318117776,-0.0013550633136094523,-3.165173326725857,-0.24775099822004107,-0.016638471460528215,-0.0006595920055696856,0.07469512195121951,-0.20209746476162982,0.017906125628499615,-1.0399612331294827,0.021492353589505752,-0.014979165163323219,-0.20668900969088583,-0.009739645271082868,2.7689412643711675,0.2862104450733215,0.003865400694623088,-0.0003752124861767895,0.10326086956521739,0.4868793413943914,-0.22469027028976896,1.316199960428992,-0.013830352402215163,0.004640411950090046,0.013324328959780515,0.0012579967198353894,-1.043632331168796,,,0.47204301075268823,1.403225806451613,0.7580645161290323,0.0,0.6451612903225806,0.11290322580645161,0.8113327950562353,0.010221186259647583,0.024092154001583065,1.0542739474771137,0.2781729365604578,0.20883857274031709,1.8656067425333491,0.48701150930077486,2.079356713336515,1.5591903071268394,0.46246558127931137,0.05770082493036445,0.0,0.5201664062096758,7.907322274846167,1256.0,323.61429999999996,191.0,448.0,8463.67260805173,4968.752471000002,82.59477500182899,327.7222999999999,199.77777777777777,399.2827799999999,12313.237362800262,1492.0,360.3537,240.0,492.0,8309.556371559302,5724.966307000001,105.86249850000002,368.2078,185.1388888888889,436.0981479999999,15620.835792725617,2198.0,599.0454999999998,383.0,683.0,14656.739613176243,8341.334518,159.34026326364105,609.8710999999998,293.8333333333333,733.0634159999998,23029.096952277287,2371.0,727.7330000000001,432.0,643.0,18137.108916462945,8772.316076000001,185.13340073564098,740.752,342.75,898.195704,26224.218788949525,2449.0,804.6379000000001,431.0,640.0,20199.12848324579,8912.414818999998,193.34401552279203,817.5396999999998,395.8611111111112,993.818964,26954.503982187383,2392.0,860.269,421.0,604.0,22572.07843815383,8613.472620999997,196.43042761213098,873.07,400.83333333333326,1071.9957800000002,26909.752604897196,2110.0,839.991,374.0,499.0,22565.180366711276,7468.340136999999,179.683469368074,851.5065999999999,406.66666666666663,1055.719196,23981.611313762427,1594.0,730.0230000000001,315.0,363.0,20220.85021739197,5489.068326,146.04714396346998,738.319,323.1666666666667,924.968752,19023.037906687794,1276.0,536.4180000000001,258.0,318.0,14803.585542131428,4486.589620999999,116.65334519182902,544.5730000000001,215.72222222222226,679.935676,15178.319833691112,358.76923076923066,5.131298076923075,0.5864674253320722,31.75,206.76923076923077,89.00980248695569,1712.8536640576922,11.237179807398057,4.868744230769229,48.5897435897436,2.7148106923076907,2500.955289984302,28.248520710059132,0.9354751479289938,-0.3256718376175377,14.25,90.55621301775145,5.848384577040203,130.787779534024,-0.016841498697616836,0.8193485207100585,0.9631821170282701,0.471284408284022,29.707051888488987,94.55621301775143,2.410770821005917,0.17205501800370526,1.9375,44.63313609467457,21.71327245658889,443.7109859907546,1.5309716026058782,2.148986501479289,9.055062458908612,1.2836623890532526,381.81936916025256,-67.30769230769235,-1.7846245192307677,-0.19236925165172253,-11.1875,-91.46153846153845,-8.692102492292236,-314.5870803798074,-0.6735259539921852,-1.60311875,-16.463675213675213,-0.9613150576923086,-209.39993606300243,-164.40828402366867,-1.5549779215976316,0.11043058496586179,-19.1875,-105.5621301775148,-25.75337697799445,-785.6275390854288,-4.140119396702276,-1.6584789571005905,-10.877547666009207,-0.6817107559171613,-1091.179565112902,-89.12426035502958,-1.9839832470414183,-0.12004915430775343,-13.4375,-44.970414201183445,-9.566023159590948,-421.8721305795118,-1.8697263066816174,-1.7666103180473367,0.2812294543063776,-1.0195006849112416,-403.2775155494006,-35.301775147928964,-0.3470852071005921,0.1221212049700451,-0.5,-14.609467455621306,-22.974969596023485,-173.14439902071018,-2.5827033884700983,-0.2858133136094671,7.469921104536489,-0.18970886390532332,-443.12426574162,-30.473372781065052,-2.0465319896449703,-0.08112981668507133,9.1875,-24.857988165680467,2.202453452305453,-127.91523167492637,2.6435594915092073,-1.8424373150887559,-25.422748191978958,-1.1979763683431928,340.5797755176536,26.331360946745576,0.3556168639053241,-0.03451954872826463,9.5,44.79289940828401,-20.671504866658744,121.09039635946726,-1.272392421003795,0.4269178994082843,1.2258382642998074,0.11573569822485583,-96.01417446752924,0.6894086529437803,0.5590855600174279,0.4313530510949721,0.2904513581361121,0.275465378811528,0.1523238354601622,0.17316400973107063,0.08070138241355125,0.11104069400634632,0.043189224033179964,0.07029092110623739,0.023523357679337255,0.04706668644428107,0.012869548818097072,0.02955275919011009,0.007017643502153531,8.022033133029487,5.672834138354722,3.5438466681538445,2.172585494926308,0.39271307811674794,-0.3993754042661822,3.2485740394288767,0.9779552914401585,6.021994323152848,0.9950363405696818,14.78181881905931,10.933409393402634,16.010067709212635,11.684026355665697,2.010642417072425,0.7518375035512939,3.489082297864565,2.22250164196062,7.008271748266289,1.3494711825631747,3.701983838883494,2.4184484300880946,20.91822161768433,14.702705808896681,0.25427667461266695,0.6085913877310396,0.758678467215589,0.8597689594999275,0.8811081752161474,0.8874263309839185,1.172672338611684,1249.672464487077,0.0,4.0,3.0,0.0,9.0,2.0,5.0,0.0,0.0,4.152539910039778,1.9956622598234106,1.0820127405094304,0.46662812512481544,0.3367264423909013,0.298264903929363,150.10698356654825,1334.2938783162951,51.711086911796016,25.659497659928753,50.71660264795008,,14.0,784.0,0.0,4.794537184071822,5.907179729351506,31.03520864776445,39.329048231168464,0.0,4.899909730850478,50.245676810150904,42.72482498672945,0.0,14.633333333333335,43.5,23.5,0.0,20.0,0.0,0.027956989247311787,3.5,0.16116892911010627,0.06513209013209076,-0.09603683897801552,0.016095430107526898,0.13484432717678074,0.0,0.6070512820512822,0.81505376344086,0.44588235294117595,0.5419191919191915,0.7989583333333331,25.151316646743297,0.3168567740490751,0.746856774049075,32.682492371790524,8.623361033374191,6.473995754949829,57.83380901853382,15.09735678832402,0.5791556728232192,0.09111617312072892,0.0,0.36902050113895213,0.21739130434782608,0.38583070900069943,-0.7831170624786786,-0.039048636819945665,-0.015059943509205352,-0.03559623011266721,0.6141692909993004,1.2465737947030877,0.03961283500831961,0.023972572975059385,0.041552459823436264,-7.232330404753137,0.6968018714775792,0.5751312043495193,1.50622760324716,0.6167041619797525,0.38979791135204084,1.085741384360427,0.7023824623912903,0.9722806655059613,0.5713166498412812,0.5510942800603089,0.5816102853515706,0.8850136849861611,0.7189931840751108,0.5749610082208639,0.8953272576000437,1.1328636552009945,0.8087582236842106,0.9452638336631762,0.7236373342573126,0.9004699849376402,0.5830539440489947,0.5561060963755032,0.5589321390503947,0.8520616802426865,0.9774514008004578,1.051924807850265,1.3077844561870644,1.3042600444175247,1.1520957341269842,1.074921090736107,0.9768908331669366,1.0151894169216347,1.036100895284297,1.1252345353268833,1.0826719683349129,0.9893666582385457,1.1047134907654874,1.1070010434840205,1.0271834389315073,1.3012268815235304,1.1663379014396458,1.1339425415028805,1.1046317932958378,1.1278696978763656,1.108342239384458,1.2416022376306475,1.136913809934281,1.123352052122527,1.0530386664720268,1.0608020441926278,1.0743182746413216,1.1221310102194673,1.0294650772543061,1.0303351664005393,1.0532313630173122,1.043085205334729,1.0563274746227078,0.8122232826213064,1.0361216947057548,1.0395667285253187,1.044822041166381,0.9882246716377753,0.7763630682020058,0.8777277840269965,0.9813217474489797,1.017012515938682,1.0462911100027998,1.09704105352266,0.9960920660713726,1.0919840746324914,1.0064156987968478,1.0845452393913146,1.1060170271514038,1.2543631024977082,0.8440068669769378,0.7835605915114269,1.0698270542973287,0.8595494984701232,1.1003504402924622,0.9224942859010008,1.2548132217619286,1.7018142523113884,1.33055646828868,0.9832198978498736,0.958757877172049,0.7053074837064979,0.8443393466776395,0.7769599452242383,0.7868728163819876,1.0340700071698852,0.9644690819453404,1.0992715942661138,0.7349451137718426,0.5267035677411953,0.6425222930817339,1.0823142020347725,5.5,0.18263238445056626,3.7777777777777795,2.1527777777777777,2.0533333333333337,1.093888888888889,0.6171882086167801,0.40628543083900226,0.2350639329805996,0.1946913580246914,6424.1094525897215,7022.991598296152,3063.096629083464,2851.131906918626,14.234929417329269,0.4507672349180808,7.8182896446257075,0.8207216749911996,1.0,0.21739130434782608,1.5478998081013136,3.704777458317681,4.618426977631661,5.233811593016276,5.36371327575019,5.402174814211729,0.15714285714285714,0.006297668429329871,0.0755555555555556,0.04139957264957266,0.04026143790849674,0.022324263038548755,0.015053370941872684,0.013542847694633407,0.009402557319223985,0.0077876543209876555,0.38876778500107845,22.775510204081634,10.092,4.940138626339005,178.92062407174765,1.0,4.385502009458612,188.75535426984771,,144.28044068300696,142.01205209096972,140.05280216397946,144.29974263114582,180.3716191768723,143.31816185604958,144.41714122244963,169.0368157941459,0.07311320754716973,0.1692857209781065,-0.5156459684538619,0.41676040494938127,0.40667517006802706,0.061011738817566614,0.07090260997188326,-0.0013916778740724793,0.15626691202331258,0.018406835029526305,0.16119769879487997,0.011029833168634104,0.14426288706328425,0.25716296306158776,0.16058433848315556,0.03340240364691256,0.11815476190476194,0.13352641314073713,0.1417945892879762,0.07457436146417191,0.2415997416221414,0.10200620284219782,0.258815930352573,0.0835664140264863,-0.08338097960739478,-0.1545742307504119,-0.14578379204971634,-0.15660542432195973,-0.19659391534391532,-0.043401474391622605,-0.08162780224761454,-0.026638789587036412,-0.1463410662896236,-0.1505912244698524,-0.15737787462040592,-0.03721243583319215,-0.1847234964830402,-0.12215482246572354,0.07590302970303632,-0.24360617713483487,-0.20579549649317092,-0.11662992090347622,-0.18488857318301882,-0.14851460658365978,-0.1373114136957296,-0.09024019417343343,-0.10122184023614898,-0.17587492680662978,-0.09161466126540395,-0.14259194338308318,-0.07549174100109181,-0.15608421287764562,-0.08020938872002703,-0.039634905003473574,-0.09083324011953814,-0.061362767646915034,-0.13381599671173713,0.002134520980307767,-0.13849439640839728,-0.05946786023358837,-0.03654741484930162,-0.025123732962842538,0.07734326365607785,-0.005849268841394826,-0.0262436224489796,-0.09587213876714816,-0.037545984300124555,-0.0853674895699031,-0.02180423241342834,0.057101394647568776,-0.025955140263498478,-0.06581045796735441,-0.035909021182836155,-0.16861240625223528,-0.05848369885199138,0.12233531784136738,-0.05082510646535036,0.010460853823582347,-0.03157186469428112,0.09945577144885762,-0.15998305755522174,-0.22119541512037805,-0.18655501672044683,0.0575719791249065,0.04148333209038709,0.0391715377097969,-0.03326876896895922,0.1691201643272852,0.12244435817805378,-0.13126525088942032,0.03995811164636789,-0.06399989474598543,0.0495613262819843,0.014259492944820519,0.02409590827706456,-0.021699260853686845,13.632969360375263,26.13567842004825,10.51494213402176,13.993687526518695,35.24122250358824,42.586835065210586,44.21325866494721,44.76739186883529,44.806161099604516,64.46005811343197,48.33489952093202,14.336433019658653,1.7887255728412979,0.0,16.12515859249995,7893.943910236717,7273.637704891368,1866.3321549778275,189.0,50.0,69.0,94.0,120.0,130.0,142.0,162.0,179.0,411.1807582920007,35.0,5.14166355650266,6.013715156042802,6.90875477931522,7.796880342783522,8.695674048824253,9.588434283288215,10.488130391904537,11.38260035529399,12.282584511728269,0.6923076923076922,0.989923076923077,1.1270210607177429,0.658801547299591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7014584638415478,0.9771493212669683,1.0056725866995353,0.6674949232021798,8.0,5.0,1.0,0.0,0.0,0.0,9.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,11.642267275834955,0.0,11.731584227351433,0.0,9.694446914922299,9.967957041894417,5.213385095654868,10.197363616602075,48.53093654769288,42.17203559305311,23.24165260116846,6.544756405912575,253.64037644672993,-514.8115530860694,-25.670094970913016,-9.9002221747321,-23.40052514027588,403.7473600132782,819.4823252302258,26.040991940882996,15.759275485196653,27.316077507674198,0.5,0.8661643580982843,0.14385158721979902,5.948512575065019,0.11248208578309081,43.263959754294326,0.13383564190171574,7.0,0.11428571428571428,0.2715404222546682,0.6499108211823711,0.8101878461996483,0.918141731480851,0.9409297424338507,0.947676860263926,3.4199400000000013,,1.2500000000000004,1.5853885528152625,1.749881284081836,1.2467668284740065,-4.7095669916118785,1.3870104039167688,1.2303357520035338,-2.634266875762027,116.06670000000003,4.794537184071822,0.0,30.59209084980623,0.0,33.23387405114585,4.899909730850478,71.17617202393527,0.0,22.514758973090913,4.2626798770413155,0.0,5.602118820879701,2.3978952727983707,7.142827401161621,4.442651256490317,8.780018887869153,6.293419278846481,10.469113812768233,35.99999999999999,16.15321878588126,20.903751795563455,2.5227012376655096,0.0,0.0,0.0,8.015848471362611,0.0,51.476000000000006,0.0,12.691175679358606,0.0,0.0,0.0,0.0,0.0,0.09400805189946637,58.60509515732263,4.899909730850478,5.817862777835028,0.0,36.49927057915774,17.760115212910407,13.847474399381248,29.066057099168386,48.53093654769288,0.0,22.514758973090913,0.0,34.25768045957873,36.475840119760484,41.12679693872253,377.51070853969543,,288.48023620472355,283.9218210494997,280.00322682338197,288.51904869271266,362.27924026973267,286.54683916991104,288.75490594477003,338.9233950966021,41.12679693872253,377.51070853969554,,287.310881366014,282.441869611818,278.5167690688238,287.35271843381753,365.4528053453563,285.2493133081825,287.60394669289565,340.70789846405387,4.931058712105914,289.7841607550571,,223.8208394111025,220.5148896249784,217.6223772840725,223.84893718951938,276.8872850428137,222.40900748984626,224.0213168284833,260.23774031953957,1.3266708689910494,12.177764791603078,,9.305814071120114,9.158768420951604,9.032362155592967,9.307066086861699,11.686427105475248,9.24344642483584,9.314674385315163,10.93301274505168,2.465974038694861,188.75535426984771,,144.28044068300696,142.01205209096972,140.05280216397946,144.29974263114582,180.3716191768723,143.31816185604958,144.41714122244963,169.0368157941459,50.811764705882354,0.0,3.8452093281251623,0.0,0.0,0.0,0.0,52.29497450837583,1.6602181747106963,0.0,0.0,0.0,0.0,1.7805351420998967,0.0,0.0,0.0,34.70973600651335,569.4058267725671,80.49079002126831,192.64842783251942,240.15820283684639,272.1582028368464,278.9130903390099,280.9130903390099,1201.0,144.2984374256835,87.98190968744113,80.39072460785519,100.55000000000001,100.55000000000001,1.0,9.082617967320612,6.129283016944966,4.6389557340398015,5.4963421886140145,,5.5022406741057335,5.502652788957869,5.503008088313039,5.502237086566633,5.488423199182025,5.502422217330917,5.502213796322606,5.494007179741164,0.14964373335612263,0.17730136092303272,,0.17749163464857204,0.1775049286760603,0.17751638994558191,0.1774915189215043,0.17704590965103306,0.1774974908816425,0.17749076762330987,0.17722603805616657,2.6658913950810574,2.8354849258656407,,2.836557516058547,2.836632412713151,2.8366969793683032,2.8365568640441254,2.8340431124951633,2.8365905099315976,2.8365526311670335,2.8350600059964495,304.76000000000084,349.7984902927691,206.4123703679298,,205.5133590887208,205.44886650391936,205.43958781310099,205.51404166340723,207.136891079813,205.4881358775561,205.51711217681728,206.49615129482737,11.28382226750868,6.6584635602558,,6.629463196410348,6.627382790449012,6.627083477841968,6.6294852149486205,6.681835196123,6.628649544437293,6.629584263768299,6.661166170800883,6.98875935815082,6.461278077255689,,6.45691315104548,6.456599289666918,6.4565541256292205,6.456916472355375,6.46478199575197,6.456790410804847,6.456931412893976,6.461683885921056,0.0,23.512646659381797,14.38551719530567,6.031802452578656,2.0780540706834207,16.15321878588126,1.179568215652999,4.32585928718286,0.0,355.111868120379,166.74007294718015,-338.4308015867125,-16.87520562764195,-6.508284645898316,-15.383218253941479,265.41856310083296,538.7176308520824,17.11902874719039,10.359954439463127,17.957254361736084,2843.0,52.0,1.977950951390881,0.8893204412928054,0.0,0.0,0.49519951988449623,0.15702893432012244,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.022360679774997897,0.36111111111111105,0.10718674516180186,0.658969046702016,0.17043321544575316,21.37166824125719,17.331652360540264,15.097356788324023,10.165797534763923,13.7732689405764,7.616191773008111,11.948316671443873,5.568395386535037,10.437825236596554,4.059787059118917,8.434910532748486,2.8228029215204704,6.118669237756539,1.6730413463526195,4.196491804995633,0.9965053773058015,4.891745320510874,1.8949338981993098,8.348385060476874,2.6885737110082966,13.444415438575605,3.6284092807307293,102.88891445983501,51.20655061618757,31.621412160354875,26.252263478622428,25.01489323977533,24.872568635231442,170.0,204.0,60.914652999999994,26.495346999999995,0.5384615384615384,295.08,8.472222222222221,6.6944444444444455,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,23.0,23.0,52.0,0.0,0.0,56.0,23.0,1.0,12.0,44.0,24.0,35.0,32.0,0.0,0.0,0.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,6.0,1.0,3.0,31.0,8.0,0.0,7.0,1.0,0.0,5.0,4.0,0.0,0.0,0.0,2.0,4.0,3.8815637979434374,7.885079372656569,4.5081084731449605,5.109726196740486,5.706902601992445,6.221211249555764,6.503445752931764,6.861416794488517,7.2533819145108955,7.589580798219948 +2585,COc1ccccc1OCCNCC(O)COc1cccc2[nH]c3ccccc3c12,0,22.214285714285715,6.137317857142858,3.2142857142857144,7.178571428571429,160.98587085036561,87.58965482142857,1.4908277058227501,6.209242857142859,3.38343253968254,7.668974714285713,220.08525806230168,24.677966101694917,6.392508474576271,3.8813559322033897,6.864406779661017,146.09826394424496,93.4701528983051,1.791396808745763,6.532898305084746,3.1068738229755177,7.812641288135591,264.6679327880147,20.61,6.34546,3.57,5.61,152.9762177679144,76.11030603999997,1.5403006289194303,6.45048,2.9338888888888888,7.833639999999997,222.78645317863712,17.748031496062993,6.258070866141733,3.062992125984252,4.716535433070866,158.49599455039862,64.47368712598426,1.3434226663136135,6.33392440944882,2.967847769028871,7.794559527559056,188.68243116465652,16.031007751937985,6.145496124031009,2.868217054263566,3.565891472868217,158.95540459992773,57.10815724031008,1.292341530051767,6.223656589147287,2.65353143841516,7.703068775193797,177.6318429597392,14.271317829457365,6.064713178294573,2.635658914728682,2.6589147286821704,158.56711697379367,49.34619561240311,1.2536114810994494,6.143759689922481,2.562876830318691,7.648552744186047,167.59792213156894,13.068181818181818,5.972742424242425,2.4318181818181817,2.6363636363636362,160.91037020321042,44.67681528787879,1.1672818561043334,6.043179545454545,2.570917508417508,7.569007999999999,151.64680478321281,12.272,5.894648,2.336,2.504,164.44765418686052,42.202039287999995,1.0867692348180957,5.9535536,2.4477777777777785,7.513730272000001,140.0584700026767,13.037383177570094,5.944597196261682,2.457943925233645,2.6542056074766354,163.0833481932834,44.91930610280372,1.1507003662249908,6.012622429906542,2.513239875389409,7.538720411214955,150.48913894493484,7.33673469387755,0.1225616071428571,0.025251035408359494,0.5153061224489796,3.7295918367346936,1.4386944017348904,34.90227716709183,0.2322394957315752,0.11539795918367339,0.7717456774376418,0.07698172959183669,50.665341521577616,0.3303355240401243,-0.005710699152542311,-0.009265068685434695,0.20382220684884117,0.8388101003113108,-0.07493329566925883,1.588221170075223,-0.004018120336768396,-0.0031376686267727224,-0.09747038822591186,-0.0055645165167761785,1.371036161619141,-0.4224489795918369,-0.020003749999999935,-0.005259088187560059,0.04255102040816329,-0.0595918367346939,-0.040730321919685675,-1.9120473610204147,0.00011987916727222103,-0.017494530612244867,-0.10798079648526082,-0.01323926530612242,-0.2537490899410551,0.1587658685521451,0.011485777559055154,0.005183512097505416,-0.020367989715571248,0.07890085167925422,0.09337367578507487,0.7290625561927501,0.012194272172277377,0.009300016069419909,0.05901766464459799,0.008839210790615474,1.324075371055749,-0.4269894004113275,-0.006619137596899198,-0.00042543090616512007,-0.1000237304224015,-0.572061382692612,0.022716299871766914,-2.0206072639910633,-0.007086446768770718,-0.006602167378579324,-0.029816767630824942,-0.0041762522939408206,-2.0765361742723956,-1.3494700205663657,-0.02371312984496122,-0.0037704975541906095,-0.09061066286979906,-0.9463692453725675,-0.1383531999516845,-6.349810396050862,-0.019430547510453155,-0.023158202816010102,-0.12464727089156077,-0.013794913423508925,-6.461496761531563,-0.7198515769944338,0.0012765151515151466,0.0015070633394942419,-0.021799628942486094,-0.20361781076066782,-0.19683835994329535,-3.50020214707019,-0.02899074846271973,-0.0004924397031539842,-0.008412945354909645,0.002194924087816943,-6.910168561256274,0.5198367346938777,0.010462849999999975,0.0012060313571272893,-0.01187755102040818,0.14383673469387764,-0.05081204025868427,2.437641072051023,0.0037416971141187583,0.0100517551020408,0.0625717828798186,0.006101599551020398,1.7138963842066697,-0.23860385275605564,-0.005408469626168233,-0.002150828448423429,-0.04801640282281138,-0.12778943353042146,-0.005233535362450653,-1.153382328974345,-0.014865614768612962,-0.004528666793820337,-0.030391464412867938,-0.003974120780087739,-2.255687802117764,,,0.4711111111111111,1.2916666666666667,0.65,0.05,0.6416666666666667,0.008333333333333333,0.7844045969939811,0.005195402310001107,0.016662068976667773,0.9528565091255873,0.2691797229815495,0.22276532678755256,1.7372611061195684,0.4919450497691021,2.0648740358558957,1.6700926042659527,0.13648413822184613,0.25829729336809687,0.0,0.394781431589943,7.253379594857156,1244.0,343.68980000000005,180.0,402.0,9015.208767620474,4905.02067,83.486351526074,347.71760000000006,189.47222222222223,429.46258399999994,12324.774451488895,1456.0,377.158,229.0,405.0,8619.797572710453,5514.739021000001,105.69241171600002,385.44100000000003,183.30555555555554,460.9458359999999,15615.408034492866,2061.0,634.546,357.0,561.0,15297.621776791439,7611.030603999997,154.03006289194303,645.048,293.38888888888886,783.3639999999997,22278.645317863713,2254.0,794.7750000000001,389.0,599.0,20128.991307900626,8188.158265000001,170.61467862182892,804.4084000000001,376.91666666666663,989.9090600000001,23962.66875791138,2068.0,792.7690000000001,370.0,460.0,20505.247193390678,7366.952284,166.71205737667796,802.8516999999999,342.3055555555556,993.6958719999998,22914.507741806356,1841.0,782.348,340.0,343.0,20455.158089619385,6365.659234000001,161.71588106182898,792.5450000000001,330.61111111111114,986.663304,21620.131954972392,1725.0,788.4020000000002,321.0,348.0,21240.168866823777,5897.339618,154.081205005772,797.6996999999999,339.3611111111111,999.1090559999999,20017.378231384093,1534.0,736.831,292.0,313.0,20555.956773357564,5275.254910999999,135.84615435226198,744.1942,305.9722222222223,939.2162840000001,17507.30875033459,1395.0,636.0719,263.0,284.0,17449.918256681325,4806.365752999998,123.12493918607403,643.3506,268.91666666666674,806.6430840000002,16102.337867108028,410.8571428571428,6.863449999999998,1.4140579828681317,28.857142857142858,208.85714285714283,80.56688649715386,1954.5275213571426,13.005411760968212,6.46228571428571,43.21775793650794,4.310976857142855,2837.2591252083466,19.48979591836733,-0.33693124999999635,-0.546639052440647,12.025510204081629,49.489795918367335,-4.42106444448627,93.70504903443815,-0.2370690998693354,-0.18512244897959063,-5.7507529053288,-0.32830647448979455,80.89113353552932,-42.24489795918369,-2.0003749999999934,-0.5259088187560059,4.255102040816329,-5.95918367346939,-4.073032191968568,-191.20473610204147,0.011987916727222103,-1.7494530612244867,-10.798079648526082,-1.3239265306122419,-25.37490899410551,20.16326530612243,1.4586937500000046,0.6583060363831879,-2.5867346938775486,10.020408163265285,11.858456824704508,92.59094463647926,1.5486725658792269,1.1811020408163284,7.495243409863945,1.1225797704081653,168.1575721240801,-55.08163265306125,-0.8538687499999966,-0.05488058689530049,-12.903061224489793,-73.79591836734694,2.930402683457932,-260.65833705484715,-0.9141516331714226,-0.8516795918367328,-3.8463630243764175,-0.5387365459183658,-267.87316648113904,-174.08163265306118,-3.0589937499999973,-0.48639418449058863,-11.68877551020408,-122.0816326530612,-17.8475627937673,-819.1255410905612,-2.506540628848457,-2.9874081632653033,-16.07949794501134,-1.7795438316326513,-833.5330822375715,-95.02040816326526,0.16849999999999934,0.19893236081323992,-2.8775510204081645,-26.877551020408152,-25.982663512514986,-462.02668341326506,-3.8267787970790046,-0.0650020408163259,-1.1105087868480732,0.2897299795918365,-912.1422500858282,64.97959183673471,1.3078562499999968,0.15075391964091117,-1.4846938775510226,17.979591836734706,-6.351505032335534,304.7051340063779,0.4677121392648448,1.2564693877551,7.821472859977325,0.7626999438775497,214.2370480258337,-25.530612244897952,-0.5787062500000009,-0.23013864398130693,-5.137755102040818,-13.673469387755098,-0.5599882837822199,-123.41190920025491,-1.590620780241587,-0.4845673469387761,-3.2518866921768694,-0.425230923469388,-241.35859482660078,0.6920312592415986,0.5642862940637751,0.4472227725173656,0.30389365822564435,0.2842250884935455,0.15949013422703193,0.18134269566400632,0.08319714537080777,0.11626329539504092,0.04453044626373472,0.07679488387056933,0.024535943958838843,0.05040554661174154,0.013101285574189539,0.03315124605211424,0.0072433570359344505,8.013842289843096,5.659147865016129,3.526027297082101,2.158857583521049,0.42157095236651954,-0.5263955537627292,3.299386136903985,0.9878633802965107,6.0101350844343,0.9975694228608152,14.548061950566682,10.919498083144395,16.007230800667642,11.67031994145124,2.031904650769203,0.7749472277522415,3.4692211264554493,2.208795059365413,6.002604315761103,1.2493285518259343,3.682630863020794,2.4048060318798488,20.932354844929836,14.705608049743654,0.24336124773901988,0.5473047635471502,0.7217372079999321,0.8568326287207234,0.8989699583181046,0.9107036761725366,1.1146879962059224,1108.7174439193616,0.0,0.0,4.0,0.0,16.0,1.0,2.0,0.0,0.0,4.325902369446002,2.475657511125024,1.41380648721025,0.591418133549352,0.334908705395776,0.2634801339672057,279.1260335746846,2110.1067602534067,66.08092669091972,37.680477861667974,75.22870005834025,,17.0,899.0,6.103966387748303,5.106527394840706,6.606881964512918,31.19541844290588,27.555361697446024,0.0,7.109797541277533,60.6636706846161,16.36713419341515,14.210588861400147,14.133333333333333,38.75,19.5,1.5,19.25,0.0,0.028888888888888905,0.25,0.1404761904761908,0.06891891891891955,-0.07155727155727126,0.048080808080807946,0.14563538873994608,0.0,0.5833333333333333,0.8288888888888886,0.44285714285714245,0.5144144144144137,0.7808080808080806,23.532137909819433,0.1558620693000332,0.4998620693000332,28.58569527376762,8.075391689446485,6.682959803626577,52.11783318358705,14.758351493073063,0.5683646112600539,0.05896226415094339,0.0,0.2830188679245283,0.25,0.3016825645156586,-0.9045762672940515,-0.04071734267053954,-0.01615314763025092,-0.05321036866435597,0.6983174354843413,2.093861076098062,0.05318289119829817,0.03739037635889396,0.053688745540975955,-6.480395437527955,0.8258881214492825,0.9217790973581378,1.366466475846414,0.6945376741063936,0.6449546708711077,1.210709322093131,0.8285646080958137,1.079291201425293,0.8850924567353738,0.9904186232721259,0.9700701970975453,0.9532594429392605,1.0086839360222533,1.2752223735876271,1.4026436297658125,1.0959158415841581,1.065201778385773,1.1116379101432583,1.0040453367023285,1.0068901720775192,1.2348196679635692,1.0928667347664904,1.3267640466506139,0.9588262050299742,0.9797550732097294,1.0985005991167525,1.0287656576956097,1.1630739845638107,1.0730500770167068,0.9557225460155268,0.976727408092344,0.9198288469201062,1.0855209999282853,1.1012994064506614,1.1152728653239672,0.9229871347539232,1.0512150812390164,1.1608929357910436,1.208746333849984,1.2780144293499116,1.2176825841207226,0.9882482026870189,1.0486371207499448,1.0051764611764953,1.1485916067397788,0.9418630898155175,1.1834565320101345,1.0022491992223688,1.176779765177734,1.2825702218486748,1.230079791526092,1.1228797298334485,1.2595308539857262,1.060279911107959,1.1728001462549478,1.071065747575788,1.278449120581056,1.2306974502070087,1.3051273492984021,1.1014633473675997,1.091721719981456,0.9855982292675938,0.8732467646975728,0.9096534653465346,0.9865196078431373,1.0961228122892757,1.0934614480465426,1.0952418769242407,1.0019158782090958,1.1775530738653537,0.9652796735474188,1.1161134118362857,0.9440264255910988,0.8975687154419424,0.8707065625949941,0.9605940594059404,0.919575923392613,0.9799140230967186,0.9446301123444925,0.9305614078600936,0.9043465823680256,1.0275740011707046,0.8751505111304241,0.9457857031730735,1.0252671155420952,0.9867006477424127,0.974990204501838,1.059845470528361,0.9413714409910889,0.9989490939117591,1.0262558674178477,1.010173107778654,0.9889093067881591,1.284188330087275,0.9498009915487373,1.01607805420604,4.0,0.07764717885930007,2.88888888888889,1.9791666666666667,1.1727777777777777,0.5802777777777778,0.3501587301587301,0.3333687641723356,0.22449766943814561,0.13594135802469137,5694.056530967632,6429.605003548238,2956.0205980414125,2682.871430584246,17.910718886180195,0.4544578345974058,9.771052365083884,0.8330388802523251,1.0,0.25,1.4814525526116016,3.3316974109325797,4.393548434847354,5.215936788508252,5.472446216661828,5.543874788090398,0.12121212121212122,0.003697484707585718,0.06565656565656569,0.04398148148148149,0.029319444444444447,0.01706699346405229,0.011671957671957674,0.012346991265642055,0.008979906777525824,0.005664223251028807,0.31959716993240517,23.168044077134986,11.743801652892563,6.081011203677105,174.93537112075003,1.0,4.328558217450042,209.91277357843273,,164.68533510709048,161.11134478516362,167.04631450474707,164.74284372054657,270.11981360331896,163.57164849644022,164.86016639275235,220.20866024310288,0.045024869757902895,-0.046594519161991345,-0.3669183673302934,0.39553616378587,0.22490667532286857,-0.0520842338573768,0.04550480080344736,-0.017301623585217307,-0.02718998367881572,-0.12629858653634976,-0.0722835995797924,0.027060631991106525,-0.057579972183588346,-0.16321383560745642,-0.20827217983382212,0.08257425742574262,-0.015978112175102605,-0.028310614033508343,-0.05478288284362199,0.0005161876832990483,-0.15160173313290282,-0.13991759156174327,-0.17197931738242395,-0.005008336711457617,0.021639854128108794,0.09371431908254432,0.2052791900877612,-0.039525999844078855,0.021155358316188547,0.06490167451300122,0.020888681638233,0.05250731420107647,0.08059081924159091,0.07647294487032189,0.11482219011552065,0.026133750040781722,-0.058198833435758136,-0.05400661553975846,-0.016848057882976112,-0.19410545705733356,-0.15338444734302595,0.015789524060407702,-0.05789327883443161,-0.030513529778592466,-0.05721216757456664,-0.03863548381614899,-0.054249915091329405,-0.04098533853537787,-0.1839333268644004,-0.19347926645022967,-0.14932051273201913,-0.1758385140839665,-0.2537460630547514,-0.09616580128820086,-0.18193112058710834,-0.0836659907878511,-0.20068121637359548,-0.16151340336030903,-0.17919723935342402,-0.1275328768637572,-0.09811607029965859,0.010415293836896638,0.05968322942493361,-0.042304230423042315,-0.054595199602039526,-0.13681735308480542,-0.10028578165009851,-0.12483125822933896,-0.004267317261392739,-0.010901188825368476,0.028512272969893074,-0.13638847294285653,0.07085396383866484,0.08536808747787175,0.04776165957646339,-0.023049504950495084,0.038566347469220275,-0.03531816082512807,0.06984189198833685,0.016111372883979434,0.08710513750110523,0.0810782421063505,0.07926035935242776,0.033827787057879526,-0.03252180468719535,-0.04412857951400843,-0.08517783186472368,-0.0931803460719904,-0.03426365112443586,-0.0036376977321519056,-0.03304604806880136,-0.0640098477728129,-0.03924390713541368,-0.039380155019169014,-0.05162420747310883,-0.04452131840771467,17.315128524124013,23.676993429936463,6.755119044217274,13.56625873190882,28.401989203751217,36.58449631270075,40.771229868307586,41.422755657600675,41.88771994331496,61.946221075676874,50.10277812797858,4.094524146655384,7.7489188010429055,0.0,11.84344294769829,12501.790837311977,11264.424396228385,1517.2983163099925,111.0,44.0,59.0,78.0,96.0,98.0,109.0,120.0,112.0,406.18925731200073,33.0,5.043425116919247,5.8888779583328805,6.755768921984255,7.623153068476902,8.502079553606189,9.380673689458071,10.267123214370452,11.153374962000273,12.045475397830378,0.6428571428571429,0.981,1.1217461822255435,0.6043299594419401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.671777352437981,0.9680672268907564,1.003407553844553,0.6324800892675411,11.0,0.0,1.0,0.0,0.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,29.617883381194392,25.067242150058043,11.49902366656781,0.0,0.0,0.0,0.0,0.0,0.0,36.39820241076966,30.33183534230805,29.378661958371005,12.626498258893795,212.30472607271963,-636.5824188350759,-28.654238921484865,-11.367543193483499,-37.446024637357404,491.4307596474042,1473.524341418331,37.426687769434864,26.312934668184475,37.78267542098285,0.47058823529411764,0.8995822688669148,0.1643756279597485,76.88907016911308,0.07026673602426217,281.18375370129485,0.10041773113308511,9.0,0.30303030303030304,0.2550993649423287,0.5737030809462091,0.7565489786339209,0.8981604979397735,0.9423302501929546,0.9546299240353899,3.738000000000002,,1.2857142857142858,1.5141926477431362,1.1430359144285005,1.28206267335915,-5.365540693720244,1.3572521419828643,1.2745051870999227,-2.2346271687189603,118.66520000000004,19.31711625624085,0.0,10.30076712495354,0.0,6.103966387748303,33.41307428212852,66.73003775307771,0.0,17.248535499851716,4.204692619390966,0.0,5.493061443340548,2.3978952727983707,6.985641817639208,4.844187086458591,8.57828829077605,7.065613363597717,10.226548834389476,36.0,21.57988292641224,0.0,3.398281053806934,0.0,0.0,4.248413516391407,2.1790765398261898,0.0,54.936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.81778620463043,19.527377465406477,0.0,17.248535499851716,49.607546585664736,0.0,0.0,0.0,66.73003775307771,0.0,21.805849864162116,0.0,33.84247772874865,37.61953173652694,39.81381677330191,419.82554715686547,,329.28495592846673,322.12174339381113,334.01642661519895,329.40021659620254,542.7435461970408,327.05281351674824,329.63536577303137,441.4601464982745,39.81381677330191,419.8255471568655,,328.0849559284668,320.7084969225841,332.9495930950657,328.2036247677339,545.6051679003583,325.7860448508976,328.4458275984048,442.6519476549246,4.856901072560182,331.5298336835788,,266.05037073879885,259.9825893219371,269.61141331492854,266.1466335938497,442.9797461138072,264.1386033316067,266.3493377205682,359.6025890216466,1.3271272257767304,13.994184905228849,,10.976165197615558,10.737391446460371,11.133880887173298,10.980007219873418,18.09145153990136,10.901760450558275,10.987845525767712,14.715338216609151,2.5045417196762614,209.91277357843273,,164.68533510709048,161.11134478516362,167.04631450474707,164.74284372054657,270.11981360331896,163.57164849644022,164.86016639275235,220.20866024310288,54.21176470588236,0.0,1.6186330487195506,0.0,0.0,0.0,10.288871250686277,56.19082301529497,1.7022495404545304,3.1889652865405935,16.923660609313117,0.0,-0.628033772150836,0.0,0.0,0.0,0.0,35.4188849989823,633.0679649262694,82.96134294624969,186.57505501222445,246.0387123514518,292.0924601564621,306.45698813306234,310.4569881330623,890.0,139.65995188297867,70.66752079385445,79.79592872839093,75.74000000000001,75.74000000000001,0.8888888888888888,9.199381321598997,6.044394119358453,3.672815179075747,5.411443640782186,,5.42094500848449,5.420680343185689,5.419879223030085,5.420945427770462,5.415911369180564,5.4208131619344595,5.420962344850074,5.420138088982467,0.12242717263585824,0.18038145469273953,,0.180698166949483,0.18068934477285628,0.1806626407676695,0.18069818092568207,0.18053037897268545,0.18069377206448198,0.1806987448283358,0.1806712696327489,2.3995707354472704,2.787128192654233,,2.7888824447304037,2.78883362081512,2.788685820297597,2.7888825220759506,2.787953459517255,2.7888581227435143,2.78888564275913,2.788733581467156,310.32000000000096,15259.500577011167,189.33805352671732,,188.21709203362352,188.2391881826338,188.34431107848542,188.21717362728188,188.61868775470947,188.2300066243596,188.2154482242563,188.2845162048108,508.65001923370556,6.311268450890577,,6.27390306778745,6.274639606087793,6.27814370261618,6.273905787576063,6.287289591823649,6.274333554145319,6.273848274141877,6.27615054016036,10.731569865383264,6.342146349009248,,6.336208330152728,6.336325720405976,6.336884018360021,6.3362087636608635,6.338339740675083,6.336276943197096,6.336199596532802,6.336566491554606,16.923660609313117,3.398281053806934,15.633087683505185,2.0931623701130935,2.1790765398261898,21.57988292641224,-0.628033772150836,1.7022495404545304,1.6186330487195506,364.06056700107564,149.40636952346318,-447.9856377197935,-20.165004745351627,-7.999743530710598,-26.352096336458438,345.8372643382754,1036.9713681284547,26.338488296318662,18.517345859436684,26.58900943919115,3062.0,45.0,1.3692023425272115,0.5848824911163271,0.0,0.0,0.3078467473510731,0.08553800532129356,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.03125,0.446735636239962,0.14936340450831737,0.7564753078303745,0.1892986984546672,20.760937777247957,16.92858882191325,14.758351493073064,10.028490721446264,12.505903893716,7.017565905989405,10.699219044176372,4.908631576877658,9.068537040813192,3.4733748085713083,7.372308851574656,2.355450620048529,4.939743567950671,1.2839259862705747,3.613485819680452,0.7895259169168551,3.565500938985829,1.2299319519849592,6.121520124944742,1.7822882954119683,9.34520659607884,2.268471280243435,99.90732596120202,62.941605468493165,38.379260362097426,26.34789019269579,24.399011577137152,23.447172846622745,154.0,180.0,62.82461799999999,32.431382,0.48214285714285715,219.06,7.888888888888888,6.805555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,21.0,56.0,0.0,1.0,59.0,21.0,0.0,9.0,50.0,21.0,33.0,38.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,26.0,5.0,3.0,1.0,30.0,6.0,0.0,2.0,4.0,0.0,4.0,10.0,0.0,0.0,0.0,1.0,4.0,3.7954891891721947,7.920568523669711,4.403665809777363,5.061011501421323,5.727254830841344,6.312981762780452,6.643667655383985,7.096177977567958,7.539346984694487,7.658231214775889 +5282375,CCOC(=O)/C=C(C)/C=C/C=C(C)/C=C/c1c(C)cc(OC)c(C)c1C,0,18.75,5.816071428571429,2.6785714285714284,5.535714285714286,161.07417157508874,73.50822689285715,1.4180839133119645,5.8974696428571445,3.285218253968254,7.411445285714286,202.18881078670643,21.0,6.071428571428571,3.0892857142857144,5.339285714285714,143.26918841699995,77.74248439285718,1.7619630232142864,6.227008928571429,2.92906746031746,7.53659314285714,247.31430246840344,16.610526315789475,5.926105263157897,2.9473684210526314,3.8947368421052633,154.76511840684557,60.74539677894735,1.428894046070295,6.029722105263156,2.723391812865498,7.492811789473686,195.61544235294883,16.839622641509433,5.971792452830188,2.8679245283018866,3.2264150943396226,149.94968975633714,60.23453740566037,1.5267307245249155,6.095448113207547,2.7185534591194975,7.50570388679245,206.72654466342763,13.789473684210526,5.835488721804511,2.406015037593985,2.0526315789473686,153.49738820870394,47.422871112781955,1.3423485697539996,5.944067669172933,2.6491228070175437,7.410170766917292,173.85589367768907,10.697986577181208,5.777785234899327,2.0738255033557045,1.483221476510067,160.22629865974906,34.798369872483214,1.1602905887688861,5.8547785234899345,2.423564504101417,7.416544993288591,144.31320267062807,10.463235294117647,5.538382352941177,2.0661764705882355,1.4926470588235294,159.43496394170415,35.01097139705882,1.1775898140184338,5.630422794117647,2.0898692810457513,7.179186941176471,143.93281321015917,9.586466165413533,5.530902255639096,1.8721804511278195,1.4962406015037595,159.61088717144477,30.892855466165415,1.1361693905797816,5.620488721804513,2.0847953216374266,7.176682556390978,135.4989684837171,8.844961240310077,5.420465116279068,1.8372093023255813,1.4651162790697674,165.31038774766196,29.57985857364342,0.98955158198286,5.489821705426357,1.9913867355727823,7.11041215503876,117.43472583734251,6.994897959183674,0.09030612244897954,0.013574655673354415,0.534438775510204,3.4948979591836733,1.3251831388529067,33.43706614668368,0.23854091087443238,0.08850889668367341,0.8808726615646262,0.05572640816326529,52.6865839384045,0.18367346938775547,0.0038265306122449777,-0.0062713417079041335,0.29145408163265313,1.6403061224489794,-0.11610947381058338,0.8091112806122334,-0.0181019019642857,0.004444323979591934,-0.06598107993197286,0.001097938775510202,-1.7508153326146758,1.3340494092373791,0.012509667024704664,0.00011102599696782247,0.005034908700322286,0.3114930182599355,0.28856094075405836,6.417136560835115,0.051972989891659306,0.012824561962943109,0.17127332841031148,0.007285268528464016,11.211253609378156,-0.7098575279168269,-0.009382941855987611,-0.000345975488631744,-0.14057085098190214,-0.703118983442434,-0.06290665248633677,-3.3631585631257277,-0.012725948201073896,-0.009604044931651822,-0.08232238453557532,-0.005111548324990373,-3.9053927161555198,-1.1879699248120301,-0.005421589688506949,0.0007034530177546714,-0.11795112781954886,-0.8904403866809882,-0.30549733280311314,-5.76515736096939,-0.054953276446490396,-0.006468416017722831,-0.01802730412340379,-0.002482718582169709,-11.495201121691188,-1.4318586495000682,-0.02070641008081082,-0.0009649359292518293,-0.047142514724010404,-0.7616764826736063,-0.00399420537820135,-6.724516883740242,-0.005732152380382304,-0.021582877987604398,-0.1881093985412958,-0.010480098479660317,-5.268050570580659,0.05867346938775498,0.0018840036014405278,0.00017087694686672802,-0.03181272509003603,-0.0064525810324129185,-0.019025566503190133,0.2621676093562446,-0.002998691698040323,0.0018456857743096773,0.04575476023742836,0.0010507451980792315,-0.2642526849198904,-0.6476906552094521,-0.0005558539205156213,-0.0005219457928310785,0.041823308270676665,0.2932330827067669,-0.178278476858224,-3.1609945945891504,-0.03221684280894422,-0.0015019686493018668,-0.038286284908700285,0.00041373254564983975,-6.730023757753509,1.729631387438696,0.016662316089226296,0.0014735775340162247,0.06522899857617463,0.6266413542161049,0.08651876186961471,8.201375155918765,0.021317367951690803,0.01877306621776607,0.14461721784967227,0.006919559721563039,8.785680884532928,,,0.4807692307692308,1.0096153846153846,0.46153846153846156,0.019230769230769232,0.5480769230769231,-0.08653846153846154,1.0421828585799557,0.023849313341933895,0.0271570056496262,0.7685026463279772,0.21680018603505843,0.2560510222527421,1.8106855049079331,0.4728512082878006,1.9451721646502163,1.7321535323461357,0.0,0.21301863230408083,0.0,0.21301863230408083,6.325348121785729,1050.0,325.70000000000005,150.0,310.0,9020.15360820497,4116.460706000001,79.41269914547001,330.2583000000001,183.97222222222223,415.040936,11322.57340405556,1176.0,340.0,173.0,299.0,8023.074551351998,4353.579126000002,98.66992930000004,348.71250000000003,164.02777777777777,422.04921599999983,13849.600938230593,1578.0,562.9800000000002,280.0,370.0,14702.68624865033,5770.812693999998,135.74493437667803,572.8235999999998,258.7222222222223,711.8171200000002,18583.46702353014,1785.0,633.01,304.0,342.0,15894.667114171738,6384.860964999999,161.83345679964106,646.1175,288.16666666666674,795.6046119999996,21913.01373432333,1834.0,776.12,320.0,273.0,20415.152631757624,6307.241858,178.53235977728195,790.561,352.3333333333333,985.5527119999998,23122.833859132646,1594.0,860.8899999999998,309.0,221.0,23873.71850030261,5184.957110999999,172.88329772656402,872.3620000000002,361.11111111111114,1105.065204,21502.667197923583,1423.0,753.22,281.0,203.0,21683.155096071765,4761.492109999999,160.15221470650698,765.7375,284.2222222222222,976.369424,19574.862596581646,1275.0,735.6099999999998,249.0,199.0,21228.247993802153,4108.749777,151.11052894711096,747.5250000000002,277.2777777777777,954.4987800000001,18021.362808334376,1141.0,699.2399999999998,237.0,189.0,21325.040019448392,3815.801756000001,127.65215407578894,708.1870000000001,256.8888888888889,917.243168,15149.079633017183,391.7142857142857,5.057142857142854,0.7601807177078472,29.928571428571423,195.7142857142857,74.21025577576277,1872.4757042142858,13.358291008968214,4.956498214285711,49.328869047619065,3.120678857142856,2950.448700550652,10.285714285714306,0.21428571428571874,-0.3511951356426315,16.321428571428577,91.85714285714285,-6.50213053339267,45.31023171428507,-1.0137065099999991,0.2488821428571483,-3.69494047619048,0.061484571428571305,-98.04565862642184,126.73469387755102,1.188418367346943,0.010547469711943135,0.4783163265306172,29.591836734693867,27.413289371635543,609.627973279336,4.937434039707634,1.2183333864795953,16.27096619897959,0.6921005102040815,1065.0690928909248,-75.24489795918365,-0.9945918367346868,-0.036673401794964866,-14.900510204081627,-74.530612244898,-6.668105163551698,-356.49480769132714,-1.348950509313833,-1.0180287627550932,-8.726172760770984,-0.5418241224489795,-413.9716279124851,-158.0,-0.7210714285714241,0.09355925136137129,-15.687499999999998,-118.42857142857143,-40.631145262814044,-766.7659290089289,-7.308785767383222,-0.8602993303571366,-2.3976314484127044,-0.33020157142857126,-1528.8617491849282,-213.34693877551018,-3.0852551020408123,-0.14377545345852258,-7.02423469387755,-113.48979591836734,-0.5951366013520012,-1001.9530156772961,-0.8540907046769632,-3.2158488201530555,-28.028300382653075,-1.5615346734693871,-784.9395350165181,7.979591836734677,0.2562244897959118,0.023239264773875012,-4.3265306122449,-0.8775510204081569,-2.587477044433858,35.654794872449266,-0.40782207093348394,0.2510132653061161,6.222647392290257,0.1429013469387755,-35.938365149105095,-86.14285714285714,-0.07392857142857764,-0.06941879044653343,5.5624999999999964,39.0,-23.711037422143793,-420.412281080357,-4.284840093589581,-0.19976183035714828,-5.092075892857138,0.055026428571428684,-895.0931597812166,223.12244897959178,2.149438775510192,0.19009150188809298,8.414540816326527,80.83673469387753,11.160920281180298,1057.9773951135207,2.7499404657681135,2.421725542091823,18.65562110260772,0.892623204081632,1133.3528341047477,0.7573026909762495,0.6528193668040584,0.47285120828780064,0.3394539891807508,0.31210437306712946,0.18538049441632656,0.20377332310485108,0.10479257796214578,0.13648304649671925,0.05719123189236543,0.08181345826469864,0.030909274350943778,0.05745581693536699,0.018534216360945068,0.0372817158204374,0.00967235787131551,8.028938416924158,5.670766299066752,3.5551141443394103,2.1704352642997535,0.44713187123864295,-0.5292349098220827,3.2755984659931094,0.9777635475050669,6.028228050971129,0.9876870180393483,13.642842646669617,10.931123187311659,16.014234167077227,11.681960944651006,2.0116379131188005,0.7414874843313792,3.501190422250597,2.2203635738852343,7.008272903095591,1.3758199300023728,3.7141084086312115,2.4163762319800766,20.920174964675116,14.701173806964768,0.2059772180818319,0.46621339520307886,0.6542786213331281,0.7473176836213425,0.8450228069050046,0.8628799497621474,2.2589766858295026,762.1478766152201,0.0,1.0,7.0,0.0,8.0,0.0,6.0,0.0,0.0,4.571491613566613,3.0100745508391307,1.881683194058835,1.3234488203295482,0.7372180806275761,0.6300752234847193,272.9928509587992,1318.9003897201476,41.9250995770646,23.551792673574067,45.21178324591349,,17.0,671.0,0.0,4.794537184071822,5.969305287951849,6.606881964512918,16.89572089342244,28.329826073621863,14.033534740968157,32.07553471988289,38.98961888120124,9.473725907600098,12.5,26.25,12.0,0.5,14.25,0.0,0.019230769230769232,-2.25,0.09345238095238112,0.04535714285714304,-0.04809523809523808,0.0,0.10424390243902404,0.0,0.5267857142857145,0.7884615384615381,0.4333333333333334,0.4814285714285715,0.7884615384615381,27.09675432307885,0.6200821468902813,0.7060821468902813,19.981068804527407,5.636804836911519,6.657326578571295,47.07782312760626,12.294131415482815,0.6097560975609759,0.30666666666666664,0.0,0.32,0.34782608695652173,0.2996951391561169,-0.5800452915520463,-0.024832762696581613,-0.010357951634857972,-0.027621204359621256,0.7003048608438831,1.3554058244898786,0.0366912018113189,0.02420367543731926,0.03872588069971082,-5.108235451030929,0.9653081692195478,0.7477048022598871,1.4795378553584067,0.7383651551312651,0.49931569343065696,1.2692131486328233,0.9733702227492251,1.2484165323316607,0.7564969724088759,0.7128922943879651,0.7606489421349347,1.1527714460376115,0.8239759683673077,0.9450416294974726,1.2027039620963056,1.4314784574802162,1.1211294660007685,0.8334749065136208,0.8223502068370105,0.8251261402868479,0.9235536678031144,0.5819338838513821,0.980275272089439,0.8088147925128961,1.1047231741051153,1.0773105212663896,1.1615196073013152,1.6730085108299186,1.3560632144332738,1.1486564347866597,1.1058292485124248,1.1454065012437278,1.0778931497038857,0.9395105878906577,1.0802834543941444,1.1311584193629778,1.149132404314945,0.9522375854891466,0.9619178203452332,1.3541012435623667,1.267767960046101,1.281552503033553,1.1541443169724852,1.2786368760985833,0.9734422273668569,0.994107943241917,0.9300730084061525,1.2475966553325957,1.2109051835969433,1.384645281158761,1.0777045626248676,1.0236901539299388,1.2645985401459856,0.9796455987156606,1.2046505595714967,0.9949801360442627,1.3765672305639056,1.5101092936556602,1.3770159508475412,1.0669128582325516,0.9080091281589221,0.5529816799601197,0.49738469807454855,1.0945177593710518,0.8255018248175183,0.9987931279721337,0.9146765165366038,1.0100426840564214,0.6049697024721151,0.501119721471502,0.4778503315255818,1.011687252734259,1.0076682406234403,0.5875334522747547,0.5400304795415756,0.6839593015952771,0.6571263926238956,1.1127147868561025,1.0155201316153442,1.1262935072071625,0.649277138478174,0.619658289287126,0.4980570209844066,1.1291685991937657,0.6661238613811002,0.4350282485875706,0.5006015402546817,0.6339383175149397,0.601256153454422,0.8496242332048728,0.6724559804687845,0.8430701847011336,0.4573066380515922,0.435758582168695,0.41568594045241475,0.7957066342290747,6.0,0.11151923273135395,3.333333333333335,2.3125,1.435555555555556,0.8194444444444444,0.366530612244898,0.3211805555555556,0.20559334845049126,0.18562500000000004,4308.165943650112,5068.799204843306,2359.8355211546696,2062.0316288601507,20.26717830235309,0.4785806966612555,10.567697991055066,0.9178423077105405,0.0,0.34782608695652173,1.2358633084909914,2.797280371218473,3.9256717279987687,4.4839061017280555,5.070136841430028,5.177279698572884,0.23076923076923078,0.005869433301650208,0.09803921568627455,0.0625,0.04222222222222223,0.030349794238683128,0.014097331240188382,0.01529431216931217,0.010279667422524565,0.009769736842105267,0.5191909438921913,24.03846153846154,12.456747404844291,8.28,157.26561949455984,0.0,4.128030198072596,166.23488873388098,,127.28998748272134,126.62117669928013,128.7368205382079,127.30376396712165,153.4829102121358,127.12646879033849,127.31822346350158,139.78442159786056,0.02625820568927795,0.04237288135593311,-0.46198900795797726,0.5453460620525062,0.46934306569343065,-0.08761768121430298,0.024198034512441274,-0.07588594299371362,0.050213302234189364,-0.0749042203384718,0.019702306531106387,-0.033230762022103025,0.19071749395370263,0.13852512637526077,0.008178918098508717,0.009420927019218789,0.08912792931233192,0.21775174486738486,0.19191685456744456,0.21787872655109383,0.14489573865978111,0.194435967743728,0.13073278484268877,0.21279143135347606,-0.10148218488088845,-0.10390150303805497,-0.025486870308677998,-0.2630251722429864,-0.20118440986090083,-0.047470157627261596,-0.10058174806282426,-0.05334912218798736,-0.10850937353762553,-0.09345548809444537,-0.09172578124925504,-0.07412499395901784,-0.1698337748090138,-0.06003568242640466,0.05182105790981305,-0.2207009169702299,-0.2547829427583558,-0.2305321610623231,-0.17241815821036632,-0.23037254383344635,-0.0730820997672205,-0.020465278251890897,-0.04455192186253825,-0.2181808016843556,-0.20470043421007542,-0.22929132066886573,-0.07108363942857825,-0.08820938315900755,-0.2179395483270465,-0.0030140780252145218,-0.20110965639870254,-0.02403005991454313,-0.24384981393159358,-0.21354891206087787,-0.1880634123942833,-0.09998846341488943,0.008388037928519311,0.02086241276171433,0.012587939685434603,-0.05952548083672613,-0.001846285959639317,-0.014356933728917557,0.007840628367517427,-0.01257097445904711,0.020853110178359478,0.05194253634362736,0.01885542658699256,-0.005015559278408072,-0.09259472532534838,-0.006155218554862251,-0.03845002078804855,0.07825650043964323,0.08390318862850557,-0.13453119922167425,-0.09453564438704982,-0.13505793488775233,-0.016969691246630624,-0.04346404035368212,0.007424353359321143,-0.12773695416695702,0.2472704244624248,0.18450926290894665,0.10855358467093192,0.12205139590386854,0.17930175974650595,0.06528815477120115,0.24527795351244314,0.08936566844465617,0.21210371975215236,0.16417494169111782,0.1241702085174834,0.16675366341465983,6.95511734244883,15.373281579605834,7.104022792175136,10.438283366344056,24.768705827538888,31.797841415031048,35.034592987682814,36.018477859016684,36.12647785901668,50.57447628090562,45.03599184099953,0.0,5.538484439906101,0.0,5.538484439906101,12729.72493583332,12195.252621637273,596.5480476650355,31.0,34.0,40.0,45.0,47.0,47.0,38.0,34.0,33.0,354.2194948200008,26.0,4.795790545596741,5.594711379601839,6.434546518787453,7.254884810077338,8.103191752285786,8.934455109403913,9.788581624034771,10.627769962026784,11.48640693640942,0.5714285714285714,0.9571428571428571,1.1224554090794334,0.5270317684979245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6503399272882806,0.9451680672268908,0.9876703776922275,0.5941395423221193,1.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,6.0,0.0,3.0,0.0,7.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,5.749511833283905,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,35.953205064238674,75.4357007634626,6.076020106833881,13.716679505790452,204.22527469387882,-395.2680358302364,-16.922122251957706,-7.058357782682794,-18.82228742048745,477.218125652678,923.6323538899112,25.002977325106894,16.493434890891272,26.38949582542604,0.47058823529411764,0.9375638182190208,0.2565126566451423,35.21706779118594,0.17076041527433736,78.30178011418364,0.062436181780979316,9.0,0.2692307692307692,0.21281001851581557,0.48167890696568083,0.6759827461359748,0.772108156279066,0.8730544128054821,0.8915039235691354,5.645560000000007,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,109.52600000000007,14.268263091671919,0.0,0.0,0.0,41.54242319814374,13.716679505790452,69.84648262955753,0.0,5.749511833283905,3.970291913552122,0.0,5.241747015059643,0.0,6.695798917058491,0.0,8.246171559857563,0.0,9.855504562513977,32.0,2.0739042967614396,0.0,0.0,0.0,0.0,0.0,5.737078896708834,0.0,53.599999999999994,0.0,11.378855624688596,0.0,0.0,0.0,11.561496268981458,0.0,1.6689600493748435,62.85750290844827,4.736862953800049,0.0,5.749511833283905,19.6859847937423,9.53140013787187,20.771211599071872,43.025017565859855,47.59267666276955,0.0,6.076020106833881,0.0,29.513779035883772,36.419035928143714,31.07332728259193,332.4697774677619,,254.5222826577504,253.1764193326262,257.43368703352075,254.55000510829746,307.7151010688141,254.1932327506233,254.5791019731065,279.84507014206895,31.07332728259193,332.469777467762,,253.82997496544277,252.38521054141745,256.9542385187809,253.85973119694728,310.21270321728895,253.47677478997923,253.8909625263463,280.7658266298952,4.799210037881371,258.8916125350982,,197.66844402671032,196.87842387212845,199.37908428282262,197.68472206150153,229.06484689414538,197.4752483707454,197.70180734147817,212.5230298185494,1.195127972407382,12.787299133375457,,9.78931856375963,9.737554589716392,9.901295655135414,9.790384811857594,11.835196194954388,9.776662798100897,9.791503922042558,10.763271928541114,2.399605018940686,166.23488873388098,,127.28998748272134,126.62117669928013,128.7368205382079,127.30376396712165,153.4829102121358,127.12646879033849,127.31822346350158,139.78442159786056,52.92941176470589,0.0,13.710471316078326,0.0,0.0,0.0,0.0,55.309541150764744,0.3886918487057873,0.0,10.313875032034053,0.0,0.0,0.0,0.0,0.0,0.0,33.27181437003868,638.8966763290706,69.20834527549552,156.6477007882345,219.83761676793105,251.0987416967711,283.92766312008155,289.92766312008155,401.0,125.02033863822406,42.546724017486284,60.009513968041794,35.53,35.53,0.8888888888888888,7.969282073293976,5.700439718141092,3.5271948484140627,5.022966045953349,,5.021121188733158,5.022690585165795,5.017689920299563,5.021088741036119,4.958485940940851,5.021505962569036,5.021054679614022,4.990813872997054,0.1356613403236178,0.1931910017674365,,0.19312004572050606,0.19318040712176135,0.1929880738576755,0.19311879773215843,0.19071099772849426,0.1931348447141937,0.1931174876774624,0.19195437973065593,2.2160143395566787,2.5695320500578545,,2.569164698162589,2.569477208289369,2.5684810975788244,2.5691582359003444,2.5566118853222646,2.5692413262859413,2.5691514522047387,2.563110442292387,307.2800000000006,3116.7771727303643,142.5860660591814,,143.1551396116478,143.01726378372058,143.4520466825968,143.1579757545836,148.06439659918254,143.12146396231202,143.16095233296153,145.63146837984257,119.87604510501401,5.48407946381467,,5.5059669081403,5.500663991681561,5.517386410869108,5.506075990560907,5.694784484583944,5.504671690858155,5.506190474344674,5.601210322301638,9.00006623450452,5.915457234763384,,5.919440379606032,5.91847679376086,5.921512254920801,5.9194601910836315,5.953158736314346,5.919205113090566,5.919480983131143,5.936590686419954,10.313875032034053,11.378855624688596,0.0,6.788184458248839,0.6178544878348377,2.0739042967614396,11.561496268981458,12.396458295274888,1.7027048695092257,388.38666942125536,139.16796562410642,-269.35279438446094,-11.531468528454193,-4.809871328293946,-12.826323542117189,325.1971422517713,629.4031719048354,17.0381138872087,11.23934235544349,17.982947768709586,2087.0,37.0,1.7893772737943263,0.9068777718107908,0.0,0.0,0.382128620972825,0.16971384104045775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.045360921162651446,0.018042195912175804,0.20023279339791275,0.07190895004055395,19.689869965382485,16.97330353690552,12.294131415482816,8.825803718699522,10.611548684282402,6.302936810155103,8.150932924194043,4.191703118485831,6.141737092352367,2.5736054351564444,3.8452325384408366,1.4527358944943576,2.7004233959622486,0.8711081689644182,1.416705201176621,0.3675495991099894,3.784110371061412,1.7311569120042267,5.593405638304297,2.107879913722538,7.362442108635346,2.4964827704539085,92.66408968261211,56.48416966503149,36.61782765428309,27.81398049035486,23.333681922218172,22.619341501074317,120.0,134.0,60.819789999999976,34.43621,0.10714285714285714,26.03,11.38888888888889,6.11111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,56.0,0.0,0.0,56.0,6.0,5.0,8.0,48.0,11.0,26.0,45.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,3.0,0.0,0.0,26.0,3.0,0.0,0.0,3.0,0.0,1.0,7.0,0.0,0.0,0.0,0.0,1.0,3.5553480614894135,6.5724573525886925,4.085976312551584,4.572130331909891,5.011468280400147,5.4246746491745546,5.6726787296048675,5.806451872502536,6.026394215923399,6.315131936188491 +53469448,Cn1cc(-c2ccc3c(c2)CCN3C(=O)Cc2cccc(C(F)(F)F)c2)c2c(N)ncnc21,0,27.09433962264151,6.728386792452828,3.8867924528301887,10.60377358490566,167.8062465286317,109.47974344243985,1.5745246999430185,6.762694339622639,7.1526467505241085,8.069840754716978,240.56932435324035,27.82456140350877,6.560228070175439,4.56140350877193,9.456140350877194,148.82643394894387,107.84787116676489,1.8807623189473683,6.700035087719298,3.509746588693957,7.895267929824561,284.41907798596145,26.071428571428573,6.728945918367345,4.204081632653061,9.040816326530612,158.48563788131065,101.29433556076438,1.6893063479994186,6.812597959183673,5.146825396825397,8.051967918367346,252.66988351871873,21.737704918032787,6.353959016393442,3.7295081967213113,6.295081967213115,154.32392809051836,81.65053422960001,1.5825218327536312,6.465528688524591,3.5291438979963567,7.779434655737706,229.13798209093832,19.323741007194243,6.419041007194245,3.2014388489208634,5.330935251798561,160.93376953689017,71.08033058679709,1.404669249647748,6.498775539568345,3.7013389288569143,7.869853179856113,200.98099742271978,17.471014492753625,6.297065217391305,3.0579710144927534,4.427536231884058,161.77153069667347,63.41075702382609,1.3197379954368258,6.373014492753622,3.4774557165861513,7.787549014492753,185.24435667783683,16.56923076923077,6.356892307692307,2.8923076923076922,4.4,166.21609600677445,59.23514254873845,1.2871676153010077,6.416746153846154,3.40534188034188,7.850869938461537,180.0129508817665,17.380165289256198,6.21387520661157,3.024793388429752,5.322314049586777,163.40668634280271,64.24251231617852,1.3028614039014381,6.276833057851241,3.9886363636363633,7.701112892561984,178.39857089269657,17.358490566037737,6.174166981132075,3.047169811320755,4.669811320754717,161.19759530182202,63.61860708501131,1.324419922004085,6.256667924528301,3.0687893081761004,7.660176679245282,183.40616218017726,7.6012815948736225,0.22588679245283005,0.019575786628926315,0.7411890352438588,4.771092915628338,2.8180332340570797,36.923673503621195,0.23291126736929157,0.19943040227839087,3.0450140421660534,0.12722793022427908,46.65872114326959,0.2232798086351509,-0.009824561403508738,-0.011410605442470544,0.20816548312754116,1.264325819889703,-0.2832727764242897,1.0641596292922726,-0.002497501937891312,-0.006825106018874137,-0.2761989882839689,-0.006598075209383363,1.077742809473073,1.1432313046258014,0.08125204081632653,0.002103966424448541,0.0019761553606846565,0.8018758945372386,0.9996444239058467,5.770079302428966,0.04385820775970327,0.06816709483366155,1.1785612370022176,0.047691864923968846,5.858106963918191,-0.531686791285622,-0.009336065573770548,-0.002054365688862202,-0.1320025211702432,-0.5415847189070259,-0.40131572261291376,-2.485531027178007,-0.035091622329703066,-0.007641305464286367,0.006084438776998946,-0.006084132513174823,-5.952825205974265,-0.9508132902720189,-0.020717985611510805,0.0027297407946725743,-0.13483638151778327,-0.7381079828198673,-0.14369574477254934,-4.688857179952065,-0.02720479871052394,-0.01924937879529058,-0.23111798919710796,-0.011418118903524366,-6.111302304773005,-0.7561899897327945,-0.0208369565217392,0.00022040685802138078,-0.05538099586732087,-0.7477130961041374,-0.3798934130999755,-3.5550299675672323,-0.02981597663694728,-0.017957829131002367,-0.171802849020488,-0.012743397000325004,-5.466162178376044,-1.2622395048881343,-0.04596153846153848,-0.004460964890801432,0.08958019552537175,-0.5423556151929239,0.09819277633907028,-6.148503235751547,0.013982243253565178,-0.0420604748473314,-0.5471729681457342,-0.02404646317057806,-0.25841703819675466,1.4430034511266918,0.07659421487603287,0.002476346222963136,0.014151678930474363,1.0555092986239625,0.3383893678346347,6.978546710076532,0.013818520418112452,0.06623303137200663,0.9412995656098183,0.04591467074250719,2.63533554268805,0.28123887504450007,0.014954716981131915,0.0019338260532299981,-0.08170167319330719,0.24973300106799567,-0.3252799154831182,1.4221282232999632,-0.038627718423302065,0.014848273406906273,0.03666167279775321,0.006462517621929585,-4.6364620456257715,,,0.4603174603174604,1.3409090909090908,0.6666666666666666,0.015151515151515152,0.6742424242424242,-0.007575757575757576,0.8277135142116461,0.021056009276391813,0.034086312306694844,1.1511896537275093,0.2688620191473219,0.20748238255728918,1.978903167939155,0.47634440170461106,2.0594225886941575,1.5409916709375204,0.31046153201476256,0.05429760067392764,0.15367178506794632,0.5184309177566366,8.512490470188691,1436.0,356.6044999999999,206.0,562.0,8893.73106601748,5802.426402449312,83.44980909697998,358.4227999999999,379.09027777777777,427.70155999999986,12750.174190721738,1586.0,373.93300000000005,260.0,539.0,8483.106735089801,6147.328656505599,107.20345218,381.902,200.05555555555554,450.03027199999997,16211.887445199804,2555.0,659.4366999999999,412.0,886.0,15531.592512368443,9926.84488495491,165.55202210394302,667.6346,504.3888888888889,789.092856,24761.648584834435,2652.0,775.1829999999999,455.0,768.0,18827.51922704324,9961.3651760112,193.067663595943,788.7945000000001,430.55555555555554,949.0910280000002,27954.833815094476,2686.0,892.2467,445.0,741.0,22369.793965627734,9880.165951564795,195.24902570103697,903.3298,514.4861111111111,1093.9095919999997,27936.358641758048,2411.0,868.9950000000001,422.0,611.0,22324.471236140937,8750.684469288,182.12384337028197,879.4759999999999,479.88888888888886,1074.681764,25563.721221541484,2154.0,826.396,376.0,572.0,21608.092480880678,7700.568531335999,167.33178998913098,834.177,442.6944444444444,1020.6130919999998,23401.683614629645,2103.0,751.8789,366.0,644.0,19772.20904747913,7773.3439902576,157.646229872074,759.4968000000001,482.62499999999994,931.83466,21586.227078016283,1840.0,654.4617,323.0,495.0,17086.945101993133,6743.572351011199,140.38851173243302,663.2067999999999,325.29166666666663,811.9787279999999,19441.05319109879,402.867924528302,11.971999999999992,1.0375166913330947,39.28301886792452,252.86792452830193,149.35576140502522,1956.9546956919232,12.344297170572453,10.569811320754717,161.38574423480082,6.743080301886792,2472.912220593288,12.7269490922036,-0.559999999999998,-0.650404510220821,11.865432538269847,72.06657173371306,-16.146548256184513,60.657098869659535,-0.14235761045980477,-0.3890310430758258,-15.743342332186225,-0.3760902869348517,61.43134013996516,112.03666785332854,7.962700000000001,0.20618870959595703,0.19366322534709635,78.58383766464938,97.96515354277298,565.4677716380387,4.29810436045092,6.680375293698832,115.49900122621733,4.673802762548947,574.0944824639827,-64.86578853684588,-1.139000000000007,-0.25063261404118864,-16.10430758276967,-66.07333570665716,-48.96051815877548,-303.23478531571686,-4.281177924223774,-0.9322392666429368,0.7423015307938714,-0.7422641666073284,-726.2446751288603,-132.16304734781062,-2.879800000000002,0.37943397045948785,-18.742257030971874,-102.59700961196155,-19.97370852338436,-651.7511480133371,-3.7814670207628276,-2.6756636525453907,-32.12540049839801,-1.587118527589887,-849.4710203634477,-104.35421858312564,-2.8755000000000095,0.030416146406950548,-7.64257742969028,-103.18440726237095,-52.425291007796616,-490.59413552427804,-4.114604775898725,-2.4781804200783264,-23.708793164827345,-1.7585887860448506,-754.3303806158941,-164.09113563545745,-5.975000000000002,-0.5799254358041862,11.645425418298327,-70.5062299750801,12.765060924079137,-799.3054206477011,1.8176916229634732,-5.467861730153082,-71.13248585894546,-3.126040212175148,-33.594214965578104,174.6034175863297,9.267899999999976,0.2996378929785395,1.712353150587398,127.71662513349946,40.9451135079908,844.4041519192605,1.6720409705916066,8.014196796012802,113.89724743878801,5.5556751598433705,318.87560066525407,29.81132075471701,1.585199999999983,0.2049855616423798,-8.660377358490562,26.47169811320754,-34.47967104121053,150.7455916697961,-4.094538152870019,1.573916981132065,3.88613731656184,0.685026867924536,-491.4649768363318,0.7068999444511266,0.5371460341499176,0.424847709628437,0.28039336194545667,0.2780905501210313,0.145088882213239,0.16801595925068186,0.07867786630111975,0.10655051323775172,0.04239898307067566,0.06907975563648075,0.022782261443368805,0.04312367854317855,0.01220942598684128,0.027524819017730275,0.006486296455019787,9.014105673476045,5.67794848020695,4.1245541909153545,2.1770353975765167,0.5020956631819236,-0.4497473954990763,4.0221204443090635,0.9778092792360837,7.014099386519182,0.9969584688090363,17.430705247378047,10.939222928551239,19.005610461901963,11.689632613916535,2.0130559214777906,0.526967716417658,4.007178844219816,2.226719069103304,8.00739346368869,1.218951996546609,4.030623945312718,2.4225161379078077,20.91494578548778,13.302783514306407,0.2812386907149161,0.6403665049834032,0.8257569281008963,0.8866661665182959,0.8866661665182959,0.8866661665182959,1.166423081210375,1392.87143006931,0.0,4.0,2.0,0.0,8.0,2.0,6.0,0.0,0.0,4.0158903753142505,1.8297131506953819,0.7011558388439649,0.3303731132891867,0.3303731132891867,0.3303731132891867,145.9941872097828,1876.4494836561994,72.39750572643621,35.40470723879621,71.49343264256626,,16.0,913.0,11.73975000914047,17.96578232709628,12.328001352277514,24.34689229837061,45.5438763219303,12.393687143226153,10.966276799312087,36.01071640746645,9.967957041894417,5.733667477162185,15.190476190476193,44.25,22.0,0.5,22.25,0.0,0.0396825396825396,-0.25,0.21927569286059878,0.08448246676302518,-0.1347932260975736,0.03343640486497623,0.19394783175741737,0.0,0.664330637915543,0.8851370851370849,0.44505494505494425,0.5798481711525179,0.8517006802721087,27.31454596898432,0.6948483061209298,1.1248483061209298,37.9892585730078,8.872446631861623,6.846918624390543,65.30380454199212,15.719365256252166,0.5200521682425826,0.13761755485893412,0.03291536050156739,0.3818181818181817,0.20833333333333334,0.39586529097306966,-1.0596787881759966,-0.06024249294005435,-0.019993939399547106,-0.052983939408799814,0.6041347090269302,1.6171883490544947,0.04303686820690468,0.030512987718009334,0.0490057075471059,-6.414432889505171,0.6385794009189326,0.5862805610752575,1.7378240728729621,0.8244265803798644,0.3986548224014745,1.0308617709713064,0.6347737089571402,0.9804935629682672,0.568960014280614,0.5920518779183837,0.6021449036370466,0.8704987615394133,0.6611778469349521,0.4492874530366774,0.863963009353572,1.0941010409927663,0.6977103630588184,0.6597270576563221,0.6538278457696075,0.7771029253448045,0.4568266435456724,0.36086445528965666,0.4367096872584978,0.7831171772810054,0.8760142252578172,0.6465679481632006,1.0015324595708186,1.2152249570872904,0.9034717108530412,0.9693023426540776,0.8673903886443426,1.1261700021574275,0.65052776525948,0.5892132527485493,0.6597107199525711,1.0939940961236452,1.0465253874083196,0.9334425409889264,0.7592307118883853,1.1332628421758273,1.0614919495533255,0.9564896434491903,1.0452103773851391,1.0973447230947562,0.9418392634696239,0.9413146675733032,0.9415446517028879,1.109945318963824,1.0545765661567863,0.8715688054736415,0.9169191129699246,1.0311642929735902,1.0766346792280623,0.9369330974276204,1.0447123158477492,1.0993268079556335,0.8831487770930669,0.8681752640261885,0.8901079080683386,1.124604968504506,1.1681247658298985,1.1126862679585703,1.1133057879823296,0.7535062439961577,1.078824056111028,0.8545843542890045,1.165131535157418,0.9063669169264942,1.1289983934309171,1.0907441446590718,1.0950052008032516,1.0056949733767366,0.7888482391956623,0.3466715725121703,0.6942932067395547,0.9080112098189125,0.6883023503337974,0.6158835510349749,0.7828911565407022,0.9115931437085749,0.3779283549853799,0.33328624826497394,0.30892527949863957,0.992478903797832,0.901086549269389,0.5959914328401491,0.8045430311528117,1.0802113352545633,0.8109237427249663,0.895991518429825,0.8954771645084189,1.1396404745679107,0.6082616922527667,0.5832551213935907,0.5839723727851424,1.1351909261530522,8.0,0.12754004693398635,4.666666666666669,3.361111111111111,2.4416666666666673,1.083611111111111,0.8752380952380951,0.5234552154195011,0.45354623330813804,0.40595679012345687,7012.671465614411,7606.44574578496,3254.5866097605563,3047.446565771268,16.794700457223925,0.4736602380957237,8.839718639908881,0.8999134634670956,1.0,0.20833333333333334,1.7120300792489485,3.898207303867817,5.026764615719234,5.397547341274012,5.397547341274012,5.397547341274012,0.21621621621621623,0.004905386420537936,0.08333333333333337,0.05896686159844054,0.04521604938271605,0.023055555555555555,0.02083900226757369,0.012767200376085393,0.012598506480781613,0.013095380326563124,0.4909934919578035,24.68371073776479,9.806122448979592,4.986149584487535,187.02735814175185,1.0,4.452238444323554,215.5662465193619,,167.42152355607033,165.0538125823493,163.62578867030587,167.19047290920682,215.8491712358593,166.40146113989914,167.68262158254896,195.14914675704924,0.029373968829905336,-0.04349329722569023,-0.5828938401693433,0.2808534304059862,0.26499710700419155,-0.1005214463054668,0.028820524295555476,-0.010722976033320909,-0.034222996799388526,-0.09070532498677619,-0.05186027311575522,0.023098421539753985,0.1503998096053707,0.35970248607294597,0.10747800148881878,0.002666196161461672,0.16806964540778266,0.3547312401517259,0.15627045618478566,0.18830436266599354,0.3418089421416553,0.38704624040546454,0.374853735652989,0.12555224018957512,-0.06994699310234694,-0.041330727982779765,-0.10494422154288055,-0.17809562054140884,-0.11351376476718665,-0.14240986151719212,-0.06731537767861166,-0.15066519849408436,-0.03831564985573082,0.001998164439554051,-0.047820730105800145,-0.12758226243911844,-0.12508591852632542,-0.09171844615854272,0.13944475623978,-0.18191901809964134,-0.1547041727907034,-0.05099150110649077,-0.1269878301651708,-0.11680327455944617,-0.09652178692604649,-0.07590046745160607,-0.08974537967721673,-0.13097877856548468,-0.09948190713560412,-0.0922451299408769,0.01125915715160559,-0.07471912458756214,-0.15671736210688864,-0.13480799605512414,-0.09628050597995301,-0.12801431624032458,-0.09004559448230212,-0.05642103669849648,-0.10016194539878762,-0.11715199312025133,-0.16605614318240766,-0.20347156184944376,-0.22788176921634673,0.12086011970738199,-0.11367534122346835,0.03484443517286119,-0.16651927211815878,0.060032489675116,-0.21090302364540148,-0.17969472737029019,-0.18900302102053088,-0.0055384509447497085,0.18983686278638423,0.33908230775390447,0.12650047070414752,0.019093211390827328,0.2212300865419124,0.12007997767558642,0.18899925299664808,0.0593295488629262,0.3321110052195049,0.30912815263742766,0.3608851504663182,0.056481092454206516,0.03699887598351445,0.06620447711326362,0.09878663319574933,-0.11023054755043225,0.05234293389046409,-0.11542799125005976,0.038515350406846484,-0.16584735835066336,0.07445340949660786,0.01203990270326443,0.05079480276490683,-0.099369676922544,13.688742293716446,28.019336967078566,11.209979951870709,17.436261461530467,38.29684501325258,46.4694748934933,46.84322388085251,46.84322388085251,46.84322388085251,67.9609454269072,50.852725140938176,10.245230556487165,1.791820822239612,5.071168907242229,17.108220285969008,13256.124872408449,12385.755961759314,1676.326482640885,276.0,56.0,76.0,104.0,131.0,145.0,176.0,208.0,238.0,451.1619949200006,37.0,5.231108616854587,6.111467339502679,7.030857476116121,7.9291264873067995,8.84779106484485,9.753420191271506,10.671533463946282,11.581564940686917,12.499738032203462,0.7358490566037734,1.0200000000000002,1.1407132823801236,0.7091820070595666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6935810642865213,1.004661487236404,1.0263161511083019,0.6766520551943442,9.0,2.0,0.0,0.0,0.0,2.0,7.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,3.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,15.20067685580402,17.7923600733673,0.0,5.907179729351506,0.0,4.794537184071822,9.967957041894417,13.171245143024459,0.0,24.26546827384644,41.310277303401826,31.0401097265834,17.3704973290878,277.49648479466805,-742.8212208438277,-42.2292138445397,-14.015494732902411,-37.141061042191374,423.49067200445086,1133.6282628123715,30.16829188189651,21.389212505893802,34.352371600374894,0.5,0.8866192858878885,0.14308282121401175,55.468888791879124,0.15537554695586392,1.2163252516941205,0.11338071411211145,8.0,0.08108108108108109,0.2988920835807076,0.6805624021475849,0.8775898086564063,0.9423223286863225,0.9423223286863225,0.9423223286863225,4.368100000000003,,1.9642857142857149,2.384784755246342,2.3604916937161646,2.0651333902620452,-9.667817358838906,2.142531430100318,1.8903097657793637,-3.635596615177292,119.56240000000003,17.96578232709628,0.0,14.53505668968577,7.04767198267719,19.017941763295493,17.17833361392524,71.67908760069987,0.0,11.126902983393991,4.31748811353631,0.0,5.700443573390687,3.044522437723423,7.266128779556451,5.476463551931511,8.913953858894255,7.644440761556566,10.605718351829116,38.99999999999999,14.094920049831671,8.410957987261163,0.0,0.0,0.0,1.5058480285873381,3.6022131540398536,1.8897104894174144,54.06000000000001,0.0,12.924446750973628,0.0,0.0,0.0,0.0,0.0,-0.23275014931490356,60.45780396614655,10.633577208012664,24.67649419554305,0.0,26.98699282494985,30.860150930044504,0.0,16.690354475090988,54.98873312560889,0.0,22.160304418626513,0.0,37.58664637415703,36.75979640718563,42.309656507700275,431.13249303872385,,334.723999493093,329.9630927552897,327.1085172379623,334.25578621900377,435.1013560391067,332.67307189009523,335.2506789368689,391.4232217583138,42.30965650770027,431.1324930387236,,332.8875514719956,327.76424802528777,324.98580205670487,332.32442686876806,441.3661598305574,330.68024103120047,333.4824799988572,393.9338901292758,4.922943926851689,332.71505051412254,,261.487405359849,257.96122666320053,255.54907397281625,261.2354738170525,330.2627280296675,259.9694743053045,261.8332878792784,302.4766866573825,1.2821108032636448,13.06462100117345,,10.143151499790697,9.998881598645143,9.912379310241281,10.12896321875769,13.184889576942627,10.081002178487735,10.15911148293542,11.861309750251934,2.5270079462036734,215.5662465193619,,167.42152355607033,165.0538125823493,163.62578867030587,167.19047290920682,215.8491712358593,166.40146113989914,167.68262158254896,195.14914675704924,53.24705882352941,0.0,1.8887130100739409,0.0,38.97768079901552,6.105300532742778,0.0,54.394756008739996,1.049531716988652,0.0,0.0,0.0,0.0,1.6388372385991432,-4.438742941549533,0.0,0.0,35.86255892530024,621.5087323778163,90.73759420019427,206.6049871049943,266.4185246331194,286.07000908752264,286.07000908752264,286.07000908752264,1480.0,149.6566076127332,79.47842442130276,85.96915942841832,77.04,77.04,1.0,9.460598296172586,6.20945336562895,4.592235510470809,5.662923247426833,,5.667675223971832,5.668456434656182,5.667880026854743,5.668286784493689,5.628466214126488,5.668053969939016,5.6673336498461095,5.654887655270568,0.13915865183244877,0.17160373477051008,,0.1717477340597525,0.1717714071107934,0.17175394020771947,0.17176626619677846,0.1705595822462572,0.1717592112102732,0.17173738332866997,0.171360231977896,2.7182894132979945,2.9278627021707107,,2.9287014887247667,2.9288393154030574,2.928737623325746,2.92880938614397,2.9217594426246047,2.928768312121982,2.928641219848116,2.926442711401192,308.47000000000105,685.181846985441,227.27275817096398,,226.29286260508647,226.12460634809145,226.23213365615052,226.20229200773525,231.96901414491765,226.2179315414403,226.34610503256098,228.57844317889533,20.763086272286092,6.887053277908,,6.8573594728814085,6.852260798427014,6.855519201701531,6.854614909325311,7.029364064997504,6.8550888345890995,6.8589728797745755,6.926619490269555,7.72360674155546,6.620073342482589,,6.615752481087751,6.615008671326639,6.615484080668758,6.615352164763311,6.640526271498668,6.615421301963185,6.615987734486272,6.625801916081766,40.86739128843294,22.974241976833934,0.7735424956739755,10.042606279375224,0.1644627910058667,10.7189536092266,-0.4967457051576243,0.483500921201814,1.8887130100739409,371.25346795796173,194.52147189796432,-520.7081356093653,-29.60213654674588,-9.82468180395029,-26.035406780468257,296.86152209934824,794.6588528159688,21.147585151776582,14.993563260678657,24.0805712974536,3442.0,57.0,3.410369395896586,1.1071945263179137,0.28867513459481287,0.013498731178900972,0.9863903731227459,0.20731354720487513,0.14433756729740643,0.004499577059633658,0.0,0.0,0.0,0.0,0.17479246499677625,0.08817656065588989,0.6358992338774947,0.23775184704582145,1.1002826608181107,0.3249000558234,23.327698166887178,17.72581912694728,15.71936525625217,10.374554391981896,15.573070806777752,8.124977403941385,12.769212903051821,5.979517838885101,11.08125337672618,4.409494239350269,9.049447988378978,2.9844762490813133,6.25293338876089,1.7703667680919857,4.844368147120528,1.1415881760834825,6.751720480844173,2.260184475196518,10.647812351935771,3.1664931500218216,16.48098971359181,4.048451127179049,103.58323119225315,52.899950327014835,31.58863434196253,29.64500664553174,29.64500664553174,29.64500664553174,186.0,225.0,61.38886,29.401139999999995,0.49056603773584906,313.09,10.895833333333332,6.8888888888888875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,21.0,22.0,53.0,0.0,0.0,57.0,22.0,1.0,11.0,46.0,23.0,37.0,34.0,0.0,0.0,0.0,24.0,0.0,3.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,5.0,1.0,3.0,33.0,9.0,0.0,5.0,1.0,0.0,5.0,3.0,0.0,0.0,3.0,2.0,4.0,3.912023005428146,8.360913032314885,4.58751525074937,5.221031272587963,5.863808716654932,6.413254018136001,6.749656712328069,7.212945298331319,7.651901863091701,7.983563957531162 +1548992,CNC(=S)NCCSCc1nc[nH]c1C,0,33.806451612903224,5.912800000000001,2.6451612903225805,4.673835125448028,166.43391944639305,134.03566158064524,1.737867950889807,6.007796774193548,2.3527036594539585,7.537235806451616,208.89687719544744,27.967741935483872,6.337483870967743,3.129032258064516,4.655913978494624,153.22358088695478,105.73962554838705,1.8405513848387087,6.476032258064518,2.6682596575069693,7.808173612903227,242.6722079606269,22.41509433962264,6.093705660377357,2.7547169811320753,2.9308176100628933,161.715051922671,81.70859807547166,1.523907277238509,6.204435849056602,2.2586769159096196,7.698310037735849,188.2688418205129,19.896551724137932,5.920579310344828,2.396551724137931,1.1494252873563218,161.4647068734364,70.73337320689657,1.4769550472153443,6.034834482758621,2.008407833120476,7.576575482758621,172.4268874628675,17.4,5.80523,2.1166666666666667,0.8888888888888888,161.35408675336285,59.17624596666668,1.4239044896414996,5.921478333333334,1.8422325102880663,7.5087331,154.37038326619142,16.357142857142858,5.585703571428572,1.9642857142857142,1.126984126984127,166.20344960259445,56.596498714285715,1.2682625538692502,5.684251785714286,1.6228076621595142,7.350505624999998,133.56397347953828,14.953488372093023,5.783346511627906,2.2325581395348837,1.813953488372093,162.9270047640283,51.92641811627906,1.2847618567090693,5.873979069767443,1.9806201550387594,7.408715906976741,150.1690238308492,12.933333333333334,5.717220000000001,2.022222222222222,1.9703703703703705,168.2612230465896,42.76359846666666,1.1483878641685332,5.795635555555557,1.901303155006859,7.422040488888892,127.83097881436069,16.205882352941178,5.874108823529412,2.088235294117647,2.2941176470588234,171.05908864458792,58.62839570588235,1.174360092299648,5.934214705882352,2.1485112563543938,7.504850705882353,142.71691776263862,16.220603537981273,0.08135400624349627,0.020223589242753106,0.4432882414151926,2.89605734767025,1.7884245972491561,71.89295541519253,0.39685255013918846,0.08092799167533815,0.34321958293901084,0.04094509261186264,54.11728362275428,0.506763787721124,-0.005752133194589084,-0.012467459074372552,0.16129032258064513,1.0573476702508964,-0.37505034920216995,2.4048557773152845,0.009755652393340423,-0.0037072840790844976,0.009271035401223864,-0.005805937565036389,-0.9105436421351908,-0.6685645848467591,0.006783547012742166,0.0026877785893929763,-0.0549741817682053,0.02096436058700226,-0.040953256141205464,-2.7073590274871,-0.029234617649153586,0.006495623662458422,0.04717233622254817,0.004121413778886003,-0.22604673903637623,-1.344074060784384,-0.017398945064408495,-0.0010384823383377201,-0.13461193440740607,-1.1877394636015324,-0.07229658858568261,-6.096095961354916,-0.0271708651941883,-0.01611608956187882,-0.07819450554010259,-0.006596715526211909,-4.615388774693525,-3.385119667013527,-0.019750457856399565,-0.0009544890997814961,-0.034148456468955944,-0.740740740740741,-0.15740055512715098,-15.403079453902189,-0.06761758441834205,-0.021542023933402703,-0.12183423402976722,-0.009221160353798118,-13.675052993785162,0.8439125910509881,0.002724449977701853,0.00010692185112850128,0.03251821019771073,0.31746031746031733,0.008398569411004848,3.6636367633789226,0.015682034092384212,0.0036954530251227173,0.022757024749066213,-0.0001477395012635788,5.464599629083827,-0.13133121990174976,0.003911035016818732,0.0015921667143181481,-0.01718171478353459,0.056847545219638244,-0.08465578692661013,-0.8632064572030064,-0.014483504561089326,0.001937124603731606,-0.012892659644401346,0.0026784737797352484,-6.474442498997828,-1.7245461903110184,0.010566638917793985,-0.0005656202433455444,0.06925656145219102,0.7555555555555558,-0.12828038740835085,-7.222580224511498,-0.038688599010563283,0.008694732338998768,0.07286741206076773,0.001328570470574627,-0.8346733247124699,3.0801554753014635,0.004240775540184841,-0.0020594672337362367,0.01306849482769176,0.4509803921568628,0.2907083930721474,13.95835993585114,0.0757587620368002,0.00713804248025953,0.01957692289284517,0.004824554446960883,11.295960694989034,,,0.5177777777777778,0.9666666666666667,0.3333333333333333,0.0,0.6333333333333333,-0.3,0.8625823897047595,0.011855430476976458,0.01758876381030979,0.47200069502393566,0.1754913777032365,0.30693409597799337,1.3345830847286952,0.48242547368122984,1.9535232718245656,1.185110587530869,0.5196773348034587,0.0,0.0,0.7684126842936965,7.8736012423225805,1048.0,183.29680000000002,82.0,144.88888888888889,5159.451502838185,4155.105509000003,53.873906477584015,186.2417,72.93381344307271,233.6543100000001,6475.80319305887,867.0,196.46200000000005,97.0,144.33333333333334,4749.931007495598,3277.9283919999984,57.05709292999997,200.75700000000006,82.71604938271605,242.05338200000003,7522.838446779434,1188.0,322.9663999999999,146.0,155.33333333333334,8570.897751901563,4330.555697999997,80.76708569364098,328.8350999999999,119.70987654320984,408.01043200000004,9978.248616487184,1154.0,343.39360000000005,139.0,66.66666666666666,9364.952998659312,4102.535646000001,85.66339273848997,350.0204,116.48765432098763,439.441378,10000.759472846315,1044.0,348.3138,127.0,53.33333333333333,9681.24520520177,3550.5747580000007,85.43426937848997,355.2887,110.53395061728398,450.523986,9262.222995971486,916.0,312.7994,110.0,63.111111111111114,9307.393177745289,3169.403928,71.02270301667801,318.3181,90.87722908093279,411.6283149999999,7479.5825148541435,643.0,248.68389999999997,96.0,78.0,7005.861204853217,2232.8359789999995,55.244759838489976,252.58110000000005,85.16666666666666,318.57478399999985,6457.268024726515,582.0,257.27490000000006,91.0,88.66666666666667,7571.755037096533,1924.3619309999997,51.677453887583994,260.8036000000001,85.55864197530866,333.9918220000001,5752.394046646231,551.0,199.71970000000002,71.0,78.0,5816.009013915989,1993.3654539999998,39.92824313818803,201.76329999999996,73.0493827160494,255.16492399999998,4852.375203929713,502.8387096774195,2.5219741935483846,0.6269312665253463,13.74193548387097,89.77777777777774,55.44116251472384,2228.6816178709687,12.302429054314842,2.5087677419354826,10.639807071109336,1.2692978709677418,1677.6357923053827,15.709677419354843,-0.1783161290322616,-0.3864912313055491,4.999999999999999,32.777777777777786,-11.62656082526727,74.55052909677381,0.3024252241935531,-0.11492580645161943,0.28740209743793976,-0.17998406451612806,-28.226852906190913,-35.43392299687823,0.3595279916753348,0.14245226523782775,-2.913631633714881,1.1111111111111198,-2.1705225754838895,-143.4900284568163,-1.54943473540514,0.3442680541102964,2.500133819795053,0.21843493028095817,-11.98047716892794,-77.95629552549427,-1.0091388137356927,-0.06023197562358777,-7.807492195629552,-68.88888888888887,-4.193202137969592,-353.5735657585851,-1.5759101812629215,-0.9347331945889716,-4.53528132132595,-0.3826095005202907,-267.69254893222444,-203.10718002081163,-1.185027471383974,-0.057269345986889764,-2.0489073881373567,-44.444444444444464,-9.44403330762906,-924.1847672341313,-4.057055065100523,-1.2925214360041621,-7.310054041786033,-0.5532696212278871,-820.5031796271097,47.259105098855336,0.15256919875130376,0.005987623663196072,1.8210197710718008,17.77777777777777,0.4703198870162715,205.16365874921968,0.8781939091735158,0.20694536940687216,1.274393385947708,-0.008273412070760412,306.0175792286943,-5.647242455775239,0.1681745057232055,0.06846316871568037,-0.7388137356919874,2.4444444444444446,-3.6401988378442356,-37.117877659729274,-0.622790696126841,0.08329635796045906,-0.5543843647092579,0.11517437252861568,-278.4010274569066,-77.60457856399583,0.47549875130072927,-0.0254529109505495,3.1165452653485954,34.00000000000001,-5.772617433375788,-325.0161101030174,-1.7409869554753477,0.3912629552549446,3.2790335427345476,0.059785671175858215,-37.560299612061144,104.72528616024975,0.1441863683662846,-0.07002188594703204,0.44432882414151986,15.333333333333336,9.884085364453012,474.5842378189388,2.5757979092512064,0.242693444328824,0.6656153783567358,0.16403485119667002,384.0626636296272,0.7397341225498538,0.7063582634021605,0.4824254736812298,0.42146738976954495,0.323316535906517,0.2525631743611585,0.22539402824980934,0.1625467162359134,0.14656584548461332,0.10019111373575662,0.10445422672190922,0.08033888985996909,0.07235852407762033,0.05718919363298891,0.048848326341022645,0.033428575664325236,16.004799954666186,5.7816983159120845,3.1820898557490565,2.2466436835910235,0.34843343612330124,-0.35129695433068725,3.1774198559754234,0.9776304563814314,5.033708001572632,0.6514746411493088,14.556487935645263,10.31320990536908,32.06278424705235,11.799342825420732,2.9353144620638734,1.0049973854997274,3.166077887720094,2.3171379391199944,3.039635949234312,0.6250673159366213,3.3287657046462136,2.5138178046874806,24.440651064877798,15.585660618804189,0.3236974461946628,0.658200246055443,0.8627807210785693,0.875462116706493,0.875462116706493,0.875462116706493,1.9237925385853591,310.81591823297987,0.0,0.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,3.307397581063897,1.6056270164779787,0.5648314517524806,0.5003153227202244,0.5003153227202244,0.5003153227202244,195.18508667095404,720.5981887395094,42.180829651275225,23.245102862564817,51.331282161955755,,10.0,242.0,0.0,0.0,0.0,5.112436884724758,29.438319609103075,0.0,6.3273200747645415,25.733294131758928,20.60153424990708,12.217873443046695,7.7666666666666675,14.5,5.0,0.0,9.5,0.017777777777777833,0.0,-4.5,0.12903225806451596,0.015900944933202932,-0.11313131313131303,0.09037037037037021,0.09922427440633219,0.0,0.5623655913978497,0.8422222222222221,0.43333333333333374,0.5464646464646468,0.7518518518518519,12.938735845571394,0.17783145715464688,0.26383145715464684,7.080010425359035,2.6323706655485477,4.6040114396699,20.01874627093043,7.236382105218448,0.6147757255936678,0.23605150214592274,0.0,0.19313304721030042,0.5555555555555556,0.2921974399771871,-0.4483362244118371,-0.040282405091662296,-0.01446245885199475,-0.06404803205883387,0.7078025600228129,1.086024324560941,0.04953269845872129,0.03503304272777228,0.04525101352337253,-3.4452801686211036,0.7130484988452654,1.1608992954828015,1.8112365041164775,0.8450704225352111,0.7204167997444909,1.4127437738023547,0.720490931844769,0.8174790257911312,1.086409212593768,1.0613737216623902,1.194989462551229,1.0011183705875446,1.0660232108879106,1.0441281110963416,1.052341235538166,1.3798830720170074,1.1597468709135068,1.1237695864095525,1.0579968576862382,1.0924947058677876,1.0130283436393275,0.9624894370178689,1.0324459997989441,0.980434482771171,1.1320213161317723,1.1909389275523865,1.0924745032970333,1.449125789218067,1.4624231819733702,1.094936927823412,1.1279916609305174,1.119751501039776,1.1697664812642397,1.2284985589459725,1.1524687420883817,1.0796572469347547,1.3766839876828325,1.127152691439886,0.9280293739898294,0.8732394366197183,1.1089108910891095,1.1283883014799425,1.3691200667841015,1.325226553658491,1.163459634469049,1.2760881725438664,1.1433925662330862,1.2706946676245923,1.145283459804245,0.7759864720857264,0.7417642436256939,0.7406941649899396,0.710749646393211,0.9101213592041032,1.1337203735111014,1.117415902535056,0.8033041631322113,0.791044083895427,0.8496308609065253,0.913250961300195,0.726341371717063,0.7990832923730312,0.6910440277007011,0.9900098264002618,0.8910891089108914,0.9540909682522498,0.7444572900202373,0.8183423080645109,0.8365637643392828,0.9232375293624616,0.7487931189101168,1.068533409611411,1.1163287999315712,0.8413646759067399,0.9424266110553828,0.679186228482003,0.6472772277227725,0.9657814501999836,1.1091203022655245,1.07722835347666,0.8714504057597569,0.715890895782474,0.9418220057008568,0.9676529603761386,0.5255456686138658,1.1041245134605853,1.3112592887523582,0.9631317315658656,0.9134755387303439,0.7054944051469252,0.538081235654073,0.5228560020730325,1.0386456046445385,0.9829808595830402,0.9962374378359498,0.6695950269030276,2.5,0.020000000000000004,1.5555555555555562,0.6944444444444444,0.28500000000000003,0.19111111111111112,0.09637188208616779,0.10331632653061223,0.11689814814814814,0.06938271604938272,2682.3401662165807,3095.1767319566825,1525.0462516140258,1357.7529330652826,13.144540995455122,0.45041489118129846,7.2240439933590865,0.8195543946768078,1.0,0.5555555555555556,1.646798729322978,3.3485692939088962,4.389364858634394,4.4538809876666505,4.4538809876666505,4.4538809876666505,0.16666666666666666,0.006666666666666668,0.0864197530864198,0.04629629629629629,0.025909090909090916,0.01911111111111111,0.010707986898463086,0.01291454081632653,0.014612268518518517,0.00867283950617284,0.3979772204757324,13.066666666666666,7.302469135802469,5.04,99.63147884762363,1.0,3.5823304119658403,64.0589808955281,,46.116420130645345,55.11762677807887,55.14005860630576,46.11952805029175,65.31465330389739,55.141760667187135,54.717784060966046,64.52010868865175,0.03124198101103413,-0.07070497766726674,-0.6164810274140692,0.36384976525821583,0.3650990099009903,-0.20970990321820063,0.03345050656808979,0.024582561936212364,-0.045809663657009406,0.027011965115263544,-0.14179812999993774,-0.01682537594611163,-0.041216998077863436,0.08338307264719942,0.13290314380549986,-0.12401452741606875,0.007238931440313902,-0.02289906781879271,-0.037658196298256175,-0.07366619576691671,0.08026423896094145,0.1374406897724439,0.10065708772366887,-0.004176978663824362,-0.08286214860237315,-0.21386709601408752,-0.051350050966341126,-0.3036668285575521,-0.4101229088426085,-0.040424733979215415,-0.08479406537329079,-0.06846589541797989,-0.19914110344579342,-0.22782646861381894,-0.16111126158011677,-0.08528493053840064,-0.20869258403900426,-0.24277179168393423,-0.047196819927675625,-0.07703442879499214,-0.255775577557756,-0.08801073043238991,-0.21425019134276937,-0.1703846539341286,-0.2661875512717979,-0.35497459960324235,-0.225207949612173,-0.25269289362549074,0.0520272004105722,0.03348882376545107,0.0052869868867028895,0.0733568075117371,0.10961810466760961,0.004696071293093937,0.05095960713008492,0.03951602197562807,0.04566347129863181,0.06630456384276322,-0.003608234634222701,0.10097697562163242,-0.008096568021913105,0.04807427682310844,0.07872819682038801,-0.038759689922480606,0.01962928851024638,-0.04733539622348206,-0.012006829490008588,-0.0364959342103497,0.023936397822682184,-0.03756388121563662,0.06541623449544327,-0.11963724092529228,-0.10631825050608726,0.1298846781579207,-0.0279683411562677,0.1562336984872196,0.26089108910891107,-0.07172814979488863,-0.10046297558363014,-0.09748859871756903,0.10743788594037712,0.21230552008949927,0.032447611809521534,-0.015423415013415811,0.18989154553276272,0.05212743337423365,-0.101834902252785,0.029480806407069907,0.1557221898660455,0.1625499859034018,0.194154766002309,0.19089901780958507,0.08820239242925343,0.057039061481302285,0.11782985796845187,0.20873111026288665,2.102578844744821,4.0478263530490555,0.8630543739971821,20.238172882845983,36.5993693254269,38.48713641596053,38.55216867402504,38.55216867402504,38.55216867402504,29.302849077368485,17.776658812963035,7.7951600220518795,0.0,0.0,11.526190264405447,3267.9821196301373,3218.889804184571,366.42407425619604,10.0,18.0,20.0,20.0,16.0,14.0,13.0,13.0,13.0,244.08163851199998,15.0,4.204692619390966,4.962844630259907,5.746203190540153,6.523562306149512,7.313886831633462,8.099554282376364,8.89439598980643,9.685766771390307,10.484165678200952,0.698924731182796,0.9659354838709675,1.1395279046309716,0.6563204159627866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6934264632026274,0.9547122074636307,0.9970631769377158,0.6045350387057378,1.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,15.617555728959871,0.0,5.112436884724758,0.0,0.0,0.0,4.9839785209472085,11.761884949391115,0.0,0.0,19.14161064273732,30.792063596931804,12.021248069613002,137.22781528946763,-210.55694600188252,-18.918257619798872,-6.792159548447825,-30.07956371455464,332.41290196042166,510.0412427376268,23.262572031476353,16.452943314116993,21.251718447401117,0.5,0.91235999858885,0.23841263483760125,29.251718371548314,0.10895190745719328,218.43167495143356,0.08764000141114996,5.0,0.3333333333333333,0.3324048192984058,0.6759056533323778,0.8859892873909204,0.8990118091058942,0.8990118091058942,0.8990118091058942,1.0452199999999996,,1.8214285714285716,0.6934906819031346,0.7271973512910068,1.8207181187946269,-1.2244514106583069,0.6679926560587519,0.703764180767583,-0.9621407626307792,69.14710000000002,0.0,0.0,20.60153424990708,0.0,12.676590806437414,19.345281995336553,17.715176064461463,0.0,0.0,3.4339872044851463,0.0,4.634728988229636,2.3978952727983707,5.998936561946683,4.59511985013459,7.43543801981455,6.529418838262226,8.91341571815747,21.666666666666675,1.7357197709330645,4.2297668388342995,3.0660321642175896,0.0,0.0,0.0,2.2892573433694468,0.0,29.943999999999992,0.0,0.0,4.95649134962627,0.0,0.0,0.0,0.0,0.7005092592592594,35.32536504356012,10.633577208012662,0.0,0.0,34.42567592195573,5.752853606746789,6.923737199690624,11.387855989696922,6.3273200747645415,0.0,0.0,0.0,20.345932894846385,21.49622035928145,18.57232605691018,128.1179617910562,,92.10476556799327,110.14278813190398,110.18315756577272,92.11309049279933,130.7949046211892,110.19445564689978,109.34173289782976,129.16850281232092,18.57232605691017,128.1179617910562,,91.01190842513611,109.5417628742546,109.55291986132053,91.02065962152255,131.85375801845308,109.61552867831551,108.73180394116456,130.00235813993424,4.35716606502445,101.77527362996778,,73.24093191608968,89.87853883102937,90.27320530676533,73.2442156568534,103.54110114941969,89.71026715119703,88.7568431918877,103.14564907257207,1.2381550704606785,8.541197452737078,,6.140317704532885,7.342852542126932,7.345543837718181,6.140872699519956,8.71966030807928,7.346297043126652,7.289448859855317,8.611233520821395,2.257205427267701,64.0589808955281,,46.116420130645345,55.11762677807887,55.14005860630576,46.11952805029175,65.31465330389739,55.141760667187135,54.717784060966046,64.52010868865175,29.596078431372554,0.0,3.8539999597431054,0.0,0.0,0.0,0.0,30.908958485069192,2.852439767573696,5.970573795876375,0.0,1.8452097505668932,0.0,0.0,0.0,0.0,0.0,18.74058619987787,428.48140412737547,51.050760609012315,103.80564811117578,136.07031061766622,138.07031061766617,138.07031061766617,138.07031061766617,167.0,95.91507229974805,41.15931312251377,58.938940453828664,110.13000000000001,52.74,1.0,5.974127627454705,4.906890595608519,2.993740834578336,3.8219185834936553,,3.813590677690686,3.8302635516665022,3.8324542476530175,3.8135684878461533,3.8006531168334607,3.828905728634223,3.8271697898589276,3.812263341030439,0.1995827223052224,0.25479457223291035,,0.2542393785127124,0.2553509034444335,0.2554969498435345,0.25423789918974354,0.25337687445556406,0.2552603819089482,0.25514465265726183,0.2541508894020293,1.5019888287618477,1.7462176516307126,,1.7440362885230656,1.7483987213788132,1.7489705018106578,1.7440304698836346,1.740638032922969,1.7480441599383196,1.7475906798751066,1.7436881736311747,186.52999999999966,223.29485714350687,61.86679015041134,,62.14561627901628,61.29157220979128,61.176324059320066,62.146701222651046,62.678946342053635,61.36195945883827,61.45175254544435,62.14640070582409,14.886323809567125,4.124452676694089,,4.143041085267752,4.086104813986085,4.078421603954671,4.143113414843403,4.178596422803576,4.090797297255885,4.096783503029624,4.143093380388273,5.813958235535929,4.530448635755864,,4.534945389048105,4.521107457255772,4.5192253610003075,4.534962846983666,4.543490715340679,4.522255198471475,4.523717463574295,4.534958011368136,0.0,7.295799003051889,6.671083055135634,2.2892573433694468,1.9696912792894934,0.0,1.7357197709330645,2.9217089999580077,1.8150394480693002,214.05958151099813,64.4477695991809,-98.88611514227031,-8.884784077680527,-3.1898746820087207,-14.126587877467186,156.11463369980956,239.53613506632394,10.925051013939768,7.7269720989136745,9.980672294430164,466.0,15.0,0.6910440616569953,0.3571500504281581,0.0,0.0,0.11785113019775792,0.03952847075210474,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.032274861218395144,0.20118446353109126,0.055096634447777064,0.1422588984322123,0.05077262294812929,11.096011838247808,10.595373951032407,7.236382105218447,6.322010846543174,5.819697646317306,4.546137138500853,4.507880564996187,3.2509343247182683,2.931316909692266,2.0038222747151324,1.6712676275505476,1.2854222377595055,1.0130193370866847,0.8006487108618447,0.6350282424332944,0.4345714836362281,1.5130193370866847,0.7388586575017835,1.673419623913643,0.8246212861265808,1.3499530305066456,0.7794354843747223,54.68931168497379,27.051099900605223,22.535487791775818,22.344894481428277,22.344894481428277,22.344894481428277,66.0,71.0,35.898687999999986,22.591311999999995,0.16129032258064516,15.06,5.583333333333333,3.611111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,31.0,0.0,0.0,31.0,5.0,1.0,3.0,28.0,6.0,15.0,25.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,3.0,3.0,1.0,15.0,6.0,0.0,4.0,0.0,0.0,1.0,5.0,2.0,0.0,0.0,1.0,1.0,2.970414465569701,3.7480324053189147,3.3758795736778655,3.722676833697227,4.021997858636718,3.7612001156935624,3.609227295166317,3.581781318557569,3.661957796547672,3.7827681695708835 +9849808,CC(C)C(=O)Oc1ccc(CO)cc1[C@H](CCN(C(C)C)C(C)C)c1ccccc1,0,18.119402985074625,5.787386567164179,2.7313432835820897,4.895522388059701,162.77910900678677,70.93375471641792,1.3746520817822836,5.863991044776119,3.3134328358208953,7.386468179104475,194.8361864707723,20.676470588235293,6.084191176470589,3.323529411764706,4.8088235294117645,144.77954165986108,76.28957722058824,1.7415341639117647,6.2342941176470585,2.7234477124183005,7.545970764705881,243.39539137716906,16.5,5.9318114754098366,3.0655737704918034,3.557377049180328,154.59658519776997,59.68778113114754,1.437204496752697,6.040074590163934,2.4863387978142075,7.471399344262294,194.34266728502797,14.411042944785276,5.896447852760737,2.736196319018405,2.6564417177914113,158.00813333894766,50.62611667484662,1.3210575067381531,5.990953987730062,2.42706203135651,7.464625717791411,174.9410239909605,12.603092783505154,5.825484536082476,2.520618556701031,2.3195876288659796,158.7958297006954,43.151591804123704,1.2373872356961546,5.910951030927834,2.3609679266895762,7.438128164948453,159.69164204123697,12.303317535545023,5.674360189573459,2.4265402843601898,2.4312796208530805,157.8859979466983,42.42780612796208,1.2342245224433364,5.770511848341233,2.1799631384939437,7.28418743127962,156.52651462849929,12.142857142857142,5.701675324675326,2.411255411255411,2.4155844155844157,162.1113287221914,42.5319384025974,1.1670390825438008,5.778537662337664,2.2314814814814814,7.333484034632035,149.61157758762647,13.976303317535544,5.825649289099527,2.5639810426540284,2.3175355450236967,155.8172381254432,48.81931323696683,1.3210969537249286,5.927417061611374,2.4863085834649814,7.404096208530805,172.5721693823952,12.274261603375528,5.838949367088608,2.1772151898734178,1.6624472573839661,158.12664923200995,41.202052497890286,1.2176137404481222,5.92500970464135,2.6952648851383025,7.43900293670886,154.20209008788046,6.941857874805076,0.08669578970817549,0.011352895264904208,0.5480062374693696,3.0911116061483632,1.338022874233746,33.196388845177104,0.23270972529525286,0.08534912007128528,1.0108908195341701,0.051587373579861866,51.87945547208349,0.19115353871555324,0.0009636703445023721,-0.005760504254312398,0.2483063174033258,1.2598541532897407,-0.12764432087091726,0.893822280152135,-0.007310768667113472,0.0016638298848166214,-0.09155977866010888,-0.0005318257308715449,-0.36329366155445386,0.6572368156769371,0.010898986411227513,0.0005906730473282972,-0.007511987408200029,0.3960427858261907,0.018943905575613783,3.101911881027939,0.010838876419723418,0.010736798695536339,0.09568015075101616,0.006671959916590277,3.2711458217002325,-0.19366631725540376,-0.006215961853583397,8.028202226492576e-05,-0.011883171816041118,-0.14586849654301529,0.1120819260243582,-0.9155923221480736,-0.002760926288882733,-0.005289647495513847,0.031519826621554496,-0.0035546586270187386,-0.2525075978060413,-0.5012516276901383,-0.01202092434427335,-0.0009140542403757432,0.027389977332907694,-0.09280417423576076,0.03372354612129745,-2.3080952709349094,0.006361689347662834,-0.011729540135910637,-0.0881826251110963,-0.006873999830054219,-0.4677751576500907,0.15710230062110744,0.004133969080817867,0.00010011129446061898,0.06499510652157617,0.49232193703618854,-0.14665111679155923,0.6890421147861174,-0.016709110486908988,0.004488723884292189,0.010571772717840152,0.001495539909563028,-1.8312007552131555,1.1765759301958902,0.01045971200404258,0.0012327587747367169,-0.010951252653190722,0.32389130139185834,0.19184800438517477,5.647275902965305,0.03855146468873987,0.011060106523015843,0.05623207967828152,0.005284993674774025,8.956539741836925,-0.2772897203168565,-0.001978268310424914,-0.0013707160334268669,-0.14070624454300615,-0.480868980414473,-0.13758022623617383,-1.3625391259297353,-0.02113490196064571,-0.0017509450695169062,-0.005503066356928208,-0.001560136400828144,-3.681261800811734,-1.1361396305831506,0.0006239407534404807,0.0009557999680091089,-0.13463008028062975,-0.727360740224816,-0.17444115572591565,-5.513031426699866,-0.04044942951247055,-0.002029723383836471,0.03473547935115022,0.0025722792950042903,-9.886964226475786,,,0.48000000000000004,1.0416666666666667,0.4666666666666667,0.016666666666666666,0.575,-0.10833333333333334,1.1942836786849336,0.02249745672522252,0.02823079005855585,0.8267303011090092,0.19058326496854835,0.28405973038533233,2.021013979793943,0.47464299535388066,1.9805499503449198,1.7256940142888724,0.07130450749420643,0.18355142856184173,0.0,0.25485593605604817,6.138467821552254,1214.0,387.7549,183.0,328.0,10906.200303454714,4752.561566000001,92.101689479413,392.8874,222.0,494.89336799999984,13054.024493541745,1406.0,413.725,226.0,327.0,9845.008832870553,5187.691251,118.424323146,423.93199999999996,185.19444444444443,513.126012,16550.886613647497,2013.0,723.681,374.0,434.0,18860.783394127935,7281.909298,175.338948603829,736.8891,303.3333333333333,911.5107199999999,23709.805408773413,2349.0,961.1210000000001,446.0,433.0,25755.32573424847,8252.057018,215.33237359831895,976.5255000000002,395.61111111111114,1216.733992,28515.386910526562,2445.0,1130.1440000000002,489.0,450.0,30806.390961934907,8371.408809999999,240.053123725054,1146.7244999999998,458.02777777777777,1442.996864,30980.178555999973,2596.0,1197.29,512.0,513.0,33313.94556675334,8952.267092999999,260.42137423554396,1217.5780000000002,459.9722222222222,1536.963548,33027.09458661335,2805.0,1317.0870000000002,557.0,558.0,37447.71693482621,9824.877771,269.586028067618,1334.8422000000003,515.4722222222222,1694.034812,34560.27442274171,2949.0,1229.2120000000002,541.0,489.0,32877.437244468514,10300.875093,278.75145723595995,1250.685,524.6111111111111,1562.2642999999998,36412.72773968539,2909.0,1383.8310000000001,516.0,394.0,37476.01586798636,9764.886441999997,288.57445648620495,1404.2273,638.7777777777777,1763.043696,36545.89535082767,465.1044776119401,5.808617910447758,0.7606439827485819,36.71641791044777,207.10447761194033,89.64753257366098,2224.158052626866,15.591551594781942,5.718391044776114,67.7296849087894,3.456354029850745,3475.923516629594,12.998440632657621,0.0655295834261613,-0.3917142892932431,16.884829583426153,85.67008242370237,-8.679813819222375,60.77991505034518,-0.4971322693637161,0.11314043216753025,-6.226064948887403,-0.036164149699265055,-24.70396898570286,80.18289151258634,1.3296763421697566,0.07206211177405226,-0.9164624638004035,48.31721987079526,2.3111564802248816,378.43324948540857,1.3223429232062571,1.3098894408554334,11.672978391623971,0.8139791098240138,399.0797902474284,-31.567609712630812,-1.0132017821340937,0.0130859696291829,-1.936957006014702,-23.77656493651149,18.269353941970387,-149.241548510136,-0.4500309850878855,-0.862212541768757,5.137731739313383,-0.5794093562040544,-41.15873844238473,-97.24281577188682,-2.33205932278903,-0.17732652263289417,5.313655602584093,-18.00400980173759,6.542367947531705,-447.77048256137243,1.2341677334465897,-2.2755307863666636,-17.107429271552682,-1.3335559670305186,-90.7483805841176,33.14858543105367,0.8722674760525699,0.021123483131190605,13.713967476052572,103.87992871463578,-30.943385643019,145.38788621987078,-3.5256223127377964,0.9471207395856519,2.230644043464272,0.3155589209177989,-386.3833593499758,271.78903987525064,2.416193472933836,0.2847672769641816,-2.5297393628870566,74.81889062151927,44.31688901297537,1304.5207335849855,8.90538834309891,2.5548846068166595,12.989610405683031,1.2208335388727998,2068.9606803643296,-58.50813098685673,-0.41741461349965686,-0.28922108305306893,-29.689017598574296,-101.4633548674538,-29.029427735832677,-287.49575557117413,-4.459464313696245,-0.3694494096680672,-1.161147001311852,-0.3291887805747384,-776.7462399712758,-269.2650924482067,0.14787395856539393,0.2265245924181588,-31.90732902650925,-172.3844954332814,-41.34255390704201,-1306.5884481278683,-9.58651479445552,-0.4810444419692437,8.232308606222603,0.6096301929160168,-2343.2105216747614,0.7419594688711608,0.6420149115254268,0.45933193098762665,0.3548990942399572,0.3037963578210484,0.2091275613579377,0.19034373487484452,0.10612766976717516,0.12063911204711804,0.06234980482211474,0.07351813033839144,0.030398417766646757,0.0470822640418877,0.01762383027630706,0.03171353202174107,0.010484416125450638,8.028918784324006,5.683053057326497,3.5552008460320352,2.1826468593671544,0.42992940351601605,-0.464024619954628,3.215167314665141,0.97755901471144,6.028760275930615,0.9871664665422517,14.543284386593431,10.943424947939079,16.01418247640496,11.694287531953089,2.001014862093615,0.7414034580654735,3.501315616897444,2.2325569955066067,7.008273958325827,1.2340198977900194,3.7142247466110336,2.428572100153189,20.909183820037875,14.701233861721901,0.20777730807181194,0.4829678283872449,0.6724028111287422,0.7695183845237753,0.7857043134229474,0.7857043134229474,2.210827393488994,791.1809367591744,0.0,1.0,8.0,0.0,9.0,3.0,3.0,2.0,0.0,4.77188201047915,3.057770154091094,1.8778139929570914,1.2728986942558844,1.172079477805684,1.172079477805684,258.9869003290203,1495.98495239468,50.60100911045774,22.328133617831043,44.042076143629956,,11.0,532.0,0.0,9.901064578912528,24.411999344787553,17.833193491579827,24.09248101223258,5.563451491696996,0.0,50.245676810150904,44.7275926665362,4.736862953800049,14.4,31.25,14.0,0.5,17.25,0.0,0.019999999999999987,-3.25,0.08303934871099072,0.03332703570753859,-0.049712313003452135,0.015806451612903172,0.10640506329113886,0.0,0.5194029850746266,0.7899999999999996,0.43636363636363584,0.486075949367088,0.7741935483870964,35.82851036054801,0.6749237017566756,0.8469237017566755,24.801909033270277,5.717497949056451,8.52179191155997,60.630419393818286,14.23928986061642,0.6075949367088611,0.2546296296296296,0.0,0.3402777777777778,0.5,0.3106862926197111,-0.6794907925239313,-0.04042897610523669,-0.010141653619760167,-0.03088594511472415,0.6893137073802891,1.5075731644805952,0.033547465326470155,0.02250109200717306,0.033501625877346564,-5.797449419984185,1.0100197450137236,0.8275105577891758,1.5394529047848837,0.925215208034433,0.5881515693622504,1.3598271094458212,1.0164869285852982,1.2524244876280457,0.8347625218412557,0.8112554857647375,0.8258124122044249,1.1728096543539217,0.9258628363044106,0.8289961924481875,1.0148011962486922,1.5176129548180726,1.0043635903954933,1.1303722001753747,0.9292989683539582,1.0325780663281234,0.8302035749831197,0.6201323123942069,0.7894868908550856,0.9958305315995503,1.0520889647332783,1.1223534042691101,1.2533466372853472,1.3233577734550348,1.2014030492689853,1.029307795453048,1.0519218916946937,1.0385883732534527,1.1012347263831728,0.7135758259285635,1.0859077192490227,1.0227732410960182,1.0968270567443699,1.3089252941807648,1.1436668131856877,1.0562987176263514,1.1424832760265442,0.9875379323173615,1.0919955076458532,0.9923895176093194,1.2838573640945679,1.1861953270124495,1.3632716805962677,1.0140115977466515,0.9368327751231833,0.7065060501399236,0.7901053497172679,0.932857473124494,0.768758222796632,1.1349050124075344,0.9427327444112678,1.1115179124970331,0.7311945554902088,0.6503468659119732,0.6856829516615509,1.0666470464202984,0.8157921277746709,0.8594422125084492,0.8405822261297063,1.1283391405342622,0.9698348638965529,0.8415070950062948,0.8151914681352415,0.8148053109330596,0.8513983274851719,0.7712732653111192,0.8709554228865496,0.8101592387228022,1.0420835499306336,0.9628526465654474,1.1676962570313416,1.4653103687434974,1.2482881554841183,1.1779602680723023,1.0450489716553548,1.153021420227424,0.9652778989176498,0.9381569445535574,0.9647409897205842,1.1148314406673603,1.1810331310692435,1.1012996916905025,1.0050166669262626,1.2097509519398988,1.2921992621811267,1.1638090399954621,1.1823142773864603,1.1973553052255865,1.115520693557875,1.209111732780319,1.0925460445999797,1.2003160233430552,6.5,0.15692276298336905,3.7777777777777795,2.125,1.3244444444444445,1.097222222222222,1.1583673469387756,0.9270833333333334,0.5973796926177876,0.4406250000000001,5729.302787389997,6824.325855099966,2715.4078787358217,2340.5502790852993,12.85348167095095,0.46660250710127654,6.856014898304932,0.8747744661594625,1.0,0.5,1.2942071799786228,3.008319036366678,4.188275197500681,4.793190496201888,4.894009712652088,4.894009712652088,0.2096774193548387,0.008717931276853835,0.08994708994708998,0.04619565217391304,0.02879227053140097,0.022392290249433105,0.021061224489795922,0.016264619883040937,0.011947593852355753,0.013352272727272728,0.468348364485995,26.253902185223726,12.88888888888889,7.828402366863905,181.42682167906352,0.0,4.292270151889308,164.16308233482582,,139.29318800620024,137.50286904868713,139.0467486444751,139.31767659963606,185.13199597107305,138.66990325756728,139.38737083179325,164.70926894977833,0.02753636593588726,0.011115537994937915,-0.5074039810901931,0.45310856049736964,0.4075731690773743,-0.09539771204884383,0.026925286491876747,-0.03141582784233817,0.019494399982412914,-0.09057336053590898,-0.010309222857570587,-0.0070026498591517295,0.09467736555977703,0.1257152907645725,0.052028406282781034,-0.013707850193256066,0.1281230949534282,0.014158132824494879,0.09344124433217067,0.04657680896649885,0.12579858686965667,0.09464934184990091,0.1293331963539777,0.06305281718811499,-0.02789834086899133,-0.07169854354527237,0.007071502061073859,-0.02168437328545064,-0.047189657032400946,0.0837668235593841,-0.027581081979074794,-0.011864249701553208,-0.06197659086696884,0.031180248165750667,-0.06890559414729283,-0.004867198306310608,-0.07220712908995032,-0.1386563797934903,-0.08051287526640066,0.049981141563992935,-0.030022912809478955,0.02520401315307119,-0.0695285044918444,0.027337445135098563,-0.1374301237799979,-0.08723259070819522,-0.13324965690320817,-0.00901657801519914,0.022631160627949155,0.04768361987050485,0.008818128955183635,0.1186028590143721,0.1592701913631774,-0.10960284731719766,0.02075653824877473,-0.07180237295931285,0.052592503361992685,0.01045787785738498,0.028990425481688814,-0.03529722389238512,0.16949006323885993,0.12064844255125597,0.10858540891745982,-0.01998381022771266,0.10478149696944739,0.14338170750260273,0.1701171753742053,0.16566331570297418,0.1295866496781481,0.055626264074881894,0.10244742672530871,0.17264135986655582,-0.03994459773128712,-0.022818504994116934,-0.1207371336952462,-0.2567602974607945,-0.15556506580286603,-0.10282352333846517,-0.041044799549867006,-0.09082087967673283,-0.020515092224201982,-0.005443779140722718,-0.030242601872586386,-0.07095798842361854,-0.1636650664812196,0.00719689797556158,0.08418997495412671,-0.24567253267469386,-0.23530717518515412,-0.13037232702453908,-0.16607322719383139,-0.17381924825509512,-0.023781421321522774,0.03436125710109498,0.049862575209846105,-0.19057571318951091,14.980236297493171,25.422549559545715,9.819726251511202,11.320457460488552,26.58444386355437,32.29160167953877,34.010670139231145,34.11229590941295,34.11229590941295,59.416498510347594,51.77082042866617,2.139135224826193,5.506542856855252,0.0,7.645678081681445,5395.318208879072,4633.510606893524,3118.541391708082,85.0,42.0,52.0,62.0,76.0,86.0,101.0,105.0,97.0,411.27734404400104,31.0,4.990432586778736,5.814130531825066,6.673297967767654,7.523481312573497,8.39185670010494,9.254070134837509,10.128030124764045,10.996936534247357,11.874222709598337,0.5572139303482587,0.9550447761194031,1.1283844018895606,0.5114540526905064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6398904370363749,0.9426982733391864,0.9862703960170016,0.5809876902886344,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,4.0,1.0,0.0,0.0,0.0,9.843390348640755,5.749511833283905,0.0,0.0,0.0,9.694446914922299,0.0,0.0,0.0,50.245676810150904,63.92016394791828,23.565039196154313,12.52478801067431,212.51414124667784,-464.7820186743779,-27.654033481944943,-6.9370450548414615,-21.126455394289906,471.50104157569814,1031.202933720302,22.9469756285128,15.391088562989582,22.915620749340047,0.45454545454545453,0.8799983396667977,0.19479098786198568,18.61495389128774,0.14323803060359352,0.0,0.1200016603332023,6.0,0.3225806451612903,0.21335116239544716,0.4959239704386308,0.6904407544961626,0.7901615597313981,0.8067816939372706,0.8067816939372706,5.381100000000005,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,122.71780000000005,14.637927532712576,0.0,4.899909730850478,5.917906046161393,72.57171449003997,6.544756405912575,65.22129102278387,0.0,5.749511833283905,4.143134726391533,0.0,5.442417710521793,0.0,6.930494765951626,0.0,8.504107951867582,0.0,10.124348500692786,37.333333333333336,15.969897303057024,0.0,0.0,0.0,0.0,0.0,3.538295802889058,0.0,63.98800000000001,0.0,12.34291413022203,0.0,0.0,0.0,0.0,0.0,-0.24463193919543125,75.60175492660056,4.736862953800049,0.0,5.749511833283905,34.60418047785153,11.40141914858474,5.917906046161393,70.57150534232211,48.53093654769288,0.0,0.0,0.0,34.267421530263924,42.87265928143712,36.93096878766552,328.32616466965163,,278.52685220287674,274.9362173900685,278.04385381274403,278.5760000715536,371.5190134792125,277.277316715053,278.71569183733527,329.9239739203625,36.93096878766552,328.32616466965163,,277.6935188695435,273.96292748778865,277.34884514585747,277.745056283494,374.02905655334536,276.4024595139107,277.8889942698176,330.93484596197413,4.83662652615371,220.3091940411413,,189.85412707996701,187.38350057253353,189.05542968744007,189.88638099338536,252.79165580718856,188.9703011198697,189.98655408322847,224.38537560786676,1.231032292922184,10.944205488988388,,9.284228406762558,9.16454057966895,9.268128460424801,9.285866669051787,12.38396711597375,9.2425772238351,9.290523061244508,10.997465797345418,2.4183132630768553,164.16308233482582,,139.29318800620024,137.50286904868713,139.0467486444751,139.31767659963606,185.13199597107305,138.66990325756728,139.38737083179325,164.70926894977833,63.16078431372549,0.0,12.558392316190837,0.0,0.0,0.0,9.723108541307045,66.0801165331391,1.7721507831527679,0.0,5.776452900604687,0.0,0.7522746958695723,2.477812132569077,0.0,0.0,0.0,38.926175249338506,601.9322251905719,86.71188105856773,201.5573754365674,280.6144382325456,321.1437632455265,327.8986507476899,327.8986507476899,767.0,136.64645860249712,82.08295763180402,65.14450365542532,49.77,49.77,0.8333333333333334,8.177866885812119,5.954196310386875,4.450303424365043,5.3876352206615445,,5.382468532771113,5.383370856479631,5.383061693906901,5.38245806384776,5.357287361518948,5.382815227039899,5.3824174532675,5.369068832711902,0.14834344747883474,0.17958784068871816,,0.17941561775903708,0.17944569521598772,0.17943538979689672,0.17941526879492534,0.1785762453839649,0.17942717423466328,0.17941391510891666,0.17896896109039673,2.5915845677723213,2.7827188427457017,,2.7817593926967397,2.781927019888268,2.781869589059371,2.78175744769075,2.7770700463755693,2.781823802381917,2.781749902674518,2.7792667804234377,352.97000000000133,278.1927276722269,186.83900528352518,,187.04539019634555,186.9388136986842,187.04676434090715,187.04687189023863,189.8712244692335,187.00846261866334,187.05099252012405,188.61271036495657,9.273090922407563,6.227966842784173,,6.234846339878185,6.2312937899561405,6.234892144696905,6.234895729674621,6.329040815641117,6.233615420622112,6.235033084004135,6.2870903454985525,6.726926427169579,6.328859600393203,,6.329963604391646,6.329393652508992,6.329970950948076,6.329971525934235,6.344958365090017,6.329766159143994,6.32999355562367,6.338308049836074,5.776452900604687,14.820726262791108,9.723108541307045,2.9545949336524737,0.19608685242794177,16.86515407653981,0.890361394557823,13.44018170478578,0.0,430.6513856905471,145.36289917718653,-317.9179574761075,-18.915778767928675,-4.74504414143444,-14.450816248913979,322.51387115434187,705.3584632356628,15.696079729757786,10.527738257248696,15.674632516348062,2376.0,46.0,2.181408029424643,1.4169918379714237,0.0,0.0,0.6995061064149345,0.34205636156474845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.056131276171213614,0.19443432002973593,0.05923868035988152,22.258784066134826,19.260447345762802,14.239289860616426,11.001871921438672,12.759447028484034,8.783357577033383,9.897874213491916,5.518638827893109,7.4796249469213185,3.865687898971114,5.58737790571775,2.3102797502651535,4.049074707602342,1.5156494037624073,3.2030667341958483,1.0589260286705144,4.926904879836149,2.5782770277078315,6.488312965237515,3.31001177673193,9.04467384826699,3.75432468802277,105.62555895375156,58.579650308127796,38.330300702262456,31.900813495696596,31.44911124170896,31.44911124170896,146.0,167.0,71.59734099999997,41.43265900000003,0.19402985074626866,91.04,12.11111111111111,6.833333333333331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,67.0,0.0,1.0,68.0,12.0,1.0,7.0,61.0,13.0,31.0,55.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,4.0,1.0,0.0,30.0,4.0,0.0,1.0,3.0,0.0,2.0,10.0,0.0,0.0,0.0,0.0,2.0,3.6635616461296463,6.726083511029679,4.1588830833596715,4.61512051684126,5.07829394257007,5.597032104709321,5.747201095023722,6.108761353462945,6.394060961111668,6.566496605626964 +111065,CC(=O)OC[C@H]1O[C@@H](O[C@H]2[C@H](OC(C)=O)[C@@H](OC(C)=O)[C@@H](OC(C)=O)O[C@@H]2COC(C)=O)[C@H](OC(C)=O)[C@@H](OC(C)=O)[C@@H]1OC(C)=O,0,26.611764705882354,6.960823529411768,3.152941176470588,10.8,165.89043738457605,105.1929157529411,1.2612396045207293,6.950922352941179,7.544117647058823,8.471984517647059,201.77741529034537,26.930232558139537,6.790697674418604,3.744186046511628,8.604651162790697,147.68901250186283,102.57840920930232,1.5429660904651163,6.899825581395345,3.706072351421189,8.223439813953487,244.94396181211948,23.083870967741934,6.940580645161287,3.412903225806452,6.587096774193548,160.67804308430502,86.73745467741934,1.1719698165295098,6.969080645161289,4.4021505376344106,8.462608903225807,187.82406309688753,21.347368421052632,7.323578947368422,3.389473684210526,6.226315789473684,164.9204967830652,77.12440399999998,1.1377048652115154,7.312711578947368,4.147368421052631,8.879005305263158,183.1825659604012,23.028985507246375,6.954685990338164,3.536231884057971,7.169082125603865,157.18040156545933,85.43605063768112,1.2838520094639463,7.000960869565219,3.731078904991948,8.45972115942029,201.8206525221543,21.960714285714285,6.94857142857143,3.0428571428571427,6.878571428571429,161.82089283631123,81.64762507142855,1.1552838793293037,6.967256428571428,4.472718253968252,8.48194528571429,181.2321807551081,19.926153846153845,6.9116923076923085,2.8276923076923075,5.75076923076923,163.55997290485095,72.58246059076926,1.1148152324813843,6.925823692307692,4.170512820512822,8.476637587692307,172.98009347441965,19.50144927536232,6.826956521739131,2.7072463768115944,5.405797101449275,162.44385290335143,70.79032997681158,1.1161862010911592,6.8486040579710155,4.615378421900162,8.387457298550723,170.0911266267085,17.659400544959126,6.7806267029972735,2.4277929155313354,4.790190735694823,164.73959047253197,62.88507971934603,1.0533731463917957,6.791956130790189,4.495080230093855,8.369322016348775,157.4538326522154,8.872802768166093,0.2557702422145328,0.04363438160707439,0.6676816608996541,5.908096885813148,1.214457123243171,41.45748881190311,0.205516379321289,0.2300186020761246,3.15057285659362,0.17690685674740478,44.02922970111609,0.49463909229902586,-0.01134342962903353,-0.024579789800947726,0.18019795606341038,2.0776760280035407,-0.445420741222713,2.2430450595059157,-0.0665339132675852,-0.00481375939486599,-0.19532889854528215,-0.01536720366942947,-5.272751847166575,1.7485255050786914,0.03368099118205164,0.0015354085482791433,0.08047773188971989,0.03490121665364433,-0.15680332932743232,8.100722321303717,-0.02019256136735882,0.03418738653867623,0.48801242698217834,0.017773868869293434,2.419417568300125,-2.543638681478784,-0.07684764159533751,0.003238022782855205,0.09987251866690952,-1.8962702604261519,0.3228429592921349,-11.594679219085776,0.048955079012438396,-0.07297226151884878,-0.939245027216253,-0.046777103187033334,1.0315964729707312,-0.4951386590441805,-0.012855209534794208,-0.006235194543790447,-0.03306955518780398,0.12600371094729448,-0.16315782191454123,-2.3597470305447725,-0.026949031266141732,-0.011090810089764725,-0.33225957314819454,-0.009712063453855545,-4.485906711286767,1.086819080573406,0.039792362827483996,0.0041079221743644916,-0.017681660899653964,0.7037518536826496,-0.02195143489774624,4.96308557645823,-0.0034736308182228017,0.036117473554127574,0.22617784368649418,0.026608439891250602,1.193687996948738,-0.34444077721586375,-0.017901644929464906,-0.0015982897410612288,-0.09555496406707478,-0.3480968858131489,0.05882899588691394,-1.5232039854777752,0.010238045895780253,-0.01607116678200685,-0.11370709490432679,-0.012068427788128831,1.1584859664179996,-0.32364675793591097,0.00026931447770929214,-0.00022062886093822019,-0.08981294819718168,-0.31235946040820417,-0.08840199415076716,-1.5822270347846144,-0.016076385884219543,-0.0003098348126974186,0.21754497991296548,0.0006431026728850066,-3.4018729754112367,-0.8319949463997816,-0.013833713924742797,0.0008427945354283484,-0.013955102156265612,-0.3702863392511998,-0.007640266076380635,-3.899694628187775,-0.0038948401753157095,-0.013973508311098084,-0.16106510072105995,-0.007557633217993081,-2.9937748926532786,,,0.43262411347517726,0.925531914893617,0.2553191489361702,0.0,0.6702127659574468,-0.4148936170212766,1.4165412199181355,0.03252085528654101,0.03618042975462611,1.2033140756501453,0.20836084215990858,0.2572930591997865,2.619855295568281,0.4656539013596951,1.9662027467787233,1.2021475973021645,0.0,0.7640551494765592,0.0,0.7640551494765592,7.978832105835307,2262.0,591.6700000000003,268.0,918.0,14100.687177688964,8941.397838999994,107.20536638426199,590.8284000000002,641.25,720.118684,17151.080299679357,2316.0,584.0,322.0,740.0,12701.255075160205,8821.743192,132.69508378,593.3849999999996,318.72222222222223,707.2158239999999,21065.180715842274,3578.0,1075.7899999999995,529.0,1021.0,24905.09667806728,13444.305474999997,181.65532156207402,1080.2074999999998,682.3333333333336,1311.7043800000001,29112.729780017566,4056.0,1391.4800000000002,644.0,1183.0,31334.894388782388,14653.636759999996,216.16392439018793,1389.4152,788.0,1687.0110080000002,34804.68753247623,4767.0,1439.62,732.0,1484.0,32536.343124050083,17685.26248199999,265.75736595903686,1449.1989000000003,772.3333333333333,1751.16228,41776.87507208594,6149.0,1945.6000000000004,852.0,1926.0,45309.84999416715,22861.335019999995,323.479486212205,1950.8318,1252.3611111111106,2374.944680000001,50745.01061143027,6476.0,2246.3,919.0,1869.0,53156.99119407656,23589.299692000008,362.3149505564499,2250.8927,1355.416666666667,2754.907216,56218.530379186384,6728.0,2355.3,934.0,1865.0,56043.129251656246,24422.663841999994,385.08423937644994,2362.7684000000004,1592.3055555555557,2893.6727679999995,58681.43868621443,6481.0,2488.4899999999993,891.0,1758.0,60459.429703419235,23078.824256999993,386.587944725789,2492.6478999999995,1649.6944444444448,3071.54118,57785.556583363046,754.1882352941178,21.74047058823529,3.708922436601323,56.75294117647059,502.18823529411753,103.22885547566952,3523.8865490117646,17.468892242309565,19.55158117647059,267.7986928104577,15.037082823529406,3742.4845245948673,42.53896193771622,-0.9755349480968836,-2.1138619228815045,15.497024221453293,178.68013840830451,-38.30618374515332,192.90187511750875,-5.721916541012328,-0.4139833079584751,-16.798285274894265,-1.3215795155709344,-453.4566588563254,271.0214532871972,5.220553633218004,0.23798832498326722,12.474048442906582,5.409688581314871,-24.30451604575201,1255.6119598020762,-3.129847011940617,5.299044913494815,75.64192618223764,2.7549496747404825,375.00972308651933,-483.29134948096896,-14.601051903114127,0.6152243287424889,18.97577854671281,-360.29134948096885,61.34016226550563,-2202.9890516262976,9.301465012363295,-13.864729688581269,-178.45655517108807,-8.887649605536334,196.0033298644389,-102.49370242214536,-2.661028373702401,-1.2906852705646226,-6.8453979238754235,26.08276816608996,-33.77366913631003,-488.46763532276793,-5.5784494720913385,-2.295797688581298,-68.77773164167627,-2.010397134948098,-928.5826892363608,304.30934256055366,11.141861591695518,1.1502182088220576,-4.95086505190311,197.05051903114187,-6.146401771368947,1389.6639614083044,-0.9726166291023844,10.11289259515572,63.32979623221837,7.450363169550169,334.2326391456466,-111.94325259515573,-5.818034602076094,-0.5194441658448994,-31.055363321799305,-113.1314878892734,19.11942366324703,-495.041295280277,3.3273649161285825,-5.223129204152226,-36.95480584390621,-3.9222390311418702,376.5079390858499,-111.65813148788928,0.09291349480970579,-0.07611695702368597,-30.98546712802768,-107.76401384083044,-30.498687982014673,-545.8683270006919,-5.546353130055742,-0.10689301038060942,75.05301806997309,0.22187042214532726,-1173.6461765168767,-305.3421453287198,-5.076973010380606,0.30930559450220385,-5.12152249134948,-135.89508650519033,-2.803977650031693,-1431.1879285449133,-1.4294063443408653,-5.128277550172997,-59.110891964629005,-2.773651391003461,-1098.7153856037532,0.7571211276774122,0.5732858249592075,0.45595277841470144,0.2948943117758566,0.32015286518726177,0.15330439932795223,0.16832437209347256,0.07907337971725102,0.10407012925133376,0.04223888813208582,0.06845463885695605,0.02229469589982898,0.04359740575304075,0.011788179006359705,0.029360942220748247,0.006318489798469501,8.048098265209834,5.814223816601613,3.577669213763541,2.308448451234923,0.49010900917460765,-0.49364431590385793,3.197054245061641,0.9714655204817328,6.046319384804438,0.9950307722422947,13.66152755152942,11.075451911468923,16.031913556963538,11.828326769526415,1.883530782410396,0.739478453814934,3.524596803062329,2.357107371930582,7.015918970861817,1.1520002997102823,3.7373622390114654,2.5533466469056956,20.774080404023845,14.699668042009234,0.23344296093822717,0.38881084859797177,0.5378175788813805,0.6203820970890666,0.6978226739107157,0.794091954485799,2.679223063218988,1198.1677399719701,0.0,8.0,12.0,0.0,0.0,8.0,0.0,0.0,0.0,4.879268306869379,3.860895682506114,2.884217829365547,2.3430413587773122,1.8354502172746452,1.2044446640581778,371.23484753313073,6245.4841372540195,111.20211384091675,73.47628396769436,165.37379018249376,,14.0,1058.0,122.3799907932975,38.356297472574575,0.0,0.0,55.38989759752498,0.0,0.0,0.0,0.0,52.10549249180054,20.333333333333332,43.5,12.0,0.0,31.5,0.0,0.06737588652482272,-19.5,0.257297221046693,0.0,-0.257297221046693,0.0,0.2856292134831462,0.0,0.6925490196078421,1.0099290780141847,0.4352517985611491,0.6925490196078421,1.0099290780141847,66.57743733615237,1.5284801984674274,1.7004801984674274,56.55576155555683,9.792959581515703,12.092773782389965,123.1331988917092,21.88573336390567,0.4283707865168538,0.32786885245901637,0.0,0.4426229508196722,0.7142857142857143,0.30222529448370594,-2.0111706610581384,-0.08749566473485286,-0.02366083130656633,-0.10585108742411256,0.6977747055162941,4.6433704967024605,0.030989792456576154,0.054627888196499545,0.07035409843488578,-0.5825955929280737,0.6928749549256717,0.7507379052627049,1.6419462451594218,1.118679856531297,0.39677515311920813,1.7718042378384766,0.7037042924777506,1.701075235438808,0.7098432609755918,0.6306802586103356,0.8325737952769072,1.251216687708744,0.7494663576354887,0.8622420711187732,1.1900202701778888,1.1172363986519018,0.9582835197156131,1.2146187366570178,0.7511888382464719,1.166741710805157,0.8362095074024827,0.5383517408546826,0.9093969711196894,0.9412460429469727,1.316019356099355,1.5530288919154926,1.3545059733393756,0.981539670070699,1.4420258583487258,0.7313989370754067,1.3011490326517163,0.7166067757558678,1.5495158134312688,1.255040650448277,1.5449652456221508,0.8639604017561777,0.951286750160626,0.9982317952791302,1.3507375847172773,1.3692707957795562,0.8908836824618196,1.3088955632322632,0.9539446639670603,1.279956783743657,0.9820211722708669,0.8257368160198596,1.0291098139748245,1.1208776339913742,0.8383185661248556,0.85879005811877,1.0252307922144752,1.181436567164179,0.8581443564634778,1.0792678464827896,0.8404837521459355,1.0619782175616272,0.8489351756355612,0.7614394897152279,0.8780864450210479,0.9588026932367218,1.023821123187797,1.1217392173072551,1.1868343443626748,1.2182357443551473,1.0718015995156045,0.9714876370668202,1.0199169619373583,0.9549819731423078,1.1140873484433595,0.8594381393015618,1.1313865072794411,0.9406192602044664,1.0003038445834953,0.9929867852852365,1.0919219408051977,1.1969500324464633,1.0334250716557105,1.115353961920276,1.0019110535332922,1.1104813842649883,0.9899162452077837,0.8450106729361585,0.9998899389288551,1.0673563193219082,1.0878325586598692,1.0776947621976827,1.0149277594882729,0.9739619341982186,1.0733407031206017,0.9931393874321707,1.0870518337483897,1.0003483843705068,1.0817679058088927,1.0869067508499135,1.0698283948176492,1.0416480907014853,13.5,0.8218549127640036,4.444444444444446,3.125,4.231111111111113,3.0694444444444446,2.985306122448979,1.7743055555555558,1.3076341647770218,1.1662500000000005,12599.991770354165,13967.490489909134,4697.553167625103,4325.213321562421,15.158482361527962,0.44938926965957127,8.346423043933418,0.8161651142935867,0.0,0.7142857142857143,1.530122629268322,2.5484952536315877,3.525173106772155,4.0663495773603895,4.5739407188630565,5.204946272079524,0.28125,0.009031372667736303,0.06633499170812607,0.043402777777777776,0.04701234567901236,0.027405753968253968,0.02573539760731879,0.015036487758945385,0.011996643713550657,0.011322815533980582,0.5385285864147018,43.16493055555556,20.750723991980397,14.637738330046023,268.1222001344054,0.0,4.732747703517761,325.3438441104979,,263.73562604640784,256.21763119042066,279.93150353284335,263.89027477101547,515.0585407755315,261.8993909620026,264.0525815951444,390.0410350079774,0.05574778401180016,-0.04435007579778958,-0.563312436103429,0.26988603494157126,0.3516658694261721,-0.36676530829942394,0.05410470155784982,-0.32374019767821544,-0.020927696070741603,-0.061997899250763745,-0.08686607151339207,-0.11975571416896527,0.19706574695338258,0.13168455755615613,0.035188044191972905,0.12053308725191256,0.005907353472393299,-0.12911392780067343,0.1953982875821912,-0.09825280804403076,0.14862879015046757,0.1548964106514313,0.10047020899066522,0.05495025883314047,-0.28667814984064227,-0.30045575642407957,0.07420805941547315,0.1495810421576329,-0.3209612667286452,0.2658331472666508,-0.2796763516404003,0.2382052426872783,-0.31724504392344155,-0.2981188088542599,-0.2644165638747609,0.023429809696275054,-0.055804087161797696,-0.05026077085234812,-0.14289636552978083,-0.0495289254212031,0.02132729259228325,-0.13434630073957096,-0.05691968081451308,-0.13112838672586588,-0.048217013709587815,-0.10546005068660166,-0.05489930482300552,-0.10188474206200013,0.12248881317104258,0.15557854769558097,0.0941441593318806,-0.026482172470978414,0.11911650524427551,-0.018075100781759675,0.11971505555911163,-0.01690196581749032,0.1570197941737534,0.07178943448749073,0.15040931923426393,0.027111262337584787,-0.03881983925661584,-0.06999111692770543,-0.03662913698316513,-0.14311455542798823,-0.05891861500257699,0.048440570491128494,-0.036741347079383126,0.0498162040884092,-0.06986898727733377,-0.036090926977408865,-0.06821910699233467,0.026311747316093367,-0.03647627095883312,0.001052954696283232,-0.005056307728272008,-0.13451462494291824,-0.05286972547086341,-0.07279136698930327,-0.03816504762175396,-0.07822435339368702,-0.0013469989379158074,0.06904934112464035,0.003635261429144356,-0.07726396756209895,-0.0937691243836524,-0.05408648717288805,0.019314918749569424,-0.020900831898635785,-0.06267438506981023,-0.006291095774528076,-0.09406490214303838,-0.018951483031076598,-0.06074947062965609,-0.051122480911361165,-0.04272097394610428,-0.06799516850455802,0.14285714285714285,7.882928636431709,32.13099779340787,14.591882770118882,28.135173681228647,33.18448675085802,37.9030899673093,43.670887379195115,47.018711282102934,92.4115290986,56.50093707320173,0.0,35.91059202539828,0.0,35.91059202539828,13497.898957704881,10902.158023017902,6277.257413171545,293.0,67.0,78.0,112.0,158.0,190.0,227.0,253.0,273.0,678.2007289960011,48.0,5.442417710521793,6.255750041753367,7.152268856032539,8.017307507688582,8.925986089617076,9.817003309314352,10.730881494783121,11.635010345520465,12.55124620134809,0.7019607843137254,1.035764705882353,1.1396333960384508,0.6646779667657589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6152598379711166,1.0166551326412918,1.0488410950687632,0.6103048383041394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,8.0,0.0,0.0,0.0,0.0,2.0,0.0,11.0,0.0,10.0,0.0,0.0,0.0,0.0,52.10549249180054,31.525663092270744,30.70589228032842,12.393993117083514,0.0,38.356297472574575,0.0,0.0,0.0,0.0,0.0,55.38989759752498,0.0,283.64739774336454,-1887.54328257491,-82.11727498938679,-22.206391559704823,-99.34438329341633,654.8822452764953,4357.940854679109,29.084838851529963,51.26989240798953,66.02940688907744,0.5,0.6838049953587103,0.06957605501870026,46.3922720080201,0.045770325491338824,62.96775887540865,0.3161950046412895,7.0,0.25,0.23873136223305078,0.3976189436756858,0.5500012625062973,0.6344361918124425,0.7136311023055355,0.8120812607533071,-0.8307999999999915,,4.75,5.428571428571428,3.2895495316877232,4.736046002875181,-20.563591022443884,4.915697674418604,4.721401204159824,-7.580895083102487,144.99699999999984,90.46178996437513,0.0,0.0,0.0,116.8016821581818,13.213763929025836,0.0,0.0,0.0,4.574710978503383,0.0,5.8998973535824915,0.0,7.3833681469923835,0.0,8.971702399703325,0.0,10.635302408736912,59.666666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.03999999999999,0.0,96.27180518913342,0.0,0.0,0.0,0.0,0.0,-7.01958455539673,96.86883866326832,0.0,0.0,0.0,122.3799907932975,90.46178996437513,0.0,55.38989759752498,0.0,0.0,0.0,0.0,56.497627175089505,52.29708622754491,54.99233877801418,650.6876882209958,,527.2691244332412,512.2042593413277,559.7230262345511,527.5790156695682,1031.746386011163,523.5896032995618,527.90425250075,780.4046612960868,54.99233877801418,650.687688220996,,522.8650181343032,507.1992670345887,556.6390167600539,523.1873538073748,1050.6806725735073,519.0379897672733,523.5256548445733,787.6629650990575,5.010214022716172,437.79714083404923,,355.17701293469884,344.7148602174251,377.73731484600825,355.39229746328135,696.9666170615276,352.6210320024709,355.6182457785239,527.8952090044039,1.1700497612343443,13.84441889831906,,11.218492009217899,10.8979629647091,11.909000558181937,11.225085439778047,21.952050766194954,11.14020432552259,11.232005372356383,16.604354495661422,2.5051070113580853,325.3438441104979,,263.73562604640784,256.21763119042066,279.93150353284335,263.89027477101547,515.0585407755315,261.8993909620026,264.0525815951444,390.0410350079774,86.41568627450981,0.0,8.256082009472092,0.0,0.0,0.0,0.0,89.15149308084487,-1.207035422206328,0.0,60.177891948468314,0.0,-16.3124925028041,0.0,0.0,0.0,0.0,51.87591125585185,641.7712581892073,130.06042348780738,216.62209655868494,299.63971407563315,345.6397140756331,388.7849611033598,442.4204331267595,1746.0,175.52787155657938,296.75838483065235,84.4649812875185,238.08999999999995,238.08999999999995,1.0,7.68662133494462,6.584962500721156,5.337059210106666,6.74421367950844,,6.753736610103605,6.7538999619188855,6.753251878208792,6.753732781490369,6.740686823100726,6.753780696629993,6.753728744325098,6.747317557723087,0.11355445127886524,0.14349390807464765,,0.14369652361922564,0.14369999918976353,0.14368621017465513,0.14369644215936955,0.1434188685766112,0.14369746163042538,0.14369635626223612,0.14355994803666142,3.222237300273971,3.456247413301,,3.457658432303268,3.4576826188905248,3.457586657326124,3.4576578654149603,3.4557243309857175,3.4576649600056415,3.4576572676467916,3.4567075357607613,460.79000000000144,648.5751043783647,363.9119384444581,,360.9482176207177,360.8930629208722,361.07842429530155,360.94939365104545,364.3150121957177,360.93437404500605,360.95062956916183,362.6472752722648,13.799470305922654,7.742807200945917,,7.6797493110790995,7.678575806827068,7.6825196658574795,7.679774333000967,7.75138323820676,7.679454766915023,7.679800629131103,7.715899473877974,8.022340318223767,7.444474419733221,,7.436297015266322,7.4361441985698,7.436657685270547,7.43630027343011,7.445581420214507,7.436258661174193,7.436303697500138,7.44099317711589,60.177891948468314,96.27180518913342,0.0,0.0,-7.01958455539673,0.0,-16.3124925028041,7.049046587265764,0.0,614.0537678166481,266.21149094759215,-1771.5153231795646,-77.06949678155284,-20.841356743288994,-93.23764858839814,614.6263998793934,4090.056674643647,27.296983424616567,48.11831381933703,61.97055567641892,7384.0,72.0,4.749149571305297,1.4416323882986848,0.0,0.0,0.4943877491981309,0.14562413528067172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09072184232530289,0.05237828008789241,0.32075014954979214,0.12257041025031494,35.58469300083838,26.944433773082753,21.88573336390567,14.154926965241117,21.45024196754654,10.2713947549728,13.129301023290859,6.16772361794558,11.655854476149381,4.7307554707936115,10.815832939399055,3.5225619521729787,8.283507093077741,2.239754011208344,6.664933884109852,1.4342971842525767,6.300465661083385,2.184225262268075,10.32716047186091,3.213708072642405,18.538259462058374,4.608812229414215,181.82867008639636,114.15291143165348,92.70436927649658,76.19539810470866,54.86427475212864,41.659507527404934,230.0,260.0,87.33613399999997,64.16186600000009,0.15294117647058825,142.19,21.25,10.388888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,85.0,0.0,0.0,86.0,0.0,8.0,8.0,78.0,8.0,48.0,78.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,19.0,0.0,2.0,47.0,19.0,0.0,0.0,19.0,0.0,2.0,12.0,0.0,0.0,0.0,0.0,0.0,4.04305126783455,5.986452005284438,4.430816798843313,4.465908118654584,4.844187086458591,5.225746673713202,5.43372200355424,5.676753802268282,5.786897381366708,5.872117789475416 +2733,O=c1[nH]c2cc(Cl)ccc2o1,0,48.13333333333333,7.002920000000001,4.133333333333334,11.973662551440329,158.50221086392642,198.5831769333333,1.9033039746263993,7.184793333333334,6.428130874358583,8.5758774,284.60133170216784,35.6875,6.839312499999999,4.6875,11.256944444444445,146.94630949243756,140.92394481249997,2.0087578268749997,7.0256875,3.9075360082304527,8.253768125,311.5301631786905,35.84,6.9896,4.36,10.546666666666665,149.867233388148,141.10070764000002,1.8904415391999998,7.152512000000002,4.711975308641975,8.426102720000001,286.1122547976374,27.642857142857142,6.674857142857143,3.25,6.3730158730158735,156.51684656322783,103.92402196428574,1.60196504010175,6.865589285714286,3.669165196942975,8.315376285714287,229.5293237613661,26.80952380952381,6.60705238095238,2.9047619047619047,5.058201058201059,161.80055515068995,101.16594142857143,1.4005749043665712,6.783971428571429,3.622085048010973,8.289697333333335,196.66109610488041,32.333333333333336,6.961666666666666,1.8333333333333333,4.148148148148148,170.81079627612402,123.80295183333332,1.2033809534748334,7.179033333333334,4.677640603566529,8.850695333333334,172.12370375035323,48.333333333333336,7.4816666666666665,1.0,1.5555555555555556,182.23192081396633,194.76920200000004,0.9092469636163334,7.759466666666667,5.806584362139918,9.629094,147.77721207949546,,,,,,,,,,,,,,,,,,,,,,,15.26222222222222,0.17340888888888886,0.037245080638555764,0.6488888888888888,4.216406035665295,1.4951259950161588,70.79673206222222,0.25786975269935997,0.16935822222222222,2.153617165405003,0.1399507822222222,41.60293940590376,-0.24138888888888899,-0.025043055555555558,-0.032609674650508846,0.005277777777777749,0.6010322359396434,-0.12762145669685848,-0.988923999722225,-0.0034883663545598586,-0.021641972222222243,-0.19718617165405,-0.020609636388888918,1.2894680214693233,0.3697777777777776,0.06879644444444442,0.016345330354131285,-0.07022222222222224,0.3054375857338822,-0.05483092858924671,1.5114025804444435,-0.0048253961934079,0.05373217777777775,0.49395596877169806,0.043308479111111076,-5.597924058956501,-4.395555555555554,-0.05043174603174598,-0.0060097182799962404,-0.1322222222222222,-0.701943954536547,-0.24331958928745268,-20.305239336031747,-0.03838306204343857,-0.0566379841269841,-0.26839387627224853,-0.045642753650793656,-8.39493791227117,-1.2019047619047618,-0.02832539682539676,0.0007072768911218632,-0.09968253968253968,-0.6241661767587693,-0.25831912864833206,-5.563776773333329,-0.0430782707252458,-0.024110920634920555,0.016801107070882955,-0.022499004444444463,-6.166121719865293,-0.7288888888888888,-0.05077777777777781,-0.002368300960409853,0.02888888888888891,-0.7052949245541837,0.1381753791712377,-3.2153681177777806,-0.0018638691201268525,-0.035493222222222294,-0.874802960253349,-0.02859812111111101,5.73420576323321,12.404444444444444,-0.0011777777777779673,0.005207446472315052,0.7511111111111112,-2.550013717421125,0.9262724036228352,57.01088669333333,0.08138715771697298,0.08363066666666646,-2.56206946773019,0.09702166222222247,34.3436386960302,,,,,,,,,,,,,,,,,,,,,,,,,,,0.48008658008658006,1.4545454545454546,0.7727272727272727,0.09090909090909091,0.6818181818181818,0.09090909090909091,0.45498941791946756,0.014563033359055037,0.03019939699541867,0.7537119101780441,0.2939265481355895,0.18371165144836407,1.2087013280975116,0.4776381995839536,2.025987048350254,1.3374490943886628,0.18360872714104381,0.3443068414211874,0.16062238539935975,0.6885379539615909,11.266203736533333,722.0,105.04380000000002,62.0,179.60493827160494,2377.5331629588964,2978.747654,28.54955961939599,107.77190000000002,96.42196311537874,128.638161,4269.0199755325175,571.0,109.42899999999999,75.0,180.11111111111111,2351.140951879001,2254.7831169999995,32.140125229999995,112.411,62.52057613168724,132.06029,4984.482610859048,896.0,174.74,109.0,263.66666666666663,3746.6808347037004,3527.5176910000005,47.261038479999996,178.81280000000007,117.79938271604937,210.65256800000003,7152.806369940934,774.0,186.89600000000002,91.0,178.44444444444446,4382.4717037703795,2909.8726150000007,44.855021122849,192.2365,102.7366255144033,232.83053600000002,6426.8210653182505,563.0,138.7481,61.0,106.22222222222223,3397.8116581644886,2124.48477,29.412072991697993,142.4634,76.06378600823044,174.08364400000002,4129.8830182024885,388.0,83.53999999999999,22.0,49.77777777777778,2049.729555313488,1485.6354219999998,14.440571441698001,86.14840000000001,56.13168724279836,106.20834400000001,2065.4844450042388,145.0,22.445,3.0,4.666666666666667,546.695762441899,584.3076060000001,2.727740890849,23.2784,17.419753086419753,28.887282,443.3316362384864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,228.9333333333333,2.601133333333333,0.5586762095783364,9.733333333333333,63.24609053497942,22.42688992524238,1061.9509809333333,3.8680462904904,2.540373333333333,32.30425748107505,2.099261733333333,624.0440910885565,-3.8622222222222238,-0.4006888888888889,-0.5217547944081415,0.08444444444444399,9.616515775034294,-2.0419433071497357,-15.8227839955556,-0.05581386167295774,-0.3462715555555559,-3.1549787464648,-0.3297541822222227,20.631488343509172,9.24444444444444,1.7199111111111105,0.40863325885328217,-1.755555555555556,7.635939643347054,-1.3707732147311678,37.78506451111109,-0.12063490483519751,1.3433044444444437,12.348899219292452,1.082711977777777,-139.94810147391252,-123.07555555555552,-1.4120888888888874,-0.16827211183989474,-3.7022222222222223,-19.654430727023318,-6.812948500048675,-568.5467014088889,-1.07472573721628,-1.5858635555555547,-7.5150285356229585,-1.2779971022222223,-235.05826154359272,-25.24,-0.594833333333332,0.014852814713559127,-2.0933333333333333,-13.107489711934155,-5.424701701614973,-116.8393122399999,-0.9046436852301618,-0.5063293333333316,0.352823248488542,-0.4724790933333337,-129.48855611717116,-8.746666666666666,-0.6093333333333337,-0.028419611524918238,0.3466666666666669,-8.463539094650205,1.6581045500548526,-38.58441741333337,-0.02236642944152223,-0.42591866666666756,-10.497635523040188,-0.3431774533333321,68.81046915879853,37.21333333333333,-0.0035333333333339018,0.015622339416945154,2.2533333333333334,-7.650041152263375,2.778817210868506,171.03266008,0.24416147315091896,0.2508919999999994,-7.6862084031905695,0.2910649866666674,103.03091608809059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7131759075173857,0.5620400734112987,0.4378350162852907,0.2847794180768517,0.29499763483487884,0.15243745258191513,0.18153707127186122,0.07695683462490514,0.1175098452603429,0.039154722077622675,0.08051436540771434,0.02172769897689716,0.055309222959565384,0.012279683751291291,0.0369754703658474,0.0057500539069266065,17.001101761876534,5.696108627355351,3.5758426562879837,2.1904135622933048,0.5430946752558387,-0.4806052429588004,3.196331240202654,0.9777099130510434,6.038687797389129,0.7740094595130091,14.548032242631326,10.957842994614863,35.45051679982074,11.709358374344248,2.207746849628913,0.7184895968858562,3.5244525255639325,2.240532974224782,7.008281884501411,1.3043510031139707,3.7365004484813547,2.436472250099845,22.4558558666111,14.698241038551638,0.4465888656496199,0.7572790484857322,0.8306242067541492,0.9039693650225661,0.9039693650225661,0.9039693650225661,1.9708993906097838,442.88245407860506,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,1.9767656302935486,0.633985000288463,0.3169925001442322,8.881784197001252e-16,8.881784197001252e-16,8.881784197001252e-16,-86.93315436843186,334.1047878301092,45.08682709718096,22.273652522007282,45.57980569621253,,6.0,107.0,5.756062822229453,4.794537184071822,0.0,16.122354172999827,0.0,0.0,18.19910120538483,0.0,4.9839785209472085,16.018090827285864,5.280952380952381,16.0,8.5,1.0,7.5,0.0,0.019913419913419925,1.0,0.3260010240655399,0.1336961451247164,-0.1923048789408235,0.05317460317460321,0.202232579603138,0.0,0.7679365079365081,0.9380952380952382,0.44193548387096826,0.6342403628117917,0.884920634920635,5.004883597114143,0.1601933669496054,0.3321933669496054,8.290831011958485,3.2331920294914847,2.020828165932005,13.295714609072629,5.2540201954234895,0.511767420396862,0.19837691614066727,0.0,0.3787195671776375,0.0,0.6397262534466299,-0.6870675616636295,-0.09768185828625423,-0.04580450411090863,-0.09815250880908993,0.3602737465533703,0.38693488541735344,0.0472527981369054,0.02579565902782356,0.04836686067716918,-2.9771893461589034,0.47011502620850326,0.8049183689161133,1.8427148962674975,0.898972602739726,0.4799496382280984,1.137377921504649,0.46851706398935433,0.7212910078390061,0.7408335323417031,0.5735916382176339,0.800238203186098,0.6536170285465491,0.5552708211997671,0.4259958479637081,0.5431086789244618,1.0356164383561643,0.6635261048357712,1.0462072274542615,0.5576565397015978,0.7894523097019638,0.45284997480685246,0.39890787797712235,0.4969941877344436,0.8651153320444681,1.26128421665696,1.1733635338442217,0.945304139972862,1.1044520547945207,1.0970277445213676,1.0579842303000488,1.2605461999041523,1.1024423540264463,1.2335194827007054,0.9240968156218017,1.2215232428060583,1.168066110810714,1.1633663366336635,1.109157546710408,1.0244346854065922,1.0616438356164384,1.182525636354172,1.0746929632089486,1.1654753294220386,1.1694678717351887,1.123561891165603,0.7718795171210832,1.0874126034022247,1.2320549518388868,1.6562317996505533,1.6307378834866848,1.0439118165295482,0.958904109589041,1.5150011712039977,0.6935415402119509,1.6514005874439635,1.235527767093742,1.603265005668458,2.4197471096322727,1.572114630076618,1.0606138903392017,1.3249854397204428,1.918689289284158,0.47675285849178295,0.0,2.334274634324085,0.04405447041212916,1.3250769730412555,1.1564972359074814,1.4842962714141748,4.90956360884977,1.2892143415751935,0.5359574889188256,,,,,,,,,,,,,,,,,,,,,,,,,3.0,0.0,1.1111111111111116,0.9791666666666667,0.44833333333333336,0.21555555555555556,0.0,0.0,0.0,0.0,2088.496873660546,2193.791793869229,1165.7057689319734,1120.868076621817,7.377421770803015,0.4644190343655571,3.9512066758992406,0.8671313287159333,0.0,0.0,1.9301249653149701,3.2729055953200556,3.5898980954642865,3.906890595608518,3.906890595608518,3.906890595608518,0.25,0.0,0.06535947712418302,0.0753205128205128,0.05604166666666667,0.05388888888888889,0.0,0.0,0.0,0.0,0.5006105455002514,7.638888888888889,2.8027681660899653,1.4512471655328798,66.59183322318094,1.0,3.3523429773633833,26.738173664531484,,15.520960997921142,16.41373939853967,16.639227009707017,15.495498722253835,23.23463820238966,16.41027248531611,16.47342690000236,20.48627950692845,-0.015816103669190458,-0.14441621600840662,-0.8755431345945756,0.008133561643835574,0.14254609989068764,-0.0853583290788006,-0.013968497851752169,-0.013527629037697978,-0.1277881400634029,-0.09156045690087529,-0.14726345977947955,0.03099463739541294,0.024228305183459514,0.3967296306738088,0.43885877205514096,-0.10821917808219182,0.07244026859611685,-0.036673115691934786,0.02134847946252793,-0.018712532753050865,0.3172693777292575,0.22936108455413712,0.3094550700141374,-0.1345559746233247,-0.2880023296447291,-0.29082561081433345,-0.16135602815087036,-0.20376712328767124,-0.1664792120585676,-0.16274186262464319,-0.2868104041608272,-0.14884670125769983,-0.33442712957075665,-0.12462469216146647,-0.3261343232674425,-0.201787134086008,-0.07875031200599052,-0.16334454944547946,0.018989806948885937,-0.15362035225048926,-0.1480327490946407,-0.17277415382343095,-0.07858804511546388,-0.16705437638306123,-0.14236640133883538,0.007801343405304529,-0.1607636919722192,-0.14821360720945298,-0.047757716948165406,-0.2928210779916449,-0.06358694678078398,0.04452054794520551,-0.16727395762844202,0.09241721408886637,-0.04541690024550625,-0.00722794783264039,-0.20957483939368535,-0.40620170302591174,-0.20434413196563067,0.13783174566793913,0.812754804892254,-0.006791911218188038,0.13981568526728738,1.1575342465753427,-0.6047837176617563,0.6195279907582801,0.8052756819796045,0.3156134322270011,0.4938093088679868,-1.189658732706272,0.6932555908702653,0.8255099083493265,,,,,,,,,,,,,,,,,,,,,,,,,1.6509636244473134,6.447419590941252,2.8039657955522017,25.7589158562475,40.03838914899224,43.8457860682246,44.165314508369974,44.165314508369974,44.165314508369974,22.28585753185279,14.71194003827529,2.019695998551482,3.7873752556330613,1.7668462393929572,7.5739174935775,1116.3787450289974,964.464059029516,151.9146860158545,0.0,17.0,21.0,28.0,31.0,26.0,23.0,19.0,4.0,168.993056048,12.0,4.07753744390572,4.90527477843843,5.783825182329737,6.634633357861686,7.513709247839705,8.372629740224884,9.249464926660233,10.112167001239515,10.987070802184478,0.9555555555555555,1.0453333333333334,1.1127809028178646,0.9411594926872591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7681106586826345,1.0386928104575166,1.0577081815974751,0.7574715516656491,3.0,0.0,1.0,1.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.417150937053347,0.0,5.583020141642242,0.0,0.0,4.9839785209472085,4.794537184071822,0.0,0.0,11.600939890232516,18.19910120538483,5.022633313741326,5.516700717616262,199.0084890011621,-213.73560417713693,-30.387245975351966,-14.249040278475794,-30.533657739590993,112.07533463273025,120.3691836529723,14.699581121828993,8.024612243531486,15.046147956621537,0.5,0.6904419394992152,0.3797590156664044,58.77954724033536,0.38806552712732806,31.35050714516316,0.309558060500785,3.0,0.0,0.4940309737581334,0.8377264515671147,0.9188632257835572,0.9999999999999998,0.9999999999999998,0.9999999999999998,1.7745,,1.2899159663865545,0.8737040977231583,0.7031788698096897,1.3022161039574311,-2.4488253927316816,0.8716640456749766,0.8470367662118319,-1.0340249546218707,41.8447,4.417150937053347,0.0,4.9839785209472085,0.0,0.0,0.0,33.77233452542743,0.0,0.0,3.2188758248682006,0.0,4.532599493153256,2.3978952727983707,6.028278520230698,4.727387818712341,7.611347717403621,6.803505257608338,9.241354425505353,14.333333333333332,4.956373456790123,0.0,2.4925925925925925,4.753117283950617,0.0,1.1545370370370376,0.5782870370370374,0.0,15.680000000000003,0.0,10.6348828420257,0.0,0.0,0.0,0.0,0.0,0.0,16.69171354226797,5.756062822229453,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,27.41078932651,5.022633313741326,11.099720859258504,0.0,14.117392390308886,11.521659880239518,13.899856008705223,53.476347329038,,30.80738928837041,32.668622536578354,33.150602563028755,30.754228273643353,47.80499934546283,32.66205963153037,32.7928462117018,41.53657261220729,13.899856008705223,53.476347329038,,29.752003497690502,31.953773729350317,32.575274396820824,29.688778734041815,48.918101796704505,31.948879957796294,32.09981613025576,42.00658395521724,4.6320672120188195,39.26931245009236,,22.95084643427949,24.1662076251152,24.38065675837633,22.91780158648081,34.93167917633551,24.15268604063138,24.249417273381173,30.234942627094174,1.2636232735186566,4.8614861208216364,,2.800671753488219,2.9698747760525777,3.0136911420935233,2.7958389339675773,4.345909031405712,2.9692781483209427,2.9811678374274364,3.776052055655208,2.386202229903992,26.738173664519,,15.520959732038527,16.41373891353674,16.63922663331526,15.495497418999625,23.234638201986414,16.410272001735635,16.473426448233795,20.486279500297673,15.580392156862748,0.0,0.0,5.664222096245905,0.0,0.0,0.0,15.865622723962126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.362073274984736,214.7853185366164,28.95187447972455,49.093583929800836,53.8484714319643,58.60335893412777,58.60335893412777,58.60335893412777,192.0,90.6363124806844,96.29850509727595,55.561244330280175,46.0,46.0,1.0,7.5193640048903045,4.584962500721156,3.1373190783721383,3.2762447719621233,,3.2889983215646086,3.2723419641687563,3.273208383855009,3.2893751930175723,3.26756257396383,3.2750342068299525,3.2755963068819574,3.2701526612837073,0.285210825306558,0.29784043381473846,,0.29899984741496444,0.2974856331062506,0.29756439853227357,0.2990341084561429,0.29705114308762093,0.2977303824390866,0.2977814824438143,0.29728660557124614,1.2386788183357194,1.282008059720148,,1.28589323669327,1.2808161053603129,1.2810808408356344,1.286007815609332,1.2793544965469397,1.2816384936705667,1.2818101107545121,1.2801468490316188,104.53000000000004,41.86609110880304,42.56643728941317,,41.95351204188741,42.60490052142076,42.619981527214286,41.935639420625456,42.86926349248789,42.51870260057585,42.50102380754287,42.79985130091279,3.8060082826184582,3.869676117219379,,3.8139556401715824,3.8731727746746145,3.874543775201299,3.812330856420496,3.8972057720443534,3.86533660005235,3.863729437049352,3.890895572810254,3.829786397674616,3.8463762655011418,,3.831872328924502,3.8472794621776516,3.8476333730447227,3.831446228022996,3.853465280245356,3.8452542201261877,3.8448383450337906,3.8518448081083023,4.753117283950617,13.127475434618292,0.5782870370370374,1.1545370370370376,-0.4562345679012345,4.956373456790123,0.0,0.0,0.0,116.35788435889921,61.908321694084904,-66.48968899412388,-9.452980667716094,-4.4326459329415915,-9.498526999160555,34.86482363259771,37.444905898456824,4.572801901195143,2.496327059897121,4.680613237307103,143.0,13.0,0.910683602522959,0.3617432519188625,0.0,0.0,0.08333333333333333,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02551551815399144,0.3003491900968691,0.06393571043234056,0.4358579450277261,0.08553046608556744,7.8449349826912425,6.182440807524285,5.254020195423489,3.4173530169222204,5.014959792192941,2.591436693892557,3.8122784967090855,1.616093527123008,3.290275667289601,1.096332218173435,2.4959453276391446,0.673558668283812,1.4380397969487,0.31927177753357355,0.8504358184144901,0.13225123985931195,1.5820549308155338,0.5155319097446351,2.5209658650145887,0.6389934791530025,3.358307638920233,0.6914694323452076,36.03730739385214,26.681957246163837,23.011284819299554,22.39950608148884,22.39950608148884,22.39950608148884,58.0,67.0,19.241171999999995,7.696827999999999,0.6,34.04,3.6944444444444446,2.361111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,15.0,0.0,0.0,16.0,10.0,1.0,4.0,12.0,11.0,12.0,5.0,0.0,0.0,0.0,7.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2.0,1.0,1.0,11.0,4.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,2.0,2.9444389791664403,0.0,3.6699514442284173,4.2749284991175145,4.972846888034599,5.476202011456632,5.66399076518221,5.966607370196395,6.2018156858030435,5.04196235405471 +4022878,CC(=O)[N-]S(=O)(=O)c1ccc(N)cc1,0,36.65217391304348,6.744060869565218,3.347826086956522,10.367149758454106,163.6859785724279,145.71292369565217,1.698796875810479,6.792191304347827,9.247319884296534,8.260546652173916,234.80290556417782,39.30434782608695,6.54473043478261,3.8260869565217392,6.289855072463768,147.16335124403918,152.67259469565215,2.0209562943478256,6.722265217391305,3.3497718733225983,8.083234782608697,282.12890778601525,30.54054054054054,6.705270270270271,3.3783783783783785,8.612612612612612,154.99711362692423,117.8369016486486,1.680344639172865,6.799254054054055,6.45503837170504,8.17715745945946,236.81676380509884,28.11904761904762,6.626809523809523,2.9761904761904763,5.53968253968254,157.27973012884786,104.81107252380954,1.5901252949451905,6.732338095238096,4.569444444444446,8.204720285714288,215.5793293961377,22.976744186046513,6.774906976744186,2.441860465116279,6.015503875968992,162.84903924775918,82.91122927906979,1.2953483616998605,6.83110930232558,6.7789262130347385,8.38532293023256,180.22129108562024,18.057142857142857,6.663251428571428,2.2,4.0,167.52203598573982,64.09625625714284,1.1090592016883996,6.687405714285713,4.794179894179895,8.283330457142856,159.73658092158985,21.5,6.740949999999999,2.3181818181818183,5.090909090909091,158.06891047137094,76.33955454545456,1.3678253850909092,6.808922727272729,6.4890572390572405,8.258202181818183,189.18320295467376,9.68,6.21692,1.56,1.6,171.38680902292776,29.30477355999999,0.88867297700376,6.229220000000001,3.706666666666667,7.8792667199999995,112.70665264243941,10.307692307692308,5.766153846153847,1.7692307692307692,1.6153846153846154,172.05408288038416,35.30522261538461,0.8426614599303075,5.792276923076925,3.8717948717948727,7.410811076923078,100.81952788553349,13.361058601134214,0.19046086956521732,0.03150204194540699,0.7599243856332706,5.123713505566056,1.6765270241140529,59.76309503591683,0.33425424712093377,0.1716385633270321,3.972494172040836,0.1249065595463138,47.743176391076524,3.4234404536862,-0.02556521739130435,-0.01622143825326121,0.1190926275992438,-0.1814744801512288,-0.10158054187809536,14.661752298676742,-0.03039278586011319,-0.013515122873345968,-1.0910673722451714,0.005632882797731557,2.6817163163180835,2.7012210698411083,0.07763783783783777,0.011669387748067729,-0.033719920298370225,1.2309019794842098,0.023578745006596014,12.411531960557905,0.03713644300170314,0.06849281152608179,1.3136794814838648,0.04672257088846879,3.3933637637004423,-1.7917004230803855,-0.04442857142857145,-0.0050130512470644385,-0.14294715996039248,-0.8297176463528072,-0.22034067715293618,-8.118725425150789,-0.042620368117507246,-0.03857520928976512,-0.7703672262544697,-0.029014273832028068,-7.066164104678401,-4.013232514177694,0.008767441860465047,-0.0008862538721464992,-0.058205477645403805,0.5019465326318976,-0.2829888942150514,-17.405168070294987,-0.0807245704338034,0.005415531718468258,0.6266364742591358,-0.002237066118609024,-6.415260900076194,-0.9834188495814199,-0.08929714285714292,-0.006121326372558601,-0.08414798811774239,-2.1186065352416956,0.08440057670989383,-4.5244047750472545,0.05060049439425364,-0.07921918444504461,-1.7310443428695896,-0.05602085768295973,4.015865305555913,-5.663430142636193,0.03374999999999992,0.016206478319558546,-0.13937102594947584,-0.3169502205419029,-0.22816925671158694,-25.847783616944504,-0.15649179492898124,0.019240685684825527,0.6129072794032886,0.015132808042619012,-26.60557173340357,-1.1975803402646497,-0.06122399999999988,-0.016707140514524994,0.029640831758034062,-1.4000420079815166,0.012395178955426411,-5.775313380264637,0.027952973721220787,-0.05661334593572761,-1.2158506162467164,-0.03649295085066163,-2.6750035175320876,5.755998255053076,0.10264615384615408,0.01503455762013216,-0.09771702777373856,1.0461118381723298,-0.22216082103783563,26.25315272996949,0.018522553496450614,0.09784772429838627,1.667626818824922,0.06019382506907074,9.958640959776023,,,0.4738095238095239,1.375,0.7857142857142857,0.03571428571428571,0.5892857142857143,0.19642857142857142,0.5372212153065896,0.03562091266405831,0.04176376980691545,0.9394436843162425,0.2760476839332028,0.1822038007151028,1.4766648996228322,0.4582514846483056,1.926888728451271,1.138877220718702,0.2630247412352706,0.36741036533640153,0.0,0.7880115077325692,9.262345075126522,843.0,155.1134,77.0,238.44444444444446,3764.7775071658416,3351.3972449999997,39.072328143641016,156.2204,212.68835733882028,189.99257300000008,5400.46682797609,904.0,150.52880000000005,88.0,144.66666666666666,3384.7570786129013,3511.4696779999995,46.48199476999999,154.61210000000003,77.04475308641976,185.91440000000003,6488.96487907835,1130.0,248.095,125.0,318.66666666666663,5734.893204196196,4359.965360999999,62.172751649396005,251.57240000000004,238.8364197530865,302.55482600000005,8762.220260788657,1181.0,278.32599999999996,125.0,232.66666666666669,6605.74866541161,4402.065046000001,66.785262387698,282.75820000000004,191.91666666666674,344.59825200000006,9054.331834637784,988.0,291.32099999999997,105.0,258.6666666666667,7002.508687653644,3565.182859000001,55.699979553093996,293.73769999999996,291.49382716049377,360.5688860000001,7749.51551668167,632.0,233.2138,77.0,140.0,5863.271259500893,2243.368968999999,38.81707205909399,234.05919999999998,167.79629629629633,289.916566,5590.780332255645,473.0,148.30089999999998,51.0,112.0,3477.5160303701605,1679.4702000000002,30.092158472,149.79630000000003,142.7592592592593,181.680448,4162.030465002823,242.0,155.423,39.0,40.0,4284.670225573194,732.6193389999997,22.216824425094,155.7305,92.66666666666667,196.98166799999998,2817.666316060985,134.0,74.96000000000001,23.0,21.0,2236.703077444994,458.9678939999999,10.954598979093998,75.29960000000003,50.33333333333334,96.34054400000002,1310.6538625119354,307.30434782608694,4.3805999999999985,0.7245469647443608,17.478260869565222,117.8454106280193,38.560121554623215,1374.551185826087,7.687847683781476,3.947686956521738,91.36736595693922,2.8728508695652173,1098.09305699476,78.7391304347826,-0.5880000000000001,-0.3730930798250078,2.7391304347826075,-4.1739130434782625,-2.336352463196193,337.22030286956505,-0.6990340747826034,-0.31084782608695727,-25.094549561638942,0.1295563043478258,61.67947527531592,99.94517958412101,2.8725999999999976,0.43176734667850597,-1.2476370510396984,45.54337324091576,0.8724135652440526,459.2266825406425,1.3740483910630163,2.5342340264650263,48.606140814903,1.7287351228733452,125.55445925691637,-75.25141776937619,-1.866000000000001,-0.2105481523767064,-6.0037807183364835,-34.8481411468179,-9.25430844042332,-340.9864678563331,-1.7900554609353043,-1.620158790170135,-32.35542350268773,-1.2185995009451789,-296.77889239649284,-172.56899810964083,0.376999999999997,-0.038108916502299466,-2.5028355387523638,21.583700903171597,-12.16852245124721,-748.4222270226845,-3.4711565286535464,0.2328678638941351,26.94536839314284,-0.09619384310018803,-275.85621870327634,-34.4196597353497,-3.125400000000002,-0.21424642303955105,-2.9451795841209836,-74.15122873345935,2.954020184846284,-158.35416712665392,1.7710173037988775,-2.7726714555765613,-60.58655200043564,-1.9607300189035906,140.55528569445696,-124.59546313799623,0.7424999999999983,0.356542523030288,-3.0661625708884688,-6.972904851921864,-5.019723647654913,-568.6512395727791,-3.4428194884375873,0.4232950850661616,13.483960146872349,0.33292177693761826,-585.3225781348785,-29.939508506616242,-1.530599999999997,-0.41767851286312485,0.7410207939508515,-35.001050199537914,0.3098794738856603,-144.38283450661592,0.6988243430305197,-1.4153336483931902,-30.396265406167913,-0.9123237712665407,-66.87508793830219,74.82797731568999,1.3344000000000031,0.19544924906171807,-1.2703213610586013,13.599453896240288,-2.888090673491863,341.2909854896034,0.24079319545385797,1.2720204158790216,21.679148644723984,0.7825197258979196,129.4623324770883,0.769113193821544,0.5888920985139409,0.45825148464830573,0.3664759332714564,0.32716739349589286,0.20721970870064355,0.19311308308064393,0.12854651656916627,0.1358508157415546,0.0713223530461879,0.0801078743467551,0.041438372847806534,0.0601801681545197,0.02490055555298898,0.03413063567356757,0.013580204847747367,16.01312149832274,5.699276176610141,3.5809554953556995,2.1877275567067085,0.3721293754719086,-0.5855504554323252,4.043801401546765,0.9707278047527359,6.029906282833849,0.6453432003574419,14.540220335441733,10.319773327524665,32.066543403683966,11.711043611698974,2.9545582365467973,0.751833603245188,3.5369685592173763,2.2413763544100944,7.01457352456787,0.3003545507557103,3.7682463616439628,2.4403576374011933,24.441828166095057,14.701076015514312,0.4005753626513981,0.7096080661696134,0.781206964416721,0.8528058626638286,0.8528058626638286,0.8528058626638286,2.4613278244725816,436.159125541551,0.0,1.0,1.0,0.0,6.0,0.0,0.0,0.0,0.0,2.5775744571801864,1.0762994566158026,0.7284733696592811,0.3806472827027596,0.3806472827027596,0.3806472827027596,-40.816617969705675,572.881969289826,64.5901508763395,24.90791170825331,53.58618929835187,,8.0,166.0,15.930470882759089,13.212334168400758,4.895483475517775,5.687386274683562,6.923737199690624,24.26546827384644,0.0,0.0,4.722094864452088,5.733667477162185,6.633333333333335,19.25,11.0,0.5,8.25,0.0,0.026190476190476097,2.75,0.25652173913043447,0.08065967016491749,-0.17586206896551698,0.08005952380952364,0.21020253164556935,0.0,0.6898550724637682,0.9404761904761901,0.43333333333333374,0.6091954022988507,0.8604166666666665,7.521097014292255,0.4986927772968164,0.5846927772968163,13.152211580427394,3.864667575064839,2.5508532100114394,20.67330859471965,6.4155207850762785,0.5037974683544306,0.28643216080402,0.12562814070351758,0.2261306532663316,0.125,0.5526287675407168,-1.0636524424923475,-0.13081443940848173,-0.04624575836923251,-0.10636524424923477,0.4473712324592831,0.41369053640903525,0.03575007303660523,0.017986545061262404,0.03182234895454117,-1.7494309548033184,0.8746462931522355,0.7032419620897673,1.3919197495051872,1.2039800995024874,0.712019349020251,1.3206335201314965,0.8535192559182472,1.392236924999526,0.633939742369775,0.8575683400957909,0.5308921285128527,0.9331823720744941,0.6230288012970527,0.40958291533555197,0.6327725290079396,1.1566491864999326,0.6761033395451697,1.045216401007718,0.6175633104900317,0.8294364372289812,0.40756606614544333,0.48194480186055827,0.4504581758391146,0.859887122507628,1.2519773897108364,1.1050926922382887,1.2067011535509158,1.2736910684671876,1.0497341266587807,1.224126767618912,1.2338331389028796,1.2879221094635038,1.0850470763391702,1.0830350404712945,1.1045211090444298,1.099518058207701,1.4950711362051041,1.0963396752489039,1.0438703500832682,1.0830730070577343,0.9536866671369821,1.1381072092100615,1.4683344193975003,1.383340254258666,1.0977738330292557,1.0508053731005451,1.178490543056882,1.0819639001354946,0.8539696014229122,1.7050606244415312,1.0944082376816235,0.9710021321961618,1.5720083392871789,0.7368075672736533,0.8748506519281554,0.579760376078585,1.6929465103867727,1.718510872376317,1.7201815682947785,0.816237375070882,1.314657611771364,0.772154499383646,0.3960241928988436,1.0584577114427858,0.9074977453472167,1.1467943319250526,1.3198191938626969,1.4152002367184586,0.8224056354408965,0.8211500847812842,0.8408765751093784,1.4568763236141395,0.8175608375778156,1.3759366296854312,1.387217773219242,0.5034825870646765,1.3366663933754206,0.7047881768717751,0.856197782182048,0.5502822100107062,1.4098280996687105,1.3026532915055606,1.3335108900309143,1.0265367848510816,0.34969091463149193,0.18539434359185072,0.20314651724997823,0.9682357443551471,0.6677587805324137,0.853425039381835,0.3775276135201056,0.5993883226808071,0.21704238305924684,0.14097311162950993,0.1563636815333622,0.8871043813774069,5.0,0.0,2.2222222222222228,1.25,0.5822222222222224,0.4930555555555556,0.12163265306122452,0.11805555555555555,0.0,0.0,2827.333530360206,3053.851510899778,1627.1529292371895,1531.2023230606442,8.622860618354652,0.42960151966087123,4.918466592885614,0.7531603509978724,1.0,0.125,1.9459874988768269,3.4472624994412104,3.795088586397732,4.1429146733542535,4.1429146733542535,4.1429146733542535,0.3571428571428571,0.0,0.11111111111111116,0.06944444444444443,0.0363888888888889,0.04930555555555555,0.015204081632653065,0.03935185185185185,0.0,0.0,0.6779487906273621,12.071428571428571,4.68,3.5918367346938775,81.97333822136979,1.0,3.5335028806810485,45.48552821569271,,26.3206432947338,34.01303660027468,34.5570299351669,26.320574570091917,38.50080155194793,33.94297367948762,33.46775691553889,39.522221347369836,0.2562252405206564,-0.13422818791946314,-0.5149329139162772,0.15671641791044766,-0.03541854554398625,-0.06058986250566093,0.245331207994921,-0.09092714938373551,-0.07874176182420548,-0.27465549979262643,0.0450967732854971,0.05616962504445582,0.20217118646660248,0.4076314363946193,0.3704327410994743,-0.04437273093989514,0.2402363009069576,0.014064041120396498,0.20767886859103835,0.11110238185924116,0.3990525800171072,0.33069387256242916,0.37406018593558843,0.071075366580232,-0.134098687579163,-0.23326876292223522,-0.15913416837397562,-0.18810708362947165,-0.16193677602220696,-0.1314268568199033,-0.13584847672751124,-0.12750883043256328,-0.22474675004279615,-0.19392532572519797,-0.2322878312989634,-0.14800364447471298,-0.3003678551216752,0.046032772403482664,-0.028133219861822812,-0.07659377530949901,0.09796537844799807,-0.16879471081869057,-0.29123605562654864,-0.24150649132843216,0.03155195204092776,0.1577438372772254,-0.017909917035058096,-0.1343702154948208,-0.0736033632468267,-0.4688477116637647,-0.1943152251262586,-0.1107320540156361,-0.41349043675845354,0.05034250894613204,-0.07570566370982204,0.15138325041520354,-0.46154653656768313,-0.43575755379403863,-0.4485021274017871,0.08411391132967228,-0.42387585532746835,0.1772017531844949,0.5144580261699975,-0.1834011759384893,-0.06185947364105928,-0.13609637866240848,-0.4325040997527041,-0.46818191923336205,0.11210001593968848,0.15428777308650213,0.12115302909298335,-0.5572643829868074,-0.0896321448783248,-0.3214518559101488,-0.5303510338624542,0.039004975124378144,-0.2732475198819383,0.007393366630625321,-0.09663678524001727,0.08362787896336693,-0.32984047895960994,-0.3060673127739501,-0.2921620048075257,-0.056029022778468954,0.4308040572896262,0.538935656864709,0.47725660597452807,-0.12858783008036737,0.2041706346453416,-0.1325125201338372,0.43928703348097503,0.055414564380236946,0.5700800705955095,0.4197933959379964,0.4819108402929922,0.20858773363134153,3.3019272488946267,5.780954903993977,0.7937005259840998,23.629839114151622,35.723320773195844,39.901059903630625,40.2516685992828,40.2516685992828,40.2516685992828,26.976442198317795,15.944281090061827,3.682346377293788,5.143745114709621,0.0,11.03216110825597,1407.684259709504,1191.2168258365286,528.6638457251402,0.0,20.0,21.0,24.0,24.0,22.0,14.0,10.0,4.0,213.03393672791,14.0,4.23410650459726,5.017279836814924,5.8944028342648505,6.705639094860003,7.58629630715272,8.407601514786142,9.289428778295147,10.115003767609359,10.997104049659168,0.804347826086957,1.0239999999999996,1.1303689375794683,0.7718685407941268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6994828690445196,1.0090366581415178,1.038712435479274,0.664591491960106,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.250299525686096,10.023291153407584,0.0,0.0,0.0,0.0,8.417796984328938,0.0,0.0,0.0,31.18920547353706,5.687386274683562,10.80266320486928,214.29760127222886,-412.4616386291604,-50.72703815576071,-17.933114723006977,-41.24616386291605,173.48098330252319,160.42033066066563,13.863112720578785,6.974796985246332,12.340025435435816,0.5,0.6051535568092463,0.2816068158510298,68.21756690217046,0.1689340913170179,153.2433513873317,0.39484644319075357,4.0,0.14285714285714285,0.4301891999668901,0.7620681518079693,0.8389602316192749,0.9158523114305805,0.9158523114305805,0.9158523114305805,0.8777000000000003,,1.6607142857142856,1.2038881980944245,0.883001233280407,1.6581557966933946,-3.8591084983466093,1.1101591187270503,1.0973664910406058,-1.6780538154894666,52.08020000000002,13.212334168400758,0.0,0.0,0.0,11.819220675208399,5.733667477162185,28.987563138298526,0.0,0.0,3.367295829986474,0.0,4.6913478822291435,0.0,6.19644412779452,0.0,7.785305182539862,0.0,9.418085981110297,18.50000000000001,5.471520219198791,0.0,0.0,0.0,0.0,0.0,0.41081018518518597,0.0,23.551999999999992,0.0,33.18025746409675,0.0,0.0,-3.856388888888888,0.0,0.0,-0.7483101851851843,25.998485564327773,5.733667477162185,5.687386274683562,0.0,14.324976713680442,14.817828337479405,0.0,6.923737199690624,29.160951749364212,0.0,4.722094864452088,0.0,17.752976438264916,16.08810598802395,15.899323679788486,90.97105643138542,,53.08574990641141,67.85408917225013,68.98791683700802,53.08669813046322,79.13519101893269,67.72735319915708,66.7787471895005,79.76360861566374,15.899323679788488,90.9710564313854,,51.899525416615475,66.82218500245489,68.2310586370534,51.90230113282507,80.86071160224247,66.77578824024818,65.83814734003715,80.72249651022916,4.706355063154339,67.38108751095979,,38.65265369006141,51.57887347451228,52.44191088784119,38.65142764305107,56.93024058160657,51.36031627586938,50.49080198474174,59.23214522088723,1.135665977127749,6.497932602241816,,3.7918392790293862,4.846720655160723,4.927708345500572,3.7919070093188014,5.652513644209478,4.8376680856540775,4.76991051353575,5.697400615404553,2.35317753157717,45.48552821569271,,26.320643294701405,34.01303660027467,34.557029935166895,26.320574570059527,38.50080155194793,33.94297367948761,33.46775691553887,39.522221347369836,23.20784313725491,0.0,1.0782253086419753,0.0,0.0,5.378831097253716,0.0,23.890386016023303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.285604315082438,234.66558970986634,44.757712474167015,79.28703748714784,87.28703748714784,95.28703748714783,95.28703748714783,95.28703748714783,167.0,96.24686268803957,153.11299486488568,45.4584790036603,99.71,91.33,1.0,6.535785390007767,4.807354922057604,3.3582090732542302,3.682113205198358,,3.6458030661507492,3.678138325962879,3.681904657090571,3.6457717010883357,3.648738062895965,3.6765799863717796,3.674076491647012,3.6643294305219074,0.23987207666101645,0.263008086085597,,0.2604145047250535,0.26272416614020566,0.26299318979218367,0.26041226436345255,0.2606241473497118,0.2626128561694128,0.2624340351176437,0.26173781646585054,1.5478800545814817,1.6399590645320758,,1.630048897746581,1.6388789711126932,1.6399024247705374,1.6300402946496053,1.63085360824219,1.638455205157767,1.637774042916258,1.635117589468368,147.2899999999999,60.137860155456224,57.80260227044383,,58.39550183662659,57.25728114907668,57.21520636692419,58.39699134570509,58.93752159646607,57.33712048654417,57.43553466494967,58.19073900946292,4.295561439675445,4.128757305031702,,4.171107274044757,4.08980579636262,4.0868004547803,4.171213667550363,4.2098229711761475,4.095508606181727,4.102538190353548,4.15648135781878,4.433111832495303,4.393506033266083,,4.403711100143509,4.384027052611923,4.38329194525189,4.403736607075299,4.412950163444787,4.385420477582884,4.3871354192193825,4.400198455148363,25.652874149659862,10.489197373393802,0.0,5.829548689846309,-0.7483101851851843,5.471520219198791,0.0,1.0782253086419753,-3.856388888888888,178.67704305024577,83.10002049910949,-159.94379041899873,-19.67085905571033,-6.954077844304293,-15.994379041899874,67.27221015568864,62.20756876060662,5.375818228586282,2.7046769026350708,4.78519759696974,307.0,18.0,1.8917378080080318,0.7732020746114331,0.2041241452319315,0.041666666666666664,0.34846171252933794,0.10206207261596575,0.10206207261596575,0.013888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.125,0.05005819834947819,10.767584713501616,8.244489379195173,6.41552078507628,5.130663065800389,6.543347869917857,4.144394174012871,4.055374744693522,2.6994768479524915,3.2604195777973106,1.7117364731085096,1.9225889843221224,0.9945209483473568,1.3239636993994335,0.5478122221657575,0.477828899429946,0.19012286786846314,2.6326587534194412,1.1961575739984989,4.024106419500629,1.3315561359358496,4.579665329997943,1.3574900423585365,46.839490056538004,31.147626342173716,25.334736740603937,24.36592180700897,24.36592180700897,24.36592180700897,68.0,75.0,26.867136999999985,17.122863,0.2608695652173913,14.06,6.645833333333333,3.0416666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,23.0,0.0,0.0,23.0,6.0,3.0,6.0,17.0,9.0,14.0,14.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,4.0,1.0,0.0,14.0,6.0,0.0,2.0,3.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,3.044522437723423,0.0,3.676300671907076,3.9749978045895347,4.447053317890954,4.794239756968549,4.912654885736052,4.73674654377681,4.2018901887852635,3.840795496139778 +6917733,CC(C)NCC(O)COc1ccc(COCCOC(C)C)cc1,0,18.22222222222222,5.943794444444443,2.462962962962963,4.962962962962963,166.0702005257726,71.26518916666666,1.254926223154055,5.99372222222222,3.039609053497943,7.548336518518516,179.55143685047935,20.61111111111111,6.260259259259259,2.9444444444444446,4.203703703703703,148.13370791484348,75.6050624259259,1.5862038014074078,6.386833333333334,2.7191358024691357,7.7316148888888865,225.67973299178902,15.443298969072165,6.168216494845362,2.618556701030928,2.7010309278350517,159.654321727688,54.467964371134,1.2296148889941545,6.240489690721649,2.5687285223367695,7.743386721649485,169.35325994976193,12.581967213114755,6.140885245901639,2.19672131147541,2.319672131147541,164.46026762024943,42.1455820409836,1.0938244914596227,6.186547540983607,2.6675774134790524,7.755190721311476,143.25377931087476,10.248062015503876,5.723542635658915,2.0232558139534884,1.7906976744186047,165.23242226767366,34.1187522015504,1.0173737868674653,5.781973643410855,2.0387596899224807,7.384596527131784,126.18479714789004,11.126050420168067,5.752394957983195,2.092436974789916,1.8319327731092436,164.21685005445806,38.01228688235294,1.0261599803811428,5.8141848739495785,2.2471988795518207,7.410082252100841,130.54988343609045,11.372727272727273,6.00718181818182,2.0636363636363635,1.9454545454545455,164.90266132973252,37.695345127272724,1.0243096439301729,6.052846363636363,2.618181818181818,7.656953890909094,131.91127414981432,10.495049504950495,5.7930495049504955,2.0792079207920793,1.7623762376237624,165.86357309033238,34.99045392079207,1.0182508899461784,5.846905940594058,2.156765676567657,7.454532118811881,128.15068535072672,11.858823529411765,5.769447058823529,2.3411764705882354,1.7411764705882353,162.70483804947617,40.86181438823529,1.1384706253149646,5.840929411764705,2.1166666666666667,7.4059310588235325,146.34849979601898,7.356652949245544,0.12408494513031548,0.01799455913214199,0.42969821673525377,3.2825788751714664,1.2600299504551897,34.94246913888888,0.2160902771156849,0.11758710562414258,0.7988587867703095,0.07823771879286694,48.701315533189444,0.222908093278464,-0.00038470507544570686,-0.006232838138791912,0.09259259259259263,0.8429355281207136,-0.22295431542685426,0.9908568148148199,-0.0288652898628257,0.0016426611796983143,-0.12684804145709497,-0.002789459533607827,-2.6454103032838123,-0.1974318724986918,-0.014920015767963368,-0.002935406947170916,-0.06696434884674668,-0.3627621512310325,-0.10476386983753402,-0.8924866182703306,-0.010892516691688819,-0.012242317537086453,-0.033628206820370904,-0.011220381641282513,-1.0768929168697314,-1.19362926982842,-0.007121116957880676,0.002103606727069346,0.022335784479075315,-0.175717915851492,0.09258700978890835,-5.658140219489981,-0.0020440791038941575,-0.009802315095909423,-0.02003533672645866,-0.0003619209786594413,-4.6115762212997815,0.31374613200625256,0.00334234456247804,-0.0012129317761149642,0.010870258716942605,0.3358535107027785,0.03536958759838165,1.4754372835917313,0.00037626547242698477,0.0037619325613296056,-0.0023591217305926797,0.0009461910549654326,1.2070539993887146,0.8565434404214362,0.00532047036921762,-0.00034116773083152276,-0.008285207086950004,0.17898352756740557,-0.0798854321368165,4.039339697245564,-0.005032245557868937,0.007505175732844547,0.08735866317263076,9.569857407986777e-05,2.5741266256595656,-0.7458785384711312,-0.012326999002369318,0.0015146124489442093,0.03949370245666543,-0.2512657438583365,-0.06477929022588674,-3.4951751313131307,-0.004710985530210601,-0.01244814939518638,-0.1012951878178216,-0.006686767277715528,-2.9646635749813153,0.11419413546292896,-0.009312246193755182,-0.0007828523491039145,0.004111830936180048,-0.04825544282823346,0.03182634167041672,0.6220589172167215,0.011976943653422964,-0.0075574026538456395,-0.05123217225700621,-0.006963327887109693,2.63239463228363,0.5034777697087065,-0.004873441862341655,-0.0022206108931723634,-0.10464375050431693,-0.4825788751714679,0.15981967193751367,2.4903728160130716,0.028421121859656548,-0.003191027192770124,-0.007113446658956218,-0.004128991124021592,6.097053040616018,,,0.4666666666666666,0.8804347826086957,0.2826086956521739,0.021739130434782608,0.5978260869565217,-0.31521739130434784,0.9865063667128142,0.019346926599405966,0.023086057034188572,0.6057442950844747,0.17666286896242184,0.30026035932395895,1.592250661797289,0.4769232282863808,1.9606568151447321,1.5400351063369553,0.08415976181047874,0.3364619469972979,0.0,0.42062170880777666,6.022690897629645,984.0,320.9648999999999,133.0,268.0,8967.79082839172,3848.3202149999997,67.76601605031897,323.6609999999999,164.1388888888889,407.61017199999986,9695.777589925885,1113.0,338.054,159.0,227.0,7999.220227401548,4082.6733709999985,85.65500527600003,344.889,146.83333333333331,417.5072039999999,12186.705581556607,1498.0,598.3170000000001,254.0,262.0,15486.469207585735,5283.392543999998,119.27264423243298,605.3275,249.16666666666666,751.108512,16427.266215126907,1535.0,749.188,268.0,283.0,20064.15264967043,5141.761008999999,133.44658795807396,754.7588000000001,325.4444444444444,946.133268,17476.96107592672,1322.0,738.337,261.0,231.0,21314.9824725299,4401.319034000002,131.24121850590302,745.8746000000003,263.0,952.6129520000001,16277.838832077814,1324.0,684.5350000000002,249.0,218.0,19541.80515648051,4523.462138999999,122.11303766535599,691.8879999999998,267.4166666666667,881.799788,15535.436128894764,1251.0,660.7900000000002,227.0,214.0,18139.292746270577,4146.487964,112.67406083231901,665.8131,288.0,842.2649280000003,14510.240156479576,1060.0,585.0980000000001,210.0,178.0,16752.22088212357,3534.0358459999993,102.84333988456402,590.5374999999999,217.83333333333334,752.907744,12943.2192204234,1008.0,490.40299999999996,199.0,148.0,13829.911234205474,3473.2542229999995,96.77000315177199,496.4789999999999,179.91666666666669,629.5041400000002,12439.622482661614,397.25925925925935,6.700587037037036,0.9717061931356674,23.203703703703702,177.25925925925918,68.04161732458024,1886.8933334999997,11.668874964246985,6.3497037037037,43.138374485596714,4.2248368148148145,2629.87103879223,12.037037037037056,-0.020774074074068172,-0.33657325949476324,5.000000000000002,45.51851851851853,-12.03953303305013,53.506268000000276,-1.5587256525925877,0.08870370370370897,-6.8497942386831285,-0.15063081481482266,-142.85215637732585,-19.150891632373103,-1.4472415294924468,-0.2847344738755789,-6.495541838134428,-35.187928669410155,-10.162095374240801,-86.57120197222207,-1.0565741190938154,-1.1875048010973859,-3.2619360615759776,-1.0883770192044038,-104.45861293636395,-145.62277091906725,-0.8687762688614424,0.2566400207024602,2.7249657064471884,-21.437585733882024,11.29561519424682,-690.2931067777777,-0.2493776506750872,-1.1958824417009497,-2.4443110806279567,-0.04415435939645184,-562.6122989985734,40.47325102880658,0.4311624485596672,-0.15646819911883036,1.4022633744855961,43.32510288065843,4.562676800191233,190.33140958333334,0.04853824594308104,0.48528930041151913,-0.30432670324645567,0.1220586460905408,155.70996592114417,101.9286694101509,0.6331359739368968,-0.04059895996895121,-0.9859396433470504,21.299039780521262,-9.506366424281163,480.68142397222215,-0.5988372213864035,0.8931159122085012,10.39568091754306,0.011388130315504265,306.3210684534883,-82.04663923182443,-1.355969890260625,0.16660736938386303,4.344307270233197,-27.639231824417017,-7.125721924847541,-384.4692644444444,-0.5182084083231662,-1.3692964334705018,-11.142470659960376,-0.7355444005487081,-326.1129932479447,11.533607681755825,-0.9405368655692734,-0.07906808725949536,0.4152949245541848,-4.873799725651579,3.2144605087120888,62.827950638888865,1.2096713089957194,-0.7632976680384096,-5.174449397957627,-0.703296116598079,265.8718578606466,42.795610425240056,-0.41424255829904066,-0.1887519259196509,-8.89471879286694,-41.019204389574774,13.584672114688663,211.68168936111107,2.4157953580708065,-0.27123731138546053,-0.6046429660112785,-0.3509642455418353,518.2495084523615,0.7425712826684021,0.641258445963116,0.4769232282863809,0.3606857657507552,0.34186884789478833,0.21942352069900053,0.22016799278380175,0.10982309942066629,0.14178728183572442,0.06125827534573117,0.0983088543818974,0.0342111677820948,0.06531424741675575,0.018230219034681906,0.042224858943317935,0.009934485258630455,8.013321055625264,5.6943061836479085,3.524495237273078,2.1937227551195218,0.37003627136176975,-0.5217294820925109,3.0616985453527517,0.9871313910097104,6.008775015456035,0.9871734845038245,14.540227152325562,10.954705905014595,16.007025947173943,11.705646684860652,1.9820189047704995,0.7773966380507327,3.4673468841539723,2.2435956966944484,6.002602162041012,1.249179141165921,3.6808272597701106,2.439618144501147,20.889911345332212,14.705859684667981,0.23533594676644634,0.5140474246744432,0.7373087324156697,0.8309976779585933,0.843697055778883,0.843697055778883,1.9987478234923535,405.9875417580352,0.0,0.0,9.0,0.0,5.0,3.0,1.0,0.0,0.0,4.382198808295458,2.7565054119728067,1.4542467594996449,0.9077694446047024,0.8336953705306289,0.8336953705306289,312.61598058343736,1515.1974424329865,53.40494882021808,28.059211896907154,56.456611699156355,,17.0,583.0,6.103966387748303,5.106527394840706,12.71084835226122,32.40724312859929,11.3129633249809,0.0,0.0,51.960417072608934,5.316788604006331,14.210588861400147,10.733333333333333,20.25,6.5,0.5,13.75,0.0,0.03333333333333337,-7.25,0.10123456790123436,0.023456790123456694,-0.07777777777777767,0.0440579710144926,0.16544804088585996,0.0,0.5345679012345681,0.8507246376811589,0.43333333333333374,0.5111111111111114,0.8066666666666663,22.689646434394728,0.4449793117863372,0.5309793117863372,13.932118786942919,4.063245986135702,6.905988264451056,36.62176522133765,10.969234250586759,0.54855195911414,0.21739130434782608,0.0,0.23291925465838512,0.6666666666666666,0.2640665846862918,-0.6039360474727365,-0.04116228545322671,-0.011184000879124748,-0.04313828910519545,0.7359334153137083,1.6831236658575432,0.03944787367102761,0.03116895677513969,0.042078091646438574,-4.184478866675115,1.0376654857355956,0.9306192630441168,1.3657584397173976,1.2055067837190745,0.7419557041370667,1.5850227104369838,1.0465346295270495,1.4852340609701098,0.913562312618845,1.0987288489285842,0.9699813696069643,1.3068468077169393,1.1113259811884022,1.37219566644285,1.4325915896915051,1.5894636377847806,1.3639815010274818,1.2189247352075872,1.1071487910204505,1.135623472541059,1.329970978733814,1.0820655977484586,1.431493566909418,1.073593613845544,1.247750219323048,1.4188317046431198,1.2997931703722443,0.8799471432496435,1.2682867722112998,0.9654690713429059,1.2410516835618486,0.9885772684054149,1.4092657704244864,1.3111268627379304,1.4066417349058566,1.0655274717908598,0.9070092667675588,0.8395867406709212,1.010911267420064,0.867610757437963,0.80659675992964,0.9367152848829025,0.9093155022646214,0.9750649918494964,0.8451925839452655,0.7822961750382623,0.8389934508653962,0.9562673577700528,0.8458904538880626,0.8709005532989298,0.8969899456433446,1.0844762485999988,0.9145792876281313,1.0221767492169676,0.8478603380897857,1.0167242019717473,0.8570176904769912,0.8937782098207927,0.9175393082985643,0.9385713742696989,1.1576708253521604,1.4079291509887555,1.2255023230447641,0.757911920481753,1.2245289290734345,1.0069729183361036,1.1501699501750202,0.9858392979478636,1.385462642547546,1.8241363685145655,1.4550679655920307,1.0195871112067012,0.9636199075809126,1.0656084221771973,1.2010965828351552,0.9385237805504414,1.0598114136528576,0.9344411496666811,0.9608557792342634,0.9039005663377484,1.0543223693351942,0.975010510674134,1.0779289240263386,0.9115504422370788,0.8891659628609974,0.8690819743966436,0.993747118237641,1.6526266372470777,1.2346820382979775,0.9105031354571917,0.889894735754423,0.9088362308195715,0.870050694558338,0.6594715204501566,0.8635228561132219,0.903100046735635,5.0,0.11549841852872156,1.7777777777777786,0.5,0.8622222222222224,0.4583333333333334,0.18204081632653066,0.3020833333333333,0.21365583270345173,0.11125000000000002,3610.9846453634646,4402.499782094037,2132.2144039209843,1814.4343095273216,18.417723936944554,0.4612077540551722,9.923326845178172,0.8560029538776989,1.0,0.6666666666666666,1.37268869386801,2.9983820901906615,4.300640742663823,4.847118057558766,4.921192131632839,4.921192131632839,0.21739130434782605,0.010499856229883779,0.06349206349206352,0.02,0.039191919191919194,0.019927536231884053,0.009102040816326531,0.016782407407407406,0.011245043826497457,0.006953125000000001,0.414585296543808,21.043478260869566,12.375,11.224489795918368,139.49544011658094,1.0,3.9984817322609927,149.94706476762087,,122.97269257947733,120.39392803003582,126.15866363386395,123.01859856432023,206.76257660750426,122.2357522730963,123.09214500238971,165.6086587610148,0.03030020510908078,-0.003100336427128086,-0.3463734839526454,0.21548284118116529,0.2567906393648142,-0.1769436633996766,0.028356805893606854,-0.13357977160338655,0.013969739037109598,-0.15878656348004436,-0.03565364093747256,-0.0543190727872842,-0.026837187218263336,-0.12024033819972431,-0.1631274723439973,-0.15584041599131152,-0.11051132814351142,-0.08314395209390678,-0.025541601388353128,-0.05040725032648027,-0.10411275515376663,-0.042095308178715436,-0.14341396725776587,-0.022112193584089942,-0.16225167587263062,-0.05738904869081414,0.11690237652512817,0.05198016563526227,-0.053530447411507615,0.07348000716606856,-0.16192731535370547,-0.009459375642337904,-0.08336215985485441,-0.025079947868457617,-0.0046259142552152,-0.09469099901740928,0.04264794522330004,0.026935939399964033,-0.06740547335491083,0.025297425713172096,0.10231391947443613,0.028070434028654858,0.04222475743563461,0.001741242028328509,0.03199273033689859,-0.0029531148303823837,0.012093796567234505,0.024784833554775735,0.11643113333343777,0.042877646144985584,-0.018959493718416636,-0.01928145559899937,0.05452527856106925,-0.06339962959448514,0.11559972139318628,-0.02328770005313521,0.06382651986378692,0.1093543247184041,0.001223176947850795,0.05285538177927298,-0.10138830030681605,-0.09934322805577547,0.08417057832991304,0.091910324312559,-0.07654522660790948,-0.05141091305209453,-0.10002656416238226,-0.021801006473273918,-0.10586321798731789,-0.12679986687928405,-0.08546730887461883,-0.060874404367186497,0.015522566614297071,-0.07504734908796028,-0.04350494743189229,0.009569113335914621,-0.014700467121513667,0.025258400928421867,0.017802374375553414,0.05542564808231076,-0.06427067503474615,-0.06413170025222073,-0.08900218455429393,0.05405181776844776,0.06843842888637833,-0.03927504547166063,-0.12340457339718287,-0.24352847284165058,-0.14701211867948194,0.12683799450939903,0.07127065938341018,0.13152429734004722,-0.027137560498937504,-0.008904510755542957,-0.05277494267123288,0.125192779165502,9.738821031673133,11.258123309524757,1.6108032458840975,12.751707609681565,26.71344912816278,31.995311538490995,32.953679190423614,33.02834585709029,33.02834585709029,45.09510674832884,35.42080744574997,1.935674521641011,7.738624780937852,0.0,9.674299302578863,9793.573057648695,9391.999287616616,751.5573190458454,30.0,28.0,28.0,30.0,36.0,32.0,32.0,36.0,34.0,325.22530847200085,23.0,4.634728988229636,5.3706380281276624,6.159095388491933,6.918695219020472,7.708410667257367,8.481151420068972,9.273033441314606,10.054447432887068,10.84892923650197,0.5493827160493828,0.9649629629629634,1.1400976307782076,0.5017761496406071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6103191727655802,0.9506172839506172,0.9953197917509647,0.555842424859217,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,24.633904860247185,18.460360185545124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.980208536304467,31.543660028001465,12.586597235060536,25.924612281287054,174.94646572478962,-400.11301374868293,-27.270380952409695,-7.409500254605239,-28.579500982048774,487.562446308227,1115.0844286843035,26.134567867808382,20.649711642301916,27.877110717107584,0.47058823529411764,0.8859368762601598,0.21462014564431442,25.098476478707596,0.09212282728675598,188.78966024842916,0.11406312373984029,9.0,0.5217391304347826,0.2385257215457239,0.5210148919615653,0.7473023132158636,0.8422611312100472,0.8551326380894131,0.8551326380894131,2.3659,,1.1428571428571428,1.3285248953001396,0.9177863289708527,1.1395624948769625,-4.847358875538426,1.1960679314565485,1.1342421939878375,-1.9153025404755315,91.82650000000007,19.31711625624085,0.0,5.316788604006331,0.0,52.55160436791998,26.36540229945133,29.828919765543436,0.0,5.749511833283905,3.8501476017100584,0.0,5.0689042022202315,0.0,6.434546518787453,0.0,7.869019376499023,0.0,9.345482965918476,29.66666666666667,7.7287475854539345,0.0,0.0,0.0,0.0,0.0,1.8374147256596756,0.0,52.10800000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.56527206202321,10.05365155780638,0.0,5.749511833283905,49.721703298936596,16.080607872113017,0.0,33.25840029045949,24.26546827384644,0.0,0.0,0.0,27.095912080592786,32.95723532934133,27.914238550449078,299.89412953524186,,245.84600627696707,240.67233215613254,252.23751976086086,245.93810473778157,414.7896816173229,244.3674986391094,246.0856602487805,331.7169616630232,27.914238550449078,299.8941295352419,,244.80252801609765,239.4593311647716,251.39954093875707,244.89763463376346,418.372512090547,243.27543661473612,245.0500478107915,333.132620062505,4.487832404226519,233.68049487631788,,189.56772860956744,185.66742360433136,194.91901553885873,189.63870040730853,319.9270011275001,188.47596619677853,189.74613353886684,255.2004155775784,1.213662545671699,13.038875197184428,,10.688956794650743,10.46401444157098,10.96684868525482,10.69296107555572,18.034333983361865,10.624673853874322,10.699376532555673,14.422476594044486,2.2439162021132604,149.94706476762087,,122.97269257947733,120.39392803003582,126.15866363386395,123.01859856432023,206.76257660750426,122.2357522730963,123.09214500238971,165.6086587610148,51.33333333333333,0.0,8.10693117544952,0.0,0.0,0.0,9.800238367540441,53.747268754552096,2.5689010017074665,3.1742133204311824,16.535998505445466,0.0,0.08088865164565018,0.0,0.0,0.0,0.0,30.01549094239772,586.9410760210477,74.12518946887255,161.9126328702957,232.23460010384645,261.74437510817336,265.7443751081733,265.7443751081733,332.0,115.4491298218997,75.56783601196894,55.56810066513525,59.95,59.95,0.8888888888888888,6.831548952976884,5.523561956057013,3.7112128160809665,4.707569517248519,,4.696026962783683,4.696509347691528,4.697968688863626,4.696026601464019,4.6932214427084755,4.69628570718434,4.695992745534608,4.6931840550842345,0.16135707896004203,0.20467693553254432,,0.204175085338421,0.2041960585952838,0.204259508211462,0.2041750696288704,0.20405310620471634,0.2041863350949713,0.20417359763193946,0.20405148065583628,2.144267850736814,2.382080871714276,,2.379625947093412,2.3797286637382715,2.3800393443696297,2.379625870151844,2.3790283443807043,2.3796810441519987,2.3796186606416927,2.3790203780459347,274.18000000000035,318.1713912968955,119.55511063036434,,120.57546743533095,120.53546147054473,120.4443427266486,120.57560746345905,120.8187855411995,120.55570373204802,120.57813311563754,120.83391309038137,13.833538752038933,5.19804828827671,,5.242411627623085,5.240672237849771,5.236710553332548,5.242417715802567,5.252990675704326,5.241552336176,5.24252752676685,5.253648395233973,6.595499326867526,5.616686564820455,,5.6251849656011075,5.624853118634776,5.624096883077675,5.625186126932261,5.627200905792494,5.625021040686452,5.625207073339085,5.627326106539576,16.535998505445466,0.0,12.974451687971623,1.086962827052564,0.7504518986071116,8.085110108671206,-0.27547387157162206,10.675832177156988,0.0,334.87602558988794,115.9035926713518,-265.0784374288914,-18.06687041550685,-4.908859952386876,-18.93417410206366,323.0144658518195,738.7533716725958,17.314384124554767,13.68061799393696,18.468834291814893,1650.0,25.0,1.513420005986402,0.8393693518056444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.11785113019775792,0.030982085323622514,17.07913950137325,14.748944257151669,10.96923425058676,8.29577261226737,9.572327741054073,6.143858579572015,6.164703797946449,3.075046783778656,4.253618455071733,1.837748260371935,3.5391187577483065,1.2316020401554129,2.090055917336184,0.583367009109821,1.351195486186174,0.3179035282761746,1.8516239634379275,0.798920390489592,1.8819318145699475,0.6678735299080044,2.5616539463462304,0.7120996945670721,80.95446573132041,42.28480802798141,28.55800788375183,24.689837047293487,24.28170556549149,24.28170556549149,102.0,107.0,55.03858299999997,36.87741700000001,0.1111111111111111,23.05,8.805555555555555,5.333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,54.0,0.0,1.0,54.0,6.0,0.0,3.0,51.0,6.0,23.0,48.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,5.0,2.0,0.0,23.0,5.0,0.0,1.0,4.0,0.0,1.0,12.0,0.0,0.0,0.0,0.0,1.0,3.295836866004329,4.8352893510387265,3.6506582412937387,3.917010546939185,4.2749284991175145,4.745475458993297,4.645592100487007,4.7106556938340685,4.867534450455582,4.933124101654646 +2756,CN=C(NC#N)NCCSCc1nc[nH]c1C,0,28.060606060606062,6.134636363636364,2.727272727272727,6.377104377104377,169.7392781014571,111.02782206060606,1.5355395902298183,6.199121212121212,3.7122251319782182,7.66224996969697,205.73246074196743,27.181818181818183,6.466272727272727,3.212121212121212,6.020202020202021,155.2802777449273,102.95666554545453,1.74924524030303,6.588909090909092,3.2668350168350173,7.886231272727272,241.91308603353255,20.854545454545455,6.227445454545455,2.890909090909091,4.109090909090909,164.18664461344656,75.73234774545453,1.4691997398843817,6.315927272727272,2.716273849607183,7.768482545454546,188.5380771041062,19.627118644067796,6.179230508474577,2.593220338983051,2.2824858757062145,164.51426123424753,70.30943605084744,1.3925690088803897,6.268040677966101,2.569627537141662,7.735715559322034,177.8912860378925,17.075757575757574,6.048009090909092,2.227272727272727,1.803030303030303,166.58130710248363,59.81647834848485,1.3129094090680304,6.1246954545454555,2.5205761316872426,7.635846606060607,157.53740385402673,13.441176470588236,5.6982735294117655,1.9852941176470589,1.3088235294117647,168.180542284757,45.77460092647058,1.1397085409003676,5.7763735294117655,2.082924836601307,7.392089647058823,132.12993219108938,14.884615384615385,5.9385365384615385,2.173076923076923,1.9102564102564101,165.91593470712542,51.23310748076923,1.2464078838171155,6.014328846153846,2.5642806267806266,7.533571846153846,149.29986335066891,13.714285714285714,5.895320408163265,2.122448979591837,2.3945578231292517,171.52915981328312,46.789778632653054,1.0962621160731427,5.953516326530611,2.27437641723356,7.53906330612245,131.64709969606068,13.789473684210526,6.004047368421053,2.3157894736842106,3.763157894736842,171.58881417783653,48.95733878947368,1.0998745199523159,6.04761052631579,2.6096491228070176,7.555768631578948,144.91856905918416,11.57208448117539,0.10091404958677679,0.021435033445923967,0.43158861340679516,3.6328946025915725,1.7284280625964803,52.55631094949494,0.2873300816519082,0.09672415059687782,1.019826649082167,0.049165663911845715,49.08831083706662,0.603305785123967,-0.009595041322314063,-0.015369685076215901,0.18181818181818182,1.368431792674217,-0.6081761206989714,2.7667948383838383,-0.003794855785123932,-0.006051423324150585,0.10206976864290744,-0.007787909090909133,-2.0022756444273684,-1.1957759412304865,0.02490396694214874,0.006994855389128004,-0.04756657483930211,0.2872768084889296,0.34147615108177604,-5.004959082828284,-0.012679355776659134,0.01919970615243343,0.1612576696003557,0.010114775206611549,-0.04240748301981938,-1.1868764688487339,-0.026399411682308433,-0.00568375445704444,-0.17016077570777108,-1.328152263950929,-0.31363415142489254,-5.658210013182674,-0.036340123673714524,-0.023365650340072507,-0.10757005933028557,-0.011097658775738914,-6.547316013012451,-0.9508723599632691,-0.016976033057851225,0.0008267138078837931,-0.06841138659320478,-0.7571166207529845,0.12484790796272452,-4.802257611111111,-0.007067438301086319,-0.01812474747474745,0.006811474263775049,-0.0053729931129476586,-8.372622541489905,-0.047129044455247605,0.0028594798249878556,0.0008572668273101018,0.025185005131529194,0.01718462101706318,-0.1567604937019148,0.16879390032679698,-0.016653838706535168,0.004968451898665774,0.004695227881612451,0.0008649541808459244,4.27504113612583,-1.0336229427138521,-0.009127161474888734,0.00016851210699215122,0.010719078900897074,-0.5382300079269778,-0.09051437077930503,-5.006263202991453,-0.021014038838531715,-0.010561738009465275,-0.2899649184488317,-0.003958150508582312,-8.612253424191467,-0.4589119394314196,0.0006401248102546854,-0.0006601954985450308,0.08912876445343977,0.5522218682391844,-0.1571853378884613,-1.798441820861679,-0.02026858115421615,0.0018428871273026956,-0.10957523089424111,-0.0007158352167313092,1.6341805142933783,1.4263206224928713,0.015808916920400165,-0.000650201546305983,0.0660190420955971,1.1017323688775047,0.1542063178450148,6.682004286549708,0.030951081621645254,0.015619071093712227,0.06283284602047279,0.007294066550674214,7.066911437533399,,,0.48431372549019613,1.161764705882353,0.5,0.0,0.6617647058823529,-0.16176470588235295,0.7741982988553466,0.008225097334933217,0.01328392086434498,0.6247703929607413,0.21931421585439553,0.26741442577379454,1.398968691816088,0.4867286416281901,1.9596760193451592,1.1637584581020022,0.6776963619926888,0.0,0.0,0.7959175612431566,7.639870167030303,926.0,202.443,90.0,210.44444444444446,5601.396177348084,3663.918128,50.672806477584004,204.571,122.5034293552812,252.854249,6789.1712044849255,897.0,213.387,106.0,198.66666666666669,5124.249165582601,3397.5699629999995,57.725092929999995,217.43400000000003,107.80555555555557,260.245632,7983.131839106574,1147.0,342.5095,159.0,226.0,9030.265453739561,4165.279125999999,80.80598569364099,347.376,149.39506172839506,427.26654,10369.59424072584,1158.0,364.57460000000003,153.0,134.66666666666666,9706.341412820604,4148.256726999999,82.161571523943,369.8144,151.60802469135805,456.407218,10495.585876235658,1127.0,399.1686000000001,147.0,119.0,10994.36626876392,3947.887571,86.65202099849,404.22990000000004,166.35802469135803,503.96587600000004,10397.468654365764,914.0,387.48260000000005,135.0,89.0,11436.276875363475,3112.672863,77.500180781225,392.7934000000001,141.63888888888889,502.66209599999996,8984.835388994077,774.0,308.8039,113.0,99.33333333333333,8627.628604770522,2664.121589,64.81320995849,312.74510000000004,133.34259259259258,391.74573599999997,7763.592894234784,672.0,288.8707,104.0,117.33333333333334,8404.928830850873,2292.6991529999996,53.716843687583996,291.72229999999996,111.44444444444444,369.414102,6450.707885106974,524.0,228.15380000000002,88.0,143.0,6520.374938757788,1860.3788739999998,41.795231758188,229.8092,99.16666666666667,287.119208,5506.905624248998,381.8787878787879,3.330163636363634,0.707356103715491,14.24242424242424,119.8855218855219,57.03812606568385,1734.358261333333,9.48189269451297,3.191896969696968,33.654279419711514,1.6224669090909085,1619.9142576231986,19.909090909090914,-0.3166363636363641,-0.5071996075151247,6.0,45.15824915824916,-20.069811983066057,91.30422966666667,-0.12523024090908977,-0.19969696969696932,3.3683023652159454,-0.25700100000000137,-66.07509626610316,-65.76767676767676,1.3697181818181807,0.3847170464020402,-2.616161616161616,15.80022446689113,18.781188309497683,-275.2727495555556,-0.6973645677162524,1.0559838383838387,8.869171828019564,0.5563126363636351,-2.332411566090066,-70.0257116620753,-1.5575652892561975,-0.3353415129656219,-10.039485766758494,-78.3609835731048,-18.50441493406866,-333.83439077777774,-2.144067296749157,-1.378573370064278,-6.346633500486849,-0.6547618677685959,-386.2916447677346,-62.757575757575765,-1.1204181818181809,0.05456311132033035,-4.515151515151516,-49.969696969696976,8.239961925539818,-316.94900233333334,-0.46645092787169706,-1.1962333333333317,0.44955730140915323,-0.3546175454545455,-552.5930877383338,-3.204775022956837,0.19444462809917418,0.05829414425708692,1.7125803489439853,1.1685542291602964,-10.659713571730206,11.477985222222195,-1.1324610320443913,0.33785472910927267,0.31927549594964666,0.05881688429752286,290.70279725655644,-53.74839302112031,-0.4746123966942142,0.008762629563591863,0.5573921028466479,-27.987960412202845,-4.706747280523862,-260.32568655555554,-1.0927300196036491,-0.5492103764921943,-15.07817575933925,-0.20582382644628022,-447.83717805795624,-22.48668503213956,0.03136611570247959,-0.03234957942870651,4.367309458218549,27.058871543720038,-7.702081556534605,-88.12364922222227,-0.9931604765565915,0.09030146923783208,-5.369186313817814,-0.03507592561983415,80.07484520037553,54.20018365472911,0.6007388429752063,-0.02470765875962735,2.50872359963269,41.865830017345175,5.859840078110562,253.9161628888889,1.1761411016225196,0.5935247015610646,2.387648148777966,0.2771745289256201,268.54263462626915,0.7358956118012296,0.6332386041553372,0.4867286416281902,0.3737685648145468,0.31846132345870093,0.2183890848590003,0.21742086281838838,0.1339221258284104,0.1511766806146226,0.08543109091937379,0.10944820621128476,0.06504228906637886,0.07233480652400569,0.047540371783343256,0.04939794426385121,0.028730113113010068,16.002001980731844,5.781698314074549,3.2227240940402786,2.2650184761798444,0.38647894667633587,-0.3687624558497238,3.177435725268138,0.9110318723556546,5.089207026741501,0.6517926494662649,14.569247292299204,10.338117186402817,32.06099843810284,11.799342823530049,2.916216725324553,0.9502067640302305,3.2076989024628406,2.317143536276606,6.027276650528236,0.6250674165718446,3.370553338927287,2.5138180059215283,24.43422385072001,15.577403782965336,0.31028670205624076,0.6853531956270974,0.8716585596296704,0.8716585596296704,0.8716585596296704,0.8716585596296704,1.9609812048634736,405.17377615680056,0.0,0.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,3.4160319985818353,1.4477102276005254,0.46999318194929973,0.46999318194929973,0.46999318194929973,0.46999318194929973,202.3501426013825,884.102101969543,54.85253146475267,26.790972786955848,57.35967800968403,,11.0,301.0,0.0,0.0,0.0,5.959554568743835,29.438319609103075,0.0,25.136877006832847,13.116893295469463,25.593938982542745,5.261891554738487,8.233333333333334,19.75,8.5,0.0,11.25,0.0,0.015686274509803866,-2.75,0.15353535353535336,0.016392496392496403,-0.13714285714285696,0.08352941176470574,0.14878260869565196,0.0,0.5868686868686871,0.856862745098039,0.43333333333333374,0.5704761904761907,0.7733333333333332,13.161371080540892,0.13982665469386468,0.22582665469386468,10.621096680332602,3.728341669524724,4.546045238154507,23.782467760873494,8.274386907679231,0.565217391304348,0.17004048582995948,0.0,0.18218623481781374,0.5,0.2926943536592199,-0.5302178930598817,-0.05425427263507291,-0.016067208880602472,-0.0662772366324852,0.70730564634078,1.2812891839683522,0.05813743949857436,0.038826944968737946,0.051251567358734075,-3.4714606078299415,0.8176479923821616,1.022324865280985,1.8228348150874087,0.748936170212766,0.5320451609279334,1.6423906655251435,0.818684886309718,1.035273199835338,0.964897856883814,0.5471547798290806,1.1033870457795953,1.0567274721560216,1.3194096175210284,0.7434327551471672,0.7798012554013026,1.388936170212766,0.9479750603830813,0.9450344287069573,1.2881155072994415,1.2581821410112781,0.7798474546341779,0.4601264048239856,0.810084934636011,1.0156701467099243,1.181668769283326,1.2529663723683258,1.4235646084339508,1.5803822574828708,1.3569756382708302,1.275833460108276,1.1750563839975616,1.2141801399996794,1.221236479108292,0.8409067067350765,1.235448831792053,1.119702249837121,1.12680526900492,1.1187656626210012,0.9452267623717463,0.9531914893617023,1.0762231084648655,0.9478731021763555,1.1284545605890932,1.0748690270842958,1.136635761388212,0.6956934170432832,1.0690392004633122,1.1541661848271332,1.2421557735933606,0.7742703783886901,0.6958143573819855,0.7434292866082604,0.8637870021906419,0.9744640639826732,1.2143087660655625,1.2614103772982428,0.7855258709358848,0.824000365603165,0.7864675944446805,0.9533625814547216,1.0305323941254747,0.9601191398646068,0.7558736053467119,0.8857610474631752,1.061696602560502,1.016224870086277,1.0380649656196121,1.0533904107434309,0.9899683332751538,1.678125367871558,0.9454660529717053,1.1664469827400326,1.162886357526664,0.9801614321715124,0.9040014767307765,0.6419452887537994,0.7792770537412289,0.9760135755784819,1.1467636293543697,1.1221671536281128,0.9762680212924758,1.0862739529750745,1.002630630734802,0.9371142306701282,0.5182134832399201,0.852305201606542,1.1631771318089983,0.8868980963045914,0.695400243010492,0.7588122384260726,0.5439148567481888,0.5546240088725476,0.8467493994212019,0.5991434978770769,0.8341813144933199,0.7676322577094123,2.5,0.05652892561983472,1.5555555555555562,0.8194444444444444,0.3650000000000001,0.19111111111111112,0.09637188208616779,0.10331632653061223,0.11689814814814814,0.08938271604938272,2953.2003947098087,3374.725249203829,1685.9367885052081,1518.85394488934,12.157110204530508,0.44759087567511274,6.7156986024058485,0.8102525030196135,1.0,0.5555555555555556,1.6283621207766181,3.596683891757928,4.574400937409154,4.574400937409154,4.574400937409154,4.574400937409154,0.14705882352941174,0.00706611570247934,0.07777777777777782,0.04552469135802469,0.024333333333333335,0.014700854700854702,0.008761080189651618,0.010331632653061225,0.011689814814814814,0.008125701459034794,0.3553698255184441,15.058823529411764,9.0,5.928166351606805,104.92554288214419,1.0,3.7019550799874175,80.50761169699138,,57.84745878077498,66.98302731746755,66.63698949741516,57.85408626632827,84.3891459058479,67.23749649247259,66.9843782499785,81.67555069359298,0.05213458181241074,-0.09508132278512131,-0.7170357403449054,0.4212765957446809,0.3766780879627029,-0.35186660866021624,0.052644388245640876,-0.013207304168455591,-0.06256372670948966,0.10008541033397109,-0.15840138159982733,-0.04078925532950807,-0.10333280431677509,0.2467839418210407,0.3263281770366506,-0.11021276595744682,0.07907656013031508,0.19756457238307248,-0.09523041081855806,-0.044128187705803096,0.19849960980741022,0.15812262774804506,0.20572843732462134,-0.0008639018596622284,-0.10256375770324325,-0.26160293626515674,-0.26516191222110025,-0.39426613775694197,-0.36559064031295435,-0.18145629442844433,-0.10765995388489208,-0.1264751795732251,-0.2415699718827692,-0.10547876879575313,-0.22571969730007255,-0.13337831148324147,-0.08216949690525314,-0.16822269175961868,0.0385683469992905,-0.15851063829787237,-0.20840588664831772,0.07223205331159424,-0.09137356721490476,-0.02459693137750996,-0.187385956484507,0.0066790510621636545,-0.10928344469387138,-0.17056244956727523,-0.004072649532753899,0.02833579503247431,0.039993724734454165,0.05835419274092616,0.004730283395726457,-0.09069541110459985,0.0032116770998063945,-0.05796065142497261,0.051367232154594406,0.004603947039271924,0.0175926472262592,0.08708878067358028,-0.08932037649701516,-0.0904449034823463,0.007861527597671888,0.024836333878887052,-0.14815458933023393,-0.052368028926429534,-0.09525522458762989,-0.07313553359160492,-0.10919442501474083,-0.28432765383194974,-0.08050639803581817,-0.17544407777193968,-0.03965680860504809,0.006343267492245835,-0.03079983524217789,0.20651324359531048,0.15200602512532285,-0.09094120911942048,-0.03421933138705128,-0.07054110393763412,0.019053019498546857,-0.10744495742767422,-0.014559657284701887,0.03329062431415764,0.12325528946950777,0.15665724430973266,-0.030333591405224687,0.15296752519596862,0.30326571216560194,0.08921766614536614,0.12713990319775137,0.10771960055035784,0.161480571267135,0.06161130038818034,0.1483569216873083,0.1439632229552533,2.5831392619736713,4.514741907570281,0.8630543739971821,17.944955178036942,37.11457847960133,38.10011726161776,38.10011726161776,38.10011726161776,38.10011726161776,33.31449232886771,19.783893787734037,11.52083815387571,0.0,0.0,13.530598541133662,3317.378166689145,3116.229936459337,547.8039065570229,15.0,20.0,23.0,24.0,19.0,16.0,15.0,15.0,16.0,252.11571551199998,17.0,4.31748811353631,5.081404364984463,5.8664680569332965,6.647688373563329,7.438971592395862,8.226573474977114,9.020994200245264,9.812632434192041,10.609526278887303,0.6767676767676767,0.9825454545454545,1.1511149737923445,0.6366386368051509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6690017782616586,0.9687462863933454,1.004800370787261,0.6081654114933172,1.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,10.30076712495354,0.0,6.19315609577884,5.959554568743835,0.0,10.309193336642,4.9839785209472085,17.0237765041296,0.0,0.0,6.923737199690624,30.792063596931804,12.021248069613002,142.84884480233248,-258.77169330473316,-26.478680147463216,-7.841566463779792,-32.346461663091645,345.19898740371497,625.3304086648099,28.373851317289457,18.949406323176056,25.013216346592387,0.45454545454545453,0.8935555243552393,0.1958323830105946,19.881535825489753,0.1125818688991565,69.24491597207155,0.10644447564476048,6.0,0.29411764705882354,0.32280628401488054,0.7130061225698509,0.9068286159192744,0.9068286159192744,0.9068286159192744,0.9068286159192744,0.5973999999999997,,1.4821428571428574,1.0894163507235541,1.2645970174760948,1.4803597733260636,-2.6849529780564256,0.9787331701346392,0.912934062832132,-1.7583688942891047,69.59710000000001,0.0,5.261891554738487,20.60153424990708,4.992404732635669,12.676590806437414,19.345281995336553,17.715176064461463,0.0,6.19315609577884,3.5553480614894135,0.0,4.74493212836325,2.3978952727983707,6.1070228877422545,4.59511985013459,7.549082710812286,6.529418838262226,9.034199674257309,22.333333333333332,1.7104764284169947,4.218203903079444,3.048393275328701,0.0,0.0,0.0,2.210137058024414,0.0,32.424,0.0,0.0,0.0,0.0,0.0,0.0,3.884758335432939,0.5037500000000004,37.98679413514737,10.633577208012662,0.0,0.0,35.272793605974805,5.752853606746789,18.37878485020795,11.387855989696922,11.31972480740021,0.0,0.0,0.0,21.00907501456998,22.077058682634735,21.15470343611081,161.01522339398275,,115.68792211451344,133.8378880054382,133.12520287512726,115.70259936410815,169.21141497694464,134.3598479061058,133.861352492565,163.55796831592585,21.15470343611081,161.0152233939828,,114.5545187531689,132.8766382842116,132.00938197735422,114.57055953744704,171.46324478975225,133.49625981481051,133.0558224371249,165.109470281475,4.368545535734114,126.66546288898274,,91.4960734441602,108.87963608573304,108.80868655009164,91.50430172050748,132.88042144681413,109.00801757512447,108.24622373313771,129.75465599251447,1.2443943197712242,9.471483729057809,,6.805171889089026,7.872816941496365,7.830894286772192,6.806035256712244,9.953612645702625,7.903520465065048,7.874197205445,9.621056959760343,2.257482804535921,80.50761169699138,,57.84745878077498,66.98302731746755,66.63698949741516,57.85408626632827,84.3891459058479,67.23749649247259,66.9843782499785,81.67555069359298,31.968627450980396,0.0,3.6455621727825913,0.0,0.0,0.0,0.0,33.15841223597961,2.5785834750566896,5.496083055135635,0.0,1.7850186602418743,0.0,0.0,0.0,8.427130295299937,1.8252366745341133,20.069458579279466,436.0978366173126,53.735949985628395,118.69056842801163,150.95523093450208,150.95523093450208,150.95523093450208,150.95523093450208,197.0,101.02174688971499,51.949995588734765,61.513019423859696,114.18999999999998,88.88999999999999,0.8333333333333334,6.174046486666069,5.087462841250339,3.055009304283055,4.068065027065529,,4.068506858871137,4.082208004981496,4.083978355527412,4.068490731280205,4.059929564896439,4.0811208915994435,4.07970185441047,4.068621229593143,0.17970642966370912,0.23929794276856053,,0.23932393287477277,0.24012988264597035,0.24023402091337717,0.23932298419295323,0.2388193861703788,0.24006593479996727,0.2399824620241453,0.23933066056430252,1.647410889272926,1.9337957141417499,,1.9339043180629678,1.9372662707859478,1.937699851528658,1.9339003540478004,1.931793875977649,1.9369999300805196,1.9366521619087458,1.9339324288953819,195.62999999999974,323.38824393215026,74.65102613992146,,74.60178601472461,73.59747688113957,73.45800003700077,74.60297455184353,75.1308292578043,73.68166918672456,73.78898535212163,74.56034419633644,19.02283787836178,4.391236831760086,,4.38834035380733,4.3292633459493866,4.3210588257059275,4.388410267755502,4.419460544576723,4.334215834513209,4.340528550124802,4.3859025997844965,6.3094818460668645,4.8434525209665775,,4.842792699201447,4.829238994703121,4.827342065885704,4.842808630826074,4.8498592350211425,4.830382297295562,4.83183772155846,4.842237037796024,0.0,11.151355513841084,13.92321335043557,2.210137058024414,2.3229183201058206,0.0,3.535713102951108,2.7731323241086048,1.6318450036248557,229.56714556049732,69.71706903891648,-126.29296395366319,-12.922862445646727,-3.827059513747369,-15.786620494207899,168.47361748210577,305.19115036138226,13.847796626739823,9.248216677617643,12.207646014455285,664.0,18.0,0.606493072294114,0.25995864094170423,0.0,0.0,0.11785113019775792,0.03952847075210474,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.032274861218395144,0.20118446353109126,0.055096634447777064,0.1422588984322123,0.05077262294812929,12.510225400620904,10.765056270640732,8.274386907679233,6.354065601847295,6.369226469174019,4.367781697180006,5.000679844822932,3.080208894053439,3.6282403347509424,2.050346182064971,2.0795159180144105,1.2358034922611985,1.157356904384091,0.7606459485334921,0.7409691639577681,0.43095169669515104,1.5130193370866847,0.6008933930131268,1.9620947585084556,0.7675159617572035,1.6984147430359833,0.726400934475826,60.64641160741675,25.502301147126133,22.006623670591033,22.006623670591033,22.006623670591033,22.006623670591033,74.0,80.0,36.868687999999985,23.071311999999995,0.15151515151515152,17.07,6.083333333333334,4.194444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,33.0,0.0,3.0,33.0,5.0,1.0,3.0,29.0,7.0,17.0,26.0,1.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,4.0,3.0,1.0,17.0,7.0,0.0,6.0,0.0,0.0,1.0,5.0,1.0,0.0,0.0,1.0,1.0,3.1570004211501135,4.150055169236106,3.5336865647082343,3.8789831513499458,4.231385414482899,3.9889840465642745,3.7361804147319004,3.7120465133954705,3.7827681695708835,3.969111972412273 +4891,O=C(C1CCCCC1)N1CC(=O)N2CCc3ccccc3C2C1,0,19.872340425531913,5.920421276595743,3.1914893617021276,5.872340425531915,162.56381088333993,78.07940287234042,1.4333237811994888,5.996976595744678,3.849290780141844,7.481269021276593,206.64342340322713,22.8,6.1610000000000005,4.04,5.56,144.9175233787919,85.62161460000009,1.8125188688000011,6.314820000000002,2.549444444444445,7.584891359999995,258.1700863064871,18.270833333333332,6.068260416666667,3.5520833333333335,4.135416666666667,153.9251742969483,66.55875417708332,1.529496953892094,6.181189583333331,2.378761574074074,7.555565541666662,209.8445667870526,14.6,5.909192142857142,2.992857142857143,3.007142857142857,158.98294303000765,51.62017277142857,1.2985146799901497,5.998762142857143,2.3448412698412686,7.471864514285713,171.83252309514273,13.301369863013699,5.963424657534247,2.671232876712329,2.719178082191781,160.97691071874297,45.74368928082192,1.1849278440843773,6.037722602739724,2.6270928462709278,7.555373890410959,155.34562010517507,12.785185185185185,5.955266666666667,2.488888888888889,2.8444444444444446,164.47947423802862,44.074997711111116,1.124983816617874,6.014682962962963,2.854320987654321,7.560317955555556,146.68054618074132,12.338983050847459,5.8143813559322055,2.5084745762711864,2.406779661016949,163.41570767531914,42.68640436440676,1.1372288156657966,5.885156779661018,2.439736346516008,7.430309050847458,147.105069600154,12.53921568627451,5.931470588235295,2.480392156862745,2.1372549019607843,162.58621980421987,42.82111967647056,1.1471762450007255,5.9985833333333325,2.7385620915032685,7.5466172156862745,149.6765710269188,11.367816091954023,5.861505747126437,2.3793103448275863,1.4367816091954022,161.31932392829293,37.393763919540234,1.1732116097256433,5.934885057471264,2.4885057471264362,7.481407494252874,148.18707989969417,7.0955183340878225,0.09487415119963774,0.012233571373442526,0.576731552738796,3.3933906745133533,1.429074503997486,33.895662460842,0.2309400476689216,0.09207659574468079,1.4478899451737839,0.05529614486192843,51.4897755208287,0.5470348574015392,0.004386784970574902,-0.006218706610341129,0.186672702580353,1.04831145314622,-0.25215175945818147,2.5828049093707652,-0.006418221809442498,0.005567999999999898,0.033303908254111975,0.0007766517338162067,0.7224015451624485,-0.08000414969065923,0.008755059793269937,-0.0007465762743754919,-0.014896446355817055,0.20168911272068815,-0.010681321675180086,-0.4435749477657643,-0.007508157379104514,0.006964583333333273,0.04244447168988816,0.006177230138071523,-1.9117887965360527,0.032141240380262635,0.004215742417383424,0.0016752445269224928,-0.05195951626463167,-0.11451529457414474,0.008458791474682013,0.10919992806376766,-0.008487428553826996,0.0037785714285714107,-0.02445191748043718,0.002210272767250858,-1.1716855942017523,-0.6813533676057474,-0.011466340065857611,-0.0014223601175419615,-0.04131913653360784,-0.3017264366818185,-0.22441692709437555,-3.2458549153742147,-0.025680545157628035,-0.01064726027397263,-0.18121599200172536,-0.007250889834239749,-5.368636812473107,0.011179853461428788,0.002005155340945286,0.00040551326312598083,0.02500209580336334,0.20345723722817433,0.04690860210254643,0.060338402042150685,0.007820873256555852,0.0014229629629629362,0.11128175607829546,0.0022750431601361457,0.9140895589144659,0.45803377554073843,-0.0020918576547406223,0.0001414155184581386,-0.029309987646837676,0.02889565797853152,0.06868892623699345,2.2021095961359913,0.00813603469262249,-0.00017966101694915815,0.025854895952953972,-0.002567386116887004,3.3261941530389203,-0.47620252265686736,-0.015044363965595293,0.00047243205259372354,-0.07297685937208748,-0.6937661438500254,0.04067445438641021,-2.1912671070664573,0.0024076078659865307,-0.013760784313725509,-0.14706252200593536,-0.009116219955795802,-0.44983221411281776,-1.5750976933443646,-0.024538225545443656,-0.00026421173511973416,-0.09861954491292159,-1.151522247024971,0.045239320316197686,-7.3937298178975235,-0.005223667147179209,-0.02503908045977011,-0.25182869683814113,-0.012375419990321717,-5.339606003784818,,,0.47681159420289854,1.0434782608695652,0.391304347826087,0.0,0.6521739130434783,-0.2608695652173913,0.9881346914216577,0.0076969617110961815,0.022653483450226615,0.6862921669069388,0.1792318728229113,0.3093413203517793,1.6744268583285966,0.4885731931746906,2.085044094802845,1.7331141826657372,0.19591876415902726,0.15601114797807988,0.0,0.35192991213710717,6.642208042723419,934.0,278.2597999999999,150.0,276.0,7640.499111516976,3669.731935,67.36621771637597,281.85789999999986,180.91666666666666,351.6196439999999,9712.240899951676,1140.0,308.05,202.0,278.0,7245.876168939595,4281.080730000004,90.62594344000006,315.7410000000001,127.47222222222224,379.24456799999973,12908.504315324357,1754.0,582.553,341.0,397.0,14776.816732507037,6389.640400999999,146.831707573641,593.3941999999997,228.36111111111111,725.3342919999996,20145.07841155705,2044.0,827.2869,419.0,421.0,22257.61202420107,7226.824188,181.79205519862094,839.8267000000001,328.2777777777776,1046.0610319999998,24056.553233319984,1942.0,870.6600000000001,390.0,397.0,23502.628964936473,6678.578635,172.99946523631908,881.5074999999998,383.55555555555543,1103.084588,22680.46053535556,1726.0,803.961,336.0,384.0,22204.729022133863,5950.124691000001,151.872815243413,811.9822,385.3333333333333,1020.6429240000001,19801.873734400077,1456.0,686.0970000000002,296.0,284.0,19283.053505687658,5036.995714999998,134.193000248564,694.4485000000001,287.8888888888889,876.776468,17358.39821281817,1279.0,605.0100000000001,253.0,218.0,16583.794420030426,4367.754206999997,117.01197699007399,611.8554999999999,279.33333333333337,769.754956,15267.010244745716,989.0,509.9510000000001,207.0,125.0,14034.781181761484,3253.257461,102.06941004613097,516.3349999999999,216.49999999999997,650.8824520000001,12892.275951273394,333.48936170212767,4.4590851063829735,0.5749778545517987,27.10638297872341,159.4893617021276,67.16650168788183,1593.0961356595737,10.854182240439314,4.327599999999997,68.05082742316785,2.598918808510636,2420.019449478949,27.35174287007696,0.2193392485287451,-0.31093533051705646,9.333635129017651,52.41557265731101,-12.607587972909073,129.14024546853827,-0.3209110904721249,0.2783999999999949,1.6651954127055986,0.038832586690810335,36.12007725812242,-7.680398370303287,0.8404857401539139,-0.07167132234004722,-1.4300588501584373,19.362154821186063,-1.0254068808172883,-42.58319498551337,-0.7207831083940334,0.6685999999999942,4.074669282229263,0.5930140932548662,-183.53172446746106,4.499773653236769,0.5902039384336792,0.234534233769149,-7.274332277048433,-16.032141240380263,1.1842308064554818,15.287989928927473,-1.1882399975357796,0.5289999999999975,-3.423268447261205,0.30943818741512014,-164.03598318824532,-99.47759167043912,-1.6740856496152112,-0.20766457716112638,-6.032593933906744,-44.0520597555455,-32.76487135577883,-473.89481764463534,-3.749359593013693,-1.554500000000004,-26.457534832251902,-1.0586299157990033,-783.8209746210736,1.5092802172928863,0.2706959710276136,0.05474429052200741,3.375282933454051,27.466727025803532,6.332661283843768,8.145684275690343,1.05581788963504,0.19209999999999638,15.023037070569888,0.30713082661837965,123.40209045345289,54.047985513807134,-0.24683920325939343,0.016687031178060356,-3.458578542326846,3.4096876414667197,8.105293295965227,259.848932344047,0.9600520937294537,-0.021200000000000663,3.050877722448569,-0.30295156179266647,392.4909100585926,-48.57265731100047,-1.5345251244907199,0.0481880693645598,-7.443639655952923,-70.7641466727026,4.148794347413841,-223.50924492077866,0.24557600233062615,-1.403600000000002,-15.000377244605406,-0.9298544354911717,-45.88288583950741,-137.03349932095972,-2.134825622453598,-0.02298642095541687,-8.579900407424178,-100.18243549117248,3.9358208675091984,-643.2544941570845,-0.4544590418045912,-2.1783999999999994,-21.909096624918277,-1.0766615391579895,-464.5457223292791,0.6874430569105274,0.5886515833801882,0.43219936319299557,0.3422652409507263,0.27241691134150786,0.19203887889564258,0.17415134458951115,0.10996606946929956,0.11035594133794446,0.06357185922202538,0.06993336304115884,0.03608693384653236,0.04363087138291088,0.01851240640647086,0.028241640726700077,0.010589165450589655,8.02328580127605,5.687341123415805,3.545507467292304,2.1871247258942765,0.39635061739878746,-0.4104967386121345,3.2168065854121846,0.9772582672521297,6.023237085577322,1.8245372056202982,14.544730545880416,10.947890866365823,16.011183375945034,11.69851448361601,1.9900074256957672,0.751000726507334,3.490866987270849,2.237054037591669,7.009354957792489,1.223094292496251,3.7037224960717245,2.433010242339139,20.89842524249138,14.701777827210696,0.2440563809846826,0.5042525532757411,0.7179769717914369,0.8080109837362037,0.8430089164745176,0.8503693288338826,1.4594839885361388,621.550557109791,0.0,2.0,3.0,0.0,4.0,7.0,2.0,1.0,0.0,4.143611122824168,2.6393234547273208,1.403705711724193,0.88318670221972,0.6808510638297864,0.6382978723404245,207.2572385465515,933.5769362393852,41.20202084562453,19.86333906892309,38.710741269368015,,11.0,438.0,0.0,9.589074368143644,30.318862739924942,6.544756405912575,38.64886452054262,17.54772460632,0.0,15.866186530162565,18.19910120538483,0.0,10.966666666666667,24.0,9.0,0.0,15.0,0.0,0.023188405797101443,-6.0,0.0993583248902396,0.027780008028904013,-0.07157831686133559,0.0,0.1190632911392403,0.0,0.545390070921986,0.8014492753623186,0.4460317460317464,0.517610062893082,0.8014492753623186,22.727097902698127,0.17703011935521218,0.5210301193552122,15.784719838859594,4.12233307492696,7.114850368090924,38.51181774155772,11.237183443017884,0.5949367088607597,0.060790273556231,0.0,0.3465045592705167,0.5789473684210527,0.3044417318869434,-0.5363530672971146,-0.046527797247382215,-0.01141176738930031,-0.033522066706069664,0.6955582681130568,1.2254062814386009,0.031224814876885196,0.026072474073161725,0.03952923488511616,-3.151122382510236,0.8469235676917187,0.6302467732623335,1.586611385526824,0.8145682888540029,0.5249252934898615,1.4151402160867015,0.8550622937993779,1.170129439822166,0.6340253258156947,0.45702767018116763,0.6057421089280468,1.0684112016512302,0.9655480413423503,0.7421300007475379,1.3015422548490705,1.2816015829408685,0.9148337446638211,1.1736380015240682,0.9709515868327804,1.0716103653078648,0.7635265505129863,0.48888175397914463,0.6484044741278557,1.0521668432151698,0.9680111741008768,0.8965577125079844,1.02396106409462,1.2727629513343797,1.0630355237078826,1.0341499754585666,0.9703157739414889,1.031884257551369,0.9004926848269579,0.8477731844157649,0.8766157542005593,1.0110444361579356,1.1143482531930549,1.3684161887470538,1.308532792012119,1.1332820799552694,1.2030690340784493,1.1363084671552575,1.1099146469098924,1.0765846374208337,1.3301079911419156,1.5478654350090169,1.45097707711746,1.061230300759926,1.03042878274472,1.2824872958387619,1.2218934149500877,0.9050758765044477,1.0564735760306736,0.9352264059055925,1.0248302656900403,0.8942749297857349,1.250038854826728,1.3163937990899486,1.3184587560174392,0.9157934356537224,0.9293107661830128,1.0779320338797052,1.1439554622818844,1.0642311683473908,1.0265814083895595,0.9087482517522971,0.9273921418987793,0.9176231700256787,1.0506804178461935,1.0464096065315371,1.1102608726974281,0.8967289342455037,1.0967219349140702,1.4742954365502063,1.110208519427304,1.1646196940314584,1.345962290999645,0.9144285585576108,1.088799693329767,0.9457333194951693,1.4264667369859492,1.6980131268432057,1.5821882433757821,0.9587575046742522,1.223978797892109,1.421861435286261,0.8808602733225748,1.0923329544019196,1.375798893509489,0.9174190376450858,1.2171747769169745,0.9983912246903601,1.4136005409810117,1.5630079559931693,1.4598210084278362,1.0707287872851743,3.5,0.01632486480971329,2.88888888888889,1.6875,1.4222222222222223,0.8541666666666667,0.5281632653061225,0.28125,0.10254472159234063,0.03812499999999999,4301.687637825987,4983.645574767546,2187.5122676991505,1950.946916675975,13.082363948233915,0.4728803567185857,6.895971017670696,0.8971025131501847,1.0,0.5789473684210527,1.41097772885347,2.915265396950317,4.150883139953445,4.671402149457918,4.873737787847851,4.916290979337213,0.1346153846153846,0.003264972961942658,0.07807807807807811,0.0421875,0.04063492063492064,0.027553763440860222,0.01956160241874528,0.012228260869565216,0.0060320424466082725,0.0034659090909090902,0.3676224345570141,16.467455621301774,7.086924762600439,3.2544378698224854,137.0008686865595,1.0,4.0907931951364995,101.76744104793336,,89.35924241959405,87.99367467557533,86.91915788639619,89.37096282906869,111.45025064624906,88.80612690818432,89.43802641480318,104.21209564055347,0.07709582748500703,0.0462379364147782,-0.508331248538029,0.3236734693877549,0.3089274279615796,-0.1764440963384685,0.07619868507820296,-0.027791722891837876,0.060471392919862144,0.023001684876066082,0.014045314293708276,0.014029999895226224,-0.011275307302964542,0.09228077071116254,-0.061026845847829095,-0.025829081632652958,0.059435865795090755,-0.007474293079403282,-0.013086481147202973,-0.03251128357723515,0.07563901854761625,0.02931470850486066,0.11171176857800381,-0.03712948400333759,0.004529794564246533,0.04443510022569268,0.13693830491390505,-0.09009307019511094,-0.03374656959902426,0.005919069615349385,0.0032216490292798087,-0.036751653251560226,0.04103726248795093,-0.01688796690794225,0.039971552678216414,-0.022755694355819842,-0.09602587654977006,-0.12085842055893295,-0.1162669570579952,-0.0716436205672996,-0.08891591497200337,-0.1570365481062213,-0.09576018521909677,-0.1112000513416537,-0.11563481672906784,-0.1251586783966338,-0.13112830654550767,-0.10426607531628061,0.0015756218129575213,0.021134896234549318,0.03314757814764516,0.0433513576370719,0.05995691529309461,0.03282446224555201,0.001780121633906896,0.033865383399279234,0.015454122206132279,0.07685788305197382,0.041142889180010814,0.01775283635767061,0.06455254626575802,-0.02204876279039227,0.011559626714168937,-0.050820849852326856,0.00851527594378017,0.04806532202824486,0.06496729776796606,0.03523007280351135,-0.0019512126343956095,0.01785694833998638,-0.046429748824219706,0.06459911932794123,-0.06711314103285825,-0.15857178984335132,0.03861767248273153,-0.12653522947640597,-0.20444629292485414,0.02846209506406656,-0.06464741940352756,0.010425250580350215,-0.14944931665244002,-0.10157023501415648,-0.1648617634838473,-0.008736340556211033,-0.221984866951493,-0.25863973732749823,-0.021597269272757347,-0.1709973113914001,-0.3393426685803311,0.03165637633982817,-0.2181320346353796,-0.0226191481291626,-0.27193751308096775,-0.1739280652355903,-0.22380258191999627,-0.10370225835660975,17.7370691240414,21.90069268799855,5.431347546256182,12.659129025239835,27.074942655059065,32.35118676455778,34.62693433435754,35.29910142381203,35.34199504083332,47.95601418046543,39.86162620131196,4.506131575657627,3.5882564034958375,0.0,8.094387979153465,4102.469574817635,3726.941292101724,784.7245198774212,149.0,37.0,52.0,70.0,94.0,103.0,122.0,137.0,154.0,312.1837780080007,26.0,4.844187086458591,5.720311776607412,6.61338421837956,7.507141079727608,8.408493774492896,9.309008543772885,10.214605350465526,11.118652490616178,12.026808410361907,0.5957446808510639,0.9654468085106386,1.127313285368422,0.5534164604431752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6566063447572942,0.9529411764705878,0.9923757573879225,0.6052650848162279,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,9.799819461700956,0.0,0.0,11.814359458703011,0.0,9.589074368143644,0.0,0.0,0.0,43.52793314262447,30.38936785217202,19.007418857986544,12.586597235060536,161.3272434299205,-284.2197793184249,-24.655625318719103,-6.047229347200529,-17.763736207401557,368.584481976472,649.3571569209603,16.546395526905425,13.816109721722562,20.94700506196646,0.45454545454545453,0.8522119599878737,0.18843511400723822,2.724660889330321,0.1375241087165856,26.110017053852054,0.14778804001212642,6.0,0.038461538461538464,0.25402019240853735,0.5248390969693152,0.7472889984827166,0.8409987263138344,0.877425479723103,0.8850863872404091,2.5349000000000004,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,87.75500000000005,9.589074368143644,0.0,9.799819461700956,5.917906046161393,44.56677056670402,19.634269217737724,35.392371257240434,0.0,0.0,3.970291913552122,0.0,5.303304908059076,0.0,6.859614903654202,0.0,8.51579221050061,0.0,10.223866701574616,28.000000000000004,8.36694372888682,0.0,0.0,0.0,0.0,0.0,2.557184744268078,0.0,45.37600000000001,0.0,25.408378921012847,0.0,0.0,0.0,0.0,0.0,0.3200621220710511,52.98372441231583,0.0,0.0,0.0,41.24844813814169,16.009895991069655,5.917906046161393,49.272851927172,24.26546827384644,0.0,0.0,0.0,26.010573640829232,30.860498203592826,31.066274517313765,203.53488209586692,,178.77991716875096,176.08301417710572,174.01380178622236,178.80321475465638,224.57056329165044,177.69117816877605,178.93513859789607,209.1737416528998,31.06627451731377,203.53488209586692,,178.13084884576955,175.304209070585,173.3556025118413,178.15594958995757,226.10145345754012,176.99742184926146,178.29284311326222,209.86082949370987,4.983959206759563,149.65340388097965,,133.43499008121825,131.2705330825691,129.43966413153495,133.45319972860725,168.01335628372266,132.5508850057282,133.5607111052497,156.91138424690996,1.3507075877092942,8.849342699820301,,7.7730398769022155,7.655783225091553,7.5658174689661895,7.774052815419843,9.763937534419584,7.725703398642437,7.779788634691133,9.094510506647817,2.491979603379781,101.76744104793336,,89.35924241959405,87.99367467557533,86.91915788639619,89.37096282906869,111.45025064624906,88.80612690818432,89.43802641480318,104.21209564055347,44.78823529411763,0.0,0.0,0.0,0.0,0.0,0.0,46.64166059723236,8.176266252636653,0.0,0.0,0.0,0.19043970983455027,3.814057854623331,0.0,0.0,0.0,28.447458986362708,451.5971101291376,66.31595325611309,137.0174736566649,195.0915075778119,219.55590102452214,229.065676028849,231.06567602884903,967.0,124.76259273088256,78.31461527725487,57.87287063734062,40.620000000000005,40.620000000000005,0.8333333333333334,7.812390852610381,5.700439718141092,4.163822303648428,4.72980178343341,,4.726924380966352,4.724942230198092,4.723734304375798,4.726942678872852,4.746810019316885,4.726102788708204,4.727040251840101,4.742924109484742,0.18103575233254035,0.2056435558014526,,0.20551845134636312,0.20543227087817792,0.2053797523641651,0.20551924690751533,0.20638304431812543,0.20548272994383493,0.2055234892104392,0.2062140917167279,2.2593425983412305,2.3867924183099896,,2.3861838773612862,2.385764457392965,2.3855087759068954,2.386187748350033,2.390381940493574,2.3860100510841646,2.386208390013545,2.3895629691722293,245.33000000000004,205.57289503579665,133.19995669774735,,132.4780947127574,132.61849886561862,132.8143265257337,132.47710321383244,131.39847660016804,132.5425499414535,132.46921491262796,131.46065371158778,8.937951958078115,5.7913024651194505,,5.7599171614242355,5.766021689809505,5.774535935901465,5.759874052775324,5.712977243485567,5.762719562671891,5.7595310831577375,5.71568059615599,6.1587098143418375,5.724760555949353,,5.719326431771455,5.720385699746907,5.721861234623621,5.719318947495375,5.71114363531238,5.719812848443265,5.719259401084143,5.711616718461562,0.0,29.222436775636176,0.0,2.557184744268078,0.46074205299403737,8.416703507798385,6.455969342205814,1.7202969104308394,0.0,303.24602276977527,85.48919792100624,-150.61139365325062,-13.065304953615975,-3.2044977373032046,-9.413212103328163,195.31723880217362,344.10197142897556,8.768129002919068,7.321318541042035,11.100063594483084,1134.0,40.0,1.336400640589254,0.7413649080630137,0.0,0.0,0.46782762744990114,0.1717048074293297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2965065170604102,0.19098222507162,0.47487909331439715,0.22400244328445837,15.81119030894213,13.53898641774433,11.237183443017885,8.898896264718884,10.079425719635791,7.105438519138776,9.05586991865458,5.718235612403577,7.724915893656113,4.450030145541777,6.573736125868931,3.3921717815740418,4.49397975243982,1.9067778598664986,3.4454801686574092,1.2918781849719378,3.7818227241727884,1.8453104206780082,6.266945759567733,2.8108073608858435,10.261684254686253,4.028425974670178,77.91507591205419,44.90623890392038,31.56671161701612,25.78777178099721,24.052048046436195,23.900788946364806,126.0,152.0,51.537031999999975,29.232967999999993,0.44680851063829785,170.04,6.138888888888888,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,6.0,6.0,47.0,0.0,0.0,50.0,6.0,2.0,5.0,45.0,8.0,26.0,42.0,0.0,0.0,0.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,2.0,0.0,2.0,23.0,4.0,0.0,2.0,2.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,1.0,3.4657359027997265,6.272228211218328,3.9415818076696905,4.415824014257172,4.8432023497960515,5.298629817730082,5.426050733057588,5.728170162713031,5.9655856843259825,6.233920409454565 +3478,Cc1cnc(C(=O)NCCc2ccc(S(=O)(=O)NC(=O)NC3CCCCC3)cc2)cn1,0,26.551724137931036,6.276001724137933,3.1551724137931036,7.421455938697318,164.84126460353147,104.99441582758622,1.510418352257293,6.335022413793103,5.5525770422401965,7.808763051724136,214.00046977764708,29.183333333333334,6.3667966666666675,3.8,5.822222222222223,147.98618415255842,111.46908481666671,1.8503660056666675,6.520560000000001,2.841640946502058,7.826126999999997,262.24902702534376,22.242990654205606,6.319279439252334,3.2523364485981308,5.370716510903426,155.89854894526468,82.75259624299069,1.5407042290513098,6.418847663551401,3.645321333794854,7.802359308411213,211.29081141256898,17.73972602739726,6.118483561643834,2.6780821917808217,3.552511415525114,162.07265142154748,63.92617693150683,1.2881380952097328,6.1979910958904085,3.0070078640284126,7.694895260273974,170.6708919928198,15.965986394557824,6.199672789115646,2.421768707482993,3.7052154195011333,165.87270866594662,56.590592768707474,1.1440171044392111,6.250990476190476,3.8452380952380953,7.791794231292517,151.26683851633703,16.16,6.2136320000000005,2.496,3.36,167.15312157861962,57.54889525600001,1.158976658265344,6.263892000000001,3.2595925925925915,7.821460496,155.00572181052067,19.701923076923077,6.3445769230769224,2.8173076923076925,3.6538461538461537,161.96272521046166,70.79481519230771,1.3457352031772403,6.423490384615388,3.545005341880341,7.940321749999999,180.9588831496323,18.30841121495327,6.497642990654208,2.691588785046729,3.3271028037383177,162.83430962275344,63.99936103738318,1.305086911254093,6.5602308411214985,3.8374004845967447,8.10566153271028,177.90644085485374,16.854368932038835,6.26922233009709,2.650485436893204,3.3074433656957924,159.8648848545925,59.1121062330097,1.328896617932398,6.344279611650488,3.4769267649526543,7.843661922330097,177.79585923280976,9.995243757431632,0.13842262187871573,0.018659139212816044,0.5841260404280618,4.039239001189061,1.5626715168385517,45.986059869203324,0.2667545802742607,0.12891061236623064,2.2965803343804896,0.08486791230677761,49.46889759480156,1.9306183115338902,-0.009454202338485861,-0.013069289547557345,0.09087395957193815,0.6016294534724975,-0.2545495765330049,8.35089961700356,-0.01646602589079542,-0.0033954399524374393,-0.28194196383668035,0.00221617217598094,1.0109532942584678,0.5055619144987611,0.040384758076166566,0.0038909513250609397,-0.06591785480124907,0.732021785862896,-0.07401709269104033,2.1895329883538728,-0.0117439021375019,0.03412042211652801,0.5189537968222449,0.02554492285274537,-3.6951665097644617,0.3788705552750316,-0.00034817690941964745,-0.002438577372968806,-0.04444724968644636,0.1326499401850012,-0.07710022400034428,1.6159771220578891,-0.01750643657989804,0.0011345340674018152,-0.023003962298195443,7.461934178164388e-05,-1.583736162877102,0.1645028998519741,0.019449393134185904,0.002324800105620793,0.018853082255494348,0.3900100930846642,-0.09630589659738124,0.8098925180826193,-0.012997777593345743,0.01733690112192321,0.38119195707239545,0.011006217648652781,-1.269560565638507,0.32751486325802603,-0.026740980499405428,-0.0015544807670892795,0.012977407847800243,-0.30023516977143627,0.05623487847777086,1.688029519210463,0.03501941012816551,-0.021904060642092722,-0.3888590227112215,-0.018951307203329402,5.510153112518359,-1.6142755876703552,-0.02544864973017463,0.0008090823111262176,-0.0695371810116162,-0.6031942030752971,-0.07694161852756219,-7.001147854282905,-0.02052810638040657,-0.02213576157047462,-0.26782621085365704,-0.020647666119775063,-0.8154579032628503,-3.581128385211197,-0.06233396573949557,-0.0010704942741397952,-0.042231100047784666,-1.4949270450176135,0.09713378788702952,-16.128502192116645,-0.006969639655780685,-0.05918205935301746,-0.8145260549694857,-0.03894094179437042,-3.2544781688973154,-2.301236392182214,-0.020435310194751925,0.0033448418538088395,-0.00913441002966879,-0.8928267704112458,0.03529338003221848,-10.522855396488232,-0.014018324453242952,-0.022705607344469622,-0.43746307419540764,-0.012472215453747883,-6.028669873455527,,,0.4731182795698925,1.217741935483871,0.5806451612903226,0.0,0.6370967741935484,-0.056451612903225805,0.8743685470220472,0.0188024690104791,0.02712504965564039,0.972894448925815,0.22460602031209967,0.2538242062378437,1.8472629959478624,0.4784302265499433,2.0140527190554263,1.3927162390058119,0.32293133951110387,0.22644817445840443,0.0,0.621336480049615,7.67548923006898,1540.0,364.00810000000007,183.0,430.44444444444446,9560.793347004825,6089.676118000001,87.604264430923,367.43129999999996,322.0494684499314,452.9082569999999,12412.027247103531,1751.0,382.00780000000003,228.0,349.33333333333337,8879.171049153505,6688.145089000002,111.02196034000005,391.2336,170.49845679012347,469.5676199999998,15734.941621520626,2380.0,676.1628999999997,348.0,574.6666666666666,16681.14473714332,8854.527798000005,164.85535250849014,686.8166999999999,390.04938271604937,834.8524459999998,22608.116821144882,2590.0,893.2985999999997,391.0,518.6666666666666,23662.607107545933,9333.221831999997,188.068161900621,904.9066999999997,439.02314814814827,1123.4547080000002,24917.95023095169,2347.0,911.3519,356.0,544.6666666666666,24383.288173894154,8318.817136999998,168.17051435256403,918.8956000000001,565.25,1145.393752,22236.225261901545,2020.0,776.7040000000001,312.0,420.0,20894.14019732745,7193.611907000001,144.872082283168,782.9865000000001,407.44907407407396,977.6825620000001,19375.715226315082,2049.0,659.8359999999999,293.0,380.0,16844.123421888013,7362.660780000002,139.95646113043298,668.0430000000003,368.6805555555555,825.7934619999999,18819.72384756176,1959.0,695.2478000000003,288.0,356.0,17423.271129634617,6847.931631,139.64429950418796,701.9447000000004,410.6018518518517,867.305784,19035.98917146935,1736.0,645.7299000000003,273.0,340.66666666666663,16466.083140023027,6088.546941999999,136.87635164703698,653.4608000000003,358.1234567901234,807.8971779999999,18312.973500979406,579.7241379310346,8.028512068965513,1.0822300743433306,33.87931034482759,234.27586206896552,90.634947976636,2667.191472413793,15.47176565590712,7.476815517241376,133.2016593940684,4.9223389137931015,2869.1960604984906,115.83709869203341,-0.5672521403091516,-0.7841573728534407,5.452437574316289,36.09776720834985,-15.272974591980294,501.0539770202136,-0.9879615534477252,-0.20372639714624635,-16.91651783020082,0.1329703305588564,60.657197655508064,54.09512485136744,4.321169114149822,0.4163317917815205,-7.05321046373365,78.32633108732988,-7.919828917941316,234.2800297538644,-1.2565975287127031,3.650885166468497,55.5280562599802,2.7333067452437545,-395.3828165447974,55.31510107015461,-0.05083382877526853,-0.3560322964534457,-6.489298454221168,19.366891267010175,-11.256632704050265,235.93265982045182,-2.5559397406651136,0.16564197384066504,-3.3585784955365345,0.010894423900120007,-231.2254797800569,24.181926278240194,2.859060790725328,0.3417456155262566,2.7714030915576693,57.33148368344564,-14.156966799815043,119.05420015814504,-1.9106733062218242,2.548524464922712,56.03521768964213,1.617913994351959,-186.62540314886053,40.93935790725325,-3.3426225624256785,-0.19431009588615994,1.6221759809750305,-37.529396221429536,7.029359809721358,211.0036899013079,4.377426266020688,-2.7380075802615904,-48.60737783890269,-2.3689134004161754,688.7691390647949,-167.88466111771695,-2.6466595719381614,0.08414456035712663,-7.231866825208085,-62.7321971198309,-8.001928326866468,-728.1193768454222,-2.1349230635622836,-2.3021192033293603,-27.85392592878033,-2.1473572764566065,-84.80762193933643,-383.18073721759805,-6.669734334126026,-0.11454288733295809,-4.518727705112959,-159.95719381688465,10.393315303912159,-1725.749734556481,-0.7457514431685333,-6.332480350772868,-87.15428788173497,-4.166680771997635,-348.22916407201274,-237.02734839476807,-2.104836950059448,0.34451871094231046,-0.9408442330558854,-91.96115735235831,3.635218143318503,-1083.854105838288,-1.443887418684024,-2.3386775564803712,-45.05869664212699,-1.2846381917360319,-620.9529969659193,0.7183669014737171,0.5884956315122636,0.4494344552438862,0.3578060759937687,0.3040756440443909,0.20642594754272967,0.19667968062109298,0.12190204483936895,0.1321239679573015,0.06958104617267004,0.08343008594761177,0.04207230555660425,0.05634454823326316,0.02417092208952205,0.035975706420254674,0.014902169348160776,16.013123585472837,5.69409205390456,3.5812061923026133,2.1846577564806307,0.4712062135709745,-0.38689050398457153,4.0438228593415655,0.971351187555036,6.024054973355704,0.6442314948068689,14.551024436458295,10.31976668899435,32.066544360406034,11.705168672445275,2.9545857382905063,0.7506038697064887,3.5372132752645697,2.2380331499862316,7.015031277066565,0.29893799515769615,3.7684358387579464,2.43677918898288,24.44183292873226,14.700868500819098,0.2799805135868417,0.6099322404039307,0.7849088209793922,0.8481000828807892,0.8635988158486799,0.8635988158486799,1.304191386770976,1001.0705398115274,0.0,3.0,2.0,0.0,7.0,7.0,1.0,0.0,0.0,4.141901188124214,2.1195336725325653,1.0470526888482867,0.6597355604567321,0.5647394396924748,0.5647394396924748,223.9175945556549,2134.6467609938413,72.90539054189958,36.80425449989381,73.1363998929499,,20.0,997.0,16.054405665745655,18.00687135247258,22.538432028865703,12.965578028838586,43.36148760117551,24.52642128014937,19.056471336613843,0.0,25.323629114359164,0.0,14.666666666666668,37.75,18.0,0.0,19.75,0.0,0.02688172043010749,-1.75,0.16642128374015247,0.03706025774991317,-0.1293610259902393,0.050474383301707726,0.17145992601726234,0.0,0.6057471264367811,0.8720430107526879,0.4393258426966286,0.5686868686868679,0.8215686274509801,27.105424957683464,0.5828765393248521,0.8408765393248521,30.159727916700266,6.962786629675089,7.868550393373154,57.26515287438373,14.831337023048244,0.5425400739827376,0.12499999999999997,0.056818181818181816,0.23863636363636362,0.42857142857142855,0.35132864120703383,-0.9958837846437109,-0.058509732420013456,-0.017170410080063977,-0.04742303736398623,0.6486713587929661,1.8387378995498302,0.03830216390912513,0.031702377578445344,0.04969561890675218,-5.752281976732686,0.8472133000237924,0.7101175723504398,1.7836544117142987,1.0795674300254452,0.5942898963137409,1.472002095529974,0.8412889708642864,1.3110666379531024,0.6666554749820882,0.6518127464217764,0.5967457445420966,1.0393910714222279,0.8651472246125929,0.5139417301404435,0.8009232868244194,1.2657630020689163,0.6963061598239972,1.1976727903941635,0.8683530142191364,1.0852339769705242,0.5389042131487819,0.479833646136908,0.48207285659651156,1.0804157388264524,0.9694206926559304,0.8950383291038837,1.1643604780147476,1.0832165638397993,0.8926661720051134,1.074923869498871,0.9687130070627578,1.0889270953134385,0.888847800520462,0.8317875139895133,0.8701949014572543,1.027473932726484,0.9942624801526603,0.9658605981751888,0.9876931602229706,0.8812795347146491,0.9309140985409963,1.0079383980541856,0.99216090231936,1.0024433922139784,0.9650138612630907,0.9679971534291725,0.9880070068127597,0.9839133636302408,0.9796866523911489,1.382282533135676,1.3079639994311312,0.9960061068702288,1.1773698361299187,0.8991261996020675,0.9752919973644962,0.8012734961331015,1.345827829614904,1.4150349550646797,1.4354067649022069,0.8314233112813412,1.5032016965903472,1.361858344351343,1.3130343708761323,1.37507339988256,1.2352301804759855,1.1200841737516558,1.4576540105173839,1.3225242545018534,1.3285567277654717,1.4197811009953452,1.4708833421063214,1.0043489296979942,1.6526471412275605,1.9025362253328613,1.2091174451467135,1.2736248840693443,1.5889221477260953,0.9569274447780369,1.6137866359043556,1.1996480280338047,1.866687246199941,2.1484399201367452,2.032649132955292,1.0137550388656975,1.230464716603258,1.2503151645187656,0.6945524126526131,0.9963981323649298,1.2595584529658284,0.9800582811118226,1.2250590713091891,1.082724277560953,1.2629511060436687,1.4755848199793447,1.310290043586789,1.1061032606692072,7.5,0.1979389858177737,3.7777777777777795,2.0625,1.235555555555556,1.0763888888888888,0.710204081632653,0.4427083333333333,0.17611489040060463,0.24500000000000002,6302.188362636829,7055.658153888649,3264.5111502127556,2988.1351327686057,20.542159309380214,0.4829136074720401,10.622071052022063,0.933912813120349,1.0,0.42857142857142855,1.716079807003358,3.7384473225950066,4.810928306279285,5.19824543467084,5.293241555435097,5.293241555435097,0.2272727272727273,0.008247457742407236,0.08395061728395065,0.046875,0.03168091168091169,0.03165849673202614,0.020291545189504375,0.01341540404040404,0.005681125496793699,0.009423076923076925,0.47849636236180204,25.619834710743802,12.459259259259259,8.37308650765397,181.66973203561423,1.0,4.342552833936164,229.62563391830406,,172.52142181497695,186.57389915439413,185.17530540350313,172.541218190328,235.27059701464805,187.80624410621874,187.99834544863194,226.59359070765652,0.1931536997382823,-0.0682995467805076,-0.7004229615576636,0.15557251908396943,0.14894623796596126,-0.16289384799691325,0.1815963281210818,-0.06172724709681109,-0.026339491296427257,-0.1227659923826419,0.026113193028361497,0.02043613954244866,0.050580248643047575,0.2917496976148249,0.20852791121191896,-0.11284868374117142,0.18122764848710496,-0.047365739948204,0.04761297216116126,-0.04402511898925049,0.2646828022164154,0.22596805739967046,0.30099624414474174,-0.07469676280299337,0.03790508410496092,-0.0025153179783338874,-0.13069077545087757,-0.07609188190595702,0.03284032961306624,-0.049338727409792504,0.03514058666157007,-0.06562750136061017,0.00880093614153847,-0.010016615553925676,0.0008792409257330667,-0.032014785852909906,0.01645811786527602,0.1405073308843061,0.12459310577542625,0.032275709265894646,0.09655533950079559,-0.061629008758167014,0.017611696248519024,-0.048725602311991134,0.13448777260222508,0.16598241801771035,0.1296864427260551,-0.025663813575096096,0.032767071139662124,-0.19318360060276532,-0.08330935041320571,0.022216793893129777,-0.07432963726163612,0.03598637197377214,0.03670741794386541,0.1312795082737125,-0.1699166596142142,-0.1693208884922885,-0.22330356301006754,0.11138621195183847,-0.16150437416497362,-0.1838474765524412,0.04336118091506058,-0.11904482286161674,-0.1493336251946791,-0.04923723104854637,-0.15224500368581362,-0.076955028698292,-0.1717140362935185,-0.11661956990757917,-0.24329178789197253,-0.016484254610689822,-0.3582832467240799,-0.45031632036353025,-0.057371042786610725,-0.07229792394948989,-0.37010116127754283,0.062158801027833,-0.35072589906572615,-0.026127535087176117,-0.4590937725505737,-0.35466908898233984,-0.458841754626979,-0.06578837061530379,-0.2302331436860863,-0.14762984487215608,0.17926024430491586,-0.015637738086415172,-0.22103836147066755,0.02258528401645196,-0.2288270712128426,-0.05255139176553284,-0.17613450846051193,-0.1904845511591541,-0.14696031886190092,-0.12186788399523683,13.724540251975442,17.021918324837234,3.5184867045498076,18.656866796980815,37.21298020177486,42.146090118741085,43.05912694254434,43.15488303227471,43.15488303227471,62.43563429071822,43.174203409180166,10.01087152484422,7.019893408210537,0.0,19.261430881538065,15310.374923675696,14501.044465911651,1541.7235246226355,78.0,45.0,53.0,62.0,71.0,70.0,68.0,66.0,68.0,445.1783753440008,33.0,5.056245805348308,5.8664680569332965,6.720220155135295,7.543802867501509,8.400434630806041,9.229063985974285,10.088015007879244,10.91956931926324,11.780560430243058,0.6781609195402298,0.9909655172413793,1.1347878141912677,0.6395545462636262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6677824798678504,0.9769438810006763,1.0120865459477106,0.6232886957193092,6.0,2.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,7.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,10.633577208012662,5.693927994848461,0.0,0.0,15.930470882759089,9.77851570501903,22.918407553800055,0.0,0.0,31.395199005701247,43.882387697088866,18.783440806673614,16.786255041979313,264.57235904844526,-749.9625459969624,-44.06147440889695,-12.930388724085555,-35.71250219033154,488.48995360410015,1384.6842149968788,28.84391613300263,23.87386577580825,37.423897702618355,0.5,0.7540008023639306,0.1235853805166236,34.96611013626263,0.11585669180600018,56.684729568486,0.2459991976360694,10.0,0.21212121212121213,0.29294731553938513,0.6381801726063115,0.8212604838221254,0.8873783371770115,0.9035948665312841,0.9035948665312841,2.0781199999999993,,2.339285714285714,2.0466057411377,1.7318841755316519,2.3349219112386512,-6.495948217231215,1.852432680538556,1.7666502705957992,-3.035022178277779,114.97440000000005,18.00687135247258,0.0,25.323629114359164,0.0,56.38599124191242,6.544756405912575,53.61046289846651,0.0,0.0,4.204692619390966,0.0,5.5093883366279774,0.0,6.996681488176539,0.0,8.560827228436299,0.0,10.163425799678814,39.33333333333333,9.146636774819175,8.059447501032084,0.0,0.0,0.0,0.0,1.8259958160616112,0.0,57.476,0.0,48.97078407543853,0.0,0.0,-3.9475561838377122,0.0,0.0,-1.0159536381143315,65.81769322309353,15.355672072464749,4.794537184071822,0.0,42.910645502973466,16.444112776333593,6.923737199690624,53.84995278009579,41.55463889259036,0.0,0.0,0.0,37.09416368329032,38.731383832335325,38.87844778164901,459.2512678366081,,345.7045680418287,373.13367337914974,370.43095419803797,345.7448736217426,473.41707025591165,375.5901961638456,375.9571401532619,454.3620287101302,38.87844778164901,459.251267836608,,343.81804730450136,371.35114579815877,368.9225389483813,343.8618720804213,477.0371422465273,373.97678705498936,374.4184447562915,456.22220359359085,4.742632178682404,358.1409891651924,,269.4614457069258,292.6869941805485,290.58531400820044,269.49000958838405,364.14734446190545,294.3980340181061,294.4695368405331,352.4497374428077,1.2541434768273874,14.814557026987359,,11.151760259413829,12.036570109004831,11.949385619291547,11.153060439411052,15.271518395351988,12.11581277947889,12.127649682363288,14.65683963581065,2.3713160893412017,229.62563391830406,,172.52142181497695,186.57389915439413,185.17530540350313,172.541218190328,235.27059701464805,187.80624410621874,187.99834544863194,226.59359070765652,56.662745098039224,0.0,1.7889539450847067,0.0,0.0,0.0,0.0,58.70101966496722,5.845344609472752,7.555581222098349,0.0,0.0,0.020765877944845634,0.0,0.0,0.0,0.0,36.150744351719936,567.8095879700564,99.53262880619477,216.82994471051038,279.03384176419854,301.4982352109087,307.00801021523563,307.00801021523563,645.0,139.6043802590843,185.252724682489,66.43501547231061,138.52999999999997,130.14999999999998,1.0,7.754267116248376,6.044394119358453,4.145863749127582,5.480210753249793,,5.460744508346152,5.474370238990596,5.476587776182178,5.4607356462402485,5.463773323062105,5.47361373602117,5.472354470842328,5.469120504927285,0.13373754029443813,0.1767809920403159,,0.17615304865632747,0.17659258835453534,0.17666412181232832,0.1761527627819435,0.1762507523568421,0.17656818503294094,0.17652756357555896,0.17642324209442856,2.553513261753775,2.8325456703337357,,2.82898724879212,2.8314793557359006,2.8318843499325395,2.8289856259157737,2.8295417473686797,2.8313411562331687,2.831111068741482,2.830519929792414,329.5000000000011,576.2520416598464,195.33953723811848,,196.01317569505224,194.9211186308976,194.87204907805165,196.01442927432123,196.63267324585848,195.00680368044914,195.1140620968429,195.86413757379543,18.588775537414403,6.301275394778015,,6.32300566758233,6.287778020351536,6.286195131550053,6.323046105623265,6.342989459543822,6.290542054208037,6.294002003123965,6.318197986251466,7.487947248806262,6.406141372500349,,6.409583991396198,6.403997068373074,6.403745296114502,6.409590386758428,6.412739496880421,6.404436560115152,6.4049864328777,6.4088233547204005,26.947658805255376,32.162740075877906,5.483756040005309,1.8176536934919798,-0.3195591114281009,5.527282833114902,8.425448092664388,2.152575754855957,-3.9475561838377122,400.464835492461,199.2394725689618,-564.7685292912635,-33.18103581724488,-9.737388436056264,-26.893739490060163,367.86337416863825,1042.753497239024,21.721266189075024,17.978508573086614,28.18252695240606,3430.0,44.0,2.5827818696650278,1.216148227885364,0.2041241452319315,0.05103103630798288,0.46631284272709583,0.13053018112269016,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.2687287392826324,0.14650651706041018,0.30420687118005096,0.12969358221293112,22.269373945685228,18.24336457688017,14.831337023048244,11.807600507794366,13.683403981997591,9.289167639422836,10.424023072917928,6.460808376486554,8.191686013352692,4.314024862705542,5.923536102280435,2.987133694518902,3.9441183763284213,1.6919645462665436,2.446348036577318,1.0133475156749328,4.599297866096315,2.020062170939802,6.603555202214408,2.280886474845575,8.16981105481111,2.5309541318905984,101.52861189045163,47.300965495224474,32.64066698187321,29.208525066713648,28.576300137470902,28.576300137470902,156.0,176.0,64.68141099999998,39.46858900000002,0.4482758620689655,159.1,10.340277777777779,6.819444444444446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,12.0,12.0,58.0,0.0,0.0,60.0,12.0,4.0,10.0,50.0,16.0,33.0,44.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,6.0,3.0,1.0,31.0,10.0,0.0,5.0,4.0,0.0,3.0,7.0,1.0,0.0,0.0,1.0,2.0,3.784189633918261,6.1007392672626795,4.330733340286331,4.722953221644475,5.160491049640633,5.565956157748798,5.6814516541711875,5.747201095023722,5.580437122962544,5.778619347763734 +27200,CS(=O)(=O)c1ccc([C@@H](O)[C@@H](CO)NC(=O)C(Cl)Cl)cc1,0,45.833333333333336,6.673508333333334,3.25,8.10150891632373,163.2622835583371,187.88041850000005,1.7354670436870836,6.824088888888889,7.774816518908027,8.36440186111111,235.51239441922795,37.083333333333336,6.546777777777779,3.9722222222222223,5.5,146.34136590842775,144.30134797222223,2.010148888666667,6.7503722222222216,3.07044467306813,8.128203555555553,279.48309513557433,31.903225806451612,6.574982258064517,3.338709677419355,5.626244524093986,153.12347240207603,122.52749853225805,1.7245066185063869,6.762690322580646,4.297593059673239,8.214539435483871,236.17117561512183,25.134146341463413,6.58369756097561,2.8292682926829267,4.067750677506775,160.01203038328293,94.21002713414633,1.402347764190744,6.700771951219513,4.095001505570611,8.206809170731706,196.09526423774125,19.280898876404493,6.401977528089887,2.50561797752809,3.677902621722846,160.07921166862616,69.0227366741573,1.2886594841594157,6.5010966292134835,4.07017848060295,8.042883842696629,175.0081656217248,18.822222222222223,6.288444444444445,2.2444444444444445,3.4419753086419753,163.81556955365897,68.40609563333334,1.2030174403664444,6.387930000000001,4.037334247828076,7.970663355555555,159.07658376056133,24.18421052631579,6.2541710526315795,2.223684210526316,2.60672514619883,165.35194627243357,89.98982396052631,1.2439990651707895,6.4424052631578945,3.1257445310807888,8.089889368421053,161.25129723044842,25.89090909090909,6.484196363636362,2.381818181818182,3.7696969696969695,161.7033916617656,95.9158104,1.402057890445273,6.656025454545455,4.664309764309765,8.27157810909091,181.30935774298004,26.74468085106383,6.596659574468085,2.2127659574468086,2.7517730496453896,164.57984368855838,97.78350570212766,1.3958425397434684,6.778774468085107,3.8473863934856842,8.443784510638297,175.69238036934803,19.70987654320988,0.18941195987654316,0.026103463167268106,0.7430555555555558,4.296601127876849,1.3933045964403037,89.9726918055556,0.3475281258699344,0.18774043209876537,3.5477453856001886,0.1461462986111111,50.959567818245596,1.3055555555555567,-0.028564197530864213,-0.013310031711366903,0.10185185185185189,-0.13511659807956125,0.053132482778894,5.633229643518528,0.016069868658950704,-0.022653240740740745,-0.7258286682458636,-0.010260798611111108,3.740786852506667,-0.7510951812027076,0.009656991736359992,-0.001976864332117347,-0.1301523297491039,0.3387588438033147,-0.11585384640304087,-2.9880367168458726,-0.026121113613049946,0.006585015929908381,0.3274403498046333,0.0025722278225806484,-3.281922364567165,-0.04049984944293893,-0.012260503236976833,0.004468289878263407,-0.07029132791327912,-0.9474091174382254,0.103685289787661,-0.13934051287262894,-0.019265452759756226,-0.0033652288467329048,-0.47885230605153783,0.001384062500000006,-3.351074625970169,-2.031349701761687,-0.02383165400887777,-0.0032255579496587305,-0.03987203495630463,-0.4316791938745978,-0.1986493189100948,-9.32242274937579,-0.03401254928822625,-0.025035438340962668,-0.2467494716182569,-0.019198266151685378,-7.572330931956251,0.8765432098765427,0.0009858796296296694,-4.137371036705557e-05,0.0013888888888888827,0.13074226489864355,-0.10348837072998333,4.0261321481481405,0.02045258697828161,3.3148148148176264e-05,0.08848375072444545,-0.0017524680555555468,0.3661214637716226,0.8105912930474333,0.006658032813515312,-2.3698946264618602e-05,0.0014619883040935596,0.012239389053337654,0.008492767932771364,3.5872713260233904,-0.03343066015355468,0.016514538661468504,-0.2251193694670666,0.012821243421052633,2.2399540408976955,-2.442199775533109,0.010877131032547699,0.0018654944321533265,-0.06275252525252524,0.2725970265064916,-0.18313499986529452,-10.834179235858588,-0.017997747832803092,0.0005773456790123314,0.4533078180950471,-0.005654319318181824,-2.172042089671207,-5.311531389545572,-0.03314682985290258,0.000417850462409351,-0.03028959810874707,-0.4802978269399774,-0.10384637996294423,-23.780170975768325,-0.03244156354422932,-0.04368735881271344,-0.676706743603261,-0.039218464095744685,-5.5470632457003495,,,0.4918367346938775,1.1071428571428572,0.5,0.0,0.6071428571428571,-0.10714285714285714,0.8738963191133506,0.03577583507553294,0.039871073170771036,0.8974977300404878,0.21385709447290693,0.24628200199313613,1.7713940491538385,0.46013909646604306,1.9291046935263731,1.162076757453762,0.09436063705420299,0.41063774586844415,0.160639081682815,0.7670279360726111,9.86124441500001,1650.0,240.24630000000002,117.0,291.65432098765433,5877.442208100135,6763.695066000002,62.47681357273501,245.6672,279.89339468068897,301.11846699999995,8478.446199092206,1335.0,235.68400000000003,143.0,198.0,5268.289172703399,5194.848527,72.36535999200001,243.0134,110.53600823045268,292.6153279999999,10061.391424880676,1978.0,407.6489,207.0,348.82716049382714,9493.655288928714,7596.704908999999,106.91941034739598,419.2868,266.4507696997408,509.301445,14642.612888137553,2061.0,539.8632,232.0,333.55555555555554,13120.986491429201,7725.2222249999995,114.99251666364101,549.4633000000001,335.7901234567901,672.9583519999999,16079.811667494781,1716.0,569.776,223.0,327.3333333333333,14247.049838507728,6143.023563999999,114.69069409018799,578.5976,362.2458847736625,715.816662,15575.726740333508,1694.0,565.96,202.0,309.77777777777777,14743.401259829308,6156.548607,108.27156963297999,574.9137000000001,363.3600823045268,717.359702,14316.89253845052,1838.0,475.317,169.0,198.1111111111111,12566.747916704951,6839.226621,94.54392895298,489.6228,237.55658436213994,614.831592,12255.09858951408,1424.0,356.6307999999999,131.0,207.33333333333331,8893.686541397108,5275.369572,77.11318397449001,366.08140000000003,256.53703703703707,454.9367960000001,9972.014675863902,1257.0,310.043,104.0,129.33333333333331,7735.252653362244,4595.8247679999995,65.60459936794301,318.60240000000005,180.82716049382717,396.857872,8257.541877359357,709.5555555555557,6.818830555555554,0.9397246740216518,26.750000000000007,154.67764060356654,50.158965471850934,3239.0169050000013,12.51101253131764,6.758655555555554,127.71883388160678,5.261266749999999,1834.5444414568415,47.00000000000004,-1.0283111111111116,-0.47916114160920853,3.666666666666668,-4.864197530864205,1.912769380040184,202.796267166667,0.5785152717222254,-0.8155166666666668,-26.12983205685109,-0.3693887499999999,134.66832669024,-46.56790123456787,0.5987334876543196,-0.12256558859127552,-8.069444444444441,21.00304831580551,-7.182938476988534,-185.2582764444441,-1.6195090440090967,0.40827098765431963,20.301301687887268,0.1594781250000002,-203.47918660316424,-3.3209876543209926,-1.0053612654321002,0.3663997700175994,-5.7638888888888875,-77.68754762993449,8.502193762588202,-11.425922055555574,-1.5797671263000104,-0.2759487654320982,-39.265889096226104,0.11349312500000049,-274.78811932955387,-180.79012345679016,-2.1210172067901216,-0.287074657519627,-3.5486111111111125,-38.4194482548392,-17.679789382998436,-829.6956246944452,-3.027116886652136,-2.2281540123456773,-21.960702974024862,-1.7086456874999987,-673.9374529441063,78.88888888888884,0.08872916666667024,-0.0037236339330350013,0.12499999999999944,11.76680384087792,-9.3139533656985,362.35189333333267,1.8407328280453448,0.0029833333333358636,7.963537565200091,-0.1577221249999992,32.950931739446034,61.60493827160493,0.5060104938271637,-0.0018011199161110138,0.11111111111111052,0.9301935680536617,0.6454503628906236,272.6326207777777,-2.5407301716701554,1.2551049382716064,-17.10907207949706,0.9744145000000001,170.23650710822486,-134.320987654321,0.5982422067901234,0.10260219376843295,-3.451388888888888,14.992836457857036,-10.072424992591198,-595.8798579722223,-0.9898761308041701,0.03175401234567823,24.93192999522759,-0.3109875625000003,-119.4623149319164,-249.6419753086419,-1.557901003086421,0.019638971733239495,-1.4236111111111123,-22.57399786617894,-4.880779858258379,-1117.6680358611113,-1.524753486578778,-2.0533058641975317,-31.805216949353266,-1.8432678125000002,-260.71197254791645,0.7717496334408116,0.6362029732072567,0.46013909646604306,0.4097118896250868,0.315405893509966,0.24987969202305388,0.2006090113411998,0.12583269449854761,0.12567756326820054,0.0677459429958589,0.07951255084119925,0.03839802586083725,0.05179930058690568,0.02491526653558205,0.03387994465080522,0.014725586855245826,17.00320570737797,5.693834755963968,3.5802896178801724,2.182533907755265,0.4273462572313929,-0.3933464452368822,4.042869228877147,0.9681547183559,6.022472882177921,0.6158804725061492,14.540286798686378,10.309670128556704,35.45203468679412,11.704984575967348,2.9584534161604656,0.751764752761592,3.5360822195154142,2.236965710072875,7.014576762218319,0.2964161210626148,3.767442587888288,2.4362030234230065,24.44382946600154,14.701002412972365,0.36515299389577643,0.7114921780943511,0.851841608804508,0.9033552264198882,0.9033552264198882,0.9033552264198882,2.5260700310812196,588.1702785757096,0.0,1.0,2.0,0.0,5.0,2.0,1.0,0.0,0.0,3.2009041504782907,1.333333333333334,0.5765246528378745,0.2987468750600968,0.2987468750600968,0.2987468750600968,-94.31061858957517,1218.5455215546242,77.60025388612318,33.848486709850675,76.90393223280631,,11.0,354.0,39.333391737428244,23.42538895808217,4.895483475517775,5.563451491696996,6.255769183511404,24.26546827384644,0.0,0.0,5.316788604006331,23.20187978046503,10.328571428571427,23.25,10.5,0.0,12.75,0.0,0.008163265306122505,-2.25,0.26309523809523794,0.056632653061224336,-0.2064625850340136,0.08494897959183656,0.21191666666666664,0.0,0.6964285714285716,0.9795918367346937,0.4333333333333337,0.6397959183673473,0.8946428571428572,18.351822701380364,0.7512925365861918,0.8372925365861917,18.847452330850246,4.490998983931045,5.171922041855859,37.19927503223061,9.662921025786904,0.5020833333333333,0.3480866758875058,0.0806823420931305,0.29045643153526973,0.4166666666666667,0.5870264040914057,-1.3201395281391444,-0.10971160379910444,-0.036670542448309563,-0.10154919447224185,0.4129735959085945,0.9287193288699283,0.033501772452377614,0.025797759135275787,0.040379101255214274,-2.6936826537136835,0.6974240526150954,0.8083446615764596,1.481257089329125,1.2902388369678086,0.7636462398013479,1.2915966104027867,0.6821903382397169,1.0708577445393717,0.7431571285544956,0.8641876815225942,0.7300098455904708,0.8869809418813185,0.9240791348009253,0.7404584177205151,0.9798033391435971,1.4772384684956283,0.7978045720857316,1.248812111608036,0.9110337145522482,1.11772141095403,0.7469382550420279,0.7071122230677833,0.7895389988082365,1.023385406413658,0.7023032471947017,1.0358863560307188,0.8318570626280937,1.1009801686801912,1.197731908478184,1.0059201917368068,0.7007024098235395,0.9128602330807509,0.9330411361699035,1.1116141980561864,0.8910247290707707,0.97488877964617,0.7786960239569,1.080031319417019,1.1376831421431457,0.926178725191641,1.0234414546556074,1.1277886874602914,0.782714155668904,0.9166622327687866,1.0430636399829163,0.9804951153649317,1.0248265535645984,1.0865132268238489,0.6894769808957093,0.9346511437485817,0.9506872813389906,0.755970924195223,0.9145596842852075,0.9707037382115304,0.7005869628810855,0.7084861282956513,0.9284497738702142,0.8559503620181345,0.908903930365777,0.9561706251454469,1.0975180081428122,0.8563172510695088,0.9701353656531976,0.8694048204623707,0.8997048925524168,0.8583889334964078,1.1062277457740235,1.0714409149853004,0.8705338080231709,0.8267035558411807,0.859839611669666,0.9859671572801353,1.2699370782678017,0.9345930751996225,0.9336588186173269,1.1180968564146132,0.9276343158437874,1.0645606094422855,1.2631599444158559,1.1356341145996653,1.0117840661933095,0.9051593996030547,1.0692960276845183,1.0477327789146684,1.602066688434141,1.262892816810575,0.9552090890370178,1.0717836548021473,1.1564082630780494,1.0383946733250216,1.5849978987551612,1.3114868840311333,1.3413697899616541,1.3516424650892414,1.3913104227147286,1.1082897983884834,6.5,0.09917355371900827,3.5555555555555567,1.75,1.0622222222222224,0.8680555555555556,0.5289795918367347,0.3368055555555556,0.2136558327034517,0.15125000000000002,4818.119044161869,5307.451174556797,2328.9123202620494,2162.5459947111403,12.455252666292166,0.46502235608160125,6.663281725821337,0.86923698843859,1.0,0.4166666666666667,1.9690208509640217,3.8365916681089782,4.593400348604438,4.871178126382215,4.871178126382215,4.871178126382215,0.30952380952380953,0.012396694214876033,0.11851851851851856,0.05645161290322579,0.03934156378600824,0.03616898148148148,0.02518950437317784,0.01871141975308642,0.01526113090738941,0.015125000000000001,0.6466882354615732,19.047619047619047,8.022222222222222,5.6055363321799305,132.1528384294704,1.0,3.929260219850927,98.90950252364425,,72.7252116102628,81.10726181048157,81.8285399144785,72.66782007861545,96.17917531199438,80.95072506046931,80.64207959727116,92.31472575002542,0.06623864704040093,-0.15080461418319135,-0.5098952436340608,0.1370716510903427,-0.031447321745299794,0.03813414734627301,0.06261043801704608,0.046240483755737805,-0.12066255780653291,-0.20458871462194061,-0.07020908985464383,0.073406957960254,-0.038107553822373505,0.05098406532857969,-0.07573187969158801,-0.17515827555019586,0.0788434471157697,-0.08315040853165279,-0.03321048483581513,-0.0751625887765585,0.03507510798975989,0.09229533526663689,0.01760036242467717,-0.06440247641566739,-0.002054799752507393,-0.06472929821838129,0.17117613282310853,-0.09459767494871206,-0.22050199430692433,0.07441681456629244,-0.0015486978334911285,-0.055435664988354054,-0.01792490199959988,-0.13497369568716336,0.009470390376994327,-0.06575947892498311,-0.10306252793153563,-0.12581916170663673,-0.12356819970552228,-0.053659561062690334,-0.10046992518663482,-0.14257422204564296,-0.10361391398095475,-0.09786991830685889,-0.13335134079052385,-0.06955106547943916,-0.13136334162503235,-0.1485948813177542,0.04447228311932348,0.005204949203166769,-0.0015849893212229124,0.0018691588785046639,0.030429230223483515,-0.07427548218414085,0.04474837939548605,0.058851602088563555,0.00017656371500592843,0.02494084019771792,-0.011991190144464675,0.007184548053418464,0.04112614765852934,0.03515106869626898,-0.0009078851381810289,0.0019675356615838553,0.0028486211982599622,0.0060954137052796524,0.03987066802198181,-0.09619555271928237,0.08796474194104674,-0.06345420682690343,0.08772882750297632,0.043955514867920466,-0.1239074110981408,0.057425787894477755,0.07146539982834632,-0.08445199660152927,0.06344480634654455,-0.1314393136527207,-0.12041630653079564,-0.05178788849895537,0.0030752335688063446,0.1277734924087172,-0.03868944593135212,-0.042622851461733315,-0.2694857767323466,-0.1749986108295767,0.016007472254995877,-0.040763571286538104,-0.11178552829206072,-0.07453243190918701,-0.264304318327619,-0.0933494618975699,-0.23270085364313348,-0.19074275914780153,-0.2683507175238376,-0.10885224273260566,3.838519496373775,10.438087368103016,5.1330537040448005,28.034395404964823,43.78902426357751,47.82983185796138,48.109831857961375,48.109831857961375,48.109831857961375,40.511198564053835,24.403611906529004,1.9815733781382627,8.623392663237327,3.3734207153391145,16.107586657524834,6490.2066872242385,6275.576484131567,736.8753385127748,24.0,30.0,34.0,35.0,40.0,42.0,42.0,32.0,28.0,355.0047989400004,21.0,4.634728988229636,5.442417710521793,6.3080984415095305,7.141245122350491,8.00603417874901,8.847216104357543,9.71214543252109,10.557348017764696,11.422595861478557,0.851851851851852,1.0185555555555559,1.1298787801193375,0.8238142813532039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7054540086493682,1.0102396514161218,1.0439730517115808,0.6601231709523486,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,15.529843393687742,6.103966387748303,14.673522826667558,0.0,5.907179729351506,4.794537184071822,8.417796984328938,0.0,0.0,35.33461391738825,17.696185628620217,6.255769183511404,17.544206269178655,318.0806094212838,-715.3183957398974,-59.44729837326321,-19.86995543721937,-55.0244919799921,223.7699908317086,503.2271258147268,18.15295551285997,13.978531272631301,21.87944025281421,0.45454545454545453,0.6404830355898148,0.1752547547944793,187.52577569268252,0.11259090662265649,2.098162353061793,0.3595169644101854,6.0,0.2857142857142857,0.3808606218493889,0.7420981285103054,0.8884849098048744,0.9422144663652273,0.9422144663652273,0.9422144663652273,0.40430000000000005,,3.311974789915966,1.8228645647831794,1.2673418447702405,3.3365563109643066,-5.037625300586214,1.8524927180329398,1.873661443690138,-1.9901408838868704,79.02210000000002,23.42538895808217,0.0,5.316788604006331,0.0,21.877560382664093,12.862651148024323,29.828919765543436,0.0,0.0,3.7612001156935624,0.0,5.093750200806762,0.0,6.6052979209482015,0.0,8.187299270155147,0.0,9.80493712880685,30.66666666666667,5.453939209428627,0.0,0.0,0.0,0.0,0.0,0.4370919942050904,0.0,36.66800000000001,0.0,34.02831819448522,0.0,0.0,-3.3369810749649305,0.0,0.0,-0.7461208742756351,40.67563608429615,5.316788604006331,0.0,0.0,48.27879317078419,14.631790320489323,0.0,11.6674178794453,29.160951749364212,0.0,0.0,0.0,29.657314128715342,25.396344311377256,24.80995914763404,197.8190050472885,,145.73119510584678,162.04091747193615,163.53638060564555,145.61207328929208,194.33667224695012,161.72502224303074,161.1057152475242,185.19806318116133,24.80995914763404,197.8190050472885,,143.0500726568672,160.39165905618015,162.38973798418687,142.9110515137496,197.45520219493204,160.0489574029058,159.41049775085222,186.61959238393771,4.730989571053323,148.76522083482595,,112.78779482988784,122.76155199885258,123.36142088520452,112.72212212827364,145.2922129466959,122.6939265494447,122.4119250428989,139.27174866341574,1.1814266260778115,9.419952621299453,,6.939580719326037,7.7162341653302935,7.787446695506931,6.933908251871052,9.254127249854767,7.701191535382416,7.67170072607258,8.818955389579111,2.3654947855266615,98.90950252364425,,72.7252116102628,81.10726181048157,81.8285399144785,72.66782007861545,96.17917531199438,80.95072506046931,80.64207959727116,92.31472575002542,36.368627450980384,0.0,1.0657403008647597,10.748742477571241,0.0,0.0,19.30981549718653,37.58302986161691,-0.5404441846182921,2.2881507070420763,0.0,0.0,-3.5693633580357975,0.0,0.0,0.0,0.0,23.76443415428455,347.0461172861998,70.88475063470479,138.11730005192322,165.36241254975977,175.36241254975977,175.36241254975977,175.36241254975977,349.0,114.07182985748236,194.80448296679262,54.452484636410524,112.08000000000001,103.70000000000002,0.8333333333333334,7.198136829562024,5.392317422778761,3.9897879661432984,4.510412241927167,,4.529992952922181,4.50974639187776,4.508320118030277,4.5302357612274875,4.507162413907186,4.511815322898353,4.513307279453698,4.509248035745355,0.18998990314968087,0.21478153532986508,,0.21571395013915148,0.21474982818465524,0.21468191038239418,0.21572551243940416,0.2146267816146279,0.21484834870944539,0.2149193942596999,0.214726096940255,2.1256754329016303,2.2483259002589495,,2.2526577285767924,2.248178264263254,2.247861949483848,2.252711327291135,2.2476051237121037,2.248636927878773,2.2489675508818436,2.248067751691833,232.0399999999997,133.76506554240265,105.54848000571859,,103.13249295921237,105.10375622016542,105.41411430721068,103.1115569105085,105.99876651323514,104.96491764669372,104.83746272347388,105.70579137557733,6.3697650258286975,5.026118095510409,,4.911071093295827,5.00494077238883,5.019719728914795,4.910074138595642,5.047560310154054,4.99832941174732,4.992260129689233,5.03360911312273,5.638022363731499,5.40110771821626,,5.377951845743108,5.39688536146142,5.3998338837043685,5.377748823655548,5.405364802106145,5.395563521406626,5.39434852147503,5.402597026791249,22.671376181938953,10.137937214601177,21.597966204228605,0.3355971277399852,-0.7461208742756351,4.441516684863245,-0.17070086819545716,-0.5404441846182921,-3.3369810749649305,286.1850427846194,172.35216914376022,-387.5957021036709,-32.2115543069714,-10.766547280657523,-29.81505400797468,121.2499038507679,272.6739201862978,9.836189841009041,7.574275560730495,11.85538783418686,1002.0,31.0,2.6051819878739026,1.7290014469704413,0.28867513459481287,0.10206207261596575,0.8611650520176104,0.3276463119648052,0.14433756729740643,0.034020690871988585,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.08977918909913549,0.05005819834947819,16.206742302257044,13.360262437352391,9.662921025786904,8.603949682126823,9.46217680529898,7.496390760691616,6.820706385600793,4.278311612950619,4.398714714387019,2.3711080048550612,3.18050203364797,1.5359210344334902,2.175570624650039,1.046441194494446,1.4229576753338191,0.6184746479203247,4.607113045465719,2.4154444618034723,4.977751856978813,2.083789862993135,6.432213457740297,2.269306544193964,72.93480273272009,40.96140557126073,32.47878160729837,31.46825521784858,31.46825521784858,31.46825521784858,102.0,115.0,42.41189499999998,24.162105,0.16666666666666666,21.09,10.229166666666666,4.666666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,36.0,0.0,0.0,36.0,6.0,3.0,6.0,30.0,9.0,21.0,27.0,0.0,0.0,0.0,12.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,5.0,3.0,0.0,21.0,9.0,0.0,1.0,5.0,0.0,1.0,6.0,1.0,0.0,2.0,0.0,1.0,3.332204510175204,5.201599947046231,3.901972669574645,4.223177434065069,4.557816489604621,5.002687124247082,5.231108616854587,5.487128238781741,5.086824432453803,5.093750200806762 +3114,CC(C)N(CCC(C(N)=O)(c1ccccc1)c1ccccn1)C(C)C,0,18.444444444444443,5.78027222222222,2.8333333333333335,5.0,163.78638631158742,72.28830638888888,1.402479226678166,5.8605722222222205,3.2768775720164616,7.354498444444442,198.91883003448723,21.09090909090909,6.101054545454545,3.4909090909090907,5.127272727272727,146.7995836466527,78.14073160000002,1.7615105630909096,6.248681818181819,2.825,7.539305309090907,246.3169802529212,17.298969072164947,5.945257731958765,3.288659793814433,3.865979381443299,154.9901871738571,63.08489224742266,1.489370224564279,6.057836082474226,2.553121420389461,7.455136989690723,202.21125485667633,15.462121212121213,5.952151515151517,2.946969696969697,3.1818181818181817,159.00499324437834,55.07090907575756,1.384581672526719,6.047450757575756,2.4501262626262625,7.4902726060606035,185.5894082821276,14.364197530864198,5.853085802469135,2.6296296296296298,2.8395061728395063,157.16217002936366,50.41962669753086,1.3242309927322282,5.952010493827161,2.634773662551441,7.407965901234569,172.65269584432602,11.82,5.774919,2.165,2.395,162.65936927939177,40.08741343,1.1555796138849848,5.850398999999999,2.5325,7.3758531199999995,145.26615276104542,10.74384236453202,5.613344827586205,2.142857142857143,1.9211822660098523,166.7099654912971,37.182415950738914,1.064636924438493,5.677869458128079,2.187192118226601,7.261109635467978,133.098866983683,13.335483870967742,5.87538064516129,2.361290322580645,1.4838709677419355,159.05150478828887,45.6758036516129,1.2713389053553168,5.965858064516128,2.739784946236559,7.4412081032258035,163.8598071443876,9.384146341463415,5.855207317073172,1.75,0.5670731707317073,164.0018738197916,27.952039884146355,1.123495506422104,5.921076219512197,2.6239837398373984,7.4672381707317115,134.72659739068598,6.834019204389575,0.0725972908093278,0.010785470564352162,0.5833333333333334,3.0192043895747607,1.4403295235212357,32.76543008950617,0.22850709706705244,0.0729837105624142,0.9191362787684807,0.037473444444444434,51.62959837139485,0.1760818057114352,-0.0002464827285197243,-0.005194591241781967,0.31363636363636366,1.248135677765307,-0.12259468442708205,0.8358485872615078,-0.003343397512121155,0.0005681076194039599,-0.08446783507225898,-0.0008084181818182583,0.1905764019839448,0.701681444713136,0.009275255964249872,0.0007608845448389352,0.01804123711340206,0.3622389093943121,-0.021854615398875836,3.3279808366106685,0.01099851720303745,0.009428164198945054,0.14476374668652783,0.00464673195876284,3.4724641538361296,-0.10927172964210013,-0.010076443446813783,-0.0020771429178995863,-0.08712121212121213,-0.08317745354782402,0.1791761384411166,-0.44092752427048154,0.01809439185610367,-0.008859804838508517,-0.048713298970500606,-0.005323378787878845,2.9351155107079316,-0.2329675354366712,0.00678558527663467,0.001328675703601125,-0.027777777777777776,0.18975765889346125,-0.22018378222668722,-1.2138050174897101,-0.03180789276578703,0.0056727937814357735,0.11274084870192554,0.0037797901234567603,-5.670166304854986,-0.25105624142661165,0.003690274005486972,0.0007044642301566314,0.0725,0.47727709190672146,-0.0872163101585086,-1.254152233672838,-0.018356463469366632,0.0026224190672153747,-0.011822749961896063,0.002212469999999979,-3.7334215705942664,1.557332738686506,0.005988341374580181,-0.0006116549845718842,-0.07019704433497537,0.22053288464527296,0.15632441312946496,7.503624461123273,0.04628904710676908,0.008562102245467476,0.02417736533539356,0.001009561576354697,11.793595301351578,-1.0383202796583917,-0.008885964644453266,0.0007426540455260914,-0.19838709677419356,-1.4113190849152613,-0.23588250164443866,-4.997572723197926,-0.03854197842769191,-0.0092287643258551,-0.004275831403552792,-0.004260767741935527,-8.504115045049566,-3.480586503395899,-0.03898588611194749,-0.0019909932001005584,-0.042682926829268296,-1.5027183913814441,0.07220241911556019,-16.50863930969588,-0.04120901358967374,-0.04161848924353434,-0.41122889645391664,-0.016705121951219554,-16.169085794587346,,,0.48133333333333334,1.13,0.54,0.0,0.59,-0.05,1.0433492169088823,0.02090500135486593,0.02778500135486593,0.8650640494426131,0.2151770034995907,0.2604865376404672,1.9084132663514952,0.4756635411400579,1.982971005252544,1.6783892323276952,0.23571188928855974,0.0688698836362888,0.0,0.30458177292484856,6.282056713851866,996.0,312.1346999999999,153.0,270.0,8844.464860825721,3903.5685449999996,75.73387824062097,316.4708999999999,176.9513888888889,397.14291599999984,10741.61682186231,1160.0,335.558,192.0,282.0,8073.977100565899,4297.740238000001,96.88308097000002,343.6775,155.375,414.6617919999999,13547.433913910667,1678.0,576.6900000000003,319.0,375.0,15034.048155864139,6119.234547999998,144.46891178273506,587.6100999999999,247.65277777777771,723.1482880000001,19614.491721097605,2041.0,785.6840000000002,389.0,420.0,20988.65910825794,7269.359997999998,182.76478077352692,798.2634999999998,323.41666666666663,988.7159839999997,24497.801893240845,2327.0,948.1998999999998,426.0,460.0,25460.271544756913,8167.979524999999,214.52542082262096,964.2257000000001,426.8333333333334,1200.090476,27969.736726780815,2364.0,1154.9838,433.0,479.0,32531.87385587835,8017.482685999999,231.11592277699697,1170.0797999999998,506.5,1475.1706239999999,29053.230552209086,2181.0,1139.5089999999996,435.0,390.0,33842.12299473331,7548.030438,216.12129566101407,1152.6075,444.0,1474.0052559999995,27019.069997687646,2067.0,910.684,366.0,230.0,24652.983242184775,7079.749566,197.0575303300741,924.7079999999999,424.66666666666663,1153.3872559999995,25398.270107380074,1539.0,960.2540000000002,287.0,93.0,26896.307306445822,4584.134541000002,184.25326305322506,971.0565000000004,430.3333333333333,1224.6270600000007,22095.1619720725,369.03703703703707,3.920253703703701,0.5824154104750168,31.5,163.03703703703707,77.77779427014673,1769.3332248333331,12.339383241620832,3.941120370370367,49.633359053497955,2.0235659999999993,2787.998312055322,9.684499314128935,-0.013556550068584838,-0.2857025182980082,17.25,68.64746227709189,-6.742707643489513,45.97167229938293,-0.18388686316666353,0.03124591906721779,-4.645730928974244,-0.04446300000000421,10.481702109116963,68.06310013717419,0.8996998285322376,0.07380580084937671,1.75,35.13717421124827,-2.119897693690956,322.8141411512348,1.0668561686946327,0.9145319272976702,14.0420834285932,0.4507329999999955,336.82902292210457,-14.423868312757218,-1.3300905349794194,-0.27418286516274537,-11.5,-10.97942386831277,23.65125027422739,-58.20243320370356,2.388459725005684,-1.1694942386831242,-6.43015546410608,-0.7026860000000075,387.435247413447,-37.74074074074073,1.0992648148148165,0.21524546398338223,-4.5,30.740740740740723,-35.66977272072333,-196.63641283333305,-5.152878628057499,0.9189925925925952,18.264017489711936,0.6123259999999952,-918.5669413865077,-50.211248285322334,0.7380548010973944,0.1408928460313263,14.5,95.45541838134429,-17.44326203170172,-250.8304467345676,-3.671292693873326,0.5244838134430749,-2.364549992379213,0.44249399999999584,-746.6843141188533,316.1385459533607,1.215633299039777,-0.12416596186809249,-14.25,44.76817558299041,31.733855865281388,1523.2357656080244,9.396676562674124,1.7381067558298977,4.908005163084892,0.20494100000000348,2394.09984617437,-160.93964334705072,-1.3773245198902562,0.11511137705654417,-30.75,-218.7544581618655,-36.561787754887995,-774.6237720956785,-5.974006656292246,-1.4304584705075405,-0.6627538675506827,-0.6604190000000068,-1318.1378319826829,-570.8161865569274,-6.393685322359389,-0.3265228848164916,-7.0,-246.44581618655684,11.84119673495187,-2707.416846790124,-6.7582782287064935,-6.8254322359396316,-67.44153901844233,-2.739640000000007,-2651.7300703123246,0.7379753195750531,0.6258036909644955,0.4573687895577481,0.34305937374248435,0.2952084534155444,0.19516407293387258,0.17559813962441304,0.10126989493097603,0.12044562378624805,0.06032787647304224,0.07382224028773578,0.029190712597847952,0.04596680650562107,0.018029643420802627,0.0337979960849197,0.011125142918394613,8.022046256543375,5.690279362411542,3.5439449006753097,2.1898213606250088,0.39771645077009393,-0.38044967912639555,4.0347443300971095,0.9727395579489252,6.02193979248229,0.987188752780442,14.548336608783242,10.950924234360047,16.010067594514048,11.701573069608328,1.9905687650138617,0.751626872773745,3.489204524106733,2.2396687490255385,7.008274458417262,1.1557830955812627,3.7021037429638226,2.4355932439179613,20.897573098527126,14.702707306364804,0.22669639994053045,0.5323850333776359,0.6772204060033674,0.7518643077620528,0.776745608348281,0.776745608348281,2.244878850988125,620.555221777562,0.0,2.0,5.0,0.0,9.0,3.0,1.0,0.0,1.0,4.405092634059574,2.5849625007211556,1.7225842594195164,1.2781398149750718,1.1299916668269248,1.1299916668269248,222.75675886268192,1103.207092243801,40.26039450987206,20.4297609674778,40.1340297167859,,9.0,371.0,5.41499046939678,4.794537184071822,5.907179729351506,24.198431276070394,12.10820789760957,0.0,6.196843571613076,48.53093654769288,37.57883705056018,5.733667477162185,12.033333333333333,28.25,13.5,0.0,14.75,0.0,0.01866666666666667,-1.25,0.08461863690174176,0.03462577160493818,-0.04999286529680358,0.035456790123456705,0.09584931506849281,0.0,0.5216049382716051,0.7786666666666663,0.4369863013698634,0.48697916666666696,0.7432098765432096,26.083730422722056,0.5226250338716483,0.6946250338716482,21.626601236065326,5.379425087489768,6.51216344101168,47.71033165878738,11.891588528501448,0.6181506849315072,0.22714681440443213,0.04155124653739612,0.2409972299168975,0.42857142857142855,0.3096589751482457,-0.5838109360958288,-0.030891306890733265,-0.010811313631404237,-0.03243394089421271,0.6903410248517544,1.3015241678401581,0.03791203529354552,0.024102299404447376,0.03615344910667106,-4.577234932858053,0.9883462282398452,0.8472076916275303,1.5820736104042767,0.8718614718614719,0.5762773119656354,1.3580443234270894,0.9930116713533311,1.181240462153916,0.8498372529474797,0.7836147922511661,0.8080823834575381,1.1168721318324535,0.9024182934854134,0.8072346006586085,1.0003455233226346,1.6044837178857798,1.0255085551553416,1.1639736110482155,0.9054845327929754,1.0177401583641066,0.8085061616104197,0.4841090189444131,0.7596549853081145,0.9790258801678016,1.0439434235976788,1.3058435156764017,1.429250996063497,1.7144059644059646,1.2535262897030273,0.9919580497811014,1.0398921402378711,0.9308444910514102,1.256385161118493,0.9808667607755049,1.3190200698502872,0.9438359150793917,1.0328014184397163,0.9133362652423448,0.8804776361601209,1.2359396433470509,0.9521618961078295,1.21447942924914,1.0362231473027934,1.1778203468665074,0.9237207725132994,0.9578795816718441,0.930052914898809,1.1318744754589696,1.0383510638297873,1.078010396624935,1.0243845035780996,0.752936507936508,0.8224511585642887,1.0489264087343857,1.0379842950756195,1.049681357470372,1.0705040961749457,1.246469300347973,1.1165506091721247,1.041778265970616,0.7495676553820354,0.9343728989461448,1.080745986904771,1.1935256861365235,0.9552213167771925,0.8018997099960797,0.7473229197001487,0.7311400854366502,0.8966902691637858,0.9973282796865615,0.9951681942508858,0.7190699797536554,1.1665408373369937,1.272358156177778,1.2183080220292342,1.4057347670250897,1.5907923084814817,1.2189446675763054,1.1655415141198717,1.1761674502831363,1.2489851064099076,1.25785805395147,1.3184517730803746,1.1611152159617344,1.5430072651790347,1.9438203438822572,1.4455587321436691,0.6360820751064654,1.5005194423820656,0.9559099430817194,1.5320198416142263,1.1211060998468743,1.910462068658456,2.1638754368468622,1.9846293441452534,1.2532532027414263,5.5,0.0,3.777777777777779,2.875,0.977777777777778,0.8749999999999998,1.1755102040816325,0.4305555555555555,0.21466364323507175,0.125,4695.933530154346,5530.146920250031,2271.7975461875494,1975.9645372044042,11.434864174790832,0.47382863952512727,6.016698039695075,0.9005215318019099,1.0,0.42857142857142855,1.3497948681038938,3.1699250014423126,4.032303242743952,4.476747687188396,4.6248958353365435,4.6248958353365435,0.2115384615384615,0.0,0.10493827160493831,0.06845238095238095,0.0217283950617284,0.02083333333333333,0.027988338192419828,0.011330409356725144,0.010222078249289134,0.015625,0.4926566682892767,21.301775147928993,9.796296296296296,5.041666666666667,150.6188129177335,1.0,4.120079650441849,113.51807063685872,,97.05654726097536,95.73640192220076,94.64446029391955,97.06794196387243,117.14597042533383,96.49669776010529,97.13606682106354,110.90023348205153,0.025765483011568894,-0.0033952056030175514,-0.4816286142350604,0.5376623376623377,0.4133988682830116,-0.08511571999674736,0.02551007525242912,-0.01463148215103393,0.007784033108567776,-0.09189914164353795,-0.021573095129185784,0.0036912237940152715,0.10267478386107509,0.12776311430974396,0.07054718107096687,0.030927835051546386,0.11997826667353634,-0.015173344045220232,0.10156988104595414,0.04813205954741125,0.12918176023514558,0.15749976366996615,0.1240006630736005,0.06725723738653046,-0.01598937994963689,-0.13879916639422435,-0.19258713892047521,-0.14935064935064937,-0.027549460988806767,0.12439940688230633,-0.013457095575000496,0.07918525108563304,-0.12139427784960029,-0.05299899492137324,-0.14205736533696342,0.05684947400896536,-0.03408938846514117,0.09346884988389693,0.12319125954435656,-0.047619047619047616,0.06285021959715276,-0.15287042210201623,-0.03704529481755398,-0.13919870837295445,0.0777268480558345,0.1226595569190057,0.10086583124378702,-0.10982394757493438,-0.036736250501806476,0.05083211734690271,0.0653160403112134,0.12428571428571428,0.15808041799182185,-0.060553025355813805,-0.03827669071478195,-0.08033213718513157,0.03593156674286565,-0.012862891211014936,0.0590410097817412,-0.07231165239245309,0.22787947942642767,0.08248711911727095,-0.0567110151497246,-0.1203377902885292,0.07304337705879325,0.10853378381586731,0.2290104064138767,0.20257159493469107,0.11731524993026134,0.026304440259705544,0.026940720057143507,0.22842702003054446,-0.15193405938799026,-0.12240077481392099,0.06885689790677199,-0.3400921658986175,-0.4674473479796571,-0.16376981641518154,-0.15252577822253297,-0.16866862746228956,-0.12644964547209267,-0.00465201026476926,-0.11370099026397881,-0.16471394923267957,-0.5093030030059434,-0.5370157161145511,-0.1845995673736419,-0.07317073170731708,-0.49771999423765223,0.05012909749919159,-0.5038432050059714,-0.1803401912614622,-0.5702435368498159,-0.4474079698006352,-0.44578560094696995,-0.3131747351253028,15.82109992618155,14.670020678930937,2.8853998118144273,11.799956450734783,26.645922130698274,30.77534754607847,32.853421620152545,33.00275495348588,33.00275495348588,49.5742751313136,41.95973080819238,5.892797232213994,1.7217470909072201,0.0,7.614544323121214,3486.670464345941,3170.7238317752744,1709.9431235624834,36.0,36.0,48.0,59.0,64.0,68.0,76.0,60.0,44.0,339.2310625480008,26.0,4.8283137373023015,5.680172609017068,6.566672429803241,7.448333860897476,8.348774539791274,9.243097936214355,10.14968334738049,11.050715386954158,11.960383082278973,0.5679012345679013,0.9556296296296298,1.131542605765717,0.5234137226061295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6488023619427813,0.9434277414669568,0.9850691915513478,0.5897257955085148,9.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,5.733667477162185,5.41499046939678,0.0,5.907179729351506,0.0,14.678425435869507,0.0,0.0,0.0,36.39820241076966,51.81195605030872,24.82528163582157,5.693927994848461,181.19748412221293,-341.6179775604915,-18.07610157970827,-6.3262588437128064,-18.97877653113842,403.95424298489485,761.5891146833096,22.184292930163785,14.103502123764995,21.15525318564749,0.4444444444444444,0.9349917681057083,0.1954850974589144,11.70936040276515,0.12396540410373598,11.052738617101621,0.06500823189429192,5.0,0.3076923076923077,0.23454756806218324,0.5508231047523734,0.7006745555370222,0.7779035968132177,0.8036466105719494,0.8036466105719494,3.361900000000002,,0.6785714285714287,0.8427175430432758,0.8488829422512447,0.6767661145452564,-2.636839718884606,0.7422735618115056,0.6692837795551935,-1.356968362788312,102.24840000000006,4.794537184071822,0.0,9.883888251797686,5.733667477162185,51.61444254938121,6.544756405912575,65.98515960585141,0.0,0.0,3.970291913552122,0.0,5.2832037287379885,0.0,6.821107472256465,0.0,8.465689348549121,0.0,10.16788820369854,30.66666666666667,17.147219807676155,4.497185374149661,0.0,0.0,0.0,0.0,1.6063189720332585,0.0,51.60400000000001,0.0,12.738290816326533,0.0,0.0,0.0,0.0,0.0,-0.35660903250188913,61.103300711348716,5.733667477162185,0.0,0.0,34.419506045357686,10.209527653468601,0.0,45.373149908233955,54.72778011930596,0.0,0.0,0.0,28.264341020730992,35.03532754491019,31.040346666261755,227.0361412737175,,194.058808807665,191.4145014017486,189.2564004770222,194.08174263858126,234.92478238320004,192.93661708556579,194.21859093976266,222.1261393711722,31.04034666626175,227.03614127371753,,193.48658109066685,190.70661866559234,188.54333880553116,193.510990424422,236.92878056955243,192.31310729364412,193.65356748716846,223.15743532689135,4.990584445219092,154.36208987714815,,135.34566310026477,133.4178206191741,131.7661872348427,135.36213622383437,165.15406117467924,134.5250635662193,135.4621485544895,155.92537299279553,1.2416138666504701,9.0814456509487,,7.7623523523066,7.656580056069944,7.570256019080888,7.763269705543251,9.396991295328002,7.717464683422631,7.768743637590506,8.885045574846888,2.4952922226095464,113.51807063685872,,97.05654726097536,95.73640192220076,94.64446029391955,97.06794196387243,117.14597042533383,96.49669776010529,97.13606682106354,110.90023348205153,50.94509803921567,0.0,8.703299319727892,0.0,0.0,5.976726190476191,0.0,53.19373634377278,1.3645455404383977,0.0,0.0,0.0,0.7871896783404718,2.3785416666666666,-0.9260416666666669,0.0,0.0,31.8451929574598,547.1120479379836,72.88892287761027,171.1759500778849,217.7443751081734,241.74437510817341,249.74437510817336,249.74437510817336,542.0,126.27614692963934,38.03967916912428,59.708180666794235,59.22,59.22,0.8,7.813888346010917,5.700439718141092,3.9974900477002207,4.923374082849854,,4.929012167737294,4.929804116611068,4.930734051031315,4.929006163789169,4.917139391534411,4.9293660287259895,4.928962089872174,4.9208019667567395,0.15989960190800884,0.19693496331399415,,0.19716048670949174,0.19719216466444273,0.1972293620412526,0.19716024655156678,0.19668557566137643,0.19717464114903957,0.19715848359488697,0.19683207867026958,2.301957407966064,2.5102848165295404,,2.51142932819595,2.5115899862004483,2.5117786035775516,2.511428110111763,2.509017668800734,2.511501117080855,2.511419168326628,2.5097622504684125,290.7400000000006,225.737672489073,142.8836158744668,,141.86470137024708,141.7833767806069,141.7421188681331,141.865477462478,143.1859235067898,141.83116250728938,141.86952391883574,142.7355456202746,9.02950689956292,5.715344634978672,,5.674588054809883,5.671335071224275,5.669684754725324,5.67461909849912,5.727436940271592,5.673246500291575,5.6747809567534295,5.709421824810984,6.3356643157658326,5.878321155754262,,5.871164528014266,5.870591109062171,5.870300074122469,5.871169998650024,5.880434682035394,5.870928085630824,5.871198521435992,5.877284318682951,0.0,19.614017857142862,0.0,6.657003495842782,-0.35660903250188913,16.21355300453515,2.317800925925926,9.470900415721845,0.0,348.58452686371913,106.02802078157563,-199.89834958035877,-10.577262058729811,-3.7018212885251627,-11.105463865575487,236.37452295485545,445.6451858029118,12.98117732273534,8.252688625979848,12.37903293896977,1372.0,42.0,1.8298781348024582,1.1562806986472263,0.06804138174397717,0.04419417382415922,0.9360201374968156,0.408756444119452,0.13608276348795434,0.03655894455607737,0.0,0.0,0.0,0.0,0.0,0.0,0.2041241452319315,0.056920214704976865,0.10206207261596575,0.028460107352488433,18.44938298937633,15.645092274112388,11.891588528501451,8.919543717304593,10.627504322959599,7.025906625619413,8.428710701971825,4.860954956686849,7.106291803388635,3.559344711909492,4.72462337841509,1.868205606262269,3.1257428423822327,1.2260157526145785,2.568647702453897,0.8455108617979906,4.832710850825411,2.628046383271022,8.231410532826477,3.825604016465013,11.829986014583982,4.261470168753458,86.45191069587592,49.68499401008734,36.155279649180976,30.311447237126114,29.625175940349045,29.625175940349045,124.0,146.0,58.50899699999997,32.24100299999999,0.24074074074074073,76.04,9.729166666666668,5.680555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,54.0,0.0,1.0,55.0,12.0,1.0,7.0,48.0,13.0,26.0,42.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,3.0,1.0,1.0,25.0,4.0,0.0,3.0,1.0,0.0,2.0,8.0,0.0,0.0,0.0,1.0,2.0,3.5263605246161616,6.109907087465547,4.02535169073515,4.516338972281476,5.018934096910951,5.45905345773363,5.504823276709224,5.891989456089514,6.07203596114552,5.989587787095122 +60822,CC(C)c1c(C(=O)Nc2ccccc2)c(-c2ccccc2)c(-c2ccc(F)cc2)n1CC[C@@H](O)C[C@@H](O)CC(=O)[O-],1,22.946666666666665,6.236264,3.2533333333333334,7.8933333333333335,161.66272579022623,91.04578128199695,1.50795743686488,6.301788000000001,5.978148148148149,7.73902208,223.7137507376907,24.371794871794872,6.29844871794872,3.948717948717949,7.076923076923077,144.61816207607058,92.46934502352822,1.8611342548974363,6.449814102564103,3.309472934472935,7.714254410256408,271.4924684612401,20.940298507462686,6.197410447761193,3.6865671641791047,5.768656716417911,150.2450732091119,78.14598645276418,1.621437969481269,6.321016417910446,3.4618573797678276,7.662091074626864,230.497456815902,17.064864864864866,6.132621621621622,3.172972972972973,4.475675675675675,157.623869302312,61.81814394335999,1.3875285490025409,6.223575675675676,3.0250750750750752,7.665063200000002,192.58384145345966,17.861386138613863,6.1602668316831695,3.202970297029703,4.767326732673268,159.01192127656762,65.6020168103287,1.383125751940396,6.243641584158417,3.409928492849285,7.684245940594062,193.35272085589747,18.256880733944953,6.178646788990825,3.302752293577982,4.362385321100917,154.43880933983456,66.34418349924404,1.4769948439297156,6.281795871559632,3.158256880733945,7.691557688073394,206.71627646913802,17.303846153846155,6.149803846153847,2.9692307692307693,4.0115384615384615,155.87694385849272,62.386011736375366,1.426330136601227,6.244728846153846,3.3733974358974357,7.672572907692306,196.5643413793249,15.036184210526315,5.964582236842107,2.6776315789473686,3.085526315789474,156.75787025709178,53.13687969848945,1.3414170234921086,6.061171052631578,2.8923611111111103,7.519783592105263,179.15687301244267,13.324159021406729,5.908422018348624,2.382262996941896,2.767584097859327,159.21776670646628,46.08121160558776,1.2358651506815994,5.9918896024464825,2.9170064559972806,7.490207510703363,160.4994801983535,7.4755555555555535,0.1491881599999999,0.021079721590029403,0.6072888888888888,4.103822222222221,1.7184060576614222,35.763105753699804,0.2371382584909344,0.13749215999999995,2.5350617283950614,0.09165866382222221,50.62013061629492,0.05572649572649619,-0.008043442051282011,-0.00733793620430297,0.1923692307692308,1.0083145299145302,-0.003183361179558718,0.3348756127835293,0.013044701185664528,-0.006790057435897347,-0.18198480531813865,-0.005352250830769239,2.3222646656087416,0.1895190713101162,0.011639242985074636,0.002410305303316448,0.06873101160862352,0.3623469320066333,-0.17483300941076943,0.8437259120875856,-0.013347718642584576,0.010539242985074667,0.26740925004606586,0.007414380157877275,-1.9228952069979468,-0.24888888888888885,-0.016547641081081064,-0.0024922018717850464,0.07732372372372373,-0.02656096096096099,-0.035614469300146806,-1.1089853105868956,0.009172462507015861,-0.014586819459459433,-0.260316983650317,-0.010506163642042043,1.1446851279204937,0.8532893289328933,0.016626156831683173,0.003866225071795639,-0.037585918591859196,0.14376853685368524,0.2216886525198346,3.999413761546418,0.03010395328109925,0.015201008316831702,0.2835521329910769,0.01158626396655665,6.1365369857395065,-0.7879102956167174,-0.019009407706421986,-0.0030387060778495935,-0.09523995922528038,-0.7956265035677877,-0.04145154555626239,-3.67659645318256,-0.005096066797926717,-0.017792068256880685,-0.1995231623060369,-0.011156760458307852,-2.508625573204232,-0.749145299145299,-0.0030892984615384445,0.002146580011544311,-0.08431452991452996,-0.5471555555555555,0.052908756675576166,-3.542833513335706,-0.004954122505504416,-0.0048798215384615,0.002075023741690432,0.0002898122803418772,-3.4162964860885787,-0.7394152046783626,-0.008648554736842121,-0.0018436441732058637,-0.08070994152046784,-0.501804678362573,-0.15287107496722935,-3.486400717241914,-0.0240558482066048,-0.008448436315789497,-0.11423570500324881,-0.004855845050292378,-5.362206535743655,-0.6024872579001022,0.002491473027522902,0.0008423263493718599,-0.03574964322120284,-0.09252762487257894,-0.1536049553951655,-2.905370058999111,-0.025896161859431156,0.0008673874006115739,-0.03693963076226067,0.0025674160146789225,-5.98297485827979,,,0.46957026713124267,1.2378048780487805,0.6341463414634146,0.024390243902439025,0.6036585365853658,0.03048780487804878,1.0792226091328707,0.018620457595958047,0.027010701498397068,1.2027989594771036,0.2438786819698889,0.23540850829691148,2.2820215686099745,0.4792871902668004,2.0223961383594076,1.6618877111194208,0.10570828129839685,0.2117619815556298,0.043038164385959456,0.3605084272399861,7.429942986505479,1721.0,467.7198,244.0,592.0,12124.704434266967,6828.433596149771,113.096807764866,472.63410000000005,448.36111111111114,580.426656,16778.531305326804,1901.0,491.2790000000001,308.0,552.0,11280.216641933504,7212.608911835201,145.16847188200003,503.0855,258.1388888888889,601.7118439999998,21176.41253997673,2806.0,830.4529999999999,494.0,773.0,20132.839810020992,10471.5621846704,217.27268791049005,847.0161999999998,463.8888888888889,1026.7202039999997,30886.65921333087,3157.0,1134.535,587.0,828.0,29160.41582092772,11436.356629521599,256.69278156547006,1151.3615,559.6388888888889,1418.0366920000004,35628.010668890034,3608.0,1244.3739000000003,647.0,963.0,32120.40809786666,13251.607395686398,279.39140189196,1261.2156000000002,688.8055555555555,1552.2176800000004,39057.24961289129,3980.0,1346.945,720.0,951.0,33667.660436083934,14463.0320028352,321.984875976678,1369.4315,688.5,1676.759576,45064.14827027209,4499.0,1598.9490000000003,772.0,1043.0,40528.00540320811,16220.363051457594,370.845835516319,1623.6295,877.0833333333333,1994.8689559999996,51106.72875862447,4571.0,1813.2330000000004,814.0,938.0,47654.3925581559,16153.611428340793,407.790775141601,1842.5959999999998,879.2777777777775,2286.014212,54463.689395782574,4357.0,1932.0539999999999,779.0,905.0,52064.20971301447,15068.556195027199,404.127904272883,1959.3478999999998,953.8611111111107,2449.2978559999997,52483.33002486159,560.6666666666665,11.189111999999993,1.5809791192522051,45.54666666666666,307.7866666666666,128.88045432460666,2682.232931527485,17.78536938682008,10.311911999999996,190.1296296296296,6.8743997866666655,3796.5097962221193,4.346666666666703,-0.6273884799999969,-0.5723590239356317,15.004800000000001,78.64853333333335,-0.24830217200558002,26.120297797115285,1.017486692481833,-0.5296244799999931,-14.194814814814816,-0.41747556480000064,181.13664391748185,25.39555555555557,1.5596585600000012,0.32298091064440404,9.209955555555553,48.55448888888886,-23.427623261043102,113.05927221973647,-1.7885942981063332,1.4122585600000053,35.832839506172824,0.993526941155555,-257.66795773772486,-46.04444444444444,-3.061313599999997,-0.4610573462802336,14.30488888888889,-4.913777777777783,-6.588676820527159,-205.1622824585757,1.6969055637979342,-2.6985615999999952,-48.15864197530865,-1.943640273777778,211.76674866529132,172.36444444444444,3.3584836800000013,0.7809774645027191,-7.5923555555555575,29.041244444444416,44.78110780900659,807.8815798323765,6.080998562782049,3.0706036800000036,57.27753086419754,2.3404253212444432,1239.5804711193803,-171.7644444444444,-4.144050879999993,-0.6624379249712113,-20.76231111111112,-173.44657777777772,-9.0364369312652,-801.4980267937981,-1.1109425619480242,-3.878670879999989,-43.496049382716045,-2.432173779911112,-546.8803749585226,-194.77777777777774,-0.8032175999999955,0.5581108030015208,-21.92177777777779,-142.26044444444443,13.756276735649804,-921.1367134672835,-1.2880718514311482,-1.26875359999999,0.5395061728395123,0.07535119288888807,-888.2370863830305,-224.78222222222223,-2.6291606400000047,-0.5604678286545826,-24.535822222222222,-152.5486222222222,-46.47280679003772,-1059.8658180415418,-7.312977854807859,-2.5683246400000073,-34.72765432098764,-1.476176895288883,-1630.1107868660713,-197.0133333333334,0.814711679999989,0.2754407162445982,-11.690133333333328,-30.256533333333312,-50.228820414219115,-950.0560092927093,-8.468044928033988,0.2836356799999847,-12.07925925925924,0.8395450368000076,-1956.4327786574913,0.7199495758829063,0.5623767808394117,0.4466085182031549,0.30997064863633716,0.29516855228301375,0.17007413284320325,0.17277410438539467,0.08753879877197036,0.10887294364368762,0.04631074362242925,0.06701544324998898,0.024952884974313933,0.04062565029609385,0.013094745439770928,0.02600195392076429,0.007380480075179634,9.004076173482833,5.679645589117848,4.107734892715977,2.179259678082091,0.4144962549046492,-0.6338571808659857,3.333667195653815,0.9725166039722671,7.005192975160652,0.9889266414471263,17.424774865444,10.940224081362636,19.00014463609478,11.690908569941133,2.0162588819134175,0.5458451289890518,3.98868981947303,2.2291468570996327,8.002981071052202,1.2202912887362862,4.0099775724024544,2.4250827938192794,20.919043312150944,13.304116917434719,0.23379762286194833,0.5512745060234562,0.7351981282121397,0.8566995424136912,0.9007693104248305,0.9048669607258937,1.6173234605855802,1467.2614722780868,0.0,2.0,3.0,0.0,18.0,5.0,4.0,1.0,0.0,4.707311773543697,2.6412374149182485,1.4443002522328037,0.653594000115385,0.36679700005769256,0.3401303333910253,120.49801828331101,2763.539223786831,116.12656664511904,36.84718965049109,77.7570002747555,,16.0,1047.0,30.415280527420357,29.299071600340582,31.211485427277495,28.07166874462301,11.257379486545457,12.13273413692322,24.26546827384644,66.94551059486548,5.316788604006331,0.0,19.25238095238095,50.75,26.0,1.0,24.75,0.0,0.030429732868757324,1.25,0.15513064713064723,0.06697561773850469,-0.08815502939214254,0.03683085207475467,0.15511141830246034,0.0,0.5953015873015858,0.8401858304297324,0.44017094017093855,0.5283259695630811,0.8033549783549777,44.2481269744477,0.7634387614342799,1.1074387614342798,49.31475733856125,9.999025960765445,9.65174884017337,93.56288431300895,19.650774800938816,0.5588885816975396,0.153351471679446,0.0,0.3583972297798665,0.2727272727272727,0.42794935633828696,-1.65912311575218,-0.10503680485985434,-0.022121641543362398,-0.05721114192248897,0.5720506436617129,1.6457408595221628,0.033836746626003826,0.02194321146029551,0.03577697520700353,-7.636201774259585,0.7978368242934238,0.6830378656936477,1.1228693630369604,0.8644275806161053,0.5039704490622878,1.0663126673740673,0.7993271572117675,1.0149436800676137,0.6800890027686376,0.6465318308846119,0.6936005595295089,0.9490293781619799,0.837222922249632,0.6196004078079616,0.6724755822863061,1.1518446992205251,0.7562662126898003,1.1263834686087764,0.8415783318740292,1.0903336948623086,0.6273576342018734,0.526931670661982,0.6070438509405436,1.0325137061364633,0.9845422116527947,1.0182827734676356,1.0491431465060443,1.0670374707259953,0.9747010916652231,1.0245101652328061,0.982233856479731,0.9500174526486446,1.014135884790328,0.9211551573000878,1.0145465228145862,0.9563704402289072,0.8409189908289285,0.7638315739178384,0.8529843941431432,1.363306339416143,0.9658708788050877,0.8481584718967933,0.8415071802115863,0.841993312800585,0.7692832990786108,0.6520788511109805,0.7341588015727095,0.8501905323796739,1.0204676608231793,0.9248822844824426,1.1907576086779441,1.4756515480308534,1.1646336713621894,0.9528498498190908,1.014324713162657,1.0122852551708141,0.932825965354926,0.8725939435422837,0.9369986795689559,1.0226680816068936,1.027458154212019,0.8320331682882709,0.745545447937657,1.2404015042334715,1.0546390773496133,0.9027898352062356,1.02360059012861,1.0083355975316728,0.8539845434618195,0.7986459605457367,0.817185677366285,1.0448887339640853,1.0239748263345645,0.7816317738642993,0.8096470879667692,1.1169862412177987,0.9846404777973355,1.0205161113740275,1.0241033997339835,1.1030341813797095,0.8036988079008961,0.7289117407329565,0.7559351366477693,1.1143310971959555,1.0381263022395797,0.7812995085241814,0.6229755320536808,0.9191768901875687,0.8797248660257952,1.0297918496460858,1.0415975163045457,1.10965613465338,0.8092422790454104,0.729120554587022,0.7448362474646779,1.135170229705672,8.0,0.3988409345985103,3.555555555555557,3.8611111111111116,3.4494444444444454,2.014722222222222,1.54875283446712,1.1858347505668934,0.8291997354497354,0.4996913580246915,8859.00390092598,9993.47655326255,3803.9827898499884,3449.5237276303615,16.66493509487331,0.4723139867054511,8.793853162026112,0.8950663364310366,0.0,0.2727272727272727,1.5215069169521835,3.587581275577632,4.784518438263077,5.575224690380495,5.862021690438188,5.888688357104855,0.18181818181818177,0.0072516533563365525,0.05828779599271404,0.059401709401709406,0.0459925925925926,0.024273761713520754,0.0170192619172211,0.013323985961425769,0.01049619918290804,0.007348402323892521,0.4252135442605026,33.88429752066116,16.350443429185702,9.254927095016825,238.4573239468712,0.0,4.627168977005397,274.7388316246472,,227.0771220971963,224.37585401207883,223.3900990544564,227.02648637228475,280.0570581664946,225.97570662959544,227.27129626929994,259.50399637466865,0.007454495563889207,-0.05391474800199974,-0.3481040379477201,0.31676724914429844,0.24570131826239966,-0.0018525081224928597,0.009363717320576538,0.05500884281041988,-0.049385051743294675,-0.0717871297884934,-0.058393288834651454,0.045876307258306256,0.025351837719843135,0.07801720314182199,0.11434236894554196,0.11317679751127264,0.08829498754710245,-0.10174138331931835,0.023592076088086944,-0.05628665204646786,0.0766534105295507,0.1054843150566443,0.0808912092833683,-0.0379867689708994,-0.033293697978596916,-0.11091792459321888,-0.11822745671194465,0.1273260965883917,-0.006472249411081511,-0.020725293152547727,-0.031009200325734232,0.03867980883973016,-0.10609200887861124,-0.10268664495799981,-0.11462270126934661,0.022613239317719434,0.11414393520208148,0.1114442113347546,0.18340968381785192,-0.061891332575880566,0.03503283745459971,0.1290083048365941,0.11183071708286037,0.12694684304704928,0.11055909163716468,0.11185216115845541,0.12640664268277949,0.12122720567939661,-0.10539822622696877,-0.1274190103720161,-0.14415304608609658,-0.1568280944502934,-0.19387450539632678,-0.02412208998650399,-0.10280417138554039,-0.021489855033752534,-0.12940423844443705,-0.0787054453432794,-0.12172074076867515,-0.0495578644832001,-0.10021265892252815,-0.020707397031630704,0.10183151624543428,-0.13883759682940022,-0.13332827932767288,0.030789437944358546,-0.09906392184546749,-0.020891283157052486,-0.03549163485730024,0.000818529867911391,0.0031618645554771178,-0.06748889116830632,-0.0989110707803993,-0.05797078492584215,-0.08746055612413295,-0.13290205534327626,-0.122277391950679,-0.08896097303990624,-0.09748596056653261,-0.10144229092213072,-0.06144667678353079,-0.04506229719130785,-0.05297748022718941,-0.10593031804658222,-0.08059431214478181,0.01670020615257205,0.03995908322481241,-0.058867606299550936,-0.022546694243123232,-0.0893880434780394,-0.08123931067420065,-0.10920280019017321,0.006308631711157743,-0.014571491632137504,0.02801062013797832,-0.11819358791527564,26.14120216760304,45.98879927347556,19.183556674554456,14.479007485711776,32.683583956454484,41.30143678352126,45.06702941062374,45.649534120015225,45.67641412001523,82.91824167273572,68.13739615589625,4.334039533234271,8.682241243780823,1.7645647398243378,14.780845516839431,12898.991082852468,10883.870274756751,3915.260581609092,281.0,61.0,79.0,112.0,148.0,174.0,210.0,246.0,273.0,557.2457239879109,44.0,5.351858133476067,6.19644412779452,7.0909098220799835,7.972121128921655,8.884748726451182,9.788469440951861,10.712927770367092,11.63146377089376,12.563813521161812,0.6555555555555556,0.9868799999999999,1.123141434360837,0.6190352212693919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6750336287425149,0.9736470588235295,1.0070599660111677,0.6393006662595837,14.0,0.0,0.0,0.0,0.0,0.0,8.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,1.0,0.0,2.0,4.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,29.998007620391625,5.817220841045895,0.0,0.0,5.907179729351506,4.794537184071822,4.39041504767482,0.0,0.0,62.37841094707412,66.28465468617706,35.879649078019455,23.46531226204206,357.8528014718092,-1387.364757453279,-87.83215658591655,-18.49819676604372,-47.840164050113074,478.3508197551202,1376.174466333552,28.294410059202487,18.348992884447366,29.916836224642427,0.5,0.7397720539349799,0.1418829552467973,246.9964828891176,0.089561239384706,32.70724746136517,0.26022794606502003,8.0,0.2727272727272727,0.24426893646362588,0.5759649548078308,0.7681261369131581,0.8950693490063119,0.9411129110857951,0.945394086697369,4.978900000000007,,1.869047619047619,2.190150835896446,1.6698732938233434,1.899117225375315,-8.446039625922952,1.9752695546274828,1.8364999873188608,-3.1802813120776934,154.61779999999976,29.299071600340582,0.0,4.567099647791355,0.0,57.78053449572985,5.316788604006331,102.00373928605393,0.0,22.384282469939446,4.48863636973214,0.0,5.808142489980444,2.3978952727983707,7.312553498102598,4.948759890378168,8.910990494656719,7.260522598089852,10.568466713268153,49.166666666666664,24.705681931133107,0.0,0.0,0.0,0.0,0.0,4.324601601810262,1.9806517699672461,74.01599999999999,0.0,24.90642622839696,0.0,0.0,0.0,0.0,0.0,-1.691512502689294,84.23560757706278,10.423315998847038,10.077801322358383,0.0,38.86457223027272,11.339293589984397,5.817220841045895,55.07976198493796,84.92913895846256,0.0,22.384282469939446,0.0,46.42764159520439,50.62752215568862,51.534392053413754,549.4776632492944,,454.0630711398049,448.6448713980164,446.69874087506776,453.960332879917,563.0595764579975,451.85505864677003,454.4530071733648,520.0939424656565,51.534392053413754,549.4776632492944,,452.28519657534486,446.56155718826113,445.1103248150896,452.15385551919417,568.5601559589122,449.97614370456336,452.7060925512808,522.1882740614151,4.976468828490584,366.1684677936893,,308.39836520432357,304.5397883874462,302.77607559180024,308.36063752438986,381.2741542181517,306.81388068475496,308.6604486123639,354.12813804112494,1.256936391546677,13.401894225592548,,11.074709052190363,10.94255783897601,10.895091240855312,11.072203240973586,13.733160401414574,11.020855088945611,11.08421968715524,12.68521810891845,2.580642188132685,274.7388316246472,,227.0771220971963,224.37585401207883,223.3900990544564,227.02648637228475,280.0570581664946,225.97570662959544,227.27129626929994,259.50399637466865,73.02352941176471,0.0,3.961086770873026,0.0,14.00154143402801,0.0,20.725158206982357,75.52949745083758,-0.25971531062280606,3.017704985436282,0.0,0.0,-2.368987265320828,0.0,0.0,0.0,0.0,47.947549969468774,618.6000703829136,114.11301877141376,269.0685956683224,358.83888286973075,418.14185177853716,439.65162678286407,441.6516267828641,1669.0,165.19275644209793,217.60355084401587,92.69596732700644,114.62,114.62,1.0,9.419985731214009,6.459431618637297,4.468443889126816,6.275353738900853,,6.268856205771282,6.268702206071792,6.266888558028243,6.268956631212171,6.251405261305687,6.26874147091266,6.268820221048899,6.264492153402269,0.10898643632016625,0.15305740826587447,,0.15289893184808007,0.15289517575784858,0.15285094043971326,0.15290138124907734,0.15247329905623627,0.15289613343689415,0.15289805417192437,0.15279249154639682,2.90802719848893,3.2476168298724306,,3.246580888391969,3.2465563222532614,3.246266962447197,3.246596908002757,3.243793253994351,3.246562585865188,3.246575148138168,3.2458844978632264,425.41000000000145,1823.8851157299155,310.54818303441374,,311.1264240643977,311.141564879111,311.6128574409041,311.09831813336905,314.3599693607262,311.14760559460524,311.13772227165765,312.0684625419135,44.48500282268086,7.574345927668627,,7.588449367424335,7.5888186555880734,7.600313596119613,7.58776385691144,7.667316325871371,7.588965990112323,7.588724933455064,7.611425915656427,8.919711157563718,7.149326041899597,,7.151186311533056,7.151234974858136,7.152748549502893,7.151095971406276,7.16152570224267,7.151254389354743,7.151222624752539,7.154209568672316,15.982193203995255,24.90642622839696,34.606892009090984,4.71666223190123,-2.2048676925641795,24.705681931133107,-2.7691954626197823,4.222874217333092,0.0,522.718154656252,299.23780845692835,-1160.1194341450528,-73.44556739731412,-15.468259121934034,-40.004118418794924,399.9986876961018,1150.762072188153,23.65988815198478,15.343494295842051,25.016566786698977,5382.0,65.0,2.961293974474815,1.2899619754223208,0.0,0.0,0.5026225957904749,0.20509857873362317,0.0,0.0,0.0,0.0,0.0,0.0,0.06415002990995841,0.02795084971874737,0.48096654787606447,0.16975574825110717,0.7697286507949072,0.23390774289783606,29.51793261119916,23.05744801441588,19.650774800938816,13.638708539998834,18.00528168926384,10.374522103435398,13.649154246446178,6.915565102985659,12.193769688093013,5.186803285712076,9.918285600998368,3.693026976198462,7.06886315152033,2.2784857065201414,5.460410323360501,1.5499008157877232,5.595954549446191,2.3085368860862885,10.14786267551398,3.5796877652695454,16.75863823900283,5.262535332578171,133.89709226946465,75.54034097806534,42.37361694908469,29.144112604172772,26.991219141014785,26.87845064260156,210.0,245.0,84.54796199999998,40.10603800000002,0.3333333333333333,296.08,14.305555555555557,9.083333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,23.0,23.0,75.0,0.0,0.0,78.0,23.0,2.0,13.0,65.0,25.0,44.0,53.0,0.0,0.0,0.0,33.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,6.0,3.0,1.0,41.0,8.0,0.0,2.0,5.0,0.0,4.0,12.0,0.0,0.0,1.0,1.0,4.0,4.069026754237811,8.26167978116519,4.641984159110808,5.196423058866697,5.828761777183179,6.392231134434592,6.724057776008252,7.173335520493604,7.622847398292649,7.995327685117828 +104762,NC(=O)c1ncn([C@@H]2O[C@H](CO)[C@@H](O)[C@H]2O)c1O,0,28.0,7.127248387096776,3.4516129032258065,10.580645161290322,170.6937607861367,110.83813141935482,1.237719089130226,7.1022225806451615,8.675627240143369,8.578060645161292,201.42025725152425,27.875,7.11275,4.3125,8.8125,156.99989357539062,106.17677521875,1.5166127098124997,7.182781249999999,4.340277777777777,8.511575625,246.60666870986887,25.77777777777778,7.081979629629631,4.0,8.25925925925926,160.52953806616298,97.26768444444446,1.3803058384388527,7.128127777777779,4.3503086419753085,8.502524592592591,220.59044550154755,22.21917808219178,7.079491780821916,3.0136986301369864,7.054794520547945,166.0901202979081,82.21798039726028,1.1176725946526165,7.082846575342463,5.293759512937594,8.573305589041098,176.03754744561448,19.407894736842106,6.977603947368419,2.6842105263157894,5.684210526315789,170.0686144895564,70.13033743421052,1.0378348693597232,6.969207894736843,5.250730994152047,8.501309105263157,158.52474664429386,16.681159420289855,6.761840579710145,2.463768115942029,4.579710144927536,171.12347406785491,58.852758420289845,0.9898279266816958,6.758302898550725,4.763285024154587,8.33152515942029,146.27827135292955,16.464285714285715,6.6674999999999995,2.25,4.607142857142857,170.80289324007927,58.51447869642857,0.9563604607328038,6.665712499999998,4.841269841269842,8.244278214285712,139.94149540081926,16.72093023255814,6.8666511627906965,2.0,4.5813953488372094,173.36941216464047,59.007974953488365,0.8914791777125813,6.842858139534883,5.945736434108529,8.43971041860465,132.88333294625943,13.2,6.737533333333332,1.7,2.7666666666666666,175.83543739048145,43.498343500000004,0.8098127003697999,6.707840000000002,5.683333333333335,8.350883066666666,113.28912022400851,8.75338189386056,0.24762705515088435,0.054899940097898656,0.7450572320499477,4.88241415192508,1.330354860957196,40.91724533818938,0.18475784180922578,0.22260124869927142,3.5280957336108227,0.16506683038501546,40.90661935144227,-0.7251560874089485,-0.07786515998959423,-0.03126888164846149,0.2841766389177937,0.11355359001040544,-0.2794932027150109,-3.0295546456490605,0.012874596291281487,-0.06520991805411036,-0.9582032604925423,-0.053783003772112356,4.223869556893055,-0.39017998227155304,-0.02770196554514978,-0.0012612972826600648,-0.02641923921840684,-0.09985740162639244,-0.020116506667265614,-1.724939409873969,-0.006059219505999829,-0.023811702701661126,-0.34770611460113127,-0.021991814853354906,-0.4325549696672297,0.17900873804398984,0.020358627571165838,0.0033271761542047642,-0.13922426695936027,0.1308425869171668,-0.17478617275279595,0.7071014452838817,-0.02268947972543831,0.01760529129189054,0.10729484919469667,0.012876347697176183,-3.925210473153639,-0.5984582945396789,1.3394764225842329e-05,0.0037985005205415376,-0.08588915055589026,-0.39599649487923777,0.04113138989829047,-2.8762564931129853,-0.010266232609723688,-0.0018253998028369672,0.11892841277665203,0.0012407129087025652,-3.7279426795345203,-0.8221055965253584,-0.02462415660015982,-0.006591875270884434,-0.027432173611425293,-0.4812921322897344,0.032888424156277046,-3.8001840960201485,0.001219321128768083,-0.022459874225218265,-0.28790041908170666,-0.01449507348926993,-1.1942404109820788,0.3791065854021106,0.014345813512710014,0.0010466025352424367,-0.0670618403448788,0.0749591199643229,-0.06360799254358947,1.6941878812806583,-0.01321332320080361,0.013495064664783753,-0.03180797119402743,0.008930987587334604,-1.000218652140781,-0.25150642499334536,0.005919456477022488,0.004025196155649043,-0.1524090700094378,-0.43455218643370513,-0.13369922426346278,-1.2781099705974892,-0.019649590438674494,0.004695600513031494,0.24163836658089258,0.00475275551145851,-3.9419496609451157,-1.9189732917100244,-0.032433721817551116,-0.005766080030253171,-0.035379812695109196,-1.1630593132154006,-0.12086910802372418,-9.054028463995838,-0.02753085014376678,-0.03152651751647583,-0.3367576213049676,-0.01754260242802636,-8.86095232755705,,,0.42777777777777776,1.0416666666666667,0.3333333333333333,0.027777777777777776,0.7083333333333334,-0.375,0.7797280650206402,0.024765591643653946,0.0343211471992095,0.851149192886169,0.22377811549078727,0.24669037966406412,1.6308772579068092,0.4704684951548514,1.9781167698726116,1.0478105315480264,0.3307043664255843,0.5996018718990008,0.0,0.9303062383245853,8.357433391483875,868.0,220.94470000000004,107.0,328.0,5291.506584370238,3435.9820739999996,38.36929176303701,220.1689,268.94444444444446,265.91988000000003,6244.027974797252,892.0,227.608,138.0,282.0,5023.9965944125,3397.656807,48.53160671399999,229.84899999999996,138.88888888888886,272.37042,7891.413398715804,1392.0,382.42690000000005,216.0,446.0,8668.595055572801,5252.454960000001,74.53651527569805,384.91890000000006,234.91666666666666,459.1363279999999,11911.884057083567,1622.0,516.8028999999999,220.0,515.0,12124.578781747292,6001.912569,81.590099409641,517.0477999999998,386.4444444444444,625.8513080000001,12850.740963529857,1475.0,530.2978999999998,204.0,432.0,12925.214701206287,5329.905645,78.87545007133896,529.6598,399.05555555555554,646.0994919999999,12047.880744966333,1151.0,466.567,170.0,316.0,11807.519710681989,4060.8403309999994,68.29812694103701,466.3229,328.6666666666665,574.875236,10093.20072335214,922.0,373.38,126.0,258.0,9564.962021444439,3276.810807,53.55618580103701,373.2798999999999,271.11111111111114,461.6795799999999,7836.723742445879,719.0,295.26599999999996,86.0,197.0,7454.88472307954,2537.3429229999997,38.333604641640996,294.24289999999996,255.66666666666674,362.90754799999996,5713.983316689156,396.0,202.12599999999995,51.0,83.0,5275.063121714444,1304.950305,24.294381011093996,201.23520000000005,170.50000000000006,250.52649200000002,3398.6736067202555,271.3548387096774,7.676438709677415,1.7018981430348583,23.096774193548377,151.3548387096775,41.24100068967308,1268.4346054838709,5.727493096085999,6.900638709677414,109.3709677419355,5.117071741935479,1268.1051998947103,-23.204994797086353,-2.4916851196670153,-1.0006042127507677,9.093652445369399,3.633714880332974,-8.943782486880348,-96.94574866076994,0.4119870813210076,-2.0867173777315315,-30.662504335761355,-1.7210561207075954,135.16382582057776,-21.069719042663863,-1.4959061394380881,-0.0681100532636435,-1.4266389177939693,-5.392299687825192,-1.0862913600323432,-93.14672813319433,-0.32719785332399076,-1.2858319458897007,-18.77613018846109,-1.187558002081165,-23.357968362030405,13.067637877211258,1.486179812695106,0.2428838592569478,-10.1633714880333,9.551508844953176,-12.759390610954105,51.618405505723366,-1.6563320199569966,1.2851862643080096,7.832523991212857,0.9399733818938614,-286.54036454021565,-45.482830385015596,0.001018002081164017,0.28868603956115685,-6.5275754422476595,-30.09573361082207,3.1259856322700754,-218.59549347658688,-0.7802336783390004,-0.1387303850156095,9.038559371025555,0.09429418106139495,-283.32364364462353,-56.72528616024973,-1.6990668054110274,-0.454839393691026,-1.8928199791883453,-33.20915712799167,2.269301266783116,-262.21270262539025,0.08413315788499773,-1.5497313215400603,-19.865128916637758,-1.0001600707596252,-82.40258835776343,21.229968782518196,0.8033655567117608,0.05860974197357646,-3.7554630593132132,4.1977107180020825,-3.5620475824410103,94.87452135171687,-0.7399460992450022,0.7557236212278902,-1.781246386865536,0.5001353048907379,-56.01224451988374,-10.81477627471385,0.254536628511967,0.17308343469290885,-6.553590010405825,-18.68574401664932,-5.7490666433288995,-54.958728735692034,-0.8449323888630033,0.20191082206035424,10.390449762978381,0.20436848699271593,-169.50383542063997,-57.56919875130073,-0.9730116545265335,-0.17298240090759515,-1.061394380853276,-34.89177939646202,-3.6260732407117255,-271.6208539198751,-0.8259255043130034,-0.945795525494275,-10.102728639149028,-0.5262780728407908,-265.8285698267115,0.7470682932368444,0.5094992527917656,0.4457069954098592,0.27107866837285366,0.2783682682872673,0.1398985994010524,0.1778930009308504,0.07159784246406595,0.11171202493023996,0.03723493858104509,0.06800407601367972,0.019478493734963936,0.04399584192938427,0.009759597140597334,0.028650669233332475,0.004955398031050777,8.022738279245198,5.797547515393328,3.5444972110704374,2.2837754546803617,0.4661402974949716,-0.3934234951289636,3.255289691063473,0.9727897772566848,6.022036328330595,1.9860231474179137,14.557919111552218,11.07009465943976,16.011406897816148,11.818966677179274,1.90100912561056,0.7515269995814405,3.4897827739049165,2.3298774770685133,7.008276892961327,1.1639769822797874,3.7026556643660893,2.5242058902059776,20.768492688522183,14.70223795319395,0.356462960961285,0.7456272922058076,0.8683242809868211,0.9281312627053234,0.9407092641178258,0.9407092641178258,2.049408908287838,461.1554918594934,0.0,2.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,3.125796898558239,1.1296629035049643,0.5003153227202244,0.19354838709677225,0.12903225806451424,0.12903225806451424,73.00319414517975,1363.693104544146,99.1736671362265,43.99010014658537,99.23735690175342,,9.0,256.0,42.93385036427958,20.11411936859394,5.693927994848461,0.0,10.894419722555895,0.0,0.0,0.0,4.9839785209472085,15.57705782580294,7.699999999999999,18.75,6.0,0.5,12.75,0.0,0.07222222222222226,-6.75,0.28089330024813874,0.025415444770283457,-0.2554778554778553,0.18055555555555525,0.29552173913043467,0.0,0.7193548387096775,1.022222222222222,0.4384615384615388,0.6939393939393941,0.8416666666666667,14.035105170371523,0.445780649585771,0.617780649585771,15.320685471951041,4.028006078834171,4.440426833953154,29.355790642322564,8.468432912787325,0.4184782608695653,0.2683982683982684,0.0,0.5064935064935066,0.5555555555555556,0.416051129047014,-1.3048672831589299,-0.14485263479890387,-0.042092493005126776,-0.14498525368432558,0.5839488709529859,1.8314474437059955,0.08323375188156655,0.05907894979696762,0.08324761107754527,2.1150452387080834,0.823990281740371,1.0901783778264116,1.5287452262282242,0.9132768854748607,0.703025095907928,1.6280861992881346,0.8202396740404758,1.2044535198589459,1.046397703718871,1.067896512313818,1.133857832684097,0.9243421807362394,0.8445276588999844,0.9386550261508662,0.8982379316476178,1.334962756052142,0.869920431940892,1.322365831654014,0.8457840517452215,1.2218942312161445,0.9170407165052826,0.836997347344887,0.9821684979475583,1.018557500955293,0.9154974302855022,0.9171365436524505,0.8648206389461351,1.2455039412259896,0.9503205689661207,1.1645048219340528,0.9175850282893941,1.153158645183876,0.9118066036961979,0.8951667262610609,0.9450960145733321,1.0601341064291745,1.03864779638111,0.9971369297414019,0.9110763331171052,1.0510695383710678,1.0679852604657418,0.9353868429178654,1.0395148311440547,1.0006142672452125,1.0031994713119496,0.8824385473342697,0.9919328543608619,1.0340435319312515,1.0879385556864938,1.0707439101465066,1.1025542388975107,0.9600437211561821,1.0671726157381662,0.8814767490890307,1.0868508388527482,0.9211125719207529,1.0767308284612316,1.0616816524147108,1.050924589871997,0.9956188398348313,0.9624324943957613,0.8958569633023956,0.9730504434423103,0.9393705107741425,0.9698118377785893,0.927811340537041,0.9650597066037324,1.0068403322328603,0.901279149275303,0.9688792564658953,0.8878841986175986,1.0148805851784377,1.0682828517400393,1.0250574511530341,1.0083538298659844,1.0421268026503836,1.127029679414738,0.921898373154362,1.068424648721814,0.9628400843324473,1.033236004964869,1.0496953983371227,1.0127322778105332,1.0273986382887559,1.2842962434617218,1.1781114058266269,1.1513941528601628,0.8442737430167602,1.2652387041773225,0.8476357463888828,1.2839822395721523,0.9472369364832558,1.1991571140212365,1.378336528535614,1.133019487001967,1.1361475161140382,4.0,0.0,3.1111111111111125,2.3611111111111107,1.23,0.6044444444444443,0.37074829931972786,0.2474489795918367,0.0493827160493827,0.0,3636.7768778841155,4039.651512202272,1803.2619430936043,1643.2817061309174,11.072579073509983,0.4712129847828703,5.855036039036995,0.8911205669250059,0.0,0.5555555555555556,1.8283994118286357,3.8245334068819106,4.4538809876666505,4.760647923290103,4.825164052322361,4.825164052322361,0.21052631578947367,0.0,0.11111111111111115,0.08141762452107279,0.0492,0.03181286549707602,0.024716553287981856,0.022495361781076063,0.009876543209876541,0.0,0.5411563751976681,14.409972299168976,5.551020408163265,2.52465483234714,101.04589757625094,1.0,3.8186233700691554,67.05633286664093,,53.0477674817886,51.62502168935514,52.89723272801951,53.06737564293878,85.30191380199344,52.55469092599601,53.12238086843699,73.30296919382728,-0.08284296243461718,-0.3144452852381149,-0.569561307220048,0.3814158519553071,0.023257672634271007,-0.21008921071924697,-0.0740410215939312,0.06968362568650983,-0.29294497867892594,-0.2715921938750429,-0.3258256286054833,0.10325638304657732,-0.044574769729310806,-0.11186970473913035,-0.022974474660826492,-0.03545934202358796,-0.020452464399608503,-0.015121158465036689,-0.04215678244263495,-0.03279546592807876,-0.10697021171624299,-0.09855348064642003,-0.13322976398140915,-0.010574204774806913,0.020450237429894706,0.08221487574837451,0.060604367659995224,-0.18686385551389006,0.02679874808768057,-0.13138312031049862,0.01728125731435594,-0.12280658565424596,0.0790889152453715,0.030411546991919624,0.07800687556150639,-0.095955386570346,-0.06836880896964236,5.409249089393975e-05,0.06918952031218935,-0.11527859453102035,-0.08110669897249516,0.030917607854415812,-0.07029448022075138,-0.05556588293732196,-0.008200312502752558,0.03370895286192673,0.0075164277753963305,-0.09113299359955743,-0.09391862556596167,-0.0994404936292434,-0.12007071882281971,-0.03681888106226218,-0.09857667074391187,0.02472154244064902,-0.09287487621932639,0.006599563606220892,-0.10089734157583716,-0.08160221287052649,-0.08781336296008367,-0.029194307178551357,0.043309727600027145,0.0579331426607194,0.019063819256926594,-0.09000897845171586,0.0153528802825478,-0.04781280123847801,0.041405228218025183,-0.0715169817498042,0.06062438887310664,-0.009015620208659595,0.05410528309353995,-0.02445126651869157,-0.02873248625993877,0.023904724277464914,0.07331877135878899,-0.20456021826685725,-0.08900354884117442,-0.1004989181362224,-0.03123646179095512,-0.1063532148149032,0.021094223596989474,0.06848974200980319,0.02879291678632704,-0.09636459143882131,-0.21922650182279288,-0.13097810252514033,-0.10502889474871892,-0.047486033519553,-0.23821398124467166,-0.09085478737361724,-0.22127658861593552,-0.14901045538404878,-0.14162776579509376,-0.09545025042739237,-0.10627575744387013,-0.21661414382424718,0.19999999999999996,4.698051033117634,8.25020561791714,18.655418543593587,36.30060022728724,39.954871160693656,41.23125352212467,41.29628578018919,41.29628578018919,35.60610185770701,18.860589567864476,5.952678595660518,10.792833694182015,0.0,16.745512289842534,2623.8985925198276,2401.2020613796935,489.5888135647617,25.0,28.0,39.0,49.0,51.0,56.0,55.0,50.0,43.0,259.0804351360001,19.0,4.553876891600541,5.43372200355424,6.336825731146441,7.236339342754344,8.145259566516865,9.050523670522297,9.961331842220567,10.86900644788211,11.780407381121645,0.731182795698925,1.0491612903225804,1.1557391583848822,0.6961844116011934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6144544910179645,1.0285895003162557,1.0562695298733642,0.6156311628792602,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,4.0,1.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,30.896640010325058,24.639219238009446,11.92182916558333,5.879988336435371,5.907179729351506,9.361636831863176,4.9839785209472085,0.0,0.0,0.0,0.0,0.0,6.606881964512918,180.90214319350576,-567.3660558192198,-62.98300918536101,-18.30213083287806,-63.04067286880221,253.9053373386855,796.3270487249263,36.19065795086549,25.68796931370731,36.196684032951204,0.4444444444444444,0.4213754365289704,0.1570912431327568,94.8641994333184,0.09401300237466438,208.52675653451323,0.5786245634710294,5.0,0.15789473684210525,0.36906075118485876,0.7719785747818402,0.8990118091058942,0.9609324348550778,0.973954956570052,0.973954956570052,-2.7009,,1.9285714285714288,2.2712889716147044,1.7145538716427509,1.923094010038725,-8.048311040580366,2.0358782129742963,1.911757780649884,-3.3519407530784404,55.41910000000003,29.957509717234693,0.0,9.551078168738563,5.733667477162185,24.539800333979777,6.606881964512918,12.021248069613002,0.0,5.879988336435371,3.6635616461296463,0.0,5.017279836814924,3.044522437723423,6.558197802812269,5.476463551931511,8.17948018535889,7.6093665379542115,9.844215141071057,22.666666666666675,1.0513766061980345,3.573346088435374,0.0,0.0,0.0,0.0,-0.9397425359032496,0.9619444444444445,32.523999999999994,0.0,10.910030076845553,0.0,0.0,0.0,0.0,0.0,-0.9324135225077701,35.82791390993135,5.733667477162185,0.0,5.879988336435371,60.80314860521071,4.736862953800049,0.0,16.716366349655154,6.3273200747645415,0.0,0.0,0.0,21.581716759636993,19.048089221556896,22.195124572995873,134.11266573328186,,105.88124924929149,102.99767793741975,105.60395947030094,105.92107417365102,171.70660765345735,104.88317316166155,106.03234420569065,146.9783762491077,22.195124572995873,134.11266573328186,,104.16696353500573,100.97875440709555,104.07991158439627,104.21165727583886,178.65213864456717,103.07350363901779,104.33300395622413,149.95787914073298,4.752547882345948,98.327169534214,,77.05325071346054,74.8289758006343,76.51342303960472,77.08295146768842,124.52312172947188,76.2672429498324,77.17147648165218,108.46904169718721,1.2330624762775484,7.450703651848992,,5.882291624960638,5.722093218745542,5.866886637238941,5.88450412075839,9.539255980747631,5.826842953425642,5.890685789205036,8.165465347172649,2.4864885748406436,67.05633286664093,,53.0477674817886,51.62502168935514,52.89723272801951,53.06737564293878,85.30191380199344,52.55469092599601,53.12238086843699,73.30296919382728,31.88627450980393,0.0,0.0,0.0,0.0,4.9745486898463085,37.88783436213992,32.74435542607429,-0.49319216112370845,0.0,5.155913643235071,0.0,-4.816312358276646,0.0,0.0,0.0,0.0,19.084566049257067,183.21719191531392,56.68038176668771,118.56053561333923,138.07031061766617,147.5800856219932,149.5800856219932,149.5800856219932,433.0,110.36729287731906,251.59028861687733,67.39308713979592,151.06,151.06,0.8,7.090180997017788,5.247927513443585,3.7963152534490803,4.174391605665009,,4.168021917981523,4.166812647707303,4.164186263205405,4.1680273852616425,4.164022766071015,4.167464278633674,4.168096799553516,4.170059723594651,0.21090640296939334,0.23191064475916714,,0.23155677322119572,0.2314895915392946,0.23134368128918917,0.23155707695898015,0.23133459811505638,0.23152579325742634,0.23156093330852867,0.2316699846441473,1.92181759105525,2.0167552893922718,,2.015228227972161,2.0149380553782903,2.014307546452052,2.015229539691879,2.014268282996047,2.0150944290945607,2.0152461935445176,2.0157170228152195,168.20999999999972,94.27656930017532,89.12622418707309,,89.43683834861649,89.50176011385389,89.8111464085259,89.43706607381068,90.52237073235109,89.47455680938357,89.43205554312175,89.58543145268519,5.237587183343074,4.951456899281839,,4.968713241589805,4.972320006325216,4.989508133806995,4.968725892989482,5.029020596241727,4.97080871163242,4.968447530173431,4.9769684140380654,5.134019353892355,5.07784027916158,,5.081319324272391,5.082044956066134,5.085495757323972,5.081321870481632,5.093383675474202,5.081740968307893,5.081265845935361,5.082979376268801,6.117858087679516,14.483376165280927,37.88783436213992,4.606713750314941,-1.504321118879652,0.0,-3.7649357520786113,-0.49319216112370845,0.0,206.429674725851,78.65760510484195,-246.69500527024158,-27.385483540222687,-7.957903395814245,-27.41055614113796,110.39994002190998,346.2489577357208,15.735968802418144,11.16932121728132,15.738588987987312,582.0,29.0,1.4855985596534889,0.568578563761097,0.0,0.0,0.6346767354150744,0.12137227869327914,0.0,0.0,0.0,0.0,0.0,0.0,0.17479246499677625,0.07422843462213273,0.4653874729579329,0.13694344478376302,0.7519510612758128,0.15934363156491477,13.4472292782632,9.17098655025178,8.468432912787325,5.15049469908422,7.7943115120434845,3.9171607832294675,6.937827036303165,2.792315856098572,5.473889221581758,1.8245119904712093,3.468207876697666,0.9934031804831607,2.463767148045519,0.5465374398734507,1.5757868078332862,0.2725468917077927,4.11152384333423,1.1818929426777838,6.408329447869488,1.4634284781549427,8.639128009547559,1.573212183864881,63.66586411062136,31.58528712339702,24.637924359097234,22.306318583062456,22.115725272714915,22.115725272714915,94.0,114.0,31.810308999999982,17.925691,0.3225806451612903,55.09,7.888888888888889,4.027777777777779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,5.0,5.0,31.0,0.0,0.0,32.0,5.0,1.0,3.0,29.0,6.0,19.0,26.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,8.0,5.0,2.0,18.0,9.0,0.0,3.0,6.0,0.0,2.0,3.0,0.0,0.0,0.0,1.0,1.0,3.1570004211501135,4.765906277173684,3.6951100038645723,4.210274029229161,4.67107496087581,4.826311734631628,5.106702762842489,5.194691456702419,5.2179881595041415,5.198497031265826 +6913185,O=C(O)c1[nH]c2cc(Cl)cc(Cl)c2c1/C=C1\CCN(c2ccccc2)C1=O,1,39.073170731707314,6.448234146341463,3.951219512195122,9.249021379102679,157.07041680001916,160.3221565121951,1.8501705528752683,6.628419512195122,5.515841019178367,8.03606063414634,269.49397685810334,31.022727272727273,6.4597500000000005,4.681818181818182,9.005050505050503,143.78508013705107,121.13808581818188,2.065749818318183,6.6549545454545465,3.418233258511037,7.886633909090905,305.7588514673927,29.397260273972602,6.4162054794520555,4.410958904109589,8.015220700152206,147.3065817789328,114.16028882191783,1.9218753720506583,6.599023287671233,3.633716669485315,7.876558794520543,278.2133629011671,25.242105263157896,6.297715789473687,3.6736842105263157,6.005847953216375,153.25690904539587,95.70537648421053,1.6884595913135991,6.475033684210529,3.231297379250595,7.8573804421052635,236.31663466192813,28.020833333333332,6.411719791666669,3.4270833333333335,5.622042181069958,154.90342547151292,108.29963817708331,1.6359116516749161,6.584399999999996,3.546490785195346,8.00008242708333,230.7759101549242,23.148936170212767,6.261829787234041,3.297872340425532,5.547281323877069,153.81213679877288,86.47919970212766,1.5785817775796813,6.432031914893615,3.3882212590841423,7.8631679148936175,220.11921004942505,25.516129032258064,6.439439784946239,3.086021505376344,5.716845878136201,156.81951346552353,97.56576324731186,1.4635400242170755,6.5813118279569895,3.823720076109562,8.018882021505377,210.37702812725382,24.77906976744186,6.553187209302326,2.744186046511628,4.7881136950904395,161.75489722185816,92.78385266279068,1.3647043103644068,6.7051279069767435,4.438295530672791,8.224256232558142,190.07777849425727,19.83582089552239,6.160597014925374,2.91044776119403,4.235489220563847,160.33659040151727,72.71428462686565,1.4272209606721937,6.307119402985077,2.9931515263190223,7.824206358208956,192.03386643602934,13.828673408685306,0.12484925639500294,0.023906904471365266,0.693634741225461,3.8172163835459485,1.4649872569832718,64.54824512076146,0.2600432786251767,0.12965068411659722,2.001768467448802,0.09906000118976796,48.23141369717669,-0.14297496079173647,-0.011780852847331137,-0.014860788992418718,0.18663133416256558,0.741500870293255,-0.02659613298277946,-0.5537017238656644,0.014930099830798925,-0.010929841544535189,-0.14814845724944792,-0.008772974582229193,2.57472222936989,0.4058738682943128,0.01864182278976147,0.0016976087741561409,0.003993056970329109,0.2898234996382704,-0.1379990064447629,1.8518326293220768,0.0004979491719599796,0.01550598143635963,0.3158379930455905,0.012389206294361632,-1.1665566825113856,-0.7621779016249731,0.004254723065844264,0.0026076595266182165,-0.09825605059644954,-0.1718495790007109,-0.038941458755916335,-3.5555085618397553,-0.01292156959353252,0.00044199881023200175,0.04753151558784907,-0.0011822337956730081,-2.3283869190071282,1.8176680547293287,-0.01906732041939321,-0.001616324797559959,-0.046022952607574864,-0.6289416420022378,-0.002414690187811134,8.42599480632188,0.01613633921841276,-0.011307086555621649,-0.2639666872819374,-0.006307752968223272,0.01627547650259863,-1.3159593453744605,-0.010962281823129598,-0.0013515198283574421,-0.04962851392914553,0.08906985425732707,-0.1662961648377021,-6.103720932385739,-0.02756672501317097,-0.0129734137481489,-0.09281211578768718,-0.013218320857645523,-3.5329135837837766,1.9213921564864744,0.010925645257239346,-0.001509522686598976,-0.09961428489186543,-0.01996332140959322,-0.22126420301972555,8.847764409791917,-0.02222346069847434,0.017684747302233038,-0.16540381668782,0.009417080897827073,-1.3940696632842355,-0.39560477567339464,0.021820823015093454,0.00520566836742874,0.06246281975014873,-0.23476363395385388,0.11855689787478092,-2.140311506751239,-0.01835330690917584,0.02180824951925073,0.2042946983922865,0.026237210381417495,-3.775092330611172,-0.7391211698793363,-0.025384676853685176,-0.0052492980817835004,0.026059470642030774,-0.026243515276636247,0.24843963891087542,-3.1089891651735395,0.05197476577940175,-0.0260629884485958,-0.2890567796988755,-0.020877691761300582,8.109975954231503,,,0.48994708994708996,1.3518518518518519,0.7037037037037037,0.037037037037037035,0.6481481481481481,0.05555555555555555,0.7893975760865399,0.017104298673775737,0.029845039414516477,1.061790256827372,0.27034195125964616,0.20937647459891498,1.851187832913912,0.47971842585856117,2.0504545762249258,1.5654597336926832,0.15959264491289316,0.19375406083429886,0.13164813678505075,0.48499484253224273,9.757027991902449,1602.0,264.3776,162.0,379.2098765432099,6439.887088800786,6573.208416999999,75.856992667886,271.7652,226.14948178631306,329.4784859999999,11049.253051182237,1365.0,284.22900000000004,206.0,396.2222222222222,6326.5435260302465,5330.075776000002,90.89299200600004,292.81800000000004,150.4022633744856,347.0118919999998,13453.389464565278,2146.0,468.38300000000004,322.0,585.1111111111111,10753.380469862095,8333.701084000002,140.29690215969805,481.7287,265.261316872428,574.9887919999996,20309.5754917852,2398.0,598.2830000000002,349.0,570.5555555555557,14559.406359312608,9092.010766000001,160.40366117479192,615.1282000000002,306.97325102880654,746.451142,22450.080292883173,2690.0,615.5251000000002,329.0,539.7160493827159,14870.728845265241,10396.765264999998,157.04751856079196,632.1023999999996,340.46311537875323,768.0079129999997,22154.487374872722,2176.0,588.6119999999999,310.0,521.4444444444445,14458.340859084652,8129.044771999999,148.38668709249004,604.6109999999999,318.4927983539094,739.137784,20691.205744645955,2373.0,598.8679000000002,287.0,531.6666666666667,14584.214752293688,9073.615982000003,136.10922225218803,612.062,355.6059670781893,745.756028,19565.063615834606,2131.0,563.5741,236.0,411.7777777777778,13910.921161079801,7979.411328999999,117.36457069133898,576.641,381.69341563786,707.2860360000002,16346.688950506124,1329.0,412.76000000000005,195.0,283.7777777777777,10742.551556901657,4871.857069999998,95.62380436503697,422.5770000000001,200.5411522633745,524.2218260000001,12866.269051213965,566.9756097560976,5.11881951219512,0.9801830833259759,28.4390243902439,156.50587172538388,60.06447753631414,2646.4780499512203,10.661774423632243,5.315678048780486,82.07250716540088,4.061460048780487,1977.4879615842442,-6.290898274836405,-0.5183575252825701,-0.6538747156664236,8.211778703152886,32.62603829290322,-1.1702298512422962,-24.36287585008923,0.6569243925551527,-0.48091302795954827,-6.518532118975709,-0.3860108816180845,113.28777809227518,29.628792385484836,1.3608530636525873,0.12392544051339828,0.29149315883402493,21.15711547359374,-10.07392747046769,135.1837819405116,0.03635028955307851,1.131936644854253,23.056173492328107,0.9044120594883991,-85.15863782333115,-72.40690065437245,0.40419869125520513,0.24772765502873056,-9.334324806662707,-16.325710005067535,-3.699438581812052,-337.77331337477676,-1.2275491113855894,0.04198988697204017,4.515493980845662,-0.11231221058893577,-221.19675730567718,174.49613325401555,-1.830462760261748,-0.15516718056575607,-4.418203450327187,-60.37839763221483,-0.23181025802986888,808.8955014069005,1.549088564967625,-1.0854803093396783,-25.34080197906599,-0.6055442849494341,1.5624457442494686,-123.70017846519929,-1.0304544913741822,-0.12704286386559957,-4.66508030933968,8.372566300188744,-15.631839494743996,-573.7497676442595,-2.5912721512380714,-1.2195008923259967,-8.724338884042595,-1.2425221606186792,-332.093876875675,178.68947055324213,1.0160850089232591,-0.14038560985370477,-9.264128494943485,-1.8565888910921693,-20.577570880834475,822.8420901106483,-2.066781844958114,1.6446814991076726,-15.382554951967261,0.8757885234979178,-129.6484786854339,-34.02201070791194,1.876590779298037,0.4476874795988717,5.371802498512791,-20.189672520031433,10.19589321723116,-184.06678958060655,-1.578384394189122,1.8755094586555627,17.56934406173664,2.2564000928019046,-324.6579404325608,-49.52111838191553,-1.7007733491969068,-0.35170297147949453,1.745984533016062,-1.7583155235346286,16.645455807028654,-208.30227406662715,3.4823093072199174,-1.7462202260559188,-19.36680423982466,-1.398805348007139,543.3683889335107,0.7084825020051078,0.5745083824397449,0.43174658327270515,0.3008492556481144,0.2771116388777069,0.16101253918378042,0.1684618130487523,0.08351733591198113,0.1076604628889059,0.04656072876717952,0.06669096142179108,0.023621351523827647,0.04326218593433069,0.013153281201609864,0.02784548968890069,0.006846150050254472,17.002126269690514,5.67206904138159,3.555200045297502,2.1681097444634125,0.4786940240454113,-0.39544009835820193,3.300344745233462,0.9727016309704237,6.023289841470478,0.7730851327987479,14.548183205436798,10.931790716747114,35.45152803565006,11.683487882718993,2.2127968849374406,0.7414510833608974,3.5013028758169478,2.2191384198272726,7.0093740869169965,1.292773957576673,3.7142097989033367,2.4153729072194823,22.457061939151796,14.700682565710668,0.3016024453609828,0.639561334182795,0.7836594233932573,0.8938520798483166,0.9140041446563302,0.9140041446563302,1.447203053494951,1103.3623573862876,0.0,2.0,1.0,0.0,13.0,1.0,3.0,0.0,0.0,3.6218638611882237,1.6769484756625235,0.8476801829795972,0.21353384151618382,0.09756097560975885,0.09756097560975885,-39.34941553775235,1281.3202626950003,72.69585149165461,31.2517137242683,66.62574597833316,,13.0,591.0,5.969305287951849,14.69560176298435,11.601107724199966,45.05032561016855,5.687386274683562,0.0,23.10866397460758,30.33183534230805,4.9839785209472085,23.20187978046503,13.22857142857143,36.5,19.0,1.0,17.5,0.0,0.010052910052910017,1.5,0.22847386759581856,0.1045540680970718,-0.12391979949874676,0.039007480386790694,0.14798533007334924,0.0,0.6724738675958187,0.8656084656084652,0.4440000000000002,0.5679197994987469,0.8266009852216745,21.313734554336577,0.4618160641919449,0.8058160641919448,28.668336934339045,7.2992326840104464,5.6531648141707045,49.98207148867562,12.952397498181151,0.5660146699266507,0.183585313174946,0.0,0.408207343412527,0.1,0.5332324761891128,-1.1540608220523678,-0.0759750962422221,-0.02814782492810653,-0.07212880137827299,0.46676752381088726,1.0102124988454313,0.04681519788175958,0.02463932924013247,0.040408499953817255,-5.631885196742919,0.5162960587549764,0.7431756109233193,1.5850062343807207,0.7192421643536566,0.5279076755596508,1.0789506044989687,0.5174805718002071,0.7114632139765147,0.6870071997206273,0.6363581011324436,0.7067133856653417,0.7171245737434574,0.5808275749900704,0.5343430204826866,0.7666407988267068,1.0789727202236894,0.7443329309316585,1.1555703519546214,0.5844622451216763,0.8100792396167288,0.5370105781934337,0.4128164596202764,0.5217164235297954,0.8514633008447904,0.913062575564783,0.7608209771568599,0.7648911097161311,1.1992416719328338,0.9694990483388767,1.051127383350076,0.914640113029261,0.967273811641837,0.8018623524878521,0.6724514165436276,0.7927132149430605,0.9841076058535878,0.7521634546445266,1.1943224055406574,1.0462290715135283,1.084190966266438,1.161308142666944,1.0016689209977763,0.7532272940837006,0.8739457780088211,1.0902379928739712,1.2407291440121861,1.0757891326901692,0.9279097143563372,1.0019568683516358,1.0248622937153102,1.0130304737294,1.0773329440531367,0.9529254561837774,1.060349870711176,1.0025883972216905,1.0716412610501616,1.0319853981597122,1.0503631016933193,1.0652548986823223,1.052882575682665,0.6986703227471669,1.102476133538444,1.2355288238047009,1.1342887179770929,1.0625817225899303,1.131466603316638,0.7020214433534985,1.027506955538874,0.9758068907140101,1.3944683950350834,1.0147351413186059,0.9854323334811921,1.1710441806442318,1.2246146558624524,0.9950422281682629,0.8586301807012645,1.2013723076141096,0.8842515385324945,1.1720523937636833,1.1037910115641016,1.1750672280087484,1.4438594850219975,1.115283309511136,1.0683048842813478,1.0777267409832023,1.2370389480214667,1.1648365130754832,0.965669081692737,1.0835015236196368,0.7941835565585409,1.0744552477991025,0.8312935894234589,1.2389540029659702,1.1714736558794254,1.2066759760762078,0.9027408935842554,5.5,0.10743801652892562,3.333333333333335,2.923611111111111,1.8155555555555556,1.1741666666666664,0.797687074829932,0.44366496598639454,0.3313255857898715,0.1784490740740741,6046.523746915817,6479.112680535038,2671.271755627522,2520.543333169056,14.763816061374339,0.48475606701995494,7.606966653256473,0.9408282873244993,1.0,0.1,1.73568814342986,3.6806035289555603,4.5098718216384865,5.1440181631019,5.259991029008325,5.259991029008325,0.18333333333333332,0.0063198833252309196,0.0757575757575758,0.06496913580246914,0.04126262626262626,0.029354166666666664,0.0199421768707483,0.014311773096335306,0.014405460251733544,0.007435378086419753,0.45709150945313903,20.28,8.393595041322314,4.024724536414943,164.35718485522688,1.0,4.244845638960452,138.25651646417086,,102.6132044116498,103.68346770951322,103.11722474201792,102.5676020217558,125.8939588372469,104.04473214340291,104.51634294584063,118.81090381394672,-0.010339022158259872,-0.09436061685508496,-0.6216107572696573,0.2690628411040075,0.1942517258098029,-0.01815451489833891,-0.008578106543869004,0.05741390398449404,-0.08430222809087365,-0.0740087875588624,-0.08856222972805057,0.05338268219827457,0.02935016659221973,0.1493146481448135,0.07100914199031784,0.005756714208510491,0.07592535253897319,-0.09419809338746943,0.02868912432642492,0.001914870380778877,0.11959814591039732,0.1577794825832766,0.1250676978150625,-0.024186657472569005,-0.055115764115614724,0.03407888191486705,0.10907558231729945,-0.14165387740362922,-0.04501960636590208,-0.02658143172938261,-0.055082962444414345,-0.049690073367201,0.0034091513920165985,0.023744761874697057,-0.011934522324588087,-0.04827531976620093,0.13144196851071158,-0.1527227391652801,-0.06760912101756747,-0.06635041452258435,-0.16476447201507385,-0.0016482670250548852,0.13053793779455858,0.06205251411889591,-0.08721193129573446,-0.13186674262001719,-0.06367608411531907,0.0003374455620311072,-0.0951616475769796,-0.08780414188809187,-0.05653261508516247,-0.07154848363198425,0.023333718947990814,-0.11351372788057021,-0.09456060224358481,-0.10600821970447974,-0.10006436785541117,-0.04636506034385367,-0.13343751967379203,-0.07324922313008175,0.13894262303423227,0.08751069547961395,-0.06314170403813768,-0.14361201792729486,-0.005229811308482486,-0.15103489942660442,0.13707211393956392,-0.08546062338533647,0.13640303884805438,-0.0826288451324356,0.09506441333255078,-0.028903769481793976,-0.028607572395550906,0.17477735667127953,0.21774748686781603,0.0900514579759863,-0.06150126436787782,0.0809269140804101,-0.03315832216270157,-0.07057789382678135,0.16820774736242944,0.10205710686044246,0.26486180159795486,-0.07827040597054184,-0.05344845076861242,-0.20332261149695718,-0.21957247070907485,0.037569442666598396,-0.006875039987190276,0.16958484637092805,-0.048165355376540764,0.19986967574854173,-0.20102468896467124,-0.14440070587547535,-0.21075804068794082,0.16814717489208147,10.947829494942553,22.64529120275083,14.74338534390902,21.53112145219437,39.53983976859795,48.6212544027443,52.21676726094685,52.33366790978052,52.33366790978052,55.362273558073,42.26741280970245,4.309001412648115,5.231359642526069,3.5544996931963704,13.094860748370554,7552.633483091513,6251.560310044194,1669.7060810506855,161.0,44.0,61.0,85.0,104.0,122.0,135.0,151.0,163.0,400.0381476680004,30.0,5.003946305945459,5.883322388488279,6.794586580876499,7.69484807238461,8.613775289262481,9.522153924002891,10.444269957591922,11.356891345917656,12.280553762342482,0.8373983739837398,1.0058536585365854,1.1078026816856892,0.814787664153388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7550913100628013,0.9997130559540889,1.0259534933295436,0.7228007526075668,7.0,0.0,1.0,0.0,0.0,2.0,5.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,2.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,14.990415646638393,5.693927994848461,0.0,0.0,5.907179729351506,4.794537184071822,4.794537184071822,0.0,0.0,41.40098098584986,36.76231000360633,39.29425694818478,5.022633313741326,315.6909849929271,-683.2415764681396,-44.97973030272313,-16.664428694344867,-42.70259852925872,276.34156945517475,598.0786862268608,27.716121188931485,14.587285029923434,23.923147449074435,0.46153846153846156,0.7701749926376916,0.22018966598283027,123.17485662924672,0.16285543120942741,59.18345610330739,0.22982500736230843,7.0,0.1,0.32397037713002835,0.6869935234941195,0.8417784498873895,0.9601433935998899,0.9817900086596147,0.9817900086596147,4.9932000000000025,,2.329831932773109,1.461693909732031,1.233223553741078,2.3551666288161686,-3.8153565211242113,1.4846071611173952,1.4455787322047255,-1.6690554311857158,106.66700000000002,14.69560176298435,0.0,4.9839785209472085,0.0,6.4208216229260096,11.444666136763054,69.34032012332865,0.0,0.0,4.110873864173311,0.0,5.4680601411351315,3.044522437723423,7.01301578963963,5.476463551931511,8.646992628951082,7.635786861395585,10.330094260397669,34.333333333333336,12.538541968403427,0.0,2.839061290991756,0.0,0.0,1.05466591896426,1.9108368855583224,0.0,41.24,0.0,24.531190572711587,0.0,0.0,0.0,1.618397581254724,0.0,-0.7353286920488682,45.419909949113254,4.899909730850478,5.687386274683562,0.0,28.511747339003843,4.794537184071822,0.0,22.472738293543287,48.03767400930054,10.045266627482652,16.978945038914937,0.0,33.40629423028891,30.95874371257485,34.61972632331305,276.5130329283418,,205.05382868013123,207.25866179608335,206.14309959116616,204.9607472561919,253.2010126823176,207.97949338598232,208.92560598559209,238.23997630611035,34.61972632331305,276.5130329283419,,202.89657689052652,205.9052415092945,205.00122593029488,202.7800374146954,255.60327419561804,206.6048571256885,207.5871071594766,239.2908630590791,4.889382796295124,203.79676274219474,,154.77749380567096,155.358592007523,154.33473238467352,154.7358484210332,187.19589596858154,156.00898104347112,156.73346535871946,177.16359309468768,1.2822120860486317,10.241223441790437,,7.594586247412268,7.676246733188272,7.6349296144876355,7.591138787266367,9.377815284530282,7.702944199480827,7.737985406873781,8.823702826152235,2.5248534535806,138.25651646417086,,102.6132044116498,103.68346770951322,103.11722474201792,102.5676020217558,125.8939588372469,104.04473214340291,104.51634294584063,118.81090381394672,40.98823529411764,0.0,0.0,12.327387789560095,0.0,0.0,9.564787255977281,42.06409322651129,1.059195676212872,0.0,0.0,0.0,0.0,1.680152641303435,0.0,0.0,0.0,29.63483085691024,455.9686682633406,71.16321388062427,150.90474468717798,184.90474468717795,210.9047446871779,215.65963218934132,215.65963218934132,1083.0,134.5943476268123,136.06388618476126,78.72580953534734,73.4,73.4,0.8571428571428571,9.165552189186048,5.906890595608519,4.32932621605723,5.117943838717236,,5.126304921509962,5.122049067328217,5.121948766809986,5.126369926189595,5.109544678633026,5.122716671709417,5.122738222266011,5.1152579793818616,0.16034541540952704,0.18955347550804577,,0.1898631452411097,0.1897055210121562,0.18970180617814764,0.18986555282183684,0.18924239550492689,0.18973024710034878,0.18973104526911153,0.18945399923636524,2.4586636946155833,2.6260045374006933,,2.627636884456094,2.626806340462196,2.6267867581624222,2.6276495649869016,2.6243620692701914,2.62693667128657,2.6269408781386456,2.62547960699381,268.2700000000002,293.63952460649375,168.31413077594578,,166.59667811754764,167.52056756351791,167.67587310284,166.5735917845622,169.3585513802532,167.41201879149963,167.39485338019253,168.58551650279932,10.875537948388658,6.233856695405399,,6.170247337686949,6.2044654653154785,6.210217522327407,6.169392288317119,6.272538940009378,6.200445140425912,6.199809384451576,6.243908018622197,6.67560468128443,6.11908383251219,,6.108827563273813,6.114357908161143,6.1152845620965275,6.108688977480854,6.125269846306295,6.113709725331278,6.113607186149744,6.120694910396929,0.0,29.050404505006775,10.835598870718336,2.230126123014081,-1.270763625281421,12.538541968403427,2.1369182081268723,0.5406750493407239,0.0,324.7720762662265,186.8993402616,-404.5012558215807,-26.629464629507865,-9.865884288331237,-25.281328488848793,163.60320526474464,354.0820523678531,16.40884602687627,8.636147618728126,14.163282094714129,1804.0,45.0,2.0695202196285116,0.9689249277667105,0.0,0.0,0.6139560626343088,0.16757697302689925,0.0,0.0,0.0,0.0,0.0,0.0,0.17479246499677625,0.08715169943749473,0.5792725637724057,0.20329022427918858,0.9482078970767731,0.2840205701918417,19.12902755413791,15.511726325873111,12.952397498181154,9.02547766944343,12.192912110619105,7.084551724086338,10.27617059597389,5.094557490630849,9.151139345557002,3.957661945210259,6.935859987866273,2.4566205584780754,5.2779866839883445,1.6047003065964034,3.759141108001593,0.9242302567843538,4.92961615426967,1.9178174005428132,8.507108843299868,2.976394811792592,12.775056539663206,3.7033300568126677,84.86066946974391,54.825596787465315,35.28169508567643,27.682111475390627,27.24599807243409,27.24599807243409,148.0,179.0,51.701102,19.080897999999998,0.5121951219512195,198.07,8.972222222222221,5.805555555555554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,15.0,16.0,41.0,0.0,0.0,44.0,16.0,3.0,10.0,34.0,19.0,30.0,25.0,0.0,0.0,0.0,20.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,2.0,2.0,2.0,27.0,7.0,0.0,2.0,3.0,0.0,4.0,3.0,0.0,0.0,2.0,1.0,3.0,3.7376696182833684,7.89813110328399,4.391357962102766,5.031254581298992,5.676967820460645,6.239666497762968,6.65134978820708,7.040351664311043,7.4356338892739435,7.677946685875634 +3385,O=c1[nH]cc(F)c(=O)[nH]1,0,37.833333333333336,8.306650000000001,3.75,17.5,179.90558645814556,153.78100834581414,1.3755079762122497,8.210066666666668,15.819444444444443,9.452013333333332,240.31439552869494,34.166666666666664,7.4965,4.333333333333333,13.666666666666666,163.291619774625,134.5286290696,1.592929909166667,7.557666666666666,5.606481481481482,8.740918666666667,274.91917674351123,33.44444444444444,7.736883333333334,3.7222222222222223,12.944444444444445,167.8715106733778,131.16425953724445,1.4110118805555554,7.746327777777777,7.149691358024691,8.958119555555555,241.96065797397952,27.714285714285715,8.028190476190478,2.619047619047619,10.761904761904763,180.77924786606187,106.22794502224762,1.0397055430404283,7.957147619047619,9.56878306878307,9.32922342857143,184.3559663917105,23.0,8.169083333333333,1.75,9.333333333333334,188.82708385099576,84.19365539053332,0.7510375999040834,8.050683333333334,10.722222222222221,9.579282333333333,140.19353614741874,27.0,8.963333333333335,1.0,14.0,202.45549675346635,107.0328362656,0.4753649636163333,8.699733333333334,21.333333333333332,10.268543999999999,102.94284753202204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.583333333333333,0.3542499999999999,0.05356214005799267,0.6875,5.25,3.0961996550230744,36.278293213440776,0.19441376633974303,0.30459722222222224,6.3125,0.22256933333333326,32.55280374790393,-0.6666666666666666,-0.08929999999999992,-0.04242672321009839,-0.041666666666666664,0.25,-0.9467803227722201,-2.881137466311115,-0.015506834166666596,-0.07132222222222223,-0.5601851851851849,-0.05510400000000002,2.2190904472248003,0.1388888888888889,0.02888333333333334,0.01923770898030003,-0.2152777777777778,-0.08333333333333333,-0.5572183259278708,0.3901768025125678,-0.054977351624168946,0.025178703703703724,-0.1304012345679011,0.017623111111111086,-9.093263483808398,-1.2261904761904763,-0.02895238095238097,-0.007738922954149097,-0.06845238095238096,-1.1547619047619047,0.3781505755892682,-5.587041137686439,-0.019290800128985132,-0.027316269841269832,-0.8925264550264551,-0.024055238095238077,-4.851769813224583,-2.6666666666666665,-0.14991666666666661,-0.0012376716391925742,0.0,-1.75,-0.5532896578520435,-13.402008338302357,-0.002714076507597267,-0.13126666666666667,-2.125,-0.08358299999999996,-2.629561117876689,5.916666666666667,0.2777333333333331,0.0062795060784220395,0.5625,4.083333333333333,0.5041365388932528,29.344223940302005,0.14895582066547905,0.24130277777777764,5.145833333333333,0.17225733333333337,25.058244782222165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.41693121693121693,1.4166666666666667,0.7222222222222222,0.16666666666666666,0.6944444444444444,0.027777777777777776,0.36685694352756426,0.02398180662393696,0.03353736217949251,0.7901940906332252,0.30099963500317184,0.16548673196990177,1.1570510341607896,0.4664863669730736,1.9313352437050257,0.9124056667664635,0.4368480252609802,0.38811220679570646,0.1939693448818757,1.0189295769385625,10.834821296333333,454.0,99.67980000000001,45.0,210.0,2158.867037497747,1845.3721001497697,16.506095714546998,98.52080000000001,189.83333333333331,113.42415999999999,2883.7727463443393,410.0,89.958,52.0,164.0,1959.4994372955,1614.3435488352,19.115158910000005,90.692,67.27777777777779,104.891024,3299.0301209221348,602.0,139.2639,67.0,233.0,3021.6871921208003,2360.9566716704003,25.398213849999998,139.4339,128.69444444444443,161.246152,4355.2918435316315,582.0,168.592,55.0,226.0,3796.3642051872994,2230.7868454672002,21.833816403848996,167.1001,200.94444444444446,195.91369200000003,3871.4752942259206,276.0,98.029,21.0,112.0,2265.925006211949,1010.3238646863998,9.012451198849,96.60820000000001,128.66666666666666,114.951388,1682.3224337690249,81.0,26.890000000000004,3.0,42.0,607.366490260399,321.0985087968,1.4260948908489999,26.099200000000003,64.0,30.805631999999996,308.82854259606614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.0,4.250999999999999,0.642745680695912,8.25,63.0,37.15439586027689,435.3395185612893,2.332965196076916,3.6551666666666667,75.75,2.670831999999999,390.6336449748472,-8.0,-1.071599999999999,-0.5091206785211807,-0.5,3.0,-11.361363873266642,-34.57364959573338,-0.18608200999999916,-0.8558666666666668,-6.722222222222219,-0.6612480000000003,26.629085366697602,2.5,0.5199000000000001,0.34627876164540056,-3.875,-1.5,-10.029929866701675,7.023182445226221,-0.989592329235041,0.45321666666666705,-2.3472222222222197,0.31721599999999955,-163.67874270855117,-25.75,-0.6080000000000003,-0.16251738203713104,-1.4375,-24.25,7.941162087374631,-117.32786389141523,-0.40510680270868776,-0.5736416666666665,-18.743055555555557,-0.5051599999999996,-101.88716607771624,-32.0,-1.7989999999999993,-0.014852059670310891,0.0,-21.0,-6.639475894224522,-160.82410005962828,-0.0325689180911672,-1.5752,-25.5,-1.0029959999999996,-31.55473341452027,17.75,0.8331999999999993,0.018838518235266118,1.6875,12.25,1.5124096166797585,88.03267182090602,0.4468674619964371,0.7239083333333329,15.4375,0.5167720000000001,75.1747343466665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7614856834587245,0.4746457025696199,0.46648636697307366,0.2416200884620114,0.32273266779109205,0.11832175464386545,0.22002817073012115,0.05953570819878546,0.13975099840201366,0.030258608438809922,0.09511429717669644,0.015243470924681198,0.07206761933268581,0.007016495141892515,0.06804138174397717,0.0027839712699210873,9.004062067420277,5.769982288751923,4.107712769939091,2.2555993121968076,0.5199138869093632,-0.36535766301060274,3.1851112696151374,0.9771979003467556,7.004057749063039,2.955981796591213,17.424768954691768,11.039810830954462,19.00013912220192,11.790207015377034,1.919997670136153,0.5457931097469931,3.988668145577494,2.301274811394684,8.001917223376413,1.4758099134771083,4.009966995051846,2.495310528901731,20.797334320340262,13.304122451289066,0.5602209281214752,0.789620908296936,0.8749402499002079,0.9175999207018438,0.9175999207018438,0.9175999207018438,2.34622717382778,312.83394095677266,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.396240625180289,0.5000000000000004,0.16666666666666652,0.0,0.0,0.0,-42.70279553815699,340.2050378044987,54.81533974592557,28.350419817041562,59.902213776018094,,5.0,67.0,17.066231134301376,13.979489415818463,0.0,6.196843571613076,0.0,0.0,4.9839785209472085,4.9839785209472085,0.0,0.0,3.7523809523809524,12.75,6.5,1.5,6.25,0.0,0.08306878306878307,0.25,0.45396825396825374,0.08390022675736952,-0.3700680272108842,0.14237614237614238,0.3290464093795798,0.0,0.8873015873015874,1.083068783068783,0.4333333333333336,0.8034013605442178,0.9406926406926407,3.3017124917480785,0.21583625961543262,0.3018362596154326,7.111746815699027,2.7089967150285466,1.489380587729116,10.413459307447106,4.198377302757662,0.38495359062042017,0.25380710659898476,0.0,0.399746192893401,0.0,0.5813439678771699,-0.7534821226872396,-0.14144998479169496,-0.06279017689060332,-0.15069642453744794,0.4186560321228302,0.5426216718333225,0.06738398868830753,0.04521847265277688,0.07751738169047463,-1.5573625194695806,0.5943223443223443,0.804687132439426,1.7602747108736534,1.0555555555555556,0.4365079365079365,1.223515937428933,0.5849269718140575,1.0661817298075262,0.7678081254844742,0.6349773866275518,0.8190429049824177,0.7592523729036628,0.6312576312576312,0.6132243393711283,0.6657735227306213,1.2592592592592593,0.6402116402116401,1.0993335780228746,0.6371150054422283,1.226819761788548,0.5985606371498488,0.6935786171209712,0.6277025286502486,1.1094432396554084,1.1800104657247514,1.0896002061139676,1.0155358369028147,0.9841269841269842,1.2430083144368858,0.7971267804693923,1.1734206176768283,0.9857948232965184,1.1027299908153494,1.1499991268968164,1.1084749906360551,1.0804112209044885,1.6419413919413919,1.6476495726495726,0.8203345011900703,0.8333333333333334,1.6587301587301586,1.053930922845326,1.6598429442643627,0.8530637370432482,1.6752040490629698,1.5882838283828382,1.585482101956744,1.0856395587103211,1.0073260073260073,0.8841057006194619,0.574171157041671,0.0,1.0767195767195767,0.7143236274799711,0.984285979295152,0.06153579878998772,0.9174775432036839,0.8954895489548955,0.8563598658894808,0.40089428928018817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.5,0.0,1.333333333333334,0.5625,0.4133333333333334,0.0,0.0,0.0,0.0,0.0,1583.908364656638,1662.8240923389426,923.8958801247251,886.9095019258272,5.3671891075897005,0.3113710502621518,3.6960017982039144,0.45216084856828415,0.0,0.0,2.188721875540867,3.0849625007211556,3.4182958340544896,3.584962500721156,3.584962500721156,3.584962500721156,0.2777777777777778,0.0,0.11111111111111115,0.05625,0.10333333333333335,0.0,0.0,0.0,0.0,0.0,0.5484722222222224,7.111111111111111,2.7222222222222223,1.7041420118343196,48.359278684403755,1.0,3.0994475512921005,19.16594763022394,,10.911159173283052,10.48875616328677,10.519470505053215,10.845341717553444,21.417133712598105,10.737933619121288,10.968667790593104,16.2253078809808,-0.08791208791208792,-0.25208186309103725,-0.7921028391352967,-0.06060606060606061,0.047619047619047616,-0.30578787812866814,-0.07941766855899604,-0.07976201715864095,-0.234152569422279,-0.0887422075540887,-0.24758127804369595,0.0681689498824717,0.018315018315018316,0.08153375676311461,0.35916617520269034,-0.31313131313131315,-0.015873015873015872,-0.17996847361696325,0.0107551036157349,-0.2827852814090059,0.0826622893012935,-0.0206576213176873,0.0791803203396294,-0.2793388721361339,-0.16169544740973313,-0.08172866888463226,-0.1444849467510079,-0.09956709956709958,-0.21995464852607707,0.1221337826117838,-0.1540050714297797,-0.09922548434802692,-0.08967997029644922,-0.1413903295091414,-0.10807975085773162,-0.1490430701698617,-0.3516483516483517,-0.4231945424605975,-0.02310721038876575,0.0,-0.3333333333333333,-0.1786996058068872,-0.36942223989018963,-0.01396031031493083,-0.4309516209931148,-0.33663366336633666,-0.3755369113444799,-0.08077832982500029,0.7802197802197802,0.7840037638202771,0.11723777413716309,0.8181818181818182,0.7777777777777778,0.16282429916151378,0.8088645121107914,0.766179388784511,0.7922028179289585,0.8151815181518152,0.7739490915190477,0.76977224377595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.8898815748423097,1.6509636244473134,25.452652130552146,33.69139601406721,38.692396014067214,38.86039601406721,38.86039601406721,38.86039601406721,17.38201719334523,8.211651000898172,3.931632227348822,3.493009861161358,1.7457241039368814,9.170366192447062,505.14374082324713,354.4989897885242,150.64475103543526,0.0,12.0,13.0,13.0,14.0,7.0,1.0,0.0,0.0,130.017855556,9.0,3.7612001156935624,4.532599493153256,5.351858133476067,6.1463292576688975,6.963189985870238,7.764296006450518,8.579416534596369,9.382695764458287,10.196940441748334,0.9166666666666664,1.1280000000000001,1.1808716538043686,0.9024949574001612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6507674151696606,1.1026143790849676,1.1063364894391843,0.7004018081280957,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,5.817220841045895,5.559266895052007,9.77851570501903,4.794537184071822,4.39041504767482,0.0,0.0,0.0,6.196843571613076,0.0,152.59283045477747,-197.77614656906982,-37.12819731486475,-16.48134554742249,-39.555229313813975,109.89003491662048,142.42889123542886,17.687142431060824,11.869074269619071,20.34698446220412,0.4,0.47979952548051447,0.2400700499718668,29.406206850323873,0.2510193532052423,43.666982378101544,0.5202004745194857,3.0,0.0,0.6105285271744351,0.860528527174435,0.953509509058145,1.0,1.0,1.0,-0.7977000000000001,,1.119047619047619,1.3330079787535891,1.1504707361884394,1.1513204880792338,-5.199156832905494,1.1991067639298083,1.0910155866620466,-1.9832978779036163,27.641399999999994,4.39041504767482,0.0,9.967957041894417,0.0,0.0,0.0,32.8521490740581,0.0,0.0,2.9444389791664403,0.0,4.204692619390966,0.0,5.666426688112432,0.0,7.217443431696533,0.0,8.806723554725636,10.999999999999996,0.7094907407407407,0.0,3.6510185185185184,0.0,0.0,0.0,-0.9911111111111108,0.0,13.536000000000001,0.0,20.353981481481483,0.0,0.0,0.0,0.0,0.0,0.0,14.170459845652424,11.24901029325548,4.39041504767482,0.0,9.967957041894417,0.0,5.817220841045895,0.0,15.785917939756718,0.0,0.0,0.0,10.829939488801934,7.809208982035927,10.792280186226474,38.331895221142446,,21.573442017733843,20.680975074868552,20.78298629964058,21.434620657140446,45.09814099126991,21.209159710298465,21.694700492963975,33.12504005528656,10.792280186226474,38.331895221142446,,20.703071647363473,19.64419109139353,19.88817572704958,20.53914916641215,48.033424254841044,20.276521116130837,20.846132814449046,34.433912957110955,4.491653559875726,27.343729945223913,,15.471211261867307,14.826463116200603,14.807561453321657,15.378914130154442,32.08710580547513,15.204645140118709,15.555828106244006,23.613332033106108,1.1991422429140526,4.259099469015827,,2.397049113081538,2.297886119429839,2.3092206999600644,2.3816245174600494,5.0109045545855455,2.356573301144274,2.410522276995997,3.6805600061429513,2.245826779937863,19.165947610571223,,10.911059633205547,10.488599535073565,10.519323231619005,10.845234827245694,21.41713371096778,10.737813940030321,10.968574200555548,16.22530753960367,13.23137254901961,0.0,0.0,0.0,11.984814814814815,0.0,0.0,13.27603787327021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.404821697537148,125.93915425196248,26.264662506490403,37.019550008653866,41.01955000865387,43.01955000865387,43.01955000865387,43.01955000865387,78.0,80.67852573311553,136.54371111943547,37.839725273092014,65.72,65.72,0.6666666666666666,5.972377288874328,4.169925001442312,2.8627867413385526,2.9640605682098147,,2.965903051922797,2.9663807015657633,2.9626167865173874,2.9669878267686833,2.928916101823308,2.9661047092458084,2.9653657233247377,2.951060675302169,0.3180874157042836,0.3293400631344239,,0.32954478354697747,0.32959785572952927,0.32917964294637636,0.3296653140854093,0.325435122424812,0.32956718991620093,0.3294850803694153,0.32789563058912985,0.9464350198523434,0.9811996261859262,,0.981821041051278,0.9819820750354388,0.9807124116356567,0.98218672276704,0.969271907811429,0.9818890306194673,0.9816398560064283,0.9768041410208369,76.92000000000002,26.53469113969722,29.31780916336035,,29.123764381876796,29.107872540263003,29.277598728546305,29.09023250991327,30.29186016502929,29.11952825088104,29.140023195765803,29.619477158600986,2.948299015521913,3.2575343514844834,,3.235973820208533,3.2342080600292227,3.253066525394034,3.23224805665703,3.3657622405588103,3.235503138986782,3.237780355085089,3.291053017622332,3.1730924608217563,3.27283463699176,,3.2661939706714964,3.265648155961545,3.2714621594351487,3.265041949595385,3.305518519348752,3.2660485073636463,3.2667520811200963,3.283071641392037,11.984814814814815,24.005000000000003,0.0,-1.7081944444444441,-0.9911111111111108,0.0,0.7094907407407407,0.0,0.0,92.21609810443228,40.0530033729019,-51.91284965356301,-9.745515617280342,-4.326070804463586,-10.382569930712606,28.844251240677508,37.38514348314655,4.642571825536877,3.1154286235955455,5.340734783306649,84.0,10.0,0.7600796553858447,0.15661654517496387,0.0,0.0,0.16666666666666666,0.01113588507968435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.018042195912175804,0.2041241452319315,0.0215507003445945,6.8533711511285205,4.271811323126579,4.198377302757663,2.1745807961581027,3.872792013493105,1.4198610557263853,2.860366219491575,0.773964206584211,1.8167629792261777,0.393361909704529,1.3316001604737502,0.21340859294553677,0.5044733353288007,0.049115465993247606,0.06804138174397717,0.0027839712699210873,1.478278096177584,0.20607076287049012,1.558028605424962,0.1669701154577674,2.0759330939284544,0.15042800985869176,29.793234384915895,23.943860422556103,19.981454170753217,19.71729375396636,19.71729375396636,19.71729375396636,42.0,46.0,13.041379,6.998621,0.5,9.05,4.083333333333334,2.0277777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,12.0,0.0,0.0,12.0,6.0,2.0,3.0,9.0,8.0,9.0,4.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2.0,2.0,1.0,9.0,5.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,2.70805020110221,0.0,3.3843902633457743,3.844814255734696,4.30575285731789,4.706710915543052,4.576642102373553,2.7842393394597567,0.0,0.0 +688272,CCN1CCC[C@H]1CNC(=O)c1cc(S(N)(=O)=O)ccc1OC,0,26.565217391304348,6.2673543478260845,3.0217391304347827,6.879227053140097,166.04079297277886,104.94858778260874,1.449400278511456,6.316806521739127,5.494432889008171,7.834522456521736,201.3035328791406,29.595744680851062,6.394846808510639,3.6808510638297873,5.035460992907801,149.03456904801905,112.62433387234047,1.783526023404256,6.543459574468086,2.6952981350144474,7.889467744680847,250.07620687425901,21.32941176470588,6.374752941176474,3.211764705882353,5.08235294117647,159.14940256528462,78.77707284705883,1.4489525257198586,6.458240000000001,3.8166666666666664,7.89775402352941,200.53324314256696,17.272727272727273,6.155599090909093,2.827272727272727,3.4696969696969693,161.30063863464807,61.902569563636355,1.300414007162082,6.234269090909092,3.0040684624017944,7.733335454545453,174.4505572075202,16.05128205128205,6.173820512820514,2.4615384615384617,3.3190883190883196,161.49835799966723,56.4801931367521,1.2223670339400003,6.242604273504274,3.2104832752980887,7.756188034188033,161.15002799058297,14.387096774193548,5.93345,2.193548387096774,2.5779569892473115,166.3037111837557,50.895787064516114,1.0555056787416128,5.992304032258065,2.6977299880525667,7.572470500000001,136.18013458859787,16.125,6.279816346153845,2.2884615384615383,3.8653846153846154,169.6715670146908,58.123951932692314,1.0555550905549522,6.3026673076923085,4.351095085470084,7.896197000000001,140.31198364269034,17.2,6.3581375,2.675,2.525,160.7951809071286,59.531994824999984,1.2953281039561246,6.429626250000001,3.4204475308641973,7.971392625,172.06985150496598,15.034090909090908,6.234975,2.397727272727273,1.848484848484848,163.1173853726638,51.29535111363637,1.1933259463981474,6.294740909090908,3.0535037878787885,7.853163318181817,155.3890851512658,10.911153119092626,0.1524854914933837,0.02054347796178701,0.6394139886578448,4.101449275362318,1.4747317865625884,49.85798595085068,0.2776298448682047,0.14158152173913036,2.3303595912390023,0.0963289210775047,49.37655040456788,2.4857016450146783,-0.011728599726501249,-0.010624528212930468,0.21766279210071196,0.5910165484633572,-0.2560130864378251,10.730829927040192,-0.02397989859870961,-0.003986702127659547,-0.4658955398284931,0.002569662178739462,0.5994595682546312,0.3041921494495722,0.022214508506616243,0.0012093050655144222,-0.016907594795952396,0.7882352941176476,0.10072648503582347,1.6063152982542004,0.01456178177942763,0.019312647058823545,0.6999652722007378,0.012858530329144866,3.323226915579497,-0.30799106375665913,-0.011609621928166352,-0.0004299896235701826,-0.09435470012029559,-0.14141414141414133,0.045380586506257946,-1.2957556184395937,-0.002086581381251057,-0.009632272727272727,0.029239994256316112,-0.009476023844303143,0.4260362909138616,-0.7246053673274844,-0.002947104276735658,0.00026202536914077864,-0.024029373273229605,0.11396011396011406,-0.27015914909373,-3.5131758375098947,-0.031921290990858456,-0.003772435897435888,-0.07881513884242947,-0.0015243450834504732,-7.670119238221701,1.9307122385511308,0.00645349868894445,-0.004121908723059944,0.007675772912982488,0.38261648745519694,-0.2132885504984368,8.586122660650037,-0.019773085578879777,0.010668548387096747,-0.08381484404453209,0.0056176330950058135,1.2241146781911567,2.06710775047259,0.05980069161698414,0.00755161582247035,-0.004171513741457037,0.7136752136752139,0.33018202437265803,9.605536848480439,0.048735806658274,0.05289230769230769,0.8109952757788579,0.03874244493420092,8.265672143004497,-3.447022684310018,-0.03547530127599244,-0.0029219971514815985,-0.05544659735349715,-1.3638888888888887,-0.08083908380461777,-15.506820409002833,-0.03445484777298966,-0.035722499999999976,-0.4256183677792299,-0.024748758034026496,-7.002249464903542,-2.17795153806496,-0.04856894010998452,-0.0022559452950631363,-0.04331715071318097,-1.6047979797979794,-0.07959561882423298,-10.22519590836054,-0.012556796432831361,-0.04652727272727269,-0.6914948255940935,-0.027440156008334774,-7.974722430746314,,,0.47246376811594204,1.108695652173913,0.4782608695652174,0.021739130434782608,0.6304347826086957,-0.15217391304347827,0.9013510642707151,0.023977899633779543,0.03145616050334476,0.8636482598144172,0.20887898514022277,0.26341327011178445,1.7649993240851323,0.47229225525200724,1.9808166345552223,1.3254884037817907,0.25536568190434134,0.3072327192344955,0.0,0.6553282307734315,7.416107113391319,1222.0,288.29829999999987,139.0,316.44444444444446,7637.876476747828,4827.635038000002,66.67241281152697,290.57309999999984,252.74391289437585,360.38803299999984,9259.962512440467,1391.0,300.55780000000004,173.0,236.66666666666666,7004.624745256896,5293.343692000002,83.82572310000003,307.54260000000005,126.67901234567903,370.8049839999998,11753.581723090174,1813.0,541.8540000000003,273.0,432.0,13527.699218049192,6696.051192000001,123.16096468618798,548.9504000000001,324.41666666666663,671.3090919999999,17045.32566711819,1900.0,677.1159000000002,311.0,381.66666666666663,17743.070249811288,6809.282651999999,143.04554078782903,685.7696000000001,330.4475308641974,850.6668999999998,19189.561292827224,1878.0,722.3370000000001,288.0,388.33333333333337,18895.307885961065,6608.182596999995,143.01694297098004,730.3847000000001,375.6265432098764,907.4739999999998,18854.553274898208,1784.0,735.7478,272.0,319.66666666666663,20621.660186785706,6311.077595999998,130.88270416396,743.0457000000001,334.51851851851825,938.9863420000001,16886.336688986135,1677.0,653.1008999999999,238.0,402.0,17645.842969527843,6044.891001000001,109.77772941771502,655.4774000000001,452.51388888888874,821.2044880000001,14592.446298839795,1376.0,508.65099999999995,214.0,202.0,12863.614472570289,4762.5595859999985,103.62624831648998,514.3701000000001,273.6358024691358,637.71141,13765.588120397279,1323.0,548.6778,211.0,162.66666666666663,14354.329912794414,4513.990898000001,105.01268328303698,553.9372,268.70833333333337,691.078372,13674.239493311388,501.91304347826076,7.01433260869565,0.9449999862422024,29.41304347826086,188.66666666666666,67.83766218187907,2293.4673537391313,12.770972863937414,6.512749999999997,107.1965411969941,4.431130369565216,2271.3213186101225,116.82797731568988,-0.5512441871455587,-0.49935282600773195,10.230151228733462,27.777777777777786,-12.032615062577781,504.34900657088906,-1.1270552341393516,-0.1873749999999987,-21.897090371939175,0.12077412240075472,28.17459970796767,25.856332703213635,1.8882332230623806,0.10279093056872587,-1.4371455576559538,67.00000000000004,8.561751228044995,136.53680035160704,1.2377514512513486,1.6415750000000013,59.49704813706271,1.0929750779773135,282.47428782425726,-33.879017013232506,-1.2770584120982986,-0.04729885859272009,-10.379017013232515,-15.555555555555545,4.991864515688374,-142.53311802835532,-0.22952395193761627,-1.05955,3.2163993681947725,-1.0423626228733458,46.863992000524775,-84.77882797731567,-0.344811200378072,0.030656968189471098,-2.8114366729678637,13.333333333333345,-31.608620443966412,-411.04157298865766,-3.734791045930439,-0.4413749999999989,-9.221371244564248,-0.17834837476370535,-897.403950871939,239.40831758034022,0.8002338374291118,-0.511116681659433,0.9517958412098285,47.44444444444442,-26.447780261806166,1064.6792099206045,-2.451862611781092,1.3228999999999966,-10.39304066152198,0.6965865037807208,151.79022009570343,214.97920604914935,6.219271928166351,0.7853680455369164,-0.4338374291115319,74.22222222222224,34.338930534756436,998.9758322419657,5.068523892460496,5.5008,84.34350868100123,4.029214273156896,859.6299028724677,-275.7618147448014,-2.838024102079395,-0.2337597721185279,-4.435727788279772,-109.1111111111111,-6.467126704369421,-1240.5456327202266,-2.756387821839173,-2.857799999999998,-34.04946942233839,-1.9799006427221197,-560.1799571922834,-191.65973534971647,-4.274066729678638,-0.19852318596555601,-3.8119092627599254,-141.2222222222222,-7.004414456532502,-899.8172399357276,-1.1049980860891597,-4.094399999999997,-60.851544652280225,-2.4147337287334603,-701.7755739056756,0.7406595403044883,0.6185755165490378,0.4526134112831735,0.38090920183379323,0.29770968615293125,0.2089173221716788,0.18718568280121214,0.12044281604242159,0.1220552733393259,0.06999412065679161,0.078136684540764,0.03797103431541454,0.05237553073216342,0.021782553711597093,0.035478977384838885,0.012588980595179393,16.013355000083152,5.693526470870455,3.581189387802533,2.182995379231934,0.45526367656307337,-0.5281285238945105,4.042874572963793,0.9682735671718197,6.022684048362767,0.6420940580323073,14.5440531593991,10.319285898829953,32.066660110115805,11.705242339419655,2.9556403594335032,0.7517542191110855,3.5372820414660793,2.2361446772865987,7.014579085851502,0.30020931737238077,3.7686537944120615,2.4348914799551364,24.442066915622718,14.701018862115918,0.29862753240400064,0.6132335269364675,0.8057762056546651,0.8750959323732089,0.8750959323732089,0.8750959323732089,1.9026945317494885,675.2996041218233,0.0,1.0,4.0,0.0,5.0,3.0,1.0,0.0,0.0,3.8130472049044033,2.0110090936936884,0.908139945887334,0.5110820653114558,0.5110820653114558,0.5110820653114558,174.26382123998283,1319.2296578699818,57.52544755101144,28.678905605869165,58.455329071201106,,11.0,418.0,10.023291153407584,13.212334168400758,16.366114696566278,18.33610906834444,25.931156057677168,25.308898746662365,0.0,0.0,17.140435534547432,9.87583669140799,10.866666666666667,25.5,11.0,0.5,14.5,0.0,0.02753623188405795,-3.5,0.16123729180186003,0.03444816053511701,-0.12678913126674302,0.06889632107023391,0.18734410339256846,0.0,0.5985507246376813,0.897101449275362,0.4373134328358213,0.5641025641025643,0.828205128205128,20.731074478226446,0.5514916915769295,0.7234916915769294,19.863909975731595,4.804216658225124,6.058505212571043,40.59498445395804,10.862721870796166,0.5266558966074315,0.22085889570552145,0.07668711656441718,0.26687116564417174,0.5333333333333333,0.35026516734375523,-0.7940776285183192,-0.05794477772820225,-0.01726255714170259,-0.05293850856788795,0.6497348326562449,1.472998011746532,0.04091180881094342,0.0320216959075333,0.04751606489504943,-3.0158840446757873,0.8908468615915425,0.7741451689068696,1.5807650008363414,1.009105062037081,0.6481655514622962,1.5644689453876337,0.8849588166885161,1.429402322435719,0.7229493375106278,0.7759700995436593,0.6601836903947912,1.1198243137475836,0.9250489176959767,0.7830492155803531,1.1096967842662542,1.2869440459110477,0.8162544169611309,1.0990848682355738,0.9207396547664973,0.991794911619381,0.7832676627520228,0.4523112532060156,0.7812645199866125,0.9464301276195756,0.9267269892269894,0.9560719732434912,1.0146783409726043,1.2934892158838946,1.0206794089302924,1.033639138605997,0.9301133547260192,0.9831373666283123,0.9493120138469645,0.7980721601753271,0.9634840545132416,0.9945893574876687,0.9092135774828083,0.9623235835636965,0.9736238453550404,0.921882995053727,0.9180483827126938,1.1956243348041757,0.9241080069166654,1.0290789104945177,0.9673569300455025,0.973391343593557,0.9611209240504685,1.1404875668003838,0.6800191553215748,0.8082310790160036,1.1625597002978874,0.8575030398397827,0.8232645617234698,1.0587360768474645,0.6961697207393641,0.937512273540239,0.789886711054371,0.842636027513249,0.7625280294342822,0.9441734476855879,0.7504460359027668,0.8208210731400437,0.9538431589251798,0.9782747740064816,0.98540703995651,0.661458871265519,0.7531409015439605,0.6718363212066406,0.8258143050761376,0.8816447744754919,0.8272825218388817,0.7429426956597985,1.4905470374220375,1.4043268511088942,1.3768302026900356,1.2908813747228385,1.4559408127208482,1.1214381076747093,1.4669676840433614,1.2884727869235693,1.402184177190895,1.480990779624353,1.48372839189227,1.1409038159357126,1.1232591310716313,1.4323262183981678,1.0268435736076504,1.0518292682926833,1.4460026501766785,1.033978500834226,1.133059063323597,0.982891742006106,1.4281435715257835,1.514008432218772,1.4328988647561194,1.1232920259877317,6.0,0.12193245587184984,3.555555555555557,1.7569444444444446,1.3033333333333335,1.1005555555555553,0.5093877551020408,0.22222222222222224,0.24112654320987653,0.2321836419753087,4749.52226382041,5397.395742348491,2512.3462750966496,2273.3553975779864,13.79905305309976,0.458250590024616,7.475628849735816,0.8458718765294787,1.0,0.5333333333333333,1.7105147511526098,3.5125528623633246,4.615422010169679,5.012479890745557,5.012479890745557,5.012479890745557,0.25,0.01016103798932082,0.10457516339869286,0.05167483660130719,0.04204301075268817,0.04076131687242798,0.018866213151927436,0.009661835748792268,0.012056327160493827,0.012899091220850482,0.552698832896501,19.32638888888889,8.392733564013842,4.988662131519274,136.3954807683271,1.0,4.0438765237953245,112.3105241870172,,86.76964201702722,91.34934687662633,91.51811659590787,86.78453891341846,123.76223210856787,92.11466674772221,92.35930788073775,113.95222843650669,0.22781291930228087,-0.07691616829664186,-0.5171728094285295,0.3404098064191476,0.14409944114477613,-0.17359976150955486,0.21522790626999047,-0.08637363396609342,-0.028158350600336148,-0.19992431278847672,0.026675915706270117,0.012140572059873476,0.02787901023195144,0.1456827681706369,0.058865644257698455,-0.026442328594408926,0.19218457701101657,0.06830156232721074,0.032217813608389316,0.0524503472828735,0.13640655095096288,0.3003679238312664,0.1334856674954254,0.06730374820335894,-0.028227178227178223,-0.07613591178063055,-0.020930712139882436,-0.14756433514748377,-0.0344790662811864,0.030772094912278454,-0.025988928227404368,-0.007515695519844383,-0.06803340301017936,0.012547417302567384,-0.09837153513511157,0.008628312172946948,-0.06640960487114334,-0.01932711268378954,0.012754674239102693,-0.037580305872988815,0.027785328138685055,-0.1831920567220135,-0.07046365332472787,-0.11497788001146636,-0.026644973518414022,-0.03382102021453485,-0.015824376172800792,-0.15533930935588666,0.17694850557753786,0.04232205061439872,-0.20064317885837638,0.012004386906039135,0.09328811884950032,-0.1446287063463826,0.1722115824958136,-0.0712210374510218,0.0753526890801045,-0.035966485326828695,0.05831720144032296,0.024791417548640914,0.1894490644490645,0.39217299318983984,0.36759188665702736,-0.006523963841037024,0.17400561746851503,0.22389293251911943,0.19265793965182318,0.1755423905575053,0.37358199744288584,0.3480129327799016,0.40218912971141213,0.16740076160200593,-0.3159173596673596,-0.2326470599173804,-0.14223478404760942,-0.08671470805617147,-0.3325382803297997,-0.05481612625509575,-0.3110197917799817,-0.1241035443770317,-0.2523104679282944,-0.18264064025970245,-0.2569192902525509,-0.1418132576603763,-0.19960782460782467,-0.3185151559949683,-0.10981321172877483,-0.06774507827722909,-0.39127583253024945,-0.05397294582614254,-0.2050864212292971,-0.04522855400791753,-0.328625318867536,-0.2967330999875605,-0.2848589572207174,-0.16150829422884438,7.045056373782116,11.964821885753004,3.879176139868348,19.186378598969043,35.56643055029164,39.43121078981543,39.83144513343592,39.83144513343592,39.83144513343592,45.558782594770115,30.486233286981186,5.87341068379985,7.066352542393397,0.0,15.072549307788925,6174.203265196755,5672.682388976037,904.3848587436196,48.0,34.0,42.0,49.0,54.0,58.0,55.0,46.0,47.0,341.14092721600065,24.0,4.762173934797756,5.594711379601839,6.472346294500901,7.325807502595773,8.203851372183879,9.063347348235522,9.941120467342978,10.803303314316404,11.68093678364639,0.6594202898550725,0.989130434782609,1.1392529873132577,0.6179588999938461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6481936865399638,0.9745098039215684,1.013022894961842,0.5989382959141231,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,5.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,10.05365155780638,5.749511833283905,0.0,10.023291153407584,5.907179729351506,9.694446914922299,13.556770721936878,0.0,0.0,6.923737199690624,44.130257263062,12.586597235060536,17.568732508492303,203.82213485593783,-462.08019687867414,-33.718534988447935,-10.045221671275524,-30.805346458578274,378.08595609592066,857.1494609913076,23.806912562563504,18.63368393459364,27.64998261262283,0.45454545454545453,0.7589778822939348,0.21875008635203705,24.33717725731605,0.112323103008662,71.08697177412661,0.2410221177060652,6.0,0.25,0.30967603237923275,0.6359216915294195,0.8355879859568719,0.907472375728308,0.907472375728308,0.907472375728308,0.5567000000000012,,2.053571428571429,1.6752702362517065,1.281385004616356,2.0499215542742757,-5.459584580867579,1.5300642594859244,1.4861242843716291,-2.3963729217909213,86.96940000000005,17.949197122200808,0.0,10.216698334856808,5.138973737607942,30.70270475020838,26.744066759015258,23.762552697081826,0.0,5.749511833283905,3.8918202981106265,0.0,5.220355825078324,2.3978952727983707,6.734591659972948,4.59511985013459,8.329658067569396,6.555356891810665,9.967822928041022,30.333333333333336,3.99905218568909,0.0,0.0,0.0,0.0,0.0,0.36874175904929984,0.0,45.500000000000014,0.0,35.3195421715263,0.0,0.0,-3.870932951469794,0.0,0.0,-0.3654601284958423,52.40563741640986,15.192625295414322,0.0,5.749511833283905,52.010794032694136,10.023291153407584,0.0,30.12336912131146,23.094584680902603,0.0,0.0,0.0,28.42610939971692,29.816909580838335,28.50583232662462,224.62104837403444,,174.10312861705546,182.55301808053508,182.92480840880563,174.1339009553756,249.37260728029318,184.0962844294022,184.5893875628345,228.52959763521974,28.50583232662462,224.62104837403433,,172.40670004562685,181.02342351700094,181.75484818719937,172.4404874974968,252.98404879800324,182.69926923595847,183.2324914771039,230.30082979480446,4.80154410099137,166.49290644009835,,133.69838201575558,137.87680596654715,137.18477704884143,133.7220109144222,187.76661693743287,139.1962719039726,139.8836124195827,173.03199891564293,1.2393840142010704,9.766132538001498,,7.569701244219803,7.93708774263196,7.953252539513288,7.571039171972852,10.842287273056225,8.004186279539226,8.025625546210195,9.936069462400859,2.4022457941738837,112.3105241870172,,86.76964201702722,91.34934687662633,91.51811659590787,86.78453891341846,123.76223210856787,92.11466674772221,92.35930788073775,113.95222843650669,44.82745098039214,0.0,3.525069843109165,0.0,0.0,5.12008739628644,0.0,46.59905316824474,4.683061338796818,2.862334656084656,5.141353221844293,0.0,0.3160820971907279,2.317735077055514,0.0,0.0,0.0,27.55116161204966,441.65537056034793,78.68367855302004,161.57743166871293,212.30941246780523,230.57407497429563,230.57407497429563,230.57407497429563,480.0,120.84759839722146,140.2527203915105,70.69262079351594,110.11,101.73,0.8333333333333334,7.390007802043165,5.584962500721156,4.066177242654594,4.727514556287961,,4.725658232698533,4.723122919165049,4.721821566111118,4.725646840408967,4.702992348106987,4.723216035868106,4.723637927741572,4.714253514377223,0.17679031489802582,0.20554411114295482,,0.20546340142167532,0.2053531703984804,0.2052965898309182,0.2054629061047377,0.20447792817856464,0.2053572189507872,0.2053755620757205,0.20496754410335752,2.2356124285966397,2.386308723547568,,2.385915982685907,2.385379339164678,2.3851037731062026,2.385913571952262,2.381108098872874,2.385399054041204,2.385488373062197,2.383499705039325,253.06,185.8116000515882,124.66988190874324,,123.13471386881893,124.14206964075784,124.51592363444134,123.1357136582541,125.91443964858912,124.1329441126731,124.04509432080829,125.16006829446219,8.078765219634269,5.420429648206228,,5.3536832116877795,5.397481288728602,5.413735810193102,5.353726680793657,5.4745408542864835,5.397084526637961,5.393264970469926,5.441742099759225,6.057642380366996,5.6585784220607955,,5.6461881136814025,5.654335755609878,5.657342731339516,5.6461962331250986,5.668511748819405,5.654262244160209,5.653554286307947,5.6625025873928925,28.050876024511936,14.616181395397666,7.982422052371096,0.16673185941043123,-0.05187717834047123,4.315134282879818,2.1677325781348147,4.611310987243076,-2.4418453349417013,308.49769769258637,118.60574938775103,-268.8882052323282,-19.62108832482118,-5.845395765920177,-17.925880348821877,220.01127692748534,498.78220650586627,13.853435040739145,10.843091445779699,16.089748596963428,1251.0,34.0,2.382147994965315,1.1530367574431941,0.28867513459481287,0.05892556509887896,0.6806124618344674,0.22653719488443058,0.14433756729740643,0.019641855032959652,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.23470804841064383,0.153155706089815,0.322601386901468,0.19377997078798578,17.035169427003233,14.227236880627869,10.862721870796165,9.141820844011038,10.122129329199662,7.103188953837079,7.86179867765091,5.058598273781707,5.980708393626969,3.429711912182789,4.219380965201256,2.0504358530323854,3.0377807824654783,1.2633881152726314,1.9513437561661386,0.6923939327348666,4.3061129442470945,2.117240625359103,5.788064257342739,2.5054454302728266,7.509240370189292,2.6920266974972082,76.0658918253008,36.7250876286099,26.788553718030226,24.81959628764513,24.81959628764513,24.81959628764513,116.0,134.0,49.79423899999997,34.043761,0.30434782608695654,70.08,9.229166666666666,5.166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,46.0,0.0,1.0,47.0,6.0,3.0,6.0,41.0,9.0,24.0,38.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,5.0,2.0,1.0,23.0,8.0,0.0,3.0,4.0,0.0,2.0,6.0,1.0,0.0,0.0,0.0,1.0,3.4339872044851463,5.276199561294417,3.9982007016691985,4.3975308212098465,4.815228497753646,5.267535942208599,5.547128664610824,5.653913603891953,5.322705054604867,5.188432743643588 +54686904,CN(C)c1cc(NC(=O)CNC(C)(C)C)c(O)c2c1C[C@H]1C[C@H]3[C@H](N(C)C)C(=O)C(C(N)=O)=C(O)[C@@]3(O)C(=O)C1=C2O,0,22.71604938271605,6.359685185185187,3.3703703703703702,7.777777777777778,165.7856216793298,89.53099083950616,1.3507856208532223,6.397645679012347,6.158264746227709,7.882925530864196,202.9870773501249,24.142857142857142,6.490964285714287,4.083333333333333,7.214285714285714,150.02073906785358,90.89406934523808,1.702689937547619,6.612464285714286,3.4171626984126986,7.910108428571429,252.34695219204986,21.509933774834437,6.294039735099338,4.026490066225166,6.19205298013245,156.76421835343592,81.20684649006623,1.5189856636504966,6.392296026490066,3.1475349521707137,7.7686944105960265,222.64585442754574,20.748815165876778,6.440407109004739,3.4834123222748814,5.990521327014218,154.3760365540957,76.27004597156397,1.467525749173654,6.533730331753554,3.797919957872565,7.912247810426541,212.27481590869053,17.24652777777778,6.232301736111111,2.8680555555555554,4.802083333333333,161.51117130573573,63.080314347222206,1.2057039206537465,6.2936371527777775,3.932002314814815,7.791406638888889,170.60361448178574,17.620567375886523,6.451857801418439,2.8191489361702127,4.450354609929078,161.76299607391672,63.39033259574467,1.2099420201182838,6.502576950354609,4.189913317572892,7.9953588085106375,172.85088377682195,16.319148936170212,6.443936170212766,2.673758865248227,3.780141843971631,164.7457542042504,57.614756517730484,1.1547808410686382,6.485775531914894,4.171690307328604,7.999070950354611,163.39533728280585,14.597785977859779,6.32340184501845,2.4907749077490773,3.4649446494464944,164.73304423111222,50.53451105904058,1.1178919366868931,6.364791881918819,3.7140733907339074,7.913860265682657,153.94577713861287,15.020242914979757,6.1351574898785435,2.5465587044534415,3.562753036437247,163.9756708177232,53.61367823481781,1.1193217399873805,6.188019433198381,3.5810841205578043,7.720757991902834,153.0525728052846,7.8792866941015065,0.16204420057917995,0.031870259204746024,0.8340192043895746,4.348422496570644,1.4069864808421666,37.25309220149367,0.21429993364710595,0.1494973936899862,2.605892987180138,0.10337153360768173,47.53339227386312,-0.08916323731138498,-0.021212851372830736,-0.015607741991117786,0.41994904957867923,1.5607485792670972,-0.06948914478754936,-0.27524979540901606,0.015777906478407697,-0.017836370762296654,-0.3227445940780417,-0.014047849304330758,3.025292162924754,1.7820656074273935,0.005735621185189231,-0.0009250446153395232,0.06590721209313316,0.7545944276383324,0.29467504215841406,8.572622814285904,0.052302798728614916,0.0092033012654548,0.17288975067176782,0.0007760428782964915,13.93600386047205,-0.5415065759106475,0.00256541266755809,-0.0010378608737743801,0.04188039188916846,0.6082213510684635,-0.09226048343479291,-2.6832406689911843,-0.033022271773330863,0.001544792255833183,-0.017595215123370485,0.0024632954836528846,-6.352992092277735,1.53596536351166,0.031251126924249334,0.0015464830613841792,-0.02036179698216735,0.7661608367626885,-0.058738816336893165,7.16063397023129,0.0005034966053106514,0.030531592935528103,0.41265530004741824,0.01770863923182441,4.099754025056364,-0.25609257799959123,0.0036019512464044875,0.0015541545929882916,-0.09997665119808538,-0.3748212357353413,-0.12402523726778347,-1.2602524596146785,-0.013874672502846937,0.002259567171584535,-0.07362178111723292,0.00220905373143044,-3.349317428043773,-0.9701719055540962,-0.01800313587381264,-0.001955510154801687,-0.04770452091177071,-0.7626594285380732,-0.008149274486242095,-4.573357403927787,-0.011914384450886075,-0.01711239237661614,-0.029464575579675373,-0.009389650760295323,-3.9056335938950357,-1.1528505408510876,-0.025333371915337775,-0.0017509346181515774,0.020156004029176087,-0.45844026341497984,0.021203777370044682,-5.35558935939081,0.0013409824055966796,-0.024578474278569913,-0.4430441673339152,-0.014823843388557311,-2.8477771966857137,0.9915085275709057,0.02183768576060105,0.0049821848450386326,-0.03015055841566563,0.20698311146654222,-0.11682357186686465,4.606904060714553,-0.005851744367622046,0.02110442567323657,0.22071145126640512,0.011774687614890327,1.5622326962036863,,,0.4563492063492063,1.0178571428571428,0.36904761904761907,0.03571428571428571,0.6488095238095238,-0.27976190476190477,1.3716621774781304,0.03790945056059795,0.04609992675107413,1.1886142798270884,0.197877021217963,0.26217099399222704,2.560276457305219,0.46004801521019006,1.993467024364897,1.4226549113484284,0.2318567120392546,0.33895540097721366,0.0,0.5708121130164683,7.225677323555569,1840.0,515.1345000000001,273.0,630.0,13428.635356025714,7252.010257999999,109.41363528911101,518.2093000000001,498.8194444444444,638.5169679999999,16441.953265360116,2028.0,545.2410000000001,343.0,606.0,12601.7420816997,7635.101824999999,143.025954754,555.447,287.0416666666667,664.449108,21197.143984132188,3248.0,950.4,608.0,935.0,23671.396971368824,12262.23382,229.36683521122498,965.2367,475.27777777777777,1173.072856,33619.52401855941,4378.0,1358.9259,735.0,1264.0,32573.343712914193,16092.9797,309.647933075641,1378.6171,801.3611111111112,1669.484288,44789.9861567337,4967.0,1794.9029,826.0,1383.0,46515.21733605189,18167.130531999996,347.242729148279,1812.5674999999999,1132.4166666666667,2243.925112,49133.840970754296,4969.0,1819.4238999999998,795.0,1255.0,45617.164892844514,17876.073791999996,341.20364967335604,1833.7266999999997,1181.5555555555557,2254.691184,48743.949225063785,4602.0,1817.19,754.0,1066.0,46458.30268559861,16247.361337999997,325.64819718135595,1828.9887,1176.4166666666665,2255.7380080000003,46077.48511375125,3956.0,1713.6419,675.0,939.0,44642.65498663141,13694.852496999998,302.94871484214804,1724.8586,1006.5138888888889,2144.656132,41719.305604564084,3710.0,1515.3839000000003,629.0,880.0,40501.99069197763,13242.578523999999,276.472469776883,1528.4408,884.5277777777777,1907.0272240000002,37803.98548290529,638.2222222222221,13.125580246913575,2.581490995584428,67.55555555555554,352.2222222222222,113.9659049482155,3017.5004683209872,17.35829462541558,12.109288888888884,211.07733196159117,8.37309422222222,3850.204774182913,-7.489711934156339,-1.7818795153177818,-1.311050327253894,35.275720164609055,131.10288065843616,-5.837088162154147,-23.120982814357347,1.3253441441862466,-1.4982551440329188,-27.1105459025555,-1.1800193415637836,254.12454168567933,269.0919067215364,0.8660787989635739,-0.139681736916268,9.951989026063107,113.9437585733882,44.495931365920526,1294.4660449571713,7.897722608020852,1.3896984910836747,26.10635235143694,0.11718247462277022,2104.3365829312797,-114.25788751714664,0.541302072854757,-0.2189886443663942,8.836762688614545,128.3347050754458,-19.466962004741305,-566.1637811571399,-6.967699344172813,0.32595116598080165,-3.7125903910311724,0.5197553470507587,-1340.481331470602,442.3580246913581,9.000324554183809,0.4453871216786436,-5.864197530864197,220.6543209876543,-16.91677910502523,2062.2625834266114,0.1450070223294676,8.793098765432093,118.84472641365645,5.10008809876543,1180.7291592162328,-72.21810699588472,1.0157502514860655,0.4382715952226982,-28.193415637860078,-105.69958847736625,-34.97511690951494,-355.3911936113393,-3.9126576458028364,0.6371979423868388,-20.761342275059683,0.6229531522633841,-944.5075147083439,-273.5884773662551,-5.076884316415165,-0.5514538636540757,-13.452674897119339,-215.06995884773664,-2.2980954051202707,-1289.6867879076358,-3.3598564151498733,-4.825694650205752,-8.309010313468455,-2.647881514403281,-1101.3886734784,-312.42249657064474,-6.865343789056537,-0.4745032815190775,5.46227709190672,-124.23731138545953,5.746223667282109,-1451.3647163949095,0.3634062319167002,-6.660766529492446,-120.06496934749103,-4.017261558299031,-771.7476203018284,244.9026063100137,5.393908382868459,1.2305996567245423,-7.447187928669411,51.12482853223593,-28.85542225111557,1137.9053029964946,-1.4453808588026456,5.212793141289433,54.515728462802066,2.908347840877911,385.8714759623105,0.7532129888698227,0.5910558672467374,0.4293781475295108,0.30183051167773856,0.2800535485288601,0.1757382999842601,0.1594302779037097,0.08232396434565022,0.09815557379197631,0.04423771546417582,0.05746689806605108,0.024179577810611558,0.03545062215414357,0.013209536586156135,0.020640829734173596,0.007138564343122372,8.027265324176817,5.675706542988878,3.5501306787086917,2.1739014849842095,0.46863227612733,-0.44479700712705933,4.034265364839753,0.9722609202119039,6.025732849769788,0.9886413273643038,14.547353312343574,10.93715712577571,16.015381831943465,11.68798569168427,2.0105931647208655,0.750963222064637,3.4957805921211063,2.223437001130889,7.011560604617426,1.1235244099077244,3.708633697034158,2.4193214487546606,20.913653338679413,14.701776523923277,0.2471456071887856,0.5943516711688616,0.7862777480734232,0.8216862505586425,0.8254621732327864,0.8254621732327864,1.6556818962360689,1454.4514477474338,0.0,2.0,4.0,0.0,8.0,3.0,4.0,4.0,0.0,4.723725628009433,2.45329003546398,1.1982549385921182,0.9667131175777559,0.9420217595530653,0.9420217595530653,311.9137434257611,4182.636299795579,115.22177402153963,51.63748518266147,106.7992761397644,,16.0,1101.0,69.70049919055285,39.60425831565011,41.749267200597764,11.250837766380558,0.0,4.899909730850478,39.156964730020846,20.771211599071872,10.633577208012662,5.733667477162185,19.166666666666664,42.75,15.5,1.5,27.25,0.0,0.043650793650793704,-11.75,0.16781893004115256,0.03382625604847844,-0.13399267399267412,0.09498412698412739,0.20334280639431612,0.0,0.6078189300411508,0.8936507936507936,0.4399999999999983,0.5739926739926724,0.7986666666666662,57.60981145408147,1.5921969235451137,1.9361969235451135,49.92179975273772,8.310834891154446,11.011181747673536,107.53161120681919,19.322016638827982,0.5106571936056838,0.34260869565217383,0.052173913043478265,0.4591304347826088,0.5172413793103449,0.3160658641291363,-1.5591414478118943,-0.07966142469816366,-0.019248659849529563,-0.06778875860051715,0.6839341358708638,3.373822294121559,0.0562301022694773,0.04165212708792049,0.058169349898647575,-3.484776562100393,0.8640071627536811,0.8762061615080694,1.4743298524303061,0.8529135338345866,0.49752140603875633,1.4011916594858402,0.8677822356189955,1.1418787353564819,0.8552348374303239,0.7931720254598428,0.881488092843173,1.0219745812554633,0.6595307052334484,0.6888545667278846,0.8745543963329651,1.4508539560822589,0.7874318423966409,1.0227705662599218,0.6628433189749878,0.8766286695806961,0.6659919352590363,0.5331543217493572,0.6820835938425348,0.7639043031684049,0.9757554555175648,0.8608103305563858,0.9441123218663443,1.1785981541531556,0.8148668650111384,1.279756925604664,0.9830322136053995,1.2963882259595276,0.8566155151236374,0.8851004644295898,0.8700310029531283,1.1836231641150026,0.7777681058495823,0.7696665026919447,0.9003875804321887,1.0793585526315792,0.8190063091482651,1.0498300491623347,0.78138903278218,1.0346068172551863,0.7579110526721453,0.8241039014527181,0.807416169846039,0.9286166806444157,1.0399010253067031,1.1307474437594254,1.1166705917781858,1.2178051511758121,1.1747097120612124,1.114710560592864,1.0379382050604509,1.0794277072051668,1.1207175188490202,1.282992707849149,1.176399090241898,1.0472144998131898,1.1436911041308602,1.2819469734526252,1.2822518207340532,1.0267357222844347,1.2419625478220016,1.0288509334880267,1.1393376023452433,1.018691260860973,1.268462957495147,1.1917967049218698,1.2841036159416732,1.0300489845437608,1.1706873336142833,1.3154044369600222,1.302918358348272,0.9089143523014179,1.1524090004306986,0.9450227061773917,1.1642544140712574,0.9666791459683133,1.311130342519865,1.3926873952570518,1.3389004334432895,1.0227240120953502,0.8543468699604165,0.80498866496379,0.8767993918264241,0.9996271041977415,0.9347245814122787,1.0516999514163972,0.8575600980266828,1.0253299172428945,0.8035655418525773,0.8538389423869333,0.8235142717960585,0.9689984358811041,12.5,0.39638812366085097,6.888888888888892,5.9375,5.715555555555557,3.326388888888889,1.8644897959183673,1.3871527777777777,1.0022675736961448,0.9518750000000002,9877.461000350204,11143.124873115814,4001.4408819258606,3582.4520671664236,17.46758711125329,0.4596213414763715,9.439111290823677,0.8505542071778065,0.0,0.5172413793103449,1.6161243748751917,3.886559967420644,5.141595064292506,5.373136885306868,5.397828243331559,5.397828243331559,0.27777777777777785,0.007078359351086624,0.09567901234567905,0.06747159090909093,0.05953703703703704,0.036156400966183576,0.02273768043802887,0.020103663446054746,0.014739229024943307,0.01586458333333333,0.6171453346292153,34.86518518518518,12.654320987654321,6.24,243.21067803925732,0.0,4.669962125207031,280.0740086745617,,234.83395690290592,231.30572672985525,229.63781776470418,234.86812747297012,298.7085479846333,233.39384151754066,235.0408279739168,276.1589697384309,-0.01131615598885788,-0.1309078097026093,-0.48972748827827317,0.5035244360902257,0.3589229382604776,-0.049388637157306514,-0.007388642905674818,0.07362534467411289,-0.11930890781470117,-0.12385182187672515,-0.13589669045295888,0.06364561875774752,0.22617093102621347,0.03539541165119713,-0.029025324500710943,0.0790236144998258,0.17353291411619695,0.2094370103556597,0.23011842259747187,0.24406353207156606,0.06156161681681053,0.06634568323500248,0.007507317065080501,0.2931834483888698,-0.0687253297073228,0.015831561132016864,-0.03256518458500096,0.050215140932901005,0.13987172395233755,-0.06557311295526409,-0.072027327408907,-0.15409370974285796,0.010333238712085038,-0.006752086601380527,0.02382953408625673,-0.13365324434820558,0.19493710828690816,0.19285557158202057,0.04852433271562101,-0.0244140625,0.1761928233438486,-0.041747960720798415,0.19221582819222138,0.0023494949193020947,0.20422826232570768,0.15835466079286567,0.1713105979353338,0.08624997773009078,-0.03250200023706512,0.02222820214194867,0.04876504401811867,-0.11987332026875701,-0.08619706020538291,-0.08814955861803793,-0.0338294725387695,-0.06474417544941835,0.015114425180349396,-0.02825203547475668,0.02137003925872182,-0.07046241111399576,-0.12312940792982874,-0.11110015544811637,-0.061358464085239636,-0.05719834826427772,-0.17538760990670518,-0.005792006246829224,-0.12276450446560291,-0.055596771534730596,-0.11446615860141501,-0.01130690159750546,-0.0908340084798506,-0.08216610275556961,-0.14631407456135848,-0.15633618373746788,-0.05493945332866429,0.024167314041561465,-0.10542679874748276,0.015070349046533081,-0.14376227697887792,0.006257502663556187,-0.16440737642248443,-0.17001625527736566,-0.14340353549186122,-0.059911086931862055,0.1258373462045944,0.13476376002688517,0.15632708893364444,-0.03615091625825698,0.04759958620161177,-0.08303105499417356,0.12366501110288605,-0.027306328415660115,0.14116918798598566,0.08469705101176819,0.11390648086520531,0.032866004748891044,1.354350121791732,16.171715647092135,33.1404811199801,15.635615118447081,37.914779042501266,42.701910204653444,43.67560065653221,43.70048954542109,43.70048954542109,83.72561502332567,59.75150627663399,9.737981905648693,14.236126841042974,0.0,23.97410874669167,15908.839925261456,14037.176598364531,3592.562773248199,591.0,72.0,100.0,143.0,200.0,253.0,313.0,400.0,486.0,585.2798632080011,45.0,5.459585514144159,6.361302477572996,7.319202458767849,8.251924713801357,9.214431989879436,10.162422867948395,11.128394696471394,12.085322086127402,13.054112373522686,0.6419753086419754,0.9958024691358024,1.13860404898977,0.6019769943395508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6383597767428106,0.9802469135802472,1.015726578727307,0.6058500350543911,1.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,7.0,0.0,0.0,1.0,4.0,3.0,2.0,0.0,0.0,3.0,2.0,2.0,0.0,0.0,41.69326399538814,22.840946106665523,11.384295757348628,11.690424675716445,5.907179729351506,24.07805846713776,0.0,0.0,0.0,0.0,65.25592341659826,36.81266606865194,23.837435001441094,267.99073043959476,-1321.9885564327826,-67.54453996967291,-16.320846375713366,-57.47776332316447,579.9044738653558,2860.6477433627965,47.67723405186672,35.316638806948106,49.32151281659994,0.5,0.6718287954467801,0.10292735555191379,124.4214095676864,0.059446812868222815,343.7336909853744,0.3281712045532199,8.0,0.13333333333333333,0.25491523839520763,0.6130365806213497,0.8109963267195732,0.8475179827380928,0.8514126108465584,0.8514126108465584,0.35660000000000386,,2.7142857142857144,3.214053047929269,2.511321414314649,2.7066255252004874,-11.249263205622308,2.875688494492044,2.6892733673119302,-4.788578965681349,154.9569999999999,39.60425831565011,0.0,10.216698334856808,17.569479569484972,50.79467173743888,44.95214267147814,34.09864398365031,0.0,5.749511833283905,4.51085950651685,0.0,5.937536205082426,0.0,7.557472901614746,0.0,9.28312604170183,0.0,11.07459103087878,52.00000000000001,1.572299482165328,0.0,0.0,0.0,0.0,0.0,0.47208846391837134,0.0,80.66,0.0,52.13353415692608,0.0,0.0,0.0,0.0,0.0,-6.5771333789584965,92.22692796817137,21.267154416025324,11.374772549367124,5.749511833283905,100.62412989078256,25.598970359213293,11.835812092322787,38.31893620539187,22.971741000256323,0.0,5.759164871656176,0.0,48.76013654150361,51.70714191616766,50.24598429067588,560.1480173491234,,469.5386621051316,462.458403314571,459.1560487953934,469.60736801616883,600.7974468796042,466.6507454877246,469.9535953112949,553.5097731271235,50.24598429067588,560.1480173491234,,466.95362809152624,459.39740041178095,456.7643141150936,467.0296294207399,608.6663591748893,463.9119945405893,467.39238258052166,557.1065184425432,5.30974256857292,406.95001883610166,,340.6021839164421,336.0767462875785,333.5393464469208,340.64484300331736,422.6464506148451,338.7333684788692,340.87014795394555,394.1594932016655,1.1963329593018066,13.336857555931509,,11.179491954884085,11.010914364632644,10.932286876080795,11.181127809908782,14.304701116181052,11.110732035422014,11.189371316935594,13.178804122074368,2.6548712842864592,280.0740086745617,,234.83395690290592,231.30572672985525,229.63781776470418,234.86812747297012,298.7085479846333,233.39384151754066,235.0408279739168,276.1589697384309,79.40000000000002,0.0,12.258262589818926,0.0,0.0,5.3686276276025335,45.59700881040061,82.27385287691187,0.06023285374586851,5.695266208832972,0.0,0.0,-3.0320199431734434,3.1880737672332016,-3.069573971845281,0.0,0.0,49.073852839405674,569.6404137732965,130.90607436489051,314.81135736107217,416.469200207693,435.22408770985635,437.2240877098563,437.2240877098563,2645.0,170.03669917823566,278.2547905316541,80.36358568579463,205.75999999999996,205.75999999999996,1.0,9.226490503690789,6.491853096329675,4.978637818091402,6.364951524267709,,6.356862408442503,6.359360009202007,6.363364470672981,6.356847066325688,6.326646152158739,6.35801080975499,6.356703534665227,6.333909428627994,0.11853899566884289,0.1515464648635169,,0.15135386686767865,0.15141333355242872,0.15150867787316621,0.15135350157918306,0.1506344321942557,0.1513812097560712,0.15135008415869589,0.15080736734828556,3.0402408484058583,3.285891141286613,,3.284619448907187,3.2850122700941076,3.285641767590425,3.284617035431113,3.2798547872517005,3.2848000879581476,3.284594456111618,3.28100217406577,434.19000000000153,2063.842073218935,321.10726145872104,,320.98544932281834,320.40101574306703,320.25477876714933,320.99142397296174,330.610598851018,320.75390594070285,321.0187973261766,327.2792525469542,49.13909698140322,7.645410987112406,,7.642510698162342,7.628595612930168,7.6251137801702225,7.642652951737184,7.871680925024238,7.636997760492925,7.643304698242299,7.792363155879862,9.067409134050054,7.206859740450863,,7.206480318179535,7.204657910712793,7.204201387944372,7.206498931467309,7.236025769602819,7.2057587062345485,7.206584205353373,7.2258983150743035,0.0,55.32160792415928,51.29227501923358,2.114532848262649,-7.789079134892591,0.4088345663389541,0.11683566778811794,5.620303107006059,6.581356668770618,551.3916827194838,227.22805513791312,-1120.9077571453809,-57.27069151726971,-13.838367372165196,-48.73511987588613,491.69822234542073,2425.529502803094,40.42529810710248,29.944808676581406,41.819474186260244,5641.0,88.0,5.524038388713977,3.1567315980515196,0.4497784354582114,0.2822748612183951,1.7535247977004345,0.5446077449588927,0.1503948211770304,0.026981113740922692,0.0,0.0,0.0,0.0,0.0,0.0,0.1620805673462014,0.09385382994894005,0.6667402280653839,0.27919524124527323,31.634945532532555,24.82434642436297,19.322016638827986,13.582373025498235,20.16385549407793,12.653157598866727,15.943027790370971,8.232396434565022,14.036247052252612,6.325993311377142,11.493379613210216,4.835915562122311,8.969007404998322,3.342012756297502,6.460579706796336,2.2343706393973024,11.034410091687338,4.6006990997795105,19.179232027296344,6.633095137409807,33.9416453052029,10.01035779998456,141.90698306193295,54.02451226222626,36.327599247260856,32.86683581820993,32.75967902801524,32.75967902801524,234.0,289.0,86.35092699999997,46.58707300000005,0.2222222222222222,303.13,19.625,8.791666666666663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,6.0,6.0,81.0,0.0,2.0,84.0,6.0,6.0,9.0,75.0,12.0,45.0,72.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,11.0,7.0,0.0,42.0,13.0,0.0,5.0,8.0,0.0,4.0,6.0,0.0,0.0,0.0,0.0,1.0,4.007333185232471,8.089300325870884,4.620058798481842,5.157617484444901,5.707525460935035,6.209972370017663,6.610107042218506,6.9862198189269025,7.379807589496583,7.746678887279849 +62878,Fc1ccc([C@@H]2CCNC[C@H]2COc2ccc3c(c2)OCO3)cc1,0,23.318181818181817,6.330338636363634,3.3636363636363638,8.045454545454545,163.1498565057382,92.8722489806766,1.4848004340222725,6.384779545454543,4.174873737373738,7.815815181818181,221.31878481029028,25.425531914893618,6.422425531914895,4.085106382978723,7.1063829787234045,145.3793728587531,96.99059180500433,1.802792429574469,6.5661276595744695,3.020094562647754,7.829189276595739,268.5636322280702,21.011904761904763,6.416857142857144,3.619047619047619,5.583333333333333,153.26883354563856,77.93238162702855,1.5389814709552976,6.51764404761905,3.0277777777777777,7.8917880476190465,223.57179966669878,16.026785714285715,6.098410714285714,3.0267857142857144,3.6160714285714284,157.91891637499137,57.33099878144285,1.326585425975732,6.187156249999999,2.606646825396825,7.641402607142855,181.72620026680437,13.669491525423728,6.012983050847459,2.6610169491525424,3.0,160.69833340771973,47.3068165227661,1.2130716300879327,6.085967796610169,2.4218455743879477,7.594113627118643,159.61934676209646,12.859649122807017,5.804429824561405,2.5526315789473686,2.7017543859649122,160.19460368294708,44.88303121785265,1.1785073570979647,5.885114912280704,2.1832358674463936,7.411235368421052,152.1139066862997,13.254716981132075,5.956113207547168,2.6037735849056602,2.7547169811320753,162.81590911028374,46.29678000090566,1.164236889007283,6.024905660377356,2.384696016771488,7.551600301886794,153.75145857521372,14.473118279569892,6.1208709677419355,2.7419354838709675,3.204301075268817,164.1358722998697,51.19945423421935,1.18844400091214,6.1847150537634406,2.6854838709677424,7.680511225806451,161.2602869165603,15.7375,6.361012499999999,2.7375,3.975,165.5980259202742,55.98887477465998,1.2157438454091876,6.407893750000001,3.3152777777777787,7.88589935,167.5079337512623,7.679752066115703,0.17430098140495856,0.02391208730947363,0.5351239669421488,4.225206611570248,1.9027969655149874,36.836339246205014,0.2380830347972727,0.15862040289256193,1.3844553489439857,0.1063581053719008,50.2135996883446,0.5088359416212409,-0.0019539794707226807,-0.009363890056292144,0.11477932125901182,0.8628011253736585,-0.12188689937497203,2.376130385144995,-0.012369398985638212,0.0007961831809389257,-0.024230762655569203,-0.003764333611746096,0.7806627295686496,-0.5412239275875641,-0.01060179309327033,-0.0014754931516662874,-0.059474616292798134,-0.1597304210940576,-0.01637404091319401,-2.5089958388726723,-0.00208793058565472,-0.010075732979142108,0.041207529843893496,-0.005046845631641098,-1.5857192704610692,-0.5360832349468713,-0.012777178645218419,-0.0012070038913339228,-0.09113046044864227,-0.3469598583234948,-0.11719966092208856,-2.5916500399788873,-0.020610610819580343,-0.011356908574380159,-0.009539899809786182,-0.008001675988783936,-3.8645722640149915,-0.6863006023252555,-0.00011209465611431127,0.0014217286512550917,-0.02626418265863566,-0.08691693514497825,-0.01741056667333057,-3.361631846634993,-0.015092518213211864,-0.0020311116753046364,-0.044477177398017174,0.002295873056450492,-4.776228401644662,0.7121937074090184,0.020325194831085934,0.0016210347040836598,0.025880817746846467,0.4183340582862114,-0.19387665443754915,3.3423736219154008,-0.01366042555734211,0.01949024304045241,0.06974675986338663,0.011458960018848793,-0.33908334483121233,0.12942460626851723,-0.008434343326056465,-0.001686329928915931,0.021908623109309227,-0.17374863558397002,-0.11844050225250916,0.7245630837450494,0.003822969950584897,-0.006386076134414444,-0.07263430834935984,-0.006682591649773886,1.5084294126293993,-0.2491557806807073,-0.019122975539856025,-0.0025062140221912784,-0.0175286590242602,-0.5204167777481561,-0.07908850110214821,-1.151928398197296,-0.0003259199489354912,-0.016162533879854255,-0.18508258908735453,-0.012109884453034743,0.27264334845641885,-0.6558884297520662,0.003438904958677707,0.0034362899207281278,0.016012396694214878,-0.4627066115702478,0.5037746707338682,-3.3775255683033563,0.018508475693687486,-0.0011542097107438054,-0.1097867883379247,0.005631449173553707,-0.768004547490702,,,0.46607142857142864,1.1979166666666667,0.5416666666666666,0.041666666666666664,0.65625,-0.11458333333333333,0.8056000557515492,0.005057801112057818,0.01939113444539115,0.8037827397743648,0.23731297304555918,0.254054790941262,1.609382795525914,0.4913677639868212,2.0833201987320464,1.6695125657260264,0.08456534951437156,0.2557996273655187,0.07344265612612999,0.41380763300602025,7.480516402727284,1026.0,278.5348999999999,148.0,354.0,7178.59368625248,4086.3789551497703,65.33121909697999,280.9302999999999,183.69444444444446,343.89586799999995,9738.026531652773,1195.0,301.85400000000004,192.0,334.0,6832.830524361396,4558.557814835203,84.73124419000004,308.60800000000006,141.94444444444443,367.97189599999973,12622.4907147193,1765.0,539.0160000000001,304.0,469.0,12874.582017833638,6546.320056670398,129.274443560245,547.4821000000002,254.33333333333331,662.9101959999999,18780.0311720027,1795.0,683.0219999999999,339.0,405.0,17686.918633999034,6421.071863521599,148.57756770928196,692.9614999999999,291.9444444444444,855.8370919999998,20353.33442988209,1613.0,709.5320000000002,314.0,354.0,18962.403342110927,5582.2043496864,143.14245235037606,718.1442,285.7777777777778,896.1054079999999,18835.082917927382,1466.0,661.7050000000002,291.0,308.0,18262.184819855967,5116.665558835201,134.34983870916798,670.9031000000002,248.88888888888889,844.8808319999999,17340.985362238167,1405.0,631.3479999999998,276.0,292.0,17258.486365690078,4907.4586800960005,123.409110234772,638.6399999999998,252.77777777777774,800.4696320000002,16297.654608972654,1346.0,569.241,255.0,298.0,15264.636123887882,4761.5492437824,110.52529208482902,575.1785,249.75000000000003,714.2875439999999,14997.206683240107,1259.0,508.881,219.0,318.0,13247.842073621938,4479.109981972799,97.25950763273501,512.6315000000001,265.2222222222223,630.871948,13400.634700100984,337.90909090909093,7.669243181818177,1.0521318416168397,23.545454545454547,185.9090909090909,83.72306648265945,1620.7989268330207,10.475653531079999,6.979297727272725,60.91603535353537,4.679756636363635,2209.3983862871623,23.915289256198324,-0.09183703512396599,-0.4401028326457308,5.394628099173556,40.55165289256195,-5.728684270623686,111.67812810181476,-0.581361752324996,0.03742060950412951,-1.1388458448117524,-0.17692367975206652,36.69114828972653,-45.462809917355386,-0.8905506198347078,-0.12394142473996815,-4.995867768595043,-13.417355371900838,-1.3754194367082968,-210.75565046530446,-0.1753861691949965,-0.846361570247937,3.4614325068870535,-0.42393503305785224,-133.20041871872982,-60.04132231404959,-1.4310440082644629,-0.13518443582939935,-10.206611570247935,-38.859504132231415,-13.126362023273918,-290.2648044776354,-2.3083884117929983,-1.2719737603305779,-1.0684687786960523,-0.8961877107438009,-432.83209356967905,-80.98347107438015,-0.01322716942148873,0.16776398084810082,-3.099173553719008,-10.256198347107434,-2.054446867453007,-396.67255790292916,-1.780917149159,-0.2396711776859471,-5.248306932966027,0.2709130206611581,-563.5949513940701,81.1900826446281,2.3170722107437967,0.18479795626553722,2.9504132231404974,47.6900826446281,-22.1019386058806,381.0305928983557,-1.5572885135370005,2.2218877066115748,7.951130624426075,1.3063214421487623,-38.655501310758204,13.719008264462827,-0.8940403925619853,-0.1787509724650887,2.3223140495867782,-18.417355371900822,-12.55469323876597,76.80368687697523,0.4052348147619991,-0.6769240702479311,-7.699236685032144,-0.7083547148760319,159.89351773871633,-23.171487603305778,-1.7784367252066102,-0.2330779040637889,-1.6301652892561986,-48.39876033057851,-7.355230602499784,-107.12934103234853,-0.03031055525100068,-1.5031156508264458,-17.212680785123972,-1.1262192541322311,25.355831406446953,-52.47107438016529,0.27511239669421655,0.2749031936582502,1.2809917355371903,-37.016528925619824,40.30197365870945,-270.2020454642685,1.480678055494999,-0.09233677685950444,-8.782943067033976,0.45051593388429656,-61.44036379925616,0.6814650159713395,0.5555998197100079,0.43677134576606336,0.3066904175277642,0.2820495783428205,0.16856743507426644,0.1832219297055558,0.09620302429291022,0.11811268700107834,0.054234618802671344,0.07825428597782595,0.03068999503370451,0.05176424786298294,0.016359485720238664,0.03382973823880963,0.009305934517375596,9.004067344299425,5.6923061000237585,4.107714972442649,2.191930160951882,0.4924964822843222,-0.5240919385788574,3.1815513500724095,0.9938430096087263,7.004058132368348,1.8929982203674394,17.42477138649617,10.952856728695089,19.000141509978427,11.703581965469901,1.9899801034248448,0.5458603370616012,3.9886662601507985,2.2418414203118626,8.001918024591397,1.1743736767536013,4.009945225886015,2.437732026232122,20.896975274846927,13.304120412446832,0.27104442181932054,0.5808180316821325,0.795796930763848,0.9055126353540732,0.9134482458108024,0.9134482458108024,1.2728746338673935,704.2581301134379,0.0,0.0,3.0,0.0,11.0,1.0,1.0,2.0,0.0,3.9069107308031557,2.1325521345860743,0.9011701012364384,0.27272727272727426,0.2272727272727293,0.2272727272727293,159.6495513403245,1237.9486659814304,68.89242148357934,28.135196954123423,56.94444227433722,,13.0,541.0,0.0,4.39041504767482,12.610163147145723,18.442694056835705,36.75886993460288,17.696185628620217,0.0,30.33183534230805,5.316788604006331,14.210588861400147,11.185714285714287,28.75,13.0,1.0,15.75,0.0,0.033928571428571384,-2.75,0.15941558441558407,0.06532931354359905,-0.09408627087198501,0.022357142857142742,0.17138045738045704,0.0,0.6048701298701299,0.8589285714285709,0.4454545454545458,0.5395408163265308,0.8365714285714282,19.334401338037182,0.12138722668938762,0.4653872266893876,19.290785754584753,5.69551135309342,6.097314982590288,38.625187092621935,11.792826335683708,0.5426195426195429,0.025542784163473813,0.0,0.3128991060025543,0.3684210526315789,0.3578271152474112,-0.7889599401042009,-0.07349214074158042,-0.017930907729640934,-0.05259732934028008,0.6421728847525892,1.4159035442035586,0.04920954200894004,0.03217962600462634,0.04882426014495031,-4.984526385847827,0.7391513403053251,0.6964793034075947,1.3782921574847276,0.8548426846299187,0.5560942620818811,1.079171281127929,0.7398645015689601,1.123080529970205,0.6758047496326817,0.5801061371174071,0.7559717261016906,0.9704460083108173,0.9740926502427713,0.9617483717746074,1.2307070128869753,1.2718560397131826,0.9706164862032831,0.9622214911029198,0.9657176621496635,1.013172044345194,0.9565330822010072,0.6576865545318559,1.0005239449944647,0.9850708801279356,0.9987100772512394,0.9041108513264045,0.8970659114664329,1.2718560397131826,0.9788770520433111,1.0125645328637773,0.9999684049535479,1.0838761454306094,0.9090588564407807,0.8143466748194129,0.9022624899317317,1.0687261304710403,1.0433680797800302,0.8115740694024384,0.8139664286741932,0.9518192526667104,0.9065620985454395,0.8682310834002867,1.0432339057701059,1.0344534429532262,0.838397450915932,0.7225066568955493,0.7908013424783807,1.087543420147539,0.8388662333800603,0.48899018589129345,0.6418055961321572,0.8410384068278806,0.7121477287350405,0.8486502332232269,0.8393740193882666,1.033054546640737,0.5167631473229148,0.37994889806103166,0.48432485538426034,1.0341375021083528,0.9549989593961451,0.8662364909273641,0.9175687487569257,0.8872841844539958,0.95791391797758,0.9244350533294525,0.9511237780945768,0.9407610185151979,0.8753817027217279,0.7782174620646014,0.8645906092786483,0.9640586688311297,1.0276034841371091,1.1488627828890008,0.9775765759307766,1.0702246024826672,1.1353392749165285,1.1239547286064502,1.0312317918058553,0.9667758048641965,1.1370336309839788,1.342096978680835,1.1107134559684337,0.9677569351379616,1.124599811676083,1.3280293450787934,0.8365890710772136,0.9359555984555984,1.234541564792176,1.0102443516242916,1.1388632735698947,0.9059849276300592,1.324924492598402,1.81202858297665,1.2624597407677944,0.966108205284606,4.0,0.06928068564432201,2.666666666666668,1.1319444444444444,0.8927777777777779,0.48277777777777786,0.3984126984126984,0.26994756235827666,0.163769211388259,0.1428163580246914,4499.140515160931,5082.504542789806,2369.9624958955173,2167.273779074801,12.392219392032036,0.4243146964788768,7.134018582002311,0.7370601505433563,1.0,0.3684210526315789,1.5525208878341419,3.326879484051223,4.558261517400859,5.186704345910023,5.232158891364568,5.232158891364568,0.14814814814814814,0.004948620403165857,0.0720720720720721,0.03234126984126984,0.03078544061302682,0.017880658436213993,0.015323565323565323,0.010797902494331067,0.007120400495141695,0.007516650422352178,0.346934728249287,17.415637860082306,8.131482834185537,4.233236151603498,140.0874630943337,1.0,4.125616784562123,124.21358759917534,,99.38241800101528,97.95547689187546,101.36089061063493,99.3251545025487,148.8023702742787,98.9707195317817,99.48747452842252,123.10544264240308,0.06625681887131574,-0.011210375609893687,-0.39159651498020015,0.21449108683151244,0.20420329813244534,-0.06405670262459329,0.06450506303744041,-0.0519541385893822,0.005019424780292628,-0.017502018157574805,-0.035393011172805376,0.015546838593805378,-0.07047414069205837,-0.06082463224139211,-0.06170490817343738,-0.11114175399889689,-0.03780416812201657,-0.008605248594540623,-0.06811197557127385,-0.00876975794362076,-0.06352104013987839,0.02976443398866216,-0.04745144353590983,-0.03157947807572021,-0.06980475806141664,-0.0733052593406392,-0.05047672650708853,-0.17029784886927746,-0.08211666084526723,-0.061593361270874614,-0.07035579791620815,-0.08656900243702892,-0.07159803132055158,-0.006890724079373803,-0.07523334456555611,-0.07696266127106642,-0.0893649425680451,-0.0006431097244018292,0.05945648461612228,-0.04908055755513382,-0.020571049687124438,-0.009149986566548073,-0.09125857551063025,-0.06339182557070107,-0.012804857624024354,-0.03212611907776066,0.021586253801932135,-0.09511822357466444,0.09273654947160745,0.11660975553467375,0.06779143464575042,0.04836415362731154,0.09900913653326471,-0.10189035296526074,0.09073577044602069,-0.057376728119136834,0.12287349347898013,0.05037848271277729,0.10773941467629966,-0.006752818896389919,0.01685270633143996,-0.04838953434496567,-0.0705220714148125,0.04094121075253153,-0.041121926465839356,-0.062245475686079584,0.019669790716776936,0.016057296790761046,-0.04026011797952571,-0.05246417546420891,-0.06283105200498794,0.030040256464217017,-0.03244320630870657,-0.10971238019266831,-0.1048095044884832,-0.03275625856271018,-0.12316954544259537,-0.041564340565754,-0.03127152213736795,-0.0013689339486663192,-0.10189441953946866,-0.13368621041374074,-0.11385953530001584,0.0054296714465524335,-0.08540489642184558,0.019729693607909174,0.14370514276964513,0.029922779922779922,-0.10951100244498774,0.2647548213834379,-0.0916900440548342,0.0777395823664942,-0.007276552635700871,-0.07929962379911078,0.05294800197749201,-0.015294751865179835,14.638856405641093,23.033299406620515,5.375078006026128,15.126355595606713,30.494674322863357,38.27763080300333,40.592782992322384,40.63860117414057,40.63860117414057,49.999684769569114,40.068301577424634,2.0295683883449174,6.139191056772448,1.7626237470271198,9.931383192144486,5818.074625358071,4946.926958149915,1393.7058789109087,101.0,37.0,49.0,63.0,77.0,77.0,85.0,92.0,91.0,329.1427217200005,27.0,4.859812404361672,5.707110264748875,6.5722825426940075,7.43307534889858,8.301273485191347,9.166283985779263,10.035261151145571,10.901966381397214,11.771165853321868,0.6590909090909091,0.9924545454545456,1.12770612844967,0.6232381740979859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6686017964071858,0.9785204991087343,1.0111401708269883,0.635618035638288,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,5.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,19.527377465406477,11.5667326743298,11.49902366656781,6.792942306099827,0.0,0.0,4.39041504767482,0.0,0.0,12.13273413692322,48.712403840543416,18.529029520535577,6.606881964512918,200.90658815168862,-442.97159997251606,-41.26309780114255,-10.067536363011731,-29.53143999816775,360.55613949201313,794.9770660089143,27.62932368243679,18.067660591111693,27.41300227616947,0.46153846153846156,0.7731936354949926,0.22363668853886612,19.49418143730545,0.10467937839373762,115.99636783443057,0.2268063645050075,7.0,0.14814814814814814,0.28437408805234915,0.6093820229735984,0.8349333476107582,0.9500447497508269,0.9583706247923556,0.9583706247923556,3.326500000000002,,1.2261904761904763,1.433054512024878,1.0983553366090928,1.25808588869574,-5.763269279062829,1.2966434836360508,1.1992473937688994,-2.0629677277182132,88.17770000000006,18.60100390907497,0.0,5.316788604006331,5.917906046161393,12.338727669087403,26.489337082437896,53.845241811974155,0.0,17.248535499851716,4.007333185232471,0.0,5.313205979041787,2.3978952727983707,6.816735880594968,4.59511985013459,8.40804774415544,6.580639137284949,10.043466862589568,29.0,12.48058742010221,0.0,0.0,0.0,0.0,0.0,3.2462371196277924,0.0,43.668000000000006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.61906965178548,19.527377465406477,4.39041504767482,17.248535499851716,26.489337082437896,0.0,11.735126887207288,17.9021791607844,42.46456947923127,0.0,0.0,0.0,27.422479660311378,29.418479041916175,32.240690129196025,248.42717519835068,,198.66265346234803,195.7915325744155,202.63025160988576,198.54546851437274,300.0584272737706,197.83338543992704,198.87501177403095,247.07045517135543,32.240690129196025,248.4271751983507,,197.5601387660598,194.5151091771695,201.67951885160016,197.41360485889462,303.3680098276202,196.67244647230473,197.7963908238225,248.2738530125245,4.752711767443174,188.213819272708,,151.63393335061056,149.41991292768458,155.08657201686685,151.5839907288111,230.96987464859606,151.01720562828208,151.77734934412055,189.57676862033128,1.343362088716501,10.351132299931278,,8.277610560931167,8.157980523933979,8.442927150411906,8.272727854765531,12.502434469740441,8.243057726663627,8.286458823917956,10.294602298806476,2.3854838739793376,124.21358759917534,,99.38241800101528,97.95547689187546,101.36089061063493,99.3251545025487,148.8023702742787,98.9707195317817,99.48747452842252,123.10544264240308,43.054901960784306,0.0,0.0,0.0,13.170417006584485,0.0,0.0,44.49016751638749,3.766487493316254,3.42512831212732,16.69309194802358,0.0,0.7180507002183586,0.0,0.0,0.0,0.0,27.967193568084674,434.11940758176854,68.31091906470225,146.38269729825382,200.56350676563778,228.21499122004101,230.214991220041,230.214991220041,723.0,125.74823141753839,127.34332006193313,72.16244391183214,39.72,39.72,0.8571428571428571,7.78386183372061,5.754887502163468,4.61570421667216,4.832017822059563,,4.843202200880296,4.84390204894906,4.843377499849936,4.843525852125261,4.815957517961603,4.843511475088228,4.843002823511862,4.83176467997585,0.19232100902800667,0.20133407591914845,,0.20180009170334567,0.20182925203954416,0.20180739582708065,0.20181357717188586,0.20066489658173348,0.20181297812867616,0.20179178431299424,0.20132352833232706,2.4049331866626398,2.4507328863197535,,2.453044851066,2.4531893417315143,2.4530810452594256,2.4531116747123987,2.447403624300253,2.4531087064081487,2.4530036837836726,2.4506804964643902,238.68,151.2712352405026,139.75731567494788,,138.84036496734964,138.77474724589828,138.76771081637062,138.807420167828,140.74735422315442,138.80884580933204,138.86024222447816,139.67519826416185,6.302968135020941,5.823221486456162,,5.7850152069729015,5.7822811352457615,5.781987950682109,5.783642506992834,5.864473092631434,5.783701908722168,5.785843426019923,5.819799927673411,5.8945432226942485,5.815376196319148,,5.808793557034247,5.80832083260545,5.808270127357839,5.808556243420092,5.822435206492967,5.808566514010679,5.808936713056579,5.814788452165883,29.86350895460806,0.0,3.42512831212732,1.1779506277819773,2.786337192064174,12.48058742010221,1.028569433946418,2.7379180593698367,0.0,293.5705891296119,112.80156098523686,-248.7120427892635,-23.16769144245832,-5.652546427028717,-16.580802852617573,202.43883354786863,446.349991895552,15.512835437691681,10.144317997626183,15.39137903088111,1445.0,35.0,1.2955487099813654,0.6296294325059684,0.0,0.0,0.21941609682128765,0.11209816405368717,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.02946278254943948,0.4013747150773105,0.1447802949648797,0.5487851632247831,0.15527578013313725,16.355160383312146,13.33439567304019,11.79282633568371,8.280641273249634,10.435834398684358,6.236995097747858,8.977874555572235,4.713948190352601,7.4410992810679355,3.4167809845682946,6.025580020292598,2.363129617595247,3.9858470854496866,1.259680400458377,2.8755277502988186,0.7910044339769257,3.1166396067467868,1.4304769215539157,4.826092782782824,1.9962233096840694,6.928282049926909,2.5025094473560197,78.30527235767526,47.65685893434293,28.052815280131753,22.533051842421308,22.375804950665067,22.375804950665067,128.0,150.0,49.12885999999998,26.955139999999997,0.5227272727272727,177.05,5.777777777777779,5.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,44.0,0.0,1.0,47.0,12.0,0.0,6.0,41.0,12.0,27.0,35.0,0.0,0.0,0.0,19.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,4.0,1.0,2.0,24.0,5.0,0.0,1.0,3.0,0.0,4.0,4.0,0.0,0.0,1.0,0.0,2.0,3.5263605246161616,6.172743894323493,4.060443010546419,4.56954300834494,5.05783689558055,5.539300835990577,5.568821489222084,5.728170162713031,5.901779143548455,5.917717086885101 +73303,C[C@@H](O)[C@H]1C(=O)N2C(C(=O)O)=C(S[C@@H]3CN[C@H](CNS(N)(=O)=O)C3)[C@H](C)[C@H]12,0,32.470588235294116,6.529741176470588,3.372549019607843,7.703703703703704,166.90718765465053,128.718171627451,1.5298712493407056,6.568201960784314,7.08927250598456,8.093243411764703,207.13567099585168,32.75471698113208,6.5656150943396225,4.188679245283019,5.5911949685534585,150.5172752133717,125.55294005660379,1.8377336368301889,6.709345283018868,2.882162823200559,8.069822792452829,258.60666719084486,25.22680412371134,6.486040206185566,3.7010309278350517,5.646048109965635,156.94140434185425,94.36084253608247,1.585462885200928,6.581858762886598,4.189528445971745,8.002597628865981,215.09632045389438,19.755555555555556,6.2180481481481475,2.9703703703703703,3.2987654320987656,160.90443796779806,70.82870757037036,1.3857361670631634,6.305075555555555,2.8706447187928665,7.8434828888888894,177.20928349064067,20.071428571428573,6.191612857142857,2.7928571428571427,3.4595238095238092,161.62176432228915,72.779297,1.3127979275879929,6.275802142857143,3.0761243386243384,7.827441985714286,170.87700106043894,19.852941176470587,6.368475735294117,2.7720588235294117,3.286764705882353,161.5637554588095,71.22451833088235,1.2994704851373384,6.440447794117647,3.8558346949891074,7.9780997205882365,172.25515335037426,16.944827586206898,6.316920689655173,2.4275862068965517,2.4582375478927205,163.9604409631833,58.66268040689655,1.1880890268598483,6.374632413793103,3.2421254907525663,7.947387179310345,153.19363146192222,14.942446043165468,6.167077697841728,2.2014388489208634,2.249400479616307,168.71183242349304,51.84117720863309,1.0225616068752374,6.205474820143884,3.4146238564703792,7.838670906474819,130.27673290984046,14.117647058823529,6.2469696078431385,2.284313725490196,2.349673202614379,168.3623974758288,48.16904583333333,1.0432346026869999,6.28127156862745,3.2406499636891795,7.89528549019608,134.8405872633563,13.522491349480966,0.18526920415224907,0.0276843787316286,0.7873894655901574,4.354564483745568,1.5417827727781883,60.73685328796616,0.32137920275822834,0.16928612072279878,3.310526142999764,0.11959629757785464,48.665514690381734,2.095710648299277,-0.030012378403081505,-0.018434977985858855,0.221119598412802,0.37700948756203256,-0.13294087015975256,9.148791597716407,0.006745284474810499,-0.020880867300675312,-0.5862643551777689,-0.00862015329372595,4.340866950007389,-0.027645988656226073,0.04865129311882423,0.004260990253870254,0.037150659738324245,0.9957263771577851,0.1374932301282463,0.150503026163606,0.007649183202029976,0.04039617157556373,0.9768414382725593,0.029397453786608633,0.562756088869593,-1.3434063821607074,-0.013499313084711015,-0.0005695378841181554,-0.018326284762270932,-0.1888580365576393,0.09539846119552814,-5.93354744599086,-0.001870063581664105,-0.01393994788329275,-0.20132239596215928,-0.009506420453671631,-1.4379268144363218,0.18507167572911523,0.0033185269401878183,-0.0013720203246193037,-0.12310375130444334,0.08535148264098656,-0.07527467575385154,1.0061825672159053,-0.021891364191452316,0.00535778684022626,-0.031188572923722756,0.0014397990608008243,0.7654250687377414,-1.3036332179930796,0.0019640570934256092,0.0025662851189948645,-0.11654171472510573,-0.5228811568200264,-0.08992865026581912,-5.858073251201461,-0.03735425802926383,0.00048782679738562895,0.1497463508218587,0.0007983226643598603,-4.9751197924826664,-1.8125522014079463,-0.043726932346975285,-0.0031763749641943303,-0.06582083813917723,-0.9575544920094096,-0.180980920701499,-8.787043887290032,-0.02847203746774967,-0.041445079478715056,-0.697130244221162,-0.027530342608280623,-9.664844040365464,0.5701874486569909,0.0024196659281571025,0.003639488672573915,0.009337858432976813,-0.29102315994186556,-0.083343905264277,2.520595144534893,-0.008252285457721397,0.0036678502180953958,-0.07916131958374518,0.003583046476313788,0.41061950124073693,-0.8189158016147638,-0.029099019607843148,-0.0034523439435521198,0.030180699730872756,-0.5210175573497371,-0.05584454027283483,-3.7068051361014986,0.0069822343832352885,-0.026875990003844684,-0.5105684067381491,-0.021166546712802742,-1.7551719839857494,,,0.47283950617283954,0.9074074074074074,0.25925925925925924,0.0,0.6481481481481481,-0.3888888888888889,1.2167852568908386,0.0335365625948776,0.04309211815043316,0.7057894061633395,0.14540175209502723,0.31788440984243205,1.922574663054178,0.4632861619374593,1.990895801924484,1.1611701774337322,0.2933552689030454,0.3813531023294589,0.0,0.8297256244907522,8.237524048784326,1656.0,333.0168,172.0,392.8888888888889,8512.266570387177,6564.626753000001,78.02343371637599,334.9783,361.5528978052126,412.7554139999999,10563.919220788435,1736.0,347.9776,222.0,296.3333333333333,7977.4155863087,6654.305823000001,97.39988275200001,355.5953,152.75462962962962,427.70060799999993,13706.153361114777,2447.0,629.1459,359.0,547.6666666666666,15223.316221159863,9153.001726,153.78989986449002,638.4403,406.3842592592593,776.2519700000001,20864.343084027754,2667.0,839.4364999999999,401.0,445.33333333333337,21722.099125652738,9561.875521999998,187.07438255352704,851.1851999999999,387.537037037037,1058.87019,23923.253271236492,2810.0,866.8258,391.0,484.3333333333333,22627.047005120483,10189.10158,183.791709862319,878.6123,430.6574074074074,1095.841878,23922.780148461454,2700.0,866.1126999999999,377.0,447.0,21972.67074239809,9686.534493,176.72798597867802,875.9009,524.3935185185186,1085.0215620000001,23426.7008556509,2457.0,915.9535000000001,352.0,356.44444444444446,23774.263939661578,8506.088659,172.272908894678,924.3217,470.1081961591221,1152.371141,22213.076561978723,2077.0,857.2238000000002,306.0,312.6666666666667,23450.94470686553,7205.923632,142.136063355658,862.5609999999999,474.63271604938274,1089.5752559999999,18108.465874467824,1440.0,637.1909000000002,233.0,239.66666666666669,17172.964542534537,4913.2426749999995,106.40992947407399,640.6896999999999,330.5462962962963,805.3191200000001,13753.739900862343,689.6470588235293,9.448729411764702,1.4119033153130587,40.15686274509803,222.08278867102396,78.63092141168761,3097.5795176862744,16.390339340669644,8.633592156862738,168.83683329298796,6.0994111764705865,2481.9412492094684,111.07266435986168,-1.5906560553633198,-0.9770538332505193,11.719338715878505,19.981502840787726,-7.045866118466885,484.8859546789696,0.35750007716495646,-1.1066859669357916,-31.07201082442175,-0.4568681245674754,230.06594835039164,-2.681660899653929,4.719175432525951,0.41331605462541465,3.6036139946174517,96.58545858430516,13.33684332243989,14.598793537869781,0.7419707705969076,3.918428642829682,94.75361951243825,2.8515530173010375,54.58734062035053,-181.3598615916955,-1.822407266435987,-0.07688761435595097,-2.4740484429065757,-25.495834935281305,12.878792261396299,-801.0289052087661,-0.25245858352465417,-1.8818929642445215,-27.178523454891504,-1.2833667612456703,-194.12011994890344,25.91003460207613,0.46459377162629456,-0.1920828454467025,-17.23452518262207,11.94920756973812,-10.538454605539215,140.86555941022675,-3.0647909868033243,0.7500901576316764,-4.366400209321186,0.2015718685121154,107.1595096232838,-177.29411764705884,0.2671117647058828,0.34901477618330157,-15.84967320261438,-71.1118373275236,-12.2302964361514,-796.6979621633986,-5.080179091979881,0.06634444444444554,20.36550371177278,0.108571882352941,-676.6162917776427,-262.8200692041522,-6.340405190311416,-0.4605743698081779,-9.544021530180698,-138.84540134136438,-26.242233501717354,-1274.1213636570546,-4.128445432823702,-6.009536524413683,-101.08388541206848,-3.9918996782006904,-1401.4023858529922,79.25605536332174,0.33633356401383724,0.5058889254877742,1.297962322183777,-40.452219231919315,-11.584802831734503,350.3627250903501,-1.1470676786232743,0.50983118031526,-11.00342342214058,0.4980434602076166,57.076110672462434,-83.52941176470591,-2.968100000000001,-0.3521390822423162,3.078431372549021,-53.14379084967318,-5.696143107829153,-378.09412388235285,0.7121879070899995,-2.741350980392158,-52.0779774872912,-2.1589877647058797,-179.02754236654644,0.7442034684520434,0.6143294784824271,0.43133539214866917,0.3825948545578793,0.2902147550157611,0.2214888469715896,0.15969406546563414,0.1253867052411977,0.09911085537917468,0.0720472026233188,0.06428809479116754,0.0447335110270644,0.03831163290321625,0.026371014649659796,0.02519613494948972,0.017890942272228885,16.013569906464905,5.745166423635308,3.5822704219193193,2.2197890146929122,0.48069302527516755,-0.3915342888459628,4.0380064914123865,0.967686066513208,6.024114616703945,0.6420664996134487,14.54532305164809,10.327912140035103,32.066901751570796,11.757562180684824,2.95313184307177,0.7413353867868702,3.53853699270767,2.277238918162047,7.015042133834885,0.30307154843492967,3.7698254098922206,2.4796775015876777,24.440792723941307,14.699962008548566,0.3184576384544355,0.6434494342477176,0.8561603279856195,0.9030211498540917,0.9030211498540917,0.9030211498540917,1.6225373399737981,783.176644313658,0.0,2.0,4.0,0.0,2.0,5.0,0.0,2.0,0.0,3.8069065481522046,1.9031107848227773,0.6570544118495478,0.3825446079279793,0.3825446079279793,0.3825446079279793,63.079782254283145,1877.1111078776792,93.34065247894725,36.8061001544643,88.13912532431875,,13.0,581.0,28.200506892259213,28.219926142153994,41.4005011827594,17.87071454272863,0.0,16.66179468024159,6.923737199690624,6.923737199690624,10.038883468458419,5.138973737607942,12.766666666666667,24.5,7.0,0.0,17.5,0.0,0.027160493827160462,-10.5,0.2035311094134623,0.012973239610309606,-0.1905578698031527,0.11806958473625118,0.21595058517555243,0.0,0.6437908496732027,0.9493827160493824,0.44025974025974035,0.630817610062893,0.8313131313131312,32.85320193605264,0.9054871900616952,1.1634871900616952,19.056313966410166,3.9258473065657356,8.582879065745665,51.90951590246281,12.5087263723114,0.49804941482444753,0.26631853785900783,0.06527415143603132,0.42297650130548303,0.7333333333333333,0.4488050889427706,-1.3674591303497616,-0.10539988908178952,-0.026812924124505134,-0.09767565216784015,0.5511949110572295,1.6794295169492743,0.04610876332352225,0.03292999052841714,0.04538998694457498,-0.40333002938407325,0.8235002542760217,0.8499295902136809,1.6708165292650414,1.1041605247641513,0.6711758469243002,1.4766041572619766,0.8167854737312451,1.213755023032864,0.7985372898971971,0.8164939852419967,0.7584454664349827,1.0038949101157901,0.9428848041026077,0.490261193749179,0.6718742656877513,1.2001902786726806,0.6181713773914339,1.145231717644835,0.9345261846453603,1.07996710735616,0.5097894773140444,0.3995684425198214,0.49127409929636384,1.0369818290065975,1.1514209535362727,0.8658875368840728,0.8243353146623594,1.042209201388889,0.939385714784004,1.0378281155270106,1.141716506326081,1.138431865101001,0.8812069580370421,0.8030933522296322,0.8624584187423955,1.0793421128863845,1.037538992055369,0.7945493849691052,0.8929548270672436,1.196201869419643,0.91226883254479,1.1048351677199946,1.0278426187400773,1.1798514993363327,0.7890772814831423,0.7930477517248202,0.7941636031735424,1.0311174043770759,1.0893786250426478,0.9140059447768886,0.9034848050268187,1.2130737304687502,1.093700949615445,1.1087829549637886,1.0861468055789607,1.167799739252597,0.9194165652994282,0.8965803815173751,0.9272734523361417,1.115062864708013,1.0265120766126663,1.2174324349737098,1.1334982181961033,1.004680765086207,1.1979930612311172,1.0813739695020732,1.0426766262475002,1.0076451088001335,1.2245013009078465,1.2070970623537551,1.2230948582470655,1.1725449922861784,0.8804420128175865,0.9693454362666885,0.8691836237585809,0.7927544683003599,1.0400410639938842,0.9073631960903806,0.8885232107929246,0.8979602573766478,0.97081059442338,0.9764075851449148,0.9484075053744477,0.9546001711643272,0.8870692596383488,1.1889839115208352,1.2109447659292412,0.7995605468750002,1.1063314236383612,0.8862713140481929,0.9012086529245693,0.7693380814832097,1.1944792933757158,1.1488268815257288,1.212209265973183,0.9741689634301269,7.5,0.2548760330578512,2.88888888888889,3.638888888888889,2.759444444444445,1.222777777777778,0.9047619047619045,0.43494897959183676,0.3159722222222222,0.30938271604938283,6408.646222949992,7200.657998178804,3065.243056507172,2804.095174258364,13.631860359347709,0.4426921031898763,7.597143426477369,0.7943402663477827,0.0,0.7333333333333333,1.8655187938192905,3.769314557148718,5.015370930121947,5.289880734043516,5.289880734043516,5.289880734043516,0.25862068965517243,0.012743801652892564,0.06718346253229977,0.08875338753387534,0.06417312661498709,0.029113756613756606,0.026610644257703077,0.015533892128279882,0.015046296296296297,0.01546913580246914,0.5932481930877322,21.702734839476815,8.024691358024691,4.302212008043665,161.27156800393067,1.0,4.2392622661451504,147.78800488548652,,110.68238846021156,132.50714707443916,134.38927605468322,110.68371513636289,145.4004046577264,132.21251114706007,130.78894062796914,146.62893983105675,0.15497962573144605,-0.16199334660291503,-0.6658982007350386,0.28082620872641506,0.08657800084699832,-0.08622542196408259,0.15062998990645873,0.02098855313884432,-0.123346599304896,-0.17709099093431044,-0.07207709158483283,0.08919800761637314,-0.0020444449134210175,0.26259784156488286,0.15391316146828304,0.04718206346649481,0.2286626781793144,0.089178081734882,0.00247795231422411,0.023801114497705726,0.23862660094687455,0.29507135605563134,0.24580571791924846,0.011563755000844908,-0.09934607073808714,-0.07286323243239959,-0.020572536217598945,-0.023274739583333353,-0.04337013202183506,0.06187542297130908,-0.0976927042607668,-0.005818869315793725,-0.08234548599597848,-0.06081280958552867,-0.07948758152386075,-0.029547140795379567,0.013686211434420243,0.017911918796071177,-0.04955936840481849,-0.15634416852678573,0.019600463596205996,-0.04882313973336961,0.016566261054806096,-0.06811692854911044,0.03164929775311872,-0.009421032058505929,0.01203882636804493,0.015728284671548336,-0.09640481064483113,0.010601098560404037,0.09269794868334748,-0.14801025390625003,-0.12007656765029036,-0.058327704689405596,-0.0964500617677229,-0.11623109930160981,0.0028816703655489364,0.04523339927053685,0.006675145305732975,-0.10223090876846208,-0.13403981223308511,-0.2360183525754324,-0.11473528067889831,-0.08359375000000001,-0.21989673033519333,-0.11738418919766733,-0.1446740061693485,-0.08859327928935407,-0.2448226665113332,-0.2105798939830972,-0.2301939371522681,-0.198597386709148,0.04216585789710092,0.01306027053567245,0.13146362097755526,0.011859262589928074,-0.06683174885299728,-0.054056840390100426,0.04150025903686882,-0.025677720857156843,0.02166657374175049,-0.02391200557383752,0.029959510025645248,0.008437586735764903,-0.06055953599454115,-0.1570634458165556,-0.12470368134387343,0.03833007812500003,-0.11964860304504782,-0.03622075772205363,-0.061030575926065145,0.021725843873251445,-0.1587607412178424,-0.154225758892666,-0.17698329414440084,-0.03606603146298671,1.3103706971044482,7.282509474252525,16.07522756463109,22.474379422725054,41.95108781573118,45.520955776943104,45.79766165929604,45.79766165929604,45.79766165929604,53.75418665196107,31.35159479071077,7.920592260382227,10.29653376289539,0.0,22.402591861250308,7867.370150197284,6484.022365652515,1823.3194656686337,136.0,45.0,59.0,83.0,104.0,119.0,131.0,134.0,123.0,420.1137264880006,29.0,5.003946305945459,5.877735781779639,6.823286122355687,7.734996194022781,8.685922794690725,9.617204500998055,10.571906494871117,11.51523280102192,12.473298151914417,0.7254901960784312,1.007529411764706,1.1420164718907464,0.6864606137184706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6582720676294471,0.9920030757400999,1.0283192665267127,0.6116998439514215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,4.0,0.0,2.0,0.0,0.0,1.0,2.0,3.0,2.0,0.0,1.0,6.0,1.0,0.0,0.0,0.0,20.42975312453822,5.697039313055833,0.0,5.907179729351506,10.209329170397666,4.794537184071822,14.65560578613185,8.417796984328938,11.761884949391115,6.923737199690624,13.344558822616634,35.204334231006726,18.063713263057657,276.49747504665595,-842.4570177265043,-64.93420845552967,-16.51876505346087,-60.1755012661789,339.5772573009391,1034.6540901511748,28.40644402341757,20.28733510100343,27.96362405813986,0.46153846153846156,0.6879822926144392,0.1564018880794382,126.37303710689845,0.11584356765434399,58.32255153898827,0.3120177073855609,7.0,0.2413793103448276,0.32887498404182,0.6644978699426414,0.8841669352634999,0.932560662350644,0.932560662350644,0.932560662350644,-1.6030999999999969,,3.321428571428571,2.407776396188849,1.766002466560814,3.3163115933867893,-7.718216996693219,2.2203182374541006,2.1947329820812116,-3.3561076309789333,98.52720000000002,28.219926142153994,0.0,14.938793199308897,16.97478582993073,43.70588209833365,13.08951281182515,10.60217582694588,0.0,0.0,4.07753744390572,0.0,5.5093883366279774,3.044522437723423,7.113956109566034,5.53338948872752,8.810310466357958,7.765993079407675,10.56666509647364,36.99999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.38400000000001,0.0,46.13129382603738,0.0,0.0,-3.7586868665184965,0.0,0.0,-0.8623766712901351,58.242840066428066,15.17785720606636,0.0,0.0,71.93434541001571,19.798403538541308,11.835812092322787,20.268296022307258,10.60217582694588,0.0,0.0,0.0,35.009491299642,33.5718754491018,32.3594577737061,295.5760097709731,,221.90837552489756,264.83594034175326,268.6477371118434,221.91354776115077,292.5205065896762,264.2605542765309,261.41530844245074,293.5064802273712,32.35945777370609,295.5760097709732,,219.32504219156425,262.60697393087105,267.04193984997266,219.3341942996277,298.519026312146,262.20470405666606,259.38314827385716,296.61398729309246,5.141062950817325,220.49192233578736,,163.77252207950337,201.64006605815476,204.88440628929612,163.767832823095,210.26563161167635,200.6172664460944,197.81505583631827,216.15940416136368,1.1984984360631887,10.947259621147152,,8.218828723144354,9.808738531176047,9.949916189327533,8.219020287450029,10.834092836654674,9.787427936167811,9.682048460831508,10.870610378791525,2.641827033911233,147.78800488548652,,110.68238846021156,132.50714707443916,134.38927605468322,110.68371513636289,145.4004046577264,132.21251114706007,130.78894062796914,146.62893983105675,50.5921568627451,0.0,3.4190083741314803,0.0,0.0,4.935371817712151,19.49780678310617,52.44428259286235,1.3805211918713005,5.445456745702056,0.0,1.4120429421768703,-1.98450005469226,1.3007285784301474,0.0,0.0,0.0,31.196692041522496,423.8485067823254,95.14145848478381,192.2350424145846,255.78391743621933,269.7839174362193,269.7839174362193,269.7839174362193,990.0,134.3035291475998,192.22622556526963,79.42176245878996,195.74,162.06,0.8571428571428571,7.425357887027151,5.857980995127572,3.744086565736661,5.108774393501691,,5.105999160257348,5.113036855326411,5.11246977628429,5.105990701561736,5.0914748216184345,5.112484113282612,5.111998010409821,5.1011808104589935,0.13866987280506152,0.18921386642598856,,0.1891110800095314,0.18937173538245966,0.18935073245497372,0.18911076672450874,0.1885731415414235,0.18935126345491154,0.18933325964480818,0.18893262260959234,2.313429452548686,2.624211303742641,,2.6236679273676247,2.625045297243014,2.624934382632495,2.6236662707471763,2.6208193104481112,2.6249371869479914,2.6248421008854845,2.6227238174038385,284.57000000000045,1288.3263222541727,165.41195744778219,,165.3045224802448,164.03592986288118,164.21618955229457,165.30679094912227,167.92422311269297,164.16051627588325,164.27403375908364,166.13447123924325,47.71578971311751,6.126368794362303,,6.122389721490548,6.07540480973634,6.082081094529428,6.122473738856381,6.219415670840481,6.080019121329009,6.084223472558653,6.153128564416416,8.154351003372826,6.1016908471088005,,6.101041136690136,6.093337261368735,6.094435561710889,6.1010548595652185,6.116764597757947,6.094096479943172,6.0947877439268705,6.106049301145351,24.269103628282295,26.05136400817687,27.669575468207253,0.005102749433106624,-2.265626306180058,-0.43463543369342483,-0.19742237619457648,4.165848852976829,-3.7586868665184965,356.76393666760146,170.34310793415438,-519.0164817102092,-40.004325094443374,-10.176793759023711,-37.07260583644352,209.20496790300643,637.4242416622294,17.500492398673916,12.498514542396656,17.22768220708728,1918.0,41.0,3.601002516302501,1.9000847932123532,0.3535533905932738,0.05892556509887896,0.6497117643576986,0.3331449764262584,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.48556236094870275,0.27436426013822257,0.9944111305323604,0.5850083188689272,1.7663541476305973,0.8780241147469999,20.093493648205172,16.586895919025533,12.508726372311406,11.0952507821785,13.05966397570925,9.966998113721532,9.421949862472415,7.397815609230664,8.226200996471498,5.979917817735461,6.6859618582814235,4.652285146814698,4.559084315482734,3.1381507433095157,3.3006936783831535,2.343713437661984,5.553325113154985,3.4591205418290847,9.0293827636739,5.255358681764474,14.631996937519117,7.6922478581663265,90.38013063955482,38.8469188674306,28.639212714937827,27.195223788542446,27.195223788542446,27.195223788542446,148.0,178.0,56.065031999999974,37.20896800000001,0.2549019607843137,139.12,11.784722222222221,5.652777777777776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,1.0,0.0,0.0,51.0,0.0,1.0,53.0,0.0,5.0,5.0,48.0,5.0,29.0,48.0,0.0,0.0,0.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,7.0,5.0,3.0,27.0,12.0,0.0,4.0,6.0,0.0,3.0,7.0,2.0,0.0,0.0,0.0,0.0,3.5553480614894135,5.529429087511423,4.110873864173311,4.382026634673881,4.812184355372417,5.117993812416755,5.3471075307174685,5.488937726156687,5.568344503761097,5.429345628954441 +4740,CC(=O)CCCCn1c(=O)c2c(ncn2C)n(C)c1=O,0,23.0,6.389989473684211,3.1578947368421053,8.31578947368421,167.8462756382627,90.69502431578947,1.3428511654547897,6.4242026315789476,5.918128654970761,7.890019789473682,202.30674069152192,24.76923076923077,6.4980769230769235,3.7948717948717947,7.641025641025641,151.38558782659484,93.71505756410254,1.635669681538461,6.617576923076924,3.277065527065527,7.884118051282048,242.79948988704396,20.514285714285716,6.435995714285713,3.4714285714285715,6.257142857142857,165.06882664882198,76.72834654285715,1.359929486186243,6.494758571428573,3.1404761904761904,7.893993257142858,197.56562203795792,19.105882352941176,6.378621176470589,2.988235294117647,5.011764705882353,160.2924249830345,70.06817571764704,1.298840775625741,6.449415294117648,3.482679738562092,7.876855623529409,186.64426375590824,16.8125,6.509853125000002,2.5520833333333335,3.9375,168.74253104137068,59.92668713541665,1.123192539858677,6.537656250000002,4.147569444444445,8.040360125000003,159.89238801649552,14.214285714285714,6.370940476190475,2.4761904761904763,2.25,167.11819426269034,48.05768304761905,1.1371965046248806,6.410935714285714,3.297619047619047,7.9283325714285695,154.73064038917622,11.938271604938272,6.099617283950618,2.1604938271604937,1.8888888888888888,165.07275781499422,39.11561001234568,1.0760775071942592,6.148853086419754,3.0048010973936905,7.70268992592593,138.39848606213846,10.789473684210526,5.925276315789474,2.039473684210526,2.3421052631578947,171.48242257016142,36.29560307894737,0.9547278172713289,5.957361842105263,2.7054093567251463,7.577293789473683,122.99091472663724,15.132075471698114,6.151811320754715,2.207547169811321,3.8679245283018866,165.07152015906766,54.0285050188679,1.0978307241110565,6.198703773584905,4.50524109014675,7.7195258867924545,147.99150397466238,7.831024930747925,0.15576897506925194,0.02186877315348708,0.6648199445983378,4.725761772853187,1.4726489346700407,37.05404831578947,0.20591866688202215,0.14390283933518005,2.492382271468145,0.09534356786703596,46.4422377134223,0.4915121812628732,0.0003233326230555362,-0.014601705852105424,0.3365295830669791,2.1946160948931044,-0.8938472963402743,2.242429051282064,-0.0524203015885524,0.003914637048085738,-0.03627940747054316,-0.003636399176077845,-5.55687788542499,1.63213296398892,0.030844784329244097,0.003287391896706046,0.07728531855955678,1.1855164226355364,0.43605553057719454,7.722769457142861,0.04181971703045909,0.028558664424218408,0.1762894077298509,0.01712617348634745,9.89613057112977,0.3677366791591981,0.005551520286785027,-0.0007275942296823944,-0.05429362880886426,0.10891314974743375,-0.3349674033014262,1.6621018823529459,-0.03357774780933357,0.006633290695779668,-0.18660311770137422,-0.00045722483298028235,-3.592367417460712,-0.434095106186519,-0.005166288665743374,0.0006953501121507354,-0.13576292705447832,-0.8606301939058172,0.031046733193045378,-2.053273197916664,-0.0014856383952244676,-0.005463064115881845,0.05412723145583259,-0.0017538902354570544,-1.434365297043633,-2.655586334256694,-0.050558824693312264,-0.001206808579847064,-0.18111067141538056,-2.0095963593193518,0.0898651735738622,-12.464190952380951,-0.016634603506257752,-0.048760389460493346,-0.46714556859986217,-0.02686710170162246,-8.73289741820496,-2.0311548852638417,-0.026147142710577574,0.0018056105497932554,0.014192401080674405,-0.883656509695291,-0.1872724475582548,-9.628141740740741,-0.03613901952531977,-0.02685686792517351,-0.43217001242547565,-0.01378058930953113,-11.158644663221724,0.7963988919667594,-0.013922576177285241,-0.004435673161091335,0.02423822714681441,0.32271468144044313,0.1917570881715867,3.9548428157894655,0.04105175202184483,-0.009681371191135704,-0.19673361034164358,-0.010708750692520778,9.719726193411624,1.274238227146814,0.059169455913866104,0.004335162435218243,-0.06601160298959911,0.9157476611090785,-0.16197530299227728,5.702956566037735,-0.025448885476030095,0.05323807426958657,1.2142821884237236,0.03962509548946843,-2.2285317171881123,,,0.45499999999999996,1.175,0.475,0.05,0.7,-0.225,0.8154868550848166,0.024189272602327793,0.03278927260232779,0.8590934108124175,0.22523281889924268,0.2462885866170843,1.6745802658972342,0.471521405516327,1.983517931213136,1.2955549151959291,0.4250385393394551,0.26292447667775165,0.0,0.6879630160172068,7.319418169368434,874.0,242.8196,120.0,316.0,6378.158474253983,3446.410924,51.02834428728201,244.11970000000002,224.8888888888889,299.8207519999999,7687.656146277833,966.0,253.425,148.0,298.0,5904.037925237199,3654.887244999999,63.79111757999998,258.0855,127.80555555555556,307.48060399999986,9469.180105594714,1436.0,450.51969999999994,243.0,438.0,11554.817865417539,5370.984258,95.19506403303701,454.6331000000001,219.83333333333334,552.5795280000001,13829.593542657054,1624.0,542.1828,254.0,426.0,13624.856123557933,5955.794935999998,110.40146592818797,548.2003000000001,296.0277777777778,669.5327279999998,15864.762419252202,1614.0,624.9459000000002,245.0,378.0,16199.282979971586,5752.961964999999,107.82648382643299,627.6150000000002,398.1666666666667,771.8745720000003,15349.66924958357,1194.0,535.1589999999999,208.0,189.0,14037.92831806599,4036.845376,95.52450638848998,538.5186,276.99999999999994,665.9799359999998,12997.373792690802,967.0,494.0690000000001,175.0,153.0,13370.893383014532,3168.364411,87.162278082735,498.05710000000005,243.3888888888889,623.9178840000003,11210.277371033215,820.0,450.321,155.0,178.0,13032.664115332267,2758.465834,72.559314112621,452.7595,205.61111111111111,575.8743279999999,9347.309519224431,802.0,326.0459999999999,117.0,205.0,8748.790568430586,2863.5107659999985,58.18502837788599,328.53129999999993,238.77777777777777,409.1348720000001,7843.5497106571065,297.57894736842115,5.919221052631574,0.831013379832509,25.26315789473684,179.5789473684211,55.96065951746154,1408.053836,7.824909341516841,5.468307894736842,94.71052631578951,3.6230555789473664,1764.8050331100474,19.168975069252056,0.012609972299165911,-0.5694665282321115,13.124653739612185,85.59002770083107,-34.8600445572707,87.45473300000049,-2.0443917619535434,0.15267084487534377,-1.4148968913511832,-0.14181956786703595,-216.71823753157463,114.2493074792244,2.1591349030470868,0.23011743276942323,5.409972299168975,82.98614958448755,30.523887140403616,540.5938620000003,2.9273801921321363,1.9991065096952885,12.340258541089563,1.1988321440443215,692.7291399790839,31.25761772853184,0.4718792243767273,-0.06184550952300353,-4.614958448753462,9.25761772853187,-28.472229280621228,141.2786600000004,-2.8541085637933534,0.5638297091412718,-15.861265004616808,-0.038864110803324,-305.3512304841605,-41.67313019390582,-0.4959637119113639,0.0667536107664706,-13.033240997229917,-82.62049861495845,2.9804863865323563,-197.11422699999974,-0.14262128594154888,-0.5244541551246571,5.196214219759929,-0.16837346260387723,-137.69906851618876,-223.06925207756228,-4.24694127423823,-0.10137192070715338,-15.213296398891966,-168.80609418282555,7.548674580204425,-1046.9920399999999,-1.3973066945256511,-4.095872714681441,-39.24022776238842,-2.2568365429362864,-733.5633831292166,-164.52354570637118,-2.1179185595567835,0.1462544545332537,1.1495844875346268,-71.57617728531856,-15.16906825221864,-779.879481,-2.927260581550901,-2.1754063019390544,-35.005771006463526,-1.1162277340720215,-903.8502177209596,60.52631578947371,-1.0581157894736783,-0.33711116024294147,1.8421052631578951,24.526315789473678,14.57353870104059,300.5680539999994,3.119933153660207,-0.7357842105263135,-14.951754385964913,-0.8138650526315792,738.6991906992835,67.53462603878114,3.1359811634349035,0.2297636090665669,-3.4986149584487527,48.534626038781155,-8.584691058590696,302.256698,-1.348790930229595,2.821617936288088,64.35695598645735,2.1001300609418267,-118.11218101096995,0.7430721420318147,0.5959688323663619,0.4490680052536448,0.31117234996666765,0.29051159377656427,0.16617306060505452,0.1784558212410407,0.08403904559864094,0.11127411582186987,0.043024607039604874,0.069307809852406,0.023776106057900242,0.04405549289070843,0.012476484349769812,0.028582229695904172,0.007384181700506377,8.024936523262681,5.758102012467508,3.551236006181708,2.238800981638482,0.509079099689038,-0.4408440775545653,3.3313265173051776,0.9725140957748859,6.0248924609324055,0.995281609723023,14.565257933541588,11.036002570699853,16.012354265066694,11.78339868044264,1.9430479080012217,0.7436149401518113,3.4981920266405973,2.2830305259102275,7.010452479339,1.3309033120639961,3.7099790215288664,2.4762144534620214,20.800887746296606,14.701759688416667,0.306095058986472,0.561194925627835,0.7960949366411854,0.8250163973117592,0.853937857982333,0.853937857982333,1.9344109607198539,766.2398536300292,0.0,2.0,2.0,0.0,2.0,3.0,0.0,0.0,0.0,3.5768224701041915,2.1841221922521763,0.901701644907642,0.7438069080655358,0.5859121712234305,0.5859121712234305,216.68252928997157,985.2013393081365,53.3521365063231,25.926351034424645,53.043866430345645,,10.0,336.0,0.0,14.383611552215466,17.03225523962042,36.971099213074595,0.0,22.38525657003788,18.662443613145733,0.0,4.9839785209472085,0.0,9.1,23.5,9.5,1.0,14.0,0.0,0.04500000000000002,-4.5,0.1752268602540834,0.015657894736842093,-0.1595689655172413,0.0,0.20562011173184347,0.0,0.6131578947368423,0.8949999999999998,0.43793103448275894,0.5975000000000003,0.8949999999999998,16.30973710169633,0.4837854520465559,0.6557854520465558,17.18186821624835,4.504656377984854,4.925771732341686,33.49160531794468,9.43042811032654,0.5083798882681565,0.27472527472527475,0.0,0.4065934065934066,0.5384615384615384,0.28196544468807,-0.5590521337323641,-0.06419483019327596,-0.014711898256114844,-0.055905213373236416,0.71803455531193,1.4236451941293065,0.04317524155376746,0.03746434721392911,0.050844471218903786,-2.0810876735048485,0.7539908211114434,0.656648901171207,1.7524255145173224,0.6947382478632479,0.3433958577569362,1.974863121529327,0.7649840122652227,1.4518771269889783,0.626521096170853,0.5061381406199409,0.6687827367928505,1.1903432813667998,0.7158244479256151,0.6520098979188993,1.0278496353205013,1.1402827380952383,0.71524451515659,0.8746122471985949,0.7191342660677316,0.7924265756192983,0.6493387633004091,0.5086384224894921,0.6083385956495595,0.7617056853402753,0.8849851224536504,0.8992984758056404,1.2241792692927076,1.223357843137255,0.9514085235500996,1.3228108514244525,0.8886220693398508,1.2252451139881473,0.8820816622797688,1.0568995200191769,0.9602469763151328,1.0849000469099639,1.0717569051409028,1.2172988427753657,1.119881544277038,1.2281141493055556,1.2845151304220395,0.9693154306453933,1.0669981328827662,0.9198757833246448,1.204454418249912,1.2140428668457284,1.226112562044654,0.9438319332506769,1.3255185961898022,1.4144309009957456,1.2028043424145765,1.3076636904761907,1.4471682576899454,0.9389911436052518,1.3201514442171884,1.0279090099080643,1.416746369493827,1.3058308377841576,1.3906875891855106,1.1253679034497603,1.2264822893876068,1.1219030200529967,0.786744601674075,0.8136574074074076,1.1039540908630394,1.0488486198849047,1.2272637357506602,1.172850546273818,1.1441580763945625,1.2237056399220783,1.1202553600566025,1.2320591827980445,0.908803501945525,1.0341327806290306,0.9269236658720469,0.7997395833333334,0.8824369871043374,0.6751354377641793,0.9037296126294824,0.7128381177616008,1.0276170296112959,1.0124282208020743,1.0386847429276624,0.7624420792339267,0.8034969398856041,0.5352826960846389,0.7030836125797081,0.994811320754717,0.7366813023955405,1.0477586727369388,0.8135867980915028,1.1245489145031051,0.5522482028588291,0.4711310444375707,0.5043329066109092,1.04987730648103,4.0,0.04000000000000001,2.88888888888889,2.125,1.751666666666667,0.5905555555555555,0.27922902494331064,0.27171910430839,0.15042359536407154,0.12655864197530867,3835.142579207116,4303.8798277653705,1997.4562875793604,1821.627176029304,12.866598171883147,0.4581743870033116,6.971452441662657,0.8456122708361369,1.0,0.5384615384615384,1.6711050433393937,3.063805321191409,4.346225868535943,4.504120605378049,4.662015342220155,4.662015342220155,0.19047619047619047,0.006666666666666668,0.09629629629629632,0.06640625,0.06040229885057472,0.029527777777777778,0.01861526832955404,0.019408507450599282,0.01074454252600511,0.014062071330589851,0.5126058697042543,16.3718820861678,6.84,3.4425,115.01518969017611,1.0,3.9120587936174633,86.89174229049897,,67.22742915421645,65.77978597280358,64.84323925884686,67.2407051409325,90.78760527644886,66.62521031343854,67.31345820641042,82.94604997627725,0.06276473202543233,0.0020757190121575148,-0.6676966169808713,0.5061965811965812,0.4643941443472512,-0.6069656353912674,0.06051778829053126,-0.2545679922189171,0.02720333432037239,-0.014556116806741955,-0.03813995277740274,-0.11965138113530205,0.20841881853555003,0.19801622444733355,0.15032356290100599,0.11625,0.2508625020934516,0.2961028391161648,0.20841904753095583,0.20308851870345024,0.1984579634158521,0.07073128779158228,0.1796258926478526,0.21308470604269966,0.0469589462951788,0.03563944799865908,-0.03327092126182561,-0.08166666666666667,0.023046686435418275,-0.22745910136177735,0.04485614819163203,-0.16306315652563647,0.04609562067312192,-0.07486938092825349,-0.004795549854164447,-0.07735129904006499,-0.05543273198915222,-0.03316635205082745,0.03179648475341464,-0.2042100694444445,-0.1821145955451348,0.021082236548116376,-0.05541292493651019,-0.007214685379036767,-0.03796356028220692,0.021717066469080924,-0.018395475171466114,-0.030884930779919894,-0.33911095389694595,-0.32457570367163785,-0.05518410069815154,-0.27242063492063495,-0.4252428403952437,0.061022808259456114,-0.33637865547526985,-0.08078239704119825,-0.3388424417875461,-0.18742934177777182,-0.28179249321874267,-0.18803782608608155,-0.25937280282286757,-0.1678584756621339,0.08256569937053566,0.021347736625514417,-0.18698710433763185,-0.12716706823287438,-0.2598404810909149,-0.17550142525944504,-0.1866319528457545,-0.17339635952830973,-0.14453611940292854,-0.2402693154468041,0.1016979129819597,-0.0893796481044799,-0.20283136735469068,0.03645833333333334,0.06828839390386866,0.130212356561784,0.10673173365794494,0.1993590607565694,-0.06727713807359804,-0.07893396313790865,-0.11231749484616484,0.20928634518836978,0.16271666077113536,0.3798539207667026,0.19823528301252608,-0.09929245283018868,0.19377778760866193,-0.1099890810219268,0.15390913612015752,-0.1235870737770978,0.369958470003388,0.48719741041507536,0.4156032375957308,-0.04798502025116767,3.711512668113607,7.108114876714261,3.400398555779217,16.288812601013788,31.573665381156005,36.94780058723602,37.68606374513076,37.845221639867596,37.845221639867596,39.67035862426272,25.911098303918582,8.500770786789102,5.258489533555033,0.0,13.759260320344136,3825.1725345401655,3216.8014754288515,711.5900911485833,38.0,30.0,40.0,52.0,60.0,64.0,63.0,62.0,50.0,278.1378904360005,21.0,4.634728988229636,5.493061443340548,6.38856140554563,7.275864600546533,8.182279739259018,9.083529205109796,9.996385734902859,10.905570585295168,11.822386152344592,0.649122807017544,0.9987368421052635,1.145492580594048,0.6097743734909664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6384852505515287,0.9827657378740966,1.0167133054778248,0.6066500476715908,1.0,1.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.361636831863176,5.783244946364939,11.16387793838399,0.0,5.559266895052008,13.928736479654532,9.77851570501903,0.0,0.0,0.0,19.765380445542643,27.060921994192967,6.3273200747645415,140.1084925276512,-277.7927337453009,-31.898379946516155,-7.310335098560549,-27.779273374530092,356.7910218176228,707.4086055628356,21.453756559806944,18.616015935864095,25.264593055815553,0.5,0.7353872409324155,0.1653622601103684,6.985868578362625,0.16743294691874908,40.91659480218289,0.26461275906758447,5.0,0.23809523809523808,0.31843142632182586,0.5838124313536871,0.8281794779753039,0.8582665430953209,0.8883536082153378,0.8883536082153378,0.19300000000000006,,1.3214285714285716,1.599813866914844,1.4204008994654953,1.3177974512248314,-5.319610065744728,1.4208996328029377,1.3065363731051547,-2.474281947147792,74.74700000000003,4.794537184071822,0.0,18.685277464321274,14.09534396535438,32.730958474381225,0.0,27.165404736163666,0.0,0.0,3.7612001156935624,0.0,5.093750200806762,2.3978952727983707,6.621405651764134,4.727387818712341,8.258163361537619,6.842683282238422,9.963782708319883,24.66666666666667,1.519441181163313,4.068145245357096,0.0,0.0,0.0,0.8066239659444032,0.0,4.203404641177459,37.95200000000001,0.0,35.36581197375389,0.0,0.0,0.0,0.0,0.0,0.11790380658436228,43.52871806257382,11.24901029325548,0.0,0.0,24.468522410686212,25.434637555338778,0.0,26.186202068468653,15.916394442908185,0.0,11.16387793838399,0.0,23.171426192656725,24.262439520958093,24.605681284491112,173.78348458099794,,134.32271545129004,131.39959055891566,129.5444384277472,134.34963053674252,182.35193120964766,133.1083306635968,134.49626277551027,166.18984575300794,24.605681284491112,173.7834845809979,,133.14374112961247,130.00105009913497,128.35928532269878,133.173758750117,186.89482061864237,131.84977287211024,133.32951355282117,168.36638189970222,4.958263148414332,129.619747160798,,104.52238013873661,102.53046425458913,101.16118659268105,104.54041594963998,136.69232996963302,103.68885986839226,104.64139355037737,126.10465721844434,1.2302840642245556,8.689174229049897,,6.716135772564502,6.569979527945783,6.477221921387359,6.717481526837126,9.117596560482383,6.6554165331798405,6.724813138775514,8.309492287650396,2.514550314385626,86.89174229049897,,67.22742915421645,65.77978597280358,64.84323925884686,67.2407051409325,90.78760527644886,66.62521031343854,67.31345820641042,82.94604997627725,37.34509803921567,0.0,4.858500220285032,0.0,0.0,0.0,0.0,38.63510560815734,2.0926226694381453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.05270181152045,365.4135628750282,63.50199164689696,116.42460220527354,165.15658300436584,171.15658300436587,177.15658300436587,177.15658300436587,500.0,114.78236785457378,131.4859514702457,67.66626841187109,78.89,78.89,1.0,8.396191896777804,5.392317422778761,3.619626803171795,4.396808090508008,,4.377120792833778,4.375215373619275,4.373656943229011,4.37713716610286,4.392057357915327,4.376337934570219,4.377230355863232,4.389845547014501,0.18098134015858974,0.2198404045254004,,0.2188560396416889,0.21876076868096375,0.21868284716145053,0.21885685830514298,0.21960286789576636,0.21881689672851096,0.2188615177931616,0.21949227735072502,1.9795181080367061,2.1740260242541583,,2.169538335562635,2.1691029274136864,2.1687466688353676,2.169542076203854,2.172944944316536,2.1693594672341203,2.1695633660937617,2.1724412241156776,208.33999999999975,451.81782918952916,102.80248244005577,,103.40393484728797,103.45704469960887,103.6176539969384,103.4038154246398,103.6218105490079,103.43083889677604,103.40038034057682,103.33767985363706,22.59089145947646,5.1401241220027885,,5.170196742364398,5.172852234980444,5.18088269984692,5.17019077123199,5.1810905274503956,5.171541944838802,5.1700190170288405,5.166883992681853,6.806426246386113,5.325956681539015,,5.331790196526153,5.3323036800608845,5.333854901243835,5.331789041611524,5.333895014762552,5.332050346685169,5.3317558209696445,5.331149251586114,4.203404641177459,39.43395721911099,0.0,0.10750359557403377,0.11790380658436228,0.0,3.2927119987496063,1.8539680474781486,3.323884024658736,244.0667774690451,69.61984189263833,-138.035074486686,-15.850289503824904,-3.6325019601759476,-13.803507448668602,177.2892854639308,351.51099254784054,10.660361215449806,9.25028927757475,12.553964019565731,834.0,32.0,1.6045774581360246,0.6566674274928308,0.0,0.0,0.5348917427110753,0.12964501022962202,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.24437319301308577,0.06871121467657999,0.5033200015894829,0.10823650085930908,14.861442840636295,11.919376647327239,9.430428110326542,6.534619349300021,8.715347813296928,4.985191818151636,7.1382328496416285,3.3615618239456375,5.786254022737233,2.2372795660594536,4.15846859114436,1.4265663634740144,2.8195515450053397,0.7984949983852679,1.8006804708419628,0.46520344713190176,3.799626179097527,1.2318515428628418,6.26857768828024,1.6001245912798803,9.796951285045859,2.0623521371835576,66.99807370386414,35.767015617372905,24.76940316625232,23.27049394865043,22.48277367946612,22.48277367946612,102.0,121.0,40.518273999999984,26.931725999999998,0.23684210526315788,61.07,8.38888888888889,4.444444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,38.0,0.0,0.0,39.0,10.0,3.0,5.0,34.0,13.0,21.0,26.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,7.0,0.0,2.0,20.0,7.0,0.0,4.0,3.0,0.0,2.0,5.0,0.0,0.0,0.0,2.0,2.0,3.4011973816621555,6.297116513738631,4.098502572370764,4.761104987608851,5.420258412353084,5.8998973535824915,6.329748757184746,6.565540020233756,6.820873155002613,6.791335571384084 +68844,CCN[C@H]1CN(CCCOC)S(=O)(=O)c2sc(S(N)(=O)=O)cc21,0,38.36363636363637,6.455124999999999,3.2045454545454546,7.257575757575759,165.63111374163702,152.37422154545456,1.7018111591324767,6.512090909090907,6.579346707818931,8.072022068181816,212.2088538370059,40.022222222222226,6.466746666666666,3.933333333333333,3.511111111111111,147.93134938526885,154.70687213333338,1.991939877333334,6.647093333333334,2.25761316872428,8.067049511111106,262.5396475640047,31.240963855421686,6.578990361445787,3.397590361445783,5.576974564926372,160.0389232740216,118.86893681927714,1.6690751662432286,6.666643373493978,4.474494686565191,8.160150819277108,212.41187960681273,27.307692307692307,6.286456730769233,3.076923076923077,3.160256410256411,159.08558891483568,101.96790997115386,1.529944096905106,6.400123076923076,2.8461093304843295,7.957553750000001,194.42584125360193,22.384615384615383,6.278044444444444,2.769230769230769,3.681861348528016,160.66353671536314,81.54671482051279,1.3942456895613506,6.366473504273504,3.234806050906874,7.927319017094015,176.68006818778986,23.417391304347827,6.13134260869565,2.652173913043478,2.046376811594203,160.20236868602044,85.17631526956522,1.3800074076032702,6.237611304347825,2.555072463768116,7.8437979478260855,168.06220514065225,21.973913043478262,6.628989565217389,2.356521739130435,4.6173913043478265,166.03074055551824,79.02354376521737,1.2699401377971997,6.6715295652173925,5.438244766505637,8.264503652173913,161.72737233873346,16.745098039215687,6.284225490196077,2.1470588235294117,1.6176470588235294,162.92454505199942,55.24082307843137,1.2325354503209316,6.361566666666669,3.3174927378358734,8.002974843137252,148.25492303199306,12.4,6.188115789473684,1.7578947368421052,1.168421052631579,169.16881722105765,39.94058985263157,0.9829604071797263,6.220768421052632,3.3858187134502917,7.903407789473687,119.60404104866323,17.287190082644635,0.17896131198347098,0.017674016750044947,0.7453512396694214,4.429063360881543,1.6377786824989593,76.40873496694215,0.4077677333378446,0.16398161157024782,3.0952165099366287,0.11616078254132231,51.57109324625745,4.3754361799816355,-0.018717372589531676,-0.009248020244442778,0.259194214876033,-0.5246862565044385,-0.29549781942226483,19.10865554820939,-0.030501768621735387,-0.005651914600550996,-0.8005130452485951,0.008344093721303942,1.9631413101476223,3.91927212984168,0.0320124284327392,0.00012299047685674128,0.09418873842477346,1.1716424928363594,0.3763871370479148,17.05808996295929,0.12734816129966042,0.026951192372796917,1.016620522067183,0.01846423251891865,9.337145624938819,1.2390336935791484,-0.012897828591862686,0.0017231002120466432,0.06255959949141765,-0.1832883026064844,-0.05444147465109849,5.82381103218373,-0.011987538030039668,-0.0059974332485696275,-0.2730951674159798,-0.005558781011602036,3.823858301601419,-0.05447834993289537,-0.015823238945398038,-0.0016993121627518156,-0.025654269972451793,0.2430854779339627,-0.19352814461472792,-0.31435569654587764,-0.0015342926483987134,-0.01342865896729534,-0.25504491693581677,-0.01449727826781804,-0.8227351306242882,0.22150556952928496,-0.0014289997305066498,-0.0028187004889801215,-0.15226823571685227,-0.5946760091028866,-0.3116476827560655,0.9267225532159562,-0.06842751214472674,0.0024533291412145407,-0.3651891496455799,0.005081317458677676,-4.309561065135795,-2.020391663672296,0.06640809513115341,0.005549823386145094,-0.20246586417535037,0.8892502096059411,0.1899291675910278,-8.608013774847286,-0.019770845548593742,0.05252431728350696,1.2025083907069523,0.038896939197808116,-4.316733566343025,-6.647261383892402,-0.038447898436233974,-0.0015737972294557103,-0.15978974234321827,-0.978528601523254,-0.2556354907891039,-29.64992543396532,-0.11773722095475322,-0.04021209285367038,-0.43189254772922353,-0.029674003575190382,-16.008270421525058,-2.1876685515441494,-0.047880355045672014,-0.000738714908235436,0.007758808177468451,-1.078026678265913,-0.09952054985711387,-9.85382189612876,-0.0013839628207852023,-0.045027688125271845,-0.7291885812015843,-0.03411680837864288,-4.248732744527792,,,0.49420289855072463,1.065217391304348,0.43478260869565216,0.0,0.6304347826086957,-0.1956521739130435,1.0195617042724934,0.030492243732086585,0.0379705046016518,0.8354897395920683,0.18422904719085456,0.2815488639628456,1.8550514438645616,0.4657779111537002,1.9761122396731732,1.057938262347346,0.25639910222763423,0.3809011854229228,0.0,0.918173977325827,8.706007585727285,1688.0,284.02549999999997,141.0,319.33333333333337,7287.7690046320295,6704.4657480000005,74.87969100182897,286.5319999999999,289.49125514403295,355.16897099999994,9337.18956882826,1801.0,291.0036,177.0,158.0,6656.9107223370975,6961.8092460000025,89.63729448000004,299.11920000000003,101.5925925925926,363.0172279999998,11814.284140380212,2593.0,546.0562000000003,282.0,462.8888888888889,13283.230631743794,9866.121756000002,138.53323879818797,553.3314000000001,371.38305898491086,677.292518,17630.186007365457,2840.0,653.7915000000003,320.0,328.66666666666674,16544.901247142912,10604.662637000001,159.114186078131,665.6127999999999,295.99537037037027,827.58559,20220.2874903746,2619.0,734.5312,324.0,430.7777777777778,18797.633795697486,9540.965633999996,163.12674567867802,744.8774,378.47230795610426,927.4963249999997,20671.567977971412,2693.0,705.1043999999998,305.0,235.33333333333334,18423.27239889235,9795.276256000001,158.70085187437607,717.3253,293.8333333333333,902.0367639999998,19327.15359117501,2527.0,762.3337999999998,271.0,531.0,19093.535163884597,9087.707532999997,146.04311584667798,767.2259000000001,625.3981481481483,950.4179199999999,18598.64781895435,1708.0,640.9909999999999,219.0,165.0,16618.30359530394,5634.563953999999,125.71861593273502,648.8798000000003,338.38425925925907,816.3034339999997,15122.002149263293,1178.0,587.871,167.0,111.0,16071.037636000476,3794.356035999999,93.381238682074,590.9730000000001,321.6527777777777,750.8237400000003,11362.383899623008,760.636363636364,7.874297727272723,0.7776567370019777,32.79545454545454,194.87878787878788,72.06226202995421,3361.9843385454546,17.941780266865162,7.2151909090909045,136.18952643721167,5.1110744318181816,2269.128102835328,196.8946280991736,-0.8422817665289254,-0.41616091099992497,11.663739669421485,-23.61088154269973,-13.297401874001917,859.8894996694225,-1.3725795879780924,-0.25433615702479484,-36.02308703618678,0.37548421745867744,88.341358956643,325.2995867768594,2.6570315599173537,0.010208209579109527,7.8176652892561975,97.24632690541783,31.24013237497693,1415.821466925621,10.569897387871816,2.236948966942144,84.37950333157617,1.532531299070248,774.9830868699219,128.85950413223142,-1.3413741735537192,0.1792024220528509,6.506198347107436,-19.061983471074377,-5.661913363714243,605.6763473471079,-1.2467039551241255,-0.6237330578512412,-28.4018974112619,-0.5781132252066117,397.68126336654757,-6.373966942148758,-1.8513189566115704,-0.19881952304196243,-3.00154958677686,28.441000918273637,-22.642792919923167,-36.779616495867685,-0.17951223986264947,-1.571153099173555,-29.84025528149056,-1.6961815573347105,-96.26001028304171,25.47314049586777,-0.16433496900826472,-0.324150556232714,-17.51084710743801,-68.38774104683196,-35.83948351694754,106.57309361983496,-7.869163896643576,0.2821328512396722,-41.99675220924169,0.5843515077479328,-495.59952249061644,-232.34504132231405,7.636930940082642,0.6382296894066858,-23.28357438016529,102.26377410468324,21.841854272968195,-989.9215841074379,-2.27364723808828,6.0402964876033005,138.2884649312995,4.473148007747933,-496.42436012944785,-678.020661157025,-3.9216856404958653,-0.16052731740448245,-16.298553719008265,-99.80991735537191,-26.074820060488598,-3024.2923942644625,-12.00919653738483,-4.101633471074379,-44.0530398683808,-3.026748364669419,-1632.8435829955558,-207.8285123966942,-4.5486337293388415,-0.07017791628236641,0.7370867768595029,-102.41253443526172,-9.454452236425817,-936.1130801322323,-0.13147646797459422,-4.277630371900825,-69.2729152141505,-3.2410967959710733,-403.62961073014026,0.7500309728968287,0.6708814945867677,0.44637049818896285,0.4544711266329242,0.29453418413086946,0.28184922617698377,0.17071594376866864,0.18453160737928495,0.10223293530591483,0.11320252068645756,0.06288737331483775,0.07497534999731163,0.04254076778473293,0.048228118936297706,0.027999152573782767,0.030585493368167654,16.015595069391065,5.739359042111248,3.5840246183915636,2.1991851048275732,0.4727496184570045,-0.42201344632234994,4.04914189039877,0.9675833990040287,6.020060360765423,0.6409874371792837,14.543578629025577,10.294975792326372,32.06867369121623,11.750824708496435,2.967432416707228,0.7593122596053978,3.5402996178117965,2.2754311143925237,7.016344501612827,0.29726111030382,3.771795330688143,2.478327789465539,24.44905637878596,14.70023355856056,0.33590473691104655,0.5978617407040709,0.8061143846286237,0.8602429667600754,0.8602429667600754,0.8602429667600754,2.1626022826007123,756.9042640271008,0.0,2.0,5.0,0.0,1.0,2.0,1.0,0.0,0.0,3.554037076494809,2.068105529672334,0.8868079547421353,0.5797676137347034,0.5797676137347034,0.5797676137347034,62.75743764055346,1277.9145271875898,69.01348935365564,29.043511981536135,66.7530843135964,,11.0,391.0,20.046582306815168,16.835593968657875,21.004955590104693,43.017453768895805,0.0,10.371583059757844,7.109797541277533,6.923737199690624,5.316788604006331,9.87583669140799,11.366666666666667,24.5,10.0,0.0,14.5,0.0,0.005797101449275342,-4.5,0.20435323383084553,0.02847222222222212,-0.1758810116086234,0.07541806020066888,0.1957629179331305,0.0,0.6416666666666668,0.9536231884057969,0.4373134328358213,0.6131944444444447,0.878205128205128,23.449919198267345,0.7013216058379914,0.8733216058379913,19.21626401061757,4.237268085389655,6.47562387114545,42.66618320888492,10.712891956535104,0.5182370820668695,0.2404692082111437,0.1466275659824047,0.21114369501466274,0.6666666666666666,0.44728274535715845,-0.960288062110644,-0.08486738271086404,-0.02182472868433282,-0.07386831247004953,0.5527172546428419,1.186649355168548,0.03107749422581731,0.02696930352655791,0.03827901145704994,-2.7855024542794005,0.8718430872607994,0.7580142644755333,1.6098712991999007,1.0780626780626783,0.8567212057338011,1.5618272672061377,0.8562733747530846,1.3746892738510312,0.6788436686401966,0.841459822809249,0.5795228240953655,1.0769666712592105,0.7161806062543467,0.7825727521110359,1.158950069099793,1.0820997086057331,0.7743425888283347,0.9092551032331888,0.7175044544593442,0.6928378559507653,0.7817586565450864,0.4854480150549314,0.7896817011078906,0.7987636997747368,1.0235483263002083,0.9164883845896526,0.8736547001619324,1.0401007516392133,0.9590966133591697,1.159377168945082,1.009354686476412,1.172853724497835,0.8813861352936111,0.9229182080983748,0.8856771716989184,0.9645578560132048,0.9206921983902977,0.9986994535867728,0.9645566374020189,1.0758213835136914,0.9270232638293594,1.1330495608138356,0.923171589347144,0.9650311716297987,0.9914333327227338,1.049634940493101,1.0385360106248935,1.008184903785021,1.1087569696686252,0.8225728442838864,1.0258841027650716,1.3567627828497397,1.0290603260024476,1.2504179378535467,1.0998870720730651,1.3153509690737877,0.8094290630664891,0.9691659110594335,0.7694427625535076,1.131837846960343,1.1357938277186248,0.822598961174692,0.8197966528708743,1.2883545753110974,0.9426124365899775,0.8846970818013397,1.12905051410245,1.0388043079853038,0.8536030124846936,0.8568608627081886,0.861593903260509,1.0136022382013132,1.4997504200676322,1.2426435266917757,1.1172936942328617,1.1697579932874054,1.1908609035279485,1.1622451718081965,1.4947357068796694,1.3967681767384683,1.2678392125783537,1.264985622713893,1.2960319677020928,1.3052130131356368,0.9384247639536271,1.40939051464588,0.9102746832996398,0.7383885910201701,1.2857054781254178,0.8332128876865799,0.95388425231664,0.7632129341193824,1.416617803121259,1.5110025016629611,1.4548367366904618,0.987890690568685,7.0,0.049586776859504134,3.777777777777779,2.0555555555555554,2.331666666666667,1.3716666666666664,0.8271655328798185,0.3029691043083901,0.15042359536407152,0.10469135802469137,5837.146842519602,6466.560029173187,2990.5717395911897,2772.448952210021,14.487346445454982,0.4725829863375957,7.6408729981545145,0.896032881184399,1.0,0.6666666666666666,1.9053945421424885,3.3913260889649632,4.572623663895162,4.879664004902594,4.879664004902594,4.879664004902594,0.29166666666666663,0.009917355371900827,0.10493827160493831,0.05409356725146198,0.06301801801801803,0.042864583333333324,0.02363330093942339,0.01442710020516143,0.010744542526005107,0.013086419753086422,0.6283898256699953,19.32638888888889,7.486111111111111,4.158790170132325,140.27015571671325,1.0,4.052166352567017,104.23809313377484,,66.99258550484734,85.63111356710277,87.56599365465716,66.99686941767779,104.65440154567878,85.56757726500004,84.42579580717809,101.89017971590485,0.2531027980292949,-0.10458893255800689,-0.5232551476686396,0.34774774774774775,-0.11846438259126801,-0.1804259773191013,0.2500846998249173,-0.07480182007550851,-0.03446675847632941,-0.2586290951468803,0.07183227883589427,0.0380666995127176,0.22671539510498054,0.1788790441796487,0.006958829936405288,0.12636825889837938,0.2645350489190474,0.2298156283690388,0.22324790444887466,0.3123056359982992,0.16435496708880273,0.3284489207147571,0.15895409892189993,0.1810538624875171,0.0716735159187651,-0.07207048522897473,0.09749341286791874,0.083933045471507,-0.04138308433907874,-0.033241044857190635,0.07621917879812266,-0.029397956360876956,-0.03657381575372795,-0.08823136169610672,-0.047854197346032766,0.07414731899015771,-0.003151371025160911,-0.08841709289021911,-0.09614747947704044,-0.034419034419034426,0.0548841725952595,-0.11816501623982452,-0.004114132980763024,-0.003762663209860987,-0.08189124889495708,-0.08239970164188563,-0.12480355203065949,-0.015953416513697714,0.012813277835804215,-0.00798496454160234,-0.15948273269419377,-0.20429057820362165,-0.13426676492262343,-0.19028681108521117,0.01212848967617247,-0.1678100216135371,0.014961001527683869,-0.11798500960214144,0.04374382943632529,-0.08356543935489565,-0.11687218420191117,0.3710751468858639,0.3140103047673631,-0.2716381933773239,0.2007761319153828,0.1159675416590657,-0.11265745701157728,-0.048485556683841774,0.32030614152737574,0.38850542016899886,0.3348543143979868,-0.08370451922999118,-0.3845194824673026,-0.21483916277829396,-0.08904581520506412,-0.21438180261709677,-0.2209335296861709,-0.15608671276576244,-0.38804366342137725,-0.2887359919113691,-0.24522318367656723,-0.1395354885006303,-0.2554562988126767,-0.31041169410708175,-0.1265485333987532,-0.267545842813749,-0.04179666222357503,0.010409599883284078,-0.2433983419129382,-0.060765566752440076,-0.12896198190418892,-0.003393997875841143,-0.2745898622052662,-0.235585646064066,-0.29370332768295854,-0.08238593516409749,4.473276779604822,7.575531266845807,3.5327755290014426,24.529116386372813,39.67477710105883,43.96648021991357,45.63879506546724,45.63879506546724,45.63879506546724,45.450581512482984,24.332580033988958,5.897179351235588,8.760727264727224,0.0,21.11800147849402,6300.717657384228,5605.1212678981365,1120.4123356272094,69.0,36.0,46.0,60.0,81.0,102.0,100.0,98.0,91.0,383.06433377200057,24.0,4.795790545596741,5.652489180268651,6.577861357721047,7.480428306074208,8.416930769477844,9.337413454539659,10.278733974060291,11.207310216708422,12.150427791562722,0.7651515151515149,1.0020909090909094,1.1372688338676589,0.7256529999016054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6811738296135005,0.9880570409982173,1.0271717539561678,0.6158691458653295,1.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,5.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,10.05365155780638,8.418358355044159,0.0,10.023291153407584,10.023291153407584,0.0,21.974567706265816,4.305215991296234,11.336785877934737,6.923737199690624,19.031945097300195,38.41148463846056,0.0,266.23464356806153,-571.5891180522601,-50.51533425135633,-12.990661773915004,-43.9683936963277,328.992081208615,706.3254091353297,18.498155102299307,16.05285020762113,22.784690617268705,0.45454545454545453,0.6603101680437423,0.1791570228286915,103.18568938154876,0.11760909679530997,0.0,0.33968983195625796,6.0,0.2916666666666667,0.3490096909791655,0.6211866593195751,0.8375640512256316,0.8938044004882295,0.8938044004882295,0.8938044004882295,0.08690000000000164,,3.5535714285714284,1.9118041940971398,1.2807181999550727,3.549904538238846,-5.693602983137765,1.8120410036719714,1.8773312929098096,-2.4802096495060106,87.36170000000004,21.572456922457924,0.0,9.622004595302565,5.138973737607942,27.804758006808754,33.35094872352818,11.629818560158606,0.0,0.0,3.8918202981106265,0.0,5.262690188904886,2.3978952727983707,6.829793737512425,4.727387818712341,8.501267040865978,6.9167150203536085,10.234193194263003,33.66666666666666,1.3677619520030233,0.0,0.0,0.0,0.7079409695977155,0.0,0.39604439615352405,0.0,44.09200000000001,0.0,48.5642902041441,0.0,0.0,-7.653742210204151,0.0,0.0,0.0,50.03982869017699,10.455762341614273,0.0,0.0,54.491758683482274,24.783445260615217,0.0,24.94985114346159,14.484725423505768,0.0,0.0,0.0,31.928731995670635,29.97164850299402,27.46289219693389,208.47618626754968,,135.16854304976818,171.09598329124057,175.02062050931823,135.18007563573798,211.65111273341614,170.97758574707206,168.68834541497273,203.9960298361146,27.462892196933897,208.4761862675496,,132.85099646591726,169.35042294010844,173.89573728464242,132.86492050210396,215.05914594784988,169.32311352632811,166.97426032144645,206.26056908131574,5.032627554692197,144.08585280967304,,92.51215318047915,120.09704172598866,122.99921675321391,92.5206678679301,146.68559058956163,119.7483979812146,117.81264804619067,142.26996558027062,1.1940387911710386,9.064182011632594,,5.8768931760768774,7.438955795271329,7.6095921960573145,5.877394592858173,9.202222292757224,7.4338080759596545,7.33427588760751,8.8693926015702,2.5610580325942607,104.23809313377484,,66.99258550484734,85.63111356710277,87.56599365465716,66.99686941767779,104.65440154567878,85.56757726500004,84.42579580717809,101.89017971590485,43.47450980392156,0.0,3.4651816339674837,0.0,0.0,5.146933157330885,0.0,45.19555717407138,2.2354806127697993,3.197272140337617,4.963318530899249,0.0,-0.256648242630386,1.3661668556311413,0.0,0.0,0.0,27.0982424180745,393.0342586614135,83.8373598542695,149.21834791445838,201.19544121138713,214.70521621571413,214.70521621571413,214.70521621571413,730.0,122.89738559600957,202.192466115263,71.76176257152125,163.79999999999998,118.79999999999998,0.8333333333333334,7.828859407851821,5.584962500721156,3.926270575711015,4.695500410410611,,4.623350851877885,4.689800310600456,4.688509410818389,4.623250686472553,4.614070340536814,4.687697933264704,4.684536827479859,4.6586741735933535,0.1707074163352615,0.2041521917569831,,0.20101525442947327,0.20390436133045461,0.20384823525297344,0.20101089941185013,0.2006117539363832,0.20381295362020452,0.20367551423825475,0.20255105102579798,2.2005991353424936,2.379513813602724,,2.364028857745435,2.3782991267897056,2.3780238320236835,2.3640071924006225,2.362019527593612,2.3778507391032875,2.3771761708737436,2.371640018486981,257.96,303.7024004512673,129.12371404084416,,132.1742517563486,128.40291615788382,128.6386688916914,132.180645910295,133.87146142569702,128.56943935991796,128.77025800519746,131.11516626108826,13.20445219353336,5.614074523514963,,5.746706598102113,5.582735485125384,5.592985603986582,5.7469846047954345,5.820498322856392,5.58997562434426,5.598706869791194,5.700659402656012,6.5489573989768655,5.693680091299907,,5.717030264033207,5.688082225443061,5.689916580766293,5.717078639561742,5.729789219426121,5.689378265439332,5.690938993831412,5.708985191690295,54.814017648917535,0.0,8.344205297668502,0.475802337910473,0.0,1.1111137093726373,0.5667938633786848,3.576421734588897,-6.0962955614344505,307.69093581661696,158.46997491310307,-340.22511865623574,-30.06807695743388,-7.732389060368996,-26.171162973556598,195.82487897526622,420.42375990616813,11.010596275952581,9.555085452412914,13.562056771166716,1142.0,38.0,2.9859847012545893,2.192813687286111,0.4553418012614795,0.1045691115576428,1.1141047337184506,0.7876332961401191,0.2957122823747169,0.09243928961479594,0.0,0.0,0.0,0.0,0.09622504486493763,0.08838834764831845,0.19106431048641248,0.32343908669158733,0.6161981580867001,0.8207344664112073,17.25071237662706,15.430274375495658,10.712891956535108,10.907307039190181,10.6032306287113,10.146572142371415,7.852933413358757,8.488453939447108,6.13397611835489,6.792151241187454,5.093877238501858,6.073003349782242,4.339158314042759,4.919268131502366,2.799915257378277,3.0585493368167653,5.447020112663606,5.12859112034642,7.632324583755321,7.400965075228578,12.415212269973038,12.428636656889838,79.99214750935884,44.460403253620136,34.07671284112642,29.36372801353277,29.36372801353277,29.36372801353277,120.0,142.0,50.052652999999964,40.28534700000002,0.20454545454545456,70.11,9.930555555555555,5.055555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,5.0,5.0,44.0,0.0,1.0,45.0,5.0,4.0,6.0,39.0,9.0,24.0,36.0,0.0,0.0,0.0,12.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,7.0,2.0,2.0,23.0,11.0,0.0,3.0,5.0,0.0,2.0,7.0,3.0,0.0,0.0,1.0,1.0,3.449987545831587,5.85525098926352,4.098502572370764,4.509484935853683,5.007714365668592,5.461179986977316,5.957616873291207,5.948850583386203,5.958747638293367,6.050470212061866 +2082,CCCSc1ccc2nc(NC(=O)OC)[nH]c2c1,0,29.636363636363637,6.252372727272728,3.121212121212121,7.468013468013468,163.85604911147985,117.41752003030302,1.6200727749313635,6.323587878787879,4.138151057904144,7.797434575757576,221.45334235807024,28.470588235294116,6.456117647058824,3.6470588235294117,7.088235294117647,149.28011216562646,108.70026391176468,1.8523600185294118,6.597411764705883,3.1641249092229486,7.893437647058825,261.56970211089583,24.36842105263158,6.369661403508772,3.3157894736842106,6.023391812865498,157.31828383873514,91.28542094736841,1.6064447804700348,6.466922807017544,3.2392787524366473,7.893904245614035,214.50544931834602,20.921875,6.144703125,2.953125,4.223958333333334,159.48930657235562,76.176627125,1.492670751645922,6.250453125,2.7480709876543217,7.734627218750001,192.67858719946645,19.885245901639344,6.277488524590164,2.8688524590163933,4.316939890710382,161.63964621198872,71.27316475409836,1.4048785998629674,6.360190163934426,3.161910544424206,7.855444131147541,181.8560468643859,19.444444444444443,6.126033333333334,2.759259259259259,3.685185185185185,158.71222221571801,70.81765414814815,1.383097393067426,6.2228462962962965,2.773262459990855,7.698467037037037,183.60611020831112,16.185185185185187,6.068274074074075,2.5,2.808641975308642,162.3003848153119,57.384711592592595,1.2688843954377962,6.148466666666667,2.7527434842249665,7.627626851851852,168.4083166836068,14.11111111111111,6.010537037037038,2.314814814814815,2.345679012345679,164.7877723346633,48.76036242592593,1.1343619148497406,6.073759259259259,2.7063900320073166,7.642366777777778,144.40815760581512,17.405405405405407,6.129945945945946,2.1621621621621623,1.0810810810810811,164.64711587113905,61.0043928108108,1.205710033682297,6.204497297297298,2.4744744744744747,7.744982162162162,154.1637786748788,11.638200183654728,0.13049715335169879,0.025019772365314497,0.54178145087236,4.088358330782573,1.6421286387442873,52.77055991919192,0.304818625848696,0.12197869605142325,1.3115259087948947,0.07930873461891642,50.69292800720095,0.6755253065413499,-0.007168098093231819,-0.021379091583358597,0.227380759466321,1.5823685458266565,-0.2595410047732836,3.144481934640523,0.0034040567912014697,-0.004066396586182752,-0.056647177155088456,-0.007204329984335322,0.10716048088896248,0.6866270359093328,0.05347690300130488,0.012083593037417831,0.09086076071722007,1.232452112834888,0.34468725713277837,3.4133232397660813,0.03475289386987439,0.0440063119230583,0.3513779474704515,0.031425297279010195,3.719905009386184,-1.0515524563820016,-0.009143128730486685,-0.01047821188221334,0.011722337006427948,0.2596530328537905,-0.18654883335446454,-4.338977737847223,-0.011043002569810148,-0.00762415059687789,0.00455932627182158,-0.01013441312270431,0.6427173498303802,-1.8284634722786735,0.020445320567824277,0.00847410669570903,-0.0017913862921314378,0.10196015461787936,0.04336039884979925,-8.191910009107469,-0.031048549050763607,0.01393804513089162,0.09341774619935711,0.013462140194794449,-4.659922022963718,0.20355065809611275,-0.006463988368533826,-0.004818032558967398,-0.10407101316192226,-0.2546508859640173,-0.36851426356417655,0.8497801111111118,-0.032153007178231385,-0.0035401438628711456,-0.07003059442578086,-0.004771840679522499,-3.5148409687595628,-0.22742577288031837,-0.015196592184470958,0.0005039043353945893,-0.09565350474441384,-0.6432280152818874,-0.06370706749295667,-1.4018877839506163,-0.030755057116618047,-0.012434027140087735,-0.01386672281837931,-0.0058495544842363046,-5.181416532744344,-0.1802877257422713,-0.012910340781552888,-0.00037065036611480404,-0.16187123762881336,-0.7544014783072023,-0.13935216333874548,-0.7942964382716056,-0.007742279499219061,-0.010587674727068652,-0.07002174199351736,-0.010196558412406898,-1.411448099322631,-0.2557268011813467,-0.039813615268160706,0.0004412029671325042,-0.16340307249398162,-2.0150122574365,-0.10229288740934186,-2.2825195645645615,-0.06188524091315959,-0.033966738639465886,-0.4301523916189086,-0.00849286975405157,-11.34701077735328,,,0.4833333333333334,1.2361111111111112,0.5833333333333334,0.05555555555555555,0.6527777777777778,-0.06944444444444445,0.7217483807210043,0.010574272883926995,0.02012982843948255,0.7486339432283637,0.23232799876989288,0.25233181514468545,1.470382323949368,0.48465981391457835,2.01120800815157,1.3584262283102808,0.3420146868335972,0.19921090784980733,0.0,0.6527817798412889,8.032984779393948,978.0,206.3283,103.0,246.44444444444446,5407.249620678835,3874.7781609999997,53.462401572735,208.6784,136.55898491083676,257.315341,7307.960297816318,968.0,219.508,124.0,241.0,5075.5238136313,3695.8089729999992,62.98024063,224.312,107.58024691358025,268.37688,8893.36987177046,1389.0,363.0707,189.0,343.33333333333337,8967.142178807902,5203.268993999999,91.56735248679199,368.6146,184.63888888888889,449.952542,12226.810611145724,1339.0,393.261,189.0,270.33333333333337,10207.31562063076,4875.304136,95.530928105339,400.029,175.8765432098766,495.01614200000006,12331.429580765853,1213.0,382.9268,175.0,263.3333333333333,9860.018418931311,4347.66305,85.697594591641,387.9716,192.87654320987656,479.182092,11093.21885872754,1050.0,330.80580000000003,149.0,199.0,8570.459999648772,3824.153324,74.687259225641,336.0337,149.75617283950618,415.71722,9914.7299512488,874.0,327.6868,135.0,151.66666666666666,8764.220780026842,3098.774426,68.519757353641,332.0172,148.64814814814818,411.89185000000003,9094.049100914768,762.0,324.569,125.0,126.66666666666667,8898.539706071817,2633.0595710000002,61.255543401885994,327.983,146.1450617283951,412.687806,7798.040510714017,644.0,226.808,80.0,40.0,6091.943287232145,2257.1625339999996,44.61127124624499,229.56640000000002,91.55555555555556,286.56434,5704.059810970516,384.060606060606,4.30640606060606,0.8256524880553784,17.87878787878788,134.9158249158249,54.19024507856148,1741.4284773333334,10.059014653006969,4.025296969696967,43.28035499023152,2.617188242424242,1672.8666242376312,22.967860422405895,-0.24371533516988186,-0.7268891138341923,7.730945821854914,53.800530558106324,-8.824394162291643,106.91238577777779,0.11573793090084997,-0.1382574839302136,-1.9260040232730076,-0.24494721946740095,3.6434563502247244,39.13774104683197,3.048183471074378,0.6887648031328164,5.179063360881544,70.24977043158862,19.647173656568366,194.55942466666664,1.9809149505828403,2.5083597796143233,20.028543005815735,1.7912419449035812,212.0345855350125,-67.2993572084481,-0.5851602387511479,-0.6706055604616538,0.7502295684113887,16.61779410264259,-11.93912533468573,-277.6945752222223,-0.7067521644678495,-0.48794563820018494,0.2917968813965811,-0.6486024398530759,41.13391038914433,-111.53627180899908,1.247164554637281,0.5169205084382509,-0.10927456382001771,6.2195694316906405,2.6449843298377544,-499.7065105555556,-1.89396149209658,0.8502207529843888,5.698482518160784,0.8211905518824614,-284.2552434007868,10.991735537190088,-0.34905537190082664,-0.2601737581842395,-5.619834710743802,-13.751147842056934,-19.899770232465535,45.88812600000004,-1.736262387624495,-0.19116776859504186,-3.7816520989921663,-0.25767939669421497,-189.80141231301639,-12.280991735537192,-0.8206159779614317,0.02721083411130782,-5.1652892561983474,-34.73431282522192,-3.4401816446196603,-75.70194033333328,-1.6607730842973745,-0.6714374655647377,-0.7488030321924828,-0.31587594214876047,-279.7964927681946,-9.73553719008265,-0.6971584022038559,-0.02001511977019942,-8.741046831955922,-40.737679828588924,-7.525016820292256,-42.8920076666667,-0.4180830929578293,-0.5717344352617072,-3.7811740676499377,-0.5506141542699725,-76.21819736342208,-9.461891643709828,-1.473103764921946,0.016324509783902656,-6.04591368227732,-74.55545352515051,-3.784836834145649,-84.45322388888877,-2.289753913786905,-1.2567693296602378,-15.915638489899619,-0.31423618089990807,-419.8393987620713,0.719878842100756,0.6185955232089582,0.4591514026559164,0.3519604562530027,0.2971207184114698,0.1959094740853969,0.1909410399323522,0.11392566858642422,0.11646451732480542,0.05776528730507259,0.07694717381226705,0.03410414062544709,0.05006322304421215,0.018790093977134867,0.033736811672021826,0.010596113246429359,16.00200285951734,5.694812914244115,3.556064365998551,2.1844436418520776,0.5044618539547929,-0.4823918918226743,3.1960832772915913,0.9776190697712034,6.028105263420924,0.6561860624648048,14.559367122749682,10.337676456404278,32.0609986411595,11.70858514266638,2.9164395604113387,0.7400490593255067,3.5023040774144656,2.2358641838185713,7.008271553542194,0.6266856239174659,3.715034577679098,2.433198359311463,24.434233349454022,14.70138600500983,0.3330339672598355,0.6864874177083291,0.8382168951178279,0.876944990387687,0.876944990387687,0.876944990387687,1.7606970700839266,553.246140818398,0.0,0.0,2.0,0.0,6.0,1.0,0.0,0.0,0.0,3.2841756498468215,1.4160319985818353,0.614080682014861,0.4093871213432392,0.4093871213432392,0.4093871213432392,152.2757159290992,922.7706126146408,55.717385781041,27.962745836807294,55.48288225096882,,12.0,326.0,6.093240070938415,4.794537184071822,0.0,5.948339280986494,23.207076664905323,12.005281016795308,11.761884949391115,18.19910120538483,26.94534579939142,0.0,8.700000000000001,22.25,10.5,1.0,11.75,0.0,0.016666666666666607,-1.25,0.17062937062937056,0.047552447552447474,-0.12307692307692308,0.05666666666666664,0.15630769230769215,0.0,0.6090909090909093,0.8666666666666666,0.4384615384615388,0.5615384615384619,0.8099999999999999,12.991470852978077,0.1903369119106859,0.3623369119106859,13.475410978110547,4.181903977858072,4.541972672604338,26.466881831088624,8.72387665046241,0.5576923076923078,0.15325670498084287,0.0,0.28735632183908044,0.3333333333333333,0.35020608782928525,-0.635785992747776,-0.058710383221116984,-0.01926624220447806,-0.052982166062314665,0.6497939121707147,1.1796764302175904,0.05090821408632381,0.035747770612654245,0.05617506810559953,-3.894577031382801,0.753557537896017,0.8349148460085453,1.934237409246827,0.7106679960119641,0.4670062684419912,1.3497143433755245,0.7532281309566494,0.9681371282248762,0.7975911344280976,0.6235282648930118,0.863031989773265,0.9590955348418426,1.0071509846100182,0.5589648980344032,0.5955759023950754,0.9420160570918822,0.6898243862713935,0.8900589082002417,0.9885261796658563,0.9813591178256751,0.5935933402359845,0.462034469536524,0.5856200444019865,0.9034124392351084,1.2921137762348116,0.9118218172504103,1.3757830764632841,1.0347457627118644,0.8810019965061143,1.2049038235294645,1.261730676768658,1.2165738029528868,0.9087093517662543,0.8150594676984295,0.9364239492876067,0.98856220502964,1.316049120828235,0.8521959117872361,0.6366853701662292,1.0122811892192274,0.9759576478866901,1.043252151671536,1.2960720960024326,1.2166751533848137,0.8838789874685713,1.11268941626693,0.830962209495374,1.057982439339172,0.8933775182788912,0.9373322618734313,1.1021252759101676,1.2097928436911487,0.9933948922718575,1.2137106812935774,0.8974164971398991,1.063730910922814,0.9193929435492642,0.9363633758821793,0.9482867899246556,1.046077171852526,0.7313660512334965,0.9459671153131352,0.9246439806957206,1.0937853107344633,1.0434184621357068,1.004848083001132,0.7589593167968052,0.8756448780761523,0.9409455286650119,0.703701124759418,0.8507977155343008,1.0445159790349958,0.8941490014552979,1.137564536616266,0.9190238593521918,1.3589453860640301,1.2354601669300944,0.9462515137924726,0.904634633293903,0.8964685697762851,1.1287356760259946,1.1729064223662982,1.1875124812668747,0.9910829973213648,0.9626858987755312,1.297908009662309,0.903975299442959,1.1367842418689875,1.4291638281655752,1.043752785500995,0.9863658186249087,1.1134124683526967,1.2688726391220015,1.2359523259560767,1.0774975189502312,1.1595167778927942,4.0,0.03305785123966942,1.333333333333334,1.2291666666666667,0.6133333333333335,0.5769444444444445,0.29396825396825393,0.21272675736961447,0.11188271604938269,0.04000000000000001,3281.375416025474,3644.7621853158494,1829.291998279668,1673.1129268718164,15.365019525266634,0.45915470079000764,8.310098582510207,0.848957551190129,1.0,0.3333333333333333,1.7602184695116319,3.628362120776618,4.430313437343592,4.635006998015214,4.635006998015214,4.635006998015214,0.21052631578947362,0.008264462809917356,0.05333333333333336,0.05344202898550725,0.030666666666666675,0.03205246913580247,0.019597883597883597,0.017727229780801206,0.013985339506172836,0.008000000000000002,0.44759572960555843,14.409972299168976,6.9632,3.995837669094693,109.31462616369996,1.0,3.801309007342536,78.78349985754053,,52.407627628266944,59.23182287777292,59.88922719445006,52.41793270820658,82.66815054915598,59.571504204569365,59.40411064955698,74.98726040899733,0.058043795078391205,-0.05492915292882523,-0.8544878534945002,0.41969092721834506,0.387042528516273,-0.15805156712433382,0.059587806903237325,0.01116748289814532,-0.03333694093982164,-0.04319180946043158,-0.09083904842200032,0.0021139138160206545,0.0589976993928723,0.409793636319261,0.4829617496508323,0.1677074041034791,0.3014540343871908,0.20990271346607525,0.06468233888351643,0.11401171359890853,0.3607704734317402,0.2679153687427477,0.3962400538857513,0.07338114320123254,-0.09035352887801797,-0.07006381745236485,-0.4187972507991133,0.02163665254237294,0.06351034127776393,-0.11360183907219097,-0.08222345460217861,-0.036228109548960455,-0.06250395227756603,0.0034763524237282897,-0.12778432503558174,0.012678639311169441,-0.15710878343944104,0.15667254068541048,0.3386963946745129,-0.003306474020561247,0.024939143384323324,0.02640499521581716,-0.1552363670510948,-0.10185909395896067,0.11426622502191432,0.07122828879926185,0.16974347478220272,-0.09192449925760403,0.017489874283309673,-0.0495335584149712,-0.19256900057359239,-0.192090395480226,-0.0622868313784211,-0.2244125428845661,0.016103299120047022,-0.1054824228299989,-0.029022640653403174,-0.05339627220184234,-0.06016790839560738,-0.06933592331183314,-0.019541318184209146,-0.11645152245976662,0.02014024460482957,-0.1765536723163842,-0.15733161411973495,-0.0387954183307299,-0.026565717439749375,-0.10089625275026354,-0.10193605557847456,-0.01057296903201924,-0.07375674964862054,-0.10221182197264918,-0.015491031508074285,-0.09893197246041555,-0.014814298096038852,-0.29877589453860637,-0.18452430468901646,-0.08486068633776836,-0.015051885738713395,-0.025399627328095517,-0.08679937620094862,-0.053389522482142474,-0.12856791198853465,-0.027843096755471187,-0.021973054007139545,-0.305091829557847,0.01763417191373629,-0.30160329821346776,-0.4928658631179221,-0.062292858790626654,-0.04325365446301511,-0.20302316087428923,-0.2784645166656507,-0.3279785696450003,-0.10708618407367555,-0.22383814120465548,3.7691691356845607,7.941805327692647,3.744921804000384,20.12393141333294,36.75910700773341,39.94068687987246,40.14701798902944,40.14701798902944,40.14701798902944,36.20174414672826,24.451672109585054,6.15626436300475,3.5857963412965317,0.0,11.750072037143202,4527.33255481326,4128.2806093981535,542.9966163218551,41.0,25.0,31.0,40.0,48.0,52.0,59.0,60.0,48.0,265.08849772000025,19.0,4.48863636973214,5.303304908059076,6.159095388491933,7.00397413672268,7.87359778968554,8.732788324973118,9.60904937558734,10.476188780020186,11.355698391225406,0.7070707070707071,0.9896969696969696,1.1310820207976588,0.669414148141981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.686733714389403,0.9765894236482472,1.0117084905868592,0.6349773390324989,3.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,9.720841474747257,0.0,0.0,5.948339280986494,0.0,5.316788604006331,9.77851570501903,0.0,11.761884949391115,6.923737199690624,30.372776435057627,4.895483475517775,18.143198976510057,178.0041724464661,-323.1598862076062,-29.841551996046995,-9.792723824472914,-26.929990517300514,330.2798883755653,599.6107264070346,25.875833784994008,18.17002201233438,28.552891733668307,0.5,0.7987693145397632,0.24928737243353694,77.8565989753383,0.22759488610252673,46.500531939420696,0.2012306854602368,6.0,0.21052631578947367,0.3489454685462794,0.7192860103560016,0.8782647296216894,0.9188431530811266,0.9188431530811266,0.9188431530811266,3.2433000000000005,,1.5535714285714288,1.1038416648231353,0.9351166328597537,1.5513903960768884,-3.2949960521892754,1.012622399020808,0.9891346839337528,-1.5983839656748697,73.13640000000002,9.53140013787187,0.0,9.967957041894417,0.0,18.24004229813441,18.179439752030653,18.19910120538483,0.0,0.0,3.6635616461296463,0.0,4.9344739331306915,2.3978952727983707,6.391917113392602,4.727387818712341,7.941295570906532,6.823286122355687,9.545311482471128,23.333333333333332,6.002804469009826,4.2452843127991935,3.0412299225245656,0.0,0.0,1.726627456538171,1.5899162782396916,0.0,32.66,0.0,11.068854593745467,0.0,0.0,0.0,0.0,0.0,-0.5327429844119058,37.32570668632274,5.316788604006331,10.742876465058316,0.0,28.923848260857152,4.736862953800049,0.0,13.344558822616634,23.094584680902603,0.0,11.033401435232523,0.0,22.090666888685373,22.6622125748503,23.024209233651664,157.56699971508107,,104.83413047932416,118.34099668167661,119.6745525408046,104.85629364731955,166.59096993024264,119.03049480924753,118.69831744534353,150.5073154732197,23.024209233651664,157.56699971508107,,103.62579714599082,117.35980409072278,118.84333775604037,103.64965667259315,168.6312971505012,118.13038601011789,117.81908661518025,151.57290478366963,4.682754891301938,118.38983752996516,,78.12844870232054,88.24940485874527,89.01864077002486,78.14495408456712,126.20830492059906,88.63017252309324,88.31058324542201,112.67663422523677,1.2791227352028702,8.753722206393393,,5.824118359962453,6.574499815648701,6.648586252266922,5.825349647073308,9.25505388501348,6.612805267180418,6.594350969185752,8.361517526289983,2.4123713056155216,78.78349985754053,,52.407627628266944,59.23182287777292,59.88922719445006,52.41793270820658,82.66815054915598,59.571504204569365,59.40411064955698,74.98726040899733,32.227450980392156,0.0,3.4698350818620485,0.0,0.0,0.0,0.0,33.386380189366356,2.229898616828631,2.50902982489292,4.512820287843737,1.8031088067943224,0.0,0.0,0.0,0.0,0.0,20.954252188072463,406.00171085430134,58.087209493883854,119.7359499856284,146.20034343233854,152.95523093450208,152.95523093450208,152.95523093450208,441.0,108.00233346449743,102.28234996773007,64.42512895989701,92.30999999999999,67.00999999999999,1.0,8.156020424204556,5.247927513443585,3.541933164623482,4.158231575765055,,4.144255518949129,4.13363456257268,4.128602016757183,4.144246831921843,4.118061064334673,4.134516409402044,4.135976350144496,4.132480554882408,0.19677406470130457,0.23101286532028084,,0.23023641771939607,0.2296463645873711,0.2293667787087324,0.23023593510676907,0.22878117024081515,0.22969535607789135,0.22977646389691644,0.22958225304902266,1.8524593346955396,2.012876546814275,,2.0095098279364745,2.0069437242313026,2.0057255198408703,2.0095077317731587,2.0031691020365963,2.007157035970698,2.0075100840417286,2.0066645101914853,194.74999999999974,165.83080316494033,88.52963733841204,,89.23847171652876,89.93206043089707,90.2964370154704,89.23912448808031,90.65124437894858,89.90540883434825,89.82832958552245,90.11148514779362,9.212822398052241,4.918313185467336,,4.957692873140487,4.996225579494282,5.016468723081689,4.957729138226684,5.036180243274921,4.994744935241569,4.990462754751247,5.006193619321867,5.698754675419421,5.0711240460342735,,5.079098908776651,5.086841166062766,5.090884667353585,5.079106223661717,5.094806329299975,5.086544769579287,5.08568706468505,5.088834292511344,4.512820287843737,19.547607769398443,2.50902982489292,1.726627456538171,1.4878674064131319,6.002804469009826,0.6069655639140668,2.1528895893501776,1.3169454925118707,225.49282917029166,90.47668361435494,-164.25701925638762,-15.167985229782564,-4.977485432011746,-13.688084938032304,167.87600287137957,304.77257493061563,13.15227387339267,9.235532573655016,14.51297975860074,676.0,23.0,1.0302567583920093,0.43841101742158645,0.0,0.0,0.08333333333333333,0.018633899812498248,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02795084971874737,0.2721655269759087,0.07030654729400324,0.41535507715912034,0.1020769583863365,12.957819157813608,11.134719417761247,8.723876650462412,6.687248668807051,7.428017960286745,4.897736852134923,5.919172237902918,3.531695726179151,4.658580692992217,2.3106114922029035,3.6934643429888188,1.6369987500214602,2.603287598299032,0.977084886811013,1.9904718886492876,0.6251706815393322,2.0933522422309263,0.7957989524879208,3.1781848714922356,1.0536384460090344,4.323880416072575,1.2996698911321514,58.938252153021686,29.96181998003229,23.40868630470652,22.739277503240544,22.739277503240544,22.739277503240544,88.0,100.0,37.845894999999985,22.392104999999997,0.2727272727272727,55.06,6.055555555555555,4.194444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,33.0,0.0,0.0,34.0,10.0,1.0,5.0,29.0,11.0,19.0,23.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,4.0,2.0,1.0,18.0,6.0,0.0,3.0,2.0,0.0,2.0,4.0,1.0,0.0,0.0,1.0,2.0,3.258096538021482,6.436663557979213,3.834061463958434,4.3990681005287335,5.036546675880757,5.545909598264556,5.908549880764702,6.319967051578797,6.624194908965961,6.414111920170116 +2749,Cc1cc(C2CCCCC2)n(O)c(=O)c1,0,19.5625,5.975153125,2.90625,5.6875,163.977343497101,76.76795596875002,1.3600508557010311,6.0380875,4.355034722222222,7.550160875,196.46006885838023,21.939393939393938,6.228636363636364,3.606060606060606,5.484848484848484,146.52313316856214,81.62872690909089,1.7489035438181817,6.366412121212121,2.8653198653198655,7.66926303030303,247.70334881295028,17.39344262295082,5.971213114754099,3.2131147540983607,4.081967213114754,152.81156038979168,63.19223301639343,1.4744495875211803,6.086477049180327,2.546448087431694,7.487671475409836,200.51091361096562,13.80232558139535,5.872523255813954,2.604651162790698,3.0348837209302326,159.2189785192271,48.372380348837204,1.2241374346858138,5.9571406976744194,2.7978036175710597,7.456305674418604,159.91675409590238,11.704545454545455,5.819443181818183,2.3181818181818183,1.9431818181818181,164.40166660587923,39.96761625,1.0685201024974091,5.882892045454546,2.4545454545454546,7.448825727272728,136.799651072308,12.246575342465754,6.082643835616438,2.2739726027397262,1.547945205479452,165.66211443094772,40.97755779452054,1.0818910288552466,6.131404109589042,2.8858447488584478,7.700711287671233,142.32924618873255,10.21875,6.01621875,1.90625,1.03125,163.52802628020686,31.611205078125,1.0444140094404375,6.067734375,2.8880208333333335,7.659934687500001,130.31993168268042,5.8,5.526363636363637,1.4727272727272727,0.36363636363636365,170.11913642452774,15.583720563636364,0.8113727463131818,5.563545454545455,2.1393939393939396,7.261341745454545,87.78922988875327,2.9285714285714284,5.232857142857143,1.2142857142857142,0.0,175.8523811261422,5.264279999999999,0.6421758121172143,5.254857142857143,1.6428571428571428,7.029133714285714,58.62241399899384,7.3125,0.11421474609374997,0.015723508479921336,0.5615234375,3.4375,1.3611846792655213,34.81278357714844,0.22586040137548336,0.10886249999999993,1.7313096788194442,0.07027774609374998,50.38787495171858,0.25,0.013498322088068193,-0.006283547494117983,0.19699928977272727,1.3257575757575757,0.06581819624553928,1.177612206942476,0.015658052536380185,0.010693181818181817,-0.024791370738636357,0.008697912997159092,1.6659345883201835,0.38114754098360654,0.01519836866034836,-0.0024793654075684047,-0.014904585040983607,0.7008196721311475,-0.12399990109835558,1.709152688220418,-0.014838752705705754,0.013946311475409832,0.16032568092554647,0.00852252029969262,-1.558133760025694,0.25,0.016687143441133714,0.0020162194304365628,-0.036087390988372096,0.47093023255813954,-0.18224257202910238,1.0374775369504008,-0.026822319610866393,0.015457558139534876,0.339275350250323,0.010808024255087206,-3.5373714085553996,0.3693181818181818,-0.0003667702414772777,-0.00031694552026919156,-0.10484730113636363,-0.3068181818181818,-0.10913513576840841,1.7300720712890625,-0.011193629783731264,0.0015369318181818101,-0.008120758364898973,-0.0021851637073863647,0.22066564598326835,-1.25,-0.03044098753210614,-9.192734209142377e-05,-0.1218830265410959,-1.4006849315068493,0.1188712993103288,-5.813210059168986,0.0005143903809335538,-0.028645547945205473,-0.3335143021071157,-0.01749073581977739,-2.536559082776374,-2.8515625,-0.03990771484374997,-0.00114076389829202,-0.0556640625,-1.3359375,-0.13634692631497705,-13.475226760253904,-0.038777150543102046,-0.040691406249999965,-0.50341796875,-0.021051814453124987,-13.816691755637278,-0.3409090909090909,-0.008711052911931833,0.00042356096925150356,0.05893110795454545,-0.11363636363636363,-0.01909692023187386,-1.568653826012076,0.0019278920106950335,-0.008398636363636355,-0.2042421283143939,-0.005458673366477273,-0.6814102931905082,1.4285714285714286,0.009360253906249958,0.0003506317613009165,0.16838727678571427,0.75,0.1520858735060486,6.862751563476556,0.0405766627508894,0.010910714285714277,-0.014295789930555478,0.0032990485491071375,10.230538278526504,,,0.4711111111111111,1.0333333333333334,0.43333333333333335,0.06666666666666667,0.6,-0.16666666666666666,0.8612291547579168,0.01551153413473602,0.026978200801402685,0.5734206440269719,0.16677553936109651,0.3119938306623738,1.4346497987848887,0.4787693700234703,2.0094819003335034,1.632728990342293,0.14159908895375137,0.23515382103745924,0.0,0.37675290999121064,6.4726852745,626.0,191.2049,93.0,182.0,5247.274991907232,2456.5745910000005,43.521627382432996,193.2188,139.36111111111111,241.605148,6286.722203468167,724.0,205.54500000000002,119.0,181.0,4835.26339456255,2693.747987999999,57.713816945999994,210.09159999999997,94.55555555555556,253.08568,8174.210510827359,1061.0,364.244,196.0,249.0,9321.505183777292,3854.7262139999993,89.941424838792,371.27509999999995,155.33333333333334,456.74796,12231.165730268902,1187.0,505.03700000000003,224.0,261.0,13692.832152653531,4160.02471,105.27581938297999,512.3141,240.61111111111111,641.2422879999999,13752.840852247604,1030.0,512.1110000000001,204.0,171.0,14467.346661317371,3517.15023,94.029769019772,517.6945000000001,216.0,655.496664,12038.369294363103,894.0,444.033,166.0,113.0,12093.334353459184,2991.3617189999995,78.978045106433,447.59250000000003,210.66666666666669,562.151924,10390.034971777477,654.0,385.038,122.0,66.0,10465.793681933239,2023.117125,66.842496604188,388.335,184.83333333333334,490.23582000000005,8340.475627691547,319.0,303.95000000000005,81.0,20.0,9356.552503349025,857.104631,44.625501047225,305.995,117.66666666666669,399.37379599999997,4828.40764388143,82.0,146.52,34.0,0.0,4923.866671531981,147.39983999999998,17.980922739282,147.13600000000002,46.0,196.815744,1641.4275919718275,234.0,3.654871874999999,0.5031522713574827,17.96875,110.0,43.55790973649668,1114.00907446875,7.227532844015467,3.483599999999998,55.401909722222214,2.2488878749999994,1612.4119984549945,8.25,0.44544462890625036,-0.20735706730589343,6.5009765625,43.75,2.172000476102796,38.86120282910171,0.5167157337005461,0.35287499999999994,-0.8181152343749998,0.28703112890625004,54.975841414566055,23.25,0.9271004882812499,-0.15124128986167268,-0.9091796875,42.75,-7.563993966999691,104.2583139814455,-0.905163915048051,0.8507249999999997,9.779866536458334,0.5198737382812498,-95.04615936156733,21.5,1.4350943359374995,0.17339487101754442,-3.103515625,40.5,-15.672861194502804,89.22306817773448,-2.3067194865345098,1.3293499999999994,29.17768012152778,0.9294900859374997,-304.21394113576434,32.5,-0.03227578125000044,-0.02789120578368886,-9.2265625,-27.0,-9.60389194761994,152.2463422734375,-0.9850394209683512,0.1352499999999993,-0.7146267361111096,-0.1922944062500001,19.418576846527614,-91.25,-2.222192089843748,-0.006710695972673935,-8.8974609375,-102.25,8.677604849654003,-424.36433431933597,0.037550497808149425,-2.0911249999999995,-24.346544053819446,-1.2768237148437493,-185.1688130426753,-182.5,-2.554093749999998,-0.07300888949068927,-3.5625,-85.5,-8.726203284158531,-862.4145126562498,-2.481737634758531,-2.6042499999999977,-32.21875,-1.3473161249999992,-884.2682723607858,-18.75,-0.47910791015625076,0.023295853308832697,3.2412109375,-6.25,-1.0503306127530623,-86.27596043066417,0.10603406058822684,-0.46192499999999953,-11.233317057291664,-0.30022703515625,-37.47756612547795,40.0,0.2620871093749988,0.009817689316425663,4.71484375,21.0,4.258404458169361,192.15704377734357,1.1361465570249032,0.30549999999999977,-0.40028211805555336,0.09237335937499985,286.4550717987421,0.7224332542835976,0.604684012997693,0.44884628439700336,0.35070062466460505,0.29431461744450105,0.20193329817076877,0.18846185182947073,0.1144096760675997,0.12088210580272171,0.0688103276733153,0.07973819127277186,0.04256260459476068,0.05098495952789028,0.022373559516921143,0.03411163872293536,0.01459013558048754,8.02303354999507,5.7137843877755,3.5494551482428687,2.2086968844473285,0.46121554479096033,-0.3773818942438103,3.245479433319775,0.9776583041924934,6.022193630264439,0.9959458458144042,14.560772287203868,10.978321744131856,16.010531287645378,11.72825231566941,1.9682953992044423,0.7417045024679666,3.4957744222910487,2.257101482930621,7.0082786807215305,1.2215384710304331,3.7072274194109736,2.4523851242675745,20.86587201818867,14.69635545867194,0.2749893716869593,0.5505845744337747,0.6846747294157977,0.7721058420689967,0.8054100909385995,0.8054100909385995,1.9820315864469045,402.573413213669,0.0,1.0,1.0,0.0,3.0,5.0,1.0,1.0,0.0,3.578325572184676,2.1535190432263525,1.4602829985375179,1.0082707033278249,0.836090234442608,0.836090234442608,174.8474807282785,498.2161513847009,40.8744610067378,15.569254730771902,29.927929913155936,,7.0,177.0,0.0,10.001790208849112,5.559266895052008,5.917906046161393,28.8294303743037,25.328831937239638,0.0,12.990104268152233,0.0,0.0,7.066666666666666,15.5,6.5,1.0,9.0,0.0,0.028888888888888905,-2.5,0.10838178294573642,0.027546296296296235,-0.08083548664944018,0.033055555555555505,0.14563538873994641,0.0,0.547916666666667,0.8288888888888889,0.43953488372093064,0.5203703703703708,0.7958333333333334,12.918437321368753,0.2326730120210403,0.4046730120210403,8.601309660404578,2.5016330904164477,4.679907459935607,21.51974698177333,7.181540550352055,0.5683646112600536,0.1650943396226415,0.0,0.33962264150943394,0.5833333333333334,0.2876209734920517,-0.3481132843280114,-0.05790716808539204,-0.010878540135250357,-0.0316466622116374,0.7123790265079483,0.8622062556607207,0.041389409726198784,0.026943945489397523,0.04105744074574861,-2.058922736930042,0.9153069153069152,0.6380263454391394,1.2710279435079075,0.8887483530961793,0.49958677685950414,1.2433619159222673,0.9232069459301682,1.1446255170024897,0.6647029196546935,0.6612834073780756,0.6150375482141298,1.0983044501499015,0.8708841249824856,0.5295233951079136,0.7699009616914922,1.300983606557377,0.699925484351714,1.2516066994932233,0.8814875900104935,1.184937551078025,0.5570674015386381,0.4497273838533465,0.49274128512936377,1.1083002844174394,0.9088650367720135,0.6674706667909829,0.5598113367280418,1.123397371081901,0.7864693446088795,1.163753582020989,0.9166490483605029,1.1366276845368293,0.6847554120703788,0.557107611202348,0.632178021935439,1.0771637404534664,0.9160596348096348,0.955280502386719,0.9857541469514962,1.2547035573122531,1.0920454545454545,1.030688159860343,0.9167929844844812,0.9879058481411633,0.9409866295577197,0.8702305951260092,0.964626268075645,0.9472127120322167,1.214992389649924,1.6314857091609296,1.3721034182873706,1.2761882072662298,1.5924657534246576,0.8838543107117458,1.2037349045264685,0.9028032334920445,1.5872056855056258,1.6017792357674128,1.6620202454878683,0.9585963246565148,1.4210403311965811,1.7098705580479476,1.618705288847186,0.862608695652174,1.4377130681818182,1.0143865959802625,1.410865831738027,1.1067835491137021,1.6946798480738319,1.8365009479341305,1.7571007319562337,1.1980140349601083,0.9911810411810411,1.0047112551902817,1.0164210651549903,0.486197628458498,0.9018181818181819,0.7787668551210749,0.9882961390577178,0.8577535398495075,1.0185288990490506,1.2044401206176745,1.0137393880438872,0.9198362205392454,0.7049755799755799,0.6209910866281343,0.4439252488613484,0.1848447204968944,0.5435064935064935,0.55583564741464,0.704624217506656,0.619472997737485,0.6444031625740202,0.7693778105071841,0.6019474975253839,0.675621906811616,3.0,0.0,1.7777777777777786,1.1875,0.9555555555555557,0.3888888888888889,0.16244897959183674,0.05555555555555555,0.0,0.0,2477.1244480646014,2900.8443444336567,1406.8617087392977,1234.5993920844542,8.780967018661544,0.42336465455110744,5.0634159501812315,0.7341982379202429,1.0,0.5833333333333334,1.4216744278153237,2.8464809567736475,3.539717001462482,3.991729296672175,4.163909765557392,4.163909765557392,0.1875,0.0,0.08080808080808084,0.05397727272727273,0.05308641975308642,0.02592592592592592,0.01804988662131519,0.018518518518518517,0.0,0.0,0.4378661043541996,11.484375,4.8884297520661155,2.5714285714285716,89.3195805860036,1.0,3.633189815954773,47.75767774611041,,38.73300415747124,38.34005844647743,38.303213550652096,38.73735585072872,48.93982640750491,38.578934833892774,38.75554490210056,44.13072347509907,0.03418803418803419,0.11818370700564772,-0.3996275705350349,0.3508300395256917,0.38567493112947654,0.0483536122967928,0.03382700508084265,0.06932624063812468,0.09822649505735973,-0.014319431723815721,0.1237648257181746,0.0330622116911355,0.05212274064733081,0.13306835745949305,-0.15768525267337846,-0.02654312188168211,0.20387481371087926,-0.09109704435203048,0.049095548031451525,-0.06569877949095183,0.12810941761772732,0.09260369931904401,0.12126911822589817,-0.030922791673963036,0.03418803418803419,0.14610323107873077,0.12822961446621423,-0.06426693629929223,0.13699788583509515,-0.13388526539061418,0.02980162544748115,-0.11875618500418506,0.14199157781177987,0.1959645662477149,0.15379013778656736,-0.07020282978682653,0.050505050505050504,-0.003211233698109565,-0.02015742991927825,-0.1867193675889328,-0.08925619834710743,-0.08017658252464052,0.049696458987689346,-0.04955994816073282,0.014118101441559868,-0.004690529062620619,-0.03109325254215428,0.004379340192352012,-0.17094017094017094,-0.26652414485183473,-0.0058464904451073045,-0.2170577724836212,-0.4074719800747198,0.08732929566506016,-0.16698492512919458,0.002277470410045015,-0.2631351286733769,-0.19263699971603834,-0.24888014758533775,-0.05034066400313355,-0.38995726495726496,-0.3494094782734345,-0.0725514855509988,-0.09913043478260869,-0.3886363636363636,-0.10016783790759987,-0.3870769693090333,-0.17168636160632988,-0.3737871741876219,-0.2907729188537048,-0.2995516450547806,-0.2742066770800786,-0.04662004662004662,-0.07626907391434035,0.026938069820255702,0.10494861660079051,-0.03305785123966942,-0.014029632071805515,-0.045059706947472036,0.008535768106999839,-0.0771490307832023,-0.11796972593237262,-0.07767285762402573,-0.013523298885762343,0.19536019536019536,0.08195311224145134,0.0222998424142212,0.2998757763975155,0.21818181818181817,0.1117305210841135,0.19713308900645785,0.1796537263893037,0.1002247264734347,-0.008257211350140188,0.04694300447123378,0.20303571619817976,7.7289577986882945,10.562202891888326,2.94168275343288,13.050513174949765,25.5360692375457,28.591815137902163,29.994694381045548,30.168252293681846,30.168252293681846,30.142228505002553,24.490934855134395,2.1239863343062706,3.5273073155618886,0.0,5.651293649868159,1593.3240290703172,1285.5859784147203,485.6547387468231,14.0,22.0,28.0,35.0,42.0,35.0,32.0,28.0,22.0,207.125928784,16.0,4.343805421853684,5.176149732573829,6.042632833682381,6.8966943316227125,7.767687277186908,8.629271094821588,9.501142571764207,10.365868452461307,11.23779100757295,0.5833333333333333,0.968375,1.1324835123176116,0.5392790983265341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6377148390718563,0.9549019607843139,0.9959714129643118,0.5872843158457156,2.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,5.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,5.20725302477729,0.0,0.0,0.0,5.559266895052008,4.794537184071822,0.0,4.7304076419062255,0.0,19.26246486877803,31.395199005701247,11.984273114623004,5.693927994848461,118.39634884525216,-143.2974144707311,-23.83691700239723,-4.478044202210347,-13.027037679157374,293.24382957353066,354.9187369139698,17.037544004340575,11.091210528561556,16.90089223399856,0.42857142857142855,0.7705969124926536,0.3512377204234023,68.26680794527766,0.27060674197899354,76.0222992916039,0.22940308750734642,4.0,0.0625,0.28433488556306474,0.5692961913547295,0.7079434002924965,0.798345859334435,0.8327819531114784,0.8327819531114784,2.4417199999999992,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,58.44950000000003,5.20725302477729,0.0,4.7304076419062255,0.0,44.94575136048206,0.0,33.743917702592505,0.0,0.0,3.4965075614664802,0.0,4.795790545596741,0.0,6.3080984415095305,0.0,7.917536353943631,0.0,9.575885856083103,18.666666666666664,3.392572515117158,0.0,0.0,0.0,0.0,0.0,1.7273828420256994,0.8224074074074073,30.988,0.0,11.416260629251699,0.0,0.0,0.0,0.0,0.0,0.0,36.23947239416357,5.559266895052008,0.0,0.0,9.937660666683517,0.0,6.923737199690624,49.2793936473369,16.927271320995043,0.0,0.0,0.0,17.25693114644909,20.406874850299403,19.196872582845398,95.51535549222083,,77.3802940292282,76.57917071643865,76.5824208871769,77.38924085656683,98.96467323221314,77.06738619165336,77.4261227917278,88.7083723839419,19.196872582845398,95.51535549222083,,76.88623577227389,76.02103208474387,76.16330771855309,76.89649975617098,100.56242316186997,76.55590204553812,76.9351102999459,89.37876053455759,4.77385510288746,69.2459866803301,,57.397702843460046,56.876110017094895,56.72531209260762,57.403149679031046,69.56047498254999,57.18834582573848,57.42811655437269,64.04525254071166,1.2797915055230265,6.3676903661480555,,5.158686268615213,5.105278047762577,5.105494725811793,5.159282723771122,6.597644882147543,5.137825746110224,5.161741519448521,5.913891492262794,2.38692755144373,47.75767774611041,,38.73300415747124,38.34005844647743,38.303213550652096,38.73735585072872,48.93982640750491,38.578934833892774,38.75554490210056,44.13072347509907,30.556862745098044,0.0,1.8965539965986395,0.0,0.0,0.0,9.678410808767952,31.871085214857978,5.851667847694633,0.0,0.0,0.0,0.35773148148148115,0.0,0.0,0.0,0.0,18.7930981070629,317.2086505474391,45.49358169009036,91.08739061675672,113.27094404679943,127.7353374935096,133.24511249783654,133.24511249783654,289.0,100.96104272353958,94.43152787134373,47.09381875859949,42.230000000000004,42.230000000000004,0.75,6.96876218066149,5.0,3.545146343980987,3.822974325717975,,3.812471150205521,3.8113050222590767,3.8105175721155846,3.8124808878181273,3.7861759527026506,3.81200497567973,3.81253572003346,3.8083798447715713,0.2363430895987325,0.254864955047865,,0.2541647433470347,0.2540870014839384,0.2540345048077056,0.2541653925212085,0.2524117301801767,0.2541336650453153,0.25416904800223067,0.2538919896514381,1.6710445490401815,1.7464938470577955,,1.7437426828538556,1.7434367641256143,1.743230133720211,1.7437452369978181,1.7368216343802703,1.7436203991667734,1.7437596191869082,1.7426689692148656,167.0399999999997,71.6669300679454,67.01245577731744,,67.20677183663925,67.21038593529384,67.32677043214704,67.20712237627895,69.04466475941716,67.21281420057677,67.20620482456435,67.92965515506042,4.777795337863027,4.467497051821163,,4.48045145577595,4.4806923956862565,4.488451362143136,4.480474825085263,4.60297765062781,4.480854280038452,4.480413654970957,4.528643677004028,4.677494522927644,4.610343617344683,,4.613239121938734,4.613292896303784,4.615023043261365,4.61324433776321,4.64021871864108,4.6133290249673,4.613230685073649,4.623937794823595,0.8224074074074073,11.416260629251699,9.678410808767952,1.4177286470143617,0.35773148148148115,3.392572515117158,5.851667847694633,1.8965539965986395,0.0,201.16320139602138,48.736694162792055,-58.986973259682024,-9.812232767820513,-1.8433429143650633,-5.3624521145165485,120.71094232585531,146.09881218743558,7.013337653764618,4.565587880857362,6.957086294639789,348.0,22.0,1.019576914874825,0.48824446088353907,0.0,0.0,0.2826915653637701,0.06571957931143896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1576176281715213,0.120695972428464,0.2576672467205248,0.09636381426974014,10.836498814253964,9.070260194965396,7.181540550352054,5.611209994633681,6.474921583779023,4.442532559756913,5.27693185122518,3.203470929892792,4.23087370309526,2.4083614685660355,3.349004033456418,1.7876293929799487,1.7844735834761598,0.78307458309224,1.0915724391339314,0.4668843385756013,2.3523739774613706,0.9152418642016555,3.6250741036474974,1.308243463286104,5.700318727698035,1.7982599095718788,51.54111369548666,31.795913157612667,25.936079780182215,22.896146483360873,22.179229296672176,22.179229296672176,76.0,88.0,34.07948099999997,18.492518999999998,0.375,46.03,5.305555555555555,3.333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,6.0,32.0,0.0,0.0,33.0,6.0,1.0,3.0,30.0,7.0,16.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,3.0,1.0,1.0,15.0,3.0,0.0,1.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,3.044522437723423,4.576642102373553,3.624340932976365,4.131158535344817,4.628642542173234,5.055847636917804,5.1328529268205045,5.0091758963599045,4.914032612704839,4.8217925203120355 +2244,CC(=O)Oc1ccccc1C(=O)O,0,28.0,6.855714285714286,3.238095238095238,11.142857142857142,160.10931258161867,110.97036214285711,1.4871342494662854,6.884614285714285,8.826719576719578,8.334248571428574,234.56596090708743,27.523809523809526,6.664285714285714,3.7142857142857144,9.666666666666666,144.67207626102146,105.51473909523808,1.7779751502857137,6.796095238095239,4.407407407407407,8.085149523809523,275.56917474251634,25.46875,6.6803125,3.46875,8.5625,150.76047736039212,97.23844603125002,1.534966201079594,6.770678125000002,5.5381944444444455,8.135573625000001,235.34066599583196,21.594594594594593,6.787027027027027,3.081081081081081,6.756756756756757,156.98794926516072,79.58269967567568,1.3452255595282971,6.847567567567566,4.5660660660660675,8.316115027027028,208.28912628656542,23.818181818181817,6.96151515151515,2.8484848484848486,7.606060606060606,156.15499971023937,88.92405463636362,1.3268490143544847,7.010854545454546,5.856902356902356,8.452027272727275,207.88032990198158,19.0625,6.7446875,2.1875,4.96875,158.88051677316713,68.20032921875,1.2039410447405627,6.7934375000000005,5.1875,8.298310625,182.0711381629506,14.793103448275861,6.517241379310345,1.6551724137931034,3.3793103448275863,164.3713085457395,50.75102103448276,0.9670718899394827,6.534403448275862,6.666666666666668,8.119635862068964,132.9059598534237,5.05,6.149000000000001,1.15,0.0,177.07552581517217,9.833191199999998,0.64790778859715,6.123700000000001,3.5,7.9193376,72.36891689364197,1.0,4.840000000000001,1.0,0.0,184.91765202424895,1.016064,0.4446129048489999,4.840000000000001,1.0,6.718464,31.083744430930263,7.963718820861678,0.21895691609977314,0.04252101537461818,0.6167800453514739,5.011337868480725,1.3463797680741396,37.371121142857156,0.22714467655395912,0.19623310657596366,3.5658856135046597,0.1530142040816326,45.622762758451096,-0.18594104308390058,-0.02154195011337869,-0.028803137030415222,0.16780045351473924,1.4126984126984123,-0.03834035648242695,-0.7860158095238129,-0.003794724761904661,-0.0179009070294785,-0.4893550012597631,-0.016541659863945585,0.3735434765213798,1.5824121315192736,0.06579010770975056,0.008902704199850038,0.018636621315192725,0.7654478458049886,-0.09423874642298757,7.158409843749995,-0.01626632670786537,0.05935989937641722,0.9076593600403122,0.04428502806122445,-0.2509857825518418,-1.437335294478152,-0.0698835570264142,-0.008359092987345731,-0.07366550223693082,-1.2996261567690142,0.032275047059685515,-6.46861202702703,0.007857364261720368,-0.061821394864252054,-0.8044813521003998,-0.04870771759514612,0.14089171718380172,-0.3648732220160792,0.01472273757988037,0.013802777098202367,-0.2213976499690786,-0.5943104514533086,-0.20292554400263402,-1.9038981212121227,-0.03693201396816695,0.012018552875695634,-0.014578895531276559,0.011014575139146601,-7.267381450372351,-2.445861678004535,-0.07109977324263042,-0.01383986707564693,-0.25070861678004536,-1.5902069160997734,-0.29095143256381895,-11.4071608125,-0.0495491007492181,-0.06416212443310661,-1.0438122008062483,-0.04879477551020404,-11.210325099795547,-0.6714363906482133,0.04207756665884747,0.00900847670136805,-0.022362968175776033,-0.30854640706857456,-0.341444368135327,-3.5720944482758576,-0.06523109072155037,0.03410498866213158,0.9865227061450373,0.032354130893736774,-14.17600643167897,-1.9946712018140587,-0.082314058956916,-0.006430878071891774,0.29036281179138324,-0.8018140589569157,0.42092811529695273,-8.904631649999995,0.06872634062999068,-0.07619905895691592,-1.5605946082136553,-0.05231954693877552,6.253126161152595,12.08390022675737,0.14151927437641756,0.006258493603334192,0.38321995464852615,6.131519274376418,0.9966560382990498,57.320041,0.20766209940018346,0.14914308390022726,1.673532375913329,0.07197722448979565,66.75513064775933,,,0.4487179487179486,1.3269230769230769,0.7307692307692307,0.038461538461538464,0.5961538461538461,0.1346153846153846,0.5052674540695224,0.023473281314805645,0.03008866593019026,0.8702897704082267,0.29234950602313975,0.17757825592152343,1.3755572244777492,0.4699277619446632,1.9424680908757919,1.3966061574597772,0.0,0.5458619334160146,0.0,0.5458619334160146,8.573440892190476,588.0,143.97,68.0,234.0,3362.2955642139923,2330.377604999999,31.229819238791993,144.5769,185.36111111111111,175.01922000000005,4925.885179048836,578.0,139.95,78.0,203.0,3038.1136014814506,2215.8095209999997,37.33747815599999,142.71800000000002,92.55555555555556,169.78814,5786.9526695928425,815.0,213.77,111.0,274.0,4824.335275532548,3111.6302730000007,49.118918434547005,216.66170000000005,177.22222222222226,260.33835600000003,7530.901311866623,799.0,251.12,114.0,250.0,5808.554122810947,2944.5598880000002,49.77334570254699,253.35999999999996,168.94444444444449,307.696256,7706.697672602921,786.0,229.72999999999996,94.0,251.0,5153.114990437899,2934.4938029999994,43.786017473697996,231.3582,193.27777777777777,278.91690000000006,6860.0508867653925,610.0,215.83,70.0,159.0,5084.176536741348,2182.410535,38.52611343169801,217.39000000000001,166.0,265.54594,5826.276421214419,429.0,189.0,48.0,98.0,4766.767947826445,1471.77961,28.045084808244997,189.4977,193.33333333333337,235.46944,3854.272835749287,101.0,122.98000000000002,23.0,0.0,3541.510516303443,196.66382399999998,12.958155771943,122.47400000000002,70.0,158.386752,1447.3783378728394,6.0,29.040000000000006,6.0,0.0,1109.5059121454938,6.0963840000000005,2.6676774290939993,29.040000000000006,6.0,40.310784,186.50246658558157,167.23809523809524,4.598095238095236,0.8929413228669818,12.952380952380953,105.23809523809523,28.27397512955693,784.7935440000002,4.770038207633141,4.120895238095237,74.88359788359786,3.2132982857142847,958.0780179274731,-3.904761904761912,-0.4523809523809525,-0.6048658776387197,3.523809523809524,29.666666666666657,-0.805147486130966,-16.50633200000007,-0.07968921999999788,-0.3759190476190485,-10.276455026455025,-0.3473748571428573,7.844413006948976,50.637188208616756,2.105283446712018,0.28488653439520123,0.5963718820861672,24.494331065759635,-3.0156398855356024,229.06911499999984,-0.5205224546516919,1.899516780045351,29.04509952128999,1.4171208979591825,-8.031545041658937,-53.18140589569162,-2.5856916099773257,-0.30928644053179205,-2.72562358276644,-48.086167800453524,1.194176741208364,-239.3386450000001,0.2907224776836536,-2.287391609977326,-29.765810027714792,-1.8021855510204063,5.212993535800663,-12.040816326530614,0.4858503401360522,0.4554916442406781,-7.306122448979593,-19.612244897959183,-6.696542952086922,-62.82863800000005,-1.2187564609495094,0.39661224489795593,-0.48110355253212644,0.36348097959183784,-239.82358786228758,-78.26757369614512,-2.2751927437641735,-0.44287574642070177,-8.022675736961451,-50.88662131519275,-9.310445842042206,-365.029146,-1.5855712239749793,-2.0531879818594114,-33.401990425799944,-1.5614328163265292,-358.7304031934575,-19.471655328798185,1.2202494331065767,0.26124582433967347,-0.648526077097505,-8.947845804988662,-9.901886675924484,-103.59073899999987,-1.8917016309249606,0.9890446712018159,28.609158478206083,0.9382697959183665,-411.1041865186901,-39.893424036281175,-1.64628117913832,-0.12861756143783548,5.807256235827665,-16.036281179138314,8.418562305939055,-178.09263299999992,1.3745268125998136,-1.5239811791383184,-31.211892164273106,-1.0463909387755104,125.0625232230519,72.50340136054422,0.8491156462585054,0.03755096162000515,2.299319727891157,36.78911564625851,5.979936229794299,343.920246,1.2459725964011008,0.8948585034013636,10.041194255479974,0.43186334693877393,400.530783886556,0.7573026909762495,0.53702765720385,0.46992776194466324,0.27826566522056395,0.32835043309718137,0.14087974578356896,0.18938578669481423,0.07216603499707912,0.13096310307533177,0.0385726617059745,0.08994663403675233,0.021726588632975708,0.06893793352392441,0.011017525231489448,0.04623530340077606,0.006415758173436428,8.030982918931322,5.6937302095541265,3.557694714183663,2.192631084899241,0.46978870350867113,-0.46316648636564695,3.2047450331978626,0.9714977609541136,6.029140974279919,0.9959588138339279,13.6448153942695,10.954213231099276,16.016029200555767,11.705349799827726,1.9830154322484934,0.7405361602315723,3.5039308304313663,2.24238489012854,7.009369968368685,1.4450341175666004,3.716819141309463,2.4384285822828575,20.8897486934915,14.69977176788669,0.3212398633279297,0.7039237921671924,0.7849699078065687,0.8660160234459453,0.8862775523557895,0.8862775523557895,2.4617583645949614,343.2228677267164,0.0,2.0,1.0,0.0,5.0,0.0,1.0,0.0,0.0,2.882348810141944,1.0835660715315947,0.7026136905792142,0.32166130962683237,0.22642321438873658,0.22642321438873658,44.12210638125666,566.2457380410889,54.90115498942964,26.964082763861377,55.48950865564453,,6.0,123.0,11.938610575903699,9.589074368143644,11.3129633249809,0.0,0.0,19.056471336613843,12.13273413692322,0.0,4.736862953800049,5.106527394840706,5.833333333333332,17.25,9.5,0.5,7.75,0.0,0.05128205128205137,1.75,0.2603174603174601,0.08747795414462078,-0.17283950617283933,0.04542124542124537,0.2345479452054795,0.0,0.6936507936507939,0.9358974358974359,0.43333333333333374,0.6061728395061731,0.8904761904761905,6.568476902903792,0.3051526570924734,0.3911526570924734,11.313767015306947,3.800543578300817,2.3085173269798047,17.88224391821074,6.1090609052806215,0.47945205479452047,0.2571428571428572,0.0,0.3428571428571429,0.1111111111111111,0.4383054608592118,-0.6940684614458124,-0.0977608839965821,-0.03305087911646725,-0.08675855768072654,0.5616945391407883,0.8894583786835063,0.05577219650062242,0.042355160889690775,0.06841987528334663,-1.2408516193012007,0.6947608200455581,0.7580778790389398,1.60853630215902,0.8823529411764705,0.4162895927601811,1.1126452483225475,0.6988267186138537,1.081190393967011,0.73442201648278,0.7295273086978029,0.8026430163790763,0.9103456497362025,0.6054242596810934,0.48117750621375327,0.6726462370023403,1.1098345588235294,0.6651583710407241,1.0937273387336328,0.6164905502204283,1.087362583361231,0.4718786544301516,0.4279790503780118,0.5087622917760337,0.9485856560688939,1.0892384411746598,1.3178194764773061,1.183360375805941,1.1685214626391096,1.2275895805307573,0.9477159807741654,1.0798963019323025,0.9200380898132526,1.3026951572667484,1.0858694842655845,1.3336153082443145,0.9011401803343815,0.949471940360323,0.9780070799126311,0.8552604274417622,1.4037433155080212,1.0625257095845333,1.1201797708205605,0.9510478260756356,1.1069210077656515,0.9680964964953188,0.9596262918880034,0.9965419895510421,1.036310468829919,1.253826167425968,1.3531418289146648,1.382458037113976,1.3028492647058822,1.2768665158371042,1.1551981356210346,1.2492265111415082,1.1451052111176356,1.3481521438938373,1.4441394933936273,1.3567395126004933,1.1503501144421011,1.150538056711963,0.8264291632145817,0.6347889479735903,0.7720588235294117,1.0911218598845376,1.1368474577337024,1.1606640885520279,1.1872481869187304,0.857003268854648,0.9726462282883858,0.7851844117164134,1.2917092364220886,1.5457004555808656,1.5191072908036458,0.8856383339602076,0.11580882352941176,1.3493212669683259,0.4834417302938572,1.531084647276354,0.5428016151684525,1.5668076053746987,1.736027697307992,1.4224219457995277,0.9358398349593959,0.0,0.0,0.3879711170170398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.333333333333334,1.0,0.6622222222222225,0.4652777777777778,0.08,0.0,0.0,0.0,2254.199789624122,2438.649771069926,1207.1304561268157,1122.0455321996606,8.14015101377106,0.445752520060662,4.511658185708257,0.804248167460228,1.0,0.1111111111111111,1.5099686126368168,3.308751351247166,3.6897037321995465,4.070656113151928,4.165894208390024,4.165894208390024,0.23076923076923078,0.0,0.07843137254901963,0.0625,0.04414814814814814,0.0422979797979798,0.013333333333333334,0.0,0.0,0.0,0.47148006459771163,11.076923076923077,5.024221453287197,3.3240997229916895,74.75705264447721,1.0,3.450864981353601,39.162682714039875,,28.399233071866075,27.88717155380887,29.50477530627615,28.409774181399168,47.92830732238535,28.27409587015346,28.420837609571944,37.83878463420431,-0.02334851936218683,-0.09838442419221217,-0.6773859179197426,0.2720588235294118,0.2819004524886878,-0.028476628505246303,-0.021032706150803996,-0.016706201613328187,-0.09122266544024207,-0.13723238889281428,-0.10810538775289556,0.008187655765151687,0.19870266230068326,0.3004705623446563,0.2093718628639399,0.030215992647058793,0.15274321266968324,-0.06999417895129738,0.19154923975616936,-0.07161218547862927,0.3024968641233759,0.25453967356744156,0.2894177591356063,-0.005501328007702679,-0.18048543988179525,-0.3191657896504627,-0.1965873324919582,-0.11943561208267091,-0.2593371652195182,0.02397172612438444,-0.1730911952654488,0.034591892625112086,-0.31504059606945284,-0.22560492379612013,-0.31832154333306667,0.0030881890675878267,-0.045816939324911994,0.06724034043835177,0.3246107125287882,-0.358957219251337,-0.11859317153434802,-0.1507193949392886,-0.05094570521270058,-0.1625924698234942,0.0612463059134374,-0.004088436116981324,0.07198400439524136,-0.159292883880123,-0.307125569476082,-0.3247203811101909,-0.3254829865588836,-0.4064797794117647,-0.31732183257918556,-0.21609908248992454,-0.3052399945105817,-0.21813894783242926,-0.32696890729938505,-0.2927217286087756,-0.31889049649385603,-0.24571780449045605,-0.08431191579608828,0.1921728137588209,0.21185939757086392,-0.03625760649087217,-0.061569667654860355,-0.253601826343342,-0.09558435334655734,-0.28717860225112724,0.17379834247759424,0.276655735228549,0.21144527782842923,-0.3107222266817462,-0.2504698177676537,-0.3759372410936203,-0.1512399931006944,0.47077205882352946,-0.15999999999999995,0.31263698792729777,-0.23827574281115627,0.3025663716739779,-0.38830888572524613,-0.43764572882074465,-0.34192607969168143,0.1370615408422252,1.517369020501139,0.6463338856669447,0.14718589262734394,0.6213235294117648,1.2235294117647062,0.7402488227557561,1.5338057635703481,0.9142283347805095,0.7600301829930648,0.46931745919593054,0.47039570556074667,1.463197899723723,3.965406456500188,6.373468493496842,3.1473451902649443,14.11741865902315,30.970123236581806,35.925551808010376,37.357456569915136,37.45345656991513,37.45345656991513,25.252085181385294,18.155880046977103,0.0,7.096205134408191,0.0,7.096205134408191,1037.4483456139965,689.29260729684,461.8926612415023,4.0,17.0,19.0,23.0,24.0,18.0,11.0,7.0,4.0,180.042258736,13.0,4.110873864173311,4.890349128221754,5.733341276897746,6.543911845564792,7.390798521735676,8.210396255104774,9.057072635572965,9.880065382591635,10.726192616779704,0.7460317460317459,1.0304761904761903,1.118985851260835,0.7142619265673135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6721512403763901,1.0141923436041085,1.0416189782540837,0.6679289348957578,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9.843390348640755,11.3129633249809,0.0,0.0,0.0,4.794537184071822,4.794537184071822,0.0,0.0,12.13273413692322,12.13273413692322,6.923737199690624,0.0,156.73153929705143,-248.18859917166398,-34.95784378727247,-11.818504722460188,-31.023574896457998,200.85364567830808,318.05713886942493,19.943311202157165,15.145578041401187,24.46593375918653,0.5,0.6211469876916441,0.30156705592464583,86.39168690612017,0.21408149093931717,36.525088730228376,0.378853012308356,3.0,0.15384615384615385,0.34377492956361716,0.7533042430148215,0.8400357663279463,0.9267672896410715,0.9484501704693529,0.9484501704693529,1.3101,,1.0,1.1428571428571428,0.6925367435132048,0.9970623163947749,-4.329177057356608,1.0348837209302326,0.9939792008757524,-1.5959779122321027,44.71030000000002,19.432464716784395,0.0,0.0,0.0,6.923737199690624,0.0,29.828919765543436,0.0,5.749511833283905,3.295836866004329,0.0,4.553876891600541,0.0,6.003887067106539,0.0,7.551186867296149,0.0,9.15133319139615,15.666666666666664,5.978792517006803,0.0,0.0,0.0,0.0,0.0,0.05574074074074131,0.0,21.639999999999997,0.0,21.184767573696142,0.0,0.0,0.0,0.0,0.0,-1.6476388888888884,23.498702876477537,4.736862953800049,0.0,5.749511833283905,17.045137970744406,4.794537184071822,0.0,17.28172587545944,24.26546827384644,0.0,0.0,0.0,14.999500457913582,14.11517604790419,15.284972566451401,78.32536542807978,,56.64461998987982,55.59851893178306,58.90300649816369,56.666154160269954,97.85469636355067,56.38897886015677,56.688755342080036,76.41417445866956,15.284972566451401,78.3253654280798,,55.79846614372599,54.63148596475012,58.31701386903713,55.82248604639747,100.18579170212735,55.51330801936966,55.84769601826209,77.27354718064075,4.613535435055514,55.04803553412032,,40.06947108681387,39.23970648539556,41.875882168795826,40.08660216941932,73.09920778191116,39.866251167017936,40.10458418469122,55.85444804598485,1.1757671204962616,6.025028109852291,,4.357278460759987,4.276809148598697,4.531000499858745,4.358934935405381,7.527284335657744,4.337613758473598,4.360673487852311,5.878013419897659,2.306767717527758,39.162682714039875,,28.399233071862987,27.887171553803615,29.504775306275167,28.409774181396113,47.92830732238535,28.274095870149942,28.420837609568924,37.83878463420431,21.298039215686277,0.0,1.2208635676492818,0.0,0.0,0.0,8.687243008314436,21.87399854333576,0.0,0.0,4.686898148148147,0.0,0.0,0.0,0.0,0.0,0.0,14.026507632810914,222.11296049060388,31.709340865373154,69.48377837619049,77.48377837619047,85.4837783761905,87.4837783761905,87.4837783761905,153.0,92.54300152664236,135.47222448475563,43.55612088340371,63.60000000000001,63.60000000000001,1.0,6.541931468646065,4.700439718141093,3.2539318909608386,3.5504624256934068,,3.5477579274015025,3.5481551584781723,3.5468314771019256,3.547749509155651,3.53059346306632,3.547857155037288,3.547740663985665,3.538966402246047,0.2503024531508337,0.2731124942841082,,0.27290445595396173,0.27293501219062866,0.27283319054630195,0.27290380839658857,0.27158411254356307,0.2729120888490221,0.27290312799889727,0.27222818478815747,1.4422283421789155,1.5294421202303257,,1.5286800986845743,1.528792059209535,1.52841892774091,1.5286777258462885,1.5238302411309543,1.5287080674045908,1.5286752326654736,1.5261989722130058,128.79000000000002,53.71773879695637,51.823715382117264,,51.75189374707748,51.72632920029902,51.806515826589354,51.752418673030306,52.49438622008071,51.74565752125031,51.75296954133561,52.16993777590676,4.132133753612028,3.986439644778251,,3.9809149036213447,3.9789484000230013,3.985116602045335,3.980955282540793,4.038029709236978,3.9804351939423315,3.9809976570258163,4.013072136608212,4.246107542849358,4.210212134872223,,4.208825290089845,4.208331185213081,4.209880193980357,4.208835433163897,4.223070499206421,4.208704780459263,4.208846077407928,4.216870688783174,4.686898148148147,21.184767573696142,8.687243008314436,-0.01601851851851821,-1.575879629629629,5.978792517006803,0.0,1.2208635676492818,0.0,162.94248008196882,56.04487647100896,-88.74856614357482,-12.500407037011549,-4.226122197313086,-11.093570767946852,71.8222880428531,113.73252083535692,7.131432625244529,5.415834325493186,8.748655448873608,246.0,16.0,1.0443310539518174,0.26007122853967934,0.0,0.0,0.2041241452319315,0.030186502353362538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.10703808753134778,0.02522911917955175,9.844934982691242,6.981359543650051,6.109060905280622,3.6174536478673316,5.5819573626520835,2.3949556783206725,3.5983299472014707,1.3711546649445032,3.0121513707326306,0.8871712192374136,2.158719216882056,0.521438127191417,1.2408828034306394,0.19831545416681007,0.5085883374085366,0.07057333990780071,1.6528476222170196,0.39234146022424865,2.5412328557655233,0.4743837086059512,3.4823101044122686,0.5105604749007004,47.11465056871599,28.96184866901246,22.589652281813134,20.464367362711577,20.236527608161218,20.236527608161218,60.0,66.0,23.572343999999987,11.497655999999997,0.2857142857142857,13.04,5.694444444444445,2.9722222222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,21.0,0.0,0.0,21.0,6.0,2.0,5.0,16.0,8.0,13.0,13.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,3.0,1.0,0.0,13.0,4.0,0.0,0.0,4.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,2.9444389791664403,4.239076020132868,3.449987545831587,3.844814255734696,4.355104977107617,4.756280534402469,4.659895085677338,4.602353723478517,4.342993403944672,3.840795496139778 +54685920,C[C@H]1c2cccc(O)c2C(O)=C2C(=O)[C@]3(O)C(O)=C(C(N)=O)C(=O)[C@@H](N(C)C)[C@@H]3[C@@H](O)[C@@H]21,0,25.464285714285715,6.616246428571429,3.7142857142857144,9.25,163.09981954646386,100.68450542857146,1.4212882449352857,6.649410714285715,7.736235119047619,8.113419428571428,219.3060047676036,26.033898305084747,6.609457627118645,4.6440677966101696,8.35593220338983,147.82944199529916,99.03445035593224,1.7843806406779663,6.734364406779661,3.8248587570621466,8.028798576271184,270.86930953553855,24.259615384615383,6.422096153846154,4.605769230769231,7.75,150.88642406367154,92.47533750961533,1.6674993088893264,6.539731730769228,3.5365918803418803,7.870609192307692,250.33906392558058,23.448051948051948,6.543337662337662,3.948051948051948,7.396103896103896,151.1881051478951,88.25957683116884,1.5334205444837017,6.644576623376624,4.200577200577199,8.010499376623375,230.78239958731294,21.235294117647058,6.595901960784314,3.2058823529411766,6.3088235294117645,157.4073379111646,78.93996056862743,1.309723593328054,6.658877941176469,5.093273420479303,8.10229262745098,195.71403064166796,18.72398190045249,6.673234841628958,2.8054298642533935,4.918552036199095,161.28272453172815,67.34047796380088,1.197676183060525,6.712428506787328,5.152589240824536,8.212636307692307,175.73348574675762,15.86046511627907,6.51048372093023,2.4651162790697674,3.744186046511628,163.9905635593015,55.40459909767442,1.0971465281435624,6.5440697674418615,4.647157622739018,8.095517023255814,156.21469607854615,13.97883597883598,6.36068783068783,2.2169312169312168,3.3386243386243386,167.56642440605586,48.184293608465595,1.0194418899315028,6.384685185185186,4.226484420928865,7.9768203174603185,141.1699165197277,13.531468531468532,6.213923076923074,2.1468531468531467,3.167832167832168,165.76423315856408,46.65829848951049,1.0313578337301608,6.249824475524477,4.113636363636362,7.831177174825175,139.20423562423466,8.003826530612246,0.19183201530612237,0.040098428153746805,0.8966836734693879,4.503826530612245,1.400514974475264,37.697606959183666,0.22073632912628569,0.174203443877551,3.3274850304705206,0.1287582040816326,46.836333332703006,-0.41605413351781445,-0.035433891819439615,-0.018906865155432453,0.4913308543756485,1.0276504669664477,0.22042284753356173,-1.6904926516776262,0.045511191651305016,-0.03162838334486338,-0.5448078882859639,-0.022420877205119327,6.597483620442463,1.1397174254317104,-0.0014478463500784955,-0.0009849729156563446,0.12804160125588693,0.7025608320251179,0.3237136317104348,5.520435656200941,0.04154066233200953,0.00153755886970171,0.06472822502398395,-0.0030185392464678047,10.533037574974019,0.3438079777365487,0.005028907699443419,-0.0033411120204721043,-0.05762987012987018,0.5420918367346939,-0.15628656530069823,1.5563622393320935,-0.022116622989428625,0.006115642393320951,-0.0746690840161822,0.0010305825602968416,-1.6876636120442237,0.801845738295318,0.03437188875550219,0.00447222243942671,-0.18064725890356137,0.26893257302921175,-0.1959462462630518,3.574406597539014,-0.029886209691313746,0.031544507803121236,0.45992281461195583,0.02107824969987994,-3.027308190265588,-1.101273201588328,-0.0027842454289407795,0.00033383950994002906,-0.1570262720472804,-0.8633934342967954,-0.0761809716113789,-5.286041533844307,-0.02421222059785522,-0.005358728299011905,-0.0527956675458645,0.00048225099270474917,-7.5205586809351725,-1.4098065970574278,-0.029269573445657306,-0.002659631065631764,-0.04967370669197909,-0.9028298528713812,-0.12753515088567077,-6.605886628951115,-0.017409751315860457,-0.02787620135263406,-0.2657942543538734,-0.017587466540104423,-6.007238858568193,-0.5079837490551777,-0.01980618386243386,0.00098918789356185,0.016581632653061243,-0.3528439153439154,0.11986819752555333,-2.282993768707481,0.015941531355788387,-0.01828923374905517,-0.3449740862780297,-0.01211685563114134,1.4316151921401477,0.04712252033680626,0.005358444234337071,0.0020966163879084275,0.010908734123019851,0.0833363065505921,-0.059902525065019904,0.18786108477237287,-0.004686456311944028,0.004664613065505928,0.11990612004562905,0.003852625089196535,-0.8606012490322291,,,0.4520833333333334,1.046875,0.40625,0.015625,0.640625,-0.234375,1.207181118292335,0.032734540101303666,0.04348454010130366,1.1491067520095217,0.20753158109743203,0.25705305262542355,2.356287870301857,0.4645846337228556,2.010897703375699,1.449248661436453,0.1166594289322413,0.4449896130070049,0.0,0.5616490419392461,7.931308316571441,1426.0,370.50980000000004,208.0,518.0,9133.589894601977,5638.332304000001,79.592141716376,372.367,433.22916666666663,454.35148799999996,12281.136266985803,1536.0,389.958,274.0,493.0,8721.93707772265,5843.032571000002,105.27845780000001,397.3275,225.66666666666666,473.69911599999983,15981.289262596774,2523.0,667.898,479.0,806.0,15692.188102621842,9617.435100999994,173.41992812448996,680.1320999999997,367.80555555555554,818.543356,26035.26264826038,3611.0,1007.674,608.0,1139.0,23282.968192775847,13591.974832000002,236.14676385049006,1023.2648,646.8888888888887,1233.6169039999997,35540.48953644619,4332.0,1345.564,654.0,1287.0,32111.09693387758,16103.751955999996,267.183613038923,1358.4110999999996,1039.0277777777778,1652.867696,39925.66225090026,4138.0,1474.7848999999999,620.0,1087.0,35643.48212151192,14882.245629999996,264.686436456376,1483.4466999999995,1138.7222222222224,1814.9926239999998,38837.100350033434,3410.0,1399.7539999999995,530.0,805.0,35257.97116524982,11911.988806000001,235.8865035508659,1406.9750000000001,999.1388888888888,1740.5361599999999,33586.15965688742,2642.0,1202.1699999999998,419.0,631.0,31670.05421274456,9106.831491999998,192.674517197054,1206.7055,798.8055555555555,1507.6190400000003,26681.114222228538,1935.0,888.5909999999997,307.0,453.0,23704.285341674662,6672.136684,147.484170223413,893.7249000000002,588.2499999999998,1119.858336,19906.205694265554,448.2142857142858,10.742592857142853,2.245511976609821,50.21428571428572,252.21428571428572,78.42883857061479,2111.0659897142855,12.361234431071999,9.755392857142855,186.33916170634916,7.2104594285714265,2622.8346666313682,-24.547193877551052,-2.0905996173469372,-1.1155050441705148,28.98852040816326,60.631377551020414,13.004948004480141,-99.73906644897994,2.685160307426996,-1.8660746173469391,-32.143665408871875,-1.3228317551020403,389.25153360610534,118.53061224489788,-0.15057602040816354,-0.10243718322825983,13.31632653061224,73.06632653061226,33.66621769788522,574.1253082448978,4.320228882528991,0.15990612244897784,6.731735402494332,-0.3139280816326517,1095.435907797298,52.9464285714285,0.7744517857142865,-0.514531251152704,-8.875000000000007,83.48214285714286,-24.06813105630753,239.6797848571424,-3.4059599403720084,0.9418089285714264,-11.49903893849206,0.15870971428571362,-259.90019625481045,163.57653061224488,7.011865306122448,0.9123333776430489,-36.85204081632652,54.862244897959194,-39.97303423766257,729.1789458979589,-6.096786777028004,6.435079591836732,93.82425418083899,4.299962938775508,-617.5708708141799,-243.38137755102048,-0.6153182397959123,0.07377853169674642,-34.70280612244897,-190.80994897959178,-16.835994726114738,-1168.2151789795919,-5.3509007521260035,-1.184278954081631,-11.667842527636054,0.10657746938774956,-1662.0434684866732,-303.108418367347,-6.292958290816321,-0.5718206791108292,-10.679846938775505,-194.10841836734696,-27.420057440419214,-1420.2656252244897,-3.743096532909998,-5.993383290816323,-57.14576468608278,-3.781305306122451,-1291.5563545921614,-96.00892857142858,-3.7433687499999992,0.18695651188318965,3.1339285714285747,-66.68750000000001,22.65508933232958,-431.4858222857139,3.0129494262440053,-3.456665178571427,-65.20010230654762,-2.290085714285713,270.5752713144879,6.738520408163295,0.7662575255102011,0.2998161434709051,1.5599489795918386,11.91709183673467,-8.566061084297846,26.86413512244932,-0.670163252607996,0.6670396683673476,17.146575166524954,0.5509253877551045,-123.06597861160877,0.7455913953310519,0.5501305895968116,0.42476309368946824,0.28616288024409336,0.2605693595400121,0.15422008036181742,0.15303195911293874,0.07947750053236688,0.09566794115836119,0.04256703739997995,0.0553360224009509,0.023085467978967315,0.032225355054603555,0.012342877884233574,0.019207422537961406,0.006658276808791422,8.026065341228039,5.675912168027102,3.548426141615779,2.174863516087486,0.468438944838603,-0.381530681414363,4.034159325237859,0.9724219469514509,6.024484545190107,0.9930554704311811,14.544746445518243,10.936394092287276,16.014531828818804,11.687527881292661,2.008769688168381,0.7512734511599489,3.4939745690169297,2.224635555374327,7.010464356062344,1.1107318095435077,3.7068944327919624,2.420675156640636,20.91441655034283,14.701781135490535,0.2680748111954524,0.6631706111578202,0.8343732946775545,0.8800304321245411,0.8859179627217612,0.8859179627217612,1.8332381452828381,1136.740039291983,0.0,1.0,1.0,0.0,8.0,2.0,4.0,4.0,0.0,4.181189207630862,1.7845028462838766,0.7459720984074529,0.4690118304730424,0.4332975447587568,0.4332975447587568,114.55726878776181,2440.530090382962,100.92233778063857,43.580894471124324,93.10351258568441,,11.0,578.0,75.6387845918964,39.91624852641899,11.3129633249809,5.563451491696996,0.0,25.06162076466647,19.056471336613843,0.0,0.0,5.733667477162185,14.466666666666669,33.5,13.0,0.5,20.5,0.0,0.04791666666666661,-7.5,0.21015873015873004,0.05339105339105377,-0.15676767676767628,0.11068376068376051,0.22081818181818152,0.0,0.6523809523809515,0.9166666666666663,0.44222222222222146,0.5989898989898977,0.8059829059829058,38.62979578535472,1.0475052832417173,1.3915052832417172,36.771416064304695,6.641010595117825,8.225697684013554,75.40121184965942,14.866708279131378,0.49318181818181844,0.3156682027649769,0.034562211981566816,0.5460829493087557,0.4090909090909091,0.4046920187453041,-1.6434080938611857,-0.10419727303591288,-0.02934657310466403,-0.09130044965895476,0.595307981254696,2.417477759426365,0.06373103704273594,0.043169245704042236,0.06361783577437805,-0.9189462073060506,0.8090485515564859,0.9021880575699794,1.371898360723192,0.7518624779998552,0.5377791858070647,1.0818217834416222,0.8087284533973386,0.9390085964270061,0.8829010513772447,0.8724889558991814,0.9157072300199637,0.8565872226169474,0.6454030033711309,0.6586311465109184,0.7364953939872937,1.253282634861582,0.667834890965732,0.9662904666273249,0.6499329546375303,0.9334432764499937,0.6392302595098851,0.608453629811388,0.6732117032435275,0.8006586269693493,0.7956175298804781,0.7945059153715884,0.8980261135941815,1.344238975817923,0.7575757575757576,1.227164462863815,0.8014949835572333,1.2063963293500497,0.7753605148800481,0.8830930116947586,0.8415449493053899,1.0404259045435569,0.8379111006952581,0.8097062299965583,0.856876306180793,1.336917412768806,0.9086188992731048,1.1658954674152746,0.8431136623852719,1.1597543771797645,0.7986993798804524,0.8766502290499661,0.8474982999875015,1.039475264492766,1.1343657046024047,1.151883556223643,1.0865381930352274,1.2365556792801373,1.2304591139115602,1.0383670157429015,1.1329082683417828,1.078209460681514,1.1543500271036666,1.202517432836617,1.1590942964151585,1.0978750697824091,1.2068303530065783,1.2755534296992,1.167459466964307,0.9755863574713023,1.2318336593494168,1.027499811504999,1.2022243580745204,1.0224195170246666,1.2775274907575185,1.2035902664702602,1.270510900598826,1.0794529249892435,1.1267817618415226,1.187150462059486,1.0134922735566256,0.8258258258258256,1.1364947502019154,0.8217522841080388,1.1212197618091237,0.8402475688963966,1.1935941821353184,1.1979733532015884,1.164200368501715,0.9361945453548342,1.0292981918479926,0.9346708560086816,0.937553819131379,0.7736076157128787,0.9805459338169618,0.9493680061257567,1.0307391702298034,0.9661363548885584,0.9485443807778339,0.8731622780373015,0.9113813795968385,1.0226621947730552,7.5,0.07427813488419549,5.7777777777777795,5.5625,5.395555555555557,2.7430555555555554,1.36,0.859375,0.4353741496598639,0.30687500000000006,7702.458020116844,8518.724745113892,3077.3794128899444,2806.0640944984975,12.595655334504832,0.4452208947928346,6.98780639597445,0.8025192200174526,0.0,0.4090909090909091,1.626165714426742,4.022852075773727,5.061382823650151,5.338343091584561,5.374057377298847,5.374057377298847,0.21428571428571427,0.005713702683399652,0.10136452241715402,0.07319078947368421,0.06423280423280424,0.03706831831831832,0.023448275862068966,0.01953125,0.013605442176870746,0.014613095238095241,0.5670539146881097,25.103673469387754,8.587257617728532,3.3703512396694215,182.42923685321398,0.0,4.41695578671812,150.64396369845792,,127.51076974006915,126.5023793817555,127.40051617448935,127.52464995405259,154.07716880207005,127.16044462437972,127.56379912639585,142.0948165198152,-0.05198190289688709,-0.18471312915570842,-0.471511379023115,0.5479422330448198,0.22817274599311668,0.15738699803345435,-0.044843500371468496,0.2061789820979924,-0.1815600348698917,-0.1637296286225293,-0.1741316397276286,0.1408625131599667,0.14239656757585034,-0.007547469841090114,-0.024563878461263535,0.14279461647882694,0.15599198309478685,0.23113900073201415,0.14643994941583646,0.1881913253538055,0.00882622544926536,0.019452596910655706,-0.023443471179157273,0.2248903111213326,0.04295545092357835,0.026215163779718265,-0.08332276785667246,-0.06427001163843273,0.12036250354007362,-0.11159221297098568,0.04128543864912204,-0.10019475759595269,0.03510632314261069,-0.022440096148418638,0.008004014716168711,-0.03603321378844636,0.10018279821888912,0.17917701954312526,0.11153111593998542,-0.20146152344294752,0.05971201848057264,-0.1399101400800571,0.09481786473632481,-0.13539325316140197,0.18107855448193164,0.13821934896786622,0.16370412938127302,-0.06463589215579778,-0.1375933370590038,-0.01451397684843026,0.008325501155806153,-0.17511891505699548,-0.19170219555046378,-0.05439497113547243,-0.14022220401331215,-0.10968842643026441,-0.030761322392561873,-0.015866537959570912,0.003745400117564566,-0.16057103846094667,-0.17614157324191607,-0.1525791896568954,-0.06632756414875199,-0.05539713520129673,-0.20045839837189544,-0.0910630398175177,-0.175233580107711,-0.07887125506150891,-0.16002095442055939,-0.07987842226784982,-0.13659297802067805,-0.12826022942264992,-0.06346761103733216,-0.10324754098437364,0.024668994250075613,0.018492176386913247,-0.07834314064843662,0.08558865825084432,-0.060560708035906546,0.0722197900947608,-0.10498778521227642,-0.1036741211813202,-0.09410550354880114,0.030566337931934917,0.005887498955228064,0.027933002871216018,0.052286747497171396,0.012165643744591127,0.01850344501151634,-0.042771784776855955,0.004983368970231338,-0.021231014987400893,0.02677681314259621,0.03603505919564537,0.02992139504177903,-0.01837465035785205,2.381101577952299,10.037355723050783,34.90308420823331,15.709683553033546,37.9177167967157,43.8739676526496,45.2239293170132,45.2599293170132,45.2599293170132,64.34872650802237,46.3759571659665,3.7331017258317214,14.239667616224157,0.0,17.972769342055877,6023.152396256195,5119.919655328639,2029.9694463001692,427.0,57.0,88.0,131.0,182.0,225.0,278.0,328.0,392.0,444.1532657280007,35.0,5.220355825078324,6.163314804034641,7.13966033596492,8.105005537547246,9.085343881801498,10.059593462511671,11.04175315308089,12.02050783507024,13.003780271777305,0.6964285714285715,1.0138571428571428,1.129286443776555,0.6607633478834877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.656105988023952,0.9978991596638658,1.0290292373322234,0.6381473859439971,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,3.0,0.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,5.0,1.0,1.0,0.0,0.0,31.266304451365713,22.840946106665527,11.384295757348628,5.783244946364939,5.907179729351506,19.283521283065944,0.0,0.0,0.0,19.056471336613843,31.64306857167438,11.49101057623066,23.627164754754652,243.21369394960044,-987.6630490857405,-62.62096236320581,-17.636840162245367,-54.87016939365225,357.77096273736225,1452.8670412972217,38.301375417432766,25.94405430887896,38.233343192032166,0.45454545454545453,0.6000788714591195,0.12503070537841016,85.66214412290098,0.07218833857362347,192.39794105203484,0.39992112854088047,6.0,0.05714285714285714,0.2800183106168023,0.692716758277345,0.8715470109164349,0.9192383043971305,0.9253881413183482,0.9253881413183482,-0.5041999999999991,,2.2857142857142856,2.657049790600279,1.835572657941705,2.279124989753925,-9.694717751076853,2.392135862913097,2.268484387975675,-3.830605080951063,110.34540000000001,39.91624852641899,0.0,4.899909730850478,17.56947956948497,30.58850127373197,14.09534396535438,46.23137812057353,0.0,5.749511833283905,4.2626798770413155,0.0,5.700443573390687,0.0,7.359467638255621,0.0,9.133351330448047,0.0,10.972173137962086,39.00000000000001,4.493391710276856,0.0,0.0,0.0,0.0,0.0,0.13420319979843853,0.0,56.775999999999996,0.0,38.625168854247136,0.0,0.0,0.0,0.0,0.0,-6.68584627974238,63.24004085148708,5.733667477162185,0.0,5.749511833283905,79.74841832036971,14.383611552215466,11.835812092322787,23.96854622924601,35.10447513717954,0.0,5.759164871656176,0.0,37.00274748147531,36.74193532934132,39.57625423463668,301.2879273969159,,254.8786823372812,252.83869315159848,254.6863090578574,254.90685459624558,312.09839932174026,254.17138075732734,254.9858179785432,285.4520753140422,39.57625423463668,301.2879273969159,,252.735825194424,250.3477089729106,252.96545969103707,252.77017491835113,317.84905535521693,251.92875338584645,252.85911386481595,288.0202381205814,5.358043572490479,211.13877030181843,,181.01826310524618,179.95196318669488,180.8740663389147,181.0328603615886,209.07571620687582,180.64643014741046,181.07449729867864,196.4530412379585,1.2367579448323962,9.415247731153622,,7.964958823040037,7.901209160987452,7.958947158058043,7.965839206132674,9.753074978804383,7.942855648666479,7.968306811829475,8.920377353563818,2.6790217862452392,150.64396369845792,,127.51076974006915,126.5023793817555,127.40051617448935,127.52464995405259,154.07716880207005,127.16044462437972,127.56379912639585,142.0948165198152,55.882352941176485,0.0,4.596590583738852,0.0,0.0,5.259926979285746,54.892671667457925,57.62563729060451,0.0,0.0,0.0,0.0,-6.163076131687244,1.3250817796254304,-2.894779029667421,0.0,0.0,35.73625361286384,360.63819454895895,91.06528000789756,225.27971624332872,283.43743812440846,298.9472131287354,300.9472131287354,300.9472131287354,2175.0,148.83931510686674,240.34646213800372,69.42811555709775,181.62,181.62,0.8333333333333334,8.945491460829025,6.129283016944966,4.786491540388376,5.576615593889313,,5.587162942273622,5.58848776486359,5.589766530380757,5.58715253043386,5.552207155741627,5.587752948519084,5.587079188410958,5.568101383232344,0.14957786063713674,0.17426923730904104,,0.1745988419460507,0.1746402426519872,0.17468020407439866,0.17459851657605813,0.17350647361692584,0.17461727964122137,0.17459622463784244,0.17400316822601075,2.7289484978185174,2.8817328777959768,,2.883622444395383,2.883859535305056,2.884088330515645,2.8836205808647195,2.8773463442272296,2.8837280391491644,2.883607453873129,2.8802049408674963,309.920000000001,265.7223030607248,217.4601072374184,,214.7413637992459,214.37808836217232,214.70820891734445,214.74634462500327,223.62834109001724,214.61524381533698,214.7604345530611,219.77653741698185,8.30382197064765,6.795628351169325,,6.7106676187264345,6.699315261317885,6.709631528667014,6.710823269531352,6.988385659063039,6.706726369229281,6.711263579783159,6.868016794280683,6.745602599811604,6.545166228511456,,6.532585154724007,6.530892033976271,6.532430748320678,6.532608348988522,6.573136292115541,6.531997671101771,6.53267395879375,6.555762100931864,0.0,39.950250633872564,54.892671667457925,1.468646049475553,-8.866450126219245,3.131184237781685,-1.5895597127739987,1.6766898673049466,2.9199007164339053,399.9659633070649,146.16769835986864,-593.5703384771925,-37.63423756725846,-10.599470329949867,-32.97612991539959,215.0148592132778,873.150800025814,23.018538955884303,15.591978571889538,22.977652632258273,2336.0,76.0,3.3895910280884025,1.6608248747354186,0.09622504486493763,0.032274861218395144,1.6845942984039364,0.5559706442107919,0.14318612606609032,0.024563243896352824,0.0,0.0,0.0,0.0,0.0,0.0,0.16922844869097264,0.08977918909913547,0.6516202837818177,0.2642042113932385,23.85892465059366,17.60417886709797,14.86670827913139,10.015700808543269,14.852453493780688,8.790544580623592,13.46681240193861,6.994020046848285,12.532500291745317,5.576281899397373,10.071156076973065,4.201555172172052,7.250704887285799,2.777147523952554,5.339663465553271,1.8510009528440154,9.42705319281197,3.905763206968791,18.06532049283881,6.195873560309072,33.5860390067811,9.940250563875457,110.54355295952627,45.42333327681242,30.21766422460164,27.171074913857552,27.0350979523555,27.0350979523555,184.0,237.0,61.359031999999985,27.820968000000004,0.32142857142857145,233.1,14.590277777777779,6.777777777777773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,6.0,6.0,56.0,0.0,1.0,59.0,6.0,5.0,8.0,51.0,11.0,35.0,48.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,9.0,6.0,0.0,32.0,10.0,0.0,2.0,8.0,0.0,4.0,2.0,0.0,0.0,0.0,0.0,1.0,3.784189633918261,7.743229045189045,4.412798293340635,5.022234429939608,5.58114392002342,6.047815343245865,6.387300106240303,6.743470084674281,7.091638116343044,7.45753715785854 +5479530,CO/N=C(\C(=O)N[C@@H]1C(=O)N2C(C(=O)O)=C(CSc3nc(=O)c(=O)[nH]n3C)CS[C@H]12)c1csc(N)n1,0,42.111111111111114,7.011666666666664,3.888888888888889,11.506172839506174,165.20157538433855,167.77626905555547,1.8076974127274439,7.053744444444442,7.900396281054717,8.4808942037037,248.78504011238113,36.473684210526315,6.915542105263158,4.56140350877193,10.052631578947368,152.77214793942198,142.1727644385965,1.9662686529122806,7.041757894736842,3.9471518301927655,8.318250947368421,285.24690918412324,34.075268817204304,6.842750537634408,4.161290322580645,8.54121863799283,158.4347376354427,130.98049356989247,1.7473360907703335,6.947776344086021,4.142008495951147,8.339197612903225,247.73898427951102,32.495327102803735,6.9462542056074765,3.850467289719626,8.14018691588785,158.6993219021999,124.0984176542056,1.7245962320906354,7.034692523364485,4.65830160378447,8.4051498317757,243.02249512151943,30.806451612903224,6.762097580645161,3.370967741935484,6.439068100358423,159.51813629533999,116.05935678225808,1.6056122511491129,6.857095161290323,4.037164255055533,8.320502701612902,220.26714028712982,31.1869918699187,6.967225203252031,3.1951219512195124,5.775067750677506,159.79271652628657,118.07095943902439,1.4587389721251713,7.040929268292683,4.946803171735422,8.515156991869919,212.3230796340375,24.614173228346456,6.699488188976376,3.1102362204724407,5.490813648293964,165.84341260896693,91.30097151181103,1.3723826678211184,6.754119685039369,4.008117040925439,8.258837448818896,190.5937439236501,28.370689655172413,6.811708620689654,3.336206896551724,6.816091954022988,161.61630579539818,106.56614651724134,1.5119606101249137,6.885079310344828,4.193300340570455,8.345975086206897,211.13112780749555,28.89075630252101,6.738364705882353,3.092436974789916,6.5247432306255835,163.0089717086546,108.8905547647059,1.4630633376506974,6.811413445378151,4.628413505319822,8.296559016806723,202.0262454883502,14.060356652949247,0.19569945130315491,0.04140172217669825,0.7283950617283949,4.975308641975309,1.865339730362246,62.30679236111112,0.35092557029840604,0.1738097393689986,3.2504276109671633,0.12611806344307272,44.48914577950901,0.13262580319110454,-0.018849938632589647,-0.02224741650819206,0.26770630279402213,1.4294996751137103,-0.10971548699797433,0.931656519005837,0.036748228811404965,-0.015904281279329933,-0.2007360523953791,-0.016506060519096078,2.6553483512759644,-0.4044426744546221,0.016895570600469045,-0.0012328945110767486,0.01951413779370773,0.7005177220230984,-0.22557573344931964,-1.115348108422948,-0.015528246204103705,0.01654187353422719,0.41636565913820056,0.007268907484844472,4.474290282467471,-1.178044434188429,0.014353473584349366,0.004959052612547185,-0.10014999423099108,-0.15276335525556695,0.20399438849548926,-5.238983531412259,0.001699329535232972,0.00851106367703815,0.15690999855497806,0.007802144587387641,-4.249094948503698,-1.1959599982300104,-0.007261518208770316,-0.002362029986502868,-0.163878932696137,-0.3711668657905217,-0.040802375737388374,-5.400940589157707,-0.036773772537163775,-0.0062384132041240934,-0.19569129028434015,-0.007587593311650938,-3.1785492082276345,0.5048345545183843,-0.041210441968617124,-0.0009650854716208396,-0.047274917193616366,-1.7115326708822645,-0.442852622155429,1.4860998001355008,-0.05645960132098234,-0.03287249155207589,-0.5147023410487116,-0.013778027911606384,-8.742200094209094,-0.2563321560113623,-0.02010470064698706,0.0025232053746353047,0.08350345095751921,-0.5146301156799845,0.21949303581740523,-0.9903952150043723,0.02492740695330756,-0.018158033332253267,-0.4305878755705759,-0.013558389631465764,3.5973146864211163,-1.061633792157419,-0.003091596897024738,-0.0005381537797951633,-0.01670923797360578,0.16528309919114512,-0.08083440145894165,-4.652105473659005,-0.016160777476313753,-0.004184835154439229,-0.17709952021144343,-0.002835551948819824,-2.7072714726266645,0.6850526218717937,0.015995755668522505,-0.002499593838193711,-0.06639692914202716,0.5856416640730367,-0.1661320717513981,3.1227638639122315,-0.017659478957675556,0.016674014132401865,0.2565585396888015,0.0069806737184586135,0.8884036497636381,,,0.4731481481481481,1.1944444444444444,0.5,0.05555555555555555,0.6944444444444444,-0.19444444444444445,1.0261111282913449,0.022164266779025808,0.03171982233458136,1.0661408931356098,0.2242639224803198,0.25118885413990705,2.0922520214269547,0.47545277662022684,2.0170989919998075,1.053480093952032,0.4489489360778922,0.34483120822404956,0.0,0.9636188980477763,10.260112183629637,2274.0,378.6299999999999,210.0,621.3333333333334,8920.885070754282,9059.918528999995,97.61566028728197,380.9021999999999,426.6213991769547,457.96828699999986,13434.392166068581,2079.0,394.1859,260.0,573.0,8708.012432547053,8103.847573,112.077313216,401.3802,224.98765432098764,474.14030399999996,16259.073823495024,3169.0,636.3757999999999,387.0,794.3333333333333,14734.430600096171,12181.185902000001,162.502256441641,646.1432,385.2067901234567,775.5453779999999,23039.725537994524,3477.0,743.2492,412.0,871.0,16980.82744353539,13278.530689,184.531796833698,752.7120999999999,498.4382716049383,899.351032,26003.40697800258,3820.0,838.5001,418.0,798.4444444444445,19780.24890062216,14391.360241000002,199.09591914249,850.2798,500.6083676268861,1031.742335,27313.125395604096,3836.0,856.9686999999998,393.0,710.3333333333333,19654.504132733247,14522.728011000001,179.42489357139607,866.0343,608.4567901234569,1047.36431,26115.738794986613,3126.0,850.8349999999998,395.0,697.3333333333334,21062.1134013388,11595.223382,174.29259881328204,857.7732,509.03086419753083,1048.8723559999999,24205.40547830356,3291.0,790.1581999999999,387.0,790.6666666666666,18747.49147226619,12361.672995999996,175.38743077448999,798.6692,486.4228395061728,968.1331100000001,24491.210825669485,3438.0,801.8654,368.0,776.4444444444445,19398.067633329898,12957.976017,174.104537180433,810.5581999999999,550.7812071330587,987.290523,24041.123213113675,759.2592592592594,10.567770370370365,2.2356929975417055,39.33333333333332,268.6666666666667,100.7283454395613,3364.5667875000004,18.949980796113927,9.385725925925925,175.52309099222683,6.810375425925926,2402.4138720934866,7.559670781892958,-1.07444650205761,-1.2681027409669474,15.259259259259261,81.4814814814815,-6.253782758884537,53.10442158333271,2.094649042250083,-0.9065440329218062,-11.441954986536608,-0.9408454495884764,151.35485602272996,-37.61316872427986,1.571288065843621,-0.11465918953013762,1.8148148148148189,65.14814814814815,-20.978543210786725,-103.72737408333417,-1.4441268969816445,1.5383942386831286,38.72200629985265,0.6760083960905359,416.1089962694748,-126.0507544581619,1.5358216735253822,0.5306186295425488,-10.716049382716045,-16.345679012345663,21.827399569017352,-560.5712378611117,0.181828260269928,0.9106838134430821,16.78936984538265,0.8348294708504775,-454.6531594898957,-148.2990397805213,-0.9004282578875191,-0.29289171832635563,-20.320987654320987,-46.02469135802469,-5.059494591436159,-669.7166330555557,-4.559947794608308,-0.7735632373113875,-24.26571999525818,-0.9408615706447163,-394.1401018202267,62.09465020576127,-5.068884362139906,-0.11870551300936327,-5.814814814814813,-210.51851851851853,-54.47087252511776,182.7902754166666,-6.944530962480828,-4.043316460905334,-63.30838794899152,-1.6946974331275853,-1075.2906115877186,-32.55418381344301,-2.553296982167357,0.3204470825786837,10.60493827160494,-65.35802469135804,27.875615548810465,-125.78019230555529,3.1657806830700603,-2.306070233196165,-54.68466019746314,-1.721915483196152,456.8589651754818,-123.14951989026062,-0.3586252400548696,-0.06242583845623895,-1.9382716049382707,19.172839506172835,-9.376790569237231,-539.6442349444446,-1.8746501872523955,-0.4854408779149506,-20.543544344527437,-0.32892402606309956,-314.0434908246931,81.52126200274346,1.9034949245541781,-0.29745166674505163,-7.901234567901232,69.69135802469137,-19.769716538416375,371.60889980555555,-2.1014779959633914,1.984207681755822,30.530466222967377,0.830700172496575,105.72003432187293,0.7262648725578598,0.5841839046969248,0.43887948611097866,0.3299762451137995,0.28083296955072795,0.17959695656631913,0.17174867040695496,0.1045052692164775,0.1089309002704208,0.06190997088916158,0.07090666641824109,0.036562809177002616,0.042901122782695006,0.022634277914726404,0.027286732446847806,0.014250686090073246,16.005436728799264,5.737151611092186,3.559771634617891,2.2242052232401983,0.575364165522867,-0.4472563094570672,3.2716055177895265,0.9723837309807062,6.028424631154047,0.6501317166075276,14.693047795489353,10.311855056165074,32.0635906208417,11.750438361923857,2.936502584902278,0.7391935888756846,3.506788087358892,2.2768590946635836,7.012742353234927,0.6101984330722882,3.7190268821073493,2.4751521842522766,24.441158725983335,14.696584577209354,0.3426463311781766,0.7330817913540761,0.8830332306756676,0.9013499925336853,0.9013499925336853,0.9013499925336853,1.3472880690977553,1428.1226692899504,0.0,6.0,3.0,0.0,3.0,1.0,1.0,0.0,0.0,3.6763642964535173,1.307947971909087,0.3983291667467963,0.2872180556356865,0.2872180556356865,0.2872180556356865,83.07620066447492,3527.5375015135905,129.34292697695287,65.32476854654797,138.71098444396003,,18.0,1048.0,40.31791217887558,29.079213315199816,38.89635448582862,5.573104530069267,27.99858055817633,35.98122017895694,0.0,0.0,25.539140180952323,10.571256060898818,17.03333333333333,43.0,18.0,2.0,25.0,0.0,0.026851851851851904,-7.0,0.29894698620188837,0.03035334184759486,-0.2685936443542935,0.08051038843721803,0.22123240115718418,0.0,0.7401234567901225,0.960185185185185,0.4411764705882341,0.7097701149425276,0.879674796747967,36.94000061848842,0.7979136040449291,1.141913604044929,38.38107215288195,8.073501209291512,9.042798749036654,75.32107277137037,17.116299958328167,0.4927675988428158,0.1996086105675147,0.0,0.42857142857142866,0.3333333333333333,0.44683423130962496,-2.0174535407514522,-0.1022983953961889,-0.03736025075465652,-0.106181765302708,0.5531657686903751,2.4975397148872314,0.0632512104449778,0.04625073546087466,0.07135827756820662,-1.9332963842854967,0.7109075738125801,0.7761625780338918,1.5818945070947616,0.744647636039251,0.43030342605894384,1.2426602349112332,0.6988167744179119,0.8057156794136772,0.7441983881043369,0.6447899715240024,0.8154697594767691,0.7915213420804708,1.094360346184107,0.705206028817496,0.968281137193848,1.0721705850191365,0.7286280316977507,1.2696661483586056,1.0668158192051997,1.176975872906029,0.6835660905857627,0.5342360578486999,0.7103251555641307,0.8573157456019084,0.9730278094369728,0.7609468601616821,0.7942319810078488,1.1711547600190089,0.89212139483469,1.0063522249618198,0.9659328238437436,0.9780895660162429,0.7677530414843582,0.7978847552963146,0.7687390695517349,0.9970656341767791,1.218770653029111,0.9392125598337038,0.9951119572274572,1.2224917987971573,1.0197610661970702,1.084392178619633,1.2055537947135795,1.2695060774905216,0.9317636048186545,0.97193882937131,0.9614854544380799,1.0785860537084462,0.8836276026174894,1.290951601252733,1.0627660381681139,1.0461967755270776,1.309612190414708,1.1943584317507057,0.8942283581851008,1.125036633251248,1.2556854531241224,1.3699693998123974,1.2416092788289377,1.127397437226979,0.9808409832917226,1.085374919343922,0.8336216234618158,0.8487922060589886,1.1150182684980754,0.8223541974128659,0.9850373429999045,0.8591634563653242,1.0970895561014322,1.0991179236363091,1.0772943767059364,0.9286389238642333,1.0678341042893187,0.9630704871442052,1.001303367917338,1.0164012273524259,0.9182335786201192,1.0523570841900878,1.0635607757798815,1.059718937342436,0.9678788578901515,0.9483905771419325,0.9718827308762475,1.038202543561888,1.0400340233654437,0.8664643437143955,1.0723535327385518,1.1379789203817123,0.8655218911385893,1.087080183469722,1.033299015017158,1.1230815938398766,0.8563506256565493,0.8963740141260986,0.880818321842505,1.0018691126767507,8.0,0.2606856443220079,5.1111111111111125,3.9722222222222223,2.733888888888889,1.7608333333333335,0.9894331065759638,0.8871527777777778,0.7286548878810784,0.4965663580246914,9443.839975360232,10030.636665322036,3879.9037702728406,3688.905882349497,17.386280972931893,0.449628044014134,9.568921466392371,0.816953042617747,0.0,0.3333333333333333,2.078523205709951,4.446939530254381,5.356558335416672,5.467669446527782,5.467669446527782,5.467669446527782,0.20512820512820518,0.007667224833000234,0.09292929292929296,0.06732580037664784,0.046337099811676094,0.031443452380952384,0.01978866213151928,0.016738731656184485,0.013748205431718454,0.011548054837783523,0.5126547295169803,28.994082840236686,12.453062480763311,6.270216962524655,213.32447467708963,0.0,4.516671820437175,252.8512971048609,,177.71727026642145,199.57420919528795,198.98476538767363,177.73706189622817,261.03937480711335,201.2159840144337,201.49657157471236,250.51596020140772,0.00943260590500636,-0.096320855817779,-0.5373548572023743,0.3675289919714542,0.2873187932610683,-0.058817965013090535,0.014952728004456411,0.10471801407961374,-0.09150397058915723,-0.06175681369370664,-0.13087784626939344,0.0596853076126936,-0.02876475216365068,0.08633427681049746,-0.029778821900569328,0.026790595954073335,0.14079884735451853,-0.12093010714220576,-0.017900907207014146,-0.04424940078005549,0.0951723050404485,0.1280956566247944,0.05763573659791817,0.10057037967513095,-0.08378481878276729,0.07334447536142873,0.11977889691115899,-0.13749405987644542,-0.030704297210175983,0.1093604479522204,-0.08408366620847231,0.00484242152484917,0.04896770289131575,0.04827364806573544,0.06186381533609086,-0.09550857572232288,-0.08505900865460268,-0.03710546023719614,-0.057051491153483166,-0.22498633132859494,-0.07460177699511726,-0.021873964872588983,-0.08668301455570858,-0.10479080366213714,-0.035892195838806956,-0.06020478340267123,-0.060162621471553386,-0.0714454987286275,0.0359048185603807,-0.21058026322607662,-0.023310273604125815,-0.06490285241835468,-0.34400532590933847,-0.23741124200974784,0.023851328945366353,-0.16088768131935352,-0.18912916889132136,-0.15834911668608492,-0.1092470621214821,-0.1965018644668069,-0.018230843095832495,-0.10273253457335038,0.060944454529367795,0.11464033097557726,-0.10343682225825991,0.11766920108155313,-0.01589546143323098,0.07103331607357877,-0.1044707471409511,-0.13247114752463435,-0.10750553300071693,0.08085825482578678,-0.0755054667788057,-0.01579767790066818,-0.012998342858743385,-0.022939801285797774,0.03322067254214083,-0.043334948665487184,-0.0746644996053853,-0.04605186639027643,-0.024077103904717394,-0.054484991332801144,-0.02248331342401034,-0.060852404000833624,0.04872227915556464,0.08173633376081231,-0.06037415128592246,-0.0911551061102407,0.11770961486331508,-0.08906263510461739,0.050119156284176,-0.05032257678646499,0.09593256507336957,0.07893070401665171,0.05535030849573389,0.019968997700396902,0.552604724796058,8.790657151308654,16.43768028937459,26.13664680729583,52.8585967637149,58.1472354888052,58.81445771102742,58.81445771102742,58.81445771102742,72.61556371199308,37.92528338227315,16.16216169880412,12.413923496065784,0.0,34.69028032971995,14211.765936638743,12927.137742545227,3143.178537468497,224.0,57.0,78.0,102.0,125.0,137.0,156.0,171.0,196.0,554.0460579160004,39.0,5.262690188904886,6.137727054086234,7.046647277848756,7.945555428253489,8.85922139360813,9.768526567102011,10.686224034381675,11.602135257007024,12.523729695746374,0.8827160493827159,1.0442962962962965,1.134988104717952,0.8550356617545032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7227353515191839,1.0286129266521422,1.052608507998166,0.6945354953976981,1.0,2.0,1.0,0.0,1.0,0.0,3.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,0.0,0.0,1.0,1.0,2.0,1.0,1.0,2.0,2.0,1.0,0.0,0.0,0.0,20.994572059745856,29.91647849129853,15.999679964430742,0.0,11.814359458703011,33.85854321058399,9.77851570501903,4.9839785209472085,23.098670827325854,16.917597676141654,5.573104530069267,23.933441966636682,0.0,349.10893962824537,-1576.2245079047,-79.92513070845655,-29.18934273897593,-82.95918462656316,432.1851402927203,1951.3129936088903,49.4177962684963,36.13542580757204,55.751799817396865,0.5,0.6333216876800235,0.10555069549296839,166.80263560543384,0.07799756992844055,72.99252326869498,0.36667831231997655,9.0,0.20512820512820512,0.36117529750643423,0.7727239722032129,0.930784195764548,0.9500914560835966,0.9500914560835966,0.9500914560835966,-1.6112999999999973,,4.767857142857144,3.411571527740696,2.7532344989999142,4.760936588847171,-10.449100602725158,3.1354039167686665,3.075635858908111,-4.874821746839206,130.57960000000003,24.327727530792806,0.0,29.965140120197447,12.20338470942773,16.572150123937405,24.3491722319333,43.05174276668713,0.0,0.0,4.3694478524670215,0.0,5.752572638825633,2.3978952727983707,7.333676395657684,4.59511985013459,9.0142038261485,6.555356891810665,10.752548144113725,47.66666666666666,1.5131657510819392,7.680411360647654,2.311615656448409,0.0,1.0992681095309438,0.0,0.5678240975952646,1.2536059923735094,56.39200000000001,0.0,60.7343304920408,0.0,0.0,0.0,0.0,3.678287863771373,-2.598822485985635,61.289357654769404,22.16898987127253,5.131558479839333,0.0,83.28144705734519,26.26887211862929,0.0,5.693927994848461,36.5514301903059,0.0,0.0,0.0,46.17192573474317,39.02770898203593,45.45644501572977,505.7025942097218,,355.73197233356274,398.96417967959064,397.9087620770341,355.77544530826265,524.6772254460873,402.2577789223802,402.82227449059656,501.31310724166053,45.45644501572977,505.7025942097216,,352.16587842117565,395.93167165493236,395.4749246696382,352.21431247408253,532.5843114102804,399.4606203812053,400.05675424236927,505.90674214965475,5.149586922509502,379.8882555961255,,271.5977871699837,306.06212661088153,304.26731194267825,271.61934315096306,387.6991308876734,308.574900006818,309.1291808133518,379.83367162663393,1.2626790282147158,14.047294283603383,,9.881443675932298,11.082338324433074,11.053021168806502,9.882651258562852,14.574367373502424,11.17382719228834,11.189507624738793,13.925364090046125,2.575097226279381,252.8512971048609,,177.71727026642145,199.57420919528795,198.98476538767363,177.73706189622817,261.03937480711335,201.2159840144337,201.49657157471236,250.51596020140772,55.545098039215674,0.0,2.7379190576183317,0.0,0.0,5.618367645223463,9.827614923268992,56.84085943190097,0.3459948688032748,2.568664446603868,4.720696332069134,2.310676338819376,-1.6463541961652532,1.1157034727471236,0.0,0.0,0.0,37.5049167514757,494.8104852699571,112.24025310833736,240.1347346337366,289.25415011250027,295.2541501125002,295.2541501125002,295.2541501125002,1321.0,154.8324568969386,286.48359465100856,86.77082087195618,293.8,214.95999999999998,1.0,8.371256600071716,6.285402218862249,4.057440121669077,5.903249078950796,,5.917719802303138,5.92149877454941,5.921143463214703,5.917702696432924,5.885350236890374,5.92101032844378,5.920561865374252,5.906369153194357,0.11270667004636326,0.16397914108196654,,0.1643811056195316,0.16448607707081694,0.16447620731151952,0.1643806304564701,0.16348195102473262,0.16447250912343833,0.16446005181595147,0.16406580981095437,2.681486108315315,3.056436736146495,,3.0588850516316524,3.059523433692103,3.059463428276474,3.0588821610089956,3.0534000978937397,3.0594409433850815,3.0593651995459354,3.0569651316043034,348.0200000000009,970.5010201223611,253.36864528103382,,250.4852035667507,249.68030264098218,250.05164543094645,250.48940588155745,255.98886993397375,249.790812897757,249.86022222396173,252.5326113425429,26.958361670065585,7.038017924473162,,6.95792232129863,6.935563962249505,6.945879039748513,6.958039052265485,7.110801942610382,6.938633691604362,6.940561728443381,7.01479475951508,8.158746299201294,6.815779369627789,,6.804333696644623,6.80111515553929,6.802601323713031,6.804350473202667,6.826067812176068,6.801557664645983,6.801835495859259,6.812474239669694,1.2536059923735094,74.2511416575047,19.641880999689953,3.998125971650352,-2.2979686246200988,-0.9946495025670707,0.0,0.0,2.7379190576183317,427.32651457392313,272.7567477790339,-1231.4948766522793,-62.445031459426474,-22.80546067874592,-64.81551982380418,337.6636915405144,1524.549289979483,38.60983166731655,28.232394258879314,43.558551142270936,4386.0,59.0,2.8877381119261702,1.2702559251424925,0.0,0.0,0.896121853937047,0.2724094482998386,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.4502471114825046,0.27530866464423936,0.8395564418996214,0.45164296185018005,1.3360799233563985,0.6046299608876095,26.145535412082953,21.030620569089294,17.116299958328167,12.869073559438181,16.007479264391492,10.237026524280191,13.396396291742487,8.151410998885245,11.110951827582921,6.314817030694481,8.863333302280136,4.570351147125327,5.877453821229216,3.100896074317517,4.256730261708258,2.2231070300514264,6.936238566931783,3.01614236598207,10.538634968492165,4.358082950159298,16.580843543741878,5.953298368687899,121.9404911891483,47.60199596857965,33.16803288327105,31.647342141568775,31.647342141568775,31.647342141568775,192.0,231.0,65.17627399999999,36.64372600000002,0.4444444444444444,261.18,13.666666666666668,7.888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,11.0,11.0,54.0,0.0,0.0,57.0,11.0,7.0,10.0,47.0,18.0,39.0,39.0,0.0,0.0,0.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,14.0,4.0,4.0,36.0,18.0,0.0,8.0,7.0,0.0,4.0,8.0,3.0,0.0,0.0,2.0,2.0,3.960813169597578,6.976085430918991,4.572130331909891,5.115745778498873,5.566195249202417,5.936711326705208,6.080505113898711,6.198796247374854,6.333335132815973,6.652742054294224 +3331,NC(=O)OCC(COC(N)=O)c1ccccc1,0,24.64516129032258,6.592251612903227,2.903225806451613,8.774193548387096,166.06033271482212,97.33530093548384,1.3514611828350327,6.616293548387097,6.551971326164874,8.09078412903226,207.93709017988527,25.29032258064516,6.648903225806453,3.4193548387096775,7.354838709677419,151.94567182303868,95.65755745161285,1.6412732999999993,6.758403225806453,3.905017921146954,8.06132606451613,250.49292754099002,21.56,6.6377999999999995,3.1,5.88,156.2720295295499,79.81821194000001,1.4210308414679194,6.700322000000003,4.731666666666667,8.114204240000003,206.47300913189898,16.063492063492063,6.274920634920635,2.7936507936507935,3.238095238095238,158.0076946608078,56.516637126984115,1.2737250025205085,6.34799206349206,3.0255731922398583,7.844575428571428,177.286380655512,15.283582089552239,6.296507462686567,2.5223880597014925,3.626865671641791,161.6343456305626,53.229094835820874,1.181749291141642,6.3531059701492545,3.141376451077943,7.868754507462684,162.673738781297,15.4,6.188685714285713,2.357142857142857,4.114285714285714,164.603853382404,55.312202914285706,1.079151220471143,6.239242857142857,3.1714285714285713,7.785810285714288,152.34760768723532,17.56451612903226,6.628645161290325,2.225806451612903,5.096774193548387,167.8644177228522,63.29060340322579,1.0550830069522097,6.6440467741935505,4.781362007168459,8.183485612903224,154.5648706841868,15.461538461538462,6.522038461538461,1.9230769230769231,3.923076923076923,170.27862164389398,54.34931934615385,0.9926018391959233,6.538096153846154,4.4423076923076925,8.110940461538464,144.37150842731666,14.657894736842104,6.567128947368422,1.631578947368421,3.5526315789473686,173.18172030254982,50.52042378947368,0.8997307558629475,6.561115789473685,6.394736842105264,8.12891957894737,123.60532603221765,8.124869927159212,0.1897192507804369,0.040213586019530685,0.505723204994797,4.5119667013527565,1.4084684497465774,38.272109417273676,0.21048561149017886,0.17288449531737768,2.5088449531737784,0.12418683038501553,46.01829903461519,-0.14568158168574405,-0.026250988553590027,-0.034989281969985846,0.07284079084287201,0.7617065556711756,0.08487660372548944,-0.6067455067637965,-0.004182551100936376,-0.02072799167533833,-0.37593941496126726,-0.01780768366285117,1.620685602716241,0.11771071800208174,0.06585029760665967,0.01780003275499226,-0.07669094693028093,-0.09777315296566073,0.3136263210764748,0.2674760188553564,0.009901259755845606,0.05225344016649316,0.8792374841022084,0.047668018647242495,-3.3531677990783955,-1.6097649604413393,-0.03601223593148671,-0.00794694520439043,-0.04386964636704489,-1.3803742794377554,-0.09836176729333049,-7.509948257007415,-0.013682349146452362,-0.03430333812331727,-0.3678937100719965,-0.022336323472573222,-5.964018356467829,-1.3795641977417805,-0.017530613322565093,0.0015205965643682537,-0.0025936912730830687,-0.368971997452902,-0.0974674627563157,-6.551741418236599,-0.02536851679866332,-0.017793450541258277,-0.3583206927554388,-0.008400149595415234,-7.506099740301655,1.2622268470343396,-0.003281831425598313,-0.004411476341509508,-0.04535454140032704,0.6493236212278874,-0.2394620052838686,6.000739731113427,-0.011841400772031524,0.0023204816411476746,-0.08160480980460155,-0.008361193518656197,3.9571591819846104,0.38865764828303845,0.016340894901144612,0.011047873224437142,-0.0218522372528616,0.30176899063475526,-0.09441735351220526,1.7552379037460972,-0.006434902361426138,0.014762278876170574,0.08960573476702507,0.010753587929240417,-0.4909417024387302,-0.5342992075562317,-0.05306441207075965,-0.013781511226710029,-0.08636836628511964,-0.549187545025214,-0.2822846720141323,-2.2745655413431525,-0.0013477305747943975,-0.044325810453854225,-0.5500635911666089,-0.03750952021131829,1.3030383749851315,-0.48225532614053357,0.031722430034503514,0.014675906158225461,-0.04562133742264092,-0.33454734651404794,-0.1620804859485682,-2.5730184495317365,-0.05115722270023676,0.02535081877430305,0.8074161296407855,0.021733183197327366,-10.955323413030486,,,0.4490196078431372,1.1470588235294117,0.5294117647058824,0.0,0.6176470588235294,-0.08823529411764706,0.650811258615802,0.01894055349988707,0.023999377029298833,0.836598027899124,0.2596153818514473,0.21639780361178892,1.487409286514926,0.47601318546323623,1.9550577626306964,1.3253619678911046,0.19952114949954153,0.43017464524005017,0.0,0.6296957947395916,7.6804953847741935,764.0,204.35980000000004,90.0,272.0,5147.870314159486,3017.3943289999993,41.895296667886015,205.10510000000002,203.1111111111111,250.81430800000007,6446.049795576443,784.0,206.11600000000004,106.0,228.0,4710.315826514199,2965.3842809999983,50.879472299999975,209.51050000000004,121.05555555555557,249.90110800000002,7765.28075377069,1078.0,331.89,155.0,294.0,7813.601476477495,3990.9105970000005,71.05154207339596,335.01610000000016,236.58333333333337,405.7102120000001,10323.650456594949,1012.0,395.32,176.0,204.0,9954.484763630891,3560.548138999999,80.24467515879203,399.92349999999976,190.6111111111111,494.20825199999996,11169.041981297256,1024.0,421.86600000000004,169.0,243.0,10829.501157247694,3566.3493539999986,79.17720250649002,425.65810000000005,210.4722222222222,527.2065519999999,10899.1404983469,1078.0,433.2079999999999,165.0,288.0,11522.26973676828,3871.8542039999993,75.54058543298001,436.747,222.0,545.0067200000002,10664.332538106473,1089.0,410.9760000000001,138.0,316.0,10407.593898816836,3924.017410999999,65.415146431037,411.9309000000001,296.44444444444446,507.37610799999993,9583.021982419581,804.0,339.14599999999996,100.0,204.0,8854.488325482487,2826.1646060000003,51.61529563818801,339.981,231.0,421.76890400000013,7507.318438220466,557.0,249.55090000000004,62.0,135.0,6580.905371496893,1919.776104,34.189768722792,249.32240000000002,243.00000000000003,308.8989440000001,4697.002389224271,251.87096774193557,5.881296774193544,1.2466211666054512,15.677419354838706,139.87096774193546,43.6625219421439,1186.435391935484,6.525053956195545,5.359419354838708,77.77419354838713,3.8497917419354817,1426.5672700730709,-4.516129032258066,-0.8137806451612909,-1.0846677410695613,2.2580645161290325,23.612903225806445,2.6311747154901726,-18.80911070967769,-0.12965908412902766,-0.6425677419354883,-11.654121863799284,-0.5520381935483863,50.24125368420347,5.885535900104087,3.2925148803329836,0.890001637749613,-3.8345473465140465,-4.888657648283036,15.68131605382374,13.373800942767819,0.4950629877922803,2.6126720083246577,43.96187420511042,2.383400932362125,-167.65838995391977,-101.41519250780438,-2.2687708636836628,-0.5006575478765971,-2.7637877211238284,-86.96357960457858,-6.19679133947982,-473.12674019146715,-0.8619879962264988,-2.161110301768988,-23.17730373453578,-1.407188378772113,-375.7331564574732,-92.4308012486993,-1.1745510926118612,0.101879969812673,-0.1737773152965656,-24.72112382934443,-6.530320004673151,-438.96667502185215,-1.6996906255104425,-1.1921611862643045,-24.0074864146144,-0.5628100228928207,-502.9086826002109,88.35587929240377,-0.22972819979188192,-0.30880334390566555,-3.174817898022893,45.45265348595212,-16.762340369870802,420.05178117793986,-0.8288980540422066,0.16243371488033723,-5.712336686322109,-0.5852835463059338,277.00114273892274,24.096774193548384,1.0131354838709659,0.6849681399151029,-1.3548387096774193,18.709677419354826,-5.853875917756726,108.82475003225802,-0.3989639464084206,0.9152612903225755,5.5555555555555545,0.6667224516129059,-30.43838555120127,-27.78355879292405,-2.759349427679502,-0.7166385837889215,-4.491155046826221,-28.557752341311133,-14.67880294473488,-118.27740814984392,-0.07008198988930867,-2.3049421436004196,-28.603306740663662,-1.950495050988551,67.75799549922684,-18.325702393340276,1.2054523413111335,0.5576844340125675,-1.733610822060355,-12.712799167533822,-6.159058466045591,-97.774701082206,-1.9439744626089968,0.9633311134235159,30.681812926349846,0.8258609614984399,-416.3022896951585,0.7454918886727903,0.5391769928085621,0.4760131854632361,0.29335602572661623,0.33812209477881394,0.1603660325222609,0.20664145801988673,0.0965695637634615,0.1326452967140285,0.05324871792308424,0.09136142209741617,0.028915691859764395,0.0632400981643068,0.014879684958080867,0.04361526525045472,0.008331484334232593,8.031200585471474,5.693223782266897,3.5585372440202074,2.193197606808777,0.5029470989969385,-0.4778431364771456,3.130671985222326,0.9714655262696984,6.030316646536793,1.9787953408788288,14.538991927192592,10.953528222770508,16.016128889378965,11.704238902329612,1.9824471434994806,0.7391239153214139,3.5048831307004575,2.2431918421334003,7.009362543803626,1.2315970442499018,3.717559304500962,2.439192855881784,20.891716000805246,14.699752148874614,0.32585091718343745,0.6286430758453008,0.6939363013431484,0.766375365996691,0.7960437785498583,0.7960437785498583,2.38177485194943,362.31763766703165,0.0,0.0,2.0,0.0,5.0,0.0,1.0,1.0,0.0,3.2695715068973135,1.704158755590659,1.3665976766645254,0.9920931452310797,0.838709677419355,0.838709677419355,59.61391480030338,1079.5037299407886,74.27962416440039,34.8227009658319,71.22880565444899,,8.0,213.0,12.18648014187683,9.589074368143644,19.13166997518723,0.0,5.563451491696996,0.0,0.0,30.33183534230805,0.0,20.94106086192447,7.633333333333333,19.5,9.0,0.0,10.5,0.0,0.05098039215686277,-1.5,0.2107526881720428,0.05579773321708803,-0.15495495495495476,0.11951447245564872,0.22985623678646921,0.0,0.6440860215053765,0.9274509803921566,0.43333333333333374,0.5882882882882885,0.8079365079365078,11.063791396468634,0.3219894094980802,0.40798940949808016,14.222166474285107,4.413461491474604,3.6787626614004116,25.28595787075374,8.092224152875016,0.48414376321353075,0.19213973799126638,0.0,0.26200873362445415,0.2727272727272727,0.4348721730421117,-1.025733894795839,-0.09351001356640375,-0.03308819015470449,-0.08547782456631992,0.5651278269578885,1.3329681753329632,0.06879003082026143,0.04299897339783754,0.07015621975436648,-1.1662278298898423,0.8068647540983604,0.8702327004906757,1.953408694633508,1.0802469135802473,0.5569649446494466,1.2518345017300023,0.8115726739891004,1.18540065884211,0.8378555693322582,0.7776856076316877,0.8842080305575646,0.9868430117411131,0.8730660860655736,0.5809739129290119,0.5714240421647769,1.377777777777778,0.952306273062731,0.8882762079217426,0.8822192293104801,1.0606853767693332,0.6127772026338912,0.34973040232268754,0.584816569549837,1.0795533831796276,1.102227263856362,1.0481086624103146,0.9863751481786499,1.1694101508916328,1.2341306448778777,1.0738915574416037,1.1034273191006703,1.1501523113163046,1.0570530315146367,0.8789520693295055,1.066430475543381,1.1589756101812068,1.099532435160264,0.9755463518038557,0.7838886630690826,0.928229224249125,0.9827821225973455,1.0557620516867972,1.1031247303998506,1.1405196604193812,0.9885023277157087,0.896683112847211,0.9572658926494131,1.1619888007835453,0.8167447306791566,0.9084512538145217,1.0318349036768397,1.0798059964726634,0.8181009488666318,1.0820961075350546,0.8172303753789321,1.0331670386396414,0.8881505837519369,0.7846279947067998,0.949647658719245,0.916006944473596,0.9759221311475407,1.062841637953447,0.8818286653354532,0.9567901234567904,1.0170664206642068,0.9963475389377766,0.9731417446798887,0.9273304782057192,1.0545737983171022,1.1198672749896303,1.0728726138717655,0.9207607008063372,1.104045160781841,1.4202617364732706,1.5339521018119806,1.0303893637226973,1.1961573942662507,1.101779633328605,1.0929599040365596,0.8612005694122634,1.3919561857650964,1.5254137021557175,1.4359160346498387,0.8681580726231132,1.1001873921484033,0.9441526789854222,0.6767900460920349,0.9064327485380118,1.0837055738978445,1.0330905924316096,1.1037439470110062,1.0434271212122364,0.9628055962274502,1.3534458294221652,0.8988748702785211,1.108899847062651,3.5,0.0,1.5555555555555562,0.5625,0.43111111111111117,0.5694444444444444,0.36571428571428577,0.2569444444444444,0.08163265306122448,0.0,2966.2330856775307,3349.8048982620076,1595.4710114613665,1442.3825386144013,10.47566233334104,0.4908633472517006,5.333543655718697,0.9641092319754231,1.0,0.2727272727272727,1.6846248034895615,3.250037554796216,3.5875986337223496,3.962103165155795,4.11548663296752,4.11548663296752,0.20588235294117646,0.0,0.0740740740740741,0.029605263157894735,0.02395061728395062,0.028472222222222218,0.01924812030075189,0.018353174603174604,0.01020408163265306,0.0,0.4097899062158977,15.058823529411764,8.16326530612245,6.479338842975206,98.48602974460675,1.0,3.704630146201943,68.97184050477975,,54.78953901314177,53.69613631894698,56.379732528152985,54.809739357597955,92.34959453927995,54.487509043081275,54.839179921725275,73.56565834518746,-0.017930327868852458,-0.1383675533484498,-0.8700860936150403,0.14403292181069963,0.1688191881918819,0.06026162938954089,-0.015853463945469094,-0.019870959688527364,-0.11989502955303381,-0.14984561500529972,-0.1433943004072343,0.03521828569754726,0.014487704918032853,0.347093388445164,0.44263729045072603,-0.1516460905349794,-0.02166974169741697,0.22267188244997957,0.0069887974017610365,0.04704007882414135,0.3022448026387063,0.35045509009631765,0.3838411730089067,-0.0728659657010818,-0.19812809003382767,-0.1898185649761176,-0.19761841683382347,-0.0867463583512966,-0.30593627364845094,-0.06983597489246458,-0.19622509371322727,-0.06500372661858063,-0.19841766643297845,-0.14663867912865552,-0.17986064547524144,-0.12960101702111296,-0.16979523489111817,-0.09240292300570681,0.03781300587392877,-0.005128677599656028,-0.08177631216610674,-0.06920102667109994,-0.171188406335386,-0.1205237575103655,-0.10292103122719849,-0.1428229721020226,-0.06764122708802785,-0.163111194845675,0.15535348360655737,-0.017298357505092583,-0.10970114277714427,-0.0896825396825397,0.14391143911439114,-0.1700158816670366,0.15679145525240012,-0.05625753080316388,0.01342215007128189,-0.03252684455504855,-0.06732753781326127,0.08599099195317966,0.047835553278688506,0.08613198098729588,0.2747298691310812,-0.04320987654320988,0.06688191881918816,-0.06703547639224262,0.04586206327456544,-0.030571697114443318,0.08538810174429058,0.03571593160975158,0.08659201540051506,-0.010668401760557066,-0.06576095523329131,-0.2796996712377458,-0.3427078405794676,-0.1707818930041152,-0.12171799602611412,-0.20041959197944634,-0.05943141300480693,-0.006402958212928877,-0.2563897379720596,-0.2192497350108299,-0.3020410465024978,0.02831565708252232,-0.05935545189818809,0.16720722806994454,0.3649489540947121,-0.09021009313406983,-0.0741466789667897,-0.11507569514796799,-0.06722959587825683,-0.24304379923196662,0.14663442622639214,0.3218278310181645,0.17500392859651975,-0.23806450135824964,8.569953437778901,9.421963798902576,1.9441612972396658,16.56463335578855,28.04310208517984,30.816358715767176,32.8815375797845,33.03614811533872,33.03614811533872,33.23598196472184,22.53115345414878,3.391859541492206,7.312968969080853,0.0,10.704828510573057,2110.442594622313,1520.0707967309052,980.7713604919336,8.0,21.0,22.0,25.0,30.0,27.0,24.0,20.0,12.0,238.095356928,17.0,4.343805421853684,5.093750200806762,5.8998973535824915,6.683360945766275,7.497207223203318,8.295798110636145,9.11305824916963,9.919114808421828,10.737938963793802,0.6774193548387099,1.0121290322580643,1.139549946099528,0.639851641371753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6396195093683603,0.9954459203036055,1.027864577214952,0.6183199411699045,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,20.94106086192447,13.213763929025836,0.0,0.0,0.0,0.0,9.589074368143644,0.0,0.0,30.33183534230805,5.563451491696996,0.0,5.917906046161393,199.02731200841336,-469.4461328464154,-42.79659127370601,-15.14342364020695,-39.12051107053462,258.64122680871674,610.0575970943733,31.48303289069439,19.67927732562495,32.10829458391438,0.5,0.6715101180587384,0.19032610427829874,82.37358385118556,0.17128480159905113,36.13473456736882,0.3284898819412617,4.0,0.29411764705882354,0.34003997781791745,0.6560171117931375,0.7241535072400457,0.7997469048307441,0.8307072177053356,0.8307072177053356,0.9607999999999993,,1.2857142857142858,1.514192647743136,1.1430359144285005,1.28206267335915,-5.365540693720245,1.3572521419828643,1.2745051870999227,-2.2346271687189603,60.25380000000002,19.06280027574374,0.0,0.0,11.46733495432437,5.917906046161393,13.213763929025836,35.89528683400505,0.0,0.0,3.5553480614894135,0.0,4.77912349311153,0.0,6.171700597410915,0.0,7.643482907077201,0.0,9.16272451803452,21.000000000000007,9.177505353993448,0.0,0.0,0.0,0.0,0.0,0.8703703703703707,0.0,31.375999999999994,0.0,21.08151423532376,0.0,0.0,0.0,0.0,0.0,-1.7407294028722582,35.32604832908537,11.46733495432437,9.589074368143644,0.0,25.400244070902666,9.473725907600098,0.0,11.48135753785839,30.33183534230805,0.0,0.0,0.0,19.835400882524343,19.82820479041917,20.503327297350946,137.94368100955953,,109.42781752208185,107.21413232639475,112.62499024284378,109.46864781244776,186.59290932340235,108.81534136357634,109.5284180567329,147.9200086322757,20.503327297350946,137.9436810095595,,108.29336374056928,105.87807999015081,111.61642914187745,108.33741604183669,190.0647297722802,107.6177659441797,108.40385465635063,149.36594385909387,4.532451524316552,91.83996947761571,,73.88496701442673,72.56611761368508,76.40333757250517,73.91501431651616,129.89938663231132,73.52050903251192,73.95644866125602,101.68363525419169,1.2060780763147616,8.114334177032914,,6.436930442475403,6.306713666258514,6.624999426049634,6.439332224261633,10.976053489611903,6.40090243315155,6.442848120984288,8.70117697836916,2.266225762158276,68.97184050477975,,54.78953901314177,53.69613631894698,56.379732528152985,54.809739357597955,92.34959453927995,54.487509043081275,54.839179921725275,73.56565834518746,30.85882352941177,0.0,0.0,0.0,0.0,9.762361740992693,0.0,31.86380189366351,0.06870370370370349,0.0,9.394903628117914,0.0,-0.28129629629629704,0.0,0.0,0.0,0.0,19.16791817626704,307.3290545328613,52.223368908176404,100.75116419868269,111.21555764539283,122.82519811982965,127.58008562199312,127.58008562199312,223.0,101.58393127723392,150.3394842842688,48.31237957712358,104.64000000000001,104.64000000000001,1.0,6.606650186198215,5.087462841250339,3.55470283821163,4.051847451984743,,4.063847179686235,4.0654951099245995,4.0637282203064,4.063824020567047,4.027684133973601,4.064410659072135,4.063761535401341,4.041883854948782,0.2091001669536253,0.23834396776380842,,0.23904983409919028,0.23914677117203526,0.23904283648861177,0.2390484717980616,0.23692259611609418,0.23908297994541972,0.2390447962000789,0.2377578738205166,1.798899721009664,1.9298011891547129,,1.932758357207662,1.9331637849045726,1.9327290841775175,1.9327526583749663,1.9238198052601516,1.9328970042333793,1.9327372823041085,1.9273391350807256,176.9299999999997,98.86926627409458,76.98269854166067,,75.96477492447045,75.85198831613623,75.97024821568957,75.96635254559811,78.07920684928028,75.92665575154702,75.9705520135645,77.3076439475342,5.815839192593799,4.528394031862392,,4.468516172027673,4.461881665655072,4.468838130334681,4.468608973270477,4.592894520545899,4.46627386773806,4.468856000797912,4.547508467502012,5.124426685825991,4.874208953404169,,4.860897996068899,4.859412170305308,4.860970043857597,4.860918763651606,4.888352034935089,4.860396069481546,4.860974042755515,4.87842108853933,9.394903628117914,21.08151423532376,0.0,10.632732111363064,-0.28129629629629704,9.177505353993448,-1.7407294028722582,0.06870370370370349,0.0,219.52797172512308,91.08853907159157,-214.85072567317127,-19.586653394590964,-6.9306685701022985,-17.90422713943094,118.3719523514153,279.2041690564712,14.408793660615746,9.006586098595848,14.694956266130063,564.0,19.0,1.1498299142610593,0.33678765702728175,0.0,0.0,0.08333333333333333,0.048112522432468816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.032075014954979206,0.05892556509887896,0.018518518518518517,12.673362107437434,9.166008877745556,8.092224152875014,4.987052437352476,7.100563990355092,3.3676866829674785,4.546112076437508,2.124530402796153,3.3161324178507128,1.331217948077106,2.740842662922485,0.8674707557929319,1.7074826504362837,0.40175149386818343,1.0467663660109132,0.19995562402158223,1.520159310771689,0.5997530532074672,1.8027494301546207,0.6634887854180952,2.617282749131904,0.7564188921955834,58.026925894938174,38.282536233706374,32.894258201795196,29.07689366583688,28.578167364035888,28.578167364035888,76.0,81.0,33.113101999999984,18.112897999999998,0.1935483870967742,17.06,6.694444444444445,3.9444444444444446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,31.0,0.0,0.0,31.0,6.0,2.0,5.0,26.0,8.0,17.0,23.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,4.0,2.0,0.0,17.0,6.0,0.0,2.0,4.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,1.0,3.1354942159291497,4.523146350509501,3.5409593240373143,3.7784916128036232,4.160834303490933,4.597011998286628,4.430072474283456,4.586242176102573,4.616357375378656,4.523146350509501 +9869676,O=c1ccc2c(-c3ccc(F)cc3F)nc(NC(CO)CO)nc2n1-c1c(F)cc(F)cc1F,0,32.6530612244898,7.522440816326532,4.020408163265306,14.16326530612245,173.10866371818847,133.60074370916024,1.5580785831170405,7.496412244897958,11.262471655328797,8.725102122448979,250.8423889212194,30.903846153846153,6.917865384615384,4.769230769230769,11.5,151.06253987823848,121.31777461876922,1.8489521152307693,7.038903846153845,4.455128205128205,8.219254923076923,293.5497484011456,29.070588235294117,6.991218823529412,4.447058823529412,10.68235294117647,156.99180143810585,113.50324221590589,1.6630853352199761,7.080535294117647,4.852614379084967,8.29850748235294,263.5775072276656,26.114035087719298,7.093394736842105,3.8333333333333335,9.81578947368421,167.41799086540956,100.88587261764208,1.4195116785819208,7.137290350877192,4.97076023391813,8.431316596491227,227.3205921561284,27.81896551724138,7.354368965517241,3.706896551724138,11.025862068965518,170.52941668895122,109.01894215021275,1.3904417876050685,7.367053448275861,7.130268199233718,8.64329675862069,225.74634605528706,28.0,7.20538053097345,3.893805309734513,10.513274336283185,166.2041232451234,108.80553410105486,1.50097663830923,7.245959292035398,6.155850540806293,8.507220283185841,239.9386856185756,26.666666666666668,7.078820512820512,3.8119658119658117,9.504273504273504,163.38840553438288,102.67559066767862,1.4997911028606665,7.137042735042734,5.19610636277303,8.39385770940171,236.04732849895942,24.846774193548388,7.011725806451612,3.4919354838709675,8.620967741935484,165.18872421070802,95.2460558384129,1.4147712485801855,7.058652419354838,5.348566308243728,8.352661258064517,219.5263287021197,23.589147286821706,6.957713178294573,3.0232558139534884,7.550387596899225,164.09940840040656,89.93153418205269,1.3221582140359767,7.007293023255813,5.47071490094746,8.336385860465118,206.6293647986234,7.856726364014994,0.34441566014160757,0.02670306728550321,0.721366097459392,5.285297792586422,3.679766024410031,38.28775622514179,0.23638134901415658,0.29649954185755933,4.9784117728724135,0.2046602648896293,41.22368701650729,-0.22446576746868316,-0.03165106045557946,-0.014990915869727577,0.17423829814500366,0.7241213596898726,-0.2854808925937853,-0.955843447071151,0.008514711103266877,-0.026350640758658263,-0.3887662992983693,-0.019961351231858455,2.088047075007011,-0.029835607712472945,-0.012463199157213955,0.0038074650469451235,0.07479236592596221,0.28060856995859557,-0.38480527130264336,-0.04795749592118751,-0.016349625589325383,-0.00967598843619081,-0.17342978007529547,-0.00996389418134596,-1.8678529267720057,0.1971583477644547,-0.04247140665073763,-0.0013016959992089234,0.07419423193552394,0.26733378636094607,-0.34235201508405816,0.8706048967523692,0.01171618349373742,-0.03403640186472012,-0.6781472226078639,-0.026716787625039255,4.722820152405629,1.0593538611785318,0.04239876631863162,-0.0014688825810855776,0.06945022907122032,0.7419717359146331,0.4121604485557327,5.557666225825096,0.03449342055096778,0.03754715061253213,0.7470505384889117,0.021980635884473403,6.761997466181379,0.22418387618728156,0.007095772041885212,0.0019082114529392934,0.007909683649511813,-0.12112947039028735,0.13442643569539803,1.1000267243147626,0.02410995710062973,0.0058678773225020586,0.2719343832891653,0.00665300222252528,3.7312076008855874,-0.9291142935457805,-0.017707549204925312,-0.0021255377235432516,-0.1542982446772534,-0.6667734597763754,-0.19733967260052226,-4.440164669204952,-0.031342068735110376,-0.016220560521435154,-0.3218038305501863,-0.010293386117607663,-6.452507338674884,-0.35359930674047096,0.01060349719874778,0.002153485822141415,-0.22531606454299954,-0.2584709328102538,0.04621525569205699,-1.7085426839546123,-0.02526662161111233,0.008262423251064736,0.028555530177838007,0.006674070199244976,-5.068694332015118,-0.32959458106925726,-0.009313018154580355,-0.0022927920803353804,-0.25308576206942196,-0.3636081865114342,-0.4646133177660877,-1.6162003920618673,-0.0652072860462047,-0.005988198715651445,-0.3063793940294042,-0.008855341617995047,-8.818070048108853,,,0.4420168067226892,1.4044117647058822,0.7352941176470589,0.10294117647058823,0.6691176470588235,0.0661764705882353,0.7859286596238408,0.020218504603315007,0.03033615166213853,1.365396316418941,0.285857026582942,0.19140133829530465,2.151324976042782,0.47725836487824663,2.0320100330083393,1.3663389827930619,0.251140507270335,0.15415020596725124,0.2603803369776906,0.6656710502152767,9.757274111020417,1600.0,368.59960000000007,197.0,694.0,8482.324522191235,6546.436441748851,76.34585057273499,367.32419999999996,551.8611111111111,427.53000399999996,12291.27705713975,1607.0,359.729,248.0,598.0,7855.252073668401,6308.524280176,96.145509992,366.02299999999997,231.66666666666669,427.401256,15264.586916859571,2471.0,594.2536,378.0,908.0,13344.303122238996,9647.775588352,141.36225349369798,601.8455,412.47222222222223,705.3731359999999,22404.088114351576,2977.0,808.6469999999999,437.0,1119.0,19085.65095865669,11500.989478411197,161.82433135833898,813.6510999999999,566.6666666666667,961.170092,25914.54750579864,3227.0,853.1068,430.0,1279.0,19781.41233591834,12646.19728942468,161.29124736218796,854.5781999999999,827.1111111111112,1002.6224239999999,26186.576142413298,3164.0,814.2079999999999,440.0,1188.0,18781.065926698946,12295.0253534192,169.610360128943,818.7933999999999,695.6111111111111,961.315892,27113.071474899043,3120.0,828.2219999999999,446.0,1112.0,19116.443447522797,12013.044108118398,175.475559034698,835.0339999999999,607.9444444444445,982.081352,27617.537434378253,3081.0,869.454,433.0,1069.0,20483.401802127795,11810.5109239632,175.431634823943,875.2728999999999,663.2222222222223,1035.729996,27221.264759062844,3043.0,897.545,390.0,974.0,21168.823683652445,11601.167909484797,170.55840961064098,903.9407999999999,705.7222222222223,1075.3937760000001,26655.18805902242,384.9795918367347,16.87636734693877,1.3084502969896572,35.3469387755102,258.9795918367347,180.30853519609153,1876.1000550319477,11.582686101693673,14.528477551020407,243.94217687074828,10.028352979591835,2019.9606638088571,-11.672219908371524,-1.6458551436901316,-0.779527625225834,9.06039150354019,37.65431070387337,-14.845006414876835,-49.70385924769985,0.4427649773698776,-1.3702333194502296,-20.215847563515204,-1.0379902640566396,108.57844790036457,-2.5360266555602005,-1.0593719283631862,0.3236345289903355,6.357351103706788,23.851728446480625,-32.708448060724685,-4.076387153300939,-1.3897181750926575,-0.8224590170762189,-14.741531306400116,-0.8469310054144066,-158.76749877562048,22.476051645147837,-4.841740358184089,-0.14839334390981726,8.458142440649729,30.47605164514785,-39.02812971958263,99.24895822977008,1.335644918286066,-3.880149812578094,-77.30878337729648,-3.0457137892544752,538.4014973742417,122.8850478967097,4.918256892961268,-0.170390379405927,8.056226572261558,86.06872136609744,47.810612032464995,644.6892821957111,4.001236783912263,4.355469471053727,86.65786246471376,2.5497537625989146,784.39170607704,25.332778009162816,0.8018222407330289,0.21562789418214015,0.8937942523948349,-13.68763015410247,15.190187233579977,124.30301984756818,2.72442515237116,0.6630701374427326,30.72858531167568,0.7517892511453567,421.6264589000714,-108.70637234485632,-2.0717832569762615,-0.24868791365456042,-18.052894627238647,-78.01249479383591,-23.088741694261106,-519.4992662969794,-3.6670220420079143,-1.897805581007913,-37.651048174371795,-1.2043261757600965,-754.9433586249614,-43.8463140358184,1.3148336526447248,0.26703224194553543,-27.939192003331943,-32.050395668471474,5.730691705815067,-211.85929281037193,-3.133061079777929,1.0245404831320273,3.540885742051913,0.827584704706377,-628.5180971698746,-42.51770095793419,-1.2013793419408658,-0.2957701783632641,-32.648063306955436,-46.90545605997501,-59.935117991825315,-208.48985057598088,-8.411739899960406,-0.7724776343190365,-39.52294182979314,-1.142339068721361,-1137.531036206042,0.7225936806733334,0.5019751279088204,0.43856174069892956,0.2636575181669153,0.2786492488431068,0.13312412705457186,0.17018552523081362,0.06643000199517611,0.10808509136944378,0.03232976426703195,0.06427401115881301,0.01633145504202795,0.041177938277734076,0.008065075826324014,0.02451470329289669,0.00418558770650485,9.008469284318107,5.683250378633283,4.112635504573066,2.179652177508251,0.4655854084972816,-0.4135121502283628,3.308261448563183,0.9775940598118528,7.008442254516616,1.977286859123529,17.42894892320983,10.946417440245611,19.004295685206195,11.696523058143635,2.007878387689275,0.5447501705316913,3.9937567819110824,2.2283511551277897,8.006094522405963,1.2460964423855492,4.015310597511119,2.4234928101424935,20.905753248790496,13.30315305145455,0.3210982083603332,0.6520913425979006,0.7617442429142677,0.8684787692490051,0.8915419097990981,0.8915419097990981,1.6299269044557299,1433.9125043515553,0.0,2.0,2.0,0.0,14.0,1.0,2.0,0.0,0.0,3.6954159698111955,1.716977353716671,1.0615512741021123,0.42356913269721286,0.2857142857142856,0.2857142857142856,41.15391980930406,2150.61832487675,102.20415171167116,43.890169895443876,100.85366374378985,,13.0,718.0,65.23553935390657,36.959667212127336,22.59194298199675,22.766200853176183,18.19910120538483,6.06636706846161,0.0,0.0,15.284745645900749,0.0,15.028571428571434,47.75,25.0,3.5,22.75,0.0,0.057983193277310774,2.25,0.3291788143828959,0.11590042610450813,-0.2132783882783878,0.0550193050193053,0.2623039931300985,0.0,0.7708454810495616,0.9785714285714284,0.4416666666666657,0.6549450549450535,0.9235521235521231,26.721574427210587,0.6874291565127102,1.03142915651271,46.423474758244,9.719138903820028,6.507645502040358,73.14504918545458,16.226784405860386,0.45169600686990147,0.16159695817490488,0.0,0.45912547528517095,0.13636363636363635,0.4692920517045534,-1.506177411448004,-0.10733637633940946,-0.030738314519347026,-0.10041182742986693,0.5307079482954464,1.7032897124406192,0.04518760295028266,0.03476101453960447,0.05009675624825351,-7.014410177030118,0.5994323742415345,0.6547435286597162,1.4853106465831816,0.7834428850595132,0.4294962720494636,0.945809724206498,0.5901556323541359,0.9435650516841075,0.6357540512487995,0.6442783641712796,0.6924210262312768,0.8134349261233856,0.6923514443945517,0.692413855897426,0.787752599815415,0.966553457410678,0.6301654846335697,0.9800032654445088,0.6846623250133616,1.0256893192607983,0.6790823681648275,0.6818394994188921,0.7224538023263066,0.9356706017167812,0.871132985134592,0.9851608761716755,1.041507018469969,0.9470037680807099,0.8559910414333707,1.0342740387349467,0.8719375478522918,0.8959156316054111,0.9751316955005646,0.9753533710878936,0.9850224940486634,0.8299352974536089,0.7851737299289286,0.7985657919218618,1.166706457376592,0.942382734729633,0.8004891171435559,0.8317422748545665,0.77062441690144,0.7782580541915879,0.792649206804723,0.7605674637269689,0.8185922608265783,0.7467239372394664,0.7883649710644238,0.7554219755339978,0.9786482827668929,0.9794191583723355,0.8594656791983096,0.8477352937861798,0.7814870312195703,0.8033518008861125,0.7521579392016725,0.7061250724465827,0.7488721508676282,0.79501532573524,0.9095387225158217,0.8076583177724489,1.035577349187323,1.2070823710546574,0.9251298215837224,0.9591231336501762,0.903508750904732,1.065706736433891,0.8054476571295195,0.8082574883004336,0.8084386662686343,1.0598298715277024,0.9295842567512107,0.7909265938298435,0.8291052110207048,1.330589287044625,0.9229771982002593,0.8999503030745298,0.9274209039727728,1.070045251512702,0.7936821671708622,0.8032487004613436,0.7852294341362895,1.0929399286556354,0.993589364262185,0.9305860263083042,0.9709060237361568,1.3000698211504378,1.0007073872487033,1.0490562413766278,0.9928274647729155,1.285362097764528,0.9257699480034012,0.9929493346718908,0.9560292420086548,1.2332804013900114,8.0,0.30109172533414963,4.000000000000002,3.5625,2.8266666666666675,1.5208333333333335,1.556734693877551,1.1111111111111112,0.8052406147644241,0.4575000000000001,8181.435987757221,8679.385046427255,3367.5645360208036,3199.6294351116876,13.976389887451646,0.4431568073610769,7.782657566494934,0.795837703000233,1.0,0.13636363636363635,1.9192938743040127,3.8977324903985373,4.553158570013096,5.1911407114179955,5.328995558400923,5.328995558400923,0.2162162162162162,0.01115154538274628,0.07407407407407411,0.05745967741935483,0.04348717948717949,0.023042929292929296,0.024323979591836735,0.018214936247723135,0.01388345887524869,0.009531250000000002,0.4913852465873088,27.04601899196494,11.588477366255145,5.796932067202338,187.31852663865993,1.0,4.456613007330761,190.13377373173722,,135.9440729513941,132.382946211937,130.92426762678153,135.59528508777697,211.93902551398494,134.43931661268542,136.33567721725944,178.40168255107903,-0.02856988484373983,-0.09189785517466316,-0.5613930306001205,0.24153934979570083,0.13700672849609014,-0.0775812621509151,-0.0249647287098922,0.03602107839208982,-0.08887245016829509,-0.07809042663300254,-0.09753408285005084,0.05065163322656922,-0.003797460460011002,-0.03618650543384024,0.14258530700748948,0.10368156500475477,0.05309229129003845,-0.10457329861464176,-0.0012525543580873526,-0.06916630968353693,-0.03263407550504489,-0.034836367096093175,-0.04868504488020361,-0.045310186010874214,0.02509421082392153,-0.12331438887905205,-0.04874705910341616,0.10285239658036546,0.0505806478370868,-0.09303635416301957,0.02273846740020465,0.049564754337008854,-0.1147941128390393,-0.13621758374892132,-0.13054213351794147,0.11456569012166379,0.13483400236904447,0.12310347996719787,-0.055008009581094724,0.09627598152424942,0.1403840928235645,0.11200724334689553,0.14515518206772415,0.14592276715072816,0.12663476772105797,0.15005800495644475,0.10740060312306975,0.16403184565887224,0.028534005869681033,0.02060235019211311,0.07146038440217838,0.010964867461014934,-0.022918192151858148,0.036531245411710746,0.028730508986902346,0.10199602126471413,0.0197905105881109,0.05462271818714309,0.03250754232197032,0.09051125386701805,-0.11825717868974867,-0.05141331029386061,-0.07959901013683106,-0.21389727798503777,-0.12615627083712191,-0.05362832073872449,-0.11596826523590595,-0.13259112390137573,-0.05470686537933214,-0.0646398580976587,-0.050294990691811904,-0.1565242656750012,-0.04500593381487864,0.03078691948672752,0.0806456351668079,-0.31234634582433135,-0.04890375962785022,0.012559291918422066,-0.04462373490647884,-0.1068892351976515,0.027866563298212677,0.0057358714948888626,0.03261048353887463,-0.1229558707348387,-0.041950624954796796,-0.027040054307493677,-0.08586249870928166,-0.3508423295200243,-0.06879615885058735,-0.12626164671450224,-0.042211938003318766,-0.2758563072685549,-0.020196316925603287,-0.061541593585906065,-0.04326849485302201,-0.2139078448897066,6.472300259997347,27.324039184579348,20.496114884049504,21.22076205388326,39.761786039109836,46.90502961727402,52.59304335706368,53.46628675710818,53.46628675710818,69.08834112228354,46.45552541496411,8.53877724719139,5.241107002886542,8.85293145724148,22.63281570731941,9135.921350316128,6331.132416500024,3537.565114197004,304.0,54.0,74.0,104.0,139.0,165.0,199.0,251.0,287.0,478.10643144000045,37.0,5.209486152841421,6.0844994130751715,6.9985096422506015,7.896924656268864,8.819517540604888,9.729550745276567,10.656906351437641,11.573785353226992,12.503948830999024,0.8299319727891156,1.0716734693877552,1.1559625953344845,0.8128246658250344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6884137235732616,1.0522609043617448,1.062993296371717,0.7035251706218821,7.0,2.0,0.0,0.0,0.0,2.0,9.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,15.529843393687743,23.139048797821246,17.281618902859517,5.948339280986494,5.559266895052007,9.361636831863176,26.93605375932131,4.9839785209472085,0.0,0.0,18.19910120538483,35.21514398000823,24.949532753022257,314.4659369160262,-1009.2680861148198,-71.92458092598051,-20.597307879894284,-67.28453907432132,355.61985672533024,1141.3502387619303,30.27957078569066,23.292862015549595,33.569124669468536,0.46153846153846156,0.5117519888519839,0.12280815795714851,200.19605566732784,0.07990994123382848,54.39505475569745,0.48824801114801614,7.0,0.16216216216216217,0.3418331360997451,0.6942001632522045,0.8109339033405748,0.9245608153480707,0.9491132589845683,0.9491132589845683,2.9083000000000006,,2.9880952380952386,3.5510333791099655,3.1889168670482024,3.1567423158121874,-15.3106334050625,3.217382044863239,2.8740363731051546,-5.207580273651329,111.94330000000002,32.165130028055515,0.0,14.53505668968577,0.0,6.041840829147961,18.530552533032168,81.90447776358458,0.0,16.944765761229018,4.31748811353631,0.0,5.673323267171493,0.0,7.232010331664759,0.0,8.893298144217916,0.0,10.611153819195277,40.666666666666664,5.478935816801977,8.23204590786932,0.0,0.0,0.0,-0.4526917989417987,-7.615059538167367,0.5179823318216172,52.512,0.0,12.67964354298499,0.0,0.0,0.0,0.0,0.0,0.0,56.642167171389744,10.876055499058339,27.900414519360595,0.0,44.003716237540985,0.0,29.086104205229475,0.0,47.25910666330309,0.0,27.97816719646154,0.0,39.82840862542669,33.73227245508982,42.877233795734504,380.26754746347444,,271.712375594665,264.5570081074558,261.6609519084426,271.00487945109444,429.7720286693257,268.689375458026,272.5022934713951,358.49978672463317,42.877233795734504,380.2675474634745,,268.96006499546695,261.3055405080372,258.7843138932849,268.0936134389341,439.18868443303256,265.7335787135189,269.85568323825555,362.01094537580946,5.080565868716511,255.4008977469215,,181.80645675062007,177.36241841076273,175.2130420587311,181.43808467704434,277.3422846010629,179.91789546617835,182.2657066644419,236.50525181997241,1.2610951116392501,11.184339631278661,,7.991540458666617,7.781088473748699,7.695910350248312,7.970731748561601,12.640353784391934,7.902628689941942,8.014773337393974,10.544111374253916,2.540282934358255,190.13377373173722,,135.9440729513941,132.382946211937,130.92426762678153,135.59528508777697,211.93902551398494,134.43931661268542,136.33567721725944,178.40168255107903,51.56078431372549,0.0,0.0,0.0,70.75918530575359,0.0,18.73494353400697,52.08667152221413,-1.1369970807678236,2.566368548962795,0.0,0.0,-0.980053429314794,0.0,0.0,0.0,0.0,34.472733360472226,342.9177375974243,94.04539984089662,190.98889202952833,223.1047699306417,254.36589485948178,261.12078236164524,261.12078236164524,1648.0,150.47312868598118,327.16805604393227,70.72727367578575,100.27000000000001,100.27000000000001,0.8571428571428571,9.985083380416908,6.20945336562895,4.8171599733848804,5.731884953495027,,5.716666853319134,5.71668472396853,5.712510347387884,5.717296997083472,5.661376067051344,5.7166182922768485,5.716363092497222,5.698050817830263,0.1416811756877906,0.16858485157338315,,0.16813726039173923,0.16813778599907442,0.1680150102172907,0.1681557940318668,0.16651106079562775,0.16813583212578967,0.16812832624991828,0.1675897299361842,2.7959599688879218,2.9698198704680947,,2.9671613492165316,2.9671644752726625,2.9664339991997277,2.9672715723680514,2.9574424156751555,2.967152854537764,2.967108211802666,2.963899586196192,296.43000000000075,391.65934990220757,236.74022399029573,,238.48397017360008,238.40075933780923,239.15215040640064,238.3227180569325,247.34585626664324,238.45644820335525,238.5643144854532,241.69133033139835,11.519392644182576,6.962947764420463,,7.014234416870591,7.011787039347331,7.033886776658842,7.009491707556839,7.274878125489507,7.013424947157508,7.016597484866271,7.1085685391587745,7.194167888257025,6.690738870292114,,6.698077528679591,6.697728551950055,6.700875393580881,6.697401145034833,6.734563016645475,6.697962118161988,6.6984143680109405,6.711436849144984,71.2771676375752,20.91168945085431,21.24883995522978,-2.702117294448641,-6.264131722596696,4.498882387487184,0.0,-1.1369970807678236,0.0,367.73676767086556,210.71915691154817,-676.296206481142,-48.19563989210763,-13.80196339757433,-45.08641376540947,238.29581392841843,764.8025805635399,20.28991022104916,15.608215929868159,22.494193545986466,3113.0,62.0,2.6949608774095912,0.8987364359235069,0.0,0.0,0.5809919301268086,0.12650622125730884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23470804841064383,0.07602349436206599,0.6758149007487498,0.12303422346135438,24.568185142893334,17.067154348899894,16.226784405860393,9.755328172175865,15.047059437527768,7.18870286094688,12.593728867080209,4.915820147643032,11.240849502422153,3.362295483771323,8.934087551075008,2.270072250841885,6.794359815826122,1.3307375113434623,4.878425955286441,0.832931953594465,6.034073456700963,1.6955591960596021,10.813245837517067,2.3074710178414253,17.685669103757437,3.0495856071565424,105.61331637843675,63.83981267960402,46.126458893033345,32.618273248351514,30.89402072279488,30.89402072279488,182.0,219.0,56.332895,26.041105,0.4489795918367347,247.12,12.555555555555555,7.499999999999998,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,23.0,49.0,0.0,0.0,52.0,23.0,1.0,11.0,41.0,24.0,37.0,28.0,0.0,0.0,0.0,22.0,0.0,5.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,7.0,3.0,2.0,34.0,12.0,0.0,4.0,3.0,0.0,4.0,6.0,0.0,0.0,5.0,2.0,4.0,3.9219733362813143,8.985225640881751,4.620058798481842,5.274280788719795,5.972536537222463,6.641671606082852,7.098453114928261,7.595041568021923,8.159140066078796,8.610936092544357 +6918289,CO[C@H]1C[C@@H]2CC[C@@H](C)[C@@](O)(O2)C(=O)C(=O)N2CCCC[C@H]2C(=O)O[C@H]([C@H](C)C[C@@H]2CC[C@@H](OC(=O)C(C)(CO)CO)[C@H](OC)C2)CC(=O)[C@H](C)/C=C(\C)[C@@H](O)[C@@H](OC)C(=O)[C@H](C)C[C@H](C)/C=C/C=C/C=C/1C,0,19.85,6.103155625000001,2.84375,6.05,164.7923768924979,77.86795255624997,1.2897561670116438,6.148745000000001,4.715538194444444,7.6912772249999986,188.29249292565495,21.766871165644172,6.267331288343558,3.576687116564417,5.116564417177914,145.89539221696504,80.73121737423313,1.667322881435583,6.403493865030676,2.8618779822767553,7.731730453987729,239.71555742045987,17.54071661237785,6.160511400651466,3.185667752442997,3.970684039087948,155.3215288060735,63.64702819543974,1.3709586961978892,6.252100651465797,2.679695982627579,7.706703583061888,191.69195550077995,16.116438356164384,6.154522831050228,2.76027397260274,3.4178082191780823,157.64979734399665,57.49501972374429,1.2489098634369247,6.231830821917809,3.0522577371892443,7.7220747671232886,171.96450354839715,13.972677595628415,6.181398907103826,2.4280510018214936,2.830601092896175,162.7170554297637,48.482503697632055,1.1130368093100529,6.23074262295082,3.256274033596438,7.7977453989071055,150.8999658709289,13.75,6.086350352112676,2.459507042253521,2.4964788732394365,161.82494045939333,47.75757338732394,1.1324403521232589,6.146363204225352,2.971879890453834,7.702827056338028,152.8114073832653,13.447368421052632,6.111975328947368,2.4046052631578947,2.4473684210526314,161.87361783518176,46.10207499177631,1.1386180514982185,6.170209703947369,2.98812134502924,7.726415019736843,152.33736387365775,12.779761904761905,5.965217261904762,2.331845238095238,2.3333333333333335,162.22187086219586,43.97345889136904,1.119907348013939,6.026942708333333,2.7179439484126986,7.589161851190475,146.65074376992848,12.08695652173913,5.917380084151473,2.279102384291725,2.08835904628331,162.4097580072928,41.05197725806451,1.1003777464361162,5.979989481065918,2.6654394576905096,7.5516316129032255,142.45781171400526,7.687343749999999,0.14742043359374996,0.01940513556113408,0.6124609375000001,3.83734375,1.2619519589468737,36.402160688710936,0.22030298768874995,0.13766693749999992,1.9308116319444444,0.09649910609374995,48.98390094015321,0.20989551380368182,-0.003225955066142547,-0.00843338330140482,0.25452525881901855,1.1510764953987733,-0.10409461605668778,0.9941474970252641,-0.009497144152032743,-0.0015112319785275516,-0.1240626331373551,-0.004033279099884949,-0.11787652298160704,0.4742604845276875,0.005794104272699568,-0.002535986762253355,-0.05201712642508137,0.3302458265472314,0.01726949052573074,2.244343915686459,0.006017843698344857,0.0061058067996742965,0.02422506955754614,0.0028182196391490356,2.3064169501014975,0.19596104452054808,0.014324273883419,0.0013182944249490655,-0.05240100599315065,0.1525249714611872,-0.1490621798960754,0.7915775891714855,-0.02751522043826081,0.013266418664383588,0.16431378028285132,0.008477133175656406,-3.6623697167857205,-0.26548582650273217,-0.0011308309070468328,0.0014727703414890297,-0.015090718920765014,-0.21040841302367944,0.04395740506735005,-1.24318489011121,0.005399047137441163,-0.0021027025273223656,0.008373091542703891,0.0004541799262864584,-0.3965670262539023,-0.18833406690140833,-0.01169929582966545,-0.0014398813550913746,-0.011360585387323941,-0.39236135563380287,-0.026564035098290344,-0.8396169180353203,-0.0011850754624116906,-0.010058742077464764,-0.13029110426447574,-0.00844544601452463,-0.08936541364914434,-0.7986101973684211,-0.01638870456414468,-0.0008819396912447322,-0.01241981907894736,-0.3945394736842106,-0.0011058003110767684,-3.7256001027117596,-0.0023534481569515565,-0.01592653453947365,-0.1565209247076023,-0.009434250090460504,-2.436457620615738,-0.004624255952380986,0.004898986979166666,0.0013712286124569722,-0.027034970238095233,-0.013906250000000009,0.019058506048706795,-0.04676765031807973,0.000558047229638273,0.003941552083333335,0.035775979662698396,0.0040095663020833314,-0.2871034302686531,-0.24603940217391304,-0.004695980578322239,-0.00012738803212772326,-0.004378889814165495,-0.13227713008415148,-0.03122579997796839,-1.1565351200047662,-0.0041495138051331195,-0.004523371581346424,-0.06669495456404863,-0.0029413516757976895,-1.241721849305599,,,0.46210045662100446,0.7842465753424658,0.1780821917808219,0.0,0.6061643835616438,-0.4280821917808219,2.006344936239879,0.026549838071687468,0.03126216683881075,1.0246721489048427,0.13758924991633448,0.3346857553321574,3.0310170851447213,0.47227500524849186,1.9808833415337428,1.5485148696293474,0.03051357524817584,0.40185489665621954,0.0,0.43236847190439537,6.435015535650015,3176.0,976.5049000000001,455.0,968.0,26366.780302799667,12458.872408999996,206.360986721863,983.7992000000002,754.4861111111111,1230.6043559999998,30126.798868104794,3548.0,1021.575,583.0,834.0,23780.948931365303,13159.188431999999,271.773629674,1043.7695,466.4861111111111,1260.2720639999998,39073.63585953496,5385.0,1891.277,978.0,1219.0,47683.709343464565,19539.637656,420.884319732752,1919.3948999999998,822.6666666666667,2365.9579999999996,58849.43033873945,7059.0,2695.6809999999996,1209.0,1497.0,69050.61123667053,25182.818639,547.022520185373,2729.5419,1336.888888888889,3382.2687480000004,75320.45255419795,7671.0,3393.588,1333.0,1554.0,89331.66343094027,26616.894529999998,611.057208311219,3420.6777,1787.6944444444443,4280.962224000001,82844.08126313996,7810.0,3457.047,1397.0,1418.0,91916.56618093542,27126.301684,643.226120006011,3491.1343,1688.0277777777778,4375.205768,86796.87939369469,8176.0,3716.0809999999997,1462.0,1488.0,98419.15964379051,28030.061595,692.2797753109169,3751.4875,1816.7777777777778,4697.660332,92621.11723518392,8588.0,4008.626,1567.0,1568.0,109013.09721939561,29550.164374999997,752.577737865367,4050.1055,1826.4583333333335,5099.916764,98549.29981339193,8618.0,4219.092000000001,1625.0,1489.0,115798.15745919976,29270.059784999998,784.5693332089509,4263.7325,1900.4583333333335,5384.31334,101572.41975208576,1229.975,23.58726937499999,3.1048216897814527,97.99375,613.975,201.9123134314998,5824.345710193749,35.24847803019999,22.026709999999987,308.9298611111111,15.439856974999993,7837.424150424514,34.21296875000014,-0.5258306757812352,-1.3746414781289857,41.48761718750002,187.62546875000004,-16.96742241724011,162.04604201511805,-1.548034496781337,-0.24633081249999092,-20.222209201388882,-0.6574244932812467,-19.21387324600195,145.59796875000006,1.7787900117187674,-0.77854793601178,-15.96925781249998,101.38546875000003,5.301733591399337,689.0135821157429,1.847478015391871,1.874482687500009,7.437096354166665,0.865193429218754,708.0700036811597,85.83093750000006,6.2740319609375215,0.5774129581276907,-22.951640624999985,66.8059375,-65.28923479448102,346.71098405711064,-12.051666551958235,5.810691375000012,71.96943576388888,3.712984330937506,-1604.1179359521457,-145.75171874999995,-0.6208261679687113,0.8085509174774773,-8.284804687499992,-115.51421875000001,24.132615381975175,-682.5085046710542,2.9640768784551987,-1.1543836874999787,4.596827256944437,0.24934477953126566,-217.71529741339236,-106.97374999999994,-6.645200031249975,-0.8178526096919008,-6.4528124999999985,-222.86125,-15.088371935828915,-476.90240944406196,-0.6731228626498402,-5.713365499999986,-74.00534722222221,-4.79701333624999,-50.759554952713984,-485.555,-9.964332374999964,-0.5362193322767972,-7.551249999999994,-239.88000000000005,-0.6723265891346752,-2265.16486244875,-1.4308964794265464,-9.683332999999978,-95.1647222222222,-5.736024054999986,-1481.3662333343686,-3.107500000000023,3.29211925,0.9214656275710853,-18.167499999999997,-9.345000000000006,12.807316064730966,-31.427861013749578,0.37500773831691947,2.6487230000000013,24.041458333333324,2.6944285549999987,-192.9335051405349,-175.42609375,-3.3482341523437564,-0.09082766690706669,-3.1221484374999977,-94.31359375000001,-22.263995384291462,-824.6095405633982,-2.9586033430599143,-3.2251639375000005,-47.55350260416667,-2.0971837448437527,-885.3476785548921,0.74480738744381,0.6203925282829703,0.45363257083078834,0.34735966065094986,0.28830392077564687,0.20225946722072732,0.19280918754884713,0.11358869068677721,0.12135779294814122,0.06641675509640695,0.07630386109468372,0.03951783126351406,0.04680723766321936,0.022083332512095568,0.030029453705014676,0.012632217076360898,8.039013724745372,5.710332847818026,3.5658573753364924,2.210222503973116,0.48937531509952187,-0.49181896582316703,4.029456376117899,0.9762417474892044,6.0355151981248465,0.9930192993030371,14.543370188602985,10.970651326260283,16.025273390433455,11.7213955045917,1.9818599475122531,0.740389742533261,3.512414320026042,2.26019794277075,7.013835288067916,1.1502073576565777,3.7251890746276834,2.456202296416694,20.887280895115108,14.699769696102337,0.1864253737863137,0.44901219323794905,0.7364512388844995,0.870033475837189,0.9022010749884901,0.9072450393740394,1.630031828189651,2008.8445619076049,0.0,3.0,11.0,0.0,9.0,21.0,2.0,6.0,1.0,5.935924748587907,3.983689368487431,1.8466869259986263,0.8535526564393026,0.614398515773737,0.5768985157737374,618.1408157513108,9561.56703268012,126.1886189756838,59.759793954250725,117.02724098394224,,25.0,2890.0,120.48613053064501,49.19333268379375,42.78870163681726,69.78132075932938,10.473014260919745,21.14333228224569,40.880766446873906,51.15131213324128,0.0,28.421177722800294,33.73333333333333,57.25,13.0,0.0,44.25,0.0,0.037899543378995516,-31.25,0.12457746478873294,0.012460317460317505,-0.11211714732841543,0.029793038012216333,0.184987976999478,0.0,0.5616666666666656,0.873515981735161,0.4370892018779327,0.5492063492063481,0.8437229437229447,146.46318034551115,1.938138179233185,2.282138179233185,74.80106687005352,10.044015243892417,24.43206013924749,221.26424721556467,34.47607538313991,0.529012023000522,0.2618577075098814,0.029644268774703563,0.3379446640316206,0.75,0.26739828133616855,-1.9241688501969627,-0.058492960176507576,-0.012026055313731018,-0.04182975761297744,0.7326017186638315,5.271722015600829,0.03647468765268265,0.03294826259750517,0.046243175575445855,-5.736216178846692,0.9366193661724634,0.7693069649142857,1.4413497813051788,1.0651111231974932,0.5695711616722668,1.4691549625150648,0.9470346900602453,1.3996916752801531,0.7631336648269473,0.7211044756898709,0.7966791820470782,1.2353873104032442,0.9299505769727452,0.8791219392043486,1.2017954666165573,1.6066968972170288,0.9481441554095681,1.1779195106175993,0.9341709864380437,1.1350216920056606,0.8726201348937629,0.6700921295466215,0.8931528892254855,1.0558170062227061,0.9803044777332873,0.898575228100311,1.1029467528988994,1.320639158738632,1.0137008612750844,1.247521506833827,0.9858540013400381,1.2325319875414733,0.8939760576982679,0.7935505776849655,0.9176035866087617,1.1393128217300175,1.0880891110563913,1.231006988600305,1.2189506696196635,1.1023899218508484,1.216301459382858,0.9773683408967762,1.0833938792087543,0.9751780743052326,1.2191246160495464,1.2332826474139031,1.2485522491703958,0.9929913126595551,1.0472537658929861,1.1739367339052569,1.2190434031503556,1.1626388216408599,1.21642104756066,1.0542042884918392,1.0443496251156927,1.02768372257063,1.1578894793933316,1.239955651876276,1.1972114775625615,1.00787583423826,1.1323962511005252,1.2257096037291602,1.118812461339587,1.086149425480277,1.19091296791186,1.0444816358298625,1.1290489936764094,1.0315033781504535,1.2184415444990007,1.2701222835715775,1.2263266371079162,1.0534793244181782,0.984632745148711,0.909732388291161,0.8981720447238479,1.0660073073173397,0.9788381332418141,1.0160543137230866,0.9867954840708477,1.0203420785562618,0.917055685704181,0.8553958348921471,0.8956362723320224,1.0204285194383576,1.0084219604801032,0.9504424522163473,0.9320584711337542,1.0047081493930607,0.995374964157357,1.0421929481007135,1.0100214781571961,1.0379875928426772,0.9566108589049163,0.9975583072925195,0.9425531895244555,1.0388717788001538,19.0,1.2599734720946842,12.000000000000004,7.0625,5.640000000000001,3.6527777777777772,2.7526530612244895,2.28125,1.5583270345175104,1.3393750000000002,17953.0712668871,21232.649533329048,6803.596049803707,5923.694717298638,23.79985487869722,0.4904351269015642,12.127570031024538,0.9624586638389099,0.0,0.75,1.3860033462994552,3.338238726399932,5.475241168888736,6.46837543844806,6.707529579113626,6.745029579113625,0.25,0.008025308739456588,0.11111111111111115,0.053912213740458015,0.04208955223880598,0.026091269841269835,0.01924932210646496,0.015107615894039734,0.010458570701459802,0.009173801369863014,0.5452187657429292,65.5180055401662,31.117283950617285,18.0,432.61650323308027,0.0,5.184211892076181,765.2207793314184,,691.6152824390075,684.1062194114705,699.3059730292514,691.7443781637764,905.7782962846519,689.3966957862509,691.970646522369,806.1417139424623,0.027304036430487687,-0.021882686053090777,-0.4345954335045086,0.4155779466654043,0.2999670007146931,-0.08248698797025283,0.02731012330632258,-0.043109465975334695,-0.01097745040291575,-0.064254135973076,-0.04179602550894693,-0.002406433965429262,0.06169367468804651,0.039303264353885446,-0.13068637187635015,-0.08493133723337477,0.08606104849148095,0.013684744814012178,0.06165414011763529,0.02731621464365717,0.04435202024941028,0.012546573242440033,0.029204619122700514,0.04708520362474593,0.025491385697504174,0.09716613588922651,0.06793533705528113,-0.08555811935867444,0.03974753928708816,-0.11812032846358987,0.021745346270529764,-0.12489717332901115,0.09636604768943594,0.085100885847356,0.08784675339293585,-0.07476680391911361,-0.03453544359880254,-0.007670788095516602,0.07589590584663547,-0.024639479837463125,-0.05483178644698678,0.03483286725433942,-0.03415140383402426,0.02450737138921186,-0.015273838188797996,0.004336565724058582,0.004706571331813348,-0.008095864531867598,-0.024499238361938524,-0.07936006932326276,-0.07420104593215347,-0.018549077486797173,-0.10224816466697904,-0.021049957496368253,-0.023065029716648193,-0.005379298187666875,-0.07306577933764795,-0.06747996651194021,-0.0875183859871177,-0.0018243833572652334,-0.10388636482769763,-0.11116983015602457,-0.04544877764271541,-0.02027854891390091,-0.10281577554374965,-0.0008762618126918101,-0.10234557598299779,-0.010682779119984392,-0.11568888528136001,-0.08106483414437286,-0.09776515526781175,-0.04973996708821772,-0.0006015414560303729,0.03323139716619558,0.070663181307703,-0.04414154206870578,-0.0036239260556211596,0.015102402206032891,-0.0012847492960104247,0.002533089702926305,0.028631072608362028,0.018528984946434065,0.0415502947580467,-0.005861179382577673,-0.03200577600994011,-0.03185433975362646,-0.006564655615334357,-0.0071496638333207905,-0.03447101398829632,-0.02474404810467349,-0.031771056940678576,-0.018835485840054362,-0.03285735604706415,-0.0345424449804473,-0.030480610596953447,-0.02534959089564326,24.48648914787862,0.0,32.55022767286015,12.804551693000542,33.266040627982285,43.06062992084607,45.82593443447625,46.204539308267144,46.24233930826714,144.60448393196322,113.04158548294235,2.2274909931168363,29.335407455904026,0.0,31.562898449020864,51660.01443665232,38957.96531158,16851.363323969374,284.0,108.0,140.0,161.0,188.0,198.0,225.0,246.0,262.0,1029.6024857040024,76.0,5.910796644040527,6.762729506931879,7.642524134232902,8.51097389160232,9.392578591964389,10.267818117285737,11.151482026956387,12.030903449513337,12.91664954221892,0.5812499999999999,0.9761750000000001,1.1356625939140166,0.5361246981933229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6192477208083832,0.9614705882352943,1.0035915877640202,0.5735266168837778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,6.0,0.0,8.0,0.0,11.0,0.0,0.0,0.0,4.0,15.0,0.0,6.0,0.0,14.0,1.0,2.0,0.0,0.0,53.74719703301359,41.65594179590289,5.783244946364939,5.7871111525705965,11.690424675716445,23.97268592035911,4.794537184071822,0.0,0.0,71.0748066394564,113.8793550269547,58.46951041408137,31.525663092270747,355.3064713045467,-2556.7465914192317,-77.72274067215989,-15.979666196370198,-55.58144763954851,973.4472870558575,7004.820441260887,48.4658783035239,43.78012775788053,61.44579334439373,0.44,0.7858107793201088,0.06393809616731945,10.16217606711394,0.045673678414418356,0.0,0.21418922067989105,14.0,0.13157894736842105,0.1892948589958499,0.4559234511918934,0.7477867984953169,0.883425151766335,0.9160878790652494,0.9212094808501924,5.722400000000009,,4.142857142857142,4.7570963238715676,2.995396559510467,4.130749444061287,-17.83489004760825,4.300719094247246,4.116179796615095,-6.70323627717184,271.2891999999995,77.61451040659406,0.0,4.899909730850478,40.92242674636514,186.99647376859383,41.087912958771014,47.60232970114182,0.0,0.0,5.030437921392435,0.0,6.371611847231857,0.0,7.89989532313973,0.0,9.510222717509283,0.0,11.16468626842399,92.99999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,156.18800000000002,0.0,84.23421364198069,0.0,0.0,0.0,11.082149218641343,0.0,-3.1717560420581057,181.70601502624265,0.0,0.0,0.0,156.166174109291,57.18840082723122,40.92242674636514,132.43975707263712,47.60232970114182,0.0,0.0,0.0,85.77995171093166,99.07963532934131,90.72880820654943,1531.461320927076,,1383.655818478312,1368.6142382929706,1399.347260378218,1383.9166094722934,1818.8721959785662,1379.1950694164948,1384.371711421042,1614.3903238850135,90.72880820654943,1531.4613209270758,,1379.897232588653,1364.378467593633,1396.5980607962015,1380.1668973868423,1832.9501208872782,1375.3368984542467,1380.6304822513177,1620.3262774947807,4.974814473780116,1059.0517430317323,,968.2739175813776,957.3597580890129,978.1399630802655,968.4578282568756,1269.5012952065345,964.984992111943,968.7974737820982,1132.8120625940132,1.242860386391088,20.978922204480494,,18.954189294223454,18.748140250588637,19.169140553126272,18.95776177359306,24.91605747915844,18.893083142691708,18.96399604686359,22.11493594363032,2.4874090865717546,765.2207793314184,,691.6152824390075,684.1062194114705,699.3059730292514,691.7443781637764,905.7782962846519,689.3966957862509,691.970646522369,806.1417139424623,153.8352941176471,0.0,18.333568850795462,0.0,0.0,0.0,43.07318470389589,160.57465404224325,3.347696857146854,0.0,35.43608992172098,0.0,-9.539083463172922,1.1603490514657127,-3.956412740415899,0.0,0.0,91.76425870140444,1044.1490263817127,221.76053540791284,534.1181962239891,876.0385870221978,1034.9400701516897,1073.20473265818,1079.20473265818,1961.0,233.58645590474643,284.60473197869123,112.9768540776973,241.95999999999992,241.95999999999992,0.7857142857142857,8.04012466444838,7.247927513443585,4.80624697755726,8.446825909548753,,8.443865456251064,8.443283712379165,8.441602119804996,8.44386628537559,8.422798525141431,8.44357988091144,8.443902768056113,8.439111957711468,0.06583899969256521,0.11570994396642127,,0.11566938981165842,0.1156614207175228,0.11563838520280816,0.11566940116952863,0.11538080171426618,0.11566547782070465,0.11566990093227551,0.11560427339330778,3.557790873569218,4.12166508694999,,4.12131454436249,4.121245646543644,4.121046463369242,4.121314642555017,4.118816487593448,4.121280723339364,4.12131896315893,4.120751432945748,817.3600000000031,11018.212773438587,686.5274798576957,,685.2258631897437,685.3498080917258,685.9881803148348,685.2265494052274,690.7135400758144,685.2996417574369,685.2166356014253,686.6020134160822,150.93442155395326,9.404486025447886,,9.386655660133474,9.388353535503093,9.39709836047719,9.38666506034558,9.461829316107046,9.387666325444341,9.386529254814045,9.405507033097017,11.295179237439879,8.51952060148723,,8.517622859352773,8.517803724816705,8.518734745870038,8.517623860796498,8.525599527467891,8.517730523993086,8.517609392770517,8.519629161617685,35.43608992172098,85.3945626934464,43.07318470389589,-0.27735049998101147,-9.364805444515937,-1.2009051598207232,9.763015085760456,12.747098653609228,4.429110045884722,1052.9815980369342,472.11480911568947,-3397.286642523457,-103.2743837782035,-21.233041515771607,-73.8540574461621,1293.4717412412099,9307.681487965187,64.39921794804536,58.1730092997824,81.64632884179987,27223.0,131.0,6.0693713763675285,3.686993060642129,0.2621886974951644,0.1513523138347365,2.2599524878983206,0.62874027311187,0.25343678769327627,0.044846376682230765,0.0,0.0,0.0,0.0,0.0,0.0,0.21030028017618946,0.16661179505275603,0.43410109989875734,0.25851961343528657,54.37093928339813,45.28865456465683,34.476075383139914,26.39933420947219,31.136823443769863,21.844022459838552,26.993286256838598,15.90241669614881,19.538604664650737,10.693097570521518,14.345125885800538,7.4293522775406435,9.267833057317434,4.372499837394923,6.756627083628302,2.842248842181202,15.744266042944682,6.934600121715858,21.991629024561686,8.425745724133312,31.982852495716386,10.675629053514509,262.5362842817605,104.27451789933336,49.82893481154059,33.07956949093012,30.207052092410336,29.786643463066635,368.0,432.0,165.46299100000076,104.61300900000022,0.275,520.17,30.430555555555557,16.541666666666668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,160.0,0.0,0.0,163.0,0.0,10.0,10.0,153.0,10.0,76.0,153.0,0.0,0.0,2.0,56.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,87.0,16.0,4.0,3.0,73.0,17.0,0.0,1.0,16.0,0.0,4.0,10.0,0.0,0.0,0.0,0.0,0.0,4.465908118654584,6.335054251498059,4.875197323201151,5.220355825078324,5.402677381872279,5.6131281063880705,5.71042701737487,5.8944028342648505,6.061456918928017,6.1779441140506 +5743186,Cc1nc(COc2ccc(C[C@H](NC(=O)O[C@H]3CO[C@H]4OCC[C@@H]34)[C@H](O)CN(CC(C)C)S(=O)(=O)c3ccc4c(c3)OCO4)cc2)cs1,0,28.40449438202247,6.374965168539328,3.359550561797753,7.920099875156056,162.57000162718438,112.4306738651685,1.5409535853798766,6.431416853932585,4.631056279958694,7.931503573033707,217.27973081166215,29.79787234042553,6.480051063829786,4.053191489361702,6.315602836879433,145.63318179826126,114.12145037234045,1.8312779614468089,6.630469148936165,2.823187549251379,7.9515371914893604,264.37151752445004,24.23391812865497,6.54642573099415,3.584795321637427,5.785575048732944,155.6204519609735,90.84291801754387,1.528927475827094,6.634152046783624,3.370298173417082,8.065184994152048,216.63356167130996,19.14090909090909,6.309822727272728,3.0318181818181817,3.918181818181818,158.11893226173135,68.56912794090908,1.3581235973989638,6.39522909090909,2.919304152637485,7.891503881818182,182.86551110847373,17.312,6.2636836,2.732,3.377333333333333,163.81235058246256,61.751268892000006,1.1951227340015715,6.323071199999999,2.8952037037037037,7.892165080000001,161.101655134533,19.583690987124463,6.3890592274678095,2.8454935622317596,4.4034334763948495,160.19916602066226,70.93931962660946,1.2972044995448926,6.457769527896997,3.8439702220102796,7.973528317596567,177.98764922837213,17.576923076923077,6.342157692307693,2.7423076923076923,3.747435897435897,162.23721925103482,62.92964113846155,1.2431423845434577,6.399997692307692,3.4583926875593543,7.933599292307692,170.02033002774888,17.198501872659175,6.224033707865169,2.7827715355805243,3.1647940074906367,159.65651313319574,61.172339131086126,1.28164686083336,6.299558052434456,2.933017755583298,7.820072284644195,173.03076840186705,16.396551724137932,6.182831034482759,2.6724137931034484,3.6367816091954017,161.0117614483374,58.352798241379325,1.2268491552918555,6.249300689655172,3.178842060451256,7.782536386206898,164.31966544520358,10.933972983209193,0.16478916803433907,0.025571355811163293,0.6314859234945083,4.385136556832049,1.4714770333417124,49.89243277389218,0.28935798115930206,0.15160611033960353,1.683254511414069,0.10873454437571012,50.18293229593226,1.6910568996500008,-0.005832103726426061,-0.013867871695503794,0.15694343342636197,0.7098378103153995,-0.27332141698632867,7.476311895603391,-0.02215626606142052,-0.00018728413831257983,-0.2581742007175955,-0.0021154532927553,0.04359143112877473,0.7377531485997321,0.016974804631407738,0.001406045859658499,-0.04274816148649199,0.2899552509228767,0.07522385138145067,3.3938652616554874,0.025939356585245387,0.014449228381731665,0.24307199606237215,0.011254523499971613,2.2461558072870402,-1.6905102661509686,-0.006945143519528039,0.0013257719533051528,-0.058554360675305006,-0.13867191036740326,-0.18706895147115865,-7.656494216639886,-0.045371145365262065,-0.007712611871779249,-0.01203189896694505,-0.007247414957936883,-7.440244569036122,-0.04336624163615696,-0.024729586011867158,-0.0036043663469953143,-0.010317384168665579,-0.34508162549621957,0.07336638992500377,-0.13790028252139916,0.010069002131821218,-0.0206160564070193,-0.3026012346458313,-0.01586894446559776,2.628760176716259,-0.42025354452471403,0.018692941238940587,0.0022952581622781285,-0.02657682381760226,0.29137831460011926,-0.11607332008132115,-1.856172216868508,-0.02336152231862207,0.015932723628665723,0.2898143954251478,0.012669980001007827,-2.450791255739273,-0.49672147067677924,-0.0020921325978654265,0.0017738824500475564,0.0007526244743767717,-0.31051348951235314,0.09067555246805707,-2.1441102836588235,0.013007074873328486,-0.0034084007458265457,-0.12181745964592015,-0.002400933571907177,0.8715658786391673,-0.7416571981652148,-0.027582666330008828,-0.0028039372016495133,-0.019526154105121398,-0.6893957459542613,-0.057114782320280014,-3.5531022047721232,-0.008182658513111056,-0.025115856583764643,-0.3345177077861994,-0.01644041745570845,-3.4904098318583556,-0.03234570695967493,0.012123803682049886,1.8169971756073018e-05,-0.015910565106286644,0.2519291799624742,-0.023421709836358797,-0.1615997999286054,-0.004009712824278399,0.010224095007161225,0.27098329012604555,0.008630364574309225,-1.2079533593939409,,,0.47291666666666665,1.1041666666666667,0.4375,0.010416666666666666,0.6666666666666666,-0.22916666666666666,1.2272840488465966,0.01811103958304409,0.02886103958304409,1.0578810045638105,0.20801381701807276,0.27208792594832265,2.2851650534104073,0.4801017429663954,2.0459656189326307,1.4254726321073372,0.12985836395167366,0.4022328172442117,0.0,0.6204929868252932,7.901385803505631,2528.0,567.3719000000002,299.0,704.8888888888889,14468.73014481941,10006.329973999997,137.144869098809,572.3961,412.1640089163237,705.9038179999999,19337.89604223793,2801.0,609.1247999999999,381.0,593.6666666666666,13689.519089036557,10727.416335000002,172.14012837600004,623.2640999999995,265.3796296296296,747.4444959999998,24850.922647298306,4144.0,1119.4387999999997,613.0,989.3333333333334,26611.09728532647,15534.138981000002,261.4465983664331,1134.4399999999998,576.320987654321,1379.1466340000002,37044.339045794004,4211.0,1388.161,667.0,862.0,34786.165097580895,15085.208147,298.78719142777203,1406.9503999999997,642.2469135802468,1736.130854,40230.41244386422,4328.0,1565.9209,683.0,844.3333333333333,40953.08764561564,15437.817223000002,298.7806835003929,1580.7677999999999,723.800925925926,1973.0412700000002,40275.413783633245,4563.0,1488.6507999999997,663.0,1026.0,37326.40568281431,16528.861473000004,302.24864839395997,1504.6603000000002,895.6450617283951,1857.832098,41471.122270210704,4570.0,1648.9610000000002,713.0,974.3333333333333,42181.677005269055,16361.706696000003,323.217019981299,1663.9994,899.1820987654321,2062.735816,44205.28580721471,4592.0,1661.817,743.0,845.0,42628.28900656327,16333.014547999996,342.1997118425071,1681.9819999999997,783.1157407407406,2087.9593,46199.215163298504,4755.0,1793.0210000000002,775.0,1054.6666666666665,46693.41082001785,16922.311490000004,355.7862550346381,1812.2971999999997,921.8641975308642,2256.9355520000004,47652.70297910904,973.1235955056181,14.666235955056178,2.275850667193533,56.20224719101123,390.27715355805236,130.9614559674124,4440.426516876404,25.752860323177885,13.492943820224713,149.80965151585212,9.6773744494382,4466.280974337971,158.95934856710008,-0.5482177502840497,-1.3035799393773566,14.752682742078024,66.72475416964755,-25.692213196714896,702.7733181867188,-2.082689009773529,-0.017604709001382505,-24.268374867453975,-0.1988526095189982,4.0975945261048246,126.15578841055418,2.902691591970723,0.2404338420016033,-7.30993561419013,49.58234790781192,12.863278586228065,580.3509597430883,4.435629976076961,2.4708180532761146,41.565311326665636,1.924523518495146,384.0926430460839,-371.91225855321306,-1.5279315742961685,0.2916698297271336,-12.8819593485671,-30.507820280828717,-41.1551693236549,-1684.428727660775,-9.981651980357654,-1.6967746117914349,-2.647017772727911,-1.5944312907461142,-1636.8538051879468,-10.84156040903924,-6.18239650296679,-0.9010915867488286,-2.5793460421663945,-86.27040637405489,18.341597481250943,-34.47507063034979,2.5172505329553045,-5.154014101754825,-75.65030866145781,-3.96723611639944,657.1900441790648,-97.91907587425837,4.3554553086731564,0.534795151810804,-6.192399949501326,67.89114730182779,-27.04508357894783,-432.48812653036236,-5.443234700238942,3.7123246054791137,67.52675413405944,2.9521053402348234,-571.0343625872506,-129.1475823759626,-0.5439544754450109,0.46120943701236466,0.19568236333796066,-80.73350727321181,23.57564364169484,-557.4686737512941,3.3818394670654066,-0.8861841939149019,-31.67253950793924,-0.6242427286958661,226.6071284461835,-198.02247191011236,-7.364571910112357,-0.74865123284042,-5.213483146067413,-184.06866416978778,-15.249646879514763,-948.6782886741569,-2.184769823000652,-6.70593370786516,-89.31622797891524,-4.389591460674156,-931.9394251061809,-9.38025501830573,3.5159030677944667,0.005269291809261175,-4.614063880823127,73.05946218911753,-6.7922958525440515,-46.86394197929557,-1.162816719040736,2.9649875520767552,78.58515413655321,2.502805726549675,-350.30647422424283,0.7049567409897515,0.5980233992001035,0.4348091257054147,0.3448744438776907,0.28730055364202645,0.2041143539953402,0.18001926366378823,0.11260013173094581,0.11538329544433518,0.06504985371689104,0.07672983824004871,0.03752154515393539,0.04821223607325741,0.020750841715133507,0.030667212359224084,0.011570048094399543,16.013266783088845,5.693487772546462,3.581938942423788,2.187478986266352,0.5003704460491772,-0.5180877403550418,4.048512155263255,0.9713330426417911,6.029994814261325,0.6447936794525185,14.548413259687043,10.311619835538286,32.06679012492937,11.70479037711957,2.954809655890342,0.7402937553630422,3.537815523266601,2.241137548537307,7.014590821377216,0.2975808075903468,3.76890137938793,2.4388761811302304,24.44258383295928,14.699949783755283,0.251421605943503,0.5896465433091498,0.8307410238089695,0.8937489054860726,0.8970958057525629,0.8970958057525629,1.0814819528149402,1665.9473581376078,0.0,2.0,9.0,0.0,12.0,5.0,1.0,2.0,0.0,4.787627040215814,2.5167017705456156,0.8979342355156588,0.47488384838753195,0.4524119382751737,0.4524119382751737,238.0558278683999,4826.302770347839,115.64974459693919,54.228121015144254,116.13664355820814,,20.0,1651.0,40.65633155832578,18.318861563241466,49.64145427320447,36.88312105180356,16.26500318339822,16.437950128219455,17.403152946396347,50.416742643384225,10.30076712495354,28.421177722800294,22.7,53.0,21.0,0.5,32.0,0.0,0.027083333333333348,-11.0,0.17806473251719013,0.043678411694120345,-0.13438632082306978,0.023833333333333484,0.18609302325581423,0.0,0.6213483146067404,0.8958333333333338,0.4432835820895503,0.5776699029126201,0.8720000000000003,58.909634344636636,0.8693298999861163,1.3853298999861163,50.77828821906291,9.984663216867492,13.060220445519487,109.68792256369954,23.04488366238698,0.5279069767441857,0.1248164464023495,0.03671071953010279,0.3259911894273128,0.5151515151515151,0.37948342398649526,-1.8544081863935944,-0.07678495816023517,-0.020836047038130277,-0.06868178468124425,0.6205165760135046,3.032256340117022,0.040311198320876956,0.03407029595637103,0.04890736032446811,-5.964856124389669,0.7845322136228384,0.7838911054018685,1.5726480459262755,0.9911014317677185,0.6408611749293733,1.4200451446435196,0.7810736167686148,1.2457085895969155,0.7369847343554464,0.7860834847753191,0.7895391986747674,1.0382292876807613,0.8731033044770927,0.9382626413974801,1.0763399882543874,1.2910765518354061,0.9631648461635796,1.05673256471585,0.8711159947024777,0.9255546707393814,0.9257952223333696,0.6675422219478679,0.954586508560241,0.9239529836315932,1.2208110105302048,0.9984320479278628,1.0006916068008271,1.192123150739704,0.9794179366115187,1.2050326149875503,1.2096512032764055,1.243038438365815,1.0016450212845334,0.8825096992736475,1.0209769655625531,1.1438883105855302,1.0375989285054497,1.2435845199744116,1.1998425276513662,1.077252299080368,1.1281555410540862,0.9354611913888884,1.0337658052787837,0.9418818196708162,1.2237131511101933,1.4792254074157902,1.2357972272835085,0.9108157538705203,1.0857475129417415,0.9559465279312074,0.9614970925714005,1.182730341339859,0.9361699942706201,1.11646593637465,1.0778159500953846,1.1137258759819402,0.9533994195977247,1.37493677963843,0.9591694263839996,1.021808273015891,0.9799529977689038,1.106547880275811,0.9231853981996564,1.0448528280995293,1.0924255085438916,0.9291900000574602,0.9823080150814039,0.8762486288906041,1.1067184025761794,1.6432351644027177,1.1181136381959784,0.9370502259243093,0.9473181846172792,1.1407413649787976,1.0745811320977408,1.0673064107690258,1.1001923577256578,1.031756698313654,0.9590945659353821,0.9522142232744506,1.1367206496612463,1.4447356255615682,1.127301064338504,1.0489909874744436,0.8809172681348222,0.8796982476282608,0.9848418778718029,0.9961560203504806,0.8880141826135031,0.9827096136957191,0.8911448138057639,0.9223061977043991,0.8888240085767559,0.7974246368592797,0.8700692216845258,1.0081940329452639,12.0,0.48802163044587293,6.000000000000002,3.520833333333333,2.8805555555555564,1.895833333333333,1.3961451247165528,1.0920847505668934,0.9672382842025697,0.6306481481481483,11876.404325805863,13322.901167645841,5193.874809847961,4778.148607698669,20.65433104104177,0.4893401920069568,10.547336723643143,0.9582508440014593,0.0,0.5151515151515151,1.688106390750583,3.959031660420782,5.577799195450739,6.000849582578866,6.023321492691224,6.023321492691224,0.22641509433962265,0.006421337242708853,0.07894736842105265,0.048900462962962965,0.04115079365079365,0.024305555555555556,0.017451814058956912,0.014001086545729399,0.011795588831738655,0.007598170459616244,0.4769872720687376,37.74724101103595,17.21814404432133,9.914618908788006,283.66456635704196,0.0,4.806688862886837,409.5392451274717,,320.85112327363254,335.6182002262772,342.63226848726777,320.9224870229321,480.0016785981337,338.64457457634046,339.27917511762564,425.2756346893419,0.15466079002087169,-0.03539130512031444,-0.5423205479566207,0.24853037508400905,0.16187359301490195,-0.18574630170449752,0.14984861390674883,-0.07657043352546301,-0.0012353337071510913,-0.15337799421711246,-0.0194552090589149,0.0008686505378305318,0.06747347462195728,0.10300922587260404,0.054985190071332984,-0.0676945596030594,0.0661222853986442,0.05112132209812199,0.06802364753461043,0.08964451742896572,0.09530769142064814,0.14440596737695488,0.10350458140592281,0.04475935750508365,-0.15461079597937627,-0.042145631308004396,0.05184597809735145,-0.092724728290502,-0.03162316807474381,-0.1271300517999432,-0.1534600297271211,-0.15679935691935726,-0.05087269803639643,-0.007147997456924853,-0.06665236884512904,-0.14826245156740703,-0.0039661924995381395,-0.15006803121133522,-0.1409532749695584,-0.016338264694122362,-0.07869347305925557,0.049859011226556005,-0.0027639518631282283,0.03479773425111736,-0.13598433704841145,-0.17977152747484512,-0.1459420698059473,0.05238355067046056,-0.0384355755378286,0.11343549738078243,0.08975895448125293,-0.042086169823915935,0.06644680520750293,-0.07888218263095795,-0.03720348184424091,-0.08073571091775313,0.10509288572192643,0.17217502965827816,0.11652212343143946,-0.048837147285192214,-0.04542918401568871,-0.01269581382575743,0.0693699021337445,0.0011918309599237124,-0.0708104492273046,0.061622132329264855,-0.04297465897034385,0.044951498559729096,-0.022481948373925014,-0.07237019643784214,-0.022080688208994916,0.017367775033540936,-0.0678305314366648,-0.16738154976461256,-0.10965148748293752,-0.030920964947354378,-0.15721192191385278,-0.038814593110279676,-0.07121525263910157,-0.028278668797478944,-0.16566519995469942,-0.1987326964032181,-0.151197740792493,-0.06955372418803997,-0.0029582757346617527,0.07357160562594445,0.0007105595765141571,-0.025195439065753004,0.05745070346098303,-0.015917142643516687,-0.0032389641263026905,-0.01385727398364349,0.0674385417860722,0.16098771058596353,0.07937095450079558,-0.02407099992225555,17.413385919399257,36.31125902313967,13.629814414082999,18.8181487010753,42.40011972180196,48.554324033495334,50.149028486641846,50.17168017203509,50.17168017203509,98.20634970876628,68.42268634115219,6.233201469680336,19.307175227722162,0.0,29.783663367614075,24024.302963042548,20590.240831319432,7391.44143814883,220.0,76.0,98.0,126.0,145.0,155.0,176.0,192.0,203.0,703.2233365120012,53.0,5.556828061699537,6.408528791059498,7.29505641646263,8.164225652265827,9.050523670522297,9.927350552800656,10.814061977414173,11.695272021451688,12.582805576314923,0.6966292134831461,0.996808988764045,1.1271866077769297,0.6584058246233088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6699085850770369,0.9827274730116768,1.0185438267715248,0.628128777812591,8.0,1.0,0.0,0.0,1.0,0.0,7.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,1.0,8.0,1.0,6.0,0.0,6.0,1.0,0.0,0.0,0.0,38.84449372164733,18.460360185545127,17.789050395903022,16.816233459507412,0.0,0.0,18.19631268934797,4.305215991296234,11.336785877934737,25.980208536304467,55.51220625724747,24.535942650752677,46.8745123593025,374.7959145857128,-1831.5019004871058,-75.8364840228573,-20.578673039180966,-67.83340372174467,612.8517424541127,2994.800869860733,39.81326057408188,33.64944797596329,48.303239836463455,0.5,0.7708425166944329,0.099715052674351,94.58810232983016,0.08335395856483006,38.543849346886724,0.22915748330556696,10.0,0.2641509433962264,0.26068188395127634,0.6113642111160775,0.8613386043313929,0.9266671716107586,0.9301373438085362,0.9301373438085362,3.8657200000000023,,4.178571428571429,3.3649657866029945,2.233289624616371,4.170873731299377,-11.529212235868009,3.0940177478580178,3.048449189844879,-4.632760914967608,174.48929999999953,46.74003928604175,0.0,14.605983116249774,11.835812092322787,69.65502061893436,33.096219046950814,64.1096354330954,0.0,17.248535499851716,4.672828834461906,0.0,6.018593214496234,3.713572066704308,7.527793987721444,6.008813185442595,9.11679862756782,8.014666370464942,10.753574377286979,62.0,13.684254678324017,4.417253146374842,0.0,0.0,1.5579227515993088,0.0,4.0548185341389065,0.0,88.71600000000001,0.0,41.051385725443765,0.0,0.0,-4.067033965507786,0.0,0.0,-0.728937479588424,100.31960809214675,19.527377465406477,4.794537184071822,17.248535499851716,86.54277834328208,37.26158360224666,18.75954929201341,36.533299205705475,52.740115725214956,0.0,0.0,0.0,58.59811839147448,59.62186407185628,61.55901311822514,819.0784902549435,,642.627111910434,671.0961935447792,685.1714832401765,642.772051022208,963.4509833057506,677.1602317465201,678.4313315190077,851.5164279026354,61.55901311822514,819.0784902549433,,638.9708619104342,667.8714346659511,683.0312473499195,639.1225365073212,971.589100455812,674.1951314048231,675.5099010454064,855.1840302936514,4.89923094011227,560.7077056322497,,443.4098625154967,463.62056518963675,471.90233852340583,443.49614623405944,639.3023988883399,467.21530139840604,467.78977077160107,573.9515126992186,1.2824794399630237,17.064135213644658,,13.388064831467375,13.981170698849567,14.27440590083701,13.391084396296,20.07189548553647,14.107504828052503,14.133986073312661,17.739925581304906,2.461626475387086,409.5392451274717,,320.85112327363254,335.6182002262772,342.63226848726777,320.9224870229321,480.0016785981337,338.64457457634046,339.27917511762564,425.2756346893419,87.46274509803924,0.0,5.725163169907537,0.0,0.0,0.0,11.649085429257443,90.6504005826657,1.8582833689444898,2.815613898181817,33.52539271683819,0.0,-3.1982442305160554,1.2383755899352802,0.0,0.0,0.0,55.9034612253206,761.3208055599393,150.2414687768019,352.3538177774496,496.42412839511576,534.0756128495191,536.075612849519,536.075612849519,1492.0,182.49465271999122,226.32685147988616,103.82664066414621,191.6,154.98,1.0,8.449396033350412,6.727920454563199,4.846915421111914,6.805269320250354,,6.808161247775351,6.814598834467743,6.811070090112528,6.808140593058863,6.788282064818475,6.8143189840615115,6.814175525343831,6.8047897437589,0.10097740460649822,0.14177644417188237,,0.14183669266198648,0.14197080905141132,0.141897293544011,0.14183626235539298,0.14142254301705157,0.1419649788346148,0.14196199011132982,0.1417664529949771,3.1469584248851854,3.486313130052701,,3.486737993947815,3.4876831162479554,3.4871651608428094,3.4867349601260433,3.4838138178724862,3.487642049097944,3.4876209963371148,3.4862426562231024,493.31000000000165,3073.2569043300296,392.3752478518568,,390.82376520228064,389.97111350234906,390.7389045912004,390.82778921539415,395.13716935289153,390.04323803530696,390.05998542902256,392.1733180344038,64.02618550687562,8.174484330247017,,8.142161775047514,8.124398197965606,8.140393845650008,8.142245608654045,8.232024361518574,8.125900792402229,8.12624969643797,8.170277459050078,9.599109077047897,7.540834564746631,,7.536872647907726,7.5346885863516775,7.536655491652206,7.536882944089166,7.547848886717252,7.53487351764947,7.534916454002543,7.54031979783304,62.5799362893283,17.667739305342337,17.381307628251324,1.6351612904161397,1.3240244338047469,10.831432393622825,-2.003068907796881,6.6759121142730224,-4.067033965507786,606.6676873755991,370.1663069086779,-1808.8785608800777,-74.89972576331319,-20.32447821213571,-66.99550225481771,605.2815875475791,2957.808062418785,39.32147352510803,33.233798454143646,47.7065816519159,9442.0,72.0,4.002448089683859,2.5248721076532727,0.16666666666666666,0.04564354645876384,0.9592756949471919,0.3791240946168653,0.16666666666666666,0.03803628871563654,0.0,0.0,0.0,0.0,0.4497784354582114,0.23211666135318168,0.8747247055843104,0.3725194898799728,1.0394288716216717,0.36294166084974055,33.83792356750807,28.705123161604966,23.04488366238698,18.278345525517604,21.83484207679401,15.512690903645856,17.641887839051247,11.03481290963269,14.538295225986232,8.19628156832827,11.125826544807063,5.4406240473206315,7.472896591354899,3.2163804658456936,5.397429375223439,2.0363284646143196,8.26789921765998,4.43853601226113,12.16658587484143,6.087091845709563,17.440430381896643,7.538112642055905,161.95105412121745,62.61305770771583,35.845891594804186,30.793928821643746,30.693350542296173,30.693350542296173,258.0,303.0,99.56851299999998,64.9514870000001,0.43820224719101125,553.15,14.979166666666668,10.277777777777773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,17.0,17.0,89.0,0.0,0.0,94.0,17.0,3.0,11.0,83.0,20.0,53.0,74.0,0.0,0.0,0.0,33.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,12.0,2.0,4.0,48.0,15.0,0.0,3.0,10.0,0.0,6.0,14.0,2.0,0.0,0.0,1.0,3.0,4.182050142641207,6.916188370300389,4.738389029774314,5.178266135480206,5.626946425708224,5.994273099430021,6.13366915591684,6.397398295387186,6.566232811384942,6.705179993160915 +460612,N[C@@H](Cc1ccc(N(CCCl)CCCl)cc1)C(=O)O,0,34.86486486486486,6.15507027027027,2.810810810810811,5.654320987654321,165.04178158014278,143.55286013513518,1.5532416293860003,6.318218918918919,4.43196797620666,7.843703081081078,216.0156470188187,26.37837837837838,6.346162162162162,3.4864864864864864,5.3003003003003,149.33517405730404,100.58748489189188,1.8024501955675678,6.521337837837838,3.007007007007007,7.83714551351351,255.3830672871788,20.984375,6.193968750000001,3.0625,3.9392361111111107,156.9622953743805,76.54751840624998,1.5292010256108437,6.360564062500001,3.0139371141975313,7.794216562500001,205.7502627022947,17.738095238095237,6.12127619047619,2.6666666666666665,2.771164021164021,162.18729689287733,63.33649751190476,1.336784610546262,6.250523809523812,2.9562022339800116,7.747961809523811,176.47278849428378,16.444444444444443,5.958744444444445,2.388888888888889,2.1481481481481484,158.70052309463037,58.832270833333325,1.3399972341192776,6.080944444444445,2.6271033379058073,7.592470266666665,171.47972678707234,16.5979381443299,5.733577319587628,2.082474226804124,1.8808705612829326,161.62858974242096,60.025772041237126,1.270081624801773,5.896170103092785,2.3306605574646815,7.4648747628865975,154.7082436689156,18.373493975903614,5.890034939759036,1.9397590361445782,1.722147850661907,167.52818896152286,66.53328760240966,1.1854341486755904,6.07291686746988,2.4893914937298347,7.726543578313254,140.67805744806992,15.346938775510203,5.958528571428572,2.183673469387755,2.1473922902494333,166.59889218255398,53.202004408163255,1.161035690446653,6.101053061224491,2.436088015453095,7.722853469387755,142.33604936351205,17.783783783783782,5.956702702702702,2.4054054054054053,2.651651651651652,163.88329953396183,65.76523232432432,1.2565253594186483,6.06678918918919,2.352352352352352,7.584777837837837,160.13013758194055,16.165084002921844,0.11941650840029212,0.022989930607831173,0.5200876552227903,3.234567901234567,1.3432885691505312,75.51310147845145,0.27229033345972103,0.13157107377647917,1.6669660428975301,0.09425092622352078,52.31054613344627,-0.26880934989043137,-0.013517896274653073,-0.013020887612028768,0.1322132943754565,0.7597597597597602,-0.0779861868359781,-1.1556958392987444,0.008652927555880294,-0.012859386413440529,-0.1613573032491951,-0.010265735573411244,0.9930034497433108,-2.4104387326515706,0.005338305788896987,-0.00021215164493849329,-0.06231738495252013,0.16917438271604945,-0.11254903749252043,-11.338995144836552,-0.035780445219199805,-0.0023688778305332664,0.34250661777754837,0.0006729403305332364,-5.776966946938709,-1.5544018922397296,0.0009560141222303288,0.002905045910338543,-0.05161918675432191,-0.5066137566137566,0.19489951665432423,-7.389028799558245,-0.019875016942383767,-0.0019797932101986125,0.15057872114929174,0.003138546105951512,-3.6757454816768482,-0.41133024916808686,-0.02023422611800988,-0.003334589777514647,-0.06273029786543301,-0.6537722908093279,-0.11141050869395273,-1.9298305261991744,0.0017696085196937618,-0.0191036263290317,-0.2439515217462918,-0.010212113010307602,-4.993851725995814,0.8814470642277834,0.01099062450580983,0.0018423201476706133,-0.011310837167621775,0.26295023545882656,-0.2328834227791884,4.15363121254885,-0.00923835511147019,0.011476961888051366,0.1479140656697365,0.003273142319248747,-0.44005067357218924,0.23836764149365874,-0.0070452612495269405,-0.0010782356941175003,0.03640860006864567,0.095790569686152,-0.052162269102097876,1.1468212421607533,0.0023839961136811697,-0.007605753034049993,0.0019990821759792925,-0.008281700889753317,0.6790028139493437,-1.695144675839657,-0.006823733993232054,-0.0017276430375643523,-0.03525588467673407,0.1332829428067523,0.01290049352691729,-7.78435471507581,-0.007810359131726503,-0.01223803461486858,-0.09532992790456606,-0.012349643267095003,-1.4625095388933744,2.473338203067933,0.04189481373265157,0.007675888305925153,-0.13075237399561723,0.6756756756756757,-0.07647144796387706,11.517391954711464,0.019230828566670556,0.0394628195763331,0.23261925589252916,0.025826778670562434,2.2923471040279444,,,0.49448621553884714,1.0263157894736843,0.42105263157894735,0.02631578947368421,0.6052631578947368,-0.18421052631578946,0.8664672574912485,0.017647168529134324,0.022173484318608005,0.7049526195783156,0.20250824697024664,0.2753295088360451,1.5714198770695642,0.4778377558062918,1.9532788177374458,1.387352381574544,0.20709498748653846,0.1777510107238136,0.18108043795254916,0.5659264361629013,8.218230626378391,1290.0,227.73760000000001,104.0,209.20987654320987,6106.545918465283,5311.455825000002,57.469940287282014,233.7741,163.9828151196464,290.2170139999999,7992.578939696292,976.0,234.808,129.0,196.11111111111111,5525.401440120249,3721.7369409999997,66.690657236,241.2895,111.25925925925927,289.9743839999999,9449.173489625615,1343.0,396.41400000000004,196.0,252.1111111111111,10045.586903960351,4899.041177999999,97.868865639094,407.07610000000005,192.891975308642,498.82986000000005,13168.01681294686,1490.0,514.1872,224.0,232.77777777777777,13623.732939001697,5320.265791,112.289907285886,525.0440000000002,248.320987654321,650.8287920000001,14823.714233519837,1480.0,536.287,215.0,193.33333333333334,14283.047078516733,5294.904374999999,120.599751070735,547.2850000000001,236.43930041152265,683.3223239999999,15433.17541083651,1610.0,556.1569999999999,202.0,182.44444444444446,15677.973205014834,5822.499888000001,123.19791760577199,571.9285000000001,226.0740740740741,724.092852,15006.699635884814,1525.0,488.87289999999996,161.0,142.93827160493828,13904.839683806396,5522.262871000002,98.391034340074,504.05210000000005,206.61949397957628,641.303117,11676.278768189804,752.0,291.96790000000004,107.0,105.22222222222223,8163.345716945145,2606.8982159999996,56.890748831886,298.95160000000004,119.36831275720165,378.41982,6974.4664188120905,658.0,220.398,89.0,98.11111111111111,6063.682082756588,2433.3135959999995,46.49143829848999,224.4712,87.03703703703702,280.63678,5924.8150905318,598.1081081081082,4.418410810810808,0.8506274324897534,19.243243243243242,119.67901234567898,49.70167705856965,2793.9847547027034,10.074742338009678,4.868129729729729,61.67774358720862,3.487284270270269,1935.490206937512,-9.945945945945962,-0.5001621621621637,-0.4817728416450644,4.89189189189189,28.11111111111113,-2.88548891293119,-42.76074605405354,0.3201583195675709,-0.4757972972972996,-5.970220220220218,-0.379832216216216,36.7411276405025,-154.26807888970052,0.34165157048940714,-0.01357770527606357,-3.9883126369612882,10.827160493827165,-7.203138399521308,-725.6956892695393,-2.2899484940287875,-0.15160818115412905,21.920423537763096,0.04306818115412713,-369.72588460407735,-130.5697589481373,0.08030518626734762,0.2440238564684376,-4.33601168736304,-42.55555555555556,16.371559398963235,-620.6784191628926,-1.6695014231602363,-0.16630262965668346,12.648612576540506,0.263637872899927,-308.76262046085526,-37.01972242512782,-1.8210803506208892,-0.30011307997631825,-5.645726807888971,-58.839506172839506,-10.026945782455746,-173.6847473579257,0.15926476677243856,-1.7193263696128531,-21.955636957166263,-0.9190901709276842,-449.44665533962325,85.50036523009499,1.0660905770635536,0.17870505432404948,-1.0971512052593122,25.506172839506178,-22.589692009581274,402.90222761723845,-0.8961204458126084,1.1132653031409825,14.347664369964441,0.31749480496712845,-42.68491533650236,19.784514243973675,-0.5847566837107361,-0.08949356261175252,3.021913805697591,7.950617283950616,-4.3294683354741235,95.18616309934252,0.19787167743553707,-0.6312775018261494,0.16592382060628127,-0.6873811738495254,56.357233557795524,-83.06208911614318,-0.33436296566837065,-0.08465450884065326,-1.7275383491599696,6.530864197530862,0.6321241828189472,-381.4333810387147,-0.38270759745459865,-0.5996636961285604,-4.6711664673237365,-0.6051325200876552,-71.66296740577535,91.51351351351353,1.550108108108108,0.28400786731923067,-4.837837837837838,25.0,-2.8294435746634514,426.1435023243242,0.7115406569668106,1.4601243243243247,8.606912468023578,0.9555908108108101,84.81684284903395,0.7500374935066874,0.6352683073994546,0.4778377558062918,0.3732914778037534,0.31563494177373025,0.20567681850084976,0.20429284437093745,0.11147245227678669,0.13066488543943658,0.06987775674537906,0.08881051878246768,0.04018638639541922,0.05850622789319812,0.02388061209267378,0.03566748985374962,0.011332696277976296,17.002123414281634,5.6929652348199244,3.554757823551111,2.19230471137162,0.4478997068846777,-0.43337595695331654,3.13213710296552,0.9727389891816102,6.0220134406200705,0.7670708668333343,14.543509650351822,10.954033003472885,35.45152709994508,11.704500954164693,2.2052936510604666,0.741571226237467,3.500816082760507,2.242093379525711,7.008291910622367,1.2575010333489742,3.7137425819675265,2.437963585504155,22.45691235603266,14.70143912981916,0.3207667501050006,0.6593169872228656,0.800838599982173,0.8411958780878906,0.8411958780878906,0.8411958780878906,2.3398529593505195,392.1346196779266,0.0,1.0,4.0,0.0,5.0,2.0,1.0,0.0,0.0,3.490928820589076,1.6771283190543311,0.9189189189189193,0.7027027027027026,0.7027027027027026,0.7027027027027026,58.89149450766453,958.7954134480008,64.65342237384252,25.913389552648674,56.693895080106955,,11.0,317.0,12.011146117099809,4.794537184071822,0.0,18.180828512866686,24.340350578205708,0.0,0.0,24.26546827384644,4.899909730850478,34.04207465246792,9.395238095238096,19.5,8.0,0.5,11.5,0.0,0.005513784461152862,-3.5,0.17220077220077212,0.042632665888479804,-0.12956810631229232,0.08113465481886528,0.1614936992439091,0.0,0.6055341055341058,0.8949874686716791,0.4333333333333337,0.562901439645626,0.8138528138528138,16.462877892333722,0.33529620205355215,0.4212962020535521,13.394099771987996,3.847656692434686,5.231260667884857,29.856977664321718,9.078917360319544,0.5525063007560909,0.2655854029396858,0.0,0.2554485554992397,0.46153846153846156,0.44146929538048435,-0.8413711640907093,-0.08164098391199044,-0.022739761191640794,-0.07011426367422577,0.5585307046195156,1.0644718308690322,0.04687368188959338,0.028769508942406284,0.0425788732347613,-3.434406467360395,0.6100316312697694,0.8886746610619447,1.601667961115083,1.01123595505618,0.6706628229219523,1.4053207139380373,0.6138026896183514,0.9086124308923851,0.8069684345172793,0.8298833664246618,0.7983779649552749,0.964286266634425,0.9804352123813826,0.750437378273465,0.9658751096880956,1.505398525280899,0.9668222611924904,1.2669760915340376,0.9835762285833998,1.095286091621628,0.8114839978225722,0.4195093341815546,0.7613140288371845,1.0889965571440965,0.8677361048350654,0.9152854535305238,0.8806495836803921,1.291733547351525,1.2266276636505646,0.9591272538386441,0.8723538451557431,0.9762757046053963,0.8923476831738951,0.7282507435816916,0.7954508639753934,1.016972826269734,0.6754631721644825,1.036164403001691,0.8936948166162119,1.0185393258426967,1.1409737982257069,1.1335795763816219,0.6807321495934144,0.9031416294292189,0.954493873000786,1.0972022889118755,0.8865995887855678,1.0701693207865848,0.8891955222420467,0.521601449755905,0.499800630292981,0.7618151279972201,0.6778345198113831,1.1177146132293236,0.8912145905756986,1.0378555873506183,0.619101833468279,0.4191701831091823,0.6334696607150834,1.035775661513153,1.2745006233701184,0.9962901743626303,0.8236762269794525,0.7663462840124544,0.9197963713736731,0.8669647706609505,1.26990094137801,1.0549104639683482,1.0934453333139265,0.881580412346698,1.1577199313640123,0.9908496757600765,1.1712441325377867,1.0880705898555048,1.0260125903179762,1.1453795001146527,1.00734306514023,0.8692227915100594,1.1681172679389968,1.0163723450115865,1.1372435179329536,1.0824242418410328,1.1886982572753122,1.0013453489462625,0.563669227293267,0.4515601793967747,0.6603206050941787,1.3651685393258428,0.6422083317069908,1.1031063969719126,0.5691288701071459,0.8121663273189234,0.4789885454650432,0.46574132501383847,0.41405009356076183,0.9139188716645585,4.0,0.06611570247933884,2.222222222222223,0.875,0.8222222222222224,0.576388888888889,0.3232653061224491,0.2361111111111111,0.1481481481481481,0.12000000000000002,3676.595236914819,4211.1539934729335,1789.0892639792041,1599.8486257919822,11.194987044293919,0.4410207725678243,6.257765209132631,0.7889752443821106,1.0,0.46153846153846156,1.7185245450398738,3.532325046574619,4.290534446710031,4.5067506629262475,4.5067506629262475,4.5067506629262475,0.21052631578947367,0.008264462809917356,0.09259259259259264,0.035,0.035748792270531404,0.02619949494949496,0.020204081632653068,0.02361111111111111,0.014814814814814812,0.012000000000000004,0.478961665970589,17.05263157894737,9.03125,5.877551020408164,122.64801059349246,1.0,3.816336516355756,88.22098980010455,,71.17957651664362,72.5177330778323,71.96727860857817,71.12812607199089,91.76584390874706,72.78317141156211,73.19110524011786,85.84335256764865,-0.016629010393131517,-0.11319956056109244,-0.5663735064773705,0.2542134831460674,0.2348875593150404,-0.05805616799471093,-0.01530457386429209,0.03177831341251155,-0.09773718526677701,-0.09679699471785452,-0.10891920095369183,0.01898285380561923,-0.14911390081337547,0.04470324798814774,-0.00922802458856605,-0.11982092696629222,0.052302003816793924,-0.08378619462510144,-0.15015930908456024,-0.13140549194153703,-0.01800454889163296,0.20546706349350785,0.007139880290802923,-0.1104359899474465,-0.09615798420588294,0.00800571156397996,0.1263616650216849,-0.09925093632958806,-0.15662486368593243,0.1450913237336448,-0.09785095109180214,-0.07299200338789776,-0.015047328819114178,0.09033100691574672,0.03329989668757517,-0.07026777109724446,-0.02544559923683284,-0.16944245304998706,-0.1450456651825982,-0.1206148564294632,-0.20212044105173882,-0.08293862633284113,-0.025556234460186678,0.00649897665190356,-0.14519624854233606,-0.14634462578629007,-0.10835026688320351,-0.09546548631429502,0.05452783691494963,0.09203605643005842,0.08013595948145466,-0.021747943936059284,0.08129377508459906,-0.17336812664642803,0.05500543788065887,-0.03392832567387776,0.0872301301390085,0.08873250076086216,0.03472795918722672,-0.008412274504831256,0.01474583376433885,-0.05899738104811065,-0.046900345743114843,0.07000473805333697,0.02961464177319967,-0.038831767276248215,0.015187049925210824,0.008755346116735452,-0.057807182200025994,0.0011992338923140125,-0.0878686419496064,0.012980227968126746,-0.10486457574444147,-0.05714230037909366,-0.07514781436425289,-0.06778835129557437,0.04120579529521732,0.009603665082235684,-0.10308614747200083,-0.028683938326006946,-0.09301462900317503,-0.05718768436270184,-0.13102941012810002,-0.027958215828266346,0.15300497062810664,0.35082933083437134,0.33388044691663743,-0.2514044943820225,0.20889209820507534,-0.05692853324303659,0.1525217707816979,0.07062618904727042,0.2999353767027463,0.1395464873946616,0.27402148398322296,0.04382189201733961,11.577112392154326,10.963149083076658,2.102578844744821,21.772333414078645,35.85067666673874,38.993978769102256,39.21192471504821,39.21192471504821,39.21192471504821,37.11229753701147,26.35969524991634,3.9348047622442306,3.3772692037524585,3.440528321098434,10.752602287095124,4616.935219487279,4543.435994933642,736.3962655182086,16.0,24.0,28.0,31.0,36.0,33.0,34.0,36.0,28.0,304.07453317600044,19.0,4.465908118654584,5.25227342804663,6.075346031088684,6.890609120147166,7.719129840906732,8.543835122362658,9.375091807576673,10.203851370643852,11.03690376339893,0.7207207207207208,0.9827027027027031,1.1362460315612541,0.6867556091600716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6777192749635866,0.9754107048224693,1.0137595716619756,0.6217212800017603,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,1.0,5.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15.74010460285337,6.041840829147961,0.0,0.0,0.0,4.794537184071822,0.0,0.0,23.20187978046503,12.13273413692322,24.117007251546223,30.53690597644939,0.0,222.09528104274418,-423.2787355889292,-41.07211408873266,-11.439965826727816,-35.27322796574409,280.9867755504087,535.5166778590716,23.581308285109863,14.473423725920856,21.420667114362868,0.45454545454545453,0.8003156384129259,0.25189782236677705,120.65027355113934,0.16807024637945575,47.36760982088336,0.19968436158707398,6.0,0.42105263157894735,0.3298857719657103,0.6780605945875768,0.8236055005345122,0.8651100886440388,0.8651100886440388,0.8651100886440388,1.925,,2.079831932773109,1.1759796240177451,1.060089367862777,2.105901049717475,-2.7330622567850593,1.2258862308848368,1.1970839319857876,-1.27006095312769,79.41020000000003,9.901064578912528,0.0,0.0,5.733667477162185,12.462662452073971,29.749429432616306,29.828919765543436,0.0,0.0,3.6635616461296463,0.0,4.90527477843843,0.0,6.340359303727752,0.0,7.8628820346414905,0.0,9.430198532298864,26.66666666666667,7.632138447971782,0.0,0.0,0.0,0.0,0.0,1.9206420068027215,0.0,36.360000000000014,0.0,10.686611093932521,0.0,0.0,0.0,0.0,0.0,-0.9907564066591841,42.0411031677664,10.633577208012664,5.687386274683562,0.0,41.967193213706345,11.21535880699783,0.0,5.563451491696996,24.26546827384644,0.0,0.0,0.0,25.40995753892265,25.075613173652705,23.04338333010048,176.44197960020915,,142.14022335615323,144.91167882682063,143.82296886264447,142.03457834927468,184.39476010911045,145.43730216724163,146.25620164528988,172.08777701523238,23.04338333010048,176.44197960020915,,140.2793211005141,143.85948653164684,142.87446784929352,140.1503510942643,186.26475007427916,144.34045659223938,145.18512654824997,172.95676608842504,4.612280399582261,133.29316527782365,,107.37292933869628,108.51273279278908,107.71683108104142,107.32072262524015,134.8571869004593,108.96895131784089,109.54957552938458,126.73884990917853,1.2128096489526567,9.286419978958376,,7.48106438716596,7.626930464569507,7.5696299401391824,7.475504123646036,9.704987374163707,7.654594850907454,7.69769482343631,9.057251421854335,2.3061401997911295,88.22098980010455,,71.17957651664362,72.5177330778323,71.96727860857817,71.12812607199089,91.76584390874706,72.78317141156211,73.19110524011786,85.84335256764865,36.09019607843136,0.0,0.0,11.500622141962928,0.0,5.496909043537832,8.763517384991951,37.5091041514931,2.829570402685783,0.0,0.0,0.0,-0.8679290018476531,2.084230442176871,0.0,0.0,0.0,23.003687360065133,402.6244372964369,63.58540816647533,130.6960267232609,158.74977452827113,166.74977452827116,166.74977452827116,166.74977452827116,304.0,107.5629486028259,100.45761929671596,51.202276295236175,66.56,66.56,0.8333333333333334,6.944870411571066,5.247927513443585,3.782146930197375,4.27971152396353,,4.278080135875654,4.269554355574163,4.26855639620699,4.278272508154526,4.2609681661362,4.270796746048977,4.271071660645613,4.264617706859978,0.19906036474723027,0.22524797494544896,,0.2251621124145081,0.22471338713548228,0.22466086295826262,0.22517223727129085,0.22426148242822105,0.2247787761078409,0.2247932452971375,0.22445356351894621,1.9721457055211247,2.0957394925514543,,2.0953582287459107,2.0933633415903046,2.0931295757372417,2.095403194699725,2.091350289678033,2.093654287587441,2.0937186563141976,2.0922064281302313,222.14999999999966,114.26757313908666,91.15518135199927,,91.22340068477736,91.89118668461023,91.95905869525545,91.20555715016822,92.8773575617835,91.81544182038891,91.8062672776012,92.53169642786104,6.014082796794035,4.797641123789435,,4.801231614988282,4.836378246558433,4.839950457645024,4.8002924815878005,4.888281976935974,4.832391674757311,4.831908804084273,4.8700892856768965,5.380396717152278,5.154417229916264,,5.155165336795898,5.1624590097884395,5.163197349991232,5.1549697150604255,5.173133773133457,5.161634381203941,5.161534452466316,5.169405136079829,0.0,12.770841536109392,8.763517384991951,7.417551050340553,0.06981622510753183,6.764209446124128,0.32006515775034305,1.448932613168724,0.0,269.5980832774108,111.73215074661803,-212.9439368122279,-20.662643624388238,-5.755241535465618,-17.74532806768565,141.35940491937825,269.4088316372747,11.863333069230226,7.281319773980398,10.776353265490991,804.0,25.0,1.106493072294114,0.47474588618997127,0.0,0.0,0.31903559372884915,0.05878437377059326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.10703808753134778,0.032064454907958485,14.25071237662706,12.070097840589638,9.078917360319544,7.092538078271314,7.5752386025695255,4.9362436440203945,5.720199642386248,3.1212286637500273,4.050611448622534,2.166210459106751,3.1971786761688366,1.446709910235092,1.930705520475538,0.7880601990582348,1.212694655027487,0.38531167345119405,2.525858184382469,0.9102525708335906,2.7604379886349095,1.152706616591013,3.9904355455917004,1.4175688847153283,65.02046106350443,37.678985608520875,30.379431576547812,29.554743998505995,29.554743998505995,29.554743998505995,86.0,95.0,41.876273999999974,21.085725999999998,0.16216216216216217,19.06,7.805555555555555,4.555555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,37.0,0.0,1.0,37.0,6.0,1.0,4.0,33.0,7.0,19.0,30.0,0.0,0.0,0.0,13.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,3.0,2.0,0.0,19.0,6.0,0.0,2.0,2.0,0.0,1.0,8.0,0.0,0.0,2.0,0.0,1.0,3.1780538303479458,4.22683374526818,3.597312260588446,3.9749978045895347,4.361504998953085,4.8583578586506775,4.886582645426277,5.083343477478833,5.229101255859354,5.062199385148413 +47528,O=C(NCCO[N+](=O)[O-])c1cccnc1,0,29.166666666666668,7.1181125,3.125,12.083333333333334,168.92246035742673,115.65490395833335,1.354813839318375,7.109966666666666,9.472222222222221,8.533419833333333,219.30810589147868,29.291666666666668,7.028708333333334,3.6666666666666665,9.5,155.77024632977086,112.75561462499995,1.6270211158333325,7.104491666666669,4.327546296296297,8.359428833333334,255.15978516107216,24.31578947368421,6.979368421052632,3.0789473684210527,8.368421052631579,161.44888658271836,91.14254205263157,1.3803414395183684,7.017576315789475,6.035087719298247,8.403612210526315,210.64890347509248,18.466666666666665,6.471333333333334,2.7333333333333334,4.7555555555555555,165.12442161692536,67.37612977777776,1.2002898828175999,6.519646666666665,3.6833333333333353,7.988470400000001,175.26354649714312,17.904761904761905,6.864042857142858,2.4523809523809526,4.523809523809524,170.68182138897845,63.44033345238093,1.0673876428153573,6.867019047619048,4.718253968253968,8.394755904761903,160.0131003306122,19.0,6.961676470588234,2.4411764705882355,5.470588235294118,168.6629397616528,67.80481597058825,1.099325253427853,6.962244117647058,5.361111111111112,8.47533494117647,164.41055387416708,17.133333333333333,6.538566666666668,2.4,5.0,166.5498245787531,61.15492296666666,1.0884862827415,6.570753333333335,3.931481481481482,8.081586,157.97182698152895,20.03846153846154,6.880115384615385,2.269230769230769,8.0,171.60689732911703,74.3658965,0.9607524909978077,6.8653576923076916,7.237179487179487,8.41511523076923,149.22812220781262,22.058823529411764,6.93634705882353,2.4705882352941178,7.529411764705882,171.83057763879097,82.94145264705881,0.9920292432585882,6.940447058823528,5.3921568627450975,8.43514094117647,164.85075717616684,8.159722222222221,0.2252998263888888,0.025879543756210554,0.484375,5.409722222222221,1.4973133673316223,38.23176970659722,0.19298701792120657,0.20183055555555549,4.027777777777778,0.14901699305555552,41.029721471163704,0.454861111111112,0.04400607638888887,-0.01666136319592346,0.010416666666666666,0.9965277777777778,-0.026289609107031157,1.9492829166666705,-0.006057980684027753,0.0364652777777778,-0.19328703703703695,0.028352986111111114,-2.4990870722708665,-0.2693713450292397,0.047289647295321646,0.0019606199893055726,-0.05345394736842105,0.6297514619883039,-0.020574656650199922,-1.5332292285270441,0.0005979955952495444,0.037737426900584806,1.1739766081871341,0.041180243786549706,-4.459918662714664,0.3624999999999998,-0.006225937499999995,0.002021168578172372,-0.07881944444444444,-0.3393518518518516,-0.1827121091563584,1.7215671045138874,-0.01160035961737696,-0.003000555555555557,0.010493827160493982,-0.005961711574074099,0.635552002218636,-2.0109126984126986,-0.06221262400793649,-0.0026161715058765586,-0.05282738095238095,-2.0267857142857144,0.2251820009154581,-9.264524206597223,-0.00048346105512724156,-0.0573876984126984,-1.1428571428571428,-0.04114695337301587,-3.682759862734472,-2.0518790849673207,-0.026243208741830053,0.004538877190780185,0.015625,-1.3043300653594774,-0.07963779220391974,-9.656404329146241,-0.009771955457657586,-0.028091830065359452,-0.8382352941176471,-0.012315316584967305,-8.05818129558675,-0.35972222222222233,-0.012504270833333341,-0.007306634306866988,0.003125,0.13472222222222238,-0.2530723171704509,-1.755511912152779,-0.04027746412614548,-0.00971722222222222,-0.5666666666666662,-0.01065248194444446,-5.483610721333756,2.7922008547008548,0.07532148771367518,0.004314269495917089,0.03485576923076923,2.452457264957265,-0.17511170539506235,12.913079277377138,-0.0013859499982674939,0.07077905982905977,2.076923076923077,0.04790027617521365,5.805555498901853,2.3549836601307184,-0.016052277369281064,-0.0026434281020710827,-0.050551470588235295,1.2863562091503267,-0.2861610302308216,11.174247487030225,-0.044836833385846285,-0.002733496732026195,0.10784313725490202,-0.02525676756535947,5.773850722986804,,,0.4355555555555556,1.25,0.6,0.0,0.65,-0.05,0.5187922629474198,0.014389083974362116,0.020122417307695446,0.8393891187243269,0.2865449803636491,0.1933468398201951,1.3581813816717465,0.4798918201838442,1.9572709441050928,1.0860642651812038,0.39837086167318037,0.47283581725070883,0.0,0.8712066789238893,8.794137740333333,700.0,170.8347,75.0,290.0,4054.1390485782413,2775.7176950000003,32.515532143641,170.6392,227.33333333333331,204.802076,5263.394541395488,703.0,168.68900000000002,88.0,228.0,3738.485911914501,2706.1347509999987,39.04850677999998,170.50780000000006,103.86111111111111,200.62629200000003,6123.834843865732,924.0,265.216,117.0,318.0,6135.057690143298,3463.416598,52.452974701698,266.66790000000003,229.33333333333337,319.337264,8004.658332053515,831.0,291.21000000000004,123.0,214.0,7430.598972761642,3031.9258399999994,54.01304472679199,293.38409999999993,165.75000000000009,359.481168,7886.859592371441,752.0,288.2898,103.0,190.0,7168.636498337095,2664.494004999999,44.83028099824501,288.4148,198.16666666666669,352.57974799999994,6720.550213885712,646.0,236.69699999999995,83.0,186.0,5734.539951896196,2305.3637430000003,37.377058616547004,236.7163,182.2777777777778,288.161388,5589.95883172168,514.0,196.15700000000004,72.0,150.0,4996.494737362593,1834.647689,32.654588482245,197.12260000000006,117.94444444444446,242.44758,4739.1548094458685,521.0,178.883,59.0,208.0,4461.779330557043,1933.5133090000002,24.979564765943,178.49929999999998,188.16666666666666,218.792996,3879.931177403128,375.0,117.9179,42.0,128.0,2921.1198198594466,1410.0046949999999,16.864497135396,117.98759999999997,91.66666666666666,143.39739600000001,2802.4628719948364,195.83333333333331,5.407195833333331,0.6211090501490533,11.625,129.83333333333331,35.93552081595894,917.5624729583333,4.631688430108958,4.843933333333331,96.66666666666666,3.5764078333333327,984.7133153079288,10.916666666666687,1.056145833333333,-0.39987271670216307,0.25,23.916666666666668,-0.6309506185687478,46.78279000000009,-0.14539153641666608,0.8751666666666671,-4.638888888888887,0.6804716666666667,-59.9780897345008,-10.236111111111109,1.7970065972222227,0.07450355959361175,-2.03125,23.930555555555546,-0.781836952707597,-58.26271068402768,0.022723832619482687,1.4340222222222225,44.6111111111111,1.564849263888889,-169.4769091831572,16.312499999999993,-0.2801671874999998,0.09095258601775673,-3.546875,-15.270833333333323,-8.222044912036129,77.47051970312494,-0.5220161827819632,-0.13502500000000006,0.4722222222222292,-0.26827702083333443,28.599840099838616,-84.45833333333334,-2.612930208333333,-0.10987920324681545,-2.21875,-85.12500000000001,9.45764403844924,-389.11001667708337,-0.020305364315344146,-2.4102833333333327,-47.99999999999999,-1.7281720416666664,-154.67591423484782,-69.7638888888889,-0.8922690972222218,0.1543218244865263,0.53125,-44.34722222222223,-2.7076849349332712,-328.31774719097217,-0.3322464855603579,-0.9551222222222213,-28.5,-0.4187207638888884,-273.9781640499495,-10.79166666666667,-0.37512812500000026,-0.21919902920600964,0.09375,4.041666666666671,-7.592169515113527,-52.665357364583365,-1.2083239237843644,-0.29151666666666665,-16.999999999999986,-0.3195744583333338,-164.50832164001267,72.59722222222223,1.9583586805555546,0.11217100689384434,0.90625,63.76388888888889,-4.552904340271621,335.7400612118056,-0.03603469995495484,1.8402555555555542,54.0,1.2454071805555549,150.94444297144818,40.034722222222214,-0.2728887152777781,-0.04493827773520841,-0.859375,21.868055555555554,-4.864737513923967,189.96220727951382,-0.7622261675593869,-0.04646944444444531,1.8333333333333344,-0.429365048611111,98.15546229077567,0.7397341225498538,0.5182358386021583,0.47989182018384413,0.2802665275159406,0.33631543783564055,0.14353886866027252,0.21818463838423122,0.08036247099193439,0.14789016733959578,0.04474855442833406,0.10068670149127922,0.024099516166026763,0.0658771775054953,0.012736567734190303,0.04888234730041703,0.006698117372313578,8.06486164674167,5.723637485234696,3.6231375077875807,2.219306859686211,0.4184320541444847,-0.37376653318901815,3.1358103598689593,0.972737764473114,7.004131496405963,1.8964616511922239,14.601651225848963,10.988164261726226,16.03397494936496,11.737911164908507,1.9555283249281132,0.6537040663797048,3.568832858536981,2.267973002269414,8.001936307455969,1.3929842638571635,3.7721528095855072,2.463275789841776,20.854181311279728,14.642349851993199,0.38386049289347646,0.7894148833779965,0.8923382996082139,0.90949220231325,0.90949220231325,0.90949220231325,2.036951248237366,340.9998353379908,0.0,3.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,2.720175521464345,0.7500000000000004,0.25,0.16666666666666696,0.16666666666666696,0.16666666666666696,6.533443889665705,609.8748950321055,48.09789643429589,25.41145395967106,56.869016045250376,,10.0,233.0,5.086619042932543,14.908855452837393,19.058818099777,5.563451491696996,0.0,6.196843571613076,18.3295777085363,0.0,15.138355708690174,0.0,6.533333333333334,18.75,9.0,0.0,9.75,0.0,0.06444444444444439,-0.75,0.2944444444444441,0.061111111111111005,-0.23333333333333311,0.04277777777777769,0.2715620767494355,0.0,0.7277777777777779,0.9844444444444442,0.43333333333333374,0.6666666666666669,0.9416666666666665,7.781883944211296,0.21583625961543174,0.3018362596154317,12.590836780864903,4.298174705454737,2.9002025973029264,20.3727207250762,7.198377302757663,0.44243792325056447,0.1530612244897959,0.0,0.21428571428571425,0.25,0.49195230716310456,-0.739133659283562,-0.07766249358797137,-0.03079723580348175,-0.09239170741044525,0.5080476928368954,0.7633161687208133,0.040828490077253796,0.03180484036336722,0.04770726054505083,-1.9839858590716055,0.6141489361702128,0.47243218334826975,1.6945551537773234,1.0304659498207887,0.4391848523748396,1.3483040447007157,0.6251723316412072,1.170263570139828,0.46593763332828697,0.5726592432950192,0.48750934771747456,1.0082415614510298,0.8592161254199329,0.6322739276969818,0.9743201204675113,1.0673457838143747,0.7086007702182286,1.133969711217282,0.8686978876861098,1.0509496049756368,0.6442755126506587,0.383942075015124,0.579972976069566,1.0645971377197159,0.8847659574468086,0.7956058554688312,0.9491269094362476,1.2090800477897252,0.8877192982456142,1.121279127978628,0.8902273194661671,1.079073381318108,0.7942326483986843,0.5925510855683269,0.7746751974486628,1.0319690560843862,1.2485714285714287,1.2864226671491221,1.1968862907740634,1.1541218637992832,1.372913992297818,0.7497685015441747,1.243047491582348,0.9073173468857132,1.2973911402185945,1.3744766009852216,1.2811844478507026,1.029509355738036,1.2331914893617022,1.1475438117842154,0.8305230571002002,0.8728652751423149,1.237446197991392,0.9623847156269398,1.2320839198739786,0.9796024818842104,1.1681637552693769,1.3502197430696417,1.1248180919972774,1.1272209811368936,1.0257021276595746,0.9269567482220837,1.0682807077165613,0.8243727598566308,0.9093709884467268,1.0860039479478116,1.03078313205632,1.1946362826648584,0.9309018841437402,0.9646120689655171,0.9237931524121944,1.1644335215202237,0.7566284779050737,0.7581617112666402,0.6471450991403808,0.76095947063689,0.6574997531351834,0.9047241484454689,0.7584772411132215,0.9023722272657162,0.7522164917893599,0.44624778956675504,0.7679139272144114,0.8410092238019006,0.7495869837296621,1.100766820393975,0.9094947601407359,1.047438330170778,0.7867552669334745,1.06668881243727,0.7441634491061686,1.0961124064331595,1.0497588250676209,0.948419540229885,1.181574614197109,0.7946991804639524,2.5,0.024691358024691357,1.333333333333334,0.6875,0.35111111111111115,0.20833333333333331,0.1420408163265306,0.10590277777777778,0.08213655832703451,0.04437500000000001,2591.001981156476,2829.5194049222946,1474.301407391387,1380.7145187314184,10.258786065320242,0.4202371036022798,5.9476635227546355,0.7248430456887932,1.0,0.25,1.864786979256811,3.8349625007211556,4.334962500721156,4.418295834054489,4.418295834054489,4.418295834054489,0.16666666666666666,0.012345679012345678,0.07407407407407411,0.04296875,0.02700854700854701,0.01893939393939394,0.015782312925170065,0.011766975308641976,0.011733794046719216,0.008875000000000003,0.39016119298155866,13.066666666666666,7.302469135802469,5.584487534626039,85.17782117876975,1.0,3.579692824115696,61.26506974161025,,46.8713921049725,45.32511228769232,45.895175305562645,46.89065427687497,90.14470390642546,46.2985443871672,46.95660650936709,69.83304637488867,0.05574468085106394,0.19532228272972668,-0.6438043635110484,0.021505376344086023,0.18421052631578952,-0.01755785374031766,0.05098594523941969,-0.031390612432288724,0.18067273152672086,-0.04798850574712642,0.19026679796538867,-0.06090918930627551,-0.03301231802911534,0.2098965101450866,0.07575944953956402,-0.11035653650254669,0.11641105330720895,-0.013741049201254532,-0.04010353798146237,0.00309863120167853,0.1869757866776385,0.2914700544464609,0.27634595855250654,-0.10869970603746752,0.0444255319148936,-0.02763400931012454,0.07809908077252457,-0.16272401433691755,-0.0627299957210098,-0.12202663326379805,0.045029751898113576,-0.060109533492626925,-0.014866706120370513,0.002605363984674368,-0.04000692439050554,0.01549003940144491,-0.24644376899696052,-0.27613258742841473,-0.1010903256456649,-0.10906298003072196,-0.37465615257656343,0.15039069698332905,-0.24232527758186798,-0.0025051480681702164,-0.28433602758875615,-0.28374384236453204,-0.27612255843651157,-0.08975834421207979,-0.25146433041301636,-0.11648126482144638,0.1753847453238409,0.03225806451612903,-0.24110851015630907,-0.053187124313090896,-0.25257539484184394,-0.0506352995290456,-0.1391852189478166,-0.2081135902636917,-0.08264370614682845,-0.1963986351028524,-0.044085106382978745,-0.05550057908943874,-0.28233242346529186,0.006451612903225807,0.024903722721437774,-0.1690176035905254,-0.04591762101584982,-0.2087055624777316,-0.0481454465379375,-0.1406896551724137,-0.07148501473568905,-0.13364971841662926,0.3421931260229133,0.3343166700167055,0.16670577876326564,0.07196029776674938,0.45334254961982823,-0.1169506058088099,0.33775782226342704,-0.0071815711398439995,0.35068555221598874,0.5156498673740054,0.32144170401664046,0.14149634193793112,0.28861076345431785,-0.07124851193437369,-0.10214353571966334,-0.10436432637571158,0.2377860001510232,-0.19111632639785495,0.2922764908029359,-0.23233082654374412,-0.013543522805563394,0.026774847870182573,-0.1694891773580709,0.1407236148810991,5.05725835445637,5.241482788417793,1.0,19.025973214954302,38.67035941728298,40.09127608394965,40.17527608394964,40.17527608394964,40.17527608394964,29.35906416157639,16.290963977718057,5.975562925097705,7.092537258760633,0.0,13.06810018385834,2422.1420806634205,2126.4485172233235,376.04102079377026,8.0,18.0,19.0,20.0,21.0,16.0,16.0,12.0,10.0,211.059305768,15.0,4.204692619390966,4.948759890378168,5.733341276897746,6.499787040655854,7.289610521451167,8.066835314417336,8.85922139360813,9.64309634032025,10.437257920797217,0.7638888888888888,1.0501666666666665,1.1491067696538575,0.7325819387783422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6454375499001996,1.0307189542483661,1.0544731731002672,0.6488046763688176,4.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10.154377187742964,6.606881964512918,0.0,0.0,10.993798772284048,9.77851570501903,0.0,0.0,10.114318268765572,0.0,12.13273413692322,18.93844354913873,5.563451491696996,199.69343142087723,-300.0293616919005,-31.524783218756287,-12.501223403829187,-37.50367021148756,206.22687531054294,309.845533340205,16.573113215539607,12.910230555841874,19.365345833762813,0.5,0.7828696025088471,0.232984145669382,19.741272438112667,0.19572094150528005,49.84144182989869,0.21713039749115276,5.0,0.3333333333333333,0.4067180438146449,0.8364217810108512,0.9454739270036171,0.963649284669078,0.963649284669078,0.963649284669078,0.01969999999999983,,1.4285714285714288,1.6998604001861328,1.3682854998861482,1.4245628518413376,-5.883722511902063,1.51843635250918,1.4147681802120078,-2.553951796962389,49.51660000000002,14.718744810740997,0.0,10.30076712495354,0.0,0.0,13.151638370425493,40.20419104061193,0.0,0.0,3.4339872044851463,0.0,4.634728988229636,0.0,6.013715156042802,0.0,7.472500744737558,0.0,8.974744612722734,18.333333333333332,6.176037502160337,3.761904683169564,0.0,0.0,0.0,0.0,0.4014843159486019,0.0,25.203999999999997,0.0,21.0874227171738,0.0,-0.9065189594356267,0.0,0.0,0.0,-0.3379185563114129,27.57856247169258,5.316788604006331,0.0,0.0,29.12941566365675,4.8375885837366335,10.114318268765572,10.357988675768818,24.526421280149375,0.0,0.0,0.0,17.581966530680212,15.490501197604791,18.631610620353463,122.53013948322052,,93.55230801946882,90.42357652202651,91.6079125444738,93.5913668401711,181.7048273941046,92.39463059399985,93.72457726137257,140.07693226484815,18.631610620353456,122.53013948322055,,92.36611881397792,89.02994406338456,90.52497849837931,92.40846697732317,186.17313032475303,91.14044980992918,92.54901547312527,142.22004454673973,4.45316089055901,95.4359673071113,,75.34594512284826,72.8707799260153,73.62123747698567,75.37622211206819,145.50839541732418,74.42070762949848,75.48316868760705,112.19689370054441,1.242107374690231,8.168675965548035,,6.236820534631255,6.028238434801767,6.107194169631587,6.239424456011407,12.113655159606973,6.15964203959999,6.2483051507581715,9.338462150989876,2.226580445279504,61.26506974161025,,46.8713921049725,45.32511228769232,45.895175305562645,46.89065427687497,90.14470390642546,46.2985443871672,46.95660650936709,69.83304637488867,24.73725490196079,0.0,0.0,0.0,0.0,0.0,0.0,25.307356154406413,-0.08957364890400576,2.445925925925926,4.019974489795918,0.0,0.0,0.0,0.0,0.0,0.0,15.571312232851621,317.7826691810962,44.75488750216346,92.03910001730773,104.03910001730775,106.03910001730773,106.03910001730773,106.03910001730773,170.0,95.68260231791685,88.13763755032392,45.52967670621787,94.36,94.36,1.0,6.296648808758401,4.906890595608519,3.2611948190536024,3.8168047670189615,,3.829589998193874,3.8309252151968147,3.8286806001284086,3.8295675969974736,3.781838557650132,3.830008429456944,3.82952336982338,3.8048957374990304,0.21741298793690683,0.25445365113459745,,0.2553059998795916,0.25539501434645434,0.2552453733418939,0.2553045064664982,0.2521225705100088,0.25533389529712963,0.25530155798822535,0.2536597158332687,1.5875587452509436,1.7448787322841142,,1.7482228554905217,1.7485714526747238,1.747985361122031,1.7482170059708788,1.735675390402676,1.7483321122008935,1.7482054570352974,1.7417536976006658,144.63999999999987,119.77391509316406,62.288096245100064,,61.247740151501375,61.17248695762025,61.32601613684859,61.24906782010883,63.481747158244254,61.22571757389753,61.251301822304924,62.470695250882805,7.984927672877604,4.152539749673338,,4.083182676766758,4.078165797174683,4.088401075789906,4.083271188007255,4.232116477216284,4.081714504926502,4.083420121486995,4.16471301672552,5.1910710329625145,4.537235444137864,,4.520392061366654,4.51916263702826,4.521669267815378,4.520413738153657,4.556217526359334,4.520032431153704,4.520450211548845,4.540162678907928,0.0,28.869301890139283,11.314001830300532,0.4014843159486019,-0.3379185563114129,3.2213549540186444,2.954682548141693,-0.08957364890400576,0.0,178.63677665127096,81.0596189346123,-121.78801052640844,-12.79654967379908,-5.074500438600352,-15.223501315801055,83.71167648231793,125.77259393281649,6.7273631999463905,5.240524747200687,7.860787120801031,444.0,16.0,0.8106172175260454,0.1658614090587518,0.0,0.0,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.024845199749997663,0.05892556509887896,0.012422599874998832,11.096011838247808,7.773537579032373,7.198377302757662,4.203997912739109,6.05367788104153,2.5836996358849054,4.145508129300393,1.5268869488467534,2.957803346791916,0.8949710885666812,2.1144207313168635,0.506089839486562,1.0540348400879247,0.20378508374704485,0.7821175568066725,0.10716987795701725,1.3088951918547531,0.2783494066787198,1.5290820566162369,0.29093744704909613,1.8169265516195288,0.28100742844716026,51.796618242117425,24.225188546053698,21.66065208681892,21.44523854509216,21.44523854509216,21.44523854509216,66.0,70.0,25.869136999999988,13.368863,0.25,15.07,5.583333333333333,3.5277777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,24.0,0.0,0.0,24.0,6.0,2.0,5.0,19.0,8.0,15.0,16.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,5.0,1.0,1.0,15.0,7.0,0.0,3.0,4.0,0.0,1.0,5.0,0.0,0.0,0.0,1.0,1.0,3.044522437723423,3.840795496139778,3.449987545831587,3.7784916128036232,4.137164559405029,4.515655678780343,4.2018901887852635,4.381245079339061,3.840795496139778,3.840795496139778 +119570,CCCN[C@H]1CCc2nc(N)sc2C1,0,25.161290322580644,5.774461290322582,2.806451612903226,4.143369175627241,166.21269809491397,99.23696919354836,1.5318522381430006,5.860845161290323,2.3881034559051284,7.386058225806455,196.46169126615493,24.84375,6.182406250000001,3.4375,4.104166666666667,150.08122438360934,93.04078353124996,1.8428824137499993,6.329437500000002,2.4381751543209877,7.6531557500000025,245.8085554900652,20.796610169491526,5.928872881355935,3.0677966101694913,2.7853107344632764,156.3292675666685,76.72364277966105,1.5358920239600167,6.0502542372881365,2.068372044360745,7.492684067796608,194.74008919107214,14.012987012987013,5.7672337662337645,2.4545454545454546,1.6796536796536798,164.2148374647851,48.005140922077906,1.2610545526211556,5.856051948051948,1.8850809684143022,7.408236883116882,150.341737122854,12.608108108108109,5.692308108108107,2.364864864864865,1.2162162162162162,164.18569126625775,42.05927041891892,1.1958201741483785,5.779158108108109,1.7771521521521518,7.347499459459458,138.82138866503556,11.253968253968255,5.6291095238095235,2.0634920634920637,1.2116402116402119,164.41763396784003,36.64980585714286,1.1488374262243015,5.712334920634921,1.8597883597883593,7.2925941269841275,130.85456441382152,9.35593220338983,5.4876593220339,1.8305084745762712,0.768361581920904,166.88104678833028,29.65262627118644,1.045500076975034,5.559942372881357,1.7474890144381672,7.185237864406779,114.15695257623513,8.978260869565217,5.455130434782609,1.7608695652173914,0.6231884057971014,171.1562340280791,28.54225565217392,0.973338620145174,5.514782608695652,1.6541867954911438,7.188772217391306,103.47178819138203,9.84,5.677599999999999,1.84,0.6,168.74058387011132,29.081762679999986,1.06198406835168,5.75106,2.0244444444444447,7.39048496,114.9529828387989,11.637877211238298,0.06852736732570232,0.013695294870472424,0.5078043704474504,2.5875823794658364,1.596479947126994,52.76548019354838,0.3122183574964225,0.06983579604578558,0.46572286241612176,0.03268885119667011,52.61676956572003,0.7885340790842885,-0.0059410770031219015,-0.009593191832634854,0.19280046826222677,0.8136272979535208,0.035720172027097555,3.658196812499985,0.03497190126012505,-0.004309183142559986,-0.06452770444453013,-0.0038048310353797493,3.660791982019649,1.9088696449672844,0.007053933931815293,0.003637639419165313,0.047143688601209925,0.16225055899476942,-0.16626102910608237,8.426661711864403,0.004219944334979476,0.00886338383392998,0.009245094018128746,0.007210398119896314,0.3659924716071639,-0.9277808559806477,-0.0059783099314837254,-0.002196437074626599,-0.03147424895603875,-0.1339213451596387,-0.04558574282083783,-4.031410454545458,-0.009311496886046683,-0.00578996445801859,0.0070927086670717985,-0.004603795059259145,-0.5620046202259309,-1.0515650926681104,-0.008815074387602996,0.00024214775345782858,-0.08975729111004864,-0.4867396012037011,-0.14679108099257496,-4.9334427162162156,-0.03311758624125726,-0.008767138678741168,-0.039782585221364256,-0.0032303128357285475,-5.817060091886046,-1.2564127975158155,0.0034597294484911795,-0.00010809659180700694,-0.06592008985349257,0.04181968004375228,-0.1303599760448881,-5.751393111111109,-0.04026729801144347,0.0012695290950233986,-0.0015642783517896364,0.0013538671853062987,-6.730299123182947,-0.18243708001904826,0.006739499814811619,0.0018693089624267137,-0.008077743875553371,0.08321526344771928,0.021007006407007728,-0.8492892033898242,-0.009484783489637928,0.005144193019277303,0.02867673228620872,0.0035216397820067016,-2.1454859067363636,0.5970456499117766,0.0011166018187577132,-0.0022240371115479747,-0.027439714065963933,-0.07160918326823386,0.10253151922293519,2.999253043478266,0.028935766764206495,0.0022702348097543997,-0.008571766850138636,-0.0008163582092928899,6.2126198232321945,-3.996586888657647,-0.009655754422476572,0.0009367014436065097,-0.167159209157128,-0.737976644698809,-0.28256027305144843,-17.862280760000004,-0.089411751315278,-0.01178611862643079,-0.015482143800253794,-0.007954778938605602,-10.102676698484977,,,0.5023809523809524,0.9464285714285714,0.32142857142857145,0.03571428571428571,0.625,-0.30357142857142855,0.9295913797479123,0.008727754606344387,0.021013468892058674,0.3814499676386012,0.1432093316274988,0.3419353110785207,1.3110413473865135,0.48514464270601954,2.0235115068570813,1.4640351842125765,0.4145484540517787,0.0,0.0,0.5594763226445049,6.810139307870967,780.0,179.00830000000002,87.0,128.44444444444446,5152.593640942333,3076.3460449999993,47.48741938243302,181.6862,74.03120713305898,228.96780500000008,6090.312429250803,795.0,197.83700000000005,110.0,131.33333333333334,4802.599180275499,2977.3050729999986,58.97223723999998,202.54200000000006,78.02160493827161,244.90098400000008,7865.8737756820865,1227.0,349.80350000000016,181.0,164.33333333333331,9223.426786433442,4526.694924000002,90.61762941364098,356.96500000000003,122.03395061728395,442.06835999999987,11489.665262273256,1079.0,444.0769999999999,189.0,129.33333333333334,12644.542484788451,3696.395850999999,97.10120055182898,450.916,145.15123456790127,570.4342399999999,11576.313758459757,933.0,421.23079999999993,175.0,90.0,12149.741153703073,3112.386011,88.49069288698001,427.65770000000003,131.50925925925924,543.7149599999999,10272.782761212631,709.0,354.6339,130.0,76.33333333333334,10358.310939973922,2308.937769,72.37675785213099,359.87710000000004,117.16666666666664,459.43343000000004,8243.837558070756,552.0,323.7719000000001,108.0,45.333333333333336,9845.981760511486,1749.5049499999998,61.68450454152701,328.0366000000001,103.10185185185186,423.92903399999994,6735.260201997872,413.0,250.936,81.0,28.666666666666664,7873.186765291638,1312.9437600000003,44.773576526678006,253.68,76.09259259259261,330.6835220000001,4759.702256803574,246.0,141.93999999999997,46.0,15.0,4218.514596752783,727.0440669999997,26.549601708791997,143.7765,50.611111111111114,184.762124,2873.8245709699727,360.77419354838725,2.124348387096772,0.4245541409846451,15.741935483870964,80.21505376344092,49.49087836093681,1635.7298859999996,9.678769082389097,2.164909677419353,14.437408734899774,1.0133543870967734,1631.1198565373209,25.233090530697233,-0.19011446409990085,-0.30698213864431534,6.169614984391257,26.036073534512667,1.1430455048671218,117.06229799999952,1.1191008403240017,-0.13789386056191955,-2.064886542224964,-0.12175459313215198,117.14534342462876,112.62330905306978,0.4161821019771023,0.21462072573075347,2.7814776274713857,9.572782980691397,-9.80940071725886,497.1730409999998,0.2489767157637891,0.5229396462018688,0.545460547069596,0.42541348907388254,21.593555824822673,-71.43912591050987,-0.46032986472424686,-0.16912565474624813,-2.4235171696149838,-10.31194357729218,-3.5101021972045126,-310.4186050000003,-0.7169852602255946,-0.44582726326743144,0.5461385673645285,-0.3544922195629542,-43.27435575739668,-77.81581685744017,-0.6523155046826217,0.017918933755879315,-6.642039542143599,-36.01873048907388,-10.862539993450547,-365.07476099999997,-2.450701381853037,-0.6487682622268465,-2.9439113063809548,-0.2390431498439125,-430.4624467995674,-79.15400624349637,0.2179629552549443,-0.006810085283841437,-4.152965660770032,2.6346398427563935,-8.212678490827951,-362.3377659999999,-2.5368397747209386,0.07998033298647411,-0.09854953616274709,0.08529363267429682,-424.0088447605257,-10.763787721123848,0.3976304890738855,0.11028922878317611,-0.47658688865764887,4.909700543415437,1.239413378013456,-50.108062999999625,-0.5596022258886377,0.3035073881373609,1.6919272048863145,0.2077767471383954,-126.58366849744544,27.46409989594172,0.051363683662854806,-0.10230570713120685,-1.262226847034341,-3.2940224303387575,4.716449884255018,137.96564000000023,1.3310452711534988,0.1044308012487024,-0.39430127510637725,-0.037552477627472935,285.78051186868095,-99.91467221644118,-0.2413938605619143,0.02341753609016274,-4.1789802289282,-18.449416117470225,-7.06400682628621,-446.5570190000001,-2.23529378288195,-0.29465296566076976,-0.38705359500634484,-0.19886947346514006,-252.56691746212445,0.7118753804464919,0.6687280650859669,0.4528016665256182,0.4055714846650179,0.29590210028214636,0.24655100866382376,0.18498470959625699,0.14353267288990698,0.11841741978941439,0.08714970219492195,0.08045977545383245,0.055183058285102525,0.05268540847746781,0.03470227011839763,0.035666640066933625,0.021397058648782198,16.004502913489823,5.772390550568083,3.157064196505969,2.212720149968705,0.3569199975210468,-0.34523209031835644,3.184357150661387,0.9878188509641269,5.0440417454482445,0.6531866978737206,14.550910296976687,10.311639496410157,32.062245553119894,11.786668418445183,2.9363685540437987,1.0181502308753947,3.1402821333383395,2.2854779724748298,4.005266763489548,0.6049907635825427,3.3071708625634297,2.4985983659227324,24.440711684217845,15.588545490719369,0.29242695235011607,0.5803147986872658,0.8168416521016281,0.8675672346133243,0.8675672346133243,0.8675672346133243,1.7900576930283911,308.31579726743877,0.0,0.0,2.0,0.0,2.0,5.0,0.0,0.0,0.0,3.466485056525576,2.0018663358377395,0.7985447581343053,0.5404802420052723,0.5404802420052723,0.5404802420052723,168.23902824124553,496.6177306727358,38.0370710386472,16.019926795894705,31.50403574758932,,9.0,200.0,0.0,0.0,0.0,6.041840829147961,24.51795813160393,23.412718434401782,11.336785877934737,0.0,17.224504324644162,5.733667477162185,7.033333333333333,13.25,4.5,0.5,8.75,0.0023809523809523725,0.0,-4.25,0.08795698924731177,0.013815575105897593,-0.07414141414141417,0.08907563025210063,0.08973964497041409,0.0,0.5279569892473122,0.8047619047619047,0.4400000000000004,0.5141414141414146,0.715686274509804,13.014279316470772,0.12218856448882143,0.2941885644888214,5.340299546940416,2.0049306427849833,4.78709435509929,18.354578863411188,6.7920249978842735,0.6242603550295859,0.1279620853080569,0.0,0.2843601895734597,0.7,0.30198281080879175,-0.3530291606954633,-0.045173308825712674,-0.011388037441789138,-0.03530291606954633,0.6980171891912083,0.8160081091741549,0.04436588990692342,0.026322842231424354,0.0388575290082931,-3.0689558777681833,0.861428715128755,1.139114005357241,1.8469061825604254,0.8635373975409837,0.7434442024128681,1.2727062717318864,0.8670702134534761,0.9348705368412376,1.089992067388642,1.2876085705977545,1.1618889970696495,1.0365394000451964,0.8104040881646901,0.8528477596783804,0.6283598082407582,1.1466726868574604,1.0335915844958414,1.2343771094563283,0.8162070454813635,1.02093352272755,0.8278969107084473,0.7489221812022855,0.7357116322409464,1.0426673940831592,1.1296053731676043,1.1307577378615485,1.0363637207327858,1.0518682137534598,1.0928414748790076,1.0392413290986326,1.1200897498892457,1.052368529323105,1.1138642916918702,0.7731732508873289,1.2002973874335887,0.9862563514410744,1.0725807620925643,1.0777549675625446,0.8552217368382492,1.1846477625166152,1.2135171364393875,1.0607463058704543,1.0741757742492926,1.086722247086484,1.0775994166122935,0.8201567454247742,1.0506811619133851,1.0800878695457867,1.0612098916819943,0.8154433259664771,0.9225502599441104,0.9982435597189697,0.7839376143665682,1.0148246518906738,1.0624615991617279,1.0960320683441844,0.865251098338376,1.0547691803381092,0.8164642395421007,1.0964248189361903,0.8949679930166579,0.663170454198003,0.6509990457470558,0.8236662961933872,0.7374244558549548,0.8308875397562604,0.9006730379949249,0.9380305458924687,0.7245419118269889,0.8159305311810827,0.6289128643290997,0.9866906983867014,0.9327766374323564,0.8646794687442811,0.9692815407194559,0.9114397719173202,0.9797033453782484,0.7458632277767945,0.9242076753464559,0.8474137210737572,0.8687831072766787,0.8599738807417093,0.9039042389811868,0.7955104318059296,1.6564377682403428,1.2653856666484453,1.1676191269000054,1.2577868852459018,1.371313672922251,1.1477034048390728,1.6227640940712147,1.451036812344833,1.2730230867115075,1.515011447539009,1.430917572828867,1.1380276614724059,3.0,0.0,1.1111111111111116,0.9791666666666667,0.4883333333333334,0.3058333333333334,0.15678004535147388,0.09984410430839001,0.05594135802469134,0.0,2337.5855596624633,2755.897802909002,1384.4000123632677,1209.8972125802156,11.653783303505628,0.4527941704278875,6.377018160248431,0.8274659112859778,1.0,0.7,1.4877112538612989,2.9523299745491354,4.15565155225257,4.413716068381603,4.413716068381603,4.413716068381603,0.19999999999999998,0.0,0.05555555555555559,0.05759803921568627,0.037564102564102565,0.030583333333333334,0.02239714933592484,0.019968820861678,0.01864711934156378,0.0,0.4423141202078444,10.515555555555556,4.68,2.5344,88.72993089872276,1.0,3.5672318834453547,47.392510825437164,,38.52884177959812,40.54692917547024,40.18139608053912,38.53257089059651,49.32698243359708,40.78336230453595,40.87160305768441,47.72173775061659,0.06775583422746789,-0.08669641392882756,-0.7004735511988238,0.3796746926229508,0.31443532171581756,0.02237433178623956,0.06932935697886954,0.11201103465072765,-0.06170450380109951,-0.13855386894636673,-0.11639537322643304,0.06957462444453574,0.16402215028733544,0.1029360123859537,0.2656123474207337,0.09283828841344825,0.06270353372411794,-0.10414225960387646,0.1597002752738092,0.013516003251115143,0.1269174883911825,0.019851063291516678,0.22057667540885653,0.006955814175365282,-0.0797207978001969,-0.08723974325570598,-0.16037895462639515,-0.061981051735150096,-0.051755393846546656,-0.02855390880597867,-0.07640242142699911,-0.029823668796135336,-0.08290826174906901,0.01522946206736677,-0.14083685693206974,-0.010681093211622753,-0.09035712214360278,-0.12863582436643173,0.017681090896400364,-0.17675564909171468,-0.188105934352583,-0.09194671142392889,-0.09349754229696988,-0.10607187388600857,-0.12553932474677137,-0.08542115586719609,-0.09882001714571137,-0.11055524958863831,-0.10795893226150735,0.05048682859867507,-0.007892972939200259,-0.1298139474368983,0.016161680638892457,-0.08165462790778072,-0.10899916176285136,-0.1289715900574644,0.01817877316370924,-0.003358818039712122,0.041416786939401894,-0.12791167490388378,-0.015676147523095967,0.09834756649528922,0.13649278676408896,-0.01590719644345654,0.0321594644128384,0.013158327760277656,-0.01609554580522261,-0.030378686140345244,0.073661264144604,0.06157467154916298,0.1077321365874564,-0.04077570562473591,0.051301937550538,0.01629424655190151,-0.16239424799411098,-0.054035994297933085,-0.02767416559816596,0.0642234933219485,0.05684119679147702,0.09267798023227398,0.03250818259830523,-0.018405295384618228,-0.024973597401185186,0.11807299981562787,-0.34341201716738173,-0.1409036243371781,0.06839585802756781,-0.32918032786885254,-0.28519928507596043,-0.17698955352363838,-0.33852209236947345,-0.28637570203187845,-0.1687690166616502,-0.03324325484030147,-0.24334837864892375,-0.19200488326951376,3.7691691356845607,7.588836902968839,2.8039657955522017,16.4951247449003,30.336251735388462,32.96894182119738,33.229070853455454,33.229070853455454,33.229070853455454,28.329161095999137,20.49649257897607,5.803678356724902,0.0,0.0,7.832668517023069,2036.6516130573366,1930.7841541708437,336.3085816991354,12.0,20.0,25.0,33.0,38.0,36.0,38.0,37.0,21.0,211.11431854399999,15.0,4.2626798770413155,5.081404364984463,5.942799375126701,6.790097235513905,7.660585461703256,8.519789817263504,9.393078508655353,10.258115402607235,11.132265158280985,0.6129032258064518,0.9554838709677418,1.1394265866405322,0.5675630671884103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6612996136758745,0.9437065148640102,0.9875126283391679,0.5827897349362781,0.0,1.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,5.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,11.050456081168516,0.0,5.131558479839333,0.0,0.0,0.0,4.9839785209472085,0.0,11.336785877934737,6.923737199690624,32.22804289761662,10.918988022849259,5.693927994848461,128.28506162405097,-149.97001820603626,-19.190034992217253,-4.837742522775363,-14.997001820603625,296.5240898652965,346.64771246669955,18.847036046429942,11.182184273119342,16.507033926985695,0.4444444444444444,0.9043700009277402,0.3208641934966884,59.47119292478413,0.15395589516921784,48.180991323725394,0.09562999907225973,5.0,0.2,0.3002931576898137,0.5959251086516971,0.8388144699756667,0.8909045568355635,0.8909045568355635,0.8909045568355635,1.5822,,1.0535714285714288,0.532413093394564,0.5888482611031512,1.052859237879501,-1.1304075235109714,0.4951805385556918,0.4921450834958766,-0.8003950095588184,60.63310000000003,0.0,0.0,10.30076712495354,0.0,38.64886452054263,12.27842388307476,10.57107518854976,0.0,0.0,3.4339872044851463,0.0,4.709530201312334,2.3978952727983707,6.175867270105761,4.727387818712341,7.738488122494646,6.803505257608338,9.356257246876337,19.000000000000007,0.0,4.33445097946586,0.0,0.0,1.6540596655328796,0.0,3.3569843106995894,0.0,29.619999999999994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3222241858565,11.050456081168516,5.131558479839333,0.0,17.570575756007745,12.841643245852019,0.0,30.336455634092403,0.0,0.0,0.0,0.0,17.59445508284072,20.50028802395211,17.9962956741132,94.78502165087433,,77.30219128838513,81.0177993375984,80.27867098092065,77.31072596969021,99.03377605705722,81.49598453213538,81.67289967486941,95.55781764545588,17.9962956741132,94.78502165087431,,76.54964026797694,80.56144525754591,79.7739438999751,76.55868365691916,99.8412100024222,81.07154407051623,81.25106103187294,96.24387051079202,4.665649723627064,71.7686395707673,,59.33452548264926,62.34354857824532,61.803653275092216,59.34030262370967,76.57167596075095,62.69699347706111,62.82913412146909,73.35565751089071,1.2854496910080857,6.770358689348166,,5.521585092027509,5.786985666971314,5.734190784351475,5.522194712120729,7.073841146932659,5.821141752295384,5.8337785482049584,6.825558403246849,2.3952934665655228,47.392510825437164,,38.52884177959812,40.54692917547024,40.18139608053912,38.53257089059651,49.32698243359708,40.78336230453595,40.87160305768441,47.72173775061659,29.254901960784316,0.0,2.2003388500461916,0.0,0.0,5.690909312799194,0.0,30.612891478514204,5.7294246819098,3.5594803476946333,0.0,0.0,0.6410185185185182,0.0,0.0,0.0,0.0,18.06648178302462,384.1846527265337,46.119048869700265,91.5222292110232,128.82519811982965,136.82519811982968,136.82519811982968,136.82519811982968,289.0,98.04081520117671,40.624498762813744,59.342918394393266,79.17999999999999,50.94,0.8,6.60681909085194,4.906890595608519,3.296084911925197,3.676298270169221,,3.6716170947790574,3.673665976654367,3.673964621645577,3.6716095101674853,3.6637385755017378,3.6734389582501654,3.673274334083776,3.667309058340618,0.23543463656608551,0.26259273358351576,,0.26225836391278984,0.26240471261816906,0.2624260444032555,0.26225782215482035,0.2616956125358384,0.262388497017869,0.26237673814884116,0.26195064702432985,1.529207610449828,1.638378577694924,,1.6371044269212767,1.637662303835896,1.6377435939844356,1.6371023611777062,1.6349563314066349,1.6376005057790326,1.6375556900471901,1.6359304031354036,167.72999999999976,104.87024894181612,60.805046008482776,,60.941978178290945,60.85867238081497,60.8261633856451,60.942510037391855,61.59183918939769,60.880679576006955,60.89718471882726,61.365996718385496,7.49073206727258,4.343217572034484,,4.352998441306496,4.34704802720107,4.344725956117507,4.353036431242275,4.399417084956978,4.3486199697147825,4.349798908487662,4.3832854798846785,4.989196098278155,4.444145015710132,,4.4463944707331695,4.4450265665375275,4.444492251875581,4.446403197997954,4.457001617692749,4.4453881126617345,4.44565918233465,4.453328118995968,0.0,5.725518628747795,4.287389167086587,6.928917154824894,0.0,0.6410185185185182,4.61009337994457,3.319670152011422,0.0,192.12978166282142,54.496668177271744,-63.708636182948254,-8.152102482094698,-2.0551172962241373,-6.370863618294825,125.96614701182762,147.25912059870194,8.006393390973049,4.750294212861353,7.012339076128665,318.0,17.0,0.8261326131600777,0.5980147427561446,0.0,0.0,0.08333333333333333,0.06846531968814577,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.06846531968814577,0.3003491900968691,0.18738409071527307,0.41592908571621773,0.26315516022776125,9.966255326250886,9.362192911203538,6.7920249978842735,6.083572269975269,5.918042005642927,4.931020173276475,4.624617739906425,3.5883168222476747,3.907774853050675,2.8759401724324243,3.0574714672456333,2.096956214833896,1.8966747051888413,1.2492817242623147,1.3553323225434777,0.8130882286537235,1.6177903837095067,1.1657341332235223,2.6485026267446585,1.7990110880039627,3.580160966060218,2.281427449342417,49.076637834041826,26.01812161149485,20.869561013895712,19.860943563373453,19.860943563373453,19.860943563373453,70.0,80.0,34.23548099999997,20.654518999999993,0.2903225806451613,43.04,4.444444444444445,3.194444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,5.0,5.0,31.0,0.0,1.0,32.0,5.0,0.0,2.0,30.0,5.0,15.0,27.0,0.0,0.0,0.0,10.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,4.0,2.0,1.0,14.0,4.0,0.0,3.0,0.0,0.0,2.0,3.0,1.0,0.0,0.0,1.0,1.0,2.917770732084279,3.9548430026110744,3.4094961844768505,3.86859344750081,4.382807579656953,4.539297441837384,4.549260991548575,4.743844580675851,4.850075229083814,4.32330449885775 +6196,Cc1onc(-c2ccccc2)c1C(=O)N[C@@H]1C(=O)N2[C@@H](C(=O)[O-])C(C)(C)S[C@H]12,0,30.97826086956522,6.551049999999997,3.8260869565217392,10.053140096618359,160.99819406063224,122.94737397826093,1.6575685279843906,6.613406521739127,6.940442908689688,8.050206369565215,239.4565690053803,29.816326530612244,6.515285714285714,4.591836734693878,8.931972789115646,145.6354048208489,115.03921079591845,1.9461617463265317,6.665063265306124,3.510361552028218,7.921874448979587,283.9167186773312,28.0,6.419362352941178,4.258823529411765,7.419607843137256,151.92419723479375,107.35556278823533,1.7567243388663656,6.544647058823529,3.664560639070443,7.902453717647059,247.68104970471683,23.60185185185185,6.422617592592592,3.509259259259259,6.046296296296297,153.16025138105354,86.54610825925923,1.6045336973249438,6.538121296296297,3.3744284407864655,7.960688944444441,219.776560182952,22.596774193548388,6.4997250000000015,2.9919354838709675,5.534946236559139,161.6331800642997,84.32833584677414,1.3055607557728148,6.568866935483871,3.9948601154918357,8.039718129032257,189.50443781122195,20.796296296296298,6.7900277777777776,2.9722222222222223,5.3580246913580245,162.89975246787301,75.51463456481481,1.2583599987929726,6.828797222222219,5.411065386374028,8.327222777777777,184.91880552178898,20.086021505376344,6.572903225806455,3.021505376344086,5.132616487455197,162.44398665131018,73.08595556989248,1.3338166443708597,6.63005053763441,3.883446170184521,8.105111526881718,190.29678620232482,21.439560439560438,6.3611285714285675,2.956043956043956,4.919413919413919,160.32932669477015,79.58308220879121,1.3418880197190433,6.434767032967035,3.7744878578211902,7.92890276923077,185.7018263450705,19.79268292682927,6.380365853658539,3.0121951219512195,5.012195121951219,159.4100025397918,71.68715632926829,1.386147598207768,6.456252439024391,4.4128839205058705,7.96589619512195,189.1592306900488,10.33506616257089,0.16444201323251414,0.030444544395875354,0.8015122873345935,4.875866414618776,1.5964621606252427,47.17072745604914,0.2824414371095916,0.14965297731568997,2.9781955967467137,0.10773457325141776,48.21064561213348,0.5739844141815509,0.006086247637051041,-0.009398564454173128,0.3049650862235253,1.6489290107977663,-0.0688035956200023,2.6785375656899877,0.011658127024277931,0.0059268363489062715,-0.034418043231123956,0.0022611476891323634,1.2024721044296145,1.7651895919048135,0.02768709162682085,0.0025352928799656014,0.019971088624485753,0.8185354040797164,-0.020741361520355734,8.230966800984103,0.027369208263533677,0.026651498387634816,0.48298302705564156,0.01630201575113977,5.807900353712479,-3.0828519918784565,0.0011337919204648913,0.002046973131918887,-0.10062661905762094,0.2610990532645647,-0.2865081714145916,-13.825865596548336,-0.07601627346287546,-0.002692087621648114,-0.1563468587881149,-0.0031635750630119694,-10.38624134724123,1.579204524666138,0.005694399810964085,-0.001834040667225738,-0.18264833221537902,-0.24866523026471798,-0.08185725484908092,7.047806658431918,-0.02955326936274211,0.010246181169583486,-0.17078003379856638,0.00443318043020915,1.155381063017906,-1.4711370160330461,-0.034867858643142124,0.00010368084738676534,0.006458727158160059,-1.6701945591884677,-0.013419628792105712,-6.986824937933204,0.006321860819141398,-0.034052393579780176,-0.18550895919367333,-0.016752791850451584,-4.642812141409912,-1.1391802345671482,-0.041575743947801655,-0.0022748344437481883,0.04327499644287254,-0.8059479688237539,0.17374513874626393,-5.260161239592861,0.026119858084729955,-0.03887719423948616,-0.5544464256278187,-0.02571324342439579,-0.5701419504097707,1.740662456635991,0.013834862066100243,-0.001009713063531693,0.0369970294355928,0.053421688582369065,0.029813814682560946,7.787484683941298,0.011016592302837849,0.014463721203182456,-0.030581476880179877,0.010138921492968272,2.5911714057931987,-1.231142514638757,-0.006349330305684899,0.0009258665910404349,-0.00776891511826272,-0.16990435499818146,0.11936690591817434,-5.359415438816911,0.01699241746522644,-0.008053799160864952,0.2574344318227601,-0.0036507203882152205,1.4900333407462727,,,0.47142857142857153,1.1785714285714286,0.5178571428571429,0.0,0.6607142857142857,-0.14285714285714285,0.9935636319420796,0.02479151159487523,0.037077225880589516,0.9318893919410297,0.22130860007857,0.25083608698273674,1.9254530238831093,0.47214468706130674,2.028221107153508,1.4081130436959093,0.22563893567965682,0.32204221140407585,0.0,0.6201080634575992,8.697766635998052,1425.0,301.3482999999999,176.0,462.44444444444446,7405.916926789083,5655.579203000003,76.24815228728197,304.21669999999983,319.26037379972564,370.30949299999986,11015.002174247493,1461.0,319.24899999999997,225.0,437.66666666666663,7136.134836221596,5636.921329000004,95.36192557000005,326.58810000000005,172.00771604938268,388.1718479999997,13911.919215189228,2380.0,545.6458000000001,362.0,630.6666666666667,12913.556764957468,9125.222837000003,149.32156880364107,556.295,311.48765432098764,671.708566,21052.88922490093,2549.0,693.6426999999999,379.0,653.0,16541.30714915378,9346.979691999997,173.28963931109394,706.1171,364.4382716049383,859.7544059999997,23735.868499758817,2802.0,805.9659000000001,371.0,686.3333333333333,20042.514327973164,10456.713644999993,161.88953371582903,814.5395,495.36265432098764,996.9250479999998,23498.550288591523,2246.0,733.323,321.0,578.6666666666666,17593.173266530284,8155.580532999999,135.90287986964103,737.5100999999996,584.395061728395,899.34006,19971.23099635321,1868.0,611.2800000000003,281.0,477.33333333333326,15107.290758571846,6796.9938680000005,124.04494792648995,616.5947000000001,361.16049382716045,753.7753719999998,17697.601116816208,1951.0,578.8626999999997,269.0,447.66666666666663,14589.968729224083,7242.060481,122.11180979443294,585.5638000000002,343.4783950617283,721.530152,16898.866197401414,1623.0,523.1900000000002,247.0,411.0,13071.620208262928,5878.346819,113.66410305303697,529.4127000000001,361.8564814814814,653.2034879999999,15511.056916584,475.41304347826093,7.564332608695651,1.4004490422102662,36.8695652173913,224.2898550724637,73.43725938876116,2169.8534629782607,12.992306107041212,6.884036956521738,136.99699745034883,4.955790369565217,2217.6896981581403,28.12523629489599,0.298226134215501,-0.4605296582544833,14.94328922495274,80.79752152909055,-3.3713761853801127,131.2483407188094,0.5712482241896186,0.2904149810964073,-1.6864841183250738,0.1107962367674858,58.92113311705111,150.04111531190915,2.353402788279772,0.21549989479707612,1.697542533081289,69.57550934677589,-1.7630157292302373,699.6321780836488,2.3263827024003625,2.2653773629489593,41.05355729972953,1.3856713388468807,493.6715300655607,-332.9480151228733,0.12244952741020824,0.22107309824723978,-10.867674858223062,28.198697752572986,-30.942882512775896,-1493.1934844272203,-8.20975753399055,-0.2907454631379963,-16.88546074911641,-0.3416661068052927,-1121.7140655020528,195.8213610586011,0.7061055765595465,-0.22742104273599154,-22.648393194706998,-30.83448855282503,-10.150299601286035,873.9280256455579,-3.6646054009800215,1.2705264650283523,-21.17672419102223,0.5497143733459345,143.26725181422034,-158.88279773156899,-3.7657287334593494,0.011197531517770656,0.6975425330812863,-180.3810123923545,-1.449319909547417,-754.5770932967861,0.682760968467271,-3.677658506616259,-20.03496759291672,-1.8093015198487712,-501.42371127227057,-105.94376181474479,-3.866544187145554,-0.2115596032685815,4.024574669187146,-74.95316110060911,16.158297903402545,-489.19499528213606,2.429146801879886,-3.6155790642722128,-51.56351758338714,-2.3913316384688086,-53.023201388108674,158.40028355387517,1.258972448015122,-0.09188388878138405,3.3667296786389445,4.861373660995585,2.713057136113046,708.6611062386581,1.0025098995582442,1.3161986294896035,-2.782914396096369,0.9226418558601128,235.7965979271811,-100.95368620037807,-0.5206450850661617,0.07592106046531566,-0.6370510396975431,-13.93215710985088,9.788086285290296,-439.4720659829867,1.3933782321485682,-0.6604115311909261,21.109623409466327,-0.29935907183364807,122.18273394119436,0.7219576425630292,0.5803189946704712,0.42645326573279324,0.310318099012244,0.2736166087588315,0.1898839658063183,0.15863259414681402,0.097810844334871,0.10332808916884811,0.05521278931493918,0.06527631732939707,0.032406304371066515,0.03896188753132127,0.017257209928315358,0.025895268553904154,0.008892712719401757,16.00200428395607,5.689803712788686,3.5703585217582234,2.1890997395375766,0.4408992863998017,-0.6294570230706982,4.023083569577979,0.9725334068599681,7.004121247922729,0.6593547403509514,14.565084598083766,10.337824473884647,32.060999262109696,11.701347151741325,2.9164445253678895,0.7157166090857072,3.516080706414386,2.2388859066988442,8.001939066675686,0.6173175922638223,3.7245677162090214,2.4347763193902376,24.434235595491167,14.681673568388963,0.30542712185861376,0.6600133824663147,0.7955436624755149,0.8462666743488402,0.8639880987818793,0.8639880987818793,1.4262597721134913,971.2036477342563,0.0,3.0,4.0,0.0,7.0,2.0,2.0,1.0,0.0,3.742039146912827,1.673776488254152,0.883243271371537,0.5873815219272585,0.48401440231500903,0.48401440231500903,8.476918405070819,1622.7574527568609,83.0763894134179,35.27733592949698,79.03027738370128,,13.0,620.0,39.98824167113708,19.490138947056174,5.563451491696996,11.454175413722904,5.563451491696996,16.66179468024159,20.771211599071872,30.33183534230805,10.473451861131776,4.523094936973348,13.200000000000003,33.0,14.5,0.0,18.5,0.0,0.02857142857142847,-4.0,0.2151059085841695,0.0531400966183575,-0.161965811965812,0.020320197044334964,0.18387951807228875,0.0,0.658695652173913,0.8892857142857139,0.4435897435897435,0.6055555555555555,0.8689655172413789,27.81978169437823,0.6941623246565065,1.0381623246565064,26.09290297434883,6.19664080219996,7.023410435516629,53.91268466872706,13.22005123771659,0.5301204819277112,0.21464646464646459,0.03787878787878787,0.409090909090909,0.3684210526315789,0.4928489825052543,-1.5993072412982312,-0.1102009305488059,-0.034767548723874594,-0.0940768965469548,0.5071510174947459,1.1385666840782016,0.029963380515057685,0.02475144965387395,0.03926092014062766,-4.097169913182515,0.6645134618848224,0.5723396327075713,1.137896071625293,0.8468906430496729,0.3737419625384401,1.177856864115385,0.6641500998429731,0.9234352458378359,0.557034031246742,0.5127934669253461,0.5923277055468033,0.8860220076316269,0.8368574371995814,0.5379795010170305,0.7798106080394489,1.2851345726970036,0.6459603484712575,1.128104902938436,0.8182948856444185,1.0061627532103818,0.5262943000810522,0.4378654159805874,0.5379851187737267,0.8490676674743616,1.530686512109988,0.8202585283202181,0.8754538727008011,1.197916666666667,0.8247223299158556,1.2786719312832182,1.492240723776366,1.516239707941607,0.8391303247136226,0.8159078380656726,0.8572692025926144,1.2026513359893365,0.8194487262128303,1.0134576895223273,1.1064582391417233,1.2402046561168596,1.078853104494785,1.0553707756289998,0.8238879035691054,1.0408625338657949,0.9747462947263799,1.1087575298073318,0.996521430933153,0.9232266405934881,1.005266206349932,1.58583058420913,1.503233417148164,0.9492924528301889,1.504336463628271,0.9494327101010114,1.0207161769394515,0.8023964084761407,1.5703933464638993,1.6434405900583051,1.5794935149136933,0.9687973056916935,0.9623210937857238,1.3818693459912712,1.1312582165685576,0.8333650334753501,1.1554988369087622,0.8846790429971028,0.974257437948332,0.7488611432848828,1.3748883566201442,1.197400436183329,1.3688420713876677,0.9199742000768436,0.8362884086511138,0.9074763963726552,0.9710930387145369,0.8785053390006222,0.9672775854282706,0.9429412081410935,0.8395756549544546,0.9465345282327355,0.8981935804891367,0.9203773835539903,0.8965217039161035,0.938548646589733,1.2189657037637638,1.0692623547863351,0.771403843998424,1.0195797860101246,1.0303522685007158,0.8913271163436095,1.2033116694030417,1.0113852330876405,1.08272358115106,1.0447281785078475,1.080323906324818,0.9670859005703033,6.5,0.20386491174369964,4.222222222222223,4.159722222222222,2.543333333333334,0.9516666666666668,0.713469387755102,0.5825184240362812,0.42858717561098514,0.3340740740740742,14102.60675515893,14661.158540135004,2828.5187650500393,2646.193508968972,11.416743947662155,0.4433837693142809,6.354744982851705,0.796569961260486,1.0,0.3684210526315789,1.781522809144186,3.849785467802861,4.640318684685476,4.936180434129755,5.039547553742004,5.039547553742004,0.2096774193548387,0.009707852940176172,0.09178743961352659,0.0885047281323877,0.05190476190476191,0.0244017094017094,0.020984393757503,0.017652073455644884,0.014778868124516726,0.011931216931216933,0.5413304636162821,21.240374609781476,7.921875,3.6548442906574397,164.8031956447653,1.0,4.293095942897199,149.21083806243834,,119.8352446721544,123.92282395257104,123.52381622228529,119.85212882228129,154.66008495797539,124.80095760618961,125.19978954454017,148.859678760153,0.05553756552234494,0.037011512553336,-0.30871095760087813,0.38048710050057766,0.33818174465443995,-0.043097542376485685,0.056783893531972524,0.041276262943508536,0.039603865256911855,-0.011556676555670532,0.020988134271953476,0.024942045250831085,0.17079615787052838,0.1683699383300085,0.08327577010182109,0.024916759156492843,0.16787486253224482,-0.012992078379253619,0.1744931071638279,0.09690224119952345,0.17808866128613005,0.1621730377894712,0.15131647398923764,0.12046925072189381,-0.29829049406990776,0.006894782532622955,0.06723612300784544,-0.12554594689028653,0.053549263056457005,-0.1794644298380256,-0.29310265798699947,-0.2691399471720574,-0.017988867778882936,-0.05249717612869459,-0.029364529579833255,-0.21543460402503417,0.15280062070481262,0.034628618921810704,-0.06024201391807378,-0.2278796409007913,-0.05099918847636438,-0.05127415911757165,0.1494105992959011,-0.104635033956703,0.06846627012284141,-0.05734345789279961,0.04114909723421409,0.023965268424597154,-0.1423442281734842,-0.21203741037784807,0.0034055640984008975,0.008058176100628943,-0.34254313329440417,-0.008405854597173799,-0.14811781192993279,0.022382908413995997,-0.22754237296560653,-0.06228904488218216,-0.1555006099235755,-0.09630263362914655,-0.11022476456829693,-0.2528292078801984,-0.07472059407978476,0.05399168188273485,-0.16529328334495963,0.10883135412255429,-0.11151325246136948,0.09247884571057133,-0.25978229726412655,-0.18616857342529092,-0.23867216111200784,-0.011826059227596806,0.1684229621035144,0.08413216181279856,-0.03316564867590823,0.04615902964959574,0.010956347865109814,0.01867492723465778,0.16509146888178075,0.039004872711234796,0.09664840260859979,-0.010268458160903236,0.09411019310678753,0.05374687214603618,-0.119122847911455,-0.038611363245153234,0.030411576504520525,-0.009692820984813631,-0.034845982344548214,0.0747696430659059,-0.11361740061801023,0.060162622167345525,-0.05381649804317373,0.08643973287180107,-0.033886247265263826,0.03090672862450252,6.083643418932058,9.519423095295458,14.056030826205603,19.878571719580677,40.63443466398079,45.57727835309534,47.01285541362875,47.1170494701979,47.1170494701979,56.79019100029823,39.42716522348546,6.317890199030391,9.017181919314124,0.0,17.363025776812776,5913.670074922312,4839.4194199404965,1874.02674471219,168.0,48.0,68.0,96.0,113.0,127.0,134.0,141.0,154.0,400.09726525591043,31.0,5.0689042022202315,5.968707559985366,6.9167150203536085,7.840312983320164,8.79346036105272,9.728002573001161,10.683202261599535,11.624744082126579,12.581301888908374,0.7572463768115939,1.0108695652173916,1.1212347690172746,0.7247505004470544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7021904972663371,0.9970161977834608,1.0263070394882678,0.6719867653696049,5.0,1.0,0.0,1.0,0.0,0.0,4.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,3.0,1.0,1.0,0.0,0.0,24.640857850742684,28.433340547536602,0.0,5.907179729351506,5.907179729351506,9.589074368143644,0.0,0.0,11.761884949391115,35.4884985994335,20.771211599071872,10.310473944914555,12.011146117099809,292.11511605088805,-947.9208377748407,-65.31687952878568,-20.60697473423567,-55.76004928087299,300.59203445595887,674.8366149820201,17.759509884632216,14.670361195261309,23.27022810282829,0.46153846153846156,0.7360336214367262,0.16882214464872716,72.75333811904396,0.1146587453654748,51.9201289065033,0.263966378563274,7.0,0.12903225806451613,0.3225315155903354,0.6969751581370919,0.8400953445623992,0.893658923969677,0.9123727757259517,0.9123727757259517,0.5606199999999997,,2.303571428571429,1.9609845219659925,1.4545191904946573,2.2991871333729694,-6.541878845206732,1.7887851897184825,1.734619084590567,-2.7953673998489466,99.02920000000002,24.013233884029518,0.0,15.373361591982254,0.0,42.975788523554094,0.0,41.655534252879484,0.0,11.257379486545457,4.143134726391533,0.0,5.572154032177765,3.044522437723423,7.19668657083435,5.58724865840025,8.91018077801329,7.853604813097837,10.67435937150647,34.83333333333332,9.121219680187691,3.9796625424606127,0.0,5.202137999853548,0.0,0.0,1.7165334662331437,0.0,46.500000000000014,0.0,36.961635623890004,0.0,0.0,0.0,0.0,0.0,-2.202526067681675,51.57679937479463,10.423315998847038,0.0,0.0,50.044814659113,9.589074368143644,6.923737199690624,29.965710494024506,34.8549302792814,0.0,11.257379486545457,0.0,33.3385230205645,32.300762874251504,35.394498846859705,298.4216761248767,,239.69938021604014,247.70557758214449,246.94373821667813,239.73482295210454,311.06275706530505,249.47414484168505,250.2756777258953,298.4745499378897,35.3944988468597,298.42167612487674,,237.74034502081895,245.88466338317608,245.59311325407592,237.77946732307416,315.86204876115755,247.81313002266072,248.6649600044899,300.514724920155,5.1209234362826175,223.53908383792555,,182.4528706646497,188.9031672729866,187.74541090193836,182.47958801893532,236.08223548109783,190.3129378067908,190.9817597027201,228.97939287786596,1.2640892445307037,10.65791700445988,,8.560692150572862,8.846627770790874,8.81941922202422,8.561957962575162,11.109384180903751,8.909790887203037,8.938417061639118,10.659805354924632,2.632801188898544,149.21083806243834,,119.8352446721544,123.92282395257104,123.52381622228529,119.85212882228129,154.66008495797539,124.80095760618961,125.19978954454017,148.859678760153,45.8627450980392,0.0,5.128317279812139,0.0,0.0,0.0,0.0,47.210123816460325,0.0,2.723899045729403,0.0,1.340372584282667,-2.2832409285773285,1.2812790532879819,-0.7073918388776794,0.0,0.0,30.911391207001827,436.25239043899717,81.95004922063255,177.0901315189316,213.4546594955319,227.06429996996872,231.81918747213217,231.81918747213217,1108.0,138.20535093256774,156.45476006784975,80.98189138814492,140.87,115.57,0.8571428571428571,8.292910319447664,5.954196310386875,3.8365603348701365,5.219112810045578,,5.218480948870368,5.219870741850578,5.217932181672667,5.218480532458204,5.223978267546375,5.220842813482625,5.221651796522361,5.2264127927433455,0.13702001195964772,0.18639688607305635,,0.18637431960251313,0.18642395506609205,0.18635472077402385,0.18637430473065014,0.18657065241237053,0.18645867191009374,0.1864875641615129,0.18665759974083376,2.374195636232931,2.6819468448695254,,2.681825770761723,2.682092056671529,2.6817206068148107,2.6818256909660536,2.6828786490291723,2.682278264564257,2.6824332051357525,2.683344569438651,274.2200000000003,744.5269197578489,177.04843944050666,,176.13321187068348,176.02323913185808,176.42016110219168,176.13350432195728,175.91022220963654,175.93585173852793,175.84590829892022,175.36360391257963,26.590247134208887,6.323158551446666,,6.29047185252441,6.286544254709217,6.300720039363989,6.29048229721276,6.282507936058448,6.283423276375998,6.280211010675722,6.262985854020701,7.642368426821912,6.20604278146982,,6.200860011554718,6.200235444024648,6.202487846185559,6.200861671951572,6.199593180991883,6.199738867022419,6.199227507698058,6.19648097223841,4.494746160975868,38.242914677177986,17.742303527198146,1.3767195831181689,-1.8627121845667,7.287338372001728,0.0,5.128317279812139,0.0,338.9948823791845,173.13871805449872,-561.8394586635889,-38.713781545505555,-12.213901275295411,-33.04937992138758,178.16304820744728,399.98048712367927,10.52618849811854,8.69522798094955,13.792430590471703,2026.0,47.0,2.9410269837238796,2.4652235020153137,0.2041241452319315,0.3535533905932738,0.8747789381031186,0.45327124440933564,0.06804138174397717,0.07905694150420949,0.0,0.0,0.1111111111111111,0.07453559924999299,0.49666240789366156,0.3161259379531365,1.0846510735528079,0.7015103350064971,1.8517654061899025,1.190526005314355,20.214813991764817,16.248931850773193,13.220051237716591,9.619861069379564,13.133597220423912,9.114430358703279,10.787016401983353,6.651137414771228,9.919496560209419,5.300427774234161,7.376223858221868,3.661912393930516,4.948159716477802,2.1916656608960503,3.4699659862231567,1.1916235043998356,6.207556124516538,3.9490750728069783,11.49965608478334,6.155841665377277,17.710877317109663,8.225539146420502,90.835610982888,43.741808443720736,31.76005491770392,28.415409117479385,28.005045873352174,28.005045873352174,158.0,195.0,53.94227399999998,28.005725999999996,0.43478260869565216,205.09,10.534722222222221,5.902777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,11.0,11.0,46.0,0.0,0.0,49.0,11.0,3.0,8.0,41.0,14.0,31.0,35.0,0.0,0.0,0.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,7.0,1.0,3.0,28.0,9.0,0.0,3.0,5.0,0.0,4.0,4.0,1.0,0.0,0.0,1.0,2.0,3.7013019741124933,6.816453461200293,4.287028906051602,4.813200099492253,5.360998695421185,5.703574119618464,5.900068571800528,6.197716230751974,6.469298765234531,6.700404334145324 +2170,Clc1ccc2c(c1)C(N1CCNCC1)=Nc1ccccc1O2,0,29.68421052631579,6.1111473684210535,3.5789473684210527,7.305393112410657,160.56624705177327,120.2633086578948,1.6723871178311585,6.250697368421053,2.709934701866692,7.676748552631577,240.72188146515768,27.536585365853657,6.373268292682926,4.2682926829268295,7.588075880758807,146.21241541411703,106.03589409756101,1.9133760231707322,6.5424756097560985,2.879905650908361,7.784298878048777,279.8852811374071,24.014084507042252,6.343195774647888,3.8732394366197185,6.305164319248827,154.33164384147875,90.91839094366195,1.67174441492107,6.47909295774648,2.753434185359069,7.807405521126757,239.30124297334916,20.47422680412371,6.226524742268041,3.484536082474227,5.4581901489117985,159.84105387050786,76.02616891752577,1.4552020166967419,6.34389381443299,2.6267235161851437,7.771001072164947,203.2485221473762,19.615384615384617,6.187439560439561,3.3736263736263736,4.7826617826617825,160.14332281391677,72.49576339560437,1.4496582563377471,6.29861098901099,2.5402704291593188,7.732916835164835,200.43303976100324,21.943181818181817,6.150148863636363,3.465909090909091,4.1982323232323235,155.7025280934016,82.49442390909093,1.575131060846477,6.291884090909092,2.526445005611672,7.6786727954545455,218.81821726519368,18.94736842105263,6.016,2.9894736842105263,2.666666666666667,152.81828905871944,68.79499573684211,1.5459230891394207,6.165773684210525,2.3546242148581324,7.58340770526316,203.0155161530381,14.77,5.81487,2.32,1.6877777777777778,159.3184772916449,50.81744664000001,1.2946721931643301,5.962911,2.090524691358025,7.497884000000002,156.32264659643172,11.506666666666666,5.583561333333333,1.76,0.7437037037037036,167.6181308211142,37.519756093333335,1.0491295796276532,5.733325333333334,1.7465020576131682,7.387912080000001,114.27859429683447,11.058171745152356,0.09058116343490302,0.016914973055931686,0.5623268698060944,3.535891385383536,1.548726032939312,52.077002407894746,0.24871815085515786,0.09638095567867033,0.3524428324680255,0.06132734418282548,51.28900630705126,0.37315046280656705,0.0003353962570096493,-0.00705538938197042,0.1680967502195797,1.0922485217465288,-0.2965389290694046,1.7739801646341522,-0.01265659173346324,0.001805693872035642,0.0003043887808096608,-0.0027138063137626066,0.10616689826068988,0.0900862237134719,-0.005571156022004611,-0.001772314098764299,0.04034177363349067,0.4065625585529867,0.0008854891045231952,0.4443943767605661,-0.0017979238877182263,-0.004640666575631093,0.0139756020918765,-0.004765927948577917,-0.20654754040694476,0.16917497215638105,0.0016889939172401902,0.001073490891791041,0.07305023274409571,0.5586806690365913,0.0980941988438514,0.8990508376288672,0.01440374126004124,0.0009135641259959257,0.07380680127509384,-0.0023884464617186145,4.177520835655159,0.11071200267876176,-0.008914882347569328,-0.0011490390103597846,-0.022708593345712475,-0.13845191776863058,0.09677048307956207,0.6727997005494514,0.03112557113431868,-0.008541568749809759,-0.02968108567552274,-0.0066211712504946705,4.931145894200614,0.8933832787710905,0.0032296619239486272,0.002323749688964115,-0.14904935784437173,-0.9970896250905485,0.23173287869517428,4.02058635227273,0.0010487409287500483,0.009269911546210024,-0.03700882850521489,0.011619570589901785,0.94759918846536,-1.4958448753462608,-0.018771745152354555,-0.0017944448491479506,-0.26481994459833796,-1.638740125166718,-0.2642073490973264,-7.179958355263157,-0.041993173223442044,-0.019617880886426575,-0.10772266743676756,-0.008338994875346254,-13.537696797536299,-1.9934349030470915,-0.004326216066481985,0.0003115217852164612,-0.08232686980609417,-0.5657484354160256,-0.35236276280444784,-9.510444585,-0.055064259890630025,-0.009119613573407176,-0.04969980950137235,-0.0029845415512465205,-13.64122456267642,-1.0560664819944594,0.006707327793167132,0.00042987935906963165,0.09872576177285322,0.526616736773708,-0.19738195908820988,-4.975926256666672,-0.03293069628733345,0.003998623268698081,0.024345766830862044,0.0008312621329640166,-3.233302514041497,,,0.4885281385281386,1.3181818181818181,0.6363636363636364,0.022727272727272728,0.6818181818181818,-0.045454545454545456,0.7486671803950952,0.004752294285626361,0.020388657921989996,0.8925440740047208,0.2632546010445433,0.2280937211413347,1.641211254399816,0.491348322185878,2.099087729102503,1.63387558823764,0.2891750113837929,0.09525376760026855,0.0807833618808017,0.4652121408648631,8.239426047684221,1128.0,232.22360000000003,136.0,277.60493827160496,6101.517387967385,4570.005729000002,63.55071047758402,237.52650000000003,102.9775186709343,291.7164449999999,9147.431495675992,1129.0,261.304,175.0,311.1111111111111,5994.7090319787985,4347.471658000001,78.44841695000002,268.24150000000003,118.0761316872428,319.1562539999999,11475.29652663369,1705.0,450.36690000000004,275.0,447.6666666666667,10957.546712744992,6455.205756999998,118.69385345939597,460.01560000000006,195.49382716049388,554.3257919999998,16990.38825110779,1986.0,603.9729,338.0,529.4444444444445,15504.582225439262,7374.538385,141.15459561958397,615.3577,254.79218106995893,753.7871039999999,19715.106648295492,1785.0,563.057,307.0,435.22222222222223,14573.042376066427,6597.114468999998,131.91890132673498,573.1736000000001,231.164609053498,703.695432,18239.406618251294,1931.0,541.2130999999999,305.0,369.44444444444446,13701.82247221934,7259.509304000001,138.61153335448998,553.6858000000001,222.32716049382714,675.723206,19256.003119337045,1800.0,571.52,284.0,253.33333333333334,14517.737460578346,6535.524595000001,146.86269346824497,585.7484999999999,223.6893004115226,720.4237320000002,19286.47403453862,1477.0,581.487,232.0,168.77777777777777,15931.847729164492,5081.744664000001,129.46721931643302,596.2911,209.05246913580248,749.7884000000001,15632.264659643173,863.0,418.76709999999997,132.0,55.77777777777777,12571.359811583565,2813.981707,78.684718472074,429.99940000000004,130.98765432098762,554.0934060000001,8570.894572262585,420.21052631578954,3.442084210526315,0.6427689761254041,21.368421052631586,134.36387264457437,58.85158925169385,1978.9260915000002,9.451289732495999,3.6624763157894726,13.392827633784968,2.3304390789473683,1948.9822396679479,15.299168975069248,0.013751246537395621,-0.2892709646607872,6.891966759002767,44.78218939160768,-12.15809609184559,72.73318675000024,-0.5189202610719928,0.07403344875346132,0.012479940013196092,-0.11126605886426687,4.352842828688285,6.396121883656505,-0.39555207756232735,-0.12583430101226523,2.8642659279778373,28.865941657262056,0.06286972642114685,31.552000750000193,-0.12765259602799406,-0.3294873268698076,0.9922677485232315,-0.33838088434903213,-14.664875368893078,16.409972299168963,0.16383240997229845,0.10412861650373098,7.085872576177284,54.192024896549356,9.515137287853586,87.20793125000012,1.3971629022240002,0.08861572022160479,7.1592597236841025,-0.23167930678670562,405.21952105855036,10.07479224376732,-0.8112542936288089,-0.10456254994274039,-2.0664819944598354,-12.599124516945382,8.806113960240149,61.22477275000007,2.832426973223,-0.777282756232688,-2.7009787964725693,-0.602526583795015,448.73427637225586,78.61772853185596,0.2842102493074792,0.2044899726288421,-13.116343490304713,-87.74388700796827,20.392493325175337,353.81159900000023,0.09228920173000424,0.8157522160664821,-3.25677690845891,1.022522211911357,83.38872858495168,-142.10526315789477,-1.7833157894736829,-0.1704722606690553,-25.157894736842106,-155.6803118908382,-25.099698164246007,-682.0960437499999,-3.9893514562269945,-1.8636986842105245,-10.233653406492918,-0.7922045131578942,-1286.0811957659485,-199.34349030470915,-0.4326216066481985,0.031152178521646118,-8.232686980609417,-56.574843541602554,-35.236276280444784,-951.0444585,-5.506425989063002,-0.9119613573407176,-4.969980950137235,-0.29845415512465207,-1364.122456267642,-79.20498614958446,0.5030495844875349,0.032240951930222375,7.404432132963992,39.4962552580281,-14.803646931615742,-373.1944692500004,-2.4698022215500086,0.29989674515235604,1.8259325123146533,0.06234465997230124,-242.49768855311228,0.6791339464063205,0.5821112686165925,0.4323865235235727,0.312038473894003,0.2765749742808436,0.16626177900483508,0.17421817813397558,0.08636801128200187,0.10950405547147492,0.04521758345376854,0.07103126002780581,0.024061903657834498,0.04397998338451214,0.011717260202427119,0.02878156795931066,0.00638068457923196,17.001102806463805,5.693165685006006,3.520773751443973,2.1893677120464226,0.4071307681679983,-0.49069141084288864,3.221777931249869,0.9938463986971171,6.010089407642602,0.7740045024362674,14.554300120489714,10.95349597380013,35.450517278407105,11.705057971984678,2.2078323624377103,0.7783015688753046,3.463555314698409,2.239904607303114,3.5110844236750767,1.3043273078464037,3.6770463796834996,2.4359872620626293,22.45586321038226,14.706815413605982,0.2882716886712227,0.5942568128997935,0.6962764605914745,0.8265675132964782,0.8454151166386932,0.8454151166386932,1.5666692023486601,738.4339512236613,0.0,1.0,4.0,0.0,11.0,0.0,1.0,0.0,0.0,3.6379409421952427,1.9290254976001702,1.3592495909053484,0.6315789473684195,0.5263157894736814,0.5263157894736814,122.76225334178386,866.4688921710217,39.68692974540295,22.801812951868996,48.12358386594567,,9.0,342.0,0.0,0.0,0.0,5.022633313741326,54.764506842355935,0.0,0.0,42.46456947923127,10.216698334856808,21.330207576668233,10.747619047619049,29.0,14.0,0.5,15.0,0.0,0.011471861471861432,-1.0,0.15471177944862124,0.07233082706766902,-0.08238095238095222,0.02263316393751169,0.11864257451859628,0.0,0.6013784461152882,0.8205627705627702,0.446666666666667,0.5290476190476192,0.7979296066252585,16.470677968692094,0.10455047428377995,0.4485504742837799,19.635969628103858,5.791601222979953,5.018061865109363,36.10664759679595,10.809663088089316,0.5953574254814037,0.06645990252547629,0.0,0.31634913602126713,0.23529411764705882,0.380603183287863,-0.641480241350323,-0.03852677716176215,-0.01688105898290324,-0.05345668677919358,0.6193968167121369,1.0439503317963805,0.03867110651485683,0.027472377152536333,0.040151935838322335,-4.996111110614166,0.587365279339166,0.850780973673442,1.4830600332857575,0.6757178901838278,0.5520285139839397,1.3182495913446823,0.5914747109263804,0.9226194437008821,0.7613924205584859,0.8391985261310255,0.8332320575646947,0.8620344544660619,0.7155702249569561,1.137927082984269,1.4113888641689578,0.9998959272878648,0.8879310896765699,1.1157990487434517,0.7178122153535532,0.8763832123066546,1.0257690714288337,0.923498913839977,1.05489122397689,0.8756896760487441,0.8764261770964609,1.2147098238817688,1.2848453224121514,0.9907191102534149,0.9673931543950863,0.9661892143180201,0.8743031536971165,0.8635120732605253,1.1376665525891743,0.965481995572442,1.2249391754109915,0.8388856083030102,0.828260917439274,1.30236052961039,1.3048565601704876,1.1606939858171381,1.1898027402752096,0.9701668999851778,0.8268916726863403,0.7870540104876147,1.2000439152696645,1.3196569941602168,1.2320671923609972,0.8267474714455326,0.7159154957642557,0.904761354531498,0.8645552733766101,1.3970275414240927,1.3094640056079057,0.9001225333786607,0.7224172474517189,0.9139353614455211,0.8032771461330542,1.0900769192799644,0.6881525166364036,0.9101615626617251,0.9833917835671342,1.0624665900097245,0.9772821863851755,1.3943349753694576,1.350412503747836,1.1362046249324917,0.9882237488381661,1.1369333961790409,1.0547175085019407,1.1923651414629148,1.0099927475830874,1.2264446565973064,1.3674336172344685,0.8895852956287191,0.6737313763928199,0.917709359605911,1.001366872031956,1.0953861780318006,1.3663609352310166,1.279691235033273,1.0278893774057094,1.016336503424753,1.0123124870810147,1.3022654521489796,1.6447945891783564,0.6962179075509124,0.4837242442902368,0.5771756978653528,0.6845534997533683,0.9200696001134748,1.6359666823464087,1.278818685396597,0.9346319370246808,0.712465133286993,0.956172205256629,1.180214758674494,3.5,0.0,2.222222222222223,1.125,1.5266666666666668,0.6252777777777778,0.4190022675736961,0.20050311791383219,0.0839081002771479,0.0,4464.869325940956,4920.386492765501,2181.47039903943,2018.514766733664,11.201270141634279,0.43988087019636624,6.274045684427618,0.7853344883089056,1.0,0.23529411764705882,1.6099865712483425,3.318902015843415,3.888677922538237,4.616348566075166,4.721611723969904,4.721611723969904,0.14,0.0,0.06349206349206352,0.028846153846153848,0.04361904761904762,0.016899399399399394,0.013516202179796644,0.01002515589569161,0.010488512534643488,0.0,0.3268865349667962,15.5232,6.857142857142857,3.298611111111111,133.92337538654567,1.0,4.047534784826093,87.89381399643543,,66.29576153600836,65.9677594669314,65.57034951381942,66.2818464162513,94.26637422473341,66.68936900869797,67.33041427175449,85.54104039990315,0.03374431790410087,0.0037027152698329477,-0.4171091114742426,0.2989306740358042,0.30890330123306464,-0.19147281233893013,0.03406455983659346,-0.0508872862312082,0.018734965422585577,0.0008636543370115939,-0.04425116316259133,0.002069973780055356,0.008146574839820479,-0.0615045756837554,-0.10477782571121447,0.071740789564976,0.11498163100643068,0.000571753225354283,0.008533409301860988,-0.00722876027156239,-0.04814920689418003,0.039653529039051755,-0.07771293559313465,-0.004027130866416267,0.015298638514141672,0.018646193680808717,0.06346394335015466,0.12990706414097802,0.158002780104059,0.06333863882799166,0.01726387457148596,0.05791190233007692,0.009478678848565337,0.2094149588977378,-0.03894586490812839,0.08145060972025167,0.010011781805368986,-0.0984187220555639,-0.06793028913261222,-0.04038326205813892,-0.039156156872056404,0.06248392615697324,0.012919324643145295,0.1251439471839946,-0.08862299288966334,-0.08421531931200639,-0.10796442172281295,0.096144305558961,0.08078941974858808,0.03565489558179116,0.13737826724762237,-0.2650582176444245,-0.2819910218996715,0.14962806446494006,0.07720464247886931,0.004216583812416599,0.09617990899691306,-0.10500661411116206,0.18946802188697756,0.018475678448367273,-0.13527054108216435,-0.20723674150912227,-0.10608617839439483,-0.4709359605911329,-0.46345884150764566,-0.1705965700052771,-0.13787195927726234,-0.16883839429916378,-0.20354519986118094,-0.30564578851675306,-0.13597515083135725,-0.263949289960705,-0.18026803607214426,-0.04776065908659982,0.018416924708444495,-0.14640394088669945,-0.16000164421189061,-0.2275178148427595,-0.18262273451357947,-0.22139220519815195,-0.09462049332454793,-0.1410152368636444,-0.04866575572470871,-0.2659678076235416,-0.09550100200400798,0.07404771079129949,0.025414132062059832,0.1755665024630542,0.1489346474132678,-0.12744795069635434,-0.09554939851746026,-0.132401660972909,0.041487690597604224,0.06907720795562143,0.01355451053751662,-0.06304084923550136,13.252917287678084,19.987111622272764,6.4829413267486204,17.92147879419076,32.80505269675158,39.648631112063086,41.540333647064095,41.64643891022199,41.64643891022199,46.179930040255066,35.94526294122808,6.361850250443444,2.095582887205908,1.7772339613776373,10.23466709902699,3705.1022291208133,2514.4410395152304,1492.5972185993335,156.0,35.0,48.0,66.0,92.0,104.0,123.0,143.0,153.0,313.0981898120004,25.0,4.795790545596741,5.659482215759621,6.546785410760524,7.43307534889858,8.329175442077402,9.224539091375995,10.124348500692786,11.023616684666488,11.9250947166699,0.7192982456140353,0.9814736842105267,1.1198826805119242,0.6874947964365997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7144766467065872,0.9728586171310626,1.0049545750757087,0.6687938980363588,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,4.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,14.953561288656857,17.272517893724736,5.749511833283905,0.0,0.0,0.0,4.992404732635669,0.0,0.0,23.733674027155736,30.33183534230805,31.201658937391628,5.563451491696996,195.6656203076329,-329.7808185801991,-19.806365481994973,-8.678442594215767,-27.481734881683256,318.42787364941677,536.6880735908227,19.880564263407976,14.12337035765323,20.641848984262413,0.4444444444444444,0.9411232501994033,0.26955908994880357,42.68773233257421,0.09056744450935258,64.9485769531029,0.05887674980059638,5.0,0.0,0.30678521513950974,0.6324214668250282,0.740993070612472,0.8796517395199329,0.8997097829332777,0.8997097829332777,3.4292000000000025,,1.3256302521008405,0.959325316894866,0.9805438548466842,1.3379508818231125,-2.402894764756166,0.93531153649505,0.879067952217064,-1.2736797330507026,88.60770000000004,4.736862953800049,0.0,10.216698334856808,4.992404732635669,0.0,26.1790256236503,53.05065428466959,0.0,11.49902366656781,3.9318256327243257,0.0,5.25227342804663,0.0,6.778784897685177,2.70805020110221,8.39638057119949,5.37989735354046,10.06010661197771,27.333333333333343,13.553123075361833,0.0,0.0,0.0,0.0,0.0,4.062902966742254,0.0,37.296000000000014,0.0,0.0,0.0,0.0,0.0,0.0,4.876404320987654,0.9342129629629631,42.55554185945312,10.05365155780638,5.687386274683562,11.49902366656781,36.91455514025805,0.0,0.0,5.563451491696996,47.45697421186694,5.022633313741326,0.0,0.0,26.124802264590787,27.15011257485031,29.803455202963796,175.7876279928709,,132.54175919014742,132.01003841656308,131.26489173388444,132.51121001300925,189.84341832115203,133.42460776201685,134.68876566475015,171.7768151996521,29.803455202963796,175.7876279928709,,131.45715262024675,131.22513588455814,130.46262857991897,131.41652292788132,190.93564321422298,132.6593528685209,133.96952824929983,172.35576053285695,4.853411722416169,118.13936327121948,,90.59376673731036,89.55189703639606,88.08116319306383,90.58485242436628,129.43395384783958,90.64976637124101,91.65713176418802,117.32596343318441,1.354702509225627,7.990346726948678,,6.024625417733973,6.000456291661958,5.966585987903838,6.023236818773148,8.629246287325092,6.064754898273493,6.122216621125006,7.808037054529641,2.4669116854291406,87.89381399643543,,66.29576153600836,65.9677594669314,65.57034951381942,66.2818464162513,94.26637422473341,66.68936900869797,67.33041427175449,85.54104039990315,36.96862745098038,0.0,0.0,6.204052395649618,0.0,0.0,0.0,38.18827385287693,3.7586837049634667,3.3699524264438288,6.0629675296044345,0.0,0.0,2.2888117283950615,0.0,0.0,0.0,25.414168125381636,483.825339939226,61.179489707437014,126.11827660204978,147.769761056453,175.4212455108563,179.42124551085635,179.42124551085635,967.0,122.06190795649805,30.268154017823626,64.507318696276,36.86,36.86,0.8,8.85269397418606,5.643856189774724,4.239564206802454,4.621891236868731,,4.6192882328729,4.614254722798751,4.616248816358105,4.619377503498864,4.621391388649147,4.615490477438223,4.61572639456636,4.6192251253499155,0.1927074639455661,0.21008596531221502,,0.20996764694876816,0.20973885103630688,0.20982949165264114,0.2099717047044938,0.21006324493859757,0.2097950217017374,0.2098057452075618,0.20996477842499617,2.2329178429112497,2.3192613403231284,,2.318697991440403,2.3176077250936893,2.318039791141206,2.318717316877325,2.3191531864907025,2.317875501640072,2.3179266145391533,2.3186843296053135,224.89999999999975,149.91560483756004,125.7865176639544,,125.66591016860187,126.3166138484658,126.19165174038599,125.65021485297956,125.4553738463425,126.18417754558963,126.14738417699934,125.70225835940875,6.814345674434548,5.7175689847252,,5.71208682584554,5.741664265839355,5.735984170017545,5.711373402408162,5.702516993015568,5.735644433890438,5.733972008045424,5.713739016336761,5.798529861706123,5.623043526104641,,5.6220842392475525,5.627248923812925,5.626259157256255,5.621959334284599,5.620407468818369,5.626199926585714,5.625908299421836,5.622373442063271,6.0629675296044345,7.165216049382716,4.060823316466505,1.7999584278155711,2.5062866118669698,13.553123075361833,0.0,3.7586837049634667,0.0,269.8987361027125,100.59042239122446,-169.5381732639105,-10.182323633229101,-4.4615308753660665,-14.128181105325876,163.70169813774265,275.9078469173843,10.220468744013067,7.260732813615377,10.611840266053242,936.0,39.0,1.2275073282373883,0.6053552716628544,0.0,0.0,0.27497165237684323,0.07165861765198955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25343678769327627,0.10773573843150692,0.36428932449398144,0.10654541759585062,14.940946820939052,12.806447909565035,10.809663088089318,7.8009618473500755,9.680124099829525,5.819162265169227,8.362472550430828,4.14566454153609,7.227267661117344,2.9843605079487237,6.534875922558134,2.2136951365207738,4.573918271989262,1.2185950610524203,3.5401328589952112,0.7848242032455311,3.039898418115603,1.1729436001457354,5.091030951943674,1.6395356775726821,8.724267806971662,2.2965667094517794,70.88632022795393,46.50889249403963,31.613082578597073,26.67243007641617,26.330542969737895,26.330542969737895,120.0,143.0,45.34068799999999,21.717311999999996,0.5526315789473685,163.05,5.277777777777778,4.777777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,38.0,0.0,3.0,41.0,12.0,1.0,7.0,34.0,13.0,25.0,28.0,0.0,0.0,0.0,17.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,4.0,1.0,2.0,22.0,5.0,0.0,3.0,1.0,0.0,4.0,0.0,0.0,0.0,1.0,0.0,2.0,3.4965075614664802,7.724591630703781,4.07753744390572,4.663439094112067,5.250963670164566,5.855071922202427,6.156184178284475,6.596719280832047,7.02773035480648,7.406919421211324 +3784,COC(=O)C1=C(C)NC(C)=C(C(=O)OC(C)C)C1c1cccc2nonc12,0,24.416666666666668,6.456556250000001,3.3958333333333335,9.166666666666666,163.61125157628604,96.47466239583336,1.4410831458714377,6.501672916666667,5.0115740740740735,7.952521583333333,218.98908689111738,26.14,6.55388,4.0,8.8,147.722832292286,99.65766201999999,1.7512819699999997,6.679713999999999,3.543333333333334,7.9489642400000005,262.81640469832325,22.348837209302324,6.395056976744185,3.8488372093023258,7.337209302325581,155.54641443739345,84.78894755813954,1.4964965263573835,6.4858174418604655,3.4354005167958657,7.876467813953488,221.7398794334509,21.653465346534652,6.424237623762376,3.732673267326733,6.3861386138613865,154.45359434644251,80.69565852475246,1.531833262225663,6.523975247524752,3.2018701870187023,7.896780633663366,225.46155173197945,20.904761904761905,6.487142857142858,3.373015873015873,6.007936507936508,157.78116857002368,77.7550906190476,1.3834435671939127,6.562507142857143,3.75925925925926,7.985312380952381,205.0065902994398,20.353383458646615,6.652120300751879,3.18796992481203,5.864661654135339,157.74103389910783,74.18394723308269,1.3684093617954287,6.719511278195489,3.866332497911445,8.16385112781955,204.24254168335483,20.859154929577464,6.542147183098592,2.8450704225352115,5.901408450704225,157.99781552334778,77.09325972535211,1.3347719530414506,6.610038028169014,4.230633802816901,8.02157276056338,195.13792063292286,15.182926829268293,6.391103048780487,2.158536585365854,3.3536585365853657,165.94810692951478,52.87580715243902,1.0876836954672011,6.42380487804878,3.614668021680216,7.9549393902439025,149.01890777452303,9.864285714285714,5.9907,1.8857142857142857,0.7785714285714286,167.8563946241476,30.725763792857144,0.9732342003836786,6.029717857142858,2.6119047619047615,7.636180085714286,120.8026334919968,7.7430555555555545,0.16377495659722216,0.023285659879079407,0.6870659722222222,4.826388888888889,1.470527610124644,36.608012895399305,0.21993599427490576,0.15022287326388883,1.6758777006172838,0.1057534565972222,47.57629306608948,0.5102777777777784,0.018480918402777796,-0.01095634096812123,0.38876736111111115,2.348611111111111,-0.04557159681323045,2.3147378500173583,-0.011190339464472126,0.01680821006944446,-0.030808256172839506,0.01002702173611111,-0.7137054984898614,2.0350452196382434,0.02845358022448319,0.0008277796754174955,0.16564720607235148,1.2123708010335916,0.06398054954379356,9.658290174125886,0.03900528787302609,0.02845515483688629,0.2867084320269882,0.015818505612080095,10.927236650014805,-0.2018014301430138,-0.023143933494911964,-0.0032608648105244328,0.02106109048404846,-0.040910341034103626,0.01153083057268374,-0.8366902586418817,0.007113190115223479,-0.019307980524614948,-0.16823422793668258,-0.015550097686331126,1.9692951387344473,0.569113756613757,0.0012934461805555728,0.006734865778477094,-0.044374173280423236,-0.23379629629629647,0.01623637720202629,2.704083141141698,0.00012825002345015314,0.0028898912863756674,-0.06081670708406822,-0.002438782655423278,2.3624228723208165,-1.6572159565580618,-0.05632288892804922,-0.008225323778659845,-0.11736045843776104,-1.0105994152046787,-0.13958080044941765,-7.612620703983267,-0.004473418905521431,-0.050986563740079316,-0.5544021367075095,-0.036429139554615686,-3.49983885352407,0.3226721439749612,0.040129371454420984,0.0026074994960871454,-0.18339813184663536,0.36785993740219075,-0.31387379607164795,1.2097195123178297,-0.05276235966264424,0.035304034013106424,0.466564918057729,0.026087431313575892,-8.405350334962586,-0.8101287262872631,0.015443005801151771,0.0025794498070631426,-0.14044503726287264,-0.5885840108401084,-0.01854540165921057,-4.005725504139142,-0.02661274550003842,0.01055338435806235,0.04015521492020472,0.013482450923102983,-7.760666947331134,-1.6371031746031748,-0.03202483754960319,-0.0018514967162332398,-0.08438740079365081,-1.458531746031746,-0.06832867429495772,-7.685690793613589,-0.017936995398558173,-0.030678126240079363,-0.20559000220458548,-0.018218393501984124,-6.5899672233688,,,0.4580246913580247,1.1296296296296295,0.48148148148148145,0.0,0.6481481481481481,-0.16666666666666666,1.0163971141980839,0.021065575995334238,0.030621131550889795,0.9729506705217029,0.23227029420865078,0.24348685432835188,1.989347784719787,0.4757571485370026,2.01159873554256,1.4392780150250053,0.22578423319624882,0.3465364873213058,0.0,0.5723207205175546,7.732252516083346,1172.0,309.91470000000004,163.0,440.0,7853.340075661729,4630.783795000001,69.17199100182901,312.0803,240.55555555555554,381.72103599999997,10511.476170773634,1307.0,327.694,200.0,440.0,7386.1416146143,4982.883100999999,87.56409849999999,333.98569999999995,177.16666666666669,397.448212,13140.820234916162,1922.0,549.9748999999999,331.0,631.0,13376.991641615836,7291.8494900000005,128.698701266735,557.7803,295.44444444444446,677.376232,19069.629631276777,2187.0,648.848,377.0,645.0,15599.813028990695,8150.261510999998,154.71515948479197,658.9214999999999,323.3888888888889,797.574844,22771.616724929925,2634.0,817.3800000000001,425.0,757.0,19880.427239822984,9797.141418,174.313889466433,826.8759,473.66666666666674,1006.14936,25830.830377729417,2707.0,884.732,424.0,780.0,20979.557508581343,9866.464981999998,181.998445118792,893.6949999999999,514.2222222222222,1085.7922,27164.25804388619,2962.0,928.9849,404.0,838.0,22435.689804315385,10947.242881,189.537617331886,938.6254,600.75,1139.063332,27709.584729875045,2490.0,1048.1408999999999,354.0,550.0,27215.489536440422,8671.632373,178.38012605662098,1053.504,592.8055555555554,1304.61006,24439.100875021777,1381.0,838.6980000000001,264.0,109.0,23499.895247380668,4301.606931,136.252788053715,844.1605000000001,365.66666666666663,1069.065212,16912.368688879553,371.66666666666663,7.861197916666663,1.1177116741958115,32.979166666666664,231.66666666666669,70.58532528598292,1757.1846189791665,10.556927725195477,7.210697916666664,80.44212962962962,5.076165916666666,2283.662067172295,25.51388888888892,0.9240459201388898,-0.5478170484060615,19.438368055555557,117.43055555555556,-2.2785798406615223,115.73689250086791,-0.5595169732236063,0.8404105034722231,-1.5404128086419753,0.5013510868055555,-35.68527492449307,175.0138888888889,2.4470078993055546,0.07118905208590462,14.245659722222227,104.26388888888887,5.502327260766247,830.6129549748262,3.3544547570802434,2.447143315972221,24.656925154320987,1.3603914826388883,939.7423519012732,-20.381944444444393,-2.3375372829861085,-0.3293473458629677,2.127170138888894,-4.131944444444466,1.1646138878410577,-84.50571612283005,0.7184322016375714,-1.9501060329861097,-16.99165702160494,-1.5705598663194438,198.89880901217919,71.70833333333337,0.16297421875000218,0.8485930880881138,-5.591145833333328,-29.458333333333357,2.045783527455313,340.71447578385397,0.016159502954719296,0.3641263020833341,-7.662905092592596,-0.30728661458333306,297.66528191242287,-220.4097222222222,-7.490944227430546,-1.0939680625617594,-15.608940972222218,-134.40972222222226,-18.564246459772548,-1012.4785536297745,-0.5949647144343504,-6.781212977430549,-73.73548418209876,-4.8450755607638865,-465.4785675187013,45.819444444444485,5.69837074652778,0.37026492844437464,-26.04253472222222,52.236111111111086,-44.57007904217401,171.78017074913183,-7.492255072095482,5.013172829861112,66.25221836419752,3.704415246527777,-1193.5597475646873,-132.86111111111114,2.5326529513888905,0.4230297683583554,-23.032986111111114,-96.52777777777777,-3.0414458721105335,-656.9389826788192,-4.364490262006301,1.7307550347222254,6.5854552469135745,2.2111219513888893,-1272.749379362306,-229.19444444444446,-4.483477256944447,-0.2592095402726536,-11.814236111111114,-204.19444444444443,-9.56601440129408,-1075.9967111059025,-2.511179355798144,-4.294937673611111,-28.782600308641968,-2.5505750902777775,-922.595411271632,0.7301782959912893,0.5860155551580505,0.4429463107068645,0.2943983440336951,0.2824829095644151,0.15619533977788555,0.1659040800618102,0.07511291220506058,0.10645124602237124,0.03968255764180297,0.06253301521335526,0.021000898112859264,0.041919237461575436,0.011166239589680042,0.026083879163909342,0.00560084988291726,8.044344018061421,5.683428675309943,3.591592594342327,2.180597086895303,0.465688051078041,-0.4966740844522262,3.2921344845815366,0.9771687924500035,6.044282613031106,0.9884433735095944,14.588784771476371,10.947054224456897,16.02236900494836,11.69679158031201,2.0016363993262822,0.687632158848044,3.5371178157252197,2.2297292323037006,7.009360954526621,1.238681418864094,3.7417572483902597,2.4252239252302865,20.90244472108908,14.662006933500049,0.2801177839321051,0.5986372458036187,0.7594655735456463,0.7906014699884844,0.8048270766271275,0.8119398799464492,1.952491231038705,970.6353668663123,0.0,2.0,4.0,0.0,7.0,1.0,3.0,1.0,0.0,3.944037846049633,2.0781568918280455,1.136027604437099,0.9536341148086933,0.8703007814753612,0.8286341148086942,187.8311839030706,1340.0114501028525,44.04712900743561,27.91690521047609,55.8413247867083,,9.0,414.0,17.856516622065094,9.589074368143644,6.103966387748303,39.13714061317972,0.0,7.109797541277533,45.894050004147324,0.0,15.630115118257223,14.102764844493446,12.366666666666667,30.5,13.0,0.0,17.5,0.0,0.04197530864197529,-4.5,0.18960137085137097,0.04712301587301593,-0.14247835497835504,0.020943562610229227,0.1972869080779942,0.0,0.6298611111111113,0.8864197530864195,0.44025974025974035,0.5827380952380954,0.8654761904761903,27.442722083348265,0.5687705518740245,0.8267705518740245,26.26966810408598,6.271297943633571,6.5741450668655,53.712390187434245,12.845443010499071,0.5167130919220058,0.25606469002695414,0.0,0.444743935309973,0.3684210526315789,0.3335127793404383,-0.7922535464906205,-0.03986841489013658,-0.016505282218554598,-0.04951584665566378,0.6664872206595619,1.5832282807946716,0.03821536155313413,0.03298392251655566,0.04947588377483349,-4.546047989591811,0.7157488789237669,0.6114031284990229,1.5117106373433153,0.6555653821857235,0.3266330935251799,1.2525971911749951,0.7247433580028958,1.1715089979580802,0.5989214982946346,0.5733970245460563,0.6490087861752482,1.010634158965133,0.6330222129523412,0.6816172247255674,1.010549340118271,1.0274280509483025,0.6841224694662874,1.0332005647825433,0.6351987186400295,0.8764415484003448,0.6620601435320266,0.4989704161098259,0.7162567345007776,0.7701170364561608,0.8933401411890068,0.9769456198278257,1.4323912519070785,1.24170799897425,0.9159626754042309,1.1174217095759458,0.8936652509441673,1.0199091716791604,0.956201024138951,0.8347072283125411,0.9894121040271353,0.9419377729301684,0.8651291906897288,1.0053167636021185,0.9567503203958174,1.295069638720934,1.0594724220623501,1.0323222474197495,0.8641186076596186,1.015475967295106,0.9812109666475358,1.3102301954996842,1.0655693736779657,0.9164434361603249,1.1837553525068278,1.5652524148347482,1.6061935664388978,1.339419299987176,1.3103153567371666,1.1138214143758423,1.1721693530845594,1.0227487492552245,1.5310927069851301,1.9212727799470477,1.64121939800493,1.0009037622304509,0.8923261542348261,0.7602484755820178,1.0918114738933762,1.3097256946606997,0.8893758232850338,1.2726508303812618,0.9003737310767708,1.2395012171092117,0.7571086395842997,0.7953719844316974,0.7771867769758866,1.130247538550427,1.1327190200153123,1.019767624086285,0.936607227361662,1.0123723094464048,1.1455167573258467,0.9653343915038843,1.1341801345409468,1.044247525625299,1.038155360498373,1.0946668669299568,0.9863934583419831,1.1057452175483589,1.2492184497117234,1.1411350619235339,0.7636630473924687,0.8652648677917156,1.2665364850976362,0.9213085860666131,1.248293290838167,1.014000142616627,1.1670203312744847,0.9412095027070138,1.085674301468302,1.137762491831025,5.5,0.0,3.333333333333335,2.75,2.0788888888888892,1.7566666666666666,1.0030839002267573,0.7631094104308389,0.22222222222222215,0.08063271604938271,6072.827527727119,6680.999885759837,2674.569097211619,2463.631275485206,10.364708666420215,0.4266816251412167,5.942277928516785,0.7442315541453117,1.0,0.3684210526315789,1.6409246546715235,3.5068056088931105,4.448934896284057,4.631328385912463,4.714661719245795,4.756328385912462,0.1896551724137931,0.0,0.07936507936507939,0.05851063829787234,0.03849794238683129,0.03253086419753086,0.017597963161872936,0.01861242464465461,0.011695906432748536,0.01007908950617284,0.45654508040655584,21.702734839476815,9.212018140589569,4.451843043995244,155.7086126007082,1.0,4.22170662169775,122.13817935048698,,99.20637367386107,97.91446279852234,100.2035474772555,99.22763519669347,138.59464487934443,98.80938727809009,99.26912050718917,119.19623853139936,0.0659013452914799,0.11284337231258505,-0.4705188096457924,0.5658370183196464,0.4866187050359711,-0.030989963397809125,0.06323036043041445,-0.050879982157376775,0.11188848744703703,-0.01838335587465109,0.0948150732727396,-0.01500128430557703,0.2628219835227866,0.17373584347489796,0.03554890347604878,0.24109359620385207,0.25119625230048515,0.04350856733548204,0.26382994897108136,0.17734835992453332,0.18941958849968588,0.1710795673940787,0.14957908820254673,0.22967818520109362,-0.026062247480353355,-0.14131546101905373,-0.1400374662971909,0.03065366549289176,-0.008476387207066075,0.007841288047428344,-0.02285538581491902,0.03234209179208953,-0.12852889912908005,-0.10038574287056631,-0.1470410347489254,0.04139236186389822,0.07349989323083499,0.007897704309802342,0.2892280404957695,-0.06458502541888513,-0.04844124700239811,0.011041191671776956,0.07386588146338674,0.0005831243033818689,0.01923735862313819,-0.036289466147599744,-0.023061020735348114,0.04965546325854166,-0.21402609663171382,-0.34390416030801463,-0.35323558882906053,-0.1708139584590028,-0.20939038243089744,-0.09491885734643674,-0.20794957447526413,-0.02033963981325379,-0.3394061279237672,-0.3308130041370585,-0.34447232957463975,-0.0735626638389492,0.041672456262237145,0.2450275200079133,0.1119787676032238,-0.2669294351071686,0.07621846185023808,-0.21344298054019095,0.033045211051864025,-0.23989870251385365,0.2350110422338257,0.2784003378563227,0.24668159465400513,-0.1766709802986646,-0.1046264902110905,0.09429406132667359,0.1107741769165238,-0.20441273901052343,-0.1219512195121951,-0.012611393034394394,-0.10942209607456076,-0.12100222879741189,0.07025151449156321,0.023960707219514984,0.1274894585663796,-0.16312046288580298,-0.2114285714285715,-0.19554172515131885,-0.07951231469702452,-0.12282284992329216,-0.3021993833504625,-0.04646541406262075,-0.2099455880212358,-0.08155552463203494,-0.2042174109277531,-0.12267601754522993,-0.1722723217584423,-0.13851367558658897,2.381101577952299,9.130231000841789,20.44737953236274,15.822495119087211,34.85496626257323,38.60917538369266,39.79311135457143,40.96019468790475,41.46065302123809,54.31316585964912,38.860506405675146,6.096174296298718,9.356485157675257,0.0,15.452659453973974,3920.2321501014985,2570.0728499536976,2126.9308262813665,119.0,42.0,58.0,83.0,104.0,124.0,132.0,141.0,131.0,371.1481207720006,29.0,4.962844630259907,5.8377304471659395,6.755768921984255,7.659642954564682,8.58839695042257,9.50338305067006,10.435849593832643,11.355909016079918,12.289673630404565,0.6805555555555555,1.0034166666666666,1.1308268004256845,0.644189007298865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6617097430139721,0.9883169934640524,1.0201050012138868,0.6361891283329942,3.0,2.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,14.790514511606428,11.033401435232523,0.0,0.0,0.0,0.0,14.218113305036994,0.0,0.0,12.13273413692322,49.63809387317199,11.394078626111666,30.27787903532576,188.13486086843466,-446.9109430718132,-22.489808945954906,-9.310644647329443,-27.931933941988326,375.96604477150527,893.1005070310391,21.557320061480702,18.60626056314665,27.909390844719972,0.4444444444444444,0.865067842599335,0.19599394244289262,17.003534119377452,0.1416585221040668,23.013294034714544,0.13493215740066514,5.0,0.13793103448275862,0.29381122155424316,0.627901370589381,0.7965917220947482,0.8292496834695746,0.8441707027821612,0.8516312124384546,2.5822000000000003,,1.6785714285714288,1.9855746859004189,1.5414196857644495,1.6738284309400313,-6.966016776241213,1.7771572827417383,1.663262980430946,-2.9529462750204147,96.32470000000004,23.69183921263709,0.0,15.630115118257223,0.0,39.71682123267219,7.109797541277533,46.302840383332025,0.0,0.0,4.07753744390572,0.0,5.424950017481403,2.3978952727983707,6.9726062513017535,4.59511985013459,8.628197749459149,6.6052979209482015,10.347500070256531,32.666666666666664,5.302599075123877,7.816685589359201,0.0,4.852311612916772,0.0,1.0031310363651638,0.6157927059712776,0.0,48.164,0.0,25.464017542202065,0.0,0.0,0.0,0.0,0.0,0.7831802721088454,54.27968642043285,5.316788604006331,0.0,0.0,35.46570101918042,19.06280027574374,0.0,39.17630633662088,45.36842782852838,0.0,11.033401435232523,0.0,30.92107235034552,31.76206766467066,33.54566363541189,244.27635870097401,,198.2884087233835,195.68184599068167,200.29291571852846,198.33128310220619,279.01613585581333,197.4871332759771,198.4150363491612,239.0486873461366,33.54566363541189,244.27635870097416,,196.76319001228248,194.01425730256022,198.9919630570682,196.81030555333285,284.15530653493,195.87892973718454,196.90290776518117,241.3454233378191,5.0530347516384415,159.91040160658713,,132.35517008873995,130.82188053276167,133.76745104082244,132.3811365798311,184.21154282396827,131.89174604999505,132.4290866005892,157.66411624923526,1.2424319864967368,9.047272544480519,,7.344015137903092,7.247475777432654,7.418256137723277,7.345603077859488,10.333930957622716,7.314338269480634,7.348705049968934,8.853655086893948,2.534520599901307,122.13817935048698,,99.20637367386107,97.91446279852234,100.2035474772555,99.22763519669347,138.59464487934443,98.80938727809009,99.26912050718917,119.19623853139936,47.439215686274515,0.0,8.36074197425884,0.0,0.0,0.0,0.0,48.96504005826657,0.0,3.0885029289493575,10.410177154195011,0.0,-1.0304732247837416,0.0,0.0,0.0,0.0,30.53707815998372,487.98555345027376,78.76438342423313,168.3266692268693,213.54887502163473,222.3037625237982,226.30376252379816,228.30376252379818,990.0,133.38919919538455,76.11535218966611,76.04910457628571,103.55,103.55,0.8,8.814662369767055,5.857980995127572,4.4374501030141635,5.114391614256443,,5.113461530979166,5.114717661765691,5.108217748845222,5.11342841946251,5.050669968444811,5.1136655181309605,5.113418124968522,5.083284577972042,0.1643500038153394,0.18942191163912753,,0.18938746411033947,0.18943398747280338,0.18919324995723044,0.18938623775787075,0.18706185068314113,0.18939501919003557,0.18938585648031564,0.18826979918414968,2.4833316833574246,2.6253102238454313,,2.6251283512145607,2.6253739727996286,2.6241023392549985,2.625121875831171,2.6127726745168354,2.6251682426035776,2.6251198626017866,2.6192093961309837,270.8800000000002,220.02101911979022,166.18375148429718,,165.37969752070325,165.2117610195328,165.873925067914,165.3835294313148,171.72655574284425,165.34413212236726,165.3862843189359,168.67378737574816,8.148926634066305,6.1549537586776735,,6.125173982248269,6.118954111834547,6.143478706219037,6.125315904863511,6.360242805290528,6.123856745272861,6.125417937738367,6.247177310212895,6.386974856252443,6.106345885816581,,6.101495800307005,6.100479824175271,6.104479785267364,6.101518970419638,6.139155192570396,6.101280724190406,6.101535627850314,6.121218370381276,15.262488767111783,25.464017542202065,10.905188518308558,3.454729675820948,-1.7743386243386243,5.302599075123877,-0.3087602618207781,7.059946722516167,1.3007952517426724,334.1605463264829,106.12704539832806,-252.10286772720943,-12.686521594082382,-5.252143077650197,-15.75642923295059,212.08278634547227,503.7988048436986,12.160503769851308,10.495808434243722,15.74371265136558,1593.0,47.0,2.123222859021835,0.9893266998825774,0.0,0.0,0.5573016130636126,0.18621042656486148,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.020412414523193152,0.2647770179839391,0.06408977740978258,0.4992323374177344,0.12303495643116238,19.71481399176481,15.822419989267363,12.845443010499071,8.537551976977158,11.864282201705434,6.560204270671194,9.622436643584992,4.356548907893514,8.835453419856814,3.2936522842696467,6.503433582188947,2.1840934037373634,5.197985445235354,1.3846137091203252,3.443072049636033,0.7393121845450783,4.724345118626985,1.8482636557865428,8.974232936505642,2.807126867224759,14.391447697518593,3.9562830908600595,90.13710714547028,42.97246201592647,33.43270729569312,31.089912764097566,28.99868463867689,28.1024440134966,142.0,171.0,53.04265299999999,28.581346999999994,0.3125,139.08,10.472222222222221,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,9.0,10.0,48.0,0.0,0.0,50.0,10.0,4.0,8.0,42.0,14.0,29.0,36.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,8.0,1.0,2.0,27.0,8.0,0.0,3.0,5.0,0.0,3.0,4.0,0.0,0.0,0.0,1.0,2.0,3.6635616461296463,7.4877556326978265,4.2801323269925415,4.876151066716461,5.490228215431148,5.957455231005234,6.361005585491085,6.726505023140343,7.116663613668018,7.252405480243735 +119607,Cc1onc(-c2ccccc2)c1-c1ccc(S(N)(=O)=O)cc1,0,31.555555555555557,6.369816666666668,3.6666666666666665,8.901234567901234,158.4366837779746,125.29418147222226,1.766849796330167,6.456677777777778,5.722824740893156,7.886361694444442,248.4450212257051,34.421052631578945,6.410494736842106,4.2631578947368425,7.385964912280701,143.48897769348423,133.43437484210526,2.0785241136842103,6.589281578947368,3.1092430149447696,7.889680842105262,294.9016981640497,27.322580645161292,6.407032258064515,3.967741935483871,7.935483870967742,147.34923667581057,104.20280911290322,1.8344433149902577,6.545956451612903,4.603046594982078,7.874349677419356,260.9439891883169,22.473684210526315,6.2885,3.473684210526316,5.5394736842105265,151.2246755141014,83.26776052631577,1.6429761723828158,6.410394736842105,3.5497076023391814,7.8156832105263145,228.278113827391,20.4625,6.321925,3.1875,5.083333333333334,155.4612785651269,74.61849183749999,1.501153248288675,6.424743749999999,3.6495756172839497,7.838648974999998,209.66878454856698,18.53846153846154,6.287102564102564,2.9871794871794872,4.405982905982905,157.44804740647683,66.97892573076923,1.4237623282922054,6.3747884615384605,3.3089189616967394,7.82152223076923,197.9762170002591,17.125,5.986277777777777,2.8333333333333335,3.462962962962963,155.34730118552352,61.271316722222224,1.434646390590139,6.092375,2.7457133058984917,7.5593300555555585,187.13541290189178,18.53731343283582,5.827922388059702,2.582089552238806,3.159203980099502,156.67873217673935,67.81120332835822,1.3656971354266267,5.938938805970149,2.643702782384375,7.457376,172.33833478006514,20.19298245614035,6.290770175438596,2.3684210526315788,5.017543859649122,162.05763442162413,73.86474063157894,1.2550810980330878,6.355256140350878,4.490090968161144,7.888361754385966,162.89342675746778,10.80246913580247,0.13647222222222222,0.013209713845298631,0.7006172839506172,4.126200274348422,1.6129900878271997,49.042961656635796,0.3026757165042377,0.1258626543209876,2.067922601885722,0.0881503047839506,50.03971640927566,2.5454840805718,0.0021646198830409095,-0.006070303989656323,0.20435347628330075,0.506678218179193,0.18569113237986057,10.931197729329124,-0.006929852161208257,0.006487491877842741,-0.5960208789856506,0.016226342876868083,3.645477671541961,0.09538032656312254,0.04106917562724011,0.0009641812300632844,-0.010653126244524158,0.9152174874994468,-0.017245652673429344,0.6926515696186841,-0.012740333794236664,0.03567677220230981,0.802121580256064,0.023865971201712452,0.5622327097481469,-1.369720597790773,-0.019963450292397666,-0.001027525297799163,-0.08658219623131909,-0.6305862392607031,-0.16208939279623244,-6.110526345232291,-0.011895724368202515,-0.019115212800519827,-0.15229545853867127,-0.014560595719623126,-2.7609799210305734,-1.891358024691358,-0.02262513888888889,0.00113915401607796,-0.11103395061728397,-0.8763545953360767,-0.17132456984692296,-8.661914072955245,-0.04297245799853624,-0.021253348765432105,-0.1667312879187201,-0.01515310999228395,-7.251422189953992,-1.2412155745489077,-0.034585470085470076,6.595042598595776e-05,-0.05246913580246913,-1.0912208504801097,0.06423606334786074,-5.819793377077398,0.006946695419634125,-0.03269278252611586,-0.3154213280902952,-0.02010461212013295,-3.078098114011575,-0.40123456790123463,-0.011617129629629594,-0.0008083317995387472,-0.013117283950617278,-0.4521604938271604,-0.06769404338637054,-2.1181083595679033,-0.007834058768021611,-0.011640663580246876,-0.04229895404663923,-0.00562769444444443,-5.538639961111362,2.641975308641976,0.015036484245439508,-0.004194044241248732,-0.055509489589091576,0.4763425670003889,-0.2974629529264202,11.724843357045781,-0.01598988205287696,0.01854605214667408,0.022175710564373226,0.011553366443246737,0.1811073693806109,1.144899285250162,0.09378070175438591,0.006168463867591636,-0.10412605588044181,1.6141072846725868,-0.11192810274686782,5.470989384787197,-0.03668568330860415,0.08256171215074723,0.8180565158140296,0.05522743693144898,-2.125446832502573,,,0.4833333333333334,1.4659090909090908,0.8636363636363636,0.0,0.6022727272727273,0.26136363636363635,0.6514003226219268,0.020403113706564516,0.03213038643383725,1.0401761362137156,0.2894372207453898,0.18626028201955006,1.6915764588356423,0.47569750276493983,2.0299322511312856,1.5175234786267973,0.16993114603234824,0.24560718980944893,0.0,0.5124087725044878,8.724236480777787,1136.0,229.31340000000003,132.0,320.44444444444446,5703.7206160070855,4510.590533000001,63.60659266788601,232.4404,206.02169067215362,283.90902099999994,8944.020764125384,1308.0,243.59880000000004,162.0,280.66666666666663,5452.581152352401,5070.506244,78.98391631999999,250.3927,118.15123456790124,299.807872,11206.26453023389,1694.0,397.23599999999993,246.0,492.0,9135.652673900255,6460.574165,113.73548552939597,405.84929999999997,285.3888888888888,488.20968000000005,16178.527329675648,1708.0,477.926,264.0,421.0,11493.075339071705,6328.349799999998,124.866189101094,487.18999999999994,269.77777777777777,593.9919239999999,17349.136650881715,1637.0,505.754,255.0,406.6666666666667,12436.902285210152,5969.479346999999,120.09225986309399,513.9794999999999,291.966049382716,627.0919179999999,16773.502763885357,1446.0,490.39399999999995,233.0,343.66666666666663,12280.947697705193,5224.356207,111.05346160679201,497.23349999999994,258.09567901234567,610.0787339999999,15442.144926020212,1233.0,431.01199999999994,204.0,249.33333333333331,11185.005685357693,4411.534804,103.29454012249,438.65099999999995,197.6913580246914,544.2717640000002,13473.749728936209,1242.0,390.4708,173.0,211.66666666666666,10497.475055841536,4543.350623,91.501708073584,397.90889999999996,177.12808641975312,499.644192,11546.668430264364,1151.0,358.5739,135.0,286.0,9237.285162032575,4210.290215999999,71.539622587886,362.24960000000004,255.93518518518516,449.63662000000005,9284.925325175664,388.8888888888889,4.912999999999999,0.47554969843075073,25.222222222222218,148.5432098765432,58.06764316177919,1765.5466196388886,10.896325794152556,4.531055555555553,74.445213667886,3.1734109722222215,1801.429790733924,96.7283950617284,0.08225555555555455,-0.23067155160694028,7.765432098765428,19.253772290809334,7.056263030434701,415.3855137145067,-0.26333438212591376,0.24652469135802416,-22.64879340145472,0.6166010293209871,138.5281515185945,5.913580246913598,2.546288888888887,0.05977923626392363,-0.6604938271604979,56.7434842249657,-1.0692304657526193,42.94439731635842,-0.7899006952426731,2.211959876543208,49.731537975875966,1.479690214506172,34.858428004385104,-104.09876543209874,-1.5172222222222227,-0.07809192263273639,-6.580246913580251,-47.924554183813434,-12.318793852513664,-464.4000022376541,-0.9040750519833912,-1.4527561728395069,-11.574454848939016,-1.1066052746913575,-209.83447399832357,-151.30864197530863,-1.810011111111111,0.0911323212862368,-8.882716049382717,-70.10836762688614,-13.705965587753838,-692.9531258364196,-3.437796639882899,-1.7002679012345683,-13.338503033497608,-1.212248799382716,-580.1137751963194,-96.8148148148148,-2.6976666666666658,0.0051441332269047055,-4.092592592592593,-85.11522633744856,5.010412941133137,-453.9438834120371,0.5418422427314618,-2.550037037037037,-24.60286359104303,-1.56815974537037,-240.09165289290286,-28.888888888888893,-0.8364333333333307,-0.0581998895667898,-0.944444444444444,-32.55555555555555,-4.873971123818679,-152.50380188888903,-0.564052231297556,-0.838127777777775,-3.0455246913580245,-0.40519399999999894,-398.7820772000181,177.01234567901238,1.007444444444447,-0.28100096416366505,-3.7191358024691357,31.914951989026058,-19.930017846070154,785.5645049220674,-1.0713220975427564,1.2425854938271632,1.4857726078130062,0.7740755516975314,12.13419374850093,65.25925925925924,5.345499999999997,0.3516024404527232,-5.935185185185183,92.00411522633745,-6.379901856571466,311.8463949328702,-2.0910839485904367,4.706017592592592,46.62922140139969,3.147963905092592,-121.15046945264665,0.7155580094631719,0.5759184559172453,0.43605604420119487,0.34007646471950775,0.2906188043444678,0.1845486378861018,0.17562307419995968,0.09579351840596474,0.11308348181500748,0.048825888073650556,0.0728753497228064,0.026519947827610618,0.04540470908998301,0.014834607079064852,0.029714617554052095,0.008366597366381283,16.013354852152908,5.682007834832346,3.581516259233683,2.1770749832938465,0.44953591535287424,-0.46464106607401473,4.042872953181673,0.9685418605347789,6.033456347561971,0.6420967039545957,14.564976352407975,10.319285852672872,32.06666003923579,11.693575244871056,2.9556416339244187,0.7157229907661768,3.5374187602171263,2.2286616972898536,7.014211287606656,0.3002106577659469,3.7686685417304986,2.4257997174099937,24.442067083703385,14.681718229209244,0.3086633856983517,0.5747023319151623,0.6967031759962973,0.8385987124942146,0.8821426609939831,0.8821426609939831,1.6181355626846043,898.3237942363404,0.0,0.0,1.0,0.0,12.0,0.0,3.0,0.0,0.0,3.446051566971387,1.9602340286191273,1.27886388936966,0.48638263900908196,0.24319131950454143,0.24319131950454143,5.677485014462434,821.3858552145807,55.97792088884236,22.81627375596057,46.147129288889374,,11.0,400.0,10.023291153407584,8.417796984328938,4.895483475517775,5.760247418874442,22.384282469939446,12.13273413692322,12.13273413692322,37.255572541998674,5.156663257125445,9.66206867458129,10.633333333333335,32.25,19.0,0.0,13.25,0.0,0.016666666666666607,5.75,0.19602747909199503,0.09462962962962951,-0.10139784946236552,0.04608585858585856,0.14739253996447566,0.0,0.6379629629629631,0.8530303030303027,0.44193548387096804,0.5433333333333336,0.8069444444444441,14.33080709768239,0.4488685015444194,0.7068685015444194,22.883874996701742,6.367618856398575,4.097726204430101,37.21468209438413,10.465345060828676,0.5666074600355243,0.14733542319749215,0.07836990595611285,0.28213166144200624,0.0625,0.494562841171284,-0.7780629243979591,-0.07140397189890961,-0.02161285901105442,-0.048628932774872444,0.5054371588287161,0.7951707673109768,0.03581281370197899,0.022088076869749347,0.03975853836554883,-4.846162005833299,0.8135526315789472,0.6328417088926263,1.4372578124286912,0.8946788778112684,0.6090338045912655,0.9828948704188747,0.7977500634059917,1.1485622466071106,0.5859518230586704,0.8698761740927154,0.4815781944705434,0.82936684205452,0.8716935483870967,0.4987803917191386,0.8556295139743553,1.1862299275259345,0.6570382206588883,1.0195407560089877,0.8598063944505839,1.0200843642316528,0.5048314519194298,0.4488829429687361,0.5516228891735474,0.8995793877904159,1.005394736842105,1.0466498655554006,1.0146868887301468,1.18681891954556,1.1002567714165736,1.062202938159247,1.0034017834861955,0.9883858981912318,1.0445566206188484,0.9554210021565301,1.091430824103497,0.991734658933949,0.9905624999999998,1.10138599124771,0.8099464257442837,1.1188050660792954,1.1736904712433514,1.112193501383546,1.0003884723701046,1.0045260398050044,1.0963532534729463,0.9603504926432294,1.0923589590485772,1.0583881476004628,0.8284615384615382,1.273389020234125,1.03093847074874,0.9429007116231788,1.2764518975040917,0.9093914298330624,0.8532984861995316,0.7574191242748697,1.271482324735185,0.9011847638124487,1.2482263188811027,0.9832438569400159,0.8418749999999998,0.8240884444896756,0.8634848239813345,0.8383810572687226,1.0001194730718086,0.9557219150128474,0.8640641246205231,0.9042356840762343,0.8561340563273214,0.4527120465704195,0.7788965378516869,1.1173628501326955,0.7972388059701491,0.5665938068663398,1.0013029972781757,0.9941482017226643,0.7568809046522706,1.0921612321840475,0.804369425509546,1.0918316020775627,0.5728039933731701,0.6319174602705115,0.5097540998916243,1.0804679598774878,1.1415789473684208,0.4602138615417027,0.6028230098153475,1.1442151634593092,0.6701209056550954,1.0550389747757714,1.1204924399298761,1.241408235099044,0.49183187372912474,0.8246510252449883,0.5170667805398697,1.0632465175745995,5.0,0.06203448627691052,3.1111111111111125,1.8125,1.1933333333333334,0.7852777777777777,0.3705668934240363,0.41057256235827666,0.2741480851599899,0.11000000000000001,4633.897602922297,5026.244870806196,2468.913405055077,2321.016935433807,10.259786970699189,0.41844034096497773,5.966678212451784,0.7195140420490871,1.0,0.0625,1.7238734344709252,3.209690972823185,3.891061112072652,4.68354236243323,4.926733681937771,4.926733681937771,0.20833333333333331,0.008862069468130075,0.08888888888888892,0.05330882352941176,0.03729166666666667,0.028045634920634926,0.01684394970109256,0.021609082229382983,0.015230449175554992,0.012222222222222225,0.49063612013531843,16.84375,6.857142857142857,3.753086419753086,127.97653378624211,1.0,4.030413506645449,99.58432286569376,,67.91651140019476,74.59370309908651,75.50006761493958,67.91513532202814,75.55090663209606,74.38668201967639,73.84508267369392,76.80313960898388,0.2356390977443609,0.015861248888555415,-0.45953334498739035,0.2916763273823324,0.12279535274356108,0.1151223022269147,0.22289024479927735,-0.022895302739330374,0.05154421629546829,-0.28822204392086237,0.18407585676121668,0.07285168528385609,0.008829493087557629,0.3009343217139516,0.07299031919653876,-0.015205343186016865,0.22180636582017846,-0.010691728860318252,0.014123363398567599,-0.042092355281690697,0.2834579676932867,0.38788762186970427,0.27074178881407224,0.011235729338464596,-0.12679699248120296,-0.14628215154209567,-0.07778558338452288,-0.12357987479712507,-0.15282492301231804,-0.10049001169906578,-0.12459537798744463,-0.039301878940248475,-0.15187358715453667,-0.07364659509006491,-0.1651791874720115,-0.055175770750746735,-0.17508571428571426,-0.16578567066965197,0.08623608576376449,-0.1584801762114538,-0.21238779920212766,-0.10621551312674715,-0.17661890270004194,-0.14197524167068287,-0.16886143773219403,-0.08062743149413773,-0.17190082359242004,-0.14491333505259082,-0.11490109890109888,-0.2534249792544113,0.004992570373462683,-0.0748898678414097,-0.2644614361702128,0.03982421456438756,-0.11866724970289282,0.022950950607684005,-0.25974966682920453,-0.15253052885183663,-0.22807195243859632,-0.06151310069057466,-0.037142857142857144,-0.0851244996268401,-0.0611922263423166,-0.018722466960352416,-0.10958277925531915,-0.04196804673335515,-0.04318883460581771,-0.02588268017831529,-0.0924870339263598,-0.020454805227268735,-0.06384203047553225,-0.11068487910304556,0.2445714285714286,0.11017981535432982,-0.3174969791447377,-0.07922940364258006,0.11544339472848522,-0.18441709913240803,0.23907290589697375,-0.05282842719446603,0.1473515098400521,0.0107236656459731,0.13106439588113872,0.003619272497456435,0.10598496240601499,0.6871779489431902,0.4669642310069424,-0.14862044980292138,0.39118491041433373,-0.06939168665174011,0.11155503664503795,-0.12120458070540499,0.655966717023066,0.39559339168112506,0.6265144183767378,-0.04247519740356856,10.268575222858859,17.087134092179685,6.534047077809358,19.4091056998951,32.164096674131955,40.34803341665731,43.82268860552923,44.0678254555898,44.0678254555898,44.65850952488828,33.38551652978954,3.7384852127116615,5.403358175807877,0.0,11.27299299509873,4078.6229945425807,3177.952774108805,1261.918117728609,76.0,35.0,45.0,58.0,69.0,74.0,86.0,92.0,86.0,314.07251330800034,24.0,4.77912349311153,5.631211781821365,6.529418838262226,7.403061091090091,8.304247465078474,9.186559843310778,10.089012306943829,10.975944075393727,11.879115991807584,0.7592592592592593,0.9986666666666668,1.112130824420506,0.7270164386349549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7245692282102465,0.9867102396514158,1.0169438375010118,0.6844492729040866,9.0,1.0,0.0,1.0,0.0,0.0,6.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.523094936973348,11.454175413722904,0.0,10.023291153407584,0.0,0.0,13.556770721936878,0.0,0.0,47.62123273635672,24.619922828310838,5.563451491696996,10.45893496721477,258.21143063085634,-406.2269222528279,-37.28003845391498,-11.284081173689662,-25.389182640801742,263.8889156453188,415.1589329617528,18.697882434927376,11.532192582270907,20.757946648087636,0.45454545454545453,0.7606766144311594,0.22908747092273632,111.16284724838064,0.1509920803418166,1.0002672670709183,0.2393233855688407,6.0,0.125,0.333442638721064,0.6208389815960079,0.7526339571632313,0.905920755354596,0.9529603776772979,0.9529603776772979,2.9644200000000005,,1.6607142857142856,1.2038881980944245,0.883001233280407,1.6581557966933946,-3.8591084983466093,1.1101591187270503,1.0973664910406058,-1.6780538154894666,83.48520000000002,12.940891921302285,0.0,5.156663257125445,5.138973737607942,11.819220675208399,0.0,60.357551035028926,0.0,22.384282469939446,3.8918202981106265,0.0,5.241747015059643,2.3978952727983707,6.78332520060396,4.727387818712341,8.404919948933452,6.823286122355687,10.068111764371048,27.333333333333336,16.019504607679213,4.115596301020408,0.0,5.309039942365835,0.0,0.0,4.066970282711851,0.0,35.952000000000005,0.0,22.665898141727865,0.0,0.0,-3.6998676248761924,0.0,0.0,0.0,40.03670967913821,5.138973737607942,0.0,0.0,13.574460241454382,10.023291153407584,6.923737199690624,5.760247418874442,64.0158820286456,0.0,22.384282469939446,0.0,26.172591790858377,26.084492215568872,28.095833335944043,199.16864573138758,,136.45177157377736,149.07796181652807,150.91986239049004,136.44982948773753,153.14209183003567,148.67244048310488,147.59040475729324,154.3690309522811,28.095833335944047,199.1686457313876,,135.0930053400111,147.9835180000786,150.11713399659882,135.09315656317037,154.96092176253876,147.6632049206258,146.59279885634723,155.28433303345724,4.849203398515033,147.9208508229022,,103.5991452902783,112.38660686365515,113.59540049813532,103.5969037718935,112.04754091089391,112.05214687129501,111.28975863705469,114.05739289772704,1.277083333452002,9.053120260517618,,6.202353253353516,6.776270991660367,6.859993745022274,6.202264976715342,6.961004174092531,6.757838203777495,6.708654761695147,7.016774134194595,2.4620139415596847,99.58432286569376,,67.91651140019476,74.59370309908651,75.50006761493958,67.91513532202814,75.55090663209606,74.38668201967639,73.84508267369392,76.80313960898388,35.52156862745097,0.0,1.8217853599773242,0.0,0.0,5.117739656060364,0.0,36.609978150036426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.64017382454712,397.1495237986968,62.059443640953305,115.54887502163466,140.07820003461546,168.60752504759628,177.36241254975974,177.36241254975974,667.0,120.77769488681959,124.95082247747828,70.33849344094513,94.57,86.19,0.8333333333333334,8.819011592235482,5.584962500721156,4.118642676305447,4.617223741608164,,4.633787638967493,4.618686291970316,4.616959690479085,4.6337972151731615,4.624524288160899,4.619560354001248,4.621132429968336,4.619626560537608,0.18721103074115666,0.20987380643673473,,0.21062671086215878,0.20994028599865072,0.20986180411268568,0.2106271461442346,0.21020564946185905,0.2099800160909658,0.2100514740894698,0.20998302547898218,2.203981021947278,2.3182509631022556,,2.3218319586017833,2.3185676726347344,2.3181937731772138,2.3218340252039926,2.3198308694246945,2.318756899458186,2.3190971501339757,2.3187712311384465,223.23999999999972,146.12385784506057,121.9468623020484,,119.86647982797547,121.53817163653267,121.74147807192486,119.86563360948668,121.43858794869865,121.47682709632699,121.33864863338763,121.84833921256428,6.641993538411844,5.543039195547655,,5.448476355817067,5.524462347115121,5.5337035487238575,5.448437891340304,5.519935815849939,5.521673958923954,5.515393119699438,5.538560873298376,5.772911963838945,5.592042755314696,,5.574835815571405,5.588685743651866,5.590357124574719,5.57482875587067,5.587866046380572,5.5881808814678156,5.587042745791415,5.591234510572917,27.9749380840937,0.07557245737801321,9.233335957080772,3.3226860906399605,0.6687117346938775,16.019504607679213,0.0,1.8217853599773242,-3.6998676248761924,261.3044006285244,134.81227734483664,-212.09121677490626,-19.463920985978135,-5.89142268819184,-13.255701048431641,137.7764942368653,216.7546226589785,9.762170893906793,6.020961740527178,10.837731132948923,1057.0,34.0,2.32659243940976,1.0998429213605951,0.28867513459481287,0.05892556509887896,0.680537980486242,0.20920391189612292,0.14433756729740643,0.019641855032959652,0.0,0.0,0.0,0.0,0.09622504486493763,0.02282177322938192,0.3927315619253478,0.10549633919152082,0.449025720527782,0.11882661760983096,15.742276208189782,12.670206030179397,10.465345060828676,8.161835153268186,10.171658152056374,6.459202326013562,7.9030383389981855,4.310708328268413,6.558841945270434,2.831901508271732,5.028399130873642,1.8298764001051326,3.3599484726587425,1.097760923850799,2.55545710964848,0.7195273735087903,4.113985494148832,1.8364863758457413,6.192167994198766,2.10827841074554,8.638449992019021,2.431200107582098,70.04618160806054,50.84736910241054,33.71553993886888,26.419884035349913,25.602256604574006,25.602256604574006,118.0,139.0,43.561101999999984,21.866897999999996,0.4722222222222222,114.06,7.479166666666667,4.694444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,17.0,36.0,0.0,0.0,38.0,17.0,2.0,10.0,28.0,19.0,24.0,19.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,4.0,1.0,1.0,22.0,6.0,0.0,2.0,3.0,0.0,3.0,3.0,1.0,0.0,0.0,1.0,3.0,3.56953269648137,7.569105372960035,4.2520603082138555,4.798884926611489,5.392774910234201,5.882625767073831,6.205441210597375,6.692006196075664,7.0476802515454136,7.348537256176065 +145948937,NCC1O[C@H](O[C@@H]2[C@@H](CO)O[C@@H](O[C@@H]3[C@@H](O[C@H]4O[C@H](CN)[C@@H](O)[C@H](O)[C@H]4N)[C@H](N)C[C@H](N)[C@H]3O)[C@@H]2O)[C@H](N)[C@@H](O)[C@@H]1O,0,22.727272727272727,6.615788636363638,3.0681818181818183,7.181818181818182,171.59987813043134,89.42697765909091,1.1388471093528865,6.607771590909092,5.798611111111111,8.150719727272726,175.49666049913768,24.021978021978022,6.821406593406593,4.010989010989011,5.813186813186813,156.41376493474672,89.61577653846152,1.4819582403516487,6.900351648351648,3.4102564102564106,8.26262501098901,229.2729562242778,20.93491124260355,6.727408284023669,3.5798816568047336,5.236686390532545,158.5602641519763,76.60325310650887,1.2913606805236093,6.785883431952663,3.208086785009861,8.22847273372781,195.11693698541708,18.11969111969112,6.7060154440154465,2.8262548262548264,4.675675675675675,166.6260310669845,65.38080242471038,1.0544302606239424,6.718813127413128,4.0090090090090085,8.258954162162166,155.72403519721243,15.229452054794521,6.6068969178082195,2.5753424657534247,3.4315068493150687,169.52299080344804,53.02382600000001,0.9686669921067983,6.610501369863013,3.586853120243531,8.210884904109589,139.32224653750833,15.128472222222221,6.527729166666668,2.638888888888889,3.5243055555555554,169.49500951379943,52.89306777777779,0.9994812304574029,6.5361409722222215,3.5230516975308643,8.124127833333336,141.36672534068146,15.397306397306398,6.41538282828283,2.676767676767677,3.4377104377104377,167.66586656824154,54.40093883838383,1.0386049853236632,6.439933670033669,3.275907220351665,8.003603245791245,146.70897572833357,14.87962962962963,6.438160493827162,2.478395061728395,3.191358024691358,168.43559785143634,51.87735194753085,1.0044114100554844,6.457987037037036,3.4416152263374498,8.028380777777778,140.80753104357433,13.36950146627566,6.408213489736069,2.219941348973607,2.8504398826979473,171.02465309932907,45.69340173900293,0.90930862537773,6.412418768328448,3.6791300097751707,8.030820375366572,124.67560349043589,8.664772727272727,0.21603858471074372,0.036855799107188454,0.6797520661157024,4.119318181818182,1.1922121179696747,40.64151504287189,0.1813742292551999,0.1970928589876032,2.311337809917356,0.1407906033057851,42.56202054948437,-0.32211538461538464,-0.052088260035419,-0.01816676422294052,0.2515666152029789,0.10645604395604395,0.16099115839648936,-1.252030325838918,0.020431519469753936,-0.0431014379086821,-0.6816133676929129,-0.03551331759149933,5.79723897905131,-0.5055473372781065,-0.025564176426720046,-0.0051601411390132254,-0.030612743899457156,-0.06767751479289941,-0.17693458384121055,-2.3448285820058317,-0.02294811813812092,-0.021170656190400407,-0.3839089353730962,-0.017894559733972255,-2.9127801728335094,0.5026544401544402,0.03006375821659918,0.007021758917360875,-0.05418169054532689,0.33952702702702703,-0.059239505554965204,2.2026112983881956,-0.016016513118328968,0.026500305280561024,0.2753349017553563,0.019749515683333912,-2.131455798584784,-0.6695205479452054,-0.019949854947356446,-0.003606054273073665,-0.027199139590173203,-0.4940068493150685,-0.040418341420258866,-3.0827096811813623,-0.0008791464926820723,-0.018528891833182317,-0.11950726128029984,-0.013089496207403992,-1.5916071558694294,-0.3012152777777778,-0.0015040439910468015,0.000972888072725974,0.02068985307621672,-0.13975694444444445,0.0700460205249912,-1.3981581950183635,0.011524905161491706,-0.0026928313676537713,-0.010887560899398017,0.0009985835629017755,0.2760860693912616,0.14162457912457913,-0.0011897861187633904,-0.00047491772583687,-0.03428221610039791,-0.016624579124579125,0.009666493524946944,0.6861295002104398,0.000816433743753353,-0.0006039547941536511,-0.010686090705030111,-0.0019424315886134073,0.7236103322788884,-0.36342592592592593,-0.004746174497500245,-0.0008583234055819183,-0.08435363738394042,-0.16280864197530864,-0.09521143081106129,-1.7543195657394635,-0.017258234175503626,-0.0043320214455157486,-0.0470553245700552,-0.002846179063360876,-3.2326087382603474,-0.25861436950146627,0.0033074496800853097,0.001727525867394282,-0.02799253532391362,-0.08632697947214077,-0.07309044548376598,-1.2774935560017335,-0.013390104293103855,0.002166975056651565,0.06453232841612608,0.002565616635563854,-3.0954663539245124,,,0.4341269841269841,0.6845238095238095,0.0,0.0,0.6845238095238095,-0.6845238095238095,1.5331925457972437,0.02569451402456006,0.03388499021503625,0.8452242569153393,0.13960894782985625,0.3326540039163717,2.378416802712583,0.47226295174622795,2.004154318250958,1.163964717646983,0.2513221279995723,0.5888674726044024,0.0,0.8401896006039749,6.9808214265000155,2000.0,582.1894000000001,270.0,632.0,15100.789275477957,7869.574034,100.21854562305401,581.4839000000001,510.27777777777777,717.2633359999999,15443.706123924116,2186.0,620.7479999999999,365.0,529.0,14233.652609061952,8155.0356649999985,134.85819987200003,627.9319999999999,310.33333333333337,751.898876,20863.83901640928,3538.0,1136.932,605.0,885.0,26796.684641683994,12945.949775,218.23995500848997,1146.8143,542.1666666666665,1390.6118919999997,32974.762350535486,4693.0,1736.8580000000006,732.0,1211.0,43156.142046348985,16933.62782799999,273.09743750160106,1740.1726,1038.3333333333333,2139.069128000001,40332.52511607802,4447.0,1929.2139000000002,752.0,1002.0,49500.71331460683,15482.957192000002,282.8507616951851,1930.2664,1047.361111111111,2397.578392,40682.09598895243,4357.0,1879.9860000000003,760.0,1015.0,48814.56273997424,15233.203520000003,287.85059437173203,1882.4085999999998,1014.6388888888889,2339.7488160000007,40713.616898116255,4573.0,1905.3687000000004,795.0,1021.0,49796.762370767734,16157.078834999998,308.46568064112796,1912.6602999999998,972.9444444444445,2377.0701639999997,43572.56579131507,4821.0,2085.9640000000004,803.0,1034.0,54573.13370386537,16808.262030999995,325.42929685797696,2092.3877999999995,1115.0833333333337,2601.195372,45621.64005811808,4559.0,2185.2007999999996,757.0,972.0,58319.40670687122,15581.449992999998,310.07424125380595,2186.6348000000007,1254.5833333333333,2738.509748000001,42514.38079023864,762.5,19.011395454545447,3.2433103214325842,59.81818181818181,362.5,104.91466638133137,3576.453323772726,15.96093217445759,17.34417159090908,203.3977272727273,12.389573090909089,3745.457808354625,-29.3125,-4.740031663223129,-1.6531755442875873,22.89256198347108,9.6875,14.650195414080532,-113.93475965134155,1.8592682717476081,-3.922230849690071,-62.02681646005508,-3.231711900826439,527.5487470936692,-85.4375,-4.320345816115688,-0.8720638524932351,-5.173553719008259,-11.4375,-29.901944669164585,-396.27603035898557,-3.8782319653424357,-3.5778408961776687,-64.88061007805327,-3.024180595041311,-492.2598492088631,130.1875,7.786513378099188,1.8186355595964667,-14.033057851239665,87.9375,-15.343031938735988,570.4763262825427,-4.148276897647203,6.863579067665305,71.31173955463728,5.1151245619834835,-552.047051833459,-195.5,-5.825357644628083,-1.0529678477375102,-7.942148760330575,-144.25,-11.802155694715589,-900.1512269049578,-0.2567107758631651,-5.410436415289237,-34.89612029384755,-3.822132892561966,-464.74928951387335,-86.75,-0.43316466942147885,0.2801917649450805,5.958677685950416,-40.25,20.173253911197467,-402.66956016528866,3.3191726865096114,-0.7755354338842861,-3.135617539026629,0.2875920661157113,79.51278798468334,42.0625,-0.35336647727272696,-0.1410505645735504,-10.18181818181818,-4.9375,2.8709485769092424,203.78046156250062,0.24248082189474585,-0.17937457386363437,-3.173768939393943,-0.576902181818182,214.91226868682983,-117.75,-1.5377605371900793,-0.27809678340854155,-27.330578512396695,-52.75,-30.848503582783856,-568.3995392995862,-5.591667872863175,-1.4035749483471025,-15.245925160697885,-0.9221620165289238,-1047.3652311963526,-88.1875,1.1278403409090907,0.5890863207814502,-9.545454545454545,-29.4375,-24.923841909964196,-435.62530259659115,-4.566025563948415,0.7389384943181837,22.005523989898993,0.8748752727272742,-1055.5540266882588,0.7390648315825803,0.5438611610897552,0.44077875496314606,0.3085537687961417,0.27245081011336947,0.16785844574686246,0.1811465666090134,0.08905596629207317,0.10855496408317315,0.048666899468778536,0.06747692200887824,0.02615716402469003,0.043672791941745275,0.013733777823954416,0.02684069228625314,0.007111146700283069,8.02614154932252,5.795237548904495,3.54269969375412,2.2912814392840435,0.42137307470203866,-0.3942798155679906,3.202435432943221,0.9872001846915084,6.015812690498556,1.97765539964946,14.543304543208405,11.058049764155955,16.017650131205016,11.808918828090947,1.8960572073417967,0.7669763555186216,3.486944125951119,2.3402128344254525,6.009013867414936,1.1450322714722911,3.7001326041250677,2.5359293139347767,20.79082740163983,14.704200747245242,0.25614164566226794,0.4695968595307531,0.6604144684562778,0.8126800562090304,0.8655269326712287,0.8877989789552908,1.495599606093632,867.6758669485773,0.0,0.0,6.0,0.0,0.0,17.0,0.0,0.0,0.0,4.792514389864716,3.4033916931289223,2.1615898805078615,1.1706767046437943,0.8267600852518573,0.6818181818181808,336.6884608402394,5505.835796074452,148.16857392268992,62.566315864482426,138.08211876672823,,17.0,1177.0,122.89192212209001,35.745691763884935,19.510334434751158,0.0,0.0,0.0,0.0,0.0,0.0,62.82318258577341,18.23333333333333,28.75,0.0,0.0,28.75,0.0,0.06587301587301593,-28.75,0.19143939393939435,0.0,-0.19143939393939435,0.2163023679417132,0.2774477254588988,0.0,0.6314393939393926,0.9944444444444448,0.4399999999999983,0.6314393939393926,0.7781420765027316,64.39408692348424,1.0791695890315225,1.4231695890315224,35.49941879044425,5.8635758088539625,13.97146816448761,99.89350571392849,19.835043973341573,0.4365522745411012,0.2595978062157221,0.0,0.5210237659963438,1.0,0.29391149862842647,-1.9810496344928592,-0.10689353773985447,-0.022511927664691584,-0.09905248172464297,0.7060885013715734,4.759243425621042,0.07449574583633438,0.05408231165478458,0.06998887390619181,5.789003433723648,0.9604323545307153,1.1136817970867505,1.5282204089423599,1.150739837669929,0.836043956043956,1.4946559652295406,0.9617587765517044,1.3722232469607427,1.0756600780409542,1.2583926865171626,1.1479531211077025,1.106724214286989,1.013382481326996,1.0812863047118726,1.0838646077631,1.4802251758061908,1.0452071005917158,1.5613363633564037,1.0167516876561122,1.4978963606734084,1.0565393456869927,1.000434941050446,1.1330687127094572,1.2505283158397744,0.954197101082347,0.9501451371769821,0.837676428285476,1.226980671509547,1.028108108108108,1.160756774560407,0.9566335837176745,1.1864428351238048,0.9444133826030262,0.846039585913322,0.9803569180306969,1.0833315804817416,1.1099191556254213,1.230004937295735,1.1713317621750456,1.0683916600741143,1.273972602739726,1.0146384893446412,1.1049662053984346,1.0006463692416676,1.2228524963691034,1.0428239403185964,1.2614138486183888,1.0151180674158122,1.0401571038251367,1.0571290511289044,1.0152802406073655,1.0377802051671734,1.1104166666666664,0.9602489546115223,1.0385894961093802,0.9512567203262671,1.0589976513374626,0.9382039887392838,1.057126409486773,0.9886424997988077,0.9531246895181321,0.9515173554999431,0.9588007682251907,1.1654846335697402,0.9947474747474746,1.078932638885077,0.9543991372648704,1.0777702108687262,0.9480646203456744,0.8678683339092674,0.9647098788517293,1.0231668219205465,1.0187856709168186,0.9868312854609113,0.9805574830823334,1.1671169649893056,1.0118518518518518,1.1490900875133,1.0211861985876483,1.148543475555289,0.9853482470752186,0.9703944653321094,0.9873695482018884,1.0984164599940607,1.0319042353732994,1.0134370019796046,0.9489806523313482,0.9617854691636436,1.0243988269794722,0.9980617522382421,1.0321596903911445,1.0308669360003435,1.0170697496622212,1.0537760564505618,1.0172248188800999,1.0422518448497202,10.0,0.47015814712784404,7.111111111111113,4.951388888888889,3.756666666666667,1.892777777777778,1.8239002267573694,1.4193594104308391,0.85616654069035,0.5378240740740742,10387.65855322915,12125.833049020759,4197.3702472234,3661.867388073114,17.448661963961598,0.48200053857788583,9.038397499868637,0.9305039376963886,0.0,1.0,1.666917228772581,3.056039925508375,4.297841738129436,5.288754913993503,5.63267153338544,5.7776134368191165,0.22222222222222218,0.008870908436374416,0.10613598673300169,0.061892361111111106,0.05217592592592593,0.02628858024691358,0.023087344642498356,0.017966574815580238,0.012408210734642754,0.009435510071474985,0.5404836249397453,34.86518518518518,14.613499665849854,7.062019013128112,241.02490475492758,0.0,4.660213025533727,300.34756267479446,,255.79727225873648,249.15726648400295,267.83719186430034,255.92702620971747,471.45952130026086,254.07257799447493,256.0875496797133,366.8552910449881,-0.03717528373266078,-0.24110628249652952,-0.4929146745700929,0.3700858412104614,0.025843122394846534,0.1350356668666107,-0.030806684360023914,0.11264841512300006,-0.21868594392551333,-0.2948999340417854,-0.2522421010894275,0.13620685541259017,-0.0583451353186536,-0.11833153073534612,-0.14000893384527854,-0.04503516123810719,-0.016429300142827993,-0.14840864404442422,-0.057695402829651424,-0.12652358734951324,-0.10741462830843611,-0.16609815048490176,-0.12710052598543675,-0.06843613473300662,0.0580112665358567,0.1391592074020104,0.19051978487671242,-0.07970801891774534,0.08242311276794036,-0.04968872959943529,0.054196092248645425,-0.08830644344623609,0.1344559382652613,0.11912360909511586,0.14027580832535863,-0.05007882076713592,-0.07726925668088928,-0.09234394390274085,-0.09784224899278686,-0.04001332389557395,-0.11992442135096835,-0.033901971646698996,-0.07585124909663128,-0.004847141163836911,-0.09401097497067488,-0.05170480090254438,-0.09297137664063226,-0.03739500933746698,-0.0347632058287796,-0.006961922996582215,0.026397150415773216,0.030437352245862897,-0.033927203065134096,0.05875298486671891,-0.03440221639236322,0.06354213169543377,-0.013662754609608387,-0.004710501793672174,0.00709268615557345,0.006486676756106362,0.01634486945962356,-0.005507285285896532,-0.012885834450520453,-0.050433412135539785,-0.004035759897828863,0.008108031598780329,0.016882478408756566,0.0045013767783106725,-0.0030643159638352947,-0.004623335740530374,-0.0137965996522837,0.017001315326127173,-0.041942926533090466,-0.021969105675520635,-0.023288693404412128,-0.12409471274719502,-0.03952320136228182,-0.07986115002186474,-0.04316570294903791,-0.0951526258519378,-0.021979596154664462,-0.020358479997234898,-0.020215689090977325,-0.07595054690841056,-0.029846641988365945,0.015309532250980482,0.0468725657628555,-0.04118050789293068,-0.02095661846496107,-0.061306578235623264,-0.03143321686344941,-0.07382583704470777,0.010994690866947463,0.027919903416642283,0.018222925218890886,-0.07272836942328889,0.6258823542707168,13.150255160153865,34.800766974274325,16.791327141224166,26.181693703289927,33.831634934872845,40.05876613001998,41.42023542946857,42.15710959540244,84.17448136654022,48.88651814117328,10.555529375982038,24.7324338493849,0.0,35.287963225366944,15564.547908600754,12844.616346525032,4236.063359382737,264.0,67.0,94.0,118.0,149.0,168.0,184.0,215.0,246.0,614.3122855320014,45.0,5.41610040220442,6.304448802421981,7.210079628170788,8.113426639943654,9.0217190130337,9.928814110482136,10.838423379279122,11.747088082766872,12.65746350182221,0.6250000000000001,1.0119090909090913,1.15929670854886,0.5815218625351002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5859313962983123,0.9929144385026741,1.0306561610276104,0.5602523777362473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,7.0,4.0,0.0,6.0,0.0,19.0,0.0,0.0,0.0,0.0,98.56887434965836,67.14363026523132,18.870080188005637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4208216229260096,25.17319447012107,24.794530010557143,240.0828028683566,-1618.2284500262776,-87.31642099359708,-18.38895965938952,-80.9114225013139,576.7712637085959,3887.607346048175,60.852152929092824,44.177356205092906,57.17069626541434,0.47058823529411764,0.5787011221650439,0.0583900875420523,580.078744077896,0.03128189988476747,290.2641467331914,0.421298877834956,9.0,0.2,0.2580594280095869,0.4731128226035911,0.6653591201010535,0.818764749940837,0.8720073012513331,0.8944461026801582,-8.895300000000017,,4.107142857142858,4.8282922289436945,3.602241929163803,4.095453599176144,-17.178916345499882,4.3304773561811505,4.072010361518706,-7.102875984214906,138.35600000000002,64.16686948668523,0.0,0.0,34.40200486297311,122.7058617805031,19.696394776338067,0.0,0.0,0.0,4.51085950651685,0.0,5.883322388488279,2.3978952727983707,7.45182223652793,4.844187086458591,9.110188490025742,7.002155954403621,10.815388664108726,55.000000000000014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.04800000000003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.01811035229967,34.40200486297311,0.0,0.0,171.72712669780006,28.421177722800294,0.0,6.4208216229260096,0.0,0.0,0.0,0.0,51.17392390308882,51.56196287425148,53.06616277514212,600.6951253495889,,511.39896628618044,498.0846142904372,535.5028483986405,511.6590308194742,946.0131728313332,507.9389427815127,511.9811941041162,734.7252786591498,53.06616277514212,600.695125349589,,507.6309900830906,493.67850952829053,532.1376593606817,507.9012736510057,960.0979589460219,503.9693864561919,508.2448077882757,740.8134580741914,4.955419922870477,441.65447573491645,,373.7535090293432,363.7835749103434,392.8915272510763,373.9515370689678,706.5623615358616,371.2113924323805,374.1846236662847,543.6970816090152,1.2634800660748122,14.302264889275927,,12.176165863956678,11.859157483105648,12.75006781901525,12.182357876654148,22.524123162650792,12.093784351940778,12.190028431050385,17.493459015694043,2.494197425878538,300.34756267479446,,255.79727225873648,249.15726648400295,267.83719186430034,255.92702620971747,471.45952130026086,254.07257799447493,256.0875496797133,366.8552910449881,87.37647058823532,0.0,0.0,0.0,0.0,35.636528518238705,72.9766666518619,90.6977421704297,-0.8777612711634251,0.0,34.64840168393261,0.0,-24.05050224953647,0.0,0.0,0.0,0.0,49.30220924078976,472.71436497316193,146.68871613198712,268.931513444737,378.21007295539033,465.41043243142826,495.67509493791874,508.42998244008226,1592.0,168.2375635601249,344.13970160379057,94.01581959932811,353.11000000000007,353.11000000000007,0.8888888888888888,7.373374309910049,6.491853096329675,5.616858061948178,6.389508256841213,,6.388645398593892,6.388616518971167,6.390632561115968,6.388652476453689,6.392062942616468,6.38874955353643,6.388634796797402,6.391509940625765,0.1337347157606709,0.15213114897240984,,0.152110604728426,0.15210991711836114,0.15215791812180876,0.15211077324889738,0.1521919748242016,0.15211308460801024,0.15211035230470005,0.15217880811013726,3.1608569691502475,3.2897418356066486,,3.289606783505711,3.2896022630344377,3.2899177811292635,3.2896078913862454,3.2901415807975027,3.2896230865068987,3.2896051240294644,3.2900550632024457,427.68000000000177,388.6085562925297,314.90608594702076,,315.1180718580183,315.08333735503487,314.5212223096316,315.1166462038696,314.4769827351037,315.07589088545996,315.12295919000087,314.80270961253,9.25258467363166,7.497763951119542,,7.502811234714722,7.501984222738925,7.488600531181705,7.502777290568324,7.48754720797866,7.501806925844285,7.502927599761925,7.495302609822143,7.397657080241756,7.187358979811707,,7.188031925178551,7.187921692156185,7.186136078675058,7.188027400977939,7.185995411899713,7.1878980585434675,7.188047434584451,7.187030649205089,34.64840168393261,0.0,72.9766666518619,35.636528518238705,0.0,-4.1844130215872735,-19.777180096406138,-0.9666704027064847,0.0,537.191797261188,196.11261383820994,-1321.8564900544839,-71.32477356756497,-15.021096477891865,-66.09282450272421,471.13795224509454,3175.607869873886,49.707328580092096,36.08645306674871,46.7001157334395,6111.0,80.0,3.419253529093896,1.7018295903494485,0.0,0.0,1.4386092546852347,0.3518762485979504,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.045360921162651446,0.3813168502864596,0.1871372738908996,1.004921762523677,0.3455957590523152,31.040722926468373,22.84216876576972,19.835043973341573,13.884919595826377,18.254204277595754,11.246515865039784,17.02777726124726,8.371260831454878,12.809485761814432,5.742694137315867,10.054061379322858,3.8974174396788146,7.337029046213206,2.3072746744243418,4.9386873806705776,1.3084509928520847,9.892843417253976,3.564749330103841,14.732378563882778,4.544741239661444,22.769770902966215,5.822265249999383,145.80992934358454,99.34912482571417,63.47365710166464,39.04484692320105,34.272621421398874,32.260900222804835,224.0,273.0,86.10847799999996,53.14352200000008,0.29545454545454547,303.19,17.61111111111111,9.333333333333327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,88.0,0.0,6.0,91.0,0.0,0.0,0.0,91.0,0.0,45.0,91.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,19.0,13.0,3.0,42.0,19.0,0.0,6.0,13.0,0.0,4.0,9.0,0.0,0.0,0.0,0.0,0.0,3.828641396489095,5.579729825986222,4.219507705176107,4.553876891600541,4.77912349311153,5.0106352940962555,5.1298987149230735,5.220355825078324,5.375278407684165,5.5093883366279774 +5311424,CC[C@H](NC(=O)c1c(O)c(-c2ccccc2)nc2ccccc12)c1ccccc1,0,22.50980392156863,6.001564705882352,3.411764705882353,7.254901960784314,157.47901850997016,88.88793201960786,1.631576311895647,6.10182156862745,4.088235294117647,7.5181531764705865,239.04264356050567,24.72222222222222,6.206555555555555,4.111111111111111,7.388888888888889,142.6527700268602,94.08398592592593,1.964392712703704,6.371722222222223,3.220164609053498,7.616791407407406,284.5305945759055,21.719101123595507,6.102067415730338,3.865168539325843,6.49438202247191,146.62912098145276,81.36448678651684,1.7623215316786067,6.247956179775282,3.040262172284644,7.549018067415729,249.0060974411969,18.725,6.027141666666666,3.3833333333333333,5.483333333333333,154.04340982567774,69.36460954166667,1.5041422129414996,6.1399300000000006,2.952777777777778,7.5340302333333335,209.71406355046707,18.95967741935484,6.194274193548386,3.2096774193548385,5.362903225806452,156.57567751935633,69.76586994354838,1.4415730398260729,6.290142741935483,3.5156810035842296,7.693074741935484,203.34046624096294,18.46511627906977,6.235371317829456,3.054263565891473,4.844961240310077,156.36828560118906,67.32426140310076,1.4229129275626669,6.3272767441860465,3.609819121447029,7.750662976744187,200.9393710949249,16.68421052631579,6.122105263157896,2.917293233082707,3.9849624060150375,155.98926611383823,59.72153444360902,1.3966339702953532,6.216105263157894,3.331662489557226,7.66841705263158,192.63676998941438,15.86923076923077,5.995969230769231,2.830769230769231,3.4923076923076923,155.21256725048985,56.47161084615384,1.4090905202010078,6.097723076923077,3.0457264957264956,7.547514030769232,190.421449454847,14.28125,5.887625,2.6171875,2.8359375,155.85503324397175,49.729238312499994,1.3684458576951561,5.989003906250001,2.776041666666667,7.4544644375,179.56301403861093,6.821991541714726,0.08617770088427519,0.016697932265065347,0.5682429834678969,3.4102268358323724,1.4850184683776464,32.648813846212995,0.23716514383916262,0.08393917723952321,1.2004570891537443,0.05025740561322566,51.85634276203077,0.14206074586697387,-0.005061796744841713,-0.008558045469249386,0.24076210004699042,0.9212909564697336,0.05052457923533093,0.7450744849416829,0.016655286327756817,-0.0041899397667563764,-0.11774910884227816,-0.0033045719167841734,2.9996843672822666,0.024230093006578895,0.00888486796348855,-1.6132483496828658e-05,0.058326745547304604,0.6012294320680462,-0.189970951295424,0.02756032430914246,-0.02096435435021877,0.00787003183736592,0.024880111893965686,0.005054569711735745,-3.4085361345693697,0.9111783929257977,0.011177821991541709,-0.00026078493012415734,0.0016916570549788466,0.6025182622068433,-0.11842839226655442,4.289526318819682,-0.0002821472513126167,0.012125414263744699,0.0509771882609253,0.004575360399846197,2.7548258310527993,0.3419869529089307,0.011642223214396457,0.0012696316048717445,-0.06634545026106585,0.13104451141620468,-0.05599170130118839,1.5281592099223602,-0.013115752252543552,0.011278975828155416,0.2113515411083964,0.007370025759323289,-0.8786746753102206,-0.3273874985470706,-0.005312508605813493,-0.00041421730856951514,-0.049927129994724755,-0.3846910401187378,0.03307989705241119,-1.5553302198260077,-0.007952166568580776,-0.005150865946013605,-0.04949696350141626,-0.003551706874815648,-1.8540606575223306,-0.8926092624872447,-0.019605358263016234,-0.00022931142210270075,-0.05873391668328838,-0.7801221623840453,0.015469035745363813,-4.15855395236072,-0.0014658709024549786,-0.018787371253971133,-0.2180582816775375,-0.011149426253060602,-2.3997709276039907,-0.8299855085322213,-0.014818485198000756,0.00015827329276701512,-0.08498506491586078,-0.7776476503120101,-0.020464825751158395,-3.8930098041315477,-0.005807170754354939,-0.014592148581906357,-0.14274802262114838,-0.008087607121521323,-3.0918401075735744,-1.160226835832372,-0.014990200884275268,-5.2608489408871714e-05,-0.08555303248750482,-0.7795589436755094,-0.06646573583596146,-5.484689517168877,-0.01447722785190344,-0.015594416210111482,-0.14670572749797087,-0.007394846789696265,-5.590512422157663,,,0.48160919540229885,1.4310344827586208,0.8275862068965517,0.017241379310344827,0.603448275862069,0.22413793103448276,0.7509950371517229,0.007873852219705827,0.01973592118522307,1.127903862407464,0.28481482236294936,0.20435317239572748,1.8788988995591869,0.4891679947586768,2.0595629318045434,1.7934649382387986,0.14207618092354854,0.12402181264219635,0.0,0.26609799356574493,7.493492704784326,1148.0,306.0797999999999,174.0,370.0,8031.429944008479,4533.284533000001,83.210391906678,311.19289999999995,208.5,383.4258119999999,12191.17482158579,1335.0,335.154,222.0,399.0,7703.24958145045,5080.53524,106.07720648600001,344.07300000000004,173.88888888888889,411.3067359999999,15364.652107098898,1933.0,543.0840000000001,344.0,578.0,13049.991767349295,7241.439323999998,156.846616319396,556.0681000000001,270.5833333333333,671.8626079999999,22161.542672266525,2247.0,723.257,406.0,658.0,18485.20917908133,8323.753145,180.49706555297996,736.7916,354.33333333333337,904.083628,25165.68762605605,2351.0,768.0899999999999,398.0,665.0,19415.384012400184,8650.967873,178.75505693843303,779.9776999999999,435.94444444444446,953.941268,25214.217813879404,2382.0,804.3628999999999,394.0,625.0,20171.508842553387,8684.829720999998,183.55576765558402,816.2187,465.66666666666674,999.8355240000001,25921.178871245313,2219.0,814.2400000000001,388.0,530.0,20746.572393140483,7942.964081,185.75231804928197,826.742,443.1111111111111,1019.8994680000001,25620.690408592112,2063.0,779.476,368.0,454.0,20177.63374256368,7341.309409999999,183.181767626131,792.7040000000001,395.9444444444444,981.1768240000001,24754.78842913011,1828.0,753.616,335.0,363.0,19949.444255228384,6365.342503999999,175.16106978498,766.5925000000001,355.33333333333337,954.171448,22984.0657969422,347.92156862745105,4.395062745098035,0.8515945455183327,28.98039215686274,173.921568627451,75.73594188725997,1665.0895061568626,12.095422335797293,4.280898039215684,61.22331154684096,2.563127686274509,2644.6734808635692,7.671280276816589,-0.2733370242214525,-0.46213445533946684,13.001153402537483,49.749711649365615,2.7283272787078703,40.23402218685088,0.899385461698868,-0.22625674740484433,-6.35845187748302,-0.17844688350634536,161.98295583324239,2.1564782775855216,0.7907532487504809,-0.0014357910312177507,5.19108035371011,53.509419454056115,-16.907414665292734,2.452868863513679,-1.8658275371694708,0.7004328335255668,2.214329958562946,0.44985670434448133,-303.3597159766739,109.34140715109572,1.341338638985005,-0.03129419161489888,0.2029988465974616,72.3021914648212,-14.211407071986532,514.7431582583619,-0.03385767015751401,1.455049711649364,6.117262591311036,0.5490432479815436,330.5790997263359,42.40638216070741,1.4436356785851607,0.15743431900409632,-8.226835832372165,16.24951941560938,-6.942970961347361,189.49174203037268,-1.6263532793154003,1.3985930026912716,26.207591097441153,0.9138831941560878,-108.95565973846735,-42.23298731257211,-0.6853136101499405,-0.053434032805467456,-6.440599769319493,-49.625144175317175,4.267306719761043,-200.637598357555,-1.02582948734692,-0.664461707035755,-6.385108291682697,-0.4581701868512186,-239.17382482038064,-118.71703191080354,-2.607512648981159,-0.0304984191396592,-7.811610918877355,-103.75624759707803,2.057381754133387,-553.0876756639757,-0.19496083002651216,-2.4987203767781607,-29.001751463112488,-1.4828736916570602,-319.1695333713308,-107.89811610918876,-1.9264030757400983,0.020575528059711967,-11.0480584390619,-101.09419454056132,-2.6604273476505913,-506.0912745371012,-0.7549321980661421,-1.8969793156478265,-18.55724294074929,-1.051388925797772,-401.9392139845647,-148.5090349865436,-1.9187457131872343,-0.006733886644335579,-10.950788158400616,-99.7835447904652,-8.507614187003067,-702.0402581976163,-1.8530851650436404,-1.9960852748942697,-18.77833311974027,-0.9465403890811219,-715.5855900361809,0.6971368173406185,0.557587458637749,0.4433084952500509,0.3036364797986703,0.27777067036213715,0.1570947936334248,0.17618763179839725,0.08289430478409343,0.11380798406315974,0.04348660537087665,0.072800596944912,0.02282498113941643,0.043704834466492065,0.011463188190445076,0.0283119589425182,0.006147165501687453,8.022122995036344,5.668371554173187,3.5439046497487476,2.1652598483911443,0.44082870613738667,-0.3802597988305995,3.2943614904773626,0.9779455205834134,6.021957968635218,0.9879868029012586,14.548052844831634,10.93190308180025,16.01021320497669,11.681819455868114,2.020246014694971,0.7518686503274503,3.4891426379560246,2.214316180228157,7.008272674472472,1.2536790377588227,3.7020641623523995,2.409814015961896,20.92190585996476,14.70255107896098,0.23061326980997604,0.5268959053955842,0.659291289423688,0.8192287226014303,0.9035719853836953,0.9165478719655823,1.4766683040953785,1141.553937059268,0.0,1.0,1.0,0.0,17.0,2.0,4.0,0.0,0.0,4.278507850086052,2.4876588298843783,1.6874089492347037,0.7206840686698719,0.21088014710124448,0.13244877455222515,136.40337091502988,1481.0306710971745,53.23716097383309,29.039817080336753,57.722136246749734,,13.0,631.0,0.0,9.901064578912528,23.261983883480365,16.596852926929518,17.54772460632,0.0,0.0,91.8528761581532,10.30076712495354,0.0,13.966666666666667,41.5,24.0,0.5,17.5,0.0,0.018390804597701146,6.5,0.12999273783587545,0.07695848292368629,-0.05303425491218916,0.030997404523544603,0.09691605301914541,0.0,0.573202614379085,0.780459770114942,0.4432098765432096,0.49624413145539875,0.7494623655913975,21.778856077399965,0.228341714371469,0.572341714371469,32.709212009816454,8.259629848525531,5.926241999476097,54.48806808721642,14.185871848001627,0.6170839469808546,0.08353221957040571,0.0,0.3221957040572792,0.12,0.39486778776780385,-0.9014807447993618,-0.041004212874320954,-0.017676093035281597,-0.042927654514255315,0.6051322122321962,1.3815131400537217,0.04106033536367133,0.027088492942229838,0.04605043800179073,-6.817770207008046,0.7943999849714456,0.7949260801558973,1.4563414648617077,0.6549766952337995,0.5430289364900414,1.0037501986941875,0.7959667242596612,0.8857377139540287,0.7827407480013813,0.7467350497304414,0.797692951403715,0.8498213015181786,0.8525749485820812,0.6273702153056865,0.8292660096386506,1.0758921105046297,0.7170996795155998,1.1575272001188777,0.8588772977511469,1.0466401767641196,0.6445276851013947,0.5930123486950495,0.5919036836226662,0.996636424527473,0.818551341298467,0.8354355511219812,1.0315961598879526,1.2005243572395128,0.8456877113866967,1.1029064581792807,0.8209002642625697,0.9601010904473839,0.8139598595310311,0.8222592655196342,0.8530538080650119,0.8997185551078243,0.9445491797318128,1.1742465116181346,1.3485897803175386,1.280064603430966,1.071116849110812,1.0995060117939515,0.9429326991331113,0.9832869753212153,1.1209256806467305,1.0813174793217903,1.2038473668917968,0.9302943765054417,1.0689168431648035,1.5890672767724303,1.6140109737449158,1.2237624697107972,1.2558008442358615,0.9969020543616189,1.060506672616428,0.9737761047091172,1.508236932527997,1.7650820592627472,1.7394784700862873,0.9457254273455177,1.152385726489352,1.6737039403569156,1.4318688482668767,1.2129020114562457,1.3444829661526985,0.9605747728531584,1.1421186940544465,0.972508225269169,1.6053567167677125,1.9324567802617763,1.8206497942830369,0.9840127141390553,1.1126512970798361,1.3379173655232093,1.159027194390084,1.1811699802227542,1.251669412887,0.9798146465538505,1.1075316105717319,1.0031625031817963,1.3132488940135127,1.4434163109278317,1.4013759064169748,1.0228073787732779,1.1519298777051394,1.1664011522287492,0.9971784704715364,1.0580968792286873,1.1780184258737316,1.0085093436351455,1.1496831387196056,1.0470491692822117,1.1775557482498629,1.1257739800366529,1.15608388956501,1.0914976056746353,4.0,0.04530149984695439,3.1111111111111125,2.1875,1.9200000000000004,1.284722222222222,0.7534693877551021,0.44965277777777773,0.3156966490299824,0.1325,5687.240451567988,6309.205269248623,2723.0827298223367,2489.1300313153265,13.903514089052209,0.4292364018515682,7.935619728374855,0.7520388532906083,1.0,0.12,1.3939174918854436,3.184766512087117,3.9850163927367914,4.951741273301623,5.461545194870251,5.53997656741927,0.125,0.002516749991497466,0.07070707070707073,0.044642857142857144,0.03918367346938776,0.026218820861678007,0.0167437641723356,0.01070601851851852,0.008769351361943952,0.004907407407407407,0.34939571363269656,22.203125,10.543388429752065,5.08680462241333,169.41229053774097,0.0,4.2999696430537115,153.76757548401122,,119.82473899392076,118.39596348939575,117.44009139697317,119.83774558354521,143.02140775462453,119.22929442593781,119.9097098993349,135.2921814991696,0.0208239404869251,-0.05873673459493901,-0.5125212711009818,0.42369568485941955,0.27015533007641224,0.034022862551014624,0.02282087454849775,0.07022653522413003,-0.049916378794138586,-0.09808689532191837,-0.06575293484537822,0.05784604558497011,0.0035517623934914165,0.10309938501863383,-0.000966136599474673,0.10264402244150155,0.17630188870450825,-0.12792497557485838,0.000844144734904029,-0.08839559646436108,0.0937587440833322,0.02072553206504431,0.10057362989715475,-0.06573036109027536,0.13356486699729483,0.129706662823971,-0.015617797819779141,0.002976995940460068,0.17667981961668539,-0.07974876729710649,0.13138383339207385,-0.0011896657609347496,0.14445476668355264,0.04246481504546022,0.09103853141679386,0.05312418277730692,0.05013007577300094,0.13509554205942859,0.07603525901994523,-0.11675542363263348,0.038426919300287306,-0.03770438044609521,0.04680596413457804,-0.05530219171430272,0.1343708170497131,0.17605922195635293,0.14664556734269235,-0.01694440117658252,-0.04799001824396588,-0.06164597745474159,-0.02480650310434674,-0.08786229033577747,-0.11280511785218003,0.022275747916152402,-0.04763818456474841,-0.033530081359568024,-0.06136426535746758,-0.04123176409105041,-0.0706703187615595,-0.035753787459147125,-0.13084291544912777,-0.22749920294744846,-0.013732923242385864,-0.10336056650421724,-0.2287596104127285,0.010416729538901581,-0.12737228286298308,-0.006180802451514893,-0.22382124619068816,-0.18164604436736384,-0.22184643470984378,-0.04627728836598757,-0.12166322743982796,-0.17195266346104943,0.009478616289404124,-0.14955761423961697,-0.2280339953169716,-0.013780856054615816,-0.1192389353704838,-0.02448576827247922,-0.17384193009501606,-0.1189113912616217,-0.16092368921234165,-0.059623180943593666,-0.17007157348963023,-0.1739452402473007,-0.003150599042669301,-0.15055712956698242,-0.22859445462232242,-0.04475751463789806,-0.16799046798464495,-0.061042814376303996,-0.18578233338661757,-0.12220822287066527,-0.14713944541041427,-0.107807688016345,19.27642975670292,30.33258956737326,13.607437258523506,12.081461580528195,27.50581675195776,35.22879400596444,40.94964484243654,42.32650758753458,42.40556641106399,59.72732502233176,52.01048320892516,4.120209246782908,3.5966325666236942,0.0,7.716841813406603,6768.178125171512,5562.134574791676,2023.30842495468,153.0,44.0,61.0,82.0,106.0,111.0,132.0,146.0,154.0,382.1681279440006,32.0,5.030437921392435,5.8944028342648505,6.778784897685177,7.663407664893479,8.558143177745192,9.452109387413557,10.352427134229572,11.251885323464869,12.15588926128021,0.6601307189542484,0.9728627450980394,1.1091849954194442,0.6243672058782717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7070969355406834,0.9620146097654748,0.9951730145809234,0.6648162976975852,14.0,1.0,0.0,0.0,0.0,2.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,10.423315998847038,5.693927994848461,5.749511833283905,0.0,5.907179729351506,4.794537184071822,4.9839785209472085,0.0,0.0,85.78650908969158,18.050640183084614,10.949675706161791,17.12199303846122,256.1598209230601,-584.8113047124075,-26.600376511729028,-11.46688832769426,-27.848157367257492,392.56319183809,896.2193663847671,26.636784462104064,17.572928752642493,29.873978879492242,0.46153846153846156,0.9061642176834619,0.2211226680030949,61.32756714543901,0.12845110390882714,114.82393561154561,0.09383578231653816,7.0,0.15625,0.24573571406423778,0.5614470566095149,0.7025242559387778,0.8729495717929727,0.9628236363833832,0.9766504155511385,5.488500000000004,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,115.784,9.901064578912528,0.0,10.30076712495354,0.0,19.386399651764595,0.0,96.05604194185656,0.0,17.00689131982936,4.174387269895637,0.0,5.484796933490655,0.0,7.016609683894219,0.0,8.649098262296176,0.0,10.336081328032545,33.666666666666664,26.653464523091145,4.615530383066909,0.0,0.0,0.0,1.2982949105568158,2.3525433154207516,0.0,49.61600000000001,0.0,13.306770439657345,0.0,0.0,0.0,0.0,0.0,-0.3111257558578988,56.568434766391654,5.316788604006331,0.0,5.749511833283905,15.99768564513942,0.0,0.0,35.30783981923041,84.92913895846256,0.0,22.160304418626517,0.0,31.842727499791852,36.06194371257485,38.70343545483021,307.53515096802244,,239.59529079572332,236.74131211219157,234.87764882197905,239.6214545108724,287.5881027613383,238.40697605295907,239.76579803407236,271.2779124802855,38.70343545483021,307.53515096802244,,238.91764383214866,235.92858446019625,234.1907802507102,238.94564667450064,289.243767674291,237.68300167234028,239.0943892853273,272.02100121094213,4.991233614739328,219.21503298833346,,175.14769043766117,172.89335106915496,171.17764944794664,175.16759762174377,212.42733608172264,174.19795389106727,175.28289528932712,200.30376457568858,1.334601222580352,10.60466037820767,,8.261906579162872,8.163493521110054,8.099229269723416,8.26280877623698,9.91683112970132,8.220930208722727,8.267786139105944,9.35441077518226,2.495616807369663,153.76757548401122,,119.82473899392076,118.39596348939575,117.44009139697317,119.83774558354521,143.02140775462453,119.22929442593781,119.9097098993349,135.2921814991696,49.062745098039215,0.0,2.0256527672797513,0.0,0.0,0.0,11.043506550768456,50.753823743627095,0.7411446015504456,3.0842156399596874,0.0,0.0,-0.14333070882674148,0.0,0.0,0.0,0.0,33.90563118257685,587.8495813519661,71.08979208615762,162.42309211644297,203.23583602957638,252.53880493838278,278.5388049383828,282.5388049383828,1050.0,138.13748760236933,60.87343140918409,64.66097347760923,62.22,62.22,0.8571428571428571,9.312241532051038,6.0,4.308213378052157,5.302806896710295,,5.3020543763467405,5.300872143983859,5.3008345316924474,5.302067312671324,5.3142263080476635,5.301604454392342,5.302119525589994,5.311880500698533,0.14855908200179851,0.1828554102313895,,0.18282946125333588,0.18278869462013306,0.18278739764456714,0.1828299073334939,0.18324918303612633,0.1828139467031842,0.18283170777896532,0.1831682931275356,2.5252340257127437,2.7329470205131354,,2.732805100624616,2.732582099481391,2.732575003965063,2.7328075404918604,2.7350981705605535,2.7327202389816962,2.732817388096296,2.7346566528100813,299.7700000000007,398.5976346047366,185.48597913975996,,185.1824652952843,185.29419330312243,185.48823130754909,185.18180334469687,184.74670111277166,185.2335134521708,185.1754576568718,184.5531924267431,13.744746020852986,6.396068246198619,,6.385602251561528,6.389454941486981,6.396145907156865,6.385579425679203,6.370575900440402,6.3873625328334755,6.385360608857648,6.363903187129072,7.052663210495453,6.287690032031055,,6.286052374891011,6.286655533058373,6.287702173941332,6.286048800298949,6.283696440708798,6.286328000998623,6.286014532371767,6.282648464756875,0.0,17.922300822724253,14.75744058117074,3.122680262174762,-0.4126861824976904,26.510133814264403,0.7411446015504456,2.0256527672797513,0.0,355.8667214787266,166.17677077756426,-379.380551489812,-17.25627639126979,-7.438834342937487,-18.0657405471339,254.6647765083391,581.3981274560152,17.27989506652554,11.399963283451278,19.379937581867175,2154.0,49.0,1.4780956548790776,0.6436733920827026,0.0,0.0,0.48606188815757473,0.1285638703455303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33281839972791627,0.10590323254710987,0.386778448889608,0.09723037022846709,20.216967702877938,16.17003630049472,14.185871848001629,9.71636735355745,12.221909495934035,6.91217091987069,10.747445539702232,5.056552591829699,9.332254693179099,3.5659016404118855,7.716863276160673,2.4194480007781416,4.851236625780619,1.2724138891394035,3.7371785804124027,0.8114258462227438,4.1647284562327185,1.5183296150381203,7.462462175265288,2.152197252335222,12.363267683300592,2.797983265165741,92.63860398725357,65.57926076847272,44.25663776135542,27.334971320572283,23.28694824853745,22.998914888382814,152.0,181.0,60.223445999999996,24.648553999999994,0.49019607843137253,212.04,8.25,6.527777777777777,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,23.0,51.0,0.0,0.0,54.0,23.0,1.0,12.0,42.0,24.0,32.0,30.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,3.0,2.0,1.0,29.0,4.0,0.0,2.0,2.0,0.0,4.0,5.0,0.0,0.0,0.0,1.0,4.0,3.817712325956905,8.11935730508192,4.436751534363128,5.081404364984463,5.716616432636288,6.329832307516908,6.614138967042164,7.104323822110548,7.528970003850799,7.906168765270369 +4614,O=C(O)CCc1nc(-c2ccccc2)c(-c2ccccc2)o1,0,24.43243243243243,6.250672972972974,3.4324324324324325,8.54054054054054,157.3961381135469,96.65122135135134,1.6218650154793246,6.334794594594595,4.930180180180181,7.750352216216215,242.75802438017962,26.05128205128205,6.347435897435898,4.051282051282051,8.205128205128204,142.35611077991663,99.67980799999997,1.93220380323077,6.506282051282051,3.4935897435897436,7.757033025641023,286.2710067145656,23.07936507936508,6.292857142857144,3.7777777777777777,6.984126984126984,146.6814925202396,86.86584939682537,1.718585949201555,6.4259079365079375,3.7014991181657853,7.734028444444445,248.08616771069032,17.9,6.1648499999999995,3.2375,4.875,155.7714787857592,65.19555047499998,1.4250062543773503,6.260149999999999,3.037847222222223,7.699816099999998,200.23938930081823,19.12,6.341880000000001,3.3066666666666666,5.6,157.56036256678127,70.0961108,1.4137368168865334,6.425799999999999,3.2533333333333343,7.861266773333333,204.01621356155226,21.82608695652174,6.465521739130435,3.550724637681159,6.492753623188406,154.63567693452165,81.4593108405797,1.5548954449723766,6.555121739130436,3.851046698872785,7.932851362318841,225.82105468308524,19.114285714285714,6.196300000000002,3.2,4.585714285714285,149.39027218476284,69.07848382857144,1.6117566812000002,6.320442857142858,3.1222222222222222,7.683300685714286,224.6999129814059,13.939024390243903,5.768707317073171,2.5121951219512195,2.975609756097561,152.9408067008151,48.350914609756096,1.3827340659047316,5.884500000000001,2.5752032520325203,7.337164390243903,178.7084308723455,12.292682926829269,5.715365853658538,2.1219512195121952,2.7804878048780486,159.23921640631676,42.54417290243902,1.1441000258094636,5.801963414634147,2.906504065040651,7.3368859512195135,146.2497506739383,7.108838568298028,0.12571687363038705,0.023665158575504216,0.5332359386413442,3.865595325054785,1.449845118961774,33.80403677574871,0.23533362414913805,0.1171849525200876,1.6020209398587775,0.08134469539810076,49.93111260835578,0.15242269296323321,-0.0060035680170815574,-0.013980277250977197,0.13966773426232895,0.9050214455619857,-0.03283942699442672,0.7740370038770632,0.005646019570640264,-0.00453574947088462,-0.14810548594332376,-0.004910039819445225,1.6860466637130587,0.036592577133117386,0.028561161547648,0.0033576982024072794,0.028325622920217557,0.33346087400141444,-0.23492774064374858,-0.052951162707104336,-0.03659644476394881,0.02436022122508609,0.32116414999297876,0.019369693276287875,-6.752374934581322,-0.2588385682980277,-0.01707815741417093,-0.0010789687005740604,0.07081811541271002,-0.4230277574872169,0.00452901000896338,-1.1174456480460184,0.010575839259708567,-0.015054749817384947,-0.25096988880772664,-0.011299708911614316,1.4275237950703812,-0.40541514487460434,-0.027271684441197975,-0.004417566694784073,-0.03738008278548817,-0.5646944241538837,0.06616888555445238,-1.7490043065595322,0.018617233409359238,-0.023971475042610175,-0.22931823715607497,-0.017742299722425123,2.69186788474159,0.061549210785403353,0.028565930913286925,0.009875995106630248,-0.16347487322810467,-0.5205111104053526,0.27230398197899514,0.2079554890378063,0.024816530042631634,0.02220423666910153,0.37103907667949976,0.023076600332412312,1.324564695142382,-2.389147448606908,-0.02655181571532922,-0.006494791146972045,-0.2251278305332359,-1.3339350933945526,-0.12198695133273055,-11.370169469185011,-0.04647371529254343,-0.027830744025879133,-0.16496602780386563,-0.01270267223207763,-13.585864631779067,-0.9687594648042901,0.0031449918936735472,-0.0004448357747798408,-0.11200983448841063,-0.02248392096777059,-0.27816102748164834,-4.7698568884712,-0.05588558987217496,0.0012710132017317451,0.01138820098938755,0.0031998556895722376,-11.251508775485835,1.1917547079050048,0.021333159329401954,0.002064985657443567,-0.003901726380302558,0.8634752088937983,-0.2556153957349767,5.4797355373692715,-0.03481660615127981,0.022732186570222156,0.25740555981162444,0.009270537298009938,-0.9178173565833468,,,0.4727272727272727,1.4090909090909092,0.7954545454545454,0.0,0.6136363636363636,0.18181818181818182,0.635968015571616,0.00804682360705518,0.019774096334327907,0.9681395698593792,0.29003619096767186,0.1980176018967773,1.6041075854309952,0.48805379286444917,2.0479489725412012,1.7038747395341014,0.09490978336497768,0.24916444964212248,0.0,0.34407423300710016,7.921761982162174,904.0,231.27490000000003,127.0,316.0,5823.657110201235,3576.0951899999995,60.00900557273501,234.3874,182.41666666666669,286.76303199999995,8982.046902066646,1016.0,247.55,158.0,320.0,5551.888320416749,3887.512511999999,75.35594832600003,253.745,136.25,302.5242879999999,11164.569261868059,1454.0,396.45000000000005,238.0,440.0,9240.934028775095,5472.5485119999985,108.27091479969796,404.83220000000006,233.19444444444446,487.24379200000004,15629.42856577349,1432.0,493.18799999999993,259.0,390.0,12461.718302860736,5215.644037999999,114.00050035018802,500.81199999999995,243.02777777777783,615.9852879999999,16019.151144065458,1434.0,475.641,248.0,420.0,11817.027192508594,5257.20831,106.03026126649,481.9349999999999,244.00000000000006,589.595008,15301.21601711642,1506.0,446.12100000000004,245.0,448.0,10669.861708481994,5620.692448,107.28778570309399,452.30340000000007,265.7222222222222,547.366744,15581.65277313288,1338.0,433.7410000000001,224.0,321.0,10457.319052933399,4835.4938680000005,112.822967684,442.43100000000004,218.55555555555557,537.831048,15728.993908698412,1143.0,473.03400000000005,206.0,244.0,12541.146149466838,3964.774998,113.384193404188,482.5290000000001,211.16666666666666,601.6474800000001,14654.091331532332,1008.0,468.6600000000001,174.0,228.0,13057.615745317975,3488.6221779999996,93.816202116376,475.7610000000001,238.33333333333337,601.6246480000001,11992.47955526294,263.02702702702703,4.651524324324321,0.875610867293656,19.729729729729737,143.02702702702706,53.64426940158564,1250.7493607027025,8.707344093518108,4.335843243243241,59.27477477477477,3.009753729729728,1847.4511665091638,5.944485025566095,-0.23413915266618074,-0.5452308127881107,5.447041636230829,35.29583637691744,-1.280737652782642,30.187443151205464,0.22019476325497028,-0.17689422936450017,-5.776113951789627,-0.1914915529583638,65.75581988480928,2.3053323593863952,1.799353177501824,0.2115349867516586,1.784514243973706,21.00803506208911,-14.800447660556161,-3.335923250547573,-2.3055760201287754,1.5346939371804236,20.233341449557663,1.220290676406136,-425.3996208786233,-20.707085463842215,-1.3662525931336744,-0.08631749604592483,5.665449233016802,-33.84222059897735,0.3623208007170704,-89.39565184368148,0.8460671407766854,-1.2043799853907957,-20.07759110461813,-0.9039767129291453,114.20190360563049,-30.406135865595324,-2.0453763330898482,-0.33131750210880545,-2.803506208911613,-42.352081811541275,4.962666416583929,-131.17532299196492,1.3962925057019429,-1.7978606281957632,-17.198867786705623,-1.3306724791818842,201.89009135561923,4.2468955441928316,1.971049233016798,0.6814436623574871,-11.279766252739222,-35.91526661796933,18.788974756550665,14.348928743608635,1.7123405729415828,1.5320923301680056,25.60169629088548,1.5922854229364496,91.39496396482436,-167.24032140248357,-1.8586271000730454,-0.4546353802880432,-15.758948137326513,-93.37545653761869,-8.539086593291138,-795.9118628429508,-3.25316007047804,-1.9481520818115394,-11.547621946270594,-0.889187056245434,-951.0105242245347,-79.43827611395179,0.25788933528123087,-0.03647653353194694,-9.184806428049672,-1.8436815193571885,-22.809204253495164,-391.12826485463836,-4.582618369518347,0.1042230825420031,0.9338324811297791,0.2623881665449235,-922.6237195898385,97.72388604821039,1.7493190650109602,0.1693288239103725,-0.31994156318480976,70.80496712929146,-20.96046245026809,449.33831406428027,-2.854961704404944,1.8640392987582168,21.107255904553202,0.7601840584368149,-75.26102323983444,0.6983452978067921,0.5408472739180454,0.4473826434590784,0.29423611729909155,0.29476613930108886,0.15347263464026403,0.18106984880080318,0.08066803319782874,0.11325557294469756,0.04112873105459068,0.0752567821097235,0.022187859262742672,0.0460577642220187,0.01127301519130461,0.030954551884242447,0.006215581550967991,8.029109672149994,5.687319138264814,3.5552658702281943,2.1864829527203438,0.43047115797041924,-0.5113157037468367,3.228174581379401,0.9729579322483844,6.023628801489341,1.895310869578233,14.547913682400534,10.94821873218371,16.01447830463944,11.698901726281816,1.9974472065764355,0.7415339107757952,3.501352814632598,2.2362453390684087,7.008292850173387,1.3653164866064067,3.7142471753228006,2.4321580463137322,20.903568143037745,14.70065601009596,0.26293035338318316,0.5531804793422468,0.6388811972497986,0.7899590871838149,0.874693257237419,0.9037287542781279,1.6228346843803405,706.541070336389,0.0,2.0,0.0,0.0,12.0,2.0,2.0,0.0,0.0,3.7409972016825104,2.1199611323715475,1.6413258365729884,0.7975614866034295,0.324324324324321,0.1621621621621614,92.64049999982777,1028.0819475006801,61.78328071628144,27.78599858109947,56.522632482127605,,10.0,373.0,5.969305287951849,4.794537184071822,12.841643245852019,11.650971340900352,16.82083097824245,0.0,0.0,60.6636706846161,4.9839785209472085,9.523678331894054,10.4,31.0,17.5,0.0,13.5,0.0,0.027272727272727258,4.0,0.16887532693984286,0.08532061473237929,-0.08355471220746358,0.022727272727272707,0.13941436464088364,0.0,0.6108108108108109,0.8227272727272723,0.44193548387096804,0.5254901960784316,0.7999999999999996,13.99129634257555,0.17703011935521396,0.43503011935521396,21.299070536906342,6.380796201288781,4.3563872417291005,35.290366879481894,10.737183443017882,0.5745856353591163,0.0641025641025641,0.0,0.28846153846153844,0.1111111111111111,0.4114609738920904,-0.8085748500021925,-0.06990549029675382,-0.021853374324383584,-0.057755346428728045,0.5885390261079098,1.1565564778944089,0.0481904073804246,0.03125828318633539,0.05028506425627866,-4.934461914024904,0.7317177274020676,0.7540753859240565,1.5063852192347342,0.7485774499473126,0.5098552241409383,1.0342373784564673,0.7347861434959545,0.9420014643269959,0.7346135577509257,0.7319237491743001,0.7911404254220056,0.8550607288242397,0.8136046033703247,0.5386621299382245,0.7258636928020407,1.0426614481408996,0.7630925386027425,1.1681601389868805,0.8238158673530515,1.1161982638784775,0.5530840438068808,0.4348861362312233,0.5338638976575486,1.0479547648921625,0.9991368680641183,1.1247957949268594,0.9774662024448589,0.9693493150684928,1.131079931972789,0.9920311211271879,0.9954033435208217,0.9175810648170676,1.1125811588132115,1.0235171745573373,1.1256213312523158,0.9279976305332389,1.0438471023427867,1.4055831044051825,1.3852484441151487,1.2286027397260268,1.2719274376417231,0.992071422387393,1.0341647878622857,0.8528841006317762,1.3664276284048367,0.9899658028725588,1.4187954708119788,0.8590295560072796,0.9243553315820511,0.9086558486873338,0.8014024727155135,1.5337701012507436,1.2311446317657495,0.8741201706354232,0.9233285918700568,0.8204209510523384,0.9149356120026583,0.46932005537621807,0.867194799636671,0.860353898521378,1.183908754623921,1.004601555449752,1.0863066459691606,1.3554598825831696,1.1919825072886296,1.0923918492463802,1.1871988782514769,1.1557015383078804,1.0282764999019576,0.7130231346281197,0.9475216623118677,1.1952116963074706,1.0440362695858771,0.499611201941669,0.5023775848698722,0.9568326094219842,0.7627758420441345,1.1236205128578947,1.0576530446677177,1.2482775299220625,0.5592599359796802,0.5307032745834716,0.42877959178595076,1.268697409840458,0.8612673303058554,0.5474208637583581,0.5566361106405906,0.7788172402271965,0.6599469055915048,1.0768024421879465,0.8722353801441395,1.166829069726727,0.5688892553922902,0.7299613173956803,0.5502368024115368,1.1027212943731015,3.5,0.04938271604938271,1.7777777777777786,1.097222222222222,1.1672222222222222,0.5944444444444444,0.23519274376417232,0.2604166666666667,0.19652305366591077,0.08875000000000002,4142.153484092548,4540.395343277745,2098.937240293698,1940.8562933975188,11.279242252200977,0.43481957474603466,6.374806932641442,0.7693464870986062,1.0,0.1111111111111111,1.4684561639464397,3.0894922332574026,3.5681275290559618,4.411891879025521,4.885129041304629,5.047291203466789,0.14583333333333331,0.012345679012345678,0.05555555555555558,0.03657407407407407,0.03890740740740741,0.01857638888888889,0.008399740848720439,0.011837121212121212,0.01091794742588393,0.008068181818181822,0.3470154295765123,16.84375,8.203125,4.521118381915526,127.610150972078,1.0,4.018432528764685,100.81431578653863,,77.28186598740844,76.66323305305337,77.52083517582443,77.29130437916365,94.61163240532687,77.08116308599482,77.31293745051046,86.6750301960154,0.02144129332785309,-0.04775467161816561,-0.5907535842776126,0.26192483315771,0.23412213888404348,-0.022650300066494586,0.022897768364527504,0.023991554929958542,-0.03870590355964953,-0.09244915734770587,-0.06036090977310199,0.03376745631401983,0.005147476170903997,0.2271863809755485,0.14188361306324945,0.053120243531202496,0.08626378240890707,-0.16203643932117315,-0.0015664153680335574,-0.15550877991305032,0.20787840675115957,0.20047437708354188,0.2381187019201761,-0.13523381678964105,-0.03641080969995889,-0.1358461829426449,-0.04559313207775839,0.13280821917808217,-0.10943405139833708,0.003123788844567466,-0.03305657414405852,0.04493977134778809,-0.12846999118597838,-0.1566583073688477,-0.13891144169037165,0.028589865526679463,-0.0570297301000137,-0.21692938786704066,-0.18666964266010422,-0.0701004566210045,-0.14608213655832702,0.04563858903896959,-0.051739510229567666,0.07910995921926113,-0.2045610338793373,-0.14314309597993768,-0.21811255959094009,0.053911634332200246,0.008658124698439908,0.2272243183303458,0.4173221605560202,-0.30657137184832217,-0.1346522505942796,0.18781591110503615,0.006151794545052537,0.10545254692081164,0.18948027192565808,0.23160688318606362,0.28368906195389243,0.026527842580473988,-0.33608126357818097,-0.21120327724178606,-0.2744452831892197,-0.42219178082191755,-0.34507882518086586,-0.08413791910413487,-0.3363553750876896,-0.19748013255892252,-0.23749417845357274,-0.10297370258993482,-0.15615858132986765,-0.2720921670290504,-0.1362753501147835,0.025016465991032806,-0.018797075597891406,-0.21005679919812892,-0.005816418708404749,-0.19185568433739866,-0.14110317415975399,-0.2374738844660743,0.010846215101839723,0.007108646776109838,0.03933699270631171,-0.22534063808549978,0.1676440808797731,0.16969209234491742,0.08725847540193674,-0.007317073170731781,0.2233744446288,-0.17630531178255887,0.16210299301592518,-0.14794573566425623,0.19398554235302054,0.1606755276459217,0.1139660951785479,-0.018381672441037368,16.030686355237584,20.05088973444207,5.91064339960016,13.28032982968853,28.093444903773758,33.84233344161026,38.71036288942306,40.37689946251391,41.13511567873013,45.05487739590643,37.48524426975023,2.088015234029509,5.481617892126694,0.0,7.569633126156203,3356.708830835601,2428.3136777791447,1410.543862583971,76.0,32.0,41.0,55.0,70.0,73.0,84.0,92.0,88.0,293.1051933400004,24.0,4.727387818712341,5.556828061699537,6.421622267806518,7.282761179605593,8.161375023197486,9.038483865029992,9.924514919728203,10.810030932955403,11.700159933624827,0.6936936936936938,0.9899459459459463,1.1090153735522865,0.6600301075365598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7050962129794467,0.9778484366719656,1.0084840849589578,0.6747586326403748,10.0,1.0,0.0,1.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.523678331894054,5.693927994848461,11.650971340900352,0.0,0.0,4.794537184071822,4.9839785209472085,0.0,0.0,60.6636706846161,0.0,17.54772460632,6.4208216229260096,215.26072754246198,-423.01559935950684,-36.57189297480786,-11.432854036743429,-30.215399954250493,307.90122754228975,605.0663481411733,25.21138774147358,16.35314454435604,26.307232527877108,0.4,0.7918537150073316,0.24487917662798156,126.67606984685696,0.15437289926276834,33.36013807397657,0.20814628499266855,6.0,0.20833333333333334,0.281882965616902,0.5930549745663,0.6849331932977526,0.8469011179050764,0.9377431178357108,0.9688715589178553,4.025800000000003,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,83.33180000000004,14.318215515965875,0.0,4.9839785209472085,0.0,12.841643245852019,0.0,66.554394606642,0.0,22.581078397116894,3.8918202981106265,0.0,5.176149732573829,2.3978952727983707,6.652863029353347,4.727387818712341,8.217438537730187,6.842683282238422,9.833547804331447,25.66666666666667,19.45974438303533,4.498787792894936,0.0,5.831214096749811,0.0,0.0,3.73758314436886,0.0,36.628000000000014,0.0,10.734884172064907,0.0,0.0,0.0,0.0,0.0,-0.8604423868312756,41.0335688214346,0.0,0.0,0.0,16.059811203739763,11.21535880699783,0.0,12.311545544951919,65.08082162166944,0.0,22.581078397116894,0.0,24.421113978852713,26.08855988023953,28.980903056558557,201.62863157307726,,154.48256314364806,153.23166514159897,154.9739747022768,154.5016726750747,190.9346578157443,154.07711280824202,154.54535241067828,174.03929132949332,28.980903056558553,201.62863157307723,,153.6708748319598,152.28365549652094,154.29701820855627,153.69231184254903,192.98832942185302,153.22497917076566,153.74012750725208,174.86636845444838,4.775354321402789,136.51095361116433,,105.31708772719988,104.24992328978053,105.60216738395664,105.33273971904669,135.11852200314672,104.9611752357339,105.37170057185782,121.4292457255491,1.317313775298116,9.164937798776238,,7.021934688347639,6.965075688254498,7.044271577376218,7.022803303412487,8.67884808253383,7.003505127647364,7.024788745939921,7.910876878613333,2.4475714988764676,100.81431578653863,,77.28186598740844,76.66323305305337,77.52083517582443,77.29130437916365,94.61163240532687,77.08116308599482,77.31293745051046,86.6750301960154,36.18039215686273,0.0,0.0,0.0,0.0,0.0,8.81551731497619,37.31391114348144,0.28271148274124513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.96606940769387,414.26773768435936,54.33287806601827,114.3112126305239,132.0207185750706,163.23999952394425,180.74977452827127,186.7497745282712,657.0,119.6231640023599,108.89421740039238,69.73978577584857,63.33,63.33,0.6666666666666666,8.681414421178406,5.584962500721156,3.9203263858698354,4.603118456641352,,4.599180766680391,4.5989652052111785,4.597989003536707,4.599180426101164,4.591110021430042,4.599061879926244,4.599196051524357,4.597803037502612,0.17819665390317432,0.20923265712006145,,0.20905367121274504,0.20904387296414448,0.2089995001607594,0.20905365573187107,0.208686819155911,0.20904826726937473,0.20905436597837987,0.20899104715920966,2.154632272402067,2.315191359528542,,2.3143355537987493,2.3142886831641865,2.314076395127086,2.314335479746596,2.3125791899336323,2.3143097039144354,2.314338877177269,2.314035949228943,220.7899999999998,197.83897796216522,123.1206594763586,,123.40435400108407,123.44385362168403,123.5039323429079,123.4040749917954,123.44286626556745,123.42159267203306,123.40196681816299,123.18399924482948,8.992680816462055,5.596393612561754,,5.609288818231094,5.611084255531092,5.613815106495814,5.6092761359907,5.611039375707612,5.61007239418332,5.6091803099165,5.599272692946794,6.07591081758231,5.601622206251233,,5.60392375485236,5.604243786513254,5.6047303567586555,5.603921493914273,5.604235788058602,5.604063437662934,5.603904410267398,5.602136526769537,5.831214096749811,15.233671964959843,8.81551731497619,2.6197174981103557,0.2574232594272283,19.45974438303533,0.28271148274124513,0.0,0.0,263.7541270564632,112.61622307408045,-221.30566799226762,-19.133023029850776,-5.981234270061287,-15.807547713733404,161.08220817401929,316.5476936495272,13.189638901229058,8.555343071608846,13.76294320215336,1063.0,30.0,1.2178712960050364,0.40269884728572486,0.0,0.0,0.1916383190435099,0.0470551318631835,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02282177322938192,0.38327663808701984,0.1031092337485379,0.4337409279807218,0.0916810893209497,15.363596551749426,11.898640026196999,10.737183443017882,7.061666815178198,9.432516457634843,4.911124308488449,7.4238638008329305,3.3073893611109786,6.229056511958365,2.2620802080024873,5.267974747680645,1.553150148391987,3.3622167882073652,0.8229301089652366,2.6001823582763657,0.5221088502813113,2.4598917829211375,0.7789602986544222,3.9918130811710473,1.0723489573985898,6.416507796894863,1.3954903632282236,70.57700754232928,50.443299821475286,38.53523887958949,27.20801938749835,23.59091330677555,22.203041581098166,112.0,129.0,43.56789499999999,18.792104999999996,0.4594594594594595,114.04,6.166666666666667,4.916666666666668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,17.0,17.0,37.0,0.0,0.0,39.0,17.0,1.0,9.0,30.0,18.0,24.0,21.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,3.0,1.0,1.0,22.0,4.0,0.0,1.0,3.0,0.0,3.0,5.0,0.0,0.0,0.0,1.0,3.0,3.5409593240373143,7.403213425617006,4.114963849424837,4.67632738030442,5.292362169509363,5.817854930916049,6.077212104981229,6.5261287603538145,6.921164965892054,7.2210137197386075 +54685925,CN(C)c1ccc(O)c2c1C[C@H]1C[C@H]3[C@H](N(C)C)C(=O)C(C(N)=O)=C(O)[C@@]3(O)C(=O)C1=C2O,0,24.166666666666668,6.474245,3.5833333333333335,8.6,164.0154330628704,95.43121108333338,1.40469460718205,6.513291666666666,6.799189814814815,7.98162193333333,213.74712997142086,25.3015873015873,6.544174603174604,4.412698412698413,7.920634920634921,148.5727029533826,95.93047701587302,1.7552480484761905,6.669539682539682,3.609347442680776,7.9593055238095225,263.41280693689515,22.928571428571427,6.361803571428569,4.348214285714286,7.098214285714286,154.51335336666102,87.06423033928569,1.6067200493994191,6.4689696428571395,3.30344742063492,7.821418714285714,238.806549999496,22.670886075949365,6.464386075949367,3.8164556962025316,6.8164556962025316,150.90498425616806,84.84001743670888,1.5441991699290636,6.570789873417722,3.9938466947960607,7.928064430379744,228.29915840057612,19.4811320754717,6.43490566037736,3.1179245283018866,5.386792452830188,158.48906939657232,71.70965688679244,1.2940070783585715,6.501416981132074,4.545794025157233,7.956615056603773,187.9554148979195,17.23766816143498,6.501681165919282,2.7533632286995515,4.331838565022421,160.76385698077232,61.09092301793721,1.224209913122762,6.552165919282508,4.25373692077728,8.047725829596411,173.65177073344654,15.348214285714286,6.257941964285715,2.5580357142857144,3.4732142857142856,163.76681637521827,54.368268308035695,1.1110030280236567,6.306133928571431,4.092881944444444,7.842364625,154.3252464735038,13.482051282051282,6.406184615384618,2.2717948717948717,3.18974358974359,166.05765139441652,45.09477853333332,1.0570252092059897,6.43512205128205,3.8584045584045596,8.01616927179487,144.4232439101462,13.554878048780488,5.9555298780487815,2.3353658536585367,3.4939024390243905,167.42585685956882,48.806773396341484,1.0091128293346523,5.997973170731709,3.4910230352303513,7.583176658536586,135.4721388201636,7.89888888888889,0.1733083055555555,0.03633339032212665,0.8608333333333331,4.4655555555555555,1.421689386796182,37.2949068363889,0.21923054385901639,0.1586909722222222,2.8930767746913593,0.11340993222222216,47.49669051683929,-0.1724338624338621,-0.025668675925925765,-0.0165899597550991,0.48281746031746037,1.3720105820105821,0.010824838912634343,-0.6226232797751313,0.02594455842067353,-0.0221724537037036,-0.3900950727513227,-0.016824569259259285,4.266767881884948,1.455873015873015,-0.0030676656746031388,-0.0014938880724100659,0.10241071428571438,0.7392063492063495,0.4659958744640683,7.070554752450397,0.06040257253767841,0.0008564236111111237,0.13632344025573193,-0.0037794363888888796,14.57675699453756,0.13697609001406502,0.008433350562587993,-0.0024434027132906174,-0.061044303797468294,0.4753727144866387,-0.213782984004409,0.5316062054887506,-0.031220369688197726,0.008512930731364332,0.037142546686982345,0.004258325583684931,-3.966916950341972,0.7045702306079665,0.028834029350104866,0.00363160947573512,-0.1135849056603773,0.11227463312368978,-0.15039107202297508,3.1582366372746358,-0.020929582491217576,0.02652180293501052,0.46633261996273007,0.01827898633123687,-1.8500490522773536,-1.5284853014449424,-0.011951818261086069,-0.0003122060672620147,-0.13265695067264574,-0.7338664673642251,-0.06018373427347764,-7.26456559251744,-0.022435039194136343,-0.014482452042849942,-0.3239987560897969,-0.005381054793223765,-8.502531030341478,0.21361111111111114,0.005804105158730128,0.0002225898309374639,-0.05986607142857143,-0.353204365079365,-0.12851258861250592,0.9396502104861112,-0.017550846689137662,0.006263826884920616,0.28534326085758355,0.0031913975396825433,-1.656051746513015,-2.434102564102564,-0.05212022008546995,-0.004698263365367266,0.07814102564102561,-0.7152991452991452,0.002719503073044173,-11.332161989722223,-0.0032142112337762187,-0.050497339743589685,-0.853889334045584,-0.03039969495726499,-6.822016668858734,3.1387127371273715,0.05139339159891573,0.007367706014550287,-0.022926829268292693,1.1439972899728994,0.054885339255151155,14.764809376415993,0.02825176173193707,0.051214617208671924,0.6394527250828066,0.027673422249322573,12.708227892344667,,,0.45555555555555566,1.0606060606060606,0.4090909090909091,0.030303030303030304,0.6515151515151515,-0.24242424242424243,1.1965356787513524,0.03276299357736149,0.04318723600160391,1.1345857756775948,0.21180662479776802,0.2528307926058734,2.331121454428947,0.4646374174036414,2.012586363436308,1.4605476131037405,0.17468819382546746,0.37735055650710025,0.0,0.5520387503325677,7.619748336733344,1450.0,388.4547,215.0,516.0,9840.925983772224,5725.872665000003,84.281676430923,390.79749999999996,407.9513888888889,478.8973159999998,12824.827798285252,1594.0,412.2830000000001,278.0,499.0,9360.080286063103,6043.620052,110.580627054,420.181,227.38888888888889,501.4362479999999,16595.006837024393,2568.0,712.5219999999997,487.0,795.0,17305.495577066034,9751.193797999997,179.95264553273495,724.5245999999996,369.98611111111103,875.998896,26746.333599943555,3582.0,1021.373,603.0,1077.0,23842.987512474552,13404.722755000003,243.98346884879206,1038.1848,631.0277777777776,1252.6341799999996,36071.267027291025,4130.0,1364.2000000000003,661.0,1142.0,33599.68271207333,15202.447259999997,274.32950061201717,1378.3003999999996,963.7083333333333,1686.802392,39846.54795835893,3844.0,1449.8749,614.0,966.0,35850.340106712225,13623.275832999998,272.9988106263759,1461.1329999999994,948.5833333333335,1794.6428599999997,38724.34487355858,3438.0,1401.7790000000002,573.0,778.0,36683.76686804889,12178.492100999996,248.86467827729908,1412.5740000000005,916.8055555555553,1756.689676,34568.85521006485,2629.0,1249.2060000000004,443.0,622.0,32381.242021911225,8793.481813999997,206.119915795168,1254.8487999999998,752.3888888888891,1563.1530079999998,28162.53256247851,2223.0,976.7069000000001,383.0,573.0,27457.840524969288,8004.310837000004,165.49450401088296,983.6676000000002,572.5277777777776,1243.6409720000001,22217.43076650683,473.9333333333334,10.398498333333329,2.180003419327599,51.649999999999984,267.93333333333334,85.30136320777092,2237.6944101833337,13.153832631540983,9.521458333333332,173.58460648148156,6.80459593333333,2849.801431010357,-10.863333333333312,-1.6171265833333233,-1.0451674645712432,30.417500000000004,86.43666666666667,0.6819648514959636,-39.22526662583327,1.6345071805024325,-1.3968645833333269,-24.57598958333333,-1.059947863333335,268.8063765587517,163.0577777777777,-0.34357855555555156,-0.16731546410992737,11.470000000000011,82.79111111111115,52.19153793997565,791.9021322744444,6.765088124219982,0.09591944444444585,15.268225308641975,-0.4232968755555545,1632.5967833882066,21.642222222222273,1.332469388888903,-0.38605762869991755,-9.64499999999999,75.10888888888891,-33.77771147269662,83.99378046722259,-4.932818410735241,1.3450430555555646,5.86852237654321,0.6728154422222191,-626.7728781540316,149.3688888888889,6.112814222222232,0.7699012088558455,-24.079999999999988,23.802222222222234,-31.882907268870717,669.5461671022227,-4.437071488138126,5.622622222222231,98.86251543209877,3.8751451022222163,-392.210399082799,-340.85222222222217,-2.6652554722221935,-0.06962195299942928,-29.582500000000003,-163.6522222222222,-13.420972742985514,-1619.998127131389,-5.003013740292404,-3.2295868055555372,-72.2517226080247,-1.1999752188888997,-1896.0644197661497,47.848888888888894,1.3001195555555487,0.04986012212999191,-13.41,-79.11777777777776,-28.786819849201326,210.4816471488889,-3.931389658366836,1.403097222222218,63.91689043209872,0.7148730488888897,-370.95559121891534,-474.65,-10.163442916666641,-0.9161613562466169,15.237499999999995,-139.48333333333332,0.5303030992436137,-2209.7715879958337,-0.6267711905863627,-9.846981249999988,-166.50842013888888,-5.927940516666673,-1330.2932504274531,514.7488888888889,8.42851622222218,1.2083037863862471,-3.7600000000000016,187.61555555555552,9.00119563784479,2421.428737732223,4.63328892403768,8.399197222222195,104.87024691358027,4.538441248888902,2084.1493743445253,0.7444251949024306,0.5692830794515815,0.4259176326200048,0.2917909842336969,0.2659203740170634,0.1605755537551821,0.1556042837603186,0.08116396768984219,0.09803559855059463,0.044814291385812305,0.05510587651500434,0.024548162963796614,0.0358322807715092,0.013741856429445842,0.01999603617422681,0.0074038794487488275,8.025735375271468,5.67637310887327,3.54820901208194,2.174903716180095,0.4666840356928857,-0.44518586836744245,4.0340984813489555,0.9724049789218538,6.024485811558135,0.9930622377341193,14.546104706182572,10.93739362499263,16.013994386890243,11.688359127374953,2.0085048152733678,0.7512769308646207,3.4937658728787575,2.2245439141459182,7.010462317966384,1.123525074200099,3.706680870349245,2.420495508948483,20.912891764921252,14.701781138766306,0.26446392655377754,0.6346955775194505,0.7876719496966423,0.8439205701652163,0.8493408472409372,0.8493408472409372,1.746594527049076,1166.8313772844322,0.0,1.0,0.0,0.0,8.0,3.0,4.0,3.0,0.0,4.280504325071528,2.0036732959959176,1.0629072918469555,0.7169925001442312,0.6836591668108989,0.6836591668108989,243.0837261631931,2557.206124952605,96.17510540725365,42.62010208254342,86.29024110484548,,12.0,636.0,58.04380762791743,34.809721131578286,29.72771110090219,5.563451491696996,5.687386274683562,10.966276799312087,20.16171103381599,18.99525369620486,0.0,5.733667477162185,15.033333333333337,35.0,13.5,1.0,21.5,0.0,0.04444444444444434,-8.0,0.18750896057347644,0.04706349206349236,-0.14044546850998407,0.09215229215229193,0.2072584269662917,0.0,0.6294444444444434,0.8989898989898985,0.4419354838709669,0.582380952380951,0.8068376068376065,39.48567739879463,1.081178788052929,1.425178788052929,37.441330597360626,6.989618618326345,8.343416155993822,76.92700799615525,15.333034774320167,0.5067415730337083,0.31485587583148544,0.03325942350332593,0.5188470066518845,0.43478260869565216,0.3129344925618815,-1.231649112078589,-0.08249116695768487,-0.020527485201309814,-0.06842495067103273,0.6870655074381186,2.70415579710711,0.06553227484067096,0.04506926328511851,0.06438466183588358,-1.816790088415214,0.8180776882422681,0.8753155665890983,1.3946848716257825,0.7252723612839782,0.5050711501321105,1.265280351584918,0.8199689306231217,1.037036552657582,0.8537195120045261,0.8213304691500359,0.8884207406226922,0.9328283388253285,0.6557959729116009,0.7089609270047302,0.8398281098000858,1.2799923938597708,0.7412224967120463,0.8824118822566044,0.6580923413527291,0.8183416107954,0.6862573729139382,0.5510598427550412,0.7000543970930416,0.7178174722703852,0.8359745446581351,0.7697089056113935,0.8931383915542729,1.3519673557415424,0.8041628215344203,1.2990609985697048,0.8436944235232766,1.2728524377115298,0.7553569787541297,0.8501554866068198,0.8116647259854765,1.1106918739628595,0.8614478856193449,0.8152652813950848,0.8568297495753515,1.2312097024603192,0.9571604454313708,1.1356683535754486,0.8662559191534186,1.126255140181194,0.8075905095202452,0.8526523414021078,0.8418684140714622,1.0295674630063572,1.1815392854507043,1.1843087881414855,1.0654055079261753,1.1884059229289938,1.1893980052151383,1.0411813742774987,1.1797647551670467,1.0957376503675764,1.1923387588553074,1.3159432325053935,1.1967705210437922,1.1369383526662973,0.9742460512830816,0.9650689489437041,0.9785285544308321,1.0122649011201774,1.066121747591796,1.0381998226103175,0.9756284371206205,1.0484638572127172,0.9616696074968505,0.8852984591361897,0.9690314395533901,1.0183120018846539,1.3610915740610492,1.5161130699258882,1.3148955093222015,0.7410330875964954,1.200958906731487,0.9087972986193108,1.3510180325778816,0.9415122007502883,1.5222458582924194,1.5736461920365987,1.5106658587350987,1.0798111346873336,0.6213117861590769,0.552857178693864,0.7307200815813817,0.9298632918565394,0.7109636240054861,0.8389084262703028,0.6257201818516306,0.8190770884004702,0.5508450477980043,0.5479706080656767,0.5634412156784616,0.7562563163800493,8.5,0.13202734414855627,6.000000000000002,5.375,4.684444444444445,2.9027777777777777,1.173061224489796,0.9565972222222222,0.5873015873015872,0.5025000000000002,7670.8668455136485,8550.144730734093,3152.5111529910405,2857.0196485510887,13.192844080797485,0.45739802693967163,7.15846322851799,0.8429715512457536,1.0,0.43478260869565216,1.6263862705369914,3.903217299612601,4.843983303761563,5.1898980954642875,5.22323142879762,5.22323142879762,0.2361111111111111,0.005501139339523177,0.103448275862069,0.07166666666666667,0.058555555555555555,0.04206924315619967,0.019230511876881903,0.02277612433862434,0.014324428958575297,0.015703125000000005,0.5893861818652066,26.074074074074073,9.141498216409037,3.8049940546967895,189.75977888561783,1.0,4.443841252966624,167.3107619850211,,140.32930357471102,138.9057176829516,139.1261143704383,140.34575750006456,171.49599655863847,139.78778773733552,140.4088614209403,158.83063401888577,-0.021830141537554634,-0.14810990069773344,-0.4566036807469626,0.5608721707463239,0.3072429768125215,0.007614067470130328,-0.016694592709576996,0.11834372147230568,-0.13972095194334372,-0.1348374423257188,-0.14835181478013956,0.08983295121103702,0.18431364668528816,-0.017700627011322155,-0.041116120988585636,0.1189669478633662,0.16553513667223552,0.3277761505374978,0.189584995706481,0.2755207895507586,0.005396801085268006,0.0471205746934508,-0.03332544438421167,0.3069004773999901,0.017341184556570334,0.048660971761013555,-0.06724951048134396,-0.07091303442106678,0.10645320802139209,-0.15037249767065866,0.014254123433553098,-0.14240885023883826,0.05364470714467164,0.01283842413443895,0.03754808331373407,-0.0835198601665848,0.08919865066073565,0.16637419226778988,0.09995239760280528,-0.13194761548156128,0.025142366213316947,-0.10578335424018723,0.08468278661023823,-0.09546836915515318,0.16712861836822598,0.16118916167113456,0.16117623891547644,-0.03895111495445024,-0.19350636816717515,-0.06896275526307544,-0.008592814061502115,-0.15410294366619065,-0.16433934327638783,-0.04233254804630948,-0.1947870690329585,-0.10233537170150868,-0.09126197817081556,-0.11199106740759132,-0.047447826550851,-0.17901312571087505,0.027043184695456465,0.03349005773338181,0.0061263160130121145,-0.06954432305351958,-0.07909527956492374,-0.09039428007696726,0.025195134944519772,-0.08005657596883183,0.03947185398895341,0.098629688418146,0.028140370751912006,-0.03486667657246319,-0.3081575900537779,-0.3007370011402158,-0.12930979805939202,0.09077369871174323,-0.1601814458246406,0.0019128672537766153,-0.303852803264422,-0.014661329471696363,-0.31821179892247403,-0.2951492132927164,-0.26805143395816533,-0.1436314108335629,0.3973612974278568,0.29654315431778966,0.2027805814219168,-0.026633296342643987,0.2561825232584249,0.03860571779243344,0.395893451113541,0.12886781757064528,0.322731762818579,0.22102860548905587,0.24401233390297444,0.2675602816545532,2.0041451295984074,15.82722087578856,28.230269212192468,15.703994033607866,37.341747205317894,42.2340232889978,43.582105399034134,43.615705399034134,43.615705399034134,66.41534999339817,48.19807123242344,5.764710396240426,12.452568364734308,0.0,18.217278760974732,7638.0476648935855,6173.392978590228,2217.419270518223,465.0,58.0,87.0,126.0,173.0,221.0,263.0,337.0,397.0,457.18490020400066,36.0,5.241747015059643,6.171700597410915,7.136483208590247,8.089175678837561,9.05893591781695,10.019980867971933,10.992268336624281,11.957438194329058,12.93130214062362,0.6722222222222222,1.0040666666666669,1.1324054584099301,0.6348111453389949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6519701696606787,0.9885620915032679,1.0214979363923284,0.6265359963362511,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,4.0,0.0,0.0,1.0,4.0,2.0,0.0,0.0,0.0,3.0,2.0,1.0,0.0,0.0,31.059686787375483,22.840946106665523,11.384295757348628,5.783244946364939,5.907179729351506,19.28352128306594,0.0,0.0,0.0,0.0,50.551078885988005,31.2737408162686,11.605292320844956,203.3225781136963,-800.2380010881789,-53.5968937145118,-13.337300018136313,-44.45766672712105,446.4063042768894,1756.9681238644262,42.578211692741846,29.282802064407104,41.832574377724434,0.5,0.6571552958611114,0.1290045936488585,63.20175644792351,0.07448250113399806,234.32742260553084,0.34284470413888857,6.0,0.08333333333333333,0.2753371243655891,0.6607905185368509,0.8200563774387197,0.8786176096308133,0.8842607365507724,0.8842607365507724,0.030000000000001803,,2.178571428571429,2.55700325732899,1.8876880575210522,2.172359589137419,-9.130605304919518,2.294599143206854,2.160252580868822,-3.750935231136466,118.57160000000006,34.809721131578286,0.0,4.899909730850478,17.569479569484972,24.48453488598367,33.09059766155924,40.16501105211192,0.0,5.749511833283905,4.290459441148391,0.0,5.720311776607412,0.0,7.364547014255642,0.0,9.120087382998621,0.0,10.938147814711721,40.33333333333333,3.1050623419005903,0.0,0.0,0.0,0.0,0.0,1.2184923350525816,0.0,60.244000000000014,0.0,38.69990708198604,0.0,0.0,0.0,0.0,0.0,-5.616978987072329,67.9443275045958,10.633577208012664,5.687386274683562,5.749511833283905,82.6332685031351,20.804433175141472,11.835812092322787,17.547724606320003,29.038108068717932,0.0,5.759164871656176,0.0,38.08866872033969,39.11821017964072,40.137324519567734,334.62152397004223,,280.5265725173874,277.65646547151965,278.13782340405714,280.5598568432117,346.51308736111963,279.4365088599312,280.68679844304006,318.84890775480375,40.13732451956773,334.62152397004235,,278.4800357208506,275.2544321085742,276.36454068335553,278.51915541099163,352.12259842219646,277.2809763314642,278.65747026101184,321.41220326890794,5.303749573507888,238.84643208234627,,202.96943150081654,201.4320880579803,201.61133368185813,202.98702541311638,236.3274203126983,202.38196668401713,203.05562103501103,222.85857923541764,1.2162825611990222,10.140046180910371,,8.500805227799619,8.413832287015747,8.428418891032035,8.501813843733688,10.500396586700594,8.467772995755492,8.505660558880002,9.662088113781932,2.651874786753945,167.3107619850211,,140.32930357471102,138.9057176829516,139.1261143704383,140.34575750006456,171.49599655863847,139.78778773733552,140.4088614209403,158.83063401888577,59.31372549019608,0.0,6.748826482904211,0.0,0.0,5.306030354451586,43.90148363054027,61.289876183539704,0.3241453294280674,0.0,0.0,0.0,-2.7706449462501057,3.292700139341779,-2.625690428949357,0.0,0.0,37.592159780175066,426.9727759368946,97.58317623221949,234.19303797675607,290.6389982256938,311.39388572785725,313.3938857278572,313.3938857278572,2196.0,150.5990319572642,222.75610645369107,70.43355342972178,164.63,164.63,1.0,9.000259567770176,6.169925001442312,4.814011485216281,5.6599332187471605,,5.667038294558712,5.669502460115384,5.672100557409803,5.66701933620651,5.624148332904336,5.66812504670234,5.66688494013404,5.638968033768297,0.1458791359156449,0.17151312784082304,,0.17172843316844583,0.17180310485198133,0.17188183507302435,0.17172785867292456,0.17042873736073746,0.17176136505158604,0.1717237860646679,0.1708778192050999,2.7654531936252926,2.9273345618099977,,2.9285891031028894,2.9290238328231464,2.929481986284496,2.9285857577251226,2.9209919976159746,2.9287808519315988,2.928562041965893,2.923623544504731,328.12000000000126,301.35390070977894,226.8965951356426,,224.63271446869564,224.14009609640527,224.2141186890742,224.6383465430514,234.28770486879003,224.44538132565444,224.66015847513884,230.59247042563348,9.131936385144817,6.875654398049775,,6.8070519535968375,6.792124124133493,6.794367233002249,6.807222622516709,7.099627420266365,6.801375191686498,6.807883590155723,6.9876506189585905,6.902207792435115,6.618416854132605,,6.608389156753573,6.606193753830075,6.606523950763216,6.608414228808484,6.650472336590449,6.607554855745967,6.608511322085497,6.63457442367384,0.0,41.99260722132782,43.90148363054027,3.1483044570959113,-6.539813806440338,2.007780018477394,0.3241453294280674,0.0,6.748826482904211,419.4684821771516,132.10455144258447,-519.9377420934987,-34.823449852736765,-8.665629034891644,-28.88543011630549,290.04306916993505,1141.5529355143178,27.664293897314927,19.025882258571965,27.179831797959945,2672.0,75.0,3.551288586338314,1.7710420537534088,0.09622504486493763,0.032274861218395144,1.6717171430573772,0.530632320099519,0.1503948211770304,0.026981113740922692,0.0,0.0,0.0,0.0,0.0,0.0,0.1722752017391055,0.09664496737009758,0.6638402924363149,0.2760398134007887,24.56603143178021,18.78634162190219,15.333034774320174,10.50447543241309,15.423381692989677,9.313382117800561,13.537572687147717,7.06126518901627,12.352485417374924,5.64660071461235,9.533316637095751,4.2468321927368144,7.918934050503532,3.036950270907531,5.258957513821651,1.9472202950209416,9.434796937926697,3.8531896354675474,17.291769262620512,5.91362601013709,30.262267037600505,9.123379729206432,111.96324685112971,46.28614967844788,32.736002697330754,28.713069314688695,28.582839628168415,28.582839628168415,188.0,239.0,65.32741099999998,32.540589000000004,0.3,240.1,14.840277777777779,6.972222222222217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,6.0,6.0,60.0,0.0,1.0,63.0,6.0,5.0,8.0,55.0,11.0,36.0,52.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,9.0,5.0,0.0,33.0,10.0,0.0,3.0,7.0,0.0,4.0,3.0,0.0,0.0,0.0,0.0,1.0,3.8066624897703196,7.838909992504834,4.436751534363128,5.041810911564705,5.590520453793741,6.057515595674013,6.44194285435487,6.75813079877489,7.157784159077729,7.490860865825162 +6741,C[C@H]1C[C@H]2[C@@H]3CC[C@](O)(C(=O)CO)[C@@]3(C)C[C@H](O)[C@@H]2[C@@]2(C)C=CC(=O)C=C12,0,20.035087719298247,6.03421052631579,3.3333333333333335,5.9298245614035086,162.53090918806964,78.66899275438598,1.3668457393942106,6.095140350877193,5.143153021442496,7.61761143859649,198.80417642517446,22.1,6.193333333333333,4.316666666666666,5.4,143.7739527110292,82.3782553666667,1.8014866721333336,6.343275,2.8130787037037037,7.654531466666665,257.4249931332126,19.299145299145298,6.011623931623933,4.085470085470085,4.2905982905982905,148.76696471643538,71.45440172649572,1.6107307703067184,6.143452991452991,2.5473646723646723,7.524043418803419,225.5214976339039,16.7027027027027,6.0204324324324325,3.3405405405405406,3.2486486486486488,152.13957730603045,59.84772961081079,1.4422518935171782,6.129906486486487,2.9183183183183186,7.56441643243243,195.95293633692037,13.256,5.895639999999999,2.684,2.152,156.59694134057108,45.305407964,1.2470017767974242,5.9860724,2.6102499999999997,7.490599183999999,161.74953949392872,10.487719298245613,5.798771929824563,2.1789473684210527,1.6140350877192982,162.95847934915304,34.36337787719297,1.040475411376018,5.861331929824563,2.5807748538011697,7.452637235087719,129.48330175790346,9.112903225806452,5.749798387096774,1.9838709677419355,1.4314516129032258,167.64929347137442,29.36359286693548,0.9349611914149195,5.792383467741935,2.552867383512545,7.444575564516128,114.30041764071774,10.08235294117647,5.788352941176472,1.988235294117647,1.8411764705882352,164.8357880440962,32.9981971882353,0.9833758741484822,5.84126,2.8705065359477127,7.454978023529411,121.18469166826694,9.274809160305344,5.787862595419849,1.8015267175572518,1.717557251908397,169.81120900679122,30.457853335877864,0.8694985672373357,5.819988549618319,2.795165394402035,7.4949425038167945,108.37891578548602,7.476146506617421,0.1301631271160357,0.01611595566148031,0.840258541089566,3.5463219452139114,1.2987714362630614,35.50708954447522,0.23079680145512152,0.12269036626654346,2.252158783899319,0.0848015389350569,50.75116531036161,0.04724530624807667,-0.011244998461064849,-0.007219725566523655,0.41500461680517087,0.9647891658971995,0.20949284084142772,0.3713308227762359,0.035568833433796646,-0.010288465681748201,-0.20916617506241236,-0.00692778220991074,5.472583470661742,0.8114528336134987,0.0012238874288736082,-0.0014333213686214354,0.006345147619385804,0.16877776988580337,0.15835468559317253,3.9310896904925374,0.02988340144222771,0.0027141921380148567,0.02866792675195266,-0.0007536912817356036,7.091149717343622,-0.37268515052448553,0.005205293936595912,0.0012044997485908923,-0.16638466721569217,-0.35134802392420117,-0.06593439934676487,-1.834090277524062,-0.013555435459156997,0.003401800637202318,0.15239379499536476,0.00494243299476762,-3.6751464256084954,-1.0475149276700522,-0.004400320098491841,1.5095143763239234e-05,-0.14081994459833796,-0.4480763311788243,-0.23030481655078863,-5.06981667696645,-0.0422676761221151,-0.005636913634964591,-0.045676327758968516,-0.0015001640578639563,-9.397185445842933,-0.5168975069252078,-0.003819636811326589,-9.817099314025056e-05,-0.02049861495844875,-0.14650661742074492,-0.14439098193489733,-2.505167912403815,-0.025512154959243163,-0.003931228070175444,-0.0760563079238056,-0.002341686180363187,-5.089124481368908,0.2514992206038581,-0.006372804535390585,-0.0010750361794583069,0.013872754892324205,-0.032244412672882014,0.13902479676415436,1.2914458679469614,0.02472049950807519,-0.005208497279559977,-0.1455068353675958,-0.004636364628322359,4.6303434706508515,0.00228486593159876,0.00923212572194155,0.00213293192970471,0.013817826299494868,0.2560516357974399,-0.10098393841761863,-0.08009327017181624,-0.01760502425143181,0.008142801948110718,0.10802855126866585,0.006230384284757299,-2.8780119239008797,0.9763779342557544,-0.006489630397139264,-0.0014136009455062363,0.051933771753610636,0.1648070222428979,0.1581357210254306,4.7602718176514704,0.03204112135623327,-0.0030086333081935047,-0.1988854925283986,-0.007482393361198626,8.653022977718726,,,0.4691358024691358,0.7870370370370371,0.18518518518518517,0.0,0.6018518518518519,-0.4166666666666667,1.4988350657835023,0.03085279026758276,0.04359353100832349,0.5865357422183654,0.11115207905457075,0.3548178552101834,2.0853708080018674,0.46596993426475414,2.02969079653795,1.7046524886640038,0.0,0.32503830787394616,0.0,0.32503830787394616,6.565075860701769,1142.0,343.95000000000005,190.0,338.0,9264.26182371997,4484.132587000001,77.91020714547001,347.423,293.15972222222223,434.2038519999999,11331.838056234945,1326.0,371.6,259.0,324.0,8626.437162661752,4942.695322000002,108.08920032800002,380.5965,168.78472222222223,459.2718879999999,15445.499587992756,2258.0,703.3600000000001,478.0,502.0,17405.73487182294,8360.165002,188.45550012588606,718.7839999999999,298.0416666666667,880.31308,26386.015223166756,3090.0,1113.78,618.0,601.0,28145.82180161563,11071.829977999996,266.816600300678,1134.0327,539.8888888888889,1399.4170399999996,36251.29322233027,3314.0,1473.9099999999999,671.0,538.0,39149.23533514277,11326.351991,311.750444199356,1496.5181,652.5624999999999,1872.6497959999997,40437.38487348218,2989.0,1652.6500000000003,621.0,460.0,46443.16661450861,9793.562694999995,296.5354922421651,1670.4796000000003,735.5208333333334,2124.001612,36902.74100100249,2260.0,1425.95,492.0,355.0,41577.02478090086,7282.171030999999,231.87037547090003,1436.5111,633.1111111111111,1846.2547399999996,28346.503574898,1714.0,984.0200000000001,338.0,313.0,28022.083967496354,5609.693522000001,167.17389860524196,993.0142,487.98611111111114,1267.3462639999998,20601.39758360538,1215.0,758.2100000000003,236.0,225.0,22245.26837988965,3989.978787,113.90431230809097,762.4184999999998,366.1666666666666,981.8374680000001,14197.637967898669,426.140350877193,7.419298245614035,0.9186094727043776,47.89473684210526,202.14035087719296,74.0299718669945,2023.9041040350876,13.155417682941927,6.993350877192977,128.37305068226118,4.8336877192982435,2892.8164226906115,2.8347183748846003,-0.6746999076638909,-0.4331835339914193,24.90027700831025,57.88734995383197,12.569570450485664,22.279849366574155,2.1341300060277986,-0.617307940904892,-12.549970503744742,-0.41566693259464443,328.3550082397045,94.93998153277936,0.14319482917821216,-0.16769860012870794,0.7423822714681391,19.746999076638993,18.527498214401188,459.93749378762686,3.496357968740642,0.31756048014773824,3.354147429978461,-0.08818187996306562,829.6645169292038,-68.94675284702983,0.9629793782702436,0.22283245348931507,-30.781163434903053,-64.99938442597721,-12.1978638791515,-339.30670134195145,-2.5077555599440444,0.6293331178824288,28.19285207414248,0.9143501040320097,-679.9020887375716,-261.87873191751305,-1.10008002462296,0.0037737859408098085,-35.20498614958449,-112.01908279470607,-57.57620413769716,-1267.4541692416126,-10.566919030528775,-1.4092284087411477,-11.41908193974213,-0.3750410144659891,-2349.2963614607334,-147.31578947368422,-1.088596491228078,-0.027978733044971407,-5.842105263157894,-41.7543859649123,-41.15142985144574,-713.9728550350873,-7.270964163384301,-1.1204000000000014,-21.676047758284597,-0.6673805614035083,-1450.4004771901389,62.37180670975681,-1.5804555247768652,-0.2666089725056601,3.440443213296403,-7.996614342874739,34.47814959751028,320.2785752508464,6.130683878002647,-1.2917073253308744,-36.085695171163756,-1.149818427823945,1148.3251807214112,0.38842720837178923,1.5694613727300637,0.36259842804980075,2.3490304709141276,43.52877808556478,-17.167269530995167,-13.61585592920876,-2.992854122743408,1.3842763311788222,18.364853715673195,1.0591653284087408,-489.26202706314956,127.90550938750383,-0.8501415820252436,-0.18518172386131695,6.803324099722993,21.589719913819625,20.71577945433141,623.5956081123426,4.197386897666559,-0.39413096337334913,-26.053999521220216,-0.9801935303170201,1133.546010081153,0.7324317186299772,0.6041656824769388,0.4193729408382787,0.3360448207433255,0.25730581881977843,0.1944026556622264,0.1566634964371743,0.1128119624315614,0.09430512962190056,0.06799337117746337,0.05681372811114623,0.038085118816214306,0.03471530451308874,0.0234419655785124,0.020354186698883392,0.012763133175699782,8.02393367270795,5.701698464216577,3.545690044867559,2.200650621832523,0.3950309914601013,-0.3801872237748375,4.118273961916978,0.9771523144748102,6.023154639790934,0.9934519872269614,13.638665841552342,10.962170264925904,16.012143242083688,11.713276693021538,1.9823595594309047,0.7519117506851107,3.490958998829966,2.2504124483866845,7.009362222851979,1.0757075031831262,3.7040139232334344,2.446454802176242,20.889238076570262,14.701789052335384,0.22090899665110342,0.5457929628048689,0.7790515520177851,0.9011990301195901,0.9011990301195901,0.9011990301195901,1.711556084534079,753.8020968349459,0.0,0.0,4.0,0.0,5.0,5.0,1.0,5.0,2.0,4.507436034258121,2.5581322373355277,1.158580702058031,0.4256958334472003,0.4256958334472003,0.4256958334472003,153.61584634627724,1241.8055080236354,66.38239289819425,21.786061544274308,44.42221867629615,,12.0,513.0,29.510134579006632,24.90865655266576,34.869859600407295,12.841643245852019,18.414747775921285,0.0,12.152040213667762,12.999757306524504,13.847474399381248,0.0,12.666666666666666,21.25,5.0,0.0,16.25,0.0,0.03086419753086422,-11.25,0.11272514619883045,0.01683443581631694,-0.09589071038251351,0.05419753086419732,0.15681524926686197,0.0,0.5567251461988306,0.8419753086419749,0.4440000000000002,0.5398907103825137,0.7877777777777776,40.46854677615456,0.8330253372247345,1.1770253372247343,15.836465039895863,3.0011061344734102,9.580082090674951,56.305011816050424,12.581188225148361,0.557184750733138,0.25,0.11842105263157895,0.31578947368421056,0.7272727272727273,0.3593467727372368,-0.8171673571235695,-0.08360617251862347,-0.014336269423220518,-0.04300880826966155,0.6406532272627633,1.456868251709079,0.037955476447053445,0.025559092135247003,0.0383386382028705,-2.3134975180716992,0.9220749279538905,0.7862378812958141,1.2858797385067302,0.9841025641025641,0.6071688942891861,1.1056954523173783,0.9274962644676715,1.099511165439838,0.7928064000642215,0.7806169959551521,0.7864704453611752,1.0487398337428266,0.8070050986477499,0.6312482189521677,0.7688709237831817,1.7138724523339908,0.9009564756830858,1.0633514680360832,0.8142969663010419,1.0534727850950683,0.6385142007841265,0.6091743285366434,0.6344207089548594,0.9804232308728928,0.9919837993613209,0.7443845264039158,0.7057357356021228,1.6274428274428274,1.0579751075498343,1.1760272969274328,0.9996390940144341,1.1798251295572433,0.7662564962980144,0.7212837344075685,0.7217521128631821,1.1463554645677443,1.0846755043227665,0.8427966895247099,0.7944542977887412,1.2206769230769232,0.9978809234507898,1.2264699977677083,1.0915923708891788,1.2339810279090777,0.8666600184134805,0.7963414223971851,0.8148720572647669,1.2161840443552274,1.036772334293948,0.9503712461574836,0.9002063768243559,0.8348717948717949,0.9356014580801946,1.0614673122921352,1.0388594999059244,1.0667466844715119,0.9606008715045118,0.9147780268505041,0.9364241169975923,1.0705670376942982,0.957241796039788,1.0769429972768667,1.050058646386698,0.8038461538461539,0.9807941049660959,0.7769593213008913,0.9521914217498131,0.7842569862362087,1.072368615802981,1.0605039005009331,1.0739107812269537,0.8362412978614595,0.976314629598237,0.891094265088395,0.9019019374820767,0.7943891402714932,0.8824387105996713,0.999433240547753,0.978354962990713,1.0047643971341715,0.9012655010501648,0.8913373344509044,0.8771481294186739,1.009018340285227,0.889288778405966,1.2091018214834317,1.230502350776378,0.6426306517909571,1.0235500357099794,0.7287482466877349,0.8805414327177455,0.7161221835306253,1.1757794385456843,1.2411495389800866,1.250146914152915,0.7290894078426375,9.0,0.06601367207427813,7.1111111111111125,4.666666666666667,3.547777777777778,1.7711111111111109,1.0972789115646258,0.5364937641723356,0.3162005542957924,0.13156635802469138,5710.11291075645,6715.61153079676,2525.653620517541,2207.944090427026,12.08187795556234,0.46177767934731534,6.502736391085277,0.8579682811878417,1.0,0.7272727272727273,1.3254539799066205,3.2747577768292135,4.67430931210671,5.407194180717541,5.407194180717541,5.407194180717541,0.3000000000000001,0.011002278679046355,0.14222222222222228,0.07526881720430108,0.06013182674199625,0.037683215130023644,0.03135082604470359,0.02063437554508983,0.01664213443662065,0.010120489078822412,0.705056185082826,20.28,6.5,2.592797783933518,159.70625020834845,1.0,4.2641199406281505,119.35058915172827,,111.07001851641795,110.76744531480038,111.72489080111632,111.07625197910895,123.0395744469782,110.99603390575342,111.08279452615028,116.74599797795148,0.006319473034170486,-0.08639158193426269,-0.4479861894743198,0.493901098901099,0.2720534629404619,0.16130077625066874,0.01045793466995139,0.15411319918449135,-0.08385716005930427,-0.09287363597884002,-0.08169406235913013,0.1078316810499804,0.108538915455342,0.009402719925302325,-0.08893803127339825,0.007551422936038271,0.0475923428535823,0.1219265231523758,0.11071281090410298,0.12947927030972542,0.022122292243535277,0.012729087734354985,-0.008887707595882179,0.13972387971741523,-0.04984989930234885,0.03999054149917266,0.07473957945105532,-0.19801603801603807,-0.09907392203868509,-0.05076674579206722,-0.05165419923327509,-0.058733203292649847,0.027726713520537905,0.06766565309907448,0.058282350259618,-0.07241501555941927,-0.1401142857142857,-0.03380619531804207,0.0009366583080964302,-0.1675912087912088,-0.12634959208470756,-0.1773251321367536,-0.14278322278755443,-0.18313804981536566,-0.04594422371124444,-0.02028113119088607,-0.017690292849671264,-0.18516196403325458,-0.0691395636064224,-0.029344998817687606,-0.006091540284818157,-0.024395604395604394,-0.041312272174969654,-0.11117505197862347,-0.07055402018422009,-0.11053946501162411,-0.03204186432726832,-0.03377040218812815,-0.02761372269619432,-0.10027601238803256,0.03364022098567044,-0.048960136995705866,-0.06670632521208865,0.016510102800425402,-0.009092353478058816,0.10704331253555179,0.036371493257123515,0.10710936786046445,-0.04245237371159667,-0.06460771612011729,-0.0546731189851755,0.09123620004259286,0.0003056208074007563,0.07092735036790752,0.13234908152563088,0.01644473173884939,0.07220202783421995,-0.07775343343566166,-0.0022556979803003445,-0.07627932510518395,0.06636871496838286,0.047966667377523226,0.07347017946842545,-0.05670829243625841,0.13059909050625548,-0.04985767122323355,-0.08771437296051682,0.06180689539468168,0.04647266232140039,0.12175792954026808,0.13406539028463266,0.13882827298394632,-0.024522164206905065,-0.08830882349425395,-0.08823416951110788,0.17049900085648048,6.813322952210583,20.06568515547629,9.372978278860248,11.785737096503457,30.19955324716628,37.15290773713902,37.89165568469873,37.89165568469873,37.89165568469873,54.80165150652465,46.0256171939281,0.0,8.776034312596547,0.0,8.776034312596547,4672.973678762393,4481.5792015710485,1156.8017282368337,318.0,50.0,76.0,108.0,144.0,181.0,222.0,274.0,311.0,374.2093240600008,30.0,5.081404364984463,6.023447592961033,7.00397413672268,7.969357742016346,8.954544488386723,9.927350552800656,10.914524668948285,11.890683588496984,12.878795155365035,0.5906432748538011,0.9719298245614035,1.1276539483305035,0.5469795961888736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6382371047378925,0.9583763329893362,0.9994888897407394,0.5912528522609192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,3.0,5.0,0.0,0.0,0.0,5.0,0.0,3.0,0.0,0.0,15.319582184522117,12.207932775496605,11.566489892729878,0.0,0.0,9.589074368143644,0.0,0.0,0.0,32.42033623597502,55.58904484385597,16.747886984954953,6.103966387748303,196.23210821429927,-446.2388016756181,-45.655663937336996,-7.828750906589792,-23.486252719769375,349.8479545605765,795.5667063480173,20.726728960857262,13.957310637684516,20.935965956526772,0.5,0.7012919832460498,0.1727152790504321,105.94200962763581,0.0930203803729441,148.4843276813758,0.2987080167539503,6.0,0.06666666666666667,0.22723795180225476,0.5614297147514709,0.8013710700451229,0.9270180249561659,0.9270180249561659,0.9270180249561659,1.8036,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,99.59540000000004,24.90865655266576,0.0,0.0,34.501605123439134,58.159515289507894,6.606881964512918,23.801164850570913,0.0,0.0,4.110873864173311,0.0,5.564520407322694,2.3978952727983707,7.239214973779806,4.948759890378168,9.021235862885396,7.247792581767846,10.860555477926988,33.666666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.4,0.0,24.368876674753626,0.0,0.0,0.0,5.310493356267617,0.0,0.5715336274993115,64.27627505483869,0.0,0.0,0.0,45.1979712404969,9.589074368143644,34.501605123439134,46.454498090775914,23.801164850570913,0.0,0.0,0.0,31.177836982765797,36.37951497005987,33.886308023059556,238.70117830345657,,222.04744444024328,221.42907052378067,223.3856578296851,222.0601833733665,248.88509698668744,221.89624524475406,222.07355394110834,234.52642608420155,33.886308023059556,238.70117830345652,,220.89003703283595,220.10631920102935,222.58411067284115,220.90617606272443,251.49062021565197,220.69846316034406,220.92311505120588,235.48696834619312,5.303216964191785,172.70641672221646,,162.98186212894444,162.65135664512246,163.6974202133556,162.9886717388638,176.1205388187289,162.9010414278153,162.99581903179887,169.19538098061602,1.255048445298502,8.840784381609502,,8.223979423712715,8.201076686065951,8.27354288258093,8.22445123605061,9.217966555062498,8.21837945350941,8.224946442263272,8.686163929044502,2.6781821857798356,119.35058915172827,,111.07001851641795,110.76744531480038,111.72489080111632,111.07625197910895,123.0395744469782,110.99603390575342,111.08279452615028,116.74599797795148,54.62745098039216,0.0,6.155116265642059,0.0,0.0,0.0,31.862736260346182,56.970866715222144,1.561133599336838,0.0,0.0,0.0,-0.22728460674393358,0.0,-2.6859385104350384,0.0,0.0,33.70141257887239,382.96157023451997,75.55087685467737,186.66119327926518,266.4356307900825,308.2100683008998,308.2100683008998,308.2100683008998,1741.0,137.6440822906822,163.11849254035582,78.39084833103259,94.83000000000001,94.83000000000001,1.0,7.976595409316577,5.906890595608519,4.507926890350845,5.1113614911782035,,5.127157066035713,5.1276897491287174,5.125947209954898,5.127145912436062,5.097319375139732,5.127288899171425,5.1271341980939065,5.114629517638063,0.16696025519817945,0.18930968485845198,,0.18989470614947088,0.18991443515291545,0.18984989666499621,0.1898942930531875,0.18878960648665674,0.18989958885820094,0.1898938591886632,0.18943072287548382,2.499089151299171,2.6247175783677466,,2.6278031004188094,2.6279069894584186,2.6275671024119887,2.6278009250199212,2.621966561840077,2.62782881280467,2.6277986402486784,2.6253567392213593,289.5500000000007,205.35216285413279,171.36015772051823,,169.21148820507332,169.1002913866084,169.45217275871929,169.21377922070022,173.49250995728568,169.18429670949507,169.2161838409507,171.2827788228859,7.605635661264177,6.346672508167342,,6.267092155743456,6.26297375505957,6.276006398471084,6.267177008174082,6.425648516936507,6.266085063314632,6.267266068183359,6.343806623069848,6.3179781458829884,6.137019300113817,,6.124401115070601,6.123743752074826,6.125822493399074,6.124414654341143,6.149386201190324,6.124240406829843,6.124428864786511,6.136567641020952,0.0,24.368876674753626,31.862736260346182,-1.5900159963676828,-0.07678450994085151,0.0,6.868509990390402,5.483344247484986,0.0,373.0475970481208,107.15844197211075,-243.68211283160684,-24.931647828929616,-4.275124786519419,-12.825374359558257,191.04499298810148,434.4431169441264,11.318453452062768,7.621809069195201,11.432713603792802,1553.0,62.0,3.379580917578352,2.3516153829785273,0.3219752754296894,0.22492387670140385,1.8199456638389802,1.058660434516614,0.5467537136422557,0.2667241886663687,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.41619492216944026,0.33058640182024174,1.1167737193227625,0.7776453827459224,19.775656403009386,16.312473426877347,12.581188225148361,10.081344622299765,12.86529094098892,9.72013278311132,11.906425729225248,8.573709144798666,10.184953999165261,7.343284087166045,8.181176848005057,5.48425710953486,6.283470116869062,4.2429957697107445,4.518629447152113,2.833415565005352,9.213677362772433,6.015109193510529,16.52792280710055,10.520728826499946,28.218690151255224,16.629488723055044,96.9142989678557,44.70997505979404,26.89274903107355,22.43457396032314,22.43457396032314,22.43457396032314,160.0,206.0,60.753789999999974,31.832209999999996,0.2982456140350877,198.05,11.07638888888889,5.631944444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,57.0,0.0,0.0,60.0,0.0,4.0,4.0,56.0,4.0,30.0,56.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,5.0,3.0,0.0,27.0,5.0,0.0,0.0,5.0,0.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,3.5553480614894135,6.51471269087253,4.0943445622221,4.605170185988092,4.976733742420574,5.365976015021851,5.60947179518496,5.849324779946859,6.115892125483034,6.3835066348840055 +68740,O=P(O)(O)C(O)(Cn1ccnc1)P(=O)(O)O,0,45.61538461538461,7.4129615384615395,3.6153846153846154,11.331433998100666,170.14341389393036,185.93835441789574,1.9871868095573078,7.377811538461539,12.192571122483674,8.900113615384615,216.28231583781172,50.0,6.891730769230768,4.346153846153846,4.97008547008547,154.22207527427886,199.24615523815385,2.0744408261538463,7.030676923076923,3.3846153846153846,8.494760615384614,265.3915736029534,43.26190476190476,7.432273809523814,3.9285714285714284,10.025867136978249,160.33440554715065,169.6333052632534,1.9602339670202151,7.481797619047619,8.51833366901097,8.895138404761903,245.48067347736483,35.30508474576271,7.1884474576271185,2.8983050847457625,5.293785310734463,161.37136996489605,134.14193863850846,1.4732182636415083,7.234262711864406,7.118016321406152,8.787237762711865,193.5150335039518,24.887323943661972,7.499084507042256,2.1971830985915495,6.826291079812206,174.51772069180242,91.18866474523942,1.1373266308519718,7.438119718309859,9.028038601982262,9.080500788732396,149.8403078144875,22.842105263157894,6.748200000000001,2.175438596491228,4.226120857699805,170.7746476265994,84.06433350554381,1.1942369993313333,6.763926315789474,5.291477149664284,8.406810947368422,153.55724810225786,19.186046511627907,7.242511627906977,1.6511627906976745,5.953488372093023,174.08063848802755,67.41500288818605,0.8963997562114883,7.200362790697674,6.9679873672121735,8.814879627906976,135.76272764183906,4.739130434782608,6.033739130434783,1.3478260869565217,0.0,181.67040177704092,9.165700173913041,0.6347039347670002,6.006956521739132,2.9130434782608696,7.7773523478260875,68.63681081372798,1.0,4.840000000000002,1.0,0.0,184.91765202424898,1.016064,0.44461290484899996,4.840000000000002,1.0,6.718463999999999,31.083744430930263,16.621301775147927,0.31688520710059154,0.05756014435541997,1.0059171597633134,5.439403900942363,1.4893766559132244,76.42251259756053,0.647653893692071,0.27558653846153836,5.27699480084036,0.20986314792899405,43.58518508619436,3.8165680473372756,-0.18487899408284034,-0.03751949614852611,0.1834319526627219,-2.436445321060706,-0.4874719159273718,17.320268273704567,-0.11256586156804722,-0.1504730769230769,-2.5950652203174758,-0.1102268461538461,5.658733940753754,0.20470555085939626,0.0820587489433643,0.004370304007210089,-0.2696534234995773,1.3794809179424565,0.17725470670387283,0.7794829202178458,0.03905051353716349,0.0705595238095238,1.7769203483679978,0.05703825683291066,0.7632570391781096,-2.780363052853276,-0.01716956172901414,-0.004899805737127076,-0.241901514391736,-1.229784894713187,-0.5592741345456235,-13.395457059898213,-0.2393582287834438,-0.013859745762711853,-0.20111019931624302,-0.003795545582188349,-17.298584782302303,-2.239936661388449,0.04605856321360111,0.014329393626136907,0.05150429202433538,0.3612461532288184,0.34224335250967536,-10.13894732119154,0.07618871760105463,0.03148415492957749,0.5357406190122991,0.03272442195182929,-1.6127456026062372,-0.4984947576040691,-0.06240261600747431,-0.016938547544776677,-0.004567632097996463,-0.20636879656222867,-0.12544617565073699,-1.6620681940172684,0.0038542721830949677,-0.04888903508771931,-0.8837335096790988,-0.052300072355444795,7.533349241722482,-2.6606577679922925,-0.03441078849594058,0.008191914956997545,-0.022017338654190158,-0.2410558808889161,-0.1169459484660903,-12.274204841817408,-0.0446841277248224,-0.03325290697674416,-1.1991717908139106,-0.033778198018439516,-9.618225892717584,2.8302032415744818,-0.03653370208386927,-0.006396822248514897,0.1646514021095961,-0.8623363093820167,0.22816075309593667,12.975216919452203,0.10081916411772153,-0.030427173913043455,-0.46169978389366234,-0.01872107769488032,6.283763639640126,19.22485207100592,0.21515325443786978,0.01893640614759779,0.37869822485207105,5.892030097158304,0.37424549765231857,89.4345027286428,0.240677491445775,0.21622499999999986,2.6560796454799696,0.12668123668639059,57.246599653056265,,,0.4770833333333333,1.125,0.4375,0.0,0.6875,-0.25,0.7760661146817756,0.052244706274264474,0.05761970627426447,0.9588091590014771,0.20849968531918148,0.23389395605487248,1.7348752736832527,0.44239364137405396,1.8993754835823904,0.6386019601582558,0.25954670475944436,0.7380414776176357,0.0,1.2607735234241346,10.461397073846165,1186.0,192.73700000000002,94.0,294.6172839506173,4423.72876124219,4834.397214865289,51.66685704849,191.8231,317.0068491845755,231.40295400000002,5623.340211783105,1300.0,179.18499999999997,113.0,129.22222222222223,4009.7739571312504,5180.400036192,53.93546148,182.7976,88.0,220.86377599999997,6900.180913676788,1817.0,312.1555000000002,165.0,421.08641975308643,6734.045032980327,7124.598821056643,82.32982661484904,314.2355,357.7700140984607,373.59581299999996,10310.188286049322,2083.0,424.1184,171.0,312.3333333333333,9520.910827928867,7914.374379672,86.919877554849,426.82149999999996,419.962962962963,518.447028,11417.386976733156,1767.0,532.4350000000002,156.0,484.66666666666663,12390.758169117973,6474.395196911999,80.75019079049,528.1065,640.9907407407406,644.7155560000001,10638.661854828611,1302.0,384.64740000000006,124.0,240.88888888888889,9734.154914716166,4791.6670098159975,68.071508961886,385.54380000000003,301.6141975308642,479.18822400000005,8752.763141828698,825.0,311.428,71.0,256.0,7485.467454985184,2898.845124192,38.545189517093995,309.6156,299.62345679012344,379.03982399999995,5837.79728859908,109.0,138.776,31.0,0.0,4178.419240871941,210.81110399999994,14.598190499641003,138.16000000000003,67.0,178.879104,1578.6466487157434,4.0,19.360000000000007,4.0,0.0,739.6706080969959,4.064256,1.7784516193959998,19.360000000000007,4.0,26.873855999999996,124.33497772372105,432.15384615384613,8.23901538461538,1.4965637532409193,26.15384615384615,141.42450142450144,38.72379305374383,1986.9853275365738,16.839001235993848,7.165249999999998,137.20186482184937,5.4564418461538455,1133.2148122410533,99.23076923076917,-4.806853846153849,-0.9755068998616788,4.769230769230769,-63.347578347578356,-12.674269814111668,450.32697511631875,-2.926712400769228,-3.9122999999999992,-67.47169572825437,-2.8658979999999987,147.1270824595976,8.597633136094643,3.446467455621301,0.18355276830282372,-11.325443786982248,57.93819855358317,7.444697681562659,32.738282649149525,1.6401215685608665,2.9634999999999994,74.63065463145591,2.3956067869822477,32.056795645480605,-164.04142011834327,-1.0130041420118343,-0.2890885384904975,-14.272189349112423,-72.55730878807803,-32.997173938191786,-790.3319665339945,-14.122135498223184,-0.8177249999999994,-11.865501759658338,-0.2239371893491126,-1020.6165021558359,-159.03550295857988,3.270157988165679,1.0173869474557204,3.656804733727812,25.648476879246108,24.29927802818695,-719.8652598045994,5.409398949674879,2.2353750000000017,38.03758394987324,2.32343395857988,-114.50493778504284,-28.41420118343194,-3.5569491124260355,-0.9654972100522706,-0.26035502958579837,-11.763021404047034,-7.150432012092009,-94.7378870589843,0.21969351443641316,-2.7866750000000007,-50.37281005170863,-2.9811041242603533,429.4009067781815,-114.40828402366859,-1.4796639053254448,0.35225234315089443,-0.9467455621301768,-10.365402878223392,-5.028675784041883,-527.7908081981485,-1.9214174921673632,-1.4298749999999991,-51.56438700499815,-1.4524625147928991,-413.5837133868561,65.09467455621308,-0.8402751479289932,-0.14712691171584263,3.7869822485207107,-19.833735115786382,5.247697321206544,298.42998914740065,2.318840774707595,-0.6998249999999995,-10.619095029554234,-0.43058478698224734,144.5265637117229,76.89940828402368,0.8606130177514791,0.07574562459039116,1.5147928994082842,23.568120388633215,1.4969819906092743,357.7380109145712,0.9627099657831,0.8648999999999994,10.624318581919878,0.5067249467455623,228.98639861222506,0.7883052609451479,0.5980894319489128,0.44239364137405396,0.44353767176201714,0.31487359156073436,0.2733072712612969,0.18274428227433623,0.1866329355606599,0.11764032737330661,0.10105845087455467,0.07376070030807455,0.0469338689018099,0.05015548214532867,0.025085829637956792,0.035396491506897276,0.013887674981239207,15.013093879455186,5.830194072457743,3.552459238696627,1.9758640026527001,0.5561070202988851,-0.4345376999194044,4.1576680927958325,0.9766849866075682,6.009280344949748,0.5371216769669237,14.557717483827478,10.441173522283227,30.98043608409568,11.850445408938718,3.6653240914146155,0.7773494861406672,3.4993836836659753,2.0932714129970886,7.007721790921425,0.2810011556581105,3.7181548706327154,2.397237990624931,24.442329047450205,14.702292460605387,0.4211583513728944,0.7199209333634092,0.7854843707819135,0.7854843707819135,0.7854843707819135,0.7854843707819135,2.8688078795074654,423.35205919507035,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.633861764527448,1.1678664606384719,0.8461538461538458,0.8461538461538458,0.8461538461538458,0.8461538461538458,22.61748259274063,1058.6238085899406,80.45790086126635,40.716300330382325,88.32537847400823,,6.0,159.0,26.819508679555856,14.236623964703364,0.0,0.0,10.894419722555895,12.393687143226153,0.0,0.0,4.9839785209472085,19.5736464110099,7.633333333333333,18.0,7.0,0.0,11.0,0.0,0.022916666666666696,-4.0,0.33461538461538437,0.033424908424908306,-0.30119047619047606,0.1810515873015871,0.26409823182711195,0.0,0.7679487179487181,1.0604166666666666,0.43333333333333374,0.7345238095238098,0.8793650793650795,12.417057834908409,0.8359153003882316,0.9219153003882316,15.340946544023634,3.3359949651069036,3.7423032968779597,27.758004378932043,7.078298261984863,0.449901768172888,0.3056768558951965,0.3275109170305677,0.052401746724890834,0.4,0.47067813382679247,-1.291942003385908,-0.1375207718397095,-0.04969007705330415,-0.14354911148732308,0.5293218661732074,1.4529103926281741,0.07109447010489621,0.055881168947237464,0.08546531721342199,2.4294478132800266,0.928933784264863,1.421082102790476,1.7307618308572912,1.3786764705882355,1.1966995702390544,1.8190185602458617,0.9265675493439061,1.8035669671298438,1.337068866028079,1.3106298813793889,1.3636344924920356,0.9748224042003916,0.9751818135584602,0.6350049407553947,1.0441700920679293,1.900385154061625,0.6248361216632771,1.2542529085303766,0.9738823733890719,1.2585498963229782,0.6020999167609546,0.5798432175471679,0.6213409415653328,0.9676443177929261,1.2555360795505972,1.051039899072762,1.1362456495642503,1.4581256231306083,1.1290301470019164,1.522970159421939,1.2596269273530833,1.6867072443806148,1.0230047445326698,1.0787017957160527,1.0273837610336096,1.4022043218341749,1.0323331946108836,0.9519247348240502,0.7514780428544335,0.7875932062966032,0.9985617100399873,0.5448190456432962,1.030500841309807,0.6573894342891919,0.9914242792507459,1.0205173717622764,0.9508600700497689,0.8922258594248559,1.031146752605972,1.1351717325210045,1.2125287367496356,0.7797987616099072,1.0120882046642257,0.9384157384891046,1.0245110683489318,0.9053306303696371,1.1286870048363293,1.079072562925925,1.1772955559620164,0.8324352088062078,0.8879266808514162,1.0826783386069028,0.674284615563161,0.44459644322845426,1.0516279225930574,0.8095308031328309,0.8917310155641519,0.5541139977038468,1.1160818972057485,1.1969874164041194,1.1436270152359722,1.0604171379694296,0.676590771897782,0.8923343601794157,0.7404376098579207,0.16624040920716115,1.1836089408961916,0.3560861739205524,0.6861335227278923,0.1576973097276204,0.9509968856331054,0.7605423309839674,0.8278551491289011,0.8647270131072378,0.0,0.0,0.153293168306119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.5,0.0,3.5555555555555562,2.0972222222222223,0.9950000000000001,0.5866666666666666,0.33333333333333326,0.0,0.0,0.0,4361.308971992708,4705.866898260013,2174.0556649978816,2040.9368268879114,7.671719501533487,0.37255812621190704,4.813558059218826,0.5937731314657709,0.0,0.4,2.0665779536136437,3.53257325750262,3.854285871987246,3.854285871987246,3.854285871987246,3.854285871987246,0.40625,0.0,0.13675213675213677,0.0838888888888889,0.043260869565217394,0.03259259259259259,0.027777777777777773,0.0,0.0,0.0,0.7305222655766135,14.0625,4.349112426035503,2.831111111111111,89.69711683052209,1.0,3.684139418865642,51.1064162553002,,29.57486920066793,43.99624532693882,42.165510783966695,29.366097038668286,47.33801434135962,43.70478996538075,42.67541867817789,50.09411193581589,0.22961908152367377,-0.5834257640942913,-0.6518311684010432,0.1823529411764706,-0.44792506043513297,-0.3272992859072806,0.22663829917386732,-0.17380558144465813,-0.5460102578416665,-0.49176952380248934,-0.5252320249724868,0.12983159138966607,0.012315855498482723,0.25895417995108777,0.07592586947358085,-0.26806722689075635,0.25360884079659257,0.11901267956639724,0.010199650518199889,0.060295342801922794,0.25603400007642707,0.3367295999770596,0.2717878645954992,0.017511845772105527,-0.1672770936034901,-0.054182275929225886,-0.08512497305204726,-0.24047856430707876,-0.22608817383466043,-0.37550886293615204,-0.1752815578105686,-0.3695773793915417,-0.05029180975269646,-0.03811074426001259,-0.01808581268147445,-0.396891392065733,-0.1347630102437337,0.1453477858276305,0.24894645047546035,0.05120132560066283,0.06641282019271146,0.22978965807667093,-0.13266964113811647,0.11763801367228215,0.11424416847549144,0.10152381028061322,0.15593219807653608,-0.03700215106157885,-0.02999131863121669,-0.19692498926800744,-0.2942756265548127,-0.004540763673890602,-0.037939597853080154,-0.08422730083265509,-0.02174841074343744,0.005951129485415388,-0.17739993891081293,-0.16746908856881276,-0.24921036814495992,0.17284196973867336,-0.16007517365279367,-0.10859070642896017,0.14231922189795862,-0.021887824897400807,-0.0443165988918664,-0.07852006274019642,-0.1606098049465232,-0.06899383785078825,-0.12066230506895761,-0.22724520983476101,-0.16095345157916038,-0.2206764953205204,0.17027566672342023,-0.11529002069279955,-0.11113283887920897,0.16368286445012792,-0.15853507573368822,0.15319211039737823,0.16978265276070476,0.15566827452079873,-0.1104087815134336,-0.08749293893943894,-0.08920612255951904,0.14417200769512192,1.1566393734425064,0.678962758806131,0.3289846882709338,0.3764705882352942,1.083212463067419,0.2512765969350088,1.170263835731274,0.37161436654653357,0.7845992812532708,0.5033318670423911,0.6036373605205446,1.3134417013451933,3.1473451902649443,,,26.986466007234135,39.9420461041768,40.2663324195773,40.2663324195773,40.2663324195773,40.2663324195773,30.390007737318246,10.217631362532092,4.15274727615111,11.808663641882172,0.0,20.172376374786154,1498.5200162668132,1137.0358490319538,818.7956751135196,0.0,26.0,30.0,30.0,22.0,20.0,18.0,12.0,0.0,271.9963239200003,16.0,4.442651256490317,5.2832037287379885,6.212606095751519,7.0925737159746784,8.019283792916793,8.910990494656719,9.83708062033853,10.73384995707422,11.65988751123109,0.8974358974358976,1.0655384615384615,1.153316245843976,0.8712831314884433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6930430677107325,1.0450980392156863,1.0735335312902683,0.6385680533592197,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,29.247273453641963,0.0,0.0,0.0,5.083227620067512,9.130096569862658,4.9839785209472085,0.0,0.0,0.0,0.0,12.393687143226153,12.872076480677116,181.52927981675285,-498.27107865172474,-53.038467007037795,-19.164272255835566,-55.36345318352496,204.14676240949348,560.3527299382158,27.419433854228558,21.55202807454676,32.96192529048328,0.5,0.3023299429954973,0.13339851571111006,124.59680665751397,0.13511957473259578,0.0,0.6976700570045027,3.0,0.25,0.4396563039916879,0.7515410194218309,0.8199841085317697,0.8199841085317697,0.8199841085317697,0.8199841085317697,-1.1154000000000002,,3.2357142857142858,1.9441510388665761,1.514897160171854,3.2542997611686757,-7.532533679575165,1.8046478093928675,1.8362917746354648,-3.1164528525501014,51.26500000000003,33.810270375713266,0.0,9.551078168738563,0.0,11.627984025980087,0.0,18.721007217990696,0.0,0.0,3.4965075614664802,0.0,4.919980925828125,2.3978952727983707,6.523562306149512,4.442651256490317,8.21959545417708,6.259581464064923,9.968947524007914,23.333333333333336,3.506301335348954,3.51638920382968,0.0,0.0,0.0,0.0,0.0,0.9565277777777776,27.704,0.0,21.889152494331064,0.0,0.0,0.0,0.0,0.0,0.0,29.986222391943375,0.0,0.0,0.0,39.314479594656675,15.674852975775234,0.0,0.0,18.721007217990696,0.0,0.0,0.0,22.653361418699525,18.019119760479047,17.60270119327555,102.2128325106004,,59.604286118778006,87.74947177401931,84.14165942291191,59.23198301651472,97.81165610702723,87.18399895458738,85.12130088452635,100.57778047820054,17.60270119327555,102.21283251060046,,57.5819646902066,86.04833961501103,82.81612440776155,57.1980456657843,102.48551971538717,85.60493212136865,83.51454558172031,103.30467672418186,4.990916787383893,72.02247361443438,,46.11647113376536,61.97139693627244,59.43625468326374,45.89776341322424,70.88228765608068,61.75762994242368,60.69928799495791,72.11299436578547,1.1001688245797219,6.388302031912525,,3.7252678824236254,5.484341985876207,5.258853713931995,3.70199893853217,6.113228506689202,5.448999934661711,5.320081305282897,6.286111279887534,2.49915309599043,51.1064162553002,,29.5748692006664,43.99624532693882,42.165510783966695,29.366097038666382,47.33801434135962,43.70478996538075,42.67541867817789,50.09411193581589,27.172549019607846,0.0,0.0,0.0,0.0,0.0,44.70630511463845,27.911871813546977,-0.9567901234567904,0.0,0.0,0.0,0.0,0.0,-3.4437499999999996,0.0,0.0,16.602769387339713,116.60141586099007,53.73102679395474,91.84690469506812,100.21143267166839,100.21143267166839,100.21143267166839,100.21143267166839,190.0,104.19212717317185,269.0746263652563,62.22872176498272,172.73,153.10999999999999,1.0,6.181697434964932,5.0,3.446579956844712,3.946790268319139,,3.9476197847869363,3.9556384340871507,3.955424317265053,3.946816773716441,3.9353689834506556,3.9558902305516557,3.9567395590543732,3.94862564076651,0.2154112473027945,0.24667439176994618,,0.24672623654918352,0.24722740213044692,0.24721401982906582,0.24667604835727755,0.24596056146566597,0.24724313940947848,0.24729622244089833,0.24678910254790687,1.7073860517528767,1.842906287529356,,1.8431164404008866,1.8451456419857646,1.8450915109975827,1.8429130031910708,1.8400082763379784,1.845209295035703,1.8454239717054228,1.8433712085674785,163.81999999999982,83.815006569952,71.41822593183035,,68.99986517038734,70.36821285837195,70.56746400306636,68.98436616752205,71.24343658338084,70.36258915434608,70.25162703169993,71.22126300198225,5.238437910622,4.463639120739397,,4.312491573149209,4.398013303648247,4.410466500191648,4.311522885470128,4.452714786461303,4.39766182214663,4.390726689481245,4.451328937623891,4.898615696715325,4.738556731168354,,4.7041081797887285,4.7237452685449,4.726572817706095,4.703883530888196,4.736106326023372,4.723665347106971,4.722087097784982,4.735795040748603,22.845680272108844,38.74142888636936,6.0375154320987665,0.0,0.0,0.0,3.506301335348954,-0.9567901234567904,-10.813024691358024,189.68662597604626,70.01149418790607,-192.1712175701999,-20.455666041021683,-7.391200675776919,-21.352357507799987,78.73451535939529,216.11462313324373,10.575018728983222,8.312100889740144,12.712624890190808,397.0,25.0,3.271065883473524,2.545876791927406,0.5883883476483185,0.3941495009161873,2.3409902576697323,1.4140242538766958,1.3106601717798216,0.525978864180457,0.0,0.0,0.0,0.0,0.14433756729740643,0.03849001794597505,0.10206207261596575,0.02721655269759087,0.05103103630798288,0.013608276348795434,12.612884175122366,9.569430911182605,7.078298261984863,7.096602748192274,8.186713380579093,7.10598905279372,5.482328468230087,5.598988066819797,3.5292098211991982,3.03175352623664,1.62273540677764,1.0325451158398178,1.0031096429065733,0.5017165927591358,0.637136847124151,0.24997814966230572,6.2975428182002435,5.78689483826247,8.40183257948626,6.307114697591394,11.767553256686266,6.167909910516824,60.09060927209907,39.72397875942555,38.743467560375514,38.743467560375514,38.743467560375514,38.743467560375514,84.0,98.0,30.09192999999998,30.298070000000003,0.19230769230769232,16.11,8.54861111111111,3.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,5.0,26.0,0.0,0.0,26.0,5.0,2.0,4.0,22.0,7.0,16.0,19.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,5.0,5.0,1.0,16.0,11.0,0.0,2.0,7.0,2.0,1.0,4.0,0.0,0.0,0.0,1.0,1.0,3.068052935133617,0.0,3.6951100038645723,3.9584293782423017,4.256498841909881,4.0141282283652995,4.210274029229161,4.447053317890954,4.406719247264253,0.0 +26758,C#CCN(C)[C@H](C)Cc1ccccc1,0,17.225806451612904,5.579190322580645,2.5483870967741935,4.193548387096774,161.39247665781397,67.38395838709675,1.45239094782042,5.679164516129033,2.5905017921146953,7.175555870967744,202.49863068673488,20.129032258064516,5.9766129032258055,3.064516129032258,4.096774193548387,144.79987763868704,74.11096961290316,1.778037202258063,6.133983870967745,2.7930107526881724,7.42766425806452,244.2657916431488,15.320754716981131,5.8635660377358505,2.8867924528301887,2.6037735849056602,156.60339645784137,54.407749226415106,1.4530436199772072,5.972811320754716,2.262054507337526,7.394115094339623,192.20642137527136,12.746268656716419,5.726567164179106,2.462686567164179,1.8507462686567164,155.52890184100062,43.042924776119406,1.366994285278224,5.83744776119403,2.172885572139304,7.288380179104478,172.10592189321505,9.228915662650602,5.452216867469879,1.9397590361445782,1.1566265060240963,160.76649769220265,29.80038512048193,1.1308286957942526,5.542403614457831,1.9106425702811243,7.097651132530121,133.08279329643688,8.679487179487179,5.404846153846154,1.858974358974359,1.1282051282051282,164.61056371888102,28.412888666666667,1.0541287701284225,5.481217948717948,2.0021367521367517,7.075130871794871,123.50924106750554,9.714285714285714,5.525767857142857,1.8571428571428572,1.2857142857142858,159.08824184289256,31.073817517857144,1.184992837105107,5.6217500000000005,2.2589285714285716,7.149243500000002,140.6265263294114,7.42,5.324679999999998,1.66,1.02,164.84338226901357,23.126120759999985,1.0126557343335596,5.3998599999999985,1.9733333333333334,7.015968480000002,114.42757813315922,6.862068965517241,5.281724137931035,1.5172413793103448,1.0344827586206897,164.65191947768747,20.80666686206896,0.9869911652771379,5.357155172413792,2.2241379310344827,6.98244124137931,109.1798412298905,6.39958376690947,0.03848178980228923,0.0060382318640227655,0.44120707596253916,2.528616024973984,1.4176913488400211,30.884431023933402,0.23916111148185423,0.04390114464099892,0.4362354029367556,0.014579870967741928,53.88512704342474,0.17481789802289258,0.005373777315296401,-0.0007657919480691286,0.16129032258064507,0.6836628511966701,-0.2931242036374661,0.7687196253902127,-0.02090733783558778,0.005567950052029014,0.007457509538674975,0.0020232258064516446,-2.695782847476299,-0.2376848016021051,-0.0066701038619363905,-0.0013945017717272902,-0.10036714899966626,-0.5273987395205467,0.15237132513480775,-1.0826366350107035,0.011345054272527367,-0.006424942571613767,-0.023829235357124934,-0.002954792452830157,1.224824068937319,-1.5223569975305578,-0.009874182676627338,-0.00012127066162767147,-0.08829422088309753,-0.45158184105487126,-0.1489448225419491,-7.31659267342787,-0.04352943425031743,-0.011509714693959994,-0.04686505039837233,-0.0034402388059701305,-10.89251105320437,-0.3210761882075648,0.0003479808933967223,0.0001959597662277148,-0.010581347241202056,0.023268934217619653,-0.15981635978710718,-1.577469007998694,-0.020763804138461014,-0.00011917806501759045,0.012408635582914383,0.0003187951807228837,-4.101985027721987,0.7339977053816806,0.0036760265748819834,-2.4819162896862707e-05,0.002134528669388209,-0.035646628778782816,0.08369171524601417,3.5369039297473273,0.023154535647770945,0.004634794151391477,-0.008471410656634377,0.0010905641025640907,5.636598424051785,-1.1991229374163817,-0.005544174594916002,-0.0005068909081345064,-0.02761260591645608,-0.2982012784302066,-0.21189438920943485,-5.791522389716811,-0.04338324517292517,-0.007004370447450557,-0.1079743942321986,-0.0016975,-10.021296452188805,0.41267429760666,0.0013324682622269308,0.00030031992997861566,-0.007013527575442225,0.15590010405827262,0.11041504151306905,2.00221662122789,0.018141470007235955,0.0018458876170656074,0.07173950745750952,0.0003527999999999819,3.9417559998370626,0.3290035523341351,0.0027430155369766677,5.6368784709084285e-05,0.02041695073379026,0.1632638415443682,0.012871491633857517,1.574338823675054,0.007354646871668417,0.0030331156482113356,0.025790304639563666,0.0010340689655172187,2.02085661963561,,,0.4928571428571429,1.125,0.5714285714285714,0.0,0.5535714285714286,0.017857142857142856,0.708921693088361,0.012702246939617698,0.018845104082474837,0.6428744120636163,0.23602008166964725,0.24515006870309897,1.3517961051519773,0.48117015037274624,1.9536809632597891,1.805846363293997,0.14783459996579223,0.0,0.0,0.14783459996579223,6.036648372387097,534.0,172.9549,79.0,130.0,5003.166776392233,2088.9027099999994,45.02411938243302,176.05410000000003,80.30555555555556,222.44223200000008,6277.457551288781,624.0,185.27499999999998,95.0,127.0,4488.7962067992985,2297.440057999998,55.119153269999956,190.1535000000001,86.58333333333334,230.25759200000013,7572.239540937612,812.0,310.76900000000006,153.0,138.0,8299.980012265592,2883.6107090000005,77.01131185879198,316.55899999999997,119.8888888888889,391.88810000000007,10186.940332889382,854.0,383.6800000000001,165.0,124.0,10420.43642334704,2883.8759600000003,91.588617113641,391.109,145.58333333333337,488.321472,11531.096766845409,766.0,452.534,161.0,96.0,13343.61930845282,2473.431965,93.85878175092296,460.01949999999994,158.58333333333331,589.105044,11045.87184360426,677.0,421.578,145.0,88.0,12839.62397007272,2216.205316,82.22204407001696,427.5349999999999,156.16666666666663,551.860208,9633.720803265433,544.0,309.443,104.0,72.0,8908.941543201983,1740.133781,66.359598877886,314.81800000000004,126.50000000000001,400.35763600000007,7875.085474447039,371.0,266.2339999999999,83.0,51.0,8242.169113450678,1156.3060379999993,50.63278671667798,269.99299999999994,98.66666666666667,350.7984240000001,5721.378906657961,199.0,153.17000000000002,44.0,30.0,4774.905664852937,603.3933389999997,28.622743793037,155.3575,64.5,202.490796,3166.2153956668244,198.38709677419357,1.192935483870966,0.18718518778470572,13.677419354838714,78.38709677419351,43.94843181404065,957.4173617419355,7.413994455937481,1.3609354838709664,13.523297491039424,0.45197599999999977,1670.4389383461669,5.41935483870967,0.16658709677418843,-0.023739550390142986,4.999999999999997,21.193548387096776,-9.086850312761449,23.830308387096593,-0.6481274729032213,0.17260645161289945,0.23118279569892422,0.06272000000000098,-83.56926827176527,-12.59729448491157,-0.3535155046826287,-0.07390859390154637,-5.319458896982312,-27.952133194588978,8.07568023214481,-57.37974165556729,0.6012878764439504,-0.34052195629552967,-1.2629494739276215,-0.15660399999999833,64.91567565367791,-101.99791883454736,-0.6615702393340317,-0.008125134329053988,-5.915712799167535,-30.255983350676374,-9.97930311031059,-490.21170911966726,-2.916472094771268,-0.7711508844953197,-3.139958376690946,-0.23049599999999873,-729.7982405646927,-26.64932362122788,0.02888241415192795,0.016264660596900328,-0.8782518210197707,1.9313215400624313,-13.264757862329896,-130.9299276638916,-1.7233957434922642,-0.009891779396460007,1.0299167533818938,0.026459999999999345,-340.46475730092493,57.25182101977109,0.2867300728407947,-0.0019358947059552913,0.1664932362122803,-2.7804370447450597,6.527953789189105,275.8785065202915,1.8060537805261336,0.3615139438085352,-0.6607700312174815,0.08506399999999907,439.65467707603926,-67.15088449531737,-0.3104737773152961,-0.028385890855532357,-1.5463059313215404,-16.69927159209157,-11.86608579572835,-324.32525382414144,-2.4294617296838092,-0.39224474505723117,-6.0465660770031215,-0.09506,-561.1926013225731,20.633714880333002,0.06662341311134654,0.015015996498930782,-0.3506763787721113,7.7950052029136305,5.520752075653452,100.11083106139449,0.9070735003617977,0.09229438085328037,3.5869753728754765,0.017639999999999094,197.08779999185313,9.541103017689917,0.07954745057232336,0.0016346947565634442,0.5920915712799175,4.734651404786678,0.373273257381868,45.655825886576565,0.2132847592783841,0.08796035379812873,0.7479188345473463,0.02998799999999934,58.6048419694327,0.7420646469329472,0.6359199315857454,0.4811701503727463,0.35097888065869753,0.3225282945958612,0.21517546710417082,0.2181728781713535,0.12984594398719945,0.14603963781580015,0.07054351008468716,0.09695430015733782,0.040415138025158524,0.0614436429325717,0.024281239371810905,0.042697049892349855,0.01391791773874597,7.031595630916346,5.674184829224949,3.1236145254837697,2.173980724337143,0.3162865615473127,-0.37823143282809235,3.11617013276783,0.9110347937571285,5.011367862756794,0.9935991646937118,14.543901270756493,10.934729247227358,14.023035860434938,11.685353599269323,1.998107815580915,1.0471827626669385,3.1014308345366657,2.223915563930238,4.061714809329133,1.2564469213881826,3.2604982255520727,2.419875132796337,20.906867814356524,15.592095556480992,0.22454622228009063,0.575955549628815,0.7718698271910059,0.8443088918445486,0.8739773043977159,0.8739773043977159,2.1998848700858127,296.76164352109106,1.0,0.0,2.0,1.0,5.0,2.0,1.0,0.0,0.0,3.793309181841612,1.976549314641416,0.9636871929331363,0.5891826614996898,0.4357991936879655,0.4357991936879655,84.39409312877237,380.4480439210539,25.77246037262223,12.272517545840447,24.663372842705435,,9.0,191.0,0.0,0.0,0.0,12.586597235060536,6.4208216229260096,5.563451491696996,0.0,6.06636706846161,49.057221505920374,6.423349895620259,6.9,15.75,8.0,0.0,7.75,0.0,0.0071428571428571175,0.25,0.06021505376344077,0.04720692368214002,-0.01300813008130075,0.0,0.0375294117647057,0.0,0.4935483870967745,0.7285714285714284,0.43333333333333374,0.4463414634146345,0.7285714285714284,9.924903703237053,0.17783145715464777,0.26383145715464773,9.000241768890628,3.3042811433750616,3.4321009618433855,18.92514547212768,6.736382105218447,0.6764705882352943,0.21739130434782608,0.0,0.20289855072463767,0.38461538461538464,0.3972280645665358,-0.36806774466323894,-0.030005850312489632,-0.011873153053652868,-0.030672312055269907,0.602771935433464,0.5585227394831486,0.03276360511219648,0.018016862563972533,0.029395933657007822,-2.6933333165471955,1.0439024390243903,1.0159406181552693,1.2632307689817608,0.9551886792452827,0.8024691358024696,1.3772462684726616,1.0461987080671624,1.180238326267054,0.9965156794425083,0.92234296315929,1.0762247153288755,1.1301637291997,1.0970547630004601,1.7784178310840915,1.7844600752969035,1.8209327162691344,1.5272536687631035,1.0154145722871024,1.0905660430827044,0.9254061244498645,1.590658076392085,0.6883066875365682,2.0653258930763068,0.9538834111965756,1.2492537313432834,1.4571417674344274,1.1475603305719866,1.4568079414249504,1.1938455868804134,1.1619209984758723,1.2468899775481044,1.172424973436082,1.404987258827812,0.8645481840730089,1.5310481417716275,1.1903649489833883,0.9911254775198354,0.7857553357748349,0.6460229251364457,0.9249261195726299,0.8438197233377961,1.0359402482680544,0.9932055558525776,1.0507795534195654,0.8406867889677169,0.6500012773064164,0.7036907386702053,1.0392013801520195,0.822983114446529,0.798547278956138,0.8189146854386979,0.9139150943396225,0.9837765115542899,0.8430367063293622,0.8233211708580868,0.8358488498061895,0.8038729563119803,1.094186425819079,0.7919974648075254,0.8322894857354165,1.1449477351916375,1.039310485693426,1.071299891037918,0.7833557951482478,1.0080467372134045,1.1089069965186305,1.1456541635100215,1.15247986292294,1.072424091587854,1.5113908504032414,0.9841949572543672,1.1552819879355771,0.8483414634146341,0.6656437089316137,0.7225916296772655,0.6141509433962263,0.7960493827160499,0.7896569845897451,0.8495856556435082,0.8627971768822349,0.722613240418118,0.6920156374238008,0.5711188204683432,0.86710285648427,0.8473507148864592,0.5072968504796034,0.7167930578376996,0.4538061158100194,0.7852277564921248,0.8364411073777928,0.8502713401757666,0.9127786308294049,0.6052505106331845,1.4916786239798205,0.3528277058348534,0.9062215596585043,2.5,0.0,1.333333333333334,0.6875,0.5511111111111113,0.22916666666666669,0.12244897959183673,0.07118055555555555,0.032753842277651796,0.015625,1977.9697255035599,2385.564389888925,1219.343806249001,1049.072523284507,9.039879030124137,0.38784137050725004,5.5338399578610415,0.6335635108642104,1.0,0.45454545454545453,1.1608871285452633,2.977646995745459,3.9905091174537386,4.365013648887185,4.518397116698909,4.518397116698909,0.17857142857142855,0.0,0.07843137254901963,0.04296875,0.04239316239316238,0.01909722222222222,0.013605442176870746,0.011863425925925925,0.010917947425883931,0.015625,0.4134737512645134,12.071428571428571,6.477508650519031,4.38781163434903,86.74505698233588,1.0,3.5143105794392246,49.83571661778139,,41.46613373429478,40.89105516544254,40.360649406501146,41.47093482547506,50.49070623743366,41.21976997436834,41.50102667624769,47.751832081390035,0.027317073170731666,0.1396446824044739,-0.12682387250345598,0.3655660377358488,0.27037037037037054,-0.20676165081863923,0.0248901987151554,-0.08741947094176336,0.12682926829268026,0.017095149748210938,0.1387684301821358,-0.05002832869455484,-0.03714066574628016,-0.1733314353673746,-0.2309453832066414,-0.22748309006763973,-0.20857209410668545,0.10747848977104962,-0.03505444649997701,0.04743686882132652,-0.14635022900094422,-0.05462471683110883,-0.2026624556121009,0.02273028080550432,-0.2378837519718481,-0.25659364409396407,-0.020083803397850812,-0.20011968459588847,-0.17858853878754383,-0.10506153025749805,-0.23690229772269375,-0.18200883070247867,-0.26217345329103714,-0.10743064428717794,-0.2359581105746192,-0.20214318218877642,-0.050171417376824345,0.0090427419094738,0.032453170173091586,-0.02398272334621503,0.009202241063017489,-0.11273000989804419,-0.05107651187668827,-0.08681931610790501,-0.0027146915186874432,0.02844481557291983,0.021865432240670744,-0.07612462385801365,0.11469460079216179,0.09552639297102812,-0.004110336180487078,0.004837929366231293,-0.014097288171362264,0.059033805429152215,0.11452061159897878,0.09681563822941064,0.1055734238661076,-0.019419356154050025,0.07479929726243613,0.10460397392232898,-0.18737514518002318,-0.14407268017939714,-0.08394691021301849,-0.06258423180592991,-0.11793062904174022,-0.1494644016716406,-0.18752239227683237,-0.18139757297547415,-0.1595486975277914,-0.24751405664306544,-0.11642764217569081,-0.185975184657408,0.0644845528455285,0.03462594305183966,0.04973640243396314,-0.015896226415094285,0.06165432098765434,0.07788369563192475,0.06482931868410668,0.07585459816117468,0.04204645760743442,0.16445136496156906,0.024197745013008313,0.07315109411657313,0.05141014858424452,0.07128087209741708,0.009335313048335065,0.04627521145087839,0.06456648219100326,0.009079191774986275,0.05097516034713558,0.0307518510266935,0.06908967119227989,0.05912015500333586,0.07092442503812989,0.037503050108929875,9.344515073808443,6.731921543204431,0.4999999999999999,9.032615742895029,23.817662034289455,27.27162211600119,29.336800980018516,29.49141151557273,29.49141151557273,27.35153348563705,25.281849086115958,2.0696843995210914,0.0,0.0,2.0696843995210914,1433.640598987891,1125.4808985407224,489.00076641830844,4.0,17.0,19.0,20.0,21.0,15.0,14.0,12.0,8.0,187.136099544,14.0,4.143134726391533,4.90527477843843,5.700443573390687,6.484635235635252,7.285506548522785,8.0774471493312,8.880029117468442,9.675142999429854,10.478217121138732,0.5483870967741936,0.9415483870967739,1.1232483950894563,0.5029959096634538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6595611551091369,0.9309297912713473,0.9745083758193736,0.5923709644590057,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,6.423349895620259,36.252269661163695,25.95568229699082,6.041840829147961,6.544756405912575,163.0975525224682,-151.12464015488467,-12.320078020325449,-4.874988392093053,-12.593720012907054,247.49164565124056,229.32340376616924,13.452382352296782,7.397529153747394,12.069652829798382,0.4444444444444444,0.9956234205464124,0.31555089399896724,5.69472716688915,0.1336902583763031,166.63540287552627,0.004376579453587638,5.0,0.2857142857142857,0.23432400652177815,0.6010353262551547,0.8054806203555785,0.881074017946277,0.9120343308208686,0.9120343308208686,2.1826,,0.1428571428571429,0.18566775244299671,0.22524958545764784,0.14250017848218755,-0.5181818181818181,0.16118421052631582,0.14026299311208512,-0.3193246282434288,61.07100000000004,0.0,0.0,4.899909730850478,0.0,19.386399651764595,13.592428388589765,35.89528683400505,0.0,12.343784214475903,3.367295829986474,0.0,4.574710978503383,0.0,5.978885764901122,0.0,7.4645098346365275,0.0,8.987071812848821,17.000000000000004,10.492280092592594,0.0,0.0,0.0,0.0,0.0,1.3646957671957674,0.0,29.18799999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.820700247773146,0.0,0.0,0.0,24.534178948588206,6.4208216229260096,12.343784214475903,12.487188691387619,30.33183534230805,0.0,0.0,0.0,15.592873199567068,20.446395808383244,17.21414964719642,99.67143323556279,,82.91185930532424,81.75558636625036,80.68912030079409,82.92151248259553,101.20349039694528,82.41651363294721,82.98201578205081,95.64051757488443,17.21414964719642,99.67143323556279,,82.78941032573242,81.5964425784421,80.49604922754465,82.79936947246794,101.49959429304914,82.27835573821038,82.86179035938333,95.82298879102352,4.453621249381584,75.41882248660063,,64.03397207367551,63.150257329155494,62.339500093366844,64.04136984637111,78.41495707899381,63.65480356265665,64.08774439688628,73.96414740281598,1.2295821176568873,7.119388088254484,,5.922275664666017,5.839684740446454,5.763508592913864,5.922965177328252,7.228820742638949,5.886893830924801,5.927286841575058,6.8314655410631735,2.226810624690792,49.83571661778139,,41.46613373429478,40.89105516544254,40.360649406501146,41.47093482547506,50.49070623743366,41.21976997436834,41.50102667624769,47.751832081390035,28.85882352941177,0.0,4.261712962962963,0.0,0.0,0.0,0.0,30.20975965040058,1.7708534108087681,0.0,0.0,0.0,0.4939351851851852,2.1875,0.0,0.0,2.6600763731418495,18.36349989822918,408.7922219251168,35.987500984903164,92.30705686810923,123.7057826410659,135.31542311550274,140.0703106176662,140.0703106176662,158.0,93.6298312497469,1.7969762485920773,44.37247422087633,3.24,3.24,0.8,6.283667634353686,4.807354922057604,3.4350971749692594,3.685473281607294,,3.6965717951066295,3.6966800828617408,3.696746216478247,3.6965707417931672,3.6920510771288084,3.696622596542945,3.696564085782019,3.6937741919787594,0.24536408392637568,0.26324809154337814,,0.2640408425076164,0.2640485773472672,0.26405330117701764,0.2640407672709405,0.26371793408062916,0.26404447118163893,0.2640402918415728,0.2638410137127685,1.570517451551643,1.640871188644337,,1.643878084903083,1.643907378577073,1.6439252684197063,1.6438777999597165,1.6426543877080533,1.643891827659901,1.6438759993673282,1.6431209882079107,171.64999999999972,62.88727967929377,56.752510387810744,,56.21424925163575,56.197122858622485,56.18162690639821,56.21439345761885,56.49202155592934,56.206875429436465,56.215297722511394,56.40893547259678,4.491948548520983,4.053750741986482,,4.015303517973982,4.01408020418732,4.012973350457015,4.015313818401347,4.035144396852096,4.014776816388319,4.015378408750814,4.029209676614056,4.477816149022356,4.375172127912905,,4.365642506786426,4.365337797523933,4.365062016696065,4.365645072075478,4.370571653402859,4.365511324640174,4.365661157948934,4.369099812941652,0.0,2.1875,0.0,1.3646957671957674,2.6600763731418495,10.986215277777777,6.3235295414462085,2.9150200774754347,2.062962962962963,207.96227376915593,66.96609331429457,-62.05014482548438,-5.05849095580296,-2.001617575015625,-5.170845402123698,101.61739634263454,94.1577124748171,5.523402883555686,3.037345563703777,4.955669077621954,337.0,16.0,0.6755286660229631,0.48299950186786866,0.0,0.0,0.16666666666666666,0.12909944487358058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.032075014954979206,0.07216878364870322,0.022680460581325723,10.38890505706126,8.902879042200436,6.736382105218448,4.9137043292217655,5.482981008129641,3.657982940770904,4.145284685255716,2.4670729357567898,2.920792756316003,1.4108702016937433,2.036040303304094,0.848717898528329,0.9216546439885756,0.36421859057716355,0.597758698492898,0.1948508483424436,1.514013549071557,1.0100455924842586,1.7487639331328528,0.8937759216367187,2.265765073150047,0.9910696087518371,50.20885584807713,29.643498670831562,21.99563405107125,18.178269515112945,17.67954321331195,17.67954321331195,62.0,67.0,34.145480999999975,18.764518999999996,0.1935483870967742,14.01,5.333333333333333,3.3611111111111107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,31.0,0.0,1.0,31.0,6.0,0.0,3.0,27.0,7.0,14.0,24.0,1.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,0.0,14.0,1.0,0.0,1.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,1.0,2.995732273553991,3.840795496139778,3.349904087274605,3.6826098411003407,4.071161226766444,4.4477851144841685,4.003918270132401,4.150055169236106,4.2749284991175145,4.123093975508087 +1547484,C(=C/c1ccccc1)\CN1CCN(C(c2ccccc2)c2ccccc2)CC1,0,18.964285714285715,5.658389285714287,3.0357142857142856,5.0,158.8719221542674,74.49480421428572,1.5603671667102146,5.769075000000001,2.2385912698412698,7.224529999999999,220.8645113569997,22.372881355932204,6.038983050847458,3.7288135593220337,5.1525423728813555,143.03796941680002,83.98355849152546,1.8970125538983058,6.206008474576272,2.6318267419962336,7.464931186440674,266.5527133711881,18.03921568627451,5.994794117647061,3.4313725490196076,3.8333333333333335,151.68725415650923,65.2519462352941,1.6314411576886763,6.124259803921567,2.3818082788671027,7.47355701960784,221.6966806348788,14.121428571428572,5.7600421428571424,2.942857142857143,2.7857142857142856,155.60535154079733,49.40063934285714,1.4126140042251927,5.87199,2.0666666666666664,7.310471999999999,182.48323105408176,12.326923076923077,5.6175961538461525,2.6794871794871793,2.2435897435897436,157.94289127207156,42.59557406410255,1.295227643102308,5.720586538461538,1.914529914529915,7.210711538461539,163.0131427496269,12.89240506329114,5.6545759493670875,2.6012658227848102,2.2911392405063293,157.54302858078714,44.88481527215188,1.328394853191532,5.759525316455697,2.025316455696203,7.237314455696202,168.9723368275864,11.855421686746988,5.617921686746988,2.4457831325301207,1.927710843373494,157.23650237506632,40.16323176506023,1.2862794816229695,5.722463855421688,1.9929718875502007,7.209770722891564,159.75659495835504,10.012195121951219,5.533036585365854,2.268292682926829,1.5853658536585367,161.6033200452689,32.990254128048775,1.150726683642067,5.620094512195122,1.8526422764227641,7.162850463414634,138.38844315755279,9.646153846153846,5.500692307692308,2.2,1.5461538461538462,162.03037897221702,31.618598446153843,1.131896730834669,5.586253846153847,1.835042735042735,7.139679200000001,135.09980479446457,6.463010204081633,0.03979630102040812,0.005895047930267106,0.4528061224489796,2.6415816326530615,1.4624559047459218,31.188063596938772,0.24237280116122958,0.04501874999999994,0.20626948696145123,0.015304999999999989,54.46714446562167,0.47585178139052264,0.005864534330681517,-0.0006147409535707504,0.12830767900380488,0.45708664821860934,-0.2013390027325642,2.2341781766689626,-0.006317653010826445,0.006493538135593289,0.0168691328932702,0.0020419491525424127,0.4056177266192221,-0.8996348539415762,-0.009728864045618148,-0.001794240130857958,-0.05189575830332137,-0.47806622649059644,0.029227091260894643,-4.280561887555029,-0.013013980585294717,-0.010274387254901885,-0.03503154734115876,-0.0039047450980391695,-4.364819583454659,-0.6780612244897958,-0.0028040051020407786,0.0003898764210639001,-0.05331632653061227,-0.18698979591836737,-0.0023208798686226123,-3.2614872627551037,-0.017187250093163776,-0.0039899999999999675,-0.008083545918367352,-0.0005144999999999827,-4.662649908008763,0.03286891679748828,0.0006962813971742532,6.0618752145499456e-05,-0.04323652537938253,-0.05435635792778651,-0.06834668125372848,0.1449743838304557,-0.004405559193485086,0.0008245192307692295,0.012757146127681866,0.00017846153846153847,-0.5498116396114758,-0.0052796435029707715,-0.0007297097003358214,-9.170255482809666e-05,-0.023782614311547403,-0.1325400413329889,-0.015055621064279283,-0.02241884151382097,-0.00022598366733402058,-0.0005698575949367032,-0.00711274092970522,-0.0004259240506329067,0.0038121405560948922,-0.6488966068355053,-0.0018340376813375937,-3.346185569774982e-05,-0.03477686255224981,-0.24700331940004921,-0.20831159716555234,-3.154812852532579,-0.031151732089894826,-0.002601280120481922,-0.02534340166789607,-0.0004894578313253005,-6.585477269987837,-0.14528372324539587,-0.0007562531110005172,-0.00014741281949983342,-0.009426331508213029,-0.08278372324539568,-0.06334188377073241,-0.7061432066948705,-0.007638331485515301,-0.0008216463414634298,-0.013691210732260357,-0.0003366097560975682,-1.5415228067971047,0.008418367346938693,-6.006475667192774e-05,9.469204386667052e-05,0.023292778649921526,0.07709968602825748,-0.02754976026438844,0.03746565635793037,-0.0014885801220565137,4.2403846153824085e-05,-0.003674859366823618,-0.00010756923076924189,-0.17342160187528394,,,0.4928571428571429,1.2857142857142858,0.6785714285714286,0.0,0.6071428571428571,0.07142857142857142,0.7943751095634879,0.000544074171669224,0.01282978845738351,0.8935393612800687,0.2662564487210904,0.2301356757634224,1.6879144708435567,0.49639212448451275,2.076746751210624,1.9159565249164168,0.16079022629420753,0.0,0.0,0.16079022629420753,6.575450873142871,1062.0,316.86980000000005,170.0,280.0,8896.827640638974,4171.709036,87.38056133577201,323.06820000000005,125.36111111111111,404.5736799999999,12368.412635991985,1320.0,356.3,220.0,304.0,8439.240195591201,4955.029951000002,111.92374068000004,366.15450000000004,155.27777777777777,440.4309399999998,15726.610088900095,1840.0,611.4690000000002,350.0,391.0,15472.099923963942,6655.698515999999,166.40699808424498,624.6744999999999,242.94444444444446,762.3028159999997,22613.061424757638,1977.0,806.4059,412.0,390.0,21784.749215711625,6916.089507999999,197.76596059152698,822.0786,289.3333333333333,1023.4660799999998,25547.652347571446,1923.0,876.3449999999998,418.0,350.0,24639.091038443163,6644.909553999998,202.05551232396004,892.4114999999999,298.66666666666674,1124.871,25430.050268941795,2037.0,893.4229999999998,411.0,362.0,24891.798515764367,7091.800812999998,209.88638680426203,910.0050000000001,320.00000000000006,1143.495684,26697.62921875865,1968.0,932.575,406.0,320.0,26101.25939426101,6667.096472999999,213.52239394941293,949.9290000000001,330.8333333333333,1196.8219399999996,26519.594763086934,1642.0,907.418,372.0,260.0,26502.944487424098,5410.401676999999,188.71917611729899,921.6954999999999,303.8333333333333,1174.707476,22695.704677838658,1254.0,715.09,286.0,201.0,21063.949266388212,4110.4177979999995,147.14657500850697,726.2130000000001,238.55555555555554,928.1582960000001,17562.974623280395,361.92857142857144,2.228592857142855,0.33012268409495793,25.357142857142858,147.92857142857144,81.89753066577163,1746.5315614285712,13.572876865028856,2.5210499999999967,11.551091269841269,0.8570799999999994,3050.1600900748135,28.075255102040835,0.3460075255102095,-0.036269716260674274,7.570153061224488,26.968112244897952,-11.879001161221288,131.8165124234688,-0.3727415276387603,0.38311875000000406,0.9952788407029418,0.12047500000000236,23.9314458705341,-91.76275510204077,-0.9923441326530511,-0.1830124933475117,-5.29336734693878,-48.762755102040835,2.9811633086112534,-436.61731253061294,-1.3274260197000611,-1.0479874999999923,-3.5732178287981933,-0.3982839999999953,-445.21159751237514,-94.9285714285714,-0.392560714285709,0.05458269894894602,-7.464285714285717,-26.17857142857143,-0.3249231816071657,-456.6082167857145,-2.4062150130429285,-0.5585999999999954,-1.1316964285714293,-0.07202999999999758,-652.7709871212269,5.1275510204081725,0.1086198979591835,0.009456525334697916,-6.744897959183675,-8.479591836734695,-10.662082275581643,22.616003877551087,-0.6872672341836734,0.1286249999999998,1.9901147959183711,0.02784,-85.77061577939023,-0.8341836734693819,-0.11529413265305978,-0.014489003662839272,-3.75765306122449,-20.941326530612248,-2.3787881281561267,-3.5421769591837133,-0.035705419438775254,-0.0900374999999991,-1.1238130668934248,-0.06729599999999926,0.602318207862993,-107.71683673469389,-0.30445025510204055,-0.00555466804582647,-5.772959183673468,-41.00255102040817,-34.57972512948169,-523.6989335204081,-5.171187526922541,-0.431812499999999,-4.207004676870747,-0.08124999999999988,-1093.1892268179809,-23.826530612244923,-0.12402551020408481,-0.02417570239797268,-1.5459183673469368,-13.576530612244891,-10.388068938400115,-115.80748589795877,-1.2526863636245094,-0.13475000000000248,-2.2453585600906987,-0.05520400000000119,-252.80974031472516,1.09438775510203,-0.007808418367350606,0.012309965702667167,3.0280612244897984,10.022959183673473,-3.5814688343704972,4.870535326530948,-0.19351541586734677,0.005512499999997131,-0.47773171768707035,-0.013984000000001447,-22.54480824378691,0.6793018143300643,0.5829380693694972,0.44835417695375346,0.3283546953219955,0.2897318890996633,0.18433832827951574,0.18795296675421172,0.10531025248173806,0.12277101494900909,0.059565227567573494,0.0812538792026251,0.034381292032438934,0.050583914150318855,0.019639582691092936,0.03375805070023026,0.011410704569600439,7.033226328028485,5.687614907869991,3.1278667182881086,2.187395799172511,0.3382075052810859,-0.3712968185033762,3.1923312678960185,1.733777196323955,5.012575076536253,1.8935724636974045,14.544652798620753,10.948173531689635,14.023839244154525,11.698793908736564,2.001957130186076,1.0452235147904556,3.1068875644375944,2.2373252148511535,2.292973987634117,1.2600582700726541,3.266770352143126,2.4332812591401973,20.910528043502822,15.591554386288838,0.19409207112281412,0.41414975712388596,0.5632718436155458,0.7247707248941709,0.8140175670647073,0.8220709717829128,1.233354050017781,811.2091445535079,0.0,0.0,5.0,0.0,17.0,1.0,3.0,0.0,0.0,4.621738758737166,3.2775110018976075,2.3665950895175136,1.3800752234847184,0.834908705395776,0.7857142857142847,211.28621608054257,1107.331047329499,38.284447582535385,19.773768702312484,38.58779203976199,,15.0,737.0,0.0,0.0,0.0,6.041840829147961,32.72378202956288,16.690354475090988,0.0,0.0,112.94736570229293,0.0,13.8,36.0,19.0,0.0,17.0,0.0,0.0071428571428571175,2.0,0.07069597069597094,0.056390977443609325,-0.01430499325236162,0.0,0.03752941176470537,0.0,0.5142857142857145,0.7285714285714281,0.4435897435897435,0.45789473684210513,0.7285714285714281,22.242503067777662,0.015234076806738273,0.35923407680673825,25.019102115841925,7.45518056419053,6.443798921375827,47.26160518361959,13.898979485566358,0.6764705882352946,0.0,0.0,0.20289855072463767,0.23076923076923078,0.33883162999231264,-0.5724005807931495,-0.02158888084901169,-0.010221438942734815,-0.026018208217870435,0.6611683700076874,1.1169357447622186,0.03681759855113878,0.01994528115646819,0.032851051316535845,-5.43257474514674,0.9092064638923175,0.9347579610952244,1.2543855847158794,0.7904034375746001,0.8223735360793524,1.2371711009816724,0.9110375045969663,1.0346596821685452,0.9004957915369539,0.9101462735082426,1.0160133777041958,0.9860099848320002,1.1568608102408122,1.7832209758164095,1.9688023659999587,1.4353769676884838,1.3833186582213763,1.1065524841180183,1.150908846747329,1.005783009919579,1.6124068675089092,1.151462947011587,2.039110792961419,1.0284031002396326,1.1011940003947107,1.2830213171027205,1.1741455700036287,1.3323943661971833,1.1180589087397392,1.0390592790081774,1.0991675084697847,1.0383813288279524,1.2373663751214774,0.935285781766651,1.3471047043449853,1.0520874218880267,0.9799709533279692,0.9989400989487528,0.9518927987149958,1.2722101841820153,1.030794611794129,1.0299277523035386,0.9801142050089272,0.9959268327604142,0.9895093568562957,0.7965432457638411,1.0177365784601984,0.9888789132866845,0.9901684516091962,1.097492490030829,1.0656305155367736,1.0433232305223747,1.0471612197373004,1.0089933482946634,0.9893210748420633,0.9752274648255328,1.0659544106973713,0.9882027947358039,1.1472273684036407,0.974980751666268,1.0811392402053446,1.0324251979504833,0.9728097814105213,0.9342440183268286,1.0146137422699004,1.1227028098708451,1.081838743868267,1.1079048631462296,1.0425960401372252,1.0891748382286823,1.0206031574845609,1.100490009795248,1.01139246294772,1.066753051858554,1.0559131721339918,0.9257986946066644,0.9952479655168351,1.0061013893546742,1.0108610936084257,0.9977026753229474,1.051725568276091,1.0262451467216611,1.089188532362292,0.9998288106514371,0.984257108591034,0.9951527832942435,0.9504783521684057,0.7925243770314193,0.8980425658359023,0.9692914743981901,0.9840650273855437,0.9760095469147169,0.9933467892651566,0.9858653391955235,0.9965804287186187,0.9785195901295557,3.0,0.09907152331394756,2.000000000000001,1.4375,0.7955555555555557,0.33333333333333337,0.5191836734693878,0.2708333333333333,0.10632401108591583,0.07374999999999998,4975.578686562817,5786.853407332828,2611.1969569800413,2328.6356471474014,14.290527260789691,0.4600333195472163,7.716408566928621,0.8519661234679518,1.0,0.23076923076923078,1.1856161633204378,2.5298439201599963,3.44075983254009,4.427279698572885,4.972446216661828,5.021640636343319,0.09677419354838707,0.005827736665526327,0.05000000000000003,0.0359375,0.020935672514619884,0.008130081300813009,0.014031991174848317,0.009339080459770114,0.0048329095948143564,0.004097222222222222,0.24990638748100139,21.240374609781476,11.4075,6.25,168.28936160149112,0.0,4.258800445393437,172.28015349417302,,141.27334533920427,139.00627079178057,136.91158952188624,141.29225517322695,176.43639166787597,140.30262940910592,141.4107702448633,165.83233157019438,0.07362695808371221,0.1473638046831061,-0.10428090845783783,0.2833611840534733,0.173035215935968,-0.13767184506499264,0.07163568105870657,-0.026065849718111975,0.14424074714631788,0.08178200829298031,0.1334171285555318,0.007447016556471729,-0.13919749861657701,-0.24446654076289767,-0.30436395973063113,-0.11460922397127873,-0.1809772677781881,0.019984938462792406,-0.13725000509410218,-0.053694063537424924,-0.228224623182605,-0.16983388021760892,-0.25512872251154345,-0.08013674346760782,-0.10491415038484307,-0.07045893789482707,0.06613625973457263,-0.11774647887323948,-0.07078705939159827,-0.001586974254123462,-0.10457485610216696,-0.07091245391734609,-0.08862973760932885,-0.03918924721947871,-0.03361646520744744,-0.085604816513774,0.005085697803282181,0.01749613354309462,0.01028299563677217,-0.09548573492235465,-0.020577201649147572,-0.04673418257051833,0.004648393234797862,-0.018176788700620127,0.018315018315018312,0.06184698626833736,0.011660342271253748,-0.01009437239652803,-0.0008169016195636639,-0.018336118725245737,-0.015555862465047266,-0.0525227313246568,-0.05017450140273457,-0.010294752146318528,-0.0007188276195519065,-0.0009323804744233379,-0.012658227848101156,-0.03448275862068968,-0.02782907877379334,6.998972671499279e-05,-0.10040160642570281,-0.04608563193843248,-0.005676265247301162,-0.07680298659426436,-0.0935058437516362,-0.1424395747519944,-0.1011544959412689,-0.12852816793239222,-0.05778214900417993,-0.12286549038943595,-0.031980256865423114,-0.12090733477214743,-0.022479265645231963,-0.01900310057994334,-0.025006212204478906,-0.020817588457574688,-0.031338695810907875,-0.04331199564046825,-0.02264145718762037,-0.031514804668343055,-0.018251202920192826,-0.06637535650059112,-0.021993450251392908,-0.028301884042591516,0.0013025458851391226,-0.001509305014079717,0.016062981164324475,0.05144095341278444,0.02918694053411582,-0.01883801089317272,0.0012012819020161217,-0.006141696242006505,0.0009419152276290243,-0.01781581668213678,-0.0070283718241909154,-0.0031839672076942353,42.158864971921986,20.410690932284982,1.8171205928321397,9.0816314670856,19.909298647522146,27.475177545811498,33.14084199812118,34.231656048110274,34.28124402314921,58.148909033897475,53.64678269765967,4.5021263362378106,0.0,0.0,4.5021263362378106,6734.0476473452745,6343.964597854088,1977.0689267388834,100.0,40.0,52.0,67.0,84.0,80.0,94.0,102.0,100.0,368.2252488960008,31.0,4.962844630259907,5.7899601708972535,6.634633357861686,7.479299637782834,8.334951631422454,9.18840146445743,10.050052389617964,10.908869164400691,11.774358526772296,0.5892857142857143,0.9481428571428571,1.1142059206745316,0.5478965710003925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6874487168520103,0.9382352941176472,0.9777858703568827,0.626812792591085,15.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.799819461700956,0.0,0.0,0.0,103.14754624059195,16.690354475090988,32.72378202956288,6.041840829147961,222.09833413983003,-375.1987837077489,-14.151141889018922,-6.699978280495517,-17.05449016853404,433.3845502203726,732.1322636217501,24.133305693516466,13.073790421816968,21.53330187122795,0.4666666666666667,0.9939949100406578,0.17588745296066194,21.406263089898985,0.03723459173890868,478.22896415994643,0.006005089959342279,8.0,0.1935483870967742,0.2041576895562571,0.4356275712633123,0.5924831319455492,0.7623573482235619,0.8562325332959054,0.8647035877332088,5.1070000000000055,,0.2857142857142858,0.37133550488599343,0.4504991709152957,0.2850003569643751,-1.0363636363636362,0.32236842105263164,0.28052598622417024,-0.6386492564868576,118.21600000000004,0.0,0.0,9.799819461700956,0.0,6.041840829147961,32.72378202956288,113.76188060884907,0.0,0.0,4.143134726391533,0.0,5.407171771460119,0.0,6.882437470997847,0.0,8.44741429680832,0.0,10.05805243228504,33.0,32.363830365592776,0.0,0.0,0.0,0.0,0.0,4.033890805698929,0.0,53.096,0.0,0.0,0.0,0.0,0.0,4.513872931888805,0.0,0.0,62.395531557773765,0.0,0.0,0.0,42.52360149126383,0.0,0.0,22.732195304238946,97.07152613375807,0.0,6.076020106833881,0.0,30.682207976021978,38.49712814371257,37.98761900570787,344.56030698834604,,282.69801137499473,278.209944183052,274.06354231719206,282.73544837366126,353.46499112795976,280.77626060565547,282.97008080415463,332.02960557266704,37.98761900570787,344.5603069883459,,282.453113415811,277.8916566074356,273.6774001706932,282.49116235340585,353.90914697211565,280.4999448161818,282.7296299588197,332.3033123968757,4.810096882092209,261.8394843378346,,218.04677391775664,213.9684211653351,210.20346360112703,218.0808063490873,281.60607464114804,216.3000745961819,218.29410577765276,262.39514295899636,1.356700678775281,12.305725249583787,,10.096357549106955,9.936069435109001,9.78798365418543,10.097694584773617,12.62374968314142,10.027723593059124,10.106074314434094,11.858200199023823,2.4050484410461035,172.28015349417302,,141.27334533920427,139.00627079178057,136.91158952188624,141.29225517322695,176.43639166787597,140.30262940910592,141.4107702448633,165.83233157019438,52.54117647058824,0.0,0.0,0.0,0.0,0.0,0.0,54.75600873998543,5.412631960191484,0.0,0.0,0.0,0.33741745514653165,5.171689814814815,0.0,0.0,0.0,35.10151638510076,651.5466506728105,66.39450514594452,141.67125952895978,192.68255062224506,247.92766312008158,278.45698813306234,281.21187563522585,778.0,134.1233709734725,3.936233687392169,62.93821069794286,6.48,6.48,0.875,8.125885209118838,5.954196310386875,4.198228926033251,5.204177865325056,,5.218168850190978,5.216548646918155,5.214983835836213,5.21818205629346,5.236204854338356,5.21748416267656,5.218264710356268,5.231884864000147,0.1499367473583304,0.18586349519018056,,0.18636317322110638,0.18630530881850554,0.18624942270843617,0.18636364486762358,0.18700731622636987,0.18633872009559144,0.18636659679843812,0.1868530308571481,2.4642821692588663,2.6790811558263314,,2.6817659625501817,2.68145542164933,2.68115540607707,2.6817684933394585,2.6852163886686666,2.6816347417220157,2.681784332842051,2.684391024977738,310.72000000000094,695.0989675252862,174.86091877937002,,173.24555858218093,173.43361969043337,173.61522615075555,173.24402555411638,171.14309041621092,173.32503646280404,173.23443060143654,171.64923442574414,24.82496312590308,6.24503281354893,,6.1873413779350335,6.194057846086906,6.200543791098412,6.187286626932727,6.11225322915039,6.190179873671573,6.1869439500513055,6.130329800919434,7.5736736519250885,6.1936103252914245,,6.184329419033278,6.185414347915573,6.186460923802945,6.184320570120441,6.172119409833263,6.184788072382135,6.184265184554546,6.175072476986036,0.0,5.171689814814815,0.0,4.033890805698929,0.0,32.701247820739304,4.513872931888805,5.412631960191484,0.0,371.7551706950865,145.58165667357184,-245.93638095319503,-9.27583130240461,-4.391721088449913,-11.178926406963411,284.07615501559894,479.900167891949,15.818968825132673,8.569645855213377,14.114710820351446,2320.0,40.0,1.019359401574974,0.6404381849136027,0.0,0.0,0.16666666666666666,0.07530800950958866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3895195511812306,0.14622504486493762,0.29705800137780897,0.11977840807436421,19.0204508012418,16.322265942345922,13.898979485566358,10.178995554981862,11.589275563986531,7.373533131180629,9.773554271219009,5.476133129050379,8.225658001583609,3.990870247027424,6.825325853020508,2.8880285307248705,4.046713132025508,1.5711666152874348,3.1732567658216446,1.0726062295424412,2.6218869749516434,1.4381060431298698,4.539696651503061,2.121634624874264,7.086303527480366,2.8717032685358714,96.57596437326761,77.001959606099,53.425645509834176,34.117366510969056,29.45342645465624,29.22191293355374,142.0,163.0,64.29020399999999,31.509795999999994,0.5,205.02,6.166666666666667,6.333333333333335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,18.0,56.0,0.0,2.0,59.0,18.0,1.0,10.0,49.0,19.0,31.0,40.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,2.0,0.0,1.0,28.0,2.0,0.0,2.0,0.0,0.0,4.0,6.0,0.0,0.0,0.0,0.0,3.0,3.7376696182833684,6.639283338074151,4.22683374526818,4.7295977643631435,5.2384346569466596,5.725421649759682,5.647432557424183,6.013409485858548,6.30021223571434,6.463809184055691 +65999,CCCc1nc2c(C)cc(-c3nc4ccccc4n3C)cc2n1Cc1ccc(-c2ccccc2C(=O)O)cc1,0,22.347826086956523,5.994921739130434,3.5652173913043477,7.391304347826087,158.66095847163,88.23069726086959,1.615920219499565,6.092986956521738,3.650161030595813,7.505810492753622,236.4435990937861,25.0,6.235810810810811,4.22972972972973,7.743243243243243,143.6003712754088,95.2755832972973,1.9340680131891894,6.397324324324324,3.081456456456457,7.634513729729728,280.7767456327195,22.03968253968254,6.152577777777778,4.031746031746032,6.738095238095238,150.57499057766265,83.20269565079366,1.7224166214935557,6.283506349206348,3.0357142857142847,7.595358349206347,245.5109056118482,19.44375,6.04951875,3.58125,5.15,152.53485887178266,72.00962025625,1.591264040770512,6.172781250000001,2.773090277777778,7.529028524999998,221.8753565565737,17.53846153846154,6.0929725274725275,3.302197802197802,4.324175824175824,157.06065802142078,63.403990851648345,1.4740666299943956,6.195412087912087,2.7986874236874235,7.592024593406592,202.76388509316055,16.90810810810811,6.011652972972974,3.1783783783783783,3.9567567567567568,154.73970291770587,60.73243148648648,1.4833444089782704,6.121501081081082,2.774174174174174,7.524655675675675,201.0760810582899,15.287878787878787,5.906271717171716,2.919191919191919,3.45959595959596,155.68964051905618,54.1038424090909,1.405511038871823,6.011695454545456,2.607744107744108,7.447070323232323,186.06258815692203,13.589108910891088,5.762752475247525,2.777227722772277,2.9504950495049505,158.26563684936613,47.63245555940593,1.318079185876505,5.861160891089108,2.285753575357536,7.337984534653465,170.5901046064096,13.623655913978494,5.7612365591397845,2.7688172043010755,2.946236559139785,158.33638612608797,47.67571966666666,1.3123834938384946,5.860736559139786,2.2398446833930703,7.327305591397849,169.24483620207351,6.8082335643772325,0.08227137156059644,0.014432306080825874,0.6406217181264442,3.6198277672757833,1.534482771529999,32.6030964120983,0.23383749434012388,0.08054081075404323,0.9602441130481464,0.04562871497584538,51.56348026223122,0.37351339997842775,0.0003479782239708249,-0.008389511213267347,0.31374569276270603,1.4371640071072966,-0.1946910339425681,1.789582579676079,-0.0003656748249104993,0.0015097376204182855,-0.07978212932529256,-0.0011623663663664118,1.1105205922509018,0.9121483081785536,0.0164858863184006,0.001165180308273474,0.07504425840909769,0.7531881057400909,0.08905958651006317,4.317972551324748,0.019982953918607587,0.015568598033626476,0.2087453560620962,0.009708656084656054,4.92519092359152,0.219574406637261,-5.8563589581952244e-05,0.0006196572631170421,-0.04614708044528462,-0.12109588321781133,-0.19323357128211255,1.0296768802930032,-0.008984323886552561,0.0010953667821886697,0.023353411106443553,-0.001064005555555574,-0.40289289880425966,-0.7974038144170471,-0.015136732286826694,-0.0010017970716450152,-0.12517339833029817,-0.7715238972327818,0.05849483931170329,-3.759223736990798,-0.007151376503150692,-0.014293717267819268,-0.04597078573134025,-0.00749520390720394,-2.648560195908588,-0.9210420250117792,-0.007858006891579608,0.0006715231601562824,-0.10901184738613852,-0.669729843264815,0.02580197092367564,-4.402449995647065,-0.019296995172574386,-0.008765393597756492,-0.023583539431050477,-0.0033615951951952105,-5.465120227047897,-0.7883975228020598,-0.004274899594559328,-0.00015641099856652146,-0.029437411289963286,-0.3114541762934958,-0.10405201542151003,-3.7886625721773504,-0.02420247444626586,-0.005413530707197993,-0.05336127500588749,-0.0017998720538720502,-6.101964754595922,0.012328926654480153,-0.0019070007756920115,-0.00046951713053806026,-0.004303738502394657,-0.017445789947614875,-0.05073764437542568,0.0717727260850861,0.0004081620517512437,-0.0014965074106655085,-0.027165479097794237,-0.001306446644664436,0.16333090591038754,-0.08406339139920452,0.0011889058275910348,6.476477591492867e-05,0.020512768393736752,0.07722693118144051,-0.17889778507376325,-0.45028072158871396,-0.01868536994664254,0.0014075295919127276,0.010941366494042513,0.0004598709677419688,-2.8749885931359063,,,0.48119658119658115,1.3974358974358974,0.7564102564102564,0.0,0.6410256410256411,0.11538461538461539,0.9118326523946769,0.012162090229435325,0.025392859460204555,1.173647385990338,0.27254450709249245,0.2130937504312285,2.085480038385015,0.485638257523721,2.0787644878916214,1.769125489515463,0.2217507056923182,0.08788829268384059,0.0,0.3096389983761587,7.452708350724649,1542.0,413.64959999999996,246.0,510.0,10947.606134542471,6087.918111000002,111.49849514546999,420.4160999999999,251.86111111111111,517.9009239999999,16314.608337471242,1850.0,461.45000000000005,313.0,573.0,10626.427474380253,7050.393164,143.121032976,473.402,228.0277777777778,564.9540159999999,20777.47917682124,2777.0,775.2248000000001,508.0,849.0,18972.448812785493,10483.539652000001,217.02449430818803,791.7217999999999,382.4999999999999,957.0151519999997,30934.37410709287,3111.0,967.923,573.0,824.0,24405.577419485227,11521.539241,254.60224652328193,987.6450000000001,443.69444444444446,1204.6445639999997,35500.05704905179,3192.0,1108.921,601.0,787.0,28585.039759898584,11539.526334999999,268.28012665898,1127.5649999999998,509.3611111111111,1381.7484759999998,36903.02708695522,3128.0,1112.1558000000002,588.0,732.0,28626.845039775584,11235.499824999999,274.41871566098,1132.4777000000001,513.2222222222222,1392.0612999999998,37199.07499578363,3027.0,1169.4417999999998,578.0,685.0,30826.548822773122,10712.560796999998,278.29118569662097,1190.3157000000003,516.3333333333334,1474.519924,36840.39245507056,2745.0,1164.076,561.0,596.0,31969.65864357196,9621.756022999998,266.25199554705404,1183.9544999999998,461.72222222222223,1482.272876,34459.20113049474,2534.0,1071.59,515.0,548.0,29450.567819452364,8867.683857999999,244.10332985396002,1090.0970000000002,416.6111111111111,1362.8788399999999,31479.539533585674,469.76811594202906,5.676724637681154,0.9958291195769853,44.20289855072465,249.76811594202906,105.87931123556993,2249.613652434783,16.134787109468547,5.557315942028983,66.2568438003221,3.148381333333331,3557.880138093954,27.639991598403654,0.02575038857384104,-0.6208238297817837,23.217181264440246,106.35013652593994,-14.40713651175004,132.42911089602984,-0.027059937043376947,0.11172058391095313,-5.90387757007165,-0.08601511111111447,82.17852382656673,114.93068683049776,2.0772216761184756,0.14681271884245772,9.455576559546309,94.90170132325144,11.221507900267959,544.0645414669182,2.517852193744556,1.961643352236936,26.301914863824123,1.2232906666666628,620.5740563725316,35.13190506196176,-0.009370174333112359,0.09914516209872673,-7.3835328712455395,-19.375341314849813,-30.91737140513801,164.7483008468805,-1.4374918218484098,0.17525868515018717,3.7365457770309685,-0.17024088888889183,-64.46286380868155,-145.12749422390257,-2.7548852762024585,-0.18232706703939278,-22.781558496114265,-140.4173492963663,10.646060754729998,-684.1787201323252,-1.301550523573426,-2.6014565427431067,-8.366683003103926,-1.364127111111117,-482.037955655363,-170.39277462717916,-1.4537312749422275,0.12423178462891224,-20.167191766435625,-123.90002100399077,4.773364620879994,-814.453249194707,-3.569944106926261,-1.621597815584951,-4.362954794744338,-0.621895111111114,-1011.0472420038609,-156.10270951480783,-0.846430119722747,-0.03096937771617125,-5.828607435412731,-61.66792690611217,-20.602299053458985,-750.1551892911153,-4.79208994036064,-1.0718790800252025,-10.565532451165723,-0.35637466666666595,-1208.1890214099926,2.490443184204991,-0.3852141566897863,-0.09484246036868817,-0.8693551774837206,-3.524049569418205,-10.249004163835988,14.498090669187391,0.08244873445375123,-0.3022944969544327,-5.487426777754436,-0.26390222222221604,32.992842993898286,-15.63579080025204,0.22113648393193247,0.012046248320176733,3.8153749212350356,14.364209199747936,-33.27498802371996,-83.7522142155008,-3.4754788100755123,0.26180050409576733,2.0350941678919074,0.08553600000000619,-534.7478783232785,0.694750843086892,0.5730394969276426,0.43045209189602524,0.30170473933354675,0.270696014861308,0.15712272432299,0.1676117291054356,0.08138076448014707,0.10591131087639291,0.042975919865451344,0.0681570828436998,0.02334945423518349,0.042987407006703754,0.012528105409253336,0.027058412178464244,0.0067095882854573885,8.028676391590983,5.672940814159972,3.5548614511647822,2.17266691636728,0.45921480794301184,-0.4461244012381853,3.2915072468227446,0.9728145964391571,6.022052544144923,0.987782507802626,14.560440380451883,10.933317021581132,16.013918101816405,11.684091848833205,2.02298948030779,0.7415553509373591,3.500939797413032,2.2225923789821094,7.008296881688718,1.368392351309859,3.7138491627529504,2.41858311240504,20.92502247997375,14.70143139216883,0.21891418539102062,0.5332704463967146,0.7456279666544962,0.8649205230907668,0.8934660838416753,0.8979421030533018,1.1003928337814246,1844.1413674143123,0.0,3.0,3.0,0.0,18.0,2.0,6.0,0.0,0.0,4.690894547928761,2.65520719930059,1.2800365060501502,0.5075297102703464,0.3226762682100066,0.2936907609636288,227.03928209785715,2258.6659684759966,67.39453983914625,32.73428939820285,64.5632979044814,,17.0,1156.0,5.969305287951849,9.901064578912528,0.0,12.10820789760957,74.3745125708019,0.0,12.13273413692322,42.46456947923127,60.36118101994919,9.967957041894417,18.766666666666666,54.5,29.5,0.0,25.0,0.0,0.018803418803418827,4.5,0.12570319201769853,0.07006389278479075,-0.05563929923290778,0.012008547008547032,0.09735158817086498,0.0,0.5714975845410616,0.7803418803418799,0.44579439252336306,0.5014336917562708,0.7683333333333329,35.5614734433924,0.4743215189479777,0.9903215189479777,45.77224805362319,10.629235776607207,8.310656266817912,81.33372149701559,18.939892043425118,0.616648411829135,0.11545293072824156,0.0,0.3889875666074601,0.18181818181818182,0.36100361439109646,-0.9983804231015841,-0.04338400694594932,-0.01446928149422586,-0.03697705270746609,0.6389963856089035,1.7671886274619373,0.03913561134088982,0.025611429383506332,0.04207591970147467,-8.760432843961912,0.77462024250449,0.7728714458432046,1.5943866757870802,0.5820824102791314,0.46356510856917016,1.2013219689158845,0.7775987158523923,0.9670683704852898,0.7503140861395862,0.7369854573436978,0.7984951901266998,0.894819400280697,0.7616726458584914,0.6682519906817447,0.9020686642801965,1.0805152224824353,0.7875876589466003,1.0215634953188033,0.7648544047910638,0.8689552479715854,0.6674513621199382,0.4003646177820751,0.6117249748855579,0.836133606750176,0.8870599895107051,0.8613985726102519,0.879286487687195,1.1970368852459012,1.0269024892654053,1.1788154730781781,0.8894559307314248,1.0001043569208652,0.8477185837809305,0.6341378461800193,0.8313658902394716,0.9573679696375306,1.0840513222817163,1.2712304604003228,1.177890773939077,1.276332192397766,1.275248773508028,1.045139149908956,1.0806778244513295,0.9653734502770381,1.2376031379350674,0.8927729802612835,1.219190054315067,0.9813906858763017,1.0883805629532783,1.0792454893429637,1.0009173552023627,1.222373061586176,1.1728933064432654,1.0061321128456422,1.0881268935004227,1.051881489869208,1.0829696182662945,0.93770130850735,1.0555289947248403,1.0644078873260627,1.0812555741907255,0.9650809823562025,0.8706159268826649,0.9944957774465969,1.0291970417884306,1.0546846087379895,1.0826782941152038,1.0906351210912526,0.9873809472103714,0.9455347486359379,0.9381393841912393,1.102940294799749,0.981735675881403,0.8121495755400496,0.7401474433109884,1.0128810258074985,0.9589488657581084,0.9994474747641108,0.984120126463757,0.9986804246226757,0.8403611606689472,0.6729860862038614,0.744043288275965,1.0131431051127322,0.9852493048603052,0.7038346095380249,0.7049982749419289,0.9387308302485455,0.9089721368487645,1.1050609356725263,0.990435405957498,1.0704437530088122,0.7412919458530954,0.41314458015045713,0.5877087261334606,1.0677239128802511,7.0,0.31079481685542293,4.888888888888891,3.6527777777777777,2.761111111111112,1.6152777777777776,1.0754195011337868,0.8090277777777778,0.5039288863693625,0.40470679012345684,8181.694322629424,9077.386206732808,3780.7709362328105,3472.379901941718,15.756134272929582,0.42458681803734855,9.066287357417199,0.7378816324456525,0.0,0.18181818181818182,1.417629908849408,3.453317257477579,4.828487950728019,5.600994746507823,5.7858481885681625,5.81483369581454,0.1590909090909091,0.006342751364396386,0.07638888888888892,0.052938808373590975,0.0412106135986733,0.02485042735042735,0.017629827887439126,0.014709595959595959,0.010078577727387251,0.008259322247417487,0.4114997224887259,29.08884297520661,12.70068359375,5.947107837217727,226.75392523128778,0.0,4.615547870269715,277.72688318545994,,206.71352150291753,204.20658126454646,202.4258706623583,206.73602995660227,248.57563393671546,205.66408825792462,206.86308583397312,234.8650149052444,0.05486201324419369,0.004229639270259689,-0.5813008098832717,0.48975188303057154,0.3970255215178042,-0.12687730195135782,0.054889957599610184,-0.001563798936275865,0.018745001525111854,-0.08308525742692296,-0.0254744488636539,0.021536959619545437,0.13397723499839864,0.20038424066211205,0.08073417385607429,0.11714285714285705,0.20807291234934266,0.058038831169973853,0.13244056628076717,0.08545658588670028,0.19330073645732349,0.21738780089936335,0.2127751370994243,0.09551703838732317,0.032251303449126904,-0.0007118343656008897,0.042935429698258094,-0.07203483606557377,-0.033453493095044654,-0.12592749483230992,0.03158218063947179,-0.03842122886197448,0.013600145962445272,0.024320285632693714,-0.023318771000209633,-0.007813531917459947,-0.11712345160855064,-0.18398541314797254,-0.06941351340767078,-0.19539362277067193,-0.21313828912181,0.03812023203973764,-0.11530265989078975,-0.03058267675734155,-0.17747173307541741,-0.04787406150860233,-0.16426506666189705,-0.051365039412372304,-0.13528355281918555,-0.09551325986818932,0.04652916563683738,-0.17016570669029685,-0.1850170467554708,0.01681476742677864,-0.1350316528221967,-0.08252310104087203,-0.10883170302971479,-0.024559941696688126,-0.07367280005528863,-0.1059881955068681,-0.115800598693793,-0.05196096179593505,-0.01083756107240008,-0.045951316443119734,-0.08604115894936365,-0.06780917801883306,-0.11620560588139289,-0.10350125635139851,-0.0672147530738164,-0.05557053074400048,-0.03944603863652208,-0.11833888487673393,0.0018108847967538717,-0.023179396909499956,-0.03253237063492161,-0.006718065249147855,-0.004819508294104351,-0.03306498144963615,0.002201408270487241,0.001745494463593419,-0.01858073437124399,-0.02829018030796526,-0.02863211566128991,0.0031675694712566325,-0.012347313088530038,0.014451027192555727,0.004487486306916141,0.032020095187731364,0.02133442145496334,-0.1165850724380491,-0.013810980279211287,-0.0799075015722846,0.017475979925395378,0.011394359356508666,0.010078543039956577,-0.055756294542472024,22.331451146101525,41.466254131346716,16.130611041515458,12.344554706156753,31.397366588955652,41.91661893350996,44.72924820664593,45.23450801247463,45.26372540377898,81.07181502777324,68.99589409110305,8.64827752200041,3.4276434146697827,0.0,12.07592093667019,13296.889745521237,10183.2990823093,4501.69842386425,389.0,64.0,91.0,127.0,166.0,190.0,232.0,285.0,329.0,514.2368762000008,44.0,5.37989735354046,6.267200548541362,7.1770187659099,8.083637203141548,8.99949587624899,9.913091288678823,10.83176614205561,11.748890469044417,12.669444961136403,0.6570048309178743,0.97263768115942,1.1132039110858507,0.6209633922527539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7039641586392431,0.9615799943165672,0.994658897790726,0.6607082540553458,14.0,2.0,0.0,0.0,0.0,4.0,8.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.240726690423415,11.648808995999854,0.0,0.0,0.0,0.0,14.76249422596624,0.0,0.0,61.52104081584511,65.93020013171267,25.57670150321277,27.63025436216204,294.83500987106265,-815.3865783220011,-35.43212202384722,-11.81719678727538,-30.19950290081486,521.8742919689198,1443.2793901539956,31.962417815299023,20.91709261092747,34.363795003666546,0.47058823529411764,0.8689687077894602,0.17270343610613445,116.62915552948748,0.1214273666425618,61.08793968347864,0.13103129221053958,9.0,0.1590909090909091,0.23207403340693364,0.5653275650956415,0.7904507847832565,0.9169145161222726,0.9471760700160646,0.951921161478245,7.2644200000000065,,1.0714285714285716,1.314099581200558,1.247266713587194,1.0685318721261376,-4.237315801405576,1.1621787025703796,1.0580415728862167,-2.0752874690897665,156.1122999999997,9.901064578912528,0.0,19.102156337477126,7.04767198267719,33.23387405114584,0.0,107.4438979315535,0.0,22.514758973090913,4.48863636973214,0.0,5.84354441703136,3.044522437723423,7.396948602621014,5.53338948872752,9.04085606398372,7.734996194022781,10.732672357496405,45.33333333333333,27.901803336385818,10.001390297950785,0.0,0.0,0.0,4.2094975384297175,7.25958787649427,4.467738960064933,67.11199999999998,0.0,11.71013875880624,0.0,0.0,0.0,0.0,0.0,-0.9207855830474492,76.8110698649237,0.0,0.0,0.0,30.177989020269678,20.013250011515776,6.923737199690624,40.65385497977937,84.92913895846256,0.0,44.58156184355595,0.0,42.84647406544002,48.573526946107776,51.77536539667976,555.4537663709199,,413.37209795088995,408.3457728069801,404.787778929148,413.41726340694163,499.10695208946436,411.2685776080251,413.671913125747,470.6878547962226,51.77536539667977,555.4537663709198,,412.35561443440645,407.0990629478923,403.60447461112926,412.4035280410781,501.3885836748367,410.16599781327875,412.66813009505995,471.8053172795787,4.946860781734611,412.4667876685653,,308.2860921550451,304.5091397532359,301.6334845177244,308.31942686812044,370.701835498272,306.6954119145711,308.51249415353175,350.5967631384542,1.3275734717097374,14.242404265921023,,10.599284562843332,10.470404430948207,10.379173818696103,10.600442651460042,12.797614156140112,10.545348143795517,10.60697213142941,12.068919353749298,2.541269580519732,277.72688318545994,,206.71352150291753,204.20658126454646,202.4258706623583,206.73602995660227,248.57563393671546,205.66408825792462,206.86308583397312,234.8650149052444,66.34901960784313,0.0,6.361523857950955,0.0,0.0,0.0,9.603517847023781,68.63146394756009,2.5722537766076172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.588869529818865,709.6948266595218,97.81646371060916,238.27889076595295,333.1656686002333,386.46863750903975,399.2235250112032,401.22352501120326,1956.0,164.07044260829753,107.01447518046051,92.81556593133837,72.94,72.94,0.8888888888888888,10.126672977973605,6.459431618637297,4.835835620649103,6.148936744497542,,6.145820419322085,6.145083200197935,6.143115605230212,6.145822806653792,6.146909295705232,6.145455167936007,6.145869298895216,6.149633110169725,0.1239957851448488,0.1576650447307062,,0.15758513895697654,0.15756623590251115,0.1575157847494926,0.15758520017061003,0.1576130588642367,0.1575757735368207,0.15758639227936452,0.15768290026076218,2.9370304945430994,3.177255732933764,,3.176748797302475,3.1766288355571297,3.176308594158745,3.1767491857504084,3.176925955087806,3.1766893646775056,3.176756750574035,3.177368976291513,397.83000000000135,994.3802539086823,294.500915186705,,295.4655942517444,295.5752005216953,295.8915082029929,295.465316532244,295.2412389079492,295.5212271734615,295.45817812852766,294.88090484555573,25.49692958740211,7.551305517607821,,7.576040878249856,7.578851295428085,7.58696174879469,7.576033757237026,7.570288177126902,7.57746736342209,7.575850721244299,7.5610488421937365,8.26309623584279,7.046258663817337,,7.049528950890784,7.049899843296779,7.050969413931224,7.049528010951799,7.048769334302694,7.049717222168128,7.049503850789676,7.047548115573688,4.467738960064933,21.711529056757023,9.603517847023781,9.464001142099434,1.084298689777105,27.901803336385818,1.893558261364483,4.976660380513263,2.0635589926808255,461.80582972631606,240.7944950697799,-665.9338031110537,-28.93774364080533,-9.651214537841359,-24.66421493003903,426.21958864217163,1178.7397030927054,26.10400393905068,17.083184102792828,28.065231026016782,5229.0,69.0,2.5848558397730033,1.1799583631637207,0.0,0.0,0.8282748422591445,0.2432043371961822,0.0,0.0,0.0,0.0,0.0,0.0,0.15713484026367722,0.05,0.752622595790475,0.232823275915216,1.2668595889067078,0.33735220209338446,27.095282880388787,22.34854038017806,18.93989204342511,13.275008530676057,17.324544951123713,10.05585435667136,15.25266734859464,7.405649567693383,13.4507364813019,5.45794182291232,11.314075752054167,3.8760094030404595,8.167607331273713,2.380340027758134,6.277551625403705,1.5566244822261142,6.835781624850947,2.626028300187864,11.628163496370348,3.7932559509831174,18.621104690123502,5.107791205937796,125.48008147143715,74.41430340796155,36.96049417205277,27.048120621503198,25.529656530440906,25.410568865027045,216.0,263.0,81.11779,36.66421000000001,0.4492753623188406,454.06,11.416666666666668,8.47222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,30.0,32.0,69.0,0.0,0.0,74.0,32.0,1.0,15.0,59.0,33.0,44.0,41.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,5.0,1.0,2.0,39.0,6.0,0.0,4.0,2.0,0.0,6.0,7.0,0.0,0.0,0.0,2.0,6.0,4.127134385045092,9.173380943939476,4.824305715904762,5.519458915191573,6.20050917404269,6.797452012476821,7.210541457948543,7.73794331180288,8.271694186804043,8.691211491175508 +5282455,CC(C)c1nc(N(C)S(C)(=O)=O)nc(-c2ccc(F)cc2)c1/C=C/[C@@H](O)C[C@@H](O)CC(=O)[O-],1,28.116666666666667,6.545305,3.216666666666667,8.940740740740742,165.65940181533043,111.90705778582952,1.4928303571820498,6.582636666666665,7.75638002972108,8.045815549999997,215.97902270033927,29.704918032786885,6.452800000000001,3.80327868852459,6.80327868852459,146.6955860345869,113.80683084975742,1.834285142983607,6.604181967213115,3.298724954462659,7.919199278688521,263.81276327076824,23.49056603773585,6.449204716981131,3.4150943396226414,6.380503144654087,156.36911256553282,88.39513194972079,1.5294253914140197,6.5433933962264135,4.393809690193338,7.938147698113204,217.67976670779188,19.52857142857143,6.414368571428571,2.9785714285714286,4.469047619047619,160.10661703066296,70.93286958229714,1.3577261264377287,6.491492142857143,3.7085317460317455,7.957417257142858,191.42017185904126,18.627450980392158,6.4264640522875816,2.849673202614379,4.6688453159041385,164.31025056064527,67.85647312213331,1.2961362321834902,6.47971045751634,4.314249979827323,7.9513577254901975,181.30277941498562,18.874172185430464,6.243033112582782,3.0463576158940397,4.108167770419426,158.7378994145287,68.76973257506755,1.4085665979005293,6.330754966887418,3.2727086910309864,7.776928304635762,193.92800746633932,20.53416149068323,6.320099378881987,2.9751552795031055,4.436853002070394,158.33964210185263,75.32393092209689,1.4584379712148077,6.409183850931676,3.8092362548884284,7.836462521739129,198.3211900551595,17.72192513368984,6.161181818181818,2.550802139037433,3.1550802139037435,156.33214342397574,62.51559005617967,1.373140160663802,6.262647058823527,3.4858882947118244,7.737211411764705,180.7366860824161,12.795555555555556,6.083333333333336,1.991111111111111,2.562962962962963,165.4448112892844,43.29025310373689,1.0617729190461913,6.1316742222222205,3.407901234567901,7.714183395555556,135.27706344829605,10.336388888888889,0.19910430555555542,0.024756785045579006,0.7097222222222224,4.896172839506175,1.8288007205312593,47.76527182434035,0.27134817589512744,0.18004988888888881,3.554512721955494,0.1254372497222222,48.67605111355545,1.654867941712204,-0.013646163479052743,-0.010360693726964135,0.18454007285974497,1.100002023881805,-0.279617797284039,7.094704417124744,-0.01573678545267333,-0.007855571948998078,-0.5071230375686182,-0.0014266199408014609,0.2695215765505748,0.655592243186583,0.03986641771488473,0.005878558157097961,-0.00799266247379451,1.008264616818076,0.07363856925471161,3.3090386037278465,0.0011497706775871453,0.03555111740041931,0.6711469301698431,0.021967862699161407,3.2113196079114408,-1.2134126984126985,-0.03787704365079357,-0.0034336100242993977,0.034325396825396835,-0.6273633156966488,-0.24104881581577636,-5.512678756645398,-0.012176911549129978,-0.033574817460317395,-0.5542976830078169,-0.024159029126984137,-1.489388267688953,0.08376361655773411,0.003124169389978268,0.003424725681931115,0.05814270152505447,-0.373829581215202,0.2247957335623622,0.31735875833485444,0.03632849751493362,0.0010813747276688854,0.18077288767778105,0.005759101149237465,3.2050897319004084,-0.3740268579838118,-0.023282749264164865,-0.004117764864381223,-0.0879782928623988,-0.9705167198103182,-0.026233206578336825,-1.7410926493245462,0.012437490759638735,-0.020878829286239894,-0.3103879532287923,-0.014054176433038957,-0.3368551870501385,-0.3688940648723258,0.00834815821256037,0.0035810943420523404,-0.23166839199447883,-0.5623334100145693,0.13339395750988084,-1.863284889917417,-0.0015833268149277903,0.005297854382332651,0.3047306596728172,0.0077499530728088566,-4.161477468404474,-2.6281892453951277,-0.010316239601901462,-0.002605907434473227,-0.11560457516339873,-0.2963114808212847,-0.4057693369204682,-12.05594569328158,-0.0876139141394224,-0.011194915626856854,0.008446626735970932,-0.00888343109477119,-14.279013099626862,-0.6649814814814814,-0.0013778611111112718,0.0012244451038391207,0.057685185185185166,0.20474897119341562,-0.08230971783095044,-3.0494280583175435,-0.019134046348708408,-0.0028096814814815934,-0.27488272398770514,-0.002919938907407349,-5.002764555804608,,,0.4642135642135643,1.1742424242424243,0.5606060606060606,0.030303030303030304,0.6136363636363636,-0.05303030303030303,1.040611464839205,0.03407859215456132,0.03929071336668253,1.1160572164939098,0.2239597055139745,0.2393621133124671,2.1566686813331146,0.4633218188264416,1.9658283624211617,1.3487259631297284,0.18950307017062157,0.3103044419980145,0.0534348077299572,0.6171023992914336,8.002683473065177,1687.0,392.7183,193.0,536.4444444444445,9939.564108919825,6714.423467149772,89.56982143092299,394.9581999999999,465.38280178326477,482.74893299999985,12958.741362020357,1812.0,393.62080000000003,232.0,415.0,8948.430748109802,6942.2166818352025,111.89139372200002,402.8551,201.2222222222222,483.0711559999998,16092.578559516864,2490.0,683.6157,362.0,676.3333333333333,16575.125931946477,9369.883986670404,162.11909148988607,693.5996999999999,465.7438271604938,841.4436559999997,23074.05527102594,2734.0,898.0115999999999,417.0,625.6666666666666,22414.926384292816,9930.601741521601,190.081657701282,908.8089,519.1944444444443,1114.038416,26798.824060265775,2850.0,983.249,436.0,714.3333333333333,25139.468335778725,10382.040387686397,198.308843524074,991.3957,660.0802469135804,1216.5577320000002,27739.325250492802,2850.0,942.6980000000001,460.0,620.3333333333333,23969.42281159383,10384.229618835201,212.69355628297993,955.9440000000001,494.1790123456789,1174.316174,29283.12912741724,3306.0,1017.536,479.0,714.3333333333334,25492.682378398273,12127.1528784576,234.80851336558405,1031.8785999999998,613.287037037037,1261.6704659999998,31929.711598880676,3314.0,1152.141,477.0,590.0,29234.110820283462,11690.415340505599,256.777210044131,1171.1149999999996,651.8611111111112,1446.858534,33797.76029741181,2879.0,1368.7500000000005,448.0,576.6666666666666,37225.08254008899,9740.3069483408,238.89890678539302,1379.6266999999996,766.7777777777777,1735.691264,30437.339275866612,620.1833333333334,11.946258333333326,1.4854071027347404,42.58333333333334,293.7703703703705,109.72804323187556,2865.916309460421,16.280890553707646,10.80299333333333,213.27076331732962,7.526234983333332,2920.563066813327,100.94694444444445,-0.8324159722222173,-0.6320023173448123,11.256944444444443,67.1001234567901,-17.05668563432638,432.7769694446094,-0.9599439126130731,-0.47918988888888275,-30.934505291685714,-0.08702381638888912,16.440816169585062,69.4927777777778,4.225840277777781,0.6231271646523839,-0.847222222222218,106.87604938271605,7.805688340999431,350.75809199515174,0.12187569182423741,3.768418444444447,71.14157459800336,2.328593446111109,340.39987843861275,-169.8777777777778,-5.3027861111111,-0.4807054034019157,4.805555555555557,-87.83086419753084,-33.74683421420869,-771.7750259303557,-1.704767616878197,-4.700474444444435,-77.60167562109436,-3.382264077777779,-208.5143574764534,12.815833333333318,0.477997916666675,0.5239830293354606,8.895833333333334,-57.195925925925906,34.39374723504142,48.55589002523273,5.558260119784844,0.16545033333333947,27.6582518147005,0.8811424758333322,490.3787289807625,-56.478055555555585,-3.5156951388888946,-0.6217824945215648,-13.28472222222222,-146.54802469135805,-3.9612141933288605,-262.9049900480065,1.878061104705449,-3.152703222222224,-46.86858093754764,-2.1221806413888826,-50.86513324457091,-59.391944444444455,1.3440534722222195,0.5765561890704268,-37.29861111111109,-90.53567901234565,21.476427159090814,-299.9888672767041,-0.25491561720337425,0.8529545555555569,49.06163620732357,1.2477424447222258,-669.9978724131204,-491.47138888888884,-1.9291368055555735,-0.4873046902464935,-21.61805555555556,-55.41024691358024,-75.87886600412754,-2254.4618446436552,-16.38380194407199,-2.093449222222232,1.5795191996265643,-1.6612016147222126,-2670.1754496302233,-149.6208333333333,-0.31001875000003615,0.27550014836380216,12.979166666666663,46.068518518518516,-18.519686511963847,-686.1213131214473,-4.305160428459391,-0.6321783333333585,-61.84861289723366,-0.6569862541666535,-1125.6220250560368,0.7552097203924654,0.5924803833751864,0.44969470650801685,0.35248777506318874,0.31213596862052795,0.2031062818948923,0.18449958540154016,0.10456022555884473,0.11565168360337826,0.04799096432288267,0.06963788545502925,0.02482301248786004,0.04541770856765864,0.014250943650983372,0.029084202328198215,0.008342322356203857,16.013332739833373,5.687720541783852,4.107729736909294,2.186257812166737,0.44079089540177313,-0.6338510621086839,4.042805286278806,0.9676486186384909,7.005189774855408,0.6165001076018032,17.424773724146995,10.318101541358216,32.06664908420454,11.699759132024571,2.9559500700959243,0.5458460233961714,3.988684016889637,2.235765314735765,8.002980106940656,0.2979087805094847,4.0099752405101725,2.431410719959317,24.44236522889819,13.30411714988475,0.2917716587080785,0.6357535059133002,0.8341379444076237,0.871021955543822,0.871021955543822,0.871021955543822,2.1639873077162677,1119.6962406474515,0.0,1.0,2.0,0.0,9.0,4.0,2.0,1.0,0.0,4.1125686779154105,1.9971673039031983,0.7771531747181779,0.5503258334775643,0.5503258334775643,0.5503258334775643,59.742767050915745,2151.2941917477483,113.9179994144049,35.85490319579581,85.33120412593458,,14.0,744.0,40.43857168082794,32.92233140059769,18.287066950073896,22.514758973090913,10.560985174807637,43.46518047019139,0.0,13.847474399381248,9.967957041894417,0.0,15.319047619047621,38.75,18.5,1.0,20.25,0.0,0.035786435786435714,-1.75,0.20360006545573528,0.04852607709750589,-0.1550739883582294,0.03529169243454955,0.20810284635949006,0.0,0.6396825396825385,0.9176046176046171,0.43608247422680324,0.5911564625850326,0.8823129251700675,34.340178339693765,1.1245935411005235,1.2965935411005234,36.82988814429902,7.3906702819611585,7.898949739311414,71.17006648399278,15.289620021272572,0.5058971536405099,0.27976375505129003,0.05439850792663972,0.3525023313646254,0.4090909090909091,0.4582670827424959,-1.6256006276878705,-0.12849808920716008,-0.02709334379479784,-0.08555792777304584,0.541732917257504,1.3799442083671176,0.0306552502975219,0.022999070139451964,0.03365717581383213,-4.392936840610427,0.8289061360755742,0.679572750966873,1.2039633684293458,1.0902441371787877,0.5050194299848833,1.3250858961630696,0.8194619171687973,1.3353447331995782,0.6483590831114416,0.7384170151256174,0.6422713994599372,1.062462566281083,0.9033162744025275,0.5613208567199203,0.561946405337391,1.3005575453236344,0.6598784115718574,1.0214753764575297,0.8878569500663872,1.096033995947246,0.5631887700540301,0.533146111407191,0.585323181691664,0.9482178207267321,1.065831148239576,1.1114558981757292,1.059436639599391,1.0688286273413474,1.0830062893308305,1.1622523927775528,1.061732943082205,1.057744283453474,1.1031990979043462,1.0424608635653227,1.1189190972936773,1.0130439350761515,0.8120516756324953,0.8691470533318875,0.7576116462762017,0.8965120294693218,1.055525314086904,0.8397822255356456,0.8250093326266402,0.7162231275889318,0.8806283525944558,0.7400464434648296,0.8217096101934428,0.8784706162471514,0.8448580593113088,0.8013652718005618,1.095426908735765,1.247884293879032,1.0850968913965058,0.9442280347542075,0.8520231858763064,0.888097050895003,0.8109998978739433,0.7138854671603634,0.7889853042275453,1.0047251541319966,0.9445363698138415,0.6512708131526808,0.6433842782566939,1.5016956157090589,0.9754946634343489,0.9347222058989134,0.9443324858347348,1.0337082126483006,0.6704336037313852,0.522454077141782,0.6144441622283995,1.0906421860322748,1.3473806046369188,0.7479433153759685,0.7924842425022723,1.2114026183325135,0.8561533193468973,1.213802585384596,1.3252017313057942,1.5194898171798956,0.7684682597197766,0.6900345944935131,0.767484807229512,1.350697861586862,1.003971943780065,0.9027209774887676,0.5733797417154671,0.6681278538812784,0.8532850887146252,0.8798914656799005,1.0100217687253104,0.9905433134302774,0.9267533257757573,0.9489543540457195,0.9206278505653029,1.1071225097925914,10.0,0.2560963167023773,4.444444444444446,2.75,1.9866666666666672,1.9791666666666665,1.5232653061224488,0.8107638888888888,0.6329050138573947,0.48937500000000017,7489.959560040292,8376.78115278166,3434.6172945882286,3151.6421217581574,13.948665381222202,0.44911726685981684,7.6840789088655415,0.8152683680966453,0.0,0.4090909090909091,1.7943219176931087,3.9097232917053204,5.129737420890341,5.3565647621309544,5.3565647621309544,5.3565647621309544,0.2941176470588235,0.007760494445526585,0.09070294784580503,0.053921568627450976,0.03748427672955975,0.03665123456790123,0.025818056035973713,0.014477926587301584,0.014718721252497551,0.01287828947368421,0.5885311626245242,29.231833910034602,12.807996668054978,8.86426592797784,191.84786395020552,1.0,4.392292784294876,204.04989189820043,,157.55622666387774,161.7859001656938,162.19231411199758,157.49102667089417,198.64149324954266,162.63016860359153,162.9711754653307,186.16944659302376,0.16010116874483174,-0.06853776185791773,-0.4184991592361189,0.26001732379455256,0.22466568479897667,-0.1528968105408506,0.14853269218724316,-0.05799480833346524,-0.04362997387821692,-0.14267019905041373,-0.011373176181402867,0.0055370468718140865,0.0634256557327591,0.20022880772792193,0.23745240532141457,-0.01126167706679461,0.2059291307452637,0.0402660434392873,0.06927708096997823,0.004237252282217357,0.19745148202984106,0.18881545310678072,0.17513029620633996,0.06597329763706207,-0.11739232254671236,-0.19023719022602883,-0.13869369621208394,0.048364551299972046,-0.12813340873806334,-0.13180704333151871,-0.1154118577387899,-0.044875597593241966,-0.1864750801431311,-0.1559419606473861,-0.1925985238075909,-0.03059796827426257,0.008103760167903115,0.01569111919132528,0.13833483126447763,0.08192318023099648,-0.07635138575967965,0.12291975338737833,0.006644131734494474,0.13388148785261822,0.006005972757562855,0.050857290947697024,0.04591220839097523,0.06584531116592253,-0.03618544754888937,-0.11693744743088118,-0.16632874005247952,-0.12396158681199046,-0.1982194566293546,-0.01434448613445219,-0.03645101520048957,0.045835910702586274,-0.11596135612793683,-0.08732222318732742,-0.11204149057924656,-0.006920347467470097,-0.035688872471591006,0.04192856698536341,0.14465102538392163,-0.32642121768302296,-0.11485162563650142,0.07294067418736057,-0.039009196823369056,-0.0058350376217001934,0.029424369073629515,0.08573064256896835,0.06178350601572454,-0.08549332522262829,-0.2542657086190228,-0.05181324217533285,-0.10526033286129705,-0.1628870726372741,-0.06051899933564653,-0.221877284039233,-0.25239981335431405,-0.32288374097375194,-0.062176742768030174,0.002376310734182454,-0.07081972152963603,-0.29334781217801786,-0.06433402309352967,-0.006920297917549612,0.049458970604819234,0.08127853881278534,0.04181816653638937,-0.04500748326861977,-0.06384194922059688,-0.07051474101710369,-0.015605016469715708,-0.077333447785912,-0.023278084571157962,-0.1027767134218376,6.977013378845321,20.98260216941345,11.231758907070379,20.266077424410973,40.99969733920388,45.65825281709285,45.88689477706338,45.88689477706338,45.88689477706338,64.87233595989834,44.50795678328104,6.253601315630512,10.240046585934477,1.7633486550885875,20.36437917661731,9802.595371658228,7412.103133389739,3291.283835416012,122.0,49.0,57.0,71.0,89.0,106.0,123.0,126.0,128.0,480.16100838391066,34.0,5.117993812416755,5.937536205082426,6.825460036255307,7.675546002537848,8.569975376855206,9.436120444611522,10.334912762313824,11.211617648936635,12.113173057912455,0.7027777777777777,1.0076666666666667,1.1367044261698183,0.6667934992923155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.661800508982036,0.9922875816993465,1.0248786113134256,0.6285161679896875,4.0,2.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,3.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,4.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,20.11411936859394,5.817220841045895,0.0,15.97163043439408,0.0,0.0,27.081385065194404,0.0,0.0,25.99951461304901,30.183374320007832,36.98552349987505,29.85155794870493,328.0161724910895,-1163.5644714043547,-91.97573419829361,-19.392741190072577,-61.24023533707131,387.75893954200524,987.7297203433939,21.9422652161113,16.462162005723233,24.09096878886326,0.5,0.6111417867086,0.15506767155930842,257.62401976746276,0.09394373431753048,11.315847882779115,0.38885821329140013,7.0,0.29411764705882354,0.3037675895042137,0.6618919427104349,0.8684327799644787,0.9068332442306102,0.9068332442306102,0.9068332442306102,1.067,,2.8869047619047623,2.6369427101193024,1.9813565698895,2.9162416853891346,-9.622377777409438,2.4068026023631006,2.2966138848095055,-3.74102154320768,120.05040000000004,32.92233140059769,0.0,9.967957041894417,0.0,44.81495646689126,17.608657157484828,47.41608870827167,0.0,11.257379486545457,4.23410650459726,0.0,5.579729825986222,0.0,7.0925737159746784,0.0,8.688959234270676,0.0,10.33653540173002,42.166666666666664,5.461226556353894,8.819146775943313,0.0,0.0,0.0,0.0,1.2357073841295536,0.0,60.46000000000001,0.0,34.73974000854794,0.0,0.0,-3.6565646154230316,2.8796631314562866,0.0,-1.4320789327869743,68.2022655701891,9.41174338613694,10.338754328661313,0.0,60.07948804554181,14.817828337479405,5.817220841045895,43.86440317794012,30.34148838068032,0.0,17.333399593379337,0.0,40.007609957538925,39.70803053892216,38.96180968507719,408.0997837964009,,315.679916719111,323.4119856216834,324.2645460076383,315.54628873905335,399.85089283498456,325.11447038279744,325.8031622103699,373.04099233489814,38.96180968507719,408.0997837964009,,313.1429398071341,320.9348576212684,322.40327165410577,312.9835308943174,406.90536427649465,322.85353460481986,323.6457370458519,376.07991472925505,4.944234515676294,285.79944089913556,,226.65316756993525,230.59248731571492,231.0853643991043,226.59467808374805,273.0008907302591,231.5533626988722,231.97381242739493,258.3451804599786,1.1806608995477936,12.366660115042452,,9.566058082397303,9.800363200657074,9.826198363867826,9.562008749668284,12.11669372227226,9.851953647963558,9.872823097283938,11.304272494996914,2.4721172578381485,204.04989189820043,,157.55622666387774,161.7859001656938,162.19231411199758,157.49102667089417,198.64149324954266,162.63016860359153,162.9711754653307,186.16944659302376,59.53725490196079,0.0,6.030797275693004,0.0,13.5027237842653,0.0,19.957544679947276,61.492716678805536,-0.8454977693916883,0.0,0.0,0.0,-2.6564807752506168,0.9350586467296844,0.0,0.0,0.0,37.71097007938125,437.4400808494538,107.65931506158653,234.58339750231923,307.78424525342047,321.39388572785725,321.39388572785725,321.39388572785725,938.0,144.22233534692197,278.335031183641,68.93190468255885,152.13,143.75,1.0,8.852274952846157,6.087462841250339,4.438436564229283,5.639039555802423,,5.629492740644092,5.62882337545463,5.625853407632462,5.629679487197901,5.6068344271646335,5.629177003523328,5.629673508391504,5.622328326387465,0.13449807770391767,0.17087998653946737,,0.17059068911042702,0.17057040531680695,0.1704804062918928,0.1705963480969061,0.16990407355044343,0.17058112131888872,0.17059616692095467,0.170373585648105,2.684224657732357,2.923636227956761,,2.9219418072121064,2.9218228968558244,2.921295121967509,2.92197497955374,2.917908755512299,2.921885719392138,2.921973917537761,2.9206683395339113,345.8400000000013,870.8107664849483,215.37139671100695,,215.31849660158503,216.28427575930974,216.81581421940965,215.2888162652046,219.98649696597852,216.2740809256003,216.1941788303408,218.03282840664835,26.388205044998433,6.526405960939605,,6.524802927320758,6.554068962403325,6.570176188466959,6.523903523188018,6.666257483817531,6.553760028048494,6.55133875243457,6.607055406262071,7.963347161657346,6.566286432877647,,6.566040779982099,6.5705161023456125,6.57297067919412,6.56590292660367,6.587488635513754,6.570468964966095,6.570099448386016,6.578568108945458,38.56517525642353,19.43149395906271,30.569891863066672,1.7612696508304384,-2.138774089665663,5.461226556353894,0.5777658450110825,3.6912360528080224,-2.335951760557346,430.4535418515385,234.7858126134765,-832.8504898771806,-65.83394145010975,-13.88084149795301,-43.834236309325306,277.5481983925128,706.9923512372101,15.705727343321941,11.783205853953502,17.24371588383439,3228.0,51.0,3.881880721829936,1.9778933970095265,0.28867513459481287,0.09128709291752768,0.898568589676376,0.44197755263024374,0.16666666666666666,0.04564354645876384,0.0,0.0,0.0,0.0,0.0,0.0,0.1388888888888889,0.04027777777777777,0.26695461069665904,0.050661828701524206,24.921920772951356,19.55185265138115,15.289620021272572,11.984584352148417,15.294662462405869,9.952207812849723,10.516476367887789,5.95993285685415,8.211269535839856,3.4073584669246695,6.197771805497603,2.2092481114195435,4.814277108171816,1.5106000270042375,3.5773568863683805,1.0261056498130745,6.187328597406249,3.0756280609473143,8.585185560590112,2.9406914597250178,12.032860241287644,3.4851383932201534,106.99833584069242,45.11799866666599,30.231144007604104,29.09942082875072,29.09942082875072,29.09942082875072,166.0,189.0,66.31241099999998,40.58158900000003,0.2,100.11,14.784722222222221,7.138888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12.0,12.0,60.0,0.0,0.0,61.0,12.0,4.0,10.0,51.0,16.0,34.0,45.0,0.0,0.0,0.0,22.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,8.0,2.0,1.0,33.0,11.0,0.0,3.0,6.0,0.0,2.0,10.0,1.0,0.0,1.0,1.0,2.0,3.8066624897703196,7.571871838100997,4.406719247264253,4.816241156068032,5.368309738368072,5.943783143036834,6.308895027611397,6.7565689511188936,7.100233415985461,7.349713023449327 +135398737,CN1CCN(C2=Nc3cc(Cl)ccc3Nc3ccccc32)CC1,0,27.428571428571427,5.956392857142857,3.4523809523809526,6.371546149323928,162.1155589794674,110.89395452380953,1.6247677426697857,6.094214285714285,2.4220837778793882,7.530054119047618,230.74102445179605,26.155555555555555,6.2962,4.111111111111111,6.758024691358024,147.5192221550555,100.0928705555556,1.8804748862222227,6.461855555555555,2.7387288523090993,7.705634533333329,270.60174477755044,22.49367088607595,6.244922784810128,3.810126582278481,5.413502109704641,156.96293371489415,84.72703431645566,1.6429942920752272,6.373729113924053,2.5315674324113147,7.71324202531645,231.198675048431,19.50467289719626,6.117063551401869,3.4205607476635516,4.649013499480789,158.3717155222184,71.52093505607476,1.5096260219456816,6.2452962616822445,2.430041152263375,7.637721345794392,204.9515008843749,16.41025641025641,5.937923076923076,2.965811965811966,3.547008547008547,162.08907397785146,59.33401902564104,1.3347060195831197,6.044188034188034,2.2555836938552987,7.504666837606838,175.8844655057718,16.9,5.916481818181818,3.109090909090909,3.3565656565656568,161.70168756054346,61.9723843181818,1.3963939813279456,6.0219772727272725,2.2105686494575383,7.476901309090908,186.56142604207847,17.813725490196077,5.927520588235295,2.9705882352941178,2.6089324618736383,153.5273708947361,63.90456426470588,1.5245889571479805,6.078523529411765,2.255123860243686,7.4836037450980415,197.8851932318158,13.8125,5.71616875,2.4017857142857144,1.685515873015873,161.1475318555217,48.30686424107142,1.2600581283145087,5.832666071428572,1.979938271604939,7.347876321428573,153.34713427620696,13.112359550561798,5.609348314606742,2.0,0.9750312109862671,165.42811988999281,44.69545710112359,1.160457427422708,5.764483146067415,1.7658482452489948,7.378923505617979,132.62814301393283,10.657596371882086,0.06883724489795913,0.01272759271002954,0.5946712018140591,3.2858542593992337,1.574684399499485,50.340359521541956,0.24643209164343138,0.07770612244897954,0.2537799159190171,0.042403705782312916,52.19721025377157,0.42705971277399934,0.0030841836734694416,-0.005075740933735513,0.20691609977324255,1.1083582953071494,-0.41546639575981137,2.017642497505667,-0.014869738836338289,0.004222448979591826,0.0036952721612616463,-0.0008549565759636885,-0.4586522478224441,0.38580326645426144,-0.006114460087832546,-0.0013545222888972986,-0.00847469789603604,0.12624882218345518,0.10749791679047951,1.9245896767702848,0.02722548122864093,-0.005074476879359341,0.020910328156634406,-0.004247543335055505,4.5564312802832765,-0.7345879161633497,-0.0016668844173182958,0.0004966221176023703,0.021928709178375402,0.27958553137804504,-0.08122490203315406,-3.4681831770826705,-0.01571974486423804,-0.003627484264733926,0.028736749937071593,-0.0023357576292198892,-3.218984863578937,0.4543287400430256,0.001305612244897965,0.00044870490060363314,0.029667422524565383,0.15675114616913563,-0.038443942341956035,2.135023936740508,0.003651348957889515,0.002911704168847023,-0.000419882837904916,0.0015003772457701052,1.3851520062486533,1.2069057926200784,-0.0018610760667903468,-0.00037148898579201595,-0.05744176458462173,-0.36950024304521667,0.4123501378182454,5.808697063306535,0.05469947157919825,0.0012005009276437797,-0.007771329169689618,0.00085731456400742,10.247406591497947,-1.6702014138988925,-0.009481152460984377,-0.0006544287465183111,-0.20438175270108042,-1.195970569297678,-0.30063618622328275,-8.11255444357743,-0.0658204034671116,-0.010299259703881533,-0.06701585399693587,-0.001340970488195276,-15.348924155344388,0.1251417233560089,-0.001320216836734714,0.0006287303781660714,-0.08361678004535146,-0.53174428207497,-0.140671103279824,0.4862676395975072,-0.015788368387226463,-0.0009728316326530557,-0.04863995098242516,0.0009528469387754901,-5.988702069576484,-0.7619302402608985,0.0010851467553313044,4.372109618983551e-06,-0.023777675864353233,-0.020498123880800505,-0.1552978929692455,-3.519096455196313,-0.013280551861698655,-0.0015422380188030325,0.0247023669482167,-0.003405707119926638,-1.3439457567311883,,,0.49192546583850927,1.2934782608695652,0.6086956521739131,0.021739130434782608,0.6847826086956522,-0.07608695652173914,0.7947959851186204,0.009161027137670839,0.024117548876801273,0.8939191470068447,0.25774732121188365,0.22936180653623228,1.688715132125465,0.48710912774811593,2.088633858177542,1.639032995857611,0.3724173795268142,0.0,0.0771834827931174,0.4496008623199316,7.7649958163809645,1152.0,250.1685,145.0,267.60493827160496,6808.853477137632,4657.54609,68.240245192131,255.957,101.7275186709343,316.26227299999994,9691.123026975434,1177.0,283.329,185.0,304.1111111111111,6638.364996977498,4504.179175000002,84.62136988000002,290.7835,123.24279835390948,346.75355399999984,12177.07851498977,1777.0,493.34890000000007,301.0,427.66666666666663,12400.071763476637,6693.435710999996,129.79654907394294,503.5246000000002,199.99382716049385,609.3461199999996,18264.69532882605,2087.0,654.5258,366.0,497.44444444444446,16945.77356087737,7652.740050999999,161.52998434818792,668.2467000000001,260.0144032921811,817.236184,21929.810594628114,1920.0,694.737,347.0,415.0,18964.42165540862,6942.080226000002,156.160604291225,707.17,263.90329218106996,878.0460200000001,20578.4824641753,1859.0,650.813,342.0,369.22222222222223,17787.18563165978,6816.962274999998,153.60333794607402,662.4175,243.16255144032922,822.4591439999999,20521.75686462863,1817.0,604.6071000000001,303.0,266.1111111111111,15659.791831263083,6518.265555,155.508073629094,620.0094,230.02263374485597,763.3275820000002,20184.28970964521,1547.0,640.2108999999999,269.0,188.77777777777777,18048.52356781843,5410.368794999999,141.12651037122498,653.2586000000001,221.75308641975317,822.9621480000002,17174.879038935178,1167.0,499.232,178.0,86.77777777777777,14723.10267020936,3977.8956819999994,103.280711040621,513.039,157.16049382716054,656.7241920000001,11803.904728240022,447.6190476190476,2.8911642857142836,0.5345588938212407,24.97619047619048,138.00587889476782,66.13674477897837,2114.295099904762,10.350147849024118,3.2636571428571406,10.65875646859872,1.7809556428571425,2192.282830658406,19.21768707482997,0.13878826530612487,-0.2284083420180981,9.311224489795915,49.87612328882172,-18.69598780919151,90.79391238775501,-0.669138247635223,0.19001020408163216,0.16628724725677407,-0.03847304591836598,-20.639351152009986,30.478458049886655,-0.4830423469387712,-0.10700726082288659,-0.6695011337868472,9.97365695249296,8.492335426447882,152.0425844648525,2.1508130170626334,-0.40088367346938797,1.651915924374118,-0.3355559234693849,359.95807114237886,-78.60090702947842,-0.17835663265305765,0.05313856658345362,2.346371882086168,29.91565185745082,-8.691064517547485,-371.09559994784576,-1.6820127004734704,-0.3881408163265301,3.0748322432666604,-0.24992606632652814,-344.4313804029463,53.15646258503399,0.1527566326530619,0.052498473370625076,3.47108843537415,18.33988410178887,-4.497941254008856,249.79780059863947,0.4272078280730733,0.3406693877551017,-0.049126292034875174,0.1755441377551023,162.06278473109245,132.75963718820861,-0.20471836734693816,-0.040863788437121754,-6.31859410430839,-40.64502673497383,45.358515160006995,638.9566769637188,6.016941873711808,0.13205510204081577,-0.8548462086658579,0.0943046020408162,1127.2147250647743,-170.36054421768705,-0.9670775510204064,-0.06675173214486774,-20.846938775510203,-121.98899806836317,-30.66489099477484,-827.4805532448979,-6.713681153645384,-1.0505244897959163,-6.835617107687459,-0.13677898979591815,-1565.5902638451275,14.015873015872996,-0.14786428571428797,0.07041780235459999,-9.365079365079364,-59.55535959239664,-15.755163567340288,54.461975634920805,-1.7682972593693638,-0.10895714285714224,-5.447674510031618,0.1067188571428549,-670.7346317925662,-67.81179138321997,0.09657806122448609,0.00038911775608953605,-2.116213151927438,-1.8243330253912449,-13.82151247426285,-313.19958451247186,-1.1819691156911802,-0.1372591836734699,2.198510658391286,-0.3031079336734708,-119.61117234907576,0.6874430569105274,0.6019744875913534,0.43090422839256426,0.31789522704743456,0.2784320516962667,0.17551959045416865,0.17532565155134472,0.09322692418027702,0.10915213416959114,0.04757590741043137,0.07057555470951851,0.02616991557213905,0.04454095878940696,0.013304820467253965,0.028383248961916338,0.0069304632705583045,17.001102889871575,5.692741593335894,3.170651262844498,2.191433637912286,0.38267856393873523,-0.4238635954178298,3.2209644482734783,0.9929795682801134,5.058070296051481,0.7740004872827706,14.55464115588818,10.954545953844296,35.450517317083644,11.7047863294909,2.2078227619587665,1.0036647465630664,3.182823883029419,2.2410201739034186,3.0372535755320507,1.3043712483866428,3.4930066799635635,2.4367584590187703,22.455863844281918,15.586439649158098,0.26191821982967023,0.5810772080823764,0.710350212771043,0.8258445798793553,0.8425517287919223,0.8425517287919223,1.5375649306886061,763.3669443617505,0.0,1.0,4.0,0.0,11.0,0.0,1.0,0.0,0.0,3.899268399556899,2.0799218265194463,1.3430088561087317,0.6846401786229404,0.5894020833848455,0.5894020833848455,135.41746637731097,881.0596376857695,34.30397108574161,20.97761042108975,44.377089948459584,,10.0,397.0,0.0,0.0,0.0,5.022633313741326,54.64025572515524,0.0,0.0,24.26546827384644,40.363381253769305,16.593344622868184,11.314285714285713,29.75,14.0,0.5,15.75,0.0,0.008074534161490732,-1.75,0.12743764172335587,0.06077097505668927,-0.0666666666666666,0.02080745341614898,0.09861538461538444,0.0,0.5734693877551023,0.7993788819875773,0.4460317460317464,0.512698412698413,0.7785714285714284,18.28030765772827,0.2107036241664293,0.5547036241664293,20.560140381157428,5.928188387873324,5.275321550333342,38.8404480388857,11.203509938206667,0.6153846153846155,0.10732323232323235,0.0,0.33585858585858586,0.2777777777777778,0.37429274045181643,-0.6122550563919902,-0.028245661079865696,-0.014577501342666433,-0.04709654279938387,0.6257072595481836,1.0235101888888152,0.035442699250160685,0.02436929021163846,0.0352934547892695,-4.972066331930064,0.6279397163120568,0.9036221196107352,1.5665003731036102,0.6931045440101683,0.6119458596736357,1.4421758455716005,0.6329030880705814,0.9600599546579771,0.7933557349239145,0.9007570126340518,0.8512202332820148,0.9152239893844414,0.7246498788042015,1.31063334859152,1.556725298839662,1.2051984409503926,1.0922272857961555,1.0800829522557494,0.7254597115447884,0.7681287581352189,1.1391410494578247,0.8648267515086564,1.1695657922881997,0.8064211017185235,0.9369303042354347,1.1647154267568274,1.2688298376498512,1.0739199771923413,0.9864054060596137,1.13107241488219,0.9378269451289823,0.9806269476824764,1.0996907439425136,0.9555220671240273,1.1178172684687715,0.9839634695849485,0.7816953082378615,1.075093896352262,1.0869708315599869,0.9470558040624768,1.0091050173606784,1.0350153549479246,0.7856796423272928,0.9051436135418127,0.9751633148457921,1.2281068563175705,0.9216290788207294,0.9226112585614414,0.6528278529980658,1.0748206863140786,1.1420720235150978,1.1938642863333042,1.2069440614848876,0.7564982934019756,0.656306798935131,0.6972133469895357,0.9462602705275255,1.1096271311343022,0.8591464602166802,0.759568635501433,1.013390175219024,0.9235049094088611,0.9140368468515132,1.239219424662143,1.2279634155875783,1.2033324136682924,1.02046808445785,1.241286366977485,0.9335793282715612,1.1183290178311762,0.8115458586895998,1.2672162675594048,0.8942852393617022,0.8544958716582295,0.688976208736211,0.9526930409914203,1.0343255054356157,1.0048647538014297,0.8997174112865466,1.050138711240269,0.8713448924519381,1.1169364546461007,0.7702486794910548,1.1187302005398991,1.5787401386564668,0.8273021024621232,0.5982370354954727,0.9314488919356048,0.8804073284993342,0.8958623648525242,1.564991007919022,1.1808383242001326,1.0735230701616676,0.6791289481848228,1.2817078708970635,1.0851416194374295,4.5,0.012345679012345678,2.666666666666668,1.3125,1.637777777777778,0.6252777777777778,0.5381859410430838,0.3801729024943311,0.19351536911060718,0.08125000000000002,4537.864234883848,5073.555467973525,2251.9337208580496,2057.8180027337066,11.626376958309711,0.45369140314720013,6.351589682575901,0.830467259275887,1.0,0.2777777777777778,1.4930490232218618,3.3123955962593143,4.049308566670029,4.70767724415582,4.802915339393915,4.802915339393915,0.1730769230769231,0.006172839506172839,0.0720720720720721,0.03201219512195122,0.04549382716049383,0.0168993993993994,0.01681831065759637,0.016529256630188307,0.013822526365043369,0.01625,0.4091473499898405,16.467455621301774,7.086924762600439,3.52,140.93460594163878,1.0,4.090152989643839,97.44058027997478,,74.92048018468037,74.20955402570037,72.44606254615007,74.90661736996708,105.03156596456438,75.10635442602765,75.9847508340941,96.52873673238203,0.04007092198581569,0.04480399641271641,-0.39879818983646065,0.3479504289799807,0.33731206797644003,-0.26384105659004925,0.04008001763758292,-0.06034010723673797,0.05433869103897458,0.01456093224666696,-0.02016230799149401,-0.008786911131697956,0.036199838405601974,-0.08882488102038823,-0.1064240756093581,-0.014251064908110175,0.038421917777490766,0.06826632487414483,0.03823154413402039,0.11047863550188156,-0.06530343709649329,0.082395520074595,-0.10016915400887452,0.08729262077668311,-0.0689262278783058,-0.02421486245983844,0.039019328235654835,0.03687535080138628,0.08508762388906524,-0.051581702377296354,-0.06889468430591054,-0.06378935778779707,-0.046682090810999714,0.11323492575449384,-0.05508380897676545,-0.06166967253477584,0.04262956901254772,0.01896665456081717,0.03525449869636752,0.04988878296790593,0.047704838314342975,-0.024413744337706957,0.04241177371462505,0.014816856577156928,0.03747071758417487,-0.0016545156317212411,0.03538316328937293,0.026536897269305068,0.11324371373307544,-0.027035888341392984,-0.029187686489942192,-0.09659415893924948,-0.1124518051852896,0.2618620835700864,0.11538846997747089,0.2219656994120078,0.015449245050568666,-0.03062231753662296,0.020217916056879538,0.1963209631640708,-0.15671464330413015,-0.1377328868265829,-0.05141810878365169,-0.3436886670778892,-0.36397553722189196,-0.19091837470342646,-0.16115408234432368,-0.26709347402021305,-0.13254116122759624,-0.2640707549856746,-0.031623898512063785,-0.29405640800957045,0.011742021276595729,-0.019178815751440037,0.049399002033638464,-0.14061010486177306,-0.16182832228602587,-0.08933288684674622,0.00965959806841309,-0.06406782607709648,-0.012519369156423932,-0.1916619398595218,0.02247084119645349,-0.11473222496874272,-0.07149175233086304,0.015763948091470994,0.00034351426216980226,-0.0399845760006855,-0.006238293686387741,-0.09862159872708913,-0.06990606520579973,-0.053891324677447484,-0.019847059281791323,0.09733775369402908,-0.0803162614468285,-0.025747463326051604,13.41606748789251,19.870780534242826,6.35979097342112,15.891303390593055,32.09680099297331,38.51178268266632,40.22332307147676,40.31932307147676,40.31932307147676,48.03857873808347,37.697758904725056,8.565599729116727,0.0,1.7752201042417002,10.340819833358427,4661.797391828104,3152.9567807057265,1717.03283133297,174.0,37.0,50.0,68.0,95.0,109.0,128.0,152.0,167.0,326.1298242880005,26.0,4.844187086458591,5.707110264748875,6.597145701886651,7.4815557019095165,8.37816098272068,9.271341393533582,10.171030691147022,11.068277642986802,11.969546191322351,0.6825396825396826,0.9705714285714286,1.125234012203853,0.6478743691298849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7030092244083264,0.9619047619047618,0.9964883987098118,0.6492874831593538,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,15.116608065707286,5.835619785757269,0.0,0.0,0.0,0.0,4.992404732635669,0.0,0.0,23.733674027155736,37.37950732498524,42.45249670377218,11.374772549367124,201.60241650951576,-329.7742262908911,-15.213742918807037,-7.851767292640264,-25.367248176222393,337.01988288682674,551.2854113948785,19.09022816693457,13.125843128449487,19.00984177223719,0.5,0.9703312449452124,0.2160888384806467,0.0,0.10184998927984684,116.60509913384105,0.029668755054787846,5.0,0.0,0.2768844832677647,0.6142805284916584,0.750940319196444,0.873034147483452,0.8906959592372966,0.8906959592372966,3.7227000000000023,,1.2184873949579833,0.859278783623577,1.0326592544260307,1.2311854812066063,-1.838782318598832,0.8377748167888077,0.770836145110211,-1.1940098832361057,96.44370000000004,0.0,0.0,9.799819461700956,4.992404732635669,0.0,38.54348621033382,53.05065428466959,0.0,0.0,3.970291913552122,0.0,5.303304908059076,0.0,6.834108738813838,2.70805020110221,8.452974619089586,5.37989735354046,10.116297899710545,28.666666666666668,14.156845675513003,0.0,0.0,0.0,0.0,0.0,4.82149554883682,0.0,40.764,0.0,0.0,0.0,0.0,0.0,0.0,4.967121126228269,1.0298302469135803,47.25982851256183,5.316788604006331,17.062158824050687,0.0,48.862136853785714,0.0,0.0,5.563451491696996,47.456974211866935,5.022633313741326,0.0,0.0,27.210723503455167,29.526387425149707,30.595207220434066,194.88116055994962,,149.8211898350933,148.52013042236,145.01728381034482,149.79077114692558,211.02249661709348,150.28406913185634,152.02406168177424,193.6804351429742,30.595207220434066,194.88116055994962,,148.81461329143238,147.81029142719277,144.16421746973202,148.77370487984183,211.90191424772775,149.59199428320485,151.38728399668327,194.25148334800025,4.844876193159667,135.1657315839923,,104.73311359258523,103.04168270111893,100.39353819518114,104.72781350325317,150.45603685407553,104.49170995733826,105.84445123845873,137.15938633434172,1.3302264008884377,8.473093937389114,,6.513964775438839,6.457396974885218,6.3050992961019485,6.512642223779373,9.174891157264934,6.534089962254623,6.609741812251054,8.420888484477139,2.4665183235657118,97.44058027997478,,74.92048018468037,74.20955402570037,72.44606254615007,74.90661736996708,105.03156596456438,75.10635442602765,75.9847508340941,96.52873673238203,40.4,0.0,2.163510115759394,6.176539767362579,0.0,0.0,0.0,41.85251274581209,4.076557819629909,3.4977337648022173,0.0,0.0,0.0,4.72147704606534,0.0,0.0,0.0,27.27007429269286,522.6420463285059,62.708058975318195,139.1206150428912,170.07095980014122,197.72244425454446,201.72244425454443,201.72244425454443,1029.0,124.48835565671406,15.980253067836687,65.76492563386783,30.869999999999997,30.869999999999997,1.0,8.88183847514068,5.700439718141092,4.324589208721537,4.721285262992453,,4.719137773087186,4.7148632692773145,4.714789037913921,4.719211075757382,4.71313748324633,4.715728753143157,4.715941614437223,4.713706923183029,0.1880256177705016,0.20527327230401968,,0.20517990317770374,0.2049940551859702,0.20499082773538785,0.20518309025032097,0.20491902101071,0.2050316849192677,0.2050409397581401,0.20494377926882734,2.297226278165581,2.3849901869467005,,2.38453523065203,2.383629039507215,2.3836132952653326,2.384550763595635,2.3832629415198343,2.3838125876590626,2.3838577252191775,2.3833837539386757,243.09999999999997,158.8391624475147,134.13366058583352,,133.99166854697617,134.6109482993781,134.65077781225978,133.97719840722502,134.11271395097725,134.49277192065597,134.44945128204904,134.2691797266246,6.906050541196291,5.831898286340588,,5.8257247194337465,5.852649926059917,5.854381644011295,5.825095582922827,5.8309875630859676,5.847511822637216,5.845628316610828,5.837790422896722,5.900801256252464,5.731745892804768,,5.730686745930503,5.735297876357749,5.73559371872456,5.730578747266854,5.731589718206434,5.734419580166063,5.734097424437105,5.732755711867409,0.0,9.68859817229361,4.204200076635593,4.115029237003444,1.0298302469135803,14.156845675513003,0.0,4.076557819629909,2.163510115759394,289.40125497279917,108.58755714421453,-177.6237520464495,-8.194461193352668,-4.2291369534868934,-13.66336554203458,181.52642426278868,296.93461590916803,10.28242259127512,7.069871807361143,10.239124686523036,1082.0,41.0,1.5161824628322011,0.8554485065124822,0.0,0.0,0.27497165237684323,0.07890098987557222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2347080484106438,0.10183403899401218,0.434825384861044,0.1598291441678793,15.81119030894213,13.845413214601129,11.20350993820667,8.265275903233299,10.30198591276187,6.49422484680424,8.766282577567235,4.661346209013851,7.422345123532198,3.235161703909333,6.704677697404259,2.4861419793532096,4.8549645080453585,1.4502254309306821,3.6330558671252913,0.887099298631463,3.4441782479797443,1.5586761376439655,5.494032670902326,1.9822525656056644,9.181699555363366,2.7416844482901968,77.6443945687265,46.700369878883585,31.125852173642976,26.332579636491054,26.009501786702607,26.009501786702607,126.0,150.0,49.309066999999985,24.700932999999996,0.5,170.05,6.138888888888888,4.944444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,42.0,0.0,3.0,45.0,12.0,1.0,7.0,38.0,13.0,26.0,32.0,0.0,0.0,0.0,18.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,4.0,1.0,2.0,23.0,5.0,0.0,4.0,0.0,0.0,4.0,0.0,0.0,0.0,1.0,0.0,2.0,3.5263605246161616,7.761831453887561,4.110873864173311,4.68213122712422,5.261394012443439,5.86007371898257,6.173004548567117,6.609517692590839,7.052694015994955,7.445764313163501 +23696973,O=C([O-])c1cccc(Cc2cc(Cl)ccc2OCc2ccc(Cl)cc2F)n1,1,40.825,6.6730675,3.775,10.730246913580247,158.68208334516345,168.42339070374425,1.8628157190759254,6.8381,7.009292600213381,8.21395965,273.7974784802943,31.714285714285715,6.458333333333333,4.380952380952381,9.29100529100529,141.79511836204043,124.46610463893337,2.0832577626190485,6.662785714285715,3.644498334313149,7.882981428571425,309.82551087288596,29.61764705882353,6.508529411764705,3.9411764705882355,7.9901960784313735,147.668533934469,115.24227681868233,1.86364866502497,6.687464705882355,4.253086419753085,7.984062470588234,272.852886374144,25.61627906976744,6.495813953488372,3.372093023255814,6.2661498708010335,154.84076352049888,96.7155705340837,1.634754830074372,6.666525581395349,3.7991075701024037,8.043657906976744,232.64525652671435,23.022727272727273,6.534136363636361,3.022727272727273,5.400252525252525,159.72002633207694,86.43236959487272,1.4344897141891024,6.661727272727273,3.8142653385708942,8.109030477272727,203.71218235168564,22.271604938271604,6.2840246913580255,3.1358024691358026,5.436213991769548,156.54854255479216,83.53346442297283,1.4937747032492343,6.426654320987655,3.3332825280699074,7.869796074074073,210.0173241003387,23.691358024691358,6.29468024691358,3.2098765432098766,5.425240054869684,156.52834363881442,89.93859494654815,1.5461673157411973,6.451337037037036,3.403749428440786,7.896238814814816,218.52219716276522,25.36842105263158,6.390197368421053,3.263157894736842,5.9035087719298245,152.78307889159825,95.91571048593683,1.6842170108098287,6.574730263157895,3.6763320337881744,7.945104315789472,237.21888347799336,24.15,6.4399500000000005,2.7625,5.504166666666666,159.866887940411,91.59068437965999,1.4836980844417376,6.58328375,4.088657407407408,8.037937799999998,205.12573250760133,14.044374999999997,0.1794894374999999,0.026428562735213112,0.624375,4.535679012345679,1.9742052670254477,65.79311704723867,0.2694580412424994,0.17395774999999997,2.889269714029873,0.13102634749999997,47.29290319395541,0.0913392857142857,-0.0016927708333333304,-0.006433254808782441,0.05122023809523812,0.7563550852439738,-0.09331816510042337,0.4362692978754995,-0.00604358782817019,-0.0009877500000000056,-0.09805752766165152,-0.0026848189285714093,0.02746562855622751,0.23430147058823514,0.006032474264705879,0.0019025891908692814,-0.112610294117647,-0.13041394335511983,-0.29960442397780335,1.104312920993125,-0.009552255428041272,0.004872323529411763,0.4116981822735952,0.0027598436764705962,-2.7996225785077953,-2.361816860465116,-0.0066829840116279056,0.0027091733899164395,-0.08193313953488371,-0.3085041630778064,-0.20878795176864326,-11.165928305835987,-0.05187998268925171,-0.01268542441860465,0.10055769502575113,-0.010163885872093022,-9.29029428036493,-0.7705113636363635,-0.014402818181818176,-0.0020505737992816747,-0.018977272727272735,-0.5290852974186309,0.07332252212371385,-3.546694899539681,-0.005962484674725232,-0.012858318181818167,-0.20962187677529762,-0.005796677045454543,-3.4054046798561894,0.4327854938271604,0.000803093364197553,0.0007501514359837384,0.0410570987654321,0.26519737844840724,0.03506125368786756,1.9843598025257538,0.0019329415041972244,0.0032289783950617003,-0.07431279736367735,0.001709603117283972,2.099936140657679,0.8303163580246912,-0.008361073302469116,-0.001428805464709693,0.02747685185185184,-0.2613077274805669,0.11235255334035421,4.081833604183036,0.030744133558517284,-0.0026838611111111364,-0.2756284302373171,-0.002840411080246892,7.4695606795645055,-2.256546052631579,-0.018081378289473666,-0.0027876614151541535,-0.0789802631578947,-0.39367121507472397,-0.27847975715357265,-10.660492680524095,-0.0518769035895178,-0.02120603947368422,-0.09362236305641795,-0.01585465999999999,-9.736960957547625,0.5390625,-0.00043334374999998496,0.003967633278633624,-0.05531250000000002,0.08046296296296292,-0.035889822868555674,2.316190955819791,0.02846026597571937,-0.0027681250000000084,-0.13677015460676725,-0.0003240793749999998,1.3128853939607688,,,0.4857142857142857,1.4166666666666667,0.7962962962962963,0.07407407407407407,0.6203703703703703,0.17592592592592593,0.7098317101298101,0.01835146551863543,0.027907021074190987,1.0864072843691956,0.28867032344325955,0.1898009355704419,1.7962389944990056,0.47847125901370147,2.0243059799872563,1.5490120323242638,0.07596166461769203,0.20294639660164734,0.19638588644365307,0.4752939476629923,10.100655010897759,1633.0,266.9227,151.0,429.2098765432099,6347.2833338065375,6736.935628149769,74.51262876303701,273.524,280.37170400853523,328.558386,10951.899139211771,1332.0,271.25,184.0,390.2222222222222,5955.394971205697,5227.576394835201,87.49682603000004,279.83700000000005,153.06893004115227,331.0852199999998,13012.67145666121,2014.0,442.5799999999999,268.0,543.3333333333334,10041.460307543892,7836.474823670398,126.72810922169796,454.7476000000001,289.2098765432098,542.9162479999999,18553.996273441793,2203.0,558.64,290.0,538.8888888888889,13316.305662762905,8317.539065931198,140.588915386396,573.3212,326.7232510288067,691.75458,20007.492061297435,2026.0,575.0039999999998,266.0,475.22222222222223,14055.36231722277,7606.0485243488,126.23509484864101,586.232,335.6553497942387,713.594682,17926.672046948337,1804.0,509.0060000000001,254.0,440.33333333333337,12680.431946938166,6766.2106182607995,120.99575096318799,520.5590000000001,269.9958847736625,637.4534819999999,17011.403252127435,1919.0,509.8691,260.0,439.44444444444446,12678.795834743969,7285.0261906704,125.23955257503698,522.5582999999999,275.70370370370364,639.5953440000001,17700.297970183983,1928.0,485.6550000000001,248.0,448.66666666666663,11611.513995761467,7289.593996931199,128.00049282154697,499.6795,279.40123456790127,603.8279279999998,18028.635144327494,1932.0,515.196,221.0,440.3333333333333,12789.351035232881,7327.254750372799,118.695846755339,526.6627,327.0925925925926,643.0350239999999,16410.058600608107,561.7749999999999,7.179577499999996,1.0571425094085245,24.975,181.42716049382716,78.96821068101791,2631.7246818895464,10.778321649699976,6.958309999999999,115.57078856119493,5.241053899999999,1891.7161277582163,3.8362499999999997,-0.07109637499999988,-0.27019670196886253,2.151250000000001,31.766913580246896,-3.919362934217782,18.32331051077098,-0.25383068878314796,-0.04148550000000023,-4.118416161789364,-0.11276239499999918,1.1535563993615554,15.93249999999999,0.4102082499999998,0.12937606497911114,-7.657499999999996,-8.868148148148148,-20.37310083049063,75.0932786275325,-0.6495533691068065,0.3313179999999999,27.995476394604477,0.18766937000000053,-190.37433533853007,-203.11624999999998,-0.5747366249999999,0.23298891153281379,-7.046249999999999,-26.531358024691354,-17.95576385210332,-960.2698343018949,-4.461678511275647,-1.0909464999999998,8.647961772214597,-0.8740941849999999,-798.965308111384,-67.80499999999999,-1.2674479999999995,-0.18045049433678736,-1.6700000000000008,-46.55950617283951,6.452381946886819,-312.10915115949194,-0.5246986513758204,-1.1315319999999986,-18.44672515622619,-0.5101075799999998,-299.67561182734465,35.05562499999999,0.0650505625000018,0.06076226631468281,3.325625,21.480987654320987,2.8399615487172727,160.73314400458605,0.1565682618399752,0.26154724999999773,-6.019336586457865,0.13847785250000175,170.094827393272,67.25562499999998,-0.6772469374999984,-0.11573324264148513,2.225624999999999,-21.16592592592592,9.100556820568691,330.6285219388259,2.4902748182399,-0.21739275000000205,-22.325902849222686,-0.23007329749999827,605.0344150447249,-171.4975,-1.3741847499999986,-0.21186226755171567,-6.002499999999998,-29.919012345679022,-21.16446154367152,-810.1974437198312,-3.9426446728033526,-1.6116590000000006,-7.115299592287764,-1.204954159999999,-740.0090327736195,43.125,-0.034667499999998797,0.3174106622906899,-4.425000000000002,6.437037037037033,-2.8711858294844537,185.2952764655833,2.2768212780575494,-0.22145000000000067,-10.94161236854138,-0.025926349999999987,105.0308315168615,0.7180940954863613,0.5702885905770826,0.4454732411506876,0.2995427504709251,0.2985937946338936,0.1653492273570108,0.19023878770582997,0.0871577663799392,0.12325887360804622,0.04762236315969129,0.07941783524910431,0.02623083923217853,0.05369972561323074,0.014887677961320116,0.033796975459782656,0.007353596842412822,17.00212611205684,5.692549299593471,4.107720062912042,2.1891993362519497,0.3963361230715413,-0.6229501237733832,3.18473225271705,0.9728316453856435,7.00518773325484,0.7730718031378472,17.424772089507208,10.952442974903537,35.4515280420225,11.70411668998055,2.210021318839498,0.5458558151590013,3.9886739693973774,2.2398474746230974,8.002972858489468,1.3037947644351628,4.009958106072636,2.4360372963444474,22.45701966594831,13.304120075661821,0.31391419609245114,0.6219628694529014,0.7646243421699072,0.898514561707815,0.9160570680660106,0.9160570680660106,1.516076777666319,994.7108863860431,0.0,1.0,1.0,0.0,15.0,1.0,2.0,0.0,0.0,3.532479143393623,1.7764662506490407,0.9632331253245194,0.1999999999999993,0.09999999999999787,0.09999999999999787,-82.18265231360402,1277.9728000047169,73.40044047899704,31.94932000011792,71.47274466936192,,14.0,615.0,11.786526128997744,14.291479626587348,12.300809959361379,39.03643106193502,0.0,12.13273413692322,42.46456947923127,0.0,4.9839785209472085,27.938742734265084,13.114285714285714,38.25,21.5,2.0,16.75,0.0,0.014285714285714301,4.75,0.2593831168831169,0.11418367346938774,-0.14519944341372915,0.0,0.16951601423487528,0.0,0.6996428571428572,0.8920634920634918,0.44025974025974035,0.5854591836734695,0.8920634920634918,19.16545617350487,0.49548956900315666,0.7534895690031567,29.332996677968282,7.794098732968008,5.124625260401931,48.498452851473154,12.91872399336994,0.5444839857651247,0.18155410312273057,0.0,0.3431372549019608,0.1,0.5674214555918808,-1.435258090354643,-0.09112313592123603,-0.03588145225886607,-0.08970363064716519,0.4325785444081191,0.6616025963595723,0.029310176921844476,0.016540064908989308,0.02756677484831551,-7.675708589826478,0.49091845362594333,0.5559857606026062,0.9281147611030585,0.9109109109109109,0.47026952673881,0.9321653555563159,0.49274476416412255,0.7971614457716935,0.5358064160488888,0.526205006423206,0.5884763122601299,0.7789907768072731,0.6248053046148371,0.6947942844498449,0.7774913697996972,1.2400635930047692,0.8215244098673794,1.051235542790628,0.6260771635227532,0.8720122688394211,0.6805845646935738,0.47652162075974247,0.7124343883225023,0.9036620224655203,1.0591014982618425,0.9136749342144437,0.7460062899601965,1.0894615545778337,0.9574092577623298,1.0976443431914384,1.061005844172114,1.1150451176606107,0.9483467534034008,0.6522641959088717,0.9464562346009996,1.1210805939882729,0.9285301054692717,1.2530839131107394,1.1416755233282583,0.967103467103467,1.169083696047549,1.0310811474357655,0.9322190006455218,0.9976717052404592,1.1999195925447412,1.0249337197156816,1.1450349991110134,1.067310389840414,0.8000764771713996,0.8215878585757594,0.9161836114840998,0.8771734697660624,0.8895166908109557,0.8207689238625028,0.803821515124608,0.9369649844264397,0.8150465121985504,0.740541826496428,0.7949691505112486,0.9854979607485603,0.8249315578762424,0.8699634999929133,1.0080438883451943,0.9928446965484002,1.02537116173851,0.7796558030504187,0.8237684315640635,0.8436061050340706,0.854729945335279,0.9203345438415088,0.844276031045051,0.8703396512870317,1.0390585292388554,0.9256648092233989,0.8060044338189113,1.0273431326062905,0.9205212337097677,1.144069786798832,1.042165438001531,1.1249717015686524,0.9542335181357179,0.7638042761902126,0.9418503105684628,1.1470247816694956,0.9419807752213967,1.1213872787082528,0.7547958303619118,1.0247747747747746,1.0231774306595172,1.111278944420811,0.949593824799047,0.9110889335875599,1.1158474543387689,1.1770324191511796,1.0621223302530813,1.010470343855674,6.5,0.17334965819814305,3.1111111111111125,1.625,1.448888888888889,0.8194444444444445,0.506938775510204,0.4670138888888889,0.4638447971781305,0.15125000000000002,7967.675513392703,8380.842764470877,2622.7767309885044,2491.143421690576,14.426227517689563,0.45342226267532915,7.8850547947496645,0.8295659184632931,1.0,0.1,1.7894489514937395,3.545461844238322,4.358694969562843,5.121928094887363,5.221928094887365,5.221928094887365,0.22413793103448273,0.010197038717537826,0.07777777777777782,0.040625,0.04261437908496732,0.024831649831649837,0.01448396501457726,0.013343253968253968,0.014962735392842917,0.005817307692307693,0.4687910385143974,21.702734839476815,10.15625,6.2374010828821325,164.7014347941976,1.0,4.213064405386526,153.36708928486294,,114.91061910843406,115.62972763598493,118.3200204187481,114.80334858842754,166.33453695328132,116.38644566550242,116.93664809735833,142.23186062540418,0.006503620539488993,-0.009431033139949148,-0.2434205322944349,0.08203441536774872,0.1667567486996431,-0.04726872461495692,0.006630926112867756,-0.022428678692617856,-0.005678102872680325,-0.0339385164304663,-0.020490679773939435,0.0005807558153828446,0.016682940364967126,0.03360907666060228,0.07198988495633528,-0.18035682741565084,-0.028752904030498124,-0.15175951000739651,0.016784626881262393,-0.035449880745791876,0.028008660317874676,0.1424921253541851,0.021063272609889373,-0.05919751991173213,-0.168168171276053,-0.03723329965657678,0.10250929712143476,-0.13122424750331724,-0.06801719483192879,-0.1057579752500741,-0.1697127117084145,-0.19253454990627725,-0.07292244478101521,0.03480384490844091,-0.07757131344970922,-0.19644161497686063,-0.05486263102746571,-0.0802432632383629,-0.07758930441380052,-0.030394030394030404,-0.11664963415147146,0.03714027277122481,-0.05390677716322814,-0.022127692486858388,-0.07391632842927763,-0.07255185480171833,-0.04424054517321063,-0.07200667436063515,0.030815575191289073,0.004474321026258459,0.028384117725185457,0.06575711513983118,0.05846916806206207,0.01775967994487962,0.03016059873103455,0.007173441532062757,0.018561854214955646,-0.02572027007476153,0.013047781228000516,0.04440277502198418,0.05912091908858111,-0.046582536660237296,-0.0540629272588467,0.04400696993289584,-0.0576116005496228,0.056910269269839796,0.06204043503900763,0.11409618141938851,-0.015428235368134716,-0.09539726557853202,-0.02167816728804787,0.15794252784462606,-0.16067258618710903,-0.1007378402947732,-0.1054791152694772,-0.12649491596860013,-0.08679432869989015,-0.1410591703937456,-0.1620305156369167,-0.1925231228962696,-0.12190339018344525,-0.03240346950019979,-0.12100360196639072,-0.20588630217127638,0.038382804503582404,-0.002414313377075379,0.1501267139793113,-0.08858858858858862,0.017740003810664404,-0.01817937752877703,0.03520415295351935,0.10562039954156159,-0.015912628210010816,-0.04733727486313627,-0.0024733908956746267,0.027760727409277996,12.124049086382724,24.89550293872647,8.159679396488063,23.073299789497984,41.45445708508496,50.12190015335778,51.99153914368489,53.814589143684884,53.814589143684884,54.656261459655916,41.82332487275512,2.050964944677685,5.479552708244478,5.3024189339786325,12.832936586900793,8298.982726360977,7616.7126857939575,1655.80371544451,96.0,40.0,49.0,60.0,75.0,74.0,76.0,86.0,97.0,404.02620043591037,29.0,4.9344739331306915,5.75890177387728,6.618738983517219,7.459914766241105,8.31996102188653,9.16711966952162,10.027341014703126,10.877348835532215,11.737787538778402,0.8625,1.0193,1.1117200896068486,0.8434485121971527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7558579191616767,1.0123529411764707,1.03534231609614,0.7313127009973541,9.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14.637927532712578,18.173614638842718,0.0,0.0,0.0,4.9839785209472085,4.39041504767482,0.0,0.0,35.33461391738825,42.46456947923127,33.286919228651115,11.66323328280031,345.8261156690472,-874.7461441199384,-55.53677928930715,-21.868653602998457,-54.67163400749615,263.6434633554432,403.22665588477844,17.86366118968989,10.080666397119462,16.801110661865767,0.5,0.8384550155194052,0.21471896171420612,114.30657666983696,0.08552003132367562,58.5612605120258,0.1615449844805947,7.0,0.20689655172413793,0.33624072320947296,0.6661987499688984,0.8190067381312663,0.9624196350581786,0.9812098175290896,0.9812098175290896,4.060800000000002,,2.5203081232492996,1.6662700597280584,1.361677161799972,2.5804554232514523,-5.295379370805948,1.6827194330031396,1.6188157390926403,-1.8963904682429944,98.56750000000002,19.028342580387395,0.0,4.9839785209472085,0.0,13.027703587438928,0.0,92.97455005777395,0.0,5.749511833283905,4.07753744390572,0.0,5.389071729816501,0.0,6.884486652042782,0.0,8.463581421967588,0.0,10.083681848313908,34.5,14.02115345162437,4.045084119557424,0.0,0.0,0.0,0.0,2.2528665660841733,0.0,40.772000000000006,0.0,10.977539801209119,0.0,0.0,0.0,0.0,0.0,-1.3494155999601818,44.46880358427395,9.843390348640755,4.39041504767482,5.749511833283905,10.953283808899059,13.027703587438928,5.817220841045895,27.309296157162734,54.59730361615449,10.045266627482652,0.0,0.0,33.73794048788611,30.234316766467067,34.025437610451064,306.73417856972594,,229.63454872625707,231.13602786013814,236.541961620152,229.41555233068829,334.6553899788463,232.6482454470787,233.75338391774685,285.1660880908983,34.025437610451064,306.73417856972605,,227.35310277125558,229.66991200248157,235.38201440824824,227.07824311431634,337.96445327736865,231.15228609129272,232.3052850996765,286.36011171905136,4.725213666419966,226.3287119618547,,172.7627760594858,172.69344349241527,177.3280945390296,172.66172779582718,255.61775367331114,174.08387400216506,174.95056864456333,215.62865685937447,1.260201392979669,11.360525132212071,,8.50498328615767,8.560593624449561,8.760813393338962,8.496872308544011,12.394644073290603,8.616601683225136,8.657532737694327,10.561706966329567,2.362606833209983,153.36708928486294,,114.91061910843406,115.62972763598493,118.3200204187481,114.80334858842754,166.33453695328132,116.38644566550242,116.93664809735833,142.23186062540418,40.49411764705883,0.0,0.0,11.82321640511277,13.927710030832984,0.0,0.0,41.41369264384559,0.2958949305030649,0.0,5.750632716049383,0.0,0.0,0.0,0.0,0.0,0.0,29.252508039894163,511.0128253395845,71.57795805974958,141.8184737695329,174.34779878251373,204.87712379549453,208.87712379549458,208.87712379549458,709.0,130.9015875371882,98.4567536849059,61.8983590960465,62.25,62.25,1.0,8.430381794429273,5.857980995127572,4.679257243352583,5.118968920555003,,5.128317266691737,5.122703376186401,5.123806698963248,5.128531534366305,5.1112689956716295,5.123726231872771,5.12378489051998,5.119186233956092,0.17330582382787346,0.18959144150203713,,0.1899376765441384,0.1897297546735704,0.1897706184801203,0.1899456123839372,0.18930625909894924,0.18976763821751005,0.18976981075999927,0.18959949014652192,2.5363911616589374,2.6262048090773793,,2.628029360194483,2.6269340758784843,2.627149431696811,2.6280711406045785,2.6246994821435514,2.6271337270211546,2.6271451753907162,2.6262472607491585,268.7600000000001,184.6375369186291,161.88055935102685,,160.44023244918398,161.30548938913216,161.1959014238066,160.39263096425685,162.14853718633123,161.1750062091576,161.1748779089237,161.63833624512296,6.838427293282559,5.995576272260253,,5.942230831451258,5.974277384782673,5.970218571252096,5.9404678134909945,6.005501377271527,5.969444674413245,5.96943992255273,5.986605046115665,6.211646416328937,6.080110548355608,,6.071173262734222,6.076551789733054,6.075872177348951,6.070876525768003,6.081764584362025,6.075742542731288,6.07574174670039,6.078613120202494,19.678342746882365,15.022623920766542,11.776972907310212,1.4157088010619332,-1.3116909410390338,14.02115345162437,0.29177907428403427,0.004115856219030656,0.0,330.88110409618537,210.77049713248897,-533.1311642100752,-33.84797749383007,-13.328279105251877,-33.3206977631297,160.68267062380065,245.754380213549,10.887358065116425,6.1438595053387255,10.239765842231208,2002.0,40.0,2.0171766748170734,0.8899813087438768,0.0,0.0,0.36785113019775795,0.05628826978672305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21941609682128765,0.06962909657806557,0.45549980006068574,0.13346130559968586,19.388540578131753,15.39779194558123,12.918723993369941,8.686739763656828,11.943751785355746,6.6139690942804314,9.321700597585668,4.270730552617021,7.395532416482773,2.8573417895814774,5.956337643682823,1.9673129424133897,3.9737796953790747,1.1016881691376885,2.568570134943482,0.5588733600233745,4.029628505674828,1.3604804999736027,5.440106914455148,1.6190313962737013,7.829106385386857,1.962417698259647,83.05337546051562,55.276959157230976,35.85033888099409,30.862905985929466,27.873170700530835,27.873170700530835,138.0,158.0,50.491309,19.786690999999998,0.525,139.07,9.25,5.916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,18.0,18.0,40.0,0.0,0.0,42.0,18.0,1.0,10.0,32.0,19.0,29.0,23.0,0.0,0.0,0.0,20.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,4.0,0.0,1.0,27.0,7.0,0.0,1.0,3.0,0.0,3.0,6.0,0.0,0.0,3.0,1.0,3.0,3.6888794541139363,7.200448213568552,4.297285406218791,4.81014976667463,5.317507060941178,5.842638209447822,5.900753151666388,6.1077186367440905,6.467164810304751,6.890736273812542 +1712095,CCOc1ccc(/C=C2\NCCc3cc(OCC)c(OCC)cc32)cc1OCC,0,20.0,5.974414999999999,2.9166666666666665,6.166666666666667,162.1426160821953,78.56508235000004,1.4083236008386497,6.044599999999999,2.6995370370370373,7.547554466666664,203.9479833403644,22.758064516129032,6.263774193548387,3.5161290322580645,6.145161290322581,145.2913277332791,85.17203714516135,1.72734550967742,6.406782258064517,2.805555555555556,7.70921232258064,249.78671583262565,18.110091743119266,6.172045871559634,3.1926605504587156,4.743119266055046,155.57728713159892,66.25115564220181,1.3980217722502941,6.266284403669725,2.661824668705403,7.713182275229358,198.0388813134961,16.833333333333332,6.176340909090912,3.0833333333333335,4.393939393939394,159.64824755574563,61.230457045454564,1.3194933930781734,6.248740151515153,2.645622895622895,7.750046000000003,185.31013146262265,18.153225806451612,6.1022096774193555,3.25,3.9596774193548385,150.60307854823904,65.61838788709677,1.5061910589418717,6.220689516129029,2.593413978494622,7.613890838709675,208.32207849016177,15.473684210526315,6.060144736842106,2.8026315789473686,2.875,155.65444398164564,54.35291826973685,1.346029687856125,6.153823026315789,2.5241228070175428,7.617147342105262,181.31733080768623,13.191616766467066,5.964634730538921,2.5508982035928143,2.341317365269461,158.530650638257,44.91580500598802,1.248900377541736,6.044950299401197,2.322355289421157,7.560785868263473,162.61116792214472,11.987951807228916,5.746674698795179,2.3674698795180724,2.1626506024096384,158.56615933002539,40.51200074096385,1.2018256962304938,5.835985542168676,2.1142904953145916,7.352555060240964,151.2562230844642,10.535714285714286,5.707220238095238,2.119047619047619,1.9583333333333333,164.8258065944827,35.3181851547619,1.03800416584578,5.771205357142857,2.040013227513227,7.355784619047618,129.15188157041234,7.278888888888889,0.1123669722222222,0.022653805336991444,0.5141666666666667,3.712222222222223,1.3580042599219022,34.6711447875,0.23259603918090305,0.10725555555555547,0.45786265432098755,0.0704288122222222,51.35065696116841,0.5028315412186377,0.003977947132616713,-0.008073819246332718,0.29362903225806447,1.6759498207885313,-0.1774194836388679,2.313935743951615,-0.02327918356050279,0.005947132616487637,-0.036080993628036725,-0.000263718673835176,-1.0483998660823148,0.6290621814475024,-0.006212446228338248,-0.0038186090230397014,0.14883027522935788,0.6434352701325179,0.017024245100215808,3.0543090762614664,0.011453869192224925,-0.00317696228338417,0.03409283327670173,-0.006719248307849184,4.560935238311622,0.8860101010101014,5.479545454563719e-05,0.0033767913338409094,0.037348484848484825,0.15444444444444458,0.36231581793336476,4.380792916666664,0.06553932714838039,0.0007207070707071978,0.021325056116722703,0.0005624993939393384,11.930511013978851,-0.6216308243727603,-0.00587314157706079,-0.0012133693380981453,-0.135,-0.6485125448028672,-0.26918884957404743,-3.0238504737903207,-0.03887852291078988,-0.005452329749103818,-0.03893344285145366,-0.00420220469534053,-7.135464218598599,-1.0659502923976614,-0.01145101827485368,-0.000844850533157879,-0.10769736842105264,-0.9372222222222224,-0.13617840137285625,-5.08359426973684,-0.027240300916193182,-0.012012353801169481,-0.052565992527615374,-0.0062752929239766365,-7.076087014992378,-1.339168330006654,-0.014562002162341907,0.0003350713601437274,-0.09570359281437124,-0.7954557551563541,-0.01786353791840092,-6.31896906474551,-0.009280533910704455,-0.016318829008649297,-0.08602577252901604,-0.006940677292082519,-5.851043963372133,-0.6228647925033465,0.0028748952476572278,0.0007424970744185857,-0.029427710843373492,0.020910307898259685,-0.2377893406134478,-3.0778937221385547,-0.0405489691296216,0.0015878179384203092,0.00860878699985128,0.002166547215528808,-7.985883980157759,0.4768650793650796,0.0024327499999999063,-0.001089580365675232,0.037619047619047635,0.37488095238095237,-0.03663570117735861,2.238035852678571,-0.005877505794771206,0.003992460317460235,0.020248567019400393,-0.00018610706349203975,1.2203358756994338,,,0.4735632183908046,1.1379310344827587,0.5172413793103449,0.06896551724137931,0.6206896551724138,-0.10344827586206896,0.982954357514862,0.007602774374888344,0.016499326099026275,0.8560332033141465,0.22139752365052442,0.26804154895296983,1.8389875608290085,0.4894390726034943,2.035028311289977,1.6907239359786295,0.07130969883193454,0.2729946764794131,0.0,0.34430437531134767,6.6204218078666806,1200.0,358.46489999999994,175.0,370.0,9728.556964931719,4713.9049410000025,84.49941605031898,362.67599999999993,161.97222222222223,452.85326799999984,12236.879000421864,1411.0,388.354,218.0,381.0,9008.062319463304,5280.666303000004,107.09542160000004,397.2205000000001,173.94444444444446,477.9711639999997,15486.77638162279,1974.0,672.7530000000002,348.0,517.0,16957.92429734428,7221.375964999997,152.38437317528206,683.025,290.1388888888889,840.7368680000001,21586.238063171073,2222.0,815.2770000000004,407.0,580.0,21073.568677358424,8082.420330000003,174.1731278863189,824.8337000000002,349.2222222222221,1023.0060720000004,24460.93735306619,2251.0,756.6740000000001,403.0,491.0,18674.78173998164,8136.680098,186.76769130879208,771.3654999999997,321.58333333333314,944.1224639999997,25831.93773278006,2352.0,921.142,426.0,437.0,23659.475485210136,8261.643577,204.596512554131,935.3811,383.6666666666665,1157.8063959999997,27560.234282768306,2203.0,996.0939999999998,426.0,391.0,26474.61865658892,7500.939436,208.5663630494699,1009.5066999999999,387.83333333333326,1262.65124,27156.06504299817,1990.0,953.9479999999996,393.0,359.0,26321.982448784212,6724.992122999999,199.50306557426197,968.7736000000002,350.97222222222223,1220.52414,25108.53303202106,1770.0,958.813,356.0,329.0,27690.735507873098,5933.4551059999985,174.38469986209103,969.5625,342.7222222222221,1235.771816,21697.51610382927,436.73333333333335,6.7420183333333314,1.3592283202194866,30.85,222.73333333333338,81.48025559531413,2080.26868725,13.955762350854183,6.435333333333328,27.471759259259255,4.225728733333332,3081.0394176701047,31.17555555555554,0.2466327222222362,-0.5005767932726285,18.205,103.90888888888894,-11.000007985609809,143.46401612500011,-1.443309380751173,0.3687222222222335,-2.237021604938277,-0.01635055777778091,-65.00079169710352,68.56777777777776,-0.6771566388888691,-0.41622838351132746,16.222500000000007,70.13444444444445,1.8556427159235231,332.9196893124998,1.2484717419525169,-0.34628888888887455,3.716118827160488,-0.7323980655555611,497.14194097596675,116.95333333333338,0.007233000000024109,0.445736456067,4.929999999999997,20.386666666666684,47.825687967204146,578.2646649999997,8.65119118358621,0.09513333333335011,2.814907407407397,0.07424991999999267,1574.8274538452083,-77.08222222222227,-0.728269555555538,-0.15045779792417002,-16.740000000000002,-80.41555555555554,-33.37941734718188,-374.9574587499998,-4.820936840937945,-0.6760888888888734,-4.827746913580254,-0.5210733822222258,-884.7975631062262,-162.02444444444453,-1.7405547777777595,-0.1284172810399976,-16.37,-142.4577777777778,-20.69911700867415,-772.7063289999996,-4.1405257392613635,-1.825877777777761,-7.990030864197537,-0.9538445244444488,-1075.5652262788415,-223.6411111111112,-2.4318543611110983,0.05595691714400247,-15.982499999999998,-132.84111111111113,-2.983210832372954,-1055.2678338125002,-1.5498491630876439,-2.7252444444444324,-14.36630401234568,-1.1590931077777806,-977.1243418831463,-103.39555555555552,0.4772326111110998,0.12325451435348524,-4.885,3.4711111111111075,-39.47303054183234,-510.9303578750001,-6.731128875517186,0.2635777777777713,1.4290586419753124,0.3596468377777821,-1325.656740706188,80.11333333333337,0.40870199999998424,-0.18304950143343898,6.320000000000003,62.98,-6.154797797796246,375.9900232499999,-0.9874209735215627,0.6707333333333195,3.401759259259266,-0.03126598666666268,205.01642711750486,0.7117109459892522,0.6151632918659481,0.4578623582419786,0.3379617969200381,0.2852712550135185,0.16168543567923407,0.1769147248660242,0.08450278057323854,0.11538984070671357,0.04697572429809209,0.07443507233590617,0.02552237593487462,0.04878896606908515,0.014190358289650692,0.03218790699354802,0.00807968267010614,8.014159871099604,5.67756572643675,3.526500712209279,2.176511221486169,0.4235659909790957,-0.5243394593053394,3.2181225302135243,0.9871441164041644,6.011448976533446,0.9872344046663803,14.540238637326102,10.938495077154563,16.007463665660392,11.68930067725543,2.0079311234598185,0.7762065576726808,3.4697597990683526,2.2262444392576697,3.5147848207074293,1.3598301893465123,3.683162646410596,2.422189288448592,20.913996275891584,14.705843970988038,0.22589811632098183,0.48935654586636157,0.6545064262814702,0.7186511450556851,0.7404785657817137,0.7841334072337712,1.5994874932955645,860.1994311933694,0.0,0.0,9.0,0.0,11.0,1.0,3.0,0.0,0.0,4.526986427321681,2.917644167099361,1.9088220835496803,1.516992500144231,1.3836591668108982,1.1169925001442316,369.7583132435627,1864.1256882580187,52.88093626400922,31.068761470966976,58.398876129100955,,15.0,692.0,0.0,0.0,0.0,26.427527858051672,52.78756765842403,5.563451491696996,0.0,39.827682935685715,29.591909916225042,18.947451815200196,13.733333333333334,33.0,15.0,2.0,18.0,0.0,0.02643678160919537,-3.0,0.11135207496653304,0.047507507507507984,-0.06384456745902506,0.0173180076628352,0.13615988779803612,0.0,0.551111111111111,0.819540229885057,0.43975903614457795,0.503603603603603,0.8022222222222218,28.505676367931,0.220480456871762,0.478480456871762,24.824962896110247,6.420528185865209,7.773204919636125,53.330639264041245,14.193733105501334,0.5778401122019639,0.14563106796116504,0.0,0.2912621359223301,0.4166666666666667,0.23682433789414165,-0.6284334535801612,-0.034338257961930144,-0.010473890893002689,-0.03491296964334229,0.7631756621058583,2.025151305352281,0.04093780705457755,0.033752521755871345,0.048217888222673345,-7.1233482227219245,0.8933627468842481,0.854409715746635,1.378735829238759,0.6015057248915145,0.4956020507671065,1.3477067320378286,0.9002914726924648,1.2634379558004554,0.8279120981944443,0.9790520187724008,0.9087747975635669,1.1087334504032802,0.9388404879708818,1.2688476378657005,1.4589165123552785,0.938694184646038,0.9939478648649388,1.0605487676911614,0.9342755210994391,0.9850477968102452,1.2127801453557725,1.0784821962936952,1.3572610610279237,0.9101596428554355,0.9349110475846852,1.376486575450239,1.3161965268771452,1.1880555964834731,1.2522108241952599,0.7571980544593997,0.923922253020914,0.7060304776856998,1.3260976921917826,1.2478302634018101,1.4376887693952722,0.7319677150316835,1.0507906943534846,0.9621433798807941,1.1176460461337274,1.6117268782349559,1.2614353921464498,1.327849973234692,1.0557571289296088,1.266204906396471,0.9577410123210904,1.0026262442858396,0.9791121980334478,1.1894262436367495,1.139854602350786,1.1595278798091189,1.1728976530095063,1.33999402883221,1.3331672679153732,1.1678473448035422,1.139736578186958,1.1521595407507574,1.1554201516299818,1.1670444395759958,1.1670726351927494,1.1437202436857083,1.1794423669833283,1.2004318932686568,1.051260503237915,1.2024573219848793,1.2594206976648317,1.024894101280339,1.1766168272961248,1.045825598586131,1.2108854496538886,1.2470860365586431,1.1940721160109018,1.1033378697577005,1.0168662744398445,0.6817256197275282,0.6641493727204608,1.013844681806643,0.8273846658709064,1.1860714772165137,1.025167233216412,1.1887919691659896,0.7196212176999721,0.732418204813389,0.6303363319056378,1.1706204945749712,0.900223793532067,0.8426308647082048,0.9015256460744665,0.8424017905379331,0.7970373498097232,0.9798861794766038,0.9025567823904783,0.9607360377970144,0.8428980720279412,0.8282766332910422,0.8192712720655403,0.9393039331200396,5.0,0.1815120906029997,2.88888888888889,1.625,1.8711111111111114,1.0208333333333333,0.7461224489795918,0.4288194444444444,0.291005291005291,0.2025,5505.069895755002,6344.816604572758,2786.7502629550986,2477.541655695328,16.168907453126874,0.4653428351519113,8.644822217579945,0.870357428547934,1.0,0.4166666666666667,1.3799041682868372,2.9892464285091576,3.9980685120588384,4.389898095464288,4.5232314287976205,4.789898095464287,0.16129032258064513,0.007891830026217378,0.0704607046070461,0.035326086956521736,0.04067632850241546,0.022685185185185183,0.018653061224489797,0.012251984126984127,0.009700176366843033,0.0075000000000000015,0.386435679576348,23.658688865764827,12.142772159428912,6.2571900826446285,173.17641161424243,1.0,4.276138405127331,169.70221036236217,,128.3839943174912,126.6884437059482,131.1792497874102,128.41603464875269,187.78730975096124,127.95459093357813,128.45615181885546,157.56200925578116,0.06908081012009983,0.03540139112006808,-0.3564001334976143,0.57107753437549,0.4514680750403106,-0.13064722171716245,0.06673952527768448,-0.10008417874389192,0.05544824774514532,-0.07880309365162137,-0.003744471410409015,-0.020416483996984095,0.08642283060643446,-0.055287119564387865,-0.1685636901277812,0.2894592062807609,0.17332886654273152,0.012536223635406607,0.08809368986750728,0.04924361237001377,-0.029620491609300276,0.07446083002174866,-0.09540482220043857,0.0888194135814196,0.12172326223616108,0.0004876473349951188,0.14906066700974693,0.07263886842492996,0.041604310086800385,0.2668002072056838,0.12635270463426038,0.2817731865907087,0.006719531375080063,0.046575224940212386,0.00798677950388399,0.23233414565661265,-0.0854018839773293,-0.05226750762177511,-0.053561391565276326,-0.26256077795786065,-0.17469658495138593,-0.19822386241227866,-0.08721518981630254,-0.16715040826878338,-0.05083494016568362,-0.08503301696267877,-0.05966598843214085,-0.13895565589344783,-0.14644409451349338,-0.10190733138388396,-0.03729397867555262,-0.20946003582700673,-0.25246932056270577,-0.10027833151325148,-0.14662320211502305,-0.11711420801541193,-0.11199749736923797,-0.1148073380336533,-0.08910121761213817,-0.13779934734512445,-0.18397977362326187,-0.12959325925008827,0.01479095256445012,-0.18613340579780469,-0.21428020941057127,-0.013154257645280318,-0.18225441079244925,-0.0398997934074297,-0.15214903250579487,-0.18788554103979643,-0.09854883353964256,-0.11394292321900998,-0.08557141096825092,0.025584877751904714,0.03277582125269527,-0.05723379742633418,0.005632827628983451,-0.175102057947243,-0.08877392832001985,-0.17433215661116389,0.014804062411460473,0.018802116570564485,0.03076222851370484,-0.1555166857202376,0.06551344396711518,0.02165004495439092,-0.0480970128182418,0.07316508451030333,0.10098559028520117,-0.0269776040168427,0.06455038812232848,-0.02526915684148834,0.037223809030500515,0.044224107007436786,-0.0026424847675241346,0.02376475682915327,13.11036482393996,25.978200523634023,8.442719658568311,12.393287641641129,26.582640691909024,31.544067591670593,33.67196514507662,35.53929847840995,37.27516514507661,59.01582102740934,49.030994143380255,2.0679812661261017,7.916845617902981,0.0,9.984826884029083,8853.421999113923,7466.0991513971985,1748.8188968116337,150.0,41.0,55.0,74.0,97.0,106.0,120.0,134.0,146.0,397.22530847200085,31.0,4.976733742420574,5.820082930352362,6.693323668269949,7.564757012905729,8.449128460502108,9.330165765044532,10.21833478806055,11.103437275110155,11.993417646538601,0.5944444444444443,0.9684666666666668,1.126087867700387,0.5515985346765466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6492872554890219,0.9555555555555555,0.995787812575868,0.6002581823732955,5.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,6.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,24.264240419206526,0.0,22.99804733313562,0.0,0.0,0.0,0.0,0.0,0.0,6.06636706846161,75.5841617857628,17.805247210665403,26.427527858051672,166.36752618777223,-441.4703318731664,-24.12239840517341,-7.357838864552774,-24.526129548509246,536.125839431335,1422.6553563848522,28.758537858835812,23.7109226064142,33.87274658059171,0.4666666666666667,0.93878073064992,0.1846523557304886,60.27321953879485,0.06079911617024257,113.84468528622139,0.06121926935007996,8.0,0.2903225806451613,0.23360923077070833,0.5060609097333738,0.6768482414472353,0.7431825635517881,0.7657550712316256,0.8109000865913006,4.925200000000005,,1.1428571428571428,1.3285248953001396,0.9177863289708527,1.1395624948769625,-4.847358875538426,1.1960679314565485,1.1342421939878375,-1.9153025404755315,117.13770000000007,18.947451815200196,0.0,5.316788604006331,0.0,34.11577042168851,32.97228426396425,47.02218981739904,0.0,22.99804733313562,4.143134726391533,0.0,5.424950017481403,0.0,6.92461239604856,0.0,8.536799721055155,0.0,10.208505978234776,35.66666666666666,10.236656007699477,0.0,0.0,0.0,0.0,0.0,6.59753580361032,0.0,58.10800000000001,0.0,0.0,0.0,0.0,0.0,2.145154714663643,0.0,1.0711665669354162,67.56527206202321,24.264240419206526,0.0,22.99804733313562,32.97228426396425,6.4208216229260096,0.0,44.38530327385348,30.33183534230805,0.0,11.773059419889714,0.0,33.0959120805928,38.957235329341316,37.36270179589138,339.40442072472433,,256.6891709009923,253.28526500532394,262.2952039659259,256.75347878061734,377.2461225624531,255.82669442360756,256.8340800381256,315.7844676634505,37.36270179589138,339.40442072472445,,255.6251314921253,252.04836251659637,261.4407132458496,255.69250680262837,380.42197837746113,254.71311393569982,255.7780614437232,317.03932105203796,4.897272136705461,250.1165940953968,,188.31501140920454,186.36323572014877,191.46067591427172,188.35161342884894,256.69746488783426,187.82341444280692,188.39760325283558,221.81932256584952,1.2883690274445305,11.703600714645667,,8.851350720723872,8.733974655355997,9.044662205721583,8.853568233814391,13.008486984912174,8.821610152538192,8.856347587521572,10.889119574601743,2.448636068352731,169.70221036236217,,128.3839943174912,126.6884437059482,131.1792497874102,128.41603464875269,187.78730975096124,127.95459093357813,128.45615181885546,157.56200925578116,57.33333333333333,0.0,7.925872861556032,0.0,0.0,0.0,0.0,59.74726875455208,4.255362162857133,3.5284774974804733,23.073107718530835,0.0,0.0,0.0,0.0,0.0,0.0,36.01549094239773,659.4872350526268,82.79425009721022,179.35478571054946,239.8841107235303,263.39388572785725,271.39388572785725,287.39388572785725,983.0,136.14938128920454,43.00613056648032,64.23800283921142,48.95,48.95,0.875,8.817890200945513,5.954196310386875,4.358055503955304,5.289486724548023,,5.282921886360278,5.285048603354564,5.276565665434054,5.2828728361733495,5.209909392077248,5.283392381201591,5.282836050390402,5.244182637618412,0.15027777599845876,0.1823960939499318,,0.18216972021931993,0.18224305528808843,0.1819505401873812,0.18216802883356378,0.1796520480026637,0.1821859441793652,0.18216676035828971,0.1808338840558073,2.5367367095409823,2.7304319506595167,,2.7291900692163984,2.7295925527443505,2.727986180928687,2.7291807845031864,2.7152732014504775,2.729279124837822,2.729173821263267,2.721830130208535,319.80000000000103,368.38498028692493,182.24032096101845,,183.0992125217411,182.7999594660929,183.8286854938516,183.10560146852876,192.30877869932485,183.02931788727244,183.11151770967277,188.10229766328922,12.702930354721548,6.284148998655809,,6.313765949025555,6.303446878141134,6.338920189443159,6.313986257535475,6.631337196528443,6.311355789216291,6.314190265850785,6.4862861263203175,6.973839270420102,6.270036997889368,,6.274738887853929,6.273103174273356,6.278715003799899,6.27477378060544,6.323813039607716,6.274357084036349,6.274806090625014,6.301696688340647,23.073107718530835,0.0,3.5284774974804733,4.535950404980889,3.132751965564848,10.236656007699477,3.096172841241384,11.230216897835424,0.0,392.4931832465812,116.87208340137306,-310.1299792585649,-16.945824842455252,-5.168832987642749,-17.22944329214249,376.6248453374875,999.4059494228453,20.202682050738083,16.656765823714085,23.795379748162972,2364.0,46.0,1.340206908719886,0.5783269451738255,0.0,0.0,0.30274943015462097,0.07807389366055059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1916383190435099,0.07613959454956774,0.43860127974755003,0.12981573503575666,20.639617433688315,17.839735464112493,14.193733105501336,10.476815704521181,11.696121455554259,6.6291028628485975,9.73030986763133,4.647652931528119,8.538848212296804,3.4762035980588144,7.220202016582898,2.475670465682838,5.171630403323026,1.5041779787029734,3.862548839225762,0.9695619204127368,3.520551954700958,1.2777201752372795,6.043976267268323,1.9132316851433178,9.725608320842982,2.5869603531506447,100.42588224059786,58.84348039489928,43.95883611326925,37.892928775671855,33.483741314860495,28.578464282472396,144.0,168.0,65.05858299999997,38.61341700000001,0.2833333333333333,149.05,9.13888888888889,6.861111111111111,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,60.0,0.0,0.0,62.0,12.0,1.0,7.0,55.0,13.0,31.0,49.0,0.0,0.0,0.0,24.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,5.0,1.0,1.0,29.0,5.0,0.0,1.0,4.0,0.0,3.0,9.0,0.0,0.0,0.0,0.0,2.0,3.6635616461296463,7.65168468585659,4.204692619390966,4.791649752930709,5.369474560864365,5.938854596835685,6.241736765810445,6.604917266641155,6.956604965189621,7.317565101800285 +3108,OCCN(CCO)c1nc(N2CCCCC2)c2nc(N(CCO)CCO)nc(N3CCCCC3)c2n1,0,20.42105263157895,6.157884210526316,2.9210526315789473,6.157894736842105,169.36179306342055,80.21607710526318,1.2759333183415789,6.196410526315789,3.8574561403508767,7.693827578947369,187.103051484895,23.037974683544302,6.468987341772152,3.6835443037974684,5.772151898734177,152.42536713998743,86.04737274683548,1.5969307228354435,6.580981012658227,2.869198312236287,7.883255443037973,233.44875783575756,17.986301369863014,6.342350684931506,3.2465753424657535,4.657534246575342,163.69530205176227,65.03528112328769,1.3238629938033015,6.407567123287668,2.6426940639269407,7.824196712328765,185.1464549904861,15.265,6.0830424999999995,2.945,4.065,167.29676888250972,54.98205470000003,1.17393990979772,6.1367245000000015,2.4211111111111108,7.628831120000001,158.70524782409427,16.396039603960396,6.16038415841584,3.0594059405940595,4.178217821782178,167.32647204805917,59.456213435643555,1.2117293781819405,6.219100990099008,2.5156765676567647,7.6790520792079215,167.7722655034284,18.483091787439612,6.447908212560391,3.207729468599034,4.628019323671498,167.16687533918247,67.34635298067633,1.2752753093872848,6.494339613526573,3.225979602791198,7.922952869565215,180.6710389927627,18.440366972477065,6.461999999999997,3.3394495412844036,3.770642201834862,164.474376320221,66.3137070733945,1.3183956416769915,6.523711926605503,3.059633027522935,7.930924293577982,187.13074814221162,17.06530612244898,6.469913877551021,3.089795918367347,3.024489795918367,166.805424884569,59.789086616326536,1.297197284827723,6.524383673469387,2.7265306122448965,7.936450824489798,180.33862912778235,13.953333333333333,6.144966666666668,2.5,2.1866666666666665,164.2685060714563,47.35895647333334,1.2059810764162198,6.206957333333334,2.593333333333333,7.676020239999996,157.35036241426786,7.612188365650968,0.13215124653739602,0.022931519593600673,0.510387811634349,3.6648199445983374,1.4104517699291126,36.12717604986149,0.2019905388266205,0.12407700831024925,1.3226569713758078,0.07680862049861492,46.69646186505424,0.3291840527367719,-0.008901279848521888,-0.012193487184730923,0.23744696518110714,1.1499701953083898,-0.6591188920226436,1.5867246496721534,-0.02337688383187687,-0.005241365405518975,-0.11798786189324062,-0.00865712149794876,-1.8465155578561547,-0.18969377300497087,-0.0024449740067543466,-7.241293872123654e-05,0.1273194702690396,0.7050430691002921,0.08360081788531291,-0.8688199337836261,0.0021870993085698924,-0.0031822714681439316,-0.06409532754019144,-0.0025503681554282483,-0.6465318366295297,1.2317590027700835,0.01772367451523546,0.0017936083532706182,0.12329639889196682,0.9370221606648198,-0.018265161518193584,5.8645537564542956,0.024809651196878474,0.017130018005540176,0.04957256078793474,0.0084712363434903,6.337980778000581,1.0339815144949396,0.001143698746606001,-0.004810198266544754,0.0742917089492883,0.40240256712651845,-0.0941292458360161,4.947944338882643,0.01170629525131283,0.004295268917473492,-0.02271776692904746,-0.0018342088258687464,5.626591065783652,0.48188740348200804,0.018994240368273966,0.007725703327577852,0.007918824521257422,-0.21681587645697017,0.313975771507083,2.2607261718522125,0.021100130220229777,0.015627517497022625,0.06919473922113534,0.011337427810563745,3.1879699705960753,-0.9284606978576331,-0.02331754301252875,-0.0036011003131232126,-0.17552542631324802,-1.4716765356171697,-0.26725576851929295,-4.357368831126581,-0.014851584587973412,-0.020712450125797206,-0.03149328233669637,-0.011583670233042803,-3.8210621586212885,-2.292532082084912,-0.037538120866074776,-0.0017727201941158109,-0.27913109842274847,-1.7907060885295951,0.0867744392812749,-10.823173352976418,-0.019346735569293283,-0.036535826785007455,-0.162658761565568,-0.017338138006670844,-8.201925686673485,-1.8932409972299171,-0.0010311763619574733,0.0031724879503541993,-0.20266851338873498,-0.7623638042474604,0.06275711710325424,-9.152657060738685,-0.04505393128730573,-0.005455745152354503,0.1306909818405663,0.004694300203139424,-12.725757396774206,,,0.4592592592592593,1.0138888888888888,0.3055555555555556,0.027777777777777776,0.7083333333333334,-0.4027777777777778,1.213933849632052,0.006124457135326722,0.015680012690882275,0.8793914270177255,0.18571603228575306,0.3057765539781729,2.0933252766497774,0.49149258626392595,2.049365731432826,1.374624872644408,0.4833157498882092,0.19142510890020825,0.0,0.6747408587884175,6.635753312631595,1552.0,467.9992,222.0,468.0,12871.496272819963,6096.421860000002,96.97093219396,470.92719999999997,293.16666666666663,584.730896,14219.83191285202,1820.0,511.05,291.0,456.0,12041.604004059007,6797.742447000002,126.15752710400004,519.8974999999999,226.66666666666669,622.7771799999998,18442.451869024848,2626.0,925.9831999999999,474.0,680.0,23899.51409955729,9495.151044000002,193.28399709528202,935.5047999999996,385.8333333333333,1142.3327199999997,27031.38242861097,3053.0,1216.6084999999998,589.0,813.0,33459.35377650194,10996.410940000005,234.78798195954397,1227.3449000000003,484.2222222222222,1525.7662240000002,31741.04956481885,3312.0,1244.3975999999998,618.0,844.0,33799.947353707954,12010.155113999997,244.76933439275197,1256.2583999999997,508.1666666666665,1551.1685200000002,33889.99763169254,3826.0,1334.7170000000008,664.0,958.0,34603.54319521077,13940.695066999999,263.98198904316797,1344.3283000000006,667.7777777777779,1640.0512439999995,37398.90507150188,4020.0,1408.7159999999994,728.0,822.0,35855.41403780818,14456.388142000002,287.41024988558416,1422.1691999999996,666.9999999999998,1728.941496,40794.50309500213,4181.0,1585.1289000000002,757.0,741.0,40867.329096719404,14648.326221000001,317.8133347827921,1598.474,667.9999999999997,1944.4304520000005,44182.96413630668,4186.0,1843.4900000000005,750.0,656.0,49280.55182143689,14207.686942000002,361.7943229248659,1862.0872000000004,777.9999999999999,2302.806071999999,47205.10872428036,578.5263157894735,10.043494736842097,1.7427954891136512,38.78947368421052,278.52631578947364,107.19433451461256,2745.6653797894733,15.351280950823158,9.429852631578942,100.5219298245614,5.837455157894734,3548.9311017441223,26.00554016620498,-0.7032011080332292,-0.9632854875937429,18.758310249307463,90.8476454293628,-52.07039246978884,125.35124732410013,-1.8467738227182728,-0.414067867035999,-9.321041089566009,-0.6839125983379521,-145.87472907063622,-27.69529085872575,-0.3569662049861346,-0.010572289053300534,18.58864265927978,102.93628808864266,12.205719411255686,-126.8477103324094,0.3193164990512043,-0.46461163434901404,-9.35791782086795,-0.37235375069252424,-94.39364814791134,246.3518005540167,3.5447349030470923,0.35872167065412364,24.659279778393365,187.40443213296396,-3.6530323036387164,1172.910751290859,4.961930239375695,3.426003601108035,9.914512157586948,1.69424726869806,1267.5961556001162,208.86426592797778,0.23102714681441222,-0.9716600498420404,15.006925207756236,81.28531855955673,-19.014107658875254,999.4847564542939,2.3646716407651915,0.8676443213296453,-4.588988919667587,-0.37051018282548676,1136.5713952882977,99.75069252077566,3.931807756232711,1.5992205888086155,1.6391966759002863,-44.880886426592824,64.99298470196618,467.970317573408,4.367726955587564,3.2348961218836836,14.323311018775016,2.3468475567866953,659.9097839133876,-202.40443213296402,-5.083224376731267,-0.7850398682608604,-38.264542936288066,-320.825484764543,-58.26175753720587,-949.9064051855946,-3.2376454401782038,-4.515314127423791,-6.865535549399809,-2.525240110803331,-832.9915505794409,-561.6703601108035,-9.19683961218832,-0.4343164475583737,-68.38711911357338,-438.7229916897508,21.25973762391235,-2651.6774714792227,-4.739950214476854,-8.951277562326826,-39.85139658356416,-4.247843811634357,-2009.4717932350038,-567.9722991689752,-0.30935290858724196,0.9517463851062598,-60.800554016620495,-228.70914127423814,18.827135130976274,-2745.7971182216056,-13.51617938619172,-1.636723545706351,39.20729455216989,1.4082900609418272,-3817.727219032262,0.7036069966111194,0.585957922426593,0.45368546424362394,0.33917986577440506,0.280565900698056,0.17991501842551016,0.1726575612670938,0.09499819560821625,0.1096772053650866,0.05004720278142207,0.06869753532461904,0.025550777924622358,0.040669228399415044,0.011271367411730928,0.025543432443366293,0.006086460065682866,8.009504823438553,5.735318725105083,3.516187702256449,2.2218552211292444,0.45294760193101147,-0.42405386487608343,3.279830062699587,0.987143611722226,5.085627168106144,1.8264672001517341,14.565900101859038,11.010789284596427,16.00524943184704,11.75695949415985,1.9556922386290914,0.7873381713346986,3.457865093661129,2.267521584048498,6.005872694037619,1.321555016707805,3.6715182160505817,2.460841805380002,20.829880209499606,14.707202809623647,0.24685526324055546,0.4265305445265697,0.5965692092483889,0.66453638524055,0.693353872566721,0.7221713598928919,1.6424985176449116,879.5223205537839,0.0,2.0,12.0,0.0,2.0,6.0,0.0,0.0,0.0,4.669950313326345,3.521408882319082,2.434467763271761,1.9999999999999991,1.8157894736842097,1.6315789473684212,493.2137673622758,3013.149394518233,76.3621434289725,39.64670255945044,71.86257751726399,,13.0,742.0,0.0,20.426109579362823,26.427527858051672,49.10910562085581,63.4980376710244,12.841643245852019,9.799819461700956,0.0,9.799819461700956,19.935914083788834,16.533333333333335,36.5,11.0,1.0,25.5,0.0,0.040740740740740695,-14.5,0.13075335397316784,0.006972559604138562,-0.12378079436902928,0.057407407407407574,0.18857627118644038,0.0,0.571929824561402,0.8740740740740738,0.4411764705882341,0.5649572649572634,0.8166666666666662,43.701618586753874,0.220480456871762,0.564480456871762,31.65809137263812,6.68577716228711,11.007955943214224,75.35970995939199,17.693733105501334,0.5254237288135596,0.08064516129032256,0.0,0.2782258064516129,0.75,0.17247603010088344,-0.6902196300324669,-0.04897889014210234,-0.0090818372372693,-0.03834553500180372,0.8275239698991166,3.3116096654861558,0.05243933465571491,0.04357381138797574,0.05709671837045096,-3.460373016406323,0.9288112873804657,0.9687925912328984,1.6063776163938108,0.6852961887913711,0.6203536266827406,1.9192118566999006,0.9336800120219643,1.4166990982107732,0.932810529119791,0.9759190456649478,1.030861034564482,1.213466220578715,1.0211349225339479,1.0103861738437847,1.1483886682060804,0.9800003717403023,0.881596931009847,1.1789096208008445,1.0219300291893079,1.0657118870375633,1.0069957918545145,0.8409305672687674,0.9928019709861857,1.050606638130644,0.8096001637554587,0.75081061897096,0.9302692140481017,1.0054274084124832,0.8199404761904763,1.0915518911365256,0.8116094073782819,0.8835217114337597,0.7520597380547333,0.6266252890614775,0.7165648192334139,0.8680904177375982,0.8388076116563624,0.8688903387924034,1.155684792922742,1.1199067667960827,1.065100132462226,1.2125772103056118,0.8406782601933235,0.9449440957733418,0.8461187108858639,0.6074935016517491,0.8122856724142936,0.8809966202057485,0.9663483851233048,0.9824695282644635,0.8305315981237767,1.3824159833244842,1.3984055780122036,0.9766585313508893,0.9656883215070763,0.8981620585022957,0.979778478798947,0.9673744944651752,0.9510661147594485,0.917852096332545,1.1441598894275073,1.2725545072004925,1.517607214687102,1.951252909763111,1.7515186502735653,1.4528027105773675,1.1425041259909563,1.1193100402427314,1.2424187466980259,0.9509807375075605,1.217028542253774,1.0937476645517632,1.3217961857231981,1.3612405445633373,1.4084220711429967,1.933514246947083,1.7519320653431443,1.2162941815063377,1.3201262513584386,1.100051115071612,1.3516929483539764,0.856922026195181,1.2327110556853107,1.162442554311689,1.212995815138283,0.8851724656546474,0.7700769069417944,1.3147896879240164,1.1264644746787607,1.1168345409703586,1.2209293401794787,1.290412193761478,0.9233150654807353,0.6059346684701195,0.7732729208026916,1.3094937168455398,5.0,0.21426385062748698,3.555555555555557,1.75,1.9111111111111114,1.9305555555555556,1.3779591836734693,0.7916666666666667,0.4766943814562861,0.37000000000000005,7985.491591648313,9254.409435496415,3526.943995568953,3108.2176132893446,12.877190274615549,0.4418831792706917,7.186976495994799,0.7917395836471466,0.0,0.75,1.57797720011724,2.7265186311245033,3.813459750171824,4.247927513443586,4.4321380397593755,4.616348566075164,0.12820512820512822,0.006695745332108968,0.06837606837606842,0.029166666666666667,0.028956228956228958,0.02574074074074074,0.01766614338042909,0.01028138528138528,0.006809919735089803,0.007115384615384615,0.32901341128923073,28.994082840236686,14.96301775147929,7.358796296296297,211.7652250166962,0.0,4.498688011305794,211.47798219550566,,164.81644966509137,159.18301840062543,155.39603651660056,164.8676701384142,258.9296693646279,162.46783308460743,165.15157711810798,227.780735938971,0.04324433880566765,-0.06735676039198778,-0.5317348087186367,0.46522851793964554,0.31378627400327197,-0.46731047886576793,0.04392052806679964,-0.11573256830579835,-0.042242841577975226,-0.08920518656512386,-0.11271028488403687,-0.039542943600144854,-0.024919742378018375,-0.018501331397297646,-0.003157790674345204,0.24945632980799617,0.192381366549664,0.05927236908605147,-0.024048930162283114,0.01082773144363558,-0.025647551560775854,-0.0484595242207966,-0.03320419165026195,-0.013845413780982157,0.16181404657933052,0.13411658973810764,0.07821585246235259,0.24157394843962024,0.25568027210884353,-0.012949866069586743,0.16233081014580933,0.12282580828290156,0.13805956670640626,0.03747952935701092,0.11029017691631451,0.13572721625712014,0.1358323605286293,0.00865446809298434,-0.20976360711337683,0.1455593320526083,0.10980145633610974,-0.06673694758151631,0.1369590673805686,0.057954671141112114,0.03461776662710432,-0.01717585694605063,-0.023880246956158032,0.12049287764121519,0.06330471348508186,0.14373107228238666,0.33690324341758,0.015515308831337477,-0.05916139939604402,0.2226065280650206,0.06257688585268983,0.10446098288960538,0.12595014749184383,0.05231495445804063,0.14760618973449982,0.06827005394560362,-0.12197027362685794,-0.1764458801826767,-0.1570371426291411,-0.34390599131116717,-0.4015685785017372,-0.18948238728696468,-0.12061194113574475,-0.07352613976004756,-0.166932217401685,-0.02381061984948186,-0.15081211142506706,-0.08182765901330136,-0.30116596857083466,-0.28405423217443715,-0.0773049595287401,-0.5469000083072576,-0.48862048220648824,0.06152244346904259,-0.2995853685889715,-0.09578040477380795,-0.2944608939445992,-0.12297879577678618,-0.22573166780131798,-0.1756434076392301,-0.24871179039301322,-0.007803001401622588,0.13834617184460474,-0.39708729081863414,-0.20802217183169558,0.044494337517409985,-0.2533454883965052,-0.22304971088758757,-0.04397063748275302,0.09880943031254998,0.061116840436212176,-0.27252080539955537,25.770366326870395,23.728707695314107,7.080123647056091,15.164597073425991,26.453855297958,31.899940029807816,33.206541429922595,34.313409850975226,35.36775195623838,73.77716633158174,49.48649541519868,17.39936699597553,6.891303920407497,0.0,24.29067091638303,8872.883407416182,5732.89648111859,4340.510613555839,336.0,52.0,72.0,100.0,139.0,168.0,223.0,276.0,317.0,504.31725176000117,39.0,5.209486152841421,6.066108090103747,6.949856455000773,7.840312983320164,8.743053050224676,9.649949224651184,10.563155506021905,11.478965290886633,12.398200133313194,0.5964912280701755,0.981894736842105,1.1509110956658632,0.5528221936908712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6205461708162622,0.966357069143447,1.0050599915666807,0.5757823818655128,0.0,4.0,0.0,0.0,0.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,18.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,40.02574850276473,11.033401435232523,11.635725555670057,11.896678561972989,0.0,0.0,9.967957041894417,9.967957041894417,0.0,0.0,38.524929737556064,52.358051247300594,26.427527858051672,129.864621224438,-519.6960456673853,-36.87831296080429,-6.838105864044542,-28.872002537076963,623.0783885867138,2493.4533488508478,39.48383046816822,32.808596695405896,42.99057498018703,0.46153846153846156,0.8045491140210148,0.0985884842384444,202.8181919985024,0.05692479463328864,57.68404862968185,0.19545088597898524,7.0,0.3076923076923077,0.25256010040480253,0.4363876861980054,0.6103559527485637,0.6798938534903575,0.7093773143530877,0.7388607752158177,-0.017599999999997396,,2.1428571428571432,2.6281991624011165,2.4945334271743875,2.1370637442522753,-8.474631602811153,2.324357405140759,2.1160831457724334,-4.150574938179533,140.02519999999993,20.426109579362823,0.0,19.935914083788834,0.0,38.524929737556064,98.3852180287542,0.0,0.0,0.0,4.3694478524670215,0.0,5.659482215759621,0.0,7.172424577124845,0.0,8.795884972029885,0.0,10.482597797038709,45.333333333333336,0.0,19.70210837112623,0.0,0.0,0.0,1.305648148148149,2.349613672629546,0.0,74.62399999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.4692432706056,19.599638923401912,23.532404117643047,0.0,119.14760276850396,0.0,0.0,38.524929737556064,0.0,0.0,11.033401435232523,0.0,42.014486720506206,47.161508982035926,47.39041423730114,422.9559643910113,,329.56588159119985,318.30153475789086,310.79732441630995,329.66850729546695,518.6608339259299,324.8722974046457,330.2357802295344,455.8661689458484,47.39041423730114,422.95596439101143,,327.7209053442074,316.0690949897295,308.73631728280645,327.8283687669431,526.3339703320671,322.88320126512565,328.4123559973508,459.7120468161213,5.054435411050066,277.0681351674518,,209.83741125201976,202.6060701961727,197.46758702096164,209.9023659432819,330.50804594059593,206.8077770174957,210.26937616645404,290.96694230228286,1.3164003954805872,11.748776788639203,,9.154607821977773,8.841709298830303,8.633259011564165,9.157458535985192,14.407245386831384,9.02423048346238,9.173216117487065,12.662949137384679,2.527217705525033,211.47798219550566,,164.81644966509137,159.18301840062543,155.39603651660056,164.8676701384142,258.9296693646279,162.46783308460743,165.15157711810798,227.780735938971,73.44313725490197,0.0,0.0,0.0,0.0,0.0,38.57728474630906,76.38455935906774,10.988199577100957,0.0,0.0,0.0,0.0,8.077145484686069,0.0,0.0,0.0,43.759461021778975,605.7796314518785,119.92626720891025,207.21541596546226,289.82294101305865,322.84249102171253,336.84249102171253,350.8424910217125,1758.0,153.8990868863637,147.1633783592734,72.47983741442007,145.44,145.44,0.8571428571428571,9.359422536590014,6.285402218862249,4.717648078418385,5.886299655156079,,5.856162699317967,5.854582545123982,5.84910039386517,5.856164492647516,5.8495296868706115,5.85534521864625,5.856269031491731,5.858090105941469,0.13104577995606626,0.16350832375433552,,0.16267118609216577,0.1626272929201106,0.16247501094069916,0.16267123590687546,0.16248693574640588,0.16264847829572918,0.1626741397636592,0.1627247251650408,2.8322442324018917,3.0535614037899346,,3.0484284050886026,3.0481585411011975,3.0472217160541866,3.048428711318017,3.0472951080672126,3.0482888021136874,3.048446562235848,3.0487574754395563,387.40000000000157,503.0078076117093,258.5005520599317,,263.6037472070885,263.7398961637535,264.47304484432027,263.60433515675845,265.04019397583784,263.68546548333177,263.5934838786776,263.8379108031997,13.972439100325259,7.180570890553658,,7.3223263113080135,7.3261082267709305,7.346473467897785,7.3223426432432905,7.36222761043994,7.3245962634258825,7.3220412188521555,7.328830855644436,7.501539537532211,6.83583167503663,,6.855380863494265,6.855897221134683,6.858673181715916,6.855383093921642,6.860815335327259,6.855690819681233,6.8553419280530035,6.856268785818714,0.0,27.779253855812296,38.57728474630906,1.305648148148149,2.349613672629546,0.0,6.609832638901903,4.3783669381990515,0.0,462.3869663783617,97.78065877271354,-391.30150481175485,-27.767267957465588,-5.1487040106809845,-21.73897248954194,469.14251725076275,1877.428269307453,29.729074151575837,24.703003543519124,32.369452919094016,3652.0,60.0,1.5443310539518174,0.7484597134749391,0.0,0.0,0.46941609682128765,0.12958203932499368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3152352563430426,0.18311388300841897,0.3888686400594718,0.12509796116670632,25.329851878000298,21.094485207357344,17.693733105501334,13.228014765201797,14.589426836298912,9.355580958126529,12.431344411230754,6.83987008379157,10.96772053650866,5.004720278142207,9.548957410122048,3.5515581315225075,6.832430371101728,1.893589725170796,5.696185434870683,1.3572805946472792,4.44659526271703,1.8081388710776871,7.9050873783794255,2.6371443432048913,13.58924278021768,3.569976692857835,121.41595265002866,74.7688782940414,55.53835789659446,49.298316669174234,45.517985270967706,41.849441438904414,182.0,215.0,78.75971999999997,51.528280000000066,0.2894736842105263,261.12,10.61111111111111,8.444444444444443,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,10.0,11.0,76.0,0.0,0.0,79.0,11.0,0.0,5.0,74.0,11.0,39.0,68.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,12.0,4.0,4.0,36.0,12.0,0.0,8.0,4.0,0.0,4.0,12.0,0.0,0.0,0.0,2.0,2.0,3.817712325956905,8.150441982355664,4.310799125385514,4.914491433543353,5.557310570755944,6.216980282567247,6.683947444580764,7.196803605184065,7.620218602102181,7.9812473897085034 +4235,O=C(NCCN1CCOCC1)c1ccc(Cl)cc1,0,28.571428571428573,6.139677142857143,2.942857142857143,6.331569664902998,164.38482396068952,115.8210646,1.4935122109266574,6.2556714285714285,3.6612624382171703,7.754940714285714,213.07212105292203,25.52777777777778,6.3598333333333334,3.5833333333333335,5.530864197530864,148.33017986657498,97.05405488888886,1.7578555905555553,6.516861111111112,2.7968678555098307,7.807326166666665,253.69881594636868,20.4375,6.338156250000001,3.0625,3.8229166666666665,159.63564478300458,75.29228990624999,1.4499159780170934,6.4440328125,2.7234278549382718,7.871120312500001,201.67034112083144,16.03614457831325,6.079444578313253,2.566265060240964,2.706827309236948,163.24056245390742,56.68433624096385,1.2685553203323374,6.1825987951807235,2.4941990182954035,7.701836481927709,165.6415794647123,12.876543209876543,5.879802469135803,2.2222222222222223,2.0631001371742115,163.40191230113658,43.65098519753086,1.1252212293948147,5.974333333333333,2.4480897220952094,7.532274691358024,140.87080969868322,11.837837837837839,5.888702702702702,2.081081081081081,2.1771771771771773,170.312557519401,40.87595668918919,0.9947617466455675,5.937008108108108,2.385037815593371,7.548333972972974,125.68934844067327,16.12280701754386,5.964457894736841,2.3508771929824563,2.4171539961013644,166.37431202330845,58.86873164912281,1.1239884096365265,6.054349122807019,2.4099523500108297,7.615536701754387,146.9010773729139,15.53061224489796,6.055897959183672,2.5510204081632653,2.6031746031746033,163.0090274247924,55.084076857142854,1.2163546344528164,6.151091836734694,2.7115142353237593,7.701907714285716,161.11787552410155,17.523809523809526,6.211190476190477,2.5952380952380953,3.084656084656084,158.2714805376923,61.48757392857144,1.3834958862713336,6.3411333333333335,3.104203409758965,7.844542904761904,181.71821321037692,12.111020408163267,0.120365387755102,0.016903187079554377,0.4734693877551021,3.606449987402368,1.3999440817765978,56.86455432979592,0.2500016908210563,0.12368048979591835,1.1607365726354557,0.08473133551020406,51.14256130802096,0.2897732426303859,-0.000446578231292553,-0.007473842923218345,0.07256235827664398,0.6541810139693736,-0.3709067715441278,1.3522525241723438,-0.024084057538336326,0.0012227641723355717,-0.01076989846896437,-0.003664656938775505,-1.8378548253201938,-0.503877551020408,-0.01854574489795921,-0.001997480537649915,-0.09088010204081631,-0.5337537792894936,0.06900312106638404,-2.2807458217601995,0.01522912239058837,-0.018210623724489807,-0.002375596929443945,-0.011137422117346921,-0.46582586655108815,-1.0359773789033686,-0.00965265109417261,0.0019421802512488585,-0.07622326038849273,-0.31820706863736126,0.16224762655337946,-4.824596356646176,0.0024761102247398865,-0.012241212687484628,0.01489565776894987,-0.0067666590902385,-2.1754600596585245,-0.9163114134542709,-0.006072195515243121,-0.0008802743500476928,-0.0032753842277651823,0.012466989539300088,-0.35582180194078644,-4.388013017626609,-0.044534783082584385,-0.0066871564625850255,-0.036797656690747894,-0.005807852617787863,-7.839390462456665,1.5430336458907885,-0.0010604456701599466,-0.0017113185897535152,0.06977385548814118,0.3341096198239056,0.1214768648672082,7.417625109586315,0.04861615253568413,0.0017910546056260337,-0.09723584380550868,-0.0019960710314396095,9.10115771359737,2.6173003938417474,0.021368446831364123,0.004573346740335051,0.02327246688148944,3.5361773039376987e-05,0.10474998976354569,12.100916032108838,0.011323926377509052,0.029514948800572857,-0.00982268908493936,0.022321208349445034,5.328389848044953,-0.30052478134110794,-0.018691043731778424,-0.0028414528916036867,-0.04664723032069972,-0.720872475974517,0.02677557993111677,-1.243817362448981,0.017915377212187385,-0.017487486880466478,-0.2426457959236997,-0.014512988571428567,2.723893958138888,-3.109659863945578,-0.007433142857142859,-0.0009061277346266035,-0.06122448979591837,-0.6885865457294029,0.0226163055436884,-14.665544959727884,-0.025802512667094383,-0.01619960544217686,-0.07555854166083446,-0.002110910340136041,-10.268183464241067,,,0.48227513227513225,1.0972222222222223,0.4444444444444444,0.027777777777777776,0.6527777777777778,-0.20833333333333334,0.7316891471374497,0.008899631497200348,0.018455187052755905,0.7010042069263013,0.22952846467336188,0.25680599062794307,1.432693354063751,0.486334455301305,2.01464486472669,1.473795318573301,0.23355477514111403,0.20961234385227867,0.09768242715999614,0.5408495461533889,7.659938727542867,1000.0,214.8887,103.0,221.60493827160494,5753.468838624133,4053.7372609999998,52.27292738243301,218.9485,128.14418533760096,271.42292499999996,7457.524236852271,919.0,228.954,129.0,199.11111111111111,5339.886475196699,3493.9459759999986,63.28280125999999,234.60700000000003,100.6872427983539,281.06374199999993,9133.157374069273,1308.0,405.64200000000005,196.0,244.66666666666666,10216.681266112293,4818.706553999999,92.79462259309398,412.4181,174.2993827160494,503.7517000000001,12906.901831733212,1331.0,504.5939,213.0,224.66666666666669,13548.966683674314,4704.799908,105.290091587584,513.1557,207.0185185185185,639.2524279999999,13748.25109557112,1043.0,476.264,180.0,167.11111111111111,13235.554896392063,3535.7298009999995,91.14291958097999,483.921,198.29526748971196,610.11425,11410.535585593341,876.0,435.76399999999995,154.0,161.11111111111111,12603.129256435674,3024.820795,73.612369251772,439.3386,176.49279835390945,558.576714,9301.011784609822,919.0,339.97409999999996,134.0,137.77777777777777,9483.335785328582,3355.517704,64.06733934928201,345.0979000000001,137.3672839506173,434.085592,8373.361410256093,761.0,296.7389999999999,125.0,127.55555555555556,7987.442343814828,2699.119766,59.601377088188,301.4035,132.8641975308642,377.3934780000001,7894.775900680976,736.0,260.87,109.0,129.55555555555554,6647.402182583077,2582.4781050000006,58.10682722339601,266.3276,130.37654320987653,329.470802,7632.164954835831,423.88571428571436,4.21278857142857,0.5916115477844032,16.571428571428573,126.22574955908287,48.998042862180924,1990.2594015428572,8.75005917873697,4.328817142857142,40.62578004224095,2.965596742857142,1789.9896457807336,10.431836734693892,-0.016076816326531906,-0.2690583452358604,2.6122448979591835,23.550516502897448,-13.352643775588602,48.68109087020437,-0.8670260713801078,0.044019510204080584,-0.38771634488271733,-0.13192764979591817,-66.16277371152698,-32.24816326530611,-1.1869276734693894,-0.12783875440959455,-5.816326530612244,-34.16024187452759,4.416199748248578,-145.96773259265277,0.9746638329976557,-1.1654799183673477,-0.1520382034844125,-0.712795015510203,-29.81285545926964,-85.98612244897959,-0.8011700408163267,0.16120096085365526,-6.3265306122448965,-26.411186696900984,13.466553003930494,-400.44149760163265,0.2055171486534106,-1.0160206530612241,1.2363395948228393,-0.5616327044897955,-180.56318495165755,-74.22122448979594,-0.4918478367346928,-0.07130222235386312,-0.2653061224489798,1.0098261526833072,-28.821565957203703,-355.4290544277553,-3.6073174296893353,-0.541659673469387,-2.9806101919505794,-0.4704360620408169,-634.9906274589898,114.18448979591835,-0.07847297959183605,-0.12663757564176012,5.163265306122447,24.724111866969015,8.989288000173406,548.9042581093873,3.5975952876406256,0.1325380408163265,-7.1954524416076415,-0.1477092563265311,673.4856708062055,149.1861224489796,1.218001469387755,0.2606807641990979,1.326530612244898,0.002015621063244488,5.9707494165221044,689.7522138302038,0.6454638035180159,1.682352081632653,-0.5598932778415435,1.272308875918367,303.71822133856233,-14.72571428571429,-0.9158611428571428,-0.13923119168858064,-2.2857142857142865,-35.32275132275133,1.3120034166247219,-60.947050760000074,0.8778534833971819,-0.8568868571428574,-11.889644000261285,-0.7111364399999998,133.47080394880552,-130.60571428571427,-0.3121920000000001,-0.03805736485431735,-2.5714285714285716,-28.920634920634924,0.9498848328349128,-615.9528883085711,-1.083705532017964,-0.6803834285714281,-3.1734587497550475,-0.08865823428571372,-431.26370549812486,0.7108156917220598,0.6083136310740643,0.4607379050222889,0.34063289566447924,0.30967397075071396,0.1938851195011261,0.20935123658889926,0.11341713685535246,0.13854571850867659,0.06392357358025104,0.09176125972679167,0.03675637185196229,0.06492630455505134,0.02087145675511199,0.041309552719259145,0.012010411665917875,17.00110243023918,5.694250076717506,3.543866412126894,2.191113906311762,0.39412681043268727,-0.4144605214407182,3.1362095032941584,0.9779990156556221,6.02202856252295,0.7740049420534082,14.543729784611154,10.95403260391663,35.45051710743688,11.705630998588013,2.2077521326179923,0.7518613060379331,3.4890844661365206,2.2418715135291025,7.008269183797859,1.304718643238423,3.702016085516074,2.4380893886563446,22.455860009538494,14.702509933148033,0.31101682335037245,0.5932616558411793,0.7275822015562315,0.8349546728185788,0.8349546728185788,0.8349546728185788,1.5741456827286897,388.4826469484601,0.0,1.0,6.0,0.0,5.0,0.0,1.0,0.0,0.0,3.474073846773999,1.9719871431043972,1.257142857142858,0.6857142857142859,0.6857142857142859,0.6857142857142859,117.07742344102289,758.6000453830005,45.470714038246484,21.67428701094287,50.091464045673675,,12.0,351.0,0.0,4.794537184071822,5.907179729351506,17.130841211350898,32.84803314676356,0.0,24.26546827384644,0.0,10.216698334856808,16.337802844032566,8.68095238095238,19.75,8.0,0.5,11.75,0.0,0.01772486772486776,-3.75,0.15351125065410764,0.042727725236435976,-0.11078352541767167,0.029880256196045618,0.15820731707317048,0.0,0.5919727891156464,0.8677248677248675,0.4384615384615388,0.5492450638792105,0.8378446115288218,13.170404648474095,0.1601933669496063,0.3321933669496063,12.618075724673423,4.131512364120514,4.6225078313029755,25.788480373147518,8.75402019542349,0.5557926829268295,0.12068019747668679,0.0,0.21886999451453648,0.46153846153846156,0.37949177939691925,-0.5926369835834445,-0.05528168054790694,-0.016932485245241272,-0.06584855373149383,0.6205082206030808,0.9690226247623575,0.038324664334818036,0.027686360707495927,0.03727010095239836,-3.404713026264167,0.63945433030766,0.7768350134782344,1.4942174085133093,0.9403735632183907,0.6785695434151492,1.5567265446866008,0.6460888603280444,1.1028515590740222,0.721562908713506,0.5659161279610734,0.7563928387403631,1.037680782816791,0.8108759942032892,1.2498431646225503,1.437942992663144,1.3624730603448274,1.2307934976247032,1.1070615339882262,0.8120577400913725,0.8563564714797889,1.164111311173095,0.6908525298786828,1.1360688752996435,0.9386700811748381,0.991515265700169,1.072109889347008,1.0040026179018293,1.2112588284171166,1.0856881206536362,0.9053807228423382,0.9918904749632335,0.9335984919622429,1.0698793447153954,0.8488709341578456,1.0331168616837088,0.9960677682888129,0.9199428151077291,0.9364909263099083,0.9021288727139649,0.8612175393784588,0.8739069235506292,1.1949406561247626,0.9247752956931671,1.1116255339700645,0.9338615875824543,1.3013262160741645,0.9090149051681664,1.122620867332923,0.6200039349136139,1.094709193254032,1.1826487489312096,0.679287045666356,0.9070520639404251,0.8080078779919712,0.6215334372863635,0.6437517281223256,1.0075790988013131,1.3644834446795295,0.976878642923832,0.7416140770537505,0.6395715968270635,0.8112291381730471,0.9453489346133254,0.8998790078644887,0.9821060965954078,0.8743416423839756,0.6454899776472034,0.8596243664726241,0.7263403911690403,0.9445663863322142,0.6565962445502745,0.8451414722681652,0.9068674652389938,1.2813743419938435,1.1833033827941961,1.339901477832512,1.3635561588055654,0.9250806706228957,0.9047076531074609,0.8734668700075813,1.2189774800148072,1.9324199696657345,1.278608603592852,0.9034805509326008,1.2948234025343757,1.1646159946539196,0.8063888811645884,1.1479885057471264,1.262470308788599,0.992486519656289,1.2930018254238558,1.1324982165307942,1.2168709675006344,1.7500491874833386,1.1982170709540452,1.1802006442069997,3.0,0.04938271604938271,1.7777777777777786,0.6875,0.4533333333333334,0.35416666666666663,0.24326530612244895,0.140625,0.04509952128999747,0.0625,3128.0237589831313,3586.0866737709043,1746.7868383122977,1575.7035701575278,13.31242517296292,0.4766575963003303,6.9669565890904055,0.9107949077519613,1.0,0.46153846153846156,1.655209170170967,3.157295873840569,3.8721401598021084,4.44356873123068,4.44356873123068,4.44356873123068,0.15789473684210525,0.008230452674897118,0.07407407407407411,0.03125,0.02833333333333334,0.025297619047619048,0.017376093294460642,0.010817307692307692,0.0037582934408331224,0.006944444444444444,0.36397635484407476,14.409972299168976,7.555555555555555,4.8979591836734695,111.86819617698772,1.0,3.7940667817962828,82.95371842789558,,68.38328751973253,67.98219311764261,67.03634667344784,68.36802606930907,96.59083329337832,68.73256975094358,69.43508710927905,87.68062903959382,0.023926410233366318,-0.0037101881165470148,-0.44215584244810835,0.15325670498084287,0.1813919550401316,-0.26494399052955664,0.02378023603824834,-0.09633557860844617,0.009886475824547752,-0.009278503600960282,-0.04325031485351929,-0.03593591674556889,-0.04160488002156913,-0.1540787201690637,-0.1181718292679853,-0.19194504310344823,-0.14799977294955993,0.04928991233622395,-0.04010839175020375,0.06091607756960699,-0.14723925943807822,-0.0020466288264271246,-0.13144395813288767,-0.00910837968684275,-0.08554005723622447,-0.08019457482089537,0.114900239943393,-0.16098878271707515,-0.08823276899690422,0.11589579088578969,-0.08484365020545288,0.0099043739128637,-0.09897448423501155,0.012832935672156206,-0.07986017273885176,-0.042537174596246424,-0.0756593071907173,-0.05044802021988032,-0.05207741864919948,-0.006917837377607497,0.0034568591226409153,-0.2541685818545203,-0.07716604956011015,-0.17813792753290236,-0.05406799790022915,-0.03170198782243822,-0.0685443299437719,-0.15328505772797835,0.12740740200972064,-0.008810221027306888,-0.10124236226572197,0.1473671947809878,0.09264224403249137,0.08677265502851235,0.1304437394614315,0.19446329493220155,0.014481302658013418,-0.0837708107919219,-0.02355764864817014,0.17795662713846105,0.21610899045943244,0.17752983004417203,0.27056120948142637,0.04915305505142165,9.80514721205025e-06,0.07482440986543748,0.21280244213165658,0.04529539916437756,0.2386386797891457,-0.008462461954340698,0.26343510597395137,0.1041869963444571,-0.024814158610330088,-0.15528586814182516,-0.16810160582323727,-0.09852216748768475,-0.19988422922613233,0.019126178166443082,-0.021873333522236804,0.07166102418487512,-0.1413924452379036,-0.20904467184382045,-0.17128242443057903,0.05326080447425079,-0.25676282915430926,-0.06175482001741639,-0.05360691627927555,-0.12931034482758622,-0.19093195472963537,0.01615514922209407,-0.25790310207431666,-0.10320935263419097,-0.13097947355243636,-0.0650953398403555,-0.024912983224273946,-0.20077569839331952,11.416455829032767,8.55290356642613,1.3103706971044482,19.160328941385362,31.738237962775276,36.860001003024514,37.436001003024515,37.436001003024515,37.436001003024515,36.26360756508042,26.528315734319417,4.2039859525400525,3.773022189341016,1.7582836888799307,9.735291830761,5245.8088688638645,5103.443222025802,275.6269515683216,26.0,24.0,28.0,31.0,36.0,30.0,26.0,24.0,24.0,268.09785546400036,19.0,4.465908118654584,5.25227342804663,6.061456918928017,6.86171134048073,7.67368812926773,8.47782846789396,9.291090521661292,10.096872681686062,10.910989164463667,0.6761904761904762,0.9813714285714288,1.1337666999483647,0.6392735230800337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6677413344739095,0.9710924369747896,1.008563104775778,0.6183405018754907,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,6.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,10.05365155780638,0.0,0.0,0.0,5.907179729351506,9.694446914922299,0.0,0.0,0.0,11.600939890232516,24.26546827384644,36.76511042908862,13.213763929025836,184.343937394859,-287.88248107297863,-26.853922038050563,-8.225213744942247,-31.986942341442067,301.4213608358819,470.7175643100219,18.61679200019592,13.449073266000624,18.104521704231612,0.5,0.8675948839930364,0.2425577993998962,93.32397602076816,0.1606142632269872,44.12447502976069,0.13240511600696347,6.0,0.21052631578947367,0.32269796084615743,0.6155433153932447,0.7549086581906684,0.8663138135585465,0.8663138135585465,0.8663138135585465,1.4020000000000006,,1.4327731092436975,1.0593718501661549,0.9284284552673375,1.4447162824396187,-2.9670072109134997,1.0328482562012924,0.987299759323917,-1.3533495828652995,71.04420000000003,9.53140013787187,0.0,10.216698334856808,0.0,0.0,39.392789552676135,34.85155307928476,0.0,0.0,3.6635616461296463,0.0,4.90527477843843,0.0,6.340359303727752,0.0,7.853604813097837,0.0,9.402529747968487,23.666666666666668,6.89850057730469,0.0,0.0,0.0,0.0,0.0,1.2789298387832848,0.0,34.348000000000006,0.0,11.800244551524312,0.0,0.0,0.0,0.0,0.0,-0.05562397644242867,39.681834498192764,5.316788604006331,0.0,0.0,50.199879012878114,4.736862953800049,0.0,10.357988675768818,24.26546827384644,5.022633313741326,0.0,0.0,22.37457330780118,23.37094670658683,23.115197727153888,165.90743685579127,,136.6523792886557,135.98938525953417,134.10554036399532,136.6186359037269,194.1706689903945,137.46224893181704,138.85170815351034,175.81237460680939,23.115197727153888,165.90743685579127,,135.53800020368834,135.16542937607164,133.38342934323182,135.49496768405157,196.14867379767023,136.65892251032713,138.08380834070283,176.71460766205294,4.528074961228808,129.9487448183388,,109.4804204878418,108.07797195361725,106.07781016164859,109.4719126498459,155.15823570526086,109.43358322144665,110.67138820291964,140.84775905331196,1.2841776515085492,9.217079825321738,,7.591798849369762,7.554965847751898,7.45030779799974,7.589924216873716,10.787259388355249,7.636791607323169,7.71398378630613,9.767354144822743,2.2640374806144044,82.95371842789558,,68.38328751973253,67.98219311764261,67.03634667344784,68.36802606930907,96.59083329337832,68.73256975094358,69.43508710927905,87.68062903959382,33.988235294117636,0.0,0.0,5.7720348258028515,0.0,0.0,0.0,35.29970866715223,4.966311356915313,2.9012027588813303,5.266136692745049,0.0,0.0,2.283374485596708,0.0,0.0,0.0,21.641917565642174,421.4474875663424,57.93232095598385,110.50535558441992,135.52490559307378,155.5249055930738,155.5249055930738,155.5249055930738,286.0,106.09181877108267,64.31781066439845,50.16533028936215,41.57000000000001,41.57000000000001,1.0,6.608253629725014,5.247927513443585,3.6921987754223977,4.186136353641156,,4.192508234429766,4.187009829662242,4.185119590435356,4.192613062722315,4.186684042918524,4.188132156130153,4.18866773312541,4.189424666048254,0.20512215419013322,0.232563130757842,,0.23291712413498702,0.2326116572034579,0.23250664391307532,0.2329229479290175,0.232593557939918,0.23267400867389737,0.23270376295141165,0.23274581478045853,1.8940088195902887,2.0195648621271767,,2.021085843701229,2.019773499598715,2.019321944405489,2.021110847106389,2.0196956876440777,2.0200415133175356,2.020169384820512,2.0203500782024513,199.04999999999964,127.74741353693076,85.14945241682199,,84.30981531449086,84.7459650448009,84.89251161490132,84.2997242749713,84.77042280282704,84.67038219946764,84.63401710973794,84.62840085417466,7.097078529829487,4.7305251342678885,,4.683878628582826,4.708109169155605,4.716250645272296,4.683318015276183,4.709467933490391,4.703910122192647,4.701889839429885,4.701577825231926,5.437841647494718,5.032194641183585,,5.0222849562814735,5.027444799938437,5.029172551913591,5.022165259145046,5.027733359156887,5.026552526535341,5.026122944192091,5.026056582673298,5.266136692745049,14.08361903712102,3.539968251061776,0.640164346602839,-0.05562397644242867,6.89850057730469,0.0,4.966311356915313,0.0,242.0305562997629,89.54788772564271,-139.84331927382107,-13.044703447478696,-3.9955234078234594,-15.538146585980119,146.42003723955793,228.65825800950572,9.043391518074843,6.533093085985877,8.79454838498099,724.0,22.0,0.8951682068889268,0.4814604891543488,0.0,0.0,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.07342132423654162,0.20361463941450536,0.07766078952471964,12.794682450997078,10.949645359333157,8.75402019542349,6.472025017625105,7.4321752980171345,4.653242868027027,5.8618346244891795,3.1756798319498687,4.2949172737689745,1.9816307809877822,3.3034053501645,1.3232293866706424,1.94778913665154,0.6261437026533597,1.0740483707007378,0.31227070331386475,1.8614810496160228,0.8205504461877842,2.28678627159431,0.8504148317712392,2.8451944486233334,0.8846028374056204,59.56822651621823,37.454528382452246,27.36581777624176,25.00231157963781,25.00231157963781,25.00231157963781,86.0,95.0,39.02948099999998,22.448518999999997,0.45714285714285713,55.05,5.444444444444445,4.111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,35.0,0.0,1.0,36.0,6.0,1.0,4.0,32.0,7.0,19.0,29.0,0.0,0.0,0.0,13.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,3.0,1.0,1.0,18.0,5.0,0.0,2.0,2.0,0.0,2.0,4.0,0.0,0.0,1.0,0.0,1.0,3.1780538303479458,4.4360116157204175,3.597312260588446,3.993602992420569,4.34866373100476,4.773329428969542,4.702750514326955,4.529233619898151,4.171498485989746,4.242225629035763 +3463,Cc1ccc(C)c(OCCCC(C)(C)C(=O)O)c1,0,18.85,5.9245,2.7,5.5,163.16143858227446,73.85548065000002,1.33861489766695,5.9879575,4.166840277777778,7.524227400000001,192.14420586533703,20.75,6.1425,3.15,5.025,144.7313019396762,76.46823724999997,1.7080289624000007,6.2875250000000005,2.9496527777777777,7.616104999999996,240.79093018000654,16.802816901408452,5.947183098591547,2.9295774647887325,3.591549295774648,154.16828043686817,61.35784142253518,1.41352843006669,6.051649295774646,2.871870109546166,7.505937521126761,193.44372849353044,14.824175824175825,6.003956043956044,2.4175824175824174,2.1538461538461537,153.65019583416966,51.30519648351649,1.3045052838202307,6.104692307692308,2.8789682539682544,7.567132307692311,173.18810056744044,9.556521739130435,5.933043478260867,1.8608695652173912,1.1130434782608696,166.4241171406158,29.97025248695651,0.9693026815801307,5.973073913043477,2.6496376811594207,7.613631095652175,120.72610648718563,9.733333333333333,5.716444444444445,1.988888888888889,1.2555555555555555,164.65685158771743,31.739802066666662,1.0043350222574225,5.7751833333333344,2.2083333333333335,7.389211200000002,123.40674091394722,10.157894736842104,5.857368421052631,1.986842105263158,1.868421052631579,164.76827604520363,32.94006984210527,1.0342121957417898,5.905686842105265,2.614400584795322,7.52095221052632,127.31835835703369,9.985294117647058,5.46779411764706,2.176470588235294,1.8529411764705883,162.90124194179225,34.110343485294095,1.0974077937738387,5.547786764705883,1.9207516339869277,7.1361892352941165,134.05886105558352,13.084745762711865,5.681186440677967,2.305084745762712,2.389830508474576,156.85127116947766,45.94604703389832,1.2598018162302367,5.781957627118645,2.5273069679849356,7.285937830508475,162.36557791212408,7.289999999999999,0.11639999999999995,0.01999304954392823,0.5974999999999999,3.54,1.283913054796439,34.687284247499996,0.22951914723012745,0.11096943749999995,1.5329817708333335,0.07460303999999998,50.843597474851755,0.009999999999999986,-0.003000000000000007,-0.01170383827775925,0.21375000000000005,1.4200000000000002,-0.03462808562999675,0.05005936999999956,-0.00500229918999992,-0.00219162499999996,-0.13726996527777777,-0.0027421600000000278,-0.3493435644287963,1.3064788732394368,0.02095915492957746,0.001395767275969992,-0.1552464788732394,0.3064788732394367,0.15265711228804363,6.184664022922534,0.028732913016414785,0.02044820334507043,0.3722070006846636,0.012673514929577457,7.565730299345128,-1.264175824175824,-0.004889010989010991,0.0014010485324976213,-0.10079670329670327,-0.7784615384615385,-0.4642705270587157,-6.1960012975,-0.08087655427138844,-0.0053034759615384315,-0.0009285809676434959,-0.003341486153846173,-15.078943777105549,-1.4713043478260865,-0.03223043478260869,-0.0016202007140620844,-0.008369565217391297,-0.9443478260869567,0.06317402002962828,-6.823025404456519,0.006611652184158997,-0.031503480978260834,-0.4096484375000001,-0.01869692695652176,-3.0274891996353794,-0.0888888888888889,-0.005966666666666667,-0.0017015070684597944,-0.0008333333333333457,-0.3000000000000001,-0.02886390614813051,-0.403562364166666,-0.004187828961650852,-0.0049694097222222336,-0.06713107638888892,-0.004612093333333324,-0.44593156794824895,-0.6505263157894735,0.008678947368421052,0.0037395297488566166,0.08276315789473687,0.14421052631578943,0.14222744275833046,-3.0952453080263176,0.017555620527406685,0.0040097072368421235,0.06631464729532163,0.01087882315789473,-1.2696014250135406,1.4452941176470582,0.012688235294117648,-0.0024052762531315717,0.014264705882352955,0.6423529411764706,0.17517561743179202,6.90141918779412,0.03446270579560484,0.014043981617647005,0.13534441380718962,0.005840454117647108,9.50145198337604,0.6718644067796614,0.011150847457627119,0.0007729604021444625,-0.16360169491525423,0.22101694915254222,-0.08969026142229411,3.110515614364407,-0.012182222285770697,0.011862554025423706,0.15029565383709984,0.005129173559322057,0.5172117943645764,,,0.4722222222222222,1.0,0.4444444444444444,0.027777777777777776,0.5555555555555556,-0.1111111111111111,0.9598925923730525,0.0326671763763254,0.03744495415410318,0.6305704035904832,0.186618899721347,0.27594801070083297,1.5904629959635357,0.4625669104221799,1.935258893450161,1.6361269295141279,0.0,0.29913196393603303,0.0,0.29913196393603303,6.2539223641,754.0,236.98000000000002,108.0,220.0,6526.457543290979,2954.2192260000006,53.544595906678005,239.5183,166.67361111111111,300.96909600000004,7685.768234613482,830.0,245.7,126.0,201.0,5789.252077587048,3058.729489999999,68.32115849600002,251.50100000000003,117.98611111111111,304.64419999999984,9631.637207200261,1193.0,422.24999999999983,208.0,255.0,10945.94791101764,4356.406740999998,100.360518534735,429.6670999999999,203.90277777777777,532.921564,13734.504723040662,1349.0,546.36,220.0,196.0,13982.167820909439,4668.77288,118.70998082764099,555.527,261.98611111111114,688.6090400000003,15760.11715163708,1099.0,682.2999999999997,214.0,128.0,19138.773471170818,3446.5790359999987,111.46980838171503,686.9034999999998,304.70833333333337,875.5675760000001,13883.502246026348,876.0,514.48,179.0,113.0,14819.116642894567,2856.5821859999996,90.39015200316803,519.7665000000001,198.75,665.0290080000002,11106.60668225525,772.0,445.15999999999997,151.0,142.0,12522.388979435476,2503.4453080000003,78.60012687637602,448.8322000000001,198.69444444444446,571.5923680000003,9676.19523513456,679.0,371.81000000000006,148.0,126.0,11077.284452041873,2319.5033569999987,74.62372997662104,377.2495,130.6111111111111,485.2608679999999,9116.002551779678,772.0,335.19000000000005,136.0,141.0,9254.224998999181,2710.8167750000007,74.32830715758396,341.1355000000001,149.1111111111112,429.870332,9579.569096815321,291.59999999999997,4.655999999999998,0.7997219817571293,23.9,141.6,51.35652219185756,1387.4913698999999,9.180765889205098,4.438777499999998,61.31927083333334,2.9841215999999995,2033.7438989940702,0.39999999999999947,-0.12000000000000029,-0.46815353111037,8.550000000000002,56.800000000000004,-1.38512342519987,2.0023747999999824,-0.2000919675999968,-0.08766499999999841,-5.490798611111111,-0.10968640000000111,-13.973742577151853,92.76,1.4880999999999998,0.09909947659386945,-11.022499999999997,21.760000000000005,10.838654972451097,439.1111456274999,2.04003682416545,1.4518224375000004,26.426697048611118,0.8998195599999994,537.1668512535041,-115.03999999999999,-0.4449000000000002,0.12749541645728354,-9.172499999999998,-70.84,-42.248617962343125,-563.8361180725,-7.359766438696348,-0.48261631249999726,-0.08450086805555812,-0.30407524000000175,-1372.183883716605,-169.19999999999996,-3.706499999999999,-0.18632308211713972,-0.9624999999999991,-108.60000000000002,7.265012303407253,-784.6479215124997,0.7603400011782847,-3.622900312499996,-47.10957031250001,-2.1501466000000025,-348.16125795806863,-8.000000000000002,-0.537,-0.15313563616138148,-0.07500000000000112,-27.000000000000007,-2.597751553331746,-36.320612774999944,-0.37690460654857666,-0.44724687500000104,-6.041796875000003,-0.41508839999999914,-40.133841115342406,-49.43999999999999,0.6596,0.28420426091310286,6.290000000000002,10.959999999999997,10.809285649633114,-235.23864341000012,1.334227160082908,0.30473775000000136,5.039913194444444,0.8267905599999995,-96.48970830102908,98.27999999999996,0.8628,-0.16355878521294687,0.970000000000001,43.68,11.911941985361858,469.2965047700001,2.3434639941011293,0.9549907499999963,9.203420138888895,0.39715088000000337,646.0987348695706,39.64000000000002,0.6579,0.04560466372652329,-9.6525,13.03999999999999,-5.291725423915352,183.5204212475,-0.718751114860471,0.6998906874999986,8.86744357638889,0.3026212400000014,30.515495867510012,0.7643971413924633,0.6453934070864559,0.4625669104221799,0.34789541583969524,0.3217860573781982,0.21640009810018643,0.21606081509865735,0.11578829455243381,0.13313128408873268,0.06663918031110842,0.0936354075962804,0.03854323106073026,0.06222174874611285,0.02090836942880225,0.04025263486968171,0.012522620254938565,8.028783791217304,5.686886827581457,3.554847637303864,2.18636216148066,0.4304681341700432,-0.5247826895262429,4.022994324653422,0.9726946748676776,6.02213412150295,0.9921869607198904,13.642703038425125,10.94727672599744,16.014126619692412,11.698194082398897,1.9898746924765036,0.741565361055563,3.5008926346524047,2.236248203874155,7.008291658805204,1.1676269669616373,3.713816383750358,2.432268333247724,20.89801011780574,14.701172772214996,0.23542460708581628,0.5509213557804191,0.7377264591734607,0.7869755763592529,0.8236094265419798,0.8236094265419798,2.209405107849599,421.746932506919,0.0,1.0,5.0,0.0,4.0,2.0,2.0,0.0,1.0,4.036643551157795,2.3142106257572146,1.294360937770434,1.025488750216347,0.8254887502163459,0.8254887502163459,156.4968038204252,825.2133109449791,45.868884899029666,20.630332773624477,41.111531975258146,,10.0,290.0,11.384295757348628,4.794537184071822,0.0,13.027703587438928,17.733784947906912,5.563451491696996,13.847474399381248,25.980208536304467,6.06636706846161,9.843390348640755,8.5,18.0,8.0,0.5,10.0,0.0,0.027777777777777776,-2.0,0.10416666666666663,0.030978260869565233,-0.0731884057971014,0.02777777777777779,0.14353020134228167,0.0,0.5375000000000003,0.8277777777777776,0.4333333333333337,0.5065217391304351,0.7999999999999998,17.278066662714945,0.5880091747738572,0.6740091747738571,11.350267264628698,3.3591401949842457,4.967064192614993,28.628333927343643,8.326204387599239,0.5704697986577183,0.3137254901960785,0.058823529411764705,0.23529411764705882,0.5333333333333333,0.3445181224170903,-0.5649143362083582,-0.05147940242648796,-0.014122858405208957,-0.04035102401488274,0.6554818775829097,1.0748088001102758,0.03966342186938688,0.026870220002756896,0.04133880000424138,-3.8745607689737263,0.9863683127572017,0.7936533505154639,1.5311320428014916,1.0810669456066946,0.5405190677966102,1.3008615864229542,0.994587996986575,1.2832651995579418,0.7993797278642598,0.7800022083867735,0.8043644401086067,1.1862837552917647,0.7939923491566685,0.6482775519093946,0.8196997230384193,1.9995285520655313,1.0047147290522798,0.9965011469113787,0.7996796881808206,0.9869143927407372,0.6551413673164243,0.4009621675591332,0.650308403019728,0.9274696743763519,1.16549088771311,0.9950294550810015,1.0339054788609103,1.2552301255230127,1.2378934624697338,1.4637367725807329,1.17306154342023,1.446057579063721,0.9986533454312588,0.8193842969139613,1.0079549037143793,1.3523780436518793,1.2490606548577565,1.673800986104886,1.3153781649879261,0.7591413498271785,1.3843036109064113,0.8499098228179338,1.2353413000465627,0.8577127067345726,1.6400670249174807,1.702627795612696,1.7007516513839227,0.9557741057248128,0.9748513946044811,1.0126002290950746,1.1836997243849123,0.7796373779637379,1.0282485875706215,0.9475879024450591,0.9737548854308976,0.9474161317689624,1.0090124289101372,0.7987734959612003,1.01640755300767,0.9529002844508833,1.0910764565735327,1.0801003798155182,0.9540407744827388,0.6011891653820745,0.967607047279215,0.8194057087700102,1.0872137899482541,0.8489186662100008,1.1012233720468732,0.8379665496460098,1.030910085108991,0.9573460776302886,0.6706911159525539,0.3658467252880533,0.5891679773265895,1.0558700467634754,0.5994516450648055,0.8252367975093345,0.6785646613301548,0.8335390906545831,0.3995331981808582,0.32372351996866294,0.32381488743622233,0.8150740958157875,0.811536583664644,0.4628254412021667,0.4717567914006553,1.6317991631799165,0.8122665900603275,1.1282164654523539,0.8226353093550041,1.1229718017811339,0.49131255591073597,0.574554863943076,0.4388034480423408,1.0468008388895391,5.5,0.024691358024691357,2.8888888888888897,1.0625,0.8533333333333335,0.31250000000000006,0.2644897959183673,0.2934027777777778,0.2388510959939531,0.115625,2797.6721513541315,3351.747931554931,1601.5920246325586,1377.7804935107847,12.791350740354925,0.44667424917863435,7.0777837524263205,0.8072536810650578,1.0,0.5333333333333333,1.2852845437295677,3.007717469130148,4.027567157116929,4.296439344671016,4.496439344671017,4.496439344671017,0.3055555555555556,0.006172839506172839,0.11555555555555559,0.04427083333333333,0.053333333333333344,0.02232142857142857,0.02204081632653061,0.022569444444444444,0.01592340639959687,0.009635416666666667,0.6173786296926178,16.055555555555557,6.9632,5.267489711934156,108.7851832308131,1.0,3.7747011254329443,80.4436199459945,,67.81652876651384,67.07986187160492,69.4032311553143,67.8316812748582,95.48443770405875,67.63661104930532,67.84758408279973,81.25660495059853,0.0013717421124828516,-0.02577319587628873,-0.5853953521219396,0.3577405857740587,0.4011299435028249,-0.02697074034774648,0.0014431619853205275,-0.021794692296344075,-0.01974980723859181,-0.08954442113369515,-0.03675667908439158,-0.006870945050683885,0.1792152089491683,0.1800614684671604,0.069812625277762,-0.2598267428840827,0.08657595289249623,0.1188998832263194,0.17829772947325154,0.1251874336549609,0.1842687843224441,0.242799365110735,0.16987933641279843,0.14880399253981363,-0.17341232156046973,-0.04200181262036936,0.07007677990389971,-0.1686974113752356,-0.21990438939591486,-0.3616058932684694,-0.178624571854355,-0.3523738879628092,-0.0477922217235573,-0.0006057351661388097,-0.0447902143645376,-0.2965750758404515,-0.20182501341921627,-0.27689376961004036,-0.08103819832498388,-0.014007640531198823,-0.2667649226234341,0.04920428201397513,-0.19670105493912432,0.028806538643722922,-0.28389331051859074,-0.2672232933841829,-0.2506188347890617,-0.059545141374640835,-0.01219326322206981,-0.05126002290950747,-0.08510492932662851,-0.001394700139470035,-0.08474576271186443,-0.022481199984921724,-0.011634302682423223,-0.01824609847235065,-0.04478178707738548,-0.04379117721171352,-0.061821788138034656,-0.00877065333877713,-0.08923543426467401,0.07456140350877195,0.18704148862534525,0.13851574543052197,0.040737436812369895,0.11077653757549824,-0.0892328521870201,0.07648869708375369,0.03613343752276049,0.04325860134610263,0.14582278628182888,-0.024970723710915823,0.1982570806100217,0.10900545785324445,-0.12030562160348568,0.023873984740339672,0.18145563310069793,0.13643884745728804,0.1989610699572574,0.15015176821413856,0.1265572029023488,0.08828833870191163,0.07828707942259604,0.18687607595185698,0.09216247006579718,0.09579765857067976,0.0386614558447491,-0.2738103680590029,0.062434166427271814,-0.06985695883940853,0.08967307997277388,-0.05307715035014568,0.10689928950413677,0.09804138359414324,0.06875287601312303,0.010172604222594587,4.9223866387741655,8.352538003161289,1.6881181104351053,11.335752263452243,27.46574589502692,30.35185506017521,31.72317822522973,31.924778225229733,31.924778225229733,34.8346600821029,29.4502847312543,0.0,5.384375350848595,0.0,5.384375350848595,3689.3823733285003,3425.5060551663883,523.5782877537013,16.0,25.0,27.0,25.0,28.0,22.0,20.0,22.0,21.0,250.156894564,18.0,4.465908118654584,5.25227342804663,6.093569770045136,6.904750769961838,7.740229524763182,8.558143177745192,9.391411146868485,10.2115235708683,11.043865390436705,0.5666666666666667,0.9640000000000001,1.129908608118789,0.5210598617933562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6306204491017965,0.950686274509804,0.9939548434085943,0.5776125788723796,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,9.843390348640755,5.749511833283905,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,12.13273413692322,57.72986209647011,0.0,12.021872433909698,173.38350248484193,-284.3009404803546,-25.907720139393113,-7.107523512008866,-20.307210034311048,329.88030630526714,540.9123704646245,19.96116475963655,13.522809261615611,20.804321940947098,0.5,0.8150561044550765,0.30085052136123186,11.56490424800204,0.18818054831610304,18.579301923404852,0.1849438955449235,5.0,0.3333333333333333,0.24150731103719852,0.5651556006590137,0.7567872179607439,0.8073087926156862,0.8448891575575079,0.8448891575575079,3.573240000000002,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,72.06180000000005,14.637927532712576,0.0,0.0,5.41499046939678,40.53659204461451,6.606881964512918,29.32600418877882,0.0,5.749511833283905,3.6109179126442243,0.0,4.919980925828125,0.0,6.408528791059498,0.0,7.974188669286011,0.0,9.574775130526355,22.666666666666664,6.096485226392108,0.0,0.0,0.0,0.0,0.0,3.1691590162299494,0.0,38.56,0.0,10.943172993766428,0.0,0.0,0.0,0.0,0.0,-0.7553369341563785,45.196344324751564,4.736862953800049,0.0,5.749511833283905,17.682714647305474,4.794537184071822,19.26246486877803,37.81602062862726,18.19910120538483,0.0,0.0,0.0,20.842394471734245,25.22481796407186,21.3068126033918,160.88723989198903,,135.54972419969434,134.06448564797176,138.74875091533585,135.58027402335017,192.0511696724566,135.1869817885331,135.61233656552648,162.9122043792551,21.3068126033918,160.88723989198905,,134.88305753302774,133.302580886067,138.28705975299377,134.9155658124203,194.21575820113503,134.49705930791293,134.94968376494268,163.71019333537123,4.577152310425607,125.44263654399424,,106.9107716715763,105.6375568133841,109.66020449524339,106.9369829102445,155.7305247030135,106.59961340632569,106.96449299860086,130.43806181594223,1.1837118112995446,8.938179993999391,,7.530540233316352,7.448026980442876,7.70826393974088,7.532237445741676,10.66950942624759,7.510387877140728,7.534018698084804,9.050678021069727,2.288576155212804,80.4436199459945,,67.81652876651384,67.07986187160492,69.4032311553143,67.8316812748582,95.48443770405875,67.63661104930532,67.84758408279973,81.25660495059853,38.02745098039216,0.0,7.52410296175786,0.0,0.0,0.0,8.997308435745484,39.75819373634377,1.917541572184429,0.0,5.699819538926681,0.0,0.0,0.0,-0.6755861441798943,0.0,0.0,23.104503154895184,410.18823950569083,51.41138174918271,120.30869876520592,161.10268628467713,171.85757378684062,179.85757378684067,179.85757378684067,242.0,105.66167489739006,93.0755692844183,50.48839142934421,46.53,46.53,1.0,6.552775326305183,5.169925001442312,3.875870092689608,4.192072221908993,,4.192659322490993,4.1922090845584306,4.193566216917697,4.19266838238336,4.201130466443622,4.192551135459414,4.192677882321811,4.198297123917137,0.21532611626053377,0.23289290121716627,,0.23292551791616628,0.23290050469769058,0.23297590093987205,0.23292602124352,0.23339613702464568,0.232919507525523,0.23292654901787838,0.23323872910650761,1.9425568425510167,2.0209818402812756,,2.0211218806820566,2.021014487718652,2.021338162590044,2.0211240415737204,2.0231403126517966,2.0210960764325088,2.0211263074165733,2.0224656612893144,211.75999999999954,84.01119784746366,81.91649988388227,,81.94749522235138,81.98809882171821,81.86412853228525,81.9466730638382,81.00601638747494,81.95729703526462,81.94581075091907,81.37954575141823,4.6672887693035365,4.550916660215681,,4.552638623463966,4.554894378984345,4.548007140682514,4.552592947991012,4.500334243748608,4.553183168625812,4.552545041717726,4.521085875078791,5.0187367625686505,4.993487099253707,,4.993865404918946,4.9943607653125675,4.992847568756254,4.993855372121296,4.982310093204783,4.9939850086570665,4.99384484921141,4.986910625639222,5.699819538926681,10.943172993766428,8.997308435745484,1.6017847957084075,0.13645114218526921,6.096485226392108,1.3609906462585033,8.080653887683786,0.0,260.564623421364,87.2576418418909,-143.0783741487534,-13.038417914419195,-3.5769593537188347,-10.2198838677681,166.0168193960366,272.22161978171346,10.045731804821592,6.805540494542836,10.470062299296673,705.0,24.0,2.030196011903758,1.3726801267082636,0.2041241452319315,0.1767766952966369,0.8147745552564338,0.14421395976754273,0.2041241452319315,0.032274861218395144,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.18419528592042317,0.05793344994894864,13.759148545064338,11.617081327556205,8.326204387599239,6.262117485114515,8.044651434454956,5.410002452504661,5.833642007663748,3.126283952915713,3.328282102218317,1.6659795077777106,2.6217914126958513,1.0792104697004472,1.3688784724144827,0.4599841274336495,0.8050526973936342,0.2504524050987713,4.083381182959441,1.7091051910834942,3.4153818157177955,1.4741191309440753,4.079329993657246,1.3745911304990897,64.92026103278593,32.108935211683374,25.818597933830038,23.085479211093677,22.137748288974514,22.137748288974514,86.0,95.0,42.12544599999997,24.674553999999997,0.15,18.03,8.256944444444445,3.986111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,40.0,0.0,0.0,40.0,6.0,1.0,4.0,36.0,7.0,18.0,33.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,2.0,1.0,0.0,18.0,3.0,0.0,0.0,3.0,0.0,1.0,6.0,0.0,0.0,0.0,0.0,1.0,3.1354942159291497,4.45688767141756,3.6506582412937387,3.993602992420569,4.260917762047916,4.688476792114502,4.45143608604605,4.189181145048594,4.317071360039968,4.4304447058157646 +4205,CN1CCN2c3ncccc3Cc3ccccc3C2C1,0,19.94871794871795,5.8073,3.358974358974359,5.846153846153846,161.60665719027517,78.47136974358972,1.5253575690290002,5.903264102564103,2.304843304843305,7.344730666666665,218.46976906644448,23.571428571428573,6.182142857142857,4.095238095238095,6.095238095238095,145.72643708893088,89.04526435714283,1.8496867116666675,6.33675,2.6276455026455032,7.583536666666662,264.3055306270533,19.513157894736842,6.138143421052633,3.8552631578947367,4.776315789473684,156.0540909246255,71.96761622368417,1.6034038603150393,6.250205263157896,2.3724415204678366,7.597068263157892,223.92674221642602,17.104761904761904,5.96378,3.5238095238095237,3.942857142857143,154.63215662167943,61.704547257142835,1.515132830793704,6.079553333333334,2.1981481481481486,7.459838400000001,204.12745243337378,13.912698412698413,5.8060238095238095,2.9365079365079363,2.8492063492063493,159.47488173243158,48.79736335714286,1.3246041552863022,5.902222222222222,2.0661375661375665,7.361506888888889,171.87382855202836,13.088,5.7597112,2.72,2.52,160.16221728179897,45.38994921600001,1.293210795006176,5.8527488000000005,2.082,7.328844288000002,165.4203402808872,10.663636363636364,5.637890909090908,2.272727272727273,1.518181818181818,160.69457297954435,34.94982934545454,1.1839351572370365,5.727027272727273,2.0318181818181817,7.241169018181819,143.74751476282785,7.267441860465116,5.480430232558139,1.8255813953488371,0.6627906976744186,165.96493287258747,21.126695767441856,0.9973973180304768,5.548180232558139,1.8372093023255813,7.144691720930234,111.47660409616972,3.92,5.183680000000001,1.42,0.06,170.6557118624384,8.80131506,0.77822702481846,5.233610000000001,1.49,6.933763280000001,75.18426240131924,6.691650230111771,0.05837159763313606,0.009475906230415195,0.5811965811965809,3.153188691650229,1.5531359408566856,32.17555804076267,0.23165156961381994,0.06050742932281391,0.2430418584264738,0.025347271531886907,52.40500845262908,0.6783131398516014,0.007689940828402274,-0.002847054462898823,0.24603174603174605,1.0128674744059363,-0.40390578330381277,3.173813788907686,-0.01587918709305479,0.009007955292570542,0.028478288093672706,0.00228095069033533,-0.3345011099905083,0.04890307623101159,-0.005797508564310256,-0.001380825272313959,0.01023391812865491,-0.10966642444375224,0.28930430185329287,0.31627958643033444,0.027993392491167716,-0.005339446866673696,-0.008851949894460016,-0.002603402436070421,4.533486959788737,-0.5001972386587771,-0.0017311580726965745,0.0006274034715503931,-0.01587301587301591,-0.10019723865877704,-0.09058109476336472,-2.420246304987314,-0.018982406403134103,-0.0024421301775148503,-0.020392285776901168,-0.00039415016436553346,-4.347875487288788,-0.2535142919758305,-0.004208227669766142,-0.00037894807626679517,-0.07936507936507937,-0.20141823987977836,-0.08393235987661628,-1.208258574543688,-0.007890873450599458,-0.003856289721674353,-0.012611794663076716,-0.0021115393381547173,-1.7117777688839804,-0.30723997370151224,-0.0022016284023668635,0.0002885181837507006,-0.10222222222222221,-0.3008809993425378,0.0419194433691253,-1.4655058545062458,-0.003761482261279957,-0.002676372912557527,0.004587771203155818,-0.0006471706088099916,-1.4789488130437523,-1.0037714422329809,-0.0046168423883808235,-2.1319570100969945e-05,-0.13131313131313135,-0.5925826310441696,-0.25376386359577685,-4.858421236100653,-0.04139535898815552,-0.0056491309545155305,-0.003039268423883813,-0.0015792789910943825,-9.102105047605104,-0.8982691925446848,-0.007175443786982191,-0.0009733579092893172,0.010335917312661543,-0.32701099337950873,-0.03263687228999768,-4.300249715181267,-0.020314229628886096,-0.008031847927465016,-0.04970719997553629,-0.002645632891457595,-5.573775707764074,1.0837343852728467,0.010160863905325546,0.0005049145836658212,0.1644444444444445,0.6196318211702826,0.005508391664234997,5.172976773083483,0.020354201314688257,0.01100241683103237,0.00513477975016437,0.00394045564760022,6.029984171876151,,,0.485,1.275,0.6,0.0,0.675,-0.075,0.7889144202807438,0.004385686093908614,0.021585686093908613,0.8004678193311232,0.2507430044589952,0.24058198756575094,1.589382239611867,0.49132499202474617,2.111437852037078,1.7869644682821888,0.32447338375488866,0.0,0.0,0.32447338375488866,6.798920451487186,778.0,226.4847,131.0,228.0,6302.659630420731,3060.383419999999,59.48894519213101,230.2273,89.88888888888889,286.44449599999996,8520.320993591335,990.0,259.65,172.0,256.0,6120.510357735097,3739.901102999999,77.68684189000004,266.1435,110.36111111111113,318.5085399999998,11100.83228633624,1483.0,466.4989000000001,293.0,363.0,11860.11091027154,5469.538832999998,121.85869338394299,475.01560000000006,180.30555555555557,577.3771879999998,17018.432408448378,1796.0,626.1969,370.0,414.0,16236.37644527634,6478.977461999998,159.08894723333893,638.3531,230.8055555555556,783.283032,21433.382505504247,1753.0,731.559,370.0,359.0,20093.83509828638,6148.467783000001,166.90012356607406,743.68,260.33333333333337,927.5498680000001,21656.102397555573,1636.0,719.9639,340.0,315.0,20020.277160224872,5673.743652000002,161.65134937577199,731.5936,260.25,916.1055360000003,20677.542535110897,1173.0,620.1679999999999,250.0,167.0,17676.40302774988,3844.4812279999996,130.232867296074,629.9730000000001,223.5,796.5285920000001,15812.226623911063,625.0,471.31699999999995,157.0,57.0,14272.984227042522,1816.8958359999997,85.776169350621,477.14349999999996,158.0,614.4434880000001,9586.987952270596,196.0,259.184,71.0,3.0,8532.78559312192,440.065753,38.911351240923,261.68050000000005,74.5,346.68816400000003,3759.213120065962,260.97435897435906,2.2764923076923065,0.3695603429861926,22.666666666666657,122.97435897435894,60.572301693410736,1254.8467635897441,9.034411214938977,2.3597897435897424,9.478632478632479,0.9885435897435894,2043.7953296525343,28.489151873767256,0.3229775147928955,-0.11957628744175057,10.333333333333334,42.54043392504932,-16.964042898760137,133.3001791341228,-0.6669258579083012,0.37833412228796276,1.1960880999342536,0.09579992899408386,-14.049046619601349,3.7166337935568805,-0.4406106508875795,-0.10494272069586087,0.7777777777777731,-8.33464825772517,21.98712694085026,24.03724856870542,2.1274978293287465,-0.40579796186720085,-0.6727481919789612,-0.197858585141352,344.545008943944,-52.52071005917159,-0.18177159763314032,0.06587736451279128,-1.6666666666666705,-10.52071005917159,-9.511014950153296,-254.125862023668,-1.9931526723290807,-0.2564236686390593,-2.1411900065746226,-0.041385767258381015,-456.5269261653227,-31.942800788954642,-0.5302366863905339,-0.04774745760961619,-10.000000000000002,-25.378698224852073,-10.57547734445365,-152.24058039250468,-0.9942500547755317,-0.48589250493096847,-1.5890861275476662,-0.26605395660749437,-215.68399887938153,-38.40499671268903,-0.27520355029585797,0.036064772968837575,-12.777777777777777,-37.610124917817224,5.239930421140663,-183.18823181328074,-0.4701852826599946,-0.3345466140696909,0.5734714003944772,-0.08089632610124896,-184.86860163046904,-110.41485864562789,-0.5078526627218906,-0.002345152711106694,-14.444444444444448,-65.18408941485866,-27.914024995535453,-534.4263359710718,-4.553489488697108,-0.6214044049967083,-0.3343195266272194,-0.17372068902038207,-1001.2315552365615,-77.2511505588429,-0.6170881656804684,-0.08370878019888128,0.8888888888888926,-28.12294543063775,-2.806771016939801,-369.821475505589,-1.7470237480842044,-0.6907389217619914,-4.274819197896121,-0.22752442866535316,-479.34471086771043,54.18671926364233,0.5080431952662773,0.025245729183291057,8.222222222222225,30.98159105851413,0.27541958321174986,258.64883865417414,1.017710065734413,0.5501208415516186,0.2567389875082185,0.19702278238001097,301.49920859380757,0.6763366629282979,0.5894435032381538,0.4272391234997794,0.3172274150104818,0.26964904118517763,0.17676237646362208,0.16720010852011094,0.0961279431768964,0.10516953492749823,0.05211065474876457,0.06789116455380172,0.029258570207796115,0.04285853545389087,0.016363092203810534,0.027994749047752027,0.009036311432929624,7.054638878394016,5.686362383119915,3.160657845460878,2.1862247233961964,0.35467708908449186,-0.4183159857965547,3.229065760959095,0.993916979434823,5.043406717219767,0.9969639746915959,14.552055052564057,10.946817783520556,14.03548118400873,11.697470581519937,1.9940618584257561,1.013126015875479,3.142992934439273,2.2361787697611364,3.0390419263927555,1.2464674332244319,3.3048108819784394,2.4321496702704755,20.90136446982417,15.588078103396278,0.23496385283293947,0.5437683231632156,0.7419252419137637,0.8476099035279734,0.8786221517969374,0.8878043175277598,1.6374408832168612,637.6371725464028,0.0,2.0,3.0,0.0,6.0,2.0,3.0,0.0,0.0,3.9731379117653174,2.2484765249156666,1.1417775644354062,0.5515326924186406,0.37833044877342203,0.3270483974913718,218.1558565984942,599.9128174694329,25.79235301866613,15.382379935113661,29.17067232300706,,8.0,280.0,0.0,0.0,0.0,6.041840829147961,26.055090840663734,22.508217252926013,0.0,6.196843571613076,58.22967237609501,0.0,9.7,25.5,12.0,0.0,13.5,0.0,0.015000000000000036,-1.5,0.08774928774928753,0.048142333856619424,-0.039606953892668106,0.0,0.07584210526315771,0.0,0.535897435897436,0.7599999999999997,0.44814814814814846,0.48775510204081657,0.7599999999999997,15.778288405614875,0.08771372187817228,0.43171372187817225,16.009356386622464,5.014860089179905,4.811639751315019,31.78764479223734,9.826499840494924,0.6381578947368423,0.051546391752577324,0.0,0.3402061855670103,0.35294117647058826,0.26424616763056236,-0.34262473988318537,-0.017521723810198116,-0.008785249740594497,-0.026355749221783496,0.7357538323694376,0.9539872146266063,0.03822416506746903,0.02446121063145144,0.03669181594717717,-3.694577051177344,0.8372470033405381,0.8563174114021569,1.4537229280766906,0.6586134453781515,0.6364083164541882,1.4161179437006428,0.8407476887426609,1.0876508375318426,0.8144157780245521,0.7980913736098587,0.9409822790326096,0.9907124231217456,0.9857290233837686,1.446864102668072,1.7439625918076833,1.279411764705883,1.2177335279399504,0.9577188602798565,0.9796487720009026,0.8252933634802853,1.3502156319880736,0.9707506762849414,1.5641637010676155,0.8479064639485322,1.038671644723914,1.0829517939687427,1.1816001491083248,1.2613445378151267,1.0903550577862509,1.125026079690418,1.0386638081343897,1.062725623001838,1.0678521989138534,0.9439220232727898,1.106468153097538,1.0498718150002482,1.015212549944324,1.110160319906082,1.0840460840875248,1.2107843137254908,1.0827524921561622,1.0524003821699341,1.0142384967341063,1.0012142979868666,1.0874532860743058,1.0826820959823669,1.140223085675551,0.998622131193045,1.0210045195519744,1.0322681047765792,0.9509395822355455,1.1265882352941181,1.0827623019182657,0.9532390275575018,1.0204220640494348,0.9873588132669885,1.0342911298051323,0.9719639314697927,1.0259026334519572,0.9992303935952174,1.1139025348791507,0.939149390670962,0.7729143779755626,1.021122994652407,1.0843354310410196,1.0894459255067297,1.1159798527064118,1.1591598929410847,0.9780674920862329,1.02402041150914,0.8898712390812034,1.1565082825663635,1.1123787284018878,0.9772884043429959,0.7507296933081483,0.6530437756497951,0.9611570688752259,0.8821730259538438,1.1126176958360599,1.0537271801561332,1.0211818341658139,1.3188578648268923,0.9101191165864672,1.0873319310059413,0.8168618589113772,0.44182973805855136,0.32572537424979703,0.38558823529411784,0.5840241868223521,0.7257217334178265,0.8210698725098269,0.8968575324022783,0.527876690448301,0.8519161406672678,0.3307564819522113,0.8976895330025204,3.0,0.0,2.222222222222223,1.4375,1.4477777777777778,0.5488888888888889,0.384625850340136,0.0893920068027211,0.02040816326530612,0.0,3729.1851010528317,4250.993688556629,1944.9908716433288,1755.13559640536,9.744872941996134,0.3817297011350358,6.024965506249052,0.6174155572988458,1.0,0.35294117647058826,1.3122643070969313,3.036925693946582,4.1436246544268425,4.733869526443608,4.907071770088827,4.958353821370877,0.13043478260869562,0.0,0.06734006734006737,0.037828947368421045,0.04136507936507936,0.017152777777777777,0.019231292517006802,0.011174000850340137,0.02040816326530612,0.0,0.3449351110926943,13.648393194706994,5.652892561983471,2.4934359438660025,119.40580302623546,1.0,3.9647722867938304,70.70748850603304,,56.83654832862571,55.755977579101014,54.7622656906056,56.84558283650525,72.23107713467593,56.37324179916412,56.90221340814412,67.79798644697661,0.1013670942930129,0.13174114021571498,-0.3004519455627915,0.4233193277310926,0.32122006433933065,-0.2600582297265136,0.09864052038776872,-0.06854772069762598,0.14887354153672755,0.1171744171067886,0.08998801655893773,-0.006382998874866642,0.007308074174431971,-0.09932071074613108,-0.14571960071553566,0.017608359133126836,-0.034779531188270894,0.18627107534046064,0.009829808888773434,0.12084266270172374,-0.08824448380028094,-0.03642150348820654,-0.10270937575254743,0.08650865811588852,-0.07474945961878558,-0.02965754138813977,0.06621039257824134,-0.027310924369747976,-0.031776480400333595,-0.058321420798105796,-0.07522002576990724,-0.08194378494727733,-0.040360831799444205,-0.08390441839495044,-0.01555000363134517,-0.08296679297779336,-0.0378851678222871,-0.0720937551892059,-0.039990695037744294,-0.13655462184873957,-0.06387763612534257,-0.054040575373151496,-0.0375520627494002,-0.03406354407075299,-0.0637324997084344,-0.05189145089956632,-0.08330440361197843,-0.032664392572922155,-0.045913932010218116,-0.037717460060011365,0.030447555804703118,-0.17588235294117652,-0.09542118432026692,0.026990195942541376,-0.04554717753922469,-0.01623767224003974,-0.04423213715259292,0.018876465284039672,-0.0255321606507371,-0.02822151654417977,-0.15000357276835954,-0.07909398706880622,-0.0022498713666603905,-0.22593582887700553,-0.18793123057093042,-0.16338805697574976,-0.15099726413278056,-0.17869664797508003,-0.09336260055565714,-0.012505123370768114,-0.06230568008503981,-0.1736876935309122,-0.13423731989196946,-0.12292697267050431,-0.10271924242613245,0.01778385772913825,-0.10370803188703773,-0.021013532319647237,-0.13364957679159298,-0.08769303684301125,-0.1327415164940194,-0.20452114832134544,-0.10437545075135148,-0.1063595994417676,0.16195323246217325,0.17407205417241287,0.05328404179910272,0.2829411764705885,0.19650959132610513,0.003546625584619885,0.1607734904404743,0.08786558773860326,0.1818358002342695,0.02112714156898108,0.1554587697000492,0.11506503576517667,15.060978762208448,19.72934709651525,5.234105828628907,10.76844976027251,26.637233715502127,32.90576271789479,34.8422174254596,35.58106169731039,35.632754005002695,42.228757040741556,35.73928936564378,6.489467675097773,0.0,0.0,6.489467675097773,2361.1393274876327,1340.389694353566,1236.3293360111177,166.0,33.0,47.0,67.0,94.0,109.0,128.0,144.0,156.0,265.15789760800027,23.0,4.727387818712341,5.60947179518496,6.51471269087253,7.418780882750794,8.332548939252638,9.243678431586693,10.159949819043163,11.07356742583888,11.990506562551321,0.606837606837607,0.9590769230769235,1.1235247797059649,0.5664892651821299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6810850145862125,0.9479135243841122,0.9852279306030223,0.6261860213875275,7.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,9.799819461700956,5.817862777835028,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,30.33183534230805,29.804393526229784,32.25193441227681,6.041840829147961,122.26068283373486,-158.52466292875064,-8.106902501813867,-4.0647349468910425,-12.194204840673128,340.41653943222906,441.3881545406822,17.685450516852264,11.317644988222618,16.976467482333934,0.375,0.976696805088549,0.26742434523130854,0.4799691898543663,0.10191678400455706,58.41134900182099,0.023303194911450935,5.0,0.0,0.24828087868389573,0.5745874331207134,0.7839752743205249,0.8956498163090859,0.9284197430758898,0.9381223256152162,2.4789000000000003,,0.4285714285714287,0.5570032573289901,0.6757487563729435,0.42750053544656264,-1.5545454545454542,0.48355263157894746,0.42078897933625536,-0.9579738847302863,81.06900000000005,0.0,0.0,9.883888251797686,0.0,12.462662452073971,31.581850931265393,59.28540045747372,0.0,0.0,3.8501476017100584,0.0,5.187385805840755,0.0,6.739336627357174,2.70805020110221,8.388222810119277,5.459585514144159,10.086100733470296,23.666666666666675,15.065701766817838,4.6790948601662885,0.0,0.0,0.0,0.0,5.454076908541195,0.0,37.40400000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.81746640853263,4.899909730850478,5.817862777835028,0.0,36.565829452212604,6.4208216229260096,0.0,22.73219530423895,42.595045982382736,0.0,0.0,0.0,22.093081342103066,26.56231556886229,27.101881050622787,141.41497701206612,,113.79205124580125,111.67815750200714,109.74045755679214,113.80975206651257,145.08397245117,112.88489845765884,113.9207148589355,135.97916244784528,27.101881050622787,141.41497701206612,,113.49205124580129,111.28825522187688,109.26743342733107,113.51050169169997,146.01669972389737,112.54641161555365,113.62616257340017,136.5539467786835,4.911907460201457,93.37024890113258,,75.54523442220963,74.15318509087402,72.96611909882141,75.55744783620237,99.6981151074229,74.93217848531359,75.63422949819517,92.55541087106737,1.3550940525311392,7.070748850603306,,5.689602562290062,5.583907875100357,5.487022877839607,5.690487603325629,7.2541986225585005,5.644244922882942,5.6960357429467745,6.798958122392264,2.499667081922348,70.70748850603304,,56.83654832862571,55.755977579101014,54.7622656906056,56.84558283650525,72.23107713467593,56.37324179916412,56.90221340814412,67.79798644697661,36.96862745098038,0.0,2.212478269085412,0.0,0.0,0.0,0.0,38.42388929351787,4.233416713907785,0.0,0.0,0.0,0.4315740740740739,4.923657407407408,0.0,0.0,0.0,24.421254834113572,451.89536477441146,51.178307976780324,118.4401020639167,161.60136152264687,184.62091153130072,191.37579903346423,193.3757990334642,987.0,118.0706043657933,10.781857491552465,62.418829293743926,19.37,19.37,0.6,8.502691675865798,5.523561956057013,4.111136613904509,4.413697907885778,,4.420237085136543,4.420584465197356,4.420756504627761,4.420233533536287,4.404348062546442,4.420405186453421,4.420211037791179,4.410770657383395,0.20555683069522543,0.2206848953942889,,0.22101185425682718,0.2210292232598678,0.22103782523138804,0.22101167667681434,0.22021740312732213,0.22102025932267105,0.22101055188955895,0.22053853286916975,2.1068467192308873,2.177860046515873,,2.179340514382187,2.1794190998527823,2.179458016897383,2.1793397108954924,2.175739429573173,2.1793785435913176,2.1793346216163445,2.1771966069924384,211.0899999999997,121.09246191355102,109.9538035731824,,109.25886990620191,109.24959596409509,109.2499150580799,109.25898647936563,110.04852490865537,109.25373944855303,109.25973130999586,109.69611033565171,6.054623095677551,5.49769017865912,,5.462943495310095,5.462479798204755,5.462495752903996,5.462949323968282,5.502426245432768,5.462686972427652,5.462986565499793,5.484805516782585,5.489701582390094,5.393207490624782,,5.386867200312777,5.386782316259654,5.38678523703493,5.386868267256831,5.394068584613918,5.386820242311909,5.386875084344517,5.3908610899258305,0.0,9.602752267573695,0.0,4.271854686318973,1.1822222222222223,13.576442507558578,2.9169255479969767,3.237324499244142,2.212478269085412,248.53390006905764,56.567233125852475,-73.34575070452257,-3.7508791307202336,-1.880660274474938,-5.641980823424815,157.5029788778957,204.22024528398285,8.182655119659362,5.236416545743149,7.854624818614727,687.0,38.0,1.1663395218799635,0.7436384621502992,0.0,0.0,0.30274943015462097,0.13347269497150652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2347080484106438,0.09011918096976085,0.38687411698245755,0.1535769271906612,13.526733258565956,11.788870064763074,9.826499840494925,7.296230545241081,8.898418359110861,5.833158423299529,7.858405100445214,4.5180133293141305,7.046358840142381,3.491413868167226,6.381769468057361,2.750305599532835,4.671580364474105,1.783577050215348,3.5833278781122595,1.156647863414992,3.027993036316439,1.6354995859034713,5.435820244254595,2.490445485913044,9.511244822742547,3.770204506316802,68.84315260713016,41.50732355885726,26.914457304336004,21.99234526940448,20.534074053172944,20.365591888103086,112.0,136.0,44.35906699999998,23.620932999999994,0.48717948717948717,149.03,4.777777777777777,4.305555555555554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,39.0,0.0,1.0,42.0,12.0,0.0,6.0,36.0,12.0,23.0,30.0,0.0,0.0,0.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,3.0,0.0,3.0,20.0,3.0,0.0,3.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,2.0,3.4011973816621555,7.306709654863054,3.970291913552122,4.537961436294641,5.104429173382616,5.666859120551603,5.879135362134062,6.283784286438975,6.672981862185758,7.014196460510204 +4680,COc1ccc(Cc2nccc3cc(OC)c(OC)cc23)cc1OC,0,22.73913043478261,6.197063043478257,3.239130434782609,8.0,160.26528305063542,89.71060471739136,1.4977758043875864,6.26665217391304,3.2059178743961354,7.7284035652173895,222.434216285114,25.125,6.397916666666667,3.7916666666666665,7.520833333333333,144.27376740168532,95.42764522916677,1.774676052291668,6.5423437500000015,3.280092592592593,7.822324249999994,264.0231885914621,20.8,6.3887375,3.6375,6.1375,155.51550128180787,77.7445697125,1.5074753645629626,6.478637500000002,2.977777777777778,7.911366250000005,222.7755937974057,22.448275862068964,6.408241379310345,3.7126436781609193,6.333333333333333,149.21342556254484,83.70544926436784,1.6517992852149197,6.524686206896545,3.182630906768836,7.86614409195402,240.01468494329052,18.047169811320753,6.16032075471698,3.047169811320755,4.047169811320755,151.5623698633013,64.94036130188677,1.4590463303688124,6.271561320754718,2.8262578616352183,7.6737769056603735,202.48813300905115,14.401639344262295,6.098049180327868,2.6557377049180326,3.139344262295082,159.82929256446704,50.03076731967214,1.2505102906776882,6.170615573770489,2.5997267759562823,7.683983573770491,168.14812628690217,14.211009174311927,5.934348623853206,2.5779816513761467,3.36697247706422,157.3244722678613,49.574793183486214,1.2822503370915594,6.023442201834865,2.506880733944955,7.509840110091739,168.50170356351126,12.869158878504672,5.80156074766355,2.392523364485981,3.130841121495327,162.06594949224967,45.19273770093454,1.1507556666622991,5.876108411214957,2.343198338525442,7.41680844859813,149.85835173969164,14.255813953488373,6.013476744186047,2.511627906976744,3.4302325581395348,163.0672709876567,50.53210245348836,1.1418674470973953,6.078511627906978,2.5723514211886314,7.614046279069769,155.27594809157213,7.427221172022681,0.13369210775047255,0.027532590658593373,0.5808128544423441,4.340264650283554,1.406876597498546,35.274758365311925,0.23407465425223292,0.12487523629489594,0.5594019113631589,0.08654428166351606,50.53313656795371,0.5727788279773153,0.0036395951480781108,-0.00802844208428164,0.3698212035286708,1.5754962192816633,-0.2804099939444802,2.6266683932931625,-0.03355065072533842,0.00626742674858216,-0.004475381572498803,-0.001549167533081302,-2.103815365735749,0.6988657844990547,-0.028521890359168245,-0.007449621811903455,0.07978497164461251,-0.07885160680529314,0.40525937650476684,3.678867592840265,0.08193578940309261,-0.02367251890359175,-0.08988198382692711,-0.02024931862003782,15.245151338560726,-0.33576689915911584,0.009081980205549399,0.007096416173207886,-0.13203724224844096,-0.38574191165286903,-0.006956730032164271,-1.6651533558166545,-0.00625833041683363,0.006538107033439745,0.04181137088460597,0.008919246572365976,-2.7935002049393898,-1.304579662588722,-0.010443974034311802,-0.0010544796653287572,-0.13946748938902168,-0.9198380711203049,-0.431836863050034,-6.322218949397225,-0.0670897810744536,-0.010464038591860767,-0.04713092421522355,-0.006498119235296212,-13.221015733892726,-1.1417614428708671,-0.023178298056958667,-0.0033531754006658823,-0.058360965632650544,-0.8060522482878302,0.05769746864691965,-5.300067792432364,0.0063551299871303325,-0.02304939880380551,-0.11201238891127013,-0.013130040038426972,-2.3518413652843244,-0.596746501101264,0.005422092488857289,0.0014214256138564362,0.000958186642618063,0.21697507847591968,-0.13805616052525382,-2.9321820643545893,-0.02829124417733449,0.0030970812160732815,0.0018266486687516564,0.0040523924489689845,-6.585167225928068,1.228609791000477,0.01507625876720315,0.0021629016198380616,0.0528726392594032,0.7653834602406234,0.03499298477539794,5.792488863456882,0.008123379443663785,0.016154345176050765,0.0839397744917329,0.006686257141847617,5.122318366641024,0.8114037015870226,-0.002899615333890185,-0.0016704270232367115,-0.04365410823405285,0.0828900514353543,0.06956910124123301,3.868294335143094,0.0027879960165908117,0.0007334593572778738,0.038922715083307705,-0.004884488943596955,4.3889482437390335,,,0.4693333333333334,1.36,0.72,0.08,0.64,0.08,0.7364950295807756,0.008819218274870479,0.01913921827487048,1.0139111901978992,0.2896192068815201,0.19813011733853325,1.750406219778675,0.48774932422005335,2.0382751634400575,1.6513899602355087,0.08260698411848559,0.3042782190860628,0.0,0.38688520320454833,7.372762133739143,1046.0,285.06489999999985,149.0,368.0,7372.203020329229,4126.687817000003,68.89768700182897,288.26599999999985,147.47222222222223,355.5065639999999,10231.973949115243,1206.0,307.1,182.0,361.0,6925.140835280895,4580.526971000005,85.18445051000006,314.0325000000001,157.44444444444446,375.4715639999997,12673.11305239018,1664.0,511.09900000000005,291.0,491.0,12441.24010254463,6219.565576999999,120.598029165037,518.2910000000002,238.22222222222223,632.9093000000004,17822.047503792455,1953.0,557.517,323.0,551.0,12981.568023941401,7282.3740860000025,143.70653781369802,567.6476999999994,276.88888888888874,684.3545359999997,20881.277590066275,1913.0,652.9939999999999,323.0,429.0,16065.611205509938,6883.678297999997,154.65891101909412,664.7855000000001,299.58333333333314,813.4203519999996,21463.74209895942,1757.0,743.9619999999999,324.0,383.0,19499.173692864977,6103.753613000001,152.56225546267797,752.8150999999996,317.16666666666646,937.4459959999999,20514.071407002066,1549.0,646.8439999999995,281.0,367.0,17148.36747719688,5403.652456999997,139.76528674297998,656.5552000000002,273.25000000000006,818.5725719999996,18366.685688422727,1377.0,620.7669999999998,256.0,335.0,17341.056595670714,4835.622933999996,123.13085633286602,628.7436000000004,250.7222222222223,793.5985039999999,16034.843636147007,1226.0,517.159,216.0,295.0,14023.785304938478,4345.760810999999,98.20060045037599,522.7520000000001,221.2222222222223,654.8079800000002,13353.731535875204,341.6521739130433,6.149836956521738,1.2664991702952952,26.717391304347828,199.65217391304347,64.71632348493311,1622.6388848043484,10.767434095602715,5.744260869565213,25.732487922705307,3.9810369565217387,2324.5242821258707,27.493383742911135,0.1747005671077493,-0.38536522004551865,17.7514177693762,75.62381852551984,-13.459679709335049,126.08008287807179,-1.6104312348162442,0.3008364839319437,-0.21481831547994257,-0.07436004158790249,-100.98313755531593,55.909262759924374,-2.2817512287334596,-0.5959697449522764,6.382797731569001,-6.308128544423451,32.42075012038135,294.30940742722123,6.554863152247409,-1.89380151228734,-7.190558706154168,-1.6199454896030254,1219.612107084858,-29.211720226843077,0.7901322778827976,0.617388207069086,-11.487240075614364,-33.55954631379961,-0.6052355127982916,-144.86834195604894,-0.5444747462645259,0.5688153119092578,3.6375892669607195,0.7759744517958399,-243.03451782972692,-138.28544423440454,-1.107061247637051,-0.11177484452484827,-14.783553875236297,-97.50283553875232,-45.7747074833036,-670.1552086361058,-7.111516793892082,-1.1091880907372413,-4.995877966813697,-0.6888006389413985,-1401.4276677926289,-139.29489603024578,-2.8277523629489574,-0.40908739888123763,-7.120037807183366,-98.33837429111529,7.039091174924198,-646.6082706767484,0.7753258584299005,-2.8120266540642724,-13.665511447174957,-1.6018648846880907,-286.9246465646876,-65.04536862003778,0.5910080812854445,0.15493539191035155,0.10444234404536887,23.650283553875244,-15.048121497252666,-319.60784501465025,-3.0837456153294593,0.3375818525519877,0.19910470489393056,0.4417107769376193,-717.7832276261594,131.46124763705103,1.613159688090737,0.2314304733226726,5.657372400756143,81.8960302457467,3.7442493709675793,619.7963083898863,0.869201600472025,1.728514933837432,8.98155587061542,0.7154295141776951,548.0880652305896,69.78071833648394,-0.2493669187145559,-0.1436567239983572,-3.754253308128545,7.12854442344047,5.982942706746039,332.67331282230606,0.2397676574268098,0.06307750472589715,3.3473534971644625,-0.42006604914933815,377.44954896155684,0.7124476123576851,0.5931506169147736,0.4516197446481976,0.29270907738840185,0.2749841642981205,0.1500563668135551,0.180195209051353,0.08177645753205721,0.11594609763325653,0.04370322164964813,0.07397481937440835,0.023724648625796478,0.04808119957000672,0.012976449846863936,0.03127562803443582,0.0070445982038187535,8.015180400666617,5.663022901075248,3.5283252469174267,2.161228144758004,0.42830464803006185,-0.5283791873878625,3.244502233131494,0.987195483903272,6.01134421197573,0.9966232906076407,14.547852793858333,10.924965847701827,16.007992107497994,11.675397687730236,2.019713214975841,0.7741145325227664,3.471732462532727,2.210707152081187,3.517885571886422,1.3716757359319702,3.685109036462739,2.4064638376191354,20.924060091935587,14.70549059148767,0.25232853371213165,0.5226491589019302,0.6421936053434593,0.722712845293101,0.7601466352483397,0.8200406991767217,1.6018835124777397,892.2437032331906,0.0,1.0,0.0,0.0,11.0,1.0,3.0,0.0,0.0,4.058200603828287,2.488352790598622,1.7941157611517564,1.3265119567098678,1.1091206523620416,0.7612945654055192,313.8999721164934,1406.7944551065252,64.69259435249774,30.58248815448968,57.75865388328976,,13.0,526.0,0.0,0.0,0.0,29.418868956061626,22.02982791547505,0.0,28.439190165110134,42.595045982382736,4.9839785209472085,18.947451815200196,11.733333333333334,34.0,18.0,2.0,16.0,0.0,0.03066666666666663,2.0,0.1519085527658704,0.06830917874396125,-0.08359937402190915,0.0,0.15438155802861653,0.0,0.592753623188406,0.8386666666666663,0.44084507042253557,0.5244444444444447,0.8386666666666663,18.41237573951939,0.220480456871762,0.478480456871762,25.34777975494748,7.240480172038002,4.9532529334633315,43.76015549446687,12.193733105501334,0.5596184419713834,0.17045454545454544,0.0,0.3409090909090909,0.25,0.23067103285728527,-0.5568593193962901,-0.05678301794543948,-0.01210563737818022,-0.042835332261253085,0.7693289671427146,1.8572249828178313,0.05423062440222312,0.04037445614821372,0.05627954493387367,-6.041356042952571,0.7669532641893616,0.803359712611681,1.2495559266930296,0.5087978030919446,0.5188711345818816,1.3089282152827522,0.7735048708912752,1.2107734013720555,0.766213134281476,0.8339004529134305,0.88252242151242,1.0189354406943902,0.8923549249172822,1.4424894615445796,1.5871742834196259,1.0842656631407648,1.1565426284843205,0.7407254374862058,0.8775708924041951,0.6404296775639973,1.3854458703583166,1.295784150376646,1.518744944101848,0.6387217031800085,0.9378867132989885,0.8934383202099736,0.8325009012028405,1.5003787772509187,1.0984620929953144,1.1032043314036284,0.9409008927101545,1.0536919868983987,0.888486507098409,0.8540011668771958,0.8867591718031017,1.0113073642105574,1.074205712721563,0.9162633615909503,0.9199342626621322,1.2870565116600396,1.1163282328578004,1.3481913582509726,1.080943943518683,1.30555024607907,0.9211158471257972,0.9371641836643885,0.9171709655828268,1.2421604600323835,1.1443908056527967,1.2232521419174314,1.140927373330638,1.0492336832557456,1.1943927786028448,0.9443851287782564,1.1394368099804117,0.9377304911246526,1.2274607070083154,1.2385074130768225,1.2059436272441864,1.0095598800622243,1.0144310362138982,0.727917037893199,0.6674875468169481,0.9734922850680421,0.8312621871303905,1.0893682454472307,1.0214347467953182,1.1163702545337169,0.761268804603502,0.8184509744947973,0.691351476983327,1.1327867548541908,0.8068954075018498,0.6450615508235641,0.5969794084861592,0.7870542877348805,0.7067197320003908,0.9356530190323737,0.8122910155694395,0.9353323470957987,0.6566204340413336,0.685068024741693,0.6247268910797699,0.9112669063883879,0.9020802381812052,1.0310667561903597,1.0395356217773584,1.0477889000321683,1.0024701705696462,0.9302320058910717,0.9007781709183894,0.9292695696770269,1.0064565256499038,0.9593903268955487,1.0395954209663147,0.881790456282947,5.0,0.14437302316090195,2.88888888888889,1.625,1.8711111111111114,0.7986111111111113,0.5044897959183674,0.3975694444444444,0.2501889644746787,0.19250000000000006,4858.023845690217,5422.471004203467,2452.675721153954,2243.5380810849506,12.516568999501045,0.3607276539809512,8.001496428420332,0.5642785210830977,1.0,0.25,1.4653613522287257,3.035209165458391,3.7294461949052566,4.197049999347145,4.4144413036949715,4.762267390651494,0.18518518518518512,0.011105617166223226,0.07807807807807811,0.038690476190476185,0.04923976608187135,0.024200336700336705,0.017396199859254044,0.01529113247863248,0.010877781064116465,0.010131578947368422,0.44019615175154214,19.753086419753085,9.273922571219869,4.465974625144176,146.6687013282533,1.0,4.1406357660145385,127.15689452850614,,94.42568091288925,93.31052461224692,96.15875602942003,94.44659963423011,133.05472555488163,94.12230328907994,94.47584360147938,113.36807339801676,0.07711885976075335,0.027223709830883763,-0.2915977716675866,0.6367304041225935,0.3629954268292683,-0.19931385200596458,0.07446311512869624,-0.14333312093322625,0.050189508621080625,-0.008000297248883414,-0.017900287613507048,-0.041632392299786755,0.09409518961567831,-0.2133401203637425,-0.2705746765453147,0.13736777868185523,-0.018167465156794457,0.28805609335269766,0.1042917871964205,0.3500412706571839,-0.189569362236789,-0.16067514608218153,-0.23397639024571393,0.301686227571883,-0.04520760744595886,0.0679320594039875,0.2577460385477012,-0.22733181822432957,-0.08887520525451556,-0.0049448047145950625,-0.04720523776724473,-0.0267364719039158,0.052357114408174935,0.07474298895890329,0.1030599180087251,-0.0552805623134608,-0.17564841982932916,-0.07811960040157932,-0.038299326002569134,-0.24012466033130175,-0.21193133258825841,-0.3069472218230429,-0.17922784569983888,-0.2866170251912851,-0.08379594627672762,-0.08425234747656514,-0.07508432805024465,-0.26163061768615836,-0.15372659793298268,-0.17337072806286682,-0.12178931660465818,-0.10048153236671159,-0.18571499971439992,0.04101103732161504,-0.15025100207757291,0.02715001334694787,-0.18457942092997356,-0.20023597816874933,-0.15171470357194172,-0.04654057762913092,-0.08034586385405161,0.04055656373506553,0.05162702019153384,0.0016497338777703996,0.049991209282997176,-0.09812954510062956,-0.08312408646399132,-0.1208641929546484,0.024801404249273636,0.003265360077695216,0.046824496905811475,-0.13031384301809087,0.16541984714666647,0.11276850235125312,0.07855786789765766,0.09103214375337443,0.17634488260770462,0.02487281744370199,0.16421058943816982,0.03470422489617452,0.12936388074495317,0.15005271306132512,0.07725821987689224,0.10136553387603123,0.1092472787323836,-0.02168875472665989,-0.06067089886128619,-0.07516036861127408,0.019097925613807677,0.049449327229501315,0.10966182376310908,0.011910712953938779,0.005873537292420344,0.06957915997902163,-0.056439187543179746,0.08685287599033276,7.823539956430672,20.953932543443983,8.442719658568311,13.379675514541798,27.62241781002303,32.988862091631766,35.72055455259615,38.02664150911788,39.50742411781353,50.956879086001436,41.28474900588772,2.0651746029621396,7.606955477151569,0.0,9.672130080113709,4941.946730588668,4072.618776699044,1492.0632995265687,118.0,37.0,51.0,66.0,85.0,91.0,100.0,110.0,121.0,339.14705815200057,27.0,4.859812404361672,5.720311776607412,6.5998704992128365,7.478169694159785,8.36380888451688,9.246961555431827,10.134956352596328,11.020283511637867,11.909625606070497,0.6521739130434784,0.9849565217391307,1.1193222572261377,0.6142756820740407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6731404972663372,0.9718670076726339,1.0066974888375189,0.6370946070319206,7.0,1.0,0.0,0.0,0.0,2.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,18.947451815200196,0.0,22.99804733313562,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,6.06636706846161,41.281511048469845,18.003889409003882,34.1331181599586,134.4222857833493,-324.50672997732397,-33.08999388156964,-7.054494129941826,-24.962056152101844,448.3222578998427,1082.2877251292014,31.602600470928095,23.527994024547855,32.796597731187916,0.46153846153846156,0.8815386349021901,0.20416435951407855,79.25416440955941,0.06665927933011953,99.22927626144256,0.11846136509780969,7.0,0.2222222222222222,0.26529282442859964,0.5495021490851658,0.6751886236770877,0.7598448306974732,0.7992019169540038,0.8621732549644526,3.860000000000003,,1.1428571428571428,1.3285248953001396,0.9177863289708527,1.1395624948769625,-4.847358875538426,1.1960679314565485,1.1342421939878375,-1.9153025404755315,97.19900000000005,18.947451815200196,0.0,4.9839785209472085,0.0,6.4208216229260096,28.439190165110134,53.852425468928196,0.0,22.99804733313562,4.007333185232471,0.0,5.313205979041787,0.0,6.842683282238422,0.0,8.473659189392508,0.0,10.15521856070225,30.000000000000004,13.607714632149156,4.562716285588309,0.0,0.0,0.0,2.0954273746535654,4.871256499883395,0.0,45.308000000000014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.48882383240233,18.947451815200196,0.0,22.99804733313562,33.42316868605734,6.4208216229260096,0.0,11.257379486545457,42.595045982382736,0.0,10.772448428929591,0.0,28.256681375405872,30.96446287425151,32.818581567035295,254.31378905701243,,188.7599332543499,186.51476723286984,192.29259197003873,188.80203426887007,268.04839465997884,188.14892114364335,188.86094782743976,227.50226781222358,32.818581567035295,254.3137890570124,,187.77125800655284,185.38384102674712,191.52165145370338,187.81617175300323,270.956809985302,187.1229329950919,187.87861992380562,228.6514493365089,4.889649350487981,189.45942184239337,,143.04744615073076,141.77588363320433,144.90237401781079,143.07093554902582,186.35628897260048,142.69592674719647,143.10521995997283,164.32779252012563,1.3127432626814117,10.172551562280496,,7.550397330173996,7.4605906893147935,7.691703678801549,7.552081370754803,10.721935786399154,7.525956845745734,7.5544379130975905,9.100090712488942,2.44482467524399,127.15689452850614,,94.42568091288925,93.31052461224692,96.15875602942003,94.44659963423011,133.05472555488163,94.12230328907994,94.47584360147938,113.36807339801676,44.70588235294116,0.0,6.529637728574104,0.0,0.0,0.0,0.0,46.30808448652587,0.6737870842781557,0.0,21.49279372820665,0.0,0.0,0.0,0.0,0.0,0.0,29.306351923468345,513.7118295351809,67.40662220252138,139.619621611086,171.5545249656418,193.0642999699687,203.0642999699687,219.06429996996872,831.0,127.33380028459511,69.03271414801112,59.792100196607436,49.81,49.81,0.8571428571428571,9.021413060773783,5.754887502163468,4.235445691277391,4.921330012750014,,4.923423260889741,4.925810454028783,4.916154775424638,4.9233680377695,4.830642212337514,4.9239165850336,4.923331329172802,4.876171190678706,0.16941782765109564,0.19685320051000055,,0.19693693043558963,0.1970324181611513,0.19664619101698552,0.19693472151078,0.19322568849350055,0.19695666340134402,0.19693325316691207,0.19504684762714825,2.3597792944118843,2.5098695536411153,,2.5102948051660827,2.51077955215349,2.5088174070987352,2.5102835886959523,2.491270153916688,2.5103949995641623,2.5102761326753447,2.5006510517117246,259.1400000000001,221.3262283977459,146.32103150021862,,145.94366041236376,145.6499117433847,146.67696338521912,145.94998285461293,155.48663461727622,145.8767477113531,145.9555437672368,151.02643522792067,8.853049135909835,5.852841260008745,,5.83774641649455,5.825996469735388,5.867078535408765,5.8379993141845175,6.219465384691049,5.835069908454123,5.838221750689472,6.041057409116827,6.31592849155465,5.902093785550688,,5.899511391522168,5.89749660932943,5.904523372553325,5.899554711699883,5.962850508785143,5.899052803292417,5.8995928124696,5.933745621101086,21.49279372820665,4.562716285588309,2.0954273746535654,2.0538035661795586,2.8174529337038363,11.797855174477197,2.4836465419501135,0.0,6.529637728574104,309.77278340341013,78.33385358966954,-189.1045262827605,-19.28301338499492,-4.110967962668707,-14.546502021750806,261.2573496028622,630.6972665143364,18.416242990633226,13.71081014161601,19.112038379222316,1534.0,42.0,1.340206908719886,0.5881124490795198,0.0,0.0,0.30274943015462097,0.0746558122233941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1916383190435099,0.06352349436206599,0.43860127974755003,0.11080007424269711,17.811190308942127,14.82876542286934,12.193733105501336,7.90314508948685,10.17441407903046,5.5520855721015385,9.189955661619003,4.170599334134918,7.652442443794931,2.884412628876776,6.287859646824709,2.0165951331927006,4.375389160870611,1.1808569360646182,3.127562803443582,0.7044598203818754,3.715814100576593,1.3289376545145213,6.105854095077696,1.8078402139041685,9.29740100703751,2.3077833101039884,84.1843689141428,54.59878128703869,41.165623951944234,34.39009054158224,29.458833311746435,25.84494427796865,128.0,152.0,51.71065299999998,29.151346999999994,0.3695652173913043,129.05,8.13888888888889,5.861111111111111,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,17.0,46.0,0.0,0.0,48.0,17.0,0.0,8.0,40.0,17.0,27.0,31.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,5.0,0.0,1.0,25.0,5.0,0.0,1.0,4.0,0.0,3.0,6.0,0.0,0.0,0.0,1.0,3.0,3.597312260588446,7.789594469601997,4.23410650459726,4.8846940707384086,5.494089721066114,6.110635508039214,6.4256790685021326,6.801004909035257,7.207037774343987,7.625772266798405 +170361,c1cnc2cc3c(cc2n1)C1CNCC3C1,0,21.655172413793103,5.946368965517242,3.689655172413793,6.758620689655173,161.58538944535303,85.42174317241378,1.5746781987254144,6.040596551724139,2.574712643678161,7.447298206896553,228.9569282761527,24.96875,6.2516875,4.5,6.96875,145.79338404722182,95.13331709374994,1.917928250624999,6.407890625000002,2.7187500000000004,7.635671375000002,277.9871119025145,20.89830508474576,6.1431186440677985,4.101694915254237,5.47457627118644,151.77033084464995,77.71704237288135,1.7068923277041863,6.273457627118646,2.4948210922787197,7.58292366101695,240.29957503205057,15.829268292682928,5.894437804878049,3.3048780487804876,3.8048780487804876,156.92840351887116,56.690966134146336,1.4308109356467922,6.000745121951221,2.253048780487806,7.416029024390243,190.1659986674127,12.346153846153847,5.703153846153847,2.8333333333333335,2.6153846153846154,159.09520765769912,42.13491869230768,1.2616581624670897,5.7995384615384635,2.0292022792022792,7.282403384615386,158.45232693798494,12.180327868852459,5.735672131147539,2.6721311475409837,2.622950819672131,164.73727543566446,42.25968678688525,1.1399343906906716,5.80955737704918,2.038251366120218,7.327840393442623,144.28391961041044,13.7,6.0989949999999995,2.65,2.55,170.09465018579482,47.22642765,1.1770389489698003,6.148054999999998,2.483333333333333,7.628389799999999,154.123040502584,10.571428571428571,5.9305,2.2857142857142856,1.2857142857142858,163.8052933761678,32.338009571428564,1.1556631632034997,6.002750000000001,2.3095238095238093,7.486236000000001,139.60017735559546,3.6,5.295400000000001,1.5,0.0,173.47195813791453,6.762772799999999,0.7410714064245,5.3328,1.5,7.034169600000001,70.13313625373497,6.73959571938169,0.06825231866825202,0.010466740211699278,0.5969084423305588,3.2913198573127227,1.6361995747350666,32.34901092033293,0.2260117336844138,0.06847181926278237,0.3419209935262255,0.030878972651605215,51.04909894530457,0.5394991082045185,0.0005714959869202742,-0.0030424996707434943,0.17356569560047563,0.8929473840665882,-0.14800555625069411,2.5866207725549852,0.005884463910093932,0.002203288495838248,0.04074184172281671,-0.0008371148929845007,2.742819781657036,-0.3193736270380301,-0.009952201777544927,-0.0022820930746348268,-0.018883895282049198,0.041818658175295925,0.033735618816646565,-1.4706610968379095,0.005202308663796726,-0.009004548660795282,0.008475136092581005,-0.004897001874281995,0.31321423188999725,-0.29300194309909805,0.0005079841071894652,0.0009027289989249494,-0.07924654157362022,-0.039848032249644665,-0.03872158923128778,-1.4265256339578325,-0.01211060774640241,-0.00022623473797163583,0.03952700198821251,0.0006358986688321101,-2.799738883507782,-0.5154577883472056,-0.0002971462544589501,-0.00012199292209156317,-0.04872099759138998,-0.12421110399707307,-0.27576540208599887,-2.529016721393942,-0.03351286958910255,-0.0008401216500502914,-0.013229570007215634,-5.677002347886959e-07,-6.546253851870938,0.8844856825403017,0.006478207052494117,-0.0005627913206076521,-0.0010915966550359743,0.046158944270092137,-0.2734898825038541,4.197446891990412,0.0005498495923606044,0.008208056373170115,-0.02391333069097634,0.0015967537474902828,2.8072334810948503,-0.9292508917954816,-0.007106629013079691,0.0034068895403564356,-0.14863258026159337,-1.337871581450654,0.5696844848434194,-4.369928146195005,0.018467550635449928,-0.00958733650416171,-0.09038842647641701,-0.0012082898929845001,-0.258875853493584,-4.030236113470357,-0.03324985561406486,-0.004223969857609891,-0.14863258026159334,-1.76422626125361,-0.3541185996088147,-19.314181339052148,-0.10352526076900001,-0.03636837098692029,-0.1894853066077799,-0.012915524375743141,-26.663097888494377,0.7500594530321051,0.003924577883472137,-0.00018879632898525665,0.1961950059453032,0.6741973840665871,0.10431402839362616,3.6156332313912087,0.024689063135999795,0.004825422116527983,-0.002840533756110375,0.001248806658739521,5.891332857971938,,,0.48125000000000007,1.3125,0.625,0.0,0.6875,-0.0625,0.6940047424218447,-0.00010016722492933727,0.02139983277507066,0.6758799153451795,0.23315758524606256,0.2615809296271852,1.3698846577670243,0.49473851487324777,2.142949471783035,1.7585107007863388,0.38443877099669616,0.0,0.0,0.38443877099669616,7.279687841931034,628.0,172.4447,107.0,196.0,4685.976293915238,2477.2305519999995,45.665667763037014,175.17730000000003,74.66666666666667,215.97164800000004,6639.750920008428,799.0,200.054,144.0,223.0,4665.388289511098,3044.266146999998,61.37370401999997,205.05250000000007,87.00000000000001,244.34148400000007,8895.587580880465,1233.0,362.44400000000013,242.0,323.0,8954.449519834347,4585.3054999999995,100.70664733454699,370.1340000000001,147.19444444444446,447.39249600000005,14177.674926890984,1298.0,483.34389999999996,271.0,312.0,12868.129088547435,4648.659223,117.32649672303697,492.0611000000001,184.75000000000009,608.1143799999999,15593.611890727841,963.0,444.84600000000006,221.0,204.0,12409.426197300532,3286.523657999999,98.409336672433,452.36400000000015,158.27777777777777,568.0274640000001,12359.281501162824,743.0,349.87599999999986,163.0,160.0,10048.973801575532,2577.840894,69.53599783213097,354.383,124.3333333333333,446.998264,8801.319096235036,548.0,243.95979999999997,106.0,102.0,6803.786007431792,1889.057106,47.08155795879201,245.92219999999992,99.33333333333331,305.135592,6164.92162010336,296.0,166.054,64.0,36.0,4586.548214532699,905.4642679999997,32.358568569697994,168.07700000000003,64.66666666666666,209.61460800000003,3908.8049659566727,72.0,105.90800000000002,30.0,0.0,3469.4391627582904,135.25545599999998,14.82142812849,106.65599999999999,30.0,140.68339200000003,1402.6627250746994,195.448275862069,1.9793172413793085,0.30353546613927906,17.310344827586206,95.44827586206895,47.44978766731693,938.121316689655,6.554340276848,1.9856827586206887,9.91570881226054,0.8954902068965512,1480.4238694138326,17.263971462544593,0.018287871581448775,-0.09735998946379182,5.55410225921522,28.574316290130824,-4.736177800022212,82.77186472175953,0.18830284512300582,0.07050523186682393,1.3037389351301347,-0.026787676575504023,87.77023301302515,-18.843043995243775,-0.5871799048751507,-0.13464349140345477,-1.1141498216409027,2.4673008323424597,1.9904015101821475,-86.76900471343666,0.3069362111640068,-0.5312683709869217,0.5000330294622792,-0.2889231105826377,18.479639681509838,-24.026159334126042,0.04165469678953614,0.07402377791184585,-6.498216409036859,-3.2675386444708625,-3.1751703169655983,-116.97510198454226,-0.9930698352049976,-0.018551248513674137,3.241214163033426,0.05214369084423303,-229.57858844763814,-40.20570749108203,-0.023177407847798107,-0.009515447923141927,-3.8002378121284184,-9.6884661117717,-21.50970136270791,-197.26330426872747,-2.614003827949999,-0.06552948870392272,-1.0319064605628194,-4.428061831351828e-05,-510.6078004459332,53.953626634958404,0.39517063020214116,-0.03433027055706678,-0.06658739595719443,2.81569560047562,-16.6828828327351,256.04426041141517,0.033540825133996865,0.500691438763377,-1.4587131721495568,0.09740197859690725,171.24124234678587,-37.170035671819264,-0.2842651605231876,0.13627558161425743,-5.9453032104637344,-53.51486325802617,22.787379393736774,-174.7971258478002,0.7387020254179971,-0.38349346016646846,-3.61553705905668,-0.048331595719380005,-10.35503413974336,-112.84661117716999,-0.9309959571938161,-0.11827115601307696,-4.161712247324614,-49.39833531510108,-9.915320789046811,-540.7970774934602,-2.898707301532,-1.0183143876337681,-5.305588585017837,-0.36163468252080794,-746.5667408778426,15.001189060642101,0.07849155766944274,-0.003775926579705133,3.9239001189060643,13.483947681331744,2.086280567872523,72.31266462782418,0.4937812627199959,0.09650844233055966,-0.0568106751222075,0.02497613317479042,117.82665715943877,0.658448089187702,0.5612405718560822,0.41662190726168236,0.30889976099676275,0.2603748333546719,0.17192779453334248,0.16420966573490875,0.09522630940538604,0.10309188178679618,0.05366221866444461,0.0663244888130509,0.029670066913152462,0.04180611365236499,0.015937581964009895,0.027329340065363444,0.008820559217810562,7.052627026837647,5.682657086119395,3.1643562747229574,2.179434996660034,0.39015136191529315,-0.39673823979738615,3.2306107630170575,1.7514773941044566,5.039186967590604,1.9683747445715831,14.549947669116207,10.946380781125438,14.032719452811168,11.696072587282098,2.0022276812689186,1.0088372630923303,3.1494111889299456,2.228341019673368,3.0455727419679115,1.2112341736506675,3.3130316203642063,2.4236474885283523,20.903955702310256,15.588355154076538,0.2642088624567014,0.628045568113237,0.733953827427201,0.7471923598414466,0.7736694246699377,0.8001464894984286,1.568700390794487,515.6063038458257,0.0,2.0,2.0,0.0,4.0,1.0,2.0,2.0,0.0,3.4815972473735126,1.5862068965517238,1.0344827586206895,0.9655172413793105,0.8275862068965516,0.6896551724137936,224.03675580414017,391.419808444365,31.234127590885674,13.497234773943617,24.564708394328882,,7.0,218.0,0.0,0.0,0.0,11.835812092322787,24.122914247057675,17.547724606320003,12.393687143226153,0.0,27.417479782823968,0.0,7.700000000000001,21.0,10.0,0.0,11.0,0.0,0.018749999999999933,-1.0,0.10968801313628879,0.044926108374384155,-0.06476190476190463,0.027941176470588136,0.09303225806451587,0.0,0.5620689655172415,0.7749999999999998,0.4523809523809527,0.5171428571428573,0.7470588235294117,11.104075878749516,-0.0016026755988693964,0.3423973244011306,10.814078645522873,3.730521363937001,4.185294874034963,21.91815452427239,7.915816237971964,0.6209677419354841,0.0,0.0,0.3896103896103896,0.38461538461538464,0.2137791400638781,-0.2138061181280131,-0.03560737324157071,-0.007372624763034935,-0.021380611812801313,0.7862208599361219,0.7863200778335151,0.0441996997213439,0.027114485442534995,0.04138526725439552,-3.700820481247452,0.7655478122794636,0.8369079071153063,1.2669502074774774,0.7329432270916335,0.5592033959537573,1.205873460488429,0.7674707970906076,0.9487903612198899,0.7967473621511232,0.7194322353168467,0.9044306054522402,0.8720473264577118,0.9396911594081551,1.0934124779226246,1.2645476708813255,1.178877709500979,0.914862349368081,1.0565091970835754,0.9381959693736064,0.9364518415997246,1.0574990481245168,0.8668168600843524,1.139898562975486,0.922286317605126,0.9809843881783912,0.8673833549147997,0.7674749310424959,1.1835584491303082,0.9659171013675456,0.9969982787871731,0.9827830554510272,1.0323492111302217,0.8876973716980188,0.7518660232970178,0.8452080283693794,1.0242183228650896,1.0331279517941478,0.7696127030380221,0.6951766457798868,1.0472469097967108,0.9439936267970952,1.0630001187267422,1.0372509310283071,1.1487957906455017,0.8171767816934593,0.8331624261879282,0.7173079632399159,1.1312569680967688,0.8830477688952646,0.9029044909365428,1.0266126701483211,0.981124681601463,1.0243295745285703,1.0662860787581858,0.8839943904425102,0.9630879754869471,0.8880357999754486,1.0518534471837226,0.9289178664966813,0.9306997511496686,1.1854798870853915,1.64429427075167,1.2237568701165564,1.0918326693227094,1.6061054913294799,0.7065902825599114,1.1754077355272181,0.7798269310783045,1.5874489448604494,1.8590030911901074,1.684567836010144,0.887942885803261,1.5809809456598445,1.675123083194832,1.5881778157367117,0.8087649402390439,1.4562861271676304,1.2029438448226155,1.5770178810353366,1.3638747479918654,1.6804799183117762,1.826506955177743,1.650095097210482,1.436903556963756,0.9741707833450951,0.7899996864122423,0.8598598582321988,0.40438247011952194,0.6893786127167632,0.6710324376763095,0.9748560612897165,0.8999703055972104,0.842954390742001,0.7765455950540956,0.7148879966187658,0.9465973490460026,2.5,0.0,1.7777777777777786,1.0416666666666667,0.8716666666666666,0.3716666666666667,0.04585034013605438,0.014739229024943318,0.0,0.0,2848.0253089288644,3184.2847064115813,1574.666218495373,1441.934083214543,9.399504117575132,0.4295645560120589,5.361810304575451,0.7530467479526741,1.0,0.38461538461538464,1.3763837477540595,3.271774098575848,3.8234982365068824,3.8924637537482614,4.03039478823102,4.168325822713778,0.13157894736842105,0.0,0.06349206349206352,0.038580246913580245,0.04842592592592592,0.026547619047619046,0.004585034013605438,0.0036848072562358294,0.0,0.0,0.31689464401745104,9.97229916897507,3.75,1.5157644259369423,93.91527406165781,1.0,3.7722635891049663,49.436136950768045,,37.606969607727414,37.186187158481445,36.798086070228905,37.61048253068649,43.94709096909997,37.426706821998664,37.632500512594774,42.04146091883947,0.08004917960479886,0.00837328310702665,-0.2906826394088503,0.2907744023904383,0.27130373916185,-0.09045690913020751,0.07995981017549961,0.026036099162491118,0.03217803352620774,0.11915571870169998,-0.02710954481644596,0.05372905376049378,-0.04738765355310219,-0.14581485247290585,-0.21803283815948735,-0.03163616719562426,0.012705741158028857,0.020618278685293655,-0.04546232033058937,0.023017869820249455,-0.13150736693934573,0.024786825766903248,-0.15858694295088308,0.006135548684719856,-0.04347470609497908,0.007442737728202003,0.08624738750235887,-0.132761636381304,-0.012107006908219352,-0.023665566126037884,-0.04409796755365993,-0.05358397791555713,-0.0033040561855584433,0.1156027349492969,0.020593258590779363,-0.05484404115550601,-0.07648200423429777,-0.004353643367095886,-0.011655292825096076,-0.0816222290325876,-0.03773899510893731,-0.16854019909560897,-0.07817910500021907,-0.14827933507159174,-0.012269597318950406,-0.03869189157056224,-1.838468660190949e-05,-0.12823446421424162,0.1312372016613256,0.09491556007030565,-0.05376949357915541,-0.0018287505714845705,0.014024448024258488,-0.167149464360506,0.12975503029528832,0.002432836487721359,0.11987495675657586,-0.0699381761978361,0.05171006709017818,0.05499085271030148,-0.13787932251235002,-0.104122895042178,0.3254967135372634,-0.2490039840637451,-0.40648482658959545,0.34817542654334366,-0.1350869167826177,0.08171058349225647,-0.14001872021783532,-0.264354714064915,-0.039129860524089954,-0.005071115041050006,-0.5979937493698958,-0.4871608212415388,-0.4035611634736589,-0.24900398406374505,-0.536023947151115,-0.21642750986911458,-0.597056317629552,-0.45805259347089955,-0.5311436351259357,-0.5541786266283948,-0.4182627615712384,-0.5223030070924849,0.11129146083274528,0.057501019160213204,-0.018037739082721105,0.3286852589641434,0.2048410404624277,0.06375385375009444,0.11176951407557895,0.1092379706731235,0.07047311095983723,-0.008307573415764845,0.040441975606808366,0.11540522711838806,5.981246271612102,16.72800816595491,7.383136998085741,11.498134436537336,28.34254927167627,28.898687202710747,29.727032030296957,30.62489409926247,30.763928582021094,34.28719154852856,28.13617121258142,6.1510203359471385,0.0,0.0,6.1510203359471385,1583.7083810596516,1432.9492312408881,335.440788184085,120.0,28.0,41.0,59.0,81.0,92.0,107.0,120.0,127.0,211.110947416,19.0,4.553876891600541,5.4510384535657,6.364750756851911,7.280008252884188,8.201111644442758,9.122273893107732,10.04607159599192,10.969559431719599,11.894487148996834,0.6436781609195404,0.9697931034482756,1.1231585334744862,0.6065359627238248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6954017964071859,0.9583502366463829,0.9917371976793832,0.64813004906055,4.0,2.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,0.0,0.0,9.967957041894417,0.0,0.0,0.0,0.0,41.516270835566004,25.483199955051305,11.033401435232523,83.6668316369378,-83.67739005320422,-13.935672587820854,-2.885427243213939,-8.367739005320423,307.70358744107796,307.74241839116075,17.29845500306482,10.611807530729678,16.19696938900846,0.42857142857142855,0.8753736429044748,0.31547545595332055,24.683051978485853,0.12222404305005152,178.99973163481283,0.1246263570955251,4.0,0.0,0.2833242347251948,0.6734843347179316,0.7870550009029988,0.8012513341761323,0.8296440007223991,0.8580366672686658,1.8038999999999998,,0.4285714285714287,0.5570032573289901,0.6757487563729435,0.42750053544656264,-1.5545454545454542,0.48355263157894746,0.42078897933625536,-0.9579738847302863,62.50670000000003,0.0,0.0,15.284745645900749,0.0,18.256633715248796,13.08951281182515,35.65332426354336,0.0,0.0,3.6635616461296463,0.0,5.017279836814924,2.3978952727983707,6.591673732008658,4.948759890378168,8.261268150577648,7.195187320178709,9.979012377622373,18.66666666666667,8.034508692365835,8.779965986394558,0.0,0.0,0.0,2.0718518518518527,3.005555555555556,0.0,28.12399999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.5715974707601,5.316788604006331,0.0,0.0,23.057469853719567,0.0,0.0,29.38353669864279,24.52642128014937,0.0,11.033401435232523,0.0,17.58954291899092,20.16665209580839,22.463707295614707,99.18803898589185,,75.70425012234897,74.85359978796265,74.07319545583886,75.71137096591843,89.09711162545005,75.33927108301049,75.75600943514709,84.99819031718076,22.46370729561471,99.18803898589185,,75.43639297949186,74.50547275213204,73.65085248310575,75.44418313126437,89.68006617090461,75.03705068827367,75.49301632306197,85.35743052395463,4.9163126541040185,72.97229889876348,,55.33313110436656,54.836102150952456,54.379931437684405,55.33729128878967,63.42993096608273,55.119892785607874,55.36337015959612,60.91222353999082,1.4039817059759192,6.199252436618241,,4.73151563264681,4.678349986747666,4.6295747159899285,4.731960685369902,5.568569476590628,4.7087044426881555,4.734750589696693,5.312386894823797,2.5250750946855725,49.436136950768045,,37.606969607727414,37.186187158481445,36.798086070228905,37.61048253068649,43.94709096909997,37.426706821998664,37.632500512594774,42.04146091883947,27.792156862745102,0.0,0.0,0.0,0.0,0.0,0.0,28.76037873270211,3.544834183673469,3.507439058956916,0.0,0.0,1.389178004535147,0.0,0.0,0.0,0.0,18.79577142275595,342.59534947337363,39.915128684867724,94.8814488586996,110.88144885869959,112.88144885869959,116.88144885869959,120.88144885869957,810.0,108.88317806916118,48.7750696046421,64.0546382265085,37.81,37.81,0.75,8.70107342866976,5.247927513443585,3.713151708208095,3.9576659871316067,,3.9534958996711604,3.9547957521287707,3.955988577093126,3.9534850258698118,3.933138353586827,3.954053436157902,3.953416865117039,3.9392119425786305,0.23207198176300595,0.24735412419572542,,0.24709349372944753,0.24717473450804817,0.24724928606832036,0.24709281411686324,0.24582114709917668,0.24712833975986886,0.24708855406981495,0.2462007464111644,1.781884662266933,1.8456580835603331,,1.8446038546350922,1.8449325861808035,1.8452341555129337,1.8446011042044408,1.8394412996985632,1.8447448683585577,1.8445838633802307,1.840984317976044,159.02999999999972,92.39170924270326,79.83837005810047,,80.12232974643022,80.02744137163731,79.93923519867288,80.12311848222583,81.50414891975035,80.08177874637737,80.12806071614555,81.10938603986824,5.774481827668954,4.989898128631279,,5.007645609151889,5.001715085727332,4.996202199917055,5.007694905139115,5.094009307484397,5.005111171648585,5.008003794759097,5.069336627491765,4.996040877057112,4.850007845936601,,4.8535582178336485,4.852373222248152,4.8512704152911645,4.853568061929744,4.870657555187638,4.853051976123615,4.853629743022464,4.865802317824161,0.0,8.779965986394558,3.507439058956916,5.077407407407408,1.389178004535147,4.4907407407407405,4.847989417989418,2.240612717309146,0.0,181.9864181213702,32.74472296067813,-32.748855212477125,-5.454010020829464,-1.129270869395763,-3.274885521247713,120.42608196862355,120.44127925383064,6.770103583951677,4.153147560476918,6.3390146975700326,386.0,27.0,0.9388321936425752,0.5844412461350601,0.0,0.0,0.2749716523768432,0.12777777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.05892556509887896,0.4444444444444445,0.24780028017618944,0.7744970456077248,0.36271110841992443,10.535169427003233,8.979849149697316,7.915816237971964,5.869095458938492,7.290495333930812,4.81397824693359,6.732596295131259,3.904278685620828,6.082421025420975,3.166070901202232,5.372283593857123,2.4032754199653494,3.846162456017579,1.4662575406889105,2.9242393869938885,0.94379983630573,2.6474815208841846,1.4048500992426092,4.617186276660675,2.2109253021811615,7.4816226034607665,3.0747751296824437,54.33005158008999,30.904239472549456,28.932408859924507,27.74979603435448,26.370081071189446,25.85753458977494,94.0,116.0,33.678308999999985,15.891690999999996,0.5517241379310345,121.03,3.166666666666667,3.361111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,10.0,11.0,29.0,0.0,1.0,32.0,11.0,0.0,5.0,27.0,11.0,19.0,21.0,0.0,0.0,2.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,3.0,1.0,2.0,16.0,3.0,0.0,3.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,2.0,3.2386784521643803,7.2640246719461885,3.8815637979434374,4.54595082632812,5.190871344399189,5.829129424246144,6.193703614304682,6.624521630936252,7.015312598648124,7.332941311702503 +2162,CCOC(=O)C1=C(COCCN)NC(C)=C(C(=O)OC)C1c1ccccc1Cl,0,27.39622641509434,6.303937735849056,3.0377358490566038,7.501979967388773,163.71178122369105,110.18148345283024,1.4581460871929242,6.390316981132074,4.619072679325805,7.886969754716978,213.58461953656789,25.5,6.4372592592592595,3.7037037037037037,6.742798353909465,147.79378712095738,96.8336898888889,1.7402965133333337,6.583638888888889,3.230833714372809,7.884052111111109,256.1436015269248,21.29032258064516,6.366591397849463,3.4408602150537635,5.639187574671446,156.58331465590896,79.64129549462363,1.4631173132460866,6.467125806451613,3.212852338599053,7.909449892473117,209.63881561592973,21.544642857142858,6.28369642857143,3.4464285714285716,5.348214285714286,156.70126877804168,80.71162905357143,1.4894050446645803,6.403082142857144,2.9535751028806585,7.834233303571428,211.46991271834992,22.046153846153846,6.457707692307691,3.269230769230769,5.527350427350427,156.68783486809963,81.97159939230771,1.4392423882275693,6.571710769230768,3.4883982272871163,8.022500107692307,207.39507689776494,22.363636363636363,6.5654685314685315,3.034965034965035,5.436674436674436,157.02607134151347,83.16000125174824,1.4241320582590002,6.666274125874125,3.6968545857434747,8.117939888111888,207.53761320898434,22.555555555555557,6.452993827160494,2.6358024691358026,4.093278463648834,158.32789725536995,84.36412433333334,1.3407182980819876,6.565101851851852,3.7242798353909468,8.027680308641974,190.6541522978387,15.109289617486338,6.238704918032787,2.1420765027322406,2.120218579234973,163.51239686702024,51.78426275409835,1.1474388462312513,6.325798360655737,3.044592862443501,7.896579486338799,151.22963453988447,11.920245398773005,6.005478527607362,1.883435582822086,1.1247443762781184,164.49207030583656,38.69273683435582,1.0733171936353616,6.087126993865031,2.738885101870787,7.6908943067484685,132.63436531586134,10.78675685297259,0.15072986828052684,0.025295523254195845,0.5852616589533641,4.236268783319928,1.3690097071890694,50.6649164749021,0.24150274827137763,0.14597607689569236,1.6050919896305176,0.10465946315414737,49.85568823777901,0.14720541117835523,-0.007592796302888866,-0.012662399771041478,0.3270374325910105,1.3818908391490352,-0.08728994757601362,0.7087939988924498,-0.013559197354003415,-0.005095259285629438,-0.1265747609479319,-0.007450436948696697,-0.136042559345329,0.8699686491576613,0.0036098760895278996,-0.0004585782936477107,0.16803515581636583,0.5385659689274161,0.13184893695578784,4.237581014243771,0.045902706447750546,0.00351418482068013,0.10963876767496568,0.002424129258106566,7.5233378968077265,0.8198806133346894,-0.00047663377917917476,-0.0004160650243883084,0.06820869145094843,0.3671117198247259,0.21496320058704668,4.001092411216498,0.03327398901394897,0.0004739904897523608,-0.031992994034142276,-0.0034682876150638506,7.149325111537834,-0.15540707067940956,-0.0006638015171016368,0.0028458516666047657,-0.02444888681983739,0.06787750132950106,0.038435202043400396,-0.6285603290385287,0.003311843594297497,-0.002371896924719905,-0.09794762665883862,-0.006361954591012515,1.6405233621483644,-0.29962134696915765,-0.018076140875856076,-0.005189193965925102,-0.1524868865559503,-0.281300620804596,-0.07342706334014668,-1.2871435162004239,0.006103769426380728,-0.016919948118808804,-0.2038910260023467,-0.014011551820198467,-0.007175939280982874,1.3033898975515208,0.026363213480479403,0.00505616059073895,-0.1995174241525256,-0.510321001544831,-0.1877687765593971,5.693780546062263,-0.04763399053993451,0.03128109757437522,0.27525142554757465,0.027827996314755382,-6.854377893959524,-2.3103159827797843,-0.02325245823825446,-0.0011398649527661587,-0.14635043099171866,-1.2105807589722486,-0.11552564562588806,-10.907323667911687,-0.03537561905195746,-0.02511092584919273,-0.18794854628862415,-0.01305597681534962,-9.551141797441593,-2.3988647358293997,-0.02195812386566403,-8.061126453096804e-05,-0.07397563047784617,-1.0247688240482369,-0.16640617460383797,-11.298706080064736,-0.034744172840929524,-0.02551064108136207,-0.1131005669751089,-0.01449556061913172,-10.533486027392799,,,0.47074829931972795,1.0357142857142858,0.4107142857142857,0.017857142857142856,0.625,-0.21428571428571427,1.0514301890622226,0.016395980076472836,0.022538837219329977,0.9542842438968175,0.22236479706146714,0.258175421518242,2.00571443295904,0.48054021857970913,1.9867214632998251,1.4563116672634835,0.13434319518363907,0.33254680053027225,0.06351980032243042,0.5304097960363419,7.700852822264164,1452.0,334.10869999999994,161.0,397.60493827160496,8676.724404855626,5839.618623000002,77.28174262122498,338.6867999999999,244.81085200426764,418.00939699999986,11319.984835438097,1377.0,347.612,200.0,364.1111111111111,7980.864504531698,5229.019254000001,93.97601172000002,355.5165,174.46502057613168,425.7388139999999,13831.754482453938,1980.0,592.0930000000001,320.0,524.4444444444445,14562.248262999534,7406.6404809999985,136.06991013188605,601.4427000000001,298.79526748971193,735.5788399999999,19496.409852281464,2413.0,703.7740000000001,386.0,599.0,17550.54210314067,9039.702454,166.813365002433,717.1452000000002,330.80041152263374,877.4341299999999,23684.63022445519,2866.0,839.5019999999998,425.0,718.5555555555555,20369.418532852953,10656.307921000001,187.101510469584,854.3223999999999,453.49176954732513,1042.925014,26961.35999670944,3198.0,938.862,434.0,777.4444444444443,22454.728201836428,11891.880178999998,203.65088433103702,953.2771999999999,528.6502057613169,1160.865404,29677.87868888476,3654.0,1045.385,427.0,663.1111111111111,25649.11935536993,13666.988142,217.196364289282,1063.5465,603.3333333333334,1300.4842099999998,30885.972672249867,2765.0,1141.683,392.0,388.0,29922.768626664707,9476.520083999998,209.98130886031896,1157.6210999999998,557.1604938271606,1445.0740460000002,27675.023120798858,1943.0,978.893,307.0,183.33333333333331,26812.20745985136,6306.916103999999,174.95070256256395,992.2017000000001,446.4382716049383,1253.6157720000003,21619.4015464854,571.6981132075473,7.988683018867923,1.3406627324723799,31.0188679245283,224.52224551595617,72.55751448102068,2685.2405731698113,12.799645658383014,7.736732075471695,85.06987545041743,5.546951547169811,2642.3514766022877,7.949092203631182,-0.41001100035599874,-0.6837695876362399,17.660021359914566,74.6221053140479,-4.713657169104735,38.27487594019229,-0.7321966571161844,-0.27514400142398965,-6.835037091188323,-0.40232359522962163,-7.346298204647766,80.90708437166249,0.33571847632609464,-0.0426477813092371,15.627269490922023,50.0866351102497,12.261951136888268,394.09503432467073,4.268951699640801,0.3268191883232521,10.196405393771808,0.22544402100391067,699.6704244031185,91.82662869348522,-0.05338298326806757,-0.04659928273149054,7.6393734425062245,41.1165126203693,24.075878465749227,448.12235005624774,3.726686769562285,0.053086934852264414,-3.5832153318239346,-0.38844821288715126,800.7244124922374,-20.202919188323243,-0.08629419722321278,0.3699607166586195,-3.1783552865788605,8.824075172835137,4.996576265642052,-81.71284277500872,0.43053966725867465,-0.3083466002135876,-12.733191465649021,-0.827054096831627,213.26803707928735,-42.845852616589546,-2.584888145247419,-0.7420547371272896,-21.805624777500892,-40.22598877505723,-10.500070057640974,-184.0615228166606,0.8728390279724441,-2.419552580989659,-29.15641671833558,-2.0036519102883807,-1.026159317180551,211.14916340334636,4.270840583837663,0.8190980156997099,-32.32182271270915,-82.67200225026262,-30.418541802622332,922.3924484620867,-7.716706467469391,5.067537807048786,44.59073093870709,4.508135402990372,-1110.409218821443,-422.78782484870055,-4.255199857600567,-0.20859528635620703,-26.782128871484513,-221.5362788919215,-21.141193149537514,-1996.0402312278388,-6.473738286508215,-4.595299430402269,-34.39458397081822,-2.3892437572089804,-1747.8589489318115,-391.0149519401922,-3.579174190103237,-0.013139636118547791,-12.058027767888925,-167.0373183198626,-27.12420646042559,-1841.689091050552,-5.663300173071512,-4.1582344962620175,-18.43539241694275,-2.3627763809184703,-1716.9582224650262,0.7386226356051857,0.605987986115391,0.46396986621489167,0.32137934896233167,0.2891791092784155,0.16592159563458367,0.17580377934268052,0.0870667758790424,0.10822763478079056,0.04607299026716443,0.06594950461680149,0.02463686517260046,0.044455633773385315,0.0135853165012261,0.028676005047708848,0.00730938175260572,17.001103451754815,5.687781475585438,3.558251198865475,2.1847220692706175,0.4651525347693294,-0.49669540495530645,3.2880088663555638,0.9771687501350487,6.0305415815087065,0.77399479698576,14.540689182889158,10.947924003213775,35.4505175711258,11.69931030587073,2.208016820071055,0.7401357294343397,3.5044796663018363,2.2353277891939443,7.009361257461032,1.2371242589302909,3.7173778753777946,2.431449869156818,22.45586635514512,14.699724013858873,0.278164455174902,0.6140423270498437,0.8249797393877762,0.8758818069166823,0.8886073237989087,0.8886073237989087,2.37867003099374,803.5407141752964,0.0,2.0,6.0,0.0,7.0,0.0,3.0,1.0,0.0,4.078200134274569,2.0861966986846894,0.8351823114432149,0.5332955189903839,0.4578238208771772,0.4578238208771772,301.70159655446554,1806.063830228094,57.80004869422716,34.07667604203951,66.55462160963845,,11.0,485.0,17.856516622065094,9.589074368143644,18.786868459095103,40.70490633204474,0.0,7.109797541277533,38.112942673227685,0.0,5.316788604006331,31.54519622879485,13.180952380952382,29.0,11.5,0.5,17.5,0.0,0.02925170068027207,-6.0,0.1750947779019571,0.04947303869136799,-0.1256217392105891,0.0570934825543119,0.18504911140836966,0.0,0.6116801437556154,0.8899659863945574,0.4365853658536583,0.5622071050642474,0.8328725038402455,29.440045293742234,0.4590874421412394,0.6310874421412394,26.71995882911089,6.22621431772108,7.228911802510776,56.160004122853124,13.455126120231856,0.5289508885916303,0.24891618497109827,0.0,0.34140173410404623,0.4,0.2610812646711198,-0.7468121886208248,-0.04152714492275328,-0.014090796011713674,-0.04978747924138832,0.7389187353288799,2.1136465637970208,0.05001704770785772,0.0398801238452268,0.05562227799465844,-5.01273795015882,0.6855469991443587,0.8036641963831888,1.5626831404389492,0.6674551680634405,0.5133493320434767,1.3433541125833426,0.6919346870975048,1.127244473252079,0.7617964222259148,0.6899825296323028,0.8105685249093971,1.0218214787673692,0.7398821817665636,0.9860435354247041,1.124435512116594,0.9914187792690264,0.935527467439248,0.9965085974930858,0.7393576488174941,0.8113176284356455,0.9500538155198882,0.6529918172089838,0.9778135893251011,0.830857094956652,0.8283592644978782,0.8707925571531209,1.159389538695421,1.2947188912061174,0.914438246077807,0.9649338373691381,0.8276015074075102,0.8912356130167368,0.8613317343985406,0.7664376898130134,0.8987206937837218,0.8565933437352017,1.0236171617161713,1.107281385318193,1.0932290902206085,1.4507299270072993,1.1290805644721198,1.0359135955923748,1.0190404814157243,1.0269674030217326,1.0976675833100027,1.3716003405900619,1.2083524334045905,0.9461943740225532,0.9693609360936091,1.3553149865390623,1.4568013688600983,1.5650298606502984,1.2625886408766744,1.1223840611510776,0.9643345869202075,0.9798956932714968,1.2991085186107807,1.5623602354231012,1.398431311560771,0.95040223671414,0.8767253392005865,0.9152227812881885,1.0037334759486098,1.4125214021807695,1.1723197286915505,1.2002035401470665,0.8830060482116815,1.206525444736192,0.8561917178089771,0.9161771718910301,0.8497085285415683,1.1029955956070057,1.299245072048188,1.2828635382990479,1.1141469344714359,1.0992780503370427,1.3253534906967128,1.026857806291263,1.296516310520801,1.1285725064088368,1.294924248310913,1.2476299859215279,1.2831510278589924,1.1518083233709144,1.2625179695883697,1.124547558904538,0.8534884721297068,0.8484841699879091,1.1683640242619602,1.0220625978633655,1.2621643101720894,1.1202585507555425,1.1673129742586739,1.050582398025486,1.1296144994997372,1.1963180534681332,4.5,0.037139067442097745,3.1111111111111125,2.6875,2.4177777777777782,2.0069444444444446,0.9779591836734693,0.5972222222222222,0.2297808012093726,0.12125,6515.2007260723185,7257.862125573105,2697.231870773062,2440.3832850349195,13.211808250930392,0.457709537557993,7.164637606092167,0.8440302185969955,1.0,0.4,1.6497203202886295,3.6417237558785094,4.892738143119984,5.194624935572815,5.2700966336860215,5.2700966336860215,0.15517241379310345,0.004642383430262218,0.07977207977207981,0.057180851063829786,0.04477366255144034,0.034016007532956694,0.01657557938429609,0.014566395663956639,0.008837723123437408,0.008660714285714285,0.42419781060107664,24.271105826397147,12.0,6.016375934496262,169.0122544992623,1.0,4.225436008715439,137.09343495772583,,112.13038745340758,111.48309254489742,114.6710259632805,112.13276904291703,162.72936696204658,112.49996145428261,113.04972830019672,138.45948359088334,0.013646864686468639,-0.05037353504985314,-0.5005786851608665,0.5587884112823288,0.32620471217269154,-0.06376137957066969,0.013989838495906043,-0.05614510580544984,-0.03490475558724784,-0.07885825969206205,-0.07118741797598697,-0.002728726934758076,0.0806515490258703,0.023949308326930104,-0.01812883208777446,0.2871111634356275,0.12713215248475018,0.09630971662465986,0.08363935656230566,0.19007115561339075,0.024073703687702206,0.0683068437094399,0.023162064710156163,0.15090229746556355,0.07600807402168787,-0.0031621720672647346,-0.016448168326357683,0.11654392596454632,0.08665921323741492,0.15702094693573918,0.07897165710711318,0.13777892488643176,0.0032470422539924277,-0.01993218721470716,-0.033138786599312034,0.14340038948896325,-0.0144072099517644,-0.004403914928567578,0.11250416281199936,-0.04177428411005062,0.016022944907736956,0.028075185911075672,-0.012406224519286413,0.013713482012121723,-0.01624853178109966,-0.06102306116510217,-0.060787189225711295,0.032905440083870495,-0.02777677767776778,-0.11992408062225697,-0.2051427801583173,-0.2605448079900635,-0.0664029208704135,-0.05363516632099812,-0.02540502591843878,0.02527411994302399,-0.11590904810312859,-0.12702762665290054,-0.13387754339578062,-0.00014393421361988504,0.1208324165749908,0.17490371205933924,0.19988361339393398,-0.34090294674236277,-0.12046473622122172,-0.13715664364786348,0.11238112963006253,-0.197239952260949,0.2142892057355893,0.17148638665310134,0.26589087576122,-0.13748437011376968,-0.214180778733611,-0.1542657636705339,-0.045061924250848845,-0.2500598300825655,-0.2857658049788632,-0.08438628668535307,-0.215283561620295,-0.14648122766787622,-0.17202082959891996,-0.11709518675741991,-0.1247472175174467,-0.19157576868438553,-0.22238980339751757,-0.14567865092801152,-0.0031867798788308044,-0.12639753407072377,-0.24190363654053468,-0.12155222401272293,-0.22300848133563547,-0.14386657331902228,-0.17475905383860108,-0.07046360439512502,-0.13850214956465023,-0.21127952295342836,6.271825445794884,17.917313852866645,16.39533182589003,18.35939981917038,37.06163342803537,41.536316820682416,43.086241348984295,43.72801493388996,43.72801493388996,55.628200972395106,40.77672668337754,3.761609465141894,9.311310414847624,1.7785544090280516,14.851474289017572,5185.672392425967,3910.4653291238,2276.4813858152884,82.0,39.0,53.0,73.0,96.0,110.0,110.0,110.0,97.0,408.1451995800007,29.0,4.919980925828125,5.771441123130016,6.663132695990803,7.555381944240273,8.46821300919452,9.375939552625749,10.297453464251271,11.211347287326337,12.136481380755951,0.6792452830188677,0.99222641509434,1.1315311566316055,0.6423027319296936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.660488362896848,0.9799482056973732,1.015906498646402,0.6217665300761555,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,3.0,1.0,0.0,1.0,0.0,4.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,25.261044942568663,0.0,0.0,0.0,0.0,0.0,9.589074368143644,0.0,0.0,29.800041095617345,25.477292959539852,17.264429032709735,49.691597854172045,164.84398821487991,-471.52942887271746,-26.21980630003124,-8.896781676843725,-31.435295258181164,466.54558476934545,1334.5344013553765,31.58024239419592,25.179894365195782,35.119326351457275,0.45454545454545453,0.8862519477817332,0.16276411983494304,27.04240685242525,0.11758412354839601,40.382181610241034,0.11374805221826646,6.0,0.27586206896551724,0.2880138321359482,0.6357846245887192,0.854191007352789,0.9068954390654065,0.9200715469935606,0.9200715469935606,2.266300000000001,,2.1827731092436973,1.916514707309012,1.447831012902241,2.1925130197357,-6.213890003930955,1.8090110468989669,1.7327841599807314,-2.5503330170393763,105.57710000000003,23.79966322954379,0.0,5.316788604006331,5.733667477162185,19.76538044554264,33.47519984072886,57.39184076553496,0.0,0.0,4.07753744390572,0.0,5.3706380281276624,0.0,6.884486652042782,0.0,8.518592212329946,0.0,10.224809892531864,35.999999999999986,7.045455442775518,0.0,0.0,0.0,0.0,0.0,1.025391366423113,0.0,52.588000000000015,0.0,25.46096425955598,0.0,0.0,0.0,0.0,0.0,0.4964396468463952,59.971151301475096,11.050456081168516,0.0,0.0,45.41381041663256,23.79966322954379,0.0,25.328831937239634,46.80575596009664,5.022633313741326,0.0,0.0,34.04204479227376,35.00588323353294,34.69103447555047,274.18686991545167,,224.10486254186918,222.8292911821299,229.2386354256394,224.1089300129958,326.99697624974954,224.87070783378672,225.97568630325196,277.4654671139894,34.69103447555047,274.18686991545167,,222.1070732219651,221.09989994893687,227.9697509574997,222.10196722793995,331.672623928024,223.22826674506507,224.39463723190312,279.4693001988061,5.0352782147884,176.99729788429076,,145.33164776882353,144.13755377361628,147.95628464125306,145.34236831668957,212.46845918646926,145.51252910600064,146.2796228389898,179.67716119997274,1.2389655169839453,9.79238821126613,,8.003745090781042,7.958188970790354,8.187094122344265,8.003890357606993,11.678463437491056,8.031096708349526,8.070560225116141,9.909480968356764,2.5176391073941997,137.09343495772583,,112.13038745340758,111.48309254489742,114.6710259632805,112.13276904291703,162.72936696204658,112.49996145428261,113.04972830019672,138.45948359088334,51.93725490196078,0.0,4.743041764604866,6.4224429370088325,0.0,5.490549338294649,0.0,53.8430444282593,0.9640068201888801,3.0978493480725624,15.78355673306972,0.0,-0.7519198790627366,0.0,0.0,0.0,0.0,32.95362609403624,559.5702388663467,87.43517697529737,193.011359061561,259.3151215853591,275.3151215853592,279.3151215853591,279.3151215853591,827.0,133.39937138334304,71.81933411787865,63.07606422893798,99.88000000000001,99.88000000000001,0.8333333333333334,8.157648061001657,5.857980995127572,4.249558651970451,5.186362215502757,,5.185659068346014,5.187435181237467,5.181555172292708,5.185589161971029,5.123478505835282,5.186302545604791,5.185884489002448,5.153980752653444,0.15176995185608755,0.1852272219822413,,0.18520210958378622,0.18526554218705238,0.1850555418675967,0.18519961292753676,0.1829813752084029,0.18522509091445682,0.185210160321516,0.18407074116619443,2.476434548129865,2.675651946729929,,2.6755163613626074,2.6758588074767706,2.674724654704983,2.6755028805600207,2.6634530212187677,2.6756404415093633,2.675559830428754,2.6693887949560553,302.3900000000006,350.04726391242394,171.9034269209201,,170.9999996354341,171.1430665818743,171.85288196697147,170.99685501611248,177.6599965865832,171.23088623273338,171.26205977922575,174.70500348998246,12.501687996872283,6.1394081043185755,,6.107142844122647,6.112252377924082,6.137602927391838,6.107030536289732,6.344999878092257,6.115388794026193,6.1165021349723485,6.239464410356517,6.887687602297354,6.176552264920525,,6.171282971551854,6.172119270567703,6.176258190583525,6.171264581796048,6.209491009309515,6.172632274854759,6.172814313912447,6.192718274380314,15.78355673306972,25.46096425955598,3.5215790606366006,7.700858032760089,-1.8641272728227076,7.045455442775518,0.0,4.415478869135827,1.2915697156579191,381.5637568780102,104.08077532800974,-297.7187647454408,-16.554912303505834,-5.617335183876242,-19.847917649696054,294.57201754519286,842.6111058045302,19.939435760009697,15.898322751028871,22.17397646854027,1836.0,47.0,1.578891805070018,0.760224782938089,0.0,0.0,0.5069178560527345,0.19712836891126048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12869425449598476,0.04581997368995358,0.2874492120152714,0.10539779575236043,20.6814337969452,16.967663611230947,13.455126120231858,9.320001119907618,11.277985261858205,6.470942229748763,9.317600305162067,4.614539121589247,7.900617338997711,3.3633282895030034,6.331152443212943,2.365139056569644,4.890119715072385,1.494384815134871,3.1543605552479734,0.8040319927866292,4.098646449887217,1.7707499758410745,7.471432227257131,2.6846393582151826,12.896237555573682,3.9866348310076587,93.63918341708143,43.212881272726584,29.94771464382075,26.45134285992617,25.185256667810368,25.185256667810368,136.0,160.0,58.45982499999998,32.534175,0.22641509433962265,85.08,11.0,6.638888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,53.0,0.0,1.0,54.0,6.0,4.0,7.0,47.0,10.0,29.0,44.0,0.0,0.0,0.0,20.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,7.0,2.0,1.0,28.0,8.0,0.0,2.0,5.0,0.0,2.0,8.0,0.0,0.0,1.0,0.0,1.0,3.6109179126442243,6.581592219712075,4.119037174812473,4.632298853376344,5.146767468420836,5.639466151053152,5.891989456089514,6.1008093026305685,6.383612203635753,6.543102165344227 +5284596,C=CCN1CC[C@]23c4c5ccc(O)c4O[C@H]2C(=O)CC[C@@]3(O)[C@H]1C5,0,22.444444444444443,6.195886666666665,3.7555555555555555,7.377777777777778,161.00908142753843,88.49830435555555,1.4690841555961998,6.261411111111108,4.7404320987654325,7.732578844444443,217.96571216368696,24.816326530612244,6.3607142857142875,4.795918367346939,7.1020408163265305,144.35256535719176,94.1450051428572,1.8410730175918373,6.508,2.9683956916099765,7.785086857142853,271.24570736842156,22.21505376344086,6.269354838709676,4.612903225806452,6.161290322580645,149.95715130549456,83.48838333333337,1.6528125415047645,6.394682795698921,2.6860812425328557,7.732319999999997,240.62973843370116,19.843971631205672,6.297624113475179,3.879432624113475,5.134751773049645,153.86370774014668,73.14735275177306,1.474433193863369,6.395101418439715,3.0454097714736017,7.801329361702125,211.02874026439517,16.29943502824859,6.1840677966101705,3.135593220338983,3.7175141242937855,157.12287472538236,57.86261344067794,1.3075195189964746,6.2667011299435025,2.8104990583804144,7.7405728587570595,180.5122592423292,12.532967032967033,5.958,2.5494505494505493,2.6538461538461537,161.71524709049896,42.546289972527475,1.1297028609038848,6.023937912087914,2.7242063492063497,7.571966747252747,146.4582759678698,12.007042253521126,5.918690140845069,2.112676056338028,2.3732394366197185,163.3629715536842,40.86060343661972,1.0501739793919578,5.97528028169014,3.2623239436619706,7.55206101408451,134.86855534582602,8.304761904761905,5.853380952380955,1.7904761904761906,1.1428571428571428,167.6446998889068,24.760843533333325,0.9219507353225332,5.88936761904762,2.7095238095238097,7.545387161904762,109.92723537918809,7.862068965517241,5.525241379310346,1.6551724137931034,1.2758620689655173,169.6417092695719,25.231757293103446,0.8698097944589825,5.569965517241381,2.3620689655172415,7.239808620689657,101.75777350289866,7.493333333333331,0.13663091358024687,0.02510713126391152,0.8276543209876546,3.8933333333333335,1.397131855387404,35.571062676543214,0.23250788267451653,0.12753333333333325,1.8125308641975306,0.08845980444444439,50.38905495536359,0.3116553287981854,-0.008876083648274108,-0.010004765125060553,0.4254069035021414,1.0626757369614512,-0.002788078879851652,1.5820508037289065,0.018323691935557048,-0.0068126984126984,-0.16825333837238599,-0.007067474285714292,4.056837889412595,0.6199283154121865,-0.003782741537236151,-0.0034500196752073435,0.1075906013540422,0.35254480286738343,0.05106430803199931,2.9835161664675476,0.008902687516825492,-0.0009759856630824384,-0.03299084030266826,-0.004410921290322584,4.220299758609883,0.13219858156028338,0.008949054898870512,0.003787353473140858,-0.0613816653532965,-0.01248226950354616,-0.0013269177332579426,0.5682988783819314,-0.004811632371329414,0.007936170212765959,0.009704491725768353,0.006334597446808504,-0.6228103607198439,-0.9279849340866292,-0.01341519481062982,-0.002282041833614979,-0.1622431471019041,-0.44399246704331446,-0.14423983890002728,-4.419955300899767,-0.026742146547759582,-0.012978154425612036,-0.1328698472483783,-0.0077775792090395484,-6.204059537921582,-0.6023687423687422,-0.003250376339709674,-0.0006094452827174716,-0.1354687288020621,-0.2617094017094016,-0.10950072953215478,-2.9025194498032834,-0.020785256436238284,-0.003978449328449326,0.04242097408764074,-0.0013126479120879081,-4.915596772219661,0.3543974960876369,0.018426222569987813,0.003290414944714425,-0.04455572943835854,0.11308294209702659,-0.1149242218989455,1.5505025929403558,-0.01848486689439076,0.01674585289514866,0.22945313858459385,0.011509045633802815,-2.2439654052681854,-1.2330158730158722,-0.024032268077601407,-0.00332257807260519,0.07393298059964722,-0.5815873015873014,0.09158565986714676,-5.709492785537923,0.01261961071869036,-0.02444063492063491,-0.4139329805996473,-0.01352337523809523,-1.994185669709226,2.2131800766283525,0.016459239676458022,0.0020460969732269793,0.098782460621541,0.7373180076628355,0.1950042876150316,10.555656136866745,0.0417693102188577,0.019527777777777724,0.09271604938271599,0.005871495172413805,13.402638141812114,,,0.4680555555555556,1.0416666666666667,0.375,0.020833333333333332,0.6666666666666666,-0.2916666666666667,1.0876331459824677,0.01618219904145309,0.034098865708119756,0.7812315248355651,0.18707581074139099,0.29316755531603494,1.8688646708180328,0.4802433660574259,2.105301275728018,1.698400506455675,0.09380121082057657,0.313099558451766,0.0,0.4069007692723426,7.269934625600013,1010.0,278.8148999999999,169.0,332.0,7245.408664239229,3982.423696,66.10878700182899,281.76349999999985,213.31944444444446,347.96604799999994,9808.457047365913,1216.0,311.67500000000007,235.0,348.0,7073.275702502397,4613.105252000003,90.21257786200003,318.892,145.45138888888886,381.4692559999998,13291.039661052657,2066.0,583.0499999999998,429.0,573.0,13946.015071410993,7764.4196500000035,153.7115663599431,594.7054999999997,249.8055555555556,719.1057599999997,22378.565674334208,2798.0,887.9650000000003,547.0,724.0,21694.78279136068,10313.776738,207.89508033473504,901.7092999999999,429.4027777777778,1099.9874399999997,29755.05237727972,2885.0,1094.5800000000002,555.0,658.0,27810.74882639268,10241.682578999995,231.43095486237598,1109.2060999999999,497.4583333333333,1370.0813959999996,31950.66988589227,2281.0,1084.356,464.0,483.0,29432.174970470813,7743.424775,205.60592068450703,1096.3567000000003,495.80555555555566,1378.097948,26655.406226152307,1705.0,840.4539999999997,300.0,337.0,23197.541960623155,5802.205688,149.124705073658,848.4898,463.24999999999983,1072.3926640000004,19151.334859107297,872.0,614.6050000000002,188.0,120.0,17602.693488335215,2599.888570999999,96.80482720886599,618.3836000000001,284.5,792.265652,11542.35971481475,456.0,320.46400000000006,96.0,74.0,9839.21913763517,1463.4419229999999,50.448968078620986,323.0580000000001,137.0,419.90890000000013,5901.950863168122,337.19999999999993,6.148391111111109,1.1298209068760183,37.244444444444454,175.20000000000002,62.870933492433174,1600.6978204444447,10.462854720353244,5.738999999999996,81.56388888888888,3.9806911999999977,2267.5074729913617,15.271111111111084,-0.4349280987654313,-0.49023349112796705,20.844938271604928,52.071111111111115,-0.13661586511273094,77.52048938271642,0.8978609048422954,-0.3338222222222216,-8.244413580246913,-0.3463062400000003,198.78505658121713,57.65333333333335,-0.35179496296296203,-0.32085182979428295,10.005925925925926,32.78666666666666,4.7489806469759355,277.4670034814819,0.8279499390647707,-0.09076666666666677,-3.0681481481481483,-0.4102156800000003,392.48787755071913,18.639999999999958,1.2618167407407423,0.534016839712861,-8.654814814814806,-1.7600000000000087,-0.1870954003893699,80.13014185185233,-0.6784401643574474,1.1190000000000002,1.3683333333333376,0.8931782399999991,-87.81626086149798,-164.25333333333336,-2.3744894814814783,-0.40392140454985126,-28.717037037037024,-78.58666666666666,-25.53045148530483,-782.3320882592589,-4.733359938953446,-2.2971333333333304,-23.51796296296296,-1.37663152,-1098.11853821212,-109.63111111111107,-0.5915684938271607,-0.11091904145457984,-24.6553086419753,-47.631111111111096,-19.92913277485217,-528.2585398641976,-3.7829166713953675,-0.7240777777777774,7.720617283950615,-0.2389019199999993,-894.6386125439783,50.32444444444444,2.6165236049382696,0.46723892214944834,-6.326913580246913,16.057777777777776,-16.31923950965026,220.1713681975305,-2.6248510990034877,2.3779111111111098,32.58234567901233,1.6342844799999998,-318.64308754808235,-129.46666666666658,-2.5233881481481477,-0.34887069762354495,7.762962962962958,-61.06666666666665,9.61649428605041,-599.4967424814819,1.325059125462488,-2.5662666666666656,-43.46296296296296,-1.419954399999999,-209.38949531946872,128.36444444444444,0.9546359012345653,0.1186736244471648,5.729382716049378,42.76444444444446,11.310248681671833,612.2280559382712,2.4226199926937464,1.132611111111108,5.377530864197528,0.3405467200000007,777.3530122251026,0.6954112485576035,0.5622765075700652,0.41163717090636504,0.3088387860075806,0.2445644602419694,0.1643756763441394,0.14502652373981556,0.08976475755622577,0.08546949851652043,0.04912989608080774,0.053111707833699694,0.027173548121248826,0.0330517282178805,0.01498843701110034,0.02048709212640391,0.008465842851215545,8.022459704432261,5.682770845141592,3.5439247007518513,2.1819042422069654,0.42813952903044855,-0.507930919884482,4.121027239086362,0.9572874701301005,6.022076153391546,1.895274809879156,14.543275700537919,10.943276349651978,16.01074993911576,11.694295483630782,1.9994454242538429,0.7524447372820963,3.489104363480098,2.2317115831219922,7.008271068422785,1.0714320664102461,3.7021743555868145,2.4277316692314743,20.90527597356419,14.70233183514083,0.2555667322434763,0.6572993820473855,0.8616188867518706,0.9002334073899683,0.9002334073899683,0.9002334073899683,1.6384728900595347,774.8754473625407,0.0,1.0,2.0,0.0,6.0,6.0,2.0,1.0,1.0,4.0210953029729355,1.7091690974054052,0.5333333333333341,0.31111111111111267,0.31111111111111267,0.31111111111111267,156.92936917209175,1146.9976416239617,67.55032876860645,25.488836480532477,53.818927086706836,,10.0,393.0,17.12000766812877,15.007591973753234,17.574597608796804,31.432798324987942,24.21641579521914,0.0,6.06636706846161,12.142387175295491,11.478845414448976,4.736862953800049,11.233333333333334,25.0,9.0,0.5,16.0,0.0,0.03194444444444441,-7.0,0.1403703703703702,0.04382948986722568,-0.09654088050314452,0.04188034188034184,0.15972368421052596,0.0,0.5903703703703705,0.8444444444444441,0.45000000000000034,0.5465408805031449,0.8025641025641023,26.103195503579226,0.38837277699487416,0.8183727769948741,18.749556596053562,4.489819457793383,7.036021327584838,44.85275209963279,11.525840785378222,0.554276315789474,0.13353115727002965,0.08902077151335311,0.3471810089020771,0.5263157894736842,0.34312484293531353,-0.786854854017998,-0.08708963790221097,-0.01748566342262218,-0.06052729646292294,0.6568751570646865,1.5063479560342528,0.04796434837521432,0.03347439902298339,0.0470733736260704,-3.014470080462972,0.7935700970779772,0.8079877158136992,1.2962441661689867,0.7353514198041984,0.5535364830863851,1.169888577588944,0.7969243217839748,1.0256102712314448,0.7888631668035749,0.7980958960568869,0.8381065651541696,0.9288430842548541,0.7906350846311817,0.8015912919539192,1.0044488419070399,1.3592270382631455,0.8735945401875582,1.1072345560991512,0.7945994994411655,1.0120501849737822,0.779218964002196,0.6102900329175882,0.8092797163370249,0.9095404302579618,0.918031683534826,0.9171032092717915,0.8110409936667216,1.399228152135276,1.0063473558081542,1.0722617465715831,0.920189374728985,1.0343738555145963,0.9069981549655896,0.9444836134054947,0.9247166147376976,0.9823324902306123,1.091440979552446,1.1331706368834695,1.1053248774127808,1.2014077100440916,1.1003405309186596,1.1124583512555126,1.0908967156656726,1.1028160436160641,1.1259470586324318,0.9980160665705776,1.139755954236074,1.0884736007068503,1.0668335223495367,0.971752833472033,0.934303314185662,1.0288428755015864,1.0487229665311857,1.028624832426306,1.068386789429082,1.050278641130922,0.9861031806666934,0.8358373567991114,0.9497146162416761,1.0769197044486052,0.9616477035403407,0.8480947642442395,0.7488328442948672,0.8070019160307907,0.9099459772332625,0.9894146721113579,0.9648190271003234,1.032241016320062,0.8605003079988908,1.070598573561726,0.8463004162991369,1.0274715697350765,1.2209794950008477,1.2944428564406472,1.2311314926471009,0.5681895669962495,1.1373124592302672,0.7868535078123629,1.2133148378009917,0.8652291088174708,1.313625569412292,1.4983060962695198,1.277026940638326,1.00584110442803,0.7255491471346179,0.6444966121654552,0.7765239769331559,0.5703234301703562,0.7599196976854038,0.6995930086010771,0.7274998050672015,0.7474805200424792,0.6543053878183753,0.7106175141833436,0.6333016946299731,0.7538417911645003,6.0,0.0,5.555555555555556,3.5069444444444446,3.2588888888888894,1.2183333333333333,0.6343764172335601,0.24567743764172334,0.13379472159234063,0.035625000000000004,5288.107168509971,5944.824438104053,2369.921037444018,2150.765557555864,12.00793457840225,0.4792922475338234,6.2526246260807214,0.920463052957823,1.0,0.5263157894736842,1.4707577933567393,3.7826839989242695,4.958519762996341,5.180741985218562,5.180741985218562,5.180741985218562,0.21428571428571427,0.0,0.1207729468599034,0.06046455938697319,0.05925252525252525,0.031239316239316237,0.022656300615484286,0.022334312512883935,0.019113531656048656,0.011875000000000002,0.5619942068088493,16.193877551020407,5.260869565217392,1.8069333333333333,140.0860914644978,1.0,4.1764131926879955,90.8095712209044,,77.66529321241302,76.67244089409135,77.1509173857985,77.6776772689463,98.5040185635074,77.30783467840354,77.71851716590565,90.57902337551488,0.041591013629651084,-0.06496394860933835,-0.3984830054814426,0.513991037942623,0.27294753517845494,-0.0019955731945418705,0.04447578128646028,0.07880890628214977,-0.05341896298508942,-0.09282784734641056,-0.0798947536691978,0.08051029917124433,0.08273064707458007,-0.027685839449609253,-0.13741194240563565,0.1299946108245438,0.09055089114744437,0.036549383535342796,0.08387481120812791,0.03828983092710107,-0.007652788785277881,-0.018201532980391167,-0.04986356592154558,0.08375429470444273,0.017642159460891912,0.06549802430776035,0.15084771865532576,-0.07416340831767623,-0.003206062372486171,-0.0009497440976249218,0.015976438026314217,-0.02069449136941791,0.06222820344562961,0.00535411115885459,0.07160989656931512,-0.012360032575954269,-0.12384140579447901,-0.09818564817507956,-0.09089217759000366,-0.19602766878362515,-0.11403916105564584,-0.10323996145663125,-0.12425704964430086,-0.1150160856489989,-0.10176284181086287,-0.07330625363293018,-0.08792218406863107,-0.12312315726931884,-0.08038728768266133,-0.023789465023233147,-0.02427379202790388,-0.16367790920296876,-0.06721988057604493,-0.07837537245315465,-0.08159777165491615,-0.0893959215367127,-0.031195368492807074,0.023404276818437493,-0.014838919442923856,-0.09755286691870033,0.04729503951347468,0.13486129959283055,0.1310549943013203,-0.053833742310665886,0.02904527622355135,-0.08225724827316225,0.043588874671512436,-0.07950210840923351,0.13130569442092527,0.12659267939483093,0.13010480529640855,-0.04453279402155824,-0.1645483816302321,-0.17589187869615344,-0.13233602985861614,0.08932833276508687,-0.1493803000652315,0.0655526244813532,-0.16050948034518406,0.05427605539015776,-0.19164115201752424,-0.22837292802895773,-0.15287593413784162,-0.039575770402436525,0.29535321307317874,0.12046497564250777,0.08149465391802836,0.11935231668175444,0.18937962525586527,0.13957472006889415,0.2967484056591738,0.17964685643509892,0.15311901028053634,0.05115281136123691,0.06637472476102174,0.26598312180461897,10.053585097642722,19.375453401443252,8.780973944665202,13.500866701235129,35.78588792040221,39.41624148169797,39.64024148169798,39.64024148169798,39.64024148169798,50.52723061747243,40.7616121549362,2.251229059693838,7.514389402842385,0.0,9.765618462536223,2991.912179207439,2492.1725259442696,1118.6943292780152,479.0,46.0,75.0,118.0,179.0,237.0,307.0,391.0,451.0,327.14705815200057,28.0,5.003946305945459,5.968707559985366,6.963189985870238,7.95892649305011,8.964311948124514,9.97007085667928,10.979359904234647,11.988656411776457,12.999393161560432,0.6444444444444445,0.9846222222222225,1.1219738629422742,0.6057040305645749,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6658769527611446,0.9712418300653592,1.0068463219227972,0.629030042743741,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,6.0,0.0,1.0,0.0,2.0,1.0,2.0,0.0,0.0,14.94991774348146,0.0,23.38623500068105,0.0,0.0,9.694446914922299,0.0,0.0,6.578935683598497,12.142387175295491,30.892283428936633,31.115626755596118,11.016041280380467,171.62170912411779,-393.5633856293968,-43.55986694497585,-8.745853013986595,-30.274106586876684,328.55107829620954,753.4342559945649,23.990461823630596,16.742983466545883,23.544820499830152,0.5,0.7368193033327273,0.21988741278326382,134.11533843037944,0.12789707175685341,200.3708226445341,0.26318069666727273,5.0,0.07142857142857142,0.26780719869212793,0.6887809875053504,0.9028864530826994,0.9433504309649078,0.9433504309649078,0.9433504309649078,1.3014,,1.1428571428571428,1.3285248953001396,0.9177863289708527,1.1395624948769625,-4.847358875538426,1.1960679314565485,1.1342421939878375,-1.9153025404755315,87.27060000000004,19.744454927553285,0.0,4.899909730850478,0.0,48.84513498898076,13.08951281182515,35.91459291074959,0.0,11.49902366656781,4.04305126783455,0.0,5.484796933490655,2.3978952727983707,7.1693500166706,4.948759890378168,8.985320060649112,7.321849713788356,10.875156225259598,29.000000000000004,3.56476599899219,0.0,0.0,0.0,0.0,0.0,2.460585291215252,0.0,44.308000000000014,3.8436627980571885,12.63331640526581,0.0,0.0,0.0,1.870765279877383,0.0,0.04078304778701658,50.48882383240234,4.736862953800049,0.0,11.49902366656781,51.732580306601925,16.63034927639461,0.0,30.38936785217202,24.787689927355597,0.0,0.0,0.0,27.256681375405872,29.964462874251506,31.867121098482762,183.81742806378938,,156.49755724178692,154.42995806643475,155.3292383648835,156.5227610301297,199.6259821091548,155.77590131699895,156.60520010327315,182.63460438461024,31.867121098482762,183.81742806378935,,155.57041082480686,153.36799101721437,154.56570263676872,155.59789905266098,201.9627920446261,154.82601490630122,155.68244065723925,183.5922556548481,5.428238691648822,122.18357682932819,,106.21412429856844,104.95865502934265,104.89030426443111,106.22774918186221,132.03894149249433,105.73096302465099,106.28471147852314,122.15006086686387,1.3277967124367818,7.6590595026578905,,6.520731551741122,6.434581586101448,6.4720515985368126,6.521781709588737,8.317749254548117,6.490662554874956,6.525216670969715,7.609775182692093,2.750089352557505,90.8095712209044,,77.66529321241302,76.67244089409135,77.1509173857985,77.6776772689463,98.5040185635074,77.30783467840354,77.71851716590565,90.57902337551488,43.70588235294117,0.0,0.0,0.0,0.0,0.0,22.09956474141539,45.30808448652587,3.666782171201814,0.0,5.983829443814563,0.0,-0.7236815003779298,2.276683201058201,-1.717056878306878,0.0,0.0,28.306351923468345,368.5369647730339,66.18410070105327,170.22077995159214,223.13338933483533,233.1333893348353,233.1333893348353,233.1333893348353,2335.0,132.7965626272265,131.63582264729345,75.22617938086941,70.0,70.0,1.0,8.761501187430277,5.807354922057604,4.221912303139398,4.812770282584527,,4.826924904821308,4.828461242670287,4.828513381922535,4.826908526067682,4.790346770808186,4.827557525785844,4.826833371003737,4.805529102066059,0.17591301263080825,0.20053209510768863,,0.20112187103422116,0.20118588511126198,0.20118805758010563,0.20112118858615344,0.19959778211700774,0.20114823024107684,0.2011180571251557,0.20023037925275244,2.3157569151619786,2.446741598005709,,2.4496783365922647,2.4499965709618645,2.450007369219968,2.44967494337987,2.4420715408971,2.449809388871864,2.449659373238313,2.4452358886080368,236.22999999999996,219.0837955630083,150.81932942266099,,148.969632938722,148.76199047747033,149.00828854198912,148.97262563803355,153.85825478641746,148.89989118794614,148.98026978351155,151.87041541318018,9.128491481792013,6.284138725944207,,6.207068039113416,6.198416269894597,6.208678689249546,6.207192734918064,6.410760616100728,6.204162132831089,6.207511240979648,6.327933975549175,6.264923022128511,5.891551363908869,,5.879211216747749,5.87781638678287,5.879470669550775,5.879231305870561,5.911500492452929,5.878742946270904,5.879282616971055,5.898496364413205,5.983829443814563,14.90999960632401,22.09956474141539,0.2560822940287233,0.5282291666666672,3.515176051902243,3.3461207692953714,5.360997926553032,0.0,297.47325712729463,85.84050863445061,-196.8496956168366,-21.78746006952715,-4.374437680374146,-15.142284278218204,164.33230864136934,376.84731195876196,11.999376161826266,8.37438471019471,11.776478498711311,1047.0,58.0,2.305357012077736,1.344425373587506,0.1609876377148447,0.09667458276674672,1.2212686088130607,0.5757802862474152,0.3024624258760723,0.13570259067236626,0.0,0.0,0.0,0.0,0.06804138174397717,0.02946278254943948,0.37289392326309284,0.19446700296228384,1.2313293213254233,0.5483065267844855,16.689869965382485,13.494636181681564,11.525840785378222,8.647486008212256,11.249965171130592,7.561281111830413,10.876989280486168,6.732356816716933,10.08540082494941,5.797327737535314,9.506995702232246,4.86406511370354,7.833259587637678,3.5522595716307803,6.289537282806,2.5990137553231727,6.946418086540451,3.7788434372415747,13.549271967581216,6.841134584150497,26.650027661346552,11.852676583135295,81.43640472381618,32.82537531326496,23.362705285420294,22.321519602443985,22.321519602443985,22.321519602443985,148.0,195.0,50.04065299999998,25.381346999999998,0.4,232.05,7.513888888888889,5.034722222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,0.0,6.0,6.0,45.0,0.0,1.0,49.0,6.0,2.0,5.0,44.0,8.0,28.0,41.0,0.0,0.0,2.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,5.0,2.0,2.0,24.0,5.0,0.0,1.0,4.0,0.0,5.0,2.0,0.0,1.0,0.0,0.0,1.0,3.5263605246161616,7.474116124924984,4.119037174812473,4.707275408925245,5.2926764866579505,5.870179292084522,6.238812787119009,6.61811295315517,7.012875140685123,7.296942789569984 +41774,C[C@H]1O[C@H](O[C@@H]2[C@@H](CO)O[C@H](O[C@@H]3[C@@H](CO)OC(O)[C@H](O)[C@H]3O)[C@H](O)[C@H]2O)[C@H](O)[C@@H](O)[C@@H]1N[C@H]1C=C(CO)[C@@H](O)[C@H](O)[C@H]1O,0,24.64367816091954,6.83097586206897,3.1839080459770117,8.39080459770115,168.62851892583575,97.17142349425282,1.168143987454103,6.815274712643682,7.239144316730523,8.367119264367817,184.6307093430271,25.166666666666668,6.893933333333334,4.155555555555556,6.388888888888889,152.103107234615,94.49926741111115,1.5090317900888892,6.978633333333331,3.6358024691358026,8.355861022222223,237.8075155141109,22.21818181818182,6.8602909090909066,3.690909090909091,5.806060606060606,156.6145354519236,81.78157397575757,1.3170265731823876,6.918374545454548,3.5909090909090904,8.362057987878787,203.8628344785445,19.59288537549407,6.840478260869566,2.952569169960474,5.407114624505929,164.13895576662333,71.35797996047428,1.0947456093233556,6.854037549407114,4.531949934123847,8.390986276679845,165.9794207126676,16.508650519031143,6.688937716262975,2.643598615916955,4.013840830449827,166.51279949450446,58.17270213840831,1.0116011131413354,6.698658823529411,3.9998077662437534,8.283944968858131,148.39345778666228,15.45973154362416,6.560567114093958,2.5838926174496644,3.728187919463087,167.3714942991241,54.277281288590615,0.9944506943163726,6.571157382550335,3.7787099179716623,8.175619275167787,143.21296384630028,16.13377926421405,6.553454849498328,2.57190635451505,3.9765886287625416,165.76575847170466,57.2498501973244,1.0162432487606354,6.570878929765886,4.042177629134152,8.161431050167224,147.49361386518797,15.607717041800644,6.567279742765272,2.3858520900321545,3.662379421221865,166.67090728315137,54.87751470739549,0.9675963093375466,6.5789864951768475,4.154340836012863,8.18335516398714,140.12421178011434,13.980263157894736,6.609927631578946,2.111842105263158,3.2598684210526314,170.33793286765535,47.7454104111842,0.8694470714875725,6.599089802631578,4.434210526315789,8.251380539473685,123.10646966814484,9.009380367287623,0.25086634958382864,0.04189606624688032,0.704188135817149,4.572598758092218,1.1493546454283388,42.10342380288019,0.19195231303293808,0.22690688333993927,3.1233760514378823,0.17094259849385643,43.21000569487948,-0.49660897520588365,-0.058951751882679176,-0.019842806234132013,0.2314440480908972,-0.1926498436605452,0.06052814919117037,-2.01514240658388,0.020607172332812836,-0.050060472101113966,-0.810445016955124,-0.04290122378121286,4.907067369063431,-0.9448732269184111,-0.04028020538320167,-0.006066643362365123,-0.05187186970777931,-0.46559771316013876,-0.17627195793541853,-4.346537499710546,-0.020938406248011084,-0.03497514526958029,-0.5332680751230099,-0.028624527856447993,-3.6180079499795856,0.35988954321167543,0.02825857886103979,0.007193292458863671,-0.06364477113585316,0.25071685682759476,-0.0557612154775542,1.5470135516243952,-0.010032664289618869,0.024427699368706573,0.3309712698509679,0.020067176982041853,-1.8966350893598052,-0.7342739758466631,-0.012510174903003041,-0.0031644438979249465,-0.058521349832978325,-0.4100087728080438,-0.05257166844173418,-3.4639790522139804,-0.011975377604199615,-0.012188273786584342,-0.11285401526258308,-0.007250075565009541,-3.6302800069305197,-0.21970976634648043,-0.00565983488815648,5.172395085948757e-05,0.0065655477437552255,-0.14511283662342248,0.08558557168271845,-1.0002723336215096,0.007556631011450144,-0.005652702209028174,-0.07976903317222048,-0.003261414200097353,0.5012749208197828,0.14911730695218264,0.00477173137569145,0.0002792906947363808,-0.03590689182376098,0.10287119923680954,-0.01909238561188816,0.6769805811970228,-0.002998376270166072,0.004533934712572965,0.030564072517233868,0.0030957289578022714,-0.07725201355601415,-0.07232156549880432,0.0005919495624180307,-0.000867965574462421,-0.08641824262869491,-0.08418540849691954,-0.13475631893273105,-0.3965927569401164,-0.019796100136514408,0.0010026668688791868,0.02796289145223004,-0.00032366808767697163,-2.834891128839603,-0.5738842995320248,0.00032561956317668533,0.0020918268835520707,0.0021034552294330747,-0.15309633824950808,-0.06783948359944442,-2.763538889881075,-0.012959936228540928,-0.0013248582340710914,0.05798506807546016,0.0018174775799486736,-4.134364046823093,,,0.4295454545454545,0.6988636363636364,0.022727272727272728,0.0,0.6761363636363636,-0.6534090909090909,1.5180486684457526,0.02655649969337662,0.03437468151155843,0.8931659052787405,0.1476396689419454,0.32385413960043014,2.411214573724493,0.47149380854237555,2.0011774015786687,1.2005877445979434,0.04685530123011137,0.7537343557506144,0.0,0.8005896569807258,7.416643833747139,2144.0,594.2949000000003,277.0,730.0,14670.68114654771,8453.913843999995,101.62852690850697,592.9289000000003,629.8055555555555,727.9393760000002,16062.871712843356,2265.0,620.4540000000001,374.0,575.0,13689.279651115352,8504.934067000004,135.81286110800002,628.0769999999998,327.22222222222223,752.027492,21402.67639626998,3666.0,1131.9479999999996,609.0,958.0,25841.398349567393,13493.959705999998,217.30938457509396,1141.5318000000004,592.4999999999999,1379.739568,33637.36768895984,4957.0,1730.6410000000003,747.0,1368.0,41527.1558089557,18053.568929999994,276.970639158809,1734.0715,1146.5833333333333,2122.919528000001,41992.7934403049,4771.0,1933.1029999999998,764.0,1160.0,48122.19905391179,16811.910918,292.35272169784594,1935.9123999999997,1155.9444444444448,2394.060096,42885.7093003454,4607.0,1955.0489999999995,770.0,1111.0,49876.70530113898,16174.629824000003,296.34630690627904,1958.2048999999997,1126.0555555555554,2436.3345440000003,42677.463226197484,4824.0,1959.483,769.0,1189.0,49563.96178303969,17117.705208999996,303.85673137943,1964.6928,1208.6111111111113,2440.267884,44100.5905456912,4854.0,2042.4239999999995,742.0,1139.0,51834.65216506008,17066.907074,300.922452203977,2046.0647999999997,1292.0000000000002,2545.0234560000004,43578.629863615555,4250.0,2009.4179999999997,642.0,991.0,51782.731591767224,14514.604764999998,264.31190973222203,2006.1232999999997,1348.0,2508.419684,37424.36677911603,783.8160919540231,21.825372413793094,3.6449577634785877,61.26436781609196,397.81609195402297,99.99385415226547,3662.997870850576,16.699851233865612,19.740898850574716,271.7337164750958,14.87200606896551,3759.2704954545143,-44.69480776852953,-5.305657669441126,-1.7858525610718812,20.829964328180747,-17.338485929449067,5.447533427205333,-181.3628165925492,1.8546455099531554,-4.505442489100257,-72.94005152596117,-3.8611101403091577,441.63606321570876,-155.90408244153784,-6.646233888228276,-1.0009961547902453,-8.558858501783586,-76.8236226714229,-29.08487305934406,-717.1786874522402,-3.454837030921829,-5.770898969480747,-87.98923239529663,-4.723047096313919,-596.9713117466316,91.05205443255389,7.149420451843067,1.8199029920925087,-16.10212709737085,63.431364777381475,-14.107587515821212,391.394428560972,-2.538264065273574,6.180207940282763,83.73573127229488,5.076995776456589,-479.8486776080307,-212.20517901968563,-3.615440546967879,-0.9145242865003095,-16.912670101730736,-118.49253534152466,-15.193212179661177,-1001.0899460898404,-3.4608841276136886,-3.522411124322875,-32.61481041088651,-2.0952718382877573,-1049.1509220029202,-65.47351037125117,-1.6866307966706309,0.015413737356127296,1.9565332276390572,-43.243625313779894,25.5045003614501,-298.08115541920984,2.251876041412143,-1.6845052582903959,-23.771171885321703,-0.9719014316290112,149.37992640429528,44.58607477870261,1.4267476813317435,0.08350791772617785,-10.736160655304532,30.75848857180605,-5.708623297954561,202.4171937779098,-0.8965145047796554,1.3556464790593166,9.138657682652926,0.9256229583828791,-23.09835205324823,-22.492006870128144,0.18409631391200754,-0.26993729365781294,-26.876073457524114,-26.181662042541976,-41.90921518807936,-123.3403474083762,-6.156587142455981,0.31182939622142714,8.696459241643542,-0.10066077526753818,-881.6511410691165,-174.46082705773554,0.09898834720571234,0.6359153725998294,0.6394503897476547,-46.541286827850456,-20.623203014231102,-840.1158225238469,-3.9398206134764417,-0.4027569031576118,17.627460694939888,0.5525131843043968,-1256.8466702342203,0.7413198453558636,0.5346214527538847,0.4413984590609475,0.30049210450852126,0.2730474433427471,0.16245236779035452,0.18208626140474,0.08648963416539825,0.10910699647503541,0.04765421507902172,0.06770035724601255,0.02579191336446507,0.04418054111478913,0.0135657832571148,0.027637533053081507,0.007170007814570838,8.030091610240053,5.731653433681602,3.5458891358567546,2.23040544539591,0.43037344634466235,-0.39410002713017317,3.2062550935132963,0.9871996603297436,6.014261736937724,0.9939403060139513,14.540253138831138,10.992517889889958,16.022143246014668,11.74345506363706,1.9467858484784732,0.7668172697272425,3.490035219015416,2.2800932865495676,6.01536654233419,1.1528132705291945,3.703271184893002,2.476054105496816,20.851882113825273,14.704204288041403,0.24029830334115468,0.464956969669677,0.693157020959894,0.8588664815733407,0.9167190999502913,0.9498445182346206,1.405181441831244,958.0590345627957,0.0,0.0,7.0,0.0,1.0,16.0,1.0,0.0,0.0,4.8791314853163215,3.4170990207093763,1.9320199500298347,0.853616810419429,0.47712385062444884,0.2615504310593515,175.31499789605294,6054.89279856454,184.79203912080428,69.59646894901769,165.3438287724219,,20.0,1435.0,136.22993716831652,66.38485613292916,5.573104530069267,0.0,0.0,12.999757306524504,0.0,0.0,5.316788604006331,23.684314769000245,18.9,30.75,1.0,0.0,29.75,0.0,0.07045454545454549,-28.75,0.22583470169677133,0.008213870592793548,-0.21762083110397779,0.17445141065830805,0.2940000000000002,0.0,0.6655172413793091,1.0227272727272732,0.4396825396825378,0.6573033707865156,0.8482758620689651,66.79414141161311,1.1684859865085713,1.5124859865085711,39.29929983226458,6.496145433445598,14.249582142418927,106.09344124387769,20.745727575864525,0.41999999999999976,0.25573192239858905,0.0,0.5291005291005292,0.92,0.39650437396416494,-2.8345711437389625,-0.1449746938282944,-0.03258127751424095,-0.12884414289722554,0.6034956260358352,4.314331440612209,0.07320592967530094,0.049590016558761024,0.06637432985557246,6.399509727194465,0.9094536993586735,1.0723645957983945,1.4233586474738764,1.154196372732958,0.8635201772127516,1.4750532861885604,0.9097925461054533,1.3615408033149645,1.039383157428033,1.1679223800627445,1.1268579616448586,1.087398764900786,1.0050981720063135,1.0656116408072296,1.0554816952375374,1.4803206549548011,1.0468366998502798,1.521501502347128,1.0081573048790855,1.426617259530535,1.0446130831332865,0.9875811304913495,1.1005206505458256,1.2115801610657866,0.9326167292351007,0.8944627671789533,0.808462628792389,1.2178799991101157,0.9758019626944165,1.1757857736994646,0.9361982038744288,1.13930053681903,0.8913934886576793,0.7847699786982868,0.900565513256797,1.0627987562677703,1.0666341138962,1.0549196956823923,1.0682881393418135,1.109887234885125,1.111196635970363,1.089530583374512,1.0672583258837869,1.078324591010487,1.0550667023602496,0.9512993067997488,1.0502512666173982,1.07578217906595,1.0058858682472542,0.993991556924364,0.9509963246255387,0.9915767404963672,1.0333853349596367,0.9307536211335912,1.0057868482349392,0.9584235267812535,0.9966565074335824,0.9162998366919559,0.988792002203709,0.9826755835468154,0.9539001328532931,0.935532328358714,0.9356771061740108,1.1079784397020713,0.9402758303465564,1.04526522669578,0.9555857493719346,1.0564199719051874,0.9343663246185941,0.956765386778705,0.9405956930973954,1.0193339389854945,0.9922392854071197,0.9801298078753754,0.9855418674699347,1.1239046107997561,0.9960976280483217,1.109765148943763,0.9938592820244679,1.1091623346097619,0.9779544724723289,0.9941361766767061,0.9876503548092797,1.0638742587426304,1.0897972964107534,1.0602921203815117,0.98933676039794,0.8496395773674336,1.0634790484952632,0.9436533835881835,1.0891055572285937,0.9589977054915775,1.0681520001553206,1.057426900842469,1.0481632629523965,1.0320185245242472,10.5,0.3303744515865728,7.555555555555558,4.875,4.502222222222223,2.118055555555555,2.010612244897959,1.5052083333333333,0.693625598387503,0.405,10895.925833141475,12564.739098433512,4392.896533527598,3878.5714418023704,20.3442015001497,0.48216834243385526,10.534871584682168,0.9311295193887715,0.0,0.92,1.563812010532407,3.0258444751393516,4.510923545818893,5.589326685429299,5.965819645224279,6.1813930647893764,0.2234042553191489,0.0073416544797016165,0.10793650793650797,0.05668604651162792,0.05772079772079773,0.027869152046783623,0.024822373393801958,0.01929754273504273,0.01137091144897546,0.009204545454545455,0.5456537870469335,36.82933454051607,15.48,7.530612244897959,250.22756123673742,0.0,4.703664901871593,348.63384335662124,,292.3568385212118,284.2046882027416,303.68762869123464,292.50580066724996,491.20831084856513,290.0843136994956,292.72874418606216,402.83859868534313,-0.05512132410448928,-0.23499266434289168,-0.47361979325707115,0.32866791744840534,-0.042131368583261095,0.052662726367293605,-0.047861722980496166,0.10735568645779614,-0.2206212141485199,-0.25947724628996444,-0.25096859506762853,0.11356321967911553,-0.10487660509363932,-0.1605644019216765,-0.14480221905837903,-0.07366194780828922,-0.10182343516062094,-0.15336602904643581,-0.10323477539641827,-0.10908129168736902,-0.15413875839624694,-0.17073450853844951,-0.16745110995534995,-0.08373079086190288,0.03994609268783979,0.1126439592552727,0.1716937436673855,-0.09038035135596108,0.054830277068132476,-0.04851523913819763,0.03674317696506592,-0.05226644123791993,0.10765517118363639,0.10596587295295469,0.11739131824864037,-0.04389342373043387,-0.08150105178295683,-0.04986788751762294,-0.0755308118733123,-0.08310470860897053,-0.08966646637919919,-0.045740162665059654,-0.08227309656410933,-0.062387253453646575,-0.053714870202172534,-0.03613206139895624,-0.04241233974965055,-0.08401480047388005,-0.024386778822684627,-0.02256115615962757,0.0012345777418503834,0.009323570520165721,-0.0317353094597713,0.07446402380948539,-0.0237575057625856,0.039367230808797095,-0.024911990882883928,-0.025539362490628652,-0.019079002126053245,0.011600899207453367,0.016551338812779655,0.019021010125939364,0.006666274897757912,-0.05099048109081554,0.02249731600761085,-0.016611396393471624,0.016078991209040636,-0.015620422712236686,0.019981477184984626,0.009785588419032458,0.01810975722305713,-0.0017878269700197878,-0.008027362876297071,0.00235962122221668,-0.020717113853786974,-0.12272038995433239,-0.018410845331210172,-0.11724520318313968,-0.009419489464725823,-0.10313030264510277,0.004418847300357333,0.008952777696863302,-0.0018934314239326604,-0.06560728431414085,-0.06369853154560498,0.001297980234163998,0.049928956843480095,0.0029870642835983,-0.033481253516628916,-0.059023978255347075,-0.06563691596245028,-0.06751643688876552,-0.005838774983684662,0.018564869269829375,0.010632092854339012,-0.09568071052841885,0.6910503215001697,12.900011644428288,35.402432775081444,15.277271101036005,27.13937713535075,37.51760109645405,43.833339840418745,45.790988635213154,47.20341307891637,88.05180566946143,52.82586076230951,2.0616332541249003,33.164311653027035,0.0,35.225944907151934,24326.94338823776,23698.695950898626,2072.6680594863974,266.0,70.0,98.0,122.0,157.0,176.0,186.0,208.0,242.0,645.2480135360012,47.0,5.459585514144159,6.3473892096560105,7.252053951852814,8.153925132007862,9.060563446657955,9.965287953441575,10.872617383426002,11.778400271297876,12.686054451776023,0.6590038314176244,1.0260689655172412,1.1492921260034623,0.6178321213217387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5916312134351985,1.0065810232138832,1.0425697566366126,0.5778579911143555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,13.0,3.0,1.0,5.0,0.0,19.0,0.0,0.0,0.0,0.0,95.38595950593577,79.35156304072792,18.870080188005637,0.0,0.0,0.0,0.0,0.0,0.0,6.076020106833881,12.496841729759891,0.0,38.00829393958298,335.8265762034939,-2400.7914785149637,-122.78894827250015,-27.595304350746705,-109.12688538704379,511.14157409954686,3654.101320049576,62.00309084830412,42.00116459827098,56.216943385378094,0.5,0.3871165230419257,0.055052690120197735,639.991034099719,0.029859605345416505,593.7734596264,0.6128834769580744,10.0,0.19148936170212766,0.24271701459744158,0.46963697215239314,0.7001339603126024,0.8675113616983564,0.9259462928812171,0.9594051335033635,-8.564500000000002,,4.642857142857142,5.32852489530014,3.34166493126707,4.6292806022586745,-19.99947857628655,4.818160954712362,4.613169397052971,-7.50122523328789,137.73510000000005,90.06917090192944,0.0,5.316788604006331,0.0,123.33302847446839,19.820645893538753,11.64912463690315,0.0,0.0,4.553876891600541,0.0,5.926926025970411,0.0,7.501634457883413,0.0,9.170247278409738,0.0,10.886782513190758,57.33333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.26799999999999,0.0,0.0,0.0,0.0,0.0,1.2797199612320092,0.0,0.022477208759192457,99.98841496230122,5.316788604006331,0.0,0.0,202.61479330124567,23.684314769000245,0.0,6.923737199690624,11.64912463690315,0.0,0.0,0.0,53.751394554991265,51.47191556886227,55.609056069832064,697.2676867132425,,584.5026380813847,568.1671707284241,607.2233635219571,584.8011794889426,985.5667389946916,579.9496200828679,585.2477988540764,806.0181621540175,55.609056069832064,697.2676867132426,,580.286301100303,563.3694124268432,604.1318780735708,580.596430296454,1002.4161002734169,575.5826334320891,581.0569942132838,813.1784226039744,4.967668692192484,530.9123879177451,,441.4197988020125,428.30747625614686,459.8847089875178,441.65980802838044,744.8083181233424,437.77024962457426,442.0174508261755,612.5250922409538,1.2638421834052742,15.84699287984642,,13.284150865486016,12.912890243827821,13.800530989135389,13.290935897475968,22.399244068061172,13.180673183701543,13.301086337592647,18.31859459440949,2.483834346096242,348.63384335662124,,292.3568385212118,284.2046882027416,303.68762869123464,292.50580066724996,491.20831084856513,290.0843136994956,292.72874418606216,402.83859868534313,87.57254901960785,0.0,1.469058614762529,0.0,0.0,0.0,132.76963455613256,90.7035688273853,-2.2220107102493447,2.823325027328585,27.385218675731934,0.0,-30.027423333697467,0.0,0.0,0.0,0.0,50.273645226948936,327.8753654725642,136.0516449163194,263.2484693371236,392.4503484862437,486.271421632349,519.0263091345123,537.7811966366758,1616.0,172.57587731426025,519.0927848304766,82.03946716705485,321.17,321.17,1.0,7.505492274737424,6.554588851677638,5.844452136111678,6.5346090863453865,,6.537263856916322,6.537147163006969,6.537992724231935,6.537267855272465,6.5443788610261,6.537270137037233,6.537264763317611,6.541690115918616,0.13282845763890178,0.14851384287148606,,0.14857417856628005,0.14857152643197657,0.14859074373254397,0.14857426943801058,0.14873588320513864,0.14857432129630074,0.14857419916630935,0.14867477536178672,3.24709739939553,3.358717067748372,,3.3591232483498756,3.359105397616993,3.359234736382534,3.3591238599750155,3.3602110329599237,3.3591242090144644,3.359123387001343,3.3598001005171776,431.0100000000017,394.58147915788663,335.45623093389213,,335.1839389072914,335.223818979503,335.15497258137106,335.1832991422719,335.9229780390021,335.19446644445077,335.18228344025164,335.2725786314835,8.967760889951968,7.624005248497548,,7.617816793347532,7.618723158625068,7.617158467758433,7.617802253233452,7.634613137250048,7.618056055555699,7.617779169096628,7.619831332533716,7.459430197673472,7.297096029611972,,7.296283993429804,7.296402966015636,7.296197570501217,7.296282084729667,7.298486442582964,7.296315401175269,7.296279054436805,7.296548409457958,27.385218675731934,0.0,135.59295958346112,0.022477208759192457,0.0,-2.168167928638444,-26.579535443827016,-0.7529520954868156,0.0,558.1146405300144,284.43441406967634,-2033.3939178211212,-103.99832839601521,-23.37234388300139,-92.4269962645964,432.92063355807784,3094.9074360622885,52.514643168859536,35.57364869037113,47.61396055480444,7413.0,86.0,3.6117036188237712,1.731004058374359,0.0,0.0,1.5445485672516683,0.3578722504134607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18144368465060579,0.11064243508681781,0.7876452673839789,0.28282352643433994,32.618073195658,23.523343921170927,20.74572757586453,14.1231289119005,19.113321033992296,11.371665745324815,17.84445361766452,8.475984148209028,13.31105356995432,5.813814239640649,10.62895608762397,4.049330398221016,7.775775236202887,2.3875778532522047,5.14058114787316,1.3336214535101758,10.483693973446302,3.6403851223660095,15.61911448888639,4.674286017598477,24.558758027817717,6.171526741594889,167.39288427735636,112.41727970642432,62.985692384124505,36.86868878709819,30.949046231061402,27.50243134357608,234.0,285.0,85.95809899999996,52.38790100000008,0.3103448275862069,317.19,18.72222222222222,9.777777777777775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,87.0,0.0,1.0,90.0,0.0,1.0,1.0,89.0,1.0,47.0,89.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.0,19.0,14.0,3.0,44.0,19.0,0.0,1.0,18.0,0.0,4.0,9.0,0.0,0.0,0.0,0.0,0.0,3.8918202981106265,5.730099782973574,4.30406509320417,4.663439094112067,4.90527477843843,5.181783550292085,5.308267697401205,5.3612921657094255,5.476463551931511,5.631211781821365 +444025,CCOC(=O)O[C@]1(C(=O)OCCl)CC[C@H]2[C@@H]3CCC4=CC(=O)C=C[C@]4(C)[C@H]3[C@@H](O)C[C@@]21C,1,25.904761904761905,6.250776190476189,3.3492063492063493,7.104840290025476,162.56873313247812,103.84627611111115,1.4281179055606186,6.332076190476188,5.003501178198252,7.853688968253965,208.67790661121182,24.757575757575758,6.322348484848485,4.287878787878788,6.4326599326599325,143.9602718557903,93.7743693333334,1.7864954134242432,6.480393939393941,2.869283108866442,7.785662151515148,260.26982867185524,21.228346456692915,6.254307086614174,3.9763779527559056,5.249343832020998,151.68420719120093,79.09328960629921,1.5474733155715286,6.378730708661416,2.9494629143579276,7.7928631968503925,220.02829097686634,18.090425531914892,6.10811170212766,3.484042553191489,3.8835697399527187,152.8012619497778,65.9194970265957,1.442700515059707,6.21685478723404,2.6394415988092113,7.65389332978723,199.99492122283692,16.06425702811245,6.109036144578311,2.8835341365461846,2.9750111557340473,156.51869483599583,57.02078602811245,1.267278021302257,6.201469477911646,2.7477595567455,7.695491871485943,172.61495287103142,14.088028169014084,6.15614436619718,2.426056338028169,2.617370892018779,163.3732566748848,49.02818598239436,1.0854264536136582,6.212179225352112,3.1087175056511915,7.7976898380281705,145.08222732290645,13.749003984063744,6.059310756972112,2.306772908366534,2.2124833997343956,164.09692382237117,47.69388480478087,1.0944177807672553,6.130124302788844,2.8145135507353296,7.7335521513944245,142.52407487714288,14.469483568075118,6.068253521126758,2.211267605633803,2.3098591549295775,164.1712263876501,50.133561845070446,1.092019146691277,6.161092018779344,2.9779482795262653,7.770800394366198,141.39251569029946,13.534090909090908,6.063534090909093,2.0795454545454546,2.121212121212121,165.30702713220538,46.67853228409089,1.0440049633548298,6.135169886363635,2.7857451833146274,7.757751068181822,135.36636002433247,10.408667170571933,0.15614759385235574,0.024366495164660537,0.779037540942303,4.178146064095506,1.2815904182363116,48.908767412446466,0.2443537688400625,0.15014381456286222,2.0595163404204557,0.11036685159989917,50.57195582033776,0.2921505302457692,-0.00260586706062883,-0.016041180177511254,0.3724776105728487,1.4852575190611639,-0.027981159849680172,1.4081269425318972,-0.002026492557915923,-0.001102256121303579,-0.07971467898203982,-0.004076153908701554,1.399727020100946,0.6139550016565389,0.032693625995163365,0.0022638887725258496,0.07073123796033425,0.6684579869413247,0.21604280477341242,2.8002186467961385,0.018960737651655218,0.0292673090466867,0.3053244189869801,0.025227995794176502,4.7183446941802245,-0.041308170234208845,0.005768844850785078,0.0018131604225980122,-0.13677141463362336,-0.185443607051047,-0.03512986142148874,-0.24834913627286834,-0.007842943881527157,0.004865379966013216,0.003907162346628835,0.004377734604085969,-1.4851899181880739,-0.5640824826137504,-0.00970848503613849,-0.002629213771735235,-0.12843513130374867,-0.5054320845244681,-0.26912862314550884,-2.796365353544183,-0.047093890234782096,-0.007504144772589963,-0.11218590937544595,-0.005744633011258918,-8.226779002119708,-0.05057416811273271,-0.0032559718984098173,0.0018688031592489778,-0.0334529221182474,-0.37933536726707273,-0.01674139471380942,-0.26611506072502084,0.0005044838552954273,-0.0027905225887955355,-0.061081623199111014,3.371407190938262e-05,-1.5315585905559561,-0.14540276786529863,-0.014736501712976779,-0.0013193083281326607,-0.03477648990834343,-0.39144142273541194,0.025542672123070456,-0.5775029532673046,0.015583313279301247,-0.013895689602386642,-0.1847456864013412,-0.010328331900917368,0.7712952533121485,-0.6024222939045207,0.002821397875790883,0.0014180013005406999,-0.0055074716375856335,-0.10722396083120103,-0.02651587471084605,-2.896831572667043,-0.018492217128601204,0.0018608504643380448,0.07451876318837675,0.0026400521187087103,-2.551271938616095,-0.18049256739732936,-0.022495808138070037,-0.0010895052503751346,0.022369385464623585,-0.2658128554660006,-0.0335179833587634,-0.7789194167754655,0.0017253113804683402,-0.018862817088114714,-0.2836192861044063,-0.014753578331500965,-0.5987960824335559,,,0.4702380952380953,0.8359375,0.203125,0.0,0.6328125,-0.4296875,1.4802511173350497,0.02466255993282873,0.03541255993282873,0.7064458806517058,0.13491519127232882,0.3377414226190017,2.1866969979867554,0.4726566138913305,2.026542500398946,1.5676674959445014,0.0,0.4054535206913306,0.053421483763113536,0.4588750044544441,7.399616365269854,1632.0,393.7988999999999,211.0,447.60493827160496,10241.83018734612,6542.315395000002,89.97142805031898,398.9207999999999,315.2205742264899,494.7824049999998,13146.708116506345,1634.0,417.275,283.0,424.55555555555554,9501.377942482159,6189.108376000004,117.90869728600005,427.7060000000001,189.37268518518516,513.8537019999998,17177.808692342445,2696.0,794.2970000000001,505.0,666.6666666666667,19263.89431328252,10044.84778,196.52911107758413,810.0987999999998,374.5817901234568,989.6936259999999,27943.592954062027,3401.0,1148.325,655.0,730.1111111111111,28726.637246558228,12392.865440999993,271.22769683122493,1168.7686999999996,496.21502057613174,1438.9319459999992,37599.04518989334,4000.0,1521.1499999999994,718.0,740.7777777777778,38973.15501416296,14198.175721,315.552227304262,1544.1658999999997,684.1921296296296,1916.1774759999996,42981.123264886824,4001.0,1748.3449999999993,689.0,743.3333333333333,46398.00489566728,13924.004818999998,308.2611128262789,1764.2588999999998,882.8757716049383,2214.5439140000003,41203.35255970543,3451.0,1520.887,579.0,555.3333333333333,41188.32787941516,11971.165085999999,274.6988629725811,1538.6611999999998,706.4429012345678,1941.1215900000007,35773.542794162866,3082.0,1292.5379999999996,471.0,492.0,34968.471220569474,10678.448673000004,232.60007824524197,1312.3126000000004,634.3029835390945,1655.1804840000002,30116.605842033787,2382.0,1067.1820000000005,366.0,373.3333333333333,29094.036775268145,8215.421681999997,183.74487355045005,1079.7898999999998,490.29115226337444,1365.3641880000007,23824.479364282513,655.7460317460318,9.837298412698411,1.5350891953736139,49.07936507936509,263.22320203801684,80.74019634888764,3081.252346984127,15.394287436923937,9.45906031746032,129.7495294464887,6.953111650793648,3186.033216681279,19.281934996220766,-0.1719872260015028,-1.0587178917157427,24.583522297808017,98.02699625803682,-1.8467565500788914,92.93637820710522,-0.13374850882245093,-0.07274890400603622,-5.261168812814629,-0.26902615797430257,92.38198332666244,77.97228521038045,4.152090501385747,0.2875138741107829,8.982867220962449,84.89416434154825,27.437436206223378,355.6277681431096,2.4080136817602127,3.716948248929211,38.776201211346475,3.2039554658604157,599.2297761608885,-7.765936004031262,1.0845428319475947,0.3408741594484263,-25.71302595112119,-34.86339812559684,-6.604413947239882,-46.68963761929925,-1.4744734497271055,0.9146914336104845,0.734546521166221,0.8230141055681622,-279.2157046193579,-140.45653817082385,-2.417412773998484,-0.6546742291620735,-31.98034769463342,-125.85258904659256,-67.0130271632317,-696.2949730325016,-11.726378668460741,-1.8685320483749008,-27.934291434486042,-1.4304136198034707,-2048.467971527807,-14.363063744016088,-0.9246960191483881,0.5307400972267097,-9.500629881582261,-107.73124430384865,-4.754556098721876,-75.57667724590591,0.14327341490390133,-0.792508415217932,-17.347180988547528,0.009574796422264664,-434.96263971789153,-36.49609473418995,-3.6988619299571717,-0.33114639036129784,-8.728898966994201,-98.2517971065884,6.411210702890684,-144.95324127009346,3.911411633104613,-3.487818090199047,-46.37116728673664,-2.5924113071302592,193.59510858134928,-128.3159486016629,0.6009577475434581,0.30203427701516905,-1.17309145880574,-22.83870365704582,-5.647881313410209,-617.0251249780802,-3.9388422483920564,0.39636114890400354,15.872496559124247,0.5623311012849553,-543.4209229252282,-31.766691861929967,-3.9592622323003264,-0.1917529240660237,3.9370118417737507,-46.7830625620161,-5.899165071142359,-137.08981735248193,0.30365480296242786,-3.3198558075081896,-49.91699435437551,-2.59662978634417,-105.38811050830583,0.7284746971544414,0.610056128435751,0.4321431898435022,0.3392599390445072,0.26431191951228356,0.1840291302338521,0.15559597563800126,0.10682999931428011,0.09749158516403435,0.062294944069280614,0.05841098003012357,0.035339103056384547,0.03551569506854903,0.021270297593667414,0.02169599644967014,0.012151434849859062,17.00110322936139,5.703493549799541,3.567653826747429,2.2023902388231154,0.5861041491441652,-0.4754815834169382,4.118735185873302,0.9771838245662889,6.036256102774372,0.7679266565439827,13.6502753685636,10.96397439194799,35.45051765235019,11.71510214120215,2.203201238698559,0.7309072755415696,3.5146769478541624,2.2521393929706375,7.010453234989719,1.0756628662146699,3.7274673370817792,2.448184001741377,22.45576978619695,14.69869170785465,0.240809914938744,0.5534160584417684,0.8034513429533755,0.8990019230797656,0.8990019230797656,0.8990019230797656,1.6747149041277332,881.5735064979541,0.0,1.0,4.0,0.0,4.0,6.0,1.0,4.0,2.0,4.496359842757208,2.5739111122100167,1.0362573415102272,0.4486454366109589,0.4486454366109589,0.4486454366109589,134.35047900478597,1926.8147815695875,65.07558722359687,30.584361612215673,63.03737811774399,,14.0,704.0,34.65966905501616,19.490138947056174,49.051552081771305,6.4208216229260096,18.414747775921285,0.0,19.075777413358384,12.999757306524504,6.923737199690624,25.811528751632665,15.04761904761905,26.75,6.5,0.0,20.25,0.0,0.02976190476190471,-13.75,0.1570219198790625,0.017865321916494703,-0.1391565979625678,0.01785263347763344,0.1851297071129704,0.0,0.599244142101284,0.8891369047619043,0.44222222222222146,0.5813788201847893,0.8712842712842709,47.36803575472159,0.7892019178505194,1.1332019178505193,22.606268180854585,4.317286120714522,10.807725523808054,69.97430393557617,15.125011644522576,0.5288702928870296,0.23575949367088606,0.09968354430379746,0.26582278481012656,0.7083333333333334,0.39524706528976766,-1.187587447639572,-0.06795335332061593,-0.018850594406977332,-0.05398124761998055,0.6047529347102324,1.817083685766354,0.03352538780721641,0.028842598186767522,0.044319114286984235,-3.799899088487983,0.6876276318569114,0.6922723199235913,1.687835158412127,0.9474450194049157,0.46125784643072854,1.2944418597649605,0.6958961759273199,1.1595858239871673,0.6706359987922734,0.6302225275048587,0.7170924056766643,1.059276873258158,0.782819390144977,0.598064221867863,0.8062316937211481,1.5467475119943768,0.7896034043176612,0.9816038881389949,0.7894808197839561,1.005581213965743,0.6072801956233105,0.4767167032452846,0.5840677973056375,0.9517229503749144,0.7060984804785997,0.7150520421408493,0.8573929158834032,1.6597086510142849,0.9486703363171691,1.1593339551985808,0.7156884791206489,1.0663214839606119,0.7045875537880267,0.6781705870592268,0.679818762884206,1.0658390213785822,0.8167649295866658,0.951175291037677,1.1283503497630147,1.2810166929035673,1.0550437103842747,1.2738805634450145,0.8253680322037302,1.179920642154809,0.9169214032209949,0.903241351834103,0.9078055492816633,1.1637308662688859,0.8569317239611175,1.1570570869719305,1.029289108640387,0.9585652661115462,1.1329830972242316,0.9721517419538842,0.8585597347114204,0.9090380550544848,1.11620964576236,1.1722984342590625,1.0983552937144208,0.9747996478856628,0.9937041146027816,1.1496278547693422,1.1116196909183458,0.9537361549919338,1.0977399220385522,0.9208657489464457,0.9908660487775224,0.8801715180832945,1.139773096722802,1.1763238818979025,1.1372692974788983,0.9464179392961005,1.252216727943182,1.0041283129526792,0.9488317702029277,0.8540349470692198,1.028011269216217,0.9467670912137228,1.2487068392963452,1.074284090969011,1.0371102343858105,0.9581870939929111,1.0355711598406068,1.0286580957301446,1.0577646930673896,1.2438463271791291,1.0737594237018318,0.6962285369869456,1.0967155410155782,0.9430884957938085,1.0538792260611185,0.9321563997660499,1.2209212960087061,1.2253015661382063,1.231205228737755,0.964759421835084,9.5,0.16090194878073666,7.1111111111111125,4.979166666666666,3.8766666666666674,2.0041666666666664,1.4385487528344671,0.7734906462585034,0.5132275132275131,0.2884413580246914,7535.307879889211,8615.5450764648,3090.625992793681,2777.6501819359287,14.331805557834809,0.4663827129193462,7.647699200739247,0.8740022563190585,1.0,0.7083333333333334,1.4809200807427085,3.4033688112899,4.94102258198969,5.528634486888958,5.528634486888958,5.528634486888958,0.2714285714285714,0.00846852362003877,0.12929292929292935,0.07322303921568626,0.05460093896713615,0.03131510416666666,0.027142429298763534,0.017188681027966737,0.015094926859632738,0.01030147707231041,0.6380566209497021,25.103673469387754,9.223140495867769,3.8816180844735277,192.6530909481957,1.0,4.412929436289812,168.52863663065654,,148.2100149643326,147.83702411128513,152.9466417247635,148.21121157745583,213.1913710878598,148.87944642968537,149.3051036476282,180.07671097667517,0.02806800577424133,-0.016688486811348432,-0.6583294014633775,0.4781253675173468,0.35548243079019687,-0.021833153128740655,0.02879088999845767,-0.008293273181484376,-0.0073413355356179944,-0.03870553363308876,-0.03693277328847241,0.027677929346328324,0.05898497776856126,0.2093764315451226,0.0929099058862284,0.09079310590703964,0.15998913793025424,0.16857398565036433,0.05725391979687326,0.07759543771991353,0.19492850326133856,0.14825054455486733,0.22858308838629177,0.09329962857166617,-0.003968632059923869,0.036944820656280936,0.07441203219196224,-0.17556460047892983,-0.04438418480498773,-0.027411145496728552,-0.005077804030073914,-0.03209667654711157,0.032404797894462566,0.0018971261698419821,0.0396653029476286,-0.029367856039904185,-0.054193536345225966,-0.0621750537207655,-0.10790282943722096,-0.164863853863059,-0.12097042007885983,-0.2099958140416468,-0.05717513446950116,-0.19272831541880814,-0.04997971308000921,-0.05447196857517669,-0.05205034779903213,-0.16267472492751148,-0.004858851501729185,-0.020851886462550803,0.07669560790832812,-0.04294134795838418,-0.09079035568594755,-0.013062983676835267,-0.005441050241174122,0.0020645634306775454,-0.018585664663709468,-0.029658236742438778,0.0003054728065597317,-0.030284741131962157,-0.013969393533534328,-0.09437546458071441,-0.05414436172363817,-0.044640326146900076,-0.09368782630631944,0.019930448729650736,-0.011807759300029707,0.06377357449109382,-0.09254919786634828,-0.08970343316801502,-0.09358182960912516,0.015251442045315724,-0.05787698694101091,0.018068788677324327,0.05819471741661352,-0.007069584388608465,-0.025663047482379756,-0.020689819722073486,-0.05922929008286248,-0.07567805160682814,0.012393787048476403,0.03618265207508067,0.023920697930927676,-0.0504483541763692,-0.017340603214562357,-0.14406759389030863,-0.04471325248102472,0.028714130306950515,-0.06361980921400467,-0.026153428491522194,-0.015925967019509137,0.007060711151124551,-0.12563166283628174,-0.13771159788249343,-0.13367762256175877,-0.011840477053346373,9.675857984920953,21.83986244375926,7.921635277943373,15.876924160584512,36.039014853736745,43.25924114765728,43.85155394779574,43.85155394779574,43.85155394779574,64.84936001276627,50.165359870224044,0.0,12.97451266212258,1.7094874804196332,14.684000142542212,8511.62664044578,7605.539574626841,1685.92206959772,386.0,55.0,82.0,119.0,159.0,197.0,248.0,305.0,359.0,466.1758310120008,35.0,5.198497031265826,6.12029741895095,7.087573705557973,8.042699496897637,9.020994200245264,9.989986298152745,10.973100049353933,11.948796912498944,12.934319076904421,0.6560846560846559,0.9874920634920636,1.1278462836635357,0.6170996692185604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6515025472863797,0.9750389044506691,1.013358535936832,0.6109965171766518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,3.0,0.0,4.0,0.0,3.0,1.0,0.0,0.0,1.0,7.0,0.0,3.0,0.0,4.0,0.0,3.0,0.0,0.0,19.31711625624085,0.0,11.849308732922188,5.601050810983688,0.0,4.794537184071822,9.589074368143644,0.0,0.0,37.09753892651691,63.01569762031123,16.747886984954953,12.71084835226122,253.46131205682192,-761.5678877723241,-43.57665775121443,-12.08837917098927,-34.61672217146928,387.8117910616079,1165.2468937972635,21.498929472382436,18.495982441226403,28.420655946274714,0.5,0.8031338841152447,0.1485571291822708,20.59890237488044,0.16937464907859381,2.5105362883063087,0.1968661158847557,7.0,0.11428571428571428,0.24775819431183263,0.56938421068577,0.8266339614719833,0.9249415382326179,0.9249415382326179,0.9249415382326179,3.9165000000000028,,2.3970588235294117,2.11660777385159,1.3436002137435479,2.406043820968712,-7.342114896245624,2.0040844863114513,1.9492477741944372,-2.70967271666857,115.65580000000006,33.700727808456314,0.0,0.0,28.58369907727774,64.5803369124339,12.672945751070166,23.80116485057091,0.0,0.0,4.2626798770413155,0.0,5.673323267171493,2.3978952727983707,7.312553498102598,4.948759890378168,9.071882578828616,7.260522598089852,10.897128138837616,41.33333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.21200000000001,0.0,37.51424447973265,0.0,0.0,0.0,5.233023572146949,0.0,-0.5748893600479521,71.05431587080275,0.0,4.794537184071822,0.0,47.39240620849841,23.79966322954379,28.58369907727774,52.87531971370191,23.80116485057091,0.0,0.0,0.0,38.877279160769305,41.04466047904192,39.956644297999716,337.05727326131307,,296.2702137521946,295.54176023670453,305.80930843616807,296.2720454161011,429.5949174428272,297.6336375789763,298.48837930936924,361.33890376689294,39.956644297999716,337.05727326131307,,294.02297110513575,293.5574404487187,304.5496832357834,294.01637933394295,433.7248570719654,295.7548083730594,296.66095952106207,362.8630946700191,5.300748543411457,239.76794266065937,,216.12112058205895,215.54478129158366,221.47039379548312,216.12631273040193,298.636863599561,216.76775029761416,217.26412060283766,254.42438438972295,1.2486451343124911,10.533039789416033,,9.258444179756081,9.235680007397017,9.556540888630252,9.25850141925316,13.42484117008835,9.301051174343009,9.327761853417789,11.291840742715404,2.6823535235523224,168.52863663065654,,148.2100149643326,147.83702411128513,152.9466417247635,148.21121157745583,213.1913710878598,148.87944642968537,149.3051036476282,180.07671097667517,61.42745098039215,0.0,5.658440717731843,5.695310872239487,0.0,0.0,11.472122053553932,63.84158776402041,2.5136010352719222,0.0,15.88932063855413,0.0,-0.7175286246185728,0.0,-2.8225342734532846,0.0,0.0,38.492780582129065,515.0281580861403,93.29796508679064,214.4122351112637,311.28442266535046,348.30397267400434,348.30397267400434,348.30397267400434,1977.0,148.3162641898277,126.24494503228968,83.82474512124803,99.13000000000001,99.13000000000001,1.0,8.067149039910106,6.129283016944966,4.580308397551147,5.546388123636125,,5.571450533953052,5.56959818028807,5.564193841091566,5.571492451176567,5.498328011131562,5.568901544271322,5.568531830249961,5.532806738721147,0.14313463742347335,0.1733246288636289,,0.17410782918603288,0.17404994313400218,0.17388105753411143,0.17410913909926773,0.17182275034786132,0.1740281732584788,0.1740166196953113,0.17290021058503585,2.684917141374685,2.8762977371752143,,2.8808062488638178,2.880473721158471,2.8795029217020827,2.880813772410079,2.867594857851275,2.880348635009549,2.8802822437667803,2.8738460442703384,337.4100000000014,425.2799206413016,219.48251405171592,,215.4126516678973,215.6356133353726,216.509221207478,215.40567106417387,224.89211799776035,215.773587490829,215.83826654232226,220.7981237017244,13.289997520040675,6.858828564116123,,6.731645364621791,6.738612916730394,6.765913162733687,6.7314272207554335,7.027878687430011,6.742924609088406,6.744945829447571,6.899941365678887,7.215898398727133,6.554423376513119,,6.535706308494356,6.536740817645475,6.540783948523551,6.535673902241624,6.578771621459426,6.537380461676693,6.537680171016801,6.560399626444818,15.88932063855413,37.51424447973265,11.472122053553932,-1.7646763382554322,-0.6761431749454212,-0.3539963572551821,6.30996515324024,5.7749637842467,0.0,437.7946304809808,162.53792210314688,-488.37300262710625,-27.94453853965105,-7.751952422652481,-22.19877284668665,248.69327067999342,747.2414914844826,13.78668521647895,11.860976055309244,18.225402231328836,2580.0,68.0,3.305201460964695,2.1510915720786556,0.2920819864624269,0.22147979777365068,1.5500746361017486,0.978489621369707,0.4474318333048531,0.25693995108966056,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.4038859871952694,0.33542029894596426,1.0856158804900302,0.7681669010682782,23.311190308942123,19.52179610994403,15.125011644522576,11.87409786655775,14.537155573175594,10.121602162861866,12.758870002316103,8.760059943770969,11.601498634520087,7.413098344244393,9.287345824789648,5.618917385965143,6.9965919285041585,4.1902486259524805,5.380607119518195,3.0135558427650473,8.70221015782018,5.67731386389574,16.43457058222032,9.908341968974016,28.922333452109996,15.802560666880257,113.32153531095099,49.59628485432554,29.39858067526428,25.441974461277862,25.441974461277862,25.441974461277862,180.0,227.0,68.54458299999997,39.42141700000002,0.2698412698412698,233.08,12.32638888888889,6.979166666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,63.0,0.0,0.0,66.0,0.0,5.0,5.0,61.0,5.0,35.0,61.0,0.0,0.0,0.0,24.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,7.0,1.0,0.0,32.0,8.0,0.0,0.0,7.0,0.0,4.0,4.0,0.0,0.0,1.0,0.0,0.0,3.713572066704308,6.637258031284457,4.204692619390966,4.672828834461906,5.081404364984463,5.4510384535657,5.673323267171493,5.921578419643816,6.182084906716632,6.4692503167957724 +4932,CCCNCC(O)COc1ccccc1C(=O)CCc1ccccc1,0,19.692307692307693,5.925094230769229,2.75,5.615384615384615,161.9817692838889,77.32846771153845,1.417520392902365,5.999517307692306,3.786324786324786,7.500118230769228,204.33851039395765,21.90566037735849,6.1755471698113205,3.3773584905660377,5.132075471698113,145.0465318461311,81.57241090566039,1.7720039252075475,6.323547169811321,2.8957023060796647,7.626002264150942,252.08815132722734,17.097826086956523,6.043760869565217,2.967391304347826,3.739130434782609,152.87780935580966,61.374048999999985,1.4644536841482718,6.1556684782608695,2.661533816425121,7.569362869565215,200.26180900749495,13.910569105691057,5.95859349593496,2.4959349593495936,3.032520325203252,160.36449891644767,48.767853951219514,1.2084215238493492,6.033005691056912,2.75,7.5544184715447145,160.05838735444135,13.258333333333333,5.971741666666666,2.4166666666666665,2.808333333333333,162.23445782956557,45.972254541666665,1.1648751972859919,6.0372933333333325,2.747916666666667,7.579579366666667,153.5163066540711,13.587719298245615,5.898728070175438,2.4649122807017543,2.736842105263158,158.62473027670106,47.373125798245624,1.2178953317449384,5.982206140350878,2.6812865497076026,7.50346452631579,160.7420876861096,13.279661016949152,5.94949152542373,2.3728813559322033,2.7966101694915255,160.91526055689764,46.14113702542372,1.1639958825620256,6.020449152542373,2.8361581920903953,7.567060711864407,154.36893652832828,13.666666666666666,5.982423423423424,2.3423423423423424,2.8378378378378377,160.99012495803495,47.701539207207205,1.1753797039258738,6.05192882882883,3.0848348348348344,7.588947531531532,156.07364153291925,12.466666666666667,5.918409523809525,2.3142857142857145,2.2,161.9308880206393,42.545710057142855,1.173380012027838,5.986615238095239,2.617989417989418,7.536750323809523,152.28374385413264,7.171597633136094,0.10308206360946742,0.015593054333008362,0.4419378698224854,3.2485207100591706,1.3687923406473632,34.21131334726332,0.23363365136874073,0.09928946005917154,1.2386176857330702,0.06337946005917157,51.705877271035675,0.10996985597856465,-0.003582426454169898,-0.005398376643587143,0.12446271072903876,0.7355141230322654,-0.014169243387641453,0.5464807768295703,0.002030490017325274,-0.002538008680361717,-0.09293553769243178,-0.0029630333538015535,0.9804418034670054,-0.5737715461795727,-0.007717431502444022,-0.0027655716538273188,-0.025340879855929983,0.002315410342166144,-0.09769519886025976,-2.759883283509136,-0.02402811908726898,-0.007183920761512722,-0.06789815767658576,-0.0046444374839208005,-4.68128932425113,0.16611343628229186,0.008082773788906534,0.001309126747349213,0.011626858132486663,0.146100928464906,0.019898196324200954,0.7511705335997254,0.00043973470197312834,0.007049658139702702,0.02045048187168261,0.005437935813248629,0.16177460245947176,-0.022238658777120286,0.0029920870315581975,0.00012803164919558455,-0.010207100591715963,-0.01711045364891519,0.1594984482827137,-0.1047058565581857,0.010085116732019178,0.002035860453648921,0.021665433925049306,0.003062393786982205,1.1807311129490068,-0.057562545416796444,-0.0043973976175646174,-0.0003783294104693656,-0.011269853628153213,-0.011003840963355107,-0.10498852768063212,-0.2847677059002916,-0.013674071831655393,-0.0032347367123429873,-0.028513097339008284,-0.004063157764974587,-1.6528287693845938,0.011583592418012262,-0.009507682905425724,-0.0005605486503787653,-0.0054971918563835025,-0.012536355430749184,-0.03768086339187414,0.11286975084620345,0.0023897801349655693,-0.00775450243205295,-0.09220489419316016,-0.007391723422926529,0.9626579029951078,0.0792686177301562,0.0012996584972546626,0.00138468116330782,-0.0030951809797963624,-0.0343834959219575,-0.049455688446317855,0.3764754295904628,0.0006928936822197447,0.0012874456927341588,0.10591915880377409,0.0008836390399274555,0.20735471601044184,-0.5232459847844464,-0.012624371301775133,-0.0004914645299633687,-0.02215765004226542,-0.5613412228796846,0.12556131496507572,-2.3748352258347425,0.019317989842472977,-0.012900668850380376,-0.14214841426379887,-0.006938300352211922,1.0639966666844796,,,0.4759999999999999,1.14,0.56,0.02,0.58,-0.02,0.8418928951132453,0.008460198478634525,0.015340198478634524,0.820972398368627,0.22779826571602993,0.2603100783002594,1.6628652934818724,0.48810834401628933,2.005250018351286,1.7036704220148362,0.07837954669638673,0.22320004964006337,0.0,0.30157959633645004,6.561521033153861,1024.0,308.10489999999993,143.0,292.0,8423.052002762222,4021.0803209999995,73.71106043092298,311.97489999999993,196.88888888888889,390.0061479999999,10625.602540485797,1161.0,327.304,179.0,272.0,7687.466187844949,4323.337778000001,93.91620803600001,335.148,153.47222222222223,404.1781199999999,13360.672020343049,1573.0,556.026,273.0,344.0,14064.758460734489,5646.4125079999985,134.72973894164102,566.3215,244.86111111111114,696.3813839999998,18424.086428689534,1711.0,732.9070000000002,307.0,373.0,19724.833366723065,5998.446036,148.63584743346996,742.0597000000002,338.25,929.1934719999999,19687.181644596287,1591.0,716.6089999999999,290.0,337.0,19468.13493954787,5516.670545,139.78502367431904,724.4751999999999,329.75,909.549524,18421.95679848853,1549.0,672.4549999999999,281.0,312.0,18083.21925154392,5400.536341000001,138.84006781892296,681.9715000000001,305.6666666666667,855.3949560000001,18324.597996216497,1567.0,702.0400000000002,280.0,330.0,18988.00074571392,5444.654168999999,137.35151414231902,710.413,334.66666666666663,892.913164,18215.534510342735,1517.0,664.0490000000001,260.0,315.0,17869.90387034188,5294.870852,130.467147135772,671.7641000000001,342.41666666666663,842.3731760000001,17324.174210154037,1309.0,621.4330000000001,243.0,231.0,17002.743242167126,4467.299556,123.20490126292297,628.5946000000001,274.88888888888886,791.3587839999999,15989.793104683928,372.9230769230769,5.360267307692306,0.8108388253164348,22.98076923076924,168.92307692307688,71.17720171366288,1778.9882940576927,12.148949871174517,5.16305192307692,64.40811965811965,3.2957319230769215,2688.7056180938553,5.828402366863926,-0.1898686020710046,-0.2861139621101186,6.596523668639055,38.982248520710066,-0.750969899544997,28.963481171967224,0.1076159709182395,-0.134514460059171,-4.925583497698884,-0.15704076775148235,51.963415583751285,-52.78698224852069,-0.71000369822485,-0.25443259215211333,-2.3313609467455585,0.21301775147928526,-8.987958295143898,-253.9092620828405,-2.210586956028746,-0.6609207100591704,-6.246630506245889,-0.4272882485207137,-430.67861783110396,20.431952662721898,0.9941811760355036,0.16102258992395319,1.4301035502958594,17.970414201183438,2.4474781478767174,92.39397563276623,0.054087368342694786,0.8671079511834323,2.5154092702169613,0.6688661050295813,19.898276102515027,-2.6686390532544344,0.3590504437869837,0.015363797903470146,-1.2248520710059156,-2.053254437869823,19.139813793925644,-12.564702786982284,1.2102140078423014,0.24430325443787052,2.5998520710059165,0.3674872544378646,141.6877335538808,-6.562130177514795,-0.5013033284023664,-0.04312955279350768,-1.2847633136094663,-1.254437869822482,-11.968692155592061,-32.46351847263324,-1.5588441888087148,-0.36875998520710057,-3.2504930966469443,-0.4631999852071029,-188.42247970984369,1.366863905325447,-1.1219065828402355,-0.0661447407446943,-0.6486686390532533,-1.4792899408284037,-4.446341880241149,13.318630599852007,0.2819940559259372,-0.9150312869822481,-10.8801775147929,-0.8722233639053304,113.59363255342272,8.798816568047338,0.14426209319526753,0.153699609127168,-0.3435650887573962,-3.816568047337283,-5.489581417541282,41.78877268454137,0.07691119872639166,0.14290647189349162,11.757026627218924,0.09808393343194756,23.016373477159043,-54.94082840236687,-1.325558986686389,-0.05160377564615372,-2.326553254437869,-58.940828402366876,13.183938071332951,-249.35769871264796,2.0283889334596625,-1.3545702292899395,-14.92558349769888,-0.7285215369822517,111.71965000187035,0.7163026650447776,0.5911941422177293,0.469334946169509,0.3415758888848381,0.31079266296602104,0.18980894368198292,0.20485548105559492,0.10286819196066772,0.13450244206564538,0.05796430633570884,0.09024474644094893,0.03279639255904716,0.06020186560528848,0.019394023013564042,0.03879168083016995,0.010406805147772067,8.022205160508843,5.692352959502311,3.5434631136926034,2.1914035192761787,0.39206871568703816,-0.5206886062978286,3.205125829512078,0.9779402209811892,6.022026662284916,0.9879381856549576,14.540220770877603,10.952800835216731,16.010452040948156,11.70383346884355,1.99160818676649,0.7527699934677478,3.488562990247026,2.241182456387793,7.008270740345925,1.249328551139046,3.7016484996364105,2.437221812119184,20.899152441858853,14.702422688587918,0.2313053134706319,0.5579019326395358,0.7537774629029349,0.8727041652194909,0.910501092926613,0.910501092926613,1.7003650039057672,642.5992384237759,0.0,0.0,4.0,0.0,11.0,4.0,2.0,0.0,0.0,4.334144537287136,2.4049740389608005,1.2479587113380965,0.5454716918576983,0.32220937504160396,0.32220937504160396,241.07865922430608,1366.8736452820228,46.81522811274523,26.2860316400389,51.26830336702187,,16.0,612.0,6.103966387748303,9.901064578912528,12.390126910877857,30.699362976745494,18.52902952053558,0.0,12.13273413692322,42.46456947923127,12.240525803696954,4.736862953800049,11.899999999999999,28.5,14.0,0.5,14.5,0.0,0.024000000000000056,-0.5,0.10724446786090602,0.04579326923076915,-0.06145119863013687,0.03762962962962946,0.12489108910891056,0.0,0.5442307692307694,0.8079999999999995,0.4369863013698634,0.49843750000000026,0.77037037037037,21.047322377831133,0.2115049619658631,0.3835049619658631,20.524309959215675,5.694956642900748,6.507751957506485,41.57163233704681,12.202708600407233,0.5891089108910894,0.09803921568627451,0.0,0.2100840336134454,0.38095238095238093,0.3096699934974434,-0.668353128981699,-0.03205035792175549,-0.012852944788109597,-0.037130729387872166,0.6903300065025564,1.4899222706889403,0.041870267817472995,0.028652351359402695,0.043821243255557064,-5.548474548110252,0.9392396786848497,0.838950170145033,1.3176736657552752,0.9211968106102468,0.6636380039179299,1.2249823621369988,0.9444040881023664,1.1496705057315688,0.8344291336951638,0.7675479585047126,0.844153575511402,1.0735866197855672,1.0561538151097718,1.0190493981660582,1.2616348314670682,1.3146625432053842,1.005828284628178,1.1853585886778086,1.0588904140395734,1.1638193136494406,1.0119510816670567,0.7912279366901827,1.013357252888477,1.1183600831713214,0.9901015253964421,1.0877956779111442,1.1284483335600504,1.0825594448413098,1.053012128481941,0.9820500337002935,0.9883843226705085,0.9734171213825555,1.0732154461597068,1.0867037851282868,1.1121565969412888,0.9651358643677487,1.031948741749175,1.2284067886970331,1.335648444345814,1.0911297071129702,1.1535576047358838,0.8688400126568733,1.0272313067793217,0.9085361914953443,1.205479838810304,1.1399906280065024,1.2492539733499146,0.9267944553338973,1.0070864816744833,1.1411039818188413,1.1254971036580927,1.138824047566615,1.0606665228645387,1.0499471510920326,1.0056755397093904,1.0600266639542337,1.1175346596641704,1.2084794933623413,1.2100991567691741,1.0198585301091994,1.0291575767746266,1.3735399939585171,1.2383583922245027,1.1284306077583146,1.1424064554968976,0.9805081343541413,1.0224389606766102,0.9595656443815007,1.3266200210447527,1.5576485138354637,1.471830473832166,0.9417316226211578,1.020752497547052,1.268233444349805,1.1885586937066486,1.0596403935316066,1.1314921478855908,1.008583667728201,1.0158356837900826,0.9625243445125246,1.2341385902282913,1.3379396049999508,1.3284217922738866,0.9532064429129622,1.090803276756247,1.3242529882443432,1.3133508930625866,1.003945008965929,1.276658860265418,0.8850189968005976,1.0835128202176134,0.8765712807257444,1.3066504823553708,1.23958417258686,1.3480534359449015,0.9358701812158488,3.5,0.0908070605040302,2.222222222222223,1.0625,0.8133333333333335,0.6666666666666666,0.42938775510204086,0.2309027777777778,0.11060720584530107,0.13375,4326.61009672443,5066.392678155086,2300.741259914778,2021.236047438102,13.846094012131799,0.46006543230150504,7.475984784753102,0.8520762696534933,1.0,0.38095238095238093,1.366295180853956,3.295465679180291,4.452481006802995,5.1549680262833935,5.378230343099488,5.378230343099488,0.1346153846153846,0.005675441281501888,0.06944444444444448,0.033203125,0.02804597701149425,0.02298850574712644,0.014806474313863473,0.008246527777777776,0.004608633576887545,0.0066875000000000025,0.32832201376848047,21.301775147928993,12.3984375,8.044321329639889,149.39213962048515,1.0,4.10474896922805,149.1181205057405,,126.82330538356763,125.31395763638173,127.56498572843248,126.84682701115766,170.4253167610683,126.341086797537,126.8983666532288,149.96191627324214,0.015334080577869164,-0.03475315034186874,-0.34620392697276237,0.28162943080445246,0.22641509433962273,-0.010351638423794938,0.01597368599335825,0.008690914195920262,-0.02556171298392791,-0.07503165727641642,-0.04675068785747373,0.018961902499548617,-0.08000609843593053,-0.07486687045461152,-0.17735920075472209,-0.05734036747316707,0.0007127583749108896,-0.07137327990457291,-0.08067165546948839,-0.102845283402029,-0.07235330675815405,-0.054817687861771935,-0.07327985248824645,-0.09053689002726717,0.023162682121870733,0.07841105916863099,0.08395576128904847,0.026308807021124623,0.044974602751492024,0.014537045345234914,0.021956787392957956,0.001882154815442666,0.07100107237466553,0.01651072974917122,0.08579965509601578,0.0031287468852229257,-0.0031009350935093474,0.029026262443618694,0.00821081274144983,-0.023096234309623393,-0.005267152398299941,0.11652494213057894,-0.003060562320287581,0.04316637039628327,0.02050429574735979,0.017491623262448994,0.04831839501509053,0.022835530026108317,-0.008026460540790923,-0.04265919272070864,-0.02426268788588096,-0.025500990971151695,-0.0033873390215064,-0.07670157449228446,-0.008323787602356726,-0.05852783514509131,-0.0325788528854447,-0.02302009543980711,-0.0641084313621667,-0.03196597479084774,0.001615203893270687,-0.09223411496151407,-0.035948611375781626,-0.012438834125239316,-0.0038590966626532103,-0.027528546349151233,0.0032991937404014417,0.010228749672682266,-0.07809995569954409,-0.07444177106076855,-0.11662648145038719,0.018617958998142062,0.011053132340261056,0.012607998440722887,0.08880115041840389,-0.007003656376041305,-0.010584354846649945,-0.03613089215777467,0.011004413240995273,0.002965727232187799,0.012966589726310382,0.08551400486509793,0.013942041145545939,0.004010273627570704,-0.07296086751532298,-0.1224691363339729,-0.03151816953032771,-0.050137477585176296,-0.17279902853673357,0.09173145643530717,-0.06941666347996879,0.08268496310055808,-0.1299298922835538,-0.11476375309437714,-0.1094723802590661,0.020577867020941224,20.369843896376707,18.826245514863988,3.3416253097913438,12.174226210155583,28.12387615105763,33.716672389332075,36.88133457689579,37.10638299224642,37.10638299224642,50.131250458782155,42.59176055037091,1.9594886674096683,5.580001241001584,0.0,7.539489908411252,6514.145359526278,4681.463296380386,2122.5276160417725,49.0,32.0,38.0,44.0,51.0,46.0,48.0,48.0,50.0,341.19909372400076,26.0,4.762173934797756,5.54907608489522,6.361302477572996,7.1693500166706,7.991253929840199,8.80941494391005,9.637110246578176,10.461702359555922,11.293387904250002,0.5897435897435899,0.9651538461538464,1.1254866672496087,0.5466959774053272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6515362851220636,0.9525641025641024,0.9930948512521712,0.60032761981556,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,6.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,15.160178952647087,18.460360185545124,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,0.0,49.38830667892189,37.08258528038481,12.965578028838586,5.563451491696996,196.11943541167398,-423.27975284631077,-20.298053516149455,-8.139995247044439,-23.515541824795047,437.19809463598006,943.5938924357121,26.51717459659578,18.14603639299446,27.752761542226825,0.5,0.9215865723995134,0.22707115746454293,4.430614713731727,0.09761979644556146,135.82256698895307,0.0784134276004863,8.0,0.4230769230769231,0.2396824189730233,0.5781072763023516,0.7810767637158603,0.9043105937737069,0.9434763998966248,0.9434763998966248,3.2414000000000023,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,100.19800000000004,14.637927532712578,0.0,5.316788604006331,0.0,32.29016845621695,19.696394776338067,65.72420659954848,0.0,5.749511833283905,3.970291913552122,0.0,5.198497031265826,0.0,6.618738983517219,0.0,8.128290171607052,0.0,9.686760869017997,30.66666666666667,17.203050562217427,0.0,0.0,0.0,0.0,0.0,2.2582610572620228,0.0,50.18800000000001,0.0,12.539545862536935,0.0,0.0,0.0,0.0,0.0,0.05375077976042997,58.525306696979655,10.05365155780638,0.0,5.749511833283905,36.69013350529202,6.4208216229260096,0.0,35.68682061300846,54.59730361615449,0.0,0.0,0.0,28.42819082507701,33.87988682634731,32.25486007691836,298.2362410114812,,253.57518219570665,250.5444904239966,255.07039928541752,253.62243026905304,342.35665936661655,252.60718583497606,253.72587351495608,300.53035577145107,32.25486007691836,298.2362410114812,,252.7537536242781,249.58510466317765,254.38531931377244,252.80335710653702,344.6156981333361,251.7448265938501,252.91098591268872,301.44014060890186,4.652533355769803,221.46399665346132,,190.17970010340392,187.89957437829258,191.74185412572768,190.21664431798294,262.811561530335,189.46883246668028,190.29157331479718,227.48678752522443,1.2901944030767345,11.929449640459246,,10.143007287828265,10.021779616959863,10.202815971416701,10.144897210762121,13.694266374664663,10.104287433399042,10.149034940598243,12.021214230858043,2.326266677884902,149.1181205057405,,126.82330538356763,125.31395763638173,127.56498572843248,126.84682701115766,170.4253167610683,126.341086797537,126.8983666532288,149.96191627324214,49.533333333333324,0.0,2.076570643406689,0.0,0.0,0.0,9.946231100791852,51.6409322651129,3.6787352485419076,3.150008246496446,5.691969718442933,0.0,-0.5981232194566433,0.0,0.0,0.0,0.0,31.21703623040912,583.6569317571434,71.04734940440572,171.36421531737514,231.52901235375575,268.05833736673645,279.66797784117335,279.66797784117335,457.0,123.03477189807093,49.660598290510535,58.60257896896021,58.559999999999995,58.559999999999995,1.0,7.500512210508661,5.700439718141092,3.92077771785192,4.909607902333109,,4.902169094737617,4.902486254466419,4.905865262889536,4.902175876032571,4.905557079805496,4.902450934371158,4.902135008888656,4.902137240370498,0.1568311087140768,0.19638431609332435,,0.19608676378950465,0.19609945017865676,0.19623461051558144,0.19608703504130282,0.19622228319221985,0.19609803737484632,0.19608540035554625,0.19608548961481995,2.2825807634095665,2.507484813533214,,2.5059685114356487,2.506033207178154,2.5067222135929046,2.505969894760078,2.5066593923069838,2.506026002625064,2.5059615581937664,2.5059620133997798,282.5200000000004,425.79376678832716,140.44001691906203,,140.53247759470437,140.49064630591496,140.2994360601092,140.53235239953682,140.6091515208642,140.50742953716014,140.53572261044536,140.74652788586616,17.031750671533086,5.617600676762481,,5.621299103788175,5.619625852236599,5.611977442404368,5.621294095981472,5.624366060834568,5.620297181486405,5.621428904417814,5.629861115434647,6.970245845401414,5.861071203646197,,5.861729351192915,5.861431644096661,5.860069699445691,5.86172846032964,5.862274798185608,5.86155109851794,5.861752441786151,5.863251329927982,5.691969718442933,12.539545862536935,13.096239347288298,1.7211284619399427,0.5908833750825098,17.203050562217427,1.5634768298301374,3.5937058426618167,0.0,344.17145957126047,124.2058764292618,-268.070487591807,-12.855113117622874,-5.155201684457828,-14.892804866211506,276.88521743639944,597.594553325437,16.793791519358436,11.492202948566096,17.57631039192462,1786.0,32.0,1.0312509703768813,0.4502137074676239,0.0,0.0,0.1642664266089148,0.03784367876932762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.05985279273275698,0.179206871180051,0.04790957976087747,17.90756662611944,14.779853555443232,12.202708600407234,8.88097311100579,9.945365214912673,6.0738861978234535,7.7845082801126075,3.9089912945053733,5.918107450888397,2.550429478771189,4.602482068488396,1.6726160205114053,2.76928581784327,0.892125058623946,1.8620006798481576,0.4995266470930592,2.2814384675832864,0.7979133074268305,3.306877209859119,0.9679098861523697,4.625657573126902,1.114339221488247,86.28493455110848,49.18213722793325,31.651201588104342,22.484322164397078,21.408156933807884,21.408156933807884,116.0,128.0,56.57941099999998,30.260588999999992,0.28846153846153844,76.04,7.805555555555555,5.888888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,52.0,0.0,1.0,53.0,12.0,1.0,7.0,46.0,13.0,26.0,40.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,4.0,2.0,0.0,25.0,4.0,0.0,1.0,3.0,0.0,2.0,11.0,0.0,0.0,0.0,0.0,2.0,3.5263605246161616,5.9096950890420485,3.970291913552122,4.42484663185681,4.863680881139593,5.299566585948469,5.1412979926163,5.346661002467138,5.46144548545226,5.729592349055952 +54690031,CN1C(C(=O)Nc2ccccn2)=C(O)c2sc(Cl)cc2S1(=O)=O,0,50.96969696969697,6.873963636363637,4.121212121212121,10.863449307893754,159.26810676574516,206.37709284848486,2.0750619711663636,7.0087909090909095,7.819103529580209,8.44807403030303,276.04812807634687,43.68571428571428,6.698565714285714,4.828571428571428,8.155555555555557,145.5175862718757,171.98367519999996,2.2222135647428574,6.903017142857143,3.3163727219282775,8.221282114285714,312.1012026578027,42.03508771929825,6.852650877192983,4.491228070175438,9.512020792722547,152.70310217423767,165.90787731578945,2.088002870781526,7.008031578947369,4.729185217272721,8.35011240350877,286.6409066866929,37.95652173913044,6.822253623188406,3.971014492753623,8.096618357487923,152.89267339808026,146.23247091304347,1.9056029489934345,6.983882608695652,4.430237470428023,8.39308079710145,261.8466048954157,36.48684210526316,7.062813157894736,3.25,7.034600389863549,158.93822808742206,140.7144372631579,1.5551900262177236,7.164240789473684,5.293431731764253,8.633330460526315,228.23440297293055,34.3768115942029,7.209055072463769,2.8405797101449277,6.756843800322061,163.23599325315809,131.9035883043478,1.4659085325296668,7.31698115942029,6.763941074730126,8.827196782608695,212.65646739812576,25.34426229508197,6.407668852459017,2.901639344262295,5.080145719489982,160.57113721376558,94.56311795081967,1.471684567937508,6.532718032786886,3.778975241179249,8.072669475409835,195.69028624445062,32.702127659574465,6.832934042553191,3.106382978723404,5.534278959810874,159.78287381582234,123.30522936170215,1.7075413486808513,7.007365957446807,4.4885080115576566,8.474247319148937,231.87785560513473,24.543478260869566,6.273021739130435,2.717391304347826,4.154589371980676,154.55594790808752,90.04098823913044,1.6158082882227172,6.4231304347826095,3.691134371086062,7.942983304347825,206.3527078410911,17.82001836547291,0.17370982552800732,0.0316414635463429,0.8154269972451791,4.520513779773039,1.7804534461580064,79.43248669605143,0.3877452082968503,0.1618464646464646,3.2570518195492224,0.12484903030303028,46.26801791169228,1.3288993834448377,-0.02654203332021513,-0.018650188369137493,0.23825265643447469,-0.09292572996276705,-0.29143550632207543,5.864420218234291,-0.019213064010919705,-0.01819079365079364,-0.6308797437715218,-0.00706760000000001,2.1102363088357112,3.265574404330385,0.033747856555990524,0.0030082940670275444,0.045817021893576955,0.8371236733809833,0.35599067803891005,14.87973708863757,0.09788668502010918,0.027958479532163735,0.488588230952993,0.01878915789473684,7.914737963982427,-1.7396494590170481,-0.002138327943466282,0.000826908230114268,-0.15403042280512635,0.3747838015148804,-0.18176619502239366,-7.856744269613128,-0.04442638299747796,-0.004513526570048331,-0.12052312883298982,-0.014227318840579702,-4.434648303886142,1.7577328306993378,-0.03900671548016043,-0.004206150426924869,-0.21454980426272297,-1.3211861959425313,-0.4138512710855268,7.26291801288,-0.04555137641499582,-0.031018713450292397,-0.7226837376642636,-0.018670657894736816,-5.170765981936996,-0.3127719886613168,0.018898957959037052,0.004769996246113823,0.033057851239669415,-0.6567662670722252,0.1804294548838195,-1.5159627456781224,-0.009058932567267053,0.02216956521739133,0.41501897253161035,0.032964173913043515,-5.327112230307938,-0.49761399388821154,-0.004238290505652677,-0.0011626506033081481,-0.022083728492074246,0.3168274528323101,-0.2560334061695009,-1.3682669697722403,0.0008308973534646945,-0.0026571948998178724,-0.14160554206450165,-0.013890934426229521,6.270767552503858,-4.831623781333646,-0.029371269757536653,-0.00018948494191669472,-0.04818005978547565,-1.1023844963955287,0.3061452793101935,-22.369359115135882,-0.046295623306018635,-0.03183853427895979,-0.20484933767770896,-0.013975127659574444,-10.68079279934141,-3.011717970215994,-0.014728534355411844,-0.0008982317256881138,-0.06378009342436221,0.06453152024810649,-0.19073765009568475,-13.243174528067238,-0.04055760797539775,-0.016903381642512073,-0.10194492542558327,-0.01748430434782611,-6.179641284308527,,,0.4962732919254659,1.3804347826086956,0.717391304347826,0.043478260869565216,0.6630434782608695,0.05434782608695652,0.7645146209175838,0.02586127069771285,0.037078662002060676,1.070220964080758,0.26483199856577194,0.20557688562230197,1.8347355849983418,0.4704088841880739,2.013013101643467,1.1764069081295718,0.2681250258484824,0.30666243536714777,0.0768491178350545,0.8366061935138945,11.24182198424243,1682.0,226.84080000000003,136.0,358.4938271604939,5255.84752326959,6810.444064,68.47704504849,231.29010000000002,258.0304164761469,278.78644299999996,9109.588226519447,1529.0,234.44979999999998,169.0,285.44444444444446,5093.11551951565,6019.428631999999,77.77747476600001,241.6056,116.07304526748972,287.744874,10923.542093023094,2396.0,390.60110000000003,256.0,542.1851851851852,8704.076823931548,9456.749006999999,119.01616363454698,399.4578,269.5635573845451,475.95640699999996,16338.531681141496,2619.0,470.7355,274.0,558.6666666666667,10549.594464467538,10090.040492999999,131.486603480547,481.88789999999995,305.6863854595336,579.122575,18067.415737783682,2773.0,536.7737999999999,247.0,534.6296296296297,12079.305334644077,10694.297231999999,118.194441992547,544.4823,402.3008116140832,656.133115,17345.814625942723,2372.0,497.42480000000006,196.0,466.22222222222223,11263.283534467908,9101.347592999999,101.14768874454701,504.8717,466.7119341563787,609.0765779999999,14673.296250470677,1546.0,390.86780000000005,177.0,309.8888888888889,9794.839370039701,5768.350195,89.77275864418799,398.49580000000003,230.5174897119342,492.432838,11937.107460911488,1537.0,321.1479,146.0,260.1111111111111,7509.79506934365,5795.345780000001,80.25444338800001,329.34619999999995,210.95987654320987,398.289624,10898.259213441332,1129.0,288.559,125.0,191.11111111111111,7109.573603772025,4141.885459,74.32718125824499,295.46400000000006,169.79218106995884,365.37723199999994,9492.22456069019,588.0606060606061,5.7324242424242415,1.0441682970293158,26.90909090909091,149.1769547325103,58.75496372321421,2621.272060969697,12.79559187379606,5.340933333333332,107.48271004512434,4.120017999999999,1526.8445910858454,46.51147842056932,-0.9289711662075295,-0.6527565929198123,8.338842975206614,-3.2524005486968464,-10.200242721272641,205.2547076382002,-0.6724572403821897,-0.6366777777777775,-22.080791032003262,-0.24736600000000034,73.85827080924989,186.13774104683196,1.92362782369146,0.17147276182057003,2.6115702479338863,47.716049382716044,20.291468648217872,848.1450140523415,5.579541046146224,1.5936333333333328,27.8495291643206,1.0709819999999999,451.14006394699834,-120.03581267217632,-0.14754462809917346,0.05705666787788449,-10.628099173553718,25.860082304526745,-12.541867456545162,-542.1153546033058,-3.0654204268259795,-0.31143333333333484,-8.316095889476298,-0.9816849999999995,-305.9907329681438,133.58769513314968,-2.9645103764921927,-0.3196674324462901,-16.305785123966945,-100.41015089163238,-31.452696602500033,551.98176897888,-3.461904607539682,-2.357422222222222,-54.92396406248404,-1.418969999999998,-392.9782146272117,-21.58126721763086,1.3040280991735567,0.3291297409818538,2.2809917355371896,-45.31687242798354,12.449632386983547,-104.60142945179045,-0.6250663471414267,1.5297000000000016,28.636309104681114,2.2745280000000028,-367.5707438912477,-30.354453627180902,-0.2585357208448133,-0.07092168680179703,-1.347107438016529,19.326474622770917,-15.618037776339554,-83.46428515610665,0.050684738561346365,-0.16208888888889023,-8.6379380659346,-0.8473470000000007,382.51682070273534,-227.08631772268137,-1.3804496786042226,-0.008905792270084652,-2.2644628099173554,-51.812071330589845,14.388828127579092,-1051.3598784113865,-2.175894295382876,-1.49641111111111,-9.627918870852321,-0.6568309999999988,-501.99726156904626,-138.53902662993573,-0.6775125803489448,-0.04131865938165323,-2.9338842975206614,2.9684499314128985,-8.773931904401499,-609.186028291093,-1.8656499668682964,-0.7775555555555553,-4.6894665695768305,-0.804278000000001,-284.26349907819224,0.7293763653482345,0.6102834854630632,0.432776173453028,0.35592676006479274,0.2792225072025685,0.21589273663490532,0.17160853506842047,0.12237824287496311,0.10658853829930665,0.07196582587051406,0.06785805890803547,0.04477463423886343,0.03956435839416941,0.026316033163851227,0.024559687560846137,0.014476466532338163,17.00110982051162,5.730370258746445,3.5810165641890097,2.194551476660175,0.4821965104340067,-0.3810999344667175,4.0486615936581725,0.9713650636237381,6.0225124795153056,0.644784496997769,14.551222722579123,10.310527394202076,35.45051836067381,11.743331003304277,2.955179160217707,0.7517062396498099,3.5370602621300935,2.2578229632755002,7.014575124312362,0.2975706375799204,3.768363417622556,2.4631331860114125,24.442720146421095,14.701030310796765,0.3906784823293769,0.7776393818479838,0.8420796590928079,0.8864843259809617,0.8864843259809617,0.8864843259809617,1.742732832891106,921.951206826328,0.0,4.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,2.9115116602082205,0.798925090200008,0.44711780309586135,0.20469356067161826,0.20469356067161826,0.20469356067161826,-50.018084002534664,1242.8361745993334,67.90975835598033,37.66170226058586,80.42074412545594,,11.0,417.0,21.689635754415264,18.318861563241466,25.623861775855566,0.0,15.64200186923097,19.310882622751876,18.19910120538483,0.0,10.30076712495354,11.600939890232516,11.414285714285715,31.75,16.5,1.0,15.25,0.0,0.0037267080745341484,1.25,0.3034831834831831,0.10349340581898703,-0.19998977766419607,0.051080745341614775,0.1852111184645927,0.0,0.745021645021645,0.938509316770186,0.44153846153846193,0.641528239202658,0.8874285714285712,17.58383628110443,0.5948092260473956,0.8528092260473956,24.615082173857434,6.091135967012755,4.7282683693129455,42.19891845496186,10.8194043363257,0.5287888815354073,0.2231956612432207,0.07300792657488528,0.34167709637046306,0.07692307692307693,0.5462762510409284,-1.25628252374095,-0.08217387619442397,-0.038069167386089404,-0.09663711721084234,0.45372374895907164,1.043437666084447,0.04348503651606201,0.03161932321468022,0.05217188330422238,-3.211145210156783,0.7221801799149011,0.7879069921990047,1.5661886835809693,0.8494208494208494,0.7305079802955664,1.2762733664526456,0.7002123932174825,1.0201941793039317,0.7115802838098568,0.7783668181650871,0.6908063023025628,0.7537579861608736,0.6186258183849812,0.5985184031072023,0.8393131306587468,1.0327169274537695,0.66873611615245,0.9069116620670217,0.6021039988160857,0.669186524320964,0.584871820813236,0.5923558462792495,0.6137031951137875,0.6550043092744549,1.0595378390367838,0.9167237198654993,1.0538112828993726,1.3787700744222484,0.8406548725637181,1.1680897379612616,1.0433423432900086,1.1698078838562747,0.8992359800328014,0.9728647376765958,1.0020369335518804,0.9793429133548448,0.7174341088214713,1.4580402478416796,1.3758536258708869,1.3065433854907538,1.366022504537205,1.21875601784797,0.7184411551205986,1.035347416673268,1.3545079840175118,1.5853747281201287,1.3388728935292595,0.9683665033020615,0.9365099991486271,1.242465966889685,1.2738161595601385,0.8962005483744614,1.2283778110944525,0.8313886290072953,0.9460396843515924,0.9090331787286673,1.1747911400167803,1.3088519115002966,1.0930468637814659,0.9903347430979879,1.0548706416639775,0.9814930277822792,0.970794407532827,0.9649977846699158,0.9936895421141887,1.0610067986814307,1.0492992657043707,1.0037117912022646,0.9985950348622067,0.9747484995382115,1.0390574371913655,0.9801150326025955,1.3019355715823795,1.1010395017877646,0.9164332190889616,0.8982173663024727,1.1638890682318415,0.8460834425545044,1.3196357300957917,1.037082576953302,1.152680834066774,0.9150237877371966,1.0804931930528747,1.1277139625515498,1.1717218789347983,0.9226599492979629,0.7170145445360202,0.9048178613396005,0.8922098950524736,1.0023527720694805,1.168444129705088,1.1369217627823984,0.9679988624905163,0.8484058421526971,0.9791106231342553,1.2374723291318845,6.0,0.024793388429752067,3.555555555555557,2.875,2.538888888888889,0.8752777777777777,0.6000907029478457,0.3125,0.2144274376417233,0.09625771604938271,5879.703930795317,6179.125180331763,2688.8252879472957,2579.547944109883,13.180051650620593,0.48485864522214583,6.7895896633427855,0.9412147573188581,1.0,0.07692307692307693,2.132882459150233,4.245469029158445,4.597276316262592,4.839700558686835,4.839700558686835,4.839700558686835,0.24,0.006198347107438017,0.09356725146198833,0.0701219512195122,0.0650997150997151,0.027352430555555553,0.025003779289493572,0.014204545454545452,0.012613378684807254,0.009625771604938271,0.5637871704779938,17.8112,6.718836565096953,3.2544378698224854,140.44233667413994,1.0,4.078127662988783,100.32411198915159,,66.29274304770414,74.70579303881384,74.43675765738158,66.27378253178287,97.93346182740882,75.12779814010182,75.206303861512,93.08360913918145,0.07457340145168649,-0.15279523331244002,-0.5894224311660535,0.29218146718146726,-0.02055645320197045,-0.16368611431596622,0.07382898939919263,-0.049550745179578214,-0.11239537230874573,-0.19369656324928716,-0.056609170154111065,0.04560896282316079,0.18325314471378898,0.1942771887163593,0.09507442860920512,0.05618776671408255,0.18518330308529943,0.19994382824616558,0.18732558563317947,0.2524510501369472,0.17274692773324327,0.15000935140805152,0.15049502466404657,0.17106282743921716,-0.09762332582034243,-0.01230976968036571,0.026133690968597485,-0.18889541715628672,0.08290734632683656,-0.10208983302238098,-0.09891096950894886,-0.11457622698322549,-0.027887705671592034,-0.0370037492524974,-0.11395618216695419,-0.09584694793604877,0.09863810433018545,-0.22455100257913363,-0.13293160162343418,-0.2631134423897582,-0.29226460980036295,-0.2324415007753028,0.09143510816514622,-0.11747759982664327,-0.19165518084098584,-0.22188278777961948,-0.14954587832536534,-0.11175680773284873,-0.0175517208931348,0.10879613690009703,0.1507514416685424,0.04054054054054053,-0.14528575712143926,0.10133904667553284,-0.01908492115422443,-0.02336310642511334,0.13697898972225467,0.12742166705503913,0.2640322782886959,-0.11513595072249108,-0.02792443776895096,-0.024398680343901073,-0.03674452673800313,-0.027082410279131594,0.07008660260033917,-0.14380235929335228,-0.017225533615835505,0.002142895220070845,-0.016417997795764125,-0.04347660089856966,-0.11126185275539434,0.1355313634673593,-0.2711346128966474,-0.16908237440375018,-0.0059885011841873306,-0.059085681426106956,-0.2438626559060895,0.17194792706926224,-0.28161474033580597,-0.11939702236262219,-0.19672060399037744,-0.06289409841384108,-0.11193621308595175,-0.23084612830674753,-0.16900756825544766,-0.08478814776678913,-0.028387805904506926,-0.07821680376028203,0.01427526236881561,-0.10712869269751056,-0.16672239632560254,-0.1045986052375601,-0.1044408457079097,-0.031299755445614155,-0.14004357346940274,-0.13356183305935143,3.2428314389336603,7.682027562309197,8.231059825417505,30.473679662718872,52.45637842479645,55.47839410959137,55.722757745955,55.722757745955,55.722757745955,46.29930133779974,27.057358886980154,6.166875594515095,7.0532360134443985,1.7675297102062537,19.241942450819575,5848.629862813363,4968.943977618702,1156.8331844807171,78.0,38.0,52.0,70.0,87.0,89.0,93.0,98.0,87.0,370.9801254800002,25.0,4.844187086458591,5.726847747587197,6.652863029353347,7.56164174558878,8.492285555710053,9.413526083949446,10.347371770548238,11.276025222797195,12.212467156993632,0.9595959595959597,1.0353939393939393,1.1144826056897672,0.9380542583439928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7778248956632191,1.0261437908496733,1.0506190823015296,0.7365815615960132,5.0,1.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,10.423315998847038,10.713346253352803,11.456204184712009,0.0,15.930470882759089,9.099753175368056,13.401775505276145,0.0,11.336785877934737,17.667306958694127,18.19910120538483,13.244515554290267,9.213476209446931,295.22369248309263,-678.9318861181724,-44.40917046922611,-20.5736935187325,-52.22552970139789,245.20560848055797,563.9042884811608,23.50058788675421,17.08800874185336,28.19521442405805,0.45454545454545453,0.7145982282142336,0.2192456053510036,74.75849983379915,0.12753267556206732,161.06789111767574,0.28540177178576653,6.0,0.08,0.4228223268608308,0.8416211994352227,0.9113634278931548,0.9594215765405636,0.9594215765405636,0.9594215765405636,2.2958999999999996,,3.32563025210084,1.7672878461688706,1.3261454219420035,3.3364650239850704,-4.801501695704657,1.7347301411462133,1.7672645611931208,-2.1555054168818435,86.69330000000002,18.318861563241466,0.0,9.289194512243443,0.0,4.895483475517775,12.36446058668352,45.37282736796228,0.0,0.0,3.9318256327243257,0.0,5.313205979041787,2.3978952727983707,6.894670039433482,4.727387818712341,8.576781982827894,6.86171134048073,10.319595820742773,31.666666666666668,7.595721659493305,3.9257621304694714,0.0,0.0,0.8861765663055343,0.0,0.35154914241825175,0.0,34.168,0.0,37.315797430083144,0.0,0.0,-3.959123021122029,0.0,0.0,-1.6187284265558077,36.777925987762316,5.316788604006331,5.817862777835028,0.0,35.76837060344178,14.817828337479405,0.0,4.877147193701299,41.05483463403313,4.336329015745631,5.759164871656176,0.0,30.955790525351762,25.66822155688623,28.718615478079617,200.64822397830318,,133.21055214006742,149.257908873613,148.75819832155082,133.17478225545182,197.5477901552266,150.10475018097355,150.2589325437898,186.3546535320048,28.718615478079617,200.64822397830324,,130.8044797195191,147.72076955215977,147.65063330188224,130.76053801283211,200.72885662584582,148.58279311235447,148.69601395450985,188.3227236952447,5.086552404080407,147.09954508154658,,102.54842670588744,111.30339364242222,110.25964594917014,102.53917539822365,150.3100736872052,112.21931520082035,112.68878772574575,141.0298638863593,1.248635455568679,8.723835825143617,,5.79176313652467,6.4894742988527385,6.467747753110905,5.790207924150079,8.58903435457507,6.526293486129285,6.532997067121295,8.102376240521947,2.5707085785647514,100.32411198915159,,66.29274304770414,74.70579303881384,74.43675765738158,66.27378253178287,97.93346182740882,75.12779814010182,75.206303861512,93.08360913918145,33.86274509803922,0.0,1.1878968253968254,5.8395285860535076,0.0,0.0,10.329570105820107,34.670429715950476,0.0,2.4454631991685565,0.0,0.0,0.0,0.7281635802469135,0.0,0.0,0.0,24.307191532668433,386.18982094368147,70.38512115195769,140.1004779622287,151.71011843666554,159.71011843666557,159.71011843666557,159.71011843666557,740.0,124.52721539898647,154.23948001996914,72.02307388676171,136.22,99.6,0.8333333333333334,8.296406236147039,5.643856189774724,3.883694816566196,4.725283995063667,,4.728668996680454,4.731704874062786,4.73229941229371,4.728739296917585,4.72619358993492,4.733033391402879,4.733267889158042,4.731908848244061,0.16885629637244332,0.20544713022015945,,0.20559430420349797,0.20572629887229504,0.20575214836059608,0.20559736073554716,0.20548667782325739,0.20578406049577733,0.20579425605034965,0.2057351673149592,2.1896960957575264,2.38583678684997,,2.3865528897890043,2.3871946989876727,2.387320340991568,2.386567756491371,2.3860292636063036,2.3874754288528957,2.38752497254441,2.3872378060263353,229.70999999999984,351.622998496457,129.966547883638,,128.09626607428524,128.4997405106736,128.72636585522844,128.0817808183316,130.03209088656405,128.4125640540582,128.36288565069185,129.33885116329301,15.287956456367695,5.650719473201652,,5.569402872795011,5.586945239594504,5.596798515444715,5.5687730790578955,5.653569168981045,5.583154958872096,5.58099502829095,5.6234283114475225,6.6954686975752296,5.700186216305177,,5.6856911828906025,5.68883600789615,5.690598079455635,5.685578095480149,5.700690395901074,5.688157360292183,5.687770419842515,5.69534483661391,25.8536832512058,16.232767830897792,12.775033304988664,-0.38734284454522583,-0.9965643808963909,6.121190597546794,1.474531061946511,0.0,-2.7712261957252036,276.459983958125,159.54753375654548,-366.91468461677675,-24.00001695305946,-11.118626806568995,-28.22420650898283,132.51629558351453,304.75040043427856,12.700406283873411,9.234860619220562,15.23752002171393,1115.0,41.0,2.3633469039385844,1.6489630667450408,0.16666666666666666,0.04564354645876384,0.9380035982439142,0.4863214919399475,0.1642664266089148,0.035997930146750165,0.0,0.0,0.0,0.0,0.09622504486493763,0.08838834764831845,0.3340302104239069,0.3117481746084438,0.6074275320688423,0.5743698558233197,16.775656403009393,14.036520165650455,10.8194043363257,8.898169001619818,10.610455273697605,8.203923992126402,8.923643823557864,6.363668629498082,7.461197680951465,5.0376078109359845,5.903651124999086,3.8953931787811187,3.521227897081078,2.342126951582759,2.284050943158691,1.3463113875074493,5.531850947939893,3.530735972132867,9.050663404767707,5.489194985376777,15.564695356662828,8.511483283602091,75.37087661216908,37.49039234564531,31.86907940090313,31.004451236287935,31.004451236287935,31.004451236287935,126.0,153.0,42.865929999999985,23.94607,0.5151515151515151,119.1,8.95138888888889,4.888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,33.0,0.0,0.0,35.0,11.0,4.0,9.0,26.0,15.0,25.0,20.0,0.0,0.0,0.0,13.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,6.0,2.0,3.0,23.0,10.0,0.0,3.0,4.0,0.0,3.0,2.0,2.0,0.0,1.0,2.0,2.0,3.56953269648137,6.743028030589134,4.244917420701475,4.79268655965915,5.35511113057799,5.809830254094163,6.006660993989264,6.250578342211423,6.5500083320820695,6.6234009966230305 +38409,O=C(O)COc1ccc(C(=O)c2cccs2)c(Cl)c1Cl,0,55.92857142857143,6.819335714285715,3.857142857142857,10.559082892416226,154.0400589788533,230.31009603571437,2.153579258528286,7.043374999999999,7.1423658741045575,8.502727964285716,293.73828355853504,38.55172413793103,6.596551724137931,4.517241379310345,9.168582375478927,140.3670163870845,152.22728362068972,2.2572509708965525,6.8276551724137935,3.7471619128707263,8.112922344827586,324.49957222230455,37.888888888888886,6.649066666666666,4.088888888888889,8.046913580246912,144.48134292373956,148.66806626666664,2.1103325399299777,6.871413333333335,4.245999085505261,8.231604933333337,296.20177441175815,40.679245283018865,6.799715094339623,3.452830188679245,6.715816445376194,152.01410994458692,160.77060694339622,1.8678733973688113,7.03528113207547,4.248236434275724,8.512265830188682,260.52328514405417,38.479166666666664,6.6907708333333344,3.3541666666666665,6.3217592592592595,151.46623615002764,151.037205,1.899617913719729,6.9611729166666665,3.984396433470508,8.416579291666665,266.71215370680255,39.234042553191486,6.528982978723406,3.127659574468085,5.531126871552403,150.6075099706221,152.24846685106385,1.9779051161212335,6.826982978723405,3.6656111062467778,8.32050904255319,260.00598634913786,40.31818181818182,6.632527272727274,2.7954545454545454,5.382996632996632,153.7893458294579,157.50100093181817,1.8266782942397042,6.923720454545457,4.031653988444113,8.447628750000002,241.5803194155079,32.1764705882353,6.548941176470589,2.5588235294117645,4.094771241830066,159.0178189339134,122.26411729411765,1.4861202929822355,6.818941176470588,3.489379084967321,8.403571235294118,202.93858596709993,23.454545454545453,6.64309090909091,2.6818181818181817,5.787878787878788,160.99542871745305,84.25392068181819,1.3629177473885,6.79881818181818,3.952441077441078,8.388592272727273,188.72170973358095,19.928571428571427,0.17030510204081623,0.035801011471922425,0.6683673469387758,4.269337364575459,1.3949923723489523,90.4262534732143,0.3587119723365307,0.16961466836734693,2.8506361706776913,0.14298836096938775,46.45748390807462,-0.3448275862068966,-0.015388106966924697,-0.017226509217472326,0.13212526389866278,0.4203178078383328,0.08740266968815177,-1.334365730603445,0.028025719267696005,-0.015044101864883879,-0.24682257556460613,-0.014251042003870541,2.5287136014068383,-0.9111111111111111,0.0052750566893424045,-0.004368596603278719,-0.06360544217687078,-0.19698776629993592,-0.03479938686619529,-3.6492385652777752,0.015304291641205912,0.001190331632653055,0.328997118140555,-0.0029129157312925346,-0.0489876458756252,1.6226415094339623,0.006117674239507124,0.00684343919605751,-0.029553330766268787,-0.5698930865148296,0.013598800678605156,7.9659400672169856,0.01824429645720794,0.009619765594917206,-0.18407462366152733,0.013419375553523322,1.3667929350601642,-0.6458333333333334,-0.01773575680272109,-0.0024304827789731194,-0.07908163265306124,-0.624826782564878,0.045315720999233124,-2.7586867760416633,0.009985036599722366,-0.01246496598639457,-0.2726231010236742,-0.011837800701530598,1.6937428985896494,-2.5106382978723403,-0.01988306556665218,-0.003994088486746767,-0.06654363873208859,-0.155561988388736,-0.09363777860558203,-11.960128485372337,-0.025204915240050352,-0.025699470798957878,-0.24327670591191267,-0.021008205194311767,-6.214118711485606,-0.045454545454545456,0.018324118738404453,0.003345135596431428,-0.06284786641929498,0.11470143613000779,-0.19488938369960948,-0.7949130681818116,-0.03586587997486502,0.016421695269016698,-0.0056451943852737765,0.014376360621521344,-6.685925608770171,-2.235294117647059,-0.00431392557022809,0.00431932249316175,0.02280912364945983,-0.22913609888399786,-0.16618808780342123,-10.96620142279412,-0.10685879453588355,4.005852340937531e-05,-0.38851513685035066,0.002745711509603844,-7.792495725630157,-5.454545454545454,-0.049641465677179954,-0.012129999589310147,-0.05473098330241186,0.3359215740168123,0.1135130053363818,-25.150023426136382,-0.02354679489614753,-0.05962002551020409,-0.40513830053990246,-0.05655396161873839,-2.108710689766418,,,0.5047619047619046,1.3375,0.725,0.075,0.6125,0.1125,0.6991353730364493,0.020565290348756093,0.02916529034875609,0.9410787511224882,0.2689773069107875,0.20616808085911123,1.6402141241589376,0.4751453877698987,1.9854582906933858,1.34928850560592,0.0,0.3588190561234101,0.17733499557828233,0.6361697850874657,11.78400125342858,1566.0,190.94140000000002,108.0,295.65432098765433,4313.121651407892,6448.682689000002,60.30021923879201,197.2145,199.98624447492762,238.07638300000008,8224.671939638982,1118.0,191.29999999999998,131.0,265.88888888888886,4070.6434752254504,4414.591225000002,65.46027815600002,198.002,108.66769547325106,235.27474800000002,9410.487594446831,1705.0,299.20799999999997,184.0,362.11111111111103,6501.66043156828,6690.0629819999995,94.96496429684899,309.21360000000004,191.06995884773673,370.42222200000015,13329.079848529118,2156.0,360.3849,183.0,355.9382716049383,8056.747827063107,8520.842168,98.997290060547,372.8698999999999,225.15653101661337,451.1500890000001,13807.734112634871,1847.0,321.15700000000004,161.0,303.44444444444446,7270.379335201326,7249.78584,91.181659858547,334.1363,191.2510288065844,403.9958059999999,12802.183377926523,1844.0,306.8622000000001,147.0,259.96296296296293,7078.5529686192385,7155.677942000001,92.96154045769798,320.8682,172.28372199359856,391.063925,12220.28135840948,1774.0,291.8312000000001,123.0,236.85185185185182,6766.731216496147,6930.044040999999,80.37384494654698,304.6437000000001,177.39277549154096,371.6956650000001,10629.534054282347,1094.0,222.66400000000004,87.0,139.22222222222223,5406.6058437530555,4156.979988,50.528089961396006,231.844,118.63888888888891,285.721422,6899.911922881398,516.0,146.14800000000002,59.0,127.33333333333333,3541.8994317839674,1853.5862550000002,29.984190442546996,149.57399999999996,86.95370370370371,184.54903,4151.877614138781,558.0,4.7685428571428545,1.0024283212138279,18.714285714285722,119.54144620811286,39.05978642577067,2531.9350972500006,10.043935225422858,4.749210714285714,79.81781277897535,4.0036741071428565,1300.8095494260895,-10.0,-0.4462551020408162,-0.4995687673066974,3.8316326530612206,12.189216427311651,2.5346774209564016,-38.69660618749991,0.8127458587631842,-0.4362789540816325,-7.157854691373577,-0.4132802181122457,73.3326944407983,-41.0,0.2373775510204082,-0.19658684714754238,-2.8622448979591852,-8.864449483497117,-1.565972408978788,-164.2157354374999,0.6886931238542661,0.053564923469387474,14.804870316324974,-0.13108120790816405,-2.204444064403134,86.0,0.3242367346938776,0.36270227739104804,-1.5663265306122458,-30.20433358528597,0.7207364359660733,422.19482356250023,0.9669477122320208,0.509847576530612,-9.755955054060948,0.7112269043367361,72.44002555818871,-31.0,-0.8513163265306123,-0.11666317339070972,-3.7959183673469394,-29.991685563114142,2.17515460796319,-132.41696524999983,0.4792817567866736,-0.5983183673469393,-13.085908849136363,-0.5682144336734687,81.29965913230318,-118.0,-0.9345040816326524,-0.18772215887709806,-3.1275510204081636,-7.311413454270592,-4.400975594462356,-562.1260388124998,-1.1846310162823666,-1.2078751275510202,-11.434005177859895,-0.987385644132653,-292.06357943982346,-2.0,0.806261224489796,0.14718596624298283,-2.7653061224489788,5.046863189720343,-8.575132882782817,-34.976174999999714,-1.578098718894061,0.7225545918367348,-0.24838855295204615,0.6325598673469391,-294.18072678588754,-76.0,-0.14667346938775505,0.1468569647674995,0.7755102040816342,-7.790627362055927,-5.650394985316322,-372.85084837500006,-3.633199014220041,0.0013619897959187607,-13.209514652911922,0.0933541913265307,-264.94485467142533,-120.0,-1.092112244897959,-0.2668599909648232,-1.204081632653061,7.390274628369871,2.4972861174003995,-553.3005153750004,-0.5180294877152457,-1.31164056122449,-8.913042611877854,-1.2441871556122446,-46.3916351748612,0.7349153066909883,0.6129174151736589,0.4525194169237131,0.33560027611087256,0.29635753894327577,0.1872995204589418,0.19061096331896038,0.1113731100149171,0.12001437887032357,0.059948387876379156,0.07400715139510818,0.029812037417791693,0.04962715744300183,0.016876430281654742,0.031228487677599844,0.00954327291265233,17.002141327887458,5.6922115829502165,3.5555280060897037,2.1841788346049893,0.49559177002263477,-0.509708349438934,3.265657203994186,0.9726566400121942,6.023443695246113,0.6503173000606197,13.643263565439495,10.311403086169758,35.45153114885797,11.703961308037673,2.9363833021850194,0.7412578221016425,3.5016551064198715,2.2365406397874374,7.009370654436096,0.6100821569500858,3.7145866233294402,2.433433105377548,24.440718228950992,14.700615108281326,0.3626760367975229,0.7391396069805252,0.8469723433637001,0.9160532017984393,0.9160532017984393,0.9160532017984393,1.8836665438148186,652.6408093122961,0.0,2.0,1.0,0.0,9.0,0.0,1.0,0.0,0.0,2.9323470119940778,0.9860585883727424,0.42857142857142794,0.07142857142857295,0.07142857142857295,0.07142857142857295,-130.00061285497497,975.8729776098779,74.24900655864869,34.85260634320993,73.8093782950411,,11.0,346.0,12.576187252464766,9.589074368143644,27.141474898828495,4.877147193701299,0.0,23.469520014857956,17.512796907389134,0.0,0.0,33.04527012910579,10.095238095238093,26.75,14.5,1.5,12.25,0.0047619047619046565,0.0,2.25,0.3158104621158805,0.11940565699964178,-0.1964048051162387,0.030249433106575907,0.174285132382892,0.0,0.7537414965986394,0.935238095238095,0.43793103448275894,0.6343358395989976,0.9049886621315191,13.982707460728987,0.41130580697512187,0.5833058069751218,18.821575022449764,5.3795461382157495,4.1233616171822245,32.80428248317875,9.502907755397974,0.539714867617108,0.24056603773584914,0.0,0.34669811320754723,0.07692307692307693,0.6304419114454545,-1.2346393643975544,-0.10548706608402357,-0.04409426301419838,-0.10288661369979621,0.3695580885545454,0.7237319652731169,0.04351503668668789,0.0258475701883256,0.045233247829569806,-4.099395679104953,0.5723025583982202,0.7365620256397069,1.3928880521111588,0.8208739141879439,0.5892728502965987,0.876153219787377,0.561578783981795,0.6663173730896073,0.6960982445851582,0.6821387287720433,0.7636894790334016,0.6685720020356503,0.771505376344086,0.7526827602322365,1.0576513671550258,1.138167938931297,0.8757848922986132,0.9915225799545148,0.7560907160611067,0.8349496734500728,0.7406746534574543,0.5437611916235782,0.8020692778842646,0.8126019635109821,0.8851186853317102,0.9906443813550331,0.788192206302936,1.088866484228719,1.1351553583458138,0.9538261766425247,0.8767846664618065,0.914203408194639,0.9518237013904721,1.0275537367132146,0.9341900016492177,0.8806073533766803,1.0095766129032258,1.0075778427372248,0.9156017264085231,1.1421755725190834,1.092717246975509,0.8810190071137931,1.015623490931586,0.8436390092252235,1.0083688718200545,1.009221082861631,1.0492885987536,0.8676195230726135,1.2925531914893618,0.8992510185482293,0.7874820233479639,1.0743868767256775,0.9224374227004768,1.0075142285085301,1.2982597472186397,1.0949733652169116,1.009641227698482,0.9820208935746852,1.033508014354501,1.1008609407421308,1.2140762463343107,0.7963882211833072,0.7331441511276551,1.0000867453157525,0.8949286126237291,1.0693127277722299,1.225676747355007,1.1186438721247345,0.8813541060718976,0.8930847018386336,0.8954712498756976,1.144684605164257,1.3384724857685009,1.0155821608207574,0.8157781330870547,0.9123259991019304,1.0756380938329893,1.0293020224977827,1.3648416186939931,1.2650175944144504,1.0800206385466176,1.0533154167098222,1.0458798570719343,1.264075531652775,1.2756598240469208,1.5074459158478541,1.583551221796527,1.0820610687022896,1.1272241074063145,0.8976003090505396,1.2892892285771678,1.053059729766518,1.5442302818739055,1.245242546937475,1.5339123104559091,1.1402939880441274,4.0,0.04611570247933884,2.88888888888889,1.5277777777777777,1.284444444444445,0.7152777777777777,0.4612698412698413,0.2048611111111111,0.0806327160493827,0.06469135802469136,4786.122758213805,5009.94934631176,2013.3698501209017,1928.3068993107654,12.435304705674122,0.424337491938515,7.1585386953771515,0.7371289357847023,1.0,0.07692307692307693,1.8750079100635257,3.8212963336848613,4.378783493486176,4.735926350629031,4.735926350629031,4.735926350629031,0.19047619047619047,0.00768595041322314,0.09961685823754796,0.052681992337164744,0.04757201646090536,0.02980324074074074,0.021965230536659112,0.015758547008547008,0.010079089506172837,0.00808641975308642,0.4837255354702378,16.3718820861678,7.319857312722949,4.023374726077429,128.06104257471608,1.0,3.907200397058383,88.69358340179862,,63.476595534347666,67.2602118533001,69.62340984166627,63.44351115550403,92.74857570984265,67.3745186832796,67.29192397525809,80.24183071511901,-0.017303176368804844,-0.09035611254463005,-0.48117381351033955,0.1976836009476175,0.09845036171793113,0.06265458608994337,-0.0147563973884941,0.0781287535098028,-0.08869575968690258,-0.08658508514817877,-0.09966574836759991,0.05443070499492399,-0.045718837116686575,0.030974155360760456,-0.12202439047580732,-0.09516539440203563,-0.04614012655322784,-0.0249459334373266,-0.0403559632862456,0.04266456885037552,0.0070178578545758,0.11541182334129348,-0.02037169816860939,-0.0010544618811590615,0.08142287144113074,0.03592184947014053,0.19115211874459465,-0.04421719717701282,-0.13348513782103033,0.00974829751628453,0.08809322250176631,0.05086057300616607,0.05671541080446519,-0.0645731733691454,0.09384942566336756,0.029420296152168634,-0.03240740740740741,-0.10414107733819063,-0.06788866233232735,-0.11832061068702288,-0.1463521687813515,0.03248456543380837,-0.03050758679125007,0.027835805241411802,-0.07348990571616294,-0.09563588080020138,-0.082788561399518,0.036457912829309845,-0.1259818500724472,-0.11674967648289772,-0.11156356545622186,-0.09956147474419356,-0.036437033456175466,-0.06712422265643678,-0.13226389489768164,-0.07026505158407148,-0.15151679419198963,-0.08534119801548637,-0.14692248412309164,-0.1337592609143766,-0.002280873248615184,0.1075958295953623,0.0934369018890684,-0.09403192227619703,0.02686633225140165,-0.13970641529132216,-0.008790733195833194,-0.09998517680145044,0.09681765985858622,-0.0019803279153409905,0.10054217367103864,-0.1439149313811227,-0.1121652962260173,-0.025330571536219693,0.12064805757092241,0.03412662775033683,-0.05367017860552302,-0.11913189713258868,-0.12127231861975221,-0.2978958127319834,0.00023617369768172191,-0.136290678146411,0.01920234270110748,-0.16773391647832586,-0.27370478983382207,-0.2914854874123654,-0.33881723142999226,-0.08188757807078412,0.07868236808927283,0.0813717749189147,-0.2781274514882585,-0.06564262336372977,-0.35150276850514267,-0.14212206549094183,-0.39551444072322767,-0.04539011828404056,4.101606652976779,12.411676364454042,7.963811952022753,28.25688624134445,48.40528771675417,53.96766334526246,56.78802048811961,56.78802048811961,56.78802048811961,39.70916581386771,26.985770112118402,0.0,7.176381122468202,3.546699911565647,12.723395701749313,4001.0069192293836,3544.1376940810383,1030.2537361954724,34.0,29.0,37.0,44.0,48.0,51.0,50.0,48.0,45.0,329.9520350960002,21.0,4.61512051684126,5.4510384535657,6.315358001522335,7.173958319756794,8.045267716607803,8.91341571815747,9.788693794534046,10.662071288380247,11.53973291288982,1.0000000000000002,1.0314285714285714,1.0972142140338814,0.9847015236033635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.8022314798973484,1.0281512605042018,1.0529211320362086,0.7641169346631385,5.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9.843390348640755,10.772145147025231,6.606881964512918,5.783244946364939,0.0,4.794537184071822,4.794537184071822,0.0,11.336785877934737,29.268246848926644,23.579163975850747,5.563451491696996,9.899780507442625,314.1545303544649,-615.2312253323387,-52.56509616899735,-21.972543761869243,-51.2692687776949,184.15391749948992,360.64175227753924,21.683910389651345,12.880062581340685,22.540109517346202,0.45454545454545453,0.7077360006391494,0.24525064934359317,33.073908521872745,0.1742384685317126,29.963368472833178,0.2922639993608505,6.0,0.23809523809523808,0.3900290160521372,0.7948854194541771,0.9108508867100675,0.9851418144516776,0.9851418144516776,0.9851418144516776,3.7493000000000016,,2.9191176470588234,1.351482526625897,0.8689580734342914,2.9447905533834255,-3.4371492180652443,1.4325875772740657,1.4849036503591146,-1.271821777585416,77.34430000000003,19.4324647167844,0.0,0.0,0.0,0.0,6.606881964512918,50.131396357193296,0.0,5.749511833283905,3.7612001156935624,0.0,5.0689042022202315,2.3978952727983707,6.5638555265321274,4.442651256490317,8.152198015861787,6.293419278846481,9.794955345712667,28.000000000000007,8.12733546360846,0.0,0.0,0.0,1.298564549761339,0.0,0.9944788517258774,0.0,28.879999999999995,0.0,22.635895017697415,0.0,0.0,0.0,0.0,0.0,-1.3679516927677091,30.72199799294868,4.736862953800049,0.0,5.749511833283905,23.465959593670412,4.794537184071822,0.0,15.235135869470117,29.645531044312357,10.045266627482652,0.0,0.0,27.571642660894177,22.462481437125756,25.026853878866515,177.38716680359727,,126.89252250571786,134.38527545393765,139.15992387598914,126.82208696126199,187.1739868330822,134.6057786088318,134.43535758548026,160.86520796351368,25.026853878866515,177.38716680359718,,124.55722838807078,133.1689411799744,138.37786160989828,124.46625451855527,188.98934584568093,133.31644978928512,133.0989443001571,161.7554832078235,4.815076022830048,132.5349463936511,,96.67500164367809,100.93673646179427,104.36253381654944,96.64788411048991,143.15089803703887,101.23690968908619,101.1747084417967,121.11360640451204,1.2513426939433256,8.869358340179863,,6.3446261252858935,6.719263772696882,6.957996193799457,6.3411043480631,9.35869934165411,6.73028893044159,6.721767879274013,8.043260398175685,2.4144728557435404,88.69358340179862,,63.476595534347666,67.2602118533001,69.62340984166627,63.44351115550403,92.74857570984265,67.3745186832796,67.29192397525809,80.24183071511901,28.788235294117648,0.0,0.0,12.03849600025195,0.0,0.0,8.549005983527989,29.48179169701384,-0.5334656609557404,0.0,4.979863709372638,0.0,0.0,0.0,0.0,0.0,0.0,21.395274170567877,352.6708279688602,52.50022148177872,106.99629734317611,122.60593781761293,132.60593781761287,132.60593781761287,132.60593781761287,427.0,113.50465672225548,145.63761988509467,66.47507901415554,91.84,63.6,0.8333333333333334,7.840780209847457,5.392317422778761,3.8679180877194534,4.393397261606777,,4.389997949711221,4.3931607396744345,4.389852980372204,4.389744181652487,4.3580948288436305,4.392334770158071,4.392328305648147,4.376265726253966,0.19339590438597268,0.21966986308033887,,0.21949989748556104,0.21965803698372172,0.2194926490186102,0.21948720908262437,0.21790474144218153,0.21961673850790353,0.21961641528240733,0.2188132863126983,2.045863581018655,2.173249972060658,,2.172475940610748,2.173196134839674,2.172442917421588,2.172418132976991,2.1651821765619332,2.1730081045759575,2.173006632804105,2.169342967385835,206.51999999999984,151.46146939163862,102.59011964488644,,101.74487262678039,102.40656218393706,102.64730558826042,101.73627026082272,104.45343011244567,102.36970534721489,102.35069798240617,103.63162717820182,7.573073469581931,5.129505982244322,,5.087243631339019,5.120328109196853,5.132365279413021,5.086813513041136,5.222671505622284,5.118485267360745,5.117534899120309,5.181581358910091,5.713478445714729,5.323888808902053,,5.315615611738543,5.322097974939583,5.324446075149074,5.315531059766396,5.341888507778651,5.321738003175622,5.321552312208292,5.3339897454392435,4.979863709372638,23.179571872698673,10.406292802449007,0.2516589506172844,-1.241288490449744,6.342528488476811,0.0,-0.5334656609557404,0.0,252.52820466829937,156.54585640722155,-306.5749169666445,-26.193631483266937,-10.94910417738016,-25.547909747220377,91.76545279539607,179.71083180875107,10.805275729671408,6.41824399316968,11.231926988046942,851.0,29.0,1.4550146564747766,0.7069251575459126,0.0,0.0,0.4606960411046636,0.2054964356145158,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.11785113019775792,0.1388888888888889,0.07975889843221229,0.31391569189781177,0.11968644227649111,14.698306133819765,12.258348303473179,9.502907755397976,7.047605798328324,8.594368629354998,5.431686093309312,7.0526056428015345,4.120805070551933,5.280632670294237,2.637729066560683,3.552343266965192,1.4309777960540013,2.530985029593093,0.8606979443643918,1.5614243838799922,0.47716364563261654,3.4572296953854966,1.690630827295108,4.984286546102586,2.096700817732055,7.258025181165909,2.5835872123047583,69.04435625925863,42.126242584802846,33.371023684444374,29.04465488392117,29.04465488392117,29.04465488392117,100.0,116.0,37.51234399999999,14.977656,0.42857142857142855,61.07,7.777777777777777,4.472222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,11.0,11.0,28.0,0.0,0.0,29.0,11.0,2.0,7.0,22.0,13.0,21.0,16.0,0.0,0.0,0.0,13.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,4.0,1.0,1.0,20.0,7.0,0.0,0.0,4.0,0.0,2.0,5.0,1.0,0.0,2.0,1.0,2.0,3.3843902633457743,6.218973555931831,3.965563772356176,4.501197595605113,4.993404357167893,5.331207990742011,5.602118820879701,5.8018351026307275,5.993805554809955,6.213920361985694 +5735,CN1CCN(C(=O)OC2c3nccnc3C(=O)N2c2ccc(Cl)cn2)CC1,0,31.90909090909091,6.587234090909089,3.7045454545454546,9.67283950617284,165.70585909151438,128.89877140909093,1.566175713237113,6.676329545454544,4.988756737470729,8.085073840909088,235.0281662204701,29.48936170212766,6.663829787234044,4.404255319148936,9.023640661938535,150.7509464514531,114.18039929787243,1.7738768780851077,6.804702127659575,3.3479555205323526,8.034971276595739,269.6544921050115,25.98780487804878,6.766096341463416,4.0,7.873983739837399,163.64000096435723,99.18936489024388,1.5312553143895489,6.846568292682925,3.4247214694369155,8.185911219512192,229.08933874843316,23.106796116504853,6.569725242718446,3.466019417475728,6.672060409924487,162.27907509259484,86.41227556310676,1.4073348413445628,6.667247572815532,3.2899436653481944,8.05819153398058,205.2551271997069,19.9009009009009,6.56117027027027,3.027027027027027,6.307307307307307,165.38937634939563,73.37346218018016,1.2125583362326937,6.613456756756758,3.813109405701998,8.09462744144144,176.77310615541845,21.306122448979593,6.637885714285714,3.183673469387755,6.9274376417233565,167.2535832934727,80.1069778163265,1.2211778307502754,6.6803622448979585,3.9084152179390284,8.159922999999997,184.9191571807853,25.746987951807228,6.808600000000001,3.5542168674698793,7.258366800535476,161.48619434233424,97.96649879518071,1.4694126610836513,6.886591566265058,4.581436858545292,8.256626746987951,221.84723898418696,24.032967032967033,6.67844945054945,3.21978021978022,4.511599511599512,163.68126380303394,89.64075408791207,1.438920576674681,6.78686153846154,3.5264324153213034,8.207080791208794,208.7119704381787,19.752808988764045,6.442034831460674,2.898876404494382,3.3358302122347068,162.456635892477,71.27766979775281,1.372759565974135,6.540055056179776,3.1608637351458824,7.968086943820227,188.53862458391933,10.832644628099173,0.14832784090909087,0.02669590973399769,0.6420454545454546,4.530481583511886,1.6184866613748603,50.812629185950435,0.22734363802360066,0.1424964359504132,1.6681606523836692,0.09841247262396693,46.08885379819739,0.4565236504308068,-0.004801196808510645,-0.01608749373857978,0.20611702127659576,1.3908833662218572,-0.8957891995033034,2.1258166815544253,-0.04866459509372158,-0.000689569412695644,-0.026435175185160222,-0.008006469722612979,-4.390665424657942,0.5952932876436206,0.010621493902439025,0.002556304665860778,0.019817073170731708,0.5287557765384816,0.18516699882467588,2.882117672142714,0.04200996230042368,0.008379256954243092,0.12614841954948655,0.008220801211953217,6.2586440503626335,-0.3441185910294471,0.007516201456310675,-0.0021942579550200004,-0.029733009708737865,0.6497184753289488,0.014757240587218673,-1.7272914723581778,-0.03697821263774128,0.006453674376153411,0.02833497329660189,0.0018948978526438166,-4.278702529575018,0.6517943563398108,0.014477421171171158,0.002240838514771358,0.1143018018018018,0.957971516052324,-0.09443351395778565,3.096539934033206,0.0056061795888349905,0.01266376060978333,0.06045182965816772,0.005390908006663676,2.278118503485683,2.0481531455557427,0.0006401785714285567,-0.0016320973745011715,0.04974489795918367,0.8059725267517475,0.21223947796806586,9.867563752825097,0.054656870508166915,0.00523028019058862,-0.04782311927423757,-0.004597152818772154,13.55181308338712,0.47184606193368506,0.007259262048192763,0.003975606589521717,-0.1302710843373494,-0.40087223703507013,-0.07820354348038762,2.2741183940057765,0.012991638365952133,0.005636258463606492,0.39660063744455476,0.0023850095775664374,1.6580943731044406,-1.4555217509762965,-0.05031737637362637,-0.0017623739699372727,-0.17925824175824176,-2.379404265767901,0.061028546283087425,-6.842505852783575,-0.0019989652408469835,-0.04256154584052309,-0.4098341690057458,-0.021895455141449475,-3.7073569285414827,-2.449089980499582,-0.04462773876404492,-0.003192148033141569,-0.15379213483146068,-2.282660047300837,-0.12593163954025083,-11.667205314142445,-0.043961923862619365,-0.04138903043458071,-0.5216535135954702,-0.018919383757776943,-14.86257138300616,,,0.46719576719576716,1.3148148148148149,0.5740740740740741,0.018518518518518517,0.7407407407407407,-0.16666666666666666,0.7786182623358359,0.013796283952403822,0.026537024693144562,1.049097887521997,0.267126428260826,0.21590001231910708,1.8277161498578327,0.48302644057993305,2.0579254171792503,1.311539929637948,0.4715116298301931,0.2095718770120056,0.0653019806991037,0.7463854875413022,8.820569683727284,1404.0,289.8382999999999,163.0,425.60493827160496,7291.057800026633,5671.545942000001,68.91173138243298,293.7584999999999,219.50529644871207,355.7432489999999,10341.239313700684,1386.0,313.20000000000005,207.0,424.1111111111111,7085.294483218296,5366.478767000004,83.37221327000006,319.821,157.35390946502056,377.64364999999975,12673.761128935541,2131.0,554.8199000000001,328.0,645.6666666666667,13418.480079077293,8133.527920999998,125.562935779943,561.4185999999999,280.8271604938271,671.2447199999998,18785.32577737152,2380.0,676.6817,357.0,687.2222222222222,16714.744734537268,8900.464382999997,144.95548865848997,686.7264999999998,338.86419753086403,829.9937279999997,21141.27810156981,2209.0,728.2899,336.0,700.1111111111111,18358.220774782916,8144.454301999997,134.593975321829,734.0937000000001,423.2551440329218,898.5036459999999,19621.814783251448,2088.0,650.5128,312.0,678.8888888888889,16390.851162760326,7850.483825999998,119.67542741352699,654.6754999999999,383.02469135802477,799.6724539999997,18122.07740371696,2137.0,565.1138000000001,295.0,602.4444444444445,13403.354130413743,8131.219399999999,121.96125086994306,571.5870999999999,380.25925925925924,685.3000199999999,18413.32083568752,2187.0,607.7389,293.0,410.55555555555554,14894.995006076088,8157.308621999999,130.94177247739597,617.6044000000002,320.9053497942386,746.8443520000002,18992.78930987426,1758.0,573.3411,258.0,296.8888888888889,14458.640594430453,6343.712611999999,122.17560137169801,582.0649000000001,281.3168724279835,709.1597380000002,16779.93758796882,476.6363636363636,6.526424999999999,1.1746200282958983,28.25,199.34118967452298,71.21341310049385,2235.755684181819,10.00312007303843,6.269843181818181,73.39906870488144,4.330148795454545,2027.909567120685,21.45661157024792,-0.22565625000000034,-0.7561122057132496,9.6875,65.37151821242729,-42.10209237665526,99.91338403305798,-2.287235969404914,-0.03240976239669527,-1.2424532337025305,-0.37630407696281,-206.36127495892327,48.81404958677688,0.8709625000000001,0.2096169826005838,1.625,43.357973676155495,15.183693903623423,236.33364911570254,3.4448169086347415,0.6870990702479336,10.344170403057896,0.6741056993801637,513.208812129736,-35.44421487603305,0.7741687499999995,-0.22600856936706004,-3.0625,66.92100295888173,1.5199957804835234,-177.91102165289232,-3.8087559016873516,0.6647284607438013,2.9185022495499946,0.19517447882231312,-440.70636054622685,72.349173553719,1.6069937499999984,0.24873307513962073,12.6875,106.33483828180796,-10.482120049314208,343.7159326776858,0.6222859343606839,1.4056774276859496,6.710153092056617,0.5983907887396681,252.87115388691083,200.7190082644628,0.06273749999999856,-0.1599455427011148,4.875,78.98530762167125,20.799468840870453,967.0212477768595,5.356373309800357,0.5125674586776847,-4.686665688875282,-0.45052097623967113,1328.0776821719378,39.16322314049586,0.6025187499999993,0.32997534693030245,-10.8125,-33.27239567391082,-6.4908941088721726,188.75182670247943,1.078305984374027,0.4678094524793388,32.917852907898045,0.1979557949380143,137.62183296766858,-132.45247933884298,-4.578881249999999,-0.1603760312642918,-16.3125,-216.52578818487902,5.553597711760956,-622.6680326033054,-0.18190583691707551,-3.873100671487601,-37.29490937952287,-1.9924864178719022,-337.36948049727494,-217.9690082644628,-3.9718687499999974,-0.28410117494959963,-13.6875,-203.15674420977447,-11.207915919082323,-1038.3812729586775,-3.912611223773123,-3.683623708677683,-46.42716270999685,-1.683825154442148,-1322.7688530875482,0.7024404017526436,0.5679425408630729,0.4347237965219398,0.2940983205235633,0.2782646016439201,0.15727528751401962,0.17484244804654336,0.08088877349662887,0.10739534057678479,0.03939006902149282,0.06919889171690466,0.020964795470333225,0.043949963126254384,0.010391644410118717,0.027194393828245917,0.00488770397871325,17.00110335627257,5.733313367274865,3.5562460511027076,2.2242982780584195,0.5008083747581867,-0.4495463125802056,3.249503176351669,0.9772634039342026,6.0288617803961015,0.7740000300638938,14.554576648543032,10.997306387942633,35.450517526955764,11.747918451295375,2.2075763625306926,0.7403943274256887,3.5025451789569275,2.274390630042988,7.009359377726361,1.282422224747746,3.715222440360195,2.4698484301572696,22.455862705396292,14.700685677209115,0.31832945615326613,0.6558338958838775,0.7919657222071456,0.8391392741467122,0.8470015328033066,0.8470015328033066,1.472084789096586,869.2273935019915,0.0,5.0,5.0,0.0,5.0,0.0,0.0,0.0,0.0,3.61905452520459,1.6678199542103216,0.8807928977764439,0.6080656250491705,0.5626110795946246,0.5626110795946246,131.82289441115284,1624.2877842382672,66.01184968704392,36.91563145996062,80.86101383427845,,13.0,580.0,18.22832097102479,9.589074368143644,5.693927994848461,29.623936898249966,13.08951281182515,23.490440445689707,17.032643867773697,7.04767198267719,19.8518452936921,16.337802844032566,12.614285714285714,35.5,15.5,0.5,20.0,0.0,0.03280423280423282,-4.5,0.22385714285714287,0.04414285714285704,-0.17971428571428583,0.0,0.1945882352941175,0.0,0.667857142857143,0.8994708994708993,0.4440000000000002,0.623714285714286,0.8994708994708993,21.02269308306757,0.3724996667149032,0.7164996667149032,28.325642963093916,7.212413563042301,5.829300332615891,49.348336046161485,13.041713895658193,0.5194117647058825,0.14911287278218197,0.0,0.37259343148357865,0.35294117647058826,0.3923513599632613,-1.0408444733625803,-0.06762320484967332,-0.02365555621278592,-0.08006495948942927,0.6076486400367384,1.61199321135971,0.040189415664577385,0.03663620934908432,0.051999781011603546,-2.9919801110049606,0.553769767998669,0.7368297084218746,1.6941426982878727,0.7286763321408398,0.4552473097438358,1.7912538021495696,0.5587528870602126,1.1549905709151738,0.6730181222623043,0.5341983541978608,0.7651701261347059,0.9791358018923414,0.6920190916576342,0.8964673353740051,1.1334734278647365,1.0951867040794303,0.8495267801343371,1.0370728602304782,0.692220389693329,0.6865235415409157,0.8636137147221924,0.5504962592821384,0.8181738643461174,0.7296887054846036,0.9113519829490639,0.8975815310356465,1.3092593243222352,1.1083426411203712,0.8167422910692873,1.0471294416625083,0.9142400980326743,1.1069495484851766,0.8868751258867288,0.779738751231865,0.9140909901652706,1.0251006921316972,0.7863380259908965,1.1374415590506326,1.142024795086351,0.8022004305190146,0.885178642521855,0.9672870620717658,0.7864422176904513,0.9074241702730124,1.0934019895248808,1.3296460089443058,1.1723579385180052,0.9089557056178695,0.6190810293218948,1.3153970674791249,1.3777669011810534,1.0018060321473723,0.9738089990884792,0.783548647034848,0.614898147695489,0.6614249240199243,1.2120164477576014,1.5327956858817855,1.3433393905501902,0.643473161358805,0.7293327419921916,1.097740044862104,1.1766823484980182,1.3020577886768312,1.1270499846050834,1.1150983496924993,0.7280187724080687,0.8521673011883175,1.043289001661769,1.153905251125939,1.11967116234647,0.84239877630211,1.1257113094801443,1.4070859098726571,1.1531978107352978,1.2544977146747058,1.5276498484202876,1.008931097164999,1.12268748327225,0.9626645738903905,1.3481990630657896,1.4466033594593426,1.3185851060787508,0.9827170512561346,1.0770111888081917,1.205628561122279,0.9131756673501453,1.0860097444565975,1.4130702486158992,1.1225020722669659,1.0825142076397738,1.133868756330137,1.1826702082559462,1.4299247302599718,1.06856605781007,1.2650631449202219,5.0,0.1072339557188042,3.555555555555557,2.6111111111111107,1.6366666666666672,1.2816666666666665,0.7552380952380953,0.46797052154195007,0.2526927437641723,0.2500077160493827,5905.661860812933,6405.561769834499,2737.5762664131644,2567.2540697146396,12.482200764704707,0.4350422716203867,7.051915789205843,0.7700439338499815,1.0,0.35294117647058826,1.8403770934327075,3.7916116644269757,4.578638720860853,4.851365993588127,4.896820539042673,4.896820539042673,0.16666666666666669,0.008936162976567017,0.08268733850129201,0.058024691358024696,0.039918699186991875,0.031260162601626014,0.017981859410430834,0.012315013724788158,0.008713542888419731,0.011905129335684893,0.4384092666504919,20.28,8.788534342888047,4.302212008043665,160.07467254360114,1.0,4.240405299011803,137.1912205471107,,105.390559034187,102.75217020820651,102.93929218826497,105.40261212580126,184.14030947400494,104.9559963521571,106.62228895402242,154.09368072553536,0.042143323823862384,-0.032368817472731,-0.6026201728608667,0.3210318207493881,0.307005632973722,-0.5534733284377857,0.04183638429286805,-0.21405743093048277,-0.004839204630602865,-0.015846900085664084,-0.08135624996646124,-0.09526523362639294,0.0549536431851063,0.07160822834971936,0.09575641704411673,0.030865529894236996,0.11671072198214452,0.11440749142002912,0.05672049878772289,0.18478617948421588,0.0588032739089626,0.07562126547537881,0.08353413945166092,0.13579517680709646,-0.031766812523031165,0.0506728973484978,-0.08219453754840864,-0.04630982043130853,0.14341046605144955,0.009117925367814153,-0.033993349685510266,-0.16265338656145967,0.04529007573494119,0.016985758089973806,0.019254651388388565,-0.09283595006093133,0.060169458033276446,0.09760420621267096,0.08393939510207486,0.17802758510723113,0.21145026160987831,-0.058346797790453805,0.060940360371854005,0.024659496247935515,0.08887071824161373,0.03623861381203714,0.054778707037087475,0.04942883833606606,0.1890723102134235,0.004315970403836173,-0.06113660822064693,0.07747877912226839,0.17789996756304724,0.13113452401750053,0.19419510288897732,0.24041521893167273,0.036704638650812894,-0.028668173659354767,-0.04671311162293248,0.2940366697493604,0.04355779019185649,0.048940657422782245,0.14892193707333057,-0.2029000959590575,-0.08848336090670667,-0.048318929866221966,0.04475498375971784,0.05714537903454973,0.039553680244801576,0.23774726785327532,0.024234830341876835,0.035976038379355216,-0.13436439585590834,-0.33923082858372855,-0.06601662904534247,-0.2791986774287659,-0.5251989709940421,0.03770716666348386,-0.13466151943728807,-0.008792703671960549,-0.29868498504295166,-0.24568027570973175,-0.22248658688936498,-0.08043933886432392,-0.22608421715845844,-0.30087230077997934,-0.11957442413270955,-0.2395346524808591,-0.503844901523999,-0.07780826530462434,-0.22961231294381432,-0.19337213147814433,-0.29045660095655673,-0.3127117959832398,-0.19224579215754203,-0.3224764809314364,7.088063927377967,14.775478356981877,7.557896439894795,21.016829608038435,41.47524935342503,45.85513586814272,46.63018132268818,46.67599950450636,46.67599950450636,55.56398626383976,35.411578100224595,12.730814005415214,5.658440679324151,1.7631534788757999,20.15240816361516,6229.314504320103,3626.5803872903034,3145.7167907337875,164.0,43.0,59.0,80.0,106.0,117.0,134.0,149.0,160.0,388.1050660840005,30.0,4.990432586778736,5.860786223465865,6.7580945044277305,7.653020413804189,8.560827228436299,9.467228129254554,10.381676341775822,11.295005745656221,12.213926721369312,0.7651515151515149,1.0150000000000001,1.1375948545695134,0.7357119610054422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6928617446924334,1.0024064171122993,1.029158114281931,0.6679220666876376,5.0,3.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,14.536682415501005,11.51179077268349,5.693927994848461,6.22790117073487,5.907179729351506,9.77851570501903,19.662403956816718,0.0,0.0,11.600939890232516,19.18040611960041,44.76955633848952,5.022633313741326,240.23012217738108,-637.2915211175967,-41.40454811876844,-14.483898207218108,-49.02242470135359,372.0530165885339,986.9962631206705,24.60730156827548,22.431733252742514,31.838589132924856,0.46153846153846156,0.7595956085866237,0.1577720952844293,21.38850376914949,0.15516243177838543,24.20766793840634,0.24040439141337613,7.0,0.06666666666666667,0.33710049360267935,0.6945066683284847,0.8386658247042401,0.888621074953413,0.896946949994942,0.896946949994942,1.5679999999999998,,2.254201680672269,2.0877571456524273,2.00256098297623,2.263982575467063,-6.122028747979924,1.9363060285391138,1.7968465319911957,-3.02964257389704,96.38050000000004,14.325937321943691,0.0,24.75175502454258,0.0,6.22790117073487,38.126607337177965,47.13375415520069,0.0,0.0,4.110873864173311,0.0,5.4510384535657,2.3978952727983707,6.99117688712121,4.948759890378168,8.619208116822968,7.221835825288449,10.294887542319458,33.66666666666666,7.506945966658268,12.486020733659922,0.0,0.0,0.0,0.0,1.1784017444185757,0.0,44.660000000000004,0.0,25.49787014305773,0.0,0.0,0.0,0.0,0.0,-0.928271727415245,50.05417360105859,4.899909730850478,10.61239996190685,0.0,69.97887243116,4.736862953800049,0.0,22.410294344503612,30.723264851762448,5.022633313741326,0.0,0.0,32.37132628423946,30.48591676646707,35.48457709974126,274.38244109422135,,210.6639521824425,205.54019840518959,206.04106799933834,210.6849196238869,369.7281216335289,209.9150851764407,213.22202973482385,308.8606153563811,35.48457709974126,274.38244109422135,,208.96392457070118,203.99312637902915,204.58722168352443,208.97771066193087,374.4026476959897,208.47120553716917,211.87530374647227,311.21700402496776,4.89172286723287,193.58154526090823,,150.91409704523713,146.30577515002932,147.85696991022976,150.95225760520475,276.68167776667894,149.77313478449432,152.24297792377155,226.40421150808703,1.3142435962867134,10.16231263311931,,7.802368599349722,7.612599940932948,7.631150666642161,7.803145171255071,13.693634134575143,7.774632784312619,7.8971122124008835,11.439282050236338,2.5361558217332254,137.1912205471107,,105.390559034187,102.75217020820651,102.93929218826497,105.40261212580126,184.14030947400494,104.9559963521571,106.62228895402242,154.09368072553536,44.105882352941165,0.0,1.9980993740116562,5.891285904884008,0.0,0.0,0.0,45.282957028404965,2.639015928455864,0.0,5.678293414588058,0.0,-1.025896636432351,5.022679598557956,0.0,0.0,0.0,29.388570934256055,465.0875834182235,80.97659211103912,166.83091323478692,201.46010371787756,213.4601037178776,215.4601037178776,215.4601037178776,1069.0,134.18099789496873,147.19555534769157,77.03567585246763,91.75999999999999,91.75999999999999,0.8571428571428571,8.443822447443027,5.906890595608519,4.096137615070449,5.108064906349212,,5.11007331107496,5.105098765423763,5.1092620187011075,5.1101830129614125,5.120529956358205,5.106381059428731,5.106547355008839,5.114403286071483,0.1517088005581648,0.1891875891240449,,0.1892619744842578,0.18907773205273198,0.18923192661855953,0.18926603751708934,0.1896492576428965,0.18912522442328633,0.1891313835188459,0.18942234392857346,2.403296257612418,2.6240724179027453,,2.624465523712997,2.623491571241678,2.6243067477555835,2.624486991254119,2.6265097138064215,2.623742718780272,2.6237752844800157,2.6253125059940428,262.28000000000014,360.71980141630803,169.0593124300871,,167.59284040456956,168.19986813509877,167.84885604379852,167.57737765865974,166.81611581875129,168.06843208962184,168.04774240662846,167.4159402367245,13.359992645048445,6.261456015929151,,6.20714223720628,6.229624745744399,6.216624297918464,6.206569542913324,6.178374659953751,6.224756744060068,6.2239904595047575,6.200590379137945,6.881353256602635,6.123501387485683,,6.114789241795988,6.118404736572003,6.116315681064866,6.114696973777606,6.110143875886162,6.117623003342421,6.117499893033608,6.1137331489738935,5.678293414588058,43.006570475275616,0.43531611201746667,0.43718054505752924,-0.12085422440581128,3.1975875535399347,2.7819493610201294,2.639015928455864,1.9980993740116562,317.8330128511112,147.08885323288618,-390.2028528587866,-25.351306681343907,-8.868246655881514,-30.01560406606051,227.80178878415467,604.3211699337533,15.066635840783139,13.734572043948937,19.49423128818559,1782.0,45.0,1.8581953542233245,0.9027445781128534,0.0,0.0,0.47259616806887306,0.09807795732501441,0.0,0.0,0.0,0.0,0.0,0.0,0.06415002990995841,0.032274861218395144,0.48726983043494976,0.1595404987156788,0.8497464719601064,0.22977867299324314,18.965890847321376,15.334448603302969,13.041713895658194,8.822949615706898,11.965377870688563,6.762837363102843,10.315704434746058,4.772437636301103,8.591627246142783,3.151205521719426,7.335082521991894,2.222268319855322,5.142145685771763,1.2158223959838899,3.644048772984953,0.6549523331475755,4.520787007014466,1.6581207444573787,7.3006553690441836,2.002708277077173,11.852408664977986,2.503770286322718,87.99161746307907,41.52854141468826,31.213694308164733,29.051561252316645,28.894314360560408,28.894314360560408,146.0,175.0,50.91148099999999,29.586519,0.5227272727272727,198.1,8.36111111111111,5.861111111111112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,44.0,0.0,1.0,47.0,12.0,2.0,8.0,39.0,14.0,30.0,33.0,0.0,0.0,0.0,17.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,7.0,0.0,4.0,27.0,10.0,0.0,6.0,3.0,0.0,4.0,2.0,0.0,0.0,1.0,2.0,2.0,3.6635616461296463,7.109598582125644,4.204692619390966,4.727387818712341,5.2457074162757396,5.764014862696279,5.943783143036834,6.308383009395119,6.618446884785772,6.90569064909992 +5344,Cc1noc(NS(=O)(=O)c2ccc(N)cc2)c1C,0,32.38709677419355,6.537041935483872,3.4516129032258065,8.917562724014337,164.38939504331734,128.5306423548387,1.6266928955818392,6.591274193548388,6.209481061108899,8.054503645161294,227.0537640054672,35.46875,6.592275000000001,3.96875,6.916666666666666,149.49166709884057,137.09495096875008,1.9263124999999992,6.745225000000001,3.1909239969135808,8.081540375000001,273.1612475753837,28.132075471698112,6.542603773584904,3.641509433962264,7.5408805031446535,154.6134356235844,107.88100167924524,1.658498251017792,6.646158490566037,4.5475774516655045,8.025536037735852,234.15933693969467,26.065573770491802,6.578293442622952,3.1639344262295084,4.666666666666667,156.59978853710666,96.86900842622951,1.5411758983229176,6.68057049180328,4.000126492612832,8.107455934426232,212.70938916363343,20.87142857142857,6.679440000000001,2.6142857142857143,4.3619047619047615,165.89429647608648,74.40955320000002,1.2490124357013435,6.723098571428572,4.239902998236332,8.276266285714286,166.29833403000805,20.016949152542374,6.337369491525422,2.457627118644068,5.265536723163842,167.7916187959097,73.87846511864403,1.1731206917115256,6.3871593220339005,3.989171374764596,7.973342305084748,161.76239393961248,21.441860465116278,6.6954627906976745,2.813953488372093,4.651162790697675,160.40883631106502,76.65517379069766,1.381279567261512,6.762158139534884,5.03251507321275,8.283021860465118,194.27251048010703,15.046511627906977,6.609186046511628,2.4186046511627906,2.744186046511628,163.70079041427445,50.057036534883736,1.236287953069768,6.650034883720932,3.944444444444445,8.161451255813954,171.40517779729748,11.513513513513514,5.765486486486486,2.135135135135135,2.054054054054054,161.33769212404303,38.27402743243242,1.1623387578051894,5.845070270270269,2.498498498498498,7.352228000000002,142.7805658070864,11.991675338189388,0.16548886576482832,0.02186105024888774,0.7450572320499477,4.566077003121747,1.6545030894033135,54.1800764765869,0.30461509736385645,0.15114006243496347,2.380843107531165,0.10519624765868886,48.52216402937321,2.940784339229969,-0.005793906087409003,-0.014427535187973784,0.24889438085327775,0.729397907272518,0.054602315535692954,12.644030311719586,-0.0115659441464138,0.0009967319198751102,-0.672451350705641,0.012662080970343404,3.200287531220335,2.1732668407515754,0.06172531561070422,0.0059990496763598624,-0.07737616083874897,1.1211482623141082,-0.07086960234782932,10.246897591581106,0.023044809622150934,0.05618483105255918,0.7354139672099961,0.034621565487994034,5.778577307974253,-1.2915166919704553,-0.023680721925589846,-0.0029481408376411207,-0.1707579195168967,-1.309363917746579,-0.4191955963083226,-6.085997073096659,-0.06982132019858613,-0.020222346940516233,-0.20471556416822684,-0.016329446495283232,-11.462885536578149,-2.4750854764382346,-0.03731107774639518,-0.0011497711629737976,0.009320648134383833,-0.6737062913961976,-0.10698233723339555,-11.541613202854165,-0.018500155641076686,-0.0370132421584659,-0.25515857977076994,-0.01922039696744457,-10.404946349195994,2.0635460942873776,0.015223818762235658,-0.0010795742763853567,-0.02225788814617538,1.6147139573302296,0.16735030811598706,10.243101049383583,0.03636894920606158,0.01986906823753502,0.058910957632961364,0.00044184747526411283,16.35493722621963,-4.899402269922319,-0.013002894271955164,0.00965043387241225,-0.14190644435302371,-0.9585084443153796,0.06603337714549,-21.428959144253795,-0.053490158837195476,-0.017572695593253185,0.11882476211114376,-0.01800630917406765,-3.7743722079841007,-5.518306996103866,-0.10749794303414564,-0.01057922099539858,-0.039880937976429574,-3.188899375381479,0.08589578971881345,-25.719628334051247,6.764384800179247e-05,-0.10549887713863948,-1.2898835749525464,-0.059517601747210956,-14.72677854419576,0.05191664088646453,0.031143741035520568,0.006590663725462231,-0.049329245999381245,0.09109629921284393,-0.3070975204538604,-0.32502343212308415,-0.05574961136776661,0.025853224400258824,0.21908888838350807,0.023155711364850708,-11.625449303730097,,,0.47407407407407415,1.4027777777777777,0.7777777777777778,0.05555555555555555,0.625,0.1527777777777778,0.6403445370683507,0.028640529427912398,0.03819608498346795,0.9657031919292933,0.27699545577614754,0.18959810159444537,1.606047728997644,0.46659355737059294,1.980975611068664,1.2322803996246898,0.31947014045029937,0.3050538022523696,0.0,0.7486952114439744,8.615089105677429,1004.0,202.64830000000003,107.0,276.44444444444446,5096.071246342837,3984.4499129999995,50.42747976303701,204.32950000000002,192.49391289437585,249.6896130000001,7038.666684169483,1135.0,210.95280000000002,127.0,221.33333333333331,4783.733347162898,4387.038431000003,61.641999999999975,215.84720000000004,102.10956790123458,258.60929200000004,8741.159922412278,1491.0,346.7579999999999,193.0,399.66666666666663,8194.512088049973,5717.693088999998,87.90040730394297,352.2464,241.02160493827174,425.3534100000002,12410.444857803817,1590.0,401.2759000000001,193.0,284.6666666666667,9552.587100763507,5909.009514,94.01172979769797,407.5148000000001,244.00771604938276,494.55481200000014,12975.27273898164,1461.0,467.5608000000001,183.0,305.3333333333333,11612.600753326054,5208.668724000001,87.43087049909404,470.61690000000004,296.7932098765432,579.33864,11640.883382100563,1181.0,373.9047999999999,145.0,310.6666666666667,9899.705508958672,4358.8294419999975,69.21412081098,376.8424000000001,235.36111111111117,470.42719600000015,9543.981242437136,922.0,287.9049,121.0,200.0,6897.579961375795,3296.1724729999996,59.39502139224501,290.7728,216.39814814814824,356.16994000000005,8353.717950644603,647.0,284.195,104.0,118.0,7039.1339878138015,2152.4525710000007,53.16038198200002,285.95150000000007,169.61111111111114,350.94240400000007,7370.422645283792,426.0,213.32299999999998,79.0,76.0,5969.494608589592,1416.1390149999995,43.006534038792005,216.26759999999996,92.44444444444443,272.0324360000001,5282.880934862196,371.74193548387103,5.130154838709678,0.67769255771552,23.096774193548377,141.54838709677418,51.28959577150272,1679.5823707741938,9.44306801827955,4.6853419354838675,73.80613633346611,3.2610836774193546,1504.1870849105694,94.105098855359,-0.1854049947970881,-0.4616811260151611,7.964620187304888,23.340733032720575,1.7472740971421745,404.60896997502675,-0.3701102126852416,0.031895421436003525,-21.518443222580512,0.4051865910509889,102.40920099905073,115.1831425598335,3.2714417273673235,0.3179496328470727,-4.1009365244536955,59.42085790264774,-3.7560889244349545,543.0855723537986,1.2213749099739994,2.9777960457856363,38.976940262129794,1.8349429708636837,306.2645973226354,-78.78251821019776,-1.4445240374609807,-0.17983659109610836,-10.4162330905307,-79.87119898254132,-25.570931374807678,-371.2458214588962,-4.259100532113754,-1.2335631633714903,-12.487649414261837,-0.9960962362122772,-699.2360177312671,-173.25598335067642,-2.6117754422476627,-0.08048398140816583,0.6524453694068684,-47.15944039773383,-7.488763606337688,-807.9129241997915,-1.295010894875368,-2.590926951092613,-17.861100583953895,-1.3454277877211198,-728.3462444437196,121.74921956295528,0.8982053069719038,-0.06369488230673605,-1.3132154006243475,95.26812348248355,9.873668178843236,604.3429619136314,2.145768003157633,1.1722750260145662,3.4757465003447203,0.026069001040582657,964.9412963469581,-210.67429760665974,-0.559124453694072,0.4149686565137268,-6.101977107180019,-41.215863105561326,2.83943521725607,-921.4452432029133,-2.3000768299994054,-0.7556259105098869,5.109464770779182,-0.774271294484909,-162.29800494331633,-237.28720083246623,-4.622411550468263,-0.45490650280213896,-1.7148803329864717,-137.1226731414036,3.6935189579089784,-1105.9440183642037,0.0029086854640770765,-4.536451716961498,-55.46499372295949,-2.559256875130071,-633.2514774004177,1.9209157127991876,1.152318418314261,0.24385455784210255,-1.8251821019771062,3.3705630708752254,-11.362608256792836,-12.025866988554114,-2.0627356206073646,0.9565693028095765,8.106288870189799,0.8567613204994762,-430.1416242380136,0.7409166007918869,0.5990808157906259,0.442036001719509,0.3523732810446993,0.29726184232018676,0.1992516151121273,0.19244861547838785,0.11533866440999907,0.11895626557596674,0.0611573774225751,0.07812570219759189,0.038159240862439915,0.052791061394122867,0.02361370840100449,0.030544549969408544,0.012713799392625402,16.01312198827373,5.699276167045238,3.581597371036901,2.1877133988566895,0.4646826823248226,-0.4428033886410123,4.043810638657169,0.9715613862758473,6.03347452811324,0.6442343176561135,14.565140368055975,10.31977180837761,32.06654362789283,11.711043609577656,2.9545654686067175,0.7154484004551722,3.537323834046667,2.241367555006847,7.014204248961811,0.29894281023935954,3.768364603023417,2.4403540615968033,24.441829299195405,14.681716755462334,0.3534436443013205,0.6915909287825599,0.7694370352666425,0.8548823589194228,0.8548823589194228,0.8548823589194228,1.9033154004154007,659.3419266315426,0.0,1.0,2.0,0.0,7.0,0.0,1.0,0.0,0.0,3.086104488553916,1.2988600808545292,0.8874120969137724,0.4357991936879646,0.4357991936879646,0.4357991936879646,14.026823046885681,774.1235966065198,55.58314716227599,24.97172892279096,52.26658532192163,,10.0,284.0,10.023291153407584,8.417796984328938,10.779665677378784,16.944765761229018,0.0,24.26546827384644,13.847474399381248,0.0,9.878758121577533,10.256762414135533,8.533333333333335,25.25,14.0,1.0,11.25,0.0,0.025925925925925835,2.75,0.21530190239867641,0.07256685966363374,-0.14273504273504267,0.08703703703703691,0.19261507128309552,0.0,0.6537634408602152,0.9092592592592591,0.4384615384615388,0.5811965811965815,0.8222222222222222,11.526201667230312,0.5155295297024232,0.6875295297024231,17.38265745472728,4.985918203970655,3.412765828700017,28.908859121957594,8.398684032670673,0.5213849287169044,0.24218749999999992,0.09765624999999999,0.29296874999999994,0.18181818181818182,0.48484289766739846,-0.8111444555525802,-0.0823276085865811,-0.026165950179115487,-0.06759537129604835,0.5151571023326015,0.8618602629965281,0.037796448969519544,0.027801943967629944,0.045361066473501487,-3.544421862686481,0.8511448932662268,0.7289619158825613,1.7549502618526274,0.9538669692737434,0.6097002240960195,1.236637131223539,0.8353614006272395,1.2906433576811278,0.6708988731844546,0.8771985747955244,0.5799724683840995,0.917453353283111,0.7430596032562067,0.4649203157671292,0.6317652991798182,1.3356435121745553,0.6866998618301486,1.1347014886876117,0.7299059983612013,0.964754839460034,0.45658454525586395,0.5272149345542413,0.5213752451860655,0.8543923723230954,1.160905821635247,1.0760100882343222,1.2316412489398092,1.3414689989925823,1.2079516415858453,1.3598527677167256,1.1494362128463775,1.3373683678690416,1.050025713371685,1.0445998641016823,1.1029835965831756,1.181897588856846,1.3108171765755936,1.5011409901660333,1.2407786728050418,0.8906624102154832,1.2459141815340542,1.0321744847332814,1.305926360893318,1.0826255736181236,1.496382629540192,1.3099451256916212,1.4977382797512229,1.1170265724128832,0.986879261555839,1.0291789670338858,0.9600073379250913,1.0567181138149802,0.7433923540832986,0.7927507261554979,0.9619435815117005,0.9322355099871108,0.9940088152733101,1.3125032421374636,1.1234250109769817,0.6588362332984811,1.6299754607169665,1.3291860473890134,0.756775392155377,1.3592958295439788,1.3165574894179335,0.962560149531335,1.5923856698804457,1.3658898410091447,1.3380225199312772,1.4729607667151494,1.497690436779687,1.0285033088179885,1.0791432238483083,1.8623944877707321,1.2863689282057023,0.770267636741588,1.7793241610311423,0.8440298626790252,1.1185250013206658,0.6642820742929925,1.885824488330976,1.9668382047028807,1.8322270056325802,1.1571155683728593,0.627069711155098,0.32783110397255194,0.22101940198485295,0.7372036841310587,0.7274754243760626,1.0541401572514852,0.6688931804314728,0.9119699690802651,0.3894895862501076,0.183247294150015,0.2252777918017398,1.2812584039110044,5.5,0.0,3.3333333333333344,1.7916666666666667,0.9372222222222225,0.8197222222222222,0.23274376417233553,0.18406320861678005,0.1163942428823381,0.06031635802469136,3830.3695772881183,4183.359069246517,2100.3571505621403,1961.4029609113434,10.967295665841549,0.3976597117599956,6.606044032576349,0.6601911237282984,1.0,0.18181818181818182,1.8680918218329587,3.6553362295323457,4.0667842134731025,4.51839711669891,4.51839711669891,4.51839711669891,0.2894736842105263,0.0,0.11904761904761907,0.06891025641025642,0.046861111111111124,0.04098611111111111,0.013690809657196209,0.01673301896516182,0.016627748983191158,0.01507908950617284,0.6274094490023461,14.409972299168976,5.551020408163265,3.3217993079584773,104.83424387818272,1.0,3.815929518129521,70.47665668169051,,42.6572996744312,52.56841245034529,53.22988706561692,42.65899616333444,61.70417134569409,52.58070733149011,52.03684244365088,62.53625830003031,0.24523548681013535,-0.03501085139856215,-0.6599653275444914,0.3340607541899442,0.15974279600931857,0.033002244532154335,0.23337047737803607,-0.03796904436617111,0.006594756570939027,-0.28244252995021796,0.12036627971204597,0.06595516904981856,0.18123129416541683,0.37298772533990515,0.2744172676088646,-0.10385264045536004,0.24553862353779812,-0.04283437293150538,0.1891266727172146,0.0756522241398442,0.37174016040079294,0.3088880425945369,0.32911407258863773,0.11909150021578084,-0.10770110560426997,-0.1430955600314638,-0.1348581520135849,-0.22918765454711984,-0.28675905308898414,-0.25336646331648915,-0.11232906021693476,-0.22921162083830007,-0.13379872030434045,-0.08598448319448833,-0.15522841221736747,-0.23624019591622122,-0.206400307432935,-0.2254597466358669,-0.05259450712036566,0.012509976057462105,-0.14754597676202053,-0.06466131004444246,-0.21302319881076026,-0.06073289144621296,-0.2448936540197139,-0.1071715221232527,-0.18270991024133768,-0.2144369806527444,0.1720815512504486,0.09199300926909372,-0.04938345889581786,-0.02987406495597004,0.3536326602083753,0.10114838055475674,0.18905660005500333,0.11939312765781804,0.13146129436121418,0.024743737815655382,0.004200220873825224,0.33706116685807874,-0.4085669543036574,-0.07857262306959804,0.4414442015613248,-0.19046381707158638,-0.20991946558502275,0.039911304831291995,-0.39551363781322824,-0.17559917187329221,-0.11626762163615507,0.049908690637897636,-0.17116874009127633,-0.07778655967815575,-0.46017815196596795,-0.6495781002385261,-0.4839301348724925,-0.05352734831752631,-0.6983893117004562,0.051916367076589295,-0.4747063866763938,0.0002220633467847895,-0.6980206004879502,-0.5417759661996804,-0.5657768510937472,-0.3035062190400413,0.004329390132930614,0.18819236503667916,0.30147973909888226,-0.06620866676732597,0.019950670816668875,-0.1856131441643988,-0.00599894745928493,-0.18301657353894987,0.17105474209648175,0.09202155643539826,0.22011917611338985,-0.23959049511255426,3.3019272488946267,6.319517814613497,3.102671683933338,21.808933367325782,36.89378825557978,40.85788266210174,41.313108468553345,41.313108468553345,41.313108468553345,35.657560999235955,22.181047193244417,5.7504625281053885,5.490968440542653,0.0,13.476513805991539,2570.8847514705026,2089.9050927593316,801.082503560694,26.0,28.0,34.0,39.0,43.0,42.0,36.0,31.0,30.0,267.0677622760003,19.0,4.553876891600541,5.389071729816501,6.274762021241939,7.1316985104669115,8.01862546504575,8.881697406469304,9.76978471664462,10.635446708881462,11.524231312339198,0.752688172043011,1.0096774193548386,1.1328968746320573,0.7178983780996449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6885128259609816,0.995192915876028,1.026748584451284,0.649265273829143,4.0,1.0,0.0,1.0,0.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.256762414135533,0.0,0.0,5.884182201861009,10.023291153407584,0.0,13.139891848781026,0.0,0.0,5.156663257125445,38.112942673227685,11.250837766380558,10.589411470366237,224.34385484394326,-375.32832773141337,-38.09418093831109,-12.107365410690752,-31.27736064428445,238.37067789082894,398.7952688751064,17.488966223964898,12.864363512100208,20.989224677637182,0.5,0.7302484819874517,0.23833030039104086,133.3836507083275,0.1576528588522367,1.916012645155006,0.26975151801254815,5.0,0.15789473684210525,0.37707262788847357,0.737826279081561,0.8208766788160492,0.9120343308208687,0.9120343308208687,0.9120343308208687,1.67444,,1.8035714285714288,1.389555950537421,1.1082508187380549,1.8006559751755822,-4.377290316528427,1.2713433292533662,1.237629484152691,-1.9973784437328954,67.63990000000003,12.940891921302285,0.0,5.156663257125445,0.0,18.742957874899023,10.455762341614273,35.5228477603919,0.0,0.0,3.6635616461296463,0.0,5.017279836814924,2.3978952727983707,6.54965074223381,4.727387818712341,8.154500175151941,6.762729506931879,9.797515738962685,23.33333333333334,5.895401549508692,3.6861661207692955,0.0,4.91117433547493,0.0,0.0,2.050133771101034,0.0,31.299999999999994,0.0,24.069308390022677,0.0,0.0,-3.678564814814814,0.0,0.0,0.0,35.119803113593775,10.455762341614273,11.57156847654457,0.0,13.574460241454382,10.023291153407584,13.847474399381248,11.257379486545457,33.68404668633756,0.0,0.0,0.0,22.25484972108899,21.34389760479043,22.155871224681903,140.95331336338106,,85.83420278509081,104.98242979507532,106.33663515137405,85.83859664678559,125.28780117942938,105.02015429306319,103.93617050017369,125.73830941463831,22.155871224681903,140.95331336338103,,84.43142500731304,103.74726895015314,105.35152331249577,84.43808644387128,127.78563300791664,103.8900713337269,102.83605540314903,127.06989504379357,4.777327558583991,105.86963463159766,,63.133582843327005,80.52364135435445,81.530844448041,63.13538685918133,93.7251545071854,80.4516809912513,79.4428204610562,96.15239801983807,1.2308817347045502,7.830739631298948,,4.768566821393934,5.832357210837518,5.907590841743003,4.768810924821421,6.960433398857187,5.834453016281288,5.774231694454094,6.9854616341465725,2.4100159800505243,70.47665668169051,,42.6572996744312,52.56841245034529,53.22988706561692,42.65899616333444,61.70417134569409,52.58070733149011,52.03684244365088,62.53625830003031,30.850980392156867,0.0,3.4647981298937287,0.0,0.0,5.506222540720196,0.0,31.829206117989802,0.0,2.345359977324263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.127223488703432,337.89658512310046,57.91084647682172,113.31542311550271,126.07031061766618,140.07031061766622,140.07031061766622,140.07031061766622,346.0,109.17919476250621,124.8179476116717,65.07052073773559,106.6,98.22,1.0,7.512020015014993,5.247927513443585,3.8845638346132265,4.182013210372852,,4.143208318788414,4.175012539312827,4.178790156830333,4.143206473309681,4.170342415165568,4.174650663394493,4.172875619218807,4.180198469162915,0.21580910192295702,0.23233406724293623,,0.23017823993268965,0.23194514107293485,0.23215500871279626,0.2301781374060934,0.23168568973142045,0.2319250368552496,0.23182642328993375,0.2322332482868286,1.94479737333626,2.0185794247684337,,2.0092571088448943,2.0169040266286498,2.017808433379061,2.009256663422168,2.015784811290241,2.0168173462656758,2.0163920599850833,2.0181453909725975,186.52999999999977,90.85800993175322,87.30272502592399,,88.75285614414938,87.02738471615915,86.96302134910445,88.75321720367172,87.57432890190711,87.05826056361612,87.15206384045086,86.91994509251286,5.0476672184307345,4.850151390329111,,4.930714230230521,4.834854706453286,4.831278963839136,4.930734289092873,4.865240494550395,4.836570031312006,4.841781324469492,4.828885838472937,5.097084622415404,5.05716834176136,,5.073642274645726,5.054009500880414,5.053269651236446,5.073646342782839,5.06027457083221,5.0543642210841515,5.055441118061653,5.052774188588732,31.32584270282187,0.1158824640967504,3.6861661207692955,7.3114692180948495,0.12900462962962966,5.895401549508692,0.0,3.4647981298937287,-3.678564814814814,216.98707089792484,103.80716196603277,-173.66987178836436,-17.626731132784485,-5.602253928656914,-14.472489315697032,110.2975768379258,184.5283664943827,8.092398834336132,5.9525279514317,9.71201928917804,614.0,26.0,2.0783085343362266,1.0423077705117731,0.2041241452319315,0.05103103630798288,0.5807695208822299,0.19877124179680808,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.09622504486493763,0.02282177322938192,0.34382480480718575,0.08483221085123258,0.39132849922488055,0.1096771696676157,13.336498814253964,10.783454684231266,8.39868403267067,6.695092339849286,8.32333158496523,5.579045223139564,6.543252926265187,3.9215145899399686,4.639294357462703,2.385137719480429,3.3594051944964516,1.6408473570849162,2.2172245785531604,0.9917757528421887,1.0996037988987075,0.4576967781345145,4.03176085399408,1.8677491200978948,5.283317179798397,1.9733272387407983,6.753444401942334,2.3039429024751,59.070894695832024,33.53178144706348,26.767116517787525,25.086582185573803,25.086582185573803,25.086582185573803,94.0,109.0,35.644308999999986,21.433690999999996,0.41935483870967744,55.07,7.368055555555555,3.847222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,11.0,31.0,0.0,0.0,32.0,11.0,2.0,7.0,25.0,13.0,19.0,19.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,5.0,2.0,1.0,18.0,7.0,0.0,3.0,3.0,0.0,2.0,3.0,1.0,0.0,0.0,1.0,2.0,3.3141860046725258,5.88027108059799,4.00277736869661,4.461588457510067,4.935821945017587,5.265600457733422,5.405488741609826,5.483239705042049,5.364222141435755,5.6507332535663855 +14051,CC[C@@H](CO)NCCN[C@@H](CC)CO,1,16.05263157894737,5.842363157894738,2.0526315789473686,3.3157894736842106,171.0355238607099,62.40407489473684,1.1122662556941056,5.877247368421052,3.514619883040935,7.467236842105262,155.27865221599214,18.0,6.239405405405406,2.6486486486486487,2.4864864864864864,153.43195196872702,64.04764835135134,1.469090453297297,6.345445945945946,2.6509009009009006,7.723971567567566,202.34623728074934,12.382352941176471,5.977264705882352,2.264705882352941,1.5294117647058822,163.16058810406162,41.29680961764704,1.146217037091,6.045161764705882,2.2303921568627447,7.557040588235295,146.574278387843,10.13978494623656,5.804009677419355,1.913978494623656,1.2473118279569892,170.73536710010077,33.53495276344085,0.9680930283533976,5.843836559139786,2.185483870967741,7.437870752688172,118.75712022947415,8.9375,5.775729166666668,1.7291666666666667,0.7708333333333334,168.94530884729446,27.88581837499999,0.9439926982413334,5.820156249999999,2.21875,7.435012166666664,113.34355963490475,7.173469387755102,5.625081632653063,1.5510204081632653,0.6632653061224489,171.53106046630714,21.55847323469388,0.824989827532704,5.657505102040815,2.055555555555556,7.338129510204082,94.12714401257368,7.384615384615385,5.631692307692308,1.6153846153846154,0.9230769230769231,175.70672266239947,23.04819466666666,0.800373898948205,5.651092307692308,2.0598290598290596,7.333546871794872,91.37688498408005,8.649122807017545,5.656701754385965,1.8421052631578947,0.9122807017543859,171.67732208069344,27.89508715789473,0.9307778479513161,5.697175438596494,1.894736842105263,7.334954947368422,112.10040903621162,10.076923076923077,5.689230769230772,1.7692307692307692,0.9230769230769231,162.1305377756862,32.86553338461538,1.031701048261231,5.760269230769233,2.2051282051282053,7.3421883076923065,125.95201563615203,7.052631578947368,0.11515844875346251,0.017762570489589964,0.3213296398891966,2.3157894736842106,1.1655061714546147,33.49534179501386,0.18929992228065376,0.10966592797783925,1.2908587257617734,0.06826419944598335,44.35369186412565,-0.40540540540540543,-0.013408946619750069,-0.00812642948522378,0.11252526764992131,0.13513513513513514,-0.22674888536238122,-1.8868748647151423,-0.012604599332653696,-0.01170092086546394,-0.19013958556894842,-0.008780819645129842,-2.526422629370263,-1.1176470588235294,-0.01637330943457721,-0.0025749090199366615,-0.06745967084894906,-0.29411764705882354,-0.3087400422237747,-5.31931714795503,-0.0339316151367311,-0.015739457389604104,-0.15841978527329675,-0.009205896040410593,-7.901356622091771,0.23655913978494625,0.011633062282191027,0.003657753610623079,-0.061567330890894494,-0.010752688172043012,0.14406414514113056,1.0705122004587007,0.002767572552895781,0.009984043725612827,0.1012528255178599,0.007297475709647638,0.6438971972288402,-0.9375,-0.015135641735918753,-0.002908087553794904,-0.02089104339796861,-0.3333333333333333,-0.062438116772744544,-4.454618795013849,-0.021919487493136196,-0.014390270083102506,-0.07777393044013543,-0.008269559095106177,-5.27749260254023,-0.23469387755102042,-0.008376064220702105,-0.0003206416357375399,0.033127932613488634,-0.05102040816326531,-0.1630489399445568,-1.0823570393747497,-0.007344503009371784,-0.007409483294702894,-0.13857325016802657,-0.00597939815704676,-1.5811506090229714,0.6153846153846154,0.011646814404432155,0.002963943499117413,0.04034377441579659,0.20512820512820512,0.15192435025626663,2.928047360181833,0.022151585457014254,0.010557958661836802,0.07756232686980609,0.006985560338092178,4.494137920276868,0.2807017543859649,-0.009204524469067384,-0.0036257019143008332,-0.07386888273314869,-0.12280701754385964,0.31911976925450714,1.4379334025854116,0.03158345776558725,-0.0072065558633425545,-0.06740535549399818,-0.005416129270544791,6.391954030624896,-0.3076923076923077,0.0029132111655657453,0.0008778396697535216,-0.14319198806733435,-0.15384615384615385,-0.22788844253468604,-1.5974015763903702,-0.045821531284103094,0.0030427764756019602,-0.006558230934962239,0.0007012904325591202,-7.143521905669534,,,0.46190476190476193,0.5714285714285714,0.0,0.0,0.5714285714285714,-0.5714285714285714,1.018482234549615,0.009735478203123244,0.009735478203123244,0.32339745520248353,0.10593765717338385,0.37819926193585685,1.3418796897520984,0.48413691910924067,1.892623241805889,1.3635676439891338,0.28388888355120007,0.2451667142655549,0.0,0.5290555978167549,5.373257316,610.0,222.00980000000004,78.0,126.0,6499.349906706976,2371.3548459999997,42.266117716376016,223.3354,133.55555555555554,283.75499999999994,5900.588784207702,666.0,230.858,98.0,92.0,5676.982222842899,2369.7629889999994,54.35634677199999,234.78150000000002,98.08333333333333,285.78694799999994,7486.810779387725,842.0,406.4539999999999,154.0,104.0,11094.91999107619,2808.1830539999987,77.942758522188,411.07099999999997,151.66666666666663,513.87876,9967.050930373325,943.0,539.7729,178.0,116.0,15878.389140309371,3118.750606999999,90.03265163686598,543.4768,203.24999999999994,691.72198,11044.412181341097,858.0,554.4700000000001,166.0,74.0,16218.749649340267,2677.038563999999,90.623299031168,558.7349999999999,213.0,713.7611679999998,10880.981724950856,703.0,551.2580000000002,152.0,65.0,16810.0439256981,2112.7303770000003,80.84900309820499,554.4354999999999,201.44444444444446,719.136692,9224.46011323222,576.0,439.27200000000005,126.0,72.0,13705.124367667158,1797.7591839999995,62.42916411795999,440.78520000000003,160.66666666666666,572.016656,7127.397028758244,493.0,322.432,105.0,52.0,9785.607358599525,1590.0199679999996,53.05433733322502,324.73900000000015,108.0,418.09243200000003,6389.723315064062,524.0,295.84000000000015,92.0,48.0,8430.787964335683,1709.007736,53.648454509584006,299.5340000000001,114.66666666666669,381.79379199999994,6549.504813079905,268.0,4.376021052631575,0.6749776786044186,12.21052631578947,88.0,44.28923451527535,1272.8229882105265,7.193397046664843,4.167305263157892,49.05263157894739,2.594039578947367,1685.4402908367747,-15.0,-0.49613102493075256,-0.3006778909532799,4.163434903047088,5.0,-8.389708758408105,-69.81436999446026,-0.46637017530818675,-0.4329340720221658,-7.035164666051092,-0.3248903268698042,-93.47763728669973,-76.0,-1.1133850415512503,-0.175093813355693,-4.587257617728536,-20.0,-20.99432287121668,-361.71356606094207,-2.307349829297715,-1.070283102493079,-10.77254539858418,-0.6260009307479203,-537.2922503022404,22.0,1.0818747922437655,0.34017108578794636,-5.725761772853188,-1.0,13.397965498125142,99.55763464265917,0.25738424741930765,0.9285160664819929,9.41651277316097,0.6786652409972304,59.88243934228214,-90.0,-1.4530216066482002,-0.2791764051643108,-2.0055401662049865,-32.0,-5.994059210183476,-427.64340432132957,-2.1042707993410747,-1.3814659279778405,-7.466297322253001,-0.7938776731301931,-506.63928984386206,-23.0,-0.8208542936288062,-0.03142288030227891,3.2465373961218864,-5.0,-15.978796114566565,-106.07098985872547,-0.7197612949184349,-0.7261293628808836,-13.580178516466603,-0.5859810193905824,-154.9527596842512,48.0,0.908451523545708,0.2311875929311582,3.146814404432134,16.0,11.850099319988798,228.387694094183,1.7278236656471118,0.8235207756232705,6.049861495844875,0.5448737063711899,350.5427577815957,16.0,-0.5246578947368409,-0.20666500911514749,-4.210526315789475,-7.0,18.189826847506907,81.96220394736847,1.800257092638473,-0.4107736842105256,-3.842105263157896,-0.3087193684210531,364.34137974561907,-16.0,0.15148698060941876,0.04564766282718312,-7.445983379501387,-8.0,-11.850199011803674,-83.06488197229925,-2.382719626773361,0.15822437673130194,-0.3410280086180364,0.03646710249307425,-371.46313909481574,0.7722539134194024,0.6636977440356039,0.5213782205791823,0.4203168697414152,0.33210721570003593,0.248838578084218,0.25227639654333955,0.16115980260134297,0.18832268782514924,0.10237994391473533,0.11877021033186914,0.06013356111645082,0.08049381885742236,0.03319459365906094,0.050296115882772816,0.0210764015333686,8.007185187145364,5.83008349731178,3.5134007702065198,2.3270350764004006,0.2866116897979336,-0.26352709954760406,3.031164716284678,0.987143491103476,5.00512830156095,0.98720037295064,14.5414443243928,11.092777609639825,16.00309883236843,11.843064767581962,1.850968372252314,0.7873429839056669,3.4549408306900067,2.376004670100341,6.0037451175720316,1.2442490570341744,3.668657837048286,2.5714499108249167,20.752463288494766,14.707202810546422,0.2635030713124044,0.479809325504223,0.706769126122867,0.706769126122867,0.706769126122867,0.706769126122867,3.3484664662044645,100.68962577754574,0.0,0.0,6.0,0.0,0.0,4.0,0.0,0.0,0.0,3.8752205517416147,2.748383207835454,1.5660467106401836,1.5660467106401836,1.5660467106401836,1.5660467106401836,258.1253396843811,737.1364300301897,46.23884265480278,19.398327106057625,39.25209720009467,,9.0,186.0,0.0,0.0,25.297445587321757,0.0,25.93115605767717,0.0,0.0,13.847474399381248,10.633577208012662,10.213054789681411,6.466666666666667,8.0,0.0,0.0,8.0,0.0,0.038095238095238085,-8.0,0.08149920255183407,0.0,-0.08149920255183407,0.12592592592592566,0.1810329670329669,0.0,0.5087719298245618,0.8666666666666665,0.4272727272727277,0.5087719298245618,0.7407407407407408,14.25875128369461,0.13629669484372542,0.13629669484372542,4.527564372834769,1.483127200427374,5.294789667101996,18.78631565652938,6.7779168675293695,0.5329670329670331,0.25773195876288657,0.0,0.15463917525773196,1.0,0.21726654562667216,-0.35084661352028707,-0.053881131740377654,-0.009232805618954922,-0.04385582669003588,0.782733454373328,1.26397453857344,0.04741281891167621,0.033262487857195794,0.042132484619114674,-2.139738770335224,1.2723880597014925,1.1418363714212867,1.5059236347626261,1.3103448275862073,1.0681818181818181,1.86364664430179,1.279232354444786,1.6227960184125076,1.1375456561604875,1.1167143538388167,1.138486869656171,1.4947170042511893,1.2445676031606674,1.1271984431338027,1.1170737781303999,1.827015720081136,1.2489973262032086,1.5702164918003043,1.2488208533102718,1.3941047583513184,1.1312953199891,0.9628929808690282,1.0800239084411927,1.3491914401880782,0.9589953458513882,0.8265337366425549,0.7899982409768861,1.4010474601408975,1.0353128054740957,0.9375782227408787,0.9622295721561632,0.9627825457701567,0.840215225961158,0.6098769491490658,0.7507148371229656,0.9732844814719118,1.1303638059701493,1.1273030965805675,1.1630562829155997,0.9153645833333335,1.1168323863636362,1.084464011614248,1.1306847366190567,1.1219795630899219,1.1255617428528852,1.0260202446948017,1.1101839411802454,1.120199482346198,0.9678266829119708,1.0609253421806903,0.9490967491361676,0.5874824067558059,0.9395871985157699,0.9832564950063499,0.9650848256441807,0.9334640010948628,1.0532874677956985,1.1996404606191542,1.10715831520248,0.9416843076672672,0.8301282051282052,0.8376471443749579,0.8605616812678191,0.699270557029178,0.8678613053613055,0.6882738140520213,0.8284370078971965,0.6765000909698778,0.8423552056734173,0.7268923553794795,0.7919977016885249,0.7375278016596598,0.9010212097407698,0.9415795491538419,1.1528316664447908,1.5948275862068968,1.0474481658692185,0.6936833866618817,0.8996126238654628,0.7731063698101491,0.9360889531036087,0.7697305674773484,0.8928270217522146,0.8071091470610552,1.014207807118255,0.7902331550707151,0.693422510522441,1.6316312997347482,0.9217657342657343,1.3204129605367845,1.0232353687176083,1.445021380294835,0.8049340178859065,1.0073341953706756,0.8462296006346386,1.2998547828280935,2.5,0.0,1.1111111111111116,0.625,0.24000000000000005,0.1111111111111111,0.16326530612244897,0.125,0.0987654320987654,0.0,1876.3515768308998,2469.034575943241,1227.4928241144173,972.9294206326842,10.465532801348996,0.4261646735942428,6.005492431072259,0.7426602266952508,1.0,1.0,1.3727069617019705,2.499544305608131,3.6818808028034016,3.6818808028034016,3.6818808028034016,3.6818808028034016,0.1923076923076923,0.0,0.07936507936507939,0.041666666666666664,0.020000000000000004,0.012345679012345678,0.02040816326530612,0.015625,0.012345679012345675,0.0,0.39406395962943586,14.0,9.551020408163266,7.04,86.71192192900713,1.0,3.461868860392615,56.59542939643007,,51.821340684173705,50.554761636261716,49.98277502863242,51.83369326063393,74.79850581356875,51.30589820164384,51.89541948860227,66.64484496905537,-0.05748285599031868,-0.1164391042506718,-0.45750301117658637,0.3501863932898414,0.05835380835380835,-0.1945497080289042,-0.056332455905735046,-0.06658533812795903,-0.10669604572012927,-0.14729697508667455,-0.12862993657573032,-0.056960819340806566,-0.1584723441615452,-0.14218070503563385,-0.14496263485320032,-0.20993914807302258,-0.1270053475935829,-0.26489781846324373,-0.15880766885462466,-0.1792479084403664,-0.14352185478049898,-0.12272434009369121,-0.1348568666317564,-0.17814428269684987,0.033541967581447604,0.10101787934896311,0.20592479071465267,-0.19160177975528378,-0.004643206256109482,0.12360650562779152,0.03196003214447145,0.014620040618889487,0.09104052561913625,0.07843834766512318,0.10690048032310179,0.014517330354401456,-0.13292910447761194,-0.1314331853177526,-0.16371997259626558,-0.06501436781609199,-0.14393939393939392,-0.05357167409488566,-0.13299218805633944,-0.11579237449785443,-0.1312191520962684,-0.06024976156413922,-0.12114049768722157,-0.11898654611903445,-0.03327749010051782,-0.07273512548466192,-0.01805153347177184,0.10309641097818448,-0.022031539888682748,-0.13989538960661438,-0.03231365859762238,-0.03879823573558004,-0.06756413255537459,-0.10734966375677589,-0.08759200584748947,-0.03564868092303822,0.08725602755453503,0.1011372984831212,0.16686455943155745,0.12555260831122908,0.08857808857808858,0.13035053265025345,0.08741655416150149,0.11701846038886685,0.0962738277650858,0.06008583690987122,0.10233124236108226,0.10132500207748968,0.03980099502487562,-0.07992921551742099,-0.2041203392507708,-0.22988505747126453,-0.053030303030303025,0.2738035860043782,0.042929354516975354,0.1668434798338797,-0.06571371798174926,-0.052217453505007144,-0.0793406985579683,0.14411323526813027,-0.043628013777267514,0.025297415839653302,0.049420756430945255,-0.4456233421750665,-0.06643356643356645,-0.19552744388326057,-0.047690260519394394,-0.24205784520169346,0.027745869037982603,-0.005080517956054436,0.010273180352961483,-0.16105811276213938,4.195780723337382,4.898979485566356,0.19999999999999996,13.218338570719615,21.077394515494298,22.269189704667134,22.269189704667134,22.269189704667134,22.269189704667134,26.496725385282446,19.089947015847873,3.9744443697168013,3.4323339997177684,0.0,7.406778369434569,2123.3714403557547,2049.4081491192555,472.37937559477314,0.0,14.0,15.0,12.0,9.0,8.0,8.0,8.0,4.0,204.183778008,13.0,4.007333185232471,4.727387818712341,5.459585514144159,6.192362489474872,6.928537818164665,7.664346632098617,8.40178233990491,9.13852208418571,9.876373260044556,0.5000000000000002,0.9572631578947371,1.157466431903048,0.4476466747586641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5752762685156007,0.9417956656346745,0.990570015716641,0.5117752364832291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,6.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,20.846631997694075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.847474399381248,12.841643245852019,25.17319447012107,13.213763929025836,99.17821896287667,-160.15508580823644,-24.595754796493424,-4.21460752126938,-20.019385726029554,357.3035586472578,576.9813442219532,21.643087858309354,15.183719584788244,19.232711474065113,0.4444444444444444,0.7829640991627433,0.24445836671093138,101.77252156061716,0.13011845349466025,186.7955915467366,0.21703590083725668,5.0,0.6923076923076923,0.2615712504003752,0.4762916978569279,0.7015875873612105,0.7015875873612105,0.7015875873612105,0.7015875873612105,-0.292599999999999,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,58.33500000000005,10.213054789681411,0.0,10.633577208012662,0.0,38.77279930352919,26.303276740850986,0.0,0.0,0.0,3.295836866004329,0.0,4.418840607796598,0.0,5.733341276897746,0.0,7.118826249062078,0.0,8.532475814947395,19.000000000000007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.37600000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.98372441231583,10.633577208012662,0.0,0.0,48.600013188828314,0.0,0.0,26.689117645233267,0.0,0.0,0.0,0.0,17.010573640829236,21.860498203592826,17.000791258489457,113.19085879286013,,103.53043647038822,100.97484269019279,99.85172612259743,103.55545344767333,150.0542905078578,102.49182350592801,103.67976532196712,133.4949239684826,17.00079125848946,113.19085879286013,,102.85696708263312,100.1667591962089,99.16878251459295,102.88385500610612,152.79796379217947,101.77198612176997,103.01332339054258,134.72632815071364,4.182367121155361,87.57068467546021,,79.66223927102719,77.48288387552384,76.15807226586863,79.68247578650353,117.3355097076813,78.75997457669621,79.79125079584945,104.55272059544737,1.214342232749247,8.085061342347151,,7.3950311764563015,7.212488763585199,7.132266151614102,7.396818103405238,10.718163607704128,7.320844536137715,7.405697522997651,9.53535171203447,2.0911835605776794,56.59542939643007,,51.821340684173705,50.554761636261716,49.98277502863242,51.83369326063393,74.79850581356875,51.30589820164384,51.89541948860227,66.64484496905537,35.788235294117634,0.0,4.091042454018645,0.0,0.0,0.0,17.807949735449736,37.64166059723236,3.910673343411438,6.456995464852608,0.0,0.0,0.40000566893423994,0.0,0.0,0.0,0.0,19.447458986362705,357.4088437907266,52.162864544674875,94.98268361310897,139.91147050652927,139.91147050652927,139.91147050652927,139.91147050652927,105.0,89.3962311419623,99.07293381940778,43.09932081470814,64.52,64.52,0.8,4.663439094112067,4.700439718141093,3.4871995937851095,3.6852370489471626,,3.683455397313256,3.68226118240504,3.679180341319826,3.683459605174661,3.685064438893423,3.6828728068789367,3.683533288567487,3.6891873178086625,0.24908568527036495,0.2632312177819402,,0.26310395695094685,0.26301865588607426,0.26279859580855897,0.2631042575124758,0.26321888849238734,0.2630623433484955,0.26310952061196335,0.2635133798434759,1.5855712420758437,1.6408070882660513,,1.640323514909823,1.6399992518443753,1.6391622306562952,1.6403246572771244,1.6407602489192332,1.6401653382933639,1.6403446609323176,1.6418784313412187,183.4599999999996,52.01127146006809,52.967111746589524,,53.08788153878008,53.16427280156678,53.36745738585982,53.08763407987048,52.81189840237829,53.12565272292583,53.08283720229032,52.66688337139419,3.715090818576292,3.7833651247563944,,3.7919915384842917,3.79744805725477,3.81196124184713,3.791973862847892,3.772278457312735,3.7946894802089877,3.791631228735023,3.761920240813871,4.287932690561299,4.30614342447978,,4.308420919214387,4.309858843488456,4.313673384570425,4.308416257896603,4.303208750476155,4.309132150339507,4.308325896094013,4.30045909561833,0.0,0.0,24.264945200302343,0.0,0.0,0.40000566893423994,1.876401486520534,6.125314310909549,0.0,221.09028628473547,45.27304969238108,-73.10787826304737,-11.227513871166307,-1.9238915332380886,-9.138484782880921,163.10256359772714,263.38146965832203,9.87967521853337,6.931091306797949,8.779382321944071,383.0,15.0,0.408248290463863,0.28867513459481287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.811554787871634,9.291768416498455,6.7779168675293695,5.4641193066383975,4.649501019800503,3.483740093179052,3.784145948150093,2.4173970390201447,2.259872253901791,1.228559326976824,1.0689318929868223,0.5412020500480574,0.6439505508593789,0.2655567492724875,0.4023689270621825,0.1686112122669488,1.105171715522539,0.6218987247003249,1.1897227048854202,0.5688482503204462,0.8412609923560823,0.37234316630042763,47.166924980749165,30.76342473552324,28.08866693906494,28.08866693906494,28.08866693906494,28.08866693906494,54.0,56.0,36.50703199999996,25.216967999999994,0.0,13.04,6.222222222222222,3.7499999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,0.0,2.0,37.0,0.0,0.0,0.0,37.0,0.0,13.0,37.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,4.0,4.0,0.0,14.0,4.0,0.0,2.0,2.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,2.6390573296152584,0.0,2.70805020110221,2.772588722239781,2.5649493574615367,2.302585092994046,2.1972245773362196,2.1972245773362196,2.1972245773362196,1.6094379124341003 +104850,Cc1c(C(=O)NN2CCCCC2)nn(-c2ccc(Cl)cc2Cl)c1-c1ccc(Cl)cc1,0,38.03921568627451,6.139535294117646,3.549019607843137,6.996368917937545,160.93404601926332,156.98054319607846,1.7731975490554703,6.342192156862745,3.2731873728000576,7.79145550980392,248.4645258161795,29.38888888888889,6.349607407407406,4.2407407407407405,7.358024691358025,146.64083678215368,114.02151400000001,1.9865629351851852,6.5441055555555545,2.8447645176040246,7.790201370370369,284.75854255437747,26.138297872340427,6.239999999999999,3.8404255319148937,5.965721040189126,153.18126365455416,100.50294175531916,1.740835226370128,6.412953191489363,2.68179231240697,7.751420680851061,243.279468379642,22.733870967741936,6.1835,3.2661290322580645,4.753584229390681,159.94582349608814,85.21816235483871,1.5222747120010565,6.348473387096775,2.628169388026019,7.785594983870967,205.39082824005746,23.03968253968254,6.216768253968254,3.1825396825396823,4.548892808152067,163.38765299863562,87.09916692063491,1.456372661916881,6.363704761904762,2.697621890294501,7.821101579365079,197.55495908232638,22.23931623931624,6.279376068376069,3.324786324786325,4.78062678062678,158.8197892902323,83.44808815384614,1.5400911798695298,6.411747863247863,3.015739861418874,7.83160935042735,214.8709485022915,24.016528925619834,6.23617520661157,3.2479338842975207,4.335169880624426,155.7083188383177,91.025523,1.6008074616309007,6.396895041322313,3.0103560861136627,7.796712363636364,220.51736584507023,23.625954198473284,6.236413740458015,2.816793893129771,3.295165394402036,158.79738670832398,88.08093600763361,1.518551063460603,6.425154198473281,2.867715892313009,7.887445328244274,201.17852973387113,19.3515625,5.989461718750001,2.59375,2.469618055555556,163.1504241329575,70.7812903515625,1.378359013554086,6.1574328125,2.2838702417695473,7.6915784531249995,174.91999765630464,15.893886966551324,0.08697054978854281,0.01028935002323021,0.6389850057670127,3.502157289931223,1.5056710245516447,74.28220356939639,0.2721087906816109,0.10395132641291809,0.8103164394405655,0.07188357554786619,52.30928886870925,0.2052415737536842,0.01189575376991758,-0.0031092888742307997,0.20088427527873898,1.3212107404084839,0.06261237051310428,0.9683954632833567,0.000748202589397446,0.009194316288606955,0.0027249230171341437,0.004331930988081483,0.4591411247419317,1.02455274976073,0.0059791164609356625,-0.00220816768754813,0.035816829860855506,0.6371912784953592,-0.26463670586065957,4.862022803987011,0.007716064526508197,0.006722933078112341,0.07363510302058517,0.0012688303762055386,1.5981091120827204,-0.16823864270565914,0.008691831615631713,0.000863327528040677,0.01297577854671282,0.5093743239090559,-0.07602239412419601,-0.726982498238891,0.0001442969071858872,0.00602569762250251,0.10899866849266192,0.001987775812032571,0.8255045465857336,1.375487449881913,0.001936235147653851,0.0008554494472869699,0.00013730982589114376,0.17201361299784962,0.24912346734731156,6.461771700444884,0.03221416212380489,0.0034966661174273624,0.05425023008656558,0.001920599989015184,6.057007131505652,0.060864164670392996,-0.018033227851220895,-0.0012685204036628752,-0.034661224972643644,-0.5230313565569239,0.21154526995790038,0.4572589940358235,0.038148676469331094,-0.016497480259071943,-0.19843543318370196,-0.01134418137994266,4.938678677844243,0.46423975521175875,-0.009800577336752207,0.0007895422175003648,-0.11573107609597068,-0.8561667847606823,-0.1379291874822464,2.1628810280756627,-0.0026750076646851317,-0.006260919671709221,-0.08780275999371999,-0.004199364723040431,-2.0415085068879746,-1.359386143321271,-0.015006727007522029,0.000474944508918327,-0.06796270371642145,-0.879590253503986,-0.2439648447268071,-6.474826053156301,-0.03895754950689096,-0.01397506537415144,-0.1106082948047561,-0.0064691371404422176,-9.266145323417332,-0.37810878027681644,-0.013318726871876201,-0.0017879729964996997,-0.06698745674740486,-0.4277484754795162,0.07226636318400723,-1.6054001773927125,0.021211686726099552,-0.01314427984429066,-0.09232634702728557,-0.009924866754974043,2.2170166050452726,,,0.5025396825396825,1.2666666666666666,0.6333333333333333,0.05,0.6333333333333333,0.0,0.9465528781769764,0.015955093886584965,0.027421760553251632,0.9888449425783458,0.23857071501717486,0.24261464317534337,1.9353978207553222,0.48118535819251823,2.044747293724763,1.5216138748706236,0.2868269184814978,0.05958268354747614,0.17672381682516522,0.5231334188541392,9.06035479082354,1940.0,313.11629999999997,181.0,356.8148148148148,8207.63634698243,8006.007703000002,90.43307500182898,323.4518,166.93255601280293,397.3642309999999,12671.690816625154,1587.0,342.87879999999996,229.0,397.33333333333337,7918.605186236299,6157.161756,107.2743985,353.38169999999997,153.61728395061732,420.6708739999999,15376.961297936383,2457.0,586.56,361.0,560.7777777777778,14399.03878352809,9447.276525000001,163.63851127879204,602.8176000000001,252.08847736625518,728.6335439999998,22868.270027686347,2819.0,766.754,405.0,589.4444444444445,19833.282113514928,10567.052132,188.762064288131,787.2107000000001,325.89300411522635,965.4137779999999,25468.462701767126,2903.0,783.3127999999999,401.0,573.1604938271605,20586.844277828088,10974.495031999999,183.502955401527,801.8267999999999,339.90035817710714,985.458799,24891.924844373123,2602.0,734.6870000000001,389.0,559.3333333333333,18581.91534695718,9763.426313999998,180.190668044735,750.1745,352.84156378600824,916.2982939999999,25139.900974768105,2906.0,754.5772,393.0,524.5555555555555,18840.706579436443,11014.088283000001,193.69770285733898,774.0242999999999,364.2530864197532,943.402196,26682.601267253496,3095.0,816.9702,369.0,431.6666666666667,20802.45765879044,11538.602617000002,198.93018931333899,841.6951999999999,375.6707818930042,1033.255338,26354.387395137117,2477.0,766.6511000000002,332.0,316.11111111111114,20883.25428901856,9060.005165,176.429953734923,788.1514,292.33539094650206,984.5220419999999,22389.759700006995,810.5882352941176,4.435498039215683,0.5247568511847407,32.588235294117645,178.61002178649238,76.78922225213388,3788.392382039216,13.877548324762158,5.301517647058822,41.32613841146884,3.6660623529411756,2667.773732304172,11.083044982698947,0.6423707035755493,-0.16790159920846318,10.847750865051905,71.34537998205813,3.381068007707631,52.29335501730126,0.040402939827462084,0.4964930795847756,0.14714584292524377,0.2339242733564001,24.793620736064312,96.30795847750862,0.5620369473279523,-0.20756776262952423,3.3667820069204177,59.89598017856376,-24.875850350902,457.030143574779,0.7253100654917706,0.6319557093425601,6.921699683935006,0.11927005536332062,150.22225653577573,-20.861591695501733,1.0777871203383325,0.10705261347704395,1.6089965397923895,63.16241616472293,-9.426776871400305,-90.1458297816225,0.017892816491050012,0.7471865051903112,13.515834893090078,0.2464842006920388,102.36256377663096,173.31141868512103,0.24396562860438523,0.1077866303581582,0.017301038062284113,21.673715237729052,31.389556885761255,814.1832342560554,4.058984427599416,0.4405799307958477,6.835528990907263,0.2419955986159132,763.1828985697122,7.12110726643598,-2.1098876585928448,-0.1484168872285564,-4.055363321799306,-61.19466871716009,24.750796585074344,53.499302302191346,4.463395146911738,-1.9302051903114175,-23.21694568249313,-1.3272692214532913,577.8254053077765,56.173010380622806,-1.185869857747017,0.09553460831754414,-14.003460207612452,-103.59618095604256,-16.689431685351813,261.70860439715517,-0.32367592742690093,-0.7575712802768156,-10.624133959240119,-0.5081231314878921,-247.0225293334449,-178.07958477508652,-1.9658812379853858,0.06221773066830084,-8.90311418685121,-115.22632320902217,-31.95939465921173,-848.2022129634754,-5.103438985402716,-1.8307335640138387,-14.48968661942305,-0.8474569653979305,-1213.8650373676705,-48.397923875432504,-1.7047970396001537,-0.22886054355196156,-8.574394463667822,-54.751804861378076,9.250094487552925,-205.4912227062672,2.7150959009407427,-1.6824678200692045,-11.817772419492552,-1.2703829446366774,283.7781254457949,0.7083449299232516,0.6242851708102302,0.4374412347204712,0.33155297192622885,0.28289819458456494,0.18309257619767944,0.1767396083331224,0.09521255387996358,0.11141273394978965,0.05061675709834703,0.06888139610287829,0.026533640621512172,0.04303934285457727,0.012981969339544866,0.026859314966777383,0.006531967579513718,17.00314953091823,5.689360823663378,3.5438930273070337,2.1862871958027097,0.43701556167823385,-0.4132743742691059,3.2902028345862693,0.9778917904596471,6.02196123896562,0.7730684700014044,14.692417718464897,10.949973330250367,35.4525388048601,11.701068139231909,2.2139107064870056,0.7517165107658415,3.489166931824227,2.236749614342978,7.008271832538486,1.2973612558897414,3.7020600542453956,2.4327575236667105,22.458204860757313,14.702707421932427,0.2827459737511367,0.6023473823475486,0.74997277568022,0.8481095744227485,0.8612311570745267,0.8612311570745267,1.4842676751960546,1072.7318546646063,0.0,1.0,3.0,0.0,13.0,3.0,2.0,0.0,0.0,3.9823735096183914,2.072026426492765,1.1896281267266096,0.603037009846342,0.5246056372973236,0.5246056372973236,24.380976543290956,1275.7270401728342,47.54087922096265,25.014255689663422,53.01976000452572,,13.0,652.0,0.0,4.794537184071822,5.907179729351506,26.449214210756004,42.75198703591962,6.4208216229260096,22.880904140530014,36.19811799749159,10.524473205411422,34.802819670697545,15.076190476190474,38.0,19.0,1.5,19.0,0.0025396825396824716,0.0,0.0,0.17917833800186794,0.0693614881850183,-0.10981684981684964,0.017660010240655444,0.12100505712680254,0.0,0.6220354808590104,0.8474603174603171,0.44285714285714245,0.5526739926739921,0.8298003072196617,28.39658634530929,0.478652816597549,0.822652816597549,29.665348277350372,7.157121450515246,7.278439295260301,58.06193462265966,14.435560745775547,0.5929949428731974,0.19740998104864185,0.0,0.3515476942514214,0.2727272727272727,0.48221072061021286,-0.8977013480887329,-0.04285405187035472,-0.01760198721742614,-0.0472474393730912,0.5177892793897874,0.9639357116446929,0.026521182661057584,0.018900700228327315,0.030122990988896654,-7.205669905312797,0.5191702951136913,0.6088297050494191,1.3693030431281383,0.7387351250167135,0.5084223546812895,1.1384230390059822,0.5228278706325725,0.7939575494358695,0.5680239300079568,0.5483480063290562,0.5631906745866411,0.832434366716607,0.5827131519624495,0.8128509818499983,1.2662218071284097,1.0609493816729396,0.8116370381251308,1.2984797663834933,0.585289181318737,0.8132126365476751,0.7263676781244259,0.5371512519731071,0.7148398167104448,0.8558642972089481,0.8767527740062737,0.9604923864485625,1.091381098292541,1.0517351810876907,0.8989335581925537,1.107871303070144,0.8770520784099722,0.9145545015025676,0.9309225674449744,0.7335477064915235,0.9231421750037678,0.9157701079012077,0.761009169028037,1.1824605807353727,1.3894208654176778,1.0959257349149047,1.0912456392866725,0.9116954062768716,0.7620643436132769,0.7811008218779022,1.0442502467538584,0.9881381163735066,0.9929440070588871,0.8068770166747297,0.6500502400357263,1.5426196256410079,1.6672881775524024,1.2064549970687155,1.3601745390430708,0.9317366551862807,0.6510572377334389,0.7136793340902544,1.2601898641467775,2.2330005118616567,1.2423780698741844,0.7969824148318237,0.6695984118797155,1.2602403019928234,1.251785834229148,1.2743533132440255,1.3646800651597712,1.1501013388857113,0.6723447902829205,0.8827516612995479,1.0522014325284057,1.7430752284653448,1.0449081271174179,0.9412806570898229,1.0646306739494122,1.4000338346090986,1.1470777076444212,1.0482404166781492,1.2921512343397166,1.1684353669086092,1.0644507934863365,1.0980075414433375,1.27586971351105,1.7897869529534078,1.2872427578746584,1.1066642714926787,1.044043110486212,1.2313741916264682,1.1427273564787732,1.090788583032491,1.135998698647264,0.9036920167854234,1.0420634350397615,0.922546668788865,1.1882616003824653,1.222059364260043,1.1870482153545976,0.960616229529197,6.0,0.15661667176818692,3.555555555555557,2.666666666666667,2.256666666666667,1.5425,0.9126530612244899,0.7014597505668935,0.5155029604434366,0.12000000000000002,6928.335188846044,7567.103737774033,2993.4168224293026,2780.1227578069147,15.133188825562627,0.4558673460580212,8.23446219825849,0.8377871512681365,0.0,0.2727272727272727,1.6900518323531037,3.6003989154787304,4.482797215244886,5.069388332125153,5.147819704674172,5.147819704674172,0.18181818181818182,0.007118939625826678,0.07565011820330975,0.05442176870748299,0.0470138888888889,0.0314795918367347,0.01789515806322529,0.015249125012323766,0.014319526678984347,0.0037500000000000007,0.44871629883495817,23.168044077134986,10.29244001810774,5.333333333333333,190.05274129056806,0.0,4.337086516664666,165.83763738006584,,124.2615613651579,124.84748782471375,122.26565742215729,124.19742390021881,178.74940808786454,125.9740794779099,127.27153050210042,163.23009918243594,0.012913239800032237,0.13677910279790692,-0.30218515914134275,0.3143802647412756,0.3772562540828743,0.04158436304620317,0.013036708885172693,0.002749645050140636,0.08844828253643498,0.0033627887631348117,0.060263154066354366,0.008777430063985903,0.06446206342834203,0.06874874857607638,-0.21460711148544484,0.05605269221906449,0.18194250735890638,-0.1757599778075443,0.06545340028106168,0.028356542643036515,0.0646738556409308,0.09087203398146794,0.017651186192882733,0.030551153469010144,-0.01058511634439815,0.0999399410118107,0.0839049625186768,0.0203068592057762,0.14544587285485946,-0.050490706724487695,-0.009786765379943595,0.0005302912369145992,0.057966529436739286,0.13451370746953317,0.027652711998291477,0.01578122288486204,0.08654191720229454,0.02226311265550863,0.08313930864006243,0.00021488739900292714,0.049116472721654286,0.16545677195421554,0.08698949936788192,0.11838706880108858,0.03363753246916559,0.06694943783198994,0.02671820335003071,0.115792190306928,0.0038294071675784276,-0.2073486702690309,-0.12328479454960165,-0.054244191428306936,-0.1493454785884832,0.14049899779461708,0.006155700451301772,0.14019641325725524,-0.15870389371983804,-0.24488634751221366,-0.15781325975345706,0.09441303417906906,0.029208698676966245,-0.11268846018084275,0.07673392543919874,-0.18111704508160034,-0.24446839872731588,-0.09160645667822334,0.029117082210075286,-0.009830655077274238,-0.0602293389392593,-0.1083561380716133,-0.05841897388985802,-0.03902764788127676,-0.08552886692739782,-0.17254952445406943,0.04615884461565088,-0.10636040455259459,-0.25115669591221007,-0.16203064331363778,-0.08716523934440566,-0.14316902224770245,-0.13443854788960877,-0.13650012442190979,-0.08999464886293138,-0.17714148908952615,-0.023789572750362836,-0.15314065398297347,-0.17376928498525201,-0.10483416064981953,-0.12213856776487515,0.04799611734942335,-0.021612177617925745,0.07795296386039555,-0.12644648507974415,-0.1139386325310477,-0.13806862943768322,0.04238284734877104,12.417535915818178,23.30607066326269,11.088348467281469,21.154342202224957,39.13086297128319,45.44873884616136,48.76363249613393,50.193475633388836,50.193475633388836,61.34241881174289,45.64841624611871,8.604807554444934,1.7874805064242842,5.3017145047549565,15.694002565624176,10574.766625146634,8440.548306633445,2669.2973028289216,176.0,47.0,63.0,85.0,109.0,124.0,141.0,161.0,180.0,462.07809433200055,33.0,5.081404364984463,5.942799375126701,6.836259277277067,7.720905251936779,8.625329850020815,9.522593098362169,10.434204034999912,11.339607256129176,12.256047821581316,0.784313725490196,0.9840784313725492,1.1213284691157708,0.7571278615517476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7336462721615593,0.9794694348327566,1.011803264641618,0.6805571173716792,7.0,1.0,0.0,0.0,0.0,0.0,8.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,5.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.693927994848461,0.0,5.907179729351506,10.220328581182207,9.690715459099717,5.098681808301038,0.0,53.35637543054678,50.09721578785069,34.261682422701796,16.40394758327335,330.4453207607312,-615.1692553436762,-29.366665465828845,-12.062142261640712,-32.377329228614535,354.82629730402215,660.5577848291581,18.174213755133806,12.952113428022708,20.64243077591119,0.46153846153846156,0.9444773641708271,0.15220855691133472,25.86079105713566,0.1535597409089473,55.38185989556856,0.05552263582917302,7.0,0.12121212121212122,0.2979416617170872,0.6347194891819209,0.7902787511500072,0.8936897405446059,0.9075165197123612,0.9075165197123612,5.938620000000005,,2.7626050420168067,1.378208617041043,1.4691152654952107,2.8028205948610125,-2.453186674681103,1.4825716963884548,1.4388992906528904,-1.4264271018189125,121.65719999999999,4.794537184071822,0.0,20.21518866451114,0.0,26.186202068468653,13.08951281182515,68.7898489070007,0.0,16.944765761229018,4.204692619390966,0.0,5.541263545158426,2.3978952727983707,7.0707241072602764,4.844187086458591,8.687273461787838,7.050122520269059,10.3506382821314,39.99999999999999,12.628499550493599,4.652160100151171,0.0,0.0,0.0,0.0,5.0367104078335805,1.696776423532376,50.18800000000001,0.0,13.051259238263205,0.0,0.0,0.0,0.0,0.0,-0.22828749195151277,57.187751924904305,5.425791397110385,0.0,0.0,33.78608980857741,0.0,6.923737199690624,35.314381539395306,42.46456947923127,15.067899941223978,16.944765761229018,0.0,38.61352093913913,37.41595988023953,38.67297004755789,331.67527476013163,,248.33894906084802,249.6030950749581,244.4333738266149,248.20799309411353,358.3165450672895,251.84932084272725,254.44713438482393,326.93567406547817,38.67297004755788,331.6752747601315,,245.79280944809818,248.3747829810923,243.15302254276307,245.62414261810795,359.95200285041034,250.5077674891012,253.13517948293998,327.8866254666907,4.912606912705492,228.1678511650173,,173.41123255300192,172.33675090776825,168.38672888599513,173.36326964038932,260.71925846235274,174.36573662120205,176.45284031316288,234.53387779843425,1.289099001585263,11.055842492004388,,8.277964968694935,8.32010316916527,8.14777912755383,8.273599769803784,11.943884835576316,8.394977361424242,8.481571146160798,10.897855802182606,2.521364712524002,165.83763738006584,,124.2615613651579,124.84748782471375,122.26565742215729,124.19742390021881,178.74940808786454,125.9740794779099,127.27153050210042,163.23009918243594,49.95294117647059,0.0,1.8912506123848716,18.62056185095871,0.0,0.0,0.0,51.60196649672251,5.028895167000257,2.9956604570840684,0.0,0.0,0.0,1.9598470175830085,0.0,0.0,0.0,34.70841298595564,647.2235315708758,86.19264345000829,183.62034468941525,228.62265797748915,258.53880493838284,262.5388049383827,262.5388049383827,1149.0,140.7591503304184,38.048086493877435,80.14679689525494,50.160000000000004,50.160000000000004,0.8571428571428571,9.123173585183803,6.044394119358453,4.364927134294876,5.377171896184349,,5.371199147060708,5.363606884058572,5.363194312118918,5.371326034221568,5.366272782235864,5.365435148352391,5.366113659970909,5.36716114282145,0.14549757114316256,0.17923906320614497,,0.17903997156869028,0.17878689613528573,0.17877314373729727,0.17904420114071892,0.17887575940786213,0.17884783827841305,0.17887045533236365,0.17890537142738167,2.572213784646202,2.7807748547747564,,2.779663477113084,2.7782489635678846,2.778172039994433,2.7796871004527963,2.7787458746824654,2.7785897701946074,2.7787162219550274,2.778911406159869,321.2100000000009,398.80441634804583,197.1207549897688,,196.96424392656542,198.5529990864933,198.72610435497685,196.92740301050281,197.04189060313007,198.23293203291635,198.09841129981447,197.31225077611052,13.29348054493486,6.570691832992294,,6.565474797552181,6.618433302883109,6.624203478499228,6.56424676701676,6.5680630201043355,6.607764401097212,6.603280376660482,6.577075025870351,7.0870834007868675,6.382428799108247,,6.381634498021616,6.389668351074597,6.390539805313892,6.381447436851588,6.382028637456336,6.388055052326354,6.3873762226524935,6.383399791893273,1.696776423532376,13.051259238263205,8.224967236872034,6.419410745779795,-0.22828749195151277,12.628499550493599,3.3373273544349695,3.5828184249501587,0.0,381.62464098404774,226.44479963963263,-421.5580309930503,-20.124142360934844,-8.265843744961773,-22.18726478910791,243.15239088545243,452.6615020351462,12.454272867035238,8.875715726179338,14.14567193859832,2387.0,49.0,2.131355093184105,1.139148780514307,0.0,0.0,0.49163957204543496,0.15513795533085042,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.025,0.4680869713130692,0.19339098049822168,0.7934814176146864,0.24573089741563497,21.250347897697548,18.728555124306904,14.435560745775549,10.941248073565552,13.296215145474553,8.605351081290934,11.134595324986712,5.998390894437706,9.47008238573212,4.3024243533594975,7.508072175213734,2.892166827744827,5.336878513967582,1.6097641981035633,3.787163410315611,0.9210074287114343,4.875257088424828,2.067187129533141,8.15832568512028,2.8555262876141225,12.657222264621383,3.6579469605096513,101.3555729543998,58.5714007911934,41.32119995730797,32.96040296133424,30.368102719942588,30.368102719942588,160.0,190.0,62.48465299999999,26.315346999999996,0.49019607843137253,219.08,9.722222222222221,6.527777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,17.0,17.0,51.0,0.0,0.0,54.0,17.0,1.0,9.0,45.0,18.0,33.0,36.0,0.0,0.0,0.0,22.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,4.0,1.0,2.0,30.0,8.0,0.0,4.0,1.0,0.0,4.0,4.0,0.0,0.0,3.0,1.0,3.0,3.7727609380946383,7.920755778961639,4.385146762010125,4.975871301659915,5.582791173013852,6.116168025608939,6.501758779710694,6.906473207479581,7.319119619021291,7.709273283422142 +150310,COC(=O)[C@@H]1CC2=CC(=O)CC[C@]2(C)[C@@]23O[C@@H]2C[C@@]2(C)[C@@H](CC[C@@]24CCC(=O)O4)[C@H]13,0,21.3,6.145,3.6666666666666665,7.066666666666666,161.7216970283745,83.81048050000003,1.4021868524244998,6.2043599999999985,4.537037037037037,7.710609999999998,206.58771061163273,23.815384615384616,6.25,4.723076923076923,6.523076923076923,142.6218406994155,89.90085672307698,1.8149506046153852,6.404815384615384,2.6433760683760683,7.690574338461535,264.2785146966232,20.209302325581394,6.1382170542635635,4.333333333333333,4.844961240310077,150.05245696906772,75.35274121705426,1.5796080553211873,6.257369767441857,2.55770887166236,7.646899379844961,224.6884338510378,17.435897435897434,6.121794871794873,3.7435897435897436,3.4205128205128204,152.28498362138146,62.72980981025637,1.449025609092205,6.22862051282051,2.4682692307692315,7.662381764102563,200.96355937887094,14.231372549019607,6.036549019607843,3.066666666666667,2.7294117647058824,155.92151508885738,48.88753972549021,1.2890398476392824,6.125449019607844,2.3590413943355117,7.6196351372549,171.23759623850685,12.065517241379311,5.8389310344827585,2.5965517241379312,2.6,162.1725273864236,41.46420123103449,1.0879531285836517,5.904961379310344,2.2943247126436788,7.476676758620692,140.10030999473207,12.65843621399177,5.968477366255144,2.45679012345679,2.51440329218107,163.4872803978575,43.80774700411524,1.0591258588416625,6.02437695473251,2.6756973022405126,7.609330633744857,140.54579901577827,12.710659898477157,6.1876142131979694,2.3299492385786804,2.4923857868020303,163.54559737449696,42.687752223350266,1.0660845863114519,6.229137055837565,3.217569091934575,7.819199390862947,140.93402006798198,10.341317365269461,5.841676646706587,1.9940119760479043,1.7604790419161678,163.68310556919312,33.5661259281437,1.0063474931113836,5.899008982035928,2.485196274118429,7.5000251017964095,125.53164476206209,7.61,0.1425,0.018291165645664867,0.8888888888888888,4.176666666666666,1.3157611619122491,36.08587161,0.23233586361225006,0.13306399999999993,1.8419675925925927,0.09411395999999998,50.575792677543994,0.619230769230769,0.0025000000000001184,-0.009124807202753693,0.4495726495726496,1.5930769230769233,-0.0010594163586750617,2.942099065384608,0.003059856616326855,0.004101538461538636,0.000924145299145324,-0.0005636769230769419,2.8420412958470798,1.1155813953488372,0.017965116279069816,0.0013031505174713176,0.031007751937984395,0.2233333333333333,0.1714218037539346,5.297207879922477,0.031091976442114328,0.017261116279069844,0.1994568260120585,0.011285841550387593,7.268722295848302,-0.7510256410256411,-0.015141025641025567,0.00030570334234057147,-0.14529914529914534,-0.8730769230769232,-0.0672176058191457,-3.530122251538463,-0.012740748267734641,-0.014397333333333229,-0.10121972934472938,-0.00950841538461539,-3.6449638222108405,-1.7366666666666664,-0.02263725490196075,-0.0016298308492256005,-0.08366013071895428,-0.553921568627451,-0.18374832062911106,-8.241757870784314,-0.03595801955411079,-0.023052313725490128,-0.17293436819172112,-0.012553883137254897,-10.177364169315126,0.5955172413793105,0.013844827586206797,0.001429533988942373,-0.050957854406130286,0.4075862068965517,-0.061176476810960084,2.742917692068967,-0.00849770072768447,0.013622344827586098,0.07241379310344827,0.007839535172413828,0.4421169397940874,0.5397942386831276,-0.0017592592592592785,-0.0015613479975682104,-0.07407407407407404,-0.10135802469135811,-0.017472617041632395,2.579407770246914,0.0006470574790463107,0.0004749300411522288,-0.10258144718792869,-0.003749160000000001,2.5267951793037775,-1.2272588832487303,-0.006408629441624258,0.0025630808168192374,-0.07839819514946414,-0.6064467005076143,0.02215678420720726,-5.814962692233502,-0.002625446312463194,-0.009435776649746081,-0.011667019176536925,0.00017605827411162913,-5.095197621099242,-0.6501197604790422,-0.009715568862275524,-0.002692394742645283,0.021290751829674034,0.05946107784431135,-0.19330332967968955,-3.1288566501197583,-0.03317719900244459,-0.008866275449101886,-0.1420438290086494,-0.006918446227544884,-6.161841727321863,,,0.4666666666666667,0.8416666666666667,0.18333333333333332,0.0,0.6583333333333333,-0.475,1.4947589916823507,0.02361012988587614,0.040810129885876144,0.5893403765375951,0.11949345175761822,0.35403687043560883,2.084099368219946,0.47353032219322705,2.0720553054644926,1.6970759878371495,0.0,0.37497931762734305,0.0,0.37497931762734305,6.903403978000013,1278.0,368.7,220.0,424.0,9703.301821702471,5028.6288300000015,84.13121114546999,372.26159999999993,272.22222222222223,462.6365999999999,12395.262636697964,1548.0,406.25,307.0,424.0,9270.419645462007,5843.555687000004,117.97178930000004,416.313,171.81944444444443,499.8873319999998,17178.103455280507,2607.0,791.8299999999997,559.0,625.0,19356.766949009736,9720.503617,203.76943913643316,807.2006999999996,329.94444444444446,986.45002,28984.807966783876,3400.0,1193.7500000000002,730.0,667.0,29695.571806169384,12232.312912999992,282.55999377297996,1214.5809999999994,481.3125000000001,1494.1644439999998,39187.894078879835,3629.0,1539.32,782.0,696.0,39759.98634765863,12466.322630000002,328.705161148017,1561.9895000000001,601.5555555555555,1943.0069599999995,43665.58704081925,3499.0,1693.29,753.0,754.0,47030.03294206285,12024.618357000001,315.506407289259,1712.4388,665.3541666666669,2168.2362600000006,40629.0898984723,3076.0,1450.34,597.0,611.0,39727.40913667937,10645.282522000003,257.367583698524,1463.9235999999999,650.1944444444446,1849.0673440000003,34152.62916083412,2504.0,1218.96,459.0,491.0,32218.482682775903,8409.487188000003,210.018663503356,1227.1400000000003,633.8611111111113,1540.3822800000005,27764.00195339245,1727.0,975.56,333.0,294.0,27335.07863005525,5605.543029999997,168.06003134960105,985.1345,415.02777777777766,1252.5041920000003,20963.784675264367,456.6,8.549999999999999,1.097469938739892,53.33333333333333,250.59999999999997,78.94566971473495,2165.1522965999998,13.940151816735003,7.983839999999996,110.51805555555556,5.646837599999999,3034.5475606526397,40.249999999999986,0.1625000000000077,-0.59311246817899,29.22222222222222,103.55000000000001,-0.06886206331387901,191.23643924999953,0.19889068006124558,0.2666000000000114,0.060069444444446056,-0.03663900000000122,184.7326842300602,143.91,2.317500000000006,0.16810641675379998,3.999999999999987,28.809999999999995,22.11341268425756,683.3398165099995,4.010864961032748,2.22668400000001,25.729930555555548,1.4558735599999995,937.6651761644309,-146.45000000000002,-2.9524999999999855,0.059612151756411436,-28.33333333333334,-170.25000000000003,-13.10743313473341,-688.3738390500002,-2.484445912208255,-2.8074799999999795,-19.73784722222223,-1.8541410000000014,-710.7679453311139,-442.8499999999999,-5.772499999999992,-0.41560686655252815,-21.333333333333343,-141.25,-46.85582176042332,-2101.64825705,-9.169294986298253,-5.878339999999983,-44.09826388888889,-3.2012401999999986,-2595.227863175357,172.70000000000005,4.014999999999971,0.4145648567932882,-14.777777777777782,118.19999999999999,-17.741178275178424,795.4461307000004,-2.4643332110284963,3.9504799999999687,20.999999999999996,2.27346520000001,128.21391254028535,131.17000000000002,-0.4275000000000047,-0.3794075634090751,-17.999999999999993,-24.63000000000002,-4.245845941116672,626.7960881700001,0.1572349674082535,0.1154079999999916,-24.927291666666672,-0.9110458800000002,614.0112285708179,-241.7699999999999,-1.2624999999999789,0.5049269209133898,-15.444444444444436,-119.47000000000001,4.36488648881983,-1145.54765037,-0.5172129235552492,-1.858847999999978,-2.298402777777774,0.03468347999999094,-1003.7539313565507,-108.57000000000005,-1.6225000000000125,-0.4496299220217622,3.555555555555564,9.929999999999996,-32.281656056508155,-522.5190605699996,-5.540592233408247,-1.480668000000015,-23.72131944444445,-1.1553805199999956,-1029.027568462751,0.7034694509251859,0.5997698446074563,0.40588313330848036,0.32631873277894147,0.2440214443484752,0.18270459347728696,0.14538678421011142,0.1073850811595168,0.08386873840708482,0.060380862447367144,0.051085127519631894,0.033783281751944574,0.030545351527556774,0.019143963159680626,0.018137997548560315,0.010959486716746132,8.032179354791054,5.714369416246598,3.5588595371791154,2.213432930189185,0.43229193148521416,-0.500309190099933,4.123143352495749,0.9771391831330741,6.03156890600932,0.9950221329464668,13.646030623468093,10.974821157288416,16.017354654115497,11.725878188251675,1.972562004012308,0.7401412066612263,3.5050788038933547,2.263217346133078,7.010447388742566,1.0601757304621025,3.7179708231437063,2.459255758541836,20.878218050095544,14.699723650518886,0.2227975114241414,0.4976994927054718,0.7678333212001519,0.8844164563897184,0.8844164563897184,0.8844164563897184,1.4379925269282872,907.3722284431035,0.0,2.0,2.0,0.0,2.0,9.0,1.0,5.0,2.0,4.545926548164838,2.866681072291056,1.216561974328183,0.5044110417748406,0.5044110417748406,0.5044110417748406,183.137776976138,1408.549147550015,63.48345075992414,23.47581912583358,49.90659778904464,,12.0,600.0,11.202101621967376,14.383611552215466,52.40952098729467,19.26246486877803,37.67721264469931,7.109797541277533,6.076020106833881,0.0,13.847474399381248,14.210588861400147,14.0,25.25,5.5,0.0,19.75,0.0,0.03333333333333333,-14.25,0.1266666666666666,0.008924731182795798,-0.1177419354838708,0.0,0.16712499999999975,0.0,0.5766666666666663,0.8533333333333329,0.44999999999999973,0.5677419354838705,0.8533333333333329,44.842769750470524,0.7083038965762842,1.2243038965762842,17.68021129612785,3.5848035527285464,10.621106113068265,62.522981046598375,14.205909665796812,0.5468750000000002,0.17857142857142858,0.14285714285714285,0.2857142857142857,0.7916666666666666,0.3423158857425077,-0.8303076882641877,-0.07844018394588868,-0.013838461471069794,-0.04884162872142281,0.6576841142574924,1.595252219547835,0.030880043353715022,0.026587536992463915,0.037098888826693835,-4.220327931767017,0.7812594763974526,0.6210526315789472,1.4286165172693346,0.8764903846153846,0.4255939591135123,1.2304719837339357,0.7913173545974724,1.2037387545432916,0.6141541490734359,0.5159403701874137,0.6535553280299756,1.0564691584032921,0.7607713908328154,0.624529670429303,0.8734066377187757,1.543604651162791,0.8796872003316074,1.0008743940972527,0.7672340218570696,0.9915224518701586,0.6273733503692963,0.44977445993961757,0.6323448375159864,0.9215472889163085,1.0304143221357414,0.957942720047983,0.9527744644727218,1.5884615384615386,1.1723453455297033,1.1452631711137513,1.0336624084829278,1.141502201834622,0.9602453044894277,0.7743288133747207,0.960301890125691,1.109292002863193,1.1776386419657656,1.053218667583992,1.0053362279179008,1.1040808823529413,1.036837081201196,1.180220502342733,1.1803481955036315,1.1921135824432945,1.069115323738265,0.8254966521061065,1.030083986873519,1.2125941552105912,0.8844608576132433,0.7521637426900581,0.7679578241809562,0.9651077586206898,0.8057558411536453,1.002909558378912,0.8890465376844311,1.004644804917376,0.7619652473859265,0.6603638082056079,0.743728416451519,0.9813639615141113,0.9372144081590715,1.0673188458113732,1.112638933708716,1.0243055555555556,1.0575195662098211,0.9535202878220357,0.934661059877053,0.9392916082443696,1.0495293857790269,1.1888798540398677,1.0941656375156674,0.9104739861538822,1.2164008529163914,1.35156885445424,1.144711861708565,0.9630552030456854,1.2859289988292062,0.9248571923937634,1.2092034349605398,0.9391647095831056,1.3520210253646379,1.3179219400810707,1.3363645474068635,1.029357690792997,1.0677724708270713,1.0016178169975833,1.0950616284554358,0.6756736526946109,0.9086097557478819,1.0791631399852872,1.0693607394094975,1.084542060167706,1.009455267304626,1.0241326628785332,0.9907165258907601,1.0915304344744898,10.0,0.04601367207427813,7.444444444444446,4.902777777777778,3.9577777777777783,2.302777777777778,1.5700680272108842,0.7170847505668934,0.38097600151171573,0.18564043209876543,6781.982420264354,7802.443353280603,2942.5635896816434,2648.6121185379525,12.470382217261005,0.4839786637275483,6.434983295579243,0.9379043650086877,1.0,0.7916666666666666,1.3609640474436813,3.0402095233174626,4.690328621280336,5.402479553833678,5.402479553833678,5.402479553833678,0.2857142857142857,0.006573381724896876,0.13060428849902536,0.07105475040257649,0.05996632996632996,0.0377504553734062,0.029075333837238596,0.017927118764172335,0.01465292313506599,0.01160252700617284,0.6649213944231704,20.59591836734694,6.315555555555555,2.395654142145767,176.23353169424385,1.0,4.423684915661701,138.24548389455308,,126.31156951449708,125.56364092977805,127.9354123840175,126.3269940999027,151.46739701608033,126.12854509782143,126.34318419686275,140.55214569957835,0.08137066612756491,0.01754385964912364,-0.4988641718914363,0.5057692307692309,0.3814230462275156,-0.0008051737574738632,0.08153049750831856,0.013169971130386957,0.030823802542675992,0.0005017163726776418,-0.005989301938595953,0.056193707411905096,0.14659413867921645,0.1260709914320689,0.07124480433428108,0.03488372093023245,0.053471667996807665,0.13028337415340663,0.14679451108102187,0.13382340530088951,0.1297204073158018,0.1082846553946807,0.11991676421210622,0.14371939441842232,-0.09868930893898042,-0.1062528115159689,0.016713168983466357,-0.16346153846153852,-0.2090367732825834,-0.05108647964760993,-0.09782560581300209,-0.05483763061650237,-0.10819856109340795,-0.05495195993229247,-0.10103087134592353,-0.07206933651935088,-0.22820849759088915,-0.15885792913656668,-0.08910481052976968,-0.09411764705882357,-0.1326228815548566,-0.139651728556923,-0.2283929278432722,-0.15476740867747324,-0.1732423023920079,-0.09388567360640357,-0.13339023389574617,-0.20122994876625921,0.07825456522724185,0.0971566848154863,0.07815434055079931,-0.057327586206896576,0.09758648209813689,-0.04649512280940853,0.07601084772769792,-0.03657507108702965,0.10237438245946391,0.03931328292346606,0.08329832441875605,0.00874167099293711,0.07093222584535185,-0.012345679012345815,-0.08536077075756299,-0.08333333333333331,-0.024267683485560604,-0.013279474685389507,0.07147971367087935,0.0027850090338450624,0.003569185062467903,-0.05569123343996731,-0.039836385590405525,0.049960565035804025,-0.16126923564372278,-0.0449728381868369,0.140126707421006,-0.08819796954314717,-0.14519873116702658,0.016839518332495775,-0.16114236494213094,-0.01130021974069769,-0.07091156623689418,-0.006333998070028718,0.0018706924468126639,-0.10074380155709443,-0.08542966629159555,-0.06817943061245982,-0.14719645509762244,0.02395209580838329,0.014236491103985163,-0.14691369169063628,-0.08670586327898756,-0.14279844052752302,-0.06663166182515098,-0.0771152704205403,-0.07351137097562238,-0.12183381418474068,8.894314380356494,20.08025249197259,8.445122608412662,12.169824098087133,31.76120078291519,39.08057783151951,40.29812597153328,40.29812597153328,40.29812597153328,62.16165916393477,50.91227963511449,0.0,11.249379528820292,0.0,11.249379528820292,5526.00820978038,4609.995487264176,1681.0506226393854,656.0,60.0,94.0,142.0,209.0,284.0,368.0,473.0,579.0,414.2042386800008,35.0,5.25227342804663,6.22455842927536,7.233455418621439,8.239857411018601,9.2596066132791,10.279489520493652,11.305421475643698,12.331863532588086,13.361366104546041,0.6166666666666666,0.9800000000000001,1.1247610188005652,0.575164432603447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6476625748502994,0.9662745098039216,1.0050254916241808,0.6069368613881542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,8.0,0.0,3.0,0.0,4.0,0.0,4.0,0.0,0.0,14.210588861400147,11.202101621967376,5.783244946364939,0.0,0.0,14.383611552215466,0.0,0.0,0.0,19.420578929450514,50.518855890551336,29.58953023080697,19.13166997518723,198.7865760406545,-482.16874905543744,-45.55107209465405,-8.036145817590624,-28.36286759149632,381.9243530167925,926.3803984945775,17.93237866527009,15.43967330824296,21.543730197548314,0.5,0.7264742259414434,0.19326441852221354,16.48452377780926,0.12734665926351976,7.049177506249818,0.2735257740585568,6.0,0.02857142857142857,0.23040278559678942,0.5146886461004895,0.7940435911860909,0.9146063341430692,0.9146063341430692,0.9146063341430692,3.124500000000002,,1.5,1.714285714285714,1.0388051152698072,1.4955934745921624,-6.493765586034913,1.552325581395349,1.4909688013136289,-2.393966868348154,105.15300000000008,28.59420041361561,0.0,0.0,28.583699077277736,82.52011539250502,7.109797541277533,11.64912463690315,0.0,0.0,4.2626798770413155,1.9459101490553132,5.739792912179234,4.394449154672439,7.440146680662688,6.665683717782408,9.255600503381046,8.84980082722101,11.14013565699855,36.99999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.800000000000004,0.0,37.37776316610845,0.0,0.0,0.0,1.7835725350937743,0.0,0.9145934283569574,67.48566112803391,0.0,0.0,0.0,42.137721073261844,28.59420041361561,28.583699077277736,65.21404738278933,11.64912463690315,0.0,0.0,0.0,34.509865956206816,38.859754491017966,39.4589929951899,276.49096778910615,,252.5231390289942,251.01299614527034,255.80157109368366,252.55428196816592,305.1359337943678,252.15360182354982,252.5869704736379,281.9022803552728,39.4589929951899,276.4909677891061,,251.12313902899433,249.41299614527037,254.83201965276524,251.1583947252132,309.4285596181956,250.7047646142476,251.1953995924119,283.498258267505,5.43960521194419,192.57271900438013,,178.79123913965591,177.90292964706302,180.72330921095875,178.809569184596,207.74857029044605,178.5737714094367,178.82880939128853,195.91467746402344,1.3152997665063302,9.216365592970204,,8.41743796763314,8.36709987150901,8.526719036456122,8.41847606560553,10.171197793145593,8.405120060784993,8.419565682454596,9.396742678509094,2.814506642039103,138.24548389455308,,126.31156951449708,125.56364092977805,127.9354123840175,126.3269940999027,151.46739701608033,126.12854509782143,126.34318419686275,140.55214569957835,57.976470588235294,0.0,5.959724457282403,0.0,0.0,0.0,0.0,60.301529497450844,5.794325050650809,0.0,17.925678473345773,0.0,-0.01465561224489842,0.0,-1.2410014985932645,0.0,0.0,36.41621168328925,421.8715226827452,81.65784284662088,182.41257139904775,281.41971727682017,324.1487732300207,324.1487732300207,324.1487732300207,2930.0,148.48789193351263,158.83940637470187,89.694199478994,82.2,82.2,1.0,8.285008895449879,6.129283016944966,4.462074127498536,5.3834510683655985,,5.404410353048358,5.405394099003978,5.402083191433219,5.404389450839019,5.35553714164756,5.404656511675171,5.404367485202661,5.378240561846112,0.1487358042499512,0.17944836894551994,,0.1801470117682786,0.18017980330013258,0.18006943971444062,0.1801463150279673,0.17851790472158535,0.18015521705583903,0.1801455828400887,0.1792746853948704,2.5942259976060167,2.7819419197141455,,2.7858276409402025,2.7860096508854704,2.785396944037172,2.7858237733120257,2.776743294100958,2.7858731876335363,2.785819708897128,2.7809735762407066,301.880000000001,333.51064416099405,210.86584507950195,,207.66351715132652,207.48878639810434,208.0482170928705,207.66713852615734,213.99935836518438,207.62060018642362,207.67094037044677,211.1296778173808,11.117021472033136,7.028861502650065,,6.922117238377551,6.916292879936811,6.934940569762349,6.922237950871912,7.133311945506146,6.920686672880787,6.922364679014892,7.037655927246027,6.9082870700391865,6.449834414623847,,6.434531352466955,6.433689585423652,6.436382154451451,6.434548790981456,6.464585305391935,6.434324665221939,6.434567098208666,6.451084820175277,17.925678473345773,37.37776316610845,0.0,-0.17479091868228758,-0.20061091572635537,0.0,7.61223573767202,4.509959083942219,1.4497653733401838,391.71687655184246,115.43753725671729,-280.00066222645006,-26.452005395649298,-4.666677703774168,-16.470627189791184,221.7876458700459,537.9592218703941,10.413528274918933,8.965987031173233,12.510679578381255,1996.0,69.0,3.6635728676741457,2.5425618359464073,0.3514380579791289,0.27550214744425566,1.8428110609035764,1.2949390863321981,0.6321457380241039,0.40965258437211943,0.2041241452319315,0.11785113019775792,0.3642507701111301,0.21030028017618946,0.83006650684579,0.4972888010413005,1.8681793427463649,1.1215418467864064,3.608145106457086,2.126117418737453,21.104083527755577,17.99309533822369,14.205909665796813,11.421155647262951,14.641286660908511,10.962275608637217,13.666357715750474,10.094197628994579,11.909360853806044,8.574082467526134,10.676791651603066,7.060705886156416,8.674879833826123,5.436885537349298,6.674783097870195,4.033091111762577,9.87743707036099,6.99356450514643,17.58504225472372,12.113496960373292,31.816274235439526,20.429846376844583,107.08831312097139,48.82025082093388,29.50923173023039,23.956166749271823,23.956166749271823,23.956166749271823,190.0,252.0,64.89578999999998,37.90821000000001,0.36666666666666664,355.06,10.13888888888889,6.124999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,6.0,0.0,0.0,0.0,60.0,0.0,0.0,65.0,0.0,4.0,4.0,61.0,4.0,35.0,61.0,0.0,0.0,0.0,24.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,6.0,0.0,2.0,30.0,6.0,0.0,0.0,6.0,0.0,6.0,1.0,0.0,2.0,0.0,0.0,0.0,3.6888794541139363,6.883462586413092,4.248495242049359,4.709530201312334,5.135798437050262,5.575949103146316,5.8998973535824915,6.184148890937483,6.452048954437226,6.71901315438526 +4369359,N[C@@H](CC(=O)N1CCn2c(nnc2C(F)(F)F)C1)Cc1cc(F)c(F)cc1F,0,32.23255813953488,7.740337209302324,3.8372093023255816,14.279069767441861,182.91743806270316,133.16397876508427,1.3917742226217442,7.668,12.372900516795864,8.878723534883719,226.45935515392773,30.2,7.000175555555556,4.555555555555555,10.933333333333334,156.64057925745104,118.5045663335823,1.7080489028888899,7.100313333333334,4.179012345679012,8.270881244444439,272.2072472505858,27.925,7.20866,3.9125,10.075,167.88973588229243,109.84766416207637,1.446240691863675,7.242718749999997,6.329513888888888,8.465651449999996,229.82215445023226,22.8,7.024502857142857,3.2285714285714286,7.4,172.16670328865797,86.81288649530829,1.2781167707951426,7.0422409523809515,5.163624338624339,8.366621295238096,195.23451130961166,20.017241379310345,6.875550000000001,2.7672413793103448,6.163793103448276,173.10303805680456,75.14834789941527,1.121322657088638,6.8882396551724145,5.119252873563218,8.282458551724137,169.18166268208194,18.601941747572816,6.932699029126214,2.6699029126213594,4.815533980582524,176.573374458128,68.48115395261523,1.0727478320639223,6.931114563106795,5.05663430420712,8.359440155339806,161.32826384240883,17.53125,7.07634375,2.5104166666666665,4.979166666666667,182.58722056633167,62.75950825084998,1.0358466161670525,7.053144791666667,4.931712962962963,8.488298875,154.82525365661044,18.0,6.6573108433734935,2.6987951807228914,5.759036144578313,175.94751225387503,67.14327657042891,1.0570866386467226,6.664702409638555,4.69561579651941,8.118684000000004,155.98184705093468,23.545454545454547,7.319346969696968,3.0,7.757575757575758,177.51036514247332,90.1048022503515,1.1699880254362418,7.301493939393941,7.329966329966329,8.649729393939392,185.42165926329994,8.833964305029747,0.40631746890210907,0.025606056060693806,0.7950243374797188,6.2293131422390475,4.125217753037358,43.43443636526609,0.2290937363313034,0.3503459167117361,5.858534643350759,0.23238843482963764,41.09478402626425,0.06681088876870438,-0.019546047713478763,-0.012424872582183147,0.07836067544017786,1.5184904753320114,-0.4521926716683974,0.29957775842582496,-0.011765099968486823,-0.014729637641968638,-0.2721687231670105,-0.012413546974340443,-0.13849018416710726,1.2584775554353704,0.07512131016765816,-0.002962154601066589,-0.06566387236343971,1.1369659275283939,0.15814967407213104,6.416385525825412,-0.00532698528167926,0.06635981003244998,1.3530973010936844,0.04170441051919956,0.41638270023036555,-0.10040948775399838,0.03194862190630712,0.002653359151330899,-0.07475855674882176,0.2639315975173197,0.43489832923514005,-0.25080474991650104,-0.007727739005545929,0.025870318061242896,0.22696123458697834,0.01762811179273226,-2.784988579767379,0.42305253538725474,0.019618958523712718,0.0009632310993316479,-0.09975569273232503,0.1742554223158838,-0.34297317858586107,2.226675418316499,-0.03844435666610071,0.018958052815128416,0.016136790312253416,0.006923884336360784,-4.477788622245526,-0.6420473937630943,-0.03041749148056938,-0.0014125089772150056,-0.011551770308799829,-0.9351158064973458,-0.34842659275389787,-2.965641035121164,-0.011042718584496685,-0.02610369499125739,-0.47820675393504036,-0.018832610941626783,-2.1179288745682063,-2.151551514332071,-0.08495337006489988,-0.0006126163834361598,0.08385163151252928,-0.979797638363079,0.20797815638247133,-10.952755498121249,0.014677352432411696,-0.07818523357220114,-1.27788454375989,-0.044114571457544605,-2.131696643825608,2.1764027445639775,0.037560059817420006,0.0008695688767097627,0.004079052825688896,1.0584425316191757,-0.06981244152339942,10.527780397230378,0.012536764339144614,0.03764503313415914,0.35491022137947875,0.017476034769689938,7.977877216636658,0.25764950751429916,0.026951276693380537,-0.0007699343678305023,-0.03603913663405282,-0.35616303653080267,-0.1497967150481408,1.2935123921656595,0.010624659241549303,0.023406232689250524,0.9699121305901998,0.02261403592441451,1.0554982225332985,,,0.43027210884353745,1.1428571428571428,0.4642857142857143,0.05357142857142857,0.6785714285714286,-0.21428571428571427,0.8736174296461575,0.030594441023907275,0.03980872673819299,1.0379129933419995,0.23721913307629514,0.2291226245559796,1.9115304229881571,0.4663417576322747,2.0012550326204375,1.198200242224551,0.3694712020183188,0.06354327573385095,0.3700403126437169,0.8030547903958868,9.467862312093033,1386.0,332.83449999999993,165.0,614.0,7865.449836696235,5726.051086898623,59.846291572735005,329.724,532.0347222222222,381.7851119999999,9737.752271618892,1359.0,315.0079,205.0,492.0,7048.826066585297,5332.705485011204,76.86220063000005,319.51410000000004,188.05555555555554,372.18965599999973,12249.32612627636,2234.0,576.6928,313.0,806.0,13431.178870583393,8787.81313296611,115.699255349094,579.4174999999998,506.3611111111111,677.2521159999997,18385.77235601858,2394.0,737.5728,339.0,777.0,18077.503845309086,9115.35308200737,134.20226093348998,739.4352999999999,542.1805555555555,878.4952360000001,20499.623687509225,2322.0,797.5638000000001,321.0,715.0,20079.95241458933,8717.208356332172,130.07342822228202,799.0358000000001,593.8333333333333,960.765192,19625.072871121505,1916.0,714.068,275.0,496.0,18187.057569187185,7053.558857119368,110.49302670258399,713.9047999999999,520.8333333333334,861.022336,16616.81117576811,1683.0,679.3290000000001,241.0,478.0,17528.37317436784,6024.912792081598,99.44127515203704,677.1019,473.44444444444446,814.876692,14863.224351034603,1494.0,552.5568,224.0,478.0,14603.643517071629,5572.8919553456,87.73819100767798,553.1703000000001,389.736111111111,673.8507720000002,12946.49330522758,1554.0,483.0768999999999,198.0,512.0,11715.684099403239,5946.916948523199,77.21920967879196,481.8986000000001,483.7777777777777,570.8821399999998,12237.829511377797,379.8604651162791,17.47165116279069,1.1010604106098336,34.18604651162791,267.86046511627904,177.38436338060637,1867.6807637064417,9.851030662246046,15.064874418604651,251.91698966408265,9.992702697674419,1767.0757131293626,3.006489994591697,-0.8795721471065443,-0.5591192661982416,3.5262303948080036,68.33207138994051,-20.348670225077882,13.480999129162123,-0.529429498581907,-0.6628336938885887,-12.247592542515473,-0.5586096138453199,-6.232058287519827,100.67820443482964,6.009704813412653,-0.23697236808532712,-5.253109789075176,90.9572742022715,12.651973925770482,513.3108420660329,-0.4261588225343408,5.308784802595998,108.24778408749475,3.336352841535965,33.31061601842924,-10.54299621416983,3.354605300162248,0.27860271088974436,-7.849648458626285,27.71281773931857,45.664324569689704,-26.334498741232608,-0.8114125955823226,2.716383396430504,23.830929631632724,1.8509517382368874,-292.4238008755748,49.07409410492155,2.275799188750675,0.11173480752247116,-11.571660356949703,20.213628988642522,-39.78488871595989,258.2943485247139,-4.459545373267682,2.1991341265548963,1.8718676762213962,0.8031705830178509,-519.423480180481,-66.13088155759871,-3.133001622498646,-0.14548842465314557,-1.1898323418063823,-96.31692806922662,-35.88793905365148,-305.4610266174799,-1.1374000142031586,-2.688680584099511,-49.255295655309155,-1.9397589269875588,-218.14667408052526,-206.54894537587884,-8.155523526230388,-0.058811172809871345,8.04975662520281,-94.06057328285559,19.96590301271725,-1051.46452781964,1.4090258335115229,-7.5057824229313095,-122.67691620094945,-4.234998859924282,-204.6428778072584,180.64142779881013,3.1174849648458607,0.0721742167669103,0.3385613845321784,87.85073012439157,-5.794432646442152,873.8057729701213,1.040551440149003,3.1245377501352083,29.45754837449674,1.4505108858842648,662.1638089808426,17.004867495943746,1.7787842617631153,-0.05081566827681315,-2.378583017847486,-23.506760411032975,-9.886583193177293,85.37181788293353,0.701227509942254,1.5448113574905347,64.01420061895318,1.4925263710113577,69.6628826871977,0.7370522758062569,0.5110651604717964,0.43525230712345647,0.2739975158493385,0.29475846989793825,0.14290177252163225,0.17924473794583548,0.07799438271720661,0.11418625195719724,0.04237347490015908,0.07331942527503353,0.023505213657128553,0.04675700934163723,0.012624260029366218,0.030020422173174077,0.007143223490670959,9.015290428750365,5.692463546309532,4.125375726263196,2.191234042842915,0.5460982028849993,-0.4125771184414098,4.022247996775153,0.977771610208333,7.015281205472805,1.8967667643605048,17.43245415865594,10.953586843848544,19.007456996842887,11.704374572576329,1.9861731948475416,0.5266918493495947,4.007955405192849,2.2409472485240887,8.009250563692666,1.2198416977729811,4.031361018228024,2.43658775876791,20.891707488605217,13.301099087240365,0.3427704467027878,0.6847117253475966,0.81102099301889,0.8797126941998377,0.8879122957993205,0.8879122957993205,1.4707103571396818,896.3804853871782,0.0,3.0,4.0,0.0,5.0,3.0,1.0,0.0,0.0,3.4819249863463146,1.5422886118953647,0.8258087210308593,0.4361601744689185,0.3896485465619417,0.3896485465619417,-56.75795756985366,1538.8493137848434,75.8827416829085,35.78719334383357,81.08863128317213,,15.0,696.0,41.40138609708055,31.137027470120742,43.86376845328667,12.13273413692322,4.567099647791355,4.899909730850478,0.0,0.0,10.197363616602075,5.733667477162185,12.04761904761905,32.0,13.0,1.5,19.0,0.0,0.06972789115646252,-6.0,0.34028792912513806,0.058810766831649874,-0.2814771622934882,0.04917233560090695,0.29931388297000466,0.0,0.7802879291251379,1.037585034013605,0.43999999999999984,0.721477162293488,0.9884126984126981,24.461288030092412,0.8566443486694038,1.1146443486694038,29.061563813575987,6.642135726136264,6.415433487567428,53.5228518436684,13.057569213703692,0.4146861170299953,0.2031620553359683,0.04150197628458498,0.39841897233201573,0.4375,0.5485859983346203,-1.4452906117891164,-0.09712460881297774,-0.033611409576491086,-0.09635270745260777,0.4514140016653796,1.1892837597345518,0.03278981795245766,0.027657761854291908,0.04247441999051971,-4.506294105788497,0.5700338761683197,0.5867611807920959,1.6605183387574227,1.0647619047619048,0.33624471841176135,1.0594269607109519,0.5638210020355944,1.1638912927711373,0.5645923820532676,0.5938684633975908,0.6117336271886986,0.9778644577917981,0.6219389004530427,0.5318916290975013,1.1176065249109781,1.1517857142857142,0.5830927678416392,0.8926367488041612,0.6118595274626539,1.0484235327015219,0.5205018496746475,0.47059772609255907,0.5426090282123454,0.9604071205395853,0.8819027794783886,0.6542747387462214,0.870673868244541,1.0296598639455783,0.7944434797707935,0.7139436825139902,0.8680239405148364,0.9922674113635661,0.6628558408470898,0.677157583644791,0.6563925895169974,1.0650990868858974,0.9288574076497933,0.7514769979771102,0.796577727639094,1.0220443349753694,0.897533695385334,0.8613343147126802,0.9172241954487073,1.1243474176718118,0.7567220341189538,0.8021679746521759,0.7713029603299936,1.1602064481592274,1.0970814347581612,0.9398164207378455,0.9703807299944985,0.9423023578363384,1.113570654290372,0.8704886447239922,1.0848764830908946,0.9809975937103996,0.9517885997408412,0.9655115459273089,0.9474985600921773,1.0888648192990718,1.3124062538263743,1.1961852406090399,0.881485096445444,0.7230654761904761,1.1759854141343984,0.8434332226036865,1.3198298070051309,0.8645935266366447,1.2194880531039705,1.1884762231788548,1.1640635148393959,1.0646678085563406,0.8106020260790928,0.6782254271150657,0.8565594103241815,0.9399311531841652,0.7943805086642803,0.6923147913077816,0.8045185236115745,0.8541276331728778,0.6844129525560216,0.6774459348288292,0.679415872230157,0.9045624224365169,0.9306048732704786,0.8292414979457509,1.0369118581018375,0.9865800865800866,1.0144359026977539,0.901385542799093,0.9224668351434561,0.884518582281029,0.832511239339552,0.7530451255553349,0.8096973151555446,0.9350844965335336,8.5,0.16437302316090197,4.444444444444446,2.6597222222222223,2.3077777777777784,0.8055555555555556,0.7796825396825398,0.4739583333333333,0.2965639959687579,0.2725000000000001,6317.278681822572,6819.870068485194,2798.081549000749,2642.0773797001157,13.230924126456639,0.41470095779667576,7.744047218679925,0.7085283383269484,1.0,0.4375,1.9443397683557833,3.883976142806733,4.600456033671239,4.990104580233179,5.036616208140156,5.036616208140156,0.2833333333333334,0.00714665318090878,0.09876543209876548,0.05910493827160494,0.05628726287262873,0.02441077441077441,0.027845804988662133,0.017554012345679014,0.010591571284598495,0.011847826086956524,0.5968876088739118,22.68,9.013333333333334,5.389030612244898,154.48354340992924,1.0,4.26022369932573,168.05756175321207,,139.56597411148206,136.81888942748415,135.59409649569093,139.12145023043993,204.1629927997883,138.37275009174965,139.952050939114,173.56280692804273,0.007562956614015819,-0.04810535900977431,-0.4852317964442702,0.0985638699924414,0.24376531419420816,-0.109616679346309,0.006897240611262844,-0.05135496132235039,-0.04204312634843167,-0.0464567916272225,-0.05341723215890984,-0.003370018542465055,0.14245898126607076,0.1848832893418042,-0.11568179785459426,-0.082593537414966,0.18251866643514503,0.038337291154069864,0.1477257692920474,-0.023252426569950614,0.18941225476605367,0.2309617307852578,0.1794599225635853,0.010132251819701732,-0.01136629991778762,0.07862970300694667,0.10362232844611702,-0.09403304178814384,0.04236929361082863,0.10542433279186988,-0.005774329562086043,-0.03373177778361638,0.07384221372994891,0.03874027353317297,0.07585623529697295,-0.06776987994358247,0.04788931908479453,0.04828480197202489,0.03761731588216904,-0.1254750175932442,0.02797345683817236,-0.08314062411210493,0.051265208084918086,-0.16781059701477166,0.0541123841061549,0.002754407252770645,0.02979444455330419,-0.10896245663156932,-0.0726794190686887,-0.07486139240520233,-0.05516308227502698,-0.014530083878211485,-0.15011539557332804,-0.08446259412545065,-0.06827856611701645,-0.04820174816358699,-0.07450834659715888,-0.08162565949452719,-0.08103936392287697,-0.05153765677937639,-0.24355447226643806,-0.20908126420074505,-0.023924667742040426,0.10547052154195008,-0.1572882300167853,0.05041628559591528,-0.252167552170195,0.06406701757740803,-0.22316581938796162,-0.21812357894140752,-0.18983118282062827,-0.051872681517518414,0.2463676181400021,0.09244017964304917,0.03395950062159636,0.005130726989590999,0.1699132002920521,-0.016923334888684895,0.24238326264201965,0.0547232959744242,0.10745104006773225,0.06058003288967318,0.07520182655604828,0.194133572074205,0.029165785441039496,0.0663305881634976,-0.03006844810483636,-0.04533085961657392,-0.057175330313027795,-0.036312438279857334,0.029780802985164632,0.04637690847289022,0.06680892104847658,0.1655554143886505,0.09731136552037412,0.025684481559964275,5.205104853180942,15.774170209435148,6.55346931751347,21.515539113779273,41.99873186622349,45.47294422845456,48.13465010673599,49.01827801371274,49.01827801371274,56.035140913372246,33.54960678228743,10.345193656512926,1.7792117205478266,10.361128754024072,22.48553413108483,8725.626103096965,7889.612281969886,1577.1935751440988,94.0,45.0,56.0,71.0,85.0,88.0,95.0,102.0,90.0,407.1180794200004,30.0,5.017279836814924,5.8664680569332965,6.769641976852503,7.638679823876112,8.538758969330798,9.416459832284596,10.31516664711076,11.197872195722315,12.096151747116016,0.8062015503875969,1.0832558139534885,1.187474651115289,0.7886577211199813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6456746274892077,1.0608299133606929,1.0708175951489693,0.6615733341538111,2.0,2.0,0.0,0.0,0.0,0.0,6.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,6.0,1.0,0.0,5.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,15.20067685580402,5.817220841045895,17.45884618009172,11.731584227351433,0.0,4.794537184071822,13.171245143024459,13.171245143024459,10.197363616602075,0.0,18.050640183084614,31.618542332360732,6.544756405912575,320.4279204314046,-844.1911870892037,-56.73027842331663,-19.63235318812102,-56.27941247261358,263.6699628615509,694.6581266956397,19.152463259591872,16.154840155712552,24.80921881055856,0.4666666666666667,0.7424136015236169,0.12651184869446377,6.087435176352257,0.17126832372343473,1.1034568281486814,0.25758639847638287,8.0,0.13333333333333333,0.35832010715491297,0.7157734313352655,0.8478126743971975,0.9196205503811868,0.9281921240160105,0.9281921240160105,2.0164999999999997,,2.964285714285715,3.555516462563415,3.4216012742657886,3.1685003090144583,-15.662431362429569,3.2204208773364993,2.8308097657793634,-5.275575611079413,83.05340000000001,31.137027470120742,0.0,19.66437299524391,5.733667477162185,38.14929540426861,6.544756405912575,46.79665714775775,0.0,0.0,4.110873864173311,0.0,5.484796933490655,2.3978952727983707,7.029087564149662,4.727387818712341,8.653296274408579,6.86171134048073,10.320584744874001,34.666666666666664,1.0753388043236387,6.5954664399086305,0.0,0.0,0.0,0.0,-4.8476550905344675,0.9031519577152765,46.580000000000005,0.0,12.35664668104896,0.0,0.0,0.0,0.0,0.0,-0.4737958763752401,51.061409997957426,5.733667477162185,26.34249028604892,0.0,38.15814995965595,30.481170136266456,17.451662523137685,23.63308211062286,12.13273413692322,0.0,0.0,0.0,33.912282008159195,27.764008982035932,34.03013388307394,336.1151235064242,,278.9202135290866,273.3838133933566,270.9437929003629,278.016579010236,412.69243865755936,276.51547012083245,279.70190118067234,348.25609434417385,34.03013388307394,336.1151235064241,,276.1676625086785,270.1347313008364,267.8845255960522,275.07440015186546,423.98841696200634,273.53732259130356,277.07329211244866,352.4011894671647,4.8514950937791355,260.750790615886,,221.76857452256286,217.8069050206165,215.5621575157151,221.29809589802576,308.11849453991965,220.05219579244255,222.24562636993096,269.8792711669379,1.2153619243954978,12.004111553800865,,9.961436197467378,9.763707621191307,9.676564032155818,9.929163536079857,14.739015666341405,9.875552504315445,9.98935361359544,12.437717655149067,2.4766679742803452,168.05756175321207,,139.56597411148206,136.81888942748415,135.59409649569093,139.12145023043993,204.1629927997883,138.37275009174965,139.952050939114,173.56280692804273,45.6156862745098,0.0,0.0,0.0,78.35820643009721,5.8138499303659845,0.0,46.045156591405686,-0.7648251550454372,0.0,0.0,0.0,-0.8913020702108005,1.2694737864281516,-4.644555837721909,0.0,0.0,28.44765336861388,433.6422131778444,83.60661003929869,167.01097414068954,197.81960944786326,214.5744969500267,216.5744969500267,216.5744969500267,784.0,134.85647908604133,150.45567011511102,77.58563381308764,77.04,77.04,0.875,7.764853176043473,5.906890595608519,3.9066700486994463,5.219686554847887,,5.232179246607586,5.232945242693239,5.231339547011871,5.233193534064008,5.181000569220663,5.232572129965519,5.231648162695021,5.216727063326117,0.13952393031069452,0.1864173769588531,,0.1868635445216995,0.18689090152475854,0.18683355525042394,0.18689976907371458,0.18503573461502368,0.1868775760701971,0.18684457723910788,0.18631168083307562,2.39230477836959,2.682056770308808,,2.6844472904219105,2.6845936806703596,2.6842867899986627,2.6846411272743294,2.6746176148807526,2.684522377415185,2.6843457818835437,2.68148962306659,244.25000000000017,686.5967620340994,169.7425972715965,,167.8560926078478,167.67636783866905,167.9338161364251,167.70230568617967,175.09994469984494,167.77331881361962,167.9395471626223,170.55828159548616,24.521312929789264,6.062235616842733,,5.994860450280279,5.988441708523895,5.997636290586611,5.989368060220703,6.25356945356589,5.991904243343558,5.9978409700936535,6.091367199838792,7.56136658225145,6.163902573076086,,6.15272643788022,6.1516551568117475,6.153189367396213,6.151809834789866,6.194976340652497,6.1522331926931795,6.15322349350935,6.168696483034515,79.26135838781249,13.626120467477111,6.5954664399086305,5.640151990382421,-5.147753026926144,0.18403673411283816,-5.107136854179865,-0.3022441385874819,0.0,310.783475662719,187.16127007194697,-493.09028547337135,-33.13603554567928,-11.467215941241195,-32.87268569822476,154.0090671953641,405.74834141517283,11.186913249773712,9.436007939887743,14.49101219339903,2281.0,45.0,3.3514434736470267,0.94265321739493,0.28867513459481287,0.013498731178900972,0.8720762218319023,0.13055763424076086,0.11785113019775792,0.0026997462357801947,0.0,0.0,0.0,0.0,0.09622504486493763,0.022360679774997897,0.3077922232199559,0.09899178888184344,0.680518023269134,0.14744134790659877,20.63746372257519,14.3098244932103,13.057569213703694,8.219925475480155,13.264131145407221,6.430579763473451,10.037705324966787,4.3676854321635705,8.107223888961004,3.0085167179112946,6.2321511483778504,1.997943160855927,4.114616822064076,1.1109348825842271,2.8519401064515373,0.6786062316137411,5.906358552626434,1.62436227617772,8.44989300361558,2.0222521149909434,12.634355961797391,2.4428417569838032,93.9500654142674,45.86336429004244,37.99550147982217,32.4671475770837,31.032897214650262,31.032897214650262,150.0,176.0,46.36589499999998,26.584104999999994,0.4418604651162791,144.12,11.42361111111111,5.8888888888888875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,43.0,0.0,1.0,45.0,11.0,1.0,6.0,39.0,12.0,30.0,33.0,0.0,0.0,0.0,16.0,0.0,6.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,5.0,1.0,2.0,28.0,12.0,0.0,5.0,1.0,0.0,3.0,4.0,0.0,0.0,6.0,1.0,2.0,3.624340932976365,5.925842105407373,4.230476736546681,4.715145039196663,5.199532406681874,5.551262409099036,5.675040005790547,5.727051309928867,5.905276694565354,5.830598662343317 +5381,CCOC(=O)c1ccc(C#Cc2ccc3c(c2)C(C)(C)CCS3)nc1,0,26.304347826086957,5.929749999999998,3.282608695652174,6.748792270531402,157.29183939161587,104.062163826087,1.7132647609093254,6.038210869565215,3.590201362795968,7.501902108695649,235.2062289935327,26.375,6.131249999999999,3.8333333333333335,6.645833333333333,141.08585213920614,100.47176477083342,2.011259385625001,6.309125000000002,2.926729681069959,7.586740333333327,279.9060781124396,22.46987951807229,6.021626506024094,3.5180722891566263,5.228915662650603,149.311825747544,84.26487709638552,1.7466918940986524,6.1632361445783115,2.8078052952550947,7.562955301204821,235.70262467488558,19.38095238095238,5.9296476190476195,3.057142857142857,3.901587301587302,149.99532949313647,70.48402780952382,1.6251115503446483,6.067552380952378,2.708068783068782,7.4934482095238115,212.86280059656266,15.827586206896552,5.848922413793105,2.543103448275862,2.9827586206896552,155.96350382331542,55.98854145689655,1.3985603495476466,5.954876724137931,2.7194417837377594,7.45760553448276,176.46458767291674,14.156862745098039,5.725421568627452,2.4901960784313726,2.673202614379085,156.24955979412948,48.57556149999997,1.3667916132978044,5.838186274509801,2.404366376180103,7.369797392156862,168.81408920480658,14.469135802469136,5.747913580246914,2.5555555555555554,3.0452674897119345,156.34635146147266,50.95370969135801,1.3719877008343702,5.8568024691358,2.609167809785094,7.325266444444443,174.90655525374947,14.840579710144928,5.729507246376814,2.6956521739130435,3.3719806763285023,158.0574857616374,53.21007766666666,1.3627796790910427,5.833427536231887,2.5220969762032563,7.319720086956521,175.48162007373855,20.22222222222222,5.885848148148147,3.259259259259259,3.8024691358024687,150.8781068840831,75.06819805555553,1.6048664997924451,6.022725925925926,2.5528120713305906,7.429634370370366,212.93716271121687,9.954631379962194,0.08491819470699427,0.012310940820875645,0.6242911153119093,3.6735979836168884,1.495958409243933,45.68459137996219,0.30044038317661864,0.08354995274102073,1.0094186124530324,0.051731858695652166,54.30435101833222,0.6893903591682413,0.002874740075614354,-0.006470611964185249,0.24165091367359795,1.5618086186375415,-0.05823137877888072,3.1662254379725874,0.007569195894659923,0.003727040012602345,-0.02468421353452219,0.00055000000000001,1.078092216251556,0.8693602386863141,0.014932695811601792,0.0005554373838244405,-0.031048579953082616,0.7121187965472477,0.19304351458344843,4.302978824857085,0.04000841702511055,0.014124798437606731,0.21125164237195704,0.008735195783132532,8.373765814776855,-0.8531821045998744,-0.003189147087946709,-0.00016013451231808523,-0.06093707804482847,-0.05441233834428543,-0.14343186956206108,-3.8839512375191267,-0.025381334640380303,-0.003642809883877947,0.0605618018812463,-0.0028635880952380876,-4.301849513234067,-0.34481129000717003,0.004199346522390979,0.000773497550572999,-0.04127012580666187,-0.1301197227473221,0.0258904653420202,-1.64651431886774,-0.0005163770647927265,0.0019078621015579265,0.007734896055058864,0.003082202586206898,-2.5081811750772935,-1.6430371770636425,-0.003218684903072756,-0.001251515901505683,-0.030514474220690164,-0.005321010992088484,-0.11503063655585359,-7.219556937080693,-0.03093294407070345,-0.004168473627636294,-0.058001072514053634,-0.0039200980392156935,-2.1877925733738777,-0.031389297299820276,-0.0007329558449438671,0.00011584979489380221,0.060894069873275926,-0.12907600592260676,-0.09765467513229747,-0.329447614530093,-0.015106169894858553,-0.0006950949847137494,0.008919234449355612,0.00024882407407406375,-3.8221464809678625,1.1279143037177068,0.0027528512917454327,-0.00011718760767387755,0.0609640831758034,0.10193936848001119,0.17342272763230704,5.249526120352866,0.031105996978589293,0.0043140359168242015,0.008358742867935021,0.0011196485507246254,6.115878999881755,1.303822726318,0.007068600784148984,0.0012386892215922147,-0.15126374011062096,-0.6347717177374815,-0.2832284279725907,5.803355818910592,-0.012692464237726091,0.009024322621298039,-0.009514873240867753,0.004838361111111102,-0.5569097613281069,,,0.496,1.21,0.62,0.0,0.59,0.03,0.917465191278276,0.016875273383032477,0.02719527338303248,0.7979447115395668,0.2116418951298398,0.26805137398205153,1.7154099028178427,0.47969326911189136,2.0312684229500837,1.7203027077706634,0.08184482488692577,0.14753190443222508,0.0,0.31096571517942057,7.633245650260882,1210.0,272.7684999999999,151.0,310.44444444444446,7235.42461201433,4786.859536000002,78.81017900182897,277.7576999999999,165.14926268861453,345.08749699999987,10819.486533702504,1266.0,294.29999999999995,184.0,319.0,6772.120902681895,4822.644709000004,96.54045051000006,302.8380000000001,140.48302469135803,364.1635359999997,13435.4917493971,1865.0,499.79499999999985,292.0,434.0,12392.88153704615,6993.984798999998,144.97542721018814,511.54859999999985,233.04783950617286,627.7252900000001,19563.317848015504,2035.0,622.613,321.0,409.6666666666667,15749.509596779328,7400.822920000001,170.63671278618807,637.0929999999997,284.3472222222221,786.8120620000002,22350.59406263908,1836.0,678.4750000000001,295.0,346.0,18091.766443504588,6494.670808999999,162.233000547527,690.7656999999999,315.4552469135801,865.0822420000002,20469.89217005834,1444.0,583.993,254.0,272.66666666666663,15937.455099001209,4954.707272999997,139.41274455637605,595.4949999999997,245.2453703703705,751.7193339999999,17219.037098890272,1172.0,465.5810000000001,207.0,246.66666666666669,12664.054468379287,4127.250484999999,111.13100376758399,474.4009999999998,211.3425925925926,593.3465819999999,14167.430975553707,1024.0,395.3360000000002,186.0,232.66666666666666,10905.96651755298,3671.495359,94.03179785728194,402.5065000000002,174.02469135802468,505.060686,12108.23178508796,1092.0,317.83579999999995,176.0,205.33333333333331,8147.417771740488,4053.682694999998,86.66279098879204,325.2272,137.8518518518519,401.20025599999974,11498.606786405711,457.91304347826093,3.9062369565217367,0.5663032777602797,28.717391304347828,168.98550724637687,68.81408682522093,2101.491203478261,13.820257626124459,3.8432978260869537,46.43325617283949,2.3796654999999998,2498.000146843282,33.09073724007558,0.137987523629489,-0.31058937428089195,11.599243856332702,74.966813694602,-2.7951061813862745,151.9788210226842,0.3633214029436763,0.17889792060491255,-1.1848422496570652,0.026400000000000482,51.74842638007469,72.15689981096406,1.2394137523629487,0.04610130285742856,-2.5770321361058572,59.10586011342156,16.02261171042622,357.14724246313807,3.3206986130841756,1.1723582703213586,17.533886316872433,0.7250212500000002,695.0225626264789,-89.58412098298682,-0.3348604442344045,-0.01681412379339895,-6.39839319470699,-5.71329552614997,-15.060346304016413,-407.81487993950833,-2.6650401372399317,-0.3824950378071844,6.358989197530861,-0.3006767499999992,-451.69419888957697,-39.99810964083172,0.4871241965973536,0.08972571586646788,-4.787334593572776,-15.093887838689362,3.003293979674343,-190.99566098865785,-0.05989973951595627,0.22131200378071947,0.8972479423868283,0.3575355000000002,-290.94901630896607,-167.58979206049153,-0.3283058601134211,-0.12765462195357966,-3.1124763705103966,-0.5427431211930254,-11.733124928697066,-736.3948075822307,-3.155160295211752,-0.425184310018902,-5.916109396433471,-0.39985000000000076,-223.15484248413551,-2.5425330812854425,-0.059369423440453234,0.009383833386397979,4.93241965973535,-10.455156479731148,-7.910028685716095,-26.685256776937536,-1.2235997614835428,-0.0563026937618137,0.7224579903978046,0.020154749999999163,-309.59386495839686,77.82608695652178,0.18994673913043486,-0.008085944929497551,4.206521739130435,7.033816425120772,11.966168206629186,362.21730230434775,2.1463137915226613,0.2976684782608699,0.5767532578875165,0.07725574999999915,421.99565099184105,70.406427221172,0.38170444234404516,0.06688921796597959,-8.168241965973532,-34.277672757824,-15.294335110519897,313.38121422117194,-0.685393068837209,0.4873134215500941,-0.5138031550068587,0.26127149999999955,-30.073127111717774,0.7145438620699768,0.6229550802606669,0.4441604343628623,0.3483399900980085,0.2908046122992741,0.20348995374058534,0.1859403688839014,0.11204350778811108,0.12031951424366581,0.07186028699403023,0.07638208005122737,0.04042553690212183,0.05210344819179041,0.023624694116466914,0.03398969188411597,0.012431866877870677,16.002003593193894,5.6497822653755545,3.5550082352161247,2.1483106237559104,0.4588984888105784,-0.49214089792216703,4.023188129407146,0.9779081454220588,6.028133981428736,0.6561872717695272,14.547850751111966,10.337662303783153,32.0609989924946,11.661230806193299,2.9164560398589026,0.7414975275520886,3.5010943829828913,2.198420402494541,7.008272364726179,0.6266227075524902,3.714009365306396,2.39455375776965,24.434236007154396,14.701464420304706,0.2519689063737933,0.602304859657976,0.7675547962430849,0.8416261508809342,0.8416261508809342,0.8416261508809342,1.3960584981298467,844.4351506086844,0.0,2.0,5.0,2.0,7.0,1.0,3.0,0.0,1.0,4.053855038189303,2.0103839546751088,1.0464992497264705,0.6144491849237044,0.6144491849237044,0.6144491849237044,154.31443355342762,1001.0709215084303,46.911499916616236,21.76241133713979,43.233736098685554,,15.0,624.0,0.0,4.794537184071822,11.384295757348628,17.864261451058375,5.563451491696996,28.829453768500645,19.056471336613843,11.761884949391115,48.87142276342457,4.736862953800049,12.4,30.25,15.5,0.0,14.75,0.0,0.003999999999999986,0.75,0.12437232088181244,0.06188405797101437,-0.062488262910798065,0.0,0.08455837563451751,0.0,0.565217391304348,0.7879999999999997,0.44084507042253557,0.5033333333333336,0.7879999999999997,22.9366297819569,0.42188183457581196,0.679881834575812,19.94861778848917,5.291047378245995,6.701284349551289,42.88524757044607,11.992331727797284,0.6294416243654825,0.14784946236559138,0.04032258064516129,0.24193548387096772,0.3333333333333333,0.3766492788447281,-0.6027915090992737,-0.04356409514193057,-0.013104163241288559,-0.03348841717218188,0.6233507211552718,0.9976138094723613,0.03143300282151596,0.02168725672766003,0.0356290646240129,-5.861034479935755,0.7564891521078616,0.6656422226662044,1.5097724202276657,0.848788796366389,0.44074292452830177,1.052691655945281,0.7588342467919097,0.9181760135929372,0.6623706033710859,0.612008918061845,0.6819258053285218,0.9214145032460885,0.9466073561240783,0.7465540109135081,1.0027729568571477,1.4914768840692063,0.8184918059889642,0.8910329132258261,0.9290675748403402,0.9052755292072006,0.7475860350010571,0.500771062314148,0.7698119630172885,0.8143477102417582,1.1025174976941021,0.8895225130888387,1.07767811406137,1.2386720017302908,0.984446214163195,1.0950736636231813,1.093438527187412,1.1130650426538817,0.9028295526801962,0.6980373537807797,0.9111356797235334,1.0542133432351655,1.0144882754691775,0.963194388645491,0.8281295045679032,0.9793716881150644,1.0310004731767903,0.9516928901720045,1.015912853007054,0.9811401908610969,0.9856045912047712,1.1936150812467143,0.9667042616587974,1.0244059455252512,1.3155914188691045,0.873258445335617,0.7238735256143205,0.9063988956672754,0.9395747149631719,1.061529692170393,1.293035573131628,1.2014417436719669,0.9115735204364298,1.0868036633456095,0.899763785387187,1.054230614918045,0.7461387517407265,0.6766884817733264,0.5975829820417792,0.6190596349566826,0.9453656057429639,1.0527285848365633,0.7723606882273645,0.8842830076509874,0.7159143909030921,0.554477469174269,0.5451397592551462,1.0386061927445789,0.6615552601595137,0.6770944348196779,0.6737517186252916,0.7721423164269493,0.9496140651801026,0.8741534410728046,0.6806373287516029,0.745448183942869,0.6953267602494912,0.5929981293263469,0.5734462789358235,0.8633391917536534,0.7434089758197239,0.6000233368895191,0.7485276630189477,1.5234670704012112,1.179149990470745,1.1999580149662945,0.7530929633667811,0.9766778593424026,0.604895007325947,0.5993926916821688,0.515588920655725,0.9781674552452537,6.0,0.13600652994592388,3.5555555555555567,1.5625,1.4977777777777779,0.7083333333333334,0.2824489795918368,0.36979166666666663,0.24640967498110353,0.10562500000000002,4590.135643362863,5137.223968429805,2390.3337596546553,2182.532017693553,18.112861251482638,0.4860791147521645,9.308577688733175,0.945824792696945,1.0,0.3684210526315789,1.4697069178677098,3.5131780013819043,4.477062706330543,4.909112771133309,4.909112771133309,4.909112771133309,0.2222222222222222,0.009067101996394926,0.09356725146198833,0.04006410256410257,0.04680555555555556,0.027243589743589744,0.012838589981447126,0.018489583333333334,0.011733794046719214,0.005281250000000002,0.487313040905353,19.753086419753085,8.79224376731302,5.041666666666667,152.7491380437195,1.0,4.143701720614592,143.7250488845147,,105.06080123649024,107.70075168722326,108.90751974176074,105.07251708600592,126.36309783997277,108.14386275494795,108.21131651008194,118.42609196171983,0.06925322825674128,0.03385305217019147,-0.52559849473186,0.38708049457481697,0.4251441299790356,-0.03892580062323472,0.06930620023803763,0.02519367008732062,0.044608523288517325,-0.024453891804645845,0.010631746352586305,0.01985277783519797,0.08733223818174328,0.17584801305687509,0.045117379078176235,-0.04973413715421863,0.19384777532083738,0.12904337004998276,0.09418884343451571,0.13316590999549804,0.16905812599786002,0.2092805103509882,0.16885524710262703,0.15420064244852158,-0.0857070515255096,-0.03755552151044534,-0.013007495905312564,-0.09761003568724984,-0.014811729151351793,-0.09587958373425132,-0.08501665704342218,-0.08448043625832909,-0.04360038233856987,0.05999671606418313,-0.05535444052155736,-0.07921740031073819,-0.03463827808845289,0.049451669773251786,0.06283009250287194,-0.06610718108016389,-0.03542024013722128,0.017306941945735912,-0.03604091158818859,-0.0017187338776930195,0.022834987201868502,0.0076627238289790935,0.059580356552430304,-0.04618748089320825,-0.16505253829598687,-0.0379033599828477,-0.10165883499200071,-0.048878597616184995,-0.0014484467314655955,-0.07689427449656894,-0.15803045882658975,-0.10295867600634441,-0.04989199264489456,-0.05745988017112413,-0.07577725096402074,-0.040287611072551376,-0.0031532355244217477,-0.008631316851151774,0.009410312061394682,0.09754114447528527,-0.03513612716967013,-0.06527900410122549,-0.007211350798566903,-0.050280091295111115,-0.008319513798749007,0.008836011481580064,0.004809880803586443,-0.07038379815417685,0.11330548170654517,0.03241768505847304,-0.009518980667599564,0.09765329295987887,0.027749190013340943,0.11592750611292461,0.1149080239482096,0.10353467350060973,0.05163421133458198,0.00828074969573037,0.02164330799153611,0.11262226479453072,0.13097649491496807,0.08324012078375918,0.10061694224796947,-0.24229680096447687,-0.1727929187048684,-0.18932907908565194,0.12703092319779427,-0.04224619907459185,0.10801110383952789,-0.009426092528396364,0.09352768744645444,-0.010255343280690412,12.502293501785756,18.026991542600015,3.6279779504770735,15.40257941710922,35.784553472182736,40.67047319665212,41.1059796619733,41.1059796619733,41.1059796619733,50.78171057375209,43.007567694266584,2.0461206221731443,3.688297610805627,0.0,7.774142879485514,10299.382802039485,10115.952381814506,617.5223747111231,87.0,38.0,48.0,59.0,74.0,74.0,77.0,82.0,93.0,351.1292999120006,27.0,4.875197323201151,5.713732805509369,6.591673732008658,7.449498005382849,8.33110454805304,9.196545660953994,10.080168229439996,10.949876289700272,11.83514663582158,0.673913043478261,0.9670434782608699,1.108480415418695,0.6361270284847584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.711750234313981,0.9569479965899399,0.9939912600145668,0.6535610536376427,6.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,4.736862953800049,5.693927994848461,0.0,0.0,0.0,0.0,9.77851570501903,0.0,11.761884949391115,19.767908718236892,66.32812405162088,16.655778538827846,12.170333456209914,235.59821770343646,-377.0526406585777,-27.249815007698203,-8.196796536056036,-20.94736892547654,389.9126512568641,624.0182808498525,19.66168490891803,13.565614801083752,22.286367173209015,0.4666666666666667,0.8947125670263923,0.28889601650181046,36.202929440587056,0.2119394452556904,27.865742652076097,0.10528743297360756,8.0,0.07407407407407407,0.2660795569163595,0.6360348683206917,0.810539058301156,0.8887585239720335,0.8887585239720335,0.8887585239720335,4.431500000000004,,1.2678571428571428,0.732506159937142,0.484617461944458,1.2663900391125134,-2.2586324158256392,0.6902539779681764,0.7086086977095826,-0.9597347091880122,100.98250000000004,9.53140013787187,0.0,4.9839785209472085,0.0,37.50250716691244,12.359735571259707,58.912961383860576,0.0,11.840868637711289,4.007333185232471,0.0,5.332718793265369,0.0,6.86171134048073,0.0,8.48446336679332,0.0,10.15716030888516,31.000000000000007,11.379544624355457,4.234604499979004,0.0,0.0,0.0,0.0,4.810033700813131,0.0,44.484000000000016,0.0,11.632422053616033,0.0,0.0,0.0,0.0,0.0,-0.3574742025979678,50.990099109259965,0.0,0.0,0.0,23.313019380158764,10.15185342319683,11.840868637711289,54.37085287600915,41.424162389438905,0.0,0.0,0.0,29.261843310298886,32.740510778443124,31.872022818059833,287.4500977690294,,210.36554406575243,215.36098462662375,217.8410665796377,210.39004997887787,253.51923004925152,216.2393704879005,216.36594432434714,237.0825202536447,31.872022818059833,287.45009776902936,,209.35266644641408,214.74567945227673,217.43398791160428,209.37821887803761,255.05510009201305,215.65955714640725,215.7648092094857,237.81191863262754,4.8969636025462595,224.87335974069634,,162.98102293191386,165.70354179822763,166.90598042144086,162.99861755312963,191.90292554671038,166.42538666721393,166.6564334444315,180.81054523406075,1.2748809127223932,11.498003910761177,,8.414621762630098,8.61443938506495,8.713642663185508,8.415601999155115,10.14076920197006,8.649574819516019,8.654637772973885,9.483300810145789,2.4484818012731293,143.7250488845147,,105.06080123649024,107.70075168722326,108.90751974176074,105.07251708600592,126.36309783997277,108.14386275494795,108.21131651008194,118.42609196171983,44.01960784313724,0.0,6.361507291780482,0.0,0.0,0.0,0.0,45.72359796067008,2.701923101770797,0.0,4.952464153097964,1.9180755033496388,0.0,0.0,0.19227271487854658,0.0,6.257959892290249,30.063808467331565,559.6524352703799,67.60651822191465,161.6061880635676,205.94488449120496,225.8191874721322,225.8191874721322,225.8191874721322,684.0,127.0229432300709,65.85843368992067,59.84338699465705,64.49,39.19,0.875,8.839992014390408,5.754887502163468,3.723180194137684,4.9264013792626065,,4.915068849579361,4.914097716331664,4.909594874882701,4.915042374211029,4.8722400878406775,4.913595650601403,4.913772307549321,4.8952389014625375,0.14892720776550736,0.19705605517050426,,0.19660275398317445,0.19656390865326656,0.19638379499530803,0.19660169496844115,0.1948896035136271,0.19654382602405612,0.19655089230197284,0.1958095560585015,2.2308689258453427,2.5108995100359492,,2.5085964934279423,2.5083988910688118,2.5074821600692405,2.5085911068422306,2.499844540181015,2.508296717402631,2.5083326694395733,2.5045538118674378,273.5400000000002,862.7561333347116,144.09068154880245,,145.10671738905307,145.37542286242734,145.77731101080474,145.1086542422884,148.4766858266608,145.4096158988235,145.38265729360924,146.8560426050088,34.51024533338847,5.763627261952098,,5.804268695562123,5.815016914497094,5.831092440432189,5.804346169691536,5.939067433066432,5.816384635952939,5.81530629174437,5.874241704200353,7.676422802879113,5.886733566229343,,5.893760185586265,5.895610251478675,5.898370922129255,5.893773533281974,5.916718679991201,5.895845428891511,5.895660014024771,5.905743536816647,4.952464153097964,17.226947354682657,0.0,3.6423856146040565,7.068898048254222,9.870996240687123,2.687542290722201,6.716024127935471,0.0,336.260880250859,147.36924588117463,-235.8505249021229,-17.045055464472746,-5.127185323959193,-13.102806939006829,243.8946013062957,390.3302171015042,12.298597612600947,8.485439502206614,13.94036489648229,1736.0,39.0,2.14561183004242,1.478935315902011,0.2041241452319315,0.1767766952966369,0.46129449216106144,0.23915078146154073,0.08333333333333333,0.05103103630798288,0.0,0.0,0.0,0.0,0.0,0.0,0.21030028017618946,0.12211938982380549,0.4384682867993653,0.3165170744835378,17.86359655174942,15.573877006516673,11.992331727797282,9.405179732646229,11.050575267372416,7.732618242142244,8.925137706427266,5.378088373829332,7.0988513403762825,4.239756932647784,5.652273923790825,2.991489730757015,3.85565516619249,1.7482273646185518,2.6172062750769296,0.9572537495960421,4.284232731494571,2.398512235468492,6.290975416390185,3.851841790146694,9.146425673802364,5.269109545275762,81.82495177854568,40.23933866495523,27.916569815301397,25.702859933070236,25.702859933070236,25.702859933070236,130.0,151.0,54.67665299999999,27.271346999999995,0.391304347826087,129.04,8.229166666666668,5.513888888888889,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,46.0,0.0,0.0,48.0,12.0,1.0,7.0,40.0,14.0,27.0,34.0,1.0,0.0,0.0,21.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,4.0,0.0,2.0,25.0,4.0,0.0,1.0,2.0,0.0,3.0,2.0,1.0,0.0,0.0,1.0,2.0,3.6109179126442243,7.73228701811659,4.174387269895637,4.757891273005756,5.279389356662517,5.842094090453713,6.168825905767064,6.59342973391608,6.926699694983075,7.39131889834589 +10218765,NC(=O)c1ccc(CNC(=O)NC[C@H]2CN(Cc3ccc(Cl)c(Cl)c3)CCO2)cc1,0,32.333333333333336,6.256988888888886,3.2222222222222223,7.096479195244627,163.67292760654217,131.85231992592597,1.5835559577106664,6.391683333333331,4.316554189458473,7.863090999999997,227.22658784600443,27.285714285714285,6.42975,3.857142857142857,6.450396825396825,149.10701102109286,104.66986846428574,1.8346345607142862,6.593160714285714,3.0543062904174016,7.867559785714284,267.3016809210564,23.443298969072163,6.379174226804124,3.4123711340206184,4.77205040091638,156.56528324258545,88.29548708247422,1.5920895240406492,6.507349484536082,3.106317084553052,7.88543468041237,224.11245619391443,20.6,6.199037692307693,2.830769230769231,3.228584995251662,158.8200069831201,76.05556776153847,1.414948628944115,6.331963846153848,2.745830548814088,7.803279053846154,188.42132971313748,14.957446808510639,6.022332624113473,2.4680851063829787,2.652482269503546,164.7610121388017,52.36508814893615,1.1957053793781487,6.117568085106384,2.5643478387765226,7.650277602836879,154.5002212728086,14.916030534351146,5.98761145038168,2.450381679389313,3.0339270568278205,165.4387943105117,52.87436680152672,1.1580896791558246,6.07579465648855,2.6112995947601543,7.6223192061068685,150.99444186293536,16.61864406779661,6.058491525423729,2.5847457627118646,3.0338983050847457,163.96027412520723,59.9819607118644,1.2203407352595,6.156721186440679,2.665751203180581,7.680381576271187,161.92044030000247,17.495495495495497,6.198215315315315,2.5495495495495497,2.981981981981982,163.79035963088236,62.384488306306295,1.2514404632160359,6.311794594594596,2.8221647573499427,7.847952504504504,164.7394719645513,17.660194174757283,6.148796116504855,2.4466019417475726,3.1078748651564183,166.2582029857006,62.82071766019417,1.2269616135682233,6.285105825242721,2.6339246474090063,7.854162718446602,160.0434243297396,13.233196159122077,0.12311111111111107,0.020489350594753413,0.5665294924554186,3.6975393317414347,1.4621645257854377,61.99120294924555,0.25512759546888897,0.12778672839506164,1.4647490528372655,0.08911437311385455,50.730360536912535,0.028708602782677117,-0.009878174603174524,-0.01355221810257669,0.08161865569272979,0.6129397981821391,-0.1278424719548898,0.20946235366451457,0.0002533071753016395,-0.00811430776014098,-0.09565176257227916,-0.008248297717029248,1.2836053452573013,0.011171920297541061,0.0023107674684994866,0.002992335590057594,-0.13124885098920985,-0.5170491814154697,0.20280527230613782,0.08114395147992773,0.019185962890496015,-0.00014509036527927496,0.17438172846562996,0.0014807024875199176,0.4979488923079504,-0.07023319615912203,-0.012315299145299117,0.0002783452943928156,-0.06681439274031867,-0.6650220091006558,-0.19750184262041237,-0.46916640878969923,-0.012177943989994,-0.0121713865147198,-0.08470436157477147,-0.004881835507017003,-6.723414388658696,-0.6264191693663721,-0.013356737588652497,-0.0019239161021204366,-0.007821848641391604,-0.12885007510891597,-0.08731538824819962,-2.9150369242915115,-0.010087223638267152,-0.01314287496716579,-0.09805463244424836,-0.009596555146951463,-2.8512165288330182,0.7212850396339227,0.011345462256149238,0.0007357038833043372,0.03058670771421689,0.46728961934705804,-0.041301101572739744,3.3945807914951955,0.00564017975174977,0.011695714353029794,0.08243997144183364,0.006556519733191003,2.9983568965010807,0.7187812420078584,0.004020998116760803,0.001245047690340458,-0.021331752342424036,-0.049348558838379235,-0.01541910673621718,3.3904838548975826,0.0017705092384303115,0.005567414731115249,-0.024170466758270656,0.0008890716444630919,1.82019343532602,-1.3990286582879174,-0.016879279279279253,0.0009095855005784892,-0.006636265895525157,-0.4159326221511863,-0.09837717080587378,-6.485773142772401,-0.012075277990630646,-0.019368860527193832,-0.16455044570500946,-0.014364099840581365,-4.503557065287781,-1.6395248178779287,-0.01938629989212512,-0.0061065506392878844,0.007724373060583044,0.14264161391715652,0.025402906446610272,-7.589365965786356,-0.010918308261416414,-0.01980177693875104,-0.13193007484076685,-0.014635264160240833,-0.5625440172472121,,,0.48428571428571426,1.1833333333333333,0.5333333333333333,0.03333333333333333,0.65,-0.11666666666666667,0.8613925681997434,0.01707754404695887,0.02567754404695887,0.9275649755328212,0.2450992296094516,0.23496367842269272,1.7889575437325647,0.4800629080321443,2.0205901153246644,1.453859474891354,0.2655457874274995,0.18396597144307478,0.11721888156273616,0.5667306404333105,8.335602703481493,1746.0,337.87739999999985,174.0,383.2098765432099,8838.338090753277,7120.025276000002,85.51202171637598,345.15089999999987,233.09392623075752,424.60691399999985,12270.23574368424,1528.0,360.06600000000003,216.0,361.22222222222223,8349.9926171812,5861.5126340000015,102.73953540000002,369.217,171.0411522633745,440.5833479999999,14968.894131579158,2274.0,618.7799,331.0,462.8888888888889,15186.83247453079,8564.662247,154.43268383194297,631.2129,301.31275720164604,764.8871639999999,21738.908250809698,2678.0,805.8749,368.0,419.71604938271605,20646.600907805612,9887.223809000001,183.94332176273497,823.1553000000002,356.9579713458315,1014.426277,24494.772862707872,2109.0,849.1488999999998,348.0,374.0,23231.30271157104,7383.477428999998,168.59445849231898,862.5771000000001,361.5730452674897,1078.689142,21784.53119946601,1954.0,784.3771,321.0,397.44444444444446,21672.48205467703,6926.542051,151.70974796941303,795.9291000000001,342.0802469135802,998.5238159999998,19780.27188404453,1961.0,714.9019999999999,305.0,358.0,19347.312346774455,7077.871364,144.00020676062098,726.4931000000001,314.55864197530855,906.285026,19106.61195540029,1942.0,688.0019,283.0,331.0,18180.72991902794,6924.678201999999,138.90989141697997,700.6092000000001,313.2602880658436,871.1227279999999,18286.081388065195,1819.0,633.326,252.0,320.1111111111111,17124.59490752716,6470.5339189999995,126.377046197527,647.3659000000002,271.2942386831277,808.9787600000001,16484.472705963177,714.5925925925922,6.647999999999998,1.1064249321166844,30.592592592592602,199.66712391403746,78.95688439241363,3347.5249592592595,13.776890155320004,6.900483333333328,79.09644885321234,4.812176148148145,2739.439468993277,1.6076817558299186,-0.5531777777777733,-0.7589242137442946,4.5706447187928685,34.32462869819979,-7.159178429473829,11.729891805212816,0.014185201816891813,-0.4544012345678949,-5.356498704047633,-0.4619046721536379,71.88189933440887,1.083676268861483,0.2241444444444502,0.2902565522355866,-12.731138545953357,-50.153770597300564,19.67211141369537,7.87096329355299,1.8610384003781133,-0.014073765432089672,16.915027661166107,0.14362814128943202,48.30104255387119,-9.130315500685864,-1.6009888888888852,0.03618488827106603,-8.685871056241426,-86.45286118308525,-25.675239540653607,-60.9916331426609,-1.58313271869922,-1.5822802469135742,-11.011567004720291,-0.6346386159122104,-874.0438705256305,-88.32510288065846,-1.883300000000002,-0.27127217039898155,-1.102880658436216,-18.16786059035715,-12.311469742996147,-411.0202063251031,-1.4222985329956683,-1.8531453703703764,-13.825703174639019,-1.3531142757201562,-402.0215305654556,94.48834019204386,1.4862555555555501,0.09637720871286817,4.006858710562413,61.214940134464605,-5.410444306028906,444.6900836858706,0.7388635474792198,1.532138580246903,10.799636258880208,0.8589040850480214,392.78475344164156,84.81618655692729,0.4744777777777747,0.14691562746017403,-2.5171467764060362,-5.82312994292875,-1.8194545948736272,400.07709487791476,0.20892009013477675,0.6569549382715993,-2.8521150774759376,0.10491045404664484,214.78282536847036,-155.29218106995884,-1.873599999999997,0.1009639905642123,-0.7366255144032925,-46.16852105878168,-10.91986595945199,-719.9208188477365,-1.3403558569600016,-2.149943518518515,-18.26509947325605,-1.5944150823045316,-499.8948342469437,-168.87105624142666,-1.9967888888888872,-0.6289747158466521,0.7956104252400535,14.692086233467121,2.616499364000858,-781.7046944759946,-1.1245857509258907,-2.039583024691357,-13.588797708598987,-1.5074322085048057,-57.94203377646285,0.7169953640563796,0.5959512804924277,0.4500589762801354,0.323249648662079,0.3035511506326846,0.18408205776213066,0.20067660577803217,0.10850858610553521,0.12799083674543954,0.0593667571835134,0.08374251415554618,0.03344458563919986,0.057206028783871654,0.01957486938424067,0.03789839189611791,0.011233720694176394,17.002141289987854,5.689218054724886,3.5460205562420573,2.18869663428982,0.4207045924536305,-0.4110957478221113,3.1781009426777667,0.9726931909398283,6.023348634212795,0.7729040641903048,14.54610140989443,10.949786460604045,35.4515315111815,11.700547517573133,2.2171131422027646,0.7505232136050786,3.4914485442258685,2.238559155051541,7.00936273552787,1.2465095941653257,3.7042390371982723,2.434537398376128,22.457530403550916,14.701770724204103,0.2892940485154386,0.612964050524763,0.7827242767225219,0.9035923614716891,0.9159380404840346,0.9159380404840346,1.2853344502899011,892.3202553756789,0.0,1.0,6.0,0.0,9.0,1.0,3.0,0.0,0.0,4.019123211070837,2.0771031990148905,1.0585418418283368,0.3333333333333339,0.2592592592592604,0.2592592592592604,107.4939173718044,2019.9590286527687,77.55262609278415,37.406648678754976,79.99292875364924,,19.0,931.0,5.907179729351506,9.589074368143644,12.135080900086376,41.84986930143029,24.21641579521914,0.0,30.33183534230805,12.13273413692322,15.53348693886314,33.67241021142726,14.528571428571428,35.5,16.0,1.0,19.5,0.0,0.01571428571428572,-3.5,0.18030638612033983,0.05815295815295862,-0.12215342796738121,0.06773109243697462,0.1609820554649264,0.0,0.6198412698412696,0.8757142857142853,0.4395348837209298,0.561688311688311,0.8079831932773107,25.841777045992302,0.5123263214087661,0.7703263214087661,27.826949265984638,7.352976888283548,7.048910352680782,53.66872631197694,14.40188724096433,0.5530179445350736,0.1717469682071452,0.0,0.3028515240904622,0.3333333333333333,0.4256454681915243,-1.1894443382854507,-0.058405638058794264,-0.02202674700528612,-0.06608024101585835,0.5743545318084757,1.6050041574054421,0.04888209216135794,0.029722299211211892,0.04458344881681783,-5.772483750325782,0.6026160982688923,0.8288795233797488,1.745557807411941,0.9745006053268761,0.6583085285654091,1.3583757300238632,0.606653834491098,0.927828034605402,0.7616021893566465,0.6520231009821621,0.7759079058845366,0.9064909409518905,0.7133904135573373,0.9303248322106018,0.9755160178648897,1.4377511794513362,1.147477485755427,1.021932022858266,0.7163143533917795,0.8411862594683593,0.8872780538581233,0.5208996035639908,0.8559233689322868,0.9187180991649554,0.8857386911833895,1.0805440618346753,0.9665794498801519,1.0727835723598431,1.1489621676963664,1.1604519450211108,0.8891351441957938,1.0168337622635772,1.050711962391338,0.8938930195058836,1.023873532602034,1.10056279328792,0.8708180693369568,1.0615090871461368,1.019755422551021,0.909226727113492,0.9804682262123419,1.0385156136145242,0.8742945511407235,0.9574407854587536,1.0296989680494684,1.0035103229866928,0.9720320456955791,1.0285443524625828,0.7609310967219177,0.8729480139811316,0.9529839549235314,0.8463855978411545,0.8491460794232127,0.9737815779581256,0.7649564892339593,0.8977216539245741,0.8460732154710041,0.802360660082609,0.8001383135393592,0.9251114827419714,0.769022994766091,0.9593372672295986,0.9480399919901141,1.005699306439036,1.0100563010331458,0.9792527469959843,0.7721359924286898,0.9199356020410283,0.9145927753934868,0.9835496686037885,0.9053238353765748,0.9399182894709878,1.0961515833237618,1.29122177231383,1.055975387306599,0.9442608468032193,1.1596213535002835,1.0176422275125487,1.0939186717508136,1.0139465760175659,1.2712189569173022,1.260383892731403,1.3083037029508284,1.0503242185305708,1.325305366827658,1.2608344140291843,1.350562487749703,0.9250922682714682,0.9888764791489096,0.9051699677710275,1.3194543876005815,1.0558401692283317,1.2817987727373448,1.104574242642523,1.319319901574906,0.9911651475879628,7.0,0.12784409754106724,3.1111111111111125,1.4375,1.4177777777777778,0.8194444444444444,0.4865306122448979,0.38541666666666663,0.328546233308138,0.16125000000000003,6057.810159052957,6794.395854212256,2926.849086180824,2675.8335291325466,19.564714525805066,0.4808659127563771,10.156710217535863,0.9262846046376317,1.0,0.3333333333333333,1.7357642910926316,3.6777843031485777,4.6963456603351315,5.421554168830134,5.495628242904208,5.495628242904208,0.21875,0.005558439023524662,0.0723514211886305,0.03422619047619048,0.041699346405228765,0.024831649831649833,0.014743351886209028,0.012847222222222222,0.012168379011412519,0.005972222222222223,0.4431482222672902,24.638671875,12.296376419686316,8.13840830449827,185.00971581939115,1.0,4.309329210050244,217.82962453405017,,179.57186244382967,178.0505846870964,175.35180280910524,179.54571180430366,247.1139852169643,179.9858364549793,181.76855529407902,226.36613935921397,0.002169438315390446,-0.08023788035069561,-0.6614274102980563,0.14406779661016947,0.16576964926927826,-0.08743371193895985,0.0033789044848187414,0.0009928646677208565,-0.06349883013715657,-0.06530249149982288,-0.09255855625546551,0.025302507840907647,0.000844234466353005,0.01876977185604277,0.1460434568787077,-0.23167170065649867,-0.13983601931610948,0.13870208771286938,0.0013089591364497837,0.07520144128366392,-0.0011354102816586548,0.11905228962452442,0.016615753842852472,0.009815599318393011,-0.00530734943505753,-0.10003401832824195,0.013584876353479443,-0.1179363009871484,-0.17985529008218815,-0.13507497900369278,-0.007568273988388689,-0.047732758848029105,-0.0952476573082856,-0.05782858258941792,-0.05478168488914644,-0.13253235966589655,-0.04733695184700794,-0.10849335586450587,-0.09389834456798657,-0.013806604502601641,-0.0348475198094056,-0.059716527592061516,-0.047023396637070565,-0.03953795597739335,-0.10285007787767811,-0.06694295671624666,-0.10768807333347548,-0.05620335630688865,0.054505731718993464,0.09215628186402813,0.03590664720690193,0.05398961240596636,0.12637853919108363,-0.028246548759999386,0.0547590727393121,0.022107290045923513,0.0915252663552953,0.056282658986633094,0.0735742114778078,0.0591037963217196,0.05431652590688598,0.032661537049501116,0.06076560038263341,-0.03765338367464193,-0.01334632424724945,-0.010545397911315368,0.05469298373953955,0.006939701035383344,0.04356801994259682,-0.016501438735496494,0.009976748008171407,0.03587976541190964,-0.10572114562992561,-0.1371060591277196,0.044393085880008384,-0.011713893069825274,-0.1124890325251237,-0.0672818749675438,-0.10462408913217154,-0.04733034844168059,-0.15157176938839567,-0.11234036669030098,-0.1611872399329956,-0.0887743950096884,-0.12389484733419828,-0.15746994497213548,-0.2980353433383854,0.01363454712146498,0.03857744329929181,0.017373493884325006,-0.12242649932120281,-0.04279548138001335,-0.15495957356019363,-0.09007008714920423,-0.1642301196636651,-0.011088902410577047,14.673410632230715,20.53147775873982,4.415915403446315,20.734407774481873,37.49998706823348,44.53638785402019,46.489953586138704,47.84036099354611,47.84036099354611,60.617703459739936,43.615784246740624,7.966373622824986,5.518979143292244,3.5165664468820848,17.001919212999315,17967.601472463393,17444.41571072412,1197.1702985031152,75.0,43.0,51.0,59.0,73.0,71.0,71.0,74.0,80.0,450.12254598800064,32.0,5.017279836814924,5.82600010738045,6.665683717782408,7.488293515159428,8.327726166461412,9.15472194821317,9.994287576862567,10.823232312381798,11.66297345454722,0.7283950617283949,0.9906666666666669,1.1310710128438786,0.6958867951291565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6901644710578844,0.9814814814814812,1.015362412667584,0.6455536482951508,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,1.0,0.0,6.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,21.104107638974895,0.0,0.0,5.907179729351506,0.0,9.694446914922299,4.794537184071822,0.0,0.0,41.40098098584986,35.392371257240434,38.28723352125987,22.756114979743874,307.67659801367455,-859.7864064786042,-42.218346877035174,-15.921970490344522,-47.76591147103356,415.17051538547895,1160.1726221741644,35.33427921574898,21.484678188410452,32.22701728261568,0.47368421052631576,0.845265435931033,0.13373557935164415,64.2571730355927,0.11259804904670662,73.22122119069029,0.15473456406896713,10.0,0.21875,0.30161567718571314,0.6390714504438126,0.8160621139109334,0.9420782190428533,0.954949725922219,0.954949725922219,2.7925000000000013,,2.615546218487395,1.8330294146180242,1.683722724656374,2.6401669857805437,-4.851720157487847,1.8069755821700266,1.7261047184288958,-2.3077046876725733,116.6773,14.325937321943693,0.0,15.53348693886314,5.733667477162185,19.193479199573453,26.241151182250643,69.2001905818049,0.0,0.0,4.174387269895637,0.0,5.4680601411351315,0.0,6.93828448401696,0.0,8.484049972822984,0.0,10.067093391134142,39.33333333333332,12.405784044046285,0.0,0.0,0.0,0.0,0.0,3.471225430133127,0.0,53.496000000000016,0.0,23.167122719783876,0.0,0.0,0.0,0.0,0.0,-0.7572942096104425,61.07783469356944,16.367244685174846,4.794537184071822,0.0,49.183321542539,17.8263757656252,0.0,21.48489165916281,42.46456947923127,10.045266627482652,0.0,0.0,37.57788693697445,37.268881437125756,38.34569837038109,435.6592490681004,,359.0005538947965,356.1191757663729,350.7193709439808,358.94438504934817,495.84521048642455,359.95895120899826,363.50926558435856,453.5015136143188,38.34569837038109,435.6592490681004,,356.73374717210737,354.53055027370397,349.2601445826117,356.6562403283384,499.07969059141647,358.39290570445087,362.01330816172015,455.0399834061006,4.64046749145307,340.0794769279846,,285.5895447608651,281.4935496422828,276.56556486728476,285.5837422751803,396.7458247950515,284.97066508256864,288.0554243737805,362.5143836116263,1.2781899456793697,14.52197496893668,,11.96668512982655,11.87063919221243,11.690645698132693,11.964812834978272,16.52817368288082,11.99863170696661,12.116975519478618,15.116717120477293,2.3202337457265347,217.82962453405017,,179.57186244382967,178.0505846870964,175.35180280910524,179.54571180430366,247.1139852169643,179.9858364549793,181.76855529407902,226.36613935921397,52.999999999999986,0.0,0.0,12.061549749156368,0.0,5.216658989158276,0.0,54.82957028404954,3.606407379064259,5.626079356045744,5.762397577884325,0.0,-0.09525720048928332,2.2575483870496846,0.0,0.0,0.0,34.859897007938144,610.9976804188243,93.73127171900211,198.6003523700232,253.6026656580971,292.76392511682724,296.76392511682724,296.76392511682724,659.0,136.96019863560338,111.84943298032927,65.13187525900486,96.69,96.69,0.9,7.578225392499429,6.0,4.381281962404719,5.397299829498525,,5.4099629274715095,5.40404906311303,5.40398537417902,5.410075087463314,5.4239133457544995,5.405752878022871,5.406579808925639,5.419250943172585,0.1460427320801573,0.1799099943166175,,0.18033209758238364,0.18013496877043433,0.18013284580596733,0.18033583624877714,0.18079711152515,0.18019176260076236,0.18021932696418796,0.18064169810575284,2.5759536557129543,2.784511085606513,,2.786854528909954,2.785760787761308,2.7857490022818334,2.7868752608134195,2.789429863100875,2.786076022940126,2.786228983624619,2.788569892202156,321.78000000000094,461.4512045584993,185.91518640301197,,183.93851532415596,184.79451238497262,184.89216078824992,183.91926307744708,183.07912038835653,184.59703437071988,184.50277461465004,183.4257710414347,15.381706818616642,6.197172880100399,,6.131283844138532,6.159817079499088,6.163072026274998,6.13064210258157,6.102637346278551,6.153234479023996,6.150092487155002,6.114192368047823,7.232988604753359,6.323902871307007,,6.313213834587612,6.31785675254828,6.318385029127525,6.3131091623590665,6.308530699921343,6.316787545443784,6.316276790597403,6.310422356838096,5.762397577884325,25.42467110683356,6.710223615629235,7.603740159707913,-0.4787611656408901,12.127251000076733,-0.09525720048928332,3.606407379064259,0.0,392.5909595287489,222.40314073465638,-621.4941220628904,-30.517410172549045,-11.509150408572042,-34.52745122571613,300.1048086148323,838.6274309833215,25.541281735143855,15.530137610802251,23.295206416203374,3158.0,42.0,2.0765762363135707,1.0322840436958765,0.0,0.0,0.3333333333333333,0.1267847121758168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23470804841064383,0.0891018386190087,0.40908450364952886,0.15780018958631392,21.509860921691388,17.878538414772834,14.401887240964333,10.343988757186528,13.052699477205438,7.915528483771618,10.23450689467964,5.533937891382296,7.551459367980932,3.5026386738272905,6.113203533354871,2.4414547516615897,4.0616280436548875,1.3898157262810875,2.690785824624372,0.7975941692865239,4.155794311333365,1.9068180941341122,4.941451737972223,2.0038100861460673,6.601107638266976,2.356447932578185,98.58058484029593,53.58687316914421,34.52437795648054,28.62773751145837,26.124479176682726,26.124479176682726,150.0,169.0,62.23903199999999,30.848967999999992,0.4444444444444444,154.09,10.0,6.638888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,54.0,0.0,1.0,56.0,12.0,2.0,8.0,48.0,14.0,32.0,42.0,0.0,0.0,0.0,21.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,4.0,3.0,1.0,30.0,9.0,0.0,4.0,3.0,0.0,3.0,7.0,0.0,0.0,2.0,0.0,2.0,3.713572066704308,5.580437122962544,4.219507705176107,4.629862798578463,5.032070574816321,5.508375678313591,5.511915505018715,5.524331792953929,5.517703868984534,5.736773890061268 +69085357,O=C1COC2(CCN(S(=O)(=O)c3ccc(-c4ccc5cccnc5c4)cc3)CC2)CN1C1CC1,0,26.59016393442623,6.170627868852458,3.6557377049180326,7.5810564663023685,160.20139347270202,105.2230266393443,1.6250617119823438,6.253452459016392,4.612491286064449,7.708320737704916,230.2128427771609,29.757575757575758,6.293875757575758,4.454545454545454,6.287878787878788,143.3212495402774,114.35827071212125,1.9598457025757583,6.46644090909091,2.617891881780771,7.747879090909087,279.44818178768645,23.84873949579832,6.355352941176469,3.907563025210084,5.879551820728291,153.00690697177896,89.63380645378153,1.6593848366453112,6.469192436974787,3.2336990351696238,7.829905277310922,232.3153295186788,20.339506172839506,6.21475925925926,3.376543209876543,4.244855967078189,155.9333430327396,74.20428376543214,1.5129790933322778,6.319772839506174,2.9231252857796064,7.77134740740741,204.660120804003,16.308108108108108,6.14745945945946,2.854054054054054,3.120720720720721,157.7455295194214,56.79371787567568,1.3429254740839298,6.2365032432432415,2.976730897564232,7.7356937081081085,177.02634218339898,13.941489361702128,5.930643085106386,2.601063829787234,2.5531914893617023,162.46943706491035,48.656875138297885,1.1987338929766012,6.002762234042551,2.5624671657473073,7.553183457446808,154.77731141752747,15.493589743589743,5.918896153846154,2.717948717948718,3.036324786324786,159.62394032787802,54.81440756410259,1.27456460331675,6.00541282051282,2.6230116334282996,7.538032615384616,161.84571543959132,16.115107913669064,5.962438848920862,2.726618705035971,3.3621103117505995,161.85180008545137,57.4745084388489,1.247346113360511,6.04150215827338,2.829025668354205,7.596881179856117,158.308771984677,19.196428571428573,6.138935714285714,2.955357142857143,3.8541666666666665,161.39301703861278,70.23725216964283,1.318472354426536,6.220588392857143,2.9998622134038793,7.764103732142858,175.77254020913054,9.52378392905133,0.11983439935501204,0.012586476861085634,0.692824509540446,3.9231389411448534,1.5404136148161136,43.927218727223845,0.2767443821648433,0.11280596613813483,1.7387767182811822,0.07487644181671595,51.41396183532158,2.069857402294921,1.9202234655196282e-05,-0.005792772671956918,0.1670860716816106,0.47954914187109815,-0.29815407884607337,9.050063218131328,-0.02357713328307551,0.005164302118199125,-0.22661332491965114,0.00629311605710419,0.8610991453031647,0.5756788068627068,0.015394034313537447,-0.0007434775360521873,-0.1160232972522521,0.1728491808799126,0.03511370814618592,2.5472862117484523,0.011781298402812845,0.013102850503275953,0.2791956261581787,0.010368690157385126,-0.2865938516267644,-0.9984854064850484,-0.00432214475068089,0.0010457100920629593,-0.13139969674951318,-0.25122142557220745,0.06363925211362709,-4.377635973631471,-0.006207047075042467,-0.004850410582579236,0.06603306875592399,-0.003693777376319296,-0.44973775864937376,-2.4660081204558493,-0.02301042948350115,-0.00022679724180436667,-0.04479615331536857,-0.6786551130544684,-0.15313202330890693,-11.347671630989925,-0.04125487123787504,-0.023863963479738706,-0.2447355687527835,-0.014246946823361953,-9.33059408230904,0.3978240235123254,-0.013797008353965757,-0.0006250690492202306,0.03380611480556015,-0.2997618144541585,0.16487244481292593,1.7879941800834225,0.02782810403954881,-0.011869333769805722,-0.2570767305297342,-0.007519666877755325,3.460700764505798,0.3846860163038609,0.010471254280969334,6.491094876172657e-05,0.020395330728574475,0.2822344650482248,-0.09552474945359613,1.6840235446340575,-0.0026837168700806074,0.009417194853878449,0.07847459291745729,0.007790007111405152,-1.0961148619680183,0.6969968233958925,0.01383345062729707,0.0017496242448788919,0.07979018558869647,0.5897622133413933,-0.00030153836667585484,3.4309042942409276,0.011717756257131553,0.01340318588450919,0.014345879774758563,0.0049304232617131336,3.7787634423532577,1.3324807079510115,-0.013912868324567071,-0.002965370030526447,0.016630993972434442,-0.03003784824867869,0.125448251607524,6.2525263843100936,0.03488778640094648,-0.008795032297385446,-0.2566800911765865,-0.00941744840336703,8.549516710745982,,,0.48137254901960785,1.2647058823529411,0.6029411764705882,0.0,0.6617647058823529,-0.058823529411764705,0.9300210453496379,0.01411745531957663,0.029293925907811925,0.993882108609004,0.23026548820806994,0.25309392595391506,1.923903153958642,0.483359414161985,2.07574941731766,1.6033214234952935,0.19011783068939364,0.2157353634434741,0.0,0.47242799382236633,7.822495530229522,1622.0,376.40829999999994,223.0,462.44444444444446,9772.285001834824,6418.604625000002,99.12876443092297,381.46059999999994,281.3619684499314,470.2075649999999,14042.983409406814,1964.0,415.3958,294.0,415.0,9459.202469658308,7547.645867000003,129.34981637000004,426.78510000000006,172.78086419753086,511.36001999999974,18443.579997987305,2838.0,756.2869999999998,465.0,699.6666666666666,18207.821929641697,10666.422968000003,197.46679556079204,769.8338999999996,384.8101851851852,931.7587279999997,27645.524212722776,3295.0,1006.7910000000002,547.0,687.6666666666666,25261.201571303816,12021.093970000005,245.102613119829,1023.8032000000002,473.54629629629625,1258.9582800000003,33154.93957024848,3017.0,1137.2800000000002,528.0,577.3333333333334,29182.92296109296,10506.837807000002,248.44121270552702,1153.7530999999997,550.6952160493829,1431.1033360000001,32749.87330392881,2621.0,1114.9609000000005,489.0,480.0,30544.254168203144,9147.492526000002,225.36197187960101,1128.5192999999997,481.74382716049377,1419.99849,29098.134546495166,2417.0,923.3478,424.0,473.66666666666663,24901.33469114897,8551.047580000004,198.83207811741298,936.8444,409.1898148148147,1175.9330880000002,25247.931608576248,2240.0,828.7789999999999,379.0,467.3333333333333,22497.40021187774,7988.956672999997,173.38110975711103,839.7687999999998,393.23456790123447,1055.9664840000003,22004.919305870106,2150.0,687.5608,331.0,431.66666666666663,18076.017908324633,7866.572242999997,147.66890369577203,696.7058999999999,335.98456790123447,869.5796180000001,19686.52450342262,580.9508196721312,7.309898360655734,0.7677750885262237,42.26229508196721,239.31147540983605,93.96523050378293,2679.5603423606544,16.881407312055444,6.881163934426224,106.06537981515211,4.567462950819673,3136.2516719546165,136.6105885514648,0.0012673474872429546,-0.38232299634915656,11.0276807309863,31.65024336349248,-19.67816920384084,597.3041723966677,-1.5560907966829838,0.34084393980114225,-14.956479444696974,0.41534565976887655,56.83254359000887,68.5057780166621,1.8318900833109562,-0.08847382679021029,-13.806772373018001,20.5690525247096,4.1785312693961245,303.1270591980658,1.4019745099347285,1.5592392098898384,33.224279512823266,1.23387412872883,-34.10466834358496,-161.75463585057784,-0.7001874496103041,0.16940503491419942,-21.286750873421134,-40.697870942697605,10.309558842407588,-709.1770277282983,-1.0055416261568797,-0.7857665143778362,10.697357138459687,-0.598391934963726,-72.85751690119855,-456.2115022843321,-4.256929454447713,-0.041957489733807835,-8.287288363343185,-125.55119591507665,-28.329424312147783,-2099.3192517331363,-7.632151179006882,-4.41483324375166,-45.27608021926495,-2.6356851623219613,-1726.1599052271722,74.79091642031717,-2.5938375705455625,-0.11751298125340334,6.355549583445308,-56.3552211173818,30.996019624830076,336.1429058556834,5.231683559435177,-2.231434748723476,-48.33042533959002,-1.4136973730180011,650.61174372709,60.0110185434023,1.6335156678312162,0.010126108006829344,3.181671593657618,44.028576547523066,-14.901860914760995,262.70767296291297,-0.41865983173257476,1.469082397205038,12.242036495123337,1.2152411093792037,-170.99391846701087,96.88255845202906,1.922849637194293,0.24319777003816598,11.09083579682881,81.97694765445368,-0.04191383296794382,476.89569689948894,1.628768119741286,1.8630428379467774,1.9940772886914404,0.6853288333781256,525.2481184871028,149.23783929051328,-1.558241252351512,-0.33212144341896205,1.8626713249126574,-3.3642390038520134,14.050204180042686,700.2829550427305,3.9074320769060056,-0.9850436173071698,-28.74817021177769,-1.0547542211771073,957.5458716035499,0.6864202366599287,0.5796201773625053,0.42139025850019196,0.3401222080160316,0.2679061146330964,0.19494545531554988,0.17263118462399502,0.11338595192317184,0.10935347554519588,0.06414689812524726,0.06909555055139616,0.03712920843722163,0.0442174055492436,0.023275386826945157,0.028210839625878732,0.013593284023597708,16.013124273217485,5.666183063802136,3.581054474937249,2.163642166726915,0.4458902951774276,-0.41178628342321955,4.04858579542578,0.9715544029386716,6.022785457082804,0.644910429273688,14.548556843747585,10.319762358532191,32.06654458413186,11.678488315563097,2.954626859469488,0.7513993784507342,3.5370815057433043,2.2134811784588497,7.014578997538481,0.2975869948898029,3.7683755888820376,2.4093950495033507,24.441835317602646,14.701028846260861,0.25747683669472304,0.5520379097883116,0.7193296043948965,0.8397644300659073,0.8678984075100248,0.8678984075100248,0.9999985589113126,1343.9781869287312,0.0,2.0,4.0,0.0,11.0,5.0,3.0,1.0,0.0,4.317184962823697,2.47123359454815,1.4228522544175615,0.6681129098715344,0.4918032786885247,0.4918032786885247,152.0181697366125,1718.4023503484127,61.26757131323984,28.17053033358053,57.520667749092354,,18.0,1084.0,15.624341964391272,13.212334168400758,12.514061693864424,43.41323676825548,34.871471161327065,0.0,22.634793699832528,47.364479210081754,4.9839785209472085,4.736862953800049,16.366666666666667,43.0,20.5,0.0,22.5,0.0,0.018627450980392143,-2.0,0.1494416726063199,0.055489981785064146,-0.09395169082125576,0.0,0.13635294117647034,0.0,0.5972677595628407,0.833333333333333,0.4478260869565208,0.5417777777777766,0.833333333333333,31.62071554188769,0.47999348086560545,0.9959934808656055,33.791991692706134,7.829026599074378,8.605193482433112,65.41270723459382,16.43422008150749,0.5776470588235296,0.06109979633401222,0.0814663951120163,0.26272912423625255,0.38461538461538464,0.3953015604946266,-0.9356816054080777,-0.052422882114822704,-0.015339042711607829,-0.04253098206400353,0.6046984395053735,1.4313255074333,0.0319699127713991,0.023464352580873763,0.036700654036751296,-5.5836344145028285,0.7847636589382737,0.6437099824507603,1.4731819260347023,0.9249594470696101,0.6415712128823514,1.348521827297307,0.7783107628222272,1.2187732190754543,0.598220676717214,0.6459115508869371,0.5564019855025614,0.9619422641328925,0.8470610999634346,0.8381624546133309,1.2894760644226508,1.4495309372779368,0.9569938401446345,1.0862203828924202,0.8486415604780839,0.9209273596379667,0.8302459987833124,0.5616805494153362,0.8176198567064813,0.9366400972694076,1.2610234253667856,1.077101159487764,1.1871797013837395,1.3715053300002873,1.0702858557206945,1.0242377467484236,1.2344428993335788,1.134743108036355,1.0688464157365962,0.826113515281233,1.1075433753492205,0.980743180379024,1.3189003100962013,1.326979666187361,1.066915588400903,1.005304761705072,1.1742395910090115,1.0865664305159615,1.3092913033801474,1.1785574627139257,1.3287341974363571,1.4508067264338962,1.367930929076629,1.1504094703109224,0.8671587657437081,1.1371749056682803,0.911458336864656,0.8835399369460081,1.0784485196165026,0.8138159023372825,0.880109197554078,0.805283251489406,1.1330236208426914,1.2670968718916038,1.1187265744397714,0.9224852281711657,1.0013425397335325,0.8298810536815685,0.8699085315153804,0.8691143999522589,0.8665351066707419,1.0072985988079342,1.0000584169258415,1.03625718708377,0.8477434332405495,0.7896334318497049,0.8102822662425895,1.036347082972971,1.1297530066696684,0.9111406199009774,0.71283307376626,0.9141267280977391,0.8611836383749557,0.9682037954805448,1.1069996770917143,1.0644882414814811,0.9138553519627748,1.1720383993948371,0.9636846547479111,0.9416252511432877,1.1042550168100425,1.3589999881781034,1.270014356072919,1.1154826554361077,1.1403001226521574,0.9098231789756713,1.0782328954654263,0.9915301695995506,1.3004716954643523,1.56562850327143,1.416489967426558,0.8167135942174131,8.5,0.24212223242526276,5.388888888888891,2.5,2.320555555555556,1.4688888888888887,0.7780498866213151,0.5841836734693877,0.4368779919375157,0.3596913580246914,7504.308623773606,8349.559977493966,3694.4939269078095,3425.7993568237966,19.965290911456737,0.4858976205326574,10.264203564337619,0.9451378556856554,1.0,0.38461538461538464,1.6135523747391893,3.4595037430147366,4.507885083145325,5.262624427691352,5.438934058874362,5.438934058874362,0.21794871794871795,0.007810394594363316,0.09623015873015875,0.04032258064516128,0.04378406708595389,0.03264197530864199,0.019451247165532877,0.015788747931605077,0.012135499776042101,0.009721388054721388,0.49583477724089864,24.34319526627219,9.707555300201092,5.086364364685147,198.9421901983902,1.0,4.509063038374029,237.03723116690455,,171.85266881197322,189.48197999988446,190.44957248413388,171.86681809683836,222.8504701438762,190.07178539421756,189.46101763418363,218.30516485868972,0.21733561131947068,0.00016023975384821883,-0.46023781999447205,0.2411665138585233,0.12223608418292618,-0.1935545596184992,0.20602404341439812,-0.08519462291751868,0.045780398812198086,-0.13032916908599007,0.08404667615628164,0.01674835228728836,0.06044643716733822,0.12846089600643204,-0.05906955093611949,-0.16746419281444147,0.04405889861995855,0.022794986884336,0.05798878885472834,0.04257104809374339,0.11615387866304037,0.16057014291873517,0.1384773355385371,-0.005574241731160919,-0.10484124943650502,-0.03606764646832702,0.08308203348754757,-0.1896579796760817,-0.06403582165736292,0.04131309377009369,-0.09965657058361485,-0.02242880967081466,-0.04299781960680821,0.037976738509127896,-0.04933163604863861,-0.008747385779953692,-0.2589315485133533,-0.1920185656818978,-0.01801912038670403,-0.06465728723292725,-0.17298778433180415,-0.09940967921605069,-0.2583289349925817,-0.14907211815884844,-0.21154877083820597,-0.1407515790726194,-0.1902727543896372,-0.18147977221041323,0.041771634727957634,-0.11513395509324345,-0.04966195513796192,0.04879462885627981,-0.07640866636415425,0.10703128252512072,0.04070355993140343,0.10055526266463811,-0.10521902498730705,-0.1478491906562103,-0.10042767384916762,0.06731052502023456,0.040392140263747,0.08738103864440472,0.005157197639826888,0.02943794633088659,0.07194098126075109,-0.062012402730548026,0.038336675833983216,-0.00969745744823122,0.0834813545441982,0.04513207020337326,0.10403815836326315,-0.021319400856111097,0.07318486313720063,0.11543806037125592,0.1390082597528392,0.115166516902847,0.15032916809448726,-0.00019575155904594553,0.07810429145414181,0.04234144218382669,0.11881628555085928,0.008250558926818257,0.06584745671785423,0.07349683446797195,0.13991085033821643,-0.11610078908435878,-0.23559968871786985,0.024004627064169344,-0.007656585376992288,0.08143803092943926,0.14233831700423813,0.12606502118682758,-0.07796602075652297,-0.1476210766327262,-0.1257731827911808,0.1662878409979375,26.46189789123372,24.752882364721167,3.8161129933002624,17.058243881577294,35.146486776152365,41.84620910641601,44.54692123762503,44.72464134585751,44.72464134585751,70.57548018880044,54.51292839883998,6.464006243439384,7.335002357078119,0.0,16.062551789960455,14801.036680898556,14126.576535849546,1554.8954751051642,244.0,59.0,79.0,101.0,135.0,152.0,175.0,196.0,229.0,477.1722273440008,39.0,5.2832037287379885,6.171700597410915,7.084226422097916,7.98514393119862,8.898502209646642,9.802948727157515,10.71710304904691,11.623258596654575,12.538124411967862,0.6885245901639343,0.9839344262295083,1.1186265034140694,0.6518328144556016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6953117797192501,0.9717775634844102,1.0061430635320527,0.649751101961007,10.0,1.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,0.0,1.0,2.0,1.0,0.0,0.0,9.636772684650527,6.606881964512918,0.0,15.930470882759089,0.0,9.77851570501903,8.417796984328938,4.305215991296234,0.0,30.33183534230805,61.07565774894448,30.714421427050986,22.5579914100303,286.9814488368558,-679.2871306503619,-38.05801991444457,-11.135854600825603,-30.876687756834627,438.9996185734683,1039.1152196980509,23.20955139879527,17.034675732754927,26.643979992257723,0.5,0.8156790542979951,0.1534566653793422,75.80396949332236,0.1049626083989079,36.910645465947354,0.18432094570200486,9.0,0.10256410256410256,0.2720660658025778,0.5833176460376422,0.7600884724053126,0.8873474119921012,0.9170755252346716,0.9170755252346716,3.4463000000000017,,2.053571428571429,1.675270236251707,1.281385004616356,2.0499215542742757,-5.459584580867579,1.5300642594859242,1.486124284371629,-2.3963729217909213,128.58980000000003,17.949197122200808,0.0,14.18910424309392,0.0,42.22166160735347,26.241151182250643,60.79414718776757,0.0,11.126902983393991,4.3694478524670215,1.9459101490553132,5.752572638825633,3.713572066704308,7.3453648404168685,5.476463551931511,9.021960500598263,7.252053951852814,10.73832958879877,41.99999999999999,18.834369594585436,4.40874919606279,0.0,0.0,0.0,1.977507677223507,2.2446993530849615,0.0,60.02000000000001,0.0,38.848462342116775,0.0,0.0,-3.594378390602236,0.0,0.0,0.060611801666011544,68.23621670825824,0.0,0.0,0.0,66.39812377915665,19.554691291279454,0.0,25.683286491704038,65.68963066328534,0.0,22.029827915475046,0.0,39.761801681791695,42.414018562874254,45.84744360146171,474.07446233380927,,344.4837192542417,379.0416141490683,381.0311644461782,344.51240795389225,447.5880489286301,380.2018584995696,378.958113384322,437.3151452826121,45.84744360146171,474.0744623338093,,342.8892000101247,377.69404068837616,380.05128179558926,342.92048608488165,451.1605248686201,378.95454868328386,377.72900816976403,439.0067026391704,4.995357550293958,367.9916645819402,,265.30130021364096,297.3875868149052,299.06305224087043,265.31905273547744,344.44037105618713,297.9858687184656,296.57124931310705,340.3382659086029,1.3484542235724033,13.943366539229684,,10.131874095712991,11.148282769090244,11.206798954299359,10.13271788099683,13.164354380253826,11.182407602928517,11.145826864244766,12.862210155370944,2.5084341171452307,237.03723116690455,,171.85266881197322,189.48197999988446,190.44957248413388,171.86681809683836,222.8504701438762,190.07178539421756,189.46101763418363,218.30516485868972,59.27843137254902,0.0,0.0,0.0,0.0,0.0,0.0,61.37472687545522,4.812337589355989,0.0,5.971016785507686,0.0,0.35364486386359206,3.5031219369188342,-0.4201427497833523,0.0,0.0,39.63481721962143,592.1675505035022,98.42669485909055,211.02972832389892,274.9809900718648,321.02009008917247,331.7749775913361,331.7749775913361,1443.0,153.10421167391894,133.81351690682186,89.6156751406505,88.18999999999998,79.80999999999999,1.0,9.261939088467654,6.285402218862249,4.8221506574310835,5.741369010190442,,5.724854876605578,5.745059161175527,5.747399687070705,5.724838069329227,5.725062390017373,5.743973261132098,5.742194545601717,5.736731814839558,0.14182796051267893,0.16886379441736593,,0.16837808460604642,0.16897232826986844,0.16904116726678545,0.16837759027438903,0.16838418794168744,0.168940390033297,0.16888807487063873,0.16872740631881053,2.796995454657242,2.9714731170336472,,2.9685926316765983,2.97211564072456,2.9725229558097728,2.9685896958290727,2.968628878822667,2.971926608261817,2.9716168939037253,2.970665109563794,343.1100000000013,572.6400081998337,240.4260128492632,,241.07594685139352,238.9052263101728,238.86079864860955,241.07855622327156,242.0043747703162,239.05152540398146,239.24403731423217,240.3864001190537,16.84235318234805,7.0713533190959765,,7.090469025040986,7.026624303240376,7.025317607312045,7.090545771272693,7.117775728538711,7.030927217764161,7.036589332771534,7.070188238795697,7.574032692959183,6.706187834956982,,6.708887447632518,6.699842362274544,6.699656381441374,6.708898271432199,6.712731235178695,6.700454547782346,6.701259539238058,6.706023060798783,34.173581803862746,18.854491996467875,1.06933472812721,2.436006012673374,0.060611801666011544,17.419936219938787,5.099308911789022,1.4811069160772083,-3.594378390602236,414.34540462534085,208.34309855354186,-493.14959618764595,-27.629401921011837,-8.084419609633539,-22.415890735802087,318.7054116846916,754.3779763587044,16.849694898612167,12.366852071454167,19.34302503483858,3888.0,62.0,3.1115838755211223,1.9773902830772097,0.29166666666666663,0.11781233010746706,0.9529415612037277,0.38729344767260976,0.16666666666666666,0.03803628871563654,0.28867513459481287,0.28867513459481287,0.16666666666666666,0.12909944487358058,0.21407617506269555,0.15583681535431798,0.657035770609997,0.3153570390175136,1.0488936271971492,0.4891955739268848,23.338288046437576,19.70708603032518,16.434220081507487,13.264766112625232,15.806460763352685,11.501781863617444,13.637863585295607,8.957490201930575,11.044701030064784,6.478836710649974,9.327899324438482,5.01244313902492,6.721045643485028,3.5378587976956637,4.936896934528778,2.378824704129599,7.361414530887063,4.234193481901402,10.920771279766994,5.536453380162417,16.32876610984119,7.491967387440722,110.14904370018128,60.7088550444575,38.10321007706919,29.7407546272933,28.878014710989753,28.878014710989753,196.0,239.0,70.83141099999999,40.906589000000025,0.5081967213114754,399.08,9.125,7.111111111111112,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,16.0,17.0,61.0,0.0,0.0,66.0,17.0,3.0,11.0,55.0,20.0,39.0,46.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,5.0,0.0,3.0,34.0,8.0,0.0,3.0,4.0,0.0,6.0,4.0,1.0,1.0,0.0,1.0,3.0,3.9415818076696905,8.157170014467543,4.574710978503383,5.1089711948171175,5.62717137228436,6.198351675902669,6.532834530983093,7.001074842460146,7.370815916029672,7.847110774829504 +60834,CNCC[C@H](Oc1cccc2ccccc12)c1cccs1,0,25.9,5.8022125,3.125,5.611111111111112,157.49387384733328,102.40167609999999,1.7227762298032752,5.918415,2.4827246227709194,7.391932625,231.75943906570734,26.166666666666668,6.120333333333333,3.7857142857142856,5.611111111111111,142.30161888724993,99.41633688095243,2.005410711428572,6.295630952380954,2.7179600235155794,7.581763238095234,276.30875875862756,21.859154929577464,6.04243661971831,3.464788732394366,4.535211267605634,149.23788751642846,80.86122956338026,1.7426878690175347,6.186,2.4826986611024178,7.573112366197181,232.3005243510834,17.511111111111113,5.884966666666666,3.011111111111111,3.503703703703704,154.57864905178693,63.02456581111112,1.445764786614245,6.002185555555554,2.2474279835390956,7.491445377777776,188.82739139169212,17.202247191011235,5.95561797752809,2.9101123595505616,3.4157303370786516,155.058951666373,61.6620886516854,1.434614130085213,6.063652808988763,2.388750173394368,7.549800584269661,186.8363909663166,16.86813186813187,5.837986813186813,2.8351648351648353,2.6300366300366305,154.52772098855047,60.17737059340659,1.462300382290472,5.955265934065935,2.185761769095103,7.451227142857143,185.40638429889077,16.892473118279568,5.75010752688172,2.7204301075268815,2.379928315412186,154.37670746050688,60.34624721505377,1.5065311036696984,5.874338709677421,2.1139652196999874,7.36645440860215,185.94559485950575,15.526881720430108,5.647387096774193,2.4731182795698925,1.956989247311828,153.78020916602023,53.87753674193549,1.4910052088433654,5.780666666666667,2.064117881322183,7.279034258064514,178.63736728254412,11.170454545454545,5.541215909090909,2.090909090909091,1.3295454545454546,157.95820941482296,36.27557106818181,1.2496976962707842,5.64859659090909,2.0027356902356908,7.188017568181817,144.91321253734017,10.2975,0.06498993749999997,0.012312137444834184,0.484375,2.9975,1.513771569912943,47.11650294,0.31077477345421933,0.06685399999999994,0.33297132201646096,0.036853024374999974,55.46771761227372,0.7644047619047615,0.001638693452380981,-0.003893345649179105,0.19717261904761904,0.7059391534391538,0.019942536091432865,3.5276127409523834,0.01574195159162167,0.0026600476190476894,-0.024157674815468096,4.229110119046701e-05,2.235335321583135,-0.25806338028169035,-0.006994972711267572,-0.0022519997689565236,0.040272887323943664,0.1432668231611892,0.1389383992608463,-1.2028194512676047,0.005714664087004195,-0.006674070422535151,-0.03308929666821233,-0.003988497966549303,-0.6279994026838126,-0.06638888888888894,-0.0003621874999999893,0.0007885964506195142,0.00034722222222222224,0.16558641975308638,-0.020855559913610735,-0.2326779977777777,-0.02016918783068577,0.001184111111111132,0.008224189338515459,0.0001467881249999939,0.6579235003488579,-0.3930056179775283,0.0026748939606741746,0.0015305006037610166,-0.03634129213483146,-0.04980961298377026,-0.00177760976633139,-1.7500435433707862,-0.006250604751148591,0.0015029101123595892,0.03403038110155513,0.00074872815308988,-1.4391327241734977,-0.3447527472527472,-0.009114552884615372,-0.0014115894764649584,-0.042067307692307696,-0.4827869352869352,-0.06784204248604866,-1.6160817235164833,-0.0007562060117386074,-0.008791857142857115,-0.04549204888903965,-0.0043598062431318705,-1.2413231968333747,-0.1668548387096775,-0.007036819220430101,-0.0003086726937581373,-0.09055779569892473,-0.48226702508960567,-0.02236677682554673,-0.7781614313978492,0.012894395139990023,-0.007290720430107516,-0.03329185611088987,-0.003828570880376343,-0.7021386603000792,-1.65986559139785,-0.0028724375000000026,0.00014384280288679886,-0.11071908602150538,-0.38949522102747913,-0.1781851468182137,-7.577547328172046,-0.045506387586951365,-0.004462870967741941,-0.0010995209043172902,-0.0017227348588709634,-7.465947133814036,-1.5503409090909095,-0.001283715909090922,4.211193265945055e-05,-0.06960227272727272,-0.3312121212121211,-0.3305473765510765,-7.28191465818182,-0.061730280031954014,-0.0030120681818182073,-0.011628261784511767,-0.0002601675568181744,-11.04770907635462,,,0.5031746031746033,1.2857142857142858,0.6904761904761905,0.023809523809523808,0.5952380952380952,0.09523809523809523,0.7575841491800018,0.0015653412862753108,0.013851055571989597,0.7922747912033705,0.2527178942770028,0.24163169597829787,1.5498589403833722,0.4943495902553007,2.057226114993784,1.7730600861454031,0.0888734727030656,0.09932631545246043,0.0,0.2841660288483804,7.427968380700014,1036.0,232.0885,125.0,224.44444444444446,6299.754953893331,4096.067043999999,68.911049192131,236.7366,99.30898491083677,295.677305,9270.377562628293,1099.0,257.054,159.0,235.66666666666666,5976.667993264497,4175.486149000002,84.22724988000003,264.41650000000004,114.15432098765433,318.4340559999998,11604.967867862357,1552.0,429.01300000000003,246.0,322.0,10595.890013666422,5741.147298999998,123.73083870024496,439.206,176.27160493827165,537.6909779999999,16493.33722892692,1576.0,529.6469999999999,271.0,315.33333333333337,13912.078414660824,5672.210923000001,130.11883079528204,540.1966999999999,202.2685185185186,674.2300839999998,16994.46522525229,1531.0,530.05,259.0,304.0,13800.246698307195,5487.92589,127.68065757758397,539.6650999999999,212.59876543209876,671.9322519999998,16628.438796002178,1535.0,531.2568,258.0,239.33333333333337,14062.022609958092,5476.140724,133.06933478843297,541.9292,198.90432098765436,678.06167,16871.98097119906,1571.0,534.76,253.0,221.33333333333331,14357.033793827139,5612.200991000001,140.10739264128196,546.3135000000001,196.59876543209882,685.08026,17292.940321934035,1444.0,525.207,230.0,182.0,14301.559452439882,5010.610917,138.663484422433,537.602,191.96296296296302,676.9501859999998,16613.275157276603,983.0,487.627,184.0,117.0,13900.32242850442,3192.2502539999996,109.97339727182901,497.07649999999995,176.2407407407408,632.5455459999998,12752.362703285935,411.9,2.599597499999999,0.49248549779336737,19.375,119.9,60.55086279651772,1884.6601176,12.430990938168774,2.6741599999999974,13.318852880658438,1.474120974999999,2218.7087044909485,32.10499999999998,0.06882512500000121,-0.1635205172655224,8.28125,29.64944444444446,0.8375865158401803,148.1597351200001,0.6611619668481101,0.11172200000000296,-1.01462234224966,0.0017762262499996144,93.88408350649166,-18.322500000000016,-0.4966430624999976,-0.15989198359591317,2.859375,10.171944444444433,9.864626347520087,-85.40018103999994,0.40574115017729784,-0.4738589999999957,-2.3493400634430754,-0.2831833556250005,-44.587957590550694,-5.975000000000005,-0.03259687499999904,0.07097368055575627,0.03125,14.902777777777775,-1.877000392224966,-20.941019799999992,-1.815226904761719,0.10657000000000189,0.7401770404663912,0.013210931249999452,59.213115031397216,-34.97750000000002,0.23806556250000155,0.1362145537347305,-3.234375,-4.433055555555553,-0.1582072692034937,-155.75387535999997,-0.5563038228522246,0.13375900000000343,3.0287039180384068,0.06663680562499932,-128.0828124514413,-31.37249999999999,-0.8294243124999989,-0.12845464235831122,-3.828125,-43.933611111111105,-6.173625866230429,-147.06343683999998,-0.06881474706821328,-0.8000589999999974,-4.139776448902608,-0.3967423681250002,-112.96041091183709,-15.517500000000005,-0.6544241874999994,-0.028706560519506773,-8.421875,-44.85083333333333,-2.0801102447758457,-72.36901311999998,1.199178748019072,-0.678036999999999,-3.096142618312758,-0.3560570918749999,-65.29889540790737,-154.36750000000004,-0.26713668750000025,0.013377380668472294,-10.296875,-36.22305555555556,-16.571218654093876,-704.7119015200003,-4.232094045586477,-0.4150470000000005,-0.102255444101508,-0.16021434187499958,-694.3330834447054,-136.43000000000004,-0.11296700000000114,0.003705850074031648,-6.125,-29.14666666666666,-29.088169136494734,-640.8084899200002,-5.432264642811953,-0.26506200000000224,-1.0232870370370355,-0.02289474499999935,-972.1983987192066,0.690159669702207,0.6141933183483064,0.4513626693635356,0.3515865845421363,0.2860640592727712,0.19902327082042695,0.18309159648840279,0.11250658753560625,0.11912093435360939,0.062500702035052,0.0777025479176166,0.03253759739078042,0.05173808906031366,0.019259169183008507,0.03423548547750749,0.01049138125704513,16.004502911901724,5.655497197582008,3.520465915623626,2.155190654665211,0.3871146039397732,-0.516646367974678,3.239413313276025,0.9879344960925045,6.00839008910631,0.6503240711095709,14.54085137612704,10.311404931945754,32.06224577413475,11.666678718779377,2.9363811829932414,0.7786753384261825,3.4631158724372266,2.205125571910474,3.5101804937407874,0.6099992737191482,3.6766386772713013,2.4011375838031745,24.440718342947054,14.706817966696864,0.2542778371439783,0.5571459670564614,0.751766469086316,0.8698906720706707,0.8999674155253806,0.9088725952030813,1.5942531458122304,688.0195251327873,0.0,1.0,1.0,0.0,11.0,2.0,2.0,0.0,0.0,3.894231819534744,2.1937151490463616,1.100977500432693,0.4377443751081733,0.26887218755408604,0.21887218755408533,104.5679975120938,769.0323112303652,32.08568788370575,19.22580778075913,38.47976295142074,,10.0,358.0,0.0,0.0,6.103966387748303,0.0,18.71508986212249,15.64959562263089,11.336785877934737,7.04767198267719,65.29415499062674,4.736862953800049,10.566666666666668,27.0,14.5,0.5,12.5,0.003174603174603248,0.0,2.0,0.103460451977401,0.06373456790123444,-0.03972588407616656,0.02128427128427124,0.05904132231404913,0.0,0.5458333333333335,0.7682539682539679,0.4423728813559325,0.48209876543209906,0.7469696969696966,15.90926713278004,0.03287216701178153,0.29087216701178153,16.63777061527078,5.307075779817059,5.074265615544255,32.54703774805082,10.381341395361314,0.6549586776859508,0.047318611987381694,0.0,0.2365930599369085,0.2222222222222222,0.4017568503892345,-0.5805523127660334,-0.02543773335393548,-0.014513807819150832,-0.036284519547877085,0.5982431496107656,0.8644816977395159,0.034852204487872476,0.021612042443487894,0.036020070739146495,-5.373223182588417,0.7845177400894809,0.8990498941250932,1.3396582036543179,0.6949308755760368,0.7107774997683254,1.0232882291633365,0.7863150025510848,0.8771706022481747,0.8640683963776077,1.0187973288524232,0.9224070927130952,0.9000068570852569,0.9975072576756974,1.318281544912512,1.4813419897695754,1.0915038618809634,1.0371514603327499,0.9470379360239952,0.9936073514569451,0.950197901076298,1.2502920490604505,1.1793705164768933,1.3774074678210317,0.950314194367901,1.0278384721210652,1.3634360703916664,1.3582831239589084,1.1965591397849462,1.10150434003645,0.9822120031779763,1.0215119498319032,1.0566354209981794,1.2709000209411558,1.1637183987325055,1.49793876313306,0.9475846632416404,0.9989606946160708,1.531340995949989,1.5029253531757856,1.1760782892352302,1.2056551495784564,0.9592581843127291,0.99885322295848,0.9640707190260163,1.4401554805154821,1.2348725499128363,1.7492810961842402,0.9663661295577123,1.0456768286338571,1.3864041864722738,1.3965398931751118,1.161290322580645,1.2377377973708248,1.0113730106380614,1.0424032076944294,0.9956183817959099,1.3277627367098455,1.2766124144414996,1.4760348475276455,0.9868397360782193,1.0746031373101834,1.0191981022868644,0.9401727749160329,1.2120707596253901,1.1349511689849068,1.0115223102742454,1.066247845814696,0.9926382653138777,1.0296082122140013,1.0283744162364703,1.008969999025811,0.995500455119792,1.3418540359780404,0.605271119980143,0.5542413046732627,1.0930280957336107,0.9505531790231406,1.143401345695761,1.3209054870084718,1.2700267362051894,0.70189903468029,0.7585693351715004,0.5024613659741715,1.1438047068293602,1.0893944911606965,0.587724507001914,0.49248640886277495,0.869208211143695,0.9014772411352895,1.1824916760191133,1.0975307691673926,1.1609247014026631,0.6896832259305892,0.7972822967985539,0.433790689767137,1.1922497144789141,2.5,0.012345679012345678,2.000000000000001,0.8402777777777777,0.8055555555555556,0.4305555555555555,0.2808616780045351,0.1962159863945578,0.10431626354245402,0.047808641975308645,3927.206371964045,4442.503514337609,2044.158581054804,1847.9843309955554,11.876704621301052,0.4795767646694244,6.180913044083092,0.9215129765772173,1.0,0.2222222222222222,1.4276962753526186,3.128212945841001,4.22095059445467,4.884183719779189,5.053055907333277,5.103055907333277,0.10869565217391303,0.012345679012345678,0.0666666666666667,0.028975095785440615,0.028769841269841265,0.01594650205761317,0.010402284370538337,0.008175666099773242,0.006954417569496937,0.007968106995884773,0.2948999120015137,15.879017013232515,8.022222222222222,4.05,128.93370099840905,1.0,3.972655376496097,91.65006246616662,,68.54147099103788,70.03375408937954,72.25667145583805,68.55687342443106,101.42484598537791,70.62546468492833,70.77089057174243,86.95239667132502,0.07423207204707565,0.025214571907858533,-0.31622012559749646,0.40706605222734255,0.23550930890380442,0.013174072289242268,0.0748700035196709,0.050653891294496066,0.03978890745576468,-0.07255181818413126,0.0011475612085491704,0.04029975304209213,-0.02506077982827777,-0.10763162699252596,-0.18290892048978852,0.08314402544298047,0.04779543725143926,0.09178293609308348,-0.025528623225694873,0.018388442612270232,-0.09983053254158551,-0.09937581551415563,-0.10822715460104773,-0.011321890096030397,-0.006447088020285404,-0.005572978124497957,0.06405032872260424,0.0007168458781362007,0.05524150784089621,-0.013777217334587767,-0.004938354573430014,-0.06489969442020016,0.017711896238237552,0.02469939239424614,0.0039830686216236495,0.011861376827289442,-0.0381651486261256,0.04115858644538896,0.12430827795893151,-0.07502718376223269,-0.01661705187114938,-0.0011742919484434631,-0.03714289970966988,-0.02011297339766021,0.02248048153228813,0.10220213829668125,0.020316599947704576,-0.025945410882654583,-0.03347926654554476,-0.14024560163048896,-0.11465023703558641,-0.08684863523573202,-0.16106319776044545,-0.044816565348727126,-0.03429969591704344,-0.0024332927777035453,-0.13150831876712124,-0.1366245255403427,-0.11830253600812846,-0.022379200916655326,-0.01620343177564239,-0.10827551912063471,-0.025070601684003085,-0.18695802983003817,-0.16088974982138637,-0.014775529723307621,-0.016515687346083188,0.041491125539793894,-0.10905436368964495,-0.09998415451900099,-0.10388756269820652,-0.01265851004016636,-0.16119112322387474,-0.044198188373392476,0.011683008212936344,-0.22858133888310786,-0.12994002369557267,-0.11770940236938202,-0.16082575860567563,-0.14642883359274644,-0.06675548161279722,-0.003302148958831156,-0.046746091754673376,-0.13459986195938223,-0.1505550773576994,-0.019752533368583753,0.0034203592063634324,-0.14369501466275658,-0.11049612050446075,-0.21836014304990964,-0.15455125494892724,-0.19863349700437502,-0.04505441980761376,-0.03492271260507206,-0.00705959853310342,-0.1991736734794009,15.89271687389039,19.043331696940783,4.508797713853318,14.999451664159686,28.962476545957667,36.60370949404833,38.58019916403306,39.30057232908758,39.350972329087575,43.20174841486946,37.234261809053464,1.8663429267643776,2.085852624501669,0.0,5.967486605815988,3504.840426053123,3118.0855218307406,1099.4219888222688,59.0,30.0,40.0,52.0,61.0,63.0,68.0,72.0,73.0,297.11873522800056,23.0,4.672828834461906,5.5093883366279774,6.364750756851911,7.223295679562314,8.089175678837561,8.955060950631902,9.824931239630352,10.693738757544056,11.565394567823994,0.6583333333333333,0.9581,1.1091355847535145,0.6190492048955125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7115429191616767,0.9486274509803921,0.9876274581209031,0.6451795389782212,10.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,10.05365155780638,11.853478221032208,0.0,0.0,0.0,0.0,0.0,0.0,11.336785877934737,42.46456947923127,36.491449510443694,16.684193031092107,0.0,213.8108840077564,-308.963999207465,-13.537701349184701,-7.724099980186625,-19.310249950466563,318.3788815198502,460.0683120229002,18.54798653452105,11.501707800572504,19.169513000954176,0.5,0.993648831728372,0.3350789481047443,0.0,0.0927620589797012,0.0,0.006351168271628123,5.0,0.2608695652173913,0.2682667352691535,0.5877969206021768,0.7931243187050248,0.9177470331610262,0.9494784253450579,0.9588735165805133,4.630900000000003,,1.0178571428571428,0.44679187422285627,0.3114832760661568,1.0171244600138196,-1.1763381514864872,0.4315330477356183,0.46011389749064446,-0.5607402311299865,90.17970000000005,4.736862953800049,0.0,5.316788604006331,0.0,12.524788010674312,13.592428388589765,64.85451358032171,0.0,5.749511833283905,3.8501476017100584,0.0,5.117993812416755,2.3978952727983707,6.594413459749778,4.442651256490317,8.174984532943087,6.293419278846481,9.81230384711351,26.333333333333332,20.930129309439828,0.0,0.0,0.0,1.7533271657428402,2.3884813817502315,2.2368400415721847,0.0,38.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.36542339014058,10.05365155780638,0.0,5.749511833283905,13.592428388589765,0.0,0.0,17.40193520437561,59.9773663866204,0.0,10.772448428929591,0.0,24.7619681958205,28.461716766467067,28.07365423866111,183.3001249323333,,137.4121299739151,140.02495657169024,144.48367783776501,137.44394192908726,203.59217492386892,141.20983098435804,141.49796077229524,174.17181250033104,28.07365423866111,183.30012493233326,,136.58815038207848,139.62071630453616,144.20185963560994,136.62055546145706,204.08107278355357,140.8193963221211,141.08166724599434,174.46553357378014,4.7866587541118095,131.14259248969068,,98.04062219313053,99.36359296139784,103.70291506214062,98.06974872423518,157.51389750053414,100.45788910818129,100.77071354720552,129.7561590186532,1.3368406780314814,8.728577377730156,,6.543434760662625,6.667855074842392,6.880175135131667,6.544949615670822,9.694865472565187,6.724277665921811,6.737998132014059,8.293895833349097,2.39736387063655,91.65006246616662,,68.54147099103788,70.03375408937954,72.25667145583805,68.55687342443106,101.42484598537791,70.62546468492833,70.77089057174243,86.95239667132502,37.94509803921569,0.0,1.9755924561182499,0.0,0.0,0.0,0.0,39.505098324836126,1.896396132527085,3.207700066137566,6.34462962962963,0.0,0.10023715041572134,0.0,0.0,0.0,0.0,25.80718155912885,528.8097387743026,57.10785101410474,125.12851783364005,168.8380237781868,195.36734879116756,202.12223629333107,204.1222362933311,562.0,116.89856480197199,3.3800267533041453,67.68380906206835,49.5,21.259999999999998,1.0,8.413753139514599,5.523561956057013,4.024389449198971,4.514108294879286,,4.505881456630654,4.507261521787661,4.512747516814491,4.505895728749601,4.5221398305319225,4.507510521026238,4.507213622013896,4.512319122173636,0.19163759281899861,0.21495753785139454,,0.21456578364907875,0.21463150103750767,0.21489273889592814,0.21456646327379053,0.21533999193009154,0.21464335814410657,0.2146292200958998,0.21487233915112552,2.13431055445386,2.249145013727349,,2.2473208784995973,2.2476271124450915,2.2488435182557276,2.247324045936753,2.2509226403830387,2.2476823549376266,2.2476164851433347,2.2487485838561687,233.99999999999966,174.40201297979763,113.33858319736434,,113.67866246803666,113.81718841396076,113.32565263825724,113.67670343319872,111.68772387583543,113.76124322238721,113.75669087522381,112.77603332610522,8.304857760942744,5.397075390350683,,5.413269641335079,5.419866114950513,5.396459649440821,5.413176353961844,5.318463041706449,5.417202058208915,5.416985279772563,5.370287301243105,5.903300398452998,5.472316994928314,,5.475313062685781,5.476530895560604,5.472202900536021,5.475295829445384,5.457644142131272,5.4760392391914285,5.475999221711645,5.467341190705027,6.34462962962963,1.2760964663643237,7.701506939195432,0.0,0.960743575207861,18.824803818132192,1.0588031462585028,0.9378301366843035,1.9755924561182499,269.95561552328,113.78796422733818,-164.42747829469243,-7.204626106805369,-4.110686957367311,-10.276717393418277,169.43798230499073,244.84364710214902,9.871048604815963,6.1210911775537244,10.20181862925621,931.0,29.0,0.802749430154621,0.5018851606461803,0.0,0.0,0.21941609682128765,0.09999217175110767,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.11785113019775792,0.2347080484106438,0.11987542073798935,0.3692267850265122,0.1434154018708827,14.493353063746348,12.898059685314434,10.381341395361318,8.086491444469136,8.581921778183135,5.970698124612809,7.323663859536111,4.50026350142425,6.194288586387688,3.2500365058227034,4.739855422974613,1.9847934408376058,3.2594996107997605,1.213327658529536,2.328013012470509,0.7134139254790688,2.280238966157533,1.2277985261858197,3.8926728626429425,1.7302506626186362,5.860313490593497,2.0835217663289356,69.80469986249723,47.30064636965116,28.60246821663251,23.399828920646083,21.96157784060903,21.79548143586466,106.0,123.0,47.53106699999998,23.826932999999997,0.425,109.03,5.305555555555555,4.833333333333333,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,40.0,0.0,1.0,42.0,16.0,0.0,7.0,35.0,16.0,23.0,26.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,3.0,1.0,1.0,21.0,3.0,0.0,1.0,1.0,0.0,3.0,6.0,1.0,0.0,0.0,1.0,3.0,3.4657359027997265,6.887996908519109,4.038655656361512,4.652769164787371,5.245377981253817,5.691414640662337,5.932245187448011,6.2994661169320585,6.668704627942093,7.028142559536044 +134044,C[C@H](CCc1ccccc1)NC[C@H](O)c1ccc(O)c(C(N)=O)c1,0,20.791666666666668,6.052287500000001,2.9166666666666665,6.125,163.0406332774891,81.78541533333333,1.4168629524245002,6.118572916666667,4.738425925925926,7.60357,206.8464932690839,22.551020408163264,6.289530612244898,3.5306122448979593,5.6938775510204085,147.6064914449245,84.22184328571427,1.7743962196326528,6.426724489795918,3.240362811791383,7.728520734693878,255.57065877252145,18.819277108433734,6.087795180722892,3.216867469879518,4.385542168674699,151.56454012599875,68.83997673493975,1.5463530519270243,6.20704939759036,3.092034805890228,7.58168274698795,214.49713389009273,14.991304347826087,6.002339130434783,2.643478260869565,3.2,158.33056801722984,52.825015904347815,1.2950449707563478,6.089566086956521,2.945893719806764,7.56294987826087,173.31798638941507,12.793650793650794,5.912984126984127,2.2777777777777777,2.642857142857143,161.53930031091485,43.842328,1.1479872876307142,5.983815079365078,3.028439153439154,7.511954222222222,147.99375968281345,11.648,5.788368,2.192,2.128,164.54920955825486,39.959647663999995,1.0704472135172638,5.852468,2.514666666666667,7.420278656000001,136.71178594346483,12.8,6.001545454545456,2.2363636363636363,2.272727272727273,163.65064166112566,43.75564465454545,1.1163674552629363,6.058702727272728,3.3404040404040405,7.602995199999999,144.44804539713886,11.028301886792454,5.905565094339623,2.0943396226415096,1.830188679245283,164.66619154185352,36.15688289622642,1.0919400699709716,5.961545283018868,2.759958071278826,7.528930603773585,136.60244885023377,10.458333333333334,5.63015625,2.15625,1.8958333333333333,164.25481263538452,35.277023729166665,1.0816250448095313,5.701130208333335,2.21875,7.277609749999999,133.90578637866574,7.347222222222224,0.11697343749999996,0.02250275068116836,0.5399305555555555,3.3472222222222228,1.4167247470267885,34.973591659722224,0.22789842521225,0.1109676649305555,1.7484085648148149,0.07174715972222219,50.520725414175,-0.2222222222222217,-0.01706297831632648,-0.012821919010902896,0.14969529478458046,0.6145124716553285,0.20865325416547492,-0.9066918263889034,0.029904160881882632,-0.015461287379535081,-0.26869862528344673,-0.009814792375283429,4.282533863368616,-0.1178045515394909,0.004471592620481943,0.0013262636851757268,-0.09013135876840699,0.014725568942436285,-0.07227737266446584,-0.6227814358266474,-0.015650332501647598,0.0037422497280790103,0.1445521670013387,0.0027474205990629203,-2.765574348007707,-0.4830917874396134,-0.003573220108695642,-0.0007369163161771024,-0.04717693236714978,-0.12367149758454112,-0.08743150599932027,-2.338894097403384,-0.021237010973132613,-0.003727936669685975,-0.005906551932367143,-0.0020008553743961323,-4.324804730132803,-0.3015873015873014,0.009283308531746024,0.0019332113491082842,-0.01942791005291005,0.19576719576719578,-0.21285690486113037,-1.5579431041666654,-0.03171394054065475,0.007577325148809522,0.19281167328042323,0.006551837632275129,-6.0381961758217,0.7164444444444443,0.002396062499999977,-0.0035013428514876887,-0.056263888888888884,0.11911111111111122,-0.11131983174528759,3.402388342277781,-0.0004464590453219932,0.004482751736111077,-0.02864930555555552,-0.0010173770555555648,2.64997606591394,-0.3555555555555555,0.013187585227272732,0.0037519199128029793,-0.03993055555555555,-0.3585858585858585,-0.09073649688288386,-1.7887657892676765,-0.013045354569981816,0.009856842645202034,0.27047821969696967,0.011235963005050505,-4.222402560723744,-1.1247379454926627,-0.007110229952830186,-0.0012359209244734244,0.04969208595387843,-0.37631027253668753,0.12870857531695865,-5.316675148715932,-0.000929089254448117,-0.00996876555948636,-0.2151058045073375,-0.0021586660115303956,-4.3602667492434435,0.7951388888888888,0.00546406249999996,-0.0011564218292631871,-0.011718749999999993,0.263888888888889,0.1075669952903487,3.7861757612847278,0.014268338897109377,0.006798719618055501,0.027271412037037066,0.00198964062499998,4.916644657378588,,,0.47083333333333344,1.1666666666666667,0.5833333333333334,0.020833333333333332,0.5833333333333334,0.0,0.8350382324741671,0.01854080465776405,0.025707471324430714,0.8616985571073476,0.23523177085279456,0.24265298958832038,1.6967367895815146,0.47788476044111494,1.9912534207696322,1.618319720588654,0.15411299744374274,0.21882070273723553,0.0,0.37293370018097827,6.837056096416681,998.0,290.50980000000004,140.0,294.0,7825.950397319477,3925.699936,68.00942171637601,293.6915,227.44444444444443,364.97136,9928.631676916028,1105.0,308.187,173.0,279.0,7232.7180808013,4126.870320999999,86.94541476199998,314.9095,158.77777777777777,378.697516,12522.962279853551,1562.0,505.28700000000003,267.0,364.0,12579.856830457895,5713.718069,128.34730330994302,515.1850999999999,256.6388888888889,629.2796679999999,17803.262112877695,1724.0,690.269,304.0,368.0,18208.01532198143,6074.876828999999,148.93017163698,700.3000999999999,338.7777777777778,869.739236,19931.568434782734,1612.0,745.0360000000001,287.0,333.0,20353.95183917527,5524.133328,144.64639824147,753.9606999999999,381.58333333333337,946.506232,18647.213720034495,1456.0,723.546,274.0,266.0,20568.651194781858,4994.955958,133.805901689658,731.5585,314.33333333333337,927.534832,17088.973242933105,1408.0,660.1700000000001,246.0,250.0,18001.570582723823,4813.120911999999,122.800420078923,666.4573,367.44444444444446,836.3294719999999,15889.284993685273,1169.0,625.9899,222.0,194.0,17454.616303436473,3832.6295870000004,115.74564741692299,631.9238,292.55555555555554,798.066644,14479.859578124779,1004.0,540.495,207.0,182.0,15768.462012996915,3386.5942779999996,103.836004301715,547.3085000000001,213.0,698.6505359999999,12854.95549235191,352.66666666666674,5.614724999999998,1.0801320326960813,25.916666666666664,160.66666666666669,68.00278785728585,1678.7323996666667,10.939124410188,5.326447916666664,83.92361111111111,3.443863666666665,2424.9948198804,-10.888888888888864,-0.8360859374999975,-0.6282740315342419,7.335069444444443,30.111111111111097,10.224009454108272,-44.427899493056266,1.465303883212249,-0.757603081597219,-13.16623263888889,-0.480924826388888,209.84415930506216,-9.777777777777745,0.3711421875000012,0.11007988586958532,-7.48090277777778,1.2222222222222117,-5.999021931150665,-51.69085917361173,-1.2989775976367506,0.31060672743055784,11.99782986111111,0.22803590972222237,-229.54267088463968,-55.55555555555554,-0.41092031249999883,-0.08474537636036678,-5.425347222222225,-14.222222222222229,-10.05462318992183,-268.97282120138914,-2.4422562619102504,-0.42871271701388713,-0.6792534722222214,-0.23009836805555522,-497.3525439652724,-37.99999999999998,1.1696968749999992,0.2435846299876438,-2.4479166666666665,24.666666666666668,-26.819970012502427,-196.30083112499983,-3.9959565081224993,0.9547429687499998,24.29427083333333,0.8255315416666663,-760.8127181535342,89.55555555555554,0.29950781249999714,-0.43766785643596107,-7.032986111111111,14.888888888888903,-13.914978968160948,425.2985427847226,-0.05580738066524915,0.5603439670138846,-3.58116319444444,-0.1271721319444456,331.2470082392425,-39.11111111111111,1.4506343750000006,0.4127111904083277,-4.392361111111111,-39.444444444444436,-9.981014657117225,-196.76423681944442,-1.4349890026979997,1.0842526909722237,29.75260416666666,1.2359559305555556,-464.46428167961176,-119.22222222222224,-0.7536843749999997,-0.13100761799418298,5.267361111111113,-39.88888888888888,13.643108983597617,-563.5675657638888,-0.0984834609715004,-1.0566891493055541,-22.801215277777775,-0.22881859722222192,-462.188275419805,76.33333333333333,0.5245499999999962,-0.11101649560926596,-1.1249999999999993,25.333333333333346,10.326431547873476,363.47287308333387,1.3697605341225,0.6526770833333281,2.6180555555555585,0.19100549999999808,471.99788710834446,0.7302805524402481,0.5739520327545545,0.4587693700234705,0.32206505368211824,0.3090751393451301,0.18152134991896973,0.20171603660810744,0.10357318922753454,0.13091656734436982,0.05724683998743793,0.08651802048528633,0.03342470763687793,0.05880080705719861,0.01964259437903785,0.037504426339274866,0.011892167522296385,8.022241448037825,5.687649981907553,3.544113578162257,2.186506196762908,0.4205890470518119,-0.3523092122446056,3.206069684465118,0.9728411675989698,6.021940214973659,0.9939325812965372,14.540672715399143,10.948260983112679,16.010395506629024,11.69933733151803,1.9947825759762323,0.7516010543713562,3.4893839765277637,2.2362426359137153,7.0082763170197016,1.2558291407158761,3.7022816146004387,2.4322588425195804,20.90179989888078,14.702440891922455,0.2531760396475218,0.6215880804490915,0.8056178617614154,0.891715578658465,0.9159480949848264,0.9159480949848264,1.6481804504493662,673.56704729252,0.0,1.0,2.0,0.0,9.0,4.0,3.0,0.0,0.0,4.114679380727069,1.9751799022327865,0.9064536459234782,0.40645364592347555,0.26572682296173866,0.26572682296173866,136.35675612056133,1443.1034865503323,75.82709828767837,30.064655969798586,60.45388775983102,,14.0,553.0,12.011146117099809,15.007591973753232,17.35480415412886,12.10820789760957,12.841643245852019,17.696185628620217,6.06636706846161,18.19910120538483,24.373259940620173,5.733667477162185,11.300000000000002,28.0,14.0,0.5,14.0,0.0,0.029166666666666563,0.0,0.12744047619047605,0.0529166666666665,-0.07452380952380955,0.09123563218390796,0.14616080402010023,0.0,0.5645833333333335,0.8291666666666665,0.4371428571428575,0.511666666666667,0.7379310344827585,20.04091757938001,0.4449793117863372,0.6169793117863371,20.680765370576342,5.6455625004670695,5.823671750119689,40.72168294995635,11.469234250586759,0.5678391959798997,0.1681415929203539,0.0,0.3097345132743362,0.3157894736842105,0.3851211812227256,-0.9364577258877611,-0.0711689869961111,-0.01950953595599502,-0.05202542921598673,0.6148788187772742,1.4951346443749984,0.05659772923311497,0.031148638424479125,0.04983782147916661,-3.8679648162425226,0.9464912619111915,0.9682335833228605,1.5404294161716345,0.9807730166021394,0.6955076636463713,1.0954608126746976,0.9474236631317843,1.0064606305411252,0.9558705872309401,0.9205305953577129,0.9565768224657673,0.9737196685765815,0.928878083221354,0.7037158693145877,0.6998844061845166,1.507612443342502,0.9304604309353597,1.1963586025100903,0.9365019743138916,1.1643879090237153,0.7182860534579927,0.5825243879946761,0.6804588592895349,1.1018358635439618,1.0250226021204896,0.948668011345168,0.8834599907218966,1.1511813225220189,1.00096518130976,1.1019013847147014,1.02775636302516,1.1060216647600882,0.9527577969418228,0.8590556025255887,0.938044919913488,1.0822198751239587,1.0143352236925014,0.8702026212679004,0.808313752235913,0.9355382024192316,0.862502469867615,1.120008154941034,1.0182821291125879,1.1161844568670263,0.8847036990370473,0.8038129387736338,0.853189093713133,1.0991661833867206,0.8779848771266539,0.8821867500189233,0.9964128784280002,1.1098649517684889,0.9091867219917013,1.0053952583757,0.879072244920646,0.9518591463068418,0.8750053455730932,0.8678023996690112,0.8901859796811548,0.9205070921277922,1.0540470871283723,0.9989425532457469,0.8582924271283189,1.0551300789242912,1.1023104488872122,1.0271820467424748,1.0541431555962968,1.0029151776395553,1.0107607602072917,0.9183270019182307,0.9686112763711365,1.0354957821083053,1.1478849377608158,1.1067364394012138,1.0460442665961929,0.7014499787660015,1.0611152430908948,0.8570259821201055,1.1451997451782594,0.9460018284198356,1.131447685981094,1.1323939703827448,1.0757146185614699,1.0409951808281745,0.8294689272211718,0.6421747057959204,0.7624808796250009,0.9350884244372991,0.8075077800829874,0.842842920332596,0.8341314583377031,0.9072958989129037,0.6627891672647693,0.5838539511791476,0.598501219463682,0.9020884174279749,5.0,0.06193245587184981,2.88888888888889,1.25,1.1244444444444448,0.9236111111111112,0.2653061224489796,0.22395833333333331,0.28344671201814053,0.11000000000000001,4088.5133006377487,4770.559966582601,2172.79490225421,1909.4522816823319,16.302702670992534,0.48440484679609686,8.405594481288077,0.9395062071200825,1.0,0.3157894736842105,1.4702831199940867,3.6097825984883696,4.678508854797678,5.1785088547976805,5.319235677759417,5.319235677759417,0.2,0.0041288303914566536,0.08754208754208757,0.03787878787878788,0.040158730158730165,0.03552350427350427,0.011054421768707483,0.011787280701754384,0.015747039556563366,0.0057894736842105275,0.44961015595580234,20.3136,10.222222222222221,6.682445759368837,141.6828346113938,1.0,4.0737054970607725,138.18261911962676,,117.24404527738577,115.98329533796894,115.52122153883221,117.25666360508578,140.84121498370973,116.73581034081386,117.31729649838877,132.22511383409076,-0.030245746691871384,-0.14587053848294818,-0.5697934084846364,0.2772491633309272,0.18358878821238028,0.14727861188517063,-0.025925041820428943,0.1312170580118393,-0.13933146551484962,-0.1536818285444091,-0.13679694657297356,0.0847678616698372,-0.016033889812558304,0.0382274191136936,0.05893784737550433,-0.16693139115949332,0.004399340098985114,-0.051017230281429654,-0.01780719126265437,-0.06867240301055998,0.033723785486708596,0.08267642352612768,0.038293092154447525,-0.054741382379908346,-0.06575162324319878,-0.03054727795526778,-0.03274783277023097,-0.0873759261848176,-0.036947501353057924,-0.06171382703860332,-0.06687600519156861,-0.09318629978839836,-0.033594801440752574,-0.0033782446798942233,-0.027887590005551247,-0.08560456514979807,-0.041047799081825515,0.0793625350348965,0.08591000169264242,-0.03598223855458582,0.05848646512546927,-0.15024577308178091,-0.044546271350245394,-0.13915822591190974,0.06828408215628828,0.110278385247355,0.09131842511454616,-0.1195191899229443,0.09751228733459354,0.02048381710591328,-0.15559621581808755,-0.10420578778135048,0.03558506224066393,-0.0785754833314722,0.09728449898373419,-0.0019590264606093254,0.04039691867821514,-0.016385932974762082,-0.014180032484832336,0.052453246547612235,-0.04839319470699431,0.11273999900424177,0.16673161276869183,-0.07395498392282958,-0.10712938513768386,-0.06404666613843524,-0.05114618500357603,-0.05724196890712258,0.08882625989625471,0.15469966524993414,0.1566049868531646,-0.0835776312811817,-0.15308342547348147,-0.06078499619052564,-0.05492310437886674,0.092034217072135,-0.11242464573710165,0.09084938735422889,-0.15201970676746215,-0.004076769085099305,-0.08983486825396296,-0.12302948454734933,-0.03008712846456825,-0.08630649527490848,0.10822306238185252,0.04671199390887322,-0.051390243159515146,-0.02170418006430867,0.07883817427385895,0.0759265309059465,0.10825813368333928,0.06260832598479238,0.06126757395778488,0.01559784857261069,0.027731280690456803,0.09731935986808071,12.815930685989118,16.897191760863922,5.733565171428046,13.536386602225617,30.26090834160844,35.74972550825354,37.80214274130156,37.94399537884699,37.94399537884699,47.790082098471174,38.83967329412769,3.6987119386498257,5.251696865693653,0.0,8.950408804343478,7683.153273436349,7277.0193783546265,701.7538603757321,33.0,33.0,39.0,44.0,52.0,47.0,42.0,39.0,38.0,328.1786926280007,25.0,4.762173934797756,5.564520407322694,6.398594934535208,7.220373836723949,8.056743774975313,8.885302512980633,9.723702775394143,10.555995013629378,11.396268045570105,0.611111111111111,0.9744999999999999,1.1290231351148134,0.5696375544639637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6529320359281438,0.9611928104575164,0.9994234037387715,0.6075470435579078,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,2.0,3.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,21.263510870849927,5.749511833283905,0.0,0.0,5.907179729351506,4.794537184071822,0.0,0.0,0.0,36.39820241076966,43.025017565859855,12.586597235060536,11.6674178794453,228.56204278467976,-555.7697193668977,-42.23743030467105,-11.578535820143701,-30.876095520383206,364.9187989052411,887.3337671834346,33.58966798300732,18.486120149654884,29.577792239447817,0.5,0.7641990135487455,0.20855532275521904,98.48940619954509,0.12055091600160804,204.67936571683904,0.2358009864512544,7.0,0.32,0.2632574739408254,0.6463396303954159,0.8376974517185329,0.9272235675940541,0.9524210193125868,0.9524210193125868,2.1353999999999997,,1.0357142857142858,1.2284783620288504,0.9699017285501993,1.0327970942604563,-4.283246429381093,1.098531211750306,1.0260103868809844,-1.8356326906609346,93.81220000000003,15.007591973753232,0.0,5.316788604006331,5.733667477162185,31.911187662438905,6.544756405912575,65.22129102278387,0.0,5.749511833283905,3.9318256327243257,0.0,5.209486152841421,0.0,6.670766320845874,0.0,8.212568398234145,0.0,9.79762691183662,29.33333333333333,14.640677856792713,0.0,0.0,0.0,0.0,0.0,1.6731544769900522,0.0,46.775999999999996,0.0,11.247552441693543,0.0,0.0,0.0,0.0,0.0,-0.7169089434115377,54.19311048551104,11.050456081168516,0.0,5.749511833283905,28.70683175409345,6.4208216229260096,0.0,40.93341686952774,48.53093654769288,0.0,0.0,0.0,27.342602614270255,31.3407377245509,30.22746375005933,276.3652382392536,,234.401781030962,231.86421747910214,230.96161793361858,234.42726078564988,283.46711597966146,233.38007641398184,234.54909213120413,265.2150746226235,30.22746375005933,276.3652382392536,,233.4523762690573,230.73811231390914,230.07254134911432,233.48053011591128,285.9656763968005,232.37308946987764,233.6085826098967,266.28586035884234,4.699001674314127,214.68228039250437,,185.5909472906127,183.4630178129617,182.21822769121763,185.6108579320616,223.04004383904964,184.71180632780806,185.7167752252649,210.14882586736695,1.259477656252472,11.515218259968899,,9.766740876290084,9.661009061629256,9.623400747234108,9.767802532735411,11.811129832485895,9.724169850582577,9.772878838800173,11.050628109275978,2.3495008371570623,138.18261911962676,,117.24404527738577,115.98329533796894,115.52122153883221,117.25666360508578,140.84121498370973,116.73581034081386,117.31729649838877,132.22511383409076,46.13725490196079,0.0,2.0707536008230454,0.0,0.0,5.204449499823744,19.840933531256784,47.97232337946103,2.2856303448835913,3.2857412131519275,0.0,0.0,-0.5319840220038636,0.0,0.0,0.0,0.0,29.162258090779574,453.5374737795168,70.57358975971616,173.26956472744175,224.56842503028855,248.56842503028867,255.32331253245204,255.32331253245204,416.0,121.5636752359292,139.9433679104041,57.82227341648239,95.57999999999998,95.57999999999998,1.0,7.267525427828172,5.643856189774724,3.690540225379886,4.832602962045883,,4.841497565295462,4.841072236886543,4.840314433178088,4.841500083015342,4.8401100081592245,4.841304968746991,4.841523986312618,4.843457735567235,0.15377250939082857,0.20135845675191177,,0.20172906522064427,0.20171134320360595,0.20167976804908702,0.20172917012563926,0.2016712503399677,0.20172104036445795,0.20173016609635908,0.2018107389819681,2.181241587232504,2.4508539753930045,,2.4526928245409465,2.4526049700936494,2.4524484215049345,2.452693344569965,2.452406186782659,2.452653043382998,2.452698281725363,2.453097611189443,264.3200000000001,608.503143250344,130.20960330738595,,129.2933502423469,129.2990960055362,129.4884442725295,129.29384383787604,130.25341571352124,129.30380066835298,129.2922193586649,129.59959883392898,25.354297635431,5.425400137807748,,5.387222926764454,5.387462333564009,5.395351844688729,5.387243493244835,5.4272256547300515,5.387658361181374,5.387175806611038,5.399983284747041,7.286470815339782,5.744614222529616,,5.737552592902371,5.737597031657436,5.739060381095194,5.737556410535575,5.744950641931597,5.737633416886509,5.737543846214118,5.739918425850069,0.0,11.247552441693543,23.12667474440871,7.055716623929037,-0.8950215905267791,14.883809313078931,1.1504617990702044,2.430806668346351,0.0,320.5762497212657,135.64719353021945,-329.83868083563755,-25.067105688035547,-6.871639184075782,-18.32437115753542,216.57231592275747,526.6155910079132,19.93482442664017,10.971158145998187,17.5538530335971,1607.0,33.0,1.6002865641057304,0.7051314843965271,0.0,0.0,0.3501589385506499,0.06607327622100177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.056131276171213614,0.21877758552451898,0.059355767151130195,17.526733258565955,13.77484878610931,11.469234250586762,8.051626342052955,10.199479598389292,5.990204547326001,7.86692542771619,4.039354379873847,5.760328963152272,2.518860959447269,4.498937065234889,1.7380847971176523,2.7636379316883346,0.9232019358147789,1.5751859062495444,0.4994710359364482,3.3204641666905195,1.2253359440523417,4.283803802094939,1.2805063750160317,5.829469117730657,1.4694114571827293,81.0082652596544,43.61349869045342,27.294298701387227,22.026942711037666,21.476629429802692,21.476629429802692,116.0,130.0,52.339031999999975,24.944967999999996,0.375,73.05,8.777777777777779,5.416666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,48.0,0.0,1.0,49.0,12.0,1.0,7.0,42.0,13.0,25.0,36.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,4.0,4.0,0.0,24.0,5.0,0.0,2.0,3.0,0.0,2.0,8.0,0.0,0.0,0.0,0.0,2.0,3.4965075614664802,5.044231243524771,4.007333185232471,4.465908118654584,4.908971640319756,5.371219254531703,5.27715756871241,5.312127811821442,5.171726121007455,5.090293312401709 +4456,CN(C)C(=O)Oc1cccc([N+](C)(C)C)c1,0,19.34285714285714,6.008851428571429,2.7714285714285714,5.771428571428571,166.52429596473516,75.85150765714286,1.3034529483466002,6.061154285714285,3.7184523809523804,7.578391771428572,188.348681872906,21.942857142857143,6.342142857142857,3.1142857142857143,5.6,150.73522319828854,81.4222258285714,1.5647931968571425,6.462428571428571,2.9595238095238097,7.770709257142855,225.03880844821944,18.0327868852459,6.30327868852459,3.0327868852459017,4.311475409836065,167.3340756017039,66.50946818032787,1.310857648405492,6.354701639344264,2.8574681238615662,7.8172405901639355,186.68358292115175,15.837837837837839,6.082608108108107,2.554054054054054,2.8783783783783785,152.5859737208743,54.97736277027027,1.3692779588067294,6.189858108108108,2.913288288288289,7.6075770270270295,182.8861033310535,10.16,5.83134,1.93,1.77,168.27376213128957,33.74554489,0.9673190870711099,5.871866,2.5006944444444446,7.50442948,121.43354497012164,12.840579710144928,5.885463768115942,2.318840579710145,2.0869565217391304,162.6288321045548,44.47375315942029,1.1297174888424781,5.955710144927536,2.6062801932367154,7.49275768115942,147.46332879580257,11.95,6.119315,2.1,1.7166666666666666,162.80041599750228,38.769734316666664,1.1194382215606835,6.172645000000002,2.6847222222222222,7.722146066666668,142.92247262325466,10.714285714285714,5.709267857142858,1.9285714285714286,0.8392857142857143,166.42544688541747,36.361732321428576,0.9820973288898036,5.767982142857144,2.464285714285715,7.349635714285715,121.80276483007057,10.159090909090908,6.389772727272727,1.9545454545454546,0.13636363636363635,175.60290628973962,30.1242405,1.0028279155248634,6.394704545454545,3.0568181818181817,7.99814018181818,129.27527516327882,7.391020408163264,0.11921583673469383,0.020268230359271267,0.6481632653061222,3.7306122448979586,1.36631557613722,35.14856592979592,0.21512310202293553,0.11313012244897953,1.1812585034013605,0.07141804408163262,48.769885518077864,0.5085714285714282,0.008045714285714257,-0.014156683761796596,0.2416326530612245,1.8857142857142852,-0.8513076138814284,2.2472972669387725,-0.06658083011755095,0.010606204081632603,-0.10103741496598632,0.0005499363265306147,-7.706915328679846,1.7607360321177652,0.021628940782870504,0.003965703165066033,-0.1231047172967547,0.7082636333221812,0.8786409612794868,8.477403181679492,0.0984020200111502,0.02048130612244894,0.3353821419278094,0.016338083318835735,19.16248147638623,-1.9230667402095971,-0.009543558742415886,-2.8394214394339087e-05,-0.009167126309983438,-0.2738554881412024,-0.5380266219415571,-9.358047687710979,-0.09861160685539919,-0.010592477661334808,-0.009717319360176474,-0.0048050757418643085,-19.641497342944923,0.36640816326530634,-0.006811551020408162,0.002497597039382763,0.03155102040816324,-0.13204081632653064,0.09723678969952246,1.8702687430612244,0.03175314399992247,-0.005640351020408159,-0.1428795351473923,-0.005581606367346937,5.739258177469494,0.24169180715764563,-0.0011369961549837363,-0.002928075457801531,-0.09826678497485952,-0.5513161786453711,-0.16039467897529908,1.1118071550902087,-0.017566808605878774,0.000697620822241932,0.022476831312235036,-0.0026120912866015983,-1.0958469022294957,-2.5453061224489795,-0.022193693877551022,0.00016180459150857277,-0.09959183673469388,-1.1948979591836737,-0.0752953802688415,-12.07676999027211,-0.03427323899069883,-0.026058836734693853,-0.2734410430839002,-0.01030720789115645,-13.637210970640792,0.9972448979591837,0.014127530612244893,0.002680837607064003,-0.21551020408163263,-0.8954081632653059,-0.46021035340445354,4.61207156714286,-0.033417201685907956,0.016024673469387747,0.15179846938775507,0.004765368163265298,-1.542356656527336,-4.681929499072356,-0.09480531725417435,-0.008247501139800363,-0.2273840445269016,-2.8552875695732833,0.7509078393485513,-21.778018894730984,0.04128354742790211,-0.09322557699443412,-0.6507119666048237,-0.04772280771799626,-5.90275842860776,,,0.4666666666666667,1.1875,0.53125,0.0625,0.65625,-0.125,0.6998675876754293,0.03816653400580583,0.04354153400580583,0.8678084096157815,0.25882693903363724,0.19764487460887536,1.5676759972912109,0.4564718136425126,1.9281678707496104,1.437322254713373,0.2569291474685306,0.23391646856770673,0.0,0.49084561603623733,6.375545836231143,677.0,210.30980000000002,97.0,202.0,5828.350358765731,2654.802768,45.62085319213101,212.1404,130.14583333333331,265.243712,6592.203865551711,768.0,221.975,109.0,196.0,5275.732811940099,2849.777903999999,54.76776188999999,226.185,103.58333333333334,271.9748239999999,7876.358295687681,1100.0,384.5,185.0,263.0,10207.378611703936,4057.0775590000003,79.962316552735,387.6368000000001,174.30555555555554,476.85167600000005,11387.698558190257,1172.0,450.11299999999994,189.0,213.0,11291.362055344698,4068.324845,101.32656895169798,458.0495,215.58333333333337,562.9607000000002,13533.57164649796,1016.0,583.134,193.0,177.0,16827.37621312896,3374.554489,96.73190870711099,587.1866,250.06944444444446,750.442948,12143.354497012164,886.0,406.097,160.0,144.0,11221.38941521428,3068.688968,77.950506730131,410.94399999999996,179.83333333333337,517.00028,10174.969686910377,717.0,367.1589,126.0,103.0,9768.024959850138,2326.1840589999997,67.166293293641,370.3587000000001,161.08333333333334,463.3287640000001,8575.34835739528,600.0,319.71900000000005,108.0,47.0,9319.82502558338,2036.2570100000003,54.997450417829,323.00700000000006,138.00000000000003,411.5796,6820.954830483952,447.0,281.15,86.0,6.0,7726.527876748543,1325.466582,44.12442828309399,281.36699999999996,134.5,351.9181679999999,5688.112107184268,258.68571428571425,4.172554285714284,0.7093880625744944,22.68571428571428,130.57142857142856,47.821045164802705,1230.1998075428573,7.529308570802743,3.9595542857142836,41.34404761904762,2.499631542857142,1706.945993132725,17.799999999999986,0.28159999999999896,-0.49548393166288085,8.457142857142857,65.99999999999999,-29.795766485849995,78.65540434285704,-2.330329054114283,0.3712171428571411,-3.5363095238095212,0.019247771428571515,-269.7420365037946,107.40489795918367,1.3193653877551008,0.241907893069028,-7.509387755102037,43.20408163265306,53.59709863804869,517.121594082449,6.002523220680162,1.2493596734693855,20.458310657596375,0.9966230824489798,1168.91137005956,-142.3069387755102,-0.7062233469387755,-0.0021011718651810923,-0.6783673469387744,-20.26530612244898,-39.81397002367523,-692.4955288906124,-7.29725890729954,-0.7838433469387758,-0.719081632653059,-0.3555756048979588,-1453.4708033779243,36.64081632653063,-0.6811551020408162,0.2497597039382763,3.155102040816324,-13.204081632653063,9.723678969952246,187.02687430612244,3.1753143999922466,-0.5640351020408159,-14.28795351473923,-0.5581606367346937,573.9258177469494,16.67673469387755,-0.0784527346938778,-0.20203720658830565,-6.780408163265307,-38.0408163265306,-11.067232849295635,76.7146937012244,-1.2121097938056353,0.04813583673469331,1.5509013605442175,-0.18023429877551028,-75.6134362538352,-152.71836734693878,-1.3316216326530612,0.009708275490514366,-5.975510204081632,-71.69387755102042,-4.51772281613049,-724.6061994163266,-2.05639433944193,-1.5635302040816312,-16.406462585034014,-0.618432473469387,-818.2326582384476,55.84571428571429,0.791141714285714,0.15012690599558418,-12.068571428571428,-50.14285714285713,-25.771779790649397,258.27600776000014,-1.8713632944108454,0.8973817142857139,8.500714285714285,0.2668606171428567,-86.37197276553081,-206.00489795918367,-4.1714339591836715,-0.362890050151216,-10.00489795918367,-125.63265306122447,33.03994493133626,-958.2328313681633,1.816476086827693,-4.101925387755101,-28.63132653061224,-2.0998035395918353,-259.72137085874147,0.7715584364182027,0.6608194533241368,0.45647181364251266,0.33136085184322556,0.32837318405436916,0.21914036962906727,0.20211432665503806,0.09459879286371033,0.12358353239003787,0.04872806563257906,0.08375881813480265,0.02742964510313427,0.05380085597455331,0.014199646582230479,0.038460613020134864,0.008200535042750286,8.028867771462906,5.69886241631021,3.5557277898392545,2.1974534149250884,0.5011524843292123,-0.44753140942273706,4.0220942086241,0.9776025058091433,6.028847437828461,0.9890397367461092,14.548614340757206,10.960196307769838,16.01400247789337,11.71085541750545,1.9777605329096264,0.7403802953207215,3.501985044329105,2.2470533210527135,7.008270568255218,1.1825221452227084,3.7147039105087813,2.4429024230866134,20.88337304361164,14.701460229807008,0.2799880592092995,0.5306619201438086,0.6526380886950682,0.6958838851560671,0.6958838851560671,0.6958838851560671,2.4489302654512226,380.8503046556419,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,3.6494335075452002,2.324521326751179,1.6798282148420354,1.4512567862706067,1.4512567862706067,1.4512567862706067,299.2019077303419,974.0173631053783,37.50175223052352,27.829067517296522,45.678501480877365,,8.0,200.0,0.0,4.794537184071822,6.093240070938415,10.23254269097853,5.687386274683562,4.899909730850478,20.16171103381599,18.19910120538483,21.143015948031568,4.736862953800049,7.466666666666667,19.0,8.5,1.0,10.5,0.0,0.033333333333333326,-2.0,0.11619047619047601,0.036515679442508664,-0.07967479674796735,0.0,0.16227586206896538,0.0,0.5495238095238097,0.8458333333333331,0.43333333333333374,0.5130081300813011,0.8458333333333331,11.19788140280687,0.6106645440928933,0.6966645440928932,13.884934553852505,4.141231024538196,3.162317993742006,25.082815956659374,7.303549018280202,0.5517241379310346,0.37946428571428564,0.053571428571428575,0.2544642857142857,0.4166666666666667,0.1700894505287253,-0.2241882835102845,-0.024066020220729633,-0.006405379528865273,-0.03202689764432636,0.8299105494712747,1.9237833380227338,0.058635482442536704,0.05496523822922096,0.0687065477865262,-2.816559214613245,0.927545836094544,0.8130210066598464,1.9382104168687104,1.0705289672544083,0.47242888402625827,1.986414876223097,0.9380480868079967,1.5260849906903013,0.7831797806968174,0.6647470413775229,0.8411720657709737,1.2959731166848831,0.8101482181591689,1.0080812572991473,1.2914196001238407,1.9778461411405217,0.9882160921189511,0.53090058454336,0.8044069675282155,0.4886074947482615,0.9817415637962896,0.39259995465278613,0.9030085502752458,0.5596965853071463,1.2219774446414606,0.9413978859981101,1.1307356720907542,1.174688542446729,1.0574102548938435,1.58416260691605,1.2326437305964388,1.646471549199955,0.9578313268284867,0.7780695262338844,0.9621128043394026,1.5160200169186087,0.9456648994919374,1.205425898764306,0.806409773126014,0.6594458438287155,1.083238512035011,0.7627338492477921,0.9377608665572891,0.7663532702758302,1.1860981466889493,1.4232382638908883,1.2937519568598361,0.8084635561900266,0.9314643539727818,0.935032858811796,1.058194180502242,1.1837878290074109,1.2000761107411284,1.111037736834738,0.93376330845167,1.0974934476637495,0.9234197010442107,0.9535523013733807,0.9717768928201866,1.0250841484759483,1.3767671747294015,1.4787261177463067,1.3088161884802443,0.899244332493703,1.4495258935083881,1.0459503419021863,1.3706143426417279,1.1561629758468732,1.4902649576720035,1.2395476403006132,1.5376359011723604,1.248844246145224,0.7944692953390767,0.665076513598385,0.9459554220089754,1.3649244332493706,1.176422319474836,1.2498122983414617,0.800966455069676,1.0982182685132573,0.6622205493547615,0.9383188401624002,0.6694892140903419,0.9940173027450464,1.763898929654397,2.526354734033792,1.686561079244085,1.6349896954430962,2.0742739208275314,0.4594780566743602,1.7354359336964755,0.5660489075289526,2.4787041490436676,3.1901783680916393,2.438527833562969,0.918752490619465,5.5,0.0,2.222222222222223,1.125,0.8800000000000002,0.5277777777777777,0.36734693877551017,0.24305555555555555,0.0,0.0,2678.58330289843,3139.094078053242,1526.2758677077657,1337.062038396908,10.699643205100402,0.47122587919702097,5.657694428682534,0.8911666828199398,1.0,0.4166666666666667,1.4798495093997661,2.8047616901937875,3.449454802102931,3.6780262306743596,3.6780262306743596,3.6780262306743596,0.34375,0.0,0.09661835748792275,0.053571428571428575,0.05176470588235295,0.032986111111111105,0.03339517625231911,0.024305555555555556,0.0,0.0,0.6363913348606901,14.0625,5.55765595463138,4.423611111111111,96.62576196242932,1.0,3.6639532375556056,58.931609356942595,,44.29335203918191,42.776967693620556,43.605014099556286,44.31266297500755,79.83240987025154,43.74420698619997,44.37523794961426,64.7646214100277,0.06880936602606579,0.06748863662819737,-0.6984666895361649,0.3727959697732999,0.5054704595185995,-0.6230680735472571,0.06393709693383842,-0.3095010693479698,0.09375225494355746,-0.08553370382101406,0.007700243455309748,-0.15802611071996617,0.23822637942834798,0.1814267414068832,0.19566104661189657,-0.18992856258000573,0.18985184919467663,0.643073223071596,0.24118774002364288,0.4574219090642296,0.18104202204577116,0.28391934615674497,0.22876688278050422,0.3929162693909368,-0.26018961307231686,-0.08005277657576973,-0.0014009222261158465,-0.014143236435427852,-0.07340765272931576,-0.39377917615682856,-0.2662426599822678,-0.45839617376326985,-0.0936309219157073,-0.008226242886037268,-0.06728097644864071,-0.40273822942775367,0.04957477358073783,-0.057136293356450395,0.12322718831939321,0.04867758186397982,-0.035393873085339186,0.0711671530338734,0.053210385504683475,0.1476045282971844,-0.04985719893436778,-0.12095534951577451,-0.0781540077038097,0.1176803700993328,0.032700736002663565,-0.00953729123685168,-0.1444662610350758,-0.15160807505567123,-0.14778168902419686,-0.1173921177337076,0.031631650557547054,-0.08165933105597313,0.0061665346694603955,0.01902786836879006,-0.03657466849156373,-0.022469745224710253,-0.34437817539209187,-0.18616397355782077,0.007983163238252752,-0.1536523929471033,-0.3202954048140045,-0.05510833776901884,-0.3435921116780035,-0.15931919291050742,-0.23034392759935451,-0.23148281455459893,-0.14432218109158873,-0.27962360021505067,0.1349265518003093,0.11850380787650455,0.13226796614918634,-0.3324937027707809,-0.24001641137855578,-0.33682581201740924,0.1312164933373041,-0.15533990246359106,0.14164815808994374,0.1285057156842984,0.06672498840514818,-0.03162518509410116,-0.6334618551318353,-0.7952409667279078,-0.40691767330479944,-0.3508129150446531,-0.7653670181022478,0.5495859466606396,-0.619599073778127,0.19190662016160698,-0.8240561839440937,-0.5508633078459447,-0.6682177918993116,-0.12103285389955949,3.5327755290014426,5.77497349820822,1.1905507889761497,13.922064504580856,25.742606884504482,28.90742896988033,29.13782896988033,29.13782896988033,29.13782896988033,30.850685931993766,22.99715607541397,4.11086635949649,3.7426634970833077,0.0,7.853529856579797,2134.330118452742,1982.481518851513,464.7806450245421,6.0,23.0,24.0,25.0,30.0,26.0,28.0,19.0,12.0,223.14410426809,16.0,4.3694478524670215,5.153291594497779,6.018593214496234,6.834108738813838,7.69484807238461,8.522976436171964,9.380673689458071,10.215557313044739,11.071392667700188,0.5761904761904763,0.9707428571428574,1.1413000085001541,0.5311702368067367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6246889136013688,0.9564145658263306,0.9977733846634068,0.5740825564828007,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,9.636772684650527,11.436898107967467,0.0,0.0,0.0,4.483030857694624,4.794537184071822,0.0,0.0,6.06636706846161,12.13273413692322,20.16171103381599,21.143015948031568,77.12861586960452,-101.66022611972932,-10.91295681974887,-2.904577889135124,-14.522889445675618,376.3305235999464,872.357136985649,26.588795410774654,24.9244896281614,31.155612035201745,0.5,0.9007089919754707,0.3110481325219931,18.058925964378762,0.17868609776337538,36.22448374055966,0.09929100802452928,4.0,0.125,0.28851001290257794,0.5468135957653437,0.6725023342848117,0.7170643964319628,0.7170643964319628,0.7170643964319628,1.9437,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,65.71900000000004,9.53140013787187,0.0,9.382940588545102,0.0,0.0,35.23835991338595,24.26546827384644,0.0,5.749511833283905,3.4965075614664802,0.0,4.8283137373023015,0.0,6.329720905522696,0.0,7.901377353792616,0.0,9.509926311430787,20.166666666666668,7.547681405895692,0.0,0.0,0.0,0.0,0.0,1.6604686318972037,0.0,33.976000000000006,0.0,11.371808862433863,0.0,0.0,0.0,0.0,0.0,-0.36244520030234306,39.9455002975054,9.219893811494673,10.481923458755384,5.749511833283905,46.23150971517484,0.0,0.0,0.0,24.26546827384644,0.0,0.0,0.0,18.590958288235782,21.86411197604791,18.353490514463797,117.86321871388522,,88.48848979264955,85.4360898777018,87.11043225627859,88.52738451061987,160.86517680239382,87.38343768721022,88.65328645089576,130.0679821497815,18.353490514463797,117.86321871388523,,87.80098979264955,84.61117131092658,86.41326065644068,87.84179443485337,162.86577190554505,86.64860369088223,87.97296031256644,130.96588103265836,4.683693197018247,88.19767005573318,,65.83057081998004,63.62091742660044,65.53286699523088,65.86078671788,122.63690684230008,65.06081563623573,65.94688291220146,97.30082818039375,1.1470931571539873,7.366451169617826,,5.530530612040597,5.339755617356363,5.444402016017412,5.532961531913742,10.054073550149614,5.461464855450639,5.540830403180985,8.129248884361344,2.3418465985091235,58.931609356942595,,44.29335203918191,42.776967693620556,43.605014099556286,44.31266297500755,79.83240987025154,43.74420698619997,44.37523794961426,64.7646214100277,33.47450980392157,0.0,9.50461545729403,0.0,0.0,0.0,0.0,34.92206846321924,0.0,0.0,5.188611111111111,0.0,0.0,1.4014077853363567,0.0,0.0,0.0,20.092889476898026,408.43472441368357,51.79473282899181,98.16665915678256,120.73091807360258,128.7309180736026,128.7309180736026,128.7309180736026,225.0,101.26088957903445,45.02441505586732,48.06584586951488,29.540000000000003,29.540000000000003,1.0,6.700269748524633,5.0,3.5373935581530427,3.945153878019245,,3.93429867581657,3.9363740449939923,3.941191491692024,3.9342913355460545,3.9239848374596615,3.9353181021634707,3.93416157882419,3.922033673679077,0.22108709738456517,0.24657211737620283,,0.24589366723853562,0.24602337781212452,0.2463244682307515,0.2458932084716284,0.24524905234122885,0.24595738138521692,0.24588509867651187,0.2451271046049423,1.7333938021943471,1.8424915886179085,,1.8397362679922575,1.8402636356771152,1.8414867158980643,1.8397344022779416,1.8371113068893128,1.839995347025294,1.8397014207698132,1.8366139428267538,185.7299999999996,82.65357139389484,70.10091888211545,,70.64502152361403,70.50231821137645,70.16235661106734,70.64552727447716,71.27307215773216,70.57515623051027,70.65439679146849,71.45223271800882,5.165848212118427,4.381307430132216,,4.415313845225877,4.406394888211028,4.385147288191709,4.4153454546548225,4.45456700985826,4.410947264406892,4.41589979946678,4.465764544875551,4.8846616636366065,4.719939531361788,,4.727671269136318,4.725649220954215,4.720815565842873,4.727678428155339,4.736522215733838,4.726681817063466,4.727803969864743,4.739032781810902,5.8764630574452,12.77321664777022,0.0,1.0870890022675739,0.5733796296296299,7.547681405895692,-0.36244520030234306,0.0,9.50461545729403,223.1981914676121,34.97467578070842,-46.09875865453242,-4.948580008551691,-1.3171073901294978,-6.585536950647489,170.65051538775722,395.5783166476336,12.056932286501818,11.302237618503815,14.127797023129768,457.0,21.0,2.2835227100426256,1.662249312452286,0.28867513459481287,0.25,0.6687149622877352,0.2872677996249965,0.14433756729740643,0.08333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.10059223176554563,0.02522911917955175,12.344934982691242,10.57311125318619,7.3035490182802025,5.301773629491609,7.55258323325049,5.0402285014685475,4.850743839720914,2.270371028729048,3.0895883097509467,1.2182016408144765,2.51276454404408,0.8228893530940281,1.398822255338386,0.36919081113799246,1.0768971645637762,0.229614981197008,3.3997156849338652,1.5888733695910178,3.265565991336889,1.3665777396412637,4.578660246878336,1.484627273194104,54.29197839423053,33.20627650841887,27.433615531819832,26.589289926010125,26.589289926010125,26.589289926010125,78.0,86.0,36.51306699999998,25.654932999999996,0.17142857142857143,16.04,7.756944444444445,3.444444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,35.0,0.0,1.0,35.0,6.0,1.0,4.0,31.0,7.0,16.0,28.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,2.0,0.0,0.0,16.0,4.0,0.0,2.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,3.044522437723423,3.446011397451948,3.56953269648137,3.9367156180185177,4.332376726030061,4.806579245156295,4.7848841793749655,5.014793304244919,4.706710915543052,4.466626251540024 +2719,CCN(CC)CCCC(C)Nc1ccnc2cc(Cl)ccc12,0,23.125,5.721325,2.75,4.325102880658436,164.41743705202865,93.09296852083332,1.4613028234598753,5.845737500000001,2.149994601940761,7.356039270833333,201.3623971827138,22.306122448979593,6.09804081632653,3.3469387755102042,4.634920634920634,147.33158882199592,83.3513175510204,1.7735751030612241,6.261173469387756,2.489082052574116,7.556424612244898,245.24905482014762,17.704545454545453,5.945363636363637,3.0,3.2689393939393936,157.8785041971851,64.70167454545455,1.4549017525896135,6.067102272727272,2.2016343995510663,7.489150681818182,193.39568033072499,14.689655172413794,5.839103448275862,2.5948275862068964,2.400383141762452,163.17584271285392,51.939908422413794,1.302278135394586,5.9474698275862075,2.0348463885341284,7.446396,167.00675612543728,12.92,5.682856,2.312,1.744,160.79697370399208,44.649008007999996,1.2439418334425518,5.792092,1.948337448559671,7.305106944,153.39471973904233,10.558823529411764,5.525352205882354,2.0441176470588234,1.238562091503268,163.90000647473715,35.697027977941175,1.121138202299647,5.615236029411765,1.7703491890583394,7.184177529411764,132.98258212172195,10.603174603174603,5.5063023809523814,2.0396825396825395,1.035273368606702,165.15509853926025,36.069020595238094,1.0861303022031825,5.599296825396826,1.723202038016853,7.186905714285714,128.30465704787926,10.504672897196262,5.621289719626168,2.0654205607476634,1.0965732087227416,164.2320353612785,34.25292128971962,1.1237859356104578,5.7173971962616825,1.8643513711011115,7.278358859813085,132.98789904789754,10.36,5.55532,1.97,1.1833333333333333,167.3533611126355,34.722870889999996,1.0588058929426198,5.642804999999999,1.773888888888889,7.24203088,123.53979238237709,10.284722222222223,0.056924999999999955,0.008525916111791007,0.5,2.6686385459533604,1.4217608674526236,48.68268417664931,0.24778861724549825,0.06772343749999994,0.23951321148537655,0.03484346831597221,53.01322604648224,0.2637471655328795,0.003783673469387866,-0.002779301478882125,0.20918367346938777,1.1753397861202093,-0.30077743513518196,1.224271989167017,-0.014796733589162475,0.004249011479591827,-0.005964882460122229,0.00046407590171482476,-1.304141875778667,0.5751262626262623,-0.0013909090909090154,-0.00025250014030733336,0.017045454545454544,0.3248963399426363,-0.11402331824184037,2.749372880642359,0.008948701787577453,9.190340909090039e-05,0.038421600742988476,-0.0015965104561237566,1.8473104892476402,-0.11733716475095807,-0.00872068965517236,-0.001283710269858137,-0.017241379310344827,0.0835521025495483,0.17335963892727568,-0.4443691265415487,0.023548591622188142,-0.008338846982758623,0.012613985185301971,-0.005403784048730856,3.8342460893063994,-0.1257222222222223,0.0024624000000000048,0.0007816023265471563,-0.01,0.01984705075445816,-0.07227959137202368,-0.6992601044826388,-0.019516496866995605,0.0026841625000000066,0.014045786126776065,0.0034296703506944467,-4.236610705395471,0.7134395424836603,0.003752205882352901,-4.56244822742936e-05,0.014705882352941176,0.09803417251674326,0.028908978196911697,3.355501613945059,0.010740656060299242,0.004600735294117647,-0.0103730448067557,0.0026008282526552434,1.3815246998461272,1.0902777777777777,0.006235714285714237,0.0003631389161557907,-0.031746031746031744,-0.09003282382912016,-0.021649321577341507,5.133515208767362,0.012467428481151236,0.00871803075396825,0.013225207333860753,0.004504144613921971,3.4569821411973916,-0.9681334371754932,-0.006409345794392527,-0.0004272707098330816,-0.016355140186915886,-0.2941529492455418,-0.12885162927043925,-4.622650675286376,-0.02590121404645698,-0.0075434141355140115,-0.032082606370948376,-0.003237649390738572,-6.01448072231624,0.5894444444444445,-0.0019800000000000277,-0.0005304673737420797,0.05,0.08124828532235942,0.02485682819647954,2.822764985850696,0.017071324043017182,-0.0005990625000000019,-0.03196040576470389,-0.0010989243576388804,2.5629464323930926,,,0.4961038961038961,1.1136363636363635,0.5,0.045454545454545456,0.6136363636363636,-0.11363636363636363,0.946753793284756,0.012711514063078445,0.020529695881260263,0.6749706789691164,0.20100576353762978,0.28238333887079614,1.6217244722538724,0.4833891024084259,2.0031091914382286,1.641060822490799,0.28149408568085904,0.0,0.08055428326657074,0.3620483689474298,6.649615114833348,1110.0,274.6236,132.0,207.60493827160494,7892.0369784973755,4468.462489,70.14253552607401,280.59540000000004,103.19974089315653,353.089885,9665.395064770262,1093.0,298.804,164.0,227.1111111111111,7219.2478522778,4084.2145599999994,86.90518004999998,306.7975,121.96502057613169,370.264806,12017.203686187233,1558.0,523.192,264.0,287.66666666666663,13893.308369352288,5693.74736,128.031354227886,533.905,193.74382716049382,659.04526,17018.819869103798,1704.0,677.336,301.0,278.44444444444446,18928.397754691054,6025.029377,151.064263705772,689.9065,236.04218106995887,863.781936,19372.783710550724,1615.0,710.357,289.0,218.0,20099.62171299901,5581.126001,155.49272918031897,724.0115000000001,243.54218106995887,913.138368,19174.339967380292,1436.0,751.4479000000001,278.0,168.44444444444446,22290.40088056425,4854.795805,152.474795512752,763.6721,240.76748971193416,977.048144,18085.631168554184,1336.0,693.7941000000001,257.0,130.44444444444446,20809.54241594679,4544.696594999999,136.852418077601,705.5114000000001,217.12345679012347,905.5501199999999,16166.386788032787,1124.0,601.4780000000001,221.0,117.33333333333334,17572.827783656798,3665.062578,120.24509511031899,611.7615000000001,199.48559670781893,778.784398,14229.705198125037,1036.0,555.532,197.0,118.33333333333334,16735.33611126355,3472.2870889999995,105.880589294262,564.2805,177.3888888888889,724.203088,12353.979238237709,493.6666666666667,2.732399999999998,0.4092439733659683,24.0,128.0946502057613,68.24452163772594,2336.768840479167,11.893853627783916,3.2507249999999974,11.496634151298075,1.672486479166666,2544.6348502311475,12.923611111111097,0.18540000000000542,-0.13618577246522412,10.25,57.591649519890254,-14.738094321623915,59.989327469183834,-0.7250399458689613,0.2082015624999995,-0.2922792405459892,0.022739719184026414,-63.90295191315468,50.611111111111086,-0.12239999999999335,-0.022220012347045334,1.5,28.590877914951992,-10.034052005281952,241.94481349652762,0.7874857573068158,0.008087499999999234,3.3811008653829857,-0.1404929201388906,162.56332305379235,-13.611111111111136,-1.0115999999999936,-0.1489103913035439,-2.0,9.692043895747602,20.10971811556398,-51.54681867881965,2.7316366281738245,-0.9673062500000003,1.4632222814950286,-0.6268389496527793,444.77254635954233,-15.715277777777786,0.3078000000000006,0.09770029081839454,-1.25,2.48088134430727,-9.03494892150296,-87.40751306032985,-2.4395621083744508,0.3355203125000008,1.755723265847008,0.4287087938368058,-529.5763381744339,97.0277777777778,0.5102999999999945,-0.00620492958930393,2.0,13.332647462277084,3.9316210347799907,456.34821949652803,1.460729224200697,0.6256999999999999,-1.4107340937187751,0.3537126423611131,187.88735917907331,137.375,0.7856999999999938,0.04575550343562963,-4.0,-11.34413580246914,-2.72781451874503,646.8229163046876,1.5708959886250558,1.0984718749999995,1.6663761240664547,0.5675222213541684,435.57974979087135,-103.59027777777777,-0.6858000000000004,-0.04571796595213973,-1.75,-31.474365569272976,-13.787124331937001,-494.62362225564226,-2.7714299029708966,-0.8071453124999992,-3.4328388816914766,-0.3464284848090272,-643.5494372878377,58.94444444444446,-0.19800000000000276,-0.05304673737420797,5.0,8.124828532235941,2.4856828196479537,282.2764985850696,1.7071324043017182,-0.05990625000000019,-3.1960405764703887,-0.10989243576388803,256.29464323930927,0.7249719540625604,0.6603616423226406,0.46237218491240745,0.3715637083184184,0.29958138155320996,0.20569718713636378,0.19534756833171948,0.11750480023920548,0.12689345612796366,0.06471100594954822,0.07925554126299453,0.032988636405568136,0.05473933969224521,0.020099214232132203,0.0361705247379371,0.011901294016815514,17.001102779421277,5.6736605123650605,3.148578832144264,2.16952436852581,0.38815647916106133,-0.3846769337429696,3.2400302761854256,0.9872569003884865,5.033855156372874,0.7739938984938435,14.548409535823618,10.93685986794452,35.450517268218505,11.686999822782138,2.2078546018304337,1.0235390816285208,3.182565141877649,2.21910850663141,3.0392084726915916,1.2573869303949163,3.4929932448328267,2.414684515309905,22.455863518026817,15.589185360966344,0.2391200443752891,0.5448999604014796,0.7386442536184902,0.8319505863556916,0.8319505863556916,0.8319505863556916,1.7200210290676938,595.902004288487,0.0,1.0,6.0,0.0,7.0,3.0,1.0,0.0,0.0,4.208853545829031,2.4491245286773125,1.3341479170272441,0.7971804688852169,0.7971804688852169,0.7971804688852169,207.87647571127553,808.5527420348885,31.46049977725982,16.844848792393513,33.39763551892948,,13.0,458.0,0.0,0.0,0.0,6.041840829147961,41.1232789552571,12.965578028838586,0.0,30.462311845459514,35.97188845487589,11.600939890232516,10.914285714285715,24.5,11.0,1.0,13.5,0.0,0.0038961038961038822,-2.5,0.08511904761904754,0.03180272108843529,-0.053316326530612246,0.02111801242236022,0.08259504132231388,0.0,0.5226190476190479,0.7857142857142855,0.43750000000000033,0.4908163265306126,0.7645962732919253,20.82858345226463,0.2796533093877258,0.4516533093877258,14.849354937320562,4.422126797827855,6.212433455157515,35.677938389585194,10.63456025298537,0.6314049586776861,0.20287958115183247,0.0,0.2657068062827225,0.5,0.3217744261383364,-0.4461229351347858,-0.02620029312548193,-0.009294227815308038,-0.027882683445924112,0.6782255738616635,0.940323279652308,0.02774583625343493,0.01959006832608975,0.029385102489134625,-6.161035289251612,0.7665049814659153,0.9460723024387618,1.508061741510905,0.8392857142857143,0.6528963305693659,1.5143501217767665,0.7743391465068366,1.1243036898848817,0.8587795407021449,1.087751372825751,0.8291981923806768,1.113080191913154,0.7789577067092259,1.2472676368427356,1.4112373393042483,1.301846590909091,1.0984064185725928,1.2397386173886158,0.7826773675536918,0.9318151137854707,1.084373485914681,0.8522313731390263,1.0894153500658879,0.9616492094455961,0.949186826235768,1.4258438962337012,1.680680798424819,1.1648706896551726,1.1079142677994382,0.9486984345583072,0.9474296972441132,0.8508287799613128,1.2822591830310537,0.9817664565529537,1.326514924633351,0.8886696322420758,0.8412397029034436,0.8804295125164688,0.9859996269760282,0.9791666666666667,0.909680341825425,1.0689493719569687,0.8480606556571667,1.0437575225911921,0.8487203316183312,0.8887349387341145,0.711503751344477,1.0672093154982139,0.6814925328672995,0.740578741377974,0.8347674503050014,0.835171568627451,0.8071090163825997,0.9145337162452946,0.6888321432115384,0.8888413709739295,0.7180625543713551,0.9277343939123454,0.5762278404421023,0.9399496411924136,0.7223561943345873,0.7148242256937908,0.7109062177520231,1.0024801587301588,0.9186386187462424,0.9212140049008426,0.7273915191072257,0.8875520951174077,0.6977627823439143,0.7844112700125992,0.6012273839941257,0.895506669497694,0.9618469460518594,1.097913819216135,1.0554781511523552,0.8876557632398755,1.0187035986727875,1.0542598325910613,0.9655995845040087,1.0425921603850463,1.0570918651288643,1.212335342160515,0.9841358103347485,1.070869489483556,0.8335280216070223,1.0369104084321474,1.1693049457658544,0.8029166666666667,0.9230659877276963,0.8927404141841458,0.8348171761910276,0.8503158743043635,0.9765939905713342,1.1166176933623375,0.9532878411037476,0.8888680047940749,4.5,0.08662381389654117,2.222222222222223,1.375,0.9866666666666668,0.625,0.3436734693877551,0.20833333333333331,0.13958175862937766,0.13000000000000003,3807.2362176061743,4491.449785214891,2071.3281984362925,1812.1668866666091,14.463214068231109,0.4410558146411776,8.084129405037697,0.7890874012009542,1.0,0.5,1.3761089548921253,3.1358379720438436,4.250814583693912,4.787782031835939,4.787782031835939,4.787782031835939,0.19565217391304346,0.006187415278324369,0.07407407407407411,0.044354838709677415,0.03654320987654321,0.027173913043478257,0.016365403304178815,0.012254901960784312,0.009305450575291845,0.008666666666666668,0.43057804740206246,18.340264650283554,9.333333333333334,5.551497443389335,138.2301567424412,1.0,3.9892307328817185,114.1763902105712,,94.57965379710981,93.96270334419492,92.30406637582547,94.56501475785575,122.36396281898476,94.79886766023598,95.6219836037804,114.60451437454869,0.02564455897146161,0.06646769379688833,-0.3259827380940871,0.4183673469387756,0.4404267441547892,-0.211552759694453,0.025147996867318178,-0.059715146537593015,0.06274063509537345,-0.024904189723523512,0.013318877945973388,-0.02460031152669693,0.05592044687250626,-0.02443406395975435,-0.02961560224104664,0.03409090909090909,0.12174610174738683,-0.08019866128833363,0.05647537573454297,0.03611425693017798,0.0013570399330497726,0.16041537126370292,-0.045819504581061404,0.034846219085552535,-0.011408880299890588,-0.15319612920812237,-0.15056566977979247,-0.034482758620689655,0.031308886951454735,0.12193304999165229,-0.009127868236047072,0.09503500154269483,-0.12313088777808466,0.052665091445580306,-0.15508743273567194,0.07232621696979005,-0.012224172856178264,0.04325691699604754,0.09167370594536242,-0.02,0.007437144601150128,-0.050838079051597054,-0.014363630853740792,-0.07876268524336412,0.03963417391504984,0.05864305371578063,0.09843079683093113,-0.07991610813650146,0.06936886841164555,0.06591490351081078,-0.005351270370957174,0.02941176470588235,0.036735650343280545,0.020333221189796892,0.06892597790560054,0.04334604300914221,0.06793416672208422,-0.04330886276554738,0.07464320799152553,0.02606000054844427,0.10600945307224846,0.10954263128176094,0.04259236325977731,-0.06349206349206349,-0.033737361684160305,-0.015227118760224923,0.10544848328699295,0.0503147748259923,0.12872989139052868,0.05521702645061905,0.12926797565262113,0.06520980515628862,-0.0941331633715537,-0.11259281149569664,-0.050114345981211686,-0.03271028037383177,-0.11022584894143349,-0.09062820071936807,-0.09495472062536015,-0.10452947489833714,-0.11138557660358007,-0.13394921379068553,-0.09291983683651943,-0.11345245650665961,0.05731262660364619,-0.03478260869565269,-0.06221822579376124,0.10000000000000002,0.03044559385742283,0.01748312867902719,0.05798293651204708,0.06889470643481437,-0.008845719031908303,-0.1334390097585712,-0.03153889123991525,0.04834541535249882,10.204218384736302,13.950007918373691,4.130851920890754,14.48328178943777,30.27819394088648,34.9573831648591,35.49864635258627,35.49864635258627,35.49864635258627,44.06840221164103,36.10333809479758,6.192869884978899,0.0,1.7721942318645563,7.965064116843456,6736.129318220775,6132.118350535118,956.9962235167532,46.0,30.0,37.0,45.0,54.0,55.0,54.0,57.0,55.0,319.1815255120007,23.0,4.672828834461906,5.484796933490655,6.329720905522696,7.1631723908466425,8.017966703493599,8.861491864286915,9.722505098743403,10.572418881836954,11.438083377265766,0.5972222222222222,0.952,1.1338042503308081,0.5548334165903478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6596384481037925,0.9426470588235295,0.9853499028890508,0.5918439174977951,5.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,5.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10.216698334856808,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,25.448414289613766,63.66511793712681,28.334928203650723,5.516700717616262,187.6535791983876,-260.1715945708546,-15.279582159614733,-5.420241553559471,-16.260724660678413,395.53005490966314,548.3811474640339,16.180917617645086,11.42460723883404,17.13691085825106,0.46153846153846156,0.9638678376076019,0.27552367674078115,7.376115878317477,0.11565497936322039,28.560983654593834,0.036132162392398005,7.0,0.34782608695652173,0.24639537950602816,0.5614787873041098,0.7611178379702688,0.8572630579377604,0.8572630579377604,0.8572630579377604,4.810600000000004,,1.0756302521008405,0.6736110311805803,0.807409668968383,1.0886853027244188,-1.3206005004170138,0.6765906062624919,0.6305731519981259,-0.8746852549926769,96.85970000000006,0.0,0.0,9.883888251797686,0.0,39.654695674071846,24.951057821744055,35.48494515920084,0.0,0.0,3.8501476017100584,0.0,5.117993812416755,0.0,6.586171654854675,0.0,8.152198015861787,0.0,9.773777421013383,28.666666666666664,9.741332717506959,4.386380926222647,0.0,0.0,0.0,2.0651240977336762,1.8624323503322635,0.0,45.696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.42260401587879,5.316788604006331,5.687386274683562,0.0,35.559998298683375,0.0,0.0,33.61285484492389,30.462311845459514,5.022633313741326,10.902924932081056,0.0,26.632003996336696,31.662645508982038,27.77482166119457,228.3527804211424,,189.06152302584684,187.88187022720672,184.56804341693885,189.03105812455473,245.08808941081054,189.53860073171845,191.18664237556095,229.44757927318625,27.774821661194572,228.35278042114237,,188.13729671987204,187.33073392896807,183.90743550596466,188.09477373240804,246.04852613838656,188.98502659932183,190.6656330799281,230.08371400409004,4.79520654158053,174.9522564267146,,148.3575188577359,146.68504756442272,144.0681557765888,148.35207909277733,192.82380554334085,148.11720038826832,149.44923045462693,179.95854695375306,1.2624918936906622,10.379671837324654,,8.593705592083948,8.540085010327578,8.389456518951766,8.592320823843396,11.140367700491389,8.615390942350839,8.690301926161862,10.429435421508465,2.3976032707902655,114.1763902105712,,94.57965379710981,93.96270334419492,92.30406637582547,94.56501475785575,122.36396281898476,94.79886766023598,95.6219836037804,114.60451437454869,45.247058823529414,0.0,6.683772183308388,6.037304924321911,0.0,0.0,0.0,47.296795338674436,5.811944475396312,3.612496693121693,0.0,0.0,0.4415188019652305,2.468803941202029,0.0,0.0,0.0,28.408508039894166,562.1119483358698,66.05322983482202,150.5202226581045,204.03910001730776,229.8135375281251,229.8135375281251,229.8135375281251,478.0,117.26298498994854,21.07168577218091,55.48028850585666,28.16,28.16,0.8571428571428571,8.187153114655759,5.523561956057013,3.6481416633420585,4.619292754790991,,4.617407601729716,4.614164103881706,4.614200828799651,4.617471070008748,4.6129576189503,4.6147587878832566,4.614890311929271,4.613145530216616,0.16582462106100265,0.2099678524904996,,0.20988216371498708,0.20973473199462297,0.20973640130907506,0.20988504863676127,0.20967989177046817,0.20976176308560257,0.20976774145133048,0.20968843319166436,2.0826752649753444,2.318698970360888,,2.3182907828015464,2.3175880859943483,2.3175960451329853,2.318304528142723,2.3173265775902063,2.3177169599722434,2.317745460307327,2.317367312288985,263.44,612.0555815563773,116.05043337056514,,116.02696130910395,116.4552072778971,116.46938855496035,116.01658311044343,116.1627080557613,116.37943590708113,116.35441171064092,116.28371620605142,27.820708252562607,5.275019698662052,,5.2739527867774525,5.293418512631686,5.294063116134561,5.273481050474701,5.280123093443695,5.289974359412779,5.288836895938224,5.285623463911429,7.205280458289316,5.542482227421261,,5.542279949542594,5.545964072550988,5.546085839657893,5.542190499101785,5.543449224321224,5.545313212589134,5.545098166975505,5.544490394660633,0.0,6.855184867424676,5.466120779407598,2.0739323617800354,0.0,8.345930616851883,4.2105288993169285,10.122108662008081,0.0,308.39033016604657,109.4364962702986,-151.7278160135174,-8.91080225149666,-3.1609961669482796,-9.482988500844838,230.6666548211742,319.80691045441824,9.436446339461245,6.6626439678003795,9.99396595170057,1212.0,31.0,1.250890511242845,0.7601075544791609,0.0,0.0,0.13608276348795434,0.03946723314583158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.04269016102873266,0.29977518153977173,0.08089717801226051,15.94938298937633,14.527956131098094,10.634560252985372,8.545965291323624,8.987441446596298,6.170915614090913,7.2278600282736205,4.347677608850603,5.710205525758365,2.91199526772967,4.279799228201704,1.7813863659006792,3.0106636830734868,1.1054567827672712,1.9532083358486036,0.6426698769080378,2.631597406133935,1.3715598347293845,3.988042926333933,1.7072242984489963,5.563672650693403,1.876641341425241,76.99405546113448,39.413693960833086,27.84448646019632,24.935777346829934,24.935777346829934,24.935777346829934,106.0,120.0,52.87661799999997,30.013381999999993,0.20833333333333334,67.04,7.666666666666666,5.1388888888888875,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,11.0,48.0,0.0,1.0,49.0,11.0,0.0,5.0,44.0,11.0,23.0,38.0,0.0,0.0,0.0,18.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,3.0,1.0,1.0,22.0,4.0,0.0,3.0,0.0,0.0,2.0,8.0,0.0,0.0,1.0,1.0,2.0,3.3843902633457743,6.355127226885685,3.9219733362813143,4.477336814478207,5.061011501421323,5.638354669333745,5.896294982416888,6.180728098238413,6.523631136379777,6.769884126062441 +54692271,CN(C)C(=O)c1c2c(c(O)c(=O)n1C)C(=O)N(Cc1ccc(F)c(Cl)c1)CC2,0,31.404255319148938,6.655395744680848,3.595744680851064,9.778828473863935,165.31418879718365,127.45586149254835,1.5468555360027865,6.731759574468081,7.198694250681819,8.149106744680847,232.21133763920554,28.20408163265306,6.568367346938776,4.285714285714286,8.716553287981858,148.40426705178257,108.87336348643274,1.8137390931836745,6.717316326530614,3.5701478122113044,7.965197673469382,272.16041674403453,25.211764705882352,6.5322588235294115,3.988235294117647,7.5816993464052285,159.67472869016927,97.02298784318118,1.5932816400963297,6.637056470588235,3.4694868070685048,7.984638870588231,237.1387451283595,25.75,6.577286111111111,3.5925925925925926,6.739711934156379,154.0300376306688,98.30721179200003,1.5681952206041203,6.707552777777778,4.211581694863589,8.047209888888883,231.14167730034183,20.151515151515152,6.545083333333335,3.007575757575758,5.05976430976431,162.18458612261495,74.05336475519996,1.2876342504794092,6.618478787878788,4.093855218855219,8.085363363636366,187.17455219111997,20.6260162601626,6.6926097560975615,2.959349593495935,5.112917795844625,162.56755315154933,74.74793068971707,1.333737487495472,6.76670325203252,4.482886680718657,8.21602905691057,193.49736174226834,17.28030303030303,6.330643181818183,2.484848484848485,3.853535353535354,160.09122592390256,61.68888955661817,1.2653161635207193,6.405623484848485,4.041962838259134,7.880978303030302,171.76713546374194,14.294117647058824,6.056036764705885,2.2279411764705883,2.5686274509803924,168.4212972903492,50.74639241669412,1.0348654717871617,6.125238235294119,3.1469377874606628,7.733684779411766,136.54500274028078,18.048192771084338,6.668783132530121,2.5060240963855422,4.279785809906292,170.32093719519958,64.64038788335421,1.1530460119986266,6.721526506024098,4.519534929842829,8.273181686746986,163.79605789119796,11.058397464916256,0.19730900860117678,0.027378030176397453,0.7704843820733361,4.903397436972209,1.919953199892461,52.16279895427351,0.2441457468219412,0.18360525124490717,3.1549715319180676,0.12996730375735624,47.75280727406958,0.12961816686837738,-0.00977622527508061,-0.014199352849227997,0.3532672462375624,1.7056310443967002,-0.4763978712176027,0.6442960992497794,-0.017083619326530776,-0.007052363706913337,-0.15664803942969077,-0.008850473535905977,-1.3103421726347193,1.671765238462972,0.0038242079194738053,-0.002880346117895499,0.01099246398423557,0.7530867485065557,0.3866072637181898,8.125976890286706,0.06979859481139027,0.006087414587383125,0.11566416401262157,0.0008619485580379769,14.794119348556503,0.2794669952886343,0.020036519373606287,0.006662130801714766,-0.07209982730580292,0.020672745634881577,-0.2790770074766855,1.2094495219764543,-0.05455220225164897,0.021031391781097482,0.13630323309557843,0.014714755344298574,-7.521106957792946,-0.5426012044391401,-0.02568550763405901,-0.0036177253920453567,-0.11381126795341377,-0.8931113610832944,-0.23157516307467108,-2.5325039096537445,-0.00867030651821532,-0.023131975938653192,-0.3915423041413656,-0.01859202861228859,-1.8336389460977685,-2.6309627650373377,-0.02138058791271479,-0.003766401324096933,-0.17352883804981103,-1.053834906673933,0.13280397698511456,-12.407628352279973,-0.02318503287358793,-0.02510552801363237,-0.057311852517471465,-0.01061763086339332,-8.160676969950304,-0.9876366654320476,0.015734689013265295,0.00687864956026373,-0.0507874123763666,-0.14593311686013258,-0.06483211821791737,-4.947237560532658,-0.041644090463211623,0.00963182161131466,0.08740781368852037,0.012856781671399399,-12.42166426562338,1.7056826352089038,-0.004466611855244576,-0.0014041969931736639,0.07244427875269624,0.02620592525526862,-0.03730153378091896,8.300265434884475,0.032386509323465915,0.0017664321092856377,-0.21066350938227696,-0.006127675002662856,9.90166513665415,-2.0930039760672385,-0.0599062400802849,-0.003358662413717228,0.08621902730887336,-0.8238135379403032,0.2257319021954924,-9.459185847737036,0.0479624259234964,-0.058676950809121525,-0.5071829244533509,-0.03950327120160137,3.3018067490818352,,,0.4654761904761905,1.2589285714285714,0.5892857142857143,0.07142857142857142,0.6696428571428571,-0.08035714285714286,0.8736638304061887,0.02805029104603188,0.037264576760317594,1.1438431623875818,0.25610281234419835,0.21278309526595174,2.0175069927937703,0.4688859076101501,2.0019513675199745,1.3957931630073654,0.2272033420007046,0.25335788034465623,0.12559698216724782,0.6061582045126086,8.661804510382991,1476.0,312.80359999999985,169.0,459.60493827160496,7769.766873467632,5990.4254901497725,72.70221019213096,316.3926999999998,338.3386297820455,383.0080169999998,10913.932869042661,1382.0,321.85,210.0,427.1111111111111,7271.809085537346,5334.794810835204,88.87321556600006,329.1485000000001,174.9372427983539,390.29468599999973,13335.860420457693,2143.0,555.242,339.0,644.4444444444445,13572.351938664387,8246.9539666704,135.42893940818803,564.1498,294.9063786008229,678.6943039999996,20156.793335910555,2781.0,710.3469,388.0,727.8888888888889,16635.24406411223,10617.178873536004,169.365083825245,724.4157,454.85082304526753,869.0986679999994,24963.301148436916,2660.0,863.9510000000002,397.0,667.8888888888889,21408.365368185172,9775.044147686396,169.967721063282,873.6392,540.3888888888889,1067.2679640000003,24707.040889227836,2537.0,823.191,364.0,628.8888888888889,19995.809037640567,9193.9954748352,164.04971096194305,832.3045,551.3950617283948,1010.5715739999999,23800.175494299005,2281.0,835.6449000000001,328.0,508.6666666666667,21132.041821955136,8142.933421473599,167.02173358473496,845.5423000000001,533.5390946502057,1040.2891359999999,22673.261881213937,1944.0,823.6210000000003,303.0,349.33333333333337,22905.29643148749,6901.5093686704,140.74170416305398,833.0324000000002,427.98353909465015,1051.78113,18570.120372678186,1498.0,553.509,208.0,355.22222222222223,14136.637787201566,5365.1521943184,95.702818995886,557.8867000000001,375.12139917695475,686.6740799999998,13595.072804969432,519.744680851064,9.27352340425531,1.2867674182906803,36.2127659574468,230.4596795376938,90.23780039494567,2451.651550850855,11.474850100631237,8.629446808510638,148.28366200014918,6.108463276595743,2244.3819418812704,6.351290176550492,-0.4790350384789499,-0.6957682896121719,17.310095065640557,83.57592117543831,-23.343495689662532,31.570508863239187,-0.837097347000008,-0.3455658216387535,-7.675753932054848,-0.4336732032593929,-64.20676645910125,142.10004526935262,0.32505767315527345,-0.24482942002111743,0.9343594386600236,64.01237362305723,32.86161741604614,690.7080356743701,5.932880558968172,0.5174302399275656,9.831453941072834,0.07326562743322804,1257.5001446273027,30.1824354911725,2.163944092349479,0.7195101265851948,-7.786781349026715,2.2326565285672104,-30.140316807482037,130.62054837345707,-5.8916378431780885,2.271390312358528,14.72074917432247,1.589193577184246,-812.2795514416382,-71.62335898596649,-3.390487007695789,-0.4775397517499871,-15.023087369850618,-117.89069966299486,-30.567921525856583,-334.29051607429426,-1.1444804604044223,-3.0534208239022216,-51.68358414666026,-2.454147776822094,-242.04034088490545,-323.60842009959254,-2.629812313263919,-0.4632673628639227,-21.344047080126757,-129.62169352089376,16.33488916916909,-1526.1382873304367,-2.8517590434513154,-3.0879799456767816,-7.04935785964899,-1.3059685961973784,-1003.7632673038875,-130.3680398370303,2.0769789497510187,0.9079817419548124,-6.703938433680391,-19.2631714255375,-8.557839604765093,-653.0353579903109,-5.497019941143934,1.2714004526935352,11.537831406884688,1.6970951806247208,-1639.6596830622864,231.97283838841093,-0.6074592123132624,-0.1909707910716183,9.852421910366688,3.564005834716532,-5.073008594204978,1128.8360991442885,4.404565267991364,0.24023476686284673,-28.650237275989667,-0.8333638003621484,1346.6264585849644,-173.7193300135808,-4.972217926663647,-0.2787689803385299,7.156179266636489,-68.37652364904517,18.73574788222587,-785.112425362174,3.980881351650201,-4.870186917157087,-42.096182729628126,-3.2787715097329135,274.04996017379233,0.7410069352351579,0.584958153448459,0.43762684710280675,0.2968524113965608,0.27922075007700337,0.16104189677902347,0.1787862009453596,0.08154353516074074,0.10500716572550621,0.043850063167962375,0.06559239027572816,0.023632489715961942,0.041497076100969144,0.012690525898798337,0.026005094567197903,0.006910644296635499,17.001103483253765,5.694168660316458,4.1077241943309595,2.190870396927909,0.5025209541852509,-0.4307573029427729,3.3249021132980388,0.9771112098018205,7.004064541781993,0.7739954657642978,17.42477274971918,10.954107420255458,35.450517586187836,11.705622980327485,2.2079036766608002,0.5458517819069666,3.9886793400623173,2.241664127517936,8.001921646413605,1.2999553213192359,4.009968551532394,2.437754151384115,22.455865283872537,13.304118874273053,0.31694643250573756,0.6372078654622879,0.7843510714329128,0.8491867739043071,0.8491867739043071,0.8491867739043071,1.7352658469086348,1048.4498630893656,0.0,3.0,2.0,0.0,7.0,1.0,3.0,0.0,0.0,3.7058751704897817,1.8378254562754286,0.9795553195171847,0.6013757980104328,0.6013757980104328,0.6013757980104328,108.0980852162742,1646.6603812412013,73.48563261410195,35.0353272604511,77.71458739633022,,13.0,590.0,28.940359028084817,23.880553994730988,35.79034723503794,11.126902983393991,4.567099647791355,35.04659264976298,14.09534396535438,0.0,0.0,11.600939890232516,13.033333333333333,35.25,16.5,2.0,18.75,0.0,0.034523809523809526,-2.25,0.227375886524823,0.06445190991663596,-0.16292397660818703,0.021264367816091867,0.20620779220779195,0.0,0.6673758865248228,0.9166666666666663,0.43999999999999984,0.6029239766081869,0.8954022988505744,24.462587251373282,0.7854081492888927,1.0434081492888927,32.02760854685229,7.1708787456375545,5.957926667446649,56.49019579822557,13.128805413084203,0.507792207792208,0.29411764705882354,0.0,0.47570332480818417,0.3157894736842105,0.4107482343665641,-1.116885242371987,-0.07756580773097412,-0.02376351579514866,-0.07977751731228479,0.5892517656334358,1.602262763448154,0.043781808119508665,0.034090697094641575,0.04855341707418649,-4.312506380714851,0.5906353699167564,0.6530969880663157,1.5378861829868862,0.6869829012686158,0.4060918841868833,1.3419908362272932,0.5938257249174878,1.0459847818478163,0.6249240651525118,0.5833005438901147,0.673359051952689,0.952258206325925,0.589859755921363,0.7106880595046513,1.1709423329783029,1.2104928457869637,0.7482938521446691,0.8411231912830225,0.5880927997269172,0.6329518145783317,0.6887586208296882,0.5419215177941628,0.6838148896107223,0.6201797478158961,0.7879402961992611,0.7177707542997681,0.7893967479583548,1.2291041041041044,0.8766201804065392,1.2113845440833413,0.7913967146939949,1.2267117664236662,0.6946665407394257,0.7941912102649172,0.7245746057487976,1.1088823442665747,0.8867261736407795,1.1234629379060133,1.2080437061891214,1.2077190827190831,1.205951169624576,1.0044550738107019,0.8850187354760074,0.9578361355288119,1.1004427435425699,1.2406225040442067,1.1456735183217026,0.9778907521222007,1.1070319811598308,1.0650857425391667,1.420949769472736,1.2599428696989676,1.199750118796893,0.7867496281157528,1.1010536600783187,0.9940916050123049,1.0785962095167716,1.039599850880183,1.0682481032413897,1.0661646923703147,0.8709696026913971,0.7885278873428394,0.7361434355637273,0.9575143325143327,0.9412071873333498,0.9055167095679397,0.8793415421046298,1.1200022114775656,0.8078925641230239,0.9029553429091988,0.7660081893047054,1.2520986493863604,0.9009938570974481,0.9136816099724994,0.8466321814701003,0.7799085850556441,1.0019372455602098,0.7186135630728755,0.8947247454101753,0.8282016928306491,0.9147244721047121,1.0054192764411576,0.9410927193754351,0.8541595485167909,1.290786693523726,1.6229187162981822,1.441803243635396,0.8034842070986651,1.2697217336566102,0.8788877497829843,1.2797512611997974,0.7560229504704811,1.6157228018547816,1.4996910921640791,1.6296930020948865,0.8663087022670185,6.5,0.18579736761554944,4.444444444444445,2.9375,2.924444444444445,1.4652777777777775,1.0114285714285716,0.5034722222222222,0.32854623330813804,0.28375000000000006,6188.5571668298035,6763.050076946459,2747.4900793019974,2555.893527895244,13.39320425067743,0.48279112600314605,6.927084089702752,0.9334548386075888,1.0,0.3157894736842105,1.848713681187856,3.716763395402209,4.575033532160453,4.953213053667205,4.953213053667205,4.953213053667205,0.21666666666666667,0.009778808821871023,0.09876543209876545,0.055424528301886794,0.05968253968253969,0.03185386473429952,0.026616541353383462,0.01678240740740741,0.013689426387839083,0.012897727272727274,0.5421579427273864,22.68,9.013333333333334,4.396462018730489,165.09909157728842,1.0,4.259586490446428,146.46584640240147,,114.14172241350062,113.17548192933879,111.98952190956774,114.04405986018729,155.50728296718842,114.26952435566463,115.3027410816386,140.334358394642,0.011721243270519304,-0.049547789755719766,-0.5186404119559058,0.4585002038418187,0.3478467871145904,-0.24812993944033965,0.012351639715778604,-0.06997303679834362,-0.038410468432116554,-0.049651173661924126,-0.06809769288150701,-0.027440107659309335,0.1511760853023049,0.01938182116764737,-0.10520647757845777,0.014266952374369203,0.15358468453488813,0.20136285808416796,0.15578107488844736,0.2858890466860982,0.033154904590736625,0.036660921609743796,0.0066320415452120205,0.3098062751295023,0.02527192535584546,0.10154893339972307,0.24333857325711392,-0.09357727292509911,0.004216004494966404,-0.14535615112509878,0.02318605493230283,-0.22344113285509998,0.11454678795131056,0.043202682406681736,0.11321890136130265,-0.15750083371280685,-0.04906689293458572,-0.13017909225816168,-0.13213972549289504,-0.14771391945305,-0.18214133619867867,-0.12061500409887173,-0.048550000391538915,-0.0355128304755548,-0.12598755091050165,-0.12410327642586591,-0.14305158355057643,-0.038398558132381445,-0.23791537366822815,-0.10836093123315844,-0.13757020866110156,-0.2252204484442025,-0.21491933301752997,0.06917042404604086,-0.23786354645494845,-0.09496390240415323,-0.1367364377838226,-0.018165568829278368,-0.08169463054504857,-0.17089418268361495,-0.08931101170539514,0.07974642985039787,0.2512470588988466,-0.06591621265534305,-0.02976163338500348,-0.033767551324453485,-0.0948422565451187,-0.1705706161393146,0.05245940160211963,0.027704786811620044,0.09892320067978402,-0.2601242727852884,0.15424320211136677,-0.022637647854553848,-0.05128919005956167,0.09402433123660754,0.005344442418163533,-0.019428355744821418,0.1591223170781265,0.13265235927736982,0.009620814749625168,-0.06677192084018707,-0.047147819686272636,0.20735252442490198,-0.18926828979582971,-0.3036163452697395,-0.12267728511062584,0.11190236858125811,-0.16800872222362595,0.11757156487363127,-0.18133969107043246,0.1964499752620145,-0.31958209479996613,-0.1607567356225901,-0.30394776270309026,0.06914372028709526,5.351147550358933,16.259783224401097,13.11406403070625,21.70121510415142,40.46840421001038,45.22613798783959,47.123949723070155,47.123949723070155,47.123949723070155,56.05463829055928,39.08220856420623,6.361693576019729,7.094020649650374,3.5167155006829387,16.97242972635304,7808.379067149622,6615.098306973737,1739.0690484126117,154.0,45.0,62.0,80.0,106.0,117.0,129.0,142.0,153.0,407.10481198800056,30.0,5.017279836814924,5.8998973535824915,6.810142450115136,7.714677473800927,8.62998601889136,9.54287630006159,10.461816798946085,11.37938264370897,12.30109642068824,0.7517730496453897,1.0165106382978728,1.1351896013503286,0.7224342281986197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.683450974646452,1.003504380475594,1.0312485472098685,0.6599545062816409,3.0,0.0,0.0,0.0,0.0,0.0,7.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,1.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,19.473446504333015,11.511148835894357,5.749511833283905,0.0,17.373626353755018,14.383611552215466,4.39041504767482,0.0,0.0,17.667306958694127,24.117007251546227,39.795980251553715,10.586084805438322,248.74072420791023,-676.362844196197,-46.97226567152003,-14.390698812685041,-48.31163172829978,356.83880942418443,970.2975370450044,26.513366942581914,20.644628447766053,29.40295566803044,0.46153846153846156,0.706154774684771,0.18478446880101043,111.95317343027692,0.10789448781945306,200.35208940616465,0.29384522531522894,7.0,0.1,0.3328263766326276,0.6691338449432931,0.8236493562937008,0.8917335172649545,0.8917335172649545,0.8917335172649545,1.7836999999999998,,2.408963585434174,2.206712076476747,1.8536496059981293,2.4535365920366647,-7.647982225637176,2.0707708096047845,1.9380523528738784,-3.017322832525487,101.2198,19.086016810659167,0.0,14.366919109492311,7.04767198267719,12.965578028838586,20.640100371266954,61.77704190923532,0.0,5.749511833283905,4.110873864173311,0.0,5.484796933490655,0.0,7.060476365999801,0.0,8.733755131364893,0.0,10.461988433479375,35.333333333333314,4.139445091678136,0.0,0.0,0.0,0.0,0.0,-0.4236222725763137,1.0686367033039113,47.77600000000002,0.0,37.9400785982098,0.0,0.0,0.0,0.0,0.0,-0.9934074350840216,53.35391126346545,5.559266895052007,4.39041504767482,5.749511833283905,51.92790633430298,20.013250011515773,5.817220841045895,31.973356838083088,22.993638389456653,5.022633313741326,0.0,0.0,33.95440872533513,32.122195808383246,34.9784542515426,292.9316928048029,,228.11137599947023,226.19334156750068,223.86387366879907,227.9128671066577,312.9553114334434,228.39113651064324,230.46704985235766,281.31528596768237,34.9784542515426,292.93169280480276,,225.93762912774625,224.2474368361734,222.2750311493721,225.6974706604962,318.66254816001396,226.54648640062783,228.72864141245796,283.68603962180964,5.078481497322214,216.71285198272898,,172.54424312322473,170.87695845164717,168.90391727769273,172.43449509736365,229.49074970298602,172.45206408403857,173.9238611331568,209.25109138073088,1.2492305089836644,10.461846171600103,,8.146834857123936,8.07833362741074,7.995138345314253,8.139745253809204,11.176975408337265,8.156826303951544,8.23096606615563,10.046974498845799,2.539240748661107,146.46584640240147,,114.14172241350062,113.17548192933879,111.98952190956774,114.04405986018729,155.50728296718842,114.26952435566463,115.3027410816386,140.334358394642,47.16470588235292,0.0,4.471236981342258,5.7929949427706635,13.353018801267808,0.0,10.327400485650845,48.46868171886382,0.6831925547996978,0.0,0.0,0.0,0.0,2.734565706104133,0.0,0.0,0.0,31.01786179523712,427.6328791256805,86.88954301582923,174.68787958390382,215.0265760115413,232.80101352235863,232.80101352235863,232.80101352235863,1046.0,135.7571552966097,177.94665450641412,63.851890728508046,82.85000000000001,82.85000000000001,0.8571428571428571,8.496652416756312,5.906890595608519,4.239599942811045,5.206548142562201,,5.210403513971114,5.207951041314696,5.208486123716866,5.210797177478986,5.1823441690090295,5.208235562294882,5.207778804656802,5.196685370202911,0.15141428367182305,0.18594814794865003,,0.18608583978468266,0.18599825147552487,0.18601736156131662,0.18609989919567807,0.18508372032175105,0.18600841293910292,0.18599210016631434,0.1855959060786754,2.4740883288628877,2.679536508752977,,2.680276719845832,2.679805921374019,2.6799086594588672,2.6803522703547826,2.6748769133659103,2.6798605519199343,2.6797728489613397,2.677640410717292,279.0100000000004,358.54681202732525,173.31433329514897,,171.86229925460583,172.16177018254484,172.30581117772175,171.818982873374,176.34533557886257,172.1824476559368,172.25164972056487,174.4022760085689,12.805243286690187,6.189797617683892,,6.1379392590930655,6.148634649376602,6.15377897063292,6.136392245477643,6.298047699245092,6.149373130569172,6.151844632877316,6.228652714591746,6.911678646178415,6.1847263184753825,,6.176312987625676,6.178053976295867,6.178890287236963,6.176060914651594,6.202063623719613,6.178174073990822,6.178575904506943,6.190983979078729,14.421655504571719,40.67464430431394,10.269938404348576,0.060338150394670054,-2.2356681564418834,4.139445091678136,0.28431894053917883,0.3988736142605189,4.471236981342258,346.64894635870655,150.63229176113578,-409.5914957544101,-28.445442739001948,-8.714712675625746,-29.25653541102929,216.09427979292954,587.5923299680838,16.055952388105354,12.501964467406042,17.80582818085103,1976.0,53.0,2.496084100382516,1.1829050018333076,0.0,0.0,1.0248859854488384,0.24261227663595059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16063397433656976,0.06598253579435547,0.5232515192135527,0.16229437623226942,20.74819418658442,16.378828296556854,13.128805413084203,8.905572341896825,12.564933753465152,7.246885355056056,11.084744458612295,5.055699179965926,8.400573258040497,3.5080050534369898,6.9527933692271855,2.505043909891966,4.85515790381339,1.4847915301594055,3.3546571991685292,0.8914731142659793,6.647452009878078,2.2776629748360384,9.69941592996455,2.9423803009095644,16.483043534158146,4.170173794824023,88.32822010608643,44.087296336940454,33.11250518131911,28.387177064123392,28.387177064123392,28.387177064123392,150.0,182.0,53.64406699999999,28.417932999999998,0.3617021276595745,144.09,11.944444444444446,6.055555555555556,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,47.0,0.0,0.0,49.0,12.0,3.0,8.0,41.0,15.0,30.0,34.0,0.0,0.0,0.0,19.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,5.0,1.0,2.0,28.0,9.0,0.0,3.0,4.0,0.0,3.0,3.0,0.0,0.0,2.0,1.0,2.0,3.6888794541139363,7.049146328424087,4.343805421853684,4.948759890378168,5.465948207931988,6.0207199052567715,6.2628028472718595,6.445372536867763,6.616650689729026,6.823490127660532 +3366,Nc1[nH]c(=O)ncc1F,0,33.84615384615385,7.822669230769232,3.5384615384615383,14.76923076923077,182.2748820407305,137.43201631921303,1.3475003553381535,7.751446153846155,12.3525641025641,8.99942646153846,226.29076054096893,31.615384615384617,7.356692307692307,4.0,12.23076923076923,166.72735119360001,123.42589944886153,1.5650993238461541,7.412307692307691,5.354700854700855,8.608208615384616,261.86747499069173,31.05263157894737,7.458357894736842,3.6315789473684212,11.736842105263158,170.0123054876342,121.5865726142316,1.4035940397288946,7.475678947368421,6.470760233918129,8.69643242105263,232.55330038414596,26.857142857142858,7.783190476190477,2.761904761904762,9.285714285714286,182.19395046982146,102.48406449013335,1.1457839255714284,7.73705238095238,7.830687830687832,9.026757142857145,191.1149809621484,16.941176470588236,7.3304647058823535,1.7647058823529411,5.0,187.37522851723224,59.11951147717645,0.8196824146292941,7.268364705882353,6.696078431372548,8.767549882352942,127.275027105287,13.125,7.222250000000001,1.25,5.25,194.70854147720587,45.936967599599996,0.539629160818375,7.090400000000001,9.875,8.783928,78.36775148558017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.071005917159765,0.3192840236686389,0.04895841992073508,0.6745562130177514,5.301775147928994,2.966050330393867,38.82038946972098,0.18671423644120708,0.2775313609467456,4.895463510848127,0.18857590532544377,35.78529428565881,-0.7988165680473368,-0.09190828402366859,-0.04050725920644019,0.09467455621301778,0.6331360946745559,-0.9159575759491113,-3.470843407905327,0.0020436793491123953,-0.07422485207100595,-0.9470742932281394,-0.05422655621301776,4.263336041250081,1.2488321395203987,0.040143911554033004,0.017110540397852602,-0.18467767050762998,0.3136094674556211,-0.5089659080509819,5.752636256033264,-0.031147464480101868,0.03718240423544067,0.17819820755043428,0.022388402366863874,-2.5569809115418223,-2.005071851225697,-0.023115525500140947,-0.006901474330603356,-0.17638771484925328,-1.466610312764159,0.346649928747009,-9.474120620828312,-0.04209174409703128,-0.024366892082276666,-0.5333348987195141,-0.015490938292476714,-11.286803346045483,-2.677340758788723,-0.11107090149669327,0.004481634531220462,-0.05012182387748001,-1.6411416637660978,-0.38809145655149024,-13.5512064885381,-0.0365403326454333,-0.09928882701009394,-1.6156746722357584,-0.06277599582318133,-9.443189610848592,2.7270710059171592,0.09129482248520715,-0.005999056681041525,0.30621301775147924,1.2559171597633139,0.20204748130438827,14.101923403436649,0.10708796721570642,0.08176479289940825,1.971523668639053,0.05579047928994081,19.76399369720533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.4243386243386243,1.4722222222222223,0.7777777777777778,0.16666666666666666,0.6944444444444444,0.08333333333333333,0.3599548855652243,0.02398180662393686,0.03353736217949241,0.7970961485955654,0.31079720474523953,0.15568916222783416,1.1570510341607898,0.46648636697307366,1.931335243705026,0.9124056667664635,0.6307182175531674,0.19424201450351933,0.1939693448818757,1.0189295769385625,9.925679997538461,440.0,101.69470000000001,46.0,192.0,2369.5734665294963,1786.6162121497696,17.517504619395996,100.76880000000001,160.58333333333331,116.99254399999998,2941.779887032596,411.0,95.63699999999999,52.0,159.0,2167.4555655168,1604.5366928351998,20.346291210000004,96.35999999999999,69.61111111111111,111.906712,3404.2771748789924,590.0,141.7088,69.0,223.0,3230.2338042650495,2310.1448796704003,26.668286754849,142.0379,122.94444444444444,165.232216,4418.512707298773,564.0,163.447,58.0,195.0,3826.0729598662506,2152.1653542928,24.061462436999996,162.47809999999998,164.44444444444446,189.56190000000004,4013.414600205116,288.0,124.6179,30.0,85.0,3185.378884792948,1005.0316951119997,13.934601048698001,123.56219999999999,113.83333333333333,149.048348,2163.675460789879,105.0,57.778000000000006,10.0,42.0,1557.668331817647,367.49574079679996,4.317033286547,56.723200000000006,79.0,70.271424,626.9420118846414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.92307692307693,4.150692307692306,0.636459458969556,8.769230769230768,68.92307692307692,38.55865429512027,504.6650631063727,2.427285073735692,3.6079076923076925,63.64102564102565,2.451486769230769,465.20882571356447,-10.384615384615378,-1.1948076923076916,-0.5265943696837224,1.230769230769231,8.230769230769226,-11.907448487338447,-45.12096430276925,0.026567831538461137,-0.9649230769230772,-12.311965811965813,-0.7049452307692309,55.42336853625106,23.727810650887577,0.7627343195266271,0.3251002675591994,-3.50887573964497,5.958579881656801,-9.670352252968655,109.30008886463202,-0.5918018251219355,0.7064656804733727,3.385765943458251,0.4253796449704136,-48.582637319294626,-42.106508875739635,-0.4854260355029599,-0.14493096094267047,-3.704142011834319,-30.79881656804734,7.279648503687189,-198.95653303739456,-0.8839266260376568,-0.51170473372781,-11.200032873109796,-0.325309704142011,-237.02287026695515,-45.51479289940829,-1.8882053254437856,0.07618778703074786,-0.8520710059171601,-27.899408284023664,-6.597554761375334,-230.3705103051477,-0.6211856549723661,-1.687910059171597,-27.466469428007894,-1.0671919289940826,-160.53422338442607,21.816568047337274,0.7303585798816572,-0.0479924534483322,2.449704142011834,10.047337278106511,1.6163798504351061,112.81538722749319,0.8567037377256513,0.654118343195266,15.772189349112423,0.4463238343195265,158.11194957764263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7614856834587245,0.48756965526136653,0.4664863669730736,0.2446958153803679,0.3227326677910921,0.12083035161818052,0.22002817073012115,0.061080958976049184,0.13975099840201366,0.030156018706540662,0.09511429717669644,0.01459766488228455,0.07206761933268581,0.0073737236264072095,0.06804138174397717,0.0035214760613688193,9.004060602030648,5.772734504421535,4.107704357780459,2.261513044883112,0.49489187481622354,-0.3603284298172793,3.177795877392586,0.9776757282275982,7.004056188875825,2.9661207026778817,17.424769016954905,11.043450120565481,19.000138933569506,11.791540681472652,1.9127979089191034,0.5458462752271047,3.988655249772384,2.3077005180606722,8.001916233412972,1.4780356632036904,4.009933438908866,2.501227092878137,20.796042427317765,13.304122757881252,0.525977477570591,0.8336697852628987,0.8866483910737346,0.8866483910737346,0.8866483910737346,0.8866483910737346,2.3462271738277805,268.7604122853712,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.5965298078587282,0.3657605770894974,0.15384615384615374,0.15384615384615374,0.15384615384615374,0.15384615384615374,-1.5728273000738113,358.98523517837475,53.28449681045143,27.614248859874984,58.412854144366435,,5.0,67.0,11.506964239249369,9.184952231746642,5.817862777835028,0.0,6.196843571613076,0.0,0.0,4.9839785209472085,4.9839785209472085,5.733667477162185,3.819047619047619,13.25,7.0,1.5,6.25,0.0,0.0756613756613757,0.75,0.38058608058608073,0.06852258852258852,-0.3120634920634922,0.1855820105820104,0.3068934010152285,0.0,0.8139194139194144,1.0423280423280425,0.4333333333333336,0.7453968253968258,0.8567460317460321,3.239593970087019,0.21583625961543174,0.3018362596154317,7.1738653373600885,2.7971748427071557,1.4012024600505075,10.413459307447107,4.198377302757663,0.4071065989847715,0.26683291770573564,0.0,0.39276807980049877,0.0,0.502887896966641,-0.6629464078598276,-0.11991498227128967,-0.050995877527679055,-0.1325892815719655,0.49711210303335895,0.6553323016868532,0.07575829565397922,0.05041017705283486,0.08191653771085665,-1.290191016200543,0.6642228739002931,0.8389925684315869,1.846595586507467,0.9473684210526316,0.42187499999999994,1.2594299039817125,0.65173709325871,0.9861202077825372,0.8029541946323036,0.7217969379532634,0.8493611161176663,0.732109548615439,0.5537891649945978,0.5836489888521597,0.5665124804412485,1.3324099722991691,0.6460291353383459,1.1301532036666069,0.5580604856297225,1.1513364620524529,0.5643918464299965,0.6412061580219687,0.5991631035861256,0.9557176692737173,1.1055718475073313,1.0504202926560642,1.1147562887485465,1.1729323308270676,1.1441326530612244,0.9224185976805507,1.1051728305828963,1.1187249234814265,1.056116661935504,1.0814627220751312,1.0581515690751755,1.139037455636494,1.520441607728135,1.550020658386596,0.8337676909534245,0.845201238390093,1.500393907563025,1.0740323040803448,1.5439486196014172,1.096780861725604,1.571401230780653,1.5344954258899368,1.5156042493640425,1.27262982644151,1.222324046920821,0.949323560481106,0.7058234296364371,0.17105263157894737,1.3384486607142858,0.31564508223935234,1.1835640731508863,0.14581830967314763,0.9932349454616779,0.954572925060435,0.9484689165708168,0.5961808167408283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2.5,0.0,1.333333333333334,0.5625,0.41333333333333333,0.0,0.0,0.0,0.0,0.0,1505.5679824958004,1603.9487375864037,898.4852088468149,849.754409825117,5.391887534130348,0.34535519201310905,3.5297711794676725,0.527545911614447,0.0,0.0,2.103909910282364,3.334679141051595,3.5465935642949384,3.5465935642949384,3.5465935642949384,3.5465935642949384,0.2777777777777778,0.0,0.11111111111111116,0.05625,0.10333333333333333,0.0,0.0,0.0,0.0,0.0,0.5484722222222222,7.111111111111111,2.7222222222222223,1.7041420118343196,49.537647281372706,1.0,3.0994475512921005,19.165947630223936,,11.86371523839211,11.393375050139534,11.253371998271222,11.800306048443813,22.397772824498517,11.66464158581433,11.923567572590436,17.45507691683007,-0.0989736070381231,-0.2878574473211141,-0.827380852405418,0.1403508771929825,0.1194196428571428,-0.3088139019635178,-0.08940774307822198,0.010945492899015833,-0.26744671959883004,-0.19345957561106633,-0.2875582440897405,0.11913653712661075,0.15473066831301124,0.12573103750313352,0.3494912708693418,-0.2737765466297322,0.059151785714285685,-0.171597192008335,0.14818594904927962,-0.16681890504856944,0.133975504997345,0.036400681397288547,0.11872355764765406,-0.07145339901722002,-0.24842899036447416,-0.07239800236334665,-0.14096603488791137,-0.26148705096073516,-0.2766262755102041,0.11687257130966378,-0.24405011774077928,-0.2254340370574003,-0.08779869777294226,-0.10894471944028751,-0.08214696498867391,-0.3154033960416177,-0.33172330515784026,-0.3478749115613924,0.09153960725195669,-0.07430340557275546,-0.30954569327731085,-0.13084452835294771,-0.34907445993316816,-0.19570190973059082,-0.3577571438103029,-0.33003507607716737,-0.33289510510286396,-0.2638846431013706,0.33788489736070376,0.2859360810986122,-0.1225337069855226,0.4539473684210526,0.23688616071428578,0.06812004477265834,0.3632607399375997,0.573539378982633,0.29461460723027183,0.4027246172441578,0.295851578671505,0.5522937310348145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.8898815748423097,1.6509636244473134,23.611604286992495,36.37781833627119,36.59142807490048,36.59142807490048,36.59142807490048,36.59142807490048,17.382017193345234,8.211651000898172,5.676463957978506,1.748178130531674,1.7457241039368814,9.170366192447062,519.1458835498619,361.3315331843586,160.96480346894612,0.0,12.0,13.0,13.0,14.0,7.0,1.0,0.0,0.0,129.033839968,9.0,3.7612001156935624,4.532599493153256,5.351858133476067,6.1463292576688975,6.963189985870238,7.764296006450518,8.579416534596369,9.382695764458287,10.196940441748334,0.846153846153846,1.095692307692308,1.189188988679766,0.8267703528176097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6451484108705665,1.0720965309200605,1.0809569163538573,0.67068462008173,1.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.733667477162185,5.817862777835028,5.817220841045895,0.0,0.0,4.9839785209472085,9.184952231746642,4.9839785209472085,0.0,0.0,0.0,0.0,6.196843571613076,136.94321895178518,-180.5293299609279,-32.65448178774917,-13.886871535455995,-36.10586599218558,135.37039165171137,178.45590521744688,20.630015022702263,13.72737732441899,22.30698815218086,0.4,0.5424886392357201,0.29027147101824236,44.513898954749564,0.26254959709486075,41.74928392297397,0.45751136076427984,3.0,0.0,0.5685567312360539,0.9011575366850628,0.9584248993188739,0.9584248993188739,0.9584248993188739,0.9584248993188739,-0.5088000000000001,,1.011904761904762,1.2329614454823001,1.202586135767786,1.0445550874627276,-4.635044386748161,1.1015700442235659,0.9827837795551935,-1.9036280280890194,29.228100000000005,4.39041504767482,0.0,9.967957041894417,0.0,0.0,5.733667477162185,22.498344994934268,0.0,0.0,2.9444389791664403,0.0,4.204692619390966,0.0,5.666426688112432,0.0,7.217443431696533,0.0,8.806723554725636,10.999999999999998,0.7719907407407409,3.073425925925926,1.974537037037037,0.0,0.0,0.0,-0.9957407407407401,0.0,14.244000000000003,0.0,10.229166666666666,0.0,0.0,0.0,0.0,0.0,0.0,15.459456852836958,11.423410875365658,10.208277825509848,0.0,9.967957041894417,0.0,5.817220841045895,0.0,10.991380755684897,0.0,0.0,0.0,10.748014586628926,8.386929341317364,10.792280186226474,38.33189522114244,,23.502490686413484,22.512639610954842,22.239366991667477,23.36841150614068,46.6715794401003,23.08440079661931,23.628671172796615,35.548624448328766,10.792280186226474,38.33189522114243,,22.715453649376443,21.55366959780194,21.30402221940365,22.555979771447447,49.43059003453446,22.227624095556536,22.86428378869813,36.81378166952947,4.491653559875724,27.3437299452239,,16.50642788850149,15.80598265982751,15.589185911741055,16.418997706606184,33.085710190806566,16.210022471161118,16.592764301004916,24.93215851218895,1.1991422429140526,4.259099469015826,,2.6113878540459425,2.5014044012172048,2.471040776851942,2.5964901673489647,5.185731048900034,2.56493342184659,2.625407908088513,3.9498471609254184,2.245826779937862,19.16594761057122,,11.863679205640604,11.393315521642123,11.253304177585715,11.800267429455086,22.397772823893145,11.66459706989005,11.923533784126661,17.455076820720226,13.937254901960786,0.0,0.0,0.0,12.141064814814815,4.9500925925925925,0.0,14.052439912600144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.71890006106249,147.72704006165662,27.350828833670732,43.35082883367073,46.1057163358342,46.1057163358342,46.1057163358342,46.1057163358342,78.0,80.67852573311553,124.58657054183993,37.839725273092014,71.77000000000001,71.77000000000001,0.6666666666666666,5.793489866906267,4.169925001442312,2.862786741338551,2.9640605682098116,,2.9568111714402896,2.9572356009261584,2.9549794497190196,2.95755176182463,2.9265709594914715,2.957005009098732,2.9564333800707527,2.9450811463382376,0.31808741570428345,0.3293400631344235,,0.3285345746044766,0.3285817334362398,0.32833104996877993,0.3286168624249589,0.32517455105460796,0.32855611212208136,0.3284925977856392,0.3272312384820264,0.9464350198523426,0.9811996261859252,,0.9787508650200591,0.9788943976984211,0.9781311807662461,0.9790013029443352,0.968470901018085,0.9788164191910358,0.9786230869899912,0.9747758550010065,81.03000000000003,26.534691139697227,29.317809163360387,,29.595374608879727,29.576227631326088,29.677084093161593,29.567228944291756,30.572031563197307,29.587718253021844,29.609518441485818,30.026278467866465,2.948299015521914,3.2575343514844874,,3.288374956542192,3.2862475145917873,3.297453788129066,3.2852476604768617,3.396892395910812,3.2875242503357605,3.2899464934984244,3.336253163096274,3.1730924608217563,3.272834636991761,,3.2822575702482975,3.281610402434785,3.2850146529754443,3.281306102090342,3.314725074144014,3.2819988356830576,3.2827353629490843,3.2967124315138356,12.141064814814815,15.277129629629629,0.0,4.305555555555555,-0.9957407407407401,0.0,0.7719907407407409,0.0,0.0,94.42263175066162,37.2915024004258,-49.16059366149026,-8.892259838008098,-3.781584127806944,-9.832118732298053,36.863200119486955,48.59597188327832,5.617833877636428,3.738151683329101,6.07449648540979,84.0,10.0,0.7600796553858447,0.17236680266646515,0.0,0.0,0.16666666666666666,0.015748519708717802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.016137430609197572,0.2041241452319315,0.02200440382086158,6.8533711511285205,4.388126897352299,4.198377302757662,2.202262338423311,3.8727920134931053,1.4499642194181663,2.860366219491575,0.7940524666886394,1.8167629792261777,0.3920282431850286,1.3316001604737502,0.20436730835198372,0.5044733353288007,0.05161606538485047,0.06804138174397717,0.0035214760613688193,1.4782780961775843,0.23737415935528372,1.5580286054249615,0.18703605474523224,2.0759330939284544,0.16418669699571142,29.740906795204374,19.397461323051402,19.048453910276486,19.048453910276486,19.048453910276486,19.048453910276486,42.0,46.0,14.006172000000001,7.133828,0.46153846153846156,9.05,4.083333333333334,2.0277777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,13.0,0.0,0.0,13.0,6.0,1.0,3.0,10.0,7.0,9.0,6.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3.0,2.0,1.0,9.0,5.0,0.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,2.6390573296152584,0.0,3.2771447329921766,3.7074558396868715,4.141148628419903,4.610779424752602,4.2749284991175145,2.1510351948668447,0.0,0.0 +24803511,COc1ccc(N2C[C@H](C)N[C@H](C)C2)cc1NS(=O)(=O)c1ccc(-c2ccc(C)o2)c(F)c1,0,26.75409836065574,6.320627868852458,3.377049180327869,7.876138433515483,164.05193281178808,106.42675034671757,1.5459971530454424,6.37927868852459,5.071849209561718,7.833524540983604,219.73897304952837,29.5,6.4020125000000005,4.0,6.505208333333334,146.5633705534845,113.10681468492504,1.8590647915625005,6.5579703125,2.873239776234568,7.857580937499995,266.6289698115052,23.5929203539823,6.409000000000001,3.663716814159292,6.103244837758112,156.0250070485493,89.1154988466407,1.561779798990142,6.509069026548672,3.5395225609089915,7.892637787610616,222.70168490409824,20.44137931034483,6.367144137931035,3.193103448275862,4.60919540229885,159.48389736530137,74.84834761331861,1.4448959349085166,6.454053103448276,3.191932737335036,7.887658455172414,198.9366029875338,18.698795180722893,6.1839692771084325,2.8493975903614457,3.9156626506024095,161.2180999544499,68.40951564147467,1.318585374271187,6.2650777108433715,3.1010244682433434,7.755632578313254,177.77207464126562,18.312883435582823,6.242514110429447,2.705521472392638,4.543967280163599,161.0405425354706,66.83335818243927,1.3122517836409204,6.314598773006134,3.8689691736726526,7.789378797546012,175.79640390261497,16.88679245283019,5.992836477987421,2.6666666666666665,3.444444444444444,161.89247625398258,61.055328418374856,1.2624131587579055,6.076238364779875,2.857413230840903,7.597799270440248,164.67420937599255,18.58041958041958,6.367299999999999,2.7762237762237763,3.8228438228438235,163.36023653001098,66.7580017548755,1.2790026662791818,6.4301076923076925,3.4790641457308116,7.957948251748253,171.3428227576305,19.09090909090909,6.436922727272729,2.6893939393939394,4.156565656565657,162.65506717741044,68.6993490825212,1.2914098926688031,6.500799242424241,3.549067059483725,8.006598848484847,175.5622157543824,9.957538296156947,0.16453474872346135,0.01936767680903789,0.6895995700080624,4.342560243662097,1.8608874742671304,46.15738811872353,0.27704276961044766,0.15057199677506047,1.9763219653108863,0.10011061327600104,50.573650186799846,1.9830354743348597,-0.006192919830018696,-0.008568807233155777,0.2325315775329213,0.9727573792887214,-0.27035772832302496,8.599474995849105,-0.025051252066443687,-7.914329145375154e-05,-0.3256074665167835,0.0025638226871136267,0.45933724332902676,1.1830391012026933,0.014658403750062526,5.6696056507653036e-05,-0.003106025832812108,0.5928009117773977,-0.07294477573485911,5.647835735638954,0.01925572789545011,0.01525582855498462,0.3816727384670454,0.006637767835271169,5.263886082768621,-0.8061533329008698,-0.020418027411985902,0.0002987050553809357,-0.04369793066380008,-0.23197673760092097,-0.003836260481706581,-3.700541310610366,-0.0019428008182552146,-0.01882392441779636,-0.053834942192883865,-0.013310062569387226,-2.4081004033384,0.7333564302898241,-5.941789193861403e-05,-0.0020676690676237554,-0.052724199674268155,0.03580567904512437,-0.04102360364275089,3.428886473898346,-0.004438846862326363,0.002166152543525361,-0.006628401539509284,0.001183378922300317,1.0571250838082298,0.5876693876406999,0.034272723870323166,0.0014983760668374362,0.012301264750058938,0.6929644694247191,0.013060708791457796,2.603181646421584,-0.00427408897091419,0.029247896617275875,0.4562546438579459,0.023087693070172097,-2.4328561876940586,1.076898243692522,0.01362137046408358,-0.00023582630656602955,0.003049156664790519,0.44804818103231514,-0.10485809329979835,5.063551351114441,-0.007656822615062322,0.015241953116680848,0.06323718945893281,0.005681753669044856,3.153026405570916,-0.8490893680358879,-0.007443002764502254,0.0013851723768434324,-0.01609274896025769,-0.3861741889153874,0.019266084613143383,-3.7950291934890443,0.0035415341634175645,-0.008014367519070453,-0.13188161737934295,-0.005621869036633968,-0.4368264478958961,-1.184065866946813,-0.018920255429869626,-0.0019521463449960542,-0.1000565993175507,-0.2941802690526153,-0.06123769397208687,-5.446697717569894,-0.014274917155038144,-0.01823067784808565,-0.2966624097437469,-0.01192000882990083,-4.706599770451668,,,0.4743145743145744,1.2651515151515151,0.6212121212121212,0.045454545454545456,0.6439393939393939,-0.022727272727272728,0.9355937973286359,0.02294478898876861,0.03336903141301103,1.0942647955268994,0.24493705739612937,0.22951856459610492,2.0298585928555353,0.4744556219922343,2.0283894912946256,1.491836669040117,0.18955205130383304,0.22476636306985176,0.05406623487586526,0.5365528222545085,7.75702386222952,1632.0,385.5583,206.0,480.44444444444446,10007.167901519073,6492.031771149772,94.30582633577198,389.13599999999997,309.38280178326477,477.84499699999986,13404.077356021231,1888.0,409.72880000000004,256.0,416.33333333333337,9380.055715423008,7238.836139835203,118.98014666000003,419.7101,183.88734567901236,502.8851799999997,17064.254067936334,2666.0,724.2170000000001,414.0,689.6666666666666,17630.82579648607,10070.0513696704,176.48111728588606,735.5247999999999,399.96604938271605,891.8680699999996,25165.2903941631,2964.0,923.2359000000001,463.0,668.3333333333333,23125.1651179687,10853.010403931197,209.5099105617349,935.8377,462.83024691358025,1143.710476,28845.8074331924,3104.0,1026.5388999999998,473.0,650.0,26762.204592438684,11355.979596484796,218.88517212901706,1040.0028999999997,514.770061728395,1287.4350080000002,29510.164390450092,2985.0,1017.5297999999998,441.0,740.6666666666667,26249.608433281704,10893.837383737602,213.89704073347002,1029.2795999999998,630.6419753086424,1269.6687439999998,28654.81383612624,2685.0,952.8609999999999,424.0,547.6666666666666,25740.903724383228,9707.797218521602,200.72369224250698,966.1219000000001,454.3287037037036,1208.0500839999995,26183.199290782813,2657.0,910.5238999999999,397.0,546.6666666666667,23360.51382379157,9546.394250947196,182.897381277923,919.5054,497.50617283950606,1137.9866000000002,24502.023654341163,2520.0,849.6738000000003,355.0,548.6666666666666,21470.468867418178,9068.314078892798,170.466105832282,858.1054999999999,468.4768518518517,1056.8710479999997,23174.212479578477,607.4098360655738,10.036619672131142,1.1814282853513112,42.0655737704918,264.89617486338796,113.51413593029496,2815.6006752421354,16.899608946237308,9.184891803278688,120.55563988396406,6.106747409836063,3084.9926613947905,126.91427035743102,-0.39634686912119654,-0.5484036629219697,14.882020962106964,62.25647227447817,-17.302894612673597,550.3663997343427,-1.603280132252396,-0.0050651706530400985,-20.838877857074145,0.1640846519752721,29.397583573057712,133.68341843590434,1.6563996237570655,0.006406654385364793,-0.3509809191077682,66.98650303084594,-8.242759658039079,638.2054381272018,2.1758972521858624,1.723908626713262,43.129019446776134,0.7500677653856421,594.8191273528541,-116.89223327062612,-2.9606139747379556,0.043312233030235674,-6.3361999462510115,-33.63662695213354,-0.5562577698474542,-536.5784900385031,-0.2817061186470061,-2.729469040580472,-7.806066617968161,-1.9299590725611477,-349.17455848406803,121.73716742811081,-0.009863370061809928,-0.34323306522554337,-8.752217145928514,5.943742721490645,-6.809918204696648,569.1951546671255,-0.7368485791461763,0.35958132222520994,-1.1003146555585412,0.1964409011018526,175.48276391216615,95.79011018543407,5.586453990862676,0.2442352988945021,2.005106154259607,112.95320851622922,2.1288955330076207,424.3186083667182,-0.696676502259013,4.767407148615968,74.36950694884518,3.7632939704380517,-396.5555585941316,171.22682074711102,2.165797903789289,-0.0374963827439987,0.4848159097016925,71.23966078413811,-16.672436834667938,805.1046648271961,-1.2174347957949092,2.423470545552255,10.054713123970316,0.9033988333781322,501.33119848577564,-121.41977962913197,-1.0643493953238223,0.19807964988861082,-2.3012631013168496,-55.2229090149004,2.7550500996795035,-542.6891746689333,0.5064393853687117,-1.146054555227075,-18.859071285246042,-0.8039272722386575,-62.46618204911314,-156.2966944369793,-2.4974737167427907,-0.25768331753947915,-13.207471109916693,-38.83179551494522,-8.083375604315467,-718.964098719226,-1.884289064465035,-2.406449475947306,-39.15943808617459,-1.5734411655469096,-621.2711696996203,0.7197075120514409,0.6021403744250177,0.4349176534928816,0.3396030249523403,0.28681496876443424,0.19053172698917703,0.17730047898249057,0.10249869244328118,0.11555986122227406,0.05874751193051786,0.0716664839635272,0.03196737329317391,0.046156519627406904,0.018889612839999265,0.02923685109428855,0.01024249562351296,16.013123848207385,5.690467498053481,4.107728902874777,2.181611563494174,0.4655234068488528,-0.5354722903966936,4.043834270870953,0.9714330448171414,7.004065905985361,0.6442270783317686,17.424773524214054,10.319764823559172,32.0665444866584,11.701979572842168,2.9545921982702454,0.5458488161358213,3.9886838332522365,2.2344114898395095,8.001921377581558,0.2989364563616249,4.009974847022159,2.4326761970850814,24.44183381440775,13.304118233176018,0.2755583027434912,0.5932686833231499,0.7728972297625137,0.8362591071748854,0.8415392636259162,0.8415392636259162,1.3586049903386157,1248.3452997770062,0.0,0.0,5.0,0.0,15.0,2.0,1.0,0.0,0.0,4.219670907165314,2.246863115179698,1.1314680329287539,0.7380254099779338,0.7052385247320325,0.7052385247320325,192.03001540493943,2039.1032801099345,64.8264805686321,33.42792262475302,70.163884286365,,16.0,881.0,15.840511994453479,12.808212032003757,10.45893496721477,35.04107460401227,24.843266154970323,19.242531678200752,31.189205473537065,6.06636706846161,28.786267598690145,9.154013890853395,15.652380952380955,41.75,20.5,1.5,21.25,0.0,0.025685425685425593,-0.75,0.1670418775654099,0.06420308809067621,-0.10283878947473368,0.03263656977942686,0.16952426702004253,0.0,0.6089773614363768,0.8711399711399705,0.4419354838709669,0.5447742733457006,0.8385034013605437,30.874595311844985,0.7571780366293641,1.101178036629364,36.11073825238768,8.082922894072269,7.574112631671462,66.98533356423266,15.657035525743732,0.5444757329799574,0.188621843626407,0.0532400365074536,0.34499543656829934,0.3333333333333333,0.3677621967389813,-1.0328156573864316,-0.05182473050724566,-0.016931404219449695,-0.054358718809812176,0.6322378032610184,1.7755634162231126,0.03745830543337959,0.02910759698726414,0.04227531943388364,-6.866846892395498,0.8195660828025476,0.7010686471001766,1.5018691705540061,0.9137519485580671,0.5753040164204968,1.2713426858768566,0.8100724861968601,1.2842477550923064,0.6604834199390873,0.7000176448327748,0.6515585929739337,1.0143126876168762,0.8090351851834159,0.7931177526873251,1.2347501356468675,1.237006738907014,0.8393114154837683,1.064107073572144,0.8008318545832535,0.929923780742254,0.7743921340546198,0.5448938667107875,0.8281949466235601,0.8617398792224563,1.0804498430909772,1.1044493358470302,1.2479135427357348,1.1410756040530008,1.0387934591166337,1.0597317126391026,1.0718894932501255,1.0193149813200357,1.0949112515098403,0.8821656346701807,1.1129926246235007,1.0035261168078213,0.9622133140139093,0.9563262777787463,1.1095915996622212,1.1170167810759797,0.9681750353174394,1.020723738281935,0.9544775646394393,1.0455891993447084,0.9417377168293817,0.9975988915268575,0.9434242038525172,0.9665328707670632,0.90326213731125,0.8271611470486252,0.7454097875917699,0.940687326960871,0.8322896612680895,1.043000513604053,0.909175623060792,1.0029194716318033,0.833913460498393,0.9690424124888843,0.8035949853088424,1.0321018799445472,0.9856265238654903,0.738997588644718,0.825825093135633,1.0181767378932043,0.8142899994343308,1.0037707938236713,0.9719145244208411,1.1041819044570582,0.7361761311977407,0.8510810604790094,0.7444041806223693,0.9591571655468037,1.306936612992966,1.2656052551906065,1.2055661619140812,1.0872136437218276,1.2019486825576438,1.001779899342622,1.2794456040691506,1.1015907375205227,1.2560654411527117,1.4149993324687318,1.3262244446631053,0.9719388484819527,1.2624395198885103,1.3383014566716773,1.3377237375153888,1.1940232409834906,1.1735110407649396,1.0350516028861279,1.2428617234974964,1.107104732233061,1.323836547557915,1.5995554749578618,1.398020183807278,1.0349793175338213,9.5,0.17273951637588003,4.666666666666668,2.9097222222222223,2.5250000000000004,1.6913888888888888,0.9599546485260771,0.6970308956916099,0.6117646132527084,0.2881250000000001,7435.0306618466075,8275.609266624613,3571.450738775503,3287.3934195866914,16.44885923724709,0.45832732693768313,8.909897551865413,0.8461333748785121,1.0,0.3333333333333333,1.7110664303975727,3.6838742223831886,4.799269304634133,5.192711927584953,5.225498812830854,5.225498812830854,0.26388888888888884,0.006169268441995715,0.08805031446540884,0.053883744855967065,0.04764150943396226,0.033164488017429196,0.020868579315784286,0.015841611265718408,0.014921088128114839,0.007582236842105264,0.5520117296553748,26.074074074074073,10.947668209327162,6.228373702422146,193.1530411196131,1.0,4.430417262521791,211.05893839421643,,145.79746051683466,162.09031397340382,163.17929212111676,145.7512724504114,207.9070250456005,162.93853009870844,162.62492846558604,197.64766752595537,0.19914916873583105,-0.03763897825879522,-0.4424282435959051,0.33719797349961034,0.22400550014440132,-0.14528429690758138,0.1863076605142822,-0.09042377139698855,-0.0005256175992139078,-0.1647542618216884,0.02560989892295703,0.009082540841572825,0.11880839079065154,0.08909001814990072,0.002927354533363337,-0.004504100593879132,0.13650954241626972,-0.03919891812028387,0.12236038402155462,0.06950453145745605,0.10131916213992503,0.19312275285419206,0.06630433695347669,0.10408357046259913,-0.08095909942038584,-0.12409553343836878,0.015422864514217089,-0.06336710833982856,-0.053419348168971884,-0.0020615220075127904,-0.08017224243910931,-0.007012638593625831,-0.1250161040629449,-0.027239965520706712,-0.13295356140404319,-0.047615712815740854,0.07364836654184485,-0.00036112670666595494,-0.10675875521936022,-0.07645625369756501,0.008245292416468424,-0.02204518231759668,0.07428683930465801,-0.01602224403317894,0.014386158050101287,-0.0033539077416804407,0.01182071394406293,0.02090268509201158,0.05901753728303585,0.20830082481802306,0.07736478058835751,0.017838272071305263,0.15957509638147002,0.007018537645110148,0.05639794088274279,-0.01542754202509607,0.19424525970104065,0.23086048319367566,0.2306218323377985,-0.04810521247147502,0.1081490436354279,0.0827871958340997,-0.012176282622393909,0.004421633651475262,0.10317604267810328,-0.05634843307282425,0.10970186047118283,-0.02763769155870283,0.10122701062037985,0.03199741265284437,0.056754758392903705,0.06234524092931467,-0.0852710120495935,-0.045236661691518666,0.07151980025797645,-0.023336367451722084,-0.08892776777915815,0.010353170129607597,-0.08221932280326773,0.012783348103245386,-0.053226148890375136,-0.06673083621706206,-0.05615657374043544,-0.00863743167207479,-0.11891150520644203,-0.11499245950573934,-0.10079403762484765,-0.14509376697607412,-0.06774350902373019,-0.032907789868489495,-0.11800272804778712,-0.0515260411780832,-0.1210761512004152,-0.15010834011404628,-0.11906838286004535,-0.09306426870647615,8.821451926773316,22.706654851291255,8.982526887782466,18.961691083259264,37.153773143007975,42.967894664605446,43.72523892690053,43.758288107228395,43.758288107228395,66.93685321272265,49.23061007832386,6.2552176930264904,7.4172899813051085,1.7841857509035535,17.706243134398783,10517.719515317654,9653.548659288464,2653.0066368667012,163.0,53.0,68.0,89.0,109.0,121.0,135.0,139.0,164.0,473.17845559600073,36.0,5.187385805840755,6.042632833682381,6.9440872082295275,7.816416983691801,8.717845704894916,9.597166175865409,10.497780781543382,11.381163933787974,12.280971376380382,0.6830601092896175,0.9924590163934428,1.1310022663403407,0.6463520505110754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6745381761068028,0.978720668595307,1.0127099924778815,0.6320046847941063,8.0,0.0,0.0,1.0,0.0,0.0,8.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,2.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,19.370712225710204,23.087227512078684,0.0,0.0,10.023291153407584,4.722094864452088,12.808212032003757,0.0,0.0,0.0,69.30214814676476,30.860580744804636,23.256118783175864,267.0241737370078,-749.9051016708921,-37.62881548334398,-12.293526256899868,-39.468689561625894,459.05418914194723,1289.1981784390425,27.19766508528813,21.134396367853157,30.695194724739114,0.5,0.8151823381182053,0.17610010261945147,74.62642782412999,0.09315800221385322,8.64666806722064,0.18481766188179466,8.0,0.16666666666666666,0.2885082128929183,0.6211494478184058,0.8092196688997684,0.8755592487120312,0.8810875470297196,0.8810875470297196,4.390120000000003,,2.386904761904762,2.065514138690731,1.6350881981328975,2.417710527191747,-7.4577892487311335,1.8893607418979848,1.799624284371629,-2.9430325870916283,126.91420000000004,21.96222592285715,0.0,5.316788604006331,0.0,37.75037673288557,29.821314948405252,60.10840480761322,0.0,17.07321074385534,4.290459441148391,0.0,5.652489180268651,2.3978952727983707,7.195187320178709,4.59511985013459,8.820699399214904,6.555356891810665,10.489689629308009,41.666666666666664,12.50011713812943,0.0,0.0,5.456921265989143,0.0,0.0,1.8547133433687606,0.0,60.54000000000001,0.0,26.170397507768538,0.0,0.0,-4.062662089527168,0.0,0.0,0.0,68.99113824676078,19.675656153108946,15.765187597041944,5.749511833283905,40.700788995727535,10.023291153407584,12.740958040736519,19.60772181825569,57.843570960264,0.0,11.323698910571437,0.0,39.427475081175594,41.14682874251497,41.34370152247284,422.1178767884328,,292.2761140221169,324.1815691135481,326.46626406937503,292.1780030773124,418.92116446576176,325.8657811269367,325.2208736040653,396.3655287199441,41.34370152247284,422.1178767884328,,290.32319194419483,322.3664203250017,325.0293683801068,290.1998762823374,423.2718393399323,324.2054338082991,323.6393855965873,398.2383676390025,4.895325470102547,315.68970804416125,,213.98168471707964,243.74543803878757,245.07697669444104,213.93792834585236,303.54305640593907,244.6734991554202,243.7002373414096,294.1284275305055,1.2528394400749345,12.79145081177069,,8.856851940064148,9.823683912531761,9.892917093011365,8.853878881130678,12.69458074138672,9.874720640210203,9.855177988001978,12.011076627877094,2.4521780224830727,211.05893839421643,,145.79746051683466,162.09031397340382,163.17929212111676,145.7512724504114,207.9070250456005,162.93853009870844,162.62492846558604,197.64766752595537,59.70196078431373,0.0,7.449453427655393,0.0,14.75043847825573,0.0,0.0,61.775309541150776,1.586876377575262,6.040071956016642,5.37038214873345,0.0,0.6026528496635117,2.1973042630379735,0.0,0.0,0.0,38.552285772440484,591.8862575087054,104.37505225425193,224.7163275653745,292.7554275826821,316.7554275826821,318.7554275826821,318.7554275826821,1110.0,147.46545080391653,134.19210537024975,82.99689698486229,92.19,83.81,1.0,8.83331465946786,6.169925001442312,5.082066814579447,5.65545737928177,,5.623642112906165,5.648207663648465,5.648616802618272,5.623549154022919,5.621782859579812,5.6472608996407025,5.6455679130510035,5.6407399291318105,0.15400202468422566,0.1713774963418718,,0.17041339736079286,0.17115780798934743,0.17117020613994763,0.17041058042493695,0.1703570563509034,0.17112911817093038,0.1710778155470001,0.17093151300399426,2.8196405005841485,2.926543455279463,,2.920901985270714,2.925260735630604,2.9253331699631384,2.920885455120023,2.920571316870393,2.925093099555186,2.924793265628636,2.923937718485816,342.71000000000134,275.09974565020497,221.9197888884161,,224.88591542946563,221.97222160359647,222.20646660820577,224.86916867634264,226.9196943521775,222.13315736827087,222.360531997795,223.83809993450924,8.33635592879409,6.724842087527761,,6.814724709983807,6.726430957684741,6.733529291157751,6.814217232616444,6.876354374308408,6.731307799038511,6.738197939327121,6.782972725288159,6.811056211830398,6.596238473742614,,6.609515699551611,6.596474714603836,6.597529447901681,6.609441229006541,6.618518653989023,6.597199478496999,6.598222551061564,6.604845490855139,54.30953865643679,2.0064719795072783,3.4786727003267117,1.3675703886071298,0.6779752382923261,13.102769987792941,0.0,7.562541488694739,-2.5888737729912523,413.1703699746593,193.88047491607233,-544.4898685357778,-27.321468743220677,-8.926063418619307,-28.657361501883038,333.30931412491134,936.0589028275512,19.747636139256123,15.345227915205756,22.28711673398932,3361.0,54.0,3.2659581439505985,1.687429879304629,0.2041241452319315,0.05103103630798288,0.6793948058049195,0.2043910344110248,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.11785113019775792,0.034020690871988585,0.3900166571736666,0.1364113583654482,0.6076586254089809,0.21169661518108093,23.750347897697548,19.870632356025585,15.657035525743737,12.22570889828425,15.201193344515014,10.098181530426382,12.05643257080936,6.96991108614312,10.284827648782391,5.2285285618160895,7.8116467520244655,3.484443688955956,5.584938874916236,2.285643153639911,3.9469748977289543,1.3827369091742496,6.240394025159284,2.8071421250019335,9.786148158746403,3.8769110870637995,14.106708887785764,4.709800100751124,105.8510865122838,53.01443947331495,33.58862509447291,30.647171581699943,30.51829494768149,30.51829494768149,178.0,210.0,68.71520399999999,42.18079600000003,0.4098360655737705,240.09,11.784722222222221,7.069444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,17.0,17.0,61.0,0.0,1.0,64.0,17.0,2.0,10.0,54.0,19.0,36.0,45.0,0.0,0.0,0.0,24.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,6.0,2.0,2.0,33.0,9.0,0.0,3.0,4.0,0.0,4.0,6.0,1.0,0.0,1.0,1.0,3.0,3.8607297110405954,7.542776666176701,4.502583597212991,5.013132174294843,5.567628598707254,6.042632833682381,6.348045736651908,6.7359284592808235,6.945833512831329,7.329534501956005 +6918428,O=C(Nc1c(Cl)cncc1Cl)C(=O)c1cn(Cc2ccc(F)cc2)c2ccc(O)cc12,0,40.08888888888889,6.735833333333331,4.0,10.737997256515776,160.1837738584619,164.8638229366616,1.8434453703974658,6.885604444444441,6.837272434757574,8.239136755555553,273.7032229685496,32.0625,6.584979166666667,4.666666666666667,9.837962962962962,145.35084352958847,125.81262232990007,2.0476267084583344,6.770281250000001,3.7740054869684503,7.980788666666662,308.1823739823035,30.727272727272727,6.584155844155845,4.3896103896103895,8.673881673881674,149.4295912850071,119.9475680606546,1.9121276522707669,6.758254545454546,3.861926139703915,8.009730753246751,284.1094750409993,28.24,6.603384,3.65,6.942222222222222,154.64446383656178,108.27597457521601,1.6697574763454694,6.771038000000002,4.204794238683127,8.117332879999998,242.20047258333986,25.547169811320753,6.414856603773585,3.330188679245283,6.212205916608432,158.3219333253077,97.58612688383398,1.542665267435736,6.563785849056605,3.5564305084648273,7.981494198113206,217.40928043131683,25.683673469387756,6.4714581632653045,3.336734693877551,6.893424036281179,156.89788163017616,98.29707962076738,1.5216822276518984,6.611883673469389,3.9701226169480135,8.020176979591838,223.09936096786615,26.08421052631579,6.666726315789474,3.389473684210526,6.890058479532164,157.1897200200457,99.6014304786695,1.5411986571872842,6.783996842105263,4.700790556638509,8.178735031578945,228.57676343311226,25.10989010989011,6.574362637362635,3.3956043956043955,6.724053724053724,155.4790116181346,95.4380415678066,1.590472741792241,6.697525274725275,4.511983900872789,8.08508892307692,230.5678146756508,25.956043956043956,6.469189010989011,3.1648351648351647,5.897435897435899,158.23605464804146,99.32080401023302,1.5399822269707582,6.628146153846154,3.8577307466196347,8.044630813186812,220.21533464647013,13.048888888888884,0.17426646913580235,0.02543428776567526,0.6795061728395061,4.143880506020423,2.028382404361493,61.15431061612301,0.25595165661850183,0.1671404444444444,2.6552754868367323,0.12372854024691357,45.401765380436466,-0.15583333333333352,-0.014512950617283938,-0.01098575704039449,0.12882716049382717,0.5134697454656307,-0.13079272239574144,-0.6313190049241109,0.008801637743592751,-0.01287475000000001,-0.18951872832543978,-0.010429632839506158,1.7547429110698503,-0.04051948051948048,-0.007033395542728866,-0.0023095872321306893,-0.09941959275292608,-0.34321066831354885,-0.16735610941340914,-0.14893323967533512,-0.004419466992604726,-0.006394181818181822,0.030841897954634778,-0.005846872714446039,-1.1453506321934057,-0.828,-0.0011885358024691292,0.0019905570942156127,-0.045061728395061715,-0.4644292028654168,-0.2606811928248611,-4.247021151593503,-0.0500780688182477,-4.359999999998948e-05,0.07528264285216987,0.004634147753086418,-9.441095154643868,1.0777358490566045,-0.009938230142091773,-0.0015861797774389351,-0.019338457954810172,0.22791337031573067,0.009338830000328362,4.88553578192528,0.00741180971579261,-0.007618830188679238,-0.16692630002450098,-0.006145240246913562,0.3075472360995058,1.4665306122448984,0.01823173948097756,0.0014098761475791885,-0.03664902998236331,0.47334745512288146,0.04129147137056829,6.8176506221942015,-0.008095284779928496,0.022543591836734683,-0.09200055536335579,0.012617094220206609,3.8613776874350023,0.576842105263158,-0.003354632878492523,-0.0016475334565034042,-0.02266406757634828,-0.7368918409420901,0.24405544074262395,2.4925417381131703,0.01341083293151183,0.0003235789473684319,-0.25616592484049566,0.005618692033788167,0.8117003701583578,-0.3072527472527471,-0.010198801248134576,0.002880537271833517,0.007917514584181249,-0.512125429820903,-0.06954743910430276,-1.3180281841964772,0.017593176950487763,-0.011710065934065926,-0.12007553462717817,-0.00622974220051553,-1.513186004703546,0.3674725274725275,-0.014599143128476457,-0.0005441559423416823,-0.04263193596526932,-0.21313087156708563,-0.26645410259014485,1.8057840376310337,-0.0051997404478460445,-0.010165230769230774,-0.1949000936309782,-0.01218973536290869,0.8998810672782959,,,0.4811059907834102,1.4758064516129032,0.8225806451612904,0.08064516129032258,0.6532258064516129,0.1693548387096774,0.7159454899410832,0.018864708596135375,0.02996148278968376,1.2389617499781072,0.297038450599761,0.1813295363645261,1.95490723991919,0.47836798696428706,2.0395170426555267,1.4939420822724976,0.20275765702742174,0.1718901460933283,0.17092715726227894,0.545574960383029,10.156436108622229,1804.0,303.1124999999999,180.0,483.20987654320993,7208.269823630786,7418.872032149771,82.95504166788596,309.85219999999987,307.67725956409083,370.76115399999986,12316.645033584731,1539.0,316.079,224.0,472.2222222222222,6976.840489420247,6039.005871835203,98.28608200600004,324.97350000000006,181.1522633744856,383.07785599999977,14792.753951150567,2366.0,506.9800000000001,338.0,667.8888888888889,11506.078528945547,9235.962740670404,147.23382922484905,520.3856000000001,297.36831275720147,616.7492679999998,21876.42957815695,2824.0,660.3384,365.0,694.2222222222222,15464.446383656179,10827.5974575216,166.97574763454693,677.1038000000002,420.4794238683127,811.7332879999998,24220.047258333987,2708.0,679.9748000000001,353.0,658.4938271604938,16782.124932482617,10344.129449686403,163.52251834818802,695.7613000000001,376.9816338972717,846.0383849999998,23045.383725719585,2517.0,634.2028999999999,327.0,675.5555555555555,15375.992399757262,9633.113802835203,149.12485830988604,647.9646000000001,389.07201646090533,785.9773440000001,21863.737374850883,2478.0,633.339,322.0,654.5555555555555,14933.023401904342,9462.135895473602,146.413872432792,644.4797,446.5751028806584,776.9798279999999,21714.792526145666,2285.0,598.2669999999998,309.0,611.8888888888889,14148.590057250247,8684.8617826704,144.73301950309394,609.4748000000001,410.5905349794238,735.7430919999997,20981.671135484223,2362.0,588.6962,288.0,536.6666666666667,14399.480972971773,9038.193164931205,140.13838265433898,603.1613,351.05349794238674,732.0614039999999,20039.59545282878,587.1999999999998,7.841991111111106,1.1445429494553867,30.577777777777772,186.47462277091904,91.27720819626718,2751.9439777255357,11.517824547832582,7.5213199999999985,119.48739690765295,5.567784311111111,2043.0794421196408,-7.480000000000008,-0.696621629629629,-0.5273163379389355,6.183703703703704,24.646547782350275,-6.2780506749955896,-30.30331223635732,0.42247861169245204,-0.6179880000000004,-9.09689895962111,-0.5006223762962956,84.22765973135282,-3.1199999999999974,-0.5415714567901226,-0.17783821687406307,-7.655308641975308,-26.42722146014326,-12.886420424832504,-11.467859455000804,-0.3402989584305639,-0.4923520000000003,2.374826142506878,-0.450209199012345,-88.19199867889225,-82.8,-0.11885358024691292,0.19905570942156126,-4.5061728395061715,-46.44292028654168,-26.068119282486105,-424.70211515935034,-5.00780688182477,-0.004359999999998948,7.528264285216988,0.4634147753086418,-944.1095154643867,114.24000000000008,-1.053452395061728,-0.16813505640852713,-2.049876543209878,24.15881725346745,0.9899159800348064,517.8667928840797,0.7856518298740167,-0.8075959999999992,-17.694187802597103,-0.6513954661728376,32.600007026547615,143.72000000000006,1.786710469135801,0.13816786246276047,-3.591604938271604,46.388050602042384,4.0465641943156925,668.1297609750318,-0.7933379084329926,2.209271999999999,-9.016054425608868,1.2364752335802476,378.41501336863024,54.80000000000001,-0.31869012345678965,-0.1565156783678234,-2.1530864197530866,-70.00472488949856,23.185266870549274,236.79146512075116,1.2740291284936238,0.03074000000000103,-24.335762859847087,0.5337757432098759,77.11153516504399,-27.959999999999987,-0.9280909135802464,0.26212889173685006,0.7204938271604937,-46.60341411370218,-6.328816958491552,-119.94056476187941,1.6009791024943865,-1.0656159999999992,-10.926873651073214,-0.5669065402469132,-137.69992642802268,33.440000000000005,-1.3285220246913576,-0.04951819075309309,-3.879506172839508,-19.394909312604792,-24.247323335703182,164.32634742442406,-0.47317638075399004,-0.9250360000000004,-17.735908520419017,-1.1092659180246907,81.88917712232492,0.7135674640548589,0.5575644565024194,0.43615904693802643,0.2881806425850192,0.2834407928613778,0.15457934802258622,0.1802576319121822,0.0807199498982158,0.11029363272518897,0.043128161411762914,0.07156380259995829,0.021749434078134646,0.045897777729025285,0.011545049781617927,0.027588453096407617,0.0058891244517482845,17.0021271300431,5.675324498435088,4.107724024499421,2.1740911042813207,0.4690056018999257,-0.45647635815383386,3.2797010847924333,0.9762079501257768,7.004061136940063,0.7730833712270179,17.424773228706098,10.936382490616486,35.451528430996134,11.687157072948981,2.212145846566797,0.5458555680048669,3.988678108551532,2.2237519361685547,8.001921425335158,1.2918311526647681,4.0099622721634605,2.4196465663385056,22.45706291262515,13.304119054257782,0.31681699514458117,0.6856874130737406,0.8407578357030454,0.9222125522241954,0.9222125522241954,0.9222125522241954,1.4030815565029346,1299.5829134268754,0.0,4.0,1.0,0.0,14.0,0.0,3.0,0.0,0.0,3.6204497671811984,1.441572564517263,0.5255885434311836,0.044444444444445175,0.044444444444445175,0.044444444444445175,-57.12739337919129,1737.4056881112547,86.24844040989815,38.60901529136122,83.83803318678032,,15.0,757.0,11.690424675716445,19.086016810659167,32.86283706819301,17.447681337993632,5.563451491696996,42.85599898868567,22.766200853176183,0.0,10.30076712495354,23.20187978046503,14.914285714285716,45.75,25.5,2.5,20.25,0.0,0.018894009216589795,5.25,0.2660426929392452,0.11673469387755175,-0.14930799906169345,0.035944700460829426,0.17530030959752285,0.0,0.7085714285714285,0.8930875576036862,0.4425287356321833,0.5918367346938768,0.8571428571428568,22.194310188173578,0.5848059664801966,0.9288059664801965,38.40781424932132,9.20819196859259,5.621215627300309,60.60212443749489,14.8294075958929,0.5386996904024771,0.18199233716475094,0.0,0.3955938697318007,0.045454545454545456,0.5426589964766527,-1.408070722217953,-0.08697830618350776,-0.0312904604937323,-0.08282768954223253,0.4573410035233473,1.1866908709007438,0.04183106872148545,0.026370908242238755,0.042381816817883715,-6.763271429665219,0.511253973660309,0.6767467077522262,1.3648788769468874,0.7944222383720931,0.5278689127556275,1.0142414882489745,0.5112542571055078,0.7392252379711143,0.6434614092561769,0.6088760294589926,0.6823041634507121,0.7228865765302814,0.6140521603736864,0.7078778016856102,0.990861950097665,1.2333887043189369,0.8452195296244143,1.055985832956331,0.6149275535402171,0.8279747534492771,0.6869083010504995,0.5812025711466602,0.7053241203312486,0.8350496783914189,0.9242847411444145,0.8959890288634181,0.8648279460043188,1.0576308139534885,0.9997441518316907,1.1109221107792546,0.9300916089642763,1.1133323223511802,0.8809716911393213,0.848434786933345,0.8558492739186329,1.1119041846164162,0.8532337669014449,0.9238029748231488,1.0465054774566591,1.045277534006143,0.9247421864807172,0.8900971847672491,0.8569441611779737,0.9389605725274194,0.9265327172097149,0.9174556234625544,0.9112822575541252,1.010588596749172,0.7424373018962355,0.7487696446938742,0.9837112964464051,1.0865567157095397,0.874628362452823,0.7702674028792772,0.7433007622793032,0.9720906909948536,0.7232764830576308,0.995539236657652,0.763933775471109,0.9148847681574171,0.6917395669009037,1.0901704997227106,1.1373559888405984,1.0678549571603428,1.2050060785330992,0.7862467789606502,0.6972462178945468,0.8647311676358008,1.0173922438586507,1.3766110050815719,1.000166496249294,0.9181932926177703,0.7526125101056983,1.0090412237882724,0.9287761075239217,0.9566668796319959,1.0704177828938755,0.8934097633658409,0.7523511882177415,0.839752800147809,0.9864512325782421,1.13682444823412,0.9886560033639087,0.9731386324327488,0.9728793005359765,1.053039917200267,0.9807036823220278,1.0436365959621774,1.0417194398951057,1.0844256889361286,0.9722820027555806,1.019219532662269,1.0382369169124688,1.0446762555367235,1.06686643481288,0.9978396660955524,7.0,0.2516069788797062,4.222222222222224,2.638888888888889,2.1788888888888893,1.344444444444444,0.7968707482993197,0.6102607709750566,0.5465246283698663,0.2990663580246914,7159.894300463393,7604.965718329527,3065.246269337891,2914.0077029943704,13.080777356003752,0.4517326546198417,7.171763076485063,0.823927703202201,1.0,0.045454545454545456,1.8714033291484764,4.050280531812412,4.966264552898491,5.44740865188523,5.44740865188523,5.44740865188523,0.20588235294117643,0.00931877699554467,0.08616780045351477,0.051742919389978215,0.0473671497584541,0.02860520094562648,0.01732327713694173,0.014192110952908295,0.013329868984630887,0.008544753086419752,0.48247421064519536,24.134948096885815,10.508121615993335,5.566863905325444,185.40007028768733,0.0,4.36916007390341,183.972071954863,,139.6684226888987,139.62334808867976,138.1392408620712,139.54190931178377,184.79304196593833,140.64932248140593,141.74660596205436,169.21464111136174,-0.01194226839237059,-0.08328022418342731,-0.4319270561694389,0.18958938953488377,0.12391036486685315,-0.06448129411619166,-0.010323377020583516,0.03438789129117327,-0.07702953072067144,-0.07137441266074283,-0.08429447901585768,0.038649222037211044,-0.0031052054212817137,-0.04036000486845167,-0.090806051005194,-0.14631153729990942,-0.08282349546878014,-0.0825071786530758,-0.0024353678125850647,-0.017266803626092488,-0.038256340884071156,0.011615328845361041,-0.04725565098220651,-0.025227006540299315,-0.06345367847411446,-0.006820220828270338,0.0782627417191513,-0.06631540697674418,-0.11207591584522583,-0.12851678868064326,-0.06944761716394524,-0.1956544039599224,-0.0002608584663329744,0.028352102531498592,0.03745415361596022,-0.207945551798125,0.08259215464500547,-0.05702892926778192,-0.06236383703968143,-0.028459576568670496,0.05499998612040272,0.00460407760402955,0.07988865760571968,0.028957850141364695,-0.045583402712631,-0.06286590632573597,-0.04966711992762605,0.006773904792522172,0.11238739364955799,0.10461989372591196,0.05543210647643458,-0.053934800664451825,0.11422806580334065,0.020356847545996277,0.11148274837059095,-0.031628178879086484,0.1348781374350594,-0.03464821477825541,0.10197400046123428,0.08504906483435692,0.04420622400688372,-0.019250019209824724,-0.06477607989978104,-0.03335373317013465,-0.17782651789102008,0.12032023163770701,0.040758234587244695,0.05239596066182448,0.0019359703657841228,-0.09647433048300001,0.045411446886671945,0.017878167585706217,-0.023546276611671704,-0.05852417449387153,0.11325409613871455,0.01165186557628418,-0.12358595501894017,-0.03428714376281298,-0.021552498440706582,0.06873632772266267,-0.07006123486741248,-0.04522149781536449,-0.05035008243113037,-0.03332879221818927,0.028161212084917817,-0.08377482599420567,-0.021394581493885814,-0.06273958599539999,-0.051432677959086695,-0.1313628544682732,0.02952831974456022,-0.020315322496999123,-0.06081849789869131,-0.07340108195822856,-0.0985199965875518,0.01982039816597204,11.407103714560252,26.97121175209948,13.624096339979221,23.802328727813943,46.00621010211725,53.867861627634205,55.883743768301734,55.883743768301734,55.883743768301734,63.22502832232132,46.312204550447426,6.285487367850074,5.328594528893178,5.298741875130648,16.9128237718739,9049.051664084966,7121.704083293956,3280.6868592578803,184.0,49.0,65.0,85.0,110.0,119.0,132.0,153.0,170.0,457.03962488800033,34.0,5.117993812416755,5.978885764901122,6.870053411798126,7.752335163302292,8.649098262296176,9.540866393419853,10.441879704019923,11.33951211204528,12.243854824489109,0.8666666666666665,1.0246222222222225,1.11684277604603,0.8478716791089653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7544657618097141,1.016470588235294,1.0374200857813387,0.7342077571974581,10.0,1.0,0.0,0.0,0.0,2.0,7.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.990415646638391,11.5667326743298,0.0,0.0,11.690424675716445,14.573052889090853,4.39041504767482,0.0,0.0,35.33461391738825,35.89528683400505,36.03821205283286,21.29610439386321,363.35470267620565,-942.8188271832819,-58.23910925237589,-20.951529492961825,-55.45993101078129,306.22730929701436,794.5868609279727,28.009331157522258,17.657485798399396,28.37810217599903,0.4666666666666667,0.7308930636114194,0.19575639163065292,174.84569971666102,0.11424142307880307,7.857825837456898,0.26910693638858046,8.0,0.14705882352941177,0.34075990313709886,0.737507078351987,0.9042966856155629,0.9919072044235582,0.9919072044235582,0.9919072044235582,5.057500000000003,,2.8060224089635852,2.0376055646140516,1.8121763327152678,2.8654557802158274,-6.3317430071695835,2.0050878540557715,1.8993417253168108,-2.535039724729852,116.322,19.086016810659167,0.0,9.551078168738563,0.0,6.544756405912575,5.316788604006331,88.04449064599305,0.0,5.749511833283905,4.23410650459726,0.0,5.579729825986222,2.3978952727983707,7.112327444710911,4.844187086458591,8.729882284826589,7.050122520269059,10.392343602873122,38.99999999999999,14.567635356520002,3.7993131483260276,0.0,0.0,0.0,1.020772987178411,0.7318094377435755,1.7449590227037317,46.10800000000001,0.0,25.58816811435318,0.0,0.0,0.0,0.0,0.0,-1.7809474598940676,50.257924922071346,5.316788604006331,10.077801322358383,5.749511833283905,26.348030239295717,11.339293589984397,5.817220841045895,15.921440167465814,61.0551001940705,10.045266627482652,10.902924932081056,0.0,38.15422555990344,33.950959281437136,39.89141844802181,367.944143909726,,279.15581167399324,279.115237753836,276.1615671220318,278.89895050871496,371.6834264674404,281.16928445609864,283.37067374828183,339.24703697263624,39.89141844802181,367.944143909726,,276.58525083011307,277.2861680578359,274.570589629687,276.2736802852611,375.9178269390463,279.3559373148112,281.64486040191514,340.9643219474533,4.870936189536035,266.81602133833945,,208.04324576763463,207.053794633349,204.50972070979145,207.91503573987103,272.4043435907966,208.7126415857456,210.37551948049622,250.91813984909447,1.2868199499361874,11.869165932571807,,9.00502618303204,9.003717346897936,8.908437649097799,8.996740338990806,11.989787950562594,9.069976917938666,9.140989475751027,10.943452805568912,2.5048091737591793,183.972071954863,,139.6684226888987,139.62334808867976,138.1392408620712,139.54190931178377,184.79304196593833,140.64932248140593,141.74660596205436,169.21464111136174,45.74117647058823,0.0,0.0,12.017601098191202,13.211007992966849,0.0,9.907973757927312,46.68390386016024,0.3318107835293078,2.415451316010028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.03934907388562,489.3928480702049,84.21314981168143,182.26262393155852,223.4819048804321,245.13338933483533,245.13338933483533,245.13338933483533,1132.0,142.93447944868865,180.18916390301504,81.34059454252012,84.22,84.22,0.875,9.184515624622405,6.087462841250339,4.2779720936144585,5.477368517832949,,5.4842871368427,5.480857157571499,5.480773372413566,5.48467710130037,5.462020190206994,5.4814102805966165,5.481207408751195,5.474804978497125,0.13799909979401478,0.17668930702686933,,0.1769124882852484,0.176801843792629,0.1767991410455989,0.17692506778388292,0.17619419968409658,0.1768196864708586,0.1768131422177805,0.17660661220958468,2.584881198898261,2.8320268996435547,,2.833289230836293,2.832663615834615,2.8326483288464783,2.8333603340780154,2.8292208310218663,2.8327645298159068,2.8327275182460077,2.831558766193423,299.5900000000007,432.2746949468859,204.5684846387082,,202.6487980237639,203.43447878054832,203.63100553342235,202.5919078364142,206.0349583062067,203.3407998822968,203.34846550374607,204.49099201389893,13.944344998286642,6.5989833754422005,,6.537058000766577,6.5624025413080105,6.568742113981366,6.535222833432717,6.646288977619571,6.559380641364413,6.5596279194756795,6.5964836133515785,7.200463365589462,6.452304919120259,,6.4428765332562605,6.446746092935411,6.447711671082988,6.442595760930575,6.459447966398744,6.4462855000487655,6.446323197731505,6.451926037171988,14.95596701567058,29.38748126267921,12.896803623398142,1.5877956246544842,-2.189539209087367,10.465057260747463,4.1025780957725395,0.3318107835293078,0.0,360.25544836998523,243.29577287786492,-631.2945272316135,-38.995859948734015,-14.028767271813637,-37.13497219009491,205.04429788024044,532.0410690276371,18.75454431047795,11.823134867280826,19.001466750987042,2748.0,51.0,2.392029005956464,1.0474440989043008,0.0,0.0,0.5862527662047565,0.1727993137604516,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.032274861218395144,0.4314436846506058,0.14669494227008642,0.8621229624736224,0.22855854026023922,22.120591385700628,17.284498151575,14.8294075958929,9.798141847890653,13.888598850207513,7.574388053106724,11.716746074291843,5.246796743384027,9.374958781641062,3.6658937199998474,7.872018285995412,2.392437748594811,5.461835549754009,1.3738609240125332,3.641675808725805,0.7773644276307735,5.517331396081508,1.9765936108560018,8.307186852669341,2.649198342071521,13.027691883086245,3.2310664975447256,93.56925627112278,51.40078443087182,33.41995055275636,28.7128295718623,28.7128295718623,28.7128295718623,166.0,197.0,56.698102000000006,21.333897999999998,0.5555555555555556,226.09,10.583333333333332,6.694444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,22.0,45.0,0.0,0.0,48.0,22.0,2.0,12.0,36.0,24.0,34.0,24.0,0.0,0.0,0.0,22.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,5.0,2.0,2.0,31.0,9.0,0.0,3.0,3.0,0.0,4.0,5.0,0.0,0.0,3.0,2.0,4.0,3.871201010907891,8.00541920142646,4.535284058523925,5.149672336113466,5.744404449173789,6.308212278381417,6.595161299063287,6.954392830323075,7.386647509959218,7.676567812099145 +2179,COc1cc(NS(C)(=O)=O)ccc1Nc1c2ccccc2nc2ccccc12,0,29.148936170212767,6.25932553191489,3.6382978723404253,8.39243498817967,159.01107913592196,115.59973419148942,1.7230671743006591,6.348819148936166,4.788877579312961,7.774586319148933,243.8369823031568,32.12,6.371076,4.22,7.366666666666667,144.17254984033792,124.09704702000006,2.014469557400001,6.545452000000001,2.9776851851851847,7.829269679999994,288.1562282199362,25.373493975903614,6.4202048192771075,3.9879518072289155,7.369477911646587,150.17916776939347,95.73251898795176,1.7490572522541457,6.547600000000001,3.983972928752043,7.889199638554214,250.32854687908628,21.740384615384617,6.388769230769232,3.5961538461538463,5.846153846153846,155.9346372560105,80.55490607692309,1.5766485302686815,6.488275000000003,3.3417913105413097,7.871337653846155,222.91258736567931,21.018691588785046,6.220625233644856,3.4766355140186915,5.267912772585669,155.287548530428,77.6040900093458,1.5663761850966267,6.33104859813084,3.092188761970693,7.723923065420558,216.03916106678398,19.666666666666668,6.178621929824563,3.254385964912281,4.637426900584795,154.98189892724884,71.77424591228069,1.5294331016608682,6.287169298245615,3.0621209659952346,7.704318526315789,210.47063302241932,18.647058823529413,6.07490588235294,2.9747899159663866,4.658263305322128,155.16744922990745,68.25393768907566,1.4609616264645535,6.178856302521008,3.0813492063492056,7.614142252100841,198.61425293874393,17.31896551724138,6.038672413793103,2.8017241379310347,3.738505747126437,156.03771362307717,62.0266998362069,1.399481344887758,6.139769827586205,2.966022775649211,7.611463982758623,185.55422925654602,14.532710280373832,6.06476635514019,2.4485981308411215,2.526479750778816,159.67736051867928,49.71466242056073,1.2656166150456634,6.144079439252337,2.9150801892234908,7.655443140186918,162.18607307395453,9.938433680398367,0.12052856496152105,0.018105709824423697,0.6681756450882753,3.9854132085911163,1.6136734563414332,45.51754382435491,0.28587089759876333,0.11264128564961517,1.5826896112113984,0.07514212494341328,50.53489655788728,2.1534812132186505,-0.008254267089180665,-0.008932713770286253,0.19310095065640567,0.7034283989738946,-0.15054603667230343,9.309661089687658,-0.020798333357034963,-0.0017112005432322686,-0.4160836514297103,0.004667231652331347,1.8094038439237068,-0.8828069180297468,0.024133931834172295,0.0008308565361125379,0.04369310651387807,0.6140057438142491,-0.18600088018891073,-3.6080238043600272,-0.024171567657587288,0.02050493326861083,0.4890573187200417,0.01215839184715318,0.40866053435696537,-0.8981308980743111,-0.025591330918967904,-0.0003584012686606523,0.004082947383083223,-0.6940875130101026,0.006025133644600846,-4.1501228757051525,0.017694197798215093,-0.024647279921301,-0.33569057771709393,-0.014664432635721026,-1.0467626160194916,-0.6512990611897802,-0.0017835063017477492,0.001687495711408006,-0.07640789802126388,-0.3048714618334229,0.006140442474003487,-2.933547835689169,-0.013492316035154729,-0.0022626815533734255,0.06542438999586482,-0.00201209809911027,-2.12948569071915,-0.9156639902154666,-0.019587075599818916,-0.0027803541557261486,-0.04928800044475152,-0.6417526387267398,0.1571040646321985,-4.365362061756926,-0.00716853971536344,-0.018682233764583483,-0.17892474171123243,-0.008939012401420025,-2.635691229938747,0.4733310254839826,0.013832028637620753,-0.0006283669793252574,-0.09424394474856491,0.09772643024313989,0.016113978641190112,1.9836360351122782,-0.003865325747247233,0.01238488992699842,0.10854852706991812,0.012010585408812703,-1.1309049579889991,-0.8392040398994713,0.014937557562323426,0.003698703211555342,-0.11149919607873747,-0.18527870137663932,-0.15598797274420045,-3.733231373878023,-0.036318424064937474,0.012055834673202115,0.1811608295223974,0.007023678614913924,-4.237736198245032,-1.7712036147789632,-0.03074916547852241,-0.0027206070187860494,0.023015446580048466,-1.0385715568379523,-0.217168421256434,-8.508518222048297,-0.023958145879518316,-0.030995888950470223,-0.3574322663629605,-0.016344773382466784,-11.274744349003369,,,0.48333333333333334,1.5089285714285714,0.875,0.05357142857142857,0.6339285714285714,0.24107142857142858,0.6978463943544683,0.0168360949083044,0.029121809194018685,1.1621960933455175,0.2957951083118781,0.18430499543599946,1.8600424876999857,0.4801001037478776,2.0600914736809144,1.5749626021483871,0.22100441933347673,0.1884659967274496,0.0,0.4851288715325269,8.364142818468098,1370.0,294.18829999999986,171.0,394.44444444444446,7473.520719388332,5433.187507000002,80.98415719213098,298.3944999999998,225.07724622770917,365.4055569999999,11460.338168248369,1606.0,318.5538,211.0,368.33333333333337,7208.627492016896,6204.852351000003,100.72347787000004,327.27260000000007,148.88425925925924,391.4634839999997,14407.81141099681,2106.0,532.877,331.0,611.6666666666667,12464.870924859659,7945.799075999997,145.1717519370941,543.4508000000001,330.6697530864196,654.8035699999997,20777.26939096416,2261.0,664.4320000000001,374.0,608.0,16217.202274625091,8377.710232000001,163.97144714794288,674.7806000000004,347.5462962962962,818.6191160000001,23182.90908603065,2249.0,665.6068999999997,372.0,563.6666666666666,16615.7676927558,8303.637631,167.60225180533905,677.4221999999999,330.86419753086415,826.4597679999997,23116.190234145884,2242.0,704.3629000000002,371.0,528.6666666666666,17667.936477706367,8182.264033999999,174.35537358933897,716.7373000000001,349.08179012345676,878.2923119999999,23993.652164555802,2219.0,722.9137999999999,354.0,554.3333333333333,18464.926458358987,8122.218585000002,173.85443354928188,735.2838999999999,366.6805555555555,906.082928,23635.09609971053,2009.0,700.486,325.0,433.6666666666667,18100.37478027695,7195.097181000001,162.33983600697994,712.2132999999998,344.05864197530843,882.9298220000002,21524.29059375934,1555.0,648.9300000000003,262.0,270.3333333333333,17085.477575498684,5319.468878999998,135.42097780988598,657.4165,311.9135802469135,819.1324160000003,17353.909818913136,467.1063829787232,5.664842553191489,0.8509683617479138,31.40425531914894,187.31442080378247,75.84265244804736,2139.3245597446808,13.435932187141876,5.294140425531913,74.38641172693572,3.5316798723404244,2375.1401382207023,107.67406066093253,-0.41271335445903323,-0.4466356885143127,9.655047532820284,35.171419948694734,-7.527301833615171,465.48305448438293,-1.0399166678517482,-0.08556002716161343,-20.804182571485516,0.23336158261656736,90.47019219618534,-73.27297419646898,2.0031163422363005,0.06896109249734064,3.6265278406518795,50.96247673658267,-15.43807305567959,-299.46597576188225,-2.006240115579745,1.701909461294699,40.591757453763464,1.009146523313714,33.918824351628125,-93.40561339972835,-2.661498415572662,-0.03727373194070784,0.42462652784065524,-72.18510135305067,0.626613899038488,-431.61277907333584,1.8401965710143697,-2.5633171118153038,-34.91182008257777,-1.5251009941149867,-108.86331206602713,-69.68899954730648,-0.19083517428700916,0.18056204112065666,-8.175645088275235,-32.62124641617625,0.6570273447183731,-313.88961841874107,-1.443677815761556,-0.24210692621095653,7.000409729557536,-0.21529449660479888,-227.85496890694907,-104.3856948845632,-2.2329266183793566,-0.31696037375278097,-5.618832050701673,-73.15980081484834,17.909863368070628,-497.65127504028953,-0.8172135275514322,-2.129774649162517,-20.397420555080497,-1.0190474137618828,-300.4688002130172,56.32639203259393,1.6460114078768695,-0.07477567053970563,-11.215029425079225,11.629445198933647,1.9175634583016232,236.0526881783611,-0.45997376392242073,1.473801901312812,12.917274721320256,1.4292596636487116,-134.5776900006909,-97.34766862833868,1.7327566772295175,0.4290495725404197,-12.933906745133546,-21.49232935969016,-18.094604838327253,-433.0548393698507,-4.212937191532747,1.3984768220914454,21.0146562245981,0.8147467193300152,-491.5773989964237,-189.51878678134906,-3.290160706201898,-0.2911049510101073,2.462652784065186,-111.1271565816609,-23.237021074438438,-910.4114497591677,-2.56352160910846,-3.316560117700314,-38.24525250083677,-1.748890751923946,-1206.3976453433604,0.7044787096898293,0.580269867834608,0.4336388033851798,0.3399818628508056,0.2872069247887706,0.18186326814107676,0.17051591695555007,0.08549334161135122,0.10958645885237348,0.04612889205241055,0.06963595607280158,0.02369673492827984,0.0440962869384868,0.012508082240077966,0.02945501599837622,0.0070700477028651535,16.01333161564707,5.659394746783488,3.5809301407720993,2.156004738798259,0.43967912124987363,-0.5264181819620464,4.038026059277885,0.9684880512549778,6.01779226366962,0.6158926201515325,14.548278269413416,10.318105075445173,32.06664866528031,11.67327359994441,2.955908730080176,0.7609593198365232,3.5369870105942365,2.2049486264436955,7.014209812791684,0.29925615085592977,3.768368061308364,2.4003005708764165,24.442363460580673,14.701768392610543,0.2808911610420054,0.5670719693994603,0.7200434168176975,0.8560238525323933,0.8917576352892106,0.8917576352892106,1.4424486040399487,1232.8167960032902,0.0,0.0,0.0,0.0,17.0,0.0,2.0,0.0,0.0,3.8821077369810437,2.1781310237555522,1.2673089959433446,0.45765478732610276,0.2448888298792955,0.2448888298792955,164.30734003036028,1413.3443312349,56.78811098968413,30.071155983721276,61.31023063654355,,12.0,587.0,10.023291153407584,8.417796984328938,0.0,11.436898107967467,39.43639159704064,0.0,25.30889874666236,48.53093654769288,10.038883468458419,9.720841474747257,13.533333333333333,42.25,24.5,1.5,17.75,0.0,0.01666666666666667,6.75,0.17484997272231334,0.08818330605564684,-0.0866666666666665,0.035634920634920464,0.1348273894436517,0.0,0.6184397163120569,0.8345238095238091,0.4435897435897435,0.53025641025641,0.7988888888888886,19.53969904192511,0.4714106574325232,0.8154106574325232,32.54149061367449,8.282263032732587,5.160539872207985,52.0811896555996,13.442802904940573,0.5791726105563483,0.1231527093596059,0.06157635467980296,0.2955665024630542,0.09523809523809523,0.3677502089036895,-0.8366983930332108,-0.04640109661471452,-0.01780209346879172,-0.052293649564575675,0.6322497910963104,1.4384828924581448,0.0450155840247761,0.03060601898847116,0.046402673950262735,-6.699397725503118,0.8065400382618205,0.7564835138420023,1.504915010593337,0.8642140921409212,0.5994792639523439,1.2061138744538635,0.7937684129156469,1.1699316645125213,0.6925101537388184,0.8058782636041208,0.6320670730896949,0.8720605828280587,1.068433888601688,0.7581046310059387,1.0964538329929534,1.1029891925425277,0.7972192173799066,1.173738068661009,1.045972468323489,1.1022191652038125,0.752857577354364,0.5501667332826984,0.8225070389213536,0.9015685998467184,0.8564800702167473,1.2781993513383199,1.1647903333987248,1.0281556180946423,1.1828858677607323,1.0407316201765837,0.869792411893923,0.7610440086586358,1.2573645366439465,1.2446494103677659,1.2563968321697432,0.9031704019082528,0.946131205519783,0.8667999155532728,1.096145457433712,1.1704467745612033,1.0057666644098553,1.0454555418474925,0.948339854156322,0.9679565261029959,0.8707000647327586,0.53137296898483,0.8361992222867471,0.9771665172958265,0.9161104798070611,1.067508029658081,1.21403532333374,1.0728795226548753,1.1029395939807871,0.8951605402820586,0.9297210901121283,0.9156483440635104,1.0679856095629736,0.9359103740197215,1.0168800629421888,0.9965111313285796,0.7394173302007333,0.7323076544621803,1.0051595490345933,1.0401095397508595,0.8948290172519523,0.9258521101561971,0.7603135559864252,0.8870805583877654,0.7482050347409174,0.602410279301764,0.6801794435655513,1.0017085619048365,1.0667104101679694,0.7679281816806143,0.892872309144041,1.0733225866741423,0.9864220384317774,1.0339831400251651,1.0649024880840288,1.1283400970249302,0.7971721639564021,0.4793195084267867,0.8029730865871871,1.0930492802940117,1.0423089399330296,1.3133232016637504,1.0966400045509113,0.7734531317275788,1.2591209192504211,1.0525030064973941,1.0658058125690777,0.9674905378629767,1.3332717816365793,1.2781062258394518,1.2870846131978493,1.2038018604937184,6.5,0.23548617488011428,2.88888888888889,2.0,1.9733333333333336,1.0694444444444442,0.790204081632653,0.3350694444444444,0.33560090702947837,0.23687500000000006,6154.626685836244,6713.889463435413,3085.2486653390215,2887.694149869982,13.249884156549657,0.46693050834807515,7.063109011778819,0.8759280275093363,1.0,0.09523809523809523,1.6724811146965939,3.3764578279220854,4.287279855734293,5.096934064351535,5.309700021798342,5.309700021798342,0.2096774193548387,0.012394009204216542,0.06419753086419756,0.043478260869565216,0.043851851851851864,0.02430555555555556,0.018376839107736114,0.008817616959064327,0.013424036281179138,0.0124671052631579,0.4509902253113629,21.240374609781476,9.013333333333334,5.023781212841855,162.77540408790915,1.0,4.274234919129727,148.10424029567923,,99.78212485532046,104.57468302641793,104.26029147250017,99.79874470713335,141.2707468490394,105.58141886457396,105.99748137174977,131.45864677200615,0.21668215359387816,-0.06848390746057463,-0.4933644610959394,0.28899728997289975,0.17650074462983065,-0.09329399085092824,0.20452907401181808,-0.07275428709860018,-0.015191592792674366,-0.26289655816419866,0.06211205307071186,0.03580503705693848,-0.08882757046222609,0.20023412575995653,0.045889199825336534,0.06539164789238254,0.1540632581060036,-0.11526550149161978,-0.07926666294391514,-0.08455413916079527,0.1820374576724381,0.3090039356142073,0.1618052704299913,0.008086699730132985,-0.0903694613212241,-0.21232585758519554,-0.019794930557054818,0.006110589952053413,-0.1741569761233038,0.003733799809944945,-0.09117633613359781,0.06189576465055195,-0.21881213250680973,-0.212101333918629,-0.19515594810187042,-0.0207136590221459,-0.06553337096511912,-0.014797374400974048,0.09320240563734535,-0.11435301268900536,-0.07649682627041778,0.0038052571602220403,-0.064448728758504,-0.0471972353551427,-0.020087497584249703,0.041337473584469084,-0.0267772318207065,-0.042138914606856724,-0.09213363188421092,-0.16250982168477757,-0.153562284090933,-0.07376503589597296,-0.16102537055463964,0.09735802743411877,-0.09590504440666167,-0.025076143726336594,-0.16585600614233853,-0.11305106221951035,-0.11896140025520519,-0.05215586474822573,0.047626320273941786,0.11476141479023376,-0.03470545951629147,-0.14104666256746604,0.024521028342174626,0.00998589806250156,0.04357959301949199,-0.01352122856756285,0.10994982750395065,0.06858484841309759,0.15983824542967642,-0.022378693437980178,-0.08444027166520603,0.12393375435186063,0.20428380038246144,-0.16687108681431642,-0.04648920743707205,-0.09666638075454304,-0.08201741702680575,-0.12704484566285767,0.10702856065318092,0.1144639026117926,0.0934719189829033,-0.08385762090935997,-0.1782175815362454,-0.25511931954337247,-0.15026237828665995,0.03444520426512673,-0.26059319384980356,-0.13458015337799786,-0.18692832493074185,-0.08380757216197988,-0.2751734301656217,-0.22583851175302788,-0.21751811510222022,-0.22310809197142115,13.039799485526983,24.806087636239326,10.082465472450718,18.162614644672306,33.177668438843,42.244700751065636,45.401896023139045,45.61636410824543,45.61636410824543,57.68256126306561,44.09895286015484,6.188123741337348,5.277047908368589,0.0,13.583608402910752,7028.637704245888,5853.507440044179,1662.3963262454072,188.0,45.0,58.0,81.0,109.0,123.0,148.0,168.0,188.0,393.11471246800056,31.0,5.030437921392435,5.883322388488279,6.790097235513905,7.665284718471351,8.576781982827894,9.462576597493666,10.374958854223562,11.26706328896891,12.179405209258494,0.7304964539007088,0.9910638297872345,1.1141632351354533,0.6969869817915141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7178630016562622,0.9793074676679179,1.0104833335916077,0.6755895085119373,11.0,1.0,0.0,0.0,0.0,4.0,4.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10.05365155780638,5.749511833283905,0.0,10.023291153407584,0.0,4.722094864452088,13.401775505276145,0.0,0.0,36.39820241076966,24.26546827384644,16.838815497391202,41.461126984072145,228.44670724875064,-519.7576730644798,-28.824396227980863,-11.058673894988932,-32.48485456652999,392.7540472791109,893.5866581704203,27.963714761703265,19.012482088732344,28.825376070013558,0.5,0.8376205002934168,0.21734493660561005,13.115175397886405,0.10079239894583773,5.993802593547591,0.16237949970658294,6.0,0.16129032258064516,0.30109899388709194,0.6078681821611879,0.7718446801763585,0.9176078014868952,0.9559123390734253,0.9559123390734253,4.511700000000003,,1.8035714285714288,1.389555950537421,1.1082508187380549,1.8006559751755822,-4.377290316528427,1.2713433292533662,1.237629484152691,-1.9973784437328954,113.99220000000003,13.154659938128987,0.0,4.9839785209472085,0.0,0.0,23.404450193247357,66.73003775307771,0.0,5.749511833283905,4.143134726391533,0.0,5.493061443340548,0.0,7.04141166379481,0.0,8.683893367307235,0.0,10.37763881843274,34.333333333333314,20.97479591243272,4.729025207279626,0.0,0.0,0.0,3.749297390954138,2.6105076976778365,0.0,46.58000000000002,0.0,22.989232637080136,0.0,0.0,-3.36574489581186,0.0,0.0,0.0,52.36567205136631,14.775746422258468,17.062158824050687,5.749511833283905,26.767342230065083,10.023291153407584,0.0,0.0,66.73003775307771,0.0,21.805849864162113,0.0,32.75838814420116,33.73956107784432,36.180816608193176,296.20848059135847,,200.22230082355233,209.0501120563689,208.47256564452408,200.2562808130139,284.9845943377196,211.0720274913441,211.90656063748867,263.91598276587877,36.180816608193176,296.20848059135847,,198.73166500067924,207.84132666669956,207.52263637132012,198.76794625712284,286.91878401460735,209.95743287776924,210.8112354231788,264.91467198774524,4.980980419499638,217.29465782558032,,150.17627950967724,155.80677952358104,154.634003251406,150.20196791156275,212.8119135935254,157.4279336150306,158.25090089110213,197.86758449366047,1.292172021721185,10.578874306834232,,7.150796457984012,7.4660754305846035,7.445448773018717,7.1520100290362105,10.178021226347129,7.538286696119433,7.568091451338881,9.425570813067099,2.490490209749819,148.10424029567923,,99.78212485532046,104.57468302641793,104.26029147250017,99.79874470713335,141.2707468490394,105.58141886457396,105.99748137174977,131.45864677200615,46.02745098039214,0.0,2.6610936733253654,0.0,0.0,0.0,0.0,47.49271667880556,0.0,5.917901834733995,5.483890542328042,0.0,0.0,0.0,0.0,0.0,0.0,31.752706900061053,520.3304867902755,78.60661239073991,158.69351791233802,201.50215321951177,239.55590102452214,249.5559010245221,249.5559010245221,1167.0,136.2299281966385,100.870267737586,63.73914001926687,88.69999999999999,80.32,1.0,9.673636743320548,5.954196310386875,4.3652955388661905,5.210888635977668,,5.230802786188583,5.211561631946605,5.208012291449119,5.230807397039268,5.205773844234314,5.212599312939429,5.214573252269225,5.209727400558815,0.15590341210236394,0.18610316557063097,,0.18681438522102084,0.1861272011409502,0.18600043898032567,0.18681454989425955,0.18592049443693978,0.1861642611764082,0.18623475900961517,0.18606169287710053,2.503305310679297,2.6803698219295127,,2.684184179881793,2.680498965451923,2.679817682193919,2.68418506136191,2.6793877814411835,2.680698056966672,2.6810766714647114,2.6801469492280163,284.2100000000005,321.7407200547501,176.90435215608719,,174.36004947901606,176.5218526024946,177.1145002488983,174.3598525403662,177.1296036680974,176.42882228628793,176.21711236555294,176.82809691390355,11.490740001955361,6.318012577003114,,6.227144624250573,6.304351878660521,6.325517866032082,6.227137590727365,6.326057273860621,6.301029367367426,6.2934682987697474,6.315289175496555,6.803365421142774,6.205228620396369,,6.190741828326351,6.2030640966695945,6.206415834670788,6.190740698831597,6.2065011059232456,6.202536939052512,6.201336244954741,6.20479747395467,30.933746811194325,4.729025207279626,5.432445908919123,3.858133225442254,0.526504157218443,20.97479591243272,1.1119843258826845,0.0,-1.8166355483691794,330.25171050230557,141.9112669123294,-322.87385867930044,-17.90573668563176,-6.86965656764469,-20.179616167456278,243.97911051365512,555.0967062914954,17.37108070937197,11.810568218967987,17.906345364241787,2003.0,46.0,2.8396992741422817,1.3565509120998,0.3535533905932738,0.10206207261596575,0.3305272079323988,0.09036253688534239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28006896957329525,0.09358724163116365,0.5187888171349981,0.12576273990857167,19.72540387131522,16.247556299369023,13.442802904940574,10.539437748374974,12.924311615494677,8.183847066348454,9.889923183421905,4.958613813458371,8.876503167042252,3.7364402562452548,7.590319211935373,2.5829441071825023,5.423843293433876,1.53849411552959,4.35934236775968,1.0463670600240427,4.136387862751607,1.6132680102230892,7.426057695428201,2.4208698028044275,11.6166384373836,3.0455838461355524,88.76272176542317,59.270937083994305,35.79241441808372,27.255504472405814,26.36690353786354,26.36690353786354,152.0,179.0,56.34506699999999,29.732932999999996,0.44680851063829785,205.07,8.70138888888889,6.0138888888888875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,22.0,47.0,0.0,0.0,50.0,22.0,2.0,12.0,38.0,24.0,31.0,26.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,19.0,5.0,2.0,1.0,28.0,7.0,0.0,3.0,3.0,0.0,4.0,5.0,1.0,0.0,0.0,1.0,4.0,3.8066624897703196,8.565113185430745,4.5217885770490405,5.096812990337308,5.7872807434568925,6.45853418891893,6.872840282910637,7.385754204245237,7.877349782878603,8.330490802775708 +6918602,CC(C)C[C@H](NC(=O)c1cc2ccccc2o1)C(=O)N[C@H]1CC[C@@H](C)N(S(=O)(=O)c2ccccn2)CC1=O,0,26.285714285714285,6.2969028571428565,3.3142857142857145,7.806349206349206,162.94014646372958,103.94401595714288,1.523387670788114,6.3581699999999985,5.691579708014894,7.832078128571431,218.54306800658847,28.73972602739726,6.360668493150685,4.027397260273973,6.36986301369863,145.991821925748,109.86996132876713,1.8614270397260275,6.5175972602739725,2.9288855065110777,7.816008054794518,266.63937918403406,23.30534351145038,6.3401893129771,3.572519083969466,5.882951653944021,154.4316490682385,87.60407180916032,1.5619561373514277,6.446077862595419,3.438801715201206,7.822971267175571,219.6054343396452,19.972677595628415,6.295763934426231,3.0382513661202184,4.571948998178506,159.86044786823356,72.99662579234972,1.3851513042547594,6.376218032786884,3.3300866896039936,7.845284469945356,187.45261728843528,17.459715639810426,6.250667772511849,2.6729857819905214,3.7172195892575037,163.30515498261838,62.344789985781986,1.2206469874078392,6.316792890995261,3.2982783336258863,7.858726635071091,165.30275243925155,17.51,6.435164000000001,2.645,4.123333333333334,164.85461714309363,62.76641045,1.1725713424640452,6.480338500000001,4.40650462962963,8.012694770000001,165.81042254093845,17.13978494623656,6.49370430107527,2.693548387096774,3.702508960573477,163.71880859309172,60.4797407311828,1.2439005946765,6.540931182795697,3.8844251958051235,8.039186849462364,173.8691659719719,15.58974358974359,6.133891282051282,2.6307692307692307,3.0307692307692307,160.91245377886545,54.93071831794871,1.2430772628908462,6.2061687179487155,3.0352168407723967,7.715476184615384,167.4041655677783,15.271356783919598,6.076647236180905,2.5326633165829144,3.150753768844221,160.84742679974167,53.892007030150744,1.2112654739120956,6.147721105527637,3.4281593150939877,7.671594170854274,160.75355273830507,9.592653061224492,0.14508563265306118,0.01923607843301963,0.6620408163265306,4.214421768707484,1.5111473236731754,44.293770401020424,0.2645236743657927,0.13457063265306118,2.357091154362979,0.09231566959183674,49.86209607612462,1.7212412636287404,-0.005482305842884991,-0.010637209894277725,0.18766564159910548,0.857724350013978,-0.24986912294877456,7.480153650055895,-0.01961448111610808,-0.0003002804025718225,-0.2561447429047723,0.0023978742437796847,0.49902348577873296,1.2620906683284006,0.026772142701355427,-0.001453514216371569,-0.02845303006698862,0.7558193557321147,-0.16234319836069727,5.666963246962136,-0.007191843381243237,0.025094089266240946,0.3152291896795158,0.016465870757127254,-0.6910907008911499,0.05059440169510453,0.01863903557488575,0.005084669876240171,0.003845210215233632,0.48971562395449975,0.06064482763821866,0.2713153929686578,-0.00447574795365229,0.015551545332887327,0.08461233570875559,0.009909213780528581,-1.3132229710462273,-0.48865847760905295,-0.018574271786439632,-0.004059763851263407,-0.054457877937905026,-0.005334279051272918,-0.08178097114218415,-2.016274642591162,-0.013999037900008221,-0.014759874359222309,-0.2768136157345548,-0.015245187804429851,0.77272893639998,-0.40293877551020385,-0.005429346938775357,9.034142558682328e-05,-0.028183673469387754,-0.39004081632653054,-0.032589718262984714,-1.673248854234696,0.0003995596698020576,-0.0045109112244896546,0.1647960627152095,-0.00362858223469393,1.6375450815155972,-1.9281369321922315,-0.02607150054860634,0.003074745474289355,-0.01273206056616195,-1.1763948016482577,0.16656994636961597,-8.968502807932856,0.0059667621766096406,-0.02772050976519618,-0.43038660411950097,-0.013391756227781493,-4.71815057647751,-0.5705285190999477,-0.020070072213500784,-0.002165155501795333,-0.05368916797488227,-0.650482004767719,0.021951026135251725,-2.789191526661432,-0.008347326018229139,-0.018472398220826778,-0.3225464609448296,-0.011350284610151749,-3.18023783646345,0.017827915085632213,0.005641388165316338,-0.0007183085475677653,-0.03634088811403959,-0.047794983990246016,-0.15383262931456743,-0.03728231322428237,-0.014499361976333216,0.004934004820018415,0.3273475613594694,0.004892590996820853,-2.9028112985661174,,,0.47192982456140353,1.2039473684210527,0.5657894736842105,0.0,0.6381578947368421,-0.07236842105263158,1.0663320853883624,0.02256909955340821,0.03162173113235558,1.1101811707450298,0.2241517710899417,0.25102159152436315,2.176513256133392,0.4751733626143048,2.0197518257594482,1.4554409038415448,0.21779868792931198,0.2873100643348284,0.0,0.564310921917903,7.7172036534857265,1840.0,440.78319999999997,232.0,546.4444444444445,11405.81025246107,7276.0811170000015,106.63713695516797,445.0718999999999,398.41057956104254,548.2454690000002,15298.014760461192,2098.0,464.3288,294.0,465.0,10657.403000579605,8020.507177,135.8841739,475.7846,213.80864197530866,570.5685879999999,19464.674680434488,3053.0,830.5648000000001,468.0,770.6666666666667,20230.546027939243,11476.133407000001,204.61625399303702,844.4361999999999,450.48302469135797,1024.8092359999998,28768.31189849352,3655.0,1152.1248000000003,556.0,836.6666666666666,29254.461959886743,13358.38252,253.48268867862097,1166.8478999999998,609.4058641975308,1435.6870580000002,34303.82896378366,3684.0,1318.8909,564.0,784.3333333333333,34457.387701332475,13154.750687,257.55651434305406,1332.8433,695.936728395062,1658.1913200000001,34878.88076468208,3502.0,1287.0328000000002,529.0,824.6666666666667,32970.92342861873,12553.28209,234.514268492809,1296.0677000000003,881.300925925926,1602.538954,33162.08450818769,3188.0,1207.8290000000002,501.0,688.6666666666667,30451.69839831506,11249.231776,231.36551060982902,1216.6131999999998,722.503086419753,1495.2887539999997,32339.664870786775,3040.0,1196.1088,513.0,591.0,31377.92848687876,10711.490071999999,242.40006626371502,1210.2028999999995,591.8672839506173,1504.517856,32643.81228571677,3039.0,1209.2528000000002,504.0,627.0,32008.63793314859,10724.509398999999,241.041829308507,1223.3964999999998,682.2037037037036,1526.6472400000005,31989.956994922708,671.4857142857145,10.155994285714282,1.3465254903113741,46.34285714285714,295.0095238095239,105.78031265712228,3100.5639280714295,18.51665720560549,9.419944285714283,164.99638080540853,6.462096871428572,3490.3467253287236,125.65061224489806,-0.40020832653060434,-0.7765163222822739,13.699591836734701,62.613877551020394,-18.240445975260542,546.0512164540803,-1.43185712147589,-0.021920469387743044,-18.69856623204838,0.175044819795917,36.428714461847505,165.33387755102046,3.507150693877561,-0.19041036234467554,-3.727346938775509,99.01233560090702,-21.266958985251343,742.3721853520398,-0.9421314829428641,3.287325693877564,41.29502384801657,2.1570290691836704,-90.53288181674063,9.258775510204128,3.410943510204092,0.9304945873519512,0.7036734693877547,89.61795918367345,11.098003457794015,49.650716913264375,-0.8190618755183692,2.845932795918381,15.484057434702274,1.8133861218367304,-240.3198037014596,-103.10693877551017,-3.919171346938762,-0.8566101726165789,-11.49061224489796,-1.1255328798185857,-17.255784911000855,-425.43394958673525,-2.9537969969017346,-3.114333489795907,-58.407672919991064,-3.2167346267346986,163.04580558039578,-80.58775510204077,-1.0858693877550714,0.018068285117364656,-5.636734693877551,-78.00816326530611,-6.5179436525969425,-334.6497708469392,0.07991193396041152,-0.9021822448979309,32.9592125430419,-0.725716446938786,327.50901630311944,-358.63346938775504,-4.849299102040779,0.57190265821782,-2.368163265306123,-218.80943310657594,30.982010024748572,-1668.1415222755113,1.1098177648493932,-5.15601481632649,-80.05190836622718,-2.4908666583673575,-877.5760072248167,-111.2530612244898,-3.913664081632653,-0.42220532285008994,-10.469387755102042,-126.8439909297052,4.280450096374087,-543.8923476989793,-1.6277285735546823,-3.602117653061222,-62.89655988424177,-2.213305498979591,-620.1463781103728,3.54775510204081,1.1226362448979512,-0.1429434009659853,-7.2318367346938786,-9.511201814058957,-30.612693233598918,-7.419180331632191,-2.88537303329031,0.9818669591836645,65.14216471053442,0.9736256083673497,-577.6594484146574,0.7223425923801794,0.5895432218259476,0.44040457998398974,0.3427712593656751,0.29054568964617755,0.2002304515391733,0.18070215789433353,0.11114590504073919,0.11535928446095987,0.06340079997839256,0.07677362756390299,0.035452089578486855,0.047115960427506015,0.021201768418630904,0.029747934569323224,0.012261642377055886,16.01312488274816,5.679452196633945,3.581552528546688,2.1789364430753264,0.46972523338985184,-0.5231068053315384,4.048550248427516,0.9711655498373202,6.027459431757935,0.644908013755324,14.548773769717934,10.319970675558823,32.066544846514944,11.690742616099945,2.954589680000227,0.7471945892889815,3.5375272942205696,2.228819022819046,7.015575729517228,0.29760522557395597,3.7686836942373714,2.424837262475498,24.441832569291247,14.700678720531142,0.26113039175251745,0.5795450554598,0.771760033980323,0.8737854124264803,0.884383449742886,0.884383449742886,1.358420015544445,1386.6052351129028,0.0,4.0,4.0,0.0,11.0,6.0,1.0,1.0,0.0,4.455596250896294,2.4147521913975027,1.1827712502781598,0.52885071440934,0.4609237500927206,0.4609237500927206,119.26241514339279,2850.5360561608722,82.51245851968538,40.721943659441024,85.05530245034001,,18.0,1134.0,45.74641804591942,22.8014085365444,29.669691472543665,18.424663387494263,9.69144020576103,12.263210640074686,37.255572541998674,25.980208536304467,15.617555728959871,4.417150937053347,17.933333333333334,45.75,21.5,0.0,24.25,0.0,0.028070175438596485,-2.75,0.16878306878306854,0.04529616724738694,-0.12348690153568159,0.028508771929824595,0.17166129032258026,0.0,0.6095238095238079,0.8701754385964907,0.4407407407407394,0.564227642276421,0.8416666666666661,40.520619244757775,0.857625783029512,1.2016257830295118,42.18688448831113,8.517767301417784,9.5388204779258,82.7075037330689,18.056587779343584,0.5423387096774197,0.17657992565055763,0.04646840148698885,0.32899628252788105,0.4074074074074074,0.428407383232768,-1.4661490319828043,-0.06851528584521471,-0.020944986171182914,-0.058645961279312174,0.5715926167672318,1.9561753474880237,0.030548326345087685,0.02794536210697176,0.04347056327751164,-5.863799769934126,0.8157233485229467,0.6729194844043285,1.6018821349122057,0.9892024052835161,0.5507290664270348,1.4241417663413851,0.8116780158580573,1.2886745771816184,0.6351176207923899,0.631813804546521,0.6023764775015502,1.030034289583108,0.7757777314388054,0.6316231842907657,1.1156887077842224,1.290003388522322,0.7181378540786069,1.2508467524717508,0.7801529641541471,1.0529632602462944,0.6257631701084215,0.541641826322425,0.616230415676366,1.0037082414185912,1.099446018546032,0.8489681395251084,0.8957093901830376,1.134983121424673,0.8509959587962331,1.0437113946987275,1.083998996370858,1.1054975857363318,0.855186221174789,0.8571964913435914,0.8595394268293738,1.0088712119601169,1.2328430453231565,1.2717031760977502,1.4023227805641976,1.2101743795326114,1.062607941693431,1.0574025777356986,1.2086886873186606,1.1359654183353323,1.2417344852013095,1.3447831191880248,1.324305926192745,0.9556848554518907,1.0563441409241763,1.371022482711125,1.315072913957462,1.1166769420468559,1.2658687370867763,0.9915721058343644,1.0506892762017097,0.9167875202782496,1.3386097483743078,1.4546145654148839,1.4104079687813669,0.8856007132434905,1.0872375995454053,1.4829184486158216,1.2406712331984302,0.9525774631080706,1.3980351767306494,0.8996094695351996,1.0978530698221047,0.8209473427552967,1.4767202606220466,1.5867756119299068,1.4749676178910573,0.9935320278794706,0.9095330675621712,1.1153964527071696,1.1612360878365324,1.0422318125770653,1.1226089842922227,0.9499470555109807,0.9262291859379438,0.9266908226005988,1.1140660370906044,1.1424929407962414,1.1031993823000483,1.0399361671647394,0.8886691563510681,0.9088056387895763,1.0145320105789681,1.0025776230102426,0.9686681567704221,1.0404082931743424,0.9014480131170908,0.9835982480317909,0.9164405417251896,0.7554370390234363,0.9006424675544461,1.0522370140912602,9.5,0.3886460565248444,5.555555555555557,3.479166666666667,3.086111111111112,1.4275,0.9954648526077097,0.9133007369614512,0.5593742126480221,0.47846450617283953,8636.485012947458,9657.253293032487,4004.053998685599,3680.41087355654,17.403331008723754,0.42570936591613134,9.994570000171418,0.7412786151305426,0.0,0.4074074074074074,1.6736867660486725,3.7145308255474636,4.946511766666807,5.600432302535626,5.668359266852246,5.668359266852246,0.23170731707317077,0.00903828038429871,0.09416195856873827,0.05352564102564104,0.04898589065255731,0.022658730158730156,0.017464295659784378,0.016912976610397243,0.01055423042732117,0.010180095876017863,0.5151894164366568,30.947055324211778,13.775351910370583,7.853185595567867,221.39239778030867,0.0,4.559999177586291,270.5903941573248,,212.7395578397966,223.68931136719817,222.35722964921712,212.77380414629343,294.41514555488004,225.741278127882,226.5976351805693,279.50396358855204,0.1794332863539449,-0.03778669012661413,-0.5529822479834796,0.28346536493083135,0.20352124136759867,-0.16535060416307576,0.16887597471005922,-0.07415019152117357,-0.002231396231494136,-0.1086698503070821,0.02597472622342029,0.010008072765670985,0.13156846810503703,0.18452649109215954,-0.07556187824003378,-0.04297775811598158,0.17934117589847112,-0.10743042443147534,0.1279404122894804,-0.027187900661390714,0.18647522696082167,0.13373652906720476,0.178364852141887,-0.013860041098875175,0.005274286620415541,0.12846920287039518,0.2643298577693516,0.005808116539656226,0.11619995596802597,0.04013164480271062,0.006125362336786019,-0.016920027911993492,0.11556418385117523,0.035896929803558096,0.10734053952423295,-0.026337099207408482,-0.05094091014135731,-0.1280228196740591,-0.21104945404540626,-0.08225758381496136,-0.0012657202681707108,-0.05411846340924427,-0.04552050151379102,-0.05292168246782273,-0.10968124373224127,-0.11743865536221305,-0.16514192955361448,0.015497321557045099,-0.04200493575014889,-0.037421671874005524,0.004696457539482059,-0.04257090012330456,-0.09254907024793384,-0.021566208504256387,-0.03777616669535426,0.0015104873722929324,-0.03352076998938773,0.06991501470368329,-0.03930624400751568,0.03284148101226134,-0.2010014247243199,-0.17969732820444267,0.15984263554526842,-0.01923153414740862,-0.27913551756568605,0.11022747005548812,-0.20247774634525678,0.022556628214526427,-0.20599226754519978,-0.182592261365393,-0.14506482254845385,-0.09462399192513476,-0.059475571091603764,-0.13833259604342582,-0.11255701152053643,-0.08109646210755952,-0.1543466792046337,0.014526066248719506,-0.06297028908149069,-0.03155606407722192,-0.1372691638334701,-0.13684089406037422,-0.12295079113151369,-0.06378066881922033,0.0018584968070716919,0.03888316204821202,-0.037341735222640546,-0.0548922169416751,-0.011340816513697963,-0.10179856517274798,-0.0008417055691295017,-0.05481309758416173,0.03666479619471549,0.13887776921717626,0.05299848897216354,-0.058216792453618195,11.701144072327407,24.921195891423746,12.004042336804705,17.86107408948325,37.191176304351586,44.65693517487469,46.06348746340624,46.131957843437405,46.131957843437405,76.75056937885903,55.3067543459787,8.276350141313856,10.91778244472348,0.0,21.443815032880313,14723.81485231194,11514.515213164483,4436.375335305418,148.0,59.0,76.0,96.0,117.0,122.0,130.0,145.0,144.0,540.2042557440009,41.0,5.303304908059076,6.154858094016418,7.044905117129371,7.918264686095274,8.809713540508268,9.691222119369101,10.583726782795289,11.46902582268021,12.362353911189507,0.6809523809523809,0.9921142857142854,1.1283421603839539,0.6430236568859499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6718509495295124,0.9783193277310924,1.013125585266882,0.6310992643424155,9.0,1.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,4.0,2.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,15.05072814506601,11.624860970790202,16.569452343908623,5.907179729351506,15.930470882759089,14.383611552215466,13.401775505276145,4.305215991296234,0.0,38.112942673227685,56.36957638847649,17.624908615225834,12.586597235060536,356.8307843511195,-1221.1906926305342,-57.068024840518476,-17.445581323293343,-48.84762770522137,476.0931994945123,1629.345363530338,25.444433679166906,23.27636233614768,36.20767474511863,0.5,0.7712611823659397,0.13175813644507547,128.21602834296044,0.0839151069982705,58.555216199802324,0.22873881763406032,9.0,0.1951219512195122,0.2730640372489917,0.6060302347400669,0.8070294279105272,0.9137173609136201,0.924799727991275,0.924799727991275,2.8994000000000018,,2.696428571428571,2.432366560123275,1.8529029618306065,2.6909528909538505,-8.142354927727702,2.2086903304773564,2.1233768779215905,-3.513686506150401,140.68569999999985,27.21855947359775,0.0,19.922771720256105,5.917906046161393,63.18515893396302,6.544756405912575,60.48802753818039,0.0,0.0,4.418840607796598,0.0,5.765191102784844,2.3978952727983707,7.288244401020124,4.844187086458591,8.891649112650057,7.034387929915503,10.5398791792736,47.66666666666666,14.778235919676664,3.941671727743112,0.0,5.62554141365449,0.0,1.3303564124420038,-0.04636473609209113,0.0,69.44799999999998,0.0,65.6099513932594,0.0,0.0,-3.9880899573823654,0.0,0.0,-1.4585593676359154,78.98395122687677,10.633577208012662,0.0,0.0,59.974874794996786,19.612365521551226,5.917906046161393,50.58846107079616,64.17089103502855,0.0,10.969244356107037,0.0,45.01165598201649,47.02956646706587,48.099407692751036,541.1807883146496,,426.118849432738,447.25060344175824,444.62279015619066,426.18827671180566,590.9477687933239,451.36630939626525,453.0835136833533,559.5627197833383,48.099407692751036,541.1807883146498,,423.75844712164746,445.02285329307324,442.96492961139495,423.83258752785855,596.9726460374881,449.33590516080267,451.12265632112724,562.5216136832546,4.872424457503186,404.8286571767432,,326.94302795589476,340.4135971000686,337.302727844331,326.9996570945776,455.7892347435313,343.87570524637,345.6229781326138,430.50631344305907,1.265773886651343,14.241599692490778,,11.213653932440474,11.769752722151532,11.700599740952386,11.215480966100149,15.551257073508523,11.878060773585927,11.923250360088245,14.72533473114048,2.4530572492876463,270.5903941573248,,212.7395578397966,223.68931136719817,222.35722964921712,212.77380414629343,294.41514555488004,225.741278127882,226.5976351805693,279.50396358855204,68.48235294117647,0.0,5.575413666322619,0.0,0.0,0.0,0.0,70.91879096868173,0.5926046088374382,5.497044516725531,0.0,0.0,-2.178809948939422,1.137671018055217,0.0,0.0,0.0,44.176948503969086,642.4019366017309,117.15807362340708,260.01715778832244,346.25582366667646,392.03026117749386,396.7851486796572,396.7851486796572,1116.0,158.33737498184252,190.522047243901,89.1802746926977,147.06,138.68,1.0,8.436854671765484,6.357552004618084,4.680064620164237,6.0755437950145526,,6.092338348003525,6.086189993572046,6.085086226217356,6.092351372429539,6.103532723955005,6.087244841867001,6.088356069033076,6.097389951940016,0.12315959526747992,0.1598827314477514,,0.16032469336851382,0.16016289456768543,0.16013384805835149,0.16032503611656682,0.16061928220934224,0.16019065373334213,0.160219896553502,0.16045763031421095,2.878312984293971,3.139272565535493,,3.142033039947789,3.141023335855244,3.140841963361878,3.142035177782451,3.143868805352198,3.1411966391688697,3.1413791726105114,3.1428618696150923,396.3400000000014,627.8865587833691,269.03699535269095,,265.46779024107593,266.5087306912252,266.91290061348934,265.4662907975081,264.5057479931371,266.3648542055726,266.18773988453165,265.02486238149726,16.523330494299188,7.079920930333972,,6.985994480028314,7.013387649769084,7.024023700354983,6.985955020987056,6.960677578766766,7.009601426462437,7.004940523277149,6.974338483723612,7.777360578003385,6.9298499660700665,,6.916494582695375,6.9204080703690725,6.9219234569821735,6.916488934372461,6.912864049337619,6.919868068037463,6.919202915601679,6.9148247086252494,33.04831166140983,43.266523891302384,6.13438248142799,0.5610115395543356,-1.2982991078332187,11.141151178257488,2.3599796955841255,5.191695284346106,-3.9880899573823654,482.29506329764075,297.21291846049604,-1017.1590167410311,-47.53332660036613,-14.530843096300442,-40.686360669641246,396.5494444047824,1357.1208312520985,21.19327906674767,19.387440446458545,30.158240694491088,4976.0,65.0,3.357262965397383,1.9880976638440069,0.16666666666666666,0.04564354645876384,1.0851581849097258,0.4527222178284919,0.15137471507731048,0.030419012832274044,0.0,0.0,0.0,0.0,0.09622504486493763,0.02946278254943948,0.37703372499280896,0.10137505967448376,0.52591012962238,0.14401197150225042,27.449018510446816,22.40264242938601,18.05658777934358,14.053621633992678,17.142195689124474,11.813596640811225,13.733363999969347,8.447088783096179,11.074491308252147,6.086476797925685,8.98251442497665,4.147894480682962,5.748147172155734,2.5866157470729703,3.867231494012019,1.5940135090172651,7.274919704276139,3.804270666480833,10.814312435275967,5.14544225790454,16.834745719579658,6.717160158023617,124.99006179781904,59.48151333095625,35.072013150399734,29.1067291875575,28.785142964769232,28.785142964769232,200.0,235.0,78.53937599999998,47.088624000000046,0.4,275.11,13.645833333333332,8.222222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,15.0,16.0,70.0,0.0,0.0,73.0,16.0,5.0,12.0,61.0,21.0,41.0,52.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,7.0,2.0,3.0,38.0,11.0,0.0,4.0,6.0,0.0,4.0,8.0,1.0,0.0,0.0,2.0,3.0,4.007333185232471,6.694552389538708,4.592591403781231,5.085278837092021,5.583261318767693,6.046633135335159,6.217946270520774,6.488622980109658,6.750895855694543,6.631888546347556 +5665,C=CC(N)CCC(=O)O,0,20.2,6.233245000000001,2.25,5.8,168.85014716108694,79.24467404999999,1.2060274976669496,6.258190000000001,6.7027777777777775,7.802563400000002,177.95591631933047,20.42105263157895,6.4017368421052625,2.6842105263157894,4.526315789473684,153.1454569853658,74.4793930526316,1.5458024771578949,6.506973684210528,3.776315789473684,7.86899957894737,221.99435818006364,16.161290322580644,6.119806451612902,2.3870967741935485,3.0,157.00087319597083,57.34943306451613,1.2772148770772902,6.203535483870969,3.973118279569892,7.654046580645162,171.60521875163192,10.857142857142858,5.990523809523809,1.8571428571428572,1.3333333333333333,167.07824018887592,35.27330321428572,1.0071687557937856,6.034750000000001,3.1044973544973553,7.624008666666667,127.77867143241615,9.05,5.868775000000001,1.55,1.525,170.86688930642464,28.342388224999997,0.89667744604715,5.900375000000001,2.8625,7.5376825,109.40427114341216,10.451612903225806,5.873548387096774,1.4516129032258065,2.3870967741935485,173.6569219810801,36.19857409677419,0.784634739664,5.884441935483871,4.10752688172043,7.558995225806452,98.94038306110807,10.235294117647058,6.5384705882352945,1.2941176470588236,1.2941176470588236,176.43466768665556,31.56532764705882,0.7167328041320589,6.510000000000001,5.431372549019608,8.242284705882351,99.06679612183967,5.125,6.352500000000001,1.0,0.0,181.07657632128087,9.957906000000001,0.573306871068375,6.30025,4.0,8.144712,67.00529652064708,1.0,4.840000000000001,1.0,0.0,184.91765202424898,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,7.95,0.1644127499999999,0.032203803906283995,0.42750000000000005,3.55,1.2578685095716264,37.53955584749999,0.2001465766901275,0.1523489999999999,2.900277777777778,0.10471314999999996,45.90798599030178,-0.8552631578947368,-0.029748539473684284,-0.02329997948685273,0.0303947368421052,0.4605263157894737,0.15641030837879932,-3.9119455422368397,0.01210532974858849,-0.02700057894736858,-0.5632894736842106,-0.01737064473684208,0.5820708636811953,-0.1532258064516129,0.03722628225806449,0.007042014315952182,-0.14524193548387102,-0.024193548387096774,-0.37955718761837665,-1.052839855564513,-0.05518894774074834,0.031694870967741914,0.699005376344086,0.027348830645161273,-10.464677685514074,-1.3095238095238095,-0.02645763095238093,-0.002284349931416609,-0.016785714285714293,-0.7738095238095238,-0.1597447136628488,-6.157229104642857,-0.021632632762241776,-0.024965666666666636,-0.41324074074074074,-0.015577083333333332,-6.24822935520426,-0.75,-0.019605874999999946,-0.004941069069559967,-0.0024999999999999905,0.0625,-0.042417366465791376,-3.5151634712499997,-0.012669992923041287,-0.01766999999999993,-0.5093749999999998,-0.01187072500000001,-3.0328650475493952,2.8306451612903225,0.05877450806451616,0.012603447381631971,-0.03556451612903225,1.0564516129032258,0.05172137359168024,13.225031518629029,0.009258805511406284,0.0561500322580646,0.8019623655913978,0.03038947580645158,8.364823716052973,-2.426470588235294,-0.08262039705882364,-0.01210146837035877,0.0195588235294118,-1.9264705882352942,0.013714824068616186,-11.144077756323531,-0.00018633614047173,-0.07492429411764721,-0.7837745098039215,-0.05338869117647051,-3.903232610964297,-4.0625,-0.11172400000000006,-0.002592197335391804,0.12250000000000007,-2.25,0.2416521275297654,-18.64387020375,0.04811511871564106,-0.10643525000000004,-1.9474999999999998,-0.0671143749999999,-3.1181286187069905,6.25,0.06943225000000026,0.015850129721691555,0.12250000000000007,2.25,0.42601644149042106,29.701955002499993,0.11299221729192224,0.07344100000000044,0.9025,0.03330624999999988,34.998242448468694,,,0.45185185185185184,0.8055555555555556,0.2777777777777778,0.0,0.5277777777777778,-0.25,0.6364171837969606,0.027812344691786766,0.027812344691786766,0.5216336128388904,0.18610282563428507,0.2765530032709387,1.1580507966358509,0.4626558289052238,1.8324811009773196,1.2666890599034444,0.19094114804628368,0.374850893027592,0.0,0.5657920410738756,6.4539489296,404.0,124.66490000000002,45.0,116.0,3377.002943221739,1584.8934809999996,24.120549953338994,125.16380000000001,134.05555555555554,156.05126800000005,3559.1183263866096,388.0,121.63299999999998,51.0,86.0,2909.7636827219503,1415.1084680000004,29.370247066000005,123.63250000000002,71.75,149.51099200000002,4217.892805421209,501.0,189.71399999999997,74.0,93.0,4867.027069075096,1777.8324249999998,39.593661189395995,192.30960000000002,123.16666666666666,237.27544400000002,5319.76178130059,456.0,251.60199999999998,78.0,56.0,7017.286087932789,1481.4787350000001,42.301087743339,253.45950000000002,130.3888888888889,320.208364,5366.704200161478,362.0,234.75100000000003,62.0,61.0,6834.675572256986,1133.6955289999999,35.867097841886,236.01500000000004,114.5,301.5073,4376.170845736487,324.0,182.07999999999998,45.0,74.0,5383.364581413483,1122.155797,24.323676929584,182.4177,127.33333333333334,234.328852,3067.15187489435,174.0,111.15400000000001,22.0,22.0,2999.3893506731447,536.6105699999999,12.184457670245001,110.67000000000002,92.33333333333334,140.11883999999998,1684.1355340712744,41.0,50.82000000000001,8.0,0.0,1448.612610570247,79.66324800000001,4.586454968547,50.402,32.0,65.157696,536.0423721651766,2.0,9.680000000000001,2.0,0.0,369.83530404849796,2.032128,0.8892258096979999,9.680000000000001,2.0,13.436928,62.16748886186053,159.0,3.288254999999998,0.6440760781256799,8.55,71.0,25.157370191432527,750.7911169499998,4.00293153380255,3.0469799999999982,58.00555555555557,2.0942629999999993,918.1597198060356,-16.25,-0.5652222500000014,-0.4426996102502019,0.5774999999999988,8.75,2.9717958591971874,-74.32696530249996,0.23000126522318132,-0.513011000000003,-10.7025,-0.33004224999999954,11.05934640994271,-4.75,1.1540147499999993,0.21830244379451763,-4.502500000000001,-0.75,-11.766272816169677,-32.638035522499905,-1.7108573799631985,0.9825409999999993,21.669166666666666,0.8478137499999995,-324.4050082509363,-55.0,-1.111220499999999,-0.09594269711949757,-0.7050000000000003,-32.5,-6.709277973839649,-258.603622395,-0.9085705760141546,-1.0485579999999988,-17.35611111111111,-0.6542374999999999,-262.4256329185789,-30.0,-0.7842349999999979,-0.1976427627823987,-0.09999999999999962,2.5,-1.696694658631655,-140.60653885,-0.5067997169216515,-0.7067999999999971,-20.374999999999993,-0.47482900000000045,-121.3146019019758,87.75,1.822009750000001,0.3907068688305911,-1.1024999999999996,32.75,1.6033625813420875,409.9759770774999,0.2870229708535948,1.7406510000000026,24.860833333333332,0.942073749999999,259.30953519764216,-41.25,-1.404546750000002,-0.2057249622960991,0.3325000000000006,-32.75,0.23315200916647516,-189.44932185750002,-0.0031677143880194103,-1.2737130000000025,-13.324166666666665,-0.9076077499999986,-66.35495438639305,-32.5,-0.8937920000000005,-0.02073757868313443,0.9800000000000005,-18.0,1.9332170202381231,-149.15096163,0.38492094972512847,-0.8514820000000003,-15.579999999999998,-0.5369149999999993,-24.945028949655924,12.5,0.13886450000000053,0.03170025944338311,0.24500000000000013,4.5,0.8520328829808421,59.403910004999986,0.22598443458384448,0.14688200000000087,1.805,0.06661249999999976,69.99648489693739,0.8084467646598772,0.5787592263435934,0.5204878075183768,0.3455559476461972,0.38717968058815333,0.2035522831927321,0.27624852010595896,0.14204082889661657,0.16439505508593785,0.08159861688001877,0.1373773447853214,0.04030050921856983,0.11785113019775792,0.025204287525485453,,,8.02862903309234,5.760457890659424,3.554689220199564,2.2596617575337548,0.42547413951241597,-0.33445340704137894,3.037884701655915,0.9573691364159271,6.021996957682549,1.8930999271503297,14.537807362750494,11.02163527168856,16.01389914735277,11.772085206167826,1.9128308549783075,0.7416224331402601,3.500717592793558,2.309407267721191,7.0082898807395715,1.2628145517869351,3.7136439534267027,2.5052590787303743,20.820085452493576,14.701443241389862,0.3514663913893229,0.7749216116316172,0.8929063447345729,0.8929063447345729,0.8929063447345729,0.8929063447345729,3.0608205611627874,111.6254878262668,0.0,2.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,2.7781761404668606,0.9182263988300141,0.3999999999999999,0.3999999999999999,0.3999999999999999,0.3999999999999999,71.46473532793,409.09504579963357,54.700110936006155,20.45475228998168,44.41858507913143,,6.0,74.0,5.969305287951849,4.794537184071822,12.462662452073971,6.4208216229260096,0.0,0.0,6.076020106833881,0.0,6.578935683598497,10.84019487200289,4.066666666666666,7.25,2.5,0.0,4.75,0.0,0.048148148148148176,-2.25,0.1525287356321839,0.025151515151515147,-0.12737722048066874,0.15370370370370356,0.2200728744939271,0.0,0.576666666666667,0.9148148148148147,0.4241379310344831,0.5515151515151518,0.7611111111111112,5.727754654172645,0.2503111022260809,0.2503111022260809,4.694702515550014,1.6749254307085657,2.4889770294384483,10.422457169722659,4.163902460147014,0.4939271255060729,0.3852459016393443,0.0,0.24590163934426232,0.5,0.39006548874050867,-0.4909463140494745,-0.10766346692473759,-0.024547315702473725,-0.08182438567491242,0.6099345112594913,0.7676790404639489,0.06062736726071026,0.03838395202319744,0.05483421717599634,-0.1607975761842234,1.0377358490566038,0.9501544132070052,1.7054443643048562,1.4619883040935673,0.676056338028169,1.33802400724035,1.0435648635307153,1.2836542087414469,0.9440659275741885,0.9390862944162434,0.929208031656005,1.1866700957281169,0.9077906269020085,0.4600797922969341,0.5177604677452605,1.7921146953405016,0.8071331213084961,1.5393186605122366,0.9252729690320638,1.489299862738683,0.48804273464640496,0.4436372118601912,0.41204985915978476,1.3504720750529915,1.0854297693920336,1.0187756264702854,0.8250468210214266,0.9788359788359788,1.0895372233400402,1.1027703749282958,1.0868011186976578,1.0687496970792083,1.0266012029397416,0.9980457080830605,0.988916228127349,1.0936032004789926,1.0067610062893082,0.959351920699581,0.9724024153027288,0.7222222222222222,0.8262323943661971,0.9101558198982422,1.0073518929738055,0.9338223433797983,0.9657201556951475,0.9811859496216836,0.9207278885221197,0.9715669572858672,0.5936295394603368,0.6029583001200609,0.5686703580053383,0.8602150537634408,0.7078600636074511,0.6886421484683003,0.5950050709030218,0.7481445631394986,0.59936978317399,0.6694915516064149,0.6610481325226538,0.6803475356062724,1.4515353311135775,2.237652958609283,1.9611138231897376,0.5882352941176471,2.0306545153272575,0.6307739961427128,1.4233948547815902,0.6733742919878908,2.179352709124136,2.1087680355160927,2.361371714901474,0.8188741115897871,1.6505503144654088,2.473766481005884,1.9114499407226535,0.0,2.107394366197183,0.2581265383365636,1.6132766399234904,0.3202561069220056,2.444738314659106,2.5794943013121343,2.5715116726027247,0.722873455268729,0.0,0.0,0.8693019324616609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5,0.0,0.8888888888888893,0.25,0.32000000000000006,0.1111111111111111,0.0,0.0,0.0,0.0,1091.4225570873866,1339.992561517115,754.7822622160638,633.5912621703867,7.603766697067827,0.45961333995955683,4.108974089155235,0.850526805982144,0.0,0.5,1.543751954420502,3.4037016960573485,3.9219280948873627,3.9219280948873627,3.9219280948873627,3.9219280948873627,0.3125,0.0,0.09876543209876548,0.03571428571428571,0.06400000000000002,0.02222222222222222,0.0,0.0,0.0,0.0,0.5332019400352734,9.0,4.839506172839506,5.877551020408164,54.17000511688082,1.0,3.0179493670190167,23.92919900358549,,21.00723845817795,20.83635908207689,21.069886901273524,21.00983582910559,25.872564138797834,20.951617844892983,21.01584364096446,23.6029388720299,-0.10758027143330023,-0.18093815396728233,-0.7235163757256066,0.07109879963065543,0.1297257227575982,0.12434551559929397,-0.10420862617897388,0.06048232224990936,-0.17722846193521846,-0.19421914617978717,-0.1658879017281219,0.012679076442259083,-0.01927368634611483,0.22641968009211277,0.21867026443351492,-0.339747217506131,-0.006815084052703317,-0.3017463150799735,-0.028046145773315767,-0.27574265147783866,0.20804121436794423,0.2410132511099233,0.2611785687390865,-0.2279489605081951,-0.16471997604073074,-0.16092201457843716,-0.07093416473607514,-0.03926482873851296,-0.21797451374916163,-0.12699635331299508,-0.16401976436950594,-0.10808395087233504,-0.163871549315497,-0.14248315933978223,-0.14875957158516706,-0.13610332103273318,-0.09433962264150944,-0.11924789896160702,-0.15343122458262784,-0.005847953216374246,0.017605633802816902,-0.033721622047949054,-0.09363892011748716,-0.06330357047603828,-0.11598369533111436,-0.1756297289531653,-0.11336422407309889,-0.06606399697407982,0.35605599513085817,0.35748144875939486,0.39136517593726355,-0.08319185059422747,0.2975920036347115,0.04111826728955495,0.3522958974888823,0.04626012427752399,0.36856186951056213,0.2765122609069085,0.2902164227363191,0.18220846625291015,-0.30521642619311873,-0.5025181870555884,-0.3757776070670144,0.04575163398692818,-0.5426677713338857,0.010903225547228971,-0.29686226980401764,-0.0009309983890467474,-0.4917938031601603,-0.2702411871749944,-0.5098566051777692,-0.08502295465082846,-0.5110062893081762,-0.6795336736354093,-0.08049351383877924,0.28654970760233933,-0.6338028169014085,0.19211239147091874,-0.4966459986763967,0.2403994088299308,-0.6986278216463522,-0.6714874054209364,-0.6409354985500859,-0.06792126797646288,0.7861635220125787,0.422304535384271,0.49218191018107293,0.28654970760233933,0.6338028169014085,0.3386812200549508,0.7912175392580743,0.5645473390577144,0.48205764396222145,0.3111770903170194,0.31807132151023904,0.7623563023623426,1.6509636244473134,3.7797631496846193,0.33333333333333337,15.078591272156784,26.985223330357194,27.507595540377846,27.507595540377846,27.507595540377846,27.507595540377846,16.492329908795877,11.400201539130999,1.7184703324165531,3.373658037248328,0.0,5.092128369664881,797.9931035481452,683.417572617523,160.6501188779722,0.0,9.0,7.0,5.0,5.0,2.0,0.0,0.0,0.0,129.078978592,8.0,3.5553480614894135,4.204692619390966,4.9344739331306915,5.616771097666572,6.343880434126331,7.037905963447182,7.760893195851024,8.460622839927844,9.1801903950253,0.5833333333333333,0.9853999999999999,1.1496801728195518,0.5376696361668472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6005605688622755,0.9690196078431373,1.010378732702112,0.5583807347852637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,10.84019487200289,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,6.578935683598497,6.076020106833881,6.4208216229260096,12.462662452073971,0.0,126.78423997174689,-159.57385898115487,-34.994202821816046,-7.978692949057743,-26.59564316352581,198.24897529967689,249.52118681847872,19.70590811419011,12.476059340923937,17.82294191560562,0.5,0.6179514659914916,0.3823453226732049,83.32446387102563,0.24066923680145988,24.342966790713444,0.38204853400850836,3.0,0.5,0.3571905687757017,0.7875424165625909,0.9074487147360963,0.9074487147360963,0.9074487147360963,0.9074487147360963,0.36450000000000005,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,35.042199999999994,9.901064578912528,0.0,0.0,5.733667477162185,18.88348407499998,0.0,12.654955790432378,0.0,0.0,2.833213344056216,0.0,3.970291913552122,0.0,5.25227342804663,0.0,6.586171654854675,0.0,7.946971357693591,11.666666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.708,3.420615079365079,9.929827097505669,0.0,0.0,0.0,1.5445833333333334,0.0,-0.8126851851851848,22.993603456391035,5.733667477162185,0.0,0.0,17.117673511940517,4.794537184071822,0.0,12.841643245852019,12.654955790432378,0.0,0.0,0.0,10.753392723336944,12.011211377245509,10.15047041953182,47.85839800690255,,41.87161976732516,41.504474529153825,42.01276980634735,41.87722024390462,52.341299465750566,41.752429889667184,41.89007558835833,47.45416965131827,10.15047041953182,47.85839800690255,,41.371619767325164,40.915621832809265,41.56825583962515,41.37864031537605,54.42789862441954,41.224609612229415,41.3944346822639,48.32319132804229,4.071296808513404,36.93277988032804,,33.39821991069115,33.18590392526475,33.506881384858744,33.40153815677451,39.847700202700636,33.33039774494006,33.40878812334914,36.734483814613284,1.1278300466146467,5.317599778544728,,4.6524021963694615,4.611608281017092,4.668085534038594,4.653024471544957,5.815699940638952,4.639158876629687,4.654452843150925,5.272685516813141,2.0356484042567025,23.929199003451274,,21.00723845509115,20.836359078340422,21.069886898419703,21.009835826027818,25.872564138779712,20.951617841610418,21.015843637906936,23.60293887184141,19.380392156862747,0.0,0.0,0.0,0.0,5.339861111111111,8.168030045351474,20.20757465404224,0.5893055555555555,0.0,0.0,0.0,-0.17953703703703727,0.0,0.0,0.0,0.0,11.167614695705275,200.85475187290442,30.87503908841004,68.07403392114696,78.43856189774725,78.43856189774725,78.43856189774725,78.43856189774725,45.0,74.09477854005533,124.17846339851937,35.58892169820323,63.32000000000001,63.32000000000001,1.0,4.143134726391533,4.0,2.8114320001269695,2.954160105982497,,2.9661971254976,2.9667321424450237,2.965657345375152,2.966188074381984,2.948640165306774,2.9663603952331945,2.966170951167645,2.9569060700023835,0.31238133334744106,0.328240011775833,,0.32957745838862224,0.32963690471611373,0.3295174828194613,0.32957645270910935,0.32762668503408604,0.32959559947035494,0.32957455012973835,0.3285451188891537,0.9283334464675812,0.9778538667058654,,0.9819201875815956,0.9821005426556952,0.981738193863918,0.9819171361561365,0.9759835875058023,0.9819752295209498,0.9819113633381849,0.9787829594061205,108.52000000000012,24.418903588661514,26.564803151039253,,26.006978489249718,25.976516337928736,26.01748794478952,26.00743685488542,26.71094175221084,25.997077993019083,26.00850581340881,26.42097848859641,2.7132115098512792,2.951644794559917,,2.889664276583302,2.886279593103193,2.8908319938655023,2.88971520609838,2.9678824169123157,2.8885642214465648,2.8898339792676455,2.935664276510712,3.089997053927574,3.174226634130641,,3.15300438978258,3.15183239644473,3.1534084095218726,3.1530220143442587,3.1797127692554654,3.1526236311641203,3.153063115532422,3.1687978186550225,0.0,9.929827097505669,8.168030045351474,5.339861111111111,-0.8126851851851848,-0.17953703703703727,2.1338888888888894,3.420615079365079,0.0,135.63666689610284,41.20908916376065,-51.86680445791353,-11.3742782590352,-2.5933402228956766,-8.644467409652256,64.43750186591906,81.10267362995175,6.405074674198451,4.055133681497588,5.793048116425124,104.0,7.0,0.6969234250586759,0.20063248592474464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.276020881938894,5.208833037092341,4.163902460147014,2.7644475811695775,3.4846171252933797,1.831970548734589,1.9337396407417127,0.9942858022763159,0.8219752754296893,0.40799308440009385,0.686886723926607,0.20150254609284912,0.23570226039551584,0.050408575050970905,0.0,0.0,0.7814744144215573,0.2380936361886391,0.48864194209635603,0.1425062180111825,0.6380711874576983,0.10560815102305422,30.805091883338278,17.36180442101435,16.055519570060717,16.055519570060717,16.055519570060717,16.055519570060717,34.0,33.0,20.05872299999999,11.333276999999999,0.0,8.03,4.972222222222222,2.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,20.0,0.0,1.0,19.0,0.0,2.0,2.0,17.0,2.0,8.0,17.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,2.0,2.0,0.0,9.0,3.0,0.0,1.0,2.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,2.3978952727983707,0.0,2.5649493574615367,2.3978952727983707,2.0794415416798357,2.1972245773362196,1.9459101490553132,0.0,0.0,0.0 +4908,COc1cc(NC(C)CCCN)c2ncccc2c1,0,19.3,5.897867499999999,2.825,5.45,165.10893770229322,75.746382675,1.386089375045725,5.9683975,2.803472222222222,7.4538027,198.79613639797216,22.024390243902438,6.253341463414635,3.4146341463414633,5.512195121951219,149.3276626146609,81.9813826341463,1.7161852312195127,6.3873292682926825,2.915989159891599,7.680536975609753,244.93629882742465,17.43661971830986,6.0762816901408465,3.1549295774647885,4.225352112676056,156.72377707080759,63.274293436619715,1.438882294175915,6.176563380281692,2.566510172143975,7.5899865915492954,198.12930669521236,14.813186813186814,5.949295604395604,2.769230769230769,3.4615384615384617,161.7535703169196,52.6358384065934,1.2908679889997798,6.03131978021978,2.394688644688645,7.50061920879121,171.9817498817427,13.489583333333334,5.830749999999998,2.5520833333333335,2.7916666666666665,162.23816186710235,47.37997621874999,1.2244913000127602,5.911323958333333,2.2737268518518516,7.405248458333333,159.03705795120456,13.136842105263158,5.875819999999999,2.4526315789473685,2.2421052631578946,162.20352319530295,45.4246472736842,1.206748659880821,5.952423157894735,2.357894736842105,7.451415957894737,155.5089871020311,11.72340425531915,5.876329787234043,2.25531914893617,1.4361702127659575,164.71406447317372,39.042331861702124,1.1531313930194573,5.944367021276596,2.3058510638297873,7.4681459148936185,146.2071563391908,10.113636363636363,5.760056818181819,2.0681818181818183,1.0454545454545454,162.79535087118668,32.23536025000001,1.1104663799753292,5.831375,2.1600378787878793,7.386372181818181,135.2220322935514,8.519480519480519,5.598661038961041,1.7792207792207793,1.0,164.92164646923732,26.199089831168827,1.006970528290597,5.664676623376624,2.0660173160173163,7.247911844155844,116.25081346822884,7.05,0.08856243749999995,0.017812862126746543,0.49937499999999985,3.2,1.4659005511835932,33.706396044375,0.22213682782671934,0.08655993749999995,0.5158159722222222,0.04751259749999998,50.39526244635739,0.21341463414634146,-0.003887986280487789,-0.007030243947386202,0.23538109756097564,1.1768292682926829,-0.0824043719464408,1.021153167820118,-0.003241756388560912,-0.0020066448170731987,-0.06551109417344171,-0.0031485340853658426,0.8853355577648583,0.15845070422535212,-0.0074693741197182995,-0.0014413697377543089,0.06787852112676059,0.43309859154929575,-0.09567799220483889,0.8161163288644342,0.007726516250345374,-0.005680676936619735,0.0006746381064162957,-0.005352293274647879,2.0130902203413603,0.21703296703296704,-0.002889607829670325,-0.0004593301258528948,0.050625000000000024,0.40384615384615385,0.0871949132435219,1.0786048751304933,0.013279508701852858,-0.002015953983516493,-0.004743017399267392,-0.0022105942032967,2.850096857197036,0.4375,0.0075859999999999955,0.001274083494672618,-0.03088541666666665,0.16666666666666666,-0.0418344706585552,2.0420460337499997,-0.000886879023333966,0.00770967187499999,0.01337962962962963,0.004015717083333329,1.1677921421761617,-0.21842105263157896,0.005560983552631578,0.0013089155142596693,-0.10174342105263161,-0.45,-0.03915597516833129,-1.1035965862171053,-0.015393851412259114,0.004146509868421052,0.033752741228070184,0.0036309046052631585,-3.287784829283094,-1.196808510638298,-0.0184365864361702,-0.0025181879550812314,-0.14006648936170216,-1.1170212765957446,0.0963410168329353,-5.66629367363032,-0.013406518472064591,-0.018045602393617015,-0.10221520390070918,-0.008652903882978714,-4.698126661867757,-1.6193181818181819,-0.017914994318181807,-0.0004609210033725202,-0.11187500000000003,-1.0340909090909092,-0.14782541400150406,-7.696042282727271,-0.03017850834423158,-0.01893431249999998,-0.10126420454545451,-0.008500200909090903,-9.251528140275568,-0.9123376623376623,0.0018492508116883038,0.0006998381423028229,-0.0344399350649351,-0.1396103896103896,-0.24490704325318677,-4.460095603790582,-0.04693123592489955,-0.0001955543831168649,-0.01358833874458877,0.0016323986038960972,-10.057165202008433,,,0.47543859649122805,1.1973684210526316,0.5789473684210527,0.05263157894736842,0.618421052631579,-0.039473684210526314,0.7851913825799534,0.009131587342372538,0.018184218921319908,0.7567982998101663,0.23286211133698986,0.2534912256560637,1.5419896823901198,0.48635333699305355,2.013456083431538,1.6082709599618121,0.3049799691834618,0.10020515428626339,0.0,0.40518512346972524,6.479211557300002,772.0,235.91469999999998,113.0,218.0,6604.357508091729,3029.8553070000003,55.443575001829004,238.73590000000002,112.13888888888889,298.152108,7951.845455918887,903.0,256.38700000000006,140.0,226.0,6122.434167201098,3361.236687999998,70.36359448000002,261.8805,119.55555555555556,314.9020159999999,10042.38825192441,1238.0,431.4160000000001,224.0,300.0,11127.388172027338,4492.474834,102.16064288648997,438.5360000000002,182.22222222222223,538.889048,14067.180775360079,1348.0,541.3859,252.0,315.0,14719.574898839683,4789.861295,117.46898699897997,548.8501,217.9166666666667,682.5563480000001,15650.339239238585,1295.0,559.7519999999998,245.0,268.0,15574.863539241825,4548.477716999999,117.55116480122499,567.4870999999999,218.27777777777777,710.903852,15267.557563315639,1248.0,558.2028999999999,233.0,213.0,15409.334703553779,4315.341490999999,114.641122688678,565.4801999999999,223.99999999999997,707.884516,14773.353774692956,1102.0,552.3750000000001,212.0,135.0,15483.12206047833,3669.9791949999994,108.39435094382898,558.7705000000001,216.75,702.0057160000001,13743.472695883935,890.0,506.88500000000005,182.0,92.0,14325.990876664428,2836.7117020000005,97.72104143782897,513.1610000000001,190.08333333333337,650.0007519999999,11899.538841832522,656.0,431.0969000000002,137.0,77.0,12698.966778131273,2017.3299169999996,77.53673067837597,436.18010000000004,159.08333333333334,558.089212,8951.312637053621,282.0,3.542497499999998,0.7125144850698617,19.974999999999994,128.0,58.63602204734373,1348.255841775,8.885473113068773,3.462397499999998,20.632638888888888,1.9005038999999992,2015.8104978542958,8.75,-0.15940743749999936,-0.28824000184283427,9.650625000000002,48.25,-3.3785792498040728,41.867279880624835,-0.1329120119309974,-0.08227243750000114,-2.68595486111111,-0.12908989749999955,36.29875786835919,11.25,-0.5303255624999993,-0.10233725138055594,4.819375000000002,30.75,-6.793137446543561,57.944259349374825,0.5485826537745215,-0.4033280625000012,0.04789930555555699,-0.3800128224999994,142.92940564423657,19.75,-0.26295431249999957,-0.04179904145261343,4.606875000000002,36.75,7.934737105160493,98.15304363687488,1.20843529186861,-0.18345181250000087,-0.4316145833333327,-0.20116407249999968,259.3588140049303,42.0,0.7282559999999996,0.12231201548857133,-2.9649999999999985,16.0,-4.0161091832213,196.03641924,-0.08514038624006073,0.7401284999999991,1.2844444444444445,0.38550883999999963,112.10804564891153,-20.75,0.5282934374999999,0.12434697385466857,-9.665625000000002,-42.75,-3.7198176409914727,-104.841675690625,-1.4624158841646158,0.3939184374999999,3.206510416666667,0.34493593750000007,-312.3395587818939,-112.5,-1.7330391249999986,-0.23670966777763575,-13.166250000000002,-105.0,9.056055582295919,-532.63160532125,-1.2602127363740716,-1.6962866249999995,-9.608229166666662,-0.8133729649999992,-441.62390621556915,-142.5,-1.576519499999999,-0.040561048296781775,-9.845000000000002,-91.0,-13.008636432132358,-677.2517208799999,-2.655708734292379,-1.6662194999999982,-8.911249999999997,-0.7480176799999995,-814.13447634425,-70.25,0.1423923124999994,0.053887536957317364,-2.6518750000000026,-10.75,-18.85784233049538,-343.4273614918748,-3.6137051662172652,-0.015057687499998598,-1.0463020833333352,0.12569469249999948,-774.4017205546493,0.7192066283684293,0.606222848097413,0.46203567014340097,0.3318371223772915,0.2960481418390094,0.18178338990908544,0.18722670076813847,0.09567468097739452,0.1178727025459859,0.05010106914686797,0.07779307921822261,0.02613724269174536,0.05077310718518536,0.01389383363532602,0.03507699561564277,0.008182010596250705,8.0110820034659,5.673418965711324,3.5222220492109595,2.1703901242257615,0.40443670892808686,-0.5290996654887433,3.2410645177065045,0.9871711005983521,6.007457101998283,0.9937141508785634,14.548263124796849,10.937028665165709,16.004552144547052,11.686862628492717,2.007324263197544,0.7766523354736721,3.4649902823765695,2.219461608790703,4.004854985529879,1.2574850167781406,3.678487609077591,2.414936398123504,20.908575413727085,14.706459177662325,0.2592539557650707,0.6264385218458813,0.8299325247456089,0.8842453037796206,0.8842453037796206,0.8842453037796206,1.906444052876272,541.901766770341,0.0,1.0,2.0,0.0,7.0,3.0,1.0,0.0,0.0,3.8899228078661303,1.8617561078108622,0.7377443751081723,0.4377443751081733,0.4377443751081733,0.4377443751081733,302.36284821906355,876.2400955062005,41.80395042980277,21.906002387655015,40.52013667146777,,10.0,312.0,0.0,0.0,0.0,6.041840829147961,41.72622269181312,0.0,7.109797541277533,30.462311845459514,17.224504324644162,10.470530430962235,9.033333333333333,22.75,11.0,1.0,11.75,0.0,0.024561403508771937,-0.75,0.1009848484848484,0.039861111111111014,-0.061123737373737386,0.06866028708133953,0.1222969432314408,0.0,0.5391666666666669,0.8035087719298243,0.4381818181818185,0.4993055555555559,0.7348484848484848,14.918636269019114,0.17350015950507824,0.34550015950507823,14.37916769639316,4.4243801154028075,4.81633328746521,29.297803965412275,9.240713402868018,0.5917030567685592,0.15498154981549814,0.0,0.2767527675276753,0.4,0.208420967196399,-0.3522267924984678,-0.03357267311045936,-0.008805669812461695,-0.0320206174998607,0.7915790328036009,1.337750934965765,0.04705333967839002,0.03344377337414413,0.04612934258502638,-4.4177694231535884,0.9630254281266217,1.0089781119180437,1.4739072878851311,0.7619280197808238,0.609375,1.3443343072559022,0.9657979417321441,1.1674160635327144,0.9761792895550895,1.1660130804801707,1.0426976119590077,1.0727327275045209,0.9807461792028769,1.1797501541866964,1.223668329262272,1.1549648328015656,0.9741417253521127,1.1870831539486835,0.9785254749466932,1.0228487628874876,1.1398879159375939,0.9669202993532534,1.264744205878582,0.9841318395835198,0.958966565349544,1.0547280353963349,1.1427413735523835,1.0405864473448958,0.9308035714285714,1.0029073039021354,0.9576024098238751,0.9337566782960222,1.0355953806987375,0.8908677401828089,1.054661044668958,0.9293878306188561,0.9032579787234043,0.798991389549322,0.8501867980661798,1.2101063829787237,0.9584960937500001,1.0452356188987952,0.9063508682706521,0.9970636713792362,0.8051732036832859,0.8034482178317797,0.755199778858649,0.9675467969278208,1.0110302351623741,0.9373854997706234,0.9907424900357044,1.3153283709900536,1.1754523026315788,1.0355511821263566,1.0126750420105937,1.0588055219387515,0.9474457176596639,0.8168798017392106,0.9319630275007869,1.04821492191701,1.1608193752829334,1.2905455135308208,1.2609653782910188,1.3189359039224566,1.398645279255319,0.9348426615544221,1.1575392504003825,1.0114800559049693,1.2754716619385909,1.2542743320942098,1.2710655204250851,1.04776345256827,1.203034332688588,1.23097668189796,0.9598627442887518,1.0427807486631018,1.3191583806818181,1.0267875287407364,1.2007486507189158,1.1233816766522051,1.2422898111391416,1.1330514257039788,1.2827565339142666,1.161619530929111,1.0659712627797735,0.7728231356476682,0.6119423577474612,0.7733693090388963,0.8626217532467533,1.0487789231471207,1.0709908009129583,1.1757701304283732,0.8222479800916418,0.9457864003318548,0.7320483137786117,1.1724227977218122,3.5,0.012345679012345678,1.5555555555555562,1.25,1.0266666666666668,0.5763888888888888,0.3248979591836734,0.1736111111111111,0.09019904257999495,0.061250000000000006,3138.4638958970763,3665.187719563184,1783.5083384793434,1565.501546335382,11.238576506420353,0.4394558333182829,6.29971850248012,0.7839807448532607,1.0,0.4,1.4320052870212323,3.4601719870765004,4.58418371977919,4.884183719779189,4.884183719779189,4.884183719779189,0.17500000000000004,0.006172839506172839,0.05982905982905985,0.046296296296296294,0.04106666666666667,0.02506038647342995,0.017099892588614395,0.012400793650793652,0.010022115842221659,0.010208333333333335,0.40315638418658867,15.39,7.695266272189349,4.231404958677686,113.52566642868597,1.0,3.849342816669754,79.68749554237169,,63.33431236722925,62.07422283451207,61.79486248575818,63.34745294535734,87.01310137650358,62.834173724927616,63.406751444736365,78.00640003161963,0.0302715793115378,-0.0439010757860836,-0.39467233830042847,0.4713513843523919,0.3677591463414634,-0.05621416260462287,0.030295531046266526,-0.01459351166700591,-0.023182142628894575,-0.12700478019555864,-0.06626735331331535,0.017567833061832797,0.022475277195085408,-0.08434020483817764,-0.08091735777767287,0.13592695094219895,0.13534330985915494,-0.06526908808894766,0.02421250636793101,0.03478268923680022,-0.06562709147773747,0.0013079046457399157,-0.1126499824525039,0.039946021165861954,0.030784818018860575,-0.032627916656769146,-0.025786430197716346,0.10137672090112648,0.12620192307692307,0.059482147798579674,0.03200000598433879,0.05978076139725785,-0.02328968852959828,-0.00919517357873521,-0.04652648601871748,0.056554856921933606,0.06205673758865248,0.08565708232680475,0.07152604031889652,-0.06184814351272423,0.05208333333333333,-0.02853840980193188,0.06058333946653965,-0.003992489818148422,0.08906743809744543,0.025938765664793063,0.0845189969530361,0.023172657219896482,-0.030981709593131766,0.06279167228918672,0.07348148236628935,-0.2037415190040183,-0.140625,-0.026711208435467253,-0.0327414590620784,-0.06929896119821825,0.047903337134699915,0.06543562635848146,0.07641982960967689,-0.06523995847392867,-0.16976007243096425,-0.2081761405468341,-0.1413690813504977,-0.2804835832024074,-0.3490691489361702,0.06572138659416418,-0.16810737244559032,-0.06035252507757299,-0.20847522439138808,-0.19816215356874048,-0.18211809789979844,-0.09322556196365916,-0.22969052224371375,-0.20228659941955435,-0.025875740804193033,-0.2240300375469338,-0.3231534090909091,-0.10084273034903173,-0.22832587241291863,-0.1358554933888437,-0.21874221547352657,-0.19631847402706673,-0.1789041508221247,-0.18357932256277543,-0.12940959749470388,0.020880757845992044,0.03928836013680222,-0.068966077727029,-0.04362824675324675,-0.1670693438619998,-0.13232193670064268,-0.2112717480665064,-0.0022591788853459495,-0.026343384998428632,0.03435717451347715,-0.1995656876023546,7.181133519593158,13.10856498076475,4.6105395574086385,12.919869714683221,29.879050273159702,33.762804099724015,34.06520409972401,34.06520409972401,34.06520409972401,38.25566558519922,30.55714823927443,5.7946194144857746,1.9038979314390045,0.0,7.698517345924779,3270.4508082783104,2526.5592427702163,1064.9415643920938,34.0,26.0,33.0,43.0,55.0,56.0,57.0,55.0,51.0,259.1684622920001,20.0,4.532599493153256,5.351858133476067,6.208590026096629,7.0587581525186645,7.929846429742503,8.792245847467877,9.669725322073777,10.53781317228773,11.418471918151077,0.5833333333333333,0.9641,1.1360535531913005,0.5398239114145367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6460277395209582,0.9510784313725491,0.9910597232337945,0.5919470435579077,5.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,15.787319034968565,5.749511833283905,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,6.06636706846161,38.44287098837844,23.691275683687444,18.313884533577358,108.06462430466115,-182.62680820166736,-17.407165677176042,-4.565670205041684,-16.602437109242484,410.4274725237247,693.6132873045332,24.39678475262673,17.34033218261333,23.917699562225284,0.5,0.9258950312337529,0.2938869766293751,59.622565330732954,0.09491422389517491,11.330935707236506,0.07410496876624692,5.0,0.3,0.26907640642437886,0.650172630179013,0.8613764857482941,0.9177470331610262,0.9177470331610262,0.9177470331610262,2.782700000000001,,0.6785714285714287,0.8427175430432758,0.8488829422512447,0.6767661145452564,-2.636839718884606,0.7422735618115056,0.6692837795551935,-1.356968362788312,79.66810000000002,4.736862953800049,0.0,4.9839785209472085,5.733667477162185,25.807221274690605,18.97134255119644,30.462311845459514,0.0,5.749511833283905,3.713572066704308,0.0,4.976733742420574,0.0,6.453624998892692,0.0,8.040768994367578,0.0,9.692210811286753,23.333333333333332,9.778638622881047,4.447158525447216,0.0,0.0,0.0,2.053956784874444,1.855089154488956,0.0,38.564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.44214212765202,15.787319034968565,5.687386274683562,5.749511833283905,24.68037329728528,0.0,0.0,19.765380445542643,30.462311845459514,0.0,10.902924932081056,0.0,21.59295645658147,25.841109580838328,24.473872411174515,159.37499108474344,,126.59719616302993,124.05973855923011,123.51710061539757,126.6236673523415,174.85888898002338,125.59021339071718,126.74305196530902,156.4413163883304,24.473872411174515,159.37499108474344,,126.04352576755184,123.38432641896375,122.84692987151503,126.07142192302341,176.66304247189186,124.98973851607448,126.19631541339712,157.36976842602772,4.822958949604811,114.40530344075242,,93.08030175241917,91.10002817362823,90.12675529046932,93.0993689552786,127.98771559553248,92.26989004393883,93.19665791505003,115.58554197793991,1.2880985479565534,8.388157425512812,,6.6630103243699965,6.5294599241700055,6.500900032389346,6.664403544860079,9.20309942000123,6.610011231090378,6.67068694554258,8.233753494122652,2.411479474802405,79.68749554237169,,63.33431236722925,62.07422283451207,61.79486248575818,63.34745294535734,87.01310137650358,62.834173724927616,63.406751444736365,78.00640003161963,38.043137254901964,0.0,3.8363840404925362,0.0,0.0,5.546260746595342,0.0,39.64238892935178,2.7863704648526078,3.4963425925925926,5.337889581758629,0.0,0.36190948601662887,0.0,0.0,0.0,0.0,23.67788174231631,480.06925618737245,57.28021148084929,138.40687948306,183.36734879116761,195.36734879116756,195.36734879116756,195.36734879116756,449.0,110.49990849496757,38.42284064101341,51.87691061367191,60.17,60.17,1.0,8.229415801921931,5.321928094887363,3.657993947061221,4.280748545787492,,4.264696515275168,4.26454100780454,4.262081113390044,4.264691511050765,4.2471567245827995,4.264544221030625,4.264713664977139,4.25955142921216,0.19252599721374847,0.22530255504144692,,0.224457711330272,0.22444952672655472,0.224320058599476,0.22445744795004027,0.2235345644517263,0.2244496958437171,0.2244586139461652,0.2241869173269558,1.9387687814270755,2.0959817743495317,,2.0922249075561594,2.0921884429905457,2.0916114514345048,2.092223734148551,2.0881036392438426,2.092189196465508,2.092228928866334,2.0910177426024132,214.79999999999967,209.0997592338595,95.44078665089903,,96.39096244659237,96.38915508850454,96.6527422993329,96.39174285214192,97.71648720221955,96.401370063444,96.38999819216863,96.88423927409498,11.005250485992605,5.023199297415738,,5.073208549820651,5.0731134257107655,5.086986436806995,5.073249623796943,5.142973010643135,5.0737563191286315,5.073157799587823,5.099170488110262,5.984665341166146,5.200359906288723,,5.210266332840016,5.2102475823784955,5.212978464929987,5.210274429059522,5.223924184333115,5.2103742999642915,5.210256329212888,5.2153707424501246,5.337889581758629,4.447158525447216,4.57539338729319,7.534566207668661,0.8416896835894851,8.330489451175328,3.871103237591333,2.8819821586041825,1.6797277668719768,250.08153341605882,56.03065364869551,-94.69055672155798,-9.025477831798117,-2.367263918038949,-8.60823242923254,212.80340082480078,359.63300772255707,12.649540082260227,8.990825193063927,12.401138197329555,726.0,27.0,0.962215376648032,0.48356934339543994,0.0,0.0,0.13608276348795434,0.03477133042169582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1388888888888889,0.042349907478930096,0.264172927795025,0.06344780684682735,13.664925939000156,11.518234113850847,9.24071340286802,6.6367424475458305,7.697251687814244,4.726368137636221,6.178481125348569,3.1572644722540195,5.068526209477394,2.1543459733153227,4.278619357002244,1.4375483480459947,2.84329400237038,0.7780546835782571,1.9993887500916379,0.4663746039862902,2.126421056768695,0.8543566649182182,3.534198373794587,1.172995774688048,5.580914678070691,1.470152020424456,64.95657969044757,31.175390731993755,21.43544330166861,20.17447925422493,20.17447925422493,20.17447925422493,92.0,105.0,43.154652999999975,23.943346999999992,0.25,58.04,6.305555555555555,4.472222222222222,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,11.0,40.0,0.0,1.0,41.0,11.0,0.0,5.0,36.0,11.0,20.0,30.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,4.0,2.0,1.0,19.0,4.0,0.0,3.0,1.0,0.0,2.0,6.0,0.0,0.0,0.0,1.0,2.0,3.2771447329921766,6.382308308436024,3.8394523125933104,4.442651256490317,5.072043922224899,5.675468730341594,5.952431316378773,6.272228211218328,6.560544338323267,6.822444160279286 +54892,CCOC(=O)[C@H](CCc1ccccc1)N[C@@H](C)C(=O)N1Cc2ccccc2C[C@H]1C(=O)O,0,21.741935483870968,6.154029032258062,3.064516129032258,7.032258064516129,162.37298415499953,85.63414593548391,1.4305952765398384,6.216349999999999,5.044354838709677,7.697236645161288,211.1131791601017,23.578125,6.298109375000001,3.765625,6.328125,145.7012271058384,88.77333771875006,1.7783315775937507,6.4419609375,3.116319444444444,7.727070374999996,258.4987925351624,19.539823008849556,6.215088495575221,3.3893805309734515,4.893805309734513,153.72446720949236,71.91022419469026,1.5041598107552128,6.3190380530973425,3.1546214355948865,7.702849699115042,211.42976305984118,16.509677419354837,6.154980000000001,2.9741935483870967,3.6580645161290324,159.28331830194205,59.2164813032258,1.317476729161767,6.232707096774194,2.9559139784946233,7.694522838709674,180.67562503260697,15.366863905325443,6.203000000000001,2.739644970414201,3.3076923076923075,159.94342521567208,53.793783952662736,1.2392825452380178,6.273934911242603,3.1088099934253783,7.770520284023666,170.10274062705437,15.22905027932961,6.1842290502793285,2.525139664804469,3.6871508379888267,162.25558601374058,53.85221759776535,1.169387560504257,6.244283240223462,3.5058969584109243,7.762940826815642,160.79842922892453,14.71584699453552,6.148497267759563,2.420765027322404,3.4863387978142075,164.21345412722138,52.08591934972675,1.1311786932344425,6.1999896174863425,3.479204614450515,7.736379256830603,154.02331507887374,13.887005649717514,6.077282485875707,2.406779661016949,2.853107344632768,162.39670742728737,48.33353525988701,1.152736561376599,6.139607344632766,3.0397049591964844,7.681780587570623,155.61947658901798,13.575581395348838,6.03470930232558,2.3313953488372094,2.796511627906977,161.72343664260592,46.989334965116285,1.1502717821858142,6.100706395348837,2.9762596899224807,7.6404921860465125,153.7231109387712,7.497398543184181,0.1325463059313215,0.02205177717983516,0.5660770031217486,3.88449531737773,1.4026853157233445,35.60727325702392,0.2289624068301352,0.12421136836628503,1.9818548387096775,0.0842656191467221,50.19382777595706,0.19867000520291278,-0.004207999479708499,-0.012864876017784837,0.1884592872008326,1.0484683922996878,-0.12776777852405752,0.9646463750325218,-0.003176456004031379,-0.002559226229188164,-0.09657118055555552,-0.003999429630593177,0.5857273974344671,0.18401738601935622,0.01976831011206993,-0.0004651456568053986,-0.029108690247069285,0.1754532980947206,-0.0974208799258485,0.7552520315858314,-0.00951743672415922,0.016969876281160038,0.2521509341199607,0.014440068549538151,-1.9944195574703607,-0.12112382934443297,0.009537211238293496,0.004652608450393922,-0.04432882414151923,-0.43975026014568164,0.11657670011410681,-0.6238831408948998,-0.001094404239514249,0.006965790842872083,-0.04825268817204302,0.006182206867845963,-1.3472893852816146,-1.22979022098529,-0.02672217918957682,-0.004214057170206237,-0.0650271844540635,-0.7253046321324557,-0.14680144214748553,-5.781549275348041,-0.023435381648825856,-0.02485815210363946,-0.37479454306377386,-0.016481719929314322,-6.078412673118713,-0.08741476232276679,-0.0031873583732028783,-0.001515481905509821,-0.027421389497671776,0.17425400682482736,-0.13932721646879181,-0.43481610222126554,-0.013569372032704752,-0.002225145623448494,0.09470049658597149,-0.0022350630104814575,-1.851285228343913,0.4992522588605902,0.014200494703263388,0.005064596082298582,-0.004116840950057721,0.28384594826654846,0.08127764738601279,2.318744153340953,0.006075866609748904,0.012907175613972283,0.21110352155434123,0.008805520638224025,1.8785493875019474,-0.3348324779390583,-0.019059628329717703,-0.0017798931999488327,-0.015320669970663796,-0.3240797897670152,-0.019670515063949852,-1.4966297682322445,0.0011403450163387497,-0.016510830731876487,-0.26667451349654736,-0.013075225124487817,0.17808984179083143,-0.42050431962829427,-0.015283796553977184,-0.003353158121716974,-0.013188781066234313,-0.2344578080003872,-0.09305830712962251,-1.9582150398446392,-0.012735645065275941,-0.01324909342254918,-0.19137596899224804,-0.010666211794884218,-2.196665933710684,,,0.4677083333333334,1.1328125,0.515625,0.0,0.6171875,-0.1015625,1.0071001219842104,0.016035239350256192,0.024097739350256192,0.9796215798780905,0.22823737339875694,0.2530465610751461,1.986721701862301,0.48128393447390305,2.014629415847723,1.6030571188131735,0.13332823139260253,0.2782440656419471,0.0,0.41157229703454956,7.067991484838723,1348.0,381.5497999999999,190.0,436.0,10067.125017609971,5309.317048000003,88.69690714546998,385.41369999999995,312.75,477.22867199999985,13089.017107926305,1509.0,403.07900000000006,241.0,405.0,9324.878534773658,5681.493614000004,113.81322096600005,412.2855,199.44444444444443,494.53250399999973,16543.922722250394,2208.0,702.305,383.0,553.0,17370.864794672638,8125.855333999999,169.97005861533904,714.0512999999997,356.4722222222222,870.4220159999998,23891.563225762053,2559.0,954.0219000000002,461.0,567.0,24688.91433680102,9178.554601999998,204.2088930200739,966.0696000000002,458.16666666666663,1192.6510399999995,28004.72188005408,2597.0,1048.3070000000002,463.0,559.0,27030.43886144858,9091.149488000003,209.43875014522501,1060.2949999999998,525.3888888888889,1313.2179279999996,28747.36316597219,2726.0,1106.9769999999999,452.0,660.0,29043.749896459565,9639.546949999998,209.32037333026202,1117.7266999999997,627.5555555555554,1389.566408,28782.91883197749,2693.0,1125.175,443.0,638.0,30051.06210528151,9531.723240999996,207.005700861903,1134.5981000000006,636.6944444444442,1415.7574040000004,28186.266659433895,2458.0,1075.679,426.0,505.0,28744.21721462986,8555.035741,204.034371363658,1086.7104999999995,538.0277777777777,1359.6751640000002,27544.64735625618,2335.0,1037.9699999999998,401.0,481.0,27816.43110252822,8082.1656140000005,197.84674653596005,1049.3215,511.9166666666667,1314.1646560000002,26440.37508146865,464.8387096774192,8.217870967741932,1.3672101851497798,35.09677419354841,240.83870967741927,86.96648957484736,2207.650941935483,14.195669223468382,7.701104838709672,122.875,5.2244683870967705,3112.017322109338,12.714880332986418,-0.26931196670134394,-0.8233520651382296,12.061394380853287,67.10197710718002,-8.177137825539681,61.737368002081396,-0.20329318425800827,-0.1637904786680425,-6.180555555555554,-0.25596349635796334,37.486553435805895,20.793964620187253,2.233819042663902,-0.052561459219010044,-3.2892819979188292,19.826222684703428,-11.00855943162088,85.34347956919895,-1.0754703498299918,1.9175960197710842,28.493055555555557,1.631727746097811,-225.36940999415077,-18.77419354838711,1.478267741935492,0.7211543098110579,-6.87096774193548,-68.16129032258065,18.069388517686555,-96.70188683870947,-0.16963265712470857,1.079697580645173,-7.479166666666668,0.9582420645161243,-208.82985471865027,-207.83454734651403,-4.516048283038483,-0.7121756617648541,-10.98959417273673,-122.576482830385,-24.809443722925053,-977.0818275338189,-3.9605794986515694,-4.201027705515068,-63.34027777777778,-2.78541066805412,-1027.2517417570625,-15.647242455775256,-0.5705371488033152,-0.27127126108625793,-4.908428720083248,31.1914672216441,-24.939571747913735,-77.83208229760653,-2.4289175938541505,-0.39830106659728043,16.951388888888896,-0.4000762788761809,-331.3800558735604,91.36316337148801,2.5986905306972,0.9268210830606406,-0.753381893860563,51.94380853277837,14.87380947164034,424.3301800613944,1.1118835895840495,2.3620131373569277,38.63194444444444,1.6114102767949965,343.7745379128564,-59.26534859521332,-3.373554214360033,-0.3150410963909434,-2.711758584807492,-57.36212278876169,-3.481681166319124,-264.90346897710725,0.2018410678919587,-2.9224170395421383,-47.201388888888886,-2.3143148470343435,31.521901996977164,-72.32674297606661,-2.6288130072840756,-0.5767431969353195,-2.268470343392302,-40.3267429760666,-16.006028826295072,-336.81298685327795,-2.190530951227462,-2.278844068678459,-32.916666666666664,-1.8345884287200853,-377.82654059823767,0.7214753497150318,0.577848671533238,0.4529731147989676,0.3226422151340255,0.29407118973779695,0.17413633332837125,0.18795303485260773,0.09786331537651348,0.11904687008927947,0.055681965645148684,0.07659456679137923,0.030946938227367236,0.048921847624271396,0.017205065436340917,0.03175799185863546,0.009895117568827884,8.031596277936721,5.6880064199217015,3.5582020284554234,2.1878121885759603,0.458785560226201,-0.4948466467482632,3.1962628299199105,0.972560896088707,6.029068610552787,0.9878999894575279,14.54379898540461,10.948521352400611,16.01675263178735,11.69915924045295,1.994316031142943,0.7404304074973931,3.5043963677835634,2.2377496492019846,7.010462771992301,1.2482253325167492,3.7172630091957832,2.433712987777362,20.902639450860008,14.699771382458218,0.24037214750317773,0.5501386732156301,0.7504555180437302,0.8560641317150405,0.8987057279528413,0.9110956968730166,1.6104650648287633,946.3582688000238,0.0,3.0,4.0,0.0,9.0,6.0,3.0,0.0,0.0,4.466334888500976,2.548934440127099,1.3090083144527673,0.6553095239208195,0.3913655242982337,0.31467379039237287,197.37893210905213,2242.2477514300776,70.21625438876858,36.16528631338835,72.01407360649891,,15.0,787.0,30.064133063347583,19.490138947056174,25.47963972270301,12.841643245852019,16.690354475090988,4.899909730850478,13.847474399381248,54.59730361615449,5.316788604006331,4.736862953800049,14.966666666666669,36.25,16.5,0.0,19.75,0.0,0.03229166666666661,-3.25,0.14205236091631618,0.045597210113339504,-0.09645515080297667,0.03204656862745092,0.1603625154130699,0.0,0.5811827956989241,0.8447916666666662,0.4391304347826079,0.5355855855855846,0.8127450980392152,32.22720390349473,0.5131276592081981,0.7711276592081981,31.347890556098896,7.303595948760222,8.097489954404676,63.57509445959363,15.401085903164898,0.5536374845869301,0.15590200445434294,0.0,0.3273942093541202,0.4,0.3630543762902261,-1.129620674602345,-0.054456458318012185,-0.01821968830003782,-0.049113942374014986,0.6369456237097739,1.9818159265621174,0.04297854803333759,0.03196477300906641,0.05081579298877224,-4.523728623388575,0.8345300572519087,0.7301877926843149,1.6043285103092055,0.8961827895220582,0.534265754754889,1.320050507619048,0.841649464936643,1.1592351869251027,0.7194628186204954,0.6271211286311744,0.739280660026407,1.0441169010080271,0.8918880079590749,0.6686671493811727,1.0459031780451788,1.3612173021863603,0.8909682596502377,1.2172173422384427,0.8995819203965185,1.0932515106957954,0.6813096088876031,0.47355785822102586,0.6196356301164049,1.050014892025739,0.9820957668285915,0.8876120885246158,0.9021241672350578,1.272702205882352,1.1250602732386825,0.9898939337431327,0.9843353606412234,0.995748199615848,0.8987815531286358,0.8550680566038422,0.8653954284096944,1.0048216736579973,1.1690190901288966,1.3538899842720993,1.334365002352464,1.2598302079707615,1.2604128855545538,1.1260836170379775,1.1642429011640207,1.078944947734131,1.3328249350170895,1.4537010841103493,1.3726546845663448,1.0794368008256319,1.0336978898111573,1.2036063698738309,1.213513274552395,1.1166252464673014,1.021616056102376,1.0946389332492437,1.0303202566415075,1.0106930710781679,1.1790343371857646,1.1989198118479705,1.2240530895325727,0.9853765915651121,0.9616238723108955,1.0599480937165526,0.9355792767625329,1.0257352941176463,0.9916733636931873,0.9244703572065683,0.9592145869960115,0.907689672073261,1.0482846512387731,1.054142647225048,1.0679209672534267,0.906752934662403,1.0605768514488922,1.2733307148773056,1.1921687495430022,1.0555962321369219,1.1268882209519318,0.9750850557268291,1.054914142548214,0.9568739922676508,1.2509627750815215,1.3280846582741508,1.3067564175680944,0.9590679407996813,1.0593634507690075,1.1853704273488825,1.2202916316222678,0.9549178137824891,1.0933810794983776,1.0243778707103803,1.0564322303505609,1.0278893691137752,1.170620729612968,1.1478559280376215,1.214008992822274,1.01685664661169,6.0,0.21885521885521886,3.7777777777777795,1.9375,2.177777777777778,1.5069444444444442,0.796734693877551,0.5989583333333334,0.4847568657092466,0.2968750000000001,6473.594604982511,7397.343248025117,2988.703257999078,2680.224368956379,15.997732443925603,0.4454885956391776,8.870925084069878,0.8033894201917923,1.0,0.4,1.4878614218858996,3.405261870259776,4.645187995934108,5.298886786466055,5.562830786088641,5.639522519994502,0.1764705882352941,0.006839225589225589,0.08212560386473435,0.03875,0.04537037037037038,0.030138888888888892,0.016259891711786753,0.013310185185185185,0.011541830135934444,0.0078125,0.4286190839814197,26.602076124567475,13.185255198487713,7.497845446710715,187.92895479483326,1.0,4.372166210077294,198.0966637475973,,170.42680430720304,167.24009572750276,166.43044243085393,170.45961728820583,231.98643381470748,169.17336811589755,170.60828579350186,208.7699733359412,0.026498525329632094,-0.03174739160130847,-0.5833940690072311,0.3329216452205882,0.2699110969729441,-0.09108798466188371,0.027091273405560053,-0.013873264384349167,-0.020603800303055194,-0.048727676048377966,-0.047462175808966965,0.011669311215890803,0.02454416488058312,0.14914267110780763,-0.021093341049661183,-0.05142178552837052,0.045167591607025596,-0.06945312596760875,0.02121061127411237,-0.04156768290446958,0.13662095913087297,0.1272297694033576,0.17136370320136504,-0.0397343587018819,-0.016155447605829303,0.0719538064171715,0.21098564584846313,-0.07830882352941167,-0.1132065362978838,0.08310966031179266,-0.01752122765457285,-0.00477984248447465,0.05608013931809178,-0.02434723635130553,0.07336570870121528,-0.026841734232649395,-0.16402892468658764,-0.2016063669358152,-0.19109830177586343,-0.11487339018447607,-0.18671785466897672,-0.10465743135821033,-0.16236989655498457,-0.10235471391691091,-0.20012783395426115,-0.18911301460796728,-0.19559246221898144,-0.12109880721291162,-0.011659345814320462,-0.02404713093139238,-0.06872379913649887,-0.048441094314820875,0.044858853618713945,-0.09932891925723396,-0.012211440597617043,-0.05926462872471343,-0.0179141865411771,0.04778377040350138,-0.026524020509358596,-0.03688272662940208,0.06659006533865751,0.107136103141353,0.22966838640696083,-0.007272581163612991,0.07307151253258858,0.05794432042236008,0.06511995840298036,0.02653652489885174,0.10391299752781491,0.10651815533159027,0.10449719265566632,0.03742590415472908,-0.044659821138020146,-0.14379599790275102,-0.08071427465612266,-0.02706463941508805,-0.08342905919263371,-0.014023469728708217,-0.04203157476926482,0.004980490169221359,-0.1329252784913209,-0.1345580454672304,-0.15516678399670236,0.0035480426514938315,-0.05608669689976279,-0.11530910987361989,-0.15205840755470754,-0.023298563611491113,-0.06035734087553501,-0.06634296808164253,-0.05499480473300101,-0.05562330184065711,-0.10666570698649037,-0.09656406980687185,-0.1265784539755456,-0.043763666391724985,16.44131352067748,25.07569786388875,9.522476002517358,13.781984772093102,30.579307096944206,37.40660157854066,40.60944728423926,41.71934198402502,41.796647251802135,64.46814130712714,51.29782780202155,4.266503404563281,8.903810100542307,0.0,13.170313505105586,8416.394412016774,8017.750992907246,2532.9426853890864,101.0,46.0,59.0,73.0,93.0,96.0,103.0,108.0,113.0,438.2154720600008,34.0,5.081404364984463,5.916202062607435,6.778784897685177,7.637716432664798,8.508152446764088,9.37695589894852,10.252205926758403,11.126453833354597,12.005161365574338,0.629032258064516,0.9815483870967745,1.1267379285431292,0.5888741771655553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.656401294185822,0.967931688804554,1.004792895237648,0.61640870501566,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,1.0,5.0,1.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,14.743300079491233,12.083681658295921,0.0,5.907179729351506,0.0,14.905862972149976,4.794537184071822,0.0,0.0,54.59730361615449,43.37947212032425,12.965578028838586,12.648722793660879,261.6340820118095,-814.0578588836088,-39.24388855254532,-13.129965465864657,-35.393819951461246,459.0130141208616,1428.1898925464689,30.972365836223254,23.03532084752369,36.620253655037665,0.4666666666666667,0.8304120327310031,0.1541741690360644,145.19255846793828,0.10486408523289702,50.011353489306025,0.16958796726899678,8.0,0.2647058823529412,0.2498845090630251,0.5719095731391024,0.7801536519430421,0.8899415656185778,0.9342706380682291,0.9471509211338168,2.5671,,1.5357142857142858,1.799906933457422,1.3161701003068016,1.5313282524578438,-6.447834958059396,1.6159730722154224,1.5229999873188609,-2.633621646776986,119.90150000000007,24.227001900856216,0.0,10.216698334856808,0.0,57.780218161515734,6.606881964512918,71.28765809124548,0.0,0.0,4.23410650459726,0.0,5.53338948872752,0.0,7.030857476116121,0.0,8.61993026886735,0.0,10.259727401834914,38.99999999999999,17.339044817612397,0.0,0.0,0.0,0.0,0.0,2.96717646259254,0.0,60.856000000000016,0.0,37.68042610961546,0.0,0.0,0.0,0.0,0.0,-1.797368979900129,69.85775156967401,5.316788604006331,0.0,0.0,52.58463188290318,38.50687415778011,0.0,36.958650497398246,54.59730361615449,0.0,0.0,0.0,36.510198984264434,40.696880239520965,41.013251701474296,396.1933274951946,,340.757626471549,334.36769727166444,332.77862423043865,340.82352656063307,465.98781605380856,338.2457379147816,341.1213840877963,418.3629534365002,41.01325170147429,396.1933274951945,,339.3178943286918,332.6802845215481,331.54471476140094,339.38790632395387,470.42070258747447,336.7307631595795,339.6935715996849,420.1735683186595,4.893823586326047,287.61915621250773,,250.63780667888489,245.39963474498077,242.85229340757718,250.68840876173914,346.4490857024619,248.49446306159274,250.94565592627464,312.4270790028812,1.2816641156710717,12.38104148422483,,10.648675827235905,10.448990539739514,10.399332007201208,10.650735205019783,14.562119251681517,10.570179309836925,10.660043252743634,13.073842294890632,2.4469117931630238,198.0966637475973,,170.42680430720304,167.24009572750276,166.43044243085393,170.45961728820583,231.98643381470748,169.17336811589755,170.60828579350186,208.7699733359412,60.01176470588235,0.0,3.4026460934848384,0.0,0.0,0.0,9.726868965488125,62.29715950473417,1.8459987896972783,3.0936400069286973,5.203945121653906,0.0,-2.352995537210906,1.3906181500377928,0.0,0.0,0.0,38.21733971097092,598.434019981226,92.24740815692577,211.12623595610611,288.0016557479147,328.53098076089543,344.89550873749573,349.65039623965913,858.0,142.68303722934183,122.213076151445,67.67801114014316,95.94000000000001,95.94000000000001,0.875,7.8641557517841685,6.087462841250339,4.20018482031483,5.571090563016757,,5.579505297869149,5.5779462254477945,5.574866722600014,5.579513541876894,5.579978486419607,5.578779385957594,5.579604062292121,5.587300839777435,0.13125577563483845,0.17409658009427365,,0.1743595405584109,0.17431081954524358,0.17421458508125043,0.17435979818365294,0.17437432770061273,0.1743368558111748,0.17436262694662877,0.17460315124304485,2.5982793389636836,2.880741636863146,,2.8822509259728473,2.881971458492618,2.8814192206060167,2.8822524035234927,2.882335730711111,2.8821208142337857,2.8822686271028903,2.883647125222402,341.1400000000012,1005.4876393884135,206.54241317371657,,204.74798032601444,204.91901383029403,205.53565180247747,204.74788813880548,205.23903285159903,204.8406463572391,204.735826544284,204.1430895576882,31.421488730887923,6.454450411678643,,6.398374385187951,6.403719182196689,6.422989118827421,6.398371504337671,6.41371977661247,6.401270198663722,6.397994579508875,6.379471548677756,8.076378725942742,6.493656591788743,,6.484930668392599,6.485765656403137,6.488770316784566,6.484930218145278,6.48732612358808,6.485383151819965,6.484871306915881,6.481971977170712,5.203945121653906,39.07104425965325,12.820508972416821,2.96717646259254,-1.797368979900129,14.986049280401488,1.3730257779722896,3.875619105209827,0.0,424.3032381241654,188.54584145114762,-586.6484320884524,-28.28099432634596,-9.46207148529762,-25.506453569063147,330.78639571330365,1029.2208987896443,22.320145500233036,16.600337077252327,26.39027945614473,3064.0,50.0,1.9734776160620806,0.9044708789495319,0.0,0.0,0.6074729661943941,0.155487427968056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24095096150485462,0.09212765395115212,0.33273736388825814,0.13150683149063666,23.087211190881018,18.491157489063617,15.4010859031649,10.969835314556867,13.52727472793866,8.010271333105077,11.089229056303855,5.7739356072142956,8.690421516517402,4.064783492095854,7.123294711598269,2.878065255145153,4.696497371930054,1.651686281888728,3.2710731614394524,1.019197109589272,4.836445890902403,1.9046894664227345,6.885626938858411,2.5360252788813753,10.895158426299716,3.3612007135238082,108.41164089333583,59.21361421512006,36.99464532587889,27.209746157619822,24.148474932288554,23.802337587839673,160.0,185.0,67.96378999999999,36.71621000000001,0.3548387096774194,164.07,11.11111111111111,7.25,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,12.0,12.0,62.0,0.0,1.0,64.0,12.0,3.0,9.0,55.0,15.0,34.0,49.0,0.0,0.0,0.0,25.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,5.0,2.0,1.0,32.0,7.0,0.0,2.0,5.0,0.0,3.0,9.0,0.0,0.0,0.0,0.0,2.0,3.784189633918261,6.139210833949745,4.2626798770413155,4.686750172980514,5.07829394257007,5.540282672102834,5.5321535474009895,5.7494925032492326,5.990526607380006,6.235451850226782 +54840,CNCC[C@@H](Oc1ccccc1C)c1ccccc1,0,18.65,5.739122500000001,2.775,5.0,160.88665236629322,73.14978627500001,1.465034375045725,5.8314425,2.452777777777778,7.320746699999999,207.80627282435452,21.536585365853657,6.08790243902439,3.3658536585365852,5.048780487804878,144.45866076571457,80.12904595121947,1.8043765487804888,6.243317073170733,2.7560975609756095,7.533877073170728,253.79143162722016,17.014285714285716,5.976642857142856,3.0714285714285716,3.7857142857142856,153.03498408159345,61.31924235714283,1.5035895190684567,6.093257142857143,2.4722222222222228,7.499661314285715,204.63737132120067,14.382022471910112,5.864078651685392,2.730337078651685,2.8764044943820224,156.44262910007225,50.66601165168537,1.3123914332054156,5.96223595505618,2.324906367041199,7.443031235955053,173.53228694045592,12.838709677419354,5.899075268817203,2.5376344086021505,2.4516129032258065,159.67301814200945,43.937644537634405,1.2212209416755806,5.977506451612904,2.2709080047789723,7.5058538494623654,158.34146546709607,13.119565217391305,5.727119565217391,2.5543478260869565,2.358695652173913,157.3763256608829,45.80791908695652,1.295644189842685,5.825538043478262,2.139492753623188,7.324804347826087,166.98362169988692,12.571428571428571,5.709061224489795,2.3979591836734695,2.0,157.5343401392252,43.16592106122449,1.3034340684763062,5.808632653061226,2.180272108843538,7.301559836734694,165.49074655451275,10.772277227722773,5.584475247524752,2.0594059405940595,1.386138613861386,158.19248223731708,35.45185832673267,1.2273910403121484,5.684054455445544,2.118811881188119,7.189497465346532,148.88980410030172,7.427083333333333,5.4307187500000005,1.7083333333333333,0.6354166666666666,165.13840397298972,22.205319812499997,1.0105091606220309,5.502630208333333,1.8663194444444446,7.101543083333333,113.59935768787146,6.7475,0.06638943749999995,0.011700017604572652,0.44937499999999997,2.8975,1.404765225312093,32.394011074375,0.23877419730171937,0.06784193749999994,0.3260416666666667,0.03587579749999999,53.27552990849209,0.2854268292682921,0.002342391768292652,-0.003884410890716432,0.1866006097560976,0.8915243902439023,-0.06483946937506149,1.3318078085518301,-0.00588740919892664,0.0031676356707317182,-0.01977472899729003,0.00043683176829266966,0.2959234560580771,-0.21107142857142874,-0.0048670803571428745,-0.0015856757174503168,-0.005803571428571379,0.046785714285714194,0.0858439631880398,-1.0084725197321416,-0.004870999135728999,-0.004219151785714276,-0.01909722222222225,-0.002637344642857153,-0.7417602262239535,-0.03626404494382023,-0.0002247183988764188,0.0005718331352776717,-0.015948033707865145,-0.12053370786516847,-0.0891308643686857,-0.22067683083567347,-0.017934056701134248,0.0004656186797752846,0.013830368289637934,-0.0009046907584269746,-2.2730980983828983,-0.6700806451612903,-0.006825996639784957,0.00046653188312612763,-0.023299731182795685,-0.3415860215053763,0.045163976091760163,-3.1454099181922044,0.002571590877041104,-0.008111856854838692,-0.0505339008363202,-0.0028553641666666752,-2.06848884834145,0.12206521739130435,-0.0017399538043478308,-0.0004593735574398363,-0.059701086956521716,-0.1252173913043478,-0.04231628833609974,0.610638910679348,0.005412432059940685,-0.0012648722826086943,0.0127566425120773,-0.001631924673913045,1.1330183370491438,-0.5209693877551022,-0.0073453558673469395,-0.00027386782860767625,-0.1003954081632653,-0.4694387755102042,-0.059185002899548624,-2.4447813799872447,-0.0027861874724392673,-0.007710917091836725,-0.013428287981859424,-0.003642073010204081,-2.14745890428243,-1.0311633663366335,-0.0028095860148514753,0.00010679089046395405,-0.0842759900990099,-0.4450247524752476,-0.2918972489752588,-5.007214571404702,-0.046291468224055006,-0.004160180074257418,-0.016346947194719474,-0.0005031658168316776,-10.032601049561073,-0.5797916666666664,-0.0036904531249999806,-0.0006695151909787512,-0.01682291666666671,-0.2678124999999999,-0.015263126155994969,-2.7891089663020843,-0.015590154404095691,-0.004290166666666671,-0.0274884259259259,-0.0010407297916666571,-3.9139079328831037,,,0.4859649122807018,1.236842105263158,0.6578947368421053,0.02631578947368421,0.5789473684210527,0.07894736842105263,0.7305116064285844,0.0055448322149059875,0.014597463793853354,0.7818578329402033,0.25639489107772506,0.23354520104279505,1.5123694393687876,0.4899400921205201,2.01651589611363,1.8095088194554991,0.09822499617991369,0.1087820804782174,0.0,0.2070070766581311,6.379057857299999,746.0,229.56490000000002,111.0,200.0,6435.466094651729,2925.9914510000003,58.601375001829005,233.2577,98.11111111111111,292.829868,8312.250912974181,883.0,249.60399999999998,138.0,207.0,5922.805091394297,3285.290883999998,73.97943850000004,255.97600000000003,113.0,308.8889599999998,10405.448696716026,1191.0,418.36499999999995,215.0,265.0,10712.448885711541,4292.346964999998,105.25126633479198,426.528,173.0555555555556,524.9762920000001,14324.615992484047,1280.0,521.9029999999999,243.0,256.0,13923.39398990643,4509.2750369999985,116.802837555282,530.639,206.9166666666667,662.4297799999997,15444.373537700576,1194.0,548.6139999999999,236.0,228.0,14849.590687206879,4086.200942,113.573547575829,555.9081000000001,211.19444444444443,698.044408,14725.756288439936,1207.0,526.895,235.0,217.0,14478.621960801227,4214.3285559999995,119.199265465527,535.9495000000001,196.83333333333331,673.8820000000001,15362.493196389596,1232.0,559.4879999999999,235.0,196.0,15438.365333644071,4230.260264,127.736538710678,569.2460000000001,213.66666666666674,715.552864,16218.09316234225,1088.0,564.0319999999999,208.0,140.0,15977.440705969026,3580.6376909999994,123.96649507152698,574.0894999999999,214.00000000000003,726.1392439999997,15037.870214130475,713.0,521.349,164.0,61.0,15853.286781407014,2131.710702,97.00887941971497,528.2524999999999,179.16666666666669,681.7481359999999,10905.53833803566,269.9,2.6555774999999984,0.46800070418290607,17.974999999999998,115.9,56.19060901248372,1295.760442975,9.550967892068774,2.7136774999999975,13.041666666666668,1.4350318999999996,2131.0211963396837,11.702499999999976,0.09603806249999873,-0.15926084651937372,7.650625000000002,36.552499999999995,-2.658418244377521,54.604120150625036,-0.24138377715599224,0.12987306250000044,-0.8107638888888912,0.017910102499999456,12.13286169838116,-14.775000000000013,-0.3406956250000012,-0.11099730022152217,-0.40624999999999656,3.2749999999999937,6.009077423162786,-70.59307638124992,-0.34096993950102994,-0.2953406249999993,-1.3368055555555576,-0.1846141250000007,-51.92321583567675,-3.227500000000001,-0.019999937500001272,0.05089314903971277,-1.4193749999999978,-10.727499999999994,-7.932646928813027,-19.640237944374938,-1.5961310464009482,0.04144006250000033,1.2309027777777761,-0.08051747750000074,-202.30573075607796,-62.317499999999995,-0.634817687500001,0.04338746513072987,-2.1668749999999988,-31.767499999999995,4.2002497765336955,-292.523122391875,0.23915795156482267,-0.7544026874999984,-4.699652777777779,-0.2655488675000008,-192.36946289575485,11.23,-0.16007575000000043,-0.04226236728446494,-5.492499999999998,-11.519999999999998,-3.893098526921176,56.17877978250001,0.497943749514543,-0.11636824999999987,1.1736111111111116,-0.15013707000000015,104.23768700852123,-51.05500000000001,-0.719844875,-0.026839047203552274,-9.83875,-46.00500000000001,-5.800130284155765,-239.58857523875,-0.2730463722990482,-0.755669874999999,-1.3159722222222237,-0.35692315499999994,-210.45097261967817,-104.1475,-0.283768187499999,0.01078587993685936,-8.511875,-44.947500000000005,-29.481622146501138,-505.7286717118749,-4.675438290629556,-0.42017818749999924,-1.651041666666667,-0.050819747499999436,-1013.2927060056684,-55.65999999999997,-0.35428349999999814,-0.06427345833396012,-1.6150000000000042,-25.70999999999999,-1.465260110975517,-267.7544607650001,-1.4966548227931864,-0.41185600000000044,-2.638888888888886,-0.09991005999999909,-375.73516155677794,0.7106204859044013,0.6103139234070115,0.4654430875144942,0.33641685464959903,0.3023168450911788,0.1869960873920637,0.19805104989384123,0.10292593805247864,0.12837768593000512,0.0561803037975045,0.0861022686426078,0.031362458209271214,0.0566071124547643,0.017950304128711576,0.03848905438444777,0.009880154693756037,8.010077670782678,5.692825057704307,3.5204535507736523,2.192142779395088,0.3607628089639525,-0.5181665614386608,3.1781372203507994,0.9878184339944771,6.008388324131478,0.9950260845409825,14.540850649735656,10.953240548521403,16.004032054256317,11.704215726109396,1.9899129135318314,0.7786771545700824,3.4630952344078505,2.241993256831855,3.510178925587637,1.2525006520093713,3.6766154257615344,2.438019627489193,20.897855225995507,14.7068182010206,0.2302222134786609,0.5210319298860369,0.7076508608565271,0.8270536002913652,0.888307641039702,0.8973092073725367,1.873880805112235,495.62506844693434,0.0,0.0,2.0,0.0,10.0,2.0,2.0,0.0,0.0,4.043138354490244,2.427809945774298,1.3912185122936145,0.7279853869690927,0.3877443751081735,0.3377443751081728,161.31798654771742,693.3788831048153,29.17120250583031,17.334472077620383,33.81517565372883,,9.0,283.0,0.0,0.0,6.103966387748303,0.0,18.71508986212249,11.126902983393991,0.0,31.313140256523628,42.572361146005,4.736862953800049,9.233333333333334,23.5,12.5,0.5,11.0,0.0,0.014035087719298196,1.5,0.08098484848484838,0.050576923076922964,-0.030407925407925418,0.023070175438596463,0.0757511520737324,0.0,0.5191666666666669,0.7614035087719295,0.4381818181818185,0.4685897435897439,0.7383333333333331,13.879720522143103,0.10535181208321376,0.27735181208321374,14.855298825863862,4.871502930476776,4.437358819813106,28.735019348006965,9.308861750289882,0.6382488479262676,0.10830324909747291,0.0,0.21660649819494582,0.29411764705882354,0.34089683278344346,-0.4662508164197069,-0.0214072718075987,-0.011656270410492671,-0.02914067602623168,0.6591031672165565,0.9014674243534337,0.03613411969520547,0.022536685608835847,0.03756114268139307,-4.980788146619632,0.9621449678742805,0.932511785882043,1.3872985565286102,0.7937854065606025,0.6935120688566678,1.208413282905559,0.9653691747434632,1.1190786106394868,0.9148776620763773,1.034286604846879,0.9568525288107005,1.0537701816276335,1.0538029958185573,1.3206344544104411,1.4628087582572709,1.301808066759388,1.1440897325280412,1.0252628979105778,1.0513386855295868,1.0352581882293,1.2597359645194182,1.1498858968507528,1.392558291859973,1.0101322973684133,1.0301568204620106,1.369492632101575,1.421031900602915,1.267678267256333,1.2193289449447897,1.0526689205943147,1.0272692563501904,1.0676144541825654,1.2949979286680284,1.1671393186631727,1.5616423626133835,1.0192058495788658,1.1583143099594833,1.822075576113221,1.756357876668759,1.1664946834761543,1.3713156503103343,0.9246352714583609,1.14726558926909,0.9502176175070478,1.7169011900022233,1.5925658730976673,2.0963383372152036,0.9825058362248144,0.9675080947855085,1.0715005370362207,1.1195367075470277,1.3206748503356112,1.0808136699553588,1.0087203967777387,0.9661486870502579,0.9724171688725137,1.0526758710594597,0.9525628559522155,1.1424382758078184,0.9655156393233697,1.0483474605106957,1.0275304466519535,0.9167807984684038,1.2398172064375124,1.1519871106337272,1.048540951851808,1.0475756580734668,1.0009133669218584,1.0380577948679062,0.9578144356784246,0.9886273295402289,1.026151400221831,1.0815887072219637,0.6259974161798502,0.534706443831006,0.9452071771850342,0.9461895283574948,1.2082404605285222,1.0880862720345732,1.1769437149816753,0.706999382510148,0.807231202353462,0.4329666610874848,1.1784968365352988,1.0099805483512412,0.6820073741022432,0.6163719207115322,0.6893254520166898,0.8640261000862813,0.9470444550270164,1.0135865102263466,0.994041980354324,0.7474900296737542,0.8687433439829605,0.48725532686764644,1.0254648207201609,2.5,0.0,1.7777777777777786,0.8125,0.6933333333333335,0.46527777777777773,0.24489795918367346,0.1892361111111111,0.10582010582010581,0.015625,3097.4584220599795,3638.319213764757,1743.6898084840013,1529.0842299886385,10.524236318159765,0.4385690877062351,5.90863159729961,0.7811630569368379,1.0,0.29411764705882354,1.278789740397119,2.8941181491130648,3.930709582593748,4.59394270791827,4.934183719779189,4.98418371977919,0.12500000000000003,0.0,0.07111111111111114,0.0325,0.03151515151515152,0.019386574074074073,0.010204081632653059,0.009959795321637425,0.010582010582010581,0.0078125,0.3180712242366378,15.39,8.3232,4.795005202913631,114.97661531065897,1.0,3.8445393164148243,79.37736877708093,,63.124396877374004,62.20667168491551,63.90241265724358,63.13966487459962,91.20622456275625,62.84580866536834,63.16857111090282,77.72955248783984,0.04230112327058794,0.03528259699884719,-0.332000431281258,0.4152447505003563,0.3076874513352553,-0.0461568012979936,0.04111277870141081,-0.024656806579009052,0.046691409288417224,-0.060650925998078045,0.012176224606370625,0.00555458493920878,-0.031281426983538904,-0.07331106483833182,-0.1355276351747194,-0.012914762567057314,0.01614692468877108,0.06110911748186824,-0.03113144949591886,-0.0204000230794365,-0.0621909093577152,-0.05857294994675195,-0.07351319905452008,-0.013923094289217335,-0.005374441636727712,-0.0033848516772930774,0.048874553407012425,-0.0354893656920504,-0.041599208926719054,-0.06344893991014315,-0.006812272500895635,-0.07510885557903249,0.006863286883209741,0.04241902095224414,-0.02521730028236933,-0.04266683226402911,-0.09930798742664547,-0.10281750978512147,0.039874459927632555,-0.051849193174510574,-0.11788991251264065,0.032150551051494176,-0.09709850104608854,0.010769969729147894,-0.11956994675806096,-0.1549921559197041,-0.07959026323154701,-0.03882624634413507,0.01809043607133077,-0.0262082926120263,-0.039262638139988947,-0.1328536010159037,-0.04321566567880856,-0.03012338828838708,0.018850364324360824,0.022667575144651998,-0.01864440092986282,0.03912580450988564,-0.04548817831612093,0.021267143452073693,-0.07720924605485027,-0.11064042932050665,-0.023407471498217407,-0.22341120036331638,-0.1620151080276805,-0.042131597389449646,-0.07547016559246557,-0.011668712549030543,-0.11366003649050754,-0.0411858033948404,-0.10151894212815986,-0.04030854142550962,-0.15282154373273563,-0.04231977435946007,0.009127412801688228,-0.1875404508461973,-0.15358921569464973,-0.2077907708104098,-0.1545722312654766,-0.19387131753419853,-0.061321657776319,-0.05013760161958688,-0.014025216215240308,-0.18831536855275618,-0.08592688650117324,-0.0555879559154268,-0.05722343449441379,-0.03743625405656014,-0.09242881794650556,-0.01086525056356232,-0.0860995249985694,-0.06529245865036117,-0.0632376790044753,-0.0843095491657791,-0.029009244788681214,-0.073465396582742,14.464811249731799,14.514054337020532,2.94168275343288,10.7857382466692,23.130235502677102,28.829301892065622,32.69136273589845,33.58447567585426,33.63487567585425,38.313802026158974,34.380667569654484,1.86627492741836,2.0668595290861305,0.0,3.9331344565044906,2629.496217325626,1809.9387425928055,1268.3658925203222,27.0,25.0,31.0,37.0,45.0,40.0,40.0,38.0,34.0,255.162314292,20.0,4.51085950651685,5.313205979041787,6.137727054086234,6.9650803456014065,7.80016307039296,8.636397438894713,9.47554674766278,10.315100391230526,11.155836149477175,0.575,0.9526999999999999,1.1215166403204175,0.5315148613770712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6630936077844313,0.9414705882352943,0.9829024034959941,0.604048865255445,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,10.05365155780638,11.853478221032208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.53093654769288,37.70943564013599,6.4208216229260096,0.0,172.8211689534373,-236.37066516935306,-10.852637461267877,-5.909266629233826,-14.773166573084566,334.13915550115473,457.0082179354622,18.31856504456243,11.425205448386556,19.04200908064426,0.4444444444444444,0.9819815697145456,0.35490971323489334,0.0,0.09134656839337797,0.0,0.018018430285454367,5.0,0.3,0.2402869256399046,0.54381008114209,0.7385875029709399,0.8632102174269417,0.9271421243964816,0.936537215631937,3.7246200000000034,,0.3928571428571429,0.4713820381572824,0.39838377133594904,0.3917657575808813,-1.60047608252097,0.419905140758874,0.3887577933310232,-0.7183191063014545,79.53370000000005,4.736862953800049,0.0,5.316788604006331,0.0,19.448525210364934,13.592428388589765,65.72420659954848,0.0,5.749511833283905,3.713572066704308,0.0,4.948759890378168,0.0,6.395261598115449,0.0,7.936302693201959,0.0,9.523032079931992,22.999999999999996,18.560825459813557,0.0,0.0,0.0,0.0,0.0,3.3623592214663653,0.0,38.108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.8606656128167,10.05365155780638,0.0,5.749511833283905,13.592428388589765,0.0,6.923737199690624,23.651690994068304,54.59730361615449,0.0,0.0,0.0,21.260594455082845,26.52374431137725,24.703963691795284,158.75473755416186,,126.20744037128937,124.36372420791974,127.76289018066234,126.23809124840125,183.25480495841828,125.64741678960416,126.29622034882343,155.8371676632067,24.703963691795284,158.75473755416186,,125.85593661189093,123.94196133167378,127.40644154315127,125.88756399161844,184.01292520803355,125.27171218997786,125.94838442847471,156.17742408198114,4.6409212742223005,111.10605965895678,,87.40693618917588,85.90713566666494,89.37275550931075,87.43399006108385,137.963359308812,86.98220016731406,87.47612088425029,112.86806811478014,1.3002086153576464,8.355512502850624,,6.6424968616468085,6.545459168837882,6.724362641087492,6.644110065705329,9.644989734653594,6.613021936294956,6.647169492043338,8.201956192800353,2.3204606371111507,79.37736877708093,,63.124396877374004,62.20667168491551,63.90241265724358,63.13966487459962,91.20622456275625,62.84580866536834,63.16857111090282,77.72955248783984,37.65882352941177,0.0,4.046902636054422,0.0,0.0,0.0,0.0,39.316096139839765,1.889176351095994,3.188328924162257,6.1933796296296295,0.0,0.09236111111111067,0.0,0.0,0.0,0.0,24.161954610217798,497.82569519091567,51.15158961588476,115.7647259645226,157.22838330374992,183.7577083167308,197.36734879116756,199.3673487911676,356.0,109.30991668290443,9.134629263676393,51.51692832833188,21.259999999999998,21.259999999999998,0.8,7.4469679021920125,5.321928094887363,3.926627744872071,4.289458197598568,,4.2868390619797285,4.286988314959456,4.292168227004059,4.28685341180367,4.299571907188052,4.287145025427854,4.286805200276619,4.291036637998557,0.20666461815116163,0.2257609577683457,,0.22562310852524886,0.22563096394523452,0.2259035908949505,0.22562386377914054,0.22629325827305538,0.2256392118646239,0.22562132633034834,0.22584403357887142,2.0096348635068013,2.09801431687046,,2.097403532141109,2.0974383480927674,2.0986459056536324,2.0974068795492378,2.1003693474479426,2.0974749023338073,2.0973956331189254,2.098382230481047,218.71999999999957,117.5491091427711,94.46776467138034,,94.65882660661921,94.68465994152328,94.26454657787708,94.65726516453654,93.08505866352525,94.64900603302243,94.6593842686724,93.91259854877549,6.186795218040584,4.971987614283176,,4.9820435056115375,4.983403154817014,4.961291925151426,4.9819613244492915,4.89921361386975,4.98152663331697,4.982072856245916,4.942768344672395,5.408710082591016,5.190112547890709,,5.192133014700217,5.192405887409338,5.187959040940097,5.192116519091544,5.175367570610648,5.192029262272558,5.192138905967101,5.1842184332351575,6.1933796296296295,0.0,3.188328924162257,2.397122071050643,0.9652371504157221,18.560825459813557,1.0455829554043836,3.0147812736205593,1.9680758692365836,260.043523720592,87.61347588525645,-119.83054910580297,-5.501856608552424,-2.9957637276450737,-7.489409319112686,169.3952946858488,231.68503444297684,9.286785678533919,5.792125861074422,9.653543101790703,728.0,25.0,0.7357022603955158,0.3828215105945564,0.0,0.0,0.20118446353109126,0.06179846864976636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.05985279273275698,0.20118446353109126,0.057636526586959155,13.501789232183626,11.595964544733219,9.308861750289884,6.728337092991981,7.55792112727947,4.674902184801592,6.139582546709078,3.1907040796268378,4.749974379410189,2.0786712405076666,3.8746020889173507,1.4113106194172047,2.264284498190572,0.7180121651484631,1.5395621753779107,0.3952061877502415,1.919776928176363,0.8018333490318814,2.7704812391149267,0.9831285956076921,4.095913294833508,1.2183754323916698,65.75874944074505,45.65035907052601,30.99169484016908,21.94862386134148,19.74228644473619,19.576190039991825,90.0,101.0,44.294652999999975,23.373346999999995,0.35,58.02,5.694444444444445,4.472222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,40.0,0.0,1.0,41.0,12.0,0.0,6.0,35.0,12.0,20.0,29.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,2.0,1.0,0.0,19.0,2.0,0.0,1.0,1.0,0.0,2.0,6.0,0.0,0.0,0.0,0.0,2.0,3.295836866004329,5.908167853041822,3.784189633918261,4.269697449699962,4.727387818712341,5.202632116413628,5.030029341202891,5.242573393091961,5.483629239553239,5.757520694443002 +9931156,OCC(CO)n1cnc(-c2ccc(F)cc2)c1-c1ccnc(Oc2ccccc2)n1,0,26.122448979591837,6.5452979591836735,3.5714285714285716,9.63265306122449,163.42406716180065,104.2192530846892,1.5690470651455306,6.598420408163265,5.550453514739228,7.967425714285714,238.9272655537731,27.423076923076923,6.576442307692307,4.25,8.903846153846153,147.40440066906925,105.57848555452307,1.8424892161923077,6.712663461538461,3.6923076923076925,7.947460307692307,279.52325257405084,24.523809523809526,6.600128571428572,3.9761904761904763,7.940476190476191,153.9922209584809,92.9137546746476,1.6512084755202143,6.702516666666666,3.693452380952381,7.99627157142857,246.0725872280487,20.64814814814815,6.421795370370369,3.5,6.388888888888889,159.9072762221809,77.08687518075554,1.431599382025324,6.501604629629629,3.372942386831276,7.886812629629629,208.8038621643382,20.83783783783784,6.522863963963965,3.3963963963963963,6.342342342342342,161.03489621467824,77.38710436654414,1.3983390784417744,6.593952252252253,3.740740740740741,7.986966810810811,205.7660266850777,20.93859649122807,6.51713947368421,3.412280701754386,6.368421052631579,161.77055078206746,77.73484450732629,1.4333222708262106,6.587828070175438,3.5706627680311893,7.970617017543859,209.85430783139122,20.964912280701753,6.449665789473684,3.3157894736842106,6.192982456140351,158.48697331551705,77.69048629348772,1.4789907909117808,6.535369298245614,3.653996101364523,7.886070561403509,213.26294017495138,18.365853658536587,6.299422764227642,2.894308943089431,4.967479674796748,158.40547124413158,66.9696770430309,1.3419295889584228,6.382891869918699,3.450316169828365,7.797363284552845,190.1617351393478,16.504065040650406,6.400317073170732,2.6016260162601625,4.569105691056911,165.47131023073558,59.25359124974308,1.1688174988567153,6.44239512195122,3.789521228545619,7.940365593495935,164.36530851867946,7.4035818408996255,0.17430987088713026,0.02333275271866269,0.5622657226155768,4.21990837151187,2.025001346525875,35.424956698253794,0.22666156266635976,0.15718359017076214,1.9093664676755053,0.10478081466055808,47.18362480757268,0.1309550507801229,-0.014214187998590328,-0.013176121125907157,0.1869493480280653,0.7153349565886011,-0.31864590868424447,0.6777671212613802,-0.005057421039859484,-0.010786847627591052,-0.2380992428368522,-0.010724469291641298,0.4979008115452585,-0.43467999444675876,-0.0017614743856726404,0.0011097269772420298,0.046577814799389175,0.14185061779813973,-0.05313181435155928,-2.054050541055851,-0.009043032067274595,-0.0028750867694016086,-0.12395587486695359,-0.0010722004720255356,-3.035399506311822,0.3881793080043807,-0.004544130146389622,0.002060336015483541,0.0201227883443627,0.1474385672636402,-0.020107319672813977,1.817290846109032,0.010066325800799443,-0.0028653550989556817,-0.08268888306141305,-0.0038514835947984615,2.9896558692451207,-0.1616255989433834,-0.018076169839143594,-0.0020204474615959016,-0.0018685907898735737,-0.2967607340785183,-0.18821819491678535,-0.7894297657010535,0.0012894959794202574,-0.015179968181425894,-0.044537352846390744,-0.010800995576167576,0.42120106787793005,-0.34396852188781013,-0.014579204936539593,-0.0009166788231404242,-0.07605018376845901,-0.504548543370087,0.12381616720518111,-1.5272350937008397,0.01839775467291511,-0.013373779930876739,-0.12519373425465186,-0.00784691562726056,2.2132054611124596,-0.6971729615584152,0.007618432012977049,0.0021364708021421428,-0.12689157295571288,-0.37386469088172325,0.07092619798318378,-3.3954080074161572,-0.029657720422051056,0.004963151683874423,0.09762521788760858,0.006043218995009389,-6.661488164797968,-0.5174029791110073,-0.0031466719490185337,-0.002602953658417782,-0.07628596485881559,-0.2121101302641515,-0.31754064258668663,-2.4819515066711824,-0.05307204656575523,-0.002056744310466851,-0.044817124903166305,-0.00386535157776401,-8.377370889522782,-0.05763858554870411,0.005403187018958903,0.0045415788602721635,-0.0022856330187625206,-0.13761203834445673,0.05810072522259234,-0.2072228664738321,0.010356901849174755,0.0037985900183866517,0.06168509658163358,0.0046341865008820895,0.6467621401575441,,,0.4628571428571429,1.4333333333333333,0.7666666666666667,0.03333333333333333,0.6666666666666666,0.1,0.7168824467300962,0.007467013890729924,0.01893368055739659,1.150134846394247,0.29368318016615996,0.1959902580222133,1.8670172931243427,0.4896734381883733,2.057071023232366,1.531390197517988,0.2826320536663329,0.18427372620145135,0.05877504584659359,0.5256808257143779,8.288655483428583,1280.0,320.7196,175.0,472.0,8007.779290928232,5106.743401149771,76.883306192131,323.32259999999997,271.9722222222222,390.40385999999995,11707.436012134882,1426.0,341.97499999999997,221.0,463.0,7665.0288347916,5490.081248835199,95.809439242,349.0585,192.0,413.26793599999996,14535.209133850643,2060.0,554.4108,334.0,667.0,12935.346560512397,7804.7553926703995,138.701511943698,563.0114,310.25,671.6868119999999,20670.09732715609,2230.0,693.5538999999999,378.0,690.0,17269.98583199554,8325.382519521598,154.612733258735,702.1732999999999,364.2777777777778,851.775764,22550.817113748526,2313.0,724.0379,377.0,704.0,17874.873479829286,8589.9685846864,155.21563770703696,731.9287,415.22222222222223,886.553316,22840.028962043623,2387.0,742.9539,389.0,726.0,18441.84278915569,8861.772273835197,163.398738874188,751.0124,407.0555555555556,908.6503399999999,23923.3910927786,2390.0,735.2619,378.0,706.0,18067.514957968942,8856.7154374576,168.60495016394302,745.0321,416.5555555555556,899.012044,24311.975179944457,2259.0,774.829,356.0,611.0,19483.872963028185,8237.2702762928,165.057339441886,785.0957,424.3888888888889,959.0756839999999,23389.89342213978,2030.0,787.239,320.0,562.0,20352.97115838048,7288.191723718399,143.76455235937598,792.4146000000001,466.11111111111114,976.664968,20216.932947797573,362.7755102040816,8.541183673469384,1.1433048832144719,27.551020408163264,206.77551020408163,99.22506597976789,1735.822878214436,11.106416570651628,7.701995918367345,93.55895691609976,5.134259918367346,2311.997615571061,6.8096626405663905,-0.739137775926697,-0.6851582985471721,9.721366097459395,37.19741774260726,-16.569587251580714,35.24389030559177,-0.2629858940726932,-0.5609160766347348,-12.381160627516314,-0.5576724031653475,25.890842200353443,-36.513119533527735,-0.14796384839650178,0.09321706608833051,3.912536443148691,11.915451895043738,-4.46307240553098,-172.54024544869148,-0.759614693651066,-0.2415072886297351,-10.412293488824101,-0.09006483965014499,-254.97355853019306,41.92336526447312,-0.49076605581007915,0.22251628967222242,2.1732611411911718,15.923365264473142,-2.1715905246639093,196.26741137977547,1.0871631864863398,-0.3094583506872136,-8.930399370632609,-0.41596022823823386,322.88283387847304,-17.94044148271556,-2.006454852144939,-0.22426966823714506,-0.2074135776759667,-32.94044148271553,-20.892219635763173,-87.62670399281694,0.14313405371564858,-1.6849764681382742,-4.943646165949373,-1.198910508954601,46.75331853445024,-39.212411495210354,-1.6620293627655136,-0.10450138583800836,-8.669720949604327,-57.518533944189926,14.115043061390647,-174.1048006818957,2.0973440327123227,-1.5246109121199483,-14.272085705030312,-0.8945483815077039,252.3054225668204,-79.47771761765934,0.8685012494793836,0.24355767144420426,-14.465639316951268,-42.62057476051645,8.08558657008295,-387.0765128454419,-3.3809801281138205,0.5657992919616842,11.129274839187378,0.6889269654310703,-759.4096507869683,-63.6405664306539,-0.38704064972927965,-0.3201632999853872,-9.383173677634318,-26.089546022490634,-39.057499038162454,-305.28003532055544,-6.527861727587894,-0.2529795501874227,-5.5125063630894555,-0.47543824406497326,-1030.4166194113022,-7.089546022490605,0.6645920033319451,0.5586141998134762,-0.28113286130779,-16.92628071636818,7.146389202378858,-25.48841257628135,1.2738989274484949,0.46722657226155817,7.58726687954093,0.570004939608497,79.55174323937793,0.6974691494688161,0.5296420466103691,0.4451576710803393,0.2818506503989527,0.2802530442115638,0.14476639984937362,0.17871291159732958,0.07466764568676704,0.11323281176462607,0.037317372709271907,0.07180651574805413,0.01926118318863881,0.04514236479788065,0.009392494410696773,0.028929250139445896,0.004821722827541071,9.004070495571748,5.690801830192357,4.10772274421212,2.1897300423046495,0.4330733909522291,-0.4614875319566291,3.2689998317499547,0.9872569003884877,7.004060379786036,1.9773086563982987,17.424773122533562,10.952114911014489,19.00014264536682,11.702608233167908,1.9937342006318897,0.5458553252160598,3.988675420225205,2.2394001407703876,8.001919879915617,1.240907103373881,4.0099564725698915,2.435142204510552,20.89790871912102,13.304118852691944,0.28525628462539176,0.5958529825492762,0.7618871103699923,0.875307347975951,0.8915419097990981,0.8915419097990981,1.449012187390591,1112.953033874319,0.0,1.0,2.0,0.0,15.0,1.0,1.0,0.0,0.0,3.9096531809716764,2.0531297741658734,1.060697315327288,0.382752806166601,0.2857142857142856,0.2857142857142856,82.88309841931829,1788.948316535748,82.80020348926236,36.509149317056085,75.88537492504645,,14.0,690.0,6.041840829147961,14.603469837356231,25.04144960965857,28.394747309526284,0.0,18.460054211687762,41.09577856171248,18.19910120538483,14.951935562841626,4.736862953800049,13.885714285714288,43.0,23.0,1.0,20.0,0.0,0.03714285714285707,3.0,0.2043731778425661,0.08547207894146736,-0.11890109890109873,0.035446428571428545,0.1802273476112023,0.0,0.6472303206997085,0.8671428571428569,0.44285714285714245,0.5617582417582412,0.8316964285714283,21.506473401902884,0.2240104167218977,0.5680104167218977,34.504045391827404,8.810495404984799,5.879707740666398,56.010518793730284,14.690203145651198,0.5337726523887977,0.06858710562414265,0.0,0.3168724279835391,0.13636363636363635,0.4361380464014772,-1.2023419093346481,-0.08187446046505328,-0.024537589986421388,-0.06679677274081378,0.5638619535985228,1.554450164310445,0.045721704592092974,0.03172347274102949,0.050143553687433694,-5.04424828346435,0.7086391331440837,0.7778114864648779,1.524020893629298,0.7035897435897437,0.5535546175104011,1.1610459354793092,0.7061724145525958,1.0107396187146604,0.7509681785679155,0.7939598059933984,0.839210277783878,0.8799693644809335,0.8742124212421242,0.829978638911588,0.9658962556617546,1.0577777777777777,0.8221476510067114,1.031913125020489,0.8708569636356213,0.9930692629242394,0.8259232035798831,0.7945079315066835,0.8526019464538529,0.95561474080518,0.8851510151015102,0.9534223670719592,0.93996052181119,1.1292181069958849,0.9511119884195288,1.0061551611329485,0.8860543847237792,0.9242156541214203,0.9431696622385067,0.868271414933396,0.9599926053457166,0.8936412727892474,0.9697010241564697,1.0756557081790405,1.2600412809036057,1.1143943943943946,1.075980836738831,1.0467029212313845,0.9650210128234107,0.9290021269725355,1.0632694932709401,0.9125944131458014,1.0931858982171152,0.9143436608017205,0.9668151025628878,0.927116660517148,1.2107266783560187,1.2455360623781677,1.0955181083383547,0.8409472200722153,0.955708680137269,0.8174697505206547,0.9303671783878695,0.7764438301609646,0.91917106514456,0.8592994944477749,0.9679757449429154,0.7227692904361027,0.868758123998141,1.1920467836257311,0.982504623184491,0.9174682707507602,0.9670251323272404,1.0631951067856995,0.7370775681034148,0.5841767860798885,0.6925769969433514,1.0665123926042002,1.0149392988079295,0.8764490357905171,1.0963437153674813,1.0198373983739837,0.9587397571567503,1.0491033118539321,1.013084635785293,1.2179754644848768,0.8787611296970219,0.8434894077609327,0.9106277982055859,1.1639985239265849,1.0859366424447323,1.0996430960395795,0.9930304884502196,0.9206865401987354,1.1087787545858088,0.8444238771407562,1.0775226343058077,0.9208670476153833,1.1089554996178,1.0503065221638535,1.1308844744102153,0.9758875509475369,5.0,0.0708070605040302,2.88888888888889,1.8402777777777777,1.7055555555555557,1.0005555555555556,0.653015873015873,0.546875,0.4152336860670193,0.24500771604938276,6247.4079860744805,6829.006137638269,2931.2487676094015,2723.3963171293362,12.477334302679044,0.4138001346809075,7.314211687771748,0.7059028143168529,1.0,0.13636363636363635,1.7050566631435322,3.561580069949335,4.55401252878792,5.231957037948607,5.328995558400923,5.328995558400923,0.1515151515151515,0.002832282420161208,0.06419753086419756,0.03915484633569741,0.03553240740740741,0.020011111111111115,0.013326854551344346,0.012428977272727272,0.011222532055865386,0.008166923868312758,0.358388617401976,23.168044077134986,11.227654320987654,5.688793335124966,171.64313606815313,1.0,4.331439226437872,169.12468622738186,,123.85963020665132,121.24577269926982,122.86380460400649,123.80793845230995,188.56169005689884,122.90802484626126,124.04089329273027,159.5331954152073,0.017688066883611336,-0.08154551389573542,-0.564704957223853,0.3324928774928776,0.16951433386984122,-0.15735589965454516,0.019132475645193645,-0.02231265407493852,-0.06862578730942821,-0.12470065169140536,-0.10235145934285465,0.010552406975424842,-0.05871212121212128,-0.010105419599634931,0.047560911077346446,0.08283950617283957,0.03361462034478222,-0.0262379155661862,-0.057983148957726216,-0.0398966280868085,-0.01829126543221308,-0.06491989723578813,-0.01023279381343784,-0.0643316302783219,0.052431284795146166,-0.026069264599088898,0.08830231221863429,0.035788751714677665,0.03493880773786026,-0.009929533976513357,0.051299733732592306,0.04441126092303893,-0.018229352668702875,-0.04330697352304499,-0.0367575267216189,0.06336214908112146,-0.02183073037033436,-0.10370135521956951,-0.08659276022669403,-0.003323323323323297,-0.07032397577206104,-0.09294719494369497,-0.022284565438578697,0.005689080955108228,-0.09657476435634649,-0.023325722746462215,-0.1030818056832051,0.008926848447860876,-0.04645974465867642,-0.08363958313055013,-0.0392872128802539,-0.1352566601689408,-0.11956386228104807,0.06114374561656569,-0.04311184080504809,0.08116839245477254,-0.08508381769590352,-0.06556820619514954,-0.07488885873507453,0.04690621948056128,-0.0941669824877225,0.043706256990518694,0.09156531284169002,-0.225679012345679,-0.08859545231020702,0.03502525966457548,-0.09584790847700675,-0.13084583055533985,0.03157550784075184,0.05112963883065316,0.05767486170618786,-0.14118220446108756,-0.06988549464702569,-0.01805217302384486,-0.11155793273957816,-0.13567600120445647,-0.05026415542481521,-0.15681008959893505,-0.07006223120643999,-0.2341466543397831,-0.013084981124508174,-0.023472248864686213,-0.036889879032587995,-0.17754826857173267,-0.007785229742486418,0.030997596357911328,0.19464393743133376,-0.004065040650406527,-0.032610195821658174,0.028691697080730775,-0.005849629351390195,0.04569324294485633,0.024166581347708844,0.0323065779282958,0.044227433389354094,0.013707343231793054,16.572671834900497,25.883861949947793,8.095526014180125,17.021605062433245,34.26920028549164,43.37178656593511,45.12286947170591,45.22068430032184,45.22068430032184,61.71213069697097,45.94170592553964,8.478961609989987,5.52821178604354,1.7632513753978079,15.770424771431337,7321.955189511255,4729.79281304197,3192.203442328668,174.0,45.0,61.0,82.0,104.0,115.0,133.0,154.0,168.0,406.14411868800056,33.0,5.056245805348308,5.910796644040527,6.790097235513905,7.667158255319148,8.558527054909215,9.446755465483632,10.34512385694912,11.240184548787743,12.143106221333715,0.7210884353741497,1.0096326530612245,1.1282375428791092,0.6905530528987883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6937806061346695,0.995278111244498,1.0211364953847524,0.6728606196803983,12.0,3.0,0.0,0.0,0.0,0.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,19.517017391272816,11.5667326743298,0.0,0.0,0.0,0.0,14.358372089569237,4.9839785209472085,0.0,18.19910120538483,42.46456947923127,11.760295063310071,42.66470881748372,283.0204103334775,-780.2284238871126,-53.130295758056526,-15.923029058920664,-43.34602354928403,365.9035087527958,1008.7198926486354,29.669907731205836,20.58612025813542,32.53935137576243,0.5,0.7211349858948312,0.15390838925972278,110.85284244396095,0.11681293453946255,35.592962749136944,0.27886501410516873,7.0,0.21212121212121213,0.30367671891907405,0.6343302091883227,0.811085996467118,0.9318303497788465,0.9491132589845683,0.9491132589845683,3.4642000000000017,,1.654761904761905,1.9900577693538684,1.7741040929820366,1.6855864241423026,-7.317814733608282,1.780196115214998,1.6200363731051548,-3.0209416124484996,108.37159999999999,19.34033279115628,0.0,19.51903521063298,0.0,6.041840829147961,13.213763929025836,79.00505517203963,0.0,34.40521214911312,4.204692619390966,0.0,5.5093883366279774,2.3978952727983707,7.018401799069201,4.727387818712341,8.617400451833262,6.86171134048073,10.26419933745711,35.333333333333336,19.81029529408567,13.096385490912006,0.0,0.0,0.0,0.0,2.6114142254897343,1.646151738473167,49.472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.28363960107635,4.736862953800049,4.39041504767482,11.759976672870742,42.94585392934023,0.0,5.817220841045895,6.041840829147961,73.18783433099372,0.0,22.64523547624238,0.0,33.83709959204063,33.995249700598805,39.49402867511121,338.24937245476383,,247.60894295298513,242.3588748805827,245.60933560181417,247.50350447634378,379.73935593361523,245.6973699515082,247.97378416058683,320.0733713678975,39.49402867511121,338.24937245476394,,246.06449850854085,240.50148762918585,243.95350511503096,245.9302904804776,384.441194847406,244.03585357730753,246.4617502123554,322.0873324428631,4.891038864668591,237.90753980556744,,174.06639982240017,170.3318945963458,172.91905744425486,174.02584580959865,271.5259129802744,172.7211710890658,174.3092848373418,227.05702562527364,1.316467622503707,11.27497908182546,,8.253631431766172,8.07862916268609,8.186977853393806,8.250116815878126,12.657978531120508,8.18991233171694,8.265792805352895,10.669112378929917,2.491994296272559,169.12468622738186,,123.85963020665132,121.24577269926982,122.86380460400649,123.80793845230995,188.56169005689884,122.90802484626126,124.04089329273027,159.5331954152073,48.768627450980404,0.0,0.0,0.0,13.399565908521883,0.0,19.40164216213542,50.03568827385287,-0.5810041817716769,0.0,5.73114624262622,0.0,-0.6155968804724221,0.0,0.0,0.0,0.0,32.970170364339516,467.9617412370983,83.54777649403307,174.5174234275174,223.1466139106081,256.3658948594818,261.12078236164524,261.12078236164524,1099.0,140.15799508768532,180.962177849175,79.60107697636997,93.29,93.29,1.0,9.182957131171243,6.044394119358453,4.323271911060126,5.381270539317416,,5.379118023235645,5.378823709486417,5.375121140381295,5.379414433313333,5.352604054283122,5.378901718439456,5.37900099767478,5.370753671570334,0.14410906370200421,0.17937568464391387,,0.1793039341078548,0.17929412364954722,0.1791707046793765,0.17931381444377778,0.17842013514277075,0.17929672394798188,0.179300033255826,0.1790251223856778,2.5626247910709443,2.781536794684911,,2.7811367132012417,2.781081997576894,2.7803934001732222,2.781191815526575,2.7761954702753053,2.7810965004480748,2.781114957435082,2.77958053586429,289.39000000000055,456.8711412695798,196.48219062124755,,196.96235130458555,196.98645582705774,197.41631600306107,196.9262095920972,199.74231156029762,196.98367839227592,196.9771113934584,197.85331349720573,15.229038042319328,6.549406354041585,,6.565411710152852,6.566215194235258,6.580543866768703,6.5642069864032395,6.65807705200992,6.566122613075864,6.565903713115279,6.595110449906858,7.2230136732149095,6.379184082899259,,6.3816248890132234,6.381747262895646,6.383927066775913,6.381441376638517,6.395640382262322,6.381733163173151,6.381699824835994,6.386138203881194,20.776863889621268,13.096385490912006,19.40164216213542,2.2406080118507976,0.2309422680607054,16.260900175182073,3.073662184009406,-0.5810041817716769,0.0,343.46653185563446,183.65871385500546,-506.3088866113313,-34.47751974553084,-10.332834420639411,-28.12827147840729,237.44353890728277,654.5824659978375,19.253512803862215,13.358825836690563,21.115563419285078,2438.0,47.0,1.5802000631456958,0.6351817883939213,0.0,0.0,0.2823601613688128,0.10146935597973364,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.43539540594929904,0.12205363952557159,0.6425800322063064,0.13152868687250582,20.924074484064484,15.889261398311072,14.690203145651198,9.301071463165439,12.611386989520371,6.514487993221812,10.901487607437105,4.554726386892789,9.285090564699338,3.0600245621602964,7.4678776377976295,2.0031630516184364,5.191371951756275,1.0801368572301289,3.847590268546304,0.6412891360629625,3.9327182816604185,1.3479514397078118,6.745072489965784,1.8376900893684207,10.521922760822337,2.357496834053758,93.75220587801269,57.06206181697846,33.138958290532656,27.623671366601297,27.227271436842095,27.227271436842095,156.0,184.0,56.772066999999986,27.039932999999998,0.4897959183673469,219.08,8.5,6.805555555555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,23.0,49.0,0.0,0.0,52.0,23.0,0.0,11.0,41.0,23.0,33.0,29.0,0.0,0.0,0.0,22.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,7.0,2.0,2.0,30.0,8.0,0.0,4.0,3.0,0.0,4.0,7.0,0.0,0.0,1.0,2.0,4.0,3.817712325956905,8.054515164306274,4.415824014257172,5.021410367264214,5.636350883736202,6.172352785525078,6.459708817088444,6.902679921115355,7.361216585358557,7.74661135758364 +4507,CCOC(=O)C1=C(C)NC(C)=C(C(=O)OC)C1c1cccc([N+](=O)[O-])c1,0,25.0,6.557604347826084,3.260869565217391,9.608695652173912,163.38781066391263,98.81033830434788,1.421123523847391,6.594126086956519,7.016908212560388,8.056785565217387,218.04243757252286,26.02127659574468,6.558914893617023,3.893617021276596,8.297872340425531,147.71417839534882,99.11220882978732,1.7409500891489371,6.683429787234044,3.6377068557919623,7.957858297872335,261.30970926945236,22.1125,6.437124999999999,3.6625,7.2625,155.07468690722607,83.50881192499997,1.4857707891629623,6.5233975,4.172916666666666,7.9290884,219.74435742904112,22.021052631578947,6.418178947368419,3.6842105263157894,6.3578947368421055,153.9428795361342,82.39089516842105,1.536800202176758,6.520747368421053,3.530409356725145,7.8886316210526335,227.38926036020268,21.04237288135593,6.568669491525422,3.2288135593220337,5.932203389830509,156.3905784421703,77.76546245762711,1.3932077236554141,6.643181355932204,4.19020715630885,8.069081762711864,207.11586847600717,19.8671875,6.584515625,2.9765625,5.25,156.905696924089,72.25017745312499,1.3489377086690708,6.65575,4.033203125000001,8.1062803125,199.9915204386793,18.014285714285716,6.455378571428572,2.5357142857142856,4.635714285714286,159.40583088218304,64.65145858571431,1.2491695007481072,6.516642142857143,4.150198412698411,7.986105085714285,178.18934916240897,14.226666666666667,6.221506,2.066666666666667,3.28,165.28264176357402,49.63534672,1.0437261341694202,6.262666666666666,3.380555555555555,7.8211194666666675,142.6681357950914,13.925619834710744,6.446545454545456,1.7272727272727273,3.5785123966942147,169.15341543316632,47.73642188429753,0.9324364851621567,6.451330578512396,5.484848484848488,8.051380099173555,125.72540856459204,7.939508506616256,0.18307712665406417,0.026829964504959745,0.67296786389414,5.0699432892249545,1.417501233771965,37.43810108506616,0.22029538122943285,0.16679886578449904,2.9878701953371167,0.12154151984877122,47.11779768018813,0.3713148051321251,0.018373289627156782,-0.012015269022891184,0.3547842175119656,1.9124803925511797,-0.018636022361301293,1.6610489334352359,-0.008826967872143196,0.016089478341310373,-0.14158589068093144,0.010502121224309208,-1.0235849682446803,1.637665406427222,0.0324650472589792,0.0004686563274721157,0.13735822306238188,1.0425567107750475,0.09657465112884885,7.750524706781673,0.04320506879888292,0.030306188563327018,0.6329631379962195,0.021698543194707005,9.574268935506357,0.08154412496269074,-0.01750925480051737,-0.0033313480974800276,-0.027201273505123892,-0.18161376977415195,0.06050770978565141,0.4694061725997465,0.004438113940519603,-0.013557904686100901,-0.06104588819244084,-0.012401550970052725,2.613189553149043,-0.3311813142802214,-0.010863751561949348,0.006716047881818907,-0.11364582999583482,-0.7047995898881806,0.0009014197914112136,-1.5374887700329951,-0.008308417905959367,-0.009924068437409887,-0.331397584185063,-0.009212607542212698,-1.6593763077316177,-1.5047258979206046,-0.0487160532844991,-0.004611124369069709,-0.1413781899810964,-1.1297258979206048,-0.1791236164407391,-6.963840990976482,-0.019365513745114568,-0.04380307774102078,-0.5391232146607856,-0.03251371957703215,-5.211374977832799,-0.9485147177963811,0.0025674075074264024,-0.00031166724368748887,-0.10464488252768027,-0.2450985687280583,-0.28840778523651717,-4.651786646867402,-0.04708905557101825,0.0007791466378611992,0.04988860383472864,0.004458242884147984,-10.021448480941244,0.17121613106490213,0.003932438563327047,-0.0033069348741646557,-0.1393446754883428,-0.02124763705103959,-0.12909246843957164,0.7375203366729641,-0.02641291003290856,0.00444211972274732,-0.1934096478330884,-0.0009025227473219771,-2.982591171809676,-0.0774891030948774,0.05026318955146932,0.006925509062865109,-0.03229233389054662,0.47587058069958926,-0.032633153682948626,-0.6831941986126975,-0.021358199182780792,0.041238827352403584,1.1531247341953652,0.03920469790185753,-6.630584514200007,,,0.4538461538461539,1.125,0.5,0.019230769230769232,0.625,-0.125,0.9608086997445329,0.023201745941718217,0.02981713055710283,1.0197283777889472,0.23946934432024933,0.2340294313677669,1.98053707753348,0.47349877568801624,1.9782891490035241,1.4108651892670554,0.15476724563264616,0.4126567141038224,0.0,0.5674239597364685,7.828959486086967,1150.0,301.64979999999986,150.0,442.0,7515.8392905399805,4545.2755620000025,65.37168209697998,303.32979999999986,322.7777777777778,370.61213599999985,10029.952128336052,1223.0,308.26900000000006,183.0,390.0,6942.566384581395,4658.273815000004,81.82465419000005,314.12120000000004,170.97222222222223,374.0193399999997,12281.55633566426,1769.0,514.9699999999999,293.0,581.0,12405.974952578084,6680.704953999998,118.86166313303698,521.8718,333.83333333333326,634.327072,17579.54859432329,2092.0,609.7269999999999,350.0,604.0,14624.573555932748,7827.1350410000005,145.996019206792,619.471,335.3888888888888,749.4200040000002,21601.979734219254,2483.0,775.1029999999998,381.0,700.0,18454.088256176095,9176.324569999999,164.39851139133887,783.8954000000001,494.4444444444443,952.1516479999999,24439.672480168847,2543.0,842.818,381.0,672.0,20083.929206283392,9248.022713999999,172.66402670964106,851.936,516.2500000000001,1037.60388,25598.91461615095,2522.0,903.753,355.0,649.0,22316.816323505624,9051.204202000003,174.883730104735,912.3299000000001,581.0277777777776,1118.0547119999999,24946.508882737256,2134.0,933.2258999999999,310.0,492.0,24792.396264536103,7445.302008000001,156.558920125413,939.4,507.08333333333326,1173.16792,21400.22036926371,1685.0,780.0320000000002,209.0,433.0,20467.563267413123,5776.107048000001,112.82481470462096,780.6109999999999,663.6666666666671,974.2169920000001,15212.774436315638,365.21739130434776,8.421547826086952,1.2341783672281483,30.956521739130437,233.2173913043479,65.20505675351039,1722.1526499130432,10.133587536553911,7.6727478260869555,137.44202898550736,5.590909913043476,2167.418693288654,17.45179584120988,0.8635446124763687,-0.5647176440758856,16.674858223062383,89.88657844990544,-0.8758930509811608,78.06929987145608,-0.4148674899907302,0.7562054820415876,-6.654536862003778,0.4935996975425328,-48.10849350749997,131.01323251417776,2.597203780718336,0.037492506197769254,10.98865784499055,83.4045368620038,7.725972090307907,620.0419765425338,3.4564055039106334,2.4244950850661615,50.63705103969756,1.7358834555765603,765.9415148405085,7.746691871455621,-1.6633792060491501,-0.3164780692606026,-2.5841209829867697,-17.253308128544436,5.748232429636884,44.593586396975915,0.42162082434936227,-1.2880009451795855,-5.7993593782818795,-1.1781473421550088,248.2530075491591,-39.079395085066125,-1.281922684310023,0.792493650054631,-13.410207939508508,-83.1663516068053,0.1063675353865232,-181.4236748638934,-0.9803933129032052,-1.1710400756143666,-39.104914933837435,-1.0870876899810984,-195.8064043123309,-192.6049149338374,-6.235654820415885,-0.5902239192409228,-18.09640831758034,-144.60491493383742,-22.927822904414604,-891.3716468449896,-2.4787857593746647,-5.60679395085066,-69.00777147658056,-4.161756105860115,-667.0559971625983,-132.79206049149334,0.35943705103969636,-0.043633414116248444,-14.650283553875237,-34.31379962192816,-40.3770899331124,-651.2501305614362,-6.592467779942555,0.10908052930056789,6.98440453686201,0.6241540037807178,-1403.002787331774,25.68241965973532,0.5898657844990571,-0.49604023112469836,-20.901701323251423,-3.1871455576559384,-19.36387026593575,110.62805050094462,-3.961936504936284,0.666317958412098,-29.01144717496326,-0.13537841209829657,-447.3886757714514,-9.376181474480166,6.081845935727788,0.8379865966066782,-3.9073724007561417,57.5803402646503,-3.948611595636784,-82.66649803213639,-2.584342101116476,4.9898981096408335,139.52809283763918,4.743768446124761,-802.3007262182008,0.7473214208226401,0.5774255404793547,0.4559617839958675,0.29818613991629084,0.2895945841210609,0.15122585349494583,0.1743364337101632,0.0805477931109685,0.10966368950323675,0.043880929492347606,0.06648612536945486,0.02333218124469314,0.04400448874139872,0.012536807991926897,0.028098786737878054,0.006591272477981027,8.054931047367482,5.686948822389767,3.6078146413280567,2.185849575158006,0.4687604431649742,-0.4966943351859032,3.2843391203402064,0.972505152137852,7.004122644491975,0.9878090757031118,14.594783987629128,10.94830236243417,16.02847039219815,11.698764501457653,1.996141616185488,0.6692114293394698,3.5533095616843657,2.2355109805089506,8.001938832543393,1.240484940531166,3.7572370638808796,2.4313493539722026,20.901492614548378,14.651514025866845,0.2823048209010314,0.6194029707194685,0.7861258097591789,0.8237279163776741,0.838768759025072,0.8462891803487709,2.3443434737525553,824.7251531476122,0.0,2.0,4.0,0.0,7.0,0.0,3.0,1.0,0.0,3.891456237565996,1.9425705747019837,0.9786858697533454,0.7612945654055183,0.6743380436663884,0.6308597827968239,196.39932820993295,1476.8588396827934,61.63590054888179,32.10562694962594,67.64654555874081,,10.0,403.0,22.779827670882764,19.703392636909218,23.440477299335015,16.957530117808663,0.0,25.30889874666236,26.83757866753348,0.0,5.316788604006331,9.473725907600098,11.8,29.25,13.0,0.5,16.25,0.0,0.04615384615384613,-3.25,0.20663615560640725,0.06133540372670809,-0.14530075187969915,0.0225071225071225,0.21399999999999975,0.0,0.6434782608695653,0.9076923076923074,0.43684210526315803,0.5821428571428572,0.8851851851851849,24.981026193357856,0.6032453944846736,0.7752453944846736,26.512937822512626,6.226202952326482,6.08476521556194,51.49396401587048,12.310968167888422,0.5000000000000002,0.2824858757062147,0.0,0.4152542372881356,0.3333333333333333,0.3325031094689095,-0.8375899247444344,-0.0638884282477256,-0.018208476624879007,-0.06442999421111036,0.6674968905310905,1.6814539605361414,0.04124249843228845,0.036553346968176983,0.050953150319277,-4.234399253978409,0.7078267477203649,0.5577296365830958,1.4564435846148203,0.6958970834329429,0.36332643152934446,1.2622949822685219,0.7184498816114139,1.1802085414961014,0.550677913796663,0.5570046631944168,0.5809766452377325,1.029396100412562,0.6769084821428573,0.6532149865562255,1.045329345270959,1.0538974719101124,0.7018666107382547,1.0111590611217727,0.680111921388264,0.8733968796957231,0.645627972831002,0.42688452311910124,0.6632131768657895,0.8058645920320381,0.8242387218045114,0.8307552104816446,1.2363573213717214,1.361842105263158,0.8632108795478627,1.1183517994528518,0.8281321579944919,1.0500515739323866,0.813216517027127,0.64094008152664,0.8287690796712471,0.944054624275928,0.9575211864406782,1.0410212913668035,0.9213003737740193,1.4474921443534565,1.1258318166306445,1.0567736950664453,0.9568933588225857,1.0729305325791834,1.028124254100022,1.1631252049724177,1.086150435570596,1.0032906665249735,1.1248116629464286,1.3169314942492243,1.3081570691108202,1.351441801264045,1.2210308305369122,1.1557617634226067,1.1195418873952656,1.1114294451093674,1.2971171932905392,1.1920863992394675,1.3580419839910869,1.0662451208861452,1.060963010204082,0.9399218044041419,1.1130305823976354,1.085047150882825,0.9819930488974109,1.2277315518076544,1.0662843288040902,1.2092535824488082,0.9445589330277909,0.8562701007012172,0.9224553033787888,1.181738981959566,0.9955714285714288,0.9424377993098452,1.1002775346997267,1.0320926966292134,0.9660514541387021,1.01121522523414,0.9977016632275642,1.0627142478771303,0.9469958044620936,0.9204183582010853,0.9520865624361932,1.0518074183221986,1.0956906729634004,0.9025283840185535,0.6654115652266478,0.7268258426966292,0.9727383659659433,0.8981813112839842,1.0990162242517403,0.9798988988941941,0.9296372124436356,0.8192033836933823,0.8498239105114491,1.0797743866130824,5.5,0.0,3.333333333333335,2.8125,2.2977777777777786,1.5694444444444444,0.8587755102040817,0.7604166666666667,0.21743512219702693,0.05562500000000001,5525.175333751263,6091.397912104366,2488.472518395676,2287.612762753447,12.556114059283852,0.4540372038010716,6.855171141199289,0.8316266363974688,1.0,0.3333333333333333,1.632105718491017,3.5809913813550294,4.544876086303668,4.762267390651495,4.849223912390625,4.892702173260189,0.20370370370370366,0.0,0.08771929824561406,0.06250000000000001,0.04595555555555557,0.03138888888888889,0.018669032830523517,0.021122685185185185,0.009059796758209455,0.007946428571428571,0.48806538973910896,22.290809327846365,9.97229916897507,5.093425605536332,150.17864383956768,1.0,4.159628141515253,119.08721447984833,,96.58518284700402,95.2116368293395,97.11542184872425,96.60627670634506,137.93923555874414,96.1389872614645,96.6544148036715,117.7184451181611,0.04676798378926053,0.1003581930902503,-0.447830224325122,0.5271934018646904,0.3772192869722497,-0.01314709427921337,0.044367873511026404,-0.04006878320771556,0.09646035820230141,-0.04738689481955776,0.08640768387112928,-0.02172395609812367,0.20626785714285728,0.17732989288347292,0.01746764619779801,0.20410814606741576,0.20563478747203576,0.06813020604706219,0.20702237779557983,0.1961233529171716,0.18169301344340097,0.21184425581272726,0.17852782507332102,0.20319856629318012,0.010270676691729383,-0.09563868037759964,-0.12416520703425453,-0.0404198698994678,-0.035821657050904676,0.042686177862886684,0.012538193952016169,0.020146196056182418,-0.08128295490700432,-0.020431238374314025,-0.10203551005025632,0.05546077452274101,-0.04171307506053266,-0.05933975347164529,0.25031892534100775,-0.16887259569605792,-0.13901528077958517,0.0006359216979392244,-0.04106748807957812,-0.03771489833146493,-0.059497217746262106,-0.11091431773115294,-0.07579802814441963,-0.035217611803391745,-0.18952380952380954,-0.2660957934769818,-0.17186472118579596,-0.21008163623595505,-0.22282811334824748,-0.12636575699062488,-0.1860094606602341,-0.08790703480499124,-0.26261016545288457,-0.1804372945993918,-0.267511214418641,-0.11060311038315046,-0.11946768707482994,0.014023638858379515,-0.011616386731703449,-0.1554975922953451,-0.048343453712581204,-0.2034621052632633,-0.12425274017765213,-0.21375416637526334,0.0046711746761386366,0.016697045243995207,0.03668082223831971,-0.2126892379173107,0.021565079365079343,0.021479682553449942,-0.12325528323204976,-0.207059925093633,-0.004190902311707658,-0.09107044520593263,0.019699726089130003,-0.11989770228273686,0.026631594296848842,-0.06473160987211705,-0.007425633219371837,-0.06330073387669775,-0.009759937032664322,0.2745465283953511,0.2581259122271619,-0.047984956820503265,0.09386112497765946,-0.023021605135476277,-0.018248633846582023,-0.0969525509957773,0.24723685714795787,0.385935351540685,0.3225621824594444,-0.1407235660547013,3.400398555779217,13.008282130050473,15.267151754318075,15.77585916755349,35.52406061439903,39.71996133581996,40.417483074950404,41.63530916190692,42.15752655321126,51.43551787409163,36.68249492094344,4.0239483864488,10.729074566699381,0.0,14.753022953148182,4462.644105846478,2662.058888161958,2390.8811381870455,71.0,38.0,51.0,69.0,88.0,97.0,101.0,99.0,87.0,360.1321363600005,27.0,4.875197323201151,5.733341276897746,6.634633357861686,7.5256399750415355,8.438366410870266,9.34145634983372,10.258536174730276,11.166950217433365,12.085953758896801,0.6884057971014493,1.0099130434782613,1.1302323785488764,0.6522390707069243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6561814631606354,0.9942028985507243,1.0258399569334054,0.6352826042708342,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,6.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,14.790514511606428,0.0,0.0,0.0,5.687386274683562,10.114318268765572,9.589074368143644,0.0,0.0,12.13273413692322,26.334663090768867,23.526812763034886,35.704105660908056,194.93910340767218,-491.0601564411745,-37.45635022971586,-10.675220792199445,-37.773858187782665,391.3384316176051,985.7986832416188,24.179550319165937,21.430406157426496,29.872687370958143,0.5,0.7533228676987592,0.18482411485394087,9.979499458478005,0.1334789778448196,33.272649381021104,0.24667713230124083,5.0,0.18518518518518517,0.295480657495167,0.6483119787274578,0.8228161687079222,0.8621732549644529,0.8779160894670649,0.8857875067183709,2.5657000000000005,,1.7857142857142856,2.0856212191717076,1.489304286185103,1.7805938315565375,-7.530129222398548,1.8746940024479806,1.771494787537799,-3.0326161248350116,93.02210000000004,23.98611132456141,0.0,5.316788604006331,0.0,26.689117645233267,13.716679505790452,62.48352572055921,0.0,0.0,4.007333185232471,0.0,5.332718793265369,0.0,6.8679744089702925,0.0,8.51057131510735,0.0,10.2159232113291,31.66666666666667,5.8351566830435875,0.0,0.0,0.0,0.0,0.0,0.29779307865121396,0.0,46.45600000000002,0.0,36.06935653236654,0.0,-0.5282019242882336,0.0,0.0,0.0,0.24326530612245234,51.99068941324831,5.316788604006331,5.687386274683562,0.0,30.57860113051182,19.06280027574374,10.114318268765572,32.25256913693026,46.80575596009664,0.0,0.0,0.0,30.00299725251852,30.18434730538923,31.85656018556847,238.17442895969668,,193.03300305664538,190.2628412572043,194.1162818292804,193.07558465641654,277.9582802647933,192.13376729197142,193.1725607775324,236.13672472666877,31.85656018556847,238.17442895969663,,191.41367921310896,188.38787176495046,192.81702775510243,191.46083674826053,283.4086003398869,190.4406120740717,191.5652776269898,238.46950636115733,5.010402801343719,157.75609875573195,,129.14069753284474,127.66061349384273,129.78153575872477,129.1636503046066,176.4769788059529,128.6619939433108,129.21518827643678,152.98230492104037,1.2252523148295564,9.160554959988334,,7.424346271409438,7.317801586815549,7.4660108395877085,7.42598402524679,10.690703087107435,7.38976028046044,7.429713876058939,9.082181720256491,2.50520140067186,119.08721447984833,,96.58518284700402,95.2116368293395,97.11542184872425,96.60627670634506,137.93923555874414,96.1389872614645,96.6544148036715,117.7184451181611,45.73333333333332,0.0,6.2849788811810825,0.0,0.0,0.0,0.0,47.18863801893665,0.16024281934996298,2.9947529289493575,10.00020494771983,0.0,-0.8308796296296299,0.0,0.0,0.0,0.0,29.22299979645837,441.6562739526016,75.07686305058678,164.72560354233136,209.06429996996872,219.06429996996877,223.06429996996874,225.06429996996872,754.0,129.06007484476655,144.62126107267568,60.93452091390458,107.77000000000001,107.77000000000001,1.0,8.216155663917299,5.754887502163468,4.222707909634014,5.012058035463133,,5.01506589012655,5.01713158540129,5.010989627027277,5.015024770707809,4.933800726584925,5.015601236912607,5.014974666086724,4.973586622631638,0.1624118426782313,0.19277146290242822,,0.19288714962025194,0.19296659943851116,0.19273037027027987,0.1928855681041465,0.1897615664071125,0.19290773988125412,0.19288364100333555,0.1912917931781399,2.395988052031127,2.56735806129652,,2.567958004964506,2.5683698180909866,2.5671448709624256,2.5679498057527277,2.5516210745169907,2.5680647469747404,2.5679398148008037,2.5596526793216525,263.54,214.38449574422575,153.28177934400594,,152.1177824832282,151.86633795309805,152.50700176030816,152.12249793283576,160.27674243244522,152.0491246185283,152.12916661279738,156.5171656622326,8.245557528624067,5.895453051692536,,5.8506839416626235,5.841012998196079,5.865653913858006,5.8508653051090675,6.164490093555585,5.848043254558781,5.8511217927998995,6.019890987008946,6.323282556983442,5.987789367637763,,5.9801665505636015,5.9785122234420705,5.982721953203273,5.9801975487575385,6.032413406359025,5.979715101939422,5.980241385362164,6.0086771337354135,10.00020494771983,35.54115460807831,14.134749972149862,1.7598419259679199,-2.0496631708238837,5.8351566830435875,0.0,5.206797585514668,1.2384241150163768,337.9144864041381,114.28841702588768,-287.8975380674588,-21.959816683721293,-6.258642131901279,-22.14596446672761,229.43293104942757,577.9516220420605,14.175927159140263,12.564165696566532,17.513685516426072,1491.0,45.0,1.9428090415820636,0.7679738999682371,0.0,0.0,0.6105659768236507,0.16922431040236466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12869425449598476,0.04581997368995358,0.26551430732207915,0.09307408205899381,19.43035694138864,15.013064052463221,12.310968167888422,8.051025777739852,11.004594196600316,5.746582432807942,8.891158119218323,4.107937448659394,7.5667945757233355,3.0277841349719847,5.850779032512028,2.0532319495329965,4.268435407915676,1.216070375216909,2.8379774605256833,0.6657185202760837,4.617586060436499,1.6613457372449214,7.811007179171681,2.4953022043175426,12.968740224828677,3.5849432733498876,88.80652526402523,41.80904502414488,31.015570246494164,29.351103138986158,27.206326296168847,26.28713622067571,130.0,154.0,50.407859999999985,27.008139999999994,0.2608695652173913,79.08,11.11111111111111,5.972222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,46.0,0.0,0.0,47.0,6.0,5.0,8.0,39.0,11.0,27.0,36.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,7.0,1.0,1.0,26.0,8.0,0.0,2.0,6.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,1.0,3.58351893845611,6.659934739955487,4.135166556742356,4.646791860678911,5.162640817577126,5.641241956181303,5.898698004513856,6.211603589401893,6.448295863612072,6.618572080404089 +54697325,CN(C)c1cc(CNCC(C)(C)C)c(O)c2c1C[C@H]1C[C@H]3[C@H](N(C)C)C(=O)C(C(N)=O)=C(O)[C@@]3(O)C(=O)C1=C2O,0,21.6,6.228745000000002,3.3,7.075,165.21077074296826,85.0107784,1.3500630524245003,6.274676250000001,5.550520833333334,7.771025999999997,200.16665074506255,23.337349397590362,6.405265060240963,4.024096385542169,6.626506024096385,148.8732580955928,87.4797701566265,1.7143991695662648,6.532596385542168,3.2535140562249,7.835791662650603,250.82430939014458,20.483443708609272,6.197867549668874,3.9735099337748343,5.741721854304636,156.2199552880508,76.89464975496688,1.5299831305700267,6.301146357615894,2.9139072847682117,7.688428476821192,221.06866476232523,19.95754716981132,6.279801886792453,3.4056603773584904,5.528301886792453,151.5212999043299,73.16298353301886,1.4775063235723538,6.388201886792453,3.511202830188679,7.76560620754717,209.9211864728942,16.164983164983166,6.1688754208754215,2.787878787878788,4.2727272727272725,163.41895804984702,58.72318584511783,1.1659860749039292,6.2245185185185194,3.7460250654695098,7.743758653198652,162.64283401360512,16.78985507246377,6.377687681159419,2.800724637681159,4.047101449275362,160.40200239491273,59.59451890217392,1.2437432507411739,6.436645289855072,3.8475241545893715,7.925526826086957,174.0287454726924,15.16095890410959,6.185900684931507,2.6232876712328768,3.2705479452054793,162.4389444845671,53.58000180821917,1.156093614039339,6.243676712328767,3.708523592085236,7.764669726027397,158.38320111700293,13.54642857142857,6.254410714285715,2.4035714285714285,2.867857142857143,164.83780901925695,45.90308007142857,1.109410780418925,6.2987778571428565,3.416418650793651,7.852863657142858,149.6499116038073,13.310344827586206,5.973566666666667,2.4061302681992336,2.9195402298850577,164.91045281715887,46.86693054022989,1.0782936937554213,6.026544827586207,3.1667730949340145,7.589430973180077,142.78040036864695,7.7243749999999975,0.14758899999999991,0.028918726463973234,0.8193749999999997,4.099375,1.3870359392668579,36.5935353375,0.21808089756224996,0.13728935937499995,2.310520833333334,0.09341627749999999,48.5126085713602,-0.03702560240963878,-0.01709026506024091,-0.013181877303607757,0.43243222891566274,1.4967093373493974,-0.032561597349344475,-0.04254448569276111,0.017261439717912684,-0.01447520274849395,-0.2835943775100402,-0.011370711234939716,3.1086475857655285,1.6234726821192054,0.0004665960264900781,-0.0014331893934309236,0.07069122516556296,0.800625,0.4544650414189364,7.864097959850999,0.06393726886905796,0.004079523075331114,0.13403973509933778,-0.0017198006788079442,15.349638646429822,-0.21895047169811327,0.010950716981132097,-0.0016934498675420034,0.03946933962264153,0.8553419811320756,-0.38723064025029663,-1.2321638219339535,-0.05542365828841978,0.010170734964622652,0.07691037735849059,0.006287778160377375,-8.790965332367822,1.6202377946127948,0.030461723905723898,0.002665692583507131,-0.008011363636363634,0.6329482323232324,0.05079457584844786,7.59579812142256,0.014787817518852695,0.029749533722643082,0.4405705200149645,0.017868035631313135,6.431076182982779,-0.9025452898550727,-0.0026763188405796666,-0.00021837802333729773,-0.10560688405797099,-0.39602355072463774,-0.01972565928285907,-4.315343418478255,-0.015332490648067023,-0.005018901947463736,-0.15649758454106286,-0.00022255322463762204,-5.625936812355641,0.027508561643835687,0.005547301369863026,0.000360863556890226,-0.05798801369863013,-0.334820205479452,-0.14322714078199045,0.0592874743150701,-0.01761316674905308,0.0053028538099315105,0.22883181126331822,0.003501795445205498,-2.5348909870888434,-1.7127678571428575,-0.03468192857142852,-0.003817060975610608,0.029821428571428565,-0.6499107142857143,0.014579100199946265,-8.001513493749998,-0.006261420380937507,-0.03361383705357139,-0.49858134920634933,-0.01959619571428566,-5.279197458547949,1.1966020114942528,0.02234335632183905,0.004712700421531685,-0.07358955938697316,0.257521551724138,-0.03159507297679589,5.618484525143676,0.0091033540675431,0.02166190499281607,0.26137079608343977,0.012226875373563189,4.249850930707623,,,0.4608333333333333,0.975,0.3375,0.025,0.6375,-0.3,1.4174220988437978,0.037151094341561566,0.04575109434156156,1.093875117616704,0.1849926070856751,0.2757116376320907,2.511297216460502,0.46070424471776583,1.9976192753966788,1.4917148231317747,0.1940858314211213,0.3118186208437824,0.0,0.5059044522649037,6.953621245250012,1728.0,498.29960000000017,264.0,566.0,13216.861659437462,6800.862272,108.00504419396002,501.9741000000001,444.0416666666667,621.6820799999998,16013.332059605005,1937.0,531.637,334.0,550.0,12356.480421934202,7260.820922999999,142.29513107399998,542.2054999999999,270.0416666666667,650.370708,20818.417679382,3093.0,935.878,600.0,867.0,23589.213248495675,11611.092112999999,231.027452716074,951.4731,440.0,1160.9527,33381.36837911111,4231.0,1331.318,722.0,1172.0,32122.515579717943,15510.552508999997,313.231340597339,1354.2988,744.375,1646.308516,44503.29153225357,4801.0,1832.1560000000002,828.0,1269.0,48535.43054080456,17440.786195999997,346.297864246467,1848.6820000000002,1112.5694444444443,2299.89632,48304.92170204072,4634.0,1760.2417999999998,773.0,1117.0,44270.952660995914,16448.087217,343.27313720456397,1776.5140999999999,1061.9166666666665,2187.445404,48031.933750463104,4427.0,1806.2830000000001,766.0,955.0,47432.17178949359,15645.360528,337.57933529948696,1823.1536,1082.888888888889,2267.28356,46247.89472616486,3793.0,1751.2350000000001,673.0,803.0,46154.58652539195,12852.86242,310.635018517299,1763.6578,956.5972222222223,2198.801824,41901.97524906605,3474.0,1559.1009,628.0,762.0,43041.62818527847,12232.268871,281.434654070165,1572.9282,826.5277777777778,1980.841484,37265.684496216854,617.9499999999998,11.807119999999994,2.3134981171178586,65.54999999999998,327.95,110.96287514134863,2927.4828270000003,17.446471804979996,10.983148749999996,184.8416666666667,7.473302199999999,3881.008685708816,-3.0731250000000188,-1.4184919999999956,-1.0940958161994438,35.891875000000006,124.22687499999998,-2.7026125799955913,-3.531192312499172,1.4326994965867528,-1.201441828124998,-23.538333333333334,-0.9437690324999963,258.01774961853886,245.144375,0.0704560000000018,-0.21641159840806945,10.674375000000008,120.894375,68.6242212542594,1187.4787919375008,9.654527599227752,0.6160079843749982,20.240000000000006,-0.25968990249999957,2317.795435610903,-46.41750000000001,2.3215520000000045,-0.3590113719189047,8.367500000000003,181.33250000000004,-82.09289573306289,-261.21873024999815,-11.749815557144993,2.1561958125000023,16.305000000000003,1.3330089700000036,-1863.6846504619784,481.21062500000005,9.047131999999998,0.7917106973016179,-2.3793749999999996,187.98562500000003,15.085989026989015,2255.9520420625004,4.391981803099251,8.835611515624995,130.84944444444446,5.306806582500001,1910.0296263458854,-249.10250000000005,-0.738663999999988,-0.06027233444109417,-29.147499999999994,-109.30250000000002,-5.444281962069103,-1191.0347834999984,-4.231767418866498,-1.3852169374999912,-43.19333333333335,-0.061424689999983684,-1552.758560210157,8.03250000000002,1.6198120000000036,0.10537215861194599,-16.932499999999997,-97.76749999999998,-41.82232510834121,17.31194250000047,-5.1430446907234995,1.548433312500001,66.81888888888892,1.0225242700000055,-740.1881682299422,-479.5750000000001,-9.710939999999987,-1.0687770731709703,8.349999999999998,-181.97500000000002,4.082148055984955,-2240.4237782499995,-1.753197706662502,-9.41187437499999,-139.60277777777782,-5.486934799999984,-1478.1752883934257,312.313125,5.831615999999992,1.2300148100197696,-19.206874999999997,67.21312500000002,-8.246314046943727,1466.4244610624994,2.3759754116287493,5.653757203124995,68.21777777777778,3.1912144724999925,1109.2110929146897,0.7514398815835732,0.6030801228771414,0.4285620881095497,0.3101245502663454,0.27792079577903106,0.18517687983576375,0.15827282720058952,0.08483247512331193,0.09846479456314833,0.04641721524090729,0.0557774639154296,0.02522787684800715,0.03595771202999901,0.014116484535195912,0.020706232031841944,0.007664584115461263,8.025762525363366,5.673380799285289,3.548281932753118,2.1719303388145135,0.46733138214397557,-0.44518941276938484,4.034261519640699,0.972322108111141,6.0244952740576485,0.9886253942976727,14.546657470050231,10.93443689484011,16.014007912338496,11.685368485527848,2.0126005484875864,0.7512753451037897,3.493853251446558,2.221572610158343,7.010466944841427,1.1235244066819816,3.7067622044354467,2.417516108955318,20.916823074321755,14.701781138728036,0.2388370357338811,0.57619329332243,0.7773286111880737,0.8133525035722817,0.8171940507295282,0.8210355978867748,1.6746801436530019,1354.80521176774,0.0,1.0,5.0,0.0,7.0,3.0,5.0,3.0,1.0,4.767625713857466,2.5721804688852172,1.2632331253245201,1.0287970315474766,1.0037970315474771,0.9787970315474777,363.6513393275166,3602.2405363493276,99.30273592827383,45.02800670436659,90.2071393750243,,15.0,991.0,58.04380762791743,34.809721131578286,35.14270157029897,24.21641579521914,5.687386274683562,4.899909730850478,14.09534396535438,25.06162076466647,26.088000203078202,5.733667477162185,18.433333333333334,39.0,13.5,1.0,25.5,0.0,0.03916666666666666,-12.0,0.14673245614035096,0.031898148148148286,-0.11483430799220268,0.08551418439716352,0.1868312678741657,0.0,0.5870833333333318,0.8741666666666665,0.4403508771929809,0.5551851851851836,0.788652482269503,56.69688395375191,1.4860437736624625,1.8300437736624624,43.75500470466817,7.399704283427004,11.028465505283629,100.45188865842007,18.428169788710633,0.5271687321258343,0.3381555153707052,0.054249547920433995,0.4502712477396022,0.5517241379310345,0.2764870122809032,-1.224320193668446,-0.06913606005821536,-0.015304002420855573,-0.05565091789402027,0.7235129877190967,3.203808938214865,0.05293389429451154,0.04004761172768581,0.055238085141635605,-3.9260748646189856,0.8979749404609297,0.8837118252601024,1.4307586097780138,0.842178783785026,0.5282174589499943,1.3656090316196061,0.9019390850739967,1.1469331935967961,0.8672698359346023,0.8226024335383098,0.8889033516527639,1.0458358795782343,0.698898140561963,0.7275000562013565,0.8751930792722395,1.4845348326185466,0.8128056186888448,0.9000309829121546,0.7013270092289899,0.8299376128429846,0.7074417296173258,0.5350665550821938,0.7086331061245424,0.75117487188241,0.9443427522834938,0.7508680083919943,0.8973789469033093,1.1796050832577756,0.7465329217811045,1.4814224833156702,0.9551575952585813,1.4343003279700155,0.7484689876766981,0.8233625675155715,0.7797904112891908,1.2714178991753933,0.7877136932885782,0.8262783823208382,0.9020476954752096,1.0611325561745093,0.8885367369892451,0.9620371053589134,0.7890914922228307,0.9249153565786938,0.8117443634649025,0.8343193796209136,0.8503696821147705,0.8544287053024873,1.1350614643321597,1.2120404369615938,1.2076415234591011,1.231386595032004,1.2083794586926693,1.0664118657435915,1.1325367649666043,1.097700819583068,1.2078715065692094,1.3787407842635038,1.2489619429857772,1.1013113317436938,0.9955919207011253,1.0243264552839582,1.10188545000517,1.075175281861593,1.11288055521327,1.1072522841680126,0.9962045452185011,1.082826338586063,1.0155682501827397,0.9676867326905108,1.0451670992498843,1.0398417596038363,1.2574179603065438,1.4514653174162224,1.4115622772598084,0.8543914133158987,1.2147757715679657,0.9692911802323235,1.2494834262676418,0.9855308585227478,1.4423269654016893,1.4824552222944989,1.4618612477053885,1.0585650086561293,0.8265650328812455,0.7788874205885357,0.9173025063184415,1.0758948011374432,0.9132606538119364,0.9612624390821715,0.8288176786296477,0.9351729920593037,0.7805923136798881,0.771107199832701,0.7921836635629176,0.9040086510161667,11.5,0.40863177226813585,6.666666666666669,5.8125,5.315555555555557,3.409722222222222,1.7020408163265306,1.3159722222222223,1.1005291005291,0.6837500000000001,9096.148068472223,10372.119565078192,3761.3287960802504,3335.586685317531,17.647662736064017,0.4476902220707974,9.746976686724981,0.8105781211213398,0.0,0.5517241379310345,1.554302381029896,3.7497476260021454,5.0586949695628425,5.293131063339886,5.3181310633398855,5.343131063339885,0.2674418604651163,0.009729327911146092,0.09661835748792275,0.06838235294117645,0.05777777777777778,0.040114379084967317,0.02127551020408163,0.020562065972222224,0.01746871588141429,0.011788793103448278,0.6111591408292731,32.90427257977285,11.828607435412728,5.6783930279519605,233.49929375560555,0.0,4.624202288102796,252.84476016314028,,214.56948801994596,212.25206815291585,211.56150640731667,214.59314249570951,258.99993874293995,213.64161780130144,214.70357215675978,242.5351927574606,-0.0047933460518991885,-0.11579633346821863,-0.4558249589597127,0.5277586317811293,0.3651067144014386,-0.023475669539287838,-0.0011626229961214693,0.07915154381178895,-0.1054357221447553,-0.12274045462767168,-0.12172087712379372,0.06407916781454509,0.21017528047501655,0.0031614553014796386,-0.049559215383028085,0.08627456923333392,0.19530416221985059,0.3276519580733805,0.2149040230008085,0.2931814275517067,0.029714779746244376,0.058012779268456896,-0.018410075040808004,0.3164051387558574,-0.028345396449306684,0.07419737908063678,-0.05855893653033763,0.048170055984917214,0.20865180207521283,-0.2791785196676116,-0.03367162561828967,-0.2541426548952983,0.07408247085516459,0.033287030460371916,0.06730923484268976,-0.18120990792397088,0.20975649092810686,0.20639562505148698,0.0921787682050257,-0.00977740794674433,0.15440115440115443,0.03662095149120377,0.20757213128950142,0.06780886214314849,0.21669220293601574,0.1906801763736377,0.19127325675456439,0.13256504592044174,-0.11684379511029344,-0.018133592886866015,-0.007551439846749534,-0.1288871201317724,-0.09660583643229462,-0.014221447854686023,-0.11792638723419586,-0.07030643591188655,-0.03655710806949592,-0.06773260049565859,-0.00238238164261707,-0.11596854875532207,0.0035612669819675632,0.03758614374962246,0.012478542488369519,-0.07077103121114282,-0.08167591534793768,-0.10326130471982987,0.001620162516910849,-0.08076437205613345,0.03862538097688251,0.09903905992190859,0.037485923641150214,-0.052252209512916946,-0.2217354617225158,-0.23498992859514287,-0.13199270653795486,0.036395336166503214,-0.15853897588918173,0.01051097508522548,-0.21865920906391018,-0.028711457312074848,-0.24483934666601984,-0.21578742853707916,-0.20977281731532987,-0.10882114184361887,0.15491247013438023,0.15138903523866318,0.16296362246113213,-0.08981181923658053,0.06281971074228096,-0.02277884233734853,0.1535376255211399,0.04174301449279665,0.15778283977309207,0.11312202526491237,0.13088591946476555,0.0876030181814745,2.497669766526919,17.987880259326612,31.282061187545878,14.824964631078785,36.38130961033277,40.48746683609407,41.37362841862133,41.773603418621335,41.79880341862134,79.90477101586715,59.66859292527099,7.763433256844852,12.472744833751298,0.0,20.236178090596148,14049.917703814892,12620.494663134936,3085.333454733287,570.0,69.0,97.0,139.0,193.0,250.0,305.0,391.0,477.0,556.289699620001,43.0,5.41610040220442,6.322565239927284,7.282761179605593,8.21851757748959,9.184099060770956,10.133924442677802,11.102894951239133,12.06099484900528,13.032327066274712,0.6208333333333335,0.9864,1.1366806057565075,0.5793231204728997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6370937125748501,0.9715196078431374,1.0090495265841222,0.5984000508854063,1.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,7.0,0.0,0.0,1.0,4.0,4.0,1.0,0.0,0.0,3.0,2.0,2.0,0.0,0.0,36.37647539138181,22.840946106665523,11.384295757348628,5.783244946364939,5.907179729351506,19.28352128306594,0.0,0.0,0.0,20.771211599071872,49.89970228692317,49.926705119790746,11.605292320844956,224.91953006546368,-995.9727234123837,-56.24152111374059,-12.449659042654794,-45.271487427835616,588.5708693929803,2606.2678129369438,43.061214814533244,32.578347661711796,44.93565194718869,0.4666666666666667,0.7365052126308549,0.11466172233661584,99.62372195783601,0.06620145598145359,181.48396048366172,0.26349478736914544,8.0,0.13953488372093023,0.2458589148280385,0.593133545608439,0.8001823009745846,0.8372653063897579,0.8412197961632524,0.8451742859367468,1.1657000000000024,,2.3214285714285716,2.7426710097719864,2.1129376429786997,2.3148597676196063,-9.648787123101336,2.45578335373317,2.300515573980907,-4.070259859379895,149.73329999999996,34.809721131578286,0.0,10.216698334856808,22.984470038881753,51.80050289096811,39.63535406747181,39.66209547534731,0.0,5.749511833283905,4.465908118654584,0.0,5.8944028342648505,0.0,7.520234556474628,0.0,9.252920819511301,0.0,11.050524859350896,49.66666666666668,1.8507433597163485,0.0,0.0,0.0,0.0,0.0,1.8114897745969638,0.0,78.912,0.0,39.41446421517642,0.0,0.0,0.0,0.0,0.0,-5.628872388907023,90.9344484605206,15.950365812018994,5.687386274683562,5.749511833283905,89.17802490904768,27.34918958105405,17.250802561719567,43.88238769708887,22.971741000256323,0.0,5.759164871656176,0.0,46.345849637831975,50.96749700598801,47.84844412499019,505.68952032628056,,429.0229046113205,424.36700275534315,423.0173659324844,429.070542003038,520.9550458201843,427.16044643491625,429.2921185348205,486.1151339773404,47.84844412499019,505.68952032628056,,426.81754746846343,421.7614652960598,421.01007517165465,426.8714252237993,527.6486646089813,424.82745224887003,427.10662873953873,489.1406453743012,5.309401204136014,365.14549542342104,,309.5966077314382,306.8600155119718,305.8059123100731,309.62382647493854,361.1438017755308,308.4894041752339,309.75618679278995,342.4220316393858,1.1962111031247546,12.642238008157014,,10.725572615283012,10.609175068883578,10.575434148312109,10.72676355007595,13.023876145504607,10.679011160872907,10.732302963370511,12.15287834943351,2.6547006020680066,252.84476016314028,,214.56948801994596,212.25206815291585,211.56150640731667,214.59314249570951,258.99993874293995,213.64161780130144,214.70357215675978,242.5351927574606,77.72156862745099,0.0,13.06811535447559,0.0,0.0,5.383436850407345,45.663493667806264,80.72396212672977,1.2672469236068655,3.3167200310419593,0.0,0.0,-2.8399800984508303,3.3523458684288476,-2.659203557898751,0.0,0.0,47.8720040708325,599.1399196263004,124.34419048239167,299.97981008017166,404.6955975650274,423.45048506719087,425.4504850671908,427.4504850671908,2574.0,165.75418476919478,214.3504798321439,78.18399118825626,176.66,176.66,0.875,9.181156124580214,6.426264754702098,4.957760510648534,6.211750286110053,,6.2035051886270605,6.205300224747318,6.208629232782954,6.203495539826767,6.178881526528892,6.2043580968506244,6.203387561631521,6.185632112780755,0.12394401276621334,0.15529375715275134,,0.15508762971567652,0.15513250561868294,0.15521573081957385,0.15508738849566917,0.1544720381632223,0.1551089524212656,0.15508468904078804,0.1546408028195189,2.9872484899455247,3.212737066968282,,3.2114088464234993,3.211698162932701,3.2122344972379384,3.211407291043516,3.2074316334478183,3.211546325086067,3.2113898848675464,3.2085235626768234,422.6400000000016,1276.1643591520367,299.81261235876383,,299.819586449379,299.32088939231693,299.22579570492996,299.8247871468712,308.7979768920559,299.62260226797696,299.84807635521554,305.53457170984564,31.904108978800917,7.495315308969095,,7.495489661234475,7.483022234807923,7.480644892623249,7.49561967867178,7.719949422301397,7.490565056699424,7.496201908880389,7.638364292746141,8.537908624842455,7.089452015145543,,7.08947527637344,7.0878105677038095,7.087492819095206,7.089492622312871,7.118981627733687,7.088818051399288,7.089570295356871,7.108357297681952,0.0,42.766810083605264,48.98021369884823,3.733714217971369,-6.551499608799896,0.7353993302925792,0.29126341036108316,7.208786951082104,6.835311916639269,534.2411541180154,182.96987835895953,-810.2142486184545,-45.75193747696734,-10.127678107730679,-36.827920391747924,478.7967516520992,2120.1738442417595,35.02988484064051,26.502173053021995,36.554721452444134,4852.0,85.0,5.2353632541191635,3.4251162751499,0.4497784354582114,0.3858282518116689,1.7535247977004345,0.5512920875790771,0.1503948211770304,0.026981113740922692,0.0,0.0,0.0,0.0,0.0,0.0,0.1620805673462014,0.09385382994894005,0.6667402280653839,0.28293190236618104,30.05759526334293,24.123204915085655,18.428169788710637,13.335355661452851,19.176534908753144,12.7772047086677,15.352464238457184,8.228750086961258,13.686606444277619,6.451992918486114,10.765050535677913,4.86898023166538,8.989428007499754,3.529121133798978,6.315400769711793,2.3376981552156852,10.685245365121562,4.598316555855427,18.825882302584787,6.759223478184378,32.58430680675392,10.06146199648153,135.6105711970569,52.303236120167,36.2923514031729,33.02861941179951,32.16423379282204,32.05618559044986,224.0,278.0,85.11571999999997,46.15228000000005,0.225,289.11,18.51388888888889,8.374999999999993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,6.0,6.0,80.0,0.0,2.0,83.0,6.0,5.0,8.0,75.0,11.0,43.0,72.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,10.0,6.0,0.0,40.0,11.0,0.0,4.0,7.0,0.0,4.0,6.0,0.0,0.0,0.0,0.0,1.0,3.9512437185814275,8.044836796586905,4.56954300834494,5.128418329752639,5.677181792859022,6.171047983669812,6.583495663789107,6.935735165489095,7.330179924345882,7.695559016690743 +5284583,CC[C@@H](C(N)=O)N1CCCC1=O,0,20.307692307692307,6.19653076923077,2.6923076923076925,6.3076923076923075,169.0994105494033,79.71792169230768,1.240084179534077,6.228092307692307,5.8589743589743595,7.74958953846154,182.41221293845157,21.76923076923077,6.354153846153848,3.3846153846153846,5.423076923076923,152.10918967913082,80.63031461538458,1.5995983199999995,6.471653846153847,3.0982905982905984,7.783193846153848,230.05283405474285,17.1875,6.158270833333334,2.9791666666666665,3.875,160.33810606257902,62.25620258333331,1.2977527218498335,6.23605625,2.9820601851851856,7.668776666666665,178.18921899730915,13.619047619047619,6.150601587301588,2.4285714285714284,2.5714285714285716,167.74538579421963,47.192732301587306,1.0768047413902224,6.1921380952380956,2.979276895943563,7.7379198095238095,144.46401277322295,14.0,6.26194827586207,2.1724137931034484,2.2241379310344827,166.235485962655,48.00090713793103,1.1011528594023965,6.306086206896551,3.4798850574712645,7.846774344827586,150.38888970230988,11.508474576271187,6.2007627118644075,1.6271186440677967,1.694915254237288,167.94926084615994,37.15294299999998,0.9575164122065762,6.228342372881355,4.296610169491526,7.815578644067795,122.17245812851408,4.078431372549019,5.676,1.196078431372549,0.0,177.23455545986522,7.754978823529411,0.6668064927524705,5.677725490196079,2.4705882352941178,7.436193882352941,67.41784060316245,1.0,4.840000000000001,1.0,0.0,184.917652024249,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.08374443093026,,,,,,,,,,,,7.786982248520711,0.14871479289940823,0.022609772014100877,0.5562130177514792,3.940828402366864,1.3322519413121765,36.85974869822485,0.20132322271986983,0.13858698224852065,2.6374095989480604,0.09117192899408282,46.32415624643012,-0.005917159763312905,-0.009578698224852095,-0.015974930992665167,0.23668639053254445,1.399408284023669,-0.2634778067065083,-0.011397278106507942,-0.013083715917159676,-0.006987573964497104,-0.12327416173570013,-0.006780970414201169,-1.0818142457248854,0.6633382642998026,0.02777110453648911,0.0029023071099907693,-0.00012327416173564532,0.5367357001972386,-0.2090833884765361,2.9806289620315582,-0.020796324774613368,0.02514362672583825,0.3328984494849879,0.0161776607495069,-2.1973976485667053,-0.145956607495069,-0.005612717197332593,0.002913865990906931,-0.14473560627406776,-0.5562130177514795,0.12470821538830962,-0.6691810974922509,0.0012228629707883003,-0.005114088475626949,-0.23315644469490632,-0.004201892364046201,0.1529307260989522,-1.2379106304835745,-0.03727023056519079,-0.005514238278286939,-0.1769026729238931,-1.1384411344623548,-0.04305168456279283,-5.751693425015302,-0.011426938094888383,-0.03349387880024487,-0.44709129656079244,-0.022793976739440905,-3.505665063921408,-1.8795506970213611,-0.004226005415705551,0.0033518525811824847,-0.07642162270584697,-0.7100591715976332,-0.2848156618774771,-9.080996058068395,-0.059686139183214006,-0.007647999197673254,0.14094763703629418,0.001595773743857205,-14.98763331127105,-1.3706926557605295,-0.031307100591715924,-0.002556264204352503,0.12252001392272877,-0.348068221371389,0.052288431304724124,-6.351772674092121,0.006757682758645962,-0.030273860076574934,-0.537107939822872,-0.01780458057779326,-2.5981691185517923,6.44378698224852,0.06720059171597641,0.0025486431596071467,0.21301775147928984,2.3668639053254443,0.4172472286796675,30.67626037869822,0.12418803705659161,0.07165917159763326,0.6318211702827086,0.030759763313609346,37.0929577345399,,,,,,,,,,,,,,,0.4555555555555555,0.875,0.25,0.0,0.625,-0.375,0.804719285798056,0.020859258518840074,0.02802592518550674,0.5368337470410599,0.16199479164483,0.3099970800340878,1.3415530328391159,0.4719918716789178,1.9286726486689278,1.3174982657378649,0.32289991039042615,0.28827447254063665,0.0,0.6111743829310629,6.542520295692308,528.0,161.1098,70.0,164.0,4396.584674284486,2072.665964,32.242188667886,161.9304,152.33333333333334,201.48932800000003,4742.717536399741,566.0,165.20800000000003,88.0,141.0,3954.838931657401,2096.388179999999,41.589556319999986,168.26300000000003,80.55555555555556,202.36304000000004,5981.373685423314,825.0,295.59700000000004,143.0,186.0,7696.229091003793,2988.297723999999,62.292130648792,299.3307,143.1388888888889,368.1012799999999,8553.08251187084,858.0,387.4879,153.0,162.0,10567.959305035836,2973.142135,67.83869870758402,390.10470000000004,187.69444444444446,487.488948,9101.232804713045,812.0,363.1930000000001,126.0,129.0,9641.658185833989,2784.0526139999997,63.866865845339,365.753,201.83333333333334,455.112912,8722.555602733974,679.0,365.845,96.0,100.0,9909.006389923437,2192.023636999999,56.493468320188,367.47219999999993,253.50000000000006,461.1191399999999,7208.17502958233,208.0,289.476,61.0,0.0,9038.962328453126,395.50392,34.007131130375996,289.564,126.0,379.245888,3438.309870761285,20.0,96.80000000000001,20.0,0.0,3698.3530404849803,20.32128,8.89225809698,96.80000000000001,20.0,134.36928,621.6748886186052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202.46153846153848,3.866584615384614,0.5878540723666228,14.46153846153846,102.46153846153847,34.63855047411659,958.353466153846,5.234403790716615,3.6032615384615365,68.57264957264957,2.3704701538461532,1204.4280624071832,-0.15384615384613554,-0.24904615384615447,-0.4153482058092944,6.153846153846156,36.384615384615394,-6.8504229743692155,-0.2963292307692065,-0.34017661384615155,-0.1816769230769247,-3.2051282051282035,-0.17630523076923038,-28.12717038884702,31.840236686390526,1.3330130177514774,0.13931074127955692,-0.005917159763310975,25.763313609467453,-10.036002646873733,143.0701901775148,-0.9982235891814417,1.206894082840236,15.97912557527942,0.7765277159763312,-105.47508713120185,-9.195266272189347,-0.35360118343195335,0.18357355742713666,-9.118343195266268,-35.041420118343204,7.856617569463506,-42.158409142011806,0.07704036715966292,-0.3221875739644978,-14.688856015779098,-0.2647192189349106,9.634635744233988,-71.79881656804733,-2.161673372781066,-0.3198258201406425,-10.260355029585801,-66.02958579881658,-2.4969977046419842,-333.5982186508875,-0.6627624095035262,-1.9426449704142024,-25.931295200525962,-1.3220506508875725,-203.32857370744168,-110.89349112426031,-0.24933431952662755,0.1977593022897666,-4.508875739644972,-41.89349112426036,-16.804124050771147,-535.7787674260353,-3.5214822118096265,-0.451231952662722,8.315910585141356,0.0941506508875751,-884.270365364992,-69.905325443787,-1.5966621301775121,-0.13036947442197766,6.248520710059167,-17.75147928994084,2.66670999654093,-323.9404063786982,0.34464182069094407,-1.5439668639053217,-27.39250493096647,-0.9080336094674564,-132.5066250461414,128.8757396449704,1.3440118343195282,0.050972863192142934,4.260355029585797,47.33727810650888,8.34494457359335,613.5252075739644,2.483760741131832,1.433183431952665,12.63642340565417,0.6151952662721869,741.859154690798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7614856834587246,0.6039031532960939,0.47199187167891776,0.3543783729509293,0.30551012445859876,0.1885688274218921,0.19027388655670938,0.1100675055053166,0.1338576892501045,0.06842380838125388,0.09227780982510222,0.039507778621903904,0.05830931240155721,0.02871060981642798,0.042594514703375365,0.0165036303634553,8.023279711436924,5.826268627590561,3.5455139058530447,2.3190562434076423,0.39538055523640303,-0.4051536725309946,3.177925038929971,0.9727444470409662,6.023179916326324,0.9879909449972075,14.543601991911922,11.090509924806234,16.011178326550564,11.84126799940606,1.8637796724007438,0.7508885049319378,3.490871528759195,2.3667532859771474,7.009353342550477,1.2513149517119333,3.703725222994926,2.5620249837100313,20.752332192137896,14.701776379571353,0.3272906781229151,0.5695750319223167,0.7957082011434677,0.8277104469398537,0.8597126927362398,0.8597126927362398,2.5229596509432177,203.23454122869492,0.0,2.0,2.0,0.0,0.0,4.0,0.0,0.0,0.0,3.1270372657233247,1.9622903849482256,0.8751879808524405,0.7213418270062868,0.567495673160133,0.567495673160133,133.61092449531284,481.69477884589793,39.140741190938286,18.526722263303768,38.872051842056244,,5.0,98.0,5.907179729351506,9.589074368143644,11.949020558499466,19.386399651764595,6.4208216229260096,0.0,4.899909730850478,6.923737199690624,0.0,5.733667477162185,5.466666666666666,10.5,3.0,0.0,7.5,0.0,0.04444444444444451,-4.5,0.14102564102564097,0.0,-0.14102564102564097,0.08492063492063484,0.2046832298136646,0.0,0.5743589743589748,0.8944444444444444,0.4333333333333338,0.5743589743589748,0.8095238095238095,9.656631429576672,0.2503111022260809,0.33631110222608085,6.442004964492719,1.94393749973796,3.719964960409054,16.09863639406939,5.663902460147014,0.5093167701863354,0.28658536585365857,0.0,0.34756097560975613,0.75,0.3110751735397577,-0.42375452583734297,-0.07374996940957834,-0.016298250993743962,-0.06053636083390615,0.6889248264602423,0.9384709485243518,0.03693944861450968,0.03609503648170584,0.049393207817071134,-0.6389649140993994,0.9118541033434651,0.7327824595747388,1.7815436170342573,0.9308510638297873,0.43168168168168164,1.6841908816022346,0.9222972439638794,1.4014964041063163,0.7239434785578878,0.6076280693007604,0.7019753173275072,1.225684969985868,0.833491641337386,0.5492438748700236,0.8704816460420772,1.368572695035461,0.7726476476476476,1.381954856056768,0.8448117868409689,1.2441160871363275,0.5632917506361758,0.43842053055797925,0.512039773219931,1.1294259936870157,0.9956819607275533,1.045947893046107,0.9257993110492436,1.5503630530226278,1.2257793507793506,0.9163737988429229,0.9944597011916144,0.9584735149269147,1.0399418692439548,1.0401210112197277,1.0513981508959718,0.9573219218111989,1.163481946336862,1.3830369285253286,1.390599914526378,1.4008620689655173,1.3966552759656208,1.057412865167773,1.1576193491375795,1.0419099079111622,1.3583658475934273,1.3799093769206634,1.4189288326699425,1.0398920836147203,1.243173973520169,1.193910489850794,0.9027235703211015,0.8057609087630726,1.1724118185982593,1.1344231231423343,1.2436021720688604,1.223659971644337,1.2049288352982825,1.2845154397209717,1.1985343185606985,1.2477838793812812,1.131902228976697,1.235928863524019,0.8217876103123845,0.16948268669169797,0.9664075840546428,0.5663675336349864,1.1236057708129135,0.7026073898908453,1.2499432808151356,1.3099746317572274,1.2337500399714507,0.8759896524732507,0.0,0.0,0.13723682667903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,2.5,0.0,1.7777777777777786,1.125,0.56,0.24000000000000005,0.0,0.0,0.0,0.0,1893.9902838624052,2236.9447313301894,1093.0662209308548,949.7773100870462,7.012043428318779,0.4186503839598629,4.076448754709888,0.7201353065501274,1.0,0.75,1.573402452417767,2.738149333192866,3.825251737288651,3.979097891134805,4.132944044980959,4.132944044980959,0.20833333333333331,0.0,0.11111111111111116,0.075,0.04,0.026666666666666672,0.0,0.0,0.0,0.0,0.4611111111111112,10.083333333333334,4.296875,2.25,71.7107832423802,1.0,3.3793834712936954,32.69888440123199,,28.301514801519243,27.641889840650904,27.27559833956171,28.307746803744326,39.96367882333925,28.02989139737339,28.340430019238305,35.941604212874225,-0.000759878419452797,-0.06440985485103151,-0.7065498485655757,0.4255319148936172,0.3551051051051052,-0.19776875419449624,-0.00030920661450567163,-0.0649886075754159,-0.05042013218793278,-0.04674062071544308,-0.0743756383024567,-0.02335313437701854,0.08518553698074972,0.18674070006790575,0.12836516476949472,-0.00022163120567366022,0.1361986986986987,-0.1569398264645074,0.08086406086037978,-0.10329819130478707,0.18142848857730032,0.12622174789147866,0.17744124675213194,-0.04743524386881937,-0.018743667679837886,-0.037741485483082204,0.12887639862488046,-0.2602161431948665,-0.14114114114114118,0.09360708100412345,-0.01815479272446799,0.006074127734830904,-0.03690165116992105,-0.08840357780903715,-0.0460875667588311,0.003301317033933834,-0.15897180589036783,-0.2506154891423656,-0.24388738970246637,-0.3180484225972121,-0.28888371129750445,-0.032314972286990915,-0.1560426651875763,-0.05675916538842783,-0.24168127667418346,-0.16951909811017457,-0.25001090786310187,-0.07567682496519437,-0.24137087218587386,-0.028416846322504394,0.14824796017810613,-0.1373963216732781,-0.1801801801801802,-0.21378513556298762,-0.2463661956139634,-0.2964692218654973,-0.05518555259366644,0.05344169411247749,0.01750290644789114,-0.32353818235871357,-0.17602360092973363,-0.2105177298192001,-0.11306014951226646,0.22027534418022512,-0.08832361773538248,0.0392481554601629,-0.1723227341047504,0.03356633510704776,-0.2184466360793284,-0.20364980093994473,-0.19528577243274958,-0.05608670139031437,0.8275075987841943,0.45187563661828434,0.11272308088810681,0.38297872340425515,0.6006006006006007,0.31318943192434584,0.8322427976882972,0.6168589762214984,0.517070004952779,0.239561261373551,0.3373819513636231,0.8007260302209691,,,,,,,,,,,,,2.8039657955522017,5.241482788417793,1.6509636244473134,15.310225101698258,25.948059188288784,27.89024302700195,30.044858411617334,30.19993533469426,30.19993533469426,23.144071784027133,15.80997918885438,3.874798924685114,3.45929367048764,0.0,7.334092595172754,790.2847006107089,623.5086015006033,439.3018792975015,0.0,16.0,20.0,23.0,17.0,11.0,8.0,3.0,0.0,170.105527688,12.0,4.04305126783455,4.859812404361672,5.713732805509369,6.55250788703459,7.407924322559599,8.252967195000798,9.107088742165708,9.954703343920398,10.807806912629063,0.5897435897435896,0.9836923076923078,1.1502798531805751,0.5450516513708589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6102971441731921,0.9677224736048267,1.0077875511233123,0.5668584602858978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10.633577208012664,6.041840829147961,0.0,11.814359458703011,0.0,9.589074368143644,0.0,0.0,0.0,6.923737199690624,12.841643245852019,12.965578028838586,0.0,109.99888766057308,-149.84328692268292,-26.07863079442462,-5.763203343180113,-21.406183846097562,243.60981215588592,331.851491923215,13.062110396513663,12.763518920123655,17.465867995958682,0.4,0.7301445077197939,0.2700595824939593,34.29978164248845,0.17597509330291108,28.459486733850913,0.26985549228020617,3.0,0.25,0.3347351624030632,0.5825304646765551,0.8138072109563069,0.8465373730414397,0.8792675351265724,0.8792675351265724,-0.12729999999999997,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,44.22040000000001,9.589074368143644,0.0,4.899909730850478,5.733667477162185,32.22804289761662,6.544756405912575,0.0,0.0,0.0,3.2188758248682006,0.0,4.48863636973214,2.3978952727983707,5.953243334287785,4.59511985013459,7.509335266016592,6.555356891810665,9.113278659133051,15.333333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.576,0.0,22.08865740740741,0.0,0.0,0.0,0.0,0.0,-0.33944444444444377,29.907276182694954,5.733667477162185,0.0,0.0,29.300866424614025,9.589074368143644,0.0,26.186202068468653,0.0,0.0,0.0,0.0,14.17134293564233,15.867725748502995,14.266661050803057,65.39776880246391,,56.472077222080614,55.12665233523848,54.41840208866265,56.4849050216229,80.51978784995407,55.919814414486545,56.55127410736099,72.12264812784893,14.266661050803057,65.39776880246394,,55.817315317318716,54.341015604976334,53.75442913643607,55.831962092321426,83.1283098117205,55.219972513221755,55.903344451809296,73.31984663835135,4.587792461259676,46.14120749330512,,39.98923979239359,38.8846522505234,38.1625163109963,39.99934851662957,58.98142644859608,39.52935417452113,40.05492302534867,52.604262713204605,1.1888884209002548,5.449814066871993,,4.706006435173385,4.593887694603207,4.534866840721888,4.707075418468575,6.709982320829506,4.659984534540546,4.712606175613415,6.010220677320745,2.3423561732507654,32.698884401231965,,28.301514801516497,27.64188984064545,27.275598339553984,28.307746803741598,39.96367882333925,28.029891397369752,28.340430019235665,35.941604212874225,25.160784313725493,0.0,1.8621296296296297,0.0,0.0,5.1564351851851855,0.0,26.20247632920612,2.7021296296296295,0.0,0.0,0.0,-0.3888888888888893,1.5856481481481481,0.0,0.0,0.0,14.738319967433343,258.1854500529248,40.90846376286194,71.19188266301452,99.45654516950493,103.45654516950493,107.45654516950492,107.45654516950492,122.0,90.69959488101574,95.42324976353417,55.831741468781395,63.400000000000006,63.400000000000006,0.6666666666666666,5.087596335232384,4.584962500721156,3.1482671605575363,3.413271402640613,,3.41308278243366,3.4116316940373035,3.410545436191273,3.4130954186912414,3.4239072916099187,3.412493174428307,3.4131652607930967,3.4228665659276767,0.262355596713128,0.2844392835533844,,0.284423565202805,0.28430264116977527,0.28421211968260607,0.2844246182242701,0.2853256076341599,0.2843744312023589,0.2844304383994247,0.28523888049397306,1.3291737505071968,1.409992743814974,,1.409937481459143,1.4095122362937298,1.409193787260679,1.40994118375264,1.4131039386583826,1.4097647171355034,1.4099616465228555,1.4127999339659796,135.81999999999994,45.30313780817241,46.30373593687709,,45.90761699569994,45.97255023231614,46.09115991601243,45.90725253198601,45.51444941075125,45.937294592796164,45.90357862421706,45.497825334484205,3.7752614840143672,3.8586446614064243,,3.8256347496416616,3.8310458526930113,3.8409299930010357,3.825604377665501,3.7928707842292706,3.8281078827330135,3.8252982186847553,3.7914854445403505,3.9956978541726493,4.0175442044122605,,4.008952607711406,4.010366041086322,4.012942729536727,4.008944668611437,4.000351401803409,4.009598862307678,4.0088646364905065,3.9999860867621484,0.0,23.674305555555556,0.0,5.1564351851851855,-0.33944444444444377,-0.3888888888888893,2.0212962962962964,2.542962962962963,0.0,168.86893899379547,38.89656364691198,-52.985889864954515,-9.22163072820996,-2.0379188409597893,-7.569412837850646,86.14254893897463,117.3455745911202,4.618875874170247,4.5132913304277,6.176082873216851,190.0,15.0,0.8412011207047578,0.31516529001582283,0.0,0.0,0.2878633639084475,0.0801437491987284,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.07905694150420949,0.1858925119417351,0.07791840767715899,0.1554376142423653,0.07373053426027532,9.137828201504695,7.246837839553127,5.663902460147013,4.252540475411151,4.88816199133758,3.0171012387502736,3.8054777311341876,2.201350110106332,3.0787268527524034,1.5737475927688394,1.5687227670267379,0.6716322365723664,0.6414024364171294,0.31581670798070777,0.3407561176270029,0.1320290429076424,1.9839345206219239,0.7751097484491847,3.0818697296685036,1.1319729722847316,3.8453354497572048,1.1615282252147003,40.386148264884945,25.003167881603233,21.638409880993343,18.730244030687548,18.20703180972106,18.20703180972106,56.0,64.0,26.499101999999976,16.920897999999998,0.19230769230769232,12.04,5.444444444444445,2.8333333333333335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26.0,0.0,0.0,26.0,0.0,2.0,2.0,24.0,2.0,12.0,24.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,2.0,1.0,1.0,12.0,4.0,0.0,2.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,2.70805020110221,0.0,3.044522437723423,3.258096538021482,3.4339872044851463,3.295836866004329,2.70805020110221,2.5649493574615367,2.1972245773362196,0.0 +130881,CCCc1nc(C(C)(C)O)c(C(=O)OCc2oc(=O)oc2C)n1Cc1ccc(-c2ccccc2-c2nn[nH]n2)cc1,1,24.676056338028168,6.429569014084506,3.5211267605633805,9.098591549295774,163.44667576073903,97.5651511126761,1.4836015654291546,6.48202394366197,4.77318075117371,7.9091407887323975,224.96805894048896,26.56,6.556049333333333,4.1066666666666665,8.88,148.35104572238205,101.54456326666667,1.7800258795466668,6.684504,3.4566666666666666,7.938694133333332,267.92833620873336,23.40625,6.4764109375,3.8515625,7.640625,155.33341445315932,88.87344635156254,1.54832940905925,6.56813125,3.579644097222222,7.920819156249998,229.35367671773773,20.025641025641026,6.35051282051282,3.4166666666666665,5.653846153846154,155.71753814525243,73.77397400641027,1.468716830248301,6.44176217948718,3.2248931623931627,7.837443717948716,210.26952010420646,18.77173913043478,6.3163750000000025,3.157608695652174,5.206521739130435,160.55527520270527,68.87355677173912,1.3421823160468533,6.390638043478263,3.1721769323671505,7.821407043478259,191.70446575811226,19.57837837837838,6.463118918918918,3.2162162162162162,5.037837837837838,160.13481254882504,71.61151568108106,1.3854088102926,6.5336859459459475,3.6672672672672686,7.954436648648646,200.02747441194379,17.71212121212121,6.387959595959596,2.9494949494949494,4.297979797979798,158.01552419172396,62.97007098484848,1.3570380600269647,6.465036363636363,3.378367003367004,7.901869515151515,190.64368285432857,15.058823529411764,6.096778280542986,2.6470588235294117,3.6425339366515836,162.11689484182222,53.43442361538462,1.2028340531332578,6.163444796380089,3.059514831573656,7.670373447963801,163.64743534409791,14.55607476635514,6.068467289719626,2.574766355140187,3.47196261682243,161.4553963247465,51.182197186915886,1.200127040793939,6.136751401869159,2.8202881619937696,7.649660037383177,161.50564355302686,7.529458440785559,0.1499565562388415,0.02466808638311986,0.6645506843880182,4.515373933743307,1.5425965158050516,35.667040812140435,0.21890206518632607,0.13801106923229509,1.5103236791641865,0.09420241856774443,47.47165831205013,0.42096409442571,0.006042711366792441,-0.015125228759920591,0.27028499636315545,1.902654235270779,0.023301714761762026,1.9605692517093045,-0.010313844650711074,0.00633456457052186,-0.1084340078026846,0.0006100388970442013,-0.1554896547417955,1.6030239535806394,0.04222198689496137,0.0010046506333173729,0.05320899871057332,1.1014834606228927,0.14736694314379006,7.481182756301443,0.02091575579568248,0.038666725662071064,0.3168698422070962,0.026807034777325888,6.014084317227791,-0.38734937614128245,-0.0008132554082166857,0.001854573724349618,0.00021999094603738023,-0.11035407097696315,-0.09869057957252061,-1.8444627849645774,-0.005173575084512736,-0.0019584780441405615,-0.09785715996351287,0.00047433946764733736,-2.4434320145305115,0.293566666379169,0.0015830487825914633,-0.0011681836177895961,-0.10339024348171083,-0.20474931647447447,-0.05995138397838325,1.3782919785055996,-0.0021233714889622975,0.002595552016939369,-0.009862275476359561,0.0006007323814288025,0.9579332762847336,-0.6769270361414775,-0.010346659017676556,0.0013624740864744166,-0.14875319675954468,-1.025309221143381,0.0582840378212798,-3.1779964009489787,0.005587278446919477,-0.01031447235372638,0.08149948202517139,-0.002350741369419446,-0.9828410928860815,-2.2415796529067706,-0.03286328550331715,-0.001218121282441532,-0.07527767257979515,-1.022914124382087,-0.19319212401864747,-10.602112816906422,-0.03588455361758312,-0.03279692070476628,-0.2800307261599663,-0.017175668532177578,-11.394685460360504,0.2403459056550763,0.00079667809931403,8.377930967782463e-05,0.043179861784947135,0.2145349312111276,-0.05161936590521121,1.1384286982795413,-0.0011721973743918977,0.0015524385109970719,0.062170992232721344,-0.00035729410148991345,0.7676511719567489,-0.050256124081596305,5.507733779155817e-06,-0.00019503453067637135,0.07659713712047193,0.30211981378861547,-0.07726144865129234,-0.24936814404777585,-0.006099432628389902,-2.552888742229232e-05,-0.07725525303106426,-0.0003550975199624295,-1.102263641194596,,,0.4609756097560974,1.2682926829268293,0.6219512195121951,0.012195121951219513,0.6463414634146342,-0.024390243902439025,1.0382407382782455,0.01860967447665339,0.02909747935470217,1.1479585005254804,0.25042626748648017,0.22887170589962488,2.186199238803726,0.479297973386105,2.0398001944378317,1.4635408007009865,0.302096152776063,0.27416324096078204,0.0,0.5762593937368449,7.862291305352126,1752.0,456.4993999999999,250.0,646.0,11604.713979012471,6927.125729000003,105.33571114546997,460.22369999999984,338.89583333333337,561.5489960000002,15972.732184774715,1992.0,491.70369999999997,308.0,666.0,11126.328429178655,7615.842245000001,133.501940966,501.33779999999996,259.25,595.4020599999999,20094.625215655004,2996.0,828.9806,493.0,978.0,19882.677050004393,11375.801133000004,198.186164359584,840.7208,458.1944444444444,1013.8648519999997,29357.27061987043,3124.0,990.6799999999998,533.0,882.0,24291.93595065938,11508.739945000001,229.11982551873493,1004.9149000000002,503.08333333333337,1222.6412199999997,32802.04513625621,3454.0,1162.2130000000004,581.0,958.0,29542.17063729777,12672.734445999999,246.96154615262103,1175.8774000000003,583.6805555555557,1439.1388959999997,35273.62169949266,3622.0,1195.677,595.0,932.0,29624.94032153263,13248.130400999997,256.30062990413103,1208.7319000000002,678.4444444444447,1471.5707799999996,37005.0827662096,3507.0,1264.816,584.0,851.0,31287.07378996134,12468.074055,268.69353588533903,1280.0772,668.9166666666667,1564.570164,37747.449205157056,3328.0,1347.388,585.0,805.0,35827.83376004271,11809.007619,265.82632574244997,1362.1212999999998,676.1527777777779,1695.152532,36166.08321104564,3115.0,1298.652,551.0,743.0,34551.45481349575,10952.990198,256.82718672990296,1313.2648,603.5416666666667,1637.0272479999999,34562.207720347746,534.5915492957747,10.646915492957746,1.7514341332015102,47.183098591549296,320.59154929577477,109.52435262215866,2532.359897661971,15.542046628229151,9.798785915492951,107.23298122065724,6.688371718309854,3370.4877401555595,31.572307081928248,0.45320335250943306,-1.1343921569940443,20.27137472723666,142.69906764530842,1.747628607132152,147.04269387819784,-0.7735383488033306,0.4750923427891395,-8.132550585201345,0.0457529172783151,-11.661724105634661,205.18706605832185,5.404414322555056,0.12859528106462373,6.810751834953385,140.98988295973027,18.862968722405128,957.5913928065847,2.6772167418473574,4.949340884745096,40.55933980250831,3.4313004514977137,769.8027926051573,-60.426502678040066,-0.12686784368180298,0.2893135009985404,0.03431858758183132,-17.21523507240625,-15.395730413313215,-287.73619445447406,-0.8070777131839868,-0.3055225748859276,-15.265716954308008,0.07399695695298462,-381.1753942667598,54.0162666137671,0.29128097599682923,-0.21494578567328568,-19.023804800634792,-37.6738742313033,-11.031054652022519,253.6057240450303,-0.3907003539690628,0.4775815711168439,-1.8146586876501594,0.11053475818289965,176.25972283639098,-125.23150168617335,-1.9141319182701628,0.25205770599776706,-27.519341400515767,-189.68220591152547,10.782546996936762,-587.929334175561,1.0336465126801033,-1.9081773854393802,15.077404174656708,-0.43488715334259753,-181.82560218392507,-443.83277127554055,-6.506930529656796,-0.24118801392342332,-14.90497917079944,-202.5369966276532,-38.2520405556922,-2099.2183377474717,-7.1051416162814585,-6.493790299543724,-55.44608377967334,-3.4007823693711607,-2256.1477211513798,53.11644514977186,0.17606585994840063,0.018515227438799242,9.542749454473316,47.4122197976592,-11.407879865051678,251.59274231977864,-0.2590556197406094,0.3430889109303529,13.739789283431417,-0.07896199642927088,169.65090900244152,-10.75481055346161,0.001178655028739345,-0.04173738956474347,16.391787343780994,64.6536401507637,-16.53395001137656,-53.36478282622403,-1.305278582475439,-0.005463181908370557,-16.532624148647752,-0.07599086927195992,-235.88441921564356,0.7109192469072213,0.5651646903312746,0.4366937090851178,0.2925048338708199,0.28523023339330433,0.1555068233505115,0.17220343460375775,0.07653544846642789,0.10938571508894884,0.039326793402052786,0.07138549470701366,0.022147204185620408,0.04551650230613782,0.012213908435357246,0.029882581516923436,0.006834647180716433,8.05306439250322,5.672830598482158,3.598370522483783,2.1725770423456288,0.6217741414988258,-0.48204338249978657,4.022272377943629,0.9770596755351294,6.052871732730995,0.9876232370949367,14.781826942652746,10.933408965813522,16.027419335564232,11.684025287290062,2.0115318672150337,0.7003774598534381,3.548369472826881,2.2224911710317463,7.009378882611749,1.1932663944648172,3.7605794378814528,2.4184365826183742,20.918659830544648,14.694123216271308,0.2562566389167467,0.625101239679203,0.7862570857117807,0.8566087657229803,0.8713375013472339,0.8756984135369738,1.2266883681302603,1707.829134039481,0.0,3.0,6.0,0.0,12.0,2.0,4.0,1.0,0.0,4.494474883600128,2.111948407071467,1.0709732396803906,0.6165413733917946,0.5214021127979409,0.4932330987134348,119.43209728237679,3094.426718895921,83.7077534495825,43.58347491402706,88.43424573590613,,18.0,1244.0,17.39273834519097,14.69560176298435,29.515232791958724,24.614387024838436,28.67462758971399,0.0,25.338311246863228,55.4546737473835,25.60811232885902,13.571164827906742,18.899999999999995,52.0,25.5,0.5,26.5,0.0,0.03902439024390256,-1.0,0.1869687691365588,0.06061194754735333,-0.12635682158920547,0.026545660805445404,0.18458823529411772,0.0,0.6295774647887311,0.8707317073170731,0.4426086956521723,0.5689655172413778,0.8441860465116277,42.56787026940806,0.762996653542789,1.192996653542789,47.066298521544695,10.267476966945686,9.38373994188462,89.63416879095276,19.651216908830307,0.5294117647058822,0.15873015873015878,0.02645502645502646,0.3386243386243387,0.3103448275862069,0.42723872170676314,-1.6108684161323434,-0.059719365981318044,-0.02268828755115976,-0.05753101486186941,0.5727612782932371,2.1595492316340716,0.04227470902259588,0.03041618636104326,0.050222075154280725,-8.195113171881456,0.722794815049004,0.7118706513336974,1.6810317942445498,0.7615721393034826,0.38574524792783277,1.1887964176416759,0.7287548719426427,1.1242046506207224,0.6897425924280934,0.6963031878505954,0.766063881583238,0.9652081718762857,0.6741420164137422,0.6079390585499864,0.9500683708492447,1.217000932835821,0.7053611144670939,1.001460712312135,0.6793857008150721,0.9352437120059586,0.5994660066215448,0.5015764311693347,0.6185543478279413,0.8450495535389566,0.9539394129775096,0.8893237194793483,0.9443318214081405,1.1269517795637198,0.9475672454540739,1.117880836045183,0.9564611717458621,1.0602325207060976,0.8930135624366787,0.9136625551217156,0.8958698034092525,1.0392542875264597,0.9098270823883031,0.9038426083056921,1.164092448848175,1.2175048669695003,1.0270585892582216,1.0796216149330409,0.9116645320832858,0.9959121824045598,0.8953380162747336,0.8449042375788439,0.8899568909582308,0.9569344945529892,1.0386813465378117,1.0916091405024912,1.050720459753836,1.335223880597015,1.228640906964428,1.0220678408872912,1.0369167394893746,0.9522262192171029,1.0843814441155766,1.0750234130696579,1.057198434224425,0.9676481688800718,1.2412950774474643,1.2351587952238003,1.0484926050683434,1.0827152118196894,1.1722332720048205,1.147389857961059,1.2401037249561568,1.1723751351184157,1.2419738489585748,1.3977898195711853,1.2327333672750005,1.2066862451788525,0.9675420789683123,0.9072366075979148,0.7962885389711675,0.9196866346998042,0.8926513228962611,0.9644855716180631,0.9693089342636222,1.0131188719699586,0.9137589681013953,0.9920273296811493,0.9089280265546529,1.0106391922038953,1.0050034570279605,0.9057688929898743,0.8904080252522527,0.8319151904031246,0.8636925208188426,0.9666853631632653,1.0072790926854989,1.0478211052588937,0.9195448267677521,0.9316622403395468,0.909972997895725,1.0593173671535332,9.0,0.3817039077645138,5.1111111111111125,3.666666666666667,3.0394444444444453,1.6986111111111108,1.1944671201814057,0.7639243197278912,0.6946334089191233,0.5853395061728395,9460.659860856085,10429.87281445913,4108.323744656057,3800.0147709941702,14.772862936413153,0.45166731436877977,8.100443608385339,0.8237103608894609,0.0,0.3103448275862069,1.6552722359045546,4.037798712433215,5.078773879824292,5.533205746112888,5.628345006706741,5.656514020791247,0.20000000000000004,0.007068590884528033,0.07863247863247866,0.05641025641025642,0.043420634920634915,0.023268645357686454,0.017827867465394113,0.012125782852823664,0.011976438084812465,0.01045249118165785,0.4611831857902726,32.39506172839506,14.4,7.809626825310979,234.55141531521957,0.0,4.647839145860867,304.62586860458134,,235.40524576434657,231.8482707313204,234.5295046529482,235.45278789357394,325.81090231246935,234.14827476497905,235.59442815255326,285.90564169344543,0.055908947202023496,0.040296413296981734,-0.6131496592403147,0.406718407960199,0.42137246287672403,0.015105514969740034,0.05496865473184871,-0.04711625101358495,0.04589896017586645,-0.07179521138322616,0.006475830518146409,-0.0032754207514660645,0.21290029903045637,0.2815614598918424,0.040726735658135435,0.08006763059701495,0.24394069611633426,0.09553174899197933,0.20975058726360557,0.09554846263272715,0.2801711911744461,0.20980260495051764,0.2845684344935153,0.12668789191426214,-0.05144452010560134,-0.005423273437417321,0.07518109412891813,0.0003310371220819205,-0.02443963060341231,-0.06397692368766689,-0.051713367382492645,-0.023634199522553925,-0.014190731620549395,-0.0647921775401595,0.00503532154332346,-0.05147138527305827,0.03898908117866453,0.010556716040278236,-0.047356069686417715,-0.1555791693705386,-0.04534493033774824,-0.038863943593892905,0.03864329496144948,-0.009700098019426706,0.01880683941786316,-0.006529908530479603,0.006377037772090679,0.020179056522269694,-0.08990381465879407,-0.0689977102514747,0.055232256986368626,-0.22384025816861636,-0.22707072242262463,0.037783073683958425,-0.08910176814745013,0.02552410111875222,-0.07473655853187722,0.05396159985406124,-0.0249541509141715,-0.02070374467277876,-0.2977079521104181,-0.21915204194856644,-0.04938045308918169,-0.11327604402231263,-0.22654029087997973,-0.12523827328744108,-0.2972523813441133,-0.16392971709535378,-0.23763978416516524,-0.1854110678546306,-0.18232725648997986,-0.2400313337583173,0.03192074271280534,0.005312726027431109,0.0033962630248917085,0.06497602485311,0.047512107382272815,-0.033462649096074264,0.03191822680989111,-0.005354894086513717,0.011248652152560787,0.04116401874009338,-0.0037928336333845833,0.016170725844685513,-0.006674600102627435,3.672886279399108e-05,-0.007906350239223729,0.11526154275352209,0.06690914600247826,-0.05008532552724655,-0.006991556865095894,-0.027863750957297543,-0.00018497710049128775,-0.05115145455033674,-0.0037695159568229748,-0.023219404596085055,14.494863802116043,28.364439374473214,12.949604599899182,15.90591872657523,39.90692977816646,45.52476834106996,47.14199097477202,47.547835011422464,47.57622937761964,83.6318079719511,60.00517282874045,12.385942263818583,11.240692879392064,0.0,23.626635143210642,12319.738807751746,8109.204466281232,5994.911317801479,252.0,65.0,86.0,117.0,142.0,153.0,171.0,194.0,217.0,558.222682680001,45.0,5.3981627015177525,6.259581464064923,7.1631723908466425,8.048468743668883,8.95531908176395,9.850455905984322,10.758136895861702,11.658436069470238,12.566773972697865,0.6901408450704224,1.0023661971830984,1.1300012770780261,0.6550274924042634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6734063422450873,0.9877381938690967,1.0180339136054493,0.6473801842195042,8.0,4.0,1.0,2.0,0.0,0.0,10.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,23.244791870538805,17.119383303832073,23.821304797110265,5.824404497999927,0.0,0.0,14.573052889090853,5.213385095654868,10.197363616602075,55.4546737473835,49.09577279274373,18.52902952053558,0.0,350.63991294957225,-1322.0589157963464,-49.01239570570864,-18.620548109807693,-47.216389849869515,470.07201023194904,1772.367803099575,34.69535774387386,24.962926804219364,41.217855886036624,0.5,0.7907918018398938,0.12004677016739632,0.0,0.13755394713496846,81.40436467127691,0.2092081981601061,9.0,0.2222222222222222,0.2691610246305339,0.6565796339213426,0.8258508490074874,0.8997452478271248,0.9152156824230626,0.9197961982617,4.170020000000003,,2.357142857142857,2.8282922289436945,2.3903026280156943,2.3505945454852877,-9.60285649512582,2.519430844553244,2.3325467599861396,-4.309914637808727,146.7189999999998,23.47222940681927,0.0,30.175211976650374,0.0,59.2892812260237,0.0,93.44406279516289,0.0,22.514758973090913,4.51085950651685,0.0,5.860786223465865,3.4339872044851463,7.387090235656757,5.777652323222656,8.998013113095823,7.853604813097837,10.65845863548799,48.99999999999999,15.709876310315058,16.546100138151463,2.508647621260984,9.819596597376384,0.0,0.0,5.500725058160847,1.777578241747163,71.16799999999998,0.0,24.862703560068056,0.0,0.0,0.0,0.0,0.0,-0.7028827812999878,80.23009067253986,5.822382246255434,0.0,0.0,41.251044659442925,29.910373758135243,6.923737199690624,66.28277722321243,62.159775605871395,0.0,22.514758973090913,0.0,46.5069519607027,47.8118502994012,52.383155513130006,609.2517372091627,,470.6955089502959,463.5585759880581,468.94927908311894,470.79091263858766,653.963964745701,468.1736504643701,471.07507353632667,572.8624820790392,52.383155513130006,609.2517372091629,,468.45334867155043,460.87149162028595,466.8298091075885,468.5549812416627,661.2246611200643,465.77711868540456,468.85630954512055,576.1211980246997,4.9143630715231215,445.24562434052956,,345.56111794925266,340.44559872235345,343.3183650705325,345.62649269010285,474.73701934552804,343.70709564696926,345.8378661952926,417.29452480175587,1.2776379393446342,14.859798468516162,,11.480378267080388,11.306306731416052,11.437787294710217,11.482705186307015,15.950340603553682,11.418869523521222,11.489635939910407,13.97225566046437,2.5153039872028726,304.62586860458134,,235.40524576434657,231.8482707313204,234.5295046529482,235.45278789357394,325.81090231246935,234.14827476497905,235.59442815255326,285.90564169344543,70.12941176470586,0.0,6.701859683184358,0.0,0.0,0.0,10.914954633127364,72.2804078659869,1.379088730084331,0.0,5.516462712663143,0.0,0.0,0.0,-1.413752518531663,0.0,0.0,45.963993079584796,649.0122605241996,117.52432874922337,286.6837085827583,360.5929454675247,392.857607974015,399.61249547617865,401.6124954761786,1483.0,166.65850722587626,171.69966265732145,95.48045205502892,162.15999999999997,162.15999999999997,1.0,9.299553165215817,6.491853096329675,4.508411185247551,6.301627444608863,,6.304145162775241,6.304032940850883,6.301659868347481,6.30413956353227,6.281975676502864,6.304013463187851,6.304159077343436,6.296327195561342,0.10996124842067198,0.15369823035631375,,0.1537596381164693,0.153756900996363,0.15369902117920686,0.15375950154956755,0.15321891893909423,0.153756425931411,0.15375997749618137,0.15356895598930104,2.9169317780723762,3.2517948982887996,,3.2521943530907023,3.25217655164097,3.2518000435715835,3.252193464905974,3.2486715028839876,3.2521734619215312,3.2521965602976235,3.250953452274484,404.3700000000014,925.4789739437363,309.59878648765005,,309.5196404162397,309.5573650541979,310.0517866750942,309.5206809810314,312.1413819407309,309.5545838992538,309.5156307149697,310.3801020157127,22.572657901066737,7.5511899143329275,,7.5492595223473105,7.550179635468241,7.562238699392542,7.549284901976375,7.613204437578803,7.550111802420825,7.549161724755359,7.570246390627139,8.241298386874426,7.146264195804619,,7.146008522355398,7.14613039616971,7.14772631102815,7.146011884219741,7.15444320612547,7.146121411833521,7.145995567677508,7.148784655633733,17.11363755178669,29.53039008077659,25.302015871831276,2.5962310647451563,-0.08309929272346173,15.709876310315058,1.3652845330824293,6.715663880186259,0.0,478.30569467551356,287.7743573010446,-1085.029515342496,-40.225057539365864,-15.28210584989431,-38.751054119374864,385.79370355126656,1454.6033882668598,28.4748937794456,20.487371665730418,33.827985773647896,6025.0,65.0,3.634106402841613,1.6042248586296337,0.28867513459481287,0.11180339887498948,0.8942962729389281,0.2612690185485441,0.11785113019775792,0.025,0.0,0.0,0.0,0.0,0.3191300322941827,0.06819401310833123,0.7062472138135344,0.17116113182843212,1.03903709816204,0.22485890951739415,29.147689123196074,23.17175230358226,19.6512169088303,13.162717524186895,18.53996517056478,10.107943517783248,14.809495375923166,6.582048568112798,12.798128665407015,4.601234828040176,10.13674024839594,3.1449029943580977,6.964024852839086,1.8687279906096586,5.109921439393908,1.16872466790251,6.966067559360416,2.510672999786635,11.377684761469737,3.3187440374736394,18.04790036743634,4.38921472542541,134.67332998952884,55.45146348199582,35.26836566935404,29.696510977300395,28.676359066813152,28.55946478175668,220.0,261.0,79.84579,40.46021000000003,0.43661971830985913,385.12,13.506944444444445,8.888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,27.0,27.0,71.0,0.0,0.0,75.0,27.0,2.0,13.0,62.0,29.0,45.0,46.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,11.0,2.0,3.0,41.0,12.0,0.0,6.0,6.0,0.0,5.0,10.0,0.0,0.0,0.0,3.0,5.0,4.119037174812473,8.191209816357071,4.760034896549007,5.352450375127964,5.965345135874355,6.3777893085637185,6.625392368007956,7.005817350674467,7.410044571725841,7.789383393781728 +2726,CN(C)CCCN1c2ccccc2Sc2ccc(Cl)cc21,0,31.85,5.7755575,3.225,5.201234567901234,159.17272006569328,128.71833677499998,1.7860336298032748,5.9406925,2.14674592287761,7.4265583500000005,234.4438753887345,27.714285714285715,6.126785714285714,3.8333333333333335,5.391534391534392,143.94600939238327,106.07371661904766,2.013108140238096,6.317928571428571,2.526797961983147,7.600208809523806,273.8753817219084,24.26027397260274,6.05068493150685,3.6027397260273974,4.109589041095891,154.60095057171281,91.82565060273969,1.771060465255356,6.203479452054796,2.219896837476747,7.600570027397256,232.9447143946528,21.72043010752688,5.8912129032258065,3.150537634408602,3.22341696535245,153.6024857705272,79.87873602150538,1.6717063367547096,6.058937634408602,2.036594539581398,7.511310430107527,209.56895660937153,17.16190476190476,5.707942857142859,2.7904761904761903,2.4761904761904763,158.78882081012745,61.905425990476175,1.452888817388305,5.843276190476191,1.85554575739761,7.366544057142857,177.9803556127418,18.721649484536083,5.696775257731958,2.7731958762886597,2.3867888507063766,153.85193856095955,68.36924783505155,1.5264568479101235,5.85041030927835,1.9604257114439125,7.33266149484536,187.1076660244145,15.393939393939394,5.6908787878787885,2.494949494949495,1.9427609427609425,159.33729382028,54.3960746868687,1.3660270414785456,5.8318686868686855,1.9317766138753798,7.359199474747475,166.09863771471964,16.094117647058823,5.691738823529412,2.388235294117647,1.5947712418300652,158.3067407625125,56.730700588235294,1.3705605117897766,5.851637647058824,1.9435003631082064,7.385736988235296,164.94613098632138,15.416666666666666,5.690820833333334,2.0694444444444446,0.882716049382716,159.19639544713948,53.2021008611111,1.3493107221928609,5.854838888888889,1.954046639231824,7.403099222222222,156.80241195483808,14.210000000000003,0.050304937499999966,0.007519402236653228,0.584375,2.917777777777778,1.550120662254868,65.172328794375,0.32561775578421936,0.06370443749999996,0.1988260173754001,0.03495678749999999,56.31638374565591,0.7542857142857137,0.006216669642857091,-0.001525284795600997,0.24479166666666666,0.9429512051734272,-0.29606518327749604,3.4731216591964205,-0.0013950460050449812,0.006711157738095268,0.0005040789368635637,0.001334925595238095,-0.2769775924792392,1.3961643835616435,-0.008847916952054828,-0.001624735451332988,0.055008561643835614,0.012798917639100342,0.39965070072518327,6.5908379813099245,0.07818573534066178,-0.0069094032534246334,-0.011903187786693057,-0.005123786815068489,9.976889291013991,-0.516989247311828,-0.005352840725806469,-1.5099878561344822e-05,0.05997983870967742,0.14847736625514407,-0.05914355671790602,-2.453107033084682,-0.007696353928770188,-0.005981937499999979,-0.03123555532611243,-0.003000305779569891,-2.2433334266878875,0.40190476190476165,0.004737776785714287,0.0006843591394306503,-0.0010416666666666667,0.1543562610229277,0.3181559458441451,2.187121585625,0.02827173710986205,0.006057372023809516,0.018640178979685153,0.003411691071428571,6.679334401054593,0.9430927835051552,0.0007167119845360863,-0.0002989339213118919,-0.06427190721649484,-0.1383072419498536,-0.2180322826701856,4.089735791707475,-0.015145187435613706,0.0017759748711340209,0.007478732497717691,0.0022037789948453593,-3.7911176605609964,-0.3963636363636365,-0.003086755681818175,-0.0006759266718826238,-0.08412247474747475,-0.2901558797855094,-0.028026243645349433,-1.7267986277083327,-0.0041086102602193725,-0.0032092354797979843,-0.004325533185844111,-0.0023997203282828286,-0.9496694314382396,-1.0023529411764711,-0.0003671139705882318,0.0006570500731250059,-0.1520220588235294,-0.5602904865649962,-0.3204562263602161,-4.677354423198528,-0.04648636526146318,-0.0013218198529411764,0.0051079686561410105,-0.0007309345588235301,-6.455997644491118,-1.7100000000000002,-0.00531993749999999,0.00027054711087050174,-0.1875,-0.9264197530864197,-0.1745989986718834,-8.369746570763887,-0.04948047494552492,-0.007603673611111094,-0.04025231163948585,-0.0005856736111111095,-12.110504033704345,,,0.5165532879818594,1.2261904761904763,0.5952380952380952,0.023809523809523808,0.6309523809523809,-0.03571428571428571,0.8577252439670632,0.012683167468202564,0.02496888175391685,0.7641954632757384,0.23380856369398406,0.24942320037938936,1.6219207072428017,0.4832317640733734,2.052305181252511,1.6640921953138552,0.20385381515837336,0.0,0.08459450346719646,0.3882129859386558,7.952393682200014,1274.0,231.02229999999997,129.0,208.04938271604937,6366.908802627731,5148.733471,71.441345192131,237.6277,85.8698369151044,297.062334,9377.755015549381,1164.0,257.325,161.0,226.44444444444446,6045.732394480097,4455.096098000002,84.55054189000003,265.353,106.12551440329219,319.20876999999984,11502.766032320153,1771.0,441.70000000000005,263.0,300.0,11285.869391735036,6703.272493999997,129.287413963641,452.8540000000001,162.0524691358025,554.8416119999997,17004.964150809654,2020.0,547.8828,293.0,299.7777777777778,14285.03117665903,7428.72245,155.46868931818798,563.4812000000001,189.40329218107001,698.55187,19489.912964671552,1802.0,599.3340000000002,293.0,260.0,16672.826185063383,6500.069728999998,152.55332582577202,613.544,194.83230452674906,773.487126,18687.93733933789,1816.0,552.5871999999999,269.0,231.51851851851853,14923.638040413076,6631.817040000001,148.06631424728198,567.4898,190.16129401005952,711.268165,18149.443604368207,1524.0,563.397,247.0,192.33333333333331,15774.392088207718,5385.211394000002,135.23667710637602,577.3549999999999,191.2458847736626,728.5607480000001,16443.765133757246,1368.0,483.7978,203.0,135.55555555555554,13456.072964813562,4822.10955,116.497643502131,497.3892,165.19753086419755,627.7876440000001,14020.421133837317,1110.0,409.73910000000006,149.0,63.55555555555555,11462.140472194043,3830.551261999999,97.15037199788598,421.5484,140.69135802469134,533.023144,11289.773660748342,568.4000000000001,2.0121974999999988,0.3007760894661291,23.375,116.71111111111111,62.00482649019472,2606.893151775,13.024710231368775,2.548177499999998,7.9530406950160035,1.3982714999999994,2252.6553498262365,31.679999999999975,0.2611001249999978,-0.06406196141524187,10.28125,39.60395061728394,-12.434737697654834,145.87110968624967,-0.058591932211889214,0.28186862500000126,0.021171315348269673,0.05606687499999999,-11.633058884128047,101.91999999999997,-0.6458979375000025,-0.11860568794730814,4.015625,0.934320987654325,29.17450115293838,481.13117263562447,5.70755867986831,-0.5043864374999982,-0.8689327084285932,-0.3740364374999997,728.3129182440214,-48.080000000000005,-0.4978141875000016,-0.0014042887062050684,5.578125,13.808395061728397,-5.50035077476526,-228.1389540768754,-0.7157609153756275,-0.556320187499998,-2.904906645328456,-0.27902843749999984,-208.63000868197355,42.199999999999974,0.4974665625000001,0.07185770964021829,-0.109375,16.20740740740741,33.40637431363523,229.64776649062497,2.9685323965355153,0.6360240624999992,1.9572187928669411,0.3582275625,701.3301121107322,91.48000000000006,0.06952106250000037,-0.02899659036725351,-6.234375,-13.4158024691358,-21.149131419008004,396.7043717956251,-1.4690831812545295,0.17226956250000003,0.725437052278616,0.21376656249999987,-367.73841307441666,-39.24000000000001,-0.3055888124999993,-0.06691674051637976,-8.328125,-28.725432098765427,-2.774598120889594,-170.95306414312495,-0.4067524157617179,-0.31771431250000043,-0.42822778539856704,-0.23757231250000005,-94.01727371238572,-85.20000000000005,-0.031204687499999707,0.0558492562156255,-12.921875,-47.62469135802468,-27.238779240618367,-397.57512597187485,-3.95134104722437,-0.1123546875,0.4341773357719859,-0.062129437500000065,-548.7597997817451,-123.12000000000002,-0.38303549999999925,0.019479391982676127,-13.5,-66.70222222222222,-12.571127904375604,-602.6217530949999,-3.5625941960777943,-0.5474644999999988,-2.8981664380429812,-0.04216849999999989,-871.9562904267128,0.7056964989228289,0.6626589385383911,0.44121161067568887,0.3622248713191823,0.28983928775356355,0.21907854439794272,0.17386854122732906,0.11762286722713432,0.10851016876350277,0.06604934608464808,0.06972886502022256,0.03867475574071227,0.045341127775244267,0.023008614879416148,0.030169563645467513,0.013604149896166675,17.001103643867868,5.697870248466721,3.1280656190470717,2.179291045408418,0.3643385432662963,-0.4161436714668219,3.231546339692209,0.9885995534916853,5.0238136619805,0.6606439271312463,14.545272699193907,10.33723140009333,35.45051748068623,11.710307574925658,2.916675894376116,1.0450438792518322,3.182345328695598,2.2338825549278427,2.2632205705119843,0.6282316284022946,3.492972617885857,2.433980813970939,24.43424422709105,15.591120267560907,0.2716205915929398,0.5485918878694769,0.7059844373010532,0.8208083257832545,0.8476661605459107,0.8476661605459107,1.686946150936141,642.4372765270095,0.0,0.0,2.0,0.0,12.0,1.0,0.0,0.0,0.0,3.804937276417098,2.258062972936509,1.3790314864682545,0.7377443751081723,0.5877443751081719,0.5877443751081719,74.26146739133415,597.6774500268496,27.633322847193917,14.941936250671237,30.708579058840677,,9.0,332.0,0.0,0.0,0.0,0.0,24.53296774849249,21.165739500402672,0.0,17.828252017852726,60.29336583782499,11.600939890232516,10.847619047619046,25.75,12.5,0.5,13.25,0.01655328798185935,0.0,-0.75,0.11143664245359158,0.0585714285714285,-0.05286521388216309,0.0,0.05466570188133135,0.0,0.5538095238095241,0.7834467120181404,0.4423728813559325,0.4952380952380956,0.7834467120181404,18.012230123308328,0.26634651683225385,0.5243465168322539,16.048104728790506,4.909979837573665,5.2378872079671766,34.06033485209883,10.147867045540842,0.6593342981186686,0.15803336259877088,0.0,0.3042142230026339,0.29411764705882354,0.4267444583274695,-0.5032012528481532,-0.026788921017509588,-0.01258003132120383,-0.03354675018987688,0.5732555416725305,0.675961693567927,0.027729097666816187,0.016899042339198173,0.02703846774271708,-5.215603929741426,0.6550970141751281,0.871142476961488,1.4107552382612276,0.6951871657754011,0.7303944680182304,1.2932642287268812,0.6549546102615449,0.8682553961247005,0.754685036097928,1.0547038090474359,0.7555001963904312,0.9191122670707879,0.732192262828608,1.5572608744202117,1.9447170109557073,1.14277342319244,1.2336113748361137,0.871983053014634,0.7258549896546148,0.6673455726133982,1.2515971830148873,1.055300265595893,1.2591294185871043,0.7319547613376512,1.0539204558352817,1.193012021161746,1.2835617803424733,1.0225978954631707,1.0096170907413322,1.1009501021066923,1.0433424611838027,1.0574311858210517,1.1043174088906869,1.1201880881211894,1.1100876931775892,0.9988551483866973,0.9168090881672866,0.9139624003820979,1.0021540329059233,1.0566844919786096,0.976897689768977,0.805858618407666,0.9037703919631389,0.9324016679743292,0.8450796136230136,0.81892576041185,0.7736393519733878,0.8601883129370635,0.7936548241763821,0.7492662372776706,0.74934469988369,1.075031699652682,0.9783607226702051,1.10559200628553,0.7964319333528128,1.0107117526333256,0.7511548050306053,0.8724693493483481,0.6317244238561386,1.0484259845848436,0.9252447060328832,1.0542815639482341,1.0860879877756093,1.0448873764381787,1.0660857752441912,0.9644201037010637,0.9327214861092158,0.9154753818345557,1.0408752327829784,0.9938419919849552,1.0444224324189697,0.9826346157927018,1.0949931696816657,0.9523188103611919,0.7561426865720297,1.2268008807801196,1.1574694234129295,1.1327922334511382,1.1032576963887228,1.0883359581233638,1.0380969512985838,0.9473376496223531,1.1006602794950768,1.0931296765060166,1.1816795683790755,1.0783546346717952,0.7741523097695256,1.2397504456327986,1.235475110011001,1.0261129181665427,1.2001983939335272,1.0825669614572397,1.1908396622030186,1.2426073066448962,1.1978487964128093,1.190229251376056,4.0,0.0,2.222222222222223,1.375,1.3911111111111114,0.5208333333333334,0.5036734693877551,0.3246527777777778,0.21793902746283694,0.0625,4360.599187551903,4900.043759887299,2117.34638048594,1927.7992193119917,10.304504536497218,0.4415239767858439,5.7548187147351975,0.7905871665622694,1.0,0.29411764705882354,1.5169908184702647,3.0638651219508537,3.942896608419108,4.58418371977919,4.734183719779191,4.734183719779191,0.17391304347826086,0.0,0.06944444444444448,0.04166666666666667,0.04637037037037037,0.018601190476190476,0.020986394557823126,0.016232638888888894,0.01556707339020264,0.010416666666666666,0.41319848893951416,15.879017013232515,7.05078125,3.673469387755102,135.25342033666848,1.0,3.97916784620188,88.81522580190804,,67.92163872631158,71.28495889517413,70.07843314475869,67.90268040688832,90.85940746913067,71.85825762334784,72.35989981359539,86.95616475590504,0.05308133105458927,0.12357971109410672,-0.20284654917993564,0.41889483065953653,0.3231744419863231,-0.1909949273541246,0.05329135422112128,-0.004284305693604286,0.10534835564783493,0.002535276537334752,0.03818787968540002,-0.004918241798517549,0.0982522437411431,-0.17588565639416276,-0.21607242174294605,0.09413229800014651,0.004386529274634543,0.25781909141436465,0.1011293919249787,0.2401150857156388,-0.10846031335610866,-0.05986735510684623,-0.1465748766264203,0.17715784692555975,-0.036382072294991415,-0.10640785958250067,-0.002008122199892521,0.10263929618768329,0.0508871399960509,-0.03815416319389835,-0.03764031573621485,-0.023636161702036952,-0.09390142562674669,-0.15709993962780586,-0.08582899042338751,-0.039834472270441755,0.028283234476056407,0.09418114843526622,0.09101243927273243,-0.0017825311942959,0.05290199349605291,0.20524592284405951,0.03355905222484193,0.08682492464752808,0.0950855585815277,0.09375120633478737,0.0975973856701956,0.11860375181795683,0.06636824655208691,0.014247348673002263,-0.03975501135645363,-0.10998401234908207,-0.0474015680711608,-0.14065503930063547,0.06275264160976948,-0.04651216700126798,0.027878354174840993,0.037614456077934816,0.06304294966593713,-0.06731820135474222,-0.02789328897703282,-0.061360888915092615,-0.08989101136096006,-0.14395289796359315,-0.09944413244743276,-0.018080040043193368,-0.026495886515833265,-0.01261789379490125,-0.050376953407648986,-0.02175536804963077,-0.06864819395325814,-0.016863111021603806,-0.07053856025168691,-0.0072977721240232545,0.08738062580589503,-0.26014469959106634,-0.19202644246325082,-0.20672985927048254,-0.07176902390516125,-0.14276360682329867,-0.020749258682979145,0.02569064513572557,-0.020909660500797747,-0.11463800079295958,-0.1203377902885292,-0.1057537841091641,0.03597986945713894,-0.32085561497326204,-0.3175086739443175,-0.11263574696043639,-0.12842485032522385,-0.1519587739506278,-0.11935861785312993,-0.20244992164926853,-0.016754217220650205,-0.21504406405779766,12.360260297242299,16.89880890185093,4.329638385866451,18.826052362429085,32.54311987201048,38.28466569666545,40.58153310491641,41.28288310491641,41.28288310491641,43.09840880630273,34.94593610159096,4.28093011832584,0.0,1.7764845728111258,8.152472704711771,3735.562846419089,2620.2327944455305,1396.6760155012016,93.0,32.0,42.0,58.0,80.0,88.0,102.0,113.0,116.0,318.09574728800055,23.0,4.709530201312334,5.556828061699537,6.444131256700441,7.323170717943469,8.222285073872717,9.116139576577355,10.020781579758486,10.922064077951033,11.829435490133815,0.7,0.9571,1.1149599855243644,0.6636895345932896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7236387275449102,0.950686274509804,0.9900764748725418,0.6485300478322819,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,9.799819461700956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.49555897654685,57.39275733650101,21.358356670689453,11.374772549367124,216.30220016789102,-255.05553966625118,-13.578389697013177,-6.376388491656279,-17.003702644416745,290.56366755922517,342.62191036059835,14.05493315018074,8.565547759014958,13.704876414423934,0.4444444444444444,0.9980585427338781,0.28795922709705307,3.4173533238314246,0.056056375862280856,80.30482501378862,0.001941457266122,5.0,0.17391304347826086,0.2850453428575253,0.5757058470771578,0.740877467361302,0.8613764857482941,0.8895617594546603,0.8895617594546603,4.894400000000004,,1.5577731092436975,0.46335311480315744,0.49525958824094285,1.5715438266751696,-0.37828075120071303,0.5270343027129204,0.561666263045662,-0.3977817515777802,92.19400000000006,0.0,0.0,4.899909730850478,0.0,16.21178857396156,32.08476650803001,47.487202792972596,0.0,0.0,3.8501476017100584,0.0,5.1647859739235145,0.0,6.688354713946762,0.0,8.323365694436081,0.0,10.02424394117191,27.999999999999996,14.766852306766328,0.0,0.0,0.0,0.0,0.0,5.909674246241708,0.0,38.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.59839942097457,4.899909730850478,11.374772549367124,0.0,32.08476650803001,0.0,0.0,6.4208216229260096,52.25553643026682,5.022633313741326,0.0,0.0,26.547581383731583,28.94554910179641,27.18242529190058,177.63045160381614,,136.16932546775567,142.5257889222718,140.10969870968495,136.12948678968644,182.0091784228756,143.67178486408366,144.72355974093404,174.10174939351384,27.182425291900575,177.6304516038162,,134.90827104598696,142.1468869622321,139.69788275588303,134.8572846442828,182.17129874481884,143.2451380476018,144.26887752799234,174.3101112633879,4.969530971205526,122.55680486408961,,99.87155940416531,100.53331193044765,98.52036857769811,99.86334628271453,136.59956844645512,101.61303334804117,102.57862347760188,127.06398745818429,1.294401204376218,8.458592933515055,,6.484253593702651,6.786942329631991,6.671890414746902,6.482356513794592,8.667103734422648,6.841513564956365,6.891598082901621,8.29055949492923,2.484765485602764,88.81522580190804,,67.92163872631158,71.28495889517413,70.07843314475869,67.90268040688832,90.85940746913067,71.85825762334784,72.35989981359539,86.95616475590504,38.02745098039216,0.0,4.231778785588309,6.20938393207077,0.0,0.0,0.0,39.60305899490167,3.2110700900730658,0.0,0.0,1.8239876490719742,0.0,4.625030767965622,0.0,0.0,0.0,25.941201913291273,505.8818093052682,60.67963273881059,122.55460487803416,157.71586433676433,183.36734879116761,189.36734879116761,189.36734879116761,768.0,118.14436603594919,0.9840584218480424,55.05089792518833,31.78,6.48,0.8,8.464372415232654,5.523561956057013,3.881739734754366,4.503462533352638,,4.488088608342129,4.49890836334984,4.499567063209451,4.4881138542714805,4.474923613445712,4.499049507576028,4.4985464922904175,4.487157983319411,0.18484474927401742,0.21445059682631612,,0.213718505159149,0.21423373158808762,0.21426509824806908,0.21371970734626097,0.21309160064027202,0.2142404527417156,0.21421649963287703,0.2136741896818767,2.0982207831159045,2.246783897485479,,2.2433642561466143,2.2457721261546695,2.2459185287016705,2.2433698812268097,2.240426626689439,2.2458034986567914,2.2456916876161217,2.2431568802229447,240.55999999999972,234.38023896328366,114.98030713686217,,115.66655894063071,115.21402662452958,115.220820521275,115.65522402374225,116.19231447142914,115.13682505070754,115.13026860503504,115.54598783999351,11.160963760156365,5.475252720802961,,5.507931378125272,5.486382220215694,5.486705739108333,5.507391620178202,5.53296735578234,5.482705954795597,5.482393743096907,5.502189897142548,6.19888209411424,5.486698216140837,,5.4926489046586795,5.488728844472642,5.4887878103524255,5.492550903365828,5.4971840464385435,5.488058548911318,5.488001602470815,5.491605958562153,0.0,7.222372037806893,0.7975376879146723,2.5147952884857654,0.0,14.766852306766328,1.12297052154195,2.088099568531116,4.231778785588309,283.6136909233001,109.63620237938247,-129.27894743154232,-6.882422276113519,-3.2319736857885575,-8.618596495436153,147.27680548738,173.6633518972469,7.1239658870129725,4.341583797431173,6.946534075889876,896.0,33.0,1.4385050488558724,1.0669197794925154,0.0,0.0,0.24719387459906544,0.13693063937629152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19673563623996193,0.08606669883808507,0.42285077654860914,0.21720468406673019,14.819626477379408,13.915837709306214,10.147867045540844,8.331172040341192,9.274857208114033,7.010513420734167,7.30247873154782,4.940160423539641,6.29358978828316,3.8308620729095884,5.578309201617805,3.0939804592569815,3.9900192442214952,2.024758109388621,3.0772954918376865,1.3876232894090008,2.870858196052762,1.8546204222045548,4.754376559603993,2.7166814548693328,8.10905349700609,4.198963240612182,70.62286433739827,46.038012463702046,32.11165951469619,26.840716699697666,25.51194546174272,25.51194546174272,110.0,129.0,48.33906699999998,25.450932999999996,0.35,109.04,6.527777777777777,4.61111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,40.0,0.0,1.0,42.0,12.0,0.0,6.0,36.0,12.0,23.0,30.0,0.0,0.0,0.0,17.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,3.0,0.0,1.0,21.0,4.0,0.0,2.0,0.0,0.0,3.0,4.0,1.0,0.0,1.0,0.0,2.0,3.4011973816621555,7.122791050902183,3.970291913552122,4.51085950651685,5.092215281088679,5.685279003091641,5.895779296973574,6.292378996720649,6.70793144705204,7.035956082980436 +35455,CC(C)=CCC1C(=O)N(c2ccccc2)N(c2ccccc2)C1=O,0,21.954545454545453,6.026131818181818,3.272727272727273,7.181818181818182,159.71870135249955,86.58935909090907,1.554015138567727,6.113645454545454,4.452651515151516,7.551961454545452,227.5323369085746,24.282608695652176,6.225541304347827,3.9565217391304346,7.1521739130434785,144.43703792452166,92.10079117391311,1.8803623086956534,6.381328260869567,3.125603864734299,7.629885739130429,271.1819165771562,20.987179487179485,6.148974358974359,3.769230769230769,6.076923076923077,151.055265233862,78.45610158974357,1.6186566818454222,6.272617948717951,2.916666666666667,7.60454461538461,228.52843979263494,18.62,6.207440000000003,3.23,5.4,156.94756719662885,68.06501894,1.4152302565018788,6.300812000000003,3.1533333333333324,7.7024015200000004,198.33501856033104,17.5,6.191277777777778,3.037037037037037,5.055555555555555,162.0550792672109,64.09650850925924,1.30846257639237,6.263505555555553,3.53909465020576,7.727455962962961,184.8953892917531,18.923076923076923,6.219923076923076,3.1346153846153846,4.980769230769231,156.62641559825082,69.6864021730769,1.4485981799383072,6.314134615384616,3.5384615384615374,7.739169461538458,206.9858904997783,17.381818181818183,6.160981818181818,2.7454545454545456,3.4727272727272727,153.813060099319,62.3083124181818,1.4160956514226364,6.262072727272726,3.6505050505050494,7.691115127272726,196.2084097968328,12.24561403508772,6.088491228070173,2.280701754385965,1.9298245614035088,162.25655761378843,40.05984266666664,1.2155414689963508,6.152271929824562,3.1403508771929824,7.688224140350877,157.79316950789908,10.931818181818182,5.538409090909091,2.227272727272727,1.4318181818181819,156.4146875265816,36.457813840909076,1.275843842484977,5.64455681818182,2.1704545454545463,7.157828454545455,156.23929799162724,7.026859504132233,0.09690681818181815,0.011240075701566593,0.5950413223140497,3.708677685950413,1.4856535455235111,33.56713095867769,0.23465695219396696,0.09331404958677679,1.5342487373737377,0.05730859504132229,51.5397697951892,0.40594681997844007,0.010468478260869564,-0.00393294144207794,0.26661875673733376,1.3476464247215234,-0.06681513166507387,1.8799351322314073,-0.006960209288097297,0.009729231045634203,-0.05895229468599035,0.0046919899389148475,-0.30284680906083095,0.6963339690612412,0.023700641025641022,-0.000492937914541275,0.06929434202161464,0.6141661368934102,-0.3330263288408166,3.16534795740623,-0.022673408488281567,0.021936416613689325,0.01286502849002848,0.012785432930705665,-2.3010153958591597,0.01132231404958686,0.008903999999999994,-0.000932681788150536,0.03314049586776854,0.5054132231404959,-0.2507410516303413,-0.06359931685950311,-0.03158079192084148,0.008305404958677681,-0.07826388888888887,0.004596132231404976,-4.7201449080284865,0.9819788797061527,0.0018685185185185194,9.508129819982702e-05,0.017753290480563177,0.5564738292011023,0.20239349611940488,4.735511723982246,0.03414589477472918,0.0040685261707988874,0.2779706790123455,0.0006985497398224865,8.597042247685371,0.34114748887476143,-0.01274038461538461,0.00036824467907931675,-0.13525111252383987,-0.18332803560076277,0.19795468295615862,1.7344644206929447,0.024690604139769083,-0.009684154481881757,-0.02604166666666671,-0.009021070565797814,5.84415017688776,-1.1285123966942152,-0.014399545454545444,0.0018394318942709792,-0.17024793388429757,-1.3219008264462813,-0.26663274796491726,-5.407860715702477,-0.04312142687640494,-0.01388297520661156,-0.09876893939393946,-0.0087111338842975,-9.095991650168108,-2.990176888502247,-0.0513399122807017,-0.0016282268674182615,-0.09424387414818039,-1.9207988980716253,0.3155764257829741,-13.96449889488183,0.013749994183532229,-0.05210176888502242,-0.5597892300194931,-0.025413430767000107,-6.542114402692808,-0.48347107438016496,0.0009977272727272714,-5.736865854349186e-05,-0.11570247933884298,-0.6012396694214879,-0.06312462806867968,-2.337751754132232,-0.01387851137529132,-0.0004797520661156978,-0.0037878787878787164,0.00164699999999997,-3.9261872714816337,,,0.4777777777777778,1.2708333333333333,0.6666666666666666,0.0,0.6041666666666666,0.0625,0.8033016056154604,0.013416225395753342,0.024166225395753343,0.9650254637506867,0.25794654391745425,0.22506279578567143,1.768327069366147,0.48300933970312565,2.0314064696190264,1.6918797107376953,0.18951053039911106,0.1500162284822202,0.0,0.33952675888133127,7.27619267909092,966.0,265.14979999999997,144.0,316.0,7027.62285950998,3809.9317999999994,68.37666609697999,269.00039999999996,195.91666666666669,332.2863039999999,10011.422823977282,1117.0,286.3749,182.0,329.0,6644.103744527996,4236.636394000003,86.49666620000005,293.5411000000001,143.77777777777777,350.9747439999997,12474.368162549184,1637.0,479.62,294.0,474.0,11782.310688241236,6119.575923999998,126.25522118394294,489.26420000000013,227.50000000000003,593.1544799999996,17825.218303825524,1862.0,620.7440000000003,323.0,540.0,15694.756719662884,6806.501894,141.5230256501879,630.0812000000003,315.33333333333326,770.2401520000001,19833.501856033105,1890.0,668.658,328.0,546.0,17501.94856085878,6922.422918999998,141.31395825037598,676.4585999999997,382.22222222222206,834.5652439999998,19968.702043509336,1968.0,646.872,326.0,518.0,16289.147222218086,7247.385825999997,150.65421071358395,656.6700000000001,367.9999999999999,804.8736239999996,21526.53261197694,1912.0,677.708,302.0,382.0,16919.436610925088,6853.914365999998,155.77052165649,688.8279999999999,401.55555555555543,846.0226639999998,21582.92507765161,1396.0,694.0879999999997,260.0,220.0,18497.24756797188,4566.822063999997,138.571727465584,701.359,358.0,876.457552,17988.421323900497,962.0,487.37999999999994,196.0,126.0,13764.492502339179,3208.2876179999985,112.27425813867798,496.7210000000001,191.00000000000006,629.888904,13749.058223263197,309.18181818181824,4.263899999999999,0.4945633308689301,26.181818181818187,163.1818181818182,65.36875600303449,1476.9537621818183,10.324905896534545,4.1058181818181785,67.50694444444446,2.521578181818181,2267.749870988325,18.673553719008243,0.4815499999999999,-0.18091530633558522,12.264462809917353,61.99173553719008,-3.073496056593398,86.47701608264474,-0.32016962725247566,0.44754462809917334,-2.7118055555555562,0.215831537190083,-13.930953216798223,54.31404958677682,1.8486499999999997,-0.03844915733421945,5.404958677685942,47.90495867768599,-25.976053649583697,246.89714067768594,-1.7685258620859623,1.7110404958677674,1.0034722222222214,0.9972637685950418,-179.47920087701445,1.1322314049586861,0.8903999999999994,-0.0932681788150536,3.3140495867768536,50.54132231404959,-25.074105163034133,-6.359931685950311,-3.1580791920841484,0.8305404958677681,-7.826388888888887,0.4596132231404976,-472.0144908028486,106.0537190082645,0.2018000000000001,0.010268780205581318,1.9173553719008232,60.09917355371905,21.858497580895726,511.43526619008264,3.6877566356707514,0.4394008264462798,30.020833333333318,0.07544337190082855,928.48056275002,35.47933884297519,-1.3249999999999995,0.03829744662424894,-14.066115702479346,-19.06611570247933,20.587287027440496,180.38429975206625,2.5678228305359845,-1.0071520661157027,-2.708333333333338,-0.9381913388429727,607.7916183963271,-124.13636363636368,-1.5839499999999989,0.2023375083698077,-18.727272727272734,-145.40909090909093,-29.329602276140896,-594.8646787272725,-4.7433569564045435,-1.5271272727272716,-10.864583333333341,-0.9582247272727249,-1000.5590815184919,-340.8801652892561,-5.852749999999994,-0.18561786288568183,-10.743801652892564,-218.97107438016528,35.97571253925905,-1591.9528740165285,1.5674993369226742,-5.939601652892557,-63.81597222222221,-2.897131107438012,-745.8010419069801,-42.54545454545452,0.08779999999999989,-0.0050484419518272835,-10.181818181818182,-52.909090909090935,-5.554967270043812,-205.72215436363643,-1.2213090010256362,-0.042218181818181405,-0.33333333333332704,0.14493599999999737,-345.5044798903838,0.7126701469898159,0.5769264076412376,0.44585477511057753,0.3079447950469947,0.28622683260307785,0.16780397178276743,0.17296028373209557,0.08116378685997823,0.10775849398605429,0.040837803048933,0.06910188879274415,0.02236297606093256,0.043448310068662004,0.011821045241733738,0.02745841938695537,0.006389426808789054,8.023348463674095,5.699559215189127,3.546080675310466,2.1986763481008684,0.4350635955369612,-0.3837978871912111,3.2370399027281875,0.9773387517019109,6.023295419463948,0.9928966512095854,14.640255822853057,10.960820494306768,16.01119147177104,11.711233082886233,1.9845919441996795,0.7511683502037477,3.4916516078370408,2.248377783136153,7.009358440799989,1.2430768880725103,3.7043927451900696,2.4441897673949637,20.890847630743718,14.701778475055587,0.24898934822443533,0.5126689438727723,0.6288869754363413,0.7358894890696198,0.7889981618078258,0.8047226791210146,1.770973360842955,707.2405624249081,0.0,2.0,2.0,0.0,13.0,1.0,1.0,1.0,0.0,4.019934631715784,2.4955080401560163,1.8236097944892613,1.2049897729239518,0.8979494319165227,0.8070403410074318,99.90990842876991,997.9951873569179,44.137801756693534,22.681708803566316,45.12061134167199,,10.0,399.0,5.917906046161393,9.589074368143644,11.814359458703011,17.795594172293132,5.573104530069267,10.017825047909064,0.0,80.58716519083124,0.0,0.0,11.466666666666667,30.5,16.0,0.0,14.5,0.0,0.022222222222222216,1.5,0.1300356506238856,0.0654649947753394,-0.06457065584854621,0.0,0.11469686411149782,0.0,0.5712121212121213,0.7972222222222217,0.44117647058823567,0.5057471264367819,0.7972222222222217,19.27923853477105,0.3219894094980802,0.5799894094980802,23.16061113001648,6.190717054018902,5.401507098856114,42.43984966478753,11.592224152875016,0.5993031358885021,0.1453488372093023,0.0,0.3313953488372093,0.2,0.41255740488677306,-0.7207046205107837,-0.045319344643940475,-0.016379650466154173,-0.037931822132146506,0.5874425951132269,1.0262149886732574,0.03194073874308516,0.023323067924392208,0.04104859954693029,-3.698568864630902,0.7739923040537947,0.5589973253716486,1.3843744705170924,0.6962182971014491,0.46114206128133706,1.167801861541088,0.7813509953254522,1.0382262737484431,0.5685669713854435,0.5277324304620654,0.5423654437631192,0.9626451557584917,0.7979082321187583,0.5668615646804627,1.1535125956182424,1.1580751424501423,0.7905292479108634,1.3127284655022147,0.8056537488228159,1.0720946763508674,0.5768644728385894,0.5758376657461113,0.5366419533539621,0.9964571768777922,0.9735371949426637,1.0750352963249605,1.398094617624491,1.125017361111111,0.9473175487465181,1.240207854244179,0.9740485734264308,1.0698985537751424,1.0434926268709597,1.0830284950108011,1.0916535286703566,1.0126794607646337,0.8969162120073615,1.3563873449189705,1.4116708639353148,1.1709426440329216,1.0272000412668936,0.9113711639819415,0.8891392677622213,0.7738998455370858,1.2813694309955166,1.136325709517768,1.401277921426793,0.7498706885019214,0.9534780494424715,1.4726906750230466,1.456312044264593,1.500233707264957,1.193395114634669,0.8867994089823652,0.9447013304355806,0.8539700263994264,1.3932941612788952,1.5308412398217972,1.5964600410643044,0.816094390189311,1.1429579535430754,1.421635122774924,1.2243555436467304,1.2840277777777775,1.4133704735376043,1.1496496935346945,1.1389121872506327,1.1678063450833043,1.3787819945089013,1.6632033741384629,1.5524452651586167,1.1220796112882108,1.4773853923252702,2.0108643639399393,1.1943481734512167,0.9508406432748536,1.631911254459268,0.7564040246758603,1.4597266311067971,0.8835454973244825,1.9805897065975542,2.0907999862839897,2.0450265305609223,1.054705076378304,0.9861805351367242,0.43089020081913887,0.3697472651964451,0.9891493055555554,0.9342618384401113,0.9399112870226102,0.9955817022701472,1.0963556866219266,0.5183035714285711,0.3910699422992396,0.32425767989455373,1.1336790418430749,3.5,0.04938271604938271,2.4444444444444455,2.611111111111111,1.8072222222222227,1.094444444444444,0.3887528344671201,0.3159722222222222,0.19652305366591077,0.08875000000000002,4519.746247150571,5056.382904675143,2255.3536889593242,2051.5434028427335,12.788872581582671,0.4234316722656234,7.373658877971141,0.7343998133395512,1.0,0.2,1.4394969869215133,2.963923578481281,3.635821824148036,4.2544418457133455,4.561482186720775,4.6523912776298655,0.13461538461538464,0.012345679012345678,0.06790123456790126,0.06871345029239766,0.046339031339031334,0.026058201058201058,0.01023033774913474,0.013165509259259259,0.01091794742588393,0.008068181818181822,0.3983549571377214,18.781065088757398,8.589506172839506,4.233236151603498,141.52544761574964,1.0,4.105085428100089,109.29682868567824,,87.11020741704777,85.41398368506282,84.09570355956802,87.12514464833959,117.48077851617226,86.39107794022914,87.2128088920831,107.58322560843735,0.05777073239328578,0.1080262303239431,-0.3499034656438998,0.44806763285024137,0.3633765290056921,-0.0449735618821747,0.056005237222855685,-0.029661210643970193,0.10426330320801874,-0.038424209354020654,0.08187236025471735,-0.005875982959650299,0.09909604264205842,0.24457144987645238,-0.043855390980380264,0.11645299145299123,0.16560245696735962,-0.22416150107423974,0.0942990320293648,-0.09662363836354516,0.23508160572636708,0.008385229967371715,0.22309799989838774,-0.04464543409881393,0.0016112907968244751,0.09188207978611128,-0.08297824791522915,0.05569444444444433,0.13627855153203342,-0.168774915515034,-0.001894690283116424,-0.134582809610247,0.08900487113630327,-0.05101121283818535,0.08019970177406968,-0.09158257646057767,0.13974647979352478,0.019281600134809652,0.00845913325891346,0.029835390946502,0.150046425255339,0.13623196116567401,0.14107585571766104,0.1455140981568032,0.04360036016886598,0.18117706225925528,0.012189266537049078,0.16680404824950987,0.04854906927826654,-0.1314704667269221,0.03276176147354527,-0.22729700854700863,-0.04943218341547029,0.1332441763105703,0.05167151231447606,0.10521999842288876,-0.10378024021855403,-0.01697356239070057,-0.15741217454891682,0.11339108032712367,-0.16059982358129965,-0.14859166490771356,0.1636494222200485,-0.28611111111111115,-0.35643454038997224,-0.17947168690056997,-0.16110583661021677,-0.18376368768635867,-0.14877690195731116,-0.06437609299454793,-0.1520039686545508,-0.1764849103190434,-0.42553531726994626,-0.529786378749707,-0.14485906595729833,-0.15838206627680312,-0.517920148560817,0.21241589382252107,-0.41601705287451035,0.05859615091295703,-0.5583485993346664,-0.36486210898091836,-0.4434488535040125,-0.12693332602551627,-0.06880329314907374,0.010295738643026327,-0.005103938804922467,-0.1944444444444444,-0.1621169916434541,-0.04248946752012493,-0.06964407405000106,-0.059143832072869384,-0.005141262952794215,-0.0024688818022836688,0.0287391446049655,-0.07617781932444934,16.030686355237584,18.904071444535468,5.508185941891339,12.813694950265216,26.1583566882042,30.263941345014633,34.35660247158449,35.84764458986543,36.93955368077452,48.75375527085664,40.605113057704685,4.548252729578666,3.6003894835732853,0.0,8.14864221315195,4356.892095309372,3110.983987688638,1563.290159793125,84.0,36.0,49.0,68.0,87.0,93.0,102.0,110.0,104.0,320.1524778800005,26.0,4.8283137373023015,5.68697535633982,6.580639137284949,7.473637108496206,8.384575666801398,9.293669979563187,10.213505804833561,11.131035271890433,12.055441597857842,0.643939393939394,0.9740000000000002,1.117116934556079,0.6062473036080562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6878043004899294,0.9622103386809268,0.996954247500497,0.6446318949725218,10.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,5.917906046161393,0.0,0.0,11.814359458703011,9.589074368143644,10.017825047909064,0.0,0.0,48.04732704767281,44.5337642961537,0.0,11.374772549367124,235.68932561113772,-411.73030458545884,-25.89042312596607,-9.357506922396793,-21.670016030813624,335.5992340399076,586.264882771459,18.24737863072746,13.324201881169522,23.45059531085836,0.4,0.8799187991080514,0.15551112952019172,231.95520175348761,0.14808705256576585,33.49998495529965,0.12008120089194861,6.0,0.15384615384615385,0.2636715847868462,0.5428996616356726,0.6659707599846366,0.7792829259349303,0.8355232751975277,0.8521750252805853,3.9539000000000026,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,95.39400000000005,9.589074368143644,0.0,0.0,5.917906046161393,20.268296022307258,10.017825047909064,72.31279532151926,0.0,0.0,3.970291913552122,0.0,5.2832037287379885,2.3978952727983707,6.80128303447162,4.948759890378168,8.415603335654604,7.208600337960199,10.086766983755195,28.333333333333336,18.570588361887964,0.0,0.0,0.0,0.0,0.0,1.3877834467120187,0.0,42.85600000000001,0.0,25.893602607709752,0.0,0.0,0.0,1.9425925925925926,0.0,0.7223410598807432,49.15314512046748,10.017825047909064,11.374772549367124,0.0,11.814359458703011,9.589074368143644,5.917906046161393,20.268296022307258,72.31279532151926,0.0,0.0,0.0,26.674881358754472,30.263389221556892,31.004484290819896,218.59365737135647,,174.15493864361935,170.7494036970994,168.1250098239134,174.18499500374904,236.29528710111202,172.7121716903318,174.36082481861104,215.76505047212578,31.004484290819896,218.59365737135641,,173.43470054838127,169.88520329381112,167.39463957646427,173.46675778151746,238.1625091973865,171.94234559894062,173.6481021975042,216.60308942947765,4.891268051042865,145.11731494410333,,119.53125947468145,117.55293160979318,115.98127440804488,119.54859190267058,158.29580273068268,118.69022241586529,119.65125827815177,143.73218620320853,1.2918535121174957,9.108069057139852,,7.2564557768174724,7.114558487379142,7.005208742663058,7.25770812515621,9.845636962546335,7.1963404870971575,7.2650343674421265,8.990210436338574,2.53057560049902,109.29682868567824,,87.11020741704777,85.41398368506282,84.09570355956802,87.12514464833959,117.48077851617226,86.39107794022914,87.2128088920831,107.58322560843735,42.337254901960776,0.0,3.932207105064248,0.0,0.0,0.0,0.0,43.865986890021865,0.4232808956916101,0.0,0.0,0.0,-0.6802664399092977,2.974537037037037,0.0,0.0,0.0,28.363803378790962,502.6875433523162,63.33786742454659,130.41263745317636,159.9761602625136,187.1954412113872,200.70521621571407,204.70521621571407,783.0,125.64779366036969,68.60101629872915,73.11240449730828,40.620000000000005,40.620000000000005,0.6666666666666666,8.128419257403182,5.700439718141092,3.9609728311127386,4.806939154699579,,4.805417749426716,4.801724858343934,4.799398850025859,4.805451355466202,4.844669921711604,4.8039075022815005,4.805631670702032,4.837201564892286,0.16504053462969745,0.2002891314458158,,0.20022573955944648,0.20007186909766392,0.19997495208441077,0.20022713981109175,0.20186124673798347,0.20016281259506252,0.200234652945918,0.20155006520384525,2.251958396872135,2.445529268540427,,2.4452127165645186,2.444443936206938,2.4439594078466684,2.445219709904896,2.453347852762134,2.4448983870735104,2.445257232260152,2.4518051017948395,253.07999999999993,238.6017758451194,140.47955958894008,,139.57974125944787,139.909613419608,140.26429919489186,139.57715560996797,136.225269213085,139.72147141093026,139.55990708102965,136.76805132189898,9.941740660213307,5.8533149828725035,,5.815822552476995,5.829567225817001,5.844345799787161,5.815714817081999,5.676052883878541,5.821727975455428,5.814996128376236,5.698668805079124,6.350264689760846,5.820530732191232,,5.814104797233263,5.816465333030507,5.8189972316034355,5.814086272528991,5.789778644059575,5.815119688377433,5.813962687872809,5.793755172298369,0.0,25.893602607709752,2.974537037037037,2.4850262450659284,-1.0551681783824642,18.570588361887964,2.365873488284203,3.932207105064248,0.0,311.4526311504072,134.6466153535131,-235.21681267131297,-14.790902536389272,-5.34583665162075,-12.379832245858578,191.7240030346529,334.9264204524958,10.424518655355556,7.611964101193085,13.397056818099832,1257.0,38.0,1.4847867889671238,0.7452176610497107,0.0,0.0,0.4335830482317422,0.10667135899788141,0.0,0.0,0.0,0.0,0.0,0.0,0.06415002990995841,0.028867513459481287,0.45185920028857385,0.13700018393218444,0.6314643491031431,0.14648464971810007,17.10408352775558,13.846233783389703,11.592224152875016,8.006564671221861,10.304165973710802,6.040942984179628,8.475053902872682,3.977025556138933,7.327577591051692,2.7769706073274443,6.011864324968741,1.9455789173011326,4.040692836385566,1.0993572074812377,2.8007587774694476,0.6517215344964835,3.530729522802021,1.2921202121344217,6.334817041182858,1.7493895027994608,10.682248353877071,2.4061446422805752,78.46763099131944,55.21871551704938,43.195391136447576,32.6420846320502,29.30499840152343,27.418035700448545,124.0,147.0,50.53985999999998,24.080139999999997,0.38636363636363635,124.04,7.888888888888889,5.361111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,44.0,0.0,0.0,46.0,12.0,3.0,9.0,37.0,15.0,26.0,31.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,2.0,0.0,1.0,24.0,4.0,0.0,2.0,2.0,0.0,3.0,4.0,0.0,0.0,0.0,0.0,2.0,3.58351893845611,6.627876018593377,4.110873864173311,4.590056548178043,5.113492679535963,5.6035016281984555,5.678037224904343,6.014326216251244,6.3623813427116245,6.5570446559243845 +5365247,CN(C)C/C=C(/c1ccc(Br)cc1)c1cccnc1,0,53.22222222222222,5.795483333333333,3.0277777777777777,5.585200426764213,159.28766049756203,252.84834272222218,1.7750922050675837,5.932355555555556,2.458192825026673,7.378538250000001,235.964747013551,27.72972972972973,6.114189189189189,3.5405405405405403,5.64964964964965,144.04115836944052,108.82258159459457,1.9527933316216222,6.289540540540541,2.855772439105773,7.5475665405405366,271.0977862788301,24.37704918032787,6.039262295081967,3.3442622950819674,4.222222222222222,154.8647712774581,95.40893855737704,1.7173067362941474,6.1745,2.514268366727384,7.545522295081968,231.16405414029813,21.486486486486488,5.8220135135135145,2.945945945945946,3.4264264264264264,149.87543338321615,80.77091798648648,1.6635984786364053,5.981513513513514,2.335585585585586,7.377630594594596,211.5659412769765,15.5,5.601162790697674,2.5813953488372094,2.732988802756245,158.1735339974671,56.31043727906977,1.3588726937915578,5.719686046511627,2.06219494688487,7.224386674418603,169.1287765131167,18.026666666666667,5.7933200000000005,2.7866666666666666,3.1738271604938277,153.97495458221252,67.37422128,1.4928644696404934,5.918966666666666,2.356255144032922,7.337024613333331,194.85653497828514,18.428571428571427,5.852760714285715,2.5476190476190474,2.3787477954144625,158.86575410323135,69.53835621428571,1.4159822790801786,5.962042857142857,2.344099059376837,7.413599857142856,180.0415600712307,18.42168674698795,5.739674698795181,2.0963855421686746,1.3864346273984829,157.928503483692,69.30275645783132,1.3660630178679154,5.8610662650602405,2.213911200356984,7.347506144578314,161.84978941320557,16.32051282051282,5.525815384615384,1.6025641025641026,0.37654320987654316,168.26375788011887,60.53938457692308,1.0852352927624358,5.6257858974358985,1.76127730294397,7.26149617948718,114.75512434617177,32.97222222222222,0.05147222222222218,0.00675734167119736,0.5208333333333334,3.055398905993328,1.491960057940452,175.19797783024686,0.32805155333813807,0.05981111111111104,0.27178030904418354,0.027360434413580232,56.87263230378543,0.18243243243243243,0.00506426426426423,-0.0007165814212192004,0.1848723723723724,0.8604428617002922,-0.2996690202820002,0.7943216517350735,-0.01569014306887383,0.005466066066065982,0.004184312985253191,0.0012927848056389676,-1.5066987885194836,0.8811475409836066,-0.015005828779599283,-0.001977840669584013,-0.04086976320582874,-0.3015691469352073,0.5491593832012472,4.772833276310466,0.06916295185228767,-0.013607468123861625,-0.02122050115054488,-0.0072131853243270596,9.294599350097634,-2.8986486486486487,-0.006312762762762764,2.6157378733555118e-05,0.018205705705705726,0.08764743252626205,-0.209645184197844,-14.723303626793452,-0.05361328178272857,-0.008486186186186196,-0.019048088655070253,-0.002740572551718383,-10.709459808856426,0.22093023255813954,0.006432428940568481,0.00016289364277070434,0.04376614987080104,0.4028223308430879,0.043696063555530504,0.7278908919753015,0.018968176390984935,0.007288242894056865,0.03282466932518008,0.0018242267621303486,6.309293170308836,0.9566666666666667,0.004571111111111104,0.0005485458110908862,-0.08972222222222219,-0.1762453216819929,-0.2767671157221833,4.935583186790121,-0.013175165753498114,0.005063999999999989,0.013427992535860047,0.0017832492901234556,-2.1460875115965297,0.8571428571428571,-0.002238888888888895,0.0002794364251658115,-0.16666666666666666,-0.7817508703425485,0.031684550955994574,4.692341056657846,0.005642015283011682,-0.0028190476190476303,-0.00454360278570099,-0.0003468338844797183,-2.387674788406208,-0.7439759036144579,-0.007608969210174023,-0.0012174451594713336,-0.07036479250334675,-0.7411001012636638,-0.41762599067473494,-3.393620561170609,-0.05344448425545271,-0.009045113788487267,-0.06994361269316456,-0.002537423369403538,-14.553760723865869,-0.8141025641025641,-0.0009594017094016874,-0.00025368470550051446,0.029380341880341828,-0.16899165881790473,0.13875795631670357,-4.906173654320989,-0.00820894556983542,0.0005457264957265442,-0.054535995081334006,0.0022478437203228884,1.0188200094783701,,,0.5333333333333334,1.3026315789473684,0.7105263157894737,0.02631578947368421,0.5921052631578947,0.11842105263157894,0.7202036781163634,0.01313209286456042,0.022184724443507785,0.8240505950441769,0.265793817257368,0.21655901421349769,1.5442542731605404,0.48235283147086566,2.008172087547469,1.7044510081437019,0.21096609626541635,0.0,0.09275498313835011,0.3037210794037664,8.77937529566668,1916.0,208.6374,109.0,201.06721536351165,5734.355777912233,9102.540337999999,63.90331938243301,213.5648,88.49494170096023,265.627377,8494.730892487836,1026.0,226.225,131.0,209.03703703703704,5329.5228596693,4026.4355189999987,72.25335327000002,232.71300000000002,105.6635802469136,279.25996199999986,10030.618092316714,1487.0,368.395,204.0,257.55555555555554,9446.751047924943,5819.9452519999995,104.75571091394299,376.6445,153.3703703703704,460.27686000000006,14101.007302558186,1590.0,430.82900000000006,218.0,253.55555555555554,11090.782070357995,5977.047930999999,123.10628741909399,442.632,172.83333333333334,545.9446640000001,15655.87965449626,1333.0,481.69999999999993,222.0,235.03703703703704,13602.923923782171,4842.697606,116.86305166607397,491.8929999999999,177.34876543209882,621.2972539999998,14545.074780128036,1352.0,434.499,209.0,238.03703703703707,11548.12159366594,5053.066596,111.964835223037,443.92249999999996,176.71913580246917,550.2768459999999,14614.240123371384,1548.0,491.63190000000003,214.0,199.81481481481484,13344.723344671434,5841.221922,118.942511442735,500.81160000000006,196.90432098765433,622.7423879999999,15123.491045983379,1529.0,476.393,174.0,115.07407407407408,13108.065789146436,5752.128786,113.38323048303698,486.46849999999995,183.75462962962965,609.84301,13433.532521296063,1273.0,431.01359999999994,125.0,29.370370370370367,13124.573114649273,4722.071997,84.64835283546999,438.8113000000001,137.37962962962965,566.396702,8950.899699001398,1187.0,1.8529999999999986,0.24326430016310496,18.75,109.99436061575982,53.71056208585627,6307.127201888887,11.809855920172971,2.1531999999999973,9.784091125590608,0.9849756388888884,2047.4147629362756,6.75,0.1873777777777765,-0.02651351258511041,6.840277777777779,31.83638588291081,-11.087753750434008,29.38990111419772,-0.5805352935483317,0.20224444444444134,0.15481958045436806,0.0478330378086418,-55.74785517522089,53.75,-0.9153555555555563,-0.12064828084462478,-2.493055555555553,-18.395717963047645,33.49872237527608,291.14282985493844,4.218940062989548,-0.8300555555555591,-1.2944505701832378,-0.44000430478395064,566.9705603559557,-214.5,-0.46714444444444453,0.0019356460262830786,1.3472222222222237,6.485910006943391,-15.513743630640455,-1089.5244683827154,-3.967382851921914,-0.6279777777777785,-1.4095585604751988,-0.20280236882716035,-792.5000258553755,19.0,0.5531888888888894,0.014008853278280574,3.7638888888888893,34.64272045250556,3.7578614657756235,62.598616709875934,1.6312631696247044,0.6267888888888904,2.8229215619654866,0.15688350154320999,542.5992126465599,71.75,0.3428333333333328,0.041140935831816466,-6.729166666666664,-13.218399126149468,-20.75753367916375,370.1687390092591,-0.9881374315123586,0.37979999999999914,1.0070994401895035,0.13374369675925918,-160.9565633697397,72.0,-0.18806666666666716,0.023472659713928166,-13.999999999999998,-65.66707310877408,2.6615022803035444,394.1566487592591,0.47392928377298127,-0.23680000000000095,-0.38166263399888317,-0.02913404629629634,-200.56468222612148,-61.75,-0.6315444444444439,-0.10104794823612069,-5.84027777777778,-61.51130840488409,-34.662957226003,-281.67050657716055,-4.435892193202575,-0.7507444444444432,-5.805319853532659,-0.21060613966049369,-1207.9621400808671,-63.5,-0.07483333333333161,-0.019787407029040128,2.2916666666666625,-13.181349387796569,10.823120592702878,-382.68154503703715,-0.6402977544471629,0.04256666666667045,-4.253807616344052,0.1753318101851853,79.46796073931287,0.7192066283684293,0.6716656530008963,0.45823518989732237,0.34856704042669645,0.30973437444118507,0.2132427517826732,0.1935061748662319,0.10699974833592052,0.12259007089981604,0.05505501773057003,0.08183224196771467,0.032068668472297314,0.054558645540341656,0.020001652618544228,0.03657806779435179,0.011013048044845652,35.0004179352042,5.681053498684282,3.1453758315235807,2.1791055626745717,0.35050700936366874,-0.37822844787451454,3.1799179379436913,0.9886009699019891,5.022629104148723,0.25601242494495735,14.548228402387796,10.940750713987496,79.90417849031873,11.692360925410332,3.05898011898456,1.0258243600121397,3.1263511803747708,2.2293872732093116,3.0441100796414275,1.0438514550647087,3.2875750516803435,2.4254095985663655,26.523891772806984,15.589196445278029,0.2576093960334337,0.5664168823831542,0.7586145330092731,0.8375288071587609,0.8477048766539627,0.8477048766539627,1.9155576903946374,544.7214333116931,0.0,2.0,1.0,0.0,8.0,0.0,3.0,0.0,0.0,3.7635241194793267,2.077610764429757,1.0283208335737193,0.5974937501201936,0.5419381945646382,0.5419381945646382,63.67484710050917,516.5487488285512,29.944065295655427,14.348576356348646,29.33174755353049,,9.0,279.0,0.0,0.0,0.0,0.0,16.580927413441984,11.136556021766264,6.196843571613076,12.263210640074686,76.31703156424335,0.0,10.133333333333335,24.75,13.5,0.5,11.25,0.0333333333333334,0.0,2.25,0.09700336700336681,0.058796296296296124,-0.03820707070707069,0.0,0.0,0.001294117647059112,0.5351851851851853,0.7456140350877191,0.4381818181818185,0.4763888888888892,0.7456140350877191,13.683869884210905,0.24950976442664796,0.42150976442664795,15.656961305839362,5.050082527889992,4.114621270056456,29.340831190050267,9.164703797946448,0.7152941176470591,0.23026315789473678,0.0,0.23684210526315785,0.1875,0.4361872347419873,-0.4515999811281596,-0.03167659556390036,-0.012544443920226656,-0.03225714150915426,0.5638127652580126,0.5837351803771723,0.0283412512498059,0.016214866121588123,0.026533417289871474,-4.769057580434786,0.506443680411667,0.8198793774886596,1.1611973337057817,0.781981981981982,0.7137663157390927,1.2930027308228538,0.5014973459469829,0.82653587424073,0.7580703265033566,0.9252473437228549,0.7829077564166614,0.920927409134944,0.6030149018741282,1.5914002990277176,1.864714893762994,1.3923497267759564,1.2963269795708978,0.7473840209768848,0.5958559215523676,0.6018546976004975,1.3746695730030494,1.0449642499700906,1.4855774753997582,0.7289083675899726,1.004918144766502,0.8546823266871836,0.6756427954770706,1.10990990990991,0.91838376975482,1.1187812815573392,1.0026026505387184,1.1167411582482416,0.9226180016167013,0.9153047756594318,0.8368611418325873,1.1554501684860454,0.6930947669520582,0.6322415567464451,0.6376366884512872,0.9333333333333333,0.8253311612271471,0.895240261466462,0.6891354783117126,0.84376242633967,0.6761178062721144,0.7564320182253517,0.6159654466040718,0.8713210651895679,0.3506880089862398,0.7969347004856987,0.8757359574237431,1.1573333333333333,1.0330687167179593,1.1860518010689656,0.33904968748575537,0.8021082837837273,0.7547030775899437,0.8936730520723627,0.6739205253327896,0.9589044019106739,0.5089862398202752,1.2507757690232053,1.3410696313016606,1.3222222222222224,1.3192055127460773,1.0219938907788393,0.49778583935721776,0.7792281237521305,1.1333906124218223,1.1010437449904213,1.1057172790201266,0.9491759402668484,0.8950629814963309,1.1496141067237107,1.2137472607021687,0.8883534136546185,1.1273428430414676,1.2523087412333436,0.8894840085632143,1.0936434331940996,1.1327396712989803,1.313890818199376,1.0691217874693466,1.210230608057465,1.513997796643121,1.1320986757441154,1.0172147261410236,0.6341880341880343,0.9683213119430074,0.8041703204748125,1.5255653002749294,1.1916833590088955,1.1444058217465245,1.359548283005199,1.1439372142569735,1.014828343241917,3.5,0.0,2.000000000000001,0.9375,0.5733333333333335,0.5277777777777777,0.4848979591836735,0.2673611111111111,0.16805240614764422,0.015625,3776.093108698377,4250.668090686488,1922.4864075162016,1751.101653353991,10.247558430748803,0.3982966059432471,6.165990688576447,0.6619484115884506,1.0,0.1875,1.4064008819629854,3.0923142370125554,4.141604167868593,4.572431251322119,4.627986806877674,4.627986806877674,0.17500000000000002,0.0,0.07692307692307696,0.037500000000000006,0.024927536231884057,0.021111111111111115,0.02020408163265306,0.015727124183006536,0.021006550768455527,0.005208333333333333,0.3976078141835206,15.39,7.695266272189349,4.795005202913631,122.47063412215101,1.0,3.8488792063656687,78.56058966247673,,59.26057829817343,60.300874511376435,59.84281793415353,59.22155825854118,68.51126564915629,60.52634724202696,60.80190975359351,66.5159706695279,0.005532912862314715,0.09838829655343356,-0.10604487031839348,0.354954954954955,0.28161391954827486,-0.2008559268642035,0.0045338517120597655,-0.04782828463763214,0.09138880660336969,0.015395938727014044,0.04725015641554651,-0.02649251014919522,0.02672393553109506,-0.29153256128741206,-0.2926950812646346,-0.07846994535519118,-0.09870041726586447,0.368079145469433,0.027242513500555177,0.21082952099604352,-0.22750736227894255,-0.07807961226173692,-0.26363562856102996,0.16342833052724706,-0.08791183770122271,-0.12264406878546123,0.0038709569541301864,0.03495495495495499,0.028686084934552054,-0.14051661978621918,-0.08403809113059045,-0.16342944039489685,-0.14188310547218255,-0.07008634555630587,-0.10016553503105607,-0.18830603358838388,0.006700495679943574,0.1249689378631762,0.02410617232291594,0.08403100775193799,0.1318395218552086,0.0292876899237168,0.004154676332397917,0.057820718109612326,0.12185433038549484,0.120776480976934,0.06667389612881663,0.11093724546821952,0.02901432181971356,0.08880733944954121,0.08117775269955932,-0.1722666666666666,-0.0576832443502805,-0.18550571394266496,0.028171462067743243,-0.040161875837599996,0.08466654281998877,0.04940752544981854,0.06517620528855154,-0.03773497769776495,0.02599590805151041,-0.04349703184025919,0.0413530111044832,-0.32,-0.2558588565339545,0.021236862734604917,0.026783077720248336,0.01719856292585877,-0.04713250709906874,-0.01671792486247535,-0.012676475791172702,-0.04198284291911146,-0.022563717380050953,-0.1478267088862736,-0.18016628708602944,-0.13510040160642575,-0.24255428638465382,-0.2799176750423459,-0.019370203944127494,-0.1629148946609772,-0.15122798457437397,-0.25735349606138597,-0.09274060970845183,-0.25590095155305786,-0.024690557967727303,-0.018639212918759186,-0.03754208649561493,0.05641025641025631,-0.05530919661142071,0.093003800991998,-0.02800359750199108,-0.025023340040015225,0.009124165821175746,-0.20066205411690824,0.08215672625457952,0.01791406460732006,13.153090974757287,15.676537119867351,2.701599969404812,21.4804040266633,36.657913534139,43.29798893885615,44.343540416755076,44.39954041675509,44.39954041675509,38.15526966340191,32.384569154730336,4.008355829042911,0.0,1.7623446796286522,5.770700508671562,4713.096932861931,3712.139982178582,1176.380187001283,24.0,26.0,31.0,38.0,48.0,46.0,46.0,42.0,36.0,316.0575106440005,20.0,4.532599493153256,5.332718793265369,6.171700597410915,7.00033446027523,7.848933726364071,8.689632748355741,9.542445945729886,10.388964598613677,11.243489253126375,0.7500000000000001,0.9586666666666667,1.1155720416961459,0.7336561855336312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7203173819028612,0.9503267973856209,0.9873654608723803,0.6502836861388154,8.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,40.20506521016806,43.43100119250547,28.974614556668136,0.0,217.6222529073246,-225.31197036095912,-15.804066561296345,-6.258665843359976,-16.09371216863994,281.29710000783376,291.2367784675921,14.139998734359084,8.08991051298867,13.238035384890551,0.4444444444444444,0.9442159557127422,0.2952815500870285,15.43143600845099,0.0817628952068778,136.60833110115487,0.05578404428725779,5.0,0.2,0.2720350646422581,0.5981352217198234,0.8010955993971214,0.8844289327304546,0.8951748440425252,0.8951748440425252,3.8374000000000024,,1.1142857142857143,0.45892674576190595,0.49735115757496484,1.1346824755066258,-0.5839046199701935,0.46088193456614523,0.42746602971593783,-0.41459539985447624,84.01200000000004,0.0,0.0,9.883888251797686,0.0,0.0,20.640100371266954,70.4675321600561,0.0,0.0,3.713572066704308,0.0,4.976733742420574,0.0,6.434546518787453,0.0,7.979681302387741,0.0,9.57227147806062,27.000000000000004,16.14679592361636,4.2120423910304865,0.0,0.0,0.0,0.0,3.443628432854624,0.0,34.512,0.0,0.0,0.0,0.0,0.0,2.236360544217687,0.0,1.2169444444444446,40.16059350106125,0.0,0.0,0.0,30.523988623064643,0.0,0.0,11.126902983393991,59.340629176662105,0.0,5.573104530069267,0.0,26.411622679210723,25.931425748503003,24.221082779743824,157.12117932495346,,118.88542703136525,120.58148938089316,119.68396004424204,118.88893351575499,137.20692223093477,121.01752146902118,121.56444617242522,133.16286620216772,24.221082779743824,157.12117932495346,,118.05765552406025,120.2191787921338,119.291314393525,118.04487592564186,137.60643591828278,120.65366731015314,121.22697299107057,133.4465367389103,4.699256169583747,106.45154818705362,,81.31035511623827,82.61618288014859,82.12943802663334,81.26409496082928,92.53081160047407,82.8484544571354,83.14900983688621,89.70895099194576,1.2747938305128328,8.269535753944918,,6.257127738492908,6.346394177941745,6.299155791802213,6.257312290302894,7.221416959522882,6.369343235211641,6.398128745917117,7.008571905377249,2.3496280847918736,78.56058966247673,,59.26057829817343,60.300874511376435,59.84281793415353,59.22155825854118,68.51126564915629,60.52634724202696,60.80190975359351,66.5159706695279,34.21176470588235,3.4729917406777524,4.1367952674897115,0.0,0.0,0.0,0.0,35.54515659140569,0.9030670115268329,0.0,0.0,0.0,0.0,2.148040910808768,0.0,0.0,0.0,23.410212700997352,471.0876136363692,50.630431750667476,111.323312532452,149.09775004326934,164.60752504759625,166.60752504759625,166.60752504759625,376.0,109.75081961629452,27.831739278789197,51.676805108360696,16.130000000000003,16.130000000000003,0.8,7.848915437082504,5.321928094887363,3.8424139382057287,4.283408342154291,,4.291940554254091,4.286246033852417,4.287182528867943,4.292062189320055,4.261176305591182,4.285951980604439,4.285228152273932,4.267849358585812,0.2022323125371436,0.22544254432391006,,0.22589160811863637,0.22559189651854827,0.22564118572989172,0.22589800996421344,0.224272437136378,0.22557642003181258,0.22553832380389116,0.22462365045188482,1.9879546850081973,2.0966029204791785,,2.0985928604847457,2.0972651856481885,2.0974836501778453,2.0986212004258213,2.0913991364103817,2.097196579382305,2.0970276812093567,2.0929639234374084,221.93999999999969,117.99071673395548,95.15914568711885,,94.29499639608814,94.81478899853535,94.73618555429503,94.27877426567068,96.40003326862018,94.84052977244558,94.89483018226093,96.06968030600802,6.210037722839762,5.008376088795729,,4.962894547162533,4.990252052554492,4.986115029173423,4.962040750824772,5.0736859615063254,4.991606830128714,4.994464746434786,5.056298963474107,5.412459835797136,5.19740459391993,,5.1882820139171795,5.193779285360565,5.192949920605977,5.188109963155289,5.210360432899003,5.19405073331399,5.194623113826624,5.2069276508692175,1.0920335726883348,6.360083301839254,0.0,3.568539304610734,0.0,12.440263014928194,5.942893452905854,0.9030670115268329,4.1367952674897115,261.60123250173217,108.57595360046133,-112.41250245652908,-7.884954662190065,-3.1225695126813635,-8.02946446118065,140.34456711281902,145.3036650581464,7.054719018767593,4.036212918281844,6.604712048097563,718.0,25.0,1.1663395218799635,0.8823900516861964,0.0,0.0,0.13608276348795434,0.048112522432468816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.052622977527775436,0.19037142086468112,0.08086596132288582,13.664925939000156,12.76164740701703,9.164703797946448,6.971340808533929,8.053093735470812,5.544311546349504,5.998691420853189,3.316992198413536,4.65842269419301,2.0920906737616614,3.9279476144503045,1.5392960866702712,2.509697694855716,0.9200760204530345,1.6825911185401825,0.5066002100629,2.0776055202997865,1.139400106939606,2.932505781615976,1.2236991501216803,4.480400211784982,1.5636659359224003,66.87615671115937,43.36992640098829,29.000669452938055,26.396826396501087,26.220719451976514,26.220719451976514,92.0,103.0,43.305480999999986,21.284518999999996,0.3611111111111111,58.03,6.305555555555555,4.305555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,36.0,0.0,1.0,37.0,12.0,1.0,7.0,30.0,13.0,20.0,24.0,0.0,1.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,2.0,0.0,1.0,19.0,3.0,0.0,2.0,0.0,0.0,2.0,4.0,0.0,0.0,1.0,1.0,2.0,3.332204510175204,6.211384157103713,3.871201010907891,4.394449154672439,4.927253685157205,5.458521118088372,5.550291299530123,5.860430034682047,6.058977156881282,6.191723225884733 +441130,C[C@@H](O)[C@H]1C(=O)N2C(C(=O)O)=C(S[C@@H]3CN[C@H](C(=O)N(C)C)C3)[C@H](C)[C@H]12,0,26.666666666666668,6.32800588235294,3.2745098039215685,7.263616557734205,165.62258389762403,105.3757531176471,1.4467184827691173,6.374347058823529,5.955404932892224,7.887406058823528,203.63832513265376,26.245283018867923,6.448188679245283,4.09433962264151,6.333333333333333,148.9496085994981,99.3402345283019,1.7667053413584908,6.581330188679245,3.0959119496855343,7.894544377358489,252.22876944561958,22.5979381443299,6.292865979381444,3.7216494845360826,5.013745704467354,157.7128207969543,84.49172335051546,1.5435437593184127,6.39120412371134,3.050782741504391,7.813033195876289,211.40413074405245,20.369230769230768,6.190696153846154,3.0692307692307694,3.7179487179487176,157.6091338061364,73.8645488076923,1.4325274530317773,6.289129230769231,2.9533000949667616,7.783623076923077,186.69018944607788,19.055944055944057,6.236223776223776,2.7482517482517483,3.382284382284382,161.69443591676088,68.73985467832169,1.2785089335826503,6.312287412587413,3.251014417681084,7.860849216783216,170.17298798923278,18.40740740740741,6.341576296296296,2.674074074074074,2.7876543209876545,160.81279356882627,65.36518248148148,1.2841703785980372,6.413357777777777,3.6298582533150436,7.924602044444446,173.2008001967655,13.823529411764707,6.0070450980392165,2.3333333333333335,2.1198257080610023,163.38375781824962,47.19939326797386,1.1282072469393136,6.0713156862745095,2.665819414185427,7.6492254379084965,141.2435269562616,12.70503597122302,5.977546762589929,2.20863309352518,2.7553956834532376,168.66175138011656,42.99852969784173,1.001543689265079,6.022384172661869,3.1545430322408743,7.672203683453238,124.9139424174651,15.173913043478262,6.4733358695652194,2.4565217391304346,3.4347826086956523,166.92386001862428,52.816206260869556,1.0617445826226304,6.499122826086957,3.810990338164251,8.062791130434784,150.12010718153113,10.666666666666666,0.16106143790849664,0.027045892909142152,0.7520184544405999,4.241018411721988,1.4618071200768348,48.84216128027682,0.2722649819884082,0.148832833525567,2.667121804476384,0.10319664667435599,49.0945760836726,0.4339622641509434,-0.012851153039832227,-0.01532057583938332,0.3537899066396815,1.3082478356574678,-0.24364462778085058,2.081613658679902,0.01319078855776258,-0.009956362937331731,-0.17799716168503257,-0.010421377343982371,1.431200412725224,1.2371134020618557,0.01498224513172969,-0.0004186247253953229,0.05493525487817935,0.5921913899535511,0.22930922181957372,5.8437944498626635,0.0482702012481514,0.01415821155225787,0.31806576538277975,0.009172954295928999,7.457993986066199,-0.4307692307692308,0.004776495726495727,0.0029854905663648547,-0.052621772690976815,-0.017556035318434426,-0.036718035080146635,-1.9791285481501186,-0.01821117234133728,0.0032622343477360927,-0.04422307338956199,0.0019911715760210576,-3.5496434269743684,0.03496503496503497,-0.004120823620823609,-0.0013489793397683456,-0.12703559416362184,-0.31026289273117424,-0.06803114192638701,0.29852751486921547,-0.014385393555089509,-0.0017235917869135786,-0.15995161647830852,-0.003732117673944674,1.1690593082837042,-1.2074074074074075,-0.02164345679012341,-2.837884061808974e-06,-0.12108163526848649,-1.079604710439005,-0.08397318638835881,-5.950463261540431,-0.03732467542967411,-0.020516159596736246,-0.038304760207067544,-0.006976324960485299,-8.298925474899304,-0.5555555555555556,-0.01771633986928107,-0.001109373226741048,-0.002306805074971171,-0.27022370313412214,-0.1815618371508355,-2.846680817377932,-0.023355947346432142,-0.016560451108548008,-0.34020953567329365,-0.009980154555940006,-7.093410895523159,-0.302158273381295,0.02600319744204631,0.002662419734328759,0.04640163301884442,0.8041219465796068,-0.027954336176236695,-0.7388821334295895,-0.015248621620472611,0.02443105418779157,0.3006831817452424,0.010543393246648367,5.198827161482907,-1.1304347826086956,-0.032007729468598964,-0.005402182697641389,-0.06190762750112833,-0.7803288218763871,-0.0024154804971997,-5.180269711223111,0.003233567189497076,-0.030195642562225164,-0.6666480388981058,-0.022145766026444712,-2.242643982578096,,,0.46923076923076923,0.875,0.21153846153846154,0.0,0.6634615384615384,-0.4519230769230769,1.2174160441778183,0.029560438341664944,0.03948351526474187,0.6946519136022133,0.1511994167942715,0.315940666493798,1.9120679577800317,0.4671400832880695,1.9924748058538642,1.3378516242476726,0.24080820356311936,0.33403198515828597,0.0,0.6546231816061917,7.512774350980407,1360.0,322.72829999999993,167.0,370.44444444444446,8446.751778778826,5374.163409000002,73.78264262122498,325.0917,303.7256515775034,402.2577089999999,10385.554581765342,1391.0,341.754,217.0,335.66666666666663,7894.329255773399,5265.032430000001,93.63538309200001,348.8105,164.08333333333331,418.4108519999999,13368.124780617838,2192.0,610.4080000000001,361.0,486.3333333333333,15298.143617304568,8195.697165,149.72374465388603,619.9467999999999,295.9259259259259,757.86422,20506.200682173087,2648.0,804.7905,399.0,483.3333333333333,20489.187394797733,9602.391345,186.22856889413106,817.5868,383.929012345679,1011.871,24269.724627990123,2725.0,891.78,393.0,483.6666666666667,23122.304336096804,9829.799219000002,182.826777502319,902.6571,464.89506172839504,1124.101438,24334.737282460286,2485.0,856.1128,361.0,376.33333333333337,21709.727131791547,8824.299635,173.363001110735,865.8032999999999,490.0308641975309,1069.8212760000001,23382.108026563343,2115.0,919.0779000000001,357.0,324.33333333333337,24997.71494619219,7221.507170000001,172.615708781715,928.9113,407.8703703703703,1170.331492,21610.259624308026,1766.0,830.8790000000001,307.0,383.0,23443.9834418362,5976.795628000001,139.214572807846,837.1113999999999,438.4814814814815,1066.436312,17363.037996027648,1396.0,595.5469000000002,226.0,316.0,15356.995121713435,4859.0909759999995,97.68050160128199,597.9193,350.6111111111111,741.7767840000001,13811.049860700863,544.0,8.21413333333333,1.3793405383662498,38.352941176470594,216.29193899782138,74.55216312391858,2490.950225294118,13.88551408140882,7.590474509803918,136.02321202829557,5.263028980392155,2503.8233802673026,23.0,-0.681111111111108,-0.8119905194873159,18.75086505190312,69.33713528984579,-12.913165272385081,110.3255239100348,0.6991117935614167,-0.5276872356785818,-9.433849569306727,-0.5523329992310657,75.85362187443687,120.0,1.4532777777777799,-0.04060659836334632,5.328719723183397,57.44256482549446,22.24299451649865,566.8480616366784,4.6822095210706856,1.3733465205690134,30.852379242129636,0.8897765667051128,723.4254166484212,-56.0,0.6209444444444445,0.3881137736274311,-6.840830449826986,-2.2822845913964755,-4.773344560419063,-257.2867112595154,-2.367452404373846,0.42409046520569205,-5.748999540643059,0.25885230488273747,-461.4536455066679,5.0,-0.589277777777776,-0.1929040455868734,-18.166089965397923,-44.367593660557915,-9.728453295473344,42.68943462629781,-2.0571112783778,-0.24647362552864174,-22.87308115639812,-0.5336928273740884,167.1754810845697,-163.0,-2.92186666666666,-0.0003831143483442115,-16.346020761245676,-145.74663590926568,-11.336380162428439,-803.3125403079582,-5.038831183006005,-2.769681545559393,-5.171142627954119,-0.9418038696655153,-1120.354939111406,-85.0,-2.7106000000000035,-0.16973410369138034,-0.35294117647058915,-41.34422657952069,-27.778961084077828,-435.5421650588236,-3.5734599440041177,-2.533749019607845,-52.05205895801393,-1.5269636470588208,-1085.2918670150434,-42.0,3.6144444444444375,0.3700763430716975,6.449826989619374,111.77295057456534,-3.8856527284969005,-102.70461654671294,-2.119558405245693,3.3959165321030285,41.79496226258869,1.465531661284123,722.636975446124,-104.0,-2.9447111111111046,-0.49700080818300785,-5.695501730103807,-71.79025161262761,-0.2222242057423724,-476.5848134325262,0.297488181433731,-2.777999115724715,-61.33161957862573,-2.0374104744329133,-206.32324639718482,0.7436146393927434,0.619871511626687,0.43377293448177906,0.34374296974341645,0.27808178170206654,0.2042595524017192,0.1614173691288611,0.11386295634331826,0.09861750172567782,0.06613412075988159,0.06251514683627758,0.040641885946912745,0.03779670856830006,0.023895465247294276,0.024471218568205482,0.015221949353810464,16.002004146505158,5.7451662479990375,3.555776848927006,2.21978475223086,0.47986043863264827,-0.41919357087783354,3.291704410339791,0.9724627039288339,6.024522321143267,0.6593632462354149,14.545875582039637,10.337501821059613,32.060999159803195,11.757561952625725,2.9165440113064895,0.7413634711623113,3.5018729442116316,2.277235763328535,7.010459851290476,0.6236064611419008,3.7147499409615232,2.479675972670946,24.43423923814169,14.700439149618687,0.29362194957475285,0.5930914914236405,0.8345983599929294,0.8682143601054615,0.8682143601054615,0.8682143601054615,1.6911396444164255,677.3094980085932,0.0,3.0,3.0,0.0,2.0,5.0,0.0,2.0,0.0,3.959760804357336,2.212987904160469,0.8043049021304673,0.6082264707579181,0.6082264707579181,0.6082264707579181,202.3762151163761,1736.5350964860172,84.36633495415143,34.04970777423563,78.00911540471131,,12.0,515.0,17.991177721861547,24.596666341896878,40.76292450619833,17.87071454272863,0.0,16.66179468024159,25.918990895895483,6.923737199690624,5.316788604006331,0.0,12.2,22.75,5.5,0.0,17.25,0.0,0.030769230769230795,-11.75,0.16730259671436137,0.01161672216056231,-0.15568587455379906,0.06246684350132614,0.19485106382978712,0.0,0.6078431372549021,0.9038461538461535,0.44054054054054076,0.5962264150943398,0.8413793103448274,31.652817148623278,0.7685713968832886,1.0265713968832886,18.060949753657546,3.9311848366510596,8.214457328838748,49.713766902280824,12.145642165489807,0.5191489361702128,0.3005464480874317,0.0,0.516393442622951,0.7058823529411765,0.33420840460220147,-0.9508980775434547,-0.08853464113533215,-0.018645060343989304,-0.07924150646195455,0.6657915953977985,1.8943268313731265,0.049695330819331494,0.03714366336025737,0.04857248285572119,-0.47201802409827454,0.7907880133185349,0.7880630194682092,1.5750892261663585,0.8732202801250143,0.5224323388449511,1.4951314593809895,0.7948023981499202,1.078825007202027,0.768024423742034,0.6857766092762119,0.8027551435961986,1.058857300587416,0.861317465130382,0.6589095786961439,0.9360265181214823,1.2499209411169436,0.7644731040587267,1.0622403276613386,0.8539944539944166,0.9359278758199476,0.6590598931761457,0.48432027022519386,0.6243851156825722,0.8917718672936741,1.2521210407239818,0.7842252502878092,0.7779531075367317,1.2134261444077392,0.9355430825947958,1.1849912236113203,1.2278259612540299,1.3547351682235942,0.7953262787927855,0.8113744138582055,0.7926567016541197,1.1411108440451825,1.2096359522830111,1.0253945158824556,0.987942005970867,1.267214380711313,1.1255794810560218,1.1052823382496406,1.184644549518872,1.2516608965719502,1.007135042382264,1.1460559939715527,1.0519522295158519,0.9949039778126718,1.1043028322440085,1.1567483506296286,1.0245927916064503,1.1781413315155644,1.250881363444066,1.13129793794484,1.1099271026802762,1.16779637455527,1.1490790917339981,1.0806116235041725,1.1032611081599126,1.1563293065361164,0.9815936178392924,0.9982197112198776,0.9223563044573886,0.8861622358554873,0.9522922164695768,1.067127252018945,0.9921994484711387,1.0473077683612526,1.0084405755889778,1.0009115044463603,0.9842738127809434,1.140913794283086,1.255686627168853,0.818945126338951,0.9111953395050364,0.7784569890100188,0.7662209642829862,0.9153863231228454,1.2224911864160053,1.1654256127147953,0.8273243213650012,0.843025987360302,0.8704446046038614,0.881015234159216,0.8876478580562659,1.540627351020299,1.5314615951312733,1.0911242998132835,1.3681689406208477,0.8920237449624657,0.9073876111633836,0.7161596767223773,1.5171475182932763,1.7279348701075854,1.6006871850533757,0.9297597046589536,6.0,0.13917355371900827,3.333333333333335,3.7916666666666665,2.679444444444445,1.2405555555555554,0.6564625850340136,0.43494897959183676,0.3719135802469135,0.3081481481481482,5470.295700520769,6222.962205394799,2585.7117496261603,2322.8737263540015,15.648326405328726,0.48939971187238324,7.990039971275841,0.9584791141952219,1.0,0.7058823529411765,1.7126645376141592,3.459437437811026,4.868120439841028,5.064198871213577,5.064198871213577,5.064198871213577,0.21428571428571425,0.009940968122786305,0.08130081300813012,0.0881782945736434,0.06089646464646465,0.03180911680911681,0.02188208616780045,0.015533892128279882,0.01549639917695473,0.01400673400673401,0.5533304829256246,20.727040816326532,7.787993510005409,3.5603332437516797,156.1369017193067,1.0,4.202965866526613,131.86508595314294,,105.09878062068168,119.66636003989237,121.04523302488249,105.10384586450452,134.69569005754767,119.55144640293643,118.66013058640316,131.92138314461099,0.04068396226415095,-0.07979037817316219,-0.5664658915440947,0.470453756221785,0.308474924806157,-0.16667358123693107,0.04261919628688684,0.04844834786107081,-0.0668962802191184,-0.06673754508935051,-0.10098561997724338,0.02915190489242658,0.11597938144329897,0.09302192583330535,-0.015478310396393599,0.07305040794383665,0.13963424169929567,0.1568669482246884,0.11964651638424677,0.17729125830146794,0.09512828061440975,0.11925430808932373,0.08888810432837879,0.15191075228667686,-0.04038461538461539,0.02965635839665968,0.11038609730484024,-0.06997404436054738,-0.004139580075839878,-0.02511824889607644,-0.040520904404558356,-0.06688767761589196,0.021918781430548352,-0.016580822561361785,0.019294925176244676,-0.07230215046412988,0.003277972027972028,-0.025585414325959017,-0.04987741925548919,-0.16892616585868117,-0.0731576387109335,-0.04653906865825855,0.006112086505675687,-0.05283600355076869,-0.011580722788681531,-0.059971620422379114,-0.03616510607870452,0.023812392356566223,-0.11319444444444446,-0.1343801289196216,-0.000104928466268152,-0.16100886162235853,-0.25456260870149144,-0.0574447786134364,-0.12183046584270044,-0.13708951903063032,-0.137846999957922,-0.014361833847549993,-0.06760224469792672,-0.16903955868272139,-0.052083333333333336,-0.10999740285037192,-0.04101817715790975,-0.003067484662576695,-0.06371670124968941,-0.12420368915790499,-0.058283268855415356,-0.0857838829505681,-0.111268802160534,-0.12755680490568538,-0.09671006643687811,-0.14448461441919278,-0.028327338129496404,0.16144893389576856,0.09844081477630927,0.061702785011254764,0.18960586078972194,-0.01912313587223968,-0.015127957364326565,-0.056006547405063736,0.1641509713217596,0.11273695158600876,0.10216798303455303,0.10589412469154372,-0.10597826086956522,-0.19872993737199476,-0.1997413328444898,-0.08232195252067218,-0.18399562230609343,-0.001652393440984703,-0.10606143494544701,0.011876544555534309,-0.20288293817263148,-0.24995035389056175,-0.21459772909411656,-0.04568007632362331,0.4999999999999999,6.239277184704191,17.538396266202934,19.043698971446762,37.29676755223128,40.82096547994287,41.606494891707584,41.606494891707584,41.606494891707584,51.804344952200466,34.784142230439485,6.2610132926411035,8.684831614115435,0.0,17.020202721760985,7581.108076525214,7148.223323910394,994.4859771900792,142.0,43.0,61.0,84.0,103.0,120.0,129.0,131.0,130.0,383.15149190000074,28.0,4.962844630259907,5.860786223465865,6.80128303447162,7.731492029245684,8.680162019694377,9.623575217348709,10.577375458157261,11.528296719594216,12.485932957614416,0.6666666666666665,0.9933333333333334,1.1378492771672402,0.625999696356771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6489353645649877,0.9784698193002691,1.0160304471387973,0.6040742847108314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,4.0,0.0,0.0,0.0,2.0,2.0,1.0,0.0,1.0,6.0,2.0,0.0,0.0,0.0,25.329662855388698,5.697039313055833,0.0,11.814359458703011,0.0,9.589074368143644,4.794537184071822,0.0,11.761884949391115,6.923737199690624,13.344558822616634,36.71308096130057,24.10555409220562,203.97847014256456,-580.3646241323219,-54.03562688646717,-11.379698512398466,-48.363718677693484,406.35468525894066,1156.1704723536955,30.33070806768426,22.67000926183716,29.64539672701783,0.5,0.649639739904362,0.16748733490697063,137.90637546534603,0.12405432345573295,63.79333530855284,0.3503602600956379,6.0,0.17857142857142858,0.30192808796297166,0.6098691880903049,0.8582079351174104,0.8927748830367992,0.8927748830367992,0.8927748830367992,-0.3079999999999994,,2.303571428571429,1.9609845219659925,1.4545191904946573,2.2991871333729694,-6.541878845206731,1.7887851897184825,1.7346190845905671,-2.7953673998489466,96.11130000000004,24.596666341896878,0.0,15.116608065707286,11.835812092322787,43.70588209833365,20.640100371266954,10.60217582694588,0.0,0.0,4.04305126783455,0.0,5.4680601411351315,3.044522437723423,7.0825485693553,5.53338948872752,8.793156870913819,7.773594467360194,10.562224431339358,33.99999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.660000000000004,0.0,36.2491554582883,0.0,0.0,0.0,0.0,0.0,-0.7269549327102521,58.03031313552925,5.316788604006331,0.0,0.0,81.87422544533057,14.383611552215466,11.835812092322787,20.268296022307258,10.60217582694588,0.0,0.0,0.0,31.92598451419532,33.095703592814374,31.712235731996635,263.73017190628593,,210.1999524049819,239.1818751165566,241.97857995818845,210.21181777987522,270.43417645586175,238.9652939451253,237.1868289355301,264.05779455074884,31.712235731996635,263.73017190628593,,208.250776580806,237.37219086561663,240.66533696008025,208.2663517439442,275.93325896030206,237.31410761615436,235.5856420882157,266.63813368907097,5.141231136627627,194.18332994865662,,151.7873012105756,179.8209190409005,182.52599419195872,151.7866205563899,188.97931283686273,178.97264019260976,176.83426862750113,190.10862908506576,1.2197013743075629,10.143468150241766,,8.084613554037766,9.19930288909833,9.306868459930325,8.085069914610585,10.401314479071605,9.19097284404328,9.122570343674234,10.156069021182647,2.6419948106159197,131.86508595314294,,105.09878062068168,119.66636003989237,121.04523302488249,105.10384586450452,134.69569005754767,119.55144640293643,118.66013058640316,131.92138314461099,49.90196078431372,0.0,6.890754794963919,0.0,0.0,0.0,19.527262603085497,51.81755280407866,1.221944759385236,3.1918777819769883,0.0,1.4455489417989413,-2.00816291501041,2.875240174888443,0.0,0.0,0.0,30.807788520252398,396.4966723300424,87.34589141832211,176.43130932836232,248.27414243189241,258.2741424318924,258.2741424318924,258.2741424318924,997.0,132.25174828985206,213.83648307146277,78.3005476743893,135.48,110.17999999999999,1.0,7.450660796211539,5.807354922057604,3.768626011667587,5.016479964111657,,4.994478700355498,5.0151655854165496,5.01611254535838,4.994459745300963,4.980421934435004,5.014003156936994,5.012283049910442,4.999516438721032,0.1449471542949072,0.19294153708121756,,0.19209533462905762,0.19289098405448268,0.19292740559070692,0.19209460558849858,0.19155468978596168,0.19284627526680745,0.19278011730424777,0.19228909379696277,2.282221926919599,2.5682399304055137,,2.563844487388428,2.567977883925474,2.5681666853787486,2.5638406921794297,2.5610260582651323,2.5677460743877902,2.567402954910061,2.5648526405288115,276.2500000000004,608.3872209895447,157.0317036220742,,158.78957244054376,156.0720288896659,156.09817966852674,158.79312978356953,161.36570181351155,156.26162989733436,156.49907008183916,158.61777006922074,23.399508499597875,6.039680908541315,,6.1072912477132215,6.002770341910226,6.003776141097182,6.107428068598828,6.2063731466735215,6.010062688359014,6.01919500314766,6.100683464200798,7.366323000901292,6.011959163888401,,6.023091326952357,6.005829069367112,6.005996611164536,6.023113729576939,6.03918467402772,6.007043162217012,6.008561513020912,6.022008791263407,0.0,39.794536411710375,22.78349412655908,0.038690843621399074,-2.1355823198833654,-0.5679388699924419,-0.1904531603223889,4.078991593423412,3.419379099751644,350.4234361440497,124.49482331608314,-354.21577233008856,-32.97973466171592,-6.945407300589971,-29.51798102750738,248.0117372662748,705.6491725736797,18.511836760511624,13.836258285758422,18.093568527530245,1652.0,43.0,2.528668289020623,1.6255323865418276,0.0,0.0,0.9383868989525115,0.4044835039082296,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.48556236094870275,0.27436426013822257,0.9791191789430043,0.567749420436715,1.8039406316752047,0.8630678301053327,19.33398062421133,16.11665930229386,12.145642165489814,9.62480315281566,11.957516613188861,8.783160753273926,9.846459516860527,6.9456403369424145,8.283870144956937,5.555266143830053,6.43906012413659,4.186114252532013,4.535605028196007,2.867455829675313,3.156787195298507,1.9636314666415497,6.0566158644555825,3.5330838918132477,9.5337583622535,5.275803516633284,15.359033211221428,7.6602195149543695,86.46174726001193,38.45589721164408,28.162067683442796,26.129165971717445,26.129165971717445,26.129165971717445,142.0,175.0,55.269824999999976,34.134175000000006,0.2549019607843137,134.09,11.444444444444445,5.583333333333331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,1.0,0.0,0.0,51.0,0.0,1.0,53.0,0.0,4.0,4.0,49.0,4.0,28.0,49.0,0.0,0.0,0.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,6.0,3.0,3.0,26.0,9.0,0.0,3.0,5.0,0.0,3.0,5.0,1.0,0.0,0.0,0.0,0.0,3.4965075614664802,5.6240175061873385,3.9889840465642745,4.430816798843313,4.820281565605037,5.10594547390058,5.351858133476067,5.476463551931511,5.575949103146316,5.53338948872752 +441207,C[C@H]1O[C@@H](O[C@H]2[C@@H](O)C[C@H](O[C@H]3[C@@H](O)C[C@H](O[C@H]4CC[C@]5(C)[C@H]6CC[C@]7(C)[C@@H](C8=CC(=O)OC8)CC[C@]7(O)[C@@H]6CC[C@@H]5C4)O[C@@H]3C)O[C@@H]2C)C[C@H](O)[C@@H]1O,0,20.10169491525424,6.146271186440682,3.2033898305084745,6.033898305084746,164.78105970063075,78.87661923728808,1.2810320161892883,6.188129661016951,4.003943032015066,7.734874237288135,187.8528196257517,22.64,6.354,4.12,5.296,145.8046949322548,84.42449514400002,1.67603723376,6.486979999999997,2.620833333333334,7.817079711999999,244.78649225781493,19.140562248995984,6.291646586345381,3.6947791164658637,4.156626506024097,153.2191841782328,70.05285532530117,1.421646274111534,6.386355020080321,2.613788487282463,7.819705831325302,203.16196556712222,15.564304461942257,6.2084776902887135,3.041994750656168,2.9291338582677167,158.16622797865733,54.7767655879265,1.2441216946158478,6.279148556430447,2.659977398658501,7.7907310761154855,170.98216490855225,12.684322033898304,6.01728813559322,2.5911016949152543,2.139830508474576,160.43875741409133,42.814515610169494,1.1382649160806164,6.082565889830507,2.45081508945386,7.635379576271187,148.23124319529705,10.803059273422562,5.836252390057362,2.3403441682600383,1.8355640535372848,164.35146446199406,36.02457855449331,1.0257108003627649,5.890271892925431,2.179387083067771,7.495222378585086,129.0237513603562,10.851239669421487,5.823202479338844,2.3512396694214877,1.8057851239669422,164.94490113030116,36.48649772107437,1.0166478765289835,5.877240909090909,2.133321854912764,7.488697760330578,129.4274871110622,11.820276497695852,5.950898617511521,2.3548387096774195,2.057603686635945,163.3984998032146,39.89313298387096,1.0409083452280508,6.004454377880184,2.605414746543779,7.593374921658987,134.01388312620733,10.31904761904762,5.9358571428571425,2.1809523809523808,1.8,166.91107934154314,33.741913966666665,0.9522741309196571,5.973101190476192,2.4387566137566137,7.611917123809523,120.30187579355074,7.792301062912955,0.15622234989945416,0.02042389635497387,0.7187589773053719,3.7584027578282084,1.2430650518718924,36.85216487790864,0.219595091322475,0.1452824260270036,1.4992344353474414,0.10342116518241878,48.730508248074685,0.4260040218328062,-0.006801332950301566,-0.009728229924265235,0.26171559896581437,0.9462752082734844,0.005410199142243213,2.0728507169388193,0.004442066430643191,-0.004146629416834158,-0.18786484966005937,-0.007017029046825555,2.8943086021738056,0.46547580727967847,0.008039443034995536,-0.0001309805554392035,-0.03704908689627805,0.07108468346237577,0.0010881852219032297,2.1788421518374617,0.0016217685811373795,0.008081436201571646,0.03481064327212134,0.004431898870402673,1.5829304330729945,-0.5992764621744893,-0.005357987605757791,0.0004617885187326125,-0.12891957163786014,-0.4610585699194954,-0.0238209061754859,-2.8413528539751933,-0.006467500896453634,-0.006205029345656644,0.002801569862359108,-0.0020100191349967478,-2.96168471307435,-1.0596811261131855,-0.0054280379201378775,-0.0005296161311174765,-0.06718615340419423,-0.32422436081585754,-0.1186562043840884,-5.07719699486498,-0.02431978029374142,-0.007206271545532872,-0.018127922611637773,-0.0011419965527147337,-7.1439427618609805,0.0692214441356877,0.007841881879396613,0.0007752967313739282,0.02382779392968,0.1278791231064237,-0.0009832593207179357,0.2874168194695801,-0.000998987816429261,0.006614281365160084,0.04212627246962125,0.005866110314226922,-0.4247806331437303,0.3482998615862735,-0.003822503982659145,-0.0015218009085500933,-0.026470141333947438,0.026476076742457912,0.037021673105502334,1.6984774717901887,0.008568743923732585,-0.0021789206340916017,-0.05153785280397933,-0.004046545627859432,2.846566748204471,-0.130542100169849,0.008745626356110911,0.0015678303092001452,-0.023726563027468405,0.009268881631291357,-0.10764083252982826,-0.7142349357076002,-0.019370251873078836,0.007346207886922679,0.11275334203980267,0.006321572769623627,-3.6290250879798127,-0.29359242691618426,-0.006032680811480013,-0.0004731256813866667,0.05311350049930917,-0.029710263881479012,0.034053285158058604,-1.3550078018795932,0.004685905903917107,-0.006095200441854428,-0.06850134526583465,-0.003203480920917639,-0.21675482895117948,,,0.4598765432098765,0.7037037037037037,0.046296296296296294,0.0,0.6574074074074074,-0.6111111111111112,1.8744180960655554,0.02452191867737636,0.03726265941811709,0.5658389393123663,0.09799307308335653,0.37589637050543556,2.440257035377922,0.4738894435887921,2.063160181962112,1.6012017896056543,0.0,0.46195839235645775,0.0,0.46195839235645775,6.478260102610185,2372.0,725.2600000000004,378.0,712.0,19444.165044674428,9307.441069999993,151.161777910336,730.1993000000002,472.46527777777777,912.71516,22166.6327158387,2830.0,794.25,515.0,662.0,18225.58686653185,10553.061893000002,209.50465422,810.8724999999997,327.60416666666674,977.1349639999999,30598.311532226868,4766.0,1566.62,920.0,1035.0,38151.576860379966,17443.160975999992,353.98992225377197,1590.2024000000001,650.8333333333333,1947.1067520000001,50587.32942621344,5930.0,2365.43,1159.0,1116.0,60261.33285986844,20869.947688999997,474.010365648638,2392.3556000000003,1013.4513888888888,2968.26854,65144.20483015841,5987.0,2840.16,1223.0,1010.0,75727.0934994511,20208.451368000002,537.261040390051,2870.9710999999993,1156.784722222222,3603.89916,69965.14678818021,5650.0,3052.3600000000006,1224.0,960.0,85955.8159136229,18840.854584,536.446748589726,3080.6122000000005,1139.8194444444443,3920.001304,67479.42196146629,5252.0,2818.4300000000007,1138.0,874.0,79833.33214706577,17659.464896999994,492.057572240028,2844.5845999999997,1032.5277777777778,3624.529716,62642.9037617541,5130.0,2582.69,1022.0,893.0,70914.94891459514,17313.619714999997,451.754221828974,2605.9332,1130.75,3295.5247160000004,58162.02527677398,4334.0,2493.06,916.0,756.0,70102.65332344812,14171.603866,399.955134986256,2508.702500000001,1024.2777777777778,3197.0051919999996,50526.78783329131,919.4915254237287,18.43423728813559,2.4100197698869166,84.81355932203388,443.4915254237286,146.6816761208833,4348.555455593219,25.912220776052052,17.143326271186428,176.9096633709981,12.203697491525416,5750.199973272813,53.25050272910078,-0.8501666187876957,-1.2160287405331545,32.714449870726796,118.28440103418555,0.6762748927804016,259.10633961735243,0.5552583038303989,-0.5183286771042698,-23.483106207507422,-0.8771286308531944,361.7885752717257,115.90347601263994,2.0018213157138884,-0.03261415830436167,-9.225222637173234,17.700086182131567,0.2709581202539042,542.531695807528,0.40382037670320753,2.0122776141913397,8.667850174758215,1.1035428187302656,394.1496778351756,-228.32433208848042,-2.0413932777937185,0.17594142563712536,-49.11835679402471,-175.66331513932775,-9.075765252860128,-1082.5554373645487,-2.4641178415488345,-2.364116180695181,1.06739811755882,-0.7658172904337609,-1128.4018756813275,-500.1694915254236,-2.5620338983050783,-0.24997881388744891,-31.711864406779675,-153.03389830508476,-56.00572846928973,-2396.4369815762707,-11.47893629864595,-3.4013601694915154,-8.55637947269303,-0.5390223728813544,-3371.940983598383,36.20281528296467,4.101304222924429,0.40548019050856443,12.46193622522264,66.88078138465958,-0.5142446247354804,150.3189965825904,-0.5224706279925035,3.459269153978724,22.032040501611913,3.06797569434068,-222.16027113417096,168.57713300775637,-1.8500919276070262,-0.7365516397382451,-12.81154840563056,12.81442114334963,17.91848978306313,822.0630963464513,4.147272059086571,-1.0545975869003352,-24.944320757125997,-1.9585280838839652,1377.738306130964,-56.65527147371446,3.7956018385521353,0.680438354192863,-10.297328353921287,4.022694627980449,-46.716121317945465,-309.9779620970985,-8.406689312916216,3.1882542229244426,48.93495044527436,2.7435625820166543,-1574.9968881832388,-123.30881930479738,-2.5337259408216055,-0.19871278618240001,22.30767020970985,-12.478310830221185,14.302379766384615,-569.1032767894292,1.9680804796451847,-2.55998418557886,-28.770565011650554,-1.3454619867854083,-91.03702815949538,0.7096092133244513,0.6034582833712792,0.41950868776712735,0.3416279398034868,0.2666717520837259,0.19518318738188056,0.16659089191616322,0.11575387266937986,0.10367065061303278,0.0683569563757186,0.06272880777508938,0.039617814355595624,0.03958623047390083,0.023576881675615446,0.02459171123932311,0.013996661967096032,8.032497511551812,5.728779012483639,3.557526773127036,2.2280678052622545,0.45280768518907927,-0.48734765572261346,4.1183362229830465,0.9777026699838562,6.029284227039292,0.9930567629136731,13.64688675617649,10.98919431551996,16.02007613482362,11.74016603110633,1.9675949610312173,0.7413596212682931,3.503563172978896,2.277903757162803,7.008283647093759,1.0672525591231172,3.716484707501715,2.4739330055979503,20.87324408827287,14.700321226662028,0.19448693900033412,0.40537886731627415,0.6392071407410183,0.7991782059139848,0.8550058590476187,0.8856658468736601,0.8217406967633578,1374.4176851913944,0.0,1.0,9.0,0.0,1.0,22.0,1.0,5.0,2.0,5.523435156993014,4.049577967007551,2.415425893189667,1.2974385596887235,0.907276695135268,0.6930037077187912,465.5872003866152,5684.09251042067,123.00770739263626,48.170275512039595,96.12222068696391,,28.0,2583.0,79.40682848872405,30.327174158275348,54.00152957559452,18.442694056835705,63.36049913640336,0.0,19.92349450621513,6.923737199690624,13.847474399381248,33.15804067660034,24.83333333333333,38.0,2.5,0.0,35.5,0.0,0.040123456790123545,-33.0,0.12156817834783978,0.004458568738229807,-0.11710960960960998,0.049539652646997556,0.19411165387299412,0.0,0.567514124293784,0.8845679012345684,0.4459459459459442,0.5630555555555542,0.8350282485875709,101.21857718753999,1.3241836085783234,2.012183608578323,30.55530272286778,5.291625946501252,20.29840400729352,131.77387991040777,25.590029953794772,0.5198883461270059,0.1812080536912752,0.0604026845637584,0.38255033557046986,0.926829268292683,0.2775890516879179,-1.5074697147219434,-0.07095808869225911,-0.01277516707391478,-0.0456809004461195,0.7224109483120819,3.923110870339207,0.04656344466679166,0.03324670229101024,0.04615424553340243,-2.2567599698020855,0.9161585253456223,0.8570834666519556,1.4342402878666674,1.0980791366906477,0.6553180463196517,1.3838496960436963,0.9238943504147925,1.3462456065655732,0.8396567721045772,0.9380578586709666,0.9022662352656912,1.171076545828305,0.9415562711676199,0.9182592897102837,0.972124543673207,1.5955621045332413,1.0616195578001073,1.221861946579016,0.945913542271689,1.1979542910569727,0.9062954545065385,0.7454809342321003,0.9475917498177421,1.0906154166197586,1.0924302042889802,1.0886325223304163,0.9810251681019087,1.493549255084122,1.1968643867349653,1.130754592346017,1.0930400625041214,1.127555145447955,1.0870736273239,0.9381122482789775,1.0925290284389835,1.1129984095262198,1.1146002304147467,0.9652779693275222,0.9326067946697756,1.1106115107913672,1.0231239967897277,1.152645820038214,1.1185606254101783,1.1659378362143098,0.9819930236725515,0.8891718830930568,0.9420689025212245,1.1797725787674287,0.9436267369218705,0.7993071457480632,0.7664578640523434,0.8453701665818399,0.8623189946698601,0.9732620626846816,0.9473571973496241,0.9867844724590363,0.8158411752719288,0.6669834487908556,0.7760186067889863,1.0030034554248448,0.9116103324827666,0.8895475255622974,0.9147070931648159,0.9932944140555328,0.9121807256656963,0.9305872004043624,0.9123775145045395,0.9312864345156728,0.8913079175129676,0.836884438044481,0.8877223964431848,0.9280005497381983,0.9946453524177622,0.8851273426939825,0.8307299533184329,0.9678724762125787,0.9342963975835252,1.0778160683506777,0.9983032696032624,1.0823313958259773,0.8944515306656369,0.9549988026983377,0.874742904766347,1.0704220285894839,1.038858327847268,1.0857708311989216,1.023174731048769,0.7702188249400482,1.010351082648148,0.8898269169213213,1.0357458522526772,0.8986316309698023,1.0877996689709237,1.0794304726427093,1.0765984309716208,0.9489914300581459,16.0,0.47740434649525554,10.222222222222225,6.951388888888889,5.33,2.4655555555555555,2.4099773242630387,1.2864937641723355,0.8878732048374904,0.6081327160493828,12430.847895464216,14732.100052352049,5295.472671095902,4634.9371106428025,24.59900379797508,0.4833230439004531,12.709738405418957,0.9354453265133281,0.0,0.926829268292683,1.3592078923688273,2.8330650823542904,4.4672171561721745,5.585204489673118,5.975366354226574,6.18963934164305,0.26229508196721313,0.007577846769765962,0.10648148148148151,0.06377420998980632,0.05330000000000001,0.026799516908212563,0.02707839690183189,0.015499924869546211,0.013452624315719551,0.009502073688271606,0.5857611568918488,40.76484815909701,15.550347222222221,7.347434599605733,318.5281908108477,0.0,4.950203157518018,552.4874800706608,,483.55040935697895,474.3955030467465,503.29425728044686,483.73879857653594,735.7881648260784,481.31376258138584,483.93651963319,617.4285123027448,0.05466986175115202,-0.04353623508210543,-0.4763160640450519,0.3641215027977618,0.25177589237942377,0.004352305725348939,0.05624773263134422,0.02022844137312716,-0.028541851414729435,-0.1253071869420625,-0.06784906198309226,0.059394180488321874,0.05973534691762437,0.051461542091575115,-0.006413103218050045,-0.051545911864885656,0.018913535361349095,0.0008754048875113704,0.059123857690748266,0.007385267909999934,0.0556256969447189,0.023218945917590345,0.04285291954103877,0.03248335570428891,-0.07690622543149851,-0.03429718992964983,0.02261020672581666,-0.1793641202523546,-0.12267407184053843,-0.01916304069494573,-0.07710138233095955,-0.029451937461371206,-0.04271011653194252,0.0018686669651566904,-0.0194352783731588,-0.06077680737490286,-0.1359907834101382,-0.03474559129107584,-0.025931199508290596,-0.09347521982414075,-0.08626652908354358,-0.09545454134150724,-0.13777201452576132,-0.11074828743793669,-0.04960181174420534,-0.012091452933734611,-0.01104219383624648,-0.1466010312367968,0.00888331233313655,0.05019692690862546,0.03796027544886746,0.033151299228303795,0.034024858788768715,-0.0007909958688302567,0.007799184129936277,-0.00454922653513347,0.045527057511626966,0.028098522470142342,0.0567205977991064,-0.00871693418384392,0.04469794721407625,-0.024468355424939747,-0.07451080254720771,-0.03682756274319387,0.007044502265573342,0.029782570952141693,0.04608894694293404,0.03902065329479246,-0.014997826603519174,-0.03437611329413978,-0.0391268617088384,0.05841446868793816,-0.01675270232963113,0.055981915274860856,0.07676450575104533,-0.03301045799305257,0.002466175721052146,-0.08659308084298188,-0.019381084885348343,-0.0882089474606409,0.05056501386862331,0.07520727871600183,0.061124555679423646,-0.07447131619283272,-0.03767724380074608,-0.0386159907040362,-0.023165299762767624,0.07389612119827947,-0.007905023967853588,0.027394612298671607,-0.03676874361028013,0.021338846308890675,-0.04195414826512819,-0.04569088306056667,-0.03097509987696618,-0.004448031361539172,15.016244367526035,35.949429347556034,23.365622330090662,12.456191548526686,27.825583524753682,35.789916804763514,39.957967372177514,41.82187018121332,42.6649251491393,111.41064982595405,86.46489663870533,0.0,24.94575318724872,0.0,24.94575318724872,45058.07111674984,44371.08899834077,3984.0930065078137,633.0,96.0,137.0,187.0,243.0,297.0,369.0,452.0,551.0,764.4346921080019,61.0,5.752572638825633,6.660575149839686,7.6004023345004,8.525359754082631,9.469545806435415,10.404474939166215,11.353073564023212,12.29580822517461,13.248754589502054,0.5847457627118645,0.9789830508474577,1.1356888781450118,0.5397241793892322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6169225210595757,0.9640079760717848,1.0060118261384818,0.573143034564128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,5.0,0.0,0.0,0.0,5.0,13.0,0.0,7.0,0.0,17.0,0.0,3.0,0.0,0.0,58.69067765080386,24.918781127757825,18.870080188005637,0.0,0.0,0.0,4.794537184071822,0.0,0.0,13.847474399381248,113.21832538951757,30.75347544500869,48.3288155252218,290.5475436667889,-1577.8418496740708,-74.27057460466614,-13.371541098932807,-47.81338938406275,756.1347440534041,4106.250660746599,48.737132787970125,34.798734413106786,48.30883130290117,0.5,0.7128881641262252,0.0843334621243091,287.056097458209,0.060888701420002224,158.68248852407973,0.2871118358737747,14.0,0.11475409836065574,0.19748342063080737,0.4116245840494332,0.649055475365147,0.811491232309509,0.8681790282267521,0.8993113978527412,3.2473000000000014,,3.25,3.7142857142857135,2.250744416417916,3.2404525282830186,-14.069825436408976,3.363372093023256,3.230432402846196,-5.186928214754333,191.2209999999994,63.485214834875684,0.0,0.0,34.50160512343913,197.17934035003762,6.606881964512918,11.64912463690315,0.0,0.0,4.812184355372417,0.0,6.2285110035911835,3.044522437723423,7.840312983320164,5.476463551931511,9.551018039079908,7.653020413804189,11.31731196033484,69.00000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.52000000000001,0.0,11.925133726549372,0.0,0.0,0.0,1.6760925627077516,0.0,0.8152834087300382,134.0112876211114,0.0,0.0,0.0,123.61961910314066,37.952577860672164,34.50160512343913,111.66854547356525,11.64912463690315,0.0,0.0,0.0,63.687453167929405,72.79685748502993,69.31593703711856,1104.9749601413218,,966.9804483435875,948.653439955927,1006.505153656582,967.357580392765,1475.2925623135552,962.502955825993,967.7533936218301,1236.2017837722778,69.31593703711856,1104.9749601413218,,964.0657358906069,945.3642538139401,1004.435945921119,964.4506974673159,1485.646155088566,959.4956605636148,964.8547332690816,1240.0439528202442,5.292646289957546,866.0199169405896,,754.7739367878148,739.8239101118245,787.179097845177,755.0821080028859,1164.334130693604,751.1167848432437,755.4055668583626,972.5915531740303,1.2836284636503437,20.46249926187633,,17.907045339696065,17.56765629548013,18.63898432697374,17.914029266532687,27.32023263543621,17.824128811592463,17.921359141145004,22.892625625412553,2.676104662382573,552.4874800706608,,483.55040935697895,474.3955030467465,503.29425728044686,483.73879857653594,735.7881648260784,481.31376258138584,483.93651963319,617.4285123027448,113.7529411764706,0.0,10.025140201715429,0.0,0.0,0.0,54.97889408054607,118.70939548434086,9.513726258191165,0.0,42.20219521597671,0.0,-7.53450706126243,0.0,-0.8519583931541135,0.0,0.0,67.6308780785671,746.167414516286,160.38653129952164,334.3016797178063,527.1316244283166,659.054129781428,705.0932297987357,730.3774423138799,3080.0,200.31056700154986,300.51487320390714,109.92334474515764,182.82999999999998,182.82999999999998,1.0,8.151909872940905,6.930737337562887,4.5275074600396765,7.233732446656698,,7.23826576983809,7.238174775753682,7.238307638365843,7.238267126393639,7.241408465938946,7.238248120844045,7.2382685286638635,7.240499063563674,0.0838427307414755,0.13395800827142035,,0.13404195870070537,0.13404027362506818,0.1340427340438119,0.13404198382210442,0.13410015677664713,0.1340416318674823,0.13404200979007155,0.1340833159919199,3.1965705120615144,3.6651541008834876,,3.665780596722121,3.6657680253881493,3.665786381036761,3.665780784136546,3.6662146805418296,3.6657781584287332,3.6657809778666293,3.6660890890236386,569.3800000000026,148302.46593600477,476.34861873261576,,475.6238724128371,475.6643608422534,475.55778296448403,475.6231096200012,475.4326853165917,475.6331397994369,475.6223119846544,475.31747444520624,2746.341961777866,8.821270717270663,,8.807849489126612,8.808599274856546,8.806625610453407,8.807835363333355,8.80430898734429,8.80802110739698,8.807820592308415,8.802175452689005,13.593408109582315,7.852548932028703,,7.851026311435063,7.851111434803618,7.850887348602704,7.851024707660543,7.850624259428236,7.851045795941314,7.851023030626775,7.8503819016000165,42.20219521597671,11.925133726549372,54.97889408054607,0.2152069022894776,1.1334969177362688,0.0,1.903737842838748,10.391335314063346,0.0,727.8402140178504,304.1109676966373,-1651.4991168775177,-77.73769493750524,-13.995755227775579,-50.0454277841672,791.4328437305397,4297.939835542806,51.01229364343541,36.42321894527803,50.56399806520948,14382.0,109.0,5.595925567370933,3.5947404189402907,0.3219752754296894,0.2655567492724875,2.2856301196840163,1.383750716799988,0.5358934516931788,0.33931129575362584,0.0,0.0,0.0,0.0,0.19001991384646114,0.11383545031536987,0.7799658697451389,0.5192221453812803,1.8455493227529243,1.1853645766189567,38.31889751952037,32.586747302049076,25.59002995379477,20.839304328012695,25.600488200037685,18.737585988660534,22.82295219251436,15.858280555705042,19.38641166463713,12.78275084225938,15.24310028934672,9.627128888409736,11.757110450748547,7.002333857657788,9.074341447310227,5.164768265858436,14.211524373193612,8.988971683899184,23.627340829380373,14.666641519424786,37.49630977798637,22.64778077067173,197.45519585832284,105.58221387410869,63.76496289868599,41.299580493174815,34.08993141265654,30.859120248988187,314.0,390.0,121.57075199999997,77.22524800000014,0.3644067796610169,859.13,18.54861111111111,11.15972222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,3.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,8.0,0.0,0.0,0.0,118.0,0.0,0.0,125.0,0.0,2.0,2.0,123.0,2.0,61.0,123.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64.0,13.0,5.0,4.0,54.0,13.0,0.0,0.0,13.0,0.0,8.0,7.0,0.0,0.0,0.0,0.0,0.0,4.1588830833596715,6.61338421837956,4.624972813284271,4.997212273764115,5.327876168789581,5.594711379601839,5.799092654460526,6.025865973825314,6.2422232654551655,6.450470422144176 +4539,CCn1cc(C(=O)O)c(=O)c2cc(F)c(N3CCNCC3)cc21,0,24.73170731707317,6.559870731707316,3.4146341463414633,9.073170731707316,167.09403511107274,98.6328429792627,1.4267144704215122,6.590878048780488,6.754742547425475,8.005869853658536,216.8765044874705,25.88372093023256,6.548930232558139,4.162790697674419,8.069767441860465,149.9208220838104,98.83673099616749,1.7438339359534891,6.675104651162791,3.42764857881137,7.928146046511624,261.87404111747503,22.092105263157894,6.470578947368424,3.763157894736842,6.7894736842105265,159.28736433929853,83.18539004829469,1.503020698010421,6.5576986842105285,3.5906432748538015,7.904179052631574,221.66650260663616,19.392156862745097,6.352489215686275,3.3333333333333335,5.784313725490196,162.6391613903542,72.15308046782745,1.3645890642576666,6.425022549019607,3.381263616557734,7.832972156862744,197.5117222777068,19.028301886792452,6.396480188679246,3.018867924528302,5.584905660377358,159.4757934692819,70.05118438458868,1.3408763694611885,6.467722641509433,4.174528301886792,7.883338754716981,190.6844764651282,17.314814814814813,6.3258888888888904,2.75,4.481481481481482,163.0648993120239,63.27590504284445,1.228343735490556,6.388175000000002,3.87088477366255,7.829550148148148,173.08991898648293,16.479591836734695,6.544428571428569,2.5918367346938775,3.673469387755102,168.10774911546005,58.578017283983655,1.1277098257131222,6.578946938775509,3.9841269841269824,8.055417795918363,160.7458163444294,14.928571428571429,6.5985345238095245,2.369047619047619,3.142857142857143,170.05008534658796,51.445361442038084,1.0891296464683213,6.61554761904762,4.581349206349204,8.128779476190475,150.89695365069073,11.58904109589041,6.0606712328767145,2.1095890410958904,2.0684931506849313,166.98790037963465,38.17761077674521,1.0474597941155206,6.105947945205481,2.8984018264840197,7.654981972602741,133.0100096580366,7.941701368233193,0.19840249851278996,0.02733538655431634,0.6638905413444378,4.673408685306365,1.9928315755768489,37.96910805438882,0.22286266979386435,0.1788659131469363,2.9791460109723045,0.11991001070791192,47.33100430243918,0.17344327158529657,-0.013212027724361173,-0.011840684081168647,0.2793879612080296,1.4451392443589783,-0.3892941748546132,0.8655515722144382,-0.008310498837511544,-0.009631936969965286,-0.13982540846395417,-0.009877702142965846,0.15827402195785095,0.548349979648705,-0.0036029157143304263,-0.0010390866604544525,0.07616080653746211,0.8118287986474213,-0.056011206030422325,2.694768389477095,0.017543329727434748,-0.0007923252136886102,0.3395852684457523,-0.000933474122546105,5.1198659972923135,0.7904841889164945,-0.0018623502583662893,-0.003259710315069175,-0.013484037279397159,0.49827950216374467,0.24927178425749857,3.863505981563136,0.023119341714516316,0.0007914517502420229,0.07347368189129043,-0.0031613603014078884,6.888764437644609,0.13860235933238294,0.02871517290920722,0.004895450900497766,-0.08220623393532597,0.347760205627827,-0.13898529031135795,0.5260368953003625,-0.02153610465088783,0.024305692927614964,0.3060843413312181,0.01966871823824543,-4.395887623302016,0.3758234736818914,0.014961390376098872,-0.0008283694046379787,-0.1198526009650341,-0.16934364465595875,-0.2651464322456262,1.6416130049047775,-0.03373249253902921,0.014477469870227149,0.07203084338883133,0.007298536717562299,-3.9787642251377098,-1.3506112736587796,-0.032449437288300166,-0.0013075902588952648,-0.15766854034891772,-1.451407689786206,-0.19132914875901283,-6.45401745616062,-0.0323329263719445,-0.029691597567045844,-0.4157922141690305,-0.01971571304738434,-7.38158254775157,-2.4277640860032297,-0.02750055310047869,-0.00053429175333703,-0.07300784680320672,-1.4968697770601398,0.21683890650213705,-11.516263956421486,-0.005035566078580691,-0.030427875980850373,-0.07467446625685759,-0.01096162394833009,-8.426128807752123,-1.0897133962986807,-0.006408880069756285,0.002885226307077543,-0.024398392998296874,-0.22669969766854356,-0.08760450360335446,-5.527629455481054,-0.029621572821052797,-0.00877449984924171,-0.299829457532798,-0.0013026000831207574,-8.404467277477053,,,0.45590062111801244,1.1956521739130435,0.5217391304347826,0.043478260869565216,0.6739130434782609,-0.15217391304347827,0.81931550577271,0.016962511170432376,0.028179902474780204,0.9573488975051418,0.23895939678496378,0.2403482469303906,1.7766644032778518,0.4793076437153544,2.0308706941971657,1.4457403778581155,0.2804319621227425,0.2267130255350047,0.0779853286813027,0.58513031633905,7.7837370647805,1014.0,268.95469999999995,140.0,372.0,6850.855439553982,4043.9465621497707,58.495293287282,270.226,276.94444444444446,328.240664,8891.93668398629,1113.0,281.604,179.0,347.0,6446.595349603847,4249.979432835202,74.98485924600003,287.02950000000004,147.3888888888889,340.91027999999983,11260.583768051427,1679.0,491.76400000000024,286.0,516.0,12105.83968978669,6322.089643670397,114.229573048792,498.38510000000014,272.8888888888889,600.7176079999996,16846.65419810435,1978.0,647.9539000000001,340.0,590.0,16589.19446181613,7359.6142077183995,139.188084554282,655.3522999999999,344.88888888888886,798.9631599999999,20146.195672326096,2017.0,678.0269000000001,320.0,592.0,16904.434107743884,7425.4255447664,142.13289516288597,685.5785999999999,442.4999999999999,835.6339079999999,20212.55450530359,1870.0,683.1960000000001,297.0,484.0,17611.00912569858,6833.797744627201,132.66112343298005,689.9229000000003,418.0555555555554,845.591416,18693.711250540156,1615.0,641.3539999999998,254.0,360.0,16474.559413315084,5740.645693830398,110.51556291988598,644.7367999999999,390.4444444444443,789.4309439999996,15753.090001754079,1254.0,554.2769000000001,199.0,264.0,14284.207169113388,4321.410361131199,91.486890303339,555.706,384.83333333333314,682.8174759999999,12675.344106658022,846.0,442.42900000000014,154.0,151.0,12190.11672771333,2786.9655867024003,76.464564970433,445.7342000000001,211.58333333333343,558.8136840000001,9709.730705036673,325.60975609756093,8.134502439024388,1.12075084872697,27.21951219512195,191.60975609756096,81.70609459865081,1556.7334302299416,9.137369461548438,7.333502439024389,122.14498644986448,4.916310439024389,1940.5711764000064,7.458060678167753,-0.5681171921475304,-0.5091494154902518,12.013682331945272,62.140987507436066,-16.73964951874837,37.218717605220846,-0.3573514500129964,-0.4141732897085073,-6.012492563950029,-0.42474119214753137,6.805782944187591,41.674598453301584,-0.2738215942891124,-0.0789705861945384,5.788221296847121,61.698988697204015,-4.2568516583120966,204.8023976002592,1.3332930592850407,-0.060216716240334374,25.808480401877176,-0.07094403331350398,389.1098157942158,80.62938726948244,-0.1899597263533615,-0.33249045213705586,-1.3753718024985102,50.824509220701955,25.425721994264855,394.0776101194399,2.358172854880664,0.08072807852468633,7.494315552911624,-0.32245875074360464,702.6539726397501,14.691850089232592,3.0438083283759654,0.5189177954527632,-8.713860797144553,36.86258179654966,-14.732440773003942,55.759910901838424,-2.28282709299411,2.576403450327186,32.44494018110912,2.0848841332540156,-465.96408807001376,40.58893515764427,1.6158301606186782,-0.0894638957009017,-12.944080904223682,-18.289113622843544,-28.635814682527627,177.29420452971596,-3.643109194215155,1.5635667459845322,7.779331085993783,0.7882419654967283,-429.70653631487266,-132.3599048185604,-3.180044854253416,-0.12814384537173595,-15.451516954193936,-142.23795359904818,-18.750256578383258,-632.4937107037407,-3.168626784450561,-2.9097765615704927,-40.74763698856499,-1.9321398786436652,-723.3950896796539,-203.93218322427128,-2.31004646044021,-0.044880507280310525,-6.132659131469365,-125.73706127305175,18.214468146179513,-967.3661723394048,-0.4229875506007781,-2.5559415823914313,-6.272655165576037,-0.9207764116597276,-707.7948198511783,-79.54907792980369,-0.46784824509220885,0.21062152041666063,-1.781082688875672,-16.54907792980368,-6.395128763044876,-403.5169502501169,-2.1623748159368543,-0.6405384889946448,-21.887550399894252,-0.09508980606781528,-613.5261112558248,0.7200049327558942,0.5566820240842801,0.4409630322181261,0.30330089373453,0.27803780116446447,0.15335787361274347,0.17272487653089985,0.08355083830247356,0.10852952458152758,0.044200499274950344,0.06777572245787997,0.023512288615034262,0.0431422908606252,0.011770643958655997,0.02720673231145273,0.006530821268518339,9.004067683473819,5.669656359312482,4.1077180195017355,2.1646523650119986,0.49319390456581075,-0.46263415055537477,3.2921878859317113,0.9727209403185106,7.0040619052065285,0.9880118946019837,17.42477168015639,10.933731859581819,19.00014150492427,11.684278096160313,2.0150609340560885,0.5458519660094934,3.9886706904172,2.2132881751942612,8.001919828234083,1.3712169369228815,4.009953285156077,2.408771299643227,20.91146569647321,13.304119981027938,0.3088194991492672,0.6393892418022519,0.7631759128535343,0.8379762985952539,0.8379762985952539,0.8379762985952539,1.7498309824920522,825.4107594006955,0.0,2.0,6.0,0.0,6.0,0.0,2.0,0.0,0.0,3.623620122689965,1.7675669344496212,1.0725406939277349,0.6525582317600866,0.6525582317600866,0.6525582317600866,189.32160732616913,1211.600205108381,68.30601304834299,29.551224514838562,65.29635068943327,,11.0,405.0,17.215316520898284,13.979489415818463,10.949675706161791,30.838356210037553,19.15587988028676,6.196843571613076,10.633466716252965,11.823646930541102,5.316788604006331,5.106527394840706,10.485714285714286,27.5,12.0,1.0,15.5,0.0,0.044099378881987575,-3.5,0.19539533637094603,0.0550095996586788,-0.14038573671226723,0.04804968944099375,0.20779310344827573,0.0,0.636933797909408,0.9006211180124223,0.44153846153846193,0.5819241982507292,0.8525714285714285,18.84425663277233,0.3901377569199447,0.6481377569199447,22.019024642618263,5.496066126054167,5.528009679398984,40.86328127539059,11.024075805453151,0.5062068965517242,0.17029972752043596,0.0,0.4100817438692098,0.375,0.3193677501232316,-0.7383724789545528,-0.0765499020324732,-0.018009084852550074,-0.07383724789545529,0.6806322498767684,1.5736094875077575,0.05379199598212945,0.03838071920750628,0.05076159637121798,-3.250317688890157,0.7342217576866128,0.6887744212139297,1.4520774797719174,0.6835042093856798,0.427224932506039,1.3021255994591692,0.7347432268959144,1.140574499730323,0.6688133298962962,0.5913885147345989,0.7115606442358876,0.9924402984720896,0.7799132663118472,0.7306402304742468,1.0553154051549574,1.0538106017732503,0.6894495658698682,1.0622205030487595,0.7779793477515689,0.9198632480310858,0.7174463744423399,0.45070347290299567,0.6923467549829562,0.857657048197722,0.8075346992729677,0.8144923731651196,1.0414013240282747,1.145372127345562,0.823774010622579,0.8931016583758843,0.8071947435515637,0.8883811874321071,0.8037140867809388,0.6801535164280371,0.8008640868841405,0.8374682539310286,0.8987492050031802,0.7529098694997582,0.6216595642300085,1.164536417123149,0.8675258425239212,1.0901405777848907,0.9041956392556278,1.138743985986491,0.758895021422591,0.8441869825700424,0.7473430759931531,1.0940079976981445,0.9162297128589265,0.9582434072351453,0.7881901064504876,1.197398114960839,1.0283246586708907,1.285327770497889,0.9299615671347495,1.1945418316189598,0.9448468988249001,0.9997058172179925,0.9464498914769198,1.0952747650486894,1.1921119009401515,1.3831334030758151,1.1349213313015543,1.2670982371443202,1.3963329731077767,1.2205290362878534,1.1947065405098156,1.0999998385146346,1.3689702870148754,1.3555876184937,1.3806550794092687,1.09053761258912,1.3615480649188518,1.4551479762448034,1.1139841830153308,1.005931046253627,1.419054892832897,0.9911197236151115,1.3595046855616677,0.963226535262035,1.4669694186336149,1.4101443579328723,1.426643994291095,1.0991826793422614,1.1367502950079527,0.9552208796527679,0.6179294490624735,0.8152894387980557,0.9794450799319253,0.9730982606672988,1.1493074628904512,1.1149934745276264,0.983256280163779,1.0351497825601,0.9074752687650953,1.1961647254939078,4.5,0.037241097847158455,3.1111111111111125,2.0,2.0311111111111115,1.2569444444444442,0.6269387755102042,0.2552083333333333,0.18468127991937514,0.10125,4666.1426448693755,5172.530688807803,2264.063424443552,2077.5280240652805,12.322644522497793,0.46332431325429435,6.613263711634711,0.8633227192828514,1.0,0.375,1.7339318819281186,3.5899850701684626,4.285011310690349,4.704993772857997,4.704993772857997,4.704993772857997,0.18,0.007448219569431692,0.0864197530864198,0.04878048780487805,0.05207977207977208,0.03591269841269841,0.022390670553935864,0.012760416666666668,0.014206252301490396,0.011250000000000001,0.47124827047529294,17.8112,7.486111111111111,3.52,131.68395997504226,1.0,4.068998767583444,100.72915282835712,,74.47718611726916,72.74648968214325,71.92932732630035,74.43010081618195,105.20433485426992,73.76073034733096,74.60926472021248,93.31078500144001,0.021839561013848957,-0.06659204306093688,-0.4331632207812685,0.42083437526048184,0.3092259508359779,-0.1953472534385789,0.022796205035277087,-0.03728977511217242,-0.053850042193633395,-0.04693472825735028,-0.08237595914345201,0.003343981905528558,0.06904691504040998,-0.018159628741258847,-0.03801251020869056,0.11471892095830988,0.1737123485904169,-0.02810634210982391,0.07097265454898166,0.07871811705235945,-0.004429716091504389,0.11398745385256288,-0.007784788918249279,0.1081715056071283,0.09953587427480355,-0.009386727850336188,-0.11924873674612284,-0.020310633213858984,0.10662014296553651,0.12508422051941034,0.10175393048551101,0.10373806315746117,0.004424832749389507,0.024662665616483434,-0.026364440155948507,0.14554443834798575,0.017452476856759234,0.14473191176751288,0.17908840947869306,-0.1238249814025833,0.07441253890788917,-0.0697426174969789,0.013854339020733417,-0.09663397046624066,0.13588778599558046,0.1027423094416649,0.16402899242629826,-0.09287543520549123,0.047322790955749774,0.07540928409797415,-0.030303921365515747,-0.1805306650736759,-0.03623557365919891,-0.1330500959012938,0.04323549035055683,-0.151359994790648,0.08094035143707942,0.02417835283116003,0.06086678396969508,-0.08406253540943069,-0.17006573415883214,-0.16355357181254612,-0.04783507474083231,-0.23749177090190923,-0.31056725134045476,-0.09600868989825712,-0.1699807497957436,-0.145080045939729,-0.16599919484186199,-0.13956758501854305,-0.16442090973880177,-0.15595660089070124,-0.30569823434991983,-0.13860991321490782,-0.01954579103080815,-0.10996970472776926,-0.3202950732227718,0.10880944940837284,-0.3033061493023492,-0.022594928451850245,-0.1701155655960799,-0.025065728897418513,-0.09141541964358126,-0.17802556552382065,-0.13721409881483762,-0.032302416137885176,0.10554913139217915,-0.0367506260126676,-0.04850842563401499,-0.04395981310061102,-0.14558228356491823,-0.132914017625523,-0.04905629974356018,-0.10064275346979137,-0.010863147083638856,-0.1775679050411346,7.669948782982146,15.95739792018216,8.857542075624217,17.654169593430098,34.4894718668185,39.57368939385549,39.99703171572048,39.99703171572048,39.99703171572048,46.710025966534815,33.25202869073666,6.449935128823078,5.214399587305108,1.7936625596699622,13.45799727579815,4457.902542272512,3779.644155991163,885.65635205838,113.0,36.0,50.0,67.0,90.0,101.0,113.0,120.0,129.0,319.1332196560005,25.0,4.812184355372417,5.68697535633982,6.588926477533519,7.488293515159428,8.398184404834035,9.305741456739435,10.219210285143431,11.130683597771489,12.046038860794662,0.6829268292682927,1.0088780487804878,1.141103817577966,0.6484633053846982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6570070687892507,0.9930176948828313,1.0226493524949816,0.6327144608877394,3.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,5.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,19.890325377488868,11.38067233274289,0.0,5.428790391900541,0.0,4.794537184071822,9.184952231746642,0.0,0.0,0.0,19.056471336613843,44.306849815640746,11.204086992299825,167.3655059457046,-386.9460315543097,-40.1161766609666,-9.437708086690481,-38.69460315543097,356.6871132718737,824.6541735540715,28.18983638737639,20.11351642814808,26.601747534002303,0.45454545454545453,0.6594497183989212,0.2065314656539945,103.9198356870334,0.14737262467644377,66.20269053614953,0.3405502816010788,6.0,0.12,0.3236425666859622,0.6700793696587508,0.7998076933264987,0.8781984325681585,0.8781984325681585,0.8781984325681585,1.2683,,1.5119047619047619,1.8043900169108715,1.5488545075243887,1.543086245660115,-6.799632915426464,1.6190119046886822,1.4797733799930697,-2.701616984205071,85.88200000000003,14.291479626587348,0.0,9.883888251797686,0.0,13.4684936056032,31.078935354500782,39.93357761725155,0.0,0.0,3.9318256327243257,0.0,5.272999558563747,0.0,6.831953565565855,0.0,8.49351506406166,0.0,10.211376582296397,28.0,4.131543052406148,0.0,0.0,0.0,0.0,0.6533028628117914,-0.38977838666330733,1.671947515117158,41.364000000000004,0.0,23.50396527634623,0.0,0.0,0.0,0.0,0.0,-1.3002874155733097,46.785256520696606,15.64548872675735,10.077801322358383,0.0,41.82195795423421,6.544756405912575,5.817220841045895,17.28172587545944,23.124114892608116,0.0,10.902924932081056,0.0,26.58699552077263,26.937289820359283,29.6291696679021,201.45830565671443,,148.88271145555214,145.42815020029826,143.89180966377248,148.78263776891976,213.0104791089692,147.45584813313758,149.14896683971688,187.56126286695132,29.6291696679021,201.45830565671446,,147.6948328367614,144.0298762884437,142.73830861806027,147.56876724565484,217.20830262396623,146.19200639553844,147.98595345753705,189.32318698708505,5.008888903406074,145.9492680638717,,106.88985578612863,104.38478049322478,102.89242793801915,106.84797410662472,147.69756748925465,105.84245789065514,107.06953451476127,132.85085033103155,1.2882247681696566,8.759056767683235,,6.473161367632701,6.322963052186881,6.256165637555325,6.46881033777912,9.261325178650836,6.411123831875547,6.484737688683342,8.154837515954405,2.5044444517030366,100.72915282835712,,74.47718611726916,72.74648968214325,71.92932732630035,74.43010081618195,105.20433485426992,73.76073034733096,74.60926472021248,93.31078500144001,40.71372549019608,0.0,1.850586892164273,0.0,14.494908824640966,0.0,9.150579302351488,41.92862345229425,3.4104162636639184,3.2081133268019992,0.0,0.0,0.0,1.9314054232804232,0.0,0.0,0.0,25.941292896397318,345.5863521692491,71.09120715905287,147.18938787690698,175.6854637383043,192.9047446871779,192.9047446871779,192.9047446871779,867.0,123.67623830968826,178.46626704832923,57.741670403211984,74.57000000000001,74.57000000000001,0.8333333333333334,9.041660267906277,5.643856189774724,4.1490230885441015,4.716674013534771,,4.697371337706516,4.698431103029858,4.697933674390435,4.697260977037132,4.6723911624195,4.69775233504337,4.69735417132962,4.684910131284788,0.18039230819756963,0.20507278319716396,,0.2042335364220224,0.2042796131752112,0.2042579858430624,0.20422873813204923,0.2031474418443261,0.2042501015236248,0.20423279005780956,0.20369174483846902,2.2557820291158808,2.3840130159949084,,2.379912185340531,2.3801377680588818,2.380031891232754,2.3798886909310233,2.3745800897892426,2.379993290677796,2.379908530869332,2.3772558562184107,227.2299999999998,173.1150765064255,130.9422815646824,,132.35285509847216,132.2052654870659,132.3904209876774,132.33274614427975,136.17444403752413,132.30036029389314,132.37110175520303,134.31225250837113,7.526742456801109,5.693142676725321,,5.754471960803137,5.7480550211767785,5.7561052603338,5.753597658446946,5.920628001631484,5.752189577995353,5.75526529370448,5.8396631525378755,5.986865678415382,5.707665750301227,,5.718380623710043,5.717264879265,5.718664414785025,5.7182286777474625,5.746845863490608,5.717983917362155,5.718518477926009,5.733076454680918,16.166856339758123,25.435370699626652,12.458817109501183,0.011797209624591076,-1.7987209000782234,2.805705782312925,1.3258372700932224,5.261003155828191,0.0,276.03261360122144,87.70833175752168,-202.7800813318837,-21.022987452174636,-4.945855642241066,-20.27800813318837,186.92281595128247,432.16217959971857,14.772957594119593,10.540540965846793,13.940715470958663,1116.0,41.0,1.639150070743875,0.627756559289249,0.0,0.0,0.581080967660079,0.1339859185779129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20297854933417275,0.09287246338002564,0.37848127159090744,0.1095772562427433,16.560113453385565,12.803686553938444,11.024075805453153,7.58252234336325,10.00936084192072,5.520883450058765,8.636243826544993,4.177541915123678,7.271478146962347,2.961433451421673,6.0998150212091975,2.1161059753530838,4.357371376923146,1.1888350398242558,3.0743607511941584,0.7379828033425723,4.270647107567652,1.461235481552266,6.9631323076903575,2.024779438327216,11.506403884080235,2.7652518707902396,73.8416726631701,38.964949200313136,28.17640510595165,26.093341134828304,26.093341134828304,26.093341134828304,122.0,147.0,44.98527399999998,24.896725999999997,0.3902439024390244,119.07,8.25,5.111111111111111,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,10.0,11.0,41.0,0.0,1.0,43.0,11.0,2.0,6.0,37.0,13.0,25.0,30.0,0.0,0.0,0.0,16.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,5.0,2.0,2.0,23.0,7.0,0.0,3.0,3.0,0.0,3.0,3.0,0.0,0.0,1.0,1.0,2.0,3.5115454388310208,7.630723856246857,4.1666652238017265,4.836281906951478,5.483759050678235,6.126596221098978,6.571670467302189,6.975705940890645,7.313855601965274,7.680081813864114 +15008962,COc1ccnc(C[S+]([O-])c2nc3cc(OC(F)F)ccc3[n-]2)c1OC,0,35.275,7.1152074999999995,3.7,12.832716049382716,167.68799710748965,142.1158307824885,1.6520073666971498,7.129910000000001,8.116124426323902,8.486559324999998,243.94534314189295,34.476190476190474,6.798571428571429,4.285714285714286,9.71957671957672,147.79124280731182,134.7207109683429,1.8856604842857148,6.941492857142857,3.7295545104187084,8.200783190476185,283.80770212332277,30.0,7.098572463768115,3.8840579710144927,9.483091787439614,161.78687458109638,115.73838324050101,1.5807250688107681,7.156960869565219,5.223077076002466,8.525552144927536,239.2301874536568,29.76388888888889,6.912511111111111,3.8472222222222223,8.492283950617285,156.4761104711285,114.10234093986668,1.6559344088846943,6.999341666666668,4.51107395976223,8.346624000000002,245.63801148715518,27.85,6.8417875,3.4,6.831944444444444,158.14177784088375,105.59714545426002,1.5476777990606119,6.925800000000001,4.347946673525377,8.300654624999998,224.51708385759744,24.045454545454547,6.786418181818181,2.9204545454545454,6.061868686868687,164.56992531497426,88.83185737549091,1.378330893031727,6.844688636363639,4.327959377727896,8.31912615909091,191.72221910670075,21.890243902439025,6.608231707317073,2.6951219512195124,6.9742547425474255,165.99128754790289,80.80577358251705,1.2749779971065245,6.662486585365853,4.535267991568803,8.14192087804878,178.0608839801597,20.51388888888889,6.529999999999999,2.7916666666666665,6.981481481481482,169.17219216787112,76.97054298493332,1.1893779938427502,6.564981944444444,4.54121894528273,8.074468361111109,169.85661595558216,26.857142857142858,6.878489795918369,3.3469387755102042,5.934240362811791,162.6216395023649,101.71530649355101,1.449640467748939,6.952251020408164,3.8301419333165376,8.368871918367345,220.51404665828503,11.019375,0.2704434374999999,0.046269554730918074,0.6375,5.868981481481481,2.679128091636808,50.7404864115691,0.29611584749814746,0.23665974999999997,3.3946693609332925,0.16636329937499997,45.13291821578063,1.2734821428571426,-0.013489508928571441,-0.012020648150277116,0.22321428571428573,1.1222442680776017,-0.5005890815190538,5.5789417984952125,-0.03556581709290458,-0.006642845238095251,-0.42578006983606836,-0.009328907113095237,-2.3727114849542117,0.22337862318840604,0.0264031929347826,-0.00481677233841434,0.09873188405797101,0.27778896045804247,0.5788343204872339,1.4800442023831784,0.047193560500429325,0.021289452898550755,0.4579782252890071,0.013749641929347821,8.731258044240576,-0.01868055555555546,-0.01001371527777777,0.003814562570404614,-0.1388888888888889,-1.0085305212620028,-0.04098395351823731,-0.225638780817479,0.016838021018376136,-0.00979523611111109,-0.08261074635989697,-0.004804479930555557,-1.0112123248893807,-0.6534374999999999,-0.026522812499999982,-0.002391333568884612,-0.1875,-1.3706018518518515,-0.36510944840182435,-3.3561343510330017,-0.03492326652197811,-0.02357031249999998,-0.1267667887580653,-0.015827639062499996,-9.934431891582914,-1.8443749999999992,-0.039615909090909056,-0.0021192246016177164,-0.022727272727272728,-0.1821689113355779,-0.11027882009695757,-8.66630280849726,-0.014778776701888974,-0.037283897727272704,-0.23455273879820915,-0.024748784034090907,-5.720321362322211,-0.5815701219512195,0.03259043445121948,0.003653157361058034,0.12347560975609756,2.0987466124661243,-0.12993672684768184,-2.2894574373729055,-0.04963036370251028,0.029288908536585327,0.06408359599499636,0.015297748490853663,-1.7735013719551525,2.3597916666666667,0.058414930555555515,0.006024691736340641,0.11805555555555555,1.8055126886145405,0.1250717402922035,11.906721373712843,0.03788290936871011,0.05614865277777771,0.32477225070609905,0.02550913465277778,15.497826275853166,-1.152538265306122,-0.08413899872448975,-0.01539418316524137,-0.16198979591836735,-2.8635519022423783,-0.159795731920164,-4.904058023638477,-0.03439283618512403,-0.06964872959183671,-1.08954586180545,-0.04071045549744897,-0.619976885348955,,,0.45915750915750925,1.2980769230769231,0.6153846153846154,0.07692307692307693,0.6826923076923077,-0.0673076923076923,0.7717843753475833,0.015486277372153117,0.02540935429523004,1.0043031433777112,0.2681390523436084,0.21307519191397292,1.7760875187252945,0.48121424425758136,2.0254838908520814,1.2819563833943115,0.2382649292517496,0.2913817110456078,0.1308937621801944,0.7435275074577703,9.55169642369776,1411.0,284.6083,148.0,513.3086419753087,6707.519884299586,5684.63323129954,66.080294667886,285.19640000000004,324.64497705295605,339.46237299999996,9757.813725675718,1448.0,285.54,180.0,408.22222222222223,6207.232197907097,5658.269860670402,79.19774034000002,291.5427,156.64128943758575,344.4328939999998,11919.923489179557,2070.0,489.8015,268.0,654.3333333333334,11163.29434609565,7985.94844359457,109.070029747943,493.8303000000001,360.39231824417016,588.263098,16506.88293430232,2143.0,497.70079999999996,277.0,611.4444444444445,11266.279953921252,8215.368547670401,119.22727743969799,503.9526000000001,324.79732510288056,600.9569280000002,17685.936827075173,2228.0,547.343,272.0,546.5555555555555,12651.3422272707,8447.771636340802,123.81422392484895,554.0640000000001,347.8357338820302,664.0523699999999,17961.366708607795,2116.0,597.2048,257.0,533.4444444444445,14482.153427717734,7817.2034490432,121.29311858679199,602.3326000000002,380.86042524005484,732.083102,16871.555281389665,1795.0,541.875,221.0,571.8888888888889,13611.285578928037,6626.073433766398,104.548195762735,546.3239,371.89197530864186,667.6375119999999,14600.992486373096,1477.0,470.15999999999997,201.0,502.6666666666667,12180.39783608672,5541.879094915199,85.63521555667802,472.67869999999994,326.96776406035656,581.3617219999999,12229.676348801915,1316.0,337.04600000000005,164.0,290.77777777777777,7968.46033561588,4984.050018184,71.03238291969801,340.6603,187.67695473251035,410.07472399999995,10805.188286255967,440.775,10.817737499999996,1.8507821892367229,25.5,234.75925925925924,107.16512366547232,2029.619456462764,11.844633899925899,9.466389999999999,135.7867744373317,6.6545319749999985,1805.316728631225,53.48624999999999,-0.5665593750000005,-0.5048672223116388,9.375,47.13425925925927,-21.024741423800258,234.31555553679894,-1.4937643179019924,-0.2789995000000005,-17.882762933114872,-0.39181409874999995,-99.65388236807689,15.413125000000017,1.8218203124999994,-0.3323572913505895,6.8125,19.16743827160493,39.93956811361914,102.1230499644393,3.2563556745296234,1.468972250000002,31.60049754494149,0.9487252931249996,602.4568050525997,-1.344999999999993,-0.7209874999999994,0.2746485050691322,-10.0,-72.6141975308642,-2.9508446533130863,-16.24599221885849,1.2123375133230818,-0.7052569999999985,-5.947973737912582,-0.3459225550000001,-72.80728739203542,-52.27499999999999,-2.1218249999999985,-0.19130668551076896,-15.0,-109.64814814814812,-29.208755872145947,-268.49074808264015,-2.7938613217582486,-1.8856249999999983,-10.141343100645223,-1.2662111249999997,-794.7545513266332,-162.30499999999992,-3.486199999999997,-0.18649176494235906,-2.0,-16.030864197530853,-9.704536168532266,-762.6346471477589,-1.3005323497662298,-3.280982999999998,-20.640641014242405,-2.1778929949999997,-503.3882798843545,-47.68875,2.6724156249999975,0.2995589036067588,10.125,172.0972222222222,-10.65481160150991,-187.73550986457826,-4.069689823605843,2.401690499999997,5.254854871589701,1.2544153762500003,-145.4271125003225,169.905,4.205874999999997,0.43377780501652613,8.5,129.9969135802469,9.005165301038652,857.2839389073247,2.727569474547128,4.042702999999995,23.383602050839134,1.8366576950000002,1115.843491861428,-56.47437499999998,-4.122810937499998,-0.7543149750968271,-7.9375,-140.31404320987653,-7.829990864088035,-240.29884315828537,-1.6852489730710773,-3.412787749999999,-53.387747228467056,-1.9948123193749996,-30.378867382098797,0.7185166844978925,0.5643908828733548,0.4468417982391828,0.31351666447584103,0.28729925224160174,0.16515388214524684,0.17843279672058748,0.09056573538647143,0.11692072060821625,0.05036614535807006,0.0754937757137824,0.030157192057070882,0.048538374814400535,0.017295798820728656,0.030923558117579537,0.009723080437401856,16.003516017415226,5.694304208646922,4.116232127441818,2.1906378745187363,0.5846436163097707,-0.6321869242733661,3.2323244672264324,0.9871697256613785,7.00748832330957,0.5439053511838279,17.427737648491945,10.334522708060181,32.0617525075792,11.708297270000871,2.9220113685473112,0.535999532089966,3.998051912843863,2.2395473720949544,8.005229768107938,0.3969749180595995,4.020614137291851,2.4349598820247973,24.4354719461166,13.303451746683754,0.35985504873965773,0.6555476034886307,0.8075544143267669,0.8520803127152696,0.8609854923929702,0.8877010314260719,1.519142326039003,906.3322826194594,0.0,1.0,1.0,0.0,10.0,0.0,0.0,0.0,0.0,3.3014464102742482,1.6412185122936145,0.787744375108173,0.537744375108173,0.48774437510817314,0.3377443751081728,35.658635369340914,1861.714021213586,101.83038257334691,46.54285053033965,101.90851232321376,,14.0,592.0,17.787359559831387,13.333579969040004,16.6588019218514,28.226353096648793,0.0,38.61553985955297,6.06636706846161,0.0,19.688798516641675,9.473725907600098,11.93809523809524,33.75,16.0,2.0,17.75,0.0,0.04084249084249077,-1.75,0.2885070785070784,0.08580952380952378,-0.20269755469755463,0.0,0.23574742464708104,0.0,0.7290476190476192,0.9600732600732598,0.44054054054054076,0.6432380952380954,0.9600732600732598,20.066393759037165,0.40264321167598105,0.6606432116759811,26.111881727820492,6.971615360933819,5.539954989763296,46.17827548685766,12.511570350697115,0.47825257535291893,0.159553250897487,0.0,0.4048663741523733,0.25,0.4708527727645933,-1.6821980692965837,-0.1254158895941726,-0.04205495173241459,-0.11214653795310557,0.5291472272354066,1.3613172566045761,0.041055612727291496,0.034032931415114404,0.05445269026418305,-5.405738344953606,0.6973107432525504,0.663535235533308,1.1990447051233963,0.7464985994397759,0.49537970903435924,1.1367696167138364,0.6802674913193385,1.1941596180920484,0.6248127774760419,0.6622362001097752,0.7118558745179715,0.9611328697000316,0.9841854638445624,0.8543725766011205,1.1180252567650035,0.886615515771526,0.8750310101713366,0.7788655588237637,0.95749506645919,0.9018819682170042,0.8498421210748488,0.6781378229406938,0.8980622464861789,0.7225102590130429,0.8368782258521923,0.7358393256137584,1.067166633794604,1.2957516339869282,1.0121622273057944,0.823832666660801,0.8233819554719986,0.8969936527444092,0.7345758256315238,0.7201134824172432,0.776184376212273,0.9102514948972742,0.9749446996767059,0.8616494437954332,1.1428692043047204,1.2808823529411766,1.0937761299992113,1.0047247364109426,0.9657582004663083,1.1162607415554995,0.8589837968856132,0.757525755180278,0.8883491905905223,1.1397353571278468,1.3674261760019801,1.109065036179532,1.016590907113333,0.9732620320855615,1.0190233565440632,1.0005929955373953,1.3462781928747982,1.2050978828115408,1.1205703811062082,1.0500302846043876,1.1150330373158965,1.130325686557638,1.2613868864569198,0.7405741907789821,0.8693400656388108,0.746054519368723,0.6648982120490923,0.9308820008634324,1.2332771394060154,1.2872220604660551,0.750368331358911,1.0727418413385588,0.748119616411729,1.0933245416037967,0.9081541980980471,0.6393729511369637,0.8724836168579964,0.8284313725490196,0.7763020080110086,0.7110852831716731,0.8835011651539693,0.8554889422206585,0.6435788880449675,0.9309111502911911,0.6847540543976423,0.7359874930540476,1.0437089588260011,1.0891867855634207,1.505660172191765,1.2484993997599039,1.4245789820227217,0.8874191516116178,1.019342351977828,1.0686311304178937,1.0720577037847174,1.1526795487523935,1.047236176583099,0.910794334593316,6.0,0.11438016528925621,2.88888888888889,2.041666666666667,1.751666666666667,0.8544444444444445,0.6287528344671202,0.3533871882086167,0.28171453766691856,0.14532407407407408,5671.2072044098095,6067.854260399345,2774.8933405120106,2635.355130271026,15.824986373365325,0.4225395877236282,9.138303155431506,0.7317204413337365,1.0,0.25,2.0204816846131144,3.680709582593748,4.53418371977919,4.78418371977919,4.8341837197791895,4.98418371977919,0.21428571428571425,0.007625344352617081,0.07407407407407411,0.051041666666666666,0.04609649122807017,0.02589225589225589,0.020958427815570675,0.013088414378096914,0.012248458159431245,0.006920194003527337,0.47223104085602435,20.727040816326532,9.467455621301776,5.093425605536332,150.04448420774588,1.0,4.180568295022798,144.0467759382892,,91.519963568268,106.2966475061377,110.54800849939681,91.36748764362794,160.98577023751844,106.79590723169004,106.1877938519737,136.28640631141948,0.11556754742053361,-0.04987922448135369,-0.2597960628794364,0.350140056022409,0.19121618829751674,-0.18684775956838254,0.10995049896138134,-0.12010778009146261,-0.028069180492649264,-0.1254260797048609,-0.05607551153495052,-0.052571639033183515,0.020271442181467283,0.09762926096064951,-0.10410241391831884,0.1548735436203467,0.04733171527880191,0.21605324594002379,0.029168900557597344,0.15937532860589157,0.08995806383869989,0.1349109962105693,0.08264828830038239,0.19345653659035306,-0.0016952463779075912,-0.03702702262012837,0.08244217158752255,-0.21786492374727667,-0.17184080822954376,-0.015297496840921198,-0.004446917969750329,0.05686295130989731,-0.04138953121986773,-0.024335432284098766,-0.028879446059348494,-0.022405205886638472,-0.05929896205547047,-0.09807156995628703,-0.05168265791169768,-0.29411764705882354,-0.23353317030843257,-0.1362792057391931,-0.0661431253104382,-0.11793785039551655,-0.09959578044006208,-0.03734289713658989,-0.095139006751861,-0.22011499110441662,-0.16737564517043835,-0.14648500794517919,-0.04580170727689359,-0.035650623885918005,-0.03103927179023809,-0.04116220513726275,-0.1707966048689927,-0.04990876654104583,-0.15754220025700486,-0.06909442831089854,-0.14876348405608744,-0.12674388425258334,-0.052777051507115376,0.12050739612130353,0.07895380412245322,0.19368723098995697,0.35759980144567555,-0.048499632120350494,-0.04512092018201263,-0.16760455113035033,0.12375956848000276,0.018877713609604066,0.09195386571632586,-0.03929507423996022,0.21414932032594106,0.21599684982393233,0.13020855228405392,0.1851851851851852,0.3076364603145388,0.046683747851634504,0.23465918866315888,0.1279327320330166,0.23725476249247163,0.09567124693899785,0.1533339068689517,0.34338187931385267,-0.10459198142418441,-0.3111149580935562,-0.33270653358923996,-0.2541016406562625,-0.48791292173570544,-0.05964467784089304,-0.09664980315443578,-0.11614655708468692,-0.2942990077181976,-0.32095787423194067,-0.24470815168003746,-0.013736689535226672,3.3827443333649723,12.882764558592216,7.042444911055007,24.49779749707526,41.27871314097438,47.88012871453824,48.88167871453824,49.48222871453824,49.63342871453824,52.66258116215412,33.3308659682521,6.1948881605454895,7.5759244871858025,3.4032378166850545,19.331715193902028,9180.314690673338,8668.401532686956,989.4403643199294,110.0,39.0,51.0,67.0,80.0,85.0,94.0,107.0,107.0,382.0678569479104,28.0,4.90527477843843,5.752572638825633,6.634633357861686,7.501634457883413,8.387312270561717,9.262078567380597,10.149292386393418,11.028368447036963,11.916568914866124,0.8208333333333332,1.0465,1.1407846860207989,0.795857560569478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6972620059880239,1.029607843137255,1.0504278951201749,0.6851511449216365,5.0,3.0,0.0,0.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,1.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,28.731295776984926,16.59987630995307,17.251877273314598,0.0,0.0,4.9839785209472085,0.0,8.78083009534964,0.0,6.06636706846161,34.34199004554103,12.263210640074686,14.219595082555067,288.0199752973433,-1028.9981803001374,-76.71672232217597,-25.724954507503433,-68.59987868667582,323.6786106666842,832.7158409134485,25.11366025117094,20.817896022836212,33.30863363653794,0.5,0.7943452284945814,0.1711988699919431,240.69515119572387,0.1504402889980982,12.562273212636008,0.20565477150541853,7.0,0.25,0.3796521953301358,0.691612046793663,0.8519813945128386,0.8989568506901155,0.9083519419255709,0.936537215631937,2.5134000000000007,,2.720238095238096,2.4557580411297555,1.988791391649439,2.785499500109218,-9.45599391659469,2.248657224310045,2.1131242843716294,-3.489692252392336,89.14840000000002,27.54416883044015,0.0,14.951935562841626,0.0,17.520795175013596,14.219595082555067,36.156239840307975,0.0,17.248535499851716,4.04305126783455,0.0,5.3612921657094255,2.3978952727983707,6.870053411798126,4.727387818712341,8.469052816088302,6.842683282238422,10.1152465449837,32.83333333333333,7.292177635881362,12.479179485971514,0.0,0.0,0.0,0.7477769904258005,1.3115296242168002,0.0,41.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.63138744083195,19.194567382347355,8.78083009534964,17.248535499851716,35.35180708458594,16.928708080132076,0.0,5.693927994848461,35.61874832728022,0.0,11.033401435232523,0.0,31.83430242277912,27.890480239520958,33.04183310287586,288.0935518765784,,183.29705954655032,212.40439054757312,220.94303304558986,182.98256569979083,325.3019596047948,213.4188408307408,212.21303968207263,273.3825912001639,33.04183310287586,288.09355187657843,,181.04764301976138,210.2147640560318,219.21140429621784,180.67773994147956,331.4275343916315,211.4055743053999,210.31346602784987,276.0625048752312,4.790744223162141,218.61188315026706,,136.4811397888628,164.1324339837754,169.71895870996647,136.30899380091623,230.8539941284883,164.35032270893876,162.82711927464177,201.87914092693774,1.2708397347259948,11.080521226022245,,7.0498869056365505,8.16939963644512,8.497808963291918,7.0377909884534935,12.511613830953646,8.208416955028493,8.162039987772024,10.51471504616015,2.438895722198749,144.0467759382892,,91.519963568268,106.2966475061377,110.54800849939681,91.36748764362794,160.98577023751844,106.79590723169004,106.1877938519737,136.28640631141948,41.184313725490206,0.0,2.952863012105575,0.0,24.587291752225063,0.0,0.0,42.01711580480699,0.010998467288150238,0.0,14.778142431489188,0.0,-2.9346536883271686,0.0,0.0,0.0,0.0,27.406045796865463,485.8998530374078,80.81926738452458,147.22838330374992,181.3673487911676,191.3673487911676,193.3673487911676,199.3673487911676,794.0,129.53773581924798,125.79873292661969,74.82666258016323,90.63000000000001,90.63000000000001,1.0,8.67158870734012,5.807354922057604,4.281909145662802,5.018849675650918,,4.998830598330108,5.027204911766396,5.020775732598666,4.999553914201056,4.919174612024578,5.0244735069373885,5.021565070503911,4.979158333755233,0.16468881329472312,0.1930326798327276,,0.19226271532038877,0.1933540350679383,0.19310675894610252,0.19229053516157907,0.18919902353940682,0.1932489810360534,0.19313711809630427,0.19150608975981667,2.4099104172357793,2.568712204195887,,2.564715449773288,2.5703755911443156,2.5690958951988985,2.5648601363216605,2.5486521996744487,2.5698321187444915,2.5692530971744834,2.560772312494221,244.75999999999988,232.64242784233664,154.29794136874878,,156.00392753916336,153.30885049545924,154.10185557374712,155.9348712422615,163.88746222433807,153.61345946288836,153.90830150902534,158.44490549268917,8.947785686243718,5.934536206490337,,6.000151059198591,5.896494249825356,5.926994445144119,5.997495047779288,6.30336393170531,5.90820997934186,5.919550058039436,6.0940348266418916,6.405014075366694,5.9943968625625645,,6.005392628493149,5.987965962411959,5.99312522864212,6.004949873066124,6.054691431355413,5.989950888613525,5.9918684253468495,6.0209183785028815,51.978118607792524,12.479179485971514,0.07024990551776322,1.179038249775985,0.8210169266370027,5.774128055268095,1.5180495806132668,-2.9346536883271686,2.952863012105575,294.5447355592213,176.18141161877904,-629.4367318491516,-46.92751056426999,-15.735918296228787,-41.96244878994343,197.99374845161174,509.3711023966025,15.361990464022268,12.734277559915062,20.374844095864105,1806.0,40.0,1.817490792912598,0.7159607422151093,0.0,0.0,0.3372672270190456,0.07611276023896825,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02282177322938192,0.3277210825314642,0.09966109664825887,0.5975905752789832,0.14917213385541486,18.681433796945207,14.674162954707226,12.511570350697118,8.77846660532355,11.204670837422467,6.441001403664627,9.100072632749962,4.618852504710043,7.833688280750488,3.374531738990694,6.039502057102592,2.4125753645656705,4.1257618592240455,1.4701428997619357,2.9068144630524766,0.9139695611157744,3.8877861220878427,1.410042869610495,6.3323145722106835,1.9728491688345522,9.132636059133388,2.5454841503218018,80.71784462834543,46.19421432396729,32.65836783016778,30.533018163746632,29.536439735280425,28.754805217905634,134.0,157.0,46.57710199999999,29.456898,0.425,134.1,9.0,5.861111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,15.0,16.0,40.0,0.0,0.0,42.0,16.0,0.0,7.0,35.0,16.0,28.0,26.0,0.0,0.0,0.0,16.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,6.0,0.0,2.0,26.0,10.0,0.0,3.0,4.0,0.0,3.0,7.0,1.0,0.0,2.0,2.0,3.0,3.6109179126442243,7.3191972814847315,4.230476736546681,4.837273478673773,5.44592885524981,5.950316978760987,6.231311565533639,6.588313755469793,6.9804574084912945,7.048230282286306 +2161,CC(C)c1ccc2oc3nc(N)c(C(=O)O)cc3c(=O)c2c1,0,26.22222222222222,6.544716666666667,3.7222222222222223,9.944444444444445,160.6067248502635,103.8531926111111,1.5511054629968335,6.60048888888889,6.556327160493827,8.014357999999998,237.87873067564155,27.105263157894736,6.5390263157894735,4.342105263157895,9.552631578947368,146.08462843567503,103.98166273684208,1.8705473683157894,6.679210526315789,3.821637426900585,7.932964842105262,283.4473116386044,25.174603174603174,6.417855555555556,4.126984126984127,8.841269841269842,149.71651484460702,96.72147917460316,1.7007882624435393,6.53698888888889,4.074955908289242,7.850592761904762,254.3572669796211,22.901234567901234,6.423,3.5925925925925926,7.419753086419753,152.20628993292155,86.31972839506173,1.544487903777074,6.531382716049383,3.8758573388203006,7.885236049382719,230.2535622602582,19.955555555555556,6.510922222222222,2.977777777777778,6.444444444444445,159.29372466958597,73.46814563333334,1.326990732224311,6.571735555555555,4.616049382716049,8.012583866666667,192.45175464419728,17.308641975308642,6.236320987654321,2.8518518518518516,5.148148148148148,160.21218799221708,62.982634320987636,1.262226719067074,6.307938271604939,3.499999999999999,7.795012345679013,180.088182590327,20.609375,6.588875000000001,2.921875,5.890625,159.1978400285436,76.265849328125,1.2904895070568907,6.6421484375,5.579861111111111,8.0924541875,189.0821479173725,16.62962962962963,6.649425925925926,2.759259259259259,3.5555555555555554,160.2491789071657,57.16770422222221,1.2587725774231293,6.697824074074074,4.147119341563786,8.207425777777777,179.82595563320024,15.386363636363637,6.154477272727272,2.522727272727273,3.25,158.25230052056583,53.45066418181818,1.2607450823044544,6.237420454545455,3.441919191919192,7.693376363636362,169.99401365101255,7.444444444444443,0.16347932098765428,0.03314574857766669,0.7561728395061728,4.500000000000002,1.5081631435554712,35.19447594135802,0.22457087390547223,0.14888888888888888,2.4631987311385455,0.10763887654320983,47.00584948404374,-0.07309941520467789,-0.019408122157244957,-0.02017093364122801,0.328622482131254,1.6725146198830412,0.12667388503550728,-0.21153667235217447,0.020150530820598034,-0.016363157894736892,-0.3552958721391957,-0.012561636777128002,3.9096229898770445,1.8571428571428577,0.039424999999999974,0.005874595783711222,0.0401234567901234,1.470899470899471,0.18352532606782454,8.715874980158736,0.025252363473117774,0.03700793650793648,0.48226227219282775,0.0228743262786596,7.88793991362377,0.43209876543209896,-0.005017181069958854,-0.006615686891297338,-0.01131687242798357,0.5349794238683127,-0.3293347572454302,2.0012873981481487,-0.0330449809691944,-0.0011209876543210183,-0.03202398643499462,-0.0071111975308641995,-2.0103306077088487,0.21481481481481499,0.03228925925925925,0.008868464480791996,0.05,0.5592592592592591,0.058535573930066774,0.852285032098767,-0.008548273315303707,0.02643777777777776,0.27564729080932787,0.020695753086419744,-2.7643366793633284,0.6172839506172837,-0.012685356652949254,-0.013424795903621235,-0.0716735253772291,0.1934156378600824,-0.04831194172576215,3.0192634324417003,0.006993436683805549,-0.008195061728395051,-0.2746699245541837,-0.0116590768175583,4.42933373847506,0.7934027777777779,0.06247397762345678,0.015712569917611097,-0.19367283950617284,-0.4409722222222222,-0.12003791739624806,3.411166192322533,-0.02052703621395659,0.054023437499999966,1.0588040659293547,0.04486724151234567,-3.9571491231188247,-4.475308641975308,-0.09482294238683124,-0.007852538948396624,-0.1748971193415638,-3.2716049382716053,-0.08736060930636996,-20.83906412345679,-0.00816138332272841,-0.09197222222222223,-1.0200260059442159,-0.05494521810699587,-13.098894943065934,-1.8813131313131313,-0.015612906846240166,0.00048985115961705,-0.18672839506172834,-1.0101010101010102,-0.5272557472595475,-9.104828537317623,-0.08836120979856311,-0.015597727272727223,-0.220353613293428,-0.0084441088664422,-17.727717214921796,,,0.4606060606060607,1.3636363636363635,0.7272727272727273,0.045454545454545456,0.6363636363636364,0.09090909090909091,0.731958301599775,0.024286168602880777,0.0360134413301535,1.0316733492998547,0.26196617942211975,0.20984826844650384,1.7636316508996297,0.4718144478686236,2.0278597835506926,1.5210582404101316,0.17407856041708497,0.3327229827234754,0.0,0.5068015431405605,8.280426581333344,944.0,235.6098,134.0,358.0,5781.842094609486,3738.7149339999996,55.839796667886006,237.61760000000004,236.02777777777777,288.51688799999994,8563.634304323095,1030.0,248.483,165.0,363.0,5551.215880555651,3951.303183999999,71.080799996,253.80999999999997,145.22222222222223,301.45266399999997,10770.997842266966,1586.0,404.3249,260.0,557.0,9432.140435210242,6093.4531879999995,107.14966053394298,411.8303,256.72222222222223,494.58734400000003,16024.50781971613,1855.0,520.263,291.0,601.0,12328.709484566645,6991.898,125.103520205943,529.042,313.94444444444434,638.7041200000002,18650.538543080915,1796.0,585.983,268.0,580.0,14336.435220262738,6612.133107,119.429165900188,591.4562,415.44444444444446,721.1325479999999,17320.657917977755,1402.0,505.142,231.0,417.0,12977.187227369584,5101.593379999998,102.24036424443298,510.94300000000004,283.49999999999994,631.3960000000001,14587.142789816487,1319.0,421.68800000000005,187.0,377.0,10188.66176182679,4881.014357,82.591328451641,425.0975,357.1111111111111,517.917068,12101.25746671184,898.0,359.069,149.0,192.0,8653.455660986949,3087.0560279999995,67.97371918084899,361.6825,223.94444444444446,443.200992,9710.601604192812,677.0,270.79699999999997,111.0,143.0,6963.1012229048965,2351.829224,55.47278362139599,274.4465,151.44444444444446,338.50855999999993,7479.736600644553,267.99999999999994,5.885255555555554,1.1932469487960007,27.222222222222218,162.00000000000006,54.29387316799696,1267.0011338888887,8.084551460597,5.359999999999999,88.67515432098763,3.874999555555554,1692.2105814255747,-2.77777777777776,-0.7375086419753083,-0.7664954783666644,12.487654320987652,63.555555555555564,4.813607631349277,-8.03839354938263,0.7657201711827253,-0.6218000000000019,-13.501243141289438,-0.47734219753086404,148.56567361532768,117.00000000000003,2.4837749999999983,0.37009953437380694,2.527777777777774,92.66666666666667,11.562095542272946,549.1001237500003,1.5908988988064197,2.3314999999999984,30.38252314814815,1.4410825555555546,496.9402145582975,35.000000000000014,-0.40639166666666715,-0.5358706381950844,-0.9166666666666692,43.33333333333333,-26.676115336879846,162.10427925000005,-2.6766434585047465,-0.09080000000000249,-2.5939429012345645,-0.5760070000000002,-162.83677922441674,19.33333333333335,2.906033333333332,0.7981618032712796,4.5,50.33333333333332,5.26820165370601,76.70565288888903,-0.7693445983773336,2.3793999999999986,24.808256172839506,1.862617777777777,-248.79030114269955,49.99999999999998,-1.0275138888888895,-1.08740846819332,-5.805555555555557,15.666666666666675,-3.913267279786734,244.5603380277777,0.5664683713882495,-0.6637999999999991,-22.248263888888882,-0.9443852222222223,358.7760328164799,50.777777777777786,3.998334567901234,1.0056044747271102,-12.395061728395062,-28.22222222222222,-7.682426713359876,218.31463630864212,-1.3137303176932218,3.457499999999998,67.7634602194787,2.8715034567901228,-253.25754387960478,-241.6666666666666,-5.120438888888887,-0.42403710321341775,-9.444444444444445,-176.66666666666669,-4.717472902543978,-1125.3094626666666,-0.44071469942733416,-4.966500000000001,-55.08140432098766,-2.967041777777777,-707.3403269255605,-82.77777777777777,-0.6869679012345673,0.0215534510231502,-8.216049382716047,-44.44444444444444,-23.19925287942009,-400.6124556419754,-3.887893231136777,-0.6862999999999978,-9.695558984910832,-0.37154079012345675,-780.019557456559,0.7280065172279794,0.5492397126149664,0.432496577212905,0.2826979967770314,0.28101101724427185,0.15057000935524437,0.1714129246545673,0.07374716529038507,0.10709138360704928,0.03606201166831868,0.06410579331848902,0.0184093563973412,0.043630628796284536,0.009520155669608624,0.026189275638338998,0.005011840788731224,8.029656698303482,5.663235262151106,3.5560171625308667,2.158598265445087,0.4917313873337093,-0.5134935665585311,3.2906733519831106,0.9726394946226375,6.02499514405773,0.9889422488525053,14.550765357609711,10.92484737069443,16.015145983922217,11.676964794711159,2.0240935061336742,0.7414151396031954,3.502265111956895,2.207496299986123,7.009377582433906,1.2701411159293965,3.7151109805627187,2.4035100027600507,20.92280635892902,14.700457602387228,0.2957749788341959,0.7026008116925785,0.7976310612075584,0.8378627493809006,0.8378627493809006,0.8378627493809006,1.730333060799032,973.1896128999355,0.0,3.0,2.0,0.0,6.0,0.0,4.0,1.0,0.0,3.5361935808001794,1.2890658876824084,0.7641604167868596,0.5419381945646382,0.5419381945646382,0.5419381945646382,88.9454395957915,1193.4417080867527,76.64037527288428,33.15115855796536,67.02645569909961,,10.0,368.0,5.969305287951849,9.589074368143644,33.827731566852464,10.969244356107037,5.563451491696996,6.06636706846161,12.13273413692322,19.913841467842857,4.9839785209472085,15.257345809056238,10.133333333333335,30.0,16.0,1.0,14.0,0.0,0.039393939393939335,2.0,0.20991636798088398,0.07648953301127204,-0.13342683496961194,0.06909090909090898,0.1880484429065742,0.0,0.651851851851852,0.8757575757575755,0.44193548387096804,0.57536231884058,0.8066666666666665,16.10308263519505,0.5342957092633771,0.7922957092633771,22.696813684596805,5.763255947286634,4.616661905823085,38.799896319791856,10.379917853109719,0.5259515570934258,0.23684210526315785,0.0,0.49342105263157887,0.1875,0.4122493389746306,-0.97077344025989,-0.08914473044514733,-0.026965928896108056,-0.06934096001856356,0.5877506610253694,1.3840476558137897,0.0620770437568924,0.038445768217049724,0.06291125708244498,-4.137111686283393,0.7200019638648862,0.79569388243213,1.566054493091185,0.7105263157894739,0.3667153996101364,1.033421945748012,0.7218214498258999,0.9231603900426177,0.7713042517674783,0.759103234797487,0.8126608741931356,0.8184630464926502,0.5514096185737978,0.47008248485386267,0.5971932272692562,1.1224489795918369,0.5144032921810698,0.9272766968269402,0.5587492368643374,0.9093460474163272,0.45993988391376434,0.4246321450014358,0.5060416351015495,0.7910279321479291,0.789225170444076,0.8394943672794346,1.0324946133574282,1.0396825396825398,0.7735101356500531,1.2457079348203763,0.7936065501886094,1.1403935275523942,0.8117733093790306,0.7294352643847526,0.8817567877124473,0.9885905738048559,0.9446517412935326,0.8421011643032585,0.6816614212099388,0.8142857142857144,0.8629972565157747,0.9445039397688735,0.9475731720832923,0.9982088375847173,0.8548445273631837,0.8843573523141585,0.8565100623954195,1.0065384613487638,0.9230468030219275,1.018354196310218,1.2786208390963314,1.0714285714285716,0.958885840573083,0.9678739670862104,0.9212743797982463,0.9538192258959486,1.0055325225723233,1.0598400668273542,1.0396125764270898,0.9170191099003335,0.8896921641791047,0.7430765361364463,0.5932668514297178,1.2857142857142858,1.1562017746913578,1.031279065889275,0.8956599041529688,1.0544021963616117,0.7509022271455221,0.7435725986095039,0.7382274233809233,1.0279082381889155,1.6191611387506915,1.903699704031229,1.4096301777932103,1.1547619047619049,1.828417924096936,0.9825333505772623,1.6015803400090003,0.9859872373452778,1.9133611456605848,1.7821352847848855,1.9053212699054265,1.177857999815014,1.1872455902306651,0.8579588040854709,0.8542068241022416,1.1250000000000002,1.0728815937149268,1.3387660079828345,1.1980366588688374,1.364485445627273,0.8828803426051557,0.8820925948045848,0.799389417199438,1.3769351877297236,5.5,0.0,3.333333333333335,2.0,1.9733333333333336,1.1249999999999998,0.5657142857142857,0.3142361111111111,0.1932476694381456,0.18250000000000002,4370.4842158443025,4731.782567877954,2143.377125461546,1992.9636737566836,13.042118663658206,0.4723945319600149,6.8810931217724125,0.8953556408634757,1.0,0.1875,1.6337314206421327,3.8808591137599038,4.4057645846554525,4.627986806877674,4.627986806877674,4.627986806877674,0.22916666666666663,0.0,0.09259259259259263,0.05,0.05638095238095239,0.040178571428571425,0.02262857142857143,0.019639756944444444,0.016103972453178798,0.020277777777777783,0.5469688616727555,16.84375,6.481481481481482,3.1653477717617657,124.73613409480564,1.0,4.032867876878877,93.77783091104011,,64.94927574281645,64.17442286100027,65.10002895482808,64.96068580820166,78.27642793217741,64.69089503713533,64.9889637826542,73.15325019014,-0.009819324430479122,-0.11871912630901268,-0.6085526653279151,0.4345864661654136,0.3716699155295646,0.08399216329930698,-0.0060105078053908955,0.0897290484298508,-0.10990180675569555,-0.14424165928949229,-0.11670167118555295,0.08317311638425291,0.2494669509594884,0.241161999950913,0.17723527257035532,0.053061224489795854,0.3268665490887712,0.12168797974678418,0.2476489490760243,0.1124471888716395,0.2485607675906182,0.1957869927815022,0.21250989431757106,0.16780762394904386,0.05804311774461032,-0.030690004336008613,-0.199593829531276,-0.014965986394557868,0.11888431641518055,-0.21836812459760063,0.056863679444545435,-0.14714722525906854,-0.007529021558872512,-0.013000975532409607,-0.06606532657380094,-0.0427676689130203,0.028855721393034856,0.19751280507029806,0.2675596377016958,0.06612244897959185,0.12427983539094643,0.03881249464303316,0.02421644332817648,-0.03806492430047674,0.17756716417910437,0.11190623286896448,0.19227024427472336,-0.05880835491126886,0.08291873963515753,-0.0775960933548729,-0.40502316223646084,-0.09478458049886626,0.042981252857796075,-0.032033631064519646,0.08578799233926591,0.031141334413425623,-0.05504145936981752,-0.11150944545478275,-0.10831659705104743,0.09422941585128909,0.10657649253731347,0.3821521721892564,0.4740448048953732,-0.25612244897959185,-0.09799382716049379,-0.07959213027395731,0.0969233409813037,-0.0914056033045361,0.362843983208955,0.42984922513335005,0.4168311947620009,-0.08418418487388658,-0.6011608623548922,-0.5800301947302077,-0.23690938613127588,-0.23129251700680278,-0.727023319615912,-0.05792517187525129,-0.5921117893097597,-0.03634212745756046,-0.6177238805970151,-0.4141062566530055,-0.51045885902515,-0.27866521053964544,-0.25271370420624156,-0.09550386404785244,0.014778702567819131,-0.24693877551020402,-0.22446689113355775,-0.3496012679480751,-0.2587005003992198,-0.3934669187588265,-0.10476085481682465,-0.08945831714990193,-0.07844850427301193,-0.37713853508677714,2.0041451295984074,13.818248450722923,14.832748939579586,15.659413761671166,36.19640661004763,41.45673430210769,41.680734302107695,41.680734302107695,41.680734302107695,44.612915238115235,33.463281289022895,3.8297283291758695,7.319905619916459,0.0,11.14963394909233,4294.026662543031,3769.589020085147,630.5618564585616,145.0,36.0,49.0,65.0,89.0,107.0,119.0,139.0,155.0,298.0953569280004,24.0,4.795790545596741,5.673323267171493,6.583409222158765,7.483806687665835,8.398634855292102,9.306286713023391,10.22408443999905,11.135216564531996,12.05482524709987,0.7222222222222223,1.0104444444444445,1.1201680091412602,0.6898722467367874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6896723552894214,0.9960784313725488,1.023994497046209,0.6713310604518623,4.0,1.0,0.0,1.0,0.0,4.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,15.257345809056238,16.964334411174267,0.0,11.142287036694249,0.0,4.794537184071822,4.794537184071822,4.9839785209472085,0.0,19.913841467842857,29.680458743243218,0.0,10.772448428929591,208.93118211139208,-491.99555526351804,-45.17924505890403,-13.66654320176439,-35.142539661679855,297.8766217071836,701.4461528232347,31.461130213980258,19.484615356200965,31.883916037419752,0.5,0.6673485424030521,0.2027926770352712,86.81839233845473,0.1439536293805796,68.26736156436448,0.332651457596948,5.0,0.08333333333333333,0.3160067931713424,0.750660621319887,0.852191198794243,0.8951748440425252,0.8951748440425252,0.8951748440425252,2.745,,1.2857142857142858,1.514192647743136,1.1430359144285005,1.28206267335915,-5.365540693720245,1.3572521419828643,1.2745051870999227,-2.2346271687189603,83.24570000000001,14.318215515965875,0.0,4.9839785209472085,0.0,19.76538044554264,5.733667477162185,45.61569883321279,0.0,0.0,3.8918202981106265,0.0,5.262690188904886,0.0,6.836259277277067,0.0,8.507748732588238,0.0,10.232755327808727,26.000000000000004,6.583953189300412,3.8956290942302845,0.0,5.593266250944822,0.0,0.954433578987151,0.6124786890064677,0.0,36.376000000000005,0.0,23.746272483562343,0.0,0.0,0.0,0.0,0.0,-1.233955498866213,40.32604832908537,11.162457869062726,5.817862777835028,0.0,16.059811203739763,0.0,0.0,35.68682061300845,33.47715639497161,0.0,22.068965215365544,0.0,24.835400882524347,24.82820479041917,27.43208342516702,187.55566182208037,,129.79665488672026,128.2392534836609,130.10015527032039,129.81949577427076,158.16190563062327,129.27482596127436,129.87673489052634,146.91594415356704,27.43208342516702,187.5556618220803,,128.79753018821333,127.07839370529403,129.23674674697838,128.82316615056837,161.91839655807507,128.22732285192936,128.88540976851888,148.54112754899907,5.014828425615057,137.55429570844322,,93.5701231430653,92.48350715717636,93.88337888581205,93.58649114259076,110.51314812606171,93.2109273423628,93.62564302691999,104.52629742056433,1.2469128829621372,8.525257355549108,,5.899847949396375,5.82905697653004,5.913643421378199,5.900886171557762,7.189177528664694,5.876128452785198,5.903487949569379,6.6779974615257744,2.507414212807528,93.77783091104011,,64.94927574281645,64.17442286100027,65.10002895482808,64.96068580820166,78.27642793217741,64.69089503713533,64.9889637826542,73.15325019014,35.85882352941176,0.0,4.044881343671026,0.0,0.0,5.591575319955551,9.093530091074282,36.86380189366352,0.0,0.0,0.0,0.0,0.26261138405979656,0.0,0.0,0.0,0.0,24.167918176267044,338.2174491568184,58.814331143116775,139.71092809535654,158.60752504759628,166.60752504759625,166.60752504759625,166.60752504759625,950.0,121.65537754253926,168.59035466175723,56.731273824689545,106.42000000000002,106.42000000000002,1.0,9.771239264951575,5.584962500721156,4.155566478631394,4.61671492931863,,4.584251337202322,4.582753852031056,4.5843893139018626,4.584271910294108,4.584688617269769,4.583771056913831,4.584322869671727,4.589596590560526,0.1888893853923361,0.20985067860539228,,0.20837506078192372,0.2083069932741389,0.20838133245008467,0.20837599592245945,0.2083949371486259,0.20835322985971957,0.20837831225780576,0.20861802684366026,2.212906115992744,2.3181407582789006,,2.3110841675062597,2.310757455531373,2.3111142650321197,2.3110886552718966,2.311179550412015,2.3109793945752424,2.3110997713434083,2.3122494918075103,212.75999999999988,143.6938967198264,122.72563169595482,,125.11375218917262,125.18112764639781,125.0983623181317,125.11282602916638,126.32472089112008,125.13462561232417,125.11065302321761,125.42895393898634,6.531540759992109,5.578437804361583,,5.686988735871482,5.690051256654446,5.686289196278714,5.686946637689381,5.742032767778185,5.687937527832917,5.6868478646917096,5.7013160881357425,5.756142680173065,5.598408587542683,,5.617680701365049,5.618219070019627,5.617557686769287,5.617673298794044,5.627313102088942,5.6178475230114735,5.6176559302724565,5.620196854566877,5.593266250944822,27.64190157779263,9.608915578602627,6.511110834778765,-1.1506954417569493,6.583953189300412,0.0,4.044881343671026,0.0,251.5856031057007,105.8879535550935,-249.34718685160422,-22.897193966484384,-6.926310745877896,-17.810513346543157,150.96619645631435,355.4983842093325,15.94474630939757,9.874955116925905,16.159017464060568,995.0,40.0,2.003067307255921,0.8671999471670402,0.0,0.0,0.6921920787711902,0.18768438649760613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16895785846218417,0.0529514509024277,0.45933021907830907,0.10079126954037516,16.016143379015546,12.083273677529261,10.37991785310972,6.784751922648753,10.116396620793786,5.4205203367887975,8.399233308073798,3.6136110992288684,6.960939934458203,2.3440307584407143,5.7054156053455225,1.6384327193633668,4.6684772812024455,1.0186566566481228,3.116523800962341,0.5964090538590157,4.76924107949477,1.6200780808072133,7.109554952538237,1.7520054326848054,11.107878008817618,2.2503758216320815,71.84935661110542,35.88848706339333,26.19348472999468,25.35906528506946,25.35906528506946,25.35906528506946,120.0,145.0,41.463101999999985,18.086897999999994,0.3888888888888889,114.06,8.61111111111111,4.694444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,14.0,16.0,36.0,0.0,0.0,38.0,16.0,2.0,8.0,30.0,18.0,24.0,20.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,14.0,5.0,2.0,2.0,22.0,6.0,0.0,2.0,4.0,0.0,3.0,2.0,0.0,0.0,0.0,2.0,3.0,3.5553480614894135,8.700631962435569,4.297285406218791,5.012300573415317,5.708355336501335,6.416528013284775,6.961147930676244,7.448443057032041,7.97112621798387,8.44733135990357 +148124,CC(=O)O[C@@]12CO[C@@H]1C[C@H](O)[C@@]1(C)C(=O)[C@H](O)C3=C(C)[C@@H](OC(=O)[C@H](O)[C@@H](NC(=O)OC(C)(C)C)c4ccccc4)C[C@@](O)([C@@H](OC(=O)c4ccccc4)[C@@H]12)C3(C)C,0,22.936936936936938,6.362116216216219,3.4144144144144146,7.945945945945946,162.70586426306474,90.42303295495488,1.384703062675649,6.405761261261264,5.7232857857857855,7.904922882882884,208.3914439710195,24.439655172413794,6.428051724137931,4.2155172413793105,7.129310344827586,145.2970980649577,92.2970023706897,1.7463614752068968,6.564801724137925,3.2230004789272035,7.868075620689653,259.5169780893442,21.80094786729858,6.366701421800946,4.014218009478673,5.9336492890995265,152.17400172857126,81.91576162085312,1.515327262980677,6.467659241706158,3.2794562927856763,7.861367582938388,222.73574446911024,19.93159609120521,6.472309446254071,3.579804560260586,5.130293159609121,153.83020287845613,72.72608736482083,1.4159137791758303,6.557422149837134,3.4971045964531284,7.987520794788277,205.6951932033599,17.8125,6.359055288461542,3.1201923076923075,4.533653846153846,158.69402071486348,64.55303829086539,1.2404094555824015,6.4256985576923125,3.384515224358975,7.9186020096153875,178.79603464049129,17.49056603773585,6.5089811320754745,2.870020964360587,4.618448637316562,161.88103800686574,62.880251958071256,1.1631434139811605,6.551709433962261,3.938970416957839,8.083161123689722,169.24852285749222,17.04040404040404,6.449692929292927,2.804040404040404,4.387878787878788,161.82975959177307,61.22982355555553,1.1673957627914116,6.493790707070708,3.9375982042648703,8.03558273939394,168.5344668160286,16.8052738336714,6.374752535496957,2.709939148073022,3.969574036511156,158.97219518572984,59.80320518255577,1.2247596180851452,6.434976064908724,3.944838855082263,7.944770328600406,172.98013578586202,14.239776951672862,6.1867695167286225,2.4107806691449816,3.0650557620817844,161.97421373496476,49.50955205762082,1.1323881177209663,6.240309293680299,3.51608323007022,7.79680296654275,154.15746646906152,7.930038146254364,0.17188255823390944,0.027250290554765078,0.8138949760571381,4.434542650758866,1.3249654542215583,37.44955254752049,0.2261120868031675,0.15801331060790502,2.331826195564933,0.1150910172875578,48.86972730007351,0.17348779347847376,-0.010765386752082827,-0.015514842927838541,0.3516843964187861,1.4005769516021143,0.00038696738590239483,0.8902623331101359,0.0043344471847800315,-0.008200208712906686,-0.26240278508548925,-0.008849033752298391,2.1021460549642685,1.355474854898449,0.02428128617922397,0.0012555840991498278,0.011432721308473877,0.3776344552571013,0.09742790526398849,6.376126285151038,0.01794109021451928,0.02361858384579023,0.17225045217285095,0.013934811157000493,6.152917479230508,-0.8222821818208736,-0.009491857761450036,0.0007943665260430762,-0.012738770992138349,-0.30650907972855324,-0.11275916985335689,-3.912474558935819,-0.019263989290725685,-0.009865744801055924,-0.06939275234973216,-0.005168782701179813,-5.231903956632018,0.17083676712055082,-0.003838500714852003,-0.0011079311918166458,-0.02809715900932116,0.040552636836420596,-0.1456975111226064,0.78224967759645,-0.020456508337237965,-0.0017332062246757855,-0.1314692881767769,-0.005209307741473213,-1.5491001145858097,-0.10154928002964707,-0.0022475911913952466,0.0008231306192269766,-0.01639936724077468,-0.029552755202933653,0.019819289914655553,-0.4801236061262694,-0.0010860276156713377,-0.0020092140585255664,-0.06617912816210174,-0.000999557374814748,-0.2784287864693463,0.0858868696706535,-0.0026228275941788445,-0.00048393369342120455,-0.07180743396959613,-0.16026837648459266,0.09341177281725382,0.46330204361609717,0.016558916966219656,-0.0024273446419391794,-0.040408894425411006,-0.0012986778936183102,2.6270046777556897,-0.7189386085828168,-0.0030374802959309624,0.00042227115010793525,-0.08672358559974368,-0.3490027498031445,-0.09513982837483463,-3.451776411910238,-0.01796302554166472,-0.0042898268807703074,0.07203519625284689,-0.00023443844502353222,-5.079283633323334,-0.49142667232690335,-0.00800830089106488,0.00023624593713445519,0.00560668173448239,-0.31647104755715216,-0.0026861348007942544,-2.30195641317239,-0.0015568338709588097,-0.00815732246362709,-0.03893153510521811,-0.004301529963802841,-1.6978796067078576,,,0.45804597701149424,0.9870689655172413,0.35344827586206895,0.0,0.6336206896551724,-0.2801724137931034,1.712846425115689,0.03316894342272849,0.04206549514686642,1.252528179300009,0.18513128923155214,0.28022069083491064,2.9653746044156977,0.46535198006646283,2.008418815369312,1.525490806312905,0.034847015660703196,0.44808099339570373,0.0,0.4829280090564069,7.273392841225239,2546.0,706.1949000000003,379.0,882.0,18060.350933200185,10036.956657999992,153.70203995699703,711.0395000000003,635.2847222222222,877.4464400000002,23131.450280783163,2835.0,745.654,489.0,827.0,16854.463375535095,10706.452275000005,202.57793112400003,761.5169999999993,373.8680555555556,912.6967719999997,30103.969458363925,4600.0,1343.3739999999996,847.0,1252.0,32108.714364728534,17284.225702000007,319.7340524889229,1364.6760999999992,691.9652777777777,1658.7485599999998,46997.24208298226,6119.0,1986.9989999999998,1099.0,1575.0,47225.87228368603,22326.908820999994,434.6855302069799,2013.1286,1073.6111111111104,2452.168884000001,63148.42431343149,7410.0,2645.3670000000016,1298.0,1886.0,66016.71261738321,26854.063929000004,516.010333522279,2673.090600000002,1407.9583333333335,3294.138436000001,74379.15041044437,8343.0,3104.7840000000015,1369.0,2203.0,77217.25512927496,29993.88018399999,554.8194084690135,3125.1653999999985,1878.8888888888891,3855.6678559999978,80731.54540302379,8435.0,3192.5979999999986,1388.0,2172.0,80105.73099792768,30308.762659999986,577.8609025817487,3214.4264000000007,1949.1111111111109,3977.613456,83424.56107393416,8285.0,3142.7529999999997,1336.0,1957.0,78373.29222656481,29482.980154999994,603.8064917159766,3172.443200000001,1944.8055555555557,3916.771772,85279.20694242997,7661.0,3328.481999999999,1297.0,1649.0,87142.12698941104,26636.139007,609.2248073338799,3357.286400000001,1891.6527777777783,4194.679996,82936.7169603551,880.2342342342343,19.078963963963947,3.0247822515789236,90.34234234234233,492.23423423423407,147.07116541859298,4156.900332774774,25.09844163515159,17.539477477477458,258.8327077077076,12.775102918918916,5424.539730308159,20.124584043502956,-1.2487848632416079,-1.7997217796292708,40.79538998457919,162.46692638584526,0.0448882167646778,103.27043064077577,0.5027958734344836,-0.9512242106971756,-30.438723069916755,-1.0264879152666133,243.84894237585513,286.00519438357276,5.123351383816258,0.2649282449206137,2.412304196087988,79.68087005924838,20.557288010701573,1345.3626461668691,3.785570035263568,4.9835211914617386,36.34484540847155,2.940245154127104,1298.2655881176372,-252.4406298190082,-2.914000332765161,0.2438705234952244,-3.910802694586473,-94.09828747666585,-34.617065144980565,-1201.1296895932965,-5.914044712252785,-3.028783653924169,-21.303574971367773,-1.5868162892622026,-1606.1945146860296,71.06809512214915,-1.5968162973784332,-0.4608993757957247,-11.688418147877602,16.869896923950968,-60.61016462700426,325.4158658801232,-8.509907468290994,-0.7210137894651267,-54.69122388153919,-2.167072020452857,-644.4256476676968,-48.43900657414165,-1.0721009982955327,0.39263330537126784,-7.822498173849522,-14.096664231799352,9.453801289290698,-229.0189601222305,-0.5180351726752281,-0.9583951059166951,-31.567444133322528,-0.47678886778663476,-132.8105311458782,42.51400048697348,-1.298299659118528,-0.23954717824349625,-35.544679814950086,-79.33284635987337,46.23882754454064,229.3345115899681,8.19666389827873,-1.2015355977598938,-20.002402740578447,-0.6428455573410635,1300.3673154890664,-354.4367340313287,-1.4974777858939645,0.20817967700321208,-42.754727700673634,-172.05835565295024,-46.90393538879347,-1701.7257710717474,-8.855771592040707,-2.1148846522197617,35.51335175265352,-0.11557815339660138,-2504.0868312284038,-264.387549711874,-4.308465879392905,0.1271003141783369,3.016394773151526,-170.26142358574788,-1.4451405228273089,-1238.452550286746,-0.8375766225758396,-4.388639485431375,-20.94516588660734,-2.314223120525928,-913.4592284088275,0.7370686796339312,0.5842234909588168,0.42841928323579115,0.30689941246282115,0.27640504792296844,0.17573846614463762,0.1616141266593064,0.08976548489781373,0.09793557860074618,0.04859628902272379,0.058266249910511846,0.025841024598753388,0.03398434979583798,0.014386369585794045,0.020607443756710794,0.007542776856483901,8.039247456993422,5.693893593276178,3.567106112506466,2.193744697232481,0.5008474831281537,-0.48770664809215075,4.118224492402657,0.9721606520090377,6.036784263569626,0.9884494648745192,14.540322859250143,10.95434302356677,16.024445336146893,11.7050082952561,2.0016372457629643,0.7395483062350962,3.5137265520849033,2.2436993631378295,7.012673103978216,1.0693007609958276,3.7264812978740305,2.439676686052411,20.90736768468851,14.699758754824215,0.21102705754442155,0.5349950621276288,0.7446821334297071,0.846006529765873,0.8766042614400265,0.879178264014029,1.4150737625881789,1976.3289707769836,0.0,3.0,9.0,0.0,11.0,9.0,4.0,4.0,2.0,5.317226463539155,3.0494504314567044,1.5816409323421565,0.8723701579889953,0.658186036269921,0.6401680182519032,255.25669022295398,6166.99161599967,105.84616822946757,55.55848302702404,116.4337396628614,,18.0,1759.0,112.42190107762873,44.39879549972193,29.737364139274455,5.563451491696996,6.923737199690624,25.980208536304467,83.14962254614599,0.0,5.316788604006331,23.684314769000245,26.566666666666666,57.25,20.5,0.0,36.75,0.0,0.04195402298850575,-16.25,0.16784589467516386,0.03464264264264283,-0.13320325203252104,0.04698047801496097,0.2004690721649489,0.0,0.6093093093093085,0.8919540229885066,0.4414634146341446,0.5746666666666657,0.8449735449735456,99.34509265670997,1.9237987185182526,2.4397987185182526,72.64663439940051,10.737614775430025,16.25280006842482,171.99172705611048,26.990414843854843,0.513530927835051,0.26348808030112925,0.09410288582183186,0.3199498117942284,0.5581395348837209,0.37124889185083065,-2.3096297322307193,-0.06936150407831831,-0.02080747506514162,-0.0659894209208777,0.6287511081491692,3.9116137056048834,0.03741580656520788,0.0352397631135575,0.05146860138953794,-5.148012952378904,0.8133610896023749,0.7824868699003352,1.5750394551534634,1.0024130709874421,0.5047358728483777,1.2584206687240937,0.820004488219608,1.2002293308963985,0.7641065812606682,0.7650695528402236,0.8194214705845606,1.0440237025655448,0.7323287688774806,0.6998744361664574,0.9469605999647857,1.6273013760522672,0.8764081696522518,1.0743271136865498,0.7378027447823897,1.043812268399213,0.6867513971824126,0.6116361730948211,0.7334298264409266,0.9203555142612381,1.0522443485478705,1.0713279505202662,1.1665273658476618,1.4139123808385383,1.088237499929951,1.1976937629185034,1.0535282881259433,1.1702167722528802,1.0627251208829245,0.9009251748987869,1.090160080874629,1.1162964040121273,0.9654882032282087,1.0751779440825593,1.250794973065344,1.2688115104630115,1.0134080482870476,1.148386839547377,0.9651154120575461,1.1082509949177861,1.0538304713491395,1.0762326183247815,1.1127831922699933,1.0185443124608995,1.059728408689037,1.2733423840521805,1.309540663088781,1.1627098213053766,1.133517207942223,0.9806480983588253,1.053577442545147,0.9682394141369834,1.2512735038051725,1.2805913078458,1.2970527677739392,0.9470912796736453,1.032805900695283,1.249797656176835,1.2986305373610971,1.2507977662544876,1.168594506875557,0.9055794473585008,1.0256626500562143,0.8974393085919027,1.231289689530919,1.3119442171023665,1.2761760897241003,0.8977672948694698,1.087692227653694,1.1093553055898058,1.07847328391301,1.1632560675949128,1.1209805240718798,1.091272023595623,1.0872148179293728,1.093691809577946,1.1067998288032888,1.1518509159780137,1.1160956689768997,1.0863230046236938,1.062449544217205,1.0653889643266254,0.9756441957343365,0.8554819738931736,1.0523482982485197,0.9778125284337431,1.0612096562939666,0.9887613041527044,1.0694798664228837,1.077613711952873,1.0587797255859528,1.0199794541792733,18.0,0.9459238853178247,10.777777777777782,8.625,7.217777777777779,5.583333333333333,3.928163265306122,2.675347222222222,1.6518014613252703,1.3156250000000003,15753.833763857734,17834.44425022044,5560.987749248919,5010.21581347959,19.90590901890684,0.45818573875660545,10.785305389457234,0.845650938949314,0.0,0.5581395348837209,1.477189402810951,3.744965434893402,5.21277493400795,5.922045708361111,6.136229830080185,6.154247848098203,0.2857142857142857,0.009273763581547299,0.1099773242630386,0.07128099173553719,0.0511899133175729,0.03673245614035087,0.02518053375196232,0.01771753127299485,0.012235566380187189,0.011540570175438598,0.6308429363329154,47.47845804988662,17.8752,8.8,336.1909090656998,0.0,5.000399195749316,450.8449676591001,,390.04004365938613,384.06122212007136,397.6613317251313,390.14729326133653,587.9297478896129,388.34131426340434,390.31616601156645,490.20052033841034,0.021877296209529353,-0.06263222320343033,-0.5693459633635196,0.43210046352970327,0.3158334606078124,0.00029205847191672276,0.023772308947629325,0.01916946257080545,-0.05189568322667906,-0.11253102207384576,-0.07688726679849268,0.043015301519006156,0.17092917207954259,0.14126672554047254,0.046075989414735695,0.014046924535471343,0.08515747507637078,0.07353241169689906,0.1702590779171592,0.07934600254314204,0.1494721157029454,0.07386933575944314,0.12107644441254713,0.12590447745799582,-0.10369208402979328,-0.05522292581038312,0.029150754354219925,-0.0156516152168066,-0.06911853236457237,-0.08510347910889872,-0.10447319908485427,-0.08519663660216074,-0.062436162897294326,-0.02975897280925791,-0.04491039199232621,-0.1070581778471301,0.021542994367718525,-0.022332113009560346,-0.040657591873746436,-0.03452184843975329,0.009144716835563864,-0.10996325274624338,0.020888091429232373,-0.09047065385339409,-0.010968735595804151,-0.0563803976586367,-0.045262504965592816,-0.03169856269248058,-0.012805648365968121,-0.013076319171003799,0.03020630615195555,-0.020149242498363067,-0.006664217153910202,0.014958344650804312,-0.01282054319653168,-0.00480304981049834,-0.012715473467366553,-0.028380815125918283,-0.00868492953118425,-0.005697367303887688,0.010830574593291318,-0.015259416785090685,-0.017758845266205144,-0.08822690406256421,-0.03614090315653331,0.07050128931258434,0.012371363930936262,0.0732332233996599,-0.015361646639772037,-0.017329290880369885,-0.01128392053719997,0.053755255510741076,-0.0906601702694705,-0.017671835508739363,0.015496023767500545,-0.10655377923558455,-0.07870095684916256,-0.07180551619040591,-0.09217136593368398,-0.07944301339937519,-0.02714851593366779,0.030892180725071095,-0.0020369829944050445,-0.10393517447181855,-0.06197027848586346,-0.04659170176049301,0.008669483235772121,0.006888704193314474,-0.07136497999472295,-0.002027324404750166,-0.06146819538768565,-0.006885230652503981,-0.051624274133896905,-0.016695727657260552,-0.037375027740482646,-0.03474297280773457,11.672179582920387,33.35282847191503,28.72361955832453,13.764133114177941,35.686574297412626,45.107224188130346,47.70453022380367,48.11868007074875,48.136842232910915,116.4882912914201,88.47846676614849,2.0211269083207855,25.988697616950816,0.0,28.0098245252716,22476.969587639403,20398.24204541252,6883.5128950859835,726.0,100.0,140.0,195.0,269.0,340.0,426.0,508.0,608.0,807.3466053760015,63.0,5.7899601708972535,6.693323668269949,7.653020413804189,8.591372589590488,9.5620530240851,10.51961869044739,11.498613536162472,12.468709949642026,13.454103004302347,0.6456456456456456,0.9952072072072071,1.1281740441364079,0.6059685528505779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6445381075686465,0.9802155096272744,1.0163973150134842,0.6137260164703684,10.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,8.0,0.0,0.0,0.0,4.0,3.0,1.0,5.0,0.0,8.0,0.0,5.0,0.0,0.0,49.4272129523694,35.61796717296058,17.488262145096932,0.0,0.0,9.589074368143644,14.383611552215466,0.0,0.0,62.37841094707413,63.46108068721186,25.180370914939424,35.64903718866435,368.01144761018446,-2289.4888034932405,-68.75664300848074,-20.626025256695865,-65.41396581409259,623.2681378331384,3877.502812506429,37.08952522098683,34.93245777032818,51.01977384876881,0.5,0.7679177848938871,0.07325507797720512,0.5722383798656003,0.06554109500711355,48.298485411806496,0.23208221510611293,9.0,0.12698412698412698,0.21741227382428133,0.5511828402262873,0.7672145827612111,0.8716048332705864,0.9031283852480033,0.9057802714987778,3.2596000000000025,,3.642857142857143,4.185667752442996,2.6491281877538646,3.6322182858638996,-15.670301518929946,3.78327723378213,3.6191901961772186,-5.905247321055788,203.6043999999994,68.08311026872217,0.0,5.316788604006331,16.747886984954953,127.70033243196583,6.606881964512918,82.93678272814864,0.0,0.0,4.844187086458591,0.0,6.282266746896006,0.0,7.916807490937603,0.0,9.654449103676551,0.0,11.459282042773326,71.66666666666667,16.002071154896214,0.0,0.0,0.0,0.0,0.0,0.41219347190952105,0.0,110.46799999999999,0.0,68.90980717341509,0.0,0.0,0.0,0.0,0.0,-4.673019752296072,125.22731889914127,5.316788604006331,4.794537184071822,0.0,110.24434318447554,38.06792632121571,16.747886984954953,90.19482183999078,71.80987974475464,0.0,0.0,0.0,67.26250936641415,71.54372994011976,71.3808418498715,904.1430825774155,,781.089251803949,769.1016925229776,796.3869592753686,781.3043395529622,1182.50346824384,777.6838395824147,781.6428347458575,983.6235466105804,71.3808418498715,904.1430825774155,,777.6976261881855,765.2046915120823,793.9205295833215,777.9226190799166,1192.6886861184507,774.1614780199284,778.2732438735543,987.4925017519618,5.454546287329193,636.1358541888353,,555.0629300727344,546.6392854761762,565.9072403200241,555.2143928897071,837.304069613789,552.672580182425,555.4518462717699,697.4617774173103,1.2307041698253707,15.588673837541647,,13.467056065585327,13.260374009016855,13.730809642678768,13.470764475051073,20.387990831790344,13.408342061765772,13.476600599066508,16.959026665699664,2.7272731436645965,450.8449676591001,,390.04004365938613,384.06122212007136,397.6613317251313,390.14729326133653,587.9297478896129,388.34131426340434,390.31616601156645,490.20052033841034,108.80392156862746,0.0,12.080791582678515,0.0,0.0,0.0,49.025614540714805,112.82010196649674,-1.0013709034029212,2.5367993531639432,29.507859364191926,0.0,-12.740378510837346,0.0,-8.64370080776701,0.0,0.0,68.12358782821089,761.2212234641672,163.96802371201554,415.6911632731676,578.6180176748824,657.3470736280833,681.1215111389006,683.1215111389006,3433.0,207.23077504720123,230.05836197915573,98.15699247074207,224.44999999999996,224.44999999999996,1.0,8.739716550450968,6.977279923499917,5.137917564992721,7.489341489822097,,7.4997496291258425,7.501130732961325,7.500432230587868,7.499732283891769,7.462023666300402,7.5002634479872,7.499673018512164,7.478530124841254,0.08858478560332278,0.1291265774107258,,0.1293060280883766,0.12932984022347113,0.12931779707910118,0.1293057290326167,0.1286555804534552,0.12931488703426205,0.12930470721572696,0.12894017456622853,3.3945057719293246,3.7713387926346074,,3.7727275547542,3.772911691125673,3.7728185671791,3.7727252419764423,3.7676845639223493,3.7727960638760143,3.772717339612527,3.769894182854492,592.1300000000025,13637.759733461933,521.8643215499277,,517.4877164340126,517.0889792269014,517.6855155480986,517.4938892856325,527.603741829236,517.359805569643,517.507595879395,523.2678399802284,235.13378850796437,8.997660716378064,,8.922202007482975,8.915327228050025,8.925612337036183,8.92230843595918,9.096616238435104,8.919996647752464,8.922544756541294,9.021859310003936,11.27845559304575,8.015265551247413,,8.00684370605079,8.006072884073982,8.007225862602722,8.006855634478477,8.026203430541036,8.006596498878137,8.006882120611992,8.01795137286054,29.507859364191926,68.90980717341509,51.56241389387875,-8.13552639593535,-5.363479982528286,14.62746069590883,-11.482330648139211,11.790462565874922,0.0,758.7675004328408,364.8022352254208,-2269.5235120039088,-68.15705657792134,-20.446157765800983,-64.84352891439741,617.8329812912654,3843.6893805366917,36.7660891853495,34.6278322570873,50.57486027021963,12587.0,121.0,7.330212227385975,4.392079191397519,0.779511408704917,0.5062135474564975,2.997240683411818,1.3804996132071259,0.7711110059212488,0.3587923479548687,0.0,0.0,0.14433756729740643,0.08333333333333333,0.2874574785652648,0.14105877840333636,0.6698157601192632,0.30427012135911613,1.194927949262968,0.5724673509057886,42.74998341876801,33.884962475611374,26.990414843854843,19.33466298515773,27.640504792296845,17.57384661446376,22.625977732302896,12.567167885693923,19.097437827145505,9.47627635943114,15.673621225927686,6.951235617064661,11.554678930584915,4.891365659169975,8.778771040358798,3.213222940862142,15.831067812532659,8.062231545838118,27.17028874124928,12.379842382729436,48.169149997076794,19.44721316067663,206.354292937365,86.8857403371479,47.24174685145291,34.712502887740854,32.42532862438704,32.33894275292128,326.0,403.0,119.47802899999998,66.7599710000001,0.3153153153153153,663.15,23.95138888888889,12.145833333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,12.0,12.0,111.0,0.0,0.0,116.0,12.0,6.0,12.0,104.0,18.0,63.0,98.0,0.0,0.0,2.0,43.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53.0,14.0,5.0,1.0,58.0,15.0,0.0,1.0,14.0,0.0,6.0,8.0,0.0,0.0,0.0,0.0,2.0,4.330733340286331,7.3308556346352205,4.882801922586371,5.320567975482857,5.751778672924456,6.1698722045808,6.326149473155099,6.618655535442735,6.840011626895618,7.108755465610657 +23582824,O=C1NC(=O)/C(=C/c2ccc3nccc(-c4ccncc4)c3c2)S1,0,34.0,6.413380000000001,4.0285714285714285,10.184126984126985,155.0955756891954,135.32281802857145,1.9547814272382567,6.523811428571429,5.59692337840486,7.876702314285714,277.84933515967367,32.078947368421055,6.414578947368422,4.631578947368421,9.429824561403509,142.27160306529737,125.04162507894738,2.1754446157894742,6.593276315789474,3.590480831708902,7.804628842105262,315.0293805638533,31.316666666666666,6.4255466666666665,4.4,8.13888888888889,145.470439725775,121.01534969999999,2.040129979833333,6.5882016666666665,3.5838991769547324,7.851230200000001,291.04022215288506,24.216216216216218,6.223337837837838,3.7567567567567566,6.522522522522522,148.60115601080213,90.79484744594596,1.7798708640729188,6.367800000000001,3.3471805138471806,7.718497891891892,249.5478816772692,21.972602739726028,6.100164383561644,3.5753424657534247,5.904109589041096,148.94033345280408,81.98105094520548,1.7365425619211645,6.237610958904109,3.54236428209031,7.5926196164383555,237.41011554430463,21.32894736842105,5.998960526315789,3.3552631578947367,5.3771929824561395,149.73204635387043,79.19835030263157,1.684914172890013,6.140532894736841,3.0220110461338536,7.526321368421052,226.9156755599698,20.14666666666667,6.14936,3.1733333333333333,5.151111111111112,156.08872602039966,73.94794062666665,1.5221024839418802,6.258393333333332,3.2633744855967084,7.675850026666666,206.02176000555022,21.612903225806452,6.234043548387097,3.096774193548387,5.516129032258065,159.30509586737807,80.37800188709676,1.4724990436530645,6.328424193548386,3.3573277578653924,7.776870870967741,199.85393460085422,25.434782608695652,6.32906304347826,3.152173913043478,6.782608695652174,157.0679208544668,96.42168439130435,1.5877026861911305,6.434645652173913,3.8039452495974238,7.865525347826087,215.68988307632816,9.849795918367345,0.11327999999999992,0.017623811154013964,0.5795918367346939,3.7663492063492066,1.7132366924423468,44.602635804081636,0.28708790819276414,0.10410334693877545,1.8795761596819789,0.07074527836734691,46.45775830978827,0.3614822771213743,-0.005076315789473693,-0.010299515206821808,0.1143931256713211,0.42538011695906447,-0.05960152606004484,1.7442344575725095,0.01590319837577206,-0.003639361976369477,-0.08957801617506433,-0.004159920472610096,1.9708940866846512,0.5906802721088431,0.008313333333333322,0.00438097492295474,-0.043877551020408204,-0.5448148148148148,0.010405869172700765,2.2943670625850414,-0.014343985921867848,0.007421748299319764,-0.05506819051351681,0.012012279727891147,-2.7723252866149606,-1.174892443463872,-0.012655405405405393,-0.0035038913344754585,-0.09735245449531166,-0.5023423423423423,-0.06337880894704002,-5.450091976282403,-0.03819102862324785,-0.011515393270821841,-0.19844052669449497,-0.005404362537231098,-4.202376625457461,-0.19265306122448966,0.00946027397260276,0.000256547532620457,-0.0735253005311714,-0.25223744292237454,-0.022460469702560226,-1.1549423939055075,-0.006554818892542158,0.006448903550461263,0.3144550172512773,0.009696766642437819,-4.820724450870608,-0.2366380236305047,0.008317105263157912,0.0016638066561456433,-0.0378625134264232,0.2394152046783625,-0.29525979013823445,-0.9794054954350188,-0.03103049476059452,0.008020374865735725,0.09456521226640968,0.0026589111063373,-3.02755830099921,-0.32484353741496574,-0.010179999999999982,-0.0009197493931486417,0.010884353741496607,-0.18577777777777782,-0.13506375099502382,-1.5069003717006832,-0.009853710799158382,-0.008712756462585056,-0.0530623442792755,-0.0070204501768707335,-2.3618354804165382,1.2967478604344964,-0.008974193548387093,-0.0016894747815498546,0.07570770243581304,0.16616487455197126,0.0978615590203093,5.916441109282419,0.03397668541363958,-0.005849844634628058,-0.2263168498515827,-0.005636597722185645,4.986205535970587,1.7241171251109138,0.02514347826086955,0.0027545272485996644,-0.019964507542147288,1.1028019323671496,-0.0076945061874303415,8.242678190328302,0.02365469253340174,0.024946528837621985,0.11261130037987643,0.00892037256433007,6.101781836463923,,,0.48750000000000004,1.4791666666666667,0.8333333333333334,0.0,0.6458333333333334,0.1875,0.6426696666602407,0.008779317673601147,0.02311265100693448,1.0215015463099257,0.292515964013526,0.19513028341175187,1.6641712129701665,0.48764624742527785,2.0785415040131032,1.5957845944250912,0.252093080732179,0.14684356963897818,0.0,0.48275690958801243,9.515919931200008,1190.0,224.46830000000003,141.0,356.44444444444446,5428.345149121839,4736.298631000001,68.41734995333898,228.3334,195.8923182441701,275.684581,9724.726730588578,1219.0,243.75400000000002,176.0,358.3333333333333,5406.3209164813,4751.581753,82.66689540000002,250.54450000000003,136.43827160493828,296.57589599999994,11971.116461426425,1879.0,385.5328,264.0,488.33333333333337,8728.2263835465,7260.920982,122.40779878999997,395.2921,215.03395061728395,471.07381200000003,17462.413329173105,1792.0,460.52700000000004,278.0,482.66666666666663,10996.485544799358,6718.818711000001,131.710443941396,471.21720000000005,247.69135802469137,571.168844,18466.543244117922,1604.0,445.312,261.0,431.0,10872.644342054698,5984.616719,126.76760702024501,455.34559999999993,258.5925925925926,554.261232,17330.93843473424,1621.0,455.92099999999994,255.0,408.66666666666663,11379.635522894152,6019.0746229999995,128.053477139641,466.68049999999994,229.6728395061729,572.000424,17245.591342557706,1511.0,461.202,238.0,386.33333333333337,11706.654451529974,5546.095546999999,114.15768629564101,469.37949999999995,244.75308641975315,575.6887519999999,15451.632000416266,1340.0,386.51070000000004,192.0,342.0,9876.91594377744,4983.436116999999,91.29494070649,392.36229999999995,208.15432098765433,482.16599399999996,12390.943945252962,1170.0,291.13689999999997,145.0,312.0,7225.124359305472,4435.397482,73.034323564792,295.9937,174.9814814814815,361.814166,9921.734621511096,344.7428571428571,3.964799999999997,0.6168333903904888,20.28571428571429,131.82222222222222,59.963284235482135,1561.0922531428573,10.048076786746744,3.6436171428571407,65.78516558886926,2.4760847428571418,1626.0215408425893,13.736326530612224,-0.19290000000000032,-0.3913815778592287,4.346938775510202,16.16444444444445,-2.264857990281704,66.28090938775536,0.6043215382793382,-0.13829575510204012,-3.4039646146524447,-0.15807697795918366,74.89397529401674,35.44081632653059,0.49879999999999936,0.2628584953772844,-2.632653061224492,-32.68888888888888,0.6243521503620459,137.6620237551025,-0.8606391553120709,0.4453048979591858,-3.3040914308110083,0.7207367836734688,-166.33951719689765,-86.94204081632653,-0.9364999999999991,-0.25928795875118393,-7.204081632653063,-37.17333333333333,-4.690031862080962,-403.3068062448978,-2.826136118120341,-0.8521391020408162,-14.684598975392628,-0.3999228277551013,-310.97587028385215,-14.063673469387746,0.6906000000000015,0.018727969881293362,-5.367346938775512,-18.41333333333334,-1.6396142882868965,-84.31079475510205,-0.4785017791555775,0.4707699591836722,22.955216259343242,0.7078639648979608,-351.91288491355436,-17.984489795918357,0.6321000000000013,0.1264493058670689,-2.8775510204081636,18.19555555555555,-22.43974405050582,-74.43481765306143,-2.3583176018051835,0.609548489795915,7.186956132247135,0.2020772440816348,-230.09443087593996,-24.363265306122432,-0.7634999999999987,-0.06898120448614813,0.8163265306122455,-13.933333333333337,-10.129781324626787,-113.01752787755125,-0.7390283099368786,-0.6534567346938792,-3.979675820945663,-0.526533763265305,-177.13766103124036,80.39836734693878,-0.5563999999999998,-0.10474743645609098,4.6938775510204085,10.302222222222218,6.067416659259177,366.81934877551,2.106554495645654,-0.3626903673469396,-14.031644690798128,-0.34946905877551,309.1447432301764,79.30938775510204,1.1565999999999992,0.12670825343558456,-0.9183673469387752,50.72888888888888,-0.3539472846217957,379.16319675510186,1.0881158565364801,1.1475403265306112,5.180119817474316,0.41033713795918325,280.68196447734044,0.6882623787553616,0.5503821389673121,0.4334633310446914,0.2986150434642061,0.28014480532165986,0.16415686888371117,0.17636158687141515,0.0883793469793033,0.11394954210274662,0.047702052381226864,0.07442249513296266,0.024455790913430503,0.04630069186216296,0.013097511669800206,0.030064882767609786,0.007172200283163557,16.002004678117316,5.66243773624678,3.5462479610868103,2.160093675190248,0.43195107052151166,-0.38902519140069414,3.2517048481280537,0.977310005038182,6.02322568422973,0.6606557847732045,14.549368587667418,10.337562633809217,32.06099916496202,11.675026373138214,2.9166137284935036,0.7512165087908501,3.491858251423943,2.209620024976757,7.009359886581219,0.6284680473250897,3.704687743098924,2.405352657728728,24.434238597050047,14.701792365978674,0.30357818717644625,0.5732602056154338,0.7830116930641989,0.893189041267285,0.9135437376734579,0.9135437376734579,1.3789055319591064,999.5763233882675,0.0,4.0,0.0,0.0,9.0,0.0,4.0,0.0,0.0,3.4247795809467245,1.910593297236482,0.7328995558400928,0.11428571428571566,8.881784197001252e-16,8.881784197001252e-16,16.2830406527454,907.0284118153997,67.32615596023052,25.915097480439997,52.07919829043202,,12.0,494.0,0.0,9.589074368143644,11.146391442523793,4.905136513890047,39.35516435656316,0.0,24.66655082167311,36.39820241076966,15.284745645900749,0.0,11.700000000000001,35.5,20.0,0.0,15.5,0.0,0.012499999999999956,4.5,0.2145454545454541,0.10285714285714265,-0.11168831168831145,0.02100000000000002,0.1230909090909087,0.0,0.6599999999999999,0.8249999999999996,0.4454545454545458,0.5571428571428573,0.8039999999999996,15.424071999845777,0.21070362416642752,0.5547036241664275,24.516037111438216,7.020383136324623,4.683126801882045,39.940109111283995,11.703509938206668,0.5909090909090913,0.056980056980056974,0.0,0.34188034188034183,0.0,0.4849615418344461,-0.812504905005707,-0.08066376299680972,-0.023214425857305918,-0.05078155656285669,0.5150384581655539,0.8628957915779327,0.04369649642252359,0.02465416547365522,0.045415567977785926,-5.254261530220169,0.6488436406780254,0.6333995741472327,1.4915619479306235,0.7277613046701259,0.5369627710544062,0.9892164250381053,0.6417168834725657,0.7450425631960476,0.6086519658602496,0.5330210492482497,0.6399097158452716,0.7151021243270101,0.7725564948339688,0.6308397228948076,0.6560100620451158,1.1034037558685443,0.9072684873005169,0.9814083663203735,0.7700388591469923,0.9370936540789883,0.618204358933744,0.6395877897947299,0.5287400348917978,0.8652836908511508,1.0009026928469995,0.8995256227777416,0.9073379063612241,1.2117434335744193,1.0254961637294744,0.9516650330974376,1.004204619116456,1.0625597657927408,0.9052895101354796,0.9218922854201591,0.871788919773569,1.028399829004203,0.7727816643165787,0.5907378768781717,0.5572305665636001,1.1135442793748793,0.9149008396530544,0.8843514433513575,0.7960552751671773,0.8717209274227907,0.6390274119335487,0.47411641028778506,0.5164342134901257,1.082958273682053,0.968723555532292,0.5572189876173484,0.5090428714039273,0.9924017790956261,0.8050670759839585,1.0585694714686924,0.9723104271667273,1.0852927311998026,0.5944277404416846,0.5056933338201902,0.550776596095876,1.1115252097692299,0.9619150229294439,0.9779116222760292,0.9318197895854304,0.9050704225352112,1.0362778152393797,1.0524287704826807,0.975261387062953,0.9692894875770178,0.9937429001740291,0.7908656703257688,0.9355552443627807,1.0865684042824784,0.8979577378183434,1.1537526198286863,1.1148962899783146,0.8380281690140844,1.0511060840058295,0.953797059469701,0.9052160345467402,0.8739215664637099,1.1418230746850389,1.1194893436835496,1.1202636736583693,0.9484811022689978,1.0527064911104869,0.893404897883988,0.9937491014615106,1.0202082057562767,0.7983779940778093,1.029225596675011,1.0289088637646684,1.0500163077226947,0.8757506277121794,1.057516192785596,0.9853793884089155,0.9087300938016052,4.5,0.07713906744209775,2.4444444444444455,1.8541666666666667,1.017777777777778,0.5905555555555556,0.45718820861678,0.28904478458049887,0.22677311665406902,0.13938271604938274,4908.116472958587,5229.67310707282,2404.350404241738,2288.4716324749534,11.897339198750336,0.4228425458377431,6.866638003255569,0.7326294458961782,1.0,0.0,1.704503435998242,3.2186897197084843,4.3963834611048735,5.014997302659251,5.1292830169449655,5.1292830169449655,0.16666666666666663,0.00701264249473616,0.06432748538011698,0.050112612612612614,0.030841750841750844,0.017895622895622895,0.01576511064195793,0.01204353269085412,0.010798719840669954,0.008198983297022514,0.38366312736201064,17.415637860082306,7.7091412742382275,3.9077277970011535,141.36980850012296,1.0,4.129281913437605,116.31693543453771,,79.95950196406764,85.5149987933109,86.01198110974997,79.95978822122753,89.05478319891373,85.4416681689796,85.09746637499124,88.90923052762487,0.03669946871156005,-0.0448121097234613,-0.58440907683444,0.19736842105263144,0.11294229335983252,-0.03478884518582101,0.039106084789116716,0.05539487356288763,-0.034959125555394814,-0.04765862543724793,-0.05880138673014457,0.0424233574410197,0.05996878280567984,0.07338747645951031,0.24858272054038308,-0.07570422535211274,-0.1446532928748033,0.006073807091924014,0.05144016763186631,-0.04996374111387733,0.07129211997078819,-0.029298195888393396,0.16979620414407076,-0.05967410799566829,-0.11928089203076774,-0.11171791494884711,-0.19881575578942917,-0.16796726303768558,-0.13337646479925644,-0.036993609363274144,-0.12219215026264565,-0.13302903930598367,-0.11061501488126214,-0.10557727372327959,-0.07639184779468658,-0.09045586309686524,-0.019559091662522784,0.08351230554910635,0.014556870269347287,-0.12685703260659853,-0.06697133725602494,-0.013109963031751994,-0.025894039064835207,-0.022832096739305887,0.06194712984832225,0.16730102455889978,0.13706591967999726,-0.10376575681343025,-0.024024662601306836,0.07342077386262287,0.09440674560148689,-0.06532616753150482,0.06356691627923482,-0.17234033770156976,-0.021958466753783018,-0.1080870836947936,0.07704243044608942,0.05031198750808265,0.03758429067917193,-0.06516798078828802,-0.03297972263660974,-0.08986581920903945,-0.05218788292219991,0.018779342723004706,-0.04932569116655429,-0.07883542979836626,-0.033785007198224484,-0.03432297396706149,-0.08369333665813014,-0.02823101580957143,-0.09923560043706157,-0.0508383436124364,0.1316522566743128,-0.07922134135228724,-0.09586319138270288,0.13062244434348022,0.04411828682052507,0.05712086336465298,0.13264779093483528,0.11834941299870441,-0.056192666294085904,-0.12040844883341952,-0.0796745429838787,0.10732772560229266,0.1750408982480416,0.22195867108818473,0.15629577646559714,-0.03444580526638088,0.2928039520361195,-0.004491210246297755,0.18480249074369737,0.08239529377015378,0.23963234200619282,0.05991313509686677,0.12609141938788873,0.13134042748632424,12.419504577298506,22.682916734125325,8.732356484065601,19.18491444093995,36.00909494133358,46.859732616998244,48.74078108357078,48.855981083570775,48.855981083570775,49.88499609631448,38.29883026620219,6.050233937572296,3.524245671335476,0.0,11.586165830112298,5065.961748653011,4133.333492776827,1396.1272954026063,142.0,38.0,51.0,69.0,86.0,87.0,105.0,123.0,139.0,333.0571975920003,27.0,4.875197323201151,5.733341276897746,6.618738983517219,7.493873886783559,8.38320455141292,9.265301930050157,10.155762630356586,11.041496820872947,11.932510417239074,0.8190476190476191,1.0040000000000002,1.0998607826992681,0.7929992744745887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7732886740804108,0.993613445378151,1.0174487566330248,0.7391599023000204,9.0,2.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.146391442523793,24.87382001404439,0.0,0.0,0.0,6.06636706846161,64.86009487362404,23.976754929304025,10.42183723150631,262.5484745103696,-439.8738970816453,-43.66974717823725,-12.567825630904151,-27.49211856760283,278.831515163115,467.1545147337545,23.656408781993278,13.347271849535844,24.587079722829184,0.5,0.6849986016085566,0.16846548204928852,48.000296679758314,0.17334667422858982,57.10063207123172,0.3150013983914433,6.0,0.07407407407407407,0.33230832269681526,0.6275125995339513,0.857114619447025,0.9777189689264242,0.9999999999999998,0.9999999999999998,3.620700000000002,,1.5535714285714288,1.1038416648231353,0.9351166328597537,1.5513903960768884,-3.2949960521892754,1.012622399020808,0.9891346839337528,-1.5983839656748697,94.08070000000001,9.589074368143644,0.0,15.284745645900749,0.0,0.0,0.0,65.45732113119593,0.0,11.126902983393991,4.007333185232471,0.0,5.332718793265369,2.3978952727983707,6.855408798609928,4.727387818712341,8.46779284112111,6.762729506931879,10.128828687393826,28.666666666666668,16.876856760112982,8.440537937682633,0.0,0.0,0.0,1.8461544417149578,2.935902147896196,0.0,35.14000000000001,0.0,22.980577985819203,0.0,0.0,0.0,1.7159413580246912,0.0,-0.3004419599693773,38.49512739447439,5.316788604006331,4.794537184071822,0.0,21.11434848441821,4.794537184071822,0.0,5.563451491696996,59.89386963949893,0.0,28.10584802230893,0.0,27.754974606610606,27.065103592814378,31.83804660661222,232.63387086907554,,160.017135873138,170.93801078121987,171.9990921645317,160.01909556845595,179.0172142604128,170.79895113804076,170.11250485965465,178.21805704666843,31.83804660661222,232.63387086907562,,158.82776057088265,170.0809548392761,171.29775468988686,158.83116320624285,181.40456245001673,169.99609779763335,169.30839860012563,179.41684502092454,4.883213395653698,172.47909662291931,,119.39653225904323,127.99349352756221,128.87363214349233,119.39487242455624,130.04108656580718,127.74181446307173,127.10589867292524,130.42977902251707,1.3265852752755092,9.693077952878147,,6.66738066138075,7.122417115884161,7.166628840188821,6.667462315352331,7.459050594183867,7.116622964085032,7.088021035818944,7.425752376944518,2.4450794544492704,116.31693543453771,,79.95950196406764,85.5149987933109,86.01198110974997,79.95978822122753,89.05478319891373,85.4416681689796,85.09746637499124,88.90923052762487,34.776470588235284,0.0,0.0,0.0,0.0,0.0,0.0,35.61070648215587,0.0,2.259027301896169,0.0,0.9121106934892103,0.0,0.0,0.0,0.0,0.0,25.870596580500713,370.8445358651918,59.65762025993847,112.65414018979695,153.87342113867058,175.52490559307378,179.52490559307378,179.52490559307378,891.0,126.49942782033136,170.5354538082928,72.68009490406529,97.25,71.95,1.0,9.3711225304881,5.754887502163468,4.343172956670566,4.828923054980291,,4.83446579883301,4.829061030867446,4.827659211830175,4.834457742364899,4.813726099197512,4.82921723096287,4.829821385948495,4.81899868969835,0.1809655398612736,0.20120512729084547,,0.20143607495137542,0.20121087628614356,0.20115246715959065,0.2014357392652041,0.20057192079989636,0.20121738462345293,0.20124255774785396,0.20079161207076457,2.3440739143527565,2.4500922101735023,,2.451239373874439,2.45012078257245,2.4498304523129235,2.4512377074080374,2.4469401783776776,2.4501531279017525,2.450278224199712,2.448034903108832,231.76999999999992,177.7022928650772,141.38198694740646,,140.57006022450557,141.02054647201012,141.13520800409708,140.57111877478894,142.82651340859658,141.03915920341598,141.0149239764659,142.25137086164443,7.40426220271155,5.890916122808602,,5.857085842687732,5.875856103000422,5.880633666837379,5.857129948949539,5.951104725358191,5.876631633475665,5.875621832352746,5.927140452568518,6.055578375442389,5.826934091947638,,5.821174751128198,5.824374336775636,5.825187090274935,5.821182281510528,5.837099438152618,5.824506314020584,5.82433446593573,5.833064447302618,0.0,31.818061680199577,2.896955133777825,3.802629151969431,-0.35588811090705064,11.606771130488212,6.986026987649463,0.0,0.0,277.8370689315013,142.138490419213,-238.13892585969654,-23.64192727639777,-6.803969310277044,-14.883682866231034,150.95380279964928,252.90810636248176,12.80710634210725,7.2259458960709075,13.310952966446406,1351.0,37.0,1.5006670671981692,0.7412533995370874,0.0,0.0,0.3094894492412678,0.09960788618641758,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.07654655446197432,0.49863630757777255,0.17422953460288954,0.6015345933794041,0.15087066831007612,16.518297090128677,13.209171335215492,11.703509938206668,8.062606173533565,10.645502602223075,6.237961017581025,8.994440930442172,4.507346695944468,7.862518405089516,3.2914416143046537,6.400334581434788,2.103198018555023,4.028160192008177,1.139483515272618,3.1568126905990277,0.7530810297321735,3.468591589808344,1.4522032584664906,5.800386475759297,2.0141878216794393,8.745282445376269,2.383256732120463,71.55833653336703,51.075273659079045,29.756215225313408,25.564394599494687,25.206762254700973,25.206762254700973,130.0,154.0,45.198723,18.081276999999996,0.6285714285714286,177.06,6.388888888888889,5.1944444444444455,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,16.0,17.0,35.0,0.0,0.0,38.0,17.0,3.0,11.0,27.0,20.0,27.0,18.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,5.0,1.0,3.0,24.0,6.0,0.0,3.0,2.0,0.0,4.0,2.0,1.0,0.0,0.0,2.0,3.0,3.676300671907076,8.277863191153862,4.30406509320417,4.925440448033024,5.564041365397364,6.1829884240417305,6.525304546744263,7.064304864846362,7.563379055144997,8.01266540292184 +23651142,Cc1[nH]c(CO)c(-c2ccc(Oc3ccc(OC(F)(F)F)cc3)cc2)c(=O)c1Cl,0,35.72727272727273,7.146904545454543,3.7954545454545454,12.127384960718295,166.85269126183263,146.820725123848,1.634389922107613,7.1984727272727245,8.849394363733355,8.528895568181817,251.83123768157265,30.717391304347824,6.747369565217392,4.391304347826087,10.28502415458937,147.05359097041625,120.18426068490442,1.888578832956522,6.899445652173915,3.8914497226695297,8.125829086956518,292.3750239537825,30.546666666666667,7.117866666666665,3.933333333333333,10.602962962962962,157.03016647642517,120.50559594452956,1.6728106670852796,7.198170666666668,6.774622770919065,8.45243061333333,256.7649473659428,26.747252747252748,6.621957142857142,3.6043956043956045,7.02930402930403,154.91473838870982,102.69665192863292,1.5978243684076257,6.755542857142855,3.730113507891284,8.123778109890107,238.0454522538471,23.26,6.546129999999997,3.18,6.042222222222222,156.66938179452455,87.23842701011199,1.4822349015564094,6.676311000000001,4.067572016460906,8.081608519999998,216.6385652570068,22.362745098039216,6.742676470588235,2.8333333333333335,5.423747276688452,161.01559306873867,83.32331953494901,1.3967511757671078,6.8270509803921575,4.915153715807311,8.233075588235296,204.19566539750383,18.46,6.41552,2.48,4.125555555555556,165.17791575428544,66.357576220592,1.2474181298158402,6.521808999999998,3.589367283950617,8.04026386,171.57485259089285,18.35135135135135,6.302810810810808,2.7027027027027026,5.717717717717718,163.19690341179864,67.50490642419459,1.2245047264071756,6.388308108108108,3.770673451229006,7.903505000000002,166.47133569416584,21.666666666666668,6.475185185185186,3.185185185185185,6.6419753086419755,160.943302231097,82.41110271306663,1.3065861747812595,6.557240740740739,3.609853680841337,8.021031592592594,194.19183422491784,11.179752066115702,0.2920285123966941,0.031039034601291673,0.7329545454545454,5.203576165697377,2.8817705729118335,53.17630392840709,0.2611843987599766,0.26003780991735526,3.8281609340301004,0.18664493543388427,45.500327663382535,-0.09674811354653186,-0.02026823571685231,-0.01898281664625326,0.11141304347826086,1.0904510631124602,-0.06742180514877613,-0.38490557569229045,0.0016048871732174965,-0.016864983830398868,-0.48146243400027977,-0.014857338101868475,1.493592749651411,1.5190358126721757,0.1438554269972451,0.002941840008137065,0.019166666666666665,1.1931391354623684,1.1254832851091015,7.561625565408235,0.031079383864435133,0.11937861432506892,1.7089797053310467,0.0844671491115702,0.9573703124239697,0.38818000181636575,-0.015434556352738127,-0.00025282010445003186,-0.12156593406593406,-0.507864469985682,0.0467284960834796,1.810391832956778,-7.580718616653038e-05,-0.00937362410316954,-0.05715875234119018,-0.005888495124193961,-0.036721369610432146,-1.6883884297520666,-0.013510330578512354,-0.0013286679469841367,-0.1975,-0.49752117130905005,-0.3573723505434909,-7.754046089491464,-0.042159358378401963,-0.015884309917355358,0.08655519156051093,-0.01701176543388427,-5.462740819549008,-1.6637092853670397,-0.0418913466212931,0.004328452516486533,-0.04044117647058824,-1.3077552110528938,-0.2534682329587445,-8.125357650824307,-0.020249771572029996,-0.040507640576891886,-0.49774452028602667,-0.022320241806433303,-9.109087620466735,-1.781570247933885,-0.03834578512396686,-0.007354023846650992,0.1,-0.0401586572798696,0.0013888855394617006,-8.54187478094181,-0.012216160693783373,-0.036837900826446245,-0.5917318216615588,-0.024823315206611535,-2.6468672422895514,1.5217221353584984,0.11312664730846558,0.006783312303939209,0.13682432432432431,2.290114494659949,0.21594845249907707,7.3665251571728305,0.004106809660693977,0.0961315389769935,0.8340188026416633,0.06513418618773736,4.020492764856849,2.8160391796755424,0.02097030915212738,0.00010610753799644545,0.02546296296296296,1.004783147600207,-0.13463766670021518,13.462273104982652,0.023539920770588054,0.02912978267523723,0.18603748528472666,0.01622528300045917,10.284580855000284,,,0.4587848932676519,1.3103448275862069,0.6724137931034483,0.06896551724137931,0.6379310344827587,0.034482758620689655,0.7751951886461543,0.025495167236677524,0.03439171896081546,1.1175930895801773,0.2731804976228708,0.19836618211883433,1.8927882782263317,0.4715466797417051,2.0100150928866634,1.4449309761542235,0.06928958757784182,0.2610519059759615,0.23474262317863592,0.5650841167324392,9.660549325000009,1572.0,314.4637999999999,167.0,533.604938271605,7341.518415520635,6460.111905449312,71.91315657273498,316.7327999999999,389.37335200426764,375.27140499999996,11080.574457989196,1413.0,310.379,202.0,473.1111111111111,6764.465184639147,5528.475991505603,86.87462631600002,317.37450000000007,179.00668724279836,373.78813799999983,13449.251101873995,2291.0,533.8399999999999,295.0,795.2222222222222,11777.262485731888,9037.919695839717,125.46080003139596,539.8628000000001,508.09670781892993,633.9322959999997,19257.37105244571,2434.0,602.5980999999999,328.0,639.6666666666667,14097.241193372594,9345.395325505595,145.40201752509392,614.7543999999998,339.44032921810685,739.2638079999998,21662.136155100085,2326.0,654.6129999999997,318.0,604.2222222222222,15666.938179452454,8723.8427010112,148.22349015564095,667.6311000000001,406.75720164609055,808.1608519999997,21663.85652570068,2281.0,687.753,289.0,553.2222222222222,16423.590493011343,8498.9785925648,142.468619928245,696.3592000000001,501.3456790123457,839.7737100000002,20827.95787054539,1846.0,641.552,248.0,412.55555555555554,16517.791575428542,6635.757622059199,124.74181298158402,652.1808999999998,358.9367283950617,804.026386,17157.485259089284,1358.0,466.4079999999998,200.0,423.1111111111111,12076.5708524731,4995.363075390399,90.613349754131,472.73479999999995,279.02983539094646,584.8593700000001,12318.878841368272,1170.0,349.66,172.0,358.6666666666667,8690.938320479238,4450.199546505598,70.55565343818802,354.0909999999999,194.9320987654322,433.13570600000014,10486.359048145563,491.9090909090909,12.849254545454539,1.3657175224568336,32.25,228.95735129068458,126.79790520812068,2339.757372849912,11.492113545438972,11.441663636363632,168.43908109732442,8.212377159090908,2002.0144171888314,-4.450413223140465,-0.9323388429752062,-0.87320956572765,5.125,50.160748903173165,-3.101403036843702,-17.70565648184536,0.07382480996800483,-0.7757892561983479,-22.14727196401287,-0.6834375526859499,68.7052664839649,113.92768595041318,10.789157024793383,0.22063800061027988,1.4375,89.48543515967762,84.41124638318261,567.1219174056176,2.330953789832635,8.95339607438017,128.1734778998285,6.335036183367765,71.80277343179773,35.324380165289284,-1.4045446280991696,-0.0230066295049529,-11.0625,-46.21566676869706,4.252293143596644,164.7456567990668,-0.0068984539411542645,-0.8529997933884281,-5.201446463048306,-0.5358530563016505,-3.3416446345493256,-168.83884297520666,-1.3510330578512353,-0.13286679469841367,-19.75,-49.752117130905006,-35.73723505434909,-775.4046089491463,-4.215935837840196,-1.588430991735536,8.655519156051094,-1.701176543388427,-546.2740819549008,-169.69834710743805,-4.272917355371897,0.4415021566816264,-4.125,-133.39103152739517,-25.853759761791938,-828.7864803840794,-2.0654767003470598,-4.131779338842972,-50.76994106917472,-2.276664664256197,-929.126937287607,-178.1570247933885,-3.834578512396686,-0.7354023846650992,10.0,-4.01586572798696,0.13888855394617006,-854.1874780941811,-1.2216160693783373,-3.6837900826446246,-59.17318216615588,-2.4823315206611536,-264.68672422895514,112.60743801652889,8.371371900826453,0.5019651104915015,10.125,169.46847260483622,15.980185484931702,545.1228616307894,0.3039039148913543,7.1137338842975195,61.717391395483084,4.819929777892565,297.51646459940685,152.0661157024793,1.1323966942148784,0.005729807051808054,1.375,54.25828997041117,-7.270434001811619,726.9627476690632,1.2711557216117548,1.5730082644628105,10.04602420537524,0.8761652820247952,555.3673661700153,0.7303942688601794,0.5436432496431195,0.4411243133067565,0.28119450683513836,0.29655425318501294,0.14285299841310242,0.18267384908489484,0.08081910807101371,0.11574603725162796,0.04030313900934101,0.07583065424348094,0.022076095142675663,0.047884103223986466,0.011354205702884555,0.03167175969312601,0.005644285301574362,17.001103636861117,5.682197968490083,4.1247261516744125,2.1787195950761635,0.6306426375000531,-0.4947506489279157,4.017074388804211,0.9775993005996959,7.014138960005101,0.7740036990045905,17.430703716147622,10.943616915893639,35.45051765930356,11.694729650420536,2.208085772611681,0.5263223797521936,4.0074093168560045,2.2282568147381134,8.007393379578184,1.2401427866691088,4.031157087605667,2.4241572059633327,22.455866431362267,13.302784668500735,0.3239965359281277,0.6568743184252427,0.7594762650394029,0.8538233689185359,0.8990697830001474,0.8990697830001474,1.4371688175874704,1061.3149129681303,0.0,0.0,2.0,0.0,15.0,0.0,2.0,0.0,0.0,3.5862910985008747,1.6618048972446302,1.068626136560316,0.5231715911057702,0.26158579555288686,0.26158579555288686,-80.41899243386428,1645.7571066219652,77.56573747492364,37.40357060504466,77.55061318781567,,16.0,765.0,11.791149250930925,23.072309721936985,22.942478603235145,28.450331147961727,12.13273413692322,12.13273413692322,31.18920547353706,0.0,9.720841474747257,16.337802844032566,13.304761904761905,38.0,19.5,2.0,18.5,0.0,0.041215106732348086,1.0,0.2942236478381059,0.11572871572871646,-0.17849493210938944,0.04248106361565751,0.23532945005996203,0.0,0.7339826839826838,0.9584564860426925,0.43975903614457795,0.6182539682539674,0.915975422427035,22.480660470738474,0.7393598498636482,0.9973598498636482,32.41019959782514,7.922234431063252,5.752619281446195,54.89086006856362,13.674853712509448,0.47867054994003794,0.205798138869005,0.03758052970651396,0.3382247673586256,0.15,0.563788768909131,-1.4719658960498343,-0.08956777747760981,-0.03345377036476896,-0.07747188926578075,0.4362112310908687,1.138880536556344,0.03348332657901653,0.02588364855809873,0.045555221462253756,-6.854619922209888,0.5548922083035362,0.6567719866494462,1.757961928445977,1.0,0.4315146153375634,0.897860779171928,0.5527002319973795,0.9124946592031828,0.6362501130930236,0.6709490319539682,0.7054790071799324,0.8239054129542034,0.5728565268280663,0.3823351242637824,0.758118045953358,0.9866666666666667,0.61196007209115,0.6180321726221781,0.5684773449243854,0.8224606840644334,0.39394649909196827,0.372889775790735,0.4352823643407018,0.8580093770517481,0.8006594218939441,0.6561249917762288,1.0331465265991546,1.1501831501831503,0.8730863525717473,0.6669785298287783,0.7914105682857898,0.9210852249347875,0.654927380262539,0.49648754244676613,0.6902373744582301,0.9410375288641628,1.1438190722602108,0.731828836197077,0.9973084418974433,1.2666666666666666,0.9279449365444289,0.8569022677465584,1.129059478686744,1.1398203399702656,0.7707587620363539,0.633377601988532,0.8262865889553432,1.1192718314734607,0.9941259815698595,1.045293301519479,0.6406922695451308,0.9019607843137255,1.1548071996186873,1.0150453661312964,1.000142195624754,1.0270220920313478,1.05294852444781,1.1908592097284183,1.0219637299349646,1.1661480063105572,1.366289040842728,0.9554752734152246,0.8952559319065514,0.6466666666666666,0.9532410380341276,0.7668483953018863,1.3598718719727056,1.0609992087102786,1.004159566750862,0.9967162932902812,0.9784926080878558,1.1530684087889436,0.9958168295813833,0.30241711265919957,0.6048492028235044,0.6666666666666666,0.5230672557646445,0.5127589146251937,0.9855637117027801,0.9701991972144844,0.3685798696693886,0.30692984966759507,0.3700434864114398,1.0567904966599853,0.6029983504110283,0.689558232963298,1.0490096095561983,0.9629629629629629,0.7830052394441785,0.7200433036697323,0.601036993432505,0.8363923443428146,0.6662826884002208,0.5023352697282901,0.6905269159423231,0.8303710647247293,8.0,0.17753290480563208,3.333333333333335,2.5625,2.2800000000000007,0.8611111111111113,0.8057142857142858,0.3541666666666667,0.32476694381456284,0.2568750000000001,6457.1145182351265,6922.619068715107,2854.7030904220746,2693.331643331728,16.471975298987697,0.48547393987855014,8.475260553005981,0.943536153958767,1.0,0.15,1.8731405201364226,3.797626721392667,4.390805482076981,4.936260027531527,5.1978458230844105,5.1978458230844105,0.2580645161290322,0.007101316192225284,0.07407407407407411,0.055706521739130425,0.051818181818181826,0.021527777777777778,0.0277832512315271,0.01539855072463768,0.014762133809752854,0.009879807692307693,0.536116131188647,23.658688865764827,10.08,6.2571900826446285,167.8427846026753,0.0,4.28762427653721,185.87348535129357,,132.5154584545473,131.21952271681087,136.64107343983088,132.27612701777943,218.73033795749728,132.7338878131509,133.65449674013198,173.39069927063065,-0.008653869332197637,-0.06940498908996859,-0.6115788358141557,0.15200539265251095,0.2095580094129975,-0.02339596558536961,-0.007238291254888658,0.0061446517511651085,-0.06485589090201485,-0.12576859810682506,-0.07960214975740089,0.03282597788528488,0.13587383724511792,0.49260747115620906,0.09477872124330318,0.02614987080103359,0.22929214399275835,0.3905527024560727,0.14219915651882625,0.11899402878575639,0.4590817556993331,0.44642316109002145,0.4525552697972414,0.021040954243378696,0.03472170040272057,-0.052852908868609695,-0.008145230922855793,-0.16585739841553793,-0.09759912295193986,0.016215203431778964,0.034045085859938005,-0.0002902439292945507,-0.03604715831958686,-0.014931125761480524,-0.03154918246511896,-0.0008070572564246507,-0.1510219922380337,-0.04626373797418727,-0.04280635541831075,-0.2694573643410853,-0.09561139406179382,-0.12401138171884045,-0.1458176954143142,-0.16141606688057042,-0.061084616588655626,0.022610123516774376,-0.09114506854599543,-0.12005937319755344,-0.14881450639764318,-0.14344950867122022,0.13945190538582045,-0.05517555859553124,-0.25131854889984684,-0.08795572948842768,-0.15280034621743793,-0.07753055568467986,-0.15577596423291654,-0.13002183786511443,-0.1195866459196792,-0.2001982862158043,-0.15935686564405846,-0.13130836030105722,-0.23692824023415204,0.13643410852713178,-0.007717511188670683,0.00048195562565493406,-0.16063310440759482,-0.046772168444141206,-0.14166363283152553,-0.15457339225250713,-0.13299752896539088,-0.05817248750100058,0.1361141218838502,0.38738219901895526,0.21854134289527566,0.18667504714016342,0.4401039634543392,0.07493603221885765,0.1385302214138578,0.015723793917982273,0.3696829280616763,0.217864091143015,0.3489737668816094,0.08836184202014959,0.2518874446429426,0.07180911541829563,0.0034185192728909755,0.03474016652311226,0.19309473246953945,-0.04672046691217786,0.2531630089053825,0.09012759139653201,0.11202133522234788,0.048597091002878894,0.08693127923745188,0.22603311631263362,9.556729771322704,20.333931776381707,9.751915985395279,22.93091553122796,41.021012835153535,46.931663680780034,49.85957400743025,50.62338885298391,50.62338885298391,58.29043769371324,41.90299830847248,2.0093980397574125,7.570505273302883,6.807536072180442,16.387439385240736,11515.854965467577,11234.214939622489,1187.9291992977069,114.0,45.0,55.0,71.0,88.0,88.0,98.0,103.0,108.0,425.0641703000004,31.0,5.030437921392435,5.8664680569332965,6.760414691083428,7.614312146452,8.507748732588238,9.369990189505721,10.262245325878965,11.130155854594246,12.021566704705618,0.8257575757575757,1.0472727272727276,1.137191111087788,0.8056785249884577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.701699714207948,1.032976827094474,1.051819174998345,0.6979860990322521,8.0,0.0,1.0,0.0,0.0,0.0,8.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,3.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,19.564231823388013,22.271168813593043,0.0,5.428790391900541,0.0,4.794537184071822,0.0,0.0,13.171245143024459,23.733674027155736,48.88539110215728,5.693927994848461,17.864261451058375,355.38642237937023,-927.8593730658515,-56.45939357718864,-21.0877130242239,-48.83470384557113,274.96742994550596,717.8977335561136,21.106343897734995,16.315857580820765,28.71590934224454,0.5,0.8196631069599364,0.1751842097791218,81.95592093074012,0.21931444345201773,1.9388654761535922,0.18033689304006334,8.0,0.16129032258064516,0.34310174592936254,0.6956084418070932,0.8042605510595165,0.9041710515578623,0.9520855257789308,0.9520855257789308,5.186920000000003,,2.789915966386555,2.615864376468802,2.1105568221159166,2.904114180907232,-10.608027925000648,2.4669953533762734,2.2845263666497084,-3.471992906640044,101.36750000000004,27.751498445465266,0.0,4.9839785209472085,0.0,19.892978023233926,0.0,75.16475342710349,0.0,28.375438483245706,4.143134726391533,0.0,5.493061443340548,0.0,7.025538314638521,0.0,8.641002477142523,0.0,10.301693039915031,36.33333333333333,11.356234829484286,0.0,2.903866944853944,0.0,0.0,0.0,1.9711494640928777,0.0,46.08000000000001,0.0,12.490399414112126,0.0,0.0,0.0,0.0,0.0,0.0,50.03640888786267,14.90251629950064,13.171245143024459,17.248535499851716,16.4528647748183,6.606881964512918,6.923737199690624,11.387855989696922,53.3254737317647,5.022633313741326,11.126902983393991,0.0,35.44985509949214,30.87478742514971,36.17293775320758,371.74697070258713,,264.8385089114129,262.25864099386524,273.1365912367572,264.3519702989446,441.73353476121997,265.2976380157241,267.1514399377364,347.97863747458535,36.17293775320758,371.7469707025872,,262.29507087597534,259.9016268237445,271.27736796002887,261.70266944885975,448.06870383999495,263.06401276450356,265.0760361175561,350.25339144790127,4.898206950966313,290.2909909295823,,207.42939922895357,204.99187350104123,213.8270959610697,207.17787329036315,341.15797464184783,207.3654320593635,208.65765499280536,270.0103733285558,1.247342681145089,12.818861058709901,,9.132362376255616,9.04340141358156,9.418503146095077,9.115585182722228,15.23219085383517,9.148194414335313,9.212118618542636,11.999263361192599,2.449103475483156,185.87348535129357,,132.5154584545473,131.21952271681087,136.64107343983088,132.27612701777943,218.73033795749728,132.7338878131509,133.65449674013198,173.39069927063065,45.45098039215685,0.0,1.633568529873827,6.022406699417159,36.58231987686888,0.0,9.543451660723036,46.28004369992718,-0.36787792485775084,0.0,9.38910677739801,0.0,0.0,0.0,-4.761560030165424,0.0,0.0,30.71138835741909,516.6777970807731,82.4181828860026,167.09557574127734,193.19544121138716,217.1954412113872,228.70521621571407,228.70521621571407,830.0,136.56333962313394,113.67605524410311,64.60443000142816,71.55000000000001,71.55000000000001,1.0,8.856950205814506,5.954196310386875,4.10539802177211,5.302304942165956,,5.301409359530961,5.3017858744242305,5.300028590320381,5.302148038676717,5.245217321205521,5.301020264054045,5.299893657639725,5.27531579721638,0.1415654490266245,0.18283810145399848,,0.18280721929417107,0.18282020256635279,0.18275960656277176,0.1828326909888523,0.18086956280019037,0.18279380220876015,0.18275495371171466,0.18190744128332345,2.4770134354332916,2.732852357759486,,2.7326834390935084,2.7327544582316308,2.732422951936027,2.73282276575893,2.7220274119585928,2.732610041675953,2.7323974927529298,2.7277492813334927,272.36000000000035,644.0988954309162,179.52275285541515,,179.39265981711094,179.58578000988686,179.737391602091,179.29550046001174,184.5946707512554,179.64028188698518,179.763682842267,182.15856718064498,22.210306738997108,6.1904397536350055,,6.1859537867969285,6.192613103789202,6.197841089727276,6.182603464138336,6.36533347418122,6.194492478861558,6.198747684216103,6.281329902780861,7.532563015640708,6.255012693742471,,6.254287770602321,6.255363713834453,6.256207587055994,6.253746022252443,6.28287318947466,6.255667154387895,6.256353852211188,6.269588292998076,45.97142665426689,15.39426635896607,9.583907242957153,1.1767197951784043,0.3520189559904894,11.356234829484286,-4.761560030165424,1.265690605016076,0.0,340.55006934699804,224.01920041079168,-584.8797302278042,-35.58939624130724,-13.292721141541003,-30.783143696200217,173.32677873002024,452.5296019223939,13.3044651844309,10.284763680054407,18.101184076895752,2600.0,46.0,3.238079491775326,0.870592778785799,0.3535533905932738,0.011021667854435136,0.42245501562013493,0.15548839612953103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21202758782931808,0.07118055555555555,0.4192361362159855,0.10649158742772266,21.181433796945203,15.765654239650466,13.674853712509451,8.717029711889289,13.344941393325582,6.428384928589609,10.047061699669216,4.445050943905754,8.217968644865586,2.8615228696632116,6.673097573426323,1.9426963725554582,4.213801083710809,0.9991701018538409,3.1038324499263488,0.5531399595542874,4.854932409920458,1.6800371663940985,7.85020571363086,2.0630526465075913,11.75711080342026,2.681623789779348,90.15899526739534,54.495431461286564,39.98042510647445,33.19298322699667,31.40895973076226,31.40895973076226,152.0,176.0,51.56089499999998,23.807104999999993,0.4318181818181818,149.09,11.0625,6.2638888888888875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,18.0,44.0,0.0,0.0,46.0,18.0,1.0,9.0,37.0,19.0,31.0,27.0,0.0,0.0,0.0,20.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,4.0,2.0,1.0,29.0,9.0,0.0,1.0,4.0,0.0,3.0,5.0,0.0,0.0,4.0,1.0,3.0,3.7376696182833684,7.673237655899799,4.388257184424518,4.939855112035208,5.525950823135099,6.06943780725903,6.293419278846481,6.642649760709261,6.995737538679252,7.3179384063796755 +4828,CC(C)NCC(O)COc1cccc2[nH]ccc12,0,19.736842105263158,5.990784210526317,2.8421052631578947,5.631578947368421,164.91728218342053,77.4828177368421,1.3590333183415793,6.052247368421053,3.29312865497076,7.553768631578945,196.58740561792894,22.256410256410255,6.324564102564103,3.4358974358974357,5.435897435897436,149.22424133007817,82.84100838461535,1.6862765604102565,6.453025641025641,2.92022792022792,7.761521743589742,243.1000336018762,18.0,6.178470588235294,3.1323529411764706,4.117647058823529,156.42172777329174,65.32250407352939,1.4123181923057644,6.2744558823529415,2.6964869281045756,7.690166058823529,197.41392980827814,14.011363636363637,6.1122272727272735,2.5,3.090909090909091,163.7214767343555,48.528707568181815,1.172833149241841,6.170655681818183,2.763257575757576,7.689180181818182,156.205803206694,12.01123595505618,5.879112359550562,2.258426966292135,2.460674157303371,165.2303054335418,41.284081247191004,1.0784461232204605,5.93500224719101,2.3171036204744073,7.507400584269662,139.00289051291077,11.883116883116884,5.825766233766233,2.324675324675325,1.9090909090909092,162.07762899079515,40.41966903896103,1.10917608268413,5.896422077922079,2.389249639249639,7.453224207792207,142.00656407951587,11.756756756756756,5.97977027027027,2.135135135135135,2.054054054054054,163.83315533697407,39.109309702702696,1.0584140364227297,6.036364864864866,2.7169669669669667,7.604706810810811,136.2013592255348,10.661971830985916,5.8649718309859145,2.056338028169014,1.9577464788732395,169.98181673838198,36.10869832394364,0.9498378115298733,5.899923943661971,2.4620500782472607,7.527635774647889,120.72571220365296,11.83673469387755,5.903977551020408,2.3877551020408165,1.7142857142857142,163.97195331088452,39.30422028571429,1.1736433676834694,5.971777551020409,2.370181405895692,7.4895786122449,147.98227351430236,7.301939058171745,0.11143545706371191,0.021299680290551924,0.5124653739612188,3.3019390581717447,1.4022678140509963,34.777968515235465,0.22201181251083102,0.10635013850415509,0.8688250230840258,0.06634453185595567,49.899305307169094,0.15150223737481391,-0.008056644648057441,-0.008637399135286657,0.16904609702393622,0.9166844236096321,-0.10367211798924615,0.7585238167483379,-0.0011674834618295759,-0.0057626891114425935,-0.15160729928735475,-0.006225168833013685,1.0544688795561286,-0.005499429688772641,-0.008812237249470459,-0.002809602231024401,-0.014787355385367488,0.11756558579110303,-0.16810599235202203,-0.010505637526484883,-0.011572579966420757,-0.006535510021183001,-0.038738163778900304,-0.006789516376079499,-0.8677696688590433,-0.6021782926215059,-0.00012534940820954,0.0017876575050439283,0.02521405187610173,0.07844371694787203,0.0811544985036188,-2.889423226957947,-0.004001560332411167,-0.0018455332409972288,0.01814500615574022,0.0028625829765802214,-2.7265281905017247,0.5147374645958479,0.00829535310778424,0.0009870263111333602,-0.008030128544305758,0.2628155249151856,0.15208768024264527,2.450405509010551,0.01651033498585671,0.007706810046998034,0.014955120157974268,0.004302945376451181,3.665273225840147,-0.045616433428067926,-0.003214951253732413,-0.002299966888661243,-0.06338813541029607,-0.30057200417311225,-0.15980652429252715,-0.2431707476346361,-0.018314459518389465,-0.0020734467748318173,0.03465526855416053,-0.003402779292729434,-2.33626763637583,-1.0167327992812758,-0.017176495470539805,-0.0002802388398752828,0.03020887923935017,-0.23650520326420607,-0.2692211089897608,-4.836602479673578,-0.03482617021467313,-0.016087549599460953,-0.15048497250713325,-0.010853157745002607,-7.496975183590412,0.9456517498341851,5.646287698489832e-05,0.0018816331752937786,0.0005071983145409989,-0.012094729039054274,0.08460014411631986,4.61570841804846,0.03949515498061371,0.001620209902071703,0.047172423584288116,-0.002226574850766647,8.553135054480201,-1.4920572106959125,-0.015245231499802132,-0.0014180558738967155,-0.1107467917915089,-1.002261292328566,0.0757834441758665,-7.060078738651138,-0.012782569020702133,-0.017152179320481634,-0.15195845189414645,-0.006727492113742999,-6.670484655928541,,,0.4703703703703704,1.0972222222222223,0.4722222222222222,0.027777777777777776,0.625,-0.1527777777777778,0.794299505314294,0.01386165357925822,0.023417209134813776,0.6758434114676868,0.2189027233354604,0.2624697098837867,1.4701429167819808,0.4813724332192471,2.0065284677864463,1.5748783008207772,0.22072685252422064,0.21092331444144877,0.0,0.43165016696566944,6.530328365263157,750.0,227.64980000000003,108.0,214.0,6266.85672296998,2944.347074,51.643266096980014,229.98540000000003,125.13888888888889,287.04320799999994,7470.3214134813,868.0,246.65800000000002,134.0,212.0,5819.745411873048,3230.799326999999,65.764785856,251.668,113.88888888888889,302.69934799999993,9480.901310473171,1224.0,420.136,213.0,280.0,10636.677488583839,4441.930276999999,96.03763707679198,426.663,183.36111111111114,522.931292,13424.147226962914,1233.0,537.8760000000001,220.0,272.0,14407.489952623282,4270.526266,103.209317133282,543.0177000000001,243.16666666666669,676.647856,13746.110682189072,1069.0,523.241,201.0,219.0,14705.49718358522,3674.2832309999994,95.981704966621,528.2151999999999,206.22222222222226,668.1586519999998,12371.25725564906,915.0,448.58399999999995,179.0,147.0,12479.977432291227,3112.3145159999995,85.40655836667801,454.02450000000005,183.9722222222222,573.8982639999999,10934.505434122722,870.0,442.503,158.0,152.0,12123.653494936081,2894.0889179999995,78.322638695282,446.6910000000001,201.05555555555554,562.748304,10078.900582689574,757.0,416.4129999999999,146.0,139.0,12068.70898842512,2563.7175809999985,67.438484618621,418.89459999999997,174.80555555555551,534.4621400000001,8571.52556645936,580.0,289.2949,117.0,84.0,8034.625712233341,1925.9067940000002,57.50852501649,292.61710000000005,116.1388888888889,366.9893520000001,7251.131402200816,277.4736842105263,4.234547368421053,0.8093878510409731,19.473684210526315,125.4736842105263,53.28617693393786,1321.5628035789478,8.436448875411578,4.041305263157893,33.01535087719298,2.5210922105263154,1896.1736016724255,5.908587257617743,-0.3142091412742402,-0.3368585662761796,6.592797783933513,35.75069252077565,-4.0432126015806,29.582428853185178,-0.045531855011353456,-0.22474487534626114,-5.912684672206836,-0.2427815844875337,41.124286302689015,-0.37396121883653954,-0.5992321329639911,-0.19105295170965927,-1.0055401662049892,7.994459833795006,-11.431207479937498,-0.7143833518009721,-0.7869354377166115,-0.44441468144044405,-2.6341951369652206,-0.4616871135734059,-59.008337482414944,-52.991689750692515,-0.011030747922439521,0.1573138604438657,2.2188365650969524,6.903047091412739,7.141595868318455,-254.26924397229934,-0.3521373092521827,-0.16240692520775613,1.5967605417051394,0.25190730193905947,-239.93448076415177,45.81163434903046,0.7382864265927973,0.08784534169086905,-0.7146814404432124,23.39058171745152,13.535803541595428,218.08609030193904,1.4694198137412473,0.685906094182825,1.33100569405971,0.38296213850415506,326.2093170997731,-3.51246537396123,-0.2475512465373958,-0.17709745042691574,-4.880886426592798,-23.144044321329645,-12.30510237052459,-18.72414756786698,-1.4102133829159889,-0.15965540166204994,2.668455678670361,-0.2620140055401664,-179.89260800093894,-75.23822714681441,-1.2710606648199456,-0.020737674150770928,2.2354570637119124,-17.50138504155125,-19.9223620652423,-357.9085834958448,-2.5771365958858117,-1.1904786703601105,-11.13588796552786,-0.8031336731301929,-554.7761635856905,67.14127423822714,0.004008864265927781,0.13359595544585828,0.03601108033241092,-0.8587257617728534,6.00661023225871,327.7152976814407,2.8041560036235738,0.11503490304709091,3.349242074484456,-0.15808681440443195,607.2725888680943,-73.1108033240997,-0.7470163434903044,-0.06948473782093906,-5.426592797783936,-49.110803324099734,3.7133887646174584,-345.9438581939058,-0.6263458820144046,-0.8404567867036,-7.4459641428131755,-0.329647113573407,-326.8537481404985,0.719878842100756,0.6006181851480166,0.45603704199718154,0.32995391328674856,0.3079816137951015,0.18891327728267263,0.19134243482167954,0.09159676004828456,0.12216318426473477,0.04862374677995755,0.08496379634386914,0.028329922749157133,0.05478843682351231,0.014140914623110179,0.03655610924919741,0.007806230560382904,8.010530863356985,5.678901267026494,3.521020451993865,2.177666985152282,0.3997306510372862,-0.5208962642358871,3.239281721966628,0.9886058859416592,6.007552245060149,0.9889418854581212,14.548033775286191,10.940089593581728,16.00455806347321,11.69077150341475,2.0053286189237327,0.7783653477537771,3.463710461434036,2.2273199437747544,6.0026006236610545,1.2491787111112156,3.677218167393332,2.4231918086145483,20.906073271296663,14.706304456849809,0.27003025402391506,0.6440024440127815,0.824020701006029,0.8628183500899672,0.8628183500899672,0.8628183500899672,1.6856592041889447,493.2545779023451,0.0,1.0,4.0,0.0,6.0,2.0,1.0,0.0,0.0,3.7826718633303607,1.753399749555018,0.7765730264296549,0.5660467106401805,0.5660467106401805,0.5660467106401805,258.179549856769,859.1671335452133,37.75549520613504,22.609661409084563,43.38165592882048,,10.0,308.0,6.103966387748303,5.106527394840706,0.0,19.193479199573453,16.652436765364964,0.0,0.0,44.30978624484076,10.30076712495354,4.736862953800049,8.466666666666667,19.75,8.5,0.5,11.25,0.0,0.029629629629629624,-2.75,0.11241565452091751,0.04363081617086184,-0.06878483835005567,0.07566137566137554,0.14703571428571394,0.0,0.5508771929824563,0.8296296296296293,0.4384615384615388,0.5072463768115945,0.7539682539682537,14.297391095657293,0.24950976442664796,0.42150976442664795,12.165181406418363,3.940249020038287,4.724454777908161,26.462572502075655,8.664703797946448,0.566964285714286,0.15748031496062992,0.0,0.2952755905511811,0.42857142857142855,0.22988622002564513,-0.41328104925042597,-0.026655276758048727,-0.010875817085537524,-0.041328104925042596,0.7701137799743548,1.3844824234984938,0.052346174213498,0.03643374798680247,0.04944580083923193,-3.4304246448631646,0.9607748725730517,1.0119320876961035,1.447388409873204,0.9500000000000001,0.6994009206676993,1.3730319622040303,0.9635503842740374,1.184299466294105,0.9822162986851832,1.0839730106418914,1.0408857774754658,1.079250911467411,0.9971533852539498,1.1286347600176283,1.2317260869143798,1.3691176470588236,1.0494349585471774,1.269654931873892,0.9970609293789812,1.1190682927010562,1.0950398826636645,0.9407759782757342,1.168023112480081,1.0440703110886715,1.108438448406677,1.2451997646042954,1.1770942393388515,0.9607954545454547,1.0857039353264186,0.960738912944402,1.1045930296941493,0.9740286583777845,1.2311593866589123,1.1802982498515544,1.2443811908878133,1.003044074301211,0.9229339653202845,1.013778674962708,1.085070441178301,0.9179775280898878,0.9674798280672651,0.8098718466345334,0.9205810127398156,0.8765479691797832,1.006791752674833,0.8396436536693795,1.0614369857956447,0.881995395470922,0.9767160002364859,1.011451269533286,1.038382784942892,1.1844155844155844,1.0588964307504578,1.0393634185362366,0.9772264513659578,1.0795732914870506,1.0033430588332077,1.064090254923865,1.077648935774211,1.0350458836221677,1.1595694233687406,1.4103337335500958,1.1255016763894259,0.8087837837837838,1.0679530201342282,1.1102476655209246,1.1541966998232627,1.1103303576242571,1.3802966212062804,2.005169932469833,1.5103477707406345,1.0968485098761565,0.8939814913761782,1.2447030973507403,1.163146901626183,0.8563380281690142,1.1006179695623406,0.7845995124967575,0.8848196024153028,0.6961236182598003,1.2085268838418872,1.197858868031615,1.3292802167281215,0.7303430980778256,1.1620149577281595,1.0159124972643307,1.0329157819810961,1.260204081632653,1.245728324887002,0.9963351911812632,1.1625717529835968,1.0193645886391272,1.0457307903626332,1.1594448473510959,0.9127678668696014,1.1010828738694314,3.5,0.06469135802469136,2.000000000000001,0.6875,0.6933333333333334,0.33694444444444444,0.19015873015873014,0.18406320861678002,0.11338655832703451,0.09968364197530868,3074.6234983601453,3590.999789167397,1755.9500830236989,1547.0107694080057,12.001053042490712,0.44595134556273774,6.649167290022191,0.8048956386613426,1.0,0.42857142857142855,1.4652556501132248,3.4945277638885672,4.47135448701393,4.681880802803405,4.681880802803405,4.681880802803405,0.18421052631578944,0.010781893004115226,0.08000000000000004,0.03125,0.03649122807017545,0.021059027777777777,0.013582766439909296,0.014158708355136924,0.011338655832703451,0.01107596021947874,0.41394876601508634,14.409972299168976,6.9632,4.266666666666667,106.96952192393705,1.0,3.801015145191063,78.88929536973325,,63.47484433605629,62.164030902192046,63.749015852411176,63.49414833421775,98.89943711222645,63.03954027535849,63.54166038180304,82.73792963850262,0.02074821991362209,-0.07229875355966055,-0.40551778324663496,0.32986832986832965,0.27762003097573595,-0.07393175322889918,0.02181046936125798,-0.005258654702315083,-0.054186004762160664,-0.17449693005986605,-0.09383092560709445,0.02113193506532909,-0.0007531464786217464,-0.07907929380531159,-0.1319081879492191,-0.02885532591414953,0.03560501381760755,-0.11988151668858636,-0.0003020773775754784,-0.052125964990516804,-0.06145276454837584,-0.04458684171111156,-0.10233724145978751,-0.017390415828782486,-0.08246827148572218,-0.0011248610766488169,0.08392884215435358,0.04920147420147419,0.02375686394142769,0.05787375114114075,-0.0830820013449651,-0.018024087489560706,-0.017353369416863752,0.020884534484667323,0.043147233034899334,-0.054640604187128856,0.0704932567219655,0.0744408765967682,0.046339958988548,-0.0156696021864561,0.07959429907246814,0.10845836916364844,0.07045855792114718,0.07436692128735826,0.07246638467421394,0.017213040325299113,0.0648575738810479,0.07345339185140023,-0.0062471670969394995,-0.02885034385325222,-0.10798128691544062,-0.1236925236925237,-0.0910289375054476,-0.11396291257007733,-0.006992091775806522,-0.08249317597682322,-0.019496418189909624,0.039887512023015194,-0.05128952149541727,-0.046819642517952564,-0.1392414797194767,-0.15413851141400484,-0.013156950529421358,0.058948137326515736,-0.0716261563577,-0.19198979416921141,-0.13907087406657373,-0.15686629382828046,-0.15126966288654542,-0.17320515467310563,-0.16358782617633819,-0.15024207526418834,0.129506935390797,0.0005066868165005715,0.08834091167689641,0.000989722116482706,-0.0036629170999149274,0.06033094624907593,0.13271932246492257,0.17789663772366576,0.015234675994412566,0.05429450387702056,-0.03356078923883114,0.171407898403174,-0.20433712179864355,-0.13680772620769932,-0.06657639244123933,-0.21610590182018763,-0.30353718668675533,0.05404348828126955,-0.20300434556889868,-0.05757607613819434,-0.1612802725199225,-0.17490109959626501,-0.10140236015757009,-0.13367890825065623,6.38078170495976,11.593193955012158,3.102671683933338,13.574547835441793,29.631700623590433,32.93276301313237,33.14497353944816,33.14497353944816,33.14497353944816,36.11751242015603,28.347809414773987,3.9730833454359717,3.796619659946078,0.0,7.76970300538205,3126.4800977499285,2819.5942279084334,489.57242894607816,29.0,25.0,30.0,37.0,41.0,39.0,40.0,41.0,33.0,248.15247788,19.0,4.48863636973214,5.293304824724492,6.137727054086234,6.968850378341948,7.819636302367592,8.663714844079005,9.51892740510786,10.371019379393825,11.22991247536671,0.5877192982456142,0.9698947368421057,1.1356090821175655,0.5440758252303808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6385102426725499,0.9562435500515992,0.9964733392111019,0.5885211415471305,5.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,20.144157473594294,18.460360185545124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.913841467842857,18.19910120538483,29.68636573875467,0.0,109.86466667885325,-197.51068470097772,-12.738793547211833,-5.19764959739415,-19.75106847009777,368.04421653562224,661.6564488442357,25.016701658923203,17.412011811690412,23.630587458722708,0.5,0.9080458199932816,0.27263605477210867,5.688963572425578,0.11719584371547657,158.7563002913444,0.0919541800067185,5.0,0.3157894736842105,0.27920653369538506,0.6658872011735406,0.8520229129612953,0.8921389997879845,0.8921389997879845,0.8921389997879845,1.9055999999999995,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,72.93920000000004,9.843390348640755,0.0,10.30076712495354,0.0,25.993281616277514,13.151638370425493,30.462311845459517,0.0,5.749511833283905,3.6635616461296463,0.0,4.9344739331306915,2.3978952727983707,6.3818160174060985,4.59511985013459,7.9211727215870145,6.6052979209482015,9.517015920920498,22.33333333333334,9.710625997312505,0.0,3.132826301434256,0.0,0.0,2.0868647906693547,0.8030990173847318,0.0,36.856000000000016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.153145120467485,10.05365155780638,0.0,5.749511833283905,35.38795150310967,0.0,0.0,13.847474399381248,30.462311845459517,0.0,10.902924932081056,0.0,20.67488135875447,24.263389221556896,22.809310778797908,157.7785907394665,,126.86238708481102,124.22331024034915,127.40950197785881,126.90123761119528,198.8658582794669,125.985768297215,126.99693014286586,165.9547386812062,22.809310778797904,157.7785907394665,,126.16397438639831,123.38529772806953,126.70126416215047,126.20476515327374,200.9998263894949,125.23927026919924,126.30580517694406,166.9124974896081,4.690405923814866,121.49632182595795,,99.23856670712888,97.10176859340962,100.04807212970357,99.27105042320336,159.4113256043657,98.54399131977566,99.34601363833119,131.39461093062542,1.2671839321554392,8.765477263303694,,7.0479103936006124,6.901295013352731,7.0783056654366,7.050068756177516,11.04810323774816,6.999209349845278,7.055385007936993,9.219707704511457,2.390032960288885,78.88929536973325,,63.47484433605629,62.164030902192046,63.749015852411176,63.49414833421775,98.89943711222645,63.03954027535849,63.54166038180304,82.73792963850262,36.33725490196077,0.0,4.099435944513506,0.0,0.0,0.0,9.78675855064248,37.86598689002187,0.8380886243386245,3.177507952254976,5.661687452758882,0.0,-0.13022796464264774,0.0,0.0,0.0,0.0,22.36380337879096,433.96316374056187,55.67971470430254,132.79205502776554,169.91147050652935,177.91147050652938,177.91147050652938,177.91147050652938,352.0,107.49172903319982,43.94571947391369,64.01635328305511,57.279999999999994,57.279999999999994,1.0,7.675975507155282,5.247927513443585,3.369706774665609,4.183355997648108,,4.175465177440277,4.175524187863562,4.1800347874157895,4.175478334959519,4.187003373468674,4.175699893408533,4.175440555102185,4.180115050891333,0.18720593192586715,0.232408666536006,,0.23197028763557093,0.23197356599242014,0.23222415485643275,0.23197101860886216,0.23261129852603743,0.23198332741158514,0.23196891972789915,0.23222861393840738,1.802612394995775,2.018900459561614,,2.017012436744393,2.017026569302993,2.0181062337524285,2.0170155878899427,2.0197719576394633,2.0170686482948357,2.0170065398180284,2.0181254351966844,200.89999999999964,324.5620668171615,86.24470185067138,,86.62963220161927,86.62892570278817,86.37936058001897,86.62888099088744,85.88191232223232,86.61774898883519,86.63083667532689,86.32540465653938,18.031225934286752,4.791372325037298,,4.812757344534404,4.812718094599343,4.798853365556609,4.812715610604858,4.771217351235129,4.812097166046399,4.812824259740383,4.795855814252188,6.370263451838826,5.0449752911085195,,5.0494285951714595,5.0494204397436455,5.046535429999531,5.049419923612204,5.040759905040569,5.049291413152072,5.049442498789699,5.0459105957610415,5.661687452758882,3.132826301434256,14.007339432686656,1.0437918608801549,0.8030990173847318,8.195710375199463,1.3846876574703952,4.937524568852131,0.0,233.21547349371403,52.50530015722136,-94.39211074837065,-6.087982597647774,-2.4840029144308065,-9.439211074837065,175.8916004980858,316.2114945388044,11.955703951525706,8.321355119442222,11.293267662100162,687.0,22.0,1.1663395218799635,0.6210377118646788,0.0,0.0,0.13608276348795434,0.03784367876932762,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.041666666666666664,0.21941609682128765,0.06894585576580214,0.3476006996936919,0.08218826983660636,12.957819157813608,10.811127332664299,8.66470379794645,6.269124352448222,7.699540344877538,4.722831932066816,5.740273044650386,2.7479028014485367,4.5200378177951865,1.7990786308584295,3.4835156500986346,1.1615268327154424,2.13674903611698,0.551495670301297,1.4622443699678964,0.31224922241531616,2.077605520299786,0.8121808924964206,2.9602835593937544,0.9032723351865244,4.1830151458882545,1.045073115592739,61.03654699207943,30.472269276973243,22.382721909347545,21.5675869051022,21.5675869051022,21.5675869051022,88.0,99.0,40.51985999999998,22.940139999999992,0.23684210526315788,55.04,6.055555555555555,4.0555555555555545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,38.0,0.0,1.0,39.0,10.0,0.0,4.0,35.0,10.0,19.0,29.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,3.0,3.0,1.0,18.0,4.0,0.0,2.0,2.0,0.0,2.0,6.0,0.0,0.0,0.0,1.0,2.0,3.2188758248682006,5.644411136162444,3.7669972333778885,4.332376726030061,4.92407835928668,5.3248375763574325,5.572451041298128,5.8700249319620506,6.159235772400865,5.657752170442301 +451668,Nc1ncn([C@H]2C[C@H](O)[C@@H](CO)O2)c(=O)n1,0,26.857142857142858,6.9564142857142865,3.357142857142857,10.071428571428571,172.14757383789242,106.24864057142857,1.2521203877924287,6.9428857142857145,7.237103174603175,8.39853942857143,199.9985695682129,27.517241379310345,7.002,4.103448275862069,8.586206896551724,157.71696110976208,104.8665463793103,1.5170046569655167,7.078551724137932,3.9808429118773954,8.377184965517241,242.47071408445507,24.42,7.031330000000001,3.68,7.56,164.90564127121795,91.61039928000004,1.3316200038909403,7.061226000000001,4.167777777777777,8.439434719999998,206.7850266188852,19.181818181818183,6.754530303030304,2.909090909090909,5.484848484848484,167.20665471413395,69.67261483333331,1.112021216704394,6.776381818181817,3.948232323232322,8.277101515151516,167.7847707838285,17.90625,6.808420312499999,2.53125,5.15625,171.1355895756248,64.097147796875,1.0256680862084222,6.802364062500001,4.828125000000001,8.3348056875,149.9066589850349,14.854545454545455,6.526654545454547,2.418181818181818,3.8363636363636364,174.10356661232066,51.89643283636365,0.9598407642161091,6.52980181818182,3.56969696969697,8.1124144,138.31505951511969,18.736842105263158,6.826947368421051,2.4210526315789473,5.131578947368421,171.55465297226695,67.64121273684209,1.0346954367656316,6.825405263157895,5.432748538011697,8.33027705263158,153.67003202245238,15.28125,6.922562500000002,1.9375,3.9375,178.88487730010763,52.01579684375,0.8809550218826563,6.884353125000002,5.505208333333334,8.473913125000001,127.35073163351824,11.45,6.2293,1.95,2.05,174.35613237914478,37.34666055,0.87725359401225,6.238580000000001,3.8166666666666664,7.8238894000000005,112.0825591562913,8.489795918367346,0.2186816326530611,0.04154731170613478,0.6581632653061221,4.846938775510204,1.4045233082956725,39.82148334693877,0.18167031473853057,0.19773469387755097,2.8221017573696137,0.14030563265306115,41.261429050265704,-0.22378606615059798,-0.053356016889514454,-0.029154704051879362,0.1743490499648136,0.6481351161154123,-0.6436532605422338,-0.839768593244202,-0.018571433145924514,-0.04235341308937373,-0.5885563277034952,-0.03767333708655873,0.3540222365100055,-0.06979591836734679,0.012296081632653007,0.010346771014983219,-0.028163265306122426,0.1673469387755104,0.4837133949960846,-0.3676475069387791,0.00039380006522948623,0.008276448979591827,-0.04610969387755106,0.0035725387755102056,-1.3589742181334905,-0.37291280148423034,-0.02314938157081014,-0.00800038869335358,-0.11703772418058134,-0.26901669758812613,-0.3833795548524037,-1.711803725726655,-0.019902131230866083,-0.018632096474953626,-0.14764889541675258,-0.014559424860853432,-2.448456781363668,-0.2889030612244897,0.027348501275510185,0.009674316230552014,-0.006377551020408169,-0.012117346938775551,0.06815421229148967,-1.5261147286352044,-0.009222146136412325,0.020864636479591848,0.24740469104308396,0.019790376275510207,-4.559874549863374,-0.2846011131725419,-0.04690760667903521,-0.010044225639331677,-0.050371057513914644,-0.6222634508348792,-0.048413183913979155,-1.0862459391465664,0.018346382074981033,-0.038945862708719824,-0.7065894918573488,-0.031990453432282004,4.8082433650151035,-0.1138560687432867,0.02324844253490869,0.007425899898802147,-0.06793770139634801,-0.470998925886144,-0.13135279092522195,-0.7459350010741131,-0.03025022599063588,0.019621697099892588,0.3555298215777539,0.01685929967776584,-5.744415147288031,-2.2442602040816326,-0.035342346938775505,-0.0027615652390623963,-0.08673469387755105,-1.409438775510204,0.0792583786202172,-10.543977038903058,-0.0013145532081333651,-0.035525318877551004,-0.0932761125283446,-0.015141507653061211,-6.300870811142427,-0.6112244897959187,0.011822653061224556,0.0017007160774948446,-0.19744897959183674,-0.49693877551020427,-0.23671738080480775,-3.122884568367341,-0.05457854219123781,0.009703877551020468,0.19461451247165534,0.00886445306122448,-9.88415727761556,,,0.4333333333333333,1.140625,0.40625,0.0625,0.734375,-0.328125,0.6992717165802831,0.018801334965181438,0.029551334965181437,0.7813852666264491,0.22900054890932192,0.24683646377381507,1.4806569832067322,0.475837012683137,1.9974570557231763,1.0422603863603666,0.49820001059363334,0.4569966587691762,0.0,0.9551966693628097,8.145923388,752.0,194.77960000000002,94.0,282.0,4820.132067460988,2974.9619359999997,35.059370858188004,194.4008,202.63888888888889,235.15910400000004,5599.959947909962,798.0,203.058,119.0,249.0,4573.7918721831,3041.1298449999986,43.993135051999985,205.27800000000002,115.44444444444447,242.938364,7031.650708449197,1221.0,351.5665000000001,184.0,378.0,8245.282063560897,4580.519964000002,66.58100019454702,353.0613000000001,208.38888888888889,421.9717359999999,10339.25133094426,1266.0,445.79900000000004,192.0,362.0,11035.63921113284,4598.3925789999985,73.39340030249,447.24119999999994,260.58333333333326,546.2887000000001,11073.79487173268,1146.0,435.73889999999994,162.0,330.0,10952.677732839988,4102.217459,65.64275751733902,435.35130000000004,309.00000000000006,533.427564,9594.026175042234,817.0,358.96600000000007,133.0,211.0,9575.696163677636,2854.303806000001,52.791242031886,359.1391000000001,196.33333333333334,446.182792,7607.328273331583,712.0,259.4239999999999,92.0,195.0,6519.076812946144,2570.366084,39.318426597094,259.3654,206.44444444444449,316.55052800000004,5839.46121685319,489.0,221.52200000000008,62.0,126.0,5724.316073603444,1664.505499,28.190560700245,220.29930000000007,176.16666666666669,271.16522000000003,4075.2234122725836,229.0,124.586,39.0,41.0,3487.1226475828958,746.933211,17.545071880245,124.77160000000002,76.33333333333333,156.477788,2241.651183125826,237.71428571428567,6.12308571428571,1.1633247277717738,18.42857142857142,135.71428571428572,39.32665263227883,1115.0015337142856,5.086768812678856,5.536571428571427,79.01884920634919,3.928557714285712,1155.3200134074398,-6.489795918367341,-1.547324489795919,-0.8454864175045015,5.056122448979594,18.795918367346957,-18.66594455572478,-24.35328920408186,-0.5385715612318109,-1.228248979591838,-17.06813350340136,-1.092526775510203,10.266644858790158,-3.4897959183673395,0.6148040816326503,0.5173385507491609,-1.4081632653061213,8.36734693877552,24.18566974980423,-18.382375346938957,0.019690003261474312,0.4138224489795913,-2.305484693877553,0.17862693877551028,-67.94871090667452,-24.6122448979592,-1.5278591836734692,-0.5280256537613363,-7.724489795918368,-17.755102040816325,-25.303050620258645,-112.97904589795922,-1.3135406612371614,-1.2297183673469394,-9.74482709750567,-0.9609220408163265,-161.5981475700021,-18.489795918367342,1.7503040816326518,0.6191562387553289,-0.4081632653061228,-0.7755102040816353,4.361869586655339,-97.67134263265308,-0.5902173527303888,1.3353367346938783,15.833900226757374,1.2665840816326532,-291.83197119125595,-15.653061224489804,-2.5799183673469366,-0.5524324101632422,-2.7704081632653055,-34.22448979591836,-2.6627251152688536,-59.74352665306115,1.0090510141239568,-2.1420224489795903,-38.86242205215418,-1.7594749387755102,264.4533850758307,-4.326530612244895,0.8834408163265303,0.2821841961544816,-2.5816326530612246,-17.89795918367347,-4.991406055158434,-28.3455300408163,-1.1495085876441635,0.7456244897959183,13.51013321995465,0.6406533877551019,-218.28777559694515,-71.81632653061224,-1.1309551020408162,-0.08837008764999668,-2.7755102040816335,-45.10204081632653,2.5362681158469504,-337.40726524489787,-0.042065702660267684,-1.1368102040816321,-2.984835600907027,-0.48452824489795876,-201.62786595655766,-12.224489795918373,0.2364530612244911,0.03401432154989689,-3.9489795918367347,-9.938775510204085,-4.734347616096155,-62.457691367346825,-1.0915708438247562,0.19407755102040936,3.8922902494331066,0.1772890612244896,-197.68314555231123,0.7316713938910652,0.5220955916717963,0.4478466001723643,0.2803372071381234,0.2890191144183581,0.14663436309398944,0.18427427209108635,0.07870466893093422,0.12038815110386174,0.0411050069297089,0.07323202471374979,0.021197348394125605,0.050855255762903576,0.01101110898806318,0.03192089667849596,0.005685320271868233,8.02276678026841,5.8241022471225685,3.547446153210608,2.3204994691803438,0.4960564085483029,-0.4012302818530884,3.209316653378825,0.9777328850392599,6.02248003323777,1.9798277052253215,14.56681400330986,11.08543312906051,16.010757258423226,11.836817582983223,1.8624523271576647,0.7461068702962541,3.493745799989252,2.3685196749497357,7.008282313239229,1.1933528524204986,3.7058276965014376,2.562689009146127,20.75698561882015,14.702308247095308,0.36847419863542175,0.7496746668800692,0.8900424129829492,0.9186138415543776,0.9186138415543776,0.9186138415543776,1.9321338017775829,434.2916414150851,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,0.0,2.964983928880495,1.0589815876572577,0.35714285714285765,0.2142857142857153,0.2142857142857153,0.2142857142857153,62.588582197664294,947.7653068882431,78.9598804126963,33.84876096029439,77.38690386072672,,9.0,227.0,24.12557734443495,9.901064578912528,18.976042868425424,0.0,4.567099647791355,6.3273200747645415,0.0,0.0,9.967957041894417,15.577057825802939,6.933333333333333,18.25,6.5,1.0,11.75,0.0,0.06666666666666671,-5.25,0.2561076604554864,0.0,-0.2561076604554864,0.1383333333333333,0.2770252100840336,0.0,0.6952380952380954,0.9916666666666666,0.43913043478260905,0.6952380952380954,0.8533333333333333,11.18834746528453,0.300821359442903,0.472821359442903,12.502164266023186,3.6640087825491507,3.949383420381041,23.690511731307716,7.613392202930192,0.4369747899159664,0.20192307692307693,0.0,0.4182692307692308,0.625,0.42202625900861196,-0.9966060848513367,-0.12799698659804978,-0.03559307445897631,-0.12457576060641709,0.5779737409913878,1.3648727652858055,0.06874168514774691,0.04874545590306448,0.06824363826429025,0.7275513256680788,0.7794056697612733,1.0045391486181994,1.7048996900539066,0.9851643945469131,0.6002722323049001,1.8823984562288847,0.779616760736925,1.3571366567409342,0.9541193621632782,0.9579774524985943,1.0543956958465424,1.0232783965134384,0.8586778846153847,0.8356213253821606,0.6755076924601403,1.245348837209303,0.8634315789473683,0.9009079862865066,0.8615471701191008,1.1073650616619664,0.8346410878315615,0.7558955945311423,0.8841423373696145,1.0117904282141066,0.987816870629371,1.078851094940672,1.122026476503463,1.1987315010570831,1.0263875598086123,1.2721718840698601,0.9867134763593884,1.1402979321390505,1.0630647805852937,0.8803998351901081,1.1014081655769354,1.0454590501844814,1.022235576923077,0.9081106033722496,0.7227116753050429,0.8699127906976748,1.0149424342105262,0.8697474953464853,1.0246390758796293,0.9990271423845528,0.9256556444486014,0.9549244516704126,0.9079080535153872,1.0613264332985288,1.049082167832168,1.1882311057831807,1.0890460326811688,1.0522198731501062,1.162937799043062,0.86947902768957,1.0426497801634336,0.7909615036702268,1.1798113840437612,1.338201997121534,1.1848070861364728,0.8452443398569465,0.9803896761133606,0.8778932780464519,0.85383013737593,0.9638922888616897,1.0785041551246537,1.054566578463382,0.984963048506676,1.100192782929007,0.8836066469843717,1.0068383850865192,0.8617287039103466,1.0792337387574886,1.313288762019231,1.2921885498908117,1.1308029482825757,0.8699127906976748,1.3801973684210525,0.7346187452600492,1.3085208318748045,0.7655309794023627,1.3104282643332645,1.2939456190129441,1.2304011679458957,1.00083392168042,1.061989182692308,0.7559497312279525,0.9334156949207619,1.281976744186047,0.9648947368421051,1.0107236960177204,1.0727002743356637,1.191760510830911,0.7814488724326555,0.7927697078504979,0.6838799873628651,1.2393478810985583,4.0,0.0,2.222222222222223,1.6041666666666667,0.8683333333333335,0.6427777777777779,0.18770975056689346,0.1744968820861678,0.045099521289997474,0.0,3075.7348687383346,3426.8810463413497,1627.0932957788812,1489.9482970579384,10.633686838257693,0.4555505435068069,5.789505019608222,0.8367177854139385,0.0,0.625,1.8423709931771088,3.748373334400346,4.450212064914746,4.593069207771888,4.593069207771888,4.593069207771888,0.23529411764705882,0.0,0.09259259259259264,0.0697463768115942,0.04570175438596492,0.04591269841269841,0.015642479213907788,0.024928126012309683,0.01503317376333249,0.0,0.544851318839459,12.456747404844291,5.104166666666667,2.651404786680541,90.32262349834102,1.0,3.699420643601427,56.22886999184784,,42.24284550188024,40.7927276867762,41.486296617629385,42.26101493655554,71.76043469390797,41.71290931599913,42.32165423905634,61.773171494085176,-0.026359416445623327,-0.2439894756692433,-0.7017229961373036,0.26490243250467815,0.13372050816696926,-0.4582716831686324,-0.021088330284631605,-0.10222601954894774,-0.2141931304963684,-0.2085524826192195,-0.26850908530318923,0.008579980011810224,-0.008221153846153831,0.05622823226384435,0.2490358723607968,-0.04279069767441859,0.034526315789473724,0.3443968442097623,-0.009232391062274217,0.0021676632519532094,0.04185633192279901,-0.01633877791867022,0.02546254706925525,-0.032935704104624056,-0.04392482517482522,-0.10585882906561561,-0.1925609230734479,-0.17782475922010815,-0.0555023923444976,-0.27296062129265625,-0.04298694026068337,-0.10955081604559486,-0.09422775593691073,-0.052318770941261576,-0.10376935398491843,-0.05934008680069944,-0.03402944711538461,0.12506080617615767,0.23285059449763457,-0.009689922480620167,-0.0025000000000000083,0.04852479975871089,-0.03832390459539531,-0.050763087792770764,0.10551833909588201,0.08766682150883232,0.1410519014902744,-0.11051179406094784,-0.033522727272727294,-0.21450181302356672,-0.24175392406552673,-0.07653276955602539,-0.12838277511961718,-0.03446947703041428,-0.027277887407729382,0.10098723119066594,-0.1969601891554621,-0.25037704257550836,-0.22800548222740255,0.11653118846556626,-0.013410931174089062,0.10631182076362307,0.17873358332605804,-0.10322317421460633,-0.09717451523545707,-0.09352126102101703,-0.01873197426060865,-0.16651166171079515,0.09923244482348406,0.12598051103200875,0.1201612462662454,-0.1392199756409319,-0.2643479567307693,-0.16161552531870027,-0.06646796448817241,-0.1317829457364342,-0.29078947368421054,0.05643080335661625,-0.26478112196475007,-0.007235927399725921,-0.17966153627825368,-0.03305200185810597,-0.10791803127749097,-0.1527060733516173,-0.07199519230769237,0.05406331074901577,0.04093444335277464,-0.30000000000000016,-0.10252631578947372,-0.1685393039806893,-0.07842210550419913,-0.300426309437456,0.04907523996284479,0.06896084167179321,0.06317959509967741,-0.23954956251210865,0.8434326653017493,6.057887787153714,3.494135593857896,18.76432663014995,35.3286484186744,38.82131614474719,38.9653161447472,38.9653161447472,38.9653161447472,31.95931289157082,16.676166181765865,7.971200169498133,7.31194654030682,0.0,15.283146709804955,2138.766182058742,1864.9666350365007,350.79870523057434,18.0,24.0,31.0,39.0,43.0,45.0,39.0,35.0,32.0,228.085854864,17.0,4.418840607796598,5.262690188904886,6.142037405587356,7.005789019253503,7.890208213109961,8.760139370026627,9.646076003102594,10.518538047359652,11.404794448349735,0.7142857142857144,1.038285714285714,1.160436971357018,0.6785684551066283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.61953627031651,1.0184873949579833,1.0465092081989387,0.6122149108778459,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,20.683585220643643,18.65918763324771,0.0,5.948339280986494,0.0,4.567099647791355,9.77851570501903,4.9839785209472085,0.0,0.0,0.0,6.4208216229260096,12.71084835226122,169.3776960403289,-399.9818468841943,-51.37081929691044,-14.285065960149796,-49.997730860524285,231.9662782379932,547.7834600040488,27.58906111578586,19.563695000144598,27.389173000202433,0.4444444444444444,0.5262204882135009,0.1666620202474101,227.37698629263423,0.14977011566269646,56.15225987359442,0.4737795117864989,5.0,0.11764705882352941,0.38324006091660745,0.7797163710966443,0.9257090722583894,0.9554254433550334,0.9554254433550334,0.9554254433550334,-2.1388,,1.5714285714285716,1.8855281526291297,1.5935350853437962,1.5670630303235251,-6.40190433008388,1.679620563035496,1.555031173324093,-2.873276425205818,52.32400000000001,14.94991774348146,0.0,14.53505668968577,0.0,24.856655569157482,12.340549441675103,16.811600657039836,0.0,0.0,3.5553480614894135,0.0,4.875197323201151,2.3978952727983707,6.385194398997726,4.727387818712341,7.980365765111246,6.803505257608338,9.618800989064146,20.000000000000004,1.2101266061980347,7.10993291761149,0.0,0.0,0.0,0.0,-0.11249666687662674,1.1341666666666665,29.071999999999996,0.0,11.436426209372637,0.0,0.0,0.0,0.0,0.0,0.0,32.4922351979965,11.423410875365658,5.948339280986494,0.0,43.562926219376706,4.736862953800049,0.0,12.64872279366088,11.121857258836364,0.0,0.0,0.0,18.999916742985594,17.347015568862282,19.87725261056637,112.45773998369572,,84.28926243233191,81.34976435447376,82.87058120443945,84.32614699432065,144.99429262062608,83.21586606161883,84.44892958144717,124.0366248881681,19.87725261056637,112.45773998369572,,83.21822947055003,80.10378348752006,81.87462177609959,83.2581132619919,149.92277371789982,82.09218569719084,83.38635403571595,126.41961941337614,4.733855131854522,83.52638673397351,,62.79984761939205,60.531273560169325,61.713984020428754,62.828466931001955,107.60738550970652,61.97306822195734,62.923001656507466,93.6374173261084,1.242328288160398,7.028608748980982,,5.268078902020744,5.08436027215461,5.179411325277465,5.270384187145041,9.06214328878913,5.200991628851177,5.278058098840448,7.752289055510507,2.412739916483172,56.22886999184784,,42.24284550188024,40.7927276867762,41.486296617629385,42.26101493655554,71.76043469390797,41.71290931599913,42.32165423905634,61.773171494085176,28.517647058823535,0.0,0.0,0.0,0.0,5.241193625598387,18.39117777357857,29.302257829570284,-0.0965692712270092,0.0,5.271740362811792,0.0,-2.1581887755102054,0.0,0.0,0.0,0.0,17.142017504579684,211.19542208628545,51.586387808959046,104.9544533632097,124.6059378176129,128.60593781761287,128.60593781761287,128.60593781761287,339.0,104.04911330349091,190.14855219203668,62.34369488698274,123.49,123.49,0.8,7.090233073570332,5.087462841250339,3.650762389303189,3.936698081196522,,3.930912074268753,3.9300514429795275,3.9280628671811453,3.9309158508749706,3.9258565545738433,3.930523857859789,3.9309635482586565,3.9303125443853575,0.22817264933144932,0.24604363007478264,,0.24568200464179707,0.24562821518622047,0.24550392919882158,0.24568224067968567,0.2453660346608652,0.2456577411162368,0.24568522176616603,0.24564453402408484,1.7649396488107403,1.8403459507372388,,1.8388751081671197,1.8386561448579082,1.838150024493062,1.8388760689121917,1.8375881871359767,1.8387763434089683,1.8388882027497297,1.8387225797981592,152.35999999999981,77.12646987523993,74.27721823540305,,74.37442360541435,74.43029800142148,74.55131962706335,74.37419077720496,74.8599664658411,74.40014855015251,74.3709909352169,74.3530049563417,4.820404367202496,4.642326139712691,,4.648401475338397,4.651893625088842,4.659457476691459,4.64838692357531,4.678747904115069,4.650009284384532,4.648186933451056,4.647062809771357,4.81545016963963,4.777807915317123,,4.779115743238331,4.779866719390562,4.781491371534739,4.77911261274585,4.785622883763611,4.779461567724623,4.779069588266648,4.7788277176948535,6.405907029478458,18.54635912698413,18.39117777357857,4.647017510707987,-0.11249666687662674,0.0,-0.7413047996976581,-0.3033266408415216,0.0,182.54999619673254,67.97871768293123,-160.53030406768588,-20.617368778555562,-5.733225145274496,-20.066288008460734,93.09826800658729,219.84959088195532,11.07270343481702,7.851771102926974,10.992479544097764,434.0,23.0,1.2294957522071321,0.44926535466921846,0.0,0.0,0.2821175568066727,0.06555388146690141,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.05555555555555555,0.2878633639084475,0.1018840540532727,0.4776472276842013,0.11076030403626,11.706742302257043,8.353529466748741,7.613392202930193,4.765732521348097,6.936458746040594,3.5192247142557465,5.712502434823677,2.439844736858961,4.695137893050608,1.6030952702586472,3.148977062691241,0.911485980947401,2.288486509330661,0.4954999044628431,1.2449149704613423,0.22172749060286107,2.7539578184987645,0.864440357542971,4.259608312198279,1.043963918664964,5.511748364673434,1.087403606390414,55.13621357272834,27.513194021684253,21.605576423838876,21.204525720687787,21.204525720687787,21.204525720687787,82.0,96.0,28.969515999999985,18.062483999999998,0.39285714285714285,49.08,6.166666666666667,3.583333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,28.0,0.0,0.0,29.0,6.0,1.0,3.0,26.0,7.0,17.0,22.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,8.0,3.0,2.0,16.0,8.0,0.0,4.0,4.0,0.0,2.0,2.0,0.0,0.0,0.0,1.0,1.0,3.091042453358316,5.040598545281635,3.6506582412937387,4.131158535344817,4.603919404086438,4.978886595781676,5.124707750356103,5.002687124247082,5.1387352967235715,5.2108513407667605 +47320,COc1ccc(CC2c3cc(OC)c(OC)cc3CC[N+]2(C)CCC(=O)OCCCCCOC(=O)CC[N+]2(C)CCc3cc(OC)c(OC)cc3C2Cc2ccc(OC)c(OC)c2)cc1OC,0,20.47482014388489,6.083307913669064,3.0071942446043165,6.460431654676259,163.18034081845994,80.45441101438848,1.3666350874037985,6.14099928057554,3.2904676258992804,7.654680719424459,199.76793569609427,23.166666666666668,6.336111111111112,3.6527777777777777,5.875,146.06254323665826,86.83552633333335,1.676878266111111,6.472395833333329,2.8549382716049383,7.7783501111111075,244.9783218532894,18.385496183206108,6.286694656488551,3.400763358778626,4.343511450381679,158.38194117251138,67.30750615648847,1.3922664864358978,6.366304198473282,2.6140797285835453,7.8258203511450395,199.35582138682912,17.390532544378697,6.144579881656805,3.2071005917159763,3.6745562130177514,154.43515049421623,62.59766988757393,1.4246353260481117,6.242956804733724,2.533037475345169,7.675811100591723,196.75467930606106,14.104308390022675,5.9342358276644,2.6984126984126986,2.4444444444444446,156.56347701128476,48.937900160997735,1.2823109583556136,6.026201587301588,2.297178130511465,7.511732380952381,168.42441988762212,12.5390625,5.87010546875,2.53515625,2.08984375,161.45565757067888,43.16413441796876,1.1583506411964029,5.942123437499998,2.2092013888888875,7.491964078125004,150.59738696478595,13.51552795031056,6.017937888198761,2.559006211180124,2.5010351966873707,159.64511860728808,46.38659696273293,1.2060674709478387,6.091409937888197,2.467103749712445,7.616255180124223,159.07462300583987,13.00398406374502,5.934541832669325,2.442231075697211,2.6175298804780875,161.70198706579356,44.99305357370517,1.1406283539636775,6.003271314741034,2.3642098273572385,7.550982772908366,150.20536525903384,13.204040404040404,5.995987878787879,2.393939393939394,2.735353535353535,163.1607831385272,45.90335912121215,1.1020263084663846,6.05586404040404,2.47962962962963,7.617120428282826,147.00959684849963,7.535531287200456,0.13392011800631431,0.02574377561845353,0.5924124010144404,3.9553853320221517,1.329117211037356,35.77037996418405,0.22768399114246549,0.12580192536618182,0.8905688398921151,0.08632347062781429,50.21530316293396,0.6343328215125742,0.005800745303038179,-0.008753725999414978,0.3049696933100998,1.4555858909994306,-0.3645448504630348,2.903175508238019,-0.03803430903768848,0.00833874209984535,0.019247751279392093,-0.00041301179488065296,-2.7154420321674175,0.48838545726656674,-0.014341931395297797,-0.004530589009900941,0.014897171175136274,0.07059083361022755,0.3387742345284197,2.5271456222567252,0.05516382238473705,-0.011753627821011851,0.05705855437567678,-0.009306931663565858,10.211240041484146,-0.4266385197576048,-0.0006864455360065696,0.004172055008353069,-0.0698292840760384,-0.263716182134961,-0.007125949016377204,-2.0444874585861577,-0.005174037551246353,-0.0017478833926600594,0.005871995605167531,0.0014790104926148031,-2.326851467034815,-0.8361397799980541,-0.002217568209417197,0.0013473915200755578,-0.05256672653361676,-0.44831343851654865,-0.20577520567108054,-4.051823558272043,-0.0351973946765678,-0.0035427041717088705,-0.0751107755046228,-0.00081064294710172,-7.88541007704441,-0.010632456265203538,-0.006127419040487039,-0.0017869050924556114,-0.027579892021634498,-0.47480417195020963,0.020880984312483995,-0.0009990066469539871,0.006519297142810041,-0.0052823856854264896,-0.05653606611113984,-0.004552219616123643,1.1770011104013864,-0.9816191374171764,-0.01181495095982733,-0.0007714693801002032,-0.019464548116634287,-0.49252580597839074,-0.06250736857431148,-4.647334513687302,-0.01473807966678178,-0.012538316625844918,-0.16643324153849987,-0.006345622466591721,-5.163997969921203,0.032527413249543044,-0.004966791743022219,0.00023155022078976003,-0.02154479231255714,0.1095348433913021,-0.04276236503209715,0.16142785710632981,-0.007033503706433716,-0.003619051107819646,-0.04230123883351975,-0.004567188819794574,-0.33671366551108933,0.2876501676356758,-0.003930335287035248,-0.0017814132437435652,-0.038368363517165355,0.20123119293969655,-0.003875485677867357,1.3764825541213075,-0.002649719719231783,-0.0019240066102775087,0.06826308446738724,-0.004178973454643741,1.327864722417415,,,0.4671641791044775,1.1119402985074627,0.4626865671641791,0.05970149253731343,0.6492537313432836,-0.1865671641791045,1.3780422262948904,0.01588039403732445,0.023581886574637886,1.190415506698515,0.22851908987165173,0.25432012149957745,2.568457732993405,0.48283921137122915,2.029997855992341,1.6204898115217294,0.07029055861383193,0.3392174858567792,0.0,0.4095080444706111,6.679909558159584,2846.0,845.5798,418.0,898.0,22682.06737376593,11183.163131,189.962277149128,853.5989,457.375,1064.0006199999998,27767.743061757104,3336.0,912.4000000000001,526.0,846.0,21033.00622607879,12504.315792000003,241.47047031999998,932.0249999999994,411.11111111111114,1120.0824159999995,35276.87834687367,4817.0,1647.1140000000005,891.0,1138.0,41496.06858719798,17634.56661299998,364.7738194462052,1667.9716999999998,684.8888888888889,2050.3649320000004,52231.225203349226,5878.0,2076.868,1084.0,1242.0,52199.080867045086,21158.01242199999,481.5267402042617,2110.1193999999987,856.1666666666672,2594.4241520000023,66503.08160544863,6220.0,2616.9980000000005,1190.0,1078.0,69044.49336197658,21581.613971000002,565.4991326348256,2657.5549000000005,1013.055555555556,3312.67398,74275.16917044135,6420.0,3005.494,1298.0,1070.0,82665.29667618759,22100.036822000005,593.0755282925583,3042.367199999999,1131.1111111111104,3835.885608000002,77105.86212597041,6528.0,2906.6640000000016,1236.0,1208.0,77108.59228732015,22404.726333000006,582.5305884678061,2942.150999999999,1191.6111111111109,3678.6512519999997,76833.04291182065,6528.0,2979.1400000000012,1226.0,1314.0,81174.39750702836,22586.512893999996,572.5954336897661,3013.642199999999,1186.8333333333337,3790.593352,75403.09336003498,6536.0,2968.014,1185.0,1354.0,80764.58765357095,22722.162765000012,545.5030226908603,2997.6526999999996,1227.4166666666667,3770.474611999999,72769.75044000731,1047.4388489208634,18.61489640287769,3.5783848109650407,82.3453237410072,549.7985611510791,184.74729233419248,4972.082815021583,31.648074768802704,17.486467625899273,123.789068745004,11.998962417266185,6979.92713964782,91.34392629781068,0.8353073236374978,-1.2605365439157568,43.915635836654374,209.604368303918,-52.49445846667701,418.0572731862747,-5.476940501427141,1.2007788623777305,2.7716761842324615,-0.05947369846281403,-391.0236526321081,127.95698980384049,-3.7575860255680227,-1.1870143205940464,3.903058847885704,18.49479840587962,88.75884944644596,662.112153031262,14.452921464801108,-3.079450489105105,14.949341246427316,-2.438416095854255,2675.344890868846,-144.20381967807043,-0.2320185911702205,1.4101545928233374,-23.60229801770098,-89.13606956161682,-2.408570767535495,-691.0367610021212,-1.7488246923212671,-0.5907845867191001,1.9847345145466255,0.4999055465038035,-786.4757958577675,-368.73764297914187,-0.977947580352984,0.594199660353321,-23.181926401324993,-197.70622638579795,-90.74686570094651,-1786.854189197971,-15.5220510523664,-1.5623325397236119,-33.12385199753866,-0.3574935396718585,-3477.465843976585,-5.4438176077842115,-3.137238548729364,-0.914895407337273,-14.120904715076863,-243.09973603850733,10.691063967991806,-0.5114914032404414,3.337880137118741,-2.7045814709383627,-28.9464658489036,-2.3307364434553053,602.6245685255099,-474.1220433724962,-5.7066213135966,-0.3726197105883981,-9.40137674033436,-237.88996428756272,-30.191059021392444,-2244.662570110967,-7.1184924790555995,-6.056006930283096,-80.38725566309543,-3.0649356513638013,-2494.211019471941,16.32876145127061,-2.493329454997154,0.11623821083645954,-10.815485740903684,54.98649138243365,-21.46670724611277,81.03678426737757,-3.5308188606297257,-1.8167636561254623,-21.235221894426914,-2.292728787536876,-169.03026008656684,142.38683297965952,-1.945515967082448,-0.8817995556530648,-18.99233994099685,99.60944050514979,-1.9183654105443417,681.3588642900472,-1.3116112610197326,-0.9523832720873668,33.79022681135668,-2.068591860048652,657.2930375966204,0.7185230177155579,0.6184146930394037,0.44930871058156047,0.32756980807093156,0.27918880471665747,0.18330458095844732,0.1807238579301906,0.10695473184685327,0.11217596716183048,0.0592308995507836,0.07130294901334021,0.03396618184121435,0.044936468643470874,0.01966545768810653,0.02829824242163448,0.011132380362409213,8.034582367480024,5.685501027756764,3.5607785522358837,2.1844337586006635,0.4679171502643174,-0.5283794191393132,4.025615723919835,0.9771861920659878,6.032908230775555,0.9950122151181893,14.548288948942872,10.946198358281695,16.020865277203818,11.697174009633594,2.0185432549307496,0.7404469387879647,3.5070100850138006,2.2341787229387045,7.009379259281509,1.1197274994130801,3.7198818425086966,2.4301673313878354,20.922449103381606,14.699769834096937,0.19374894568241074,0.4106874262437597,0.6148735560426654,0.6776661124304291,0.7052461912781055,0.736766281389735,0.9345259158671237,2158.8365944094585,0.0,2.0,6.0,0.0,18.0,11.0,6.0,0.0,0.0,5.703841253268704,4.119370155405932,2.6280394315358935,2.1694163670621194,1.9679775181412538,1.7377616908031266,863.5794605935948,10715.987313482434,149.8080150662953,77.09343390994557,133.35524824695,,30.0,3488.0,0.0,9.589074368143644,24.02229223419962,106.94871961421552,56.320523909849186,22.253805966787983,56.87838033022025,24.26546827384644,50.49354637612404,47.36862953800049,31.299999999999994,74.5,31.0,4.0,43.5,0.0,0.032835820895522484,-12.5,0.12443406531319501,0.03898133027320494,-0.08545273503999007,0.0,0.1639121265377863,0.0,0.5647482014388479,0.8492537313432845,0.44031413612565284,0.5257668711656429,0.8492537313432845,92.32882916175765,1.0639864005007382,1.5799864005007382,79.7578389488005,15.310779021400666,17.039448140471688,172.08666811055815,32.350227161872354,0.5500878734622137,0.18104366347177853,0.02555910543130991,0.2875399361022365,0.5094339622641509,0.17403481787623715,-1.1203917836702746,-0.05542924386368709,-0.008060372544390465,-0.036141670440976596,0.8259651821237628,6.969283609661194,0.05766329513931044,0.0501387310047568,0.06453040379315919,-14.554443336452007,0.867353737104551,0.8000107196065017,1.3875656609719609,0.7797447434329313,0.538606356808249,1.5604787653243517,0.8768368747456342,1.3874282342520616,0.7718361300146177,0.6496546076661114,0.8566400695787738,1.1784003245511723,0.9665014297313443,1.2805066004148566,1.5242514023574083,1.4711829726842136,1.1160923246393422,0.8776505328207562,0.9584226003969216,0.7918023037518759,1.242650904347116,0.758801230691984,1.2912168209291026,0.7964799472901478,1.0263241958488276,0.9100299061248984,0.8527847679533906,1.502332537554785,1.0604421819114327,1.1599058482794609,1.0303729139952802,1.1240598253174408,0.9167279223593492,0.8302819739185422,0.8822401943419972,1.101702610744919,1.0548957360599913,0.7980989488291749,0.7356803473250552,1.1666482423827471,0.99717412284848,1.2364592992361405,1.0623975027126038,1.2301877313712377,0.8230413381470786,0.9398660543497814,0.7725908022397253,1.2081459682880769,0.9706264724164457,0.9270420750143016,0.9641635570115411,1.1128819565787171,1.0844028470204916,0.986708925104368,0.9714896306933736,0.9755698206493622,0.9329345209041914,0.9183548500622739,0.9176537435774962,0.98304312904033,1.1232841227758599,1.0925996111525176,0.9857201506210391,1.0825491126032798,1.1385988327968386,1.081405217426519,1.1232150153565632,1.0871882415525516,1.1001421448610413,1.4830655359842586,1.0838217128913186,1.1100381632459675,0.9826130591717501,1.0004288864482933,0.9264572189130835,1.0415761382218807,0.9355038040505014,1.0345161387106965,0.9830387033280956,1.0256482242986729,0.9943736403552402,1.1774268480959962,1.0090517060529742,1.0022629678505652,0.9754818401191191,1.1126865820936545,1.1731940913171865,1.0935470377371477,0.9776362986067,0.9867274147844993,0.9732031180780336,0.9795203044845499,1.0913027554385168,0.9997224719384474,1.1363200905593422,0.9463698329522879,15.5,0.7180899908172635,9.111111111111114,4.875,5.946666666666669,2.944444444444444,2.1502040816326526,1.8854166666666665,1.1166540690350213,0.9500000000000002,15432.04323642841,17906.57487398708,6560.727714850901,5853.416028287425,29.258831572002073,0.475933381086112,15.333576935310045,0.9081543527280355,0.0,0.5094339622641509,1.4150998194548028,2.999570917317576,4.490901641187614,4.949524705661388,5.150963554582254,5.381179381920381,0.2152777777777778,0.007805325987144169,0.09020902090209026,0.04131355932203389,0.05171014492753623,0.024952919020715628,0.018377812663526952,0.01597810734463277,0.009544051872094197,0.008962264150943398,0.48413098396849524,56.298611111111114,27.335555337711988,14.615916955017301,396.572451556886,0.0,5.116382818948281,845.6488924320541,,728.1659293726608,715.8695521714438,731.6522248721533,728.3496721436877,1064.5692988338792,724.1444384461611,728.7857421814742,910.0605780061783,0.08417891152413179,0.04331496558840155,-0.3400327181666459,0.5147928922282402,0.3680010337337416,-0.27427592347443386,0.08116143890964794,-0.16704867499397358,0.0662846937801079,0.021612873050581686,-0.004784466980728373,-0.054075986026741754,0.06481101844751387,-0.10709318068717336,-0.17598774465130693,0.025146622774314863,0.017846765279411776,0.2548866508650592,0.07064911317092774,0.24228239371568364,-0.09342963382157798,0.06406978531001482,-0.10781461398479816,0.2033491664553266,-0.056616913061229734,-0.005125783535930007,0.16206072761768778,-0.11787275883567515,-0.06667269052144124,-0.005361415048425645,-0.05715587759015279,-0.022724643596083467,-0.013893931969422202,0.0065935336406772035,0.01713335297872339,-0.046337497146733596,-0.11095963219186507,-0.016558887808870056,0.052338535731710115,-0.0887333324616468,-0.11334254462822535,-0.15482096233670473,-0.11327314840739822,-0.15458879871156259,-0.02816096940803438,-0.08434022406816057,-0.009390759444749696,-0.15703201176459222,-0.0014109763280080053,-0.04575428346171359,-0.06941115083269801,-0.046555223986545526,-0.1200399283746827,0.015710416010779594,-2.7928320804930405e-05,0.028633094097207795,-0.0419897046094535,-0.0634830948250881,-0.052734436915200585,0.023439091995170525,-0.13026541858893403,-0.08822386909239624,-0.029967219709109108,-0.03285641570518007,-0.12452030956149392,-0.04702923719235072,-0.12992130691204726,-0.0647304168941765,-0.09966712822040384,-0.18688419590187083,-0.07350981628103237,-0.10283713618467147,0.004316538809253274,-0.0370877192834316,0.008994415746219498,-0.036367895533017336,0.02769258471596331,-0.03217350936169261,0.00451289187500841,-0.03089151622448827,-0.02876785150374592,-0.04749912296352541,-0.05290784518484108,-0.006705399436075335,0.038172513214067144,-0.029348355912066422,-0.06919782358834037,-0.0647663071391885,0.050875243762108786,-0.0029158343942010945,0.038481071643620884,-0.011637707622464381,-0.015293936119635271,0.07665110366499768,-0.048410628352299284,0.02644342737728542,36.595561535673745,0.0,16.90236562788001,12.980383898219504,28.922079783755876,35.08219097296036,37.35717366943194,38.94151899317294,39.92160532410819,136.00985635148683,108.57281737195588,4.709467427126739,22.727571552404207,0.0,27.437038979530946,77497.38187952594,76960.19451476236,6637.821922000818,428.0,101.0,136.0,175.0,236.0,269.0,318.0,383.0,432.0,928.5074285841821,72.0,5.849324779946859,6.710523109452428,7.602401335665818,8.488176242345745,9.38907215991958,10.287150034683448,11.194577978207562,12.100406527625182,13.012635561179609,0.5995203836930455,0.9756546762589927,1.1298168104061017,0.5565407968355147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6390518071770129,0.961799971787276,1.0018444093960084,0.5942396929596564,10.0,0.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,10.0,0.0,0.0,0.0,0.0,15.0,0.0,10.0,0.0,2.0,0.0,0.0,0.0,0.0,56.334691253389735,12.083681658295921,45.99609466627124,0.0,0.0,9.589074368143644,0.0,0.0,0.0,12.13273413692322,90.04720738325891,36.81018947509803,123.20815709410279,230.53519576364144,-1484.1268105562756,-73.42433968720518,-10.677171298966012,-47.875058405041145,1094.1146563572363,9231.860502926158,76.3836753790901,66.41626261097956,85.48018984190885,0.5,0.871690773612167,0.0765594126830753,170.28504690956035,0.036859566503839196,103.82625702014151,0.12830922638783318,15.0,0.3333333333333333,0.1987795382766703,0.4213507158825272,0.6308384344400144,0.6952613675404169,0.7235575490740281,0.7558960422552975,8.06550000000001,,3.2857142857142856,3.7999069334574216,2.52810940145491,3.2761873061487,-14.02389480843346,3.4270195838433297,3.2624635888514275,-5.426582993183166,255.3217999999991,65.92376562153338,0.0,0.0,0.0,69.87107626463002,110.36651384825076,94.0443796347981,0.0,45.99609466627124,4.976733742420574,0.0,6.3080984415095305,0.0,7.846589975291186,0.0,9.487138427825885,0.0,11.186433261731356,83.33333333333333,20.414467452041574,0.0,0.0,0.0,0.0,0.0,12.491000206114906,0.0,135.61599999999999,0.0,26.399802400984427,0.0,0.0,0.0,0.0,0.0,-0.43014384190661925,157.04453664644814,37.89490363040039,0.0,45.99609466627124,131.27118613954372,44.74608676744778,0.0,77.56849872310795,60.6636706846161,0.0,0.0,0.0,77.35917076013655,88.8282011976048,86.93839147006885,1691.2977848641087,,1456.2337777218672,1431.6256742851724,1463.2289837920243,1456.601547651371,2132.906211198382,1448.186577800267,1457.4740973901467,1821.5790439806742,86.93839147006885,1691.2977848641092,,1453.0461444596071,1427.9391974094303,1460.7812085694156,1453.4231569812268,2143.162492476192,1444.8618573084786,1454.309020774097,1825.5477390055403,5.041216765570002,1324.0962705471945,,1157.7745679999482,1137.4250265946173,1163.103615548413,1158.0776099852653,1712.531317387918,1151.0661047044744,1158.8068717072742,1458.5210453077725,1.2975879323890873,25.243250520359833,,21.734832503311452,21.367547377390633,21.839238564060064,21.74032160673688,31.83442106266242,21.61472504179503,21.75334473716637,27.18774692508469,2.520608382785001,845.6488924320541,,728.1659293726608,715.8695521714438,731.6522248721533,728.3496721436877,1064.5692988338792,724.1444384461611,728.7857421814742,910.0605780061783,133.69019607843137,0.0,17.61381150504847,0.0,0.0,0.0,0.0,139.25637290604516,9.424697367069108,0.0,56.525239959363404,0.0,0.07868897568341171,0.0,0.0,0.0,0.0,82.59931732139223,1154.6850543604905,196.69887490421758,416.94035750714306,624.2353281250784,687.983934086933,715.9839340869332,747.983934086933,2617.0,223.63426772902622,169.96479776038746,106.80499384877852,126.44000000000004,126.44000000000004,1.0,9.21992553715458,7.169925001442312,6.279727416406296,8.09381634136662,,8.107662002658602,8.10733006886906,8.105713813817582,8.107660827962047,8.101686761750488,8.107467736667761,8.10768684421916,8.107053892073635,0.09372727487173577,0.12080322897562121,,0.12100988063669554,0.12100492640103076,0.12098080319130719,0.12100986310391114,0.12092069793657444,0.12100698114429494,0.12101025140625611,0.12100080435930799,3.7394341009041576,3.9932078818798646,,3.9949170672231538,3.994876125631801,3.994676748504529,3.9949169223359298,3.994179808587336,3.994893106145571,3.9949201311795064,3.994842059977982,726.9700000000031,1783.8552391151911,618.0370384117748,,613.5532939185925,613.5135842195203,614.239371631771,613.5558930080616,617.5060529969315,613.5709761131235,613.552238875626,615.2396431307816,26.624705061420762,9.224433409130967,,9.157511849531232,9.156919167455527,9.167751815399566,9.157550641911367,9.216508253685545,9.15777576288244,9.157496102621284,9.182681240757935,9.388639692250797,8.328655914763855,,8.321374655427986,8.321309932469859,8.322492234647731,8.32137889154568,8.32779639727519,8.321403474342198,8.321372935864447,8.32411938193157,57.84100926829808,26.399802400984427,0.0,7.00322668222746,5.057629681980826,20.493156427724983,5.851326282901795,3.5733710841673103,17.61381150504847,900.7072004184112,305.37841297696525,-1965.9483601320005,-97.26154070872943,-14.143513382244608,-63.41768903651614,1449.318817746898,12228.982650001706,101.18162429536085,87.97829244605545,113.23132083334912,27648.0,118.0,4.76530472921412,3.005044584037375,0.28867513459481287,0.28867513459481287,1.0168256052173166,0.5732597096091903,0.11785113019775792,0.10206207261596575,0.0,0.0,0.0,0.0,0.0,0.0,0.3434189194640031,0.1619479727478387,0.9569179967411333,0.4184083251735727,48.14104218694238,41.43378443364004,32.350227161872354,23.58502618110707,28.198069276382405,18.51376267680318,24.57844467850592,14.545843531172045,19.630794253320335,10.36540742138713,16.827495967148288,8.016018914526587,12.087910065093665,5.290008118100657,8.998841090079765,3.5400969552461294,11.455571485678927,6.559757578893067,18.041211876930536,9.44265453186022,28.963193624499414,13.698027621800906,234.57866530200374,122.58727923271476,81.74437680263557,67.8164953144918,59.234367767607715,52.73719345910621,346.0,410.0,148.34309600000043,95.8869040000002,0.3381294964028777,762.14,22.875000000000004,15.388888888888877,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,6.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,24.0,24.0,139.0,0.0,2.0,144.0,24.0,2.0,14.0,130.0,26.0,72.0,118.0,0.0,0.0,0.0,53.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,12.0,0.0,2.0,67.0,14.0,0.0,2.0,12.0,0.0,6.0,24.0,0.0,0.0,0.0,0.0,4.0,4.465908118654584,7.880520857784271,5.0106352940962555,5.529429087511423,6.022236205774735,6.5638555265321274,6.779353564177613,7.048983537095079,7.360620696970679,7.68642053461119 +3121,CCCC(CCC)C(=O)O,0,16.615384615384617,5.843846153846154,2.076923076923077,4.0,167.07460971973018,64.70407669230768,1.181208249137846,5.889507692307693,4.713675213675213,7.481653230769232,166.0867953391629,17.84,6.058,2.6,3.2,147.050785673986,63.67640548000003,1.5775565054399991,6.191180000000002,2.788888888888889,7.563481120000002,214.92560770320796,12.565217391304348,5.758695652173912,2.239130434782609,2.152173913043478,156.74046078348672,42.93673378260869,1.2226622849671738,5.851197826086957,2.766304347826087,7.357525391304347,153.92299050661077,9.774193548387096,5.6332258064516125,1.8709677419354838,1.1935483870967742,164.44805841440206,32.41426441935483,1.0032964745867097,5.697048387096773,2.2123655913978495,7.306065677419356,122.78202558517671,9.816666666666666,5.8415,1.7166666666666666,1.0,166.34643416453721,31.778096283333333,0.9569141618304831,5.886741666666666,2.676388888888889,7.521385133333333,119.35959592091025,8.851851851851851,5.874444444444446,1.4814814814814814,0.48148148148148145,167.51203750980517,27.237874481481477,0.8835983517644812,5.9106851851851845,3.0370370370370376,7.564929037037035,107.36618179099695,4.977777777777778,5.809999999999999,1.1333333333333333,0.022222222222222223,175.21842865519062,11.186541355555553,0.699131236644,5.809744444444444,2.7333333333333334,7.577231022222222,75.69321676266132,2.25,5.005000000000001,1.0,0.0,176.96887594641177,3.78882,0.61184575613675,5.0325,1.25,6.818256000000001,51.99696241582737,1.0,4.840000000000002,1.0,0.0,184.91765202424898,1.016064,0.4446129048489999,4.840000000000002,1.0,6.718464000000001,31.08374443093026,7.147928994082841,0.12071005917159758,0.01954836984619239,0.36686390532544383,2.8402366863905333,1.1667468742956202,33.938281136094666,0.2092634353725444,0.11472899408284018,2.104207758053912,0.07739360946745559,47.39319532223745,-0.5079289940828408,-0.008156213017751452,-0.014372046225330148,0.12544378698224845,0.9136094674556212,-0.03729778146307899,-2.395503154556212,-0.007642766889073601,-0.008092994082840269,-0.11548980933596319,-0.004712920236686351,-2.50302476248155,-0.040905582711602564,0.02995883714947259,0.003116664925460949,-0.03074350398765116,0.5962181631077952,-0.1860649201277808,-0.4333542431180854,-0.03476117734182532,0.02538388217134035,0.5530293285310011,0.021829627990738336,-6.77075960051211,0.4823439587707576,0.004476045046764638,-0.000502949942050306,-0.04676464974231726,0.02576827638862375,-0.06694495505238346,2.2512553055926707,-0.008593094055174647,0.005661824775720556,-0.03300566265826814,0.0008856659667875303,0.6591239003562108,-0.4081854043392506,-0.014133136094674544,-5.226752078769867e-05,-0.10404339250493097,-0.532544378698225,-0.036415588747578824,-1.8864860066074949,-0.00596690312347643,-0.012627327416173574,-0.2872205785667325,-0.009802260749506877,-1.4124695962127063,-1.16787201402586,-0.01840236686390531,0.0011259854047699453,-0.05347359193513038,-0.9114617576156041,-0.21493570983342403,-5.562040107604645,-0.03828778565578939,-0.01752073197457813,-0.18682884067499456,-0.011851512601358713,-8.352324412881197,-2.2385272846811315,-0.045633136094674516,-0.0024148387429950135,0.053648915187376744,-0.8761341222879682,0.11841902447701717,-10.390442537804073,0.01308473566966416,-0.04530113083497698,-0.6520710059171597,-0.025550929125575224,-4.490102576477331,1.7174556213017755,0.02255917159763307,0.0016338934279621874,0.09467455621301778,0.8905325443786981,0.09575954818486249,8.114919998520708,0.02178607502620562,0.02347100591715981,0.2248520710059172,0.011691390532544239,8.342477799634096,4.313609467455622,0.036982248520709964,0.0005306442246706456,0.09467455621301776,1.1597633136094674,0.5154096786463065,20.599727863905322,0.10181180095399406,0.04124023668639057,0.37869822485207105,0.016660852071005747,28.29579805478135,,,0.4666666666666666,0.65,0.15,0.0,0.5,-0.35,0.9212438324409902,0.019546954735968836,0.019546954735968836,0.3014312088774382,0.08723610726464467,0.384638294236696,1.2226750413184284,0.47187440150134063,1.8500606729912623,1.5106215221708719,0.0,0.33943915082039056,0.0,0.33943915082039056,5.542885759692307,432.0,151.94,54.0,104.0,4343.939852712984,1682.3059939999998,30.711414477583997,153.12720000000002,122.55555555555554,194.52298400000004,4318.256678818236,446.0,151.45,65.0,80.0,3676.2696418496503,1591.9101370000008,39.438912635999976,154.77950000000004,69.72222222222223,189.08702800000006,5373.140192580199,578.0,264.8999999999999,103.0,99.0,7210.061196040389,1975.0897539999996,56.242465108489995,269.1551,127.25,338.44616799999994,7080.457563304095,606.0,349.26,116.0,74.0,10195.779621692927,2009.6843939999994,62.204381424375995,353.2169999999999,137.16666666666666,452.9760720000001,7612.485586280956,589.0,350.49,103.0,60.0,9980.786049872233,1906.685777,57.414849709828985,353.20449999999994,160.58333333333334,451.28310799999997,7161.575755254615,478.0,317.2200000000001,80.0,26.0,9045.65002552948,1470.8452219999997,47.714310995281984,319.17699999999996,164.00000000000003,408.5061679999999,5797.773816713835,224.0,261.44999999999993,51.0,1.0,7884.829289483579,503.3943609999999,31.460905648980003,261.4385,123.0,340.975396,3406.19475431976,54.0,120.12000000000002,24.0,0.0,4247.253022713882,90.93168,14.684298147282,120.78,30.0,163.638144,1247.9270979798569,9.0,43.56000000000002,9.0,0.0,1664.2588682182409,9.144576,4.001516143640999,43.56000000000002,9.0,60.466176000000004,279.75369987837234,185.84615384615387,3.138461538461537,0.5082576160010022,9.53846153846154,73.84615384615387,30.335418731686126,882.3953095384613,5.440849319686155,2.9829538461538445,54.70940170940171,2.0122338461538454,1232.2230783781738,-12.698224852071018,-0.2039053254437863,-0.3593011556332537,3.1360946745562113,22.84023668639053,-0.9324445365769747,-59.8875788639053,-0.19106917222684003,-0.2023248520710067,-2.8872452333990797,-0.11782300591715877,-62.57561906203874,-1.881656804733718,1.3781065088757392,0.14336658657120366,-1.4142011834319534,27.42603550295858,-8.558986325877918,-19.934295183431928,-1.5990141577239647,1.1676585798816561,25.439349112426047,1.0041628875739634,-311.4549416235571,29.90532544378697,0.27751479289940756,-0.031182896407118972,-2.89940828402367,1.5976331360946725,-4.150587213247775,139.5778289467456,-0.5327718314208281,0.35103313609467446,-2.0463510848126245,0.054911289940826884,40.86568182208507,-24.491124260355036,-0.8479881656804726,-0.00313605124726192,-6.242603550295859,-31.952662721893503,-2.1849353248547296,-113.1891603964497,-0.3580141874085858,-0.7576396449704145,-17.23323471400395,-0.5881356449704126,-84.74817577276238,-63.065088757396445,-0.9937278106508869,0.060803211857577054,-2.88757396449704,-49.21893491124262,-11.606528331004897,-300.3501658106508,-2.067540425412627,-0.9461195266272191,-10.088757396449706,-0.6399816804733705,-451.0255182955846,-100.73372781065092,-2.0534911242603533,-0.1086677434347756,2.4142011834319534,-39.42603550295857,5.328856101465773,-467.56991420118334,0.5888131051348872,-2.038550887573964,-29.34319526627219,-1.149791810650885,-202.05461594147988,41.21893491124261,0.5414201183431937,0.0392134422710925,2.2721893491124265,21.372781065088756,2.2982291564366997,194.758079964497,0.5228658006289348,0.5633041420118354,5.396449704142013,0.2805933727810617,200.2194671912183,38.8224852071006,0.3328402366863897,0.004775798022035811,0.8520710059171599,10.437869822485206,4.638687107816758,185.3975507751479,0.9163062085859466,0.3711621301775151,3.4082840236686396,0.14994766863905173,254.66218249303216,0.7983127663125442,0.6761239279899638,0.5243048905570452,0.4385684689863939,0.35814468604317634,0.26125113622371676,0.22617409345688855,0.1623514546750024,0.1725095397512522,0.12091239638082454,0.1592236335435799,0.08927095161102523,0.14433756729740643,0.14433756729740643,,,8.028629964116726,5.797003581728966,3.554699322284463,2.2945997063115655,0.42795275360246504,-0.334258658835433,3.1227245762912395,0.9728710628465087,6.022007812143466,0.9871447154965197,13.642537099535284,11.057656298806991,16.013899230856815,11.80914897018562,1.8816469584412259,0.7416101495645805,3.5007335657739858,2.3439871590696506,7.008289747404712,1.2260948615929506,3.7136595605301395,2.5400980071396577,20.786168665972813,14.701444420751635,0.2635713530845122,0.4386502356253638,0.6276144219126136,0.6930747460828791,0.6930747460828791,0.6930747460828791,3.4998573332807723,93.43071362054202,0.0,1.0,2.0,0.0,0.0,4.0,0.0,1.0,0.0,3.4615384615384612,2.638590728235683,1.750375961704882,1.4426836540125745,1.4426836540125745,1.4426836540125745,150.01966081093462,380.2815221217263,36.73565501588531,14.626212389297166,28.83586633552588,,6.0,79.0,5.969305287951849,4.794537184071822,5.917906046161393,0.0,25.683286491704038,0.0,0.0,13.847474399381248,0.0,5.106527394840706,4.666666666666666,6.5,1.5,0.0,5.0,0.0,0.033333333333333395,-3.5,0.08782051282051279,0.0,-0.08782051282051279,0.05030303030303018,0.16712500000000008,0.0,0.5128205128205132,0.8533333333333333,0.42500000000000043,0.5128205128205132,0.8030303030303031,9.212438324409902,0.19546954735968836,0.19546954735968836,3.014312088774382,0.8723610726464468,3.8463829423669598,12.226750413184284,4.718744015013407,0.5468749999999999,0.35714285714285715,0.0,0.2142857142857143,0.875,0.29191862101219146,-0.3079513101952256,-0.06357985872944102,-0.01184428116135483,-0.0384939137744032,0.7080813789878084,0.7469704660431062,0.0383268608619242,0.02872963330935024,0.04149835922461702,-1.6722442259185444,1.1622516556291391,0.8029411764705882,1.6810623175508317,1.258064516129032,0.5552083333333331,1.5348732402515932,1.1743764283402869,1.5274722960479612,0.8312733377344087,0.7402749570379629,0.7783667902186013,1.432068540504011,0.9621094874748056,0.3757725916453536,0.48399352391133676,1.5383941093969142,0.5961277173913041,1.3728544347943743,0.9791543761222683,1.3821511098192603,0.43446138549564545,0.3220242421360794,0.3059470238503633,1.3060104543314701,0.854852061525315,0.7271900695762176,0.7533355544735981,1.3104838709677418,0.8845766129032254,1.0561347032646808,0.860116894894483,1.0460425808664842,0.7329076986989098,0.7675369523915114,0.7288369219034181,0.9843737948742217,1.0739169426048565,1.2944240196078434,1.1248326080502782,1.397849462365591,1.3372395833333328,0.9787177059977238,1.0683300927899793,0.968800864949697,1.2686110910541262,1.342954225902203,1.329612694757402,0.9735412321208738,1.1932410473387294,1.4382489106753813,1.302471946838379,0.9221923536439665,1.4920910493827155,1.0874641177752487,1.18703343643331,1.0764454054996628,1.4095678789490291,1.4223580516933116,1.4773474386193357,1.0817124801343043,1.3272626931567328,1.8905228758169936,1.4223534031224028,0.17473118279569888,1.4895833333333328,0.6007605797099987,1.3062780602678306,0.6277850861692968,1.8550963079102454,1.8963833775972507,1.9075980362174352,0.8347370401732667,0.4203745860927152,0.08961397058823523,0.5072329512978043,0.0,0.042317708333333315,0.5631734410034145,0.42875486081503195,0.5780487025754543,0.1283333634188103,0.05711998125292923,0.03683095786389712,0.5709381518186896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.1111111111111116,0.625,0.40000000000000013,0.05555555555555555,0.0,0.0,0.0,0.0,1216.4070355571466,1565.2808928035392,826.5796041744106,664.2137713845588,8.526795043468544,0.46001598626116186,4.604333011900575,0.8519066760440197,0.0,0.875,1.2389012566026305,2.0618489899054087,2.9500637564362098,3.2577560641285173,3.2577560641285173,3.2577560641285173,0.2222222222222222,0.0,0.11111111111111116,0.0625,0.04444444444444445,0.009259259259259259,0.0,0.0,0.0,0.0,0.44953703703703707,10.0,5.76,4.48,62.24960168084558,1.0,3.124531227491921,27.340800413951413,,25.795470280441396,25.705856074365204,25.989551459749197,25.797316875015564,29.350589183444033,25.773554385708458,25.799255049612132,27.480866204828256,-0.0710596026490067,-0.06756862745098019,-0.7352043335792278,0.3419354838709675,0.32166666666666655,-0.031967329233769,-0.07058410368368663,-0.0365222279538107,-0.07054009448559023,-0.054885174191532576,-0.06089547017015866,-0.05281401149390535,-0.005722718111143073,0.24818840579710144,0.1594334949657201,-0.08380084151472653,0.20991847826086948,-0.15947325356248376,-0.012768891900574083,-0.16611204570899454,0.22125080389889845,0.26282068698505,0.28205982562317117,-0.14286353883666478,0.06748023926511426,0.03708096141682471,-0.025728485086354655,-0.12747138397502605,0.009072580645161277,-0.057377445380172094,0.06633380448953775,-0.04106352378224443,0.0493495547571212,-0.01568555316457611,0.011443657595010573,0.013907564068526564,-0.05710540838852098,-0.11708333333333328,-0.002673753422865553,-0.2836021505376344,-0.1875,-0.03121121603138073,-0.05558578523887424,-0.0285138352663176,-0.11006221676672247,-0.1364982034057179,-0.12665465297401302,-0.029803215136877646,-0.16338606818739265,-0.15245098039215682,0.05759996427473279,-0.14575866188769407,-0.3209104938271605,-0.184217943556252,-0.16388691240138267,-0.18296452788145706,-0.1527140729738053,-0.08878821017549343,-0.15313296127301484,-0.17623467580296673,-0.31317144959529075,-0.3780392156862743,-0.1235314638506992,0.14623655913978495,-0.30847222222222204,0.10149504325735453,-0.30615700589366146,0.06252757748323236,-0.3948533777108449,-0.30988907983127634,-0.3301426216116658,-0.09474150341516477,0.24027317880794702,0.18688725490196034,0.08358208079843728,0.25806451612903225,0.3135416666666665,0.0820739701939838,0.23910816125246187,0.10410836937384989,0.20457780620139096,0.1068583033900953,0.15106402987265413,0.1760269115199267,0.603476821192053,0.3063725490196072,0.02714519056298722,0.25806451612903225,0.4083333333333332,0.4417493545525595,0.6069761689255594,0.4865245606464505,0.35945784251026397,0.1799718793938447,0.21527426082914147,0.597043475595844,2.94168275343288,4.298279727294167,1.0,11.272892827384595,19.180270296399947,21.76836001183223,22.078513857986067,22.078513857986067,22.078513857986067,18.500606729912622,15.10621522170872,0.0,3.3943915082039053,0.0,3.3943915082039053,857.0083897616145,610.7868955944928,368.63149755488723,0.0,10.0,10.0,9.0,6.0,1.0,0.0,0.0,0.0,144.115029752,9.0,3.6635616461296463,4.3694478524670215,5.1298987149230735,5.872117789475416,6.634633357861686,7.387090235656757,8.148156439921625,8.904222737368716,9.664278133535126,0.5128205128205128,0.956923076923077,1.1438880505301472,0.46180104135311867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5903428834638416,0.9423831070889895,0.9909238612807442,0.5293931015046424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,5.106527394840706,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,26.689117645233267,12.841643245852019,0.0,5.917906046161393,105.2317432767749,-111.01125753419157,-22.919467583778193,-4.26966375131506,-13.876407191773946,255.25140408770952,269.2702645875347,13.816187432107114,10.356548637982105,14.95945914375193,0.5,0.748671497911336,0.4559830640716796,40.8637078024907,0.2900563679239359,3.909320163060775,0.2513285020886639,3.0,0.5555555555555556,0.2635713530845122,0.4386502356253638,0.6276144219126136,0.6930747460828791,0.6930747460828791,0.6930747460828791,2.2874,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,40.9418,9.901064578912528,0.0,0.0,5.917906046161393,39.53076089108528,0.0,0.0,0.0,0.0,2.9444389791664403,0.0,4.07753744390572,0.0,5.407171771460119,0.0,6.836259277277067,0.0,8.313607139317558,13.333333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.880000000000003,0.0,10.479351851851852,0.0,0.0,0.0,0.0,0.0,-0.6354629629629625,29.741089313783824,0.0,0.0,0.0,11.075832682792555,4.794537184071822,5.917906046161393,39.53076089108528,0.0,0.0,0.0,0.0,12.006827075181086,15.34891497005988,11.252719553356009,54.68160082789307,,51.49094056083051,51.29742643438669,51.90984924510518,51.494927518339466,59.1340960726225,51.44362039927027,51.499112179084634,55.12133020087139,11.252719553356009,54.681600827893085,,51.09094056083052,50.840283577243824,51.6328345476999,51.09610259178156,60.86576689556514,51.02966691089818,51.10152049873433,55.75972136576422,4.271558410139715,37.43863509299114,,35.89330495945987,35.80369075338082,36.08738613877286,35.895151554034086,39.448423862488035,35.87138906472626,35.89708972863071,37.5787008838687,1.125271955335601,5.468160082789307,,5.149094056083051,5.12974264343867,5.190984924510518,5.149492751833947,5.91340960726225,5.144362039927027,5.149911217908463,5.5121330200871395,2.135779205069857,27.340800413946532,,25.795470280415255,25.705856074336207,25.98955145972825,25.797316874989477,29.350589183443425,25.77355438568165,25.799255049586105,27.480866204824093,24.501960784313727,0.0,4.038888888888889,0.0,0.0,0.0,8.635462962962963,25.764020393299347,3.583611111111111,0.0,0.0,0.0,-0.10185185185185208,0.0,0.0,0.0,0.0,13.764220639120701,269.88345790916145,32.21143267166839,53.60807373754062,76.70165766734145,84.70165766734145,84.70165766734145,84.70165766734145,55.0,78.77340690733907,90.59968945532297,37.57901461112691,37.3,37.3,1.0,4.174387269895637,4.169925001442312,2.8217850981483914,3.1029003135673476,,3.1021139486790648,3.1020403562300167,3.1022218444289913,3.1021153017999135,3.097619484698215,3.1020973918945383,3.102116715050658,3.101292486010757,0.28217850981483916,0.3102900313567348,,0.3102113948679065,0.3102040356230017,0.3102221844428991,0.31021153017999137,0.30976194846982147,0.3102097391894538,0.3102116715050658,0.3101292486010757,1.0373696982092682,1.1323372591259464,,1.1320837980187648,1.132060074415052,1.1321185787764594,1.1320842342118178,1.130633908336734,1.132078460745865,1.1320846897881858,1.131818955570746,131.01999999999998,33.25373563679605,32.24782639768401,,31.998521069772554,31.984898515428924,32.02780046701549,31.998801122640785,32.46910901924549,31.995195271523023,31.999095035339288,32.239825791804876,3.325373563679605,3.2247826397684007,,3.1998521069772554,3.1984898515428926,3.202780046701549,3.1998801122640783,3.2469109019245486,3.1995195271523023,3.1999095035339287,3.2239825791804875,3.5041671107699055,3.473450642448973,,3.4656896851621,3.465263870016934,3.4666042902364254,3.4656984371804236,3.480289145616478,3.4655857437615167,3.4657076222541883,3.473202514143831,0.0,10.479351851851852,8.635462962962963,0.0,-0.7373148148148145,0.0,3.583611111111111,4.038888888888889,0.0,161.8683356938394,37.93427001906325,-40.01768750881472,-8.262081810518639,-1.5391418272621045,-5.00221093860184,92.01382951474136,97.06739247018199,4.980502730103607,3.733361248853154,5.392632915010112,131.0,10.0,0.5,0.1970421949668794,0.0,0.0,0.16666666666666666,0.026352313834736494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.983127663125442,6.7612392798996375,4.718744015013407,3.947116220877545,3.5814468604317633,2.612511362237168,2.2617409345688855,1.6235145467500238,1.5525858577612697,1.0882115674274209,0.9553418012614794,0.5356257096661514,0.14433756729740643,0.14433756729740643,0.0,0.0,1.0404401145198807,0.4021350320175937,1.1237734478532144,0.5036179828009687,1.3737734478532142,0.4706680646105716,36.56521117656976,25.49669502203276,22.785775886097657,21.92369623300093,21.92369623300093,21.92369623300093,38.0,39.0,25.632687999999977,16.919311999999998,0.0,9.02,5.222222222222222,2.611111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,26.0,0.0,0.0,25.0,0.0,1.0,1.0,24.0,1.0,9.0,24.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,1.0,1.0,0.0,10.0,2.0,0.0,0.0,2.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,2.3978952727983707,0.0,2.5649493574615367,2.5649493574615367,2.4849066497880004,2.1972245773362196,0.6931471805599453,0.0,0.0,0.0 +9588170,CO/N=C1\CN(c2nc3c(cc2F)c(=O)c(C(=O)O)cn3C2CC2)CC1CN,0,26.041666666666668,6.71321875,3.625,9.916666666666666,168.37939306677043,103.8097298156202,1.4171983978537501,6.7339125,6.693287037037037,8.13570025,218.8366062448861,27.176470588235293,6.690254901960784,4.411764705882353,8.862745098039216,151.5594866918245,104.26415597716077,1.731474820705882,6.805217647058823,3.6279956427015247,8.05164705882353,264.38291294319345,22.897727272727273,6.571781818181819,4.0227272727272725,7.4772727272727275,159.76670182212604,86.48968530307273,1.4839942074050114,6.65135,3.6148989898989896,7.997425045454546,221.56514396427912,21.71171171171171,6.552089189189188,3.6036036036036037,6.891891891891892,163.4042815688291,81.76212109464505,1.3722397240953514,6.617752252252252,3.672672672672673,7.988972504504505,204.6621745912318,21.641666666666666,6.764272500000001,3.3583333333333334,6.75,165.79124172535987,80.66966135284,1.3170696557086417,6.804779166666666,4.44861111111111,8.2023281,197.30942915449526,19.796747967479675,6.6191455284552845,3.178861788617886,5.715447154471545,164.617489773943,72.88377662298537,1.3044154074555854,6.671683739837398,4.014453477868112,8.073448260162602,191.05269554435932,18.376,6.5439272,2.872,5.024,166.24211390655185,67.0899788191104,1.1795522723610479,6.5858256,3.8715555555555556,8.032668767999999,170.92436188516737,16.646551724137932,6.647412931034483,2.586206896551724,4.25,170.8034921541046,59.54635598608275,1.1066000050700946,6.662994827586206,4.668103448275862,8.151260931034484,157.78438768329073,14.38,6.325738999999999,2.6,3.34,168.98310379183633,49.89243261814399,1.1217640720398,6.362499000000001,3.2283333333333335,7.867361120000001,152.21543895595678,7.979166666666667,0.2054051649305554,0.029366835784945266,0.7065972222222222,4.854166666666667,1.958771897300971,38.00133147758228,0.21356724510218747,0.18457847222222215,2.776186342592592,0.1251493315972222,45.433567697124694,0.23897058823529413,-0.00782387408088233,-0.012425084823631964,0.29585375816993464,1.4840686274509804,-0.27604793345833134,1.1590023772244467,-0.0022182733479472715,-0.0053019199346405225,-0.12579146241830058,-0.005978269505718945,0.9653017023376632,0.5369318181818182,-0.0017404158775252442,-0.0003872924532367738,0.049558080808080864,0.7272727272727273,-0.1080699596438009,2.633863483797307,0.012308779989215923,0.0003278724747474685,0.260061553030303,-0.001440199021464649,3.810747810961594,0.9498873873873874,0.0033957359703453405,-0.003505501052240276,0.011871246246246284,0.5016891891891891,-0.05887617870542907,4.55421117647653,-0.0006670697920613631,0.006283502252252238,0.029713307057057083,-0.0016197580236486538,3.7428938225982304,0.0020833333333333333,0.009007873263888916,0.005578127940200974,-0.015624999999999974,-0.075,0.080758547193614,0.05598349889557757,0.008640411098683331,0.0072059722222222325,0.16591435185185183,0.00776105173611114,0.6744070888825092,-0.7017276422764228,-0.01235728213922762,-0.003526485749681281,-0.09717987804878048,-0.3988821138211382,-0.01307415327143334,-3.3728662947849686,-0.014479784822699689,-0.01174646002710026,-0.0628846262420958,-0.006600124957655813,-3.6460475822226464,-0.1115,0.0028565350694444423,0.0006370908614935416,-0.1272638888888889,-0.2635,-0.280190302937934,-0.5330315025955825,-0.036977047781049495,0.003358894444444442,-0.06731597222222221,-0.0005037282638888865,-5.309162705713615,-1.0129310344827587,-0.00397005357998082,-0.0007618337942063618,0.011434386973180059,-0.7349137931034483,0.17108349209712484,-4.70567576447589,0.0045699236690064544,-0.006649449233716457,0.031564295977011506,0.00035845144875481686,-2.948442769470611,-0.9625,-0.019870852430555558,0.003929245997167442,-0.0507638888888889,-0.5975,0.18319498161832734,-4.897495703357359,0.0029050003396749956,-0.020403888888888885,-0.38859375,-0.008798115763888913,-2.670784374625525,,,0.45068027210884354,1.1785714285714286,0.48214285714285715,0.03571428571428571,0.6964285714285714,-0.21428571428571427,0.8933909935555256,0.016968673455264822,0.029254387740979108,1.0054022761482793,0.23187965338087232,0.24808787182004483,1.898793269703805,0.4799675252009172,2.0255208736852905,1.3400871528482734,0.3679733239895033,0.2533265895720164,0.06413380727549746,0.6854337208370171,8.107290257083346,1250.0,322.2345,174.0,476.0,8082.210867204981,4982.86703114977,68.02552309698001,323.2278,321.27777777777777,390.51361199999997,10504.157099754533,1386.0,341.203,225.0,452.0,7729.53382128305,5317.4719548351995,88.30521585599999,347.0661,185.02777777777777,410.634,13483.528560102865,2015.0,578.3168000000001,354.0,658.0,14059.469760347092,7611.0923066704,130.591490251641,585.3188,318.1111111111111,703.773404,19497.732668856563,2410.0,727.2819,400.0,765.0,18137.87525414003,9075.5954415056,152.318609374584,734.5705,407.6666666666667,886.7759480000001,22717.50137962673,2597.0,811.7127,403.0,810.0,19894.949007043186,9680.3593623408,158.048358685037,816.5735,533.8333333333333,984.2793720000001,23677.13149853943,2435.0,814.1549,391.0,703.0,20247.951242194988,8964.7045246272,160.443095117037,820.6170999999999,493.77777777777777,993.034136,23499.481551956196,2297.0,817.9909,359.0,628.0,20780.26423831898,8386.2473523888,147.444034045131,823.2282,483.94444444444446,1004.083596,21365.54523564592,1931.0,771.0999,300.0,493.0,19813.205089876134,6907.377294385599,128.36560058813097,772.9073999999999,541.5,945.546268,18302.988971261726,1438.0,632.5738999999999,260.0,334.0,16898.310379183633,4989.243261814399,112.17640720398,636.2499,322.83333333333337,786.736112,15221.543895595678,383.0,9.85944791666666,1.4096081176773727,33.916666666666664,233.0,94.0210510704466,1824.0639109239496,10.251227764904998,8.859766666666664,133.25694444444443,6.007167916666665,2180.8112494619854,12.1875,-0.39901757812499883,-0.6336793260052301,15.088541666666668,75.6875,-14.078444606374898,59.109121238446775,-0.11313194074531085,-0.2703979166666666,-6.4153645833333295,-0.3048917447916662,49.230386819220826,47.25,-0.1531565972222215,-0.034081735884836095,4.361111111111116,64.0,-9.51015644865448,231.77998657416302,1.0831726390510013,0.028852777777777228,22.885416666666664,-0.1267375138888891,335.34580736462027,105.4375,0.3769266927083328,-0.38911061679867065,1.3177083333333375,55.6875,-6.5352558363026265,505.5174405888948,-0.0740447469188113,0.6974687499999984,3.298177083333336,-0.17979314062500057,415.46121430840356,0.25,1.08094479166667,0.6693753528241169,-1.874999999999997,-9.0,9.69102566323368,6.718019867469309,1.0368493318419998,0.8647166666666679,19.909722222222218,0.9313262083333368,80.92885066590111,-86.3125,-1.5199457031249972,-0.4337577472107975,-11.953124999999998,-49.0625,-1.6081208523863006,-414.86255425855114,-1.7810135331920618,-1.444814583333332,-7.734809027777783,-0.811815369791665,-448.4638526133855,-13.9375,0.3570668836805553,0.07963635768669271,-15.90798611111111,-32.9375,-35.02378786724175,-66.62893782444782,-4.6221309726311866,0.41986180555555525,-8.414496527777777,-0.06296603298611081,-663.645338214202,-117.5,-0.4605262152777751,-0.08837272012793797,1.3263888888888868,-85.25,19.84568508326648,-545.8583886792032,0.5301111456047487,-0.771336111111109,3.661458333333335,0.04158036805555876,-342.01936125859083,-96.25,-1.9870852430555557,0.3929245997167442,-5.07638888888889,-59.75,18.319498161832733,-489.74957033573594,0.29050003396749957,-2.0403888888888884,-38.859375,-0.8798115763888912,-267.07843746255253,0.7142596800764638,0.5450379490636241,0.43351905502018334,0.2896142736318422,0.2694085705830292,0.15345238151470394,0.16470217430112374,0.07744224711048835,0.10296177040758706,0.040476086460305045,0.06274597381210922,0.020379411450389018,0.040243509871436906,0.01051686684298222,0.02543372239825913,0.005423211411104559,9.004071167274306,5.686241009559815,4.107727037059076,2.178636573267685,0.49765586128193795,-0.45084932094256525,3.2956777835637627,0.9726717052872441,7.004065205188034,0.9975708688972511,17.424773135324934,10.95202025636499,19.000142629647854,11.702686910557077,2.001328920712394,0.545839137514008,3.9886816849642517,2.226551130970853,8.001920914732686,1.2313158748006445,4.009970062548418,2.421756931586448,20.891425262292223,13.304118290137549,0.3093050450772808,0.7022998526310343,0.8582426292052634,0.8795810391632284,0.8938066458018713,0.8938066458018713,1.4983925956629462,1046.4282009506107,0.0,4.0,3.0,0.0,4.0,3.0,2.0,1.0,0.0,3.7730594249613683,1.4709033111276621,0.5573934896284038,0.43239348962840385,0.3490601562950726,0.3490601562950726,238.09576813049497,1912.050573204859,84.38430512983217,39.834386941767896,83.63835406956304,,13.0,601.0,17.215316520898284,19.086016810659167,34.3744625800739,25.34595422050843,18.90801031431363,13.30664111289061,9.467009378641833,0.0,10.139691247697748,10.571256060898818,12.619047619047619,33.0,13.5,1.0,19.5,0.0,0.049319727891156476,-6.0,0.2185134310134313,0.040233686067019714,-0.17827974494641158,0.06007241606319935,0.22452826006649412,0.0,0.6621031746031748,0.9207482993197277,0.4435897435897435,0.6218694885361551,0.8606758832565283,25.014947819554717,0.47512285674741506,0.819122856747415,28.151263732151822,6.492630294664425,6.946460410961255,53.16621155170654,13.43909070562568,0.48947173993350584,0.17320754716981132,0.0,0.45962264150943405,0.4444444444444444,0.31377055309941715,-0.9385085446507526,-0.07258445992850715,-0.01955226134689068,-0.07219296497313483,0.6862294469005829,2.0525578106212468,0.059419922970106225,0.04276162105460931,0.05864450887489276,-2.713053501372963,0.700199662110275,0.6883035637100102,1.430846199221346,0.7064604711663535,0.4152991668770512,1.2885250001487503,0.7015217701629214,1.1279143186085165,0.6660016939320982,0.6304837636758804,0.7168026435869297,0.9616115448995749,0.7746409921671018,0.7507728944424078,0.9771330388863237,1.125921375921376,0.7151775263363247,1.0984934956899737,0.7732324497452202,0.9686767942100875,0.7382132515631612,0.5115738657090473,0.7447087180250126,0.8918012899313824,0.7705642979794416,0.8026148376738496,0.9724200455575648,1.0674015538880404,0.8223137300390521,1.0967437883362035,0.7723655926800047,0.9989017521297946,0.7834375989199481,0.7452111030202645,0.8008219414887406,0.8889969788500047,0.9331483899042646,0.9269016710917091,0.8350171852158089,1.0393120393120394,1.0136266094420603,0.9793281854372464,0.928704172706736,0.9095936401539685,0.9234779508865923,0.8720803585387463,0.9157783073457453,0.9076132565897983,1.0286144898002505,1.1101221855857328,1.0614057462720046,1.1716905375441962,1.0700826965351198,1.2058643719117628,1.0367466395290212,1.0968384281930028,1.0992229144392853,1.0178417767293,1.082627005204621,1.054986386006455,0.9900678851174934,0.9873508214941888,1.000510704609795,1.1806584766584767,1.0481201716738198,1.1604741733336976,0.991348282876117,1.1517705435086085,0.9803142595929917,1.0235805930481008,0.9997066683183974,1.0890563974770031,1.1800778788151616,1.2791405262390727,0.9939534590874395,0.9138778276709311,1.2189951161758177,1.058400949992864,1.182413794014373,0.9520073243934077,1.2814806816868247,1.3733928022699786,1.2468275027960074,1.023992036553239,1.1424804177545693,1.168051152289418,0.6098425041655686,0.9977395577395578,1.1316309012875538,1.024651109446033,1.160387213774577,0.9995942837173208,1.1801899410443466,1.2152545729324093,1.0973887315036073,1.0803749382259047,6.0,0.19560044893378228,3.6111111111111125,2.479166666666667,2.415,1.632222222222222,0.9069841269841269,0.50531462585034,0.36558327034517507,0.2209490740740741,5957.755182717467,6532.151723300766,2812.5611169535523,2602.9586149294705,14.744863940305729,0.47672791014572824,7.7155757686606705,0.9110516677442022,1.0,0.4444444444444444,1.8119030757597878,4.114059189593494,5.027569011092752,5.152569011092752,5.2359023444260835,5.2359023444260835,0.19354838709677413,0.011505908760810722,0.0839793281653747,0.04958333333333334,0.04735294117647059,0.03472813238770686,0.021594860166288737,0.015312564419707277,0.014623330813807001,0.01004313973063973,0.48227192605091307,21.240374609781476,8.625708884688091,4.257999496094734,158.74553787389897,1.0,4.2980027177911655,145.06679605915448,,106.10724992301724,102.76470978381748,101.35512319359366,106.0779582740112,167.2759287632186,104.74068597899695,106.33256510124218,142.90362639146716,0.029949316541237905,-0.038089957881669974,-0.4230992032856877,0.4187021245844776,0.3057308760414037,-0.14092908614765357,0.030498993907836218,-0.010386767628555933,-0.02872447621224921,-0.04531088583226295,-0.04776908857139784,0.02124644291138847,0.06729171611678139,-0.008473087218199477,-0.013188089315203546,0.07013625195443386,0.14982442450253608,-0.05517230454077504,0.0693097684051169,0.057634212509162765,0.0017763310682988446,0.09367582753376698,-0.01150784429356565,0.08387516112239543,0.11904593888928093,0.016531891841635973,-0.11936938245275137,0.016800584368151992,0.10335227931794455,-0.030057700330781586,0.11984346335767594,-0.003123464891548253,0.03404244371839449,0.01070292242317883,-0.012942602273431605,0.0823816841228408,0.0002610966057441253,0.04385417117887152,0.18994650908425648,-0.022113022113022077,-0.015450643776824032,0.04122917390477816,0.001473198351710474,0.04045756686400611,0.03904015530883063,0.05976340611808849,0.06201432829932432,0.014843806530412307,-0.08794497866649686,-0.06016052295182277,-0.12008395373290821,-0.13753221070294241,-0.08217313932795979,-0.006674668596914456,-0.08875652940673112,-0.06779965165431344,-0.06363938267382654,-0.022651442836279446,-0.05273799606774974,-0.08025008307796594,-0.013973890339425588,0.013906831750848118,0.021694229033014937,-0.18010810810810812,-0.0542832618025751,-0.14304386504830582,-0.014026653326871667,-0.1731400700671901,0.018197650050979515,-0.02424764187815936,-0.004025017612639548,-0.11685550958943536,-0.12694697037904024,-0.019327915056678534,-0.025941977534975402,0.01618232652715409,-0.15139854965221253,0.08734222312095863,-0.12382923391123436,0.02139805505670985,-0.03602505294176935,0.011369660419672915,0.002864189877645124,-0.06489569098174093,-0.12062663185378592,-0.09673978956309892,0.13379875264538194,-0.07184275184275186,-0.1230901287553648,0.09352542880095185,-0.1288769501733508,0.013602274722816289,-0.11054316705105101,-0.13997394340507585,-0.07030094089678858,-0.05878438586267017,4.642932890737359,18.94338063376255,13.286482570835512,18.655084235169127,41.82382515547308,44.286184722211004,44.870643055544335,44.954643055544324,44.954643055544324,56.71458446318813,37.522440279751656,10.303253071706092,7.093144508016461,1.7957466037139287,19.19214418343648,7013.966732518401,6392.752091667446,1476.0679182060594,210.0,46.0,63.0,87.0,115.0,143.0,166.0,180.0,206.0,389.1499323400006,31.0,5.043425116919247,5.937536205082426,6.85751406254539,7.774435510302958,8.70167907103957,9.626085789491903,10.556307407873451,11.484186426630423,12.415867498074652,0.7083333333333334,1.0204166666666665,1.1456543490552353,0.6754006799322844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6569468562874251,1.0035947712418303,1.030696164117504,0.6398718111812202,2.0,1.0,0.0,0.0,0.0,2.0,3.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,5.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,25.144792834381356,18.320426253742255,11.635083618880923,5.428790391900541,0.0,4.794537184071822,14.16893075269385,0.0,0.0,5.15571272675054,18.90801031431363,31.246103258747585,17.642665623148073,200.57902254528514,-599.945165908546,-46.399892789889805,-12.49885762309471,-46.14962814681124,438.6747906757801,1312.105407296313,37.98441233994237,27.33552931867319,37.4887259227518,0.46153846153846156,0.7025412711776917,0.1596410627009853,140.74562274981093,0.11391426356280128,85.02529675876102,0.29745872882230845,7.0,0.16129032258064516,0.3244252894313662,0.7366314794525958,0.9001974517185334,0.9225789806874135,0.9374999999999999,0.9374999999999999,0.966,,2.047619047619048,2.4614398075111508,2.1724878643179855,2.077352181723184,-8.918290816129252,2.200101255973872,2.0087941664361777,-3.739260718749954,100.39270000000002,19.12906821032398,0.0,9.551078168738563,16.807286250074117,18.88348407499998,31.64397648986574,33.86721054878994,0.0,0.0,4.143134726391533,1.9459101490553132,5.5093883366279774,3.9318256327243257,7.077498053569231,5.860786223465865,8.742414582525413,7.753194269884341,10.461759580888051,34.0,2.3869642069790875,4.4268778344671205,0.0,0.0,0.0,0.2534561602418748,-0.9858477186660801,1.6704043052406148,48.98,0.0,23.934849526775935,0.0,0.0,0.0,0.0,3.9688274533106784,-0.6355188797437517,54.991408754651296,16.062367599913205,10.208277825509848,0.0,53.08266261331707,4.8375885837366335,11.735126887207288,29.241472750768796,22.213460550897047,0.0,11.033401435232523,0.0,32.41923263674965,31.533449101796407,36.14146015570175,290.1335921183089,,212.06824134263312,205.35360243852705,202.55506868259317,212.0075342493279,336.19309945322607,209.32422186828148,212.52164490488178,286.1566933408844,36.14146015570175,290.13359211830885,,210.2808505810691,203.23834051278453,200.76952315174225,210.19212468731962,343.4701483425665,207.41792931277774,210.76725293012876,289.5465135016842,5.052370401313185,211.17252941258894,,153.0398334699889,147.7568663780111,144.74545319941774,153.02777155884286,240.68708983348213,150.85047817178938,153.38186676390544,207.72577478673344,1.2907664341322054,10.361914004225317,,7.573865762236897,7.334057229947395,7.234109595806899,7.571697651761711,12.006896409043788,7.475865066724339,7.590058746602921,10.219881905031585,2.548047483963504,145.06679605915448,,106.10724992301724,102.76470978381748,101.35512319359366,106.0779582740112,167.2759287632186,104.74068597899695,106.33256510124218,142.90362639146716,48.17254901960786,0.0,1.4369663992423176,0.0,14.874520738851096,5.782063723531908,9.311654745020338,49.47341587764019,2.785409857265016,0.0,4.843211821192348,0.0,-0.023284479336067365,1.7053321050642478,0.0,0.0,0.0,30.713846936698566,449.10218654551386,86.97134763646982,197.4748411004877,241.32331253245212,247.32331253245212,251.323312532452,251.323312532452,1275.0,137.39703708796,190.15162667555146,83.42591155513206,123.04,123.04,0.8571428571428571,9.317825952302556,5.954196310386875,4.519817784848989,5.199699056569395,,5.188380065590206,5.188227730839411,5.183747527488792,5.1882507259308674,5.14713997874322,5.1881314666421785,5.188455354545129,5.173453472113235,0.16142206374460674,0.18570353773462125,,0.18529928805679305,0.18529384752997896,0.18513384026745686,0.18529466878324527,0.18382642781225786,0.18529040952293493,0.18530197694804032,0.18476619543261555,2.538091097126197,2.678220167357136,,2.67604093954695,2.6760115783619085,2.6751476727860317,2.6760160105190325,2.668060633662891,2.675993023838997,2.676055450513324,2.673159865700779,266.0800000000003,294.9521272623456,179.39426524648357,,180.45781473083755,180.49033112194994,181.20387519357638,180.43879199264327,184.98404793921165,180.4959652831291,180.46344823203174,182.0748865124081,10.534004545083771,6.40693804451727,,6.44492195467277,6.446083254355355,6.471566971199157,6.444242571165831,6.60657314068613,6.446284474397467,6.44512315114399,6.50267451830029,6.716432479885453,6.219205399998843,,6.225116454236298,6.225296626327908,6.22924219683937,6.225011034911996,6.249889011186078,6.225327841702207,6.225147671577989,6.234037483983601,16.544925044091713,34.91027128749965,13.246596905016158,5.652348697880285,-2.0264402017211705,1.1405662221142916,3.0217088999664754,1.073056745910281,1.4369663992423176,326.41541430038257,128.22090501422753,-383.51723503058264,-29.661308398985668,-7.9899423964704726,-29.50132577158329,280.424532703445,838.768384962147,24.281680431269443,17.474341353378062,23.964810998918484,1953.0,50.0,2.108566167565163,0.9466297258366485,0.0,0.0,0.7199698565489678,0.192561603458775,0.0,0.0,0.28867513459481287,0.28867513459481287,0.16666666666666666,0.12909944487358058,0.31030121992763315,0.20363504412357358,0.552234496549204,0.27473875628290484,0.9830359111915309,0.3503270879045222,19.999271042140986,15.261062573781476,13.439090705625684,8.978042482587108,12.392794246819344,7.058809549676381,10.376236980970797,4.878861567960766,8.957674025460074,3.521419522046539,7.21578698839256,2.343632316794737,5.754821911615478,1.5039119585464575,4.221997918111016,0.9002530942433569,5.3410279828811325,1.9414264072885803,8.735578177038711,2.5865544076695604,13.938693412549817,3.3184291160959964,90.33786551148548,34.039208152646395,26.79116588903747,25.464098180403653,25.033271096950127,25.033271096950127,154.0,189.0,52.660859999999985,28.639139999999998,0.375,205.1,9.833333333333332,6.166666666666668,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,10.0,11.0,48.0,0.0,1.0,51.0,11.0,3.0,7.0,44.0,14.0,31.0,37.0,0.0,0.0,0.0,18.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,8.0,2.0,3.0,28.0,10.0,0.0,5.0,4.0,0.0,4.0,5.0,0.0,0.0,1.0,2.0,2.0,3.7013019741124933,8.07384305585436,4.350277936359301,4.983606621708336,5.6185876285929695,6.2463489842062545,6.736892815277076,7.172688356606729,7.534052936762768,7.949358958765446 +135403821,CO[C@H]1/C=C/O[C@@]2(C)Oc3c(C)c(O)c4c(O)c(c(/C=N/N5CCN(C6CCCC6)CC5)c(O)c4c3C2=O)NC(=O)/C(C)=C\C=C\[C@H](C)[C@H](O)[C@@H](C)[C@@H](O)[C@@H](C)[C@H](OC(C)=O)[C@@H]1C,0,21.41732283464567,6.20637480314961,3.1653543307086616,6.960629921259843,164.28693028859786,84.26647237007866,1.355054912679811,6.254701574803152,4.706310148731409,7.759158141732284,200.50866175005558,23.454545454545453,6.392643181818182,3.9015151515151514,6.5227272727272725,147.203238790873,88.00793039393943,1.7064471379545456,6.523674999999994,3.0856481481481484,7.830371999999997,250.13677354720048,19.887966804979254,6.25854771784232,3.5975103734439835,5.33609958506224,155.2524707498059,73.81768149792536,1.4500839067540032,6.35483112033195,2.8697556477639465,7.7639136763485475,208.6706480169982,18.18507462686567,6.28876985074627,3.1731343283582087,4.519402985074627,158.02832627366365,66.19051154925369,1.3311412441326869,6.368283283582092,3.1315920398009953,7.821035355223886,189.7744658070098,16.32125603864734,6.264530917874396,2.8091787439613527,4.1231884057971016,160.2285110163605,58.18849029951692,1.2496419534202339,6.329038647342992,3.2630166398282348,7.830021951690823,174.09011025719514,15.5610278372591,6.078393790149895,2.640256959314775,3.8072805139186294,159.65728903377294,55.71699954603852,1.2029218916591926,6.151664668094217,3.167112776588152,7.655270783725912,164.5664997017868,14.773622047244094,6.202783464566928,2.5078740157480315,3.5531496062992125,163.95070071538873,52.23470218110236,1.118726846389898,6.249454527559053,3.375984251968505,7.803789212598425,153.52412608342618,15.257668711656441,6.195139059304703,2.588957055214724,3.406952965235174,162.1176883672815,53.95696985071573,1.1723233107122615,6.254201226993863,3.2154623949102485,7.775770429447854,161.3731713501281,14.609708737864077,6.2048017475728185,2.5398058252427185,3.287378640776699,163.27493420073043,51.16676994174756,1.150256420610648,6.255866796116505,3.2489751887810145,7.7989729553398055,156.93257742238805,7.721495442990884,0.1485747907495814,0.026430399801444664,0.6853493706987417,4.067952135904271,1.355283749329999,36.57548520255441,0.22194072907775855,0.13823259966519919,1.7845435413093045,0.09567761125922247,49.04961299983954,0.22660763503345122,-0.006328495116081031,-0.012351062689389706,0.33284437780996795,1.5041666901515622,-0.06924030171590245,1.1173981913849924,-0.0004730131065797871,-0.004395466522751204,-0.17591211550268218,-0.0061903122852305275,1.1864998637727702,1.0445057985551653,0.008210232284365036,-0.0004098542964587147,0.026611945340073207,0.7057924323317526,0.017139702239578836,4.962492118091202,0.013225882446924487,0.009909929821519389,0.08256701437330954,0.003189117658998859,5.470115005876857,0.21983726355512379,-0.004105497060546285,-0.0005954449413850748,-0.030254764987141955,0.14692622818081447,-0.03407413996288247,1.044882050424795,-0.006787630215777145,-0.002143190803993536,0.04268367562439935,-0.004209108168377436,0.5159225365179779,-0.295404682596805,-0.0033492173158258657,0.0006280909045193666,-0.0020027238122109227,0.2127165848534595,0.08424265558858741,-1.374612134217837,0.006478697636067648,-0.003992963315395208,-0.04486735650873336,-0.0009891729770511687,-0.14507885458637082,0.7124521872170076,0.018889831820348847,-0.0002673261687848758,-0.01555220669327849,0.6251973017864666,-0.18383799432748502,3.237792031136941,-0.024943502473587186,0.018628939055736784,0.22034434810601713,0.009926256147073306,-1.5993184616597267,0.4148583297166592,0.010147110794221627,0.000813565378128395,-3.100006200012831e-05,0.19509889019778032,0.031000017273981988,1.9646730825841652,0.014890729436036169,0.009084651869303748,0.12867339970791056,0.007386724657449393,2.7333988836609704,-0.07762960720195482,-0.003027628776729901,-0.0012949926097399033,-3.6261831214871866e-05,-0.10353817844650005,-0.06413783445857735,-0.37219165718622554,-0.007953946742659168,-0.0024618752235459375,-0.03326765912791081,-0.002740972578321367,-1.136251436854307,-0.294723789447579,-0.003504840439972091,0.0017473658977492528,0.047713850767507365,-0.1805582057766057,0.10062730913953649,-1.3546610560824222,0.011524639657356292,-0.004409372083210168,-0.0865222381469574,-0.0012014117026136139,0.43152307976915955,,,0.4619047619047618,0.9603174603174603,0.3253968253968254,0.023809523809523808,0.6349206349206349,-0.30952380952380953,1.7013608529955555,0.025569045867859262,0.035124601423414815,1.198238828654066,0.1792147407872636,0.29385452385873584,2.8995996816496215,0.4730692646459994,2.0141575772277758,1.5272090966176752,0.13610273538482578,0.3508457452252753,0.0,0.48694848061010115,6.901197429039386,2720.0,788.2096000000005,402.0,884.0,20864.440146651927,10701.84199099999,172.091973910336,794.3471000000003,597.7013888888889,985.413084,25464.600042257058,3096.0,843.8289000000001,515.0,861.0,19430.827520395236,11617.046812000004,225.25102221000003,861.1250999999992,407.3055555555556,1033.6091039999997,33018.05410823046,4793.0,1508.309999999999,867.0,1286.0,37415.84545070322,17790.061241000014,349.4702215277148,1531.5142999999998,691.6111111111111,1871.103196,50289.62617209656,6092.0,2106.7379000000005,1063.0,1514.0,52939.48930167733,22173.821368999987,445.9323167844501,2133.3749000000007,1049.0833333333335,2620.046844000002,63574.44604534828,6757.0,2593.5157999999997,1163.0,1707.0,66334.60356077325,24090.034984000005,517.3517687159768,2620.221999999999,1350.8888888888891,3241.629088000001,72073.30564647878,7267.0,2838.609900000001,1233.0,1778.0,74559.95397877197,26019.83878799999,561.764523404843,2872.827399999999,1479.041666666667,3575.011456000001,76852.55536073443,7505.0,3151.0139999999997,1274.0,1805.0,83286.95596341748,26535.228708,568.3132379660682,3174.7228999999993,1715.0000000000005,3964.32492,77990.2560503805,7461.0,3029.423,1266.0,1666.0,79275.54961160065,26384.95825699999,573.2660989382958,3058.304399999999,1572.3611111111115,3802.3517400000005,78911.48079021265,7524.0,3195.4729000000016,1308.0,1693.0,84086.59111337617,26350.886519999993,592.3820566144838,3221.7714,1673.2222222222224,4016.471072,80820.27737252985,980.6299212598423,18.86899842519684,3.3566607747834722,87.03937007874019,516.6299212598424,172.12103616490987,4645.08662072441,28.186472592875337,17.555540157480298,226.63702974628166,12.151056629921253,6229.300850979622,29.91220782441556,-0.8353613553226961,-1.6303402749994411,43.93545787091577,198.55000310000622,-9.139719826499123,147.496561262819,-0.0624377300685319,-0.5802015810031589,-23.22039924635405,-0.8171212216504297,156.61798201800565,251.72589745179482,1.978665980531974,-0.09877488544655025,6.413478826957643,170.0959761919524,4.130668239738499,1195.9606004599796,3.1874376697088014,2.3882930869861725,19.8986504639676,0.768577355818725,1318.2977164163226,73.64548329096647,-1.3753415152830053,-0.19947405536400006,-10.135346270692555,49.22028644057284,-11.414836887565627,350.0354868923063,-2.2738561222853435,-0.7179689193378346,14.299031334173781,-1.410051236406441,172.83404973352262,-122.29753859507728,-1.3865759687519084,0.2600296344710178,-0.829127658255322,88.06466612933224,34.87645941367519,-569.0894235661846,2.682180821332006,-1.653086812573616,-18.57508559461561,-0.40951761249918384,-60.06264579875752,332.7151714303426,8.821551460102912,-0.12484132082253699,-7.262880525761054,291.9671399342799,-85.8523433509355,1512.0488785409514,-11.648615655165216,8.699714539029078,102.90081056551,4.635561620683234,-746.8817215950924,210.74803149606288,5.154732283464586,0.41329121208922465,-0.015748031496065185,99.1102362204724,15.74800877518285,998.0539259527559,7.564490553506374,4.615003149606304,65.36608705161856,3.752456125984292,1388.566632899773,-37.96087792175591,-1.4805104718209217,-0.6332513861628127,-0.017732035464072343,-50.630169260338526,-31.36340105024432,-182.00172036406428,-3.8894799571603333,-1.2038569843139635,-16.267885313548387,-1.3403355907991483,-555.6269526217561,-151.7827515655032,-1.8049928265856268,0.8998934373408652,24.572633145266295,-92.98747597495193,51.8230642068613,-697.6504438824475,5.935189423538491,-2.2708266228532366,-44.558952645683064,-0.6187270268460111,222.23438608111718,0.7313633706900248,0.5992469061044993,0.43828475989261706,0.32229410340376047,0.2768079729713042,0.17613959910361351,0.17756921227241382,0.09653683394996425,0.10618995645346227,0.05205124802083581,0.06488928086582768,0.025189422189872548,0.039699309947056706,0.013200196556340088,0.024405509275381675,0.006670377545665332,8.032741972538933,5.647078034099974,3.558431591066685,2.1455558216290758,0.48888184009201874,-0.49411967233952525,4.02413424932562,0.972262689843347,6.030325592138439,0.9930390334299333,14.643272337191762,10.907932688450652,16.01972156053963,11.659075429844862,2.0404717354046196,0.7411559696053565,3.504623301464426,2.195208916607584,7.010483831372659,1.1370731145735984,3.7174746485166925,2.3912031814766186,20.94418885521079,14.700256910848546,0.21028095198729616,0.5313991701976792,0.7730244228203748,0.8497320542001423,0.879404939513457,0.8903869452477533,1.2834518633214096,2189.66564605718,0.0,4.0,12.0,0.0,10.0,10.0,6.0,4.0,0.0,5.48098603179136,3.178592490626127,1.4461575508668476,0.8961695868356312,0.6834172245627661,0.6046770670824522,592.0625736195942,7301.648960302429,108.2728516999168,57.49329890001913,114.12762613246491,,23.0,2291.0,88.78286635172938,39.91624852641899,44.47280554205731,19.13135364097311,13.08951281182515,85.11675407336794,39.84698901243026,5.008912523954532,15.318105860596532,18.947451815200196,29.099999999999994,60.5,20.5,1.5,40.0,0.0,0.03809523809523819,-19.5,0.14268244402410668,0.03171631518088236,-0.11096612884322432,0.049689440993789136,0.18394535519125743,0.0,0.583464566929133,0.8714285714285723,0.4407821229050263,0.5517482517482506,0.8217391304347832,107.18573373872,1.6108498896751335,2.2128498896751334,75.48904620520615,11.290528669597606,18.512835003100356,182.67477994392615,29.803363672697962,0.5300546448087425,0.24627720504009168,0.017182130584192445,0.42268041237113413,0.574468085106383,0.23111099982519076,-1.5327699919071323,-0.052999711783924694,-0.012069055054386865,-0.05109233306357107,0.7688890001748089,5.099411051256101,0.0453459028077236,0.04015284292327639,0.05257124795109382,-5.417733704202986,0.8775203658554391,0.8353626654148909,1.4523291520782105,0.8499288616214613,0.5154912072625298,1.3660482667571203,0.883712938909789,1.2412619130624554,0.818121689961125,0.8214142190104002,0.8709649744543498,1.097525093662465,0.8117189098205048,0.8219235774638043,0.9559140249034042,1.34550644253371,0.8358993636170696,1.1680531940567147,0.8154283946405784,1.0524827986265173,0.8024520773316796,0.6139711579384798,0.8383112975302248,0.9432536320105925,0.9565706396554248,1.050289949493084,1.0658904729258698,1.2682886454285471,1.0181427041467663,1.1473047846345406,0.9569940042882514,1.0910038090676728,1.026879357133503,0.8682994398155179,1.0762044903371855,1.0071573591714365,1.0479289000914673,1.134514723004743,1.1010420349629553,1.0752255724860562,0.9926372164158733,0.9899122860120115,1.0453950529071383,0.9980072067164621,1.126319287295507,1.1241732550273753,1.149004295354028,0.9996046462204999,0.8763103896858644,0.7903613793942409,1.0295977948353092,1.0957900266900775,0.8094794118326664,1.1680984170046225,0.8821368063438924,1.1566945456008981,0.7857036531219427,0.816844191502472,0.8175059882797108,1.0572180306060397,0.9794744660350091,1.1025558922046363,1.1133260182265992,1.032997105120318,1.0564492775711765,0.9491033669926163,0.9756248273991655,0.9004450776314714,1.0914215630429345,1.1038730916164066,1.1192221414357257,0.9092325614493311,1.0192396854781427,1.1039921952639473,1.2280701851608633,1.0598123434206417,1.082036186706831,1.0749751612393434,1.0177241845681455,1.0316663507933828,1.0915144853690666,1.093075864775924,1.122564485828193,1.0067543776818342,1.0628397161749414,1.167452182763561,1.1126425912039923,0.9191689165807393,1.1308840615823892,0.9244365662790912,1.058595855879254,0.9271327528008704,1.162586543860062,1.2215530303912265,1.1765605378768191,0.9624891247812388,14.0,1.1966289154167944,10.222222222222225,6.666666666666667,6.010555555555557,4.407222222222223,2.9340136054421766,2.007050736961451,1.6770360922146634,1.4787731481481483,16718.991098121634,19092.705221872424,6050.053745015121,5387.024190111323,19.23606726426511,0.47158223867349414,10.164679600509054,0.8924420660835936,0.0,0.574468085106383,1.5076986549808051,3.8100921961460386,5.542527135905318,6.092515099936534,6.305267462209399,6.384007619689713,0.20588235294117646,0.007720186551076091,0.10121012101210128,0.05509641873278237,0.04695746527777779,0.032406045751633986,0.021573629451780714,0.014650005379280663,0.012331147736872525,0.01026925797325103,0.5080966308077329,52.372837370242216,22.615625919027547,11.387755102040817,368.3686961824858,0.0,5.066654962366712,560.8643452203249,,459.83149892216306,452.01995859415604,455.97220602635747,459.9301333427765,645.086414486478,456.97537718050864,460.25762059889814,569.0699341382215,0.029347635662875664,-0.04259467628493942,-0.46730517821053197,0.48565650169142127,0.3697601741366603,-0.051089155130895826,0.03055046803061834,-0.0021312586858001333,-0.031797611658878365,-0.09857541238451203,-0.06469969519262884,0.02418979052447675,0.13527247490682723,0.05525992830239384,-0.015506927611299789,0.038829750894702426,0.1735006727592337,0.012646578436472848,0.13567809396400365,0.05959195728464379,0.07169025139888378,0.04626786203979693,0.033331911374318055,0.11152208287341128,0.028470814387992552,-0.02763252796677993,-0.022528790553994125,-0.04414502483061448,0.03611798351411872,-0.025141701861124976,0.02856782472298744,-0.030583076139211244,-0.015504235680905708,0.02391853974775124,-0.0439926134545057,0.010518381389057354,-0.03825744440022378,-0.02254229872327989,0.02376395776219154,-0.002922193990152882,0.05229082785315871,0.062158684947143945,-0.037582881719962394,0.029191116308344596,-0.02888582957324254,-0.025142203297440734,-0.010338604444995706,-0.002957798149943516,0.09226867936103356,0.1271402216018404,-0.010114344496985778,-0.022692377578784933,0.15368846065527528,-0.13564539117241503,0.08852355650803001,-0.11238812532172969,0.134765164663446,0.12347378643636364,0.10374690605704795,-0.03260613823120192,0.05372771800224826,0.06829631556624094,0.030781425337498156,-4.523249502443183e-05,0.04795997683350606,0.022873451621704476,0.05371557128234498,0.06709327079311835,0.06572003920426057,0.07210437668195195,0.07720431729254089,0.05572722630186526,-0.010053701096517823,-0.02037780946185469,-0.04899633072024587,-5.2909994179904835e-05,-0.025452162411808813,-0.047324285036461675,-0.010175986870031512,-0.0358381572220232,-0.01780965726976578,-0.018642111194161513,-0.028648003877261952,-0.023165349680904192,-0.038169262887425746,-0.023589738355273206,0.06611197374523799,0.06961974841949756,-0.04438552857664564,0.07424814854400993,-0.03703740493339548,0.05192665494632376,-0.03189820703574782,-0.04848424044810741,-0.012556873931128882,0.008797685718143612,14.404195755649422,39.15683044555279,45.41222349106088,14.223097210544378,37.6051004212296,44.55624496336288,46.49320405733656,47.05420961960997,47.133579698350125,126.89192736534989,96.21417308691353,8.574472329244024,22.103281949192343,0.0,30.67775427843637,26029.90197617418,20537.586788018638,10719.398989992827,571.0,101.0,140.0,182.0,236.0,288.0,344.0,410.0,493.0,876.452073488002,68.0,5.82600010738045,6.710523109452428,7.622174594817622,8.529319371214077,9.44959346502346,10.368572856625317,11.296347810898107,12.22408445458186,13.158434906308834,0.6167979002624672,0.9845039370078741,1.1335815321069826,0.5749617968305959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6374121929369607,0.9698625907055737,1.0081206163868992,0.5980152223491911,0.0,0.0,0.0,0.0,0.0,2.0,8.0,0.0,0.0,3.0,0.0,0.0,0.0,6.0,1.0,4.0,0.0,9.0,0.0,0.0,0.0,5.0,8.0,1.0,4.0,0.0,9.0,2.0,1.0,0.0,0.0,49.79687739341005,23.35250188760002,5.749511833283905,0.0,11.690424675716445,24.292433807020473,0.0,5.101407525739723,0.0,58.76465236511615,32.76513775206715,93.37254281433366,52.98909366374336,254.43988645750335,-1687.49139158806,-58.34962705705161,-13.287333792031966,-56.24971305293533,846.5024600770976,5614.1575687143695,49.92322464286518,44.20596510798716,57.877913079529584,0.43478260869565216,0.8043248396421822,0.07640558584039661,176.6629503610707,0.047059812329377386,0.0,0.1956751603578177,13.0,0.07352941176470588,0.21573425080036907,0.5451801543368513,0.7930715698757933,0.8717684904955211,0.9022108944396499,0.9134777008573652,5.6482200000000065,,3.571428571428571,4.171242438343415,2.978608572370206,3.561187663113075,-15.060258444797096,3.7493880048959616,3.542989575075598,-6.065232249670023,236.81119999999936,58.86370034161918,0.0,9.90882225480501,28.77303171038529,117.31800162194078,38.60561176893417,52.82961988091657,0.0,22.99804733313562,4.919980925828125,0.0,6.293419278846481,3.044522437723423,7.8528278122817445,5.41610040220442,9.50338305067006,7.563719668414366,11.210968658229577,78.33333333333333,0.0,0.0,0.0,0.0,0.0,-0.5313680255695181,-2.2381640408806094,0.0,125.03200000000001,0.0,40.77235986288474,0.0,0.0,0.0,8.83723950317666,4.678846748212449,-1.8173068351761383,143.9648545775868,10.05365155780638,5.687386274683562,22.99804733313562,128.84943046985177,23.79966322954379,30.595361384336194,95.6343385487012,41.2406729315653,0.0,10.772448428929591,0.0,73.02014819748568,80.95134850299401,79.79541030849524,1129.0350576576575,,924.2533827533472,908.9221842216963,916.6766698690267,924.4466744371964,1296.2692459435789,918.6324723037483,925.0920800283188,1143.35292418174,79.79541030849524,1129.0350576576575,,921.3336356571888,905.4861575068646,914.1726978552525,921.5352106395787,1307.876013937213,915.5495889612373,922.1979427980559,1147.8034826952558,5.21230390006113,790.8219304864556,,643.4195352458005,632.6077577537238,638.8140035245831,643.5577516020901,905.3177097209443,639.4849142738097,644.0084328234475,797.8904847625674,1.2665938144205593,17.92119139139139,,14.670688615132494,14.427336257487243,14.550423331254391,14.673756737098355,20.575702316564744,14.58146781434521,14.684001270290775,18.148459113995873,2.639356912802812,560.8643452203249,,459.83149892216306,452.01995859415604,455.97220602635747,459.9301333427765,645.086414486478,456.97537718050864,460.25762059889814,569.0699341382215,123.17254901960786,0.0,14.041124417284534,0.0,0.0,0.0,58.8614147356682,128.0313182811362,7.5881993781029555,2.702972555214983,23.7174947398861,0.0,-5.798010455193273,4.311925236857086,-2.0433944871348437,0.0,0.0,75.94793323834728,885.5152763317309,191.47772918256226,483.8817089105469,703.9009462599754,773.7494176919398,800.7689677005937,810.7689677005936,2896.0,216.18505067630215,215.4270702028702,118.80492223419822,220.14999999999995,220.14999999999995,0.7692307692307693,9.920849819463376,7.087462841250339,4.680290376639961,7.829918082796473,,7.814940139579387,7.816663758599504,7.819451068111737,7.814930823259584,7.780321789343299,7.81576195253346,7.814826468842167,7.795096926919035,0.07429032343872954,0.12428441401264242,,0.1240466688822125,0.12407402791427785,0.12411827092240851,0.12404652100412039,0.12349717125941745,0.12405971353227714,0.1240448645847963,0.1237316972526831,3.3839097876928412,3.898501681378227,,3.8965869375588515,3.896807467587418,3.89716398959722,3.8965857454415493,3.892147331830551,3.8966920912429264,3.896572392141755,3.894044570328833,666.6900000000027,11779.971977995476,573.2277820342663,,576.6561344518839,576.2896027150388,576.3982944996122,576.6602985516698,585.7510736078824,576.5154267249005,576.676797955743,581.5587910967863,186.98368219040438,9.098853683083592,,9.153271975426728,9.147454011349822,9.149179277771623,9.153338072248728,9.297636089014006,9.151038519442865,9.153599967551477,9.231091922171212,11.214705711822262,8.191832796485164,,8.197795768098143,8.197159950231999,8.197348538635083,8.197802989186245,8.21344454366102,8.197551732028543,8.197831600776254,8.206261702733718,23.7174947398861,43.24304646895395,67.55310464431399,-0.292645000248662,-8.278709442400995,0.5534799256787037,9.753229445213545,15.390776441683878,1.4435561102528167,839.5612692184488,280.12364564852123,-1857.8307324118985,-64.23957533160926,-14.628588444188173,-61.927691080396606,931.9504047445923,6180.86380751539,54.96259208489002,48.668218956814094,63.72024543830299,17129.0,121.0,5.398446936164305,2.7820287188429207,0.14433756729740643,0.041666666666666664,2.061621143263091,0.6793419178444277,0.08333333333333333,0.008505172717997146,0.0,0.0,0.0,0.0,0.2123789490413836,0.16985308545139788,0.5035034467930025,0.2176640920781065,1.099504568217048,0.3571005146503556,46.07589235347156,37.752555084583456,29.80336367269796,21.915999031455712,27.957605270101727,17.790099509464966,24.859689718137936,13.515156752994995,19.326572074530134,9.473327139792117,15.313870284335334,5.944703636809921,11.433401264752332,3.801656608225945,8.395495190731296,2.294609875708874,14.22157508227938,6.080908699695431,21.819384755342995,8.232924122208908,35.60795444147594,10.792064734744146,216.82660880795999,76.84685380839159,43.1918082035713,33.95885809984317,31.3543726484093,30.620699602400673,338.0,410.0,135.18875200000014,77.74324800000014,0.33858267716535434,718.16,24.84027777777778,13.749999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,0.0,10.0,11.0,127.0,0.0,1.0,132.0,11.0,7.0,12.0,120.0,18.0,68.0,114.0,0.0,0.0,5.0,47.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,64.0,15.0,6.0,4.0,63.0,16.0,0.0,4.0,12.0,0.0,7.0,5.0,0.0,0.0,0.0,0.0,2.0,4.400603020246817,8.848987651602291,4.959341999708705,5.5124201732100975,6.066398071257005,6.658893198379938,7.148173755840529,7.628076746327711,8.090217920878192,8.528550329281924 +445643,C=CC[C@@H]1/C=C(\C)C[C@H](C)C[C@H](OC)[C@H]2O[C@@](O)(C(=O)C(=O)N3CCCC[C@H]3C(=O)O[C@H](/C(C)=C/[C@@H]3CC[C@@H](O)[C@H](OC)C3)[C@H](C)[C@@H](O)CC1=O)[C@H](C)C[C@@H]2OC,0,19.603174603174605,6.074483333333336,2.865079365079365,5.873015873015873,164.88035833391407,76.86937937301578,1.2882407812268333,6.121546031746035,4.441192680776014,7.664912285714285,187.45655190078307,21.72093023255814,6.262596899224806,3.627906976744186,5.015503875968992,145.9785022053088,80.53888114728684,1.666155104015504,6.398790697674413,2.796834625322998,7.726248496124028,239.29276217820873,17.551020408163264,6.168314285714286,3.2653061224489797,3.9183673469387754,155.40158275080898,63.625967485714284,1.369400628920053,6.259713469387755,2.6175170068027205,7.712516995918368,191.53272613295982,16.03409090909091,6.167275568181821,2.840909090909091,3.5369318181818183,158.04782177472453,57.106459605113606,1.254273207348403,6.241923011363636,2.988636363636365,7.735504284090911,172.28673461960025,14.248868778280542,6.109610859728509,2.5475113122171944,2.920814479638009,161.70052948539518,49.973734918552026,1.1422824945008823,6.1686056561086,2.947335344394169,7.719815076923079,155.04083780530894,14.253164556962025,6.137166666666667,2.518987341772152,2.721518987341772,161.3795619713782,49.70533862658229,1.1457247713266732,6.1971,3.0471753398968584,7.744730236286919,155.80752201815523,13.60727969348659,6.118003831417624,2.454022988505747,2.574712643678161,162.05522830483392,46.874649603448276,1.1374605936095437,6.175036590038315,3.000292677735207,7.731306735632185,152.53035518189824,13.155440414507773,5.976373056994818,2.4214162348877375,2.412780656303972,161.84307759665825,45.54955856303972,1.1403714957545723,6.040316062176165,2.717328727691423,7.592145298791022,150.09527366433633,12.294209702660407,5.939067292644757,2.3114241001564944,2.112676056338028,161.97323933973232,41.740703485133004,1.1076391708747015,6.003650547730828,2.665058250739002,7.566937733959314,144.0182775443264,7.629377676996724,0.142939058956916,0.018590122275596158,0.6150793650793651,3.7404887881078333,1.2644915072397764,36.14968619079114,0.22025440754819323,0.1338147140337616,1.7660641674365218,0.09306813126732168,49.05538584796194,0.27181587535961815,-0.0023082357749300386,-0.0077864739065529875,0.2616279069767442,1.1029958925861472,-0.11884496455286653,1.2831896396506102,-0.010217043271408629,-0.0005289505293933965,-0.12367144017622364,-0.0036116095495906347,-0.03420553851221478,0.42990317820249785,0.004389133462909032,-0.0027308774655110373,-0.013265306122448979,0.287110823165245,-0.004992750580889366,2.0324424380070565,0.0027701458687326816,0.004933507540582434,0.019284337044635606,0.0016752575243854913,1.812710357086867,0.12873920612015835,0.015329264906720317,0.0018095912219988327,-0.026988636363636364,0.28038963902059144,-0.06784228072180915,0.49668832839628096,-0.015671224986879964,0.013364141485718921,0.13902905145878022,0.0102348267954489,-2.5566020396589035,0.18416825419626529,0.0014171573757708687,0.0006421028600646948,-0.03167420814479638,-0.021426804339969605,0.016512581201287953,0.878060442046621,0.0029951271105272083,0.0016353434251193794,0.0006132478315795895,0.00028438514437122077,1.034919834938179,-0.22913656789485617,-0.00878465871580694,-0.0009807077806296132,-0.015822784810126583,-0.30019677819557256,-0.05550207977458654,-1.0609982140983436,-0.006150954975318903,-0.007654276018893199,-0.05427965776611214,-0.006229194022662879,-1.1048535386638916,-0.5768021129269075,-0.010771356895248463,-0.0009821824301753793,-0.017241379310344827,-0.2639942311535086,0.006526188994168507,-2.688893851695468,0.0009408477647209711,-0.01074373854267116,-0.10133749380978449,-0.005749271022840715,-1.5340269275861338,0.07629987324041103,0.006809394863299388,0.0020236055796929177,-0.022884283246977548,0.0004164398440243734,0.032357167204902,0.33095255977772103,0.0012767188967328618,0.005705849609081796,0.056100217731605284,0.005011215224988487,0.005302784842430648,-0.43616904247353605,-0.008871389980092188,-0.0009850506704835835,0.007433489827856025,-0.1471758239028527,-0.09720501740659228,-2.0690918048085694,-0.015098717040335394,-0.008107495413397487,-0.12220495592603235,-0.005946074035039159,-3.0777276208899287,,,0.463157894736842,0.7719298245614035,0.15789473684210525,0.0,0.6140350877192983,-0.45614035087719296,1.8958799614616337,0.025107998043769852,0.031143085763068096,0.9323498041588413,0.13419744711761733,0.3391895296170882,2.828229765620475,0.47338697673470553,1.9922810296538138,1.563957335116168,0.03908008282456696,0.3892436117130793,0.0,0.42832369453764624,6.376841084507952,2470.0,765.3849000000004,361.0,740.0,20774.925150073173,9685.541800999988,162.318338434581,771.3148000000003,559.5902777777778,965.7789479999999,23619.525539498667,2802.0,807.875,468.0,647.0,18831.226784484836,10389.515668000004,214.93400841800002,825.4439999999993,360.79166666666674,996.6860559999997,30868.766320988925,4300.0,1511.237,800.0,960.0,38073.3877739482,15588.362034,335.50315408541303,1533.6298,641.2916666666665,1889.5666640000002,46925.51790257516,5644.0,2170.8810000000008,1000.0,1245.0,55632.83326470303,20101.47378099999,441.5041689866379,2197.1569,1052.0000000000005,2722.897508000001,60644.93058609929,6298.0,2700.448000000001,1126.0,1291.0,71471.63403254467,22088.390833999994,504.8888625693899,2726.523700000001,1302.7222222222226,3412.158264000001,68528.05030994656,6756.0,2909.0170000000003,1194.0,1290.0,76493.91237443326,23560.330509000007,543.0735416088431,2937.4254,1444.3611111111109,3671.0021319999996,73852.76543660558,7103.0,3193.598,1281.0,1344.0,84592.8291751233,24468.567093,593.7544298641818,3223.3691000000003,1566.152777777778,4035.742116000001,79620.84540495089,7617.0,3460.3199999999997,1402.0,1397.0,93707.14192846512,26373.194407999996,660.2750960418973,3497.343,1573.3333333333337,4395.852128000001,86905.16345165073,7856.0,3795.064,1477.0,1350.0,103500.89993808896,26672.30952699999,707.7814301889342,3836.3326999999995,1702.9722222222224,4835.273212000002,92027.67935082456,961.3015873015872,18.010321428571416,2.3423554067251158,77.5,471.301587301587,159.32592991221182,4554.860460039683,27.752055351072347,16.860653968253963,222.52408509700174,11.72658453968253,6180.978616843204,35.064247921390745,-0.297762414965975,-1.0044551339453354,33.75,142.28647014361297,-15.331000427319783,165.5314635149287,-1.317998582011713,-0.06823461829174814,-15.95361578273285,-0.46589763189719186,-4.412514468075706,105.32627865961197,1.075337698412713,-0.6690649790502041,-3.25,70.34215167548503,-1.2232238923178946,497.9483973117288,0.678685737839507,1.2087093474426964,4.7246625759357235,0.4104380934744454,444.1140374862824,45.31620055429574,5.395901247165551,0.6369761101435891,-9.5,98.69715293524818,-23.880482814076817,174.8342915954909,-5.516271195381747,4.70417780297306,48.93822611349064,3.6026590319980127,-899.923917959934,81.40236835474926,0.6263835600907239,0.2838094641485951,-14.0,-9.470647518266565,7.298560890969275,388.1027153846065,1.3238461828530261,0.7228217939027657,0.27105554155817857,0.1256982338120796,457.4345670426751,-108.61073318216182,-4.1639282312924895,-0.4648554880184367,-7.5,-142.29327286470138,-26.30798581315402,-502.91315348261486,-2.91555265830116,-3.6281268329553766,-25.728557781137155,-2.9526379667422047,-523.7005773266847,-301.0907029478457,-5.622648299319698,-0.512699228551548,-9.0,-137.8049886621315,3.4066706549559607,-1403.6025905850345,0.4911225331843469,-5.608231519274346,-52.898171768707506,-3.001119473922853,-800.7620561999619,44.17762660619798,3.9426396258503456,1.1716676306421994,-13.25,0.2411186696901122,18.734799811638258,191.62153211130047,0.739220241208327,3.30368692365836,32.48202606659946,2.901493615268334,3.070312423767345,-278.7120181405895,-5.668818197278908,-0.6294473784390099,4.75,-94.04535147392288,-62.11400612281246,-1322.1496632726758,-9.648080188774317,-5.180689569160994,-78.08896683673467,-3.799541308390023,-1966.6679497486646,0.7401603685530428,0.6209312536602407,0.44971762789797015,0.34810094786117923,0.2853170896274451,0.20083499861795306,0.18331966249352155,0.11292737208667103,0.11614196623636468,0.06637163527208151,0.07387034660571724,0.03789305522595127,0.04497650455090764,0.020783251898971962,0.028751062652045342,0.012051602053523352,8.033703474100811,5.726813391819797,3.559701523018514,2.226411000865467,0.48732038478544215,-0.48739305745489103,4.028916358229795,0.9571441676857946,6.031304748733413,0.9930263866042992,14.543358790338734,10.987176448059792,16.020454479553216,11.738022448433195,1.9667590403051316,0.741220104829045,3.506029832092605,2.276315119056987,7.011644653515663,1.14635938528653,3.7188418495036357,2.472332291808663,20.87251672225562,14.700213613482138,0.19530859276046256,0.4624291927665656,0.7460805419308906,0.8446663167929022,0.8802471841824219,0.8945300479035568,1.7097921724271754,1478.2958900460044,0.0,3.0,6.0,0.0,5.0,20.0,2.0,5.0,0.0,5.593037529733243,3.699830203057493,1.6894618059848145,0.9907387899744355,0.7385607144917588,0.6373314486015715,570.2640892365621,5990.840068634102,87.6095578232331,47.5463497510643,90.13955532114406,,19.0,1735.0,83.86619841036084,34.4977309208094,49.53024470112662,56.93967751347735,5.573104530069267,19.119504813405545,27.03329204749266,32.923251812739636,6.578935683598497,23.684314769000245,26.399999999999995,44.0,9.0,0.0,35.0,0.0,0.03684210526315798,-26.0,0.11896103896103949,0.011688311688311748,-0.10727272727272774,0.028421052631579125,0.1806666666666671,0.0,0.5571428571428559,0.8684210526315795,0.43818181818181645,0.5454545454545442,0.8400000000000004,108.06515780331313,1.4311558884948816,1.7751558884948815,53.14393883705395,7.649254485704187,19.333803188174027,161.20909664036708,26.983057673878214,0.5333333333333329,0.25883838383838387,0.018939393939393943,0.3750000000000001,0.7727272727272727,0.2361071108516072,-1.3091169691434044,-0.046415416606627964,-0.010389817215423845,-0.03636436025398346,0.7638928891483929,4.235472367541934,0.03466820681401324,0.03361486005985662,0.04706080408379927,-4.5466856145677985,0.9414722410168939,0.779718166713221,1.4299162318044383,1.0440110027506877,0.5880136846821166,1.4823637966527947,0.951669881455078,1.401211839430181,0.7725143356686561,0.7437813268038431,0.8084223427252997,1.2360384243168536,0.9479069855213312,0.9215973946911964,1.2398477077869803,1.4845292955892035,0.9813249360097003,1.198303095857176,0.9515463186139538,1.1466442976076316,0.911716881568547,0.6789804269207868,0.9398120720480537,1.064239525006831,1.0029459385723423,0.9377721259310364,1.0813896993363192,1.312774926686217,0.9994836667819927,1.1793768902229962,1.0068547361914457,1.170834564085536,0.9360546113717351,0.8562033364918467,0.9492602230438683,1.1104171871260282,1.0090721135260812,1.127224110494208,1.2095444690566464,1.2133265216756677,1.1412987821269718,1.019996718458489,1.0066798256487137,1.0105445684660568,1.1114317115469603,1.1095072520071863,1.1571287876805387,0.9844442662001603,1.071529793298969,1.228236758921633,1.2980172826090095,1.1841567986933443,1.249177739560757,1.0861262467197677,1.0681233001354757,1.0553325099744786,1.2076792926636695,1.2513123365113938,1.2596556832701937,1.0285579456712837,1.1132435953351882,1.2293909700823884,1.1873473528253993,1.1725991842788284,1.1922330756688215,1.033363333271199,1.1094219903096516,1.011688012740643,1.2191917211814716,1.3359636262430978,1.2356352424045602,1.030438104313924,0.9784966650029184,0.9068058751614146,0.9186386277578016,1.1281965569112486,0.9935554246394248,1.0206785567972394,0.9807449230473544,1.0244698396942113,0.9130707388017884,0.8881131456510417,0.8948582790909175,1.0182872215427972,1.0429016754335332,1.0143005815674957,1.0585884880998178,0.9944974506537433,1.010254576089164,1.1059576303741752,1.0442499084390269,1.0930242959772238,1.014781440207491,1.1518275181941735,1.013330461278154,1.077311336190436,14.5,1.0367309458218548,8.888888888888893,6.125,4.991111111111112,3.4375000000000004,2.669387755102041,1.857638888888889,1.562106324011086,1.3750000000000002,13694.51991606501,16177.52728193128,5350.346588437188,4656.904394303596,19.676551986843133,0.4657367243246239,10.512459118487643,0.8717363620695695,0.0,0.7727272727272727,1.3842423937666735,3.2774497204424238,5.287818117515102,5.986541133525481,6.238719209008158,6.339948474898345,0.24166666666666672,0.006957925810884934,0.10335917312661501,0.058333333333333334,0.04378167641325537,0.02840909090909091,0.02135510204081633,0.013659109477124183,0.011571157955637672,0.009821428571428573,0.538914664304853,49.653333333333336,22.90427257977285,12.565096952908588,338.6959777107149,0.0,4.946078280756383,453.7731955302916,,406.2417758931544,401.39626136818856,410.26297693318844,406.32209725489025,532.7252611547212,404.7713392745865,406.47483780078653,476.3974171372391,0.03562752912064742,-0.016148390732205507,-0.4188500640888489,0.4253563390847712,0.2948801493785815,-0.09398636833258764,0.03549656372888496,-0.04638746341170524,-0.003952857749708613,-0.07002658366356827,-0.038806082172391836,-0.0006972840580283783,0.05634839385376025,0.030706326842630072,-0.14689938156544277,-0.021566820276497693,0.07675756817613216,-0.0039484255547021455,0.05622296213804496,0.012577028081159077,0.03686819925750246,0.010919386396150721,0.018000334825393795,0.03695232084617633,0.016874142501598643,0.10724335964280268,0.09734154488990858,-0.0438782991202346,0.07496069495303302,-0.05365182789554687,0.013739768743077184,-0.07115056248511617,0.0998704931831871,0.0787225368263848,0.10997133665498429,-0.05211664316702384,0.024139354740760774,0.00991441657803289,0.03454000197231643,-0.051496131951539924,-0.005728343420809606,0.01305867307668425,0.024289573010741666,0.013598488874152737,0.01222095370399088,0.0003472398358377495,0.0030556662146183525,0.021096966562361184,-0.03003345457464034,-0.061457370573950475,-0.05275424045580482,-0.025724785626786446,-0.08025602941251705,-0.0438928054928107,-0.029350136222444582,-0.02792659199781521,-0.05720055581452737,-0.030734816303362396,-0.06693154722071969,-0.02252257360869977,-0.07560277356120658,-0.07535628801428666,-0.05283356481547845,-0.02803114571746385,-0.07057746891070163,0.00516111730035605,-0.07438221835464906,0.004271641031815025,-0.08028817025279075,-0.05738041441431765,-0.06177486261464685,-0.03127132527997161,0.010000799078339269,0.047638447552336566,0.10885380686007477,-0.03720541534347317,0.00011133300154470828,0.025589074358857152,0.00915506037952907,0.005796564577049413,0.04263992678445065,0.03176567350496437,0.05384458844021121,0.00010809791322130553,-0.057169675029803,-0.062064141493796736,-0.05298785322013135,0.012085415720127215,-0.039346682276062424,-0.07687281160059227,-0.057236784681568134,-0.06855125946585967,-0.06058747329798094,-0.06919621505226242,-0.0638894748832994,-0.06273985144931433,15.438768523970065,47.35904140580771,29.910600118091573,12.790454135090153,32.44902072136961,40.24713959534283,42.19450044605755,43.12576355364356,43.70632667894901,113.56001869026738,89.14556810162158,2.2275647210003164,22.186885867645522,0.0,24.414450588645835,25760.66822121223,21151.386295936936,8632.928009651067,272.0,86.0,114.0,142.0,174.0,187.0,209.0,220.0,245.0,803.481976648002,60.0,5.680172609017068,6.541029999189903,7.4342573821331355,8.315077007294104,9.211439767419483,10.100328195429285,10.998911430286723,11.89288813266597,12.793589829681173,0.5767195767195767,0.9741904761904764,1.1359592374614627,0.5312795281573902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6188229113202166,0.9596016184251479,1.0020751684990579,0.571655651187811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,3.0,0.0,6.0,0.0,8.0,0.0,0.0,0.0,3.0,12.0,0.0,5.0,0.0,13.0,1.0,1.0,0.0,0.0,43.90380668437284,24.033018551009505,0.0,5.7871111525705965,11.690424675716445,14.383611552215466,4.794537184071822,0.0,6.578935683598497,44.572376449642775,95.46460725103343,52.04868879115536,30.51983193874151,255.10995572213923,-1414.4799401792418,-50.1511150283973,-11.226031271263825,-39.29110944942339,825.3740449587013,4576.36012845486,37.4584427948358,36.32031847980048,50.84844587172066,0.42105263157894735,0.8549967599740851,0.0822298942513303,37.72391046467286,0.05933339336976805,16.722165213478394,0.14500324002591497,11.0,0.11666666666666667,0.19839284204500068,0.4697317230177003,0.7578624013213802,0.8580050104285533,0.8941477592142691,0.9086561732380839,4.639000000000004,,3.142857142857143,3.614239181014425,2.3028598159972624,3.133687127666512,-13.505712990251642,3.265835373317014,3.122200595739342,-5.107258364939737,212.59239999999923,58.18204568980965,0.0,4.899909730850478,29.589530230806965,159.8044405465959,27.874149029745176,35.953205064238674,0.0,0.0,4.795790545596741,0.0,6.142037405587356,0.0,7.6783263565068856,0.0,9.303557453687317,0.0,10.978507040265917,72.66666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.74800000000002,3.873506519466636,56.63720890484124,0.0,0.0,0.0,5.592832123624075,0.0,-1.5308761267116273,143.1308639201443,0.0,0.0,0.0,126.09333255110766,42.86246350528753,29.589530230806965,105.24772385063925,35.953205064238674,0.0,0.0,0.0,66.94122054783116,77.9716868263473,71.3454758091323,908.513173216488,,812.8761773077399,803.2351416400419,821.1492264440794,813.0370777935968,1070.937143972721,809.9520167695885,813.3407684643994,954.9076040702007,71.3454758091323,908.513173216488,,810.0145052067533,799.9788347542333,819.0887729245032,810.1835962467594,1082.0170210421065,806.9927038148385,810.4960914599764,959.0193236653001,5.032378980202256,624.7604704485996,,557.6501907823038,550.3996572316652,561.9369423838878,557.765062164962,730.9967328659923,555.3734159295861,558.0066533743009,657.8508310408831,1.2516750141953035,15.938827600289263,,14.260985566802454,14.091844590176173,14.406126779720692,14.263808382343804,18.78837094688984,14.209684504729623,14.269136288849111,16.752764983687733,2.516271840779367,453.7731955302916,,406.2417758931544,401.39626136818856,410.26297693318844,406.32209725489025,532.7252611547212,404.7713392745865,406.47483780078653,476.3974171372391,120.90980392156864,0.0,13.776238363955006,0.0,0.0,0.0,34.14463729691938,126.26147123088128,4.6300306253811705,0.0,29.74842313662892,0.0,-8.457748976247473,1.1793358951623603,-2.510254429686353,0.0,0.0,72.02861204966419,923.8103197859557,174.41454161460086,412.9586647757454,666.2650828069029,754.3041828242107,786.078620335028,798.8335078371915,1766.0,199.9676943531168,156.67368089488477,95.89821880164422,178.35999999999996,178.35999999999996,0.7272727272727273,7.850103545175582,6.906890595608519,4.849640325171917,7.46841274210773,,7.468630239103112,7.467573384019821,7.467261738200316,7.468640145391132,7.461981364848582,7.468233613799421,7.468686130718355,7.471015003233532,0.0850814092135424,0.13102478494925843,,0.13102860068601951,0.13101005936876878,0.13100459189825114,0.13102877448054617,0.13091195376927336,0.13102164234735825,0.1310295812406729,0.13107043865321985,3.319370717281558,3.7511486670843106,,3.7511777889119267,3.75103627302051,3.7509945389381447,3.751179115297239,3.750287152296307,3.751124682007065,3.7511852724001065,3.751497042028315,637.7000000000029,3815.863793211186,479.542140111256,,478.1693800229696,478.36215394768317,478.651327688015,478.1682785227396,480.2961096452818,478.2531157231348,478.1580151968301,477.9608832977889,66.94497882826641,8.41302000195186,,8.388936491631046,8.392318490310231,8.397391713824824,8.388917167065607,8.426247537636522,8.390405539002364,8.388737108716317,8.385278654347173,9.98738851316871,7.913297948746178,,7.91043119607678,7.910834264706463,7.911438590047081,7.910428892496616,7.914868983635218,7.910606297981537,7.91040742842943,7.909995069878323,29.74842313662892,57.816544800003605,34.14463729691938,1.609476327837776,-7.759827869931017,-1.142632110287234,4.930503964732893,13.125079284823824,4.61112850260519,818.1782443879098,275.6422255721691,-1528.322944647663,-54.18747740448774,-12.129547179743358,-42.45341512910176,891.8034501551055,4944.683900149192,40.47324813023858,39.24352301705708,54.940932223879905,12629.0,105.0,4.619440515704256,2.6191785114996735,0.11785113019775792,0.026352313834736494,1.6368729054206406,0.483775601689565,0.15137471507731048,0.024013043348897437,0.0,0.0,0.0,0.0,0.0,0.0,0.1994872375097793,0.16036888195854523,0.4462927627663343,0.24350724556281458,42.18914100752344,35.39308145863372,26.98305767387821,20.886056871670753,24.53726970796028,17.271809881143962,20.898441524261457,12.873720417880497,16.492159205563784,9.424772208635574,12.8534403093948,6.593391609315522,8.410606351019728,3.886468105107757,6.0089720942774765,2.5187848291863806,11.61711538151753,5.292298590855811,17.847720816808348,7.32614763058566,27.993644492630512,9.70221116425496,204.16080410200047,83.37730950693647,44.53746110944559,34.635959236904476,30.724964235275745,28.6890952244974,292.0,346.0,130.212717,83.08328300000016,0.2857142857142857,408.13,23.28472222222222,12.847222222222218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,126.0,0.0,0.0,129.0,0.0,7.0,7.0,122.0,7.0,60.0,122.0,0.0,0.0,2.0,44.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,69.0,12.0,3.0,3.0,57.0,13.0,0.0,1.0,12.0,0.0,4.0,7.0,0.0,0.0,0.0,0.0,0.0,4.219507705176107,6.135564891081739,4.624972813284271,4.962844630259907,5.231108616854587,5.484796933490655,5.583496308781699,5.749392985908253,5.834810737062605,5.973809611869261 +6005,CN1CCc2cccc3c2[C@H]1Cc1ccc(O)c(O)c1-3,0,21.783783783783782,6.012294594594595,3.5945945945945947,6.864864864864865,158.95261546911442,85.88905935135134,1.5531385779035949,6.100845945945946,3.9181681681681684,7.548857513513513,227.14342465445455,24.4,6.273125,4.375,6.975,143.679170355645,92.49141727499999,1.9040645155500002,6.428274999999999,3.0368055555555555,7.6954011,276.92177214611144,21.380281690140844,6.120971830985916,4.211267605633803,5.901408450704225,149.64625496567456,80.19924516901409,1.7288892206914646,6.256647887323943,2.687793427230048,7.582946422535209,246.40000999383733,18.928571428571427,6.05154081632653,3.683673469387755,4.877551020408164,150.52211950270095,69.47091420408161,1.5895196629555206,6.175990816326531,2.9203514739229033,7.549161714285713,220.20547485079595,15.21551724137931,5.8838793103448275,3.0258620689655173,3.413793103448276,153.5882951002658,53.79953106034482,1.3932473269520087,5.9944353448275844,2.538553639846743,7.43927224137931,184.73289862737232,12.760683760683762,5.782367521367521,2.623931623931624,2.6153846153846154,159.51872012557064,44.15070167521367,1.2146864966621365,5.869158119658119,2.4188034188034186,7.386130598290597,156.52990359390571,12.033333333333333,5.865422222222222,2.311111111111111,2.2222222222222223,160.0146134816387,40.279618688888895,1.154502977579233,5.942590000000001,2.666666666666667,7.472579111111112,146.39197493172898,9.46376811594203,5.775057971014491,1.8840579710144927,1.3333333333333333,165.36448150374386,30.062966275362307,0.959672087777942,5.827298550724636,2.5990338164251208,7.437298492753623,115.75205764648301,6.380952380952381,5.8365238095238094,1.5,0.35714285714285715,173.16947031424604,17.00560214285714,0.7342460931055477,5.8475238095238105,2.6865079365079367,7.570873714285716,82.93501210878755,7.0547845142439725,0.09951088385682977,0.023696424792683822,0.6953981008035064,3.4872169466764062,1.4373406668451854,33.68726272315557,0.23811968971560257,0.09569700511322128,1.2445012580147716,0.06079505624543464,52.009899490174355,0.17494521548575637,-0.009281627100073088,-0.011063466088657067,0.3356829802775749,0.9796749452154856,0.03719195775032259,0.9558252329255023,0.02645184888436967,-0.0079703834915997,-0.14876176852528203,-0.00633605354273194,4.465031798007004,0.48765933805903355,-0.005511340651652819,-0.0022627748384892936,0.03585427833619694,0.21929237955123004,0.2821758820257039,2.415523922828429,0.03325126446979326,-0.0036762970812456936,0.029998593949869177,-0.0035734361464624213,7.034400728862741,-0.17806085180602543,0.007445514378139846,0.0034436117894347034,-0.07157019126131091,-0.015071331673648321,-0.020352195977237267,-0.9200320160403047,-0.011126580823672128,0.005954153187936979,0.21308898528975756,0.006447584681206296,-2.5502944133781913,-0.6920165738898263,-0.0025712752827384655,-0.001840030958642842,-0.1077932545779703,-0.19551144807435583,-0.3005575895462786,-3.3790502275824266,-0.04160025201154509,-0.002994279111357392,-0.024440680195573026,-0.001602695574418775,-8.10366810750097,0.09998564052618102,9.038664444071283e-05,2.310557769989267e-05,-0.10888851429391971,-0.21163367109313058,-0.09371507754809068,0.445845740692874,-0.011734932996377862,0.000914521798305576,0.0007247372112236798,-0.0009133172756956449,-1.0507466449197385,-0.998027757487217,-0.0011095625355084734,0.0004568847423844792,-0.12482753023293564,-0.5262559857154451,-0.2288425284265624,-4.8612190228552885,-0.046688591856018834,-0.0027304285366447447,-0.09497673349024702,7.898339420501776e-05,-9.972724316229336,-0.2804014355130691,0.004075994325700568,0.0011897065734441656,-0.02873143413683958,-0.32309630429489417,-0.11836411997585093,-1.4146602190427842,-0.025060451963367217,0.003084546003112395,-0.07900967947971474,0.002048216766707958,-4.663856922500107,-0.82055028000974,-0.030741321437267367,-0.003457480542094652,0.14243973703433155,-0.64101360047306,0.19080322346570977,-3.667693450311324,0.03298543706401512,-0.028948099064315263,-0.3757753892889028,-0.01841561222999061,2.9195144352526934,,,0.4783333333333334,1.2875,0.65,0.05,0.6375,0.0125,0.7918924211371474,0.012475488221332398,0.029675488221332397,0.8557455027438721,0.24673932670643453,0.23649586319088786,1.6476379238810197,0.4832351898973224,2.0968121732190905,1.8110464164571152,0.10809572624305393,0.17767003051892127,0.0,0.2857657567619752,7.219619696864874,806.0,222.4549,133.0,254.0,5881.246772357234,3177.8951959999995,57.46612738243301,225.7313,144.97222222222223,279.307728,8404.306712214819,976.0,250.925,175.0,279.0,5747.1668142257995,3699.6566909999997,76.16258062200001,257.131,121.47222222222223,307.816044,11076.870885844457,1518.0,434.589,299.0,419.0,10624.884102562894,5694.146407,122.75113466909399,444.222,190.8333333333334,538.3891959999999,17494.40070956245,1855.0,593.0509999999999,361.0,478.0,14751.167711264692,6808.149591999998,155.77292696964102,605.2471,286.1944444444445,739.8178479999999,21580.136535378002,1765.0,682.53,351.0,396.0,17816.242231630833,6240.745602999999,161.616689926433,695.3544999999998,294.4722222222222,862.9555799999999,21429.01624077519,1493.0,676.537,307.0,306.0,18663.690254691766,5165.632095999999,142.11832010946998,686.6914999999999,283.0,864.1772799999999,18313.99872048697,1083.0,527.8879999999999,208.0,200.0,14401.315213347481,3625.1656820000003,103.90526798213098,534.8331000000001,240.00000000000003,672.5321200000001,13175.27774385561,653.0,398.4789999999999,130.0,92.0,11410.149223758326,2074.344672999999,66.217374056678,402.08359999999993,179.33333333333334,513.173596,7986.891977607328,268.0,245.13400000000001,63.0,15.0,7273.117753198334,714.2352899999998,30.838335910433003,245.59600000000003,112.83333333333334,317.97669600000006,3483.270508569077,261.027027027027,3.6819027027027014,0.8767677173293015,25.729729729729737,129.02702702702703,53.181604673271856,1246.428720756756,8.810428519477295,3.540789189189187,46.04654654654655,2.2494170810810816,1924.366281136451,6.997808619430255,-0.3712650840029235,-0.4425386435462827,13.427319211102997,39.186997808619424,1.4876783100129036,38.23300931702009,1.0580739553747869,-0.31881533966398795,-5.950470741011281,-0.2534421417092776,178.60127192028017,34.62381300219138,-0.39130518626735017,-0.16065701353273984,2.545653761869983,15.569758948137332,20.034487623824976,171.50219852081847,2.360839777355322,-0.26101709276844426,2.1299001704407114,-0.2537139663988319,499.4424517492546,-17.449963476990494,0.7296604090577049,0.33747395536460095,-7.013878743608469,-1.4769905040175355,-1.9945152057692521,-90.16313757194986,-1.0904049207198685,0.5835070124178239,20.88272055839624,0.631863298758217,-249.92885251106276,-80.27392257121986,-0.298267932797662,-0.21344359120256967,-12.504017531044555,-22.679327976625277,-34.86468038736832,-391.9698263995615,-4.82562923333923,-0.34733637691745745,-2.835118902686471,-0.1859126866325779,-940.0255004701125,11.69831994156318,0.010575237399563401,0.0027033525908874423,-12.739956172388606,-24.76113951789628,-10.96466407312661,52.163951661066264,-1.3729871605762098,0.1069990504017524,0.08479425371317054,-0.10685812125639045,-122.93735745560939,-89.82249817384952,-0.09986062819576261,0.04111962681460313,-11.234477720964207,-47.36303871439006,-20.595827558390617,-437.50971205697596,-4.201973267041695,-0.245738568298027,-8.547906014122232,0.007108505478451599,-897.5451884606401,-19.34769905040177,0.28124360847333923,0.08208975356764743,-1.982468955441931,-22.293644996347698,-8.167124278333715,-97.61155511395211,-1.729171185472338,0.21283367421475524,-5.451667884100317,0.14132695690284908,-321.8061276525074,-34.46311176040908,-1.2911355003652294,-0.14521418276797537,5.982468955441925,-26.92257121986852,8.01373538555981,-154.04312491307562,1.3853883566886351,-1.215820160701241,-15.782566350133918,-0.7734557136596056,122.61960628061313,0.6926503336099509,0.5713531372598637,0.42020451295419353,0.30554715614732136,0.2610731443866397,0.1656091603015887,0.1630827680170482,0.09079000302481346,0.09824050605867984,0.04899138097746447,0.06238980446802652,0.027401959672846525,0.039975469467377116,0.015318294057059504,0.025629902518981316,0.008505841398968173,8.007716383946118,5.666354689912097,3.515792411526752,2.165798430056393,0.41998953175799214,-0.3741384821449683,3.2917181112622194,0.992544749116777,5.016307380588002,0.9969658277755169,14.54390504100357,10.926877534071346,16.003225896533635,11.677712757320302,2.016831209574263,0.784256190256379,3.4580566114029265,2.2156662172439234,6.003958918481363,1.2406808957681528,3.6716378319702154,2.4116595325307055,20.924594599973524,14.707149342419758,0.2533423880286856,0.5947803447642495,0.784771932997878,0.8709366638047689,0.8905088364296373,0.8905088364296373,1.6644294364656587,708.3764589458864,0.0,0.0,1.0,0.0,7.0,3.0,5.0,0.0,0.0,3.8101009892570685,1.924147281078668,0.8747169723405479,0.3987807433017121,0.29067263519360775,0.29067263519360775,144.6642873718737,761.8226642902954,53.053876710244964,20.58980173757555,40.11587454781852,,8.0,278.0,0.0,10.213054789681411,11.49902366656781,6.041840829147961,36.07675412685558,11.126902983393991,6.06636706846161,6.06636706846161,30.146682918912497,0.0,9.566666666666668,25.75,13.0,1.0,12.75,0.0,0.02166666666666659,0.25,0.1203203203203202,0.0657473800330941,-0.05457294028722609,0.045151515151515054,0.1135815899581587,0.0,0.5684684684684687,0.7966666666666665,0.44814814814814846,0.5027210884353746,0.7515151515151515,15.83784842274295,0.24950976442664796,0.5935097644266479,17.11491005487744,4.9347865341286905,4.729917263817757,32.95275847762039,9.664703797946448,0.6004184100418413,0.12195121951219509,0.0,0.4599303135888501,0.29411764705882354,0.3395800851431349,-0.5737504601613072,-0.058394256080004155,-0.01550676919354884,-0.03825003067742048,0.660419914856865,1.1158376083482704,0.05926986876106346,0.0301577731986019,0.05071989128855775,-3.6040489401243616,0.8343963553530753,0.941663938445457,1.3312657479942742,0.6121323529411763,0.6138248847926268,1.0600296518810655,0.8336977217751322,0.8996739880213128,0.9172361940993458,0.9626129063814522,0.9727456141430124,0.8622112746254157,0.8109893571409823,0.803969650256136,0.796573671843144,1.1922416854065565,0.9431368268260589,0.9097876397095574,0.8125744255860023,0.842207114075949,0.7920626195782059,0.5173882831340931,0.7487659302515648,0.8191859804246477,0.9260124840990446,0.7309369618960051,0.5987939988630739,1.2778039787343505,0.9779631165411283,1.049907015019911,0.9311669656582209,1.0380578368698088,0.7485774951340074,0.5740641905178935,0.6814333587251006,1.0153176589022317,1.0248641469283997,0.820117571610934,0.8158672120734125,1.1518943784410312,0.9705264146309751,1.1794885620660347,1.0300902488775183,1.1673245734954243,0.8420127536186719,0.8169207493621695,0.8059975035189064,1.1407813212309708,0.9612915558245856,0.8643273567314016,0.8046505266849036,1.094214608920491,1.026618542747575,1.0194808219646498,0.9638184774150409,1.020913155164158,0.873777390618956,0.817827230974914,0.8467640592228973,1.0091581318683807,1.1408780285773454,1.0654056656957624,1.027864536503423,1.010504201680672,1.1098449937159613,1.1003152501197226,1.1421603983384332,1.1564268926165546,1.0785618109262554,1.1704340170215541,1.0660173340764123,1.1610961316419295,1.0973376430442887,1.1528868995338841,1.1910514169870143,0.8009682133723052,1.0695433598659405,0.9756250409550498,1.0955100021922326,1.0537063378113936,1.1524328394328496,1.3494536685092742,1.1910322769214872,1.0655608900261682,1.2905067597550517,2.04128541479309,1.9730373735654063,0.5496698679471786,1.2887665330061642,0.7134578458991817,1.269987376674571,0.7749276271365162,1.97360359861314,2.29167695382193,2.165533988261538,0.8883202208388813,3.5,0.0,2.88888888888889,1.875,2.017777777777778,0.7500000000000001,0.4253061224489796,0.16145833333333331,0.02040816326530612,0.0,3806.7775417151556,4276.678447308615,1923.3072724688477,1742.1852593280719,9.969224178591029,0.43740834740511175,5.608602305722444,0.7774881575075223,1.0,0.29411764705882354,1.3993523763718814,3.285306084550282,4.334736393288402,4.810672622327238,4.918780730435342,4.918780730435342,0.15217391304347822,0.0,0.08253968253968258,0.046875,0.05765079365079366,0.026785714285714284,0.023628117913832198,0.01793981481481481,0.01020408163265306,0.0,0.41779711788096885,13.648393194706994,5.0253061224489795,2.03698224852071,117.64984676508098,1.0,3.973786876096998,69.82824068178952,,55.07771929454882,54.56177081038875,54.67216526768753,55.0835742100475,66.34701168507328,54.90257430325571,55.10371901447386,61.55108129380614,0.02479809484365298,-0.0932724817661848,-0.46688334571352164,0.48272058823529407,0.28093317972350224,0.02587553431710459,0.028373490621085632,0.11108635710034036,-0.08328770040577299,-0.11953524961685197,-0.10421988125404097,0.08584965250414553,0.06912462557494481,-0.055384300068947255,-0.0954901365200001,0.05155935613682101,0.06288463921358063,0.19631802573641144,0.07170436917595188,0.13964097009158208,-0.03841600974760061,0.02410491251549471,-0.058778400204716745,0.13525118867402677,-0.025239729356227883,0.07482110588879907,0.14532199770903434,-0.10291973932430105,-0.004321879568752524,-0.014159618834071007,-0.02731097577150142,-0.04672684076214412,0.062218803826645214,0.17122440328399274,0.10605442414884637,-0.04903478834563004,-0.09809180882741482,-0.025839136213862402,-0.07765015080295759,-0.15500941756012743,-0.05606518064805051,-0.20910671803781322,-0.10030646465258138,-0.17470311699645757,-0.03128916216149913,-0.019638935708719808,-0.02636226814148442,-0.15581010897803996,0.014172741963174761,0.0009083091309967225,0.0009750659815579616,-0.15658442864325217,-0.06068841552712521,-0.0652003242583998,0.013234846189696904,-0.04928165751598887,0.009556430707769641,0.0005823515296238274,-0.015022887255972063,-0.0202028201403897,-0.14146821288051362,-0.01115016260035279,0.019280745782610232,-0.17950513538748827,-0.15091002187776378,-0.15921244956413025,-0.14430436402046518,-0.19607194983237713,-0.028532016581023757,-0.07631710524885599,0.0012991746218007482,-0.1917466561940457,-0.03974627927287137,0.04096028663120772,0.05020616332854916,-0.0413165266106443,-0.09265162140337456,-0.08234938501785244,-0.041993920095810905,-0.1052430901169831,0.03223241938933198,-0.06348702258907393,0.03369051520306418,-0.08967248481957164,-0.11631117553668816,-0.30892421256649794,-0.14590726543533838,0.20483193277310907,-0.183818102020867,0.1327473909748224,-0.1088747839339961,0.13852460963396668,-0.302497440019843,-0.30194858130424046,-0.3029129894319905,0.05613382190450578,8.344246029174005,22.082218386260006,12.94860914777125,12.323924619265057,28.238131108249,35.35192716557954,37.23675196553176,37.34572493850474,37.34572493850474,41.93624346438181,36.2209283291423,2.1619145248610785,3.5534006103784255,0.0,5.7153151352395035,2572.067436901658,1849.3614868785958,787.7478167718014,186.0,35.0,52.0,75.0,108.0,126.0,152.0,177.0,203.0,267.12592878400034,23.0,4.762173934797756,5.673323267171493,6.6052979209482015,7.536363938404511,8.474494436883122,9.411238314343073,10.351277525289294,11.28996939608009,12.230682327852657,0.6396396396396398,0.972648648648649,1.1145803349773935,0.6015386796337591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6866722932513354,0.9609962904080549,0.9965158166177835,0.6430567055962944,5.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10.213054789681411,0.0,11.49902366656781,0.0,0.0,4.899909730850478,0.0,0.0,0.0,24.26546827384644,48.2094882637788,18.150048726757532,0.0,153.11412883725743,-258.69980520366835,-26.329534740003623,-6.9918866271261715,-17.24665368024456,297.77841620913114,503.12285908662705,26.724341970241344,13.597915110449378,22.869220867573958,0.5,0.7963161547846653,0.29844197886557755,89.61392206314088,0.17360188054445125,122.66137850958017,0.20368384521533464,4.0,0.0,0.26861789100648453,0.630643150820036,0.8320904496214948,0.9234505589525387,0.9442028530073012,0.9442028530073012,2.8499000000000025,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,77.98660000000002,10.213054789681411,0.0,4.899909730850478,0.0,18.88348407499998,13.592428388589765,47.02218981739904,0.0,22.6259266499618,3.8501476017100584,0.0,5.231108616854587,0.0,6.840546529288687,0.0,8.560061091643414,0.0,10.338090662387614,23.66666666666667,9.814718206727136,0.0,0.0,0.0,0.0,0.0,5.686098592214665,0.0,35.988000000000014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.23947239416356,0.0,0.0,11.49902366656781,28.705392909121656,12.841643245852019,0.0,22.732195304238946,30.33183534230805,0.0,11.126902983393991,0.0,22.256931146449084,25.40687485029941,26.92557440212272,139.65648136357913,,110.09115287481191,109.04783198839033,109.28717873965363,110.10304528642703,134.31695489942734,109.73728599941228,110.14371276959272,123.77255073822795,26.925574402122724,139.65648136357916,,109.51258144624055,108.36644529690602,108.77281257816085,109.5261170834155,135.3767937170067,109.12652253552,109.57018543539789,124.21947617197182,5.123198040127787,97.95584109647552,,77.69449359230967,77.0679323434722,77.12438713689042,77.70126615084638,90.79911777469684,77.4865395456358,77.72529146478631,85.27571192917581,1.346278720106136,6.982824068178957,,5.504557643740595,5.452391599419516,5.4643589369826815,5.505152264321351,6.715847744971367,5.486864299970614,5.507185638479636,6.188627536911397,2.5615990200638943,69.82824068178952,,55.07771929454882,54.56177081038875,54.67216526768753,55.0835742100475,66.34701168507328,54.90257430325571,55.10371901447386,61.55108129380614,35.55686274509803,0.0,2.162350560594608,0.0,0.0,0.0,20.059119583018393,36.87108521485799,3.0092162698412697,0.0,0.0,0.0,0.38091931216931196,2.387577475434618,0.0,0.0,0.0,23.793098107062892,359.0530176924117,51.77603792575961,121.55632512836044,160.3852465516709,177.99488702610782,181.99488702610768,181.99488702610768,1157.0,119.3348210617702,91.83952735397692,54.81995450188436,43.7,43.7,1.0,8.88033126675205,5.523561956057013,4.100600392697915,4.418255615896378,,4.417867612851818,4.419854875738328,4.418732147259293,4.417842897964703,4.366500002208355,4.418568841885857,4.417762287572773,4.389121568180592,0.20503001963489575,0.22091278079481888,,0.22089338064259093,0.2209927437869164,0.22093660736296467,0.22089214489823514,0.21832500011041772,0.22092844209429283,0.22088811437863867,0.2194560784090296,2.104280580792715,2.178892141714949,,2.1788043197064133,2.179254042567155,2.178999990990324,2.178798725388427,2.1671089539373454,2.17896303278925,2.178780478671821,2.172276289260347,202.86999999999972,116.05206484749264,110.52065960065619,,110.44095999881475,110.25728833961016,110.4217882698015,110.44346001577215,114.7322282381363,110.37840217252503,110.4504403776292,112.92805520536719,5.802603242374632,5.526032980032809,,5.522047999940737,5.512864416980507,5.521089413490075,5.522173000788607,5.736611411906815,5.518920108626252,5.52252201888146,5.6464027602683595,5.4471861058622375,5.39834964875385,,5.397628260076104,5.395963800090658,5.397454652446825,5.397650896502497,5.435748143764692,5.397061662769163,5.397714097540162,5.41989811690724,0.0,2.387577475434618,20.059119583018393,5.707817460317461,-0.02171886810279622,10.195637518896449,1.9392568972033257,1.069959372637944,2.162350560594608,244.120832776599,69.03801923399163,-116.64581357128698,-11.871790928807537,-3.152589555980729,-7.776387571419134,134.2660679444179,226.8543464045848,12.049806565652137,6.131198551475264,10.3115612002084,680.0,40.0,1.4915756930523714,0.8052744131562061,0.0,0.0,0.5436517128619158,0.2096345072042266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22451341401773972,0.10267997392195431,0.6180652193804874,0.24296647487447978,13.853006672199017,11.427062745197274,9.664703797946451,7.027584591388392,9.13756005353239,5.796320610555605,8.480303936886507,4.7210801572903005,7.368037954400989,3.6743535733098356,6.738098882546864,2.9594116446674246,5.036909152889517,1.9301050511894975,3.89574518288516,1.2928878926431622,4.189489443543952,1.9669593003122727,7.169485437261314,3.01906051349947,12.91137832744255,4.766462240301512,65.97177059668805,39.855385237502915,25.29976347661251,21.319701871969833,20.972733940550487,20.972733940550487,116.0,145.0,42.42948099999998,18.764519,0.4594594594594595,149.03,6.0,4.222222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,12.0,12.0,37.0,0.0,1.0,40.0,12.0,0.0,6.0,34.0,12.0,23.0,28.0,0.0,0.0,0.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,3.0,2.0,1.0,20.0,3.0,0.0,1.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,2.0,3.4011973816621555,7.640190778583111,4.060443010546419,4.705015520957808,5.333925794015404,5.951293382418705,6.272877006546167,6.68979359109326,7.101856144843616,7.472873756456227 +5289394,CO[C@@H]1[C@@H](O[C@@H]2O[C@H](C)[C@@H](O[C@H]3C[C@@](C)(O)[C@@H](O)[C@H](C)O3)[C@H](N(C)C)[C@H]2O)[C@@H](CC=O)C[C@@H](C)[C@@H](O[C@H]2CC[C@H](N(C)C)[C@@H](C)O2)/C=C/C=C/C[C@@H](C)OC(=O)C[C@H]1O,0,19.669172932330827,6.144810526315789,2.827067669172932,5.924812030075188,166.5779074324769,77.1014289548872,1.2349542177355337,6.17985789473684,4.045791562238931,7.734855789473682,180.65806832371717,21.941176470588236,6.3738970588235295,3.5441176470588234,4.970588235294118,147.98402011954119,81.27956222058823,1.583803335617647,6.4967132352941155,2.795853758169935,7.83725182352941,230.48017397335127,17.899224806201552,6.34808527131783,3.2286821705426356,3.794573643410853,158.9748742355035,64.82889950775191,1.2809809970541084,6.417472480620154,2.7010120585701975,7.893955178294574,183.39576160074253,16.002739726027396,6.356424657534247,2.789041095890411,3.3232876712328765,160.42370419344988,56.32672860273971,1.1927748739713533,6.411308219178084,2.9232876712328766,7.932503802739727,166.47846170745729,13.896995708154506,6.1336201716738215,2.515021459227468,2.57725321888412,163.06172729479044,48.397777924892694,1.0961453613094034,6.185457725321887,2.713936576061039,7.747956695278971,148.40791325721932,13.05587668593449,6.1601348747591524,2.420038535645472,2.4354527938342967,163.77710644907305,44.46376116763006,1.078683006389451,6.205401541425819,2.650984799828731,7.787812285163776,144.23929441443502,12.96985815602837,6.006661347517731,2.4361702127659575,2.4875886524822697,163.43934093571073,44.97479409397163,1.080591261196156,6.061150177304965,2.5196266745468874,7.638397936170213,143.48421920268248,13.57641196013289,6.095126245847175,2.4485049833887045,2.5548172757475083,163.07275808088755,47.158650551495,1.0996156022342043,6.148194186046512,2.7410022148394235,7.715112558139534,147.8488236552647,13.019969278033795,6.1104224270353305,2.30568356374808,2.3840245775729647,163.65731129191437,44.45415160829492,1.0736502840783273,6.159473425499232,2.8189324116743473,7.73077960675883,142.4159501503174,7.810729832099047,0.15740628639267343,0.020320336766633994,0.610775057945616,3.840805020068969,1.233388812158568,36.92060504030753,0.21104331448576705,0.1463706371191135,1.470932971526561,0.10272254847645426,47.519338484638865,0.3763555283609293,-0.003187688427171343,-0.008583386916898063,0.2324359106523496,1.0360193939071476,-0.2679205004485845,1.74804589799411,-0.02627168227218842,-0.0002610395958936825,-0.17472293049260335,-0.005658232686980653,-1.6134282837739164,0.46029657111830113,0.0007501512129686794,-0.0016833831032602208,-0.019442074323770604,-0.024549264400729017,0.0398780575888164,2.1825000626242153,0.002243112882629284,0.0023893996005927317,-0.009686185310374316,-0.0005221111039533255,2.4113350470074213,-0.602840245117893,-0.0029805700470146614,0.001152062132930939,-0.048163048469871766,-0.14170109587492258,-0.03296273979187979,-2.8779234969972007,-0.00974744415051116,-0.004216722194816449,-0.03235464786352191,-0.0005439541001025116,-3.5678847258467994,0.0835552367963699,0.0013800474677286966,-7.333136674331518e-05,-0.03834613155237962,-0.14354147494005265,-0.02683589402424394,0.37299762838135503,-0.006429477457820468,0.0016730154672880797,0.06454377470238787,0.00030651409413524785,-0.5047761190887903,-0.7170128807611622,-0.012225429626480428,-0.0004564707738611481,0.01813826582624147,-0.2480659469526526,0.043589867797454836,-3.343519816453101,0.0030863529241672637,-0.01254230327873223,-0.11238164780943241,-0.006418875015344902,-1.737796208755913,0.3994365412812146,0.00391054024839735,0.0003311660299412392,0.006806129064462468,0.14094456666382005,0.007711487324580442,1.8951718232076353,0.0051888868072239224,0.004381098603170859,0.02688737721764017,0.001750540735938388,2.0297832952963772,0.07685041419776059,-0.0011762961346362707,-0.00030464566001065044,-0.046190839925482535,-0.0924723944850761,-0.010946222806236224,0.37890863657154,0.001927959056603112,-0.0007880177800682652,0.009276064352172621,-0.0012285337885718133,0.5983673406930969,-0.47522517183086244,-0.0013712263924423903,0.00034111265340730404,-0.0631040370754682,-0.14885625414494272,-0.06310242472541178,-2.2918390071716996,-0.013946368639989805,-0.002213300228499913,0.010288643699420197,0.0002793494942789727,-3.620259576855317,,,0.4570621468926553,0.7288135593220338,0.0847457627118644,0.0,0.6440677966101694,-0.559322033898305,1.9156040927837672,0.027898486673732154,0.033728995148308426,0.8846539983713824,0.13715963060458128,0.3334878753042814,2.8002580911551496,0.4706475059088627,1.9921417732516118,1.4707492183969217,0.06848750757572832,0.4529050472789621,0.0,0.5213925548546903,6.334691767278211,2616.0,817.2597999999999,376.0,788.0,22154.861688519428,10254.490050999997,164.24891095882597,821.9210999999998,538.0902777777778,1028.7358199999996,24027.523087054386,2984.0,866.85,482.0,676.0,20125.8267362576,11054.020462,215.397253644,883.5529999999997,380.23611111111114,1065.8662479999998,31345.303660375772,4618.0,1637.806,833.0,979.0,41015.517552759906,16725.856072999995,330.49309723996,1655.7078999999999,696.861111111111,2036.6404360000001,47316.106492991574,5841.0,2320.0950000000003,1018.0,1213.0,58554.652030609206,20559.255939999995,435.362828999544,2340.1275000000005,1067.0,2895.3638880000003,60764.63852322191,6476.0,2858.2670000000007,1172.0,1201.0,75986.76491937235,22553.364512999997,510.80373837018203,2882.4232999999995,1264.6944444444443,3610.5478200000002,69158.08757786421,6776.0,3197.11,1256.0,1264.0,85000.3182470689,23076.692046,559.8364803161251,3220.6034,1375.8611111111113,4041.8745759999997,74860.19380109178,7315.0,3387.7570000000005,1374.0,1403.0,92179.78828774086,25365.783869,609.4534713146319,3418.4887000000003,1421.0694444444446,4308.056436,80925.09963031292,8173.0,3669.2659999999996,1474.0,1538.0,98169.80036469431,28389.50763199999,661.968592544991,3701.2129,1650.083333333333,4644.497759999999,89004.99184046936,8476.0,3977.885,1501.0,1552.0,106540.90965103626,28939.652696999994,698.946334934991,4009.8172,1835.125,5032.737523999998,92712.78354785663,1038.8270676691732,20.935036090225566,2.7026047899623213,81.23308270676694,510.8270676691729,164.04071201708956,4910.440470360902,28.06876082660702,19.467294736842096,195.63408521303262,13.662098947368417,6320.072018456969,51.184351857086384,-0.43352562609530265,-1.1673406206981365,31.611283848719545,140.89863757137206,-36.4371880610075,237.73424212719897,-3.572948789017625,-0.03550138504154082,-23.762318546994056,-0.7695196454293688,-219.42624659325264,118.75651534852169,0.19353901294591927,-0.43431284064113695,-5.0160551755328155,-6.333710215388086,10.28853885791463,563.0850161570476,0.5787231237183553,0.6164650969529248,-2.4990358100765735,-0.13470466481995796,622.1244421279147,-220.03668946803094,-1.0879080671603514,0.4205026785197927,-17.579512691503194,-51.720899994346745,-12.031400024036124,-1050.4420764039783,-3.5578171149365736,-1.5391036011080037,-11.809446470185497,-0.19854324653741673,-1302.2779249340817,38.936740347108376,0.6431021199615726,-0.03417241690238487,-17.869297303408903,-66.89032732206454,-12.505526615297676,173.81689482571144,-2.996136495344338,0.7796252077562451,30.077399011312746,0.1428355678670255,-235.22567149537628,-372.1296851150432,-6.344997976143342,-0.23690833163393588,9.413759963819324,-128.7462264684267,22.62314138687906,-1735.2867847391594,1.60181716764281,-6.509455401662027,-58.32607521309542,-3.331396132964004,-901.9162323443188,225.28220928260504,2.2055447000961053,0.18677764088685891,3.838656792356832,79.4927355983945,4.349278851063369,1068.8769082891063,2.9265321592742923,2.4709396121883644,15.164480750749057,0.9873049750692509,1144.7977785471567,46.26394934705188,-0.7081302730510349,-0.18339668732641157,-27.806885635140485,-55.66838148001581,-6.589626129354206,228.10299921606708,1.1606313520750735,-0.47438670360109564,5.584190740007918,-0.7395773407202316,360.21713909724434,-309.37158686189144,-0.8926683814799962,0.22206433736815492,-41.0807281361298,-96.90542144835771,-41.07967849624307,-1491.9871936687764,-9.079085984633362,-1.4408584487534435,6.6979070483225485,0.18185652077561124,-2356.7889845328114,0.7418049368934418,0.6270265785983998,0.44787423949391764,0.3433414346513043,0.29442648223965917,0.2001000193186306,0.18133370433709786,0.10954553232789409,0.1191398269947796,0.06319820182845479,0.0719821122006089,0.03399653081048095,0.0470767643178889,0.01855896431002361,0.02964946054501918,0.010387883097320555,8.033897232553786,5.726509149251249,3.5586580040657347,2.226329223722605,0.43599998432193393,-0.4942852681465598,4.023027097010608,0.9571431933949298,6.030116021194732,0.9930353090856043,14.54580804894806,10.986839068506471,16.021538161902637,11.737610388329836,1.9549797650063518,0.7412710802473114,3.5046641305055077,2.2762888569107345,7.00968779220424,1.13281139543683,3.7175781694286334,2.472296021733726,20.861913930005947,14.700233586698282,0.20061351670645808,0.43598506277345667,0.7189146355558661,0.8471825076269154,0.8838362556972605,0.9028196998308413,1.6356930346886187,1365.214824506296,0.0,2.0,9.0,0.0,4.0,20.0,0.0,3.0,0.0,5.625051897876233,3.9470215318287,1.929936533599574,1.0154785716237722,0.7541636279984818,0.6188252821338205,559.3959441417172,6837.866335438979,87.90654615738879,51.41252883788706,100.40173931196745,,22.0,2034.0,109.86066866265955,30.015183947506465,30.905356508909676,19.26246486877803,12.706982146055566,14.033534740968157,39.76646529527673,52.24689879207115,4.899909730850478,37.89490363040039,26.96666666666666,43.0,5.0,0.0,38.0,0.0,0.04293785310734472,-33.0,0.12614870509607407,0.007712712438029401,-0.11843599265804466,0.03780826831674311,0.20358990536277655,0.0,0.5641604010025051,0.8954802259887014,0.438011695906431,0.5564476885644757,0.8576719576719583,113.02064147424227,1.6460107137501971,1.990010713750197,52.19458590391156,8.092418205670295,19.675784642952603,165.21522737815383,27.7682028486229,0.5104100946372234,0.2781211372064277,0.01854140914709518,0.38195302843016077,0.8604651162790697,0.24386295453807272,-1.5270368462340749,-0.04039393870589478,-0.011481480046872744,-0.043629624178116416,0.7561370454619274,4.734827934034011,0.0401076210401726,0.03560021003033091,0.048314570755449086,-1.2546694581569473,0.9529978865695837,0.8579132149685028,1.4379557383264694,1.1530002504519021,0.6621614659994113,1.6841730158427597,0.9633198809506934,1.539585351974662,0.8374094746699244,0.8957799856215514,0.9062852804806797,1.3053219251145967,0.9906745472014046,1.0978682591637856,1.2642594691363154,1.565120153603747,1.1763412997788747,1.1821141734867149,0.9909609042201195,1.1349559460806342,1.0719502825182152,0.8103758837842898,1.1201333696371947,1.035847844704493,1.148645306570353,1.2389221013198704,1.2147504946447916,1.3467082206995884,1.2095453280694894,1.1551948292392924,1.1465788885449624,1.1453255233818487,1.2278669145564676,1.0602719983068438,1.2622218159082643,1.1251479719002566,1.0116229353857384,1.0664054451336817,1.1223684797182998,1.1908190894168904,1.1087548215352856,1.0725470076975134,1.0113312087511301,1.072973089710895,1.0559217934698346,0.8802527382246962,1.0877545568595524,1.0314018110552678,1.131968074130885,1.2303931430773944,1.1403411463956696,0.9643270636223362,1.1755163090179879,0.9860174550216014,1.1279307583487763,1.0076766183873969,1.2255182437003256,1.0768751797919542,1.2427616190968163,1.0401741530153672,0.9391422435378983,0.9483273876167686,0.9524621639194909,1.040085626284985,0.95916625432954,1.018119039197025,0.9398921478906328,1.0141419773251081,0.9437535606133495,0.855050584998716,0.9638192092578636,0.9802811599037572,1.0031278972141633,1.05233591528101,1.070086515399725,1.1755271518731218,1.0707474447357794,1.0540267404127583,1.0023969255585214,1.0349585052635255,1.044816043287817,1.0743764922565033,1.0705247711336756,1.0105104820377255,1.077917220395397,1.0684858074133436,1.066192303095987,1.1619292735068254,1.0828377980571093,1.0956545701073885,1.0784246666859092,1.0945362738508404,1.0683491241207625,1.1226806431776537,1.0662231675281781,1.0884817492513221,15.5,0.8052239567391082,8.000000000000004,6.3125,4.644444444444446,2.833333333333333,2.585306122448979,2.321180555555556,1.5862937767699667,1.0956250000000003,251781.75457315962,254533.00810488441,5762.532382599062,5014.480863503758,21.941519003787537,0.47307308190354425,11.561576987020583,0.8977963843876858,0.0,0.8604651162790697,1.4302305376249569,3.1082609036724897,5.125345901901616,6.039803863877418,6.301118807502708,6.436457153367369,0.24999999999999994,0.007455777377213965,0.08988764044943824,0.06069711538461538,0.04110127826941987,0.024853801169590642,0.020041132732162632,0.016119309413580245,0.011250310473545865,0.009054752066115704,0.5304611173356826,51.63267429760666,23.790178007827294,14.244498394549298,350.5922975393349,0.0,4.97918414929443,520.6279558495528,,448.21371496456527,438.6612246680661,464.9527199063348,448.3986331346473,719.1704748261035,445.7049208403618,448.634172340334,592.3024183414341,0.048184425329148524,-0.020251341291536346,-0.4224037729036061,0.3805589433107563,0.26974016866092926,-0.2172230668929887,0.047346079407033184,-0.12448478804553748,-0.0017834150416470053,-0.11878374737311972,-0.05508267435827505,-0.033953088052677216,0.05893131384811982,0.004765700469530902,-0.0828422836979915,-0.0318318079149554,-0.006391697644752658,0.03233210581748779,0.059113334146109,0.010628684865450034,0.016324309626720324,-0.006585062336539929,-0.0050827312181901535,0.050744289039017475,-0.07718103917004723,-0.018935521034904448,0.056695031492914306,-0.07885562424875615,-0.036893592654275914,-0.0267253435955782,-0.07794897981371837,-0.04618693643180313,-0.02880852524666518,-0.021996004229848532,-0.005295371933136911,-0.07508279449218672,0.010697494164116464,0.008767422822529226,-0.0036087672948277773,-0.06278273982136644,-0.03737275758337639,-0.02175785426274309,0.010102695445379086,-0.030465203190570993,0.011429993748859706,0.04387948054179734,0.002983902742692429,-0.010622540952500098,-0.09179844856680608,-0.07766798840538218,-0.022463740591675302,0.02969712922995051,-0.0645869669656384,0.03534154628917681,-0.09055972438162543,0.014624262946625633,-0.0856886567250886,-0.07640161039615605,-0.06248749773586679,-0.03657029462473839,0.05113946454013638,0.02484360909603016,0.016297270746270996,0.011143429935327338,0.03669662113212118,0.0062522760451219584,0.05133100665979361,0.024586833370520558,0.02993154015996807,0.01827913150232533,0.01704144573807611,0.04271488955917445,0.009839082371270277,-0.007472993370174714,-0.014992156060665235,-0.0756265982452666,-0.024076305358353124,-0.008874916569965566,0.010262795968751652,0.009135371387152542,-0.005383714900598486,0.006306245445396301,-0.011959728480192583,0.012592080609171897,-0.060842607803162356,-0.008711382651018536,0.016786761820178648,-0.10331796666308375,-0.03875652457418151,-0.05116182675191896,-0.062074795488037585,-0.06608296820002019,-0.015121203760961795,0.006994638028096178,0.0027194564233674976,-0.07618497420846052,12.06341399369809,35.28386808459593,29.266159886139715,13.545554171500486,30.402488205722513,38.91685741464738,42.87137268616272,43.63115408918664,43.76757514181822,117.5363646218451,86.77420388541839,4.040762946967971,26.721397789458763,0.0,30.76216073642673,33325.9443279937,26900.579199700685,9733.723847986446,302.0,89.0,113.0,144.0,170.0,195.0,219.0,253.0,284.0,842.5140050480021,62.0,5.713732805509369,6.561030665896573,7.454141078146678,8.31996102188653,9.216620609933333,10.090838109351523,10.989639195478905,11.869067266813968,12.7694954632371,0.5739348370927319,0.978766917293233,1.1419443491636299,0.527752442466586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6059190581243529,0.9632610939112488,1.006056656572239,0.5606822807068557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,5.0,0.0,1.0,0.0,11.0,0.0,0.0,0.0,4.0,7.0,0.0,8.0,0.0,18.0,2.0,1.0,0.0,0.0,72.91536985553599,36.80599246187107,18.870080188005637,0.0,0.0,4.794537184071822,0.0,0.0,0.0,31.227817627026145,93.90765089026269,32.41410323920353,54.68751158954747,266.2948412030679,-1667.5022872965735,-44.109600466492076,-12.537611182681005,-47.64292249418781,825.6907853447851,5170.364048142405,43.79694569089672,38.874917655206055,52.75881681777964,0.5,0.8577804907911278,0.07382077447011139,35.20690186806071,0.04923355038385634,161.70042158105727,0.14221950920887225,11.0,0.1774193548387097,0.20271768716561053,0.4405579694488427,0.7264550992475646,0.8560683316497683,0.893106529059186,0.9122890844142569,2.3251000000000093,,3.7857142857142856,4.371335504885994,2.8743777732115126,3.774718464346087,-16.188483337111762,3.9444614443084456,3.7594531892893035,-6.224571949299216,216.88619999999918,67.91008757790685,0.0,9.799819461700956,11.835812092322787,190.1866174811424,35.30048547198629,24.304080427335524,0.0,0.0,4.8283137373023015,0.0,6.175867270105761,0.0,7.699389406256737,0.0,9.313708904953216,0.0,10.979598575857723,76.33333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,130.176,0.0,25.570183010711478,0.0,0.0,0.0,8.42524708568265,0.0,-0.62981122448171,151.87859843876276,0.0,0.0,0.0,181.48032324664806,47.483977998544034,11.835812092322787,86.48817455862581,24.304080427335524,0.0,0.0,0.0,70.19107484805595,80.58723473053894,71.31285042833954,1041.2559116991056,,896.2991006313096,877.1742684715599,929.8080032779844,896.6693097111812,1439.765723621353,891.2761311232894,897.1409055895056,1184.9186420013348,71.31285042833954,1041.2559116991056,,892.8567299599492,873.2386756338337,927.1293743853107,893.2361990555385,1454.5294329893184,887.69698338176,893.7211158643802,1190.829408632168,4.964317140923758,732.5999574977155,,631.4901317398569,617.6465020176647,657.3579639690164,631.7629663083748,1027.799967881939,627.921973035257,632.0929267050318,841.1408844120733,1.2086923801413483,17.64840528303569,,15.191510180191687,14.867360482568811,15.759457682677702,15.197784910359003,24.402808874938184,15.106375103784565,15.205778060839078,20.083366813581947,2.4821585704618787,520.6279558495528,,448.21371496456527,438.6612246680661,464.9527199063348,448.3986331346473,719.1704748261035,445.7049208403618,448.634172340334,592.3024183414341,128.1137254901961,0.0,19.809333591071496,0.0,0.0,0.0,45.06702957368093,133.8055353241078,1.9604601140873783,0.0,49.99033937500789,0.0,-13.2500716420422,3.9443012546571135,-1.4703444717083594,0.0,0.0,74.57074333401181,936.6839666770745,190.22066150411928,413.3987001884411,681.6710049529149,803.2939138956965,838.0488013978602,856.0488013978601,1890.0,203.98452621625398,155.3016598707785,97.99687789447574,195.37999999999997,195.37999999999997,1.0,7.788211557847076,6.954196310386875,5.365021714264022,7.560230439028232,,7.570202238385251,7.572038311225943,7.569126935349539,7.570174028067274,7.549016061858774,7.570794416519504,7.570110331823597,7.555192110726389,0.09093257142820375,0.1281394989665802,,0.12830851251500425,0.12833963239366006,0.1282902870398227,0.12830803437402158,0.12794942477726737,0.12831854943253396,0.12830695477667112,0.12805410357163372,3.4548527743792525,3.797854021991509,,3.7991721337750106,3.7994146438373324,3.799030079523441,3.7991684072734384,3.7963695827472232,3.799250355591982,3.7991599931324407,3.7971873746024793,658.2300000000031,2802.302535168425,512.3073098486421,,510.00528916235606,509.66696468856117,509.8838803477003,510.00952552700636,514.3523274616158,509.8820858641401,510.0235831019904,513.0311979310121,47.49665313844788,8.683174743197325,,8.644157443429764,8.638423130314596,8.642099666910175,8.644229246220446,8.717836058671454,8.642069251934577,8.644467510203228,8.69544403272902,9.713149043132347,8.013877010442604,,8.009373447482849,8.008709852911293,8.009135365113002,8.009381753959557,8.017860843532652,8.009131845710275,8.009409316937397,8.01528900891364,49.99033937500789,29.51448426536859,45.06702957368093,-1.4703444717083594,-1.4653272273355145,-0.46552690634961436,-1.5633215330687504,10.77652234064562,9.032811250425876,837.3688505079784,290.7901390175931,-1820.8885299635267,-48.16704970217781,-13.690891202733285,-52.025386570386466,901.6424695695139,5645.963224591277,47.82563518115614,42.450851312716374,57.6118696386865,14822.0,104.0,5.395812265409154,3.0986264974808955,0.2041241452319315,0.09128709291752768,1.5032731298886568,0.6016765427066567,0.11785113019775792,0.023570226039551584,0.0,0.0,0.0,0.0,0.0,0.0,0.16151482533909745,0.0932506278876433,0.5629694071234368,0.23562717467425853,43.76649127671307,36.99456813730559,27.768202848622895,21.287168948380867,26.203956919329666,17.808901719358126,20.49070859009206,12.378645153052032,17.156135087248263,9.10054106329749,12.236959074103513,5.779410237781762,9.179969041988336,3.618998040454604,6.4932318593592,2.2749463983132014,11.259728831931005,5.616894308355224,18.01144474992811,7.813977458784433,26.028534562866714,9.682851967255383,210.273536741948,96.65625321643003,52.6442206295982,34.97340014994253,30.807652277913967,29.000668863401167,302.0,353.0,134.5806820000001,93.28131800000018,0.2781954887218045,422.16,24.395833333333332,13.041666666666663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0,0.0,0.0,133.0,0.0,2.0,136.0,0.0,4.0,4.0,132.0,4.0,62.0,132.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,74.0,16.0,4.0,4.0,59.0,16.0,0.0,2.0,14.0,0.0,4.0,11.0,0.0,0.0,0.0,0.0,0.0,4.204692619390966,6.115892125483034,4.574710978503383,4.8283137373023015,5.10594547390058,5.288267030694535,5.480638923341991,5.627621113690637,5.820082930352362,5.996452088619021 +53276,CCOC(=O)Nc1ccc(NCc2ccc(F)cc2)nc1N,0,24.666666666666668,6.539476923076924,3.1538461538461537,8.871794871794872,168.3315950883906,98.43319038845564,1.4315019585239235,6.571576923076923,5.869658119658119,7.970041128205125,217.0322931811118,25.75,6.593525000000001,3.675,8.025,152.61285346669746,98.18465367087997,1.7170993807500001,6.711024999999999,3.656944444444444,7.965287999999998,258.7682882533723,22.307692307692307,6.534812307692308,3.3230769230769233,6.6461538461538465,158.46527530246755,83.93836537954459,1.4732706115552918,6.613930769230771,3.9200854700854717,7.959277661538464,215.46187411654944,18.4375,6.4519225,2.925,4.75,164.83768234699238,67.25665106901998,1.2863639931917374,6.510464999999999,3.521180555555554,7.931380649999999,184.43523936617643,16.884615384615383,6.451485897435898,2.6666666666666665,4.217948717948718,167.17160616860883,59.85653847033847,1.2115152499075896,6.5015205128205125,3.551282051282051,7.9389655897435905,170.50298794780988,16.103896103896105,6.324816883116882,2.5584415584415585,4.233766233766234,168.27394339828223,57.88720793292465,1.1448008797049607,6.361980519480518,3.683621933621933,7.8617040000000005,159.2160501639474,16.484848484848484,6.372212121212123,2.6666666666666665,3.984848484848485,166.17577347651877,58.91069718899395,1.2476084435051364,6.423071212121213,3.416245791245792,7.889035636363635,174.51011638536463,16.0,6.188920634920635,2.5873015873015874,3.7301587301587302,163.57823458467365,56.89662192477461,1.2825149254704922,6.2584317460317465,3.2023809523809534,7.690137269841268,173.4411525460891,13.59375,6.0975625,2.328125,3.15625,167.73997842118806,47.44407886652499,1.1011178341364845,6.1476125,3.1805555555555567,7.651527062499999,145.5106487126338,7.835634451019065,0.18907692307692298,0.02826611411946417,0.5443786982248516,4.451019066403684,2.0715115702869977,37.543018769229754,0.21887853295958315,0.17067692307692306,2.2205785667324123,0.11021322287968442,46.96861344970151,0.016929651545036915,-0.01958500000000003,-0.022210544925741,0.14600591715976333,1.197057856673241,-0.20018540995962555,0.13573272244065232,-0.0038103857724299138,-0.014980000000000038,-0.23948882314266928,-0.012633571597633125,1.2169587890052482,0.6377383300460227,0.035150769230769194,0.009121381099751757,-0.0319526627218935,0.42472057856673234,-0.13658821303646565,2.9135213890491864,-0.009764464789935017,0.030481538461538435,0.310190664036818,0.022244620118343196,-1.6505226101309731,-0.5263395792241944,-0.024477500000000006,-0.0009688594109292032,-0.05880177514792899,-0.7638395792241945,-0.2185337156427159,-2.493402404804589,-0.009048061923680916,-0.021362500000000006,-0.1961661735700197,-0.015561821597633124,-1.971264719226631,-1.7347140039447726,-0.038806410256410254,-0.006362413722931761,-0.0670611439842209,-0.8497698882314267,-0.23161191498171754,-8.337302447842,-0.04162980403229322,-0.03528589743589744,-0.3263751917598071,-0.02128650098619328,-9.31450268689554,0.5406559252713097,0.015325974025974024,0.007704393502787435,0.007069853223699379,0.025837410452795154,0.1672283030666018,2.6151263387556303,0.019778612908269967,0.013323376623376624,0.12169027553642936,0.008973164066702526,3.687666761087817,-0.9343135496981653,-0.029351515151515153,-0.007200452339012253,-0.03505468890084275,-0.8329149482995638,0.2193880601996946,-4.352333885838182,0.024305331104733457,-0.02804545454545454,-0.3634495846034307,-0.01662260749506902,1.214208727284101,-0.8360414514260671,0.0025206349206349553,0.004494088190233791,-0.05964121348736733,-0.32606994145455687,-0.11795104224991039,-4.106096536327856,-0.02480854284223314,9.523809523812043e-05,-0.0315268776807238,0.004744911430449877,-6.696390468499644,-0.08803829717291285,0.006250000000000039,-0.0005668864732502934,0.015717455621301786,0.020936061801446484,-0.15055326268468905,-0.31172373054733094,-0.02417073874056675,0.0060375000000000185,-0.005501109467455615,0.00235541974852069,-3.549243426297373,,,0.456926406926407,1.3522727272727273,0.7045454545454546,0.09090909090909091,0.6477272727272727,0.056818181818181816,0.6309005071016526,0.015204312011550753,0.02302249382973257,0.9728033902791773,0.2812256459437949,0.19967065851615873,1.60370389738083,0.4808963044599536,2.000720984004497,1.3958459116106938,0.35797196042262186,0.16691309228084752,0.0799900196903337,0.6048750723938031,7.798296256512834,962.0,255.03960000000004,123.0,346.0,6564.932208447233,3838.89442514977,55.82857638243301,256.2915,228.91666666666666,310.83160399999986,8464.25943406336,1030.0,263.74100000000004,147.0,321.0,6104.514138667899,3927.386146835199,68.68397523,268.441,146.27777777777777,318.6115199999999,10350.731530134892,1450.0,424.7628,216.0,432.0,10300.24289466039,5455.993749670399,95.76258975109397,429.90550000000013,254.80555555555566,517.3530480000002,14005.021817575713,1475.0,516.1538,234.0,380.0,13187.014587759391,5380.532085521599,102.909119455339,520.8371999999999,281.69444444444434,634.5104519999999,14754.819149294115,1317.0,503.21590000000003,208.0,329.0,13039.38528115149,4668.810000686401,94.498189492792,507.11859999999996,277.0,619.239316,13299.23305992917,1240.0,487.01089999999994,197.0,326.0,12957.093641667732,4457.315010835198,88.14966773728197,489.8724999999999,283.63888888888886,605.351208,12259.635862623949,1088.0,420.56600000000014,176.0,263.0,10967.601049450239,3888.1060144736007,82.342157271339,423.9227000000001,225.47222222222226,520.676352,11517.667681434064,1008.0,389.902,163.0,235.0,10305.42877883444,3584.4871812608003,80.798440304641,394.2812,201.75000000000006,484.4786479999999,10926.792610403614,870.0,390.244,149.0,202.0,10735.358618956036,3036.4210474575993,70.471541384735,393.4472,203.55555555555563,489.6977319999999,9312.681517608564,305.58974358974353,7.373999999999996,1.1023784506591026,21.230769230769216,173.58974358974368,80.78895124119292,1464.1777319999603,8.536262785423743,6.6564,86.60256410256407,4.298315692307693,1831.7759245383588,0.6771860618014767,-0.7834000000000012,-0.88842179702964,5.840236686390533,47.88231426692964,-8.007416398385022,5.429308897626093,-0.15241543089719656,-0.5992000000000015,-9.579552925706771,-0.505342863905325,48.67835156020993,41.45299145299147,2.2847999999999975,0.5928897714838642,-2.0769230769230775,27.6068376068376,-8.878233847370268,189.3788902881971,-0.6346902113457761,1.9812999999999983,20.16239316239317,1.4459003076923078,-107.28396965851326,-42.10716633793555,-1.9582000000000006,-0.07750875287433626,-4.704142011834319,-61.10716633793557,-17.48269725141727,-199.47219238436713,-0.7238449538944732,-1.7090000000000005,-15.693293885601575,-1.24494572781065,-157.70117753813048,-135.30769230769226,-3.0269,-0.4962682703886774,-5.230769230769231,-66.28205128205128,-18.06572936857397,-650.309590931676,-3.2471247145188715,-2.7523000000000004,-25.457264957264954,-1.660347076923076,-726.5312095778522,41.63050624589085,1.1801,0.5932382997146325,0.5443786982248522,1.9894806048652267,12.876579336128339,201.36472808418353,1.5229531939367875,1.0259,9.37015121630506,0.6909336331360945,283.9503406037619,-61.664694280078905,-1.9372,-0.4752298543748087,-2.3136094674556213,-54.97238658777121,14.479611973179843,-287.25403646532004,1.6041518529124081,-1.8509999999999995,-23.987672583826424,-1.0970920946745555,80.13777600075066,-52.670611439842226,0.1588000000000022,0.28312755598472883,-3.757396449704142,-20.542406311637084,-7.430915661744354,-258.6840817886549,-1.5629381990606879,0.006000000000001587,-1.9861932938855995,0.2989294201183423,-421.87259951547753,-5.6344510190664225,0.4000000000000025,-0.03628073428801878,1.0059171597633143,1.339907955292575,-9.6354088118201,-19.95031875502918,-1.546927279396272,0.3864000000000012,-0.35207100591715934,0.15074686390532416,-227.15157928303188,0.7249719540625604,0.5498790952789723,0.4599877694834339,0.2942634244173928,0.30830795034456215,0.1484927480215234,0.20173561352907426,0.08067933881971362,0.13169266905125976,0.04270927828810015,0.08554153109426757,0.02238636601289889,0.057390086106661964,0.012298787860537432,0.037536023020287614,0.00656488772374982,9.004066358341442,5.694334429869746,4.1077133538136295,2.193847502850404,0.5014419107881669,-0.4783734162845131,3.179634725755273,0.9778784493326256,7.004057320130439,0.9880181459773154,17.42477153914934,10.955004065870481,19.00014118181609,11.70569960688627,1.9830720630857872,0.5458610802105065,3.9886643126307466,2.243724862831238,8.001918689338117,1.425935217462286,4.009941943039385,2.4395892661505383,20.89026178245634,13.304120371170104,0.31408754241419623,0.6807014561784409,0.8302953570879522,0.901891392220665,0.901891392220665,0.901891392220665,1.6444007723410967,646.490748731491,0.0,2.0,3.0,0.0,8.0,0.0,1.0,0.0,0.0,3.540775057317527,1.5043854990527468,0.6734528847818062,0.27576634620931983,0.27576634620931983,0.27576634620931983,127.35234144759784,1381.8074092550712,64.76876198489214,35.430959211668494,71.03247499729332,,15.0,509.0,6.093240070938415,9.184952231746642,18.241965583393842,18.050005458431166,5.563451491696996,12.13273413692322,31.18920547353706,0.0,15.617555728959871,10.470530430962235,10.052380952380954,29.75,15.5,2.0,14.25,0.0,0.043073593073593,1.25,0.19705433455433452,0.06827639480700698,-0.12877793974732754,0.09124209124209115,0.2023664566165776,0.0,0.6345543345543349,0.893073593073593,0.43750000000000033,0.5662779397473279,0.8018315018315019,13.879811156236357,0.33449486425411656,0.5064948642541165,21.4016745861419,6.186964210763487,4.392754487355492,35.28148574237826,10.57971869811898,0.5116335433834224,0.15111321648507814,0.0,0.29843675982946466,0.2,0.3895525870884347,-0.9336674512099836,-0.06004471933570507,-0.02394019105666625,-0.06224449674733225,0.6104474129115652,1.4631012577038303,0.05229781190326347,0.037515416864200776,0.06096255240432625,-4.531003059944697,0.7725226548078539,0.775041022511527,1.880120273035783,0.8501811594202904,0.47612259970457876,1.2008878330215287,0.7702171313500973,1.0910602153742557,0.7504777357129979,0.6661016530964721,0.7966285506036495,0.9486755089494949,0.7900990099009901,0.6305941874778327,0.7127429503703887,1.2115942028985516,0.8065878877400291,1.0732884406473187,0.7912580091190324,1.070279458647772,0.6337417314972749,0.5137922526523565,0.637277814580108,1.0071685903547616,1.013450243329418,1.0953986981285595,1.0918170222702532,1.1522192028985516,1.1519977843426878,1.1227529310481654,1.0119752941609155,1.0127880490486023,1.0858478306592152,0.9590066000493466,1.1075355420076527,0.9951397743390477,1.1701627789897635,1.1297721377257586,1.4056907562055734,1.0555555555555562,1.1169867060561294,1.0758409968045224,1.1673011199030685,1.1071319855130695,1.1302931514532377,1.0825890287030187,1.1027883957312985,1.1230096244679342,0.9237408002301443,0.7977919964494417,0.8655408456332156,0.9995294560511958,0.97513092520478,0.6825588226568982,0.9134675529606341,0.8186945145402166,0.8141663486444446,0.8609514837494116,0.8205330967257892,0.8753849752591774,1.0899441639079164,1.1335803108382443,1.2068637594295535,1.0712011418533165,1.1807707801799376,0.8492574407634462,1.0844210844084643,0.8587631727285757,1.1415204414798785,1.1540295628378534,1.1442125708184911,0.9387651337648526,1.005653713071065,0.6905506692325244,0.6608826119433503,1.0369795261099617,0.8964760497995353,0.9994445798341014,1.0100767706654237,1.0968667128758074,0.7160319749557175,0.6390257657467134,0.6103047186368836,1.1393467611612456,0.9831399983218663,0.7585168327908869,0.9322451638974714,0.9368772644927543,0.8961502954209745,0.9158747618822147,0.9797921535336293,1.055760766184897,0.7748435716002641,0.764066740685912,0.7320286538354986,1.0736763456345975,5.0,0.08254259769411285,2.222222222222223,0.9375,1.2355555555555557,0.46527777777777785,0.34367346938775517,0.31076388888888884,0.16376921138825898,0.115625,3905.865644348413,4348.948745624168,2112.199375076199,1930.8299350660268,15.521299550023949,0.4814902264276391,8.047945515231705,0.9286039549656522,1.0,0.2,1.7446271615447215,3.781016719809502,4.6119493340804425,5.009635872652929,5.009635872652929,5.009635872652929,0.21739130434782605,0.007503872517646623,0.0740740740740741,0.032327586206896554,0.05148148148148149,0.020229468599033813,0.016365403304178818,0.01635599415204678,0.010917947425883933,0.009635416666666669,0.4562825487757349,18.340264650283554,9.333333333333334,6.204081632653061,127.04813156079963,1.0,3.988840365916399,120.13307072856107,,90.34550388187021,87.57542792793186,86.91982451402541,90.29124510360683,141.46221415431964,89.23167190741239,90.5445737228379,121.16581419224951,0.0021605974156738675,-0.10358218063466254,-0.7857657699912393,0.2682065217391307,0.26894017725258473,-0.09663736028850219,0.003615391806263028,-0.01740867741074232,-0.08776816297097553,-0.10784974093264253,-0.11462845625542331,0.02591004289084421,0.08138949488169162,0.18590724165988598,0.322696677060068,-0.05869565217391311,0.09542097488921708,-0.06593649535712803,0.07760487793904063,-0.04461134062762595,0.17859203172886232,0.13968911917098456,0.20183258902270557,-0.03514096944544703,-0.06717255411981875,-0.12945789259560628,-0.03427635672998442,-0.10801630434782615,-0.17161004431314614,-0.10549480812817237,-0.06641454221172488,-0.04133827927909074,-0.125163376599964,-0.08834011843079202,-0.14119740981190043,-0.04196982994479176,-0.22138781674777644,-0.20524138866286964,-0.22508979112026495,-0.12318840579710154,-0.1909158050221565,-0.11180816863582801,-0.22207331006304828,-0.19019592040111283,-0.2067408809566733,-0.14697754749568223,-0.19313926614260196,-0.19831334167167616,0.06899963604108593,0.0810568195027105,0.2725664189363106,0.012987012987013002,0.005804830324771257,0.0807276702989562,0.06965679437847942,0.09036342048181661,0.07806196867851818,0.054801157391830974,0.08141640206364519,0.07851342609968515,-0.11923904254832267,-0.15523584091525516,-0.254737963222684,-0.06439393939393943,-0.187129045253122,0.10590723380285026,-0.11592924672869817,0.11104483740861669,-0.1643189602897553,-0.16367337325886552,-0.1508222612563947,0.02585149183899993,-0.10669735254397117,0.013331266870730038,0.15899207691725628,-0.1095583160800553,-0.07325736793979036,-0.05693960098594518,-0.10937044145456976,-0.11334388305140067,0.0005580021805009761,-0.014197596136900343,0.04305210669349281,-0.1425716021119248,-0.011235630978352113,0.03305532953620853,-0.020055338022566493,0.02887228260869569,0.004703655834564267,-0.07267797334283324,-0.00830310776188354,-0.11042991934266107,0.0353738507301245,-0.0024773316062176145,0.02137148054450791,-0.07556628066311225,6.881646408884831,12.785904467801819,3.6167438071669595,17.70508520127639,35.35091213189443,40.5642371909926,40.965105221873664,40.965105221873664,40.965105221873664,44.015861648098934,30.708610055435262,7.87538312929768,3.6720880301786454,1.7597804331873415,13.307251592663668,6494.212629202509,6142.234056749291,686.8153921753947,49.0,30.0,35.0,41.0,50.0,45.0,45.0,48.0,50.0,304.13355400400053,23.0,4.672828834461906,5.4680601411351315,6.300785794663244,7.115582126184454,7.950502434808851,8.774158291205957,9.609988594762783,10.438547147147077,11.275061599499308,0.683760683760684,1.0080000000000005,1.1451016379988963,0.6496724225015955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6593962997082761,0.9921568627450977,1.020953554820999,0.6336806014394044,6.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15.787319034968565,17.45294639671595,0.0,0.0,0.0,5.316788604006331,14.16893075269385,0.0,0.0,12.13273413692322,36.75265696523406,6.544756405912575,12.29426823919648,224.5884841250391,-538.2866511332804,-34.617540589604744,-13.802221823930271,-35.8857767422187,351.9408255726369,843.5207581217908,30.151221395287394,21.628737387738227,35.14669825507461,0.4666666666666667,0.7780769304708581,0.1875884895649493,59.21809124585923,0.1715730582626777,24.37062013218951,0.2219230695291421,8.0,0.21739130434782608,0.3300840861871578,0.7153697227272544,0.872582472081609,0.947824908154543,0.947824908154543,0.947824908154543,2.9834000000000005,,1.4047619047619047,1.7043434836395828,1.6009699071037353,1.436320845043609,-6.2355204692691295,1.5214751849824402,1.3715415728862168,-2.621947134390474,83.02080000000002,13.92181518554669,0.0,4.9839785209472085,0.0,13.4684936056032,22.974126649687765,47.778874743512546,0.0,0.0,3.8501476017100584,0.0,5.117993812416755,0.0,6.569481420414296,0.0,8.105005537547246,0.0,9.68327719519936,26.666666666666675,9.467020562633492,4.141251102292769,0.0,0.0,0.0,0.0,1.7455406136384892,0.0,39.31200000000002,0.0,11.324908044670053,0.0,0.0,0.0,0.0,0.0,-0.5805357712435011,44.65896388195696,16.367244685174846,26.508064062100264,0.0,17.68410055639854,11.281619359712625,5.817220841045895,12.487188691387619,36.39820241076966,0.0,0.0,0.0,25.337224477562227,25.716455688622766,27.60784078300468,240.26614145712213,,180.56330213603482,174.99591553916923,173.69410630922323,180.45191558493696,284.82223176398213,178.32502788891725,180.96446184814067,243.04670487569643,27.60784078300468,240.2661414571221,,179.33851766112394,173.52353065858358,172.34291619247983,179.19825417678516,289.15994877790854,177.0041636687979,179.76852584306485,244.9535755188895,4.638227703931859,185.64708135051563,,139.78037103535868,135.37949487902,133.57823064212735,139.729733377493,214.50830213809678,137.98176027613636,140.08217783532365,186.30229936178762,1.25490185377294,10.921188248051006,,8.207422824365219,7.954359797234965,7.895186650419237,8.202359799315316,12.946465080181007,8.105683085859875,8.225657356733667,11.047577494349838,2.31911385196593,120.13307072856107,,90.34550388187021,87.57542792793186,86.91982451402541,90.29124510360683,141.46221415431964,89.23167190741239,90.5445737228379,121.16581419224951,38.69411764705881,0.0,1.7119599010530648,0.0,12.812351441343804,5.78366802429573,0.0,39.81718863801896,0.7577850590336022,5.569665145060166,4.766385877222333,0.0,0.0,0.0,0.0,0.0,0.0,24.713543456136772,448.5841556160505,68.04045930024414,147.45965207257058,179.86602402913726,195.37579903346423,195.37579903346423,195.37579903346423,438.0,116.6055149638687,127.94515408162565,55.32590556728771,89.27,89.27,0.875,7.720128897436519,5.523561956057013,3.994926352814379,4.609459783939598,,4.607625504559874,4.6077354447391325,4.602265264190431,4.60792448575269,4.577622663416513,4.607489181719983,4.6074889900494185,4.597692752475445,0.1815875614915627,0.20952089926998171,,0.20943752293453974,0.20944252021541512,0.2091938756450196,0.20945111298875865,0.2080737574280233,0.20943132644181742,0.20943131772951903,0.20898603420342932,2.1734825045726294,2.316568026979099,,2.3161700097433844,2.316193869943732,2.3150059913832832,2.316234895983106,2.309637154604318,2.316140422951566,2.3161403813517794,2.31401196247941,223.80999999999966,172.20727120991566,116.35519615971529,,116.43679344387351,116.4157183122867,116.83696985467124,116.410705224397,118.88937837336576,116.44225024136645,116.44936738637654,117.36281982403429,7.827603236814348,5.288872552714332,,5.292581520176069,5.291623559649396,5.310771357030511,5.291395692018046,5.404062653334807,5.2928295564257475,5.293153063017115,5.334673628365195,5.937156176843413,5.54510490884647,,5.545805940592785,5.545624923592063,5.549236903403996,5.545581860714454,5.566650827634678,5.545852804384457,5.545913924188465,5.553727521040839,17.578737318566137,15.466159146962823,5.569665145060166,7.076518688525814,0.4526899494084051,9.467020562633492,-0.5805357712435011,2.469744960086667,0.0,270.66316202359343,129.48184371865625,-310.3380313973439,-19.958026779556103,-7.957385420444718,-20.689202093156265,202.90420122182255,486.31444039561643,17.38306285756684,12.469601035785036,20.26310168315068,1269.0,29.0,1.3879674867156713,0.4237801042215796,0.0,0.0,0.11785113019775792,0.018633899812498248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.04641167759027602,0.30652532504112706,0.059533055057401474,15.94938298937633,12.09734009613739,10.57971869811898,6.768058761600034,9.249238510336864,4.454782440645702,7.060746473517599,2.8237768586899765,5.39939943110165,1.7510804098121062,4.277076554713378,1.1193183006449445,2.5825538747997885,0.5534454537241844,1.6891210359129425,0.2954199475687419,2.5865881377956597,0.6867400569549593,3.4263832304275375,0.7469953625881579,4.817700915275582,0.8177173862666092,70.76568489764875,36.41127178038562,24.316100914813383,22.63652613173888,22.63652613173888,22.63652613173888,106.0,118.0,42.94648099999998,22.481518999999995,0.358974358974359,67.07,7.666666666666666,5.027777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,39.0,0.0,0.0,40.0,12.0,1.0,7.0,33.0,13.0,23.0,27.0,0.0,0.0,0.0,15.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,5.0,3.0,1.0,22.0,7.0,0.0,4.0,2.0,0.0,2.0,5.0,0.0,0.0,1.0,1.0,2.0,3.4339872044851463,6.316544006800711,3.970291913552122,4.412798293340635,4.880906187421472,5.387929525237724,5.321179035691299,5.44065750425864,5.744104344134774,6.045079363426989 +5755,C[C@]12C[C@H](O)[C@H]3[C@@H](CCC4=CC(=O)C=C[C@@]43C)[C@@H]1CC[C@]2(O)C(=O)CO,0,20.444444444444443,6.074444444444443,3.3703703703703702,6.148148148148148,162.36355858484208,80.3303025555556,1.3746681728846661,6.134083333333331,5.326517489711934,7.652340888888887,200.85469751155108,22.42105263157895,6.216666666666667,4.368421052631579,5.526315789473684,143.7438194937886,83.75819342105262,1.8083019597894738,6.36621052631579,2.8475877192982457,7.675370315789473,259.5177097105682,19.56756756756757,6.037657657657657,4.099099099099099,4.378378378378378,148.4330248663841,72.4809950990991,1.619471943208901,6.17008108108108,2.5943443443443437,7.545584288288288,227.4535198023892,16.767045454545453,6.038011363636363,3.3295454545454546,3.278409090909091,152.35743376566413,60.099352903409084,1.4343043513967557,6.145654545454545,2.968907828282828,7.582323113636363,195.31804369772019,13.16595744680851,5.916170212765956,2.6382978723404253,2.1531914893617023,156.83769217156748,44.80138128510637,1.2312605392338722,6.00419404255319,2.6623817966903065,7.5122024170212764,159.60444973952642,10.238636363636363,5.807196969696969,2.140151515151515,1.621212121212121,164.26040464890326,33.46457847727273,1.0062313142354735,5.8632409090909094,2.606613005050505,7.470746545454544,125.14179941006064,9.144186046511628,5.781581395348837,1.9813953488372094,1.544186046511628,167.99915243646169,29.40086800930232,0.924273428423321,5.820991162790698,2.614987080103359,7.477425004651162,113.36589481904502,10.461538461538462,5.802517482517484,2.041958041958042,2.06993006993007,165.89215884585278,35.01337412587412,0.972309993873049,5.8507251748251745,2.973096348096348,7.4735710769230765,121.72582678157842,10.633663366336634,5.94049504950495,1.9504950495049505,2.099009900990099,167.15137130986048,35.26342531683168,0.9419782831144949,5.9787920792079206,3.0792079207920793,7.6182491485148525,121.26958744356077,7.537722908093279,0.1352949245541838,0.016948787027707,0.834019204389575,3.611796982167352,1.302569243207602,35.77467755555555,0.23094867287039508,0.1270454389574759,2.3551502248132907,0.08861861728395055,50.64288283658678,0.032127644213414235,-0.012266984333261026,-0.0075516750854420795,0.39470074362861896,0.8820301783264747,0.220337708828325,0.3091000000000042,0.037377219509523094,-0.011237284311601982,-0.20918377834733143,-0.0075604184535412984,5.710064975889273,0.6588069551032516,0.00019723427130837978,-0.001565714567897969,-0.02187372557742925,0.08523338152967791,0.13157314933265235,3.1971410450450475,0.024869511089889242,0.001537227041856693,0.020415155381719185,-0.0012071858525191802,5.893266705294229,-0.4141959720663424,0.005216439082179858,0.0012963504358697957,-0.187764995635366,-0.40178014715051746,-0.07698064184534516,-2.0367809034090882,-0.015566940540207548,0.003341219291682282,0.1601108933124108,0.005009466049382711,-4.103427477546,-1.2157370924904416,-0.0052728599363745165,6.215592358325514e-05,-0.13173394040218314,-0.4541925692437907,-0.2718635255501093,-5.884932970212765,-0.049760587563961005,-0.006648677728161561,-0.05589939301222243,-0.0019170286314683287,-10.981148188939411,-0.3017520887891262,-0.004049133308392613,-0.00016584048842417995,0.0012782142411771988,-0.08331774535478248,-0.09395562871019443,-1.4564678295454558,-0.01614952085140559,-0.003714602818306546,-0.09227211890856435,-0.002892058361391662,-2.9881866242892534,0.2112865664975914,-0.007651513701470689,-0.0012906068698667322,0.043672440743930833,0.043500175455386446,0.14336293927636468,1.1081819627906955,0.025382125732836963,-0.00640927186014614,-0.1675479422982174,-0.005433627103072035,4.637577385929491,0.7324143620439915,0.014917455658196334,0.0027514779157656807,0.02327165290128253,0.35194298157261117,0.015001911833820089,3.421392657342655,0.004316561065699725,0.014477650915613842,0.15839782692920543,0.008886722265388964,2.5369433187794974,0.06403726792432331,-0.015991660894484505,-0.0019430023352082935,0.024433307528283682,-0.11088022382485166,0.03820750579147735,0.4080953663366323,0.009028824726742442,-0.013029762389819238,-0.331054759711225,-0.012434529275149759,2.6128722509860958,,,0.46794871794871806,0.7980769230769231,0.19230769230769232,0.0,0.6057692307692307,-0.41346153846153844,1.429635165113495,0.028604189990295945,0.04183495922106517,0.587992357764246,0.11607662366670238,0.35201970797273613,2.017627522877741,0.46809633163943853,2.0373934580186397,1.6997877882713,0.0,0.3376056697473395,0.0,0.3376056697473395,6.670253222148161,1104.0,328.0199999999999,182.0,332.0,8767.632163581473,4337.836338000003,74.23208133577197,331.2404999999999,287.63194444444446,413.2264079999999,10846.153665623759,1278.0,354.35,249.0,315.0,8193.39771114595,4774.217025,103.073211708,362.874,162.3125,437.49610799999994,14792.509453502389,2172.0,670.1799999999998,455.0,486.0,16476.065760168636,8045.390456000001,179.76138569618803,684.8789999999999,287.9722222222222,837.559856,25247.3406980652,2951.0,1062.6899999999998,586.0,577.0,26814.908342756884,10577.486110999998,252.437565845829,1081.6352,522.5277777777777,1334.488868,34375.975690798754,3094.0,1390.2999999999997,620.0,506.0,36856.85766031836,10528.324601999997,289.34622671996,1410.9855999999997,625.6597222222221,1765.367568,37507.045688788705,2703.0,1533.1,565.0,428.0,43364.74682731046,8834.648718,265.645066958165,1547.8956,688.1458333333334,1972.2770879999996,33037.43504425601,1966.0,1243.04,426.0,332.0,36119.81777383926,6321.186621999999,198.71878711101402,1251.5131,562.2222222222222,1607.646376,24373.66738609468,1496.0,829.7600000000001,292.0,296.0,23722.578714956948,5006.912499999999,139.040329123846,836.6537,425.15277777777777,1068.720664,17406.793229765713,1074.0,599.9899999999999,197.0,212.0,16882.28850229591,3561.6059569999993,95.13980659456399,603.858,311.0,769.4431640000001,12248.228331799637,407.03703703703707,7.305925925925925,0.915234499496178,45.03703703703705,195.037037037037,70.33873913321051,1931.8325879999998,12.471228335001335,6.860453703703699,127.1781121399177,4.78540533333333,2734.715673175686,1.8312757201646113,-0.6992181069958785,-0.43044547987019854,22.49794238683128,50.275720164609055,12.559249403214526,17.61870000000024,2.1305015120428163,-0.640525205761313,-11.923475365797891,-0.430943851851854,325.4737036256886,73.12757201646093,0.021893004115230156,-0.17379431703667456,-2.427983539094647,9.460905349794247,14.604619575924412,354.8826560000003,2.7605157309777058,0.1706322016460929,2.2660822473708295,-0.133997629629629,654.1526042876594,-72.89849108367626,0.9180932784636551,0.22815767671308404,-33.046639231824415,-70.71330589849107,-13.548592964780749,-358.47343899999953,-2.7397815350765287,0.5880545953360816,28.179517222984302,0.8816660246913572,-722.203236048096,-285.69821673525377,-1.2391220850480114,0.014606642042064959,-30.95747599451304,-106.73525377229082,-63.887928504275685,-1382.959248,-11.693738077530837,-1.562439266117967,-13.13635735787227,-0.45050172839505725,-2580.5698244007617,-79.66255144032931,-1.06897119341565,-0.04378188894398351,0.33744855967078047,-21.995884773662574,-24.80428597949133,-384.5075070000003,-4.263473504771076,-0.9806551440329281,-24.359839391860987,-0.7635034074073987,-788.8812688123629,45.42661179698215,-1.6450754458161982,-0.2774804770213474,9.389574759945129,9.352537722908085,30.823031944418403,238.2591219999995,5.457157032559947,-1.3779934499314201,-36.02280759411674,-1.1682298271604876,997.0791379748406,104.73525377229078,2.133196159122076,0.39346134195449234,3.327846364883402,50.3278463648834,2.145273392236273,489.25914999999964,0.6172682323950607,2.0703040809327793,22.650889250876375,1.2708012839506218,362.7828945854681,6.467764060356654,-1.615157750342935,-0.19624323585603765,2.467764060356652,-11.198902606310018,3.8589580849392124,41.21763199999986,0.9119112974009866,-1.316006001371743,-33.436530730833724,-1.2558874567901257,263.9000973495957,0.7271312659617811,0.5939319207259335,0.41967257319397944,0.3331249765049909,0.2566684462157266,0.19149905611634385,0.15808498727595954,0.11305077540036931,0.09525595451059314,0.0678366020485204,0.05792098193803749,0.03871243192638976,0.035008809848322144,0.023141361998300754,0.02130215173120398,0.01328695137120796,8.02393156959289,5.703491676087353,3.5456845718881405,2.202388073429257,0.3948775020253915,-0.3801757225040426,4.1182705906076995,0.9771523279683223,6.023153853534321,0.9950243309920445,13.638664086297206,10.963972577683228,16.01214217799182,11.715100479479494,1.9800599361470699,0.7519117633530551,3.490952306937017,2.2521371769705656,7.0093617796455465,1.0759023929223892,3.704007465202543,2.4481817943073976,20.886825251623684,14.701789052335437,0.22578443277084556,0.5609098313165939,0.7985528066555412,0.903185899245681,0.903185899245681,0.903185899245681,1.6765695570219428,723.9130815015496,0.0,0.0,3.0,0.0,5.0,6.0,1.0,4.0,2.0,4.415819336488957,2.4282786225680444,1.0188805557158132,0.3983291667467963,0.3983291667467963,0.3983291667467963,182.6508861620246,1174.9079445545622,62.13565253612798,21.757554528788184,43.29690277868984,,12.0,496.0,29.51013457900663,24.90865655266576,28.951953554245897,12.841643245852019,24.835569398847294,0.0,12.152040213667762,12.999757306524504,6.923737199690624,0.0,12.16666666666667,20.75,5.0,0.0,15.75,0.0,0.03205128205128194,-10.75,0.11913580246913558,0.018177948063005434,-0.10095785440613014,0.0566312997347479,0.16180635400907672,0.0,0.5635802469135803,0.847435897435897,0.44444444444444475,0.5454022988505749,0.7908045977011491,37.17051429295087,0.7437089397476946,1.0877089397476944,15.287801301870395,3.017992215334262,9.15251240729114,52.458315594821265,12.170504622625401,0.5521936459909232,0.21917808219178075,0.12328767123287668,0.28767123287671226,0.7142857142857143,0.32664734054868716,-0.7284868016336282,-0.06916611669656438,-0.01349049632654867,-0.04047148897964602,0.6733526594513131,1.5017067778088058,0.04877889676836354,0.027809384774237136,0.041714077161355716,-2.1672486516230176,0.9046118480915665,0.7839826678121848,1.2774173503908988,0.9806743421052628,0.6126141883382974,1.087076771715415,0.9097767336086962,1.0804350878720255,0.7885231136927604,0.7734132177969083,0.7868109388625589,1.0286544724707143,0.8135147431325775,0.6336149847505418,0.7708607133904649,1.7387091038406821,0.9033627246692192,1.0793424991736038,0.8211248288201207,1.0700538862958868,0.6407866851450515,0.611849840733986,0.6369089858339396,0.9952943577621854,0.9869271651914964,0.742750108301918,0.6983171407780139,1.6482015363337315,1.0506891335497015,1.1728252957650813,0.9946831284378355,1.1773580364460379,0.7636155114359505,0.7194919669025703,0.7215308337517354,1.1443789639339097,1.1017921514723248,0.8533935123964267,0.796968203735312,1.1542745660694285,0.9834793254195927,1.247073700621057,1.1090373938990001,1.2559799762873667,0.8774090629121929,0.8048690923000301,0.8253696336434012,1.239594148240258,1.0152871412027462,0.974533207211525,0.9081499149300507,0.7823106683612437,0.9269121379000795,1.0008661650024602,1.0159130282383566,1.006076358330231,0.9809080467653692,0.9402648661230096,0.9643163392840366,1.0183688131513196,0.9723302367903167,1.1018229983329757,1.1092786117955242,0.738926713586291,0.9612127823068567,0.7680143432710216,0.9666616248158936,0.7759714952744631,1.0974863002753898,1.0646615601421783,1.097546700166285,0.834863323035026,0.8873352761887794,0.8636776637131497,0.8862390234024647,0.7859110461906511,0.8950424812559261,0.8951904401260613,0.8879373195186793,0.8966248365899775,0.8663455848430389,0.8955665619659381,0.8601301014470338,0.8974065204971332,1.028782241281453,1.340265599103761,1.3173222820791257,0.7165719450234495,1.1475098991099262,0.859600661593187,1.0198881541986078,0.8471589095563671,1.3093238193117185,1.3984546783641685,1.377315477494175,0.8626169371064324,8.5,0.06601367207427813,6.888888888888891,4.354166666666667,3.156666666666667,1.4830555555555556,0.9609070294784582,0.4739937641723356,0.291509196271101,0.13156635802469138,5427.830560828602,6362.86306225314,2423.952239913575,2126.584489065288,12.598987816927151,0.46051939349418664,6.796909588835213,0.8536347515380502,1.0,0.7142857142857143,1.3390681656745111,3.326608879595424,4.736006946447655,5.356558335416672,5.356558335416672,5.356558335416672,0.2931034482758621,0.011002278679046355,0.1435185185185186,0.07379943502824858,0.0584567901234568,0.03531084656084657,0.0320302343159486,0.019749740173847317,0.017147599780653,0.01096386316872428,0.6950827546251521,19.322235434007133,6.25,2.4860198911615687,153.34130809395185,1.0,4.228268910877081,113.86256326082426,,105.576978502728,105.27590947880415,106.22857694999183,105.58318092403425,117.48015020602176,105.50336215344713,105.58969088814275,111.22341814294663,0.004262247976629477,-0.09066847388165153,-0.44555843867156936,0.47325138504155123,0.24420812761109006,0.1691562348622167,0.008640189685008164,0.16184210562880622,-0.08845090704407954,-0.08881971780119244,-0.08531410989314253,0.11275157842641723,0.08740132307011289,0.001457809832543941,-0.09237915169613141,-0.02622688477951631,0.02359860810297577,0.10101048371804859,0.0893688291132775,0.10768414808707577,0.012099820776495778,0.008668302839721248,-0.013622260079404444,0.1163691001618229,-0.05494974770452477,0.03855605891624371,0.07648632517185974,-0.2251327003588516,-0.11124106618789491,-0.05909907841503983,-0.05693359221047097,-0.06740432991768469,0.026299403733814012,0.06798330383578989,0.05652837070715569,-0.08102673559850138,-0.16128705012293573,-0.03897308013400611,0.003667278577614189,-0.15795072788353862,-0.12575251917156227,-0.20871330024701035,-0.16449995841538695,-0.21546167356365756,-0.052333069039865156,-0.023734958570064874,-0.021632346455212812,-0.21683497411419314,-0.04003226073289772,-0.02992819813259876,-0.009784799829809206,0.0015325956937798973,-0.02306822497669443,-0.07213100508870213,-0.0407122559604811,-0.06992688310648339,-0.029238379974820518,-0.039178867630781135,-0.0326348847457749,-0.059005065606779566,0.028030556319698658,-0.056554329193674674,-0.07614744746965756,0.05236383108935126,0.012043914890610226,0.1100616646861173,0.030976714215516468,0.10990375228127433,-0.0504486576829525,-0.07114108498599069,-0.06131473577004347,0.09157411912931404,0.09716652773977612,0.1102587972708621,0.16234069796662776,0.027903018034596976,0.09744262573734659,0.011517170324763381,0.09563727449477283,0.018690564496649496,0.11395647914963511,0.06725593351131677,0.10028053402045589,0.05009476508210728,0.008495572032180472,-0.1181985277509805,-0.11463961002235581,0.029295857217300655,-0.030699461894537358,0.029332418211711057,0.01140738070113669,0.03909450794640107,-0.10255985965919252,-0.14056630282999039,-0.1403150901723868,0.05159406622678351,9.152369232604341,20.196722169625932,6.86643562625151,11.945280759615635,30.676973934073356,37.38684247677961,38.01235827686038,38.01235827686038,38.01235827686038,52.972229908484636,44.1944824950538,0.0,8.777747413430827,0.0,8.777747413430827,4606.602959579844,4292.781790968809,909.1864173459908,291.0,48.0,73.0,102.0,135.0,166.0,208.0,252.0,285.0,360.1936739960007,29.0,5.043425116919247,5.983936280687191,6.959398512133975,7.922623574217286,8.902591637374087,9.873595194671092,10.855550751498411,11.830163912476142,12.813141649896782,0.5987654320987653,0.9748148148148151,1.1270552853502684,0.5557405711431187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.640388157019295,0.9611474219317354,1.0015375900299428,0.5955478662053055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,3.0,6.0,0.0,0.0,0.0,4.0,0.0,3.0,0.0,0.0,15.319582184522117,12.207932775496605,11.566489892729878,0.0,0.0,9.589074368143644,0.0,0.0,0.0,25.496599036284397,56.091960420620595,16.747886984954953,6.103966387748303,172.08396572203398,-383.78055547827205,-36.43801181648905,-7.107047323671704,-21.321141971015116,354.73485188405857,791.1273890762901,25.697640719638926,14.650507205116478,21.975760807674725,0.5,0.6835109856224795,0.17611058585284003,46.415589116592415,0.09484901188178611,171.70070984560553,0.3164890143775206,6.0,0.06896551724137931,0.23268363893666166,0.5780493325620757,0.8229538708909984,0.930784195764548,0.930784195764548,0.930784195764548,1.5575999999999999,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,95.04840000000003,24.90865655266576,0.0,0.0,28.583699077277743,57.656599712743294,6.606881964512918,23.80116485057091,0.0,0.0,4.07753744390572,0.0,5.5254529391317835,2.3978952727983707,7.198183577101943,4.948759890378168,8.977525200965243,7.247792581767846,10.812330619275127,32.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.640000000000015,0.0,24.158988557469677,0.0,0.0,0.0,5.2748915044157645,0.0,0.5716276373254647,60.8609854089145,0.0,0.0,0.0,45.1979712404969,9.589074368143644,28.583699077277743,45.95158251401131,23.80116485057091,0.0,0.0,0.0,30.00999084172841,34.58096047904193,33.006887264415816,227.72512652164852,,211.05780315930215,210.44192884771817,212.390563828492,211.07049047149206,237.8741695852643,210.90721625680482,211.08380685312437,223.5210521883572,33.006887264415816,227.72512652164846,,209.90395700545605,209.1232475290369,211.59148297059224,209.920033952575,240.3717717337393,209.71311965573162,209.93690777519086,224.44180867618348,5.282174636404871,166.0789969796237,,156.22962465251413,155.90163863145762,156.93969620460308,156.23638225834242,169.25747423566122,156.1494208745266,156.24347496418605,162.3936571424125,1.269495664015993,8.758658712371098,,8.117607813819314,8.093920340296853,8.168867839557384,8.11809578736508,9.149006522510165,8.111816009877108,8.118607955889399,8.596963545706046,2.670616887506551,113.86256326082426,,105.576978502728,105.27590947880415,106.22857694999183,105.58318092403425,117.48015020602176,105.50336215344713,105.58969088814275,111.22341814294663,51.901960784313715,0.0,4.01001611447048,0.0,0.0,0.0,31.668515003942392,54.083029861616915,2.401944099462813,0.0,0.0,0.0,-0.36991071428571476,0.0,-2.6327388694675395,0.0,0.0,32.1595847750865,360.0864492664095,72.3096809464236,179.6368794981529,255.7443751081734,289.25415011250027,289.25415011250027,289.25415011250027,1615.0,135.18442662987422,166.732368339683,77.1854775253242,94.83,94.83,1.0,7.908754738783246,5.857980995127572,4.418226667357562,5.013673703115465,,5.030316765518206,5.03084960597195,5.029105570819862,5.030305605361215,5.000448564168903,5.0304486665424255,5.030293883998061,5.017759364784067,0.16993179489836777,0.19283360396597943,,0.19347372175070024,0.19349421561430577,0.19342713733922545,0.19347329251389286,0.19232494477572704,0.19347879486701636,0.1934728416922331,0.1929907447993872,2.4412498541320002,2.5676803654850713,,2.570994402408355,2.5711003226236793,2.5707535944049327,2.5709921838265255,2.565039066271362,2.571020623280935,2.5709898536744973,2.5684949374144974,275.4600000000005,199.44843088048273,162.32156984336092,,160.1654830052363,160.0555239394117,160.40342750308272,160.16774833717707,164.3819375838337,160.13859577602224,160.17012599214837,162.209973072243,7.671093495403182,6.243137301667728,,6.160210884816781,6.155981689977373,6.169362596272412,6.160298012968349,6.322382214762834,6.15917676061624,6.160389461236476,6.2388451181631925,6.25106715611543,6.045090811785569,,6.031718994556536,6.031032224683469,6.0332035087046325,6.031733138152762,6.057704052902033,6.031551108906254,6.0317479828224805,6.044403071083916,0.0,24.158988557469677,31.668515003942392,-1.5414459850298137,-0.22653882987870144,0.0,7.682001817676872,3.3418127691529116,0.0,355.7516118242635,90.65707135064929,-202.18281845727267,-19.196230301079588,-3.744126267727271,-11.232378803181815,186.88099523323206,416.78079568896624,13.538000699186354,7.718162883129001,11.577244324693506,1425.0,59.0,3.1703650942824853,2.166219977029227,0.3219752754296894,0.22492387670140385,1.7814460640440455,1.0276038678447657,0.5575667563086659,0.27296710176057953,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.4250237345359898,0.3382323776149199,1.1166452579993966,0.7720497489488163,18.90541291500631,15.44222993887427,12.170504622625403,9.660624318644736,12.320085418354877,9.191954693584504,11.540204071145046,8.25270660422696,9.7161073600805,6.919333408949082,7.819332561635061,5.226178310062618,5.811462434821476,3.841466091717925,4.430847560090428,2.7636858852112556,8.850815589820844,5.722902085937088,15.530775275493879,9.7307865050243,26.333665284580444,15.304517296949424,93.2373676724103,42.844875895276644,25.729046307514285,22.259928712197322,22.259928712197322,22.259928712197322,154.0,198.0,57.75020399999997,29.825795999999997,0.3148148148148148,191.05,10.215277777777779,5.437499999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,54.0,0.0,0.0,57.0,0.0,4.0,4.0,53.0,4.0,29.0,53.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,5.0,3.0,0.0,26.0,5.0,0.0,0.0,5.0,0.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,3.5263605246161616,6.440946540632921,4.060443010546419,4.564348191467836,4.927253685157205,5.298317366548036,5.537334267018537,5.780743515792329,6.045005314036012,6.311734809152915 +3005572,CN(C)CCOc1ccc(/C(=C(/CCCl)c2ccccc2)c2ccccc2)cc1,0,23.964912280701753,5.74918947368421,2.982456140350877,5.291314706519385,158.58242616576092,96.28392084210526,1.6064239532591578,5.888522807017544,2.381184538086567,7.364901491228069,225.35895084469738,23.593220338983052,6.065254237288136,3.593220338983051,5.483992467043314,142.3893436918678,89.15989233898308,1.910712214915255,6.245771186440678,2.7267733835530445,7.520828576271183,268.32260775448964,18.92,5.990340000000001,3.35,4.185555555555555,151.79520263489565,69.06667844999997,1.6371246468049006,6.138375000000002,2.464043209876544,7.531749619999997,222.95194111403788,16.41269841269841,5.8388888888888895,3.0793650793650795,3.6119929453262785,152.12017237322266,58.73782583333333,1.526043780089539,5.977830158730161,2.3050329871317516,7.41295538095238,201.2467885800841,15.807142857142857,5.701892857142857,2.95,3.1587301587301586,153.2651480821916,57.40715776428573,1.4699685945879928,5.834124999999999,2.155452674897119,7.289607885714284,192.22602446345672,17.38157894736842,5.787434210526314,2.8815789473684212,3.0716374269005846,151.9854044642472,63.61938807894736,1.5497749771189082,5.933213815789472,2.283490361706736,7.372197368421052,203.6404179384821,16.670520231213874,5.7111560693641605,2.5895953757225434,2.531791907514451,152.69001907495237,60.16280819075145,1.5004826087616878,5.871089595375723,2.234781988153857,7.325436069364159,190.77770566833306,13.932584269662922,5.634516853932584,2.247191011235955,1.9419475655430714,157.48276878440845,48.3839804719101,1.3159732732227978,5.782924157303371,2.098956165903732,7.312014640449439,160.4824339139291,11.461538461538462,5.614650349650351,2.132867132867133,1.7303807303807304,161.91108617360987,38.362163881118875,1.1415300755038744,5.7298776223776215,2.0011367233589463,7.318842293706294,136.8570363980379,9.604801477377656,0.05636091104955367,0.008897587146315798,0.4893813481071099,2.9198347829721585,1.3906675115927802,45.55803806094183,0.25869832007429605,0.06603847337642348,0.26871715396326323,0.03743241612803939,55.01818146565989,0.3155077703178561,0.004577001528501694,-0.0018033967597510503,0.19869477440255415,0.9183975419288154,-0.13748924048023317,1.4714078819662813,-0.008540807286626812,0.00497915968929171,0.0023715738262595834,0.0012463653170988569,-0.09890715370004277,-0.9009418282548474,-0.010922665435518529,-0.001960516126027223,0.0325484764542936,-0.023731252541142542,0.29775243044614724,-4.148929790941833,0.014815269785544214,-0.012118315481686593,-0.002341554661701917,-0.006671446128039406,2.134805818192269,-0.86628852833839,-0.0023399141127672537,0.0006322416578355594,0.033592753814360464,0.10065883791132603,0.0971783363016248,-4.078288968627712,-0.0032462315037583857,-0.004723407935042239,-0.020126968190443233,-0.0009782792580867422,-1.848938180586485,0.8529679461812427,0.0029319460933034326,-9.267843668364082e-05,-0.004293628808864272,0.09023669201159716,0.06434680761829793,4.071643495825089,0.020667158060665176,0.004317052939365953,0.016372298634852987,0.001164054799278901,4.477040049672634,0.4785318559556789,-0.004704909202831609,-0.00036659185439798583,-0.05817174515235458,-0.2822055409261728,0.057479910661659334,2.32836197506925,0.02499824438972627,-0.0036226031086487877,-0.020592027389900947,-0.002310548630347801,2.866788520110527,-0.11752838134276963,-0.0006518146090304286,0.00014913402207036494,-0.07400765375562425,-0.306088900389444,-0.1708441919713773,-0.6306344360559164,-0.019877672017733897,-0.000603821718376649,-0.008278387992353564,0.00018447516087653472,-5.0147360280821935,-0.7244545426250427,0.00017805997350955164,4.6594368876652505e-05,-0.014317283451087803,-0.11227819556801222,-0.16775499338803007,-3.4876600242771327,-0.03228381788297045,-0.0011726839027393107,-0.008451422455950996,-0.000702921056089859,-5.925890354405417,-0.4661681808496214,0.0003411377788108856,-7.684600378556525e-05,0.010557309726284811,0.004870358107251428,-0.06675995919177465,-2.186567629215656,-0.013468231255149208,-0.0007618079366002028,-0.0036403414350031694,-0.0018323908550667547,-1.321677490569871,,,0.49819376026272577,1.2586206896551724,0.6724137931034483,0.017241379310344827,0.5862068965517241,0.08620689655172414,0.8628655355833578,0.007873852219705827,0.01677040394384376,0.9663607256093685,0.25672511182025004,0.23244288293842674,1.8292262611927261,0.4891679947586768,2.033105657949863,1.8350005538920773,0.06860959346608066,0.06982513286819338,0.05967037772351169,0.19810510405778572,7.1085253016842245,1366.0,327.7038,170.0,301.60493827160496,9039.198291448372,5488.183488,91.566165335772,335.6458,135.72751867093433,419.7993849999999,12845.46019814775,1392.0,357.85,212.0,323.55555555555554,8400.9712778202,5260.433648000002,112.73202068000003,368.50050000000005,160.87962962962962,443.72888599999976,15831.033857514889,1892.0,599.0340000000001,335.0,418.55555555555554,15179.520263489565,6906.667844999997,163.71246468049006,613.8375000000002,246.4043209876544,753.1749619999997,22295.194111403787,2068.0,735.7,388.0,455.1111111111111,19167.141719026054,7400.966055,192.28151629128192,753.2066000000003,290.43415637860073,934.0323779999999,25357.095361090596,2213.0,798.265,413.0,442.22222222222223,21457.120731506824,8037.002087000002,205.795603242319,816.7774999999999,301.76337448559667,1020.5451039999998,26911.64342488394,2642.0,879.6899999999997,438.0,466.88888888888886,23101.781478565576,9670.146987999999,235.56579652207404,901.8484999999997,347.09053497942386,1120.5739999999998,30953.34352664928,2884.0,988.0299999999997,448.0,438.0,26415.37329996676,10408.165817000001,259.583491315772,1015.6985000000001,386.61728395061726,1267.3004399999995,33004.54308062162,2480.0,1002.9439999999998,400.0,345.6666666666667,28031.932843624705,8612.348523999997,234.243242633658,1029.3605,373.61419753086426,1301.538606,28565.87323667938,1639.0,802.8950000000001,305.0,247.44444444444446,23153.28532282621,5485.789434999999,163.23880079705404,819.3724999999998,286.1625514403293,1046.594448,19570.55620491942,547.4736842105264,3.212571929824559,0.5071624673400005,27.894736842105267,166.43058262941304,79.26804816078847,2596.8081694736843,14.745804244234876,3.7641929824561378,15.316877775906004,2.1336477192982453,3136.036343542614,18.61495844875351,0.27004309018159994,-0.10640040882531197,11.722991689750694,54.185454973800105,-8.111865188333757,86.8130650360106,-0.5039076299109819,0.2937704216682109,0.13992285574931543,0.07353555370883255,-5.835522068302524,-90.09418282548474,-1.0922665435518528,-0.1960516126027223,3.2548476454293604,-2.373125254114254,29.775243044614726,-414.8929790941833,1.4815269785544214,-1.2118315481686592,-0.23415546617019167,-0.6671446128039406,213.4805818192269,-109.15235457063714,-0.29482917820867394,0.07966244888728048,4.232686980609419,12.68301357682708,12.244470374004724,-513.8644100470917,-0.4090251694735566,-0.5951493998153221,-2.5359979919958473,-0.12326318651892951,-232.96621075389712,119.41551246537398,0.4104724530624806,-0.012974981135709714,-0.6011080332409982,12.633136881623603,9.00855306656171,570.0300894155125,2.8934021284931246,0.6043874115112334,2.292121808879418,0.16296767189904612,626.7856069541687,72.7368421052632,-0.7151461988304046,-0.05572196186849385,-8.842105263157896,-42.895242220778265,8.736946420572218,353.911020210526,3.7997331472383933,-0.5506356725146158,-3.1299881632649442,-0.3512033918128657,435.75185505680014,-20.332409972299146,-0.11276392736226415,0.025800185818173137,-12.803324099722994,-52.953379767373804,-29.55604521104827,-109.09975743767355,-3.438837259067964,-0.10446115727916028,-1.4321611226771664,0.03191420283164051,-867.5493328582195,-128.9529085872576,0.03169467528470019,0.008293797660044146,-2.548476454293629,-19.985518811106175,-29.860388823069353,-620.8034843213296,-5.74651958316874,-0.2087377346875973,-1.5043531971592774,-0.1251199479839949,-1054.8084830841642,-66.66204986149586,0.048782702369956646,-0.01098897854133583,1.509695290858728,0.6964612093369542,-9.546674164423774,-312.67917097783885,-1.9259570694863368,-0.10893853493382899,-0.5205688252054532,-0.26203189227454593,-188.99988115149154,0.7060855423059235,0.6172650413238779,0.4576087692903751,0.33875889558922206,0.2982904078616429,0.18946664851198183,0.18422500788307614,0.09745462495001876,0.1181760207790848,0.052542241698392854,0.077204387561228,0.029263469031316637,0.049409530672957704,0.016350127801389218,0.032536801419352786,0.008862751621976219,17.001102771512983,5.667695694478464,3.5203446748360308,2.1676025472058407,0.36915892181575377,-0.5233696894310317,3.271742410940567,0.9871402015633701,6.007542948198882,0.7678909291603975,14.544536435441433,10.92800216051303,35.45051746316937,11.678738126065747,2.2038651343115823,0.7788079187527085,3.4629422088402975,2.2175938130161206,3.5105608833643864,1.2752618926817558,3.6764743875170143,2.4135983940666423,22.455789880747584,14.706816692860091,0.21729013614264697,0.4668937681432798,0.6509236610887466,0.7867791616101644,0.8586360358752703,0.8758682101326614,1.6310848096400614,902.4579562850507,0.0,0.0,3.0,0.0,15.0,1.0,5.0,0.0,0.0,4.505567903320724,2.9808580127442004,1.8567069109085486,1.0268302633856283,0.5878907895495953,0.482627631654859,209.48960340124094,1198.9284422709106,42.13612447245168,21.03383232054229,41.072322929014156,,14.0,669.0,0.0,0.0,0.0,12.486885409483257,18.71508986212249,27.836563535229523,0.0,26.2280781022776,77.69631455238981,16.337802844032566,14.447619047619048,36.5,19.5,0.5,17.0,0.0,0.0018062397372742135,2.5,0.09624764723052665,0.06130043724028744,-0.0349472099902392,0.0,0.06180739466895924,0.0,0.5360066833751046,0.7638752052545152,0.43975903614457795,0.47470624613481716,0.7638752052545152,25.023100531917375,0.228341714371469,0.486341714371469,28.024461042671685,7.445028242787251,6.740843605214375,53.04756157458906,14.185871848001627,0.6521926053310407,0.11865524060646013,0.0,0.23533289386947923,0.23076923076923078,0.3437173187005819,-0.6148554871435248,-0.02694619486858685,-0.010786938370939032,-0.024594219485740993,0.656282681299418,1.1739850911199645,0.03592228552571768,0.020596229668771306,0.03668703409749889,-7.405025842487533,0.7212172365809704,0.8277902102461455,1.21718026726912,0.7145506875599614,0.6800643812371531,1.1929645713405765,0.7279070838264554,0.9951728100463817,0.7698987461945002,0.9466068199969797,0.7665936914336976,0.9761375838921239,1.0136742934051144,1.488895534320755,1.6522597590573833,1.2446792452830187,1.2141821163181115,0.868429817269925,1.0108936907157255,0.8963858528865102,1.3543078220908937,1.0625335116337533,1.4200526228371604,0.9130767489479942,0.9579354397658569,1.1469799388295039,1.0982311504435534,1.242767295597484,1.1143686313296288,0.9377501976891995,0.9598418021059641,0.9834271895048399,1.099607101077093,1.146283623362476,1.1001565175044377,1.0086871185092066,0.6951932320707556,0.7783607821464575,0.8170119257016877,1.2690566037735846,1.0331820252209107,0.939026599678883,0.701324242355999,0.8889340783424556,0.7454878145405224,0.8474378596268263,0.6995585946544719,0.9094245739953656,0.835800807537012,1.0519346689486373,1.0298424297404658,1.182075471698113,1.134105490558426,0.9537417988087424,0.8372223019293848,0.8868376860525844,0.9942307244161278,1.1102069643655206,1.0128406570347526,0.9343994831722225,1.055399528547756,0.6907515429427987,0.6150469153783182,1.0269822227069472,0.9859343665355677,1.1119907518017087,1.0559643367060823,1.0893703722237529,0.7987329515545891,0.8808802810590914,0.7325862884702965,1.092646169535217,1.2800368986949353,0.8213671728556768,0.7662345610472884,0.8120415518337925,0.9171076594906542,1.0680744603061256,1.274806614560968,1.1555749751036546,0.9658491776521384,0.9861636236543515,1.0077800349070378,1.1098261736506527,1.1852535082683129,1.2163785222131656,1.3014757188816124,0.8282886924396358,1.016895500226014,0.9652105142568983,1.1792561561620616,1.0561702582775638,1.2182880500667217,1.2267354405461581,1.403143461348206,1.0080130579623376,4.0,0.10733598612386491,2.4444444444444455,1.75,1.2844444444444445,0.7708333333333335,0.566530612244898,0.4756944444444444,0.25724363819601914,0.07562500000000001,5690.268466758387,6502.842238298944,2689.2342443268744,2409.7272491638287,14.114215293043454,0.4378176583440132,7.934762604079909,0.7787823022942343,0.0,0.23076923076923078,1.327322110844017,2.852032001420541,3.9761831032561927,4.806059750779113,5.244999224615146,5.350262382509882,0.1290322580645161,0.005963110340214717,0.061111111111111144,0.041666666666666664,0.028543209876543216,0.014823717948717948,0.011108443377350941,0.012197293447293448,0.010289745527840765,0.003980263157894737,0.3187158195181497,23.658688865764827,12.7575,7.277201076509035,178.95217054120553,0.0,4.2727167270595725,168.3627411061791,,130.15993736555143,130.07193746458827,131.82956883570475,130.1495276068459,167.36230930606246,130.7448998909946,131.1718636117416,150.63704108055677,0.03284896320459894,0.08120879246393835,-0.20268379843829665,0.4060121522225775,0.3145375030411687,-0.09886564497560019,0.03229743739179497,-0.03301454483420674,0.07539786180262201,0.00882553938697864,0.033296416475912326,-0.0017977176101644978,-0.09380119207844641,-0.19379859608577116,-0.22034244720367918,0.0665094339622641,-0.008127601150427429,0.21410756199022796,-0.09106910585991246,0.05726851949131091,-0.18350387073019434,-0.008713826516717406,-0.17822643628504772,0.03880182443915795,-0.09019327784949781,-0.04151661265216158,0.07105765275896737,0.06864330637915543,0.034474155352332427,0.06987891461584736,-0.08951853815944155,-0.012548328504128263,-0.07152509277612332,-0.07490019856787715,-0.0261345475200022,-0.03360594863973316,0.08880641085505535,0.052020913762831224,-0.010416131380294034,-0.00877358490566039,0.030904725341939866,0.04627044716432563,0.08937266987613811,0.07988903080131998,0.06537178584911373,0.060927627408153,0.031097506377819568,0.08137382825833711,0.04982214958661797,-0.08347823190251408,-0.04120126595779167,-0.11886792452830189,-0.09665120183235508,0.04133260479769574,0.051107599759995355,0.096630872525755,-0.05485594871340713,-0.07663086292107767,-0.06172587477240201,0.052106202781345284,-0.012236419630284512,-0.01156501193632835,0.0167611757679852,-0.15122696041007744,-0.10483089734203041,-0.12285049485027766,-0.013842440607568146,-0.07683726748602461,-0.009143483904220909,-0.030807069330175015,0.004928219440752328,-0.09114688807393947,-0.07542629010410702,0.003159281320931765,0.005236742063936482,-0.02925588297646809,-0.03845361258890203,-0.12062911658581454,-0.0765542190296206,-0.12479330315596483,-0.017757586491361457,-0.031450997196503516,-0.018778404623561663,-0.10770785577680564,-0.048534910580671026,0.006052737126817384,-0.00863672392547284,0.02157276685578575,0.001668025237473811,-0.048005694125486637,-0.04799521055517668,-0.05206153349307116,-0.011535819919062173,-0.01354711220073746,-0.04895197918293527,-0.024022558640816004,32.081778290885445,31.135384824078923,6.534047077809358,13.41067057931374,26.318978618888025,34.070025704246774,38.57798186925195,40.17864338519447,40.67081882379096,58.960064080546026,53.21501606287024,1.989678210516339,2.0249288531776077,1.730440953981839,5.745048017675786,7244.291179211303,5775.155265520907,2342.5389674886037,96.0,40.0,51.0,67.0,86.0,88.0,100.0,108.0,108.0,405.1859421960008,31.0,4.962844630259907,5.783825182329737,6.637258031284457,7.488293515159428,8.356789669923213,9.222170123729759,10.098272780745283,10.971589085999216,11.851930206378123,0.6315789473684211,0.9543859649122807,1.1134351442133836,0.5929739843739729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6951591973946842,0.9462676298589613,0.9857719681578307,0.6341966283508488,14.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,9.636772684650527,12.356393797796823,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,72.79640482153933,60.48546326043313,12.424759850882914,0.0,230.36847134318705,-412.0924694912227,-18.060055116976784,-7.2296924472144335,-16.483698779648908,439.858074744428,786.835972779688,24.076069355474893,13.804139873327857,24.58862414936525,0.5,0.9857426351789346,0.2751863416184269,12.49112904786464,0.06646949575910431,63.6169806895684,0.014257364821065498,7.0,0.2903225806451613,0.22755822716024365,0.48895693121155936,0.6816831953971919,0.8239585761274347,0.8992110620769557,0.9172575463478938,6.215000000000006,,1.0399159663865545,0.5879898120088726,0.5300446839313885,1.0529505248587374,-1.3665311283925297,0.6129431154424184,0.5985419659928938,-0.635030476563845,124.62800000000003,4.736862953800049,0.0,4.899909730850478,0.0,6.4208216229260096,33.12698578075021,101.61949343355357,0.0,5.749511833283905,4.143134726391533,0.0,5.407171771460119,0.0,6.876264611890766,0.0,8.442254104751743,0.0,10.06317999126972,36.00000000000001,29.43598085850113,0.0,0.0,0.0,0.0,0.0,4.456299930334174,0.0,54.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4771922876639696,63.46580322016287,4.736862953800049,0.0,5.749511833283905,38.02689551160069,0.0,0.0,23.111176098016994,84.92913895846256,0.0,11.146209060138535,0.0,33.799517109316454,39.624074251497,37.78491271589385,336.7254822123582,,260.24815638859343,260.1033239076587,263.6225828656211,260.2264379361153,335.3843232947971,261.44752784299317,262.30244846720785,301.58064859807547,37.78491271589385,336.7254822123581,,259.2799587647162,259.5558851171677,263.1290929874782,259.2461046888331,336.0911497405173,260.87685666654704,261.7451852574902,301.9091126376776,4.854479398962841,240.79979048649878,,185.70256648205,184.8663717609308,188.10414842266346,185.7056613743309,249.70998338105477,186.04516930923256,186.71717809300117,219.17012719813442,1.302928024685995,11.611223524564076,,8.974074358227359,8.969080134746852,9.09043389191797,8.973325446072941,11.564976665337833,9.01543199458597,9.044912016110615,10.399332710278465,2.42723969948142,168.3627411061791,,130.15993736555143,130.07193746458827,131.82956883570475,130.1495276068459,167.36230930606246,130.7448998909946,131.1718636117416,150.63704108055677,53.93725490196079,0.0,4.093995316441759,6.214964471960092,0.0,0.0,0.0,56.189002184996355,2.9476317094855853,0.0,5.8710499286568005,0.0,0.0,2.1139966080676067,0.0,0.0,0.0,36.14920781599838,660.6708817072814,75.65736031810897,162.56582408097083,226.642436885603,273.94540579440945,298.96495580306333,304.9649558030633,804.0,135.37297322580912,9.555664380333798,63.932005205763886,12.47,12.47,1.0,8.845131348291357,5.954196310386875,4.365054105231582,5.277970758094904,,5.2745233396664775,5.274525071259447,5.274136793764686,5.274537367822809,5.22650914148098,5.27352234557424,5.272610032985167,5.243265701556614,0.15051910707695113,0.18199899165844496,,0.18188011516091301,0.1818801748710154,0.18186678599188574,0.1818805988904417,0.18022445315451655,0.18184559812324966,0.18181413906845403,0.18080226557091772,2.538341321449231,2.7282524347199986,,2.7275990501231187,2.7275993784168002,2.727525761971434,2.7276017097260388,2.7184543240451378,2.7274092530507295,2.72723623936977,2.7216552666889298,329.71000000000106,477.47801778901714,182.71587556658227,,182.901609423896,183.14294852562176,183.15657575555653,182.8929401255024,186.6308948849425,183.19660008565623,183.2662961289489,185.56586120541246,16.46475923410404,6.300547433330423,,6.306952049099862,6.315274087090406,6.315743991570915,6.306653107775945,6.435548099480776,6.317124140884697,6.319527452722376,6.398822800186637,7.233228859809579,6.272643090780742,,6.273659091825087,6.27497772438746,6.275052129233973,6.273611692002396,6.293843579144317,6.275270630575839,6.275651002203378,6.28812060295512,5.8710499286568005,2.1139966080676067,0.0,6.043106879191837,1.4660712276698495,29.43598085850113,0.8024629437021213,1.5694828769199192,4.093995316441759,397.1161640265052,154.399064875828,-276.1953124958181,-12.104328363203312,-4.845531798172248,-11.047812499832723,294.80455820470604,527.358356373619,16.13642080748581,9.25190098901086,16.479948636675594,2330.0,42.0,1.35956631029486,0.7851574954091336,0.0,0.0,0.22451341401773972,0.09322653612818577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2874574785652648,0.09192780768773619,0.2248892177291057,0.057304134134530955,20.47648072687178,17.90068619839246,14.185871848001627,10.501525763265883,11.931616314465716,7.578665940479273,9.395475402036883,4.970185872450957,7.917793392198682,3.5203301937923213,6.639577330265608,2.5166583366932307,4.348038699220278,1.4388112465222511,3.2536801419352783,0.8862751621976219,2.930568077623667,1.3789529347271614,4.977673405904133,1.9509578281637991,8.168962309993406,2.7757298709795077,97.9629893567928,71.16881310678882,44.21385307197174,30.27828456101305,26.096177438540785,25.020278487196297,142.0,162.0,66.17220399999998,32.045795999999996,0.3508771929824561,149.03,8.527777777777779,6.6944444444444455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,18.0,57.0,0.0,1.0,59.0,18.0,1.0,10.0,49.0,19.0,31.0,40.0,0.0,0.0,0.0,26.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,2.0,0.0,0.0,29.0,3.0,0.0,1.0,1.0,0.0,3.0,9.0,0.0,0.0,1.0,0.0,3.0,3.7376696182833684,7.572800330212213,4.269697449699962,4.8342958089798485,5.41665580349612,5.997539805298402,6.211101959092904,6.685704879959186,7.079447628705268,7.3918390043051225 +10202642,O=C(NC1CCOCC1)c1ccc(-c2cc(-c3cn[nH]c3-c3ccccn3)ccn2)cc1,0,23.563636363636363,6.1671727272727255,3.5090909090909093,8.0,160.9103233538678,93.14343170909096,1.5870000874823087,6.2501399999999965,3.7227272727272727,7.6499851636363605,235.4945651942141,25.983050847457626,6.374286440677966,4.186440677966102,7.779661016949152,146.34672825150005,99.37997450847462,1.8933727984745765,6.5223661016949155,3.187382297551789,7.753719186440676,279.10835023850234,22.03,6.3112499999999985,3.81,6.29,151.67067871763294,82.27347637000001,1.6697368884339607,6.431311000000001,3.0422222222222217,7.749414439999999,240.08027526055577,17.702290076335878,6.096915267175572,3.282442748091603,4.770992366412214,157.28189648687237,64.46102098473284,1.444203564978099,6.195153435114505,2.764631043256997,7.606052183206106,199.70870354234305,17.157894736842106,6.108600751879699,3.045112781954887,4.593984962406015,159.5728299424397,62.216786819548894,1.3760923484261502,6.196185714285713,2.948830409356725,7.623415729323308,189.49932950069137,16.984496124031008,6.106922480620154,3.0387596899224807,4.465116279069767,159.8223398123665,61.5619237364341,1.3840536203374187,6.193786821705425,2.9431524547803614,7.634277891472868,191.4950389150308,17.28813559322034,6.091879661016949,3.0677966101694913,4.6525423728813555,156.50645481967788,62.36688062711864,1.4510561907786947,6.190553389830508,2.9967043314500934,7.599314101694917,197.9181227933236,15.88695652173913,5.905493913043477,2.869565217391304,4.139130434782609,156.36630953959462,57.057006860869556,1.386525496060696,6.0086504347826075,2.727053140096618,7.436685530434782,184.59861225408554,14.779816513761467,5.939385321100916,2.7889908256880735,3.8440366972477062,161.413239518458,52.6769495412844,1.2562341494869176,6.020848623853212,2.635066258919469,7.501565944954128,167.9724979180799,6.976528925619837,0.10214710743801651,0.015210053158878193,0.5256198347107436,3.7038016528925617,1.609993793878499,33.294359952396704,0.2248887542997897,0.0970342479338843,0.9145638200183651,0.058056589752066075,49.478344018708015,0.3932707662137561,0.0029567446421068337,-0.005728361410746804,0.1437176075080543,0.8339487323154501,-0.016337127813289148,1.8632230479114782,0.0006287704844851429,0.00366846393052263,-0.0068853403059873945,0.00042841240509868905,1.4277674184561189,-0.5218016528925614,-0.008779834710743714,-0.0012193557212422605,-0.029256198347107448,-0.08834710743801658,-0.1465575328823215,-2.4564616238512347,-0.008197004106790653,-0.008568357024793263,-0.014765840220385637,-0.0046637090247934505,-2.7199170654676355,-0.18888145858305455,-0.008443707021638996,0.00019564197966159502,-0.03665383887451897,-0.07812503942968896,-0.02685460709949824,-0.8498111447631062,0.002398902500906293,-0.007508141063655268,-0.010932082798842006,-0.0052582669206990154,0.08702238963179505,-0.0004523705959111907,-0.002245398620518222,0.0015053366159608278,0.002609830361026533,-0.02410240477226127,-0.04510017530869657,0.009159472483689,-0.0005357743930959732,-0.0017733183371652088,-0.022059832777536106,-0.0016206838053812345,0.04887567074764505,-0.052075084886924194,-0.016642808636043283,-0.0024861198833080436,0.010250496508424628,-0.31690947530271,0.0862716131623037,-0.10688099679415759,0.02545730368317092,-0.014299984367992803,-0.18095251315124464,-0.010042246129796931,4.297195272850142,-0.7084241490404817,0.001885250035018923,-0.000551772802145025,-0.03810057431012747,-0.22044263902507355,0.035705171108923454,-3.4090854898389114,-0.010484635018975267,-0.0006281616472895091,-0.04844928483603364,0.0036851285838352707,-4.402272091412831,0.1401509162773984,0.01772625224577787,0.002725904114808766,0.010348544735896517,0.3607042759611931,-0.14826593425028617,0.5178378308444125,-0.029696487940602548,0.015495744160977296,0.12907693536152032,0.009825019734099955,-4.710388214891195,0.5412358783835012,-0.0010456061869740364,-3.5746883568389765e-05,0.02016832208658731,0.19161119114413527,-0.14927406644364877,2.5913090317567646,0.0015500422859036638,0.001075810448100624,0.01879731426019998,-0.002411266649480594,2.364005595966185,,,0.47395833333333337,1.3828125,0.734375,0.0,0.6484375,0.0859375,0.7536765587794038,0.004319499346718547,0.017756999346718545,1.0506402023216146,0.27511728110353273,0.21788239337390794,1.8043167611010182,0.4929996744774407,2.084169561931246,1.646846022792439,0.3191081760865163,0.11821536305229069,0.0,0.43732353913880695,7.730639545018194,1296.0,339.1944999999999,193.0,440.0,8850.067784462728,5122.888744000003,87.28500481152697,343.75769999999983,204.75,420.74918399999984,12952.201085681774,1533.0,376.0829,247.0,459.0,8634.456966838503,5863.418496000002,111.70899511000002,384.81960000000004,188.05555555555554,457.46943199999987,16467.392664071638,2203.0,631.1249999999999,381.0,629.0,15167.067871763295,8227.347637,166.97368884339608,643.1311000000001,304.2222222222222,774.9414439999999,24008.027526055575,2319.0,798.6958999999999,430.0,625.0,20603.92843978028,8444.393749000003,189.19066701213097,811.5651000000001,362.16666666666663,996.3928359999999,26161.84016404694,2282.0,812.4439,405.0,611.0,21223.18638234448,8274.832647000003,183.020282340678,824.0926999999998,392.1944444444444,1013.9142919999999,25203.410823591952,2191.0,787.7929999999999,392.0,576.0,20617.081835795278,7941.488162,178.54291702352702,798.9984999999998,379.66666666666663,984.8218479999999,24702.86002003897,2040.0,718.8418,362.0,549.0,18467.76166872199,7359.291913999999,171.22463051188598,730.4852999999999,353.61111111111103,896.7190640000002,23354.338489612182,1827.0,679.1317999999999,330.0,476.0,17982.125597053382,6561.555788999999,159.45043204698004,690.9947999999998,313.6111111111111,855.2188359999999,21228.840409219836,1611.0,647.3929999999999,304.0,419.0,17594.043107511923,5741.787499999999,136.92952229407402,656.2725,287.2222222222221,817.6706879999999,18309.00227307071,383.709090909091,5.618090909090908,0.8365529237383006,28.9090909090909,203.7090909090909,88.54965866331744,1831.1897973818186,12.368881486488434,5.336883636363636,50.30101010101008,3.1931124363636343,2721.308921028941,23.20297520661161,0.17444793388430319,-0.33797332323406143,8.479338842975203,49.202975206611555,-0.9638905409840597,109.93015982677721,0.03709745858462343,0.21643937190083518,-0.40623507805325626,0.025276331900822655,84.23827768891101,-52.18016528925614,-0.8779834710743715,-0.12193557212422604,-2.9256198347107447,-8.834710743801658,-14.65575328823215,-245.6461623851235,-0.8197004106790654,-0.8568357024793264,-1.4765840220385638,-0.4663709024793451,-271.99170654676357,-24.743471074380146,-1.1061256198347085,0.025629099335668946,-4.801652892561985,-10.234380165289254,-3.5179535300342692,-111.3252599639669,0.3142562276187244,-0.9835664793388401,-1.4321028466483028,-0.688832966611571,11.399933041765152,-0.06016528925618836,-0.2986380165289235,0.2002097699227901,0.3471074380165289,-3.205619834710749,-5.998323316056643,1.218209840330637,-0.07125799428176444,-0.23585133884297277,-2.9339577594123023,-0.2155509461157042,6.500464209436792,-6.717685950413221,-2.1469223140495837,-0.32070946494673763,1.3223140495867771,-40.88132231404959,11.129038097937176,-13.787648586446329,3.2839921751290486,-1.8446979834710715,-23.342874196510557,-1.295449750743804,554.3381901976683,-83.59404958677683,0.22245950413223292,-0.06510919065311295,-4.4958677685950414,-26.01223140495868,4.213210190852967,-402.2720878009915,-1.2371869322390814,-0.07412307438016208,-5.71701561065197,0.4348451728925619,-519.4681067867141,16.117355371900814,2.0385190082644553,0.3134789732030081,1.1900826446280994,41.4809917355372,-17.05058243878291,59.55135054710743,-3.415096113169293,1.782010578512389,14.843847566574837,1.129877269421495,-541.6946447124874,58.994710743801626,-0.11397107438016997,-0.0038964103089544843,2.1983471074380168,20.885619834710745,-16.270873242357716,282.45268446148737,0.16895460916349936,0.11726333884296802,2.0489072543617977,-0.2628280647933847,257.6766099603142,0.6797656752753335,0.5466286872387166,0.43822193286883615,0.29667053899413426,0.28031326625761566,0.15797694949124658,0.18119362123729105,0.0853134422138002,0.11814671312741157,0.04499852344715001,0.07625716056697192,0.024470323642994805,0.04758700647015516,0.011922877375577763,0.03110373199981369,0.006259125716880774,8.022159864226662,5.683712089929716,3.5439227233568023,2.1822977547744036,0.4014364152779692,-0.4171161121213087,3.2263182107742536,0.9780386205943732,6.02204108636388,1.888540600296955,14.690866142055937,10.945303627099875,16.010267386055926,11.695727258275523,2.0040324601451815,0.751853777416151,3.4891504865983918,2.231839501367255,7.008272645826542,1.236844099281886,3.7020695861464854,2.42758444457327,20.90700682995859,14.702507381470145,0.2490178196066996,0.57693930827929,0.75890946626994,0.8632277616685088,0.8809668502799597,0.8809668502799597,1.094020979958068,1198.5064757438145,0.0,4.0,2.0,0.0,12.0,3.0,4.0,0.0,0.0,4.2499630946930225,2.2333288643050726,1.1142584093662604,0.47272727272727355,0.3636363636363651,0.3636363636363651,230.92057011636544,1699.27300106734,67.81871063825737,30.89587274667891,61.432709583973704,,18.0,983.0,0.0,4.794537184071822,11.949020558499466,18.777215420722833,46.613781705488385,0.0,18.59053071483923,54.59730361615449,25.48210926250282,4.736862953800049,15.166666666666668,44.25,23.5,0.0,20.75,0.0,0.02604166666666663,2.75,0.15151515151515216,0.06692274861289016,-0.084592402902262,0.030024509803921462,0.12916709511568092,0.0,0.5969696969696969,0.8104166666666663,0.44545454545454477,0.5300469483568068,0.7803921568627449,24.11764988094092,0.1382239790949935,0.5682239790949934,33.62048647429167,8.803752995313047,6.972236587965054,57.738136355232584,15.775989583278102,0.584832904884319,0.021978021978021976,0.0,0.2967032967032967,0.2,0.33695331263098327,-0.8085599796377413,-0.051601800251133104,-0.014701090538868027,-0.0425557884019864,0.6630466873690168,1.5910602328017227,0.04416806646653187,0.028928367869122236,0.044196117577825635,-7.022501060850189,0.7358593760039062,0.7333482166487799,1.343536471459198,0.7281739686600579,0.5481395869513914,1.1316697725437268,0.7397043667332345,0.9756337589359027,0.7100620703526972,0.5974203579069612,0.7598475232629985,0.8795727074193018,0.9520493745261559,1.0427848347060629,1.1472638653900364,1.1861320754716986,0.9529766154944664,1.157715441774884,0.9512798498881019,1.0074784300574324,1.0235181001101763,0.7380567492670391,1.0755186697750545,0.9765367908417885,0.9792127247683589,1.0233931994996333,1.044452210692039,1.197753132651592,0.9935587344759643,1.0179149776160334,0.9783219689185644,0.9720160013917024,1.0168701300277208,0.8801592786000484,1.030817443982157,0.9704326417844434,0.9777143769203142,1.0200583336689266,1.0154413287144626,1.0112072634416234,0.9965560098031585,1.0331164023295663,0.9770433869621751,0.970049515221277,1.0119900114612184,1.2154646123723305,1.0159056585478106,0.966513570041058,0.9976671456529785,1.2229532953231346,1.1585700562368306,1.0353225098727517,1.12095555574006,0.93653038419486,0.9921014919103363,0.8609885337307365,1.1978221083452438,1.6519155994870447,1.2534834172423366,0.8829748302082338,1.0435607034091052,0.8925294989963358,0.8489250725452613,1.044771346338344,1.0176525938072964,0.974718268990579,1.0455724833584432,1.0359833858488796,0.9185840661361587,1.2129099017658465,0.8492222630843552,1.0645865609936862,0.9196505092790979,0.5298988656774378,0.5052715224265799,0.8527481542247747,0.7768110767893455,1.0495579456109263,0.9289197853847203,1.1491477708931248,0.575038565977527,0.5056515278245854,0.47657147249883924,1.118236551747595,0.9367044640435134,0.9537821564465204,0.8838724662945416,0.9510991864289426,0.95819317478358,1.0361584825682957,0.9371767910630091,0.985698615978348,0.9461041406296042,0.8419496416900428,0.9618021778494927,0.9643645392732875,4.5,0.10386491174369962,3.333333333333335,1.4305555555555556,1.2866666666666666,0.9308333333333335,0.46027210884353753,0.34725765306122447,0.2794312169312169,0.13780864197530868,6163.452340535871,6820.591971315077,3119.3967213565006,2882.0955918951086,18.3578327498132,0.4886918243351937,9.386509972466621,0.9557676712284001,1.0,0.2,1.5313966188316375,3.5480308492195873,4.6671013041583995,5.308632440797386,5.417723349888295,5.417723349888295,0.125,0.003994804297834601,0.06802721088435376,0.029195011337868483,0.027375886524822698,0.02023550724637681,0.010958859734369938,0.00938534197462769,0.008732225529100529,0.004921737213403881,0.30782658474275837,23.728395061728396,11.620158267388588,5.991735537190083,185.44799471595667,1.0,4.4080743541161755,217.00347704632543,,170.54519637009287,168.84191665972895,167.86974181682163,170.56121053024322,198.03052456503218,169.84255047574229,170.64582153368605,188.8393008089229,0.05637054908058244,0.028945945864409375,-0.37661679094153117,0.2734250079948833,0.22516020307517284,-0.010147323471311503,0.0559621224308099,0.002795917859222767,0.037805867604829506,-0.007528550939013892,0.0073792209795347655,0.02885641075449641,-0.07479387793783158,-0.08595284713344792,-0.08016774882410688,-0.0556603773584906,-0.023853088182791877,-0.09102987442533068,-0.07378011252847062,-0.03644915074705592,-0.08830240051565545,-0.016145226715932333,-0.080330399093541,-0.05497186939884691,-0.027073844399817092,-0.08266222346788125,0.012862675601327384,-0.06973450477699367,-0.02109320280924751,-0.016679944482770392,-0.025524177247381877,0.010667062959086062,-0.07737619679158075,-0.011953329619602143,-0.09057140529877382,0.0017587975377448251,-6.484178604204661e-05,-0.021982008857967354,0.09896984581425704,0.00496524329692155,-0.006507477189940231,-0.028012639228906323,0.0002751058286383923,-0.002382397442522871,-0.01827517989703476,-0.02412060513950041,-0.0279155874001979,0.0009878194534797872,-0.007464325804726386,-0.16292980832709572,-0.1634524125155264,0.01950173077860661,-0.08556329550077632,0.053585059451983406,-0.0032101832546705482,0.11319954064592694,-0.14737048694123242,-0.19785662759719816,-0.1729734070272282,0.08685002212736445,-0.10154392773158911,0.01845622536265067,-0.036276849027509946,-0.07248694169065134,-0.059517938508644015,0.022177210399618476,-0.10239228189738808,-0.046621428677570256,-0.006473607624779205,-0.05297529136354939,0.06347476831782264,-0.08897371524294163,0.020088917823120264,0.1735365072039291,0.17921726415647934,0.019688269073010675,0.09738757897024358,-0.09209099737776712,0.015553319889158458,-0.13204967955407593,0.1596935565629936,0.14113496787892654,0.16923177499846706,-0.0952010078007092,0.07757953620688451,-0.010236277983774692,-0.002350214242842676,0.03837054988171486,0.051733653446180757,-0.09271716885569188,0.07783027021578856,0.006892484645263177,0.011086914888376764,0.02055331060419875,-0.041533039742396916,0.047778591681895057,19.950718498625953,30.466185787643667,8.954096928765768,13.927270824141214,32.54255208519689,41.129451291123075,43.44913285867335,43.55909649503699,43.55909649503699,66.69342598179988,52.69907272935805,10.211461634768522,3.782891617673302,0.0,13.994353252441822,13841.122214127014,13352.733074447864,1310.8194437054735,178.0,49.0,66.0,86.0,106.0,111.0,130.0,145.0,163.0,425.18517497600067,36.0,5.14166355650266,5.993961427306569,6.86171134048073,7.7279755421055585,8.6020856584342,9.474165107897397,10.351660875132662,11.22725470181248,12.107053094507021,0.6787878787878786,0.9850909090909094,1.1208780793019402,0.6440944285919727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6988594338595538,0.9727629233511583,1.003403297358141,0.6627351960475921,12.0,3.0,1.0,0.0,0.0,0.0,7.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,10.05365155780638,0.0,0.0,0.0,5.907179729351506,19.861176034267274,0.0,5.098681808301038,0.0,18.19910120538483,54.80329714831867,48.33964637649093,23.27862755615846,238.6109534358146,-572.5756667740326,-36.54142664687711,-10.410466668618776,-30.135561409159617,469.53152355218003,1126.6973342933072,31.277283991380255,20.485406078060134,31.29714817481409,0.5,0.8681669740101964,0.15889588687886236,138.10797200678522,0.10459830662160421,65.94784436500287,0.13183302598980365,9.0,0.1388888888888889,0.26488519910794606,0.613701797679096,0.8072670678560939,0.9182325099714179,0.9371019307472445,0.9371019307472445,4.109500000000003,,1.2142857142857144,1.4997673336435549,1.4725162990448417,1.2110320506083252,-4.755497619587395,1.3233629130966955,1.1983045659983018,-2.3946120973331952,121.79289999999999,9.53140013787187,0.0,25.48210926250282,0.0,18.88348407499998,13.213763929025836,78.75128582269073,0.0,33.772138459636366,4.290459441148391,0.0,5.594711379601839,2.3978952727983707,7.10085190894405,4.59511985013459,8.690978417187905,6.6052979209482015,10.323282824952447,37.33333333333332,22.650476609822697,13.172076822329265,3.0479171926877866,0.0,0.0,0.0,6.055335257636162,0.0,54.180000000000014,0.0,12.55856008704001,0.0,0.0,0.0,0.0,0.0,-0.05225932501913433,61.64829436160671,5.316788604006331,0.0,0.0,45.3281051460218,4.736862953800049,0.0,23.199631921620835,73.18783433099374,0.0,33.772138459636366,0.0,35.4251935725585,38.43726886227546,43.426008856298495,434.00695409265086,,341.01449988304284,337.5901214133677,335.67026815784993,341.0467315573234,396.952704933737,339.602390769416,341.2167490319972,378.1275913860958,43.426008856298495,434.00695409265074,,340.05053519903106,336.4309667024794,334.5060882700214,340.0850041795767,400.8165467496516,338.5614236172821,340.26417806687067,380.0732137151789,4.826314550070862,333.50512105226665,,263.21905066641654,260.9323669133492,259.37902779318364,263.2398116618581,300.450313719131,262.26386213071237,263.3554145719631,287.97629066657925,1.357062776759328,13.56271731539534,,10.656703121345089,10.54969129416774,10.48969587993281,10.657710361166357,12.40477202917928,10.61257471154425,10.663023407249913,11.816487230815493,2.436563605340415,217.00347704632543,,170.54519637009287,168.84191665972895,167.86974181682163,170.56121053024322,198.03052456503218,169.84255047574229,170.64582153368605,188.8393008089229,53.50196078431371,0.0,0.0,0.0,0.0,0.0,0.0,55.187181354697756,3.1104041852095152,3.092922365967099,5.352960321890496,0.0,0.1782731491027707,0.0,0.0,0.0,0.0,36.45043578261757,614.7859114147524,84.22681403574006,195.1416967070773,256.690571728712,291.9747842438563,297.9747842438562,297.9747842438562,1102.0,145.48753130417927,93.35656557324222,81.5985970157158,92.78999999999999,92.78999999999999,1.0,9.251072862491075,6.169925001442312,4.575863047013058,5.568356788202937,,5.558616711128028,5.559636662002179,5.559063942465518,5.558603774410555,5.537072570807307,5.5589881792685185,5.558561252059069,5.545902387622771,0.14299572021915807,0.1740111496313418,,0.17370677222275088,0.17373864568756808,0.17372074820204744,0.17370636795032984,0.17303351783772836,0.1737183806021412,0.1737050391268459,0.1733094496132116,2.683946134897954,2.880250809125915,,2.878500094151484,2.8786835673721023,2.8785805482230957,2.878497766822006,2.874616754081717,2.8785669193614623,2.87849011696678,2.876210156343614,318.85000000000105,642.0916840388385,216.45454762470905,,216.92789844949826,216.78358024171314,216.84002919238898,216.92965872105432,219.6563996857428,216.87447489261507,216.93581358181865,218.6189888293461,20.065365126213702,6.764204613272158,,6.778996826546821,6.774486882553536,6.776250912262156,6.779051835032948,6.864262490179462,6.777327340394221,6.779244174431833,6.831843400917066,7.627881913328604,6.540531393520128,,6.54271584292414,6.542050339610522,6.5423106988242115,6.542723957437888,6.55521531563614,6.542469539259447,6.54275232964613,6.55048124741754,5.352960321890496,21.5121478451467,10.359328622877461,6.055335257636162,-0.05225932501913433,17.485316589933145,7.055808268134501,1.3980290860673419,0.0,376.50054432414436,168.97055160250477,-405.465150932416,-25.87653637839467,-7.372093653316656,-21.34027110170611,332.4952161121877,797.8622411222331,22.148773359112962,14.50658620222242,22.162840031173143,3347.0,49.0,1.5453252659366894,0.7091368321276731,0.0,0.0,0.3928227825746012,0.09676280731919884,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.032274861218395144,0.5068735753865525,0.16533997799064631,0.5552782382732521,0.13441617773602932,21.75250160881067,17.49211799163893,15.775989583278102,10.680139403788834,13.735350046623166,7.740870525071082,11.95877900166121,5.630687186110813,10.160617328957395,3.869873016454901,8.083259020099023,2.5938543061574495,5.282157718187222,1.3234393886891318,4.04348515997578,0.8136863431945006,4.122211359889821,1.5280184671200177,6.702054013301829,1.9717871996793759,9.940029486823938,2.3751402752280035,103.44395039739922,58.21485194244678,33.26391450520993,26.967600006542828,26.555088037794686,26.555088037794686,170.0,200.0,64.190239,29.097760999999995,0.5636363636363636,304.07,7.5,7.055555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,23.0,23.0,55.0,0.0,0.0,59.0,23.0,1.0,12.0,47.0,24.0,36.0,35.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,5.0,2.0,4.0,32.0,7.0,0.0,5.0,2.0,0.0,5.0,5.0,0.0,0.0,0.0,3.0,4.0,3.901972669574645,8.17552120952036,4.4744918623459755,5.079072455649484,5.667939384240971,6.183762218251091,6.490438972015408,6.981934677156389,7.378168980386791,7.796154380610886 +5577,COc1cc(C(=O)NCc2ccc(OCCN(C)C)cc2)cc(OC)c1OC,1,21.464285714285715,6.194103571428572,2.892857142857143,7.214285714285714,164.1091480214549,84.46836492857145,1.3687871667102145,6.245066071428572,3.6865079365079367,7.743387142857142,202.37110735834145,23.70175438596491,6.423315789473684,3.3859649122807016,6.456140350877193,147.9341552085895,89.04629005263162,1.646872432807018,6.550938596491228,3.182748538011696,7.854758385964909,243.28466258749546,18.783505154639176,6.398247422680416,3.1649484536082473,5.010309278350515,161.54439121567142,68.98772579381442,1.342384426116309,6.463315463917528,2.9527491408934705,7.933511257731961,195.98186754776802,19.192660550458715,6.353880733944954,3.036697247706422,5.08256880733945,154.18965254039026,69.79433046788992,1.412403959181578,6.443709174311923,3.1610601427115177,7.861143229357797,200.60054522009776,15.388059701492537,6.121350746268656,2.4925373134328357,3.537313432835821,160.328302690323,54.65706834328356,1.1891737297296423,6.191732089552239,2.8604892205638475,7.69769767164179,163.14732573822297,14.414814814814815,6.209837037037038,2.4,3.1555555555555554,163.63443224107385,50.398019903703705,1.1345566187790221,6.257188148148146,2.9907407407407414,7.8115449185185195,154.45890837779186,14.5,6.122066666666669,2.466666666666667,2.825,159.7990159808615,50.290229525,1.2167766631581665,6.191464999999998,3.003472222222221,7.697997566666664,162.41095098019034,12.330578512396695,6.005181818181819,2.2148760330578514,2.330578512396694,163.70625473938819,41.50568024793385,1.131169632146876,6.064929752066118,2.716023875114784,7.619353851239669,147.57527515942647,11.732142857142858,5.814910714285714,2.169642857142857,2.642857142857143,163.67487365840233,40.04134049107144,1.0919325601760266,5.87968392857143,2.4382440476190474,7.444069821428572,139.1541640999093,7.668367346938775,0.14426058673469383,0.028418629652466693,0.5344387755102041,4.275510204081632,1.3730404990148954,36.348377908163265,0.22273265151837243,0.1344586415816326,1.0070507369614512,0.09223599489795917,49.218954760165765,0.4851414249910492,0.0014749395810956538,-0.010128825605914197,0.2750850340136053,1.4851414249910488,-0.41783257849628885,2.1971863361976314,-0.044156430971571736,0.00465520553616188,-0.039266693519512966,-0.003113273093447917,-3.7547930196466215,0.5293498842836104,-0.02458102119713857,-0.005936360112349999,0.013793919629707512,-0.0037870818430464255,0.46292240087223135,2.78666227814012,0.06419637558826083,-0.020098037752472073,-0.015396343245201808,-0.016950002261729442,12.541433255739621,-0.4399925107657743,0.010959858874742604,0.00580838363086431,-0.04328543343943086,0.20483055607564132,-0.19078662502724317,-2.231157253510581,-0.03305476194746356,0.008530889873151147,0.02875456375210642,0.008489396976221666,-6.856242018552966,0.1626561072190072,0.002753139278099308,-0.0025822083572510416,-0.04270103563813587,0.04112092598233312,-0.2442874040210459,0.6789424425830028,-0.03220029388391722,0.00413272302391106,-0.03652390682641209,-4.0252893694794946e-05,-3.543975490042255,-0.2379440665154953,-0.0013663274754345872,0.00013103987879789812,-0.08761337868480729,-0.4707482993197279,0.08809561082093961,-1.071933253665911,0.018421303041511686,-0.0028292500472410914,0.0925965293524818,0.0005616749433106503,1.2149974228774758,-1.0159863945578231,-0.0004529081632652904,0.0030611022713190753,-0.07640306122448984,-0.7076530612244899,-0.14728110141312192,-4.892130461734693,-0.026206191920102814,-0.0031597874149659594,0.046975387377173085,0.0017396967687074807,-7.709935882143407,-1.1320627424523526,-0.027106808694552183,-0.0049259391703798,0.05499451846854445,-0.4402091415078427,0.0630582449359942,-5.255002179119583,0.0024117189709557695,-0.025751661062152122,-0.2547714505912557,-0.015537238109293298,-2.271645441554954,0.4234693877551022,0.010373182397959134,0.0019151006785785493,0.058035714285714295,0.6377551020408163,-0.0042882887529268375,1.9518011543367357,-0.002578505419715557,0.010093016581632617,0.051091269841269805,0.006597691326530619,0.8067002703121153,,,0.46309523809523817,1.1964285714285714,0.5535714285714286,0.07142857142857142,0.6428571428571429,-0.08928571428571429,0.8134050536487528,0.015611359081665237,0.021754216224522376,0.9931896135592497,0.2644555887853504,0.21686925078916633,1.8065946672080027,0.48132483957451677,1.9913855014929,1.5086367659764723,0.14320412336172697,0.33954461215470083,0.0,0.4827487355164278,6.932139678500014,1202.0,346.86980000000005,162.0,404.0,9190.112289201474,4730.228436000001,76.65208133577201,349.7237,206.44444444444446,433.62967999999995,11332.78201206712,1351.0,366.129,193.0,368.0,8432.2468468896,5075.638533000002,93.87172867000002,373.4035,181.41666666666669,447.7212279999998,13867.225767487242,1822.0,620.6300000000003,307.0,486.0,15669.80594792013,6691.809401999999,130.21128933328197,626.9416000000002,286.41666666666663,769.5505920000003,19010.241152133498,2092.0,692.573,331.0,554.0,16806.672126902537,7607.582021000001,153.95203155079201,702.3642999999996,344.55555555555543,856.8646119999999,21865.459428990656,2062.0,820.261,334.0,474.0,21483.99256050328,7324.047157999998,159.34927978377206,829.6921000000001,383.30555555555554,1031.491488,21861.741648921878,1946.0,838.3280000000001,324.0,426.0,22090.64835254497,6803.732687000001,153.165143535168,844.7203999999998,403.75000000000006,1054.5585640000002,20851.9526310019,1740.0,734.6480000000003,296.0,339.0,19175.88191770338,6034.827543,146.01319957897996,742.9757999999998,360.4166666666665,923.7597079999997,19489.314117622842,1492.0,726.6270000000001,268.0,282.0,19808.45682346597,5022.187309999997,136.871525489772,733.8565000000003,328.63888888888886,921.941816,17856.608294290603,1314.0,651.27,243.0,296.0,18331.585849741063,4484.630135000001,122.29644673971498,658.5246000000002,273.0833333333333,833.7358200000001,15585.266379189841,429.42857142857144,8.078592857142855,1.5914432605381348,29.92857142857143,239.4285714285714,76.89026794483415,2035.5091628571427,12.473028485028856,7.5296839285714245,56.394841269841265,5.165215714285713,2756.2614665692827,27.653061224489804,0.08407155612245226,-0.5773430595371092,15.679846938775503,84.65306122448979,-23.816456974288464,125.23962116326499,-2.516916565379589,0.26534671556122713,-2.238201530612239,-0.17745656632653128,-214.02320211985742,51.34693877551021,-2.3843590561224413,-0.5758269308979499,1.3380102040816286,-0.3673469387755033,44.903472884606444,270.3062409795916,6.2270484320613,-1.9495096619897911,-1.4934452947845753,-1.644150219387756,1216.5190258067432,-47.9591836734694,1.194624617346944,0.6331138157642098,-4.718112244897964,22.326530612244905,-20.795742127969504,-243.19614063265334,-3.602969052273528,0.929866996173475,3.1342474489795995,0.9253442704081616,-747.3303800222733,21.795918367346964,0.36892066326530726,-0.34601591987163954,-5.721938775510206,5.510204081632638,-32.73451213882015,90.97828730612238,-4.314839380444908,0.5537848852040821,-4.89420351473922,-0.005393887755102523,-474.89271566566214,-32.122448979591866,-0.18445420918366928,0.017690383637716245,-11.827806122448983,-63.55102040816327,11.892907460826848,-144.71098924489797,2.486875910604078,-0.3819487563775473,12.500531462585043,0.07582611734693778,164.02465208845922,-121.91836734693878,-0.05434897959183485,0.36733227255828904,-9.16836734693878,-84.9183673469388,-17.67373216957463,-587.0556554081631,-3.1447430304123376,-0.3791744897959151,5.63704648526077,0.20876361224489767,-925.1923058572088,-136.97959183673467,-3.279923852040814,-0.5960386396159558,6.654336734693879,-53.26530612244896,7.6300476372552986,-635.8552636734696,0.29181799548564813,-3.1159509885204066,-30.827345521541943,-1.880005811224489,-274.8690984281494,47.428571428571445,1.161796428571423,0.21449127600079754,6.500000000000001,71.42857142857143,-0.48028834032780576,218.6017292857144,-0.2887926070081424,1.1304178571428531,5.722222222222218,0.7389414285714293,90.35043027495692,0.7327963246474526,0.6097813216613098,0.4647274313133265,0.3078575935784322,0.3001678678445207,0.16822054688167934,0.19441112148576958,0.08745887670522388,0.1256511990071033,0.04546754382109263,0.08241913684192984,0.024585241842766753,0.05524823528790357,0.013527396588177403,0.03657361923832064,0.007645165771528798,8.022822576042271,5.692475373357141,3.544413012426554,2.190454129374364,0.45986777610621765,-0.52790135158895,3.234301747341596,0.9777962897801188,6.022476482366815,0.9939628968402494,14.544847807996838,10.953234561432739,16.011458499334616,11.704677438864765,1.9920386258418366,0.7518096275712998,3.489643782556624,2.2400005184241576,7.008271817968316,1.3888483081131813,3.702565502043162,2.4360495009310736,20.896974152683992,14.702226137613755,0.2522548555500659,0.5333296793037338,0.7385512666942388,0.7988627622492697,0.8130142131485658,0.8554685658464537,1.6996965916934783,749.8605640813117,0.0,1.0,3.0,0.0,10.0,0.0,2.0,0.0,0.0,4.293825788757209,2.6073768462352014,1.3760473218921714,1.0141783485619857,0.9292696431662089,0.6745435269788818,342.4450294271408,2223.270278895104,71.25936631088297,39.70125498026972,77.37158304093089,,17.0,754.0,0.0,4.794537184071822,5.907179729351506,35.9636253619742,17.857719730893475,21.3293926238326,12.13273413692322,38.36081223920082,10.216698334856808,18.947451815200196,12.966666666666669,33.5,15.5,2.0,18.0,0.0,0.036904761904761836,-2.5,0.14615272938443696,0.04989495798319388,-0.09625777140124309,0.019499178981937537,0.1789243466299858,0.0,0.5827380952380953,0.86547619047619,0.4365853658536583,0.5328431372549014,0.8459770114942524,22.77534150216508,0.43711805428662664,0.6091180542866266,27.809309179658992,7.404756485989812,6.072339022096657,50.58465068182407,13.47709550808647,0.5350756533700142,0.21850899742930585,0.0,0.30077120822622105,0.38095238095238093,0.2613546513038102,-0.8098686708124596,-0.04874633643250987,-0.014461940550222496,-0.050616791925778726,0.7386453486961898,2.2888658141959315,0.05057305710389626,0.04087260382492734,0.05722164535489828,-5.387387028463744,0.8448599876270849,0.8248212101629215,1.3953297104926845,0.6931708746807352,0.5581637566469875,1.581839443915585,0.853464417123822,1.383444174376988,0.7908319882705175,0.6865362928836358,0.8804743599423728,1.157539028426666,0.9526565425849332,1.3728040190145612,1.5706288355559874,1.269345274709052,1.1746180154024064,0.7620555140708679,0.9412597062884438,0.7001582371461088,1.3261256110819777,0.8568492701025127,1.4030858602819887,0.7040495884473649,1.0216798818265609,0.9499602070345501,0.9759029581566575,1.315057695255195,1.0042067176107379,1.2646633202330564,1.0263083944527072,1.2441103264095055,0.9467403985249669,0.9658220326154004,0.9726330375024854,1.1666579334697855,0.9562777430214198,0.9707179933975129,1.079854008565195,1.0765682328215722,0.9762828162291172,1.1920655677238288,0.9590092862748825,1.154742279014273,0.9557129470739623,1.2280796874089255,1.0000896558266006,1.0660322460234448,1.0606687858850201,1.2134383112780163,1.2493347832938229,1.1298506143374878,1.2140789357376471,0.8920088578543695,1.0544696257217239,0.8784348724592478,1.2072128880456303,1.0149995895342974,1.2371530491353449,0.9288257149963903,1.1019973941006873,0.9762044545122043,0.8677840344330379,1.2634248210023866,1.1744107995226731,1.1335767318425065,1.104750224012455,1.1381286813420841,0.9931855025534255,1.207005183595445,0.9643727436635893,1.1550215901654333,1.1251738946349723,1.1461238789415635,0.9773331799014794,0.7441961379908874,1.0394065957908443,0.9415049389818689,1.122497845485299,0.9573678477514997,1.151702332756461,1.8047803795261843,1.113443068884288,1.0211330658388351,0.8868201097804391,0.6943154107460368,0.6228397579044039,0.6891408114558473,0.6799112470167065,0.9570807448055451,0.8924911872076187,0.9937698961210345,0.7121421573614716,0.853841958976885,0.6580432196027769,0.9871704400167297,6.0,0.12386491174369962,3.1111111111111125,1.5,1.6666666666666672,1.1875,0.40571428571428575,0.2986111111111111,0.3199798437893676,0.16250000000000003,5108.90094789089,5843.861519425247,2687.4920264424068,2406.7829472415333,18.65309297385902,0.44311599187316175,10.387609179245176,0.7957060813501324,1.0,0.38095238095238093,1.5135291333003953,3.1999780758224023,4.431307600165432,4.793176573495618,4.878085278891395,5.132811395078722,0.2068965517241379,0.00619324558718498,0.08187134502923979,0.03658536585365854,0.04385964912280702,0.033928571428571426,0.013087557603686637,0.011485042735042736,0.013912167121276853,0.007065217391304348,0.4548847135969103,24.271105826397147,12.6398891966759,7.650520597555455,165.6983752270132,1.0,4.221518937546943,185.0924256012515,,145.323785750231,142.24428059633937,145.1377130013222,145.36665567770225,224.34337235364387,144.26368918757353,145.48451328526133,189.14307827933206,0.0632652823008953,0.01022413407903421,-0.35641499008855376,0.5147175815433569,0.34736004689528116,-0.30431191126268153,0.060447988676385435,-0.1982485759072887,0.034621839707755855,-0.03899177278593864,-0.03375334214036653,-0.07628754080502087,0.06903032423126255,-0.17039318745004783,-0.20888973834932018,0.025810102600693767,-0.0008857613857244625,0.33715130850427255,0.07666538202009505,0.28822166463081633,-0.14947375279163552,-0.01528854771672856,-0.18376776095364136,0.25480901243944626,-0.057377599540979214,0.07597264868261361,0.2043864782326037,-0.08099231459788495,0.047907862757548575,-0.13895192834015116,-0.06138258106449088,-0.14840555132859357,0.06344620005678006,0.0285532423508937,0.09203995669601113,-0.1393008456185646,0.021211308725831945,0.019084486902597585,-0.09086322559634434,-0.07989883517971007,0.009617782210665027,-0.1779171147510309,0.018678754917162983,-0.14456925674977267,0.030736016482823085,-0.03626818936314446,-0.0004364119857906536,-0.07200428183230113,-0.031029299425839704,-0.009471245794579825,0.00461105550831949,-0.16393529567753917,-0.11010342084327766,0.06416097040411034,-0.029490538927878045,0.08270589388638504,-0.02104178663387281,0.09194822659270474,0.006089541766552551,0.024685559228104663,-0.13249057440674208,-0.0031395142187950675,0.1077146332794191,-0.1429594272076373,-0.16551312649164682,-0.10726639273844474,-0.13459006270087223,-0.11765761212581424,-0.023500069447359308,0.04664649520927886,0.018861365030345367,-0.15664566465729313,-0.1476276097941857,-0.18790169448294053,-0.17333485923211067,0.1029014378981834,-0.1029606106629322,0.04592599051611085,-0.14457322393854044,0.010827864502644936,-0.19152105628345029,-0.2529877008580235,-0.16845091904177073,-0.046153874104483385,0.055222887558216915,0.07190586585535108,0.06738891712930717,0.10859188544152745,0.14916467780429596,-0.0031232063118338625,0.053697063436175856,-0.011576683535789837,0.07506409750172094,0.050733560848608486,0.0715305487172297,0.016390032544230295,9.055982532610997,15.2080931257221,5.999656489171193,14.26125505904656,29.5685184404819,36.297654597942476,37.93528492564738,38.95512338615605,39.211887311272875,55.7587940418012,42.241829447341225,4.009715454128355,9.507249140331623,0.0,13.516964594459978,11800.773755917584,10899.66311576987,1207.4051273712448,64.0,38.0,47.0,56.0,68.0,68.0,66.0,61.0,64.0,388.19982199600076,29.0,4.90527477843843,5.720311776607412,6.566672429803241,7.404279118037268,8.256607344626158,9.103089181229207,9.958969561995133,10.810717357919769,11.669219560326033,0.619047619047619,0.9838571428571429,1.1329011057812466,0.5775420150576257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6410415312232678,0.9693977591036417,1.0073093330558733,0.6013484269140184,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,3.0,1.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,29.164150150057004,12.356393797796823,11.49902366656781,5.749511833283905,5.907179729351506,4.794537184071822,0.0,0.0,0.0,12.13273413692322,43.92426373089782,18.652964303522147,21.3293926238326,187.51591377251583,-581.0620284947546,-34.974368252505286,-10.376107651692047,-36.31637678092216,529.9609431996566,1642.2082504003495,36.28499805837769,29.325147328577668,41.05520626000873,0.47058823529411764,0.8655079226196191,0.15899679381169698,61.43024842917432,0.08110617470677108,108.35062669738734,0.13449207738038085,9.0,0.3448275862068966,0.2606228056686669,0.551021612897842,0.7630509344855706,0.8253631193247868,0.8399840106833079,0.8838466847588705,2.5828000000000007,,1.5357142857142858,1.799906933457422,1.3161701003068016,1.5313282524578438,-6.447834958059396,1.6159730722154224,1.5229999873188609,-2.633621646776986,107.75920000000006,23.741988999272017,0.0,10.216698334856808,0.0,6.544756405912575,48.576374959612465,47.52510539416365,0.0,22.99804733313562,4.07753744390572,0.0,5.351858133476067,0.0,6.821107472256465,0.0,8.382747094863314,0.0,9.996932357245992,34.666666666666664,10.907583361270229,0.0,0.0,0.0,0.0,0.0,3.5317602116115765,0.0,55.096000000000004,0.0,12.533654708217437,0.0,0.0,0.0,0.0,0.0,-0.230960577004498,63.4424619237498,24.264240419206526,0.0,22.99804733313562,59.383464419814445,6.544756405912575,0.0,15.921440167465814,36.39820241076966,0.0,0.0,0.0,32.34235284322704,35.898325748503,35.35238368129657,370.18485120250307,,290.53787762291097,284.3599964117175,290.1814138526224,290.6239307659432,450.98954290659475,288.4119517271317,290.86024085714274,379.22673571822725,35.35238368129657,370.1848512025031,,289.1118572147477,282.6886542592214,288.95925590233765,289.20198310294677,455.13457966534736,286.9114053029316,289.44602658320383,380.91977820544105,4.788882366304675,286.5520560406082,,226.97208390947205,222.38777883225842,225.4745792046793,227.0322167561529,338.7437500052273,225.33813118164113,227.216990811494,290.17088632749955,1.2625851314748775,13.220887542946539,,10.37635277224682,10.155714157561338,10.363621923307944,10.379426098783686,16.10676938952124,10.30042684739756,10.387865744897955,13.543811989936687,2.3944411831523373,185.0924256012515,,145.323785750231,142.24428059633937,145.1377130013222,145.36665567770225,224.34337235364387,144.26368918757353,145.48451328526133,189.14307827933206,54.28627450980393,0.0,8.558088975514524,0.0,0.0,0.0,0.0,56.4093226511289,1.8792501920648168,2.894565404482883,21.530166781559707,0.0,0.0,2.0625576089499926,0.0,0.0,0.0,33.675511907185026,620.9819040056386,84.75763146482214,179.19877224605455,248.1532256092642,268.41788811575464,273.1727756179181,287.43743812440846,589.0,131.39514110898264,96.49495296653387,62.630182501747555,69.26,69.26,0.8888888888888888,7.827714274542716,5.857980995127572,3.87801959494337,5.201561289142319,,5.199404316717998,5.201027523632999,5.19679148226568,5.199374422492274,5.1578595520678165,5.199842468003521,5.199332349736045,5.176417774150336,0.13850069981940608,0.1857700460407971,,0.18569301131135707,0.18575098298689283,0.18559969579520286,0.18569194366043834,0.18420926971670773,0.1857086595715543,0.18569044106200158,0.184872063362512,2.38494402683655,2.6785782456151406,,2.6781634817293667,2.6784756239467473,2.677660829690515,2.6781577321646393,2.670141095124151,2.6782477476949413,2.678149640243759,2.6737326848301426,304.2400000000008,1280.1777732707333,165.82850533200516,,165.53506806987465,165.33302582959942,166.0247071930317,165.53930421123147,171.03709954435558,165.48860905618048,165.5431996085431,168.54308150486798,45.720634759669046,5.922446619000184,,5.9119667167812375,5.904750922485694,5.92945382832256,5.912118007543981,6.108467840869842,5.91030746629216,5.912257128876539,6.019395768030999,8.184373649818902,6.140573571112039,,6.138802481213283,6.13758119533463,6.141756032974588,6.138828071483697,6.171499906551922,6.138521782174455,6.138851602762257,6.15681081088064,21.530166781559707,14.59621231716743,2.894565404482883,1.4017501605983962,1.8990494740086823,10.907583361270229,0.0,1.8792501920648168,8.558088975514524,372.7486740719614,134.5383284457696,-416.89855791029146,-25.093299808394825,-7.444617105540919,-26.056159869393216,380.23471184489773,1178.2464139910132,26.03364636216621,21.040114535553805,29.456160349775327,2489.0,41.0,1.6882816048111966,0.80536681410563,0.0,0.0,0.2539338936857123,0.0410666066522287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1388888888888889,0.048611111111111105,0.26777727535049506,0.06691427014428061,20.518297090128673,17.073877006516675,13.47709550808647,8.927870213774533,11.406378978091787,6.392380781503815,9.137322709831171,4.110567205145522,7.036467144397785,2.5461824539811873,5.604501305251229,1.671796445308139,3.7568799995774427,0.9198629679960634,2.4138588697291623,0.5045809409209007,3.606587141109856,1.2347637675978522,5.15770321560794,1.3489483468738936,7.528583670262105,1.5468839518833488,95.7121522561336,53.12395677111799,33.71900670160437,29.329761454414943,27.1248185587876,25.345760912470546,134.0,152.0,59.95020399999998,38.18179600000002,0.26785714285714285,85.07,10.38888888888889,6.583333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,56.0,0.0,1.0,57.0,12.0,1.0,7.0,50.0,13.0,29.0,44.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,6.0,1.0,0.0,28.0,7.0,0.0,2.0,5.0,0.0,2.0,10.0,0.0,0.0,0.0,0.0,2.0,3.6109179126442243,6.198605740944686,4.127134385045092,4.639571612705423,5.111987788356544,5.62175863917761,5.726236811818271,5.842638209447822,5.766365960957969,5.946401802471067 +2375,CC(O)(CS(=O)(=O)c1ccc(F)cc1)C(=O)Nc1ccc(C#N)c(C(F)(F)F)c1,0,37.116279069767444,7.4721720930232545,3.86046511627907,13.545219638242894,171.09247565929272,151.13590866509495,1.6527579690206042,7.456758139534883,12.922016062143106,8.752134162790696,249.2004969143486,36.02272727272727,6.761568181818183,4.5227272727272725,9.522727272727273,147.12921358259655,141.4959966668364,2.006593454681819,6.918702272727273,4.023849607182941,8.170816181818179,298.49073773012526,32.391891891891895,7.108391891891891,3.9594594594594597,10.319819819819822,156.2044267658939,127.48533734628809,1.7352641464783236,7.191390540540541,7.426082332332336,8.443216351351346,261.82430270684625,27.11,6.897889999999998,3.29,6.9366666666666665,158.41769930680107,102.57328517532797,1.5177126051654697,6.978569000000002,5.357577160493827,8.36786574,222.66315047571007,23.92105263157895,6.969173684210529,2.7017543859649122,6.722222222222222,167.9827843753326,89.21375727614034,1.246228177619158,7.008435087719299,5.988249945852287,8.48302250877193,187.62085636028297,24.45,7.173869999999999,2.72,7.453333333333334,170.4809769219442,92.82257325108796,1.2032568931488603,7.1788549999999995,7.496512345679013,8.621302300000002,186.96341305655864,22.75581395348837,6.922150000000001,2.8488372093023258,6.488372093023256,163.13593771348778,84.60656741265119,1.3436928904348375,6.9692616279069775,5.9395725667527985,8.372251488372092,198.48729917715707,20.698924731182796,6.600677419354839,2.5806451612903225,6.308243727598567,165.6906708870053,77.34705404927314,1.2245716603116128,6.644936559139783,5.628468073808575,8.124096559139783,174.8711772118012,24.075,6.9526375,2.75,6.716666666666667,167.9969027370839,92.59518116086001,1.2202081189197997,6.975667500000002,7.170380015432102,8.4066151,184.07247160496075,10.939967550027042,0.3469971876690101,0.024400108382045562,0.8988642509464577,5.670452496845141,3.5072809341629254,50.96205977676374,0.304399425519034,0.29926673877771764,5.853333578154803,0.2098365267712276,43.86123596920481,1.2688062343281368,-0.020322029106642405,-0.013532158310132507,0.0530384974679188,0.6453215224172499,0.02968740800293909,5.329308787680258,0.009591862983386696,-0.01499025886228426,-0.6780314432542609,-0.0051156049953291855,2.952424562978135,0.6297998918334232,0.10971104614620023,0.0016370358910690096,-0.1487071170683934,1.0792856133580853,0.6890094193523293,3.615172510163742,-0.000844868105067983,0.09288797523862426,1.6310775933526223,0.059128667131977806,-0.5650059630026008,-1.7136884802596,-0.041755978366684696,0.0013921038591370922,-0.08142239048134124,-0.7255687759149089,-0.4833399494093334,-8.02954705056158,-0.039296683635660794,-0.037670203893996744,-0.6284467468790825,-0.027267459561925368,-9.060028251971248,-1.648861878872411,-0.05389033332384503,-0.004572857726902783,-0.027791219530708875,0.09828135328405739,-0.5529180196030169,-7.196739624230694,-0.03929023605928459,-0.04393071266592659,-0.6855116028293708,-0.03816559347869402,0.3725356675135179,0.48677663601946997,0.006799463493780407,0.005896801884674428,0.002531097890751754,-0.2743801454239528,0.3509530607436715,2.5743901946930117,0.015485920603502188,0.0055728193618172096,-0.07242240643183091,0.0012949520659816139,2.8758949382707355,-1.6357490535424553,-0.03045140616549485,-0.00255991311830517,0.02731206057328285,-0.4945015323598343,-0.10328659842395163,-8.111086239279915,-0.027187307511297998,-0.030508626284478067,-0.4289399425114676,-0.016909164954029204,-10.80295623596259,1.4888896642765346,0.046969504003907904,-0.0023612974474544702,-0.046151072651883895,1.6104232776540384,-0.1619816580591504,7.411010228421453,-0.0019419358039408044,0.04451848252760863,0.6959445378419605,0.02266130043557399,3.9638304806084794,2.2861952406706334,0.06497618442401291,0.00461828959278674,-0.0535154137371552,0.3148834204675198,-0.4581760454268477,11.318655874535764,0.0034149517013653393,0.06149285424553811,0.9908003301936835,0.03311734212412114,4.832711517597538,,,0.4520525451559935,1.3189655172413792,0.7068965517241379,0.034482758620689655,0.6120689655172413,0.09482758620689655,0.8075634788969296,0.03983481135863737,0.04576584584139599,1.267557004457971,0.2599553914881932,0.19725164413155208,2.0751204833549006,0.45720703561974524,1.95797401026352,1.2765114486538025,0.12955824019443413,0.23971385803239414,0.23566219052385093,0.6814625616097174,10.00141955367443,1596.0,321.30339999999995,166.0,582.4444444444445,7356.976453349586,6498.844072599082,71.06859266788598,320.64059999999995,555.6466906721536,376.34176899999994,10715.62136731699,1585.0,297.50900000000007,199.0,419.0,6473.685397634248,6225.823853340801,88.29011200600003,304.4229,177.0493827160494,359.51591199999984,13133.592460125512,2397.0,526.021,293.0,763.6666666666667,11559.12758067615,9433.914963625319,128.40954683939594,532.1629,549.5300925925928,624.7980099999996,19374.998400306624,2711.0,689.7889999999998,329.0,693.6666666666666,15841.769930680106,10257.328517532796,151.77126051654696,697.8569000000002,535.7577160493827,836.7865739999999,22266.315047571006,2727.0,794.4858000000003,308.0,766.3333333333334,19150.037418787917,10170.36832948,142.070012248584,798.9616000000001,682.6604938271607,967.0645659999999,21388.77762507226,2445.0,717.387,272.0,745.3333333333334,17048.09769219442,9282.257325108796,120.32568931488602,717.8855,749.6512345679013,862.1302300000002,18696.341305655864,1957.0,595.3049000000001,245.0,558.0,14029.690643359949,7276.1647974880025,115.55758857739602,599.3565000000001,510.80324074074065,720.0136279999999,17069.907729235507,1925.0,613.863,240.0,586.6666666666667,15409.232392491493,7193.276026582403,113.88516440897999,617.9790999999998,523.4475308641975,755.5409799999998,16263.019480697512,1926.0,556.211,220.0,537.3333333333334,13439.752218966712,7407.614492868801,97.61664951358398,558.0534000000001,573.6304012345681,672.5292079999999,14725.797728396861,470.4186046511628,14.920879069767436,1.0492046604279592,38.65116279069768,243.82945736434107,150.8130801690058,2191.368570400841,13.089175297318462,12.868469767441859,251.69334386065654,9.022970651162787,1886.033146675807,55.82747431043802,-0.8941692806922659,-0.5954149656458303,2.333693888588427,28.394146986358997,1.30624595212932,234.48958665793137,0.4220419712690146,-0.6595713899405075,-29.83338350318748,-0.22508661979448416,129.90668077103794,46.605191995673316,8.118617414818816,0.12114065593910671,-11.004326663061113,79.86713538849831,50.98669703207237,267.5227657521169,-0.06252023977503074,6.873710167658195,120.69974190809405,4.375521367766358,-41.810441262192455,-171.36884802596,-4.175597836668469,0.1392103859137092,-8.142239048134124,-72.55687759149089,-48.33399494093334,-802.9547050561581,-3.9296683635660794,-3.7670203893996743,-62.84467468790825,-2.726745956192537,-906.0028251971248,-187.97025419145484,-6.143497998918334,-0.5213057808669173,-3.1681990265008118,11.204074274382542,-63.03265423474393,-820.4283171622991,-4.4790869107584435,-5.008101243915631,-78.14832272254827,-4.350877656571118,42.46906609654104,48.677663601946996,0.6799463493780407,0.5896801884674427,0.2531097890751754,-27.43801454239528,35.09530607436715,257.4390194693012,1.5485920603502188,0.557281936181721,-7.2422406431830915,0.12949520659816138,287.58949382707357,-140.67441860465115,-2.618820930232557,-0.2201525281742446,2.3488372093023253,-42.52713178294575,-8.88264746445984,-697.5534165780728,-2.3381084459716277,-2.6237418604651137,-36.88883505598621,-1.4541881860465116,-929.0542362927828,138.46673877771772,4.368163872363435,-0.21960066261326572,-4.292049756625202,149.76936482182558,-15.064294199500988,689.2239512431952,-0.1806000297664948,4.140218875067602,64.72284201930233,2.107500940508381,368.6362346965886,182.89561925365066,5.198094753921033,0.3694631674229392,-4.281233098972416,25.190673637401588,-36.65408363414782,905.4924699628612,0.27319613610922716,4.919428339643049,79.26402641549468,2.6493873699296913,386.61692140780303,0.7598334285173528,0.5380804652184115,0.44196680109908715,0.31828729978607856,0.3058132380751583,0.18044532068217742,0.18475402597281315,0.10884594450170859,0.11805076012857103,0.06300207304884102,0.07637772966821062,0.03314498666475833,0.04966339402886641,0.019620012515066686,0.029847366077172265,0.010344889143479646,16.013012702615093,5.686005210745769,4.124793765646797,2.1839140470090594,0.5068743078914996,-0.3975298393783878,4.045698234622468,0.9112995077031312,7.014439031332386,0.639876455012372,17.431207207931436,10.311700566013931,32.06648922442005,11.698522960927813,2.956945586091105,0.5268595159557794,4.007406505490973,2.233196158374114,8.00793954046529,0.2951714394659181,4.030859505214784,2.428707147966033,24.443291381298124,13.301651585107257,0.34983226698252456,0.706608891056383,0.8051864794672159,0.8842355767431315,0.8842355767431315,0.8842355767431315,1.9645385832787465,1072.520449591737,1.0,1.0,3.0,0.0,10.0,0.0,2.0,1.0,0.0,3.4037585798783274,1.3411045787303895,0.7711920804355854,0.31418081405411513,0.31418081405411513,0.31418081405411513,-189.57088729516894,1592.393080496755,84.30630546435717,37.03239722085476,79.88487387552719,,15.0,681.0,50.218759625382845,35.88052175394075,10.582869750201336,6.06636706846161,43.321939610460284,6.069221312792274,0.0,5.316788604006331,0.0,5.261891554738487,13.109523809523813,38.25,20.5,1.0,17.75,0.0,0.04794745484400646,2.75,0.33307536968275686,0.10244639081848439,-0.23062897886427247,0.04491763334922394,0.2602337234217897,0.0,0.7695459579180506,0.9962233169129717,0.4364705882352937,0.6670995670995662,0.9513056835637478,23.419340888010957,1.1552095294004836,1.3272095294004835,36.75915312928116,7.538706353157602,5.72029767981501,60.17849401729212,13.259004032972612,0.4537662765782103,0.2575372321104249,0.13984743915728295,0.22884126407555389,0.2222222222222222,0.6535642024099279,-1.6861137874081875,-0.11092349127459238,-0.03921194854437644,-0.09367298818934373,0.346435797590072,0.8937609688757021,0.025663204514869024,0.020785138811062844,0.035750438755028084,-5.192578966440775,0.771073399608104,0.6076232294947507,1.6074441866040654,1.2842139809648834,0.4850011849916473,0.9003670974385588,0.7416820850947836,1.1503643811229247,0.5814852220372058,0.7093316072911169,0.6017688661640597,0.8753084791288201,0.8337025477128305,0.4638887793416222,0.7929276421224216,1.4243828666211336,0.5783099816291144,0.7935898512188153,0.8014862479823172,1.08976591790373,0.45578845861219836,0.5187583879189689,0.5156268108310333,0.9552094235001649,1.1468296420802848,0.8664283745985413,1.04158894184937,1.1301083032490973,0.9446083169072297,0.9339188758846878,1.1216638006864965,1.1865584508793536,0.871590577799496,0.8983422687272302,0.910499261010151,1.1754517137945193,1.3451065745241093,1.0588937985431797,1.2812513569945119,0.9865570967129013,0.9899427066426161,0.9676837180849499,1.3093261659174296,1.210815188266003,1.0602826937507766,1.0689273140847895,1.0972981875796457,1.0118501507416664,0.8999644057741744,0.9200399611719366,0.8291270778898011,0.9888447653429602,1.0754237934761872,0.6765639505634051,0.8966376442388092,0.8058781015199448,0.931707982120351,1.0418280604860846,0.9625550393296193,0.8931914295291525,0.9769131896381253,0.9533986868408837,1.1108292362506,0.8528880866425991,0.9823233928912063,0.8720687820480039,0.9958096211639585,0.964681648825179,0.9720576270610588,0.9225731538935006,0.9711274664046217,1.2249836667043859,0.9182624531948688,0.6488950031493451,1.019071568078136,0.9814836380575287,0.6857134261946615,0.7345953801751833,0.9061019343551234,0.9574989408314308,0.6590384313206628,0.6644361148510807,0.680871705879164,1.019912561979623,0.8057717025904686,0.7468722987360618,0.906798783941509,1.0866425992779782,0.9707092102753228,0.9598836231355198,0.7968151518761905,0.9234960831936545,0.7424390912564006,0.7639491353783707,0.7812673298002528,0.9363776072505395,11.0,0.21467197224772983,5.111111111111113,3.1875,2.493333333333334,1.472222222222222,0.7763265306122449,0.8072916666666667,0.292013101536911,0.28250000000000003,6818.04343310825,7296.704315009418,3082.2724623095673,2932.229381761285,15.606497914432671,0.48364757711089973,8.058453010931,0.9366617753138252,1.0,0.23529411764705882,2.0225061748237705,4.085160175971708,4.6550726742665125,5.112083940647983,5.112083940647983,5.112083940647983,0.3666666666666668,0.008944665510322075,0.11111111111111113,0.06781914893617019,0.054202898550724646,0.03505291005291005,0.022833133253301316,0.02446338383838384,0.008848881864754878,0.011770833333333335,0.7117136331176783,25.26222222222222,9.646502835538753,6.738341046635814,162.86388772274876,1.0,4.275977650297591,169.4096974583578,,121.974506646537,136.6867123017064,137.98354225311306,121.66374509256381,173.42215981586028,136.84199300674732,136.3538190595104,157.84401557989392,0.11597897603681653,-0.05856540003438575,-0.5545941886098316,0.0590061262443934,0.11380423745305798,0.008464508136136665,0.10457404608496942,0.03151077886244867,-0.0500899596243416,-0.11583680208911015,-0.02437900147340138,0.06731284465059413,0.05756871663041326,0.316172724289772,0.06709133686773279,-0.16543890460857963,0.19033500659049085,0.19645116324756962,0.07093850849042974,-0.0027755246371683894,0.3103852289699906,0.27865789153721887,0.28178443496847577,-0.012881669896381719,-0.15664474985169075,-0.12033520688506108,0.057053183426080595,-0.09058363417569189,-0.12795606282189864,-0.13781044589309213,-0.15755931149044078,-0.1290957877750777,-0.1258750105269017,-0.10736561285768942,-0.12994620136680718,-0.20656117074157093,-0.15071908315380106,-0.15530481294634974,-0.18741136946209833,-0.03091814976671522,0.017332188804815487,-0.15764862581074662,-0.14121759708605935,-0.12907460647236926,-0.14679450461267737,-0.11711473362594015,-0.18188250666340716,0.008493505923432641,0.044495254103223254,0.019595154472163055,0.2416711349123964,0.002815884476534291,-0.048387698437930504,0.10006414294480595,0.050515819140159846,0.05087368537932361,0.018621579479824714,-0.012372847961735552,0.006171242375706226,0.06556803233474577,-0.1495204666798497,-0.08775692497698714,-0.10491400604551583,0.030385078219013227,-0.08720671456730467,-0.029449194507882442,-0.15915930939232137,-0.08931458219719268,-0.101944594341099,-0.07328130829794362,-0.08058256212210503,-0.24629849107643473,0.13609635106027843,0.13535989821540184,-0.09677405569198184,-0.05134376253509826,0.28400260447469167,-0.04618439785685722,0.14542210932770264,-0.006379564615240628,0.14875853798331737,0.11889712563782315,0.10799502252665605,0.09037206528770653,0.20897641882539061,0.18725276956997036,0.1892733229080669,-0.059536702767749666,0.0555305631504207,-0.1306356844597051,0.22209965460808415,0.011218653568555448,0.20547841199022235,0.16927111994632332,0.1578244866787517,0.11018183621160625,7.557037685215838,13.892124341496917,3.2243230258432782,24.932594435861215,45.24357796250523,50.84654472478171,51.30721208129423,51.30721208129423,51.30721208129423,56.78124629764208,37.018832010960274,3.7571889656385897,6.95170188293943,6.834203525191677,19.762414286681803,10116.168954500887,9639.50109412652,1373.4734235562646,57.0,46.0,53.0,63.0,74.0,69.0,70.0,71.0,64.0,430.0610408080004,30.0,5.030437921392435,5.860786223465865,6.774223886357614,7.6290038896529575,8.537583881063972,9.40137386937216,10.307317991967832,11.175478753702787,12.080004760086752,0.8527131782945736,1.0677209302325583,1.1496558747557017,0.83329353673861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6953224063500906,1.049156406748746,1.0643557648334154,0.6963067798294984,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,4.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,10.423315998847038,5.817220841045895,15.43830394740119,0.0,5.907179729351506,4.794537184071822,12.808212032003757,18.433136697762947,0.0,0.0,49.38830667892189,5.687386274683562,27.844461378450827,403.40373541118817,-1040.7311135779498,-68.4660367872394,-24.203049152975574,-57.81839519877499,213.83284811601922,551.6619669188052,15.840268677117763,12.829348067879192,22.066478676752208,0.4666666666666667,0.7205176280035055,0.14698576829271492,102.38442114198034,0.16173695764969376,1.460606190481294,0.2794823719964944,8.0,0.16666666666666666,0.3727253029943258,0.7528494020553894,0.8578779113630028,0.9420999843802564,0.9420999843802564,0.9420999843802564,2.8795800000000007,,3.2440476190476195,3.0505780935648072,2.470948193224874,3.3785772674619725,-12.934221434139978,2.8060659786078492,2.599861291259544,-4.263686954750321,93.86530000000003,35.88052175394075,5.261891554738487,0.0,0.0,23.59657000363556,11.06964221075312,59.40869330367115,0.0,6.069221312792274,4.110873864173311,0.0,5.501258210544727,0.0,7.065613363597717,0.0,8.704336438489406,0.0,10.382234100838373,36.666666666666664,6.025372906712974,0.0,0.0,0.0,0.0,0.0,-3.37708583200697,0.0,45.912000000000006,0.0,36.956623745572614,0.0,0.0,-4.214661062325655,0.0,0.0,-1.2768344251280765,49.435202614495175,5.316788604006331,23.24904646538284,0.0,30.785408526251626,20.808088837932797,17.148333708576654,18.050640183084614,47.360052954749044,0.0,0.0,0.0,35.83162207976023,29.898863473053897,33.856810664010034,338.8193949167156,,244.4146050989013,273.1630399073049,275.79667428600374,243.77488748239784,352.2605837969734,273.49046422186655,272.52833734031327,317.1582680407362,33.856810664010034,338.8193949167156,,241.61801232386034,270.32284650984803,273.4961363130012,240.86232087251676,359.84028143081684,270.87792003488676,270.1077768277612,319.95171811453815,4.865623092055592,256.18739443470713,,188.2071488777225,211.44827653319317,212.93120872221849,187.8737988150657,260.85116174973626,211.59162357244276,210.66071658887563,242.4740215235073,1.1674762297934493,11.683427410921228,,8.428089830996596,9.41941516921741,9.510230147793232,8.406030602841305,12.146916682654254,9.430705662822984,9.397528873803905,10.936492001404696,2.4328115460277955,169.4096974583578,,121.974506646537,136.6867123017064,137.98354225311306,121.66374509256381,173.42215981586028,136.84199300674732,136.3538190595104,157.84401557989392,45.113725490196074,0.0,0.8727421501007813,0.0,51.96356660695277,0.0,10.285908564814815,45.76729788783686,-1.0973483953766694,2.0063741391618377,0.0,0.0,0.0,0.0,-7.37524162861277,8.76926680646055,1.3779830903404726,29.94119153266843,444.7298390800111,86.96776551742214,175.66188756678346,200.16812499346003,219.81960944786326,219.81960944786326,219.81960944786326,626.0,135.7962111770624,172.50674444719627,64.76431597764353,115.63999999999999,107.25999999999999,0.875,7.891096998105902,5.906890595608519,4.869425857672903,5.3081481680636795,,5.3128071778845865,5.317181690152149,5.316949635249749,5.313660139621309,5.273804565717466,5.317213256153368,5.316571074589235,5.310140823110542,0.1679112364714794,0.18303959200219586,,0.1832002475132616,0.1833510927638672,0.18334309087068099,0.18322965998694168,0.18185532985232641,0.18335218124666786,0.1833300370548012,0.18310830424519112,2.6476867734352556,2.733953767176732,,2.734831091290804,2.7356541424847074,2.7356104990698697,2.7349916266245264,2.7274627680589716,2.735660079070922,2.7355392976924513,2.734329092254418,270.8900000000002,184.36930018108905,174.32507548575438,,172.80086335059204,172.20594913532815,172.4805474386592,172.6829625159438,178.32009337580507,172.26973267382687,172.39073208035614,174.14285657048367,6.357562075209967,6.011209499508772,,5.958650460365242,5.938136177080281,5.9476050840916965,5.95458491434289,6.148968737096727,5.940335609442306,5.944508002770902,6.004926088637368,6.281651549336598,6.225632543116787,,6.216850589591755,6.213401876213502,6.21499519863346,6.216168063635991,6.248290949711701,6.213772198663508,6.214474335542402,6.224586714131583,76.63921736919625,11.938107948298695,21.061549510437203,-4.863162904294964,-3.059610556030856,7.4033559970534455,-4.860871785768226,0.8727421501007813,-4.214661062325655,349.5768338429608,248.99554342731534,-642.3773169153199,-42.259742634203754,-14.939007370123717,-35.68762871751777,131.98545661702397,340.50594772286263,9.777193320417206,7.9187429702991325,13.620237908914508,2378.0,47.0,4.592757824308846,1.8056644296970856,0.6969234250586759,0.16472445633181368,1.2537399480482347,0.27867822877259796,0.3642507701111301,0.04409043986536041,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.2552457357369262,0.0806040958354854,22.035169427003233,15.604333491333932,13.259004032972614,9.548618993582357,14.067408951457283,8.30048475138016,9.791963376559098,5.768835058590556,7.437197888099975,3.9691306020769845,5.651951995447586,2.4527290131921164,3.426774187991782,1.3537808635396014,2.0893156254020586,0.7241422400435752,7.177045539249801,2.9650652085833844,10.094262905402843,3.8313632083099365,14.872586482997397,4.426821452738899,90.75187139584202,48.746767642877,35.5516976826276,33.45070399619352,33.45070399619352,33.45070399619352,152.0,175.0,49.931102,27.160897999999996,0.3953488372093023,88.11,13.354166666666668,6.111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,43.0,0.0,0.0,44.0,12.0,3.0,9.0,34.0,16.0,30.0,28.0,1.0,0.0,0.0,18.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,5.0,2.0,0.0,29.0,11.0,0.0,2.0,4.0,0.0,2.0,5.0,1.0,0.0,4.0,0.0,2.0,3.7376696182833684,5.814503596556124,4.356708826689592,4.799914262780603,5.2665686682334565,5.742201584560146,5.854355333135575,5.99730682273221,5.953730228722462,6.075274189427674 +454216,CCCCC(=O)OCC(=O)[C@]1(O)Cc2c(O)c3c(c(O)c2[C@@H](O[C@H]2C[C@H](NC(=O)C(F)(F)F)[C@H](O)[C@H](C)O2)C1)C(=O)c1c(OC)cccc1C3=O,0,27.402298850574713,6.963734482758626,3.6091954022988504,10.873563218390805,166.6760027321318,109.7489247407966,1.3946099261444134,6.964650574712647,8.768997445721583,8.39099071264368,219.61052585971797,27.197802197802197,6.694,4.417582417582418,8.923076923076923,147.1659567834704,104.42303488467694,1.743510635758242,6.818983516483513,3.7081807081807083,8.095786989010989,269.8661134932423,24.70731707317073,6.766121951219514,3.9451219512195124,8.262195121951219,155.66280880874695,94.64494190826166,1.4955878784608778,6.841118902439022,4.7411924119241196,8.192664731707318,229.8495323748978,22.22566371681416,6.721584070796459,3.504424778761062,7.101769911504425,158.57683633732404,83.45345589936989,1.3534544181620396,6.778984955752215,4.716445427728614,8.207836884955752,206.07203696443108,20.63953488372093,6.694406976744186,3.186046511627907,6.3565891472868215,159.62092386166802,76.16496609605582,1.2649281631357248,6.746466279069765,4.3796834625323,8.214710031007751,191.85978168861718,20.029090909090908,6.7078072727272735,3.061818181818182,6.1054545454545455,162.51623100266838,74.06326271377455,1.1947073778452726,6.744504000000001,4.8071212121212135,8.244490734545455,181.66117840655218,21.112781954887218,6.8976842105263145,3.161654135338346,6.2669172932330826,162.6224475806952,78.03794914372932,1.2326392076483834,6.929054887218045,5.176430659983293,8.393976255639096,188.94189724699345,20.395604395604394,6.885761904761903,3.051282051282051,5.941391941391942,162.68075164891698,74.69669941801025,1.2315230612828758,6.915942857142858,4.9530932030932036,8.382697553113557,185.96194653470647,18.465034965034967,6.594440559440558,2.958041958041958,5.031468531468532,162.38681634308045,67.02614896271328,1.1996521916855039,6.638062587412588,4.165743978243979,8.135649468531469,176.75033080049235,8.524772096710262,0.2711060113621349,0.03665329330699132,0.7929713304267407,5.375346809353942,2.0608209862254654,40.56262890838245,0.22767487997235622,0.2404650812524772,3.974407671643108,0.17505804201347594,45.74574631731998,-0.04668696345271901,-0.023472539087283414,-0.016575624867788102,0.2629842082874188,1.3830212593589528,-0.0035947644238645163,-0.11377796465407751,0.00745753987594753,-0.019331937384850544,-0.3801712886136192,-0.01705936574721353,2.470751243626184,1.0903106058408976,0.0433606342784593,-0.002261830780255223,0.05893503346448451,1.0497302862445983,0.4061302857779057,5.402816606835946,0.013748187786135577,0.03847512760650797,0.6514343446793562,0.022088532699167662,3.8959305066334182,0.5770995338461372,0.018644131044537736,0.0009602860618859797,0.03125814775452273,0.4608346574347859,0.2635578426711138,2.8256440510352263,0.01077854011782138,0.016508258183999258,0.33983567988663593,0.008821509202066653,2.7286140835712795,-0.1421203993031552,-0.012480830929095722,-0.0003440265275156995,-0.001382628653596205,0.12157914627289404,-0.052764081456918445,-0.7243219090202003,-0.012912625641767428,-0.010169398280009945,-0.26755381497970604,-0.00931138657375402,-1.3035327808019854,0.6089374121716572,0.0008450816368200507,0.0007993826040251568,-0.004674569716186826,0.06711923035347539,-0.01041598922553312,2.902975494596567,0.010386118424534348,0.0025618445573451503,0.1682783843188124,-6.728623500162689e-05,3.7603984514234114,-0.5015243221013297,-0.005210768945749122,-8.755617990430273e-05,-0.047098026477211646,-0.6642155328869139,0.011607162720824895,-2.493482182389131,-0.0030438209801936216,-0.005980775660912001,-0.17671420425816817,-0.0006671069171144514,-2.2331478512101577,-1.1831022722818203,-0.006262838443099932,0.0001852866498457388,-0.02142486922510703,-0.6968069584002994,0.08352266376601129,-5.68609879859685,-0.0072741310516606745,-0.009094334757592684,-0.3858219278849482,-0.0005301642820121032,-5.380714795786931,-0.33286630135619444,-0.013607337622082006,0.0004873296557427402,-0.058223319816661075,-0.4729675793885068,0.0060785342284028765,-1.7111027398540555,-0.002892841835469037,-0.012362963255531653,-0.3048679999482614,-0.00779032092996182,-1.0130290543996368,,,0.4429505135387488,1.0588235294117647,0.4117647058823529,0.029411764705882353,0.6470588235294118,-0.23529411764705882,1.3191815926250818,0.029165056460693835,0.03759642900971344,1.3258113549369035,0.20925727972133779,0.25989557680567615,2.644992947561985,0.46915285652701394,2.012663481584885,1.402656420054435,0.03934975915335421,0.4721294445482618,0.09852785782883362,0.6100070615304496,8.312803159448288,2384.0,605.8449000000004,314.0,946.0,14500.812237695465,9548.156452449304,121.33106357456397,605.9246000000003,762.9027777777777,730.016192,19106.115749795463,2475.0,609.154,402.0,812.0,13392.102067295806,9502.4961745056,158.659467854,620.5274999999997,337.44444444444446,736.7166159999999,24557.81632788505,4052.0,1109.6440000000002,647.0,1355.0,25528.700644634497,15521.770472954911,245.27641206758398,1121.9434999999996,777.5555555555557,1343.597016,37695.32330948324,5023.0,1519.0779999999997,792.0,1605.0,35838.365012235234,18860.481033257594,305.88069850462097,1532.0506000000005,1065.9166666666667,1854.971136,46572.280353961425,5325.0,1727.157,822.0,1640.0,41182.19835631035,19650.5612527824,326.351466089017,1740.5882999999994,1129.9583333333333,2119.395188,49499.82367566323,5508.0,1844.6470000000002,842.0,1679.0,44691.9635257338,20367.397246288,328.54452890744994,1854.7386000000004,1321.9583333333337,2267.234952,49956.82406180185,5616.0,1834.7839999999997,841.0,1667.0,43257.57105646492,20758.094472232,327.88202923447,1843.1285999999998,1376.9305555555559,2232.7976839999997,50258.544667700255,5568.0,1879.8129999999996,833.0,1622.0,44411.845200154334,20392.1989411168,336.2057957302251,1888.0524000000003,1352.1944444444446,2288.476432000001,50767.611403974865,5281.0,1886.0099999999998,846.0,1439.0,46442.62947412101,19169.478603336,343.1005268220541,1898.4859000000001,1191.402777777778,2326.795748,50550.59460894081,741.6551724137928,23.586222988505735,3.188836517708245,68.98850574712644,467.6551724137929,179.2914258016155,3528.9487150292734,19.80771455759499,20.920462068965517,345.7734674329504,15.230049655172406,3979.8799296068382,-4.24851367419743,-2.1360010569427907,-1.5083818629687173,23.931562954155112,125.85493460166471,-0.32712356257167097,-10.353794783521053,0.6786361287112253,-1.7592063020213995,-34.59558726383935,-1.5524022829964312,224.83836316998276,178.81093935790722,7.111144021667325,-0.3709402479618566,9.66534548817546,172.1557669441141,66.60536686757654,886.0619235210951,2.2547027969262348,6.3099209274673065,106.83523252741442,3.6225193626634966,638.9326030878806,130.424494649227,4.213573616065529,0.21702464998623142,7.064341392522136,104.14863258026162,59.564072443671726,638.5955555339611,2.435950066627632,3.7308663495838323,76.80286365437972,1.9936610796670635,616.6667828871092,-36.667063020214044,-3.2200543797066965,-0.08875884409905048,-0.3567181926278209,31.367419738406664,-13.613133015884959,-186.8750525272117,-3.3314574155759966,-2.623704756242566,-69.02888426476416,-2.402337736028537,-336.31145744691224,167.45778834720574,0.23239745012551394,0.2198302161069181,-1.285506671951377,18.45778834720573,-2.8643970370216083,798.3182610140559,2.856182566746946,0.7045072532699164,46.27655568767341,-0.018503714625447393,1034.109574141438,-133.4054696789537,-1.3860645395692666,-0.023289943854544526,-12.528075042938298,-176.6813317479191,3.0875052837394223,-663.2662605155089,-0.8096563807315034,-1.5908863258025923,-47.00597833267273,-0.17745043995244408,-594.017328421902,-322.98692033293696,-1.7097548949662815,0.05058325540788669,-5.848989298454219,-190.22829964328173,22.801687208121084,-1552.3049720169402,-1.9858377771033642,-2.4827533888228026,-105.32938631259086,-0.14473484898930417,-1468.935139249832,-95.19976218787161,-3.891698559915454,0.1393762815424237,-16.651869467565067,-135.26872770511295,1.7384607893232227,-489.3753835982599,-0.8273527649441446,-3.5358074910820525,-87.19224798520277,-2.2280317859690806,-289.7263095582961,0.7367893496549234,0.5424614124906888,0.4350326487795946,0.2923558222222168,0.2784922961514467,0.1509513739758534,0.1710293616728134,0.08077986354444294,0.10132717457088491,0.042534834108918305,0.06242391222054901,0.022018407880949983,0.03742337800234974,0.011488053250574056,0.022529729740195882,0.005957844603271048,9.014155741798232,5.668289749803528,4.124660951432953,2.166267304628567,0.5766975945754464,-0.5282584683652416,4.024921815078712,0.97719330696443,7.01413931803169,0.9877626413292393,17.430716292752024,10.92893887683767,19.005625581564946,11.680485943985982,2.0215435287702253,0.5268166074470388,4.007306717842909,2.21583161364416,8.00741877112165,1.157955535821338,4.030849181281955,2.4119084770029007,20.925083620003882,13.302760803645455,0.25595897755596064,0.6086138575924844,0.8281840043219375,0.8949451075499193,0.905281006972812,0.9087263067804432,1.4471506837434296,1776.49540958306,0.0,2.0,5.0,0.0,9.0,10.0,6.0,1.0,0.0,4.735076327499224,2.382012968973604,0.9169475575956021,0.4714890805592411,0.402523563317863,0.37953505757073547,204.7395084260247,5913.429436760991,136.18043525393796,67.97045329610333,154.3675035610441,,18.0,1499.0,120.14260938980618,57.57004064274639,34.4241394229979,12.841643245852019,0.0,32.232635946352985,5.316788604006331,6.923737199690624,0.0,18.947451815200196,22.59047619047619,54.0,21.0,1.5,33.0,0.0,0.05704948646125121,-12.0,0.25137383689107934,0.047522847522847744,-0.2038509893682316,0.05971555288782204,0.256791056283732,0.0,0.6920634920634913,0.9688141923436047,0.44068965517241193,0.6445406445406435,0.9090986394557826,67.27826122387917,1.4874178794953856,1.9174178794953856,67.61637910178207,10.672121265788228,13.254674417089483,134.89464032566124,23.92679568287771,0.45720894371626797,0.23714165261382797,0.04426644182124789,0.420531197301855,0.5,0.39666929222169955,-2.3676949276164003,-0.08949256594188407,-0.02721488422547587,-0.09865395531735001,0.6033307077783004,3.6012443728149752,0.04796620660792602,0.04139361348063189,0.05716260909230119,-5.870538091871442,0.70338662639202,0.7139472813610757,1.4455783585582906,0.9452124017268968,0.42841747546068465,1.0547875842142023,0.7024078338372842,1.1602057282363263,0.6941867032158108,0.7032198384392015,0.767701681215718,0.9744302339439822,0.7035187133998924,0.6477167658686072,0.9416052900259466,1.1363681618322348,0.6531678362425862,0.8593624779520607,0.7002306455352112,1.0435169918105323,0.6388771937015769,0.5413055017613436,0.7004973477956221,0.9243478479444347,0.8219596412777467,0.7439861967231783,0.9236962308035737,1.0673190057591422,0.799867015202551,0.7293658059402234,0.8137534132482589,0.9786670843680471,0.7444909504828947,0.6884408672498952,0.8003652636696941,0.9295656129987302,0.9391156778872981,0.89462819079948,1.0709907886486048,1.0412362545818061,0.8870495993707913,0.8302586086163325,0.9318295965549876,1.0588573160263537,0.8935581794692342,0.9216588755381644,0.9463711320493504,1.0119150438089017,0.9019334877508584,0.9170886523495817,1.1057298194709755,1.0743291630062706,0.9713061897547967,0.8144488762253121,0.8936712733116186,0.9289050440013287,0.9138079234090892,0.844217771328017,0.9571624544336316,0.8976787670554964,1.026392522593447,1.0576484721154293,1.128317448327768,1.1926907822705712,1.1248085927841285,0.9976930567956248,1.02593987115434,1.0171599848899993,1.055726548736657,1.1166358336715776,1.0661202154409564,1.0070232987605736,1.1018024811961955,1.0488390628167823,1.0721233806239279,1.082199706324998,1.1138180749595,0.9587029558809266,1.1000954142032593,1.033797696284482,1.0563948026775212,1.1564787143325175,1.0515345328991874,1.0754495591306175,0.997796559029589,0.9358319883941847,1.0070670423501646,1.1376172977305932,1.0165729418789444,0.8650451540016337,0.9970218377240061,1.0053419531206453,0.9418881332581068,0.9678396260064595,0.9485878572251195,1.0220733683606584,13.5,0.8836853382307925,7.77777777777778,5.625,5.626666666666668,3.5277777777777777,2.256326530612245,1.7361111111111112,1.3056185437137817,1.0587500000000003,13004.943521619283,14273.564702486654,4983.741763603875,4601.795321105261,19.639525571100524,0.4717495558883246,10.374588105076457,0.8930414752071536,0.0,0.5,1.7078671683495048,4.060930526875124,5.525995938253126,5.971454415289487,6.040419932530865,6.0634084382779925,0.24545454545454545,0.009501992884202075,0.09259259259259263,0.05625000000000001,0.055163398692810464,0.03392094017094017,0.021695447409733122,0.01718921892189219,0.013322638201161035,0.010914948453608247,0.5560057227814854,42.14876033057851,17.01388888888889,8.710775047258979,287.98492520111586,0.0,4.859366810802489,398.0929302652438,,337.5364705259166,332.43244511489803,343.02806586607437,337.36786410715,501.95169271703554,335.99867763033944,337.89979649305843,419.7142014393387,-0.005476623060777856,-0.08658066624693739,-0.45222743639863966,0.3316440307443307,0.2572896797937354,-0.0017443360912432152,-0.002804994836776094,0.03275521602055092,-0.08039394861057977,-0.09565482960545113,-0.09744976895091917,0.05401051338167201,0.12789909143279643,0.1599397743362449,-0.06170880093396129,0.07432177079184991,0.1952860575280285,0.1970720836465088,0.13319690444717278,0.06038517638750859,0.16000297176666106,0.16390727839201227,0.12617833745374174,0.0851648693106656,0.06769676975515179,0.06877062943334551,0.026199175442246356,0.03941901372109006,0.0857311488503145,0.12788973153550715,0.06966126523548118,0.04734180652310034,0.06865137382115931,0.08550599434258346,0.05039191059493042,0.05964738370741561,-0.01667146026789384,-0.04603671776360658,-0.009385964983672536,-0.001743604844896647,0.022617916682385473,-0.025603427861805438,-0.01785687783344131,-0.05671519687782531,-0.0422905405934284,-0.06731916730351252,-0.05319028172974327,-0.02849516918490954,0.07143151808206676,0.003117163033656296,0.02180929820766422,-0.005895004695404545,0.012486493008539927,-0.005054291127251531,0.07156773544321862,0.045618200944238595,0.010653707157819442,0.042340494036245256,-0.00038436528952178736,0.08220214455217384,-0.058831405275323385,-0.01922041093654962,-0.0023887670657851117,-0.05939436228024241,-0.12356700998921137,0.005632300330017605,-0.06147240081556552,-0.013369155967330236,-0.024871701245606066,-0.04446302917514011,-0.0038107756115717192,-0.04881651368675248,-0.13878403538065062,-0.02310106814538402,0.005055116010827787,-0.027018466372015177,-0.12963013980563015,0.04052883017218723,-0.14018072673346357,-0.03194964263314373,-0.037819772876062835,-0.09707658593700351,-0.0030285057225265394,-0.11762218848640178,-0.03904694431475167,-0.050191943563751354,0.013295658091650554,-0.07342424320098428,-0.08798829101881751,0.002949569258577926,-0.04218421699734674,-0.012706021128990073,-0.05141271735230078,-0.0767077826775184,-0.044501359893892346,-0.022144770518610815,7.257335269794607,31.428486052829104,38.90359098788887,17.669719121410512,42.33701667304611,50.235643696506976,51.19055089883089,52.20225204825618,52.22542446204929,102.64583756082915,71.53547742277618,2.0068377168210647,24.07860167196135,5.024920749270515,31.11036013805293,23433.795552917803,15784.23596658655,9079.082938864782,662.0,84.0,115.0,156.0,219.0,275.0,345.0,435.0,557.0,723.213874872001,55.0,5.631211781821365,6.517671272912275,7.448333860897476,8.36287583103188,9.301186055275759,10.229295989560153,11.174104472179522,12.110887957851382,13.060724116015212,0.7241379310344825,1.0348045977011493,1.139422999795539,0.6925176917327699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.646854897102347,1.0169033130493577,1.043825501670141,0.6407231763723271,3.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,3.0,0.0,3.0,0.0,4.0,7.0,1.0,4.0,0.0,5.0,0.0,2.0,0.0,0.0,44.69034999856935,28.953552698583707,18.68015364021307,11.566489892729878,0.0,23.97268592035911,0.0,13.171245143024459,0.0,25.477292959539852,19.410925891078243,42.37364096679502,42.04992562101309,392.9803523238079,-2345.6758692829458,-88.66030414713137,-26.9617916009534,-97.73649455345607,597.7198607498326,3567.7535674780447,47.52013110680657,41.00866169514993,56.63100900758801,0.5,0.7273139155993107,0.08491424173800914,131.8091146658304,0.07885365719598623,0.5991706915650279,0.27268608440068937,9.0,0.18181818181818182,0.2650756086018612,0.6302911905857368,0.8576818874499825,0.9268208574445783,0.937524896256313,0.941092909193558,2.4622,,4.392857142857143,5.070685174045784,3.537103582425188,4.48631962551762,-20.582621258181458,4.602445750785753,4.31119539595828,-7.146231838899885,165.16289999999972,76.51749245794659,0.0,5.316788604006331,0.0,94.79352018709254,13.716679505790452,51.579810155566804,0.0,17.248535499851716,4.709530201312334,0.0,6.102558594613569,0.0,7.693025748417888,0.0,9.383873422737057,0.0,11.134603622683905,62.999999999999986,4.1382753415154285,0.0,0.0,0.0,0.0,0.0,-4.090736029072346,0.0,90.02799999999999,0.0,64.94738468217413,0.0,0.0,0.0,0.0,0.0,-5.92091385532407,99.12980098221189,10.05365155780638,13.171245143024459,17.248535499851716,99.68615860395839,35.01502203654162,0.0,95.02533222008522,18.19910120538483,0.0,0.0,0.0,60.249039180750984,56.27637604790419,63.626115445880366,796.1858605304876,,674.9006721442702,664.6660398308138,685.91742178774,674.5597941113385,1010.7355935805758,671.8168671920206,675.6305265000009,841.3901135795518,63.62611544588035,796.1858605304876,,670.751646248116,659.8899161229506,682.5517648147886,670.3205171884688,1024.4860066922524,667.4719970372021,671.5590311595884,846.5746347175773,5.250208366251387,527.641542938886,,446.08511275632725,438.7178682331803,454.1927653494974,445.9182454835682,685.5379808540812,443.87729486015223,446.573915745498,566.1860410416582,1.2475708910956935,15.61148746138211,,13.233346512632748,13.032667447663016,13.449361211524312,13.226662629634088,19.818344972168152,13.17287974886315,13.247657382352958,16.497845364304936,2.6251041831256936,398.0929302652438,,337.5364705259166,332.43244511489803,343.02806586607437,337.36786410715,501.95169271703554,335.99867763033944,337.89979649305843,419.7142014393387,88.47058823529412,0.0,4.365473996951604,0.0,39.18094293473357,0.0,45.539663809776414,90.81281864530227,-1.8531703012829375,1.6846373053921495,21.95822331479693,0.0,-7.669881783630432,0.0,-7.779899416030444,0.0,0.0,55.742916344392455,720.5500511556609,148.58444364640692,353.3009558381358,480.76164662802194,519.5165341301854,525.5165341301853,527.5165341301854,2954.0,189.83629133754505,270.1501619179797,90.02359158976475,215.21999999999997,215.21999999999997,1.0,9.548103070236351,6.78135971352466,5.06124736513191,7.002056213565717,,6.9891908896524475,6.989696034400479,6.9919021097773735,6.98955603671452,6.964926340722861,6.989564422704338,6.9889737763748405,6.979937099141944,0.09924014441435118,0.13729521987383758,,0.13704295862063623,0.13705286341961723,0.13709611979955635,0.13705011836695136,0.13656718315142866,0.13705028279812428,0.1370387014975459,0.13686151174788125,3.2508535074980656,3.5754443904461404,,3.5736053367228573,3.5736776092508484,3.573993177667628,3.573657579898026,3.5701275712740896,3.57365877968593,3.5735742720898656,3.572280444879708,479.8900000000018,3864.0106499878443,432.255510047914,,432.4821285455681,432.1730473560843,432.310988098483,432.40002068409154,441.1979975869423,432.3536131887712,432.5401143821801,436.81510551089053,75.764914705644,8.475598236233608,,8.48004173618761,8.473981320707535,8.476686041146726,8.478431778119441,8.650941129155731,8.477521827230808,8.48117871337608,8.565002068840991,9.888701491266925,7.698257411576028,,7.698781543966543,7.69806662035014,7.698385748842772,7.698591673330881,7.718734288538454,7.698484342193903,7.698915611817799,7.708750545776602,61.1391662495305,64.94738468217413,47.22430111516856,-4.848417006395429,-7.655882808796434,2.5759449432367765,-12.343283819067455,2.2084204597579276,1.252366184391419,627.5090012235414,389.3257187809508,-2323.861583500311,-87.83578220973682,-26.711052683911625,-96.82756597917964,592.1611934032059,3534.57421949474,47.078204012800605,40.62728987924987,56.104352690392695,9714.0,100.0,5.484221512301561,1.8955748433206019,0.4330127018922193,0.06940043061639571,2.016322461456344,0.3807684547178573,0.30618621784789724,0.018892847572806355,0.0,0.0,0.0,0.0,0.0,0.0,0.2457835338060756,0.12346566799556521,0.8106515085010054,0.2893104968759171,37.57625683240109,27.665532037025127,23.926795682877703,16.079570222221925,23.393352876721522,12.679915413971685,19.66837659237354,9.289684307610939,15.807039233058047,6.635434120991255,13.670836776300233,4.822031325928046,10.291428950646178,3.159214643907865,7.772756760367579,2.0554563881285115,12.29824048681772,3.8501774396363535,18.397766019124077,5.386524082341674,31.40481936220625,7.602407190413082,174.68859725956483,66.44238104487941,38.57205911307078,34.422129112700766,32.17512320675429,32.072986574665805,278.0,338.0,93.98154799999999,51.30845200000006,0.28735632183908044,475.17,20.98611111111111,10.999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,12.0,12.0,87.0,0.0,0.0,91.0,12.0,5.0,11.0,80.0,17.0,55.0,74.0,0.0,0.0,0.0,34.0,0.0,3.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,13.0,5.0,1.0,51.0,17.0,0.0,1.0,13.0,0.0,5.0,10.0,0.0,0.0,3.0,0.0,2.0,4.204692619390966,8.458924970792026,4.77912349311153,5.3230099791384085,5.852920612659915,6.430525604644662,6.818514145204194,7.268397343481981,7.681560362559537,8.126361121273515 +4911,CCCN(CCC)S(=O)(=O)c1ccc(C(=O)O)cc1,0,27.57894736842105,6.252328947368421,2.8684210526315788,6.853801169590644,163.74044818028503,109.01711689473689,1.4972673997929216,6.30855,6.51153571944264,7.842891394736841,205.314878546703,30.42105263157895,6.288705263157894,3.526315789473684,4.526315789473684,145.25073347666708,115.83571050000003,1.8498354096315792,6.45516052631579,2.789554905782976,7.824151894736839,254.1038433960899,22.955223880597014,6.284791044776119,3.014925373134328,5.412935323383084,156.81370290273117,85.88397591044775,1.5136534719177608,6.378983582089552,4.107241569928135,7.826781373134327,201.37125792456843,20.183908045977013,6.060390804597701,2.7011494252873565,3.616858237547892,158.84839771937828,73.66805297701148,1.3860129545135402,6.163408045977011,3.181885908897404,7.702927218390803,178.60605357534996,18.16842105263158,6.396947368421051,2.4105263157894736,2.9894736842105263,163.84922957914594,63.848603410526316,1.2469922406661262,6.457873684210526,3.8716699155295644,8.050049578947368,165.23722261978767,15.511111111111111,6.241900000000001,2.2333333333333334,2.2074074074074077,159.45597910082628,52.23978387777777,1.2606191483798668,6.318411111111112,3.6127914951989024,7.890192777777779,163.06339934735558,12.189473684210526,5.839421052631581,1.9263157894736842,1.3508771929824563,162.6878305013071,40.85957307368421,1.0892384007165683,5.907788421052633,2.6373294346978557,7.511062273684211,134.7411630196709,11.45679012345679,5.807135802469136,1.7777777777777777,2.8518518518518516,164.06473170584692,38.8520564691358,1.0289624792070615,5.859822222222224,4.135688157293095,7.448448098765433,124.43393950187927,8.3125,5.53928125,1.75,1.0625,167.59552305674092,26.751897624999994,0.905231343009703,5.5925312499999995,2.203125,7.237146999999999,106.42322551314979,11.578947368421053,0.15792721606648197,0.019293643771237313,0.618421052631579,4.13419513696522,1.4324277600127755,52.62571234903048,0.29956370058067094,0.14639702216066475,2.988596978082526,0.10380665166204983,50.81480626703745,2.8421052631578947,-0.010337396121883712,-0.013807660397725826,0.25,0.40350877192982465,-0.2858105702281611,12.177045603878135,-0.026248190447368282,-0.002916897506925241,-0.5184310628341485,0.0065876945983379485,-0.2947688069468121,2.0597014925373136,0.05087859697358081,0.002566178086809211,0.026119402985074626,1.5442547190180225,0.1333809310699429,9.306958524496642,0.037004243120317214,0.04481982780005784,0.8517889941033296,0.03419327331831149,2.5835993633566594,0.41379310344827586,0.011136274556627503,0.0015532509049360353,-0.04885057471264368,0.8267512904058898,-0.1529322350757621,2.4876863769223454,-0.017417776250761442,0.013869644506001816,0.25615735829884756,-0.0018707263746935447,4.09574113818198,-2.294736842105263,-0.043330013850415586,-0.00019599359956449635,-0.09210526315789473,-0.7485380116959065,0.12149484415656595,-10.020543879224372,0.0014246727677763211,-0.03979098337950144,-0.5132751791624395,-0.03264633919667585,0.45615165718924827,-4.088888888888889,-0.04250379501385043,-0.0014383131758638485,-0.06666666666666667,-0.985397216237475,-0.1352809297721615,-18.51023535253924,-0.051632235696327765,-0.042708776546629745,-0.5653619178381782,-0.029012405755617084,-10.461220254591858,0.06315789473684211,-0.01850671745152348,-0.0036648376082104093,-0.02368421052631579,-0.6396429670667897,-0.0970822629193656,-0.1878709584487573,-0.016650385729839488,-0.016318490304709086,-0.4910108974651269,-0.005556635318559575,-4.294950987844483,1.3333333333333333,0.08903597431688391,0.006516974868022045,0.009259259259259259,1.46561715095623,-0.07318321129337295,5.833327277350289,-0.024890258189669782,0.07718611624089468,1.4564122292573207,0.061815942230087864,-3.985916183303678,2.0625,0.02045243031509708,-0.002556690682778056,-0.03125,0.14888234841489684,-0.03916654070722555,9.448073319555043,0.004610927392539013,0.022390477839335253,0.09521578814374035,0.010626635344529033,4.826256454764297,,,0.47719298245614034,1.131578947368421,0.5526315789473685,0.0,0.5789473684210527,-0.02631578947368421,0.8232004683686179,0.025532953490242753,0.030059269279716437,0.853437458600988,0.2075293669479171,0.26242260389726624,1.676637926969606,0.46995197084518336,1.939027213758324,1.3442914861113373,0.11338250547862301,0.36346054546606316,0.0,0.5947357276469868,7.502723133894751,1048.0,237.5885,109.0,260.44444444444446,6222.137030850831,4142.650442000002,56.89616119213102,239.72490000000002,247.4383573388203,298.02987299999995,7801.965384774714,1156.0,238.97079999999997,134.0,172.0,5519.527872113349,4401.756999000001,70.29374556600001,245.29610000000002,106.00308641975309,297.3177719999999,9655.946049051416,1538.0,421.08099999999996,202.0,362.66666666666663,10506.518094482988,5754.2263859999985,101.41478261848998,427.3919,275.18518518518505,524.3943519999999,13491.874280946084,1756.0,527.254,235.0,314.66666666666663,13819.81060158591,6409.120608999999,120.583127042678,536.2165,276.82407407407413,670.1546679999999,15538.726661055447,1726.0,607.7099999999998,229.0,284.0,15565.676810018864,6065.617324,118.464262863282,613.4979999999999,367.8086419753086,764.7547099999999,15697.53614887983,1396.0,561.7710000000001,201.0,198.66666666666669,14351.038119074366,4701.580548999999,113.45572335418801,568.657,325.1512345679012,710.1173500000001,14675.705941262002,1158.0,554.7450000000001,183.0,128.33333333333334,15455.343897624174,3881.659442,103.47764806807399,561.2399000000001,250.5462962962963,713.550916,12800.410486868734,928.0,470.37800000000004,144.0,231.0,13289.2432681736,3147.016574,83.34596081577199,474.6456000000001,334.9907407407407,603.3242960000001,10079.14909965222,532.0,354.514,112.0,68.0,10726.113475631419,1712.1214479999996,57.93480595262099,357.92199999999997,141.0,463.17740799999996,6811.086432841586,440.0,6.001234210526315,0.7331584633070178,23.5,157.09941520467834,54.432254880485466,1999.7770692631582,11.383420622065495,5.56308684210526,113.56668516713599,3.9446527631578934,1930.962638147423,108.0,-0.39282105263158107,-0.5246910951135814,9.5,15.333333333333336,-10.86080166867012,462.72773294736913,-0.9974312369999947,-0.11084210526315916,-19.700380387697642,0.25033239473684205,-11.20121466397886,138.0,3.4088659972299142,0.17193393181621713,1.75,103.46506617420751,8.936522381686174,623.5662211412749,2.4792842890612534,3.002928462603875,57.06986260492309,2.29094931232687,173.1011573448962,36.0,0.9688558864265927,0.13513282872943508,-4.25,71.92736226531241,-13.305104451591303,216.42871479224405,-1.5153465338162455,1.206659072022158,22.28569017199974,-0.1627531945983384,356.32947902183224,-218.0,-4.116351315789481,-0.018619391958627152,-8.75,-71.11111111111111,11.542010194873765,-951.9516685263153,0.1353439129387505,-3.780143421052637,-48.76114202043175,-3.101402223684206,43.33440743297859,-368.0,-3.825341551246539,-0.12944818582774636,-6.0,-88.68574946137275,-12.175283679494534,-1665.9211817285316,-4.646901212669499,-3.843789889196677,-50.882572605436046,-2.6111165180055376,-941.5098229132672,6.0,-1.7581381578947306,-0.3481595727799889,-2.25,-60.76608187134502,-9.222814977339732,-17.847741052631946,-1.5817866443347515,-1.550256578947363,-46.64603525918705,-0.5278803552631597,-408.02034384522585,108.0,7.211913919667597,0.5278749643097856,0.75,118.71498922745462,-5.9278401147632085,472.4995094653734,-2.0161109133632524,6.252075415512469,117.96939056984299,5.007091320637117,-322.8592108475979,132.0,1.3089555401662132,-0.16362820369779557,-2.0,9.528470298553398,-2.506658605262435,604.6766924515227,0.29509935312249685,1.4329905817174562,6.093810441199382,0.6801046620498581,308.880413104915,0.7613818592763625,0.6306181650151469,0.4699519708451834,0.40557169661239795,0.3058215943836263,0.23736732931406684,0.1904162125208142,0.14368525622534778,0.12709975073860158,0.09695843919194581,0.08338721282765287,0.06008007815159362,0.05077601459936544,0.03356484188520846,0.03528749331390138,0.016658653209625507,16.013122452749094,5.6943297538243085,3.581044218997525,2.184433055837175,0.46019358606139643,-0.3764754715435059,4.048463839056106,0.9706683990131473,6.022582192724816,0.6449118620192158,14.542691459385738,10.319768552846458,32.066543752749325,11.70567045587936,2.9545989693461494,0.7414795615194437,3.5370243165914887,2.2377081617166388,7.014576033104306,0.2975928441813397,3.768300947566569,2.4364565147162796,24.441830700681635,14.699975608411862,0.3017708897998724,0.5886398223174043,0.7322502699439346,0.7708122175046996,0.7708122175046996,0.7708122175046996,2.608674238208172,516.0791280132663,0.0,1.0,4.0,0.0,5.0,2.0,1.0,0.0,0.0,3.6004299760858505,2.0342886554949073,1.2502572369559726,1.0397309211664982,1.0397309211664982,1.0397309211664982,83.1767195841598,852.7663955652978,59.05306644098158,22.44122093592889,47.207563048496006,,10.0,285.0,15.992596441359433,13.212334168400758,10.45893496721477,13.08951281182515,12.841643245852019,28.570684265142674,0.0,13.847474399381248,0.0,5.106527394840706,9.066666666666666,21.5,10.5,0.0,11.0,0.0,0.02280701754385966,-0.5,0.16491228070175423,0.04066985645933008,-0.12424242424242415,0.029824561403508643,0.18171037181996064,0.0,0.5982456140350879,0.8964912280701751,0.4333333333333337,0.5575757575757578,0.8666666666666665,15.64080889900374,0.48512611631461233,0.5711261163146123,16.21531171341877,3.9430579720104246,4.986029474048059,31.85612061242251,8.929087446058483,0.5322896281800393,0.25735294117647056,0.09191176470588236,0.20955882352941177,0.46153846153846156,0.415949673766431,-0.7168668156369838,-0.0792496152133635,-0.018864916200973258,-0.055143601202844915,0.5840503262335689,1.0065792184607067,0.04009698860250422,0.026488926801597548,0.04026316873842827,-2.8163592396355117,0.9050837320574163,0.6982719344134913,1.7016863058988474,0.9944008958566629,0.6655840530077427,1.5242500810704411,0.8977101356633754,1.4475425799209551,0.6562333104538233,0.7691186191365453,0.5772735182714535,1.143625824168602,0.7781546811397557,0.49767188175215815,0.6497374207678602,1.2219752302318196,0.5860650773825927,1.0673912967158263,0.7781957206450935,0.9251764359474672,0.513326893971612,0.44492133342009954,0.46137348918343196,0.9657045835983583,1.2661964472309302,0.7308902676165075,0.7234037311180398,1.3934947419907069,0.705355798128333,1.2341677935234083,1.225737378446637,1.3495477982227657,0.7170104462724602,0.689072512650381,0.8002024002407876,0.9710853710533667,1.448133971291866,1.5543748237752844,1.005786525434233,1.3341545352743562,1.36105568790947,0.9654069752169878,1.4177311090440758,1.1303522425586632,1.5245069828233382,1.5216280889755518,1.6116914099670103,0.9360530383226761,1.4664520202020204,1.3737843545925565,0.8974421224737434,1.1283687943262413,1.2741322546489313,1.1163780663817715,1.4520296594181676,1.275973437815749,1.3810767687193735,1.424045516609818,1.415801152369829,1.1910067181877007,0.7745215311004786,0.9261758875038422,0.7097596708208785,0.7458006718924972,1.0316036331149494,0.9559827634285581,0.7996952704832121,0.891580932213952,0.9373406377470291,1.0176112156158041,0.8554233801047327,1.0603539268994044,0.6109567901234568,0.14642440699156797,0.22602522253660196,0.6317310218019438,0.44406277803513267,0.9227249277812045,0.6364562312171854,0.8709498531920917,0.21017929653060408,0.15353970776072395,0.0843968275539237,1.054101284838794,0.49272017045454547,0.4959725869437382,0.8594644740163214,0.7626329787234043,0.7599188854042586,0.8195061279726912,0.5185831686537947,0.695575765202373,0.5138508450675576,0.4933660591942738,0.4752277529364285,0.8694816010452394,5.0,0.0,3.3333333333333344,1.875,1.0622222222222224,0.5902777777777778,0.3657142857142857,0.21180555555555555,0.13958175862937766,0.08000000000000002,3860.210352312021,4385.1396798037085,2075.304636195363,1880.96048540635,11.49626337681879,0.4468372585883636,6.3593045655112785,0.8077862537307974,1.0,0.46153846153846156,1.6474975373577347,3.213638857948678,3.9976702764876126,4.208196592277087,4.208196592277087,4.208196592277087,0.2631578947368421,0.0,0.12820512820512825,0.0646551724137931,0.03934156378600824,0.02683080808080808,0.022857142857142857,0.015128968253968252,0.017447719828672208,0.013333333333333336,0.5909577314956964,17.05263157894737,7.695266272189349,4.5,113.46236333513149,1.0,3.82658513479044,79.96909475658279,,54.066661766236834,64.43071470002964,65.25485855423885,54.06830056245078,73.7290975056452,64.4121350887212,63.81283735322206,73.67061067466055,0.24545454545454545,-0.06545671087833285,-0.7156585122769856,0.40425531914893614,0.09760273972602744,-0.19952878477139538,0.2313896584072077,-0.08762139870915295,-0.019924568573014178,-0.1734697139280293,0.06346119918966919,-0.0058008448442717535,0.17788331071913163,0.32216484429233944,0.13300639926994157,0.042235630358844076,0.37353213088814446,0.09311529334558087,0.17685192483039336,0.12352712644619025,0.3061525920306624,0.2850130012009296,0.32939385647106895,0.05084343625713258,0.03573667711598746,0.07051523375134727,0.08050583515238316,-0.0789924186842749,0.19997877773442052,-0.10676436141840628,0.047271310275540164,-0.0581438145442823,0.09473993597206129,0.08571157642781171,-0.01802125725800146,0.08060133333301332,-0.19818181818181818,-0.2743669832828252,-0.010158454353587724,-0.14893617021276595,-0.18106015485407986,0.08481743201868858,-0.1904115579997271,0.0047558257726645495,-0.2718018631269184,-0.1717445285954064,-0.31449178519849,0.008976746950330199,-0.35313131313131313,-0.2691353401427515,-0.07454855044064125,-0.1078014184397163,-0.23835285553570257,-0.09444171186053736,-0.3517336778222301,-0.17235811814396876,-0.2917325497219377,-0.18917302064626745,-0.2794850357958669,-0.20586952943630218,0.005454545454545454,-0.11718510534455812,-0.1899505169507637,-0.03829787234042553,-0.15472007147111375,-0.06777463103514536,-0.0035699461358876684,-0.05558212058925887,-0.11146736500418848,-0.1642947848324995,-0.05352870196266044,-0.0845216444450076,0.11515151515151514,0.5637785337734492,0.33777833494248805,0.014972419227738377,0.35451087875646153,-0.05109033302504571,0.11084557371236717,-0.08308836531736917,0.5272382942064632,0.4873230616032243,0.5954911485955081,-0.07844005470289991,0.178125,0.1295054191703557,-0.1325146619836287,-0.05053191489361702,0.03601241438356164,-0.027342768550419765,0.1795334048286589,0.015392143252340798,0.15294353333746516,0.03185969498129871,0.10236950305578513,0.0949773660338639,8.479373112540017,7.839868134055398,1.3103706971044482,18.695493900701386,32.516564268782936,35.62328899130176,35.835499517617556,35.835499517617556,35.835499517617556,36.841517061408155,25.541538236115407,2.154267604093837,6.9057503638552,0.0,11.299978825292749,3030.8375514511285,2785.6059991329357,828.1895760487487,12.0,26.0,32.0,35.0,38.0,37.0,38.0,24.0,20.0,285.10347908800054,19.0,4.51085950651685,5.332718793265369,6.20050917404269,7.055312843339752,7.930565854233965,8.796490207333578,9.674891664210184,10.54594651876855,11.425830448119246,0.6666666666666667,0.9874736842105267,1.131410042361216,0.6252119767406191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6553272455089824,0.9734778121775022,1.0130812281979538,0.6039889176941946,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,5.106527394840706,0.0,0.0,10.023291153407584,0.0,0.0,13.212334168400758,4.305215991296234,0.0,13.847474399381248,37.10711151969846,13.08951281182515,10.45893496721477,205.81317721391144,-354.7079040343609,-39.21295322183906,-9.334418527220024,-27.285223387258533,288.98989679807124,498.05849153093686,19.840113219142523,13.106802408708864,19.922339661237473,0.5,0.6762683569011069,0.2771419780836002,99.45077279241357,0.19448223980850124,48.46579652740531,0.32373164309889313,5.0,0.3684210526315789,0.31393298271314724,0.6123634234116836,0.7617617176012443,0.8018778044279335,0.8018778044279335,0.8018778044279335,2.1955,,1.7678571428571428,1.3039347313657133,0.8308858337010604,1.7649211973099008,-4.423220944503943,1.2076958384332928,1.205598298147459,-1.7577236653040635,72.74210000000005,18.318861563241462,0.0,4.305215991296234,0.0,31.584601120751042,13.08951281182515,29.828919765543436,0.0,0.0,3.6635616461296463,0.0,4.962844630259907,0.0,6.478509642208569,0.0,8.092851027538384,0.0,9.757247170313121,25.333333333333336,5.310307067271353,0.0,0.0,0.0,0.0,0.0,0.21841023137650195,0.0,37.524000000000015,0.0,35.484658831928854,0.0,0.0,-3.5274281934996217,0.0,0.0,-1.0667403103216595,42.993581609726206,0.0,0.0,0.0,36.88835847024288,10.023291153407584,0.0,37.04710632100208,29.160951749364212,0.0,0.0,0.0,23.758055116143527,24.90243532934133,22.785133354517324,159.93818951316558,,108.68289645532334,128.7241731125471,130.42225544177234,108.68714920659261,149.2569290074852,128.69714429971256,127.4987696224286,147.89629198046975,22.785133354517324,159.93818951316564,,107.28721976359402,127.55749466869355,129.67883127477666,107.29379036661115,151.88141595579432,127.61657433900905,126.42007640829658,149.09894501462514,4.819257892770038,116.99354144460479,,76.26627750205617,94.3073283800851,95.64314395736264,76.26586660115284,103.16294705922468,94.04780575860505,92.85027569578966,105.7181414007637,1.199217544974596,8.417799448061347,,5.7201524450170185,6.774956479607742,6.864329233777491,5.72037627403119,7.855627842499222,6.773533910511188,6.710461559075189,7.784015367393145,2.4096289463850193,79.96909475658279,,54.066661766236834,64.43071470002964,65.25485855423885,54.06830056245078,73.7290975056452,64.4121350887212,63.81283735322206,73.67061067466055,36.992156862745084,0.0,3.84465530728157,0.0,0.0,0.0,8.796292384263163,38.49708667152224,2.423203997648442,0.0,0.0,0.0,0.0,1.433307350718065,0.0,0.0,0.0,22.951578872379397,334.61966185170036,62.60490641959392,122.11827660204976,151.91147050652927,159.9114705065293,159.9114705065293,159.9114705065293,300.0,109.47312500983017,160.1834121602824,51.95501411644963,83.06,74.68,1.0,7.0738521749170715,5.247927513443585,3.7006502150899143,4.277419832796003,,4.225125196924713,4.2630133209984304,4.265274541393192,4.225095922727659,4.235760157901882,4.2615839267400055,4.258938646448594,4.255991282646719,0.19477106395210075,0.22512735962084227,,0.2223750103644586,0.22436912215781213,0.22448813375753643,0.22237346961724522,0.22293474515273062,0.22429389088105292,0.22415466560255756,0.22399954119193258,1.9503624241912816,2.095203871178643,,2.082902778950717,2.0918301487449633,2.092360435828194,2.0828958503279886,2.085416692360965,2.09149479113679,2.0908738713859933,2.0901815899593394,215.7799999999997,118.68270142018949,92.05753178279224,,94.69255128832148,92.23272319185017,92.21371893784283,94.6949447109039,94.78670818515447,92.351867491297,92.53127847605664,93.21430233483677,6.246457969483657,4.845133251725907,,4.983818488859026,4.854353852202641,4.853353628307517,4.983944458468626,4.9887741150081295,4.860624604805105,4.870067288213508,4.90601591235983,5.418307443555285,5.16426761323957,,5.192489227392555,5.16616886908031,5.165962801087291,5.192514502794924,5.19348307658581,5.167459814500536,5.169400619219505,5.176755054618677,26.177059240362816,10.879240275617441,8.796292384263163,0.08007689804316831,-1.0667403103216595,5.310307067271353,1.4849990026874946,4.782860302242518,-3.5274281934996217,264.26866499717386,101.83699275761634,-175.51056129254917,-19.402689795254048,-4.618698981382872,-13.500812407119167,142.9930892940913,246.4408726472786,9.816949009577495,6.485286122296806,9.857634905891144,728.0,29.0,1.6993587371177719,1.0239182670600842,0.16666666666666666,0.04564354645876384,0.7886751345948128,0.28121775094198953,0.16666666666666666,0.03803628871563654,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.08977918909913549,0.04790957976087747,14.466255326250886,11.98174513528779,8.929087446058485,7.7058622356355615,7.951361453974284,6.171550562165738,6.093318800666054,4.597928199211129,4.4484912758510555,3.3935453717181034,3.168714087450809,2.2830429697605577,1.8787125401765212,1.241899149752713,1.3409247459282525,0.6330288219657693,3.952010963349825,2.283087185593456,5.160456018705499,3.008116474444511,7.191698092965144,3.8326084217459337,64.91025470965026,36.639062278820916,29.575836279047536,28.76070127480219,28.76070127480219,28.76070127480219,90.0,103.0,41.587066999999976,28.294932999999997,0.15789473684210525,19.06,8.506944444444445,4.444444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,38.0,0.0,0.0,38.0,6.0,3.0,6.0,32.0,9.0,19.0,29.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,3.0,1.0,0.0,19.0,6.0,0.0,1.0,4.0,0.0,1.0,7.0,1.0,0.0,0.0,0.0,1.0,3.258096538021482,4.2749284991175145,3.817712325956905,4.2520603082138555,4.623746571561027,5.040598545281635,5.277476700676185,5.634789603169249,4.7801733619743665,4.659895085677338 +3016,CN1C(=O)CN=C(c2ccccc2)c2cc(Cl)ccc21,0,31.515151515151516,6.122081818181819,3.606060606060606,7.866816311260757,157.8403034240799,128.07567778787882,1.764180962516273,6.280678787878787,3.991742990028313,7.691481848484849,254.162096588248,27.942857142857143,6.27,4.257142857142857,7.86031746031746,143.14750929347716,108.01423665714285,2.0135576008571427,6.458785714285715,3.140270429159318,7.687623142857141,291.8316244186314,25.224137931034484,6.259913793103448,3.9827586206896552,6.632183908045977,151.24175502290856,96.54144836206896,1.8031250120585516,6.417070689655173,3.014261387824607,7.726726068965517,256.905541744148,23.533333333333335,6.268118666666667,3.7466666666666666,6.045925925925926,152.59517666378568,88.39991053333333,1.7002894832832665,6.426062666666667,3.22241426611797,7.7788477333333335,238.91652949890084,20.772151898734176,6.176215189873417,3.2531645569620253,4.736990154711674,153.56069105063273,76.58664437974683,1.5902724171170248,6.318632911392405,3.078736260874095,7.704821012658228,218.95380971740627,19.214285714285715,6.005419047619048,2.8452380952380953,3.724867724867725,156.5378062311826,70.93140580952381,1.4660746643355713,6.141408333333333,2.8005829903978054,7.573756880952382,196.53253578611574,18.76923076923077,5.8920641025641025,2.5256410256410255,2.7834757834757835,158.18499832373314,69.51118692307692,1.4104476138408206,6.03975,2.651735781365411,7.53610982051282,181.55703516031875,17.416666666666668,5.9478333333333335,2.05,1.9555555555555555,160.94881223954866,60.278859600000004,1.3196260476748334,6.153931666666666,2.678703703703704,7.736632633333333,160.8898442303642,10.210526315789474,5.627657894736843,1.631578947368421,0.8508771929824562,166.51396113169517,32.401175289473684,1.022753749343079,5.743236842105264,2.3083170890188436,7.397763,114.5513004534005,11.401285583103766,0.08687070707070702,0.012369726967102913,0.6225895316804408,3.648425897584147,1.515719525790908,53.62335818365473,0.25274848101445363,0.09415316804407708,1.1278863652808866,0.06233565840220384,51.22252176784669,0.2610520792338981,0.0022244444444444156,-0.005391065896779924,0.2328217237308146,1.0595212992519396,-0.26046756397777115,1.2324441107175612,-0.010433412944484742,0.002859386068476966,-0.056491609043880765,-0.0006030956316410831,-0.41175484986584865,0.5668439884740827,0.003320306513409938,-0.001403699151661659,-0.002422342547734416,0.030367141362149207,0.14536568157481028,2.738177147588739,0.027714208677326435,0.002986905101168416,-0.031040245345745378,0.001885117982331154,4.39520091861611,-1.021891643709825,0.002635999999999973,0.0019864685592942146,-0.040771349862258964,-0.19978142819893635,-0.004070432232613267,-4.790872636584024,-0.011755333375571997,-0.0015324407713498622,0.04554985640865008,-0.0009378729476583923,-2.6324293478384764,-1.4078064883588473,-0.016865260196905773,-0.0017319907724296147,-0.125849984307982,-0.6986846974913289,-0.19897900391698717,-6.6541559995350505,-0.028997628296354654,-0.017787383617533205,-0.13117710228869753,-0.010356839836803003,-7.634955151456565,0.5662468844287024,-0.0008384920634920573,0.0009294761771932441,-0.09336875245966156,-0.4515363673612831,-0.043301220472368986,2.51217890436836,-0.01642843665809252,0.0034975895316804472,-0.0377232704881622,0.004662253935458477,-3.2120697579689326,1.3943632125450305,-0.0023611111111110964,-0.000275291837385901,-0.1377410468319559,-0.4470771777169084,-0.08200493240606403,6.612731390548848,0.02045200127052344,0.0006924030514939575,-0.007396161400193473,-0.001987165395210857,1.8317299923746309,-4.178558310376492,-0.009992777777777762,5.345949223047205e-05,0.024380165289256222,-0.18545046423834322,-0.13433217902538325,-19.787485937695134,-0.08400425119461476,-0.01589907713498621,-0.05959210196490404,-0.005993643250688694,-13.374823953891207,-0.47943550335894924,-0.0037116959064327055,-0.0002983274454484014,0.11505002174858638,0.3489651670583795,0.016603800366736716,-2.1326830935430827,0.006621330383383642,-0.005219356241844277,-0.05480238612514364,-0.00591595585036974,1.8871332585796583,,,0.4923809523809523,1.4125,0.775,0.025,0.6375,0.1375,0.6555431596361918,0.012475488221332398,0.0253754882213324,0.9861804229898592,0.2897215643212192,0.1935136255761032,1.6417235826260508,0.4832351898973224,2.0505038488432965,1.6638276573599338,0.20956661761429674,0.08840740123550864,0.08870217263355715,0.3866761914833625,8.608231536848496,1040.0,202.02870000000001,119.0,259.60493827160496,5208.730012994637,4226.497367000001,58.217971763037006,207.26239999999999,131.72751867093433,253.818901,8387.349187412185,978.0,219.45,149.0,275.1111111111111,5010.1628252717,3780.4982829999994,70.47451603,226.0575,109.90946502057614,269.0668099999999,10214.106854652098,1463.0,363.075,231.0,384.66666666666663,8772.021791328696,5599.404004999999,104.581250699396,372.19010000000003,174.8271604938272,448.150112,14900.521421160585,1765.0,470.1089,281.0,453.44444444444446,11444.638249783926,6629.993289999999,127.52171124624499,481.9547,241.68106995884776,583.41358,17918.739712417562,1641.0,487.921,257.0,374.22222222222223,12131.294592999986,6050.344905999999,125.63152095224497,499.172,243.22016460905348,608.68086,17297.350967675095,1614.0,504.45520000000005,239.0,312.8888888888889,13149.17572341934,5958.238088,123.150271804188,515.8783,235.24897119341566,636.1955780000001,16508.733006033723,1464.0,459.581,197.0,217.11111111111111,12338.429869251184,5421.872579999999,110.01491387958401,471.10049999999995,206.83539094650206,587.816566,14161.448742504863,1045.0,356.87,123.0,117.33333333333333,9656.92873437292,3616.731576,79.17756286049,369.23589999999996,160.72222222222223,464.19795799999997,9653.39065382185,388.0,213.85100000000003,62.0,32.333333333333336,6327.530523004417,1231.244661,38.864642475037,218.24300000000002,87.71604938271605,281.114994,4352.949417229219,376.24242424242425,2.8667333333333316,0.40820098991439613,20.545454545454547,120.39805462027685,50.01874435109996,1769.5708200606061,8.34069987347697,3.107054545454544,37.22025005426926,2.057076727272727,1690.343218338941,9.136822773186434,0.07785555555555454,-0.18868730638729733,8.148760330578511,37.08324547381788,-9.116364739221991,43.13554387511464,-0.36516945305696596,0.10007851239669381,-1.9772063165358267,-0.02110834710743791,-14.411419745304702,32.8769513314968,0.1925777777777764,-0.08141455079637622,-0.14049586776859613,1.761294199004654,8.431209531338997,158.81427456014686,1.6074241032849332,0.17324049586776813,-1.800334230053232,0.10933684297520693,254.9216532797344,-76.64187327823689,0.197699999999998,0.14898514194706608,-3.0578512396694224,-14.983607114920225,-0.30528241744599505,-359.3154477438018,-0.8816500031678998,-0.11493305785123967,3.4162392306487557,-0.07034047107437942,-197.43220108788574,-111.21671258034893,-1.332355555555556,-0.13682727102193956,-9.942148760330578,-55.196091101814986,-15.719341309441987,-525.678323963269,-2.2908126354120175,-1.4052033057851232,-10.362991080807104,-0.8181903471074372,-603.1614569650686,47.564738292011,-0.07043333333333282,0.0780759988842325,-7.8429752066115705,-37.92905485834778,-3.6373025196789945,211.02302796694227,-1.3799886792797715,0.29379752066115755,-3.168754721005625,0.39162933057851207,-269.81385966939035,108.76033057851238,-0.18416666666666553,-0.021472763316100277,-10.74380165289256,-34.87201986191886,-6.396384727672994,515.7930484628101,1.5952560991008284,0.054007438016528686,-0.5769005892150909,-0.15499890082644685,142.8749394052212,-250.71349862258955,-0.5995666666666657,0.003207569533828323,1.4628099173553732,-11.127027854300593,-8.059930741522995,-1187.249156261708,-5.040255071676885,-0.9539446280991726,-3.5755261178942424,-0.3596185950413216,-802.4894372334725,-18.21854912764007,-0.1410444444444428,-0.011336442927039253,4.371900826446282,13.26067634821842,0.6309444139359952,-81.04195755463715,0.2516105545685784,-0.1983355371900825,-2.0824906727554584,-0.22480632231405012,71.71106382602702,0.705625984809643,0.5881238917597509,0.439304718088475,0.30489106701551477,0.2813428736388573,0.1639200738321203,0.17978108549702682,0.08580787250173169,0.11082383727109815,0.04504727746137136,0.07112665286894734,0.02409858673396127,0.046131625813694864,0.013484279801906298,0.030312158641404626,0.006999614999369403,17.001102607650903,5.685575545517511,3.5438052577190025,2.182850237057354,0.40677919065262935,-0.39967214760950076,3.235903783454562,0.9778875709112721,6.021983506503097,0.7740024330083334,14.549653486905548,10.947104263655053,35.4505171874023,11.697704213863743,2.207834230483531,0.7518149657018727,3.489037541526102,2.232873651098442,7.008269009573037,1.3043102702277518,3.7019520221090603,2.4287095819017597,22.45586240261595,14.702710811751423,0.2924009813766997,0.5855658469943629,0.7313208092011737,0.8653490514911422,0.8919027687495384,0.8919027687495384,1.7929942255770468,694.8779897536325,0.0,1.0,1.0,0.0,11.0,0.0,2.0,0.0,0.0,3.4577489798737635,1.866958802255661,1.0760537880099066,0.34878106073717774,0.20469356067161737,0.20469356067161737,38.730872079950785,638.263669650989,39.63320255574706,19.34132332275724,40.8611813383193,,8.0,279.0,0.0,4.794537184071822,12.45193613526408,5.022633313741326,22.525974260848255,0.0,18.013948781989278,42.46456947923127,4.992404732635669,11.600939890232516,9.847619047619046,28.25,15.5,0.5,12.75,0.0,0.007619047619047681,2.75,0.16782106782106776,0.08284752284752273,-0.08497354497354503,0.0,0.10808145326692054,0.0,0.6106782106782109,0.8126190476190475,0.44285714285714317,0.5278306878306882,0.8126190476190475,13.110863192723835,0.24950976442664796,0.507509764426648,19.723608459797184,5.794431286424384,3.8702725115220638,32.83447165252102,9.664703797946448,0.6059185467330794,0.15715667311411993,0.0,0.3452611218568666,0.125,0.45920653988012494,-0.6174068635484644,-0.049903390360769934,-0.018709298895408014,-0.05145057196237205,0.540793460119875,0.7271011299780158,0.033584296905519534,0.022033367575091386,0.034623863332286474,-4.790758455146341,0.5528350515463918,0.6224546273010263,1.4408052217706542,0.6675094816687737,0.5140385516839727,1.2167567262999746,0.5577640570144714,0.86167704000302,0.5822252837280224,0.5525953136955849,0.5928486135425514,0.8353069868524985,0.6474182367579097,0.8426363781435715,1.3406092226754716,1.1547146780592006,0.9574597209697825,0.9889610100451846,0.6495411579000323,0.7397314122994503,0.7875204408937332,0.6493037362228238,0.7432144281148055,0.7744949038252245,0.9361340206185567,1.0084602683658521,1.0490937875958883,1.2667846607669615,1.0853435418116735,1.0399986315854,0.9355314050499363,0.9397840373936325,0.996394051464507,0.9749731543724098,1.0236867745773748,0.9297106171895779,0.8984242463787029,1.2514398399330722,1.193825972980641,1.2716478100145625,1.2050665636253102,1.1447485251779628,0.9012971536434553,1.0089249110576954,1.1671993026448888,1.2682659752678418,1.1518442991707054,1.0484716059548378,0.760401325478645,0.9298853515034533,0.8997217930869792,1.0198061525495152,1.0679448571712666,1.0260253318348784,0.7674274188193452,0.9940546882682282,0.8532840222836007,0.8798825952732777,0.7520255638520905,1.0243934651150564,0.9192109436954798,0.9711330505730636,0.887015394588152,1.1282051282051282,1.0764335594801937,0.9702949993000651,0.9184493883537648,0.9397184351120776,0.967663931031751,1.0169394858192062,0.9991711369136458,0.9912607785741465,2.08659793814433,1.2096183809678847,0.8133113082728066,0.7268436578171091,0.9820373868947001,0.9317339919403478,2.0723354216143046,1.498142220396325,1.4392623628731491,1.2921892054617465,1.5555394495383652,1.3212083954542158,1.3104652740097666,1.0985693111176118,0.6689626779075944,0.5533302282254308,0.902788317118739,0.8217267813283153,1.3070749222831592,1.1065654042841675,1.1855127026873866,1.284597979663506,1.210267473071998,1.115141543741461,3.5,0.0,2.666666666666668,1.625,1.3094444444444446,0.7883333333333333,0.48993197278911566,0.15019132653061223,0.061224489795918366,0.0,3910.943978524927,4273.453130337068,1918.3010343386504,1785.589185385977,10.402068999560482,0.4851676165729666,5.35532197561618,0.9423797573559761,1.0,0.125,1.5866451394846899,3.1774353171027925,3.968340331348547,4.695613058621276,4.839700558686836,4.839700558686836,0.15909090909090906,0.0,0.08602150537634413,0.04513888888888889,0.040920138888888895,0.02718390804597701,0.02130139012126589,0.01155317896389325,0.015306122448979591,0.0,0.4065160418251468,14.917355371900827,6.40582726326743,3.122448979591837,122.06237911260713,1.0,3.935426021777863,74.94315208039566,,56.229302561897036,56.74352966638879,56.27149174260336,56.20614359783079,68.07555417042376,56.93681678730141,57.20042889009611,64.73461529244604,0.02289672312223865,0.02560638124694743,-0.4358273962810478,0.37395701643489243,0.29040504836716446,-0.17184417007616118,0.022983344431666535,-0.041279824522023924,0.030369515204611768,-0.05008625938111434,-0.009674970106993544,-0.008038550927500696,0.04971755021329543,0.03822124425334109,-0.1134785881203986,-0.0038907537381751905,0.008323354294315586,0.09590539615101806,0.051063141890717686,0.10965133624578173,0.03172389377030966,-0.027520720438902708,0.03024140645419904,0.08580602373573605,-0.0896295103092783,0.030343945489639482,0.1605911403361768,-0.06548672566371683,-0.054758252958138534,-0.0026854785224788213,-0.08934301764868503,-0.046510006028086706,-0.016276040447544597,0.04038514677611732,-0.015045528862581713,-0.0513920294625342,-0.12347787256948974,-0.19414208500891522,-0.1400185126992549,-0.20213957656547552,-0.19150305285190858,-0.1312769285684033,-0.1240906244018739,-0.11472918919222466,-0.18891965068245156,-0.11630347375999128,-0.16614631339863803,-0.14905465189824302,0.049665178571428555,-0.009652184168474423,0.0751412039784848,-0.149968394437421,-0.12376196749953831,-0.02856809570344108,0.04684859340148736,-0.06499915090351442,0.037147868779551604,-0.03344598502950045,0.07479272786976203,-0.06270815350573401,0.12229877081681204,-0.027179600474407418,-0.02225528810118729,-0.2212389380530973,-0.1225397446095716,-0.054102972885615865,0.12331811386934947,0.08091839439918881,0.007354006942918949,-0.006557541280633841,-0.03187846966160547,0.03576024625801304,-0.3664988724226804,-0.11503046440780434,0.004321800503167669,0.039159292035398266,-0.05083026747539032,-0.08862601341451232,-0.3690087045635027,-0.3323630308575857,-0.16886396353166977,-0.05283520024649233,-0.09615111806498207,-0.2611121727764451,-0.04205100379815526,-0.04272666853524779,-0.024117544893415867,0.1847927340475082,0.09564814439275067,0.010954401579060474,-0.039771531768652994,0.026197310293647205,-0.055434738419007576,-0.04858857045540733,-0.09490484262151605,0.03684186552026117,10.310410669398491,17.800459656166524,6.455107950793857,17.914014722555194,32.97547061553364,40.8563384097023,43.17482408201456,43.320064282080644,43.320064282080644,41.01007697686593,33.276553147198676,4.191332352285935,1.7681480247101728,1.774043452671143,7.73352382966725,3012.7889088667384,1811.5369391808945,1431.614604936408,81.0,31.0,42.0,55.0,73.0,82.0,86.0,85.0,82.0,284.0716407160004,22.0,4.672828834461906,5.53338948872752,6.418364935936212,7.301822342137932,8.195609567288775,9.086702731518004,9.983914801648742,10.878141527707198,11.776727157381455,0.7474747474747475,0.9826666666666668,1.110359670701491,0.7183894561298607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7361696425331157,0.9754010695187165,1.0058597629610013,0.6922261470804113,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,4.899909730850478,6.544756405912575,0.0,5.907179729351506,0.0,9.786941916707491,0.0,0.0,0.0,41.932775232540564,18.19910120538483,23.197208279812507,11.399071277454265,217.99413070268903,-293.09485127162174,-23.690094230044817,-8.881662159746114,-24.424570939301816,256.7250027826398,345.16881837936717,15.943108325702244,10.459661163011125,16.436610399017486,0.5,0.889590627346826,0.23294760606661213,5.142719369202205,0.18439256660168274,36.64080699942432,0.1104093726531741,4.0,0.045454545454545456,0.31453631535167986,0.6298943424957641,0.7866832443007528,0.9308576902429789,0.9594215765405637,0.9594215765405637,3.153800000000002,,1.1827731092436975,0.7736575644518693,0.7552942693890363,1.195450703340925,-1.8847129465743477,0.7741273259687342,0.7388049591049789,-0.9543551048072738,81.81000000000004,4.794537184071822,0.0,0.0,4.992404732635669,0.0,18.492338119440245,64.6804728448282,0.0,0.0,3.8066624897703196,0.0,5.1298987149230735,0.0,6.655440350367647,2.70805020110221,8.270013062273787,5.37989735354046,9.93280360687018,24.666666666666668,15.349031697040955,0.0,0.0,0.0,0.0,0.0,3.3387035462333094,0.0,32.428000000000004,0.0,12.024468379944572,0.0,0.0,0.0,0.0,4.474135802469135,0.7780588624338628,36.64186913314921,4.899909730850478,5.687386274683562,0.0,25.21129312071197,4.794537184071822,0.0,11.126902983393991,53.523341280328545,5.022633313741326,0.0,0.0,23.706852052285402,24.29359820359282,26.03402514779877,149.88630416079135,,112.3403278128697,113.40969357633239,112.4674540582678,112.29274212532749,137.09346481413462,113.79622084200594,114.32697728428172,129.9464081372958,26.03402514779877,149.88630416079133,,111.27583201455045,112.7134017683257,111.8283836399115,111.21683649232067,138.0358212874218,113.09950624863416,113.66205282108723,130.42358568969945,4.85928877242589,103.63565802725499,,79.98297159493949,80.49273817913593,80.00011189564708,79.95955559521774,92.97547223848473,80.69781079753949,80.97423197262717,89.07859092872349,1.3017012573899385,7.494315208039568,,5.617016390643485,5.670484678816619,5.62337270291339,5.6146371062663745,6.854673240706731,5.689811042100297,5.716348864214086,6.49732040686479,2.456695848348652,74.94315208039566,,56.229302561897036,56.74352966638879,56.27149174260336,56.20614359783079,68.07555417042376,56.93681678730141,57.20042889009611,64.73461529244604,32.188235294117646,0.0,1.7624253590325019,6.108365947201925,0.0,0.0,0.0,33.193372177713044,0.14585978835978808,0.0,0.0,0.0,0.0,1.6300617283950616,0.0,0.0,0.0,22.843462853653573,422.30569177075535,52.359289602994764,104.85536546439215,130.95523093450205,154.95523093450208,159.7101184366656,159.7101184366656,659.0,115.84750138680774,52.41344171457358,61.88276577884767,32.67,32.67,1.0,8.40017470716593,5.459431618637297,4.01395262920122,4.408179105908934,,4.418464307418625,4.413256248923345,4.412963022374596,4.4185490454552285,4.4036618903399205,4.4143026613883025,4.414569168483847,4.408637930088872,0.20069763146006098,0.22040895529544668,,0.22092321537093124,0.22066281244616723,0.2206481511187298,0.22092745227276142,0.22018309451699603,0.22071513306941512,0.22072845842419234,0.22043189650444361,2.0829236294696414,2.1766088835971096,,2.178939374517187,2.1777599759921213,2.1776935315633477,2.178958552498078,2.1755836231625127,2.1779970545504157,2.1780574262719132,2.1767129629215365,207.3899999999998,123.68044773914048,106.39459495561908,,105.11617919547032,105.65078128713375,105.66801893283503,105.10257293802269,106.66274462562585,105.58511248184386,105.58014549813971,106.32683478320796,6.184022386957023,5.319729747780954,,5.255808959773516,5.282539064356688,5.283400946641751,5.2551286469011345,5.333137231281293,5.279255624092193,5.279007274906986,5.316341739160398,5.5108483855343255,5.360301956887867,,5.34821338756062,5.353286319645626,5.353449463158854,5.348083938999743,5.3628191178748486,5.352664561607883,5.35261751803876,5.359664877917628,0.0,18.12866591080877,0.6343797241118674,3.5106201184177386,-0.028237433862433825,15.349031697040955,0.0,0.14585978835978808,1.7624253590325019,251.32599028113546,103.48598483206806,-139.13773382467562,-11.246141005072664,-4.216294964384109,-11.594811152056304,121.87227086499342,163.85824236720802,7.568498569440102,4.9654012838547885,7.802773446057526,726.0,36.0,1.2917424418507335,0.6412888966727149,0.0,0.0,0.3938026764748812,0.11795495267098435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.056131276171213614,0.23760938192967393,0.07493999620273607,14.11251969619286,11.762477835195018,9.66470379794645,6.707603474341325,8.721629082804576,5.081522288795729,7.550805590875126,3.603930645072731,6.095311049910398,2.477600260375425,5.192245659433156,1.7591968315791726,3.782793316722979,1.1057109437563164,2.606845643160798,0.6019668899457686,3.312035308922328,1.2959277024806004,5.162707680364361,1.7126994725882416,8.461326562399027,2.3337219631684643,62.7475924080702,44.222582845480346,28.94415466834738,23.777652191608748,23.292752124649343,23.292752124649343,106.0,126.0,40.57030899999999,17.269690999999998,0.5151515151515151,104.04,6.277777777777778,4.388888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,33.0,0.0,0.0,35.0,12.0,2.0,8.0,27.0,14.0,22.0,21.0,0.0,0.0,0.0,16.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,2.0,0.0,1.0,20.0,4.0,0.0,2.0,1.0,0.0,3.0,1.0,0.0,0.0,1.0,0.0,2.0,3.4339872044851463,7.092158001979916,4.02535169073515,4.605170185988092,5.173320876373351,5.738586396850893,5.973332398784566,6.315188457313276,6.568999186346074,6.804441278893159 +5479,CCS(=O)(=O)CCn1c([N+](=O)[O-])cnc1C,0,33.10344827586207,6.763734482758622,3.1379310344827585,9.601532567049809,169.00480909914955,131.29743279310344,1.4725511642426554,6.781227586206898,9.109943356511046,8.29033727586207,206.36230192709834,35.6551724137931,6.666206896551724,3.7241379310344827,6.402298850574713,151.4156073305069,137.5198026206896,1.819161242413792,6.802606896551726,3.0644955300127714,8.155412965517245,251.5451814851448,25.192307692307693,6.579688461538459,3.1538461538461537,6.538461538461538,161.03795092910693,94.16088901923072,1.4386106898777116,6.6581326923076904,4.992788461538462,8.122440153846155,199.26792367278793,19.88888888888889,6.631915873015875,2.6984126984126986,3.719576719576719,167.81937266149117,70.73303041269837,1.234476717880794,6.676222222222221,4.009994121105232,8.221452730158733,171.44541781027883,18.153846153846153,6.652399999999997,2.3846153846153846,3.8512820512820514,164.8197771709722,63.60001179999999,1.1783947281753229,6.686152307692308,4.4679012345679,8.210773661538465,159.35086115677993,17.870967741935484,6.162622580645164,2.2096774193548385,2.655913978494624,170.51331036832624,65.04292501612903,1.0765933818682096,6.2066354838709685,3.271107128634011,7.826826645161292,138.9121652100774,21.627450980392158,6.743215686274509,2.0980392156862746,3.895424836601307,171.203167844906,78.43103337254904,1.0652747738801183,6.761388235294117,4.878903413217138,8.409171215686275,151.04900782997024,19.0,7.221277777777776,1.8333333333333333,5.416666666666667,167.92087688486112,66.33877138888892,1.0362485952222227,7.20065,9.421296296296298,8.739686,154.73230698792582,7.933333333333334,6.084800000000001,1.4,0.43333333333333335,174.79457464584635,22.0916558,0.7970310694263998,6.092133333333335,3.3999999999999995,7.751651999999998,95.04488984032938,13.00832342449465,0.20836884661117716,0.02421697833170741,0.7300832342449465,5.5090500726648175,1.5284835789407976,58.59593652556482,0.29747206371532936,0.18872865636147437,4.416882377599338,0.13458607372175974,46.05145038063513,3.3483947681331756,0.02961652794292505,-0.005189695820280595,0.192627824019025,1.4494649227110572,-0.4063225586004452,14.489215255648023,-0.022535481046373228,0.03037693222354343,-0.48175703282883875,0.03038652913198573,-3.1888351903155145,-0.14360193908350855,0.055138646757523085,0.000382694648267701,-0.04838562151285099,1.8776283829791551,-0.15795192187143314,0.07846095785693773,-0.0306319181476191,0.04978215265709317,1.238020440657568,0.027324155721211014,1.709292173134937,-3.1358548968537074,-0.033038687881018436,0.0007938701755068549,-0.1154143781967801,-0.9221133822798511,0.13093868364051833,-13.73219414078101,-0.02491248910908032,-0.03137539965649358,-0.4131792088525329,-0.025491127361606542,-0.31984685789591827,-2.578615201682978,-0.03197441690295437,0.0008092739564430842,-0.029817982255556586,-1.0611278799150383,-0.20728020471240435,-12.33326519293881,-0.034572226260706024,-0.03487576511479004,-0.8091732869879475,-0.018456393615658997,-16.48045811577444,3.2608645621571863,-0.009403329369797821,-0.005848870959253423,0.03743623182846841,0.36401876925830756,0.003808695598700709,14.912514100130421,0.03948780866109941,-0.0006969544704844627,-0.10010531544675473,-0.007661425223428344,9.896532637477762,-0.11650462801053807,-0.00868541185796558,-0.0028794331514023054,-0.17971136135786067,-0.6593768700504381,0.09108459680520481,-0.0029978223869836355,-0.014236463094120452,-0.004609386584598181,-1.0025482637920433,-0.01030089251824391,7.291400584176508,-3.7401241907781735,0.006255482890738476,0.006921659243456831,-0.15537059056678557,-1.1677346192803981,-0.21853663877730228,-17.865176314836834,-0.05041892230309759,-0.004774058660324975,1.5976835133235143,0.019082738538776622,-21.21602787275942,-1.5577487118509723,-0.04378263971462538,-0.0008397063558803992,0.0837098692033294,-1.1385519883736286,-0.06024778558589288,-7.654657891082031,-0.03173946108228805,-0.04032497820055488,-0.5001169691512978,-0.02354540475624258,-10.329618315487725,,,0.4604166666666667,1.21875,0.5625,0.03125,0.65625,-0.09375,0.7398210707563166,0.03395027006497081,0.03932527006497081,0.8262197029796103,0.22664576968855552,0.2340423078947921,1.566040773735927,0.4606880775833476,1.9246324628680056,0.9744452242347551,0.38833614920998905,0.42680730549532475,0.0,0.9501872386332502,8.519402651586207,960.0,196.14830000000003,91.0,278.44444444444446,4901.139463875337,3807.6255509999996,42.70398376303701,196.65560000000002,264.1883573388203,240.41978100000006,5984.506755885852,1034.0,193.32,108.0,185.66666666666669,4391.0526125847,3988.0742759999985,52.75567602999997,197.27560000000005,88.87037037037037,236.5069760000001,7294.810263069199,1310.0,342.1437999999999,164.0,340.0,8373.97344831356,4896.3662289999975,74.807755873641,346.2228999999999,259.625,422.3668880000001,10361.932030984972,1253.0,417.8107000000001,170.0,234.33333333333331,10572.620477673943,4456.1809159999975,77.77203322649002,420.6019999999999,252.62962962962962,517.9515220000002,10801.061322047566,1180.0,432.40599999999984,155.0,250.33333333333334,10713.285516113194,4134.0007669999995,76.59565733139598,434.5999,290.41358024691345,533.7002880000002,10357.805975190695,1108.0,382.0826000000001,137.0,164.66666666666669,10571.825242836227,4032.6613509999997,66.748789675829,384.81140000000005,202.8086419753087,485.2632520000001,8612.554243024799,1103.0,343.904,107.0,198.66666666666666,8731.361560090207,3999.982702000001,54.32901346788603,344.83079999999995,248.82407407407405,428.867732,7703.499399328482,684.0,259.96599999999995,66.0,195.0,6045.151567855,2388.1957700000007,37.304949428000015,259.2234,339.1666666666667,314.62869600000005,5570.363051565329,238.0,182.54400000000004,42.0,13.0,5243.837239375391,662.749674,23.910932082791994,182.76400000000004,101.99999999999999,232.54955999999996,2851.346695209881,377.2413793103448,6.042696551724138,0.702292371619515,21.17241379310345,159.7624521072797,44.32602378928313,1699.2821592413798,8.62668984774455,5.473131034482757,128.0895889503808,3.9029961379310323,1335.4920610384188,97.10344827586209,0.8588793103448265,-0.15050117878813726,5.586206896551725,42.03448275862066,-11.78335419941291,420.18724241379266,-0.6535289503448236,0.8809310344827594,-13.970953952036323,0.8812093448275862,-92.47622051914992,-7.467300832342444,2.8672096313912006,0.019900121709920452,-2.5160523186682515,97.63667591491607,-8.213499937314523,4.079969808560762,-1.592859743676193,2.5886719381688446,64.37706291419354,1.4208560975029727,88.88319300301673,-197.55885850178356,-2.0814373365041616,0.05001382105693186,-7.271105826397147,-58.093143083630615,8.249137069352654,-865.1282308692037,-1.5694868138720601,-1.9766501783590957,-26.030290157709572,-1.6059410237812122,-20.15035204744285,-167.60998810939356,-2.078337098692034,0.052602807168800475,-1.9381688466111782,-68.97331219447749,-13.473213306306283,-801.6622375410227,-2.2471947069458915,-2.266924732461353,-52.59626365421659,-1.1996655850178348,-1071.2297775253385,202.17360285374556,-0.5830064209274649,-0.3626299994737122,2.3210463733650415,22.569163694015067,0.23613912711944396,924.5758742080861,2.4482441369881633,-0.04321117717003668,-6.2065295576987936,-0.47500836385255735,613.5850235236212,-5.941736028537441,-0.4429560047562445,-0.14685109072151759,-9.165279429250894,-33.62822037257234,4.645314437065445,-0.1528889417361654,-0.726059617800143,-0.2350787158145072,-51.12996145339421,-0.5253455184304394,371.86142979300195,-134.64447086801425,0.22519738406658513,0.2491797327644459,-5.59334126040428,-42.038446294094335,-7.867318995982882,-643.1463473341261,-1.815081202911513,-0.17186611177169908,57.51660647964651,0.6869785873959584,-763.777003419339,-46.73246135552917,-1.3134791914387614,-0.025191190676411977,2.511296076099882,-34.15655965120886,-1.8074335675767865,-229.63973673246093,-0.9521838324686414,-1.2097493460166464,-15.003509074538934,-0.7063621426872775,-309.88854946463175,0.7715584364182028,0.6200345012213494,0.4606880775833477,0.413511634631295,0.31229575642789675,0.2532653785897946,0.2001556139869186,0.15409360200051392,0.1202134326648349,0.07255371496720987,0.08104772999702899,0.046677286435084876,0.05680376850908147,0.03401570964596258,0.039315160696279675,0.022691731269979407,16.01301023175028,5.825949387755461,3.607838542136246,2.2636740345002875,0.5038777498433881,-0.48366424257960333,4.038919717211695,0.9705322397758759,7.004117594214343,0.6354260675362163,14.5956302605103,10.312093389682252,32.06648826850295,11.848159558587565,2.9567235869349884,0.6691242251411708,3.5535355510531077,2.351466514941646,8.001936881970334,0.2942806707431145,3.767774460643051,2.550086979520819,24.443278918538144,14.651550816294264,0.3797085771148677,0.6361947600840373,0.8090996915579188,0.8362116408314116,0.8362116408314116,0.8362116408314116,2.503927837653153,491.3817428453395,0.0,3.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9262277185516434,1.6213637934018577,0.7417163794595494,0.6037853449767905,0.6037853449767905,0.6037853449767905,54.56794792297367,715.357943545339,63.43906844842332,24.667515294666863,58.21046567015115,,8.0,201.0,14.760564185235172,18.53211525309451,23.86832639724118,5.824404497999927,6.196843571613076,4.567099647791355,13.847474399381248,0.0,4.9839785209472085,0.0,7.366666666666667,19.5,9.0,0.5,10.5,0.0,0.039583333333333304,-1.5,0.24367816091954003,0.024323322209862774,-0.21935483870967726,0.0,0.24577966101694904,0.0,0.6770114942528738,0.9833333333333332,0.43333333333333374,0.652688172043011,0.9833333333333332,11.837137132101066,0.543204321039533,0.6292043210395329,13.219515247673765,3.6263323150168882,3.7446769263166737,25.05665237977483,7.371009241333562,0.46822033898305093,0.31674208144796373,0.11312217194570136,0.24434389140271492,0.625,0.43619848699245933,-0.7296774253627123,-0.11350721512403839,-0.025161290529748703,-0.09120967817033904,0.5638015130075407,0.9431331118625726,0.034840256417741876,0.032521831443536986,0.044911100564884406,-2.185866486366781,0.8458866544789763,0.4588634213316501,1.1142481902983088,1.1172638436482085,0.42136313492253824,1.7415443337331955,0.8311315653811114,1.513160581803599,0.4263927601171365,0.6508136067906917,0.37062144512710704,1.1913215166294704,1.115486570102658,0.5180691415807388,1.0000487238017906,1.3479077925331995,0.518478104465442,1.3054434159279154,1.0870333285873353,1.3448327484129574,0.5156189358924604,0.44669253120862756,0.5634654464977904,1.0150592619940717,1.3030266097907781,1.100627095639598,0.8868366714396768,1.3014838943177705,1.1071993860616816,0.9776328863237179,1.28675669239229,1.157381449435733,1.1038085605527304,0.958065540793217,1.1133683690366052,0.9711572678932409,0.9454872732386443,1.1361102070913056,1.0050169824700779,0.8545226760210474,1.1462316953035931,1.1013862498583138,0.9711428248655064,0.9198988052104455,1.1599008302144878,1.1918573602559261,1.141429553354136,1.2864491575989654,0.7422303473491774,0.8919111428090816,1.0137419896622109,0.8638751707470841,0.8161534783907017,0.8691105355679277,0.7415570812681425,0.8036806814732989,0.8703303882280772,0.7966206142357696,0.8723968861584155,0.7863332002627684,1.2719790658493746,1.244632622294436,1.2911082490333294,1.3484064635626236,1.2806595322670293,0.834226480731133,1.2436931839745378,1.1946326558984939,1.2202027266821773,1.5580008241118375,1.301914708305346,0.7888407131790811,0.9236644322567541,1.3165737328454126,0.8999409050071443,0.8816503800217155,1.3972132956017074,0.9878398211712917,0.9631210556171809,0.7728248211108666,1.3431089197019057,1.1542124055832803,1.2808265015447533,1.2637121091911085,0.828823887873248,1.0967487682480186,0.7214258670679677,0.39674267100977195,1.1333493213103745,0.7479270935801696,0.8665082031211052,0.6908139927022061,1.1249185571981324,0.9266083985550648,1.024908623691465,1.13802136722986,5.0,0.0,2.666666666666668,1.3194444444444446,0.935,0.5866666666666667,0.45238095238095233,0.10331632653061223,0.0,0.0,3348.838508575508,3706.2450789023824,1888.7669318825542,1760.420400882404,9.21166413087173,0.41228306566995143,5.413851003074004,0.7014993810581993,1.0,0.625,1.9317532765759284,3.236617201725714,4.1162646156680225,4.254195650150781,4.254195650150781,4.254195650150781,0.3125,0.0,0.11594202898550732,0.06283068783068783,0.055000000000000014,0.0391111111111111,0.02827380952380952,0.010331632653061223,0.0,0.0,0.6239892701041769,14.0625,5.55765595463138,3.769230769230769,93.17326768432252,1.0,3.6667168837212882,58.09415200201784,,38.127201771995324,45.11861370657067,45.486263670183305,38.13347549516122,64.4632464167673,45.32742692501755,45.089885043753355,58.4193135658753,0.25740402193784284,0.14213510524531733,-0.21429989114231068,0.2638436482084691,0.2631061441795768,-0.2658337742051616,0.2472733796024665,-0.0757566299332865,0.16095558994158315,-0.10907173695005279,0.22577766251511405,-0.06924505447620898,-0.011039234988046681,0.2646203962553651,0.015802741490941376,-0.06627411676271609,0.34082616026594137,-0.10333897206857141,0.0013390170463903415,-0.10297410037445669,0.2637763316755924,0.28029282530508687,0.2030236484771847,0.037117010626308164,-0.24106526218043584,-0.1585586733254308,0.03278155369480744,-0.15808386329558968,-0.16738155764008328,0.08566574443099723,-0.23435403468275978,-0.08374732335511252,-0.16624608186898698,-0.09354544077243548,-0.18940390083974318,-0.0069454241995039415,-0.19822809731402052,-0.15345104329640813,0.033417627309163415,-0.04084189426208972,-0.1926153993735173,-0.13561166607759345,-0.21047987154464085,-0.11622007737099802,-0.18479316171250673,-0.1832000985789776,-0.13713449768818828,-0.35787055520632544,0.2506752373651,-0.045128288238523155,-0.241519436452378,0.05127666281391194,0.06607650401736605,0.002491813226636065,0.2544974103046248,0.13274459513242864,-0.0036928916038567934,-0.022664247514140035,-0.056925839439133985,0.21490164925705152,-0.008956160160590724,-0.041682871500329566,-0.11890142163740755,-0.24615188094781895,-0.11968975800786047,0.05959147880955598,-5.116092624743212e-05,-0.04785815150609996,-0.024423352942066014,-0.22698097392780198,-0.07653758099474502,0.15833161657037798,-0.28751777371521425,0.030021200349644415,0.2858184513628716,-0.21281216069489683,-0.2119666011159608,-0.14297611161039947,-0.30488763170535615,-0.16949128490716622,-0.025295886445464644,0.36172199681529366,0.14178835901125886,-0.46070270745871805,-0.11975015234613051,-0.2101208526451421,-0.034674282826646766,0.1146579804560261,-0.20666938462276357,-0.03941670451418468,-0.1306346198211608,-0.10669728338813568,-0.21366642977269942,-0.11322850064735507,-0.17494681362738784,-0.22430603662010573,2.1822472719434427,3.1345912997933354,0.4999999999999999,23.10047714627038,37.995806970429044,39.641319149889796,39.78035363264841,39.78035363264841,39.78035363264841,30.79411940588809,15.591123587756082,6.213378387359825,6.828916887925196,0.0,15.202995818132003,2132.73167922383,1725.0269023587614,691.5428544175113,8.0,23.0,26.0,28.0,28.0,28.0,22.0,14.0,10.0,247.062676896,16.0,4.3694478524670215,5.176149732573829,6.052089168924417,6.88653164253051,7.763446388727362,8.607582191143917,9.483644576482009,10.333352547467827,11.20823286368504,0.7471264367816094,1.0241379310344825,1.1492823857513441,0.7098923687768969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6491081767499488,1.0068965517241382,1.0399954793178794,0.6152421583834582,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.114318268765572,12.741599977525652,15.661657634417429,0.0,0.0,0.0,17.9688751530675,0.0,0.0,6.923737199690624,4.923311048817671,12.676590806437414,5.752853606746789,186.5352026955163,-312.038052632514,-48.540038564902446,-10.759932849397035,-39.00475657906425,241.10315061848996,403.31989091282503,14.899029883520875,13.90758244526983,19.205709091086906,0.5,0.5929660844453679,0.21392600790720423,214.07826494285123,0.2046720708644501,31.16359753201778,0.4070339155546321,4.0,0.3125,0.39764529307822044,0.6662473988621933,0.8473200327042301,0.875712699250497,0.875712699250497,0.875712699250497,0.5344200000000001,,2.053571428571429,1.675270236251707,1.281385004616356,2.0499215542742757,-5.459584580867579,1.5300642594859244,1.4861242843716291,-2.3963729217909213,57.946200000000026,13.341108033146607,0.0,9.551078168738563,0.0,20.392230805293824,11.505707213493578,22.135566338378574,0.0,0.0,3.4965075614664802,0.0,4.8283137373023015,2.3978952727983707,6.329720905522696,4.727387818712341,7.898411092811599,6.803505257608338,9.502487461387123,21.66666666666667,1.1328354119425548,3.7907960128495843,0.0,0.0,0.0,0.0,0.2655612244897967,1.2988194444444443,29.699999999999992,0.0,33.1911220553036,0.0,-0.570868291761149,-3.1260076530612246,0.0,0.0,0.0,33.32918918678898,0.0,5.817862777835028,0.0,34.39789341537875,16.382009542330078,17.038055468456196,12.748141697690551,6.196843571613076,0.0,0.0,0.0,20.58687869453001,18.824137125748514,18.784645364766504,116.1883040040357,,76.64701049771901,90.02781863360988,90.81235421478956,76.66080537984988,130.34696467031452,90.46359581759936,89.99400455196024,117.13817374697446,18.784645364766504,116.18830400403576,,75.10683192629045,88.56195717688969,89.69114233575027,75.12336421414417,134.44165310596523,89.12478959054916,88.69364580313504,119.23500005354157,4.642133213010286,85.43098927657726,,57.53596182807045,68.77589386048322,69.32786117051418,57.54461380771194,94.89901362855507,68.96228768714593,68.48018321782236,86.96162335112936,1.1740403352979065,7.261769000252231,,4.790438156107438,5.626738664600618,5.675772138424348,4.791300336240617,8.146685291894658,5.65397473859996,5.624625284497515,7.321135859185904,2.3835086608928484,58.09415200201784,,38.127201771995324,45.11861370657067,45.486263670183305,38.13347549516122,64.4632464167673,45.32742692501755,45.089885043753355,58.4193135658753,29.200000000000006,0.0,3.148886841773747,0.0,0.0,0.0,0.0,30.159868900218502,-0.005553193499621578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.842022593120287,253.57503992327113,56.02084502070193,93.86189885004572,119.37167385437266,123.37167385437266,123.37167385437266,123.37167385437266,219.0,101.88047696400193,174.06331339073515,61.98422910760925,103.47999999999999,95.1,1.0,6.652621064598366,5.0,3.4489261260439665,3.9421319407295305,,3.9424132844148656,3.9354623944334954,3.933087578898028,3.942412926564058,3.9144853824504002,3.9365330709587654,3.937776724856545,3.9342217975435387,0.2155578828777479,0.24638324629559566,,0.2464008302759291,0.24596639965209346,0.24581797368112676,0.24640080791025362,0.24465533640315001,0.24603331693492284,0.24611104530353406,0.24588886234647117,1.7080665440217802,1.84172530792084,,1.8417966737834028,1.840032012326811,1.8394283901561128,1.841796583013918,1.834687502398541,1.8403040339601004,1.8406199102566572,1.8397167272734418,169.58999999999983,85.51336405827689,70.65163889927368,,69.82764427809478,70.30577159928873,70.5334239194327,69.82785959584209,71.50078836011002,70.280599342365,70.22475737834856,70.7083825662584,5.344585253642306,4.415727431204605,,4.364227767380924,4.394110724955546,4.408338994964544,4.36424122474013,4.468799272506876,4.392537458897812,4.389047336146785,4.41927391039115,4.9186762977492995,4.727764935549164,,4.716033610436468,4.72285752425551,4.726090324862922,4.716036693991951,4.739712104900437,4.722499420450367,4.721704547311578,4.728567760413566,23.86553335222978,13.844335868606702,10.624408147518267,0.0,0.1922302532123974,0.0,1.1328354119425548,3.2166646195515245,-3.1260076530612246,202.41871902106874,79.76960691580497,-133.4394389990775,-20.75758216169324,-4.601359965485432,-16.67992987488469,103.10495430930987,172.47505400874516,6.371396605365037,5.947415655473971,8.213097809940246,450.0,21.0,2.048307901891305,1.0708576360263355,0.25,0.10206207261596575,0.2878633639084475,0.06813735069982924,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.21982198216447035,0.06371368471241509,0.322104280909032,0.07083413901005872,12.344934982691244,9.92055201954159,7.371009241333563,6.61618615410072,7.182802397841625,5.825103707565275,5.204045963659884,4.006433652013362,3.3659761146153775,2.0315040190818765,2.2693364399168114,1.3069640201823765,1.590505518254281,0.9524398700869523,0.8649335353181529,0.4992180879395469,3.4011835831854538,1.730943878694181,3.9965319172058913,1.581731164469547,4.758584197635747,1.5339062019340093,53.75305539260957,28.84758236148791,25.48425538444695,24.97170890303245,24.97170890303245,24.97170890303245,78.0,88.0,31.43630899999998,23.713691,0.1724137931034483,16.08,7.756944444444445,3.5833333333333335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,29.0,0.0,0.0,29.0,5.0,3.0,5.0,24.0,8.0,16.0,21.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,6.0,0.0,1.0,16.0,8.0,0.0,3.0,4.0,0.0,1.0,5.0,1.0,0.0,0.0,1.0,1.0,3.1135153092103742,4.466626251540024,3.7436043538031827,4.049608668380709,4.4225985979389275,4.56954300834494,4.7318028369214575,4.607043430369772,4.479465229613033,4.342993403944672 +21319,Cc1onc(-c2c(F)cccc2Cl)c1C(=O)N[C@@H]1C(=O)N2[C@@H](C(=O)O)C(C)(C)S[C@H]12,0,38.170212765957444,6.836748936170211,3.978723404255319,10.681901759915943,163.67473749833476,154.72776517339943,1.7205571996262334,6.919206382978721,7.5239740714797625,8.333333063829784,248.19007221088938,32.26,6.665480000000001,4.76,9.495555555555555,147.1455875284189,125.65627831670406,1.964807898720001,6.8228620000000015,3.676121399176955,8.078682039999995,290.0056468700964,31.093023255813954,6.555765116279073,4.441860465116279,8.001291989664082,152.77441674042757,120.8937338915163,1.8037501845772226,6.696267441860463,3.7103311321657566,8.039632209302328,257.91075391455456,27.445454545454545,6.648942727272727,3.6454545454545455,6.76868686868687,154.82656354658567,102.88511289937449,1.6627712943490542,6.784400909090909,3.6819678264122717,8.192315781818179,232.62585779969044,27.1496062992126,6.738629921259844,3.125984251968504,6.250218722659668,163.6297123698044,103.96249532408186,1.3552579143081185,6.832644881889763,4.2927278766080175,8.283932488188976,201.04432493901894,24.690265486725664,6.971345132743363,3.0,6.119960668633235,163.7644341395921,91.92543748577698,1.3189334887517081,7.035873451327431,5.409301139881277,8.516521150442479,195.3822158283019,23.46078431372549,6.679481372549019,3.0,5.498910675381264,165.35182882719053,88.58228118876862,1.311946523180716,6.748969607843135,4.415819414185428,8.22914974509804,189.84333049927554,23.64516129032258,6.6564053763440825,3.075268817204301,5.129032258064515,163.24942665984727,87.07923274771613,1.391147773166559,6.7547397849462385,4.066186556927297,8.242705784946237,194.3223020106036,23.11904761904762,6.568404761904763,3.1547619047619047,5.580687830687831,161.0120019173627,85.76015503685714,1.4386363054665234,6.665055952380956,4.398497207524985,8.161428904761905,200.0803975107912,13.382526029877766,0.21105387052965144,0.029204006775225694,0.8601177003168858,4.9581565872496896,2.0266578394606647,61.47405980394524,0.30027742245314154,0.1934607514712539,3.2431402458482586,0.14131473698506106,47.20117846239146,0.190665459483929,-0.004784338614757816,-0.015280135822220469,0.3203078315980081,1.5771047734017418,-0.042338264144009506,0.9643291640280228,0.020370724893364348,-0.004523006790402919,-0.11808840015789421,-0.005145034857401492,2.1009445572226566,1.9252424015917955,0.025408969648478212,0.0013249754829133859,0.0243454367439755,0.8293798358631798,-0.0839037651177753,9.141321500960036,0.03439930049338978,0.02527074283849368,0.394817038287884,0.013063182361796932,7.624320733989911,-3.7548664554096876,-0.013973889872011192,0.0009039391971015074,-0.10711963455286226,0.2160989706938101,-0.3378961016996725,-16.76522733572386,-0.0679746328603314,-0.01752158319272399,-0.2555057672886183,-0.016083348590476977,-9.209878068294046,1.9932488067782836,0.007070940996567341,-0.0015696166362405121,-0.16569652424049075,-0.14310184970654136,-0.08126926966609,9.215189347848089,-0.030645097565526008,0.01489835390653123,-0.18531969340498095,0.006752969498436924,1.8204339501601405,-1.6751262934816138,-0.02852877167821107,-0.00010526907244810272,-0.023175504873466146,-1.0312171580194187,-0.12444514680876974,-7.8355603419124416,-0.007997752567663462,-0.02817690662094332,-0.20929934332465464,-0.01339870798863871,-5.979799175060121,1.438708847051722,0.0001523664332188145,0.0021865182620193946,0.04163448992091178,-0.33296151316016576,0.23588942420558875,6.876412366010544,0.043561233530235416,0.004268430839968398,-0.05610258407816182,0.0014868316423898567,6.108006247324143,-1.7826632982374169,-0.026806673091994134,-0.00150136059293722,0.07948422144014958,-0.6349121959049411,0.12796040125371938,-8.844939554468459,-0.00914780965084131,-0.030314171741215073,-0.3588937075191029,-0.017491911544658487,-3.890799211570273,-1.4656060704046223,-0.017786443984565282,-0.0013464516553827774,-0.01259996982043157,-0.2210276143051154,0.042043197125438435,-6.294442205781461,0.024540412632706593,-0.018950847722520408,-0.05104746065121182,-0.014554599193774371,3.1169003236959134,,,0.47333333333333344,1.1833333333333333,0.5166666666666667,0.03333333333333333,0.6666666666666666,-0.15,1.0346662109309905,0.02909317065368633,0.04055983732035299,1.0040235564220183,0.22117262946135816,0.24687465196405872,2.038689767353009,0.46804728142541685,2.0164261104246357,1.3193150725765144,0.2105686349457437,0.3005542092179235,0.11838992048740646,0.6971110378481209,9.639492500936178,1794.0,321.3271999999999,187.0,502.04938271604937,7692.712662421734,7272.204963149773,80.86618838243297,325.2026999999999,353.62678135954883,391.6666539999998,11664.9333939118,1613.0,333.27400000000006,238.0,474.77777777777777,7357.2793764209455,6282.813915835203,98.24039493600006,341.14310000000006,183.80606995884773,403.93410199999977,14500.282343504821,2674.0,563.7958000000002,382.0,688.1111111111111,13138.59983967677,10396.861114670402,155.12251587364113,575.8789999999998,319.08847736625506,691.4083700000001,22180.324836651693,3019.0,731.3837,401.0,744.5555555555557,17030.921990124425,11317.362418931194,182.90484237839595,746.2841,405.0164609053499,901.1547359999996,25588.844357965947,3448.0,855.8060000000002,397.0,793.7777777777778,20780.973470965157,13203.236906158396,172.11775511713105,867.7458999999999,545.1764403292182,1052.0594259999998,25532.629267255405,2790.0,787.7620000000001,339.0,691.5555555555555,18505.38105777391,10387.574435892799,149.03948422894302,795.0536999999997,611.2510288065844,962.3668900000001,22078.190388598116,2393.0,681.3071,306.0,560.8888888888889,16865.886540373434,9035.3926812544,133.81854536443302,688.3948999999998,450.4135802469136,839.373274,19364.019710926106,2199.0,619.0456999999997,286.0,476.99999999999994,15182.196679365798,8098.368645537601,129.37674290449,628.1908000000002,378.15534979423865,766.571638,18071.974086986134,1942.0,551.7460000000001,265.0,468.77777777777777,13525.008161058468,7203.853023096,120.84544965918798,559.8647000000003,369.47376543209873,685.560028,16806.75339090646,628.978723404255,9.919531914893618,1.3725883184356076,40.42553191489363,233.0333596007354,95.25291845465124,2889.280810785426,14.113038855297653,9.092655319148934,152.42759155486814,6.64179263829787,2218.455387732399,9.53327297419645,-0.2392169307378908,-0.7640067911110234,16.015391579900403,78.85523867008709,-2.1169132072004753,48.21645820140114,1.0185362446682173,-0.22615033952014593,-5.904420007894711,-0.25725174287007463,105.04722786113284,165.5708465368944,2.1851713897691263,0.11394789153055118,2.093707559981893,71.32666588423346,-7.215723800128675,786.1536490825631,2.958339842431521,2.1732838841104565,33.95426529275802,1.1234336831145362,655.6915831231323,-413.03531009506565,-1.5371278859212312,0.09943331168116581,-11.783159800814849,23.77088677631911,-37.16857118696397,-1844.1750069296247,-7.477209614636454,-1.9273741511996387,-28.10563440174801,-1.7691683449524673,-1013.0865875123451,253.142598460842,0.8980095065640523,-0.19934131280254505,-21.043458578542324,-18.17393491273075,-10.32119724759343,1170.3290471767073,-3.891927390821803,1.8920909461294662,-23.53560106243258,0.8576271263014893,231.19511167033784,-189.28927116342237,-3.2237511996378507,-0.011895405186635608,-2.6188320507016747,-116.52753885619433,-14.06230158939098,-885.4183186361059,-0.9037460401459712,-3.183990448166595,-23.650825795685975,-1.5140540027161742,-675.7173067817937,146.74830239927564,0.015541376188319078,0.22302486272597827,4.246717971933002,-33.962074342336905,24.060721268970052,701.3940613330755,4.443245820084012,0.4353799456767766,-5.7224635759725055,0.1516568275237654,623.0166372270626,-165.78768673607976,-2.4930205975554545,-0.13962653514316145,7.392032593933911,-59.04683421915952,11.900317316595903,-822.5793785655667,-0.8507462975282418,-2.8192179719330017,-33.37711479927657,-1.6267477736532392,-361.8443266760354,-123.11090991398827,-1.4940612947034837,-0.1131019390521533,-1.058397464916252,-18.566319601629694,3.5316285585368283,-528.7331452856428,2.0613946611473537,-1.5918712086917144,-4.287986694701793,-1.2225863322770472,261.81962719045674,0.7318433655923656,0.5891779442307195,0.425497528568561,0.31041660333262777,0.2730447850274341,0.18819980161057964,0.15755592814147734,0.09645111737318898,0.10293115131077119,0.05425167548067963,0.0631575660338574,0.031207144706385477,0.0394750273081229,0.016754877251285785,0.0251679584416272,0.008630969263195534,17.001104662619515,5.689091217051093,4.107727882049759,2.1852583031323625,0.46478206782973835,-0.46393355948962306,4.023087578132445,0.9724803993032445,7.004066167212836,0.6593475613732837,17.42477318228834,10.337824194345629,35.450517942086506,11.701017433484417,2.9164478554907456,0.5458489093262051,3.9886829111438207,2.23588234491535,8.00192207260767,0.6173167296926125,4.009973628592716,2.4318963270439107,24.434236305711515,13.30411817853599,0.3432438766805565,0.7183560766879543,0.8428077219023894,0.8673419446668318,0.8673419446668318,0.8673419446668318,1.461148261603977,1067.8673310026184,0.0,3.0,4.0,0.0,7.0,2.0,2.0,1.0,0.0,3.5438727453890255,1.3464726067051966,0.617437234226677,0.4737162235423469,0.4737162235423469,0.4737162235423469,-90.74681161588825,1890.2779089483597,86.52708179609652,40.21867891379489,90.56780670290523,,13.0,666.0,45.80546251218298,23.880553994730988,27.60371171085822,0.0,0.0,41.78463308531705,13.847474399381248,0.0,10.473451861131776,16.124034827205865,14.200000000000003,35.5,15.5,1.0,20.0,0.0,0.02666666666666657,-4.5,0.2635258358662616,0.05911025145067739,-0.20441558441558422,0.03979166666666656,0.20866192170818465,0.0,0.706382978723404,0.9366666666666662,0.44285714285714245,0.6472727272727267,0.8968749999999996,31.039986327929714,0.8727951196105899,1.2167951196105897,30.12070669266055,6.635178883840744,7.406239558921762,61.160693020590266,14.041418442762506,0.5053380782918153,0.26995305164319244,0.0352112676056338,0.45070422535211263,0.3684210526315789,0.5719491501477703,-1.7143810872867502,-0.10185880789063062,-0.036476193346526596,-0.1008459463109853,0.4280508498522294,1.2830551128436591,0.035348216557725284,0.027299044954120402,0.042768503761455315,-4.61850698519796,0.5975082876665994,0.6310134443543575,1.5118745885579759,0.8420421052631576,0.3966453777117494,1.0543824778543038,0.592134315368063,0.8354586928932891,0.6101491594338008,0.5880905702107163,0.6632968687696063,0.8229280262344733,0.7177378878919043,0.5511206929146927,0.8638308373878898,1.2503610771113827,0.6376993647391513,1.0622992243482006,0.6980183258657893,0.9354278889716803,0.5339480760618905,0.4860714094279726,0.5721411508406845,0.7897271969214109,1.3719354084789448,0.9071474600840258,0.9669899775247242,1.1896172248803822,0.8489827475642859,1.2316646222438397,1.3363487533944076,1.4273489970492819,0.9196807430266375,0.9151857677983949,0.9594125496100931,1.1567977934044882,0.8015994144429941,0.9730712995167711,1.1329551222519902,1.2050932449233314,1.0442525457697505,1.0215719064906403,0.8011748934757891,1.0357685394893923,0.9242067807288182,1.0887101224355016,0.9477397765431166,0.9062125538628345,0.9976701134498791,1.3216513585862082,1.2845622202357705,0.9616721006054957,1.2626763493974709,0.9762478924177967,1.0031229575088294,0.8977627735253515,1.3040272060608844,1.389904836828159,1.3046331483978124,1.0111132656176842,0.7388728375458165,1.0117508753584008,1.0649285332969838,0.8534210526315786,1.0836745308183717,0.7762468303608777,0.7433171957462207,0.6987568637213294,0.985389584082011,1.020017952001748,0.9895537443629301,0.8226823333367222,1.1811603533452208,1.172699824259609,1.0214871320117933,0.8197736276174304,1.1427805334259722,0.9632357869697511,1.1925852115924631,1.0272063450409294,1.2034285812284344,1.1447892548555638,1.1705751556864885,1.0593578857409784,1.1392428664856111,1.0641507554508012,0.8864706876483666,1.0362969924812027,1.0568727007236274,0.9168634861062867,1.123828140057739,0.973340232554837,1.0756578107264234,1.1457100933109319,1.0887900319786072,0.937789588002498,7.5,0.30998061422303846,4.888888888888891,4.909722222222221,2.8355555555555556,1.4449999999999998,0.7134693877551022,0.5825184240362812,0.5520439657344418,0.3653240740740742,7532.329394337592,8088.226735840166,3069.2744839019265,2890.3707885384365,13.028027743349101,0.4735572168522353,6.8585111841349935,0.8995416634276754,1.0,0.3684210526315789,2.010716106288612,4.208116244972441,4.937151617450961,5.080872628135291,5.080872628135291,5.080872628135291,0.22727272727272727,0.012399224568921539,0.09777777777777782,0.09263626834381548,0.05063492063492064,0.03211111111111111,0.017836734693877553,0.016643383543893747,0.016728605022255812,0.010744825708061005,0.574785578677362,23.168044077134986,8.408284023668639,3.8655953250547843,179.27199727457318,1.0,4.359267238946758,164.75352357861516,,131.26591014530885,136.53646861289928,136.11783273512518,131.18176251408158,173.85209190544495,137.3575946849488,137.84025005899852,164.75146078167322,0.014247344563967233,-0.022668803006318964,-0.5232205272319994,0.37239999999999973,0.318082889406397,-0.02089068185050743,0.01568676555775701,0.06783968214108142,-0.023379454261424116,-0.03641174639581695,-0.03640833905345197,0.04451042591863736,0.14386240664083208,0.1203909200277303,0.045369647155313886,0.028304773561811505,0.1672758456229476,-0.04140006442335812,0.14870209532465872,0.1145583980718957,0.13062464942533125,0.12173911960585526,0.09244034019734185,0.16152818599782945,-0.2805797983898249,-0.0662100620895648,0.030952574557965656,-0.1245406698564593,0.04358453931235784,-0.1667257763597597,-0.2727203537425702,-0.22637277323418772,-0.0905691881142491,-0.07878344688167797,-0.11381225294413003,-0.19511966370992645,0.14894413822384248,0.033503015030344724,-0.05374661937046417,-0.1926440116038126,-0.028861906071006232,-0.04010014324258969,0.14990370535535516,-0.10205594984520754,0.07700969728087176,-0.057142053490353985,0.047786732244003725,0.03856755296079333,-0.1251726534842327,-0.1351729376325415,-0.0036046106021795764,-0.02694457382394037,-0.20798398353760733,-0.06140412278072906,-0.1274612473440314,-0.02663454515602656,-0.14564663068172817,-0.06453601369616731,-0.09481465468145152,-0.12668749742815538,0.1075065233454183,0.0007219314805098928,0.07487048879451223,0.048405572755417944,-0.0671542956138989,0.11639331495066961,0.11185876429734733,0.1450699595539294,0.022063549363409967,-0.017298846126060124,0.010521419592261176,0.12940368114306353,-0.1332082817741173,-0.1270134161705791,-0.05140940434964056,0.09241086587436334,-0.12805408315212763,0.06313863088392478,-0.14388084311784488,-0.030464527023402268,-0.1566941692859051,-0.11066240751646328,-0.12377981177226849,-0.08243012861787656,-0.10951639975386686,-0.08427442690308977,-0.04610503160562877,-0.014649122807017542,-0.04457858690334755,0.020745088937473035,-0.10239184179238965,0.08172580020243159,-0.0979570666318656,-0.015740133568556212,-0.10299420643802348,0.06603437509890499,2.381101577952299,7.385813880891044,18.894677569748538,26.15550708625879,48.249025563065786,52.55007504259301,52.69494582136282,52.69494582136282,52.69494582136282,60.49278331273907,39.57945217729543,6.317059048372311,9.016626276537703,3.551697614622194,20.913331135443627,7314.122883217637,7162.480731784229,1819.266787277782,190.0,52.0,74.0,105.0,123.0,142.0,144.0,151.0,172.0,453.0561475440004,33.0,5.14166355650266,6.0473721790462776,7.002155954403621,7.9291264873067995,8.886962034866128,9.822765447457765,10.781224548778034,11.722627076854414,12.681377821708454,0.8297872340425527,1.029617021276596,1.129107555616692,0.8039959880747616,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7136256975410882,1.0170212765957443,1.042305248640189,0.6888912308205326,3.0,1.0,0.0,1.0,0.0,0.0,6.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,3.0,1.0,1.0,0.0,0.0,19.846320666670863,40.292402217730455,0.0,5.907179729351506,5.907179729351506,9.589074368143644,9.184952231746642,0.0,11.761884949391115,22.82397021581957,32.903945735995094,4.747022453217559,10.586084805438322,360.6891928238811,-1081.1428435661192,-64.23538034907867,-23.003039224811044,-63.59663785683053,269.94238120799287,809.1350653822407,22.291701447017854,17.215639688983842,26.971168846074693,0.46153846153846156,0.6652469229355508,0.1600276937819927,127.5699931307601,0.10922647317733682,36.1186048720975,0.33475307706444907,7.0,0.12121212121212122,0.36199188814511823,0.7575927503079684,0.8888419555949323,0.9147162398168729,0.9147162398168729,0.9147162398168729,2.6878200000000003,,3.283963585434174,2.467836198256607,1.9398832966066384,3.328160873568297,-8.306138558941846,2.3411196468140867,2.2579032572524373,-3.2587384354120443,106.62600000000003,28.40364893170434,0.0,15.373361591982254,0.0,42.975788523554094,0.0,40.362654270743484,0.0,11.257379486545457,4.204692619390966,0.0,5.645446897643238,3.044522437723423,7.277247726631484,5.58724865840025,8.99850761180784,7.853604813097837,10.76884282073053,38.99999999999998,4.068681399077288,3.7851492274927523,0.0,5.095093820688156,0.0,0.0,-0.6695037726089286,0.0,48.39200000000002,0.0,37.21286329166834,0.0,0.0,0.0,0.0,0.0,-2.267459669978493,53.06805511398453,5.316788604006331,4.39041504767482,0.0,55.151342053953705,9.589074368143644,12.740958040736519,29.965710494024506,22.72219614235818,5.022633313741326,11.257379486545457,0.0,37.787811439513796,33.540407784431146,37.013722620608775,329.5070471572304,,262.4519801486643,272.9084148125815,272.10633991714326,262.27884121230204,349.879274018233,274.5591147267766,275.52997323418026,330.3284349714062,37.01372262060878,329.5070471572302,,259.62133417879943,270.60510102754193,270.2957821736437,259.4098131647894,356.01032236983167,272.3740697230835,273.42259686074465,332.76165999875843,5.1235660359910415,246.80145906159999,,200.42034960212206,208.21285470745465,206.99079859310706,200.3420776713952,263.2416579100517,209.59783901273522,210.37349683177234,252.5725126522765,1.2337907540202926,10.983568238574346,,8.74839933828881,9.096947160419383,9.070211330571443,8.742628040410068,11.662642467274432,9.151970490892554,9.184332441139341,11.010947832380205,2.6331419309765964,164.75352357861516,,131.26591014530885,136.53646861289928,136.11783273512518,131.18176251408158,173.85209190544495,137.3575946849488,137.84025005899852,164.75146078167322,47.79999999999998,0.0,4.967932344080883,6.094293219785897,14.353488149225743,0.0,9.494688327293916,48.988346686088875,0.0,2.6177010109599395,0.0,1.3041585925131198,-2.4158840480551653,1.2708983948517678,-0.717655842550774,0.0,0.0,32.37788784856503,419.52571413070723,94.50365699556477,197.78146351370472,232.04612602019515,238.80101352235866,238.80101352235866,238.80101352235866,1216.0,143.01527510692418,211.10585990116678,83.38011358542556,138.04,112.74,0.8571428571428571,8.452809658267407,6.044394119358453,3.9156468194315974,5.407035445961276,,5.406814745513673,5.405632683753798,5.403740288981756,5.406949912894855,5.3970481915123765,5.40674319819992,5.407469268092809,5.407351689557207,0.13052156064771991,0.18023451486537587,,0.1802271581837891,0.1801877561251266,0.18012467629939186,0.18023166376316183,0.1799016063837459,0.18022477327333067,0.18024897560309364,0.18024505631857357,2.463592820155607,2.786313254615433,,2.7862724365083342,2.7860537881824454,2.7857036485774658,2.7862974356433177,2.7844644615796237,2.7862592036178966,2.786393484296447,2.786371740333035,290.3700000000006,682.7808260504171,195.1521839165407,,193.84396595573287,194.21064802328377,194.62533357678825,193.8056302306614,195.63595238686105,194.0804804356538,194.00568887420368,194.18167163066917,22.759360868347237,6.505072797218023,,6.461465531857763,6.4736882674427925,6.487511119226275,6.46018767435538,6.521198412895369,6.469349347855127,6.46685629580679,6.472722387688973,7.624786197838537,6.372391973195685,,6.365665824912048,6.367555673214201,6.369688632767049,6.3654680394605805,6.374867835037435,6.366885209312423,6.366499771395328,6.367406461238566,18.730926127363126,38.48376168652011,15.438149150770673,-0.18529373184969167,-2.8078213290475373,2.168338384307866,0.0,4.967932344080883,0.0,361.5917388367694,227.4619934068103,-681.8028131913981,-40.5088590180756,-14.506442833859532,-40.106047834788114,170.23418875910875,510.26611988638587,14.057850771381476,10.856725955029484,17.00887066287953,2402.0,53.0,3.3568759489593556,2.670769146268709,0.2041241452319315,0.3535533905932738,1.0092333177854702,0.504992116623865,0.06804138174397717,0.07905694150420949,0.0,0.0,0.1111111111111111,0.07453559924999299,0.49666240789366156,0.3161259379531365,1.0506303826808194,0.6934915812677522,1.953788924423017,1.2257717859331942,21.95530096777097,17.675338326921583,14.041418442762513,10.243747909976717,14.198328821426573,9.78638968375014,11.659138682469324,7.137382685615985,10.807770887630975,5.6964259254713605,7.76838062216446,3.8384787988854137,5.605453877753452,2.3791925696825813,3.624186015594317,1.2428595739001569,7.122201339404975,4.347534642705021,13.288840527617124,6.789407323581596,20.369558096468136,9.026389020353538,93.2795578482387,41.07772717711053,31.090272169097283,30.53342007746046,30.53342007746046,30.53342007746046,170.0,211.0,56.01248099999999,27.757519000000002,0.425531914893617,219.11,12.256944444444445,6.291666666666663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,11.0,11.0,47.0,0.0,0.0,50.0,11.0,3.0,8.0,42.0,14.0,33.0,36.0,0.0,0.0,0.0,19.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,6.0,2.0,3.0,30.0,11.0,0.0,3.0,5.0,0.0,4.0,4.0,1.0,0.0,2.0,1.0,2.0,3.7495040759303713,7.052254623431196,4.366278277705742,4.906200275959372,5.470956785688478,5.823600475402954,6.089044875446846,6.313208314661801,6.571976551827633,6.879275425715751 +9869857,CCn1nnc([C@H]2O[C@@H](n3cnc4c(N)nc(N[C@H](CO)Cc5ccccc5)nc43)[C@H](O)[C@@H]2O)n1,0,25.049180327868854,6.562934426229507,3.540983606557377,8.918032786885245,169.2581344562373,99.0458475245902,1.390158221738918,6.592506557377047,4.767304189435337,8.007444655737702,213.1268382297439,27.046153846153846,6.777103076923077,4.276923076923077,8.6,155.30690149169774,103.29361672307695,1.670457031661539,6.874966153846154,3.552991452991453,8.132094338461537,255.94904490773692,23.785714285714285,6.696188392857143,3.9464285714285716,7.5,160.63171981193526,89.54772528571432,1.4746213528566343,6.766794642857142,3.3717757936507935,8.09697621428571,221.17302941985537,19.91156462585034,6.584909523809523,3.251700680272109,5.925170068027211,166.3575953172253,73.34753842857145,1.2529620308753604,6.6265238095238095,3.624716553287982,8.055677741496599,182.83585058712467,18.870967741935484,6.578590322580645,3.1483870967741936,5.458064516129032,169.1339512608808,68.85139525161291,1.2012246586530648,6.610594838709675,3.4516129032258065,8.05781341935484,174.09237725301838,19.794520547945204,6.646032191780822,3.26027397260274,5.787671232876712,168.69038252502045,72.2707536369863,1.2497661401968148,6.682963013698631,3.707572298325723,8.091761506849316,182.17982264775392,19.25170068027211,6.572787755102041,3.1360544217687076,5.496598639455782,167.14858617861623,70.23942801360545,1.234136069810415,6.6143190476190465,3.5787981859410443,8.043473142857145,179.18101195305283,18.483221476510067,6.564306040268458,2.966442953020134,5.093959731543624,168.5359950021499,66.94854934228186,1.1978100610189863,6.599744295302013,3.62938105891126,8.046725906040267,172.75446891335542,16.594594594594593,6.45322027027027,2.804054054054054,4.527027027027027,169.95132118582652,59.16210562837836,1.1326039450873175,6.483633783783784,3.4557057057057063,7.970620567567567,159.60626014790788,7.71083042192959,0.15622655200214988,0.027561689295239895,0.6342381080354741,4.235420585864016,1.602753011678201,36.47904423918301,0.19760048691335397,0.14340467616232194,1.446146495864313,0.09253871754904594,44.572574076310154,0.1827383044260235,-0.012424105596096791,-0.014842230034732534,0.23284890331383212,1.0647055175407767,-0.15735694428611163,0.9495812190767594,0.000306277687626148,-0.00952207843218307,-0.27995621983797214,-0.01035687038637263,1.316545248429092,0.2282796483280228,0.007145681604407557,3.691429254453192e-05,0.03350193880293322,0.5321438169462892,0.05046130451218905,1.0540920730242453,-0.00918369545373025,0.006145806858755455,-0.11667570481565374,0.001190194043459844,-1.1822354561881725,0.3976785554318479,0.017850474874174422,0.0009451923167220485,0.01146279527667021,0.2886119779811951,-0.13748493887741037,1.7999057721920257,-0.0029356648417638814,0.015988844524641416,0.14801667031290403,0.0128357024353412,-0.19596820784079585,0.05024837235914739,0.002960809182408561,0.0006500667100598606,-0.016575495661069247,-0.24620852875137622,0.029794638076617388,0.24001581782385947,0.004404240613776576,0.0022009293374137006,-0.07202345690785324,0.0014910347513241743,0.46299033603382017,-0.5707001726594336,0.0013805331090111863,-0.0007428494972756587,-0.05709910062473998,-0.3790316345952076,0.04751907361370725,-2.796425463638437,-0.017944536686563577,0.0001984341004223588,0.07613249208388605,0.003132034303637575,-4.093093574984832,-0.2621853901463836,0.0009074727552940868,-7.159877969066877e-05,-0.08098729951534496,-0.22828330472205016,-0.08460203099773686,-1.3086351145036348,-0.017720324223649355,0.0006744807463432163,0.011184706197567552,0.0010904253080968641,-3.1278847656828987,-0.48011197105490505,-0.009016451881124455,0.0008877062599282016,-0.07686105885514646,-0.25885550719749506,-0.10914435776226378,-2.2687657747754892,-0.01136127031242281,-0.008486874423956828,0.027848320824968843,-0.005475194169136214,-2.793856377727448,-0.44764920792870266,-0.011983242299004153,-0.0019805725876144483,-0.002979800547658658,-0.08943033331638546,-0.018462297637103945,-2.0716767053992315,-0.00035175678645595255,-0.0112062490466817,-0.07972782309318184,-0.007359377274345043,-1.0468269606572382,,,0.4523809523809525,1.2428571428571429,0.5428571428571428,0.02857142857142857,0.7,-0.15714285714285714,0.9274740878309893,0.012466191899634133,0.024751906185348414,1.0692651382189982,0.24640827198517493,0.23867449504013655,1.9967392260499874,0.48508276702531145,2.059031089687432,1.2592242001176983,0.588699720561942,0.2111071690077926,0.0,0.7998068895697347,7.905145070688536,1528.0,400.33899999999994,216.0,544.0,10324.746201830474,6041.796699000002,84.79965152607399,402.1428999999999,290.80555555555554,488.45412399999987,13000.737132014377,1758.0,440.5117,278.0,559.0,10094.948596960354,6714.085087000002,108.57970705800004,446.87280000000004,230.94444444444443,528.5861319999999,16636.6879190029,2664.0,749.9730999999999,442.0,840.0,17990.75261893675,10029.345232000003,165.15759151994305,757.8809999999999,377.63888888888886,906.8613359999996,24771.379295023802,2927.0,967.9816999999999,478.0,871.0,24454.56651163212,10782.088149000003,184.18541853867796,974.099,532.8333333333334,1184.184628,26876.870036307326,2925.0,1019.6815,488.0,846.0,26215.76244543652,10671.966264,186.18982209122504,1024.6421999999995,535.0,1248.9610800000003,26984.31847421785,2890.0,970.3207,476.0,845.0,24628.795848652986,10551.530031,182.46585646873496,975.7126000000001,541.3055555555555,1181.3971800000002,26598.254106572072,2830.0,966.1998000000001,461.0,808.0,24570.842168256586,10325.195918000001,181.41800226213098,972.3048999999999,526.0833333333335,1182.3905520000003,26339.608757098766,2754.0,978.0816000000002,442.0,759.0,25111.86325532033,9975.333851999998,178.47369909182896,983.3619,540.7777777777777,1198.9621599999998,25740.415868089956,2456.0,955.0766,415.0,670.0,25152.795535502322,8755.991632999998,167.625383872923,959.5778,511.4444444444445,1179.651844,23621.726501890364,470.360655737705,9.529819672131143,1.6812630470096337,38.68852459016392,258.360655737705,97.76793371237025,2225.2216985901637,12.053629701714591,8.74768524590164,88.2149362477231,5.6448617704918025,2718.9270186549193,11.877989787691527,-0.8075668637462914,-0.9647449522576147,15.135178715399087,69.20585864015048,-10.228201378597257,61.722779239989364,0.01990804969569962,-0.6189350980918996,-18.19715428946819,-0.673196575114221,85.57544114789098,25.567320612738555,0.8003163396936464,0.004134400764987575,3.7522171459285207,59.60010749798439,5.651666105365173,118.05831217871548,-1.028573890817788,0.688330368180611,-13.06767893935322,0.13330173286750252,-132.41037109307533,58.45874764848164,2.62401980650364,0.13894327055814112,1.685030905670521,42.42596076323568,-20.210286014979324,264.5861485122278,-0.4315427317392906,2.350360145122288,21.758450535996893,1.8868482579951564,-28.80732655259699,7.788497715667845,0.45892542327332697,0.10076034005927839,-2.5692018274657333,-38.162321956463316,4.618168901875695,37.20245176269822,0.6826572951353692,0.3411440472991236,-11.163635820717252,0.23111038645524704,71.76350208524212,-83.3222252082773,0.2015578339156332,-0.10845602660224617,-8.336468691212037,-55.338618650900315,6.937784747601258,-408.27811769121183,-2.619902356238282,0.028971378661664382,11.115343844247363,0.4572770083310859,-597.5916619477855,-38.54125235151839,0.13339849502823076,-0.01052502061452831,-11.90513302875571,-33.55764579414137,-12.436498556667319,-192.36936183203431,-2.604887660876455,0.09914866971245279,1.64415181104243,0.16029252029023902,-459.7990605553861,-71.53668368718085,-1.3434513302875437,0.13226823272930205,-11.452297769416823,-38.569470572426766,-16.262509306577304,-338.0461004415479,-1.6928292765509987,-1.2645442891695675,4.149399802920358,-0.8158039312012959,-416.2846002813897,-66.252082773448,-1.7735198602526145,-0.29312474296693836,-0.4410104810534814,-13.235689330825048,-2.732420050291384,-306.6081523990863,-0.052060004395480974,-1.6585248589088917,-11.799717817790912,-1.0891878366030663,-154.93039017727125,0.7007533937038983,0.5393463261371015,0.43533068835604877,0.28686088827116124,0.2725427293350617,0.14704734630618962,0.17498867318763936,0.07493604077552178,0.10821450557962861,0.038091552839573335,0.06826100559925298,0.019780362567153938,0.04277054893501042,0.009892549900888295,0.026607228660489673,0.005032039528227983,8.011864877351494,5.694116307165549,3.5228945036808432,2.194098610173026,0.4523055393516241,-0.40541855672778554,3.2757703526027395,0.9871998244920229,6.006723476219898,0.9880094274223525,14.782949831554662,10.954435401972596,16.00611470151472,11.705130327800022,1.9830565955081416,0.7780992585019855,3.4658617351982497,2.2440930545250226,6.004790293708017,1.1654984532407133,3.679179442145138,2.4400899021282605,20.89125188893072,14.706114428790379,0.2801270791291482,0.6872995987215967,0.8551231182687157,0.9036069087016081,0.9214403401118764,0.9214403401118764,1.2107065545154205,1296.0049296441646,0.0,3.0,4.0,0.0,6.0,5.0,1.0,0.0,0.0,4.19130130326059,1.6629825310856408,0.6208902128020872,0.3198323771201146,0.2090965164289118,0.2090965164289118,236.77322129097843,3027.5480707182714,96.08316437073533,49.63193558554545,98.2518102264734,,18.0,1032.0,24.539800333979777,15.319582184522117,30.23932935048233,24.129455967222572,5.563451491696996,15.690925945054909,0.0,37.255572541998674,35.67947287910489,10.470530430962235,15.833333333333337,43.5,19.0,1.0,24.5,0.0,0.0476190476190475,-5.5,0.20102529434961375,0.04004118159499492,-0.16098411275461882,0.08808362369338008,0.2124160506863777,0.0,0.6453551912568292,0.9019047619047615,0.4443298969072154,0.6053140096618342,0.8138211382113815,32.461593074084625,0.4363167164871946,0.8663167164871945,37.42427983766493,8.624289519481122,8.353607326404779,69.88587291174956,16.9778968458859,0.5015839493136223,0.11999999999999997,0.0,0.39789473684210513,0.42857142857142855,0.34378422649793206,-1.3734071072521243,-0.06326437831529794,-0.022514870610690567,-0.06242759578418748,0.6562157735020681,2.621561251950318,0.06352112353209921,0.04297641396639867,0.06721951928077739,-2.1217841718027564,0.7751825756844576,0.9208762513154763,1.5848865498010414,0.7992829204693612,0.5555739945333852,1.4187152386349149,0.7760775660180061,1.1252385880295188,0.8833070795857016,1.0668871805460702,0.9875238613366478,0.9503779832896293,0.8450961940610622,0.8824190732012641,0.9955246517195169,1.1492887409200971,0.8055599619289338,1.1625363261085744,0.8470198122110784,1.106394428135532,0.8674774445516745,0.9003813493702255,0.9413217342549072,0.9956528820264309,0.9185309422807181,0.9323366344468355,1.0196350241125782,1.0233483223797997,0.9344633792603333,1.1147957097001846,0.9192764805073581,1.0011498734221795,0.9249420633426505,0.8955656596729135,0.9344725128328037,0.9647769970656717,0.9851054357064798,1.0518629796787495,1.078031578860239,1.0705850191361401,1.1207139348288846,0.9856110654704676,0.982892206215173,0.9217314260438852,1.0465861761432473,1.0434558025217644,1.0638788013528857,0.9313797316575644,1.0292306193889182,1.0013701245822944,1.1431744079471398,1.1206466217785005,1.100723176413323,1.0466792149308748,1.0309185910822234,1.027060997121942,0.9980511119089179,0.9163225273590753,0.9581918023656688,1.0170703464152766,1.000968768937939,1.0236375889861449,1.1558481830245761,1.1921480456589417,1.0608489588728889,1.0895749163145592,1.0016442801824046,1.0605887319367588,1.0155176280022795,1.010210402558711,1.0288415921516147,1.0224200761941615,1.0474612571191182,1.1182018245454783,1.1582611944583114,1.1553293140712095,1.068429973086226,1.0778810211812377,1.0454617651383429,1.0075159359993229,1.1107621093235542,1.042805848612888,1.1298825132207202,1.0064986619005152,1.0713458125628765,1.1409761854251022,1.2322121179441123,1.0373912047640865,1.0246518726848672,0.9603463914315109,1.0681500005840159,0.9450702303053091,1.1395323437066374,1.2440820828054986,1.1507808663936445,0.9821483788681805,7.0,0.2722314049586777,3.7777777777777795,3.145833333333333,2.1905555555555556,1.340833333333333,1.0148752834467119,0.707624716553288,0.48981166540690346,0.33470679012345683,7708.705154749115,8515.852374435308,3576.0410055951897,3289.6545210549502,20.379120848451002,0.46926808540191356,10.81584982572418,0.8841904405867163,0.0,0.42857142857142855,1.7394360343022963,4.267754806477246,5.3098471247607995,5.610904960442772,5.721640821133975,5.721640821133975,0.17948717948717952,0.007561983471074381,0.06746031746031748,0.055190058479532164,0.039117063492063495,0.024378787878787878,0.018793986730494663,0.013608167626024766,0.010884703675708967,0.008163580246913582,0.42464582854809685,26.600920447074294,11.806760204081632,5.722550953320184,198.95341571222855,0.0,4.500197521704054,234.06799124365386,,178.35781472578142,172.803565731371,171.8428353287211,178.41670194536417,277.3313473247584,176.16379347819807,178.67649208572675,247.38801553285373,0.0236989136612726,-0.0795262100896,-0.5385094460554671,0.36713168187744477,0.2513812963686059,-0.09817915994514169,0.026030868924378,0.0015499844783299955,-0.06640005533295779,-0.193587731698407,-0.11191932048208299,0.029537115046914503,0.02960506661886842,0.045739226225188806,0.0013393334548222808,0.052822336561743455,0.1256413161711384,0.03148414268730797,0.02889582484981939,-0.046476077044067296,0.0428563909017787,-0.08068041871921185,0.012861579185264111,-0.026523831766236676,0.051574024284187434,0.11426018589931355,0.03429370045490245,0.018073331027326216,0.06814246002969712,-0.0857804901164737,0.04934081497285239,-0.014856566841614838,0.11149458269089774,0.10235247309743639,0.1387062926232819,-0.004396609617054871,0.006516596735967776,0.01895202284415658,0.02358588049870121,-0.026134499726626563,-0.05813083346978875,0.018589662823606364,0.0065795533526082015,0.02228861215158744,0.015347681793321962,-0.049803707379456906,0.01611255040933455,0.01038733673404549,-0.07401280295781934,0.00883673800207911,-0.026952248438703433,-0.0900278616206176,-0.08949090814268827,0.029648407001869406,-0.07665840818917974,-0.0908122088506396,0.0013837352151456219,0.052645075932216824,0.033845663594566054,-0.09182986757680363,-0.0340022248966504,0.005808697328746004,-0.0025977645609347464,-0.12769226334601638,-0.05389861528367693,-0.052785445031953045,-0.03587361296867528,-0.08967753319059157,0.004703338582765329,0.007734144659309104,0.011783449533098768,-0.07017509826396442,-0.06226462582933575,-0.057713953009731506,0.03220797718235344,-0.12118644067796612,-0.06111683643920551,-0.06809805189383583,-0.0621936737130452,-0.05749616557070846,-0.05918129485784972,0.019256915467837744,-0.05916652309596073,-0.06268106421101564,-0.0580546041650182,-0.0767042615063235,-0.07185962247809344,-0.004698236371965199,-0.02111486486486486,-0.011519115860386096,-0.05679087126888029,-0.0017801412939341325,-0.07814423731899213,-0.05513122171314407,-0.07952754770396012,-0.023485898724741043,7.875998215099886,16.03581483730399,14.605859732842848,17.0040690297042,40.59870121087873,44.93660810606066,46.58925517797407,46.700876925550794,46.700876925550794,72.06608813906013,44.07284700411944,20.60449021966797,7.388750915272741,0.0,27.993241134940714,13837.125345856044,12749.355697137222,2103.4436307969336,270.0,56.0,78.0,106.0,130.0,155.0,184.0,221.0,248.0,482.2138493120007,39.0,5.25227342804663,6.129050210060545,7.029087564149662,7.9247959139564355,8.833899942908635,9.738671869871839,10.65351116273777,11.564388244994277,12.483412672918792,0.6939890710382514,1.0124590163934426,1.1498965944913389,0.6585561595859534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6539179149896929,0.9958855673416908,1.024524494644968,0.6308621889733831,6.0,6.0,0.0,0.0,0.0,2.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,3.0,3.0,1.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,31.10690121949068,17.72463349311287,23.796907557085927,11.77274377898642,0.0,4.567099647791355,4.9839785209472085,14.76446326439343,10.197363616602075,30.33183534230805,24.121395409968496,0.0,25.520799274337996,260.5335457237459,-1040.8232716771874,-47.94429624767027,-17.062676584871927,-47.310148712599435,497.3067670147243,1986.7247990410842,48.13886812306506,32.56925900067352,50.94166151387395,0.5,0.7714801402357617,0.09868166585117984,193.91840352220777,0.05671881224065189,112.8715709958605,0.22851985976423833,9.0,0.20512820512820512,0.29329169971588753,0.7195993623671405,0.8953097772734563,0.9460720718325484,0.964743588439741,0.964743588439741,-0.5776999999999989,,2.428571428571429,2.99953466728711,2.9450325980896834,2.42206410121665,-9.510995239174788,2.646725826193391,2.3966091319966036,-4.7892241946663905,122.74549999999999,20.056445138322168,0.0,39.72629014538894,0.0,50.47095639165694,17.657338045681435,48.04701140676951,0.0,0.0,4.3694478524670215,0.0,5.713732805509369,3.4339872044851463,7.243512974665482,5.820082930352362,8.858084222199162,7.934155233536322,10.521345294054358,42.333333333333336,11.114285797973066,25.010155576485925,0.0,0.0,0.0,0.5985396568585606,1.496706435013944,2.831804438853605,61.760000000000005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.14369226397167,11.050456081168516,11.766202058821523,0.0,79.90252789906853,17.702440982638635,0.0,30.64346074787072,36.65915541707259,0.0,11.16387793838399,0.0,40.171925734743155,39.888992814371264,45.948562485986436,468.13598248730773,,356.57685394135876,345.4357294817542,343.5173830804085,356.69500022780164,556.540509988087,352.1763454806137,357.21603507819657,495.6677175555295,45.948562485986436,468.1359824873078,,354.2890702930635,342.6358902270937,340.9776048444495,354.4132537202647,564.1736898886917,349.6891848384439,354.95769283972675,499.56525526037393,4.922859547286691,346.8869964026498,,262.6639261341515,253.929800764733,252.33039976645102,262.756191485074,415.4350792685932,259.20864409533795,263.16551586408366,371.13705887728463,1.312816071028184,13.375313785351649,,10.18791011261025,9.869592270907264,9.814782373725956,10.191285720794333,15.901157428231057,10.062181299446106,10.206172430805616,14.161934787300844,2.5395876305021816,234.06799124365386,,178.35781472578142,172.803565731371,171.8428353287211,178.41670194536417,277.3313473247584,176.16379347819807,178.67649208572675,247.38801553285373,60.74901960784314,0.0,1.8507973538448792,0.0,0.0,6.123992538926008,31.224917522493765,62.49599417334305,0.8888173783209352,3.1044871187663468,5.926352344879964,0.0,-5.004189495750333,0.0,0.0,0.0,0.0,38.482593527376366,584.6587507477884,106.10559809244008,260.333043195112,323.90067461040877,342.26520258700907,349.02009008917247,349.02009008917247,1522.0,153.6090910096446,173.1815619906817,88.89434851726921,195.16999999999996,195.16999999999996,1.0,9.071686955584003,6.285402218862249,4.599899676915558,5.8166308041041646,,5.8100632203218625,5.808488799297365,5.807644985073518,5.810077454463024,5.815621195911748,5.809448716057339,5.8101487848443805,5.815769331878677,0.13142570505473022,0.16618945154583328,,0.16600180629491035,0.16595682283706756,0.16593271385924335,0.16600221298465784,0.16616060559747853,0.1659842490302097,0.16600425099555371,0.1661648380536765,2.7787974623864065,3.013484162973163,,3.0123544205946278,3.012083402135275,3.011938118990126,3.0123568705032064,3.0133105752285116,3.0122486494971046,3.0123691474382484,3.013336046983859,337.0300000000012,1161.7581255401442,248.8403613609454,,250.11378942746305,250.32429505313394,250.5499610964871,250.11220258595796,249.87575310445246,250.20135666101208,250.1017631672135,249.3061539668769,33.193089301146976,7.109724610312726,,7.146108269356087,7.152122715803827,7.158570317042488,7.1460629310273704,7.139307231555785,7.148610190314631,7.145764661920386,7.123032970482197,8.310452730660352,6.769574540323038,,6.774678940514617,6.775520225958769,6.776421314628637,6.774672596016209,6.773726775236162,6.775028988819681,6.7746308562030055,6.771444643705678,7.400391696731816,14.39420062195516,46.30312468279264,7.758887386439401,0.460351244359112,9.341745112244006,-2.6883264215606544,2.196292343705196,0.0,387.79023716352054,197.44282377014605,-788.7778337133172,-36.334120462360296,-12.93078415923471,-35.85353789605988,376.8791158413961,1505.6201430305694,36.48157487325959,24.68229742673065,38.60564469309152,3939.0,57.0,2.2841795048894307,0.9791883355955423,0.0,0.0,0.5991790446503698,0.12896116432760696,0.0,0.0,0.0,0.0,0.0,0.0,0.2926435951945342,0.09422843462213273,0.7360015186929003,0.1978130463726122,1.1819474280856521,0.2407140322495891,24.526368779636442,18.877121414798555,16.9778968458859,11.187574642575289,15.262392842763456,8.234651393146619,13.64911650863587,5.845011180490699,11.470737591440633,4.037704600994774,8.873930727902888,2.571447133730012,6.629435084926615,1.5333452346376857,4.8957300735301,0.9258952731939489,5.9656790038168594,1.9251003874629802,9.885326637914558,2.5638326307135735,14.707801943012708,3.0106434382742844,118.55149400539092,44.220122044284054,30.159526082750443,26.038593117284854,25.560212196071525,25.560212196071525,190.0,229.0,66.614618,34.65938200000001,0.45901639344262296,331.14,10.694444444444445,7.722222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,20.0,21.0,61.0,0.0,0.0,65.0,21.0,0.0,9.0,56.0,21.0,39.0,44.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,14.0,5.0,4.0,35.0,14.0,0.0,10.0,4.0,0.0,5.0,8.0,0.0,0.0,0.0,3.0,4.0,3.9219733362813143,7.851759969215467,4.532599493153256,5.135798437050262,5.736168990355354,6.177295563538212,6.51139701490401,6.891475034555193,7.303298936028441,7.529498760236521 +77997,CN(C)CCc1c[nH]c2ccc(Cn3cncn3)cc12,0,20.615384615384617,5.970115384615385,3.1538461538461537,6.358974358974359,165.93720625283927,81.13454553846152,1.4443883382597698,6.04373076923077,2.5925925925925926,7.481198358974357,209.22860350092398,23.902439024390244,6.358021951219512,3.707317073170732,6.439024390243903,151.13190808142676,90.18362902439021,1.7325651190243911,6.486758536585366,2.9302168021680215,7.737823804878046,250.34949203304438,19.295774647887324,6.2481661971830995,3.5211267605633805,4.830985915492958,161.96609848862028,71.13140909859152,1.5046176607555068,6.3352,2.594679186228483,7.704620056338028,212.1101159460979,15.226190476190476,5.916285714285716,2.9404761904761907,3.0833333333333335,154.7785914661071,53.09822020238095,1.4420514498701664,6.029458333333333,2.307208994708995,7.428909000000002,188.58357646105773,11.74757281553398,5.6843398058252435,2.495145631067961,2.5145631067961167,163.80040522206184,40.42320779611651,1.1671336286909515,5.762980582524274,2.0169902912621365,7.285734485436893,146.58450417955936,13.218390804597702,5.763837931034482,2.6666666666666665,2.8850574712643677,163.88406889933822,46.8188518045977,1.2060224809301494,5.842070114942528,2.1379310344827585,7.343483540229885,155.81632853651035,14.986486486486486,5.986660810810811,2.77027027027027,3.135135135135135,159.85199908715728,52.394030445945944,1.321702185319473,6.077467567567567,2.408783783783784,7.501142324324324,173.27511799901973,12.128205128205128,5.86555,2.3974358974358974,2.371794871794872,167.65714249635937,41.358693756410254,1.1222433241260128,5.926328205128205,2.1901709401709404,7.441271435897438,142.41680033979875,11.546875,5.840621874999999,2.234375,1.921875,169.11276039652395,39.09445257812501,1.0870412970645469,5.894823437500001,2.1848958333333335,7.4265153124999985,136.24604119628466,6.982248520710058,0.0801597633136094,0.012840162850610811,0.5443786982248517,3.4950690335305716,1.607541572166087,33.435334556213036,0.21632275486036817,0.07886390532544375,0.329753816933304,0.036975831689677836,49.68199554837343,0.6124981959878767,0.0121417376244767,-0.0031740842354156516,0.2098426901428778,1.2128734305094535,-0.42911624830650325,2.820583511329213,-0.0252167072700728,0.012535344205513011,0.038167105865667385,0.004765181443530416,-2.215283346700751,0.2181848487373944,-0.009824552046003923,-0.0023125336706049057,-0.03516959746645555,-0.17076423035252938,0.534588395674846,1.1966543863655383,0.054480073386923344,-0.008819918326527239,0.019830870679552477,-0.004517410599031392,9.16091206370334,-1.821992110453649,-0.01200729078613694,0.00016262145361635758,-0.02697943082558468,-0.39891518737672577,-0.27334192597214824,-8.7680723977881,-0.05813993530751247,-0.013687623274161722,-0.07111353745969133,-0.0044348658777120286,-13.868714044236654,0.538289194002413,0.0030560693973689253,-0.00023837225345540072,0.054575745389785706,0.4165565577066696,-0.0825924144194681,2.5720126484172985,0.007006140457623585,0.004059171597633144,0.02015490433464049,0.0006739776207528203,2.7094302780784694,1.1326940080255734,0.010420873291165093,0.000847590713309819,-0.034210705298238435,0.16629259334829624,-0.0318635253859312,5.403036940692371,0.01904069923260941,0.011433000068013328,0.05509079779636811,0.003924856786596833,6.004496499056938,-1.168319206780745,-0.0031720294258756024,0.000479201442228719,-0.09947225331840719,-0.427154965616504,-0.40027015410691663,-5.684443544778501,-0.05791987166301158,-0.004513281624820084,-0.03431414649363369,-0.0008665330063791574,-12.12334999375793,-0.17948717948717927,-0.003870118343195257,-0.0012552472857751426,-0.0670611439842209,-0.14497041420118334,-0.05421379351598615,-0.8484635927021716,-0.004107676871279779,-0.0034696252465483204,0.007688655124552575,-0.001971662064431294,-0.9380213715858483,0.026164940828402483,0.0032301405325443917,0.0006420565355185851,-0.07803254437869825,-0.39691198224852076,0.16214325477731184,0.12555684883505536,0.007397266622132975,0.002286455251479298,-0.0024078411498283277,0.0020956218359631813,0.8893861173357458,,,0.4750000000000001,1.275,0.6,0.0,0.675,-0.075,0.7102589972224246,0.009693343588041081,0.022593343588041083,0.8013411637179404,0.2607917785403069,0.22522555599030683,1.511600160940365,0.4860173345306137,2.0494551650838693,1.5369475782688407,0.5125075868150291,0.0,0.0,0.5125075868150291,6.901642195076933,804.0,232.83450000000002,123.0,248.0,6471.551043860732,3164.247275999999,56.33114519213102,235.70550000000003,101.11111111111111,291.7667359999999,8159.915536536035,980.0,260.6789,152.0,264.0,6196.408231338497,3697.528789999999,71.03516988000004,265.9571,120.13888888888889,317.25077599999986,10264.32917335482,1370.0,443.61980000000005,250.0,343.0,11499.59299269204,5050.330045999998,106.827853913641,449.79920000000004,184.22222222222229,547.028024,15059.818232172951,1279.0,496.96800000000013,247.0,259.0,13001.401683152995,4460.250497,121.13232178909398,506.47450000000003,193.80555555555557,624.0283560000001,15841.020422728849,1210.0,585.4870000000001,257.0,259.0,16871.44173787237,4163.590403,120.214763755168,593.5870000000002,207.75000000000006,750.430652,15098.203930494614,1150.0,501.4539,232.0,251.0,14257.913994242424,4073.2401069999996,104.923955840923,508.26009999999997,186.0,638.883068,13556.020582676401,1109.0,443.0129,205.0,232.0,11829.04793244964,3877.158253,97.805961713641,449.73259999999993,178.25000000000003,555.084532,12822.35873192746,946.0,457.5129,187.0,185.0,13077.25711471603,3225.9781129999997,87.534979281829,462.2536,170.83333333333334,580.4191720000001,11108.510426504303,739.0,373.79979999999995,143.0,123.0,10823.216665377533,2502.0449650000005,69.570643012131,377.2687000000001,139.83333333333334,475.2969799999999,8719.746636562219,272.30769230769226,3.1262307692307663,0.5007663511738216,21.23076923076922,136.3076923076923,62.6941213144774,1303.9780476923083,8.436587439554359,3.0756923076923064,12.860398860398858,1.4420574358974356,1937.5978263865638,25.112426035502946,0.4978112426035447,-0.1301374536520417,8.603550295857989,49.72781065088759,-17.593766180566632,115.64392396449773,-1.0338849980729847,0.5139491124260335,1.5648513404923627,0.19537243918474703,-90.82661721473079,15.491124260355003,-0.6975431952662785,-0.1641898906129483,-2.4970414201183444,-12.124260355029586,37.955776092914064,84.96246143195322,3.8680852104715573,-0.626214201183434,1.4079918182482258,-0.3207361525312288,650.4247565229371,-153.0473372781065,-1.008612426035503,0.013660202103774036,-2.266272189349113,-33.508875739644964,-22.96072178166045,-736.5180814142004,-4.8837545658310475,-1.1497603550295847,-5.973537146614071,-0.3725287337278104,-1164.971979715879,55.44378698224855,0.3147751479289993,-0.024552342105906275,5.621301775147928,42.90532544378697,-8.507018685205214,264.91730278698174,0.7216324671352292,0.41809467455621385,2.0759551464679706,0.0694196949375405,279.07131864208236,98.54437869822489,0.906615976331363,0.07374039205795425,-2.9763313609467437,14.467455621301772,-2.7721267085760144,470.06421384023633,1.6565408332370186,0.9946710059171595,4.7928994082840255,0.34146254043392443,522.3911954179536,-86.45562130177514,-0.23473017751479458,0.035460906724925204,-7.360946745562131,-31.609467455621296,-29.619991403911833,-420.6488223136091,-4.286070503062857,-0.33398284023668623,-2.5392468405288935,-0.06412344247205765,-897.1278995380868,-13.999999999999982,-0.30186923076923006,-0.09790928829046112,-5.230769230769231,-11.307692307692301,-4.22867589424692,-66.18016023076939,-0.32039879595982274,-0.270630769230769,0.5997150997151008,-0.15378964102564094,-73.16566698369617,1.674556213017759,0.20672899408284107,0.04109161827318945,-4.994082840236688,-25.40236686390533,10.377168305747958,8.035638325443543,0.4734250638165104,0.14633313609467508,-0.15410183358901297,0.1341197975016436,56.92071150948773,0.6974691494688166,0.5937138170348616,0.4418339404823762,0.3082804183686817,0.2932607985904971,0.1780062144529256,0.18228078753247012,0.09135104562394403,0.1154883544946665,0.04752487429585541,0.07511970058573364,0.028037735321954006,0.04949656185633232,0.015639719645364914,0.03199640121155289,0.008337799368198688,7.1797489213400745,5.672836973551829,3.2701382141111495,2.1722439338594843,0.37915657534393915,-0.40805225761185515,3.241235374926264,0.9889054964267167,5.16406821655694,0.994938220397016,14.69308857831968,10.933803899432501,14.171863111827149,11.684302250881712,2.011909337172238,0.9138373315259161,3.2469072462723334,2.2220471904730967,3.0682273698656375,1.3567739855319676,3.4051178227264893,2.41792323994515,20.91391918643555,15.443250269054817,0.254846180503766,0.640941408192606,0.821062981361968,0.843012435339348,0.843012435339348,0.843012435339348,1.4960265700264277,681.4322059256328,0.0,1.0,2.0,0.0,4.0,1.0,3.0,0.0,0.0,3.8698364657434032,1.7252362183370331,0.7247349360638573,0.6028147437006908,0.6028147437006908,0.6028147437006908,236.55163920556558,768.9140697673562,41.62195749461853,19.71574537865016,37.40448076138556,,11.0,368.0,0.0,0.0,0.0,0.0,19.51033443475116,22.02982791547505,12.654640149529083,4.681802935145185,58.45783732339822,0.0,9.500000000000002,25.5,12.0,0.0,13.5,0.0,0.02499999999999991,-1.5,0.11355311355311337,0.04364429896344779,-0.06990881458966558,0.023809523809523836,0.12024999999999963,0.0,0.5564102564102565,0.7999999999999997,0.44285714285714317,0.5127659574468088,0.7761904761904759,14.205179944448492,0.19386687176082162,0.45186687176082163,16.026823274358808,5.215835570806138,4.5045111198061365,30.2320032188073,9.720346690612274,0.5937500000000003,0.10526315789473682,0.0,0.2947368421052631,0.3333333333333333,0.2647921764395219,-0.4048915881496115,-0.03184508687437014,-0.010381835593579783,-0.03114550678073934,0.7352078235604783,1.124200372171536,0.05092593147506114,0.028825650568500918,0.04323847585275138,-3.8585047707490627,0.8440953562077995,0.8339513563438581,1.397687462676234,0.7203075291622485,0.6119583769201125,1.5260673013267474,0.8486609301530085,1.1838499640286748,0.8002989000478239,0.7857465122059287,0.8986196655372839,1.0525527481981278,0.956198774568314,1.3253205064891456,1.4581905428552926,1.3991120636864673,1.213286490954758,0.8187342862722274,0.9490728512711369,0.7144356397759914,1.2691918668876,0.879737218169451,1.3815590833633569,0.7641232280566501,1.1712066182405168,0.8709426968543379,0.7313152749872192,1.0866977225672882,0.9740742233688059,1.2387463503994045,1.1767179218851023,1.3461202066336757,0.9188988095238093,0.9864014336350403,0.8208718348285851,1.31418524236009,0.8786106083045363,0.7422527539863016,0.7596225842862703,0.8341072182355429,0.7605579784785993,0.9478383171863805,0.8813618631578802,0.9769812515558515,0.7620300304587851,0.7546392883413416,0.7232785718200954,0.9550919655793397,0.8020001298785636,0.7164240460414953,0.7592525215884249,1.1520906213559892,0.930872317791443,0.9446615953104697,0.8043660388027811,0.9124678537168746,0.723687176019833,0.6915305639160925,0.7142027769832932,0.8797223433360915,1.1192128569247215,0.9754804594215536,0.990297535310497,1.1730806893850378,1.0755673845402967,1.2924291703356299,1.122758802321912,1.2721410431358717,0.9911251324854263,1.0531492114622378,0.9652672467546654,1.2298625870853697,1.0197740112994351,1.106591865357644,1.2839155695570128,1.0899758454106285,1.022197140707299,0.9687044030052974,1.0179772545038273,0.9537075444273,1.0943627450980389,0.9517888790429776,1.1179898236565133,0.968984001054473,0.9964600988700567,1.030211255259467,1.0274113196783246,1.0207767210144933,1.1107681997742664,0.8139858123973509,0.9947137975562493,0.8909014094017998,1.0338962928921567,1.0862507615197166,1.0187652470899835,0.9279958902907978,4.0,0.04611570247933884,1.7777777777777786,1.0763888888888888,0.6883333333333335,0.4483333333333335,0.44086167800453513,0.21527777777777776,0.07206632653061223,0.06469135802469136,3569.1853787221394,4060.1162001648345,1979.084681665288,1787.6662930845498,10.310462768483998,0.37604851294131436,6.433228576658803,0.6026887037548565,1.0,0.3333333333333333,1.4155657531188455,3.5601660005252156,4.560667282798391,4.682587475161558,4.682587475161558,4.682587475161558,0.1818181818181818,0.00768595041322314,0.05925925925925927,0.043055555555555555,0.02992753623188406,0.019492753623188405,0.0209934132383112,0.012663398692810458,0.005543563579277865,0.010781893004115226,0.391221505415807,14.917355371900827,6.84,3.814404432132964,117.79074795840428,1.0,3.934305909766324,90.56303584698594,,70.25537580057343,68.99674951995502,67.84281417836127,70.26591654360989,91.06634950814362,69.71522120779245,70.33199534678937,84.53663111254063,0.08772219925589084,0.15146922997981577,-0.24719968682209192,0.38547189819724315,0.34702417001596675,-0.26693944078117315,0.0843593625954936,-0.11656983236160087,0.15894906743185025,0.11574424284340294,0.12887286710742635,-0.04458925858853266,0.031248507997135303,-0.12256213890711336,-0.18010158418628608,-0.06460502143294555,-0.04885861444059391,0.332550277349601,0.035790112533603265,0.25184624438649134,-0.11183719966860024,0.06013841132751305,-0.12217198079394305,0.18439098435133738,-0.26094632768361586,-0.14979199401027127,0.012665061612409505,-0.04956004140786753,-0.11413656884875846,-0.17003723617786926,-0.26223970880407405,-0.26876476931444676,-0.17356004901960775,-0.21565644977530235,-0.11993958418385121,-0.27914969781624865,0.07709396083593884,0.038124730800572,-0.01856458179142652,0.10025327142254117,0.11918407153345459,-0.05137808928211958,0.07692498617273028,0.03238744098902542,0.05147058823529424,0.06112106456289183,0.01822751754197777,0.05453545591662884,0.16222481979349318,0.13000129816246417,0.06601090057588319,-0.06284357821089455,0.04757920136996965,-0.019821276126001885,0.16159661664543942,0.08801986293536149,0.14497126436781613,0.16706644462438708,0.10614654511456181,0.1208586014466869,-0.1673270728355474,-0.03957134221399404,0.03732051125861875,-0.18272620446533505,-0.12221646025257764,-0.24899521171795969,-0.17001306014215445,-0.2677474762208795,-0.0572287360890302,-0.10405989174819488,-0.023435118745985056,-0.2440189823283949,-0.025706214689265507,-0.0482800620063482,-0.09775945214864858,-0.12318840579710151,-0.041478555304740386,-0.03372466034762361,-0.02537625550824668,-0.018988649039400403,-0.04399509803921567,0.023316349136021316,-0.053322994354220374,-0.018880509150896188,0.003747351694915272,0.040296283309958124,0.05000376887650162,-0.14334239130434795,-0.11356341704288943,0.1008641129938751,0.003755214371310189,0.03419550859042895,0.028992417279411882,-0.007301935644661051,0.05667544826444552,0.017901577976468054,9.555797021802423,13.609121037492953,3.3019272488946267,12.199389036776092,32.29438833470292,35.20863791406261,35.33153346796468,35.33153346796468,35.33153346796468,40.98910330167739,30.738951565376812,10.250151736300582,0.0,0.0,10.250151736300582,3116.2653111726045,2480.117039567319,998.9908607808597,77.0,30.0,38.0,50.0,57.0,63.0,73.0,82.0,75.0,269.1640456080004,22.0,4.653960350157523,5.484796933490655,6.35088571671474,7.205635176410364,8.079308192051961,8.945723572455398,9.823740634445873,10.697000294715387,11.577917008477668,0.6153846153846155,0.9707692307692312,1.1384344339325112,0.5750113677846588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6635815599570094,0.9577677224736044,0.9935944123853816,0.6137738965695406,6.0,2.0,1.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,9.883888251797686,12.654640149529083,0.0,0.0,0.0,0.0,9.665781456092393,5.098681808301038,0.0,6.06636706846161,43.775802708597595,23.64452490960671,6.544756405912575,133.15250835921407,-203.60243002866852,-16.01351389325483,-5.22057512894022,-15.661725386820653,369.70414756477965,565.3116397386876,25.608443601363696,14.495170249709938,21.742755374564908,0.45454545454545453,0.9179363035005922,0.2360151969482197,35.25921866276302,0.10851971971577605,222.55784862473004,0.08206369649940785,6.0,0.22727272727272727,0.2678255494098544,0.673584687239108,0.8628798895422823,0.8859472337697595,0.8859472337697595,0.8859472337697595,1.9118000000000002,,0.7142857142857145,0.9283387622149836,1.1262479272882393,0.7125008924109377,-2.5909090909090904,0.8059210526315791,0.7013149655604256,-1.5966231412171439,79.68070000000003,0.0,0.0,24.648351516191116,0.0,12.965578028838586,20.640100371266954,48.17748790992098,0.0,0.0,3.8066624897703196,0.0,5.10594547390058,3.044522437723423,6.57507584059962,5.2832037287379885,8.130647968160584,7.273092595999522,9.740674462130217,24.000000000000007,11.95289698286722,8.12949624179332,3.344686318972033,0.0,0.0,2.505149754346183,2.6137438586545736,1.8405902777777778,37.860000000000014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.39894292336793,0.0,0.0,0.0,45.28845188745807,12.965578028838586,0.0,11.126902983393991,37.05058492652699,0.0,10.902924932081056,0.0,22.425443343601692,25.879680838323367,25.96705115989856,181.12607169397188,,140.43932302971825,137.90066516368853,135.57300356399367,140.46058299797866,182.9099717435599,139.34985031032176,140.5938591970227,169.55224916744638,25.96705115989856,181.12607169397188,,139.79646588686114,137.0651602776951,134.55938042943433,139.81933219480882,184.7236081071962,138.62452136295332,139.96267572801827,170.66988536629833,4.746726845604659,134.65535178109877,,104.9799973829785,103.31547632853284,101.79230452138202,104.99395156095797,133.05723419295387,104.26523926859949,105.0814342286032,124.12389119226864,1.298352557994928,9.056303584698593,,7.021966151485913,6.8950332581844265,6.778650178199683,7.0230291498989335,9.145498587177995,6.967492515516088,7.029692959851135,8.477612458372318,2.430350337684274,90.56303584698594,,70.25537580057343,68.99674951995502,67.84281417836127,70.26591654360989,91.06634950814362,69.71522120779245,70.33199534678937,84.53663111254063,37.35294117647057,0.0,4.20433810637815,0.0,0.0,0.0,0.0,38.750182083029884,2.8693217750062985,0.0,0.0,0.0,0.0,2.2064433508711105,0.0,0.0,0.0,23.937181966212083,461.5903799295399,55.20706437163497,138.8464740204834,177.86602402913726,182.62091153130075,182.62091153130075,182.62091153130075,587.0,114.81896787891958,41.26627599445378,68.95982499702225,49.74,49.74,0.8333333333333334,8.577415526443838,5.459431618637297,3.7359884459637454,4.398155391534962,,4.389381065102121,4.391503443627491,4.393483933946012,4.389363457730661,4.359513792116007,4.390287062996547,4.3892531422645344,4.367946376370004,0.18679942229818727,0.2199077695767481,,0.21946905325510607,0.21957517218137457,0.2196741966973006,0.21946817288653303,0.21797568960580035,0.21951435314982737,0.2194626571132267,0.21839731881850022,2.0111596082996357,2.1743324043864334,,2.172335410259097,2.172818819092134,2.1732696997290555,2.172331398894735,2.1655077161328418,2.172541795713404,2.1723062661269745,2.167440142455124,213.72999999999968,183.0006810733206,106.09168360746442,,106.71001198240468,106.53661299563404,106.37377784358618,106.71144592645807,109.04534059437643,106.63612684774381,106.72042833335142,108.40601380045642,9.15003405366603,5.3045841803732205,,5.335500599120234,5.326830649781702,5.318688892179309,5.335572296322903,5.452267029718821,5.331806342387191,5.336021416667571,5.420300690022821,5.902637055106575,5.35745084052029,,5.3632621674778385,5.361635890625811,5.3601062782555084,5.3632756051524515,5.384910945053817,5.3625695358884435,5.363359776337565,5.37903074589064,1.8405902777777778,9.528355772864701,5.4619602370332885,3.80920351473923,0.0,6.523314436885865,6.484918587805493,1.8139857331821618,4.20433810637815,237.3919097645245,66.95662508140599,-102.38283710221515,-8.052502045954537,-2.625200951338851,-7.875602854016549,185.90819132565576,284.27072071390586,12.87737631279994,7.288992838818099,10.93348925822715,871.0,25.0,1.2859126777490135,0.7621281942207405,0.0,0.0,0.13608276348795434,0.050296115882772816,0.0,0.0,0.0,0.0,0.0,0.0,0.24056261216234406,0.0658986315243488,0.37422759959187446,0.11232029710468172,0.4742806422579993,0.13358543853063967,13.94938298937633,11.874276340697232,9.720346690612276,6.782169204110997,8.797823957714913,5.3401864335877685,6.926669926233865,3.471339733709873,5.7744177247333255,2.3762437147927704,4.281822933386818,1.5981509133513783,3.1182833969489363,0.9853023376579896,2.3357372884433607,0.6086593538785042,2.4382656975883177,1.1285324570327275,3.7572207614473276,1.3687425600698433,5.136945757884789,1.6495127096108375,70.61864183959686,30.553230434226464,23.158623764160843,22.71124553834846,22.71124553834846,22.71124553834846,104.0,120.0,43.21906699999998,24.190932999999994,0.38461538461538464,104.05,5.666666666666666,4.3888888888888875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,15.0,39.0,0.0,1.0,41.0,15.0,0.0,6.0,35.0,15.0,22.0,26.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,4.0,1.0,2.0,20.0,5.0,0.0,5.0,0.0,0.0,3.0,5.0,0.0,0.0,0.0,2.0,3.0,3.417726683613366,7.299931964962929,4.034240638152395,4.634728988229636,5.261394012443439,5.6599176610092625,6.023863668617153,6.475757683157172,6.903209807712399,6.99525449268925 +2796,CCOC(=O)C(C)(C)Oc1ccc(Cl)cc1,0,29.93548387096774,6.205125806451614,2.935483870967742,6.954998008761449,161.92936576348822,121.64570693548386,1.5102582442817745,6.3263354838709684,4.208280172180676,7.851416935483875,216.18071860522807,25.548387096774192,6.316935483870967,3.3870967741935485,6.551971326164875,144.436058798629,97.12443306451605,1.7719182145161276,6.486870967741938,3.084445108190628,7.802626129032261,255.86650584804843,22.41509433962264,6.29150943396226,3.0377358490566038,5.012578616352201,155.24241732962994,84.9851781132075,1.4337741681224525,6.410926415094339,3.171529233636153,7.868210339622647,205.20311217230724,20.15625,6.551125000000002,2.609375,3.791666666666667,160.03174537380656,73.04146242187507,1.2918208028873752,6.648503125000003,3.5664785879629646,8.186927249999997,181.81869659787262,16.07936507936508,6.38042857142857,2.4603174603174605,2.557319223985891,162.86157188061298,55.873198380952374,1.2111063568149045,6.461071428571429,3.280700894898427,8.049418761904763,166.4970368673181,17.428571428571427,6.175625000000001,2.4107142857142856,2.583333333333333,152.8581214062758,61.65761958928572,1.368644428030321,6.292953571428574,3.1704144620811294,7.749050964285713,184.59990662983586,10.567567567567568,5.751824324324326,1.7567567567567568,1.5555555555555556,164.2485671156327,34.92880983783783,1.0240386964645405,5.821851351351355,2.4408992325658994,7.435493486486488,124.40124771940232,12.03448275862069,5.555603448275862,1.7413793103448276,1.218390804597701,169.6039168390098,43.3681124137931,0.9816673058529306,5.64396551724138,2.0021640414360715,7.328619896551726,114.95052475369764,19.655172413793103,5.940551724137931,1.6896551724137931,0.8045977011494254,161.2067060755564,67.41677762068966,1.308729117220551,6.236562068965518,2.196679438058749,7.882094896551727,152.1597765125369,12.886576482830387,0.1424110301768991,0.0236862679035942,0.6368366285119671,4.165259952981077,1.2761735365364821,60.352465935483885,0.26250474570630594,0.14389386056191455,1.384180513744304,0.10704611238293439,52.04040864007608,0.2414151925078052,0.00243496357960452,-0.012575770085645595,0.2081165452653485,1.8644930049716724,-0.2151795262617134,1.0759881290322502,-0.03096638322580631,0.003648907388137253,-0.1274893158275631,-0.002159925078043693,-2.941390188572867,2.302711405179355,0.02620911589735528,-0.0020672517082001556,-0.07019024993619068,0.6626068669733874,-0.0594532729307822,10.854888301886792,0.015569384013724544,0.027404556966995768,0.23726409573221038,0.01191153156107044,6.852902085306517,-1.5690361602497398,-0.006002260015608832,0.0057851097260681475,-0.0430866285119667,-0.7810380294446372,-0.002712871305083339,-7.290316312500005,-0.000626897356453601,-0.01196634040062448,0.09394938080763038,-0.00611699443938597,-3.8245789168313427,-2.656673769056704,-0.05926510083742138,-0.004782310131272986,-0.1263399567249723,-1.7139504765819944,0.26312733912169456,-12.108991095238098,0.03793557704326854,-0.05988664089985636,-0.5048430436450748,-0.04087873911104497,1.166075097812691,-2.020217035825777,-0.01711005091422627,0.0015249237972278752,-0.08268916307417866,-0.943393309071422,-0.41848816080849144,-9.92027114285714,-0.09373963451222292,-0.014584067935186571,-0.1677108681917899,-0.0012559021294782165,-20.06270446232579,0.49877661220012914,-0.00529782180723902,-4.158624344315041e-05,0.03971088674522598,0.1972530977040169,-0.12139071399678146,2.3085407567567646,-0.005180452664413645,-0.002916266839159548,-0.05120570882522059,-0.0028403822172849815,-1.9224062333693601,4.451577021062829,0.016412940902077667,-0.0016463024464881118,-0.011697585130431658,0.48524334972838074,0.2339485144439574,21.203673482758628,0.09572912728264563,0.023478553231188918,0.05892851237304869,0.006863164035307961,20.143090616506534,-6.010047005633498,0.011220671714090955,0.002197761350423216,0.014998744124295806,-0.33491347747331085,-0.23106713804423418,-28.96118200000001,-0.1827111429587963,0.007323158347985243,-0.04577769178035791,0.022812242455775254,-26.839093133050323,,,0.48214285714285715,1.125,0.53125,0.0625,0.59375,-0.0625,0.7935860098526952,0.028792998427251915,0.03416799842725191,0.7388017032717218,0.2206953788487945,0.245149970372272,1.532387713124417,0.4658453492210665,1.9355528532543838,1.472855602296092,0.0,0.35282139860045786,0.10987585235783431,0.46269725095829217,7.808741032903225,928.0,192.35890000000003,91.0,215.60493827160494,5019.810338668135,3771.0169149999997,46.81800557273501,196.11640000000003,130.45668533760096,243.3939250000001,6701.60227676207,792.0,195.825,105.0,203.11111111111111,4477.517822757499,3010.857424999998,54.92946464999996,201.09300000000007,95.61779835390948,241.8814100000001,7931.861681289502,1188.0,333.4499999999998,161.0,265.66666666666663,8227.848118470387,4504.214439999997,75.99003091048998,339.77909999999997,168.0910493827161,417.0151480000003,10875.764945132283,1290.0,419.2720000000001,167.0,242.66666666666669,10242.03170392362,4674.653595000004,82.67653138479201,425.5042000000002,228.25462962962973,523.9633439999998,11636.396582263847,1013.0,401.96699999999987,155.0,161.11111111111111,10260.279028478619,3520.0114979999994,76.29970047933898,407.0475,206.6841563786009,507.113382,10489.31332264104,976.0,345.83500000000004,135.0,144.66666666666666,8560.054798751446,3452.8266970000004,76.64408796969798,352.4054000000001,177.54320987654324,433.9468539999999,10337.594771270808,782.0,425.6350000000001,130.0,115.11111111111111,12154.393966556821,2584.7319279999997,75.778863538376,430.81700000000023,180.62654320987656,550.226518,9205.692331235772,698.0,322.225,101.0,70.66666666666666,9837.027176662568,2515.35052,56.936703739469976,327.35,116.12551440329214,425.0599540000001,6667.130435714463,570.0,172.276,49.0,23.333333333333336,4674.994476191136,1955.086551,37.95314439939598,180.86030000000002,63.703703703703724,228.58075200000007,4412.63351886357,399.483870967742,4.414741935483872,0.7342743050114202,19.74193548387098,129.1230585424134,39.561379632630945,1870.9264440000004,8.137647116895485,4.460709677419351,42.90959592607342,3.318429483870966,1613.2526678423585,7.483870967741961,0.07548387096774012,-0.38984887265501345,6.451612903225803,57.799283154121845,-6.670565314113116,33.35563199999976,-0.9599578799999956,0.11311612903225485,-3.952168790654456,-0.06695767741935449,-91.18309584575887,122.0437044745058,1.3890831425598298,-0.10956434053460824,-3.720083246618106,35.11816394958954,-3.151023465331457,575.30908,0.8251773527274009,1.4524415192507758,12.57499707380715,0.6313111727367333,363.2038105212454,-100.41831425598335,-0.3841446409989652,0.37024702246836144,-2.757544224765869,-49.98643388445678,-0.1736237635253337,-466.58024400000033,-0.04012143081303046,-0.7658457856399667,6.012760371688344,-0.3914876441207021,-244.77305067720593,-167.37044745057236,-3.733701352757547,-0.3012855382701981,-7.959417273673255,-107.97888002466564,16.577022364666757,-762.8664390000001,2.389941353725918,-3.7728583766909507,-31.80511174963971,-2.575360563995833,73.46273116219953,-113.13215400624352,-0.9581628511966711,0.08539573264476101,-4.630593132154005,-52.830025307999634,-23.43533700527552,-555.5351839999998,-5.249419532684484,-0.816707804370448,-9.391808618740235,-0.07033051925078013,-1123.5114498902442,36.909469302809555,-0.39203881373568744,-0.0030773820147931303,2.9386056191467222,14.59672923009725,-8.982912835761828,170.83201600000058,-0.3833534971666097,-0.21580374609780656,-3.7892224530663237,-0.21018828407908863,-142.25806126933264,258.1914672216441,0.9519505723205046,-0.09548554189631048,-0.6784599375650362,28.144114284246083,13.569013837749528,1229.8130620000004,5.552289382393447,1.3617560874089571,3.417853717636824,0.3980635140478617,1168.299255757379,-174.29136316337144,0.3253994797086377,0.06373507916227326,0.4349635796045784,-9.712490846726014,-6.700947003282791,-839.8742780000003,-5.298623145805093,0.21237159209157205,-1.3275530616303794,0.6615550312174824,-778.3337008584593,0.7613623922421695,0.6484466342727703,0.4658453492210666,0.3406620257043029,0.3185602592459858,0.19196357032985326,0.2085812974100351,0.09190141392514399,0.13208762811348027,0.05079261566356173,0.08986436812468426,0.029749264486342648,0.05394710783325295,0.013736355886102038,0.03799369086118934,0.008982028338215113,17.00110224159424,5.70008914344609,3.555415921732667,2.196420703686359,0.4734685936373613,-0.510038447239906,4.0230240952339695,0.977803679287502,6.028381990822665,0.7739968111156108,13.642913092403466,10.959672479340808,35.45051702099373,11.711528383493023,2.2077315340900645,0.7412011241948204,3.5015685852387577,2.2473260361213714,7.0082700443464745,1.1940998170144708,3.7144798022178116,2.4436112300587642,22.455859159616907,14.701163542101657,0.2968552299711269,0.5834397165498446,0.7109763133123105,0.8132647873025657,0.8132647873025657,0.8132647873025657,2.3913762142650117,357.0315516842347,0.0,1.0,4.0,0.0,6.0,0.0,0.0,1.0,0.0,3.4315418208046813,1.9615688808765719,1.3073975810638974,0.7827310485964647,0.7827310485964647,0.7827310485964647,53.30430987884807,642.6799416199979,31.349325470220535,20.73161101999993,43.70288385542254,,10.0,236.0,5.601050810983688,4.794537184071822,5.969305287951849,17.37902711153815,0.0,0.0,45.03667987291831,0.0,0.0,21.074665797832616,7.714285714285714,18.0,8.5,1.0,9.5,0.0,0.01785714285714285,-1.0,0.16943164362519175,0.04909702329057153,-0.12033462033462022,0.0,0.17019335347432007,0.0,0.6027649769585255,0.8866071428571426,0.43333333333333374,0.553667953667954,0.8866071428571426,12.697376157643124,0.46068797483603063,0.5466879748360306,11.820827252347549,3.531126061580712,3.922399525956352,24.518203409990672,7.453525587537064,0.5438066465256799,0.3302469135802469,0.06481481481481481,0.19444444444444445,0.4166666666666667,0.44002464014763504,-0.6363737765384313,-0.0442627503515288,-0.020528186339949392,-0.057852161503493746,0.5599753598523649,0.8098492720729331,0.026282655094250047,0.026124170066868808,0.04049246360364665,-3.4589857243137585,0.6249999999999999,0.7079177535675921,1.5726615776523647,1.078431372549019,0.44362300603279164,1.3785877802902475,0.6323150543533779,1.1371035258497295,0.6692953529743569,0.6746207590855293,0.7304515911986894,1.0655643268126995,0.600066732485008,0.8531321978966886,1.3963099971935695,1.6199593044765068,0.9268835627200146,1.102947746191735,0.6014154322057335,0.8940353202893522,0.7920539324481315,0.5811684357205917,0.8839899464926693,0.8292569571203771,1.0977054566375968,1.5173735176132743,1.6379817130921874,1.1040900735294112,1.4667810441263553,0.9823441986806822,1.0921337629979666,0.9422693524313503,1.4575542980105876,1.027957491612647,1.5059041933205988,0.9716860845291697,1.1097652885443583,1.8591767841093771,1.5600472937642156,1.4351851851851845,1.6882982698242328,0.7489833274738354,1.1014677534499888,0.7609698901703824,1.7539329568769417,2.2925741622772557,1.7694697876888903,0.8718745490383015,0.7851649017165004,1.0234925219128614,0.8742958538303426,1.1532738095238089,1.1249061506981857,1.4125519341081898,0.7984047022462355,1.2827092018981279,0.9469225154807879,1.2797842839271238,0.8536909217957499,1.3413303065789648,0.6494866959983239,0.86406905491607,0.6913156619443208,0.5749867514573395,0.809069043505921,1.0252362222639948,0.6565860587087836,0.8869521961859967,0.8281178355862696,0.8898513518652253,0.7625178013734294,0.9963292598934309,0.609838612670409,0.6113939594134624,0.4908931357864626,0.7205037187288705,0.7220086822682887,0.6659324089130199,0.607510048457668,0.5547853301569572,0.6196864578081076,0.7610117179432793,0.6320787339587507,0.6075890054251215,2.651697407110398,0.53182317410093,0.23146299261600758,0.4192021636240701,0.6816786654601933,1.0429505384960716,2.6455034163333164,2.010227794434037,0.8582289863442474,0.6009891099611279,0.790918387540996,1.5966773520482511,5.0,0.0,2.444444444444445,1.125,0.9822222222222223,0.3125,0.28326530612244905,0.13368055555555555,0.05744520030234315,0.035625000000000004,2919.6480573191543,3303.2038662691066,1511.8651970059598,1362.3715910458563,9.053993740177441,0.4034212001177207,5.401420719656727,0.6762244990893514,1.0,0.4166666666666667,1.5226544895821936,2.992627429510303,3.6467987293229776,4.17146526179041,4.17146526179041,4.17146526179041,0.3125,0.0,0.11111111111111116,0.05357142857142856,0.05777777777777779,0.01953125,0.025751391465677183,0.014853395061728395,0.011489040060468629,0.017812500000000002,0.6243978940481917,14.0625,6.074380165289257,4.423611111111111,100.3129345918158,1.0,3.6587355953573777,60.73983202929713,,45.80006431610161,46.049488639181384,48.90518382540726,45.78916509496838,81.32910287753528,46.56824577053693,46.79305680486473,63.81283911075328,0.018733850129199026,0.017098138933338763,-0.5309308387809514,0.3267973856209147,0.4476294459454456,-0.16861306092093695,0.017828403733866807,-0.11796504151758055,0.025358325740153478,-0.09210454457467812,-0.020177520042176093,-0.05652127386078432,0.1786907025498514,0.18403852471819795,-0.08727637957208391,-0.11021704279195949,0.1590793550590185,-0.04658713821330098,0.17985823998460224,0.05931086682578986,0.19044980001217046,0.17141123818481926,0.11127477024536402,0.1316842481522931,-0.12175740875322995,-0.042147437653902144,0.24423897211727066,-0.06765727124183003,-0.18751243338021392,-0.002125785582771161,-0.12079566591849407,-0.0023881372306883268,-0.08316088229126085,0.06787364789111994,-0.05714354592816731,-0.07349248433622121,-0.20615822771830525,-0.41615527086493154,-0.2019022224496291,-0.19838676211225215,-0.4114870370468282,0.2061846070212509,-0.2006378845925281,0.14451387132524987,-0.41618621299057007,-0.36472341478022946,-0.3818797170775347,0.02240710878881727,-0.15676910299003322,-0.1201455455590247,0.06438007893157706,-0.12984360410830986,-0.2264908600473388,-0.3279241802366962,-0.16437225868221858,-0.3570969136577064,-0.10135295472812302,-0.12116256985739556,-0.011732346943955306,-0.38552165493327034,0.038705129548152785,-0.03720092327580392,-0.0017557110986167659,0.06235647412117997,0.047356731615956604,-0.09512085192287738,0.03825097650897262,-0.01973470098788084,-0.02026679128471043,-0.036993519498916806,-0.026534193106650398,-0.036940644464673246,0.34544295197362546,0.11525048924714582,-0.06950451008950627,-0.018368266846968656,0.11649773488473199,0.1833202991176972,0.35133068970910186,0.364675796717781,0.1631657746863118,0.04257285215903162,0.0641140895500854,0.38706634215386293,-0.46638042412902053,0.07879074886371472,0.09278630805698704,0.023551949515438337,-0.08040638069506639,-0.1810624742081295,-0.4798674180266171,-0.6960298659256093,0.05089277832555086,-0.0330720533382789,0.21310668783719464,-0.5157356337971116,3.3091761975324276,6.244149055514048,0.7937005259840998,17.75935183280192,31.315297462825146,36.759154622917116,37.288018487644294,37.288018487644294,37.288018487644294,30.96884565207014,23.56568963673747,0.0,5.645142377607326,1.758013637725349,7.403156015332675,2445.803143121054,1952.4265311082597,704.4953802815087,6.0,22.0,24.0,25.0,28.0,21.0,22.0,18.0,10.0,242.07097202,16.0,4.343805421853684,5.1298987149230735,5.983936280687191,6.799055862058796,7.653969180478774,8.480736654405622,9.335297611380566,10.167427498042906,11.021624652135246,0.6881720430107529,0.9849032258064514,1.1256275616331772,0.6518191657647153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6688795634537381,0.9750790638836181,1.013427155040763,0.6225471527153106,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,9.473725907600098,5.749511833283905,5.601050810983688,0.0,0.0,0.0,4.794537184071822,0.0,0.0,11.600939890232516,45.03667987291831,5.022633313741326,6.606881964512918,195.54038383842453,-282.79501004144265,-19.669705747792587,-9.122419678756213,-25.708637276494784,248.8446937172726,359.88493157855527,11.679619722427946,11.609191341243717,17.99424657892776,0.5,0.916256009017717,0.3292473508644457,23.80860964966829,0.24157793469948327,7.334092883936893,0.08374399098228293,5.0,0.25,0.3073464179022993,0.6040591131271921,0.7361029924626055,0.8420064528013543,0.8420064528013543,0.8420064528013543,3.060500000000001,,1.3970588235294117,0.9737506309944473,0.651063470230343,1.4089815045739373,-3.0129378388890156,0.9692007653812189,0.9552685733186849,-1.1136948044364676,62.79200000000004,14.268263091671919,0.0,0.0,0.0,26.37226241005556,6.606881964512918,29.288101587587764,0.0,5.749511833283905,3.4965075614664802,0.0,4.795790545596741,0.0,6.285998094508865,0.0,7.85748078694253,0.0,9.467537463415244,21.33333333333334,6.836174571680524,0.0,0.0,0.0,0.0,0.0,1.211799912866382,0.0,30.531999999999993,0.0,11.56280248313317,0.0,0.0,0.0,0.0,0.0,-0.384305555555555,34.89445441062849,4.736862953800049,0.0,5.749511833283905,18.177238063448456,9.53140013787187,0.0,20.771211599071872,24.26546827384644,5.022633313741326,0.0,0.0,20.206394138706177,20.73526646706588,19.012054136297287,121.4796640585943,,91.42549627926206,91.97725844948846,97.72898471703573,91.402207501865,163.788057444654,93.01534144540122,93.46670503806465,128.0433137731702,19.012054136297287,121.4796640585943,,90.20306980867386,91.1252266473683,97.15930418058414,90.1693486853628,165.6711435939597,92.1672907756927,92.63084503641082,128.73937302594305,4.661474924435174,91.02477882989007,,68.70774602529588,68.52521792022192,73.25036847145981,68.70540929370756,127.40365588675095,69.46526970899376,69.85465509313966,97.9579819188107,1.1882533835185805,7.5924790036621435,,5.714093517453879,5.748578653093029,6.108061544814733,5.712637968866563,10.236753590290874,5.813458840337576,5.84166906487904,8.002707110823138,2.330737462217585,60.73983202929713,,45.80006431610161,46.049488639181384,48.90518382540726,45.78916509496838,81.32910287753528,46.56824577053693,46.79305680486473,63.81283911075328,30.22745098039216,0.0,5.092729482518443,5.747994286412997,0.0,0.0,0.0,31.416241806263653,0.33952496430671064,0.0,10.450581914350103,0.0,0.0,0.0,-0.9961909486016625,0.0,0.0,19.29896173417463,407.1704976282117,47.202289177048,92.77145031481939,113.0507606090123,129.3154231155027,129.3154231155027,129.3154231155027,208.0,100.91575187596587,37.2145799274854,47.90331445192986,35.53,35.53,1.0,6.519423798380426,5.0,3.566553404620964,3.9347029053611933,,3.935977200031042,3.929062715056734,3.931080477905896,3.936118262186338,3.9361249816821697,3.9305952329347664,3.930982176705672,3.934855521423867,0.22290958778881026,0.24591893158507458,,0.2459985750019401,0.24556641969104587,0.2456925298691185,0.24600739138664612,0.2460078113551356,0.2456622020584229,0.2456863860441045,0.24592847008899169,1.7416033258275148,1.8398390077212585,,1.840162815743925,1.8384045317859696,1.8389179481052274,1.8401986542715414,1.8402003614077727,1.8387945024202121,1.8388929416394824,1.8398777941574005,181.72999999999965,79.33687787920172,70.1481686946092,,70.07083558449467,70.54161040838457,70.3443864091814,70.05914488036416,69.32989172777548,70.4342578653172,70.40407616431978,69.76293061430731,4.958554867450108,4.384260543413075,,4.379427224030917,4.408850650524036,4.396524150573837,4.37869655502276,4.333118232985967,4.402141116582325,4.400254760269986,4.360183163394207,4.843706692400619,4.720613329888363,,4.719510296553432,4.726206383512137,4.723406614443671,4.719343441407676,4.708879780505211,4.724683391454953,4.724254790794949,4.715106417916866,10.450581914350103,11.56280248313317,0.6261952265474096,-0.9961909486016625,0.20129913076341732,6.836174571680524,0.0,5.432254446825154,0.0,223.8877357796982,86.89522863730907,-125.66988246963064,-8.74092371423055,-4.053867176439697,-11.42453476996642,110.58286851687389,159.92749323066303,5.190248716172193,5.1589513945375165,7.996374661533151,468.0,21.0,1.7474002407106255,0.9569385753791204,0.2041241452319315,0.10206207261596575,0.4927992798267444,0.07568735753865524,0.14433756729740643,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.1422588984322123,0.042837269708098466,12.181798275874712,10.375146148364324,7.453525587537065,5.450592411268846,7.008325703411688,4.2231985472567715,5.005951137840842,2.2056339342034557,3.3021907028370063,1.2698153915890433,2.5162023074911595,0.8329794056175941,1.132889264498312,0.2884634736081428,0.8358611989461654,0.19760462344073249,3.125458033246186,1.0355274196891167,3.5137159026920526,1.0518185949381835,4.75697752581145,1.1517958222852571,56.30541835318775,35.24807158679471,25.899498097761498,24.08140744246489,24.08140744246489,24.08140744246489,76.0,84.0,34.62789499999998,19.898104999999997,0.1935483870967742,16.04,7.145833333333333,3.6249999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,31.0,0.0,0.0,31.0,6.0,1.0,4.0,27.0,7.0,16.0,24.0,0.0,0.0,0.0,12.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,3.0,0.0,0.0,16.0,4.0,0.0,0.0,3.0,0.0,1.0,4.0,0.0,0.0,1.0,0.0,1.0,3.044522437723423,3.498399709618518,3.5409593240373143,3.8969093676180977,4.210274029229161,4.67107496087581,4.454347296253507,4.549260991548575,4.686173970141178,4.251170232498662 +5310993,Cc1cnc(C(=O)O)c[n+]1[O-],0,30.11764705882353,7.18469411764706,3.411764705882353,12.823529411764707,167.59447245370552,119.52807123529409,1.397099378182,7.178764705882353,11.006535947712418,8.588958823529412,227.25909143635283,29.529411764705884,7.008529411764706,3.8823529411764706,10.529411764705882,153.9541471691559,113.82924676470589,1.6568805609411765,7.096329411764707,4.758169934640523,8.355466588235295,262.86604594687924,27.115384615384617,6.89723076923077,3.5384615384615383,9.576923076923077,159.87394170635568,104.42452826923076,1.4484697374825768,6.9615230769230765,5.773504273504273,8.295866923076922,230.88622924517082,25.103448275862068,7.178789655172414,3.0,7.758620689655173,165.2364679255862,93.73967537931034,1.3153776535172415,7.206441379310345,6.122605363984674,8.57565351724138,209.26610294702866,17.620689655172413,6.990379310344828,2.0689655172413794,5.517241379310345,172.02760408682917,61.739905517241375,0.9871417348464482,6.974268965517242,5.75095785440613,8.525315862068966,148.09264676425784,18.352941176470587,6.859058823529413,1.8823529411764706,7.352941176470588,171.14539525273207,67.08293017647057,0.8961316491908823,6.833982352941176,9.156862745098039,8.446808705882354,136.88918138929236,16.125,6.505,2.0,1.375,161.15984705024988,56.23742324999999,1.0140297663561249,6.5489999999999995,5.208333333333334,8.090991,147.18785558626428,7.714285714285714,7.385714285714286,1.0,0.0,180.6040296985428,15.552720000000003,0.617450318,7.288285714285714,5.857142857142857,9.134948571428572,86.68834287475991,1.0,4.840000000000001,1.0,0.0,184.917652024249,1.016064,0.4446129048489999,4.840000000000001,1.0,6.718464,31.083744430930263,7.9723183391003465,0.2275121107266435,0.06760490822730124,0.698961937716263,5.501730103806229,1.5260589580762411,37.332515439446375,0.19655919274752248,0.20295155709342552,4.707420222991158,0.15232600692041517,40.60470166450583,-0.08996539792387566,-0.006060207612456753,-0.014774280952019854,0.2006920415224914,1.4567474048442908,-0.3868977330378888,-0.3848444982698991,-0.006766073993079526,-0.0053280276816609125,-0.6059207996924258,-0.0053052179930795865,-1.5686472749772353,1.8398988554697895,0.020968432259781733,-0.01005954895770762,-0.1469257386212403,0.7675006654245407,-0.49224428489654287,8.63499978906042,-0.007077353995425161,0.024431248336438616,0.7141484044598234,0.012349278147458061,5.042341746686489,-1.7573081971125166,-0.03183117766376326,-0.005651681962663438,-0.13709581195561388,-1.2481804080658634,0.07039507209833397,-8.339807617945356,-0.043084926830045805,-0.03000713518673192,-0.3869334075753358,-0.0204193943443503,-9.67307524483307,-2.262379191027323,-0.040153895716501596,-0.0032881161989706397,-0.045817921489082473,-1.5301276697291493,0.18648758389245748,-10.625340411048802,-0.01794657428754484,-0.0399564252475838,-1.5951822243434226,-0.025285219902159633,-8.3199811107402,2.85121107266436,0.08961522491349479,0.018170084138052413,-0.15224913494809691,2.1003460207612457,0.08540015903868836,13.166912010380626,0.020562971619830412,0.08189238754325259,2.5132641291810844,0.06109161245674738,7.9508294542488045,-1.141435986159169,-0.022788581314878896,-0.009369723452195994,-0.22837370242214536,-3.4796712802768166,-0.7477501574679546,-5.627431799740482,-0.12658767936864748,-0.017819204152249076,-0.6232698961937717,-0.021993801038062304,-19.042247933219663,-11.148788927335639,-0.31488521997034097,-0.009596368555164629,0.4186851211072663,-5.8210578348986655,0.2807438639502278,-51.27505718734553,0.07278051784071271,-0.29632970835392974,-5.053825451749328,-0.19371014137419662,-15.25626046700924,13.733564013840832,0.19153494809688573,0.010188137665630918,0.41868512110726636,7.321799307958478,0.5065020700025212,64.93420803114189,0.18395404944888916,0.19463667820069222,2.279507881584007,0.09771140484429051,65.39749814556059,,,0.43636363636363634,1.3863636363636365,0.7272727272727273,0.045454545454545456,0.6590909090909091,0.06818181818181818,0.4621091630662581,0.02774115064477031,0.03555933246295213,0.8305990740120396,0.2977436175802129,0.16671646471802545,1.2927082370782976,0.4644600822982383,1.9304715758938067,1.0892720438425636,0.37190783116381626,0.4692917008874268,0.0,0.8411995320512431,9.061049532470589,512.0,122.13980000000001,58.0,218.0,2849.106031712994,2031.9772109999997,23.750689429094,122.039,187.11111111111111,146.0123,3863.404554417998,502.0,119.14500000000001,66.0,179.0,2617.2205018756504,1935.097195,28.166969536,120.63760000000002,80.88888888888889,142.042932,4468.722781096947,705.0,179.32800000000003,92.0,249.0,4156.7224843652475,2715.037735,37.660213174546996,180.9996,150.11111111111111,215.69253999999998,6003.041960374441,728.0,208.1849,87.0,225.0,4791.857569842,2718.450586,38.145951952000004,208.9868,177.55555555555554,248.693952,6068.716985463831,511.0,202.721,60.0,160.0,4988.800518518046,1790.45726,28.627110310546996,202.2538,166.77777777777777,247.23416000000003,4294.686756163477,312.0,116.60400000000001,32.0,125.0,2909.4717192964454,1140.4098129999998,15.234238036245,116.17769999999999,155.66666666666666,143.59574800000001,2327.11608361797,129.0,52.04,16.0,11.0,1289.278776401999,449.89938599999994,8.112238130848999,52.391999999999996,41.66666666666667,64.727928,1177.5028446901142,54.0,51.7,7.0,0.0,1264.2282078897997,108.86904000000001,4.322152226,51.018,41.0,63.94464,606.8184001233194,3.0,14.520000000000001,3.0,0.0,554.752956072747,3.0481920000000002,1.3338387145469996,14.520000000000001,3.0,20.155392,93.25123329279079,135.52941176470588,3.8677058823529396,1.149283439864121,11.882352941176471,93.52941176470588,25.9430022872961,634.6527624705884,3.3415062767078823,3.450176470588234,80.02614379084969,2.589542117647058,690.2799282965991,-1.5294117647058862,-0.10302352941176479,-0.2511627761843375,3.4117647058823537,24.764705882352942,-6.57726146164411,-6.542356470588285,-0.11502325788235195,-0.09057647058823551,-10.300653594771239,-0.09018870588235298,-26.667003674613,47.837370242214526,0.5451792387543251,-0.2615482729003981,-3.820069204152248,19.95501730103806,-12.798351407310115,224.5099945155709,-0.1840112038810542,0.635212456747404,18.567858515955407,0.3210812318339096,131.10088541384872,-50.96193771626298,-0.9231041522491346,-0.1638987769172397,-3.9757785467128026,-36.19723183391004,2.041457090851685,-241.8544209204153,-1.2494628780713284,-0.8702069204152256,-11.221068819684739,-0.5921624359861587,-280.519182100159,-65.60899653979237,-1.1644629757785463,-0.09535536977014855,-1.3287197231833918,-44.37370242214533,5.408139932881267,-308.13487192041526,-0.5204506543388003,-1.1587363321799302,-46.260284505959255,-0.7332713771626294,-241.2794522114658,48.47058823529412,1.5234588235294113,0.30889143034689104,-2.5882352941176476,35.705882352941174,1.4518027036577021,223.83750417647065,0.349570517537117,1.3921705882352942,42.72549019607843,1.0385574117647054,135.16410072222968,-9.131487889273352,-0.18230865051903117,-0.07495778761756795,-1.8269896193771629,-27.837370242214533,-5.982001259743637,-45.01945439792386,-1.0127014349491799,-0.1425536332179926,-4.986159169550174,-0.17595040830449843,-152.3379834657573,-78.04152249134947,-2.204196539792387,-0.0671745798861524,2.930795847750864,-40.74740484429066,1.9652070476515946,-358.92540031141874,0.509463624884989,-2.074307958477508,-35.3767781622453,-1.3559709896193763,-106.79382326906467,41.200692041522494,0.5746048442906572,0.030564412996892755,1.256055363321799,21.965397923875432,1.5195062100075636,194.8026240934257,0.5518621483466675,0.5839100346020767,6.838523644752021,0.29313421453287153,196.19249443668178,0.7664292200289224,0.5304854993502052,0.4644600822982384,0.2695040246152821,0.31811445928084686,0.14159198433726375,0.21067925271987822,0.07391537053903631,0.12909913985117727,0.03624277988798028,0.08720273368333013,0.019738705169177896,0.06520637699193851,0.011079519607848353,0.048041047588395065,0.0040287609185611665,8.028804148271057,5.784424791133359,3.554955093308879,2.266586095059952,0.5315799615049427,-0.6468503669704992,3.1797472495906627,0.9728999117595329,7.004056775776343,0.9959529595885428,14.56093428748573,11.06507893587196,16.014152442727397,11.810117718713869,1.9092880314855323,0.741484015473467,3.501019166670011,2.3112440720452034,8.001916820588761,1.4541951679503415,3.7138948161701864,2.504242758847917,20.774483472673563,14.696440658232387,0.4247045296967074,0.8401297452812838,0.8669144804221017,0.8669144804221017,0.8669144804221017,0.8669144804221017,2.3956341215135133,297.8789117242989,0.0,3.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,2.2220257359304316,0.39734632365667366,0.27969926483314467,0.27969926483314467,0.27969926483314467,0.27969926483314467,47.66608690628286,557.5446016016294,80.54123225759074,32.79674127068408,74.12302447465474,,6.0,99.0,5.969305287951849,10.001790208849112,5.693927994848461,10.424335636754687,6.196843571613076,6.196843571613076,6.923737199690624,0.0,4.9839785209472085,5.106527394840706,4.8,15.25,8.0,0.5,7.25,0.0,0.06363636363636366,0.75,0.3078431372549016,0.046439628482972006,-0.2614035087719296,0.05681818181818177,0.2695555555555555,0.0,0.7411764705882354,0.9818181818181817,0.43333333333333385,0.6947368421052634,0.9249999999999999,5.083200793728839,0.3051526570924734,0.3911526570924734,9.136589814132435,3.2751797933823417,1.8338811118982798,14.219790607861274,5.1090609052806215,0.4444444444444445,0.31249999999999994,0.0,0.3958333333333333,0.16666666666666666,0.4252468145158312,-0.7436539404383488,-0.1756175791484542,-0.04374434943754992,-0.14873078808766976,0.574753185484169,1.0051044630432697,0.07700285037883797,0.05912379194372175,0.08375870525360583,-0.3248311780696944,0.6493055555555556,0.6843394016821038,1.0410452898703555,0.8712871287128713,0.3874213836477987,1.49038274625017,0.6538249086874782,1.1189957918755573,0.6621587983564354,0.7089186540346291,0.7105081670581962,0.9394395145614844,0.5539529914529915,0.6366882983938238,0.9347169463703084,1.3724295506473723,0.6283502660861151,1.436224532332859,0.5584469764663116,1.0476139871038428,0.6024396417522091,0.5250420928303972,0.6379724832920375,0.8194455680361707,1.0217911877394636,0.991702551790218,0.9933233125145314,1.1375896210310685,1.0706571242680547,1.052940572920023,1.0250658295116803,1.1244836426576441,0.9869680064576174,0.9567754508893869,0.980534311161876,1.076498337984686,1.3291427203065134,1.2440627886084337,1.138393571667723,0.7661317855923524,1.3803513337670787,0.706416760762402,1.32678414641449,0.9443139295686753,1.2700439816407074,1.4956797981277246,1.2266420992590619,1.1226943222222734,0.8402777777777777,0.7904853158126874,0.7362626860382913,1.1485148514851484,0.7698113207547169,0.6142305785103116,0.8412244257296534,0.8107333967841153,0.7985951272739673,0.6827834041163018,0.7926695920986803,0.8431478578113304,1.1584201388888888,1.047132363005886,1.3300274261442473,1.3465346534653464,1.6465408805031447,1.2714798753033194,1.1672562522475916,1.661174815363143,1.0468450036656267,1.1468474354786016,1.1089358154982476,1.5252569571644023,2.6899801587301586,3.022832895534452,1.0836301750898634,0.0,2.248337825696316,0.2409334227429442,2.64612008670642,0.38173028723103325,3.096520699221328,2.6277126989312545,2.997013014649564,1.2016838710578113,0.0,0.0,0.47923450928552713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.7777777777777786,0.6875,0.6533333333333334,0.23611111111111113,0.0,0.0,0.0,0.0,1824.734982281012,1963.3550405455826,1057.7392884274882,992.4230547661451,7.951378554796409,0.45468550859757934,4.336001952556918,0.833804191464333,0.0,0.16666666666666666,1.8654371053199075,3.6901165175936654,3.8077635764171944,3.8077635764171944,3.8077635764171944,3.8077635764171944,0.2727272727272727,0.0,0.11851851851851855,0.04910714285714285,0.08166666666666668,0.04722222222222222,0.0,0.0,0.0,0.0,0.569241822991823,9.090909090909092,3.6,2.2145328719723185,62.51458290069229,1.0,3.2946516818672578,28.534144151512102,,19.95422021036092,19.448403726372728,19.62205022318627,19.96044355156583,33.72820042476112,19.766209329501894,19.98212407639551,27.417994164193914,-0.011284722222222252,-0.02663685723411054,-0.2185385845410183,0.28712871287128716,0.2647798742138365,-0.2535273824057324,-0.010308560613712724,-0.034422577232347776,-0.026252706596423103,-0.1287161058477621,-0.034828051363884116,-0.038632158609071904,0.2307859241452991,0.09216402675361475,-0.1487990919813899,-0.21020563594821012,0.13950169327527814,-0.3225591529681585,0.2312997044912887,-0.036006222331793576,0.12037970383835034,0.15170695851029078,0.08107137052381418,0.12418122877366683,-0.22042624521072798,-0.13990981650206974,-0.08359869291829156,-0.19614202799590302,-0.22687052700065063,0.046128671324123946,-0.22339259810854661,-0.21919568465763792,-0.14785368299942933,-0.08219648751253253,-0.13405061129855975,-0.23822549725291262,-0.2837793342911876,-0.17649124518363168,-0.04863724077422507,-0.06555138272447938,-0.2781175450010844,0.12220208328487178,-0.2846135677164102,-0.09130366296628496,-0.19687666268650744,-0.3388654823192781,-0.1659941096950716,-0.2049019145488027,0.35763888888888895,0.3938921081048197,0.26876871242781597,-0.21782178217821785,0.38176100628930815,0.05596124486982095,0.35269286988543425,0.1046146523721394,0.403507066987196,0.5338941522378307,0.40105832018996945,0.1958105620364387,-0.14317491319444436,-0.10016425605694215,-0.1385953135339391,-0.32673267326732675,-0.6324685534591195,-0.4899877252518296,-0.1507380827008086,-0.644018107722123,-0.0878002830204761,-0.1324015844495263,-0.14438638209398655,-0.46896657659389335,-1.3984374999999998,-1.384037179228127,-0.14194780832923723,0.5990099009900988,-1.0580413297394429,0.18396659084792844,-1.3734691215895714,0.37027277545954446,-1.4601006890403854,-1.0735870630512905,-1.2716813450995479,-0.37572645141105265,1.7226562500000002,0.8418670438472419,0.15070115369991127,0.5990099009900989,1.330817610062893,0.3319020325669597,1.7393472490881488,0.9358710059680371,0.9590302286328077,0.4842371773930089,0.6414623925338053,1.6105893028325613,0.33333333333333337,3.5327755290014426,1.3103706971044482,19.05711791054487,36.657134341501624,36.775722576795744,36.775722576795744,36.775722576795744,36.775722576795744,21.235187334831874,11.9819924822682,4.090986142801979,5.162208709761694,0.0,9.253194852563674,904.5811360103075,712.1703122694145,196.59487589802097,0.0,15.0,17.0,17.0,20.0,15.0,7.0,0.0,0.0,154.037842052,11.0,3.970291913552122,4.762173934797756,5.594711379601839,6.415096959171596,7.246368080102461,8.073091199693154,8.903679332926599,9.732046586838385,10.562276180459634,0.7843137254901961,1.0550588235294118,1.144441392481968,0.7548227849961067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6561027826699543,1.035755478662053,1.0577524527655198,0.6638710503945117,2.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.313780419617995,0.0,0.0,17.584699561309996,0.0,0.0,9.77851570501903,4.7304076419062255,0.0,0.0,0.0,6.923737199690624,6.196843571613076,135.578514052918,-237.09406578159104,-55.99094363499749,-13.946709751858293,-47.41881315631821,183.24460095920085,320.45053582003834,24.550288622593236,18.850031518825784,26.704211318336533,0.5,0.3846877700514959,0.3536270526969527,122.0974125804891,0.20605658912629396,46.545953733007394,0.6153122299485042,3.0,0.09090909090909091,0.4563801991039697,0.9027890065087106,0.9315714232285018,0.9315714232285018,0.9315714232285018,0.9315714232285018,-0.2783799999999999,,1.0357142857142858,1.2284783620288504,0.9699017285501993,1.0327970942604563,-4.283246429381093,1.098531211750306,1.0260103868809844,-1.8356326906609346,34.893299999999996,14.631472220818754,0.0,4.9839785209472085,0.0,6.923737199690624,0.0,28.988796157700367,0.0,0.0,3.1354942159291497,0.0,4.418840607796598,0.0,5.8998973535824915,0.0,7.465655310134056,0.0,9.071423072789514,13.333333333333334,2.1469444444444443,3.518240740740741,0.0,0.0,0.0,0.0,0.1255555555555563,0.4687037037037036,17.936,0.0,10.249726001511716,0.0,0.0,0.0,0.0,0.0,-1.1994444444444448,19.45550367219346,4.7304076419062255,0.0,0.0,16.059811203739763,0.0,12.130990224467915,16.182393173768745,12.393687143226153,0.0,0.0,0.0,12.831987344933813,11.153747305389222,13.152542465958096,57.068288303020395,,39.72489015338637,38.70226864840537,39.197836573680405,39.73790646644971,69.12912167620149,39.351216733582405,39.780668838006434,55.50349112498107,13.152542465958096,57.068288303020395,,39.06579924429546,37.92050969075065,38.58062638278482,39.08067195192032,71.73964727890332,38.65215141701404,39.12775313726401,56.67162101903803,4.584911030494266,41.93169876735885,,29.350923456735913,28.647067513938016,28.828664162801694,29.359359299453033,47.655787294866904,29.08610792995828,29.390078541757845,39.452381738834596,1.1956856787234633,5.18802620936549,,3.611353650307852,3.518388058945943,3.5634396885164006,3.612536951495428,6.284465606927409,3.577383339416582,3.6164244398187666,5.045771920452824,2.292455515247133,28.534144151510198,,19.95422019780173,19.448403704886395,19.622050205627282,19.96044353908995,33.72820042476111,19.76620931418591,19.982124064201138,27.417994164188556,17.607843137254903,0.0,1.5472524565381707,0.0,0.0,0.0,8.385428949357522,17.981791697013836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.285807856706699,122.64735315488359,31.712430790438425,62.73198079909231,64.7319807990923,64.7319807990923,64.7319807990923,64.7319807990923,113.0,87.25973556714354,196.17576185723527,40.99131056023181,77.13,77.13,1.0,6.09673912157297,4.459431618637297,3.1038686861627727,3.2692900781235097,,3.2575664535217403,3.257208361696918,3.2535928319508867,3.2575591224072333,3.226355313410163,3.2572820850455773,3.2575991731704024,3.2467177000061875,0.28216988056025205,0.2972081889203191,,0.2961424048656128,0.2961098510633562,0.2957811665409897,0.29614173840065755,0.293305028491833,0.2961165531859616,0.2961453793791275,0.29515615454601707,1.2279594765148258,1.2798830396522654,,1.2762906097732736,1.2761806775544817,1.275070052299574,1.2762883592826508,1.2666632939910347,1.2762033112045776,1.2763006539227357,1.2729547273548592,104.91000000000007,37.11095183157239,40.066263291227706,,40.50270954077285,40.49038628278201,40.692491937028564,40.503472905243044,41.90373507603141,40.50686722207605,40.50255979364891,41.13596666846171,3.3737228937793087,3.6423875719297913,,3.6820645037066226,3.6809442075256373,3.6993174488207785,3.6821339004766402,3.809430461457401,3.6824424747341866,3.6820508903317193,3.7396333334965193,3.7092223034719773,3.785844845580014,,3.7966790539202684,3.7963747500049623,3.8013537819439023,3.796697900987175,3.8306851453854973,3.796781700581885,3.796675356700935,3.8121930200509286,0.4687037037037036,13.767966742252456,19.143021541950112,0.1255555555555563,-1.1994444444444448,0.0,2.1469444444444443,1.5472524565381707,0.0,126.8942776020878,43.22556417906564,-75.59106860337506,-17.85120706217787,-4.446533447257356,-15.118213720675014,58.42261448696511,102.16703803744718,7.827199493101755,6.009825766908658,8.513919836453933,152.0,14.0,0.9714045207910318,0.30908530875195867,0.0,0.0,0.3333333333333333,0.043282152437211396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.018633899812498248,0.17536647355387364,0.03499380184148501,8.430721420318147,5.835340492852257,5.109060905280622,2.964544270768103,4.771716889212703,2.1238797650589563,3.58154729623793,1.2565612991636173,2.1946853774700137,0.6161272580956648,1.7440546736666027,0.39477410338355795,0.9780956548790778,0.16619279411772528,0.33628733311876546,0.028201326429928168,2.1263013134660467,0.48729349308059355,2.0206844343301853,0.3686122055022949,2.8582330920336334,0.3985509053729713,37.9564158756744,20.084239266090556,19.838655402414048,19.838655402414048,19.838655402414048,19.838655402414048,52.0,58.0,18.62675799999999,9.465241999999998,0.35294117647058826,11.05,5.194444444444445,2.4722222222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,17.0,0.0,0.0,17.0,6.0,1.0,4.0,13.0,7.0,11.0,10.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,3.0,1.0,1.0,11.0,5.0,0.0,2.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,2.772588722239781,0.0,3.349904087274605,3.8122026701459353,4.210274029229161,4.706710915543052,4.627420794922911,4.239076020132868,0.0,0.0 +3332,O=C(O)Cc1ccc(-c2ccccc2)cc1,0,23.0,6.074285714285715,3.2142857142857144,7.5,155.894120755571,90.85094514285713,1.6309415306495718,6.170792857142857,5.2271825396825395,7.603293714285717,240.5365396996604,24.482758620689655,6.187931034482758,3.793103448275862,6.9655172413793105,140.6253206799328,93.02050872413788,1.9757219102068957,6.357224137931036,3.46360153256705,7.618642344827588,286.2872048652676,21.369565217391305,6.083478260869565,3.5652173913043477,5.521739130434782,143.65145560355327,79.5824644782609,1.7905894790184558,6.234676086956524,3.716183574879228,7.545941043478263,250.84123555013323,16.066666666666666,5.950666666666667,2.933333333333333,3.8,151.08277076250576,56.981984199999985,1.5085530391515671,6.069316666666664,2.9657407407407415,7.4979168000000005,202.54492883495888,14.440677966101696,5.7513559322033885,2.593220338983051,3.3559322033898304,153.80318980522014,51.17788028813558,1.3619448162404744,5.864415254237287,2.840866290018833,7.327335118644066,178.5040873784965,13.849056603773585,5.903396226415095,2.3773584905660377,3.169811320754717,157.79027175532616,48.423791056603754,1.2515529421167548,5.9904716981132085,3.2127882599580717,7.504763622641509,165.77525769795355,12.146341463414634,5.840243902439024,2.3658536585365852,2.7804878048780486,159.521137446812,41.14080529268292,1.190975087133902,5.919841463414635,2.823848238482385,7.46434312195122,153.0299604360355,12.928571428571429,5.677500000000001,2.4642857142857144,3.2857142857142856,157.52117049077472,45.398901392857134,1.2377199738854288,5.775232142857143,2.488095238095238,7.287402714285714,159.4031957558027,15.91304347826087,5.990869565217391,2.347826086956522,4.173913043478261,158.02120744367366,57.76589491304347,1.1968339360475653,6.07545652173913,3.710144927536231,7.575834260869563,165.8842323409583,7.0,0.10673469387755098,0.019755734001798232,0.5153061224489796,3.5,1.3700282395869987,33.39021363265306,0.2431299671466939,0.1016086734693877,1.8878613945578226,0.0690529795918367,52.02640636350911,-0.06896551724137931,-0.00826178747361014,-0.011924645381276239,0.09060520760028148,0.41379310344827586,0.14217520700117114,-0.22686366713582484,0.023647772357242136,-0.007831333567910019,-0.1915354503870513,-0.0047859648135115986,3.2682514851572915,-0.45652173913043476,0.022613132209405494,0.003163290245128978,-0.09294587400177458,-0.4782608695652174,-0.11762783022580513,-2.349854067435672,-0.02508222839691123,0.017601109139307843,0.40807545844424736,0.01843458562555456,-6.790680626752466,-1.5333333333333334,-0.019210884353741478,-0.0022942294575718195,-0.0629251700680272,-0.7333333333333333,-0.0440307156305335,-7.23325113741497,-0.012967293710227203,-0.020455935374149643,-0.2887377173091459,-0.009293627210884354,-6.714470936288231,0.2033898305084746,0.009754410238671745,0.0017563732806792326,-0.05404704254583189,0.13559322033898305,-0.2099823904261016,0.8330731639571094,-0.03394207165988757,0.009913723625043305,0.17667317633267998,0.004734168107921114,-4.083451550604852,-0.11320754716981132,-0.006869464767038888,-0.0001396347380482843,0.023777435502502872,-0.1509433962264151,-0.02616021340294314,-0.5136549372352704,-0.0037542889730820283,-0.005801395841355383,-0.10806205343772729,-0.005195114362726224,-0.4275452106405875,-0.5365853658536586,-0.01325037332005972,-0.0023061807739810057,0.01605276256844199,-0.1951219512195122,0.03389184919029304,-2.4758417615729207,0.00438475985289844,-0.012773307615729165,-0.28466259471268174,-0.00788488203086113,-0.7452915480015397,1.0714285714285714,0.015306122448979598,0.0003128405209424401,-0.05867346938775513,0.8571428571428571,-0.09961157220857123,4.9913762193877576,-0.012089488886505097,0.016633928571428657,0.1277281746031747,0.006669142857142831,1.9239262694093537,1.6521739130434783,0.020283939662821632,0.003703376734947565,-0.09605146406388643,0.782608695652174,-0.3015311840950431,7.655121429458743,-0.041772226337967185,0.023869276841171225,0.3358273563048408,0.006200212954747112,0.34946005108680017,,,0.47916666666666663,1.40625,0.84375,0.0,0.5625,0.28125,0.5267013044019878,0.010012085434350337,0.020762085434350337,0.8595267547887634,0.29708534750867505,0.18754091470529305,1.3862280591907512,0.4846262622139681,2.0200855675752947,1.8075778664123678,0.0,0.21250770116292672,0.0,0.21250770116292672,7.574418915142857,644.0,170.08,90.0,210.0,4365.035381155988,2543.8264639999998,45.66636285818801,172.7822,146.36111111111111,212.89222400000006,6735.023111590492,710.0,179.45,110.0,202.0,4078.1342997180514,2697.5947529999985,57.295935395999976,184.35950000000005,100.44444444444446,220.94062800000006,8302.328941092761,983.0,279.84,164.0,254.0,6607.96695776345,3660.7933660000017,82.36711603484896,286.7951000000001,170.94444444444449,347.11328800000007,11538.69683530613,964.0,357.04,176.0,228.0,9064.966245750345,3418.9190519999993,90.51318234909402,364.1589999999998,177.94444444444449,449.87500800000004,12152.695730097534,852.0,339.3299999999999,153.0,198.0,9074.388198507988,3019.4949369999995,80.35474415818798,346.00049999999993,167.61111111111114,432.3127719999999,10531.741155331294,734.0,312.88000000000005,126.0,168.0,8362.884403032287,2566.460925999999,66.332305932188,317.49500000000006,170.2777777777778,397.75247199999995,8786.088657991539,498.0,239.45,97.0,114.0,6540.366635319291,1686.7730169999998,48.829978572489985,242.7135,115.77777777777777,306.038068,6274.228377877456,362.0,158.97000000000003,69.0,92.0,4410.592773741692,1271.1692389999998,34.656159268792,161.7065,69.66666666666667,204.047276,4463.289481162476,366.0,137.79,54.0,96.0,3634.4877712044945,1328.6155829999998,27.527180529094004,139.7355,85.33333333333331,174.24418799999995,3815.3373438420413,196.0,2.9885714285714275,0.5531605520503505,14.428571428571429,98.0,38.360790708435964,934.9259817142856,6.807639080107429,2.8450428571428557,52.86011904761904,1.9334834285714277,1456.739378178255,-2.0,-0.23959183673469409,-0.3458147160570109,2.627551020408163,12.0,4.123081003033963,-6.57904634693892,0.685785398360022,-0.22710867346939057,-5.554528061224488,-0.13879297959183637,94.77929306956145,-21.0,1.0402040816326528,0.14551135127593298,-4.27551020408163,-22.0,-5.410880190387036,-108.0932871020409,-1.1537825062579166,0.8096510204081607,18.77147108843538,0.8479909387755097,-312.37130883061343,-92.0,-1.1526530612244887,-0.13765376745430916,-3.775510204081632,-44.0,-2.64184293783201,-433.9950682448982,-0.7780376226136322,-1.2273561224489786,-17.324263038548754,-0.5576176326530612,-402.86825617729386,12.0,0.575510204081633,0.10362602356007472,-3.1887755102040813,8.0,-12.388961035139994,49.15131667346945,-2.0025822279333667,0.584909693877555,10.42371740362812,0.27931591836734576,-240.92364148568626,-6.0,-0.36408163265306104,-0.007400641116559067,1.2602040816326523,-8.0,-1.3864913103559864,-27.22371167346933,-0.1989773155733475,-0.3074739795918353,-5.727288832199546,-0.27534106122448987,-22.659896163951135,-22.0,-0.5432653061224485,-0.09455341173322124,0.6581632653061216,-8.0,1.3895658168020146,-101.50951222448975,0.17977515396883603,-0.5237056122448958,-11.671166383219951,-0.32328016326530634,-30.556953468063128,30.0,0.42857142857142877,0.008759534586388323,-1.6428571428571437,24.0,-2.7891240218399944,139.7585341428572,-0.3385056888221427,0.46575000000000244,3.576388888888892,0.18673599999999926,53.86993554346191,38.0,0.4665306122448975,0.085177664903794,-2.2091836734693877,18.0,-6.935217234185991,176.06779287755108,-0.9607612057732453,0.5489933673469382,7.7240291950113384,0.14260489795918357,8.037581174996404,0.7112793055389989,0.5474200681160627,0.45611883502491113,0.3009934430433727,0.309474763837168,0.16515745760741382,0.19279407588885947,0.09293877097136218,0.1302367739479583,0.050633445401035024,0.0858997572085947,0.028103730618826393,0.05375412021217044,0.015308267763120012,0.03701057395088926,0.008356659652908108,8.028637256996955,5.675701724676583,3.554713254400673,2.1756830347364717,0.4336965833767943,-0.33425715660828464,3.1414890903195265,0.9729657705469676,6.022001505601493,1.9899290812095327,13.642543147817955,10.936004763239284,16.013902556204517,11.686711926799214,2.004876283823539,0.7416189424139227,3.5007480619374207,2.225678743835889,7.008291334410227,1.4048656378917947,3.713674001128963,2.4216795081509774,20.914227039652733,14.701442915347736,0.2506489724569795,0.5080709776194112,0.644674489450549,0.8417575156965891,0.9160532017984393,0.9160532017984393,1.7137747284193847,471.84834508395556,0.0,1.0,0.0,0.0,9.0,1.0,3.0,0.0,0.0,3.51151853276644,2.180666072355772,1.4744361612551526,0.45553169650583847,0.07142857142857295,0.07142857142857295,28.16187174829824,560.7005500837624,53.26563333499568,20.02501964584866,40.05003929169732,,10.0,255.0,5.969305287951849,4.794537184071822,6.4208216229260096,0.0,16.690354475090988,0.0,0.0,54.59730361615449,0.0,5.106527394840706,7.666666666666666,22.5,13.5,0.0,9.0,0.0,0.02083333333333337,4.5,0.14420289855072432,0.08499999999999974,-0.05920289855072458,0.029166666666666563,0.1119057591623035,0.0,0.5833333333333334,0.7958333333333331,0.43913043478260905,0.49833333333333363,0.7666666666666665,8.427220870431805,0.1601933669496054,0.3321933669496054,13.752428076620214,4.753365560138801,3.000654635284689,22.17964894705202,7.7540201954234895,0.6020942408376965,0.08695652173913043,0.0,0.2608695652173913,0.07142857142857142,0.4667273889389164,-0.6183717376676077,-0.07584447706905162,-0.02208470491670027,-0.04416940983340054,0.5332726110610834,0.7065381611781566,0.05001979194813055,0.025233505756362747,0.05046701151272549,-3.3371419915825964,0.7885292047853625,0.7289839783741016,1.4675596108349367,0.8711164219870262,0.6317733990147784,0.8646888758048689,0.7908267693752987,0.8613206676661352,0.7312846629614347,0.7260541791488132,0.7313626257899625,0.84004501949412,0.8729480922803904,0.39967474436777767,0.5302823923536527,1.3831252690486437,0.9642857142857143,1.0470207324189191,0.8840599341115188,1.06286349320554,0.4540540602495041,0.3886385167305994,0.3330814798940176,1.057038711234585,1.122704081632653,0.9832456978967493,0.7786018134757204,1.1539603960396039,1.120408163265306,0.9951197656260776,1.1230128750137367,1.0174636502594294,1.0142404332347488,0.9691852936208549,0.9281590798665089,1.0834720798720054,0.8942407471463161,0.5129711248663187,0.5628083151720135,0.9832186608491358,0.8148564510549983,1.1108998633468516,0.9044594809548885,1.1161109017676711,0.5503828203969231,0.4606417221507036,0.47447546077795355,1.0824828806602507,1.0227666538313438,1.093505357336123,0.903427575034684,0.7944143470950868,1.0292645360030805,0.9825688932784141,1.0208707252316402,0.9816020653953059,1.086564193699942,1.0816639807592003,1.100647634635537,0.9878412265441672,1.0986809357889498,1.1436249591941425,1.0461791710147448,0.9128229896160347,1.0785216525634644,0.9400942689804034,1.0952706487880133,0.952626810254649,1.1503500250389667,1.1568728963569126,1.1217853907427513,1.0069636511952527,0.8191508746355685,0.5114125239005735,0.7773644698632088,1.1027227722772277,0.6789358600583091,1.0329890727891993,0.8280447899260376,1.0333449761006843,0.5383480289024014,0.5280108102021283,0.4880659141930656,0.9914503944696075,0.7965838509316769,0.9623617923351899,1.0677191792530938,1.1390443392165304,0.8205412599822537,1.17672054917908,0.8000045075624699,1.1275834996096183,0.9063957599564594,0.9854762388525913,1.0731411839331009,0.9626152441596073,3.0,0.024691358024691357,1.333333333333334,0.6875,0.4533333333333334,0.3680555555555556,0.24000000000000005,0.109375,0.08213655832703451,0.04437500000000001,2541.6412393938276,2839.263417513319,1453.5950741386896,1326.5641704649354,12.003073800531684,0.46727026155051743,6.394394366347081,0.8771244175527241,1.0,0.07142857142857142,1.2958363892911637,2.6266888497018317,3.332918760802451,4.351823225551765,4.735926350629031,4.735926350629031,0.1764705882352941,0.012345679012345678,0.060606060606060635,0.03437500000000001,0.026666666666666672,0.026289682539682543,0.02666666666666667,0.015624999999999997,0.011733794046719216,0.008875000000000003,0.39965413777343556,12.456747404844291,6.074380165289257,3.769230769230769,94.174137406594,1.0,3.685831799312636,62.734673800091485,,47.882682019688474,47.763308674430256,48.14072272041048,47.88514028403368,52.54111604627736,47.85350193147941,47.8877203972123,50.105809148363534,-0.009852216748768473,-0.07740489220017151,-0.6036042690284662,0.17582792762034824,0.11822660098522167,0.10377538425341547,-0.006794316132016887,0.09726391458348742,-0.07707347513270522,-0.10145630973714201,-0.06930859235619986,0.06281908964309355,-0.06521739130434782,0.2118629977554244,0.1601201071466666,-0.1803702109341368,-0.13664596273291926,-0.08585796031566807,-0.07037553258232812,-0.10316387030060231,0.17322447521776418,0.21615753127884016,0.26696292809548594,-0.1305237301862808,-0.21904761904761907,-0.1799872530274059,-0.11612980096629116,-0.12211221122112208,-0.2095238095238095,-0.03213854602282268,-0.21662787836557618,-0.053334822779798716,-0.20132076008562927,-0.15294434122202832,-0.13458691088810057,-0.12905890307652895,0.02905569007263923,0.0913893119875556,0.08890448112529566,-0.10488336969290149,0.0387409200968523,-0.15326865852736127,0.024949620661978273,-0.13960464050656668,0.09756769069551996,0.09358376459308898,0.06855849140622423,-0.07848805704691052,-0.016172506738544475,-0.06436018615390164,-0.007068061254295804,0.046142350084064976,-0.0431266846361186,-0.01909465268455288,-0.015383397749002584,-0.015441490068630066,-0.05709547859714168,-0.05724045936276891,-0.07523374651512328,-0.008217850136588795,-0.07665505226480837,-0.12414307699482341,-0.11673475527515655,0.031151895677372574,-0.055749128919860634,0.02473806612957839,-0.07414872479736812,0.01803463351045027,-0.12571079987160214,-0.15078574917273296,-0.1141859783237111,-0.014325255194336872,0.15306122448979592,0.1434034416826005,0.015835428889352545,-0.11386138613861392,0.24489795918367346,-0.07270767808304418,0.14948620198424173,-0.04972438827012563,0.1637057940377508,0.06765760186175711,0.09658008816655382,0.0369798032169829,0.2360248447204969,0.19004073489068074,0.18745832144786273,-0.1863969005596212,0.2236024844720497,-0.22009121810944646,0.2292624274189316,-0.1718102742668643,0.2349137728715893,0.1778877184908475,0.08978921679261018,0.0067169746194868565,14.677181248999926,14.433679108386718,2.0041451295984074,10.884564340160175,22.246078041174464,30.72860550340401,35.19601931766791,36.36912383917436,36.36912383917436,32.321369081204715,28.921245862597885,0.0,3.4001232186068275,0.0,3.4001232186068275,2435.7011554495975,2346.514183413799,258.03430527439605,24.0,22.0,26.0,32.0,38.0,34.0,38.0,36.0,28.0,212.083729624,17.0,4.3694478524670215,5.1647859739235145,5.998936561946683,6.814542897259958,7.653969180478774,8.478660241699453,9.31982238259318,10.149370590819828,10.991190550696201,0.6666666666666669,0.977142857142857,1.1039467864976955,0.6311119568966541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7054216424294272,0.9661064425770309,0.9995838102174591,0.6671630368410338,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.106527394840706,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,54.59730361615449,16.690354475090988,0.0,6.4208216229260096,197.51856631548418,-261.69430371720864,-32.09730718328877,-9.34622513275745,-18.6924502655149,225.68043806378242,299.00624636655374,21.168326151706907,10.678794513091209,21.357589026182417,0.5,0.7607817214233273,0.36303311925367765,92.02944259782987,0.23195144445666438,28.109583273693058,0.23921827857667263,5.0,0.17647058823529413,0.26955288517298215,0.5463896242921,0.6932957551168124,0.9052427574224402,0.9851418144516776,0.9851418144516776,2.9807000000000015,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,63.21780000000003,9.901064578912528,0.0,0.0,0.0,6.4208216229260096,0.0,60.160755107851486,0.0,11.126902983393991,3.5553480614894135,0.0,4.812184355372417,0.0,6.267200548541362,0.0,7.807510042216193,0.0,9.390576422279116,18.66666666666667,17.634731176778434,0.0,0.0,0.0,0.0,0.0,3.075273053665911,0.0,27.359999999999996,0.0,10.523622641588009,0.0,0.0,0.0,0.0,0.0,-0.7986471193415638,30.910510021935472,0.0,0.0,0.0,11.075832682792555,11.21535880699783,0.0,5.563451491696996,54.59730361615449,0.0,11.126902983393991,0.0,17.671134793106315,19.75180598802396,20.47805854579581,125.46934760018297,,95.70286403937695,95.45518877743194,96.23816189435138,95.70796417329268,106.43509992297868,95.64232363040068,95.71331709436987,100.71036139429958,20.47805854579581,125.46934760018294,,95.265364039377,94.95518877743197,95.93517706906431,95.27174940986995,107.24682062123304,95.18956200249372,95.27845119398677,101.0096072528431,4.6295980262576855,96.81939740441553,,74.3981976171217,74.24861255607911,74.72230501987886,74.4012803583735,80.42580445527844,74.36161204396129,74.40451600310115,77.22636092283591,1.2798786591122382,7.841834225011436,,5.981429002461059,5.965949298589496,6.014885118396961,5.9817477608307925,6.6521937451861675,5.977645226900043,5.982082318398117,6.294397587143724,2.314799013128843,62.734673800091485,,47.882682019688474,47.763308674430256,48.14072272041048,47.88514028403368,52.54111604627736,47.85350193147941,47.8877203972123,50.105809148363534,27.050980392156866,0.0,0.0,0.0,0.0,0.0,8.653244768599206,27.988346686088857,0.07844214537666927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.680565031548948,321.96206705629675,36.28341890015258,73.54728779165129,93.32172530246864,121.85105031544943,132.60593781761287,132.60593781761287,311.0,101.94072623188461,101.23693732296992,47.83281942989851,37.3,37.3,1.0,7.876537649442538,5.087462841250339,3.643364666866789,3.9347665388246087,,3.9337054912298504,3.9343235869393514,3.9323554423954636,3.933692717949885,3.908069873029241,3.9338569766339284,3.9336793096328515,3.9216565277891267,0.2277102916791743,0.24592290867653804,,0.24585659320186565,0.24589522418370946,0.24577221514971648,0.24585579487186782,0.24425436706432757,0.24586606103962053,0.24585495685205322,0.24510353298682042,1.7629112429670022,1.8398551799585023,,1.8395854839877632,1.839742599754528,1.839242224798943,1.8395822368456647,1.833047242751912,1.839623992840973,1.839578828257133,1.8365177774044708,168.0399999999997,85.37414428762386,73.15087319734093,,73.12936731385207,73.08909734557596,73.21585487562837,73.13019488020035,74.56892982399478,73.119538635145,73.13106339184517,73.84857361868167,5.3358840179764915,4.571929574833808,,4.5705854571157545,4.568068584098498,4.575990929726773,4.570637180012522,4.660558113999674,4.569971164696563,4.570691461990323,4.615535851167604,4.917046924101087,4.762527693719788,,4.762233656964466,4.761682837758587,4.763415623420921,4.762244973371214,4.7817275594043025,4.762099246677318,4.762256849539313,4.77202032346221,0.0,10.523622641588009,8.653244768599206,3.075273053665911,-0.7986471193415638,17.634731176778434,0.07844214537666927,0.0,0.0,203.31257545504909,83.58966061113306,-110.74876878484812,-13.583548443223291,-3.9553131708874325,-7.910626341774865,95.50773669646948,126.53914576550727,8.958414551777956,4.519255205910976,9.038510411821951,483.0,20.0,0.9457057690291277,0.3490675193012148,0.0,0.0,0.08333333333333333,0.027777777777777776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.05985279273275698,0.16596365263022672,0.04956825139933815,11.380468888623982,8.758721089857003,7.7540201954234895,5.116888531737336,6.808444804417696,3.633464067363104,5.012645973110346,2.4164080452554164,4.1675767663346655,1.6202702528331208,3.2641907739265985,1.067941763515403,1.827640087213795,0.5204811039460804,1.4064018101337918,0.3175530668105081,1.5850375667701497,0.612183369264979,2.473847096499436,0.7555998151067544,3.283379600911359,0.8466171010530636,52.63785236351042,42.97450446708926,29.355202490539007,21.554843103333706,19.429945039805958,19.429945039805958,78.0,87.0,32.98551599999999,12.906483999999997,0.42857142857142855,49.02,4.944444444444445,3.6111111111111107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12.0,12.0,28.0,0.0,0.0,29.0,12.0,1.0,7.0,22.0,13.0,17.0,16.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,1.0,1.0,0.0,16.0,2.0,0.0,0.0,2.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,2.0,3.2188758248682006,6.423399143512001,3.7612001156935624,4.248495242049359,4.808111029984782,5.3482972988530575,5.418042958663758,5.844268792289402,6.123862485115446,6.241402159957804 +2471,CCCCNc1cc(C(=O)O)cc(S(N)(=O)=O)c1Oc1ccccc1,0,29.022222222222222,6.424519999999998,3.2,8.14320987654321,162.4649656855018,114.95304533333339,1.5633239577106663,6.481113333333331,6.511593126047858,7.965861177777775,221.92937080864462,31.32608695652174,6.456147826086958,3.8043478260869565,6.4057971014492745,146.67096967796627,120.12062117391307,1.8889185618695654,6.612969565217391,3.151234567901235,7.949769565217389,269.79162725892473,24.22077922077922,6.42225974025974,3.4025974025974026,6.8268398268398265,152.3232340646649,90.91547877922076,1.595489501739519,6.530875324675326,4.691959275292608,7.9196529350649305,225.09570179283358,20.287128712871286,6.264257425742576,3.0396039603960396,4.933993399339934,158.82113459434214,74.95022988118812,1.3494078497918807,6.348522772277231,3.4299749419386374,7.8383612079207925,187.99546635204626,21.75,6.479178000000001,3.03,5.6,160.65364713165025,80.84502302,1.3417917433328193,6.544760000000001,3.853996913580246,8.04223728,189.01487425236627,24.696969696969695,6.458099999999997,3.121212121212121,5.5925925925925934,158.24835103047369,92.95306115151514,1.4705022221978183,6.547054545454545,3.7694070332959226,8.004883656565656,207.05813368136435,22.9,6.66520909090909,2.827272727272727,5.193939393939394,157.23729905680767,83.62328323636366,1.4454166057008546,6.738152727272728,5.663005050505049,8.198885218181818,200.49967884224637,16.080645161290324,6.318145161290321,2.3225806451612905,2.6397849462365595,161.10319413553398,55.2233015,1.2457916139414118,6.3846250000000015,3.6862679211469525,7.930469709677421,165.14147604355367,13.258620689655173,6.075465517241378,2.0344827586206895,2.074712643678161,163.66101811781525,44.616164301724126,1.1107904296631292,6.134642241379309,3.3171296296296284,7.7218995689655205,142.78077337697374,10.817777777777776,0.16562795061728394,0.02733197953715808,0.6399999999999999,4.260850480109737,1.5064514582146649,49.37328184888891,0.28713400119728383,0.15197550617283945,2.702670663347389,0.10880302024691355,49.71637978976333,2.0406763285024163,-0.021184472356414377,-0.016686964028314818,0.17304347826086963,0.5790851076519352,0.0383236642548606,8.766734107632857,-0.002919898515409568,-0.013601254965110065,-0.6256493317635244,-0.002342943918411176,3.3375904588136383,0.3126695526695524,0.04489966843033507,0.002925205521272841,0.061298701298701234,1.4288400762474829,-0.08817476301636736,1.521580175353542,-0.021989593618682225,0.039348216770883425,0.9824913872982002,0.02753285767516433,-1.9069621860294699,1.1899229922992298,-0.0028307668989121194,0.00038846408569012447,0.11841584158415838,0.43415013106248884,-0.07706829564086308,5.51743335507151,0.0012302342334663252,0.0011296423420119638,-0.051685185855881714,-0.00440481496638553,3.676004238054756,1.3411111111111111,0.003270627160493819,-0.002674745746129333,0.03799999999999998,0.42522359396433446,-0.02484047420003569,6.1822852137777815,0.03148206300211382,0.0046881827160493526,-0.10065648867889379,0.001324322864197514,4.584040499778407,1.7431649831649834,0.017816426487093133,-0.0007883759380578896,-0.20161616161616167,0.22681631126075533,0.08496659988722478,8.022636288484852,0.005080632201086413,0.019043214365880995,0.02929962635038083,0.009592937553310872,5.011701690472053,-1.9888888888888894,0.03767124130190798,0.006159561066017075,-0.1690909090909091,-0.42327472253398196,-0.09323194075107154,-9.164416842828278,-0.042199362775568815,0.027785625140291773,0.8978271127676707,0.02798234904601568,-10.395214127259251,-3.151469534050178,-0.049072072481083216,-0.004770576829183816,-0.09806451612903229,-1.422897473339528,-0.10414579012012792,-14.466652142437276,-0.03029610702134578,-0.04772283592194344,-0.6672720960558182,-0.031136982254082037,-9.638320619684311,-1.4196934865900386,-0.024640326096211133,0.001196218089333921,-0.1089655172413793,-0.7467168062059504,-0.08830723399020703,-6.463477234521076,-0.02127953804582896,-0.022935927628778163,-0.3546347904516471,-0.017229890744997853,-4.341111000002344,,,0.472,1.3,0.7,0.04,0.6,0.1,0.7988479916896029,0.023579859761508642,0.03045985976150864,1.0657857628800442,0.2497096516093691,0.2232790311240461,1.8646337545696472,0.4729886827334152,1.987745509565724,1.3965545880640198,0.1493207566041214,0.3561229380968879,0.0,0.5911909215017045,8.091317616444456,1306.0,289.1033999999999,144.0,366.44444444444446,7310.923455847581,5172.887040000002,70.34957809697998,291.6500999999999,293.0216906721536,358.4637529999999,9986.821686389008,1441.0,296.98280000000005,175.0,294.66666666666663,6746.864605186448,5525.548574000001,86.89025384600001,304.1966,144.9567901234568,365.6893999999999,12410.414853910539,1865.0,494.514,262.0,525.6666666666666,11728.889022979196,7000.4918659999985,122.85269163394295,502.8774000000001,361.28086419753083,609.8132759999996,17332.369038048186,2049.0,632.6900000000002,307.0,498.3333333333333,16040.934594028557,7569.973218,136.29019282897994,641.2008000000003,346.42746913580237,791.674482,18987.54210155667,2175.0,647.9178,303.0,560.0,16065.364713165025,8084.502302,134.17917433328194,654.4760000000001,385.3996913580246,804.2237279999999,18901.487425236628,2445.0,639.3518999999998,309.0,553.6666666666667,15666.586752016896,9202.353054,145.57971999758402,648.1583999999999,373.17129629629636,792.483482,20498.75523445507,2519.0,733.1729999999999,311.0,571.3333333333334,17296.102896248845,9198.561156000003,158.995826627094,741.1968,622.9305555555554,901.8773739999999,22054.9646726471,1994.0,783.4499999999998,288.0,327.33333333333337,19976.796072806213,6847.689386,154.47816012873506,791.6935000000002,457.0972222222221,983.3782440000002,20477.543029400655,1538.0,704.7539999999999,236.0,240.66666666666669,18984.67810166657,5175.4750589999985,128.851689840923,711.6184999999998,384.7870370370369,895.7403500000004,16562.569711728953,486.7999999999999,7.453257777777777,1.2299390791721136,28.799999999999997,191.73827160493818,67.79031561965992,2221.797683200001,12.921030053877773,6.838897777777775,121.62017985063251,4.896135911111109,2237.23709053935,93.87111111111115,-0.9744857283950613,-0.7676003453024816,7.9600000000000035,26.637914951989018,1.7628885557235874,403.2697689511114,-0.13431533170884014,-0.625657728395063,-28.779869261122126,-0.10777542024691411,153.52916110542736,24.075555555555532,3.4572744691358004,0.22524082513800875,4.719999999999995,110.02068587105619,-6.789456752260286,117.16167350222274,-1.6931987086385314,3.029812691358024,75.65183682196141,2.1200300409876536,-146.83608832426918,120.18222222222221,-0.2859074567901241,0.039234872654702574,11.959999999999997,43.84916323731137,-7.783897859727171,557.2607688622224,0.12425365758009885,0.11409387654320835,-5.220203771444053,-0.4448863116049385,371.27642804353036,134.11111111111111,0.3270627160493819,-0.2674745746129333,3.7999999999999976,42.522359396433444,-2.484047420003569,618.2285213777782,3.148206300211382,0.4688182716049353,-10.06564886788938,0.1324322864197514,458.4040499778407,172.57333333333335,1.7638262222222203,-0.07804921786773107,-19.960000000000004,22.454814814814778,8.411693388835253,794.2409925600003,0.5029825879075549,1.8852782222222184,2.9006630086877023,0.9497008177777763,496.1584673567333,-218.77777777777783,4.143836543209877,0.6775517172618782,-18.6,-46.56021947873801,-10.25551348261787,-1008.0858527111105,-4.64192990531257,3.056418765432095,98.76098240444378,3.078058395061725,-1143.4735539985177,-390.78222222222206,-6.084936987654319,-0.5915515268187932,-12.160000000000004,-176.4392866941015,-12.914077974895863,-1793.8648656622222,-3.7567172706468765,-5.917631654320987,-82.74173991092145,-3.8609857995061727,-1195.1517568408547,-164.68444444444447,-2.8582778271604914,0.13876129836273485,-12.639999999999999,-86.61914951989024,-10.243639142864016,-749.7633592044448,-2.468426413316159,-2.660567604938267,-41.137635692391065,-1.9986673264197508,-503.56887600027187,0.737975319575053,0.581802965032946,0.45479681032059155,0.3569808755003904,0.3085409409708121,0.19240329024822078,0.18252093503206113,0.10077966388991819,0.11240734201033856,0.052383944630531996,0.07246575105937605,0.028145324008278773,0.04865358381787432,0.01534285807427308,0.031525204820221885,0.008681135938347996,16.013355263351208,5.692477794367803,3.5813905637198706,2.1814310200463627,0.4785065069595017,-0.49000707628788626,4.043006076349741,0.9678776456704445,6.022815478246562,0.6420973496783401,14.540595308557352,10.319283731990625,32.06666022814057,11.704667840572386,2.9556467589082476,0.7414575223211055,3.537447907455953,2.234362579500436,7.014586199075316,0.30019282871301545,3.768769601441696,2.4329985510371666,24.442067647119938,14.699972407446888,0.29827015906488963,0.647853009067496,0.7840221369798438,0.8749330246386146,0.8932097228464005,0.8932097228464005,2.1443380778839596,850.8419702178362,0.0,1.0,2.0,0.0,11.0,2.0,1.0,0.0,0.0,3.76744601496533,1.7463818094211274,0.9591390990828934,0.43355055565170986,0.3278863889369674,0.3278863889369674,72.04965341985536,1574.6938729710566,77.07309893936744,34.99319717713458,72.25598905096389,,11.0,432.0,15.992596441359433,18.318861563241466,21.89583307518224,12.29426823919648,18.90801031431363,6.06636706846161,30.33183534230805,6.923737199690624,5.316788604006331,9.87583669140799,11.799999999999999,32.5,17.5,1.0,15.0,0.0,0.028000000000000042,2.5,0.1941248097412479,0.06970760233918116,-0.12441720740206674,0.08220689655172397,0.18721428571428556,0.0,0.6311111111111113,0.8959999999999997,0.4369863013698634,0.5614035087719301,0.8137931034482757,19.97119979224007,0.5894964940377161,0.761496494037716,26.644644072001107,6.242741290234227,5.581975778101152,46.61584386424118,11.82471706833538,0.5267857142857144,0.18926553672316382,0.07062146892655369,0.25423728813559326,0.23529411764705882,0.44014644131007297,-1.1515463133869592,-0.08112922006646102,-0.025589918075265755,-0.06773801843452701,0.5598535586899269,1.4647336455272641,0.046924116259809454,0.03254963656727253,0.052311915911687996,-4.139258249270556,0.8684934443213892,0.8148184800504445,1.6276451438127484,0.9963768115942031,0.6147167871752179,1.2221524034116116,0.8576066030826648,1.2549156412308584,0.7660889982666925,0.8563087204439639,0.7195285839871548,0.9525733564503431,0.8862542551942718,0.5368927413098402,0.8014388523352471,1.0714285714285716,0.557969601418748,1.1690480244033306,0.8813213189380952,1.1293414567879667,0.5428610792568078,0.3976014429833592,0.5609967985560355,1.0308284830438883,0.8139232164794131,0.9372033049237766,0.9801378375831539,0.8773377337733774,0.8953234288581978,1.050373223840208,0.8152939148802152,0.962115315570344,0.9132790085667469,0.7980073443148564,0.960129271589968,0.9086317227236411,0.8265817584223503,1.0951712986953352,1.3097955495118478,1.0923611111111113,1.0037177737141685,1.0150885375395673,0.8263672143881364,0.8353440966928982,1.0690828021669512,0.9506499968669716,1.1179264667834476,0.8480616380093872,0.9317082077969508,0.8594273167945053,1.2899378789876028,1.6358024691358029,0.9663378576763598,1.046414926404371,0.9157295932257573,1.0810743397366507,0.8316837281121326,0.8225432357917164,0.8733776707614636,0.8704964792227221,1.2888249794576832,0.9070235059031604,0.9480052160269705,1.388888888888889,1.1201612280114361,1.1519092984944195,1.2730573407233983,1.2503803870581593,0.925195873019174,0.9002182467573159,0.9059601450061417,1.1494984793616647,1.2952924960903334,1.365781849636154,1.1206028759648823,1.059587813620072,1.3232083260983178,1.0461858489400866,1.2937806385531705,1.0922859247319157,1.3748117137742462,1.4403888265090588,1.3691144751874051,1.1511649351596744,1.083855155413255,1.1130233580185365,0.7986141037346633,0.9943726053639849,1.1339891454844353,0.9604178825116753,1.089399770615007,1.000174498768312,1.1251442559541311,1.1756382356944848,1.1162073089623328,1.0753084501104437,6.0,0.04530149984695439,2.666666666666668,1.6875,2.0133333333333336,1.5833333333333333,0.6318367346938776,0.5295138888888888,0.32426303854875277,0.07,5414.199928439645,5986.250633938052,2696.7987293667716,2481.001497314333,11.944512602047988,0.4186466738286742,6.9439821306959155,0.7201243288411122,1.0,0.23529411764705882,1.724407081364345,3.7454712869085474,4.532713997246781,5.058302540677965,5.163966707392707,5.163966707392707,0.23076923076923078,0.009060299969390877,0.07407407407407411,0.0456081081081081,0.05298245614035088,0.036821705426356585,0.014693877551020407,0.016547309027777776,0.013510959939531365,0.004666666666666668,0.49873468767250756,21.301775147928993,9.796296296296296,6.282314764737696,146.03303775232652,1.0,4.119246770570234,120.67207213090792,,87.07657235563633,91.2760897634674,93.84849529095584,87.09644393869249,131.6297207743041,92.02081241043646,92.07686245842474,114.88175407136578,0.18864099174734747,-0.12790396957434605,-0.6105289229281302,0.2703804347826088,0.1359083381017916,0.025439694087640217,0.1775602872513961,-0.010169114431708719,-0.08949636232592352,-0.23149299700046594,-0.02153381324428482,0.06713261248963369,0.028903307046281555,0.2710875082556845,0.1070250150486172,0.09577922077922069,0.33534151994244193,-0.05853143328021042,0.03081788607875949,-0.07658303623740342,0.25891156911912694,0.3635261227431006,0.2530523289949331,-0.03835681910254688,0.10999698983867164,-0.017091118306795723,0.014212804643805763,0.1850247524752475,0.10189283409243391,-0.051158831053340896,0.11174937432674781,0.004284529969758115,0.007433055302525123,-0.019123745470292372,-0.040484307847239956,0.0739394994888918,0.12397288414133117,0.01974683106507336,-0.09786139867743539,0.059374999999999976,0.09979782110387102,-0.016489395701787025,0.12521519701078787,0.10964240692791777,0.03084827834504827,-0.03724334231468137,0.012171747265766563,0.09220382737365496,0.16113891586364887,0.10756896055703485,-0.02884445076457361,-0.3150252525252526,0.05323263801899797,0.056401817279875005,0.1624894272379707,0.017694289704114893,0.12530449705641009,0.010840990264826354,0.08816793441524891,0.10080584531024057,-0.18385373870172564,0.22744495214430815,0.22536095702995437,-0.26420454545454547,-0.09934043086231006,-0.061888446682220453,-0.18561490141321266,-0.14696748765247938,0.182829627220926,0.3321999698089993,0.2571835688247769,-0.20909032739748357,-0.2913231902881225,-0.2962789329832012,-0.17454194353900243,-0.15322580645161296,-0.33394682117615204,-0.06913318683600587,-0.2930056824400226,-0.10551208458426331,-0.3140166275720048,-0.2468936023560374,-0.286177554478,-0.19386609927034257,-0.1312370725072961,-0.14876912987438617,0.043766244142970014,-0.17025862068965517,-0.1752506476563146,-0.058619369053459075,-0.1309104234614805,-0.07411012961578252,-0.1509185802789397,-0.13121642798032027,-0.15835857043211649,-0.08731752026916859,10.864376795754675,15.89051942809264,6.282957069186186,19.24142438697605,36.26494263548018,41.6789112045121,43.371327282653056,43.477836762701514,43.477836762701514,49.6936377391431,34.913864701600495,3.7330189151030346,8.903073452422197,0.0,14.779773037542613,5087.542095891125,2997.1407877310653,2606.3651282608544,61.0,36.0,43.0,55.0,74.0,80.0,83.0,81.0,71.0,364.10929274000057,26.0,4.8283137373023015,5.645446897643238,6.52649485957079,7.3833681469923835,8.27614021955846,9.150696519048667,10.049274784602108,10.932588978440108,11.834015717409892,0.7111111111111111,1.0007111111111116,1.1266966836289145,0.674226403574501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6764585495675318,0.9865795206971675,1.0207736505624345,0.63767234321641,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15.160178952647087,10.644995308801679,5.749511833283905,10.023291153407584,0.0,0.0,18.3513079060087,0.0,0.0,31.54366002800146,30.686289896772447,6.544756405912575,11.250837766380558,264.91656673799804,-693.0959043409866,-48.83028107228839,-15.402131207577478,-40.77034731417568,336.9662201578534,881.59796863007,28.242817867079054,19.591065969557107,31.48564173678821,0.45454545454545453,0.6741009101933705,0.18256371911763955,148.44609315635387,0.12816156842496906,75.57331096609693,0.3258990898066295,6.0,0.3076923076923077,0.3139936650011276,0.6820050029036151,0.8253523751893679,0.921055689573805,0.940295855845798,0.940295855845798,3.036500000000001,,2.1607142857142856,1.7753167695229957,1.2292696050370093,2.156686954890782,-6.023697027024913,1.6276009791921666,1.594356091478482,-2.476042771605518,94.68820000000004,23.055724517041515,0.0,0.0,5.138973737607942,24.660863921060418,11.861545009918906,48.02802097092827,0.0,11.49902366656781,3.970291913552122,0.0,5.2832037287379885,0.0,6.787844982309579,0.0,8.388677769180811,0.0,10.04815050877669,32.0,10.929040575500938,0.0,0.0,0.0,0.0,0.0,0.08679104203409937,0.0,45.03200000000002,0.0,35.28367500049453,0.0,0.0,-4.191024712354077,0.0,0.0,-1.2549049666162768,50.70135076330116,15.192625295414322,5.687386274683562,11.49902366656781,26.03838607303407,10.023291153407584,0.0,30.12336912131146,47.360052954749044,0.0,0.0,0.0,30.340188160852545,30.44063473053893,30.60600920769327,241.34414426181584,,174.72772592733546,182.41015418537296,187.59864901350872,174.7684564888212,266.0907917018915,183.91141674253754,184.02617642953118,230.7539252513737,30.60600920769327,241.34414426181587,,172.91272592733554,180.7768627574119,186.46772097687477,172.95683944671308,269.2831385756331,182.41402384168083,182.55936882537105,232.2395509143372,4.920605723154772,159.14508860578803,,115.83607818509859,119.24528563072079,123.08844508252898,115.8668759740749,184.59917908339906,120.48872195602374,120.8280229421667,155.4495372159207,1.2242403683077308,9.653765770472633,,6.989109037093418,7.2964061674149185,7.5039459605403485,6.990738259552847,10.64363166807566,7.356456669701502,7.361047057181247,9.230157010054947,2.460302861577385,120.67207213090792,,87.07657235563633,91.2760897634674,93.84849529095584,87.09644393869249,131.6297207743041,92.02081241043646,92.07686245842474,114.88175407136578,44.39607843137254,0.0,2.006451640841522,0.0,0.0,5.275508078231293,9.247423481751134,45.93481427530955,2.281852312875716,3.033868811413454,5.717985402494331,0.0,0.0,0.0,0.0,0.0,0.0,28.695255444738446,405.7297344762159,77.59831866139552,168.54620791088462,203.97212987610516,227.62361433050842,232.37850183267184,232.37850183267184,635.0,125.62633986056795,196.15305241963557,59.47816890255719,127.09999999999998,118.71999999999998,0.8333333333333334,8.310803046038425,5.700439718141092,4.051396964879522,4.905837837816612,,4.874000652092244,4.889695172460818,4.893156970644877,4.873998284971668,4.890604666927009,4.889672086319211,4.888926605663534,4.893233532714925,0.16205587859518086,0.19623351351266446,,0.19496002608368976,0.19558780689843272,0.19572627882579507,0.19495993139886672,0.19562418667708037,0.19558688345276845,0.19555706422654137,0.195729341308597,2.3153524831179464,2.5067166233151226,,2.5002058208671163,2.503420696497831,2.5041284243215607,2.500205335204245,2.5036066814847433,2.5034159751000153,2.503263503221252,2.504144070962684,264.23000000000013,288.2334861818213,143.96421349367174,,144.7570759397289,144.83979537336424,144.73258410482097,144.75682480036983,144.52509306345516,144.80734120308054,144.7752461494091,144.7177555242783,11.529339447272854,5.75856853974687,,5.790283037589156,5.79359181493457,5.789303364192839,5.790272992014793,5.781003722538206,5.792293648123222,5.791009845976364,5.788710220971131,6.580061599466569,5.88585548315953,,5.891347730999349,5.891919003993493,5.891178524023441,5.8913459960957155,5.889743878768834,5.891694909456927,5.891473245204968,5.891076063749429,29.67397793839758,10.948285733676697,17.55680037139588,0.07376223020072237,-0.8624794238683127,10.929040575500938,1.7453631153448521,2.542940838372386,-4.191024712354077,322.0737576508463,159.4487214831471,-417.16249449085353,-29.390105656696687,-9.270277655352299,-24.53897026416785,202.81416767836984,530.6186422807881,16.99886592762949,11.791525384017508,18.950665795742424,1446.0,37.0,2.490750109368749,1.005583114197934,0.28867513459481287,0.05892556509887896,0.6363739614363865,0.17882641446809877,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.1576176281715213,0.052908348288312534,0.21058899651329882,0.06794859422729502,18.449382989376325,14.545074125823652,11.82471706833538,9.28150276301015,11.107473874949235,6.926518448935949,7.848400206378629,4.333525547266482,6.182403810568621,2.8811169546792597,5.362465578393828,2.0827539766126293,3.8922867054299455,1.2274286459418464,2.616592000078416,0.7205342828828837,3.9524924183531867,1.5613397206462536,5.559557500677013,1.9768656312452713,9.29616277518773,2.824219385170436,83.35131643136577,44.5139543176455,30.71283833207299,26.124737354448563,25.70948277508217,25.70948277508217,124.0,141.0,50.83585999999998,29.324139999999996,0.28888888888888886,76.08,9.729166666666668,5.583333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12.0,12.0,45.0,0.0,0.0,46.0,12.0,3.0,9.0,37.0,15.0,26.0,31.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,5.0,3.0,0.0,25.0,8.0,0.0,2.0,5.0,0.0,2.0,8.0,1.0,0.0,0.0,0.0,2.0,3.58351893845611,6.875603273543719,4.189654742026425,4.634728988229636,5.18037806868335,5.765974494912649,6.004504160615785,6.307187279715285,6.500820341203385,6.635659440982351 +5770,COC(=O)[C@H]1[C@H]2C[C@@H]3c4[nH]c5cc(OC)ccc5c4CCN3C[C@H]2C[C@@H](OC(=O)c2cc(OC)c(OC)c(OC)c2)[C@@H]1OC,0,22.642857142857142,6.297021428571431,3.357142857142857,7.928571428571429,162.76739916407692,89.25550785714287,1.40508395469,6.347239285714287,3.934193121693122,7.835051238095237,210.1613437391389,25.02247191011236,6.456505617977529,4.123595505617978,7.123595505617978,145.97131851145397,94.84837174157305,1.7175880942696629,6.591685393258424,3.053995006242198,7.8808618876404495,256.9538359686011,20.63803680981595,6.435521472392638,3.8650306748466257,5.748466257668712,156.4139236220364,76.72222934969325,1.4611808058989382,6.518406134969325,2.8873551465576,7.948929766871166,215.03078668419397,19.947619047619046,6.326609047619048,3.6666666666666665,5.128571428571429,153.7572250954156,73.39107050476191,1.4674713624196707,6.423744761904763,2.795767195767195,7.826464761904761,210.51812638264508,17.111524163568774,6.260189591078068,3.100371747211896,4.011152416356877,157.3765149671627,61.23313327509291,1.2994917995348176,6.338956877323419,2.8128872366790585,7.803335182156136,181.56549888073422,15.221854304635762,6.2301059602649005,2.771523178807947,3.4768211920529803,161.58753469563192,53.60592733443707,1.1780203601185066,6.286191390728477,2.8828182487122884,7.815274132450335,161.55668321108124,14.383050847457627,6.135684745762712,2.705084745762712,3.1559322033898307,161.2346252881556,50.05572180338982,1.1768848153833598,6.198588135593219,2.7387947269303203,7.725903105084746,158.7830302560761,14.075601374570446,6.097013745704467,2.642611683848797,3.2989690721649483,162.8979275411896,49.36357443986253,1.1278136164760273,6.15261065292096,2.818537609774723,7.703921539518902,152.24428839028758,15.157088122605364,6.179379310344827,2.7624521072796937,3.524904214559387,162.28471658210185,53.80852403831416,1.1639799297145097,6.237175478927203,2.7429757343550456,7.7751484444444445,161.25849878516217,7.765306122448978,0.15724540816326527,0.02905504394623652,0.6581632653061225,4.479591836734693,1.3690469490268897,36.74685120408164,0.22631568257004525,0.1453605867346938,1.2025187389770724,0.10320895011337869,49.1963414570409,0.6351754184819991,0.0004150252235727043,-0.010740386300314443,0.36190094015134144,1.474661774822288,-0.2770874658928386,2.950604112130245,-0.029253065573785264,0.0037613635060766985,0.0009471667360245007,-0.0038772540192107004,-1.0710489205647908,0.5173406786027291,-0.014801061099286198,-0.004044887897383649,0.08329159884812827,0.1054213096281456,0.2621154355598261,2.6781958292224846,0.056060906563485766,-0.01216260251032918,0.0472418673786261,-0.009834755547208683,10.252927605571497,-0.09115646258503426,0.003707585034013684,0.0028997879797004215,-0.0962585034013605,-0.1598639455782315,-0.053649908388057665,-0.48401871156462584,-0.011691410834992947,0.0031889880952381683,0.03785824514991181,0.0029150095238095128,-2.083928922588816,-0.6747591229800471,-0.0027686954707533008,-0.0013402121754133671,-0.10638418936347772,-0.3964797815036795,-0.20338164201412937,-3.290465421819285,-0.03582386593592318,-0.0031581571011303636,-0.060956073018495524,-0.0011024781714420676,-7.076296281943837,-0.3490336531963779,0.004226162319232366,0.0010501070061279935,-0.05102040816326529,-0.31828625489931067,-0.0070146218445114004,-1.68893645904852,-0.002173805537823815,0.0023099667184755036,0.03408730888725373,0.0050396080701596195,-2.075637105615062,-0.6682116914562434,-0.007067103078519538,-0.0011147618299846426,0.0021272915946039497,-0.2822552749913524,-0.05785878711403882,-3.1787284413697683,-0.013664311571459229,-0.0075898966620546425,-0.08267746913580247,-0.00374072089626811,-4.013606168719289,0.2697945157444421,0.004945902587839237,0.0011891869961617794,0.034767515253524096,0.09159127568553188,0.04019580312843324,1.27767422105337,0.00541808840033985,0.004542984693877534,0.029593435789741614,0.0021814661850994713,1.3749335779159768,0.22675736961451243,-0.0075668641019626046,0.00047017891620366857,-0.03364219250918757,-0.2341074360778795,0.050700789237493694,1.14309060270545,0.010839707146907214,-0.005670753675033221,-0.09160147935291611,-0.0061362028044934505,2.9207019008337,,,0.4613636363636363,1.1079545454545454,0.4318181818181818,0.045454545454545456,0.6761363636363636,-0.24431818181818182,1.2301935705098523,0.012933714806381664,0.02466098753365439,1.0670853466146928,0.22338290655012025,0.2617336868792503,2.297278917124545,0.4851165934293705,2.0652603892362023,1.578521747856499,0.10044359241959407,0.38629504896010936,0.0,0.4867386413797035,7.24134977214287,1902.0,528.9498000000002,282.0,666.0,13672.461529782462,7497.462660000001,118.02705219396,533.1681000000001,330.47222222222223,658.1443039999999,17653.55287408767,2227.0,574.629,367.0,634.0,12991.447347519403,8441.505085,152.86534039,586.6599999999997,271.8055555555556,701.396708,22868.891401205496,3364.0,1048.99,630.0,937.0,25495.469550391936,12505.723383999999,238.17247136152693,1062.5002,470.63888888888886,1295.6755520000002,35050.018229523615,4189.0,1328.5879,770.0,1077.0,32289.01727003728,15412.124806000002,308.16898610813087,1348.9864000000002,587.111111111111,1643.5575999999999,44208.806540355465,4603.0,1683.9910000000002,834.0,1079.0,42334.28252616677,16471.712850999993,349.56329407486595,1705.1793999999998,756.6666666666667,2099.0971640000007,48841.119198917506,4597.0,1881.492,837.0,1050.0,48799.435478080835,16188.990054999995,355.762148755789,1898.4298,870.6111111111111,2360.212788000001,48790.11832974653,4243.0,1810.027,798.0,931.0,47564.214460005904,14766.437931999997,347.1810205380911,1828.5834999999997,807.9444444444445,2279.141416,46840.993925542454,4096.0,1774.2309999999998,769.0,960.0,47403.29691448617,14364.800161999998,328.19376239452396,1790.4096999999995,820.1944444444443,2241.8411680000004,44303.087921573686,3956.0,1612.818,721.0,920.0,42356.31102792858,14044.024773999996,303.79876165548706,1627.9028,715.9166666666669,2029.313744,42088.468182927325,652.2857142857141,13.208614285714283,2.4406236914838675,55.285714285714285,376.2857142857142,114.99994371825873,3086.735501142858,19.0105173358838,12.210289285714278,101.01157407407408,8.66955180952381,4132.492682391436,56.530612244897924,0.036937244897970685,-0.9558943807279854,32.20918367346939,131.24489795918365,-24.660784464462637,262.6037659795918,-2.6035228360668885,0.3347613520408262,0.08429783950618057,-0.3450756077097523,-95.32335393026639,84.32653061224485,-2.4125729591836502,-0.6593167272735347,13.576530612244907,17.18367346938773,42.72481599625165,436.54592016326495,9.13792776984818,-1.9825042091836562,7.700424382716054,-1.6030651541950154,1671.2271997081539,-19.142857142857196,0.7785928571428736,0.6089554757370885,-20.214285714285705,-33.57142857142861,-11.26648076149211,-101.64392942857143,-2.455196275348519,0.6696875000000153,7.95023148148148,0.6121519999999977,-437.6250737436513,-181.51020408163268,-0.744779081632638,-0.36051707518619575,-28.61734693877551,-106.65306122448979,-54.7096617018008,-885.1351984693877,-9.636619936763337,-0.8495442602040678,-16.397183641975296,-0.2965666281179162,-1903.5236998428923,-105.40816326530613,1.2763010204081744,0.31713231585065405,-15.408163265306118,-96.12244897959182,-2.118415797042443,-510.05881063265304,-0.6564892724227921,0.697609948979602,10.294367283950628,1.5219616371882052,-626.8424058957487,-197.1224489795918,-2.084795408163264,-0.32885473984546953,0.6275510204081651,-83.26530612244896,-17.068342198641453,-937.7248902040817,-4.030971913580473,-2.2390195153061194,-24.389853395061728,-1.1035126643990925,-1184.0138197721903,78.51020408163265,1.439257653061218,0.3460534158830778,10.117346938775512,26.65306122448978,11.696978710374072,371.80319832653066,1.5766637244988964,1.3220085459183624,8.61168981481481,0.6348066598639461,400.10567117354924,59.18367346938774,-1.9749515306122398,0.12271669712915749,-8.780612244897956,-61.10204081632655,13.232905990985854,298.3466473061224,2.829163565342783,-1.4800667091836706,-23.907986111111104,-1.6015489319727905,762.3031961175957,0.7072778842447981,0.5910871608339399,0.4356149002222919,0.3039337694436304,0.2618790509310183,0.1623868316443161,0.16582230715936164,0.09207857349520165,0.10221325081251631,0.05174662038024996,0.06444320716369828,0.02982046672180157,0.04010325820151864,0.016944094312199717,0.02482811306000638,0.009554716592640771,8.033102874084316,5.674926882255559,3.559690016045597,2.1741715259633083,0.4771395072334869,-0.5293177924221981,3.27814323043005,0.9771694259684504,6.031823659873688,0.9966227318029367,14.548258324439791,10.935804790554032,16.018749002989562,11.686459694820984,2.0164347531938254,0.7401129848094282,3.505947476560042,2.223951717743679,7.009368630210468,1.1302974797003418,3.718821523849643,2.4198622951835462,20.91622681050403,14.699723642251245,0.22871681118404014,0.5214606154161571,0.735512110363571,0.8199553718582283,0.8538425463149281,0.897036320864007,1.177063764371732,1526.4817827505706,0.0,2.0,2.0,0.0,11.0,6.0,3.0,3.0,0.0,4.879422080325051,2.943006756667132,1.527118225890896,0.9685505528129914,0.74439672634501,0.4586824406307253,514.2450032853841,4023.3514081412077,90.42893484092926,47.89704057310962,90.18809954944078,,20.0,1423.0,24.095144109609848,9.589074368143644,29.41040970111959,23.669357122777722,37.197368608577335,45.08279386612038,26.352329219478285,12.13273413692322,15.950255320259297,33.15804067660034,20.299999999999997,48.75,19.0,2.0,29.75,0.0,0.0386363636363637,-10.75,0.15692818110850948,0.043027210884353906,-0.11390097022415557,0.012777777777777888,0.18672727272727274,0.0,0.6011904761904748,0.875,0.44426229508196535,0.5581632653061209,0.8622222222222221,54.128517102433506,0.5690834514807932,1.0850834514807932,46.95175525104648,9.82884788820529,11.516282222687012,101.08027235347998,21.345130110892303,0.5272727272727272,0.18062397372742203,0.0,0.4384236453201971,0.5151515151515151,0.20610912336884193,-0.947831640101572,-0.05207182030813913,-0.011283710001209193,-0.04513484000483677,0.793890876631158,3.6508567857639,0.05128840201170278,0.04346258078290357,0.0579501077105381,-6.135578526439421,0.7720474242938773,0.7728129097909704,1.3766059962600663,0.6747379728827338,0.5130275652018121,1.4459833306294128,0.7802315564203388,1.3028720766000546,0.7392216434151042,0.6092134470979039,0.8327145187587129,1.0782188373107549,0.9004720137371721,1.157558648832529,1.3345646274520762,1.1374819676289216,1.0257510329760424,0.9168927411953176,0.8934199199081153,0.7933028222082544,1.1289326443646799,0.7130958123425117,1.1801463276131365,0.7763680392041422,0.928584464885385,0.852687730121288,0.923147419484151,1.4155038759689922,0.974740572007087,1.1764952152144181,0.9335227129938877,1.1297216235287844,0.848225272148012,0.7354433819268708,0.851925824824865,1.0603425034723013,1.04161028582036,0.9706708403538787,1.0188087293303174,1.2640990173193856,1.0454861081708176,1.215743639307835,1.0455461241470407,1.1877189035525861,0.9694917494739028,1.1318149999407925,0.9674706497190635,1.1409314085111284,1.0478740068400767,1.0405104097192153,1.0095785772471229,1.076257336961172,1.086086429623819,0.9964225743309462,1.0471529817249108,0.9889896297849485,1.044562198656413,1.1146297714725657,1.0280012662961544,1.015754075049639,1.0682097596828442,1.0164735164301482,0.9522192646581226,0.9974685761835939,1.0325997709226158,1.0424452422279245,1.0690424936686425,1.0481991163672217,1.0241804570222675,1.2543895458021743,1.0030255837278867,1.068862575498738,0.9641749190565861,0.9628831708148033,0.8392617864179793,0.944111457417619,0.9736468909084743,0.9330168790843804,0.9638175550571408,0.947597750850398,0.9654336982875543,1.2584941040056568,0.9693111574392502,0.956381378418092,0.9767626954518072,1.1031244525065562,1.0048172423590667,1.072762283802113,1.0880956952553842,0.9411962733899545,0.9733114454270028,0.9260892838225944,1.089688253973435,1.2301708531118405,1.120358638805034,0.9162510695701483,9.0,0.5138312417100295,5.77777777777778,4.138888888888889,4.097222222222223,2.306111111111111,1.493106575963719,1.063456632653061,0.8747952884857645,0.7418904320987656,10257.640850116413,11584.315231407154,4400.7544858345755,4005.257364652721,20.895486927906845,0.48576236890336233,10.745245698417575,0.9446262574511507,0.0,0.5151515151515151,1.5128953424537097,3.4493106661116286,4.865199196887865,5.423766869965769,5.647920696433751,5.933634982148035,0.18367346938775508,0.008287600672742413,0.08024691358024696,0.0481266149870801,0.04709450830140485,0.02778447121820616,0.019646139157417353,0.014371035576392719,0.011821557952510331,0.010752035247808196,0.45180434608156417,33.88421491045398,14.631944444444445,6.436810252758989,256.1734234680975,0.0,4.727950302876178,326.3917411913965,,267.1559660524894,262.5561845360434,270.0377522815453,267.2293688654755,391.9903969309078,265.7238012529329,267.3805620600384,331.747711018276,0.08179657163105904,0.002639347173443631,-0.36965651541221084,0.5498649943384722,0.32919556704461106,-0.20239442196616467,0.08029542710322095,-0.1292577926619441,0.02587608918325148,0.0007876523710808965,-0.03756703284890893,-0.021770905901611595,0.06662205847972073,-0.09412714350245766,-0.1392146542565316,0.12655157654444296,0.023533686431795604,0.19145832489246345,0.072882321653862,0.2477110994998536,-0.08367194150452809,0.03928576399467388,-0.09528975477809683,0.20840833488653887,-0.011738939991239632,0.023578335783033873,0.09980325567795362,-0.14625322997416013,-0.03568716780561888,-0.03918777834915866,-0.013171705757223184,-0.051659746696406814,0.021938464661391186,0.03148245754749409,0.028243766849747734,-0.04235942878818618,-0.0868940789120166,-0.017607480581427283,-0.04612666144622934,-0.16163799314140803,-0.08850801500537722,-0.14855709817599155,-0.08954414634181765,-0.1582915754184892,-0.021726364567408514,-0.05069033108818584,-0.010682001611594306,-0.14383785607559826,-0.044947829189546706,0.026876220861371113,0.03614198650227866,-0.07751937984496123,-0.07105251248321744,-0.005123726289662565,-0.045961392710048635,-0.009605191797307362,0.01589128642340692,0.028346592682830244,0.04882917677801617,-0.04219088338972409,-0.08605091427426001,-0.04494314435676165,-0.03836723950744659,0.003232163973196699,-0.06300915022586,-0.04226209127098563,-0.08650342375503162,-0.06037721918466738,-0.05221426820398993,-0.06875358067694845,-0.03624415219957955,-0.08158342774785479,0.034743577586012264,0.03145339915238726,0.04092876260528988,0.052825061935587,0.02044634400269277,0.02936042708908133,0.0347696245851795,0.023940401914758776,0.03125320828657086,0.024609542313590384,0.021136405153846186,0.027947882651326677,0.029201343261790046,-0.04812136767838751,0.01618235088797966,-0.05111526923876561,-0.052260885502579034,0.037033638089279196,0.03110717150585358,0.04789640304114717,-0.039011631711305964,-0.07617467934914453,-0.05945417328393142,0.05936827443528717,8.723801907129898,35.12006409236896,28.41492183707045,14.19620130281601,34.319031830156376,41.83278427230352,44.296354702721146,45.57020652170563,45.85820652170563,90.8714571263929,69.45495690568596,4.419518066462139,16.99698215424481,0.0,21.416500220706954,17920.2116858119,16178.779588120957,3652.089748257391,627.0,72.0,106.0,150.0,207.0,254.0,326.0,413.0,509.0,608.2733808600011,49.0,5.493061443340548,6.395261598115449,7.317876198626496,8.239329427901795,9.168788944817948,10.097037501003259,11.029925751269287,11.961967170194937,12.897180247563181,0.6428571428571429,0.9911428571428571,1.128235048715187,0.6033041140858975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6501263187909894,0.9766106442577032,1.0126070821627995,0.6164961327091393,5.0,0.0,1.0,0.0,0.0,2.0,7.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,6.0,0.0,0.0,0.0,0.0,5.0,0.0,7.0,0.0,6.0,1.0,0.0,0.0,0.0,38.14201919754755,17.957444608780513,11.49902366656781,5.749511833283905,0.0,9.694446914922299,4.794537184071822,0.0,0.0,0.0,60.927196726644254,42.862530348493806,53.07218607339401,180.32303016500092,-829.24943173678,-45.5571702537771,-9.87201704448548,-39.48806817794192,694.568033450385,3194.1019764044277,44.87176458715215,38.02502352862414,50.70003137149886,0.5,0.8519711746837139,0.10800622554819261,172.13118254628253,0.07355887401646284,74.50669833882027,0.148028825316286,10.0,0.16326530612244897,0.2366740013664793,0.5396025319112208,0.7611010022047602,0.8484820936204449,0.8835482224815083,0.9282447334363858,4.171100000000004,,2.5357142857142856,2.942764076314565,2.0087068438200064,2.5283905688526187,-10.777012015416004,2.650856793145655,2.5169791881946133,-4.229599559009088,160.68719999999962,42.747115044743985,0.0,9.883888251797686,17.75371813848418,37.51223847342259,55.74829805949034,47.1526663205505,0.0,22.99804733313562,4.59511985013459,0.0,5.958424693029782,2.3978952727983707,7.536363938404511,4.844187086458591,9.21542741102474,7.065613363597717,10.9492087798385,54.0,9.269359590324555,0.0,3.680719321664548,0.0,0.0,2.267866513380361,4.647497126774654,0.0,83.256,0.0,26.96535181421099,0.0,0.0,0.0,0.0,0.0,-0.9218296858741817,94.77174409207572,18.947451815200196,0.0,22.99804733313562,89.77872966268832,25.425947668397978,17.75371813848418,40.49885223731425,30.33183534230805,0.0,10.902924932081056,0.0,50.677545583215384,54.61061077844311,58.21668404753682,652.783482382793,,534.1966723647192,524.978607068618,540.0277925697353,534.3438108869123,787.5874557408614,531.3271090152682,534.6467159751589,664.8412037144185,58.21668404753682,652.783482382793,,531.8375048062751,522.2685248751259,538.2016954389899,531.9913232375968,794.7578058772317,528.8750426653908,532.3031913425809,667.7250215955611,5.117229266233926,481.6325944687598,,399.7671824472113,392.68830038355185,402.3049572857848,399.87438305767245,577.7118557630944,397.4668980803134,400.1228292444707,492.18040717605345,1.323106455625837,14.835988235972566,,12.140833462834529,11.931331978832226,12.273358922039439,12.144177520157097,17.899714903201396,12.075616113983369,12.151061726708157,15.110027357145874,2.57954186675773,326.3917411913965,,267.1559660524894,262.5561845360434,270.0377522815453,267.2293688654755,391.9903969309078,265.7238012529329,267.3805620600384,331.747711018276,82.03529411764707,0.0,9.100800875855384,0.0,0.0,0.0,0.0,85.05899490167516,3.9303647577534804,0.0,39.112578735097635,0.0,-1.7150731177487435,2.4956974018946423,0.0,0.0,0.0,51.7856751475677,745.3819671886843,127.08320876611161,289.7420959533768,408.6767325385806,455.5964170771246,474.42533850043503,498.425338500435,2757.0,175.60042828283287,129.50909642670163,96.56224039528679,117.78000000000003,117.78000000000003,1.0,9.220661147819992,6.614709844115208,5.067731193224044,6.519952576098519,,6.5429819039552335,6.544304402735271,6.540321060013969,6.542955654327996,6.498591154004318,6.543339693269257,6.542921756106499,6.520872054815378,0.11517570893691009,0.14818074036587545,,0.14870413418080075,0.14873419097125617,0.14864366045486294,0.14870353759836355,0.14769525350009813,0.14871226575611948,0.1487027671842386,0.1482016376094404,3.104497761965396,3.356471643231803,,3.359997551097345,3.3601996554532136,3.359590796933618,3.359993539214036,3.353189948795301,3.3600522325158715,3.3599883583277363,3.3566126586574994,444.7600000000018,1369.178332307316,351.7820717481415,,347.05781033734104,346.745576691188,347.91811715159514,347.06473676999605,357.17772166345867,346.98845236944203,347.070329659016,352.4336676528354,31.117689370620816,7.995047085185035,,7.887677507666842,7.88058128843609,7.907229935263526,7.887834926590819,8.117675492351333,7.886101190214592,7.887962037704909,8.009856083018986,8.703570622380033,7.344616410440012,,7.331095907390566,7.330195843559603,7.3335716974709575,7.331115864767499,7.359838018618293,7.330896041843103,7.331131979467045,7.346466968597661,39.112578735097635,33.14176853777018,1.212289738171662,3.827352803880472,0.44062789467495644,9.395643196157987,0.9197531501823386,1.6825184015427106,9.100800875855384,549.8626508777605,157.763007655407,-725.5029173346459,-39.857561138634274,-8.63693949207912,-34.54775796831648,607.6713655386543,2794.4912754324764,39.25790584595275,33.267753278958054,44.35700437194407,6905.0,86.0,2.9058857882164206,1.509084247084058,0.0,0.0,0.8620553497854291,0.3469983598846228,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.03125,0.4920965574026134,0.24178219987041494,1.1155504602904303,0.5042276608348017,31.120226906771116,26.007835076693354,21.345130110892303,14.89275470273789,18.85529166703332,11.69185187839076,17.577164558892335,9.760328790491375,15.331987621877447,7.761993057037493,13.339743882885545,6.172836611412925,10.186227583185733,4.303799955298728,8.09396485756208,3.114837609200891,8.215387848520928,3.8634719359053906,14.295522129062485,6.133278414963079,24.105628167849233,9.374555353221641,151.89344007188507,69.46174008584889,43.31099159210918,34.1750760767855,29.651950035374046,26.899636564157127,242.0,299.0,91.19971999999997,56.29628000000008,0.34523809523809523,509.11,14.5,9.944444444444441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,15.0,16.0,84.0,0.0,1.0,89.0,16.0,2.0,9.0,80.0,18.0,49.0,71.0,0.0,0.0,0.0,33.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,10.0,1.0,3.0,44.0,11.0,0.0,2.0,9.0,0.0,6.0,8.0,0.0,0.0,0.0,1.0,3.0,4.0943445622221,7.955364801230798,4.6798137289838575,5.287635518201176,5.864518565841794,6.392021798030227,6.745806040121008,7.132815741846874,7.448249680738234,7.641648826202623 +4044,Cc1cccc(Nc2ccccc2C(=O)O)c1C,0,22.181818181818183,6.068936363636364,3.1818181818181817,7.212121212121212,159.32796230693137,87.49499472727273,1.5454273203859092,6.1529181818181815,4.815656565656567,7.59968993939394,227.1244066622514,23.91176470588235,6.2515882352941174,3.735294117647059,7.088235294117647,144.392269941475,90.36482761764705,1.8803087151764704,6.4050441176470585,3.400326797385621,7.676358470588234,272.3761503234862,21.01818181818182,6.086181818181817,3.5636363636363635,5.963636363636364,148.85797314190356,78.88774534545452,1.6716032828926182,6.218238181818181,3.527272727272728,7.559790981818182,235.96649239979988,18.83823529411765,6.091294117647059,3.2058823529411766,4.588235294117647,151.6018558342014,68.81696769117647,1.540623519709485,6.212007352941177,3.1013071895424837,7.58017194117647,213.74177452415734,15.435897435897436,6.09498717948718,2.6025641025641026,3.551282051282051,157.8075074752576,53.92794997435897,1.3135577616768204,6.181739743589744,3.258547008547009,7.626725435897436,175.16081616983348,12.246913580246913,5.843382716049383,2.3209876543209877,2.8518518518518516,164.13631105388612,42.359035,1.1492012429885679,5.909154320987654,2.7681755829903985,7.472180296296297,149.86921624440012,14.967213114754099,5.807377049180328,2.5737704918032787,3.377049180327869,155.53255215718912,53.8162281147541,1.3568556933563116,5.911663934426229,2.870673952641166,7.391858557377049,181.35033395936202,14.614035087719298,5.956666666666667,2.263157894736842,2.6666666666666665,154.01833977873235,50.70633963157895,1.299384711156895,6.057903508771929,3.3274853801169595,7.524936631578948,171.85878843321854,9.222222222222221,5.923333333333335,1.6296296296296295,1.037037037037037,165.15684459785345,28.059431814814815,0.9331488262201111,5.967722222222222,3.259259259259259,7.594497037037038,113.56269082355902,7.13682277318641,0.10794012855831032,0.021609872130367105,0.6023875114784206,3.682277318640955,1.443905456326197,34.03230960330578,0.23642125312142334,0.1028089990817263,1.673094582185491,0.06682751147842055,51.48876257299939,-0.05928266623453804,-0.010071233727650869,-0.013606098279767406,0.2683789769351267,1.168881326635337,0.09557619571004528,-0.18412268619348596,0.019505662261789784,-0.00899937341327719,-0.2091165667368876,-0.006067864419597042,2.9555834712219355,1.0130394857667584,0.026933094582185478,0.002823276600995998,-0.04756657483930206,0.4069788797061524,-0.07579558900961295,4.720517031404959,0.009319119839900157,0.024870284664830093,0.43842975206611556,0.017580259320477496,3.1284430243353456,-0.5695322206017394,-0.0030497542267595885,-0.0020991574347854727,-0.16655863447307293,-0.5575001350402422,-0.3818045665927955,-2.802545553840544,-0.045535480654286455,-0.0027283395451844802,-0.012815318965051583,-0.0023184437422351873,-8.093464869189472,-1.4942431306067672,0.0027239351557533267,0.003944335262510492,-0.047997457088366176,-0.3135904499540863,-0.22987008577533322,-7.290920985590167,-0.06319093676694545,-0.0007286572013844708,0.033684749593840484,0.00401394617503708,-14.230248266439133,0.5713702683399653,-0.011951538958609653,-0.004346224922442075,0.06240859776213308,0.23504404312485128,0.4219528946611176,2.9007876660544833,0.05474325258875134,-0.009439751045811644,-0.12966647394256814,-0.007884659252457227,10.558650531392066,0.8259194026705206,0.005073234581282282,0.001844380047686996,-0.11257131674419306,0.038537385780306826,0.07423786494647674,3.94266499729034,0.014711442046582143,0.00643615740113505,0.0363357870809436,0.001172995227987779,4.974348402305093,-1.3032236237977866,-0.0029277415301338728,0.0012086055784344117,-0.20100526799091392,-0.8571842830216037,-0.4870664695744705,-6.407601608090473,-0.08688749144146636,-0.0036214924363249645,-0.0403194625682664,-0.001998848001546566,-16.120266219289295,-1.7350270380573407,-0.024838781756963562,-0.000310388350638668,0.015457606366697218,-0.9998979695949394,-0.2499231867309357,-8.231534475359657,-0.04068190463749633,-0.024662758902152814,-0.36080501989592895,-0.014530519334761753,-10.680688463277216,,,0.4759259259259259,1.3611111111111112,0.7777777777777778,0.027777777777777776,0.5833333333333334,0.19444444444444445,0.656575009243592,0.01788830052767112,0.027443856083226678,0.9050367625614292,0.28391215144147824,0.19343363482935597,1.561611771805021,0.4773457862708342,2.0009823610061583,1.696054656933948,0.11465690096202254,0.19027080311018824,0.0,0.30492770407221076,7.306372082424242,732.0,200.2749,105.0,238.0,5257.822756128735,2887.334826,50.99910157273501,203.0463,158.91666666666669,250.78976800000004,7495.105419854296,813.0,212.554,127.0,241.0,4909.337178010151,3072.4041389999998,63.93049631599999,217.7715,115.61111111111111,260.99618799999996,9260.78911099853,1156.0,334.73999999999995,196.0,328.0,8187.188522804695,4338.825993999999,91.938180559094,342.00309999999996,194.00000000000003,415.788504,12978.157081988993,1281.0,414.20799999999997,218.0,312.0,10308.926196725695,4679.553803,104.76239934024498,422.4165,210.88888888888889,515.451692,14534.440667642699,1204.0,475.40900000000005,203.0,277.0,12308.985583070093,4206.380098,102.45750541079198,482.1757,254.16666666666669,594.884584,13662.543661247011,992.0,473.314,188.0,231.0,13295.041195364774,3431.081835,93.08530068207399,478.6415,224.22222222222226,605.246604,12139.40651579641,913.0,354.25,157.0,206.0,9487.485681588536,3282.789915,82.768197294735,360.6115,175.11111111111111,450.903372,11062.370371521083,833.0,339.53000000000003,129.0,152.0,8779.045367387744,2890.261359,74.06492853594301,345.30049999999994,189.66666666666669,428.92138800000004,9795.950940693456,498.0,319.86000000000007,88.0,56.0,8918.469608284086,1515.209318,50.390036615886,322.257,176.0,410.10284000000007,6132.385304472187,235.5151515151515,3.5620242424242408,0.7131257803021145,19.87878787878788,121.51515151515152,47.648880058764504,1123.0662169090906,7.80190135300697,3.392696969696968,55.212121212121204,2.205307878787878,1699.1291649089799,-2.0156106519742933,-0.34242194674012955,-0.4626073415120918,9.124885215794308,39.74196510560146,3.2495906541415396,-6.2601713305785225,0.6631925169008527,-0.30597869605142447,-7.1099632690541785,-0.20630739026629943,100.48983802154581,55.71717171717171,1.4813202020202012,0.1552802130547799,-2.6161616161616132,22.38383838383838,-4.168757395528712,259.62843672727274,0.5125515911945087,1.367865656565655,24.113636363636356,0.9669142626262622,172.06436633844402,-38.72819100091828,-0.207383287419652,-0.14274270556541216,-11.325987144168959,-37.91000918273647,-25.962710528310094,-190.573097661157,-3.096412684491479,-0.18552708907254464,-0.8714416896235077,-0.15765417447199273,-550.355611104884,-116.55096418732784,0.2124669421487595,0.30765815047581835,-3.7438016528925617,-24.46005509641873,-17.92986669047599,-568.691836876033,-4.928893067821746,-0.05683526170798872,2.6274104683195576,0.3130878016528923,-1109.9593647822524,46.280991735537185,-0.9680746556473818,-0.3520442187178081,5.05509641873278,19.038567493112954,34.17818446755052,234.96380095041314,4.434203459688859,-0.7646198347107431,-10.50298438934802,-0.6386573994490354,855.2506930427573,50.38108356290175,0.3094673094582192,0.11250718290890675,-6.866850321395777,2.3507805325987166,4.528509761735082,240.50256483471074,0.8973979648415107,0.39260560146923806,2.2164830119375596,0.07155270890725453,303.4352525406107,-74.28374655647383,-0.16688126721763075,0.06889051797076147,-11.457300275482094,-48.85950413223141,-27.762788765744816,-365.23329166115695,-4.952587012163582,-0.20642506887052298,-2.298209366391185,-0.11393433608815426,-918.8551744994899,-93.6914600550964,-1.3412942148760323,-0.01676097093448807,0.8347107438016498,-53.994490358126725,-13.495852083470528,-444.5028616694215,-2.1968228504248017,-1.331788980716252,-19.483471074380162,-0.7846480440771347,-576.7571770169696,0.7289419924794521,0.5776063205717334,0.45222232383552713,0.30258411305409627,0.29674978724202805,0.16243106176697822,0.19106649257280667,0.09186183283855681,0.12360093864594915,0.046415647009856544,0.08007247916445434,0.025125856722232935,0.053604569387669804,0.013496815812511857,0.03583599526604106,0.007277835413228582,8.028643618651836,5.685104704385604,3.554759026379371,2.184247965504051,0.46151446698841725,-0.3341584313503871,3.2306455580262363,0.9728964508929973,6.022036560130456,0.9948252041376028,14.540245218765271,10.946306352981477,16.013904447587116,11.696741836584648,1.9969528802080116,0.7415784468097798,3.500815102329443,2.2339589484958977,7.008292009464553,1.4143974689477121,3.713735141366914,2.4297824375635018,20.90273924434334,14.701440889168639,0.2672991945271854,0.5975833169680221,0.7044649953118409,0.8269286856244733,0.8877597669845457,0.8877597669845457,1.933916352466387,590.7975148337515,0.0,1.0,2.0,0.0,9.0,0.0,3.0,0.0,0.0,3.6123247838865318,1.8428104216101029,1.2701862715422312,0.6140806820148592,0.2881750001311172,0.2881750001311172,89.58114283581358,717.5517731697273,46.59171163914395,21.74399312635537,43.17280779801408,,8.0,245.0,5.969305287951849,4.794537184071822,5.563451491696996,5.687386274683562,11.250837766380558,5.563451491696996,18.19910120538483,38.112942673227685,5.316788604006331,5.106527394840706,8.566666666666666,24.5,14.0,0.5,10.5,0.0,0.024074074074074088,3.5,0.13830613830613825,0.07380471380471365,-0.0645014245014246,0.05074074074074075,0.12455045871559622,0.0,0.576767676767677,0.8074074074074074,0.4384615384615388,0.5029629629629634,0.7566666666666666,11.818350166384656,0.3219894094980802,0.4939894094980802,16.290661726105725,5.110418725946609,3.4818054269284073,28.10901189249038,8.592224152875016,0.5894495412844037,0.19455252918287935,0.0,0.3501945525291829,0.13333333333333333,0.4008747810746099,-0.6365895926328959,-0.05464161347033284,-0.019290593716148358,-0.04547068518806398,0.5991252189253902,0.9514115056811812,0.04846967692263586,0.02883065168730852,0.05007428977269375,-4.061299875787401,0.8392116496624384,0.8279099448550055,1.5979021765758867,0.7101865136298422,0.5305559630335924,1.0320514789415747,0.841116825590154,0.931665077786792,0.8183806782209664,0.7630701018058157,0.8213108525750046,0.8943230848675875,0.7250643335048893,0.4385330778889769,0.6101975810764279,1.3756097560975609,0.8283291770573566,1.0972874302655533,0.733644119865143,0.9677531529236119,0.459776882608812,0.3541895353091841,0.3953716515360461,0.9153042255827162,0.9670915200871908,0.8008136533954234,0.981739020939025,1.4913916786226686,1.0920932961713365,1.3268724926522735,0.9732550744839236,1.1631769411816377,0.804516989675317,0.6543983125632251,0.7615167204918627,1.1078671120345682,1.1627538699077558,0.9712656510493626,0.9177095427978994,1.0318949343339587,1.0246690964895453,1.205388076025855,1.1670338247474832,1.1985387959947742,0.9926298569462584,0.8255134303432877,0.9024306560729705,1.205877237524309,0.9443967899963783,1.1557528733394007,1.1629685192223271,0.7949412827461607,0.9444536806132816,0.6578859970297785,0.9377194575859403,0.7191301602679978,1.1392720814134012,1.0901961847199073,1.1472682019931384,0.772431073980213,0.8230301291732407,0.7091197216628667,0.7270224602606813,1.2139144342263093,0.9260128367605576,0.8747569131263091,0.8267125837485638,0.9484317744236849,0.7194701690416822,0.7944191514758897,0.7310462399803342,0.9158596354631516,1.128694097570225,0.9732293860828197,0.8787990002319357,1.2002567394094994,1.1550072187951175,1.2592865212484587,1.134753873459835,1.3588808921548052,0.9821136590885476,1.1026761928604902,1.0163803433103158,1.289046899619321,1.3310459198261566,1.651994496376479,1.1641766783675787,0.6409214092140921,1.3313383208645053,1.0221607193816629,1.3215601366729146,1.113763638125276,1.6291376505883601,1.8711224946131644,1.7381933799023366,1.1611500179844345,3.5,0.0,2.4444444444444455,1.4375,0.9555555555555557,0.5277777777777778,0.3673469387755102,0.22743055555555558,0.061224489795918366,0.0,3150.882488990574,3531.539587196742,1666.3318777125085,1507.0712763809277,10.877095475577345,0.4745312468377718,5.715573797578141,0.9030627301472853,1.0,0.13333333333333333,1.4320693354719214,3.2015836977483505,3.774207847816222,4.430313437343594,4.756219119227336,4.756219119227336,0.18421052631578946,0.0,0.09401709401709404,0.05324074074074073,0.043434343434343436,0.027777777777777776,0.019334049409237383,0.015162037037037035,0.01020408163265306,0.0,0.447380650364673,14.409972299168976,6.437869822485207,3.5261707988980717,106.08894170459865,1.0,3.804325382080525,68.76618592262714,,52.030165269779644,51.170671542050144,50.840657995651554,52.038720831757686,67.9886799291624,51.682990218225385,52.080173206079394,62.20503457405755,-0.008306590778359744,-0.09330388857384293,-0.6296241920213651,0.44552546628407463,0.31743435528824987,0.06619283505806862,-0.005410231874935722,0.08250384432135588,-0.08753488015308161,-0.12498789307160847,-0.09079889831834352,0.05740249568110301,0.14194544518785385,0.24951882994688074,0.13064753849369662,-0.07896341463414626,0.11052369077306731,-0.05249345701792939,0.13870692546081048,0.039417436955695176,0.24190766262649707,0.2620472008781558,0.26306919009178403,0.06075972441365089,-0.07980192849141717,-0.028254128168024934,-0.09713881794958186,-0.27649748923959816,-0.1514009094909785,-0.2644249074065005,-0.08234955507011239,-0.19260316089645263,-0.02653794482539055,-0.007659650029056627,-0.034692953410121255,-0.15718895667214322,-0.20937091729680515,0.025235611557399895,0.18252469235890317,-0.07967870544090055,-0.08516209476309226,-0.15920023348357135,-0.21423526850149344,-0.2672811176349331,-0.007087484635515583,0.020133201047031993,0.060064277215129205,-0.27637580620167107,0.08005947275118659,-0.11072377917498323,-0.2011221952736396,0.10360207768744348,0.06383116283365663,0.29223027921420425,0.08523628574925492,0.2315496253656849,-0.09181833429102515,-0.07750098250464145,-0.1179852291073757,0.20506708655936903,0.11572648346734392,0.047000449684860904,0.08534895702113827,-0.18687524990004,0.010465639180736692,0.051414630106990496,0.11585064438022635,0.06222554805183487,0.06260305477751742,0.021717712475931714,0.01755257979891342,0.0966103699861226,-0.18260557466749738,-0.02712375433713031,0.05592840027665078,-0.33368100128369704,-0.23278645491534322,-0.33732573517225894,-0.18827995169237827,-0.3675113395868937,-0.0352254420203636,-0.024098734762262413,-0.029910555657785037,-0.3130831935693621,-0.24310916680962996,-0.23011628843433704,-0.014363266416671534,0.02566056910569096,-0.2715433638126905,-0.1730883318128239,-0.24187410643913734,-0.17207380512699744,-0.23988910623035603,-0.215651298938895,-0.21743319500164004,-0.2074372723200411,6.546673867455704,13.216583544008683,6.120463943040977,12.794143245351261,26.473312961932244,33.35110162839745,36.264699310710874,36.59321223804969,36.59321223804969,36.01768249811085,30.528983824811064,2.0638242173164056,3.4248744559833884,0.0,5.488698673299794,2196.0086734124325,1943.1130983482499,628.4664188377869,32.0,26.0,33.0,39.0,45.0,42.0,41.0,38.0,35.0,241.11027872,19.0,4.51085950651685,5.342334251964811,6.20050917404269,7.050122520269059,7.912423121473705,8.766705997750515,9.630168502920114,10.486010387763148,11.349829898661163,0.6464646464646464,0.9766060606060607,1.115884325704224,0.6087601516791427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6851006169479225,0.9645870469399881,0.9994923745834162,0.6439778879780915,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.423315998847038,0.0,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,24.26546827384644,43.173478588160066,5.687386274683562,11.250837766380558,181.13867193448317,-287.64840997911267,-24.690276773812116,-8.716618484215534,-20.54631499850804,270.71981477029675,429.90336319061464,21.901434865331833,13.027374642139838,22.626492799506035,0.5,0.8214098368603813,0.30074496864304956,85.16429530725259,0.21241153208297073,30.25054609685216,0.1785901631396188,4.0,0.15789473684210525,0.28389322911470927,0.6346815141707303,0.7481984473283436,0.8782647296216898,0.9428722274048311,0.9428722274048311,3.7452400000000017,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,72.60000000000002,9.901064578912528,0.0,0.0,0.0,13.847474399381248,5.316788604006331,59.15492395432226,0.0,0.0,3.6635616461296463,0.0,4.962844630259907,0.0,6.4692503167957724,0.0,8.068089626278244,0.0,9.709235104874208,21.333333333333332,12.830641061980346,0.0,0.0,0.0,0.0,0.0,4.116948223733939,0.0,32.228,0.0,11.123831884605693,0.0,0.0,0.0,0.0,0.0,-0.9274017384731665,36.82418274823939,5.316788604006331,11.374772549367124,0.0,11.075832682792555,0.0,13.847474399381248,21.48489165916281,42.46456947923127,0.0,0.0,0.0,20.089085005411707,22.608320359281443,22.631394707882,137.53237184525435,,103.98890196813073,102.25722127033679,101.61781399605708,104.00621595943986,137.46778782880278,103.29057753967393,104.08954056843102,125.03079891720378,22.631394707882,137.53237184525437,,103.41747339670215,101.58424676022875,101.10979803408887,103.43641032683578,138.66013020518506,102.68735436545936,103.52309381860886,125.52738273247465,4.728460608677741,101.28768214989637,,77.22919497625622,75.67002638671481,74.75069006662433,77.24375479499872,104.49840681044321,76.58464246024337,77.32142863268126,95.16409229343208,1.2572997059934443,7.640687324736352,,5.777161220451707,5.680956737240932,5.64543411089206,5.77812310885777,7.637099323822377,5.7383654188707744,5.782752253801723,6.94615549540021,2.364230304338871,68.76618592262714,,52.030165269779644,51.170671542050144,50.840657995651554,52.038720831757686,67.9886799291624,51.682990218225385,52.080173206079394,62.20503457405755,31.83137254901961,0.0,4.0462906273620565,0.0,0.0,0.0,9.127560311161501,32.983248361252734,0.0,3.1821296296296295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.25127030327702,371.16100584815206,47.25828807057341,105.65226202569556,124.54885897793534,146.2003434323386,156.95523093450208,156.95523093450208,368.0,108.24896336136206,80.69748085662792,50.87298132433778,49.33,49.33,1.0,7.8333711463155415,5.247927513443585,3.9404301511945556,4.1890455574675824,,4.187540685164605,4.18660092335821,4.18370830603591,4.187542610224227,4.1857507392813424,4.187058764021929,4.187604649298509,4.191429887638832,0.2189127861774753,0.23272475319264346,,0.2326411491758114,0.2325889401865672,0.2324282392242172,0.23264125612356817,0.23254170773785235,0.23261437577899605,0.23264470273880603,0.2328572159799351,1.9590765576828482,2.020259582307421,,2.0199002778663093,2.0196758341312324,2.0189846727038163,2.019900737577468,2.019472740875228,2.01978518671571,2.019915552618293,2.0208286025858535,192.1099999999997,86.56932942681603,87.0815478882044,,87.16499777862178,87.25609584509958,87.52694174345966,87.164791270236,86.97776738221643,87.2115844083835,87.15880151236681,86.68655995965128,4.809407190378668,4.837863771566911,,4.842499876590099,4.84756088028331,4.862607874636648,4.842488403901999,4.832098187900913,4.845088022687972,4.8421556395759335,4.815919997758404,5.048732254077114,5.0546316765836625,,5.0555895136125475,5.05663408996359,5.0597333165120135,5.0555871444433205,5.053439203568074,5.0561238357134375,5.055518424452229,5.050085518905698,0.0,11.123831884605693,12.30968994079113,4.116948223733939,-0.9274017384731665,12.830641061980346,0.0,4.0462906273620565,0.0,231.6053212766262,81.84904618402915,-129.97637523619798,-11.156511099336917,-3.938678037460544,-9.284026802585565,122.32704582310463,194.25548312060653,9.896349214912147,5.8865297915335315,10.223972795821398,602.0,27.0,1.2309017802800122,0.5314874647022799,0.0,0.0,0.43643195358482345,0.14226266572375643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.29123337345177097,0.08791843081836381,13.120955864630139,10.396913770291203,8.592224152875016,5.749098148027829,7.71549446829273,4.223207605941433,6.30519425490262,3.031440483672375,4.820436607192017,1.8102102333844052,3.6032615624004456,1.130663552500482,2.2513919142821317,0.566866264125498,1.4692758059076834,0.29839125194237187,3.0332633191596776,1.2035130585125975,4.255367522555282,1.3106347080695657,5.91718014085623,1.4942964945655528,59.281800623064456,40.4146346047032,27.600082586520298,21.816888577040437,20.535934899915233,20.535934899915233,90.0,104.0,37.75589499999998,16.486104999999995,0.3939393939393939,55.03,6.666666666666666,4.027777777777779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12.0,12.0,33.0,0.0,0.0,34.0,12.0,1.0,7.0,27.0,13.0,19.0,21.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,2.0,2.0,0.0,18.0,3.0,0.0,1.0,2.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,2.0,3.295836866004329,6.441718770297513,3.8918202981106265,4.42484663185681,4.91815444130209,5.390212631252292,5.435358218808835,5.6595910948495,5.908167853041822,6.18826412308259 +3749,CCCCC1=NC2(CCCC2)C(=O)N1Cc1ccc(-c2ccccc2-c2nn[nH]n2)cc1,1,21.433333333333334,6.0094899999999996,3.3666666666666667,6.833333333333333,163.34074702652458,84.46995186666669,1.5012477555961998,6.089428333333332,3.304282407407407,7.519857066666664,218.9090534015625,24.34375,6.2852140625,4.109375,7.09375,147.41375970874387,92.28175206250003,1.8492188854687506,6.4293953125000005,2.9062500000000004,7.671901124999996,266.44565703598613,20.16521739130435,6.1206573913043485,3.7217391304347824,5.695652173913044,153.34906876151345,74.93517720869569,1.604169063855122,6.2385652173913035,2.6311594202898534,7.57521109565217,223.8957658289758,16.07843137254902,5.924483660130718,3.104575163398693,3.9673202614379086,158.1804881765569,58.155044437908515,1.3704212939236529,6.022582352941178,2.50726216412491,7.458813516339868,184.60468940452049,15.936305732484076,6.063356687898089,3.031847133757962,3.7643312101910826,161.642952812475,57.11835892356685,1.324249430455223,6.144324840764331,2.68674805378627,7.598537452229296,180.44516468908927,16.602649006622517,6.100655629139072,3.019867549668874,3.6688741721854305,158.89984119301016,59.37097538410593,1.3959857231664308,6.192341059602648,2.7896431199411325,7.614832026490062,190.31775517822965,14.262195121951219,5.947115853658537,2.725609756097561,2.8353658536585367,160.2088838506142,49.639191103658526,1.3053130699690425,6.034759146341462,2.528455284552845,7.495931292682925,171.50965565828818,11.927272727272728,5.7562,2.466666666666667,2.1515151515151514,161.43365594437495,40.384668606060615,1.2057464870785455,5.839590909090908,2.231649831649831,7.351961987878787,151.95906891919884,10.710526315789474,5.623815789473682,2.335526315789474,2.013157894736842,161.7245277840076,35.76017316447368,1.1515834728697698,5.707118421052631,2.0250365497076017,7.245939868421052,141.1339078804378,6.9933333333333305,0.08675655555555548,0.009509882843076996,0.5888888888888888,3.5933333333333346,1.5904445555259448,33.45702642222222,0.2235112679801955,0.08447808333333325,0.8280304783950619,0.04473652888888886,50.38650732400824,0.5462500000000011,0.01755906944444462,-0.004337956368982264,0.2465277777777778,1.5306250000000001,0.1582521245605363,2.5398217152777813,0.003915896153083567,0.015288140625000234,0.05927059220679019,0.00900716694444438,1.2081029781042738,0.4713043478260876,0.01938451690821265,-0.0005453417068734963,0.05024154589371978,0.8747826086956523,0.07551865778016582,2.1568707835748824,-0.0024398432997289137,0.01679898913043491,0.06615430421363395,0.010635066473429922,-0.043263738800675605,0.5654901960784318,0.0073492396514161125,0.0006888103431943091,-0.021786492374727677,0.2543790849673202,-0.12155613100447175,2.648844416122005,-0.00417408242828053,0.00807034803921568,0.07069334755507145,0.003178117734204797,1.1895809601704392,-0.09630573248407633,-0.014056682944090503,-0.00019856571042031076,-0.05024769992922862,-0.4249681528662421,0.022597927694575803,-0.3587572922859165,0.014994718593415056,-0.011916469745222844,-0.11410988981284885,-0.008289636319886799,2.650584726365406,-0.8672847682119206,-0.017781147167034477,0.00014315882115098903,-0.10743193524650478,-0.6845033112582786,-0.0908655987951273,-4.069625827078731,-0.008746021369095787,-0.016747200331125707,-0.07066139573624387,-0.009374209242089813,-3.2967042387561767,-1.0258536585365852,-0.014605722222222194,-8.986941826339392e-05,-0.08604336043360432,-0.5539024390243903,-0.08345020926079552,-4.869848439701897,-0.019184870753846374,-0.01435987195121948,-0.05275735847636252,-0.007098953279132797,-5.403151698152009,-0.5321212121212122,-0.006648919191919266,-0.00019148703133554788,-0.008080808080808057,-0.16121212121212114,-0.08274276954920187,-2.5334825333333337,-0.012785292628426663,-0.0066709015151516044,-0.05107972081930418,-0.003323579393939355,-3.3280114462828325,0.025526315789473595,0.0024834225146197317,-0.00046874061556476213,0.091374269005848,0.40973684210526323,-0.16169254024334145,0.09054602119882868,-0.011827413967043352,0.002386664473684034,-0.02543164189408714,0.0008454728654971463,-1.8369537873683792,,,0.4760416666666667,1.21875,0.59375,0.0,0.625,-0.03125,0.9649537265076845,0.006711720418414446,0.020149220418414444,0.9000763041944987,0.22164608823641074,0.26896136516933405,1.8650300307021832,0.4906074534057448,2.074842068382126,1.6320312110136044,0.3865638137750542,0.05624704359346672,0.0,0.442810857368521,7.137207658600015,1286.0,360.5694,202.0,410.0,9800.444821591474,5068.197112000002,90.07486533577199,365.36569999999995,198.25694444444443,451.19142399999987,13134.543204093748,1558.0,402.2537,263.0,454.0,9434.480621359608,5906.032132000002,118.35000867000004,411.48130000000003,186.00000000000003,491.00167199999976,17052.522050303112,2319.0,703.8756000000001,428.0,655.0,17635.142907574045,8617.545379000005,184.47944234333903,717.435,302.58333333333314,871.1492759999995,25748.013070332217,2460.0,906.4459999999998,475.0,607.0,24201.61469101321,8897.721799000003,209.67445797031888,921.4551000000004,383.6111111111112,1141.1984679999998,28244.517478891634,2502.0,951.947,476.0,591.0,25377.94359155857,8967.582350999995,207.90716058147,964.659,421.81944444444434,1192.9703799999995,28329.890856187016,2507.0,921.1989999999998,456.0,554.0,23993.876020144533,8965.017282999996,210.79384419813104,935.0434999999999,421.236111111111,1149.8396359999995,28737.981031912677,2339.0,975.3270000000001,447.0,465.0,26274.256951500727,8140.827340999998,214.07134347492297,989.7004999999998,414.6666666666666,1229.3327319999996,28127.58352795926,1968.0,949.7729999999999,407.0,355.0,26636.553230821864,6663.470320000001,198.94817036796,963.5324999999998,368.2222222222222,1213.0737279999998,25073.246371667807,1628.0,854.8199999999997,355.0,306.0,24582.128223169155,5435.546320999999,175.04068787620503,867.482,307.8055555555555,1101.38286,21452.353997826543,419.59999999999985,5.205393333333329,0.5705929705846198,35.33333333333333,215.60000000000008,95.42667333155669,2007.421585333333,13.41067607881173,5.068684999999995,49.681828703703715,2.6841917333333316,3023.1904394404946,34.96000000000007,1.1237804444444557,-0.27762920761486487,15.777777777777779,97.96000000000001,10.128135971874324,162.548589777778,0.2506173537973483,0.978441000000015,3.7933179012345724,0.5764586844444404,77.31859059867352,54.200000000000074,2.2292194444444546,-0.06271429629045208,5.777777777777774,100.60000000000001,8.684645644719069,248.0401401111115,-0.28058197946882507,1.9318837500000146,7.607744984567905,1.223032644444441,-4.975329962077694,86.52000000000007,1.1244336666666652,0.1053879825087293,-3.333333333333335,38.91999999999999,-18.59808804368418,405.27319566666677,-0.638634611526921,1.2347632499999992,10.816082175925931,0.48625201333333395,182.0058869060772,-15.119999999999983,-2.206899222222209,-0.03117481653598879,-7.888888888888893,-66.72000000000001,3.5478746480484014,-56.32489488888889,2.3541708191661637,-1.8708857499999865,-17.91525270061727,-1.3014729022222273,416.1418020393687,-130.96,-2.684953222222206,0.021616981993799345,-16.22222222222222,-103.36000000000006,-13.720705418064222,-614.5134998888884,-1.3206492267334637,-2.5288272499999818,-10.669870756172825,-1.4155055955555618,-497.80234005218267,-168.23999999999998,-2.3953384444444397,-0.014738584595196603,-14.111111111111107,-90.84,-13.685834318770466,-798.6551441111111,-3.1463188036308054,-2.3550189999999946,-8.652206790123454,-1.1642283377777787,-886.1168784969295,-87.80000000000001,-1.0970716666666789,-0.0315953601703654,-1.3333333333333293,-26.599999999999987,-13.652556975618308,-418.0246180000001,-2.1095732836903993,-1.1006987500000147,-8.42815393518519,-0.5483905999999936,-549.1218886366673,3.8799999999999866,0.37748022222219924,-0.07124857356584384,13.888888888888895,62.28000000000001,-24.5772661169879,13.76299522222196,-1.7977669229905895,0.36277299999997314,-3.865609567901245,0.12851187555556623,-279.21697567999365,0.6865013924510782,0.5756241459679076,0.43609551413843983,0.3202567808623274,0.27062062986135266,0.17136256682611434,0.17212177949033083,0.09168724562102083,0.10837506362829454,0.04975550706954825,0.06998840261802125,0.02718052297740831,0.04544395643925146,0.015511703218626959,0.029658080393742188,0.009036007773813163,8.02203524024242,5.672834650769572,3.5438859288923155,2.1725868693218566,0.4060691868961352,-0.39768073321246467,4.025112751788667,0.9780341161352827,6.0220265803592214,0.9879342513982257,14.78179982098365,10.93340945134897,16.010067875276796,11.684026501183553,2.0102266237064175,0.7518202643987197,3.489144701816219,2.222503417308438,7.0082716816006885,1.1612180745246474,3.7020347359343897,2.418450485195726,20.918189153557453,14.702706308719163,0.2367393525556317,0.5514123342207808,0.7190222578108171,0.8398583104061754,0.8633571247318297,0.8794616019074742,1.1719746155889246,1113.598605256763,0.0,3.0,2.0,0.0,8.0,7.0,4.0,1.0,0.0,4.436868626105133,2.4829214210319757,1.442155416883014,0.6918295834054495,0.5459147917027254,0.44591479170272486,196.40376994996876,1423.9632592986086,43.286941091385174,23.732720988310145,46.46842127406952,,15.0,849.0,5.538925252383345,4.794537184071822,5.907179729351506,12.369160903912501,73.03517711302732,0.0,0.0,23.099010936235306,57.87970634991048,4.992404732635669,15.233333333333334,39.0,19.0,0.0,20.0,0.0,0.023958333333333304,-1.0,0.12065656565656624,0.04435185185185231,-0.07630471380471393,0.015119949494949436,0.11817209908735316,0.0,0.566111111111111,0.7989583333333332,0.44545454545454477,0.5217592592592587,0.7838383838383838,30.878519248245905,0.21477505338926228,0.6447750533892622,28.802441734223958,7.092674823565144,8.60676368541869,59.68096098246986,15.699438508983834,0.5958279009126468,0.054704595185995616,0.03282275711159737,0.2560175054704595,0.4,0.35540152453360163,-0.7451813212990306,-0.03207408536853074,-0.012419688688317176,-0.029807252851961223,0.6445984754663986,1.3515494743185252,0.03166426029573578,0.022525824571975425,0.03861569926624358,-7.402238225815591,0.7931288727359392,0.5721391611136655,1.5066451691021205,0.7174970518867926,0.42544787801484213,1.106450122132251,0.7994216428893666,1.0444931740005383,0.5898165956752096,0.5226487532935273,0.5550307682938498,0.9738123117769842,0.8467173705806775,0.6010384881188169,1.1434779403747344,1.2124282198523382,0.7126925869161891,1.0636335215025166,0.852570597953386,1.0421333299815976,0.6284692397921062,0.5667070437049448,0.5595967966814545,0.9962612861883067,0.8758263394331361,0.7945375986228865,1.0811050013724717,1.1896041435442104,0.9220203232808272,1.0722220394331305,0.8792503616128259,1.0360821255871215,0.7940868575953826,0.8338016593518274,0.8082551349414238,0.9804351069586509,1.0187515559252673,1.3705055975219826,1.4255568570335302,1.2443816848936426,1.2427767864528552,0.9933326996751896,1.0124606426439626,0.9017360918674518,1.3177223336529287,1.6246438563917145,1.4863743650998102,0.9058851652358999,1.105325791198177,1.3542616509677319,1.2302367285702915,1.2219480194926904,1.2368839769502018,1.096183296341336,1.1007294683182656,1.0237529045725262,1.3182104842990392,1.494195009415831,1.4447574189172934,1.0285070082358367,1.1227373921737314,1.1717244979714443,0.9900312739480237,1.0894500690289923,1.1113059414453137,1.0451339607695016,1.1213876639593576,1.0782055592146054,1.1684034226705795,1.2020141890943217,1.1913262958867936,1.0904438084129495,1.0524453303290293,0.9389312297187336,0.7519096495152884,0.9108061749571184,0.932914488109293,0.9689495728562406,1.0538068051852352,1.0695410855282699,0.963137142647213,1.053257036940243,0.9356223245543523,1.080221612303083,0.9662319376850136,0.6992167780974268,0.7041647726178426,0.6481504468718968,0.7174439751977343,0.9728964382864421,0.9708152228489167,1.082438605340195,0.7439210850026864,0.8051872545679013,0.6714021418691138,1.0749434512239173,5.5,0.21905927966534028,4.000000000000002,2.638888888888889,1.6144444444444446,1.1119444444444444,0.6230385487528344,0.3151927437641724,0.28371441169060213,0.24594135802469141,6547.939717498864,7359.13938390387,3105.301678593313,2824.67508971838,14.933882302804465,0.46074412107704443,8.053183826930793,0.8544072287116814,1.0,0.4,1.4700219695033858,3.423969174576543,4.464735178725505,5.215061012203069,5.360975803905793,5.460975803905794,0.1527777777777778,0.0073019759888446785,0.07843137254901963,0.051742919389978215,0.03165577342047931,0.021802832244008717,0.01384530108339632,0.008755353993449228,0.009783255575538002,0.00910893918609968,0.38520550120859154,23.728395061728396,10.726643598615917,5.034722222222222,187.5033779225011,1.0,4.416159146973563,201.819278680471,,164.88515312773134,162.88671284264765,161.17565922678648,164.90224950476687,198.2904581662383,164.03355880645108,165.0061300513272,187.60146888078685,0.0781101048617733,0.20239472777593714,-0.4561524511461473,0.41863207547169823,0.425962430426716,0.09950181791040422,0.07591295422449221,0.017519904873120492,0.18097167953818694,0.07158020598670714,0.2013380825055803,0.02397671603502144,0.06739337671488385,0.22343575980030198,-0.057344734511686875,0.08531583264971285,0.24344599499878997,0.04748273526277848,0.06446690020671667,-0.010915974491027,0.19885618219046863,0.07989356181895402,0.23772667968594532,-0.0008586373832675089,0.0808613245107386,0.08471105848260595,0.07243100199659654,-0.036995930447650774,0.07079195314489427,-0.07642902770934654,0.07917154330136876,-0.018675042497859125,0.0955318553733249,0.0853752964408913,0.07104077614287463,0.023609117268654695,-0.013771077094958487,-0.16202444707580807,-0.020879932350045996,-0.08532628289869011,-0.11826571972158867,0.014208560503451744,-0.010722928205228343,0.06708708124166556,-0.14105989713572087,-0.1378088038909189,-0.1852990503683374,0.05260504978685932,-0.12401593444403063,-0.20495450808496113,0.01505368925288136,-0.1824315881544421,-0.19049257270638542,-0.057132201483803956,-0.12163740362699055,-0.039130113878065156,-0.1982431379869815,-0.08533670870811906,-0.20954261483657644,-0.06542831432146831,-0.1466902276267758,-0.1683529518742738,-0.009450107824284822,-0.14611136677404507,-0.1541472464817412,-0.052469738080997946,-0.14555532754899386,-0.08583402048234219,-0.169983401429201,-0.06371427121694842,-0.15868359605557042,-0.10723409867263228,-0.07608978247681779,-0.07663881016647278,-0.020135582582381295,-0.013722126929674061,-0.04486422668240846,-0.0520249318102382,-0.07572348185882383,-0.057202004820443866,-0.07896606139641675,-0.06168821335938013,-0.07429229483123416,-0.0660496554143394,0.003650092820229781,0.028625185713250748,-0.04928984124194505,0.1551638530287985,0.11402695049311588,-0.10166499654549183,0.002706337976846856,-0.052916410317583346,0.02825187764105329,-0.03071341280019096,0.01889893754602707,-0.0364572558196171,23.545600093328442,25.607497526961293,5.725878920446906,13.066279577528466,31.56879544565244,38.76302181737808,40.391317377295216,41.27193282066491,41.372732820664886,66.39494618822803,52.22499875243534,12.370042040801735,1.799905394990935,0.0,14.169947435792672,8123.025658985784,6632.50703044088,2298.6083716541625,187.0,51.0,72.0,98.0,118.0,130.0,147.0,161.0,170.0,428.23245951600086,36.0,5.1647859739235145,6.042632833682381,6.9440872082295275,7.844240718141811,8.755107121633896,9.663515696240424,10.578292538848208,11.490669631021758,12.407522582759128,0.6333333333333333,0.9734666666666668,1.12946451101066,0.5946493492076708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6768683033932136,0.9609803921568627,0.9956542850206361,0.6308028292285777,8.0,3.0,1.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11.374545038140614,0.0,5.824404497999927,5.907179729351506,14.686851647557969,0.0,5.213385095654868,10.197363616602075,74.71713861616153,41.16620443952388,11.984273114623004,6.544756405912575,241.3656127397628,-506.0787132345616,-21.782633820162335,-8.434645220576027,-20.243148529382463,437.7693826897316,917.884546064047,21.504307271222835,15.298075767734119,26.225272744687057,0.4666666666666667,0.9255942994115792,0.14021382066351276,0.9154264944825579,0.12194266469643646,3.4870584785849994,0.07440570058842083,8.0,0.19444444444444445,0.24886561647108793,0.5796567786649197,0.7558520183266666,0.8828775356158127,0.9075800062881499,0.9245093870480282,4.777400000000004,,1.1071428571428574,1.3997208003722659,1.5246316986241883,1.104266649991819,-4.19138517343006,1.225826193390453,1.090072758891449,-2.3149422475185983,123.75870000000002,4.794537184071822,0.0,25.52404353876229,4.992404732635669,63.95317021846862,0.0,54.09438803938988,0.0,22.514758973090913,4.290459441148391,0.0,5.6240175061873385,3.4339872044851463,7.158513997329321,5.777652323222656,8.788288460263619,7.874358824729881,10.47257265041933,38.0,16.44025532730508,11.926130385441194,2.5399316372834435,0.0,0.0,0.0,4.742673870437236,0.0,58.40800000000001,0.0,13.360507217529431,0.0,0.0,0.0,0.0,4.990654391498825,1.1786207901179044,67.7678706606396,0.0,0.0,0.0,42.80576830625441,11.339293589984397,0.0,57.43294005186969,53.523341280328545,0.0,22.514758973090913,0.0,35.678960952460244,40.612098203592815,42.99875669489748,403.63855736094206,,329.7011098268912,325.68594313527205,322.2841761447369,329.7354823439092,397.8907241991734,327.99050347581533,329.94413055522375,375.9263572139232,42.99875669489748,403.6385573609422,,328.66316339831974,324.37689524759946,321.0660354962281,328.7002323595419,400.7723015059066,326.8412914195118,328.92218734376286,377.5178800090922,4.933716462907686,305.4934652558315,,249.8116739494892,246.85628379528276,244.27200169223124,249.83679149158047,298.51049855198517,248.55022922372575,249.9907422511222,283.1206408833874,1.3437111467155463,12.61370491752944,,10.30315968209035,10.177685722977252,10.071380504523027,10.304233823247163,12.434085131224169,10.249703233619229,10.310754079850742,11.7476986629351,2.5404389404465175,201.819278680471,,164.88515312773134,162.88671284264765,161.17565922678648,164.90224950476687,198.2904581662383,164.03355880645108,165.0061300513272,187.60146888078685,57.65882352941176,0.0,2.178722487349303,0.0,0.0,0.0,0.0,59.73925710123817,7.591119378659824,0.0,0.0,0.0,0.0,1.9476647717295263,-0.4796135906851058,0.0,0.0,37.84816975371466,628.6034803004487,88.20131817020315,205.4381504745926,267.8841107235303,312.90366073218416,321.6585482343476,327.6585482343476,1202.0,146.89085430448063,50.531515129045495,85.41985040778567,87.13000000000001,87.13000000000001,0.875,8.931073831063225,6.169925001442312,3.9383796969498404,5.573524559419078,,5.56583084136329,5.565360816711344,5.565114119466514,5.565835182483031,5.565498557218698,5.565648607698971,5.565856122461655,5.567064403440471,0.12307436552968251,0.1741726424818462,,0.17393221379260282,0.1739175255222295,0.17390981623332857,0.17393234945259473,0.1739218299130843,0.17392651899059283,0.17393300382692672,0.1739707626075147,2.533920204102368,2.8811784391060735,,2.8797970810288107,2.879712629216882,2.8796683009656108,2.8797978609874857,2.87973737852019,2.879764338990312,2.879801623215174,2.880018687727716,331.56000000000125,985.0964823962339,217.24091328543847,,217.72718561104548,217.7707323945989,217.84691235287127,217.72693961481883,217.98007169373943,217.74632774914218,217.72463013333564,217.70582542029072,30.78426507488231,6.788778540169952,,6.803974550345171,6.8053353873312155,6.807716011027227,6.8039668629630885,6.811877240429357,6.804572742160693,6.803894691666739,6.803307044384085,8.05589039785212,6.544157747002517,,6.546393646735962,6.546593632921421,6.546943388997501,6.54639251689834,6.547554454167331,6.546481560868609,6.546381909604011,6.546295536623817,0.0,20.298826380757784,14.466062022724639,3.688079662647769,1.7536014072222659,16.44025532730508,7.011854056790336,2.7579878092187915,0.0,394.87999586585727,163.91983430485587,-343.69576459951827,-14.793348919898293,-5.728262743325304,-13.74783058398073,297.3045077121634,623.3675169960098,14.60432762035636,10.389458616600166,17.810500485600286,3125.0,51.0,1.8888284995513176,0.9858504787935345,0.10206207261596575,0.05590169943749474,0.5777210825314643,0.15215006857736918,0.05892556509887896,0.010206207261596576,0.0,0.0,0.0,0.0,0.3373789490413836,0.1723606797749979,0.6710486027708742,0.2660544802608006,1.0526128282145188,0.3329280794216016,21.968044558434503,18.419972670973042,15.699438508983834,11.529244111043786,13.801652122928987,8.739490908131831,12.39276812330382,6.6014816847135,10.620756235572864,4.876039692815728,8.258631508926507,3.2073017113341806,5.90771433710269,2.0165214184215046,4.359737817880101,1.3282931427505351,5.301039925874291,2.199942369609987,9.227340172446361,3.3616904730684003,14.13020519255757,4.296489824144643,108.04659991028545,57.28125690131648,34.22573798272938,27.443445993761,25.52774507106491,25.00992997179683,174.0,210.0,67.82220399999999,32.377796,0.45,304.07,8.20138888888889,7.097222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,17.0,17.0,60.0,0.0,2.0,64.0,17.0,2.0,10.0,54.0,19.0,36.0,45.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,5.0,1.0,2.0,32.0,7.0,0.0,6.0,1.0,0.0,5.0,7.0,0.0,1.0,0.0,1.0,3.0,3.8607297110405954,7.743726962920969,4.421848128860553,5.013132174294843,5.577132115232708,6.022842082800238,6.306503363126447,6.718220267669881,7.09387170945927,7.435502545756306 +5284447,C[C@@H]1C/C=C/C=C/C=C/C=C/[C@H](O[C@@H]2O[C@H](C)[C@@H](O)[C@H](N)[C@@H]2O)C[C@@H]2O[C@](O)(C[C@@H](O)C[C@H]3O[C@@H]3/C=C/C(=O)O1)C[C@H](O)[C@H]2C(=O)O,0,22.51063829787234,6.40856276595745,3.074468085106383,7.319148936170213,164.86649121651283,88.6409687553191,1.3032144524244995,6.437669148936174,5.6141400709219855,7.9614763829787245,196.73817042276517,23.896907216494846,6.527144329896908,3.845360824742268,6.144329896907217,147.7590779204392,89.65519717525778,1.6546886660412377,6.647417525773189,3.252147766323025,7.98050498969072,247.83409839928163,20.248554913294797,6.468693641618497,3.38728323699422,4.76878612716763,153.53994907764795,74.18683660115606,1.3880955132380812,6.554470520231213,3.4059087989723817,7.978263583815027,202.35056978578396,16.214007782101167,6.4159455252918285,2.7431906614785992,3.692607003891051,161.69437904460727,57.341423466926074,1.1588907571525486,6.463348249027238,3.2883700821443997,8.002590894941637,164.95898283580564,15.804123711340207,6.359900343642612,2.5807560137457046,3.6391752577319587,163.04349928612612,56.11358644673538,1.1059377194886086,6.399578350515464,3.760118365788469,7.952610556701032,154.95665238471534,14.01980198019802,6.305072607260725,2.4818481848184817,3.066006600660066,163.8448635330657,48.179690537953796,1.0883622899247025,6.345283168316831,3.1577741107444077,7.927199564356433,150.26357422686564,15.217821782178218,6.167933993399341,2.5874587458745872,3.6402640264026402,162.06473974244844,54.37923056105611,1.133088963398079,6.220990099009903,3.344517785111844,7.770714138613858,156.01845114360472,14.770440251572326,6.208119496855345,2.619496855345912,3.2358490566037736,161.44727391589512,51.73619670754719,1.1496158671249432,6.265994025157233,3.0127096436058696,7.812834050314464,159.0387778255046,15.558823529411764,6.259067647058821,2.597058823529412,3.726470588235294,162.16386015201894,55.41164805588238,1.129869930575347,6.308250294117646,3.5243464052287585,7.856366294117645,157.318042912355,8.167496604798554,0.1867224649162516,0.029356308905046365,0.6289044816659123,4.1249434133091905,1.2754597794720726,38.48247766330918,0.21684576438427344,0.1711689112720687,2.2692622667370856,0.12516956496152098,47.58807782750427,-0.02272801519556782,-0.021375831882691584,-0.015531839128339586,0.13233701866310735,0.5866161392242614,0.05886990809471337,0.01611040271406488,0.008674782456607117,-0.01755128679301617,-0.385478511771328,-0.015969047304140012,2.7251372225754045,-0.21583014310872195,0.008074423535353356,0.0011743719762280754,-0.06993264548340081,-0.1777044513118952,-0.2318638812234593,-1.1649930245193696,-0.0383031578814916,0.0072690360898794385,0.09062795108496711,0.005157808793244679,-6.292675341056447,-0.7280562537761156,-0.021536567904909612,-0.0017505195628472275,-0.05646471016164857,-0.38729956862005976,-0.00783212682412121,-3.362101367589344,-0.002842769330280663,-0.01992485961216306,-0.20911799660802785,-0.014366197464211637,-1.8532693930152753,0.2528441131951608,0.02258661602255072,0.003952734730050719,-0.030600760089543093,-0.008470502583153173,-0.004306688493840197,1.0729751634437539,-0.0062196612577130736,0.019348917930241703,0.26494941670551464,0.016259810632541984,-1.3735448934865286,-1.1224857207314216,-0.03363889985761812,-0.00532864701916732,0.01915394119765077,-0.46993323143993887,0.06865901306311756,-5.15174521973079,0.008976174837853205,-0.03144057407664706,-0.41960648998919814,-0.021022686231094788,-1.0951518409239824,1.0129682501975867,0.029841610640240077,0.005263925810674707,0.02154141398748294,0.511318085181085,0.024105005127705935,4.688266496019511,0.0067593466848893695,0.027428448463904728,0.28019513910988203,0.01972066493806463,2.883034829377321,-0.49353701694895963,-0.022631146168760715,-0.004640588286128101,-0.00017438665721419773,-0.24678203233769233,-0.032045867913372564,-2.2469819398045727,-0.0043646028659690105,-0.01981272567057006,-0.2539652995069089,-0.015915335201050016,-0.9117429475872855,0.5174846217346154,0.018269884896013635,0.0038943554014184006,-0.007627885921231325,0.22380502223524096,-0.004818018132574043,2.3700467110024497,-0.0004957589766755745,0.01658862314595372,0.21346005978217455,0.012134785101057173,0.7529465546789754,,,0.45177304964539,0.8031914893617021,0.1702127659574468,0.0,0.6329787234042553,-0.4627659574468085,1.4886780169777352,0.024609925813126696,0.031929074749296904,0.9205569137752652,0.16082134359895617,0.3127434872341532,2.409234930753,0.4735648308331094,1.9987472534598716,1.447822641446297,0.037285239739053525,0.5136393722745215,0.0,0.550924612013575,7.0777100060000135,2116.0,602.4049000000003,289.0,688.0,15497.450174352205,8332.251062999994,122.50215852790296,605.1409000000003,527.7291666666666,748.3787800000001,18493.388019739927,2318.0,633.133,373.0,596.0,14332.630558282604,8696.554126000005,160.50480060600006,644.7994999999994,315.4583333333334,774.1089839999999,24039.90754473032,3503.0,1119.084,586.0,825.0,26562.411190433093,12834.322731999999,240.14052379018804,1133.9234,589.2222222222221,1380.2395999999997,35006.64857294063,4167.0,1648.898,705.0,949.0,41555.45541446407,14736.745831,297.834924588205,1661.0805,845.1111111111107,2056.6658600000005,42394.45858880205,4599.0,1850.731,751.0,1059.0,47445.6582922627,16329.053655999996,321.82787637118514,1862.2773,1094.1944444444446,2314.2096720000004,45092.385843952165,4248.0,1910.4369999999997,752.0,929.0,49644.99365051891,14598.446233,329.7737738471849,1922.6207999999997,956.8055555555555,2401.941467999999,45529.86299074029,4611.0,1868.8840000000002,784.0,1103.0,49105.61614196188,16476.906860000003,343.3259559096179,1884.9600000000005,1013.3888888888888,2354.526383999999,47273.590696512234,4697.0,1974.1819999999998,833.0,1029.0,51340.23310525465,16452.110553000006,365.57784574573196,1992.5861,958.0416666666665,2484.4812279999996,50574.331348510466,5290.0,2128.082999999999,883.0,1267.0,55135.71245168644,18839.96033900001,384.155776395618,2144.8050999999996,1198.2777777777778,2671.1645399999993,53488.134590200694,767.7446808510641,17.55191170212765,2.7594930370743582,59.11702127659575,387.7446808510639,119.89321927037483,3617.352900351063,20.383501852121704,16.08987765957446,213.31065307328603,11.765939106382973,4473.279315785401,-2.2046174739700786,-2.0734556926210836,-1.5065883954489399,12.836690810321413,56.90176550475336,5.710381085187197,1.5627090632642933,0.8414538982908903,-1.7024748189225685,-37.39141564181882,-1.5489975885015812,264.3383105898142,-37.3386147578089,1.3968752716161306,0.20316635188745705,-12.098347668628339,-30.742870076957868,-40.11245145165846,-201.54379324185092,-6.626446313498047,1.257543243549143,15.67863553769931,0.8923009212313295,-1088.6328340027653,-187.1104572204617,-5.534897951561771,-0.44988352765173745,-14.511430511543683,-99.53598913535536,-2.012856593799151,-864.0600514704614,-0.7305917178821304,-5.1206889203259065,-53.74332512826316,-3.6921127483023906,-476.29023400492576,73.5776369397918,6.572705262562259,1.1502458064447592,-8.90482118605704,-2.464916251697573,-1.2532463517074974,312.23577256213235,-1.8099214259945045,5.630535117700336,77.10028026130476,4.731604894069717,-399.70156400457984,-340.11317338162075,-10.19258665685829,-1.614580046807698,5.803644182888184,-142.38976912630147,20.80368095812462,-1560.9788015784293,2.7197809758695213,-9.52649394522406,-127.14076646672704,-6.369873928021721,-331.8310077999667,306.9293798098688,9.042008023992743,1.5949695206344363,6.5270484382073315,154.92937980986875,7.303816553694898,1420.5447482939119,2.048082045521479,8.310819884563132,84.89912715029425,5.975361476233583,873.5595533013283,-156.94477138976916,-7.196704481665908,-1.4757070749887362,-0.05545495699411488,-78.47668628338616,-10.190585996452475,-714.5402568578542,-1.3879437113781454,-6.30044676324128,-80.76096524319702,-5.0610765939339055,-289.9342573327568,175.94477138976924,6.211760864644636,1.3240808364822563,-2.5934812132186504,76.09370755998192,-1.6381261650751746,805.8158817408329,-0.16855805206969535,5.640131869624265,72.57642032593935,4.125826934359439,256.00182859085163,0.7298380779058582,0.562403403675118,0.4451509409831228,0.3177453546209358,0.29636570220982084,0.17710317146909527,0.18601753566586332,0.09928534967653581,0.1224635911630322,0.05517277609981099,0.07274728872950832,0.030983310773444114,0.049455024449509985,0.017254655586734603,0.030852163926556816,0.0101250551706476,8.034536321757868,5.711671804423596,3.5602858081912867,2.2116277550084407,0.4539202687932343,-0.4908776136721007,4.019052486360533,0.9725038295650439,6.029587290916287,0.9930494924293374,14.537832323111617,10.971979155470747,16.021199535808243,11.722696710421625,1.9708513839131039,0.7404190701807792,3.5064257712947025,2.261617906378125,7.009394298091548,1.153295462986537,3.719325707828227,2.4576196533865184,20.878700598766926,14.699771325989635,0.22306404213310002,0.5437954236960736,0.7725843617062355,0.8900996921452231,0.934555332812963,0.9409061386226399,1.468989022039851,1218.8303536686758,0.0,2.0,3.0,0.0,10.0,17.0,0.0,1.0,0.0,5.059961684079916,2.910920396201103,1.3779339088864937,0.590529521322626,0.2926571808970939,0.2501039894077328,298.47815115463067,4940.682691882033,122.21940805544591,52.56045416895779,112.8821028362989,,19.0,1450.0,97.3320144457796,40.22823873718787,25.36643125652633,6.4208216229260096,0.0,12.152040213667762,56.379615147218416,6.076020106833881,0.0,29.41798224616243,21.23333333333333,37.75,8.0,0.0,29.75,0.0,0.048226950354609985,-21.75,0.17102442868400375,0.029834969994544602,-0.14118945868945915,0.09026434558349494,0.22324499229583983,0.0,0.610283687943261,0.9205673758865249,0.4392592592592573,0.5804487179487164,0.83030303030303,69.96786679795355,1.1566665132169547,1.5006665132169545,43.26617494743746,7.55860314915094,14.698943900005201,113.23404174539101,22.25754704915614,0.49075500770416014,0.19152276295133444,0.023547880690737835,0.35321821036106754,0.6363636363636364,0.32754288377522467,-1.8700520759349608,-0.08131516043488939,-0.019894171020584685,-0.07480208303739844,0.6724571162247754,3.8392830022109554,0.059918672449727615,0.040843436193733554,0.055641782640738484,2.0133711233876066,0.8829046657455624,0.9146503020671034,1.5006515798642026,1.2325719024393862,0.6836920046522993,1.3024491147574233,0.8876585697792293,1.261090489162708,0.8912033958017468,0.9639837669157841,0.955746825372664,1.0852087682236837,0.9585692151838384,0.8711504501525786,0.8933646600998019,1.486764077178084,0.9926679929153956,1.3794736158581928,0.9662798915394066,1.35380920291558,0.8622570833783381,0.7177492654087237,0.897333902746089,1.2093244048666698,1.0970405952906248,1.2131391301587102,1.1265342430631664,1.2119995882782537,1.1516463516703501,1.040138306638058,1.0931837706913974,1.0293147027310878,1.203050587454868,1.0355087694789726,1.2301477320701917,1.0248084774935557,0.9734429801254114,0.9386504486469872,0.9344321471724418,1.1379666029100473,1.0343983916077584,1.00841734255321,0.9750277883222325,1.022579701099918,0.940417086843707,0.9062916503122782,0.938440492585212,1.010745095012524,1.1519725426150857,1.271093269514267,1.2078485323246821,0.937141095790342,1.1679753713957872,0.9232375303390808,1.145977416365548,0.9374462779162982,1.2676868136680226,1.2644850663921707,1.2716494505638818,0.9953076374166291,0.8391429349120476,0.7418581200042933,0.7147731905179442,0.9734845177877512,0.8177014968836653,0.9905621084541832,0.8436658857452207,0.9947722657101958,0.7461801316157736,0.732545198601903,0.7419700002397752,0.9573956282128875,1.030781949037152,1.0672157657061243,1.0923507462196838,1.0141382108576296,1.031801315288154,1.0536750560423502,1.0301785533772563,1.0522162546746634,1.0618926678439033,1.0111974768943364,1.0765788240328964,1.0322806990449938,0.9177683444511822,0.8776805390185508,0.843176823489995,1.0410557960812539,0.9403474087176571,1.0164222092318829,0.9201469300688895,1.019645541130643,0.8778099866852055,0.839874446425869,0.883049338698544,0.9881026548144657,12.0,0.6614733190490767,5.666666666666669,4.972222222222222,2.9211111111111117,2.1702777777777778,1.325034013605442,1.3212159863945578,0.9874181153943055,1.0115663580246914,45556.49286486323,47316.02477286924,4513.686383672428,4005.503695267609,17.63916072568706,0.491891529672439,8.962606974190843,0.9680837033780061,0.0,0.6363636363636364,1.4946271675977214,3.6436684554765346,5.176654942791144,5.964059330355012,6.261931670780544,6.304484862269905,0.24000000000000005,0.00696287704262186,0.08333333333333337,0.06629629629629628,0.036513888888888894,0.029729832572298324,0.015774214447683833,0.015543717486994799,0.01039387489888743,0.010761344234305227,0.51530937920131,39.7808,18.478476492759373,12.326089965397923,272.9421224712935,0.0,4.7717881007403165,364.7284221216428,,310.38186326863985,306.52865985501785,318.30238503695944,310.4599823523527,437.4063302363414,309.42207566989333,310.5462617605167,374.8775682084716,-0.0027827394727308113,-0.11447916506607296,-0.5290801094435157,0.21042467102883144,0.1422119240064084,0.04615583261988888,0.0004186425535023494,0.04000438966949105,-0.1025378187112427,-0.16986952871057862,-0.12757931458057825,0.057265124942709265,-0.026425495295819012,0.043242914230887435,0.040004074763847444,-0.11119756262215755,-0.04308045796180602,-0.1817884695034683,-0.030273337250062857,-0.17663779594797335,0.0424670346727011,0.03993718681766949,0.041206572818482404,-0.13223218142716195,-0.08914068643118493,-0.11533999358121773,-0.0596300975204111,-0.08978264872922921,-0.09389209252433187,-0.00614063018699266,-0.08736707124226861,-0.013109637342249294,-0.11640466404844389,-0.092152414321291,-0.11477388667627009,-0.03894398508241805,0.03095735761268762,0.12096357035925605,0.1346468570975979,-0.048657246023250444,-0.002053483341328507,-0.0033765772650414623,0.0278821746570329,-0.028682419854377146,0.11303990769379307,0.11675574947380528,0.12990227007292462,-0.028863214405618773,-0.13743326444383713,-0.1801545404443208,-0.18151624703238228,0.030456041825165054,-0.11392477044016953,0.05383079432856464,-0.13387249295132267,0.041394282536902506,-0.18368156835836302,-0.18490876799028597,-0.16795365740511664,-0.023013155624685106,0.12402432461403771,0.15981799861963358,0.1793115690293692,0.034252282525355275,0.12395759988641535,0.01889907115509614,0.12182860306028326,0.03117121841914836,0.1602419987371883,0.12347411016213983,0.15755159765975904,0.06058313260366709,-0.060426963221386285,-0.12120205342678607,-0.1580780574675852,-0.0002772863961030504,-0.05982676793612404,-0.025124953706213076,-0.058389741935637895,-0.02012768327922918,-0.1157495571089906,-0.11191535823317555,-0.1271501998584291,-0.019159062294807155,0.06335902502005127,0.09784513558241645,0.13265821033614206,-0.01212884649991002,0.05425650725610703,-0.003777475550478178,0.06158768496504975,-0.0022862285462815755,0.09691376210009608,0.09406583933072811,0.09694677060503956,0.01582216784229512,20.601314276254005,34.39490865209562,18.287690016797917,14.163801665622795,32.97009723002847,41.883703258075485,45.35787496584625,45.89223666797391,46.1692366679739,93.94112091261397,68.04766414797595,1.7524062677355157,24.14105049690251,0.0,25.893456764638024,17564.426264625807,13949.944981481449,5717.440088601546,213.0,71.0,85.0,107.0,122.0,145.0,145.0,170.0,181.0,665.3047405640012,50.0,5.493061443340548,6.329720905522696,7.217443431696533,8.071843149609158,8.968141414126814,9.831830420771897,10.734155034435489,11.603798542653045,12.510453267905001,0.6312056737588652,0.9977446808510636,1.1358730200869525,0.5896483188283081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6241258185756147,0.9816854401335002,1.0194247725899181,0.5934394182174088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,10.0,0.0,2.0,0.0,2.0,0.0,0.0,1.0,6.0,5.0,0.0,5.0,0.0,13.0,0.0,1.0,0.0,0.0,60.057146615206655,24.2298052094063,12.07713788190581,0.0,0.0,4.794537184071822,4.794537184071822,0.0,0.0,48.60816085467105,19.92349450621513,38.18012822146393,48.76960554338608,283.44552116266976,-1618.2854567173808,-70.36763480323461,-17.215802731035964,-64.73141826869524,581.9236723173004,3322.397235164653,51.851773252211295,35.344651437921826,48.15068456760366,0.3684210526315789,0.6691139563078935,0.08422749355830488,168.9665041938416,0.05785121883738948,265.01752271056455,0.33088604369210667,12.0,0.06,0.22802760042152356,0.5558958064233034,0.7897756914937825,0.909905939993249,0.9553507950659348,0.9618429172191755,0.11970000000000325,,3.392857142857143,3.8999534667287103,2.4759940018755637,3.382952706765206,-14.588007254590796,3.5245563035495717,3.370695395958281,-5.506252842997762,165.1591999999998,63.91255350618812,0.0,0.0,11.651573523323577,125.1102251025481,0.0,60.76020106833881,0.0,0.0,4.61512051684126,1.9459101490553132,5.953243334287785,3.9318256327243257,7.461065514354283,5.820082930352362,9.062420241899561,7.655864017616056,10.721084386282662,59.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.78799999999998,0.0,24.426185608185627,0.0,0.0,0.0,16.574595953810757,0.0,-1.8880912693678042,106.77206388817353,5.733667477162185,0.0,0.0,121.73641753348474,33.27338913714389,5.917906046161393,45.95158251401131,60.76020106833881,0.0,0.0,0.0,55.42694196986096,58.66782694610778,57.67062957260595,731.2670739368393,,621.0199126857874,613.22338625006,637.0966326048303,621.1781472195235,879.9489070175154,619.0759919790183,621.3529677046758,751.7929222538907,57.67062957260595,731.2670739368393,,617.987506833836,609.7513367596847,634.8640915766423,618.1543470090527,891.2341274424039,615.9286489363242,618.3399039550635,756.8305578336542,4.937209168577915,511.14622474356906,,432.61354506332515,427.7089348701356,442.92651414032997,432.71369698051956,612.385885665359,431.3932025165344,432.82314993922364,520.424506400961,1.2270346717575733,15.558873913549773,,13.213189631612497,13.047306090426808,13.555247502230433,13.216556323819647,18.722317170585434,13.171829616574858,13.220275908610125,15.995594090508312,2.4726471326533392,364.7284221216428,,310.38186326863985,306.52865985501785,318.30238503695944,310.4599823523527,437.4063302363414,309.42207566989333,310.5462617605167,374.8775682084716,92.27843137254902,0.0,3.3372066653791874,0.0,0.0,5.975063664154008,63.934269051441376,95.82592862345231,-0.47039869566772374,0.0,28.512675216008752,0.0,-13.385326397234122,0.0,-2.0995131300433987,0.0,0.0,55.78330531243642,579.0306047163538,140.49495375418581,342.50483481479426,486.6055646223675,560.6215770533711,588.6215770533711,592.6215770533711,1336.0,177.76044761006116,286.3385887636165,104.1666167234136,230.98999999999995,230.98999999999995,0.5833333333333334,7.827240901752812,6.643856189774724,5.038308982373332,6.789780858625859,,6.796381928808439,6.796937316310806,6.795570018780777,6.79637172712239,6.768551525467921,6.796549840887692,6.79635457556822,6.784341305734877,0.10719806345475175,0.14446342252395444,,0.14460387082571147,0.14461568758108098,0.14458659614427186,0.1446036537685615,0.14401173458442385,0.14460744342314238,0.144603288841877,0.1443476873560612,3.164633015129702,3.462981175631166,,3.463952910006102,3.464034624779758,3.4638334407743447,3.463951408958366,3.4598496178694016,3.4639776157990987,3.4639488853212694,3.4621797163373293,488.58000000000175,2098.156472224164,360.5104211580244,,358.71313689094643,358.5604606289296,358.9187660546916,358.71589555123586,364.28572706667535,358.668938204105,358.72032209307,361.34674912963493,44.64162706859924,7.670434492723924,,7.63219440193503,7.62894597082829,7.636569490525353,7.6322530968348055,7.750760150354795,7.63125400434266,7.632347278575958,7.68822870488585,9.196376876504228,7.435083372535059,,7.430085516199307,7.429659803431263,7.430658593200285,7.430093206605368,7.445501032898162,7.429962294032398,7.430105546494895,7.437400529945797,28.512675216008752,24.426185608185627,63.934269051441376,5.975063664154008,-5.446217270578118,-1.0767099069560049,5.254193639031836,3.3372066653791874,0.0,636.7126338769699,245.28502204404936,-1400.414380499885,-60.893983376768205,-14.898025324466861,-56.0165752199954,503.5788189801247,2875.1002158145184,44.870927199772375,30.586172508665076,41.66811906977563,8388.0,75.0,4.156792145404776,1.783307056256655,0.1767766952966369,0.04564354645876384,0.6997641173736193,0.18263335023841584,0.0,0.0,0.23570226039551584,0.13608276348795434,0.3333333333333333,0.17479246499677625,0.33192730526045344,0.15647203227376255,0.47715596702532276,0.2049263181289251,0.8361578298260728,0.28075264853453996,34.30238966157533,26.432959972730547,22.25754704915614,15.887267731046789,21.04196485689728,12.574325174305764,15.811490531598382,8.439254722505543,13.103604254444445,5.903487042679776,8.875169225000015,3.7799639143601818,7.170978545178948,2.5019250600765175,4.473563769350738,1.4681329997439019,7.54872941302574,2.9000000195788624,12.688955786261415,3.931652443363228,16.973587085156097,4.644406406514487,170.01387373911382,78.58959938308544,41.72429903230339,29.158968553642516,26.713700640971958,26.035357620509334,242.0,280.0,97.97527099999996,56.99672900000009,0.3723404255319149,338.14,17.729166666666664,10.263888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,1.0,0.0,0.0,94.0,0.0,1.0,97.0,0.0,7.0,7.0,90.0,7.0,50.0,90.0,0.0,0.0,2.0,33.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,47.0,13.0,7.0,4.0,47.0,14.0,0.0,1.0,13.0,0.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,4.060443010546419,6.342121418721152,4.454347296253507,4.718498871295094,5.003946305945459,5.214935757608986,5.480638923341991,5.62040086571715,5.87493073085203,6.089044875446846 +54677971,CN1C(C(=O)Nc2ccccn2)=C(O)c2sccc2S1(=O)=O,0,42.24242424242424,6.777936363636364,3.9696969696969697,10.632996632996633,159.7759317417254,168.32598872727274,1.9445229682829999,6.852863636363637,7.831569293760651,8.285735818181818,261.71821250112987,40.94285714285714,6.6535657142857145,4.685714285714286,7.961904761904762,145.72053323255858,160.16416485714285,2.1500119736000003,6.833074285714286,3.3346560846560847,8.152004457142855,302.17950861526566,35.85964912280702,6.798050877192982,4.368421052631579,9.321637426900583,152.9423718691856,139.2781688596491,1.9666808358692456,6.921631578947369,4.73846653671215,8.261765929824563,273.316782408294,34.94202898550725,6.756514492753622,3.869565217391304,7.938808373590983,153.22288154115213,133.7385106231884,1.8177318299332754,6.882317391304348,4.41814526550168,8.289629028985507,250.417678046091,31.855263157894736,7.021863157894737,3.1315789473684212,6.644736842105263,159.117680358633,120.74215592105261,1.4641985000335134,7.099440789473684,5.388178200129954,8.567070605263158,218.24130976413136,25.797101449275363,7.062328985507246,2.7681159420289854,6.391304347826087,163.8453087860733,94.95830381159422,1.352396076993435,7.095624637681159,6.667919126856324,8.610900173913043,193.0168866143685,21.934426229508198,6.333308196721312,2.80327868852459,4.852459016393443,160.94465134281407,80.43060549180329,1.372289367689131,6.417832786885246,3.8208358631855903,7.955650262295082,182.7624837427555,26.574468085106382,6.656399999999999,3.021276595744681,5.283687943262412,160.70825607263993,99.10056425531916,1.5819007695435532,6.7402,4.41548463356974,8.199502808510637,214.9914166614192,22.108695652173914,6.208652173913044,2.630434782608696,3.9130434782608696,154.89684395695835,80.2931535,1.5389376028933477,6.324,3.7073268921095015,7.840516913043478,196.75843259946924,14.440771349862258,0.17615114784205688,0.03153308440121275,0.7731864095500459,4.558514437302317,1.808135441420695,63.810683471074384,0.37423123319142143,0.15731533516988055,3.2711155702177024,0.11618606244260786,47.178748566689485,2.006847697756789,-0.024745173816082915,-0.018251299458257302,0.27096943460579825,0.023111344323465562,-0.2968593648267595,8.823376128925618,-0.015573717049312347,-0.01548823560278104,-0.6526272626861851,-0.004399858113603571,2.2173314210022967,0.7585906916050461,0.03718452467256292,0.0019874448120273712,0.0370209269730801,0.8965035791192091,0.3252669028255815,3.9250054715093503,0.05589041185602031,0.031045270890725438,0.48625002312092525,0.019789131603112457,5.175307334774345,-0.29979638280033505,0.003781614564618488,0.0009033708981998679,-0.18908452110033136,0.4041557427591683,-0.18918287690772556,-1.4377768900467103,-0.03847653825820539,0.004343294606140447,-0.12115435943389388,-0.006451616680640406,-3.624902262424186,-0.28566768160069606,-0.03403272678942541,-0.001914087462885494,-0.2117829007781161,-1.4524981339175915,-0.44551533075735184,-1.7512513490648083,-0.08759593182316909,-0.02572968923686624,-0.6550876141353283,-0.014748709970518614,-8.275995293233741,-2.4144208887291887,-0.006551060007186532,0.0017322641964952789,0.030941829360801698,-0.7504336292215079,0.2071083286795395,-11.256933699005867,0.009442324264084414,-0.013356222302072044,0.34185367311922693,0.004638089511717941,-7.193263187408522,-0.13873458880910447,-0.0007520420298363403,0.0009950428796469723,0.02065363019163316,0.35455063969718703,-0.2771614405037304,0.03254909077360365,-0.010846315117764268,0.002007466618494898,-0.12189956035860425,-0.008266486685032121,4.39820370033343,-1.3801652892561982,-0.0321416056112381,-0.002176494962811062,-0.05880858878924642,-1.0349812329180479,0.3854175663770174,-6.291193838579215,0.03424011621464813,-0.031757694937772286,-0.22960821048076585,-0.01798101795518043,-0.5814692173788164,-2.014552641034854,-0.011396931768275586,0.0007155024134688083,-0.08082804327863617,-0.03179799754239811,-0.19001362940641905,-8.784322998742363,-0.033973920564615165,-0.011708220545374718,-0.08474067210434497,-0.012867547291092716,-5.348327772884892,,,0.4863636363636364,1.3863636363636365,0.7272727272727273,0.022727272727272728,0.6590909090909091,0.06818181818181818,0.7194318634292999,0.022211639825670367,0.033938912552943096,1.0564026746427537,0.26892614588859237,0.20496283075724164,1.7758345380720535,0.473888976645834,2.01939939970352,1.2250238670134515,0.2802811727894355,0.320497425557377,0.0,0.7943755326900681,10.21269993430304,1394.0,223.67190000000002,131.0,350.8888888888889,5272.605747476939,5554.757628,64.169257953339,226.1445,258.4417866941015,273.429282,8636.701012537285,1433.0,232.8748,164.0,278.6666666666667,5100.218663139551,5605.7457699999995,75.25041907600001,239.1576,116.71296296296296,285.32015599999994,10576.282801534298,2044.0,387.4889,249.0,531.3333333333333,8717.715196543579,7938.855624999999,112.100807644547,394.533,270.09259259259255,470.92065800000006,15579.056597272756,2411.0,466.19949999999994,267.0,547.7777777777778,10572.378826339496,9227.957233,125.42349626539601,474.87989999999996,304.8520233196159,571.9844029999999,17278.81978518028,2421.0,533.6616,238.0,505.0,12092.943707256109,9176.403849999999,111.27908600254702,539.5575,409.5015432098765,651.097366,16586.339542073983,1780.0,487.3007,191.0,441.0,11305.326306239058,6552.122963000001,93.31532931254701,489.5981,460.0864197530864,594.152112,13318.165176391427,1338.0,386.33180000000004,171.0,296.0,9817.623731911659,4906.266935000001,83.709651429037,391.4878,233.07098765432102,485.294666,11148.511508308085,1249.0,312.85079999999994,142.0,248.33333333333334,7553.288035414077,4657.72652,74.349336168547,316.7894,207.52777777777777,385.376632,10104.596583086703,1017.0,285.598,121.0,180.0,7125.254822020084,3693.485061,70.791129733094,290.904,170.53703703703707,360.663778,9050.887899575586,476.5454545454545,5.812987878787877,1.0405917852400208,25.515151515151516,150.43097643097644,59.66846956688293,2105.7525545454546,12.349630695316907,5.191406060606059,107.94681381718418,3.8341400606060594,1556.8987027007531,70.2396694214876,-0.866081083562902,-0.6387954810390055,9.483930211202939,0.8088970513212946,-10.390077768936584,308.81816451239666,-0.5450800967259322,-0.5420882460973364,-22.841954194016477,-0.153995033976125,77.60659973508038,43.239669421487626,2.1195179063360863,0.11328435428556015,2.1101928374655654,51.10070400979492,18.540213461058148,223.72531187603298,3.185753475793158,1.76958044077135,27.716251317892738,1.12798050137741,294.9925180821377,-20.685950413223118,0.2609314049586757,0.062332591975790885,-13.046831955922864,27.886746250382615,-13.053618506633063,-99.206605413223,-2.654881139816172,0.29968732782369084,-8.359650800938677,-0.445161550964188,-250.11825610726882,-21.7107438016529,-2.5864872359963313,-0.14547064717929753,-16.095500459136822,-110.38985817773695,-33.85916513755874,-133.09510252892542,-6.657290818560851,-1.955456382001834,-49.78665867428496,-1.1209019577594146,-628.9756422857644,-166.59504132231402,-0.45202314049587067,0.11952622955817424,2.134986225895317,-51.77992041628405,14.290474678888225,-776.7284252314048,0.6515203742218246,-0.921579338842971,23.587903445226658,0.3200281763085379,-496.33515993118806,-8.462809917355372,-0.045874563820016756,0.060697615658465306,1.2598714416896228,21.627589021528408,-16.906847870727557,1.9854945371898225,-0.6616252221836203,0.12245546372818877,-7.435873181874859,-0.5042556877869594,268.2904257203392,-64.86776859504131,-1.5106554637281906,-0.1022952632521199,-2.7640036730945816,-48.644117947148246,18.114625619719817,-295.6861104132231,1.609285462088462,-1.4926116620752974,-10.791585892595995,-0.8451078438934801,-27.329053216804372,-92.66942148760329,-0.524258861340677,0.03291311101956518,-3.7180899908172638,-1.462707886950313,-8.740626952695276,-404.0788579421487,-1.5628003459722974,-0.538578145087237,-3.8980709167998686,-0.5919071753902649,-246.02307755270505,0.7229733143184688,0.5899989552641999,0.4343982285920145,0.35294228484730206,0.27679951936574815,0.20296175705356187,0.17290784813066296,0.11986793493284545,0.10959150669079269,0.06992825641941892,0.06778145622448294,0.04099543004086523,0.040316465518727286,0.024449934535858052,0.02566604415656313,0.01331080401972749,16.01326836823526,5.730405874201573,3.581010010274651,2.1949018486668046,0.48050841898873053,-0.3811920488366392,4.048656901693366,0.9714091333273182,6.02251151130235,0.6447473210287317,14.551220797055837,10.31062235569277,32.06679041803309,11.743350661883017,2.955158490722547,0.7517064713332282,3.5370453216922884,2.2578236634055027,7.014574649411961,0.29757127417638646,3.7683440192683015,2.463220904160019,24.4427125666315,14.701030337071773,0.36384437103830597,0.7559913600206392,0.8420796590928079,0.8864843259809617,0.8864843259809617,0.8864843259809617,1.7256058072644849,871.699980970591,0.0,4.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,3.058010655848725,0.9171109850451638,0.44711780309586135,0.20469356067161826,0.20469356067161826,0.20469356067161826,11.685065625280572,1167.0368957561163,66.04189642862802,35.36475441685201,73.70427744851497,,10.0,377.0,15.930470882759089,18.318861563241466,27.04669763176611,0.0,15.64200186923097,19.310882622751876,23.579163975850747,0.0,10.30076712495354,0.0,10.700000000000001,30.5,16.0,0.5,14.5,0.0,0.013636363636363587,1.5,0.2701857282502441,0.09584214235377009,-0.17434358589647403,0.051515151515151514,0.18429702970297002,0.0,0.7121212121212122,0.9181818181818179,0.44193548387096804,0.6162790697674421,0.8666666666666664,15.827500995444597,0.48865607616474804,0.746656076164748,23.240858842140582,5.916375209549032,4.509182276659316,39.06835983758518,10.425557486208348,0.52970297029703,0.1713395638629283,0.0778816199376947,0.3177570093457944,0.07692307692307693,0.48861626841934913,-1.1110561197697775,-0.08069027492106644,-0.03366836726575083,-0.08546585536690596,0.5113837315806509,1.1628266622423573,0.04798734592072426,0.03523717158310173,0.05814133311211786,-2.467723900653424,0.7990843189622282,0.7755008675155098,1.5522398855623734,0.8062436375975569,0.6999571537285848,1.2762853757193262,0.7786496212431301,1.0846611932619141,0.7100966399013755,0.7816944262518013,0.6817777915092502,0.8042838620395609,0.8387852500384881,0.5847474475157839,0.871776564874328,1.0781347668458556,0.6622168923360372,0.9223809130159775,0.819413603786875,0.811889539611098,0.5778402755922591,0.5923753725718286,0.6123997425367296,0.7457011946027479,1.0894834917527885,0.8866781391667171,1.0556081825032904,1.49044717546215,0.8428387086728806,1.1684949389171952,1.0738060651668961,1.1970834569659414,0.861673792899647,0.9722922066600764,0.9681821812137309,0.9840492950327722,0.9418663025361956,1.4337259517364103,1.306175754717768,1.3201650206275783,1.3868924067184836,1.2221125808952222,0.9467554237066299,1.161638521059569,1.3756135308396447,1.5592273418105416,1.4034044055712016,1.0271790526741773,1.031092237170236,1.400912925483433,1.3696207181872289,0.8997211607972735,1.2588629361401487,0.8175161388577675,1.0477053253816724,0.8315617383855313,1.4238872331114167,1.3308570306774647,1.3597998482193283,1.0227247267132433,1.0551347564751283,0.9482756319195673,0.9030765188453551,0.8840777228301079,0.9696487580714165,1.0654498711764855,1.0517181198368535,1.023026441124282,0.9555716886377735,0.9670867870765794,0.9937245778424946,0.9879030934377849,0.9893901142165976,1.1296845426350355,0.9784640212883484,0.9206044372567848,1.1689660197364975,0.8149028633978133,0.99552767221794,0.8063545061371304,1.1455921523231596,0.9276601938701393,1.0758354584300742,0.9360246757907873,1.188991921437221,0.8849927578011331,0.6690100498037026,0.9269854383971908,0.900986187151735,0.9995634667795388,1.1878032199445974,1.1345057749262752,0.9174091609595386,0.8426091130432373,0.935322434941107,1.1994869790972449,5.0,0.004691358024691353,3.555555555555557,2.5555555555555554,2.2988888888888894,0.7152777777777778,0.5184580498866213,0.30293367346938777,0.1650447215923406,0.056257716049382706,5347.252759777405,5664.436428518269,2562.876517654138,2443.318722482506,12.792227830650415,0.4395759632897671,7.169071959370091,0.7843631509278924,1.0,0.07692307692307693,1.9863834635097282,4.12728313431329,4.597276316262592,4.839700558686835,4.839700558686835,4.839700558686835,0.20833333333333331,0.0023456790123456764,0.09876543209876547,0.06552706552706553,0.06213213213213213,0.026491769547325104,0.023566274994846426,0.015146683673469392,0.010315295099521287,0.007032214506172838,0.5196558799249772,16.84375,6.481481481481482,3.04,130.1390704472582,1.0,4.034923571461026,92.70381189352725,,62.561741485078,68.65188231143199,68.31114842615744,62.5722339352245,92.80914879448211,69.32194138866407,69.54868231671122,87.2483560418001,0.13897094892898024,-0.14047693767099537,-0.5787984209231166,0.3504580929759077,0.0050699289519290465,-0.16417982747659107,0.13827427711106227,-0.041615225208491084,-0.09845343803295281,-0.19951213849737226,-0.037869069844560385,0.046998521333561645,0.05253117532480576,0.21109442162649902,0.06302728863247309,0.047880985123140415,0.19666573210410868,0.17989078438173392,0.06151016190397913,0.14934726687398656,0.1973442122295356,0.14864960062800955,0.17032276666478516,0.10969573148933344,-0.020760413383540944,0.021468009779926116,0.02864835189307154,-0.24455230816895587,0.08865952895793475,-0.10462870898602601,-0.022531914905729852,-0.10281487712845287,0.027608844372675054,-0.03703762732719062,-0.055528318500571404,-0.07683337037437964,-0.019782023735416383,-0.19320184515595842,-0.06070092727154463,-0.27390923865483185,-0.31863409755419475,-0.246394888652423,-0.027444485058033534,-0.23406900347722517,-0.16355487028064647,-0.20026428295583892,-0.12694044070736968,-0.17541786386163283,-0.16719473151634787,-0.03718999329519235,0.05493481622205839,0.04001858928018177,-0.16462240923944668,0.11454248610757253,-0.17641142653030312,0.02523125657781378,-0.08490095569925858,0.10450675489171896,0.03991949993149141,-0.1524682914647575,-0.009607145314327532,-0.0042692996273328105,0.031555520132014216,0.02671235543787234,0.07777767177743251,-0.153285773927399,0.0005100884209829577,-0.028982923272511344,0.012760781498682814,-0.03726543979933166,-0.07114869469920712,0.09322425528342178,-0.09557420831743609,-0.18246605829703338,-0.06902258387154017,-0.07606003941982108,-0.22704353515891013,0.21315746461680196,-0.09859154449318876,0.09149454448964742,-0.20187284922654242,-0.07019263170377216,-0.1547605416446785,-0.012324812231017128,-0.13950450375727816,-0.06469973036164638,0.022690530503298632,-0.10453888257771353,-0.0069755175682224765,-0.10508816156887055,-0.1376622615666596,-0.09078323119876344,-0.07442516988398702,-0.025905740804720398,-0.11074949112290355,-0.11336306992807932,3.943990333779691,8.556372904558865,6.631975707865092,25.060731237498032,47.07196960517732,50.21311667197616,50.45748030833979,50.45748030833979,50.45748030833979,44.42678679347744,26.950525074295932,6.166185801367581,7.050943362262293,0.0,17.476261719181498,4512.2214511514585,3822.8648856398854,961.8719203562532,71.0,36.0,50.0,66.0,78.0,80.0,83.0,84.0,76.0,337.0190978320003,24.0,4.795790545596741,5.680172609017068,6.5998704992128365,7.506042178518122,8.431417414394833,9.348274558065496,10.277289980135452,11.200882391605512,12.132603699924719,0.8787878787878788,1.0277575757575759,1.116180211033723,0.851159164705081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7503669569951008,1.0147355912061793,1.0408748813701474,0.7117348346070105,6.0,1.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,10.423315998847038,10.713346253352803,11.456204184712009,0.0,15.930470882759089,9.099753175368056,13.401775505276145,0.0,11.336785877934737,6.06636706846161,23.579163975850744,13.244515554290267,4.877147193701299,250.77511366151475,-570.2332131120544,-41.41309688719321,-17.27979433672892,-43.86409331631188,262.4601792867953,596.8036826440618,24.62879954143481,18.084960080123086,29.840184132203092,0.5,0.6939732756485416,0.22173709487827517,70.51559844455805,0.1289817858617831,162.47442950944293,0.3060267243514584,5.0,0.08333333333333333,0.39378038601043264,0.8181920438124287,0.9113634278931548,0.9594215765405636,0.9594215765405636,0.9594215765405636,1.6425,,2.678571428571429,1.6506800723172805,1.1944845093465637,2.6752802567072145,-5.035446649833096,1.5416921664626688,1.5574803885312503,-2.238794046619453,81.68330000000003,18.318861563241466,0.0,9.289194512243443,0.0,4.895483475517775,12.36446058668352,46.41656112268256,0.0,0.0,3.8918202981106265,0.0,5.262690188904886,2.3978952727983707,6.842683282238422,4.59511985013459,8.526945482858915,6.652863029353347,10.27190824430491,29.0,9.351578273284622,3.9327580152431345,0.0,0.0,1.0559296527252875,0.0,0.4090106135046625,0.0,33.916000000000004,0.0,37.07669532627865,0.0,0.0,-3.8521785766775847,0.0,0.0,-1.4465887188208613,36.833946964112855,5.316788604006331,5.817862777835028,0.0,35.76837060344178,14.817828337479405,0.0,4.877147193701299,46.43489740449904,0.0,5.759164871656176,0.0,28.088252435267673,24.762109580838327,27.730103099632363,185.40762378705455,,125.84516912315115,137.15370279810787,136.5137073514652,125.86828303502253,187.4991125218736,138.50372894401335,138.95577550719236,174.70023881511105,27.730103099632363,185.40762378705455,,123.94906073629497,135.72952477571994,135.53103280625788,123.97438325366024,190.71357563293606,137.16409425619315,137.5905376802899,176.73550613021968,5.074142612168457,136.64700178694326,,97.16511443252216,103.13060659637192,101.9332355863246,97.18419972412124,143.3450120702743,104.34375780889627,105.02346222486761,133.25293446827072,1.2604592318014711,8.427619263047934,,5.720234960143234,6.234259218095812,6.205168515975691,5.721285592501024,8.522686932812436,6.295624042909697,6.316171613963289,7.9409199461414115,2.558328353195574,92.70381189352725,,62.561741485078,68.65188231143199,68.31114842615744,62.5722339352245,92.80914879448211,69.32194138866407,69.54868231671122,87.2483560418001,33.48627450980392,0.0,1.2217214663643234,0.0,0.0,0.0,10.263767636684303,34.34887108521487,0.0,2.463834089191232,0.0,0.0,0.0,0.7734722222222221,0.0,0.0,0.0,23.487249542031346,356.17157742577757,65.55065429582103,136.20034343233857,151.71011843666554,159.71011843666557,159.71011843666557,159.71011843666557,670.0,121.97234387647077,157.06371552253248,70.44192564870406,136.22,99.6,1.0,8.201574500271434,5.584962500721156,3.8172329767493487,4.6265238673903415,,4.628737944524209,4.635549792377546,4.635871085530014,4.628730098731521,4.626316357838689,4.6357263994196085,4.635655496654716,4.632942675675167,0.17351058985224313,0.2102965394268337,,0.21039717929655496,0.2107068087444339,0.210721412978637,0.21039682266961457,0.21028710717448587,0.21071483633725493,0.21071161348430528,0.21058830343978033,2.127983168877057,2.3202631619016034,,2.3207416091289423,2.322212169904766,2.322281478192423,2.320739914109818,2.320218308743733,2.3222502675815972,2.322234972609243,2.321649593675649,217.46999999999983,320.56369859848706,121.41811124721978,,119.75605758964547,119.76320089647587,120.02143723232689,119.75723183983797,121.46709079734241,119.76879693310849,119.7345001350017,120.70117757952133,14.571077209022139,5.5190050566918085,,5.443457163165703,5.443781858930721,5.455519874196677,5.443510538174453,5.5212313998792,5.444036224232204,5.442477278863714,5.486417162705515,6.558538364554495,5.5876974144128715,,5.573914180675655,5.573973827710951,5.576127730794172,5.573923985978696,5.588100728821277,5.574020552463255,5.573734153079521,5.581775244671377,25.51284139581759,16.41930358717561,14.27509448223734,-0.3327749433106577,-0.8540225812547231,6.315440589044259,1.4886449278785587,0.0,-2.6304571103132615,261.2489159282189,128.70663892421328,-292.66381018042136,-21.254662912795357,-8.868600308497616,-22.512600783109338,134.70382700352437,306.30071289445533,12.6403691476135,9.281839784680466,15.315035644722768,988.0,39.0,2.0746717693437717,1.2480712038764037,0.16666666666666666,0.04564354645876384,0.9380035982439142,0.4863214919399475,0.1642664266089148,0.035997930146750165,0.0,0.0,0.0,0.0,0.11785113019775792,0.10206207261596575,0.2611040344138011,0.23510889590205342,0.5575658869014215,0.4375233236432577,15.905412915006313,12.979977015812398,10.425557486208348,8.47061483633525,9.964782697166934,7.306623253928227,8.645392406533148,5.993396746642272,7.233039441592318,4.615264923681649,5.286953585509669,3.1976435431874877,3.2253172414981828,1.9559947628686443,2.13028166499474,1.1047967336373816,5.231467190929015,3.155359627418222,8.665368261079124,4.796216423847275,14.473920370130664,6.987957229785938,73.36418449432233,35.512307122314155,29.423312555153576,28.558684390538378,28.558684390538378,28.558684390538378,120.0,146.0,41.35272299999998,24.439276999999997,0.5151515151515151,114.09,8.090277777777779,4.722222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,33.0,0.0,0.0,35.0,11.0,4.0,9.0,26.0,15.0,24.0,20.0,0.0,0.0,0.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,6.0,2.0,3.0,22.0,9.0,0.0,3.0,4.0,0.0,3.0,2.0,2.0,0.0,0.0,2.0,2.0,3.5409593240373143,6.6814818346589995,4.200954297280359,4.754667197134003,5.3005024774533736,5.699397876338377,5.901608217986121,6.150202901729855,6.417753003229712,6.511187967809584 +19090,CC(=O)[C@@]1(O)CC[C@H]2[C@@H]3C=C(C)C4=CC(=O)CC[C@]4(C)[C@H]3CC[C@@]21C,0,18.436363636363637,5.808181818181816,3.272727272727273,5.127272727272727,161.69744094754492,72.2217560909091,1.3931599844630904,5.886469090909088,4.047853535353536,7.409098545454543,198.1646636782952,21.137931034482758,6.029310344827586,4.189655172413793,5.017241379310345,142.33839737698702,78.45392303448278,1.8373805685517246,6.192008620689656,2.507543103448276,7.4913284137931,256.99114750571067,18.208695652173912,5.855391304347826,3.9478260869565216,3.756521739130435,148.95497969205638,67.29875056521739,1.6053185024981051,5.99238260869565,2.253260869565217,7.379754608695651,220.48800698075314,16.039772727272727,5.9335795454545455,3.284090909090909,2.6704545454545454,151.17647709877406,56.97744793749999,1.4712922136371078,6.0512676136363615,2.638731060606061,7.478995613636361,196.86772484741124,11.873949579831933,5.775420168067226,2.546218487394958,1.5924369747899159,156.09356546610954,39.33217650840335,1.2584109966384878,5.872254201680673,2.289303221288516,7.379640890756304,157.98977660862502,8.736842105263158,5.534436090225563,2.0902255639097747,1.1428571428571428,162.91952404469754,27.680451984962406,1.0363647355331047,5.60790977443609,2.0191363826232243,7.2061202406015035,121.9789782905647,8.23611111111111,5.5061574074074064,2.0046296296296298,1.1666666666666667,166.53321378636758,26.44219257870371,0.9629772567516343,5.564923611111111,1.9976851851851845,7.206060314814816,113.3022482460683,9.463087248322148,5.597315436241611,2.053691275167785,1.4563758389261745,162.40600693021472,30.60508793288591,1.0391878892110737,5.670946308724832,2.192859806114839,7.258972080536912,124.67358653992194,8.704,5.649360000000001,1.8,1.32,168.81540843197754,28.353552455999996,0.8873043553379361,5.691652000000002,2.478666666666667,7.356616992,107.30578627739885,6.999669421487603,0.09173553719008264,0.008899121175728206,0.8277685950413219,3.2178512396694217,1.3140793347443782,33.447585697190064,0.23656571767165285,0.08975623140495859,1.6359504132231404,0.056718394710743796,52.35304423271858,0.27243089199202075,-0.002675976061555894,-0.003774332258421184,0.43398689085209446,1.3040923339982897,0.13992848857643495,1.3716347755371865,0.02439967966162615,-0.0021378301510400597,-0.08773768246730625,-0.001809752704474291,4.398594766995283,1.2969313690262303,0.0081537908731585,-0.0004061778573298823,-0.024922745238950838,0.23479698167445198,0.17044219011002718,6.215899290636002,0.03355788477121511,0.00989157887172121,0.08935151914400921,0.0028356720086237706,9.099005385706487,-0.5772520661157027,-0.00022210743801645205,0.0008317228374631793,-0.19677685950413226,-0.6411983471074378,-0.08780962967743271,-2.789991707004133,-0.01738888227381558,-0.0015575640495866896,0.05917125803489443,0.0012936023966941426,-4.613750843539235,-1.6835502465448988,-0.013630113202305685,-0.0007969089384742981,-0.11363566914369053,-0.6319841655670533,-0.23180889993183054,-8.056581594363498,-0.0447656264321548,-0.015251747065768411,-0.14494423802578882,-0.006177839172164749,-11.728841473099362,-0.29536320139190936,-0.0007717641210464773,0.0002687004613114666,0.014746784316162326,0.008122786304604524,-0.10387663727942266,-1.4477970545379972,-0.018219977642939984,-0.0009663065929286593,-0.018353390362959812,-0.00044387058224064113,-3.46738872376131,0.7283608815426997,0.0008275941230485943,-0.00015284377272216785,0.012046219773492505,0.17810835629017444,0.15067811668610934,3.5334735037358436,0.0282320553624763,0.002162884756657403,-0.0499813475665749,-0.0008039445423935496,6.560461937398276,-0.185514448943369,0.002675689167452395,0.00033538702278710687,-0.045340285096233855,0.17555937655998669,-0.19771224027115325,-0.9800537037794657,-0.033131779738084864,0.0027856599922346905,-0.015241647715717307,0.0008789627023129941,-5.109748626562818,0.9860760330578515,0.0003808264462809645,0.000178637440665407,0.01688595041322315,0.07887603305785124,0.13035699783239046,4.757987941209918,0.026562658810680182,0.0027837395041321856,-0.06049081726354453,-0.002404921547107442,7.491404524042333,,,0.48,0.79,0.2,0.0,0.59,-0.39,1.509035257303662,0.03126854968833918,0.04502854968833917,0.47644070312952524,0.1008930405287601,0.36440695227782455,1.9854759604331873,0.46529999280658463,2.038947323720336,1.8294194528498486,0.0,0.20952787087048738,0.0,0.20952787087048738,6.222172633090924,1014.0,319.4499999999999,180.0,282.0,8893.359252114971,3972.196585,76.62379914546997,323.75579999999985,222.63194444444446,407.50041999999985,10899.056502306235,1226.0,349.7,243.0,291.0,8255.627047865248,4550.327536000002,106.56807297600002,359.1365,145.4375,434.49704799999984,14905.486555331217,2094.0,673.37,454.0,432.0,17129.822664586485,7739.356315,184.6116277872821,689.1239999999998,259.125,848.6717799999999,25356.120802786612,2823.0,1044.31,578.0,470.0,26607.059969384234,10028.030836999998,258.947429600131,1065.0230999999997,464.41666666666674,1316.3032279999995,34648.71957314438,2826.0,1374.55,606.0,379.0,37150.26858093407,9361.058008999997,299.5018171999601,1397.5965,544.8541666666667,1756.3545320000003,37601.56683285275,2324.0,1472.1599999999999,556.0,304.0,43336.59339588955,7363.000228,275.6730196518059,1491.704,537.0902777777776,1916.827984,32446.408225290208,1779.0,1189.3299999999997,433.0,252.0,35971.1741778554,5711.513597000002,208.003087458353,1202.0235,431.49999999999983,1556.5090280000002,24473.285621150753,1410.0,834.0,306.0,217.0,24198.495032601993,4560.158102,154.83899549244998,844.971,326.73611111111103,1081.58684,18576.36439444837,1088.0,706.1700000000001,225.0,165.0,21101.926053997195,3544.1940569999992,110.913044417242,711.4565000000002,309.83333333333337,919.577124,13413.223284674856,384.98181818181814,5.045454545454545,0.48945166466505136,45.52727272727271,176.9818181818182,72.27436341094081,1839.6172133454536,13.011114471940907,4.936592727272722,89.97727272727272,3.119511709090909,2879.417432799522,15.800991735537202,-0.15520661157024185,-0.21891127098842866,25.171239669421478,75.63735537190081,8.115852337433227,79.55481698115682,1.4151814203743167,-0.12399414876032347,-5.088785583103762,-0.10496565685950887,255.11849648572644,149.1471074380165,0.9376859504132276,-0.04671045359293646,-2.8661157024793464,27.001652892561978,19.600851862653126,714.8284184231402,3.8591567486897373,1.1375315702479392,10.27542470156106,0.3261022809917336,1046.385619356246,-101.59636363636366,-0.03909090909089556,0.14638321939351956,-34.63272727272728,-112.85090909090906,-15.454494823228156,-491.0385404327274,-3.0604432801915418,-0.27413127272725735,10.41414141414142,0.2276740218181691,-812.0201484629055,-400.6849586776859,-3.243966942148753,-0.18966432735688293,-27.045289256198345,-150.41223140495867,-55.17051818377567,-1917.4664194585125,-10.654219090852843,-3.629915801652882,-34.49672865013774,-1.4703257229752102,-2791.464270597648,-78.56661157024789,-0.20528925619836297,0.07147432270885011,3.922644628099179,2.160661157024803,-27.63118551632643,-385.11401650710724,-4.846514053022036,-0.25703755371902337,-4.88200183654731,-0.11806957487601054,-922.3254005205085,157.32595041322315,0.17876033057849636,-0.033014254907988254,2.601983471074381,38.47140495867768,32.546473204199614,763.2302768069422,6.098123958294881,0.467183107437999,-10.795971074380178,-0.1736520211570067,1417.0597784780277,-27.64165289256198,0.39867768595040687,0.04997266639527892,-6.7557024793388445,26.158347107438015,-29.459123800401834,-146.0280018631404,-4.936635180974645,0.41506333884296887,-2.2710055096418786,0.1309654426446361,-761.35254535786,123.25950413223144,0.047603305785120564,0.022329680083175873,2.1107438016528937,9.859504132231404,16.29462472904881,594.7484926512398,3.320332351335023,0.3479674380165232,-7.561352157943066,-0.30061519338843024,936.4255655052916,0.7279322453527907,0.6357240883798041,0.41544642214873634,0.3502121751603117,0.2584823909152079,0.20198054790156109,0.15827335221215325,0.12061517388988466,0.0946946887128508,0.07226834447336374,0.05829667032908267,0.041094152299564375,0.03583528600436637,0.024988380155477365,0.021520892009497836,0.014040153737698423,8.023455644508935,5.694092705000608,3.545181519849726,2.1936889286613237,0.364436649243895,-0.3860619057730669,4.118251492125798,0.9726141496654563,6.0231409658850374,0.9950155400358782,13.638157770505902,10.954458330583119,16.011457166311633,11.705312984028179,1.988712841968913,0.7519935311653797,3.490411774378116,2.2435962489051513,7.009358020613412,1.0787255273440683,3.7034742923552635,2.4396127557349137,20.896911476041595,14.701789235346553,0.20735775615153598,0.5068485929417064,0.7564900156035946,0.8640361107146551,0.8762505673660763,0.8762505673660763,1.670886567167638,716.783976814856,0.0,0.0,4.0,0.0,4.0,6.0,2.0,4.0,2.0,4.546710926917083,2.7634836915063725,1.2770696537732276,0.6367190910664347,0.5639918183391623,0.5639918183391623,175.48121223788786,829.5017705968443,44.093669760246485,15.081850374488074,29.64140008963725,,11.0,450.0,5.601050810983688,14.69560176298435,22.396470831523438,30.5953613843362,25.683286491704038,11.146209060138535,6.923737199690624,6.076020106833881,26.847231705905752,0.0,12.0,19.75,5.0,0.0,14.75,0.0,0.02,-9.75,0.07870882740447938,0.015161787365177148,-0.06354704003930223,0.01892307692307682,0.10793939393939356,0.0,0.5236363636363638,0.7919999999999996,0.4449275362318844,0.5084745762711866,0.7730769230769228,37.72588143259155,0.7817137422084794,1.1257137422084793,11.91101757823813,2.5223260132190024,9.110173806945614,49.63689901082968,11.632499820164616,0.6060606060606064,0.25,0.125,0.2916666666666667,0.7272727272727273,0.3342524230190806,-0.5237673707845112,-0.05737504415481841,-0.00952304310517293,-0.026188368539225567,0.6657475769809197,1.0432141519032463,0.025920698218446902,0.018967530034604475,0.029806118625807038,-4.148616649712772,0.9504255381518649,0.6735321528424973,1.2317614464946232,0.9407017737137825,0.520801598378949,1.1285732115638323,0.9573827619188924,1.1257631736840066,0.704076297773645,0.6443437475503219,0.6400371707076278,1.0856972455664486,0.7793931031084063,0.5351351351351349,0.7550762903963694,1.763682455896653,0.9710651146586147,1.0143689790962611,0.7867657332686163,1.00320245017762,0.5550068154415703,0.501430971808867,0.5236056250408736,0.9374867595846431,1.0870643241711535,0.9364864864864862,0.893569723363548,1.6881739217252403,1.2698723546332442,1.1737727614897193,1.0906862983943943,1.1733799533707927,0.9540209874237883,0.8864454407678707,0.915916945603095,1.1555607103139844,1.2202584349126449,1.057004315239609,1.0621003977834902,1.0988888366848342,1.0986743166549546,1.2111056803838753,1.222547740352972,1.2221957167432183,1.0853897833869972,0.9319230091632512,1.0108199454013627,1.2431358452501693,0.9744821106322055,0.7612599065230642,0.7178699006434435,0.7379696245405849,0.8235840268433565,1.022195320459386,0.978419282057924,1.030019023469413,0.7929111311296602,0.7200988230870179,0.7147535039904708,1.034082621582625,0.839650042504959,0.8646396396396394,0.7470105146977553,0.8319189297124603,0.85672642284775,0.7857405509929342,0.8384216102463509,0.7902173391621471,0.865321029300298,0.8922488493166064,0.8589039727569481,0.808597472352225,0.9776283183821112,0.8235334663522579,0.7942152675111084,0.9512699144456123,0.8436766995365308,1.098393776853336,0.9818433658413245,1.0944160583643718,0.8385665931273703,0.8347326031419365,0.8098993127350743,1.0636798928932043,0.8674071975063758,1.288605405405405,1.3337774049302733,0.730638977635783,1.031292377234436,0.7701224814014673,0.8595815921010598,0.7550060654067708,1.2263572740270623,1.2865248800202074,1.3797719391328511,0.7481622171272719,8.5,0.05774920926436078,6.888888888888891,3.979166666666667,2.916666666666667,1.3541666666666667,0.9552380952380954,0.5087159863945578,0.25447215923406397,0.11594135802469137,4914.81161332576,5852.357315781037,2289.0900105999663,1986.6420834627734,12.039496708135683,0.47197992082959883,6.357096005001588,0.8938673725649792,1.0,0.7272727272727273,1.2346487866075768,3.0178760220182874,4.504290059751432,5.144640622458225,5.217367895185498,5.217367895185498,0.30357142857142855,0.014437302316090195,0.1465721040189126,0.06980994152046784,0.05952380952380953,0.037615740740740734,0.03293924466338259,0.023123453927025348,0.014968950543180232,0.012882373113854597,0.7154443489388922,18.367346938775512,5.747397012222725,2.3043047014481255,150.11778270395644,1.0,4.1943141990290105,105.6693263637859,,95.987900618466,95.83777571890657,96.31286566551572,95.99099353875388,101.9470686822545,95.9511913127434,95.9942398260755,98.80768949262257,0.038920536897887166,-0.029170549860203895,-0.424124156070089,0.5242852814806654,0.4052680614695732,0.10648404923257893,0.041008483779814864,0.10314123238893085,-0.023818180839107236,-0.05363101580471866,-0.03190768557015386,0.0840179369024416,0.18528466002193006,0.08888366627497103,-0.045642468431344306,-0.030108348381719774,0.07296700940674103,0.12970464233286377,0.18583999894372644,0.14185438660132738,0.11020492635316628,0.05461749844114734,0.04999563233559972,0.17380088434322544,-0.08246847548880706,-0.0024211711711703333,0.09346123297339193,-0.23771964856230043,-0.19926289295253743,-0.06682216770003001,-0.08341384434328605,-0.07350550386151429,-0.017353269240542576,0.03616934691701049,0.022807457850162038,-0.08812765162289882,-0.24051853668642295,-0.14858051328639532,-0.08954917263603704,-0.13727951244395525,-0.19639943505653748,-0.17640403726227324,-0.2408718425091092,-0.18923124987318893,-0.16992410250555404,-0.08859940793695605,-0.10892126273444266,-0.22403360960181373,-0.04219673581800916,-0.008412924202398538,0.030194044558504295,0.01781510485478876,0.002524288943027397,-0.07904898474004943,-0.04328554735296266,-0.07701867296016596,-0.010765899791056464,-0.011218793806103244,-0.007825866449576394,-0.06623089019137361,0.10405646862504331,0.009021521521520713,-0.017175153557751257,0.014552641699207204,0.05535009017647192,0.11466439864182178,0.10564210929079677,0.1193412792028542,0.024097321409351356,-0.030551871965423406,-0.01417431763528497,0.1253119476345226,-0.026503315767152702,0.029167422456012598,0.037687656585894555,-0.05477410639620905,0.05455795295808092,-0.1504568522186016,-0.02930117924361279,-0.14005317450126448,0.031035839502512763,-0.009316692970961325,0.015496960144862806,-0.09760174792986398,0.14087465759894216,0.004151351351351055,0.020073604700723637,0.020399361022364237,0.024512019724676388,0.09920024947180849,0.142252059215432,0.11228448091345371,0.03101444279197308,-0.03697594791052734,-0.042401086267906896,0.14309396203861058,7.971116459067144,18.829154626140582,6.90097224887662,10.493951759962549,28.746179696924916,34.31250094041862,35.35808339853615,35.43139248944525,35.43139248944525,50.973683093008404,45.73548632124621,0.0,5.238196771762184,0.0,5.238196771762184,4285.362663684162,3914.704579768032,929.4190015257436,281.0,47.0,71.0,97.0,129.0,161.0,200.0,245.0,276.0,342.2194948200008,28.0,5.017279836814924,5.958424693029782,6.932447891572509,7.895436006942965,8.872206756028303,9.841558955913962,10.819958268212227,11.792048513252674,12.771372249933894,0.5636363636363637,0.9563636363636366,1.1246818710626956,0.5184323461069776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.643982471420795,0.9441711229946521,0.9874462027411776,0.5867602612734305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,4.0,0.0,4.0,0.0,0.0,0.0,1.0,6.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,5.106527394840706,5.601050810983688,11.566489892729878,0.0,0.0,9.589074368143644,0.0,0.0,0.0,25.496599036284397,80.7694157587954,11.83581209232279,0.0,176.94080798415462,-277.26297672061264,-30.3722156422501,-5.0411450312838655,-13.863148836030636,352.4220202220425,552.2387938762316,13.721454117996382,10.040705343204209,15.778251253606618,0.45454545454545453,0.8087627674909519,0.24346543625914022,53.03079269513906,0.134991466816421,95.94454650255096,0.19123723250904825,6.0,0.03571428571428571,0.2135568184279026,0.5220010813301238,0.779105657310043,0.8898668959177679,0.902446509768319,0.902446509768319,4.004500000000003,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,96.86380000000005,14.69560176298435,0.0,0.0,28.58369907727774,71.82092934730224,0.0,23.2982492738063,0.0,0.0,4.04305126783455,0.0,5.501258210544727,2.3978952727983707,7.1785454837637,4.948759890378168,8.958411469230219,7.247792581767846,10.791111284394898,31.000000000000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.600000000000016,0.0,24.2527113416469,0.0,0.0,0.0,4.254677592487612,0.0,2.6679713601911037,61.85750290844826,0.0,0.0,0.0,22.274068098554274,9.589074368143644,28.58369907727774,66.21987853631856,23.2982492738063,0.0,0.0,0.0,28.51377903588377,35.41903592814373,31.451602038299935,211.33865272757185,,191.915801236932,191.6069800092417,192.58417912642068,191.92216333852406,204.6733892348333,191.840289602231,191.92884090009846,197.90265500944696,31.451602038299935,211.33865272757185,,191.22580123693194,190.81840858067022,192.10632877339657,191.23419034021174,207.14102015752667,191.12621983478917,191.24299525149425,198.8123624194193,5.264485797010698,154.77607244489974,,141.23828334033212,141.0685919793305,141.6056427029836,141.24177949168023,147.99112461006962,141.196788525777,141.24544901007775,144.42858993341682,1.2580640815319974,8.453546109102874,,7.67663204947728,7.664279200369668,7.703367165056827,7.676886533540962,8.186935569393333,7.67361158408924,7.677153636003939,7.916106200377879,2.6605041386209556,105.6693263637859,,95.987900618466,95.83777571890657,96.31286566551572,95.99099353875388,101.9470686822545,95.9511913127434,95.9942398260755,98.80768949262257,51.92941176470587,0.0,8.17194430768813,0.0,0.0,0.0,11.184235458454884,54.309541150764765,5.028785102775678,0.0,0.0,0.0,1.2745493197278912,0.0,-1.418207816305534,0.0,0.0,32.271814370038676,428.1289459468812,67.90568326341672,165.9831812110058,247.7359532863288,282.9552342352024,286.95523423520234,286.95523423520234,1560.0,132.90073317170126,101.23388225931585,76.06682546071248,54.37,54.37,0.8333333333333334,8.003363058629947,5.807354922057604,4.41324857056868,4.9231619752582265,,4.937314327188286,4.937614173271764,4.9366303437566685,4.937308040237363,4.919459220305253,4.937388610924972,4.9373014368343195,4.930053291180916,0.1765299428227472,0.19692647901032906,,0.19749257308753143,0.19750456693087057,0.19746521375026674,0.1974923216094945,0.1967783688122101,0.1974955444369989,0.19749205747337278,0.19720213164723663,2.40090178746597,2.5102417338473852,,2.51311225677423,2.513172985534657,2.512973713678131,2.513110983419019,2.5094893417652195,2.5131273020342553,2.5131096459680426,2.511640529440496,277.81000000000046,173.4222551144852,153.0252038267737,,151.53139177684258,151.47378764191814,151.65628313197354,151.53257922950027,153.80889888112924,151.51730012839934,151.53382559170723,152.61729276035493,6.9368902045794085,6.121008153070948,,6.061255671073703,6.058951505676726,6.066251325278942,6.061303169180011,6.152355955245169,6.060692005135974,6.061353023668289,6.104691710414198,6.07202013351261,5.946893370593893,,5.937083541807094,5.936703322988861,5.937907396947198,5.937091378123986,5.952001647357235,5.9369905425708005,5.937099603134658,5.94422416514531,0.0,24.2527113416469,11.184235458454884,1.0611851878096927,1.4631276758037681,0.0,9.283462695263289,8.17194430768813,0.0,355.4671431451398,93.6658865395817,-146.77271351369242,-16.07792197127001,-2.668594791158044,-7.338635675684625,186.55911734688192,292.334689771501,7.263627759004132,5.315176177663653,8.352419707757171,1276.0,57.0,3.2500557318785384,2.3057200193801495,0.3219752754296894,0.24365261598403626,1.9292950461891076,1.0794873692393507,0.5854758149760677,0.28702462632142595,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.42502373453598974,0.3414789151391543,1.1315562707669553,0.7871002080026497,18.198306133819766,15.893102209495101,11.632499820164618,9.805940904488729,12.148672373014772,9.493085751373371,11.23740800706288,8.56367734618181,9.185384805146528,7.010029413916283,7.5202704724516645,5.301145646643804,5.769481046702985,4.0231292050318554,4.304178401899567,2.8080307475396844,9.096314846620333,6.101317130793134,15.036589178768507,10.18774759745324,25.100075311357212,15.760538322554577,89.60076350907781,41.13778416391294,26.995063811273106,22.266437892449275,21.861876479572963,21.861876479572963,150.0,193.0,59.149789999999975,31.832209999999993,0.3090909090909091,184.03,9.965277777777779,5.104166666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,55.0,0.0,0.0,58.0,0.0,4.0,4.0,54.0,4.0,28.0,54.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,3.0,1.0,0.0,25.0,3.0,0.0,0.0,3.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4965075614664802,6.542471960506805,4.060443010546419,4.543294782270004,4.919980925828125,5.327876168789581,5.583496308781699,5.883322388488279,6.19644412779452,6.456769655572163 +441351,C=CC[N+]1([C@H]2C[C@H]3[C@@H]4CC[C@H]5C[C@H](O)[C@@H](N6CCOCC6)C[C@]5(C)[C@H]4CC[C@]3(C)[C@H]2OC(C)=O)CCCC1,0,17.13186813186813,5.7623054945054974,3.0,4.1098901098901095,165.080661769178,66.88535567032969,1.294528570956011,5.828764835164837,2.7383241758241756,7.375661978021978,181.8919864298752,20.645833333333332,6.119010416666666,3.9375,3.9166666666666665,146.0109968184058,76.08614240625002,1.697928251104167,6.263114583333327,2.228153935185185,7.577102958333331,237.6799418203294,16.676923076923078,6.013656410256411,3.651282051282051,2.7846153846153845,155.13332555471325,59.92804212820512,1.4443843952926867,6.118687692307691,2.0430911680911676,7.54245602051282,196.21219190956222,13.416393442622951,5.862262295081967,3.081967213114754,1.9639344262295082,157.5752382372433,46.105107400000016,1.3073756377737613,5.955881311475409,1.8940118397085606,7.43818807868852,168.92540335959177,11.176178660049628,5.658657568238216,2.6153846153846154,1.5161290322580645,159.30744456156108,37.416866808933,1.1875839087741789,5.748274193548384,1.7533257513096212,7.279568754342434,147.2649674537581,10.200431034482758,5.629836206896556,2.398706896551724,1.3491379310344827,163.42559098940526,33.97055844396552,1.077400623205901,5.701815948275864,1.8196539750957845,7.280197655172413,132.11215414015186,10.037861915367483,5.69099554565702,2.291759465478842,1.2561247216035634,163.3906693261184,32.78850658129178,1.0793306166649395,5.759679510022271,1.9739080673100708,7.34094035634744,132.11016589907254,9.076576576576576,5.577889639639642,2.1373873873873874,1.0788288288288288,163.83670657208194,29.111118090090095,1.034579218390299,5.647677927927929,1.833833833833833,7.24332055855856,123.13647842331437,8.21760391198044,5.5408239608801955,2.034229828850856,0.9828850855745721,166.76365564927798,25.992180185819073,0.961227611689924,5.598710268948651,1.7905120891062205,7.229818992665038,112.5103521163788,6.905929235599569,0.08953317232218327,0.012352438284516687,0.6668276778166887,2.7013645694964374,1.300442442577886,32.99171893611882,0.2232346684195008,0.08773819587006393,0.818627648297978,0.05286913850984179,50.25478391104624,0.6258931087227779,0.004808540132029295,-0.00474968734377864,0.303982761743751,0.800466932335064,-0.19488624067604002,2.9527583041513084,-0.00600428273396164,0.006200700650082689,-0.03279730387388346,0.0006913994938212375,1.203626078137755,0.2873082960995043,0.00030138389083456,-0.0011631408149472536,0.0077285352010627514,-0.09155899046008939,0.08336940249878078,1.4023995233345359,0.015950184420826626,0.0007712377732159213,0.061984652506630565,0.00048175267077248693,3.2512652518923972,-0.7448411433639323,-0.0052478327437289075,0.0015067788731194236,-0.07374535030813172,-0.308606507885917,0.04241186061381971,-3.5394126585111922,-0.006511499842932471,-0.006627671640195422,-0.03284405575209033,-0.0015580932927637813,-3.457641822027502,-0.43498330807795543,-0.002370600402787572,-0.00021261209308846637,-0.0469983756052526,-0.07330032604757883,-0.12515328431292388,-2.1086078154578507,-0.02025571650813463,-0.0026729680457790992,-0.011986295440744248,-0.0011683096711866722,-4.2202285248018745,0.19889266663613006,0.0014223269199538455,-8.634039562424189e-06,-0.04147242961661301,-0.04567112500988967,-0.013756448351474649,0.9371568987144441,-0.0009477959756726806,0.0018876140958321542,0.0077727532640615,0.00017224458981714751,0.6221031962542827,-0.4756201237759767,-0.0063958757657330695,0.00011890081391919513,-0.03913243319494084,-0.2032613364266122,0.0026450270808141174,-2.242835054305761,-0.003400051971570613,-0.006655156637581547,-0.04492452019618615,-0.002975414336465065,-1.907026928681603,-0.2804218600921896,-0.002287439226450246,-0.00020775564837172356,-0.005210016199027198,-0.04397916211103022,-0.09156854134858362,-1.3595106655020543,-0.014597335937396486,-0.002271880653748814,-0.024434416604746288,-0.0014318416085449181,-2.852855936803079,0.10895563503102666,-0.002272155099796943,-0.0003450314667389372,0.012798319657719399,0.026489483540989484,0.011416285379061846,0.5433794900076164,0.0050185887692105425,-0.0016354553343161818,-0.017005642213869226,-0.001894323066116842,1.2373377056084807,,,0.47719298245614034,0.7171052631578947,0.06578947368421052,0.0,0.6513157894736842,-0.5855263157894737,1.7880127933839138,0.018375452511689823,0.031954399880110874,0.449512190150686,0.09500152474866602,0.3843654849073572,2.2375249835345996,0.47936700965602325,2.0702637259417602,1.7512612844571152,0.12146273011490341,0.19753971136974194,0.0,0.31900244148464535,5.817582248308696,1559.0,524.3698000000003,273.0,374.0,15022.340220995198,6086.567366000002,117.802099956997,530.4176000000002,249.1875,671.18524,16552.170765118644,1982.0,587.425,378.0,376.0,14017.055694566958,7304.269671000002,163.00111210600002,601.2589999999994,213.90277777777777,727.4018839999998,22817.27441475162,3252.0,1172.6630000000002,712.0,543.0,30250.998483169085,11685.968214999999,281.6549570820739,1193.1440999999998,398.4027777777777,1470.778924,38261.37742236463,4092.0,1787.99,940.0,599.0,48060.447662359205,14062.057757000004,398.74956952099717,1816.5437999999997,577.673611111111,2268.6473639999986,51522.24802467549,4504.0,2280.439000000001,1054.0,611.0,64200.900158309116,15078.997324,478.59631523599404,2316.554499999999,706.5902777777774,2933.666208000001,59347.78188386451,4733.0,2612.244000000002,1113.0,626.0,75829.47421908405,15762.339118000002,499.91388916753806,2645.642600000001,844.319444444444,3378.0117119999995,61300.039521030456,4507.0,2555.257000000002,1029.0,564.0,73362.41052742716,14722.039455000007,484.61944688255784,2586.0960999999998,886.2847222222218,3296.0822200000007,59317.464488683574,4030.0,2476.583000000001,949.0,479.0,72743.49771800438,12925.336432000002,459.3531729652928,2507.5690000000004,814.2222222222218,3216.0343280000006,54672.59641995158,3361.0,2266.197,832.0,402.0,68206.33516055469,10630.801696,393.1420931811789,2289.8724999999986,732.3194444444442,2956.9959680000006,46016.73401559893,628.4395604395608,8.147518681318678,1.1240718838910184,60.68131868131867,245.82417582417582,118.34026227458763,3002.246423186813,20.314354826174572,7.984175824175818,74.495115995116,4.811091604395603,4573.1853359052075,60.08573843738668,0.4616198526748123,-0.45596998500274943,29.182345127400094,76.84482550416615,-18.709079104899843,283.4647971985256,-0.5764111424603174,0.5952672624079381,-3.1485411718928122,0.0663743514068388,115.54810350122447,56.02511773940334,0.0587698587127392,-0.22681245891471447,1.5070643642072366,-17.85400313971743,16.25703348726225,273.4679070502345,3.110285962061192,0.15039136577710466,12.08700723879296,0.09394177080063495,633.9967241190175,-227.17654872599934,-1.6005889868373169,0.4595675563014242,-22.492331843980175,-94.12498490520468,12.935617487215012,-1079.5208608459136,-1.9860074520944035,-2.0214398502596036,-10.017437004387551,-0.4752184542929533,-1054.580755718388,-175.29827315541604,-0.9553519623233916,-0.08568267351465195,-18.940345368916798,-29.540031397174268,-50.43677357810833,-849.7689496295138,-8.163053752778257,-1.077206122448977,-4.830477062619932,-0.47082879748822887,-1700.7520954951553,92.28619731916434,0.6599596908585843,-0.004006194356964823,-19.243207342108438,-21.19140200458881,-6.3829920350842375,434.84080100350207,-0.4397773327121238,0.8758529404661195,3.6065575145245363,0.07992148967515644,288.65588306198714,-213.55343557541352,-2.8717482188141483,0.05338646544971862,-17.57046250452844,-91.26434005554889,1.1876171592855387,-1007.0329393832868,-1.5266233352352052,-2.9881653302741147,-20.171109568087584,-1.335961037072814,-856.2550909780398,-124.5073058809322,-1.0156230165439093,-0.09224350787704526,-2.3132471923680757,-19.52674797729742,-40.65643235877113,-603.6227354829122,-6.48121715620404,-1.0087150102644735,-10.848880972507352,-0.6357376741939437,-1266.668035940567,44.5628547276899,-0.9293114358169496,-0.14111786989622532,5.234512740007234,10.834198768264699,4.669260720036295,222.24221141311511,2.052602806607112,-0.6689012317353183,-6.955307665472514,-0.7747781340417884,506.0711215938686,0.7028560930115962,0.6404247306649854,0.42362665969602037,0.37202588361603256,0.2623611723411106,0.22177308742133672,0.1567746005884797,0.13524918962818808,0.09664739154477825,0.08068217121233058,0.06000103133204044,0.047658514530722895,0.036052260704825784,0.028992114074453935,0.022193622449294813,0.017460035810491166,8.029097252975106,5.743364487535988,3.55535582113439,2.2431704555546026,0.42812542561404854,-0.48693817041477,4.031974577979244,0.9572385819759884,6.028409808226705,0.9950189082133926,14.546771999473725,11.003775634451332,16.014453958250918,11.754488002519224,1.949809978046674,0.7413467926514523,3.501467141850726,2.2931153587046436,7.008276783888878,1.0832187734261762,3.714373824366088,2.489099521770913,20.85643159693335,14.70103246655259,0.19707911901830125,0.43825785423235386,0.7311893859006067,0.8346945655933872,0.8770739298370269,0.8837191259215004,1.2910932207337769,897.890445718549,0.0,2.0,10.0,0.0,1.0,13.0,0.0,4.0,2.0,5.204173451558786,3.6088460975471373,1.6711890113693997,0.9865322803386505,0.7062050824889026,0.6622490385328605,435.3107565464867,2610.3162948356767,58.645479127107926,28.684794448743705,51.203548080273784,,15.0,972.0,0.0,9.901064578912528,35.049059831389975,29.71346501379353,56.59352887323621,51.6144425493812,6.923737199690624,0.0,31.402339920664105,9.473725907600098,18.133333333333333,27.25,2.5,0.0,24.75,0.0,0.02280701754385966,-22.25,0.06336996336996309,0.004505888376856171,-0.05886407499310692,0.012865497076023358,0.11881400437636724,0.0,0.5095238095238079,0.8017543859649118,0.44615384615384485,0.5050179211469518,0.7888888888888884,67.94448614858872,0.6982671954442132,1.2142671954442132,17.08146322572607,3.610057940449309,14.605888426479574,85.02594937431479,18.215946366928883,0.5951859956236327,0.14705882352941177,0.07720588235294118,0.27022058823529416,0.90625,0.2064339596719422,-0.5629739423789212,-0.04117500709868762,-0.006186526839328806,-0.026808282970424823,0.7935660403280577,2.957730323043399,0.03792398520314081,0.032502531022454935,0.042253290329191416,-4.99204108888509,1.0293352626425119,0.8425283688811344,1.4839199100576508,1.0273960974284682,0.7398580688421994,1.555332817980818,1.0372663377305906,1.3648104747950949,0.8419525099441202,0.7687165022167952,0.8488966144956762,1.247465808297441,1.0527907952717348,1.0680051986433674,1.3320469490479179,1.753169141615357,1.2598122485471615,1.1908169012983711,1.053726542190252,1.088879548129951,1.05440775710196,0.5906427476787163,1.0317554854517765,1.065535142383307,1.1532076544775522,1.038220749369376,0.9668352984293141,1.5463748582421433,1.1943762503938968,1.1299634645779404,1.1548543382604675,1.1415363555454014,1.0573894904711534,0.7948727719028514,0.9843436646803442,1.1585807115168203,1.0365980230456644,0.7812686283263149,0.8629162189746943,1.1740136229276443,0.9121086708869885,1.1652216393741288,1.0422026653657297,1.170469375917515,0.8146290340339986,0.6092085891792478,0.7363536500296218,1.1473836047088888,0.9415254029058419,0.8665054832284619,0.9489559453400821,1.1667085576190537,0.9760445408721656,1.0031727455276496,0.9435861593995438,1.0026873796727231,0.8737864237070865,0.8038669204392502,0.8571495133907897,0.9855625178598812,1.0672313860914016,1.1018532220185977,1.012765967937253,1.1049363993711327,1.0905996835962894,0.9912170028304829,1.0658103499434275,1.0106758911109763,1.1014201421569085,1.251726280125327,1.1003635699532497,1.0308444689343346,0.9942580327757283,0.8678168569611282,0.7998421950970072,0.8568245445735487,0.9074547837958656,1.035412942631801,0.996867297218523,1.0544348348230905,0.8858387795208224,1.0145625514551864,0.8502200660416422,1.0462887720363736,0.9298266533252907,0.9304245728977106,0.8340648399890397,0.8304235823985676,0.9036514149123487,0.9009351281634719,0.9294182026815757,0.910252843734607,0.9329754888091064,0.9786233359108398,0.9298422585700432,0.9197117672610287,10.0,0.31242118151209064,7.111111111111114,4.388888888888889,4.237777777777778,2.6325,1.6157369614512471,0.98968962585034,0.6792721718316955,0.4481404320987655,8276.86043118883,10126.91243761936,3644.194040540875,3114.2896369625064,16.72456777507583,0.48581701952557704,8.599488105734979,0.9448329446403041,0.0,0.90625,1.30362118863991,2.898948542651559,4.836605628829297,5.521262359860046,5.801589557709794,5.845545601665836,0.23255813953488372,0.008926319471774018,0.10613598673300172,0.05699855699855701,0.052972222222222226,0.03210365853658537,0.021543159486016625,0.015463900403911563,0.013062926381378757,0.009958676268861455,0.5497235460371924,28.135208220659816,10.682111828915126,4.628099173553719,230.2403517590204,0.0,4.602499424317924,229.9036512016325,,215.64993807686315,212.86748729727643,213.15229628066436,215.68170683133903,275.1906579488555,214.58676798388933,215.80578519396857,251.247950217164,0.09063126588328534,0.05370679947233258,-0.3845141529451876,0.4558640438247016,0.29631947548800475,-0.1498614889019726,0.08949998361312038,-0.026896730586122228,0.07067276217151341,-0.04006376274008441,0.01307756307949922,0.023950477635487202,0.04160313352451553,0.0033661701358021394,-0.09416285175091355,0.01159000362187625,-0.03389360751005812,0.06410849090215512,0.042507622171793255,0.07145030175534012,0.008790216912575768,0.07571776085929159,0.009112171757495287,0.06469563688995893,-0.10785531069799119,-0.05861327827014427,0.12198230328404992,-0.11059131580978611,-0.1142409696827572,0.03261340850252938,-0.10728185049601335,-0.0291688557562937,-0.07553918307154031,-0.04012087280508658,-0.029470752440457038,-0.06880224235264289,-0.06298693387062929,-0.026477341763977886,-0.01721215586682733,-0.07048054117839493,-0.027134555207867693,-0.09623900313867848,-0.06391324500371454,-0.09073732432128441,-0.030465272499307337,-0.014641938206784427,-0.022098140883630758,-0.08397665249684316,0.02880027579935987,0.01588603288662253,-0.0006989745152782209,-0.06219362362462376,-0.01690668691134986,-0.010578283129705487,0.02840582209520642,-0.004245738273463824,0.02151416583294715,0.009494857986072127,0.003257942056027327,0.01237898460284776,-0.06887127098322832,-0.07143582205171557,0.009625695848910478,-0.05868447650983433,-0.07524394845546606,0.002033943982611673,-0.06798175804808824,-0.015230842035616362,-0.07585244455490646,-0.05487784377865743,-0.0562788503904065,-0.037947171995747646,-0.040605956204508305,-0.02554851087169059,-0.016818999098512994,-0.007813137295209025,-0.016280350533814988,-0.07041337497956925,-0.04120763359237045,-0.0653900939345375,-0.02589386106267059,-0.029848022670072624,-0.02708274900825886,-0.05676784804910897,0.015777114319296556,-0.025377801778547954,-0.02793225586655398,0.01919284409372951,0.009805963933971118,0.008778770213336914,0.016470178200164436,0.02248122482382374,-0.01864017510387623,-0.02077335434397547,-0.035830412968885554,0.02462129193110525,25.515844952232086,33.97199753183578,10.117346854527051,11.691912844920024,28.38173728899643,33.93498503770451,36.16733910155388,36.6917330928106,36.73604078511829,78.67002158578688,66.54792880937038,4.6155837443663295,7.506509032050194,0.0,12.122092776416524,12239.810090476063,11208.096750513383,2142.71449073047,600.0,67.0,99.0,144.0,201.0,255.0,324.0,411.0,513.0,529.3999845960914,43.0,5.3981627015177525,6.315358001522335,7.271703706887368,8.21851757748959,9.1838937219612,10.142937430124647,11.112999984751339,12.078324497661379,13.051264718874748,0.5329670329670331,0.9527032967032967,1.1365296310396351,0.4847076992610253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6197804106073566,0.9396250808015515,0.9854573685600634,0.5575116521988089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,1.0,16.0,0.0,2.0,0.0,8.0,1.0,2.0,0.0,0.0,19.063284160135428,6.041840829147961,6.103966387748303,0.0,0.0,9.694446914922299,0.0,0.0,0.0,20.426410082979746,73.6875644984323,50.73254617883855,38.95199953451186,153.05401650214546,-417.39945890720907,-30.52792392285366,-4.586807240738562,-19.8761647098671,588.3647730486322,2192.9168359284677,28.117555204254266,24.097987208005144,31.327383370406682,0.4666666666666667,0.8777996144687756,0.16706649103419988,0.0,0.08120181467600192,5.23659729191526,0.12220038553122436,8.0,0.11627906976744186,0.20031689085384352,0.44545790132109153,0.7432019441660846,0.8484075889173218,0.891483194917266,0.8982375635453916,4.407500000000003,,1.2857142857142858,1.514192647743136,1.1430359144285005,1.28206267335915,-5.365540693720245,1.3572521419828643,1.2745051870999227,-2.2346271687189603,148.31419999999983,23.85782134420725,0.0,4.899909730850478,34.501605123439134,102.85022063919848,45.93754595858871,12.654955790432378,0.0,0.0,4.465908118654584,0.0,5.872117789475416,3.044522437723423,7.493873886783559,5.476463551931511,9.222565341598752,7.6783263565068856,11.010349056012608,48.50000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.696,4.150502374324915,12.491328526498878,0.0,0.0,0.0,2.1196571488383844,0.0,-0.10625970640374649,103.4241964246068,0.0,0.0,0.0,90.6879336637189,14.268263091671919,34.501605123439134,78.55860620540597,12.654955790432378,0.0,0.0,0.0,44.1084006327533,56.40001736526945,49.55284523231195,459.807302403265,,431.3691481171528,425.8365211926679,426.4236474339997,431.4324878390055,552.358094048029,429.25773710893213,431.6787888470226,503.3191841280666,49.55284523231195,459.807302403265,,430.21877217730315,424.4817172446873,425.4009310895109,430.2853791312631,555.7468565914312,428.04335361347376,430.53844210066995,504.730527603047,5.252897862192677,333.24290772055986,,316.94424258018665,313.5914009209322,313.49238143259805,316.9811188234965,386.64995350795294,315.6415224092247,317.1342636107093,359.15965305231475,1.3040222429555777,12.100192168506974,,11.351819687293494,11.206224241912313,11.221674932473675,11.353486522079091,14.535739317053395,11.29625623970874,11.359968127553225,13.2452416875807,2.6612708858954277,229.9036512016325,,215.64993807686315,212.86748729727643,213.15229628066436,215.68170683133903,275.1906579488555,214.58676798388933,215.80578519396857,251.247950217164,85.50588235294119,0.0,6.697236277712156,0.0,0.0,0.0,11.27437237247604,89.67662053896576,17.6233871903372,0.0,12.011834817911753,0.0,3.115684355180257,2.532874375439432,0.34323775661167455,0.0,0.0,50.733560350091615,650.817127627579,118.62952816623182,263.80431738129187,440.131112223466,502.4348747472642,527.9446497515912,531.9446497515911,2695.0,163.77316234079035,90.60166192319875,92.26412653868675,59.00000000000001,59.00000000000001,0.875,7.947325027016463,6.426264754702098,4.975057966811464,6.061028609050266,,6.074334453022841,6.076400929288251,6.075555873526622,6.074309682274388,6.027098651230308,6.075104380683445,6.074220819683494,6.0476179179846,0.1309225780739859,0.15950075286974383,,0.1598509066584958,0.15990528761284872,0.15988304930333216,0.1598502547966944,0.15860785924290285,0.15987116791272224,0.15984791630746037,0.15914783994696316,2.9394380888954115,3.1368805898768297,,3.13907349489939,3.1394136350177146,3.1392745535879985,3.139069416954859,3.131266809314041,3.1392002378168486,3.1390547875985138,3.134665528677543,433.5700000000022,601.1051027558058,288.4025224992947,,285.80705083069984,285.43906240246736,285.7213752110633,285.8119195092189,293.9623195747583,285.6773602705255,285.8264997790602,290.5651720785391,15.818555335679099,7.589540065770914,,7.521238179755259,7.511554273749141,7.518983558185876,7.521366302874182,7.735850515125218,7.517825270276988,7.521749994185795,7.6464518968036606,7.733770865771214,6.999358218635032,,6.990318002430093,6.989029631373871,6.990018190149987,6.990335037128981,7.018452661145517,6.989864129813863,6.990386049340031,7.006828962367279,13.091312662318142,15.02420290193831,11.27437237247604,0.34323775661167455,2.5378253788853424,0.6632441354641028,12.672107949629751,17.727030176009972,0.0,541.088973004514,113.47712365090545,-309.4678015821326,-22.63397640238039,-3.4007450723311274,-14.736561980101552,436.22469784803496,1625.869746079606,20.84688374466537,17.8667005063693,23.226710658280087,4206.0,77.0,3.6938464044358232,3.120587963852849,0.33776433301148157,0.33776433301148157,1.3217175170146718,1.1415654187245179,0.2449297990629521,0.22459505440826105,0.0,0.0,0.0,0.0,0.19304138174397717,0.19304138174397717,0.6445275987572167,0.5677743279453236,1.3081814720240545,1.1607719931385994,26.708531534440656,24.336139765269444,18.215946366928875,15.9971129954894,17.578198546854413,14.85879685722956,15.520685458259491,13.38966977319062,13.917224382448067,11.618232654575603,12.060207297740128,9.579361420675301,9.193326479730574,7.392989088985754,7.190733673571519,5.657051602599138,9.28267427618518,8.11847188086851,16.63381524676923,14.122656066435034,28.90766122459593,23.290654479787204,133.9095914362846,61.712869952887104,37.360695457160936,27.930551516619683,25.425865019760643,25.117487468973952,220.0,276.0,94.18802899999996,61.499971000000095,0.3076923076923077,443.06,12.04861111111111,8.097222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,6.0,0.0,0.0,0.0,91.0,0.0,2.0,96.0,0.0,2.0,2.0,94.0,2.0,43.0,94.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53.0,5.0,1.0,2.0,38.0,6.0,0.0,2.0,4.0,0.0,6.0,5.0,0.0,0.0,0.0,0.0,0.0,3.828641396489095,6.448889394146858,4.2626798770413155,4.624972813284271,5.0106352940962555,5.351858133476067,5.5909869805108565,5.834810737062605,6.077642243349034,6.293419278846481 +2733526,CC/C(=C(\c1ccccc1)c1ccc(OCCN(C)C)cc1)c1ccccc1,0,18.912280701754387,5.6935947368421065,2.9298245614035086,5.228070175438597,158.8764300992232,74.25433424561405,1.5308487410635265,5.798249122807018,2.3976608187134505,7.270916210526314,217.0626839327296,21.966101694915253,6.038559322033898,3.5084745762711864,5.423728813559322,142.50973595667966,82.1483184067797,1.8678807625423735,6.204279661016949,2.7561205273069684,7.479731661016945,262.43685705128973,17.64,5.9468700000000005,3.3,4.13,152.03779556361783,64.23549910999998,1.5916741732018804,6.071655,2.4702777777777785,7.461727719999996,217.59780080663378,15.396825396825397,5.804388888888889,3.0317460317460316,3.5238095238095237,152.31270644363713,54.90355651587301,1.489971975642698,5.9248777777777795,2.3082010582010577,7.3573824444444424,196.99747087579516,14.435714285714285,5.679392857142857,2.8785714285714286,3.0142857142857142,153.36662156253303,51.49740259285715,1.4338677990165642,5.799153571428571,2.1734126984126974,7.254969057142855,187.26517744218816,14.855263157894736,5.745986842105263,2.789473684210526,2.8815789473684212,152.17232929645513,52.732996973684216,1.4832735115925921,5.868792763157893,2.3128654970760234,7.308388999999999,194.50201553088223,13.15606936416185,5.640508670520232,2.4971098265895955,2.3641618497109826,153.03553936970218,45.41406689595376,1.4011743670836416,5.761771676300578,2.253050738599871,7.214882427745663,177.64643117015734,10.696629213483146,5.543556179775281,2.191011235955056,1.8370786516853932,157.97144387353458,35.593421337078645,1.2109774672626519,5.642969101123596,2.0922284644194757,7.166756179775279,147.5568121431492,9.55944055944056,5.544160839160838,2.111888111888112,1.6503496503496504,162.31036351884475,31.36248972727272,1.0709070646244683,5.621793706293706,1.9959207459207458,7.204904419580419,128.71084457211737,6.60080024622961,0.05338639581409661,0.008642919345745567,0.4918436441982149,2.951677439212065,1.4070440655539809,31.77046764789166,0.24405714578928525,0.05676054170513998,0.27731609726069556,0.02707449184364418,54.3616695901339,0.37927706569426883,0.005067484649774975,-0.001829004250694093,0.2301307833961949,1.0257236907314367,-0.13819713931521013,1.7657845584716996,-0.008504166554486029,0.005679036052814243,-0.010243047404416514,0.0017691977192460706,-0.024281037217100853,-0.013431825176977252,-0.00795588704216675,-0.0018996893826853983,0.03885811018775008,0.03937519236688194,0.30801804895285806,0.027775753336405983,0.027844692517641496,-0.007256383810403138,-0.003500307787011406,-0.003949922720837187,4.470276259290435,-0.2504800011725217,-0.00040662694748563714,0.0007018025070542573,0.01720675958903105,0.08842281141450106,0.10592421159438999,-1.1766732612305641,0.006408556369013338,-0.001505960808453845,-0.016919735987141353,0.0007678746280906921,-0.14301430289230743,0.406342610913248,0.001956724486655239,8.48711565482176e-07,-0.025678230664380238,0.020753638482170322,0.05638169427328491,1.9554261870707457,0.01211585465452859,0.0025417515279426684,0.02067889020797608,0.0004924460009673297,3.073476776586559,-0.30324715297014454,-0.006196529701446571,-0.00036596424486180236,-0.06282702369959986,-0.3411049553708835,0.04086118974489122,-1.3888960878731942,0.008422253430922432,-0.006427773930440105,-0.01663973530317022,-0.0030692111418898116,0.1703945247073032,-0.7772529386543123,-0.0019009379497826782,-9.355405865980684e-05,-0.06501066579845821,-0.31310122990266454,-0.18743039226074457,-3.7790137741466037,-0.03515608275459258,-0.0029226043762687207,-0.013262417782616984,-0.0002440620697875901,-7.527994278940058,-0.3902739304401354,0.0015300737305514714,-1.2672259051585564e-05,-0.01135872403263234,-0.09074702328460614,-0.16854541029484843,-1.942815230978589,-0.030484747884675617,0.0010410254149072504,-0.012688000802321195,0.0010590252074104065,-5.552009605782608,0.2784783698911122,0.002850360412133241,0.0004682305693184819,0.007604276302337239,-0.008725654155017006,-0.05907497873118162,1.3045518833315057,-0.0037675586398981257,0.0033987148278006737,0.005808672706179641,0.0007649698175016737,0.4262597639518587,,,0.49047619047619045,1.2767857142857142,0.6964285714285714,0.017857142857142856,0.5803571428571429,0.11607142857142858,0.834862162690465,0.008155061227552527,0.017369346941838244,0.9653125277257967,0.26079815917675103,0.22798297825187844,1.8001746904162617,0.48878113742862944,2.0335976221024596,1.8902276935299405,0.0710591123109625,0.07231081626155664,0.0,0.14336992857251915,6.512717799087733,1078.0,324.53490000000005,167.0,298.0,9055.956515655722,4232.497052000001,87.25837824062101,330.5002,136.66666666666669,414.4422239999999,12372.572984165588,1296.0,356.275,207.0,320.0,8408.0744214441,4846.750786000002,110.20496499000004,366.0525,162.61111111111114,441.3041679999998,15483.774566026093,1764.0,594.687,330.0,413.0,15203.779556361784,6423.549910999997,159.16741732018804,607.1655,247.02777777777783,746.1727719999997,21759.78008066338,1940.0,731.3530000000001,382.0,444.0,19191.401011898277,6917.848120999999,187.73646893097992,746.5346000000002,290.83333333333326,927.0301879999997,24821.68133035019,2021.0,795.115,403.0,422.0,21471.327018754622,7209.6363630000005,200.741491862319,811.8814999999998,304.27777777777766,1015.6956679999997,26217.12484190634,2258.0,873.39,424.0,438.0,23130.19405306118,8015.415540000001,225.457573762074,892.0564999999998,351.55555555555554,1110.875128,29564.3063606941,2276.0,975.8080000000001,432.0,409.0,26475.148310958477,7856.633573,242.40316550547,996.7864999999999,389.7777777777777,1248.1746599999997,30732.83259243722,1904.0,986.7529999999999,390.0,327.0,28118.917009489156,6335.628997999999,215.55398917275204,1004.4485000000001,372.4166666666667,1275.6825999999996,26265.112561480553,1367.0,792.8149999999998,302.0,236.0,23210.3819831948,4484.836030999999,153.13971024129896,803.9164999999999,285.41666666666663,1030.301332,18405.650773812784,376.2456140350877,3.0430245614035067,0.49264640270749727,28.03508771929825,168.2456140350877,80.2015117365769,1810.9166559298246,13.91125730998926,3.2353508771929786,15.807017543859647,1.5432460350877184,3098.6151666376322,22.377346875961862,0.2989815943367235,-0.10791125079095149,13.577716220375498,60.51769775315476,-8.153631219597397,104.18128894983028,-0.5017458267146757,0.3350631271160403,-0.6043397968605744,0.10438266543551816,-1.4325811958089503,-1.3431825176977252,-0.7955887042166749,-0.18996893826853983,3.885811018775008,3.9375192366881935,30.801804895285805,2.7775753336405984,2.7844692517641496,-0.7256383810403138,-0.3500307787011406,-0.3949922720837187,447.02762592904344,-31.56048014773774,-0.05123499538319028,0.08842711588883642,2.1680517082179125,11.141274238227133,13.346450660893138,-148.2608309150511,0.8074781024956806,-0.18975106186518448,-2.1318867343798105,0.0967522031394272,-18.019802164430736,56.887965527854725,0.2739414281317335,0.00011881961916750464,-3.5949522930132334,2.9055093875038454,7.893437198259888,273.7596661899044,1.6962196516340027,0.35584521391197355,2.895044629116651,0.06894244013542616,430.28674872211826,-46.09356725146197,-0.9418725146198788,-0.05562656521899396,-9.54970760233918,-51.847953216374286,6.210900841223465,-211.11220535672553,1.2801825215002098,-0.9770216374268959,-2.5292397660818735,-0.4665200935672514,25.899967755510087,-134.46475838719604,-0.3288622653124033,-0.01618485214814658,-11.24684518313327,-54.16651277316097,-32.42545786110881,-653.7693829273625,-6.082002316544517,-0.5056105570944887,-2.294398276392738,-0.04222273807325309,-1302.3430102566301,-69.46875961834411,0.2723531240381619,-0.0022556621111822304,-2.0218528778085565,-16.152970144659893,-30.00108303248302,-345.82111111418885,-5.42628512347226,0.18530252385349058,-2.258464142813173,0.18850648691905234,-988.2577098293042,39.822406894429044,0.40760153893505346,0.0669569714125429,1.087411511234225,-1.2477685441674318,-8.447721958558972,186.55091931640533,-0.538760885505432,0.48601622037549636,0.8306401969836886,0.10939068390273933,60.9551462451158,0.7060490694887583,0.6092744999349368,0.4561957282667209,0.330228293957172,0.29618434539319916,0.1824428877322745,0.18489742909799534,0.09580531816574622,0.11941240875460309,0.051514155573331756,0.07796579544332816,0.0281166172736186,0.04924070096698351,0.01506223618010833,0.0322243856018012,0.008163078537726796,8.01006558651784,5.6676100764291375,3.5203416693183978,2.167538595027449,0.36869529661059836,-0.5233687608601504,3.2717236829861593,0.9871785891395105,6.007542646446093,0.9877963761941068,14.544535605189731,10.927922253090353,16.004031837638333,11.67865160917905,2.0202286820560102,0.7788082798105769,3.4629343778553086,2.217522967546402,3.5105604604089264,1.3609281617915747,3.6764625479257735,2.4135257292853347,20.929332671499925,14.706816808606556,0.1992666861736157,0.45167089405186744,0.6430115441726149,0.7788670446940329,0.8507239189591387,0.8679560932165298,1.6019906121408818,880.7355335102352,0.0,0.0,3.0,0.0,15.0,1.0,5.0,0.0,0.0,4.61566458825207,3.0738473114340477,1.9050382705956275,1.075161623072706,0.6362221492366738,0.5309589913419366,272.29996532441936,1130.0823692637432,38.18222600880173,19.826006478311285,38.18413463403043,,14.0,644.0,0.0,0.0,0.0,6.606881964512918,18.71508986212249,27.83656353522952,0.0,0.0,110.84812985435806,4.736862953800049,13.733333333333333,35.75,19.5,0.5,16.25,0.0,0.009523809523809554,3.25,0.07695906432748578,0.056353003721425154,-0.020606060606060628,0.0,0.05268378812199015,0.0,0.5169590643274856,0.7416666666666664,0.43999999999999984,0.46060606060606046,0.7416666666666664,23.37614055533302,0.22834171437147077,0.4863417143714708,27.02875077632231,7.302348456949029,6.383523391052596,50.40489133165533,13.685871848001625,0.6613162118780098,0.1092233009708738,0.0,0.24757281553398058,0.23076923076923078,0.29014932742420135,-0.5053874378844782,-0.02149345840057756,-0.008866446278675055,-0.020215497515379127,0.7098506725757987,1.2364309642846794,0.03735756494672246,0.02169177130323999,0.03863846763389623,-6.799760379145674,0.928351381554302,0.8709644132719419,1.2530163140271118,0.6771175834199528,0.6572312260299394,1.1941802560565127,0.9315526531833919,1.08033450229814,0.8591319228876286,0.9991033189738961,0.903735770160927,1.021870660852435,1.022523547514688,1.4970723725932877,1.6702936298957978,1.248435544430538,1.2015766423357666,0.8644530433923131,1.0165384614979962,0.8730063289885087,1.394560334029228,1.0574065852756198,1.588277659084138,0.8926724739476932,1.0347850414995803,1.1515370595429448,1.1021478564975082,1.2841051314142677,1.121376433785193,0.9317015071611875,1.032692376039801,0.981190089891026,1.135600683241602,1.1145229580301725,1.223388999094307,0.9959233224312318,0.9095122633591346,0.8192441269189703,0.823050161105417,1.3197747183979973,1.0544108446298228,0.9408249156108396,0.9110724294226906,0.963721489759228,0.8364842339289104,0.8255826859045506,0.8355904183008012,0.9490178370711797,1.0281637601417513,1.1059685539087383,1.0446301627385448,1.2024405506883602,1.156204379562044,0.9660868450608628,1.0262763733892755,0.9795705570346689,1.0998994116530652,1.0970680725120239,1.1579048054372159,0.9983873107080347,1.067682831836272,0.6809866032043466,0.6250080987902178,1.0160677725769927,0.9946922070798702,1.1283416977942649,1.0724990729797488,1.1535399471137797,0.7621669334322136,0.9195285050436361,0.5298217518975188,1.14555567826818,1.019714003397087,0.7391441187802222,0.7385860688341087,0.8023653161958063,0.9162634298367917,1.0759865695495099,1.0237570775552185,1.1117416221897334,0.7941961995219012,1.0125640673907894,0.6577221214905505,1.0927577554096801,0.9586060679970967,1.1540257400055247,1.2299626678431381,0.8241420656940055,1.0206523403603696,0.9615795865263242,0.9570860468267773,0.9793930676255342,1.1083373259877345,1.1802219238401261,1.3164800305462032,0.958234263575833,4.0,0.10733598612386491,2.4444444444444455,1.75,1.2844444444444447,0.7708333333333333,0.5461224489795918,0.41666666666666663,0.21642731166540685,0.07562500000000003,5181.226548379585,5991.962588442704,2569.1382076713585,2279.300668840764,13.056576248481928,0.4275506472210223,7.474228622952852,0.7468794315959326,0.0,0.23076923076923078,1.2172254259126718,2.7590427027306936,3.927851743569114,4.757728391092035,5.1966678649280675,5.301931022822805,0.13333333333333333,0.0063138815366979364,0.06267806267806271,0.042682926829268296,0.029870801033591736,0.016059027777777776,0.012136054421768707,0.012254901960784315,0.009409883115887255,0.00420138888888889,0.32894026157606093,22.68,12.0,6.76,168.6489043143239,0.0,4.240411057662592,160.16101325845935,,124.05566625075171,122.81922254178593,124.58602378702388,124.0747260657995,159.88916536234245,123.65689225152009,124.11757987806476,143.0926467617342,0.05745925517302431,0.09492089833936518,-0.21161880350004783,0.467894189771112,0.3475053463176682,-0.09821806061262141,0.05557943238487016,-0.03484498078096996,0.1000525344228696,-0.03693636072913347,0.06534555586354966,-0.00044665731203935685,-0.002034878298983451,-0.1490246142457515,-0.21979718966375764,0.07900500625782228,0.013339937434827887,0.21891144456203318,0.0008742632826259083,0.11409087174067882,-0.12784204647127306,-0.012622086570477314,-0.14589092728491754,0.08223213696331624,-0.037946914287490585,-0.00761667726927293,0.08119970567580456,0.03498420644853684,0.02995680023834348,0.07528137475402062,-0.037036699436454476,0.02625842545313701,-0.02653182586376677,-0.061012455296584084,0.02836155273107934,-0.0026307930564050063,0.06155959819346932,0.036652118143899286,9.819732564089586e-05,-0.052208117289468954,0.00703113362133174,0.040071022403329166,0.06154854907212897,0.049643515314192886,0.04478025493742776,0.07456794038370065,0.01818855932038233,0.05653757141308192,-0.045940968012683,-0.11606945190726632,-0.042342665738509574,-0.12773779724655815,-0.11556308654848808,0.02904044780488333,-0.04371657676764993,0.03450934986428982,-0.11324370306103042,-0.060002774694783635,-0.1133617265880585,0.003134460843311334,-0.11775131948558523,-0.035607160228650195,-0.010824358635934552,-0.13217750511839219,-0.1060756930087338,-0.13320861574221526,-0.11894737641349717,-0.14404856961224047,-0.05149007194912065,-0.047824190206129394,-0.009014465394108011,-0.13847982108898133,-0.05912524480089527,0.028660367631475458,-0.0014662012388005703,-0.023094176709651106,-0.030744220923012034,-0.11978687407241137,-0.06115160949188979,-0.12490823731502468,0.018340653271337257,-0.0457528464003791,0.03911523856204953,-0.10213096190096123,0.04218857706687604,0.05339113773589126,0.054175047873027536,0.015460759515828338,-0.0029561679196715594,-0.041985166049453224,0.041061777805404064,-0.01543719864343153,0.05987812529091669,0.02094603509697853,0.02825426316103704,0.007841182347151835,28.786204719346763,29.4478059469952,6.534047077809358,9.774887918483564,22.70044020338928,30.49650249126281,35.004458656268,36.60512017221051,37.09729561080701,56.940733418868874,52.92637541883833,1.9896551447069502,2.0247028553235857,0.0,4.014358000030536,5776.410358321504,4153.522740750935,2310.6610418166374,90.0,39.0,50.0,65.0,82.0,82.0,94.0,102.0,100.0,371.2249145480008,30.0,4.9344739331306915,5.75890177387728,6.61338421837956,7.4645098346365275,8.332067707289548,9.19634286233233,10.070906955077977,10.942862797921952,11.821578599479409,0.584795321637427,0.9499649122807017,1.1144179683598845,0.5426662985830241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6792624960605105,0.9396628826969384,0.9801305886712411,0.6198116811466894,14.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,9.636772684650527,12.356393797796823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.72014202122996,60.48546326043312,6.544756405912575,0.0,188.24731611945595,-327.892639375823,-13.944839693246918,-5.7525024451898785,-13.115705575032923,460.5472814438753,802.1897298879201,24.237386315554808,14.073504033121406,25.068429058997502,0.5,0.98034959538976,0.2826152794446792,25.8088306352342,0.06826390804140418,29.415090213564934,0.019650404610240087,7.0,0.26666666666666666,0.20868307527773197,0.47301469700792625,0.6733971897345256,0.8156725704647687,0.8909250564142894,0.9089715406852278,5.9961000000000055,,0.3928571428571429,0.4713820381572824,0.39838377133594904,0.3917657575808813,-1.60047608252097,0.419905140758874,0.3887577933310232,-0.7183191063014545,119.58200000000004,4.736862953800049,0.0,4.899909730850478,0.0,13.344558822616634,27.246982335779872,101.61949343355356,0.0,5.749511833283905,4.110873864173311,0.0,5.37989735354046,0.0,6.855408798609928,0.0,8.4252971767117,0.0,10.047631185616188,33.333333333333336,29.820595624675086,0.0,0.0,0.0,0.0,0.0,4.640996003722376,0.0,54.147999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.640942287663969,63.521824196513414,4.736862953800049,0.0,5.749511833283905,32.14689206663035,0.0,0.0,30.034913297707618,84.92913895846256,0.0,11.146209060138535,0.0,30.93197901923237,38.717962275449096,36.50796424284687,320.32202651691864,,248.0832712770136,245.60477493798922,249.1435915903809,248.12146886320036,320.57856876594553,247.28379127870022,248.2073913423202,286.54445307661916,36.50796424284687,320.3220265169186,,247.7184753586463,245.1670630454145,248.7736638027116,247.7576863740181,321.37880680720605,246.89387936228138,247.8464019627986,286.90361262977,4.848533641673928,231.02618582823408,,178.5230093305011,176.58640582568555,179.80908811239252,178.55429665563912,240.73140995950837,177.91740085702006,178.61824658337918,210.38960619147943,1.3038558658159596,11.440072375604236,,8.860116831321914,8.771599104928187,8.897985413942175,8.861481030828584,11.44923459878377,8.831563974239293,8.86454969079715,10.233730467022113,2.4242668208369644,160.16101325845935,,124.05566625075171,122.81922254178593,124.58602378702388,124.0747260657995,159.88916536234245,123.65689225152009,124.11757987806476,143.0926467617342,53.56078431372549,0.0,6.335812523381968,0.0,0.0,0.0,0.0,55.867443554260745,2.567649192726927,0.0,5.87098820026174,0.0,0.0,2.1230161675679353,0.0,0.0,0.0,35.3292658253613,636.0455212122739,69.3818492770223,157.26543405564954,223.88754938343948,271.190518292246,296.2100683008999,302.2100683008999,762.0,133.13502868212527,12.749076351057345,62.81910837865159,12.47,12.47,1.0,8.81056451807633,5.906890595608519,4.322710359711243,5.187654387659189,,5.183394338344729,5.185729989702563,5.185330677033355,5.183367358283855,5.138054807318455,5.1842824328762385,5.1832638214174915,5.154490839334278,0.1543825128468301,0.1852733709878282,,0.1851212263694546,0.18520464248937724,0.18519038132261983,0.18512026279585195,0.18350195740423053,0.18515294403129423,0.1851165650506247,0.18408895854765278,2.4935020207865892,2.6759010637715814,,2.675079536524607,2.6755300377093634,2.67545303253463,2.6750743314158827,2.666293982864985,2.6752508563975694,2.675054356389363,2.6694877595167466,317.47000000000094,452.9709555953547,173.32329683819836,,173.772515220044,173.58235386194383,173.60244492697166,173.7746612946967,177.02920816808484,173.7000215123225,173.78311161719134,175.93067579810912,16.177534128405526,6.19011774422137,,6.206161257858715,6.199369780783708,6.200087318820416,6.206237903382025,6.322471720288744,6.203572196868661,6.206539700613976,6.28323842136104,7.14544742492515,6.184778035555539,,6.1873664772310315,6.1862715659801815,6.186387302988947,6.187378827063214,6.205934154039816,6.186949214275778,6.187427453928472,6.199709447114505,5.87098820026174,2.1230161675679353,0.0,6.369187126105418,0.9127511652809271,29.820595624675086,0.9675864004922445,3.8262552088248265,4.109620106791824,381.905095996599,122.13384170409961,-212.73497300781557,-9.0473366568653,-3.732192508909046,-8.509398920312623,298.8005881232653,520.4563629720705,15.725085300587372,9.130813385474921,16.2642613428772,2141.0,41.0,1.3595663102948599,0.7851574954091335,0.0,0.0,0.22451341401773972,0.09322653612818575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2874574785652648,0.09192780768773619,0.2248892177291057,0.057304134134530955,19.769373945685235,17.059685998178228,13.685871848001627,9.90684881871516,11.551189470334768,7.115272621558705,9.244871454899767,4.790265908287311,7.761806569049201,3.348420112266564,6.393195226352909,2.3055626164367253,4.037737479292648,1.235103366768883,3.029092246569313,0.7673293825463189,2.9704257962466842,1.4048412823754797,5.041369077874396,1.9660741983465213,8.139887431615207,2.699578154186919,96.50193396306409,70.06681066611075,42.80579442852494,28.870225917566255,24.68811879509399,23.6122198437495,138.0,158.0,64.65899699999999,32.539002999999994,0.3508771929824561,144.02,8.277777777777779,6.444444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,18.0,57.0,0.0,1.0,59.0,18.0,1.0,10.0,49.0,19.0,30.0,40.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,2.0,0.0,0.0,28.0,2.0,0.0,1.0,1.0,0.0,3.0,8.0,0.0,0.0,0.0,0.0,3.0,3.713572066704308,7.533869162370377,4.255612709818223,4.826311734631628,5.403240286474816,5.9799927469071035,6.177425307294476,6.6543135896850565,7.0476802515454136,7.348265728833102 +10416272,O=C(Cn1cc(C(F)(F)F)ccc1=O)NCc1cc2cc(C(=O)N3CCC(N4C(=O)OCc5ccccc54)CC3)ccc2o1,0,27.690140845070424,6.8459098591549274,3.788732394366197,11.014084507042254,166.0807251974609,111.31030497815932,1.5224002736749715,6.869671830985913,7.766138497652581,8.226357239436622,236.21152712089648,28.19736842105263,6.627355263157894,4.5131578947368425,9.381578947368421,147.60290875975926,109.16493200665266,1.8249765047368427,6.763296052631579,3.5032894736842106,7.982003263157892,279.9934897965884,25.582089552238806,6.810261194029851,3.9776119402985075,8.552238805970148,157.9268305322929,98.29657352951428,1.5857402659398734,6.884446268656716,4.909618573797679,8.168781611940297,239.67074113287518,20.536312849162012,6.439653072625696,3.435754189944134,5.659217877094972,158.11447760773206,76.36751337436425,1.4126643398331338,6.523364804469274,3.532898820608317,7.9103912625698305,206.62184760060555,18.266331658291456,6.5603613065326645,3.030150753768844,4.964824120603015,164.26216266534337,66.19514241671557,1.2576971200865577,6.610229648241206,3.7927833612506987,8.062071336683417,182.7555565279429,18.67027027027027,6.4872162162162175,2.962162162162162,5.005405405405406,160.9208386990931,68.15379608804325,1.2783596096290593,6.549688108108106,3.955705705705705,7.996049513513514,185.49830436387433,17.167567567567566,6.507708108108109,2.735135135135135,5.005405405405406,164.23321405835608,61.62081356999783,1.2147121384868864,6.550695675675676,4.301126126126126,8.019156821621621,170.97536477089736,16.171597633136095,6.153739644970414,2.8106508875739644,4.85207100591716,162.94528708979564,59.05082004886152,1.1963588060808168,6.214480473372783,3.792324128862592,7.690331573964498,163.78476488668312,17.71034482758621,6.381013103448276,3.0068965517241377,5.36551724137931,164.68676140667458,65.0007741295338,1.2124729575990758,6.4304689655172425,3.7890804597701164,7.917140717241381,174.53373733974908,7.881372743503272,0.24028589565562372,0.026869243400960734,0.6891489783773064,5.008133306883553,2.40641227906963,37.84024574581159,0.23189112164146244,0.21254505058520134,3.4258607198748043,0.1471515064471335,46.05491651798661,0.3367517931905735,-0.007980595433236913,-0.016850660383705283,0.10718163689326461,1.1669964188392028,-0.36812118861612575,1.5729747792373943,-0.01795329573426683,-0.004457374528863261,-0.1562500000000001,-0.007145555372263214,-0.5923613187801111,0.5184590832783111,0.0647706736107205,0.0027909721970296748,-0.05702789366004737,0.6403846666291636,0.5190452596717903,2.6198707553571134,0.009312312594815525,0.05398305536392637,0.9476575456053067,0.03955165016417614,-0.3598400729676685,-0.18367819633197732,-0.007736041221758211,0.002205979492062728,-0.09382283155222154,-0.4103679437550632,-0.22555707235183434,-0.8130800357626422,-0.0246971476427222,-0.005613694853043122,0.015091558038485274,-0.0064774981065873986,-3.1403844176534315,-1.1537203972650398,-0.03459390754606198,-0.0020731437175396214,-0.07204939595816816,-0.9748683907536093,0.1710647627482706,-5.411663974136764,-0.0010416097130466013,-0.03203790216705427,-0.4785734226689001,-0.02171996762626861,-2.2736955716644576,-0.5909273685508558,-0.016545248529624693,-0.0015688155440098566,-0.057401738179361644,-0.5533179281245142,-0.29840005453183843,-2.7941465078641197,-0.02441998408756351,-0.014384669922848915,-0.19125375375375375,-0.01048440785558419,-4.540907829594749,-0.8907370373746095,0.008947998520242065,0.0012296012957921847,0.02010111678828205,0.04279931588005369,-0.006778371463295771,-4.321262579723115,-0.008790971953311145,0.004056281733032325,0.12038288288288286,0.008935469723403247,-5.704804432632981,1.744179385840839,0.06499694458106217,-0.0005162226580868202,0.055579749016643414,1.3597306817821673,0.02605939881307335,8.317247330424953,-0.011382734798223399,0.058994227687987726,0.8060075608152529,0.03626219069429504,1.4183583824027726,1.2075053526599129,0.011502574475507591,0.0031005085390591394,0.05985539267660359,0.47005999083378364,0.1301455354396793,5.740803024498,0.029997029503778375,0.012509587588669296,0.2090996168582374,0.006760785344998633,7.992356306289854,,,0.4535714285714286,1.2386363636363635,0.5568181818181818,0.011363636363636364,0.6818181818181818,-0.125,0.9428237776828916,0.01935253893682728,0.03107981166410001,1.1959882605473455,0.2524543185338606,0.2262434507650643,2.1388120382302374,0.4786977692989249,2.0593518455275284,1.4899780194843721,0.1985052135627359,0.2556199680811675,0.11524864439925263,0.569373826043156,8.566031961183109,1966.0,486.0595999999999,269.0,782.0,11791.731489019725,7903.031653449312,108.09041943092298,487.74669999999986,551.3958333333333,584.0713640000001,16771.01842558365,2143.0,503.679,343.0,713.0,11217.821065741704,8296.534832505602,138.69821436000004,514.0105,266.25,606.6322479999998,21279.505224540717,3428.0,912.575,533.0,1146.0,21162.19529132725,13171.740852954914,212.48919563594302,922.5157999999999,657.8888888888889,1094.6167359999997,32115.879311805274,3676.0,1152.6978999999997,615.0,1013.0,28302.491491784036,13669.7848940112,252.86691683013095,1167.6823000000002,632.3888888888888,1415.9600359999997,36985.310720508394,3635.0,1305.5119000000002,603.0,988.0,32688.17037040333,13172.8333409264,250.28172689722498,1315.4357,754.763888888889,1604.3521959999998,36368.35574906064,3454.0,1200.1350000000002,548.0,926.0,29770.355159332226,12608.452276288,236.49652778137596,1211.6922999999997,731.8055555555554,1479.26916,34317.18630731675,3176.0,1203.9260000000002,506.0,926.0,30383.144600795873,11399.850510449598,224.721745620074,1211.8787,795.7083333333334,1483.5440119999998,31630.44248261601,2733.0,1039.982,475.0,820.0,27537.75351817546,9979.588588257597,202.18463822765804,1050.2472000000002,640.902777777778,1299.666036,27679.62526584945,2568.0,925.2469,436.0,778.0,23879.580403967815,9425.1122487824,175.808578851866,932.4180000000001,549.4166666666669,1147.9854040000002,25307.391914263615,559.5774647887323,17.060298591549284,1.907716281468212,48.92957746478875,355.5774647887323,170.85527181394374,2686.657447952623,16.464269636543833,15.090698591549296,243.23611111111111,10.44775695774648,3269.8990727770497,25.593136282483588,-0.6065252529260055,-1.2806501891616016,8.14580440388811,88.69172783177942,-27.977210334825557,119.54608322204196,-1.364450475804279,-0.3387604641936079,-11.875000000000009,-0.5430622082920042,-45.01946022728845,69.47351715929369,8.679270263836548,0.3739902744019764,-7.641737750446347,85.81154532830793,69.55206479601989,351.0626812178532,1.2478498877052804,7.233729418766133,126.9861111111111,5.299921121999603,-48.21856977766758,-32.87839714342394,-1.3847513786947196,0.3948703290792283,-16.794286847847655,-73.45586193215631,-40.37471595097835,-145.54132640151295,-4.420789428047274,-1.0048513786947189,2.701388888888864,-1.1594721610791443,-562.1288107599643,-229.5903590557429,-6.884187601666334,-0.4125555997903847,-14.337829795675463,-193.99880975996825,34.041887786905846,-1076.921130853216,-0.20728033289627368,-6.3755425312438,-95.23611111111111,-4.322273557627454,-452.46541876122706,-109.32156318190833,-3.0608709779805685,-0.2902308756418235,-10.619321563181904,-102.36381670303513,-55.204010088390106,-516.9171039548621,-4.51769705619925,-2.6611639357270493,-35.38194444444444,-1.9396154532830752,-840.0679484750285,-164.78635191430277,1.655379726244782,0.22747623972155417,3.718706605832179,7.917873437809932,-1.2539987207097176,-799.4335772487763,-1.626329811362562,0.7504121206109802,22.27083333333333,1.6530618988296006,-1055.3888200371016,294.7663162071018,10.984483634199508,-0.08724162921667261,9.392977583812737,229.79448522118628,4.404038399409396,1405.614798841817,-1.9236821808997544,9.970024479269926,136.21527777777774,6.128310227335861,239.70256662606855,175.08827613568738,1.6678732989486007,0.4495737381635752,8.67903193810752,68.15869867089863,18.8711026387535,832.4164385522099,4.3495692780478645,1.813890200357048,30.319444444444425,0.9803138750248018,1158.8916644120288,0.7047612827900426,0.5296130601566381,0.42985105814597335,0.28503678407729305,0.28245365149770857,0.14861655511269634,0.17655498772064454,0.0822594885324812,0.1109742358728144,0.04490455420704258,0.07240630785232967,0.02479868297175688,0.046928902610775654,0.012939780069405354,0.0299164911478625,0.007212618038440196,9.014131352068516,5.675597859113172,4.12460825590237,2.174851501792315,0.5100194384942383,-0.5335962575793072,4.022133278930559,0.977074740134216,7.014122746761846,1.887835943773399,17.43071220790689,10.936090898169489,19.005618576283357,11.687026507996526,2.0128905544359688,0.5269253940677971,4.007242520668344,2.2246742655038156,8.007407576721107,1.2190129172808113,4.030726075959947,2.4206865880106294,20.915077954475684,13.302772369670654,0.27492744213750686,0.6089924582431402,0.7931188786332176,0.8784195236651884,0.8827694578285998,0.8827694578285998,0.9266298570409139,1805.9228402917186,0.0,4.0,6.0,0.0,13.0,3.0,4.0,0.0,0.0,4.369390291364749,2.206074298453171,1.013720682408974,0.461336443692443,0.43316742960793686,0.43316742960793686,118.33548921423522,3594.667543873692,102.63694995148839,50.62912033624917,108.18406953812521,,23.0,1746.0,29.750953039456554,32.34939387931175,31.193898999863375,65.05440961222169,17.31720483484217,0.0,34.0652877355474,24.26546827384644,5.316788604006331,9.154013890853395,19.95714285714286,54.5,24.5,0.5,30.0,0.0,0.04642857142857138,-5.5,0.23803146749348658,0.07731783962200212,-0.16071362787148447,0.013708513708513781,0.21931161473087835,0.0,0.6822937625754519,0.9168831168831173,0.44426229508196535,0.6049759229534498,0.9031746031746035,41.48424621804723,0.8515117132204004,1.3675117132204004,52.62348346408321,11.107990015489866,9.954711833662829,94.10772968213044,21.062701849152695,0.4946883852691216,0.10975900739680265,0.025053686471009303,0.360773085182534,0.2903225806451613,0.43252000539788577,-1.773188697855358,-0.07727151145762151,-0.024974488702188137,-0.07388286241063992,0.5674799946021142,2.326479931863071,0.039784510783772875,0.03276732298398692,0.04949957301836322,-6.707496853589465,0.6221799780094587,0.6033383017133126,1.7251605464211486,0.9223782686422444,0.41315299557616225,1.1302201961393876,0.6229500809212094,1.109684059333476,0.5799250201121439,0.5420184103838652,0.6391460538932058,0.9381228824910423,0.7510330927792451,0.5407861902937058,0.952679338206174,1.1583812371647801,0.7103223681954642,0.8179433302781355,0.7472629632328786,0.9403720776726855,0.5461004514428356,0.41042645505982334,0.5419808197585005,0.9256306658225562,0.901518208803277,0.730723127834262,0.9605175484766014,1.1588882134805076,0.9260253408139884,0.9180948916763182,0.8947372638927261,1.0813720929989563,0.7338165560787893,0.635460904222147,0.7517965249448015,1.0553938680022754,1.1365359391976244,1.075964101432185,1.1155995013024187,1.1035242418193438,1.190080562043363,0.8087973325729763,1.1277303729034696,0.9614026398306991,1.0880882991069198,1.1019100814412954,1.0942849130495418,1.0270602759258376,1.0426786212338692,0.9363747267791351,1.0646260503265375,1.0169055065428119,1.0529503202005779,0.9475930253793805,1.0352920871472726,1.0865811064953206,0.9434123453584745,0.9638029510124526,0.9676621977661418,1.0979471822845028,1.1265256698934023,0.9024166379434504,0.8082121417858377,0.8003780983055591,0.969416616172538,0.8778070217837173,1.1240366319226829,1.013105352624942,0.9288483356310415,0.9230440398715395,0.8893412665496724,1.1314050298575498,0.78165486858782,0.42602249702225903,0.7338337746512787,0.8295946558202434,0.6331063284030701,0.735627775360849,0.7813122017898302,1.0351144014874707,0.44594556949691805,0.4253053606500936,0.42780191310702564,1.0578720532317156,0.8726411901021552,0.7962067055883503,0.8905950503997144,0.9077084946300595,0.9035326866393313,0.7127903461062717,0.8673816850240179,0.8310136747145795,0.803268038820757,0.7015409242789101,0.8079590572606233,0.8582704834070709,10.5,0.29670645852464034,6.000000000000003,3.791666666666667,3.035555555555556,1.500277777777778,1.2507936507936506,0.6693239795918368,0.5127708490803728,0.4218827160493828,9964.23003401802,10837.759723117579,4414.509241326479,4142.7061493623905,24.205031841032586,0.48318717813811607,12.509470809020803,0.9349365141471776,0.0,0.2903225806451613,1.780356828139933,3.943672821051511,5.136026437095708,5.688410675812239,5.716579689896745,5.716579689896745,0.2142857142857143,0.005705893433166161,0.08333333333333337,0.05055555555555556,0.04399355877616747,0.02273148148148148,0.02194374825953773,0.013123999599839937,0.010255416981607455,0.008437654320987656,0.4743663560273911,33.88421491045398,14.631944444444445,8.013739612188365,248.1446172231552,0.0,4.727073252287006,403.7998497885169,,325.9702326312261,318.8359009485187,314.8092120832187,325.7839347686687,451.3916941960073,322.9941417384919,326.51168329516787,406.217172779288,0.04272755573807403,-0.03321291668602411,-0.6271356484530849,0.1555275278005028,0.23302023874548136,-0.15297511229391214,0.04156883096911445,-0.07742122944243311,-0.020971434134037698,-0.04560897618911668,-0.048559172412076974,-0.01286206476020353,0.0657828401411016,0.26955670216927524,0.10387237762451774,-0.08275118363278602,0.1278689338698255,0.21569257445464168,0.06923503544231337,0.040158124765180624,0.25398406227430165,0.27661881877087463,0.26878182302799386,-0.007813282493458305,-0.0233053558446891,-0.032195153197195805,0.08210054370134783,-0.1361430321976824,-0.08194029963040775,-0.09373168276844045,-0.02148717641065107,-0.10650320490021865,-0.02641178817190477,0.00440518727189726,-0.04401924426723108,-0.06818782130300818,-0.14638571665273262,-0.14396978004752203,-0.07715675825339743,-0.10454836068656465,-0.19465703706682033,0.07108705529644647,-0.1430134468599682,-0.004491805057793813,-0.15073464227392808,-0.13969436057119952,-0.14760275413199286,-0.04936922577585115,-0.07497772123999157,-0.06885651146722836,-0.05838703831734102,-0.08329365635065111,-0.11048386578767633,-0.1240020494938657,-0.07384060152868839,-0.10530797347783058,-0.06767821637456874,-0.055826482566618464,-0.07124906913101076,-0.09859767800949788,-0.11301800668022671,0.03723896692241264,0.045762408618778574,0.029168028131758714,0.008545961790040035,-0.0028167955766567284,-0.11419752949679034,-0.03790991173393552,0.01908433869367527,0.03513945624948879,0.06072292387039513,-0.12386960750227363,0.22130400916243823,0.27049837612697586,-0.019212400229638105,0.08064983154660314,0.27150449048815284,0.010829149701292442,0.21979897768886875,-0.04908654853902846,0.2775610512950484,0.23527154975661355,0.24642758725220934,0.03079711113684978,0.15321002976991246,0.04787036893748026,0.1153924765499083,0.08685406864788675,0.0938593208347106,0.05408280890670833,0.15171156823508286,0.12935824921386238,0.05885616980600859,0.06103564445722091,0.045944384180854794,0.17353969805087938,21.992458385511036,36.02028644112143,10.44556648218869,18.563104000469774,40.22072611158097,49.13351641965855,50.422545084397484,50.45093945059467,50.45093945059467,90.61148120321126,65.55903285731237,8.73422939676038,11.24727859557137,5.070940353567115,25.052448345898863,31724.084863651235,31158.51498360125,1985.9932892782927,268.0,72.0,95.0,124.0,161.0,174.0,202.0,227.0,243.0,608.1882692440007,49.0,5.493061443340548,6.3578422665081,7.256297239690681,8.137103389639302,9.03491498187007,9.921376585371869,10.818637634116012,11.707908196410026,12.604878966373771,0.7417840375586853,1.0280563380281684,1.1361621103583042,0.7136348131583609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6802429872649068,1.0118199392433027,1.0351035565175468,0.670070256261772,11.0,0.0,0.0,1.0,0.0,2.0,5.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,3.0,0.0,0.0,7.0,1.0,1.0,0.0,1.0,2.0,1.0,0.0,0.0,23.93781187350156,24.49490593094218,0.0,5.907179729351506,11.466446624403513,19.283521283065944,4.794537184071822,13.171245143024459,0.0,18.19910120538483,49.23984565662168,47.90769147890658,17.795594172293132,379.2417792524459,-1554.765625479854,-67.75313309208931,-21.8981074011247,-64.78190106166058,497.5772684666811,2039.9019183938378,34.883816859399076,28.731012935124475,43.40216847646463,0.4782608695652174,0.8187733948952391,0.11200674327885794,155.6911326869275,0.10179277611204704,3.2490282202129057,0.18122660510476085,12.0,0.12244897959183673,0.2895008190651143,0.6412739815827005,0.8351605907186275,0.9249828595017741,0.9295633753404114,0.9295633753404114,4.691100000000005,,3.0714285714285716,3.6276884313747737,3.0009130376500233,3.1689611072733266,-14.561106862352847,3.2749518707367935,2.992520773761969,-5.311244377223991,151.79619999999974,36.708870586093326,0.0,14.783797982648164,0.0,44.75617736878152,17.98942254267563,99.66492022931847,0.0,0.0,4.59511985013459,0.0,5.958424693029782,2.3978952727983707,7.507141079727608,4.727387818712341,9.13852208418571,6.823286122355687,10.813941282209651,52.66666666666666,16.32670095180642,0.0,0.0,5.750202959798225,0.0,1.122808483968436,1.580440584065756,0.6890475532856901,72.99199999999996,0.0,50.1986854016189,0.0,0.0,0.0,0.0,0.0,-1.2106909719207888,80.6675098354396,15.775965229908817,23.653168601779843,0.0,46.50596254925637,35.404093431653415,0.0,40.08678232388927,76.07220237735436,0.0,10.969244356107037,0.0,50.66807173424362,48.29725209580839,57.10727649456472,807.5996995770339,,651.8171717290616,637.5318864725105,629.5230570613408,651.4345712728874,906.7306457533937,645.8804474840429,652.90226346658,813.6414465533996,57.10727649456472,807.5996995770338,,649.1137311290677,634.3745778023558,626.9947359829462,648.6420855683662,917.344495254368,643.012588157224,650.2678256177522,817.7455899357999,4.92507231705749,632.5843315588496,,515.253711882101,504.4030612893553,497.17794928524586,515.084483900241,699.3773990199531,510.6901594064527,516.0270598568635,636.0389703746035,1.2978926476037438,18.35453862675077,,14.814026630205944,14.489361056193419,14.307342205939563,14.805331165292897,20.607514676213494,14.679101079182793,14.838687806058637,18.49185105803181,2.4656456782267986,403.7998497885169,,325.9702326312261,318.8359009485187,314.8092120832187,325.7839347686687,451.3916941960073,322.9941417384919,326.51168329516787,406.217172779288,71.8392156862745,0.0,0.0,0.0,38.89854186534176,0.0,0.0,73.49235251274582,1.7022332710052543,2.5377194832054273,5.357246108557349,0.0,-0.08858075061740123,3.4367020520211664,-4.646096423552445,0.0,0.0,47.57498819458581,717.9161084098004,126.40533479793524,280.0007702946573,364.6578770337953,403.87715798266896,405.8771579826689,405.8771579826689,1659.0,174.33202070332038,158.9029393093267,95.96171820315374,114.09,114.09,0.9166666666666666,9.023728845155368,6.614709844115208,5.200723764133621,6.54109996460661,,6.541277246787401,6.541754384698716,6.541883687654215,6.541643720019885,6.522384321735436,6.541523211037731,6.5410718997682995,6.536147166053251,0.11819826736667322,0.1486613628319684,,0.14866539197244094,0.1486762360158799,0.14867917471941397,0.14867372090954284,0.14823600731216902,0.14867098206903934,0.14866072499473407,0.14854879922848296,3.1304023422365184,3.35970988255774,,3.359736984999129,3.3598099249605946,3.359829690557104,3.3597930081507648,3.356844543530905,3.359774586161228,3.359705592010482,3.3589524144544485,407.01000000000136,1648.5802596372807,344.2006463690402,,343.13865490379226,342.9976557493797,343.1353662577829,343.06315092671264,347.6510183536728,343.0790523839629,343.1827229309474,344.7756252517362,37.467733173574565,7.822741962932732,,7.798605793268006,7.795401267031357,7.7985310513132475,7.796889793788924,7.901159508038018,7.797251190544611,7.7996073393397145,7.835809664812186,8.88927428871569,7.322829302587864,,7.31973914810851,7.319328153516887,7.319729564047601,7.319519084632305,7.332803696714694,7.319565434957869,7.319867566160574,7.3244983847895675,50.69503848698302,53.63538745364008,3.1736009408387447,0.9643965280567933,-0.4667980274553698,15.636183123045198,-3.229730121536218,0.5085882830944166,0.0,507.65036184147027,332.52641573943697,-1363.2481151596785,-59.407237637793024,-19.20067767830533,-56.802004798319935,436.2852267036398,1788.6248575265054,30.586795079466725,25.191899401781765,38.055848032478835,8601.0,75.0,4.0808774026952275,1.2975354294904522,0.28867513459481287,0.013498731178900972,1.0741725337472088,0.20292836554690694,0.14433756729740643,0.004499577059633658,0.0,0.0,0.0,0.0,0.09622504486493763,0.02946278254943948,0.5624291309421081,0.2088917903909187,0.9349907952462138,0.26086056758124204,31.009496442761876,23.30297464689208,21.062701849152695,13.966802419787358,20.336662907835017,10.700391968114136,16.77272383346123,7.814651410585714,13.760805248228985,5.56816472167328,11.657415564225078,3.9925879584528574,8.165629054274964,2.2515217320765317,6.043131211868225,1.4569488437649196,8.220878979108866,2.612847144661965,12.094009772804371,3.4914388801262337,18.510280087260565,4.58419240794005,137.6278285652206,68.11637328708099,38.27867808000599,33.28746915986734,33.17057487481087,33.17057487481087,242.0,288.0,80.656411,43.069589000000036,0.5070422535211268,509.13,13.979166666666668,9.30555555555555,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,21.0,22.0,71.0,0.0,0.0,76.0,22.0,4.0,13.0,63.0,26.0,49.0,50.0,0.0,0.0,0.0,31.0,0.0,3.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,7.0,1.0,4.0,44.0,13.0,0.0,4.0,6.0,0.0,6.0,6.0,0.0,0.0,3.0,2.0,4.0,4.174387269895637,7.557317863487296,4.78957290898587,5.3441269025793305,5.892852045636659,6.42658958503021,6.688646545581436,7.002120410095861,7.304308397182877,7.367674046841503 +4913,CCN(CC)CCNC(=O)c1ccc(N)cc1,0,18.42105263157895,5.879334210526316,2.5526315789473686,4.947368421052632,167.12549462925602,72.14018592105262,1.3122572368902372,5.940286842105263,3.6206140350877187,7.449238842105262,186.96872769526914,20.763157894736842,6.225315789473685,3.0789473684210527,4.7368421052631575,151.37805517752892,76.43469507894734,1.644593538947368,6.3513947368421055,2.8976608187134505,7.658350210526315,231.31890594033302,15.954545454545455,6.037757575757577,2.742424242424242,3.3333333333333335,160.8305976009475,57.030475954545466,1.3372426123233176,6.123145454545455,2.62878787878788,7.557247575757577,180.03432632594811,13.345238095238095,5.930629761904764,2.392857142857143,2.380952380952381,164.5611582808182,46.31147001190476,1.1960326545592854,6.000263095238095,2.558862433862434,7.501529476190476,156.31720280816396,11.224719101123595,5.836179775280899,2.033707865168539,1.8089887640449438,162.8564981339739,36.897816584269655,1.104010799786292,5.906713483146066,2.542446941323346,7.441950651685395,137.43641023810684,8.86021505376344,5.648322580645161,1.7849462365591398,1.6129032258064515,170.4010064321437,28.77542577419355,0.9233407659995696,5.691447311827957,2.188172043010753,7.318567268817206,109.82409238099095,10.366197183098592,5.67371690140845,1.9859154929577465,1.8028169014084507,169.92390792106227,35.51279139436618,0.9793724557791407,5.721728169014085,2.406103286384977,7.319451887323943,120.8412993713792,12.345454545454546,6.018272727272725,2.2363636363636363,1.6,165.99248050054703,41.78910487272727,1.1064786847979273,6.071009090909091,2.9666666666666672,7.628375854545455,144.73550245002536,12.208333333333334,6.012625,2.2291666666666665,1.2916666666666667,160.8654926002374,39.92249204166666,1.235278111772792,6.086333333333336,2.826388888888889,7.598055500000001,157.93355179897986,7.074792243767313,0.09277735457063709,0.016769212654373172,0.45775623268698046,3.074792243767314,1.41302353200408,33.787914756925204,0.2144687372292888,0.0902535318559556,1.168917359187442,0.049979869806094146,49.14079593099651,0.02077562326869863,-0.004997368421052706,-0.009712660522182406,0.18421052631578952,1.063711911357341,-0.22928528965429676,0.099772354570623,-0.010857822631578806,-0.0033797783933519794,-0.1103031702062173,-0.0036187479224376487,-1.0518201436231245,0.14929069084193758,0.00370390539746491,0.0010530755023784076,-0.053051288508352244,0.20909930328212875,-0.03782841782646169,0.687729624255009,-0.0002732234186140795,0.0036236611265003673,0.11819720753238756,0.0025621652816251294,0.3793430431278689,-0.13055665479488185,-0.0057449610869278675,0.000827871764487301,-0.07837026777469992,-0.1938398628149321,0.15092448819423282,-0.5979629433287197,0.004206452611898268,-0.004999427845930669,0.042905600990781036,-0.0031509537659939217,0.8023150290153852,-1.1972050172741135,-0.009469666811914473,-0.0018982473646201228,-0.0021086868561112997,-0.08543683276790444,-0.3846891635645414,-5.783310057930532,-0.05400039179170036,-0.009744247408882951,-0.09613826726287433,-0.005045402626910262,-11.229558860597152,0.6479015875852618,0.006301507908140489,-0.0009689846744663391,0.06686176391743368,0.5573526345575314,-0.025871068317521714,3.0964891437539137,0.013642014824219098,0.006697600005957218,-0.02663288456001347,0.002649500878682265,3.7255130651129904,1.5968163551948806,0.02318194861690922,0.005366483598601452,0.0036966954079044978,0.3603448948538878,0.18900324803935925,7.555886811644106,0.026210826828235268,0.023055363622176306,0.2706984055765805,0.01154505235847215,8.240518239307765,-0.7446487030974563,-0.024236732561067776,-0.003940116660936935,-0.08981364895492318,-1.304457315537648,0.06078695624264623,-3.3967376191261667,0.013257285782199259,-0.022420230420549053,-0.24694766221774542,-0.01384918272475444,0.4394784147801413,-2.691020313942751,-0.039014525623268716,-0.001255770897476364,-0.10852377654662974,-1.6822483841181903,0.019373623466964047,-12.661573454293638,-0.014576724542398398,-0.040151338873499594,-0.44683219836872873,-0.018863825946445027,-10.052654753175505,,,0.4725490196078431,1.0735294117647058,0.47058823529411764,0.029411764705882353,0.6029411764705882,-0.1323529411764706,0.7644586143305192,0.014469400269206498,0.019528223798618263,0.6976630375050227,0.2203862804920832,0.26009805820183357,1.462121651835542,0.48048433869391677,1.9539832810352233,1.5050780712465248,0.34461685776953044,0.10428835201916795,0.0,0.4489052097886984,6.188643744526315,700.0,223.41470000000004,97.0,188.0,6350.768795911729,2741.3270649999995,49.865775001829014,225.73090000000002,137.58333333333331,283.07107599999995,7104.811652420227,789.0,236.562,117.0,180.0,5752.366096746099,2904.518412999999,62.494554479999984,241.353,110.11111111111111,291.01730799999996,8790.118425732655,1053.0,398.4920000000001,181.0,220.0,10614.819441662536,3764.0114130000006,88.25801241333896,404.12760000000003,173.50000000000006,498.77834000000007,11882.265537512576,1121.0,498.17290000000014,201.0,200.0,13823.13729558873,3890.163481,100.46674298297998,504.0221,214.94444444444446,630.128476,13130.645035885773,999.0,519.42,181.0,161.0,14494.228333923678,3283.9056759999994,98.25696118098,525.6974999999999,226.2777777777778,662.3336080000001,12231.840511191509,824.0,525.294,166.0,150.0,15847.293598189364,2676.1145970000002,85.87069123795997,529.3046,203.50000000000003,680.6267560000001,10213.640591432159,736.0,402.83389999999997,141.0,128.0,12064.59746239542,2521.408188999999,69.53544436031899,406.2427,170.83333333333337,519.6810839999999,8579.732255367922,679.0,331.0049999999999,123.0,88.0,9129.586427530086,2298.400768,60.856327663886006,333.9055,163.16666666666669,419.560672,7960.452634751395,586.0,288.606,107.0,62.0,7721.543644811394,1916.2796179999996,59.293349365094016,292.1440000000001,135.66666666666666,364.70666400000005,7580.810486351033,268.8421052631579,3.5255394736842094,0.6372300808661806,17.394736842105257,116.84210526315793,53.69489421615504,1283.9407607631579,8.149812014712975,3.4296342105263125,44.418859649122794,1.8992350526315775,1867.3502453778674,0.7894736842105479,-0.18990000000000284,-0.36908109984293147,7.000000000000002,40.42105263157896,-8.712841006863277,3.791349473683674,-0.41259725999999464,-0.12843157894737522,-4.191520467836257,-0.13751242105263065,-39.96916545767873,9.85318559556788,0.24445775623268406,0.06950298315697491,-3.501385041551248,13.800554016620497,-2.496675576546471,45.3901552008306,-0.018032745628529245,0.23916163434902424,7.801015697137579,0.16910290858725854,25.036640846439347,-10.966759002770075,-0.4825767313019409,0.06954122821693329,-6.583102493074794,-16.282548476454295,12.677657008315556,-50.228887239612455,0.3533420193994545,-0.41995193905817624,3.604070483225607,-0.2646801163434894,67.39446243729236,-106.5512465373961,-0.8428003462603881,-0.16894401545119092,-0.18767313019390566,-7.603878116343496,-34.23733555724419,-514.7145951558173,-4.806034869461332,-0.8672380193905826,-8.556305786395816,-0.44904083379501325,-999.4307385931465,60.25484764542935,0.5860402354570654,-0.09011557472536953,6.218144044321332,51.83379501385042,-2.4060093535295195,287.97349036911396,1.2687073786523761,0.6228768005540213,-2.4768582640812524,0.24640358171745064,346.4727150555081,113.37396121883653,1.6459183518005545,0.38102033550070313,0.26246537396121933,25.584487534626035,13.419230610794507,536.4679636267315,1.860968704804704,1.6369308171745178,19.219586795937214,0.8196987174515226,585.0767949908512,-40.9556786703601,-1.3330202908587276,-0.2167064163515314,-4.939750692520775,-71.74515235457064,3.343282593345543,-186.82056905193917,0.7291507180209592,-1.233112673130198,-13.582121421975998,-0.7617050498614942,24.17131281290777,-129.16897506925204,-1.8726972299168985,-0.06027700307886548,-5.2091412742382275,-80.74792243767314,0.9299339264142743,-607.7555258060946,-0.6996827780351231,-1.9272642659279804,-21.44794552169898,-0.9054636454293613,-482.52742815242425,0.7454918886727903,0.6218023739210672,0.48048433869391666,0.3547421609346792,0.31479340180835297,0.18594247769001454,0.22049126214486833,0.11587032446695368,0.1465010790772647,0.06683073121888532,0.0910513697449124,0.03127586233977519,0.06514966546784288,0.016729733714181492,0.04317950458626711,0.01080819608133178,8.022017756370381,5.693071288373141,3.543768343118649,2.191905260585388,0.39404940380608416,-0.37123966358783533,3.1362009042562566,0.97789516106021,6.021947971483534,0.9872569003884876,14.54406909825309,10.954412017914509,16.010061880482976,11.704952294687176,1.9837385996308345,0.7518749377059597,3.488983090328896,2.2415744251934018,7.008269069858743,1.3833201865795326,3.701910781494201,2.4374409028120714,20.889937561870592,14.702710549716702,0.26510414108116287,0.5630007328016087,0.7120826239614805,0.8096873731274642,0.8096873731274642,0.8096873731274642,2.1373193277274694,344.1871368924923,0.0,1.0,6.0,0.0,5.0,0.0,1.0,0.0,0.0,3.818401834640832,2.212048852920261,1.4081519737980774,0.8818361843243929,0.8818361843243929,0.8818361843243929,206.02658034229995,783.6039195764174,42.71493141681797,20.621155778326774,40.29266257374611,,11.0,286.0,0.0,4.794537184071822,5.907179729351506,17.795594172293132,19.634269217737724,0.0,24.26546827384644,0.0,24.064172734238056,5.733667477162185,8.033333333333333,18.25,8.0,0.5,10.25,0.0,0.02745098039215687,-2.25,0.09736842105263138,0.031459330143540576,-0.0659090909090908,0.07735294117647051,0.13467307692307673,0.0,0.5307017543859651,0.8156862745098037,0.43333333333333374,0.49924242424242454,0.7383333333333332,12.995796443618827,0.24597980457651047,0.33197980457651044,11.860271637585386,3.7465667683654145,4.421666989431171,24.856068081204214,8.168233757796585,0.5793269230769232,0.2157676348547718,0.0,0.23651452282157676,0.46153846153846156,0.28878143381091004,-0.4639858110143631,-0.04124848530245131,-0.012210152921430604,-0.03866548425119692,0.7112185661890899,1.1427165482452502,0.04633425818371263,0.030071488111717108,0.04395063647097116,-3.1705666469320466,1.02858261550509,0.9445501061800916,1.7479671055924544,0.8676248108925873,0.6249999999999998,1.549487186672459,1.0336083218333088,1.2772562020601836,0.9304218418260046,0.7620422940837654,0.9081437108225238,1.18285414105719,0.9904991575899954,0.942500932758489,1.022083312918742,1.4986246733599236,1.0579545454545451,1.2036211288768486,0.9927351763275194,1.058809992222049,0.9368350436003043,0.528149677470833,0.8791541103439198,1.0306292684238996,1.021554657493381,1.1102299528983008,1.0776644776616928,1.3294251134644484,1.1403769841269837,0.9600391464174711,1.0202857878228402,0.9734721631531926,1.0927350608168578,0.8529500848311021,1.0975034506241643,0.9724800319808964,1.1551410873448127,1.1469984189459113,1.0489742350862334,0.8364922062248215,0.9731273408239697,1.2616583883737205,1.1563132643929142,1.2626201579976344,1.1446107154422467,1.3220039995673147,1.2087867568546948,1.2237957607960175,0.8671996699253121,0.948531110183019,0.884873758927597,0.6289753224993089,0.7576164874551969,0.8493026807118954,0.8652287809333978,0.8264375819831431,0.9403009108508155,1.0704582876567494,0.9884114300689217,0.8362107254106586,0.728842908665777,0.684833159875274,0.7308597362188184,0.9287251496878399,0.8474178403755867,0.7446442032052284,0.7305800811829094,0.7835104743479053,0.6860841306084087,0.587582965082522,0.6769688141691331,0.7604422889927553,1.1698316366483945,1.7668744034897774,1.451413550083883,1.4696190345206992,1.8078787878787874,0.9149414292658409,1.1569449278660822,0.8933534035711493,1.6930899141042783,2.262927672179709,1.9936708127109333,0.9364237629289237,1.4192810297572434,1.7269927894573802,0.9652067020873519,1.3072680282400408,1.7482638888888882,1.0423155417914445,1.4095664167747728,1.118514096932256,1.7107582441276157,2.224894059080063,1.8547712995217156,1.2187717262216762,3.5,0.05774920926436078,2.000000000000001,0.875,0.4622222222222223,0.375,0.2644897959183673,0.1371527777777778,0.06979087931468882,0.09125000000000003,2573.667817290543,3082.6459153970472,1543.0137766740518,1326.8765607724874,13.627377519658271,0.4671585417951865,7.261231709082208,0.8767308447977789,1.0,0.46153846153846156,1.429525678802753,3.0358786605233243,3.8397755396455078,4.366091329119192,4.366091329119192,4.366091329119192,0.20588235294117646,0.014437302316090195,0.09523809523809527,0.04166666666666667,0.028888888888888895,0.028846153846153848,0.020345368916797488,0.011429398148148149,0.006979087931468881,0.013035714285714286,0.46674902917920014,15.058823529411764,8.16326530612245,5.444444444444445,102.79710657114113,1.0,3.7051080340232283,75.26605489391264,,63.07218365626081,61.589675322251594,60.33099657072298,63.08488178850064,86.69590335224254,62.4423799096901,63.1615522291539,79.34098365052259,0.002936570086139469,-0.0538640969467167,-0.5791959779131003,0.4024205748865358,0.3459459459459459,-0.1622657262679152,0.002952900624036692,-0.05062659841173352,-0.037447602590734035,-0.09436353163827864,-0.07240410862367648,-0.021404214638690224,0.021101777366460243,0.03992251573248835,0.06279814825437141,-0.11589419153715684,0.06800436800436797,-0.026771258206018653,0.0203543080181961,-0.0012739545266309653,0.04014979859495938,0.10111682113656935,0.051263944695444555,0.007719513612692441,-0.018453779319088624,-0.06192201872444936,0.049368553047206054,-0.17120524457892095,-0.06304161304161303,0.10680960704184297,-0.017697539123989903,0.019613360279177396,-0.05539315462922541,0.03670541861112091,-0.06304445726286625,0.016326862717933908,-0.16922122601251174,-0.10206873062655214,-0.11319835962155841,-0.0046065715888422365,-0.027786213179471612,-0.2722454048723023,-0.1711650481995246,-0.2517867754961809,-0.10796527524745231,-0.08224556381787643,-0.10094869487425245,-0.22851804997960748,0.09157888532430677,0.06792075434035753,-0.05778355218207825,0.1460641257137281,0.1812651361038457,-0.018309014486707794,0.09164487261289939,0.0636084074558354,0.07420873032034436,-0.022784232221965618,0.053011360152827085,0.07581303872945717,0.22570505255495374,0.24986645420310383,0.3200200098364158,0.0080756855809593,0.11719324958761572,0.13375803286962776,0.2236269052411837,0.1222128090408498,0.25545109590805387,0.2315804478810658,0.23099404626829256,0.16769199772179305,-0.10525379084502025,-0.2612354348023026,-0.23496133910076022,-0.1962040984733875,-0.42424242424242414,0.043019068590055665,-0.10053114089942375,0.061814537416825834,-0.24841388430462402,-0.2112618657570523,-0.27709521410289434,0.008943249828457333,-0.3803673975463324,-0.4205177632389223,-0.07488550138630848,-0.23707766011094317,-0.5471096096096095,0.013710757838184472,-0.3747367526342687,-0.06796666372318126,-0.44487277171137224,-0.38226158150250966,-0.3774284730958808,-0.2045684153608631,7.5346307552594425,8.270956754956645,1.3103706971044482,13.095368060744825,25.05830816852459,29.922373064785013,30.452899380574493,30.452899380574493,30.452899380574493,33.2177157775988,25.586327211190923,5.858486582082017,1.772901984325855,0.0,7.631388566407873,3737.4775939431624,3537.9063996818927,294.66103982659934,14.0,21.0,24.0,24.0,26.0,24.0,20.0,16.0,14.0,235.168462292,17.0,4.343805421853684,5.117993812416755,5.916202062607435,6.70808408385307,7.511524648390866,8.309676895987726,9.116359308505288,9.917932716967623,10.727070714875772,0.5614035087719299,0.9622105263157898,1.1432142665171583,0.5156041172784596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6273976205483772,0.948503611971104,0.9905891823513633,0.5704705721662184,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,4.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,15.950365812018994,0.0,0.0,0.0,5.907179729351506,4.794537184071822,0.0,0.0,0.0,13.847474399381248,37.35498108567159,24.340350578205708,0.0,140.84143346836436,-226.2902634351269,-20.117275967955667,-5.955006932503338,-18.85752195292724,346.8680138106643,557.3136561412905,22.5976554488623,14.666148845823434,21.435140620818867,0.45454545454545453,0.881863689465667,0.24816557790457144,67.9278277031111,0.1561120766465724,47.96949736829158,0.11813631053433307,6.0,0.35294117647058826,0.2723981371962066,0.5784909667190203,0.7316746524812275,0.8319648695479505,0.8319648695479505,0.8319648695479505,1.3403999999999996,,0.6785714285714287,0.8427175430432758,0.8488829422512447,0.6767661145452564,-2.636839718884606,0.7422735618115056,0.6692837795551935,-1.356968362788312,70.97560000000004,4.794537184071822,0.0,10.216698334856808,0.0,13.847474399381248,31.912693100812486,29.828919765543436,0.0,0.0,3.5553480614894135,0.0,4.77912349311153,0.0,6.19644412779452,0.0,7.692113339595466,0.0,9.225721474014485,21.333333333333336,6.947182854623331,0.0,0.0,0.0,0.0,0.0,1.322627824533038,0.0,36.564000000000014,0.0,11.743677248677248,0.0,0.0,0.0,0.0,0.0,-0.0442998866213149,43.44214212765202,11.050456081168516,5.687386274683562,0.0,36.98611508385229,0.0,0.0,24.205463075150064,24.26546827384644,0.0,0.0,0.0,19.59295645658146,23.841109580838335,21.12380470442878,150.5321097878254,,126.06453537974852,123.08020740414514,120.56212456000463,126.09014403411359,174.3224560170326,124.79743351799063,126.24436519012484,159.16089731144112,21.12380470442878,150.5321097878254,,125.46579588395022,122.33663310145995,119.81311019919475,125.49299746245603,176.0286464233697,124.14248625756875,125.65382067875265,160.0389356638336,4.522631175757888,116.27408130912795,,98.7442808794049,96.32926550357915,94.21297620680896,98.76477492637136,137.20493721429062,97.71463062031319,98.89032017373997,125.32450769188864,1.24257674731934,8.85482998751914,,7.415560904691089,7.240012200243832,7.091889680000272,7.417067296124329,10.254262118648978,7.341025501058272,7.426139128830873,9.362405724202418,2.261315587878945,75.26605489391264,,63.07218365626081,61.589675322251594,60.33099657072298,63.08488178850064,86.69590335224254,62.4423799096901,63.1615522291539,79.34098365052259,36.04313725490195,0.0,4.23272619516126,0.0,0.0,5.564340470386195,0.0,37.6423889293518,3.5705200895785314,2.8961007180650036,0.0,0.0,0.0,2.2671244855967077,0.0,0.0,0.0,21.677881742316302,430.09325256474546,54.32197579450462,115.36338909988632,145.9114705065293,165.9114705065293,165.9114705065293,165.9114705065293,217.0,101.66864966545825,57.61619471428328,48.44875049600542,58.36,58.36,0.8333333333333334,6.487969365897019,5.087462841250339,3.4524683704188055,4.061074148796687,,4.058283825473526,4.058234781102113,4.058732610968967,4.058285781207502,4.058807613347466,4.058290516558024,4.058283646565666,4.0585149608837074,0.20308637473051797,0.23888671463509922,,0.23872257796903096,0.23871969300600668,0.23874897711582158,0.238722693012206,0.2387533890204392,0.23872297156223674,0.2387225674450392,0.23873617416962986,1.7697176959656298,1.9320757583528279,,1.9313884322263404,1.9313763471505114,1.931499011156274,1.9313889141378056,1.93151749024635,1.9313900809722808,1.9313883881417293,1.931445384583132,201.77999999999957,141.32942410091238,75.58655056399415,,75.45304150185737,75.44743312040914,75.45751652522885,75.45313234056995,75.65026272341207,75.45121400017449,75.45333331498158,75.5579555519928,8.313495535347787,4.44626768023495,,4.43841420599161,4.438084301200538,4.438677442660521,4.438419549445292,4.450015454318357,4.438306705892617,4.4384313714695045,4.4445856207054595,5.481721757580127,4.855906615828444,,4.854138746952706,4.854064414761705,4.854198053914807,4.854139950862529,4.856749164171035,4.854114526274808,4.854142614425164,4.855528236050346,0.0,14.010801734273954,2.8961007180650036,6.8869682949192335,-0.0442998866213149,6.947182854623331,0.0,7.803246284739792,0.0,241.38248086382788,68.68969767084208,-110.36389930457153,-9.811385543091346,-2.904313139593987,-9.196991608714294,169.17080729437362,271.8071351977235,11.021090048766563,7.152819347308512,10.454120584527825,618.0,21.0,0.8951682068889268,0.3887032975146728,0.0,0.0,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.13144585576580214,0.02992639636637849,12.673362107437434,10.570640356658142,8.168233757796584,6.030616735889546,6.610661437975413,3.9047920314903055,5.29179029147684,2.7808877872068885,3.516025897854353,1.6039375492532475,2.3673356133677226,0.813172420834155,1.5635919712282291,0.4015136091403558,0.8635900917253422,0.2161639216266356,1.981054205485073,0.8060646353297619,2.2692751883412248,0.8192051416571484,2.5441371083143407,0.664210309581299,58.40070764023626,35.24975498097144,25.089975877942678,22.75070664901988,22.75070664901988,22.75070664901988,76.0,83.0,39.81465299999997,23.645346999999994,0.15789473684210525,17.04,6.694444444444445,4.111111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,38.0,0.0,1.0,38.0,6.0,1.0,4.0,34.0,7.0,17.0,31.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,3.0,2.0,0.0,17.0,4.0,0.0,3.0,1.0,0.0,1.0,6.0,0.0,0.0,0.0,0.0,1.0,3.091042453358316,4.150055169236106,3.5115454388310208,3.917010546939185,4.253838086459854,4.685020567475825,4.646791860678911,4.4623096980750505,4.003918270132401,4.017508513274123 +71329,CN(CCOc1ccc(NS(C)(=O)=O)cc1)CCc1ccc(NS(C)(=O)=O)cc1,0,30.178571428571427,6.265391071428573,3.0535714285714284,7.015873015873017,163.88402861084685,119.51013176785715,1.5832083648379107,6.329162500000002,5.644127841465804,7.848562821428571,212.34880555165182,34.0,6.350431578947369,3.508771929824561,4.625730994152047,146.47425620307195,130.5330071929825,1.901261971052632,6.523029824561404,2.492527615334633,7.892566596491226,259.83556967214986,22.74,6.43622,3.12,4.8933333333333335,157.59940611514276,83.52370644000003,1.5019433611503703,6.529831000000001,4.268395061728394,7.98143916,205.69193072357857,17.070866141732285,6.333905511811024,2.606299212598425,2.9133858267716537,161.77407975561087,59.75517079527559,1.322729960930614,6.400355118110238,3.195392242636337,7.912103653543308,174.93974280238848,15.701492537313433,5.843082089552238,2.4029850746268657,2.5970149253731343,159.20397350006783,55.563595746268646,1.2802080902751198,5.939664179104479,2.6011608623548916,7.477644238805969,159.80633155670938,14.014492753623188,5.949275362318842,2.246376811594203,2.4009661835748792,162.97971284885898,48.592043753623194,1.158808594072174,6.018805072463767,2.9055063517623894,7.59989388405797,147.37811060384215,13.647058823529411,5.958058823529413,2.2857142857142856,2.212885154061625,162.7589881198497,46.98663771428571,1.1619972257291764,6.027606722689075,2.655073140367258,7.580960739495797,148.83764455423957,14.179245283018869,5.849102830188681,2.349056603773585,2.459119496855346,161.50905743467013,49.44779299999998,1.2071730263752072,5.929441509433961,2.537561146051712,7.470492566037736,149.6402439715022,13.902912621359222,5.919123300970875,2.320388349514563,1.98705501618123,162.9797599038082,47.57161759223302,1.1653336735900195,5.993177669902911,2.462918015102481,7.57923545631068,144.69522281582996,12.718112244897958,0.14948542729591832,0.017082603812156313,0.6399872448979591,4.117772108843538,1.5417416527966594,57.33662516039541,0.3238670682451425,0.13884078443877546,2.403175390526581,0.09591812244897954,51.26360514525915,3.8100832438238457,-0.009477156619226611,-0.009178469334432003,0.03513806838524884,0.22649132752516196,-0.37660457529075686,16.406229534466753,-0.044477848390603036,0.0007985326038310429,-0.6335374432062912,0.011094786698890078,-0.29616111388877897,-1.5016836734693886,0.04029605484693881,0.003206986332049197,-0.09034438775510206,0.4428231292517005,-0.03838157848810307,-6.262614544859697,-0.038460034810349854,0.03390741198979592,0.8980426429831191,0.021288256122449,-0.6139780038855968,-2.253264100915957,-0.0508975617166157,-0.0027397765172698764,-0.020049112164550874,-1.2482557983823452,0.18309168295857392,-10.581469069984836,0.02017308354700552,-0.05030776981560334,-0.5704592398833743,-0.028239289771814204,-6.164105165791958,0.32586430094425856,0.009980470891714848,0.00014280066942229955,-0.029646093512031665,0.43455553863336394,-0.21915084777491883,1.5363003140182387,-0.027753540569436783,0.010652525795766038,0.21840133234056477,0.0032630870392932926,-2.5074965212099536,-0.0157312925170065,-0.0025164573166223288,0.0015458553169945906,0.010504473528541853,-0.042461549837326154,-0.06546128162763533,0.11338063748243939,0.00046939294874669656,-0.0015395033828749074,-0.012417263380571374,-0.004724473898254973,1.5038723961219929,-0.07375450180072003,-0.017933266431572642,-0.0033441491913312163,-0.03974714885954383,-0.5588485394157664,-0.08820913940984976,-0.6407171585946864,-0.007015685259940559,-0.015889523934573827,-0.24829468824566858,-0.008436398259303738,-3.1672750185537812,0.497521178282634,0.032377847636696135,0.0030012590663270325,-0.044636840585290716,0.3196717366191761,-0.06001294870786135,2.1199737904132188,-0.022398440345624344,0.028613814617828227,0.3047532488420478,0.021913176068540582,-3.59831107222328,-0.6452967109173765,-0.0060138773652665236,-0.0005008805221658653,-0.0021578412918565495,-0.1889309931092177,-0.09408849437857536,-2.866786996733826,-0.020971342185556192,-0.005460045881216579,-0.0804746935731422,-0.0053321609371904345,-2.1689215353986953,,,0.48390804597701154,1.2844827586206897,0.6724137931034483,0.05172413793103448,0.6120689655172413,0.0603448275862069,0.8117004813204716,0.03152691191389102,0.03745794639664964,0.9989914761900406,0.2459227274008478,0.2195922076636438,1.810691957510512,0.4655149350644916,1.9792819378103839,1.3216190715761624,0.20941832772990346,0.3022780598317286,0.0,0.6576628662342214,7.877485945785728,1690.0,350.8619000000001,171.0,392.8888888888889,9177.505602207424,6692.567379,88.659668430923,354.4331000000001,316.071159122085,439.51951799999995,11891.533110892502,1938.0,361.9746,200.0,263.6666666666667,8349.0326035751,7440.381410000002,108.37193235000002,371.81270000000006,142.07407407407408,449.87629599999985,14810.627471312542,2274.0,643.622,312.0,489.33333333333337,15759.940611514276,8352.370644000002,150.19433611503703,652.9831,426.8395061728394,798.143916,20569.193072357855,2168.0,804.4060000000001,331.0,370.0,20545.30812896258,7588.906691,167.98670503818798,812.8451000000002,405.8148148148148,1004.837164,22217.347335903338,2104.0,782.973,322.0,348.0,21333.33244900909,7445.521829999999,171.54788409686606,795.9150000000002,348.5555555555555,1002.0043279999999,21414.048428599057,1934.0,821.0000000000001,310.0,331.3333333333333,22491.20037314254,6705.702038,159.91558598196,830.5950999999999,400.95987654320976,1048.7853559999999,20338.179263330218,1624.0,709.0090000000001,272.0,263.33333333333337,19368.319586262114,5591.409888,138.27766986177198,717.2851999999999,315.9537037037037,902.1343279999999,17711.67970195451,1503.0,620.0049000000001,249.0,260.6666666666667,17119.960088075033,5241.466057999998,127.96034079577197,628.5207999999999,268.98148148148147,791.872212,15861.865860979235,1432.0,609.6697000000001,239.0,204.66666666666669,16786.915270092246,4899.876612000001,120.02936837977201,617.2972999999998,253.68055555555554,780.661252,14903.607950030486,712.2142857142857,8.371183928571426,0.9566258134807535,35.83928571428571,230.59523809523813,86.33753255661293,3210.851008982143,18.13655582172798,7.7750839285714255,134.57782186948853,5.371414857142854,2870.7618881345124,217.17474489795921,-0.5401979272959169,-0.5231727520626241,2.002869897959184,12.910005668934232,-21.46646079157314,935.1550834646049,-2.5352373582643732,0.04551635841836944,-36.1116342627586,0.6324028418367345,-16.8811834916604,-150.16836734693885,4.029605484693881,0.3206986332049197,-9.034438775510207,44.28231292517005,-3.838157848810307,-626.2614544859697,-3.8460034810349857,3.3907411989795917,89.8042642983119,2.1288256122449,-61.39780038855968,-286.16454081632656,-6.463990338010194,-0.3479516176932743,-2.546237244897961,-158.52848639455786,23.25264373573889,-1343.846571888074,2.561981610469701,-6.389086766581624,-72.44832346518854,-3.586389801020404,-782.8413560555787,43.665816326530646,1.3373830994897895,0.01913528970258814,-3.972576530612243,58.23044217687077,-29.366213601839124,205.864242078444,-3.7189744363045287,1.427438456632649,29.26577853363568,0.4372536632653012,-336.0045338421338,-2.1709183673468972,-0.34727110969388136,0.2133280337452535,1.4496173469387756,-5.859693877551009,-9.033656864613675,15.646527972576635,0.06477622692704413,-0.2124514668367372,-1.7135823465188496,-0.6519773979591863,207.53439066483503,-8.776785714285683,-2.1340587053571443,-0.39795375376841474,-4.729910714285715,-66.5029761904762,-10.496887589772122,-76.24534187276768,-0.8348665459329265,-1.8908533482142853,-29.547067901234563,-1.0039313928571447,-376.9057272079,52.7372448979592,3.43205184948979,0.3181334610306654,-4.731505102040816,33.885204081632665,-6.361372563033303,224.7172217838012,-2.3742346766361804,3.033064349489792,32.303844377257064,2.3227966632653017,-381.4209736556677,-66.46556122448978,-0.6194293686224519,-0.051590693783084125,-0.2222576530612246,-19.459892290249424,-9.691114920993263,-295.27906066358406,-2.160048245112288,-0.5623847257653076,-8.288893438033647,-0.5492125765306147,-223.39891814606563,0.7411501056464257,0.6339715196160569,0.44999777056234186,0.4247663607406753,0.3313451659622578,0.24686676322412393,0.19784776167489104,0.12565041447655456,0.1320032664291076,0.0733274661760125,0.08827908172807374,0.039691606048309215,0.057776191027532675,0.023902477616419594,0.03971526754053731,0.015117616223047591,16.01448689749097,5.69314439322547,3.5839779604373607,2.192437259298155,0.4422921295220837,-0.5233473076433637,4.039532296913178,0.9661738529817077,6.020130916698848,0.6155546619207461,14.544638835226861,10.317584981001856,32.06772507799903,11.704629693201616,2.9576817532883615,0.7593345120079151,3.5402041343500086,2.242299862605411,7.01634837717379,0.29857969602113776,3.7716715055611503,2.4382357202330542,24.443540055047066,14.700234304430845,0.28776707716444266,0.5526183622710501,0.7269546365968207,0.8093800649579012,0.8270426567495612,0.8329301873467811,1.501219833935582,989.1450586689966,0.0,0.0,3.0,0.0,11.0,1.0,1.0,0.0,0.0,4.06173416590075,2.4551226482367094,1.3975832590444721,0.8975832590444703,0.7904404019016127,0.754726116187328,166.83106277574694,1876.2852979787885,70.29035411554706,33.50509460676408,69.26648457748223,,19.0,885.0,20.046582306815168,16.835593968657875,0.0,23.731166347163946,37.58532429347096,0.0,36.39820241076966,19.18040611960041,14.344099459754656,4.736862953800049,14.033333333333335,37.25,19.5,1.5,17.75,0.0,0.01609195402298845,1.75,0.17007703081232506,0.05409663865546255,-0.11598039215686251,0.03819058212829063,0.1714742268041234,0.0,0.6065476190476188,0.8919540229885053,0.4364705882352937,0.5524509803921562,0.8537634408602147,23.539313958293675,0.9142804455028397,1.0862804455028396,28.970752809511175,7.131759094624586,6.36817402224567,52.51006676780485,13.499933116870256,0.5425257731958766,0.2019002375296912,0.1187648456057007,0.171021377672209,0.3684210526315789,0.386251316495345,-0.9882533756173196,-0.05706427620559676,-0.01764738170745214,-0.05201333555880631,0.613748683504655,1.5703226949686557,0.03878640184788885,0.02804147669586886,0.04244115391807178,-5.398809103050766,0.8995912708257456,0.7309992229991183,1.607755168011184,1.3192423010690655,0.726465535720216,1.576140658075779,0.8871077544541258,1.4838079663556005,0.6603403643681707,0.8138769504373803,0.5492238780109467,1.1067460187489822,1.1931100190552602,0.7228849051262803,1.084743096455659,1.4425510712506229,0.9287437618310102,1.1872247592535674,1.1732740034920603,1.2233609028085262,0.7323904863681995,0.48130457198346194,0.7594905175821727,1.004857997129129,0.9315518941939499,1.457861125281702,1.354168873972369,0.9062768499229077,1.3726505663302153,0.8897568499772281,0.9546908699090103,0.7351417711764243,1.4588370765980234,1.2758663636276928,1.4134168793722974,1.0425738280741323,0.8618538537879253,0.5961413134236536,0.8056061057171251,0.9047438443061228,0.6697552505926742,1.1161875031114403,0.866996065611502,1.053014425999012,0.613748713844535,0.4329256202693773,0.6043152218781785,1.0837526205646242,0.8466654748044693,0.92269773662544,0.8000072419420476,0.8173566430536602,0.9601019056811294,0.9387732347365412,0.8550680418967186,0.8722282533137996,0.9284798883576055,0.8416623032148522,0.955626856911926,0.9546785936266121,0.6956644858324436,0.9718064060570127,1.0393199934924124,0.8833787625663121,1.0815491916952633,0.9648608908216485,0.7237827282802076,0.7765057836736801,0.978712718643273,0.8343467909433048,0.9196194709308146,1.024940740613655,0.7423698537078282,0.4479360086908328,0.6657785924464351,0.8976130712318208,0.7194147079546597,0.9872748213920075,0.759733791028327,0.9274833796466537,0.4871600024459567,0.277836332168101,0.39337506347467033,1.0773216091403752,0.9675486094139023,0.8959462761728003,1.057694327883448,0.8790592150773265,0.9382289698312372,0.9891922851387885,0.9726437818626157,0.9986410120090522,0.9103532361269937,0.6787003173264684,0.8995293275010305,1.0372749602971683,9.5,0.14039383736353434,2.4444444444444455,1.5,1.4844444444444447,0.75,0.6669387755102041,0.28645833333333337,0.2587553539934492,0.23125000000000007,5977.081536135758,6754.118336711477,3440.2156097480974,3167.3597053671347,21.23005437227233,0.48760204892077025,10.878236361652986,0.9516081161014919,1.0,0.3684210526315789,1.745620756156853,3.3522322738208943,4.409771663013132,4.909771663013133,5.016914520155991,5.052628805870276,0.31666666666666676,0.005849743223480596,0.058201058201058226,0.04285714285714286,0.04366013071895426,0.0234375,0.02565149136577708,0.011935763888888888,0.011761606999702233,0.010511363636363638,0.5505324675580345,25.26222222222222,11.571428571428571,11.259964306960143,172.53774717809378,1.0,4.262597965221731,219.45681769002582,,160.12994782863407,170.24488483778532,172.577115152478,160.16302096469911,242.32544733698907,171.90563870559572,172.259832819926,218.92431703093152,0.2995793063040713,-0.06339853182120438,-0.5372991983751578,0.05490432608676651,0.05500336627146937,-0.2442721675240536,0.2861387374748935,-0.13733365553837884,0.005751426765981515,-0.26362513768396706,0.11566934814421104,-0.005777219784866572,-0.118074415805837,0.26956510461163247,0.18773404612750214,-0.1411659192825113,0.10753949406298392,-0.024894948137698932,-0.1092253777989278,-0.11875253331171837,0.24421795171251032,0.37369001302328625,0.22194196027734572,-0.011976879155218315,-0.1771696976349524,-0.3404851070590307,-0.16038401097379537,-0.031327362106642526,-0.30313863064484003,0.1187563964601026,-0.18454991099291035,0.06228815932509705,-0.3623414403696885,-0.23737728096423957,-0.29441036845602514,-0.12024330220876035,0.02562206518306075,0.066765510673878,0.008359420553948563,-0.04632294432173957,0.10553171160203116,-0.14214498737670328,0.026794397293536908,-0.08569423473593024,0.07672475950655175,0.09088031327281067,0.03401950492753842,-0.04891377643271049,-0.0012369204025005614,-0.016834131340714577,0.09049295610863081,0.01641356700822484,-0.010311777513411575,-0.042459306660678924,0.0019774557216310613,0.001449338308121535,-0.011088264799841875,-0.0051670233598100045,-0.04925527916549868,0.029336063896806732,-0.005799170535730067,-0.11996665331177941,-0.19576343443330665,-0.062106157859257334,-0.13571623796653406,-0.05721395620974617,-0.011174657678269737,-0.021662237219593514,-0.11444421031473373,-0.10331942030717224,-0.08795416386294676,-0.061784086577194045,0.03911910578413249,0.21659534459236354,0.17569096019140115,-0.06974645345065855,0.07763220697246279,-0.03892542476166496,0.03697416414870482,-0.06915936364567465,0.2060908452332034,0.12681273703259363,0.22845709975397577,-0.07019231406037879,-0.050738403506089984,-0.04023052597201715,-0.029321087562156598,-0.003371694215875506,-0.04588184778449974,-0.06102740638024697,-0.049999228045148794,-0.0647529318099193,-0.03932595096813424,-0.03348681660538671,-0.05559075595987297,-0.042309188541322804,15.050687461350144,12.19616000867443,0.9104803978158382,20.519287398927503,33.708249758212865,39.096856605375784,40.38678517680435,40.88774946251864,41.38799946251865,57.39917619650113,38.32695307570871,6.0731315041672005,8.76606373512013,0.0,19.072223120792422,21348.74960640485,21239.443870570827,590.3511728114136,50.0,42.0,41.0,50.0,58.0,54.0,61.0,58.0,48.0,441.13921296400076,30.0,4.976733742420574,5.739792912179234,6.6052979209482015,7.3833681469923835,8.244596756382498,9.031572493381526,9.888526187395968,10.681779786252992,11.535166293906125,0.6964285714285714,0.9892142857142857,1.1315294679410977,0.6564830453037097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6719783041060735,0.9757002801120451,1.0139683695765267,0.6167262692274144,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,4.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,9.636772684650527,12.356393797796823,0.0,20.046582306815168,0.0,9.444189728904176,16.835593968657875,0.0,0.0,12.13273413692322,55.43014750806985,24.464285361192275,12.511538367022808,283.2503886816975,-724.7176664651677,-41.84705067605852,-12.941386901163709,-38.14303507711409,450.0814514574444,1151.5676315136209,28.443303439488542,20.563707705600375,31.12344950036813,0.47368421052631576,0.758938394268032,0.19239699030923565,20.916435536948285,0.08962754117718402,9.548967392076024,0.24106160573196797,10.0,0.36666666666666664,0.30058792334641093,0.5772390905691648,0.7593425444454677,0.845440261342517,0.8638897721061706,0.8700396090273882,1.9828999999999997,,2.928571428571429,1.9363943580315661,1.367618695224865,2.924545835805908,-6.1177409141722485,1.8004130966952268,1.8059751887501885,-2.637788524677479,116.51300000000005,21.572456922457924,0.0,4.899909730850478,0.0,6.4208216229260096,48.69979485494224,54.09438803938988,0.0,5.749511833283905,4.110873864173311,0.0,5.43372200355424,0.0,6.898714534329988,0.0,8.424419791263883,0.0,9.982344942613622,39.0,14.070907729553944,0.0,0.0,0.0,0.0,0.0,2.8358173989469906,0.0,55.396,0.0,44.82280852164215,0.0,0.0,-6.547818007854255,0.0,0.0,0.0,63.36565020470147,14.181052682704227,11.374772549367124,5.749511833283905,60.99110882554642,26.467403929741177,0.0,5.563451491696996,48.53093654769288,0.0,0.0,0.0,36.76305053700774,37.630785029940114,34.49646891739759,438.9136353800517,,321.48597974264624,340.3562252370856,345.05991177425085,321.55360431355524,487.49232722022657,343.6871109907297,344.3951156268348,438.75821631175177,34.49646891739759,438.9136353800516,,319.16331964412416,338.5533753175389,343.7866116097312,319.23413692653685,490.76863558815046,342.01086431449625,342.71369045110185,440.4864225865404,4.570786881146018,347.5967575512684,,262.3976820804984,272.7539847823556,276.42669618939624,262.45662441503634,397.1576290856781,275.69678603262815,276.75023213749813,352.9096840181496,1.1895334109447446,15.134952944139714,,11.085723439401594,11.736421559899503,11.89861764738796,11.088055321157077,16.81008024897333,11.851279689335508,11.875693642304649,15.129593665922474,2.2853934405730083,219.45681769002582,,160.12994782863407,170.24488483778532,172.577115152478,160.16302096469911,242.32544733698907,171.90563870559572,172.259832819926,218.92431703093152,54.639215686274525,0.0,4.231161082565581,0.0,0.0,0.0,0.0,56.7822286962855,2.9073106235141077,4.846786588833043,5.691909379274202,0.0,0.0,2.141116683524241,0.0,0.0,0.0,34.5366710767352,556.5536892208215,97.75476234478377,187.72500733397007,246.94721312873537,274.9472131287355,280.9472131287355,282.9472131287354,521.0,133.0868342398595,176.7781509183204,63.85007513593504,121.57,104.81,0.9,7.58908288273674,5.906890595608519,5.042838593316989,5.305337540509332,,5.336034252285867,5.313665110275317,5.313026063289155,5.336047932768791,5.329695539386064,5.314754534239516,5.316659220940659,5.317288390072373,0.1738909859764479,0.18294267381066662,,0.18400118111330574,0.18322983138880405,0.18320779528583292,0.18400165285409623,0.183782604806416,0.1832673977323971,0.18333307658416065,0.18335477207146114,2.6826798734905335,2.7334241338974827,,2.7391934646792016,2.734992562072326,2.7348722900184015,2.739196028468102,2.7380048514722497,2.735197564133677,2.735555877104159,2.735674209289997,323.0400000000009,174.51293008576212,172.00311212601676,,168.17268610803578,170.89208979665005,170.99635692259605,168.1710414531465,169.1821802508877,170.77725725538372,170.56262719878816,170.61038568488874,6.017687244336625,5.931141797448854,,5.799058141656406,5.892830682643106,5.896426100779174,5.799001429418845,5.833868284513369,5.888870939840817,5.881469903406488,5.8831167477547845,6.226709573802473,6.212223307398103,,6.18970208197511,6.205743040476058,6.206352988721921,6.1896923023672,6.195686860952108,6.205070855238601,6.203813281221283,6.204093247599683,55.36150448974939,2.141116683524241,0.0,2.1632097550420326,0.672607643904958,14.070907729553944,3.063943578049577,2.072476275328007,-4.54576615515215,388.80797211833675,207.71652875207639,-531.4585399302463,-30.68777467666992,-9.49033107018297,-27.971502101591916,330.0590590097836,844.4812102625569,20.858380050916118,15.080021611831377,22.82381649358262,3074.0,35.0,4.226492059082182,2.188538412054175,0.7071067811865476,0.2041241452319315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.23570226039551584,0.05875986310140029,21.493353063746344,18.385174068865652,13.499933116870256,12.742990822220259,13.91649697041483,10.368404055413205,8.111758228670533,5.151666993538737,6.600163321455379,3.666373308800625,5.120186740228276,2.3021131508019343,3.1199143154867643,1.290733791286658,2.422631319972776,0.922174589605903,3.2804929800614486,1.6609601129802054,5.116431586659613,2.2033055609085666,6.2422436763856535,2.1822868818971433,96.70955927054858,59.12592580101337,41.31793242582694,37.178328614169104,36.09051292215265,35.138674191638245,144.0,155.0,62.843410999999975,44.984589000000035,0.32142857142857145,88.1,11.430555555555555,6.166666666666668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,56.0,0.0,1.0,57.0,12.0,4.0,10.0,47.0,16.0,30.0,41.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,6.0,2.0,0.0,29.0,10.0,0.0,3.0,5.0,0.0,2.0,11.0,2.0,0.0,0.0,0.0,2.0,3.713572066704308,5.490228215431148,4.330733340286331,4.483002552013883,5.002267044425739,5.481159621088721,5.458521118088372,5.763622475012218,5.858290233580273,5.37730182216264 +2477,O=C1CC2(CCCC2)CC(=O)N1CCCCN1CCN(c2ncccn2)CC1,0,19.661016949152543,5.981601694915254,3.0338983050847457,5.830508474576271,166.47850129316475,77.18577579661019,1.3506153906833729,6.041825423728813,3.599929378531073,7.531098847457624,195.0305666802016,22.64516129032258,6.254435483870968,3.7903225806451615,5.419354838709677,148.5444124896759,84.75755875806456,1.7048702195161298,6.391451612903227,2.577956989247312,7.667452064516125,243.73708861844696,17.73949579831933,6.1582411764705896,3.3361344537815127,3.8151260504201683,159.45546900131848,64.26379773949579,1.4193092415788733,6.247403361344535,2.3993930905695615,7.64188057142857,194.7556059069737,13.452941176470588,5.9369523529411765,2.6882352941176473,2.523529411764706,162.26416015436035,46.39438365882353,1.217766131934506,6.013774117647058,2.232843137254901,7.503861788235292,158.62670811856,11.556149732620321,5.824433155080215,2.2887700534759357,1.9304812834224598,165.71759837910048,39.19002541711229,1.0667514596277703,5.885102139037432,2.4369429590017817,7.439440363636361,134.95287734911696,10.910179640718562,5.955123952095807,2.191616766467066,1.658682634730539,169.56304636523382,36.09295900598801,1.009979569030827,5.993998802395211,2.538173652694611,7.586396407185628,128.44560388657308,10.870229007633588,5.86548854961832,2.3053435114503817,1.5572519083969465,164.1807221442426,35.4397214885496,1.0863336837188395,5.9278320610687,2.3171119592875318,7.485733465648856,135.35969040855946,10.419354838709678,5.7556290322580645,2.274193548387097,1.782258064516129,168.60165684353993,34.77750972580644,1.025804583688355,5.807009677419355,2.0178091397849465,7.385302774193551,126.35058870777317,11.81651376146789,5.779815596330273,2.477064220183486,1.8623853211009174,166.71667067711982,40.71373677064222,1.115315739583156,5.843354128440364,2.0290519877675837,7.388481761467889,142.36776268376963,7.232404481470842,0.10303160011490946,0.013048536526502988,0.5492674518816432,3.503590922148807,1.4541550397362046,34.49129083711576,0.2160444017595323,0.09897311117494965,1.2600665517571579,0.05726959839126687,49.22828420100622,0.6155998925040082,0.00582255516119776,-0.007350157497339055,0.14783478978046727,1.152505305297884,-0.5482224048867556,2.862005762392158,-0.026783449464319344,0.007703324035547975,0.05744529442472654,0.00071064108385613,-1.966219102326842,0.009441409427890684,0.01091296618618728,0.001968724349929095,-0.060448195365477436,0.11726080837390977,0.13245426414174966,-0.01275904207233034,-0.0012508150880432166,0.008647469938851855,0.08171663044227562,0.007138081996142317,-0.8538537110554071,-0.6835510417898842,-0.008850782567551554,-0.0012581560014595554,-0.093734052081045,-0.13858593710394237,-0.08857288153282124,-3.2729649928485727,-0.021912841431352262,-0.008509531912736328,-0.04402093859663947,-0.004665030494955809,-4.776049893156243,0.15516009751946008,0.0042282566783470674,-3.1476057502285426e-05,-0.03127597177650409,-0.09862400471927824,-0.15016477049629737,0.6723700608267642,-0.01657441998587085,0.004771255724352338,0.12306435854224695,0.00243172056096733,-1.6937222804005194,-0.5369817675765964,-0.01711210351488917,0.000946448704878266,-0.005372191554839181,-0.6911480113602155,0.2493118125356418,-2.428349120075276,0.019852083387500455,-0.016380946352053113,-0.2536556447575977,-0.009859504409738408,1.719942332791165,-1.3253013633443054,-0.018837913997688638,-0.001241055271620623,0.000997782948218358,-0.5989460780551347,-0.2508270490799057,-6.272122159537818,-0.026417452817102376,-0.01887770426590584,-0.22684750660254538,-0.010225343765830206,-7.745797770572818,0.3307447804209024,0.0052274212082178435,0.00042071832512164124,0.01729897786138578,0.16029644799881382,0.030036483193166368,1.5852537667661313,0.013353634141094532,0.0047938379775925855,0.004100456626293864,0.00323247596630557,2.5811151941075567,0.6021469102256284,0.00040015233416525474,0.0009127856058753619,-0.0418813532966642,-0.19104232939495927,0.2662316585956473,2.9064703098287166,0.02379544352727345,0.0018081670088474556,0.02201114481672898,-0.00034665639157786744,5.93668362840024,,,0.4702380952380953,1.0089285714285714,0.32142857142857145,0.0,0.6875,-0.36607142857142855,1.0611569208359404,0.00938630560650422,0.021672019892218505,0.653261857467509,0.17273451811855883,0.31481537493111894,1.7144187783034492,0.4875498930496778,2.0605626472544207,1.5493203176755312,0.3839163656371353,0.12732596394175422,0.0,0.5112423295788896,6.529623309016964,1160.0,352.9145,179.0,344.0,9822.231576296721,4553.960772000001,79.686308050319,356.4677,212.39583333333331,444.33483199999984,11506.803434131894,1404.0,387.77500000000003,235.0,336.0,9209.753574359906,5254.968643000003,105.70195361000005,396.27000000000004,159.83333333333334,475.38202799999976,15111.699494343711,2111.0,732.8307000000002,397.0,454.0,18975.200811156898,7647.391930999998,168.89779974788593,743.4409999999997,285.5277777777778,909.3837879999998,23175.91710292987,2287.0,1009.2819,457.0,429.0,27584.90722624126,7887.045222,207.020242428866,1022.3415999999999,379.5833333333332,1275.6565039999996,26966.540380155202,2161.0,1089.1690000000003,428.0,361.0,30989.19089689179,7328.534752999998,199.48252295039305,1100.5140999999999,455.7083333333332,1391.1753479999995,25236.188064284874,1822.0,994.5056999999997,366.0,277.0,28317.028742994047,6027.524153999997,168.6665880281481,1000.9978000000002,423.875,1266.9281999999998,21450.415849057707,1424.0,768.3789999999999,302.0,204.0,21507.67460089578,4642.603514999998,142.309712567168,776.5459999999997,303.5416666666667,980.6310840000001,17732.11944352129,1292.0,713.698,282.0,221.0,20906.60544859895,4312.411205999999,127.19976837735602,720.0692,250.20833333333337,915.7775440000004,15667.472999763873,1288.0,629.9998999999998,270.0,203.0,18172.11710380606,4437.797308000002,121.56941561456401,636.9255999999997,221.16666666666663,805.3445119999999,15518.08613253089,426.7118644067797,6.078864406779658,0.7698636550636763,32.40677966101695,206.71186440677963,85.79514734443607,2034.9861593898302,12.746619703812405,5.83941355932203,74.34392655367232,3.378906305084745,2904.468767859367,38.167193335248506,0.36099841999426113,-0.4557097648350214,9.16575696638897,71.4553289284688,-33.98978910297885,177.4443572683138,-1.6605738667877994,0.4776060902039745,3.5616082543330454,0.04405974719908006,-121.90558434426421,1.1235277219189914,1.2986429761562863,0.23427819764156232,-7.193335248491815,13.954036196495263,15.762057432868207,-1.5183260066073103,-0.14884699547714278,1.0290489227233708,9.724279022630798,0.8494317575409357,-101.60859161559344,-116.20367710428032,-1.5046330364837641,-0.2138865202481244,-15.93478885377765,-23.559609307670204,-15.05738986057961,-556.4040487842574,-3.7251830433298845,-1.4466204251651757,-7.483559561428709,-0.7930551841424874,-811.9284818365612,29.014938236139034,0.7906839988509016,-0.005886022752927374,-5.848606722206265,-18.44268888250503,-28.080812082807608,125.7332013746049,-3.099416537357849,0.8922248204538872,23.01303504740018,0.4547317449008907,-316.7260664348971,-89.67595518529161,-2.857721286986491,0.15805693371467042,-0.8971559896581431,-115.421717897156,41.63507269345218,-405.5343030525711,3.315297925712576,-2.7356180407928696,-42.360492674518824,-1.646537236426314,287.23036957612453,-173.614478598104,-2.4677667336972116,-0.1625782405823016,0.1307095662166049,-78.46193622522264,-32.85834342946765,-821.6480028994541,-3.4606863190404114,-2.472979258833665,-29.717023364933446,-1.339520033323757,-1014.6995079450392,41.012352772191896,0.6482002298190126,0.05216907231508351,2.1450732548118365,19.876759551852913,3.7245239159526298,196.57146707900029,1.655850633495722,0.5944359092214806,0.5084566216604391,0.4008270198218907,320.05828406933705,65.6340132145935,0.043616604424012766,0.09949363104041445,-4.565067509336398,-20.82361390405056,29.019250786925554,316.8052637713301,2.593703344472806,0.19709020396437266,2.399214785023459,-0.03778554668198755,647.0985154956261,0.6928260877743628,0.5958610822360023,0.4403676453351929,0.3460656020979166,0.2836541905776219,0.1996363331232218,0.18292376983614247,0.1184305583683535,0.12197455856233708,0.06935172059942918,0.0774150075320256,0.040168751722297884,0.05086408597332327,0.023661046962404154,0.03434346057630557,0.014797368351274142,8.02339446279783,5.777120483128949,3.546298899851906,2.2688587293575666,0.38583451056599316,-0.409356893862789,4.019971768852331,0.977291015560352,6.02334090113802,1.8379180681402298,14.560202774021455,11.039903150526351,16.01120121092204,11.790820551898298,1.9171227256342218,0.750935348776205,3.491880384630059,2.315869034583635,7.00936033392288,1.1349328517488235,3.7045860175555387,2.5099313008429838,20.819103744081232,14.701791971870525,0.24489446384922314,0.4713492940150421,0.6623004429052722,0.785349313534528,0.8021138074384763,0.8132901367077754,1.116737260835531,661.2961743702642,0.0,4.0,6.0,0.0,1.0,8.0,0.0,0.0,1.0,4.397091389403117,3.0233961920072923,1.8650694918187751,1.1186440677966099,1.0169491525423737,0.9491525423728815,367.19001306833275,1473.2179975175072,50.959348472946736,24.969796568093344,47.15458751716356,,17.0,829.0,0.0,9.589074368143644,17.22934992809979,19.386399651764595,64.3554078022534,17.741552976702497,12.393687143226153,6.06636706846161,19.76777650359537,0.0,13.166666666666668,28.25,9.0,0.0,19.25,0.0,0.02976190476190472,-10.25,0.10612777053455041,0.00818745947948507,-0.09794031105506534,0.0,0.14483573487031687,0.0,0.5497175141242939,0.826190476190476,0.4435897435897435,0.5415300546448089,0.826190476190476,29.71239378340633,0.26281655698211814,0.6068165569821181,18.29133200909025,4.836566507319647,8.81483049807133,48.00372579249658,13.651397005390978,0.5691642651296831,0.050632911392405056,0.03797468354430379,0.20506329113924046,0.7142857142857143,0.223015654530537,-0.4956746681649882,-0.040916180771519164,-0.008401265562118444,-0.03097966676031176,0.7769843454694627,1.7269256654681668,0.03596467807527459,0.02926992653335876,0.04016106198763179,-4.133047105932222,0.8725386184487016,0.6935646531560785,1.6525374132763844,0.9381748549061951,0.5385398702906296,1.7441721836539281,0.8818539526797236,1.3551490626214686,0.6810974487446847,0.4692481861714205,0.6912191016159542,1.186942142521256,0.9845858267043709,0.8232500143452248,1.1119970964782768,1.5791902535072606,0.9973692986541945,1.1209641413461946,0.98873458227283,1.068140270427478,0.8373184549825705,0.49688626768734295,0.7422335275898057,1.0514228674382176,1.0709940840015701,1.0225447979293765,1.1813784804242722,1.284408072852572,1.0068006868211374,1.1147055916908641,1.0726974731142782,1.1242824892431107,1.024359612655896,0.8826332727427492,1.0045107532397026,1.1059985605358662,0.9594571861156282,0.9442858365281823,0.9847499922043174,0.928372452061844,1.0007988943512647,1.0401820774857213,0.9610756070247077,1.0480859272003014,0.9390837521633922,0.9719090263782477,0.9566940163406488,1.0104238461843673,1.117092554642859,1.5110549584472346,1.0498032577371446,0.9216671259990478,1.3474742872405405,0.7195308073359092,1.106509241561392,0.812973492579444,1.475182073693191,1.9278639385078387,1.6274096403134393,0.8837576672451442,1.178173141996376,1.273338847604575,1.0042194461078744,0.8743811683541474,1.1426828718713935,1.1092967203120636,1.174878444861963,1.1140922195908425,1.2713188427454911,1.5747700174199615,1.3456655109219646,1.1397506177432035,0.9251540125260104,0.869169926399342,0.8641530691519314,0.8876577473343231,0.8768243686454577,0.8928426830099515,0.9252836178756502,0.8691623557827495,0.8812454194818764,0.7485906701832433,0.8226290213830182,0.9014164333097826,0.8785121551616072,0.8485677743714714,0.9475425906969837,1.132960347011631,1.0052107624397835,0.7857939303236057,0.8794156937755682,0.8562324319237198,0.8491698829113373,0.5977184355728801,0.7986102614463417,0.8586347921823203,5.5,0.14079991837567596,3.111111111111112,1.9444444444444446,1.278888888888889,0.7466666666666667,0.33637188208616786,0.29949688208616776,0.15420288485764674,0.13281635802469138,5111.953298745526,5997.791105055056,2698.9970421932394,2392.658850973092,18.928256044228302,0.48035024332570475,9.836063647651995,0.9243730746645523,1.0,0.7142857142857143,1.4855516599587242,2.8592468573545493,4.017573557543066,4.763998981565232,4.865693896819468,4.93349050698896,0.17741935483870966,0.007410522019772417,0.07235142118863051,0.0462962962962963,0.03456456456456457,0.02488888888888889,0.014624864438529036,0.013613494640280352,0.006425120202401947,0.006037107182940517,0.40363163426101417,21.240374609781476,9.871281773931855,5.389030612244898,166.6597667762423,1.0,4.269447099054522,185.12445263322388,,164.13894566147547,160.37297602321607,157.14579177336194,164.17111840657478,223.70073911788424,162.53756052688786,164.36614340956123,205.2342464305191,0.0851169060139201,0.056512323934637135,-0.5632936293208124,0.26914900796328795,0.3289497349739205,-0.3770040950971827,0.08297763559815453,-0.12397196708725922,0.07783249353383676,0.04558909554786555,0.012408696827259343,-0.039940841616548824,0.0013054316102036648,0.10591863247796042,0.15087702332981198,-0.11005238915649945,0.03346874991387176,0.09108675520993822,-0.00036992068903957776,-0.00578962045698103,0.08737191178689098,0.0648510432471381,0.12463998695040289,-0.017344779021121245,-0.09451228060337571,-0.08590357286192217,-0.09642123458857663,-0.170652842727049,-0.03955539907009048,-0.06091020497297803,-0.09489250513426899,-0.10142749014965127,-0.08597821985907331,-0.03493540760625099,-0.08145736352268862,-0.09701841066925955,0.021453459622864657,0.04103844523069972,-0.002412228945242568,-0.056941243595193904,-0.02814940639781958,-0.10326599736128443,0.019493908302881863,-0.07671765549527623,0.04820759565614175,0.09766496727544603,0.04246093266367565,-0.03440547051131837,-0.07424664493700874,-0.16608597261232788,0.07253293907373647,-0.009780647909202505,-0.197268467329035,0.17144788947736203,-0.07040470394521017,0.09188890443732382,-0.1655090575368229,-0.20130337116232147,-0.17215948228548952,0.034938092210737855,-0.18324491761207207,-0.18283627524641974,-0.09511068686514428,0.0018165703152448244,-0.17095205786404757,-0.1724898942862432,-0.18184654755769372,-0.12227788640645389,-0.19073568610505431,-0.18002819476971865,-0.17854750256795035,-0.1573444595173296,0.045730957286509416,0.05073609652172524,0.03224256791304656,0.031494634903495765,0.045752044562468924,0.020655626375723476,0.045960986912680406,0.06180967445737271,0.04843576119496502,0.003254158774848672,0.056443140114607396,0.0524315489763667,0.08325680785253464,0.00388378258436219,0.06995310194529446,-0.07624947218916742,-0.054527578601496665,0.1830834067349131,0.08426678849320102,0.11014144932002873,0.018269275234272995,0.017468239900531066,-0.006053061332986921,0.1205949734945037,25.13398368693999,10.300449027677528,0.5129927840030091,13.737761202513003,27.910541697784847,33.438747024205696,34.56412690246749,35.03961842789123,35.10795741094208,57.695754123123784,43.38096889491487,10.749658237839789,3.565126990369118,0.0,14.314785228208908,11761.071697444419,11566.420572644054,724.8753940165225,78.0,43.0,56.0,72.0,83.0,85.0,86.0,84.0,80.0,385.2477752320009,31.0,5.003946305945459,5.849324779946859,6.727431724850855,7.58629630715272,8.470730317005897,9.335121088873489,10.223067921487123,11.09073628594461,11.981196343870785,0.5875706214689265,0.9698305084745764,1.1408381855136172,0.5440097989272545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6378218106160561,0.9559986706547026,0.9955682842223512,0.586741474538323,3.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,4.899909730850478,0.0,0.0,17.762698739689505,0.0,19.388893829844598,9.967957041894417,0.0,0.0,12.841643245852019,43.709400435475004,57.95911241864104,0.0,147.8226521479331,-328.550675982534,-27.120689667020848,-5.568655525127696,-20.534417248908376,515.0126652162659,1144.667321534973,23.83865880592589,19.401141042965648,26.620170268255187,0.47058823529411764,0.8357189397786535,0.15219143399902954,3.373526169122606,0.10313787678700534,22.67563273965828,0.16428106022134653,9.0,0.1935483870967742,0.2525313277540916,0.48604799464497933,0.682953822598313,0.809839886865486,0.8271271698777144,0.8386520252192002,2.0881999999999996,,1.2142857142857144,1.4997673336435553,1.472516299044842,1.2110320506083252,-4.755497619587395,1.3233629130966955,1.1983045659983018,-2.3946120973331952,106.77400000000006,9.589074368143644,0.0,19.76777650359537,5.41499046939678,51.36657298340809,44.16844816632592,18.460054211687762,0.0,0.0,4.143134726391533,0.0,5.459585514144159,2.3978952727983707,6.976348070447749,4.59511985013459,8.587278798982926,6.580639137284949,10.248954925626595,34.666666666666664,5.40676918569799,8.644158868047167,0.0,0.0,0.0,0.0,0.8095441187012464,0.0,57.220000000000006,0.0,25.019806586680545,0.0,0.0,0.0,0.0,0.0,0.12893595545457592,67.3094529453034,4.899909730850478,5.948339280986494,0.0,70.85067439777384,9.589074368143644,5.41499046939678,51.36657298340809,18.460054211687762,0.0,0.0,0.0,32.09657813670802,37.63148682634731,36.809060561381116,370.24890526644776,,328.29657304433874,320.78218416810296,314.38601154577054,328.3608985684617,448.1077237306812,325.10314468908484,328.7497291670265,410.81058030351437,36.809060561381116,370.24890526644765,,327.2859124083208,319.5493186642875,313.2033508832685,327.3528678852055,452.15697585535594,324.0077608347158,327.75162425076996,412.8631049583713,4.880200527456644,294.0441278789236,,263.8856883876829,257.7979497639481,252.44629135176868,263.93729607860575,360.57204167607017,261.2899697549796,264.25377807362065,330.76121682354795,1.3146093057636112,13.22317518808742,,11.724877608726384,11.456506577432249,11.228071840920377,11.727174948873634,16.003847276095758,11.610826596038745,11.741061755965232,14.671806439411228,2.4631658793383373,185.12445263322388,,164.13894566147547,160.37297602321607,157.14579177336194,164.17111840657478,223.70073911788424,162.53756052688786,164.36614340956123,205.2342464305191,56.40392156862745,0.0,0.0,0.0,0.0,0.0,0.0,58.73852876911872,13.024227065380023,0.0,0.0,0.0,0.0,6.209802907703445,0.006755312335006369,0.0,0.0,34.61774699776106,553.9440286754558,87.64754793756472,168.6955645839184,237.0368398950409,281.07593991234864,287.0759399123486,291.07593991234864,726.0,135.26785107507783,108.89128868874333,76.98895629581087,69.64000000000001,69.64000000000001,0.8888888888888888,7.186806462234642,5.954196310386875,3.6167486090094996,5.221659428961238,,5.227930852618771,5.2273525448141,5.227115137838987,5.227936399831757,5.232015274956283,5.227706954005351,5.227962274621185,5.231431256980271,0.1291695931789107,0.18648783674861563,,0.1867118161649561,0.1866911623147893,0.18668268349424952,0.1867120142797056,0.18685768839129582,0.1867038197859054,0.18671293837932804,0.18683683060643824,2.3151948651118404,2.682434666825194,,2.6836349865011835,2.6835243615122133,2.6834789441878004,2.6836360475729917,2.6844159508570775,2.683592158197909,2.6836409968920765,2.6843043207216652,303.4500000000008,2632.8590367778443,171.98574882954975,,170.71459595829134,170.73841769710998,170.81656036462752,170.71456533123407,170.83101283839753,170.72668231134756,170.71303173939683,170.6756788728887,94.030679884923,6.14234817248392,,6.096949855653262,6.097800632039642,6.10059144159384,6.096948761829788,6.10110760137134,6.097381511119556,6.0968939906927435,6.0955599597460255,8.905445038129928,6.17703103491974,,6.169612549818708,6.1697520813964335,6.170209651473875,6.169612370413661,6.170294256048367,6.169683345904773,6.169603387004878,6.169384558054206,0.0,39.87376836243116,0.0,0.006755312335006369,0.9384800741558224,1.8384520206973096,11.1021699083927,5.4903743219880035,0.0,370.82827501064935,97.98207455009285,-217.77499158510508,-17.97655094257572,-3.691101552289917,-13.610936974069068,341.36858339520563,758.7259273460617,15.801104975162747,12.859761480441724,17.644789008047944,2514.0,42.0,1.8520515440307985,1.2299018089977418,0.125,0.125,0.2757834230632086,0.06800422623376173,0.0,0.0,0.0,0.0,0.0,0.0,0.125,0.125,0.4102846236784048,0.2739725539883718,0.5288128427270958,0.3019647957234236,19.39913045768216,16.684110302608065,13.65139700539098,10.728033665035415,12.197130194837744,8.584362324298537,10.243731110823978,6.6321112686277965,8.78216821648827,4.993323883158901,6.425445625158125,3.3340063929507244,4.323447307732478,2.011188991804353,2.953537609562279,1.2725736782095762,4.140235961445557,2.441380855216481,7.126120145453324,3.625291381818062,9.559164905109611,4.0955508773957305,95.16963760519303,53.1125976034847,36.79651424779021,30.717681599366188,29.53712463348082,29.146257779330064,148.0,173.0,62.84458299999998,40.245417000000025,0.4406779661016949,205.07,7.479166666666667,6.166666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,6.0,6.0,59.0,0.0,1.0,62.0,6.0,2.0,5.0,57.0,8.0,31.0,54.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,6.0,0.0,3.0,28.0,7.0,0.0,5.0,2.0,0.0,4.0,6.0,0.0,1.0,0.0,1.0,1.0,3.6109179126442243,5.229770824012927,4.034240638152395,4.403665809777363,4.805045110362947,5.0637810383053425,5.016865843846892,5.106702762842489,5.1276773145279195,5.169773515434553 +60825,Nc1ccn([C@@H]2CS[C@H](CO)O2)c(=O)n1,0,34.38461538461539,6.700703846153846,3.3461538461538463,8.94017094017094,167.1481874624746,136.5240546923077,1.5835213058976538,6.736230769230769,6.126200274348422,8.216582192307694,219.45955730998597,31.48148148148148,6.794740740740741,4.037037037037037,7.71604938271605,153.38004651177596,120.98177888888884,1.7826306320740737,6.910814814814817,3.574188385916781,8.227100296296298,259.6430487267348,28.67391304347826,6.814278260869562,3.5869565217391304,6.55072463768116,159.64699778118558,107.5017658043478,1.5667436104031958,6.896667391304349,3.6629092860976917,8.335473,219.07295486920194,22.436363636363637,6.597141818181818,3.018181818181818,4.903030303030302,163.70193771771972,81.72210687272725,1.3056130089807816,6.662418181818181,3.434175084175084,8.172690618181818,183.16736210942233,20.807692307692307,6.558248076923078,2.6923076923076925,4.532051282051282,163.51925989062642,75.67895636538462,1.2712730205373655,6.60946923076923,4.066714150047484,8.114168153846155,172.76023053422583,18.979166666666668,6.430370833333334,2.375,2.7361111111111107,169.85422062770667,67.73620560416667,1.1418617941112295,6.467895833333333,3.168595679012345,8.090657291666668,149.68386577314925,18.35483870967742,6.252096774193547,2.5161290322580645,3.279569892473118,163.49548004386696,65.83038735483872,1.2445344975836776,6.319987096774196,3.358622062923138,7.841674903225807,163.13402592776032,17.107142857142858,6.6741714285714275,1.8571428571428572,3.1785714285714284,172.99290590406773,59.74445746428571,0.97927829050875,6.6726035714285725,5.080687830687831,8.279177928571428,132.33596068927702,9.45,5.872450000000001,1.75,1.3,171.22243912565017,27.658750499999996,0.9130115927971498,5.915899999999999,2.614814814814815,7.612556800000002,101.26830393355694,13.082840236686392,0.18839245562130172,0.035147541701470025,0.6109467455621302,4.51939513477975,1.6481435117596517,58.77642671005918,0.31350300956225585,0.17081005917159756,2.406027548477691,0.12014970562130173,47.12366975034108,0.30462415077799804,-0.03288946416831027,-0.024376692636148507,0.1568595222441376,0.819319648379477,-0.33285779607954896,1.620932486522014,0.018032191351453584,-0.026177010738549274,-0.34665671304375545,-0.025635900777996903,1.8033372580849378,-1.3955492667867242,0.014982209930537704,0.007191286592606524,-0.00559557499356825,0.32155618443243855,0.12633961372915356,-6.059043850527407,-0.02901076510267141,0.010529740159506015,0.09194007106802847,0.005649205749935706,-2.987515194667608,-1.5765465303926838,-0.025062875201721336,-0.004709216111818289,-0.11024744486282946,-0.3607315761161915,-0.3250958753541246,-7.118886626143091,-0.056338020623846796,-0.02068949973103821,-0.08407823578763753,-0.013060295831091969,-4.143099044889439,-0.4940828402366864,0.020417455621301782,0.005386679580022514,-0.07470414201183431,-0.22567389875082183,-0.010051830139469087,-2.3998351242603553,-0.021466642812323966,0.015468934911242602,0.19748723630490012,0.01177122263313609,-7.212855904903057,0.18478796844181433,-0.04873284023668637,-0.0033450541064606655,-0.023607001972386604,-1.1949649353495506,0.15717190466406852,0.746120918145959,0.03811603643145639,-0.04192608481262328,-0.8032634001888516,-0.026249473249506893,4.8435812517414805,-0.2441305592670359,0.013024790036266432,-0.0008694463433889046,-0.1370013361328498,-0.32557103772984664,-0.18993311737318727,-1.0886539532353479,-0.035635414266398595,0.011878030158427201,0.02966395591154347,0.004656037554876853,-5.120559799630894,-0.49218089602705006,-0.013339296280642397,0.0035263261835254767,-0.014792899408284077,-0.8609702263548418,-0.09754251034856713,-2.7836505314877398,0.0009727817615201326,-0.014597147083685534,0.1915338407503649,0.0005054743237531904,-6.406097777106834,-2.478994082840237,-0.0035491863905326043,-0.00781086308403736,-0.06286982248520716,0.3241946088099936,-0.3062286191441261,-10.726203075443783,-0.06331144835105787,-0.0035235207100591083,-0.1710560385061809,-0.009127790236686443,-4.192538644362044,,,0.4688888888888888,1.1333333333333333,0.43333333333333335,0.06666666666666667,0.7,-0.26666666666666666,0.7297276881692025,0.014100330797724148,0.025566997464390815,0.6733018194001646,0.20424085427803398,0.2759397190824482,1.4030295075693673,0.4801805733604822,2.0059040146401417,1.1040751026892228,0.3978692204001938,0.36946641237522143,0.0,0.9018289119509194,8.80969662353846,894.0,174.2183,87.0,232.44444444444446,4345.852874024339,3549.625422,41.171553953339,175.142,159.28120713305898,213.63113700000002,5705.948490059635,850.0,183.458,109.0,208.33333333333334,4141.261255817951,3266.5080299999986,48.13102706599999,186.59200000000004,96.50308641975309,222.13170800000006,7010.362315621838,1319.0,313.4567999999999,165.0,301.33333333333337,7343.761897934536,4945.081226999999,72.070206078547,317.24670000000003,168.49382716049382,383.431758,10077.355923983288,1234.0,362.8428,166.0,269.66666666666663,9003.606574474585,4494.715877999999,71.80871549394298,366.43299999999994,188.87962962962962,449.49798400000003,10074.204916018229,1082.0,341.0289000000001,140.0,235.66666666666666,8503.001514312573,3935.3057310000004,66.106197067943,343.69239999999996,211.46913580246917,421.93674400000003,8983.531987779743,911.0,308.6578,114.0,131.33333333333331,8153.00259012992,3251.3378690000004,54.80936611733901,310.459,152.09259259259255,388.35155000000003,7184.825557111164,569.0,193.81499999999997,78.0,101.66666666666666,5068.3598813598755,2040.7420080000002,38.580569425094005,195.9196000000001,104.11728395061728,243.09192200000004,5057.15480376057,479.0,186.87679999999997,52.0,89.0,4843.801365313896,1672.844809,27.419792134245,186.83290000000002,142.25925925925927,231.816982,3705.4068992997563,189.0,117.44900000000001,35.0,26.0,3424.4487825130036,553.1750099999999,18.260231855942997,118.31799999999998,52.296296296296305,152.25113600000003,2025.3660786711387,340.1538461538462,4.898203846153844,0.9138360842382207,15.884615384615387,117.5042735042735,42.851731305750945,1528.1870944615387,8.151078248618653,4.441061538461536,62.55671626041997,3.123892346153845,1225.215413508868,8.224852071005946,-0.8880155325443773,-0.6581707011760097,4.235207100591715,22.12163050624588,-8.987160494147822,43.76517713609438,0.4868691664892468,-0.7067792899408304,-9.359731252181398,-0.6921693210059163,48.690105968293324,-64.19526627218931,0.6891816568047344,0.3307991832599001,-0.2573964497041395,14.791584483892175,5.811622231541064,-278.7160171242607,-1.334495194722885,0.48436804733727673,4.229243269129309,0.25986346449704245,-137.42569895470996,-86.7100591715976,-1.3784581360946735,-0.2590068861500059,-6.0636094674556205,-19.840236686390533,-17.880273144476853,-391.53876443787,-3.0985911343115737,-1.1379224852071015,-4.624302968320064,-0.7183162707100583,-227.87044746891917,-25.692307692307693,1.0617076923076927,0.2801073381611707,-3.8846153846153846,-11.735042735042736,-0.5226951672523925,-124.79142646153846,-1.1162654262408462,0.8043846153846154,10.269336287854806,0.6121035769230767,-375.06850705495896,8.869822485207088,-2.339176331360946,-0.16056259711011195,-1.133136094674557,-57.35831689677843,7.54425142387529,35.81380407100603,1.8295697487099067,-2.0124520710059173,-38.55664320906487,-1.2599747159763308,232.49190008359105,-7.568047337278113,0.4037684911242594,-0.026952836645056044,-4.247041420118343,-10.092702169625246,-5.887926638568805,-33.74827255029578,-1.1046978422583564,0.36821893491124325,0.9195826332578476,0.14433716420118245,-158.73735378855773,-13.781065088757401,-0.3735002958579871,0.09873713313871335,-0.41420118343195417,-24.10716633793557,-2.73119028975988,-77.94221488165671,0.027237889322563713,-0.40872011834319494,5.362947541010217,0.01415328106508933,-179.37073775899134,-49.579881656804744,-0.07098372781065208,-0.1562172616807472,-1.2573964497041432,6.4838921761998725,-6.124572382882522,-214.52406150887566,-1.2662289670211573,-0.07047041420118216,-3.421120770123618,-0.18255580473372887,-83.85077288724088,0.7224332542835976,0.5789231431426942,0.45016928752545216,0.34245543582535826,0.2912167554109358,0.19413181604376498,0.18794616689529856,0.1126421537971766,0.12178332540305199,0.0645928822592369,0.0758850231206073,0.03454733724856185,0.053257649652691925,0.019543265238831115,0.033526538105511705,0.011748807531779261,16.002002187439036,5.774106691535235,3.547308518423126,2.263205479772539,0.4891084377507817,-0.40749799781487756,3.2089140843942587,0.9777683744245502,6.022476177079156,0.6549438528684743,14.558810306656643,10.33810031740488,32.06099843318846,11.792253718139511,2.916255208223331,0.7461773829688031,3.4935876550166025,2.309327050824775,7.008281098659351,0.6223082992604294,3.7056977573269134,2.5029699703493975,24.434224446782437,14.702381618101377,0.3969920452088268,0.8050034292534192,0.9108967074529941,0.9108967074529941,0.9108967074529941,0.9108967074529941,1.8810769946369759,408.3635221838066,0.0,2.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,2.7524431849745077,0.750375961704882,0.23076923076923084,0.23076923076923084,0.23076923076923084,0.23076923076923084,64.77400654503188,781.2696712724567,64.0817583370488,30.048833510479103,66.17598373019014,,9.0,212.0,5.689743398203474,4.794537184071822,24.088644284651902,5.752853606746789,0.0,16.32898459718247,12.263210640074686,0.0,4.9839785209472085,15.577057825802939,7.033333333333332,17.0,6.5,1.0,10.5,0.0,0.03111111111111118,-4.0,0.23610614192009527,0.026831501831501847,-0.20927464008859342,0.10851851851851835,0.22100934579439258,0.0,0.6756410256410259,0.9511111111111111,0.43953488372093064,0.6488095238095241,0.8425925925925928,10.945915322538038,0.21150496196586221,0.3835049619658622,10.09952729100247,3.0636128141705097,4.139095786236723,21.04544261354051,7.202708600407233,0.4929906542056074,0.15165876777251186,0.0,0.3412322274881517,0.5,0.4197250203795712,-0.8127842196235266,-0.0971784507003649,-0.03126093152398179,-0.10159802745294083,0.5802749796204288,1.1236841350351947,0.06165569030561211,0.04321862057827673,0.06242689639084416,-0.13038836262170928,0.7390446756118396,0.9338646170985809,1.7269871721049375,0.9326517801094071,0.583990668002888,1.4439342374084516,0.7339402226689314,0.9334091056378555,0.8902192604807023,0.8527292051265232,0.9830894923513784,0.9075091809427138,1.21907753721511,0.8605472540459937,0.7683971669080415,1.1290662174965784,0.8949720749895637,1.0978139179648814,1.19489654379594,1.2915362602085652,0.8580314907084043,0.6941991705505095,0.9052173753414994,1.0272565890377519,1.114468977426915,1.0932114904685697,1.121304385469959,1.2161567246313008,1.0771153490094427,1.213495502188546,1.1094991417723954,1.1936056943539017,1.0749477460658783,0.8070740720863013,1.0732933734651602,1.0400917972705193,0.8932609678878334,0.8628555365271257,0.7961330124398562,1.0139225181598064,1.0290133110270585,0.9558447207990161,0.9026921044408577,0.9600369752311121,0.8772590752730638,0.9337245403559079,0.8911459429170473,1.102948768034084,1.0434922923262473,1.327963396577343,0.8885168502626217,0.9672619047619048,1.3410662763068566,0.7729344890048219,1.0428698313340108,0.8541663356060382,1.3190938771280143,1.614371499079306,1.2938022538803222,0.8591149750950003,0.9151456792284908,0.7282623450136415,0.9132259760837443,1.1930797469343122,0.9284341652040883,1.063422913469846,0.9206607400293895,1.0463162763045017,0.7412224504480467,0.8422110798847556,0.7409178435661671,1.1141173077972237,0.8872035924274728,1.2854839646872127,0.9988545005253764,0.7307160152196471,1.2250483187164887,0.8519613913450427,0.9108135633916946,0.7284641060419031,1.2961629186765071,1.3167528750346391,1.224934319884569,1.0049776369988244,1.3780529172320215,0.8656106673325308,1.0605613288570739,0.9836561743341403,0.8344850160023276,0.9675497119152573,1.3664392718620455,1.2649224438600097,0.9034861294423716,1.0129456755503077,0.8784501659856028,1.1547199500641683,3.5,0.0,1.7777777777777786,1.1597222222222223,0.7433333333333334,0.47611111111111115,0.16730158730158734,0.11546910430839001,0.045099521289997474,0.0,3039.1008304807856,3351.3504393025746,1583.8245561651163,1461.4060799964743,10.29722766460897,0.44307645608769025,5.734768523445904,0.7955786048748098,0.0,0.5,1.947996533166584,3.9500637564362098,4.469670487371861,4.469670487371861,4.469670487371861,4.469670487371861,0.21875,0.0,0.08080808080808086,0.05798611111111112,0.04372549019607844,0.03967592592592593,0.018589065255731927,0.019244850718065004,0.022549760644998737,0.0,0.501329284659992,11.484375,4.8884297520661155,2.5714285714285716,90.06690967616713,1.0,3.6354153250336765,51.05277025958523,,36.26546567854104,36.74962328562829,37.55743095653968,36.281074466397705,57.5978968368079,37.470064086780525,37.846147058183085,53.60666261430642,0.023284252139973614,-0.17457951837744093,-0.6935532744564313,0.25674827369742614,0.18128966906970972,-0.20195923091926082,0.027577935190207858,0.05751839950956747,-0.1532521612925125,-0.1440784471745086,-0.21336632200163988,0.03826818385832282,-0.10667020628084864,0.07952659187507109,0.20460283264435963,-0.009158858827244883,0.07115027007880986,0.07665571160988657,-0.10308629138712924,-0.09253743733809487,0.06164590194847793,0.038212393339469256,0.047018057353726384,-0.06339733748443868,-0.12050491344928245,-0.13303545048588164,-0.13398422432546195,-0.18045344486022447,-0.07981855211997778,-0.1972497376803272,-0.12111805743585197,-0.1797048797155458,-0.12112576877134223,-0.03494483504182418,-0.10870019001341995,-0.08791970291871107,-0.03776571687019448,0.10837724660452465,0.15325907074170195,-0.12227602905569004,-0.04993453593249928,-0.0060988803873864,-0.04082989148181137,-0.0684734824150423,0.09056220099837535,0.08208020578561187,0.09797129815896222,-0.15306227089520869,0.014124453490125111,-0.2586772388308744,-0.09517178000305952,-0.03864003228410011,-0.26440815633789155,0.09536299693724054,0.01269422045383146,0.12158108620608714,-0.24545442473328752,-0.3338546147142336,-0.21847305504220094,0.10278446643486255,-0.01866036386980057,0.06913647360936946,-0.024737045645287347,-0.22424431773803014,-0.07203863083897247,-0.11524064258846238,-0.01852194857992332,-0.11366849178308147,0.06953940661360236,0.012329017566865368,0.03875196806184575,-0.10866216121875423,-0.03762033985914584,-0.07080589419916299,0.10032924104555484,-0.02421307506053277,-0.19050563198802944,-0.05918326265436995,-0.04735998234835425,0.003102942338188164,-0.08545835739697911,0.0796058386245617,0.0042070375548516805,-0.13594225176107952,-0.18948439620081411,-0.018839323362645814,-0.22223070820656213,-0.102905569007264,0.07173407041024155,-0.18580215676557132,-0.18249158167364513,-0.20194845478344728,-0.020628297461798447,-0.07109479632284724,-0.07597014232774073,-0.08896884870329307,1.8731847975721563,6.138721308127245,1.9827032282500943,23.397314540129905,40.69083296216859,41.214596546951725,41.214596546951725,41.214596546951725,41.214596546951725,30.088560219602126,16.561126540338343,5.9680383060029065,5.541996185628322,0.0,13.52743367926379,1891.6246900339122,1808.7533844383415,383.010487536734,15.0,22.0,28.0,35.0,38.0,39.0,33.0,29.0,26.0,229.052112212,16.0,4.343805421853684,5.176149732573829,6.042632833682381,6.894670039433482,7.766840537085513,8.624970783589669,9.498897061838624,10.359423950612095,11.233780183540627,0.7692307692307693,1.0207692307692307,1.1424812872180614,0.7341155223096776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6748208889912485,1.0048265460030168,1.036206510168637,0.6378998340352909,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,15.577057825802939,17.481762320138984,0.0,0.0,0.0,4.567099647791355,4.794537184071822,4.9839785209472085,11.761884949391115,0.0,6.06636706846161,11.949697178359866,6.606881964512918,169.3383875382587,-327.91842869677276,-39.20672189183341,-12.612247257568182,-40.989803587096596,234.11239408329058,453.35124257568384,24.875036445215382,17.43658625291092,25.186180143093548,0.4444444444444444,0.6926029656276789,0.20282199628615005,143.64300073364026,0.1813348141439707,47.9412147022976,0.3073970343723212,5.0,0.125,0.4144285747668239,0.8403604754659768,0.9509047568723008,0.9509047568723008,0.9509047568723008,0.9509047568723008,-0.5941000000000001,,1.8035714285714288,1.3895559505374213,1.1082508187380549,1.8006559751755822,-4.377290316528427,1.2713433292533662,1.237629484152691,-1.9973784437328954,56.36320000000001,9.843390348640755,0.0,9.551078168738563,0.0,11.663899542303952,18.09340304842189,22.74749122234998,0.0,0.0,3.4965075614664802,0.0,4.795790545596741,2.3978952727983707,6.285998094508865,4.59511985013459,7.8636512654486515,6.580639137284949,9.487441664883777,20.0,3.094589947089947,3.6024409486016626,0.0,0.0,0.0,0.0,0.19500758482405334,1.3740277777777778,26.54,0.0,11.442129157218442,0.0,0.0,0.0,0.0,0.0,0.0,29.7045134676696,11.423410875365658,5.817862777835028,0.0,32.453339506408064,4.736862953800049,0.0,6.22790117073487,17.057747824146507,0.0,0.0,0.0,19.08700358005162,17.54534311377246,18.93428268052292,102.10554051917048,,72.41770284197436,73.31397244451826,74.96709513724764,72.45016266507942,116.44336946815767,74.7706157296606,75.52727685181249,107.53812763122103,18.93428268052292,102.1055405191705,,71.0950837943553,72.11287207190733,74.02552557910231,71.12968161661729,119.5730839901442,73.6687848443077,74.45466463221351,109.21070367234576,4.703569135381134,76.3541823747417,,55.25247140976332,54.69625861292583,56.09872138735983,55.279043675238356,86.86690295707434,55.94222787103668,56.660309034466266,82.42035472242597,1.2622855120348613,6.807036034611365,,4.827846856131624,4.887598162967884,4.997806342483176,4.830010844338628,7.762891297877178,4.984707715310707,5.035151790120833,7.169208508748069,2.3833127616580487,51.05277025958523,,36.26546567854104,36.74962328562829,37.55743095653968,36.281074466397705,57.5978968368079,37.470064086780525,37.846147058183085,53.60666261430642,26.125490196078434,0.0,0.0,0.0,0.0,5.36918359473419,8.87527893256068,26.941369264384562,0.5645333364827416,0.0,5.412434807256236,1.467232379062736,-0.632219387755103,0.0,0.0,0.0,0.0,16.585395684917565,279.43120783589006,50.64790986233118,102.70165766734145,116.21143267166838,116.21143267166838,116.21143267166838,116.21143267166838,296.0,100.94117054420991,124.01957378565923,60.50304339212242,115.66999999999999,90.36999999999999,0.8,6.975764333346356,5.0,3.5684899149062805,3.810806924680532,,3.8020078099321646,3.8024894912072744,3.800396235142741,3.8019933536472945,3.8004119788061024,3.803162211273476,3.803808246163524,3.8029199732510115,0.2378993276604187,0.2540537949787021,,0.25346718732881096,0.25349929941381827,0.2533597490095161,0.2534662235764863,0.2533607985870735,0.2535441474182317,0.2535872164109016,0.2535279982167341,1.6776076213894766,1.743306066076905,,1.7409944063364595,1.7411210896020795,1.7405704418104995,1.7409906040527514,1.7405745844392615,1.7412979896480643,1.7414678430463957,1.7412342937750327,152.85999999999987,70.48298046370012,67.40598676877897,,67.54436795722273,67.72457474728931,67.80994408588552,67.54450994503225,67.81571331250875,67.66558712875992,67.6095666173453,67.42197522995868,4.698865364246674,4.493732451251931,,4.502957863814848,4.514971649819287,4.520662939059035,4.502967329668817,4.52104755416725,4.511039141917328,4.507304441156353,4.494798348663911,4.660836376919443,4.616198946544363,,4.618249793127568,4.620914216949817,4.622173960233239,4.6182518952667175,4.622259035973882,4.620042844592411,4.6192145991524205,4.616436114873805,6.786462585034014,15.044570105820105,8.87527893256068,4.6734825365331325,0.816764954438566,1.543352229780801,1.1834136432350713,-0.057224033131771046,0.0,181.27203312183647,68.31970481084329,-132.29894636582324,-15.817982592078895,-5.088421014070124,-16.537368295727905,94.45282838019574,182.90491316626023,10.03585289668667,7.034804352548472,10.161384064792236,369.0,20.0,1.0312509703768813,0.4685557720282968,0.0,0.0,0.1642664266089148,0.03512485049439219,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.11785113019775792,0.21941609682128765,0.152704627669473,0.3942085618180639,0.15736609120462394,10.836498814253964,8.683847147140414,7.2027086004072345,5.479286973205732,6.406768619040587,4.2708999529628295,5.262492673068359,3.153980306320945,4.26241638910682,2.2607508790732913,2.883630878583077,1.3127988154453503,2.077048336454985,0.7621873443144135,1.1063757574818862,0.3877106485487156,2.225071141341365,0.9058799652951081,3.4545525754639064,1.2458481938089454,4.524982692926662,1.3278453261114789,49.9587419864649,23.95419486799102,22.317515557145292,22.317515557145292,22.317515557145292,22.317515557145292,76.0,88.0,29.300722999999984,18.379277000000002,0.4230769230769231,46.07,5.305555555555555,3.3888888888888884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,26.0,0.0,0.0,27.0,6.0,1.0,3.0,24.0,7.0,16.0,20.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,7.0,2.0,2.0,15.0,7.0,0.0,3.0,3.0,0.0,2.0,2.0,1.0,0.0,0.0,1.0,1.0,3.044522437723423,4.8217925203120355,3.597312260588446,4.081765780015241,4.563045259687421,4.936719611146088,5.053854413216232,4.894569533079366,4.989581884898423,5.018520788370246 +60871,CC(C)(C)C(=O)OCOP(=O)(COCCn1cnc2c(N)ncnc21)OCOC(=O)C(C)(C)C,0,26.272727272727273,6.503759090909091,3.090909090909091,8.383464272353162,168.22777657881923,104.63476747625218,1.4299718932601209,6.524286363636364,5.266834295169343,8.029519712121212,197.11351780858,28.955223880597014,6.541611940298508,3.5522388059701493,6.464344941956882,150.74957070612095,111.06045153874628,1.6732903567164181,6.666101492537313,3.1537912290399857,7.99334376119403,240.19287799954105,23.10924369747899,6.658257142857145,3.2100840336134455,6.231559290382819,163.78279853165142,87.06375829574789,1.36438779805358,6.700665546218487,3.7108750907770514,8.178650470588236,194.26177494704416,21.246478873239436,6.5459063380281695,2.676056338028169,4.280125195618153,157.46127447715688,77.05660680452112,1.33448088519293,6.619900704225351,3.765703790645106,8.056741873239435,183.50529797655057,14.297872340425531,6.476727127659575,2.132978723404255,3.0135933806146578,173.68391483536854,49.60793089009575,0.9478125238773404,6.469113829787234,3.565408567551002,8.13329330851064,125.7202491478622,19.3015873015873,6.505477777777778,2.626984126984127,3.411816578483245,164.42554329783314,69.39139890290475,1.2065559150601906,6.550334920634919,3.062622476974329,8.088864936507935,160.03508325913947,18.892857142857142,6.475364285714287,2.4571428571428573,4.251587301587302,170.14267448308365,69.72453458611429,1.156727406901464,6.486445,3.664050558495003,8.11968562857143,146.2166943091594,23.974789915966387,6.542171428571429,3.0,4.603174603174603,159.69591683211317,87.17201497373111,1.4715684383326386,6.620891596638655,3.92279627900543,8.126923512605043,189.62553099220588,17.96,6.95004,2.433333333333333,3.9992592592592593,167.20699096897496,62.84558577842666,1.1049493913479198,6.949789999999999,4.2516941015089165,8.525699119999999,159.18260248295977,10.029384756657485,0.19224483471074374,0.029519101071832816,0.7024793388429752,4.991418109263227,1.404029376406274,46.90314607450641,0.29596065773271624,0.17464997704315874,1.9530519586863633,0.12311301767676766,46.45538468547205,2.008154818195524,-0.026208674602195534,-0.019295526922921784,0.22018009127914154,1.3837263703588645,-0.6125551794805195,9.00163453073752,-0.0757691561318841,-0.016391949001548643,-0.3315966921520938,-0.018247882669983412,-4.279515791198212,1.9622118819979786,0.045922697756788776,0.0026332186334369944,-0.12875894159316614,0.9445050815619245,0.3835146563745063,9.26436918918719,0.058839642726457635,0.04153119178801005,0.35668336558841857,0.031308253267973846,12.095105347658906,-1.5643826226412654,0.00909172098707959,0.0012113967233171687,-0.050750785705971344,-0.2381340954158329,-0.6187730202894564,-7.759609218595918,-0.13505940975995742,0.0072235398155693475,0.017838781220091103,0.005697376369327069,-20.17762012327809,0.013813180157474078,-0.018603369526991306,0.000573101964335155,0.06589590293652188,-0.5575283845933606,0.2604569798484441,0.34370528421780067,0.0683990753129543,-0.01746519303284289,-0.3367295270066678,-0.011456145094562647,7.718716178633276,-0.7917705190432464,-0.025108110324019307,-0.004162274455258106,0.035615899252262925,-0.5907506468673697,-0.18439057214501806,-3.9538353007533087,-0.05211739610035261,-0.02245168459486634,-0.23112232149276113,-0.013722923280423276,-9.701939383937063,2.3468057195329926,0.011074483471074434,0.001851619507572047,0.010507674144037778,0.5733566221781711,0.31603816164029225,11.222955105420986,0.12642309725803288,0.010412577069395287,0.31402310064692635,0.006676132539682538,13.112629316794157,-3.200762398623361,0.019983240155566438,-0.0005988141851619378,-0.1700118063754427,0.2533325407161811,-0.3089438222431733,-14.656306416931853,-0.1571617943435195,0.021259546766364983,0.22493446343233092,0.0031865179738561956,-5.445605080447991,-2.87544536271809,-0.05516604683195562,0.002993364099091097,0.010247933884297516,-1.4750195558276364,0.1577632862074293,-13.34857108625434,0.0216751634623795,-0.055770583103764676,-0.5872776883962039,-0.03252803222222222,-7.407471642131784,,,0.4607843137254903,1.0661764705882353,0.38235294117647056,0.014705882352941176,0.6838235294117647,-0.3014705882352941,1.108589096852428,0.034894537664345,0.03995336119375676,0.9578068321125777,0.2025778799967759,0.26000445182044074,2.0663959289650053,0.46258233181721664,1.9644193594493398,1.1507632368640417,0.29801690249133245,0.44777850620042714,0.0,0.8136561225852983,7.593921963848499,1734.0,429.2481,204.0,553.3086419753087,11103.03325420207,6905.894653432644,94.37814495516798,430.60290000000003,347.61106348117664,529.948301,13009.49217536628,1940.0,438.288,238.0,433.1111111111111,10100.221237310103,7441.050253096,112.11045390000001,446.6288,211.30401234567904,535.554032,16092.92282596925,2750.0,792.3326000000002,382.0,741.5555555555554,19490.153025266518,10360.587237193999,162.362147968376,797.3792,441.5941358024691,973.259406,23117.151218698255,3017.0,929.5187000000001,380.0,607.7777777777777,22359.500975756277,10942.038166241999,189.49628569739605,940.0258999999999,534.7299382716051,1144.0573459999998,26057.75231267018,2688.0,1217.6247,401.0,566.5555555555557,32652.575989049285,9326.291007338,178.18875448894,1216.1933999999999,670.2968106995884,1529.059142,23635.406839798095,2432.0,819.6902,331.0,429.88888888888886,20717.618455526976,8743.316261765998,152.026045297584,825.3421999999998,385.8904320987655,1019.1969819999998,20164.420490651573,2645.0,906.5510000000002,344.0,595.2222222222222,23819.97442763171,9761.434842056,161.94183696620496,908.1023,512.9670781893004,1136.7559880000001,20470.337203282317,2853.0,778.5184,357.0,547.7777777777777,19003.81410302147,10373.469781874002,175.116644161584,787.8860999999999,466.81275720164615,967.1038980000001,22565.4381880725,2694.0,1042.506,365.0,599.8888888888889,25081.048645346244,9426.837866763999,165.742408702188,1042.4685,637.7541152263375,1278.854868,23877.390372443966,661.939393939394,12.688159090909087,1.948260670740966,46.36363636363636,329.433595211373,92.66593884281407,3095.607640917423,19.53340341035927,11.526898484848477,128.90142927329998,8.125459166666666,3066.0553892411554,134.5463728191001,-1.7559811983471008,-1.2928003038357596,14.752066115702483,92.70966681404391,-41.041197025194805,603.1095135594139,-5.076533460836235,-1.098260583103759,-22.216978374190283,-1.2226081388888885,-286.7275580102802,233.50321395775944,5.4648010330578645,0.31335301737900234,-15.322314049586772,112.396104705869,45.638244108566255,1102.4599335132757,7.001917484448459,4.942211822773196,42.44532050502181,3.725682138888888,1439.31753637141,-222.14233241505968,1.2910243801653016,0.17201833471103797,-7.206611570247931,-33.815041549048274,-87.8657688811028,-1101.8645090406203,-19.178436185913952,1.0257426538108474,2.533106933252937,0.8090274444444437,-2865.2220575054885,2.5968778696051267,-3.4974334710743653,0.10774316929500916,12.388429752066113,-104.8153363035518,48.965912211507494,64.61659343294653,12.859026158835409,-3.283456290174463,-63.30515107725355,-2.1537552777777775,1451.118641583056,-99.76308539944904,-3.1636219008264326,-0.5244465813625213,4.487603305785129,-74.43458150528858,-23.233212090272275,-498.1832478949169,-6.566791908644429,-2.828912258953159,-29.121412508087904,-1.729088333333333,-1222.4443623760699,328.5528007346189,1.550427685950421,0.2592267310600866,1.471074380165289,80.26992710494395,44.245342629640916,1571.213714758938,17.699233616124605,1.4577607897153402,43.96323409056969,0.9346585555555553,1835.768104351182,-380.89072543618,2.378005578512406,-0.07125888803427059,-20.23140495867768,30.14657234522555,-36.76431484693762,-1744.1004636148905,-18.70225352687882,2.529886065197433,26.76720114844738,0.3791956388888873,-648.0270045733109,-431.3168044077135,-8.274907024793343,0.44900461486366455,1.5371900826446274,-221.25293337414547,23.664492931114395,-2002.285662938151,3.251274519356925,-8.365587465564701,-88.09165325943059,-4.879204833333333,-1111.1207463197677,0.7520795097922344,0.6224725354621243,0.4493656937652962,0.3477864002760808,0.31271317207216376,0.22296544713467972,0.1991409257948991,0.10097291651654154,0.12429905059450674,0.05449557061035747,0.08088945276597825,0.029974163586451188,0.05399352113843621,0.01877080211145849,0.036751095313538915,0.012048890812865825,15.010262711874356,5.761465186731713,3.563211591058349,1.997200944689847,0.5046019436822768,-0.46806144846502223,4.03014070428323,0.9772142805430664,6.031983108639404,0.5369796356982641,14.564354447657035,10.454003046726218,30.97857117608102,11.784891753030431,3.657561920974736,0.7399277468528137,3.5099550881960626,2.1179331641149575,7.010044907295663,0.2906415957094966,3.7246017973787673,2.4300305482459468,24.438218746370772,14.699679527666726,0.28520006567104933,0.5564814527356247,0.6841025418652906,0.6841025418652906,0.6841025418652906,0.6841025418652906,1.8240640358540876,1007.7388391510439,0.0,4.0,8.0,0.0,1.0,0.0,0.0,0.0,2.0,4.273457611699758,2.588948489759141,1.7964912883377044,1.7964912883377044,1.7964912883377044,1.7964912883377044,314.7025993836394,3295.9557182166977,84.32215807923266,49.9387230032833,101.09613138344238,,15.0,855.0,50.29820882273962,14.154122653074971,12.424744742347947,17.708634344296563,0.0,12.654640149529083,46.10952284593509,0.0,14.951935562841626,28.991750661985968,15.66666666666667,36.25,13.0,0.5,23.25,0.0,0.03921568627450972,-10.25,0.1902626262626258,0.009595959595959602,-0.1806666666666662,0.03518518518518521,0.22030252100840308,0.0,0.6262626262626247,0.933333333333333,0.43599999999999894,0.6166666666666651,0.8981481481481478,37.69202929298255,1.18641428058773,1.35841428058773,32.56543229182764,6.88764791989038,8.840151361894986,70.25746158481019,15.727799281785366,0.4936974789915969,0.2808510638297872,0.12765957446808507,0.18510638297872337,0.65,0.2996712274470652,-1.257475147607135,-0.05818223154002232,-0.019052653751623263,-0.06618290250563869,0.7003287725529349,2.938707309813672,0.049170897796127676,0.04452586833051018,0.0625256874428441,-3.561830901588907,0.8060890384189653,0.9128372207198706,1.79316312317058,1.1299385425812116,0.5610217782824376,1.8768375126940333,0.8150046416161775,1.7180931619525768,0.8511205215906117,0.7994699122202751,0.9332781234925601,1.241225502808458,0.8441581173762307,0.8557308496741056,1.0670370945862269,1.7966304168726317,0.9305261699217808,0.8438784153642633,0.8390722121794392,0.9373751114064864,0.8402607911458023,0.6182741017881056,0.8636243706215405,0.7385663103166854,1.1804301822655396,0.9135658078376633,1.1583215178484934,1.1156448494890916,1.0161414473330646,1.6548396136935253,1.1880827632011361,1.7271637751670326,0.9031031970067942,0.9405297783127032,0.9403009736159061,1.4961127372960352,1.0671012927255938,1.4184877838667795,1.076187633229919,0.6413224864413851,1.277483476603515,0.5840174836398148,1.0550249953354647,0.6290276136135378,1.4135014076387717,1.6980306158624583,1.4580278367771102,0.717273860696785,1.2126463843182391,1.2574043808157933,1.3895950126522891,0.789993775287893,1.1387375314296444,1.1858046191929394,1.2113035948856314,1.4330695793464259,1.2381150925278215,0.9107428380671434,1.2661642232662884,1.2028680169950408,0.9886263308656185,1.242495764406583,1.0632268225370567,0.9313025210084034,1.0281348515062865,0.6303043562739628,0.972581622846312,0.7933626659662568,1.2244168359754661,0.9313253974156921,1.2958268834536335,0.6643879087494257,2.1743466659690793,1.134159735589571,1.481032192576745,1.8143021914648214,1.0140941074627394,1.4775466853872972,2.136928469262276,3.1554562208499473,1.0639318156339825,1.2477902910520908,1.2393556411893665,1.2407047251107597,1.258221937374107,1.7968319782760949,1.0970077980473154,0.81781045751634,1.578361265807835,0.7954621332713515,1.2499910837568684,0.7072399143612309,1.7997570373275795,2.038695693055758,1.8839661184275633,1.0391233334542298,10.5,0.34149984695439245,5.555555555555558,2.3819444444444446,1.2983333333333333,0.7813888888888888,1.054739229024943,0.6588364512471656,0.5215655706727134,0.3837577160493828,7957.453005481704,8934.378425070721,3654.081164747082,3331.4594257197978,15.280554917250866,0.43029811303840165,8.705360970178148,0.75530399826007,0.0,0.65,1.770936507658695,3.4554456295993123,4.247902831020749,4.247902831020749,4.247902831020749,4.247902831020749,0.29999999999999993,0.00853749617385981,0.10893246187363838,0.048611111111111105,0.03245833333333334,0.022325396825396828,0.027044595616024184,0.014017796835046078,0.012418227873159843,0.009593942901234569,0.5839393625428042,30.22530612244898,12.9919261822376,9.770390889504464,197.35887667861297,0.0,4.423943098176013,246.86930406760848,,172.62129608621433,195.62881472038882,204.10944125115685,172.27804619428304,349.87720395087507,198.3565929907754,197.82753254178513,285.1870578031693,0.20022711930186096,-0.13632966857928716,-0.6536624159376456,0.31343283582089565,0.27722109029313785,-0.43628373435348183,0.19191963192486658,-0.25601090601816295,-0.09385600432972249,-0.16978385581463387,-0.14822057824862273,-0.09212098490138089,0.1956462863482694,0.23887610726127018,0.08920388961131395,-0.18329214038556596,0.18922579933928654,0.2731528718837372,0.19752127446782758,0.19880900109228727,0.23779672056725804,0.1826287129751153,0.2543049781313414,0.2603595994210203,-0.15597991906760098,0.04729240710554962,0.04103772402720914,-0.07224523612261803,-0.0477087052623174,-0.44071230323773974,-0.165438992221751,-0.4563424436025222,0.04136009599236476,0.00913379756270775,0.046277611229427335,-0.43434405419073446,0.0013772709386091623,-0.09676915145721542,0.01941461438614098,0.09380475594493115,-0.11169739188121354,0.18550678798124917,0.007327979314475393,0.2311086745006693,-0.10000111839995814,-0.17241196554399632,-0.0930538891073296,0.16615331529150254,-0.07894507372624933,-0.13060486312569897,-0.1410027509011701,0.05070028011204487,-0.1183532683369154,-0.13132956848593907,-0.08429786979475913,-0.17609568954066906,-0.1285524623305171,-0.11833905414795808,-0.11146606215479758,-0.20884423731768478,0.23399298924843698,0.05760614316497695,0.06272614816644487,0.01495798319327731,0.11486848218828195,0.22509369600885232,0.23927936705126646,0.4271618336927955,0.0596196875927569,0.16078584046383512,0.05422767360971263,0.28226285080994834,-0.31913845926577916,0.10394682481656116,-0.02028565110112135,-0.24201680672268902,0.0507536205484447,-0.22004085344278185,-0.31248024159509624,-0.5310225877570972,0.12172659353462964,0.1151707523355515,0.025882867904532852,-0.11722225781397931,-0.2867020692180919,-0.2869572382267633,0.10140431078192183,0.014588235294117641,-0.29551111999418556,0.11236466192127484,-0.28459862937658637,0.07323663769511712,-0.3193277436846321,-0.30069742168621616,-0.264212776488221,-0.15945345609092149,4.874440194804504,6.953779132202473,1.8008320672096227,19.4702852835491,37.431215570508954,39.16650913621786,39.16650913621786,39.16650913621786,39.16650913621786,66.79025822127755,39.125950053377416,10.132574684705304,15.224469210814522,0.0,27.664308167900142,11761.593260409489,7879.67942870734,4965.783460413594,73.0,51.0,57.0,60.0,65.0,70.0,79.0,75.0,69.0,501.1988496140009,35.0,5.153291594497779,5.963579343618446,6.840546529288687,7.671826797878781,8.545780648268149,9.386056829718001,10.258816591150495,11.104972264124868,11.977256787056435,0.6717171717171717,1.0049090909090908,1.1470410874999564,0.6325978484369126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6376644529123571,0.9881758764111708,1.023974265598446,0.5964319739220005,2.0,3.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,6.0,0.0,0.0,1.0,0.0,5.0,0.0,5.0,0.0,0.0,0.0,2.0,0.0,0.0,24.51135598635369,18.19199116143563,11.465039998602755,13.585884612199655,0.0,23.201616976498606,14.951935562841626,0.0,0.0,0.0,41.54242319814374,6.544756405912575,23.76418297807102,235.38135095685638,-987.7030956891707,-45.700124026735935,-14.965198419532893,-51.98437345732477,550.0839503404958,2308.252622527527,38.62203405249673,34.973524583750404,49.11175792611761,0.4666666666666667,0.7873677798040949,0.1042753102250942,46.63277028456024,0.08612391879711787,0.0,0.21263222019590508,8.0,0.3142857142857143,0.2929882586555525,0.5716777498893587,0.7027838931640707,0.7027838931640707,0.7027838931640707,0.7027838931640707,2.7025000000000006,,3.3142857142857145,3.0004608149195606,2.437550758368874,3.31884570045721,-10.709318302041039,2.7113049328482086,2.597424460751294,-4.631000090509882,121.15890000000006,37.41220583789875,0.0,19.51903521063298,10.82998093879356,48.08717960405632,32.274404422929585,12.654640149529083,0.0,0.0,4.2626798770413155,0.0,5.616771097666572,2.3978952727983707,7.133295954896068,4.727387818712341,8.719807451477955,6.842683282238422,10.341129392339514,44.333333333333336,2.855057147014137,12.170481020722132,0.0,0.0,0.0,0.9825321972252301,0.25516421422070223,1.6907074390055992,66.32399999999998,0.0,36.93689770852116,0.0,0.0,0.0,0.0,0.0,-1.0974491800908424,75.70471177499712,5.733667477162185,5.817862777835028,0.0,57.99838273230409,43.95696224381133,10.82998093879356,41.54242319814374,12.654640149529083,0.0,11.16387793838399,0.0,41.75145799683623,42.08585389221557,40.12219975140523,493.73860813521696,,345.6941699315863,391.0811317457824,408.07549716358614,345.0326340584598,701.4975839116023,396.55369745608914,395.5022754094084,570.7140214442275,40.122199751405226,493.7386081352171,,342.77181234403224,388.2780491221379,405.83322555744314,342.1061546712971,710.6159344731088,394.01020038527827,393.05896065170197,575.0051156968484,4.736102127086205,351.7906901534012,,246.15519939021806,282.06401904896074,292.7845501339401,245.62660609847381,498.41544341453425,285.66650420979806,284.6324498663463,407.11542918752417,1.1800646985707421,14.521723768682852,,10.167475586223127,11.502386227817128,12.002220504811357,10.14801864877823,20.63228187975301,11.663344042826152,11.6324198649826,16.785706513065513,2.429660787094144,246.86930406760848,,172.62129608621433,195.62881472038882,204.10944125115685,172.27804619428304,349.87720395087507,198.3565929907754,197.82753254178513,285.1870578031693,65.21960784313727,0.0,9.993035932518014,0.0,0.0,5.7706957895730575,0.0,67.58230152949744,-1.3094000315027556,0.0,25.877885144173476,0.0,0.0,0.0,-1.5407387423090473,0.0,0.0,39.36451027885204,618.4500703956505,116.88180950547387,228.0594115535546,280.36158684736944,280.36158684736944,280.36158684736944,280.36158684736944,668.0,145.90212738560163,167.0152309017015,84.04165014717056,176.78999999999996,166.97999999999996,0.875,7.978968267941246,6.129283016944966,3.5409532623891664,5.743488355193802,,5.718419921747987,5.742877589185706,5.742798063636867,5.717977551792728,5.744723724778124,5.742529303662911,5.740938659565865,5.748094741906165,0.10414568418791666,0.16892612809393534,,0.16818882122788198,0.16890816438781486,0.16890582540108431,0.16817581034684495,0.16896246249347424,0.16889792069596798,0.16885113704605484,0.16906161005606368,2.4881714056783775,2.9718421847477665,,2.967467961396583,2.9717358384914085,2.971721990712446,2.967390599630082,2.9720572520847,2.9716751901354295,2.9713981581251843,2.9726438822893777,362.4600000000014,2866.32917899955,219.1977838609092,,221.69928647412087,218.70566573016615,218.7515425395235,221.75371585771512,218.34825342500395,218.75703814340088,218.95199437654492,218.08905172171274,84.3037993823397,6.446993642967918,,6.520567249238849,6.4325195802990045,6.43386889822128,6.522168113462209,6.422007453676587,6.434030533629437,6.439764540486615,6.4143838741680215,9.184562890009119,6.613749876521279,,6.625097329809436,6.611502265371496,6.611712008444227,6.625342809639684,6.609866712552168,6.611737130712088,6.612627933649892,6.608678905136487,40.65415331096473,36.02181800145763,0.0,5.21248924448924,-0.8422849658701401,0.0,2.3797489774500153,9.158944070579379,-3.9459797501819667,437.277364391662,184.88388374910497,-775.8065096478219,-35.8958616879865,-11.754644085573062,-40.83192156041168,432.0718557930352,1813.052341623987,30.33626761376094,27.470490024605862,38.57558173668058,4060.0,49.0,4.741610247367468,3.4107005900679304,0.7541269644862626,0.5645497224367904,1.4445668535560594,0.29602651114043277,0.408248290463863,0.08333333333333333,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.25967970078748703,0.06218987247003249,0.47318186729308515,0.08370878884947205,25.570703332935967,21.164066205712228,15.727799281785368,12.172524009662828,15.948371775680352,11.371237803868667,11.351032770309248,5.755456241442868,7.457943035670405,3.2697342366214484,5.257814429788587,1.9483206331193272,3.7795464796905347,1.3139561478020945,2.9033365297695743,0.9518623742164001,7.791863306812388,2.873886513655655,8.123226522406556,2.5821432901848613,9.124568181904625,2.100002503597588,113.70008018390939,52.24185106653176,46.19081462951148,46.19081462951148,46.19081462951148,46.19081462951148,172.0,194.0,70.28337599999998,55.786624000000074,0.13636363636363635,103.14,14.604166666666668,7.291666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,66.0,0.0,0.0,67.0,10.0,3.0,7.0,60.0,13.0,35.0,54.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,13.0,1.0,2.0,34.0,14.0,0.0,5.0,8.0,1.0,2.0,11.0,0.0,0.0,0.0,2.0,2.0,3.784189633918261,6.067539055343624,4.347046915777855,4.769624740953621,5.165143053020327,5.54542155530709,5.829542865692647,6.111068839934888,6.359945501597926,6.0469288183651075 +9912089,COc1ccc(CC(C)NCC(O)c2ccc(O)c(NC=O)c2)cc1,0,21.6734693877551,6.178771428571428,2.938775510204082,6.816326530612245,163.49799353310155,85.34016197959185,1.401073994211755,6.23520612244898,4.728458049886622,7.720879102040816,207.04127456898746,23.4,6.3921600000000005,3.54,6.1,148.09911537975802,87.77792331999999,1.7252673354400003,6.52245,3.351666666666667,7.8258752000000005,252.6033660621697,19.285714285714285,6.248285714285714,3.261904761904762,4.642857142857143,154.45981823750765,70.67686397619046,1.4925075547475235,6.349364285714286,3.078373015873016,7.746666095238094,211.44249807079225,16.28828828828829,6.1352972972972974,2.7837837837837838,3.6036036036036037,157.9423899317021,57.94669736036036,1.3360884186372521,6.220596396396396,3.037287287287287,7.673472324324324,182.4675180516545,13.21259842519685,5.9298582677165355,2.3622047244094486,2.6535433070866143,160.14811658774744,45.418042,1.1853649095190786,6.0079212598425205,2.7069116360454943,7.52353051968504,154.72360446133462,12.364341085271318,5.8620465116279075,2.2248062015503876,2.449612403100775,163.96076047179392,42.67069280620155,1.0923604430473721,5.925350387596899,2.823858742463394,7.475777860465117,140.52453806640744,12.243478260869566,5.989468695652174,2.234782608695652,2.3391304347826085,164.8589525854293,41.52639867826087,1.0831002697940784,6.042540869565218,2.9355072463768117,7.609146295652173,140.59614710409315,12.693069306930694,5.968198019801981,2.227722772277228,2.5346534653465347,162.764406542272,43.45550659405941,1.1176444885551882,6.028349504950496,3.0706820682068208,7.578836039603961,144.6124593079002,12.2,5.926126315789475,2.2842105263157895,2.305263157894737,165.15469178981863,41.919268305263145,1.0885538685838947,5.980927368421053,2.6947368421052627,7.5567792421052635,141.88956925003123,7.572678050812161,0.13720807996668052,0.02646855088908216,0.5331112036651396,3.735943356934611,1.4041824468842132,35.93618991753436,0.2249101949510204,0.12825564348188248,1.6837891619232728,0.08682287713452724,49.58708395793744,-0.05022907122032536,-0.01436514119117029,-0.012943078976066589,0.17586838817159517,0.6856892961266141,-0.02348990171153039,-0.14953078937109823,0.0073698378937861716,-0.01190127613494377,-0.18774607802304596,-0.009880790603915036,1.7733949076203228,-0.23059836179369733,-0.008725281132861272,-0.0008747392107821541,-0.07489934749409966,-0.2791892267110925,0.02562131982410263,-1.0395425793419435,0.005706665133183702,-0.008070852422601686,-0.029108241936230274,-0.005521604053866446,0.39070657719058516,-0.7342886409941806,-0.004652205725092004,0.002989488697328141,-0.06445887786995658,-0.3206096558866239,-0.029885632158229213,-3.5230138110809692,-0.01845057463082642,-0.0056443914134876125,0.003632954070271851,-0.0019173437644224816,-4.921551151488929,-0.6281175494462609,-0.007355372269428433,-0.00398016789943823,-0.043958062093550264,-0.08416768603633001,-0.28216581716823275,-3.0384171984278194,-0.03604582942854652,-0.006776260547606474,-0.07390557594294882,-0.005036094553778441,-6.754296031787452,0.6160579086879174,0.016995463776398042,0.001998352938870246,-0.034614130417235725,0.22387312779881766,-0.11059206742030048,2.8142964104200776,-0.013311990444407066,0.01640281245863318,0.210008408784597,0.00991501307271841,-0.3523553812013827,-0.36593448382014726,-0.004418532495518174,-0.0007019219616645385,-0.02610144323923004,-0.303645220288648,0.06513994855142811,-1.7211389768067642,0.0004944037980477269,-0.0048502486282889345,-0.033399730788499955,-0.001813675359904386,-1.0790069857760507,-0.16107974812474993,0.01394710289854473,0.0020818376021628283,0.011039129735547468,0.019562805926573446,-0.043867820710033784,-0.8594936617251051,-0.011531770299551027,0.010885415317874982,0.14353846879898316,0.009993725815563646,-3.2893510801054684,0.33129617045529297,-0.0061938157346719735,-0.0012066797011311998,-0.012165983471799037,-0.26762971568863864,0.12571803178752405,1.6824164639908816,0.02769744246136325,-0.004994161204761176,-0.07079835156404127,-0.004970608176417719,5.2219103014432955,,,0.4653333333333334,1.21,0.6,0.06,0.61,-0.01,0.8003997200199149,0.015432258370815006,0.022312258370815005,0.911326838648122,0.2531514922112314,0.22798479191287743,1.711726558668037,0.4811362841241088,1.9936857737800662,1.5490787501796286,0.1582645514061176,0.2863424721943199,0.0,0.4446070236004375,7.023951168326544,1062.0,302.7598,144.0,334.0,8011.401683121976,4181.667937000001,68.652625716376,305.5251,231.69444444444446,378.32307599999996,10145.022453880385,1170.0,319.608,177.0,305.0,7404.9557689879,4388.8961659999995,86.26336677200001,326.1225,167.58333333333334,391.29376,12630.168303108485,1620.0,524.856,274.0,390.0,12974.624731950642,5936.856573999999,125.37063459879198,533.3466,258.5833333333333,650.7199519999999,17761.16983794655,1808.0,681.018,309.0,400.0,17531.605282418936,6432.083407,148.30581446873498,690.4861999999999,337.13888888888886,851.7554279999999,20253.89450373365,1678.0,753.092,300.0,337.0,20338.810806643924,5768.091334,150.54134350892298,763.0060000000001,343.77777777777777,955.488376,19649.897766589496,1595.0,756.2040000000001,287.0,316.0,21150.938100861415,5504.519372,140.914497153111,764.3702000000001,364.2777777777778,964.375344,18127.665410566562,1408.0,688.7889,257.0,269.0,18958.77954732437,4775.5358479999995,124.556531026319,694.8922,337.58333333333337,875.0518239999999,16168.55691697071,1282.0,602.788,225.0,256.0,16439.205060769473,4389.006166,112.882093344074,608.8633000000001,310.1388888888889,765.46244,14605.85839009792,1159.0,562.9820000000001,217.0,219.0,15689.69572003277,3982.330488999999,103.41261751546999,568.1881000000001,255.99999999999997,717.894028,13479.509078752966,371.0612244897959,6.723195918367346,1.2969589935650259,26.12244897959184,183.06122448979593,68.80493989732645,1760.8733059591834,11.0205995526,6.284526530612242,82.50566893424036,4.254320979591835,2429.7671139389345,-2.511453561016268,-0.7182570595585145,-0.6471539488033294,8.793419408579759,34.2844648063307,-1.1744950855765195,-7.476539468554911,0.3684918946893086,-0.5950638067471885,-9.387303901152299,-0.49403953019575186,88.66974538101614,-19.370262390670575,-0.7329236151603469,-0.07347809370570095,-6.291545189504371,-23.451895043731767,2.152190865224621,-87.32157666472325,0.47935987118743095,-0.6779516034985417,-2.445092322643343,-0.4638147405247815,32.81935248400915,-81.50603915035404,-0.5163948354852125,0.3318332454034237,-7.15493544356518,-35.58767180341525,-3.3173051695634426,-391.05453302998757,-2.0480137840217325,-0.626527446897125,0.40325790180017546,-0.21282515785089545,-546.2921778152711,-79.77092877967513,-0.9341322782174111,-0.5054813232286552,-5.582673885880883,-10.689296126613911,-35.83505878036556,-385.8789842003331,-4.577820337425408,-0.8605850895460222,-9.3860081447545,-0.6395840083298621,-857.7955960370064,79.47147022074135,2.192414827155347,0.2577875291142617,-4.465222823823408,28.879633486047478,-14.266376697218762,363.04423694419,-1.7172467673285114,2.11596280716368,27.091084733213012,1.2790366863806748,-45.45384417497837,-42.082465639316936,-0.5081312369845901,-0.08072102559142193,-3.0016659725114545,-34.91920033319452,7.491094083414233,-197.9309823327779,0.05685643677548859,-0.5577785922532275,-3.8409690406774946,-0.2085726663890044,-124.08580336424583,-16.26905456059974,1.4086573927530177,0.21026559781844567,1.1149521032902943,1.975843398583918,-4.430649891713412,-86.80885983423562,-1.1647088002546537,1.0994269471053733,14.497385348697298,1.0093663073719283,-332.2244590906523,31.473136193252834,-0.5884124947938375,-0.11463457160746397,-1.1557684298209085,-25.42482299042067,11.943213019814785,159.82956407913375,2.6312570338295087,-0.47444531445231175,-6.72584339858392,-0.47220777675968323,496.0814786371131,0.7293536015901,0.57594560104788,0.4626310424270278,0.3117792498244343,0.3026376066134336,0.1740019888760287,0.20149820896114504,0.09708331430128668,0.12951311254324352,0.05442608894616901,0.08604279407867908,0.02979188767069286,0.05785914088065456,0.017431442033790538,0.038535613257851625,0.010367674744763647,8.022328912830371,5.692193091695084,3.54359068772828,2.190874650625958,0.42628187926398176,-0.5293729675806638,3.181161949202062,0.9572806218863941,6.014854946444122,0.9937138023229243,14.54140829884931,10.953375859853626,16.010715434018586,11.704128413179534,1.9917963306778521,0.7523961995521856,3.48863082746758,2.240527872708582,7.0088173415141615,1.2572121543494643,3.7015920024728777,2.436432091473583,20.89823040207362,14.702333378162228,0.26021007127143897,0.6313590531202677,0.8325747240465423,0.901331498506058,0.9153267312059693,0.9153267312059693,1.657968338199865,688.323489896161,0.0,0.0,2.0,0.0,10.0,3.0,2.0,0.0,0.0,4.096933117810936,1.9320619278174922,0.7583930501781664,0.35734234702708,0.27570969396585543,0.27570969396585543,223.88196156949675,1644.5701022325563,84.24433984653754,33.56265514760319,65.79969905942437,,16.0,630.0,6.103966387748303,15.007591973753232,17.478738937115427,18.518303203725694,12.170333456209914,11.629818560158606,19.242531678200752,31.189205473537065,10.633577208012662,4.736862953800049,11.633333333333335,30.25,15.0,1.5,15.25,0.0,0.034666666666666617,-0.25,0.14600689590904836,0.05567079290732668,-0.09033610300172168,0.07650574712643665,0.1695382215288609,0.0,0.5829931972789117,0.8546666666666664,0.4369863013698634,0.5273224043715851,0.7781609195402297,20.00999300049787,0.38580645927037516,0.5578064592703751,22.783170966203052,6.328787305280785,5.699619797821936,42.793163966700924,12.02840710310272,0.5444617784711391,0.17191977077363893,0.0,0.30085959885386815,0.3157894736842105,0.3177059074479486,-0.8508659967138331,-0.06958975192380076,-0.01736461217783333,-0.05005094098316665,0.6822940925520516,1.8272900487579844,0.06760080489740207,0.03729163364812212,0.05710281402368701,-4.14300152691478,0.8977494225057749,0.9276588211510196,1.442673101620195,0.91875,0.6869832775919732,1.2679735288185958,0.9006944770373861,1.1153122789803815,0.9056376756906663,0.8477801291741103,0.9454803667366704,1.0157731121965534,0.957870421295787,0.9458511895763856,0.951986965550111,1.4984374999999999,1.0566332218506131,1.1282152853750258,0.9595949097669063,1.044483679115604,0.9395411730398406,0.72481791947231,0.9424614958578873,1.0088957393265894,1.0372004388064229,0.9142273710837128,0.7954385762668953,1.2249999999999999,1.009852662026575,1.1061573783810865,1.040953767939731,1.108153873935518,0.9244464288293999,0.769443897656073,0.8863242594952621,1.0991615995614958,1.025193212634803,0.8727598458109158,0.9566547830672921,0.9983267716535433,0.8784978800726831,1.1918822811312915,1.0301396460243317,1.1671499077529568,0.8847376891848818,0.8322024196611263,0.8577096349787587,1.1414289955520258,0.8754275247945195,0.6860192557924366,0.6743770815232166,1.025581395348837,0.8211765315910917,1.0352815255967291,0.8815302357142425,1.0216886993375947,0.7004046536307894,0.706176516645308,0.6518308533186082,0.9961095767241728,1.0438685178365608,1.0445715424191007,0.9443004052014383,1.0066304347826085,1.0499694634288206,0.8951540540903334,1.0423807402623317,0.9425578254084663,1.0509456233500025,1.06982547753195,1.0276375772585147,0.9840990134309797,0.9983674420681536,0.8455455390346803,0.8361533707824328,0.8641707920792078,0.9242160336434981,0.974536281652418,1.0014582247356603,1.0271802618063177,0.8676888918877553,0.9219488501000712,0.8316657735717692,1.0501416150676233,0.948403568595893,1.019075495302554,0.953263590751067,1.0444736842105262,1.0874705157542686,0.8346997505693465,0.9450056053377553,0.8257569746013377,1.0186020454787919,0.9601041493385793,1.0221137174271553,0.8658746761030853,5.5,0.13202734414855627,2.88888888888889,1.3125,1.395555555555556,0.7569444444444444,0.44571428571428573,0.3211805555555556,0.1970269589317208,0.12687500000000002,4523.787264567905,5212.110829765372,2325.4847023493808,2066.5137394177664,14.337158453793046,0.4510767438324282,7.869999702646508,0.821748284052892,1.0,0.3157894736842105,1.5177767263042719,3.682647916297716,4.856316793937042,5.257367497088128,5.339000150149353,5.339000150149353,0.21153846153846154,0.00776631436167978,0.08496732026143794,0.0375,0.046518518518518515,0.02703373015873016,0.018571428571428572,0.014599116161616158,0.009382236139605754,0.00667763157894737,0.46455475729042583,21.301775147928993,10.982698961937716,6.91017251635931,147.006351327496,1.0,4.1119222714000525,149.99516130430231,,122.9774529217174,121.07234773818794,121.07419244834905,122.9986085470413,162.51426649780987,122.24071253329228,123.0850250199679,146.92876553851457,-0.006632933670663359,-0.1046960295243451,-0.48899839777044213,0.32989062499999994,0.1835384615384616,-0.016728525387603947,-0.004161008435068895,0.032767913857311495,-0.09279339147851967,-0.11150212999862581,-0.11380399878485135,0.03576324248315582,-0.030451362153045173,-0.06359159850484104,-0.033048247123455846,-0.1404947916666666,-0.07473058342623556,0.018246432207548683,-0.028927456742839596,0.025373083396359443,-0.06292785411615655,-0.017287343685584718,-0.06359618842521224,0.007879200509592468,-0.0969655168313182,-0.03390620819285381,0.11294493264311103,-0.12091075450450446,-0.08581759016541626,-0.021283297070507773,-0.09803526247956475,-0.0820352969541664,-0.044008912670458394,0.0021576062801842637,-0.02208339354444179,-0.0992506668805866,-0.08294523353979058,-0.05360742801163462,-0.15037347212989977,-0.08245570866141731,-0.02252916545966871,-0.20094669164561899,-0.08455034341148347,-0.16026765454716876,-0.05283401465732535,-0.04389241694520218,-0.05800423482828484,-0.13621079306693706,0.0813527136046469,0.1238663479623445,0.07549914414447727,-0.06492853682170545,0.059924122613708046,-0.07875904421515656,0.07831371152251444,-0.059188025902098707,0.12789154545819464,0.12472369672739747,0.11419816297213516,-0.007105789513661872,-0.04832299503091924,-0.032203150839157334,-0.02651909296455174,-0.04896059782608697,-0.08127671949978191,0.046389946474526364,-0.04789430879446038,0.0021982275999333652,-0.03781703866289583,-0.019836052840695218,-0.02088937178497548,-0.021759839451162832,-0.021271173426879585,0.10164928262192452,0.07865325196256029,0.0207069925742574,0.005236376480457395,-0.031240826865037045,-0.02391721725918785,-0.0512727771280548,0.08487279797097323,0.08524729345272028,0.11510475286460412,-0.0663348359604223,0.043748878300690706,-0.04514177106899297,-0.045589186434416215,-0.022820723684210533,-0.07163644898198678,0.08953112329988452,0.04681677350469421,0.12314889712934103,-0.03893911463994686,-0.04204704078459167,-0.057249982268107014,0.10530787222480786,9.513459923399298,18.31187809148183,4.858933852630196,14.233206722217744,32.206166243489854,37.8019853589217,39.10444854933064,39.18673426361635,39.18673426361635,49.842144344501655,38.72696875449071,3.95661378515294,7.158561804857998,0.0,11.115175590010939,5674.849264628017,5388.842898349141,1474.9733859215112,41.0,34.0,41.0,47.0,57.0,53.0,50.0,45.0,41.0,344.1736072480007,26.0,4.795790545596741,5.602118820879701,6.437751649736401,7.2633296174768365,8.101374671228582,8.93313654381203,9.771954162574279,10.60641178160999,11.445620453959314,0.6258503401360545,0.9831836734693878,1.1306631950756378,0.5851965630145156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6494076988879385,0.969107643057223,1.0061833910548925,0.6097358611264576,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,2.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,25.58349495149412,11.49902366656781,0.0,6.410095306116121,0.0,4.794537184071822,0.0,0.0,0.0,18.19910120538483,48.73693007985707,12.586597235060536,18.9011502037094,195.09305201800203,-522.4896366915598,-42.732844349815004,-10.663053810031833,-30.73468451126822,418.9750135874988,1122.0804655409966,41.511495496722546,22.899601337571355,35.06501454815614,0.5,0.7207096978325317,0.18885150952613788,129.07554751488237,0.10948257762612125,215.96960913173763,0.27929030216746836,8.0,0.34615384615384615,0.27032148916743354,0.6558928276868142,0.8649274724368812,0.9363560438654526,0.9508951127270046,0.9508951127270046,2.2233,,1.2857142857142858,1.5141926477431362,1.1430359144285005,1.28206267335915,-5.365540693720244,1.3572521419828643,1.2745051870999227,-2.2346271687189603,96.91600000000003,19.74445492755328,0.0,5.316788604006331,0.0,25.4903660395129,18.97134255119644,53.59147246262526,0.0,11.49902366656781,3.970291913552122,0.0,5.241747015059643,0.0,6.703188113240863,0.0,8.2482674474469,0.0,9.836439217783001,30.666666666666668,12.52835328216957,0.0,0.0,0.0,0.0,0.0,2.8585710564739193,0.0,48.176,0.0,10.531635797637193,0.0,0.0,0.0,0.48650043801062925,0.0,0.0,55.402496558706254,15.37044016181271,5.687386274683562,11.49902366656781,36.3195448721356,11.21535880699783,0.0,24.154606570832918,42.46456947923127,0.0,0.0,0.0,28.674631587711264,31.820977245508985,31.683299482207243,299.99032260860463,,245.85204870057765,242.02356006455645,242.05694202354385,245.89465208021383,327.17474927310775,244.37284489522594,246.0680896249678,294.75138194451677,31.683299482207243,299.99032260860463,,244.66919155772064,240.6305028286327,241.00534898226974,244.7151544207236,330.39407368933985,243.12417292460174,244.89554485283594,296.0921582457482,4.661438362716872,231.99017141200477,,193.9495520521843,191.03387058239048,190.29847027138078,193.97971983442432,250.43714111951135,192.78844838729577,194.11759410748945,229.32046001148188,1.2673319792882898,11.999612904344184,,9.834081948023107,9.680942402582257,9.682277680941754,9.835786083208554,13.08698997092431,9.774913795809038,9.842723584998712,11.79005527778067,2.330719181358436,149.99516130430231,,122.9774529217174,121.07234773818794,121.07419244834905,122.9986085470413,162.51426649780987,122.24071253329228,123.0850250199679,146.92876553851457,47.48627450980393,0.0,3.6875832274871154,0.0,0.0,0.0,19.95046488764691,49.30298616168973,1.1873664317017492,5.6959534445224795,5.144080787527992,0.0,-0.5705093531775534,0.0,0.0,0.0,0.0,29.877057195196425,442.56481001114764,74.37105958890932,180.4497478985881,237.95952290291507,257.6110073573183,261.6110073573183,261.6110073573183,460.0,123.95748824687388,171.50325559435308,58.999933707082526,90.82,90.82,1.0,7.398709773105716,5.700439718141092,3.9413895953355413,4.9235330765627925,,4.937169529893707,4.938039067478559,4.9347691009406285,4.9371506409472365,4.902705383566163,4.937367798605691,4.937134071876899,4.920706799258819,0.15765558381342165,0.1969413230625117,,0.19748678119574825,0.19752156269914234,0.19739076403762515,0.19748602563788947,0.19610821534264652,0.19749471194422763,0.19748536287507595,0.19682827197035277,2.2878240821752485,2.510317109656789,,2.513082929207,2.5132590343653924,2.5125966156083943,2.513079103334202,2.5060779037242025,2.5131230867770036,2.5130757473300314,2.509742910446433,270.19000000000017,307.0671032940211,139.14627321961612,,137.88850665704,137.78616765418215,138.16848745587646,137.890746078253,141.3762475752055,137.86590545100947,137.8925667935652,139.64699322309858,12.282684131760844,5.565850928784645,,5.515540266281601,5.511446706167286,5.526739498235059,5.515629843130119,5.65504990300822,5.514636218040379,5.515702671742608,5.585879728923943,6.643357033081724,5.851816437019673,,5.842736167710788,5.841993705547263,5.844764595903561,5.842752408390178,5.867715490852975,5.842572244994859,5.8427656123458,5.85540849322867,5.144080787527992,10.531635797637193,25.64641833216939,2.0708530075801352,0.7877180488937836,12.702177791911739,0.5658168629277032,2.412474585883226,1.638824785468843,329.3664766727562,119.80041306576783,-320.84420050210696,-26.240875067711848,-6.547840826573611,-18.87318826482982,257.2791761307137,689.0337809284794,25.490883740063865,14.061913896499577,21.53230565401498,1810.0,35.0,1.501661279183041,0.7142473010416255,0.0,0.0,0.23570226039551584,0.04906293078500748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.2732887444401232,0.067657391893427,18.2338400397525,14.398640026196999,12.028407103102722,8.106260495435292,10.289678624856743,5.9160676217849755,8.261426567406946,3.980415886352754,6.087116289532445,2.5580261804699433,4.904439262484708,1.698137597229493,3.0665344666746917,0.9238664277908984,1.9267806628925814,0.5183837372381823,3.2673043003721527,1.221431043686493,4.224132821770599,1.3743123575406309,5.906874527524019,1.5503009600728037,84.60162721860573,42.269262677027214,25.947410251853917,22.466764962990233,22.171686608368585,22.171686608368585,120.0,135.0,53.141031999999974,27.820967999999997,0.3469387755102041,76.06,9.027777777777779,5.805555555555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,49.0,0.0,1.0,50.0,12.0,1.0,7.0,43.0,13.0,26.0,37.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,5.0,4.0,0.0,25.0,6.0,0.0,2.0,4.0,0.0,2.0,9.0,0.0,0.0,0.0,0.0,2.0,3.5263605246161616,5.337538079701318,4.02535169073515,4.4942386252808095,4.954064942607862,5.452110839727453,5.414432345103723,5.424261454485114,5.352302347594573,5.261718214099707 +5311100,O=C(O)CCC/C=C\C[C@H]1[C@@H](O)C[C@@H](O)[C@@H]1/C=C/[C@@H](O)COc1cccc(C(F)(F)F)c1,1,24.327868852459016,6.6891803278688515,3.0327868852459017,8.59016393442623,168.8893720181676,97.80601012211989,1.3414499219773932,6.695742622950818,8.041552823315119,8.137338032786882,204.4556394682647,24.322580645161292,6.516935483870969,3.7580645161290325,6.548387096774194,147.53277666293718,92.1770538146065,1.714327898290323,6.644040322580645,3.459677419354838,7.942685935483868,256.09589764912437,21.263636363636362,6.572454545454546,3.2181818181818183,5.845454545454546,155.4449102632759,79.75276979959014,1.453367919082673,6.651648181818182,5.0593434343434325,8.002628399999997,210.2393821410291,15.197452229299364,6.191273885350318,2.554140127388535,3.426751592356688,160.91856478937268,54.057626305803815,1.1778921838673122,6.2562904458598725,3.3158174097664546,7.766124152866243,162.44142029169188,13.78048780487805,6.189939024390245,2.323170731707317,3.1402439024390243,165.67967265341716,48.28401654002928,1.0822403367052313,6.237366463414633,3.4091294037940383,7.778801634146341,147.42514676886546,14.296052631578947,6.196973684210526,2.3289473684210527,3.4539473684210527,165.40420974125172,50.86565676429473,1.091776276056961,6.240888815789472,3.5583881578947367,7.782033947368421,148.81135463142297,14.062068965517241,6.110344827586207,2.4,2.7724137931034485,162.86639224220977,49.4167737847062,1.1209388400935445,6.169724827586207,3.1975095785440613,7.704178289655172,151.9541481792739,13.210526315789474,6.23611842105263,2.263157894736842,2.6776315789473686,166.52270918098588,45.3730397832842,1.0423853947911974,6.273675657894738,3.349780701754386,7.8415303157894725,140.96440529372055,13.590277777777779,6.264374999999999,2.263888888888889,3.25,168.44807000011295,47.88874821647778,1.0243533630302504,6.289817361111113,3.9824459876543212,7.867877027777776,139.3743844560949,8.5890889545821,0.26586401504971774,0.028115573964095017,0.6073636119322763,4.720236495565709,2.3023424598521,41.316195322779706,0.2327445968981113,0.23664536414942206,3.814371883304965,0.1636582424079548,47.92233721041684,-0.25064368752763305,-0.02211203197198108,-0.01551518169570051,0.05445553137814158,0.5505197180778663,0.08631135608296961,-1.0594142238697615,0.019127270960823905,-0.01948375653440357,-0.45980860109096955,-0.014618673925670336,2.9125824501780717,-0.07299357455229534,0.06789306393686936,0.0007113676668244983,-0.07621607094866968,0.5410153673254985,0.39579202227768934,-0.12975792303728198,-0.027528064347149585,0.05587938994893855,1.1092081796193591,0.03956363002125529,-7.552939104187252,-0.24555757732408753,-0.005883854247796675,0.0006738195397270481,-0.04967331225596846,-0.03338257471366676,-0.27671492750724674,-1.0225196248801884,-0.022689709176269456,-0.004453905446279348,-0.0808298613310236,-0.005540319049909473,-3.431857582625802,-0.11387903854851494,-0.014059736761033404,-0.0013121529488334953,0.0004932453248208839,0.0529542281448077,-0.14910021247659971,-0.5239934678796464,-0.008465811169975015,-0.011378231002681002,-0.15208471483901884,-0.009702152044100333,-0.6427912746049463,0.6200352904567249,0.021523819290230273,0.0010077869181253066,0.0002722810789402944,0.46451328873109937,0.03351307211734931,3.050283217186167,0.005503833204418288,0.019528600475254128,0.09356329788571575,0.011892825322847625,1.9688887692771793,0.11515072885486845,-0.00038747463140255975,0.0004905721293953468,-0.04003743895319204,-0.04618335819996472,-0.14275758452318696,0.5084517446894561,-0.01850728511355456,0.0008442344938789551,-0.03012152214674714,-0.0017020669415895937,-1.810945174410217,-0.5959914567391332,-0.017698570701141544,-0.0010864604953458236,0.006204118870139604,-0.26003373456484535,-0.047552140617694506,-2.884243169690967,-0.006873009064323831,-0.016237512553218647,-0.2987775910511072,-0.010091446894581213,-2.2274905142996118,0.5667625936874795,0.01732018349308718,0.0012068886498054236,0.07125660664695872,0.30298754815013884,0.14788368879240885,2.9022266128180494,0.02957078084174359,0.015063868546388273,0.31516366744387037,0.010401308138493272,5.022450696835452,,,0.44866071428571436,0.90625,0.3125,0.015625,0.59375,-0.28125,1.087215571884678,0.026243987383243628,0.031618987383243626,0.8324010228668715,0.18208615228769953,0.2889890341532161,1.9196165947515496,0.4710751864409156,1.9771708484128145,1.483337199985299,0.0,0.33537049430177857,0.15846315412573714,0.49383364842751576,7.511338087016406,1484.0,408.03999999999996,185.0,524.0,10302.251693108223,5966.166617449313,81.82844524062098,408.4402999999999,490.53472222222223,496.37761999999987,12471.794007564147,1508.0,404.05000000000007,233.0,406.0,9147.032153102105,5714.977336505603,106.28832969400003,411.9305,214.49999999999997,492.44652799999983,15877.945654245712,2339.0,722.97,354.0,643.0,17098.94012896035,8772.804677954915,159.87047109909403,731.6813,556.5277777777776,880.2891239999998,23126.332035513202,2386.0,972.03,401.0,538.0,25264.21467193151,8487.047330011199,184.929072867168,982.2375999999999,520.5833333333334,1219.281492,25503.302985795624,2260.0,1015.1500000000002,381.0,515.0,27171.466315160415,7918.578712564801,177.48741521965795,1022.9280999999997,559.0972222222223,1275.723468,24177.724070093936,2173.0,941.9399999999999,354.0,525.0,25141.439880670263,7731.579828172798,165.94999396065805,948.6150999999999,540.875,1182.86916,22619.325903976292,2039.0,886.0,348.0,402.0,23615.626875120415,7165.4321987824,162.53613181356394,894.6101,463.63888888888886,1117.105852,22033.351485994714,2008.0,947.8899999999999,344.0,407.0,25311.451795509856,6896.702047059198,158.442580008262,953.5987000000001,509.1666666666667,1191.9126079999999,21426.589604645524,1957.0,902.0699999999999,326.0,468.0,24256.522080016264,6895.9797431728,147.50688427635606,905.7337000000002,573.4722222222223,1132.9742919999997,20069.911361677667,523.9344262295082,16.217704918032783,1.715050011809796,37.049180327868854,287.9344262295083,140.4428900509781,2520.287914689562,14.19742041078479,14.435367213114745,232.67668488160288,9.983152786885242,2923.2625698354273,-15.539908626713249,-1.370945982262827,-0.9619412651334317,3.376242945444778,34.13222252082771,5.351304077144116,-65.68368187992522,1.1858907995710821,-1.2079929051330214,-28.508133267640112,-0.9063577833915608,180.58011191104043,-8.029293200752488,7.46823703305563,0.07825044335069481,-8.383767804353665,59.511690405804835,43.53712245054583,-14.273371534101017,-3.0280870781864544,6.14673289438324,122.0128997581295,4.351999302338082,-830.8233014605977,-38.55253963988174,-0.9237651169040779,0.10578966773714654,-7.798710024187048,-5.241064230045682,-43.444243618637735,-160.53558110618957,-3.5622843406743048,-0.6992631550658577,-12.690288228970704,-0.8698300908357873,-538.8016404722509,-18.67616232195645,-2.3057968288094783,-0.21519308360869321,0.08089223327062495,8.684493415748463,-24.452434846162355,-85.93492873226201,-1.3883930318759024,-1.8660298844396843,-24.94189323359909,-1.5911529352324547,-105.4177690352112,94.24536414942219,3.2716205321150014,0.1531836115550466,0.04138672399892475,70.6060198871271,5.093986961837095,463.6430490122974,0.8365826470715798,2.9683472722386273,14.221621278628794,1.807709449072839,299.27109293013126,16.696855683955924,-0.05618382155337116,0.07113295876232528,-5.805428648212846,-6.696586938994884,-20.699849755862108,73.72550297997113,-2.6835563414654113,0.12241400161244849,-4.367620711278335,-0.2467997065304911,-262.58705028948145,-90.59070142434825,-2.6901827465735146,-0.16514199529256518,0.9430260682612198,-39.525127653856494,-7.2279253738895655,-438.404961793027,-1.0446973777772224,-2.4681019080892344,-45.41419383976829,-1.5338999279763443,-338.57855817354096,81.61381349099705,2.494106423004554,0.173791965571981,10.260951357162057,43.630206933619995,21.295251186106874,417.9206322457991,4.258192441211077,2.1691970706799113,45.383568111917334,1.4977883719430312,723.232900344305,0.7414188709786006,0.5464824552668647,0.4568001807911909,0.3172671901005966,0.3168631630713464,0.17541153611214322,0.19396699250780203,0.10568330603351349,0.12574395383143594,0.06174465697757135,0.08502774164812577,0.03463709563812398,0.05728183918766422,0.020931622808030674,0.038660115415805794,0.012358462193287758,9.014112275788863,5.6941394750528636,4.1245606136378825,2.1934296399100277,0.5031820344061075,-0.5213340586114901,4.022111522802968,0.9725959643650701,7.014097692663698,1.8556295550570985,17.430703036872604,10.954648097707391,19.005611988094135,11.705578479810303,1.9844797815078903,0.5269461997715545,4.00718569242105,2.243271416796111,8.007396560493616,1.1556610369687883,4.030646988040978,2.439234806175488,20.891708000769384,13.302779818144698,0.2601071284678514,0.6086776220103062,0.820701620099481,0.9183617914293678,0.9291337291317973,0.9291337291317973,1.6815034869531498,792.1815564413884,0.0,1.0,2.0,0.0,9.0,8.0,1.0,2.0,0.0,4.347344858270513,2.225434931274528,0.9347467214533438,0.34024405741251584,0.2746702869207134,0.2746702869207134,81.47099676931367,2448.320971460209,104.58788076354642,40.136409368200134,85.7210177885596,,19.0,951.0,41.93886050649862,33.285364511618404,31.115943089810234,19.26246486877803,12.13273413692322,18.208754243757102,6.076020106833881,12.152040213667762,0.0,9.843390348640755,14.35714285714286,29.0,10.0,0.5,19.0,0.0,0.05133928571428564,-9.0,0.20387662564153625,0.04789392090246414,-0.1559827047390721,0.07202380952380938,0.24083615819209003,0.0,0.6400468384074929,0.9482142857142852,0.43617021276595663,0.5921529175050287,0.8761904761904759,34.7908983003097,0.8398075962637961,1.011807596263796,26.636832731739887,5.826756873206385,9.247649092902915,61.427731032049586,15.0744059661093,0.47316384180790994,0.17578772802653392,0.03482587064676616,0.2786069651741293,0.5217391304347826,0.4426430835394106,-1.5259306502346341,-0.1022140260321949,-0.02501525656122351,-0.07266336429688734,0.5573569164605893,1.9213854990049895,0.045049136998217255,0.031498122934508016,0.048034637475124736,-2.6524584785477456,0.8090153013847955,0.7068141444021848,1.547350590443988,1.306023408506994,0.5764081221854084,0.9974774376080341,0.8031668709910585,1.1664092738518828,0.7003062180621563,0.7700819169658412,0.7557767570803389,1.0530385474427892,0.8672147001934235,0.5379642494817166,0.7651493250911888,1.3397425583266291,0.711336204219374,0.9132665856018054,0.8638225063938644,1.2763321234101108,0.5507458220110458,0.4879478619306551,0.5656767167109575,1.2232696286412168,0.9336511403585692,0.7297992440748259,0.8394123558146221,1.0779268361422691,0.8262231518726053,0.8842664785214595,0.9229681396241016,1.1063558627262278,0.7396417314759949,0.7032986095832028,0.766454676540587,1.097023531412429,0.9660723007417809,0.8905127602040209,0.8827697056963087,0.8788581912367797,0.8868889246851928,0.9322197358998562,0.9643831262069579,1.010984816171715,0.8953099604586936,0.8404914061954786,0.8939518402044301,1.0177747898870502,0.8765912159936763,0.720460175183227,0.8163847222578892,0.8843153237074988,0.7773151422167348,0.7912971842588342,0.8711584340667663,0.9429457346999163,0.7313684655579346,0.7392161159193021,0.7352002127297451,0.9636713497116189,0.9023240257218074,0.7068902775686389,0.8185772502859492,1.0219407995117487,0.8026252758385095,0.8141120753899238,0.89801846099503,1.065668659761854,0.7177529627922279,0.7071810409952044,0.7292665419194004,1.0606671009191955,1.040457644423951,0.923576396869174,1.0074353944717755,0.8789881229622729,0.9486809143103713,0.8072956072890382,1.0344407581768023,0.9699437008442359,0.9368096141806259,0.9017800425351679,0.935808945695335,1.0283122302625416,0.9264836253650397,0.8266428614750118,0.9869503350749723,0.7703724188790559,0.8877889432930992,0.7130707602802075,0.9156741122742237,0.7902668105170544,0.8399711270005418,0.7518119354558823,0.8429977162180379,0.866584085410298,8.0,0.26671360065299454,3.7777777777777795,2.513888888888889,1.4500000000000006,1.0799999999999998,0.6164625850340136,0.46531320861678005,0.3109174225245654,0.2937577160493827,6318.807977320388,7246.718915741298,2972.14815606074,2656.930186554807,14.412296624358463,0.4562050341184699,7.8373343511175015,0.8389283879797036,1.0,0.5217391304347826,1.5833924792923735,3.7053024062883586,4.995990616109543,5.590493280150371,5.656067050642173,5.656067050642173,0.24242424242424243,0.007844517666264548,0.08395061728395066,0.058462532299741604,0.03717948717948718,0.028421052631578944,0.017123960695389264,0.014100400261114547,0.00942174007650198,0.008901748971193417,0.5078302994894646,28.238751147842056,13.777777777777779,10.034602076124568,184.19899039345495,1.0,4.356401847789236,241.3789716941472,,205.35123534493232,203.64913577741817,208.0759949108224,205.15108197676454,271.94400390952563,204.85570708167964,205.53838713408965,235.62723499742336,-0.02918163833824539,-0.08317045828050867,-0.5518358513866432,0.08965886383100213,0.11662968976131519,0.037488495993994814,-0.025641621054241965,0.08218137484496475,-0.08233314269406598,-0.12054634816901179,-0.0893243976629666,0.060777136920295405,-0.008498407099783823,0.2553676319233088,0.02530155236144032,-0.12548672566371677,0.11461615701538254,0.17190840597324283,-0.003140606777162269,-0.1182758470616637,0.2361313527090914,0.29079707316274706,0.24174541678526704,-0.157607903617553,-0.028589478886825087,-0.022131066690978723,0.023966060254987112,-0.08178513048869851,-0.007072225034704736,-0.12018843084057211,-0.02474863953207283,-0.09748758716062628,-0.018821012878439798,-0.021190870686942174,-0.0338529790396929,-0.07161290083906471,-0.01325857016392441,-0.05288318826601701,-0.046669968413562524,0.0008121087848046498,0.011218554026806502,-0.06476022358818755,-0.012682519863844829,-0.036373824710874365,-0.04808136023952105,-0.039871496406701935,-0.059283002807249685,-0.013413187086067733,0.0721887145115605,0.0809580013534559,0.035844436944886864,0.0004482999534233785,0.09840890158098499,0.014556076127572332,0.07382778577156139,0.02364752298343451,0.0825226411911599,0.024529149424373318,0.07266866091108382,0.041084990505204394,0.013406628975875017,-0.001457416609502795,0.017448412400253032,-0.06592004882514495,-0.009784119554888901,-0.062005364976137206,0.012306354462631775,-0.07951757145046207,0.003567509116070791,-0.00789684987942191,-0.010400129663783208,-0.03778916638516064,-0.06938936828930897,-0.06657001210875355,-0.038642657508371966,0.010214834653004188,-0.0550891326756883,-0.020653808652232042,-0.06980902155094465,-0.02953026259652606,-0.06861538408572414,-0.07832943409603552,-0.0616617088519503,-0.046481257884380144,0.06598634577944654,0.06514677621884342,0.042925982992439715,0.11732116519174045,0.06418906095802017,0.06423183838685265,0.07024428532551509,0.12705249116777048,0.06365587849368003,0.08262531213154722,0.063555052195695,0.10480395968132634,17.136854882802677,23.318691054434108,5.8980462393313235,16.212338275540226,35.29584302319841,41.378341094947956,42.82986207538307,42.8959604360388,42.8959604360388,63.269467149210065,47.466790399529565,0.0,10.731855817656914,5.070820932023588,15.802676749680504,12158.591821401438,9740.886824643787,2961.1527054354137,67.0,45.0,51.0,60.0,67.0,63.0,65.0,62.0,63.0,458.19162330800077,33.0,5.056245805348308,5.855071922202427,6.71295620067707,7.538494999413465,8.399535147948004,9.239025005836092,10.102379394048045,10.95071882367088,11.816025566400365,0.6612021857923497,1.0137704918032788,1.1462269910113627,0.6257572765948154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6305094434082655,0.9966570234651237,1.0283213735627383,0.6079501923635189,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,4.0,6.0,0.0,1.0,0.0,5.0,0.0,1.0,0.0,0.0,25.162972533162872,18.460360185545124,0.0,0.0,0.0,4.794537184071822,0.0,13.171245143024459,0.0,30.370447495797134,43.37947212032425,18.75954929201341,17.7713842671936,314.3698742398174,-1083.7323443013522,-72.59349960322056,-17.7661040049402,-51.6063021095882,395.8408710091311,1364.5886271588565,31.994381160325858,22.370305363259938,34.114715678971415,0.47368421052631576,0.7386151828699515,0.1422961826442704,63.92654040353034,0.12068654960343662,1.17445068575907,0.26138481713004835,10.0,0.3333333333333333,0.2669807123751388,0.6247625203059449,0.8423894588058998,0.9426303951689872,0.9536869918043642,0.9536869918043642,3.560400000000003,,2.5,2.885017421602787,2.0999146958194315,2.5989603933445764,-12.488379589625575,2.63021502863153,2.4314688013136285,-4.033945864250276,110.94020000000005,43.12875486025916,0.0,0.0,11.835812092322787,56.59230579531843,6.606881964512918,54.13300019287896,0.0,5.749511833283905,4.204692619390966,0.0,5.5093883366279774,2.3978952727983707,6.974478911025045,4.844187086458591,8.518592212329946,6.985641817639208,10.111192540161147,40.33333333333333,4.3622019360057305,0.0,0.0,0.0,0.0,0.0,-0.8643850269913529,0.0,61.84000000000001,0.0,10.504861086523231,0.0,0.0,0.0,6.702160111238168,0.0,-0.8532104595022612,69.91984645169313,4.736862953800049,13.171245143024459,5.749511833283905,51.31419599507249,10.970835701515297,11.835812092322787,37.667559606327046,48.569548701181965,0.0,0.0,0.0,38.17119387228374,38.4610760479042,38.79580759764677,482.75794338829434,,410.54622068986464,407.1179579659862,416.0207451531561,410.13972892894503,546.4784004027299,409.54702572406984,410.92480746809724,472.0108348443937,38.79580759764677,482.75794338829434,,408.2024706898647,404.41325413323375,414.05207512582535,407.7032035601846,556.3763874086767,407.08119913472785,408.6453054668657,475.2884158590972,4.740279196171551,366.2126540008272,,312.45160029390746,310.0790909642281,316.61655829229403,312.2591806280894,409.0672407863158,311.7895828724419,312.6702540797852,356.13492968870383,1.2123689874264616,15.086185730884198,,12.82956939655827,12.722436186437069,13.000648286036128,12.816866529029532,17.07745001258531,12.798344553877183,12.841400233378039,14.750338588887303,2.40575954270459,241.3789716941472,,205.35123534493232,203.64913577741817,208.0759949108224,205.15108197676454,271.94400390952563,204.85570708167964,205.53838713408965,235.62723499742336,60.79607843137255,0.0,0.0,0.0,38.27446067683968,0.0,39.21046601001362,62.727603787327034,1.6166608702264629,0.0,5.24674649659519,0.0,-3.2942598538359746,0.0,-4.4890351804458275,0.0,0.0,37.084961734174655,524.5724394782567,96.58694123683478,226.02344678358986,304.7554275826821,341.02009008917264,345.0200900891726,345.0200900891726,608.0,140.67045286554463,185.63830577069177,81.54606879643124,107.22000000000001,107.22000000000001,0.9,7.38770923908104,6.044394119358453,3.6560018514038672,5.5623488379655806,,5.563891094775745,5.564102917448011,5.564636308629848,5.564197652134784,5.545172455333919,5.564050278425827,5.563726890732422,5.559005001064835,0.11425005785637085,0.1738234011864244,,0.17387159671174204,0.17387821617025034,0.17389488464468275,0.173881176629212,0.17328663922918497,0.1738765712008071,0.1738664653353882,0.1737189062832761,2.4595209697989517,2.879171281731588,,2.8794485104862018,2.8794865807209735,2.8795824390516267,2.879503606624647,2.876078531176488,2.8794771202073988,2.879418997603292,2.878569945410506,327.91000000000116,1193.771576367634,201.1745078938399,,200.6257089536096,200.51338071874818,200.62336889814785,200.56697180030403,204.5519114554101,200.57762696156044,200.66036987306947,202.29089538527361,37.30536176148856,6.2867033716824965,,6.2695534048003,6.266043147460881,6.26948027806712,6.267717868759501,6.392247232981566,6.268050842548764,6.270636558533421,6.3215904807898005,8.248023775881371,6.467323539675273,,6.464591837408874,6.464031791077368,6.464580173554222,6.464299024720393,6.483972598822883,6.46435214851312,6.464764586583964,6.472857547456338,43.521207173434874,10.504861086523231,39.21046601001362,-0.8454128504907847,-1.547704692659898,4.3622019360057305,1.4775895952189426,-0.26654159137904565,0.0,425.87648608489184,223.26886266767897,-769.6783558966534,-51.556683453432534,-12.61767796551891,-36.65135028079302,281.1304399993879,969.145505852731,22.722753287653948,15.887631243487391,24.22863764631828,3713.0,43.0,3.1549805891393934,0.9134863976306633,0.28867513459481287,0.013498731178900972,0.6810183471776501,0.15924477361444606,0.14433756729740643,0.004499577059633658,0.0,0.0,0.0,0.0,0.07856742013183861,0.07856742013183861,0.3515792847081216,0.1989670913886154,0.5192330043173644,0.22154421395649837,23.72540387131522,17.48743856853967,15.0744059661093,10.469817273319688,14.258842338210588,7.893519125046445,9.892316617897903,5.389848607709188,7.544637229886156,3.704679418654281,5.696858690424427,2.3206854077543064,3.6087558688228456,1.3186922369059324,2.512907502027377,0.8033000425637042,4.830917692798717,1.6856764780072895,6.356207879636697,2.1718161444607995,8.615749552894343,2.4223598229720187,109.57628950298918,50.83820913090517,32.40310917925064,27.705050602642736,27.447297334605828,27.447297334605828,156.0,174.0,64.22999699999998,35.03600300000001,0.26229508196721313,97.09,12.70138888888889,7.083333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,6.0,6.0,61.0,0.0,0.0,62.0,6.0,3.0,6.0,56.0,9.0,33.0,53.0,0.0,0.0,0.0,23.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,5.0,4.0,0.0,32.0,9.0,0.0,0.0,6.0,0.0,2.0,11.0,0.0,0.0,3.0,0.0,1.0,3.6888794541139363,5.66165754835553,4.119037174812473,4.433788569232471,4.805045110362947,5.172257988762215,5.202288178319095,5.355996478134715,5.263661219892335,5.457189027842106 +5280793,C=C1CC[C@H](O)C/C1=C/C=C1\CCC[C@@]2(C)[C@H]1CC[C@@H]2[C@H](C)/C=C/[C@H](C)C(C)C,0,15.287671232876713,5.482328767123289,2.684931506849315,3.0136986301369864,162.63109514232133,59.45301650684933,1.3465119426487122,5.5734739726027405,2.2405821917808217,7.1246380821917805,184.1445038480345,18.586666666666666,5.8726666666666665,3.4133333333333336,3.2133333333333334,143.0217045262114,67.42425860000003,1.778980177546667,6.035266666666667,2.219074074074074,7.357049439999997,240.31899585484624,14.662068965517241,5.673172413793106,3.1655172413793102,2.1724137931034484,150.80167567203884,51.97399523448275,1.498777110016387,5.804341379310343,1.8985632183908054,7.233425241379312,194.82727933882424,11.873831775700934,5.600093457943927,2.5981308411214954,1.47196261682243,154.4533007412729,40.044017457943944,1.3305480361799398,5.713275700934577,1.9208852544132924,7.199571663551401,165.4464923632917,9.268939393939394,5.454583333333335,2.143939393939394,1.053030303030303,158.99216432909006,29.705902397727264,1.158193285890421,5.550217803030303,1.787037037037037,7.100578136363637,136.49568472834693,7.951310861423221,5.3508988764044965,2.0112359550561796,0.9288389513108615,163.20842616005913,25.194024820224723,1.042039316944715,5.43121535580524,1.670620058260508,7.034611640449438,119.40906362846624,8.96888888888889,5.393911111111113,2.1955555555555555,1.0933333333333333,162.33917289455135,29.571068413333343,1.1013691201515914,5.4781155555555525,1.664753086419754,7.06641968,130.335949631253,10.352380952380953,5.471809523809527,2.3523809523809525,1.1428571428571428,157.74762746069828,34.461552609523814,1.2213603122887526,5.574280952380951,1.7142195767195771,7.104078095238096,147.7040380636184,9.148760330578513,5.460206611570248,2.103305785123967,0.8677685950413223,160.0717508127458,29.38175603719007,1.1289430784141412,5.550681818181816,1.7411042240587695,7.113715950413224,133.08130807081798,6.205291799587164,0.04001501219741036,0.004483544722902229,0.5764683805592042,1.9861137173953838,1.2930953141367831,29.928084571964717,0.23678268943128608,0.04517793206980665,0.46584725089134904,0.019127085757177704,52.91672277936033,0.18411459310689915,-0.0010268843435289581,-0.0015630706184642813,0.2556777381622567,0.7267629949333833,0.0836027997938452,0.9183002068480566,0.01461209406643712,-0.0007410736223179716,-0.07381655581270893,-0.0007189425608306568,2.68012557723329,0.34151972615681264,0.0013397350864819883,-3.2577944329386745e-05,-0.04354443157479248,-0.022863835487022907,0.06826507931666725,1.6506647850499179,0.012704715533090105,0.0018029559793194879,0.012067644400730757,0.00034642959473538636,2.9374937914722365,-0.6607392454967792,-0.0038730329373924104,-0.00012998460736407457,-0.09061509672870896,-0.27628142959612634,-0.10747121617513065,-3.1766404760102986,-0.020441662709240967,-0.0046827457940417025,-0.01822753012718473,-0.0014302384905024964,-5.0721031960673,-0.6669460129537064,-0.0022322185070824518,-0.00010933716888163025,-0.026758957562110122,-0.10421251357637172,-0.15143340230045893,-3.232955247400586,-0.027769742875419896,-0.0030960775658631593,-0.01302673696210242,-0.0005560041880618908,-6.132993638871488,0.1592354181030514,0.0016919294679735924,0.00010084365355119437,0.03545507129036727,0.09607806342653406,0.003322589727167532,0.7523102961795514,0.0011949448534807146,0.0018855792944126317,0.03421224950484505,0.0007146567906648817,0.7015582858698302,0.5316336189820896,0.0013085798878255052,-0.00014247086879420927,0.031750797522987435,0.06648902233064369,0.13204132393835402,2.584179778476679,0.024022771786327484,0.002014737640999959,-0.003981023933798053,0.00018680550614040252,5.158726786062399,-0.13992976436211563,0.0007038397269209908,0.000148024402569076,-0.054354877623783604,-0.1127934303764666,-0.06390665739434806,-0.6976533616581336,-0.011151963979704856,0.0005032029595475044,-0.0027624317277629303,0.00048258678033044676,-2.0368761473607506,-0.4612637230559748,-0.0012682670372156624,-8.024407839489198e-05,-0.07839298148754122,-0.1655544510079729,-0.11738906207572844,-2.242542786274694,-0.021273718168147365,-0.001838602283777045,-0.009606370732349503,-0.0002946596278898082,-4.519213569200414,,,0.4942528735632184,0.6810344827586207,0.13793103448275862,0.0,0.5431034482758621,-0.4051724137931034,1.5844109724397517,0.023970474448848724,0.03286702617298665,0.33838343863298115,0.0756441244282039,0.39742724810133,1.922794411072733,0.4730713725295339,2.0077538099784964,1.9469704805474684,0.0,0.06078332943102776,0.0,0.06078332943102776,5.429304329150702,1116.0,400.2100000000001,196.0,220.0,11872.069945389458,4340.070205000001,98.295371813356,406.8636000000001,163.5625,520.09858,13442.548780906518,1394.0,440.45,256.0,241.0,10726.627839465857,5056.819395000002,133.42351331600003,452.64500000000004,166.43055555555554,551.7787079999998,18023.924689113468,2126.0,822.6100000000004,459.0,315.0,21866.24297244563,7536.2293089999985,217.32268095237612,841.6294999999998,275.2916666666668,1048.8466600000002,28249.955504129513,2541.0,1198.4200000000005,556.0,315.0,33053.0063586324,8569.419736000003,284.7372797425071,1222.6409999999996,411.06944444444457,1540.708336,35405.549365744424,2447.0,1440.0100000000004,566.0,278.0,41973.931382879775,7842.358232999998,305.7630274750711,1465.2575,471.77777777777777,1874.5526280000001,36034.86076828359,2123.0,1428.6900000000005,537.0,248.0,43576.64978473579,6726.804627000001,278.22449762423895,1450.1344999999992,446.0555555555556,1878.2413080000001,31882.219988800487,2018.0,1213.6300000000006,494.0,246.0,36526.31390127406,6653.490393000002,247.80805203410807,1232.5759999999993,374.5694444444446,1589.944428,29325.58866703192,2174.0,1149.0800000000006,494.0,240.0,33127.00176674664,7236.926048,256.48566558063806,1170.5989999999997,359.9861111111112,1491.8564000000001,31017.847993359865,2214.0,1321.3700000000001,509.0,210.0,38737.36369668448,7110.384960999997,273.2042249762222,1343.2649999999994,421.34722222222223,1721.51926,32205.67655313795,452.986301369863,2.9210958904109563,0.32729876477186276,42.08219178082191,144.986301369863,94.39595793198517,2184.7501737534244,17.285136328483883,3.2979890410958856,34.00684931506848,1.3962772602739724,3862.920762893304,13.808594483017437,-0.07701632576467186,-0.11723029638482109,19.175830362169254,54.50722462000375,6.27020998453839,68.87251551360424,1.095907054982784,-0.055580521673847874,-5.53624168595317,-0.05392069206229926,201.00941829249675,49.520360292737834,0.19426158753988831,-0.004723801927761078,-6.31394257834491,-3.3152561456183216,9.898436500916752,239.3463938322381,1.8421837522980653,0.26142861700132575,1.7498084381059598,0.05023229123663102,425.9365997634743,-141.39819853631076,-0.8288290486019758,-0.027816705975911956,-19.39163069994372,-59.12422593357103,-22.99884026147796,-679.8010618662039,-4.374515819777567,-1.0021075999249243,-3.900691447217532,-0.30607103696753424,-1085.4300839584023,-176.07374741977847,-0.5893056858697673,-0.028865012584750386,-7.064364796397072,-27.512103584162134,-39.978418207321155,-853.5001853137546,-7.331212119110853,-0.8173644773878741,-3.4390585579950392,-0.1467851056483392,-1619.1103206620728,42.51585663351472,0.45174516794894914,0.026925255498168897,9.46650403452806,25.652842934884596,0.887131457153731,200.8668490799402,0.3190502758793508,0.5034496716081727,9.134670617793628,0.19081336310752342,187.31606232724465,119.61756427097016,0.2944304747607387,-0.032055945478697084,7.143929442672173,14.960030024394829,29.709297886129658,581.4404501572527,5.405123651923684,0.45331596922499073,-0.8957303851045619,0.04203123888159057,1160.7135268640397,-29.385250516044284,0.14780634265340806,0.03108512453950596,-11.414524300994557,-23.686620379057985,-13.420398052813091,-146.50720594820805,-2.3419124357380197,0.10567262150497592,-0.5801106628302154,0.10134322386939382,-427.7439909457577,-111.6258209795459,-0.30692062300619033,-0.01941906697156386,-18.971101519984973,-40.06417714392944,-28.40815302232628,-542.695354278476,-5.148239796691662,-0.4449417526740449,-2.32474171722858,-0.07130762994933358,-1093.6496837465002,0.7303942688601796,0.6753337006232809,0.44255063881795115,0.3923140565903727,0.2879408053016095,0.24170254910745834,0.1826679544812274,0.14627129196788166,0.11240770570758778,0.08555179851774906,0.07308368426881642,0.05073704065050819,0.046166800586967136,0.030621272718399685,0.02938285089358438,0.018375032286386307,8.006090895563336,5.697227846158829,3.5122910157655483,2.1971958434748027,0.3112985511512561,-0.32441276170317396,4.028834423910394,0.9778070083695435,5.006076822048437,0.9881650794352731,13.623211715536703,10.95753333881374,16.002046093596014,11.708246632912035,1.987006866987599,0.7879495322844801,3.4538502989671223,2.247188901879291,6.002603091016467,1.099469599914757,3.667568346350745,2.4431901278522297,20.896378766222654,14.708161906864454,0.16740608954344904,0.4408500001859499,0.7035784008643701,0.8433355060393403,0.8563739958132245,0.8737586488450707,1.5603514771906266,678.4273908657839,0.0,1.0,5.0,0.0,4.0,9.0,3.0,5.0,1.0,5.134533274488412,3.4108028148739544,1.7546205806779689,0.8736224316550292,0.7914306508331137,0.6818416097372229,399.40383530835663,1140.9918514888702,39.030264119561245,15.630025362861232,28.56035988024178,,15.0,693.0,0.0,5.106527394840706,6.103966387748303,17.250802561719567,37.01618300726221,43.25031717476858,5.573104530069267,0.0,65.50170210938713,0.0,14.333333333333334,19.75,4.0,0.0,15.75,0.0,0.005747126436781589,-11.75,0.02964735654948586,0.016731495574722643,-0.012915860974763216,0.014214559386973136,0.033620253164556524,0.0,0.4694063926940638,0.726436781609195,0.43975903614457795,0.45267489711934117,0.7122222222222219,45.9479182007528,0.695143759016613,0.953143759016613,9.813119720356454,2.193679608417913,11.52539019493857,55.761037921109256,13.719069803356483,0.6803797468354434,0.2325581395348837,0.03488372093023256,0.313953488372093,0.7142857142857143,0.20819252705167748,-0.3471057866868475,-0.0265861380880273,-0.004754873790230787,-0.012396635238815982,0.7918074729483224,1.3201288235193536,0.030445476205018786,0.018083956486566483,0.029336196078207852,-5.308691132188108,1.1952679327446474,1.077951603826674,1.3303529639612617,1.0721875000000003,0.8607709750566893,1.2236284029380544,1.1966159266936196,1.2231905612575158,1.105721078681405,1.186427660288688,1.0217212015041166,1.2175294681742173,1.0589039096032002,0.8873382104670795,0.7752048976608074,1.8230334051724142,1.361365235749472,1.1076544578519514,1.061002257349251,1.1060929232398158,0.9266562231965465,0.7274396638538738,0.810020882033924,1.094987820706166,1.1805766424100326,1.1212665471050127,0.9847875582678685,1.5150591413551404,1.3436009917985885,1.1791925513298993,1.1809836636823212,1.1809618746989325,1.1380988039700515,1.031506056413587,1.0822178052609939,1.1842070221614251,1.1005751234371048,0.8477515731314267,0.8253793639208001,0.9980468750000003,1.024234693877551,1.1375010473354064,1.1030577862555215,1.139620682573043,0.9118945346218752,0.7609039793707468,0.7102283082151268,1.136818245987546,0.9099166443542283,0.6688270219344559,0.6588938015700728,0.7785726825842698,0.8611429590562817,0.9529276966473118,0.9124202330932039,0.9539614738621471,0.728607431953207,0.5318382233688256,0.5429550396975911,0.9482596278952744,0.8745518325873958,0.7909360345151005,0.8049084911220573,0.9809375000000002,0.9998185941043083,0.8711949615672183,0.8751011162779195,0.8738673366104439,0.8149159886556026,0.7374004699563614,0.7349352948701947,0.8789883596348143,1.0248181236931693,0.6878044858911487,0.6068176244821433,1.3239397321428574,1.065322319403952,1.0924400099738907,1.0284487248377283,1.0929357570850629,0.7700380781172228,0.5695981393564478,0.5169160824741572,1.082052800259031,1.0702529323497687,0.9793109382048862,0.839602572011305,1.2125032283057855,1.0219261258222296,1.0945939932659603,1.0713390159018987,1.0939562198783515,1.0004188027372993,0.93652135194294,0.937313804105371,1.0886524730978633,7.5,0.12804815835118866,5.333333333333335,2.6319444444444446,1.7077777777777778,0.9030555555555555,0.7142857142857143,0.6250354308390023,0.46639581758629367,0.26594135802469143,4926.972570306261,6198.439533895558,2535.1228568730835,2094.366771370676,16.440522997077476,0.470733619323551,8.701416103091121,0.8894077472329001,0.0,0.7142857142857143,1.0552912843916062,2.779021744006063,4.435203978202049,5.316202127224988,5.398393908046904,5.507982949142795,0.2419354838709677,0.007532244608893451,0.11851851851851856,0.05483217592592593,0.04165311653116531,0.025801587301587305,0.019305019305019298,0.015625885770975054,0.012605292367197126,0.010637654320987655,0.5484469785212374,23.658688865764827,10.08,5.437517954610744,179.6110162794093,0.0,4.28946106167262,174.29788560473207,,154.90292682674448,154.82085479675558,155.08060901083877,154.90461777387412,158.17506711777588,154.88285751940018,154.90639257248014,156.44686412401438,0.029670577799282255,-0.025662477333829595,-0.3486238490005503,0.44352430555555544,0.3659221466364323,0.0646532385353627,0.030683560942228783,0.061710989521797474,-0.0164034427510516,-0.15845656633471342,-0.037587668605546125,0.050647988697415096,0.055036851962309626,0.033480811648201665,-0.007266113386351774,-0.07553654813218398,-0.011511846117757471,0.05279199342102496,0.05515437451671018,0.05365559266010868,0.03990789079353282,0.02590472387169959,0.018111990458629268,0.05551163483272207,-0.10647996368853081,-0.0967894978585827,-0.028991482275197343,-0.15719005549065435,-0.13910655123939505,-0.08311159664736237,-0.10614245854497593,-0.08633090011072411,-0.10365117612745446,-0.039127697098798576,-0.07477555695936479,-0.0958506674197448,-0.1074802014948077,-0.05578452646896641,-0.024386322795695355,-0.0464187776199495,-0.05247056735151973,-0.11710923444305386,-0.10802412829416663,-0.11727944699892695,-0.06853074994843183,-0.027963537269302653,-0.02906894417270245,-0.11589896948916127,0.025661229680390737,0.04228236791798575,0.022491947729678847,0.06150393063358308,0.04837490551776266,0.002569485552103756,0.02513726845333369,0.005046588736494124,0.0417367331355302,0.0734409174667953,0.0373636004845483,0.013257780320127201,0.08567423356585084,0.03270222388961791,-0.03177639069070931,0.055078125000000026,0.033476946334089215,0.10211259950818037,0.08634631368615625,0.10145493255451365,0.04459561446696781,-0.008545771014384626,0.009766543032845512,0.09748764691214988,-0.022550069985657256,0.017589391787478724,0.03301503870653012,-0.09428943452380953,-0.05679102328762192,-0.04942145926575374,-0.023310992722590202,-0.04709788543448881,0.011138246849589766,-0.005929908832728565,0.025230544080629188,-0.038492106849731346,-0.07433392948364854,-0.031694780722764354,-0.017897463581661215,-0.13598834581611563,-0.08335597783649731,-0.09078144572358342,-0.07493104949240244,-0.08984490470668871,-0.04069691107012445,-0.020621288875202627,-0.015405359270647546,-0.08540237058979568,15.213552134277762,26.379812012305464,7.841597758373326,8.169328622241625,24.05653839339778,30.6590906697559,31.84858885876554,32.53434228342308,32.644808036847735,58.22486048937639,56.46214393587658,0.0,1.762716553499805,0.0,1.762716553499805,9132.141682454694,8435.71327312453,1307.68341193153,133.0,45.0,59.0,73.0,86.0,92.0,103.0,116.0,121.0,396.33921602800126,31.0,5.030437921392435,5.8888779583328805,6.78332520060396,7.665284718471351,8.568076401730806,9.462110252078716,10.372083942084382,11.274376355068657,12.190212536286236,0.502283105022831,0.9331506849315069,1.1280240860757136,0.45239238460634823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6308005249774422,0.9220521085146389,0.9707270350896446,0.5566439833932343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,3.0,0.0,5.0,0.0,0.0,0.0,1.0,8.0,0.0,0.0,0.0,6.0,0.0,1.0,0.0,0.0,5.106527394840706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.64791116952566,91.94419821368108,0.0,6.103966387748303,142.47903411593697,-237.5459769068402,-18.19454006970579,-3.2540544781758927,-8.483784889530007,541.8828694242936,903.44587458203,20.835724049855454,12.37597088468534,20.076574990711773,0.4666666666666667,0.926044141783751,0.23558339440612447,123.66729087494818,0.12623372674680935,170.14954956193182,0.0739558582162488,8.0,0.16129032258064516,0.17048807673840596,0.4489661568871505,0.716531451903469,0.8588615196852846,0.8721400512559415,0.8898447600168179,7.641000000000008,,0.25,0.2857142857142857,0.1731341858783012,0.24926557909869373,-1.082294264339152,0.25872093023255816,0.2484948002189381,-0.3989944780580257,125.6418000000001,5.106527394840706,0.0,0.0,35.00452070020374,92.0892253696095,0.0,47.60232970114182,0.0,0.0,4.143134726391533,0.0,5.493061443340548,2.3978952727983707,7.036148493750536,4.844187086458591,8.674367865788236,7.065613363597717,10.36668683462848,36.666666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.12,4.2398182673308416,0.0,0.0,0.0,0.0,9.711770032536037,0.0,4.165222785823366,82.34575828352709,0.0,0.0,0.0,11.210493782589008,0.0,35.00452070020374,85.9852589818612,47.60232970114182,0.0,0.0,0.0,33.02464407626342,46.04843832335328,36.46998637891795,348.59577120946415,,309.7886122741786,309.6220051600136,310.1492777329963,309.7920448181552,316.7233391542894,309.7478722160257,309.7956475725314,313.03131255080746,36.46998637891795,348.5957712094642,,309.5558536534889,309.3559953077968,309.98808383579916,309.5599699686496,317.4324284998909,309.5069941085677,309.5642903447414,313.2927227260868,4.979482376566862,260.7397715130012,,230.7557330029111,230.66948528452005,230.94251615177063,230.75751016885312,234.20933425855992,230.73464096678867,230.7593754698247,232.3815785028383,1.2575857372040673,12.020543834809109,,10.682365940488918,10.676620867586676,10.694802680448149,10.682484304074318,10.921494453596187,10.680961110897439,10.68260853698384,10.794183191407154,2.5432475166693074,174.29788560473207,,154.90292682674448,154.82085479675558,155.08060901083877,154.90461777387412,158.17506711777588,154.88285751940018,154.90639257248014,156.44686412401438,67.30980392156864,0.0,12.01471484721816,0.0,0.0,0.0,10.035981801730324,70.86307356154406,9.247656148950272,0.0,0.0,0.0,3.3938607841484645,0.0,0.4409753322625348,0.0,0.0,40.6350107877061,633.7493316334071,77.03626376058726,202.8685873124426,323.7698904087496,388.08275528742416,394.082755287424,402.082755287424,888.0,137.23478528604943,50.61257190682343,79.02109508675402,20.23,20.23,0.875,7.682943169878292,5.954196310386875,3.823509461244029,5.293571642019281,,5.294479542361325,5.2946589129082895,5.294079177327122,5.294475809279127,5.285053873884246,5.294523734162966,5.294471889463199,5.290516741363805,0.13184515383600098,0.18253695317307866,,0.182568260081425,0.18257444527269964,0.1825544543905904,0.18256813135445266,0.18224323703049125,0.182569783936654,0.18256799618838618,0.1824316117711657,2.405879444989752,2.7312039236625245,,2.7313754189317594,2.7314092971453157,2.7312997967351995,2.731374713841961,2.729593549996684,2.7313837656666666,2.731373973482099,2.7306266607694623,361.4700000000017,684.1335851502168,181.67211803508178,,181.6158062784924,181.59018468229485,181.67137518790062,181.61633448433233,182.64686199221097,181.6095381407157,181.61688889663395,182.10155350702578,23.59081328104196,6.264555794313165,,6.262614009603187,6.261730506286029,6.264530178893125,6.262632223597667,6.298167654903827,6.262397866921231,6.26265134126324,6.279363914035372,7.592863935473648,6.266914250069906,,6.266604238350432,6.2664631525926096,6.266910161117194,6.266607146715527,6.272265309643818,6.266569724581645,6.266610199367466,6.269275254755092,0.0,0.0,10.035981801730324,4.606198118085901,3.5758050883661725,0.0,18.777481877268603,16.254533114549,0.0,454.01905953304447,97.50722300215608,-162.56741693428884,-12.451650076142856,-2.2269509169080655,-5.8059791762246,370.8439920150518,618.2839384745265,14.259175772398041,8.469642992801731,13.739643077211696,2428.0,48.0,2.5909169301718302,2.1049254506223996,0.11785113019775792,0.11785113019775792,0.8947867640450446,0.7254374273725301,0.09622504486493763,0.08977918909913549,0.0,0.0,0.0,0.0,0.08333333333333333,0.08333333333333333,0.3654508901400061,0.33410016014731353,0.8032859064252966,0.6417304403126505,21.181433796945207,19.584677318075148,13.719069803356486,12.161735754301555,12.957336238572427,10.876614709835625,10.777409314392417,8.630006226105017,8.205762516653907,6.245281291795681,6.285196847118212,4.363385495943705,4.247345654000976,2.817157090092771,3.026433642039191,1.8926283254977896,6.1648198830830125,4.890180540152381,8.938022415761997,6.877703353379882,13.251659018700272,9.60336977544166,109.13282877251477,52.494309688067204,32.29597430138994,24.834488845154958,23.342222563910024,22.585138095901538,152.0,180.0,76.90089199999996,44.14110800000003,0.2328767123287671,149.01,11.0625,6.319444444444442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,73.0,0.0,0.0,75.0,0.0,4.0,4.0,71.0,4.0,31.0,71.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,1.0,1.0,0.0,29.0,1.0,0.0,0.0,1.0,0.0,3.0,5.0,0.0,0.0,0.0,0.0,0.0,3.58351893845611,6.234410725718371,4.02535169073515,4.406719247264253,4.718498871295094,5.0238805208462765,5.288267030694535,5.552959584921617,5.820082930352362,6.016157159698354 +4919,OC(CCN1CCCC1)(c1ccccc1)C1CCCCC1,0,16.52,5.615698,2.74,3.6,163.36792046051443,64.4529641,1.35472156481242,5.699653999999999,2.397361111111111,7.233172239999999,188.15909343840565,19.884615384615383,6.004326923076923,3.5384615384615383,3.6538461538461537,144.73128241292983,72.94273028846152,1.7606432435769233,6.1581442307692305,2.2524038461538463,7.468860076923077,242.44655130210077,15.35,5.8528899999999995,3.1,2.57,153.03177301960338,54.13268838999999,1.4644739987333901,5.972224999999998,2.039305555555555,7.3861978,192.89164482767816,11.256756756756756,5.6631689189189185,2.554054054054054,1.6756756756756757,159.97973648750886,37.84137749999999,1.1898075090672973,5.751310810810811,1.9577702702702702,7.282799243243243,148.15593095660955,10.621794871794872,5.656121794871795,2.326923076923077,1.6153846153846154,161.46865002093205,35.44448716025641,1.1236002431128271,5.7340294871794875,2.0681089743589745,7.297740589743591,138.52912955160238,10.624203821656051,5.624764331210192,2.2802547770700636,1.4904458598726114,162.03056672340603,35.69700136305732,1.1239748556569937,5.703726114649681,1.9856687898089171,7.265834140127389,138.739194344611,10.282051282051283,5.6470769230769235,2.2435897435897436,1.2564102564102564,162.61660582672505,33.90153971794872,1.1248434481073848,5.723724358974359,1.9545940170940168,7.2844929230769235,137.70601192600336,9.060402684563758,5.535664429530202,2.0805369127516777,0.8657718120805369,162.19933251150175,28.70686624161074,1.1107768146111006,5.616805369127516,1.761744966442953,7.183293583892617,131.12994882742237,6.891304347826087,5.339652173913044,1.818840579710145,0.4782608695652174,164.05171358098224,20.2604360942029,1.0013494698684493,5.416206521739131,1.5108695652173914,7.026516550724638,110.48717652107723,6.5344,0.058363239999999955,0.0074349752962964534,0.49,2.2544000000000004,1.339106253084895,31.4026529764,0.23243570753801637,0.06092883999999994,0.5613361111111109,0.030389799999999977,52.20215466372009,0.33636923076923053,0.0008814138461538315,-0.002452091301714956,0.16346153846153846,0.5825230769230768,-0.06254874939995837,1.6253474170615356,0.007507159824400038,0.0015005446153846095,-0.03737243589743589,-0.0003824138461539044,2.03791478275576,-0.4184000000000003,-0.0026558600000000055,-0.0006225408472465141,-0.05,0.006399999999999998,-0.06609534607835114,-2.034110473600001,-0.019414801858542455,-0.0027435199999999997,0.007934722222222223,-0.0011227280000000398,-3.82785840646501,-0.3011567567567568,-0.0024724427027027034,-0.0002602452283662649,-0.060810810810810814,-0.10602162162162157,-0.023956431321329866,-1.4617511231567577,-0.013383707881017762,-0.00242842108108108,0.02558299549549549,-0.0012080410810810984,-2.5864707355628918,-0.07440000000000004,0.002055054871794868,0.0006196659257555422,-0.009615384615384616,0.031241025641025672,-0.04888775914891165,-0.37219620229743583,-0.0051711022983202464,0.0014650061538461561,-0.005967521367521355,0.001190306666666646,-1.2310077866062936,0.18050445859872608,-8.516356687898396e-05,-1.8651164541269842e-05,-0.007961783439490446,-0.04548280254777067,-0.043582361504006205,0.8668682151923564,0.001279781909083982,0.00048443388535031567,-0.019630520169851368,-0.0007577816560509695,0.8235044885335424,-0.39388717948717955,-0.006838701538461536,-0.0002979462597388586,-0.04487179487179487,-0.3649128205128204,-0.001309708569187497,-1.8421763292205129,-0.000410212631198454,-0.006861288717948712,-0.06736709401709401,-0.0035242523076923237,-1.2028090166953596,-0.8683597315436242,-0.008298018523489924,-0.0003030025429603448,-0.04865771812080537,-0.4122523489932885,-0.03720147855020563,-4.131038139889933,-0.0141963616609968,-0.009157511140939585,-0.058001845637583906,-0.0034508995973154314,-4.744189228582159,-0.6175884057971013,-0.0018882399999999911,-0.0001254084359879485,-0.018115942028985508,-0.1430956521739131,-0.0961108072297822,-2.990830128428984,-0.02303650441296725,-0.0027889849275362253,-0.006239492753623192,-0.00016971362318836673,-5.281834245905549,,,0.48730158730158735,0.8809523809523809,0.2857142857142857,0.0,0.5952380952380952,-0.30952380952380953,1.1221133691800858,0.005979612825864508,0.018265327111578793,0.47338668657011596,0.13129944080475925,0.35863587791095225,1.5955000557502017,0.4899353187157115,2.0457287120376,1.8561815960423595,0.10378901084855906,0.08575810514668168,0.0,0.18954711599524074,5.744498290960016,826.0,280.7849,137.0,180.0,8168.396023025722,3222.648205,67.736078240621,284.98269999999997,119.86805555555554,361.65861199999995,9407.954671920283,1034.0,312.225,184.0,190.0,7526.02668547235,3793.021974999999,91.55344866600001,320.2235,117.125,388.380724,12607.22066770924,1535.0,585.289,310.0,257.0,15303.177301960339,5413.268838999999,146.447399873339,597.2224999999999,203.93055555555551,738.61978,19289.164482767817,1666.0,838.149,378.0,248.0,23677.00100015131,5600.523869999999,176.09151134196,851.194,289.75,1077.854288,21927.077781578213,1657.0,882.355,363.0,252.0,25189.1094032654,5529.339996999999,175.28163792560102,894.5086,322.625,1138.4475320000001,21610.54421004997,1668.0,883.0880000000001,358.0,234.0,25438.798975574748,5604.429213999999,176.464052338148,895.485,311.75,1140.73596,21782.05351210393,1604.0,880.9440000000001,350.0,196.0,25368.190508969106,5288.640196,175.47557790475202,892.9010000000001,304.91666666666663,1136.3808960000001,21482.137860456525,1350.0,824.8140000000001,310.0,129.0,24167.70054421376,4277.32307,165.50574537705398,836.904,262.5,1070.3107439999999,19538.362375285935,951.0,736.8720000000001,251.0,66.0,22639.13647417555,2795.940181,138.186226841846,747.4365,208.5,969.6592840000001,15247.230359908657,326.71999999999997,2.918161999999998,0.37174876481482266,24.5,112.72000000000001,66.95531265424475,1570.13264882,11.621785376900819,3.046441999999997,28.066805555555547,1.519489999999999,2610.107733186004,17.49119999999999,0.04583351999999924,-0.12750874768917772,8.5,30.291199999999996,-3.252534968797835,84.51806568719985,0.390372310868802,0.07802831999999969,-1.9433666666666665,-0.01988552000000303,105.97156870329952,-41.84000000000003,-0.26558600000000054,-0.06225408472465141,-5.0,0.6399999999999998,-6.609534607835114,-203.4110473600001,-1.9414801858542456,-0.274352,0.7934722222222224,-0.11227280000000397,-382.785840646501,-44.571200000000005,-0.3659215200000001,-0.0385162937982072,-9.0,-15.691199999999991,-3.5455518355568203,-216.33916622720014,-1.9807887663906287,-0.35940631999999983,3.7862833333333326,-0.17879008000000257,-382.797668863308,-11.606400000000006,0.32058855999999936,0.09666788441786459,-1.5,4.873600000000005,-7.626490427230218,-58.06260755839999,-0.8066919585379584,0.22854096000000035,-0.9309333333333314,0.18568783999999677,-192.0372147105818,28.339199999999995,-0.013370680000000482,-0.002928232832979365,-1.25,-7.140799999999995,-6.842430756128974,136.09830978519994,0.20092575972618515,0.07605611999999956,-3.0819916666666645,-0.11897172000000222,129.29020469976615,-61.44640000000001,-1.0668374399999996,-0.04647961651926194,-7.0,-56.92639999999999,-0.2043145367932495,-287.3795073584,-0.06399317046695882,-1.070361039999999,-10.509266666666665,-0.5497833600000025,-187.6382066044761,-129.3856,-1.2364047599999988,-0.04514737890109138,-7.25,-61.42559999999999,-5.543020303980638,-615.5246828436,-2.1152578874885233,-1.364469159999998,-8.642275000000001,-0.5141840399999993,-706.8841950587417,-85.22719999999998,-0.2605771199999988,-0.017306364166336893,-2.5,-19.747200000000007,-13.263291397709944,-412.7345577231998,-3.1790376089894807,-0.3848799199999991,-0.8610500000000004,-0.02342047999999461,-728.8931259349658,0.692655205073983,0.6255573047233189,0.4473322475230409,0.3822477741060549,0.2859627076685517,0.2233536120026435,0.18638050404149112,0.13566048622975355,0.1215971471137577,0.08451748657932694,0.07918285483233345,0.05114956232628852,0.04861329834879108,0.029545474136900913,0.03272320947111254,0.018667369895906567,8.006108574329184,5.6925315140055694,3.512444080659405,2.192362823519596,0.32728567258408475,-0.37169124605510684,4.028827827683486,0.9959438782646304,5.012800891546623,1.8245364691904178,14.543266115038882,10.952863044156217,16.002047549171998,11.703631179183116,1.9849006632254111,0.787776108730424,3.454070001702519,2.242325973228678,6.002557694365123,1.1298355707689902,3.667773744621787,2.4383317898583883,20.893793744201133,14.708162317363282,0.20964181741828586,0.43649495032532065,0.5978134558872747,0.7763515266241762,0.8585966685592142,0.8585966685592142,1.6495640203262263,420.45231089625196,0.0,0.0,3.0,0.0,5.0,8.0,1.0,2.0,0.0,4.431841432282554,3.120321868806968,2.1876815597050827,1.1554887502163451,0.6799999999999979,0.6799999999999979,282.3093604921839,712.1796040873141,28.736057048872436,14.243592081746277,26.336263817541585,,9.0,329.0,5.601050810983688,5.106527394840706,0.0,5.917906046161393,18.52902952053558,58.03526417230724,0.0,6.06636706846161,29.165378004696915,0.0,10.233333333333334,18.5,6.0,0.0,12.5,0.0,0.012698412698412653,-6.5,0.048960451977401065,0.020499999999999963,-0.028460451977401102,0.020707070707070785,0.06904201680672228,0.0,0.49133333333333357,0.7555555555555552,0.4423728813559325,0.4708333333333336,0.7348484848484844,23.5643807527818,0.12557186934315467,0.3835718693431547,9.941120417972435,2.757288256899944,7.531353436129997,33.505501170754236,10.288641693029941,0.6449579831932777,0.032573289902280124,0.04885993485342019,0.13680781758957652,0.6842105263157895,0.23175882641421866,-0.3136577139497897,-0.021612049990443145,-0.006273154278995795,-0.01650830073419946,0.7682411735857815,1.0397220852264222,0.03299608382119446,0.020794441704528432,0.03353942210407813,-3.799687426888115,1.0902066224666618,0.9985549782046687,1.355606465371607,1.0192307692307692,0.8526914887809138,1.3425322011267349,1.0929949371519927,1.2132287577618819,1.0021779252901983,0.9978862246022447,0.9979621958177266,1.1725821179721856,1.1480625612144957,1.107904393244789,1.187984086739523,1.64,1.2063076650106457,1.2381212801602264,1.1498331272117697,1.1951938094393215,1.1017931738073463,0.7628933447478985,1.0453337633021609,1.1721213452999881,1.0685755386875613,1.1995803976723818,1.1285882442189041,1.527027027027027,1.1851598315846008,1.0408411339413806,1.067498003955563,1.0642557208404178,1.16826082733607,1.1745800152119898,1.2547591448268656,1.0518037416176147,1.0387727121474675,1.3268804965556211,1.2125809195391937,1.185897435897436,1.0951233826499973,1.0020404006716594,1.0350519484792655,1.0047068668117698,1.2725391347239394,1.7830610320131854,1.508377777226536,0.999713585490389,0.9843934228338649,1.22905497661282,1.3240851265460831,1.089171974522293,1.1075298467992387,1.0095156629535624,0.9816767298580291,0.9698479489669419,1.1767741528713351,1.4658662918069971,1.3537359019178121,0.9579212426319994,1.0796314259524349,1.383190857807072,1.4086726848104913,1.064102564102564,1.2887902403959892,0.9981232655721418,1.074872345543309,0.9660933763689483,1.3274166245115635,1.4539295552849527,1.4583848055631357,0.989117459886196,1.1016657737840914,1.033470691253213,1.0398063137426954,0.8120805369127517,1.104268580220157,1.0187697068898938,1.1013144889601847,1.0371484089603902,1.0558287802425246,0.8595729222672991,0.9491465190921312,1.0690785308397424,0.9824482959303894,0.5104765468365241,0.48248131066289435,0.5797101449275363,0.7465593853179868,0.9926826885650283,0.9881725793299576,1.0540527197826406,0.6088038135130671,0.25143813404138643,0.3154545751954722,1.0617766239185538,3.5,0.0,2.666666666666668,1.4722222222222223,0.622777777777778,0.5727777777777777,0.30689342403628117,0.09382086167800449,0.05848450491307636,0.013117283950617287,3529.182947520472,4341.03437848389,1910.9385410179023,1614.9509579914384,11.508376012354942,0.4672857798887623,6.1306755521685385,0.877179099501393,1.0,0.6842105263157895,1.2120147574921702,2.5235343209677565,3.4561746300696417,4.488367439558379,4.963856189774726,4.963856189774726,0.15217391304347824,0.0,0.08602150537634412,0.049074074074074076,0.021475095785440615,0.01909259259259259,0.010960479429867182,0.004264584621727477,0.004498808070236644,0.0032793209876543217,0.35084037398141527,15.879017013232515,7.513007284079085,3.8548483045806066,128.7180557219938,1.0,3.97703100984893,89.09180031392134,,81.1791946446485,80.46191413480709,80.02894752371975,81.18586687516168,93.91884013163923,80.8820857194418,81.22170200075698,89.50234130396429,0.05147668198598656,0.015102208961562657,-0.32980490236953497,0.33359497645211933,0.25839384178631863,-0.0467093251606174,0.05175828355276324,0.032297790661842234,0.02462782182271336,-0.06657764422720061,-0.01258362497133593,0.03903890166763726,-0.06403036238981397,-0.04550569844991483,-0.08373139417915985,-0.10204081632653061,0.0028388928317955985,-0.04935780557075848,-0.06477511550150536,-0.08352762174188334,-0.04502826576051673,0.014135420945066588,-0.036944237869286425,-0.07332759406433714,-0.046087897397887614,-0.04236301313468384,-0.035002836996095944,-0.12410369553226697,-0.04702875338077606,-0.01788986592075237,-0.046548650658761404,-0.05758025745174617,-0.03985667675736289,0.04557518212191339,-0.03975153114140598,-0.04954720264373417,-0.011385896180215483,0.035211459675557236,0.08334471885390303,-0.019623233908948195,0.01385780058597661,-0.03650775211921315,-0.011852380834738772,-0.022247452222780694,0.02404454366513719,-0.010630923700435413,0.039167966444881075,-0.023581551269986758,0.027623723463321204,-0.001459198750428935,-0.002508571151616395,-0.016248537631613155,-0.020175125331693872,-0.03254585765961861,0.02760493566718178,0.005505960863929072,0.007950814185044654,-0.03497106240144543,-0.024935394640667925,0.015775296897962504,-0.060279012531705985,-0.1171748096654939,-0.04007360453332953,-0.09157509157509158,-0.161866935997525,-0.0009780467876767248,-0.05866307953678186,-0.0017648434293657787,-0.11261151070574653,-0.12001204391384569,-0.11596826263063022,-0.02304136724707454,-0.13289050739832645,-0.1421788530501379,-0.040753671785739215,-0.09930146555266402,-0.18286566225749132,-0.027780826550921327,-0.13155060952953648,-0.061076509333983856,-0.15029846524141266,-0.10332819230669986,-0.11355453465687283,-0.09088109981558516,-0.09451340686170134,-0.03235324152668687,-0.016867364179463724,-0.03697131026323573,-0.06347394081525598,-0.07177235339493937,-0.09524132023739139,-0.09910914573742712,-0.04577446292324338,-0.01111543089802777,-0.00558455873972079,-0.10118038766657202,28.83072155578528,10.613124513753258,0.4999999999999999,10.217714796343177,20.418288133355425,26.221685960282503,30.401217943425426,30.880510603643504,30.880510603643504,42.960302952789604,38.97981351688955,2.1795692278197403,1.8009202080803153,0.0,3.9804894359000556,3291.011155009306,2471.041029091887,1259.056665779435,44.0,31.0,41.0,50.0,56.0,54.0,60.0,58.0,52.0,287.2249145480008,23.0,4.6913478822291435,5.53338948872752,6.398594934535208,7.264730177929867,8.14177220465645,9.018574356354229,9.901736019497323,10.78408892866831,11.670689608367322,0.5266666666666666,0.94296,1.130436483930268,0.47863958038464743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.634359245508982,0.9312156862745098,0.977348871085215,0.5665853165072258,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,11.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,10.006437125691184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.59430021108608,56.67497846431358,6.544756405912575,5.601050810983688,121.95682936887738,-165.05390923941877,-11.372758197719357,-3.3010781847883757,-8.687047854706252,404.26618986106126,547.1256948478954,17.36329885115308,10.942513896957902,17.64921596283533,0.4444444444444444,0.9433883704921724,0.2843457729513079,45.40656590277851,0.1561780404128906,83.420909240261,0.05661162950782772,5.0,0.21739130434782608,0.21474940479313454,0.4471294512322583,0.6123782240113378,0.7952660891130064,0.879515002307821,0.879515002307821,3.940400000000003,,0.3928571428571429,0.4713820381572824,0.39838377133594904,0.3917657575808813,-1.60047608252097,0.419905140758874,0.3887577933310232,-0.7183191063014545,87.20480000000006,5.106527394840706,0.0,4.899909730850478,5.917906046161393,56.96762379439177,19.634269217737724,35.89528683400505,0.0,0.0,3.8501476017100584,0.0,5.14166355650266,2.3978952727983707,6.650279048587422,4.442651256490317,8.25608813381491,6.259581464064923,9.916749226519313,26.333333333333332,10.430955530360292,0.0,0.0,0.0,0.0,0.0,1.135274943310658,0.0,47.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.52182419651341,0.0,0.0,0.0,29.64070634342891,5.601050810983688,5.917906046161393,56.930024475105085,30.33183534230805,0.0,0.0,0.0,23.931979019232372,31.717962275449104,28.171031292960528,178.18360062784274,,162.3209743233106,160.87893474217063,160.0199537358837,162.33442272579185,188.5998117311456,161.72418047309705,162.40637944976817,179.34673932521497,28.171031292960528,178.18360062784274,,161.9655321464398,160.45244623145692,159.65951127610356,161.97996799274247,189.43815634579943,161.3442662981247,162.05464620818296,179.72300171422995,4.878522273179621,122.96934376532424,,113.15121486284526,111.96116566962246,111.09558448676522,113.16185004471483,133.83146926424016,112.65079453485858,113.22259493622423,126.92832420600647,1.341477680617168,8.484933363230606,,7.729570205871933,7.660901654389077,7.619997796946842,7.730210605990088,8.980943415768838,7.701151451099859,7.733637116655627,8.540320920248332,2.440697283852311,89.09180031392134,,81.1791946446485,80.46191413480709,80.02894752371975,81.18586687516168,93.91884013163923,80.8820857194418,81.22170200075698,89.50234130396429,46.56078431372549,0.0,0.0,0.0,0.0,0.0,11.541034580498867,48.867443554260745,13.29798367031998,0.0,0.0,0.0,0.44097505668934245,2.5245401077097505,-0.6207638888888884,0.0,0.0,28.32926582536129,496.43267662680285,60.60073787460851,126.17671604838783,172.80873150348208,224.41837197791895,248.19280948873632,248.19280948873632,490.0,117.40492360096538,29.790342603135784,67.91505556048797,23.47,23.47,0.8,7.002212822668302,5.523561956057013,3.8736221968779647,4.510501286947867,,4.511415087946296,4.511634482640092,4.513000013033809,4.511416691272113,4.505893488419357,4.511567883077552,4.511395319361503,4.508341934021654,0.18445819985133166,0.21478577556894604,,0.21482928990220457,0.21483973726857583,0.21490476252541946,0.214829366251053,0.21456635659139794,0.2148365658608358,0.21482834854102395,0.2146829492391264,2.0961273822114888,2.248345642166555,,2.2485482157581473,2.2485968455904723,2.2488994684623003,2.2485485711511894,2.247323548736876,2.2485820837443247,2.2485438338452175,2.247866788523229,248.93999999999994,167.0694618693161,113.60839010682754,,113.20679239803164,113.17390226678177,113.17332898879212,113.20715452493107,114.11143868968362,113.19381729273333,113.20869102112405,113.69489843496277,7.955688660443623,5.409923338420359,,5.390799638001506,5.389233441275322,5.3892061423234345,5.390816882139575,5.4338780328420775,5.390181775844444,5.390890048624955,5.414042782617274,5.860347010004568,5.474694704863352,,5.471153512214501,5.4708629385723455,5.4708578730985025,5.471156711018324,5.479112848015895,5.471038891451507,5.471170283356331,5.475455875833354,0.0,2.5245401077097505,11.541034580498867,0.5145110544217695,0.44097505668934245,10.430955530360292,9.81884975749559,3.479133912824389,0.0,301.0884120637902,64.1764909662011,-86.85516645567121,-5.984607155775915,-1.7371033291134244,-4.571324550298485,212.73417500127124,287.91013504113755,9.136967545245497,5.758202700822748,9.287423711004436,903.0,30.0,1.1855653671550321,0.722740613113652,0.11785113019775792,0.04564354645876384,0.48864194209635614,0.21083902283746372,0.11785113019775792,0.03803628871563654,0.0,0.0,0.0,0.0,0.14433756729740643,0.11180339887498948,0.30618621784789724,0.21319402907515445,0.17423085626466897,0.12297024322296722,14.545759306553643,13.136703399189697,10.288641693029941,8.791698804439264,8.864843937725103,6.9239619720819485,7.6416006657011355,5.562079935419895,6.079857355687885,4.225874328966347,4.434239870610673,2.864375490272157,2.6251181108347184,1.5954556033926492,1.9633925682667523,1.120042193754394,3.2548235300916315,1.859863985556423,5.149873246314609,2.791210850038983,7.570264138681439,3.67194668970735,75.38320788956247,52.005704255533715,35.87131625108734,24.600692668797212,22.032967235008787,22.032967235008787,108.0,126.0,52.968996999999966,30.803002999999993,0.4,109.02,5.395833333333334,4.708333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,6.0,6.0,50.0,0.0,1.0,52.0,6.0,0.0,3.0,49.0,6.0,23.0,46.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,2.0,1.0,1.0,21.0,2.0,0.0,1.0,1.0,0.0,3.0,5.0,0.0,0.0,0.0,0.0,1.0,3.295836866004329,5.038574662785497,3.7013019741124933,4.123093975508087,4.5067301131748385,4.863198139155803,4.773329428969542,5.0316626612883315,5.049455285945838,5.050256568039992 +2576,CCCC(C)(COC(N)=O)COC(=O)NC(C)C,0,19.285714285714285,6.1669,2.4285714285714284,5.857142857142857,169.61526644028513,75.51950214285715,1.1697696599137144,6.190657142857142,4.8249007936507935,7.750939619047618,170.96200337226372,20.70731707317073,6.372853658536586,2.8292682926829267,4.878048780487805,152.0460168558487,75.81505241463411,1.49861188804878,6.482487804878049,3.078252032520326,7.832839512195118,215.55880093484134,16.216216216216218,6.21843243243243,2.6216216216216215,3.635135135135135,162.0783420133126,58.370463648648624,1.1955673098166621,6.271832432432431,3.316629129129128,7.7755231351351375,163.05187455333942,12.927083333333334,6.045354166666669,2.1666666666666665,1.9583333333333333,161.58767765482534,43.54178670833332,1.113365038212844,6.111770833333331,2.5303819444444446,7.640073999999998,145.7539005720177,10.586776859504132,5.995504132231404,1.9090909090909092,1.743801652892562,171.57497626520572,35.586031446281,0.8848267670851154,6.014385123966944,2.5561294765840215,7.6833934876033085,115.34909306347582,13.720430107526882,6.26666666666667,2.139784946236559,2.010752688172043,164.76417427169665,46.952658892473146,1.0311402261610756,6.307446236559137,3.2051971326164876,7.8796611182795715,141.24035466948317,11.68041237113402,6.399134020618558,1.8041237113402062,2.051546391752577,173.3383652773559,37.82675562886597,0.9240187646549178,6.397962886597934,3.618843069873998,8.027356701030927,122.20326160973642,10.905882352941177,5.839247058823529,1.9411764705882353,1.5176470588235293,168.5424836205408,37.049336235294106,0.9735893966119645,5.883335294117646,2.619607843137255,7.495289505882355,124.45231101902434,10.675324675324676,6.08453116883117,1.5584415584415585,1.5714285714285714,165.85062704762964,33.36295088311689,1.0004075087667141,6.124394805194807,3.6435786435786435,7.691677194805199,122.3679199973219,7.854875283446712,0.1597324263038548,0.028560934684798943,0.5215419501133786,3.9501133786848066,1.2172904826528153,37.0989853877551,0.1957401509199365,0.14842494331065753,1.9335514298311918,0.10123729705215415,45.309113299084174,-0.022122670206294156,-0.007450777058790951,-0.025753988762797293,0.12189591283667947,1.4970410928599074,-0.257442027523435,-0.16837342956694024,-0.03644666739009215,-0.004371284774072194,-0.1615042301925287,-0.006801004369227384,-3.90898426806101,1.239075810504382,0.06059595207452349,0.011266684179119196,-0.08074400931543788,0.72749279892137,0.13171891033813204,5.63848132073911,0.01173295334649398,0.052155494269780014,0.6433915846118227,0.040223101918244734,1.8870273560348179,-1.2457482993197286,-0.014844430272108834,-0.003941431135637856,0.002763605442176874,-0.23433956916099774,-0.29336150837838243,-6.01722317495748,-0.060140540689947904,-0.013824447278911555,-0.15621973615835213,-0.009241437925170064,-11.413257552044499,0.6980566331215685,-0.01145123779539364,0.00027113632577857393,-0.01859035625269391,-0.20670527164033656,0.1702435951337393,3.4763711942992055,0.038373417881967846,-0.008161031464927576,-0.11160086356244363,-0.00928391964168588,8.600405283446783,-0.8057201375173727,-0.02889253895106425,-0.0020812274775580952,-0.051495867164069946,-0.9823714432009363,-0.3937656685783828,-3.7664922879087093,-0.03593761710797132,-0.024848752834467087,-0.2662287211778381,-0.021147818301514187,-6.1018880878833155,-1.9147672814830403,-0.026849215700025658,0.004004285532431471,-0.018841901021577016,-0.7679827944923673,0.24378149957091944,-8.959649627814011,0.014921256095650625,-0.028683068003833766,-0.42432967125376314,-0.010954758024171908,-3.836202268316792,0.7781779378418037,-0.0035076083766840253,-0.005561353509516324,-0.11593970921702011,-0.21453914899293056,-0.03332198648435088,3.7585556256902746,0.013273568718809161,-0.0005322262238228907,0.006339248662427983,-0.004876263998932893,5.104201475324981,-2.4825809111523403,0.005638754895897767,0.005741360905328619,0.004122861265718404,-0.09049680478251913,-0.20400505188654303,-12.03683544526901,-0.07554901980972438,-0.0015828901257472266,0.27437605934629716,0.009168300968872395,-20.24967250404335,,,0.45185185185185184,0.7638888888888888,0.16666666666666666,0.0,0.5972222222222222,-0.4305555555555556,1.0730542535213572,0.03481678342239706,0.03481678342239706,0.5575942157976969,0.14291415348259554,0.31750314989351275,1.6306484693190542,0.46041730337610826,1.8837869138190833,1.2737918701410726,0.20112505679457038,0.4088699868834405,0.0,0.6099950436780108,6.194609696380955,810.0,259.0098,102.0,246.0,7123.841190491976,3171.8190900000004,49.13032571637601,260.00759999999997,202.64583333333331,325.53946399999995,7180.4041416350765,849.0,261.28700000000003,116.0,200.0,6233.886691089797,3108.4171489999985,61.443087409999976,265.78200000000004,126.20833333333336,321.14641999999986,8837.910838328495,1200.0,460.1639999999998,194.0,269.0,11993.797308985133,4319.414309999998,88.47198092643299,464.1155999999999,245.4305555555555,575.3887120000002,12065.838716947117,1241.0,580.3540000000002,208.0,188.0,15512.417054863232,4180.011523999999,106.88304366843302,586.7299999999998,242.91666666666669,733.4471039999997,13992.374454913699,1281.0,725.4559999999999,231.0,211.0,20760.57212808989,4305.909805000001,107.06403881729896,727.7406000000002,309.2916666666666,929.6906120000003,13957.240260680574,1276.0,582.8000000000003,199.0,187.0,15323.068207267788,4366.597277000003,95.89604103298002,586.5924999999997,298.08333333333337,732.8084840000001,13135.352984261934,1133.0,620.7160000000001,175.0,199.0,16813.82143190352,3669.195295999999,89.62982017152703,620.6023999999996,351.0277777777778,778.6536,11853.716376144432,927.0,496.3359999999999,165.0,129.0,14326.111107745968,3149.1935799999987,82.75509871201699,500.08349999999996,222.66666666666669,637.0996080000002,10578.446436617069,822.0,468.50890000000004,120.0,121.0,12770.498282667482,2568.9472180000002,77.03137817503699,471.57840000000016,280.55555555555554,592.2591440000003,9422.329839793787,329.9047619047619,6.708761904761902,1.1995592567615556,21.904761904761898,165.90476190476187,51.12620027141824,1558.1573862857142,8.221086338637333,6.233847619047616,81.20916005291005,4.251966476190474,1902.9827585615353,-0.9070294784580604,-0.305481859410429,-1.055913539274689,4.997732426303858,61.37868480725621,-10.555123128460833,-6.90331061224455,-1.4943133629937781,-0.17922267573695994,-6.621673437893677,-0.27884117913832274,-160.26835499050142,91.69160997732426,4.484100453514738,0.8337346292548206,-5.975056689342403,53.83446712018138,9.747199365021771,417.24761773469413,0.8682385476405545,3.8595065759637213,47.610977261274876,2.97650954195011,139.64002434657652,-119.59183673469394,-1.425065306122448,-0.3783773890212342,0.2653061224489799,-22.496598639455783,-28.16270480432471,-577.6534247959181,-5.773491906234999,-1.3271469387755093,-14.997094671201806,-0.8871780408163261,-1095.6727249962719,84.46485260770979,-1.3855997732426304,0.032807495419207446,-2.249433106575963,-25.011337868480723,20.599475011182456,420.64091451020386,4.643183563718109,-0.9874848072562368,-13.503704491055679,-1.1233542766439915,1040.6490392970607,-74.93197278911566,-2.687006122448975,-0.19355415541290286,-4.789115646258505,-91.36054421768708,-36.6202071777896,-350.28378277550996,-3.3421983910413324,-2.310934013605439,-24.75927106953894,-1.9667471020408194,-567.4755921731484,-185.7324263038549,-2.604373922902489,0.3884156966458527,-1.8276643990929704,-74.49433106575962,23.646805458379184,-869.0860138979591,1.4473618412781106,-2.7822575963718754,-41.159978111615025,-1.062611528344675,-372.1116200267288,66.14512471655331,-0.29814671201814213,-0.47271504830888755,-9.85487528344671,-18.235827664399096,-2.8323688511698246,319.47722818367333,1.1282533410987787,-0.045239229024945704,0.5388361363063785,-0.41448243990929584,433.8571254026234,-191.1587301587302,0.434184126984128,0.4420847897103037,0.3174603174603171,-6.968253968253974,-15.708388995263814,-926.8363292857138,-5.817274525348777,-0.12188253968253646,21.12695656966488,0.7059591746031744,-1559.224782811338,0.7878776819930395,0.6453400458322719,0.48750067416293824,0.36139203592074115,0.3530262780510094,0.22925189177000996,0.21466291516221095,0.11873469474608608,0.14919717021344084,0.07390785179708405,0.10119465417098067,0.0329669639337874,0.06132431481888926,0.017646355460658503,0.047840220735427215,0.012818052930413038,8.031188535069408,5.785529147303055,3.558456636327233,2.284751637298136,0.501525056445367,-0.47790649498032745,4.018959172380619,0.9725407452863368,6.030327896528069,0.9871520879340273,14.540744516954947,11.045954671616023,16.01612757900483,11.79694648109292,1.8909191154242775,0.7392662693583121,3.5047838894698,2.334568857018176,7.009360041034498,1.148061227484029,3.7174722391835253,2.53060022313519,20.798179840283048,14.699753918736837,0.2782703537140097,0.48917179599897875,0.6908978778222029,0.8049814411999735,0.8137570999213405,0.8313084173640745,4.154373849279586,281.25097565253355,0.0,0.0,6.0,0.0,0.0,3.0,0.0,0.0,1.0,3.8823488101419437,2.7379417471551775,1.6433226192536647,1.0242750002060452,0.9766559525869978,0.881417857348902,233.15418939572706,1194.5651566973813,51.804055557447555,28.442027540413843,56.237384646994656,,10.0,261.0,17.60147061127361,9.589074368143644,19.255604758173796,0.0,12.841643245852019,0.0,0.0,27.694948798762496,5.316788604006331,15.207393384762284,8.133333333333333,13.75,3.0,0.0,10.75,0.0,0.048148148148148176,-7.75,0.13492063492063489,0.0,-0.13492063492063489,0.0878306878306877,0.2200728744939271,0.0,0.5634920634920638,0.9148148148148147,0.42857142857142894,0.5634920634920638,0.826984126984127,19.31497656338443,0.6267021016031471,0.6267021016031471,10.036695884358544,2.5724547626867196,5.715056698083229,29.351672447742974,8.287511460769949,0.4939271255060729,0.3770491803278688,0.06147540983606558,0.18442622950819673,0.8333333333333334,0.27488740983886883,-0.6340905040861398,-0.04938700591073293,-0.015097392954431901,-0.05284087534051165,0.7251125901611312,1.6726375648997247,0.05064761201839171,0.03982470392618393,0.055754585496657495,-2.220094574170207,1.0002886836027711,0.8299146815820108,2.049146830878122,1.3467391304347829,0.5033008036739381,1.7890899112998093,1.0129545101746125,1.653866519353654,0.8150824836453524,0.7102715447121365,0.8389228889678118,1.395229501523368,0.8363593096560763,0.561849248989201,0.6229870274975086,1.9855611045828443,0.8616144847488133,1.0880036774977049,0.8454912562848781,1.110838897598636,0.5881702180705013,0.3497507602216318,0.5526248027337161,1.0641182471596835,1.1178573361720552,0.9409408183328128,1.085076693294115,0.9846127717391306,0.9434692522962116,1.4168613708079236,1.126439990223246,1.4733383039761003,0.9460565538710328,0.7652836157979287,0.9392586743561212,1.3553872460459544,0.9156536894241596,1.2052964797719996,1.1273523952388018,1.0054796981674454,1.1743768443225706,0.6829380896732629,0.9059925401797448,0.6791232799963133,1.1809759926871664,0.924651746683504,1.2589771753322379,0.7143902773384945,1.155921738806526,1.3875333951244264,1.4767532884919454,1.247826086956522,1.474806488648569,1.3654983188846597,1.1511292096745624,1.2335861387260696,1.356884081719471,1.3528774260802905,1.469622224234018,1.150589754214624,1.3427180305230826,1.561755280428119,1.0522976594014393,0.8490363065889738,1.4292761016487747,0.7345651310742697,1.3310557586819742,0.7578813561001523,1.5579618721415378,1.8930966794503175,1.5245868667409228,0.9549395693107788,0.8304714033419371,0.841476558937933,1.1312935185801127,1.4973913043478266,0.9652596744782875,0.9946064129175376,0.8313577484241444,0.9125347910311182,0.8344662256778708,0.9334717191875397,0.8430216429922076,0.8726615651550892,1.2863610119672473,0.8901706368359786,0.5593311432605139,0.5712450592885377,0.8649540757749715,1.2612029348498577,1.296930735937061,1.4314433236914048,0.9363039218654643,1.0519018050846218,0.8211119826383649,1.4672542581347927,6.0,0.0,2.000000000000001,1.125,0.9600000000000002,0.4444444444444444,0.4081632653061224,0.21875,0.0987654320987654,0.08000000000000002,2972.3120871233286,3585.8933993849764,1656.4346630271084,1415.5566071394787,12.260018527521737,0.43325015694924374,6.948363576272309,0.7644468935661324,1.0,0.8333333333333334,1.509968612636817,2.6543756756235832,3.748994803525096,4.3680424225727155,4.415661470191763,4.510899565429859,0.3529411764705882,0.0,0.09090909090909094,0.05625,0.045714285714285714,0.021164021164021163,0.02551020408163265,0.013671875,0.00987654320987654,0.013333333333333336,0.6293705298828287,18.0,8.991735537190083,9.6,108.1935018259143,1.0,3.733816799994347,79.9752737376119,,68.44795274047172,66.7721462578935,69.55222833524536,68.47490613956715,118.36546158139396,67.92511367581562,68.53003032814074,94.6488465295347,-0.002816425392891375,-0.0466453633191393,-0.9017207961511289,0.23372216330858983,0.3789868667917447,-0.2114877518490057,-0.004538491492614071,-0.1861992402621571,-0.02945114666422997,-0.08352724820287237,-0.06717884186224103,-0.08627368719970122,0.15774608326571377,0.3793591162213576,0.3944788328344062,-0.1548178613396005,0.1841701058118968,0.10820663778712852,0.15198478507717217,0.059941474916370655,0.3513930550110915,0.3327512134849156,0.39731505175926524,0.0416478544521188,-0.15859555427251742,-0.09293310453990515,-0.1380007755045781,0.0052989130434782684,-0.05932477037887487,-0.24099548346017288,-0.16219373958791677,-0.30724682906036566,-0.09314099753419884,-0.08079419753111551,-0.09128491370536274,-0.2518976144314701,0.0888692191704999,-0.07169012617144029,0.009493258143364667,-0.03564498742364355,-0.05232894649448246,0.13985453559345265,0.09370529026507063,0.1960426499194011,-0.054984231645258654,-0.057718073510042045,-0.09170453886084204,0.18981623468717543,-0.10257580272666321,-0.1808808619491119,-0.07286972574695856,-0.09873772791023848,-0.24869449279656314,-0.32347716029148416,-0.1015254797009052,-0.1835985971149622,-0.16741628650959264,-0.13768897846233194,-0.20889354928766543,-0.13467242335123455,-0.24376800552367803,-0.16808869884034128,0.14020148768319832,-0.0361272971761542,-0.19442044338182204,0.20026567450001875,-0.24150659469979024,0.07622992025664606,-0.19324964769431852,-0.21945610791992698,-0.10820871697639631,-0.0846673436973734,0.09906941991577234,-0.021959275632685838,-0.19471889036167492,-0.22230179028132993,-0.05431214965894512,-0.027373898801650844,0.10131154764493436,0.06781219211503746,-0.003585827368038312,0.0032785518733170855,-0.04816667513772914,0.11265286613825991,-0.31605605710686546,0.0353012536425842,0.2010214640623914,0.007905138339920941,-0.022909925895000544,-0.16758945772906986,-0.3244518770381761,-0.3859658810655876,-0.01066458299016624,0.14190264355691407,0.09056248275918692,-0.4469227276723743,2.94168275343288,2.8942732981098738,0.6551853485522243,14.765960380245186,25.568668146050577,29.291806131737207,31.34352041745149,31.91547279840387,32.01147279840387,33.9081644487435,22.92825366253931,3.620251022302267,7.359659763901929,0.0,10.979910786204195,3259.4732774758863,3234.1769347748514,676.4762100065914,4.0,22.0,20.0,21.0,21.0,16.0,16.0,10.0,6.0,260.1736072480001,17.0,4.3694478524670215,5.093750200806762,5.926926025970411,6.68586094706836,7.52131798019924,8.299285906897275,9.133135301067211,9.922848906014748,10.754599558385289,0.5634920634920635,0.9803809523809525,1.1524403942549106,0.5160626568502682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.590975648702595,0.9639589169000933,1.007213956230708,0.5446918379808672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,4.0,0.0,0.0,1.0,0.0,4.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,20.524181988768614,13.213763929025836,0.0,0.0,0.0,0.0,9.589074368143644,0.0,0.0,20.268296022307258,20.268296022307258,11.45683129854474,0.0,142.35354666346578,-328.3709218083056,-25.57561823076368,-7.818355281150133,-27.364243484025465,375.50773605919284,866.1942348890757,26.228437326683874,20.62367225926371,28.87314116296919,0.5,0.8031180630873144,0.19464529486050633,40.8112617284604,0.17637321149356372,54.6474557136477,0.19688193691268555,5.0,0.4117647058823529,0.2800222046013571,0.4922513768219035,0.6952474251030218,0.8100492015030122,0.8188801073799344,0.8365419191337792,2.0227,,1.2857142857142858,1.5141926477431362,1.1430359144285005,1.28206267335915,-5.365540693720244,1.3572521419828643,1.2745051870999227,-2.2346271687189603,68.17010000000005,19.06280027574374,0.0,5.316788604006331,11.148657946558965,46.578432873762466,13.213763929025836,0.0,0.0,0.0,3.5553480614894135,0.0,4.812184355372417,0.0,6.220590170099739,0.0,7.704811922932594,0.0,9.234545060673,23.666666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.176,0.0,21.990500826133943,0.0,0.0,0.0,0.0,0.0,-1.2820712343579412,48.40249655870625,11.050456081168516,9.589074368143644,0.0,31.442084900050627,9.473725907600098,5.41499046939678,40.53659204461451,0.0,0.0,0.0,0.0,21.674631587711264,24.82097724550899,20.09413110279759,159.9505474752238,,136.7530483380863,133.37604888825996,138.97745267999863,136.8073608709833,237.32709435097905,135.6994215580776,136.91844896882594,189.54598496670482,20.09413110279759,159.95054747522377,,135.61019119522916,132.0300998680439,137.96142075606218,135.66774960577516,242.0964638565082,134.49297520964848,135.78555546918153,191.53232022778826,4.542361672358252,116.09272916859763,,98.99942510887348,96.40246437751617,100.94261072531793,99.0418448694025,177.58966193315413,98.19868784860162,99.12571540786563,140.0397324511542,1.1163406168220884,8.886141526401323,,7.597391574338128,7.40978049379222,7.720969593333257,7.60040893727685,13.184838575054393,7.538856753226534,7.606580498268108,10.530332498150267,2.2711808361791266,79.9752737376119,,68.44795274047172,66.7721462578935,69.55222833524536,68.47490613956715,118.36546158139396,67.92511367581562,68.53003032814074,94.6488465295347,40.48627450980392,0.0,7.60138891122973,0.0,0.0,4.93638882251707,0.0,42.30298616168974,2.0008187673217432,2.6287037037037035,9.92078443877551,0.0,0.02481560216679224,0.0,-0.4046631708238855,0.0,0.0,22.87705719519642,415.9037503281337,63.418681730746314,111.4837783761905,157.45778174805403,183.45778174805406,185.45778174805403,189.45778174805406,171.0,102.70717267887632,101.95753239452489,49.52747957056716,90.65,90.65,1.0,5.332718793265369,5.087462841250339,3.4907140303124073,4.168872830893369,,4.167830584640367,4.1677586690090545,4.171097982039226,4.167841576715977,4.168958683013939,4.167972089610099,4.167816800053712,4.168720698681702,0.1939285572395782,0.2316040461607427,,0.2315461435911315,0.2315421482782808,0.23172766566884592,0.23154675426199875,0.2316088157229966,0.2315540049783388,0.23154537778076179,0.2315955943712057,1.8378929734028417,2.015432359831908,,2.015182321847712,2.0151650667673264,2.0159659710995173,2.015184959205659,2.0154529532249095,2.01521627298002,2.0151790144653288,2.015395866757223,214.77999999999952,110.16462617462318,79.99119750693364,,79.85866087115343,79.88419668580218,79.66612793780553,79.85771884800947,79.17260904525865,79.85790102991379,79.85832233421576,79.46104422712817,6.120257009701287,4.443955417051869,,4.436592270619635,4.43801092698901,4.425895996544751,4.436539936000526,4.398478280292148,4.436550057217433,4.436573463011986,4.414502457062676,5.289762513489981,4.969703262358799,,4.968044997941223,4.968364709448289,4.9656311658556955,4.968033201741664,4.959417058516042,4.9680354830702464,4.968040758730954,4.96305355674675,9.92078443877551,21.990500826133943,2.6287037037037035,4.5317256516931845,0.0,0.02481560216679224,0.3875915427899548,7.932544901403578,0.0,267.98979273994746,73.71939027526224,-170.05058677647096,-13.244622463408295,-4.0488234946778805,-14.170882231372582,194.46091786789512,448.56845756662864,13.582692197807372,10.680201370634016,14.95228191888762,692.0,20.0,2.031948410819176,1.3052310189905851,0.1767766952966369,0.1767766952966369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.181798275874712,11.616120824980895,8.28751146076995,6.1436646106526,7.766578117122206,5.043541618940219,4.293258303244219,2.374693894921722,3.1331405744822574,1.552064887738765,2.125087737590594,0.6923062426095353,0.9811890371022282,0.28234168737053605,0.7654435317668354,0.2050888468866086,2.3308283786687483,1.2630165502896125,3.1462573218061443,1.5564287106777286,3.714832950414567,1.236764250501919,61.518871564677056,36.630573556558055,29.129295295366482,23.930375297834697,22.96114174846934,22.505462239368626,78.0,81.0,41.45103199999997,29.284967999999996,0.0,17.06,9.145833333333334,4.208333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.0,0.0,0.0,41.0,0.0,2.0,2.0,39.0,2.0,17.0,39.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,4.0,2.0,0.0,18.0,6.0,0.0,2.0,4.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,2.995732273553991,1.9459101490553132,3.295836866004329,3.1780538303479458,3.258096538021482,3.332204510175204,3.044522437723423,3.044522437723423,2.772588722239781,2.0794415416798357 +3559,O=C(CCCN1CCC(O)(c2ccc(Cl)cc2)CC1)c1ccc(F)cc1,0,27.06122448979592,6.149261224489797,3.204081632653061,6.767447719828673,162.6457856432577,109.76918139081164,1.5582051798270817,6.257291836734694,4.918617161084827,7.711351040816325,223.79370918148888,24.980392156862745,6.231372549019608,3.9019607843137254,6.061002178649237,144.24370193566568,95.19708723206274,1.8894139765882352,6.402892156862745,2.931776002582103,7.67286662745098,270.6742550096426,21.24175824175824,6.143725274725274,3.4395604395604398,4.402930402930402,151.84175451058948,79.47943077659778,1.621878376087286,6.284565934065934,2.832960249626916,7.64195832967033,226.34496440373607,16.615384615384617,6.07896923076923,2.792307692307692,2.943589743589744,158.65657380825508,59.368508873243066,1.354607859576769,6.189915384615385,2.8843304843304844,7.661340676923076,181.45360784075902,13.042857142857143,5.940642857142858,2.357142857142857,2.2150793650793648,160.91060263910322,44.19607068347428,1.2000673224126572,6.030932857142857,2.6916923868312757,7.561563528571428,153.05004546845797,11.262773722627736,5.6802116788321175,2.18978102189781,2.022708840227088,163.08545275872885,38.47886915938102,1.1049135315259415,5.7583583941605845,2.22061142651167,7.326844364963505,136.49570507081313,13.495798319327731,5.739857142857143,2.2941176470588234,2.1260504201680672,164.26174426098368,48.40398806413445,1.1150296929046892,5.8298747899159675,2.5180905695611577,7.394247579831932,139.26527969281807,14.447916666666666,5.97553125,2.4375,2.053240740740741,165.6190443964242,50.087019173816664,1.1898882016049375,6.089078125,2.5296746399176953,7.661982166666668,151.60301575912922,15.675324675324676,6.1092870129870125,2.5714285714285716,2.518037518037518,160.3211927427513,53.9895536322909,1.3260163137206493,6.2366610389610395,2.783790283790284,7.74344651948052,172.92723584579068,10.733027905039567,0.14176018325697615,0.01106621353365141,0.6047480216576426,3.702963271476392,1.8265758256516278,50.92825822374885,0.259198889146898,0.13823140358184083,2.0196583518489,0.09161048229904206,52.57084567727064,0.10810854954226663,-0.0037330524046352625,-0.004279771878843437,0.11554009358845577,0.7921779949067055,-0.06085787028603619,0.5574493363326685,0.00722299960090355,-0.0030807433177352595,-0.08994339697501325,-0.0032426175531437107,1.6029254532387875,0.09249351231858557,-0.003949508217729752,-0.0003963917014739145,-0.14433088777112102,-0.2188349029942809,-0.09953220931891511,0.4500866472848283,-0.010810909250268449,-0.0025256623842629723,0.05757324826839757,-0.0030633939384230946,-1.4938358183124154,-1.0925255502514977,-0.01742266363374232,-5.839059976846433e-05,-0.10239323358856885,-0.605178516548779,-0.05117209430554866,-5.174806520620076,-0.01677833279147677,-0.017529362765514363,-0.07070380722636602,-0.011169655297472209,-4.3929634695885955,-1.4834652228238236,-0.013535985006247402,-0.00023861174599075431,-0.006934610578925446,-0.3139142126994411,-0.129973662585263,-7.078926317154305,-0.029604979252891836,-0.015356141191170332,-0.15618529034001927,-0.007630950083298619,-8.152846660885523,1.1044516123148196,0.010836807656177222,-0.0005260083202317376,0.03475741555373826,0.5283366018116643,-0.09503360682934332,5.279939367410159,0.00844097238581559,0.012091939185923134,0.007375429749875515,0.005653743531436128,2.6399640462392995,2.421148051057157,0.031686601171080575,0.0017510500765127238,0.0025234583629370187,0.41938196291366114,-0.1111975145540847,11.431420142543859,0.011657975684397364,0.03455971286473771,0.35512122227090404,0.021069627459146936,5.081358728813409,-1.3399581771484106,-0.01930826999167013,-0.0007950370590034173,-0.0014316951270304046,-0.5797216908935406,0.10658930031000473,-6.1906422306963265,0.010574721676341409,-0.02108465613286131,-0.21730470851208808,-0.015569854535436627,1.9081189169164459,-3.31426299647874,-0.031042054447010664,-0.0027954772737884812,-0.0009844383022225628,-0.8715882972442741,0.032361714273719214,-15.73367271321956,-0.03859511850303896,-0.03417004657150428,-0.3994476560051732,-0.017155755556396958,-10.104374810691086,,,0.48333333333333334,1.1634615384615385,0.5576923076923077,0.038461538461538464,0.6057692307692307,-0.04807692307692308,0.8937659971888732,0.017464154620121793,0.027387231543198717,0.8252925602755538,0.22123302377600987,0.2580033432336028,1.7190585574644268,0.47923636700961264,2.025291532736419,1.667412855205517,0.08541975693315938,0.13713008007744956,0.1353288405202934,0.3578786775309023,7.65592111991838,1326.0,301.3138,157.0,331.60493827160496,7969.643496519628,5378.68988814977,76.352053811527,306.6073,241.0122408931565,377.85620099999994,10965.891749892955,1274.0,317.8,199.0,309.1111111111111,7356.42879871895,4855.0514488352,96.36011280599999,326.54749999999996,149.52057613168725,391.316198,13804.387005491772,1933.0,559.079,313.0,400.66666666666663,13817.599660463644,7232.628200670399,147.590932223943,571.8955,257.79938271604937,695.418208,20597.39176073998,2160.0,790.266,363.0,382.6666666666667,20625.35459507316,7717.906153521599,176.09902174497998,804.6890000000001,374.962962962963,995.9742879999999,23588.96901929867,1826.0,831.69,330.0,310.1111111111111,22527.484369474452,6187.4498956864,168.009425137772,844.3306,376.8369341563786,1058.618894,21427.006365584115,1543.0,778.1890000000001,300.0,277.1111111111111,22342.707027945853,5271.6050748352,151.37315381905398,788.8951000000001,304.2237654320988,1003.7776780000002,18699.9115947014,1606.0,683.043,273.0,253.0,19547.147567057058,5760.074579632,132.68853345565802,693.7551000000001,299.65277777777777,879.9154619999999,16572.56828344535,1387.0,573.6510000000001,234.0,197.11111111111111,15899.428262056723,4808.3538406864,114.229267354074,584.5515,242.84876543209876,735.5502880000001,14553.889512876405,1207.0,470.4151,198.0,193.88888888888889,12344.73184119185,4157.195629686399,102.10325615648999,480.22290000000004,214.35185185185185,596.2453820000001,13315.397160125882,525.9183673469388,6.946248979591831,0.542244463148919,29.632653061224488,181.4452003023432,89.50221545692976,2495.4846529636934,12.700745568198,6.773338775510201,98.96325924059609,4.488913632653061,2575.9714381862614,5.513536026655598,-0.19038567263639838,-0.21826836582101528,5.892544773011244,40.40107774024198,-3.1037513845878455,28.429916152966094,0.36837297964608107,-0.15711790920449822,-4.587113245725676,-0.16537349521032924,81.74919811517816,8.416909620991287,-0.3594052478134074,-0.03607164483412622,-13.134110787172013,-19.91397617247956,-9.057431048021275,40.957884902919375,-0.9837927417744288,-0.2298352769679305,5.239165592424179,-0.2787688483965016,-135.9390594664298,-142.0283215326947,-2.2649462723865015,-0.007590777969900363,-13.31112036651395,-78.67320715134126,-6.652372259721325,-672.7248476806099,-2.18118326289198,-2.2788171595168674,-9.191494939427582,-1.452055188671387,-571.0852510465174,-207.68513119533532,-1.8950379008746363,-0.033405644438705605,-0.9708454810495624,-43.947989777921755,-18.19631276193682,-991.0496844016027,-4.144697095404857,-2.1498597667638464,-21.8659406476027,-1.0683330116618066,-1141.3985325239732,151.30987088713027,1.4846426488962794,-0.07206313987174806,4.7617659308621425,72.38211444819801,-13.019604135620035,723.3516933351917,1.1564132168567358,1.6565956684714693,1.0104338757329456,0.7745628638067495,361.67507433478403,288.1166180758017,3.7707055393585884,0.20837495910501413,0.30029154518950524,49.906453586725675,-13.23250423193608,1360.3389969627192,1.3872991064432865,4.112605830903788,42.25942545023758,2.5072856676384854,604.6816887287957,-128.6359850062474,-1.8535939192003326,-0.07632355766432806,-0.13744273219491884,-55.6532823257799,10.232572829760453,-594.3016541468473,1.0151732809287752,-2.0241269887546856,-20.861252017160457,-1.4947060354019162,183.1794160239788,-255.19825072886297,-2.390238192419821,-0.21525175008171304,-0.07580174927113734,-67.1122988878091,2.4918519990763794,-1211.4927989179062,-2.9718241247340003,-2.631093586005829,-30.757469512398334,-1.3209931778425656,-778.0368604232136,0.7142578204975373,0.5916570382816743,0.44500519793749754,0.3334192060329477,0.29441900029341045,0.18846607430568868,0.19554049732306678,0.11169053337702162,0.12381965059188292,0.06481244676807295,0.07993413415233867,0.03757892400166324,0.05542654063517102,0.02300060266061233,0.03444021075465766,0.014925892920965383,17.001103221996434,5.692633580821108,4.1077152767589435,2.189978362880919,0.37727550854070646,-0.38447251856729503,4.024003773168536,0.9779227097119003,7.004057307280466,0.7740021524737967,17.424771698624355,10.952310867120545,35.45051747145736,11.703807393024986,2.2078364818131795,0.5458610024298981,3.988667118069207,2.240780628819278,8.001919451431725,1.1609818813027792,4.009945478414153,2.4369979133400728,22.4558659893945,13.304120702346344,0.2676975522199315,0.5724199647025998,0.7362930529868431,0.8486973951450268,0.8678924707072272,0.8678924707072272,1.3244547411942005,737.611323693879,0.0,0.0,3.0,0.0,11.0,4.0,2.0,1.0,0.0,4.0465426707686785,2.2614845696557833,1.301519132873823,0.6430566327413656,0.5306122448979584,0.5306122448979584,59.52708491583775,1035.8948875383307,51.82497653880308,21.14071199057818,44.316171495366305,,17.0,721.0,5.601050810983688,14.291479626587348,11.600465787410833,29.84854967421635,31.618542332360732,24.26546827384644,0.0,24.26546827384644,4.899909730850478,11.600939890232516,12.566666666666666,30.25,14.5,1.0,15.75,0.0,0.016666666666666677,-1.25,0.1478948336091192,0.05674138507862159,-0.09115344853049762,0.02013295346628674,0.14105167173252253,0.0,0.58843537414966,0.8435897435897431,0.44054054054054076,0.5316939890710384,0.8234567901234564,23.237915926910702,0.4540680201231666,0.7120680201231666,21.457606567164397,5.752058618176257,6.7080869240736725,44.6955224940751,12.46014554224993,0.5729483282674774,0.1326259946949602,0.03978779840848806,0.23076923076923075,0.38095238095238093,0.45165821892770763,-0.7599125812363157,-0.0537491982888556,-0.01550842002523093,-0.04221736562423975,0.5483417810722923,0.9225821667623855,0.03042464202123632,0.01882820748494664,0.029760715056851142,-5.841358760551157,0.6621470474103495,0.630969405374357,1.2662154883507826,1.0163668773294443,0.5819490744325656,1.074886912137775,0.6657017642856069,0.9685409062998915,0.6221000096558231,0.6166821785958828,0.6294821096522983,0.9565290473544314,0.7391779349870152,0.7352115728023795,1.0377113895395949,1.6109345200254293,0.973686470495495,1.0613819632984927,0.7422614719803862,0.9991511373223488,0.7213505496015313,0.5777906148929808,0.7068957617931677,0.9974423051858599,0.9881615474164949,1.0799267377313027,1.1338812213078655,1.3145581691036237,1.1386389359228575,0.9862006341380553,0.9881023128486977,1.0191659026405704,1.0694128294313414,0.9848606753928929,1.075500679367068,1.0447826648821676,0.979511059371362,1.0086726590360622,1.1248311570214111,0.8272727272727273,0.9869261659973669,0.9262262164880449,0.9813210664614628,1.0472785623083023,1.0141417610945191,1.0406609927361343,0.9903291450436295,1.12214127230958,0.6415472073281612,0.5786766539175386,0.8737818492623379,0.7212402726669482,0.6839323499373187,0.7995942457781573,0.6459100363537861,0.8757590238748479,0.5873556979715545,0.6442499837330607,0.5423017574045097,0.9448471579939263,0.6592070122577552,0.49649237653272205,0.6833975739346552,0.9052017501215363,0.7734147797388994,0.8617230755658409,0.6624800394605213,0.8892168635675342,0.502083233194933,0.4588366109525383,0.45747335649692966,0.9002365424554819,1.372361272797827,1.1486271257251752,1.1849606396128072,1.0461432506887054,1.208370825210093,0.8291863638981787,1.3587691786612082,0.9551907507355297,1.2060521805783542,1.1078026523223512,1.2545435735353228,0.9377390331983173,1.458524711609694,1.2731782308690949,1.3212124027179488,0.8940646130728777,1.2320936524359114,0.9586195298222447,1.4511287607060035,1.1563014312960807,1.3154447964375002,1.3042682027919201,1.3094975033705463,1.1595053170636356,6.5,0.18569533721048873,4.000000000000002,1.4375,1.017777777777778,0.888888888888889,0.5257142857142858,0.22743055555555558,0.16376921138825898,0.18812500000000004,4848.693480366822,5546.932861673809,2450.8747050326983,2212.861672268502,17.940874752403694,0.4896682484179623,9.155798037308134,0.9595096658202862,1.0,0.38095238095238093,1.5681671733465294,3.353225274459425,4.313190711241385,4.971653211373843,5.08409759921725,5.08409759921725,0.2321428571428571,0.010316407622804929,0.10256410256410264,0.03685897435897436,0.033925925925925936,0.03418803418803419,0.021028571428571428,0.010337752525252524,0.008188460569412949,0.009901315789473687,0.4994524021154097,20.727040816326532,9.467455621301776,5.75,157.95153635385225,1.0,4.17904739051443,162.05307677497072,,139.30206999853442,139.21329737894106,138.5575436130133,139.19837179937653,166.9603709847853,139.80481485444545,140.43871195862022,156.39878368402006,0.01007251173655344,-0.02633357490705385,-0.38674221004583154,0.19105493437044235,0.21393082697006058,-0.033318009267053146,0.010945776584063873,0.027866630233935912,-0.022286855503939704,-0.044533966298148604,-0.03539570441905225,0.030490767888328326,0.008617653204381993,-0.02786049035059633,-0.035819993918292034,-0.23866285229921597,-0.05909723833340379,-0.05449114562950442,0.008837660328130839,-0.041708933575488785,-0.018271263394700588,0.02850642942440836,-0.033439338616549644,-0.02841567030294674,-0.10179099131369211,-0.12290237804052032,-0.00527647506447472,-0.16931553295189655,-0.16343087202900905,-0.028015313455324584,-0.10160972907977761,-0.06473149960904286,-0.12681172520349898,-0.03500780573191505,-0.12192551569602429,-0.08356273164325229,-0.13821497865735352,-0.09548509810903678,-0.02156218522850263,-0.011466942148760328,-0.08477378512433414,-0.07115700359107463,-0.13899800550911562,-0.11421723044543435,-0.11109010538317095,-0.07733253012671137,-0.08329778308981148,-0.15508304186193567,0.10290214672750803,0.07644465044555403,-0.047532818577211734,0.05747421125656031,0.14267940648544797,-0.05202828456105305,0.10367406134749803,0.03256561944998061,0.08747606457431374,0.003651820488907773,0.06171502855951286,0.050217264193273305,0.2255792188819648,0.22352257483782031,0.15823389555857836,0.004172743477556324,0.11325577170697974,-0.06087757923458512,0.2244612429571205,0.0449769507993159,0.25001346994408835,0.17583232428683182,0.22999144781674458,0.09665735187155966,-0.12484437653602382,-0.136203760097213,-0.071843639794748,-0.002367424242424244,-0.15655615473128967,0.05835470874688664,-0.12155613497517,0.040797712178265964,-0.15253159257967017,-0.10759478617418443,-0.16995712875533497,0.036296142706744285,-0.30879105372702575,-0.21897583463714276,-0.25261371157240675,-0.0016278487352867584,-0.23537589582863105,0.017717148020490323,-0.30893797003806894,-0.14890155829782753,-0.2471945280601428,-0.19777981540268832,-0.18726847764424825,-0.19220491282794375,22.29817967830796,16.479502010203426,1.6636112809307286,17.66644341965902,33.26529190980367,40.24077435959631,41.523117359450325,41.63646130239648,41.63646130239648,52.6575798511469,43.35273423534344,2.220913680262144,3.5653820820136883,3.5185498535276283,9.30484561580346,11390.494893766456,11263.880480694093,590.4700774375378,74.0,39.0,48.0,55.0,70.0,70.0,64.0,60.0,68.0,375.1401348760006,28.0,4.90527477843843,5.733341276897746,6.594413459749778,7.4413203897176174,8.305731144875866,9.15957325492253,10.026899162451327,10.88461051241177,11.754262506476403,0.6734693877551019,0.9804081632653061,1.1262090182466955,0.6386465522250862,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6824787852865697,0.9700680272108845,1.005239532083773,0.6358365726913604,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,7.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,10.006437125691184,5.817220841045895,5.783244946364939,0.0,0.0,4.794537184071822,4.39041504767482,0.0,0.0,23.733674027155736,67.76887517715726,30.096419240189483,5.601050810983688,278.0813672425453,-467.8704399018805,-33.09283418741019,-9.548376324528173,-25.992802216771135,337.60845215838305,568.0244476364503,18.732142351392888,11.592335666050007,18.32336927859517,0.47058823529411764,0.845877583455862,0.22886774941308166,71.24915528174863,0.12561984369616536,75.70619804869926,0.15412241654413802,9.0,0.21428571428571427,0.27929620886645273,0.5972214713773587,0.7681947653558717,0.8854693028500209,0.9054960523999126,0.9054960523999126,4.425600000000004,,1.623249299719888,1.2639480001621826,1.0568820633262312,1.6700050768749024,-4.447030060595236,1.2309605280870368,1.1605367662118318,-1.5806846199225781,100.98730000000005,14.291479626587348,0.0,4.899909730850478,0.0,31.284337302687728,19.634269217737724,70.4976936858741,0.0,0.0,4.04305126783455,0.0,5.3612921657094255,0.0,6.876264611890766,0.0,8.47407690034261,0.0,10.114437057749631,32.99999999999999,13.087116898603641,0.0,0.0,0.0,0.0,0.0,1.8044851215940465,0.0,48.04,0.0,12.121488181354358,0.0,0.0,0.0,0.0,0.0,0.04136916296244819,55.18424189408808,0.0,4.39041504767482,0.0,35.42395128979385,5.601050810983688,5.817220841045895,41.60472665916985,48.53093654769288,5.022633313741326,0.0,0.0,31.293681059029222,33.441460479041915,33.29228497038045,324.1061535499414,,278.4792746663212,278.32936798863886,277.0337886057707,278.2682816697627,335.6311381467226,279.5149404374996,280.78815185830103,313.4055229910873,33.29228497038045,324.1061535499414,,277.0109201101625,277.21489284947967,276.1370112787889,276.7566112061496,338.36777203016584,278.4173847084953,279.74578293209544,314.3782519879629,4.828897235260348,254.8646702982225,,224.62000369414812,223.6573646891563,222.16827144718997,224.51255193760338,267.91580928840466,224.78065565497593,225.88057630261724,252.355035048275,1.2804724988607865,12.46562129038236,,10.710741333320046,10.704975691870725,10.655145715606567,10.702626218067795,12.9088899287201,10.750574632211523,10.799544302242348,12.054058576580282,2.4144486176301743,162.05307677497072,,139.30206999853442,139.21329737894106,138.5575436130133,139.19837179937653,166.9603709847853,139.80481485444545,140.43871195862022,156.39878368402006,47.53333333333334,0.0,0.0,5.91792141513375,12.905095918537544,0.0,10.881489317143627,49.256737072104876,4.955964760381247,0.0,0.0,0.0,0.0,2.2800891632373115,-0.8005754945035277,0.0,0.0,31.15599206187666,520.7982165932334,76.84019149397994,164.30803844851184,211.34634485082788,243.6110073573183,249.12078236164524,249.12078236164524,602.0,128.80542648594147,94.891602807695,60.86912200352698,40.540000000000006,40.540000000000006,0.8888888888888888,7.446110949426949,5.807354922057604,3.808700205099409,5.023094017803441,,5.041516802136922,5.037415501928417,5.03663436941238,5.0418535719636415,5.030064370618274,5.0383477130516106,5.038606820611264,5.040082974121335,0.14648846942690036,0.1931959237616708,,0.1939044923898816,0.1937467500741699,0.19371670651586076,0.19391744507552466,0.193464014254549,0.19378260434813888,0.19379257002351016,0.19384934515851288,2.292799422442731,2.569557527080545,,2.573218434638447,2.57240459834882,2.572249520197018,2.5732852317140975,2.570944226396816,2.572589638649185,2.5726410644165325,2.5729339900945103,279.79000000000036,697.0166919844532,151.5816951061785,,149.4311063105788,149.854314890987,150.02363516750478,149.39523318996925,151.08969885787369,149.78359929562032,149.76766295700028,150.03865693788703,26.808334307094356,5.830065196391481,,5.747350242714569,5.763627495807193,5.770139814134799,5.7459705073065095,5.811142263764372,5.760907665216166,5.760294729115396,5.770717574534117,7.502320803828971,5.976636166263281,,5.962346904290633,5.965175033110197,5.966304294494558,5.9621068108581605,5.973385137646441,5.964703026108869,5.964596624696869,5.966404418840669,12.905095918537544,14.40157734459167,11.548718608449065,0.6671979224721805,-0.2891484237246511,13.087116898603641,2.5419143929763517,2.4140503674048945,0.0,344.3034006557423,171.21186677632596,-288.0630666462217,-20.374921104311447,-5.878838094820852,-16.003503702567873,207.86208693762185,349.7268695805982,11.53318934132157,7.1372830526652695,11.28151192195478,2035.0,39.0,2.1307667665424157,1.0438429305466823,0.14433756729740643,0.05590169943749474,0.3941440590783927,0.11842755555237405,0.07216878364870322,0.018633899812498248,0.0,0.0,0.0,0.0,0.0,0.0,0.23883545031536985,0.1114572549930503,0.4213123423891549,0.1622531508052107,18.57070333293597,15.383082995323532,12.460145542249931,9.335737768922536,11.482341011443006,7.350176897921858,9.385943871507205,5.361145602097038,6.810080782553561,3.5646845722440124,5.595389390663707,2.6305246801164266,3.879857844461972,1.610042186242863,2.2041734882980903,0.9552571469417845,4.450142282682732,1.9748527590836127,5.777764581352188,2.347588108640038,7.923097555683924,2.865915961073752,84.5841575409493,50.5591345639196,31.674471595246324,27.013950779528855,26.34503838198025,26.34503838198025,134.0,154.0,55.84723899999999,27.274760999999994,0.4489795918367347,134.05,8.479166666666668,5.6944444444444455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,49.0,0.0,1.0,51.0,12.0,1.0,7.0,44.0,13.0,28.0,38.0,0.0,0.0,0.0,21.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,3.0,1.0,1.0,26.0,5.0,0.0,1.0,2.0,0.0,3.0,6.0,0.0,0.0,2.0,0.0,2.0,3.58351893845611,5.580437122962544,4.110873864173311,4.56954300834494,4.975008116453105,5.455855160764252,5.4542521681687965,5.391352232515226,5.214596025993692,5.400140382625691 +15387,CC1CCN(CCCC(=O)c2ccc(F)cc2)CC1,0,19.317073170731707,5.974753658536586,2.7804878048780486,5.658536585365853,165.78398415673118,76.67518824755538,1.3796911440653172,6.035014634146341,4.5088075880758804,7.512385756097561,197.4844332033641,21.428571428571427,6.113690476190476,3.4285714285714284,4.833333333333333,145.50275364235233,79.89013790083806,1.7645715433333342,6.265107142857144,2.681216931216931,7.548230952380948,248.0130132008379,16.435897435897434,5.983320512820514,2.9615384615384617,3.2051282051282053,155.72514527249598,59.1944909444923,1.4355604872883332,6.091455128205128,2.509615384615385,7.496284923076919,193.92458473051906,12.376146788990825,5.856091743119265,2.376146788990826,2.1009174311926606,161.87479383850572,42.273971747904575,1.1923799568369264,5.935197247706425,2.4872579001019375,7.4403164770642185,152.71344925889457,9.535087719298245,5.689666666666667,2.008771929824561,1.5,165.51557083776981,30.8525791376,1.0259202818444033,5.752320175438595,2.258284600389864,7.335203719298246,124.01802763423538,9.164948453608247,5.587752577319587,1.9896907216494846,1.711340206185567,167.61956272708926,30.398648853971125,0.9837816812129689,5.643341237113402,2.070446735395189,7.259625979381443,118.21122898447403,11.466666666666667,5.687199999999996,2.2,2.2666666666666666,162.96838140465437,39.8584686750933,1.096668347547653,5.759875999999998,2.708888888888889,7.303378826666669,136.50549578764083,11.285714285714286,5.855114285714285,2.242857142857143,1.8571428571428572,167.05955050899396,38.4767650098057,1.0589652443196573,5.909707142857143,2.543650793650794,7.481464742857143,135.47144603087472,12.701754385964913,5.993035087719299,2.3684210526315788,2.0350877192982457,162.89384934708045,43.24636557344563,1.2000837235822455,6.062771929824563,2.743664717348928,7.575734596491229,156.3118124128336,7.321832242712671,0.13604759071980957,0.007716694654750172,0.4937537180249851,3.516954193932184,1.8781068628548954,35.416059689291856,0.2359158813556704,0.1265580011897679,1.9305638178333009,0.07572373111243305,51.40294274433632,0.27398657261833986,0.0024373686297838493,-0.002088831390854815,0.09858077674853408,0.9818843658819868,-0.18379954623012018,1.274478132778169,-0.0077135281236379236,0.0031216155349706883,0.009105816958285736,0.00041338619302568595,-0.29703265045694593,-0.20863649537058188,-0.0034865838405100766,-0.0007712317611687475,-0.10257172928202074,-0.0003813358959104367,-0.11756753403655967,-0.9562851103849953,-0.015224871320355243,-0.0026051243917692424,0.10609972187901995,-0.002196476578349277,-2.291774796772825,-0.6668758766352489,-0.009162180113409989,0.00010105263180602096,-0.0540580366645018,-0.14774407981269339,-0.10592296255173105,-3.2068941366521875,-0.02213596941574048,-0.008727725960410191,0.022551470200314002,-0.004768874097440906,-4.760450621790177,-0.37424987215212335,-0.0054185577715854085,-0.0005255816427424888,0.010953171149169775,0.0985785403425279,-0.11660926321239537,-1.8107110671183646,-0.01674196792274275,-0.005029610090067527,-0.039232338729035525,-0.003248087124414242,-3.3023967693705027,1.0223970758691745,0.011113535757434517,-0.0003006714678512855,0.03604261086613883,0.6243583532139066,0.0963968364037323,4.997060047033701,0.02817524691731725,0.011585850960093687,0.04129520488063827,0.004936090863931028,7.050513353423906,1.1113384889946467,0.038940929605393616,0.0015933912706744531,0.010636525877453899,0.7009319849296054,-0.200953110324498,5.294693179882399,-0.016207009344751395,0.0361470719809637,0.5485599400709454,0.02196297457862384,-0.14596810997269855,0.27398657261833936,-0.01093769524942636,-0.0002618619758641715,0.014608651312993971,-0.3706127305175491,0.06964131380072455,1.3553195100696094,0.02228959669751285,-0.008734969830882981,-0.21893973730678076,-0.007345209858077676,4.630150642672092,-1.1874719517413401,-0.025712716950019303,-0.0017283191056138513,-0.014078921277017651,-0.8297483745055679,0.06282046269935468,-5.643781523329514,0.00205912156276602,-0.025072079067388862,-0.37782526413197387,-0.013316398634897773,-2.887870376314784,,,0.47468671679197993,1.013157894736842,0.42105263157894735,0.02631578947368421,0.5921052631578947,-0.17105263157894737,0.8843468156390697,0.01401823772801336,0.02307086930696073,0.6020722804569454,0.180060654411222,0.3014060321961908,1.486419096096015,0.4814666866074127,2.0063925655192247,1.7044736898146569,0.11594274022674499,0.09343461660112128,0.09254151887670163,0.3019188757045679,6.418744940097566,792.0,244.96490000000003,114.0,232.0,6797.1433504259785,3143.6827181497706,56.56733690667801,247.4356,184.86111111111111,308.007816,8096.861761337927,900.0,256.775,144.0,203.0,6111.115652978798,3355.3857918351982,74.11200482000004,263.13450000000006,112.61111111111111,317.0256999999998,10416.546554435192,1282.0,466.6990000000001,231.0,250.0,12146.561331254687,4617.1702936704,111.97371800848998,475.1335,195.75000000000003,584.7102239999997,15126.117608980487,1349.0,638.3139999999999,259.0,229.0,17644.352528397125,4607.862920521598,129.969415295225,646.9365000000003,271.1111111111112,810.9944959999998,16645.76596921951,1087.0,648.622,229.0,171.0,18868.77507550576,3517.1940216864,116.95491213026199,655.7644999999999,257.44444444444446,836.213224,14138.055150302833,889.0,542.012,193.0,166.0,16259.097584527657,2948.6689388351992,95.42682307765799,547.4041,200.83333333333334,704.18372,11466.489211493981,860.0,426.53999999999974,165.0,170.0,12222.628605349078,2989.3851506319975,82.25012606607399,431.9906999999999,203.16666666666669,547.7534120000001,10237.912184073062,790.0,409.85799999999995,157.0,130.0,11694.168535629578,2693.373550686399,74.12756710237602,413.6795,178.05555555555557,523.702532,9483.00122216123,724.0,341.60300000000007,135.0,116.0,9284.949412783586,2465.042837686401,68.404772244188,345.5780000000001,156.3888888888889,431.81687200000005,8909.773307531515,300.1951219512195,5.577951219512192,0.31638448084475707,20.24390243902439,144.19512195121953,77.00238137705071,1452.0584472609662,9.672551135582486,5.188878048780484,79.15311653116534,3.104672975609755,2107.520652517789,11.507436049970273,0.10236948245092167,-0.08773091841590222,4.140392623438431,41.23914336704345,-7.719580941665048,53.52808157668309,-0.3239681811927928,0.1311078524687689,0.38244431224800096,0.01736222010707881,-12.47537131919173,-16.273646638905387,-0.27195353955978596,-0.06015607737116231,-8.000594883997618,-0.029744199881014066,-9.170267654851655,-74.59023861002963,-1.187539962987709,-0.2031997025580009,8.275778306563556,-0.1713251731112436,-178.75843414828034,-72.68947055324213,-0.9986776323616888,0.011014736866856285,-5.892325996430696,-16.10410469958358,-11.545602918138684,-349.55146089508844,-2.4128206663157123,-0.9513221296847109,2.4581102518342264,-0.5198072766210587,-518.8891177751293,-42.664485425342065,-0.6177155859607366,-0.05991630727264372,1.2486615110053543,11.237953599048181,-13.293456006213072,-206.42106165149357,-1.9085843431926734,-0.573375550267698,-4.47248661511005,-0.3702819321832236,-376.47323170823734,99.17251635930992,1.0780129684711481,-0.029165132381574695,3.496133254015467,60.56276026174895,9.350493131162033,484.714824562269,2.7329989509797734,1.1238275431290876,4.005634873421912,0.4788008138013097,683.8997952821188,83.3503866745985,2.9205697204045213,0.11950434530058399,0.7977394408090424,52.569898869720404,-15.07148327433735,397.10198849117995,-1.2155257008563547,2.7110303985722775,41.14199550532091,1.647223093396788,-10.94760824795239,19.179060083283755,-0.7656386674598452,-0.018330338310492005,1.022605591909578,-25.94289113622844,4.874891966050718,94.87236570487266,1.5602717688258996,-0.6114478881618086,-15.325781611474653,-0.5141646900654373,324.1105449870464,-67.68590124925639,-1.4656248661511002,-0.09851418901998953,-0.8024985127900062,-47.29565734681737,3.5807663738632165,-321.6955468297823,0.11736992907766314,-1.429108506841165,-21.53604005552251,-0.7590347221891731,-164.60861144994269,0.7192066283684293,0.6089434301698428,0.4573933522770421,0.35802785627718015,0.3097706581134414,0.2137609816094665,0.20908394090040464,0.13068767814215673,0.1344512986819753,0.07663662951437104,0.08968806195323019,0.04783384371753312,0.06475479878488023,0.02930784902181612,0.04068393109799553,0.01889232504606832,9.00406361225286,5.69306110090648,4.10770698416651,2.192198278517494,0.37494057550041004,-0.38446972375627275,3.136256292723542,0.9779587218343686,7.004054610638351,0.9939189808343417,17.424770270824,10.953688249250593,19.00014031062146,11.704609324347215,1.98441607669304,0.5458669923112556,3.988656833629002,2.2420009477454683,8.00191784526044,1.2308142373753475,4.009930727694339,2.4379116633697446,20.891511400899045,13.304122103203731,0.2541314208917023,0.5258678389693817,0.7379928002891247,0.809812232872685,0.8341415981033461,0.8341415981033461,1.5715965276485198,407.2620391748402,0.0,0.0,4.0,0.0,6.0,4.0,1.0,1.0,0.0,3.9538413563419645,2.4528884153728914,1.2812030490970931,0.8845039635729384,0.7501192073698428,0.7501192073698428,184.2792368103825,602.4728189153473,36.234003025695124,14.694458997935302,28.626899945515653,,13.0,397.0,0.0,9.184952231746642,11.600465787410833,11.984273114623004,31.97299688682513,24.974377382775238,12.13273413692322,0.0,11.823646930541102,0.0,9.019047619047619,19.25,8.0,0.5,11.25,0.0,0.025313283208020055,-3.25,0.10281702037799595,0.030765809177848547,-0.0720512112001474,0.0,0.13514914425427849,0.0,0.5409988385598145,0.8200501253132829,0.4381818181818185,0.5102330293819659,0.8200501253132829,16.802589497142325,0.26634651683225385,0.43834651683225384,11.439373328681963,3.4211524338132175,5.726714611727624,28.241962825824288,9.147867045540842,0.5788508557457215,0.12407602956705385,0.0,0.26610348468848993,0.5625,0.32101013571653003,-0.37569743740230366,-0.04118784654469422,-0.009163352131763502,-0.02504649582682024,0.67898986428347,0.7946626092164909,0.02920010812965039,0.01938201485893881,0.03056394650832658,-4.117516929216017,0.8978287447575716,0.5561608506697183,1.2050538867817047,1.0349971313826736,0.5217797538501191,1.2118411223997407,0.8986035352083114,1.236106021133801,0.5737821714629521,0.4866329995149645,0.5400222162281356,1.1556323449192922,0.9779963834237477,0.7298010885349536,1.2747818113058436,1.519925857275255,0.9157818951459004,1.0698492400026278,0.9736184117705203,1.1217672722955976,0.743103183120293,0.4913121629718392,0.6957479130843104,1.089690097496547,1.0537488856356574,0.9345840461902392,1.0499976492109198,1.1239084779484914,0.9683616590731337,1.005368265789704,1.050990361113779,1.0792956320449025,0.9447482558181657,0.8115987551896542,0.9220000452031558,1.0799560108139528,0.9964279401786885,0.8479658739495748,0.9817400062350001,0.7712957091523991,0.8346390333072191,0.8687674845084885,0.992052795574802,0.9999410779963993,0.8665768131832611,0.8626284104509322,0.8587299887680018,1.0169887941280527,0.7857432430168628,0.5940362373640388,0.9340170990260139,0.7536951931437088,0.6548972559742198,0.637624740971142,0.7772401135772876,0.7728113315813654,0.6177685702112912,0.6678661655714396,0.6103536406233189,0.8000162001779128,0.7728306792330192,0.4125672508482876,0.5745557268922006,0.8957429718875501,0.6324763193504734,0.9380872240764141,0.7738606494771437,1.0386468445751225,0.440218478546986,0.40952038574567023,0.3907152893491975,0.9904503641249252,0.966038349041274,1.171121238924786,1.2666219678966384,1.0585197934595525,1.218586893485405,0.8635713349699896,0.9598908932701944,0.8277375782362891,1.153439546389759,1.3007740184150347,1.2325335854524806,0.8444214643060082,1.180518732645719,1.3548771402042028,1.4184511110800828,1.0399492707672795,1.3602426227951474,0.986357833889387,1.1740075782039792,0.9774030277540153,1.3467062958792086,1.4874814357643653,1.3977775241886319,1.0271428972588312,4.0,0.08244056728905214,2.222222222222223,0.75,0.6444444444444445,0.4097222222222222,0.2840816326530612,0.16493055555555555,0.08591584782060971,0.10250000000000001,2988.7220883869268,3551.658266347385,1734.9221759478016,1516.9804157151393,14.776677917063997,0.46445848444225024,7.913524486613186,0.8672688688915765,1.0,0.5625,1.4037106482761195,2.9046635892451924,4.076348955520991,4.473048041045145,4.607432797248241,4.607432797248241,0.2,0.010305070911131517,0.08547008547008551,0.03125,0.03790849673202615,0.027314814814814816,0.018938775510204082,0.011780753968253966,0.006608911370816132,0.00931818181818182,0.438895090595514,15.39,7.695266272189349,5.12,114.16188428310721,1.0,3.848649644697301,92.3577504864536,,81.315157618207,80.3927380186277,79.85268152325673,81.24610980716733,99.62825349727062,80.92179753049867,81.40683528955694,92.01690272275877,0.03742049305910215,0.017915558937045918,-0.27068991120038566,0.19965576592082626,0.2791859978091373,-0.09786426420418269,0.0359858816581877,-0.03269609523238874,0.02466549333605521,0.00471666197935136,0.0054591366134864455,-0.0057785145090681325,-0.028495120955309407,-0.02562767794756988,-0.09994327826539044,-0.20773864689527335,-0.00010842788244679364,-0.06259895875032702,-0.027001454107954608,-0.06453516920042358,-0.0205844305952887,0.054957894113076854,-0.02900644944565652,-0.04458450575819099,-0.09108046381409274,-0.06734540512576608,0.013095325955889147,-0.10948380678678016,-0.042009099824955605,-0.05639879425748883,-0.09054915100060668,-0.09382992483820092,-0.0689622614007894,0.01168128708929386,-0.06297727313991144,-0.09261046873264261,-0.051114237494939825,-0.039828399333766557,-0.06810968507338255,0.022183470725005296,0.028029520689409573,-0.062088726429090704,-0.051126835763320055,-0.07096583674882957,-0.03974154176570675,-0.020321699995945502,-0.04289391286849757,-0.06424528622409205,0.1396367796990642,0.08168858925493858,-0.03896376380089122,0.07299714321202336,0.1775281447484061,0.05132659824116729,0.14109587827876222,0.11942920822206038,0.0915457802049294,0.02139023040791496,0.06518552099079773,0.13716166773741267,0.15178420539486523,0.2862302037056473,0.2064862408017671,0.0215421686746988,0.19930085701398284,-0.1069976976810738,0.14949978135154499,-0.06869825486787581,0.28561664723799507,0.2841449399412251,0.29004083998467617,-0.002839683920407098,0.03742049305910209,-0.08039609662733814,-0.033934474225046196,0.029586919104991408,-0.1053788903924222,0.0370805917267473,0.03826850084283639,0.09448112000526457,-0.06901949895514937,-0.11340714835964341,-0.09700010485711089,0.09007559480983707,-0.16218234895004816,-0.18899795883173504,-0.22397142597186326,-0.02851405622489961,-0.23592811528143767,0.033448822291113824,-0.1593565623291494,0.008728202403896908,-0.19810741977343993,-0.19570721290944554,-0.17585502509280554,-0.05618103209923669,14.48640900577307,12.570795255293747,1.3594323193181372,13.252368540324376,27.241718022562434,31.309021437288067,32.44821185174775,32.58367168600047,32.58367168600047,38.12145874486527,32.38500010647848,2.202912064308155,1.7752577154213043,1.7582888586573309,5.7364586383867895,5323.189914293259,5116.435351323724,296.67603047313787,30.0,26.0,30.0,33.0,40.0,34.0,28.0,26.0,28.0,263.1685425440002,20.0,4.532599493153256,5.3230099791384085,6.142037405587356,6.947937068614969,7.766840537085513,8.57715877258367,9.395740518379736,10.207768596643277,11.02615810629731,0.5772357723577235,0.9665365853658536,1.136965540276079,0.5347870208406522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.640403768073609,0.9532281205164994,0.9930897269642762,0.5873030039765085,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,7.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4.899909730850478,5.817220841045895,5.783244946364939,0.0,0.0,4.794537184071822,4.39041504767482,0.0,0.0,6.923737199690624,69.08010840652358,11.984273114623004,0.0,165.2481917203805,-193.39988136553603,-21.202499251853887,-4.717070277208196,-12.893325424369067,349.527428530763,409.07293754981123,15.031503773841239,9.977388720727106,15.733574521146588,0.46153846153846156,0.8553018336808791,0.25915376851954397,8.832614986046302,0.13878186715856858,46.6401827242876,0.1446981663191209,7.0,0.25,0.26200597718251806,0.5421624627705789,0.7608603615993412,0.8349052024487085,0.8599884412277738,0.8599884412277738,3.520500000000003,,0.7261904761904763,0.8616259405963067,0.7520869648524905,0.7595547304983525,-3.5986807503845246,0.7792016231709343,0.7022577933310232,-1.2649787716021619,74.80250000000004,9.184952231746642,0.0,4.899909730850478,5.917906046161393,32.60702369139466,19.634269217737724,35.646140606589334,0.0,0.0,3.713572066704308,0.0,4.976733742420574,0.0,6.424869023905388,0.0,7.949091499830517,0.0,9.509036565691064,23.666666666666664,5.8323379408390235,0.0,0.0,0.0,0.0,0.0,0.326530497463003,0.0,39.628,0.0,11.90873955446376,0.0,0.0,0.0,0.0,0.0,0.11609027252876492,46.61558715131924,0.0,4.39041504767482,0.0,30.317423894953144,0.0,11.735126887207288,42.96501236716348,24.26546827384644,0.0,0.0,0.0,21.92626785446674,26.25655449101797,24.19652913782608,184.7155009729072,,162.5538741336571,160.69477856982422,159.6261959975816,162.41226648480853,200.39293249466266,161.76157383750564,162.73974870613165,184.43327242602356,24.19652913782608,184.71550097290722,,161.93406717560043,159.9758439618465,159.03168893763984,161.7624508648974,202.8551877449258,161.1029696508444,162.14022844929576,185.29878421711982,4.534636508688914,145.08469522332416,,130.0361623684817,128.5753559168905,127.55823003103225,129.96608546922894,157.52759595815925,129.41171733522344,130.16318330854966,146.95336240603356,1.2735015335697937,9.721868472258274,,8.555467059666164,8.45761992472759,8.40137873671482,8.548014025516238,10.546996447087508,8.513767044079245,8.565249931901667,9.707014338211767,2.2673182543444574,92.3577504864536,,81.315157618207,80.3927380186277,79.85268152325673,81.24610980716733,99.62825349727062,80.92179753049867,81.40683528955694,92.01690272275877,39.082352941176474,0.0,2.3009919496599136,0.0,12.758572334956057,0.0,0.0,40.716678805535324,7.3031341183167475,0.0,0.0,0.0,0.8445344017315795,2.4424022633744853,0.0,0.0,0.0,24.079423163036846,440.28853193501493,57.5521365793209,119.09120715905289,167.13030717636062,183.39496968285096,188.90474468717787,188.90474468717787,314.0,108.9192504774835,74.48708831612859,51.57330289855185,20.310000000000002,20.310000000000002,0.8571428571428571,6.65052158062305,5.321928094887363,3.953861487896531,4.298894617974865,,4.301733113434761,4.301727249836997,4.301396996266739,4.302004528909253,4.286179064555906,4.3017630325173,4.301602210607022,4.298890739414904,0.20809797304718583,0.22625761147236131,,0.22640700597025057,0.22640669735984195,0.22638931559298625,0.22642129099522382,0.2255883718187319,0.2264085806588053,0.22640011634773802,0.2262574073376265,2.0165465794262256,2.1002118102376492,,2.100871877305216,2.1008705142262887,2.100793738961635,2.10093496976244,2.097249561295513,2.100878832403942,2.1008414465890306,2.100210908014623,214.9899999999996,108.83607326180118,92.32535795100907,,91.71509715927083,91.69145580409942,91.75137924990452,91.69117781201867,93.11275178321209,91.7046617979521,91.72782424129984,92.17149950155725,5.728214382200062,4.859229365842583,,4.827110376803728,4.825866094952601,4.829019960521291,4.825851463790456,4.9006711464848465,4.8265611472606365,4.827780223226307,4.8511315527135395,5.331696721356871,5.167172723979152,,5.160540888298894,5.16028308556589,5.160936405690592,5.1602800537402995,5.175665029746441,5.160427101633931,5.160679646250983,5.165504852913562,12.758572334956057,14.351141817838247,0.0,0.6191355400184768,0.6680196317048706,5.8323379408390235,3.9862041422782766,5.6179219256983846,0.0,264.98801534602615,85.06574038823877,-99.5575438864414,-10.914529703247492,-2.4282327777180828,-6.637169592429426,179.9281988167108,210.5807751551614,7.737851678486528,5.13611646719906,8.099260582890823,850.0,24.0,1.1838433414837397,0.6652852134201397,0.0,0.0,0.11785113019775792,0.024056261216234408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.09232750021456806,0.27370475419801443,0.1345811709235882,13.664925939000156,11.569925173227013,9.147867045540842,7.160557125543603,8.054037110949476,5.557785521846129,6.272518227012139,3.920630344264702,4.436892856505185,2.5290087739742444,3.5875224781292077,1.9133537487013246,2.201663158685928,0.996466866741748,1.1391500707438749,0.5289851012899129,2.269729340079886,1.1399334543112836,2.629368620721967,1.1976111767163453,3.432401803991055,1.4543029925846338,64.59686326875394,36.3348722010763,26.84314886950065,23.72251279205586,23.023435181130797,23.023435181130797,92.0,102.0,43.84844599999997,25.761553999999997,0.3902439024390244,58.03,6.305555555555555,4.277777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,41.0,0.0,1.0,42.0,6.0,1.0,4.0,38.0,7.0,20.0,35.0,0.0,0.0,0.0,16.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,2.0,0.0,1.0,19.0,3.0,0.0,1.0,1.0,0.0,2.0,5.0,0.0,0.0,1.0,0.0,1.0,3.2188758248682006,4.504659004391702,3.6506582412937387,4.029806041084529,4.3741834572128555,4.806579245156295,4.738389029774314,4.550581995703689,4.2018901887852635,4.324960128375012 +193962,Cc1cc(C#N)cc(C)c1Oc1nc(Nc2ccc(C#N)cc2)nc(N)c1Br,1,53.906976744186046,6.369930232558139,3.697674418604651,9.513191054965388,160.51417291316827,249.2631835116279,1.85239296680779,6.48127441860465,4.951432752735509,7.825831930232556,263.1692669877764,31.666666666666668,6.493044444444446,4.222222222222222,9.578600823045267,147.22957552074885,125.39097815555559,2.0015184137777777,6.650866666666667,3.8604252400548704,7.862690533333331,295.58670379651494,30.267605633802816,6.383797183098591,4.028169014084507,8.29681794470527,151.3740422673738,120.59952101408453,1.8326617627315913,6.520598591549296,3.494435750304296,7.799759718309859,264.4972434171193,33.3448275862069,6.490280459770114,3.528735632183908,6.608343976160067,153.43287891143564,134.43971316091955,1.6900081166631955,6.628593103448277,3.5943486590038294,7.934375540229885,243.8865324713384,23.84375,6.42505,3.125,5.479938271604939,160.67748408112018,90.47276309374998,1.4861408983472808,6.5159531249999985,3.5600244341563787,7.9292584999999995,205.47865364277024,26.57471264367816,6.397595402298853,3.1954022988505746,5.392081736909324,158.59480182089138,103.93319519540232,1.5674430896252418,6.507033333333333,3.496044416063572,7.866171977011495,217.46299515398738,28.77173913043478,6.27961847826087,3.0,5.033816425120773,163.92959842898077,115.4403986630435,1.5596088805699246,6.385393478260869,3.308843263553409,7.804767152173912,209.4415823757412,30.3625,6.406387499999999,3.225,5.157407407407407,154.48026659176497,114.41651785000003,1.7339149998999992,6.572743749999999,3.4110725308641983,7.930845124999998,228.5024342560433,24.28395061728395,6.445922222222219,2.6666666666666665,4.513488797439415,167.14579461608514,92.24354429629628,1.4756164307579747,6.531435802469136,3.553440786465478,7.953388271604939,194.66478114303445,27.730665224445637,0.10131173607355319,0.020922429540372118,0.6554894537587885,3.967794848511151,1.7429821578307618,146.7899378518118,0.2838467219884153,0.09801341265548941,1.3386501323148756,0.05898143320713897,48.48340314958564,-0.1415179376239411,-0.011764862688540377,-0.014588797806653312,0.2489033110990926,1.4522042299050004,-0.06506881552125458,-0.6358812543957668,0.006080822183186737,-0.00940969172525691,-0.06910059186620644,-0.007794016152875423,1.8342450141621738,2.1104746379847494,0.03507273821403269,0.005816308641861879,-0.05378621104670207,0.6908314234280727,0.2711108419075184,10.188318105279599,0.028635650926512258,0.03217247008280074,0.17901506308760876,0.017474886805962857,6.423578394907586,2.007105425113294,-0.002595403542144576,-0.005366406811602652,-0.0850537413824186,-0.7042920256411564,-0.5563236674136098,9.650904666766138,-0.08414282228228889,0.00380406930120661,-0.11380270241544478,0.003956474036913393,-10.261608690843012,-2.048736929872003,-0.0025438581665765477,0.006389279806779534,-0.08281503515413735,-0.6517870699890177,0.06373267268061282,-10.275144894689694,0.011369043088173039,-0.006259900058590219,-0.059068038467511595,-0.0019573973544258147,-1.053574097659314,-0.17600069624463066,-0.026500081435755888,-0.006309623539341605,0.0026233503042962032,-0.8849744059235642,-0.38843903566594457,-0.38651361551133595,-0.026387705363373117,-0.023664922946855398,-0.2288971503983311,-0.01334599508898876,-8.197440939757938,1.5051790627130999,-0.00792349037082324,0.0029414179325360683,-0.024549109977190963,-0.23667780104388128,0.4226274424372743,7.532679604709945,0.08575987678207349,-0.005608003150939416,-0.10741007536469284,-0.005617142509464574,13.232153071471595,-12.786769875608439,-0.021362840724716076,0.0010830702954024683,-0.16450108166576527,-0.8022455136465713,-0.8788001165256535,-65.70535681576523,-0.16084023885709986,-0.027106871957815026,0.04548433928527709,-0.01770765617225527,-23.81999586938133,-4.492364908625951,-0.04794489714159804,-0.004262243012936569,0.04563027061674979,-0.5030196342330606,0.6773963064501402,-21.849557550347527,0.02042814124584617,-0.05005082293398499,-0.252672168408668,-0.023549243141103952,-5.150682530186223,,,0.5023809523809525,1.5625,0.9285714285714286,0.07142857142857142,0.6339285714285714,0.29464285714285715,0.7359000562449206,0.01817129862709394,0.027385584341379658,1.1297476224102214,0.2981459878508281,0.18061891217825998,1.865647678655142,0.47876490002908806,2.018416809855572,1.4735845427293632,0.40760896416494374,0.07374594558718754,0.06347735737407686,0.5448322671262081,10.09416444651164,2318.0,273.907,159.0,409.06721536351165,6902.109435266236,10718.316890999999,79.65289757273497,278.69479999999993,212.91160836762688,336.5107729999999,11316.278480474384,1425.0,292.18700000000007,190.0,431.03703703703707,6625.330898433698,5642.594017000001,90.06832862,299.28900000000004,173.71913580246917,353.8210739999999,13301.401670843172,2149.0,453.24959999999993,286.0,589.0740740740741,10747.55700098354,8562.565992000002,130.118985153943,462.96250000000003,248.10493827160502,553.7829399999999,18779.30428261547,2901.0,564.6543999999999,307.0,574.9259259259259,13348.6604652949,11696.255045000002,147.030706149698,576.6876000000001,312.70833333333314,690.290672,21218.12832500644,2289.0,616.8048,300.0,526.0740740740741,15425.038471787537,8685.385256999998,142.66952624133896,625.5314999999998,341.76234567901236,761.208816,19725.950749705942,2312.0,556.5908000000002,278.0,469.11111111111114,13797.747758417549,9042.187982000001,136.36754879739604,566.1119,304.1558641975308,684.3569620000001,18919.2805783969,2647.0,577.7249,276.0,463.1111111111111,15081.52305546623,10620.516677000001,143.48401701243307,587.4562,304.4135802469136,718.0385779999999,19268.62557856819,2429.0,512.511,258.0,412.5925925925926,12358.421327341199,9153.321428000003,138.71319999199994,525.8195,272.88580246913585,634.4676099999998,18280.194740483465,1967.0,522.1196999999997,216.0,365.5925925925926,13538.809363902898,7471.727087999999,119.52493089139595,529.0463,287.8287037037037,644.22445,15767.84727258579,1192.4186046511625,4.356404651162787,0.899664470236001,28.186046511627907,170.6151784859795,74.94823278672276,6311.967327627907,12.20540904550186,4.214576744186044,57.56195568953965,2.536201627906976,2084.7863354321826,-6.368307193077349,-0.5294188209843169,-0.656495901299399,11.200648999459167,65.34919034572502,-2.9280966984564563,-28.61465644780951,0.27363699824340315,-0.42343612763656097,-3.10952663397929,-0.35073072687939405,82.54102563729782,149.8436992969172,2.4901644131963208,0.4129579135721934,-3.818820984315847,49.04903106339316,19.248869775433807,723.3705854748515,2.03313121578237,2.284245375878853,12.710069479220222,1.2407169632233628,456.07406603843856,174.6181719848566,-0.22580010816657808,-0.46687739260943073,-7.399675500270418,-61.273406230780616,-48.40015906498405,839.628706008654,-7.3204255385591335,0.3309540292049751,-9.900835110143696,0.34421324121146524,-892.759956103342,-196.67874526771226,-0.24421038399134856,0.6133708614508353,-7.950243374797186,-62.571558718945695,6.11833657733883,-986.4139098902107,1.0914281364646117,-0.6009504056246611,-5.670531692881113,-0.1879101460248782,-101.14311337529415,-15.312060573282867,-2.3055070849107624,-0.5489372479227196,0.22823147647376968,-76.99277331535009,-33.79419610293718,-33.62668454948623,-2.295730366613461,-2.0588482963764196,-19.914052084654806,-1.1611015727420222,-713.1773617589406,138.47647376960518,-0.7289611141157382,0.2706104497933183,-2.2585181179015685,-21.77435769603708,38.881724704229235,693.0065236333149,7.889908663950761,-0.5159362898864263,-9.881726933551741,-0.5167771108707409,1217.3580825753868,-1022.941590048675,-1.709027257977286,0.08664562363219747,-13.160086533261222,-64.1796410917257,-70.30400932205228,-5256.4285452612185,-12.867219108567989,-2.168549756625202,3.6387471428221674,-1.4166124937804216,-1905.5996695505064,-363.881557598702,-3.883536668469441,-0.3452416840478621,3.6960519199567328,-40.74459037287791,54.869100822461355,-1769.8141615781497,1.6546794409135397,-4.054116657652784,-20.46644564110211,-1.90748869442942,-417.20528494508403,0.7235280023619584,0.5965184131755361,0.446847240027149,0.29988708203485626,0.2872479755166491,0.16218506432010993,0.18920349162550454,0.0861145198859388,0.11940287657655382,0.0426038602904698,0.07511234787106572,0.02138535630137888,0.049691148856322566,0.011690870968574248,0.032037039273357826,0.0053056148310031605,35.00041826029941,5.680725888882899,3.5211948792659276,2.1791154930373793,0.4429578952811702,-0.47401862692989083,3.2387391508098213,0.9108647699173276,6.01015820155093,0.25601316214092174,14.566160338460664,10.942145973126044,79.90417862685953,11.692772450556463,3.058989673753618,0.7776332078706641,3.4641165209463547,2.22859698548713,6.028462636579681,1.042969725563104,3.6774654748020184,2.4243431940247655,26.52389301229264,14.706810524272662,0.28892281962438715,0.6750685749144808,0.7634578765217787,0.8409104490296829,0.8726699429206077,0.8806098163933389,1.54900928596081,1106.1535757595157,2.0,2.0,2.0,0.0,9.0,0.0,4.0,0.0,0.0,3.7337603682837663,1.4717258724452158,0.9539430234570663,0.5002273256820224,0.31418081405411513,0.2676691861471383,-4.3741358134334405,1478.356658580858,66.55118417824092,34.38038740885716,70.70945468436604,,16.0,700.0,0.0,0.0,17.646190395256895,27.03652060719387,11.126902983393991,0.0,36.39820241076966,13.847474399381248,43.353132169434645,20.994313540439208,14.06666666666667,43.75,26.0,2.0,17.75,0.0023809523809524996,0.0,8.25,0.19565891472868246,0.08244254045967614,-0.11321637426900633,0.04988479262672807,0.0979416058394158,0.0,0.6356589147286823,0.8154761904761904,0.43999999999999984,0.5532163742690062,0.7655913978494623,20.605201574857777,0.5087963615586304,0.7667963615586304,31.632933427486197,8.348087659823186,5.0573295409912795,52.238135002343974,13.405417200814465,0.6160583941605842,0.2511848341232227,0.0,0.35545023696682454,0.1,0.5033421713104328,-1.1371270196634262,-0.060187669865636645,-0.026444814410777343,-0.06317372331463476,0.49665782868956715,1.1220260664031712,0.04151262839796818,0.02609362945123654,0.04488104265612685,-6.900584743882346,0.4954635877832821,0.8925831378624223,1.7469437755487047,0.711936193619362,0.4075260666649964,1.0965744993058166,0.4906855346631342,0.7255150009527783,0.8304511253302495,0.6508375650734756,0.9293577348363928,0.7454957143304228,0.5585995592857376,0.5129000124916323,0.6732486894159518,1.2382512899177243,0.7176773370723941,0.8422584787622658,0.5605286466730851,0.7408903052813945,0.5086711983058065,0.37768167646355694,0.5900013539542927,0.7521011789197465,0.8473650018225277,1.0737611185374907,1.4067790795687487,1.0961647888926824,1.0984427293095256,1.3227175938493896,0.856471392102663,1.2103067639100091,0.9737640805656895,0.7461043130013568,1.0592066055325116,1.0806383603171756,0.9853135848578228,1.3514089820440798,1.0642516563028264,1.1641398514851486,1.26304797702025,0.9133587681282179,0.9768720651600284,0.9239305550516579,1.3419104024625497,1.0058407184279328,1.467137247313713,0.9765406350880008,0.7761102286162378,1.3310810290910715,1.46177459900872,0.9848355525207694,1.2251519352559932,1.2428513093716307,0.7674267590955717,0.9683765773692767,1.2773426484915873,0.998168533948055,1.2979642055316998,1.0698372329737431,1.2402541927343467,1.1308552437072883,0.8232623633895029,1.0851808006887647,1.1253906258192914,0.7575330362901964,1.2502408975930848,0.7829411634754537,1.1216072898710348,1.05791661756026,1.1277319933556205,0.7465594253601704,2.8186829582244424,1.157483728848304,1.2141418141375033,1.3504022277227723,1.1132243621961033,1.466541214570277,2.8513755925545525,1.9707959235986212,1.269543853337365,0.6705190793040908,1.3848811935345173,1.489373085951883,1.3867240490090282,1.6806187996336266,1.6055975100211424,0.7818420730961986,1.0836724700896583,0.6867769608449432,1.3791688297209543,0.9451313294270343,1.6930683909149569,1.0831406716357954,1.5781194618391554,1.0475270511701127,7.0,0.14018977655341291,3.1111111111111125,2.25,1.9911111111111115,0.9305555555555556,0.8742857142857143,0.4618055555555556,0.4149659863945578,0.23812500000000003,6516.763150045261,6981.08759135125,2813.814591111561,2654.849412271647,12.449273445318434,0.3614773058443134,7.9491436205855734,0.5661150483026949,1.0,0.1111111111111111,1.6925043864183313,3.954538882256882,4.472321731245032,4.9260374290200755,5.112083940647983,5.15859556855496,0.23333333333333334,0.006675703645400615,0.0740740740740741,0.05000000000000001,0.051054131054131056,0.025150150150150156,0.02300751879699248,0.013194444444444443,0.015369110607205845,0.009158653846153848,0.5010171199518858,22.68,10.346938775510203,5.795610425240055,170.10066102981088,1.0,4.249738390784353,162.66739235373458,,114.63140375718896,113.07010410779822,114.23107147439498,114.63198142829386,179.8015341809323,114.79009657983858,115.99804132548032,153.4460927355222,-0.005103301218291281,-0.11612536853577343,-0.6972802933092752,0.3797213054638797,0.3659978112149412,-0.037331888469952175,-0.004331913097733614,0.02142290790109922,-0.09600412301050415,-0.05161960559979438,-0.13214355313312484,0.037832431203374595,0.07610616697807472,0.34618633115288416,0.27799394093495094,-0.08205503648956447,0.17410966287415178,0.15554424392096527,0.06940746930191474,0.10088420512984106,0.3282455861003924,0.13372804347170605,0.2962777581987909,0.13249025393471134,0.07237855308800721,-0.025617994940490316,-0.2564906145936629,-0.1297560790561815,-0.17750212713377314,-0.31917920956000234,0.06574636387208621,-0.296437533936795,0.03881172176483294,-0.0850130289223893,0.06707999147831001,-0.2116519886028403,-0.07387983350886092,-0.025109215034373557,0.305379439536442,-0.12634075907590755,-0.16426934730095483,0.03656530412217855,-0.06999897298861667,0.040053459164615765,-0.06386779001965119,-0.04412507573234803,-0.033186669905961114,-0.021730613554678212,-0.00634678954940754,-0.2615697101125244,-0.30157222071970635,0.004002124350366072,-0.2230393555391696,-0.22285887088447223,-0.0026331070178770115,-0.09296462956669296,-0.24144576038828502,-0.17099101914143033,-0.22627451323738593,-0.16907725958234424,0.054278505421003286,-0.07820900793833716,0.14058682462570996,-0.03745157124408094,-0.059649707225334664,0.24247376287733066,0.05131604873567273,0.3021344625060479,-0.05721669105279674,-0.08023760112655633,-0.09523577512498778,0.272921292893704,-0.46110577485665266,-0.21086244844532592,0.051765990814430306,-0.25095915841584154,-0.20218926236763488,-0.5041934093114121,-0.4476148554684754,-0.5666446937642079,-0.2765628828076201,0.03397776475517377,-0.3002242436203123,-0.4913020605399666,-0.16199989694678366,-0.4732412946392472,-0.20371644720858564,0.06961251680723628,-0.12677561553410716,0.3886421346350427,-0.1488491504942608,0.07196891724780921,-0.5106527931020042,-0.1887514611242983,-0.39926535963276,-0.10623599408430229,5.68952180866961,16.848195311434512,11.719433978767386,24.35908098849889,46.22109565494484,51.82809179864604,53.30897210572421,54.00827443130561,54.65976280339863,56.51567067595602,41.26036719642217,11.413050996618425,2.0648864764412513,1.777366006474152,15.25530347953383,7377.977882807195,4910.1626381263295,3528.432554587339,116.0,42.0,54.0,67.0,84.0,89.0,92.0,98.0,114.0,434.0490712000005,30.0,4.976733742420574,5.820082930352362,6.693323668269949,7.552237287560802,8.429235912657095,9.293669979563187,10.172636441606745,11.04031042896799,11.920448454187836,0.8527131782945736,1.0014883720930234,1.1190149525116952,0.842803011967712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7499497980782621,0.9907888736890105,1.0148969325361201,0.7119776340889619,6.0,2.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,15.787319034968565,16.040094126951345,0.0,11.828327617421866,0.0,0.0,0.0,20.49174015137139,0.0,0.0,77.30252369149424,5.687386274683562,23.26534560897854,329.3797375178804,-744.1192505013253,-39.38592876202609,-17.305098848868024,-41.33995836118472,325.005601704447,734.2374080795328,27.16525541621483,17.075288559989136,29.369496323181313,0.5,0.9667821133008415,0.19345501311413998,13.434651915998796,0.10632821427460264,0.888697334698604,0.03321788669915845,8.0,0.13333333333333333,0.3119096584721012,0.7287773562523095,0.8241989533167484,0.9078136898409622,0.9420999843802564,0.9506715580150801,4.717400000000002,,1.935714285714286,1.4873120412481786,1.5714836852838578,1.9539487685340697,-3.7389261570366172,1.3643397069039667,1.2370128023832165,-2.0908883908862173,109.2891,4.736862953800049,10.523783109476973,9.967957041894417,0.0,13.847474399381248,11.050456081168516,63.12472789339006,0.0,23.767942795303824,4.110873864173311,0.0,5.43372200355424,0.0,6.951772164398911,0.0,8.558910784768106,0.0,10.211009016314167,36.666666666666664,10.356571599081832,8.595464994244306,0.0,0.0,0.0,0.0,5.183714450641085,0.0,43.06400000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.1176429580029,15.787319034968565,17.453588333505085,11.629500169719275,9.967957041894417,0.0,36.50970013444277,22.253805966787983,40.87092192660208,0.0,0.0,0.0,36.240529514611616,32.24784131736527,35.64007348130085,325.3347847074691,,229.58873819914118,226.03397164122157,228.3498941141268,229.67394468843327,360.9389193734569,229.48274032346973,231.90772459364752,307.6389313249323,35.64007348130085,325.334784707469,,227.92955452567182,224.65289617434834,226.89065926350605,227.99913145826116,363.34199451890123,228.2158534527732,230.75906984857744,308.98307386193056,4.829443961981448,241.9247617078973,,170.6229261490645,167.07442501920488,169.08657290232395,170.6479291300315,281.47770944097533,170.04403847152332,172.0936285634308,235.77820770393947,1.2728597671893163,11.619099453838183,,8.19959779282647,8.072641844329342,8.155353361218815,8.20264088172976,12.890675691909175,8.195812154409634,8.282418735487411,10.987104690176153,2.414721980990724,162.66739235373458,,114.63140375718896,113.07010410779822,114.23107147439498,114.63198142829386,179.8015341809323,114.79009657983858,115.99804132548032,153.4460927355222,42.60392156862745,3.36225322990001,3.7173317169478644,0.0,0.0,5.99205106578393,0.0,43.64056809905317,0.0,3.04140118372622,5.995463706500864,0.0,0.0,0.0,0.0,17.983836521516153,4.188578198324407,30.61503826582536,632.6480411664497,72.77768861598825,170.04517193704592,192.30983444353637,211.81960944786326,219.81960944786326,221.81960944786326,814.0,133.89867884558655,21.737298055877638,63.266287833208736,120.63999999999999,120.63999999999999,1.0,8.795248607189212,5.906890595608519,4.556252841575278,5.20224833731322,,5.198445419463741,5.197728294282297,5.199437173662726,5.19836466232093,5.231308325318099,5.199392264163578,5.200398276949197,5.222071718265002,0.16272331577054563,0.18579458347547215,,0.18565876498084788,0.18563315336722488,0.18569418477366878,0.18565588079717607,0.18683244018993211,0.18569258086298493,0.18572850989104275,0.1865025613666072,2.546119957621151,2.678710321882694,,2.6779790402763153,2.6778410808304023,2.6781698010765282,2.677963505291608,2.6842808217783514,2.6781611636622085,2.678354631556543,2.6825136212329945,287.43000000000023,274.9298720143094,171.66482107943085,,172.03826750124045,172.76105849033007,172.54811511573342,172.02556787599048,168.19991269230948,172.5243580515499,172.39816946449153,169.58246781838378,9.81892400051105,6.13088646712253,,6.144223839330016,6.170037803226074,6.1624326827047655,6.1437702812853745,6.007139739011053,6.161584216126783,6.1570774808746975,6.05651670779942,6.646135471469876,6.175163278125385,,6.177336354720717,6.181528892195906,6.1802955429664825,6.177262533389034,6.154772645649179,6.180157849779872,6.179426157398995,6.1629587614831705,6.426980520131224,8.595464994244306,21.025237705242372,9.428386951911259,1.3158617508833967,14.54514979740624,0.0,3.7173317169478644,0.0,344.48723010533877,215.54127126859933,-486.94072816117375,-25.773574353524864,-11.324202980492409,-27.052262675620753,212.67890092052116,480.4741953558475,17.77654488060091,11.173818496647616,19.2189678142339,2190.0,45.0,2.01880288199877,0.9953945663138414,0.0,0.0,0.4247578980827672,0.16713320705355747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19444444444444442,0.06111111111111111,0.4972081926836574,0.13148577847632603,20.258784066134833,16.70251556891501,13.405417200814469,8.996612461045688,12.064414971699263,6.811772701444617,10.216988547777245,4.650184073840695,7.999992730629106,2.854458639461477,6.30943722116952,1.7963699293158262,4.422512248212708,1.040487516203108,2.94740761314892,0.4881165644522908,4.677460733789451,1.870982595184608,6.881896539274253,2.1180596086664627,9.969001891633818,2.4583468316685924,91.66522608853043,47.2163170775431,35.14889763974821,31.614952367005152,29.888007771003238,28.772479711332785,144.0,168.0,53.853894999999994,21.584104999999994,0.46511627906976744,144.08,10.11111111111111,6.277777777777776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,18.0,43.0,0.0,0.0,45.0,18.0,0.0,9.0,34.0,20.0,30.0,25.0,2.0,1.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,7.0,2.0,1.0,28.0,8.0,0.0,6.0,1.0,0.0,3.0,4.0,0.0,0.0,1.0,1.0,3.0,3.784189633918261,7.646391048553003,4.375757021660286,4.96109484853612,5.483239705042049,6.032336540378279,6.255270080141082,6.516193076042964,6.826036688634713,7.278542672208909 +2206,Cc1cc(=O)n(-c2ccccc2)n1C,0,21.923076923076923,6.074223076923077,3.230769230769231,7.3076923076923075,162.37235202705722,86.44069992307692,1.5029407253149232,6.150934615384616,4.205128205128205,7.589316615384617,220.56576830082744,24.48148148148148,6.337959259259259,3.814814814814815,7.481481481481482,148.06801753740004,92.77683299999995,1.7911100637037025,6.47644814814815,3.1975308641975313,7.725727555555557,259.9472856302192,21.31111111111111,6.286044444444443,3.6666666666666665,6.155555555555556,157.58678766550878,80.06901682222225,1.5158844217576448,6.383924444444448,3.049382716049383,7.732405422222225,218.33111376765672,18.807692307692307,6.340769230769231,3.1153846153846154,4.634615384615385,160.553580029624,68.23054061538463,1.4382860745268462,6.422492307692308,3.130341880341881,7.811763538461538,202.85970191153496,15.087719298245615,6.033912280701754,2.6491228070175437,2.9649122807017543,158.90732916530078,52.712008631578925,1.3031711018235617,6.123377192982456,3.005847953216375,7.56964210526316,173.8568306099702,12.053571428571429,5.991910714285715,2.107142857142857,2.0892857142857144,164.00120227754797,40.474568142857116,1.1335047026051073,6.049580357142857,3.1726190476190483,7.617902285714289,147.6838786393955,9.925,5.68435,1.9,1.2,158.9121151563573,31.16122924999999,1.1563817660197997,5.7714625,2.558333333333333,7.310272400000001,138.97298947358493,4.774193548387097,5.29709677419355,1.4516129032258065,0.0967741935483871,167.66657989739147,11.491042870967743,0.8468197839963226,5.354209677419356,1.763440860215054,7.026924516129033,85.86297419243871,2.4285714285714284,5.028571428571429,1.2142857142857142,0.0,175.83333650672074,4.184928,0.6357361634635712,5.060000000000001,1.2857142857142858,6.832512000000001,54.98456498509836,7.130177514792899,0.10183905325443782,0.012687388169748933,0.621301775147929,3.899408284023669,1.5403342857703122,34.02866900591716,0.2266042723530059,0.09744215976331355,1.3412228796844181,0.058091905325443775,50.378254130890596,0.5279421433267584,0.016892000876616214,-0.003727705273894536,0.3217181678720139,1.727372342756957,-0.2177037545147298,2.4016615524873917,-0.022777748123917557,0.01569544707429326,-0.08101395280882462,0.007545906640368157,-2.5383508866655964,1.3176857330703478,0.016931545036160376,-0.0010147164994668305,0.029980276134122248,0.4971729125575278,-0.2776847996150454,6.218294303484543,0.004051839258330856,0.017942113740959907,0.1092994375045657,0.0077187476660091825,4.242276829675104,-1.0147928994082842,-0.015110650887574,-0.0008558099703599637,-0.23964497041420124,-0.7618343195266275,0.1769703665734762,-4.787106366863908,-0.0005277226878402358,-0.015198668639053208,-0.08070348454963837,-0.006135775147929013,-2.501491667568553,-1.2934703622962735,-0.011424343402885912,0.0012791205756637622,-0.18270528391985882,-0.8818644243745457,-0.21841725998413936,-6.267222974878022,-0.057648772993889846,-0.011098772448873652,0.10996920308661197,-0.005535970102771727,-11.29359860540326,-1.0381445477599323,-0.03149866863905325,-0.000986146191501455,-0.014158918005071852,-1.029902789518174,0.21168914147059284,-4.708846036136938,0.03143379357327155,-0.03013817624683007,-0.39021555367709215,-0.01768150972104818,1.9714868693091923,-1.9167159763313606,-0.010798476331360902,-0.00041512437544187193,-0.0539940828402367,-0.6994082840236683,-0.2764939023043364,-9.22304389053254,-0.06096071318356746,-0.01318562130177515,-0.14827416173570024,-0.0041097822485206895,-14.890365227128592,0.4603932048100786,0.012021740790227222,5.8851478874727866e-05,0.1007825920977286,0.5273907234205003,-0.15824656616027352,2.123932671502201,-0.009918319687259024,0.011359329070433223,0.005344531399121958,0.005882268371826724,-0.6003083067489152,4.034657650042266,0.03855984784446332,0.0012463434224859054,0.24683009298393918,2.0896027049873207,0.2276972120776535,19.242611994082846,0.08163194779770834,0.041761686390532404,0.28148774302620455,0.01649609467455626,23.780895176240957,,,0.47380952380952385,1.3392857142857142,0.7142857142857143,0.03571428571428571,0.625,0.08928571428571429,0.5927396670872029,0.01541687568681668,0.027702589972530965,0.7988571699234159,0.2766197946414269,0.2018357269841204,1.3915968370106189,0.4784555216255472,2.0064003607816825,1.5712796636796715,0.3087975183351293,0.12632317876688162,0.0,0.4351206971020109,7.234421654,570.0,157.9298,84.0,190.0,4221.681152703488,2247.458198,39.076458858188005,159.92430000000002,109.33333333333333,197.32223200000004,5734.709975821514,661.0,171.1249,103.0,202.0,3997.836473509801,2504.9744909999986,48.35997171999997,174.86410000000006,86.33333333333334,208.59464400000005,7018.576712015918,959.0,282.87199999999996,165.0,277.0,7091.405444947895,3603.105757000001,68.21479897909401,287.27660000000014,137.22222222222223,347.95824400000015,9824.900119544553,978.0,329.72,162.0,241.0,8348.786161540447,3547.9881120000005,74.790875875396,333.9696,162.77777777777783,406.21170399999994,10548.704499399817,860.0,343.933,151.0,169.0,9057.717762422144,3004.5844919999986,74.28075280394302,349.0325,171.33333333333337,431.4696000000001,9909.839344768301,675.0,335.547,118.0,117.0,9184.067327542687,2266.5758159999987,63.47626334588601,338.7765,177.6666666666667,426.6025280000002,8270.297203806147,397.0,227.37400000000002,76.0,48.0,6356.484606254292,1246.4491699999996,46.25527064079199,230.85850000000002,102.33333333333333,292.41089600000004,5558.919578943397,148.0,164.21000000000004,45.0,3.0,5197.663976819135,356.222329,26.251413303886,165.98050000000003,54.66666666666667,217.83466,2661.7521999656,34.0,70.4,17.0,0.0,2461.6667110940903,58.588992000000005,8.900306288489997,70.84000000000002,18.0,95.65516800000002,769.783909791377,185.38461538461536,2.647815384615383,0.32987209241347226,16.153846153846153,101.38461538461539,40.048691430028114,884.7453941538461,5.891711081178153,2.5334961538461522,34.87179487179487,1.5103895384615382,1309.8346074031556,14.254437869822475,0.45608402366863776,-0.10064804239515247,8.686390532544376,46.63905325443784,-5.878001371897705,64.84486191715958,-0.6149991993457741,0.423777071005918,-2.1873767258382646,0.20373947928994024,-68.5354739399711,59.29585798816565,0.761919526627217,-0.04566224247600737,1.3491124260355012,22.372781065088752,-12.495815982677042,279.82324365680444,0.1823327666248885,0.8073951183431958,4.918474687705456,0.3473436449704132,190.90245733537967,-52.76923076923078,-0.785753846153848,-0.04450211845871811,-12.461538461538465,-39.61538461538463,9.202459061820763,-248.9295310769232,-0.027441579767692265,-0.7903307692307668,-4.196581196581195,-0.3190603076923087,-130.07756671356475,-73.72781065088759,-0.651187573964497,0.07290987281283445,-10.414201183431953,-50.2662721893491,-12.449783819095943,-357.2317095680473,-3.2859800606517213,-0.6326300295857982,6.268244575936882,-0.31555029585798844,-643.7351205079858,-58.136094674556205,-1.763925443786982,-0.05522418672408148,-0.7928994082840237,-57.674556213017745,11.8545919223532,-263.6953780236685,1.7602924401032067,-1.6877378698224839,-21.85207100591716,-0.990164544378698,110.40326468131477,-76.66863905325442,-0.43193905325443605,-0.016604975017674876,-2.159763313609468,-27.97633136094673,-11.059756092173457,-368.92175562130166,-2.4384285273426984,-0.527424852071006,-5.930966469428009,-0.16439128994082758,-595.6146090851437,14.272189349112438,0.3726739644970439,0.001824395845116564,3.124260355029586,16.34911242603551,-4.905643550968479,65.84191281656823,-0.30746791030502973,0.3521392011834299,0.1656804733727807,0.18235031952662845,-18.609557509216373,56.48520710059173,0.5398378698224865,0.017448807914802675,3.4556213017751487,29.254437869822493,3.187760969087149,269.39656791715987,1.1428472691679168,0.5846636094674537,3.9408284023668636,0.23094532544378765,332.9325324673734,0.7235280023619584,0.5904840783286811,0.4465584868505108,0.3006794670462941,0.2868965309867809,0.1569007603841143,0.1821245561087188,0.08401143109166985,0.11857698983104768,0.04190197817039327,0.07974441631703579,0.02357863182490047,0.04945536540218192,0.012751534465557155,0.033549915858477504,0.006857365110203686,8.022246527240696,5.6995588909353705,3.54591122285349,2.1986330193010346,0.45399235526101805,-0.47017637037231186,3.27698337960919,0.9777936076111745,6.022196618672791,0.9952619606554025,14.694145393042872,10.960821348505906,16.010091664275052,11.711235925589495,1.9774821336996153,0.7481682190174603,3.4919132323824496,2.2483081783475316,7.008277479957869,1.5120495557335194,3.704333410196169,2.444106894444725,20.88331838086536,14.702693551592763,0.3010625758308019,0.5821700589129815,0.7110538089296233,0.8303597705013692,0.8669358282103188,0.8669358282103188,2.0048952245091862,493.75123770895806,0.0,1.0,1.0,0.0,8.0,0.0,0.0,0.0,0.0,3.195126838987082,1.7895894235761847,1.145170673492975,0.5486408656342459,0.36576057708949783,0.36576057708949783,138.33202119373894,405.22574413876146,29.406425479630656,15.585605543798518,30.640469818118973,,7.0,161.0,0.0,4.794537184071822,5.559266895052007,0.0,11.381314269532023,0.0,10.748170003606795,48.98504745982105,0.0,0.0,6.633333333333334,18.75,10.0,0.5,8.75,0.0,0.02619047619047616,1.25,0.13564102564102554,0.06485671191553544,-0.0707843137254901,0.0,0.13042228739002915,0.0,0.5756410256410259,0.8119047619047618,0.4400000000000004,0.5107843137254905,0.8119047619047618,8.29835533922084,0.2158362596154335,0.3878362596154335,11.184000378927824,3.872677124979976,2.8257001777776853,19.482355718148664,6.698377302757661,0.5835777126099708,0.20100502512562812,0.0,0.3467336683417085,0.18181818181818182,0.32110502601942714,-0.3365499607207063,-0.039844447328184936,-0.012944229258488706,-0.03739444008007847,0.678894973980573,0.7115493633314335,0.03621403393512918,0.027367283205055132,0.04185584490184903,-1.8767550578091439,0.769171661287844,0.590913414402154,1.3760396376846067,0.6305114638447972,0.4383746417130332,1.3182217720027107,0.776867311734666,1.11032601749793,0.58886931637266,0.5487472766884531,0.5860249315732832,1.0021122735634151,0.7446980175195944,0.8109095903605746,1.3121672465870278,1.2380952380952384,0.9178469060866633,1.3004175966943161,0.7468063397790926,0.9158675505500499,0.7748734435253067,0.5159994553376905,0.788124867951651,0.83488880031925,1.099585062240664,1.325330606363446,1.368706359003221,1.6071428571428574,1.285091047040971,1.0038164716501907,1.094482808768462,0.9067631903320262,1.292376451513491,0.9849877450980392,1.276272896283913,0.9376196560373337,1.119058018490209,1.052092087016761,1.1333434783229774,1.3847117794486217,1.19832015547214,1.1396437602892062,1.1221309522793979,1.2087875012627485,1.050434564814487,0.8007610939112487,1.0275506515801294,1.1709535114335015,1.1847954949614703,1.6713239029313822,1.061060301805878,0.8290816326530613,1.3386082809451552,0.7152928733856275,1.1708395443947341,0.8207301405475633,1.6360614366239763,2.281600140056023,1.8340526453811694,0.910028897872836,1.2018931535269712,0.8505714798266205,0.5738026982684121,0.7157738095238096,0.9709313353566009,1.0313554815073103,1.2075707516361707,1.2796268132925024,0.9115861480562736,1.0703890931372548,0.8251232336192027,1.3073547704116797,0.9222326328470086,0.46295012059194635,0.29145219071171513,0.39938556067588327,0.6283959077781585,0.8256489287713421,0.9300653727908785,1.0344388783288547,0.5371736670248286,0.5832938013915244,0.39606958311433177,1.065253447616662,0.48162418494368714,0.12139387560634678,0.10699727816278053,0.16581632653061226,0.2465857359635812,0.48752374861348663,0.48870398922499886,0.6100727609288211,0.17268626965776973,0.10241596638655462,0.05607824858630453,0.6138381685934339,2.5,0.0,1.7777777777777786,1.7291666666666667,0.6011111111111112,0.28500000000000003,0.14122448979591837,0.027777777777777776,0.0,0.0,2390.313919999046,2669.7783212312474,1367.414859012866,1246.2266596879767,9.49374633191053,0.44370922820634273,5.281283474191712,0.7976210476684413,1.0,0.18181818181818182,1.5053128791540096,2.910850294564907,3.5552690446481168,4.151798852506846,4.334679141051594,4.334679141051594,0.16666666666666666,0.0,0.08465608465608468,0.08645833333333333,0.03756944444444445,0.02375,0.023537414965986395,0.027777777777777776,0.0,0.0,0.4504157218442933,10.515555555555556,4.244897959183674,2.020408163265306,82.19710859795416,1.0,3.573881630457089,41.80789240374504,,28.35268073819646,27.555585407904058,26.955373508221935,28.359755085949157,42.475408210479316,28.015410995037062,28.400848210899188,38.02846780080588,0.07404333794375284,0.1658695788776897,-0.2938118723901471,0.5178130511463843,0.44298319563873406,-0.14133539487232633,0.0705775930310343,-0.10051773467198448,0.16107449909174235,-0.06040305010893249,0.12989600871402493,-0.050385844655723135,0.18480405716920234,0.16625787941938233,-0.07997836007621027,0.048253968253968195,0.1274995784859214,-0.18027567274215212,0.18273692404493577,0.01788068343221203,0.18413091196399176,0.08149237472766883,0.1328713118078507,0.08420849239143945,-0.1423236514522822,-0.1483777628001027,-0.06745359713991465,-0.38571428571428584,-0.195371775417299,0.1148908832377086,-0.14067862501561523,-0.0023288293833142975,-0.15597631123910521,-0.06017156862745096,-0.10562186097279881,-0.04965419526189386,-0.18140787653781765,-0.11218037715200456,0.10081827390712475,-0.2940685045948204,-0.22615339562867712,-0.1417986095628003,-0.18417479019788374,-0.2544028512581799,-0.11390113351174182,0.08199174406604746,-0.0952967555764954,-0.22417606168051638,-0.14559869590989924,-0.30929852185836815,-0.07772649329455879,-0.022789115646258507,-0.26411771081725555,0.13743064958443638,-0.13837878981743687,0.13871668546612284,-0.30929298283243645,-0.2909401260504202,-0.3043713168296414,0.039133687804800865,-0.2688174273858921,-0.10603472819392436,-0.03271945099241704,-0.08690476190476193,-0.17936267071320175,-0.17950253062507365,-0.271037456355662,-0.26901837529613026,-0.13531741634014424,-0.11055147058823533,-0.07074621198077038,-0.295571283364467,0.06456966938830148,0.11804647044578995,0.004638581092288947,0.1622119815668203,0.13524891086200994,-0.1027352098970746,0.06241597845431086,-0.04376934108200832,0.11657509540044031,0.003984819734345343,0.10125796939991809,-0.01191602045575498,0.5658565500889154,0.3786351759194404,0.09823483019599052,0.3972789115646259,0.53587686971602,0.14782324472105318,0.5654823581473845,0.3602401091120712,0.428579236051123,0.20987394957983194,0.28396546097328823,0.4720468302544678,6.409925916482373,6.641727411325837,1.3103706971044482,13.704711417346012,25.661852083077065,30.86281184417266,33.476345705352124,33.660689036205234,33.660689036205234,28.089605050943554,21.9979152915154,4.32316525669181,1.7685245027363428,0.0,6.091689759428153,1237.8616332972663,1056.1753497205855,339.52948965575274,10.0,21.0,28.0,36.0,37.0,29.0,28.0,24.0,16.0,188.094963004,15.0,4.290459441148391,5.14166355650266,6.023447592961033,6.894670039433482,7.782807262839695,8.660947155060933,9.550591175100745,10.431966436539437,11.321922332113244,0.6410256410256411,0.9775384615384615,1.1262538639836757,0.6027487623524591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6764973744818058,0.9648567119155355,0.999383718975853,0.6339112715088697,6.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.559266895052007,9.476340119217006,4.681802935145185,0.0,0.0,18.19910120538483,19.056471336613843,18.80796704598726,5.687386274683562,124.14856123783326,-130.12002311541872,-15.40502455047687,-5.004616273669951,-14.457780346157634,262.4805824315722,275.10572102334277,14.001400929153784,10.580989270128567,16.18268947196134,0.42857142857142855,0.8753955641449801,0.2722673054556553,3.7714538251501084,0.25867082287202203,20.274396534895647,0.12460443585501998,4.0,0.06666666666666667,0.3202493744030662,0.6192719126533287,0.7563694585693226,0.8832788210182132,0.9221858806788087,0.9221858806788087,1.4844199999999999,,0.5357142857142858,0.6570497906002791,0.6236333567935969,0.5342659360630688,-2.118657900702788,0.5810893512851898,0.5290207864431083,-1.0376437345448832,55.74700000000003,0.0,0.0,9.36360587029037,7.04767198267719,6.923737199690624,0.0,52.44593448474195,0.0,5.687386274683562,3.4339872044851463,0.0,4.74493212836325,2.3978952727983707,6.259581464064923,4.844187086458591,7.861341795599989,6.985641817639208,9.509036565691064,16.666666666666668,11.243280423280424,0.0,0.0,0.0,0.0,0.0,1.853660241874528,3.4930555555555554,25.415999999999997,0.0,11.603429705215419,0.0,0.0,0.0,0.0,0.0,0.0,29.28260046357557,5.559266895052007,0.0,0.0,9.36360587029037,7.04767198267719,6.923737199690624,5.693927994848461,41.192739594841484,0.0,5.687386274683562,0.0,15.671467821163937,17.588931736526952,17.688004980879768,83.61578480749009,,56.628830864141115,55.01730655999243,53.82165653687327,56.6431864667396,85.85881266411695,55.94780922559505,56.72612202372851,76.50164005927387,17.688004980879764,83.61578480749009,,56.16964719067171,54.4541210251922,53.2871136596216,56.18524423582839,87.0694743216614,55.44973263877917,56.27267563534869,77.09457933615666,4.721130103391523,60.856035774978174,,41.422295005395185,40.13312873782636,39.09679220625755,41.433550893563606,64.38229813788291,40.87301858679534,41.500683768524986,57.24219039664848,1.2634289272056978,5.972556057677863,,4.044916490295794,3.9298076114280307,3.844404038348091,4.0459418904814,6.132772333151211,3.9962720875425037,4.0518658588377505,5.464402861376705,2.4309439331946114,41.80789240374504,,28.35268073819301,27.55558540789623,26.955373508207607,28.35975508594573,42.475408210479316,28.015410995032184,28.4008482108959,38.02846780080588,25.08627450980392,0.0,3.7962037037037035,0.0,0.0,0.0,0.0,25.983976693372178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.48169305923061,338.45343733736973,39.13813485800425,75.68210765868758,92.43699516085104,107.946770165178,112.70165766734144,112.70165766734144,258.0,99.09847499169963,48.17570633203574,60.03660333510054,26.93,26.93,0.75,7.673473816439198,4.906890595608519,3.36753673249147,3.691365652144545,,3.685162575881661,3.683605370496817,3.6821038061309794,3.6851752684557453,3.694485191920502,3.6845227039287094,3.685250994467078,3.693848791163238,0.240538338035105,0.2636689751531818,,0.2632258982772615,0.2631146693212012,0.26300741472364136,0.2632268048896961,0.263891799422893,0.263180193137765,0.26323221389050555,0.26384634222594555,1.5506537738051491,1.6424687216373532,,1.6407868795747198,1.6403642294331067,1.6399565119002444,1.6407903238060024,1.643313455718049,1.6406132298379221,1.640810872417069,1.6431411839284156,148.4599999999999,68.76591338831581,61.05862899719043,,61.350079404044784,61.444939221375556,61.5903761452162,61.34945949011863,60.672686874686754,61.392155146700574,61.344307674638685,60.711995262301045,4.911850956308272,4.361330642656459,,4.382148528860342,4.388924230098254,4.399312581801157,4.382104249294188,4.333763348191911,4.385153939050041,4.381736262474192,4.336571090164361,4.567180413849845,4.448306770305252,,4.453068702056754,4.454613713202358,4.456977863546461,4.453058597472308,4.4419658643046445,4.453754297271114,4.452974619033924,4.442613530687195,3.4930555555555554,11.603429705215419,0.0,1.8640306122448984,0.0,11.243280423280424,0.0,1.9175,1.8787037037037038,169.90083192290984,47.999451919172216,-50.308193111357575,-5.95603145015704,-1.934930504282984,-5.5897992345952865,101.48264281536554,106.36388933780937,5.413349651410744,4.090918820684975,6.2566993728123155,284.0,20.0,0.9416323882986846,0.40633967179304653,0.0,0.0,0.33435576908530695,0.11118680660540503,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.028867513459481287,0.383125254174133,0.11602891162345821,0.4948606188923076,0.1182088588987999,10.129392033067417,8.266777096601535,6.698377302757662,4.510192005694412,6.024827150722399,3.2949159680664004,5.0994875710441265,2.3523200705667557,4.268771633917717,1.5084712141341576,2.950543403730324,0.8724093775213174,1.4342055966632756,0.3697944995011575,0.9393976440373701,0.19200622308570323,2.417098015928427,0.9240764592996746,4.089546012491785,1.176289345850194,5.880216457682068,1.3667461495476672,46.262170361588666,32.833857844626095,24.211627682739604,19.686842277737597,19.150766285339287,19.150766285339287,72.0,85.0,29.37351599999998,15.186483999999997,0.4230769230769231,43.03,5.055555555555555,3.1111111111111116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,11.0,26.0,0.0,0.0,27.0,11.0,1.0,5.0,22.0,12.0,15.0,15.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,0.0,1.0,14.0,3.0,0.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,2.0,3.1135153092103742,5.885561349502718,3.7784916128036232,4.383587915240834,5.003526754858961,5.356291419885857,5.340238756511593,5.719491768361381,5.961729948165103,5.931955025991852 +10252640,CCn1ncc2c(NC3CCOCC3)c(-c3nnc(Cc4sc(C)nc4C)o3)cnc21,0,26.928571428571427,6.226391071428573,3.482142857142857,7.7936507936507935,165.04527851734514,106.57321582142858,1.5687255468075894,6.295844642857143,2.9544263178522443,7.735199446428571,221.49475983493429,27.85,6.487146666666666,4.1,7.755555555555556,149.51167736619843,106.57878875000003,1.8291882623333335,6.62282,2.961934156378601,7.883448133333331,264.18419075199404,23.8411214953271,6.366361682242991,3.7383177570093458,6.121495327102804,158.15099434117326,90.17770454205605,1.5509752266050012,6.4635981308411194,2.715357101649935,7.84930048598131,218.57386335883172,19.590551181102363,6.286983464566929,3.2992125984251968,4.63254593175853,162.41775923259115,71.15289535433071,1.4221054064419767,6.371040157480315,2.578788762515796,7.817391590551181,194.1705720908091,19.12686567164179,6.271688805970149,3.2761194029850746,4.748756218905472,162.0438629266618,69.17404505223881,1.3852287300715227,6.352191791044776,2.6757186290768384,7.7810092835820885,187.9966810477792,18.977099236641223,6.176729007633588,3.2290076335877864,4.8320610687022905,160.3812773277594,69.77067287022902,1.3727681380051755,6.262420610687024,2.6344124022241067,7.687749160305342,188.8242656473149,18.466666666666665,6.2620644444444435,3.162962962962963,4.471604938271605,162.55201780053392,67.58956835555557,1.3265393674927928,6.3338,2.697508001828989,7.765895540740742,184.6519385979269,17.880597014925375,6.428349253731341,3.0522388059701493,3.7661691542288565,167.37978004412898,63.86257051492539,1.2687221981696641,6.48097537313433,2.7298000737055457,7.934923820895523,175.50324472715153,18.214876033057852,6.406856198347106,2.9421487603305785,3.600550964187328,166.64149405742856,64.95998566942148,1.2850945414110333,6.459804958677685,2.73222120191817,7.94061188429752,173.41910251721188,9.76530612244898,0.1157836415816326,0.017425267652099306,0.6042729591836734,4.165532879818593,1.6793647813839194,44.9680967385204,0.26489494871108893,0.10907675382653056,0.5140533579687019,0.06536592570153059,49.42068681828771,0.8918367346938766,0.011335941751700655,-0.006724464009026202,0.27697704081632657,1.8492819349962204,-0.20462685183962728,4.1118288811224435,-0.010654167525709584,0.0119045854591838,0.03548408732491624,0.0032092171556122547,-0.7716812800148115,1.7827579629982835,0.008797099406351308,-0.00027410734770511914,0.08414493133702082,0.7479814355648797,-0.1659974336021991,8.294939325231258,0.028353273920091737,0.010821343636753836,0.046911902524942144,0.0031939185908592496,6.192767252885769,-1.216937168568215,-0.02023410558613209,-0.0037527965599192903,-0.020892756708982795,-0.10329066009605951,-0.041265731858151404,-5.219527167654269,0.001708654740100695,-0.018049925930017623,-0.022467526105092256,-0.014456882675658833,2.0686401302289212,-0.8409990862016451,0.008823661190222352,0.0050124123972383385,-0.04936890801096556,-0.09979016482214789,0.10718767425476268,-4.035528236921261,-0.03345876701217121,0.005829616109503567,0.02263379708495398,0.008058170913607984,-5.361659229099141,0.8153918055771929,0.010165417851300816,-0.002309956455749102,0.007504576257984125,0.2837582870298246,-0.16879876111332098,3.670770169876538,-0.013393728755006917,0.010682638212727852,0.0190454366334854,0.004871003278840161,-0.7770443597105875,0.46167800453514735,0.006807866354875274,0.0018969851407915385,-0.04117772108843537,-0.30474510791971127,-0.1194975373098144,2.1356470680933484,-0.0024446014082633045,0.006761658871882125,0.0022225617880134558,0.002383662922808016,0.10622546428636023,-1.3761803228754188,-0.037069382519798945,-0.0032856940991610106,-0.12133052848004874,-1.451957897586896,0.044384668747486575,-6.461187451206976,7.449797967063075e-05,-0.03430191374124265,-0.1706929992683764,-0.020583413441402656,-3.994680213391058,-1.1885646820711757,-0.014578122101113164,0.0021860161609825613,-0.12449137712936416,-1.2037068270834508,0.1758641819599502,-5.712546036631391,0.00934945017470058,-0.01635998877340181,-0.07456376507001808,-0.0018625203001138256,-3.3685694889625766,,,0.4774193548387097,1.217741935483871,0.532258064516129,0.016129032258064516,0.6854838709677419,-0.1532258064516129,1.0087411427355506,0.009538345935286971,0.023409313677222453,0.8502178690882625,0.22562640621687707,0.2620679434082584,1.858959011823813,0.48769434962513547,2.0769830002993412,1.4120527537932537,0.4684326280973069,0.1316593666506929,0.0,0.664930246506088,7.842482929285728,1508.0,348.6779000000001,195.0,436.44444444444446,9242.535596971327,5968.100086,87.848630621225,352.56730000000005,165.44787379972567,433.17116899999996,12403.70655075632,1671.0,389.2288,246.0,465.33333333333337,8970.700641971905,6394.727325000002,109.75129574000002,397.3692,177.71604938271605,473.00688799999983,15851.051445119643,2551.0,681.2007000000001,400.0,655.0,16922.15639450554,9649.014385999997,165.95434924673512,691.6049999999998,290.5432098765431,839.8751520000002,23387.403379394993,2488.0,798.4469,419.0,588.3333333333334,20627.055422539077,9036.41771,180.60738661813104,809.1220999999999,327.5061728395061,992.808732,24659.662655532753,2563.0,840.4063,439.0,636.3333333333333,21713.87763217268,9269.322037,185.62064982958404,851.1936999999999,358.54629629629636,1042.6552439999998,25191.555260402412,2486.0,809.1515,423.0,633.0,21009.94732993648,9139.958146,179.832626078678,820.3771000000002,345.10802469135797,1007.0951399999998,24735.97879979825,2493.0,845.3786999999999,427.0,603.6666666666667,21944.52240307208,9124.591728000001,179.08281461152703,855.063,364.1635802469135,1048.3958980000002,24928.01171072013,2396.0,861.3987999999997,409.0,504.66666666666674,22428.890525913284,8557.584449000002,170.008774554735,868.4507000000002,365.79320987654313,1063.279792,23517.434793438304,2204.0,775.2295999999999,356.0,435.6666666666667,20163.620780948855,7860.158266,155.49643951073503,781.6363999999999,330.5987654320986,960.814038,20983.71140458264,546.8571428571429,6.483883928571426,0.9758149885175611,33.83928571428571,233.2698412698412,94.04442775749949,2518.2134173571426,14.834117127820981,6.108298214285711,28.786988046247306,3.6604918392857133,2767.558461824112,53.510204081632594,0.6801565051020393,-0.40346784054157214,16.618622448979593,110.95691609977322,-12.277611110377636,246.70973286734662,-0.6392500515425751,0.714275127551028,2.129045239494974,0.1925530293367353,-46.30087680088869,190.75510204081633,0.94128963647959,-0.02932948620444775,9.003507653061227,80.03401360544213,-17.761725395435302,887.5585077997446,3.033800309449816,1.1578837691326604,5.019573570168809,0.3417492892219397,662.6260960587773,-154.5510204081633,-2.5697314094387753,-0.4766051631097499,-2.6533801020408148,-13.117913832199559,-5.240747945985229,-662.8799502920922,0.21699915199278824,-2.2923405931122383,-2.8533758153467166,-1.8360240998086719,262.717296539073,-112.69387755102045,1.182370599489795,0.6716632612299374,-6.615433673469385,-13.371882086167817,14.363148350138198,-540.760783747449,-4.483474779630942,0.781168558673478,3.032928809383833,1.0797949024234699,-718.4623366992848,106.81632653061227,1.3316697385204068,-0.30260429570313235,0.9830994897959204,37.17233560090702,-22.11263770584505,480.87089225382647,-1.7545784669059061,1.3994256058673487,2.4949521989865873,0.638101429528061,-101.79281112208696,62.326530612244895,0.919061957908162,0.2560929940068577,-5.558992346938775,-41.14058956916102,-16.132167536824944,288.312354192602,-0.3300211901155461,0.9128239477040868,0.30004584138181656,0.32179449457908216,14.340437678658631,-184.40816326530611,-4.967297257653058,-0.4402830092875754,-16.258290816326532,-194.56235827664406,5.947545612163201,-865.7991184617347,0.009982729275864521,-4.596456441326515,-22.872861901962438,-2.758177401147956,-535.2871485944017,-143.81632653061226,-1.7639527742346928,0.26450795547888994,-15.063456632653063,-145.64852607709756,21.279566017153975,-691.2180704323983,1.1312834711387703,-1.9795586415816189,-9.022215573472188,-0.2253649563137729,-407.59690816447176,0.6894086529437804,0.6032004683873299,0.43195785252512,0.32518129457546774,0.27413969313010134,0.1796483594805948,0.1727747009433984,0.09589854270446217,0.11028789989536356,0.051144869508219594,0.06992161470390487,0.02743645997286536,0.042760337043364585,0.012209591449113207,0.027379960347513315,0.006194239729406974,16.00450482683936,5.699912729098271,3.547188798210963,2.1944136247895414,0.4387175527029446,-0.4876926385624197,3.285562654470646,0.9877766071386781,6.022768337034583,0.6531405163326625,14.694263922050567,10.311415717842905,32.06224648001115,11.71553890880336,2.9364439327973804,0.7501548822482972,3.493335518973,2.2427195937279647,3.525442749277975,0.6048996747509573,3.7055382734253803,2.4377120664307625,24.44072005711263,14.702359620193356,0.27933676100665245,0.6251266671898619,0.8241388327104002,0.8417394094920482,0.8417394094920482,0.8417394094920482,1.2409840201333788,1205.982302143023,0.0,6.0,6.0,0.0,3.0,4.0,2.0,0.0,0.0,4.10690276923438,2.001919564464652,0.7904404019016127,0.6832975447587577,0.6832975447587577,0.6832975447587577,273.2492354011387,1765.010844934029,57.907936431198294,31.51805080239337,65.73812134817041,,14.0,758.0,0.0,0.0,0.0,24.244110296125786,70.46310166780604,0.0,17.533629449547814,24.72612090613951,37.50452827049449,9.154013890853395,14.8,37.75,16.5,0.5,21.25,0.0,0.0225806451612903,-4.75,0.15768907563025236,0.029377880184332072,-0.1283111954459203,0.017137096774193505,0.15126235741444838,0.0,0.6035714285714283,0.8483870967741932,0.44588235294117595,0.5741935483870962,0.8312499999999997,31.270975424802067,0.2956887239938961,0.7256887239938961,26.356753941736137,6.994418592723189,8.12410624565601,57.627729366538205,15.1185248383792,0.5627376425855516,0.10135135135135134,0.0,0.36486486486486486,0.47619047619047616,0.30406834206767286,-0.769651708935016,-0.04760656332915714,-0.013743780516696712,-0.05131011392900107,0.695931657932327,1.7615283004713023,0.03543848509155075,0.03145586250841611,0.042964104889543955,-6.6172749143586715,0.7232998084291188,0.7420835083322431,1.4496092126382003,0.6365875109938436,0.42680264471057894,1.3345516509477042,0.7254673951710999,1.049123548930805,0.7095941206444278,0.7685203227819376,0.817154874625723,0.9843597828012046,0.7608899989257708,0.9697519904832338,1.1840756174137435,1.017729884348877,0.8426080082825006,1.181119653278085,0.7570841038055836,0.8899544614726477,0.9250496249098682,0.8921478467773233,1.0412526740208774,0.8356480127231988,1.2187754547922889,1.2472517278471167,1.4691749751708325,1.075021295161324,1.0465633693243437,1.09571424169482,1.196202188833038,1.053334697142617,1.2201005791672666,1.080955863434872,1.30688401926203,0.917681665050708,1.0459019557385487,0.9122307821395366,0.9460743925307848,1.1401567361083764,1.029820024130843,1.0005044737022786,1.048220484610207,1.097753176436667,0.9241208880318786,0.9482198965180901,0.8493640790242644,1.063328818330411,0.7266714924980258,0.8466705759903299,1.164432328624617,1.0856210598400775,0.9340146043790284,1.1036290530705621,0.7428027831206229,0.9379913413916381,0.8343336556009826,0.9306749151679234,0.8586649989601883,0.9860619128553156,0.7286079182630907,1.0124889932379655,1.0232613772252026,1.0715137300889281,1.1143684852517188,1.060882329106755,0.7469256476592527,0.8344113147103074,0.9941342589195467,1.048138063182311,1.0541657613474267,0.9376113597398761,0.9959898781952308,1.6219560286272352,1.5655504238019693,1.1401567361083764,1.4855410447761197,0.9986199081451238,1.010124049092319,0.8025841504004664,1.576397245159377,1.5917853613992665,1.6428542131299968,0.9599868862549055,1.1104778189417688,1.4524157986616415,1.1451149769536233,1.1417606140561287,1.4277694610778446,0.907377318585952,1.1145282771689973,0.8794309346607463,1.4373107564951095,1.4496901881304536,1.4206300065046122,0.9748190591796387,6.0,0.1974308744005714,3.333333333333335,2.520833333333333,1.5655555555555556,1.073611111111111,0.7039002267573694,0.4592899659863945,0.30389424288233813,0.25094907407407413,6785.625274571746,7515.354656947509,3252.2010441432076,3000.6334426094118,15.19498052156217,0.44138136203563744,8.488199322850079,0.7901300315436229,1.0,0.47619047619047616,1.7004521528232235,3.805435357592952,5.016914520155991,5.124057377298846,5.124057377298846,5.124057377298846,0.17142857142857143,0.007593495169252744,0.0666666666666667,0.052517361111111105,0.0333096926713948,0.02236689814814815,0.014365310750150396,0.010681161999683594,0.008213357915738868,0.008095131421744324,0.39523764728246213,22.775510204081634,10.092,4.940138626339005,183.423224950552,1.0,4.387714972477802,183.62473940387935,,137.32143129558284,139.1370226453379,140.02396771526756,137.34807725575374,190.77069368121406,140.47834220490688,141.19646320621058,171.70889009054088,0.09132706374085674,0.09790624648567745,-0.38590305430494054,0.45836411609498695,0.4439484667029578,-0.12184776893498968,0.09143880171384225,-0.0402203499068217,0.10913952828222384,0.06902802359882004,0.04909617849314889,-0.015614539774652774,0.18256037656617738,0.07597877632954705,-0.015730452649437274,0.13924987053978752,0.17956440559831904,-0.09884537025089038,0.1844627619768857,0.10703591766491401,0.09920852296322902,0.09125881933796914,0.04886213354405935,0.12530718716345696,-0.12461843523478064,-0.17475789593183721,-0.2153652176164521,-0.034575031683044884,-0.02479650577156356,-0.024572226543982553,-0.11607178302441111,0.006450310768153835,-0.1654791263656709,-0.043706603131381916,-0.22116848373984418,0.04185777785393784,-0.08612111854520503,0.07620818510878569,0.287651960205872,-0.08169968101445278,-0.02395615823982974,0.06382632019139534,-0.08974202889633,-0.12630956979350874,0.05344508252211699,0.04403005395080414,0.12327785198671631,-0.10849018041398616,0.08349884738408037,0.08779666723587844,-0.13256361404990014,0.012419182662289299,0.06812052508445982,-0.10051345781719827,0.08163054334323419,-0.050562416611480795,0.09793689157377115,0.0370495325791549,0.07451899788097245,-0.01572305869741674,0.047277371415302444,0.05879817098407141,0.1088640460890137,-0.06814423922603342,-0.07315873303897262,-0.07115639117508447,0.04749249407889479,-0.00922856936365948,0.0619899165924527,0.004323601341300403,0.036466444821605284,0.0021494129508344345,-0.14092546671033546,-0.3201607931260599,-0.18855917537456976,-0.20078761863505695,-0.34856474296996265,0.026429438820856035,-0.1436838096301331,0.00028123593912650607,-0.314475014500289,-0.3320530770246793,-0.3148951570790755,-0.08083012338697122,-0.1217129977460556,-0.12590830537002018,0.12545093737594334,-0.20601844785102166,-0.28896826932161235,0.10472065623230782,-0.12703553076414573,0.03529493567239622,-0.14998602543141137,-0.14505063319624867,-0.028493749306302767,-0.06816112251430843,5.93952329511177,17.244537555497114,11.969357547571118,18.222030082424126,41.063740422159086,43.99933998945119,44.10733998945119,44.10733998945119,44.10733998945119,64.38647300927958,43.77363536759086,14.521411471016513,4.0814403661714795,0.0,20.612837641688728,8672.590102284343,6958.9685063773995,2720.014413592092,242.0,50.0,69.0,95.0,114.0,132.0,165.0,198.0,219.0,439.17904404000075,35.0,5.14166355650266,6.013715156042802,6.910750787961936,7.80016307039296,8.703672758358856,9.60177416667137,10.508813937706645,11.41223182028755,12.321653257631358,0.6904761904761907,0.9887857142857143,1.1350912133145399,0.6534753856583845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6837449208725406,0.9754201680672272,1.0085383935074392,0.6374150976999798,2.0,5.0,0.0,1.0,1.0,2.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,6.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,14.470802494859726,0.0,5.647177220767728,5.890723922025908,5.890723922025908,0.0,14.6497599770396,5.098681808301038,21.534149494536813,0.0,33.61285484492389,36.874351929400746,39.956278867085665,212.0291403045769,-536.6839213505527,-33.19641442084125,-9.58364145268844,-35.77892809003685,485.27837570571563,1228.3269235834762,24.711522010357044,21.93440934970493,29.959193258133563,0.5,0.8925649921213183,0.16599684677711748,30.17746704423378,0.0991331368816973,91.03049841798449,0.10743500787868149,7.0,0.17142857142857143,0.292810096101503,0.6552785921761173,0.8638897721061706,0.8823392828698235,0.8823392828698235,0.8823392828698235,3.7562400000000027,,2.125,1.8465126745951221,1.8361149746903456,2.1213911100056384,-5.367723324916547,1.6573592411260711,1.5501866563820934,-2.8756824786485846,118.35170000000004,9.154013890853395,0.0,29.945805401942714,0.0,52.62027370291044,18.530552533032168,33.86310995065459,0.0,11.454175413722904,4.2626798770413155,0.0,5.602118820879701,3.4339872044851463,7.123672785204607,5.777652323222656,8.730851903519232,7.83241092718792,10.388102662282032,38.66666666666668,3.6616572557499687,22.26620819011862,0.0,6.074542705971278,1.6613748681583622,1.8016907665780328,5.968008274104783,1.8912900482353945,55.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.56510794561424,5.316788604006331,5.687386274683562,0.0,49.201410160116524,17.702440982638635,13.847474399381248,41.234803252971076,16.8108380802795,0.0,22.487576848955428,0.0,36.59462159686953,38.28971556886227,40.963208278736,367.2494788077587,,274.90008751806954,278.1549154407019,279.95961191768566,274.9547422095609,382.29064203342864,280.8497580071604,282.29291437007396,343.6033080829301,40.963208278736,367.2494788077587,,273.17922113240013,276.61738292085397,278.3927162052472,273.2363296807828,386.9657558970656,279.4484756214947,280.97001748539844,346.2934626597305,4.928430382116301,265.54834174882416,,197.26056995166402,200.32404124488065,202.79696173002384,197.29977181267017,276.42945603469843,202.1472001006842,202.99967118696455,246.05644082432022,1.3213938154430966,11.846757380895442,,8.867744758647405,8.972739207764578,9.03095522315115,8.869507813211642,12.33195619462673,9.059669613134206,9.106223044195934,11.083977680094518,2.5082848211604354,183.62473940387935,,137.32143129558284,139.1370226453379,140.02396771526756,137.34807725575374,190.77069368121406,140.47834220490688,141.19646320621058,171.70889009054088,54.62352941176472,0.0,6.071725808976198,0.0,0.0,0.0,0.0,56.478150036416594,4.747466763712601,3.690728272599214,5.518745656330571,0.0,0.31322805613164517,0.0,0.0,0.0,0.0,35.695245471198874,622.3922775338629,95.22532055810052,213.1043800252053,280.9472131287355,286.94721312873537,286.94721312873537,286.94721312873537,1350.0,144.41443851155617,74.91523847642961,84.15147650382262,132.02,103.78,1.0,9.390469422817926,6.129283016944966,4.461835938447747,5.47363517054635,,5.461867718262327,5.4573953232008865,5.455928501012138,5.461870671272592,5.462758187652834,5.457979106078942,5.4586992684786715,5.4615663513828965,0.14393019156283055,0.1765688764692371,,0.1761892812342686,0.17604501042583504,0.1759976935810367,0.17618937649266428,0.17621800605331722,0.17606384213157877,0.17608707317673133,0.17617955972202892,2.6269624382122245,2.83134507219879,,2.8291929156961224,2.828373740391973,2.8281049272931944,2.8291934563554024,2.829355936270035,2.828480705642207,2.8286126436504664,2.8291377376490754,316.00000000000097,419.79497619919863,210.37411459585383,,211.92892917872808,212.38938153145605,212.39161922366597,211.92835750368616,211.6393835581893,212.3418529013709,212.28959966243087,212.0707325071853,13.541773425780601,6.786261761156575,,6.836417070281551,6.851270371982453,6.851342555602128,6.836398629151167,6.827076888973848,6.849737190366803,6.848051602013899,6.840991371199526,7.171168551676915,6.480289555298521,,6.487653090234734,6.489823406819448,6.48983394256472,6.4876503927464055,6.486285916832322,6.489599601144564,6.489353490128112,6.488321974418181,13.484578410537242,10.282377939958451,18.816545133542718,3.5951060586472754,1.0326063712522047,0.31322805613164517,6.138865921730175,8.341983906708592,0.0,358.36498488943613,147.84951314758234,-374.23373207961714,-23.14810928024507,-6.682745215707448,-24.948915471974477,338.3882587368621,856.5215959325583,17.231530029875742,15.295028498795682,20.890770632501418,2739.0,48.0,1.9769567394060092,1.184250110182704,0.0,0.0,0.4206005603523789,0.1763302774274878,0.0,0.0,0.0,0.0,0.0,0.0,0.31030121992763315,0.11774524767082022,0.7611221337661942,0.3328020066435899,0.9842916012342892,0.34514912753227234,21.371668241257193,18.699214520007228,15.1185248383792,11.381345310141372,13.706984656505066,8.98241797402974,11.921454365094489,6.61699944660789,10.477350490059537,4.858762603280861,7.971064076245156,3.127756436906651,5.644364489724126,1.6116660712829434,4.517693457339697,1.0220495553521507,4.793927255453986,2.3625987842028002,8.171554198199805,3.269084145844827,11.796465593897624,3.832531855647604,102.62730298263187,38.730591007286044,29.125540402249673,28.411199981105803,28.411199981105803,28.411199981105803,170.0,204.0,63.94382499999998,36.71217500000001,0.48214285714285715,295.1,8.472222222222221,6.750000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,3.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,19.0,20.0,56.0,0.0,0.0,60.0,20.0,0.0,8.0,52.0,20.0,35.0,40.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,10.0,1.0,5.0,31.0,10.0,0.0,7.0,2.0,0.0,5.0,6.0,1.0,0.0,0.0,4.0,4.0,3.828641396489095,8.292146463021393,4.4744918623459755,5.115745778498873,5.760674649353951,6.1856940882575495,6.6311161745614875,7.151050661319689,7.618061046034204,7.9328107256476805 +67356,OCCN1CCN(CCCN2c3ccccc3Sc3ccc(C(F)(F)F)cc32)CC1,0,27.285714285714285,6.433005357142859,3.3214285714285716,7.900793650793651,168.47317763505492,109.91867940088055,1.545172973679893,6.475553571428573,5.8950265162649425,7.879855160714285,217.85342400235598,26.88135593220339,6.4148305084745765,4.0508474576271185,6.531073446327684,148.19807032796024,102.99287855094241,1.8461438260338987,6.559457627118645,2.893492362418916,7.818703389830507,264.27986734736044,23.66355140186916,6.551598130841123,3.532710280373832,5.881619937694703,161.21666600838546,89.90539588742908,1.5764100202396354,6.631483177570093,4.3053247952001845,7.970896635514015,219.2749412150086,19.006944444444443,6.087852083333334,3.111111111111111,3.7106481481481475,160.5174560942537,69.85136760424444,1.4425030478338472,6.184481944444446,2.5823688271604937,7.6299840694444425,190.26017494648,15.788819875776397,6.001204347826086,2.751552795031056,3.080745341614907,161.87148821882695,56.09267835133416,1.319759439292031,6.08986397515528,2.5582969097461845,7.568637925465838,169.7140422704523,14.290909090909091,5.9311454545454545,2.5757575757575757,3.0545454545454547,164.24147811914028,50.63277250696728,1.2162727684245698,6.004103636363636,2.500280583613917,7.519531975757575,155.112560703827,16.4,5.973333333333334,2.6,2.9355555555555557,163.79871346600748,59.90419353191464,1.2047262107197334,6.053668666666666,2.4618827160493826,7.5654188666666675,157.13829760771438,15.4,6.132649629629627,2.674074074074074,3.3580246913580245,167.3775415212302,55.50167991904,1.181537127671963,6.19480222222222,2.902846364883402,7.678325496296297,158.7810938499663,16.934426229508198,6.312065573770491,2.7131147540983607,3.3169398907103824,165.87289491208426,61.44977713399343,1.2515617671121144,6.375508196721311,3.349954462659382,7.821820065573771,170.7808470828927,10.417091836734695,0.21421629464285702,0.015297425736316466,0.6224489795918368,4.407454648526078,2.645527039367747,48.8764890196548,0.2895879739522385,0.19157895408163256,2.723352919807326,0.11994954559948978,50.90899920135637,0.5901720857834667,-0.004620895127118594,-0.006142701299845913,0.15055344171566928,0.8903661747184748,-0.3519243024525536,2.7148351112855633,0.0016314664934158306,-0.0023574649775164476,-0.1920878956191618,-0.004849176652758557,0.33350073004367153,0.7274341979782575,0.052029132593458,-0.001989420919693825,0.013398817470913637,0.577043200457753,0.6783531579469315,3.736006242963124,0.04420587604170473,0.04276173350181194,1.0536064799913998,0.030297780668868027,2.6404218814198144,0.4229379251700683,-0.001054166666666697,0.001432127032038462,-0.01977040816326529,0.1344875913328295,0.050646999526071566,2.092060058050164,0.020646875412697732,-0.00019113166099773277,0.1675990256713682,-0.0006342786104025014,2.9998251971226555,-0.6843944099378882,-0.0060419157608696105,-0.0008324291751989758,-0.008651286601597166,0.19300872522922205,-0.07558102944782548,-3.174850537210073,-0.015283214241749832,-0.005946012644188103,0.01716072504048582,-0.004234795821317665,-2.7448708129908956,0.44308132343846607,0.01897428977272719,8.163268358677595e-05,0.017594310451453307,0.5858113447399163,0.12667557584893893,2.287995919384122,0.007170870066446977,0.01683043985776129,0.050465381518691135,0.008800093794449583,2.2207880081197566,1.561479591836735,0.00832489583333326,0.0003793646223133824,-0.0019727891156462586,0.24857709750566892,-0.49715584468120255,7.559453381030815,-0.03039102256334731,0.012780641156462585,-0.08880127739110051,0.007793341067176853,0.4788920532379505,0.3850245653817081,-0.007216863425925943,0.00025057281011071865,-0.030120937263794407,0.025878684807256223,-0.24616362936609942,1.9277148863558426,-0.007128790353139572,-0.003530514928193507,-0.07441544158101056,-0.005822675493669696,2.4415776376000693,-0.29970307795249257,-0.028038294057377008,-0.0007483826331431972,-0.04165272666443626,-0.7016583955986769,-0.33546584741878716,-1.6288661234840331,-0.007849509448871422,-0.024031003261960532,-0.25846260094956647,-0.01664998880792071,-2.796603141573038,,,0.47412698412698423,1.0583333333333333,0.4,0.0,0.6583333333333333,-0.25833333333333336,1.0293814451218826,0.015379131876681858,0.026845798543348523,0.8397704496626506,0.2087789236710457,0.2729823965313756,1.8691518947845331,0.48176132020242135,2.056006974466266,1.5351521455104877,0.2240809748040581,0.05734229923345513,0.16942155709157175,0.5208548289557785,7.8066940734285835,1528.0,360.2483000000001,186.0,442.44444444444446,9434.497947563075,6155.44604644931,86.529686526074,362.6310000000001,330.1214849108368,441.27188899999993,12199.791744131935,1586.0,378.475,239.0,385.33333333333337,8743.686149349654,6076.579834505602,108.92248573600003,387.00800000000004,170.71604938271605,461.3034999999999,15592.512173494266,2532.0,701.0210000000002,378.0,629.3333333333333,17250.183262897244,9619.877359954911,168.67587216564098,709.5686999999999,460.66975308641975,852.8859399999997,23462.41871000592,2737.0,876.6507,448.0,534.3333333333333,23114.513677572533,10058.5969350112,207.720438888074,890.5654000000002,371.8611111111111,1098.7177059999997,27397.46519229312,2542.0,966.1938999999998,443.0,496.0,26061.30960323114,9030.9212145648,212.48126972601702,980.4681000000002,411.88580246913574,1218.550706,27323.96080554282,2358.0,978.639,425.0,504.0,27099.843889658147,8354.4074636496,200.68500679005402,990.6771,412.54629629629625,1240.7227759999998,25593.572516131455,2460.0,896.0,390.0,440.33333333333337,24569.807019901124,8985.629029787196,180.70893160796,908.0502999999999,369.2824074074074,1134.81283,23570.74464115716,2079.0,827.9076999999997,361.0,453.3333333333333,22595.968105366075,7492.7267890704,159.507512235715,836.2982999999997,391.8842592592593,1036.573942,21435.447669745452,2066.0,770.0719999999999,331.0,404.66666666666663,20236.49317927428,7496.8728103471985,152.69053558767797,777.812,408.69444444444457,954.262048,20835.26334411291,583.3571428571429,11.996112499999994,0.8566558412337221,34.85714285714286,246.81746031746033,148.14951420459383,2737.0833851006687,16.216926541325357,10.728421428571423,152.50776350921026,6.717174553571428,2850.903955275957,34.82015306122454,-0.27263281249999705,-0.3624193766909089,8.882653061224488,52.531604308390015,-20.76353384470066,160.17527156584825,0.096256523111534,-0.1390904336734704,-11.333185841530547,-0.28610142251275483,19.67654307257662,77.83545918367355,5.567117187500005,-0.21286803840723925,1.433673469387759,61.74362244897958,72.58378790032167,399.7526679970543,4.730028736462406,4.575505484693878,112.73589335907977,3.241862531568879,282.52514131192015,60.90306122448983,-0.15180000000000435,0.20622629261353853,-2.8469387755102016,19.366213151927447,7.293167931754305,301.25664835922356,2.9731500594284737,-0.02752295918367352,24.13425969667702,-0.0913361198979602,431.9748283856624,-110.1875,-0.9727484375000073,-0.1340210972070351,-1.3928571428571437,31.074404761904752,-12.168545741099901,-511.1509364908218,-2.460597492921723,-0.9573080357142846,2.762876731518217,-0.6818021272321442,-441.9242008915342,73.1084183673469,3.1307578124999864,0.013469392791818031,2.9030612244897958,96.65887188208617,20.901470015074924,377.51932669838015,1.1831935609637512,2.777022576530613,8.326787950584038,1.4520154760841812,366.43002133975983,234.22193877551024,1.248734374999989,0.05690469334700736,-0.29591836734693877,37.28656462585034,-74.57337670218038,1133.9180071546223,-4.5586533845020965,1.9170961734693877,-13.320191608665077,1.169001160076528,71.83380798569257,51.978316326530596,-0.9742765625000024,0.03382732936494702,-4.066326530612245,3.49362244897959,-33.23208996442342,260.24150965803875,-0.9623866976738422,-0.47661951530612345,-10.046084613436426,-0.7860611916454089,329.61298107600936,-36.563775510204096,-3.420671874999995,-0.09130268124347006,-5.081632653061224,-85.60232426303858,-40.92683338509203,-198.72166706505203,-0.9576401527623134,-2.931782397959185,-31.532437315847112,-2.0312986345663266,-341.1855832719106,0.7046539144562772,0.5850968529141803,0.43796483654765583,0.33588216501340307,0.28753646706085534,0.1860831148751011,0.17638004667157278,0.11181142167696922,0.11197811704885852,0.06441252116646859,0.07066968024420381,0.036811825383662136,0.04556178268149675,0.021354572816368093,0.029909980879937594,0.012119228809413556,16.00200501701844,5.693125085434349,4.1245390871289835,2.1782276702569914,0.5024192093603577,-0.4162488999952274,4.022112591510381,0.9871446076691053,7.014090505287799,0.6606516655292465,17.430702193728056,10.33722798583321,32.06099947379829,11.705092249102075,2.9166847657126556,0.5269753767788191,4.007160947191901,2.232141145825775,8.007389297373082,0.628227778952496,4.030600282899903,2.4317191527965494,24.43424573956385,13.302786306943421,0.2828241295927757,0.5350407559961264,0.6686458056118163,0.8078721709746198,0.8375235363703228,0.8612446286868854,1.3442743400064738,868.9465296058855,0.0,0.0,9.0,0.0,11.0,1.0,1.0,0.0,0.0,4.104083987250283,2.5851426944881206,1.7805239440245204,0.9420515625386328,0.7634801339672057,0.6206229911100625,115.40524044633759,1505.979175798266,64.00161545789585,26.892485282111895,59.26598276990877,,15.0,782.0,11.73975000914047,13.171245143024459,6.606881964512918,18.776899086508713,54.62295687820799,23.894619086314336,6.06636706846161,29.165378004696915,9.799819461700956,5.106527394840706,14.223809523809527,31.75,12.0,0.0,19.75,0.0,0.02587301587301578,-7.75,0.1710034013605442,0.05538715486194523,-0.11561624649859897,0.018899129544290738,0.17879125604730295,0.0,0.6138605442176867,0.8858730158730154,0.44285714285714245,0.5584733893557414,0.8669738863287246,30.881443353656476,0.46137395630045575,0.8053739563004557,25.19311348987952,6.263367710131371,8.189471895941269,56.074556843535994,14.45283960607264,0.535208743952697,0.08369601606963507,0.03515232674924673,0.2601272179444258,0.45454545454545453,0.4132527439444085,-0.9356101493387784,-0.06201601387415485,-0.01670732409533533,-0.05503589113757522,0.5867472560555914,1.3284042172896944,0.034200839062938734,0.02372150388017312,0.034061646597171646,-5.299418791039654,0.7302849624263,0.604236354747056,1.5916043215103588,0.9226521255904416,0.5461808407376988,1.114502193998066,0.7243406341426835,1.0231612029131636,0.5947515955813373,0.6061298430129004,0.6354787635214048,1.0067437909489034,0.8454528081440124,0.6297676867144743,1.2938600831482692,1.1133560594453806,0.8456457866091195,0.7706398759151529,0.8325511833564097,0.823853617839923,0.6423208512945537,0.3880583460776933,0.615522497309002,0.8995387092147222,0.9464197039576615,0.6036868888428092,0.9226691309564041,1.090263547358834,0.8034846600998244,0.794739600756162,0.9257584796595953,0.9549347942437655,0.6184156083037411,0.411764690266776,0.5847532631848801,0.9459077664517654,1.0508621653419647,0.7529482458049669,0.7433646307788524,0.9359408410548822,0.8042268939166224,0.9137285706279813,1.0416342099077838,1.085382613301232,0.7701731602395762,0.6759722189626524,0.7403060627537064,1.078286178131553,0.8805354883474144,0.5932963699698548,0.7596164564041299,0.8893442622950818,0.7125523864647308,0.7149881782083205,0.8746141856836692,0.9216516768831678,0.6172001517109538,0.6079846511906014,0.5982651586541455,0.968233467616195,0.8384800620382841,0.6747324740966432,0.9005073432319944,0.9467213114754096,0.8066690247274831,0.9822882100183418,0.8251092029757137,1.0931162036865862,0.6674366508009324,0.6869025886108174,0.6383492045853585,1.0005286648421163,0.8652980150470048,0.9927626631204561,0.91637726124704,1.0986642380085,0.9983636487061033,1.0666147068718854,0.8750246681083725,0.9354715221192882,0.9807469567373005,0.9487584221485169,0.9810366230898433,0.9301217241034992,0.8976097328914643,1.2897113578239285,0.9208371353177213,1.0928681805966136,1.2114972333199265,1.2489684376702153,0.9228362669371394,0.9438819585751438,1.2705320507253388,1.3128837443488242,1.2966936854778925,1.0240341407927587,6.5,0.1979389858177737,3.555555555555557,1.75,1.8133333333333337,1.1111111111111112,0.789387755102041,0.5607638888888888,0.2796674225245653,0.283125,6540.648212161325,7354.923314807735,3007.6802607492814,2740.5846941638333,13.26736884131581,0.41529001274081057,7.757563066168734,0.7102495626720352,1.0,0.45454545454545453,1.7032709348073207,3.222212227569483,4.026830978033083,4.865303359518971,5.043874788090398,5.186731930947541,0.19696969696969696,0.008247457742407236,0.07565011820330975,0.03571428571428571,0.04121212121212122,0.02710027100271003,0.020240711669283106,0.015155780780780777,0.007768539514571258,0.0094375,0.437496482809166,23.168044077134986,10.29244001810774,5.688793335124966,178.81970715941875,1.0,4.3359064531719795,181.79628289977367,,150.48474006590453,150.27395081330224,147.97797823748286,150.29139578812777,218.6762272521111,152.31158927512223,154.0607281791703,194.6476204277081,0.05665420781856715,-0.02157116541868388,-0.401551307110646,0.24187274242845225,0.20201368946955073,-0.13302615970867557,0.05554480621948605,0.005633750846590428,-0.012305448627263738,-0.0705336037140393,-0.04042680302391394,0.006550918998124521,0.06983083276784055,0.24288130219132653,-0.1300493922301509,0.021525969051631743,0.1309243648487059,0.25641512933054383,0.07643769669013575,0.15265093863668372,0.22320684287477108,0.38687842193656674,0.252587706918307,0.051865523244257083,0.04060038365780991,-0.004921038655925831,0.09361882559354788,-0.031762295081967186,0.030513664247867934,0.01914438929271941,0.042802993832246825,0.07129742002374383,-0.0009976652284900292,0.061541427279731935,-0.0052878783928065115,0.05892524394867168,-0.06569918175478197,-0.02820474404593141,-0.054416291312515956,-0.013898788310762657,0.043791426258638244,-0.028569365696556458,-0.06495659980677754,-0.05277572142643768,-0.03103687809911773,0.006301322504209231,-0.03530480920250921,-0.05391720238173065,0.04253407096556353,0.08857538033864913,0.00533636737277815,0.0282662692498758,0.132913754412838,0.04788292614813457,0.04681178957973118,0.024762319956109995,0.08785119398130639,0.018530606573848498,0.0733649614966696,0.04362270017008286,0.1498959226154035,0.0388621035911978,0.02479924588963759,-0.0031693989071038247,0.0563992411331554,-0.1879231764722456,0.15466441089888674,-0.10494573427403334,0.06671213556691985,-0.03260733368240172,0.06497182651444744,0.009406825134075534,0.03696084967053497,-0.03368961001756636,0.01638006383752873,-0.04839101396478445,0.005871571433165051,-0.09304899390668482,0.03944053521480741,-0.024617011044510147,-0.01842851134206078,-0.027324935023946645,-0.04854270572321754,0.04795964713317362,-0.028770321184615425,-0.13088777445302494,-0.04892212886293139,-0.06691749529696316,-0.15919809766694312,-0.12680492107121308,-0.03332616880130269,-0.027105785305041825,-0.12543655109277205,-0.09490602524180097,-0.13880826913271385,-0.05493337495227225,24.65457602476506,18.502932362139006,4.329638385866451,19.32865161587289,32.267333544942886,38.44293508297444,40.93125810065507,42.29015095779793,42.434150957797925,61.68020923398798,46.05456436531463,6.722429244121742,1.7202689770036539,5.082646712747152,15.625644868673355,8533.714359971353,6237.298813012519,3280.801285404308,193.0,47.0,61.0,80.0,109.0,124.0,146.0,167.0,189.0,437.1748681120007,33.0,5.081404364984463,5.932245187448011,6.823286122355687,7.6984827878809465,8.596189197642735,9.482731125859004,10.384832870979611,11.278227922626957,12.183719668855955,0.6845238095238095,0.9974999999999998,1.1436114966487825,0.650482904956171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6709753849443968,0.9830532212885156,1.0144430860472373,0.6278423206652904,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,9.0,0.0,0.0,1.0,0.0,3.0,1.0,0.0,0.0,14.906346856541662,0.0,0.0,0.0,0.0,4.899909730850478,0.0,13.171245143024459,0.0,23.894619086314336,43.29741337114663,49.05950538651099,23.545106005577036,274.88784342325704,-622.3500267217721,-41.25186961581668,-11.11339333431736,-36.60882510128072,390.2930838695946,883.6291490764938,22.74974584207917,15.779091947794535,22.657157668628045,0.4666666666666667,0.9061458921404095,0.17448853692965544,198.91986374300973,0.18373866844202488,1.0285652054664478,0.0938541078595904,8.0,0.18181818181818182,0.29329547748802565,0.5548502323029744,0.6934019070779193,0.8377830225322521,0.8685322071383409,0.893131554823212,4.308100000000003,,2.303571428571429,1.9888590864259226,1.8230920275310765,2.4054917357306085,-8.207315791440786,1.831790916024431,1.6811398837148146,-2.839368483518966,113.59780000000006,18.277772537865165,0.0,9.799819461700956,0.0,22.388087091405033,57.32008653675142,48.02802097092827,0.0,0.0,4.204692619390966,0.0,5.541263545158426,0.0,7.080867896690782,0.0,8.716535732544495,0.0,10.405383424480956,38.333333333333336,11.949812391565741,0.0,0.0,0.0,0.0,0.0,2.9410280819541015,0.0,55.85999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.04224381233182,4.899909730850478,24.546017692391583,0.0,67.3265236624426,6.176298517443475,0.0,11.984273114623004,52.25553643026682,0.0,0.0,0.0,36.42704267754558,37.57462155688622,38.80513486916169,363.59256579954734,,301.3237180115253,300.5331660114418,296.0175868488275,300.91682215882724,441.2596812960064,304.59599141851135,308.0859182631408,390.4607994656194,38.80513486916169,363.59256579954734,,299.4808608686681,298.8498420150216,294.47394620993805,298.99242877024267,445.63691638477485,303.06411121800215,306.7396836774476,392.13460933893515,5.003524800810909,267.6519450551815,,229.68120933954543,225.45103939038648,221.29165239804104,229.51990464740965,331.3990166225216,228.69209865867956,231.48274902844378,295.6584269964019,1.293504495638723,12.119752193318245,,10.04412393371751,10.017772200381392,9.867252894960917,10.030560738627575,14.708656043200214,10.153199713950379,10.26953060877136,13.015359982187313,2.501762400405455,181.79628289977367,,150.48474006590453,150.27395081330224,147.97797823748286,150.29139578812777,218.6762272521111,152.31158927512223,154.0607281791703,194.6476204277081,55.05098039215687,0.0,0.0,0.0,39.93190210144132,0.0,9.067184077831556,56.80881281864529,7.162829347800539,0.0,0.0,1.5265755705177044,0.0,6.6879542935832825,-4.350619198027572,0.0,0.0,35.15916995725627,602.750964796566,95.38317234920996,180.44388474389106,225.50253476985267,272.4569881330624,282.4569881330623,290.4569881330623,1179.0,140.46111924863337,62.42996249628567,65.94874321826563,55.25,29.950000000000003,0.875,8.704092794612604,6.044394119358453,4.21851568080305,5.382350117785835,,5.37405722805692,5.380710019160556,5.379012690275883,5.374362443036294,5.343253643064527,5.380182252629013,5.379561740355032,5.366659965445271,0.14061718936010167,0.17941167059286117,,0.17913524093523064,0.1793570006386852,0.1793004230091961,0.1791454147678765,0.17810845476881756,0.1793394084209671,0.17931872467850107,0.17888866551484237,2.5380956204361143,2.7817373923288513,,2.7801954478662863,2.781432627955689,2.781117131182289,2.78025224039743,2.774447052548524,2.781334538221374,2.781219198623132,2.778818023314843,309.040000000001,1374.3313356056842,195.2045178022763,,195.46296362833422,194.8602672559657,195.1436451310383,195.38367608752336,199.5712046972203,194.90406713678667,194.98204693027725,196.4675182305539,45.811044520189476,6.506817260075877,,6.515432120944474,6.495342241865524,6.50478817103461,6.512789202917445,6.652373489907344,6.496802237892889,6.499401564342575,6.548917274351797,8.324334879108234,6.372660106858147,,6.373983205790335,6.370895012192465,6.372348217742164,6.373577483781538,6.394783377094284,6.371119762777064,6.371519775969209,6.379109404687926,39.93190210144132,8.62007862324459,9.067184077831556,1.0089037522927942,0.0,11.949812391565741,-3.4808905982543297,6.293100748027296,0.0,380.5157544755724,182.85015058981435,-413.97536787551945,-27.439956883612755,-7.392417283491419,-24.351492227971736,259.6155154443637,587.7732567656957,15.13269703491092,10.495951013673139,15.07110914783835,2618.0,49.0,2.6601928853429047,1.0954111958218944,0.28867513459481287,0.013498731178900972,0.6802065764912847,0.17264492509057727,0.14433756729740643,0.004499577059633658,0.0,0.0,0.0,0.0,0.0,0.0,0.28006896957329525,0.13606669883808506,0.5066812158743785,0.27266625651400306,21.13961743368832,17.55290558742541,14.452839606072642,11.084111445442302,13.514213951860201,8.745906399129751,10.75918284696594,6.820496722295123,8.958249363908681,5.153001693317487,7.702995146618215,4.0124889668191726,5.649661052505597,2.6479670292296436,4.366857208470889,1.7694074061743792,4.920570632576897,2.4062221765119993,7.239998538983196,3.4145056671274716,11.18523910274624,4.90984957367547,96.60794603182079,62.03771303784305,43.13156002119081,35.34356238040745,31.849442469484465,30.81666822830869,160.0,188.0,62.749617999999984,37.01238200000001,0.4107142857142857,219.08,9.20138888888889,6.527777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,56.0,0.0,2.0,59.0,12.0,0.0,6.0,53.0,12.0,33.0,47.0,0.0,0.0,0.0,22.0,0.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,5.0,1.0,2.0,30.0,8.0,0.0,3.0,1.0,0.0,4.0,6.0,1.0,0.0,3.0,0.0,2.0,3.6888794541139363,7.450660796211539,4.219507705176107,4.727387818712341,5.258796608385754,5.833347679010845,6.09947779116856,6.504942899276725,6.892895416075113,7.266456294051895 +10483360,CCCCNC(=O)c1ccc(Oc2ccc(CC(=O)O)cc2OC)c(NS(=O)(=O)c2ccc(Cl)cc2Cl)c1,1,36.59375,6.482987500000002,3.40625,8.5883487654321,160.4500000006543,148.479711171875,1.7016963050949063,6.607046875000001,5.973160680774654,8.085841609374999,241.0265584292727,32.63636363636363,6.466724242424242,4.03030303030303,7.069023569023569,144.71459510823414,126.46366736363636,1.960591086606061,6.651251515151515,3.1651624267365004,7.962351212121212,282.8474380405505,27.35135135135135,6.4669909909909915,3.6126126126126126,6.742742742742743,151.95234363000966,104.75918966666666,1.6928887693377475,6.606099099099099,4.062386460534609,7.991117567567567,239.75350707280947,25.62937062937063,6.400651748251748,3.174825174825175,5.455063455063455,156.2772908130223,96.82939465034964,1.5467143924344824,6.537108391608391,3.4616168011229744,8.008382342657344,212.43217117113048,26.416107382550337,6.473872483221477,3.0201342281879193,5.059242687878036,158.70939490817887,100.34951469127516,1.4506799694542147,6.610268456375839,3.6965134376512014,8.105957362416106,203.56608862166,23.283783783783782,6.542892567567568,3.0472972972972974,5.634884884884885,159.4206881320327,86.72094048648648,1.4255768480471622,6.632947297297298,3.9784568519136423,8.123233263513514,201.21963306551143,25.32191780821918,6.471259589041096,3.1095890410958904,5.556316590563165,155.64399626082033,95.84099292465753,1.4989551799481713,6.591966438356164,3.8054110998365185,8.045678945205479,211.95602343838897,23.173076923076923,6.391403846153845,3.0128205128205128,5.118945868945869,157.2835704960341,86.50543990384615,1.459109969022609,6.5058410256410255,4.020147462277092,7.987913871794872,201.41208099144612,22.346153846153847,6.36373717948718,2.9423076923076925,4.8247863247863245,156.90010130510476,82.70946680128205,1.4707948656857692,6.4824467948717945,3.6140293605571387,7.968901589743589,201.1450960550071,14.3271484375,0.15933427734374994,0.026285868894717374,0.6630859375,4.320107542438272,1.4469089299240445,65.936524032959,0.2978187107926787,0.15544687499999993,2.378062323378528,0.11748298608398433,50.44800392266769,1.2808061079545454,-0.013192042495265148,-0.01544428315111039,0.17356178977272727,0.7187240606294425,-0.09543948830657177,5.50871952527965,-0.014098044577015854,-0.008166666666666666,-0.3640279692418827,-0.0027862862733783198,1.3475424180655189,1.0275812922297298,0.029624619052646392,0.0014712032541979033,0.029200098536036036,0.7410960222375151,0.0033698729712825543,4.8667781109036286,0.016536641001910803,0.02589729729729728,0.5398773109467263,0.016600696770745348,2.104016887121371,0.8074669471153846,-0.006520313182910836,0.002508227876938727,0.01108364291958042,0.2859692511385219,-0.07490949534152813,3.623580256267413,0.020980741690867832,-0.0068552447552447625,-0.11932836837962331,-0.009191326665278074,1.7357631194816205,1.3685310927013423,-0.013878866269924489,-0.0021616711101138425,0.027560035654362415,-0.06876111771377086,-0.1364159347517474,6.445263832078767,-0.013815321017481768,-0.004471140939597326,-0.14057119685130154,-0.0065969813650246165,1.3041588405630706,0.18024176520270271,-0.017829420924831068,-0.0028558005159361674,0.015968116554054054,-0.08395732972555892,0.19277959105505507,0.7331325272183801,0.03764811111923071,-0.01842027027027027,-0.24992669775966087,-0.01395861456793705,3.153413086357902,1.3059851241438356,0.019094639608304795,0.0033379504053272333,-0.023531142979452056,0.015120450966091579,-0.028663671670898644,5.83208130190831,-0.010089502579168222,0.021717123287671232,-0.08442324220009054,0.019854743368070426,-0.9458232977025474,0.399814703525641,0.020882329226762815,0.0005987052346447478,-0.009039463141025642,0.10796997418091163,0.03603137870588229,1.8120802817445412,0.003757244465388194,0.018420512820512817,0.37712111873424775,0.015834453419220747,0.45814136047698295,-0.8808343349358975,-0.010653087439903838,-0.0033704356372577815,-0.047701322115384616,-0.07582780597103525,-0.08567189362722795,-3.792339031957382,-0.0015195442612678557,-0.011160897435897436,-0.11599042775568254,-0.00978252264247796,-1.4772814434227461,,,0.48408521303258156,1.3157894736842106,0.6973684210526315,0.06578947368421052,0.618421052631579,0.07894736842105263,0.9186611094837908,0.02318340201886982,0.029972875703080347,1.2610713127929603,0.25729210078114895,0.21726695936769427,2.1797324222767513,0.47455906014884325,1.9994760145505897,1.4082244154176762,0.1059354281458285,0.3335023653072115,0.0927162430833452,0.591251599132914,9.06380902393751,2342.0,414.9112000000001,218.0,549.6543209876544,10268.800000041876,9502.701515,108.908563526074,422.85100000000006,382.2822835695778,517.4938629999999,15425.699739473454,2154.0,426.80379999999997,266.0,466.55555555555554,9551.163277143452,8346.602046,129.39901171600002,438.98259999999993,208.90072016460903,525.51518,18667.930910676332,3036.0,717.836,401.0,748.4444444444445,16866.71014293107,11628.270052999998,187.91065339648998,733.277,450.9248971193416,887.01405,26612.639285081852,3665.0,915.2932000000001,454.0,780.0740740740741,22347.652586262186,13846.603434999999,221.18015811813098,934.8064999999999,495.01120256058533,1145.198675,30377.800477471657,3936.0,964.6070000000001,450.0,753.8271604938273,23647.699841318652,14952.077688999998,216.151315448678,984.9300000000001,550.780502210029,1207.7876469999999,30331.34720462734,3446.0,968.3481,451.0,833.9629629629629,23594.26184354084,12834.699192,210.98537351098,981.6762000000001,588.8116140832191,1202.238523,29780.505693695693,3697.0,944.8039,454.0,811.2222222222222,22724.02345407977,13992.784967,218.847456272433,962.4271,555.5900205761317,1174.669126,30945.57942200479,3615.0,997.0589999999999,470.0,798.5555555555555,24536.23699738132,13494.848624999999,227.621155167527,1014.9112,627.1430041152263,1246.114564,31420.284634665593,3486.0,992.7430000000002,459.0,752.6666666666666,24476.41580359634,12902.676821,229.44399904698,1011.2616999999999,563.7885802469136,1243.1486479999999,31378.634984581106,916.9375,10.197393749999996,1.682295609261912,42.4375,276.4868827160494,92.60217151513885,4219.937538109376,19.060397490731436,9.948599999999995,152.19598869622578,7.518911109374997,3228.672251050732,84.533203125,-0.8706748046874997,-1.0193226879732857,11.455078125,47.4357880015432,-6.299006228233737,363.5754886684569,-0.9304709420830464,-0.5389999999999999,-24.02584596996426,-0.1838948940429691,88.93779959232424,114.0615234375,3.2883327148437496,0.16330356121596726,3.2412109375,82.26165846836417,0.37405589981236353,540.2123703103027,1.8355671512120992,2.8745999999999983,59.926381515086625,1.8426773415527338,233.5458744704722,115.4677734375,-0.9324047851562495,0.35867658640223793,1.5849609375,40.89360291280863,-10.712057833838523,518.1719766462401,3.0002460617941002,-0.9803000000000011,-17.063956678286132,-1.3143597131347646,248.21412608587173,203.9111328125,-2.067951074218749,-0.32208899540696256,4.1064453125,-10.245406539351858,-20.325974278010364,960.3443109797363,-2.0584828316047834,-0.6662000000000017,-20.94510833084393,-0.9829502233886679,194.31966724389753,26.67578125,-2.638754296874998,-0.4226584763585528,2.36328125,-12.42568479938272,28.53137947614815,108.50361402832024,5.571920445646144,-2.7262,-36.98915126842981,-2.0658749560546834,466.7051367809695,190.673828125,2.7878173828125004,0.4873407591777761,-3.435546875,2.2075858410493705,-4.184896063951202,851.4838700786133,-1.4730673765585605,3.1707,-12.325793361213218,2.898792531738282,-138.09020146457192,62.37109375,3.2576433593749994,0.09339801660458066,-1.41015625,16.843315972222214,5.620895078117638,282.6845239521484,0.5861301366005582,2.8735999999999997,58.83089452254265,2.4701747333984367,71.47005223440934,-137.41015625,-1.6618816406249988,-0.5257879594122139,-7.44140625,-11.829137731481499,-13.36481540584756,-591.6048889853516,-0.2370489047577855,-1.7410999999999999,-18.094506729886476,-1.5260735322265617,-230.4559051739484,0.7334649537172945,0.6029951209258663,0.45083110714140107,0.34357456682242243,0.29881787042258595,0.19023007935984673,0.18340303785561443,0.10684395666123765,0.11988051954731058,0.05963652117688985,0.07334878900542013,0.03092649596742977,0.04891047436760199,0.018360042442089573,0.030323311664097016,0.00919566496994699,17.00213070536922,5.692158259748831,3.581468096633075,2.18385137222448,0.46953530294192536,-0.5246660033234282,4.043959293223239,0.9705909490657132,6.024758905868615,0.6442187570657864,14.54118305617971,10.3197609921775,35.45152961139588,11.704307257046704,2.954608508794086,0.7414173919745998,3.5374063645656824,2.238881269785423,7.015041871387756,0.2989175526243605,3.768602542281311,2.4357135333147784,24.441836025837667,14.69996385592095,0.28734157432967605,0.6367297257417522,0.8129072483543169,0.89849409296084,0.9034514354269524,0.9034514354269524,1.7007763478654105,1445.5043305129127,0.0,2.0,2.0,0.0,16.0,3.0,2.0,0.0,0.0,4.188661715589688,1.9861954130770556,0.8756109377704338,0.336090234442608,0.304840234442608,0.304840234442608,65.9440084122511,3092.810193739881,100.17491555243951,48.32515927718564,101.11446564349617,,17.0,1006.0,15.992596441359433,18.00687135247258,55.768124721510205,12.10820789760957,12.841643245852019,55.64073408897041,6.06636706846161,6.923737199690624,10.038883468458419,37.78213308290584,18.3952380952381,50.0,26.5,2.5,23.5,0.0,0.015914786967418444,3.0,0.2212675865800866,0.07890352787456478,-0.14236405870552182,0.04429671740326446,0.17932871972318298,0.0,0.6594494047619034,0.9053884711779445,0.4381818181818168,0.5805458768873386,0.8610917537746801,34.90912216038405,0.8809692767170532,1.1389692767170532,47.92070988613249,9.77709982968366,8.256144455972382,82.82983204651654,18.033244285656043,0.534671280276817,0.2226249029251876,0.04530157908361376,0.2989904219518508,0.23076923076923078,0.46160370619886193,-1.6625186074795815,-0.0718857826542532,-0.02597685324186846,-0.06927160864498257,0.538396293801138,1.939095905475298,0.044769106293658684,0.030298373523051533,0.048477397636882455,-8.249377018533837,0.6652084198263736,0.7541900328476312,1.5920963483457975,0.9334582942830365,0.5987796317076556,1.2568039785608056,0.6574512663106411,1.0984143174152128,0.6940474036547857,0.7350790367399953,0.6923151584905936,0.8967812330555214,0.6979019098165714,0.6616913294170903,0.9512330194919218,1.0966843131791584,0.7444506184483913,1.0934174402951686,0.6932054957842754,0.8996564715182821,0.6512427933632927,0.5055792502904873,0.6843969006420677,0.8921770587056339,0.9011183758644736,1.0003752115652031,0.9308433172274384,1.0692812342296878,0.9149077235601553,1.0891404709027916,0.8973183017039391,0.9441773639692063,0.9899457336584172,0.9292101160138071,1.0330421295140961,0.9293831493162017,0.9282358156231144,1.1519532434813677,1.1898967182733786,1.0162596000830277,1.0497576517178835,1.1352141160214948,0.9181208501670766,1.0759763241946205,1.0718859703979124,1.0768684054223285,1.1087123033865076,0.9268530565354646,0.7936119610852076,1.2860360733070855,1.2958980326113823,1.0331568682084145,1.1206009247630446,0.9010079914445743,0.7921015611868188,0.8012186746730595,1.2222376393038599,1.2783049437634095,1.2283881328957214,0.8563660297780284,0.7195408330477702,0.889548102452548,0.9562963586244333,1.0778138680977263,1.0025811351390177,1.0561655557310001,0.7198982364026746,0.9839501499943764,0.8268704566127427,1.003756188927891,0.8080613077417609,0.9594055205389517,0.8440827797381543,0.8554400141552005,0.9829627219172549,1.0515463917525774,0.9809510050016624,1.0013328487520177,0.8409326770449078,0.9673137528056999,0.8387217992790637,0.7537500410965822,0.8192147499835777,0.9556348618919529,0.957052898706501,1.0484169244036194,1.1083019282615283,1.1324345757335446,1.0081350275028116,1.0930346148217016,0.9467367267418224,1.0130760188749837,1.0237337221008291,1.0294262122921933,1.0329086901049382,0.9962232559356036,10.0,0.38791960004081205,4.88888888888889,3.1875,2.6000000000000005,1.8055555555555554,1.1559183673469386,0.921875,0.7601410934744266,0.5450000000000002,9426.990302116643,10248.926417336372,4013.2416310332637,3740.9062024308396,17.218500212639817,0.4979678717761016,8.644240306575215,0.9919043897406019,0.0,0.23076923076923078,1.811338284410312,4.013804586922944,5.124389062229566,5.663909765557392,5.695159765557392,5.695159765557392,0.25,0.007459992308477157,0.08730158730158732,0.053125000000000006,0.04262295081967213,0.03060263653483993,0.018643844634628044,0.015112704918032786,0.01288374734702418,0.009237288135593224,0.5269897519998548,32.51375,15.290816326530612,9.527410207939509,230.27652957148976,0.0,4.540811519017647,268.07452500399853,,190.08541053813374,205.7288433100983,210.32487836541804,190.06628158804062,285.55932373533636,206.845970984042,206.65265141845336,255.64136590619117,0.08939714092737062,-0.08279475524782691,-0.5875507944199707,0.26174856071763286,0.16636716877279265,-0.06596095050127437,0.08354579811526104,-0.047337672436672265,-0.052536705332073545,-0.15307755632102438,-0.023716508800572234,0.026711511126013665,0.0717226667059671,0.18592746988605494,0.055969359814222026,0.044036672902652285,0.1715457346738271,0.0023290152556176814,0.07381004962395232,0.055525863226983406,0.1665990216741076,0.22702403786445735,0.1413029862798866,0.041706642949573235,0.05635922253739716,-0.04092222522115454,0.09542115145536624,0.01671524351936723,0.06619493804941731,-0.05177208723527645,0.054955585078402557,0.0704480307332779,-0.04410024167578001,-0.05017882298815986,-0.07823538515362154,0.03440697321032545,0.0955201307972309,-0.0871053391730772,-0.08223700417787103,0.04156329382925937,-0.015916529169309065,-0.09428094051427864,0.09774952390358098,-0.046388358141470375,-0.02876314457654635,-0.059111653832348336,-0.05615265311956468,0.02585154494045454,0.01258043538733335,-0.111899468350841,-0.10864394581645702,0.02408151892687975,-0.019434083272420882,0.13323546981299994,0.011118762142388895,0.12641284699348115,-0.11849881363179722,-0.10509678207448679,-0.11881392389838084,0.0625081834990301,0.09115457481584675,0.11984012433878091,0.12698649676359208,-0.03548732019287026,0.0035000172605790234,-0.01981028043859218,0.08844993556216414,-0.03387800099031338,0.13970768654996277,-0.03550085351848555,0.1690010105282563,-0.018748478119221736,0.027906090682997507,0.13105986718545812,0.022776695609444685,-0.013632415694271366,0.024992427415353943,0.024902312758394378,0.0274821930382432,0.012615877811665548,0.11850037397350591,0.15858336218811517,0.1347808218621654,0.009081456645525024,-0.06148008717704035,-0.06685998529318786,-0.12822234070927488,-0.07193837090744307,-0.01755229591535538,-0.05921028743096174,-0.0575149977584767,-0.0051022457830920505,-0.07179878936709047,-0.048775184155348046,-0.08326756893534175,-0.029283248663064795,13.08902817774102,28.694255459640956,11.355120597370307,23.19451966033675,44.08778705011626,51.74185292472741,53.70593979368186,53.73743979368185,53.73743979368185,75.98008855292241,53.5125277858717,4.025546269541483,12.673089881674036,3.5232172371671173,22.467560767050735,14375.621553409983,11969.86581162154,5662.786501601571,181.0,56.0,69.0,88.0,108.0,122.0,133.0,149.0,166.0,580.0837775320007,40.0,5.262690188904886,6.093569770045136,6.976348070447749,7.830822995135316,8.721113147762688,9.586376669393536,10.48097132444235,11.35248672332188,12.249721042010608,0.7864583333333334,1.005875,1.1198318678232375,0.7564172945633169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7094930576347305,0.9960784313725491,1.027978195557174,0.6708132632810911,9.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,2.0,2.0,0.0,0.0,1.0,4.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,19.897041906447136,4.895483475517775,17.248535499851716,0.0,15.930470882759089,14.31116923259573,8.417796984328938,0.0,0.0,42.61280567154328,60.51520966231588,17.130841211350898,24.24063875262843,396.3924075896333,-1427.6526479999493,-61.73039357164238,-22.307072624999208,-59.48552699999789,462.3364160018844,1665.1575457399317,38.444521980797134,26.018086652186433,41.628938643498294,0.47058823529411764,0.7610407668153159,0.13683705762182657,47.02397850119626,0.08532761030969768,166.11317301539734,0.23895923318468412,9.0,0.3,0.30188971406838533,0.6689674311538241,0.8540648437049277,0.943984960926232,0.9491932942595653,0.9491932942595653,5.752100000000005,,3.954831932773109,2.579960888654747,1.8388598019844906,3.9775876476438814,-7.720395647446336,2.531118789024372,2.510914037240099,-3.1074544682463507,145.36149999999986,32.58712465491338,0.0,5.316788604006331,0.0,31.081685543986428,18.376648811642198,75.76947322703114,0.0,17.248535499851716,4.394449154672439,0.0,5.720311776607412,0.0,7.232010331664759,0.0,8.835355971121606,0.0,10.489077361672273,50.333333333333336,12.820122014069582,0.0,0.0,0.0,0.0,0.0,1.1187576326067434,0.0,64.376,0.0,50.177916102244446,0.0,0.0,-4.223594395390029,0.0,0.0,-1.3919869581079851,71.6692395406872,19.512609376058517,5.687386274683562,17.248535499851716,39.0553633436631,21.238649960405414,0.0,35.68682061300846,59.49278709167226,10.045266627482652,0.0,0.0,48.41070685205228,45.40755568862275,46.65263817708387,536.1490500079971,,380.6782706527564,411.32189920500423,420.5529746359948,380.63805167658705,574.3139754259969,413.5587251897142,413.1731494665257,512.4275834585783,46.65263817708387,536.1490500079972,,377.13973681817,408.87772573154206,418.8108969288516,377.0791574655374,578.8390431181192,411.1608231790596,410.7943887996669,514.3901862806285,4.892270112187685,364.3719703072105,,258.31124199358794,276.572596650304,284.4607877414515,258.3153118395559,403.64751629236315,278.46402325372094,278.2999537878836,352.0946649795501,1.227701004660102,14.109185526526238,,10.017849227704115,10.824260505394848,11.067183543052495,10.016790833594396,15.113525669105181,10.883124347097743,10.87297761754015,13.484936406804692,2.4461350560938415,268.07452500399853,,190.08541053813374,205.7288433100983,210.32487836541804,190.06628158804062,285.55932373533636,206.845970984042,206.65265141845336,255.64136590619117,63.749019607843145,0.0,3.3870820484287467,12.044910139040208,0.0,0.0,9.06044966309976,65.79060451565914,1.9370042513432075,5.227804943909604,11.313756780977945,0.0,0.0,0.0,0.0,0.0,0.0,42.93204884998983,653.5276423925028,115.92565020225997,256.88349356306844,327.96089998269224,362.4902249956731,364.4902249956731,364.4902249956731,1150.0,156.55409993146412,205.20118119901497,74.67120459573849,139.41,131.03,0.8888888888888888,8.862507914198398,6.321928094887363,4.999574269171753,6.041900774172821,,6.005757653328296,6.021323805267063,6.025775772731828,6.005777157721015,6.034161017687805,6.022158142598034,6.02144013873253,6.03563289336161,0.13156774392557247,0.15899738879402162,,0.15804625403495517,0.15845588961229112,0.15857304665083757,0.15804676730844777,0.15879371099178435,0.158477845857843,0.1584589510192771,0.15883244456214762,2.944353829375651,3.1337197268828576,,3.1277196847181754,3.1303082030854967,3.131047296779975,3.127722932328581,3.1324378921790967,3.1304467572571086,3.130327523146242,3.1326817862657643,399.20000000000135,678.6278478883474,270.7979601249038,,273.4563762173695,272.4717576813886,272.1464309499189,273.43618718084844,271.1285587607418,272.3274642067296,272.37940130193505,271.16385561720176,17.858627576009145,7.1262621085501,,7.196220426772881,7.1703094126681215,7.161748182892603,7.195689136338117,7.134962072651099,7.166512215966568,7.16787898162987,7.135890937294783,7.855073955505934,6.936374074968469,,6.946143173925127,6.942536033928295,6.941341337251043,6.946069342105565,6.937594161697308,6.942006321431522,6.942197018845679,6.937724338168798,40.20779647729869,23.506736124161193,12.025303497970091,0.6593108883132064,-0.892448823012675,12.820122014069582,1.469823389461439,2.4627637219829124,-2.8320952070624257,491.93791988964665,340.3935858500552,-1225.9664789143117,-53.00966825161785,-19.15572623303612,-51.081936621429655,397.02160661681677,1429.9187803477905,33.01341913410817,22.342480942934227,35.74796950869476,4871.0,60.0,3.3741133702646797,1.549257195931381,0.2041241452319315,0.05103103630798288,0.6523689270621825,0.2652686584305891,0.08333333333333333,0.01473139127471974,0.0,0.0,0.0,0.0,0.0,0.0,0.2041241452319315,0.07216878364870322,0.44994977658820634,0.15454664431010576,27.87166824125719,22.913814595182917,18.033244285656043,13.742982672896897,16.733800743664812,10.652884444151416,12.654809612037395,7.372233009625398,10.54948572016333,5.248013863566307,7.921669212585374,3.340061564482415,5.967077872847443,2.239925177934928,4.033000451324903,1.2230234410029497,6.157686916813515,2.8422287560186272,9.97147498180194,4.022430553887887,14.152937087470823,4.928549282854083,124.64118944234016,60.669109131562124,36.479792966721746,30.616729296672176,30.491729296672176,30.491729296672176,192.0,221.0,75.83061799999999,40.10738200000002,0.328125,194.12,14.534722222222221,8.486111111111109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,18.0,18.0,64.0,0.0,0.0,66.0,18.0,4.0,13.0,53.0,22.0,40.0,44.0,0.0,0.0,0.0,26.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,6.0,3.0,0.0,38.0,12.0,0.0,2.0,7.0,0.0,3.0,12.0,1.0,0.0,2.0,0.0,3.0,3.9889840465642745,7.6338157626442955,4.600157644164547,5.073610093257644,5.61904124620111,6.12973080628909,6.38856140554563,6.6635716162540195,6.9696438076140925,7.297006313227274 +126941,CN(Cc1cnc2nc(N)nc(N)c2n1)c1ccc(C(=O)N[C@@H](CCC(=O)O)C(=O)O)cc1,0,26.436363636363637,6.69325818181818,3.4545454545454546,9.89090909090909,167.65913450592691,104.6735313636364,1.426463707394145,6.720559999999997,6.901010101010101,8.127058109090907,221.50268514658757,27.210526315789473,6.74201754385965,4.017543859649122,9.087719298245615,154.01612803495266,104.08435963157895,1.7109695109122809,6.849184210526316,4.008284600389864,8.104194315789472,263.18358131424054,24.580645161290324,6.64508064516129,3.7419354838709675,7.795698924731183,159.27618292781926,93.43031545161294,1.52710970246013,6.723132258064515,4.4023297491039415,8.03843634408602,228.88455453302728,20.884297520661157,6.603938016528926,3.2231404958677685,5.8429752066115705,162.63390021573215,76.90654207438014,1.3795576529557105,6.665435537190083,3.8941689623507814,8.051147933884298,202.04776007468834,18.103703703703705,6.463565925925926,2.8296296296296295,4.762962962962963,164.33119529855253,65.28875614074072,1.2580854596328368,6.51703037037037,3.78395061728395,7.965368029629627,179.81062689443382,17.4,6.41899925925926,2.674074074074074,4.822222222222222,164.75338626770912,62.5235196148148,1.2140811652728074,6.4678555555555555,4.190123456790125,7.9390546962962985,171.7875227756641,17.48,6.404380800000001,2.664,5.088,166.03819687096026,63.275909703999986,1.206093268211008,6.446787200000001,4.518666666666666,7.92475856,170.0581488297877,18.05504587155963,6.377137614678901,2.8073394495412844,4.7889908256880735,161.87457177095075,65.51905994495412,1.2583745455085595,6.438864220183487,4.253567787971458,7.8977493577981654,179.32131645833772,16.754901960784313,6.456822549019609,2.696078431372549,4.411764705882353,166.97643761149644,59.3052516862745,1.2087347255199705,6.501981372549019,3.7407407407407405,7.9763432941176475,171.45551145381822,7.71107438016529,0.17127087603305785,0.039304633046053375,0.6565289256198342,4.474710743801654,1.6078911799230324,36.40177076561983,0.20123827094227234,0.15578433057851232,2.6048117539026614,0.10621620628099172,44.08703515120377,-0.22176018558793664,-0.03377122691025075,-0.02707881364219965,0.18334348267362632,1.1118921270117443,-0.29739440426407887,-0.8735677219196709,0.007117872164499647,-0.027605542699724348,-0.4167291737148196,-0.021563000539364982,2.387144875700236,1.010333244468142,0.03522501839509467,0.006390084585958981,-0.06102550430996172,0.44943392873011645,0.04210693904612642,4.654610519619659,0.003378373702372446,0.031509804318848374,0.5784889955271187,0.022475746016173456,1.7658598032822281,-0.9451840721262209,-0.016107465063861723,0.0007262005096679852,-0.047663410969196074,-0.7426296018031554,-0.002859566614238512,-4.440604482374153,-0.01054162356515275,-0.016057042824943572,-0.3032465147341181,-0.0096618158978212,-4.171898494926719,-0.9304683195592288,-0.02170486929905112,-0.0017068822545561833,-0.047235996326905415,-0.6986838077747168,0.007516089576839633,-4.348448683060911,-0.01343729988393501,-0.02043261340679522,-0.36429548005305595,-0.014367287762473192,-4.058086958917256,-0.4481787572696665,-0.002331495561677403,-0.003095096785670793,-0.016932966023875125,-0.19120906029996942,-0.10764764558390988,-2.1550410879093973,-0.01144010913537826,-0.0028009097030915688,0.016288133863891475,0.0004793643587389431,-3.105157456428121,0.4447074380165289,0.029177676694214824,0.006481824236990876,-0.024528925619834715,0.2083438016528925,0.2886741636242335,1.9856568692892558,0.011587472212957552,0.024785618512396614,0.5294831955922865,0.021806545137190134,1.5059744794205492,-0.10073242853893391,-0.00046844067025555633,-0.0033567382704291614,-0.04201683220865873,-0.42767154446887556,-0.3037254653900306,-0.5200617039017371,-0.019086349623831513,0.0002145685040563401,0.21448673557931275,0.00047527995754043106,-3.015477350281895,-1.6410209042294608,-0.049168113109706674,-0.0023898454127392185,0.0003338194782044943,-0.8272954140333818,0.009444473357763706,-7.595696157954952,-0.0014110489458522598,-0.044580426835196904,-0.5249147445938892,-0.028498454409333965,-2.8878026560640833,,,0.45050505050505063,1.3484848484848484,0.6666666666666666,0.045454545454545456,0.6818181818181818,-0.015151515151515152,0.7796499544236279,0.0236447125406026,0.03146289435878442,1.189340985481837,0.27587652381607675,0.19787917462432353,1.9689909399054648,0.47375569844040033,2.005368704010308,1.2642796152686988,0.48111202951131754,0.25997705923029174,0.0,0.7410890887416093,8.257660287345464,1454.0,368.1291999999999,190.0,544.0,9221.25239782598,5757.044225000002,78.45550390667798,369.63079999999985,379.55555555555554,446.98819599999985,12182.647683062316,1551.0,384.2950000000001,229.0,518.0,8778.919297992301,5932.808499,97.52526212200002,390.4035,228.47222222222223,461.9390759999999,15001.46413491171,2286.0,617.9925,348.0,725.0,14812.685012287191,8689.019337000003,142.02120232879207,625.2512999999999,409.4166666666666,747.5745799999999,21286.263571571537,2527.0,799.0765,390.0,707.0,19678.70192610359,9305.691590999997,166.92647600764099,806.5177000000001,471.19444444444457,974.1889000000001,24447.77896903729,2444.0,872.5814,382.0,643.0,22184.711365304593,8813.982078999996,169.84153705043298,879.7991,510.83333333333326,1075.3246839999997,24274.434630748565,2349.0,866.5649000000001,361.0,651.0,22241.707146140732,8440.675147999998,163.900957311829,873.1605,565.6666666666669,1071.7723840000003,23191.315574714652,2185.0,800.5476000000001,333.0,636.0,20754.774608870033,7909.488712999998,150.76165852637598,805.8484000000001,564.8333333333333,990.59482,21257.268603723463,1968.0,695.1080000000002,306.0,522.0,17644.32832303363,7141.577533999999,137.162825460433,701.8362000000001,463.6388888888889,860.85468,19546.02349395881,1709.0,658.5959000000001,275.0,450.0,17031.596636372637,6049.135671999999,123.290942003037,663.2021,381.55555555555554,813.5870160000001,17488.462168289458,424.109090909091,9.419898181818182,2.1617548175329357,36.10909090909088,246.10909090909095,88.43401489576678,2002.0973921090906,11.068104901824979,8.568138181818178,143.26464646464638,5.8418913454545445,2424.7869333162075,-12.640330578512389,-1.9249599338842927,-1.5434923776053802,10.450578512396701,63.37785123966943,-16.951481043052496,-49.79336014942124,0.4057187133764799,-1.573515933884288,-23.75356290174472,-1.2290910307438039,136.06725791491345,93.96099173553722,3.275926710743804,0.5942778664941852,-5.675371900826439,41.79735537190083,3.915945331289757,432.87877832462834,0.3141887543206375,2.930411801652899,53.799476584022045,2.0902443795041314,164.2249617052472,-114.36727272727273,-1.9490032727272686,0.08787026166982621,-5.767272727272725,-89.8581818181818,-0.34600756032285995,-537.3131423672725,-1.2755364513834826,-1.9429021818181722,-36.692828282828295,-1.1690797236363653,-504.79971788613295,-125.61322314049589,-2.930157355371901,-0.23042910436508474,-6.376859504132231,-94.32231404958678,1.0146720928733504,-587.0405722132231,-1.8140354843312263,-2.7584028099173548,-49.17988980716255,-1.939583847933881,-547.8417394538295,-60.504132231404974,-0.31475190082644944,-0.41783806606555707,-2.2859504132231416,-25.81322314049587,-14.532432153827834,-290.9305468677686,-1.544414733276065,-0.3781228099173618,2.198898071625349,0.06471418842975732,-419.1962566177963,55.58842975206611,3.647209586776853,0.8102280296238595,-3.0661157024793395,26.042975206611565,36.084270453029184,248.20710866115698,1.448434026619694,3.0982023140495767,66.18539944903581,2.725818142148767,188.24680992756865,-10.979834710743797,-0.05106003305785564,-0.3658844714767786,-4.5798347107438016,-46.616198347107435,-33.106075727513335,-56.68672572528935,-2.080412108997635,0.02338796694214107,23.37905417814509,0.05180551537190699,-328.68703118072654,-167.384132231405,-5.015147537190081,-0.2437642320994003,0.03404958677685842,-84.38413223140495,0.963336282491898,-774.7610081114051,-0.1439269924769305,-4.547203537190084,-53.5413039485767,-2.9068423497520643,-294.55587091853647,0.7309270116878979,0.5331928041505438,0.44668394424380603,0.27857653183228387,0.3006734320134517,0.14694356583678422,0.1871686577976398,0.07868128328549298,0.12063858208917545,0.04090944611307451,0.07649175984732778,0.020617299288837824,0.050766749433931765,0.010938260957465175,0.033123498598169904,0.005904316096924345,8.031486958123377,5.693241846692803,3.5580424812013796,2.1921035484628946,0.46179855845294926,-0.4343944923575058,3.241774510812972,0.9714977365510767,6.024518157251905,0.9969632301423377,14.56448745717471,10.95448867715668,16.016679652021427,11.70506543555747,1.9856375453812352,0.7404612157647231,3.5042195263196128,2.241772544963434,7.0104794324740975,1.251911911812485,3.717073746602948,2.4376372065597374,20.890499426672676,14.699772944274285,0.2921625786475663,0.6952630375948613,0.8518846750494938,0.8996729077657266,0.9056464368552557,0.9056464368552557,1.4072085211932357,1201.0294275064248,0.0,6.0,1.0,0.0,7.0,3.0,1.0,0.0,0.0,4.00283087240372,1.548971807271104,0.5955434091302463,0.3046343182211553,0.2682706818575191,0.2682706818575191,155.69311337736178,3031.4187356900807,127.06761981890037,55.116704285274196,115.77338897741248,,19.0,1009.0,23.887631134403165,19.490138947056174,30.171296796370537,23.402562339145028,5.687386274683562,12.13273413692322,18.329577708536295,11.947581713527669,25.252702687795164,16.573862349165076,14.86666666666667,44.5,22.0,1.5,22.5,0.0,0.04949494949494937,-0.5,0.2289314194577351,0.04671476671476693,-0.18221665274296817,0.10729797979797973,0.2206371681415925,0.0,0.6678787878787869,0.9131313131313127,0.43894736842105175,0.6211640211640199,0.805833333333333,25.728448495979723,0.7802755138398858,1.0382755138398858,39.24825252090062,9.103925285930533,6.530012762602676,64.97670101688034,15.63393804853321,0.49336283185840746,0.19955156950672642,0.0,0.3968609865470851,0.25,0.39133213611325063,-1.655972675802276,-0.10552941272810408,-0.030108594105495923,-0.09199848198901532,0.6086678638867494,2.5756569885783693,0.07184730632337877,0.04683012706506127,0.06961235104265866,-3.2317187984734383,0.7684219551708731,0.9246496188217513,1.7204210833787956,0.8657974240737802,0.4850223964165733,1.4726938461071912,0.76883612874309,1.0576002939925633,0.8846993541578168,0.820803374489018,0.9370338785096376,0.8967642965215434,0.6934460507864683,0.5537362091392184,0.7382251104037926,1.2783841730825465,0.7620538778311597,1.1623840501906728,0.701406882982089,1.0290092660550851,0.5493846067743473,0.4173417800978534,0.5252477453987578,0.931166217853832,1.0154490112476906,0.9742461991482629,0.8574109588099046,1.0937929140346065,1.0934477756286265,1.1018229688426124,1.0168800692181759,1.058531131044723,0.9764843557631047,0.9429610063634831,0.9622677039816514,1.0561436773591333,1.0761382148675298,1.0564551556627513,0.9407906850640297,1.0412890231621357,1.109264184397163,0.9987107773744592,1.0761687363921206,1.0733449571567548,1.0615211621236904,1.0652391561847827,1.0645022360504266,1.0857705216028575,1.0388836491468747,0.9601356432341283,0.9254717843174955,0.9582074521651567,1.0133717494089833,1.0297974869763071,1.0409909902557017,1.0668588207850291,0.9684881153771395,0.9710079530712398,0.9452585256137345,1.0802352558924329,0.9376266826716967,0.7692320086841313,0.6772029657041583,0.9570996978851971,0.9417287234042551,0.7717520326965998,0.9420609273503462,0.9467603350231368,0.7876360367670839,0.7248682948840885,0.7279381235511696,0.9839752758081824,0.9724648716595332,0.9171258482142359,0.9338142109744495,1.0427118268244693,1.0588278352527813,1.1592387994015958,0.9755894917454809,1.1478014333023459,0.9169066140271137,0.8665236323009888,0.9281773816390858,1.1006016814308104,1.1939908004700635,1.246969266831772,0.9385087213314854,0.9310023102896754,1.1626838235294115,0.9773568842302828,1.190299889922301,0.9752089160773665,1.2480705784090624,1.1518173530904838,1.2146771418256865,1.0437358673039636,8.5,0.2144679114376084,4.222222222222223,2.3125,2.2800000000000007,1.208333333333333,0.7502040816326532,0.5225694444444444,0.45527840765935995,0.24250000000000005,6853.236362075523,7527.046778222469,3207.4589416313065,2962.491584313547,17.975624673691055,0.44295973078703466,10.013146807504087,0.7952023493972643,1.0,0.25,1.7785288411209397,4.232387906253556,5.185816304394414,5.476725395303505,5.513089031667141,5.513089031667141,0.24285714285714283,0.0082487658245234,0.08616780045351477,0.04534313725490196,0.04851063829787234,0.027462121212121215,0.018297660527625687,0.013751827485380116,0.014227450239354998,0.007822580645161292,0.5126891247975986,27.58530612244898,12.807996668054978,8.0,187.03080174861526,1.0,4.405512708904215,240.50648272927143,,188.1369569598414,183.91536534423992,181.15954975606914,188.17558111122437,259.49947848444407,186.3807296758566,188.38770639458102,235.76822413495654,-0.028758662496935105,-0.19718020770637265,-0.6889471175184694,0.2792618504973414,0.24848357596117954,-0.18495928578842927,-0.023997945801711502,0.03537037031361443,-0.1772035903560383,-0.15998437241787425,-0.2030104566371042,0.05414618759263644,0.1310236673461429,0.2056684662971871,0.16257840592155373,-0.092951737430833,0.10043865502427617,0.026187679596664012,0.12786769494235078,0.016787928491701132,0.20226555650260367,0.22208476088930307,0.21160373546683225,0.04005394777003988,-0.12257488717233206,-0.09404672549670814,0.018476206324508703,-0.0725991028105832,-0.16596147646679557,-0.0017784578023342323,-0.12198869420297939,-0.05238379119335975,-0.10307225871379362,-0.11641782339156707,-0.0909636696330611,-0.09462869255368395,-0.12066649518420075,-0.1267283136618146,-0.04342699886184469,-0.07194808101152517,-0.15614055249102526,0.004674501403260025,-0.11945706463180812,-0.06677308357409642,-0.131159618755736,-0.1398548204135097,-0.13526455392753317,-0.0920471731655208,-0.05812144134188206,-0.013612913156509981,-0.07874636005491407,-0.025791652679870238,-0.04273104369144558,-0.06694958398183566,-0.05920154549032973,-0.05684857597817462,-0.017979405840691815,0.006253094427836394,0.004513099982791697,-0.07043243996287049,0.05767126811283545,0.1703598263173658,0.16491247302566342,-0.03736153071500507,0.046560283687943245,0.17953588354035996,0.05454835925632051,0.05758085755110448,0.1591021280532777,0.20327119408878122,0.20530337036799814,0.03415912352136089,-0.013063345465586684,-0.0027350865547341526,-0.08540311943622675,-0.06399844785055023,-0.09557523803327042,-0.18889677932344248,-0.014286714436236074,-0.094844531979241,0.001377343300571566,0.0823425091114388,0.004474646329234284,-0.068398279447457,-0.21281352290551822,-0.2870780733334749,-0.06080314781056544,0.0005084611891080544,-0.1848824340610948,0.005873826211432915,-0.2086628204672069,-0.007011831990233291,-0.28616759252773,-0.20151734335789728,-0.2683060844212622,-0.06550231028600328,6.7802779022811865,18.39037543573819,9.825224274996092,17.605545768234247,40.00298294894724,46.07892092963564,47.46241183872656,47.49906638418109,47.49906638418109,66.17716723234017,41.72122730386706,15.876696973873479,8.579242954599627,0.0,24.455939928473107,14957.775482997298,14552.597348853917,1536.8842189238894,120.0,49.0,60.0,74.0,93.0,98.0,104.0,107.0,126.0,454.1713158040005,35.0,5.1298987149230735,5.958424693029782,6.827629234502852,7.676473646389156,8.546946149565585,9.404178688897805,10.275568216624709,11.13763547399693,12.00984484356165,0.7212121212121211,1.021527272727273,1.1443822278269673,0.6879254622656507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6628137833424063,1.0047771836007129,1.0313580083427136,0.6472329071295083,5.0,4.0,0.0,0.0,0.0,2.0,5.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,2.0,2.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31.897088078862588,6.041840829147961,16.981740716219015,5.948339280986494,5.907179729351506,9.589074368143644,14.76249422596624,9.967957041894417,0.0,0.0,30.68628989677245,24.719331371983756,18.43552797237411,280.33917506459255,-1186.2915692913289,-75.59825983901834,-21.568937623478707,-65.9050871828516,436.03228844195434,1845.1271663987518,51.46935997988203,33.54776666179549,49.86830179456088,0.47368421052631576,0.6351696626427199,0.1137219685914801,260.42490514574666,0.07697299301398228,115.0893932027438,0.3648303373572801,10.0,0.2571428571428571,0.30763158309633065,0.7320748259881655,0.8969890408761354,0.9473074962783397,0.9535973032036151,0.9535973032036151,0.2684000000000012,,2.3928571428571432,2.9139134481154025,2.667667613052689,2.386329323350969,-9.556925867150305,2.583078335373317,2.3645779459913716,-4.549569416237558,118.26160000000004,24.596666341896878,0.0,25.252702687795164,0.0,25.428240480912553,23.41491666785204,41.71969133200497,0.0,0.0,4.2626798770413155,0.0,5.58724865840025,0.0,7.089243155027514,0.0,8.675734219544788,0.0,10.309652415758565,39.66666666666666,8.008686507583306,16.52228337960233,0.0,0.0,0.0,0.6414720831852787,1.7497546863554203,0.0,56.18400000000002,0.0,34.31134572241939,0.0,0.0,0.0,0.0,0.0,-3.0540345686097234,62.9410225304832,21.68403328918118,17.453588333505085,0.0,61.08427199055059,16.133830774056218,0.0,28.893559916469297,30.462311845459514,0.0,11.16387793838399,0.0,37.835900424610784,36.454758083832346,41.13008545635903,481.0129654585429,,376.1800988274008,367.7330716756569,362.30636810238497,376.25764486182936,521.5104277403245,372.66994824987887,376.68143933684155,472.65835255060233,41.13008545635903,481.01296545854274,,374.0772849745871,365.17235985761613,359.96205413939924,374.1605675776723,528.5558828360386,370.3999703187933,374.60347689945513,476.0860176861505,4.834714522655913,373.0715566919227,,293.0487606712335,286.5739299755765,281.871748327352,293.10657258108256,400.5865069771681,290.33296245065117,293.4356565622435,365.6681785187618,1.2463662259502737,14.576150468440694,,11.399396934163661,11.143426414413845,10.978980851587423,11.40174681399483,15.803346295161349,11.293028734844814,11.41458907081338,14.322980380321283,2.4173572613279566,240.50648272927143,,188.1369569598414,183.91536534423992,181.15954975606914,188.17558111122437,259.49947848444407,186.3807296758566,188.38770639458102,235.76822413495654,55.262745098039204,0.0,1.8156287853383466,0.0,0.0,11.410549847440102,17.912546395264993,56.72469045884925,-0.21771020110413786,2.3366062326478647,0.0,0.0,-1.297042662673144,1.8599137925499758,0.0,0.0,0.0,35.59780989212296,455.0174208023249,97.81908626165168,232.7813348439456,285.21989674169276,301.21989674169276,303.21989674169276,303.21989674169276,899.0,144.96659966149153,261.35404270422197,68.92455832577244,210.53999999999996,210.53999999999996,0.9,8.82253721690438,6.129283016944966,4.237812132298062,5.6573598860801315,,5.654163356177108,5.654100229333197,5.6522162456009255,5.6541587900885695,5.6460109236619065,5.654064357969379,5.654173720420471,5.651240102554216,0.12841854946357764,0.17143514806303428,,0.17133828352051841,0.17133637058585444,0.17127928016972502,0.17133814515419907,0.17109124011096685,0.17133528357482966,0.17133859758849912,0.17124970007740048,2.6379695980056383,2.9268798006427215,,2.926314619469567,2.9263034547415017,2.925970192577138,2.9263138119070518,2.9248717330630907,2.9262971104115194,2.9263164524965264,2.925797476724735,321.97000000000105,1313.2376738433763,215.3547193896702,,215.40273685568252,215.36199592378418,215.65783667758697,215.40402758813053,217.20696721384354,215.39980101329084,215.4037610922828,216.25233575465373,39.79508102555686,6.525900587565764,,6.5273556622934095,6.5261210885995204,6.535085959926878,6.5273947753978945,6.5820293095104105,6.52726669737245,6.527386699766145,6.553101083474355,8.374173342268454,6.566208994706514,,6.566431939036392,6.566242782734032,6.5676155307047,6.56643793120065,6.574773133429549,6.566418309393418,6.56643669400924,6.5703684154036806,0.0,52.69354289457169,20.249152627912856,13.655717453172574,-2.9079754048014954,5.160359524785862,0.963954897116627,0.3696192219035348,1.8156287853383466,387.6309576957142,200.82698511924022,-849.8254276387074,-54.15643603942578,-15.451371411612863,-47.212523757705966,312.3610886072716,1321.7964485487616,36.87118073453338,24.03266270088658,35.72422833915574,3832.0,51.0,2.74423711496511,0.9058038163327327,0.0,0.0,0.5666353536710973,0.11396296953520513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20693027063286606,0.05471153450751842,0.4214123310387443,0.07580364325127324,24.120591385700628,17.595362536967947,15.633938048533212,9.750178614129936,14.732998168659133,7.200234726002427,11.230119467858389,4.7208769971295785,8.927255074598984,3.027299012367514,7.113733665801484,1.9174088338619175,4.975141444525313,1.0719495738315872,3.4448438542096698,0.6140488740801319,5.370444494953158,1.5699114654320359,7.3692760684739795,1.7882849063480148,10.810525473468946,2.0421556441466566,110.55244650984551,45.36201944083932,29.498075077438266,26.21388043919677,26.07637644961406,26.07637644961406,168.0,193.0,60.87944599999999,30.374554,0.32727272727272727,169.13,12.583333333333334,7.222222222222222,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,16.0,17.0,55.0,0.0,0.0,57.0,17.0,3.0,11.0,46.0,20.0,35.0,37.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,10.0,5.0,2.0,33.0,13.0,0.0,8.0,5.0,0.0,3.0,9.0,0.0,0.0,0.0,2.0,3.0,3.8607297110405954,7.4401478275351955,4.454347296253507,4.96807567967746,5.518456408841947,6.096106054341191,6.363674446340085,6.695721658202657,6.971492698073133,7.397994671639658 +51081,CCn1cc(C(=O)O)c(=O)c2cc(F)c(N3CCN(C)CC3)cc21,0,23.90909090909091,6.47465227272727,3.3636363636363638,8.681818181818182,166.98829772028364,95.23279116249482,1.4130322522040912,6.509284090909088,6.379419191919192,7.93677518181818,213.12775169539734,25.347826086956523,6.500543478260869,4.065217391304348,7.739130434782608,149.3908736644836,96.53086343120007,1.7267178233913056,6.628771739130437,3.3345410628019327,7.885979391304343,257.36603963900905,21.5,6.43958536585366,3.731707317073171,6.390243902439025,160.98609333942122,80.87572036183413,1.4770065858943784,6.521391463414635,3.4315718157181574,7.884820878048777,217.2971283763003,19.38888888888889,6.343462037037036,3.324074074074074,5.546296296296297,160.44530507039198,71.6753231270222,1.4064424760637593,6.424789814814814,3.313786008230452,7.815846222222218,201.72951323208497,17.096774193548388,6.231192741935484,2.7983870967741935,4.846774193548387,160.33079029750468,62.16728998198709,1.2736191064651454,6.302117741935482,3.779569892473117,7.750401741935481,176.15028089264243,15.715447154471544,6.197463414634147,2.6260162601626016,4.024390243902439,165.82614755760622,57.07727409453008,1.1534329339932357,6.251702439024393,3.5438121047877136,7.7355480650406525,159.64548775440653,16.762376237623762,6.5282574257425745,2.6732673267326734,3.772277227722772,167.14129379413848,59.81466360228118,1.1604644280186733,6.567839603960393,3.888888888888887,8.035936712871283,165.4936675408243,15.555555555555555,6.562965555555557,2.4555555555555557,3.188888888888889,167.53059966636928,54.20552677267554,1.1416287249721109,6.592377777777776,4.512962962962961,8.082046711111111,158.49578419115898,11.552941176470588,6.1098823529411765,2.1411764705882352,1.988235294117647,168.026679153578,37.852641835049425,1.0475493581544824,6.15186705882353,2.9607843137254912,7.695209364705883,133.4168173992948,7.909090909090909,0.18937536157024779,0.025102328893437543,0.6859504132231407,4.681818181818182,1.9398463030811044,37.83033321152072,0.22350194016917346,0.17147784090909082,2.8067464416896244,0.11382045247933884,47.894486803590596,0.30434782608695654,-0.007196557222421863,-0.01020027695868696,0.3041681638519583,1.608695652173913,-0.5296116470655522,1.4400861638636955,-0.020481839879904703,-0.004019836956521758,-0.11921899329260979,-0.006910256827164923,-1.495540272890367,0.8658536585365854,-0.005425361570247941,-0.0013761449943844848,0.04353960894980842,0.6585365853658537,0.10475425770587482,4.263336245548684,0.038460298237249994,-0.0018501524390244109,0.3464547778225716,-0.002308764009272323,9.363276782113717,0.09259259259259259,-0.0049130720079583745,-0.0033526272039373344,-0.02854300581573314,0.39814814814814814,0.1724284457942635,0.49627453272104927,0.004022486307342466,-0.00345995370370371,0.05507781944019313,-0.0037888893480257113,1.7645147369191696,0.3870967741935484,0.032394194881364975,0.004612228184932946,-0.02685950413223142,0.7016129032258065,-0.2110932407522432,1.69969408303299,-0.025701489354387614,0.028264112903225797,0.33276866909564856,0.02089072127432683,-4.23910395375433,1.08130081300813,0.018036445525095746,-0.0009594324351269064,-0.07102062756164752,0.15447154471544716,-0.11690598997061717,5.079889346079906,-0.007119744417452932,0.0185873475609756,0.13982804299461724,0.00834510036618961,2.2397455824539874,-1.2574257425742574,-0.02998506004009493,-0.0013849313077264004,-0.17379919810162828,-1.396039603960396,-0.14708914291226763,-6.002080727828414,-0.027369550852867516,-0.02757419554455446,-0.40471248829428413,-0.018117959230013907,-6.527981229407436,-2.311111111111111,-0.01958616965105602,-0.00019247571940689777,-0.0849403122130395,-1.4777777777777779,0.0676683289799933,-10.912226913362607,-0.0193990806900574,-0.022912916666666637,0.020989248546066718,-0.006935123186409541,-10.271829814971696,-1.5294117647058822,-0.01972982681088962,0.0027477093566097375,-0.013223140495867735,-0.6235294117647059,-0.04128301848594639,-7.730555303528297,-0.027116569466274113,-0.021413161764705854,-0.43786646545670616,-0.008026735901798738,-9.155424537302135,,,0.4577380952380952,1.1770833333333333,0.5,0.041666666666666664,0.6770833333333334,-0.17708333333333334,0.858424535422377,0.020678787783441344,0.031428787783441346,0.9640024074335155,0.2360629883854508,0.23968378892998685,1.8224269428558924,0.47574677731543763,2.023683713201217,1.4584119891248324,0.2732567792766009,0.2172683727301794,0.07474657206960429,0.5652717240763846,7.571565220909104,1052.0,284.8846999999999,148.0,382.0,7347.485099692481,4190.242811149772,62.17341909698001,286.4084999999999,280.69444444444446,349.2181079999999,9377.621074597482,1166.0,299.025,187.0,356.0,6871.9801885662455,4440.419717835203,79.42901987600005,304.9235000000001,153.3888888888889,362.75505199999975,11838.837823394417,1763.0,528.0460000000002,306.0,524.0,13200.85965383254,6631.8090696703985,121.11454004333902,534.7541000000001,281.3888888888889,646.5553119999997,17818.364526856625,2094.0,685.0939,359.0,599.0,17328.092947602334,7740.934897718397,151.895787414886,693.8773,357.88888888888886,844.1113919999996,21786.787429065178,2120.0,772.6679,347.0,601.0,19881.01799689058,7708.743957766399,157.92876920167802,781.4625999999997,468.6666666666665,961.0498159999996,21842.63483068766,1933.0,762.2880000000001,323.0,495.0,20396.616149585567,7020.5047136272005,141.872250881168,768.9594000000003,435.88888888888874,951.4724120000003,19636.394993792004,1693.0,659.354,270.0,381.0,16881.270673207986,6041.281023830399,117.206907229886,663.3517999999997,392.7777777777776,811.6296079999996,16714.860421623256,1400.0,590.6669000000002,221.0,287.0,15077.753969973235,4878.497409540799,102.74658524748997,593.3139999999999,406.16666666666646,727.384204,14264.620577204309,982.0,519.34,182.0,169.0,14282.267728054128,3217.474555979201,89.041695443131,522.9087000000001,251.66666666666677,654.092796,11340.42947894006,348.0,8.332515909090903,1.104502471311252,30.181818181818187,206.0,85.3532373355686,1664.5346613069114,9.834085367443633,7.545024999999996,123.49684343434348,5.008099909090909,2107.357419357986,14.0,-0.3310416322314057,-0.4692127400996002,13.991735537190081,74.0,-24.3621357650154,66.24396353773,-0.9421646344756163,-0.18491250000000087,-5.4840736914600505,-0.3178718140495865,-68.79485255295688,71.0,-0.44487964876033115,-0.11284388953952776,3.5702479338842905,54.0,8.589849131881735,349.5935721349921,3.1537444554544996,-0.1517125000000017,28.40929178145087,-0.1893186487603305,767.7886961333248,10.0,-0.5306117768595044,-0.36208373802523214,-3.082644628099179,43.0,18.622272145780457,53.59764953387332,0.4344285211929863,-0.37367500000000065,5.9484044995408585,-0.4092000495867768,190.56759158727033,48.0,4.0168801652892565,0.5719162949316853,-3.3305785123966962,87.0,-26.175561853278158,210.76206629609078,-3.186984679944064,3.5047499999999987,41.263314967860424,2.590449438016527,-525.6488902655369,133.0,2.2184827995867766,-0.11801018952060949,-8.735537190082646,19.0,-14.379436766385911,624.8263895678284,-0.8757285633467107,2.286243749999999,17.19884928833792,1.0264473450413218,275.48870664184045,-127.0,-3.028491064049588,-0.13987806208036643,-17.553719008264455,-141.0,-14.85600343413903,-606.2101535106698,-2.764324636139619,-2.7849937500000004,-40.8759613177227,-1.8299138822314045,-659.326104170151,-208.0,-1.7627552685950416,-0.0173228147466208,-7.644628099173556,-133.0,6.090149608199396,-982.1004222026347,-1.745917262105166,-2.0621624999999972,1.8890323691460047,-0.6241610867768587,-924.4646833474526,-130.0,-1.6770352789256178,0.23355529531182767,-1.1239669421487575,-53.0,-3.509056571305443,-657.0972007999052,-2.3049084046332995,-1.8201187499999976,-37.21864956382002,-0.6822725516528927,-778.2110856706815,0.7262648725578601,0.5729541728932668,0.4391508713680964,0.3059647957580899,0.2797690172329754,0.15984629935111522,0.17397937363592217,0.08776582862110041,0.10758223816278577,0.04497171591129644,0.06733463273302687,0.02447930294281433,0.043458273092963476,0.012828328878177477,0.027240468441197596,0.006696896499996664,9.004068096291817,5.669656242893137,4.107718981778017,2.1646522362935054,0.4932293130311721,-0.46263648170542115,3.292228966776674,0.9726828491576014,7.004062308175148,0.9879299153099794,17.424771863613632,10.933731758710202,19.000141660700045,11.684277985108462,2.015115531303272,0.5458514661965983,3.9886718261613794,2.213288037790183,8.001919992694788,1.3662688771417741,4.009954708946836,2.408771149152687,20.911496849729225,13.304119860828163,0.298142016286966,0.6054176629415876,0.7634416447553529,0.8320937687392548,0.8320937687392548,0.8320937687392548,1.7291195324422957,854.2600816822633,0.0,2.0,6.0,0.0,6.0,0.0,2.0,0.0,0.0,3.759891027348408,2.008284726740915,1.107478544390922,0.716131250098341,0.716131250098341,0.716131250098341,207.4454614902542,1272.4124572141145,63.76495245121318,28.918464936684416,62.564275531189836,,12.0,456.0,17.215316520898284,19.086016810659167,10.949675706161791,30.838356210037553,13.08951281182515,12.263210640074686,10.633466716252965,18.871318913218293,4.899909730850478,0.0,10.985714285714286,28.25,12.0,1.0,16.25,0.0,0.04226190476190476,-4.25,0.18187547746371263,0.049700299700299655,-0.13217517776341298,0.02369047619047615,0.20099132755170102,0.0,0.6230519480519483,0.8922619047619046,0.44117647058823567,0.5733516483516486,0.8685714285714284,20.602188850137047,0.49629090680259225,0.7542909068025923,23.13605777840437,5.6655117212508195,5.752410934319684,43.73824662854142,11.417922655570504,0.513008672448299,0.20806241872561768,0.0,0.42782834850455137,0.4117647058823529,0.31130182309345383,-0.7206150673998466,-0.06605835491261143,-0.01637761516817833,-0.06551046067271332,0.6886981769065463,1.5942286435652369,0.04994640307667642,0.0362324691719372,0.048309958895916265,-2.9141059745214695,0.7440654672663668,0.6666083882228087,1.435012615715316,0.6968635411210057,0.42882017728999583,1.396288745543465,0.7461753478629217,1.2149731650529738,0.6471722008585272,0.5849374016083169,0.6934847325594582,1.0513775988501837,0.7707632464255677,0.776454797303277,1.1357910024863715,1.1727703496914486,0.7853125739995265,0.9875921663678213,0.766642025220506,0.8129111800226685,0.7598281729981824,0.43670816553681546,0.7316075943649385,0.7683678112125452,0.8815320349084717,0.8244864301790251,1.0639344636653687,1.1608656849620704,0.8330186983099606,0.9700072722334452,0.8822848588648085,1.0010394952302655,0.818974043111803,0.6833887036270239,0.8057386254839165,0.9531045487784001,0.8798896922506488,0.6851841296890147,0.5596768268888973,0.9938423047026816,0.7583581271531477,1.0900290591382926,0.8860219555008179,1.1521773090833747,0.6952902954318008,0.7727739851116117,0.676797352207733,1.1047764606415393,0.8508784225773292,0.928740076568176,0.8321028637381588,1.088794201195024,0.9639276975294027,1.1555657455093888,0.8614636275403045,1.0397671169940277,0.9130429804833171,0.9358902698571555,0.9141017409054557,0.9583363500673286,1.1787441675202002,1.4107188935502253,1.1994445250927872,1.3189043301920553,1.4001970585408057,1.2323314844549704,1.1809385150266616,1.0878731970131037,1.3913554144802192,1.4048140356084176,1.4147322031177094,1.0702195570126158,1.3262452107279692,1.4081014552851747,1.1215653856611112,1.0368641231593037,1.3939050701186626,1.0937910042942902,1.3231287167380121,1.0500072509844716,1.4144170054660743,1.3779179595710702,1.3912660942231052,1.1423868142055906,1.2051048005409062,1.192969395923152,0.5923550126601365,0.8129163713678241,1.1063106796116506,1.1164116210336088,1.2252193286778512,1.1162477743726051,1.210016962872107,1.2512544944058417,1.1218590135014461,1.1915058865493848,5.5,0.05774920926436078,3.555555555555557,2.0625,2.2222222222222223,1.3680555555555554,0.7477551020408164,0.2951388888888889,0.2705971277399848,0.15125000000000002,4895.627528637453,5455.085301310876,2364.0268706406073,2160.193562237103,13.744158057993594,0.4639951646785982,7.366935176506174,0.8656548114913464,1.0,0.4117647058823529,1.6995405912888892,3.451146891896382,4.351953074246375,4.743300368538956,4.743300368538956,4.743300368538956,0.21153846153846154,0.007218651158045097,0.09356725146198833,0.04796511627906977,0.05555555555555556,0.038001543209876545,0.02492517006802721,0.012832125603864732,0.01803980851599899,0.01260416666666667,0.5222478500575545,18.781065088757398,7.7091412742382275,3.7588757396449703,138.25887357603418,1.0,4.110730637090591,110.66330303067888,,82.79409412258705,80.76377243871599,79.66793105415158,82.75053215358366,117.95757700503722,81.94939297394579,82.94385065957984,104.7781172857137,0.03848075962018991,-0.03800154974094842,-0.40634783338185015,0.44342587742273426,0.34360489658083576,-0.27301732422014946,0.03806697011659249,-0.09164054622703299,-0.023442311468412292,-0.042475868686179405,-0.060711907892118964,-0.03122572915382503,0.10947574992991309,-0.028648719269826615,-0.05482140721788758,0.0634734058183954,0.14065829978688138,0.054001318320678865,0.1126962382728985,0.17208037750427832,-0.010789454947740282,0.12343643610856789,-0.02028426314410777,0.19549800837226555,0.011707109408258832,-0.025943565029899078,-0.13355841277395603,-0.041610887996430236,0.0850413520316433,0.08888768430797392,0.013118428800143784,0.017997545364920587,-0.020177264218867837,0.01962336840339486,-0.03328829982215618,0.03684170882037483,0.0489432703003337,0.17105812822091176,0.1837370629837741,-0.03915662650602411,0.1498590667084247,-0.1088195700953002,0.04492939762199534,-0.11499447984627603,0.16482661989084668,0.11856028893558557,0.18354101410832996,-0.08850922593947763,0.13671619474815438,0.0952417747247718,-0.03822085349928345,-0.10353609560191986,0.03299392217223143,-0.06026559412719069,0.13428085123323455,-0.03185540318828482,0.10839504079614407,0.04981855179994193,0.07331810921859098,0.046764162890791765,-0.15898486400364176,-0.15833664839748507,-0.05517142706581542,-0.2533699153047833,-0.29818321637989037,-0.07582515309519235,-0.15865788689380514,-0.1224577774678417,-0.16080325830072092,-0.14419275011199537,-0.1591801722392797,-0.13629922074701176,-0.2922094508301405,-0.10342512082170009,-0.007667643915589694,-0.12382864792503348,-0.3156418554476807,0.03488334558903665,-0.28845177895603197,-0.0867960281480054,-0.13362027737924426,0.007478142034601268,-0.06093037793597274,-0.2144678960042981,-0.19337390128465176,-0.1041837050358367,0.10946033606180924,-0.01927710843373489,-0.1331810394060537,-0.0212815924748139,-0.20434806271212175,-0.12132587952368107,-0.12487422078085335,-0.15600499530449796,-0.07052103314433568,-0.191158213571583,7.669948782982146,15.95739792018216,8.857542075624217,17.171829607603545,34.25364055325327,39.2464003246127,39.64087839725963,39.64087839725963,39.64087839725963,48.5684091168292,35.001887738995975,6.5581627026384215,5.214440945524306,1.793917729670503,13.56652137783323,5078.267294348344,4373.883941501245,899.6055218955148,131.0,38.0,52.0,69.0,94.0,107.0,119.0,126.0,141.0,333.14886972000056,26.0,4.859812404361672,5.733341276897746,6.637258031284457,7.5352967024440884,8.445267451844648,9.351753124926507,10.264687244346277,11.175422697534492,12.090083624666484,0.6666666666666667,1.002818181818182,1.1409215037868359,0.6307918559502274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6530873707131194,0.9872549019607841,1.0185559160431703,0.6246163795496179,3.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,19.473446504333015,11.38067233274289,0.0,5.428790391900541,0.0,4.794537184071822,9.184952231746642,0.0,0.0,0.0,26.104143319291033,44.306849815640746,11.204086992299825,171.11492917698317,-396.10431765757517,-36.310647364972716,-9.00237085585398,-36.00948342341592,378.56039066723736,876.3081395565392,27.454305086240467,19.916094080830437,26.554792107773917,0.5,0.7012326155820289,0.20627613943750508,106.38549255818212,0.14719043406179047,67.72909482816789,0.2987673844179713,6.0,0.11538461538461539,0.31130357700369976,0.6321439909815751,0.7971439846209935,0.8688267753636428,0.8688267753636428,0.8688267753636428,1.6105000000000003,,1.511904761904762,1.8043900169108715,1.5488545075243887,1.543086245660115,-6.799632915426464,1.6190119046886822,1.4797733799930697,-2.701616984205071,90.50930000000004,14.291479626587348,0.0,9.467009378641833,0.0,13.4684936056032,38.12660733717797,39.93357761725155,0.0,0.0,3.970291913552122,0.0,5.3230099791384085,0.0,6.884486652042782,0.0,8.545002892055505,0.0,10.260217494962417,29.333333333333336,4.161808862433862,0.0,0.0,0.0,0.0,0.6619958847736624,-0.36970629905875163,1.679760015117158,44.12400000000001,0.0,23.583345611434602,0.0,0.0,0.0,0.0,0.0,-1.298469998983166,50.20054616662078,10.32870012275102,10.077801322358383,0.0,53.76953966776187,6.544756405912575,5.817220841045895,17.28172587545944,23.124114892608116,0.0,10.902924932081056,0.0,27.754841661810005,28.735844311377253,30.444705152403216,221.32660606135786,,165.52835328696182,161.47728978831105,159.38248531023044,165.43554770560291,238.39384405597008,163.8460223153472,165.82969938445737,210.45677356616244,30.444705152403216,221.32660606135792,,164.3295192065732,160.06594125111724,158.2177638111333,164.21049575867954,242.71478692550096,162.57044913223206,164.65596336235825,212.25785155563253,5.01128307255957,161.78216103059026,,120.45041022451562,117.4554510147742,115.49312082715659,120.41453675049985,168.6916553763141,119.1926804715456,120.65893352564905,151.68929053916307,1.268529381350134,9.221941919223244,,6.897014720290076,6.728220407846294,6.6409368879262685,6.893147821066788,9.93307683566542,6.8269175964728,6.909570807685724,8.769032231923434,2.5056415362797853,110.66330303067888,,82.79409412258705,80.76377243871599,79.66793105415158,82.75053215358366,117.95757700503722,81.94939297394579,82.94385065957984,104.7781172857137,43.4392156862745,0.0,3.879659760459239,0.0,14.598862906273618,0.0,9.177720163626965,44.8164603058995,3.5990891031700913,0.0,0.0,0.0,0.0,4.1397974219276525,0.0,0.0,0.0,27.483120700183186,385.450262255251,74.77978601671113,151.8504632434408,191.4859352668405,208.70521621571407,208.70521621571407,208.70521621571407,927.0,126.09292255830636,164.22505758896952,58.983008931751236,65.78,65.78,1.0,9.070594396270431,5.700439718141092,4.209285176495805,4.8149053827859145,,4.796637548932547,4.797947665810916,4.797869962031587,4.7965076034871625,4.771364036735971,4.797128696454527,4.796614068322712,4.782666777794505,0.17538688235399189,0.20062105761607976,,0.19985989787218947,0.19991448607545484,0.1999112484179828,0.19985448347863177,0.19880683486399878,0.19988036235227194,0.19985891951344634,0.19927778240810437,2.3127615788257074,2.4471851318991633,,2.443383899156471,2.4436569942110644,2.44364079886798,2.443356807844221,2.4381009629547985,2.4434862880431387,2.443379003921618,2.4404670315913655,241.31999999999994,187.02105946404257,139.3148626931714,,140.64642991736207,140.48473701571072,140.6476601555554,140.62798134233637,144.46740641535393,140.58793182300172,140.66477390323578,142.6556515015276,7.792544144335107,5.804785945548808,,5.86026791322342,5.853530708987947,5.860319173148142,5.859499222597349,6.019475267306414,5.857830492625072,5.861032245968158,5.943985479230316,6.10668996532239,5.812205308020033,,5.821717889225792,5.8205675868865345,5.821726636215058,5.821586710744468,5.848522658324228,5.821301879639751,5.821848306967073,5.835902432185369,16.278622921390777,27.723143033362255,9.281541917637211,0.03261838390085181,-1.7898173156876256,2.829798752834467,1.3320101095993953,5.454675995334364,2.0240728682949656,293.32859882507876,94.05765342547934,-217.7287675001043,-19.959066704092077,-4.948381079547825,-19.7935243181913,208.08530382036673,481.68495689283446,15.090953929380037,10.947385383928056,14.596513845237409,1277.0,43.0,1.9278252053386877,0.8513633570392279,0.0,0.0,0.581080967660079,0.1339859185779129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18424981005154034,0.08697076394253091,0.4510015622578306,0.15662640652399595,17.43035694138864,13.750900149438403,11.417922655570505,7.955084689710336,10.631222654853067,6.074159375342378,9.046927429067953,4.563823088297221,7.423174433232218,3.1030483978794545,6.329455476904526,2.301054476624547,4.650035220947092,1.3726311899649901,3.2416157445025138,0.7969306834996029,4.678895398031515,1.777463247569104,7.312588232204568,2.26965793005396,12.01170923892483,3.0824706312884884,77.41326102216759,39.82610238024908,28.33966085372776,26.245804550515825,26.245804550515825,26.245804550515825,128.0,154.0,47.98885999999998,28.043139999999998,0.36363636363636365,124.07,9.11111111111111,5.277777777777778,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,10.0,11.0,44.0,0.0,1.0,46.0,11.0,2.0,6.0,40.0,13.0,26.0,33.0,0.0,0.0,0.0,17.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,5.0,1.0,2.0,24.0,7.0,0.0,3.0,3.0,0.0,3.0,3.0,0.0,0.0,1.0,1.0,2.0,3.5409593240373143,7.695719797749482,4.197201947661808,4.852030263919617,5.492032107171434,6.135294291702467,6.5828039214355405,6.98685523471237,7.3272568303512315,7.7062403186932515 +39147,CC(C)(C)NCC(O)COc1cccc2c1CC(O)C(O)C2,0,19.26530612244898,6.027651020408163,2.836734693877551,5.387755102040816,165.33318090213723,75.51003751020409,1.2897686618555717,6.077520408163265,4.116921768707483,7.6162408163265285,186.69236143781293,21.38,6.30908,3.42,4.8,147.955110997329,78.92970181999999,1.6588479077599998,6.436520000000001,2.899166666666667,7.77514024,238.0777588786289,17.747252747252748,6.1360219780219785,3.197802197802198,3.4725274725274726,155.10330017751414,64.50397667032968,1.4001702865168901,6.234307692307691,2.679639804639805,7.669469846153846,195.9013811077757,14.296875,6.199609375,2.4921875,2.84375,160.62392002528034,48.8116559609375,1.2052678718717498,6.263486718749999,3.111111111111111,7.77003215625,160.72291102432527,10.313333333333333,5.7705133333333345,2.1066666666666665,2.013333333333333,166.58930630000194,34.520626706666654,0.9878388313282799,5.820757333333334,2.2610185185185183,7.440922186666667,123.98038398644132,12.466101694915254,5.854957627118644,2.305084745762712,2.406779661016949,162.74463292708822,43.380212830508476,1.0707943879246695,5.919051694915254,2.635004708097928,7.490658305084745,139.5772388952982,12.036697247706423,6.082660550458716,2.1009174311926606,2.0642201834862384,163.11126538886907,39.88695266055046,1.0371734771227155,6.132895412844038,3.0025484199796124,7.712977100917431,134.7170405151904,9.63888888888889,5.850175925925926,2.0185185185185186,1.537037037037037,170.2327355664778,31.720550972222217,0.9041686856949445,5.880486111111111,2.328960905349794,7.545003222222222,113.86360695258884,12.61038961038961,5.973857142857143,2.3766233766233764,2.0779220779220777,163.4499040337848,43.09864209090908,1.1208260285581817,6.033384415584416,2.863095238095238,7.58706051948052,145.7343735440985,7.510204081632654,0.1326652228238234,0.021591690828199436,0.6172428154935444,3.3469387755102042,1.2896965038080397,35.63828705789254,0.21911765086393417,0.1249162848812994,1.5011106483409684,0.08446464972927945,49.07363545173976,-0.053469387755101565,-0.01391040649729268,-0.009479992310146384,0.15704289879216984,0.7551020408163264,0.03717744906787265,-0.15075787707622199,0.013157145392893836,-0.01187057059558513,-0.291297723170901,-0.00962555258642236,2.4267958971213743,0.45368916797488246,-0.005266366578028325,-0.0020449559255152623,-0.09986223688847601,-0.21664050235478816,-0.07143521525562277,2.1935456061576883,0.0018103652215721235,-0.0026839457918174975,-0.06164053795249131,-0.005730728222215124,2.4560515887937187,-1.6176658163265305,-0.0061257776707620915,0.0023314079802564634,0.032789072261557674,-0.16007653061224497,-0.04167835087208468,-7.765675757350453,-0.032948429436724255,-0.009192799549666762,-0.014869993224755865,0.00066077820439397,-10.183972006003737,0.5827210884353741,0.0002883009857003672,-0.002146055423500358,0.015682354574482867,0.33034013605442175,0.1061956449582064,2.8096362648285442,0.015448369210803517,0.0016714566152991625,-0.03900652891542105,-0.0016707961238372779,4.440307894546487,0.9766516776202006,0.01611051221595519,0.0017945575434611847,-0.0710650223423856,0.25873400207540637,-0.11827287964581461,4.537460822425683,-0.012512965516919319,0.016935565689437288,0.21145516894639788,0.007684379672311681,1.3446744399521782,-1.2776633589215498,-0.011571551226744152,0.0006674553406910313,0.015035784019655425,-0.3117393746489421,-0.306204186520738,-6.1368862962374235,-0.046958035502628816,-0.012083032681336876,-0.14498455876140628,-0.006350922711867022,-10.533694800774748,0.47335600907029474,-0.016502033103490833,-0.002401780286135289,0.030716368179925055,-0.17876039304610725,0.14108709294230315,2.444562363687199,0.04041867889586914,-0.01324848442778473,-0.1393880271937447,-0.012535738920511515,8.11116012022132,-0.30241187384044504,-0.0004089546022490383,0.0010581655194169357,-0.08610048843284997,-0.42671614100185534,-0.03630729321649521,-1.4365155182689031,-8.493351613378284e-05,-0.001330835636666529,0.05624313732914314,0.0014959895498087839,-1.3302103367483185,,,0.4651515151515152,0.8977272727272727,0.29545454545454547,0.022727272727272728,0.6022727272727273,-0.3068181818181818,1.0829035491261019,0.029744306819826264,0.03756248863800808,0.6249606480264137,0.1649732753661085,0.30138303428556956,1.7078641971525157,0.46635630965167807,1.9856230330055415,1.5641271751889734,0.08810500692651142,0.33339085089005693,0.0,0.4214958578165684,6.31008180293879,944.0,295.3549,139.0,264.0,8101.325864204724,3699.9918380000004,63.19866443092301,297.7985,201.72916666666669,373.1957999999999,9147.925710452833,1069.0,315.454,171.0,240.0,7397.755549866451,3946.4850909999996,82.942395388,321.826,144.95833333333334,388.757012,11903.887943931446,1615.0,558.378,291.0,316.0,14114.400316153788,5869.861877,127.415496073037,567.3219999999999,243.84722222222223,697.921756,17827.02568080759,1830.0,793.55,319.0,364.0,20559.861763235884,6247.891963,154.27428759958397,801.7262999999999,398.22222222222223,994.564116,20572.532611113635,1547.0,865.5770000000001,316.0,302.0,24988.39594500029,5178.094005999998,148.17582469924199,873.1136,339.15277777777777,1116.138328,18597.0575979662,1471.0,690.885,272.0,284.0,19203.86668539641,5118.865114,126.353737775111,698.4481,310.93055555555554,883.8976799999999,16470.114189645188,1312.0,663.01,229.0,225.0,17779.12792738673,4347.67784,113.05190900637598,668.4856000000001,327.27777777777777,840.714504,14684.157416155755,1041.0,631.8190000000001,218.0,166.0,18385.135441179602,3425.8195049999995,97.650218055054,635.0925,251.52777777777777,814.860348,12297.269550879595,971.0,459.98699999999997,183.0,160.0,12585.64261060143,3318.5954409999995,86.30360419898,464.5706,220.45833333333334,584.20366,11221.546762895585,368.00000000000006,6.500595918367346,1.0579928505817724,30.244897959183678,164.0,63.19512868659395,1746.2760658367345,10.736764892332774,6.1208979591836705,73.55442176870746,4.138767836734693,2404.6081371352484,-2.673469387755078,-0.695520324864634,-0.47399961550731917,7.852144939608492,37.75510204081632,1.8588724533936327,-7.537893853811099,0.6578572696446918,-0.5935285297792565,-14.56488615854505,-0.48127762932111795,121.33979485606872,41.285714285714306,-0.47923935860057754,-0.18609098922188885,-9.087463556851317,-19.714285714285722,-6.500604588261671,199.61265016034963,0.16474323516306325,-0.24423906705539228,-5.609288953676709,-0.5214962682215762,223.50069458022838,-207.0612244897959,-0.7840995418575477,0.2984202214728273,4.197001249479382,-20.489795918367356,-5.334828911626839,-994.006496940858,-4.217398967900705,-1.1766783423573455,-1.9033591327687507,0.08457961016242815,-1303.5484167684783,87.40816326530611,0.04324514785505508,-0.3219083135250537,2.35235318617243,49.55102040816326,15.929346743730958,421.44543972428164,2.3172553816205275,0.25071849229487436,-5.850979337313158,-0.25061941857559167,666.0461841819731,115.24489795918366,1.9010404414827127,0.2117577901284198,-8.3856726364015,30.530612244897952,-13.956199798206123,535.4203770462307,-1.4765299309964797,1.9983967513536,24.95170993567495,0.9067568013327784,158.67158391435703,-139.26530612244892,-1.2612990837151126,0.07275263213532242,1.6389004581424413,-33.979591836734684,-33.37625633076044,-668.9206062898792,-5.118425869786541,-1.3170505622657196,-15.803316904993286,-0.6922505755935054,-1148.1727332844475,51.12244897959183,-1.78221957517701,-0.25939227090261124,3.317367763431906,-19.306122448979583,15.23740603776874,264.01273527821746,4.365217320753867,-1.4308363182007509,-15.05390693692443,-1.3538598034152436,876.0052929839026,-23.28571428571427,-0.03148950437317595,0.08147874499510405,-6.629737609329448,-32.85714285714286,-2.795661577670131,-110.61169490670554,-0.006539880742301279,-0.10247434402332274,4.330721574344022,0.11519119533527636,-102.42619592962052,0.7421846657189403,0.6155644462203494,0.4460799483624748,0.33862606747361423,0.31281052004056836,0.2131060046144282,0.19103002070497857,0.10312875095254061,0.1152231184869889,0.056548303682992775,0.07879883884468954,0.03278406650287349,0.05126128448178209,0.017236516151225848,0.03360151364319827,0.009654246722170315,8.011634014682718,5.686253038501528,3.52186436435999,2.185699295740327,0.3720308693507077,-0.5215425967779934,4.017045215290516,0.9888382605981363,6.007554799234887,0.9899108535339902,14.54023224099965,10.946648055428676,16.00604712876726,11.697577950824789,1.9915565870472085,0.7783225564492403,3.464538502657797,2.2355791960774636,6.004744943957322,1.1945220805145882,3.6780499428441606,2.431600404381321,20.89948479271094,14.706127681950925,0.24673965777011814,0.5563613897909158,0.7368739737878753,0.7805720727422579,0.8117650990649613,0.8260168076403119,1.7890374180306932,497.9225718548434,0.0,0.0,5.0,0.0,4.0,5.0,2.0,1.0,0.0,4.201404711421825,2.4279160594026132,1.3939543372203707,1.1436551023940362,0.9649839288804953,0.8833512758192708,257.27097913745905,1279.211960630286,57.98221873567836,26.106366543475225,54.035789511292776,,12.0,427.0,18.31189916324491,15.319582184522117,12.145807216896262,25.1359114850485,11.126902983393991,0.0,0.0,38.970312804456704,5.316788604006331,4.736862953800049,10.233333333333334,19.75,6.5,0.5,13.25,0.0,0.0348484848484848,-6.75,0.11284013605442167,0.027309833024118713,-0.08553030303030296,0.08578088578088572,0.1715971731448761,0.0,0.550340136054422,0.8575757575757573,0.43750000000000033,0.5230303030303033,0.7717948717948716,23.823878080774243,0.6543747500361778,0.8263747500361778,13.749134256581101,3.6294120580543874,6.630426754282531,37.573012337355344,10.259838812336918,0.5424028268551239,0.24429967426710095,0.04885993485342019,0.29315960912052114,0.6470588235294118,0.2702084496205881,-0.6174683315480931,-0.057517039763348494,-0.012601394521389654,-0.05145569429567442,0.729791550379412,1.6676871934368143,0.046061093941276166,0.03403443251911866,0.04507262684964363,-2.71170091042156,1.017391304347826,1.0002799868897416,1.3954027572273406,1.2061538461538461,0.7697560975609756,1.335642624409762,1.0211914440833467,1.243153889296261,0.986255291340473,1.1023130635838156,1.0223485653010875,1.1479163062225894,0.936693741041567,0.9608613590214018,1.0411717327271162,1.8399252569293054,1.1755561511659074,1.2620145511550749,0.9395712568458358,1.1493739047364342,0.9411892038290728,0.8609159626500669,0.9869621940036432,1.050980789688335,1.251868206521739,1.2018744278389544,1.08348844928849,0.9423076923076922,1.138719512195122,1.149225634478286,1.2524416571211143,1.1860448141821436,1.2091240614288952,1.1065184248554918,1.1581992368486838,1.2156135296465778,0.883478260869565,0.9334676506894813,1.065524874499419,0.8041025641025641,0.8926829268292683,0.8275245617014027,0.882226498260921,0.8641931436974468,0.928478147797442,0.8157678612716766,0.9497226602353067,0.8619056860173494,0.8367722918201915,0.8039388113889648,0.8940913889848693,1.143210045975434,0.9326167837949566,1.0582680259744868,0.8406164040345371,1.0612834334250953,0.7953734946186367,0.6833020476143824,0.8428705588072475,0.9714751973146702,1.2104108496210608,1.337908674672569,1.193975123966505,0.7352821008060022,1.1371671514880286,1.201408823162413,1.2073322918086442,1.1899652120964335,1.3237165525358168,1.4589251736755586,1.3792188385495214,1.1782641124224187,0.9462560386473429,1.295320561575586,1.3883817917064196,0.7420902684060579,1.1409214092140922,0.7329568344196409,0.9352779046394354,0.6708770219634562,1.2646328921845387,1.0722303575251555,1.3369795596859686,0.7249213932157741,1.0299265951439862,0.9961316519233341,0.9619407112372385,1.2778800147221199,1.1270193221412734,1.0627155872107346,1.0301718008249396,0.9904651332350624,1.0006986012214,1.1049332632685236,0.9616341443961006,1.0132657562072895,6.5,0.1486583001734517,2.8888888888888897,1.1875,1.577777777777778,0.6805555555555556,0.3861224489795918,0.3177083333333333,0.28344671201814053,0.2,3854.682741568635,4602.613944022753,2053.5455722464803,1763.3346529077235,13.37390056579056,0.44408541839942467,7.434746337399157,0.7988375068716943,1.0,0.6470588235294118,1.4133051326933832,3.186793784712595,4.220755506894838,4.471054741721172,4.649725915234713,4.731358568295938,0.2826086956521739,0.012388191681120974,0.08754208754208757,0.03830645161290322,0.06068376068376069,0.026175213675213672,0.01930612244897959,0.018688725490196078,0.01667333600106709,0.0125,0.5748725847875027,18.340264650283554,7.7134986225895315,5.551497443389335,131.4860438940334,1.0,4.000825247286769,109.76596944942894,,93.03590833445134,91.37839346846542,93.81097582534666,93.06160540508887,140.20808020389447,92.50477054716153,93.11846496417668,118.19517648478637,-0.00711956521739124,-0.10485345142611643,-0.4390574311931705,0.25442645074224,0.22560975609756093,0.02882650992547484,-0.004230222312069143,0.06004603162282005,-0.09502820714580998,-0.19405479768786132,-0.11395953949105986,0.049452131980479534,0.060409698996655534,-0.03969666251585728,-0.09471031897346754,-0.16178760510744322,-0.06472795497185745,-0.055389167175919775,0.06155025359648705,0.00826206932410164,-0.02148595592934815,-0.04106328738698683,-0.06784765272315553,0.05004829102602478,-0.21539572010869562,-0.04617470607875128,0.10797709168804744,0.05312183704453439,-0.047827743902439046,-0.03231640215277202,-0.21790260976167342,-0.15036866864360596,-0.07359168228867949,-0.009905994099229275,0.00782313318662722,-0.2075243032690926,0.07759057971014491,0.0021731466586629475,-0.09939265250582141,0.025407107512370686,0.09869918699186993,0.082341577762401,0.07883757881697391,0.07050262336189664,0.013380614200041647,-0.02598511239563264,-0.019781010507856293,0.09048255450552868,0.1300432940309506,0.12143734335975609,0.08311334011495919,-0.11513300853175965,0.07730467135179825,-0.09170597834187702,0.12731983484657428,-0.05710615036070059,0.13557532314966106,0.14086581104470794,0.09097746450072487,0.02740115802658567,-0.17012365376944547,-0.08722369721649605,0.030912601796766807,0.024359593408362124,-0.09314164242559855,-0.23742344467603044,-0.1721992498199583,-0.21430512474683486,-0.09672904291717187,-0.09658485796609571,-0.07519030425417715,-0.21465079372678322,0.06302838164251207,-0.12438853794716935,-0.11123632258565352,0.049763832658569526,-0.05341011743450766,0.10939557680874566,0.06859371101972815,0.18446108169062106,-0.10605890529304475,-0.09285659744522945,-0.14841402836204545,0.16528549486002597,-0.040266798418972294,-0.0030826059274940603,0.04900799700387233,-0.13949208686050793,-0.12749445676274945,-0.02815181177067007,-0.04030820886355617,-0.000387616040053862,-0.010653820179900032,0.03746768260641093,0.017711427852996862,-0.027106415175954926,6.258764189770795,15.199199216885825,5.669746481494515,13.167696338837676,27.450177222825502,30.627840319858862,32.17207089846039,32.80127348217837,33.49543674748449,43.68370672612191,34.410797854157416,1.9383101523832513,7.334598719581253,0.0,9.272908871964505,5468.5602350972595,4970.233624562709,831.4986665546085,51.0,33.0,37.0,45.0,60.0,58.0,58.0,61.0,64.0,309.19400834400074,23.0,4.727387818712341,5.53338948872752,6.411818267709897,7.246368080102461,8.12355783506165,8.971702399703325,9.84845041660622,10.705063038271945,11.582106318787394,0.5714285714285714,0.9711836734693877,1.1374427095954054,0.525718771398327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6195944152511305,0.9567827130852342,0.9994203070886039,0.5700374558127751,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,3.0,4.0,1.0,1.0,0.0,3.0,0.0,1.0,0.0,0.0,25.373233742328495,18.460360185545124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.13273413692322,32.40103015923048,30.488776395844933,12.207932775496605,151.26054959445497,-345.65388061802247,-32.197583228305255,-7.054160828939233,-28.80449005150187,408.531528731914,933.5580800122635,25.784635507373107,19.05220571453599,25.231299459790907,0.5,0.7899417492016351,0.21466662258373256,9.568553159634309,0.09219959276143637,110.64661006490364,0.2100582507983649,6.0,0.21739130434782608,0.25171472292102004,0.5675794249729007,0.7517317232908522,0.7963109164772416,0.8281328945445156,0.8426719634060674,0.6347999999999998,,1.1428571428571428,1.3285248953001396,0.9177863289708527,1.1395624948769625,-4.847358875538426,1.1960679314565485,1.1342421939878375,-1.9153025404755315,85.12110000000003,20.056445138322168,0.0,5.316788604006331,0.0,57.46367926055214,13.151638370425493,29.32600418877882,0.0,5.749511833283905,3.8501476017100584,0.0,5.187385805840755,0.0,6.695798917058491,0.0,8.286773231131251,0.0,9.926569111979449,27.999999999999996,5.65318857867221,0.0,0.0,0.0,0.0,0.0,2.6038384852397756,0.0,47.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.73469277017486,10.05365155780638,0.0,5.749511833283905,52.32204497057586,12.841643245852019,0.0,31.898114582465862,18.19910120538483,0.0,0.0,0.0,25.760219798518026,30.360126347305393,26.76605025054251,219.53193889885796,,185.96792056500658,182.636011946449,187.53851652987777,186.01961421973436,281.91897476255906,184.9008076460088,186.1338170016272,236.9127082078843,26.76605025054251,219.5319388988579,,184.92895952604556,181.42826204163072,186.70416532172254,184.9836483153008,285.26351928332735,183.81347316286656,185.1026877343656,238.30565551004833,4.8382959134225185,167.6130025909576,,141.608806759114,138.8867040278827,143.01410478935037,141.65135261542602,220.31608258681,140.74112525071553,141.74399463142407,183.33643227031058,1.2166386477519322,9.978724495402634,,8.45308729840939,8.301636906656773,8.524478024085353,8.455437009987925,12.814498852843593,8.404582165727673,8.460628045528509,10.76875946399474,2.4191479567112597,109.76596944942894,,93.03590833445134,91.37839346846542,93.81097582534666,93.06160540508887,140.20808020389447,92.50477054716153,93.11846496417668,118.19517648478637,46.88235294117648,0.0,6.127525869215638,0.0,0.0,0.0,29.570774617007828,48.97159504734159,1.4611986173665463,3.2300265196630638,5.7322515117157975,0.0,-2.0803314597826694,0.0,-0.048472739098190054,0.0,0.0,27.93183533482598,442.2031335423506,69.25195150197578,156.15289545091716,206.81701983784706,219.08168234433742,227.83656984650094,231.83656984650094,512.0,118.14984366368277,117.58894478401834,55.94667466772,81.95,81.95,1.0,7.354762122534906,5.523561956057013,3.7012293364311475,4.623791039008927,,4.613316407044769,4.61348449138136,4.616092075911419,4.613322670714847,4.6162956208652215,4.613506600393568,4.6132943004785165,4.614103762785015,0.1682376971105067,0.21017231995495125,,0.20969620032021677,0.20970384051733457,0.20982236708688265,0.20969648503249305,0.20983161913023735,0.2097048454724349,0.2096951954762962,0.20973198921750066,2.0971223779201136,2.3196723001874733,,2.3174043528857675,2.317440786821746,2.318005836492319,2.3174057106217805,2.3180499301678705,2.3174455790691835,2.3173995609709563,2.317575008546324,249.2299999999999,385.6413015066718,116.30924305899454,,117.12777826113393,117.11341338185234,116.99381341042013,117.12756792106428,117.09667583636548,117.1165350482294,117.12916143840926,117.16826597510011,17.529150068485084,5.286783775408843,,5.323989920960633,5.323336971902379,5.317900609564552,5.323980360048377,5.322576174380249,5.3234788658286085,5.324052792654967,5.32583027159546,6.743365027081297,5.544709892732512,,5.551722821120795,5.551600170794448,5.550578416929981,5.5517210253020615,5.551457243172745,5.551626825510449,5.551734630182052,5.552068432712328,5.7322515117157975,0.0,32.80080113667089,1.8764225299662263,0.6789432161753592,5.65318857867221,-1.2699713985175758,6.77836442531709,0.0,305.22358141828886,84.67445742626876,-193.49430421273743,-18.02395203245924,-3.948863351280355,-16.12452535106145,228.69271353068686,522.5984178484397,14.434034699560279,10.665273833641624,14.124281563471342,1168.0,31.0,2.7901559239869527,1.8392939409146358,0.3535533905932738,0.25,0.30274943015462097,0.09025105849101828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12359693729953272,0.06572292788290107,0.32680740342941605,0.12599901256303264,16.328062645816686,13.542417816847687,10.25983881233692,7.788399551893128,10.322747161338755,7.03249815227613,7.0681107660842075,3.8157637852440023,5.185040331914501,2.544673665734675,4.727930330681372,1.9670439901724097,2.9731544999433615,0.9997179367710992,1.9488877913054998,0.5599463098858782,3.5765500567393267,1.6358910516508178,4.438085011883346,1.8578424794802815,7.131444690092756,2.422097133765709,77.08250243277661,40.38170401037914,31.786856586221337,28.2654748205618,26.704487601127624,25.3766350053302,112.0,126.0,50.70141099999997,29.392588999999997,0.20408163265306123,67.05,8.979166666666666,4.708333333333333,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,6.0,49.0,0.0,1.0,50.0,6.0,0.0,3.0,47.0,6.0,23.0,44.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,5.0,4.0,0.0,22.0,5.0,0.0,1.0,4.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,1.0,3.295836866004329,5.381192597299291,3.7954891891721947,4.154969184038536,4.608913172266925,5.104049738735681,5.183187059294405,5.344723739362192,5.535610340966666,5.675790153176097 +9915743,CCOc1cc2ncc(C#N)c(Nc3ccc(OCc4ccccn4)c(Cl)c3)c2cc1NC(=O)/C=C/CN(C)C,0,27.304347826086957,6.219830434782608,3.347826086956522,8.052245482197174,161.71588773170467,109.55322149275365,1.6014896556611735,6.324217391304347,4.034295761736568,7.744804710144928,235.07194158859616,26.694444444444443,6.405319444444444,3.9166666666666665,7.807098765432098,146.89008211437368,102.32221294444446,1.8560616801388887,6.560423611111111,3.332847508001829,7.808432194444442,273.43766010224397,23.008403361344538,6.356638655462184,3.6554621848739495,6.34827264239029,155.4445903957822,86.94749865546214,1.6042914340519996,6.474135294117645,3.1306324999135455,7.830273042016807,232.3552312230858,21.564625850340136,6.334054421768707,3.2857142857142856,5.633408919123204,156.6386483662754,80.20174387074832,1.5093544771771226,6.451293197278912,3.15639259819154,7.844126816326529,213.83855056693224,18.932515337423315,6.131133742331289,3.03680981595092,4.950920245398773,159.8495377388047,70.01040495092028,1.3906241555899876,6.235704294478527,2.9422479739453156,7.683378294478531,191.97070795562223,20.05732484076433,6.201698726114648,3.140127388535032,5.466383581033262,157.3140084739678,73.99783134394904,1.4878061073345672,6.322758598726115,3.1877670310083617,7.7433423694267525,206.48278233235263,21.006211180124225,6.209702484472048,3.1366459627329193,5.064872325741891,157.56686649492943,78.70331994409938,1.4902314142010933,6.326385093167702,3.216132454055161,7.733032223602485,209.44556701667582,21.257668711656443,6.353539263803681,2.96319018404908,4.78254942058623,159.38107931160843,78.63690881595093,1.4801558547723064,6.470204294478526,3.476286954984978,7.891562699386504,205.65394341456263,20.031645569620252,6.211994303797467,2.829113924050633,4.452883263009845,159.90301482916738,73.68248020886077,1.3965601618504813,6.338415189873418,3.152126634369953,7.797444215189873,190.92306619784867,9.395505145977733,0.11033610586011339,0.020182615808698658,0.5700483091787439,3.948522071045349,1.5686135186587504,44.376616451585804,0.23621604817072886,0.10895160680529292,1.0759450011094243,0.0703791270741441,49.78063671194867,0.28605685080165205,-0.002141842575089135,-0.008098537441596101,0.21296296296296285,1.2536732133426334,-0.3049737544159026,1.3455746643562145,-0.017492335237012484,-0.0001196623608484048,-0.023673732786702404,-0.0037125427343695496,-0.8932996558121198,0.5543182616461831,-0.008464384997855358,-0.0017239468787820815,0.018674136321195096,0.14348188029363915,0.02018290407210786,2.7339616336656825,0.02379760994856697,-0.006056210385855546,0.03495126889138926,-0.0067016784077210175,5.115354042972956,-0.2832109529382014,-0.006786209379782048,0.0005042146086965375,0.043083900226757364,0.10288235187966126,-0.14842500605081296,-1.387866524936886,-0.014062294072732002,-0.005224869153710513,-0.04814144127582817,-0.0020755039843284727,-3.0512690485294955,0.9352497219870549,0.006580858663759612,-0.001449327651581479,0.04771642808452624,0.453082966018031,0.10119463851988182,4.4484230893584495,0.017231579287080353,0.007777120855416517,0.034891281849575594,0.0025584419664889677,4.528595301368107,-0.309471729564923,0.01342498525038231,0.00369592765876958,0.015569709837225745,0.46491743079687153,0.14073315259746458,-1.4359214388469521,0.004186289164654051,0.00913116804931795,0.04501735047388844,0.006214405003765993,1.1715441398461934,0.9332373150898667,-0.002499513907642408,-0.001538465032690111,-0.04830917874396139,-0.24443051587208978,-0.07735420791657628,4.446584697932605,0.013636372860565333,0.0007130974885228645,-0.009802410011628784,-0.002087052810033914,3.5344291644472414,-0.763781130684769,-0.020007218156725712,-0.0014768336370706585,-0.046353101567825496,-0.7385269777035871,0.02743131468417396,-3.531899052190414,0.006439030297001479,-0.02002776044626378,-0.20703692181629854,-0.011643982057695281,-2.8655227738407665,-0.25360457727474556,0.00096414180086626,0.0009236686342681458,-0.057665260196905745,-0.12341126342368859,-0.06348585609703189,-1.2333140883497022,-0.017004126607913207,0.000891486205163851,-0.015913252293554656,-3.0433348222255425e-05,-2.4417199574756205,,,0.47785714285714287,1.4,0.75,0.0625,0.65,0.1,0.8488442325520493,0.013561746659246055,0.022161746659246053,1.2434226382673914,0.28283160837065424,0.20146198402942708,2.092266870819441,0.48429359240008135,2.035142881039066,1.546200348232837,0.29917498397223125,0.1451164646581925,0.04465108417580539,0.48894253280622924,8.060854586492766,1884.0,429.1683,231.0,555.604938271605,11158.396253487623,7559.172283000002,110.50278624062098,436.3709999999999,278.3664075598232,534.391525,16219.963969613134,1922.0,461.183,282.0,562.1111111111111,10576.085912234905,7367.199332000001,133.63644097,472.3505,239.9650205761317,562.2071179999998,19687.511527361567,2738.0,756.4399999999999,435.0,755.4444444444445,18497.906257098082,10346.752339999995,190.91068065218795,770.4220999999998,372.54526748971193,931.802492,27650.27251554721,3170.0,931.106,483.0,828.1111111111111,23025.881309842483,11789.656349000003,221.87510814503702,948.3401,463.9897119341564,1153.0866419999998,31434.26693333904,3086.0,999.3748000000002,495.0,807.0,26055.474651425167,11411.696007000004,226.671737361168,1016.4197999999999,479.58641975308643,1252.3906620000005,31291.225396766422,3149.0,973.6666999999998,493.0,858.2222222222222,24698.299330412945,11617.659521,233.58555885152705,992.6731000000001,500.4794238683128,1215.704752,32417.79682617936,3382.0,999.7620999999998,505.0,815.4444444444445,25368.265505683637,12671.234510999999,239.927257686376,1018.548,517.7973251028809,1245.018188,33720.736289684806,3465.0,1035.6269,483.0,779.5555555555555,25979.115927792176,12817.816137000002,241.26540432788593,1054.6432999999997,566.6347736625514,1286.32472,33521.59277657371,3165.0,981.4950999999998,447.0,703.5555555555555,25264.676343008447,11641.831873000001,220.65650557237603,1001.4696,498.0360082304526,1231.9961859999999,30165.84445926009,648.2898550724635,7.613191304347824,1.3926004908002074,39.33333333333333,272.4480229021291,108.23433278745378,3061.9865351594203,16.29890732378029,7.517660869565212,74.24020507655027,4.856159768115942,3434.863933124458,20.596093257718948,-0.1542126654064177,-0.5830946957949192,15.333333333333325,90.2644713606696,-21.958110317944985,96.88137583364744,-1.2594481370648989,-0.008615689981085145,-1.704508760642573,-0.2673030768746076,-64.31757521847263,65.9638731358958,-1.0072618147447876,-0.2051496785750677,2.2222222222222165,17.074343754943058,2.4017655845808354,325.3414344062162,2.831915583879469,-0.7206890359168099,4.159200998075322,-0.7974997305188011,608.7271311137818,-41.63201008191561,-0.9975727788279611,0.07411954747839102,6.333333333333332,15.123705726310204,-21.818475889469507,-204.01637916572224,-2.0671572286916042,-0.7680557655954454,-7.076791867546741,-0.30509908569628547,-448.5365501338359,152.44570468388994,1.0726799621928167,-0.23624040720778106,7.777777777777777,73.85252346093905,16.494726078740737,725.0929635654272,2.8087474237940975,1.2676706994328923,5.687278941480822,0.4170260405377017,738.1610341230014,-48.58706154169292,2.1077226843100227,0.5802606424268241,2.444444444444442,72.99203663510883,22.09510495780194,-225.43966589897147,0.6572473988506861,1.433593383742918,7.067724024400485,0.9756615855912608,183.93242995585237,150.25120772946855,-0.40242173913042767,-0.24769287026310785,-7.777777777777783,-39.35331305540645,-12.45402747456878,715.9001363671493,2.1954560305510187,0.11480869565218119,-1.5781880118722342,-0.33601550241546013,569.0430954760059,-124.49632430161736,-3.2611765595462914,-0.24072388284251733,-7.555555555555555,-120.3798973656847,4.4713042935203555,-575.6995455070374,1.0495619384112411,-3.2645249527409965,-33.74701825605666,-1.897969075404331,-467.08021213604496,-40.0695232094098,0.15233440453686908,0.14593964421436703,-9.111111111111107,-19.498979620942798,-10.03076526333104,-194.86362595925297,-2.686652004050287,0.14085482041588845,-2.5142938623816358,-0.004808469019116357,-385.79175328114803,0.7121138104094888,0.5799254061563565,0.4505056673489129,0.301524282642176,0.29332517915051726,0.16203829391746766,0.18398838944896628,0.08088571112064474,0.11728014193653157,0.042366090839764885,0.07322839443091479,0.021360249512047607,0.048085106617252495,0.011248598120574108,0.030150062942791565,0.0057408102029813095,17.00110460799457,5.670685496316382,3.5440836905869073,2.1668982146943816,0.43367735559489107,-0.5223708676720598,3.267573115623713,0.911317540185614,6.022163786939072,0.773991646294803,14.563757667364063,10.935237913403583,35.450518096305224,11.684753645880589,2.2080198576624332,0.7518333549600151,3.4893268122231214,2.215720945721204,7.0082758277081645,1.299948043943436,3.7022455944030916,2.4110294729048714,22.45587370982576,14.70238462916063,0.25448661388093785,0.6176425018410662,0.8158441377796422,0.8845167849913479,0.8845167849913479,0.8845167849913479,1.332929661715428,1567.7562393853873,1.0,3.0,4.0,0.0,18.0,0.0,2.0,0.0,0.0,4.468881583093414,2.1290887167815358,0.8520867756445103,0.40963278994913654,0.40963278994913654,0.40963278994913654,234.32223034865848,2959.988004939146,79.43808831416848,42.898376883176034,90.75513360259357,,21.0,1326.0,0.0,10.056428738810308,12.514061693864424,63.20183059856336,5.693927994848461,12.272863678446956,42.60469902075501,44.118092101280304,26.67075556269935,21.074665797832616,19.114285714285714,56.0,30.0,2.5,26.0,0.0,0.02214285714285715,4.0,0.1695870110057756,0.0696489636401707,-0.09993804736560491,0.025459183673469554,0.1414711168164312,0.0,0.6099378881987565,0.834642857142857,0.4403508771929809,0.5402889245585858,0.8091836734693875,33.95376930208197,0.5424698663698422,0.8864698663698422,49.73690553069566,11.31326433482617,8.058479361177083,83.69067483277763,19.371743696003254,0.5725288831835688,0.15421026407573493,0.0,0.3086696562032885,0.2,0.3668862035772696,-1.2338458506312724,-0.04925708580121017,-0.01788182392219236,-0.05875456431577488,0.6331137964227305,2.129174722507867,0.04099730875904239,0.030857604674027067,0.04435780671891391,-8.639930492558948,0.6555709559152287,0.8033406578944526,1.4297017034082677,0.7203389830508475,0.5137071772819375,1.3467617737501818,0.6605967426870039,1.0277986348860404,0.74954055050272,0.595030653156203,0.8194914628532063,0.928374037808862,0.7567161891135784,1.1166783250843297,1.323060937254882,1.1767554479418887,0.9798157122667606,1.072927343795176,0.7557933210066272,0.8402163373363759,1.0468415823145734,0.6172715404961098,1.1191539292832686,0.8184130198669782,0.9557956957262028,1.1610118659607294,1.2264364542887827,0.9820131442407471,0.9798465380404527,1.1398861707243033,0.9555984272831567,1.0222298531502605,1.1114355998943302,0.9034409252997005,1.1564550196656485,0.9940099644627918,0.8478181442142959,0.9406733778354173,1.1822674117964382,0.9545596339814912,0.876944927482793,0.9259216609016245,0.8479586739719082,0.9063161403300161,0.9192867315349177,0.864867914624233,0.9565597187689115,0.8911583488951809,1.0602711918853176,0.8568475016934306,0.8308882283954123,1.0681204793263521,0.863375019822996,0.9132709606081097,1.0574931668186027,0.9883388391535678,0.9007600947539269,1.0735967907004944,0.9382384988381689,0.9523238445957087,0.8160026059963469,1.0000721206523033,1.1445329188449718,1.19191493841457,1.0654274366112197,1.0814666114072313,0.8159509529000445,0.9123303179991398,0.9554913093259323,1.09628680936823,1.0001848728830178,0.8889973708542753,1.1583094190404042,1.3504596908774058,1.1834688234696495,1.08183425184569,1.2204770132927512,1.0239438061833452,1.150930830423446,0.9465049822449785,1.3324629937124042,1.8320968300663862,1.3944782985734052,0.98658442085972,1.2414356329736482,1.0713207240169107,1.0390532519366547,1.143424157906029,1.047588817380529,1.0153395370127787,1.2346145804520572,1.0979853136434548,1.0965532142114547,1.2560536843083465,1.1826524772629174,1.0268467476849052,8.0,0.35496377920620353,4.000000000000002,2.125,2.533333333333334,1.5277777777777777,1.093061224489796,0.8871527777777777,0.6394557823129251,0.338125,8806.257012249935,9686.617945546031,3892.5269147620697,3596.41010453519,15.675170147948684,0.3948431115292755,9.485937192981812,0.6524640453603243,0.0,0.20689655172413793,1.6396428736847553,3.9794357399966334,5.256437681133659,5.698891666829033,5.698891666829033,5.698891666829033,0.18604651162790697,0.007716603895787032,0.06896551724137934,0.034274193548387094,0.04222222222222224,0.024250440917107582,0.016314346634176056,0.014081790123456787,0.011418853255587948,0.0067625,0.41205297946601105,32.90427257977285,16.74078478002378,9.756756756756756,237.57038664186246,0.0,4.5991761105255895,315.34908121428435,,235.828620987964,231.61914596844395,232.34060342748768,235.86403782339724,343.90820676149616,234.67224214524023,236.8874156538955,301.06701058223416,0.03044613848400845,-0.019411982672332222,-0.4012630235029124,0.3735875706214688,0.3175044208403603,-0.19442249527255873,0.030321704806499063,-0.07405227279210777,-0.0010983074445359308,-0.022002735048996032,-0.052750622076605226,-0.017944721377934975,0.058998239374440646,-0.07671455261060868,-0.08541741541941578,0.03275886625836767,0.03633812290066626,0.012866715626271879,0.061608158806978716,0.10074510234531937,-0.05558624203384701,0.03248425231340863,-0.09522252813196773,0.10275790710698435,-0.03014323855268661,-0.061504883889828034,0.02498261937281798,0.07557938429609132,0.026055914093554434,-0.09462178177434324,-0.03127472610380349,-0.059531493231011375,-0.047955870564147435,-0.04474340345109533,-0.029490334288203645,-0.06129429533385439,0.09954224998614795,0.0596437459203334,-0.07181069417953356,0.08370593740251638,0.11474748218846345,0.06451215504403451,0.10024250258492803,0.0729483852622323,0.07138142413369804,0.03242849942478345,0.03635228330970432,0.09097102006895633,-0.032938274712925854,0.1216735459868668,0.18312431321100825,0.027312965561912962,0.11774467064680413,0.08971818164476808,-0.03235761429476085,0.017722289391736607,0.08380939315228486,0.04183982492364417,0.08829897815042725,0.02353413329414069,0.09932806172634483,-0.022653635345907062,-0.07622723671066643,-0.08474576271186447,-0.06190430532591101,-0.04931374554435711,0.10020107555481973,0.05772839299516784,0.006545084642920767,-0.009110512155845662,-0.029654428760322833,0.07100007950679517,-0.08129218374296224,-0.1813297469650716,-0.07317354950759886,-0.08131433919101592,-0.18703883742203986,0.017487618433652936,-0.07958919211525874,0.02725907213699371,-0.1838225339994786,-0.19242333167849604,-0.1654465257210195,-0.05756299965430064,-0.026992117329988914,0.008738225745329646,0.0457655560123206,-0.10115854966745332,-0.03125505219501436,-0.040472592733559846,-0.027791981159609784,-0.07198548421918907,0.008182405301805444,-0.014790023911209444,-0.00043242008657188983,-0.04904959274836963,17.469498125813754,32.85473546715887,13.320449140527144,17.381894642727516,40.03593353641136,48.13779193226782,48.58378554984874,48.58378554984874,48.58378554984874,81.40571524156265,61.84801392931348,11.96699935888925,5.8046585863277,1.7860433670322156,19.55770131224917,13997.635569182707,8701.467306756183,7030.301256436134,240.0,58.0,74.0,96.0,127.0,144.0,168.0,202.0,231.0,556.1989664680009,43.0,5.313205979041787,6.1463292576688975,7.01301578963963,7.8713112033234065,8.74878098951311,9.620527646419676,10.505204516490187,11.385671471043278,12.27553807201209,0.7053140096618357,0.9886956521739126,1.123853789515995,0.6721507700067211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6996701987329689,0.9776641091219096,1.008840263044006,0.6614425761879902,10.0,2.0,0.0,0.0,0.0,2.0,8.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,3.0,2.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,25.007212846463236,24.175126943873003,0.0,5.907179729351506,0.0,14.76249422596624,0.0,5.261891554738487,0.0,23.743327065528007,57.41728357581466,42.15444121358257,39.77836803178308,322.9176682534225,-1085.9787617663796,-43.353996789185906,-15.73882263429536,-51.71327436982761,557.239898602081,1874.0092431727662,36.08409152498257,27.159554248880674,39.041859232765965,0.47619047619047616,0.8967775400907374,0.14618321424535954,16.91878697527101,0.07365081037775267,123.80899020579828,0.10322245990926261,11.0,0.2558139534883721,0.2684188113326398,0.6514561361182656,0.860508575896915,0.9329407956295243,0.9329407956295243,0.9329407956295243,5.932480000000005,,2.254201680672269,2.0877571456524278,2.00256098297623,2.263982575467063,-6.122028747979924,1.9363060285391138,1.7968465319911955,-3.02964257389704,157.2543999999997,14.268263091671919,5.261891554738487,14.867866772744895,0.0,13.530619164203543,37.880559543792536,89.35667670487358,0.0,17.568244979360085,4.465908118654584,0.0,5.765191102784844,0.0,7.257707677160043,0.0,8.84779106484485,0.0,10.494518947603137,48.666666666666664,17.56756600078514,8.69589902402464,0.0,0.0,0.0,1.2168384402830517,4.115649543877876,0.0,68.21999999999997,0.0,12.612779341218683,0.0,0.0,0.0,3.245097353978148,0.0,-0.2970995141520951,77.54591147660366,20.10730311561276,17.062158824050687,11.49902366656781,48.02202883787626,11.40141914858474,11.33111286753076,18.18111668623608,73.0766639045868,5.022633313741326,10.902924932081056,0.0,46.37840313046375,48.27724371257485,51.042707169215525,630.6981624285688,,471.5445318918944,463.13390407960526,464.59155710290827,471.6148765180211,689.3469207099874,469.2476689890536,473.68498898119134,602.8914318079426,51.042707169215525,630.6981624285687,,469.5090034505264,461.3064687184707,462.8893802673786,469.5696919674195,693.9384422709722,467.5343879698163,472.0811955882331,605.1636637383656,4.957050443547825,460.00252321526307,,343.69400676814377,337.16181680069917,337.8304597614697,343.75430392100856,500.6903154952251,341.6542049206384,344.9205652971262,438.42381700375756,1.2760676792303882,15.76745406071422,,11.78861329729736,11.578347601990131,11.614788927572707,11.790371912950528,17.233673017749688,11.73119172472634,11.842124724529784,15.072285795198564,2.478525221773913,315.34908121428435,,235.828620987964,231.61914596844395,232.34060342748768,235.86403782339724,343.90820676149616,234.67224214524023,236.8874156538955,301.06701058223416,67.45882352941176,0.0,5.69994685045085,6.516716135448838,0.0,0.0,0.0,69.60997815003643,1.3094221328373208,6.182585044690223,11.605104963930874,0.0,0.0,1.9482909627163272,0.0,9.838764764168747,2.186883400185827,45.63953775697132,789.3055376969271,113.13535828424811,274.5810660597677,362.6941999982225,393.22352501120326,393.22352501120326,393.22352501120326,1423.0,161.87958492515205,90.85202915857633,76.83111691104746,112.39999999999999,112.39999999999999,0.9090909090909091,9.546762523637808,6.426264754702098,4.5208233679747485,6.198877209279754,,6.187248309084691,6.189089941001017,6.187317689732752,6.187190226700404,6.170596349759165,6.188563719574235,6.1883711761689,6.180146942283588,0.11302058419936871,0.15497193023199385,,0.15468120772711727,0.15472724852502542,0.1546829422433188,0.1546797556675101,0.15426490874397913,0.15471409298935587,0.1547092794042225,0.1545036735570897,2.89498849943108,3.2106625414937477,,3.2087848108677086,3.2090824161678717,3.208796024295003,3.208775423389785,3.2060898474879957,3.2089973885137577,3.208966275252361,3.2076364093753615,415.35000000000133,1801.0600164585883,296.144252422812,,297.1922208725178,297.3140802462931,297.7132062744476,297.18978377335606,300.45110824480753,297.350455920601,297.3627836587858,298.9156064392839,45.02650041146471,7.403606310570299,,7.429805521812945,7.4328520061573276,7.44283015686119,7.4297445943339016,7.511277706120188,7.433761398015025,7.434069591469646,7.472890160982098,8.882425029704295,7.077141035998994,,7.080673498898581,7.0810834504003655,7.082424989173648,7.08066529845125,7.091579400509459,7.081205790550622,7.0812472483066164,7.086455641958358,11.605104963930874,23.256969327959652,17.045027003724144,3.325840110473999,0.68587116466966,16.55624304460391,6.4433037103452016,3.1699974407761733,3.8393715425119983,502.42560812706375,284.218429184585,-955.8324246130492,-38.15834832743117,-13.852643834971728,-45.515829743478534,490.45891330841505,1649.4234157356655,31.75968619881995,23.904687184574865,34.362987827826366,6020.0,62.0,2.446372836227297,1.1748443786242302,0.0,0.0,0.3928227825746011,0.11030447456336712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28121456547105406,0.08587222490876298,0.5434961956740323,0.14012129000652915,28.484552416379554,23.197016246254258,19.371743696003254,12.965544153613568,17.01286039073,9.398221047213124,13.615140819223505,5.985542622927711,11.25889362590703,4.067144720617429,9.300006092726179,2.712751688030046,6.92425535288436,1.6197981293626715,5.065210574388983,0.96445611410086,5.1584516875128745,1.8416705367253288,7.948211798332933,2.2942827203390777,12.284814457624535,2.822177995685021,128.3769404506082,57.938176137512244,31.325986002863065,28.55400216685209,28.55400216685209,28.55400216685209,202.0,233.0,80.622997,39.64300300000002,0.36231884057971014,289.1,12.833333333333332,9.055555555555555,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,23.0,69.0,0.0,1.0,72.0,23.0,2.0,13.0,58.0,26.0,43.0,46.0,1.0,0.0,0.0,30.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,8.0,2.0,2.0,40.0,10.0,0.0,6.0,3.0,0.0,4.0,11.0,0.0,0.0,1.0,2.0,4.0,4.085976312551584,8.414819962842218,4.658710952916121,5.241747015059643,5.830415125589567,6.443733721413949,6.803227749628203,7.250768576146731,7.730641514084053,8.173176630310794 +10113978,Cc1ccc(Nc2nccc(N(C)c3ccc4c(C)n(C)nc4c3)n2)cc1S(N)(=O)=O,0,27.88888888888889,6.277738888888887,3.574074074074074,8.193415637860083,164.30926468375606,110.48273996296301,1.6103593483616108,6.3497648148148125,4.654722666768277,7.7728563148148115,228.54701966471234,31.05263157894737,6.468556140350878,4.105263157894737,7.467836257309941,149.7441208224895,119.5093845263158,1.8916000543859648,6.618328070175439,3.0211717565518734,7.894782736842104,271.1116590658846,25.229166666666668,6.457797916666667,3.875,7.288194444444444,158.1457690549312,96.13264446875,1.6383643374274683,6.556017708333333,3.9982960390946505,7.897999749999999,235.2788278407147,22.95614035087719,6.423043859649123,3.5350877192982457,5.327485380116959,156.67121175764723,85.1320994473684,1.6215246573556756,6.529236842105264,3.3483863980940005,7.8797287894736865,227.48868008177848,18.896296296296295,6.237425925925926,2.9851851851851854,4.1382716049382715,158.11242164529753,67.43343182222222,1.4361255741921706,6.335992592592592,3.178840877914952,7.746162992592592,192.1884608237531,15.116438356164384,6.089738356164382,2.5547945205479454,3.5319634703196354,165.41924987802446,53.23548708904109,1.2065714557398424,6.15228698630137,3.05988922712667,7.657045575342464,158.79167773239365,16.172131147540984,6.0944057377049194,2.7704918032786887,3.751366120218579,166.94553498900098,58.068252770491796,1.2235689051198444,6.157672131147541,2.751821493624772,7.650701344262296,163.81310254284816,20.051020408163264,6.32641530612245,3.163265306122449,5.210884353741497,165.8173904430478,74.34133424489795,1.377457562727368,6.3904867346938765,3.410651297556059,7.810388448979591,190.19673347646312,19.606382978723403,6.249825531914894,3.0106382978723403,4.343971631205674,159.20396125126197,70.97963757446807,1.4646043128627024,6.3459563829787236,3.146670606776989,7.743156808510638,198.48305236464108,9.747599451303152,0.11723103566529487,0.015302160654813839,0.7342249657064472,4.143880506020424,1.715927582603996,44.83613485871059,0.2660376653584831,0.10994585048010964,1.505801825837676,0.06657749965706447,49.06607960490232,2.0431737780665653,-0.00406907984983028,-0.009303098408835246,0.29306548263663285,1.22028092636713,-0.2895828957735034,8.8558032205617,-0.023354922395546814,0.0015260793444518074,-0.4546663560538828,0.005389514962818452,0.5058335801875015,1.3990054869684492,0.03748053840877918,0.0045149189740434645,-0.008337620027434803,0.8218259411675053,0.24585192009497203,6.8291115429098115,0.03664728920903688,0.034368385631001454,0.6474900906215365,0.02017327194787369,9.804202852141492,-1.3457151108223238,-0.03020405385892708,-0.00420075572453706,-0.18841599884484878,-1.137779863467539,-0.15538292341266152,-6.239170908093274,-0.008420161431848837,-0.027964628907659973,-0.1799147781939254,-0.017213254692802073,-4.4611491342081635,-2.4946502057613165,-0.010964423868312728,0.0013959512348759025,-0.11680384087791493,-0.6068891937204693,-0.3728624362613869,-11.724260755829903,-0.08758374490245094,-0.012626536351165925,-0.06854269218031726,-0.0057042155692730015,-16.14146672659004,-0.20371309919762456,-0.0008166013679839302,0.0012446127928628687,0.0736136948719394,0.042093900654135034,-0.06540721121140357,-0.856757805184436,0.0021050617393867854,-0.001212212732773391,-0.10903443469143202,-0.0014247362121126413,0.09506931843335951,0.8328498504576225,-0.013673415750297966,-0.0034416112015417818,0.029891609885538236,-0.13851721923637192,-0.022398165169435134,3.827122266668914,0.023725284538636256,-0.00980904112977583,-0.15950705994583053,-0.0068715770705434975,5.1699197500011085,1.1628313876991125,0.02253838988270208,0.003043036417975451,-0.0669914056157442,0.11588265850464571,0.33658588197129524,5.406106008258449,0.0432411225205357,0.019671042943926586,0.37323097155197094,0.013963520751098732,6.2895492009457605,-1.4465750226191518,-0.014374357178297251,-0.002984662227703386,-0.02973323993812567,-0.4265615322002678,-0.09262269629485656,-6.96070300016052,-0.04573996856773612,-0.014587615649534428,-0.06887306414030389,-0.0059293497358667005,-10.02213526744693,,,0.47741935483870973,1.435483870967742,0.7741935483870968,0.03225806451612903,0.6612903225806451,0.11290322580645161,0.803773279750415,0.025295635599934564,0.03639240979348295,1.1537939926665557,0.27830317070836347,0.19363388925212444,1.9575672724169708,0.4719370599604879,2.0328485015198257,1.397100609868912,0.4580052999376373,0.10903258617921889,0.0,0.6357478916509139,8.095618406962975,1506.0,338.9978999999999,193.0,442.44444444444446,8872.700292922827,5966.067958000002,86.95940481152698,342.88729999999987,251.35502400548694,419.7342409999998,12341.539061894466,1770.0,368.70770000000005,234.0,425.66666666666663,8535.414886881901,6812.034918,107.82120309999999,377.2447,172.20679012345678,450.00261599999993,15453.364566755423,2422.0,619.9486,372.0,699.6666666666666,15181.993829273397,9228.733869,157.28297639303696,629.3777,383.83641975308643,758.2079759999999,22586.767472708612,2617.0,732.2270000000001,403.0,607.3333333333333,17860.518140371783,9705.059336999999,184.853810938547,744.3330000000001,381.71604938271605,898.2890820000002,25933.709529322747,2551.0,842.0525,403.0,558.6666666666666,21345.176922115166,9103.513296,193.87695251594303,855.3589999999999,429.14351851851853,1045.732004,25945.442211206668,2207.0,889.1017999999998,373.0,515.6666666666667,24151.21048219157,7772.381114999998,176.15943253801697,898.2339,446.7438271604938,1117.9286539999998,23183.584948929474,1973.0,743.5175000000002,338.0,457.66666666666663,20367.35526865812,7084.326837999999,149.27540642462102,751.236,335.7222222222222,933.385564,19985.198510227474,1965.0,619.9887000000001,310.0,510.66666666666663,16250.104263418683,7285.450755999999,134.99084114728205,626.2676999999999,334.24382716049377,765.418068,18639.279880693386,1843.0,587.4836,283.0,408.33333333333337,14965.172357618625,6672.085931999998,137.67280540909402,596.5199,295.78703703703695,727.85674,18657.406922276263,526.3703703703702,6.330475925925923,0.8263166753599474,39.64814814814815,223.7695473251029,92.66008946061578,2421.1512823703715,14.366033929358089,5.937075925925921,81.3132985952345,3.595184981481481,2649.5682986647253,116.46090534979423,-0.23193755144032593,-0.530276609303609,16.70473251028807,69.5560128029264,-16.506225059089694,504.7807835720169,-1.3312305765461685,0.08698652263375302,-25.91598229507132,0.3072023528806518,28.832514070687584,134.3045267489711,3.598131687242801,0.43343222150817257,-0.8004115226337412,78.89529035208051,23.601784329117315,655.5947081193419,3.5181397640675405,3.29936502057614,62.1590486996675,1.9366341069958741,941.2034738055831,-153.4115226337449,-3.443262139917687,-0.4788861525972249,-21.47942386831276,-129.70690443529944,-17.713653269043412,-711.2654835226332,-0.9598984032307675,-3.1879676954732368,-20.510284714107495,-1.9623110349794364,-508.57100129973065,-336.7777777777777,-1.4801972222222184,0.18845341670824683,-15.768518518518515,-81.93004115226336,-50.33642889528723,-1582.775202037037,-11.823805561830877,-1.7045824074073999,-9.253263444342831,-0.7700691018518552,-2179.098008089655,-29.742112482853187,-0.11922379972565382,0.1817134677579788,10.747599451303152,6.145709495503715,-9.549452836864921,-125.08663955692766,0.30733901395047064,-0.1769830589849151,-15.919027464949075,-0.20801148696844562,13.880120491270489,101.60768175582994,-1.6681567215363517,-0.41987656658809736,3.6467764060356647,-16.899100746837373,-2.732576150671086,466.9089165336075,2.894484713713623,-1.1967030178326512,-19.459861313391325,-0.8383324026063067,630.7302095001353,113.95747599451303,2.2087622085048038,0.2982175689615942,-6.565157750342931,11.35650053345528,32.985416433186934,529.798388809328,4.237630007012498,1.9277622085048054,36.57663521209315,1.3684250336076758,616.3758216926846,-135.97805212620028,-1.3511895747599416,-0.2805582494041183,-2.794924554183813,-40.096784026825176,-8.706533451716517,-654.3060820150889,-4.299557045367195,-1.3712358710562362,-6.474068029188565,-0.5573588751714699,-942.0807151400115,0.7205204624298212,0.5959181242750239,0.4302955546698567,0.3260420321538997,0.28599175767929647,0.17427574063500906,0.17762420790567562,0.0952994862156613,0.11281647167672461,0.04915610327850214,0.07295040531672646,0.024509227088191473,0.04589923543284341,0.012855942768211772,0.03001440225710187,0.00681318128269407,16.013355965149263,5.678943181900026,3.581058135683818,2.1768498200850535,0.4517712727333733,-0.44145704469941716,4.043011905564247,0.9683254395700174,6.01756204997882,0.6420910917065079,14.692718890222633,10.319275949215957,32.06666054715207,11.691867191359593,2.9556590292700133,0.7609429466911852,3.5371943164719326,2.226228051923601,7.014215368650696,0.3001904133759874,3.768599698876177,2.4218524161140005,24.442069333704254,14.702137066117047,0.2814277558674592,0.6346262039912297,0.7763676762839885,0.8723218801436576,0.8723218801436576,0.8723218801436576,1.294386941249742,1396.378075971583,0.0,2.0,2.0,0.0,12.0,0.0,2.0,0.0,0.0,4.035779172630898,1.87825781417075,1.0124265641306875,0.4262879631232206,0.4262879631232206,0.4262879631232206,202.8100319428625,1754.389525515347,61.99672916247558,32.48869491695088,65.2438142677799,,15.0,797.0,10.023291153407584,8.417796984328938,4.895483475517775,23.01703982520208,22.284239201613083,6.06636706846161,31.31968197668853,48.79989503642549,20.383427454201787,5.138973737607942,14.800000000000002,44.5,24.0,1.0,20.5,0.0,0.02258064516129024,3.5,0.17228607918263128,0.06481481481481532,-0.10747126436781596,0.048387096774193394,0.15126235741444838,0.0,0.6148148148148146,0.8483870967741932,0.4425287356321833,0.5499999999999993,0.7999999999999998,24.916971672262864,0.7841647035979715,1.1281647035979714,35.767613772663225,8.627398291959267,6.002650566815857,60.68458544492609,14.630048858775124,0.5627376425855516,0.2072072072072072,0.0563063063063063,0.35810810810810806,0.19047619047619047,0.3581636003957267,-0.8788924496847135,-0.0464313303253062,-0.01627578610527247,-0.046257497351827034,0.6418363996042731,1.5749930057709656,0.04028423070891461,0.029166537143906768,0.04499980016488473,-5.555293833879432,0.8205315745033852,0.7797307381663714,1.7259720034527801,0.8090906856117407,0.5431871065408113,1.405076406122389,0.810297621992052,1.2344902752039988,0.7156989105318107,0.8962621185325135,0.6520447838177982,0.9446056407818889,0.7876860223754577,0.642479011729561,0.872107886265395,1.2323242643624475,0.8258253296491099,0.9772147763951258,0.7751964036867192,0.845831859122579,0.6301406205698593,0.41066611616456655,0.6542101193536174,0.7359932670548082,1.0086620646747748,1.2184376028809425,1.4208960437110185,1.371936379950343,1.2737079729447205,1.2091408816863671,1.0100704323633323,0.9818999409684753,1.1923199143768952,0.9994239663769998,1.227879170925687,1.0137450313472454,1.2243104418801019,0.9838232278481196,0.9278305975313379,1.1387202241943017,1.0678755333235253,1.2730181786553816,1.2249762765508794,1.3436995734910295,1.001005732651159,0.870565396695296,0.9680189834563138,1.2965184703798234,0.9299991035937221,1.0383131561146823,0.871671289456026,0.7278924839884063,0.9725483870805209,0.9523989770570493,0.9393097673575808,0.8902049324510636,1.0460799629095143,1.1431788404978112,1.052779211576006,0.9795106523180648,0.7902479663918279,1.093477726987332,1.3520942991817617,0.8217777811808485,1.0304520497229974,0.9593391429650805,0.8046575387034396,0.7668453855966094,1.073089309351292,0.8751186669768296,1.0256053202422089,0.8603019642340615,0.7407874633106833,0.815691323391142,1.183978774143745,1.098051644758791,1.0193715414663733,0.8455363451665544,0.7504061842965144,0.6860803258877689,0.8197129394845464,0.4247420591984399,0.7340109526085637,0.7951580256838257,1.0288544741932204,0.986659120356273,1.1579974663326162,0.9954584753594958,1.0465110546267282,1.120512739317726,1.0394092923495477,1.1133915901409468,0.9936078981497761,0.7278505352677256,0.9155195401677226,1.156696164841529,8.5,0.20977655341291707,4.444444444444446,3.513888888888889,1.661666666666667,1.1183333333333332,0.8392743764172337,0.5677437641723355,0.3872669438145628,0.3675077160493828,6618.404788101474,7267.374430187798,3381.130173967625,3140.076933802679,16.610095271164468,0.4188473831700215,9.653000332632482,0.7207183983008014,1.0,0.19047619047619047,1.7191083295325704,3.8766296879927182,4.742460938032781,5.328599539040248,5.328599539040248,5.328599539040248,0.25,0.008068328977419888,0.08714596949891071,0.06757478632478632,0.036123188405797105,0.027958333333333328,0.023313177122700927,0.014940625372956196,0.011390204229840082,0.012250257201646091,0.5387648704673906,24.134948096885815,9.700115340253749,5.3994490358126725,180.14391638303977,1.0,4.374669282315233,195.3418618338702,,134.21964378954036,137.4194570485628,134.72288777917387,134.2492177999325,199.32718569637674,139.34191558445764,140.6240128441151,183.97982740350164,0.20960789251485035,-0.034709919832559256,-0.6079597919989571,0.39914943828511035,0.2944778269050588,-0.16876172322729874,0.19751486715945657,-0.08778802942837544,0.01388028140932787,-0.30194302347917024,0.08095099681693403,0.010309231637429667,0.14352307908809456,0.31971515218708363,0.2950510765042279,-0.01135567491826244,0.19832278946594092,0.14327639615296636,0.15231267290166692,0.13775225834903873,0.31259374938592205,0.42999688239940764,0.3030043490936825,0.19981630754053417,-0.13805605344630936,-0.25764554315772115,-0.27452043010772875,-0.25661889426977064,-0.2745686951673725,-0.09055331063380954,-0.13915496792384976,-0.03165026057683506,-0.25434910717907505,-0.11948104664691783,-0.2585446251581422,-0.0909212468192066,-0.25592457078525194,-0.09352833749261706,0.09122575996722111,-0.15908453993460994,-0.1464543180815065,-0.21729497214302695,-0.2614913348970838,-0.3292155822538613,-0.11484322778921244,-0.04551906565937854,-0.08567782807487474,-0.328974045951234,-0.02089879669505606,-0.0069657438693572615,0.0813357551877049,0.10026040833562601,0.010158087472111959,-0.03811769906521652,-0.019108645468310002,0.007912645514123857,-0.011025543278622353,-0.07240955139018794,-0.02139966534416803,0.001937577226444252,0.08544153405342063,-0.11663648344229248,-0.22491014695098632,0.04071178628035007,-0.03342693377261424,-0.01305309466233122,0.08535798812116821,0.08918017118616145,-0.0892170198960841,-0.10592832151541384,-0.10321170224082396,0.10536647296118128,0.11929412913490758,0.19225616966356254,0.19886318583501184,-0.09124098027814574,0.02796476837019937,0.19615389680985915,0.12057475572536272,0.16253759580346908,0.17891573768384542,0.2478619464711719,0.20973333067513414,0.12818528098416396,-0.14840320735848045,-0.12261562901599991,-0.1950484180000067,-0.04049608951871763,-0.10293770092562737,-0.053978208191220706,-0.15524761494485118,-0.17193042385972665,-0.13268000189032583,-0.04573846502144456,-0.08905936339466518,-0.20425791805966076,6.044514241837999,17.622980916679907,7.783640805680159,18.480017683835534,38.47165853965443,45.052588355468856,45.643416065284384,45.643416065284384,45.643416065284384,63.01830354711459,43.31011890593627,14.198164298066756,3.3800101715557855,0.0,19.70818464117833,11954.604693065867,10848.408712382516,2180.133859691994,158.0,51.0,66.0,85.0,103.0,108.0,130.0,140.0,143.0,437.1633939760007,34.0,5.14166355650266,6.003887067106539,6.90875477931522,7.785305182539862,8.688285266258644,9.570180302058072,10.471383252907115,11.356330132747154,12.256314136966882,0.7098765432098765,0.9928148148148149,1.132404042586853,0.6745699158487439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6942807607008207,0.9795933188090049,1.010931725607618,0.6509892160632037,8.0,3.0,0.0,0.0,0.0,2.0,7.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,10.216698334856808,5.817862777835028,0.0,15.97163043439408,0.0,4.681802935145185,18.54074924288409,10.082660329248245,0.0,6.06636706846161,55.809128301847906,42.74711229564783,10.412184193134037,256.0667481679348,-628.3584689551273,-33.19577912544971,-11.636267943613468,-33.07149836605934,458.8767801107973,1126.03105656022,28.80095003702587,20.852426973337405,32.172315901720566,0.4666666666666667,0.8452137902718787,0.13416936261789814,5.421114887930484,0.09694306055279144,2.0772665891591764,0.15478620972812135,8.0,0.14705882352941177,0.2987214483143756,0.6736238869196581,0.8240753509516772,0.9259259259259258,0.9259259259259258,0.9259259259259258,3.1390400000000005,,2.1250000000000004,1.8465126745951221,1.8361149746903456,2.1213911100056384,-5.367723324916549,1.6573592411260714,1.5501866563820936,-2.875682478648585,121.38090000000004,8.417796984328938,0.0,19.74844178534064,12.186645720285131,18.742957874899023,17.264370317534,59.9187925373898,0.0,0.0,4.23410650459726,0.0,5.60947179518496,2.3978952727983707,7.164720378771857,4.844187086458591,8.797397374012059,7.002155954403621,10.470476094800963,38.33333333333333,14.416407435880654,13.346957153984363,0.0,0.0,0.0,2.0154238608192645,4.204203666866023,1.8596554535141643,53.61200000000001,0.0,23.559651439873647,0.0,0.0,-3.8219773298611472,0.0,0.0,0.0,61.14981829969006,15.355672072464749,23.140974608188646,0.0,35.21391075234676,17.070963136084774,13.847474399381248,11.257379486545457,53.556896526362124,0.0,10.902924932081056,0.0,36.42677545583217,37.49116107784432,39.28613405660331,390.6837236677405,,269.0856770535669,274.7197842471518,269.32731652772253,269.14563348128024,400.70686235729215,278.57690476626203,281.148013645883,368.8872943162447,39.28613405660331,390.6837236677404,,267.2348706019541,272.9924014225305,267.6096605836574,267.29797025643677,404.02209471766986,277.0264719277893,279.69783903184816,370.83533728565186,4.867113834186247,300.1482521894152,,209.19319679010025,210.95536958143123,205.95116467542047,209.2448056131609,316.9574784726249,214.3438034118376,216.81777011893433,289.44256894450973,1.2672946469872035,12.6027007634755,,8.680183130760222,8.86192852410167,8.687977952507179,8.682117209073557,12.926027817977166,8.986351766653614,9.06929076277042,11.8995901392337,2.464103366174373,195.3418618338702,,134.21964378954036,137.4194570485628,134.72288777917387,134.2492177999325,199.32718569637674,139.34191558445764,140.6240128441151,183.97982740350164,52.89803921568627,0.0,7.560054745513384,0.0,0.0,5.298304342396153,0.0,54.59031318281137,0.0,3.046213778338598,0.0,0.0,0.0,1.9317721193415638,0.0,0.0,0.0,35.153417667413,604.2801293668174,92.8318497947588,209.33800315160678,256.09289065377016,287.74437510817336,287.74437510817336,287.74437510817336,1049.0,143.18210367640216,110.66339891191491,81.52041046102768,127.41,119.03,0.875,9.158126835216526,6.087462841250339,4.297786664298586,5.4943804094120345,,5.501043707064861,5.490076047045549,5.486431575720689,5.501058242267143,5.507053362397404,5.491718233944277,5.4936552398343395,5.501993338623989,0.13863827949350277,0.17723807772296885,,0.17745302280854391,0.17709922732404998,0.17698166373292545,0.17745349168603686,0.17764688265798076,0.17715220109497667,0.17721468515594643,0.1774836560846448,2.5895022724391628,2.835127937650295,,2.8363399506473246,2.834344218837468,2.8336801694723994,2.8363425929064765,2.8374318116459443,2.8346432932635497,2.8349959450718405,2.8365125632737374,318.2600000000009,471.8277358790968,201.6698932018357,,200.29154158447793,202.21862513744813,202.71732319285687,200.28939982840737,199.7238273727779,202.01286182715725,201.74984702186723,200.59931384459156,15.220249544486993,6.5054804258656675,,6.46101747046703,6.523181456046713,6.539268490092157,6.460948381561528,6.442704108799287,6.516543929908298,6.5080595813505555,6.470945607890051,7.28801606410238,6.43803428007379,,6.431176124536706,6.440751526285668,6.443214623521624,6.431165431286733,6.428337660632947,6.439733479276973,6.438430660384947,6.4327115664975905,25.419306893387812,10.79515830455717,13.994250458882703,4.047340546796058,1.0061256115100365,12.77812542477374,1.6382820111069119,3.725197471821334,0.01287994383090263,365.44852594169447,183.0732644100449,-449.2408208186009,-23.733107451910506,-8.31927445960372,-23.644253727294792,328.07098421759747,805.0486165285924,20.59105283725076,14.908307713492452,23.001389043674067,2938.0,52.0,3.384512288184797,1.555631863340341,0.28867513459481287,0.05892556509887896,0.9120283790202525,0.38190226261410976,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.07856742013183861,0.025,0.48766204819607595,0.14364670255861678,0.7953247025849685,0.22149734433633728,22.336134335324456,18.47346185252574,14.630048858775128,11.08542909323259,14.585579641644118,8.888062772385462,11.723197721774591,6.289766090233646,9.589400092521592,4.178268778672682,7.513891747622826,2.5244503900837216,4.9571174267470886,1.3884418189668715,3.901872293423243,0.8857135667502292,6.438128715816987,3.005892918995994,9.923291992636967,3.7853372321277785,14.202473683711956,4.345716617142945,102.07351701893353,47.967868831667076,30.639498787490147,27.264273158564844,27.264273158564844,27.264273158564844,170.0,202.0,62.610238999999986,35.429761000000006,0.42592592592592593,226.1,11.284722222222221,6.500000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,22.0,54.0,0.0,0.0,57.0,22.0,2.0,12.0,45.0,24.0,34.0,33.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,8.0,2.0,2.0,31.0,10.0,0.0,7.0,2.0,0.0,4.0,5.0,1.0,0.0,0.0,2.0,4.0,3.871201010907891,7.973199852254295,4.58751525074937,5.154013876941603,5.763426223417044,6.2871612911039,6.551950492061239,7.005158437432332,7.374068023252875,7.598236800452702 +6442177,CO[C@H]1C[C@@H]2CC[C@@H](C)[C@@](O)(O2)C(=O)C(=O)N2CCCC[C@H]2C(=O)O[C@H]([C@H](C)C[C@@H]2CC[C@@H](OCCO)[C@H](OC)C2)CC(=O)[C@H](C)/C=C(\C)[C@@H](O)[C@@H](OC)C(=O)[C@H](C)C[C@H](C)/C=C/C=C/C=C/1C,0,19.443708609271525,6.052284105960264,2.801324503311258,5.788079470198675,164.74055665448788,76.22569396026488,1.2909233582944837,6.101089403973509,4.351959161147902,7.645069668874171,187.41146775632035,21.545454545454547,6.241071428571429,3.5324675324675323,4.909090909090909,145.7748525092886,79.8027262012987,1.6678756412857139,6.378701298701296,2.7737193362193366,7.706225220779219,238.77534201557336,17.120274914089347,6.142635738831615,3.1374570446735395,3.7216494845360826,155.5448870012636,61.794778030927866,1.3575292775883332,6.233822336769758,2.5953130966017564,7.693022336769756,188.77759947887486,15.565533980582524,6.127817961165048,2.7475728155339807,3.308252427184466,158.47262308168237,55.2549832985437,1.2403196983958034,6.201678398058252,2.9654126213592242,7.704244980582525,169.16711040808246,13.871031746031745,6.075313492063493,2.4801587301587302,2.6765873015873014,161.12548837350042,48.239796819444436,1.1507249241845856,6.137932936507935,2.8880346119929454,7.685751214285714,154.4593553627222,13.414545454545454,6.051667272727275,2.410909090909091,2.3636363636363638,161.87199743604478,46.380945110909096,1.1235626508551146,6.112806727272728,2.883964646464647,7.6712029454545485,150.48171329654093,12.942078364565587,6.0873270868824525,2.3424190800681433,2.3884156729131174,162.83278120260326,44.09655210051107,1.111905548567053,6.141506132879047,2.9588775317054705,7.710946105621808,147.51588317198437,12.629213483146067,5.919126805778493,2.337078651685393,2.321027287319422,162.26455946688768,43.55089499839486,1.1201384712583808,5.983164205457464,2.6374175138220086,7.545349611556985,146.1228318416678,12.335365853658537,5.921679878048781,2.3185975609756095,2.160060975609756,162.07235972889404,42.12002479573169,1.1156082829171783,5.986025914634146,2.6667725271002714,7.5518771219512155,145.00252408670968,7.5845796237007175,0.13965707644401554,0.01750457182283674,0.5810271479321083,3.7037849217139596,1.2642697652402846,35.95448227656681,0.22111235938440224,0.1309958773737993,1.7176080240145413,0.09079921687645275,49.231470567838365,0.26447860284095587,-0.0012485488788654081,-0.007038490890606856,0.23758470379232605,1.0966795145120656,-0.12233171654682638,1.2375492103601728,-0.012116923323201663,0.00037754225293157626,-0.10052541934915515,-0.0028712806934305377,-0.3652201173852871,0.30550025613816023,0.0020997042391732927,-0.0028536401192829244,-0.02901422150803967,0.22955751473491476,-0.014616754685195734,1.4462973853662344,0.00061318007628763,0.00272987534006698,0.009537782609998208,0.00027763299041412586,1.1911228063786954,0.16754215344838835,0.015114023986769514,0.001867943434346606,-0.04121167824780298,0.1818802232741453,-0.047779388654199666,0.6925344511545268,-0.011671748658362232,0.013181596425467677,0.17903035229013736,0.01019264469366228,-1.8806858549760936,-0.13865036899662564,-0.001242614654884886,0.0006376280865804921,-0.03878232505814632,-0.14314421951696632,-0.018403127729220575,-0.6628028749716295,-0.004055392148534452,-0.0013814326665566343,-0.02282969801035991,-0.000821837973898409,-1.0179994155277603,-0.20976926849300853,-0.011327723042450236,-0.0009578189353981793,-0.009672542272866827,-0.355681369636898,-0.05727086483672373,-0.9561092080418306,-0.006202152840748299,-0.009641461961397195,-0.10364897993132503,-0.008371060970372133,-0.8336607634341536,-0.7186094306662032,-0.013754499642002824,-0.0007022633940352979,0.006210687283433797,-0.28882277272426043,0.02951119659933665,-3.3452773737722725,0.002707976221988491,-0.01371313314734764,-0.11654358578771606,-0.007378213412887934,-1.668268283903323,0.216553538843267,0.006306175498624674,0.0010194332651518442,-0.018060090434207678,0.08114805586728023,0.028313065966394872,1.0048194366558936,0.002977384231804391,0.005769350693765156,0.053243247515724214,0.004292824495673117,0.8549032677298603,-0.16344410439850188,-0.0034931964165563914,4.1166343261683555e-05,-0.0085328012999002,-0.12638425946230425,-0.01804534137990506,-0.7631602626151127,-0.0016640524979763362,-0.0033566682395722845,-0.05075480462348975,-0.002199156789229397,-0.6729284338805757,,,0.46421568627450976,0.7757352941176471,0.16911764705882354,0.0,0.6066176470588235,-0.4375,1.9623760221040494,0.023920962291978983,0.028979785821390745,0.9617378216653144,0.13564872257251087,0.3391687498762909,2.924113843769364,0.4748174724488018,1.9880953341675114,1.5750060078605832,0.032757203984975024,0.3803321223219531,0.0,0.413089326306928,6.341598386331141,2936.0,913.8948999999999,423.0,874.0,24875.82405482767,11510.079787999997,194.92942710246703,921.2644999999999,657.1458333333333,1154.4055199999998,28299.13163120437,3318.0,961.125,544.0,756.0,22449.327286430445,12289.619835,256.85284875799994,982.3199999999996,427.1527777777778,1186.7586839999997,36771.402670398296,4982.0,1787.5069999999998,913.0,1083.0,45263.56211736771,17982.28040700001,395.04101977820494,1814.0422999999996,755.2361111111111,2238.669499999999,54934.28144835259,6413.0,2524.661,1132.0,1363.0,65290.720709653135,22765.053119000004,511.011715739071,2555.0915,1221.7500000000005,3174.148932,69696.84948812997,6991.0,3061.958,1250.0,1349.0,81207.24614024421,24312.857596999995,579.9653617890311,3093.5181999999995,1455.5694444444446,3873.618612,77847.51510281199,7378.0,3328.417000000001,1326.0,1300.0,89029.59858982463,25509.519811000002,617.9594579703131,3362.0437000000006,1586.1805555555559,4219.161620000002,82764.9423130975,7597.0,3573.2609999999995,1375.0,1402.0,95582.8425659281,25884.676083,652.6885570088601,3605.0641000000005,1736.861111111111,4526.325364000001,86591.82342195483,7868.0,3687.6160000000013,1456.0,1446.0,101090.82054787103,27132.207583999996,697.8462675939712,3727.5113,1643.1111111111113,4700.752808000002,91034.52423735903,8092.0,3884.6220000000008,1521.0,1417.0,106319.46798215449,27630.73626599999,731.839033593669,3926.8329999999996,1749.402777777778,4954.031391999997,95121.65580088155,1145.2715231788084,21.088218543046345,2.643190345248348,87.73509933774835,559.2715231788079,190.90473455128296,5429.126823761588,33.38796626704474,19.780377483443694,259.35881162619575,13.710681748344365,7433.9520557435935,40.7297048375072,-0.19227652734527284,-1.0839275971534559,36.58804438401821,168.8886452348581,-18.839084348211262,190.5825783954666,-1.8660061917730562,0.058141506951462744,-15.480914579769895,-0.4421772267883028,-56.24389807733421,88.90057453620463,0.6110139335994281,-0.830409274711331,-8.443138458839544,66.80123678786019,-4.2534756133919585,420.87253914157424,0.17843540219970033,0.7943937239594911,2.7754947395094787,0.08079120021051063,346.6167366562004,69.027367220736,6.22697788254904,0.7695926949508016,-16.97921143809483,74.93465198894786,-19.685108125530263,285.32419387566506,-4.808760447245239,5.430817727292683,73.76050514353659,4.199369613788859,-774.8425722501506,-69.87978597429932,-0.6262777860619826,0.321364555636568,-19.546291829305744,-72.14468663655103,-9.27517637552717,-334.05264898570124,-2.0439176428613637,-0.6962420639445437,-11.506167797221394,-0.4142063388447981,-513.0717054259912,-115.3730976711547,-6.2302476733476295,-0.5268004144689986,-5.319898250076755,-195.6247533002939,-31.498975660198052,-525.8600644230069,-3.4111840624115644,-5.302804078768458,-57.006938962228766,-4.6040835337046735,-458.5134198887845,-421.8237358010613,-8.073891289855657,-0.4122286122987199,3.6456734353756386,-169.53896758914087,17.323072403810613,-1963.677818404324,1.5895820423072442,-8.049609157493064,-68.41108485738933,-4.331011273365217,-979.2734826512506,134.91285469935534,3.9287473356431724,0.6351069241895989,-11.251436340511383,50.55523880531558,17.639040097064004,626.0025090366217,1.8549103764141355,3.594305482215692,33.17054320229619,2.6744296608043516,532.6047357957029,-107.21933248541723,-2.291536849260993,0.027005121179664412,-5.597517652734531,-82.9080742072716,-11.837743945217719,-500.63313227551396,-1.0916184386724765,-2.2019743651594186,-33.29515183300928,-1.4426468537344845,-441.4410526256576,0.7396116031501251,0.6240175393925443,0.4547547623453313,0.3522031902309825,0.2907188399074754,0.20359821740330752,0.1910966719318647,0.11622242628996997,0.12098086018413216,0.06904062699742229,0.07780937317871962,0.04093033042287496,0.0478261679591144,0.023062728489667273,0.030503568786642708,0.013213028097459232,8.035621619388264,5.710333097642653,3.5615778173802366,2.210222743952427,0.4879330259664422,-0.49151368754814856,4.028926760975642,0.9762417551705478,6.0327085680150025,0.9930193239585265,14.54336576073117,10.970651577791239,16.022516606391548,11.721395760181611,1.9801544329676342,0.7411879858391998,3.507962142327871,2.2601981806064693,7.012735969966976,1.1502077705320222,3.7207594030997644,2.456202534623793,20.886163765722095,14.700150783732521,0.18653323719729567,0.444580858691692,0.7418769091067903,0.8734093032760505,0.9096949554986314,0.9151020271039227,1.6249466125584322,1809.0647202043683,0.0,2.0,10.0,0.0,9.0,21.0,2.0,6.0,0.0,5.867622687433448,3.9713008662252136,1.7865530103980793,0.8199572021730166,0.5533038080902992,0.5135687087525511,681.9216225281715,8056.596559686466,101.78637435895442,53.35494410388387,100.28405821268015,,24.0,2577.0,77.76223202261254,39.292268104881224,74.12830438750107,63.36049913640336,11.993926152995277,12.009707272128011,41.066826788460816,58.0750493329319,0.0,28.421177722800294,31.566666666666663,52.75,11.5,0.0,41.25,0.0,0.03578431372549025,-29.75,0.1164893972840998,0.012772987907312627,-0.10371640937678717,0.02381938690969354,0.17654256526674295,0.0,0.5538631346578355,0.8637254901960794,0.43737373737373575,0.5410901467505229,0.8399061032863858,133.44156950307536,1.6266254358545709,1.9706254358545707,65.39817187324138,9.22411313493074,23.063474991587782,198.83974137631674,32.28758812651852,0.537457434733257,0.24287222808870118,0.015839493136219643,0.34530095036958824,0.7547169811320755,0.22778374769707557,-1.465156228053287,-0.04252454451478458,-0.009703021377836336,-0.03407340065240202,0.7722162523029246,4.967068383518937,0.03873964904685128,0.032894492606085665,0.04599137392147164,-6.056680803603279,0.9482807692839147,0.7677557313009424,1.406783071342982,1.0546801477507999,0.5843060137021061,1.481378622352228,0.9588886689631405,1.409228749218628,0.7626384272318586,0.7132349391713612,0.794676303927745,1.2462961055486563,0.9696975676360097,0.9498047775237081,1.2713109181833286,1.5040589670800337,0.9981688670780613,1.1954092180808804,0.972932413656705,1.14989061286088,0.9400926050831232,0.685885836669099,0.968256047301732,1.0742431300957715,0.9993072665975309,0.9386029818223766,1.0742728293948682,1.3465899597228084,1.039949386952698,1.150151329404692,1.0027414891680275,1.1422790598996673,0.93770574192602,0.8225549447875355,0.9476549649062439,1.091619896059032,1.0475265966820642,1.121658508689174,1.1655778974568203,1.2127279769093626,1.1510509177027828,1.0579428055323148,1.0461020919826636,1.0526490379749118,1.1115009183468605,1.1461757945814461,1.142128784923859,1.0350291225905948,1.0568355292762004,1.200186727405937,1.222877931749666,1.1486021903820816,1.2161924753754239,1.0744539521014635,1.0538409528322428,1.0463229929761395,1.1808431232833203,1.2907742449287634,1.2295749030754,1.0206608657500027,1.1379282300296965,1.2788004569623546,1.2057724800882015,1.0441645526257313,1.1993881645238307,0.9985328807906358,1.1329120110669595,0.9860729742690604,1.2681880576772757,1.3720539159978138,1.2818219000374738,1.021655409987171,0.955180136598098,0.8912439499167002,0.9557844169862095,1.104576310861423,0.9621837838454279,1.0071858822875341,0.9573427452053812,1.0073794093595623,0.8960087271113455,0.885842417344767,0.8812064310688333,0.9966461390470144,1.009852122087742,0.9833478382028389,0.9924859920496153,1.0711637559650051,1.0356187453970456,1.0383535290328587,1.0106478789165056,1.0300967550881823,0.9858665110980404,1.0927958224620218,0.9808692280961658,1.0275588119008758,16.0,1.1607999183756759,10.222222222222225,6.4375,5.160000000000001,3.2361111111111107,2.5477551020408162,2.069444444444444,1.4681279919375156,1.2393750000000003,16435.511650838664,19516.55410301792,6377.091309486029,5548.873795852567,19.736983228984805,0.463789911196075,10.583169529935521,0.8649406657577235,0.0,0.7547169811320755,1.3707820518916303,3.267103873099865,5.451851728926999,6.418447537152062,6.685100931234779,6.724836030572527,0.22535211267605632,0.007790603479031383,0.1032547699214366,0.05409663865546218,0.041280000000000004,0.024703138252756572,0.019448512229319204,0.01478174603174603,0.010338929520686728,0.008852678571428572,0.5098991293379237,60.55385836143622,29.77777777777778,17.281494140625,404.56592103765075,0.0,5.112785152372803,664.4727784478534,,599.0048318366017,592.5937503022627,604.8464583034687,599.1128827571177,776.5354708313134,597.0777379417502,599.3115553664624,694.8761606116586,0.034870568437899756,-0.00894010465245501,-0.40209443349104546,0.4089046521111734,0.29609697584830796,-0.09676077045437868,0.034419886812464016,-0.05479984636289136,0.0028820926314669587,-0.05852640296486185,-0.0316223068018019,-0.007418427952137506,0.04027912834925168,0.01503471426322606,-0.1630225605153061,-0.04993608579444538,0.06197916984571689,-0.011561420740309884,0.040225788101775926,0.002773160568657408,0.0208393988787695,0.005552944837615326,0.003057658424432131,0.024194337334234026,0.022089840407877488,0.10822239997862398,0.1067117466940641,-0.07092900632006006,0.04910658343249008,-0.03779208359468979,0.019261421867444978,-0.05278650497356858,0.10062604022150815,0.10423236837919062,0.11225476435034729,-0.03820088722283052,-0.018280560805685686,-0.008897613257592531,0.03642637438001382,-0.06674787089755391,-0.038648091760880396,-0.014556329855537528,-0.018434499205780767,-0.01834086597341301,-0.010545619406133593,-0.013291564600985255,-0.009051157071284597,-0.020677818553581716,-0.027657336187428213,-0.0811109850705717,-0.05471821562345179,-0.016647315546772082,-0.09603186393239682,-0.04529956059325594,-0.026592211805118136,-0.028049779116896406,-0.07360126253351543,-0.06034495559066364,-0.0921930965744158,-0.0169334930242519,-0.0947461120219046,-0.0984876670214173,-0.04011885587050544,0.010689151626628472,-0.07798043861321328,0.02334248386753741,-0.09304201206514226,0.012247059501910039,-0.10468370014589809,-0.06785225974627225,-0.08125855780151942,-0.03388621677681834,0.028551818240073374,0.04515471510068906,0.05823811490332346,-0.03108304060917642,0.021909494633864497,0.02239479796545933,0.02794698666293356,0.013465480808461864,0.04404223101847855,0.030998485551598384,0.0472782105765759,0.017364975245901883,-0.0215495271336809,-0.025012670360149727,0.002351748084919009,-0.014685718783138924,-0.03412300177619893,-0.014273331432928318,-0.021225733602413723,-0.00752582308202588,-0.025624228081575162,-0.029549701628000812,-0.02421999731805739,-0.013668664090651442,25.160911404389502,0.0,30.870330733004483,12.607130278989768,32.45576220607476,42.370048143164816,44.96237689789743,45.376898618470555,45.41695159860299,135.19048272339077,107.10040853451966,2.2274898709783018,25.86258431789281,0.0,28.090074188871107,39625.827056789996,22480.40278379106,19976.71088500808,261.0,99.0,128.0,152.0,179.0,185.0,209.0,228.0,241.0,957.5813563360023,71.0,5.831882477283517,6.678342114654332,7.553286605600419,8.418256443556213,9.29697667863573,10.169958756585515,11.05179435822809,11.929719491197114,12.814334369547582,0.5739514348785871,0.9726357615894039,1.1354745932980392,0.5283457051786414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6193513066582068,0.9581872484092975,1.0009116209971882,0.5711987078476755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,6.0,0.0,7.0,0.0,10.0,0.0,0.0,0.0,3.0,15.0,0.0,6.0,0.0,14.0,1.0,1.0,0.0,0.0,48.64066963817289,30.136984938757806,5.783244946364939,5.7871111525705965,11.690424675716445,19.178148736287287,4.794537184071822,0.0,0.0,71.0748066394564,106.95561782726408,58.46951041408137,37.62962948001905,285.3074742985665,-1835.1617580487487,-53.26354717521365,-12.153389126150651,-42.67818041973833,967.229096826738,6221.434801637717,48.522827183740766,41.20155497773322,57.605877792941826,0.4166666666666667,0.8487933192889716,0.0715291504838396,23.441836988166003,0.05109628863370241,0.9246620758163514,0.15120668071102858,14.0,0.1267605633802817,0.18937626469605848,0.4513568929560155,0.7531841511027939,0.8867212829757471,0.9235599793025818,0.9290494622437433,6.197200000000008,,3.642857142857143,4.185667752442996,2.6491281877538646,3.6322182858638996,-15.670301518929945,3.7832772337821297,3.6191901961772186,-5.905247321055788,255.95639999999904,67.71344582768153,0.0,4.899909730850478,35.507436276968356,180.07273656890322,41.087912958771014,47.60232970114182,0.0,0.0,4.962844630259907,0.0,6.289715570908998,0.0,7.802618063442671,0.0,9.402199633250627,0.0,11.050461342082116,86.66666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,146.868,0.0,70.93532906690403,0.0,0.0,0.0,11.182704775727276,0.0,-2.16945200092628,171.45666358800392,0.0,0.0,0.0,145.09034142649847,52.3938636431594,35.507436276968356,125.51601987294649,47.60232970114182,0.0,0.0,0.0,79.78020148197486,93.52204730538924,84.73966530593573,1329.9653042387304,,1198.4539377226854,1185.6181029657985,1210.4406154356884,1198.672582941766,1560.0630754813687,1194.576751831481,1199.0724462885073,1391.809189086736,84.73966530593573,1329.96530423873,,1195.1762715562481,1181.9248667136426,1208.0252338527362,1195.4023781879248,1572.2997856499605,1191.2163558334055,1195.8092308816113,1396.9969865738294,4.974791866232491,900.6280376107779,,820.4899463705493,811.1949900836872,827.5018880671093,820.6425492610701,1067.0650624315522,817.6237404833406,820.9427240393643,957.5482183551887,1.246171548616702,19.558313297628388,,17.624322613568904,17.43556033773233,17.80059728581895,17.627537984437737,22.942104051196598,17.567305173992366,17.633418327772166,20.467782192452002,2.487397776777623,664.4727784478534,,599.0048318366017,592.5937503022627,604.8464583034687,599.1128827571177,776.5354708313134,597.0777379417502,599.3115553664624,694.8761606116586,144.68627450980392,0.0,17.26572478993955,0.0,0.0,0.0,32.7922950193655,151.1376547705754,5.824796818514719,0.0,35.55577254036535,0.0,-8.06498049632621,1.1945977164149268,-2.433454896645535,0.0,0.0,86.25100488499899,1063.1446737362742,206.98808983563617,493.3326848380796,823.2296110679769,969.1855781099614,1009.4502406164517,1015.4502406164517,1821.0,222.74455129528852,189.39189738903042,107.50783923994432,204.65999999999994,204.65999999999994,0.7142857142857143,7.982074875081202,7.149747119504682,4.777745616942242,8.162172965841128,,8.157555827795386,8.156905153350735,8.155351655522386,8.15755782006928,8.13593276798938,8.157250511334542,8.157596280010614,8.153196752589874,0.07026096495503296,0.12003195538001658,,0.11996405629110862,0.11995448754927551,0.11993164199297626,0.11996408558925413,0.11964607011749087,0.11995956634315504,0.11996465117662668,0.11989995224396874,3.4808914191790783,4.016433040541372,,4.015867205382307,4.015787438794155,4.015596968787308,4.015867449606642,4.013213007372714,4.01582977723826,4.015872164234661,4.015332702110577,767.6500000000036,10638.391451886457,616.1395074231086,,615.3540769827401,615.4956186005502,616.0382622415899,615.3542711064863,620.1602598107676,615.4303426227295,615.3442785234504,616.351690224404,156.44693311597732,9.060875109163362,,9.049324661510884,9.051406155890444,9.059386209435146,9.049327516271857,9.120003820746582,9.05044621504014,9.04918056652133,9.06399544447653,11.189147184314969,8.340396023163883,,8.339120449248094,8.339350439341835,8.34023168781514,8.339120764714787,8.346900540385832,8.339244379383823,8.33910452583478,8.340740338488484,35.55577254036535,72.12992678331896,32.7922950193655,1.2646515789571067,-7.961755021298045,-1.1449224718737498,11.989281880680815,12.874008249985213,4.584074773832179,986.1496474101231,357.3580455743474,-2298.607215886665,-66.714540744813,-15.222564343620295,-53.455981764806154,1211.4898164319873,7792.574613922944,60.77661558202837,51.60645439684068,72.15346864743466,22088.0,119.0,5.062661373374326,2.9167730033821884,0.11785113019775792,0.026352313834736494,1.8692152806875417,0.5489813746796578,0.15137471507731048,0.024013043348897437,0.0,0.0,0.0,0.0,0.0,0.0,0.21030028017618946,0.16661179505275603,0.43410109989875734,0.25851961343528657,50.29358901420851,42.43319267869302,32.28758812651852,25.00642650639976,28.781165150840064,20.156223522927444,24.46037400727868,14.876470565116156,18.38909074798809,10.494175303608188,13.927877798990814,7.326529145694617,8.847841072436164,4.266604770588446,6.375245876408326,2.7615228723689795,13.014995228222283,5.945619201201422,18.922497671961914,7.7372390135145,28.896479780685112,10.114776094606903,243.9468919780722,99.22892872835283,46.727778289858584,31.381450442335144,28.334716729922285,27.89920705909533,340.0,397.0,156.18181900000056,99.73218100000021,0.2913907284768212,485.15,27.256944444444443,15.458333333333329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,151.0,0.0,0.0,154.0,0.0,9.0,9.0,145.0,9.0,71.0,145.0,0.0,0.0,2.0,53.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,83.0,14.0,3.0,3.0,68.0,15.0,0.0,1.0,14.0,0.0,4.0,9.0,0.0,0.0,0.0,0.0,0.0,4.394449154672439,6.284134161070802,4.787491742782046,5.1298987149230735,5.342334251964811,5.568344503761097,5.655991810819852,5.8377304471659395,6.008813185442595,6.1224928095143865 +5284585,N[C@@H](C(=O)N[C@@H]1C(=O)N2C(C(=O)O)=C(Cl)CC[C@H]12)c1ccccc1,0,32.1,6.568090000000001,3.6,8.990123456790124,163.2769222321221,129.841140275,1.5672855619396,6.663120000000001,6.839021300106691,8.105776924999999,234.32717312049317,28.261904761904763,6.567547619047619,4.4523809523809526,8.145502645502646,149.01991087973445,108.84774759523813,1.855980395380953,6.71779761904762,3.555384087791495,7.979268238095234,277.8924114516295,25.295774647887324,6.461225352112677,3.9577464788732395,6.868544600938967,152.53759415924287,96.2226426197183,1.6564282338668588,6.592109859154931,3.7454645568886566,7.915250309859151,239.4947290321946,21.737373737373737,6.379544444444447,3.2626262626262625,5.298540965207632,160.3222095581643,80.97624406060604,1.4116204287059186,6.491934343434347,3.5376501641933746,7.929962444444442,198.09130940628407,22.41,6.514359999999999,2.89,4.84,162.2074647182792,83.28153241,1.3063414979818802,6.6273029999999995,3.803055555555555,8.100068359999998,188.25773913989318,20.021052631578947,6.643736842105262,2.5473684210526315,4.852631578947369,165.980183003766,72.93151575789473,1.159452441986684,6.706618947368422,5.098418886722981,8.232614442105264,167.43681731701707,16.876543209876544,6.46937037037037,2.5925925925925926,3.877914951989026,167.22575167637194,59.89042528395059,1.1443122808238888,6.519337037037038,4.045115073921659,8.064038098765433,159.60346011249834,17.58823529411765,6.280808823529412,2.7794117647058822,4.266339869281046,163.0468349420629,63.45899863235292,1.2682010013976026,6.364580882352942,3.47760832728153,7.872466617647056,176.85644603773213,20.317460317460316,6.296444444444443,2.7301587301587302,4.714285714285714,160.81316643810612,75.6908885079365,1.3050797961934604,6.392295238095238,4.382585407276767,7.872251682539681,182.20602133081647,11.397499999999997,0.16212899999999997,0.031202397641510605,0.7100000000000001,4.1745370370370365,1.4899585820268963,53.378794999374996,0.24037232628375998,0.1555189999999999,2.8544385145176046,0.11370657437499998,47.62043568681157,-0.21892857142857114,-0.02257376190476187,-0.019724633997284472,0.21857142857142853,0.7465094062316286,0.01502632338935436,-0.863641563065484,0.02146543273599228,-0.019757809523809497,-0.24715782541678472,-0.014881995208333327,3.825135553015821,0.24193661971830988,0.025391422535211264,0.00011841044845725846,-0.048028169014084486,0.38566118935837274,-0.24638750041613983,0.9801871368926023,-0.019984656078776964,0.021344661971830988,0.3351934415995285,0.017290028794014093,-4.732922927558647,0.15704545454545454,0.021084434343434322,0.007474404366176534,-0.08070707070707069,0.09751059982541471,0.09777935290799646,0.6681357258775252,-0.0073423521587499185,0.017264434343434342,0.0875437894703012,0.011279092796717178,-1.2424584808426768,-0.2035000000000001,-0.02093509999999998,-0.007930118559989185,-0.13599999999999998,-0.4973765432098763,-0.2752030113865647,-1.087910977125,-0.04796473186097998,-0.013205099999999996,-0.4080030911827464,-0.010708770375000004,-5.431025713177518,-0.5138157894736842,0.0019932105263158325,0.0011602544475093747,-0.02052631578947368,-0.26709714100064963,-0.18268511067766716,-2.4996263714802627,-0.019510718955669436,0.0013825789473684424,0.13784719088673913,0.004048571151315761,-3.742433034950728,-0.8993518518518522,-0.02151974074074072,0.005932747321470073,0.06777777777777778,-0.6953494131992075,0.24945074295980685,-4.109757385794752,0.02350259343292892,-0.021584432098765406,-0.4894259707921481,-0.012841256782407415,0.6053140372127324,-0.45117647058823535,-0.03001635294117649,-0.00871676158527655,-0.005588235294117652,-0.1010348583877996,0.08223062865161196,-1.9160688754779382,0.020803122729378242,-0.026874588235294136,-0.3714339538112914,-0.02134798466911763,3.6368333581428876,1.8032936507936506,0.034549571428571395,0.0029856353619534624,-0.07349206349206351,0.3495860278267685,-0.08470715682736969,8.227880406180562,-0.003923171198299677,0.0363775079365079,0.6352962971279301,0.030110134751984135,0.8234890447075045,,,0.4686507936507936,1.1354166666666667,0.4791666666666667,0.0,0.65625,-0.17708333333333334,0.8635629390741331,0.020859258518840147,0.031609258518840146,0.9094162211652073,0.22889271339886366,0.24667359318117518,1.7729791602393403,0.47556630658003884,2.013317382629131,1.3964459379222616,0.2517451016812091,0.2911167163955038,0.07400962663015655,0.6168714447068694,8.727073341800011,1284.0,262.72360000000003,144.0,359.60493827160496,6531.076889284884,5193.645611,62.691422477584,266.5248,273.56085200426764,324.23107699999997,9373.086924819727,1187.0,275.837,187.0,342.1111111111111,6258.836256948847,4571.605399000002,77.95117660600003,282.14750000000004,149.3261316872428,335.1292659999998,11671.481280968439,1796.0,458.747,281.0,487.66666666666663,10830.169185306244,6831.807625999999,117.60640460454697,468.03980000000007,265.9279835390946,561.9827719999997,17004.125761285817,2152.0,631.5749000000002,323.0,524.5555555555555,15871.898746258266,8016.648161999998,139.75042244188595,642.7015000000004,350.2273662551441,785.0662819999998,19611.039631222124,2241.0,651.4359999999999,289.0,484.0,16220.746471827919,8328.153241,130.63414979818802,662.7302999999999,380.3055555555555,810.0068359999998,18825.773913989316,1902.0,631.1549999999999,242.0,461.0,15768.11738535777,6928.493997,110.14798198873498,637.1288000000001,484.34979423868316,782.0983720000002,15906.497645116622,1367.0,524.019,210.0,314.1111111111111,13545.285885786127,4851.124447999998,92.689294746735,528.0663000000001,327.6543209876544,653.187086,12927.880269112366,1196.0,427.095,189.0,290.1111111111111,11087.184776060278,4315.211906999999,86.23766809503698,432.79150000000004,236.47736625514403,535.3277299999999,12026.238330565784,1280.0,396.67599999999993,172.0,297.0,10131.229485600687,4768.525976,82.22002716018801,402.71459999999996,276.1028806584363,495.9518559999999,11478.979343841438,455.8999999999999,6.485159999999999,1.2480959056604242,28.400000000000002,166.98148148148147,59.598343281075856,2135.151799975,9.6148930513504,6.220759999999997,114.17754058070417,4.548262974999999,1904.8174274724627,-9.194999999999988,-0.9480979999999986,-0.8284346278859478,9.179999999999998,31.353395061728403,0.6311055823528832,-36.27294564875033,0.9015481749116758,-0.8298279999999989,-10.380628667504958,-0.6250437987499997,160.65569322666448,17.177500000000002,1.8027909999999998,0.00840714184046535,-3.4099999999999984,27.381944444444464,-17.493512529545928,69.59328671937476,-1.4189105815931644,1.5154710000000002,23.798734353566523,1.2275920443750006,-336.0375278566639,15.5475,2.087358999999998,0.7399660322514768,-7.9899999999999975,9.653549382716056,9.68015593789165,66.145436861875,-0.726892863716242,1.709179,8.666835157559818,1.1166301868750006,-123.003389603425,-20.35000000000001,-2.093509999999998,-0.7930118559989185,-13.599999999999998,-49.73765432098763,-27.520301138656475,-108.79109771249999,-4.796473186097998,-1.3205099999999996,-40.80030911827464,-1.0708770375000005,-543.1025713177518,-48.8125,0.1893550000000041,0.11022417251339059,-1.9499999999999997,-25.374228395061714,-17.35508551437838,-237.46450529062497,-1.8535183007885965,0.13134500000000202,13.095483134240219,0.3846142593749973,-355.5311383203192,-72.84750000000003,-1.7430989999999984,0.4805525330390759,5.49,-56.323302469135804,20.205510179744355,-332.8903482493749,1.9037100680672425,-1.7483389999999979,-39.643503634164,-1.0401417993750006,49.03043701423132,-30.680000000000003,-2.0411120000000014,-0.5927397877988053,-0.38000000000000034,-6.870370370370373,5.591682748309613,-130.2926835324998,1.4146123455977204,-1.8274720000000013,-25.257508859167814,-1.4516629574999989,247.30466835371635,113.60749999999999,2.176622999999998,0.18809502780306814,-4.630000000000001,22.023919753086417,-5.336550880124291,518.3564655893754,-0.24715978549287965,2.291782999999998,40.0236667190596,1.8969384893750005,51.87980981657278,0.7262648725578599,0.5568096444374548,0.4389842829969589,0.3020073429551057,0.2792202790104289,0.16325730926868473,0.17147869719346012,0.08843085280962991,0.10916461636042452,0.048213809676649795,0.07014117506148891,0.02708751248482677,0.042178933483361825,0.015150276801872494,0.027097993628880202,0.008124186751059212,17.001103105843214,5.6939025386593745,3.55565173936046,2.1936889425262684,0.48207682751944925,-0.3879267255117134,3.2700731715712608,0.9725786606048655,6.024490035009777,0.7740047939194274,14.544243941419964,10.954397542659569,35.45051739695865,11.705060525855203,2.208069428787246,0.7413818107033631,3.5017665401602605,2.2436253521998304,7.010456911248964,1.1907943689480684,3.714653429715766,2.4395974267505847,22.455871576268436,14.700469207437926,0.3211307364748444,0.7057202766854077,0.8393692686384978,0.8999674155253806,0.92113897930239,0.92113897930239,1.5805855858836009,734.097887887709,0.0,3.0,0.0,0.0,7.0,5.0,1.0,0.0,0.0,3.518872187554087,1.3595135101900957,0.6091131994150061,0.26887218755408604,0.14999999999999858,0.14999999999999858,36.58189045318579,1453.2218577817384,79.19541289005707,36.33054644454346,74.67272122140304,,12.0,484.0,35.90918723409874,19.490138947056174,10.72932566516943,18.405094737549014,4.899909730850478,0.0,24.26546827384644,6.06636706846161,5.316788604006331,17.3346073673947,11.247619047619047,27.25,11.5,0.0,15.75,0.0,0.031349206349206384,-4.25,0.2226330532212883,0.0606349206349206,-0.1619981325863677,0.08662131519274363,0.19692469352013997,0.0,0.663809523809524,0.9063492063492061,0.44117647058823567,0.6031746031746034,0.8197278911564625,20.725510537779193,0.5006222044521635,0.7586222044521636,21.825989307964974,5.493425121572728,5.920166236348204,42.55149984574417,11.413591357920932,0.51707530647986,0.21761219305673157,0.0,0.4356477561388654,0.3125,0.46644419737710546,-1.2435495599583297,-0.08950505360267937,-0.031088738998958247,-0.07772184749739561,0.5335558026228945,1.4224704419004544,0.05578353649783375,0.03556176104751136,0.05926960174585226,-1.9546658726471098,0.611036254817786,0.7945998468591589,1.6443739561753588,0.8501006036217303,0.5210105779031142,1.2284220746276553,0.6134988790530934,0.8634686804964483,0.7542228418576329,0.675997653219016,0.768984284599331,0.8230041112312328,0.6638779816428734,0.5248207413345606,0.8594460431529074,1.2378496330093234,0.6971838795889456,1.3242954470087618,0.6719736082530444,1.0393292448137532,0.5325752054750976,0.4831983737456924,0.5051375111916477,1.0381026290834054,0.9237139989497964,0.7024461628665688,0.6439822142548545,1.2137217242851044,0.9105415920321099,0.9752905565104076,0.926512446793179,1.0038655586631526,0.7333470118724655,0.7299923265022761,0.7211142996182996,1.000233158140246,1.0462162754990132,1.1502611346520362,1.3224192750621202,1.2221830985915492,1.1113075302206943,1.1814182601384724,1.0466263835110765,1.1643840583906357,1.1048597759759258,1.1753036498756475,1.1251193297590714,1.0573564915174822,1.02428972189192,1.2544640378957495,1.1370662774220655,0.9757227575982208,1.1670808939838784,1.0518957862342277,1.0233560279879248,1.0014235333434092,1.21785703286889,1.3279200347877131,1.2181106244481341,1.001310137162165,0.9605339052586258,1.3177641123906134,0.9115431700580016,0.8476786645800729,1.2571630815318664,0.7669990225117763,0.9594145247944535,0.8025540922145494,1.2839201736217536,1.419430962594153,1.2460165304869717,0.93459057701354,0.9051423815852291,1.1446780940231687,1.1773076698546094,0.9794428334714167,1.020081349607604,0.9077829191048445,0.9044476869557359,0.8573533089096044,1.1216108737233925,1.1113000283266625,1.108448333444458,0.9120905365772466,0.7054074097285329,0.6841810856669394,0.6944128187480709,1.0353789403085176,0.8734541985068768,1.0266847635609628,0.7128189149935767,0.9788746606929716,0.6614840201733123,0.6881899339740745,0.6066891629420035,0.982627139426805,4.5,0.09907152331394756,3.333333333333335,3.0625,1.715555555555556,1.1041666666666665,0.5061224489795919,0.3958333333333333,0.2383471907281431,0.16250000000000003,5048.424852966989,5541.839239406875,2316.125909928421,2141.307659064772,11.660712974140328,0.44180001467589164,6.509009811033771,0.7914726375697928,1.0,0.3125,1.8030559073332757,3.962414584697267,4.7128148954723565,5.053055907333277,5.171928094887364,5.171928094887364,0.1730769230769231,0.008255960276162296,0.09259259259259263,0.078525641025641,0.04636636636636638,0.03561827956989248,0.022005323868677908,0.01799242424242424,0.010833963214915593,0.009558823529411767,0.4948262977630074,18.781065088757398,7.7091412742382275,3.618369526521894,142.61121175425345,1.0,4.11855584779671,119.04087178854735,,99.1554727469407,98.2327648739222,97.0522558308937,99.14654985079942,134.0238115069721,99.25437346364437,100.16912768884865,123.10783807811406,-0.019208473036066785,-0.13923333829704665,-0.6321512283736649,0.3078470824949697,0.17882447792617479,0.010085061135667936,-0.01617948781113542,0.08930076547435953,-0.12704434521704427,-0.0865871954010381,-0.13088069260844204,0.08032550517120086,0.021227165581777577,0.15661246621647745,0.0037949150516474813,-0.06764530847054152,0.09238418199113732,-0.16536533524372296,0.01836285620355572,-0.08314041964708133,0.13724793736990978,0.11742885330853788,0.1520583034802564,-0.09938848436175533,0.013778938762487787,0.1300472731185311,0.23954583401093646,-0.11367193057333898,0.023358422493389798,0.06562555099684735,0.012516875397530955,-0.030545746560202015,0.11101173710887,0.03066935547045614,0.09919472870160662,-0.026090867563960035,-0.01785479271770126,-0.12912618963911443,-0.25415093580626724,-0.19154929577464785,-0.11914531810284273,-0.18470514194574894,-0.02038095796538191,-0.19954348573536507,-0.08490988239379112,-0.1429363740391158,-0.09417899038698399,-0.1140482155370459,-0.04508144676233247,0.012293979030992809,0.037184784991196054,-0.02891030392883617,-0.06398245808599348,-0.12261086508132839,-0.04682807791950962,-0.08116874041746801,0.00889009669151964,0.04829222636453779,0.03560542715818459,-0.07858880291570267,-0.07890781766631738,-0.13273221163851456,0.19013754614733033,0.09546165884194054,-0.1665692284030485,0.16742125987184242,-0.07699232224786776,0.0977757872392684,-0.13878967906664405,-0.1714613813900491,-0.112933283347869,0.012711224256614131,-0.03958556442976403,-0.18513870400222351,-0.27936191588303033,-0.007870753935376973,-0.02420264989660055,0.05518987550630287,-0.03589569370197235,0.08654541498600016,-0.17280581945160498,-0.13012504978551384,-0.1877462652134149,0.07637127434241651,0.15821835058509767,0.2130992692767574,0.09568608785311662,-0.10350994858037113,0.08374246646399246,-0.05685202115627706,0.15414136655345817,-0.016321226569436142,0.23391037710188414,0.22256436560003962,0.2648055745016295,0.017292765864709823,6.067336113777611,13.810157994820047,11.824819102860843,20.84155920545821,39.64072750112767,43.865315151860365,46.26577877147379,46.3856019365283,46.3856019365283,48.31961718309914,33.51470251013428,6.041882440349019,6.9868011934920915,1.776231039123757,14.804914672964866,5130.188852350063,4200.620974483788,1319.2360768530389,86.0,38.0,53.0,68.0,83.0,87.0,96.0,93.0,89.0,349.0829336720004,26.0,4.859812404361672,5.739792912179234,6.650279048587422,7.555381944240273,8.474494436883122,9.390743422947507,10.315630315397533,11.238896430838867,12.168168265630008,0.7583333333333333,1.0124,1.1295925019759685,0.7280222296228458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6897707784431139,1.0003921568627452,1.029506554989075,0.6639641359658052,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,1.0,1.0,2.0,1.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,16.156983476009223,17.780720971351755,0.0,5.907179729351506,5.907179729351506,14.488984098994122,4.794537184071822,0.0,0.0,41.932775232540564,18.405094737549014,5.032286352113597,6.041840829147961,254.25424512616758,-677.846903063869,-48.788343743352556,-16.946172576596727,-42.365431441491815,290.83613557935337,775.3749547178693,30.40706914670452,19.38437386794673,32.307289779911216,0.5,0.6692818191649516,0.17874205945396493,107.64668134292586,0.13253397579258422,73.61481617531489,0.33071818083504845,6.0,0.15384615384615385,0.3387974950404581,0.7445449307185971,0.8855465183755179,0.9494784253450579,0.9718147262936341,0.9718147262936341,0.7108000000000003,,2.07563025210084,1.816468174037723,1.4999464124815878,2.0857476191191937,-5.649777557773621,1.7114743271927244,1.6245523528738783,-2.47066316722478,85.68390000000002,19.490138947056174,0.0,10.216698334856808,5.733667477162185,30.9671657332959,0.0,46.624612499174475,0.0,0.0,3.970291913552122,0.0,5.3612921657094255,0.0,6.9726062513017535,0.0,8.684231891345675,0.0,10.451695662489449,30.333333333333332,8.80568944928287,0.0,0.0,0.0,0.0,0.0,0.6355907501889646,0.0,40.495999999999995,0.0,35.82921574367619,0.0,0.0,0.0,0.0,0.0,-2.2518174825281587,45.18370007903874,11.050456081168516,0.0,0.0,39.87378353064196,14.383611552215466,0.0,24.446935566696975,41.06116100747748,0.0,0.0,0.0,29.120889184913832,27.590831137724553,30.504131318901663,238.0817435770948,,198.13797630620633,196.31415740000796,193.97951612741394,198.11928740000556,269.5943473125791,198.36612406668934,200.20287601495778,246.91227749989503,30.504131318901663,238.08174357709476,,196.2353152417806,194.64957024138107,192.63877020589268,196.20735208247964,273.6974005717178,196.79727260009605,198.71370302482342,248.68633932345284,5.136565081327692,180.0215800360258,,153.9312977581896,151.74502214721673,149.38615597148421,153.9321266026789,209.2322791335347,153.51303763746895,155.06939721289177,192.44295957292087,1.2710054716209027,9.920072649045617,,8.255749012758598,8.179756558333665,8.082479838642248,8.254970308333565,11.233097804690795,8.265255169445389,8.341786500623241,10.288011562495626,2.5682825406638456,119.04087178854735,,99.1554727469407,98.2327648739222,97.0522558308937,99.14654985079942,134.0238115069721,99.25437346364437,100.16912768884865,123.10783807811406,40.015686274509804,0.0,0.0,5.918523886364563,0.0,5.915181432140758,9.210022069339765,41.180262199562996,0.8488293143244443,2.6241515495086922,0.0,0.0,-2.0702619957448007,1.1459863945578233,0.0,0.0,0.0,26.558565438632208,364.81908160790704,72.12223629333103,158.49658338789067,188.51259581889425,202.12223629333107,206.87712379549455,206.87712379549455,743.0,126.39319918106563,180.27129909761388,59.440117884398425,112.73,112.73,1.0,7.4598428004967685,5.700439718141092,3.7195134387193214,4.829343245493022,,4.83981078308061,4.8368187543389265,4.835126580793718,4.839840136140185,4.839171176264314,4.837860687915425,4.838524160270745,4.842786131686545,0.15497972661330506,0.20122263522887593,,0.20165878262835876,0.20153411476412195,0.20146360753307158,0.20166000567250772,0.2016321323443464,0.2015775286631427,0.20160517334461436,0.20178275548693936,2.189061601041214,2.450179221755069,,2.4523443629134016,2.451725959816442,2.451376046018578,2.452350427813845,2.4522121988449253,2.4519413537396715,2.452078486019292,2.4529589395039126,239.27999999999986,440.46472988328253,137.74340611336427,,135.72043774717326,136.2063643307025,136.52021229859105,135.71084893655427,136.38101239264023,136.0997319672473,136.02974197670272,135.89209808277968,18.352697078470104,5.739308588056844,,5.655018239465552,5.675265180445938,5.68834217910796,5.654618705689761,5.682542183026676,5.670822165301971,5.667905915695947,5.662170753449153,6.963299111155099,5.800861315735668,,5.786065902634411,5.789639857809484,5.791941416464381,5.785995248947136,5.7909212677407504,5.788856677628392,5.788342290185727,5.787329911734265,0.0,36.97520213823401,11.98497313335378,6.3524143022682,-2.204259116971958,6.735427453538069,0.8488293143244443,0.0,0.0,302.2298906810684,138.59154327181753,-369.4878264511427,-26.59405686505587,-9.23719566127857,-23.09298915319642,158.53197986587224,422.6494292566894,16.574600897316266,10.566235731417235,17.61039288569539,1383.0,39.0,1.8506924494489134,0.8464720594062694,0.0,0.0,0.7026573033928827,0.1990864925765882,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.33239598128474673,0.15766925789197522,0.7001704470182966,0.2808035078359428,1.060737239963053,0.3876689287992743,17.430356941388638,13.363431466498916,11.413591357920932,7.852190916832748,10.610370602396298,6.20377775221002,9.088370951253387,4.686835198910385,7.423193912508867,3.278539058012186,5.821717530103579,2.248263536240622,3.6695672130524786,1.318074081762907,2.6014073883724995,0.7799219281016843,4.7829504924575685,1.8891407597778738,7.46142623189444,2.4900794275392832,11.639104327750285,3.268166066247663,78.00008880573228,39.80373276142603,29.90162818148969,25.15473469754145,24.713062045970602,24.713062045970602,128.0,155.0,46.07668799999999,20.875311999999997,0.425,124.08,9.11111111111111,5.249999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,6.0,6.0,40.0,0.0,1.0,42.0,6.0,4.0,7.0,35.0,10.0,26.0,32.0,0.0,0.0,0.0,16.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,4.0,3.0,2.0,24.0,8.0,0.0,3.0,4.0,0.0,3.0,4.0,0.0,0.0,1.0,0.0,1.0,3.5263605246161616,5.65861075600948,4.051784947803305,4.51906748693468,4.935372809595709,5.2816161748246255,5.221368825333784,5.465948207931988,5.5202101359605935,5.499981886185123 +28061,Cc1ncc([N+](=O)[O-])n1CC(O)CCl,0,37.083333333333336,6.882650000000001,3.1666666666666665,9.816872427983538,170.62377027195376,151.38350570833333,1.42835171035375,6.963695833333333,8.184248463140781,8.445997208333333,214.93923189690926,30.0,6.898541666666666,3.8333333333333335,8.231481481481481,156.15123005692712,115.7385689583333,1.6449419489999995,7.013550000000001,3.769290123456791,8.301427083333335,248.26726448201381,24.926829268292682,6.721678048780489,3.3902439024390243,6.861788617886178,163.97485304097253,93.70157853658533,1.393710202445,6.8276414634146345,4.524716450868212,8.243126390243903,205.61794440927974,23.291666666666668,6.809414583333332,2.8541666666666665,4.9467592592592595,169.8854342339591,86.45585208333331,1.2639921524634374,6.884079166666669,3.874871399176954,8.356995833333334,183.49901652413794,19.150943396226417,6.495832075471698,2.452830188679245,4.639412997903564,167.3176817260936,68.52332016981131,1.1682427320904154,6.590898113207547,3.92045189843932,8.10909,162.83082935895854,19.782608695652176,6.517391304347826,2.1739130434782608,3.243961352657005,169.33399669468784,73.24628747826088,1.0955031982030219,6.574873913043478,4.119252102343889,8.12708339130435,155.8692443915474,21.7,7.0202550000000015,1.55,2.5277777777777777,175.63819717491495,78.6078389,0.9943558087848998,7.073600000000001,6.104063786008231,8.735787,136.00615659449153,16.666666666666668,6.208083333333334,1.0,0.4212962962962963,182.86097756296866,57.759092500000015,0.7439632389245,6.3765333333333345,3.4403292181069958,8.2863615,84.42498731312877,,,,,,,,,,,,14.520833333333334,0.20042499999999994,0.032788699218982115,0.6597222222222222,5.162465706447188,1.3738504438771866,67.64194212326389,0.23261583909524308,0.19285815972222217,3.7252861500618137,0.14175428993055553,44.6529860580167,0.11458333333333333,0.021364583333333322,-0.008968045847975703,0.20486111111111116,1.5794753086419755,-0.492021128158854,0.4995012500000036,-0.011797257006944424,0.01611423611111112,-0.27799211248285327,0.010271923611111103,-3.5500233994056583,-0.8216463414634146,0.018646951219512178,-0.0020576865175511152,-0.011348238482384783,0.8694774833550803,-0.157589161328529,-3.792568498263888,-0.021542545671726785,0.01179621019647695,0.7584491179607347,0.0034817669800135485,-0.35639012820670485,-0.8541666666666666,-0.012292708333333317,0.004593728703921255,-0.08159722222222222,-0.5266632373113854,0.22103504694539056,-4.068158550347219,0.00396696783900173,-0.011441666666666649,-0.21694614853765526,-0.0020595789930555556,-1.7407523774736082,-2.0224056603773586,-0.002028773584905666,-0.004759215769166313,-0.14871593291404608,0.293315021870228,-0.1540768004426685,-9.624813080811057,-0.06700333795772105,-0.00511720060272537,0.023909293472929485,-0.005118752980870009,-9.188241184986495,1.8668478260869565,-0.00018043478260871168,-0.0004287268388243905,-0.20682367149758454,-0.7573172004532716,-0.13527758088734498,8.8641172544535,0.00972636671780586,0.0038121301328502173,-0.2366603164689313,-0.006689773626207719,3.718765646365414,-1.8125,-0.06781499999999994,0.0012857594238925216,0.019444444444444386,-2.2624657064471876,-0.01494410015903729,-8.381581889930553,0.02112523434169861,-0.06239670138888885,-0.5784054344696776,-0.03265110243055557,-9.565477620506334,-0.3541666666666667,-0.01099583333333336,-0.00390981781037322,0.3402777777777777,-0.018175582990397798,0.25668242754241644,-1.4706433940972303,0.018472028515194413,-0.001823437500000016,-1.0816342677268034,-0.004433446180555553,14.419396089853008,,,,,,,,,,,,,,,0.45816326530612245,1.1071428571428572,0.42857142857142855,0.03571428571428571,0.6785714285714286,-0.25,0.7331080477767874,0.025461732293480668,0.03160458943633781,0.7136203959259321,0.22627385002380676,0.2421368149950765,1.4467284437027195,0.46841066501888323,1.9305479132451016,0.9978708111456436,0.44319903690545553,0.36785979904687244,0.12161826614713005,0.932677102099458,9.1267112025,890.0,165.1836,76.0,235.60493827160494,4094.97048652689,3633.2041369999997,34.28044104849,167.1287,196.42196311537873,202.703933,5158.541565525822,720.0,165.56499999999997,92.0,197.55555555555554,3747.6295213662506,2777.7256549999993,39.478606775999985,168.32520000000002,90.46296296296298,199.23425000000003,5958.414347568331,1022.0,275.58880000000005,139.0,281.3333333333333,6722.968974679874,3841.7647199999988,57.142118300245,279.93330000000003,185.5133744855967,337.968182,8430.33572078047,1118.0,326.85189999999994,137.0,237.44444444444446,8154.5008432300365,4149.880899999999,60.671623318245,330.4358000000001,185.9938271604938,401.1358000000001,8807.952793158622,1015.0,344.2791,130.0,245.88888888888889,8867.837131482962,3631.735969,61.91686480079201,349.31759999999997,207.78395061728398,429.78177000000005,8630.033956024803,910.0,299.8,100.0,149.22222222222223,7789.36384795564,3369.3292240000005,50.393147117339005,302.4442,189.4855967078189,373.8458360000001,7169.98524201118,868.0,280.81020000000007,62.0,101.11111111111111,7025.527886996598,3144.313556,39.774232351395995,282.944,244.16255144032925,349.43148,5440.246263779661,400.0,148.994,24.0,10.11111111111111,4388.663461511248,1386.2182200000004,17.855117734188,153.03680000000003,82.5679012345679,198.872676,2026.1996955150905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.5,4.810199999999998,0.7869287812555708,15.833333333333334,123.89917695473251,32.97241065305248,1623.4066109583334,5.582780138285834,4.628595833333332,89.40686760148353,3.402102958333333,1071.6716653924009,2.75,0.5127499999999997,-0.21523310035141688,4.916666666666668,37.90740740740741,-11.808507075812496,11.988030000000087,-0.2831341681666662,0.3867416666666669,-6.6718106995884785,0.2465261666666665,-85.2005615857358,-33.6875,0.7645249999999993,-0.08436514721959572,-0.4652777777777761,35.64857681755829,-6.461155614469688,-155.4953084288194,-0.8832443725407981,0.483644618055555,31.096413836390123,0.1427524461805555,-14.611995256474898,-41.0,-0.5900499999999992,0.22049897778822022,-3.916666666666667,-25.2798353909465,10.609682253378747,-195.2716104166665,0.19041445627208303,-0.5491999999999991,-10.413415129807452,-0.09885979166666667,-83.55611411873319,-107.1875,-0.10752500000000031,-0.25223843576581456,-7.881944444444443,15.545696159122084,-8.16607042346143,-510.11509328298604,-3.5511769117592156,-0.27121163194444464,1.2671925540652627,-0.27129390798611047,-486.9767828042842,85.875,-0.008300000000000737,-0.019721434585921963,-9.51388888888889,-34.836591220850494,-6.22276872081787,407.749393704861,0.44741286901906957,0.17535798611111,-10.88637455757084,-0.30772958680555507,171.06321973280905,-72.5,-2.712599999999998,0.051430376955700866,0.7777777777777755,-90.4986282578875,-0.5977640063614916,-335.2632755972221,0.8450093736679444,-2.495868055555554,-23.136217378787105,-1.306044097222223,-382.61910482025337,-8.5,-0.26390000000000063,-0.09383562744895729,8.166666666666664,-0.4362139917695471,6.1603782610179945,-35.29544145833353,0.4433286843646659,-0.043762500000000384,-25.959222425443283,-0.10640270833333326,346.06550615647217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7653698907638801,0.595047219268071,0.46841066501888323,0.3252505544112468,0.30923592508749276,0.16798403521160507,0.19408475937577072,0.09496275863888443,0.11746607889764055,0.044915313430675306,0.08475212933886206,0.0275599582928375,0.06313554306954366,0.01740352321479371,0.04016589353687722,0.009956533370238229,17.001101399721,5.825626687451004,3.607578486585923,2.3111669824665966,0.5039909511653742,-0.4836544511358359,3.2434645267764592,0.9728359388929498,7.004115665078592,0.767921944960528,14.595627672905835,11.102162264533677,35.45051683388867,11.847993290340774,2.203701885699272,0.6691304790174347,3.5530757065306204,2.3565754721745362,8.001935020827663,1.2312696418667997,3.7569146962841558,2.5497580088458074,22.45577664866815,14.651574460360019,0.4176278231961269,0.7539531690476382,0.8875447672619319,0.8875447672619319,0.8875447672619319,0.8875447672619319,2.5304329567808495,338.92105238960744,0.0,3.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,2.5991891836501577,1.0000000000000004,0.36478697925681214,0.36478697925681214,0.36478697925681214,0.36478697925681214,24.638129422143408,630.046608404165,62.06885732752401,26.251942016840207,61.80117631956845,,7.0,152.0,11.027277436565974,15.220845663606278,18.242622628717942,5.824404497999927,6.196843571613076,4.567099647791355,6.923737199690624,0.0,4.9839785209472085,11.600939890232516,6.414285714285715,15.5,6.0,0.5,9.5,0.0,0.04183673469387753,-3.5,0.27440476190476176,0.031364468864468864,-0.2430402930402929,0.04659863945578224,0.25536874361593453,0.0,0.7077380952380955,0.9989795918367346,0.43333333333333374,0.6763736263736266,0.9523809523809523,10.263512668875023,0.35646425210872934,0.4424642521087293,9.99068554296305,3.1678339003332945,3.389915409931071,20.254198211838073,6.557749310264366,0.45863125638406543,0.3452115812917594,0.0,0.3585746102449888,0.5714285714285714,0.4672691962672947,-0.7822017143381866,-0.11894182532470253,-0.03259173809742444,-0.11174310204831236,0.5327308037327052,0.8917834757549762,0.045970336008017414,0.03715764482312401,0.052457851514998606,-1.5597604073453097,0.5596006695361071,0.5905259483320168,1.1727022944972088,0.9381578947368421,0.4195881424894129,1.7970917255807572,0.5641874530518803,1.048546144943746,0.5760957921903961,0.6645436688910492,0.6090974723219906,1.0274740397146722,0.8748644014417188,0.6882336417227212,1.0440873800668677,1.293196405648267,0.6953339962694652,1.3016689829829744,0.8764626473709236,1.0779204500637072,0.7166546826491722,0.4666253958160528,0.7476835742931598,0.9738586464891028,0.8717120994739359,0.9648232315357643,0.8445762458564362,1.1651315789473684,0.9860416839657893,0.9319530934767897,0.8744210689045094,0.8735048969181668,0.9443896322048713,0.7666923704126678,0.8777134580154471,0.9463329744426409,1.0410113424108713,0.8480903002503327,1.0614661130916196,1.1922542204568023,0.8627499886413308,1.1180559906381653,1.0457755231257515,1.2502496344651832,0.8751727090848066,0.8068294078664446,0.866483144110567,1.1907554013299633,0.6786226685796269,0.9803074716228017,0.9015725005112776,1.294736842105263,1.0971933903512412,1.0029555574289115,0.678616939412153,0.8488919590360927,0.9422620071061869,1.0659306057103373,0.9877906521812959,0.8870554513521413,1.2407460545193687,1.67677851232797,1.0686313879668776,0.5447368421052631,1.596917711533671,0.713091239156341,1.234621218165929,0.8120905804695558,1.63154502400386,1.7413618365998944,1.5900283490097682,1.0798476730087074,2.034911525585844,1.257675529777002,1.0013586671736154,0.0,1.250743170306402,0.035460378544485235,2.0218746088278956,1.1215014606487024,1.3529229076852862,1.7778682081148212,1.401386563955032,0.7866642422713752,,,,,,,,,,,,,3.5,0.0,2.000000000000001,1.1944444444444444,0.9250000000000002,0.4377777777777778,0.13718820861678005,0.0,0.0,0.0,2752.258662221659,3035.1286301244195,1408.4647311092106,1303.7524459967958,7.306184398084854,0.384609858766725,4.496153848613789,0.6249854084369082,1.0,0.5714285714285714,1.9857733170709984,3.5849625007211556,4.220175521464344,4.220175521464344,4.220175521464344,4.220175521464344,0.24999999999999994,0.0,0.10526315789473688,0.06635802469135803,0.05781250000000001,0.03126984126984127,0.017148526077097506,0.0,0.0,0.0,0.5278520499330338,12.071428571428571,5.185595567867036,2.9943289224952743,85.28042716721701,1.0,3.5301273725700177,44.77200607025787,,33.77945387100963,33.960341174379245,33.581890719816094,33.758928356460416,57.908760787097805,34.397406837095325,34.83386939502119,48.6637736063785,0.007890961262553802,0.10659639931811565,-0.2735102660853316,0.31052631578947376,0.30595366603005897,-0.35813296152549595,0.007384490071112426,-0.05071562217271934,0.08355485779974675,-0.07462302257726981,0.07246287654605198,-0.07950248601052538,-0.05658396612660531,0.09303705236129317,-0.06275596673746284,-0.017201540436456934,0.16842290734623694,-0.11470619821164206,-0.056068296965109184,-0.09260996910406573,0.06116521185034272,0.20359486155127968,0.024561986672285138,-0.007981328006679207,-0.058823529411764705,-0.061333208598395014,0.14010097421802697,-0.1236842105263158,-0.1020177696587229,0.16088726973920145,-0.06014254503417147,0.017053730538862746,-0.059326847685088,-0.05823610316057344,-0.014529218086200632,-0.038984008263453745,-0.13927614303889987,-0.010122357913961167,-0.1451480504725572,-0.22542204568023827,0.0568168465514297,-0.11214961652437475,-0.14229060814474787,-0.28804288744192935,-0.02653349285348251,0.006418109243106804,-0.036110039303767466,-0.20576991588084173,0.1285634083962323,-0.0009002608587187813,-0.013075445169724541,-0.3135011441647597,-0.14669680023394438,-0.09846601679988826,0.13104468878643996,0.04181300274150059,0.019766496467356693,-0.06352809071190528,-0.04719274195853256,0.08328145494085655,-0.12482065997130559,-0.33835599351378304,0.03921349289599651,0.029473684210526225,-0.4382529270115419,-0.010877530538814018,-0.12391101773300357,0.09081597548930886,-0.32353674575532704,-0.1552646994540487,-0.2303359033899512,-0.21421809524850377,-0.024390243902439025,-0.05486258367635456,-0.1192428459653483,0.5157894736842104,-0.0035207174292119885,0.18683433024778512,-0.021741590320060254,0.07941002034530914,-0.009454811259354299,-0.2903493112089808,-0.031275569739211896,0.3229212055632334,,,,,,,,,,,,,0.9654893846056297,4.500000000000001,1.1447142425533319,24.782998947506968,40.94975600451609,41.590050729425215,41.590050729425215,41.590050729425215,41.590050729425215,27.02767078543142,13.97019135603901,6.204786516676378,5.150037186656214,1.7026557260598207,13.057479429392412,1588.5269360845543,1081.59036780794,631.8308872319562,2.0,19.0,23.0,27.0,27.0,22.0,12.0,8.0,6.0,219.04106886,14.0,4.204692619390966,5.017279836814924,5.877735781779639,6.725033642166843,7.591357046698551,8.448700194970938,9.316770315592029,10.178274337002176,11.046993535094547,0.7916666666666666,1.034,1.1553518778362921,0.7618884078483612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6547886726546907,1.0204248366013073,1.0494203690216073,0.6340951217857387,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,15.220845663606278,18.845566365273953,5.824404497999927,0.0,0.0,0.0,9.551078168738563,0.0,11.600939890232516,0.0,4.923311048817671,6.923737199690624,5.880003444970339,175.86856446654986,-294.4013723199491,-44.76676023582912,-12.266723846664544,-42.057338902849864,200.50669388869326,335.64523608421587,17.30209709169489,13.985218170175663,19.743837416718584,0.42857142857142855,0.6314235572737907,0.2316475793756466,56.73152999644073,0.20456650895964104,27.946230627558474,0.36857644272620915,4.0,0.2857142857142857,0.43310568336353056,0.7818957080144684,0.9204383941636523,0.9204383941636523,0.9204383941636523,0.9204383941636523,0.6994199999999999,,1.8256302521008405,1.5307538883234373,1.3268122266032867,1.8364820400205,-4.56748329343447,1.4527533969601663,1.3760575526549403,-2.0716686891667537,50.34520000000003,10.029838443658377,0.0,9.551078168738563,0.0,19.5724599933515,5.880003444970339,22.135566338378577,0.0,0.0,3.367295829986474,0.0,4.653960350157523,2.3978952727983707,6.12029741895095,4.727387818712341,7.6708948313621175,6.803505257608338,9.272281773516365,19.0,1.1629809145880574,3.7922779667422524,0.0,0.0,0.0,0.0,0.3541975308641976,1.3264351851851852,24.816000000000003,0.0,10.5350141723356,0.0,-0.5407227891156459,0.0,0.0,0.0,0.0,27.72844506807101,0.0,5.817862777835028,0.0,31.56488644511558,6.544756405912575,17.038055468456196,5.824404497999927,6.196843571613076,0.0,0.0,0.0,18.28532178836067,15.714928143712577,16.675864452664676,89.54401214051575,,67.29810342029054,67.70200322185511,66.97423683583169,67.25550213577503,116.47001918754339,68.5872774746249,69.4711591396631,97.62349988263794,16.675864452664676,89.54401214051575,,65.73327748991841,66.38992846043502,65.83696921302888,65.68137467290032,120.38500486763007,67.34206027723047,68.2916812373874,99.39921590192375,4.618325143831886,63.528266707883944,,49.15999170824128,49.427973422128545,48.756427423175595,49.13168599750514,81.76511570015053,50.019510610457154,50.63400351782546,69.58915353316922,1.191133175190334,6.396000867179696,,4.80700738716361,4.835857372989651,4.7838740597022635,4.803964438269645,8.319287084824527,4.899091248187493,4.962225652833078,6.973107134474139,2.3821544585813106,44.77200607025787,,33.779453871009615,33.96034117437923,33.58189071981608,33.7589283564604,57.908760787097805,34.39740683709532,34.83386939502118,48.6637736063785,24.490196078431374,0.0,1.6328883219954649,5.3995663265306115,0.0,0.0,9.257239229024943,25.186088856518573,0.12541761148904018,0.0,0.0,0.0,-0.8025308641975311,0.0,0.0,0.0,0.0,15.218282922857728,237.65220450050967,47.65855960970396,86.03910001730773,101.28421251514425,101.28421251514425,101.28421251514425,101.28421251514425,174.0,96.4068373095106,138.72305385473345,59.01351855309248,81.19,81.19,0.75,6.275232720238627,4.807354922057604,3.251179723227032,3.680253465593256,,3.6783326860648033,3.6681937308306676,3.665753012446248,3.67853315695748,3.6531967788170294,3.6704074645837026,3.6714225170763495,3.6686026328086947,0.23222712308764515,0.2628752475423754,,0.2627380490046288,0.26201383791647626,0.2618395008890177,0.2627523683541057,0.26094262705835924,0.26217196175597873,0.26224446550545355,0.26204304520062105,1.5154901588594518,1.6394538629500806,,1.6389318116939045,1.6361716060957907,1.6355060112776219,1.6389863106876346,1.6320748507133636,1.6367749182969131,1.6370514304203618,1.636283072179401,145.51999999999992,70.28466351614053,58.48135710562365,,58.461636569975596,58.86504203540453,59.07522894083774,58.45229115558083,59.83506862563592,58.79754606116228,58.759676301800404,59.117509468993326,5.020333108295752,4.177239793258832,,4.175831183569685,4.204645859671752,4.219659210059839,4.175163653970059,4.273933473259708,4.199824718654448,4.197119735842886,4.222679247785238,4.589025853972846,4.405180258113988,,4.40484299060928,4.411719637249556,4.415283935113467,4.40468312232675,4.428064157560649,4.410572357001218,4.409928079092798,4.415999385665302,1.3264351851851852,13.786569349962207,19.792253401360544,0.0,0.3906799571680526,0.0,0.36045005039052636,1.72182350718065,0.0,173.0345504013129,66.19257638766344,-110.80539256705897,-16.849100949487408,-4.61689135696079,-15.829341795294136,75.46575871431259,126.32856244690332,6.512081262974165,5.263690101954307,7.431091908641373,302.0,18.0,1.1298762552995707,0.4112819463051033,0.0,0.0,0.2878633639084475,0.06813735069982924,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.21982198216447035,0.06371368471241509,0.31327546854248245,0.06818549530009387,10.71517847069432,8.330661069752994,6.557749310264366,4.553507761757455,5.875482576662362,3.191696669020496,4.4639494656427265,2.184143448694342,3.171584130236295,1.2127134626282332,2.2883074921492756,0.7441188739066125,1.3889819475299605,0.3828775107254616,0.4819907224425266,0.11947840044285875,2.3817609785272875,0.8248527330700467,3.2259315054140223,0.9166167575217898,4.59468695985188,1.0425381290012212,47.16101796761347,24.47681771344152,22.761278649288872,22.761278649288872,22.761278649288872,22.761278649288872,66.0,75.0,26.24392999999998,14.558069999999997,0.20833333333333334,14.07,6.555555555555555,3.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,24.0,0.0,0.0,24.0,5.0,1.0,3.0,21.0,6.0,14.0,18.0,0.0,0.0,0.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,5.0,1.0,1.0,14.0,7.0,0.0,3.0,3.0,0.0,1.0,4.0,0.0,0.0,1.0,1.0,1.0,2.917770732084279,2.7842393394597567,3.4420193761824107,3.9194950202668473,4.398299756272724,4.51085950651685,4.51906748693468,4.057205015272644,3.840795496139778,3.7256934272366524 +44561,O=C([O-])P(=O)([O-])[O-],0,83.0,10.249085714285714,4.285714285714286,33.61552028218695,166.2887788940857,340.4968654903778,2.74026,10.066657142857142,41.83927891000936,11.517760142857142,300.32114619110837,91.0,7.379999999999999,5.0,10.888888888888888,142.19912308341665,373.8335813493334,2.9124266666666667,7.621550000000002,5.448216735253773,9.090564666666666,364.37770631378265,71.11111111111111,9.963333333333333,2.3333333333333335,29.135802469135804,165.27240732933333,287.9402674973333,1.3792617777777783,9.85751111111111,30.556584362139915,11.320903999999999,276.94051139180533,64.0,12.25,1.0,43.333333333333336,185.45128580250002,255.968001,0.643204,11.833599999999999,57.5,13.351715999999998,216.39077696435706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.061224489795919,0.3175836734693877,0.10518786676112371,1.3469387755102038,4.831443688586545,1.5800096937265309,31.84335811126254,0.9713599999999998,0.2429102040816327,9.221481528139376,0.21759767346938766,13.455859910946538,-4.442176870748297,-0.14741224489795898,-0.03131267862964809,-0.6326530612244897,-2.5521961871168206,-0.7160147869003408,-20.029086065708054,-0.5367066666666663,-0.11192687074829925,-4.051142820334964,-0.09693019727891172,-6.497381952246003,-0.12471655328798231,-0.10623129251700682,-0.037455514469376415,-0.44217687074829926,-1.1622295008538397,-0.5470414663900227,-0.6731026036989121,-0.20580266666666663,-0.08215464852607711,-3.2173307683587584,-0.07701083219954644,-4.207216010702183,0.510204081632652,0.12150204081632633,0.026136361389723875,0.510204081632653,1.4771982867220952,0.6149046651448984,2.4634477396866092,0.27878399999999987,0.09346122448979587,3.4979414147917987,0.08551446938775525,4.958954353580466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.45238095238095244,1.0357142857142858,0.42857142857142855,0.0,0.6071428571428571,-0.17857142857142858,0.4576314077497336,0.0672625556284329,0.0672625556284329,0.7294258889300524,0.21844505525299812,0.20203718374329682,1.187057296679786,0.42048223899629494,1.7561507202189932,0.2768848839190203,0.0,1.1848366600193907,0.0,1.4792658362999727,17.564282924247145,581.0,71.7436,30.0,235.30864197530866,1164.0214522586,2383.4780584326445,19.181820000000002,70.4666,292.87495237006556,80.624321,2102.2480233377587,546.0,44.279999999999994,30.0,65.33333333333333,853.1947385005,2243.0014880960002,17.47456,45.72930000000001,32.68930041152264,54.54338799999999,2186.266237882696,640.0,89.67,21.0,262.22222222222223,1487.451665964,2591.462407476,12.413356000000004,88.71759999999999,275.00925925925924,101.88813599999999,2492.464602526248,384.0,73.5,6.0,260.0,1112.7077148150001,1535.808006,3.859224,71.0016,345.0,80.11029599999999,1298.3446617861423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.42857142857143,2.223085714285714,0.736315067327866,9.428571428571427,33.820105820105816,11.060067856085716,222.90350677883777,6.7995199999999985,1.7003714285714289,64.55037069697563,1.5231837142857136,94.19101937662576,-26.653061224489786,-0.8844734693877538,-0.1878760717778885,-3.795918367346938,-15.313177122700925,-4.296088721402045,-120.17451639424831,-3.220239999999998,-0.6715612244897955,-24.306856922009786,-0.5815811836734703,-38.98429171347602,-1.1224489795918409,-0.9560816326530613,-0.3370996302243877,-3.979591836734693,-10.460065507684558,-4.923373197510204,-6.057923433290209,-1.8522239999999996,-0.739391836734694,-28.955976915228828,-0.6930974897959179,-37.86494409631965,3.061224489795912,0.729012244897958,0.15681816833834325,3.0612244897959178,8.86318972033257,3.6894279908693903,14.780686438119655,1.672703999999999,0.5607673469387752,20.987648488750793,0.5130868163265315,29.753726121482796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.868192895598518,0.541718683779326,0.4905626121623441,0.43763907302764465,0.3911917713515211,0.22124615187191907,0.28867513459481287,0.10233264501317181,,,,,,,,,15.010857927197602,5.971204749673689,3.5585355112019363,1.9935811289176204,0.2199596414538217,-0.8391706657957105,4.032451204599261,0.9718896348172904,7.006092315962539,0.5408416450049427,13.645389241266013,10.452523576750597,30.97884996607953,11.996435714912913,3.65902743460816,0.7416560320320325,3.505600716898029,2.113456892288247,8.004938197235706,0.2946955007525798,3.721215220243957,2.4237746905703452,24.43864582798661,14.70038096217959,0.3829449514269722,0.8405468787811062,0.8405468787811062,0.8405468787811062,0.8405468787811062,0.8405468787811062,3.541196965079901,120.04184397996642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6585200677766876,0.2857142857142856,0.2857142857142856,0.2857142857142856,0.2857142857142856,0.2857142857142856,-230.19778379622545,731.9351041755724,147.22858365520946,104.56215773936748,122.46374024466061,,3.0,29.0,13.306156019281646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.25293606934881,3.166666666666667,7.25,3.0,0.0,4.25,0.0,0.047619047619047575,-1.25,0.7973084886128362,0.0,-0.7973084886128362,0.0,0.3429062499999999,0.0,1.219047619047619,1.219047619047619,0.4217391304347827,1.219047619047619,1.219047619047619,3.203419854248135,0.4708378893990304,0.4708378893990304,5.105981222510367,1.5291153867709868,1.4142602862030778,8.309401076758503,2.9433756729740645,0.37109375000000006,0.5263157894736841,0.3157894736842105,0.15789473684210525,0.0,0.9682828978368746,-2.9755805124810895,-0.5966865083948416,-0.4250829303544413,-0.4959300854135149,0.03171710216312537,0.002316893475534551,0.002316893475534551,0.00033098478221922157,0.002316893475534551,0.04408576757570937,2.3872832369942194,1.8925046267735972,1.435304256471341,1.9090909090909094,2.0338183145598667,1.8595134062973704,2.3869636169393877,2.157593477186625,1.8823240300438557,1.807452291597544,1.836368110928557,1.9485990479791546,0.7418111753371868,1.071663582150936,1.2178954171632697,1.0606060606060608,0.9478862466972606,1.0936577291350862,0.7420242553737408,0.8949376818755834,1.0784506466374293,1.1128733611310233,1.1090879260476287,1.03426730134723,0.0,0.0,0.23785261778375436,0.0,0.04435231539424281,0.0,0.0,0.0,0.0,0.023237666705921478,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.5,0.0,1.333333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1401.9010049684866,1401.9010049684866,901.8573817378071,901.8573817378071,4.063973228986091,0.3429514961560811,2.6702275297670512,0.5219576547997876,0.0,0.0,1.1488348542809166,2.5216406363433186,2.5216406363433186,2.5216406363433186,2.5216406363433186,2.5216406363433186,0.5833333333333333,0.0,0.14814814814814822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7314814814814815,7.0,1.8518518518518519,2.6666666666666665,38.746414800809205,1.0,2.792780836469296,12.394485397636673,,5.151058912164186,10.19509957307279,10.051174047759623,5.07934595996917,10.97140607666562,10.06928157052355,9.658887311319287,11.735308092408884,-0.6290944123314063,-0.46416820892453164,-0.2976833697061048,-0.4696969696969697,-0.5282471144486162,-0.45317113543245713,-0.6289878723131295,-0.5525311590622081,-0.46077467668128497,-0.4393158309728096,-0.4454560369761866,-0.48286634932638445,-0.017662170841361655,-0.3344985948317226,-0.3560820807825296,-0.3282828282828283,-0.24055532378436015,-0.34622665200224084,-0.021137927769648304,-0.2118706418492286,-0.33820995226066386,-0.34889521369652643,-0.35391385841439416,-0.3126679408485482,0.07225433526011545,0.3825827678387821,0.2484731575465659,0.3787878787878788,0.30574676679182294,0.38917778010248494,0.07736143063426855,0.28700378850271774,0.3847562717389475,0.3793253181842658,0.39299349126444455,0.3685349272658735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.786552909161372,44.75007261637773,44.75007261637773,44.75007261637773,44.75007261637773,44.75007261637773,12.293055041532952,1.938194187433142,0.0,8.293856620135735,0.0,10.354860854099808,294.2883323594461,249.69764367970805,157.73310392923656,0.0,9.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,122.94998046973001,6.0,3.4339872044851463,4.110873864173311,4.9344739331306915,5.666426688112432,6.47543271670409,7.221835825288449,8.026496938945412,8.776630098427717,9.580040123637605,1.4523809523809523,1.2605714285714285,1.1397468476480583,1.462703973738359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7964071856287426,1.2291316526610647,1.224170221621059,0.8230071821115991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.25293606934881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.595762326787885,0.0,5.710393692493761,237.99350584812632,-731.3656367170942,-146.65911619673122,-104.48080524529915,-121.89427278618237,7.795722051900867,0.5694674584782478,0.5694674584782478,0.08135249406832111,0.5694674584782478,0.3333333333333333,0.03417502006039454,0.2624549791176254,182.08105138135443,1.0,7.795722051900867,0.9658249799396056,2.0,0.16666666666666666,0.4092232318950598,0.8982265179691366,0.8982265179691366,0.8982265179691366,0.8982265179691366,0.8982265179691366,-2.7566,,1.85,1.2149791955617197,0.7919002734457309,1.858548070750191,-4.871526418114493,1.1292210895189552,1.1506250945340546,-1.8373935151186604,13.0025,24.25293606934881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5649493574615367,0.0,3.8918202981106265,0.0,5.37989735354046,0.0,6.9167150203536085,0.0,8.46653127661401,10.166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.824,0.0,18.16280864197531,0.0,0.0,0.0,0.0,0.0,-2.562499999999999,7.978227933536408,14.893350600345656,4.794537184071822,0.0,5.710393692493761,4.565048284931329,0.0,0.0,0.0,0.0,0.0,0.0,10.238927816168513,5.574850299401198,6.60272049554314,24.788950386259707,,10.001159370652527,20.042804128939608,19.875810137921707,9.874513011458575,24.84787021182522,19.815638787190125,18.988578651218372,23.995546446263663,6.6027204955431404,24.788950386259703,,9.208302227795386,19.17496184639552,19.31016708546047,9.077992409708493,26.935667248159994,19.009052294676593,18.166703583694044,25.307970385634135,4.350655494322151,17.422364387436463,,7.118546658075121,15.112402549466102,14.671231163049864,7.010237805770852,16.73461525798064,14.854396909275998,14.184075814812617,16.78410122045508,0.9432457850775914,3.5412786266085297,,1.428737052950361,2.8632577327056583,2.8394014482745296,1.4106447159226536,3.5496957445464603,2.8308055410271606,2.712654093031196,3.427935206609095,2.1753277471610755,12.394475193129855,,5.119467960252849,10.194970520978622,10.0510336794531,5.045041772560229,10.971361537335813,10.06913669209777,9.658664339114052,11.735288435257736,8.603921568627452,0.0,0.0,0.0,0.0,0.0,0.0,8.569191551347414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.761050274781193,8.399851794112314,8.041843979966416,17.65148445440323,17.65148445440323,17.65148445440323,17.65148445440323,17.65148445440323,28.0,71.22619739290485,237.3893761059149,34.219913306080244,113.13,103.32,0.5,3.7376696182833684,3.584962500721156,2.4536892773649757,2.6065570725517664,,2.5872681093004815,2.608839675010885,2.606599446283428,2.5861553631377023,2.5885217378464866,2.6082183286462723,2.607691356767197,2.6003375020067883,0.35052703962356796,0.3723652960788238,,0.3696097299000688,0.37269138214441216,0.37237134946906114,0.3694507661625289,0.3697888196923552,0.37260261837803893,0.37252733668102816,0.3714767860009697,0.5409177754924671,0.6013552772884186,,0.5939275910426626,0.6022306095844441,0.6013715337470572,0.5934974131591519,0.5944120112403687,0.6019924115935018,0.6017903483245222,0.5989663011284637,64.01,14.730337758386336,18.716622159976648,,18.505703985061043,18.38431643766076,18.44979742743105,18.50936353873353,18.49972278399926,18.402552410223848,18.411797192288653,18.602077614329104,2.1043339654837623,2.67380316571095,,2.643671997865863,2.626330919665823,2.6356853467758645,2.644194791247647,2.642817540571323,2.628936058603407,2.6302567417555216,2.657439659189872,2.333234216238047,2.5727370706572397,,2.561404064140432,2.5548229896860217,2.558378446944496,2.561601797330143,2.5610808033845873,2.555814429002711,2.556316666981051,2.56659833023759,9.141203703703704,27.304012345679013,9.021604938271604,-2.562499999999999,0.0,0.0,0.0,0.0,-5.4320987654321,83.0396855078822,58.496240047631574,-179.76179516130634,-36.04723093449494,-25.68025645161519,-29.960299193551062,1.9161045040599296,0.1399689669335593,0.1399689669335593,0.019995566704794184,0.1399689669335593,42.0,6.0,1.6547005383792515,0.48460706609764553,0.28867513459481287,0.03912303982179758,0.8660254037844386,0.046730947378761725,0.28867513459481287,0.00603681610520369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.077350269189626,3.792030786455282,2.9433756729740645,2.625834438165868,3.52072594216369,1.9912153668472716,1.7320508075688772,0.6139958700790309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.598076211353316,0.35860923394948757,0.5773502691896257,0.03075903325376323,0.0,0.0,22.291402685322574,26.30947557120507,26.30947557120507,26.30947557120507,26.30947557120507,26.30947557120507,30.0,30.0,9.309999999999999,12.179999999999998,0.0,6.06,5.173611111111111,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,7.0,0.0,0.0,6.0,0.0,2.0,2.0,4.0,2.0,6.0,4.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,7.0,6.0,0.0,0.0,5.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.1972245773362196,0.0,2.70805020110221,2.5649493574615367,0.0,0.0,0.0,0.0,0.0,0.0 +8813,N=C(N)c1ccc(OCCCCCOc2ccc(C(=N)N)cc2)cc1,0,21.06122448979592,6.063461224489796,2.8979591836734695,6.326530612244898,164.55059667626483,82.90049046938776,1.4242085248239997,6.1294102040816325,3.886054421768708,7.5923044081632645,208.14018870193954,23.16,6.35448,3.44,6.16,149.84715338939998,86.82008723999999,1.7470038276,6.484979999999999,3.3277777777777784,7.7747636799999995,254.1063981678504,19.23170731707317,6.182680487804878,3.1097560975609757,4.682926829268292,152.60576052395785,70.48249562195122,1.5114266592432073,6.292776829268291,3.1778455284552845,7.675905414634146,212.0309021434211,15.277777777777779,6.0770740740740745,2.611111111111111,3.185185185185185,160.26338917022017,54.057333111111106,1.2710401556016666,6.1554166666666665,2.9032921810699595,7.637505925925925,172.46558484802932,13.064220183486238,6.000752293577982,2.293577981651376,2.3486238532110093,162.21839578159435,44.34333975229357,1.1816272226144955,6.071233944954129,2.773445463812436,7.581135596330276,153.81276787810305,10.88888888888889,5.763074074074074,2.111111111111111,1.9259259259259258,164.5015000540608,36.25429677777778,1.0870608605478518,5.829833333333333,2.3040123456790123,7.388766074074074,135.5929372002121,11.655913978494624,5.778602150537635,2.2580645161290325,2.3225806451612905,163.75306943799214,40.098376634408595,1.0956771255824516,5.839043010752688,2.4471326164874556,7.408042795698924,137.0557516085284,12.842105263157896,5.8531578947368414,2.473684210526316,2.0526315789473686,158.75068480341164,43.912156342105256,1.2355722309682104,5.939342105263158,2.2850877192982457,7.44992157894737,159.10056886392334,12.455696202531646,5.853443037974683,2.2911392405063293,2.1772151898734178,161.61549509010868,42.142584417721515,1.1785028943997975,5.933449367088607,2.507735583684951,7.433915189873418,150.12243519943107,7.26530612244898,0.1078692211578508,0.025735202902392125,0.49229487713452735,3.3877551020408165,1.503323235110203,34.63287600499792,0.2215143939747605,0.10288621407746766,1.0512980702485077,0.0616483665139525,49.7747645158055,-0.038367346938775776,-0.013989221157850904,-0.014415784734640029,0.13790920449812583,0.8016326530612244,0.22909113938423672,-0.10211273642649242,0.01607204554433173,-0.011421479383590132,-0.23542505437549172,-0.00811719916701377,3.5908619721970085,-0.12916874066699874,0.0028964831726617825,0.0034920909247954605,-0.0833849717089424,0.011946241911398774,-0.05154707134992802,-0.6691058589053364,-0.02034797233389864,0.0022993757682266813,0.19503094916413555,0.00019039008136851945,-3.490875427210079,-0.43424036281179146,-0.015267482684683854,-0.0012184566739405975,-0.06712480910731639,-0.510959939531368,-0.11480557731108575,-2.0073078908633755,-0.006781408050245772,-0.013446871673839586,-0.03528858003266816,-0.009725896370339528,-1.5894805587467427,-1.3548024714472944,-0.020014736978858187,-0.0016202267582458491,-0.02496666144458158,-0.6260999812769145,-0.23667964685824727,-6.4308031145279685,-0.032290344712468805,-0.0195283035738167,-0.13276429588249206,-0.01093800366055428,-8.291368425970962,-0.21466364323507184,-0.005235509895568195,-0.0038341570398090943,0.007327193916115192,0.0075585789871503665,-0.06461012739113395,-1.0269049604023002,-0.010733847332523179,-0.0044367053851019035,-0.10452306394969174,-0.003356405818563236,-1.7666655996155625,1.089313144612684,0.0443766423488421,0.012125448224398552,-0.03936531821418496,0.2843976300197498,0.17055594726623732,5.026592857850449,0.018703461174316503,0.03823818794140432,0.3334579827103103,0.028405296861074916,3.3124615828001103,-0.8281417830290012,-0.010532164229816517,-0.008882579784529068,-0.10024331966943599,-0.7379162191192266,-0.20679717313456744,-3.9275979706262745,-0.02028484300312571,-0.010805816655340974,-0.06409792703332676,-0.006098596374317708,-5.5697447371666495,-0.9237923017308189,-0.005011768303291341,-0.00011437373057430984,-0.015157186615281619,-0.22216481529320584,-0.25471862374993715,-4.5160804296943775,-0.05227917984766364,-0.005012848022184855,-0.1205667059728395,-0.0022483561807052858,-9.78182206767939,,,0.4706666666666666,1.24,0.64,0.04,0.6,0.04,0.7316113562314509,0.014226516572371822,0.02110651657237182,0.8787461366989673,0.2525169623084242,0.22982506361412786,1.610357492930418,0.482342025922552,2.000854022556217,1.5647987679284396,0.27334045083559894,0.16271480379217848,0.0,0.4360552546277774,6.942651551183687,1032.0,297.1096,142.0,310.0,8062.979237136977,4062.1240330000005,69.78621771637599,300.3411,190.41666666666669,372.02291599999995,10198.869246395037,1158.0,317.724,172.0,308.0,7492.35766947,4341.004362,87.35019138,324.24899999999997,166.3888888888889,388.738184,12705.31990839252,1577.0,506.9798,255.0,384.0,12513.672362964544,5779.564641,123.936986057943,516.0076999999999,260.5833333333333,629.4242439999999,17386.53397576053,1650.0,656.3240000000001,282.0,344.0,17308.446030383777,5838.191975999999,137.27233680498,664.785,313.5555555555556,824.8506399999999,18626.283163587166,1424.0,654.082,250.0,256.0,17681.805140193785,4833.424032999999,128.79736726498,661.7645,302.30555555555554,826.34378,16765.591698713233,1176.0,622.4119999999999,228.0,208.0,17766.162005838567,3915.4640520000003,117.40257293916798,629.622,248.83333333333334,797.9867360000001,14644.037217622907,1084.0,537.4100000000001,210.0,216.0,15229.03545773327,3729.1490269999995,101.89797267916799,543.031,227.58333333333337,688.9479799999999,12746.18489959314,976.0,444.84,188.0,156.0,12065.052045059285,3337.3238819999997,93.903489553584,451.39,173.66666666666669,566.1940400000001,12091.643233658175,984.0,462.42199999999997,181.0,172.0,12767.624112118585,3329.2641689999996,93.101728657584,468.74249999999995,198.11111111111111,587.2793,11859.672380755055,356.0,5.28559183673469,1.2610249422172142,24.12244897959184,166.0,73.66283852039994,1697.010924244898,10.854205304763264,5.041424489795915,51.513605442176875,3.0207699591836725,2438.9634612744694,-1.9183673469387887,-0.6994610578925452,-0.7207892367320015,6.895460224906291,40.08163265306122,11.454556969211836,-5.105636821324621,0.8036022772165864,-0.5710739691795066,-11.771252718774585,-0.4058599583506885,179.54309860985043,-10.591836734693896,0.23751162015826616,0.28635145583322774,-6.837567680133276,0.9795918367346994,-4.2268598506940975,-54.86668043023758,-1.6685337313796886,0.18854881299458787,15.992537831459115,0.015611986672218595,-286.25178503122646,-46.89795918367348,-1.6488881299458562,-0.13159332078558453,-7.24947938359017,-55.18367346938774,-12.39900234959726,-216.78925221324454,-0.7323920694265433,-1.4522621407746752,-3.8111666435281615,-1.050396807996669,-171.6639003446482,-147.6734693877551,-2.1816063306955424,-0.17660471664879757,-2.7213660974593923,-68.24489795918367,-25.798081507548954,-700.9575394835485,-3.5196475736590997,-2.12858508954602,-14.471308251191635,-1.1922423990004165,-903.7591584308349,-23.18367346938776,-0.5654350687213651,-0.4140889602993822,0.7913369429404407,0.8163265306122396,-6.977893758242466,-110.90573572344843,-1.1592555119125032,-0.4791641815910056,-11.288490906566707,-0.3624918284048295,-190.79988475848074,101.30612244897961,4.127027738442315,1.1276666848690653,-3.660974593919201,26.448979591836732,15.86170309576007,467.4731357800918,1.7394218892114348,3.556151478550602,31.01159239205886,2.641692608079967,308.05892720041027,-62.93877551020409,-0.8004444814660553,-0.6750760636242092,-7.618492294877135,-56.08163265306122,-15.716585158227126,-298.49744576759684,-1.541648068237554,-0.821242065805914,-4.871442454532834,-0.46349332444814584,-423.30060002466536,-72.9795918367347,-0.3959296959600159,-0.009035524715370478,-1.1974177426072479,-17.55102040816326,-20.122771276245032,-356.7703539458558,-4.130055207965428,-0.3960149937526035,-9.52476977185432,-0.17762013827571757,-772.7639433466718,0.7228281333174388,0.565021327150269,0.46379040954091544,0.3156032014974981,0.3149927966353835,0.1707178380608722,0.2077154218597955,0.09623088509606058,0.13862202690779962,0.054204374297182965,0.08857122511870093,0.029189576525110162,0.06363287771670822,0.0162831097156804,0.045623654416363915,0.010619434944735115,8.011308740415794,5.693339309574814,3.521914958975105,2.1922012139087514,0.38039137341538654,-0.5254631395984618,3.1380571764356997,0.9715284639866545,6.008714930054557,1.8271518339349295,14.554136039605746,10.954428464560813,16.005145272193168,11.705125006861799,1.9911725816083188,0.7781845976249161,3.4646044464652195,2.2418763921410414,5.014420488220297,1.326766464267421,3.678110294202837,2.4377546276605653,20.896871561487156,14.705886472652434,0.25909553608430896,0.5753414123745836,0.6745062934473531,0.7494425215528091,0.7494425215528091,0.7494425215528091,1.3941457328444278,634.8689612708595,0.0,2.0,2.0,0.0,10.0,3.0,2.0,0.0,0.0,4.096933117810936,2.2443707847150427,1.6634647960066724,1.224489795918367,1.224489795918367,1.224489795918367,204.53767805968198,1740.6699830972493,82.14448414190797,35.52387720606632,70.85068103971955,,18.0,730.0,0.0,0.0,11.671239571514539,24.340666912419827,30.761488535345837,0.0,24.26546827384644,24.26546827384644,0.0,31.759628073507514,11.766666666666666,31.0,16.0,1.0,15.0,0.0,0.02933333333333337,1.0,0.13104090951449066,0.05272666443626628,-0.07831424507822438,0.10167741935483854,0.14372536348949905,0.0,0.568027210884354,0.8253333333333331,0.4369863013698634,0.5153005464480878,0.7236559139784946,18.29028390578627,0.35566291430929553,0.5276629143092955,21.968653417474183,6.312924057710604,5.745626590353196,40.258937323260454,12.0585506480638,0.5702746365105009,0.1359773371104816,0.0,0.254957507082153,0.2631578947368421,0.34283277358244985,-0.9171015674886,-0.06521895977768788,-0.01871635852017551,-0.05394715102874117,0.6571672264175503,1.7579681404197098,0.06102106465748719,0.03587690082489205,0.05493650438811593,-4.643819344425232,0.9249438202247191,1.0408068140574689,1.5737228413318383,0.8755329949238577,0.6650602409638553,1.0996969126150993,0.9256515001746151,1.0416582607018483,1.006134676868945,1.1854473423572134,1.0649444888115025,0.9627938180985074,0.9651959440942723,0.9679106230354335,0.8366629676732983,1.3831868267921255,1.0508374963267706,1.1282885250413845,0.9676910718331571,1.19016181173277,0.9589856335887116,0.5495430352124584,1.0815059494996075,1.103375249218032,1.0549313358302121,1.279814633200426,1.097672635640222,1.197593532618913,1.2449799196787148,1.0678146886697033,1.0507041671350268,1.0372184959769881,1.249770225652488,0.9631879485956739,1.3790203052194157,1.0141737648866684,1.1776105556128234,1.2703143773016459,1.106070062634568,0.8397522470078702,1.161932132198519,1.1280653612010019,1.175033955468649,1.1272446027230962,1.2628497125715419,1.0828171710165646,1.309381704292397,1.1387327161065428,1.0012484394506866,0.9280911698512109,0.9674928894795599,0.7554051513442376,0.9022757697456492,0.9432053770418906,1.0027001998505283,1.0271581545250315,0.9395051843047996,0.8960835381436238,0.9235896932562023,1.0277731961771386,0.8336353751359188,0.5331401624200038,0.35455324286897355,1.005621963866601,0.9358725223474542,0.7395537500460989,0.838712022066239,0.9194584086745049,0.5858763964196142,0.2824879214191135,0.534705290122737,0.940831943136816,1.0697811945594322,0.9965283487567081,1.0977226768413164,1.1520170985840235,1.190868738110336,1.0751698484614443,1.070830403800579,1.1389446739275435,1.0135105370411095,0.6538895935778701,1.0529818698473736,1.1359539692210932,1.073531503342341,0.8492042091195506,0.7246069560444547,0.8815781019083723,0.9040719841390878,1.1541603872299993,1.0798172490630684,1.2331571929880552,0.8694709522617837,1.0035446381184414,0.7946112597840693,1.1952289170235704,4.5,0.10733598612386491,2.4444444444444455,0.875,0.7644444444444445,0.5972222222222223,0.24326530612244895,0.18055555555555555,0.1148904006046863,0.13125000000000003,4103.505932313237,4740.486460640795,2315.232094214468,2057.5849940687012,15.734183289574025,0.4212120528293254,9.106755646579682,0.7277484869689541,1.0,0.2631578947368421,1.5177767263042719,3.3703390594001656,3.951245048108536,4.390220048196841,4.390220048196841,4.390220048196841,0.1730769230769231,0.006708499132741557,0.07407407407407411,0.02734375,0.030577777777777787,0.029861111111111116,0.012803437164339421,0.010030864197530864,0.006758258859099194,0.008203125000000002,0.37943782039359714,21.301775147928993,11.658402203856749,8.044321329639889,147.320665977906,1.0,4.108088203258936,175.04360219839606,,140.7464026648949,138.7811420269294,143.77252634797225,140.7831958277352,207.71479181737914,140.2120003737016,140.83470523752788,174.3068398514032,-0.0052808988764045306,-0.1296868653327878,-0.560158192236365,0.28013536379018616,0.2366265060240964,0.15238980814890613,-0.0029484336331685643,0.07255531009042686,-0.11101078493363928,-0.22393749312204247,-0.1316693308520454,0.0721422191973759,-0.0177788435187723,0.026851803893375697,0.13569315688087563,-0.16938013288762324,0.003526300323244216,-0.03428874785278583,-0.019319962304279226,-0.09185846557771367,0.022348725617363837,0.18551441754100603,0.003088323213323578,-0.0701334393275047,-0.059769038701622985,-0.14153696968240947,-0.04734591285570708,-0.136350817822899,-0.1508255243195002,-0.07636785930649823,-0.05795960724063743,-0.0306138482857166,-0.13069653494796526,-0.03356667441073737,-0.15776405637833607,-0.03193346215112717,-0.18647562106999277,-0.18554631955272533,-0.06295760575080785,-0.05071485120849439,-0.1848126450757157,-0.1574376297329677,-0.18568492878269569,-0.14577086451613608,-0.1898048611168933,-0.1262860644756144,-0.17742568504355663,-0.16657775293619154,-0.029546400332917194,-0.048535716114115564,-0.14898491588938292,0.014883750078335508,0.002231146809460048,-0.04297820048420766,-0.029651160367221773,-0.048456658458710375,-0.04312244769509459,-0.09942286294217624,-0.05444435932951445,-0.0354931985475205,0.14993355080343124,0.41139299860062384,0.47116194383186594,-0.07996288412204573,0.08394869801787797,0.11345261170910759,0.14513934266172568,0.08443451840175943,0.371655117104543,0.31718690649882664,0.46076317131040473,0.06654901565125979,-0.1139858072146659,-0.09763827083171608,-0.3451528949749768,-0.20362454359248375,-0.21781864299302472,-0.13756001923259567,-0.11340663622794357,-0.09157347583217088,-0.10502686635164542,-0.06097026984761342,-0.09892551448118987,-0.11189896710406395,-0.12715118759778124,-0.04646152303220352,-0.004444252140078469,-0.03078883677097391,-0.0655787707793198,-0.16943702977574526,-0.1303986544184969,-0.23600804854974966,-0.04872225173345825,-0.11468365574412187,-0.03647065296038994,-0.19652171462455167,17.239251585134728,15.754633569497411,2.375504553263393,14.020614803463562,26.81944569627873,31.616428059147886,32.05891485923689,32.05891485923689,32.05891485923689,50.021350563905415,39.11996919821099,6.833511270889973,4.067870094804462,0.0,10.901381365694435,9635.45728221914,8768.05736842731,1513.89136529173,32.0,33.0,38.0,41.0,48.0,47.0,42.0,33.0,32.0,340.18992600800067,26.0,4.77912349311153,5.564520407322694,6.375024819828097,7.1770187659099,7.990576881743923,8.798001694924846,9.613603056529147,10.423381930561995,11.240263359274833,0.6190476190476191,0.9761632653061225,1.1339836923908395,0.5784272580066911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6566910912868142,0.9627050820328132,0.9993459874845787,0.6114976758869639,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,20.94106086192447,23.17026323808235,0.0,0.0,0.0,10.818567211583044,0.0,0.0,0.0,0.0,67.79340141647091,11.126902983393991,13.213763929025836,223.08155799931046,-596.7587181969461,-42.438028914998014,-12.178749350958084,-35.103454011585065,427.61923605899244,1143.9112649003032,39.70645522690995,23.34512785510823,35.747227028134475,0.5,0.8271088296028353,0.1845189413820332,51.570295543597126,0.0708023911537904,244.12015309175365,0.17289117039716487,9.0,0.38461538461538464,0.27032148916743354,0.6002694979746152,0.7037309420806217,0.7819139670767212,0.7819139670767212,0.7819139670767212,2.8828400000000007,,1.0714285714285716,1.3140995812005583,1.2472667135871938,1.0685318721261376,-4.237315801405576,1.1621787025703796,1.0580415728862167,-2.0752874690897665,99.75720000000001,9.473725907600098,10.818567211583044,0.0,11.46733495432437,19.26246486877803,13.213763929025836,59.65783953108687,0.0,11.49902366656781,3.970291913552122,0.0,5.220355825078324,0.0,6.650279048587422,0.0,8.159660737063376,0.0,9.710691327448153,30.333333333333332,14.418398468545613,0.0,0.0,0.0,0.0,0.0,2.958602456684188,0.0,47.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11571006785022031,55.56520092715114,20.94106086192447,0.0,11.49902366656781,24.885003500540375,0.0,10.818567211583044,30.38936785217202,48.53093654769288,0.0,0.0,0.0,28.342935642327866,32.1778634730539,31.462873019553502,350.0872043967923,,281.4070910440755,277.4571560873627,287.4452713588575,281.4809091057003,417.1245099553205,280.33102645119754,281.58476714922494,349.4437946904423,31.462873019553506,350.0872043967921,,280.42137675836125,276.2481844726581,286.29778598235725,280.4978597833442,419.6668994361639,279.2618220448328,280.6113689021696,350.68896717189614,4.523232269727814,281.1281187509211,,229.18628561309188,225.92775708320985,234.88192601851696,229.24933060577425,344.5406992035026,228.33052077033622,229.32967264989304,286.2610546252905,1.25851492078214,14.003488175871691,,11.256283641763021,11.098286243494508,11.4978108543543,11.25923636422801,16.68498039821282,11.213241058047902,11.263390685968998,13.977751787617692,2.2616161348639063,175.04360219839606,,140.7464026648949,138.7811420269294,143.77252634797225,140.7831958277352,207.71479181737914,140.2120003737016,140.83470523752788,174.3068398514032,47.17254901960785,0.0,0.0,0.0,0.0,10.820441687820711,0.0,48.967953386744355,4.193155294614529,0.0,11.314237849299662,0.0,0.0,0.0,0.0,0.0,0.0,29.963386118461234,538.2003721951984,74.37105958890932,165.14661391060812,193.61100735731827,215.12078236164524,215.12078236164524,215.12078236164524,397.0,122.96151440920697,112.50042186310452,58.711278851729396,118.2,118.2,1.0,7.254354634223265,5.700439718141092,4.634884508880827,4.9316485409799125,,4.939259785962685,4.939192619303258,4.942376442647075,4.939270408947552,4.95108756028908,4.9393841880961675,4.9392484340142575,4.944426375805066,0.18539538035523306,0.1972659416391965,,0.1975703914385074,0.19756770477213031,0.197695057705883,0.19757081635790208,0.1980435024115632,0.1975753675238467,0.1975699373605703,0.19777705503220264,2.44990201340372,2.5119640536840926,,2.513506210948475,2.5134926123286365,2.5141370086657018,2.513508361670224,2.5158979934715426,2.513531397023369,2.513503912636185,2.5145516893718933,274.11000000000024,154.42203562349667,137.03486218619224,,136.2886233732769,136.28716585749441,135.9718977282119,136.28766737851555,135.21716305111056,136.27332932938222,136.29018093837684,135.85593578668582,6.176881424939867,5.48139448744769,,5.451544934931076,5.451486634299776,5.438875909128476,5.451506695140622,5.408686522044422,5.450933173175289,5.4516072375350735,5.434237431467433,5.95598007705038,5.836526093843012,,5.831065599545541,5.831054905156384,5.828738961907005,5.831058585034054,5.823172833070411,5.830953375196111,5.831077027911029,5.827885760473868,11.314237849299662,0.0,14.679454175185079,12.210875503081388,1.6838787092737324,14.418398468545613,2.902030989826805,1.2911243047877243,0.0,331.14308501747314,145.15934692991465,-388.31137179196776,-27.61445911325842,-7.924721873305465,-22.841845399527514,278.2521764581912,744.3439684028649,25.837021945390752,15.190693232711528,23.260749012589528,2120.0,32.0,1.4082482904638631,0.4470869974520274,0.0,0.0,0.3333333333333333,0.048112522432468816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.21407617506269555,0.0504582383591035,18.07070333293597,14.125533178756726,12.058550648063802,8.20568323893495,10.394762288967655,5.633688656008783,7.893186030672229,3.656773633650302,5.683503103219785,2.2223793461845016,4.251418805697645,1.4010996732052878,2.9907452526852865,0.7653061566369788,1.9161934854872844,0.44601626767887487,2.9469056328242,0.7920350197234276,3.198137816152365,0.7584226354110579,3.7882264968316104,0.7618998353519004,83.79802480780202,51.91174183324856,37.69595796835554,35.11875837657162,35.11875837657162,35.11875837657162,118.0,130.0,53.73703199999998,26.408967999999994,0.3877551020408163,76.06,8.416666666666668,5.722222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,49.0,0.0,4.0,50.0,12.0,2.0,8.0,42.0,14.0,26.0,36.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,4.0,4.0,0.0,25.0,6.0,0.0,4.0,2.0,0.0,2.0,10.0,0.0,0.0,0.0,0.0,2.0,3.5553480614894135,4.920892918595395,4.04305126783455,4.4942386252808095,4.910814958814044,5.389642343241398,5.430441519475078,5.426050733057588,4.906200275959372,4.898772200950862 +4850,c1cnc(N2CCN(Cc3ccc4c(c3)OCO4)CC2)nc1,0,22.95,6.23299,3.4,7.85,164.32725641803705,90.58088215000001,1.4687960071820503,6.29484,2.927777777777778,7.7272646,218.5454018640367,25.953488372093023,6.5,4.046511627906977,7.4186046511627906,148.85814771586504,98.97371258139539,1.7313734320930239,6.6305930232558135,2.967700258397933,7.881530883720926,259.18527519850693,21.355263157894736,6.564311842105265,3.6315789473684212,5.934210526315789,161.46886020100254,79.1325227105263,1.4652364101722892,6.634551315789474,2.921418128654971,8.008569789473684,214.52669107104808,16.74468085106383,6.142073404255318,3.1382978723404253,3.7872340425531914,159.52853483455357,59.83365403191489,1.3552822694184998,6.229208510638297,2.4160756501182035,7.649275191489358,185.16682207077602,13.281553398058252,5.972922330097087,2.679611650485437,2.5242718446601944,164.50269817085658,45.69559061165048,1.183391729657068,6.0409951456310695,2.191747572815534,7.541515611650485,154.61300403469005,12.663157894736843,5.912239999999998,2.5789473684210527,2.442105263157895,164.94123648329764,43.3503512631579,1.1846743075739685,5.977755789473684,2.1578947368421058,7.491570610526317,152.18368060292332,12.705882352941176,5.808705882352941,2.6,2.541176470588235,159.22227918090803,43.43457391764706,1.1978304296386113,5.895342352941177,2.08562091503268,7.391577835294116,151.7065968801557,11.89873417721519,5.914367088607595,2.518987341772152,2.5063291139240507,169.6621951305642,41.01581505063291,1.0259164870857216,5.958734177215191,2.0991561181434606,7.537418582278482,133.7582097587687,15.471698113207546,6.305622641509433,2.9056603773584904,3.7735849056603774,162.81157596129796,54.09414194339621,1.2045482627696602,6.360737735849058,2.6058700209643613,7.864212603773587,165.62322325776847,7.347499999999999,0.1222059999999999,0.02406158776962152,0.51,4.047499999999999,1.5675344615326263,34.949422327499995,0.2185212659801275,0.11464399999999993,0.47333333333333344,0.07152898999999997,48.60677974664968,0.769941860465116,0.003584000000000004,-0.011605370055235039,0.13651162790697668,1.0629651162790696,-0.691813669666782,3.558143227151159,-0.044923504530098475,0.007310883720930256,0.02989664082687333,-0.002158678372093072,-3.3321361199089377,-0.3073684210526319,-0.005288368421052608,-0.0001358993270718752,-0.054736842105263125,-0.1928947368421053,0.38044764899640415,-1.386607127500003,0.02669608768160141,-0.006143473684210475,0.036827485380116896,-0.0007173900000000688,2.87501185513622,-0.9336702127659576,-0.010892382978723397,0.0012881998786738724,-0.12063829787234043,-0.500691489361702,-0.2012928806724139,-4.483149804095743,-0.03489523623991475,-0.01054570212765956,0.0038534278959810853,-0.005836394255319148,-7.3853884224836985,-0.6834223300970872,-0.01493366990291262,-0.002380819563542734,-0.042038834951456314,-0.5455582524271844,-0.0885929962118108,-3.224539733810678,-0.013048523868242547,-0.013549242718446616,-0.0639482200647249,-0.008019391941747549,-3.144200485078283,-0.382236842105263,0.0005170526315789442,0.0010811652705963746,-0.0068421052631579046,-0.3443421052631575,0.3094011088142399,-1.8015090290789455,0.012407761357187765,-0.0014667368421052746,-0.06567251461988302,0.0019363763157895077,0.23930150846490492,-0.4104411764705881,0.01433788235294116,0.002005221004123687,0.009999999999999993,0.1036764705882353,-0.5085692454753141,-2.154515670441175,-0.060915303424079865,0.012003999999999975,-0.012483660130718915,0.008137737058823582,-10.999264600260087,1.0512341772151903,-0.007856506329113931,-0.002413385580209128,0.02924050632911391,-0.03484177215189868,0.15094619863508563,5.13133881237342,0.03878244226885291,-0.003763746835443075,-0.02741209563994371,-0.007003589999999978,10.053409478546751,-1.420141509433962,-0.02568241509433961,0.0014067568550787087,-0.04207547169811319,-0.6654245283018868,-0.1774125223804793,-6.638344905801887,-0.008592107582649198,-0.025561735849056567,-0.08308176100628935,-0.014576910754717017,-5.545903754202557,,,0.4666666666666666,1.2727272727272727,0.5454545454545454,0.0,0.7272727272727273,-0.18181818181818182,0.7162907728211642,0.0014577649641975428,0.017094128600561177,0.7943523532444509,0.2614743589099413,0.23316849259736552,1.510643126065615,0.4946428515073068,2.097085920596809,1.5229307223990896,0.38892890149206943,0.18522629670564925,0.0,0.5741551981977188,7.453574395400013,918.0,249.3196,136.0,314.0,6573.090256721482,3623.235286,58.75184028728201,251.7936,117.11111111111111,309.090584,8741.816074561468,1116.0,279.5,174.0,319.0,6400.9003517821975,4255.869641000002,74.44905758000003,285.1155,127.61111111111113,338.9058279999998,11144.966833535798,1623.0,498.8877000000001,276.0,451.0,12271.633375276193,6014.071725999999,111.35796717309398,504.2259,222.0277777777778,608.651304,16304.028521399654,1574.0,577.3548999999999,295.0,356.0,14995.682274448034,5624.363479,127.39653332533898,585.5455999999999,227.11111111111114,719.0318679999997,17405.681274652947,1368.0,615.211,276.0,260.0,16943.777911598227,4706.645833,121.889348154678,622.2225000000002,225.75,776.776108,15925.139415573074,1203.0,561.6627999999998,245.0,232.0,15669.417465913275,4118.28337,112.54405921952701,567.8868,205.00000000000006,711.6992080000001,14457.449657277715,1080.0,493.73999999999995,221.0,216.0,13533.893730377182,3691.9387829999996,101.81558651928196,501.1041000000001,177.2777777777778,628.2841159999999,12895.060734813234,940.0,467.23500000000007,199.0,198.0,13403.313415314573,3240.2493889999996,81.047402479772,470.74000000000007,165.83333333333337,595.4560680000001,10566.898570942725,820.0,334.1979999999999,154.0,200.0,8629.013525948792,2866.9895229999993,63.84105792679199,337.1191000000001,138.11111111111114,416.8032680000001,8778.030832661729,293.9,4.888239999999996,0.9624635107848609,20.4,161.89999999999998,62.701378461305055,1397.9768930999999,8.7408506392051,4.585759999999997,18.933333333333337,2.861159599999999,1944.2711898659873,33.10749999999999,0.15411200000000017,-0.49903091237510666,5.869999999999997,45.707499999999996,-29.747987795671627,153.00015876749984,-1.9317106947942344,0.31436800000000104,1.2855555555555531,-0.09282317000000209,-143.2818531560843,-23.360000000000024,-0.40191599999999816,-0.010328348857462515,-4.1599999999999975,-14.660000000000004,28.914021323726715,-105.38214169000022,2.0289026638017074,-0.4669039999999961,2.798888888888884,-0.05452164000000523,218.5009009903527,-87.76500000000001,-1.0238839999999994,0.121090788595344,-11.34,-47.06499999999999,-18.921530783206908,-421.41608158499986,-3.280152206551987,-0.9912959999999987,0.362222222222222,-0.5486210599999999,-694.2265117134676,-70.39249999999998,-1.5381679999999998,-0.2452244150449016,-4.33,-56.19249999999999,-9.125078609816512,-332.12759258249986,-1.3439979584289823,-1.3955720000000014,-6.586666666666665,-0.8259973699999975,-323.85264996306313,-36.312499999999986,0.049119999999999706,0.10271070070665558,-0.6500000000000009,-32.71249999999996,29.393105337352786,-171.14335776249982,1.1787373289328378,-0.13934000000000107,-6.238888888888887,0.18395575000000322,22.733643304165966,-34.88749999999999,1.2187199999999987,0.17044378535051338,0.8499999999999994,8.8125,-43.228385865401705,-183.1338319874999,-5.1778007910467885,1.0203399999999978,-1.0611111111111078,0.6917076500000046,-934.9374910221075,83.04750000000003,-0.6206640000000005,-0.1906574608365211,2.3099999999999987,-2.752499999999996,11.924749692171764,405.37576617750017,3.06381293923938,-0.29733600000000293,-2.165555555555553,-0.5532836099999983,794.2193488051934,-75.26749999999998,-1.3611679999999993,0.07455811331917156,-2.229999999999999,-35.2675,-9.402863686165404,-351.8322800075,-0.4553817018804075,-1.354771999999998,-4.403333333333335,-0.7725762700000018,-293.93289897273553,0.6717186415510237,0.5596406029629364,0.43528570932643,0.30048837965817854,0.28072761347719155,0.16175297265524116,0.18384133109105472,0.0900097369717904,0.12045080698108221,0.049275993417004865,0.0791295141315817,0.028619555532323027,0.050782498071920104,0.015786540977428962,0.03345782200116755,0.008802656699019801,8.016477395837354,5.693594194279663,3.5324747403413523,2.1925078366404853,0.4919529721039826,-0.48688620160952323,3.1809776262452227,1.7343949608867943,6.011527728325086,1.8935816900096822,14.559903746788674,10.954177676581063,16.007679566234508,11.705261600871632,1.9839298833373415,0.7708575270907131,3.4764753416397145,2.2422648968376118,3.517049211144399,1.3649094656492438,3.6897449738254657,2.438283997734602,20.890152902252588,14.706118282287363,0.28415748783715505,0.5892904640532214,0.7519405654260792,0.840992362203085,0.840992362203085,0.840992362203085,1.2047266258423166,641.8489951677822,0.0,2.0,5.0,0.0,6.0,0.0,1.0,0.0,0.0,3.7264662506490405,2.013233125324521,1.0999999999999996,0.5999999999999979,0.5999999999999979,0.5999999999999979,268.6677426731593,1107.7332443348687,59.16402359231986,27.693331108371723,53.38164633885648,,13.0,506.0,0.0,0.0,0.0,6.792942306099827,50.17114497711717,5.563451491696996,12.393687143226153,12.13273413692322,31.90051064051859,9.473725907600098,10.266666666666666,28.0,12.0,0.0,16.0,0.0,0.033333333333333375,-4.0,0.15166666666666662,0.04972222222222211,-0.1019444444444445,0.0,0.16004316546762587,0.0,0.5983333333333336,0.8424242424242423,0.446666666666667,0.5486111111111115,0.8424242424242423,15.75839700206561,0.03207082921234594,0.3760708292123459,17.47575177137792,5.752435896018708,5.129706837142042,33.23414877344353,10.88214273316075,0.5539568345323741,0.0,0.0,0.27272727272727276,0.375,0.24292247851301724,-0.5149694509124966,-0.05649837330507704,-0.012874236272812416,-0.04681540462840878,0.7570775214869829,1.604922681197877,0.05672504827117061,0.040123067029946925,0.05534216142061646,-3.1908857668725124,0.7344690885208544,0.8227886462393467,1.5397519943081353,0.7113543091655268,0.5770142350288004,1.647696294291932,0.7404649704653015,1.2647842939503553,0.768814765709501,0.7451686865378315,0.9084768970416184,1.0351787051626562,1.00483963396071,1.2553852392896552,1.3368053733152443,1.2828947368421053,1.1426400312083482,0.8884128801586191,0.9983312690300129,0.8143277189835706,1.2262664892601172,0.9659354151223125,1.2588192710764068,0.8384357008740831,1.0474687438917567,0.9250620943151102,0.8542060015681933,1.3219649561952445,1.0327493987620413,1.180619080336076,1.0513924177505025,1.1494594176150597,0.9319128614241163,0.7608817800419537,0.8797156557142152,1.1269858703325768,1.0609414073210295,0.9721442220195124,0.8553713219121055,1.0394060536836094,1.060615146590548,1.0223799591539677,1.0624014029383633,1.0205220840743223,0.9828124962949891,1.0227078490359631,0.9039918130987633,1.0480759547117053,1.0203792912018053,0.8036069596031551,0.6247906779623879,0.9256965944272447,0.9851110171971004,0.7519020656466577,1.0229599228303659,0.9164023644186283,0.8414976614104258,0.9769273535952555,0.7174061579051634,0.9945266608941669,0.9866501210896065,0.5622001807940498,0.541980023097881,0.8546712802768168,0.7708462013588636,1.2383580995941703,0.9980989702323751,1.3175990520538299,0.60708251323278,0.7182580778790387,0.5301657905334853,1.270333717612694,0.9045313785365728,1.0984597339996773,1.054845472344846,1.0163812360387194,1.0626578369207436,0.7633980171851389,0.899342881476759,0.754454748377428,1.0778919519269121,1.0429666607238366,1.1138560919960256,0.774787507951892,1.2243286447065171,1.5537575124465068,1.3897500046082818,1.0460599334073253,1.2817136131084879,1.0364927104660444,1.2140144866102662,1.00475805473692,1.5329680543477333,1.4790393303215517,1.6827561408292127,1.053055131251723,3.5,0.06244056728905213,2.000000000000001,0.9444444444444444,0.6216666666666667,0.3994444444444445,0.34607709750566895,0.19274376417233557,0.07862496850592089,0.06655864197530866,4094.165541494702,4591.495654485967,2224.6756754385524,2045.5932523288802,15.008526977283926,0.4906560859443188,7.644501874820077,0.963310000187183,1.0,0.375,1.595461844238322,3.3086949695628416,4.221928094887363,4.721928094887365,4.721928094887365,4.721928094887365,0.14,0.005203380607421011,0.058823529411764726,0.030465949820788533,0.02486666666666667,0.01815656565656566,0.018214584079245737,0.011337868480725622,0.005241664567061393,0.0051198955365622046,0.31743010482680156,15.5232,7.26643598615917,3.753086419753086,128.8525414661957,1.0,4.0452062446834995,112.08310895755258,,88.82128448812614,86.35746030177165,85.29590388956844,88.84544494315452,133.5410755961094,87.82067115879181,88.96518068796166,117.60844020767776,0.10478963735489842,0.029327528926566673,-0.4823193783532094,0.2676698586411308,0.26262263527586654,-0.4413387307545218,0.10180835590954616,-0.2055795545966856,0.06377031262805084,0.06316191723987322,-0.0301790696624274,-0.06855290840653996,-0.04183306172883728,-0.04327421256773491,-0.005647978361737715,-0.10732714138286889,-0.047657748447709786,0.2427044880559939,-0.03967467944123784,0.12216700082649702,-0.053587398243348794,0.07780454657771174,-0.010029360123777352,0.059148371279098895,-0.12707318309165808,-0.08913132725662738,0.053537609030949465,-0.23654568210262827,-0.12370388866255766,-0.12841368761717922,-0.12827536209570395,-0.15968805637016653,-0.09198651588970698,0.008141044850664263,-0.08159480869671375,-0.15194152875335773,-0.0930142674511177,-0.1222007913106773,-0.09894690185610237,-0.08242908814011043,-0.13478894439213945,-0.05651741533337055,-0.0922630338091009,-0.05971283302664551,-0.11818536267442366,-0.13510187337617935,-0.11211387077809364,-0.0646864594088853,-0.05202270732973978,0.004230992190063864,0.04493324717171733,-0.013415892672858637,-0.08507525763141632,0.1973807379722478,-0.05154617470347789,0.05678056687771587,-0.012793838684146361,-0.1387447491969359,0.027071210089636505,0.004923212558252211,-0.055861337389668336,0.11732551882019845,0.08333701929077758,0.01960784313725489,0.025614940231806133,-0.3244389568176195,-0.06164667473619132,-0.2787614429692145,0.1047067443564424,-0.026373929853631507,0.113768376413865,-0.22629074910107028,0.14307372265603135,-0.06428903923795834,-0.10030034606677535,0.05733432613551747,-0.008608220420481455,0.09629529834227754,0.14682184913642535,0.17747674165671282,-0.03282986318902932,-0.057912878112557124,-0.09791260858010131,0.20683142415415212,-0.1932822741659016,-0.21015674430338635,0.05846483900180442,-0.08250092489826116,-0.16440383651683432,-0.11317934420849521,-0.18994147724663527,-0.0393193199943779,-0.22296618967461518,-0.17552484719638592,-0.20379025000516604,-0.11409732928429227,15.213224489552921,12.400101630692136,1.6188704068605666,14.983971004277391,31.31420999460451,36.18559898493163,37.98929898493162,37.98929898493162,37.98929898493162,46.135890253129794,33.50447589277997,8.556435832825528,4.074978527524284,0.0,12.631414360349812,5375.441947352422,5154.497825127497,449.4009700022225,98.0,34.0,45.0,58.0,70.0,70.0,81.0,90.0,87.0,298.1429758160005,25.0,4.77912349311153,5.6240175061873385,6.484635235635252,7.340186835320115,8.203851372183879,9.062883902508307,9.927545817629198,10.788184412819104,11.6533741280205,0.6583333333333333,0.9888,1.1329832997344653,0.6209849304803929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6695550000000001,0.9749019607843138,1.0076110706482155,0.6334475676775903,6.0,2.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,14.373635638450576,0.0,11.49902366656781,12.741281587086322,0.0,4.899909730850478,9.967957041894417,0.0,0.0,6.06636706846161,23.762552697081826,45.11746917278903,0.0,126.93726306593109,-269.09330524509204,-29.52278817062801,-6.727332631127302,-24.463027749553824,395.6050057390904,838.6399390897767,29.641235421691846,20.96599847724442,28.918618589302653,0.46153846153846156,0.8138595128565828,0.21397101930064624,118.13458882046797,0.10887363745441361,126.49933090972715,0.18614048714341744,7.0,0.12,0.29979019178613864,0.621709822186703,0.7933079928199818,0.8872589051745359,0.8872589051745359,0.8872589051745359,1.5274999999999999,,1.0714285714285716,1.3140995812005585,1.247266713587194,1.0685318721261376,-4.237315801405576,1.1621787025703796,1.0580415728862167,-2.0752874690897665,82.08700000000005,9.473725907600098,0.0,14.867866772744893,0.0,6.544756405912575,37.87187766060061,42.22260690876959,0.0,11.49902366656781,3.9318256327243257,0.0,5.231108616854587,2.3978952727983707,6.729824070489475,4.59511985013459,8.312626025674962,6.580639137284949,9.936487030799237,26.333333333333332,11.614052613028429,8.633270199417385,0.0,0.0,0.0,0.0,3.7800998361897196,0.0,39.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.31933198937861,14.373635638450576,5.948339280986494,11.49902366656781,47.839834702495025,6.544756405912575,0.0,5.563451491696996,36.65915541707259,0.0,0.0,0.0,24.83939721921572,26.782200000000003,29.996698774539453,224.16621791510522,,177.63991491238517,172.72647809280696,170.66981972256264,177.68827771957984,268.6952496971285,175.64711262037224,177.9266189150955,235.97153040411538,29.996698774539453,224.16621791510522,,176.76329153576182,171.65130570818826,169.6493287750822,176.8140243696586,271.3194669936245,174.69623913645108,177.0609485372795,237.2921678844453,4.722215460876421,176.0693458535109,,142.3898998260924,138.46046460730759,136.2453067479699,142.42684614355244,211.35065775044103,140.76916027095794,142.62202511236148,187.73450789739707,1.3634863079336115,10.189373541595693,,8.074541586926598,7.851203549673044,7.757719078298302,8.076739896344538,12.213420440778567,7.9839596645623745,8.087573587049796,10.725978654732517,2.382550314396666,112.08310895755258,,88.82128448812614,86.35746030177165,85.29590388956844,88.84544494315452,133.5410755961094,87.82067115879181,88.96518068796166,117.60844020767776,38.99607843137255,0.0,0.0,0.0,0.0,0.0,0.0,40.30444282592862,5.177764008755517,0.0,10.787749798055327,0.0,0.0,4.67373021122029,0.0,0.0,0.0,25.33790270710361,425.2759963366283,63.81847376953288,132.34779878251368,168.87712379549453,188.87712379549458,188.87712379549458,188.87712379549458,680.0,120.86380270341522,97.26627246839327,69.7155256367605,50.720000000000006,50.720000000000006,0.8571428571428571,7.713184280113077,5.643856189774724,4.176121474909249,4.625570499472327,,4.638817360901757,4.639221199460152,4.636239421640363,4.638804882012045,4.619232645858441,4.6388513818616754,4.6388067040655665,4.6302378200845205,0.18982370340496588,0.21025320452146942,,0.21085533458644348,0.21087369088455238,0.21073815552910743,0.21085476736418388,0.20996512026629277,0.21085688099371253,0.21085485018479846,0.2104653554583873,2.217840299340801,2.3200570749587803,,2.3229168149992314,2.3230038675709626,2.322360928520427,2.3229141248940763,2.318685957692752,2.322924148945045,2.322914517679117,2.321065592172329,218.7199999999997,180.7641227311654,123.15224478656543,,122.00670445160772,121.96330393500615,122.19989643778362,122.00783704856694,123.59008545045084,122.0000800393976,122.00812324711524,122.75659776685114,8.216551033234792,5.597829308480247,,5.545759293254896,5.543786542500279,5.554540747171983,5.545810774934861,5.6177311568386745,5.545458183608982,5.545823783959784,5.579845353038689,5.985650352409844,5.601878712832617,,5.592533358108957,5.592177572433936,5.594115559620094,5.5925426411373556,5.605427687368303,5.592479061157948,5.592544986873659,5.598660875222556,10.787749798055327,13.307000410637675,0.0,1.258019547325103,2.5220802888646165,8.028095912080955,3.585956700947474,5.177764008755517,0.0,259.8151293459011,66.33008543837147,-140.61262624301258,-15.426904712130009,-3.5153156560753147,-12.782966022092053,206.72033724952783,438.2248164824769,15.488798407434622,10.955620412061922,15.111200568361276,1194.0,31.0,1.0749149571305296,0.5503409018289201,0.0,0.0,0.16666666666666666,0.03624956866388679,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.02946278254943948,0.4201034543599429,0.12732196106121052,0.47626487255786,0.13376119693747682,14.77781011412252,12.3120932651846,10.88214273316075,7.512209491454464,9.544738858224513,5.499601070278199,8.272859899097462,4.050438163730568,6.986146804902768,2.8580076181862824,5.5390659892107195,2.003368887262612,3.5547748650344073,1.1050578684200274,2.7100835820945717,0.7130151926206039,2.6505580903167987,1.118305238858944,4.18385060513305,1.4724055912482896,5.714286579527213,1.7610232733826308,72.85220504217412,40.39005914707993,29.119593068955908,24.94012249815865,24.94012249815865,24.94012249815865,118.0,138.0,44.72627399999998,27.229725999999996,0.55,163.06,4.666666666666667,4.805555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,40.0,0.0,1.0,43.0,12.0,0.0,6.0,37.0,12.0,25.0,31.0,0.0,0.0,0.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,6.0,0.0,3.0,22.0,6.0,0.0,4.0,2.0,0.0,4.0,3.0,0.0,0.0,0.0,1.0,2.0,3.4657359027997265,6.113958690272262,3.9889840465642745,4.499809670330265,4.993828175779875,5.453717265775727,5.443229069592673,5.6678314103705425,5.858290233580273,5.842638209447822 +92727,Cc1cccc(C)c1OCC(=O)N[C@@H](Cc1ccccc1)[C@@H](O)C[C@H](Cc1ccccc1)NC(=O)[C@H](C(C)C)N1CCCNC1=O,1,20.170212765957448,5.984251063829791,2.9574468085106385,6.0,163.18782077389844,79.2677420212766,1.4104972280080004,6.053690425531918,4.051713947990543,7.543090297872341,204.43995399062092,22.50515463917526,6.227185567010309,3.618556701030928,5.587628865979381,146.5927090814707,84.15776054639177,1.7641523147010312,6.370690721649478,2.891752577319588,7.659802927835049,252.53988018299765,18.341040462427745,6.108340462427748,3.2947976878612715,4.202312138728324,154.265419346789,66.92838431213872,1.4869276961279254,6.214832369942194,2.7223827874116897,7.605802450867051,205.3176372547931,15.35,6.056391250000002,2.7916666666666665,3.1625,159.12927178565306,54.20912299166668,1.2949527200962963,6.1390812499999985,2.702546296296296,7.604638266666667,173.77538417743003,13.758992805755396,6.013787769784175,2.593525179856115,2.6223021582733814,163.0557763398133,47.9968295935252,1.1673988836177414,6.079356474820144,2.6636690647482024,7.606073712230217,155.71930958084303,14.652482269503546,6.1463219858156055,2.524822695035461,3.024822695035461,161.53674390317082,50.93688317021275,1.2055060596308622,6.212202482269506,3.224586288416076,7.711591120567378,161.77693960706384,13.062111801242237,5.970360248447207,2.409937888198758,2.6614906832298137,165.05127833138866,45.4467809720497,1.1125727975832482,6.028037888198757,2.8316080055210486,7.578976782608704,147.08051259385766,13.618589743589743,6.006926282051284,2.5096153846153846,2.801282051282051,162.1975611227218,47.27624095512821,1.1766569339742852,6.074249358974358,2.82514245014245,7.60107905128205,155.99616076067136,13.643076923076922,5.93604276923077,2.5476923076923077,2.870769230769231,162.19341479675154,47.86942977538463,1.1944590488118862,6.007651384615385,2.6377777777777776,7.534705710769235,158.52366729640832,7.240832956088728,0.10723721140787677,0.017427289858168174,0.5450430058850156,3.4535989135355365,1.4156678353148808,34.51818944137618,0.228279084235694,0.10268588727931185,1.4197254916754685,0.06437820009053871,50.83790521625385,0.21847829637891844,-0.003081475500879585,-0.010299871553879776,0.17046478091033396,0.9614043766596815,-0.10537856912402405,1.0577995913064182,-0.0006577086058576376,-0.0016424347677959996,-0.08197476661393019,-0.002943638125195432,0.9383207732896625,0.15579722470084278,0.013877079577241887,0.0006930866380253974,-0.047687207090279585,0.0890157710051104,-0.023327114409492273,0.6564982773545959,-0.00921565419389975,0.011786465444830412,0.06691685107313372,0.008316381633726446,-1.6595602357001238,-0.4566130979326997,0.004351751358080645,0.0021584590994330336,-0.050894069714803085,-0.22194997736532368,-0.062013550528071316,-2.254094226216614,-0.02221925049723006,0.0027247155575676326,-0.06312703816877083,0.0037436729591066816,-4.940824147894926,-0.09863182337787532,-0.010199112525280754,-0.002636788757658265,-0.06708494680036867,-0.45084367092111727,-0.02870129738939956,-0.41816779328189796,0.0007937235327532864,-0.008501737577796452,-0.10144500967808824,-0.007090247541939286,0.47236876694023694,-0.9163271465218048,-0.0035495397615812998,0.001318617840773647,-0.014259846084200991,-0.21759468839595586,-0.12234241421454026,-4.4131953261656856,-0.02778361918441942,-0.005067402293647045,0.009629168552889674,-0.0006198074543534058,-7.089872341182932,0.3634355783370685,-0.0025665889683367197,-0.0003845282342898322,0.02288351717564228,0.058889523097211016,0.06408881851794745,1.77041393327691,0.013689811483249456,-0.001094427651982678,0.030603421881936654,-0.0019233310539323895,3.5723029035636933,-0.30486732597416166,-0.00757610938932799,0.0005425712712431287,0.02847036018154171,-0.08398625668883701,-0.022920075623820303,-1.4188442121754232,-0.002644858345295791,-0.007109680241668621,-0.12139757599382997,-0.004890557973790207,-1.0721067377986053,0.2847971584775569,-0.005598317790855561,-0.0005125579044525735,-0.010116655639516652,0.07019814047428355,0.10636529540802063,1.4242594533537614,0.016960612374768147,-0.004120263711390434,-0.08562110906044819,-0.004521921989065711,3.8022163000799014,,,0.47318840579710136,1.1141304347826086,0.5,0.010869565217391304,0.6141304347826086,-0.11413043478260869,1.2382719804331912,0.017328527527075983,0.0248067883966412,1.0667331010793395,0.2187621444129058,0.2620444055029116,2.3050050815125305,0.4808065499158174,2.016893737210451,1.638329998516421,0.17990674994354466,0.1986569887504848,0.0,0.37856373869402943,6.684707134425547,1896.0,562.5196000000003,278.0,564.0,15339.655152746454,7451.1677500000005,132.58673943275204,569.0469000000003,380.8611111111111,709.0504880000001,19217.355675118368,2183.0,604.037,351.0,542.0,14219.492780902658,8163.302773000002,171.12277452600003,617.9569999999993,280.50000000000006,743.0008839999997,24496.368377750772,3173.0,1056.7429000000004,570.0,727.0,26687.917546994497,11578.610485999998,257.2384914301311,1075.1659999999995,470.97222222222234,1315.8038239999998,35519.95124507921,3684.0,1453.5339000000004,670.0,759.0,38191.02522855673,13010.189518000003,310.7886528231111,1473.3794999999996,648.611111111111,1825.113184,41706.092202583204,3825.0,1671.8330000000005,721.0,729.0,45329.5058224681,13343.118627000005,324.5368896457321,1690.0611,740.5000000000002,2114.4884920000004,43289.96806347436,4132.0,1733.2628000000007,712.0,853.0,45553.36178069417,14364.201053999996,339.9527088159031,1751.8411000000006,909.3333333333334,2174.6686960000006,45621.096969192,4206.0,1922.4560000000006,776.0,857.0,53146.51162270715,14633.863473000005,358.2484408218059,1941.0281999999997,911.7777777777776,2440.4305240000026,47359.925055222164,4249.0,1874.1610000000005,783.0,874.0,50605.6390702892,14750.187178000002,367.11696339997695,1895.1657999999998,881.4444444444443,2371.5366639999997,48670.80215732946,4434.0,1929.2139000000002,828.0,933.0,52712.85980894425,15557.564677000006,388.199190863863,1952.4867000000002,857.2777777777777,2448.7793560000014,51520.1918713327,680.6382978723404,10.080297872340417,1.6381652466678085,51.23404255319147,324.63829787234044,133.0727765195988,3244.709807489361,21.458233918155237,9.652473404255314,133.45419621749403,6.051550808510639,4778.763090327862,21.19239474875509,-0.29890312358531973,-0.9990875407263382,16.535083748302394,93.2562245359891,-10.221721205030333,102.60656035672257,-0.06379773476819085,-0.15931617247621196,-7.9515523615512285,-0.2855328981439569,91.01711500909725,26.9529198732458,2.4007347668628465,0.11990398837839375,-8.249886826618368,15.3997283838841,-4.0355907928421635,113.57420198234509,-1.5943081755446569,2.039058521955661,11.576615235652133,1.438734022634675,-287.1039207761214,-109.58714350384793,1.0444203259393547,0.5180301838639281,-12.214576731552741,-53.26799456767768,-14.883252126737116,-540.9826142919874,-5.332620119335214,0.6539317338162318,-15.150489160504998,0.8984815101856036,-1185.7977954947821,-27.41964689904934,-2.83535328202805,-0.7330272746289976,-18.64961521050249,-125.3345405160706,-7.978960674253077,-116.25064653236763,0.22065514210541362,-2.3634830466274135,-28.20171269050853,-1.9710888166591216,131.31851720938587,-258.40425531914894,-1.0009702127659266,0.37185023109816845,-4.02127659574468,-61.361702127659555,-34.50056080850035,-1244.5210819787233,-7.834980610006276,-1.4290074468084668,2.715425531914888,-0.17478570212766045,-1999.344000213587,117.02625622453606,-0.8264416478044238,-0.12381809144132597,7.368492530556814,18.962426437301946,20.636599562779082,570.073286515165,4.408119297606325,-0.3524057039384223,9.854301845983603,-0.6193125993662294,1150.2815349475093,-95.11860570393844,-2.363746129470333,0.16928223662785616,8.882752376641013,-26.203712086917147,-7.1510635946319345,-442.67939419873204,-0.8251958037322868,-2.2182202354006098,-37.87604371007495,-1.5258540878225444,-334.49730219316484,92.55907650520598,-1.8194532820280573,-0.1665813189470864,-3.2879130828429117,22.814395654142153,34.568721007606705,462.88432233997247,5.512199021799648,-1.3390857062018913,-27.82686044464566,-1.4696246464463563,1235.720297525968,0.7185536199376498,0.5949885362298797,0.45136941420668575,0.330844643525404,0.2991828271602753,0.18999020252275753,0.18957251038997736,0.10258214025622783,0.12664290975523465,0.059960097048745206,0.08237223754708,0.03362610118482238,0.0538833666964363,0.02018611454708056,0.033086254438159636,0.011275059860424184,8.025297865019887,5.686600974491859,3.548214758162823,2.186008787180817,0.4431883611134997,-0.5138802012547397,3.2308613954119236,0.9772043516636089,6.0247657927982745,0.9885277655307314,14.54727368028057,10.947002570753485,16.013190695879278,11.697948320431776,2.002480292077175,0.7503391299742425,3.493785168864054,2.2358802862400298,7.010459928375992,1.1883741142726891,3.7065202759355897,2.4319029681875226,20.910082170796137,14.70176993818736,0.21328473406807655,0.5188153607529428,0.727889264495378,0.8204069334191011,0.8725301231869219,0.8788173620455891,1.440406226794174,1411.9399871126961,0.0,2.0,7.0,0.0,14.0,8.0,4.0,1.0,0.0,5.111038457843867,3.0431508595760843,1.6281001415466143,1.0019235049721704,0.6491441490282321,0.6065909575388728,348.05362432945896,3801.40125482676,68.95724141445373,40.440438881135755,78.12716010951223,,18.0,1373.0,24.229488875192185,19.49013894705617,36.7910836046414,31.680667890961075,28.674627589713992,0.0,4.899909730850478,106.55772068876344,15.950365812018994,4.736862953800049,21.766666666666662,51.25,23.0,0.5,28.25,0.0,0.026811594202898647,-5.25,0.1141521598968413,0.040748480243161356,-0.07340367965367994,0.04144927536231913,0.1356120460584589,0.0,0.5535460992907787,0.8181159420289855,0.4393939393939374,0.5127976190476173,0.7766666666666664,56.96051109992679,0.7971122662454952,1.141112266245495,49.06972264964962,10.063058642993667,12.054042653133934,106.03023374957641,22.1171012961276,0.5783879539415411,0.15313935681470142,0.0,0.31699846860643194,0.43243243243243246,0.3100122364011348,-1.2865658383244047,-0.03716406962330635,-0.013686870620472389,-0.03675902395212584,0.6899877635988653,2.8634827315639,0.038117617820798526,0.03046258225067979,0.04853360561972712,-8.085097443185756,0.9085619539611284,0.8010759838992354,1.6710108537001531,0.9543831558036787,0.602478605105586,1.3436403356364388,0.9145018830141513,1.1685850515169878,0.792534805705668,0.6608474811243641,0.7930882116196948,1.0754200436360148,0.9442131482562289,0.7566559191620622,1.0609725685572327,1.4637011983177466,0.9753318073642028,1.1755399311238606,0.9499228047555014,1.1116561278693204,0.771140543162085,0.6036056665059529,0.7281969102793694,1.0690073333761014,1.0612097530478275,1.0122388747060838,1.087305184299052,1.2782028654485054,1.0945643269104732,1.120960788200731,1.0629882021252401,1.1052125648937157,1.0136489985754944,0.995336037368609,0.9924618027751685,1.090058322569801,1.0441875383719281,1.313876898413727,1.4906308939407693,1.3058988025526426,1.2515145964235295,1.0211981528301919,1.0387242308780444,0.9561984490428749,1.2761721757431617,1.2093882113054095,1.362061656155104,0.9496716055286826,1.1732807127227258,1.361326708515031,1.265126480720134,1.0781769102990035,1.1524937737580285,1.123068536057639,1.1690723207766356,1.0899877425758056,1.3375578412544467,1.5412513922441762,1.3949610939890318,1.09530501817777,0.9829761920941908,1.2426938859152046,1.262613754044474,0.9837027455066963,1.0440238457536581,0.9291236833699826,0.97760962685157,0.8777870198544855,1.206154322103118,1.2607593313454017,1.273607593490347,0.8772285847829978,1.0698809123043258,1.2845331166093155,1.1556992448676289,0.9861419467160748,1.086208874033294,1.0073031122588185,1.0650744002707722,0.9852448906411465,1.2584794502227472,1.4532669896372241,1.3379576839145557,0.9887201518341598,0.9694881573568663,1.1507458937740849,1.0890975096589437,1.1114605162279585,1.0123503433255694,0.9147498652220306,0.9657043420485529,0.9070936842627535,1.1268770992908417,1.1996558152670194,1.191545770741423,0.9042499555553684,9.0,0.5123966942148759,4.66666666666667,3.8125,2.657777777777778,1.5069444444444446,1.2612244897959186,0.875,0.8926681783824642,0.6356250000000002,9955.378173630954,11579.508037981437,4272.03536098413,3783.1323417808762,17.193839276359387,0.45270897925717624,9.410033848046783,0.8271814484416832,0.0,0.43243243243243246,1.4435503938337708,3.5114379921015533,4.926488710131023,5.552665346705467,5.9054447026494055,5.947997894138765,0.18367346938775508,0.005958101095521815,0.07070707070707073,0.05446428571428571,0.03743348982785604,0.020364114114114117,0.016379538828518416,0.011217948717948715,0.01050197856920546,0.006984890109890111,0.4176848870721662,38.7963348604748,20.0,12.380725758477096,272.27542605449304,0.0,4.731835216267614,365.11454761378576,,318.7583027589097,313.0048609703903,312.68632892863957,318.821283943953,434.2455175189384,316.51819929395947,319.084846157773,389.3871101116896,0.030173088884090708,-0.02873513270649301,-0.5910196959886005,0.3127547350755215,0.27837754201615367,-0.07443735493261748,0.03064470090770339,-0.0028811601731263538,-0.01599474680808354,-0.05773987090785336,-0.045724144524942084,0.018457109302561572,0.021516478234708453,0.12940544979727614,0.03977019052681605,-0.087492558523611,0.02577478544373953,-0.016477816213365987,0.019018908232992838,-0.040370120743890646,0.11478174613002573,0.04713365468571165,0.12918008925429178,-0.032644150632106114,-0.06306085234969264,0.0405806091089851,0.12385512130684871,-0.09337624584717613,-0.06426628653820946,-0.04380515611155206,-0.06530163553464603,-0.0973337113718622,0.02653446963121856,-0.04446425632202488,0.058151252346939526,-0.09718779967187259,-0.013621612869129515,-0.09510796104617479,-0.1513022838959898,-0.12308193312459671,-0.1305431470788764,-0.02027403369167857,-0.012114418515261103,0.0034769875453582125,-0.08279363214412522,-0.07145396083461837,-0.11013429285018639,0.0092916646531929,-0.1265499635302699,-0.033099888695171525,0.07566396447785083,-0.02616279069767442,-0.06300519945820769,-0.0864202824720731,-0.1278512980427556,-0.12170900053082978,-0.04934857581610415,0.006782415762307649,-0.009627598371525384,-0.13946035563471967,0.05019250969344072,-0.02393375335521079,-0.02206471788897249,0.04198479189451313,0.017051639339590918,0.04527108472708392,0.051289304622529085,0.059969626779801576,-0.010658014270313196,0.021555872639731553,-0.029875502130030044,0.07026849136225934,-0.042103902661889535,-0.0706481387371428,0.03113342783983279,0.05223507113041998,-0.024318474377459817,-0.016190291996513638,-0.04110424779332969,-0.011586073924166537,-0.06923717007313633,-0.08550778069819989,-0.07596605631894551,-0.021088727657799563,0.039332098973236834,-0.052204992253690345,-0.02941122277898749,-0.018561206235624825,0.02032608366859252,0.07513435903158898,0.041261128593452046,0.07429770638669911,-0.04012492680891062,-0.06030821420231293,-0.07023995673545201,0.07479097110524255,27.041933316015527,41.181587737597745,14.938135659891978,13.175300305684576,31.157554318122656,37.260490975984986,41.19830827910317,41.78801625287338,42.29912263585209,92.77711191168073,75.36317993175537,8.275710497403054,9.138221482522301,0.0,17.413931979925355,16891.738772428453,14990.258885598309,4747.134221719769,149.0,66.0,82.0,102.0,117.0,111.0,117.0,133.0,144.0,628.3624706360014,49.0,5.442417710521793,6.267200548541362,7.1252830915107115,7.964503363551548,8.825706773447951,9.670735486942808,10.53334876052526,11.381688580803818,12.2451635425654,0.5992907801418439,0.9697021276595743,1.1295407967853928,0.5569486835648882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6510769779589756,0.9566541510221109,0.995893446560568,0.6022310327355564,13.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,4.0,0.0,0.0,0.0,1.0,7.0,3.0,1.0,0.0,5.0,1.0,0.0,0.0,0.0,30.693665891510225,11.791352662431866,6.606881964512918,5.907179729351506,5.907179729351506,9.589074368143644,4.794537184071822,0.0,0.0,92.71024628938218,67.70247290403466,19.13135364097311,12.145807216896262,283.9679788370867,-1178.4809044669244,-34.041900599806276,-12.5370308985843,-33.67088298476926,632.0216031665457,2622.920350359836,34.91534081464745,27.903407982551453,44.45627712474298,0.5,0.9052998535091862,0.11643947224840852,0.0,0.0765279871576149,37.6601414231867,0.09470014649081389,9.0,0.30612244897959184,0.22023507904150177,0.535722082888968,0.7516091125792117,0.8471416701116609,0.9009634069020082,0.9074555290552485,4.328140000000003,,1.8214285714285716,2.1712424383434152,1.7666692712220975,1.8163286094222189,-7.484198594423033,1.938341493268054,1.8035259735430311,-3.2722709032638435,179.5358999999995,24.22700190085622,0.0,20.850275542869472,5.917906046161393,77.60772416565871,19.696394776338067,101.11657785678895,0.0,5.749511833283905,4.59511985013459,0.0,5.8944028342648505,0.0,7.377133712833954,0.0,8.943636705909594,0.0,10.552395447950312,56.33333333333333,25.27342224031017,0.0,0.0,0.0,0.0,0.0,4.513838395281422,0.0,91.15199999999999,0.0,39.72308956129049,0.0,0.0,0.0,0.0,0.0,-0.845759807687652,106.17683489782692,20.68722876581904,4.794537184071822,5.749511833283905,71.77779474826251,22.43071761399566,19.76538044554264,48.94292361202125,78.86277189000094,0.0,0.0,0.0,52.35317625509949,61.2012359281437,57.915833093787825,730.2290952275716,,637.4374129712355,625.9153200956355,625.2958461498347,637.5635970788007,870.7688346100924,632.9521228708204,638.091278142783,779.7701287591551,57.915833093787825,730.2290952275716,,635.6951769463908,623.8384795024369,623.605988586057,635.8262392784837,875.9752336322998,631.0980570946509,636.366166342003,782.0464911266433,4.767864326257072,510.54738489431526,,451.69461615568673,443.35679610217994,442.6341875985336,451.7850631574239,621.6883525471608,448.4325397726741,452.16972846870055,555.0946667475648,1.2590398498649527,15.87454554842547,,13.857335064592077,13.606854784687728,13.593387959779015,13.860078197365233,18.929757274132445,13.759828758061314,13.87154952484311,16.951524538242502,2.3839321631285357,365.11454761378576,,318.7583027589097,313.0048609703903,312.68632892863957,318.821283943953,434.2455175189384,316.51819929395947,319.084846157773,389.3871101116896,89.92549019607843,0.0,7.730193671661402,0.0,0.0,0.0,11.711155120833151,93.61398397669339,2.7257304417213835,9.023863578078087,5.900000577767498,0.0,-2.8607922736752958,1.6052584944193335,0.0,0.0,0.0,56.60971707714231,829.245234403829,135.69373702037447,330.075171257546,463.0899387523162,521.950542590314,555.1118020490441,559.111802049044,1116.0,174.45604785841067,86.74434759980336,83.3626885510933,120.0,120.0,1.0,7.965133161711203,6.614709844115208,4.895206353378079,6.682838813699443,,6.693841619886598,6.693961491780026,6.69321797448382,6.69383796264746,6.679480260662493,6.693875321871721,6.693833964762279,6.687506835317798,0.10641752942126258,0.14527910464564006,,0.14551829608449127,0.14552090199521797,0.1455047385757352,0.1455182165792926,0.14520609262309767,0.14551902873634176,0.1455181296687452,0.14538058337647386,3.114312734539564,3.4255991728792266,,3.4272442459933163,3.4272621536204952,3.4271510746140703,3.4272436996343876,3.4250964827265693,3.427249280755445,3.427243102385635,3.426297437820248,506.4200000000021,1040.5628699537024,354.9819578773868,,352.16890094043197,352.1612171551513,352.4311300471093,352.16980009705463,354.50070488598715,352.17555728471507,352.16863158754336,353.128257671261,22.620931955515267,7.716999084291017,,7.655845672618086,7.655678633807637,7.6615463053719415,7.655865219501187,7.706537062738851,7.6559903757546754,7.6558398171205075,7.676701253723065,8.473573370332476,7.398123268798338,,7.390167196227616,7.3901453775233374,7.390911530906163,7.390169749421474,7.396766637860141,7.390186097048672,7.390166431387249,7.392887630616951,5.900000577767498,41.32834805570983,20.73501869891124,3.8420428486675595,-0.04927602733153913,23.279468434622697,0.8314975711399005,8.63289984051281,0.0,622.6827462149255,260.1117102373994,-1079.4762310819208,-31.18202630102575,-11.483789692360856,-30.842178030912006,578.9252041017897,2402.567715354927,31.98208843832328,25.559231014414124,40.72148670093097,8131.0,70.0,2.9628355103552066,1.6189003048396218,0.0,0.0,0.641565717198172,0.23092969310735784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.355498860309242,0.12773476187829758,0.45997870898363175,0.14225357495017957,33.05346651713189,27.369472666574467,22.1171012961276,16.211387532744794,19.746066592578167,12.539353366501997,15.544945851978143,8.411735501010682,12.917576795033934,6.115929898972011,9.63755179300836,3.934253838624218,5.981053703304429,2.2406587147259422,3.871091769264677,1.3191820036696296,6.286304034439275,2.828546710134427,10.135848877821765,3.9637837846951247,14.64982345820116,4.788945241868333,155.74051167822984,78.65690042165366,47.71705805631822,32.91875256057181,29.855279982549078,28.692406233184574,230.0,263.0,102.20606399999997,55.91393600000008,0.39361702127659576,331.09,15.555555555555555,10.277777777777775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,18.0,94.0,0.0,0.0,97.0,18.0,3.0,12.0,85.0,21.0,49.0,76.0,0.0,0.0,0.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.0,5.0,4.0,1.0,46.0,9.0,0.0,4.0,5.0,0.0,4.0,15.0,0.0,0.0,0.0,0.0,3.0,4.127134385045092,6.306389331539575,4.61015772749913,5.012300573415317,5.427699538047772,5.799282030467152,5.631659710160322,5.70169696816518,5.935224828785106,6.145659868795921 +2747,c1ccc(C2(c3ccccc3)CC2C2=NCCN2)cc1,0,20.105263157894736,5.749205263157895,3.4210526315789473,5.684210526315789,158.77095451780215,79.14303757894736,1.5953482180863687,5.859163157894737,2.412463450292398,7.291181894736842,228.14315730758025,23.4390243902439,6.090341463414634,4.2926829268292686,6.048780487804878,143.0353783452585,88.63195509756093,1.951239648048781,6.258865853658536,2.6771680216802167,7.503202243902437,277.27686124304694,19.228571428571428,5.9915842857142865,3.8857142857142857,4.7,149.0584831743378,70.49728145714282,1.704217002064957,6.131630000000001,2.451984126984127,7.4564296,233.4671787800793,15.351648351648352,5.790307692307692,3.3956043956043955,3.4505494505494507,155.07817276464047,54.93383751648351,1.4771669929404831,5.906692307692308,2.146672771672772,7.330260307692306,195.18214865153573,15.593406593406593,5.785230769230768,3.32967032967033,3.4285714285714284,151.8635434279708,55.47690582417584,1.526451312234495,5.913461538461537,2.157509157509157,7.313910769230768,200.69396935601512,14.057692307692308,5.686346153846151,2.8461538461538463,3.019230769230769,155.089454513695,49.72728136538463,1.3820921925642118,5.800682692307692,2.1810897435897436,7.249809769230769,178.22693573354928,13.019607843137255,5.746000000000001,2.4705882352941178,2.4705882352941178,160.27558637901936,45.222633823529414,1.278731742709569,5.83887254901961,2.2908496732026142,7.3190667450980404,163.54448692543636,10.795454545454545,5.680136363636364,2.1818181818181817,1.5681818181818181,160.5619267327305,35.139652363636365,1.203507374400932,5.769568181818182,2.151515151515152,7.274355636363637,146.5836988355201,6.197183098591549,5.36318309859155,1.7464788732394365,0.4647887323943662,166.31545325341932,17.15334666197183,0.9463106630390423,5.429922535211268,1.676056338028169,7.055414816901408,101.9273099860961,6.531855955678672,0.047163988919667534,0.009139481549467504,0.584487534626039,2.8476454293628812,1.5156756562858984,31.476368094182828,0.23859690253853189,0.05106315789473679,0.2729157048322562,0.019360022160664816,53.63657455291265,0.4399027092764006,0.0014244578069049448,-0.0034479120389344486,0.2691710019593271,0.669684480778326,-3.051379637560398e-05,2.1185175425309266,0.011551743679366785,0.002270731707317042,0.00639092047083905,0.00011392392405920037,3.110740410993523,-0.6190740007914523,-0.00023609418282547742,-4.09010473357942e-06,0.009497427779976315,-0.18674317372378302,0.026026929992969575,-2.9903731468143935,-0.016792248384622056,-0.0018200000000000104,-0.03344724200853011,0.000867767313019404,-4.58523453470849,-0.14377035706675595,-0.005495394356336179,-0.0009955135457568923,-0.060485221150041076,-0.35718851785333766,0.14947496918365938,-0.6368824759063615,0.01251115929783021,-0.005223076923076928,-0.056394835350860276,-0.0024595849137012517,1.6415986061855046,-0.7927003744178259,-0.0050617911174697825,0.00014039232653406203,-0.12641928708410696,-0.24961188396091438,-0.10070296542446734,-3.813457780706822,-0.024297524329960414,-0.0058692307692307655,-0.022787178387940157,-0.001799601108033237,-5.90631447219791,0.14122096739825268,0.005476901768591513,0.0016323222905828758,-0.11485190709567437,0.09061367994886003,-0.2901099241964219,0.6058302509588758,-0.02186046668022719,0.00555961538461538,0.07546978212230983,0.0021374879607926668,-2.9591649839237744,-0.13557112595730822,-0.0026163109010917357,-0.0005700808710541024,-0.0757156048014774,-0.3399054912823855,-0.0663360416047714,-0.6464318000651789,-0.005171548597135576,-0.0023058823529411776,0.008778624946439014,-0.0013779829449785418,-1.021320898925909,-1.5043439939561822,-0.010251070259380496,-0.0013362547422338807,-0.03424830017627806,-0.6096071518509192,-0.17972004441922682,-7.2308994458574665,-0.044536028883582095,-0.011693181818181799,-0.06939198074932147,-0.0037433235960715157,-10.939800582067347,-0.2590612929655496,-0.0024995708321953925,-0.0006145588299265095,0.07600171667121838,0.02781787678982462,0.027310183107968178,-1.2322395923296134,-0.0028834250619381163,-0.0027605633802816657,-0.03691012456703904,-0.0009164076313838859,-1.1584781517626195,,,0.49000000000000005,1.3,0.675,0.0,0.625,0.05,0.7205148054232631,0.00017817007075038305,0.017378170070750383,0.7841967593183006,0.25113561911870497,0.24439688892919942,1.5047115647415636,0.4955325080479044,2.0739869020737554,1.8728731263072713,0.20111377576648432,0.0,0.0,0.20111377576648432,6.898605225684214,764.0,218.46980000000002,130.0,216.0,6033.296271676482,3007.4354279999993,60.62323228728201,222.6482,91.67361111111111,277.064912,8669.43997768805,961.0,249.704,176.0,248.0,5864.4505121555985,3633.910158999998,80.00082557000002,256.6135,109.76388888888889,307.6312919999999,11368.351310964925,1346.0,419.4109000000001,272.0,329.0,10434.093822203646,4934.809701999998,119.29519014454699,429.2141000000001,171.6388888888889,521.950072,16342.702514605551,1397.0,526.918,309.0,314.0,14112.113721582284,4998.979213999999,134.42219635758397,537.509,195.34722222222226,667.0536879999999,17761.57552728975,1419.0,526.4559999999999,303.0,312.0,13819.582451945342,5048.398430000001,138.90706941333903,538.1249999999999,196.3333333333333,665.5658799999999,18263.151211397377,1462.0,591.3799999999998,296.0,314.0,16129.30326942428,5171.637262000001,143.73758802667803,603.271,226.83333333333331,753.9802159999999,18535.601316289125,1328.0,586.0920000000001,252.0,252.0,16348.109810659975,4612.7086500000005,130.43063775637603,595.5650000000002,233.66666666666666,746.5448080000001,16681.53766639451,950.0,499.852,192.0,138.0,14129.449552480284,3092.289408,105.90864894728202,507.72200000000004,189.33333333333334,640.1432960000001,12899.365497525769,440.0,380.78600000000006,124.0,33.0,11808.397180992772,1217.887613,67.18805707577201,385.5245,119.0,500.93445199999996,7236.839009012823,248.21052631578954,1.7922315789473664,0.34730029887976516,22.21052631578948,108.21052631578948,57.59567493886414,1196.1019875789475,9.066682296464212,1.9403999999999981,10.370796783625735,0.735680842105263,2038.1898330106806,18.036011080332425,0.05840277008310274,-0.1413643935963124,11.036011080332411,27.457063711911363,-0.0012510656513997631,86.859219243768,0.47362149085403815,0.09309999999999873,0.26202773930440104,0.004670880886427215,127.54035685073444,-43.33518005540166,-0.01652659279778342,-0.00028630733135055937,0.664819944598342,-13.072022160664812,1.8218850995078704,-209.32612027700753,-1.1754573869235438,-0.12740000000000073,-2.3413069405971076,0.06074371191135828,-320.9664174295943,-13.083102493074792,-0.5000808864265923,-0.0905917326638772,-5.504155124653738,-32.50415512465373,13.602222195713004,-57.95630530747889,1.138515496102549,-0.47530000000000044,-5.131930016928285,-0.2238222271468139,149.3854731628809,-72.13573407202216,-0.4606229916897502,0.012775701714599644,-11.504155124653733,-22.714681440443208,-9.163969853626527,-347.0246580443208,-2.2110747140263975,-0.5340999999999997,-2.0736332333025542,-0.16376370083102457,-537.4746169700098,14.686980609418278,0.5695977839335173,0.16976151822061908,-11.944598337950135,9.423822714681444,-30.171432116427876,63.00634609972308,-2.2734885347436276,0.5781999999999995,7.848857340720222,0.22229874792243734,-307.7531583280725,-13.828254847645438,-0.26686371191135705,-0.058148248847518444,-7.722991689750695,-34.67036011080332,-6.766276243686682,-65.93604360664824,-0.5274979569078287,-0.2352000000000001,0.8954197445367795,-0.14055426038781127,-104.17473169044271,-132.38227146814404,-0.9020941828254836,-0.11759041731658151,-3.013850415512469,-53.64542936288089,-15.81536390889196,-636.3191512354571,-3.9191705417552245,-1.0289999999999984,-6.10649430594029,-0.3294124764542934,-962.7024512219266,-18.393351800554022,-0.17746952908587285,-0.04363367692478218,5.396121883656505,1.9750692520775481,1.9390230006657405,-87.48901105540256,-0.20472317939760626,-0.19599999999999826,-2.620618844259772,-0.0650649418282559,-82.25194877514599,0.670800139727836,0.5709693450072744,0.43089783308513424,0.31756117868055533,0.2617392148800032,0.17132882630554871,0.16167925788772555,0.09286558331900782,0.10236305362891644,0.05165557557510658,0.06484482006743811,0.028662079028871024,0.03932849669295034,0.01589927419674943,0.026584878824857872,0.009067715137306408,7.059091499301397,5.68507202306299,3.165896429650159,2.1850576754707887,0.34253027510237427,-0.3865303210219757,4.035639546273767,1.734409811042196,5.042312643956003,1.896086873238916,14.553312800449937,10.945387272436498,14.037833153356255,11.696082755374809,2.0024455631901414,1.009583712629299,3.1477902485630387,2.2350527379431258,3.036449772633761,1.143521197325451,3.3091286249474896,2.4310495791985245,20.911399310832167,15.587265981410038,0.22289150013293405,0.5245815703391032,0.6535038438614927,0.7629107931654471,0.807719909954263,0.807719909954263,1.5278720448385232,591.4825027665295,0.0,1.0,2.0,0.0,10.0,1.0,2.0,1.0,1.0,4.003086843471664,2.318159114530276,1.5981330514000147,0.9870993422191292,0.7368421052631575,0.7368421052631575,204.0690092204224,653.9108929189822,32.374867203250105,17.208181392604796,32.82313572170972,,8.0,285.0,0.0,0.0,5.41499046939678,5.917906046161393,19.51033443475116,16.96252276915126,0.0,0.0,70.97286402125812,0.0,9.8,26.0,13.5,0.0,12.5,0.0,0.009999999999999964,1.0,0.0834307992202728,0.05557894736842095,-0.02785185185185185,0.020952380952380945,0.051837837837837575,0.0,0.5315789473684213,0.7399999999999998,0.44814814814814846,0.4760000000000003,0.7190476190476188,14.41029610846526,0.003563401415007661,0.34756340141500763,15.68393518636601,5.0227123823741,4.887937778583988,30.09423129483127,9.910650160958088,0.6621621621621624,0.0,0.0510204081632653,0.2040816326530612,0.2777777777777778,0.28966454883495596,-0.39046250444087993,-0.021990183268924896,-0.01027532906423368,-0.02603083362939199,0.710335451165044,0.9575191730247882,0.0447478513363073,0.02519787297433653,0.04163126839238209,-4.9061291525596396,0.8453189970831004,0.9029518280434947,1.4298474272523196,0.7110449658998957,0.6838521400778209,1.0708183189448695,0.8461652214896097,0.9254868404393845,0.8716740576496673,0.8955533330554011,0.9619512058320984,0.8914790822388391,1.0360156912637826,1.0760583269146544,1.135745770161252,1.3446005416384559,1.125913702056698,1.0406159626478557,1.0356222922811684,1.0278639010837387,1.0658189033189032,1.119864667218805,1.0903138346033343,1.028298308695431,0.9877736767049743,1.1363520584500606,1.1396859964549826,1.501119733347221,1.230558109205969,0.9062275461483776,0.9856775946855181,0.9161206545545167,1.105810855810856,1.1780741065486169,1.1719093136937655,0.9333364029668992,1.0631262291567634,0.9604528044109396,0.8296644469514932,1.501119733347221,1.055837644845427,1.0513306615052955,1.0641349444967998,1.0840282552594394,0.9867077367077366,0.9405262308925806,0.9239002205938093,1.0829143895884346,0.9374021334899195,0.7224834711751935,0.6100948037622972,1.2333895370032808,0.9271456899131997,1.1428140832746976,0.9409984735156038,1.077768251675886,0.7600524475524473,0.6077209764455352,0.6864256915051965,1.0390276329914498,1.020085981805784,1.2765682232296665,1.309610234436507,0.8329383886255922,1.1364013504234378,1.0495517723704333,1.0175661713289088,0.967871900914001,1.210982372747079,1.139685280797899,1.3678780110395155,0.9706543810411775,1.2213330827357542,1.3483304741035476,1.36753979031012,0.5679125376992673,1.1073742041032897,1.099953294226568,1.2192079727205773,1.1383894674440467,1.3261306244260789,1.3863167793104878,1.3696373439085447,1.1612816512121227,1.0434690415606445,0.8850450200941351,0.8422578364992667,0.4457980108136972,0.8475913848851865,0.8567426561537554,1.043937967601889,1.0049614972670415,0.938291364347702,1.0426759396889536,0.7990157276600311,1.0299085945775097,3.0,0.0,2.3888888888888893,1.9861111111111112,0.997777777777778,0.2427777777777777,0.13895691609977315,0.13548752834467115,0.019132653061224497,0.0,3519.698807309264,3995.674007202287,1892.3260889257085,1708.287449541761,10.603784341599003,0.4759845293394496,5.556547042545976,0.9083406044089593,1.0,0.2777777777777778,1.2448406699719212,2.929768398913309,3.6497944620435705,4.260828171224456,4.511085408180428,4.511085408180428,0.13043478260869565,0.0,0.07962962962962965,0.0662037037037037,0.03325925925925926,0.00809259259259259,0.005344496773068199,0.008467970521541947,0.0038265306122448996,0.0,0.3352589657007359,13.648393194706994,5.652892561983471,2.4934359438660025,119.11167237435036,1.0,3.997563003729808,77.81616973462864,,63.91985021185529,63.508681890839696,63.13027646979531,63.92328675482203,70.48260626845132,63.743592810561935,63.94482746391468,68.47047046706328,0.06734727652620041,0.030202233516150735,-0.37725466376540095,0.4605247948214078,0.23517130112935375,-2.0132141232892002e-05,0.06730501867915477,0.04841531284129413,0.04446908105444634,0.023417195704318806,0.00588449347391079,0.05799662705762032,-0.09477765660971764,-0.0050058145681360165,-0.0004475204322522783,0.01624915368991208,-0.06557809894385766,0.01717183348893226,-0.09500375449501261,-0.0703791549930545,-0.035642135642135885,-0.12255521179731298,0.04482264048139939,-0.08548708736396173,-0.022010644148048722,-0.11651674258715174,-0.10892450959812859,-0.10348419353158685,-0.12543293282592888,0.09861936395412044,-0.020233670987729498,0.052436386075086355,-0.10228660228660248,-0.20663829289531932,-0.12704452987138476,0.03060595535544617,-0.12135913280951445,-0.10732321912150648,0.015361082111079017,-0.21629081818655263,-0.08765553512635223,-0.06644097304514071,-0.12115304311146334,-0.10183503671442892,-0.11494061494061497,-0.08349529904094738,-0.09295449628614678,-0.11011729442884748,0.021620343185228673,0.1161246513292184,0.17860119107937586,-0.19650018228217267,0.03182056270577672,-0.1914063361730863,0.01924714595871179,-0.09162091564326516,0.10887723387723389,0.27653147395345484,0.11040730961225646,-0.055170655631719155,-0.020755375941725298,-0.055472638362882944,-0.06237562469693011,-0.12954186413902055,-0.11936369878690775,-0.04376664712510141,-0.020537051737701796,-0.02167483543211716,-0.04515745692216287,0.032166067364407164,-0.07117672353590025,-0.019041501203966204,-0.23030881332408043,-0.21734951801555036,-0.1462068428062788,-0.05859543300301599,-0.2140741068270251,-0.11857421056667458,-0.22972470725406893,-0.1866580345752385,-0.22899449035812655,-0.2542615889106575,-0.19335327020839377,-0.2039615816866754,-0.03966120727759261,-0.052997443376827345,-0.06724219821443983,0.13003137307255844,0.009768729106154365,0.0180184876590884,-0.03914808686448627,-0.012084922441407056,-0.05406174420258884,-0.1352436811568808,-0.047335050744198984,-0.021598660269025516,19.859086363137816,16.735184618185645,2.94168275343288,9.779544895500287,23.697704097725815,28.393113893251833,31.762616250332727,32.014875545184346,32.014875545184346,41.47973804147511,37.45746252614543,4.022275515329686,0.0,0.0,4.022275515329686,2510.1431057063664,1827.3393604246598,1028.6007945922634,68.0,33.0,47.0,65.0,78.0,84.0,96.0,96.0,84.0,262.14699857600016,23.0,4.727387818712341,5.631211781821365,6.561030665896573,7.504942068396171,8.460622839927844,9.42294862137501,10.39074767827941,11.361555914215826,12.334901121759087,0.6140350877192984,0.9551578947368423,1.1136600875829707,0.5748151913377648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6974830444374412,0.9450980392156859,0.9820216966305061,0.6419046675308258,10.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,5.316788604006331,5.835619785757269,0.0,0.0,0.0,4.992404732635669,0.0,0.0,0.0,60.6636706846161,17.547724606320003,17.877652921470748,6.544756405912575,140.51734303374047,-189.41480377564022,-10.667519163813694,-4.9846000993589525,-12.62765358504268,344.5863522541629,464.49608914334203,21.707348039436415,12.223581293245843,20.195482136667042,0.5,0.9823604111073162,0.27575132076436176,26.454516504535658,0.11968206743507012,197.05085938702646,0.017639588892683803,4.0,0.13043478260869565,0.23720614790944047,0.5582715064962576,0.6954734898098179,0.811906826134606,0.8595936961065881,0.8595936961065881,2.994300000000001,,0.2857142857142858,0.37133550488599343,0.4504991709152957,0.2850003569643751,-1.0363636363636362,0.32236842105263164,0.28052598622417024,-0.6386492564868576,82.07570000000004,0.0,0.0,5.316788604006331,10.910310778797061,11.83581209232279,13.08951281182515,71.7905736680101,0.0,0.0,3.8501476017100584,1.9459101490553132,5.187385805840755,4.2626798770413155,6.767343125265392,6.401917196727186,8.46863300080086,8.464003362902119,10.245906358926657,23.33333333333334,21.73912399218947,0.0,0.0,0.0,0.0,0.0,2.81962962962963,0.0,36.29600000000001,0.0,0.0,0.0,0.0,0.0,0.0,4.649526171579743,1.2062093726379444,42.319083328152885,5.316788604006331,0.0,0.0,18.92513259758242,5.41499046939678,5.917906046161393,17.547724606320003,65.65607541725177,0.0,0.0,0.0,21.842977270835064,26.504355688622766,27.70144277370689,155.63233946925732,,127.81112899513917,126.9802302311908,126.23475145513038,127.81807347394762,141.48339435508444,127.45494877901861,127.86160232920693,137.26026556236997,27.701442773706894,155.63233946925732,,127.55398613799636,126.64602827679349,125.87435211839822,127.56157315267968,142.0015761732663,127.1648172000713,127.60912894160523,137.57959019061343,5.024986363481119,103.74612376421881,,87.03950793067436,86.41339819847828,85.84029587222527,87.04475570309936,97.46856426310912,86.77068119083194,87.07765498459392,94.19018930672581,1.3850721386853446,7.7816169734628655,,6.390556449756959,6.3490115115595405,6.311737572756519,6.390903673697381,7.074169717754222,6.37274743895093,6.393080116460347,6.8630132781184985,2.6587262766652118,77.81616973462864,,63.91985021185529,63.508681890839696,63.13027646979531,63.92328675482203,70.48260626845132,63.743592810561935,63.94482746391468,68.47047046706328,35.913725490196065,0.0,0.0,0.0,0.0,0.0,0.0,37.31682447195923,3.0732593222474174,3.462807067271353,0.0,0.0,0.509074074074074,0.0,0.12370370370370365,0.0,0.0,24.392377366171377,476.546665532703,47.30394545893301,111.33119915870574,138.69218955765567,161.91147050652933,171.42124551085624,171.42124551085624,694.0,119.39534851038364,8.557029755200368,75.59392647826965,24.39,24.39,1.0,8.102581694831613,5.523561956057013,3.573443109964238,4.400672261393616,,4.411897889646407,4.412938337924632,4.4138739430030025,4.411889096090571,4.393502145634284,4.412346781929356,4.411833941513394,4.399337830394539,0.1786721554982119,0.2200336130696808,,0.22059489448232034,0.2206469168962316,0.22069369715015014,0.22059445480452852,0.2196751072817142,0.2206173390964678,0.2205916970756697,0.21996689151972695,1.9666767681346906,2.174904496493832,,2.177452137904234,2.1776879379250422,2.1778999295369847,2.1774501447564276,2.1732738448791915,2.1775538785744084,2.177437643326602,2.174601217066789,210.8999999999997,179.00925604451518,112.04274649736715,,110.7665529091958,110.69453537452823,110.62839462519489,110.76715524300927,111.88816928060471,110.73566730363659,110.77093085852582,111.55434516130299,8.95046280222576,5.602137324868357,,5.538327645459789,5.5347267687264114,5.531419731259744,5.538357762150463,5.594408464030236,5.5367833651818295,5.538546542926291,5.5777172580651495,5.880584694809692,5.4120276441944855,,5.400572040250916,5.39992165477901,5.399323969294705,5.400577478103409,5.41064706446723,5.40029316624478,5.400611563579033,5.407659053268855,0.0,4.649526171579743,3.462807067271353,2.943333333333334,1.7152834467120184,21.73912399218947,1.1595833333333334,1.913675988914084,0.0,252.1966657474534,68.16548235770543,-91.88582125379618,-5.1748529659205476,-2.418047927731478,-6.1257214169197445,167.16011282427357,225.32876929021458,10.530314748831229,5.9297044550056475,9.796903012618024,751.0,30.0,1.022971366917449,0.6979597382483759,0.06804138174397717,0.05103103630798288,0.43013658042525177,0.2234167606586983,0.06804138174397717,0.034020690871988585,0.2041241452319315,0.2041241452319315,0.35355339059327373,0.30618621784789724,0.848461712529338,0.541371651523706,1.4344215437107202,0.7496224239486677,1.889941697207837,0.8668521684659597,13.416002794556722,11.419386900145488,9.910650160958088,7.303907109652773,8.637394091040106,5.653851268083107,7.598925120723101,4.364682415993368,6.653598485879569,3.3576124123819278,5.0578959652601725,2.23564216425194,3.303593722207829,1.3355390325269523,2.552148367186356,0.8705006531814152,2.9518951992843956,1.7045033634537003,5.380594294341692,2.659185356484993,8.648779151116505,3.6082131997148847,67.46978072619231,48.35216351251417,36.77680332715775,28.03734429899531,26.855986133293086,26.855986133293086,112.0,139.0,44.262273999999984,19.767725999999996,0.5263157894736842,149.02,4.256944444444445,4.402777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,12.0,12.0,38.0,0.0,2.0,41.0,12.0,1.0,7.0,34.0,13.0,23.0,28.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,2.0,1.0,1.0,20.0,2.0,0.0,2.0,0.0,0.0,4.0,3.0,0.0,0.0,0.0,0.0,2.0,3.4339872044851463,6.579663453415824,3.9889840465642745,4.537961436294641,5.082955955675882,5.552474971391416,5.667723424840498,6.0785019654252,6.359465731337857,6.507837257303089 +5694,Cc1cccc(Nc2cc(Cl)nc(SCC(=O)O)n2)c1C,0,38.22857142857143,6.342777142857143,3.3714285714285714,8.058553791887125,161.25943167575673,154.82836682857146,1.8099425333681716,6.480828571428572,4.890725499161713,7.935815257142855,246.51089472277542,31.25,6.44525,3.8333333333333335,7.69753086419753,146.75009878200692,120.89244847222224,2.0093320001666672,6.621541666666667,3.384745084590764,7.905043944444442,283.4304950598963,29.344827586206897,6.3221637931034484,3.5689655172413794,5.906130268199234,152.97642967160698,112.84758546551724,1.7613623383438446,6.481208620689654,3.532460621541082,7.862555137931035,241.6083843962619,26.62686567164179,6.374716417910448,3.2686567164179103,4.192371475953566,154.9372271492289,99.95624792537312,1.6830916974581787,6.525953731343284,2.9996007616239786,7.9373620298507435,227.8305504503265,24.094594594594593,6.131312162162162,2.7837837837837838,3.7052052052052056,159.11360900699896,90.28976291891891,1.5098835034971891,6.270714864864866,2.6667330911158076,7.720069500000001,193.48989631268282,18.324675324675326,5.994428571428571,2.6493506493506493,4.147186147186147,163.90980129889644,67.26226764935063,1.3286506580088049,6.099316883116884,2.976337448559671,7.618589948051947,170.898953478455,23.596774193548388,6.169741935483872,2.8225806451612905,4.326164874551972,160.3542909777358,88.73257369354839,1.5425024371506293,6.326177419354839,2.9053829815478567,7.796923258064517,204.53382986339287,28.912280701754387,6.301473684210527,2.6491228070175437,3.4931773879142294,159.11417677240377,110.5775369122807,1.6018659540138946,6.488991228070175,3.267200924121001,7.983399228070174,206.77696038621696,21.632653061224488,6.203714285714284,2.3877551020408165,2.3219954648526078,160.22192822195646,75.111237,1.5396271000693058,6.406336734693879,2.7396069538926686,8.002655755102042,182.82989286331988,15.188571428571429,0.12416620408163262,0.02416463084249663,0.6253061224489797,4.007598891408414,1.642600460746649,69.24207946122449,0.32160513613845393,0.12466726530612242,1.6855520406607998,0.08717287673469386,51.101126662807076,0.15666666666666684,-0.012520013605442172,-0.017075204656125175,0.18104308390022672,1.3433319335964842,-0.13711229543477602,0.8373022800453486,0.02172182076907947,-0.011084963718820888,-0.1804968564675273,-0.010206229115646245,1.7090582335526021,1.6537931034482762,0.04210675158339195,0.007636628291818888,-0.02776917663617176,0.20976412020746996,-0.13190581248139746,7.793904157987333,-0.020373234993930216,0.04213524700914848,0.4479579223014119,0.028981745925404635,2.7528069972712514,-0.9122388059701491,-0.03528842156564116,-0.004839649018055235,-0.09438927809929948,-1.5197629388958454,-0.26487855678273015,-4.691929007919586,-0.02373323657156602,-0.03328590070057873,-0.48336630398393904,-0.015993540274139486,-7.1208970535737475,1.7940540540540533,-2.840485383342015e-05,-0.0011821380377078127,-0.02376172090457805,-0.10424315471934519,-0.23204786062331675,7.493899070049645,-0.03294055693390483,0.004467831218974097,-0.05050920829286491,0.009207862647545478,-8.773272783242517,1.7802597402597409,0.04047520593692021,0.004176417754336066,0.07970315398886828,1.1319141528665337,0.22764210725279818,8.573552836734697,0.04214096468288266,0.03704880148423006,0.4390316507365303,0.0221446386641929,9.956631401948503,0.5722580645161292,-0.00942924555628703,-0.006713617306562046,-0.0709282422646478,0.0918720080624843,0.1338426312715819,2.810468918038181,0.03893428035711432,-0.008362472679394353,-0.02145217530645453,-0.010585501619486513,6.398907656984723,1.6785964912280702,0.027888532760472606,0.008601321684415355,-0.15763694951664878,-0.694984020898808,0.057951038246043966,7.755223184389546,0.0014402268129867233,0.03288145649838883,0.10686389859291245,0.027014705220193353,-0.6201270509544419,-8.617142857142856,-0.043192676384839625,-0.006356345205488335,-0.10810495626822156,-0.8745894971745309,-0.044688569356011745,-39.28600850437318,-0.09127884918461482,-0.05519805247813411,-0.2472933666248522,-0.03750924291545185,-16.22971283386965,,,0.4959183673469389,1.3452380952380953,0.7142857142857143,0.07142857142857142,0.6309523809523809,0.08333333333333333,0.7579608957392999,0.02199124115199729,0.030181717342473477,0.88892739020999,0.2603887538296214,0.2135349365599573,1.64688828594929,0.4739236903895787,1.9941854705538102,1.3595258185157246,0.2930442565958998,0.1614871076271936,0.08447610867356052,0.6346596520380862,9.229986439085726,1338.0,221.9972,118.0,282.04938271604937,5644.080108651486,5418.992839000001,63.34798866788601,226.829,171.17539247065994,277.75353399999995,8627.88131529714,1125.0,232.029,138.0,277.1111111111111,5283.003556152249,4352.128145000001,72.33595200600001,238.37550000000002,121.8508230452675,284.5815819999999,10203.497822156267,1702.0,366.6855,207.0,342.55555555555554,8872.632920953205,6545.159957,102.15901562394299,375.91009999999994,204.88271604938276,456.02819800000003,14013.28629498319,1784.0,427.106,219.0,280.8888888888889,10380.794218998337,6697.068610999999,112.76714372969798,437.23890000000006,200.97325102880657,531.8032559999998,15264.646880171877,1783.0,453.7171,206.0,274.1851851851852,11774.407066517922,6681.442456,111.73137925879199,464.03290000000004,197.33824874256976,571.2851430000001,14318.252327138529,1411.0,461.57099999999997,204.0,319.33333333333337,12621.054700015025,5179.194608999999,102.30610066667798,469.6474,229.1779835390947,586.6314259999999,13159.219417841035,1463.0,382.52400000000006,175.0,268.22222222222223,9941.966040619618,5501.419569,95.63515110333901,392.223,180.1337448559671,483.40924200000006,12681.097451530357,1648.0,359.184,151.0,199.1111111111111,9069.508076027014,6302.919604000001,91.306359378792,369.87249999999995,186.23045267489707,455.0537559999999,11786.286742014367,1060.0,303.9819999999999,117.0,113.77777777777779,7850.874482875867,3680.4506130000004,75.44172790339599,313.91050000000007,134.24074074074076,392.13013200000006,8958.664750302674,531.6,4.3458171428571415,0.845762079487382,21.885714285714286,140.2659611992945,57.49101612613271,2423.472781142857,11.256179764845887,4.363354285714284,58.99432142312799,3.051050685714285,1788.5394331982477,5.640000000000006,-0.45072048979591817,-0.6147073676205063,6.517551020408162,48.35994960947343,-4.936042635651937,30.14288208163255,0.7819855476868609,-0.39905869387755194,-6.497886832830983,-0.3674242481632648,61.526096407893675,95.92000000000002,2.442191591836733,0.4429244409254955,-1.610612244897962,12.166318972033258,-7.650537123921053,452.0464411632653,-1.1816476296479526,2.443844326530612,25.98155949348189,1.6809412636734689,159.6628058417326,-61.11999999999999,-2.364324244897958,-0.32425648420970077,-6.324081632653065,-101.82411690602164,-17.74686330444292,-314.3592435306123,-1.5901268502949235,-2.230155346938775,-32.385542366923914,-1.0715671983673456,-477.10010258944106,132.75999999999993,-0.002101959183673091,-0.08747821479037814,-1.7583673469387757,-7.713993449231544,-17.17154168612544,554.5485311836737,-2.4376012131089575,0.3306195102040832,-3.7376814136720036,0.6813818359183654,-649.2221859599463,137.08000000000004,3.1165908571428558,0.32158416708387705,6.137142857142858,87.1573897707231,17.52844225846546,660.1635684285717,3.244854280581965,2.8527577142857146,33.80543710671283,1.7051371771428532,766.6606179500347,35.480000000000004,-0.5846132244897958,-0.41624427300684685,-4.397551020408164,5.696064499874026,8.298243138838078,174.24907291836723,2.413925382141088,-0.5184733061224499,-1.3300348690001809,-0.6563011004081638,396.7322747330528,95.68,1.5896463673469385,0.4902753360116752,-8.98530612244898,-39.614089191232054,3.3032091800245063,442.04772151020416,0.08209292834024323,1.874243020408163,6.09124221979601,1.5398381975510211,-35.347241904403184,-422.23999999999995,-2.1164411428571417,-0.3114609150689284,-5.297142857142856,-42.854885361552014,-2.1897398984445755,-1925.0144167142857,-4.472663610046126,-2.7047045714285716,-12.117374964617758,-1.8379529028571406,-795.2559288596129,0.7335910911907768,0.6250016773965742,0.45238170446277975,0.3428374217552315,0.309287087991282,0.19143716989342283,0.19434110216009626,0.11120475659056389,0.12438154868679839,0.05786104379395234,0.08025158831117826,0.030427965118032974,0.053413710242721006,0.01758151278304233,0.036312822019481834,0.010097098719179446,17.0011037445652,5.685272897283113,3.5547459047644447,2.1846441125011085,0.4436817307729571,-0.3598362796472745,3.229521018783833,0.9727889321653713,6.022006107623958,0.6562065109328339,14.557184681105552,10.338111208316796,35.450517510304536,11.69679336448975,2.916353221326567,0.7416168274805528,3.500793347415148,2.23444383126679,7.008292498309103,0.6268244365007654,3.713724511292235,2.4303193507061045,24.434227729225537,14.70143751725898,0.34838003285495184,0.7030614013725348,0.8004197439185243,0.8530736962467261,0.8846660676436472,0.8846660676436472,1.8364667341068102,679.263850353474,0.0,3.0,3.0,0.0,5.0,0.0,2.0,0.0,0.0,3.2388807234221826,1.3142857142857154,0.7859935715521988,0.5002792858379133,0.32885071440934155,0.32885071440934155,-8.665544003606499,1049.1896216254866,62.12039680441259,29.976846332156754,62.650698202831485,,11.0,372.0,5.969305287951849,4.794537184071822,10.90596342363958,10.974299259655735,23.012722715771673,5.563451491696996,6.06636706846161,32.046575604766076,15.284745645900749,16.70746728507322,10.414285714285716,28.25,15.0,1.5,13.25,0.0,0.004081632653061125,1.75,0.20760120441619256,0.06424299952539148,-0.1433582048908011,0.05004436557231584,0.14756643356643329,0.0,0.6453061224489798,0.8755102040816325,0.4377049180327872,0.5810631229235883,0.8254658385093167,15.917178810525298,0.4618160641919431,0.633816064191943,18.66747519440979,5.468163830422049,4.484233667759104,34.58465400493509,9.952397498181153,0.5664335664335667,0.2286236854138088,0.0,0.336076817558299,0.21428571428571427,0.5079635466106323,-0.9795513845527037,-0.07250194862885675,-0.027987182415791532,-0.06996795603947885,0.4920364533893678,0.9488377510235081,0.0416740742998879,0.02710965002924308,0.04518275004873847,-4.872688261299742,0.6395786305492851,0.8250001972339903,1.6957662161551923,0.8414926022628372,0.5025408045967377,1.2028301778447419,0.6343495774561471,0.7981497322331101,0.7696824512319996,0.7686975404129158,0.8123255832433166,0.8280761051831864,0.7834838224228743,0.43256497318388515,0.5209204551906507,1.2053209687584405,0.8866723158913234,1.175545933380213,0.7671945183096813,1.0844663874791345,0.41725728879526536,0.4070504462916241,0.39740391914077294,0.8853544773314518,0.9001830576238445,1.2028866381841155,1.1213769732627157,1.2636880869802423,1.3346555533277298,1.2238745799733597,0.9045722758214986,0.9935929327392875,1.1529097574802536,1.1803695314530889,1.0773141593051254,1.0364841538467768,0.7385404591950866,0.719455402480656,0.8610193263427162,0.965704608002258,0.9028001594214936,1.1899771422322882,0.749325766021515,1.0154497035574448,0.7008583403954852,0.4476820589239366,0.5399768958583133,1.126672801879123,0.7571115866826926,0.48867111865620755,0.546346021549288,0.7969380488962734,0.6744316781560216,0.8083069477230218,0.7587319285718572,0.7756253137059589,0.5426487688430334,0.3455597634072557,0.48479720906261287,0.8270891109563177,0.9330626956964974,0.9045991700563342,1.0960403614892662,1.0899730480923102,0.9255430275988026,0.8915198279626126,0.9411091853079803,0.7705954610806626,0.9462145598298219,0.6709055070176577,0.9747614626520045,0.8435389168543986,1.121506739007036,0.7287491448003374,0.5685542421742862,1.2400943612294444,1.142209585534952,0.9419448244125949,1.1173223194125208,1.063019847863659,0.7480688616945244,0.8581769699900497,0.7493125013481735,0.9946374812380112,2.1915357565147953,1.348711385811099,1.16289450766273,1.0621036926519953,1.1782102028396546,0.9948711604579032,2.1716095498816883,1.6089702036539277,1.5416888598529983,1.1962277425822707,1.6248228388818478,1.3556336449759383,5.5,0.07029894908682788,2.000000000000001,1.625,1.1866666666666668,0.49305555555555547,0.550204081632653,0.2934027777777778,0.1476442428823381,0.10562500000000001,4290.22548959411,4667.7361190220545,2105.2664408770775,1955.3061129976102,13.543628793217133,0.47473686999197706,7.113968851592014,0.9038077163053989,1.0,0.21428571428571427,1.890402293522784,3.814997302659251,4.3432894453927675,4.629003731107053,4.800432302535625,4.800432302535625,0.25,0.008787368635853485,0.06666666666666668,0.056034482758620684,0.047466666666666664,0.020543981481481483,0.02292517006802721,0.013336489898989896,0.011357249452487547,0.011736111111111114,0.5088541867399048,17.355371900826448,8.022222222222222,5.289795918367347,131.31955603313517,1.0,3.9498369380821052,98.23392191818537,,65.40093982555054,74.75732447835252,74.7884288192728,65.38409123981812,95.36607903950932,74.95602658771242,74.7311730856272,90.8711692160506,0.010314773012289953,-0.10083269999307488,-0.7066197190190971,0.2895271250362634,0.3351962035113721,-0.08347269997261002,0.012092390733502411,0.0675418963449888,-0.08891639430448392,-0.10708471296843837,-0.11708032931743638,0.03344462921199163,0.1088840455618692,0.33911604123541556,0.3160250343402262,-0.044408931304582774,0.052341595526729796,-0.08030304120421303,0.112560226651655,-0.06334859958567128,0.33798164181820084,0.2657633294583984,0.3324628830778303,0.05386979068848645,-0.060060869467560604,-0.28420311168118595,-0.20027821031489074,-0.15094891079848807,-0.3792203212137694,-0.16125562065307641,-0.06776123773906967,-0.07379619883106794,-0.26699792137771433,-0.286770323504483,-0.1834692265899977,-0.13934912043253536,0.11811868301710282,-0.0002287647757577052,-0.04892017781744342,-0.03800014113330041,-0.026011374277706317,-0.1412685958445663,0.10822752765890317,-0.10242546909985797,0.035838046242558284,-0.029965973802305982,0.10562761024359826,-0.17168452744952814,0.11721047951296262,0.3259760273440423,0.17283184591387568,0.12746261571326847,0.282441976739029,0.13858641385582152,0.12381997917228757,0.13103324526739088,0.2971814725642385,0.26046757391389314,0.25403129383453715,0.19484171978531417,0.03767688536129519,-0.07594051558576927,-0.2778282585950075,-0.11342963025351639,0.02292445191045483,0.0814821586076649,0.040589031119610465,0.1210623711567615,-0.0670783357512509,-0.012727091652444305,-0.12143113794102425,0.12522048093397595,0.11051707523134398,0.22460646974548237,0.3559467446648851,-0.2520956438092621,-0.17341656181928067,0.03528005722079376,0.11200159274148412,0.004478245684380776,0.2637537321256538,0.06339994020654371,0.30989805811286014,-0.01213529116581668,-0.5673438675696011,-0.3478617769167104,-0.26304333995079615,-0.17288325251771725,-0.21823279247069774,-0.02720598856748063,-0.5673718757446231,-0.2838227345514732,-0.44276300071710434,-0.146713575528587,-0.4302857072115366,-0.3175999022675584,2.6414282710072405,10.040913207099024,6.069638720285834,24.809612166723134,41.61387106576756,46.03290383135723,46.94964668850008,47.122446688500084,47.122446688500084,41.87789488163001,28.55004218883022,6.1539293885138955,3.3912292601710656,1.773998282144771,13.327852692799809,5263.114354744657,4472.728994155284,1139.9896986407039,48.0,30.0,35.0,43.0,51.0,51.0,52.0,53.0,55.0,323.0495253680004,22.0,4.653960350157523,5.459585514144159,6.315358001522335,7.141245122350491,8.001355025826703,8.836228571526014,9.698122522573561,10.537919225261291,11.400685786479995,0.8000000000000002,0.9974857142857144,1.12199102028492,0.7702344279648418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7305235585970917,0.9886834733893555,1.0202268234314849,0.6792626908202728,4.0,2.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.423315998847038,10.97097259472782,5.156436481820707,0.0,0.0,4.794537184071822,9.967957041894417,0.0,0.0,35.49555897654685,31.040744451236847,11.753753343145172,5.752853606746789,276.3706097673598,-532.9500812679494,-39.44654667756729,-15.227145179084266,-38.06786294771067,267.7050657637533,516.2395403575372,22.673850126845302,14.749701153072486,24.582835255120813,0.45454545454545453,0.7842774010599619,0.2492300441525157,132.28574575197064,0.16254076475375465,49.26968730243626,0.21572259894003815,6.0,0.22727272727272727,0.3685509821309723,0.7437681426538806,0.8467634620753796,0.9024660397593185,0.935887586369682,0.935887586369682,3.6671400000000007,,2.2006302521008405,1.2204494386747258,1.066777545455193,2.212575163354744,-3.061051098060835,1.2056603737043528,1.1989188565956235,-1.5150953359372603,84.60050000000003,9.901064578912528,0.0,9.967957041894417,0.0,19.003910881201953,11.06964221075312,40.54548107413322,0.0,0.0,3.8066624897703196,0.0,5.10594547390058,0.0,6.583409222158765,0.0,8.149312843635345,0.0,9.761635928295886,28.000000000000004,7.53346313651298,8.265919942050893,0.0,0.0,0.0,0.0,4.353281016722576,0.0,34.912000000000006,0.0,10.590634403758953,0.0,0.0,0.0,0.0,0.0,-0.9235061985206283,39.2696857099722,5.316788604006331,11.50524905251859,0.0,26.79664333143376,4.794537184071822,13.847474399381248,11.126902983393991,29.42190475566715,5.153109816892792,0.0,0.0,26.958204978769462,25.56832455089821,25.80374188992629,196.46784383637078,,130.7481272414824,149.39841567683123,149.4752597770737,130.71328842605755,191.70859234343445,149.79722837792917,149.3481634230072,182.17522281379752,25.80374188992629,196.46784383637078,,128.9666646564484,148.2941995180303,148.51008009309044,128.92215615096083,193.79320917707952,148.70639280172048,148.2634273146587,183.25743376803854,4.707774648350308,145.8876946427674,,97.86394112707755,110.70644270405619,110.47969013388922,97.85404008834091,145.96870463092102,111.18797757383766,110.97085766922112,138.02305206886956,1.2287496138060139,9.355611611255751,,6.2261012972134475,7.114210270325297,7.117869513193985,6.22444230600274,9.128980587782593,7.13320135132996,7.111817305857486,8.675010610180834,2.3538873241751546,98.23392191818537,,65.40093982555054,74.75732447835252,74.7884288192728,65.38409123981812,95.36607903950932,74.95602658771242,74.7311730856272,90.8711692160506,34.60392156862744,0.0,4.043812589565807,5.9507317999216145,0.0,0.0,8.690526232008466,35.70793882010197,-0.10788181321911505,3.1855716175359032,0.0,1.0285583847736623,0.0,0.0,0.0,0.0,0.0,23.774194178709546,426.7062567854844,66.16408027329744,133.52490559307378,152.01513058874687,162.01513058874687,168.01513058874687,168.01513058874687,461.0,115.04446011984206,117.36941874562862,54.406965957760896,100.41,75.11,0.8333333333333334,7.978482364160711,5.459431618637297,4.086995076618424,4.512869701110567,,4.510028509253963,4.4997843357171305,4.494911381163099,4.510022707933651,4.51197012746118,4.50134927450172,4.503177560188328,4.512704025250611,0.19461881317230592,0.2148985571957413,,0.2147632623454268,0.2142754445579586,0.21404339910300474,0.2147629860920786,0.2148557203552943,0.21434996545246288,0.21443702667563466,0.2148906678690767,2.1497473446664133,2.2488705932563917,,2.248240819566327,2.2459668149609997,2.2448832974782174,2.2482395332498366,2.248671238216423,2.2463145353411487,2.24672061680335,2.2488338807182195,226.56999999999974,152.321228538806,109.19567854753473,,109.2701028205359,110.37085472214132,110.75589099028701,109.25944255860405,108.79048387958723,110.19340315082437,110.03648322770917,108.96408214412773,7.253391835181238,5.1997942165492725,,5.2033382295493285,5.255754986768634,5.274090047156524,5.202830598028764,5.180499232361297,5.247304911944018,5.239832534652818,5.1887658163870345,5.767928981252026,5.435078833516596,,5.435760169288398,5.4457834466369555,5.449265944025877,5.435662605712527,5.431361210983962,5.444174377141154,5.4427493212393285,5.432955651040837,0.0,18.856554345809847,12.476469164737114,3.2144015760574205,-0.49287988626733203,7.53346313651298,0.0,4.043812589565807,0.0,270.022949752429,150.3665262061219,-289.9651754902211,-21.461906530967003,-8.284719299720603,-20.711798249301513,145.6518144985151,280.8733766558983,12.33629032465457,8.024953618739948,13.374922697899917,996.0,29.0,1.6999907323145969,0.739465293901129,0.0,0.0,0.23230780835289197,0.10825317547305482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.03849001794597505,0.348461712529338,0.10140154270281947,15.405412915006313,13.125035225328059,9.952397498181154,7.542423278615093,9.27861263973846,5.7431150968026845,6.801938575603369,3.892166480669736,5.348406593532331,2.4880248831399507,4.092831003870091,1.5518262210196816,2.7240992223787712,0.8966571519351587,1.8882667450130552,0.5250491333973312,2.9717196435525164,1.3490250491602003,4.241761810334515,1.6205640157122612,5.78049998747695,1.8323657655607555,66.81088385168525,36.649483538941666,28.454307021991735,26.537084381800902,25.742862402028656,25.742862402028656,104.0,117.0,42.69910199999998,20.732898,0.37142857142857144,64.07,8.027777777777779,4.638888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12.0,12.0,35.0,0.0,0.0,36.0,12.0,1.0,7.0,29.0,13.0,22.0,23.0,0.0,0.0,0.0,14.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,5.0,2.0,1.0,21.0,7.0,0.0,3.0,2.0,0.0,2.0,5.0,1.0,0.0,1.0,1.0,2.0,3.4011973816621555,6.603393198779153,3.9889840465642745,4.436751534363128,4.9505313700265505,5.435358218808835,5.551019720103791,5.732329438300844,6.088123249065634,6.432940092739179 +5281081,CCN(CC)C(=O)/C(C#N)=C/c1cc(O)c(O)c([N+](=O)[O-])c1,1,26.64864864864865,6.7466135135135135,3.2162162162162162,10.432432432432432,165.1314157585469,105.49640016216215,1.420535501965811,6.771021621621622,9.167417417417418,8.208315459459456,221.82132960652444,26.81081081081081,6.703108108108108,3.8378378378378377,8.972972972972974,150.18020984175675,102.34307886486485,1.7291846487027025,6.813167567567567,4.277777777777778,8.087966702702701,262.43141548191306,23.2,6.479683333333332,3.4833333333333334,7.933333333333334,156.1126263432315,88.0189419,1.5048479003132,6.5699450000000015,4.532870370370372,7.9328724,225.09274645313937,21.935064935064936,6.517571428571428,3.0779220779220777,6.779220779220779,159.26938557834467,82.50562632467532,1.3760439969375065,6.590762337662339,4.575036075036075,7.997322857142856,207.08319345585195,20.44705882352941,6.70349294117647,2.635294117647059,6.152941176470589,160.51941755544166,74.84368424705883,1.2834459445269646,6.751988235294119,5.765359477124184,8.206256988235296,190.93413730536315,17.41860465116279,6.416709302325582,2.383720930232558,4.883720930232558,162.2116601099551,62.74302874418604,1.1995540422411042,6.468356976744186,5.1175710594315245,7.967085953488374,171.50890286323659,16.30666666666667,6.381093333333334,2.36,4.613333333333333,166.41370700803316,58.141914706666675,1.146711333956467,6.4247466666666675,4.371851851851852,7.9377067199999995,163.60220461720462,21.280701754385966,6.663838596491228,2.543859649122807,6.947368421052632,163.37944494036736,78.99064482456137,1.262595414806017,6.709396491228071,5.8654970760233915,8.123561192982457,187.53522135479795,19.821428571428573,6.687464285714285,2.232142857142857,6.357142857142857,163.922748223315,72.60997719642857,1.1574939265141428,6.711310714285714,7.657738095238095,8.174423642857144,166.11194762433348,7.948867786705622,0.19439722425127826,0.03642996586005807,0.6734842951059168,5.029948867786707,1.4896554324504518,37.41606115558803,0.21101737290005115,0.17584236669101524,3.9928171414657885,0.1279714302410518,44.93902739514042,-0.0701241782322868,0.007685317750182609,-0.014783854060448104,0.30387143900657426,1.6859021183345513,-0.022217687761872645,-0.3197709744338851,0.011921287322133012,0.004904747991234509,-0.32300543787030267,0.005010559532505479,0.11083757275210974,1.4673484295105914,0.02548624421719016,-0.003981614506239998,0.01975894813732655,1.5205015826637447,0.017386784074849112,6.886455600267838,0.013888119796108362,0.025399119795471117,0.6462844601358115,0.015283557146335513,6.109639994499772,1.322806484968647,0.012506636752582696,0.0005567746140949193,-0.09503571665733825,0.5902687524309147,-0.03563760728905998,6.2151923021164395,-0.0016200169408159373,0.015215723867075192,0.26648436783571916,0.0052678803942587645,4.77260798689565,-0.7895673097580889,-0.0027873355390366566,0.0016801865154350377,-0.09351609160830145,-0.2576118248614273,-0.041285339571223184,-3.782333941915522,-0.01714464602384158,-0.004577629012159986,-0.005721222016929532,-0.0005965100502728441,-5.358207653878855,-0.13554283384578777,-0.0023559923216742744,0.004860369349860154,0.049960079501248575,-0.06514685647306646,-0.20990734936644923,-0.6536756213328364,-0.010572371794849999,-0.0018630769361442044,0.02041702293116496,-0.0008674956087451419,-1.9531720100940702,-0.3376966155344533,-0.03667026929632334,-0.011604267089702367,0.05516435354273193,-0.552111029948868,-0.12205228402483978,-1.415699789461897,0.005966333093129038,-0.030514654979303644,-1.0034477720964208,-0.024719314925736546,2.1328266515259857,0.6822370022939013,0.04691903938077477,-0.0008685534540262491,-0.116822370022939,0.7282303640767367,0.04714130095703941,2.9047657988927793,-0.041609708537959623,0.04142373098560865,0.22494008944933566,0.028744057667909717,-5.581678297092666,0.9150318271939893,0.11192381821976409,0.013285593463577026,-0.15128352290514455,1.1341437963059584,-0.11690741272538539,3.681556873852138,-0.05202850454223792,0.09449093446728583,2.2776542227555736,0.07624205817593652,-11.31631258025059,,,0.4484848484848486,1.2727272727272727,0.6590909090909091,0.06818181818181818,0.6136363636363636,0.045454545454545456,0.7443669659972926,0.025692754182904117,0.029601845091995024,1.0643897470473342,0.25971286847624525,0.21069499381235499,1.8087567130446267,0.47040786228860026,1.9369510047885763,1.2752089744531914,0.26591464904941764,0.3958273812859673,0.0,0.6617420303353849,8.245977583243253,986.0,249.6247,119.0,386.0,6109.8623830662345,3903.3668059999995,52.55981357273501,250.5278,339.19444444444446,303.7076719999999,8207.389195441405,992.0,248.015,142.0,332.0,5556.667764145,3786.6939179999995,63.979832001999995,252.0872,158.27777777777777,299.25476799999996,9709.962372830783,1392.0,388.78099999999995,209.0,476.0,9366.75758059389,5281.136514,90.290874018792,394.1967000000001,271.9722222222223,475.972344,13505.564787188363,1689.0,501.853,237.0,522.0,12263.742689532539,6352.9332269999995,105.95538776418799,507.48870000000005,352.27777777777777,615.7938599999999,15945.405896100601,1738.0,569.7968999999999,224.0,523.0,13644.150492212542,6361.713161000001,109.092905284792,573.9190000000001,490.0555555555556,697.5318440000002,16229.401670955867,1498.0,551.8370000000001,205.0,420.0,13950.202769456137,5395.900471999999,103.16164763273497,556.2787,440.1111111111111,685.1693920000001,14749.765646238347,1223.0,478.58200000000005,177.0,346.0,12481.028025602487,4360.643603,86.00335004673502,481.85600000000005,327.88888888888886,595.328004,12270.165346290347,1213.0,379.8388,145.0,396.0,9312.62836160094,4502.466754999999,71.96793864394297,382.4356,334.3333333333333,463.0429880000001,10689.507617223484,1110.0,374.498,125.0,356.0,9179.67390050564,4066.1587230000005,64.819659884792,375.8334,428.8333333333333,457.76772400000004,9302.269066962675,294.108108108108,7.192697297297295,1.3479087368221485,24.91891891891892,186.10810810810815,55.11725100066672,1384.3942627567571,7.8076427973018925,6.506167567567564,147.73423423423418,4.734942918918916,1662.7440136201956,-2.5945945945946116,0.28435675675675653,-0.5470026002365799,11.243243243243247,62.3783783783784,-0.8220544471892879,-11.831526054053748,0.44108763091892145,0.18147567567567682,-11.951201201201199,0.18539070270270272,4.1009901918280605,88.04090577063549,1.5291746530314096,-0.23889687037439988,1.1855368882395931,91.23009495982468,1.0432070444909467,413.1873360160703,0.8332871877665018,1.523947187728267,38.77706760814869,0.9170134287801308,366.5783996699863,101.85609934258582,0.9630110299488676,0.04287164528530879,-7.317750182615045,45.45069393718043,-2.7440957612576184,478.5698072629658,-0.12474130444282716,1.1716107377647897,20.519296323350375,0.40562679035792487,367.4908149909651,-67.11322132943755,-0.2369235208181158,0.1428158538119782,-7.948867786705623,-21.897005113221322,-3.5092538635539707,-321.49838506281935,-1.4572949120265344,-0.3890984660335988,-0.4863038714390102,-0.05070335427319175,-455.44765057970267,-11.656683710737749,-0.2026153396639876,0.4179917640879732,4.2965668371073775,-5.602629656683716,-18.052032045514633,-56.21610343462393,-0.9092239743570999,-0.16022461650840158,1.7558639720801865,-0.0746046223520822,-167.97279286809004,-25.327246165084,-2.7502701972242503,-0.8703200317276775,4.137326515704895,-41.40832724616509,-9.153921301862983,-106.17748420964227,0.4474749819846779,-2.2885991234477734,-75.25858290723156,-1.853948619430241,159.96199886444893,38.88750913075237,2.674385244704162,-0.0495075468794962,-6.658875091307523,41.50913075237399,2.6870541545512463,165.57165053688843,-2.3717533866636984,2.361152666179693,12.821585098612132,1.6384112870708538,-318.15566293428196,51.2417823228634,6.267733820306789,0.7439932339603135,-8.471877282688094,63.512052593133674,-6.546815112621582,206.16718493571972,-2.9135962543653235,5.291492330168007,127.54863647431213,4.269555257852445,-633.713504494033,0.7664292200289224,0.5513445366308527,0.4704078622886003,0.2963808009065474,0.29738084368324197,0.14523870349370283,0.19568925351159958,0.07990538998348748,0.12856588276111403,0.04334244013588939,0.07841567902679858,0.02076257876726517,0.048977768880805114,0.010854293528199093,0.033220422820276,0.005442685054975441,8.054665838194095,5.684881587721527,3.607675901488425,2.1829364950626444,0.5269952742615633,-0.4084847944437145,3.243352600108486,0.9113125983262436,7.004119841612074,0.9872569003884814,14.594854267586067,10.946348031941458,16.028045980199018,11.69717216052756,1.9958679717756318,0.6692193475653219,3.5531645990656826,2.2323907048081124,8.001938180223291,1.4106028603322425,3.7570413006610686,2.428219249804549,20.89974301896005,14.651537266197167,0.31731975492555875,0.6890832072331537,0.7701093379148418,0.8033521293521279,0.8131947185667191,0.8131947185667191,2.6976378103216576,671.7912617869265,1.0,1.0,4.0,0.0,6.0,0.0,2.0,0.0,0.0,3.4667798870144466,1.4251096203567717,0.9801260136889303,0.7975614866034295,0.7435074325493751,0.7435074325493751,58.01044369752205,1319.4825624060913,88.80546072300481,35.66169087584031,78.26762737086148,,10.0,346.0,28.016900719420548,25.12191024251881,11.136556021766264,13.08951281182515,18.208754243757102,4.899909730850478,19.91669571217352,0.0,0.0,5.261891554738487,9.866666666666669,28.0,14.5,1.5,13.5,0.0,0.05151515151515141,1.0,0.2405405405405403,0.06646646646646637,-0.17407407407407394,0.052398989898989834,0.2311288743882542,0.0,0.673873873873874,0.9287878787878785,0.4333333333333337,0.6074074074074076,0.8763888888888887,16.376073251940436,0.5652405920238905,0.6512405920238905,23.41657443504135,5.713683106477395,4.63528986387181,39.79264768698179,10.348972970349205,0.4828711256117458,0.3108108108108108,0.0,0.38513513513513503,0.2857142857142857,0.4457748281406656,-1.0996233213607238,-0.10990769468624535,-0.02971954922596551,-0.09163527678006032,0.5542251718593345,1.3671452172471454,0.05611383739722694,0.03694987073640934,0.054685808689885824,-1.9843886991072912,0.7311156037493111,0.6455398831697916,1.3518315505548264,0.7613882863340563,0.381643915190241,1.2623040089920545,0.7375645437329902,1.070621905846625,0.6403944365471099,0.6891483977193038,0.6641476450802047,0.9721065319598499,0.6416008086748761,0.5748288617058293,1.0022217132841913,1.2279826464208243,0.5303369154806854,1.121054927918229,0.6488654456074064,1.0058790992227986,0.5612843447506358,0.4644601640393939,0.5742567221107745,0.8741479186398409,0.7201168616349652,0.7508459718216011,0.9613247878626113,1.257063977237513,0.7335493434825411,1.0953215668728562,0.7243544873716906,1.03452833972924,0.728573024378834,0.6439256995710332,0.7650353145717778,0.8860787061653052,1.038993697092879,1.037231438546595,0.9609058167542509,1.181242822508613,1.0217969964634124,1.0249783994476276,1.0392248850409243,1.084049248337001,1.0385121574993759,1.0560298736075218,1.0588645592803774,1.0721611643477278,0.987059919730898,0.9353964135738135,0.6350535959691046,0.7643394037229482,0.977301433984694,1.0865650139001624,0.988962779636902,1.05192727316274,0.9388862336164018,0.9478050672530318,0.9317169759422742,1.0496879272889492,1.0322734791398644,1.0899187990221313,1.0562045563353357,0.8090238611713667,1.1283764159163518,1.0494008395598582,1.0295709907679933,0.9119534579629678,1.0844614631771436,1.2612287709241703,1.059410177883477,0.9377637914096566,0.8310585321970617,0.6425771816688897,0.8738876797664462,1.1151957986071468,0.7720470214164513,1.0480457095868518,0.8411274597889211,1.1507388424753668,0.6460752263996886,0.9120217991696933,0.6322478930525394,1.0680374970890396,0.8601064667734402,0.41573416430628957,0.6152213609915042,1.1222110319181904,0.7599269739844818,1.0583377574453767,0.8762422078417471,1.2041822141091283,0.4524487130536193,0.45539062806267133,0.392996410578363,1.2103162897555415,5.5,0.0,3.1111111111111125,2.375,1.3644444444444446,0.7430555555555556,0.5085714285714286,0.4583333333333333,0.2630385487528344,0.15125000000000005,4217.286114526976,4620.721524747939,2074.706565935647,1913.7047715432172,12.71426850386009,0.47967152598302343,6.615595928855629,0.921862919167044,1.0,0.3076923076923077,1.7426734786145035,3.7843437452721784,4.22932735194002,4.411891879025521,4.465945933079575,4.465945933079575,0.25,0.0,0.10370370370370374,0.06785714285714284,0.041346801346801354,0.026537698412698412,0.02211180124223603,0.019927536231884053,0.01384413414488602,0.01260416666666667,0.5579329846060191,20.045454545454547,9.333333333333334,5.2631578947368425,126.21671568109325,1.0,3.9694779656845567,101.1653851994385,,77.88380966325781,76.53354951493233,76.35285631535301,77.89839463548815,108.56066554170616,77.35295227334494,77.96110811793118,95.7773656537352,-0.008821907737548306,0.0395340920107406,-0.405815753910908,0.45119305856832986,0.3351728144060413,-0.014914648903286995,-0.008546355884553812,0.05649434052891729,0.02789286838849809,-0.08089662672398899,0.03915373551008535,0.0024663990116549654,0.18459841940819705,0.1311039512799143,-0.10929503808856032,0.0293383947939263,0.30228966986155476,0.011671681716521663,0.18405078962298405,0.06581505401778698,0.14444254973035972,0.16186177258760123,0.11942944700662352,0.13595398807319206,0.16641445303455968,0.06433546981317281,0.015283423987651024,-0.141110516381666,0.11735084549490589,-0.02392338960590159,0.1661102775161626,-0.007677173298822471,0.08653047700280211,0.06674093964090001,0.041164503548455994,0.10620185312269902,-0.09933078910667377,-0.014338350507689045,0.04612100164708635,-0.13885415337501592,-0.05121559515470431,-0.02771469070757502,-0.10108851186091874,-0.08124755695808127,-0.02603257166234377,-0.00143287854520411,-0.004661275170162867,-0.11923283534298912,-0.017051841530498397,-0.012119475114669919,0.13341679672527715,0.0741815063310296,-0.012951792987456863,-0.1409100015975883,-0.0174704552308337,-0.05010190227255661,-0.010595153893816418,0.005113438008250421,-0.006778822484917881,-0.04346271210812365,-0.042483612081112544,-0.18863576595581055,-0.31853631524879694,0.08190889370932757,-0.10976474005228,-0.08193323191797873,-0.03783668685955374,0.028274132177519836,-0.1735341462556805,-0.2513132298685856,-0.1931627620256671,0.04746045420103203,0.08582819850582164,0.24135652945397573,-0.023841731210034814,-0.17345967956768274,0.14477888010761725,0.03164577521091099,0.07763419529420341,-0.19718617460785165,0.23557309745720806,0.05633618607606927,0.22461308444991457,-0.12420558745105938,0.11511473731194373,0.5757480265000653,0.3646886059298615,-0.22462813758909206,0.2254781959254802,-0.07847949947262312,0.09839509451684503,-0.24656028945484662,0.5373615940538515,0.5704378993723294,0.5957740570088504,-0.25181480855712296,4.240498662209418,12.397347099620914,5.757779244560663,17.263662849466723,37.538516281235985,39.99581724827892,40.99016661590542,41.044653102391905,41.044653102391905,42.61292210534868,28.05459743797021,5.850122279087188,8.70820238829128,0.0,14.558324667378468,4724.829071656149,4130.849930063395,923.4582842817531,26.0,30.0,38.0,43.0,46.0,43.0,46.0,42.0,36.0,305.10117058000037,22.0,4.653960350157523,5.484796933490655,6.3473892096560105,7.198183577101943,8.063692634269517,8.92172453036431,9.787683806792485,10.649250902099034,11.515472219236804,0.7207207207207208,1.023891891891892,1.1360491211529815,0.6869603764117126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6585514646382912,1.0071012188659245,1.0351764729040773,0.6462593175304349,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,15.11296452053189,11.642325842861542,5.749511833283905,5.749511833283905,5.907179729351506,14.908855452837393,0.0,5.261891554738487,0.0,0.0,31.553313066373732,19.15587988028676,4.923311048817671,238.44641411841948,-588.1921124911805,-58.78998549843542,-15.897084121383257,-49.01600937426504,296.45685781594153,731.2904499149108,30.015475224569396,19.764606754457052,29.251617996596437,0.5,0.6041430207366227,0.20434105750416579,130.57423461350908,0.1275961944189957,48.877458061493975,0.3958569792633774,5.0,0.22727272727272727,0.33452137034421964,0.7264377814072792,0.8118562649671407,0.8469011179050764,0.8572772649324581,0.8572772649324581,1.7813800000000002,,1.6785714285714288,1.9855746859004184,1.5414196857644495,1.6738284309400313,-6.966016776241215,1.7771572827417383,1.6632629804309458,-2.9529462750204147,77.94400000000002,19.930903022570906,5.261891554738487,4.899909730850478,0.0,13.847474399381248,13.08951281182515,33.38360842745506,0.0,17.568244979360085,3.8066624897703196,0.0,5.10594547390058,0.0,6.608000625296087,0.0,8.201111644442758,0.0,9.84081395800807,26.666666666666668,2.011001511715797,0.0,0.0,0.0,0.0,0.0,-2.206815633660871,0.0,37.88400000000001,0.0,22.8908149008379,0.0,-0.8703843852355755,0.0,1.1317592592592591,0.0,-0.7307355442176866,42.03381748266032,0.0,5.687386274683562,11.49902366656781,39.03296811052622,4.794537184071822,21.44543113629633,19.410925891078243,17.705838666992488,0.0,6.076020106833881,0.0,25.417533927233364,24.366404191616773,26.529564061825774,202.330770398877,,155.61502192391822,152.88659224023735,152.56558356836376,155.64462304998173,219.02115384056907,154.54434479371335,155.77101051036863,192.3600802915669,26.529564061825774,202.33077039887695,,154.08904789794417,151.0815243439642,151.1642929449416,154.1229608400363,224.0873478596536,152.9287472639482,154.2589532554314,194.50767758249083,4.772418597338482,148.50901868922682,,114.73126136236033,113.04636100055451,112.62004870661508,114.74881986388102,151.3501480784405,114.0592467807127,114.82870255167836,136.54972864626666,1.2058892755375352,9.196853199948954,,7.073410087450828,6.949390556374425,6.934799253107443,7.074755593180988,9.95550699275314,7.024742945168788,7.080500477744028,8.74364001325304,2.3862092986692423,101.1653851994385,,77.88380966325781,76.53354951493233,76.35285631535301,77.89839463548815,108.56066554170616,77.35295227334494,77.96110811793118,95.7773656537352,37.262745098039204,0.0,3.515118304948752,0.0,0.0,0.0,18.898315485170194,38.30152949745086,0.824065360712186,0.0,0.0,0.0,0.0,1.4203724174855126,0.0,9.088523400100781,1.738108701814059,23.91159474862609,323.158078508328,64.47891870873663,140.0207185750706,156.48511202178074,163.23999952394425,165.23999952394428,165.23999952394428,394.0,116.62215416316828,211.74519342603304,55.56253419141781,127.70000000000002,127.70000000000002,1.0,7.86582354869958,5.459431618637297,3.9701585824110626,4.622833108061448,,4.615225873028492,4.617260210723684,4.61778131448909,4.615205007659536,4.565958853959091,4.616043775191711,4.615107505560842,4.587805758236511,0.18046175374595738,0.21012877763915672,,0.2097829942285678,0.2098754641238038,0.209899150658595,0.20978204580270618,0.20754358427086778,0.20982017159962324,0.2097776138891292,0.20853662537438689,2.1672633994572847,2.31946510436429,,2.3178181703561807,2.318258861565387,2.318371715149107,2.317813649360525,2.307085897033788,2.3179953728855245,2.317792522860516,2.311859221820714,222.14999999999972,157.13378605238927,113.30477436558483,,113.30202200926672,113.06755827491929,113.18997401623474,113.30499506310484,118.64574648957849,113.21707159140182,113.31466481619567,116.40532479105235,7.142444820563148,5.150217016617493,,5.150091909512124,5.139434467041786,5.144998818919761,5.1502270483229475,5.392988476799022,5.146230526881901,5.150666582554349,5.291151126866016,5.845554943308101,5.518538666659429,,5.518514374746192,5.516442861269013,5.5175249534497315,5.5185406144794245,5.564599493379495,5.517764323874125,5.518625953528137,5.545535640242906,0.0,23.440802933087838,38.77669510634067,-0.8602112727807161,-2.0773399050978414,3.7491102135298564,1.1317592592592591,4.339183665660938,0.0,283.29353810268,127.5457670929582,-314.6258854975162,-31.446955600086742,-8.503402310743681,-26.21882379145968,158.57574323312676,391.16965439383677,16.05537590628692,10.572152821455049,15.646786175753473,1078.0,35.0,1.6274760152418188,0.5570368168609054,0.0,0.0,0.5431830368376225,0.07770500256537273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05555555555555555,0.020833333333333332,0.18246983613200962,0.041078697087282116,16.861442840636293,12.129579805878759,10.348972970349207,6.520377619944043,8.92142531049726,4.357161104811085,7.436191633440783,3.036404819372524,5.528332958727903,1.8637249258432438,3.607121235232735,0.9550786232941977,2.10604406187462,0.466734621712561,1.5281394497326959,0.2503635125288703,4.097022908514487,1.1269714779076105,5.939263503158538,1.3513906204920099,8.405104074921674,1.4256700753517557,74.26465869005428,34.119605877660746,29.16324402364285,27.316127495606462,27.14264352989679,27.14264352989679,104.0,120.0,40.69189499999998,19.362105,0.16216216216216217,22.08,10.38888888888889,5.222222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,37.0,0.0,0.0,37.0,6.0,3.0,6.0,30.0,10.0,22.0,27.0,1.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,6.0,2.0,0.0,22.0,8.0,0.0,3.0,5.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,1.0,3.4339872044851463,5.937536205082426,3.9415818076696905,4.491441420659749,4.928159072272018,5.393911596915271,5.618814463118157,5.997073785872493,6.21841334926317,6.22455842927536 +4178,Cc1cccc(C)c1OCC(C)N,0,17.533333333333335,5.75683,2.566666666666667,4.533333333333333,164.50097833382446,68.54474896666665,1.3363174460811005,5.829423333333334,2.7203703703703703,7.357097200000002,188.22715082514932,20.066666666666666,6.122766666666667,3.0,4.533333333333333,147.68030068220335,73.50172323333327,1.6858263083333322,6.261566666666668,2.810185185185185,7.5855276000000025,235.22066660453416,15.76923076923077,5.913346153846153,2.8461538461538463,3.3076923076923075,156.27992824656224,56.84492624999997,1.3699423218334421,6.013923076923078,2.4380341880341883,7.475458692307695,185.28453188761958,14.419354838709678,6.008467741935486,2.403225806451613,2.4193548387096775,158.33925934719016,49.97976974193549,1.2611519232200155,6.093880645161293,2.7240143369175636,7.568123096774195,166.64044795656693,10.128571428571428,5.876357142857142,2.142857142857143,1.1571428571428573,165.9163265548068,32.89170828571429,1.0391627921361,5.9239,2.189682539682539,7.549250399999999,130.91739686992923,10.79245283018868,5.647924528301886,2.0943396226415096,1.169811320754717,154.24719998696116,34.27378552830189,1.2754695261338493,5.758481132075475,2.0911949685534585,7.235082943396227,153.21528259301238,8.138461538461538,5.376769230769231,1.7692307692307692,0.6307692307692307,166.90947678375713,26.591509184615383,0.9679093507741384,5.4432384615384635,1.8846153846153855,7.061517846153849,111.28673107533342,6.48,5.62714,1.3,0.24,166.28869354399777,15.97655851999999,0.9669227349698002,5.689169999999999,2.266666666666667,7.265112480000003,103.86385235022478,1.75,4.962375000000001,1.1041666666666667,0.0,181.20833645162307,2.675421,0.5342472345585207,4.974749999999999,1.1875,6.800868,42.704570724830766,6.862222222222224,0.08131788888888887,0.014963398107741914,0.512222222222222,2.9288888888888875,1.3523170451373645,32.838945445555545,0.22628094034180998,0.08061788888888885,0.5365432098765431,0.045841728888888864,50.97553592591434,0.03111111111111035,-0.003006444444444523,-0.006537893599836803,0.22888888888888884,1.2399999999999993,0.0612801548951615,0.1413281999999948,-0.0031369986133332316,-0.0019378888888890139,-0.14537037037037048,-0.0020698577777777476,0.30474318513644416,0.8723931623931622,0.002013585470085425,-0.0017919697195101154,-0.03337606837606837,0.283931623931624,0.046486772486938506,4.190847949316234,0.01859734345868234,0.004017880341880268,0.022751661918328583,-0.0008892417094016926,5.816813644046144,-0.6740501792114693,0.005935551971326104,0.004125930420544082,-0.050394265232974925,-0.3686738351254479,-0.1069576250446997,-3.376429389103945,-0.04878253091586319,0.004400283154121787,0.029585822381521264,0.0043435119713261935,-8.958770089440732,-0.8536507936507937,-0.028653079365079392,-0.003669430082434167,-0.08222222222222221,-1.1288888888888888,0.23156761838758605,-3.8012652765079396,0.044769705970117105,-0.027907888888888923,-0.11611992945326283,-0.015994542222222186,3.9625782038044868,-2.5741719077568126,-0.01017707127882598,-8.846926492170734e-05,-0.15121593291404614,-0.5955555555555556,-0.5797294438600915,-12.43584236442348,-0.09640978900337029,-0.01372795178197063,-0.09325180526438386,-0.002863623228511534,-22.39869900040712,1.2700854700854702,0.013648213675213716,0.0018404578856422685,-0.10145299145299143,-0.06427350427350437,-0.14320358163203403,6.022244378034191,0.010638446383340742,0.014859649572649628,0.17696106362773031,0.005569147008546977,5.209489052705902,-3.690222222222222,-0.02438995555555553,-0.002417346155896635,0.05777777777777777,-0.38488888888888867,-0.38783303287687326,-17.73902733888888,-0.10783400619698602,-0.028146088888888855,-0.25869135802469145,-0.008648448888888887,-26.67083720778578,3.437777777777777,0.023103152777777886,0.00109220440614354,0.1426388888888889,1.1030555555555555,0.45624272571726965,16.49806726069445,0.09761167175577112,0.02696502777777793,0.13868827160493835,0.008970523888888823,24.90336868032979,,,0.4794871794871795,1.0576923076923077,0.5,0.038461538461538464,0.5576923076923077,-0.057692307692307696,0.7808182590790302,0.02347328131480558,0.030088665930190193,0.5827177308329516,0.21268856916345338,0.2572391927812099,1.3635359899119819,0.46992776194466324,1.941682849251755,1.6579261710389717,0.13030640809443778,0.15345027011834575,0.0,0.2837566782127835,5.971033805466666,526.0,172.7049,77.0,136.0,4935.029350014734,2056.3424689999993,40.089523382433015,174.8827,81.61111111111111,220.71291600000006,5646.81452475448,602.0,183.68300000000002,90.0,136.0,4430.409020466101,2205.051696999998,50.57478924999997,187.84700000000004,84.30555555555556,227.56582800000007,7056.619998136025,820.0,307.49399999999997,148.0,172.0,8126.556268821237,2955.9361649999987,71.237000735339,312.72400000000005,126.7777777777778,388.72385200000014,9634.795658156218,894.0,372.52500000000015,149.0,150.0,9817.03407952579,3098.7457240000003,78.19141923964096,377.8206000000001,168.88888888888894,469.22363200000007,10331.70777330715,709.0,411.3449999999999,150.0,81.0,11614.142858836476,2302.41958,72.741395449527,414.673,153.27777777777774,528.4475279999999,9164.217780895046,572.0,299.34,111.0,62.0,8175.101599308941,1816.5106330000003,67.59988488509401,305.19950000000017,110.83333333333331,383.459396,8120.4099774296565,529.0,349.49,115.0,41.0,10849.115990944214,1728.448097,62.914107800318995,353.8105000000001,122.50000000000006,458.99866000000014,7233.6375198966725,324.0,281.35699999999997,65.0,12.0,8314.434677199888,798.8279259999995,48.34613674849001,284.45849999999996,113.33333333333334,363.2556240000001,5193.1926175112385,84.0,238.19400000000002,53.0,0.0,8698.000149677908,128.420208,25.643867258808996,238.78799999999998,57.0,326.441664,2049.8193947918767,205.8666666666667,2.4395366666666662,0.4489019432322574,15.366666666666662,87.86666666666663,40.569511354120934,985.1683633666664,6.7884282102543,2.4185366666666654,16.096296296296295,1.375251866666666,1529.2660777774304,0.9333333333333105,-0.09019333333333569,-0.19613680799510408,6.866666666666665,37.19999999999998,1.838404646854845,4.239845999999844,-0.09410995839999695,-0.05813666666667042,-4.361111111111114,-0.06209573333333243,9.142295554093325,45.36444444444444,0.1047064444444421,-0.093182425414526,-1.7355555555555555,14.76444444444445,2.417312169320802,217.9240933644442,0.9670618598514817,0.20892977777777394,1.1830864197530864,-0.046240568888888015,302.4743094903995,-41.79111111111109,0.3680042222222184,0.2558076860737331,-3.1244444444444452,-22.85777777777777,-6.631372752771382,-209.33862212444458,-3.0245169167835178,0.2728175555555508,1.8343209876543183,0.269297742222224,-555.4437455453253,-59.75555555555555,-2.0057155555555575,-0.2568601057703917,-5.755555555555555,-79.02222222222221,16.209733287131023,-266.08856935555576,3.1338794179081972,-1.9535522222222246,-8.128395061728398,-1.119617955555553,277.3804742663141,-136.43111111111108,-0.5393847777777769,-0.0046888710408504895,-8.014444444444445,-31.564444444444447,-30.72566052458485,-659.0996453144445,-5.109718817178625,-0.7275814444444434,-4.942345679012345,-0.1517720311111113,-1187.1310470215774,82.55555555555557,0.8871338888888916,0.11962976256674746,-6.594444444444443,-4.177777777777784,-9.308232806082213,391.44588457222244,0.6914990149171483,0.9658772222222258,11.502469135802471,0.36199455555555354,338.61678842588367,-184.5111111111111,-1.2194977777777765,-0.12086730779483175,2.8888888888888884,-19.244444444444433,-19.391651643843662,-886.9513669444441,-5.391700309849301,-1.4073044444444427,-12.934567901234573,-0.4324224444444444,-1333.541860389289,165.0133333333333,1.1089513333333385,0.05242581149488992,6.846666666666668,52.946666666666665,21.899650834428943,791.9072285133337,4.685360244277014,1.2943213333333408,6.657037037037041,0.4305851466666635,1195.36169665583,0.7573026909762495,0.6540081859691185,0.46992776194466324,0.3504421622053738,0.32473665635271814,0.20642477001390377,0.20305714330191957,0.09996450234838501,0.13550541474025268,0.059124604561835256,0.08559850030000758,0.0306447222511668,0.07144124123878728,0.022466901782208972,0.04247578980827673,0.009338353665460555,8.010055789446792,5.686603842638025,3.5203239819052308,2.186011600462889,0.35611362443103517,-0.5228374611371923,3.229755418920547,0.988407598511433,6.007560225813093,0.9934429772105993,14.537808830641017,10.947005445504292,16.004027401684514,11.69795125347096,1.9898923962901933,0.7787906879166484,3.4629178385296107,2.2358831257265654,4.004563768662429,1.2685053085124631,3.676446184895773,2.431905805995134,20.897943650436893,14.706818950647994,0.2621134195268777,0.5859798075317236,0.7677642752887461,0.8124005410941267,0.8520485137282389,0.8520485137282389,2.3485902721968794,261.1688097950624,0.0,0.0,4.0,0.0,4.0,1.0,2.0,0.0,0.0,3.5846872035422015,1.9509775004326935,1.033985000288463,0.8088220835496802,0.60882208354968,0.60882208354968,143.00630742416337,425.38876001956396,29.70489454865899,14.179625333985467,27.880527294872948,,7.0,142.0,0.0,0.0,6.041840829147961,6.606881964512918,5.749511833283905,11.126902983393991,0.0,38.9703128044567,0.0,10.470530430962235,6.233333333333333,13.75,6.5,0.5,7.25,0.0,0.02051282051282051,-0.75,0.07888888888888884,0.035370370370370274,-0.04351851851851857,0.06529914529914527,0.10685714285714276,0.0,0.5122222222222226,0.7897435897435897,0.43333333333333374,0.4768518518518523,0.7244444444444444,10.150637368027393,0.3051526570924725,0.3911526570924725,7.575330500828372,2.764951399124894,3.3441095061557284,17.725967868855765,6.109060905280622,0.6071428571428572,0.3048128342245989,0.0,0.32085561497326204,0.45454545454545453,0.3108257629369755,-0.3498161153461824,-0.04169272515609522,-0.011660537178206079,-0.034981611534618234,0.6891742370630246,0.7756250708694938,0.03689682609513396,0.025854169028983135,0.038781253543474704,-2.937996422574913,1.0705958549222796,1.0280114666582858,1.5023323993429303,0.9121475054229937,0.6380880121396058,1.2579724736257774,1.0743033906744415,1.2319985374340412,1.0138155165451281,1.3812701334560518,1.029814029701614,1.1604144794441305,0.9115776952969308,1.1060750239142718,1.2623369287165385,1.5787168363090276,1.1742004202171126,1.0570704396230342,0.9104117780635613,0.996898877908716,1.061847580434577,0.9301822630889589,1.2147209331322713,0.9386860112299352,1.1644320366037102,1.2893531122228346,1.2260137265662976,1.2327688755160593,1.3601069557981307,1.1672706931386019,1.1646766358272784,1.2406540515014663,1.2555059175345116,1.221284310378101,1.3619817203126185,1.183336785732044,1.1993893412287193,2.1461103952799774,2.072746115806147,1.1727610784009919,1.841182527639281,0.6972267893534747,1.1784795730863948,0.7157789911516117,2.0312282495889384,1.3448080336598516,2.4414118470808113,0.8258369350629577,1.2970476097370218,0.6358468471936092,0.5137703414469246,1.2996766668030943,0.9683411114610478,1.5086240549097776,1.3085788656182686,1.52766572462779,0.7409700387205905,0.7903493995780115,0.4787841748469147,1.51398732944706,0.6815837983260261,0.3245837035258795,0.2487646068959562,1.1903887869180714,0.736255398622622,0.987246225888684,0.6889490292062287,0.8695181573349573,0.371057493655042,0.3884341038620837,0.22639637023281076,0.8354705035967475,1.4636172279792743,1.0793971806121647,0.9501931197897237,0.3208242950108461,0.6666919575113812,1.2990382242298977,1.468225512558051,1.3678428139535614,1.1463010001915754,1.893741371375978,0.8037150625209113,1.4378685547103556,0.27293150906735747,0.16059273892173503,0.2485747471795503,0.09829175704989157,0.1890885811836116,0.2507607061878066,0.2745483724801487,0.27706494421455435,0.17993576694447452,0.2815088587206627,0.11086075360353384,0.28666849860260984,3.0,0.0,1.7777777777777786,0.9375,0.5333333333333334,0.42361111111111105,0.08244897959183674,0.05555555555555555,0.0,0.0,1923.5111696460972,2325.9228596122457,1163.7224696741705,988.5419351290077,8.429304543775725,0.3868949961174989,5.1680487950384,0.631041980847453,1.0,0.45454545454545453,1.3222033920663172,2.9559130951758252,3.8729055953200557,4.0980685120588385,4.298068512058839,4.298068512058839,0.23076923076923078,0.0,0.10457516339869286,0.05859375,0.044444444444444446,0.0470679012345679,0.009160997732426304,0.027777777777777776,0.0,0.0,0.52238926535714,11.076923076923077,5.024221453287197,3.3240997229916895,79.70954961799958,1.0,3.4508647847432314,40.72547834613021,,32.37898212164196,31.868629335701463,33.10521873778758,32.3883626576216,49.678517632802745,32.23737288899085,32.40221239320582,41.06992067540125,0.0045336787564765725,-0.03697150141898627,-0.43692572721527484,0.4468546637744035,0.4233687405159332,0.04531493196474266,0.004303676567029417,-0.013863291396061109,-0.02403795132318459,-0.2709387942936035,-0.04515226253343688,0.005978224252106831,0.12712983260263047,0.024761900457557964,-0.11975686983713733,-0.0651593525780077,0.09694175323917364,0.03437564634276758,0.12761822562981928,0.08218696382731137,0.049838570536346945,0.04240415589932387,-0.01939808403729789,0.11410990661285152,-0.09822622430218947,0.07299195850296018,0.27573485586869245,-0.09838359806871463,-0.12587498164374172,-0.07909212224255834,-0.10281783849307237,-0.21558391458942347,0.05458196952026928,0.055141546546323576,0.09475017798421158,-0.17574646203741778,-0.12439859363434491,-0.3523588690826736,-0.24522705711716916,-0.16052060737527118,-0.38543247344461323,0.17123766887376923,-0.11575479129834257,0.19785009688615385,-0.3461748908775423,-0.21642232594832694,-0.3489079188306737,0.07773490031695847,-0.37512220158373233,-0.12515169070278898,-0.0059123779428106125,-0.2952154872508494,-0.20333839150227626,-0.4286934383802019,-0.3786918914628715,-0.42606234912113194,-0.17028418842486812,-0.17380110967361007,-0.06246760970670153,-0.4394009517224189,0.18508369868473495,0.1678377766774339,0.12299732135643934,-0.19806440847655601,-0.021944671413563717,-0.10589497643837495,0.18338726461294594,0.047014328150089775,0.1843219883012548,0.32981698467202386,0.12148640863972364,0.10219586627352285,-0.5377590673575128,-0.2999334573095162,-0.16155061427162884,0.11279826464208244,-0.1314112291350531,-0.2867914992800215,-0.5401826123892689,-0.4765492225465244,-0.3491295700843896,-0.48214450069029013,-0.18865887257112376,-0.523208569038843,0.5009715025906734,0.28410910678393986,0.07299173612031642,0.2784707158351411,0.3766122913505312,0.33737852181765987,0.5023933331856524,0.43137381172414807,0.3344794579642532,0.2584848136217213,0.19568467652325175,0.48853569124850943,2.5751226567976713,6.682546865833652,2.8039657955522017,11.750586690230858,24.143211401372685,27.54500741439489,28.505504967800913,28.707104967800916,28.707104967800916,25.241877040272815,21.55304022350663,1.693983305227691,1.9948535115384949,0.0,3.6888368167661856,1158.462779256466,914.5041708647839,390.7899089175447,4.0,17.0,19.0,21.0,22.0,19.0,10.0,8.0,6.0,179.131014164,13.0,4.110873864173311,4.890349128221754,5.720311776607412,6.52649485957079,7.3632795869630385,8.178358165605836,9.018089684104343,9.837187480778896,10.67837599740519,0.5444444444444444,0.9529333333333331,1.1343362106989452,0.4974967391002693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6308878443113777,0.9402614379084968,0.9846807477543092,0.5692766334215346,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,10.470530430962235,12.356393797796823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.19910120538483,31.898114582465862,6.041840829147961,0.0,117.48440300331816,-132.22178587789497,-15.758812520114244,-4.407392862596499,-13.222178587789497,260.49071042748153,293.16697414166896,13.946082028544746,9.772232471388968,14.658348707083452,0.42857142857142855,0.9169238086994962,0.4366611595789423,21.743945960408478,0.11078630611759449,31.132154720469078,0.0830761913005039,4.0,0.23076923076923078,0.26945850254938214,0.6024004484268012,0.7892789781753357,0.8351660653951516,0.8759250748132529,0.8759250748132529,2.0294399999999997,,0.3928571428571429,0.4713820381572824,0.39838377133594904,0.3917657575808813,-1.60047608252097,0.419905140758874,0.3887577933310232,-0.7183191063014545,55.06040000000003,4.736862953800049,0.0,0.0,5.733667477162185,26.813052428219834,6.606881964512918,29.32600418877882,0.0,5.749511833283905,3.295836866004329,0.0,4.553876891600541,0.0,6.003887067106539,0.0,7.551186867296149,0.0,9.149209371971951,16.333333333333332,6.1214635298563875,0.0,0.0,0.0,0.0,0.0,3.3065740740740748,0.0,28.587999999999994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.03008632096836,10.470530430962235,0.0,5.749511833283905,12.648722793660879,0.0,13.847474399381248,18.050640183084617,18.19910120538483,0.0,0.0,0.0,14.92490217300808,18.92663532934133,15.265781535179674,81.45095669226042,,64.69752468284426,63.66473835784009,66.14914766460035,64.71645366023066,100.0957165344613,64.4101449870956,64.74461589512985,82.47137324601857,15.265781535179674,81.45095669226043,,64.36510710042668,63.26587663324547,65.81205370423916,64.38495955766224,100.95751134812649,64.05484063722271,64.4156669930805,82.85816045710396,4.605551275463989,60.216659393925504,,47.77982418269961,46.86120524675328,49.244566402735444,47.79718083040439,80.15175097671856,47.53171489472181,47.820975127303036,63.83949524352424,1.1742908873215134,6.265458207096955,,4.976732667911097,4.8972875659877,5.088395974200027,4.978188743094666,7.69967050265087,4.954626537468893,4.980355068856142,6.343951788155275,2.302775637731995,40.72547834613021,,32.37898212164191,31.868629335701378,33.10521873778756,32.38836265762155,49.678517632802745,32.23737288899079,32.40221239320577,41.06992067540125,28.207843137254905,0.0,6.028413643235072,0.0,0.0,5.615394935752079,0.0,29.540422432629278,0.5750925925925926,0.0,5.6039814814814815,0.0,0.08241307634164752,0.0,0.0,0.0,0.0,17.078299002646038,346.5743806005929,39.666101761989516,88.67739285527476,116.18716785960167,122.94205536176516,128.94205536176517,128.94205536176517,152.0,92.32332054343055,31.400732830206767,43.55399706397951,35.25,35.25,0.75,6.263160139004357,4.700439718141093,3.188266963771118,3.5530887670004647,,3.5395389518129217,3.5391695072279763,3.5421911456497286,3.539552176049294,3.5498420561448985,3.539544042507219,3.539544292769144,3.5452513786698514,0.24525130490547062,0.2733145205384973,,0.27227222706253246,0.27224380824830585,0.27247624197305603,0.27227324431148414,0.27306477354960756,0.27227261865440144,0.27227263790531875,0.2727116445130655,1.4218417620936847,1.530181564870192,,1.5263607435303914,1.526256361611735,1.527109767829342,1.5263644796699982,1.5292673757382622,1.5263621817659088,1.5263622524704723,1.5279733327047682,157.9399999999998,63.24464576056588,51.343835623895885,,52.164436457687366,52.19851158922303,51.99724550050753,52.163448769540665,51.13380350184501,52.16803297472214,52.16349295978449,51.589655509624905,4.86497275081276,3.9495258172227605,,4.012648958283643,4.015270122247926,3.999788115423656,4.012572982272359,3.9333695001419238,4.0129256134401645,4.012576381521884,3.968435039201916,4.4093747364850735,4.200909147363209,,4.216765233255886,4.217418245333146,4.213555010501812,4.216746298948063,4.1968100596416,4.216834176645337,4.216747146097286,4.2056854422376135,5.6039814814814815,0.0,0.0,7.949931972789116,0.9720370370370373,6.203876606198035,0.0,6.603506235827664,0.0,187.43344816841537,44.40618055152896,-49.976544515220255,-5.956438949824887,-1.6658848171740084,-4.997654451522025,98.45900582149692,110.80982030536163,5.271271936654437,3.6936606768453886,5.540491015268083,256.0,16.0,1.0157355747428491,0.5754084312983117,0.0,0.0,0.19245008972987526,0.05892556509887896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.18419528592042317,0.05793344994894864,9.844934982691242,8.50210641759854,6.109060905280622,4.555748108669859,5.520523157996209,3.5092210902363643,3.8580857227364715,1.8993255446193154,2.8456137095453062,1.2416166957985404,1.883167006600167,0.6741838895256695,1.3573835835369583,0.42687113386197045,0.4247578980827673,0.09338353665460555,1.7883479898081098,0.722152438565965,2.4475845615120186,0.902372937702338,3.10153862651372,0.9554292236803534,45.37577324082494,26.47220532806864,20.396231929199548,18.727586322050783,17.934429465118367,17.934429465118367,60.0,66.0,31.60748099999997,18.220518999999996,0.2,13.02,5.694444444444445,2.9722222222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,30.0,0.0,1.0,30.0,6.0,0.0,3.0,27.0,6.0,13.0,24.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,2.0,1.0,0.0,13.0,2.0,0.0,1.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,1.0,2.833213344056216,3.446011397451948,3.349904087274605,3.7784916128036232,4.195320479562103,4.576642102373553,4.42484663185681,4.007333185232471,3.944006051281197,3.840795496139778 +448812,NC(=O)[C@@H]1CSSCCC(=O)N[C@@H](CCCCN=C(N)N)C(=O)NCC(=O)N[C@@H](CC(=O)O)C(=O)N[C@@H](Cc2c[nH]c3ccccc23)C(=O)N2CCC[C@H]2C(=O)N1,0,27.69811320754717,6.431519811320756,3.1226415094339623,7.744234800838575,167.03895556481982,109.59044451886786,1.465248757901896,6.473776415094341,6.300117115718093,7.95277296226415,209.09172084899197,27.853211009174313,6.533500917431193,3.8256880733944953,6.707441386340468,152.41680237153446,105.99112459633031,1.7835164288623855,6.65739816513761,3.340500371251306,7.9531162660550425,255.61123897230289,22.036269430051814,6.362045077720209,3.3989637305699483,5.072538860103627,156.84052260320112,81.55949834715027,1.511306122681783,6.4591015544041435,3.3961491716241285,7.841719854922278,208.9923662078866,18.08823529411765,6.332349999999999,2.863970588235294,3.6960784313725488,164.2065221111195,64.69717293014703,1.2891108104388085,6.395102573529411,3.220644970951344,7.88983961029412,174.03154269809346,19.126712328767123,6.3932171232876716,2.780821917808219,3.9429223744292234,163.962939585779,69.0906917226027,1.2667970841474452,6.456122260273972,3.4038876204972093,7.95965582191781,175.33671858145226,19.457413249211356,6.397941640378548,2.7413249211356465,4.43322818086225,163.96578604308934,70.91987794321766,1.2465892742778901,6.45356214511041,4.230556529189547,7.955281728706627,171.51537141509414,17.91737891737892,6.276598575498577,2.754985754985755,3.8281101614434943,164.65576712452986,64.74262373504276,1.2424106330792768,6.336080911680911,3.349539235341704,7.8435347179487165,168.70371867352338,18.591029023746703,6.354534300791555,2.712401055408971,3.936675461741425,164.2010890472007,67.10768882058046,1.2557088898002082,6.415025329815301,3.450902309521482,7.933093182058046,172.12926016040643,19.304020100502512,6.386963316582913,2.698492462311558,4.407035175879397,163.42176830286613,69.89642240201005,1.2737191664249445,6.447100753768844,4.071863949376512,7.956784231155777,172.96437707648585,10.467782128871486,0.16027537379850473,0.03068875907297757,0.5807226771092915,4.136624342391519,1.554571949474703,47.98793817986828,0.2626911897197629,0.14760232289070838,2.723630864392866,0.09945410288358844,47.776305014130486,1.098774907652663,-0.02204493412393323,-0.020948614823099964,0.12189113628866592,0.9459829316646035,-0.04823647951745139,4.628220165466679,0.03927815876959643,-0.01810720431705434,-0.1489989932459192,-0.013936328952482317,3.4517793838507584,-0.3071603672134534,0.027982740386655013,0.0047671462252323014,-0.05647788289675857,0.22319143193202715,-0.152597051383656,-1.4435001232156208,-0.030879107654851072,0.023234352248601348,0.35502699276330535,0.016535998494845387,-5.40587429653942,-1.0632316294264232,-0.0087791404466735,0.0026176331909329715,-0.01603760496722719,-0.5381997524297484,0.1592731468811053,-4.794654769768391,-0.001617330487556504,-0.00983167916151865,-0.2618862431710566,-0.006202285042300991,-1.5668489538935093,-0.4328247755502128,-0.0319762622709783,-0.00710308584436014,-0.017204972276001308,-0.45674725672482386,-0.10949620659465847,-2.045403842474895,-0.008292246235846843,-0.02699108936783432,-0.47596350627102907,-0.01901781676314386,-0.893949104470189,0.6648885454931367,0.023695377942462993,0.003231935726755977,0.012367019932551186,0.37145388046558575,-0.0982273763702698,2.8883126016625824,-0.009303681525736128,0.021302810732290182,0.49628079373317296,0.018786587968146567,-0.9477675949719228,0.34364613538696853,0.00549817616655459,0.003210015907598649,0.023319681650048326,0.04927757307014456,0.11849227192227745,1.6287108108858994,0.007110077049231033,0.0052666391046686505,-0.03307224835478745,0.00263019593918205,1.8408618809957238,-0.22284759409775026,-0.02442622011701927,-0.00532707035156282,0.00856392616645892,-0.22693150622882693,-0.027168517175367734,-0.9266391853942414,0.009063739529493332,-0.020695390546406164,-0.40354156559981774,-0.016674501897876275,1.5448734824198187,-0.1879395195987054,0.01346793472524602,0.002117545805734243,-0.007289473354669394,0.3264878643444666,-0.05232197465836324,-0.8153941751038917,-0.007900757048377165,0.011093735230084192,0.2669129168369625,0.008954683880420287,-1.2272628923898041,,,0.46608187134502915,1.030701754385965,0.37719298245614036,0.0,0.6535087719298246,-0.27631578947368424,1.4046347670333932,0.020843006332717146,0.02687809405201539,1.205522257659006,0.19290441951052267,0.2847475489352356,2.610157024692399,0.47765196844575825,2.0032900213137257,1.2804247817882717,0.37564737401994036,0.2768492788790817,0.0,0.7228652395254539,7.842600133471711,2936.0,681.7411000000002,331.0,820.8888888888889,17706.1292898709,11616.587118999993,155.31636833760098,686.2203000000002,667.8124142661179,842.9939339999999,22163.722409993148,3036.0,712.1516,417.0,731.1111111111111,16613.431458497256,11553.032581000003,194.403290746,725.6563999999995,364.1145404663924,866.8896729999997,27861.625047981015,4253.0,1227.8747000000003,656.0,979.0,30270.220862417817,15740.983181000001,291.6820816775841,1246.6065999999996,655.4567901234568,1513.4519319999997,40335.526678122114,4920.0,1722.3991999999998,779.0,1005.3333333333333,44664.17401422451,17597.631036999992,350.63814043935594,1739.4678999999999,876.0154320987655,2146.0363740000007,47336.57961388142,5585.0,1866.8194,812.0,1151.3333333333333,47877.178359047466,20174.481982999987,369.904748571054,1885.1876999999997,993.9351851851851,2324.2195000000006,51198.321825784056,6168.0,2028.1474999999996,869.0,1405.3333333333333,51977.15417565932,22481.601307999998,395.16879994609116,2045.7792,1341.0864197530864,2521.8243080000007,54370.37273858484,6289.0,2203.0861000000004,967.0,1343.6666666666665,57794.17426070998,22724.660931000006,436.0861322108261,2223.9644,1175.688271604938,2753.0806859999993,59215.00525440671,7046.0,2408.3684999999996,1028.0,1492.0,62232.21274888906,25433.814062999998,475.9136692342789,2431.2945999999993,1307.8919753086416,3006.6423159999995,65236.98960079403,7683.0,2542.0113999999994,1074.0,1754.0,65041.86378454072,27818.776116,506.94022823712794,2565.9460999999997,1620.601851851852,3166.8001239999994,68839.82207644137,1109.5849056603774,16.9891896226415,3.2530084617356225,61.5566037735849,438.482180293501,164.7846266443185,5086.721447066037,27.84526611029487,15.645846226415088,288.7048716256438,10.542134905660374,5064.288331497832,119.76646493414026,-2.402897819508722,-2.283399015717896,13.286133855464586,103.11213955144177,-5.2577762674022015,504.47599803586803,4.281319305886011,-1.973685270558923,-16.24089026380519,-1.5190598558205726,376.2439528397327,-59.281950872196504,5.400668894624418,0.9200592214698341,-10.900231399074404,43.07594636288124,-29.45123091704561,-278.5955237806148,-5.959667777386257,4.48422998398006,68.52020960331794,3.1914477095051597,-1043.3337392321082,-289.1990032039871,-2.387926201495192,0.7119962279337683,-4.362228551085796,-146.39033266089157,43.32229595166064,-1304.1460973770022,-0.43991389261536906,-2.6742167319330727,-71.23305814252738,-1.6870215315058694,-426.1829154590345,-126.38483446066213,-9.337068583125664,-2.074101066553161,-5.023851904592382,-133.37019896364856,-31.972892325640274,-597.2579220026694,-2.421335900867278,-7.881398095407622,-138.9813438311405,-5.553202494838008,-261.0331385052952,210.76966892132432,7.511434807760769,1.0245236253816448,3.920345318618726,117.75088010759067,-31.13807830937553,915.5950947270386,-2.9492670436583523,6.752991002135988,157.32101161341583,5.955348385902462,-300.4423276060995,120.61979352082595,1.929859834460661,1.1267155835671259,8.185208259166963,17.29642814762074,41.59078744471938,571.6774946209507,2.4956370442800924,1.8485903257386964,-11.608359172530395,0.9231987746528996,646.142520229499,-84.45923816304735,-9.257537424350303,-2.018959663242309,3.245728017087931,-86.00704086072541,-10.29686800946437,-351.19625126441747,3.435157281677973,-7.843553017087936,-152.94225336233092,-6.319636219295108,585.5070498371113,-74.79992880028475,5.360238020647916,0.8427832306822287,-2.9012103951584187,129.9421700090977,-20.82414591402857,-324.5268816913489,-3.1445013052541118,4.415306621573508,106.23134090111107,3.5639641844072742,-488.45063117114205,0.7277927708324564,0.5746501492611265,0.45376937002347034,0.347572155720963,0.30426370287455373,0.19901141196947952,0.1887936711770245,0.11776012702546636,0.12115508842817689,0.06958434406131164,0.08169581166477081,0.040638607391759646,0.05057195413316084,0.02464731071537852,0.03151293293747838,0.014377578417244472,16.101022279469976,5.67610158451196,3.560140995469855,2.1755325750949317,0.448524460499206,-0.4018682490416389,3.2416261503263306,0.971497181625326,6.030732015662425,0.5598307115039354,14.560285867172382,10.250201921331497,32.16051215357817,11.687543916943895,3.007804016398291,0.7412307991649005,3.5064232068010392,2.2253431861292983,7.015941417272748,0.5378285653121361,3.719097359200643,2.421224191818326,24.53163433288953,14.70011635952585,0.25852950164535543,0.5512225065592007,0.7640221215477786,0.8907607895589709,0.9190118710753509,0.9190118710753509,1.5523345116283813,1837.513580611668,0.0,9.0,5.0,0.0,5.0,13.0,2.0,0.0,0.0,4.936120384648208,2.9075420470483433,1.4326838100279993,0.5542913915298424,0.35849056603773466,0.35849056603773466,337.93291697842267,7776.362320656732,153.6592917723237,73.36190868544087,153.0995954001506,,22.0,2022.0,90.49434556799078,43.46282486741528,56.23806108576659,24.825916360475023,10.902924932081056,26.487705683623926,12.263210640074686,18.19910120538483,36.56032627361453,17.201002431486554,26.566666666666663,58.75,21.5,0.0,37.25,0.0,0.033918128654970826,-15.75,0.18854774156661036,0.022928390157784584,-0.16561935140882578,0.11284043441938241,0.2004690721649489,0.0,0.6267295597484268,0.9076023391812873,0.43818181818181645,0.6038011695906422,0.7947619047619049,80.0641817209034,1.1880513609648773,1.5320513609648772,68.71476868656333,10.995551912099792,16.230610289308427,148.77895040746674,27.22616220140822,0.513530927835051,0.1580928481806776,0.0,0.33500627352572154,0.5142857142857142,0.34811308987017736,-2.4334178373958038,-0.08025787224063327,-0.022956772050903806,-0.07604430741861887,0.6518869101298228,4.556890508387182,0.057869157518502884,0.04298953309799229,0.061579601464691665,-5.648239148343141,0.7105930323403543,0.8368489396429711,1.7709659811895082,1.0093641252768113,0.516882420934745,1.3834795310008672,0.7231829313302252,0.9480059245110851,0.8110976836524383,0.6431478207016003,0.8157067842762611,0.9729015531778591,0.9311001886881555,0.5491045880422313,0.7910244568855963,1.3522244059317494,0.7950372615249031,1.3131240688005403,0.9326469494301887,1.2078558284479908,0.5671286247787131,0.46773151864692186,0.5283120881624305,1.159304589857022,1.1077274400441715,1.0098615743594372,0.9113623596753827,1.1444810682893847,1.1337782159924539,0.9599779822618142,1.102653209414975,1.0385461308758883,1.0187812549269448,1.0028559769734868,1.0077265873963375,1.027022774650158,1.041902031314349,1.254525044647137,1.2773713409914107,1.1215871516296647,1.1512510767344926,1.108926686571815,1.0404990985535874,1.0445117038175784,1.2279617591874104,1.2739148199396455,1.2640185075778307,0.9988865696647121,0.9195825253071858,0.8919341825931355,0.8866909126732676,1.0277530004713733,0.9248637591864629,1.081743619212785,0.922352810553061,1.035589729501831,0.8882292201194876,0.899660398706027,0.869325095062232,1.0058782583815007,0.9219009245791316,0.9205768520007249,0.8735734676991461,1.0229623080197794,0.9793398596851522,0.9352098621400504,0.9233694614366366,0.9542086524168241,0.9198578919884177,0.9400146210603438,0.9239923867728393,0.9571475199896521,1.038557813827494,1.2154777237180732,1.1694948732695711,1.0599035574561007,1.1104709511997235,1.0275774597961929,1.0331174033067203,0.9888193804881666,1.1951842421833634,1.2776276936227495,1.2563042355299474,0.9554268956806176,1.0964476468521356,0.9613791919888119,0.9105207172342639,1.0585918096228268,0.9435099763481102,1.067832029230855,1.0858013875926031,1.1179121795416473,0.9623716416931051,1.0119755714250809,0.9811612538946048,1.0265757743191781,12.0,0.9573676155494338,6.444444444444446,3.9722222222222223,3.347222222222223,2.139166666666667,1.6187301587301588,1.6884566326530612,1.2041288737717308,0.9840740740740742,14582.265265812614,16416.0460681114,5666.835834438348,5141.600865599497,21.249524541100378,0.4583036908750908,11.510789014573254,0.846052821765509,0.0,0.5142857142857142,1.7918000699149907,3.8203784075148555,5.2952366445351995,6.173629063033356,6.369429888525464,6.369429888525464,0.2,0.007308149737018578,0.07956104252400552,0.046188630490956076,0.03523391812865498,0.020568910256410253,0.014715728715728717,0.013954187046719514,0.009262529798244084,0.007512015832626522,0.4343051125303642,49.653333333333336,25.819234872732814,16.66115702479339,335.3207347086645,0.0,4.9388197550199955,502.4320773304604,,426.42169573233764,440.0673313409226,435.2840051277202,426.48565237793247,573.048402620324,443.8055692692889,445.84992432031436,538.8122066295141,0.10496730769950789,-0.1375441129942253,-0.6826152459695213,0.20989560265738705,0.22868475678835742,-0.031028785469691976,0.09644548903349827,0.14952217777649143,-0.12267560538638511,-0.05470601585326544,-0.14012824557670453,0.07224877233243232,-0.029343404689926217,0.1745916401470035,0.15533851381530528,-0.09725448156750642,0.05395496749482279,-0.09816017292426976,-0.030080478094413998,-0.11754907992077193,0.15741183332057138,0.13035062768773756,0.1662676351743966,-0.1131496940782792,-0.10157181495914919,-0.05477535468243846,0.08529615631274842,-0.027616632860040576,-0.13010602556155662,0.10245466408610064,-0.09991374815473582,-0.006156774763865742,-0.06660924414311882,-0.09615335418422588,-0.062363289823857734,-0.032795523919861375,-0.041348278959343884,-0.19950826825821835,-0.23145562280537543,-0.02962683042040624,-0.11041545446709894,-0.07043495582926075,-0.042623290769616254,-0.03156651825549594,-0.182863581271819,-0.1747533090821864,-0.19122204325149175,-0.018711139427919167,0.06351761407598357,0.14784166388688252,0.10531334027128517,0.02129591355741688,0.08979637736474665,-0.06318612425977536,0.060188303794937295,-0.03541680075247757,0.14432571463027566,0.18221294237088204,0.188897063303023,-0.019837607673753917,0.032828934645014095,0.034304559934870575,0.10459907811734136,0.04015631310650468,0.011912508603973348,0.07622179980946943,0.033940003939764395,0.02706629429337167,0.03568127520979677,-0.012142705822273642,0.02644632913999243,0.03853085500126609,-0.021288902592184075,-0.1524015794698908,-0.17358376527689173,0.014747015234686965,-0.05485910429508094,-0.01747652605242755,-0.019309835357397824,0.03450340127189825,-0.1402104664824956,-0.14816309026141564,-0.16766027156661267,0.0323355580127618,-0.01795409163898665,0.08402996920897943,0.06900069829147343,-0.012552417258707328,0.0789261574948121,-0.03365683696791459,-0.016991648443982592,-0.030076216323834976,0.07515962494911757,0.09799893235402184,0.09003835559103875,-0.025687689578062275,20.112239314478455,45.04160590733843,21.91134515571869,19.90848703566631,37.90701812393988,45.65443114614057,51.33004798792379,52.199872942141845,52.199872942141845,114.18753121488236,72.98421256193149,21.4119003191366,15.780408896107655,0.0,41.20331865295087,27170.57752988557,21182.879237914,11507.743105760768,239.0,81.0,99.0,123.0,142.0,152.0,174.0,205.0,219.0,831.3156141480014,60.0,5.645446897643238,6.466144724237619,7.325807502595773,8.169902647359145,9.034199674257309,9.890452970265668,10.759157412586816,11.623312327356311,12.496010920841021,0.691823899371069,1.0016981132075475,1.142427232660278,0.6534615281903541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6566538074793808,0.9863485016648169,1.0205307204991136,0.6171668100418991,5.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,1.0,9.0,0.0,0.0,0.0,0.0,3.0,1.0,13.0,5.0,0.0,2.0,5.0,1.0,0.0,0.0,0.0,58.77536109815661,30.209204145739804,5.959554568743835,41.35025810546054,0.0,43.34870220521024,0.0,0.0,0.0,39.786897158158276,43.73392667478865,54.53663177486487,12.965578028838586,387.25809813910575,-2707.053515393838,-89.2827988059567,-25.53824071126262,-84.59542235605744,725.1910151175284,5069.308805262894,64.37649296636701,47.82366797417824,68.50417304409316,0.45454545454545453,0.7294071817971176,0.06883277310383679,347.43622658492876,0.04370065600424399,131.8998423688515,0.2705928182028826,12.0,0.16666666666666666,0.2663230164529823,0.5678394138747124,0.7870539909465957,0.9176132661981913,0.9467159921912291,0.9467159921912291,-2.0543999999999967,,5.071428571428572,4.564593520432683,3.8621521223992525,5.0616095800581835,-14.5923725169834,4.124770501835986,3.922058334522622,-6.788363462857012,212.97819999999967,43.46282486741528,0.0,36.46783127182934,22.193407164122224,81.57577712914788,31.139976431231304,36.02576333715651,0.0,0.0,4.795790545596741,0.0,6.09807428216624,3.044522437723423,7.557472901614746,5.351858133476067,9.09661160664784,7.4127640174265625,10.685126264117057,73.33333333333331,8.943644818217859,0.0,3.1169528737886596,0.0,0.0,1.5244757045265447,0.6430931001318905,0.0,106.18000000000004,0.0,105.21936007124538,0.0,0.0,0.0,0.0,3.898935290468464,-6.675900993404562,121.09728666198947,43.78494545151822,0.0,0.0,129.61871418576573,44.77711909550058,0.0,50.50920285217907,35.45471657809519,0.0,10.902924932081056,0.0,69.26692198817753,69.60530359281437,70.85550844644197,1004.8641546609208,,853.7436655593665,880.0369275914265,870.5597815839436,853.8743248823287,1149.2656765837007,887.4664097490397,891.5622325587157,1078.3465715507984,70.85550844644197,1004.8641546609211,,849.2060715744042,875.9426647526517,867.1230478141053,849.3455163106976,1161.0780800236648,883.4863680367419,887.7777903061063,1084.4127767218856,4.811960673805416,694.9903761377336,,592.7800552139969,614.3760798743929,607.1500532322693,592.8706557119399,802.5807334411787,619.5029200192006,622.1839408086186,755.5469769569938,1.2430790955516136,17.629195695805628,,14.977959044901166,15.439244343709237,15.272978624279713,14.980251313725065,20.16255572953861,15.569586135948065,15.641442676468696,18.91836090439997,2.446671107602189,502.4320773304604,,426.42169573233764,440.0673313409226,435.2840051277202,426.48565237793247,573.048402620324,443.8055692692889,445.84992432031436,538.8122066295141,104.5529411764706,0.0,0.0,0.0,0.0,16.362705544810893,9.665664020513614,108.17625637290604,0.8971364634661496,12.67963321176321,0.0,2.4474406875496317,-6.196160179007351,1.3063527192629503,0.0,0.0,0.0,65.4196818644413,811.4283725932239,189.93080741098902,404.9601111965747,561.2950843207311,654.4046806815358,675.1595681836992,675.1595681836992,1551.0,198.41043507714292,301.0207406634103,111.0422201887687,376.98999999999995,326.38999999999993,0.8333333333333334,8.449238006792424,6.906890595608519,5.136501010140633,7.4506065103529275,,7.447792653606159,7.453130666813061,7.452168864253891,7.4478027124539965,7.467998772442714,7.453977064888276,7.454373806309006,7.467498389998816,0.0901140528094848,0.13071239491847242,,0.13066302901063437,0.1307566783651414,0.13073980463603319,0.13066320548164906,0.13101752232355637,0.13077152745418028,0.13077848782998255,0.13100874368418977,3.3768382851739935,3.7487616147039224,,3.7483838752234235,3.749100342696004,3.7489712875826195,3.748385225803591,3.7510932361443263,3.749213899006371,3.7492671230583468,3.751026230347513,599.9800000000021,27300.466794519376,479.26317767961496,,477.1887521645843,476.64007466103664,477.32629830695527,477.18825200867286,475.2973763600899,476.46397634608036,476.3135975743673,474.44771203657183,478.9555577985855,8.408125924203771,,8.371732494115514,8.362106573000643,8.374145584332549,8.3717237194504,8.338550462457718,8.359017128878603,8.356378904813461,8.32364407081705,11.955125254567719,7.912716052850658,,7.908378294301532,7.907227820445773,7.908666495400625,7.908377246170848,7.904406838479085,7.906858294544012,7.906542630579876,7.9026175908997605,0.0,113.54160095476546,23.10759107995362,17.76798050179253,-6.350529501747782,1.0725209719883086,2.479551997327208,-0.23282335829564005,2.4474406875496317,745.5105977580986,430.8049278762988,-3011.4592827381293,-99.322570360757,-28.40999323337857,-94.10810258556654,806.7381017091728,5639.348085238753,71.61557251500692,53.201397030554276,76.20740655728045,13901.0,86.0,4.03498534483097,1.4181677099065675,0.0,0.0,0.8650247559674062,0.2070782787546623,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.1273714847418793,0.42354024205321916,0.18624705551596354,0.6496471158118731,0.21732000334478543,41.48418793745002,32.75505850788421,27.226162201408222,20.85432934325778,24.64535993283885,16.11992436952784,18.690573446525427,11.65825257552117,14.902075876665757,8.558874319541331,11.600805256397456,5.7706822496298695,7.686937028240448,3.7463912287375347,5.483250331121238,2.501698644600538,7.991333421400734,2.785992904616297,11.509139715863661,3.903294563522305,17.223170491215946,4.8016549731382785,187.3903948011628,90.05925782509509,54.48651967732228,33.149864879536295,30.260308533530377,30.260308533530377,282.0,321.0,116.24085699999998,63.12114300000012,0.33962264150943394,408.22,20.75,12.749999999999991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,9.0,10.0,106.0,0.0,3.0,109.0,10.0,9.0,13.0,96.0,19.0,60.0,90.0,0.0,0.0,0.0,35.0,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,49.0,11.0,10.0,3.0,57.0,22.0,0.0,11.0,9.0,0.0,4.0,10.0,2.0,0.0,0.0,1.0,2.0,4.31748811353631,6.888918825414764,4.772801027372043,5.124707750356103,5.539546385408632,5.908592319281906,6.071999921862698,6.3909613594853765,6.739322758917813,6.66323745582897 +2478,CS(=O)(=O)OCCCCOS(C)(=O)=O,0,40.214285714285715,6.809542857142858,2.7142857142857144,8.38888888888889,167.03502121766738,159.6894581428572,1.5584715952816433,6.824621428571429,8.989644571820497,8.460699500000002,195.29189170887253,46.22222222222222,6.544074074074074,3.037037037037037,2.271604938271605,144.83695701368893,179.04935307407425,1.8620666792592582,6.740766666666668,1.9958847736625513,8.274269481481484,246.07173355737044,24.84,6.91216,2.32,5.7333333333333325,161.98041855778945,90.91292048000003,1.2277534982497995,6.947772,6.518333333333332,8.563408080000002,168.11226443825467,15.578947368421053,6.603543859649123,2.0350877192982457,1.4502923976608186,168.6898771076002,51.737383035087724,1.0496867338629474,6.622061403508771,3.6143599740090973,8.344757754385967,135.65606211965775,16.75,6.391500000000001,2.0833333333333335,1.6388888888888886,162.82813646379398,56.501563833333314,1.1791328793915001,6.449479166666666,3.3701774691358026,8.10897775,146.93389694408094,14.823529411764707,6.240431372549018,1.8823529411764706,1.7777777777777777,167.86992557994125,49.870887196078414,1.0522672197957643,6.277345098039215,3.2454611474219313,7.995922823529413,126.53886894301893,17.142857142857142,6.2079047619047625,1.9047619047619047,1.4285714285714286,165.34190073923594,58.918704333333324,1.0492976344330478,6.268366666666667,3.251543209876543,7.977422190476191,130.9033220287461,20.10810810810811,6.679286486486485,1.7297297297297298,4.228228228228229,172.63603033052127,72.92765313513512,0.9300118336807567,6.655643243243242,5.327162810959107,8.37258683783784,114.71025650421079,31.833333333333332,6.276666666666667,2.0,0.7222222222222222,171.99015259982866,122.11715833333339,1.147215115591167,6.33945,1.807098765432099,8.204497166666668,137.83284149769642,18.658163265306122,0.2559428571428571,0.017536405963817437,0.673469387755102,5.5311791383219955,1.3904708336167384,82.31732897959184,0.4130287352326581,0.23073112244897948,4.451504804596736,0.17411480102040808,49.01108688217052,7.593159486016624,-0.01711111111111112,-0.012201350207885951,-0.10733182161753595,-0.7143067103384567,-0.5267851491361644,32.65803300982614,-0.1252061945626608,0.0046252267573696345,-1.2448981697922274,0.026782540249433082,-4.117839738117921,-1.7038775510204096,0.106656,0.005534503841821839,-0.09632653061224489,1.9869160997732416,-0.2112793700877631,-6.771915196734699,-0.06427005311493816,0.09122659183673466,1.9987913447271906,0.06105676183673463,-4.351316668884153,-4.406283566058002,-0.10275789473684212,-0.0028162090376243503,-0.03437164339419978,-2.038697935314477,0.18047272107632958,-19.504870693877546,0.030776418637879426,-0.09636032044396702,-1.1140585010807444,-0.07498762432867881,-1.2429032370438888,-4.446853741496598,-0.05969999999999994,-0.0013572990756799861,-0.04251700680272109,-1.067885487528344,-0.14384453304112416,-19.874821015306136,-0.037306332680613515,-0.058051658163265275,-0.7435243580456873,-0.04520651232993197,-9.879695676253126,-1.6735694277711077,-0.018015686274509807,0.0017767076223917024,0.0016006402561024446,-0.20391489929305046,0.09790544068473818,-7.118238256902755,0.017120871849379646,-0.018400450180072005,-0.48462005687048476,-0.016819886454581816,0.9708466060163435,-1.3180272108843532,-0.028742857142857143,-0.003726586163277948,1.2886517250113425e-17,-0.46315192743764166,-0.27861650981656955,-5.895046013605441,-0.08236372235024318,-0.022271938775510182,-0.7793844132303124,-0.018008345238095223,-4.855189274527164,5.27426916712631,0.06756756756756757,0.005521475565742786,0.21842250413678993,1.268263161120304,0.13852248332232925,22.263602337010486,0.10036505898532828,0.05768798952013236,0.1553124955076011,0.048468637203530035,1.198349282182381,11.216836734693876,-0.038000000000000034,-0.008991578052356461,-0.2448979591836733,-1.0688775510204078,0.4251669781458025,50.463569187074846,0.11809031368095492,-0.010799574829931961,-1.1946108819042023,-0.005220914115646275,31.086369827581134,,,0.47619047619047616,1.0357142857142858,0.42857142857142855,0.0,0.6071428571428571,-0.17857142857142858,0.7507927089199463,0.0505076272276105,0.0505076272276105,0.695710606985455,0.17928361172637283,0.2640811583583806,1.4465033159054013,0.44336477008475345,1.8597110893680384,0.8031466207548742,0.0,0.756148478418128,0.0,1.0565644686131643,8.786542148857142,1126.0,190.6672,76.0,234.88888888888889,4676.980594094686,4471.304828000002,43.63720466788601,191.0894,251.71004801097394,236.89958600000006,5468.172967848431,1248.0,176.69,82.0,61.33333333333333,3910.597839369601,4834.332533000004,50.27580033999997,182.00070000000005,53.888888888888886,223.40527600000007,6643.9368060490015,1242.0,345.608,116.0,286.66666666666663,8099.020927889473,4545.6460240000015,61.38767491248997,347.3886,325.9166666666666,428.1704040000001,8405.613221912734,888.0,376.402,116.0,82.66666666666666,9615.322995133212,2949.0308330000003,59.832143830188,377.4574999999999,206.01851851851853,475.6511920000001,7732.395540820492,804.0,306.79200000000003,100.0,78.66666666666666,7815.750550262111,2712.075063999999,56.598378210792006,309.575,161.76851851851853,389.23093199999994,7052.827053315885,756.0,318.26199999999994,96.0,90.66666666666666,8561.366204577003,2543.415246999999,53.665628209583986,320.14459999999997,165.5185185185185,407.79206400000004,6453.482316093965,720.0,260.732,80.0,60.0,6944.359831047909,2474.5855819999997,44.07050064618801,263.2714,136.5648148148148,335.051732,5497.9395252073355,744.0,247.13359999999994,64.0,156.44444444444446,6387.533122229287,2698.323165999999,34.410437846187996,246.25879999999995,197.10502400548697,309.7857130000001,4244.279490655799,764.0,150.64000000000001,48.0,17.333333333333332,4127.763662395888,2930.8118000000013,27.533162774188007,152.1468,43.370370370370374,196.90793200000002,3307.988195944714,522.4285714285714,7.1663999999999985,0.4910193669868882,18.857142857142858,154.87301587301587,38.93318334126867,2304.8852114285714,11.564804586514427,6.4604714285714255,124.64213452870861,4.875214428571426,1372.3104327007745,205.01530612244886,-0.4620000000000002,-0.3294364556129207,-2.8979591836734704,-19.28628117913833,-14.223199026676438,881.7668912653057,-3.3805672531918414,0.12488112244898014,-33.61225058439014,0.7231285867346933,-111.18167292918386,-85.19387755102048,5.3328,0.276725192091092,-4.816326530612244,99.34580498866208,-10.563968504388155,-338.59575983673494,-3.213502655746908,4.561329591836733,99.93956723635952,3.0528380918367315,-217.56583344420764,-251.15816326530611,-5.857200000000001,-0.16052391514458797,-1.9591836734693875,-116.20578231292518,10.286945101350787,-1111.77762955102,1.7542558623591273,-5.49253826530612,-63.501334561602434,-4.274294586734692,-70.84548451150167,-213.44897959183672,-2.865599999999997,-0.06515035563263934,-2.0408163265306123,-51.25850340136051,-6.9045375859739595,-953.9914087346945,-1.7907039686694488,-2.7864795918367333,-35.68916918619299,-2.1699125918367344,-474.2253924601501,-85.3520408163265,-0.9188000000000001,0.09061208874197682,0.08163265306122468,-10.399659863945573,4.993177474921647,-363.0301511020405,0.8731644643183619,-0.9384229591836722,-24.715622900394724,-0.8578142091836727,49.51317690683352,-55.35714285714283,-1.2072,-0.15651661885767382,5.412337245047638e-16,-19.45238095238095,-11.70189341229592,-247.59193257142852,-3.4592763387102137,-0.9354214285714276,-32.73414535567312,-0.7563504999999994,-203.91794953014087,195.1479591836735,2.5,0.20429459593248306,8.081632653061227,46.92573696145124,5.125331882926182,823.753286469388,3.7135071824571466,2.1344556122448974,5.746562333781241,1.7933395765306113,44.33892344074809,269.204081632653,-0.9120000000000008,-0.21579787325655508,-5.877551020408159,-25.65306122448979,10.20400747549926,1211.1256604897962,2.834167528342918,-0.25918979591836705,-28.670661165700857,-0.1253019387755106,746.0728758619472,0.8030457633656634,0.6948147578794678,0.4774697523989652,0.5789876932286773,0.390862994774041,0.33595592912380823,0.2366866718721158,0.21119383499736244,0.16642135623730953,0.14659258262890684,0.11686407725518189,0.10376613242830594,0.08191626073623884,0.06952327723098717,0.05803571428571429,0.03541362942132844,16.01462467359388,5.837542017699205,3.593187549344903,2.298218224359312,0.46270005021521093,-0.3749564992780043,4.039469491005503,0.9661733866935396,6.023652580513229,0.616547175304759,13.653604312997205,10.31695020501229,32.06779350676215,11.84915655511401,2.956868806002035,0.7540435539416676,3.550105128141853,2.3852778382646926,7.016338017607711,0.2999686290863517,3.7824585066939687,2.582090969704915,24.44342528650931,14.699040684800366,0.3480701429305963,0.4563445161492018,0.6134493834108368,0.6134493834108368,0.6134493834108368,0.6134493834108368,3.232833861096644,304.51801900399903,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0829471041950116,2.5465346038859447,1.7682062501545328,1.7682062501545328,1.7682062501545328,1.7682062501545328,65.95970334700488,627.954877897607,50.72824505485915,22.426959924914534,51.50446488887111,,9.0,190.0,20.236253718067108,16.835593968657875,13.213763929025836,12.841643245852019,12.511538367022808,0.0,0.0,0.0,8.366170865299415,0.0,6.666666666666666,14.5,6.0,0.0,8.5,0.0,0.023809523809523853,-2.5,0.2560606060606059,0.0,-0.2560606060606059,0.0,0.26757142857142857,0.0,0.6833333333333336,1.0666666666666667,0.4272727272727277,0.6833333333333336,1.0666666666666667,10.511097924879248,0.707106781186547,0.707106781186547,9.73994849779637,2.50997056416922,3.697136217017328,20.251046422675618,6.207106781186548,0.4464285714285714,0.35,0.25000000000000006,0.0,1.0,0.42692496338395225,-0.594018993742184,-0.0860955260918448,-0.021214964062220856,-0.074252374217773,0.5730750366160476,0.7973706992703482,0.02630547563340026,0.028477524973941012,0.03986853496351742,-1.6114552763742722,0.9015586546349464,0.6983143558830096,1.8014328293862187,1.8560606060606057,0.7776980629291792,1.9644520002419787,0.8847276909447926,1.9469508391173984,0.5989191412391399,0.882776980265174,0.511243974294347,1.3907380104422897,1.073945857260049,0.6100770261219022,0.8303808539265378,1.2027272727272726,0.6628656349287692,1.2109969992849154,1.0622751417553087,1.1936393481598446,0.6195922455902156,0.4224241830496303,0.6800971503055648,1.0768687632365892,1.0889426190578988,1.458702012902316,1.1706539017332345,0.8540669856459329,1.4181397431263925,0.7340623276740826,1.0962940863251207,0.7362150369967494,1.471510668638791,1.1982384575654177,1.4851665124908124,0.9138523818046468,1.110079983593109,1.0901498660415272,0.9472645045335802,0.9545454545454544,1.0520715896279595,1.1086263123257598,1.1162632119889122,1.016663803089568,1.1100379947947185,1.0235147354060186,1.1211936454458078,1.1910118342072673,0.9900593543405876,0.9388518970883731,0.7128726644857003,0.8422459893048128,0.9081443789978839,0.8191444676909376,0.9913320439712991,0.8302260690960179,0.9597551288306484,0.944194442115196,0.9605597041982816,0.9339627457580211,1.0373256767842494,0.9373026504640705,0.9667938093515108,0.9545454545454544,0.9145741518909501,1.1565494645253658,1.038236088036037,1.1666747530342245,0.9329206404663084,1.126941957383184,0.9271429116040936,1.0932216549861242,0.4539609338624925,0.8359959088358283,0.5810096939770404,0.23218673218673216,0.8622582816494879,0.6165568888316688,0.48128294477249556,0.3696772416290648,0.8533600324778766,1.0157729453754394,0.8164261266347532,0.79437189661116,0.8075266611977029,1.1492381111855328,1.7508551538996975,1.789772727272727,1.1985625704622322,0.6368986074712754,0.7770764842731108,1.0088644006981744,1.060992618849133,0.9991126983080404,1.0152640355657914,0.37224032087895353,5.5,0.0,1.1111111111111114,0.625,0.40000000000000013,0.27777777777777773,0.20408163265306123,0.09375,0.2222222222222222,0.0,3076.1948110892,3449.1508013443895,2056.921148652995,1918.581032535515,12.171028825342614,0.48539971977382845,6.26321484416212,0.9432558403592218,1.0,1.0,1.7244078178625923,2.260820318171659,3.039148671903071,3.039148671903071,3.039148671903071,3.039148671903071,0.42307692307692313,0.0,0.06172839506172842,0.05681818181818182,0.040000000000000015,0.030864197530864192,0.025510204081632654,0.01339285714285714,0.037037037037037035,0.0,0.6884277957492244,14.0,5.777777777777778,13.090909090909092,84.45985657451557,1.0,3.4870540735940496,57.72063551422487,,36.54469468862217,45.89863200380768,50.21387009975652,36.5525948296596,68.60902635921856,46.092892699268134,45.415489169515936,60.793961347533575,0.406961788148553,-0.06685520081367373,-0.6957725678260862,-0.1593714927048261,-0.12914185067510892,-0.3788537928306985,0.39673339034023736,-0.30314160706550464,0.020045959592609314,-0.27965782907989095,0.15382115760677859,-0.08401853539828204,-0.0913207547169812,0.41671801741460157,0.31560080516162126,-0.143030303030303,0.35922107205083514,-0.15194807757182988,-0.08226597340656663,-0.1556067353975626,0.3953805228720594,0.44901475623775317,0.35066956673934996,-0.0887822928584572,-0.23615848480923393,-0.401487644093489,-0.16059214433305125,-0.05103668261562997,-0.36858287976783205,0.12979252546197176,-0.236947322461267,0.07451398900985216,-0.4176303544194595,-0.2502655955645245,-0.4306792064155963,-0.025359634240146547,-0.23833287758636404,-0.23325519089082367,-0.07739893102842611,-0.06313131313131314,-0.19306651634723776,-0.10345023395202883,-0.2414415198072512,-0.09032381889748893,-0.2515987333962802,-0.16702764361343725,-0.25963624037127836,-0.2015808321085654,-0.0896963652838767,-0.0703894864487434,0.10131537933471388,0.002376708259061205,-0.0368664427952179,0.07041171833146433,-0.08647314417438778,0.041452011419339865,-0.07974845345859578,-0.10886656942839955,-0.09660227824405547,0.019808714064031962,-0.07064078023881139,-0.1123018530922081,-0.2125056964903156,1.913452561380478e-17,-0.08373475453520549,-0.20037565915126979,-0.07161366976650743,-0.19941402455654303,-0.09652767489325188,-0.17508335887349832,-0.10342799769207706,-0.09906308109835874,0.28267890532041473,0.2639947382077323,0.31485787778494356,0.3243243243243244,0.22929345251780425,0.0996227176962928,0.2704606990167294,0.24299776365146333,0.2500225756622349,0.03488988607789921,0.2783717232508511,0.024450575541476553,0.6011758271807492,-0.14847064076802874,-0.5127377907941131,-0.36363636363636337,-0.19324587475658497,0.3057719499515897,0.613037009492689,0.28591306998152305,-0.046805886935864155,-0.2683611350190203,-0.029985469845463218,0.6342721984990273,3.965406456500188,,,22.56386324646592,29.79146317043726,30.57601815099852,30.57601815099852,30.57601815099852,30.57601815099852,26.035955251152537,11.244052690568239,0.0,10.586078697853793,0.0,14.791902560584301,3500.9177788217935,3396.0408361231084,327.33331432847626,0.0,18.0,11.0,10.0,9.0,8.0,7.0,6.0,9.0,246.023180168,13.0,4.143134726391533,4.795790545596741,5.645446897643238,6.315358001522335,7.161622002939187,7.838737559599282,8.681181041521688,9.362975618399776,10.201701469897316,0.773809523809524,1.0239999999999998,1.1429799573977348,0.7323405925520652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6408704448246366,1.0070028011204484,1.048304026636146,0.5877035270855747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.236253718067108,8.366170865299415,0.0,16.835593968657875,0.0,0.0,12.841643245852019,0.0,25.725302296048646,192.67759032536932,-268.08961325321013,-38.85619237086564,-9.574629044757504,-33.51120165665127,258.6372936723742,359.86526464439686,11.872052683993509,12.852330880157032,17.99326323221985,0.4444444444444444,0.9537145774821,0.1942797437979423,38.8382542484527,0.18965722532445137,2.256308629077423,0.046285422517900035,5.0,0.5384615384615384,0.3587019984629148,0.4702836289033558,0.6321872882650154,0.6321872882650154,0.6321872882650154,0.6321872882650154,-0.2809999999999997,,2.75,1.6651053864168617,0.8650041247302227,2.746310879458039,-5.645489723965946,1.5755813953488373,1.633681009632871,-2.078809118005218,50.82560000000003,25.20176483395729,0.0,0.0,0.0,12.841643245852019,25.725302296048646,0.0,0.0,0.0,3.295836866004329,0.0,4.59511985013459,0.0,6.003887067106539,0.0,7.456454555176209,0.0,8.93022956502072,21.66666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.671999999999997,0.0,41.8953633366927,0.0,0.0,-6.797556374401611,0.0,0.0,0.0,32.003438807136575,0.0,0.0,0.0,42.560896264706514,28.60242458336652,0.0,12.841643245852019,0.0,0.0,0.0,0.0,20.505536591457826,17.944372455089827,14.682734710071827,115.44127102844973,,73.76073213467959,91.55939180955579,100.30416818169444,73.77871234871523,139.4021990052312,91.96070234205786,90.59759533765575,121.88489542621073,14.682734710071827,115.44127102844972,,72.189303563251,90.1321586211985,99.56273607478283,72.20939184616779,142.8635424424031,90.61020400318742,89.19729732939899,123.66673181307237,4.282593827751734,92.38062913334082,,63.04391818837129,75.45785042454978,82.07795556515244,63.058745739612114,114.926952144641,75.89802344672016,75.04331662775692,100.19550311124686,1.0487667650051304,8.245805073460696,,5.268623723905685,6.5399565578254135,7.164583441549603,5.269908024908231,9.957299928945087,6.568621595861275,6.471256809832553,8.706063959015053,2.141296913875867,57.72063551422487,,36.54469468862217,45.89863200380768,50.21387009975652,36.5525948296596,68.60902635921856,46.092892699268134,45.415489169515936,60.793961347533575,28.196078431372555,0.0,1.9166710233476105,0.0,0.0,0.0,0.0,29.352512745812092,0.9613992819349964,0.0,8.857456065759637,0.0,0.0,0.0,0.0,0.0,0.0,16.455698758396093,430.42558390329094,48.28341890015258,63.302968908806456,85.09616281328599,85.09616281328599,85.09616281328599,85.09616281328599,105.0,91.1459478635111,20.8893000944526,44.281527903442395,103.5,86.74000000000001,0.8,5.099866427824199,4.700439718141093,3.5779096586377417,3.6960679595389827,,3.7258460369134747,3.705175338966908,3.7029898744455214,3.725851838456231,3.7125389839396092,3.7062248097835298,3.708055495648067,3.7074131297753885,0.25556497561698155,0.26400485425278447,,0.2661318597795339,0.2646553813547791,0.2644992767461087,0.2661322741754451,0.2651813559956864,0.2647303435559664,0.26486110683200476,0.2648152235553849,1.61125097226593,1.6437417775527594,,1.6517661866676014,1.6462028192068028,1.6456128041297013,1.6517677437738754,1.6481882414193727,1.6464860236762886,1.6469798506767053,1.6468066004327266,163.31999999999985,46.78837528070476,52.38580192559481,,49.96988608953829,51.53667052576663,51.68688544191152,49.96912178157353,50.82049036575626,51.467656666433,51.34328584597819,51.31524028027004,3.342026805764626,3.7418429946853435,,3.5692775778241637,3.681190751840474,3.691920388707966,3.569222984398109,3.630035026125447,3.6762611904595,3.6673775604270133,3.6653743057335744,4.182107017252619,4.295107835614684,,4.247892782397748,4.278765839948271,4.281676319456063,4.247877486909409,4.26477186353705,4.277425821105529,4.27500641169087,4.274460026164715,50.75281940245233,0.0,0.0,0.0,0.0,0.0,2.7829210233476105,0.09514928193499639,-6.797556374401611,202.091780948457,86.9582643266588,-120.99283270637245,-17.536377952451236,-4.321172596656159,-15.124104088296557,116.72686019123789,162.41255016780323,5.35803407989163,5.800448220278689,8.120627508390166,393.0,11.0,3.121320343559643,1.391411538058256,0.7071067811865476,0.16666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.242640687119287,9.72740661031255,6.207106781186548,7.526840011972805,7.035533905932739,6.047206724228548,2.603553390593274,2.3231321849709867,1.6642135623730954,1.4659258262890684,1.051776695296637,0.9338951918547534,0.6553300858899107,0.5561862178478973,0.40625,0.2478954059492991,1.5,0.6952013993873837,1.5606601717798214,0.6094327539949543,1.1035533905932737,0.43093403302702515,55.70558912018773,42.67775203318038,41.74351934296451,41.74351934296451,41.74351934296451,41.74351934296451,62.0,60.0,29.967101999999976,30.828897999999995,0.0,13.08,7.625,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,27.0,0.0,4.0,4.0,23.0,4.0,13.0,23.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,6.0,0.0,0.0,14.0,8.0,0.0,0.0,6.0,0.0,0.0,7.0,2.0,0.0,0.0,0.0,0.0,2.8903717578961645,0.0,3.4965075614664802,2.772588722239781,2.70805020110221,2.6390573296152584,2.5649493574615367,2.4849066497880004,2.3978952727983707,3.258096538021482 +6032,NC[C@H]1O[C@H](O[C@@H]2[C@@H](N)C[C@@H](N)[C@H](O[C@H]3O[C@H](CO)[C@@H](O)[C@H](N)[C@H]3O)[C@H]2O)[C@H](O)[C@@H](O)[C@@H]1O,0,22.956521739130434,6.654921739130435,3.0434782608695654,7.27536231884058,171.36606199362993,90.34441578260873,1.1321957764429564,6.643782608695651,6.295893719806763,8.192310318840581,175.30252565936357,23.971830985915492,6.836366197183099,3.9859154929577465,5.76056338028169,156.00683677013168,89.34828618309858,1.4796631663661972,6.914338028169013,3.502347417840375,8.285051323943662,229.30349635237985,20.9618320610687,6.723854961832061,3.5572519083969465,5.175572519083969,157.91771031990487,76.66914146564885,1.2973725757247554,6.784688549618319,3.2777777777777777,8.226231267175573,196.08853905084052,18.20098039215686,6.719637254901962,2.7794117647058822,4.7254901960784315,166.28642478027456,65.67819575980393,1.0544319091973628,6.732049509803923,4.208333333333334,8.274512607843137,155.8962056025326,15.008658008658008,6.600350216450217,2.463203463203463,3.346320346320346,169.8975038680736,52.11944648917749,0.9481397134069134,6.601585281385281,3.8565416065416054,8.208004865800868,135.92755777372676,14.216216216216216,6.508896396396397,2.4414414414414414,3.1171171171171173,170.5741795546599,48.97443413513514,0.9546856559941215,6.512018918918918,3.6083583583583576,8.121897873873875,133.85855526515388,14.419354838709678,6.3830599078341015,2.5161290322580645,3.119815668202765,168.5668531326154,50.46977336866359,0.9913236978331289,6.400370046082949,3.4679979518689197,8.00115740092166,138.8193759720525,14.628440366972477,6.3958389908256885,2.4403669724770642,2.9724770642201834,167.18772223652525,50.70734133944954,1.0203871222892384,6.422210091743118,3.5293068297655448,7.986017541284403,141.5359498429305,12.662447257383967,6.345573417721519,2.080168776371308,2.569620253164557,172.25913123064822,42.8419275443038,0.8857800225509748,6.348486497890295,3.779301453352086,7.9705551392405045,119.115260802172,8.757823986557446,0.22391976475530348,0.03850310993496975,0.6834698592732615,4.149128334383531,1.1716147359460636,41.03898477882799,0.18124439191107158,0.20395694181894553,2.6083805923125407,0.1472769014912833,42.435753094701646,-0.4659276811890031,-0.05668555369182088,-0.01900919591130916,0.24427049590126346,-0.028491469717274568,0.18491827928671686,-1.8948768988524731,0.02581683927279043,-0.04765218574627744,-0.7617622348246167,-0.03860588944800929,6.099222058553611,-0.6221895137175295,-0.02894428074158498,-0.005657995516757586,-0.05176281203352296,-0.1608552953305403,-0.19169886430967112,-2.8851082594121142,-0.02481496730265838,-0.024312312988322555,-0.4397963093903871,-0.02045068664450831,-3.4367162103386497,0.48151957695491576,0.03248459727936556,0.007142827710203372,-0.06418881352162792,0.3805676019620199,-0.09120788784571732,2.086338945383446,-0.01655905543620816,0.02855271291251233,0.29469911783238817,0.02253128663034204,-2.466310485870203,-0.6113279704962125,-0.015136409463252455,-0.002817986068199553,-0.05149796643180387,-0.46213416912849814,-0.0509051578862191,-2.845098553531535,-0.006679732027520523,-0.014244550828293642,0.00837181791813172,-0.010107862781201208,-2.401388299862762,-0.5927893867402374,-0.010769183739505047,-0.00010553551145073688,0.026675068262969965,-0.3114210618936517,0.1073182245533667,-2.7507765914014213,0.0075923228892374834,-0.011133740356613648,-0.166155758783358,-0.005910417877234536,-0.670319653765281,0.2269486041057478,-0.0030799597730020584,-8.632650234568539e-08,-0.029893421685604132,-0.109390138965113,0.009898748916316704,1.1402240680964866,0.014830164628361295,-0.0023420550227123992,0.086425614415126,-0.0026042996078932284,2.856058521669712,-0.6609618671584299,-0.008282874714085602,-0.0013679722813217444,-0.10429155851538395,-0.26001784375728637,-0.17443132923002477,-3.1660743492308496,-0.026108950749383672,-0.008081978383232264,-0.17365338405122666,-0.005407185230147837,-5.5330808072372255,-0.21523241314583968,0.007518766401059186,0.002905648770265278,-0.01295068847891227,0.0035653609628867535,-0.07057446779480533,-1.1055883394590535,-0.017459904993197904,0.005894382097155375,0.17052338045494464,0.005354463762798502,-3.6502005156262807,,,0.43232323232323244,0.6742424242424242,0.0,0.0,0.6742424242424242,-0.6742424242424242,1.398079744602996,0.027420245203848854,0.03523842702203067,0.770254009269043,0.1376432187088482,0.33233694706830585,2.168333753872039,0.46998016577715407,1.99127577232272,1.154713191295701,0.21351945919671628,0.6230431218303025,0.0,0.8365625810270186,7.017942869159433,1584.0,459.1896,210.0,502.0,11824.258277560464,6233.764689000002,78.12150857456399,458.42099999999994,434.41666666666663,565.2694120000001,12095.874270496086,1702.0,485.38200000000006,283.0,409.0,11076.48541067935,6343.728318999999,105.056084812,490.9179999999999,248.66666666666663,588.238644,16280.548241018969,2746.0,880.825,466.0,678.0,20687.220051907538,10043.657532,169.95580741994297,888.7941999999998,429.38888888888886,1077.636296,25687.59861566011,3713.0,1370.8060000000003,567.0,964.0,33922.43065517601,13398.351935,215.104109476262,1373.3381000000002,858.5000000000001,1688.0005720000001,31802.825942916654,3467.0,1524.6809,569.0,773.0,39246.323393525,12039.592139,219.020273796997,1524.9662,890.8611111111109,1896.0491240000003,31399.26584573088,3156.0,1444.9750000000001,542.0,692.0,37867.4678611345,10872.324378000001,211.94021563069498,1445.6681999999998,801.0555555555554,1803.0613280000005,29716.59926886416,3129.0,1385.124,546.0,677.0,36579.00712977754,10951.940820999998,215.11724242978897,1388.8802999999998,752.5555555555555,1736.251156,30123.804585935395,3189.0,1394.2929000000001,532.0,648.0,36446.923447562505,11054.200412,222.444392659054,1400.0417999999997,769.3888888888888,1740.951824,30854.83706575885,3001.0,1503.9008999999999,493.0,609.0,40825.41410166363,10153.536828,209.92986534458103,1504.5912999999998,895.6944444444443,1889.0215679999997,28230.316810114764,604.2898550724638,15.45046376811594,2.656714585512913,47.15942028985505,286.28985507246364,80.84141678027838,2831.6899497391314,12.50586304186394,14.073028985507241,179.9782608695653,10.16210620289855,2928.0669635344134,-33.08086536441922,-4.0246743121192825,-1.3496529097029504,17.343205208989705,-2.0228943499264944,13.129197829356897,-134.5362598185256,1.8329955883681206,-3.3833051879856986,-54.085118672547786,-2.7410181508086593,433.04476615730636,-81.50682629699637,-3.7917007771476325,-0.7411974126952438,-6.780928376391508,-21.07204368830078,-25.112551224566918,-377.94918198298694,-3.250760716648248,-3.184913001470255,-57.613316530140715,-2.679039950430589,-450.2098235543631,98.22999369880282,6.626857844990575,1.4571368528814879,-13.094517958412096,77.63579080025205,-18.606409120526333,425.61314485822305,-3.3780473089864644,5.824753434152515,60.11862003780718,4.596382472589776,-503.12733911752144,-141.21676118462508,-3.496510586011317,-0.6509547817540967,-11.896030245746694,-106.75299306868307,-11.759091471716612,-657.2177658657846,-1.5430180983572408,-3.290491241335831,1.9338899390884274,-2.3349163024574793,-554.7206972682981,-131.5992438563327,-2.3907587901701204,-0.023428883542063586,5.921865154379332,-69.13547574039067,23.824645850847407,-610.6724032911155,1.6854956814107214,-2.47169035916823,-36.88657844990548,-1.312112768746067,-148.8109631358924,49.247847090947275,-0.6683512707414466,-1.873285100901373e-05,-6.4868725057760965,-23.73766015542952,2.1480285148407248,247.42862277693757,3.218145724354401,-0.5082259399285907,18.754358328082343,-0.5651330149128305,619.7646992023275,-144.0896870405377,-1.8056666876706613,-0.29821795732814027,-22.7355597563537,-56.68388993908843,-38.0260297721454,-690.2042081323252,-5.69175126336564,-1.7618712875446334,-37.85643772316741,-1.1787663801722283,-1206.2116159777152,-51.01008191556401,1.7819476370510272,0.6886387585528709,-3.069313169502208,0.8449905482041605,-16.726148867368863,-262.0244364517957,-4.137997483387903,1.396968557025824,40.41404116782188,1.269007911783245,-865.0975222034285,0.7457576213984917,0.541044357227809,0.44312415630417407,0.30835087542809286,0.2756042459356101,0.16903538325734546,0.18412926624056428,0.09003022210653557,0.1124190530765878,0.050005936954951924,0.0673463445132371,0.02686740877979023,0.044844256425240155,0.014331795489306368,0.027572540217759022,0.007565675993070311,8.023074621212757,5.795238260180975,3.538711209906579,2.2912744041486413,0.4167389552124738,-0.39172880513678215,3.198570128814394,0.987200184691525,6.0134124358950904,1.978041190480143,14.541097095794866,11.058047092844141,16.01504828846083,11.808919353560317,1.8922751355718788,0.7676319131139462,3.4827106726518373,2.3402032613691026,6.008992282216757,1.1450874571599876,3.6959646272827866,2.5359228383176924,20.78866598122739,14.704219048748115,0.26926637916261725,0.4948297830628968,0.6901261374924558,0.8459376058961874,0.916105302018959,0.9320241550089817,1.7220644460470758,584.1983387945309,0.0,0.0,4.0,0.0,0.0,14.0,0.0,0.0,0.0,4.4526043171434075,3.0654464237419927,1.864423230639047,0.9062221016374039,0.4747085145241092,0.37681159420289845,273.8698904615144,3801.1653381119613,133.68690001956097,55.0893527262603,122.3641615280953,,14.0,753.0,98.35212178811024,35.745691763884935,12.965578028838586,0.0,0.0,0.0,0.0,0.0,0.0,41.88212172384894,14.266666666666671,22.25,0.0,0.0,22.25,0.0,0.06767676767676754,-22.25,0.19776760742435717,0.0,-0.19776760742435717,0.22001262626262708,0.28341649899396343,0.0,0.6367149758454089,1.0040404040404036,0.43894736842105175,0.6367149758454089,0.7840277777777765,46.13663157189887,0.9048680917270122,1.1628680917270122,25.418382305878417,4.54222621739199,10.967119253254094,71.55501387777728,15.509345470646084,0.43058350100603654,0.2757009345794392,0.0,0.5257009345794391,1.0,0.30535560023359376,-1.6498720685161359,-0.11079563343288565,-0.02391118939878458,-0.10311700428225849,0.6946443997664064,3.753245042334301,0.07923187464468213,0.05439485568600435,0.0708159441949868,4.9832749425873395,0.9667965583215332,1.1181060062208565,1.5038543202294994,1.1779045508453307,0.8631063489369959,1.4694547832340414,0.9676238285064654,1.3541999993213698,1.082844055131364,1.2407862644725294,1.1527309362149598,1.1009093740126348,1.0076050277398605,1.0530671322692031,1.054902894052514,1.5354771813434558,1.0307708478406543,1.5962482080158042,1.0119221516077115,1.5288857865787076,1.0302041688894046,0.9919466780917943,1.100361925454208,1.272317966310838,0.9449107828089025,0.9133587754037681,0.8162851923106902,1.240473263675477,0.9885086564746386,1.1983324858528146,0.9483985905356884,1.1949075234459468,0.9092108040974667,0.8412281408114234,0.9303844903041096,1.0934825033957631,1.0897267544427944,1.1647923942012013,1.1207047438296032,1.0829987467971494,1.228736839752331,1.018302174839325,1.086506257058614,1.0157893041883155,1.1606826951712172,0.9594379306904971,1.1843827005513672,1.0264690035092037,1.0697837371139367,1.0856934081993692,1.041030484894212,0.9547833020482072,1.120737777364284,0.8864663660953397,1.0677945244686404,0.9303428032155102,1.0893342469641671,1.034428679192539,1.0837885814975292,0.9881498207662707,0.9481975748980552,0.975052174551517,0.9251392438048975,1.0997113796844158,1.0354624554835543,0.9997485954111401,0.94718218270779,0.9548148309586756,0.9731967966679312,0.8532221791147402,0.9866592489333399,0.9485207109527892,1.0246313201011075,0.9326365930610119,0.9535791464188207,1.2368743057239366,0.9424592208940616,1.2601544533675344,1.0294153458771378,1.234476834955852,0.9358920381234321,1.0711255120387981,0.9282323087768718,1.1754237696325505,1.0025507106288312,0.9136562416565719,0.8708895018983873,0.8791438774478153,0.9315453495718866,1.0001808573180173,1.005388520594384,1.019263904154766,0.9223455585828781,0.9002089969781593,0.8932400317683596,1.0428211981488766,8.0,0.23120089786756454,5.77777777777778,3.8125,3.1066666666666674,1.4305555555555558,1.2587755102040816,1.0451388888888888,0.49281934996220705,0.38500000000000006,7534.5454050150365,8807.757372907927,3261.945037539735,2838.897652985451,16.23824471566028,0.48648682281522515,8.338552635842591,0.9473696964940299,0.0,1.0,1.6559201396347611,3.0430780330361764,4.244101226139122,5.202302355140765,5.63381594225406,5.731712862575271,0.2285714285714286,0.007972444754053948,0.11111111111111116,0.060515873015873,0.0564848484848485,0.02861111111111111,0.023750481324605312,0.02009882478632479,0.011200439771868341,0.012031250000000002,0.5603478129312247,27.58530612244898,11.372781065088757,5.555555555555555,189.2991534834346,0.0,4.414429695687117,197.48400500109923,,168.78716694853696,164.5102731682922,176.53657380390663,168.8707111406102,305.2705419327062,167.67575530833105,168.97419054035694,238.69647050738357,-0.053201306843362516,-0.2531511845493679,-0.4937054680366066,0.3573976124726232,-0.006866856703652136,0.15783198487803057,-0.04617260658528863,0.14244214124681764,-0.2336384597714685,-0.2920441277126866,-0.26213132580260184,0.1437283802868373,-0.07104384772662026,-0.1292618397184139,-0.14694905233145372,-0.07573532516644221,-0.03876845505055698,-0.16361936942938568,-0.07030164793210336,-0.1369144007216177,-0.11920316499893797,-0.1686089486659123,-0.13885875135496856,-0.0809863372206241,0.05498164586248931,0.1450724875263436,0.18551300718999916,-0.09391608518023069,0.0917223019611814,-0.07784802038365295,0.050837976539317035,-0.0913631327381039,0.13999382741215466,0.11298164029472155,0.15298588171123065,-0.05811869251775189,-0.06980363746000738,-0.06759746947659276,-0.07318853134094938,-0.0753478236575963,-0.11138102557561914,-0.04344871767519538,-0.06932672844771055,-0.036854834277012916,-0.06984097085030164,0.00320958449959537,-0.06863169090911007,-0.05658879894280913,-0.0676868349546784,-0.048093940038180495,-0.002740960707563161,0.039028887523048575,-0.07505698469553895,0.09159856159261145,-0.06702837816837386,0.04188997413482837,-0.054588680617192104,-0.06370073419233942,-0.040131329606933296,-0.015796105992731267,0.025913811975908127,-0.013754747270156333,-2.2420657056400766e-06,-0.04373773222039378,-0.02636460724981792,0.008448808821377272,0.027783924827612404,0.08182412968472859,-0.011483085605350286,0.03313382052827755,-0.017683014658258313,0.06730311855891884,-0.07547101519429406,-0.03699036895263362,-0.035528877631760034,-0.15259130611301266,-0.06266806490475048,-0.14888113291710503,-0.07714796957804441,-0.14405384064073085,-0.03962590491480653,-0.06657517103256348,-0.036714414652917346,-0.13038724197705034,-0.024576014941177636,0.03357794882142536,0.07546530072954641,-0.018948441256331085,0.0008593036116383437,-0.06023692399004983,-0.0269399534471288,-0.0963334909792116,0.028900129824401235,0.06537519139557846,0.036356439527045654,-0.08601710231182465,0.3580927096403275,9.480068547604219,25.600752303565343,16.660649707766233,25.913613279645944,33.29484367287237,39.49704850325181,41.399586931597256,41.81719456351294,65.71210048664976,38.10553531275813,7.046142153491637,20.560423020399984,0.0,27.606565173891614,10710.547283683713,9709.803219176876,1978.3099016170672,161.0,52.0,72.0,88.0,110.0,121.0,124.0,137.0,152.0,484.2380579720009,35.0,5.1647859739235145,6.0473721790462776,6.947937068614969,7.844240718141811,8.74687531957003,9.64646400103814,10.54988373840662,11.450826632038375,12.354634881912412,0.6280193236714975,1.0143768115942025,1.1585712095862768,0.5846126557901634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5839325522867309,0.9951690821256037,1.03291216736861,0.5601093461004083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,7.0,3.0,0.0,4.0,0.0,15.0,0.0,0.0,0.0,0.0,77.62781348773389,61.039663877483015,12.580053458670426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4208216229260096,18.628438064208495,12.648722793660879,214.82175929065085,-1160.7071234063092,-77.94621378342758,-16.82184236820738,-72.54419521289432,488.69164975216523,2640.458214705652,55.74068623613338,38.267510358052924,49.81996631520097,0.5,0.5293494937211295,0.07284078309538239,434.20953430251893,0.03902357203930394,435.43881856047125,0.4706505062788707,7.0,0.17142857142857143,0.27108349182384156,0.49816908396912485,0.6947833730009484,0.8516463168725079,0.922287531484406,0.9383138109916579,-7.2913999999999985,,3.3214285714285716,3.885528152629129,2.8054743864919045,3.3119220840143813,-13.977964180457946,3.4906670746634028,3.29449477485666,-5.666237771611998,107.79220000000001,54.693143579085124,0.0,0.0,22.93466990864874,98.16606144652333,13.151638370425493,0.0,0.0,0.0,4.2626798770413155,0.0,5.631211781821365,0.0,7.202661196523238,0.0,8.86827250899781,0.0,10.581292642796804,43.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.99199999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.9414134614531,22.93466990864874,0.0,0.0,140.64256995790777,18.947451815200196,0.0,6.4208216229260096,0.0,0.0,0.0,0.0,40.33827324952127,40.291346107784435,41.16734299298208,394.96801000219847,,337.3730351957753,328.7850597818796,352.9031188571168,337.5406997306741,613.7847266830829,335.13995503637943,337.74871473072255,478.42316606415113,41.16734299298208,394.96801000219835,,334.39628993283964,325.3270468449372,350.333069151186,334.5719720122544,624.5190480458705,332.0153386151712,334.7954028740279,483.05917878637933,4.943659118371746,292.1169832901004,,247.91384575752784,241.43259737021182,260.36878754487236,248.04260636795067,460.58757969620257,246.26110525028537,248.19414746699147,355.91180428473353,1.2474952422115781,11.968727575824197,,10.223425308962888,9.963183629753928,10.694033904761115,10.228506052444668,18.599537172214635,10.155756213223619,10.234809537294623,14.49767169891367,2.471829559185873,197.48400500109923,,168.78716694853696,164.5102731682922,176.53657380390663,168.8707111406102,305.2705419327062,167.67575530833105,168.97419054035694,238.69647050738357,68.66666666666666,0.0,0.0,0.0,0.0,23.505097560217962,70.89126281071222,71.27093954843409,-0.6784915762853796,0.0,22.188645928553036,0.0,-19.40651472319784,0.0,0.0,0.0,0.0,38.64754488092817,372.4044669028405,114.25848963479852,209.97238427949617,292.84298460359946,358.9588625047128,388.7333000155301,395.4881875176937,1085.0,146.75302051269213,331.10894213997557,69.54611800718052,282.61,282.61,1.0,6.990256500493881,6.129283016944966,5.143017174312521,5.665880222054189,,5.667511042192102,5.667848375617938,5.668243907510691,5.6675092917516405,5.662715369366517,5.667678924769926,5.66748790124273,5.664859850418751,0.1558490052821976,0.17169334006224815,,0.17174275885430612,0.17175298107933146,0.17176496689426335,0.17174270581065576,0.171597435435349,0.17174784620514927,0.17174205761341604,0.17166241970965912,2.831562374616535,2.9283847298857246,,2.9286725202056996,2.928732038993503,2.928801821751624,2.9286722113504156,2.927825992883513,2.928702141690355,2.928668437108826,2.9282046230909926,336.39000000000135,238.19167141512793,217.51174709758095,,217.26075071090682,217.17130900595464,217.00153492374736,217.2611400375353,218.1770929318798,217.21693131487976,217.26671109912405,217.93624743498384,7.217929436822058,6.591265063563059,,6.583659112451722,6.580948757756201,6.575804088598405,6.583670910228343,6.611427058541812,6.582331251966053,6.583839730276487,6.604128710151025,6.6669981601103485,6.576175327186755,,6.575020716829277,6.5746089529908796,6.573826895369202,6.575022508806329,6.579229554380025,6.574819006140841,6.57504815071432,6.578125045532953,22.188645928553036,0.0,70.89126281071222,23.505097560217962,0.0,-2.8618546241042173,-16.45971269420574,-0.7634389811732607,0.0,423.4943549912227,151.129988215141,-816.573025287853,-54.83620658075927,-11.834391670838452,-51.035814080490816,343.80112848790355,1857.5977600626811,39.21432019636816,26.921706667575084,35.0490143408053,3160.0,63.0,2.7573873425427338,1.360370458686006,0.0,0.0,1.1789295538977476,0.2849232117334642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.09773920125054386,0.6006983801937383,0.24180272257836816,24.610001506150226,17.854463788517695,15.509345470646092,10.79228063998325,14.331420788651727,8.789839929381964,13.257307169320628,6.482175991670561,9.892876670739726,4.400522452035769,7.408097896456081,2.9554149657769253,5.426155027454059,1.7341472542060705,3.418994987002119,0.9381438231407185,7.902505123973229,2.809300375563665,11.83013951713688,3.546710360443924,18.01142346455898,4.52592853678206,116.08027306909702,80.38322741467127,52.478936646573516,32.60099343892194,27.036933452613113,25.997965659634616,174.0,211.0,67.28654799999995,40.779452000000035,0.2898550724637681,169.15,14.416666666666668,7.333333333333328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,69.0,0.0,4.0,71.0,0.0,0.0,0.0,71.0,0.0,35.0,71.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,15.0,11.0,2.0,33.0,15.0,0.0,4.0,11.0,0.0,3.0,6.0,0.0,0.0,0.0,0.0,0.0,3.58351893845611,5.087596335232384,3.970291913552122,4.290459441148391,4.48863636973214,4.709530201312334,4.804021044733257,4.8283137373023015,4.927253685157205,5.030437921392435 +3000706,CC(C)[C@@H]1NC(=O)[C@H](C)OC(=O)[C@@H](C(C)C)NC(=O)[C@@H](C(C)C)OC(=O)[C@H](C(C)C)NC(=O)[C@H](C)OC(=O)[C@@H](C(C)C)NC(=O)[C@@H](C(C)C)OC(=O)[C@H](C(C)C)NC(=O)[C@H](C)OC(=O)[C@@H](C(C)C)NC(=O)[C@@H](C(C)C)OC1=O,0,20.714285714285715,6.250889285714287,2.7857142857142856,6.821428571428571,167.23242519254413,81.34707503571425,1.2467466275976786,6.280889285714285,5.617063492063491,7.81779957142857,184.65695665438128,22.107142857142858,6.351928571428571,3.392857142857143,5.928571428571429,148.9145448977464,82.09283017857145,1.6027411657142843,6.476339285714289,3.069444444444445,7.799510428571425,232.5298531035923,18.14423076923077,6.224403846153845,3.0384615384615383,4.701923076923077,158.82414017625894,66.67324550961541,1.2838434672483554,6.299316346153846,3.0598290598290587,7.756975576923073,181.29325181504586,16.930555555555557,6.3665,2.611111111111111,4.111111111111111,162.25395864286585,60.74516224999998,1.1761840176255143,6.4168180555555585,3.4344135802469142,7.915007333333337,165.1845768511905,15.418079096045197,6.356350282485879,2.457627118644068,3.3446327683615817,168.0083468659706,54.944946542372875,1.0435917772971803,6.387621468926553,3.4758317639673555,7.958638237288135,150.63962940603454,18.142857142857142,6.776619047619047,2.6666666666666665,4.238095238095238,164.6037771572219,64.62877875,1.152023874077262,6.797671428571428,5.0383597883597915,8.331795857142854,170.43262099425704,16.817204301075268,6.456794623655914,2.6236559139784945,3.3763440860215055,160.60258737562035,59.313773935483844,1.2334351562633337,6.5097623655913965,3.626642771804061,8.005912602150538,173.111319171767,13.891666666666667,6.160616666666664,2.283333333333333,2.4833333333333334,163.23404188877936,47.893113508333336,1.1158477207102082,6.216204166666667,3.0814814814814806,7.759652699999996,151.22900928463963,12.485294117647058,6.13660294117647,2.0294117647058822,2.6029411764705883,166.80094220451696,42.300768639705886,1.0088917245986249,6.171282352941177,3.6584967320261454,7.7620089705882345,132.63878165618485,7.959183673469389,0.16585752551020402,0.02631324810691893,0.6415816326530612,4.3520408163265305,1.2758319646308092,37.587432524234686,0.20795651148667732,0.1534963010204081,2.4282879818594103,0.1072606683673469,46.95163943750852,0.16836734693877517,-0.003568622448979545,-0.016890277192155672,0.25510204081632654,1.8877551020408174,-0.24253147538016603,0.7534727499999988,-0.026248473367346977,-0.0011399234693877543,-0.12996031746031741,-0.004447479591836723,-2.3316960162036415,1.5724097331240192,0.039548587127158565,-0.001792258739357212,-0.026883830455258956,1.1273547880690735,-0.13808872656127977,7.277416089776295,-0.0073775854746677,0.03754683084772371,0.2962236176521892,0.023245936028257457,2.5303917726037866,0.3701814058956919,0.026469160997732465,0.009387030659386786,0.016652494331065797,0.5130385487528345,-0.12252717661010007,1.5885297332057826,-0.02108826702554089,0.023029492630385496,0.009432476694381417,0.016076742346938785,-3.283546120200472,0.6106306929551485,-0.028289426236596273,-0.007951828543952376,0.0020826127060994013,-0.40066874207310055,0.07238351492822201,3.0778708952568326,0.017037724996285374,-0.02092134137553327,-0.24620789935559906,-0.02258012357315805,7.15031458078679,-0.9472789115646263,-0.014383290816326385,5.240521474486907e-05,-0.05272108843537413,-0.8690476190476188,0.1049960968289965,-4.399706783163267,0.015610848691985537,-0.015454421768707444,0.15244708994708975,-0.005701591836734612,-0.9720666358566806,-1.1880623217028745,-0.005890282806670974,0.00735106056910865,-0.11316381391266182,-0.7103357472021065,0.028986920281747645,-5.6474343099489825,-0.01005534480889313,-0.008725640498134709,-0.32743886084899915,-0.0006930800416940556,-5.899521900694611,-0.7937074829931973,-0.024554846938775486,-0.005774359959969923,-0.03860544217687075,-0.44251700680272105,-0.14142035866100636,-3.711731069472791,-0.021036818162498735,-0.02163689625850339,-0.17567554799697654,-0.016497682653061205,-4.062081526996931,-0.3635954381752702,0.006148120498199291,1.1196335046365402e-05,0.04985744297719085,0.17316926770708282,-0.03240263333917017,-1.7910328545918368,-0.010177509137356391,0.004158846038415372,0.20555305455515532,0.006178125750300123,-3.203534696705035,,,0.45384615384615384,0.8461538461538461,0.23076923076923078,0.0,0.6153846153846154,-0.38461538461538464,2.0546156082531692,0.03927815010234289,0.04038071420490699,1.2775464716789826,0.14742225307339923,0.312199770700836,3.3321620799321514,0.4596220237742352,1.928100776039052,1.348990960774969,0.1540707825954133,0.4250390326686701,0.0,0.5791098152640834,6.610899762142871,3480.0,1050.1494000000002,468.0,1146.0,28095.04743234741,13666.308605999995,209.45343343641002,1055.1894,943.6666666666665,1313.3903279999997,31022.368717936053,3714.0,1067.124,570.0,996.0,25017.643542821395,13791.595470000004,269.26051583999975,1088.0250000000005,515.6666666666667,1310.3177519999995,39065.01532140351,5661.0,1942.0139999999997,948.0,1467.0,49553.13173499279,20802.05259900001,400.55916178148686,1965.3867,954.6666666666663,2420.1763799999985,56563.49456629431,7314.0,2750.328,1128.0,1776.0,70093.71013371805,26241.91009199999,508.1114956142221,2772.0654000000013,1483.666666666667,3419.2831680000018,71359.7371997143,8187.0,3375.2220000000016,1305.0,1776.0,89212.43218583039,29175.766613999996,554.1472337448027,3391.8269999999998,1845.6666666666658,4226.036904,79989.64321460434,9144.0,3415.4159999999997,1344.0,2136.0,82960.30368723984,32572.904489999997,580.62003253494,3426.0263999999997,2539.333333333335,4199.225111999998,85898.04098110554,9384.0,3602.8914,1464.0,1884.0,89616.24375559615,33097.08585599998,688.2568171949401,3632.447399999999,2023.666666666666,4467.299232,96596.116097846,10002.0,4435.643999999998,1644.0,1788.0,117528.51015992115,34483.041726,803.4103589113499,4475.667,2218.666666666666,5586.949943999997,108884.88668494053,10188.0,5007.468,1656.0,2124.0,136109.56883888584,34517.42721,823.255647272478,5035.7664,2985.333333333335,6333.799319999999,108233.24583144682,1337.1428571428573,27.864064285714278,4.42062568196238,107.78571428571429,731.1428571428571,214.33977005797593,6314.688664071427,34.93669392976179,25.787378571428558,407.9523809523809,18.01979228571428,7887.875425501431,28.285714285714228,-0.5995285714285635,-2.837566568282153,42.85714285714286,317.14285714285734,-40.745287863867894,126.5834219999998,-4.409743525714292,-0.1915071428571427,-21.833333333333325,-0.7471765714285694,-391.72493072221175,490.591836734694,12.339159183673472,-0.5591847266794502,-8.387755102040794,351.73469387755097,-43.083682687119286,2270.553820010204,-2.3018066680963223,11.714611224489797,92.42176870748303,7.252732040816326,789.4822330523814,159.91836734693888,11.434677551020425,4.0551972448550915,7.1938775510204245,221.63265306122452,-52.93174029556323,686.244844744898,-9.110131355033664,9.948740816326534,4.074829931972772,6.945152693877556,-1418.491923926604,324.24489795918385,-15.021685331632622,-4.222420956838711,1.105867346938782,-212.75510204081638,38.43564642688589,1634.349445381378,9.047031973027533,-11.109232270408167,-130.7363945578231,-11.990045617346924,3796.8170423977854,-477.4285714285717,-7.249178571428498,0.02641222823141401,-26.571428571428562,-437.9999999999999,52.918032801814235,-2217.4522187142866,7.86786774076071,-7.789028571428552,76.83333333333323,-2.8736022857142443,-489.92158447176706,-662.938775510204,-3.2867778061224038,4.101891797562627,-63.145408163265294,-396.3673469387754,16.174701517215187,-3151.268344951532,-5.610882403362367,-4.868907397959167,-182.71088435374153,-0.38673866326528306,-3291.933220587593,-571.469387755102,-17.67948979591835,-4.157539171178344,-27.795918367346943,-318.61224489795916,-101.82265823592458,-2672.4463700204096,-15.14650907699909,-15.578565306122442,-126.4863945578231,-11.878331510204067,-2924.69869943779,-296.6938775510205,5.0168663265306215,0.009136209397834168,40.683673469387735,141.30612244897958,-26.44054880476286,-1461.482809346939,-8.304847456082815,3.3936183673469436,167.73129251700675,5.0413506122449006,-2614.0843125113083,0.7761261571473869,0.6342669856580978,0.45962202377423533,0.3449866186184182,0.312239002748033,0.20651815721732714,0.19110103778928414,0.0955889329538648,0.12695892892423025,0.0498675291856028,0.08138651446029159,0.02610289502545146,0.04748297676690254,0.01637019140025775,0.032053667164533596,0.00904732768634524,8.047261498198392,5.801767839714379,3.5778763574993313,2.2973099335389198,0.4947184343786957,-0.48217650418037716,3.1973702715859305,0.9772155662041111,6.0460498593290675,0.9871601571039914,14.546279910498193,11.064000519673764,16.03097320814208,11.815122750305802,1.9301132885879053,0.7402410080661384,3.525149833142131,2.345951503655183,7.020342749395639,1.2032229404099484,3.737660546938753,2.5416971157112096,20.82001790737357,14.699769250146392,0.20364199913021405,0.34370565124671143,0.45456173907048836,0.5181779635249152,0.5718775449314027,0.5861787940035913,3.82263945130498,1888.6432047000212,0.0,12.0,21.0,0.0,0.0,12.0,0.0,9.0,0.0,5.866661481052302,4.817325175260079,3.9868076504505208,3.5102042422948196,3.1078948670630187,3.000752009920161,,,,,,,22.0,3096.0,197.3949078206502,57.53444620886186,0.0,0.0,0.0,20.771211599071872,124.62726959443118,0.0,31.900731624037984,28.421177722800294,35.4,66.0,18.0,0.0,48.0,0.0,0.04615384615384617,-30.0,0.14880952380952428,0.0,-0.14880952380952428,0.043406593406593696,0.21400000000000058,0.0,0.5821428571428561,0.9076923076923088,0.4333333333333318,0.5821428571428561,0.8642857142857151,160.2600174437472,3.0636957079827454,3.1496957079827452,99.64862479096064,11.498935739725141,24.351582114665206,259.9086422347078,35.85051785439035,0.4999999999999994,0.40960451977401136,0.0,0.46610169491525427,0.7777777777777778,,,,,,,,,,,-8.642096206953394,0.9010149572649572,0.7135015043698117,1.7873157021402368,1.1343605036447977,0.39155920281359907,1.6846565864003173,0.9140412647964371,1.5314252723339907,0.7018635639306385,0.5988130325668262,0.7271236541762579,1.300422598239744,0.7613679322813938,0.6048994345527207,1.1916440679394171,1.5195748585410611,0.6764436228093909,1.3220481208514756,0.7708914289020037,1.2029003821025332,0.6013061984556762,0.5053602748172028,0.6170356128765074,1.0502507155392986,0.97225857668566,0.9070485222175995,1.007514305590594,1.162027833001988,0.9532925730537103,1.2353556547389182,0.976404568031902,1.1761965012969795,0.9058445735281415,0.8964258848553236,0.9243988521866177,1.1047234237298604,0.9920891882756289,1.4228324319007783,1.8113374974601268,1.0941881666685387,1.3136774384414818,0.9477283061398574,0.9812783281052698,0.8537156638357202,1.3698865713694077,1.2607846053166392,1.4767459662516664,0.7900257917214978,1.271977386039886,1.6573558176613723,1.6065565202281045,1.3372542522641926,1.6219796144327214,0.9840282085509133,1.2584814717458397,0.920252255493689,1.6264835030499882,1.666889177463912,1.7022163933404886,0.9755667280546568,1.1918567916551785,1.1982060856415226,0.9735787185685374,1.4827308550132894,1.2894086651791907,1.1375480977405525,1.1910658546194453,1.1584133506010041,1.2006118694826207,1.3941277963746026,1.2039140134157749,1.1742401958285371,1.0948967236467237,1.1397665768001062,1.3517057907318526,1.129749282085266,1.112544776605445,1.1892061422059461,1.0948634175630139,1.1555461255803756,1.1295448567077713,0.96716393168878,1.1488549278716647,1.1150042005877228,1.054704389768728,1.0115573980389456,0.9860508516098364,0.8259511558102365,0.9757789692664876,1.0067976308029394,1.0553121057031734,1.0194890013627538,1.0180805260393737,1.0481109326828668,0.9933300012735482,1.0446124050022043,22.5,1.2892561983471071,12.666666666666671,7.875,6.240000000000001,4.5,3.551020408163265,2.4375,2.0,1.7400000000000002,,,,,,,,,0.0,0.7777777777777778,1.525655941726459,2.5749922475186824,3.40550977232824,3.882113180483941,4.284422555715742,4.3915654128586,0.2884615384615383,0.007409518381305214,0.11411411411411417,0.05965909090909091,0.04160000000000001,0.027777777777777776,0.021137026239067054,0.014008620689655171,0.012345679012345678,0.01035714285714286,0.5968705084420373,76.01282051282051,36.09707004301599,24.862258953168045,458.99406161653525,0.0,5.226026877217945,822.771482194866,,716.7898928287278,698.1562134398615,716.3756771542243,717.0516172831697,1196.4293680921605,710.4109837945758,717.7588150742217,982.7589830236517,0.021153846153846106,-0.02151619251524401,-0.6418925221061729,0.3976143141153082,0.43376318874560404,-0.19009672284731322,0.02004586904184513,-0.1262209737011701,-0.007426390485046254,-0.05351931831446246,-0.04146421665586653,-0.04966165280143352,0.19755917159763314,0.2384491569224902,-0.06811240984293182,-0.04190243156445929,0.2590404905762467,-0.10823425842073088,0.19361301374027462,-0.03547657835729921,0.24461065574949373,0.12198866850436833,0.2167237663357145,0.053893576516570334,0.046509971509971534,0.15958974979464532,0.35674161628561984,0.02595537883808267,0.11788459033476618,-0.0960370801225035,0.04226225699724423,-0.10140710129623377,0.15003288338084195,0.0038844143548240513,0.14988478620960174,-0.06993464252874049,0.07672026655077506,-0.17056462255525348,-0.30219866858099836,0.003246060360997874,-0.09206456441539004,0.056734363877744526,0.08188563805927312,0.08192926912691019,-0.13629866802296217,-0.10139155701255441,-0.21051634226094434,0.15229105237749332,-0.11901709401709407,-0.08672076091863244,0.001991590492056714,-0.08217362491716365,-0.19968737788198512,0.08229617985733685,-0.11705260209849486,0.07506785231385094,-0.10068269831891717,0.06277965837905132,-0.05315640787551099,-0.020703571749618614,-0.14926936862420728,-0.035514112419991375,0.2793672806655796,-0.17638256482609713,-0.1632189993571077,0.022720014143975197,-0.15024794008762823,-0.048353113528437526,-0.05684593335558354,-0.13484350426932054,-0.006461642018865586,-0.12565103096233157,-0.0997222222222222,-0.14804783119271123,-0.21944687088826503,-0.06017229953611663,-0.10168034388432982,-0.11084559924937258,-0.09874925793560478,-0.1011596992664808,-0.14096037568766337,-0.07234543402980428,-0.15380924717492767,-0.08651628730458841,-0.04568250377073907,0.03706868578490302,0.0004255018232971924,0.0777102093322418,0.03979035928556651,-0.02539725781878071,-0.04764977904348905,-0.04894056485463025,0.027094112436380036,0.08464937276416343,0.05759917259830271,-0.06823051836068177,,,0.0,14.736476680166033,25.649565760108477,29.305535572714618,31.796881350503586,33.59501634359439,34.63137348645153,150.39186053104606,105.22129494044759,12.017521042442237,33.15304454815627,0.0,45.17056559059851,,,,174.0,111.0,132.0,150.0,162.0,168.0,174.0,162.0,168.0,1110.6311600400024,78.0,5.937536205082426,6.762729506931879,7.635786861395585,8.481566013773087,9.35036314989601,10.202739930102645,11.069400170037524,11.924697310402873,12.790004668614655,0.5952380952380952,0.9867142857142859,1.1440560293369497,0.5507540706733115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6103057100085543,0.9707282913165268,1.0112111122671938,0.5702167645604955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,0.0,21.0,0.0,0.0,0.0,0.0,60.32190934683828,36.25104497488776,36.62379832648981,0.0,35.443078376109035,28.76722310443093,28.76722310443093,0.0,0.0,124.62726959443118,74.0323660145244,0.0,0.0,,,,,,,,,,,0.18181818181818182,,0.049620211582322035,,0.036217787456411056,,,18.0,0.11538461538461539,0.20638398684359624,0.3483335604047623,0.4606822972501787,0.5251550979834224,0.5795777305928016,0.5940715423456231,2.343300000000008,,5.357142857142858,6.256863657515122,4.467912858555309,5.341781494669613,-22.590387667195643,5.624082007343942,5.314484362613397,-9.097848374505034,281.4281999999996,85.95562393166216,0.0,31.900731624037984,53.26115441545253,218.27332449488074,0.0,0.0,0.0,0.0,5.056245805348308,0.0,6.398594934535208,0.0,7.892452043520352,0.0,9.456653425317034,0.0,11.059062865586538,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.76800000000003,0.0,164.66790360820778,0.0,0.0,0.0,0.0,0.0,-11.832055230806843,192.20141292860757,31.900731624037984,0.0,0.0,144.13375340519772,85.95562393166216,53.26115441545253,145.39848119350307,0.0,0.0,0.0,0.0,92.52668387311633,102.53135928143712,90.79106206802166,1645.5429643897323,,1434.8534524575944,1397.8737494369211,1434.214427094287,1435.3734141438817,2399.809624697305,1422.20215553759,1436.775550422873,1968.3173040086892,90.79106206802166,1645.5429643897328,,1430.4578480619898,1392.7399125897296,1430.5484473129086,1430.9904139431278,2415.449123851518,1417.5875241469485,1432.4149478689346,1974.615814421808,4.731683408817763,1111.7893922888572,,968.0081837742769,941.8643961418105,967.1238486277826,968.3743127877785,1639.6756529632726,959.0420737103877,969.3692876716126,1340.6074175184042,1.163987975231047,21.096704671663236,,18.395557082789672,17.921458326114372,18.387364449926757,18.402223258254896,30.766790060221858,18.23336096843064,18.42019936439581,25.234837230880633,2.365841704408881,822.771482194866,,716.7898928287278,698.1562134398615,716.3756771542243,717.0516172831697,1196.4293680921605,710.4109837945758,717.7588150742217,982.7589830236517,163.0823529411765,0.0,32.12065779041715,0.0,0.0,0.0,0.0,169.88346686088857,0.0,15.128663590504276,33.50052855928295,0.0,-23.585698317605335,0.0,0.0,0.0,0.0,95.79641644616325,,256.3101982100451,432.59869758313863,572.1256417511443,652.1950143213021,719.7829893602446,737.7829893602448,1557.0,240.15482381623667,,117.86300907430744,332.3999999999999,332.3999999999999,0.2222222222222222,7.61085279039525,7.285402218862249,8.062066979506383,8.809647951381192,,8.802647461508089,8.801005901383842,8.802757228396603,8.802670039846198,8.821246592197,8.802107746510012,8.802728519229087,8.816577330099596,0.10335983307059465,0.11294420450488708,,0.11285445463471909,0.11283340899210054,0.11285586190252055,0.11285474410059229,0.11309290502816666,0.11284753521166682,0.11285549383627035,0.11303304269358457,4.141293706406912,4.229971212729565,,4.229176257832699,4.228989755622599,4.22918872751351,4.22917882277799,4.231286930710902,4.229114943149039,4.229185466124653,4.230757470588491,874.8000000000034,722.6994546810142,710.2305145712712,,710.3336570864685,710.9609431699886,710.5579255212606,710.3257653059766,702.6952061690224,710.5532345384089,710.3012134623599,704.7547134731356,9.265377624115567,9.1055194175804,,9.106841757518827,9.114883886794725,9.109716993862316,9.106740580845853,9.008912899602851,9.109656853056524,9.106425813619998,9.035316839399174,8.637117177426308,8.619713319447765,,8.6198585329023,8.620741229739588,8.620174205736738,8.619847422877806,8.609046969853953,8.620167603884633,8.619812858077916,8.611973551816584,33.50052855928295,164.66790360820778,15.128663590504276,0.0,-17.793769786780132,-8.377441102164477,-9.246542659467572,32.12065779041715,0.0,1122.7503434285416,,,,,,,,,,,31926.0,132.0,7.7602787773243245,4.699906061013293,0.0,0.0,2.590770275176027,0.9012929288806346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.53784025749617,49.47282488133163,35.850517854390354,26.908956252236617,34.658529305031664,22.92351545112331,25.225336988185507,12.617739149910152,19.043839338634537,7.480129377840419,13.184615342567238,4.228668994123137,7.977140096839626,2.750192155243302,5.577338086628846,1.5742350174240718,16.280937836358262,6.865064688920216,22.16171563085161,6.663963671831623,31.35308655185941,7.299884807305064,270.8698186415793,168.77825401632634,139.96889421586167,118.65591448465722,105.02704492223509,98.90808165464253,378.0,432.0,171.2273700000009,114.54063000000023,0.21428571428571427,78.24,39.66666666666667,17.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,168.0,0.0,0.0,168.0,0.0,12.0,12.0,156.0,12.0,78.0,156.0,0.0,0.0,0.0,54.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,90.0,18.0,6.0,1.0,78.0,24.0,0.0,6.0,18.0,0.0,1.0,9.0,0.0,0.0,0.0,0.0,0.0,4.51085950651685,5.43372200355424,4.912654885736052,5.1298987149230735,5.3230099791384085,5.484796933490655,5.3230099791384085,5.43372200355424,5.484796933490655,5.3230099791384085 +150610,C[C@@H](O)[C@H]1C(=O)N2C(C(=O)O)=C(S[C@@H]3CN[C@H](C(=O)Nc4cccc(C(=O)[O-])c4)C3)[C@H](C)[C@H]12,0,29.24561403508772,6.555057894736843,3.5789473684210527,9.270955165692008,162.57383296157153,115.90182371929824,1.553841012568,6.604059649122808,7.619455875628716,8.069215035087717,226.40064736859253,28.2,6.518050000000001,4.416666666666667,7.861111111111111,146.9385685663984,108.0146009666667,1.875095779533334,6.659800000000001,3.4782407407407403,7.94225153333333,274.57807763403866,25.132075471698112,6.400415094339623,3.9716981132075473,6.5408805031446535,152.02110501398843,94.98409607547168,1.6747166087244536,6.516749056603771,3.880328441649196,7.879817886792452,235.3796158845758,21.238095238095237,6.260397959183672,3.2176870748299318,4.668934240362812,157.41989495450937,77.81937763265307,1.4602617115634626,6.358202721088434,3.2353447551860244,7.83224911564626,195.87677137848138,20.857142857142858,6.344435064935064,2.948051948051948,4.569264069264069,160.01771721859126,76.34633061038959,1.3393481840634547,6.425981168831167,3.6531786115119447,7.93539216883117,184.59127264554326,20.67808219178082,6.511252054794518,2.9452054794520546,4.134703196347032,159.41221283372124,75.06635566438355,1.3318835819170272,6.581660958904109,4.256236259090141,8.067751205479452,187.43086842431376,16.49685534591195,6.264930188679246,2.647798742138365,3.19916142557652,161.13086240727856,57.788396905660356,1.2359356303366478,6.332869811320754,3.2519605559437847,7.860479861635222,165.73320895734525,15.69620253164557,6.178386075949369,2.5,3.6835443037974684,164.77974334434955,55.57228480379743,1.1306575408259936,6.229538607594936,3.9252226910454753,7.797603189873417,149.27655071644062,16.1796875,6.355678906250001,2.4921875,3.583333333333333,165.4946819135257,56.977823062499986,1.1353961385294689,6.397128906250001,3.712287808641975,7.965758406250001,153.6820218121079,10.162511542012929,0.17721779008925817,0.0348951500576753,0.7423822714681441,4.639649806778153,1.5164077124598843,46.60116441982149,0.2711046688779341,0.16136885195444742,3.479196089036154,0.11711187442289932,48.270649044179514,0.17696214219759973,-0.017940158510310847,-0.016063627387989905,0.2356879039704526,1.0387452549502414,-0.018059204313837954,0.9423016064943056,0.02736288061023423,-0.015162536164973824,-0.1914718773867742,-0.01249842003693444,3.4887118755766795,0.6133904771860139,0.026696278100083036,0.003704778794128374,0.007865990696702092,0.669114767130412,-0.04928274788785704,2.805410675180172,0.010062593146178364,0.023007678995569027,0.6223555097631066,0.017682808629070193,0.0052041518164350495,-0.45073209339137305,0.0017679600002512375,0.0022632000303070793,-0.05244313791998793,0.13086112664004762,-0.022651521706874914,-1.9919642618074005,-0.014581893321583635,0.0010561629638004722,-0.00854926654521493,-0.0004661766069308557,-2.034853452828338,-0.05633701478576834,-0.0044594510598665775,-0.001984707596675782,-0.14292909306759716,-0.15291529372785143,-0.11676141510623576,-0.09269880009033811,-0.02653878103319092,-0.0013870451647460093,-0.14252813938899686,-0.005197009875166386,0.3624815145352586,-1.0207187037528935,-0.01832072207676121,0.0028582523881715513,-0.11296626570029976,-1.1393026680027525,-0.134372714872473,-5.00088489338553,-0.03498340860090769,-0.01736283176699256,-0.15214034672455234,-0.0072585581527719835,-7.25495501492699,-1.537883935260196,-0.033978465362346603,-0.004872126390564724,-0.023746058293698507,-0.7010226659001029,-0.153915656658312,-7.249116766285128,-0.02711194554939401,-0.03188399042956613,-0.557953051236584,-0.02049920444607048,-7.591846334479864,0.5507907009362178,0.0287720389136287,0.0037297922398187855,0.006784950383954538,0.6056187795963617,-0.0397114820253017,2.6984620202184892,-0.0010282165823370726,0.026143550888101854,0.5245541162072944,0.017005808899330274,2.0074608784027914,-0.571913954293629,-0.01481610423399508,-0.0016845678256911937,0.02612101800554014,-0.35431842276255937,0.09575571265013168,-2.5053041456986773,0.014155087816865773,-0.014609627721991376,-0.5131772584162225,-0.012285487361495841,0.43431719155361204,,,0.46565656565656566,1.0606060606060606,0.4090909090909091,0.015151515151515152,0.6515151515151515,-0.24242424242424243,1.1176624126225725,0.024820656184851703,0.035244898609094126,0.9081584763621645,0.19441951871500696,0.27816023608114426,2.025820888984737,0.4725797547961512,2.0172254705395707,1.394948010308703,0.19148564312228628,0.36786747038184664,0.0,0.6222774602308678,8.318141134875626,1667.0,373.6383000000001,204.0,528.4444444444445,9266.708478809576,6606.403952,88.568937716376,376.43140000000005,434.3089849108368,459.9452569999999,12904.836900009774,1692.0,391.083,265.0,471.66666666666663,8816.314113983904,6480.876058000003,112.50574677200004,399.588,208.69444444444443,476.5350919999998,16474.68465804232,2664.0,678.4440000000001,421.0,693.3333333333333,16114.237131482772,10068.314183999999,177.51996052479208,690.7753999999998,411.3148148148148,835.2606959999999,24950.239283765033,3122.0,920.2784999999998,473.0,686.3333333333333,23140.72455831288,11439.448512000003,214.658471599829,934.6557999999998,475.5956790123456,1151.3406200000002,28793.885392636763,3212.0,977.0429999999999,454.0,703.6666666666666,24642.728451663053,11757.334913999997,206.25962034577202,989.6010999999997,562.5895061728395,1222.050394,28427.055987413663,3019.0,950.6427999999996,430.0,603.6666666666666,23274.1830737233,10959.687926999999,194.45500295988597,960.9225,621.4104938271605,1177.891676,27364.906789949808,2623.0,996.1239000000002,421.0,508.6666666666667,25619.80712275729,9188.355107999996,196.513765223527,1006.9262999999999,517.0617283950618,1249.8162980000002,26351.580224217894,2480.0,976.1850000000003,395.0,582.0,26035.19944840723,8780.420998999994,178.643891450507,984.2670999999999,620.1851851851851,1232.0213039999999,23585.69501319762,2071.0,813.5269000000002,319.0,458.66666666666663,21183.31928493129,7293.161351999998,145.330705731772,818.8325000000001,475.1728395061728,1019.6170760000001,19671.298791949812,579.263157894737,10.101414035087716,1.9890235532874923,42.31578947368421,264.46003898635473,86.4352396102134,2656.266371929825,15.452966126042243,9.198024561403503,198.31417707506077,6.675376842105261,2751.426995518232,10.617728531855985,-1.0764095106186509,-0.9638176432793943,14.141274238227156,62.324715297014485,-1.0835522588302773,56.538096389658335,1.6417728366140538,-0.9097521698984294,-11.488312643206452,-0.7499052022160664,209.32271253460078,65.01939058171747,2.829805478608802,0.39270655217760764,0.8337950138504218,70.92616531582367,-5.223971276112846,297.37353156909825,1.0666348734949067,2.438813973530317,65.9696840348893,1.8743777146814404,0.5516400925421152,-66.25761772853184,0.2598901200369319,0.33269040445514064,-7.709141274238226,19.236585616087,-3.329773690910612,-292.8187464856879,-2.1435383182727943,0.1552559556786694,-1.2567421821465947,-0.06852796121883578,-299.12345756576565,-8.675900277008324,-0.6867554632194529,-0.30564496988807044,-22.011080332409964,-23.54895523408912,-17.981257926360307,-14.275615213912069,-4.086972279111402,-0.21360495537088542,-21.949333465905518,-0.8003395207756234,55.82215323842983,-149.02493074792244,-2.6748254232071367,0.4173048486730465,-16.493074792243764,-166.33818952840187,-19.618416371381056,-730.1291944342875,-5.107577655732523,-2.5349734379809137,-22.212490621784642,-1.0597494903047096,-1059.2234321793405,-244.52354570637118,-5.40257599261311,-0.774668096099791,-3.7756232686980624,-111.46260387811635,-24.47258940867161,-1152.6095658393353,-4.310799342353648,-5.069554478301014,-88.71453514661685,-3.2593735069252063,-1207.1035671822983,87.02493074792241,4.5459821483533345,0.5893071738913681,1.072022160664817,95.68776717622515,-6.274414159997669,426.3569991945213,-0.16245822000925747,4.130681040320093,82.87955036075252,2.686917806094183,317.17881878764103,-73.20498614958451,-1.8964613419513703,-0.2156246816884728,3.343490304709138,-45.3527581136076,12.256731219216855,-320.6789306494307,1.811851240558819,-1.8700323484148962,-65.68668907727648,-1.5725423822714677,55.59260051886234,0.7280065172279793,0.5686381680916818,0.4331981085631387,0.3186456319680064,0.27970549964313424,0.1832269652431327,0.16436477376272904,0.10507106459907846,0.1033903002140262,0.06023095189745221,0.06633320617178691,0.03641818141206954,0.04007982490137446,0.02095923835636891,0.0261758681514279,0.0131177303588983,16.002004959048964,5.6932985936328615,3.5588822609490984,2.192185991080171,0.4801633773741725,-0.6265632028501794,3.291883826395498,0.9715287913816041,7.004124772488254,0.6593657619705443,14.544364852001245,10.337499125153876,32.06099954886138,11.705089735137435,2.9165542420397745,0.7404253765036521,3.505083779889554,2.241877680974138,8.001941561539871,0.6236043391045092,3.717936111091,2.4377770878819813,24.434241105296326,14.69977294100389,0.2879711031674767,0.6699842209492244,0.8673707062545097,0.9192460904530522,0.9192460904530522,0.9192460904530522,1.325901572364887,1056.1799760484157,0.0,4.0,3.0,0.0,7.0,5.0,1.0,2.0,0.0,4.079876624278858,1.7543859649122808,0.5528030702513504,0.23701359656713805,0.23701359656713805,0.23701359656713805,52.00629646890985,2603.8962789670604,136.34808913372808,45.68239085907124,105.14178576081024,,16.0,893.0,30.00232383896136,34.4977309208094,40.28453516874736,23.558100817412193,0.0,41.78463308531705,6.06636706846161,6.923737199690624,10.633577208012662,0.0,15.366666666666667,35.0,13.5,0.5,21.5,0.0,0.03434343434343433,-8.0,0.2095265044331256,0.043256860098965566,-0.16626964433416003,0.06562926562926552,0.20063697104677036,0.0,0.6514619883040925,0.9070707070707067,0.4419354838709669,0.608205128205127,0.8414414414414412,36.88285961654489,0.8190816541001062,1.163081654100106,29.96922971995143,6.415844117595229,9.17928779067776,66.85208933649632,15.59513190827299,0.5133630289532296,0.21691973969631237,0.0,0.48156182212581344,0.45454545454545453,0.46447226536060954,-1.9011753176748842,-0.13802950836365346,-0.03335395294166463,-0.10006185882499388,0.5355277346393904,1.6564914384242393,0.04826096253065238,0.029061253305688414,0.043591879958532614,-2.2387571389289764,0.7290871645768974,0.7380293465948662,1.297428894531142,0.9043117744610283,0.4756582244891942,1.2236811858394399,0.7294221234518019,0.9396304607160203,0.7185977767155957,0.6313189448906863,0.7494232388168217,0.9014417808044471,0.8490943190506721,0.5232176126521043,0.6489737512241859,1.1985356237679528,0.6248244187670124,1.189527320874573,0.8443183881132312,1.0515931261569482,0.5303050082116492,0.42985841136152364,0.509015299625334,1.001372729792979,1.2173100386802003,0.7625636769084813,0.6970104619593145,1.1208244491826582,0.8291627881509063,1.1122397417353922,1.193467655838783,1.2588530853974198,0.7728305396729243,0.6901418652013181,0.7545683936794519,1.0743931743546855,1.2046652239274442,0.9522825187232775,0.9877316904452172,1.2632293080054275,1.0130800590746931,1.122348116695623,1.1793853483480385,1.2662097989532344,0.9374246054566813,0.954075180273459,0.963003964523595,1.0037638591140388,1.0942101319579107,1.1276310874482207,0.8809729985258852,1.2010154705922442,1.2178169835226285,1.11356326182277,1.0963053539104315,1.1361391930516052,1.122004468311564,1.0724158337056666,1.0974877608933826,1.1068658511792238,1.1105411913684586,1.1258158546882036,1.0371252714318837,0.9654870302575174,1.0786637301603639,1.0708159035602867,1.1176195741485724,1.0664841490122,1.1366597066115858,1.037741687649099,1.1022894260836202,1.1490861618930015,0.9997860775595359,0.7727956785860288,0.7474411769376755,0.8878392845897097,0.8085896956942171,0.9561775484316071,0.9957712269579853,0.9928443300439376,0.7886054891248339,0.6906948428075036,0.7645612906802745,0.9784806497778598,1.074749000545157,1.1734879353350913,1.040010791603561,0.863300684079602,1.0930421599050624,0.8633380219343114,1.0738782067685115,0.8857943859360025,1.1820150133781588,1.2009753537051961,1.1898217977601264,0.9637238927320655,7.5,0.2129435771860015,3.7777777777777795,4.166666666666666,3.226666666666667,1.323611111111111,0.9308390022675735,0.5625708616780045,0.40895061728395055,0.3384645061728396,7103.4528660478645,7872.918297642362,3223.996501748937,2965.3233437039175,18.398812144910835,0.47090870085274245,9.734651420517213,0.8900329708912458,1.0,0.45454545454545453,1.7530133898858824,4.0785040492524605,5.280086943913391,5.595876417597603,5.595876417597603,5.595876417597603,0.20833333333333334,0.008190137584076978,0.07264957264957268,0.07716049382716049,0.05866666666666668,0.025953159041394336,0.02164741865738543,0.013721240528731818,0.012027959331880899,0.011282150205761317,0.509632131825964,26.074074074074073,10.545953360768175,5.12,193.57483817661853,1.0,4.440183808947619,217.05111670496564,,171.05223606186948,189.63430101861942,191.2038793881855,171.06342048607752,218.6409095679828,189.77260658796155,188.83438580131278,211.81629811487932,0.017413229147737637,-0.101232266248637,-0.46033982835550685,0.31747512437810965,0.22388440899843745,-0.011909201044976683,0.02022055925481347,0.10093105634619104,-0.09396197581708045,-0.055033367619074874,-0.10672205614096616,0.07227397900499848,0.060358157985867064,0.15064107326153367,0.10616887412735157,0.010595606871303937,0.14421665319500823,-0.03249966844860715,0.06020044155778455,0.037117004247201234,0.14257819100097352,0.1788791128284806,0.15099074040277344,0.00010781192959870855,-0.04435243114145528,0.009976199338456823,0.06485715139686815,-0.07064168951162553,0.02820495772091896,-0.01493761969208802,-0.04274494611040518,-0.05378695019136387,0.006545023720554291,-0.0024572534362624398,-0.003980609218561892,-0.0421550878871744,-0.005543611394965209,-0.02516367604866596,-0.05687631643352797,-0.19252762163209916,-0.032958369725330255,-0.07699869510478015,-0.0019891949320242587,-0.09789127255916093,-0.008595495028604133,-0.040965825363548744,-0.04437645542585727,0.007509356549225159,-0.10043961077270429,-0.10337970057934776,0.08190973196697486,-0.15216724596197095,-0.2455579010162197,-0.08861252403847013,-0.10731244499243538,-0.1290402291694176,-0.10759716981746816,-0.04372859213195425,-0.06197969410480797,-0.15029744075508333,-0.15132912065117135,-0.19173281274545226,-0.13962187818398802,-0.03198629494039239,-0.15109387455836978,-0.10150018058707529,-0.1555565586511775,-0.1000054542092791,-0.19758454028393665,-0.16036838308563242,-0.17503950429523818,-0.15727665744729177,0.05419828540013845,0.16235412313367223,0.10688569138273143,0.00913942943510294,0.13053114024071422,-0.026187866032996217,0.05790546338946666,-0.0037926922711907667,0.16201113518166366,0.1507687703663211,0.1452099454741975,0.04158760899538498,-0.05627683195529712,-0.08360393291515907,-0.04827512771565421,0.03518540111940295,-0.07636749270277443,0.06314641627270466,-0.05376054819422202,0.05221263018247448,-0.09053561170600326,-0.14749880296582785,-0.10490385729061147,0.008997541987805158,4.388302137976169,15.752138714625804,20.653800650461967,19.254376376371553,41.59680359774355,47.47456055907055,48.31887634854424,48.31887634854424,48.31887634854424,66.56844052780583,46.0332843401872,6.319026223035447,12.139626522600938,0.0,20.53515618761864,14524.83423305464,13856.97492383415,1602.8620274909117,184.0,54.0,75.0,103.0,128.0,144.0,158.0,164.0,165.0,474.13404468791066,36.0,5.198497031265826,6.0844994130751715,7.011213987350367,7.926241523170962,8.860357273327022,9.789254458374703,10.729262592657507,11.66716471230384,12.61245400042269,0.7280701754385966,1.0101754385964912,1.1270428150694314,0.69308981386945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.678191322617922,0.9953904368765052,1.026929121784797,0.6485346110033889,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,0.0,0.0,0.0,2.0,2.0,2.0,0.0,1.0,6.0,1.0,0.0,0.0,0.0,35.647606307457075,5.697039313055833,0.0,11.814359458703011,0.0,9.589074368143644,4.794537184071822,0.0,11.761884949391115,19.056471336613846,31.040744451236847,28.30512327062975,30.074859380157466,339.952470641743,-1391.491579943729,-101.0253483127963,-24.412132981468925,-73.23639894440677,391.95876711065284,1212.4046990233317,35.322740820931784,21.270257877602315,31.905386816403464,0.5,0.587635012679562,0.13310234221734646,331.47526315754703,0.11410936241218202,83.22373083569924,0.4123649873204381,8.0,0.19444444444444445,0.3005394213895375,0.699225262151029,0.9052265568339349,0.95936600964675,0.95936600964675,0.95936600964675,-0.39399999999999924,,2.803571428571429,2.5324130933945637,1.8007875622512595,2.797718291570357,-8.706467373885037,2.306227050183599,2.2316086850284433,-3.593356355964998,116.81950000000003,34.4977309208094,0.0,10.216698334856808,11.835812092322787,43.70588209833365,11.861545009918906,40.431095592489314,0.0,0.0,4.290459441148391,0.0,5.6937321388027,3.044522437723423,7.285506548522785,5.53338948872752,8.97221007835365,7.773594467360194,10.716925732292228,41.50000000000001,5.777930963525472,0.0,0.0,0.0,0.0,0.0,0.29684566735331996,0.0,57.58,0.0,48.06973080480337,0.0,0.0,0.0,0.0,0.0,-2.6786206486173505,64.24144045895758,15.740104602853368,5.687386274683562,0.0,68.84827703707757,14.383611552215466,11.835812092322787,30.626284698076073,34.86764410079232,0.0,0.0,0.0,39.50611939055865,38.656905389221556,41.034158724062856,434.1022334099313,,342.1214820115557,379.115122455821,382.2986201362346,342.1456210570851,439.50049402751654,379.40544183954836,377.5335225914117,424.285933749025,41.034158724062856,434.10223340993133,,339.6577374228111,376.7366497282033,380.6363620229272,339.68702013418994,445.9882865098506,377.23898612573953,375.4371629175971,427.22595258572363,5.141209720108112,331.38138907866045,,260.344112603173,294.76668231871736,297.39026106953963,260.3544611243696,328.8867910234536,294.3951567104492,292.2597398416341,323.02145300521295,1.243459355274632,13.154613133634282,,10.367317636713809,11.488337044115788,11.584806670794988,10.368049122941974,13.318196788712623,11.497134601198436,11.440409775497326,12.857149507546211,2.6419734260600207,217.05111670496564,,171.05223606186948,189.63430101861942,191.2038793881855,171.06342048607752,218.6409095679828,189.77260658796155,188.83438580131278,211.81629811487932,56.737254901960796,0.0,3.388484635334553,0.0,0.0,0.0,19.708769467934495,58.534959941733426,0.8905186025027294,5.807343555981723,0.0,1.3512563521735597,-2.735784278774173,1.2813363636600812,0.0,0.0,0.0,36.96647282719317,430.096669476943,99.92176322349529,232.47473080739024,300.9649558030633,318.9649558030634,318.9649558030634,318.9649558030634,1244.0,148.8789449919481,301.81456827545287,86.31034033293089,184.4,159.1,1.0,7.9294865233142895,6.169925001442312,3.7774213227887117,5.661384402750602,,5.650382935694177,5.666812639706133,5.666071382856225,5.650370621035574,5.644773387160903,5.666087013895981,5.664953789679795,5.659946009053191,0.11446731281177915,0.1715571031136546,,0.17122372532406596,0.1717215951426101,0.17169913281382498,0.17122335215259316,0.17105373900487586,0.1716996064816964,0.17166526635393317,0.17151351542585427,2.5229640555681945,2.9275909249048078,,2.925645787563137,2.9285492834769005,2.9284184682581986,2.9256436081228827,2.9246525212755143,2.9284212269629766,2.92822120575758,2.9273368216054907,328.2300000000012,5782.748916526062,222.8111867900243,,223.53156529942933,220.94828992517284,221.18202050503436,223.53475603499857,225.56561252267153,221.11005626434203,221.30945524197145,222.84956925854283,175.23481565230492,6.751854145152251,,6.773683796952404,6.695402725005238,6.702485469849526,6.773780485909048,6.835321591596107,6.700304735283092,6.706347128544589,6.753017250258874,9.856556908175733,6.600247185274169,,6.6034751043185755,6.591851160373036,6.592908453194274,6.603489378422515,6.612533549716991,6.592583038179594,6.5934844405180755,6.600419434986949,0.0,49.933027851012156,36.42858482728007,0.2611017904228172,-4.083087792212554,4.860457073555537,-0.4348668346518765,3.8501933990869674,0.0,419.36329195373753,248.81503356438313,-1018.4483245986517,-73.94158772798565,-17.867514466643005,-53.60254339992902,286.879026383861,887.3726239189876,25.853110955055264,15.56794077050856,23.351911155762835,3464.0,54.0,2.942711271584862,1.6133890303784442,0.0,0.0,0.9342295612221232,0.3668369222564327,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.48556236094870275,0.27436426013822257,1.0624525122763375,0.5955271982144927,1.9198075315731018,0.8930450414039455,24.024215068523315,18.765059547025498,15.595131908272993,11.47124275084823,15.104096980729249,9.894256123129166,12.327358032204678,7.880329844930884,10.649200922044699,6.203788045437578,8.490650389988724,4.661527220744901,5.771494785797922,3.018130323317123,4.135787167925608,2.0726013967059314,6.763662773990808,3.5809340223113235,10.737211347534265,5.3821829452176235,17.35164309623126,7.811847364204189,109.7242957549962,45.570415793206635,29.063788147501796,26.476956644573256,26.476956644573256,26.476956644573256,180.0,219.0,64.55703199999999,33.72696800000001,0.3684210526315789,240.11,12.916666666666668,7.083333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,2.0,6.0,6.0,57.0,0.0,1.0,60.0,6.0,5.0,8.0,52.0,11.0,36.0,49.0,0.0,0.0,0.0,22.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,8.0,4.0,3.0,33.0,11.0,0.0,3.0,7.0,0.0,4.0,7.0,1.0,0.0,0.0,0.0,1.0,3.8066624897703196,6.134482053942907,4.33729074083249,4.8060681283549815,5.273640378835596,5.650073985330223,5.8072036109329765,5.998005607651363,6.023901485093797,6.0421873663055 +3191,CC(C)(C)c1ccc(C(=O)CCCN2CCC(OC(c3ccccc3)c3ccccc3)CC2)cc1,0,18.486486486486488,5.711958108108109,2.9594594594594597,4.972972972972973,160.15338457082044,72.4893299864865,1.474069071474473,5.807416216216216,2.797391141141141,7.300292918918918,208.66084616128688,21.506493506493506,6.023051948051948,3.5974025974025974,4.935064935064935,142.60004830672867,80.12772080519484,1.8467798453246753,6.187558441558442,2.5797258297258296,7.471402389610387,258.4219291435375,17.366906474820144,5.929057553956834,3.273381294964029,3.568345323741007,151.25762974950214,63.00019608633097,1.5554475379826191,6.054888489208633,2.3577138289368507,7.4480527194244575,211.5266617551403,14.020725388601036,5.838207253886012,2.7305699481865284,2.5958549222797926,154.9719659834418,48.65979759585493,1.3536874380905177,5.943940414507774,2.3310305123776627,7.4078090362694295,176.35282611106118,11.433035714285714,5.702107142857143,2.3794642857142856,2.0357142857142856,160.59213206549794,38.77117113839285,1.173817492018009,5.783877678571428,2.1653025793650795,7.332233267857142,147.65411380043616,11.742857142857142,5.645690476190477,2.433333333333333,2.0904761904761906,158.73126513321256,40.19022894761905,1.2295770839473332,5.738302857142859,2.0960317460317466,7.266765352380952,154.49611923591002,11.830097087378642,5.610310679611649,2.470873786407767,1.941747572815534,158.1376366074065,40.6201367330097,1.2477320703167087,5.708415048543689,2.002629449838188,7.225367281553398,156.5277269272893,11.969696969696969,5.7078181818181815,2.409090909090909,1.7575757575757576,158.1344050493326,40.551288095959585,1.2278265729750202,5.801795454545455,2.267746913580247,7.312618808080808,154.3218580013924,10.210526315789474,5.729731578947369,2.2157894736842105,1.4473684210526316,162.24206513339368,32.962423473684204,1.1216712305392107,5.803076315789472,2.216301169590643,7.364905684210527,137.2984621479607,6.70489408327246,0.06362777574872165,0.006793187978403734,0.5443754565376188,2.9211102994886775,1.380076989262359,32.20646483655953,0.24170124692163722,0.06556406135865589,0.6574966013310607,0.034936921110299474,53.75936427260952,0.3902270118486336,0.0040220312010853755,-0.001557558242347688,0.15955574739358536,0.903740525362147,-0.08502034028863775,1.8369676853779926,-0.002387572143431133,0.004656156261561717,-0.023520498604958084,0.0012843523189739474,0.9052004985439844,0.0592513571319715,-0.001888810164432276,-0.0009898429648865171,-0.0917213635957559,-0.08891119390827737,0.04722019346119737,0.28934348659815834,0.001686672305391035,-0.0012626225097350544,0.013501735134901568,-0.001364155020468643,0.7603068030560909,-0.856833587543572,-0.00572093497011919,-7.153878885948424e-05,-0.03989429143469191,-0.2136463588641155,-0.14856399999414327,-4.140096500052039,-0.03389617580784203,-0.006252690402207247,-0.008542109274237134,-0.002640568218547626,-7.306506686093487,-0.046230955859334254,-0.0016442393104977378,8.974867693592062e-06,0.014444524157361985,-0.017876708755087102,0.05978093674821557,-0.1952122149982396,0.006685834929316466,-0.0017817495825941695,-0.007671134122781087,-0.0008968547492956242,0.780113761131651,0.08583950746112912,0.001559759643813695,0.00010929788033738538,0.008648996486834324,0.04967477129639291,0.01902507359739946,0.41831527984973377,0.005454959299412855,0.0012523865177919231,-0.020815724025183484,0.0008397406657622872,0.8443057117874443,0.1511804378506031,0.0014150542171665092,-7.300984646797773e-05,-0.0553305864247874,-0.1785230520470615,-0.05054570611444718,0.7115800261405464,-0.0017746120783094718,0.0017044639627819833,-0.009284372111550015,0.0003140458275121073,0.2212009300969491,-0.5704414488198271,-0.001942272063217988,0.000500021180948272,-0.0656012277633899,-0.5602039385823171,-0.23923848934587338,-2.7836293785333237,-0.033088292378048355,-0.00236290110749569,-0.025816151942278077,-0.001074689333067709,-6.536460473655638,-1.2219637845526892,-0.015587228095805575,-0.0009953146865218103,-0.006750989965783724,-0.5794317788627887,-0.05545286252660986,-5.766933499575179,-0.011727017770619928,-0.016436422667333025,-0.19464147646935706,-0.007525312575448838,-5.504880395490952,,,0.48761904761904773,1.1428571428571428,0.5571428571428572,0.0,0.5857142857142857,-0.02857142857142857,1.0534813553563296,0.014749014604767094,0.02457758603333852,0.8524489245712323,0.21216482099016964,0.27063512333000883,1.905930279927562,0.4827999443201785,2.0412524997573005,1.8670477748001242,0.06362237816354721,0.11058234679362869,0.0,0.1742047249571759,6.341865939027042,1368.0,422.6849000000001,219.0,368.0,11851.350458240711,5364.210419000001,109.081111289111,429.7488,207.00694444444446,540.2216759999999,15440.902615935229,1656.0,463.775,277.0,380.0,10980.203719618108,6169.834502000002,142.20204809,476.44200000000006,198.63888888888889,575.2979839999998,19898.48854405239,2414.0,824.139,455.0,496.0,21024.810535180797,8757.027256000005,216.20720777958405,841.6295,327.72222222222223,1035.2793279999996,29402.205983964504,2706.0,1126.7740000000003,527.0,501.0,29909.589434804268,9391.340936000002,261.2616755514699,1147.1805000000004,449.8888888888889,1429.707144,34036.09543943481,2561.0,1277.272,533.0,456.0,35972.63758267154,8684.742334999999,262.935118212034,1295.5885999999998,485.0277777777778,1642.420252,33074.5214912977,2466.0,1185.5950000000003,511.0,439.0,33333.565677974635,8439.948079,258.21118762893997,1205.0436000000004,440.16666666666674,1526.020724,32444.185039541106,2437.0,1155.7239999999997,509.0,400.0,32576.353141125743,8367.748166999998,257.032806485242,1175.9334999999999,412.5416666666667,1488.4256599999999,32244.711747021596,2370.0,1130.148,477.0,348.0,31310.612199767853,8029.155042999998,243.10966144905402,1148.7555,449.01388888888886,1447.898524,30555.727884275697,1940.0,1088.6490000000001,421.0,275.0,30825.9923753448,6262.860459999999,213.11753380245003,1102.5844999999997,421.0972222222222,1399.3320800000001,26086.707808112533,496.1621621621621,4.708455405405402,0.5026959104018763,40.28378378378379,216.16216216216213,102.12569720541457,2383.278397905405,17.885892272201154,4.851740540540536,48.65474849849849,2.585332162162161,3978.192956173104,30.047479912344787,0.3096964024835739,-0.11993198466077198,12.285792549306072,69.58802045288532,-6.546566202225107,141.44651177410543,-0.18384305504419723,0.3585240321402522,-1.8110783925817726,0.09889512856099394,69.7004383878868,8.235938641344038,-0.2625446128560864,-0.1375881721192259,-12.74926953981007,-12.358655953250555,6.563606891106435,40.218744637144006,0.23444745044935386,-0.17550452885317255,1.876741183751318,-0.18961754784514137,105.68264562479663,-165.3688823959094,-1.1041404492330038,-0.013806986249880457,-7.699598246895539,-41.233747260774294,-28.67285199886965,-799.0386245100435,-6.541961930913511,-1.2067692476259986,-1.6486270899277669,-0.5096296661796919,-1410.155790416043,-10.355734112490873,-0.3683096055514933,0.002010370363364622,3.2355734112490846,-4.004382761139511,13.390929831600289,-43.72753615960567,1.4976270241668883,-0.39911190650109396,-1.7183340435029635,-0.20089546384221982,174.74548249348982,18.026296566837114,0.32754952520087594,0.02295255487085093,1.816289262235208,10.43170197224251,3.9952654554538864,87.84620876844409,1.1455414528766996,0.26300116873630386,-4.371302045288532,0.1763455398100803,177.3041994753633,31.143170197224237,0.2915011687363009,-0.015040028372403412,-11.398100803506205,-36.77574872169467,-10.412415459576119,146.58548538495256,-0.3655700881317512,0.35111957633308855,-1.9125806549793032,0.0646934404674941,45.567391599971515,-112.94740686632575,-0.38456986851716163,0.09900419382775785,-12.989043097151201,-110.92037983929877,-47.36922089048293,-551.1586169495981,-6.551481890853575,-0.4678544192841466,-5.111598084571059,-0.21278848794740637,-1294.2191737838164,-232.17311906501095,-2.9615733382030593,-0.18910979043914394,-1.2826880934989076,-110.09203798392987,-10.536043880055873,-1095.7173649192841,-2.2281333764177864,-3.1229203067932745,-36.98188052917784,-1.4298093893352792,-1045.927275143281,0.7050043239891727,0.6128874843362153,0.44468415924226967,0.3424828056546301,0.29746932646459545,0.20639556374687212,0.18993191241457802,0.10966973350941754,0.12407352732557227,0.06273167460866391,0.07987529277069141,0.035586764393323304,0.05154797050354502,0.02039721743837086,0.03552127764320299,0.012095116946664552,8.022095404389761,5.6855065948771015,3.54336587824325,2.185145455640501,0.3631668491555191,-0.40570915621757186,4.0221141060757315,0.9778557390118625,6.022017763454567,0.9898920932849999,14.543272860033042,10.945865857399534,16.01025763806992,11.69670551679432,2.0054521926437308,0.7527647186846481,3.4884574032918247,2.2350631557293315,7.008272038264835,1.1825553092311556,3.7015445922988572,2.431077752344218,20.91376610386798,14.702515272705483,0.19163824099750065,0.45676969008959784,0.6420566731741277,0.7502152942204703,0.7932737675975802,0.7932737675975802,1.1396348336648765,1006.7271730241747,0.0,0.0,6.0,0.0,15.0,6.0,4.0,0.0,1.0,4.974739007238212,3.2665120617653365,2.0727184992354317,1.3758586152449315,1.0984353042587056,1.0984353042587056,297.2076020983093,1660.6872900755307,45.56082335240002,22.441720136155823,43.35989583713851,,19.0,1151.0,0.0,4.794537184071822,23.406168191258324,6.4208216229260096,44.46018557821275,16.690354475090988,0.0,12.13273413692322,98.4675261514617,4.736862953800049,17.06666666666667,40.0,19.5,0.0,20.5,0.0,0.012380952380952286,-1.0,0.07390117390117418,0.04212690951821424,-0.03177426438295994,0.0,0.06835056746532109,0.0,0.5153153153153145,0.7552380952380948,0.4414141414141403,0.47318840579710025,0.7552380952380948,36.87184743747154,0.5162155111668483,0.8602155111668482,29.83571235999313,7.425768734655938,9.47222931655031,66.70755979746467,16.897998051206248,0.6456494325346789,0.10742187499999997,0.029296874999999993,0.22851562499999994,0.40625,0.3127320227255748,-0.6544761383285633,-0.026721520160485582,-0.008844272139575182,-0.023374147797448695,0.6872679772744251,1.4382936798197747,0.030693452888145484,0.01943640107864561,0.03126725390912554,-7.822703929322799,0.945831323051064,0.7535257111534063,1.2190335979204665,0.9884419505352076,0.6600684261974585,1.2162824658639482,0.9509721549557475,1.1259846179995474,0.7693172977593056,0.6660180820982419,0.7334867089708357,1.067370125140469,1.0140279540176556,1.146968645646432,1.4357625958549254,1.6752550324718416,1.1929160347640868,1.067518675661584,1.013419184814225,1.0286162154629712,1.1094747149520274,0.6906292627649397,1.1653143642928934,1.0055450949492526,1.1522588731769468,1.3351614585350877,1.3467006484987867,1.2112254989718996,1.1732340468536826,1.1443289772693916,1.1505215994782567,1.1451508169243019,1.2939608216284308,1.0282094878619625,1.397982127146769,1.1290860255238542,1.026621081895009,1.3393157024889792,1.2689850089132861,0.8939368979728757,1.0719259055835388,0.9221059929625502,1.0218207877519518,0.9391548539686883,1.2853976875551887,1.1766972061070389,1.4547720030948879,0.9495218234324907,0.9759578022297276,0.993169243966846,0.9291848116963481,0.8888132777431668,0.9584515176413153,0.9596609734484403,0.9753975924139247,0.9669960187802804,0.9940093531162272,1.0593119983761587,1.0209836902431288,0.9718044347048908,0.9470557001682822,0.8074321975697452,0.8892520062095983,1.033625583387343,1.0131282820705179,1.0250302793615231,0.9493676151780246,1.0024348254679498,0.8306349461691235,0.6948000066289785,0.771094626462561,0.9924842846947634,1.0852644816175705,1.1233839072216094,1.0861926829031412,1.0204747915247745,1.2058614401075018,1.176129084184979,1.0854590926088807,1.119340353182412,1.1095583319907663,1.406883889087124,1.1435807648176723,1.1026259808992493,1.2153655942339783,1.6869152017201947,1.481112401635582,0.8631525980331571,1.2877393690527899,1.0262850472022573,1.206604674552932,0.9891073092633097,1.6130973894016307,2.309090701448152,1.7690602243202076,1.0446743556233908,7.0,0.15671870217324763,4.000000000000002,1.875,1.3466666666666671,0.9652777777777778,0.6073469387755103,0.46701388888888884,0.27387251196775003,0.16250000000000003,6458.045807525406,7602.033016604145,3222.3405104407784,2832.442035607031,19.622565794952074,0.4758519450745837,10.285129694070134,0.9078578859599034,0.0,0.40625,1.2347143583907378,2.9429413038636136,4.136734866393518,4.833594750384019,5.1110180613702445,5.1110180613702445,0.18421052631578944,0.006268748086929905,0.07692307692307697,0.03605769230769232,0.028652482269503555,0.02053782505910166,0.012922275293095963,0.010860788113695091,0.008558515998992188,0.006018518518518519,0.3910104488863956,28.019390581717452,13.693047337278106,8.5,210.68385097940222,0.0,4.474693969786481,275.9862036422663,,237.4792453433537,234.81991174320564,237.259065096958,237.5161115639946,305.10188645528586,236.5615472221527,237.6182626973143,275.12265494226205,0.0582003245692101,0.0632118780478694,-0.22928237041273275,0.29309871611112825,0.3093825404403049,-0.06160550530885998,0.05703723444035802,-0.009878195391375933,0.07101689805472983,-0.03577280636484251,0.03676203506654505,0.01683800600680067,0.00883703103972862,-0.02968530869115324,-0.1457111106057028,-0.16848916036576964,-0.030437465481478305,0.03421562262728271,0.008984018831824933,0.006978335142548423,-0.01925784467237493,0.020535064527433526,-0.039046228949650846,0.014142778906399167,-0.127792262920487,-0.0899125405972427,-0.010530959703590368,-0.0732845152285719,-0.07313875100899579,-0.10764906679122999,-0.12854861659179562,-0.14023997078853145,-0.0953676491760185,-0.012991868333530802,-0.07558102244359424,-0.13591132977396767,-0.006895106065086459,-0.025841533687915724,0.0013211569769781314,0.026534120860689105,-0.006119833529811014,0.04331710275103424,-0.006061274218977373,0.02766156573236092,-0.02717570488575201,-0.011667184449701119,-0.02567068650566434,0.014511216263193802,0.012802515057662684,0.02451381688986719,0.016089335476193938,0.01588792511301736,0.017005441836649638,0.01378551613092848,0.012988550030951503,0.02256901596035798,0.01910172267915158,-0.03165905950394778,0.024035909263759647,0.015705277084491483,0.022547774203886664,0.02223956755544671,-0.010747508636605344,-0.10164048683734846,-0.06111479326142216,-0.036625279971853955,0.022094322669428415,-0.007342171796427782,0.025996924648368454,-0.01412079103185383,0.008988938278809176,0.00411464929114966,-0.0850783683880971,-0.030525537634513496,0.07360626300021322,-0.12050732077568706,-0.19177774241540188,-0.17335155299831828,-0.08643076452692366,-0.13689748315107378,-0.03603957806350468,-0.03926431237821594,-0.030760848377989678,-0.12158738411618412,-0.18224952838573175,-0.24497521581396375,-0.14651658244789065,-0.012401348893871742,-0.1983601163448757,-0.04018099204468948,-0.1790613632648306,-0.048518648207148,-0.25069256429098646,-0.296034194055631,-0.2153971310663194,-0.10239853967722044,35.42133027870411,28.401651275458143,4.113442219764365,10.200675956130684,25.3644244516428,31.592450964443053,34.93775242928282,35.21739512675694,35.21739512675694,71.44383749150552,65.34667211800435,2.2267832357241524,3.8703821377770042,0.0,6.097165373501157,16496.725608864224,15750.255144663175,1707.4365730356694,112.0,52.0,64.0,77.0,96.0,98.0,110.0,106.0,112.0,469.2980794880011,38.0,5.198497031265826,6.023447592961033,6.882437470997847,7.72356247227797,8.585412430393381,9.432923766431829,10.295698544965877,11.146445465339667,12.00935800344858,0.5720720720720722,0.9506486486486486,1.1190224121531014,0.5284221445656796,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6647428952904999,0.939692633810281,0.9815850081691305,0.6047730263338854,14.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,0.0,2.0,1.0,1.0,0.0,0.0,9.636772684650527,6.103966387748303,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,0.0,105.70035055753445,47.91256621917837,25.073785926448156,6.103966387748303,248.16398384390402,-519.3500953399742,-21.204476726102147,-7.018244531621275,-18.54821769071337,545.3715859422133,1141.3371947355563,24.356346626297874,15.423475604534548,24.81167814642514,0.47368421052631576,0.9616860511970061,0.17462957754339048,10.081988656153676,0.07761085136473168,54.180119842182975,0.038313948802993755,10.0,0.23684210526315788,0.1988442920314411,0.47394531057332867,0.6661995223752698,0.7784251633387423,0.8231027371364361,0.8231027371364361,7.217600000000008,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,143.98049999999984,9.53140013787187,0.0,4.899909730850478,0.0,64.0774213356693,19.634269217737724,107.18294492525057,0.0,0.0,4.343805421853684,0.0,5.652489180268651,0.0,7.152268856032539,0.0,8.729235349659273,0.0,10.344223274726211,42.33333333333334,29.201183657867926,0.0,0.0,0.0,0.0,0.0,4.50391759661659,0.0,70.348,0.0,12.651604142538769,0.0,0.0,0.0,0.0,0.0,0.24744675792371118,82.8076584993295,0.0,0.0,0.0,36.421390282701445,10.15185342319683,0.0,79.60680762938402,84.92913895846256,0.0,0.0,0.0,39.10323869786029,49.190974251496996,45.48903159708471,551.9724072845326,,474.9217559928298,469.6054188851546,474.5313366469237,474.9955927658932,611.2768810493158,473.08431581167736,475.2001109607114,550.6922353182679,45.48903159708471,551.9724072845324,,474.3456132388946,468.93484785543984,474.0251350276769,474.4210145058857,612.8865432574319,472.4831070036897,474.628122867793,551.3626234688834,4.7320008953750055,432.1601088496825,,377.34698925951284,372.6413083767939,376.3486155998078,377.4103767268565,496.26185474395277,375.69394403395796,377.595998159239,443.5808897770203,1.2996866170595631,15.770640208129501,,13.569193028366564,13.41729768243299,13.558038189912105,13.571302650454092,17.465053744266164,13.516694737476495,13.577146027448897,15.734063866236225,2.3660004476875036,275.9862036422663,,237.4792453433537,234.81991174320564,237.259065096958,237.5161115639946,305.10188645528586,236.5615472221527,237.6182626973143,275.12265494226205,69.5372549019608,0.0,6.587899880153554,0.0,0.0,0.0,0.0,72.63729060451566,6.581726764012829,0.0,6.665061918626549,0.0,0.218396509174134,2.482026224069875,0.11073654901607166,0.0,0.0,44.75320394870752,763.1320885919774,91.3688625209146,217.7776564859074,306.11838011312034,357.6860115284174,378.2153365413981,378.2153365413981,900.0,150.297782778082,30.403481194139776,71.22202208254038,29.540000000000003,29.540000000000003,0.9,8.104245470756966,6.247927513443585,4.817337667193474,5.832943961895263,,5.840461617018048,5.83917166790981,5.839920754299919,5.8404779429016065,5.861456735458698,5.840001394628583,5.840529932292743,5.854362801989518,0.13763821906267068,0.16665554176843608,,0.16687033191480136,0.16683347622599456,0.1668548786942834,0.16687079836861732,0.16747019244167707,0.1668571827036738,0.16687228377979266,0.16726750862827194,2.824984392751081,3.0162848091395036,,3.0175728062216303,3.017351917588911,3.0174801957742456,3.017575601524778,3.021161130859717,3.0174940041417395,3.0175845030496617,3.019950129902685,397.02000000000186,400.6347745335635,237.9654716802395,,236.598642009267,236.76240978967223,236.68970832426967,236.59663514551795,233.9345644363739,236.65811586427571,236.58986187473977,234.8375711673188,11.4467078438161,6.7990134765782715,,6.7599612002647715,6.7646402797049205,6.762563094979133,6.759903861300513,6.683844698182112,6.76166045326502,6.759710339278279,6.709644890494823,7.2458131940843735,6.724888554668377,,6.71912818041738,6.719820116462041,6.71951300424016,6.719119698237417,6.707804405585954,6.719379519058962,6.719091069902411,6.711657057137949,6.665061918626549,15.133630366608644,0.0,4.614654145632662,0.24744675792371118,29.201183657867926,3.7820617057760986,9.605961447564418,0.0,482.11477534349166,196.9269483199652,-412.1227738240808,-16.82650652086393,-5.569226673298391,-14.718670493717175,432.7717521958127,905.6916611425685,19.327627398007458,12.239076501926604,19.688949155273228,4676.0,52.0,2.790396285429178,2.016176118350301,0.28867513459481287,0.25,0.6869465955779315,0.31333997128215374,0.14433756729740643,0.08333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.3707908118985982,0.15647753012452648,0.32548144949465135,0.13681067510831513,24.675151339621042,21.451061951767535,16.897998051206248,13.014346614875944,15.468404976158963,10.73256931483735,12.155642394532993,7.018862944602723,9.553661604069065,4.830338944867121,7.668028105986376,3.4163293817590374,5.051701109347412,1.9989273089603443,3.9073405407523283,1.3304628641331007,5.084665212968486,2.6730225057410504,6.90884471662218,3.098869767558623,9.356752706308981,3.509190683368273,122.25043180967499,76.20844695785092,48.08718377626751,35.15355422179369,33.26967399901957,33.26967399901957,180.0,206.0,82.14892699999997,43.43907300000003,0.40540540540540543,254.03,10.45138888888889,7.666666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,18.0,74.0,0.0,1.0,77.0,18.0,1.0,10.0,67.0,19.0,38.0,58.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,3.0,0.0,1.0,35.0,3.0,0.0,1.0,2.0,0.0,4.0,9.0,0.0,0.0,0.0,0.0,3.0,3.8918202981106265,6.448073198808273,4.400603020246817,4.873287102945032,5.328482780879763,5.813943947255069,5.8522024797744745,6.158037746933798,6.141499626601553,6.3340564133976365 +2727,CCCNC(=O)NS(=O)(=O)c1ccc(Cl)cc1,0,40.266666666666666,6.49941,3.1,7.8016460905349785,164.20654184199122,163.35640810000007,1.7060326587679004,6.619033333333334,6.908306978102932,8.13410286666667,229.1935522537187,36.93333333333333,6.450960000000001,3.7,5.0814814814814815,147.7906451957833,143.27300593333342,1.9734224003333327,6.6454866666666685,2.782115912208505,8.007950600000003,271.8144845100376,28.470588235294116,6.530017647058825,3.0980392156862746,6.026143790849674,156.90126782913282,108.58917007843132,1.6421701769459796,6.652521568627453,4.605422415879933,8.07415423529412,219.718407380906,24.03076923076923,6.274535384615383,2.6,3.712820512820513,162.10290188889422,89.23489476923078,1.3869737224905538,6.405029230769231,3.3754273504273518,7.969208246153847,181.15302923942272,22.847457627118644,6.737101694915255,2.389830508474576,5.273069679849341,168.41350093559677,83.23822764406779,1.2407722652430342,6.804100000000001,5.683886098904931,8.383076711864407,169.13878979609558,24.3125,6.585774999999999,2.4583333333333335,3.9969135802469133,165.74128776941458,90.4317862916667,1.2782901546175207,6.653110416666667,4.307021366788601,8.230746187500001,173.20010868516988,26.142857142857142,6.83605,2.3333333333333335,3.169312169312169,166.84428220797392,97.12930076190476,1.2847418779379998,6.944576190476193,4.4669312169312185,8.529337428571429,179.71351112336401,17.83783783783784,6.310486486486487,2.2432432432432434,2.2462462462462462,161.21245264992226,61.5047271081081,1.3169969724390544,6.424391891891893,3.6232621510399285,8.007337351351351,170.5766317499748,16.714285714285715,6.088088571428571,1.9714285714285715,0.9650793650793651,161.98887945952262,59.47442997142855,1.1938244087169714,6.205637142857143,3.0271604938271603,7.786265257142858,151.7818556576179,17.226666666666667,0.164121,0.020068878291239985,0.6455555555555555,4.261673525377231,1.531185611661231,78.26500785,0.3406942371373655,0.16065822222222229,3.083707058967974,0.11803192888888887,50.988883175903474,2.693333333333333,-0.01773000000000003,-0.01803287887936323,0.09666666666666666,0.001481481481481639,-0.2471296584990818,11.528389450000008,-0.03285255143333315,-0.00857111111111115,-0.6058812490474016,0.004431611111111098,0.8184574122388876,1.1576470588235293,0.07203723529411755,0.010106635316959475,-0.007647058823529399,1.257264584846284,0.1851109584174632,5.3993008284313815,0.016891031290095934,0.05990426143790847,0.8571125855844548,0.043271886797385604,-1.600116622531,0.4000000000000002,-0.013511461538461528,-0.006106632071215465,-0.0070940170940170895,0.24467658541732623,-0.2237062405410445,2.0227110115384623,-0.012325948871275276,-0.009817401709401716,-0.22126004788070402,-0.01407807555555556,2.9486251247758335,-2.112542372881356,0.013853406779660907,0.0029410830337755103,0.011506591337099806,0.7237348585245639,0.07002551737845458,-9.193842088983049,0.0008892955143310157,0.00576053483992455,0.6530853808643842,-2.875939736345349e-05,0.5711936497258557,1.3524999999999991,-0.049351625000000086,-0.0009348283740731905,-0.08097222222222222,-0.6728189300411523,-0.14677158452814867,6.1467610833333355,0.03796113902408511,-0.04256169444444452,-0.6746261605827363,-0.037626001111111085,3.8102146708588855,-1.6742857142857142,-0.0590917142857144,0.0010586967294141342,-0.06142857142857145,-1.996300215559475,0.13250006840875295,-7.338381369047611,-0.015643435251452883,-0.04130711111111124,-1.1534885645819575,-0.02154630031746027,-3.7262494195561677,-5.435675675675675,-0.04738748648648647,-0.0028429001484028453,-0.12933933933933936,-1.2594490787083379,-0.0875865134065163,-24.337098682432426,-0.05459692116030702,-0.04987227627627627,-0.5419847124788252,-0.03699013789789788,-8.50109589703952,0.394285714285714,-0.019951285714285633,0.0017618881262237366,-0.050317460317460344,-1.921849892220262,0.005605901736088616,1.3335924785714226,-0.016993761958454166,-0.009254031746031635,-0.6928732085096394,0.008236434920634925,-8.741683545482566,,,0.49103641456582636,1.25,0.6470588235294118,0.029411764705882353,0.6029411764705882,0.04411764705882353,0.6694807609001128,0.02709929263741362,0.03215811616682538,0.8872817924548475,0.23846304250936712,0.22939140381634254,1.5567625533549603,0.46785444632570966,1.9389621748144876,1.167459129966653,0.2304645148595127,0.3070148703147383,0.10336653306295207,0.771503044847835,9.20111803186668,1208.0,194.9823,93.0,234.04938271604937,4926.196255259737,4900.692243000002,51.180979763037016,198.57100000000003,207.24920934308795,244.0230860000001,6875.806567611561,1108.0,193.52880000000005,111.0,152.44444444444446,4433.719355873499,4298.190178000003,59.20267200999998,199.36460000000005,83.46347736625515,240.23851800000008,8154.434535301127,1452.0,333.0309000000001,158.0,307.33333333333337,8001.964659285774,5538.047673999998,83.75067902424496,339.2786000000001,234.8765432098766,411.78186600000015,11205.638776426205,1562.0,407.8447999999999,169.0,241.33333333333334,10536.688622778125,5800.2681600000005,90.153291961886,416.3269,219.40277777777786,517.9985360000001,11774.946900562476,1348.0,397.48900000000003,141.0,311.1111111111111,9936.39655520021,4911.055431,73.20556364933901,401.44190000000003,335.3492798353909,494.601526,9979.18859796964,1167.0,316.11719999999997,118.0,191.85185185185185,7955.5818129319,4340.725742000001,61.357927421640994,319.3493,206.73702560585284,395.0758170000001,8313.605216888154,1098.0,287.1141,98.0,133.1111111111111,7007.459852734904,4079.4306319999996,53.95915887339599,291.6722000000001,187.61111111111117,358.232172,7547.967467181288,660.0,233.488,83.0,83.11111111111111,5964.860748047124,2275.6749029999996,48.72888798024501,237.70250000000004,134.06069958847735,296.271482,6311.335374749068,585.0,213.08309999999997,69.0,33.77777777777778,5669.610781083292,2081.6050489999993,41.783854305093996,217.1973,105.9506172839506,272.519284,5312.364948016627,516.8,4.923629999999999,0.6020663487371996,19.366666666666667,127.85020576131691,45.93556834983693,2347.9502355,10.220827114120965,4.819746666666669,92.51121176903922,3.540957866666666,1529.6664952771043,80.79999999999998,-0.5319000000000009,-0.5409863663808969,2.9,0.04444444444444917,-7.4138897549724545,345.8516835000002,-0.9855765429999945,-0.25713333333333455,-18.176437471422048,0.13294833333333295,24.55372236716663,59.03999999999999,3.673898999999995,0.5154384011649332,-0.38999999999999935,64.12049382716049,9.440658879290623,275.36434225000045,0.8614425957948926,3.0551173333333317,43.71274186480719,2.2068662266666657,-81.605947749081,26.00000000000001,-0.8782449999999993,-0.3969310846290052,-0.4611111111111108,15.903978052126204,-14.540905635167892,131.47621575000005,-0.8011866766328929,-0.6381311111111115,-14.381903112245762,-0.9150749111111114,191.6606331104292,-124.64,0.8173509999999935,0.1735238989927551,0.6788888888888885,42.70035665294927,4.13150552532882,-542.4366832499999,0.052468435345529925,0.3398715555555485,38.53203747099867,-0.0016968044444437558,33.700425333825486,64.91999999999996,-2.368878000000004,-0.044871761955513144,-3.8866666666666667,-32.29530864197531,-7.045036057351136,295.0445320000001,1.8221346731560852,-2.042961333333337,-32.38205570797134,-1.806048053333332,182.8903042012265,-70.32,-2.481852000000005,0.04446526263539364,-2.580000000000001,-83.84460905349795,5.565002873167623,-308.21201749999966,-0.6570242805610211,-1.7348986666666721,-48.44651971244221,-0.9049446133333314,-156.50247562135905,-201.11999999999998,-1.7533369999999993,-0.10518730549090528,-4.785555555555557,-46.5996159122085,-3.240700996041103,-900.4726512499998,-2.0200860829313596,-1.845274222222222,-20.053434361716533,-1.3686351022222216,-314.54054819046223,13.79999999999999,-0.6982949999999972,0.06166608441783078,-1.761111111111112,-67.26474622770917,0.19620656076310156,46.67573674999979,-0.5947816685458959,-0.32389111111110724,-24.25056229783738,0.28827522222222235,-305.9589240918898,0.7581708857094859,0.6357057529966152,0.4678544463257097,0.40457900605665303,0.3216044026309187,0.23626773362394876,0.20184259929643786,0.13941706474109306,0.13432059126575255,0.07584980697494324,0.08524845514540219,0.04963407454253269,0.05824829476718279,0.03480158537480147,0.036274066870488966,0.01925254664664718,17.001103428277677,5.700664907724822,3.5809832079186306,2.187050551329121,0.4700280723586465,-0.3586119380627835,4.0438043995202895,0.9714534908872076,6.022505990814077,0.6442307132610932,14.544168430651489,10.319772432857686,35.45051734466784,11.711836080149434,2.9545640233881656,0.7510054399124885,3.5370057039878366,2.241673165756791,7.014571774915829,0.2989430169490889,3.7682798887498996,2.441068069971583,24.441829414828213,14.701069582642871,0.38122302267369446,0.6934673996485857,0.8281991861922977,0.8797795604902365,0.8797795604902365,0.8797795604902365,2.3819206018191372,484.77740369929205,0.0,0.0,2.0,0.0,6.0,1.0,0.0,0.0,0.0,2.935996159562376,1.3217161484801077,0.6251629167387822,0.3584962500721156,0.3584962500721156,0.3584962500721156,30.70974272172299,744.6957039637948,44.84610021309898,24.8231901321265,51.04563544460683,,11.0,274.0,16.054405665745655,13.212334168400758,4.895483475517775,11.567389719653901,6.4208216229260096,24.26546827384644,0.0,11.645832064142713,5.316788604006331,11.600939890232516,8.347619047619048,21.25,11.0,0.5,10.25,0.0,0.008963585434173638,0.75,0.22841269841269823,0.060291005291005284,-0.16812169312169295,0.06719740527790052,0.19071641791044758,0.0,0.661746031746032,0.9383753501400558,0.43333333333333374,0.6014550264550267,0.8711779448621553,11.381172935301917,0.4606879748360315,0.5466879748360315,15.083790471732408,4.053871722659241,3.8996538648778234,26.464963407034325,7.953525587537064,0.5232835820895524,0.26525955504848825,0.09982886480319453,0.17969195664575013,0.3,0.4676426441358757,-0.7338711225894384,-0.05707793515702976,-0.024462370752981286,-0.0611559268824532,0.5323573558641241,0.8354278534385237,0.03742635534534318,0.027847595114617457,0.04641265852436242,-3.5806810130999365,0.7332301341589268,0.7102412244624392,2.002213767752499,1.197934595524957,0.7163749372336452,1.4938840547667125,0.7185725005541755,1.276347676837682,0.6352757821296273,0.7304188195119057,0.548176818182229,0.9704841419953966,0.7443430158441087,0.4036010733830884,0.5597974158631114,1.1304039688164422,0.5944693279853496,1.025882468966053,0.7366889573131781,0.9196832478302555,0.43987768781924375,0.5046506528176881,0.43563178168110517,0.9724655744161277,1.0126518218623484,1.0090730432003026,1.3863956328941947,1.1057857804845757,0.8993200435378136,1.1435831284412072,1.0021310856991674,1.096703196669387,0.9899952183889645,0.9861382411700913,1.0368354465130503,0.932264326306754,1.1099267985517134,1.2523858912555796,1.1885528703587331,0.9644388692785669,1.010758442333841,0.9389378261968914,1.0969172876583124,0.9693253530235559,1.2275064952894579,1.1861836983078264,1.2696656705209584,0.8726827843072212,0.7856037151702787,1.5907870565009958,1.4610132126578077,1.2322504302925987,1.353120896046041,1.072428057260962,0.7761317947536345,0.8433423327793409,1.4639213834890341,1.630530595222155,1.5218809267155358,0.8226425322761594,1.1029181409405868,1.7837122784844277,1.2924223013141056,1.06958446029014,1.6929085974731597,0.8783816000973764,1.0960886460386134,0.9886540300849704,1.6085144467185972,1.9442857280201071,1.5897737541428656,0.9330803301610486,1.2747102752907709,1.3178633694289823,1.0847641862368755,1.173652137507559,1.2914510224086757,1.0117511535438113,1.2646631444895602,1.1750427046319427,1.3176309330152813,1.3120731443401497,1.3406971504268734,1.1363921862682358,0.7014318885448917,1.0169863059804014,0.35788202981886175,0.6845340545856896,1.3598475582278642,0.8148505867926079,0.7275879939382497,0.7813946677469951,0.9694451437281618,1.1670664787597276,0.8491170465534726,1.140088879830962,5.0,0.02887460463218039,2.444444444444445,1.375,0.8222222222222225,0.6041666666666666,0.20326530612244897,0.13368055555555555,0.05744520030234315,0.045625000000000006,3655.837970621769,3991.740719287355,1955.724373132384,1823.1779295958356,12.756286706877045,0.4624595520741426,6.857020070285348,0.8603251231764596,1.0,0.3,1.9708944360461425,3.585174447128411,4.2817276788697365,4.548394345536403,4.548394345536403,4.548394345536403,0.2941176470588235,0.014437302316090195,0.10628019323671502,0.06249999999999999,0.041111111111111126,0.037760416666666664,0.014518950437317785,0.013368055555555557,0.00820645718604902,0.011406250000000001,0.603706383568329,15.058823529411764,6.805293005671078,5.0176,105.21646016364002,1.0,3.715820763317817,69.46167537723642,,44.7235907077367,54.85947806621104,54.92948094348449,44.697099145996056,67.54346416521993,54.87325349791303,54.49476564605146,67.20272366955093,0.15634674922600617,-0.1080300509989583,-0.8985494165478365,0.14974182444061962,0.00034762904118764066,-0.16139758407928295,0.14729940961732116,-0.09642825693023752,-0.05334996860139283,-0.19647821192528328,0.03754586706180886,0.01605168345059335,0.06720087415771263,0.4389275918018874,0.5035974193620475,-0.011845702136276177,0.2950166354507399,0.12089387270079593,0.06898741821861815,0.049578271214742,0.37286769770829997,0.2779487704877211,0.3666117058725715,-0.031381676217752286,0.02321981424148608,-0.08232621991373151,-0.3042836765760344,-0.010989010989010981,0.05741326358303531,-0.14610001481031332,0.025844385212547605,-0.03617891800824779,-0.0611073717461052,-0.0717513186725179,-0.11927345158281848,0.05782878425878734,-0.12263210368893321,0.08440971465967737,0.14654944791106167,0.01782432393010297,0.1698240970864846,0.04573287317040664,-0.11747065951368264,0.0026102452504133734,0.035855835824926435,0.2117858046746349,-0.00024365777662183747,0.011202317331707956,0.07851199690402473,-0.30070268277673234,-0.04658099772727411,-0.1254302925989673,-0.15787669469157575,-0.0958548613638758,0.0785377942478969,0.1114228973846113,-0.2649207358063083,-0.2187711568194528,-0.31877815998864917,0.07472638021339388,-0.09719150818222026,-0.3600496845968183,0.05275315909789799,-0.09515613474305387,-0.4684310526538441,0.08653429564623423,-0.09376324836141457,-0.04591634828606027,-0.2571117154151954,-0.3740590602558715,-0.18254637131062396,-0.07307964378629758,-0.31553844866538366,-0.2887350581978325,-0.14165715229055745,-0.20035353770293532,-0.2955292260677934,-0.05720176100106568,-0.3109575958783019,-0.16025196557197394,-0.3104246741090723,-0.1757575223958567,-0.3133909463829834,-0.16672449694008987,0.022888102609464826,-0.12156449031071975,0.08779205796433558,-0.07794443078436197,-0.4509613138538447,0.003661151001808722,0.01703944732398596,-0.04987980454627532,-0.057600735387395664,-0.22468840109005805,0.06978141421706678,-0.17144293032120664,4.195780723337382,6.536420847284809,0.7937005259840998,26.879421573037472,39.999424718388035,43.63568370931662,43.90448370931662,43.90448370931662,43.90448370931662,32.96235697184629,19.8468052094331,3.917896752611716,5.219252795350551,1.7572310620701852,13.115551762413196,3828.640240914347,3801.550666995477,383.22501119013896,8.0,23.0,25.0,28.0,30.0,28.0,21.0,16.0,12.0,276.03354095600037,17.0,4.394449154672439,5.176149732573829,6.0330862217988015,6.844815479208263,7.711101251840158,8.534836626588833,9.4066470133368,10.236131040272427,11.111208324448542,0.8000000000000003,1.0067999999999997,1.1326896234262556,0.7680043293647488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6996868063872258,0.9966013071895425,1.0310512260257343,0.6486705271728066,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,0.0,10.023291153407584,0.0,17.934429032852847,0.0,0.0,18.524677089923138,30.686289896772447,11.567389719653901,4.895483475517775,221.91530957326717,-348.2514680782564,-27.085784004109833,-11.608382269275214,-29.02095567318803,252.62505229499016,396.4442358855385,17.760316208989142,13.214807862851284,22.024679771418803,0.45454545454545453,0.8078963818366313,0.21495599766677975,22.292639958530327,0.20913374902675924,33.096792259942866,0.1921036181633687,6.0,0.23529411764705882,0.4016585244044402,0.730640795280214,0.8725948939439817,0.9269402398347834,0.9269402398347834,0.9269402398347834,1.7379,,2.3077731092436973,1.3204959719460145,1.0146621458758465,2.3193405639712505,-3.625163544218169,1.3031970934105948,1.3071506637024763,-1.5947651857518572,65.46320000000003,13.212334168400758,0.0,10.038883468458419,0.0,18.24004229813441,6.544756405912575,29.288101587587764,0.0,0.0,3.5553480614894135,0.0,4.844187086458591,0.0,6.322565239927284,0.0,7.890208213109961,0.0,9.507106063161006,24.000000000000007,5.551257873519779,0.0,0.0,0.0,0.0,0.0,0.4240120231466742,0.0,30.203999999999994,0.0,34.6343959260659,0.0,0.0,-3.8273711892164264,0.0,0.0,-0.7344444444444436,33.98068870278767,10.038883468458419,4.794537184071822,0.0,20.993667902579585,10.023291153407584,0.0,13.344558822616634,29.160951749364212,5.022633313741326,0.0,0.0,23.040129880942466,20.990604191616775,20.141727737394103,138.92335075447284,,89.82540411362862,109.56360366513431,109.7395898698071,89.77010709951853,136.7278644620463,109.59318969071893,108.8357488610791,134.9683056399555,20.141727737394103,138.9233507544728,,88.06063644185407,108.39846016047605,108.84429974109315,87.99649372706992,138.71209187465792,108.44330990241545,107.68238062840052,136.00021252485374,4.71733248250362,103.66673367159053,,67.38901165460027,83.33223642862097,83.28808789803539,67.36630287640386,105.21049653891814,83.43572389497754,82.82357925562013,104.16115405504566,1.184807513964359,8.171961809086637,,5.283847300801684,6.444917862654959,6.455269992341594,5.280594535265796,8.04281555659096,6.446658217101113,6.402102874181123,7.939312096467971,2.35866624125181,69.46167537723642,,44.7235907077367,54.85947806621104,54.92948094348449,44.697099145996056,67.54346416521993,54.87325349791303,54.49476564605146,67.20272366955093,29.898039215686275,0.0,1.869022615091338,5.641495691413319,0.0,0.0,0.0,30.93153678077203,1.1491901796429214,4.320219102558719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.4601158151842,383.37944138881085,59.12683308138428,107.55523341385233,128.45183036609208,136.45183036609208,136.45183036609208,136.45183036609208,225.0,103.44842484474007,91.16092047944653,49.11941466414626,83.65,75.27000000000001,0.8333333333333334,6.709380556865934,5.087462841250339,3.4962250657177174,4.049334398910098,,4.007572289105355,4.035654621389888,4.039283570899706,4.007689894574979,4.031678009152055,4.035715273821989,4.033728252474091,4.039081937344557,0.20566029798339514,0.2381961411123587,,0.23573954641796208,0.23739144831705225,0.23760491593527686,0.23574646438676344,0.2371575299501209,0.2373950161071758,0.23727813249847596,0.23759305513791512,1.7823120848489895,1.9291807727262191,,1.9188138948552877,1.92579677540964,1.9266955933739915,1.9188432402383673,1.9248109198010948,1.925811804440124,1.925319324040061,1.9266456739800284,189.85999999999976,136.2324150554319,76.99398305010595,,77.87453783567553,76.73502377466545,76.69573366457027,77.8628468300103,77.23819255607961,76.72435226101305,76.81019596730013,76.77172002223872,8.013671473848934,4.529057826476821,,4.580855166804443,4.5138249279214975,4.511513744974722,4.580167460588841,4.543423091534095,4.513197191824297,4.51824682160589,4.515983530719925,5.444990612462729,4.874355527656177,,4.885727293457802,4.870986488517362,4.8704743342191,4.885577156023399,4.877522307987216,4.870847409186463,4.871965642394857,4.871464594525796,25.309940476190476,11.224398288121835,2.8442882874589834,0.0,0.0,4.816813429075335,0.7305679931139887,2.287644801620271,-3.8273711892164264,229.79831100173746,105.30777130900456,-165.25937768300764,-12.853297742795737,-5.508645922766923,-13.771614806917306,119.88078373305207,188.1287911577082,8.427986880708383,6.270959705256941,10.451599508761566,566.0,22.0,1.7721646521389818,0.8982615632764597,0.2041241452319315,0.05103103630798288,0.34846171252933794,0.11735402420532191,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.125,0.06551773028942419,12.88890505706126,10.80699780094246,7.953525587537065,6.8778431029631015,7.396901260511131,5.434157873350822,5.046064982410947,3.485426618527326,3.7609765554410712,2.1237945952984107,2.5574536543620656,1.4890222362759808,1.630952253481118,0.9744443904944411,0.7617554042802682,0.4043034795795908,2.776996320716848,1.403790582839046,3.987592935017151,1.4946851071725802,4.95208911772185,1.7241484063683055,55.51222826295662,33.85413667848103,26.892980863142,25.99689129156526,25.99689129156526,25.99689129156526,80.0,88.0,35.05430899999998,22.215690999999996,0.2,17.07,7.395833333333333,3.875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,30.0,0.0,0.0,30.0,6.0,3.0,6.0,24.0,9.0,17.0,21.0,0.0,0.0,0.0,10.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,3.0,2.0,0.0,17.0,7.0,0.0,2.0,3.0,0.0,1.0,4.0,1.0,0.0,1.0,0.0,1.0,3.1780538303479458,3.684180933332382,3.7495040759303713,4.06474409244581,4.503967680478929,4.866091101636331,4.976733742420574,4.8407362573008585,4.395220462076662,4.31331274212583 +21023902,COc1cc(Br)c(S(=O)(=O)Nc2ccc(C(F)(F)F)c(O[C@@H]3CCN(C)C3)c2)cc1OC,0,53.407407407407405,6.9531666666666645,3.5555555555555554,10.472438144591779,168.72906626159403,242.13293924906125,1.6636805723458883,6.983711111111109,7.810621792917745,8.386744259259258,232.48296963471628,35.732142857142854,6.6736571428571425,4.196428571428571,7.613756613756614,147.99283771771783,141.19320443760003,1.8695180858928573,6.827600000000001,3.1457506613756614,8.118737249999997,273.9807013095486,30.606060606060606,6.973949494949497,3.686868686868687,8.142910587355033,162.5554695723734,121.1448955449991,1.558689778486747,7.034777777777779,5.686151639855342,8.401760505050506,229.08077247333583,31.521008403361346,6.640811764705882,3.3529411764705883,6.282809420064321,156.9571203567413,124.54771707572436,1.5782896881314372,6.743844537815125,3.7121668626298248,8.163700428571428,218.18541098528462,30.955882352941178,6.681741176470588,2.8970588235294117,5.507897603485839,163.30001339215565,123.53636084322352,1.35944949033989,6.762202205882353,4.317186365286856,8.233990926470586,192.555117665743,26.107692307692307,6.687769230769232,2.9153846153846152,4.970655270655271,164.37690595067278,100.73037989665228,1.3500662298075383,6.753677692307692,3.9480056980056975,8.246812076923076,190.68451272236067,27.92622950819672,6.697475409836065,3.0901639344262297,5.656952034001214,161.1889324160412,107.52965071438686,1.4828913781900657,6.784533606557378,4.3381084294677175,8.200443409836064,202.5314845532876,24.932835820895523,6.829678358208955,2.626865671641791,4.18269762299613,171.9740063401911,92.85344338457313,1.2754852185756043,6.884364925373134,3.936958724894048,8.385335164179105,174.99323112391554,25.608695652173914,7.033598260869564,2.6695652173913045,5.828341384863124,171.2599773614383,98.34544978561391,1.2045436074272262,7.055102608695653,6.577750939345145,8.54345064347826,175.10480620732622,27.661179698216742,0.2776418381344307,0.028358234717441942,0.7777777777777776,5.54026128958812,2.6187816547940233,142.36827855035312,0.34966643825846927,0.2468024691358023,3.574732690223373,0.17130211796982167,49.801156237520274,1.4955663335292961,-0.013179933372525961,-0.0119190497581939,0.18849206349206343,0.9687221696696875,-0.4049174980253604,6.217213280266547,-0.041809473814338194,-0.005611992945326244,-0.49049401957030836,-0.0032424704830491488,-1.3102399736386998,1.5625389699463774,0.06232460406534492,-0.0018312154076967355,0.03367003367003359,1.0020689887580096,0.8398031312494406,8.17460334098142,0.07152254342514364,0.05299551066217741,1.4138814942212865,0.030999924304776084,9.92540378283309,1.6656176874041795,-0.0168772256227594,-0.0004679381080880257,-0.10177404295051361,0.27800614846468097,-0.2767640739453105,7.775322650650069,0.010453056713172317,-0.01482702562506484,-0.03719716656413116,-0.014270703092759721,-3.29664957118867,2.8646917614782534,0.026874719599774038,0.0020049350567238637,0.025326797385620915,0.4099588914579306,-0.24000979207411877,13.780291160910716,-0.029613977504545922,0.030658560275962216,0.12397252036070737,0.016641848533446284,1.8146822415231971,0.29352115648411964,-0.03718457317716574,-0.003848162492773402,-0.05042735042735044,-0.695243527286407,-0.03406931868310432,1.2053558398880513,0.02503256813382488,-0.03165913580246911,-0.5163850801225056,-0.019420015120818847,3.3236086300706438,-2.7662191639119396,0.038971337336121764,0.005928164710647858,-0.06102003642987251,0.25752210175482976,-0.17647581063847922,-13.974848231947146,-0.04111347415885803,0.02987212102813196,0.18965816091470575,0.021681381726596064,-8.311234490999963,-5.173617509162009,-0.062326277050959056,-0.0025164606276244493,-0.0431177446102819,-0.94217755796427,0.1540697436939513,-26.20810348969783,-0.03229788719719965,-0.05807900313248562,-1.0662563628221238,-0.03648873488524465,-3.5421040547063787,-0.753611260213515,0.01796482853223614,-0.0009092232750116539,0.027053140096618366,-0.08838999920069657,0.033080190277066594,-3.2720923214784037,-0.0018544703810150292,0.014576661298980255,0.9545129869113863,0.010691909083318272,0.6445633128793121,,,0.48407738095238106,1.1953125,0.546875,0.078125,0.6484375,-0.1015625,0.9742456644465816,0.03044296449850553,0.03850546449850553,1.1211392977875132,0.2369807982013943,0.2298954111242594,2.0953849622340948,0.4668762093256537,1.9935923610036081,1.2875788459683344,0.12903810703445756,0.29232347507544226,0.2144425143889608,0.7060135150352735,9.96367573266668,2884.0,375.4709999999999,192.0,565.5116598079561,9111.369578126078,13075.178719449308,89.83875090667797,377.1203999999999,421.77357681755825,452.8841899999999,12554.08036027468,2001.0,373.72479999999996,235.0,426.3703703703704,8287.5989121922,7906.819448505602,104.69301281000001,382.34560000000005,176.16203703703704,454.64928599999985,15342.91927333472,3030.0,690.4210000000002,365.0,806.1481481481482,16092.991487664965,11993.344658954911,154.31028807018797,696.4430000000001,562.9290123456789,831.7742900000001,22678.996474860247,3751.0,790.2565999999999,399.0,747.6543209876543,18677.897322452216,14821.178332011199,187.81647288764103,802.5174999999999,441.74785665294917,971.4803509999999,25964.06390724887,4210.0,908.7168,394.0,749.0740740740741,22208.801821333167,16800.9450746784,184.88513068622504,919.6595,587.1373456790125,1119.8227659999998,26187.49600254105,3394.0,869.4100000000001,379.0,646.1851851851852,21368.99777358746,13094.949386564796,175.50860987497998,877.9780999999999,513.2407407407406,1072.08557,24788.986653906886,3407.0,817.092,377.0,690.148148148148,19665.049754757027,13118.617387155196,180.912748139188,827.7131000000002,529.2492283950616,1000.4540959999998,24708.841115501087,3341.0,915.1769,352.0,560.4814814814815,23044.516849585605,12442.361413532799,170.91501928913098,922.5049,527.5524691358024,1123.6349120000002,23449.09297060468,2945.0,808.8637999999999,307.0,670.2592592592592,19694.897396565404,11309.7267253456,138.522514854131,811.3368,756.4413580246917,982.496824,20137.052713842517,1493.7037037037042,14.992659259259257,1.5313446747418649,41.999999999999986,299.1741096377585,141.41420935887726,7687.887041719069,18.88198766595734,13.327333333333325,193.03556527206214,9.25031437037037,2689.262436826095,83.75171467764058,-0.7380762688614538,-0.6674667864588584,10.555555555555552,54.2484415015025,-22.675379889420185,348.1639436949266,-2.341330533602939,-0.31427160493826967,-27.467665095937267,-0.18157834705075232,-73.37343852376719,154.69135802469137,6.170135802469147,-0.1812903253619768,3.3333333333333255,99.20482988704295,83.14050999369462,809.2857307571605,7.080731799089221,5.246555555555564,139.97426792790736,3.0689925061728323,982.6149745004759,198.20850480109735,-2.0083898491083683,-0.05568463486247506,-12.11111111111112,33.08273166729703,-32.93492479949195,925.2633954273582,1.2439137488675056,-1.7644160493827161,-4.426462821131608,-1.6982136680384068,-392.30129897145173,389.5980795610425,3.6549618655692693,0.27267116771444544,3.4444444444444446,55.754409238278555,-32.64133172208015,1874.1195978838573,-4.027500940618245,4.169564197530861,16.860262769056202,2.263291400548695,246.7967848471548,38.15775034293555,-4.833994513031546,-0.5002611240605422,-6.555555555555557,-90.38165854723292,-4.429011428803562,156.69625918544668,3.2542338573972343,-4.115687654320984,-67.13006041592573,-2.52460196570645,432.0691219091837,-337.47873799725664,4.754503155006855,0.7232360946990387,-7.444444444444446,31.41769641408923,-21.530048897894467,-1704.9314842975518,-5.01584384738068,3.6443987654320993,23.1382956315941,2.6451285706447196,-1013.9706079019954,-693.2647462277091,-8.351721124828513,-0.3372057241016762,-5.777777777777775,-126.25179276721218,20.645345654989473,-3511.885867619509,-4.327916884424753,-7.7825864197530725,-142.8783526181646,-4.889490474622783,-474.6419433306547,-86.66529492455422,2.065955281207156,-0.1045606766263402,3.111111111111112,-10.164849908080106,3.804221881862658,-376.2906169700164,-0.21326409381672837,1.6763160493827294,109.76899349480942,1.2295695445816013,74.12478098112089,0.7400448061545374,0.6217648846581211,0.43941290289473295,0.3449159847805773,0.2944347192929202,0.1911323328141112,0.1761107949182396,0.11505266370586413,0.11566166334835512,0.06617295366822548,0.0714587267351607,0.034428322543498154,0.04651112714639251,0.0191929947729301,0.028721252937973903,0.011032579990616397,35.00041843598025,5.692960359607016,4.124564433292836,2.183749783552478,0.5119668525300679,-0.5282117598529779,4.0440704310216065,0.9712958540716647,7.014103894959363,0.2560077904173359,17.430704021641407,10.319761792224801,79.90417869930661,11.704914809118025,3.0590405524346527,0.5269529957988319,4.007192338104831,2.2381007529555115,8.007395504387572,0.2989186963562601,4.030664074764066,2.4368267212821486,26.523893805697252,13.302780184113908,0.33288067787796055,0.6274073508069855,0.790539304425113,0.8448900466301646,0.8510628861363377,0.8572357256425106,1.6618974352834193,1095.373299695147,0.0,0.0,3.0,0.0,11.0,2.0,1.0,0.0,0.0,3.757603434895705,1.9904433973215552,1.0116516756127902,0.6855472223824801,0.648510185345442,0.6114731483084048,106.75866153453268,2147.59498091131,73.29919539108299,39.770277424283506,89.37841972141175,,15.0,776.0,33.61651938358026,21.589042127353395,20.805101099317653,25.259846268035066,18.19910120538483,26.352329219478285,0.0,11.947581713527669,20.652038762401435,14.210588861400147,15.490476190476194,38.25,17.5,2.5,20.75,0.0,0.015922619047618936,-3.25,0.25178667280116523,0.0710758377425047,-0.18071083505866053,0.01999007936507935,0.20958071018762559,0.0,0.6909171075837731,0.9596726190476186,0.4391304347826079,0.6198412698412684,0.9396825396825392,31.17586126229061,0.974174863952177,1.232174863952177,35.87645752920042,7.583385542444618,7.356653155976301,67.05231879149103,14.940038698420919,0.5044192898123744,0.28127881955118345,0.08607439286812173,0.2840454964648017,0.4,0.4228950327656723,-1.311880258384273,-0.06921028124646815,-0.024294078858968015,-0.08199251614901706,0.5771049672343279,1.790261305693144,0.03666837960774102,0.033152987142465624,0.04711213962350378,-6.246551885062987,0.5594793843647052,0.6417339344482021,1.5266404678407852,1.0590986394557826,0.5347914713957432,1.1564957214446585,0.5430494783811972,1.1608453060929498,0.6031085417009087,0.6672178018319033,0.6457812619465408,0.9871271799225174,0.6094707301129318,0.6940900460422853,1.2605835803311523,1.0579605579605582,0.7682199918104313,0.6800161192868862,0.5926271269834377,0.6941273828573974,0.6895994106438811,0.43504368819636324,0.7533159637437791,0.7081390838262138,0.8363678226063546,0.8048626253534402,1.1682587529319262,1.2035814325730296,0.8073377705440158,0.9496029608563833,0.8340054480353557,0.9823167215930776,0.8053299615078889,0.668844958877342,0.8707746338918412,1.038144814653122,1.0118969786029957,0.8225052649585693,0.9420663398101751,0.9510679271708686,0.8762408354513015,1.0027758764394938,1.018703152558044,1.1537312249732683,0.7993771002098007,0.8892518771579447,0.8445761154053704,0.9649296875225025,0.8675415323580459,1.0993054426217392,1.1707470644034912,1.0774725274725279,1.1188802131434934,0.9246774252946923,0.8620993390277608,0.8833847428460848,1.0923522027219947,1.14570007098134,1.1041477039734355,0.8985412995202268,1.2577301809253978,0.7179076157318647,0.7091291904116273,1.19984387197502,0.8442230823470718,1.072645083307528,1.2647840066708314,1.2067030499103533,0.7372234411222759,0.873807517264532,0.7349962096183092,1.1658543140267612,1.4842975489524848,1.423525156069928,0.9449909085078103,1.092395167022033,1.2285176400289688,1.1870387539483316,1.4841946646328565,1.2624395909800843,1.422726140942529,1.650366418634598,1.367178051443136,1.0610273382725597,0.884434178893692,1.1879488108909635,1.0412692641369738,0.9985507246376815,1.1502323366510332,1.1145455958123953,0.861958251697952,0.985412173293513,1.1756513800775572,1.2108400416543428,1.183097188690331,0.9134118218546007,10.5,0.2430384654627079,4.666666666666669,3.7569444444444446,2.377777777777778,1.8716666666666666,0.893061224489796,0.9306264172335601,0.4368779919375157,0.4006327160493828,9133.12158178861,9858.822023559938,3655.520613871593,3433.3864880457772,13.505970555071123,0.32703744959313225,9.089012390460722,0.48596678878402383,0.0,0.4,1.9972840672677634,3.764444104841913,4.743235826550678,5.069340279780988,5.106377316818026,5.143414353855063,0.30882352941176466,0.007594952045709622,0.09150326797385624,0.07224893162393163,0.04403292181069959,0.03899305555555556,0.018225739275301956,0.021642474819385117,0.010655560778963796,0.01214038533482978,0.625860818629998,26.602076124567475,10.726643598615917,6.575963718820861,192.17746433637186,0.0,4.386987829444175,193.57949344821637,,130.89993192858893,147.43061237736396,152.1316740274554,130.67050102190035,222.82667730005613,148.43624510259343,148.1651599568015,191.52068010090883,0.05406733732421803,-0.04747099162390793,-0.4203029517511892,0.2423469387755102,0.17485135069174784,-0.15462056459884918,0.04366993366480602,-0.11956959330318437,-0.022738803890321947,-0.13721138392019433,-0.01892837357457761,-0.02630942878895576,0.05648851520411152,0.22447843049925398,-0.06457437939782736,0.043290043290043205,0.1808703482345156,0.32068467018320174,0.057418713102513265,0.2045450623782058,0.21472844598251078,0.39552090093006026,0.18096638075565036,0.19930066955664927,0.06021499102988577,-0.06078776072137823,-0.01650096040005681,-0.13085234093637468,0.05017924858293981,-0.10568428774451569,0.054614150917755705,0.02989436665764743,-0.06007648820120319,-0.01040557988178043,-0.08330721920947758,-0.06619624563465394,0.10356361488309676,0.09679636102524879,0.07070027724577346,0.03256302521008404,0.07399630992645984,-0.09164940942470304,0.09679326954871392,-0.08469207869087975,0.12422306949892158,0.03468022118122649,0.0971491113517819,0.036438556423636054,0.01061130290488089,-0.13393000646812256,-0.13569823831123595,-0.06483516483516488,-0.12548930293107052,-0.013009606440741617,0.008466463542029403,0.07158985076892369,-0.12827722475113798,-0.1444541801782215,-0.11336704619285602,0.06673757963006151,-0.10000365834325829,0.14036550686302665,0.20904561830859295,-0.07845433255269325,0.04648194160784332,-0.06738851645589355,-0.09815984553753307,-0.11757912587672323,0.121036556614411,0.05305520086394338,0.12656808907882666,-0.16688838410418802,-0.18703531684498403,-0.22448445619633683,-0.08873826783289446,-0.055437100213219605,-0.17006013050953314,0.05883260386061832,-0.18408667827242492,-0.09236770722995565,-0.2353258593232624,-0.29827583073225455,-0.21300807787836504,-0.07112493609210123,-0.027244364428249554,0.06470504824830396,-0.032062054781302356,0.034782608695652195,-0.01595412103880533,0.012631900875168026,-0.022983296242646657,-0.005303541255635827,0.05906205618615384,0.26701660505187086,0.06241551015266412,0.012942737911649068,5.934688055234024,16.264588814929393,7.103446844561606,30.79292145919539,47.86659279636142,52.952426330945066,53.68865813831974,54.2812136938753,54.726065545727145,63.79495555211546,41.2025230709867,4.129219425102642,9.354351202414152,6.862160460446746,22.592432481128753,9262.15472591276,8723.008328520478,3403.289595468139,126.0,51.0,63.0,82.0,94.0,108.0,113.0,125.0,118.0,538.0384895640007,34.0,5.14166355650266,5.988961416889864,6.902742737158593,7.769378609513984,8.683893367307235,9.557257866458935,10.47211971339814,11.348817037595632,12.264053776401191,0.8456790123456789,1.0334814814814817,1.1445856583651315,0.8315898845811094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6864099135063207,1.0178649237472766,1.0437943405896795,0.6567684525559554,5.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,3.0,0.0,3.0,0.0,0.0,3.0,1.0,3.0,0.0,1.0,1.0,1.0,0.0,0.0,19.110498592250625,16.748961696549983,11.49902366656781,0.0,10.023291153407584,4.722094864452088,8.417796984328938,13.171245143024459,0.0,0.0,47.59753870893738,29.694966464580784,25.470432848935623,292.76782863066546,-908.2072498198816,-47.91388450919379,-16.81865277444225,-56.7629531137426,399.52649016519814,1239.3877310914281,25.385310881889197,22.95162464984126,32.615466607669156,0.4666666666666667,0.8510293903482682,0.15886646621345202,89.05457990278451,0.13521773647453614,0.3494127438189154,0.14897060965173164,8.0,0.20588235294117646,0.3470587507604472,0.6541299205982261,0.8242099997206767,0.880875651848145,0.8873114052878281,0.8937471587275112,4.368800000000003,,3.9892857142857148,3.033639717715981,2.3372311722463026,4.109735992185446,-11.565852014222136,2.844003939941861,2.6817961349702495,-3.891967910875259,116.02850000000002,35.79963098875355,0.0,4.899909730850478,0.0,23.59657000363556,39.078874741509495,40.36800634983746,0.0,17.248535499851716,4.23410650459726,0.0,5.60947179518496,2.3978952727983707,7.160069207596127,4.59511985013459,8.7937637591133,6.529418838262226,10.474156316370632,45.66666666666666,5.567371810747305,0.0,0.0,0.0,0.0,0.0,-0.953132687046202,0.0,55.80800000000001,0.0,25.92734598549398,0.0,0.0,-4.180149662488449,0.0,0.0,0.0,61.807625551717095,18.932683725852236,18.858631417708022,17.248535499851716,53.77845297998512,16.199589670851058,0.0,11.984273114623004,39.70003833365824,0.0,0.0,0.0,44.90585376737991,37.06613532934132,38.727566024458056,387.1589868964328,,262.59492561554373,294.67162227237066,304.1172711066455,262.20206212417054,450.21383113232935,296.6947399589405,296.1627076551673,384.25760017396624,38.727566024458056,387.158986896433,,259.3536309726867,291.8275850370119,301.9261168826644,258.86290163052,457.2192066143343,294.02848626524474,293.6485237786327,386.9333281126932,4.922510874054922,284.77319377900375,,188.95278633988403,217.9097626270919,223.84289947378358,188.71500504843655,315.78819455604037,219.03636947170196,218.10604482375177,278.0603661368766,1.2102364382643143,12.098718340513525,,8.206091425485742,9.208488196011583,9.503664722082672,8.19381444138033,14.069182222885292,9.27171062371689,9.255084614223978,12.008050005436445,2.4624896489177797,193.57949344821637,,130.89993192858893,147.43061237736396,152.1316740274554,130.67050102190035,222.82667730005613,148.43624510259343,148.1651599568015,191.52068010090883,54.96470588235294,3.183798349793986,4.608770709398328,0.0,40.44080257810564,0.0,0.0,56.3648943918427,1.7498515932466359,2.3050040942302847,15.895850446329169,0.0,-0.42319357822250825,1.9435312728261098,-4.6491842457476125,0.0,0.0,35.46549643802159,589.1628120664133,107.85333963245922,203.2799816614633,256.1347346337366,273.74437510817336,275.7443751081734,277.7443751081734,946.0,144.12888808122625,103.13150672945004,81.79400154405747,85.48,77.10000000000001,0.875,8.387226864956212,6.087462841250339,4.935872652162367,5.570879257535317,,5.5411569947113835,5.565652449056499,5.562993403522366,5.541307665519469,5.50378066832163,5.563993286933082,5.561915461603229,5.540048218766061,0.15424602038007396,0.17408997679797866,,0.17316115608473073,0.17392663903301558,0.17384354386007395,0.1731658645474834,0.17199314588505094,0.1738747902166588,0.17380985817510092,0.1731265068364394,2.7596802962709157,2.8807037072178736,,2.8753541325707594,2.8797650291805255,2.879287155121101,2.8753813234191337,2.868586060137193,2.879466877348012,2.87909336622169,2.8751540142753824,322.7200000000011,267.6193339695943,208.2229808081929,,210.35082253936335,208.0551955704808,208.57822195663695,210.25852106167284,216.87992453160146,208.25994266219877,208.54651779207302,211.81986246795933,8.363104186549823,6.506968150256028,,6.573463204355105,6.501724861577525,6.518069436144905,6.570578783177276,6.777497641612546,6.5081232081937115,6.517078681002282,6.619370702123729,6.752716384962568,6.501760338416869,,6.511927530171449,6.500954217624,6.5034649459472975,6.511488636073747,6.5424946670229644,6.501937833589035,6.503312933076307,6.518887017933671,84.76347343556527,1.7721738573022532,0.0,-1.0385789708828121,0.06233336795425792,5.567371810747305,-4.500610373196347,1.1780841424728616,0.42862104690987923,401.72800949035155,202.68150448721062,-628.7467193395195,-33.17051003715599,-11.643457765546655,-39.29666995871997,276.5899193498181,858.0210850198911,17.5741065043987,15.889279352220203,22.57950223736555,2994.0,52.0,4.084830165286096,1.7222512550125584,0.4927992798267444,0.06452976748688385,0.863663419223244,0.3639062106639312,0.20118446353109126,0.018628139314648174,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.324781400830624,0.17344448709209193,0.4235923449679003,0.1732206061794433,23.681433796945196,19.896476309059874,14.94003869842092,11.727143482539628,15.016170683938931,9.747748973519672,11.094980079849096,7.24831781346944,9.48425639456512,5.426182200794489,6.717120313105105,3.2362623190888264,5.023201731810391,2.0728434354764507,3.245501581991051,1.2466815389396528,6.5656863449796,3.3822405828277264,10.893025648165596,4.938938034595609,14.859212357919061,5.801836182911808,102.16842859874599,54.62299532491553,40.20306386146602,37.90403982971871,36.79148056981842,35.9570611248932,170.0,199.0,61.90044599999998,40.93355400000002,0.37037037037037035,164.12,13.125,6.875000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,54.0,0.0,1.0,56.0,12.0,2.0,8.0,48.0,14.0,34.0,42.0,0.0,1.0,0.0,20.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,6.0,1.0,1.0,32.0,12.0,0.0,2.0,5.0,0.0,3.0,7.0,1.0,0.0,4.0,0.0,2.0,3.7612001156935624,6.962746415416585,4.394449154672439,4.863680881139593,5.403802874394014,5.869296913133774,6.149002341324198,6.3631897284094965,6.550946397502744,6.597273592753287 +4634,CCN(CC)CC#CCOC(=O)C(O)(c1ccccc1)C1CCCCC1,0,18.666666666666668,5.854647368421053,2.719298245614035,5.157894736842105,162.97398187630208,73.14752101754387,1.3733054745670001,5.926971929824561,3.54203216374269,7.445974035087717,196.02551613962885,21.137931034482758,6.133189655172414,3.4310344827586206,4.793103448275862,145.156829693675,78.24124550000005,1.7342665049310353,6.280379310344828,2.704022988505747,7.590657862068962,244.28274669701847,16.40566037735849,6.005179245283015,3.009433962264151,3.7452830188679247,155.15290135514658,58.807723537735875,1.4104003228748596,6.10781226415094,2.5559486373165616,7.5416869056603755,190.97320320237944,14.402777777777779,5.8777013888888865,2.673611111111111,3.1944444444444446,158.74988707575574,51.20067524999998,1.2547567866011389,5.964254861111109,2.7057291666666674,7.462440555555556,166.2347387583002,13.563291139240507,5.944018987341772,2.3987341772151898,2.6265822784810124,159.25836220050002,47.13536156329113,1.1828341456418545,6.0220601265822795,2.8233122362869203,7.551786556962027,156.7637146195587,12.585365853658537,5.9967865853658555,2.182926829268293,2.3902439024390243,163.70874608016072,43.23230251829268,1.0957687608216584,6.051973170731709,2.9220020325203255,7.633715195121953,145.1669722954889,12.381294964028777,5.915719424460433,2.223021582733813,2.0431654676258995,159.32682080520846,41.67933802877699,1.182836648781446,5.992881294964027,2.6687649880095927,7.531954589928056,152.70657875134714,10.330827067669173,5.730601503759399,2.075187969924812,1.6240601503759398,162.43562398700726,33.84932167669172,1.0956746015485714,5.79974887218045,2.3101503759398496,7.3796073082706775,135.0691589926471,10.330275229357799,5.670137614678897,2.1559633027522938,1.7798165137614679,164.1288945129639,34.63222976146789,1.071434465981284,5.7357532110091745,2.2140672782874615,7.327694018348624,132.41606714706066,7.082794706063404,0.09717340720221605,0.01442106174380819,0.49553708833487226,3.1880578639581403,1.342200861560354,33.81173768851955,0.2311601731216663,0.0943232379193597,1.1630416196436513,0.05902223453370266,51.47237008800301,0.2124261045839042,0.00044410640939924264,-0.006897473918478283,0.22981076405472256,1.0521115250315747,-0.15073383381626462,0.9955969373122682,-0.008568506593350313,0.0013630899693275141,-0.058312003457592014,-0.001083114146527816,-0.4207411383661375,0.022964976161024882,0.006816711963623105,-0.0021051902756806435,-0.0001713154119990198,0.5115449165781052,-0.008747348984871036,0.04755561022258957,-0.007868473770743676,0.006054368833371135,0.08463207192279126,0.005345359640411872,-1.2286658624911955,0.814866112650046,0.0212228281779009,0.002599263136591858,-0.05267646455319585,0.5541448650866934,0.02136260787501568,3.752699470837177,-0.003996637028412956,0.020332061788242543,0.2959677140687163,0.013386449676823642,1.5788258509360686,-0.07757596300322195,-0.0038382639643745942,-0.0010004305801399637,-0.03051377054673103,-0.022723642328116515,-0.15969592968091587,-0.4087094181442409,-0.023574035271213437,-0.002454761348184998,-0.04233736692324244,-0.004109290718468367,-2.9886407542484856,-0.028879430068538967,-0.012085377677183927,0.0004648723722182991,-0.003346245373811079,-0.32113445788197487,0.14786505913415202,-0.023086017680863786,0.021582823358581287,-0.010715985031041396,-0.13815364598321273,-0.008329692385649576,3.5154368664594235,-1.1326495590231416,-0.016386432571394372,-0.000639726209217539,-0.02690147051334002,-0.6014113916622933,-0.1272480211527423,-5.362973280088395,-0.022212754529754714,-0.016392214317188857,-0.17771759815908428,-0.009335760218418037,-6.3906460655638515,-0.6047575078045994,-0.006666363276612585,-0.0004679839195147542,0.027085257002154507,-0.300048366530361,-0.004413357814635995,-2.8443101563997706,-0.001741991041690496,-0.00759890076067361,-0.10717461294561938,-0.0032574325286901457,-2.389625124508805,0.43144962034895706,0.002374540649063489,0.0007850239643498019,0.01548818126113611,-0.15184347477417187,0.09547848627346729,2.1086119480489427,0.02332518261587429,0.0023474042824750377,-0.048285597324857134,0.0007616276906655743,4.379243113815872,,,0.4769230769230769,0.9519230769230769,0.36538461538461536,0.0,0.5865384615384616,-0.22115384615384615,1.0794823205108381,0.01117838474288582,0.017793769358270435,0.7082897027951705,0.17381736228816932,0.3117047745986793,1.7877720233060086,0.48552213688684864,1.9940052461636586,1.6989495589938828,0.08096638013412474,0.21408930703565066,0.0,0.2950556871697754,6.267199892140366,1064.0,333.7149,155.0,294.0,9289.516966949219,4169.408698,78.278412050319,337.8374,201.89583333333331,424.4205199999999,11173.454419958844,1226.0,355.725,199.0,278.0,8419.09612223315,4537.992239000003,100.58745728600005,364.262,156.83333333333334,440.2581559999998,14168.399308427071,1739.0,636.5489999999996,319.0,397.0,16446.207543645538,6233.618695000003,149.5024342247351,647.4280999999996,270.93055555555554,799.4188119999998,20243.15953945222,2074.0,846.3889999999997,385.0,460.0,22859.983738908824,7372.897235999997,180.684977270564,858.8526999999997,389.6250000000001,1074.5914400000001,23937.80238119523,2143.0,939.1549999999999,379.0,415.0,25162.821227679004,7447.387126999998,186.887795011413,951.4855000000001,446.0833333333334,1193.1822760000002,24768.666909890275,2064.0,983.4730000000003,358.0,392.0,26848.234357146357,7090.097612999999,179.70607677475198,992.5236000000002,479.20833333333337,1251.9292920000003,23807.38345646018,1721.0,822.2850000000002,309.0,284.0,22146.428091923975,5793.4279860000015,164.41429418062097,833.0104999999998,370.95833333333337,1046.9416879999999,21226.21444643725,1374.0,762.1700000000001,276.0,216.0,21603.937990271967,4501.959782999999,145.72472200596,771.3665999999998,307.25,981.4877720000001,17964.198146022063,1126.0,618.0449999999997,235.0,194.0,17890.049501913065,3774.913044,116.78635679195996,625.1971,241.33333333333331,798.718648,14433.35131902961,403.719298245614,5.538884210526315,0.8220005193970668,28.24561403508772,181.719298245614,76.50544910894018,1927.2690482456142,13.17612986793498,5.376424561403503,66.29337231968812,3.3642673684210513,2933.925095016172,12.320714065866444,0.025758171745156072,-0.40005348727174045,13.329024315173909,61.02246845183133,-8.742562361343348,57.74462236411156,-0.4969733824143182,0.07905921822099582,-3.382096200540337,-0.06282062049861332,-24.402986025235975,2.4342874730686375,0.7225714681440492,-0.2231501692221482,-0.018159433671896097,54.22376115727915,-0.9272189923963298,5.0408946835944946,-0.8340582196988298,0.6417630963373403,8.970999623815874,0.5666081218836584,-130.23858142406672,117.34072022160663,3.0560872576177296,0.37429389166922755,-7.585410895660202,79.79686057248384,3.076215534002258,540.3887238005535,-0.5755157320914657,2.927816897506926,42.61935082589515,1.9276487534626046,227.35092253479388,-12.257002154509067,-0.6064457063711859,-0.15806803166211425,-4.821175746383503,-3.5903354878424096,-25.231956889584705,-64.57608806679006,-3.7246975728517233,-0.38785229301322965,-6.689303973872306,-0.649267933518002,-472.2052391712607,-4.736226531240391,-1.982001939058164,0.07623906904380105,-0.548784241305017,-52.666051092643876,24.24986969800093,-3.786106899661661,3.5395830308073313,-1.757421545090789,-22.657197941246885,-1.3660695512465306,576.5316460993455,-157.4382887042167,-2.2777141274238177,-0.08892194308123792,-3.739304401354263,-83.59618344105877,-17.68747494023118,-745.4532859322869,-3.087572879635905,-2.2785177900892513,-24.702746144112716,-1.2976706703601073,-888.2998031133753,-80.43274853801171,-0.8866263157894738,-0.06224186129546231,3.6023391812865495,-39.90643274853801,-0.5869765893465873,-378.2932508011695,-0.23168480854483595,-1.01065380116959,-14.254223521767377,-0.43323852631578935,-317.8201415596711,47.02800861803632,0.2588249307479203,0.0855676121141284,1.688211757463836,-16.550938750384734,10.407155003807935,229.83870233733475,2.5424449051302975,0.2558670667897791,-5.2631301084094275,0.08301741828254759,477.3374994059301,0.7242390906511466,0.6168840929901666,0.4675398355206691,0.3613477474986781,0.29307066090894013,0.19595475597360912,0.19425421191977527,0.11562195828343687,0.12557559091890758,0.06812145961835574,0.08139929103347804,0.04005163500632856,0.05144106253869989,0.020970845317697558,0.034654701115124545,0.012457731003554781,8.028994693557868,5.669683297395444,3.555380197856449,2.1693659189073022,0.46942461308944555,-0.4794108347069371,4.033698410500347,0.9778743285173712,6.028136691392817,0.9872569003884877,14.543271765771294,10.930221102259784,16.01421614619648,11.680914141175643,2.004130052932129,0.7412085019402931,3.50152426455576,2.2192797438913003,7.008273151409771,1.1358135967395502,3.7144279992110496,2.4152508316096566,20.912392917218252,14.701208015465795,0.22231655576962905,0.5133023527476951,0.7152814601620642,0.7856733722122016,0.8156870052721148,0.8156870052721148,1.8690070191759343,609.2696852458507,0.0,1.0,6.0,2.0,5.0,5.0,1.0,2.0,0.0,4.498990679546967,2.753075897678571,1.541201253192356,1.1188497808915319,0.9387679825320525,0.9387679825320525,300.7108225481337,1366.1217236087018,39.79188913026829,23.9670477826088,45.00713768879138,,13.0,564.0,11.570356098935537,9.901064578912528,12.52478801067431,12.10820789760957,45.193620926455196,0.0,0.0,30.33183534230805,30.588252767943015,4.736862953800049,12.399999999999999,24.75,9.5,0.0,15.25,0.0,0.02307692307692313,-5.75,0.09298245614035094,0.03430217334380742,-0.058680282796543526,0.01866096866096867,0.1206985645933012,0.0,0.529824561403509,0.8038461538461535,0.43684210526315803,0.49552238805970156,0.7851851851851849,28.066540333281793,0.2906380033150313,0.4626380033150313,18.415532272674433,4.519251419492402,8.104324139565662,46.482072605956226,12.623575559058064,0.5933014354066988,0.13440860215053763,0.040322580645161296,0.1532258064516129,0.5909090909090909,0.26043750005165134,-0.5668820282565596,-0.026648116121380013,-0.009945298741343154,-0.026994382297931416,0.7395624999483488,1.609770827588444,0.036752624543274576,0.02824159346646393,0.044715856321901226,-4.007869891777025,0.978146334446196,0.8162094536261896,1.5629503364302817,0.9058470764617691,0.5950822619198223,1.3781114673449906,0.9849904328957001,1.2530278604264427,0.8172217398946973,0.7490505669728611,0.8235649507712993,1.1599493910793772,1.0082664007949913,0.9164212051498903,1.2863838378735866,1.4963084495488106,0.9259564205226479,1.1503472538840849,1.0117541784727881,1.1019448661066036,0.9168743286691852,0.6442837126456453,0.8728989217848127,1.0675181838209642,0.8818696042644417,0.7739429806835078,0.949137226825938,1.5420289855072464,0.8784916650576047,1.0294462066267664,0.8864930563562211,1.0388465731068113,0.774128679182648,0.7221716323370136,0.762589806054591,0.9800879771895996,1.0530565230688667,1.3407366046781701,1.4250773165894717,1.3112823335167858,1.1507524300913379,1.104426107394155,1.0495272469720938,1.1068487392516542,1.2903714598602194,1.582513576743565,1.4623785708916865,1.0450663762450556,1.0885370517185096,1.7208753434813107,1.5465090422909342,0.9610816542948037,1.406484442330425,0.8256723278850914,1.0750483838375524,0.8456260291911822,1.6398952631133181,1.848419172107977,1.8750030017961021,0.8631628618450541,1.1940057548954752,1.4374466150747858,1.3678365865678654,0.7630903972474194,1.3180261737703873,1.0809643033002418,1.1885489507289715,1.1014218590961158,1.4088890348967171,1.5138332958021599,1.512205083216983,1.111264372139198,1.0700504084825309,1.1026275480146102,1.0751318993670362,0.6633540372670808,1.1249275921992665,0.9502437508366537,1.0676961202416628,0.9788986651899154,1.1094283620302023,1.0433641589602596,1.1135826866504759,1.0180507834119612,0.9086156883444936,0.9296271689379012,1.0447275084103824,0.8457917830075787,1.1125133079780556,0.8647337633341283,0.9070597856534344,0.8510961103762098,0.9339715391868056,0.8216419991062676,0.9358942420183817,0.8770511352436091,4.5,0.10733598612386491,3.333333333333335,2.375,1.0577777777777781,0.5416666666666666,0.36081632653061224,0.22916666666666674,0.16427311665406902,0.17125000000000004,4781.83946994197,5657.907111776069,2365.8912446684767,2054.1820298900784,13.246707438876255,0.46216656143589485,7.124522211503527,0.8593116907527655,1.0,0.65,1.3338993346177743,3.0798141164861703,4.291688760972385,4.714040233273209,4.894122031632689,4.894122031632689,0.16666666666666663,0.005366799306193245,0.09523809523809526,0.059375000000000004,0.027122507122507127,0.01463963963963964,0.012027210884353743,0.009963768115942032,0.00821365583270345,0.008562500000000002,0.40717584280610114,22.290809327846365,11.755102040816327,6.260869565217392,157.09300594012282,1.0,4.149556628218467,146.8474256964722,,124.1852031270708,122.46998788517051,124.70161217014355,124.21095679538615,171.89867107142538,123.62248265024658,124.27198759632813,149.88188062061587,0.029991848331005773,0.004570246348109061,-0.4782916848296399,0.4637609766545302,0.33001644572577593,-0.11230348462228776,0.02944530525120907,-0.03706739996617176,0.014451263542212876,-0.05013750365654021,-0.018350951214992382,-0.00817411628115804,0.0032423608355279785,0.07014997374166014,-0.1459802553431633,-0.0003457166295557859,0.1604565972158973,-0.006517168357873013,0.0014064822890997592,-0.03403905467142158,0.06418745758650939,0.07276787906242083,0.09056518585990819,-0.023870396105532515,0.11504867025899529,0.21840160583992482,0.18024076054648852,-0.10630175983436851,0.17381894831692093,0.015916103533252783,0.11098806885963068,-0.017289470649035247,0.21555729252663217,0.2544773197019372,0.22680350519734663,0.030673268944809196,-0.01095273352153086,-0.039499118893579994,-0.06937287960572719,-0.06157716801635349,-0.007127738359147574,-0.11898064906266259,-0.012087796903825332,-0.10198138785268057,-0.026024990260445267,-0.036402280200612556,-0.06962275743934933,-0.058063010293459685,-0.004077406061736621,-0.1243691872616392,0.03223565507705396,-0.006752764732616271,-0.10073043576545053,0.1101661184766741,-0.0006827811659234072,0.09336739572011664,-0.11360917274916783,-0.11878650226252623,-0.14112804185502645,0.06829755187975671,-0.15991562737989687,-0.16863083268547444,-0.04436054852148533,-0.054287501675678085,-0.18864506772647147,-0.09480549804208303,-0.15861276724352863,-0.09609248093988706,-0.17378765486404468,-0.15280416036490238,-0.1581736152853916,-0.12415682539268498,-0.08538402324253187,-0.06860275324853031,-0.032451419169305426,0.0546583850931677,-0.0941163489918076,-0.0032881500385160806,-0.08412197511414887,-0.007535861468548197,-0.08056233997363599,-0.09215028175729173,-0.055189922144172614,-0.04642539522511263,0.06091516671796287,0.024436115985128664,0.05443593393439695,0.03125534218473989,-0.04762883274196606,0.07113576589607483,0.06236331203896989,0.10090485009109923,0.02488680768658427,-0.04151665470032925,0.01290408092276941,0.08507949228544597,24.294738213421837,13.13017266144063,1.5000000000000004,11.859155815750368,28.167415888883042,32.03540121311896,33.91078157391064,34.09230402665699,34.09230402665699,51.844136400255124,44.172688533840955,2.1051258834872435,5.566321982926917,0.0,7.6714478664141605,5500.517659194641,4709.625659396938,1561.546329387494,42.0,35.0,46.0,53.0,59.0,54.0,57.0,53.0,46.0,357.2303938520009,27.0,4.8283137373023015,5.659482215759621,6.511745329644728,7.373374309910049,8.244596756382498,9.121618441915379,10.004282662571022,10.890665360757932,11.780652248473633,0.567251461988304,0.9597894736842105,1.1290506313829476,0.522173387844768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6399472948839163,0.9470932232542141,0.9897650170583049,0.5842226638242259,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,9.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,9.843390348640755,0.0,12.207932775496605,0.0,0.0,4.899909730850478,4.794537184071822,0.0,0.0,75.28264324817862,31.494607549374166,5.917906046161393,6.544756405912575,163.45708297374844,-355.789326462903,-16.725023574111358,-6.241918008121106,-16.942348879185857,464.1679055218822,1010.3323971457987,23.066865556156934,17.725129774487698,28.064788809605524,0.46153846153846156,0.9255228111395745,0.20678706061539345,6.689679283883381,0.15785402934979886,12.570889836545426,0.0744771888604255,7.0,0.25925925925925924,0.2286858369313494,0.5280082616005222,0.7357739903461812,0.8081826027621835,0.8390561145071613,0.8390561145071613,3.342900000000002,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,103.43680000000008,14.637927532712576,0.0,4.899909730850478,5.917906046161393,51.552633324994986,26.241151182250643,35.89528683400505,0.0,11.840868637711289,4.007333185232471,0.0,5.272999558563747,0.0,6.769641976852503,0.0,8.37539918579835,0.0,10.045204105154609,32.33333333333333,9.193694482698916,0.0,0.0,0.0,0.0,0.0,0.6185187920311481,0.0,54.708,0.0,12.823652525825146,0.0,0.0,0.0,0.0,0.0,-0.5761674330225912,64.355885988828,0.0,0.0,0.0,42.21689359589368,15.132450948855558,17.75877468387268,51.5150340057083,30.33183534230805,0.0,0.0,0.0,29.763883107151777,36.47699580838323,33.69969194929435,293.69485139294443,,248.3017249354603,244.85975956960363,249.34594340620305,248.35342921263555,345.2454439163888,247.1728616850144,248.47584077775096,300.34695664985384,33.69969194929435,293.69485139294443,,247.47754911128442,243.89716516075515,248.65857219719456,247.53161667499415,347.5624067540499,246.30761829926914,247.65822779888734,301.2800693036492,4.944092721126557,218.11745738317722,,182.66619857947586,179.82871212173734,184.14795339284183,182.71066443150465,265.48139497944777,181.76266677374497,182.80708009482635,226.50418257894594,1.2961419980497826,11.295955822805555,,9.55006634367155,9.41768306036937,9.590228592546271,9.552054969716751,13.278670919861108,9.506648526346707,9.556763106836575,11.551806024994379,2.4720463605632794,146.8474256964722,,124.1852031270708,122.46998788517051,124.70161217014355,124.21095679538615,171.89867107142538,123.62248265024658,124.27198759632813,149.88188062061587,53.9843137254902,0.0,4.185224310534764,0.0,0.0,0.0,11.365804304772107,56.41660597232338,7.488049374798251,0.0,5.382852891156463,0.0,-0.10205231578653362,2.1916238968613158,-1.581118630322499,0.0,5.926584467120182,33.30069183798088,580.881243693919,76.03226207321313,175.5494046397117,244.62625937542597,268.7002932965729,278.9649558030633,278.9649558030633,498.0,127.41473106271717,46.74374480171145,60.47057801160169,49.769999999999996,49.769999999999996,0.8571428571428571,7.268048668443581,5.754887502163468,3.77754917239651,5.011915909965991,,5.0065809850315866,5.0066938274651545,5.011450518920895,5.006594046651365,5.015849065268914,5.006849211266362,5.006551531594157,5.009624843603621,0.14529035278448116,0.19276599653715348,,0.19256080711659948,0.19256514721019824,0.19274809688157288,0.19256130948659098,0.1929172717411121,0.1925711235102447,0.19255967429208296,0.19267787860013927,2.2845868772872224,2.567329704180285,,2.5662646890398735,2.566287227607063,2.5672368429547214,2.566267297926613,2.5681141572492057,2.566318262336852,2.566258806078197,2.566872475804206,300.9100000000007,1398.7503667853348,149.25782847344846,,149.236583786961,149.21541942303335,148.87516926613918,149.23578816279294,148.6818171170262,149.212494590151,149.23939029569038,149.10723779188476,53.798091030205185,5.740685710517249,,5.739868607190808,5.739054593193591,5.725968048697661,5.739838006261267,5.718531427577931,5.738942099621193,5.739976549834245,5.734893761226337,8.19884596687719,5.961186648007992,,5.961044302385088,5.9609024747964945,5.958619609670444,5.961038971076445,5.957320012045956,5.960882873192588,5.961063107977317,5.960177208825075,5.382852891156463,15.015276422686462,11.365804304772107,-0.962599838291351,5.248364718311057,9.193694482698916,4.919690207333398,6.753583477999618,0.0,375.0039037428596,102.58974982092819,-223.3022719281476,-10.49704272829079,-3.917583718037678,-10.633441520387983,291.3233763632122,634.1098591353948,14.477341229313252,11.1247343707964,17.61416275376097,1833.0,40.0,1.2931484699236138,0.684621378265604,0.09622504486493763,0.032274861218395144,0.733302020337764,0.19694421702263604,0.1642664266089148,0.03227486121839514,0.0,0.0,0.0,0.0,0.0,0.0,0.2041241452319315,0.13413708757094495,0.10206207261596575,0.06706854378547247,18.83021635692981,16.03898641774433,12.623575559058064,9.756389182464309,10.257473131812905,6.858416459076319,8.935693748309662,5.318610081038096,6.655506318702101,3.610437359772854,4.802558170975204,2.363046465373385,2.7778173770897943,1.1324256471556682,1.9753179635620992,0.7100906672026225,4.115283177973869,1.788883105686005,6.479611355736993,2.456180943594216,9.837660992607303,3.115401519620011,90.87068142121612,46.119532736701274,33.4208423600471,27.920510214051568,26.920505516171353,26.920505516171353,124.0,143.0,60.91658299999997,35.413417,0.22807017543859648,79.04,8.756944444444445,6.166666666666668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,6.0,57.0,0.0,1.0,58.0,6.0,1.0,4.0,53.0,8.0,27.0,50.0,1.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,4.0,1.0,0.0,26.0,4.0,0.0,1.0,3.0,0.0,2.0,7.0,0.0,0.0,0.0,0.0,1.0,3.5263605246161616,5.358647827456335,3.9219733362813143,4.340553386467307,4.706146103328094,5.077904458631359,5.035734328151275,5.2879513242988585,5.393911596915271,5.299254427369377 +5253,CC(C)NCC(O)c1ccc(NS(C)(=O)=O)cc1,0,26.263157894736842,6.140878947368422,2.789473684210526,5.853801169590644,165.9486606261205,103.67448507894736,1.4504913183415793,6.19658947368421,5.420161450436791,7.738361605263155,195.6962006240432,29.526315789473685,6.306678947368422,3.263157894736842,4.008771929824561,148.5581112352118,111.83415763157899,1.7988396277894743,6.461568421052632,2.6000243664717346,7.8408989473684185,244.99751999444862,20.28358208955224,6.2608059701492556,2.925373134328358,4.114427860696518,157.51890821746807,73.77174967164179,1.4320752264849248,6.35569104477612,3.853279896812235,7.813323014925373,192.92438184877713,15.068181818181818,6.204863636363637,2.3636363636363638,2.534090909090909,164.65350443553962,51.98593235227273,1.2160029742941592,6.262421590909091,3.163089225589225,7.796216454545455,158.21939137048955,13.758241758241759,5.80146153846154,2.1868131868131866,2.2967032967032965,162.75891791976957,48.028553780219774,1.1572525388859447,5.879758241758242,2.663614163614164,7.456345186813186,143.48965524477413,13.152941176470588,5.918929411764705,2.0941176470588236,2.1254901960784314,164.04074333482333,45.178517423529414,1.0975960556244,5.983535294117647,3.0277051561365282,7.574669152941176,139.061113215088,11.808219178082192,5.9636575342465745,2.0547945205479454,1.7534246575342465,166.37492896237023,39.44619660273972,1.0607849290661509,6.011590410958904,2.8883392524945037,7.614767479452055,132.34574318234718,13.741379310344827,5.72715344827586,2.103448275862069,1.4425287356321836,162.53593554444336,47.497591051724115,1.1699446848005688,5.811944827586208,2.1705779054916983,7.389038689655173,140.13652929045014,13.727272727272727,5.9537781818181825,1.9090909090909092,2.0666666666666664,164.96385072131497,46.681569109090894,1.0541555920805998,6.013016363636364,3.7718013468013463,7.633087963636363,127.2370216835624,11.501385041551243,0.14095761772853183,0.016369778662910513,0.6177285318559553,3.6300400123114813,1.4512816995052897,52.3021832998615,0.29306301012855956,0.13203518005540155,2.3277397912558078,0.08891575969529081,50.292790563909755,2.833795013850416,-0.016830747922437717,-0.009878081932919386,0.08310249307479231,0.24145891043397985,-0.1666372060441165,12.143075269390609,-0.013155388637118941,-0.008672022160664847,-0.6457971754841947,0.003526773545706383,1.3629464738979855,-0.6804895191631869,0.03639124322983418,0.00275671781619576,-0.07177409352131307,0.5661719105304504,-0.1935495048277507,-2.7372235661615645,-0.03877351745404258,0.03173826849133827,0.6739576453213224,0.019449147610286526,-1.6575643340524695,-1.4744711659531597,-0.0342329765802065,-0.0012116861461579941,0.01385041551246537,-0.6534982791908,0.1803343358146995,-6.967269624921301,0.014163678358440441,-0.03375557479224377,-0.38522769211298374,-0.01847381471921428,-4.223200677779373,0.7386380932087303,0.006763319229247223,-0.00042910259673857343,-0.013911296459772907,0.46192065859655895,-0.1231567075633715,3.4867049803582804,-0.007703178666796103,0.008397324282365838,0.13332599345763652,0.0009554580606374015,1.1006380575561285,-0.019651295421215808,-0.004898979957634018,0.0001728767096008744,-0.016490141763076418,-0.036713558923107646,-0.15695170570934283,0.039032314070389776,-0.014232112340023341,-0.002870474173048721,-0.037595524755619995,-0.006552251336157738,-0.3388286725699923,-0.43000796873221264,-0.017367350965734444,0.0004722036096835643,-0.012825864227981642,-0.6122558258178492,0.07821948576658473,-2.0865435129112484,0.021052997396913374,-0.01740042879368571,-0.31840153567266033,-0.009808432370128637,-0.902337002259043,0.7472537969242525,0.00887713726239376,-0.0017724143569917065,-0.0950425064476072,-0.16462359771176277,-0.006485611262326509,3.077823788614001,-0.026167344408698386,0.009162460597955903,-0.097648140024353,0.008707622791097493,-3.469126885745129,-0.2918156635608161,0.043022382271468124,0.0013706494673034555,-0.07227398640141024,0.36804611209043364,-0.3473295706831594,-1.3906821491437933,-0.0638958501029165,0.03798874338957442,0.7851625016537938,0.02960142642911104,-7.142489835086914,,,0.47962962962962963,1.1111111111111112,0.5277777777777778,0.027777777777777776,0.5833333333333334,-0.05555555555555555,0.8130637999890137,0.03541877764614279,0.04019655542392056,0.7697942518199684,0.2066065426505174,0.25320876650184515,1.582858051808982,0.4598153091523625,1.9363415713798895,1.315797045345161,0.21765514891186527,0.28532121081115797,0.0,0.6205445260347283,7.161038513157907,998.0,233.35340000000002,106.0,222.44444444444446,6306.049103792579,3939.6304329999994,55.11867009698001,235.4704,205.96613511659808,294.0577409999999,7436.455623713641,1122.0,239.65380000000002,124.0,152.33333333333331,5645.208226938049,4249.6979900000015,68.35590585600002,245.5396,98.80092592592592,297.9541599999999,9309.905759789048,1359.0,419.4740000000001,196.0,275.6666666666667,10553.76685057036,4942.707227999999,95.94904017448997,425.83130000000006,258.16975308641975,523.492642,12925.933583868067,1326.0,546.028,208.0,223.0,14489.508390327486,4574.762047,107.008261737886,551.0931,278.3518518518518,686.067048,13923.306440603079,1252.0,527.9330000000001,199.0,209.0,14811.061530699031,4370.598394,105.30998103862098,535.058,242.3888888888889,678.5274119999999,13057.558627274446,1118.0,503.109,178.0,180.66666666666666,13943.463183459984,3840.173981,93.295664728074,508.6005,257.3549382716049,643.846878,11820.19462328248,862.0,435.3469999999999,150.0,128.0,12145.369814253027,2879.5723519999997,77.43729982182901,438.84610000000004,210.84876543209876,555.878026,9661.239252311343,797.0,332.1748999999999,122.0,83.66666666666666,9427.084261577715,2754.860280999999,67.85679171843299,337.09280000000007,125.8935185185185,428.56424400000003,8127.918698846109,755.0,327.4578,105.0,113.66666666666666,9073.011789672324,2567.486300999999,57.97855756443299,330.71590000000003,207.44907407407405,419.819838,6998.036192595932,437.0526315789472,5.356389473684209,0.6220515891905994,23.473684210526304,137.94152046783628,55.14870458120101,1987.482965394737,11.136394384885264,5.017336842105259,88.4541120677207,3.378798868421051,1911.1260414285707,107.68421052631582,-0.6395684210526332,-0.37536711345093665,3.157894736842108,9.175438596491235,-6.332213829676427,461.43686023684313,-0.49990476821051977,-0.3295368421052642,-24.5402926683994,0.13401739473684254,51.79196600812345,-45.59279778393352,2.43821329639889,0.18470009368511592,-4.8088642659279754,37.93351800554017,-12.967816823459298,-183.3939789328248,-2.597825669420853,2.126463988919664,45.155162236528604,1.3030928898891974,-111.05681038151546,-129.75346260387806,-3.012501939058172,-0.10662838086190349,1.2188365650969526,-57.50784856879039,15.869421551693554,-613.1197269930746,1.2464036955427589,-2.9704905817174514,-33.90003690594257,-1.6256956952908568,-371.6416596445848,67.21606648199446,0.6154620498614973,-0.03904833630321018,-1.2659279778393346,42.03477993228687,-11.207260388266807,317.2901532126035,-0.7009892586784454,0.7641565096952914,12.132665404644923,0.08694668351800354,100.15806323760769,-1.6703601108033437,-0.4164132963988915,0.014694520316074324,-1.4016620498614956,-3.1206525084641497,-13.34089498529414,3.317746695983131,-1.209729548901984,-0.2439903047091413,-3.1956196042276996,-0.5569413635734077,-28.800437168449342,-31.39058171745152,-1.2678166204986143,0.03447086350690019,-0.9362880886426599,-44.69467528470299,5.710022460960685,-152.31767644252113,1.5368688099746763,-1.2702313019390568,-23.243312104104202,-0.7160155630193905,-65.87060116491014,43.340720221606645,0.5148739612188381,-0.10280003270551898,-5.512465373961217,-9.54816866728224,-0.37616545321493755,178.51377973961206,-1.5177059757045064,0.5314227146814423,-5.663592121412474,0.5050421218836546,-201.20935937321747,-16.049861495844887,2.3662310249307468,0.07538572070169006,-3.975069252077563,20.24253616497385,-19.103126387573766,-76.48751820290863,-3.514271755660407,2.0893808864265933,43.18393759095866,1.628078453601107,-392.83694092978027,0.7643971413924633,0.6477590802301987,0.4598153091523625,0.42558532725035986,0.3397628367224392,0.25293751485949806,0.19985648748295837,0.1218602190022811,0.1306908733398896,0.07202874617468724,0.08831629581161833,0.03942868220817352,0.05494118380482824,0.023071755604639275,0.03679870155904863,0.015250067669215508,16.013330396077492,5.693006474476405,3.580853744510652,2.1921954768327296,0.43670907982856283,-0.37015042201713033,4.038009959262828,0.9683230916622274,6.0175316193641155,0.6158928086281192,14.541117566559661,10.31810864192464,32.06664811058275,11.704555259733981,2.955889136689513,0.760987703994946,3.536900843797462,2.242036022554629,7.014206621170159,0.2992591656030231,3.7682918119419617,2.4379765359853485,24.44236025108804,14.701858349768797,0.3065414189359891,0.6271423152545337,0.800960893913211,0.8397585429971494,0.8397585429971494,0.8397585429971494,2.2587762797847506,468.6008195677134,0.0,0.0,3.0,0.0,5.0,2.0,1.0,0.0,0.0,3.5845526160148573,1.844887271995637,0.901701644907642,0.6911753291181677,0.6911753291181677,0.6911753291181677,106.50016376887203,858.5036875862445,53.73569888833616,22.59220230490117,48.22257977051299,,11.0,300.0,16.127257541155885,13.524324379169643,0.0,18.2739835097441,11.819220675208399,0.0,24.26546827384644,13.847474399381248,10.038883468458419,0.0,8.633333333333333,20.0,9.5,0.5,10.5,0.0,0.020370370370370396,-1.0,0.14473684210526305,0.03791866028708124,-0.10681818181818181,0.08386243386243386,0.17329018789144035,0.0,0.5780701754385967,0.8870370370370368,0.4333333333333337,0.5401515151515155,0.803174603174603,14.635148399802246,0.6375379976305702,0.7235379976305701,13.856296532759432,3.7189177677093133,4.557757797033212,28.491444932561677,8.276675564742526,0.5407098121085596,0.2895752895752896,0.09652509652509654,0.23166023166023167,0.5,0.39465681527003216,-0.6702671511843513,-0.070079226389257,-0.01763860924169345,-0.05585559593202926,0.6053431847299677,1.0280872804393388,0.0362246412155444,0.027054928432614186,0.03954181847843611,-2.909092013005898,0.9601999036608867,0.8503847839373341,1.6518497169272823,1.3688340807174897,0.7733169408173647,1.5171847464346409,0.9534694097987554,1.4333294893509296,0.7990971305809124,0.9147865336801984,0.6850931774205624,1.1468770577173024,1.1251932174388177,0.6533336902937189,0.8634771152855001,1.5174185128170814,0.8505058225912998,1.3258739079965745,1.1102612974847808,1.2728893375947292,0.6660045972881025,0.5593479326677945,0.6772185296018612,1.0854504484220282,0.9220987421177091,1.3320595114505287,1.225420720595898,0.8776752955564618,1.2480127607257925,0.9028092263289038,0.942619210762509,0.7690123293542115,1.3278667060071334,1.1791132957747659,1.2794260146282967,1.0187992514340345,0.8307647314150207,0.7020665275960967,0.9153243383874148,0.9007046764894303,0.6879319806867712,1.0401540731081371,0.8339599717756978,0.9873336067773574,0.7070619819855631,0.6138534103108026,0.7223774237614263,0.9852705042249378,0.869487419245155,0.9807749004718648,0.9112357844170047,0.9179240305987871,0.9687822322417179,1.0206272423934617,0.8757136722522949,0.9465440786916278,0.9718674715373905,0.9857149713675817,1.0316483705606727,0.9771494379153982,0.788015183308259,1.1520142470254513,1.0009633926315087,0.8852816512070771,1.1949894420427378,0.8224345286218286,0.8093905704514007,0.6979671778633066,1.1568308958776568,1.1229106198275154,1.1467210828891057,0.9445854369778308,0.8604463573848916,0.5594889116941124,0.9396845438988867,1.0870573681768987,0.8070011490354533,0.9967130306615859,0.8689185324067137,1.0926948435394774,0.5839785793911103,0.5439059089251888,0.48337990443958057,1.0926333605107978,1.1267209668943776,0.6705683879396729,0.8383873222721999,1.0460456583774975,0.8350339926310758,1.1761533460907692,1.1170045363725511,1.2786446131821179,0.6918623311286017,0.6872085587625806,0.6578816198568319,1.1207908088013216,6.0,0.09917355371900827,2.000000000000001,1.125,0.9022222222222225,0.5208333333333334,0.3844897959183674,0.2465277777777778,0.13958175862937766,0.06000000000000001,3326.553562729403,3857.4610781172296,1991.8056780530353,1781.4615505109593,13.028219483641639,0.47397572410612143,6.8531597200691134,0.9010529472250868,1.0,0.5,1.663374897428728,3.403040241447948,4.346225868535943,4.5567521843254175,4.5567521843254175,4.5567521843254175,0.3333333333333333,0.019834710743801654,0.08000000000000004,0.05357142857142856,0.04511111111111112,0.02893518518518519,0.02957613814756672,0.02241161616161616,0.013958175862937766,0.010000000000000002,0.6367316991169805,16.055555555555557,6.9632,6.666666666666667,108.2757898177038,1.0,3.774003520419151,81.66672997331337,,60.50912842966325,65.16050613095217,65.08652629270802,60.51576051980935,81.95668901203723,65.58106191892477,65.6130200026718,78.78964449401565,0.24638728323699435,-0.11940289708110564,-0.6034340559106304,0.13452914798206297,0.06651687298626424,-0.11482071750847508,0.2321714793390425,-0.044889283814248664,-0.0656796329359046,-0.2774352949200517,0.03966421203386703,0.0271002356126176,-0.05916587582319618,0.2581715257129241,0.16840287660344097,-0.11619034870490597,0.15596850409644167,-0.13336453211924845,-0.052334785920281325,-0.13230437180398028,0.24037736365430026,0.28953306888212127,0.21873678723476733,-0.032958289159678134,-0.128199443860571,-0.24286006767037788,-0.07401970247180843,0.022421524663677136,-0.1800250897991274,0.12425867140484961,-0.1332118314253958,0.04832980577189589,-0.25565591517412284,-0.1654943106442128,-0.20776760815543813,-0.0839722876862982,0.06422166465519068,0.047981225408282646,-0.02621309704759807,-0.02252008081604494,0.12724946750722568,-0.08486064945582442,0.06666461628127698,-0.02628505952838233,0.06359914288633035,0.05727701780004697,0.010745654807558316,0.0218846090108579,-0.0017086025161509898,-0.034754985481301834,0.010560723706824836,-0.026694803481930894,-0.010113816596674301,-0.10814696124318542,0.000746284602434429,-0.04856331863164874,-0.021740222354710913,-0.016151085656931324,-0.07369055113077734,-0.00673712213561553,-0.037387494391216,-0.12320973669675638,0.028846059522689205,-0.020762946126911996,-0.16866365762948884,0.05389683187850301,-0.039894004059994444,0.07183778460365209,-0.1317863071522646,-0.13678570812284982,-0.11031151737039159,-0.017941676970825365,0.06497076606205571,0.06297735025211697,-0.10827356884229095,-0.15385804855419827,-0.04535035348189903,-0.004468885168563286,0.05884694661727729,-0.08928914091621257,0.06939408568315932,-0.04194976620289339,0.09793115214825825,-0.06897861198091053,-0.025372219302855166,0.30521502111595195,0.08373048258795192,-0.11699959233591528,0.10138899594555018,-0.23932608727964838,-0.026589370871396796,-0.21802768651999768,0.28771682951191085,0.33730681779951066,0.332915408140845,-0.14201816512866922,4.251415002085969,8.917543699641408,1.8948485120271366,18.985597003753817,32.0710382834239,35.338190448160184,35.55040097447597,35.55040097447597,35.55040097447597,34.85414828483801,23.684346816212898,3.9177926804135748,5.1357817946008435,0.0,11.16980146862511,4351.760655865907,4207.466958966321,416.62550772452414,14.0,25.0,24.0,28.0,32.0,30.0,32.0,30.0,18.0,272.11946350000045,18.0,4.465908118654584,5.220355825078324,6.07993319509559,6.859614903654202,7.718240951959316,8.51097389160232,9.368283850042138,10.169115715456494,11.025246544044485,0.6403508771929826,0.9797894736842109,1.139015226760809,0.596740268788698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6442146233848096,0.9657378740970067,1.007197071338215,0.5859383483132826,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,10.423315998847038,0.0,0.0,10.023291153407584,0.0,4.722094864452088,8.417796984328938,0.0,0.0,25.980208536304467,17.696185628620217,18.2739835097441,12.359735571259707,199.49565587228267,-338.81433124036596,-35.424451550345744,-8.916166611588576,-28.234527603363823,305.9958196411547,519.6893563458785,18.311247337990416,13.676035693312595,19.988052167149174,0.45454545454545453,0.7292391660947609,0.22791676281512374,132.33333206250796,0.13502414296753396,4.474234969643217,0.27076083390523914,6.0,0.3333333333333333,0.3169584361002834,0.6484541245530545,0.8281794779753039,0.8682955648019932,0.8682955648019932,0.8682955648019932,1.0895000000000001,,1.6607142857142858,1.2038881980944245,0.883001233280407,1.6581557966933946,-3.8591084983466093,1.1101591187270503,1.0973664910406058,-1.6780538154894666,73.00700000000005,13.524324379169643,0.0,5.316788604006331,0.0,25.993281616277514,17.522620453876065,29.828919765543436,0.0,0.0,3.6109179126442243,0.0,4.919980925828125,0.0,6.3784261836515865,0.0,7.902857191280582,0.0,9.464750005164392,24.333333333333336,6.684849773242631,0.0,0.0,0.0,0.0,0.0,1.2430275783152773,0.0,37.23200000000001,0.0,22.05281703605838,0.0,0.0,-3.2565820625515784,0.0,0.0,0.0,43.28257861691074,10.038883468458419,5.687386274683562,0.0,32.36669079774158,10.023291153407584,0.0,25.514892278826544,24.26546827384644,0.0,0.0,0.0,22.676130213970524,24.480155688622766,20.771673296783657,163.33345994662673,,121.56476486779138,130.18724690656052,130.07494133727377,121.57892194812686,165.56771252834454,131.03877282465766,131.10411039522802,158.13864025986106,20.771673296783657,163.33345994662662,,120.27309820112477,129.11712406381,129.2900513521356,120.28924521736536,167.77248652242122,130.05196471912248,130.128673514303,159.25734280352077,4.610735147235987,125.67633696545852,,95.1281179553963,100.44407548892792,100.03439210931629,95.13841654503497,125.23612978578552,101.10693656817296,101.2760041792533,120.29349878928747,1.1539818498213144,9.07408110814593,,6.753598048210632,7.232624828142251,7.226385629848543,6.754384552673715,9.198206251574696,7.279931823592092,7.283561688623779,8.785480014436725,2.305367573617993,81.66672997331337,,60.50912842966325,65.16050613095217,65.08652629270802,60.51576051980935,81.95668901203723,65.58106191892477,65.6130200026718,78.78964449401565,36.69803921568626,0.0,5.1111189048111845,0.0,0.0,0.0,9.891704420194003,38.27348871085217,0.468768148463089,5.5075296044343665,0.0,0.0,-0.2865667363006841,0.0,0.0,0.0,0.0,22.26565723590474,368.62418207142935,63.20824610229166,129.31552917502202,165.15658300436584,173.15658300436587,173.15658300436587,173.15658300436587,269.0,105.41767299558745,136.86729344200808,50.27693221856891,86.81,78.43,0.8333333333333334,6.9165291755334986,5.169925001442312,3.7378529710287607,4.169930193449103,,4.168549174770604,4.163150155617449,4.163077271876325,4.168544226663891,4.154434220098035,4.163178264671034,4.163564468735723,4.156145655434412,0.2076584983904867,0.23166278852495015,,0.23158606526503356,0.2312861197565249,0.23128207065979586,0.23158579037021618,0.23080190111655752,0.23128768137061298,0.23130913715198462,0.23089698085746735,1.906298039568742,2.0156859603926396,,2.015354720455442,2.0140587015534694,2.0140411945272056,2.0153535334454196,2.0119629154896392,2.014065453401863,2.014158215740591,2.012374784549609,210.09999999999968,110.89469164160623,83.58367216371049,,82.92006423661668,83.79405911600851,83.95003127770221,82.92040708164042,84.61936836290317,83.79054597310476,83.73401461253412,84.48424461141965,6.160816202311457,4.643537342428361,,4.606670235367593,4.655225506444918,4.663890626539011,4.606689282313357,4.701076020161287,4.6550303318391535,4.651889700696341,4.69356914507887,5.296367691941549,5.013634856870954,,5.00566372715122,5.0161487762733685,5.018008421000968,5.005667861787609,5.025949845771277,5.016106849475828,5.015431947091141,5.0243517275777565,24.42527399415026,0.0,13.026777066536491,1.2430275783152773,0.0,6.995798154099922,0.5020040359271951,4.480367900189103,-3.2565820625515784,251.81567236728762,100.8433534454011,-171.26775622379114,-17.906758283438545,-4.507046216415555,-14.272313018649257,154.67827837135096,262.6985395479067,9.256179435372278,6.913119461787019,10.103789982611797,706.0,21.0,2.5754015345377983,1.3657068235585088,0.3535533905932738,0.10206207261596575,0.11785113019775792,0.03042903097250923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.10703808753134778,0.02992639636637849,13.759148545064338,11.659663444143577,8.276675564742526,7.660535890506478,8.494070918060979,6.323437871487451,4.796555699591001,2.9246452560547462,3.659344453516909,2.0168048928912428,2.8261214659717866,1.2617178306615526,1.6482355141448473,0.6921526681391783,1.1775584498895562,0.48800216541489627,2.3120048347613267,1.0766807419648092,3.2288166629837463,1.2854437870203215,4.079917653846692,1.3082923390092696,59.83799552426845,33.520092979649654,25.689801328392395,24.87466632414705,24.87466632414705,24.87466632414705,86.0,92.0,40.88185999999997,27.860139999999994,0.15789473684210525,18.06,8.256944444444445,3.9027777777777772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,38.0,0.0,1.0,38.0,6.0,2.0,5.0,33.0,8.0,18.0,30.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,4.0,3.0,0.0,18.0,6.0,0.0,2.0,3.0,0.0,1.0,6.0,1.0,0.0,0.0,0.0,1.0,3.1780538303479458,4.364689715020605,3.7495040759303713,3.8969093676180977,4.386703182557784,4.850564346237121,4.890349128221754,5.176502777590735,5.281933887297512,4.504659004391702 +2812,Clc1ccccc1C(c1ccccc1)(c1ccccc1)n1ccnc1,0,28.476190476190474,5.872350000000001,3.5952380952380953,6.752498530276308,155.3265588530746,115.24234161904762,1.8115861757722143,6.042947619047619,2.6782015027471133,7.442479452380951,258.00939996827447,26.8,6.143333333333333,4.4,7.269135802469135,141.2637817852955,103.25803317777785,2.069147850444445,6.338733333333335,3.0171239140374944,7.561934799999994,296.3320473400814,24.47945205479452,6.133094520547946,4.315068493150685,6.471841704718417,145.7046095060301,92.88825957534245,1.9242783356164392,6.311604109589042,2.7605135576977284,7.582743890410961,269.74445259654607,21.43877551020408,5.915959183673471,3.9489795918367347,5.34467120181406,149.5621186351406,80.69752464285713,1.73762792130804,6.088989795918368,2.3704018644494838,7.450752795918366,236.52511720876436,23.585585585585587,6.029640540540538,3.81981981981982,5.5175175175175175,150.00225073693667,89.6339754864865,1.8026817415152074,6.21303963963964,2.5688558929299674,7.5562790990991,249.69711652753548,23.274074074074075,6.018333333333332,3.2666666666666666,4.5851851851851855,147.47628100486764,87.74454619999999,1.8306219678832965,6.208266666666667,2.7919295839048925,7.536784533333335,249.45521503080337,17.35151515151515,5.824976363636363,2.4727272727272727,2.6397306397306397,154.231620775345,61.83745695757576,1.5107098756198905,5.998087272727274,2.482229704451927,7.449084096969698,191.4644983617105,10.53623188405797,5.5555,1.9710144927536233,1.3381642512077296,161.68844393084396,33.831368188405804,1.1644446136189348,5.678097826086957,2.061191626409018,7.246602231884058,134.55826662987602,5.236111111111111,5.291999999999999,1.5833333333333333,0.375,169.53975297917424,13.116327041666667,0.8610764228453612,5.365770833333332,1.6346021947873797,7.047628166666666,87.23218416431283,10.108843537414966,0.047022959183673434,0.007765755570421185,0.5742630385487528,2.961339268217575,1.4862666404932325,47.82964039229025,0.2517349926988804,0.05909977324263033,0.2637039043758539,0.03125103911564625,53.127192029754475,0.31020408163265356,0.003782278911564613,-0.0025039014018682373,0.275472411186697,0.5556246092401297,-0.16236282195235366,1.4686246500377886,-0.004180845525269834,0.004109538926681735,-0.0015785377513637456,0.0007433989795918456,0.536698386628959,-0.5387195974280119,-0.0013208065417948057,-0.0012436072525544948,0.09794831174478917,-0.04738857040081927,0.010611284158059854,-2.5978560915727047,-0.013945532658147537,-0.0028544373000342015,-0.06892314536808569,-9.957303606372788e-05,-4.473710724025103,0.49125364431486906,0.0022166180758017447,0.0003242525678650381,-0.017897635244574047,0.23264026363043752,-0.050349625049533435,2.358515258341431,0.009219622697560811,0.002884531908001277,-0.009611067347733678,0.0001335415451895063,2.362551034960729,0.5243610957896675,0.0017226006618863681,0.0007226690196448479,-0.1742201385058528,-0.07009882142157262,0.11617165534745101,2.5400041040632444,0.020415282852066608,0.00317890543604826,0.05241033719277724,0.0010670734969663639,5.1972991502582255,-0.4855631141345422,-0.005366292517006803,-8.728235111627627e-05,-0.20124716553287983,-0.7020625900108556,-0.1626026525297165,-2.348089289997482,-0.020271601512036663,-0.005678397581254746,0.013411946678167107,-0.0024666856764928094,-5.770706773299828,-1.995423623995053,-0.008124257884972164,-0.0005295682072544528,-0.07873634302205727,-0.6651712387162123,-0.21567834705961134,-9.554120976705832,-0.05736801591694186,-0.010624881467738597,-0.04564583742375403,-0.003064526128633267,-12.538883611893382,-1.1274770777876375,-0.0038844498669032713,-0.0002495828121379825,0.05479148181011537,-0.055077819283018435,-0.0950446725601207,-5.350424362614607,-0.025751712691291492,-0.005851118998323922,-0.03674805228270326,-0.0026741131322094163,-5.1828161269184765,1.3415532879818588,0.005847576530612252,0.00014830923498565355,0.18664965986394566,0.7978138443305989,0.28467678853721495,6.504199987339386,0.0538449012061954,0.007448837868480785,0.020027060787057755,0.0014764886621314918,12.438284690303865,,,0.5005714285714287,1.52,0.9,0.02,0.62,0.28,0.6782932323612598,0.0033137239103992046,0.017073723910399203,1.1260302940171587,0.3076464851667892,0.18560833341773542,1.8043235263784185,0.49325481858452463,2.071810813818148,1.8311124959846132,0.1694736955914019,0.0,0.0712246222421335,0.2406983178335354,8.193048243428583,1196.0,246.63870000000003,151.0,283.60493827160496,6523.715471829133,4840.178348,76.086619382433,253.80380000000002,112.48446311537876,312.58413699999994,10836.394798667527,1206.0,276.45,198.0,327.1111111111111,6356.870180338297,4646.611493000003,93.11165327000003,285.24300000000005,135.77057613168725,340.28706599999975,13334.942130303662,1787.0,447.71590000000003,315.0,472.44444444444446,10636.436493940197,6780.842948999998,140.47231850000006,460.74710000000005,201.5174897119342,553.5403040000001,19691.345039547865,2101.0,579.7640000000001,387.0,523.7777777777778,14657.087626243778,7908.3574149999995,170.2875362881879,596.7210000000001,232.29938271604942,730.1737739999999,23179.461486458906,2618.0,669.2900999999997,424.0,612.4444444444445,16650.24983179997,9949.371279000003,200.09767330818804,689.6474000000001,285.1430041152264,838.74698,27716.37993455644,3142.0,812.4749999999998,441.0,619.0,19909.29793565713,11845.513737,247.133965664245,838.116,376.9104938271605,1017.4659120000002,33676.454029158456,2863.0,961.1211,408.0,435.55555555555554,25448.217427931922,10203.180398,249.26712947728194,989.6844000000002,409.56790123456796,1229.0988760000002,31591.64222968223,1454.0,766.6590000000001,272.0,184.66666666666669,22313.005262456467,4668.7288100000005,160.693356679413,783.5775000000001,284.44444444444446,1000.031108,18569.04079492289,377.0,381.02399999999994,114.0,27.0,12206.862214500545,944.375547,61.99750244486601,386.33549999999985,117.69135802469134,507.42922799999997,6280.717259830523,424.5714285714286,1.9749642857142842,0.32616173395768977,24.11904761904762,124.37624926513814,62.42319890071577,2008.8448964761906,10.572869693352976,2.482190476190474,11.075563983785862,1.3125436428571426,2231.342065249688,13.959183673469411,0.17020255102040757,-0.11267556308407067,12.396258503401366,25.003107415805836,-7.306326987855915,66.08810925170049,-0.1881380486371425,0.1849292517006781,-0.07103419881136855,0.033452954081633055,24.151427398303152,-39.326530612244866,-0.09641887755102083,-0.09078332943647811,7.15022675736961,-3.459365639259807,0.7746237435383694,-189.64349468480745,-1.0180238840447702,-0.2083739229024967,-5.031389611870256,-0.0072688316326521354,-326.58088285383246,48.14285714285717,0.217228571428571,0.03177675165077373,-1.7539682539682566,22.798745835782878,-4.934263254854277,231.13449531746025,0.9035230243609594,0.28268412698412515,-0.9418846000779004,0.013087071428571618,231.53000142615144,58.20408163265309,0.19120867346938686,0.08021626118057812,-19.33843537414966,-7.78096917779456,12.895053743567063,281.94045555102014,2.2660963965793934,0.3528585034013569,5.8175474283982735,0.11844515816326638,576.900205678663,-65.5510204081632,-0.7244494897959184,-0.011783117400697296,-27.168367346938776,-94.77844965146551,-21.95135809151173,-316.9920541496601,-2.7366662041249494,-0.7665836734693907,1.8106128015525593,-0.33300256632652925,-779.0454143954768,-329.24489795918373,-1.3405025510204072,-0.08737875419698471,-12.99149659863945,-109.75325438817504,-35.58692726483587,-1576.4299611564622,-9.465722626295406,-1.7531054421768686,-7.531563174919416,-0.5056468112244891,-2068.915795962408,-155.59183673469397,-0.5360540816326514,-0.03444242807504158,7.56122448979592,-7.600739061056544,-13.116164813296656,-738.3585620408157,-3.553736351398226,-0.8074544217687013,-5.07123121501305,-0.36902761224489944,-715.2286255147498,96.59183673469383,0.4210255102040822,0.010678264918967055,13.438775510204087,57.44259679180312,20.496728774679475,468.3023990884358,3.876832886846069,0.5363163265306166,1.4419483766681584,0.1063071836734674,895.5564977018782,0.6845869362922395,0.5737310074500497,0.440406088021897,0.30554999549361933,0.26973031318856655,0.16152464478397666,0.1627680183608857,0.0839321291059193,0.10236074737231557,0.04474095273244149,0.0664125845010713,0.024941856470754257,0.041656670801259114,0.01314619994231116,0.028449193244120277,0.007265401160371268,17.0011030705503,5.679192652999303,3.188517285828856,2.177681998846717,0.3737274906581087,-0.42708251871574177,4.039747205721951,0.9938712351901698,5.041235639480893,0.7740063914740986,14.557719899957947,10.939683767013848,35.450517397852536,11.69055052971517,2.2080694847095517,0.997322697948803,3.1834511419716947,2.2279152972743432,3.044365368911995,1.168508571748842,3.493032656024666,2.423917361481764,22.455867512145673,15.584926845242355,0.23321398389618653,0.4056129330096587,0.5757045826261672,0.7419473080389123,0.8270400903432634,0.838334829593001,1.7362323444345709,908.2706613028778,0.0,2.0,0.0,0.0,15.0,0.0,3.0,1.0,0.0,4.037961045506579,3.036779159814898,2.04899658121357,1.0835660715315942,0.5894020833848446,0.5238095238095237,91.66081448812955,775.5065547909676,38.64030384555116,18.46444178073732,36.64188723986781,,8.0,345.0,5.538925252383345,0.0,0.0,0.0,21.71298778883231,0.0,6.196843571613076,42.85599898868567,64.14838178489305,11.600939890232516,12.514285714285716,38.0,22.5,0.5,15.5,0.0005714285714286404,0.0,7.0,0.12854185152321784,0.08821593153390378,-0.04032591998931406,0.0,0.05485778781038342,0.0,0.5734693877551023,0.7594285714285712,0.4449275362318844,0.4852534562211985,0.7594285714285712,16.957330809031497,0.08284309775998011,0.4268430977599801,28.150757350428968,7.69116212916973,4.640208335443385,45.108088159460465,12.331370464613116,0.6591422121896165,0.05707762557077625,0.03995433789954338,0.19178082191780818,0.045454545454545456,0.41195015532083257,-0.6137691021071837,-0.03585688396745391,-0.014613550050171037,-0.03230363695300967,0.5880498446791675,0.8761419810168698,0.038379260909858465,0.020860523357544517,0.03809312960942912,-6.01590357918684,0.5912105577987138,0.7527528526736468,1.3754067488840127,0.6232971372161894,0.6826679712364423,1.0906013534912815,0.5958348794980792,0.8183905800894029,0.6708192328844211,0.8577184043227765,0.672684112532518,0.8074027715299121,0.7546852818082929,1.0763707733821635,1.4355341371745927,1.1876022664268617,1.023527159630183,1.0208760810389026,0.7585950214006173,0.8788403209097396,0.9550945969171645,1.129091783254044,0.9044835212535653,0.9170593138564029,0.8242765814266487,0.8496400089900876,1.0248857952749557,1.665209420392046,0.9685240467592381,1.0023939248544604,0.8249097915742364,0.8897346189869587,0.8349260171781564,0.8180187289143818,0.865182317708277,0.8858984267545121,0.9086958762261588,1.0489064119726517,1.156265469337531,1.7458445612443636,1.1028861242933583,0.9322741906623828,0.9047061427015042,0.831928571050102,0.981781955573346,0.5833217863606581,1.0874590267531268,0.8013822562198252,0.9681832909625641,1.0699636521456082,1.0573907277633812,1.2088186903586706,1.1381718481825307,1.088877093561924,0.9672880106563571,0.980750745852413,1.0338041796160586,0.8529203196249957,1.0842793038938243,0.9962730832040707,1.3636567559851542,1.1724985327697852,0.9573675798036346,0.7366238894373148,1.1129493589732573,1.1054542428671708,1.3600648611073614,1.236240673363691,1.2464533141723029,1.2755152741891216,1.2810616010800864,1.217245704943751,1.2214448378098972,1.0544208284291638,0.8035271139060949,0.5173612601399201,0.9780675371744845,1.0183115522162869,1.2223989401673292,1.187515427991299,1.1299701267330498,1.3056055970854845,1.06364248715085,1.18947506697041,0.9187369149095259,0.8310435089242119,0.6669847090427694,0.3895607107601184,0.7925439622683128,0.7636732267389807,0.922889420146721,0.951563043166041,0.8757805605647853,1.0858479562533967,0.7284459895722044,0.9729198503584751,3.5,0.0,3.1111111111111125,2.7777777777777777,1.4427777777777782,0.4936111111111112,0.5407256235827663,0.24560657596371877,0.0,0.0,5595.900781942269,6120.613112135374,2398.784025458114,2223.0509920990908,9.483505050686322,0.4318580865438004,5.38797670576846,0.7601236175600239,1.0,0.045454545454545456,1.3543563772721816,2.355538262963863,3.3433208415651907,4.3087513512471665,4.802915339393916,4.868507898969237,0.12499999999999999,0.0,0.07977207977207983,0.06313131313131314,0.02623232323232324,0.00783509700176367,0.011265117157974295,0.012280328798185941,0.0,0.0,0.32551625909364007,18.367346938775512,8.347140039447732,3.4530321046373365,151.9096739675235,0.0,4.166533262788925,101.30934130926792,,76.86802895827397,77.35102573424456,76.78816319700105,76.84630059536941,87.25317652307123,77.52116319500634,77.77071211851812,84.57714011477806,0.030686406460296144,0.08043472757192695,-0.32242856205844184,0.4796972688384339,0.1876261241673127,-0.10924205491046472,0.03070532494060982,-0.016608122217918526,0.06953561242629962,-0.005986023434502796,0.023787976356269475,0.010102141034074887,-0.05329191172403616,-0.028088545781129726,-0.1601398912542706,0.17056349646377897,-0.016002411783551693,0.007139556166407928,-0.05431477364800463,-0.05539767240396675,-0.04829861678682746,-0.26136566135118877,-0.003186231206432918,-0.08420755084363486,0.04859642376466067,0.0471390596058311,0.04175415578364024,-0.0311662670991398,0.0785591391460065,-0.03387657616591892,0.04931074620250761,0.03662431908538482,0.04880783376543623,-0.03644643552199797,0.004273187355317312,0.04446971399575486,0.051871521588883654,0.036633182849208315,0.09305842980654787,-0.3033803793922254,-0.023671324043788126,0.07816340095536174,0.053105231049838136,0.08109831149492554,0.053788792437450945,0.19874691395572758,0.034145216516404384,0.09782747688504637,-0.04803349783161352,-0.11412068934338784,-0.011239389435423913,-0.3504442250740375,-0.23707604108239375,-0.10940341934590901,-0.04909276487840738,-0.08052754722218967,-0.0960815459975193,0.050859871452836845,-0.07893131704724116,-0.10862058679984214,-0.19739385782454424,-0.1727721527103071,-0.06819274730607199,-0.13710849860899213,-0.22461838326163075,-0.14511416806612593,-0.19975314257737714,-0.22789051018252424,-0.17977871800148584,-0.17309503828466488,-0.09806157540211104,-0.23601630601652804,-0.11153373515126697,-0.08260751629284889,-0.03213889619300058,0.09541182024979615,-0.018598956179772568,-0.06394860112622804,-0.11186419798960169,-0.10229691317525767,-0.09900408541844194,-0.13935346300495696,-0.08556877492341,-0.0975548665176165,0.13271085688649611,0.1243557749688062,0.01909784999550402,0.32502467917078,0.2694098082219406,0.1915381673659459,0.13598680512738728,0.21389517853246343,0.1260383493841856,0.07594525698987542,0.04724606617615694,0.23412275738830063,32.50293579678357,21.621114077109045,2.94168275343288,13.883043062821882,26.003286310912284,33.627746552609025,39.31647193493989,40.536304167999056,40.602421468050984,51.7952703454537,45.77781239961533,4.236842389785048,0.0,1.7806155560533372,6.017457945838385,2423.9810512628815,2302.7224925852674,1901.4598409212422,66.0,39.0,58.0,84.0,106.0,110.0,121.0,117.0,94.0,344.1080262240005,28.0,4.90527477843843,5.796057750765372,6.71295620067707,7.639642287858013,8.576405051048084,9.51613246360028,10.459926872262475,11.404393258146767,12.350636085721526,0.7142857142857143,0.9654285714285715,1.1015014845667226,0.6835836990695038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.747868277730254,0.9592903828197945,0.9913900738736865,0.6955314132573446,17.0,1.0,0.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,4.567099647791355,5.538925252383345,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,90.46371178023347,17.193270051855603,22.979771948664474,6.3273200747645415,214.42222245142065,-319.47004569846285,-18.663696690431536,-7.606429659487209,-16.814212931498044,306.0830369395502,456.0365090925048,19.976607155119623,10.858012121250113,19.827674308369772,0.5,0.9480911653348919,0.2140414932332952,0.0,0.08227713161924535,0.0,0.051908834665108206,4.0,0.14285714285714285,0.251164067521503,0.43683227048418277,0.6200155850325139,0.7990537302284381,0.8906959592372967,0.9028600353538544,5.376700000000004,,0.9327731092436975,0.4879432787375836,0.5821600835107351,0.9461851242422312,-0.8024186822351957,0.5154063957361761,0.4903101588860408,-0.5553606267492481,101.84300000000002,0.0,0.0,9.551078168738563,0.0,5.538925252383345,0.0,125.36313396528558,0.0,0.0,4.04305126783455,0.0,5.3612921657094255,2.3978952727983707,6.92461239604856,4.442651256490317,8.61122983334262,6.326149473155099,10.369640025590375,30.0,34.47440980095742,4.314171390778534,0.0,0.0,0.0,0.0,4.009789619551526,2.1238888888888887,40.548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.26306235180235,0.0,0.0,0.0,9.551078168738563,5.538925252383345,0.0,16.690354475090988,103.65014617645325,5.022633313741326,0.0,0.0,28.710515360919157,31.410467664670666,33.831740280045544,202.61868261853587,,153.66143606780844,154.6630160061901,153.52975358732124,153.61690638079943,174.9557075081942,155.0010938783538,155.50219942432534,169.46528218053572,33.83174028004554,202.61868261853587,,152.80328480730427,154.21410818975153,152.99416631049144,152.74641606649658,175.30877172837774,154.52691999427654,155.05111407815025,169.70964085630538,5.142418792854633,125.91422711886156,,97.34634553929536,97.95313027712854,97.38339513133116,97.3216691999313,109.22581603907355,98.10484317755426,98.35180545953936,105.37194850407835,1.3532696112018217,8.104747304741435,,6.146457442712338,6.186520640247604,6.1411901434928495,6.144676255231977,6.998228300327768,6.200043755134152,6.220087976973014,6.778611287221429,2.579150107664195,101.30934130926792,,76.86802895827397,77.35102573424456,76.78816319700105,76.84630059536941,87.25317652307123,77.52116319500634,77.77071211851812,84.57714011477806,40.29019607843137,0.0,0.0,6.691467151675484,0.0,0.0,0.0,41.63838310269483,0.0,0.0,0.0,0.0,0.0,0.0,-0.585949074074074,0.0,0.0,29.21231935680847,493.48643793892563,56.88296784543163,98.93260704448224,140.41947534573802,180.967556752381,201.72244425454448,204.47733175670794,848.0,130.361424748518,27.018821452045163,73.4765216909693,17.82,17.82,1.0,8.845192130832828,5.807354922057604,4.206446118930289,4.923194093302647,,4.938885142833594,4.936858844955231,4.936094102719789,4.938875426194286,4.935555763826049,4.937708711271911,4.938129561624422,4.937984231375533,0.16825784475721156,0.19692776373210588,,0.19755540571334376,0.19747435379820924,0.19744376410879155,0.19755501704777145,0.19742223055304198,0.19750834845087645,0.19752518246497686,0.19751936925502134,2.3529088707981853,2.51024825769117,,2.5134303580161745,2.5130199994833284,2.5128650828659747,2.513428390639209,2.5127560152022,2.5131921318453663,2.5132773601249583,2.513247929469957,262.3,199.33745813799428,152.96066759885005,,150.63048453854856,151.16284675632895,151.20782679184018,150.61900783482614,151.1160436549359,151.0548467602815,151.01436928371876,151.08033826539443,7.973498325519771,6.118426703954002,,6.025219381541942,6.046513870253158,6.048313071673607,6.024760313393045,6.044641746197437,6.04219387041126,6.0405747713487505,6.043213530615777,6.2112898899425515,5.946471545699953,,5.931120447330359,5.934648442913813,5.93494595877615,5.931044253318296,5.934338774569435,5.933933726317388,5.933665724980905,5.934102468697864,2.1238888888888887,4.314171390778534,0.7258390022675739,2.6980015432098776,0.0,28.831421170319974,5.64298863063744,0.0,0.0,304.2458388818217,111.60789451626513,-166.2858390039237,-9.71455228704747,-3.959186642950563,-8.751886263364405,159.31783053739665,237.369401456947,10.397929089027063,5.651652415641594,10.320408758997695,1225.0,44.0,1.1714662719452438,0.7072395655548414,0.05555555555555555,0.02795084971874737,0.6341971654233105,0.26966658161087875,0.10601379391465905,0.036019565023346155,0.0,0.0,0.0,0.0,0.14433756729740643,0.03849001794597505,0.35962626221396804,0.1111728166607237,0.3520620726159658,0.106328456720785,17.11467340730599,14.343275186251242,12.331370464613116,8.555399873821342,10.519482214354095,6.29946114657509,9.44054506493137,4.868063488143319,8.598302779274508,3.7582400295250853,7.039733957113559,2.643836785899951,4.5822337881385025,1.4460819936542277,3.4423523825385534,0.8791135404049234,3.8977345246134307,1.9462163065816673,8.226392662331396,3.3796045711252685,15.570178728291634,5.327828465817005,78.59184841222778,66.08446198786687,48.94159682628732,33.75084014760347,30.0021850464919,29.733027732572268,134.0,164.0,52.455481,20.414518999999995,0.5714285714285714,184.03,6.118055555555555,5.611111111111112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,23.0,42.0,0.0,0.0,45.0,23.0,0.0,11.0,34.0,23.0,28.0,22.0,0.0,0.0,0.0,22.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,2.0,0.0,1.0,25.0,3.0,0.0,2.0,0.0,0.0,4.0,4.0,0.0,0.0,1.0,1.0,4.0,3.7013019741124933,7.403213425617006,4.300680995219929,4.931772445670531,5.5747646898845575,6.09765284505949,6.342121418721152,6.80755503729048,7.169758901503061,7.346090851822937 +55473,Cn1nc(CO)nc1NCCCOc1cccc(CN2CCCCC2)c1,0,19.745454545454546,6.0133545454545425,2.8545454545454545,5.781818181818182,167.25104654669494,77.5163709454546,1.3312596771021992,6.068776363636361,2.9656565656565657,7.56030676363636,192.68367530493413,22.70175438596491,6.366296491228071,3.473684210526316,5.543859649122807,150.8790963327325,84.77024392982459,1.6487115202807023,6.4883964912280705,2.7660818713450297,7.780768982456137,237.85458882088435,17.533980582524272,6.243093203883495,3.058252427184466,4.019417475728155,161.46455966070135,63.24081545631068,1.350824496087738,6.31961067961165,2.567691477885653,7.738136699029124,187.21930511725074,13.609022556390977,5.999811278195489,2.5413533834586466,2.601503759398496,164.8221287357855,47.21798530075187,1.1732633338306016,6.063438345864659,2.3696741854636594,7.5651247819548875,153.6611774453181,11.838235294117647,5.901132352941177,2.4338235294117645,2.0294117647058822,167.1916590675681,39.98614064705881,1.10301619343686,5.957262500000001,2.142156862745098,7.497336058823529,140.50002990286842,12.462809917355372,5.865495867768594,2.4297520661157024,2.0661157024793386,162.48218220832536,42.431284487603314,1.1872358710724957,5.939307438016528,2.2079889807162534,7.453714347107439,151.46360474400313,11.523809523809524,5.796285714285715,2.2857142857142856,1.9365079365079365,163.25421929907912,38.760020865079355,1.1279479853878256,5.866390476190476,2.1675485008818334,7.40625038095238,141.41715442353475,10.983333333333333,5.802200000000001,2.225,2.033333333333333,165.42814833729472,36.78533831666665,1.04497215816885,5.861175833333335,2.1319444444444446,7.434063799999999,130.91051646283753,11.297029702970297,5.846752475247524,2.277227722772277,2.118811881188119,166.50016851638824,38.28285172277227,1.0387954295927326,5.900400990099011,2.131738173817382,7.482713267326733,132.27300747503685,7.303801652892561,0.10845454545454544,0.01802668619670387,0.46611570247933903,3.449256198347106,1.4469595840900962,34.798500969917356,0.21262665496203165,0.1036362314049586,0.7065564738292008,0.06067555702479337,48.63688377367671,0.4894997825141364,0.005664912280701816,-0.00807963627681383,0.141220820646658,1.124268522546035,-0.3656248803656865,2.266521319077868,-0.023471607267170968,0.006908744671596362,-0.02447247595572957,0.0005657137886035758,-1.8899513261215048,-0.16028885501083215,-0.0010631067961164563,-0.00019662695545548498,-0.014924175559656564,0.15392120677204515,0.08049012054868646,-0.7614988103410052,-0.0038052817123727122,-0.001523892481745949,0.016121764868455055,-0.0014133264863998819,-1.132023222950504,-0.2845261915118375,0.0008172932330827211,0.00017420000834538765,-0.04355931150189524,-0.1874653576088983,-0.03423350927283717,-1.3853816188578865,-0.00998200329194108,2.938718697571225e-05,0.0801299391730014,0.0011087431802646738,-2.4607326325218706,-0.41102090422946036,-0.0050183823529411685,-0.0004613524888802036,-0.08683762761302868,-0.4781332036947011,0.13511716292405684,-1.9427450632328638,0.002900185826755151,-0.0053111912980068,-0.012052611678280112,-0.0013615527467185208,-0.5535008133794734,-0.6026746806912096,0.0001586776859504095,-4.473980778126994e-05,-0.04808414725770095,-0.3724718256949662,0.014150058108134278,-2.9034481766791878,-0.011484839953641185,-0.0015705364387678354,0.003544536271809005,0.0017021457550714025,-3.8535327166542013,-0.3615217106126196,0.004785714285714268,0.000685124434580089,-0.011281647645284007,-0.14305129214220128,-0.038079940303043305,-1.7874400716489567,-0.01659021261051066,0.0031247498360225637,-0.05063215123821186,0.0037170103633740533,-3.9077918650548136,0.027410468319559244,0.0017899999999999817,-0.0005482273438831957,0.015702479338842973,0.07680440771349861,-0.12694891245337447,0.0899551164462799,-0.014350862824990235,0.002019480716253439,-0.017844352617079888,0.00022407327823695223,-1.918189843044868,0.270095736846412,-0.007863366336633674,-0.0008948433955320348,0.04459536862777187,0.0963783651092382,-0.1606695208946006,1.3606321238720234,0.007717477387371664,-0.005797059487766966,-0.036404458627680956,-0.00660957106619752,2.2530935420841156,,,0.46794871794871795,1.0865384615384615,0.4230769230769231,0.038461538461538464,0.6634615384615384,-0.2403846153846154,0.8941282407906054,0.006642262373294017,0.01656533929637094,0.7254346581648812,0.20960909649011455,0.28044916276632587,1.6195628989554864,0.4900582592564404,2.0397481055891666,1.4946966936996096,0.39996855811436294,0.14508285377519378,0.0,0.5450514118895567,6.531493184872742,1086.0,330.73449999999985,157.0,318.0,9198.807560068222,4263.400402000003,73.21928224062096,333.78269999999986,163.11111111111111,415.8168719999998,10597.602141771376,1294.0,362.87890000000004,198.0,316.0,8600.108490965753,4831.903904000002,93.97655665600003,369.83860000000004,157.66666666666669,443.5038319999998,13557.711562790408,1806.0,643.0386,315.0,414.0,16630.84964505224,6513.803992,139.13492309703702,650.9198999999999,264.4722222222223,797.0280799999998,19283.588427076826,1810.0,797.9749,338.0,346.0,21921.34312185947,6279.992044999999,156.04402339947,806.4372999999997,315.1666666666667,1006.161596,20436.936600227305,1610.0,802.5540000000001,331.0,276.0,22738.065633189264,5438.115127999999,150.01020230741298,810.1877000000001,291.3333333333333,1019.637704,19108.004066790105,1508.0,709.7249999999999,294.0,250.0,19660.344047207367,5134.185423000001,143.65554039977198,718.6561999999999,267.1666666666667,901.8994360000002,18327.09617402438,1452.0,730.3320000000001,288.0,244.0,20570.03163168397,4883.762628999999,142.12144615886604,739.1652,273.11111111111103,933.1875479999999,17818.56145736538,1318.0,696.2640000000001,267.0,244.0,19851.377800475366,4414.2405979999985,125.396658980262,703.3411000000002,255.83333333333337,892.0876559999998,15709.261975540503,1141.0,590.5219999999999,230.0,214.0,16816.517020155214,3866.5680239999997,104.918338388866,595.9405000000002,215.3055555555556,755.75404,13359.573754978723,401.7090909090909,5.964999999999999,0.9914677408187128,25.636363636363647,189.70909090909083,79.58277712495529,1913.9175533454547,11.69446602291174,5.699992727272723,38.860606060606045,3.337155636363635,2675.028607552219,27.901487603305775,0.3229000000000035,-0.4605392677783883,8.049586776859506,64.083305785124,-20.84061818084413,129.1917151874385,-1.337881614228745,0.39379844628099264,-1.3949311294765854,0.03224568595040382,-107.72722558892578,-16.509752066115713,-0.10949999999999499,-0.02025257641191495,-1.537190082644626,15.85388429752065,8.290482416514704,-78.43437746512353,-0.39194401637438936,-0.15696092561983274,1.6605417814508707,-0.14557262809918783,-116.59839196390192,-37.841983471074386,0.1087000000000019,0.023168601109936557,-5.793388429752066,-24.932892561983472,-4.5530567332873435,-184.2557553080989,-1.3276064378281638,0.003908495867769729,10.657281910009186,0.14746284297520162,-327.27744012540876,-55.898842975206605,-0.6824999999999989,-0.06274393848770769,-11.809917355371901,-65.02611570247934,18.37593415767173,-264.21332859966947,0.3944252724387005,-0.7223220165289248,-1.6391551882460953,-0.18517117355371884,-75.27611061960839,-72.92363636363636,0.01919999999999955,-0.005413516741533663,-5.818181818181815,-45.06909090909091,1.7121570310842475,-351.3172293781817,-1.3896656343905833,-0.1900349090909081,0.4288888888888896,0.2059596363636397,-466.27745871515833,-45.55173553719007,0.6029999999999978,0.08632567875709121,-1.4214876033057848,-18.02446280991736,-4.798072478183457,-225.21744902776854,-2.090366788924343,0.393718479338843,-6.379651056014694,0.4683433057851307,-492.38177499690653,3.2892561983471094,0.2147999999999978,-0.06578728126598347,1.8842975206611567,9.216528925619834,-15.233869494404937,10.794613973553588,-1.7221035389988282,0.2423376859504127,-2.1413223140495865,0.02688879338843427,-230.18278116538417,27.279669421487615,-0.794200000000001,-0.09037918294873552,4.504132231404959,9.734214876033057,-16.22762161035466,137.42384451107435,0.779465216124538,-0.5855030082644636,-3.6768503213957766,-0.6675666776859496,227.56244775049566,0.6996932183267544,0.5971071214072168,0.45505409788098045,0.33683494668641817,0.2988735285690009,0.18739898221974768,0.19757726620367244,0.10396829444491566,0.12962511368907542,0.05981692102041589,0.08908065096776882,0.03665807633601589,0.060335211476252565,0.020342295392113824,0.03985075812802096,0.012267393445841594,8.010394148558241,5.69420511502967,3.5206021030646566,2.193584467832948,0.3897305369991965,-0.5247904327036728,3.182851552712267,0.9878609089076156,6.007545259877746,0.9969596372001588,14.693555539317599,10.954708316299685,16.004512718187193,11.705589985373253,1.982446806316925,0.7787632640874191,3.463193078032032,2.2434393411527207,6.002696713752512,1.321342683551274,3.6767115273708244,2.4394402192008307,20.889978575957297,14.70632949702411,0.25275702543644324,0.5654620771918922,0.7808400493226754,0.8587370595671402,0.8587370595671402,0.8587370595671402,1.2490369566983945,682.3190454717195,0.0,1.0,6.0,0.0,5.0,4.0,1.0,0.0,0.0,4.2763947652466285,2.4144874998449968,1.132084772845281,0.6682706818575195,0.6682706818575195,0.6682706818575195,361.2051379619779,1623.5748300668808,58.315562085872585,29.519542364852377,54.502165039431276,,17.0,736.0,0.0,0.0,6.606881964512918,18.37962574349934,25.259846268035066,37.91542917230017,11.729474917822374,6.06636706846161,38.498459869489885,9.843390348640755,12.166666666666666,28.25,11.0,1.0,17.25,0.0,0.032051282051282076,-6.25,0.1127927927927928,0.024918032786885203,-0.0878747600059076,0.03827838827838825,0.15418404907975447,0.0,0.5533333333333336,0.8358974358974357,0.44054054054054076,0.5284153005464484,0.7976190476190474,23.24733426055574,0.17269882170564443,0.43069882170564444,18.86130111228691,5.449836508742979,7.291678231924473,42.10863537284265,12.741514740667451,0.5598159509202455,0.0684931506849315,0.0,0.23013698630136986,0.5789473684210527,0.22932160641193064,-0.5580163859654101,-0.0391448627725092,-0.010145752472098367,-0.03100091033141168,0.7706783935880693,1.875319027545713,0.048255680617606614,0.034096709591740236,0.05068429804177603,-4.256021618139103,0.9221126955162868,0.8835143600829396,1.5261978180479547,0.831466965285554,0.6292182439998792,1.620976160548066,0.9281142861860172,1.3321554772716335,0.8582836435752023,0.9294353514791351,0.9383835640978089,1.1711477167687019,1.0388621960361772,1.1214935017374812,1.218805729678139,1.267919851270398,1.0777871447154659,1.1249809390141836,1.0379990699887713,1.0608262897993745,1.1045961973138645,0.8712994143262938,1.1411010399082706,1.0367699918914886,1.028406650735647,0.9979291481007626,1.0405775604477876,1.0927851543752996,1.0872206392923083,1.0649457134228166,1.0292294014946513,1.0398672106059683,1.0000519289314826,0.6464690852208502,0.977005469191549,1.0378163061368553,1.0368565594065995,1.0155819486218625,1.0469060332210995,1.285513141426783,1.181491644961608,0.8930578918779412,1.0364946532180033,0.9453300257687293,1.0213759161940579,0.7282817603023745,0.9643120292213884,0.9792696717291145,1.0392990281195225,0.8605142948189504,0.9092905464888033,1.0880077369439065,1.049192325788071,1.0077720542017776,1.0427379355543616,1.0989207746513772,0.8879084839197707,0.7018091079226452,0.8320937596998276,1.1043957803259357,1.0012576135731743,0.8059370135313132,0.7439437917173475,0.9194528875379935,0.9284892795531098,0.9933368318470918,1.0055210844489035,1.111611601798196,0.8341890342808367,1.0504578468942165,0.7971542247830122,1.0993489987027867,0.9723454331492714,0.9735842414082144,1.0909460972563334,0.8337765957446804,0.9381469235192644,0.9892239935061286,0.973020180020192,1.0586639118883807,0.9734301893846119,0.9061232844666255,1.0394755228677053,1.0267188469796091,0.9609436547891234,1.1755160880715059,1.25533608955337,0.7925005266484092,0.9807616759375769,0.9956073553833632,0.9562702564668474,0.9329284385397064,1.1509040218713185,1.0213580816908896,1.2934655591585265,0.9227630420954477,4.5,0.08193245587184982,1.5555555555555562,1.6041666666666665,0.8633333333333334,0.35083333333333333,0.2759637188208616,0.1866496598639456,0.1148904006046863,0.11938271604938272,4562.907058379579,5344.588263834028,2530.295573752177,2234.2803930565856,17.56356835949043,0.49601940007967615,8.851697718557604,0.9842033605223965,1.0,0.5789473684210527,1.5049649482780318,3.366872213679663,4.649274940679379,5.1130890316671405,5.1130890316671405,5.1130890316671405,0.1607142857142857,0.004312234519571042,0.043209876543209895,0.04861111111111111,0.030833333333333334,0.012993827160493826,0.011038548752834465,0.008484075448361163,0.005744520030234315,0.0059691358024691376,0.33191094841590396,20.727040816326532,11.11111111111111,6.8429752066115705,154.54138570381616,1.0,4.170082156095965,169.9134724313555,,138.36471288055492,134.8745333597317,135.67457954841078,138.40589445920665,214.57241009751368,137.0509091977667,138.55826010390706,183.6564112172212,0.06701986250136972,0.05223305539624475,-0.4482041895360207,0.3029737464227945,0.3259452061243777,-0.2526849294105236,0.06513272859187907,-0.11038882811452896,0.06666341083554496,-0.0346362631469504,0.00932358624037704,-0.038858396745072424,-0.021945948511259493,-0.00980232586528166,-0.010907548581582216,-0.032018178062383745,0.044624463339604827,0.05562706894768021,-0.02188309234927408,-0.017896541301711276,-0.014704244462453856,0.02281737619794599,-0.023293176951344106,-0.023274994923979452,-0.03895590338206339,0.007535813548960548,0.00966345153205361,-0.09345171439236385,-0.05434950227783377,-0.02365892568752328,-0.03981153153854307,-0.04694615213564616,0.00028356093788167394,0.11340910760994821,0.01827330863747352,-0.05059396165207587,-0.056274926916543754,-0.04627175681672495,-0.02559275087201333,-0.18630058406341252,-0.13861921997090965,0.09338005318857867,-0.05582841240524498,0.013639803660895816,-0.051248402474741855,-0.017058242510978174,-0.022439888704477166,-0.011380268850181547,-0.08251520363405943,0.001463080088394388,-0.002481865346358029,-0.10315925209542222,-0.10798612926272505,0.009779166096772757,-0.0834360129244982,-0.05401411199217714,-0.015154318306220185,0.00501663547515077,0.02805323656733581,-0.07923066647497291,-0.049497744844897905,0.04412645192192536,0.03800612198515788,-0.024203534841832703,-0.041473084026275545,-0.02631721073743012,-0.05136543304535343,-0.07802508398334698,0.030151133379335292,-0.07166044486693275,0.061260424224127044,-0.080346263203026,0.003752904257566159,0.016504610226320035,-0.0304119868677493,0.03368794326241133,0.022266947798862697,-0.08773494011113299,0.002585028490854948,-0.06749324456782167,0.01948624230036229,-0.02525538053649408,0.0036929743907483364,-0.039438995556763695,0.03698015768807805,-0.07250379690106491,-0.04963992748127243,0.09567446106312756,0.02794178210230455,-0.11103939782508562,0.03910030851754977,0.0362959074380856,-0.055936610287525355,-0.05152377761169757,-0.10893301009987769,0.04632479236475131,19.86124617987442,11.440313841437227,1.2034259748353637,14.04019049398383,31.200423408760948,35.84497676096402,36.31250136467969,36.31250136467969,36.31250136467969,53.03345074531833,38.86211403618985,10.399182510973436,3.7721541981550386,0.0,14.171336709128475,10650.833846706813,9978.264499824425,897.4823093830983,59.0,36.0,44.0,54.0,60.0,53.0,52.0,56.0,57.0,359.23212516800083,28.0,4.859812404361672,5.666426688112432,6.499787040655854,7.32052696227274,8.158516244806831,8.984066927653044,9.823740634445873,10.65157262785174,11.49199800528723,0.5878787878787879,0.9720000000000003,1.143530241806895,0.5441587635576478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6333260424605337,0.957789661319073,0.9972853075547908,0.5831985307995485,4.0,2.0,0.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,10.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,15.160178952647087,12.356393797796823,5.824404497999927,5.948339280986494,0.0,4.899909730850478,4.681802935145185,10.082660329248245,0.0,18.553555759849232,50.04816330922339,20.13718479450234,6.606881964512918,153.00841227789599,-372.32078816091433,-26.118312161562383,-6.769468875652988,-20.68448823116191,514.2135502398739,1251.2540419059665,32.1972499243102,22.75007348919939,33.81767680826937,0.47058823529411764,0.8783335054502794,0.2028160232404214,22.942219643411768,0.09069770509821078,79.96215384314729,0.12166649454972053,9.0,0.32142857142857145,0.26031332123434264,0.5823668445683028,0.8041836472833663,0.8844094270255842,0.8844094270255842,0.8844094270255842,2.1742999999999997,,1.2142857142857144,1.4997673336435549,1.4725162990448415,1.2110320506083252,-4.755497619587395,1.3233629130966955,1.1983045659983018,-2.3946120973331952,101.09750000000005,9.843390348640755,0.0,19.66437299524391,7.04767198267719,38.83492486212954,31.557939786256977,35.65332426354336,0.0,5.749511833283905,4.04305126783455,0.0,5.303304908059076,2.3978952727983707,6.744059186311348,4.727387818712341,8.263848131368906,6.78332520060396,9.824281994355154,32.333333333333336,8.416902438242937,8.287397903987088,0.0,0.0,0.0,0.0,3.3409504611124614,1.6353956685681212,53.460000000000015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.89416329937923,10.05365155780638,5.948339280986494,5.749511833283905,51.01205157233525,20.199310353102682,0.0,37.07114248140096,24.26546827384644,0.0,0.0,0.0,29.928731995670628,34.83293233532935,33.82192782261061,339.826944862711,,276.63601916770324,269.63370000149087,271.2358886122797,276.71863260682807,430.24224272262444,274.00002124837215,277.02434293350655,367.8654252261347,33.82192782261061,339.82694486271095,,275.5450210637048,268.3011267981846,269.95471815717644,275.6304820406356,433.9003178146147,272.8169341328155,275.94697410208016,369.7074345317758,4.60783272735433,266.66959769465603,,217.72793049211873,212.26081106028255,214.4394039726837,217.79516563887677,342.6106735151505,215.71091234209217,218.02700642311743,290.57071951410273,1.3008433777927157,13.07026711010427,,10.63984689106551,10.370526923134264,10.432149562010759,10.64302433103185,16.547778566254784,10.53846235570662,10.654782420519483,14.14867020100518,2.3266013944938964,169.9134724313555,,138.36471288055492,134.8745333597317,135.67457954841078,138.40589445920665,214.57241009751368,137.0509091977667,138.55826010390706,183.6564112172212,52.678431372549014,0.0,1.804395498426771,0.0,0.0,0.0,9.047862962941277,54.850691915513494,9.511777614605066,3.2110486930928985,5.8890423437893675,0.0,0.0,2.5218930819006786,0.0,0.0,0.0,32.07591919397517,586.0434052516479,82.77307215529176,185.17797175238147,255.71012173736585,281.2198967416927,281.2198967416927,281.2198967416927,525.0,127.45644753544741,81.1785572661221,74.0871537800437,75.44,75.44,0.8888888888888888,7.347259429313724,5.807354922057604,3.5119253751642927,5.030007230328739,,5.025377724161149,5.025569206512065,5.028017699561114,5.025382914085273,5.029450311554314,5.025566048500156,5.025355201326835,5.026044665371483,0.13507405289093433,0.19346181655110534,,0.19328375862158265,0.19329112332738713,0.19338529613696592,0.19328395823404895,0.19344039659824283,0.19329100186539064,0.19328289235872445,0.1933094102065955,2.211675872045024,2.5709328665791524,,2.570012065134822,2.57005016748523,2.5705372559483495,2.57001309787738,2.5708221411702175,2.5700495390961318,2.5700075833055904,2.57014477097196,286.13000000000056,619.9735934112708,150.46635244995238,,150.82169310632744,150.7910903618924,150.5462750496483,150.8212966018075,150.46273586416703,150.79864607629335,150.82454607072,150.81251348562498,23.8451382081258,5.787167401921246,,5.800834350243363,5.799657321611246,5.790241348063396,5.800819100069519,5.787028302467963,5.799947926011283,5.800944079643077,5.800481287908653,7.385188330887396,5.969250932459361,,5.971609743745606,5.971406816375034,5.969781957368435,5.971607114780018,5.9692268963264254,5.971456922287071,5.971628659707565,5.971548877832492,7.524438012357489,6.718293561500875,16.349909080421067,1.3177246561459226,2.023225804966539,8.416902438242937,4.85121662069362,4.660560993911445,1.804395498426771,337.6927635106764,102.09057312178581,-248.42060696288814,-17.42671149808939,-4.516738308416149,-13.801144831271566,343.09457414427857,834.8641774487909,21.48271228217337,15.179348680887108,22.563896687805162,2141.0,33.0,1.2188655079899087,0.5647170730688088,0.0,0.0,0.11785113019775792,0.022360679774997897,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.022360679774997897,0.41770321430219104,0.15618712724532602,0.49036910394333033,0.13675796906216547,18.192023676495612,15.524785156587637,12.741514740667453,9.431378507219708,10.759447028484033,6.746363359910917,8.693399712961588,4.574604955576289,6.9997561392100724,3.2301137351024583,5.344839058066129,2.1994845801609535,3.197766208241386,1.0781416557820327,2.07223942265709,0.6379044591837629,2.600928831653919,0.9797905077839103,3.9100795308526384,1.3343787136020835,4.971751013199543,1.5103589372344997,88.29781257530678,41.13492026674352,27.362957700066115,24.59797932745312,24.59797932745312,24.59797932745312,128.0,144.0,58.17099699999997,35.959003,0.41818181818181815,134.07,7.166666666666667,5.944444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,55.0,0.0,1.0,57.0,11.0,0.0,5.0,52.0,11.0,28.0,46.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,7.0,2.0,2.0,26.0,7.0,0.0,5.0,2.0,0.0,3.0,9.0,0.0,0.0,0.0,1.0,2.0,3.5409593240373143,5.564041365397364,4.020877410340228,4.478756261132433,4.9536239282677474,5.224065153222827,5.130638086490952,5.149309688784015,5.313821553084002,5.410529357154965 +65981,CCOc1cc(CC(=O)N[C@@H](CC(C)C)c2ccccc2N2CCCCC2)ccc1C(=O)O,1,19.73913043478261,5.954199999999999,2.898550724637681,5.826086956521739,162.96765733526038,77.50686482608698,1.3956402981820866,6.023552173913043,3.963768115942029,7.525634376811593,201.53858842095923,22.098591549295776,6.194774647887324,3.5492957746478875,5.52112676056338,145.6881578143106,82.40141401408451,1.756802067971831,6.340542253521127,2.8352895148669797,7.637823154929576,250.37530594220198,17.6875,6.0482031250000015,3.21875,4.1796875,154.19237925592844,64.35464614843751,1.4643170822221327,6.155415624999999,2.7894965277777777,7.563851281249998,201.00865758174496,14.548571428571428,5.93352,2.7942857142857145,3.302857142857143,159.12839266448006,51.367894662857154,1.286717017585217,6.020985714285714,2.464444444444444,7.505838811428571,171.45091000472743,14.536842105263158,5.903436315789474,2.7,3.168421052631579,160.33344725622976,51.8872037368421,1.2402071291392105,5.984554210526316,2.6728070175438594,7.483310189473683,164.96727763597147,14.530927835051546,6.003355670103093,2.654639175257732,2.731958762886598,159.09705551895422,50.73440120618556,1.2937981598042112,6.088425257731958,2.67081901489118,7.569733979381443,172.50315753481877,13.33953488372093,5.875990697674418,2.4558139534883723,2.269767441860465,158.6817602386733,45.98517618604651,1.2387813849791023,5.962166511627906,2.6562015503875966,7.458666827906977,160.03279112691772,11.065217391304348,5.829817391304348,2.1869565217391305,1.7739130434782608,162.89229735093238,36.48969044782608,1.1205514730003956,5.897997826086956,2.4742753623188407,7.457426139130436,140.87020558878507,10.902325581395349,5.696702325581395,2.144186046511628,1.9906976744186047,163.40563676146056,36.90897819999999,1.0894971875666328,5.764683255813953,2.59108527131783,7.337695013953489,135.12260138334264,7.234194496954422,0.10761617307288383,0.01873686839275536,0.5385423230413775,3.466078554925436,1.378443632980846,34.48182092249529,0.2297865576880092,0.10314635580760333,1.4068589698709426,0.0657692720016803,51.06916585219583,0.23733030402536995,-0.0014994145507362857,-0.009718174137005032,0.19711801580328434,1.2169179749786267,-0.11930778200097557,1.1353160499480877,-0.0032541838599340197,-0.00026527803662957305,-0.06178287724432902,-0.0021868151737562966,0.5324126192470445,0.32785260449485387,0.012537359535811901,0.0011515547489603852,0.033921445074564203,0.47878104652383957,-0.05331814558376844,1.4903957687411424,-0.003802263807257717,0.01138899292428072,0.2578136851210064,0.008188672291797913,-0.09673383430097171,-0.044132385153179195,-0.007021274522159157,-0.0021836003416419434,0.018890389173943065,0.24655084466048566,-0.027380815665531886,-0.1775644347934098,-0.00021024687469004718,-0.005702579410087865,-0.037684826783755586,-0.00486895597683561,0.3468260396825106,0.9294973413369598,0.017897518765407548,0.0038716412793568813,-0.041898539669905685,0.2243867387435193,-0.01324712544077779,4.34705602258482,0.003967458966552631,0.017554040836179938,0.18714899690590342,0.010344129676427987,3.0189891677077765,-0.8165193139273784,-0.016440213114718497,-0.003959007897295275,-0.1008462226379713,-0.6015932717938057,0.0012570072874496224,-3.832864810662014,-0.007843931821356225,-0.01563484378011194,-0.13810181064986546,-0.009169107949685722,-3.0025241993135774,-0.5539113826975963,0.006661481123273901,0.002553393968195891,-0.08582914474680417,-0.40763568333797373,-0.17503541431550737,-2.753896670725809,-0.033731864739437664,0.004651905061961796,0.04662003997813847,0.005311124627911862,-7.072621782592519,-1.0297206469229157,-0.017327124553665186,-0.002587355659144507,-0.014975845410628031,-0.3946229783658896,0.0017898935290463483,-4.842300225141775,-0.008550609677470185,-0.017153715605965122,-0.2004369996966091,-0.009247362234824615,-3.985138297137266,0.5944539695100208,0.018786442363583865,0.002928962675138978,0.03125882289728071,0.3422126483101557,0.04346560369765542,2.7557593068272728,0.007053040401264894,0.016875538361590937,0.2814775466253317,0.012188404843617991,1.9313694507691685,,,0.4737373737373738,1.0757575757575757,0.4696969696969697,0.015151515151515152,0.6060606060606061,-0.13636363636363635,1.1109633952220612,0.01605952762466073,0.023877709442842548,0.8824198362726232,0.19909972936415574,0.2822411539921864,1.9933832314946847,0.4813408833563422,2.015315634544288,1.6682072356829862,0.12957466748996663,0.21753373137133553,0.0,0.3471083988613022,6.554601559884072,1362.0,410.83979999999997,200.0,402.0,11244.768356132967,5347.973673000002,96.29918057456398,415.6250999999999,273.5,519.2687719999999,13906.162601046188,1569.0,439.829,252.0,392.0,10343.859204816054,5850.500395,124.732946826,450.1785,201.30555555555554,542.2854439999999,17776.64672189634,2264.0,774.1700000000002,412.0,535.0,19736.62454475884,8237.394707000001,187.432586524433,787.8931999999999,357.05555555555554,968.1729639999998,25729.108170463354,2546.0,1038.366,489.0,578.0,27847.468716284013,8989.381566000002,225.17547807741295,1053.6725,431.2777777777777,1313.521792,30003.909250827302,2762.0,1121.6529,513.0,602.0,30463.354978683652,9858.56871,235.63935453645,1137.0653,507.8333333333333,1421.8289359999999,31343.78275083458,2819.0,1164.651,515.0,530.0,30864.82877067712,9842.473833999999,250.996843002017,1181.1544999999999,518.1388888888889,1468.528392,33465.61256175484,2868.0,1263.3379999999997,528.0,488.0,34116.57845131476,9886.81288,266.337997770507,1281.8657999999998,571.0833333333333,1603.613368,34407.05009228731,2545.0,1340.8580000000002,503.0,408.0,37465.228390714445,8392.628802999998,257.726838790091,1356.5394999999999,569.0833333333334,1715.2080120000003,32400.147285420564,2344.0,1224.791,461.0,428.0,35132.21190371402,7935.430312999999,234.24189532682604,1239.4069,557.0833333333335,1577.604428,29051.35929741867,499.1594202898551,7.4255159420289845,1.2928439191001198,37.15942028985505,239.15942028985506,95.11261067567838,2379.2456436521747,15.855272480472635,7.11709855072463,97.07326892109504,4.53807976811594,3523.772443801512,16.850451585801267,-0.10645843310227629,-0.6899903637273572,13.995379122033187,86.4011762234825,-8.470852522069265,80.60743954631423,-0.2310470540553154,-0.018834740600699687,-4.386584284347361,-0.15526387733669705,37.80129596654016,41.965133375341296,1.6047820205839234,0.1473990078669293,4.341944969544218,61.283973955051465,-6.82472263472236,190.77065839886623,-0.4866897673289878,1.4577910943079322,33.00015169548882,1.048150053350133,-12.381930790524379,-7.723167401806359,-1.2287230413778525,-0.3821300597873401,3.305818105440036,43.14639781558499,-4.79164274146808,-31.073776088846717,-0.03679320307075826,-0.9979513967653764,-6.594844687157227,-0.8520672959462318,60.69455694443935,176.60449485402236,3.4005285654274338,0.7356118430778075,-7.96072253728208,42.63348036126867,-2.51695383374778,825.9406442911157,0.753817203645,3.3352677588741884,35.55830941212165,1.9653846385213174,573.6079418644775,-158.4047469019114,-3.189401344255389,-0.7680475320752833,-19.564167191766433,-116.7090947279983,0.24385941376522674,-743.5757732684307,-1.5217227733431076,-3.0331596933417164,-26.7917512660739,-1.77880694223903,-582.489694666834,-119.09094727998321,1.4322184415038888,0.5489797031621165,-18.453266120562898,-87.64167191766435,-37.632614077834084,-592.0877842060489,-7.252350918979097,1.0001595883217862,10.02330859529977,1.1418917950010503,-1520.6136832573916,-236.8357487922706,-3.9852386473429924,-0.5950918016032366,-3.4444444444444473,-90.76328502415461,0.4116755116806601,-1113.7290517826084,-1.9666402258181424,-3.9453545893719784,-46.10050993022009,-2.1268933140096613,-916.5818083415712,127.80760344465449,4.039085108170531,0.6297269751548803,6.720646922915352,73.57571938668347,9.345104794995915,592.4882509678637,1.516403686271952,3.6282407477420517,60.51767252444632,2.620507041377868,415.24443191537125,0.7210399385475019,0.6052175374118338,0.45383569002169405,0.3431103368456043,0.30025884339814907,0.19365163087219656,0.1799366275648642,0.10156269913542029,0.11966192106308352,0.05768081270001069,0.07739323190110516,0.033654469883532705,0.05240181009598122,0.018621253610918792,0.03315825700187208,0.01090203185579278,8.029253977000286,5.688090265370682,3.555351018732333,2.187100321302128,0.46929269476407726,-0.5239040174457963,3.2219928732821748,0.97261864368885,6.023424141227445,0.9872021313084081,14.543702955670083,10.948567768322492,16.014741040185328,11.69965429943037,1.9968012850871295,0.7414885127984939,3.501432268613439,2.2368783212380565,7.009376938508479,1.2271792222240188,3.7143374566789196,2.432914009977772,20.90275006425772,14.70062256349864,0.22298310315864303,0.5403896853310006,0.7524984415910482,0.844267953666559,0.8534641831689126,0.8534641831689126,1.60340111346839,950.887582394917,0.0,2.0,6.0,0.0,9.0,6.0,3.0,1.0,0.0,4.702887863917926,2.702026361875125,1.3649392676432477,0.7864443841520359,0.7284733696592811,0.7284733696592811,315.3300155053877,2217.958638463156,62.99030209556733,32.14432809366893,62.28784846426716,,15.0,818.0,5.969305287951849,14.69560176298435,23.93329367312247,18.274299843958218,30.63723741814515,31.0162182119232,19.056471336613843,6.06636706846161,42.26327393962289,4.736862953800049,15.633333333333335,35.5,15.5,0.5,20.0,0.0,0.026262626262626224,-4.5,0.1083956267480295,0.036643406691716174,-0.07175222005631332,0.02955266955266944,0.13427194066749026,0.0,0.5473429951690812,0.8171717171717167,0.43894736842105175,0.5106995884773651,0.7876190476190472,36.661792042328024,0.529964411613804,0.787964411613804,29.119854596996568,6.57029106901714,9.313958081742152,65.78164663932459,15.884249150759292,0.5797280593325097,0.1599147121535181,0.0,0.31343283582089554,0.48148148148148145,0.29183699807027985,-0.8545982872490545,-0.039952952214311756,-0.01238548242389934,-0.03715644727169803,0.7081630019297203,2.0737428514685634,0.043212301532039615,0.030054244224182087,0.045081366336273125,-6.039450118743451,0.9209849422298846,0.7823567900541084,1.5487856428477478,0.8763156160049224,0.5406258908437901,1.3500049752019387,0.9277365446358176,1.2025535665465812,0.7784324247029095,0.6669292410207103,0.7832396603759342,1.1054667966405998,0.9232709155972358,0.7423998016484871,0.9564315737778876,1.2580928237129492,0.8674261074415223,1.1875004662802513,0.9291308466920852,1.0927166607879728,0.7531224749521365,0.42595617509227374,0.7013847073299572,1.0464852208702302,0.9866873501621772,1.0026617949489922,1.1217679744579026,1.1345709828393142,0.9642820783627959,1.0863154737806129,0.9871947524367516,1.0130303652639479,0.9936196741489736,0.7723310366074019,0.9844278108146368,0.995990038406083,0.8499974021925494,0.7568887492211742,0.7705155944235398,1.2665202397569595,0.9652227162257845,1.0488578225471368,0.8538497740943469,0.9819314225730663,0.757288641758106,0.6867273167782391,0.7364858410420636,0.9376844982233244,1.1108985253559396,1.1905109087333308,1.2997655165688873,1.301719285266257,1.2289175819988079,1.0792217392838166,1.1090166990224157,1.0409791528137726,1.1783943124904943,1.1113344771460487,1.165468456923594,1.0524779354111289,1.0419936178516493,0.8090112024934761,0.7551652313620791,1.174574610891413,1.0546628597520245,1.1665847820298796,1.0477675151423882,1.1672546040173342,0.8349460733218399,0.9278481259264758,0.766403337267409,1.149384869484709,1.132477788746298,1.1789908904002373,1.0102560168809849,0.9269110764430583,1.0829232820264212,0.9762785238654639,1.1298072698862758,1.0027341062548674,1.1810407595669792,1.3375946584829759,1.1556442924285566,1.0489145626024945,0.8747170504373377,0.6561983303020529,0.5271264720017965,0.8341182019373804,0.8020727579179973,0.9081754050692252,0.8791460490161995,0.9413572617093011,0.6866764807618017,0.721136740868334,0.6170402796742521,0.9482210603979333,6.5,0.22293643505764718,3.1111111111111125,2.625,1.626666666666667,1.5138888888888884,0.7926530612244898,0.6475694444444444,0.31292517006802717,0.30062500000000003,6437.058677965803,7506.8716960123975,3044.056814533485,2676.5901972073525,14.617393530801209,0.46890458156693854,7.763230733641594,0.8829008221354834,0.0,0.48148148148148145,1.405636592860243,3.406498094903044,4.743585189134921,5.322080072626133,5.380051087118888,5.380051087118888,0.18571428571428572,0.00675564954720143,0.06619385342789602,0.052500000000000005,0.030123456790123453,0.02803497942386831,0.01524332810047096,0.015059754521963823,0.007632321221171394,0.008589285714285716,0.41584691446126687,27.58530612244898,13.921231326392032,8.273484630853202,196.49731692358273,0.0,4.4004190460485235,210.85944060503732,,177.34103682736202,174.58983041452805,174.2021859150053,177.37042175149892,232.18461217240696,176.25946296210267,177.49816248185866,211.14157280529807,0.0328067353076124,-0.013932985237458652,-0.5186658695197208,0.36602140141943734,0.35109359343553764,-0.08655252862460237,0.032925060787826,-0.01416176774079344,-0.002571860484575824,-0.0439154730982002,-0.03324980051019003,0.010425324368679743,0.04531984931188663,0.11650070038562776,0.061459296442816225,0.06298751950078013,0.13813335126045329,-0.03867996072387046,0.04322265265779037,-0.01654693749501313,0.110415853619922,0.18325481845892255,0.1245060503572049,-0.0018941729845546797,-0.006100525106390051,-0.06524367408422847,-0.11654030416770372,0.035076888789837356,0.07113250341949899,-0.019863572953158506,-0.005149508640872563,-0.0009149659440719249,-0.055286290683160565,-0.026786499280174885,-0.07403086317743059,0.006791300266902599,0.1284866396290943,0.16630882008121886,0.20663225028862656,-0.07779990146974301,0.06473792650332659,-0.009610204671286593,0.12606805285474013,0.0172658444709347,0.17018575885437107,0.133026124802738,0.1572790660684782,0.05911569373279608,-0.11286941680530306,-0.15276712268502843,-0.21129506886145563,-0.18725774804188053,-0.17356596576235056,0.0009119032925063312,-0.11115610220461197,-0.03413572969749718,-0.1515792163251533,-0.09816322290110867,-0.13941324984487385,-0.05879328845909625,-0.0765684946583606,0.06190037178484655,0.1362764531763037,-0.15937307259732253,-0.1176071681233846,-0.12698046559727522,-0.07986517524453643,-0.1467965101128188,0.04510004280363423,0.033137678314987845,0.0807538910842159,-0.13849103788109782,-0.14234074676267353,-0.161008555302652,-0.1380890127906813,-0.02780811232449302,-0.11385286631923405,0.0012984887348463812,-0.14043052529116148,-0.03721109608630677,-0.16630462095977078,-0.14247128105171486,-0.14060308033496796,-0.07803413724577052,0.08217279335802824,0.1745689502530499,0.1563208223350422,0.058043391503102,0.09873193665038488,0.03153237655693055,0.07991919316040146,0.030693877275628546,0.16360770314627995,0.20007516933353517,0.18532065921767535,0.03781869976805437,20.515606349808714,28.03361684777568,9.085848557729705,12.740284576435803,31.104275048641647,37.09744015322306,38.318418068245975,38.37685285085468,38.37685285085468,66.50541593996151,55.050838777538544,4.275964027168898,7.178613135254072,0.0,11.454577162422972,9201.646877598729,8442.147482344779,2823.0711433140614,105.0,47.0,59.0,78.0,95.0,98.0,101.0,104.0,99.0,452.267507632001,35.0,5.10594547390058,5.932245187448011,6.80128303447162,7.652070746116482,8.528528701079983,9.387900611668426,10.266497388607728,11.129539802004944,12.008724756759575,0.5893719806763285,0.9671884057971013,1.1289019483224831,0.5461117164338486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6465551332118372,0.9541915316851379,0.9946377867147999,0.5960583191001694,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,1.0,8.0,1.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,20.06008868349756,11.3129633249809,0.0,5.907179729351506,0.0,4.794537184071822,4.794537184071822,0.0,0.0,38.112942673227685,67.85093392633489,18.776899086508713,19.06954441658689,221.04063708116712,-647.2823908931325,-30.26081706267473,-9.3809042158425,-28.142712647527507,536.3706525865548,1570.6762475700236,32.7294850328926,22.763423877826433,34.145135816739646,0.4666666666666667,0.8531625601270587,0.16834316925235482,23.905093762809145,0.11575767684576299,83.6712892691178,0.14683743987294137,8.0,0.2857142857142857,0.2301106597519658,0.5576630033989812,0.7765517225475496,0.871254606621182,0.8807447895455425,0.8807447895455425,5.219900000000005,,1.2857142857142858,1.514192647743136,1.1430359144285005,1.28206267335915,-5.365540693720245,1.3572521419828643,1.2745051870999227,-2.2346271687189603,131.11900000000009,19.432464716784395,0.0,5.316788604006331,5.917906046161393,58.917160542849885,24.59630450718855,59.15492395432226,0.0,5.749511833283905,4.2626798770413155,0.0,5.556828061699537,0.0,7.0431599159883405,0.0,8.623892810075294,0.0,10.256992477269039,40.666666666666664,13.26090579477446,0.0,0.0,0.0,0.0,0.0,3.5115390148487275,0.0,66.73599999999999,0.0,24.50559809500106,0.0,0.0,0.0,0.0,0.0,-1.124639471529352,77.89423443425133,14.953561288656857,5.687386274683562,5.749511833283905,36.67940718848213,11.21535880699783,5.917906046161393,73.9812305790867,42.46456947923127,0.0,0.0,0.0,37.681708433935555,44.612304191616765,41.43703645312449,421.7188812100747,,354.604151576802,349.08789157767774,348.3440741561693,354.6631427349155,465.9951457671533,352.43666821863064,354.91908222510517,422.9603053586928,41.43703645312449,421.71888121007464,,353.42626423159965,347.7173707954229,347.3395880495504,353.4885295899981,469.7347650385341,351.200192811354,353.75060025708865,424.5177727793152,4.80301402620281,310.9569422487866,,262.9718611740401,258.7639515176767,257.33011668828897,263.01426306611836,342.6507473210559,261.27873525089717,263.2161711319419,313.42712960148714,1.2556677713068027,12.77936003666893,,10.745580350812181,10.578420956899325,10.555881035035434,10.747367961664105,14.12106502324707,10.679899036928202,10.755123703791066,12.816978950263417,2.401507013101405,210.85944060503732,,177.34103682736202,174.58983041452805,174.2021859150053,177.37042175149892,232.18461217240696,176.25946296210267,177.49816248185866,211.14157280529807,65.83921568627451,0.0,6.143468158472035,0.0,0.0,0.0,9.364144376170604,68.63000728332119,7.145992682080978,3.258722836356765,5.488422460551755,0.0,0.33740780281860727,2.4417715837876925,0.0,0.0,0.0,41.128024017911684,646.1949549620508,96.98892490735676,235.04836854831004,327.3073780503096,367.2235250112032,371.22352501120326,371.22352501120326,854.0,144.81273570205732,111.21633470567107,68.74355314207352,78.87,78.87,0.875,8.026578608266378,6.129283016944966,4.752424081754082,5.660755106338588,,5.658733711355295,5.658633039200194,5.655758432625998,5.658726533429753,5.639474189131428,5.658579681189656,5.658749983554725,5.6523910316393975,0.14401285096224492,0.17153803352541175,,0.17147677913197865,0.17147372846061196,0.17138661917048478,0.17147656161908342,0.1708931572464069,0.1714721115512017,0.17147727222893105,0.17128457671634537,2.7525772893442446,2.927479762802953,,2.927122609748193,2.9271048190098843,2.9265966862228567,2.9271213412788746,2.9237133007589136,2.9270953894777447,2.9271254853342987,2.926001115551143,367.7500000000016,336.39891548745965,216.18245531899242,,215.96040637555328,215.97483906849536,216.4605150802322,215.96166953032358,218.3136753492007,215.98667212421896,215.95760465610266,216.74873129378216,10.19390652992302,6.550983494514922,,6.544254738653129,6.544692092984707,6.559409547885824,6.544293016070411,6.615565919672749,6.545050670430878,6.544169838063717,6.568143372538853,7.012220172688087,6.5700452201487565,,6.569017555537519,6.5690843835776,6.571330620899721,6.56902340453131,6.5798553748174955,6.5691391711242675,6.569004582151926,6.572661230800072,5.488422460551755,26.947369678788753,12.622867212527368,3.2157292671330726,-0.4083492799016156,13.177833153680986,4.683040420483646,8.606420420069368,0.0,452.7414405681312,167.41867400062162,-490.2589904655739,-22.919884477839467,-7.105202760370637,-21.315608281111917,406.2531877155,1189.6479223224696,24.78968146892358,17.241274236557533,25.861911354836295,3368.0,50.0,2.142629194087804,1.136754626777749,0.0,0.0,0.3957624642754414,0.11344072026679393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25343678769327627,0.13089098049822168,0.2906593648946736,0.1068479816651845,23.794317972067564,19.972178734590518,15.884249150759292,12.008861789596152,14.112165639713005,9.101626650993238,10.616261026326988,5.992199248989797,9.333629842920514,4.499103390600834,7.35235703060499,3.197174638935607,5.13537738940616,1.8248828538700417,3.3489839571890805,1.1011052174350708,4.149460682677234,1.7933206759249545,7.104906233359192,2.6227795848764632,10.674982354812121,3.5161378340602303,113.13279346170094,53.504467298930855,32.563082138023944,27.28807675729656,27.04990142646885,27.04990142646885,164.0,188.0,74.50254799999998,41.86745200000003,0.3188405797101449,169.06,11.36111111111111,7.472222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,12.0,12.0,69.0,0.0,0.0,71.0,12.0,2.0,8.0,63.0,14.0,35.0,57.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,4.0,2.0,1.0,33.0,6.0,0.0,2.0,4.0,0.0,3.0,10.0,0.0,0.0,0.0,0.0,2.0,3.784189633918261,6.336825731146441,4.276666119016055,4.74493212836325,5.269145989247757,5.729287765064563,5.864695949434276,6.04914365869466,6.190955569756963,6.1629199892634405 +3823,CC(=O)N1CCN(c2ccc(OCC3COC(Cn4ccnc4)(c4ccc(Cl)cc4Cl)O3)cc2)CC1,0,31.15625,6.2615218750000015,3.46875,7.581404320987655,162.45987132973084,126.58403340625,1.5918465208714376,6.388390625000001,3.4082601320778085,7.852110406249999,230.1335313612338,27.794117647058822,6.4533088235294125,4.161764705882353,7.209150326797385,146.89709049079707,106.93569932352939,1.8208944217647054,6.6164999999999985,2.899093742435246,7.880939235294117,268.48787964798674,24.1900826446281,6.520048760330579,3.7520661157024793,5.595959595959596,157.68970385381357,91.49980549586776,1.5507543473428924,6.632820661157026,2.884735401149542,8.014132462809918,225.7312282517659,20.222929936305732,6.3816426751592354,3.248407643312102,4.025477707006369,159.79220167072168,73.83015985350318,1.420370987946395,6.493292356687897,2.682351052397054,7.960189464968154,196.75043978091568,20.576470588235296,6.2158935294117645,2.9647058823529413,3.7290486564996375,157.39454942625417,76.03812088823528,1.3732141474931117,6.346032352941176,2.610618785694433,7.826244064705882,186.237840453083,16.413978494623656,6.032323118279569,2.672043010752688,3.504778972520908,161.55653074669664,59.13669247849461,1.253730265377446,6.132845698924731,2.435041373512102,7.656038645161291,166.29424998246918,17.251428571428573,5.976965714285715,2.7085714285714286,3.206349206349206,162.02850327739358,62.944177988571425,1.265261672995457,6.094488,2.2862786596119933,7.621383108571429,166.8839857963268,18.7972972972973,6.138136486486487,2.722972972972973,3.349099099099099,162.06493410939976,68.31655382432432,1.2926979031720947,6.273322297297298,2.542528639750862,7.803638864864865,172.53658371461967,18.425,6.209241666666667,2.816666666666667,3.811111111111111,160.89302224307036,66.45537610833333,1.3448394284081666,6.329244166666666,2.699065500685871,7.8431005,179.901275636014,12.2880859375,0.12506396484374996,0.01983111270050664,0.62109375,3.9740427276234565,1.460227636198561,57.63332628808594,0.25282855707612106,0.12744833984374995,0.8545217306180399,0.08944375683593749,50.6953067246387,0.47799862132352944,0.0023756031709558996,-0.007766288691406579,0.16015625,1.081019227714234,-0.509906788584499,2.2225185032743573,-0.03425954263152553,0.004423535156250014,-0.023392209836819503,-0.0033656695197610063,-2.5079359547996782,0.3028231534090909,-0.0060159793065598845,-0.0019248908485612892,-0.0526536673553719,-0.32634415094760716,0.10842365864041534,1.5240220096929882,0.020201649989561227,-0.005530597075154933,0.021867791532477417,-0.0052793485198217435,3.1500672808495365,-1.524351861066879,-0.020097165480692642,0.0012860530784300208,-0.11651572452229299,-0.9227727740180466,0.21345225107696655,-7.064427907910778,0.011667573650019022,-0.023018483155851872,-0.10868703569808508,-0.012609044455364203,-2.3532538021124965,0.37643612132352944,-0.004588394990808812,-0.0014856035833235221,-0.024402573529411765,-0.2496395867374727,-0.27652415385633194,1.487629480847888,-0.03732742761975124,-0.0008122369025735118,-0.08359202371584619,0.0033984889361213383,-8.081387692535328,0.6022030409946236,0.008853592279905896,0.0011725856988366444,0.04893313172043011,0.48045539729357484,0.0008215362340564143,2.850986384461104,0.008306322885849345,0.008497963919690845,-0.004412187690511724,0.003906378748739894,2.096705432227134,1.2951283482142857,0.007337535156249982,0.0002762417271850878,0.0019419642857142858,0.18242111717372125,-0.009859214513778665,6.058763472628347,0.00787299663137713,0.011352945870535687,0.02965682567101649,0.006234477092633897,3.8857701185098255,-0.37170080236486486,-0.008908052681587834,-0.0013702772528993547,-0.027766047297297296,-0.2857111668960627,-0.04295924136175005,-1.7519909371568838,-0.01616408302176214,-0.006259594066722972,0.0036077526299970516,-0.005371163930532084,-1.0548867938724564,-1.2576171875,-0.010924537760416653,0.001285815551372192,0.011197916666666667,-0.15061165766460902,0.08955124864815416,-5.794477433658854,0.009375737683103385,-0.014791595052083318,-0.056452426136142625,-0.009384861523437479,-1.383274472439213,,,0.48227513227513225,1.2222222222222223,0.5277777777777778,0.041666666666666664,0.6944444444444444,-0.16666666666666666,0.9568745624425193,0.013854435011848921,0.025798879456293364,0.9971262522738638,0.24476388587311826,0.23899872251428547,1.954000814716383,0.48376260838740376,2.058216122501842,1.5004385366844872,0.23928352383962728,0.22020876901499675,0.0982852929627302,0.5577775858173543,8.283574386500012,1994.0,400.7374000000001,222.0,485.20987654320993,10397.431765102774,8101.378138,101.87817733577201,408.8570000000001,218.12864845297975,502.5350659999999,14728.546007118963,1890.0,438.82500000000005,283.0,490.2222222222222,9989.0021533742,7271.627553999999,123.82082067999997,449.9219999999999,197.13837448559673,535.903868,18257.1758160631,2927.0,788.9259000000001,454.0,677.1111111111111,19080.454166311443,11071.476465,187.64127602848998,802.5713000000001,349.0529835390946,969.7100280000001,27313.478618463676,3175.0,1001.9179,510.0,632.0,25087.375662303304,11591.335097,222.998245107584,1019.4468999999999,421.1291152263375,1249.7497460000002,30889.819045603763,3498.0,1056.7019,504.0,633.9382716049383,26757.07340246321,12926.480550999999,233.446405073829,1078.8255,443.80519356805365,1330.461491,31660.43287702411,3053.0,1122.0121,497.0,651.8888888888889,30049.514718885577,10999.424800999997,233.19382936020497,1140.7093,452.917695473251,1424.0231880000001,30930.73049673927,3019.0,1045.969,474.0,561.1111111111111,28354.98807354388,11015.231147999999,221.42079277420498,1066.5354,400.0987654320988,1333.742044,29204.69751435719,2782.0,908.4442,403.0,495.66666666666663,23985.610248191162,10110.849965999998,191.31928966947,928.4517000000001,376.29423868312756,1154.938552,25535.41438976371,2211.0,745.109,338.0,457.3333333333333,19307.162669168443,7974.645132999999,161.38073140897998,759.5092999999999,323.88786008230454,941.17206,21588.15307632168,786.4375,8.004093749999997,1.269191212832425,39.75,254.3387345679012,93.45456871670791,3688.5328824375,16.181027652871748,8.156693749999997,54.689390759554556,5.724400437499999,3244.4996303768767,32.50390625,0.16154101562500117,-0.5281076310156474,10.890625,73.50930748456791,-34.673661623745936,151.1312582226563,-2.329648898943736,0.30080039062500097,-1.5906702689037262,-0.22886552734374843,-170.53964492637812,36.6416015625,-0.727933496093746,-0.232911792675916,-6.37109375,-39.487642264660465,13.119262695490256,184.40666317285158,2.4443996487369084,-0.6692022460937468,2.6460027754297677,-0.6388011708984309,381.1581409827939,-239.3232421875,-3.1552549804687446,0.20191033331351327,-18.29296875,-144.87532552083331,33.51200341908375,-1109.1151815419921,1.8318090630529864,-3.613901855468744,-17.063864604599356,-1.9796199794921798,-369.46084693166193,63.994140625,-0.780027148437498,-0.2525526091649988,-4.1484375,-42.43872974537036,-47.00910615557643,252.89701174414097,-6.345662695357711,-0.13808027343749701,-14.210644031693851,0.5777431191406275,-1373.8359077310058,112.009765625,1.6467681640624967,0.21810093998361588,9.1015625,89.36470389660492,0.15280573953449306,530.2834675097654,1.544976056767978,1.5806212890624973,-0.8206669104351807,0.7265864472656204,389.9872103942469,226.6474609375,1.2840686523437468,0.04834230225739036,0.33984375,31.92369550540122,-1.7253625399112664,1060.2836077099607,1.3777744104909977,1.9867655273437452,5.189944492427886,1.0910334912109318,680.0097707392194,-55.01171875,-1.3183917968749994,-0.2028010334291045,-4.109375,-42.28525270061728,-6.357967721539008,-259.2946586992188,-2.3922842872207966,-0.9264199218749999,0.5339473892395636,-0.7949322617187484,-156.12324549312356,-150.9140625,-1.3109445312499983,0.15429786616466304,1.34375,-18.07339891975308,10.746149837778498,-695.3372920390625,1.1250885219724063,-1.774991406249998,-6.774291136337115,-1.1261833828124974,-165.99293669270557,0.6978540304670486,0.5969509669806213,0.43538634754866334,0.31593437239315453,0.28254101003579696,0.17201077388791822,0.17912331344616858,0.09415203375934171,0.1148760995729795,0.052547307888521445,0.07114138594931918,0.027869274354759395,0.04683724607160565,0.01548693516148295,0.030694979331426276,0.008227867125302357,17.00212805885775,5.693657964887686,3.5445093010381434,2.1878913784447773,0.4024751506624144,-0.5216495261929546,4.025136406595577,0.9728777600895696,6.022508555148955,0.7730851366522083,14.558174205340968,10.952503637162406,35.451528853493116,11.704954311852639,2.2125374585886246,0.7516745958765539,3.4897814484400014,2.239668876069105,7.008273945718589,1.1833856046620794,3.702698737547627,2.4361451658249327,22.457069945770716,14.702208955422652,0.2722254180873711,0.584582262011887,0.7688707987839339,0.8608008024126069,0.8807472293713492,0.8807472293713492,1.0879479154445006,1183.1646774789097,0.0,3.0,8.0,0.0,11.0,2.0,1.0,0.0,0.0,4.29402141389502,2.3365477484949264,1.1816508266475054,0.605545117221304,0.480545117221304,0.480545117221304,217.93500656808317,2447.6588120130054,67.73099839289216,38.24466893770321,85.26903640040331,,19.0,1185.0,5.7871111525705965,4.794537184071822,12.011146117099809,35.36723845411806,37.61592373161777,0.0,31.580634982991462,45.99568829256296,9.883888251797686,37.41246864186518,17.36190476190476,44.0,19.0,1.5,25.0,0.0,0.01772486772486776,-6.0,0.17534523809523794,0.05731837606837631,-0.11802686202686163,0.0,0.15820731707317048,0.0,0.6193452380952368,0.8677248677248675,0.44399999999999884,0.5620268620268605,0.8677248677248675,34.447484247930696,0.49875966042656117,0.9287596604265611,35.896545081859095,8.811499891432257,8.603954010514277,70.34402932978979,17.415453901946535,0.5557926829268295,0.13027975863960506,0.028798683488754803,0.2707076247942951,0.38461538461538464,0.3611581830706049,-1.1263454977544527,-0.048077099298983864,-0.017599148402413323,-0.06625561751496781,0.6388418169293951,1.9923585786093856,0.038222894698293486,0.03113060279077165,0.04239060805551883,-5.684243750600316,0.5778384468306912,0.7704119238615716,1.4716515914787462,0.8856825749167592,0.5860417007593881,1.5649193595339912,0.5832021809183155,1.0749338730030482,0.7019496392510898,0.6454878903484609,0.7854317113979749,0.9743881502536447,0.7160073639956309,1.205562997834495,1.5345597515006928,1.3294869795727429,1.1813887154779357,1.0708709622267998,0.7158690023545482,0.8142372167808649,1.1048235613868094,0.7670079111469719,1.1349530095014828,0.8300591116809208,1.0189543975771576,1.3733618348711731,1.2664114453115565,1.3628169691142893,1.3393529233773749,0.8873642648741646,1.016616450380168,0.9002624823219386,1.3244626215445623,1.1941221877681103,1.3337666055140274,0.9759633620806633,0.8785971735908858,1.1057581701643022,1.100379291708181,1.053496115427303,1.0473154089939827,1.1646243587672023,0.8836190212448376,1.1337912616403953,1.0431107940172015,1.2021459300796171,1.046417957672075,1.1341501917014594,0.8043109879432825,0.912070070998195,0.766993924577513,0.7881923311016433,0.8392919653175629,0.9450928968478544,0.8071579275195072,0.9277265271611969,0.8942736300516684,0.9421618886812815,0.896535732668611,0.9570679697260932,0.8301486132082969,0.8284827998172807,0.8828377838134079,0.8966037735849057,0.8954200404704771,0.9575298698596851,0.8328775031523811,0.9497053450086829,0.8118885179427019,0.539145239722875,0.7944542646262069,0.9353704804725308,1.1458703398622336,1.1188693454690148,1.2208807844868508,0.9691483936766956,1.0970198468340286,0.974151251437126,1.1431568169423176,1.0783449745569953,1.1125676148881782,0.7853893736737246,1.1524225876388763,1.0126403318840669,1.1191766669315744,1.2043243496492029,1.168518433363973,0.911320754716981,1.0900634967826883,0.9000325518478757,1.1156286950106178,0.9564945445472696,1.2132641059375313,1.1817390695250065,1.2448469543322367,1.0020884862223596,8.5,0.16233853688399144,4.666666666666668,2.604166666666667,1.622777777777778,1.5494444444444446,0.763310657596372,0.5339781746031745,0.39833711262282684,0.25375000000000003,8187.420921198972,9083.918138213676,3659.2143036822044,3379.2916940896007,19.52175855169786,0.47101723555668024,10.326673805472153,0.8904207607829339,0.0,0.38461538461538464,1.7059785861049794,3.6634522515050736,4.818349173352495,5.394454882778696,5.519454882778696,5.519454882778696,0.21250000000000002,0.0047746628495291595,0.08187134502923979,0.046502976190476185,0.029505050505050513,0.029234800838574423,0.015266213151927437,0.012135867604617602,0.010765867908725048,0.007048611111111112,0.4496053951892513,27.5625,12.453062480763311,6.781866666666667,219.81542995421987,0.0,4.523953888197813,270.5378243356659,,212.03159851807067,209.17627320627713,214.64048387960082,212.04721348142334,347.61114617573884,212.21480088621183,214.12246564712527,288.0011573927661,0.03889935533937011,0.018995105216149877,-0.3916214288474175,0.2578616352201258,0.2720200314405531,-0.3491967799705183,0.03856307880209579,-0.1355050356167272,0.034708456474781955,-0.027374622550442214,-0.037628892600458375,-0.04947077188864867,0.024643638964548124,-0.04810321913331322,-0.09706418785629273,-0.08477571599355475,-0.0821189336187048,0.0742512029991959,0.026443415777791687,0.07990256410583776,-0.04339481457298992,0.02559067926413218,-0.059024226022900694,0.062137256570114714,-0.12405120446097782,-0.16069509315334163,0.06485027329793577,-0.18759764451388053,-0.23220001325196624,0.1461773806943217,-0.12257539800147105,0.04614816373969249,-0.18061030205707065,-0.1271904877357259,-0.140971767079198,-0.04641955940605403,0.030634235733552742,-0.036688385791553736,-0.07491276993678567,-0.039289678135405105,-0.06281753968125081,-0.1893705796284014,0.025811966385764783,-0.14763928589171507,-0.0063730677352824205,-0.0978231690554991,0.03799582057308962,-0.1594109635519307,0.04900706619872006,0.07079251238330105,0.059128588322060596,0.07878541962534659,0.12089839748172389,0.0005626083315305109,0.04946767032341954,0.03285357865388796,0.0666777137317696,-0.005163341706150144,0.043674135422388204,0.04135896531045354,0.10539707768985365,0.058670258578617844,0.013929713947822527,0.0031266846361185986,0.04590315949693176,-0.006751833939703641,0.10512604187277015,0.031139665243617023,0.08907880545524763,0.03470575950077588,0.0697027642082332,0.07664950405796206,-0.030248877185219868,-0.07122797276351511,-0.06909734585212393,-0.04470508244093149,-0.0718943369456228,-0.02941955096370226,-0.030398921075618333,-0.06393297975788191,-0.04911475562880736,0.004221955394145114,-0.06005074161167178,-0.02080837185979122,-0.10234443296511166,-0.08735160263042471,0.06483829580270312,0.018029350104821804,-0.03789885212298089,0.061326909879123134,-0.10054039575461218,0.0370833808946691,-0.11605953494739614,-0.06606318378271427,-0.10492472426724755,-0.027286046023012232,23.079074391990527,22.4602773923625,3.5643906592601136,19.90815151344433,39.45400740714169,46.179614716739316,48.524423021840924,48.65042302184093,48.65042302184093,74.09578041006631,54.01578732064154,8.614206858226582,7.927515684539883,3.5382705466582873,20.079993089424754,18768.86544832712,17370.773562918304,2626.5551296175727,181.0,57.0,75.0,98.0,118.0,136.0,151.0,158.0,172.0,530.1487607360008,40.0,5.272999558563747,6.129050210060545,7.018401799069201,7.892452043520352,8.789507786736896,9.672122799562842,10.574312434091581,11.462295108685383,12.368127717462661,0.7239583333333335,0.990875,1.1268406259158281,0.6913376280076595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6929098428143712,0.9812500000000002,1.0146235433357609,0.6509117456238552,10.0,1.0,0.0,0.0,0.0,0.0,5.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,7.0,0.0,3.0,0.0,1.0,2.0,1.0,0.0,0.0,28.57750797089246,18.460360185545127,0.0,11.694290881922102,0.0,4.794537184071822,4.9839785209472085,0.0,0.0,29.268246848926644,36.39820241076966,61.76992104668895,24.50159175893136,283.4485054298697,-883.9920093233721,-37.732446834899264,-13.81237514567769,-51.99952996019836,501.3835119979529,1563.6668026896332,29.9985515579929,24.43229379202552,33.26950644020495,0.47368421052631576,0.8799949218981895,0.157370110911519,51.41025707416206,0.07024284319914222,103.24729919776507,0.12000507810181062,10.0,0.175,0.2843297643508299,0.6105753752508456,0.8030581955587491,0.8990758137964493,0.9199091471297827,0.9199091471297827,4.205800000000003,,2.8655462184873945,2.1187437003323097,1.856856910534675,2.8894325648792374,-5.9340144218269995,2.065696512402585,1.974599518647834,-2.706699165730599,137.5959999999999,19.005126045471968,0.0,14.450987899589041,0.0,25.3595711459221,44.29269928352661,76.79429481640162,0.0,5.749511833283905,4.394449154672439,0.0,5.733341276897746,3.044522437723423,7.257707677160043,5.2832037287379885,8.867990898182093,7.285506548522785,10.527311449886323,46.33333333333334,18.56264271715396,4.125039726047292,0.0,0.0,0.0,0.0,3.5931261165224653,1.8919902343358297,63.416,0.0,11.55334279947623,0.0,0.0,0.0,0.0,0.0,0.12859999419153767,72.117800058613,9.636772684650527,5.687386274683562,5.749511833283905,65.85492356936498,26.60013065015509,0.0,12.487188691387619,61.18557669722196,10.045266627482652,0.0,0.0,44.24560819249021,44.346229940119755,47.00087483379329,541.0756486713319,,423.9369584612534,418.36762710090477,429.3794511308397,423.965049526979,697.2002971587533,424.41716216029033,428.2141641132041,576.9045478407759,47.00087483379329,541.075648671332,,421.3898062670424,416.4842993672762,427.728911654809,421.396665024864,701.1563067733047,422.5809874825992,426.4589645410727,578.7090139512629,4.937167276293112,415.87562224363415,,326.3856594090859,320.54105004596545,331.3844189861445,326.4509334531092,552.4164961383564,325.6385112804069,328.5956657340493,449.20490491252144,1.305579856494258,15.02987912975922,,11.776026623923705,11.621322975025132,11.927206975856658,11.776806931304971,19.36667492107648,11.78936561556362,11.894837892033447,16.025126328910442,2.5079027220553547,270.5378243356659,,212.03159851807067,209.17627320627713,214.64048387960082,212.04721348142334,347.61114617573884,212.21480088621183,214.12246564712527,288.0011573927661,62.80000000000001,0.0,1.6177670952231942,12.655940089837516,0.0,0.0,0.0,64.9359067734887,4.185350943007786,0.0,18.712909891078528,0.0,-0.29203612292738446,4.151960072600888,-1.0810780009922878,0.0,0.0,41.658351719926735,690.6481898795953,109.18262951071868,234.4609440963247,308.37434709455965,345.24511249783654,353.24511249783654,353.24511249783654,1222.0,155.17926945775324,94.18382754822744,88.39403317178284,69.06,69.06,0.9,8.353732642263202,6.321928094887363,4.184859035415515,5.904076536856026,,5.905348115393502,5.903580888140995,5.910664074566335,5.905397282286812,5.919956178415313,5.904135114197942,5.9037152325108595,5.90843349426976,0.11624608431709765,0.1640021260237785,,0.1640374476498195,0.16398835800391653,0.1641851131823982,0.1640388133968559,0.16444322717820314,0.16400375317216506,0.16399208979196833,0.16412315261860444,2.7124068655424245,3.0565768962358346,,3.0567922460229466,3.0564929424594873,3.0576920351304784,3.056800571813006,3.059262892035871,3.056586817694502,3.0565156986211854,3.0573145815541682,372.08000000000123,2240.109670180709,256.26678405848844,,255.5363406849346,256.29252258942637,255.2562804871591,255.514697225683,253.0091211069756,256.1246524187483,256.1485028726765,254.9775281072183,62.22526861613081,7.118521779402457,,7.098231685692628,7.119236738595177,7.0904522357544195,7.097630478491194,7.028031141860434,7.114573678298565,7.11523619090768,7.082709114089397,8.995213949014754,6.8271528725345645,,6.824298478592111,6.8272533039602585,6.823201907442761,6.824213776839609,6.814359385345962,6.826598094943578,6.826691211101234,6.822109261667516,20.604900125414357,19.830342598124407,1.0208319602453872,1.8210378081523433,-0.2012216586760156,13.29190626572164,4.97870032850494,5.803118038230981,0.0,449.6117357563006,222.4594623534258,-693.7852320673368,-29.613632371922048,-10.840394251052137,-40.810896003960984,393.50183322640027,1227.2157713398178,23.54382373917212,19.175246427184653,26.110973858293985,4692.0,56.0,2.697723691406071,1.3504754940914436,0.10206207261596575,0.02946278254943948,0.5101100286299702,0.18385170248469762,0.041666666666666664,0.008505172717997146,0.0,0.0,0.0,0.0,0.2463996399133722,0.07251070881796363,0.5400332534228949,0.19417345956006618,0.7271470532188322,0.2339256311575563,25.122745096813752,21.49023481130237,17.415453901946535,12.63737489572618,16.104837572040427,9.804614111611338,13.434248508462643,7.061402531950629,11.257857758151992,5.149636173075102,8.394683542019663,3.2885743738616084,6.369865465738369,2.1062231819616812,4.634941879045368,1.242407935920656,5.946413283176216,2.6159569422012106,9.51239616092649,3.709911137818215,13.47116483181977,4.4825140663681315,117.28203506760264,58.923436386342416,37.93722088787423,30.527114648336088,29.527114648336088,29.527114648336088,194.0,229.0,74.05820399999999,41.45579600000003,0.484375,340.1,10.42361111111111,7.791666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,17.0,17.0,64.0,0.0,0.0,68.0,17.0,1.0,9.0,59.0,18.0,40.0,50.0,0.0,0.0,0.0,26.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,7.0,0.0,3.0,36.0,10.0,0.0,4.0,4.0,0.0,5.0,7.0,0.0,0.0,2.0,1.0,3.0,3.9219733362813143,6.925871435966754,4.468777561082536,4.94787297235994,5.428522922202977,5.797955644673451,5.985509350069308,6.221769891449812,6.458191328973857,6.7160271184886104 +446642,C/C(=C/C(=O)c1ccccc1)N[C@@H](Cc1ccc(OCCc2nc(-c3ccccc3)oc2C)cc1)C(=O)O,1,23.0,6.162497058823529,3.264705882352941,7.764705882352941,159.23369344338195,90.80737902941179,1.5504456933157351,6.241598529411764,4.530228758169934,7.683408352941177,229.85468409444536,24.887323943661972,6.308507042253521,3.8450704225352115,7.380281690140845,143.69188774068525,94.58124469014085,1.870955788253521,6.462295774647887,3.2989045383411586,7.726468676056337,274.51070641464037,21.423728813559322,6.23249152542373,3.5338983050847457,5.898305084745763,149.73334117527327,80.04966002542373,1.6167244764884832,6.354738983050847,3.3356873822975515,7.702556508474576,231.77236807195686,17.741721854304636,6.218887417218543,3.0264900662251657,4.28476821192053,156.32193917822636,64.01872435761587,1.4063939638306817,6.309594039735101,3.131898454746137,7.7421188874172175,196.44589951489334,16.061728395061728,6.1704135802469136,2.7777777777777777,3.9012345679012346,158.65870078123382,56.97361524691358,1.3024478048171355,6.249337654320987,3.1164266117969825,7.723407160493826,178.9400773175361,16.130434782608695,6.086062111801242,2.7267080745341614,3.7888198757763973,158.04881134390945,57.887085633540366,1.2952044301883168,6.16987950310559,3.124223602484472,7.648518335403727,178.10962914657011,15.117283950617283,6.127561728395062,2.611111111111111,3.432098765432099,159.25232520579178,53.08275545061727,1.272995492443037,6.203515432098766,3.131858710562414,7.7050007160493825,173.6001168442851,15.089171974522293,6.006216560509554,2.5605095541401273,3.78343949044586,158.0137151128215,53.46756010828024,1.276174999059357,6.090071974522293,3.2745930644019814,7.577200484076432,171.02977795561316,14.202614379084967,5.924718954248367,2.503267973856209,3.5751633986928106,159.25172891912263,50.1815258366013,1.221498322550732,6.005033986928105,2.8814451706608573,7.518184862745097,162.14581010080502,7.234429065743946,0.12102223183390996,0.02205861609808279,0.5519031141868512,3.881487889273357,1.442765870829662,34.427156689446356,0.2352485690155406,0.1137895112456747,1.4677287581699345,0.07684435294117642,50.778372054321636,0.22000341147229374,-0.0037689592572736482,-0.011302796603722989,0.15522198937570061,1.077501340221258,-0.05262615146958314,1.067556499865984,9.52901626428116e-05,-0.0022204143111261765,-0.11688184663536773,-0.0036226478873239614,1.182090820553779,0.3435868863996246,0.014880584716438976,3.5806386981536783e-05,-0.06237170840419913,0.07888100404668333,-0.19035735812265825,1.5178015129464593,-0.020063179527104985,0.013876665224913555,0.19903483992467044,0.008764915254237268,-2.357722755025416,-0.8343511537844588,-0.011763661518366521,0.0004404720332181531,-0.06358990810971836,-0.7061859804303491,-0.017925935731899365,-3.9481170460883592,-0.012720500578081183,-0.011934885223080205,-0.09671633554083886,-0.006546039735099357,-4.1326122263598135,-0.8932889059763338,-0.013334450425050137,-0.00012277586779915896,-0.07078474091161518,-0.5114806271092315,-0.026048012883694075,-4.224619965771712,-0.01430690735361364,-0.01335324581357592,-0.14051783264746226,-0.007641382716049398,-4.463490911835881,0.10663779578327497,-0.00034176051494765183,0.0021440521315988915,-0.03363493735089943,-0.19807539384040057,-0.11161185856329953,0.4820839572470937,-0.011043441203055084,0.0005885304057684531,-0.007116977225672893,-0.0010430559006211258,-0.9344633558268374,-1.004400017087445,-0.026599973300867146,-0.00421464668277048,-0.0036097227562048857,-0.6278568072109018,0.01927135237137924,-4.637525710688196,0.004212201456175578,-0.025099950606604252,-0.29612482853223593,-0.01593516049382717,-1.7302883811467082,-0.024799991184184397,0.013799255614572525,0.001107607066535987,-0.003570405307120988,0.31146827408370614,-0.08468738584687661,-0.23462764073898607,-0.018304707839606603,0.011748592913186242,0.24181705590941255,0.009810624203821658,-3.398003191265959,0.5650711264898117,0.016262120338331357,0.0027390241849080833,0.027297193387158768,0.593521722414456,-0.05317132889413516,2.5865040435409434,-0.007753941653542764,0.015477549500192186,0.19258351488743644,0.010115712418300666,0.24174266030976266,,,0.4728070175438597,1.3092105263157894,0.6973684210526315,0.013157894736842105,0.6118421052631579,0.08552631578947369,0.8650148758241738,0.013925344047746585,0.02297797562669395,1.0908258167030662,0.27084192359868653,0.21297519452127991,1.95584069252724,0.48381711811996647,2.032994869621253,1.681570366940125,0.1073117316931769,0.24411277098795128,0.0,0.3514245026811282,7.503168706764718,1564.0,419.0498,222.0,528.0,10827.891154149973,6174.901774000002,105.43030714546998,424.42869999999994,308.05555555555554,522.471768,15630.118518422285,1767.0,447.904,273.0,524.0,10202.124029588653,6715.268373,132.837860966,458.823,234.22222222222226,548.5792759999999,19490.260155439468,2528.0,735.4340000000001,417.0,696.0,17668.534258682244,9445.859883000001,190.77348822564102,749.8592,393.6111111111111,908.901668,27349.13943249091,2679.0,939.052,457.0,647.0,23604.61281591218,9666.827377999996,212.36548853843294,952.7487000000002,472.91666666666663,1169.0599519999998,29663.330826748894,2602.0,999.607,450.0,632.0,25702.70952655988,9229.72567,210.99654438037595,1012.3926999999999,504.86111111111114,1251.1919599999999,28988.292525440847,2597.0,979.856,439.0,610.0,25445.85862636942,9319.820786999999,208.527913260319,993.3506,503.0,1231.411452,28675.650292597787,2449.0,992.665,423.0,556.0,25798.87668333827,8599.406382999998,206.22526977577198,1004.9695,507.3611111111111,1248.210116,28123.21892877419,2369.0,942.9759999999999,402.0,594.0,24808.153272712974,8394.406936999998,200.35947485231904,956.1413,514.1111111111111,1189.6204759999998,26851.675139031264,2173.0,906.4820000000001,383.0,547.0,24365.514524625763,7677.773453,186.889243350262,918.7702,440.86111111111114,1150.282284,24808.308945423167,491.9411764705883,8.229511764705878,1.4999858946696298,37.529411764705884,263.9411764705883,98.10807921641701,2341.0466548823524,15.99690269305676,7.737686764705879,99.80555555555554,5.2254159999999965,3452.929299693871,15.620242214532855,-0.267596107266429,-0.8024985588643322,11.020761245674743,76.50259515570933,-3.736456754340403,75.79651149048487,0.006765601547639624,-0.15764941608995853,-8.298611111111109,-0.25720800000000127,83.92844825931832,40.5432525951557,1.7559089965397991,0.0042251536638213405,-7.3598615916954975,9.307958477508633,-22.462168258473675,179.1005785276822,-2.367455184198388,1.6374464965397995,23.48611111111111,1.0342599999999977,-278.21128509299905,-125.98702422145328,-1.7763128892733449,0.06651127701594112,-9.602076124567473,-106.63408304498272,-2.706816295516804,-596.1656739593423,-1.9207955872902587,-1.802167668685111,-14.604166666666668,-0.9884520000000029,-624.0244461803318,-144.71280276816609,-2.160180968858122,-0.01988969058346375,-11.46712802768166,-82.85986159169549,-4.21977808715844,-684.3884344550173,-2.31771899128541,-2.163225821799299,-22.763888888888886,-1.2379040000000026,-723.0855277174127,17.16868512110727,-0.05502344290657195,0.34519239318742156,-5.415224913494809,-31.89013840830449,-17.969509228691223,77.61551711678209,-1.7779940336918685,0.09475339532872096,-1.1458333333333357,-0.16793200000000125,-150.44860028812082,-162.71280276816609,-4.309195674740478,-0.6827727626088177,-0.5847750865051915,-101.71280276816609,3.1219590841634366,-751.2791651314878,0.6823766359004436,-4.066191998269889,-47.97222222222222,-2.581496000000002,-280.3067177457667,-3.8935986159169502,2.1664831314878863,0.17389430944614997,-0.5605536332179951,48.90051903114187,-13.295919577959628,-36.83653959602081,-2.8738391308182365,1.84452908737024,37.96527777777777,1.5402680000000004,-533.4865010287556,86.4558823529412,2.4881044117646978,0.41907070029093674,4.176470588235292,90.80882352941177,-8.135213320802679,395.7351186617644,-1.1863530729920428,2.3680650735294044,29.465277777777775,1.5477040000000017,36.98662702739369,0.7080842670313138,0.5627985527223428,0.44841586557460306,0.30226600668599785,0.29775167066074526,0.16231359235391277,0.1921707870445945,0.08808942894451978,0.12550480411063916,0.04802602905017555,0.0837951472368551,0.0262957765085816,0.0531762934799763,0.014147098843762538,0.03557633504128108,0.007843400288656252,8.02989245560575,5.6925516044228575,3.556011410670712,2.1918755294333074,0.4569415252750891,-0.5244292595763105,3.1885027708576095,0.9726894473019556,6.025053928901818,0.9950217511965059,14.548103169963516,10.953002374996125,16.01554047869566,11.70392635621609,2.001277571105086,0.7414271570554847,3.5021350419129313,2.241714067580092,7.009379517881793,1.2546091955056684,3.71500848453685,2.4377295953712377,20.907154967109452,14.700425501112992,0.22841261185494313,0.5521196333322098,0.7120171914522476,0.8556560552003539,0.8958309632073336,0.9095975277681184,1.104767909975982,1393.4825879758548,0.0,2.0,3.0,0.0,20.0,3.0,3.0,0.0,0.0,4.623477117127727,2.5487122677072023,1.5238663079820807,0.6032286765978494,0.3457319853577481,0.25749669124009955,224.72769846916697,2816.8028169265817,80.70997657232382,41.42357083715561,83.58814390432639,,23.0,1444.0,12.011146117099809,14.69560176298435,12.204066569290948,35.92843014750157,22.581078397116894,6.076020106833881,31.18920547353706,67.58740788430673,10.30076712495354,9.154013890853395,17.96666666666667,49.75,26.5,0.5,23.25,0.0,0.0271929824561403,3.25,0.15092592592592596,0.07129629629629664,-0.07962962962962933,0.026096491228070118,0.13875987193169648,0.0,0.5916666666666653,0.8219298245614031,0.4407407407407394,0.5203703703703687,0.795833333333333,32.870565281318605,0.5291630738143702,0.8731630738143702,41.45138103471652,10.291993096750089,8.093057391808637,74.32194631603512,18.385050488558726,0.5752401280683035,0.111317254174397,0.0,0.3061224489795918,0.1935483870967742,0.3668310084139863,-1.2246133478865286,-0.04893029844581543,-0.018009019821860713,-0.051025556161938684,0.6331689915860136,2.1137449691521812,0.04672383110103081,0.031084484840473253,0.048039658389822305,-7.721993983030972,0.7836016457467752,0.7606217663474718,1.4870239200729416,0.8297717338513841,0.5237776110642011,1.1337119446046262,0.7882136088830669,1.031132536763025,0.7426120325759998,0.6937609514588226,0.7881306874372019,0.9330040546579379,0.8408318926992786,0.7308693459983034,0.9995814839749579,1.316255778120185,0.9131946149516681,1.189734379957205,0.8469118241862474,1.0905440677139595,0.7261016927247865,0.5205460712213485,0.7437150085437692,1.0086535468428626,1.0841494346352152,1.171460224008658,1.168621297738196,1.1704727106645352,1.2002975483257738,1.0574484283182197,1.0818271461670799,1.0194652171541134,1.1613444871583969,0.9549058784280695,1.1653840935806306,1.0269752930391602,1.1261320809030961,1.2475863123010966,1.1466982244788975,1.1736473934749796,1.1861743252798893,1.032390447399593,1.122445698169867,1.021540352970446,1.2368864372320718,1.1974604254500352,1.2495299470468533,1.0402246850432597,0.9817047583893265,1.0550232304415235,0.9802381836320018,1.1254940711462451,1.077656362687515,1.0625293598966215,0.9811616012848697,1.0255950044254314,1.040438988886213,1.1078969977855495,1.0757817877963458,0.9943406499674589,1.159760511837119,1.4018588863325085,1.3313381670245357,1.0138550253492782,1.2073280285708778,0.9655127643008208,1.1518916516963895,0.9516052780521874,1.3840533111915645,1.532710208120729,1.421174800859851,0.9960720451362127,0.9893666445543038,0.8379243480553219,0.8962441201914361,0.9494888485114709,0.8779460550578527,1.0325813674233826,0.9933569873722083,1.0660996112647618,0.8538107401592893,0.8712597566747798,0.8192568295467637,1.0606977105293365,0.9226553469648052,0.7957982481826724,0.8357710171744611,0.8401253918495297,0.8071589530247875,0.9832319784257633,0.9266328272296703,1.0269263498505103,0.8064169758390956,0.6462593386923376,0.7905327856512608,1.005949436129656,7.5,0.13968166513621058,3.7777777777777795,2.2916666666666665,1.7794444444444446,1.226111111111111,0.7494331065759638,0.5538548752834467,0.4527746283698664,0.2634336419753087,7436.751857041305,8312.900885015559,3598.201389141966,3288.977653951765,24.207344800980582,0.48273160143421756,12.521694478732945,0.9332323466360516,0.0,0.1935483870967742,1.4639857241226115,3.538750573543137,4.563596533268258,5.48423416465249,5.741730855892591,5.8299661500102395,0.1829268292682927,0.0038800462537836276,0.0686868686868687,0.04243827160493826,0.03558888888888889,0.02404139433551198,0.0159453852462971,0.012307886117409926,0.01104328361877723,0.006754708768597656,0.40361356278936605,30.947055324211778,15.85190082644628,9.809688581314878,221.35716645989262,0.0,4.5505453656172445,331.2587485422912,,262.55893921171764,258.9995384215335,261.7960292618839,262.60685934168896,350.4328119488975,261.309361206359,262.74713664529065,312.094001060649,0.030410611462629623,-0.031142701635565113,-0.5123982643999758,0.28124862024813463,0.2776000778461721,-0.03647587771071996,0.031009139369131907,0.00040506160373930564,-0.019513347819310346,-0.07963450057427783,-0.04714266889718054,0.02327941548203245,0.04749329674494392,0.12295744749494443,0.0016232381407031635,-0.11301206099569622,0.020322362531305083,-0.1319391884514106,0.044087332759947064,-0.08528502260848866,0.12195030168425147,0.13560737215017904,0.11406062929499483,-0.04643163338326746,-0.11533061506335457,-0.0972024837098599,0.019968253278429212,-0.11521933193547716,-0.1819369274297935,-0.012424701813601304,-0.1146803112932836,-0.05407259492082548,-0.10488563570074977,-0.06589523779681981,-0.0851856966003772,-0.08138528391455385,-0.12347745728908786,-0.11018182546286405,-0.005565891679389167,-0.12825573745113972,-0.13177437150396065,-0.01805422030721809,-0.12271184646122021,-0.060816129141548665,-0.11735041013354819,-0.09573828397466953,-0.09943974311162201,-0.0879014180892001,0.014740319493658477,-0.002823948209918005,0.09719794397189044,-0.06094355419692749,-0.05103079012246557,-0.07735964706395305,0.01400301400419967,-0.04694371255591166,0.005172097140814673,-0.004848973072209085,-0.013573618108536547,-0.01840278287825313,-0.13883611380522376,-0.21979410640329916,-0.191065779649558,-0.006540500793374369,-0.1617567348196573,0.013357227781037857,-0.13470545222544705,0.01790532233119479,-0.2205822868191495,-0.20175718904729018,-0.20736931061187247,-0.03407530236092803,-0.0034280509158097767,0.11402248500515609,0.05021199252079345,-0.006469261026695709,0.08024455646105733,-0.05869794091967061,-0.00681519077673095,-0.07781007092288576,0.10324846978049415,0.1647559568233348,0.12766877237331406,-0.06691831686984465,0.07810860005048695,0.1343729998356779,0.12417026402423058,0.04946011842563563,0.15291087833989547,-0.03685374735372622,0.07512976069655604,-0.03296063260232004,0.136019122771129,0.13121192442094196,0.13163898232111007,0.004760740656497444,21.164036569013017,30.935803159590787,9.335820997872457,13.25597403156669,32.245381765942355,41.01587802245701,44.129881554489515,45.03667351337719,45.44923233690659,77.25380504560762,63.89967394372475,4.077845804340722,9.276285297542149,0.0,13.35413110188287,23402.8159552335,23013.89883372365,1600.6186240533352,112.0,55.0,68.0,83.0,98.0,93.0,101.0,106.0,113.0,510.2154720600008,41.0,5.262690188904886,6.0844994130751715,6.934397209928558,7.771910256435763,8.62317351495347,9.467073426283948,10.319001996497294,11.166299856884498,12.018881250297902,0.6617647058823529,0.9831764705882352,1.1155551701422648,0.6251499850627121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6867188270517787,0.9707612456747405,1.004369992716679,0.6502549957495722,14.0,1.0,0.0,1.0,0.0,0.0,7.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,1.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,19.57732988970043,17.551600081306308,5.783244946364939,5.890723922025908,0.0,4.794537184071822,9.77851570501903,0.0,0.0,60.6636706846161,43.67639416492468,35.74160564913573,12.300809959361379,309.5205845827585,-1033.2906178365356,-41.28586251265283,-15.195450262301993,-43.05377574318898,534.2482830519255,1783.5121990900461,39.424114059671,26.22812057485362,40.534368161137415,0.4782608695652174,0.850246226819463,0.14773454013048684,32.34726184939536,0.09763921966981884,35.807979980789206,0.14975377318053687,12.0,0.2926829268292683,0.24049193601679794,0.5813178110203121,0.7496713577196826,0.9009063886993767,0.9432058980278332,0.9577004906715437,5.643520000000006,,1.5357142857142858,1.7999069334574216,1.3161701003068016,1.5313282524578438,-6.447834958059397,1.6159730722154224,1.5229999873188609,-2.633621646776986,145.10999999999984,23.849615653837745,0.0,10.30076712495354,0.0,32.730958474381225,6.606881964512918,119.2832767754692,0.0,17.20368724700681,4.418840607796598,0.0,5.713732805509369,2.3978952727983707,7.1846291527173145,4.727387818712341,8.729558869558568,6.803505257608338,10.31238011354455,45.0,25.933041351147303,4.598217813667354,0.0,5.8032525913765305,0.0,0.0,5.210822035291567,0.0,66.856,0.0,24.22210494145263,0.0,0.0,0.0,1.418259456008183,0.0,-0.6886922104898658,75.85775156967401,10.05365155780638,0.0,5.749511833283905,34.49177894376558,17.63618042992384,6.923737199690624,34.29935278087934,101.11934931540564,0.0,11.454175413722904,0.0,42.51019898426443,46.69688023952095,49.07236924451908,662.5174970845824,,525.0370513557662,517.9043448992009,523.5227864132254,525.1331224595644,703.241142040238,522.5336711983907,525.414115396512,625.1582837806369,49.07236924451908,662.5174970845826,,523.5821641377208,516.1991699096096,522.2758884234612,523.6823904309201,707.3134588558544,521.0027493405023,523.9712733032626,626.8216237680754,4.685933986080092,516.303409760499,,411.69903505997473,405.96714352720994,410.7360965152432,411.77693485263,555.8179862437374,409.69722587397007,412.00110408697077,492.20638158798647,1.29137813801366,17.434670975910063,,13.816764509362267,13.629061707873706,13.776915431926984,13.819292696304327,18.506345843164155,13.750886084168178,13.826687247276631,16.45153378370097,2.3852780203738626,331.2587485422912,,262.55893921171764,258.9995384215335,261.7960292618839,262.60685934168896,350.4328119488975,261.309361206359,262.74713664529065,312.094001060649,66.01176470588236,0.0,3.581413494459915,0.0,0.0,0.0,9.697515567842911,68.29715950473417,1.2804029025153933,2.9453252680442397,5.877463940733552,0.0,-0.8791271520497157,0.0,0.0,0.0,0.0,44.21733971097091,717.411296014121,99.55102924033758,240.63503900093332,310.32456426224155,372.9279231963693,390.4376982006962,396.4376982006963,908.0,156.64792711326152,126.35757162056291,88.28792989824545,101.66000000000001,101.66000000000001,0.9166666666666666,8.52379789476517,6.357552004618084,3.915042153744643,6.0741282043296705,,6.080136984973735,6.079689396592946,6.08120525881369,6.080146510501872,6.090894443770651,6.080037348215695,6.0801545360559635,6.086376245313018,0.10302742509854323,0.1598454790613071,,0.16000360486772988,0.15999182622613017,0.16003171733720237,0.16000385553952295,0.16028669588870134,0.16000098284778144,0.16000406673831483,0.16016779592928995,2.6998271633571513,3.139039540200922,,3.1400282928799212,3.1399546753187906,3.1402039764222947,3.140029859542103,3.141796008567972,3.140011905490183,3.1400311795018743,3.141053937741047,393.3200000000013,3501.78217153618,267.11314437218135,,266.22257835689607,266.27270794369343,266.1797638551407,266.2217430150594,265.2684093762883,266.23725118267856,266.2202622137936,265.6280685277959,92.15216240884685,7.029293272952141,,7.005857325181475,7.007176524834038,7.004730627766861,7.005835342501563,6.980747615165481,7.0062434521757515,7.0057963740472005,6.990212329678839,9.496028376483137,6.922673397064524,,6.919333786365151,6.919522068170587,6.919172951228063,6.919330648602935,6.915743245687231,6.919388899727595,6.919325086302248,6.9170981584489395,11.680716532110083,28.82032275511999,12.642840835887151,3.654195430938773,0.8679343938629283,25.053914199097587,2.268415835575961,4.0116600174075305,0.0,480.7403957808585,261.1638331630196,-871.8584545494767,-34.83572546162233,-12.821447861021715,-36.32743560622819,450.7820688264973,1504.8720686388535,33.26484007762922,22.130471597630194,34.201637923610306,6084.0,54.0,2.3349946125163745,0.9373515718690653,0.0,0.0,0.48570226039551584,0.08576513155010766,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02282177322938192,0.5072794607297353,0.14229789814100663,0.5252628503252752,0.12326117633914827,26.907202147189924,21.386345003449026,18.385050488558726,12.392906274125911,16.376341886340988,8.927247579465202,13.067613519032426,5.990081168227345,10.41689874118305,3.9861604111645708,8.2119244292118,2.576986097840997,4.945395293637796,1.315680192469916,3.5932098391693894,0.7921834291542815,5.027263337618425,1.6566280752600302,6.907682966778517,1.9929803092740035,9.761412531423876,2.2409929823793138,124.88949627741142,73.1713325633294,41.42958844465588,28.907701796009984,26.26815153543563,25.30639557278849,192.0,219.0,77.98378999999998,37.01421000000001,0.47058823529411764,275.07,11.722222222222221,8.444444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,23.0,23.0,68.0,0.0,0.0,71.0,23.0,3.0,14.0,57.0,26.0,41.0,45.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,6.0,2.0,1.0,38.0,7.0,0.0,2.0,5.0,0.0,4.0,12.0,0.0,0.0,0.0,1.0,4.0,4.034240638152395,7.05261967082381,4.592591403781231,5.097577224230064,5.600965018974845,6.03921250169897,6.101299412915191,6.411612992126707,6.647891011915357,6.92033210806209 +5311128,CC(C)C[C@H](NC(=O)[C@@H](COC(C)(C)C)NC(=O)[C@H](Cc1ccc(O)cc1)NC(=O)[C@H](CO)NC(=O)[C@H](Cc1c[nH]c2ccccc12)NC(=O)[C@H](Cc1cnc[nH]1)NC(=O)[C@@H]1CCC(=O)N1)C(=O)N[C@@H](CCCN=C(N)N)C(=O)N1CCC[C@H]1C(=O)NNC(N)=O,0,22.777142857142856,6.379761142857143,3.097142857142857,7.6,168.07193663521093,89.78293377714283,1.3295853714703774,6.412724,5.8119444444444435,7.884542239999999,200.04375846228507,24.261111111111113,6.5291494444444425,3.761111111111111,6.722222222222222,153.12409708359053,91.37890433333334,1.6638342956222218,6.642031111111117,3.3334104938271607,7.926710444444439,246.98867800959945,20.35625,6.367876562500002,3.4,5.078125,158.17838115243143,75.29225617812499,1.4269518359973996,6.452486562499997,3.2745225694444438,7.826858637500003,203.96786910855315,16.350446428571427,6.352377232142857,2.8035714285714284,3.8058035714285716,164.49924009559263,57.86752839732141,1.2139178286971788,6.403836607142859,3.2791418650793642,7.879212535714288,168.0907544768651,15.612,6.280579600000003,2.664,3.946,166.88225455434534,55.60032614799999,1.1300632484146655,6.324847200000001,3.3128611111111113,7.845399279999999,158.31675331184297,17.846613545816734,6.4246406374502,2.8326693227091635,4.796812749003984,165.3793619428952,64.88979067131474,1.1913077995123542,6.4682225099601585,4.22269256308101,7.946392756972109,169.71402969413347,17.139823008849557,6.4011200000000015,2.8017699115044246,4.168141592920354,165.85261292443627,61.61600394690264,1.1948330122953985,6.446764247787609,3.511996066863323,7.926666661946901,169.24961013361798,16.661417322834644,6.403256062992128,2.719685039370079,4.111811023622047,165.6789922652848,59.568408930708635,1.170755479719496,6.447432598425196,3.6118328958880124,7.952948655118111,166.8321521573319,17.178729689807977,6.385148301329393,2.7149187592319053,4.302806499261448,164.21163217507186,61.74142989069423,1.203043354764602,6.434432200886266,4.02361316264566,7.913249264401774,169.23945956082886,7.855477551020408,0.15658943346938767,0.028698751579662642,0.6097632653061225,4.129763265306122,1.4564444955537477,37.16382711627755,0.2051540323811839,0.14471103999999993,2.3823931972789114,0.09597759999999994,46.39253498948752,-0.0037632653061228536,-0.01795968426303844,-0.018760378603690335,0.14144308390022678,1.0127129251700677,-0.12196691325977081,0.07670956029387582,0.004532553098763422,-0.014234573333333264,-0.17482220962459055,-0.011751164444444464,1.949956363662155,0.39148673469387757,0.021784257602040846,0.002755494207404069,-0.0761918367346939,0.10146887755102045,-0.1270196927490683,1.723579490008164,-0.018157782005196008,0.01918906000000003,0.19540020549886616,0.012496539999999995,-2.542469539803607,-0.9499801020408167,-0.005898660510204036,0.0039055765997230217,0.006818367346938761,-0.42487806122448973,0.09143206527602617,-4.53024475632857,-0.014144255749973135,-0.007766754285714243,-0.21080297264739237,-0.002614660000000011,-5.197491472932209,0.15615673469387745,-0.017038953469387726,-0.006779209549156476,0.025665306122448977,0.06912816326530614,-0.04063422160606787,0.8460746320081624,0.009323273179015434,-0.013216488,-0.2778499433106575,-0.012008814400000005,3.1829558839220935,0.6650119196682656,0.023650042910805795,0.0024634298711347976,-0.00516451744044233,0.42969034880884616,-0.09940615893336391,3.0479890987025295,-0.0012466455375437161,0.0214884181673307,0.49486554552764006,0.016026568286852567,0.7239180881910364,-0.1061981578472098,-0.002944133848654454,0.0037096788787099755,0.005023081090843396,-0.18232458009752572,0.11505393307883402,-0.4949407974709775,-0.0003686710762492232,-0.0028461196460176663,-0.16670777797844802,-0.0027419978761062127,-0.12104092642030595,-0.32959228667845103,-0.02412835450425833,-0.004798267486334012,-0.01613446890567252,-0.29769127430499753,-0.00651611055231952,-1.4317014057353699,0.00823856319791143,-0.02070276913385824,-0.3395013712571644,-0.015967589291338593,1.5113135911312765,-0.06345391734241712,0.010961600926054365,0.00171165360456705,-0.02533617098242546,0.10973873933620719,-0.09125055910700891,-0.3849989935090342,-0.011532128900018703,0.009082218493353054,0.3063256487035976,0.008432345760708993,-2.5864015234669178,,,0.45457875457875435,1.0576923076923077,0.4010989010989011,0.005494505494505495,0.6565934065934066,-0.2554945054945055,1.612117291593768,0.024641106600289484,0.030311436270619156,1.509530689835521,0.21096191550819143,0.2634542697857289,3.121647981429289,0.4744161852939203,1.997902469912153,1.3345509546511236,0.3892920318538653,0.27405948340716413,0.0,0.6633515152610293,7.24937965353144,3986.0,1116.4582,542.0,1330.0,29412.58891116191,15712.013410999996,232.67744000731602,1122.2267,1017.0902777777776,1379.794892,35007.65773089989,4367.0,1175.2468999999996,677.0,1210.0,27562.337475046297,16448.20278,299.49017321199995,1195.565600000001,600.0138888888889,1426.8078799999992,44457.9620417279,6514.0,2037.7205000000006,1088.0,1625.0,50617.08196877806,24093.521976999997,456.6245875191679,2064.795699999999,1047.847222222222,2504.594764000001,65269.71811473701,7325.0,2845.865,1256.0,1705.0,73695.6595628255,25924.65272199999,543.8351872563361,2868.918800000001,1469.0555555555552,3529.887216000001,75304.65800563556,7806.0,3140.2898000000014,1332.0,1973.0,83441.12727717267,27800.163073999996,565.0316242073328,3162.4236000000005,1656.4305555555557,3922.6996399999994,79158.37665592149,8959.0,3225.1696000000006,1422.0,2408.0,83020.43969533339,32574.674917000004,598.0365153552018,3247.0476999999996,2119.791666666667,3989.089163999999,85196.442906455,9684.0,3616.6328000000008,1583.0,2355.0,93706.72630230649,34813.04222999999,675.0806519469002,3642.421799999999,1984.2777777777776,4478.566663999999,95626.02972549415,10580.0,4066.067600000001,1727.0,2611.0,105206.16008845584,37825.939670999986,743.4297296218799,4094.1196999999993,2293.513888888888,5050.122396000001,105938.41661990575,11630.0,4322.745399999999,1838.0,2913.0,111171.27498252365,41798.948035999994,814.4603511756355,4356.110600000002,2723.9861111111118,5357.269752000001,114575.11412268115,1374.7085714285713,27.403150857142844,5.022281526440962,106.70857142857143,722.7085714285713,254.87778672190584,6503.669745348572,35.90195566670718,25.324431999999987,416.9188095238095,16.79607999999999,8118.693623160317,-0.6773877551021137,-3.2327431673469187,-3.37686814866426,25.45975510204082,182.28832653061218,-21.954044386758746,13.80772085289765,0.8158595577774159,-2.5622231999999876,-31.4679977324263,-2.1152096000000036,350.9921454591879,125.27575510204082,6.970962432653071,0.881758146369302,-24.38138775510205,32.470040816326545,-40.64630167970186,551.5454368026125,-5.810490241662722,6.14049920000001,62.52806575963717,3.9988927999999984,-813.5902527371542,-425.5910857142859,-2.642599908571408,1.7496983166759137,3.054628571428565,-190.3453714285714,40.96156524365972,-2029.5496508351996,-6.336626575987965,-3.4795059199999807,-94.43973174603178,-1.1713676800000048,-2328.47617987363,78.07836734693872,-8.519476734693862,-3.389604774578238,12.83265306122449,34.56408163265307,-20.317110803033934,423.03731600408116,4.661636589507717,-6.608244,-138.92497165532873,-6.004407200000003,1591.4779419610468,333.8359836734693,11.872321541224508,1.2366417953096684,-2.5925877551020493,215.70455510204076,-49.90189178454868,1530.0905275486698,-0.6258160598469455,10.787185920000011,248.42250385487532,8.04533727999999,363.40688027190026,-60.00195918367354,-1.6634356244897663,2.0959685664711363,2.8380408163265187,-103.01338775510203,65.00547218954122,-279.6415505711023,-0.2082991580808111,-1.6080575999999813,-94.18989455782312,-1.54922880000001,-68.38812342747286,-209.2911020408164,-15.32150511020404,-3.0468998538220977,-10.24538775510205,-189.03395918367343,-4.1377302007228955,-909.1303926419599,5.231487630673757,-13.146258399999983,-215.5833707482994,-10.139419200000006,959.6841303683606,-42.95830204081639,7.421003826938805,1.1587894902918927,-17.152587755102036,74.29312653061227,-61.77662851544503,-260.64431860561615,-7.807251265312662,6.148661920000018,207.38246417233555,5.708698079999989,-1750.9938313871032,0.731070648944626,0.5647357017607558,0.4497070089765285,0.3110477390398117,0.3037648111486437,0.17785437454066058,0.18877388500358072,0.09277294948728426,0.11948775996094557,0.05168224576407464,0.07984388132059328,0.028107420125936037,0.04929168825411892,0.01571532725427901,0.030864704305386976,0.008768462675946482,8.037160875882815,5.67610162167287,3.5640668361572847,2.175532665573656,0.46578130067419254,-0.41503798306753187,4.01712306409194,0.9719521865340033,6.0352774144754475,0.9871419751051608,14.63797001980446,10.937032753776398,16.023720447300583,11.687543927345692,2.01855549340992,0.7497839448715575,3.5107107004782447,2.225343297707912,7.01930336001765,1.2002908299032882,3.722916302759059,2.4212243149420725,20.9177017580331,14.701764166830614,0.2177625724662755,0.5150314221844388,0.7223391701941664,0.8428323456232063,0.8900051392716183,0.9045762640131603,1.206575154475692,3235.8056238394643,0.0,12.0,9.0,0.0,11.0,19.0,3.0,2.0,0.0,5.7850984134887575,3.5106790781177906,1.924556782113469,1.0026572684715935,0.6417357858502761,0.5302513572541221,,,,,,,32.0,4710.0,132.3871142788428,62.952963814471445,94.4110595956999,34.14457753324952,0.0,41.689541651074535,65.08099784391263,5.425791397110385,67.90444052463833,21.937865385286607,41.366666666666646,96.25,36.5,0.5,59.75,0.0,0.04542124542124565,-23.25,0.17207314865109585,0.02600847668910511,-0.14606467196199074,0.10758010758010816,0.20726255614536604,0.0,0.6104761904761895,0.8970695970695978,0.43840304182509365,0.5844677137870844,0.7894894894894896,146.7026735350329,2.242340700626343,2.758340700626343,137.3672927750324,19.19753431124542,23.97433855050133,284.0699663100653,43.17187286174675,0.5067374438546339,0.1941982272361,0.012087026591458508,0.348106365834005,0.5084745762711864,,,,,,,,,,,-8.643431718321935,0.8571756160959484,0.8494576695949223,1.7454550074249804,1.0644255828067546,0.5410433501483837,1.501886145785601,0.8624688537131996,1.205223695898216,0.8241318765477808,0.6652440989519294,0.837002729208244,1.0533890760714444,0.8500119765643837,0.6407783553446011,0.8880316780372768,1.4981223894184428,0.8663632199108119,1.3334825933761707,0.8594562060348042,1.232131593606989,0.6466776456230094,0.534155821919764,0.6265818698470123,1.1217432527064874,1.0997379574476045,1.0392885213236374,0.931503308664212,1.0609880381814287,1.114056792305138,1.0177609205841145,1.1009447405622805,1.0960043870883587,1.0486704316098499,1.0071114242509818,1.0339609610014449,1.1118003842372408,0.9892889505931648,1.1726181696227882,1.27309221255686,1.0256533147691977,1.0343090279425022,1.019073307180245,0.9848692895162838,0.9384568637046959,1.1498404623645657,1.2474254294115732,1.2034393067906324,0.9128833143872531,0.916010155260475,0.9259721742059739,1.0082077172591788,1.1449996309076642,0.9419412345399938,1.1199196287569289,0.9171125603731602,1.0104045614759818,0.9180099705966639,0.9434772686413199,0.928521633704666,0.967705714465855,1.0111221090620215,1.0827554577618401,1.0151096274783569,1.0663896895119902,1.0832111983280766,0.9822218172318052,1.009658540812364,1.0009995454315213,1.0736616453010133,1.1472027695887315,1.1026554038335876,0.9831385137474264,1.0620112043053986,1.3088847169916424,1.260317954626054,1.1465623600627088,1.1708185890872471,1.0188749804171802,1.055245102136576,0.9588844674422076,1.283349214752767,1.4181278143346083,1.3665628196635462,0.9440267253807993,0.9986496905929038,0.9794564896493972,0.9614490517544354,1.1175816295423506,0.9909606773645995,1.121268789575339,1.0001003248058864,1.0843699095329777,0.9775595023524782,0.9797741572284399,0.9851327108913163,1.0540375191113862,22.5,1.7457585960616262,10.888888888888893,6.041666666666666,6.054444444444446,3.6394444444444445,3.043401360544217,3.006164965986395,2.1101820357772736,1.8862577160493832,,,,,,,,,0.0,0.5084745762711864,1.666112698343571,3.9405320337145384,5.52665432971886,6.4485538433607354,6.809475325982053,6.920959754578207,0.234375,0.007899360163174779,0.08187134502923979,0.04508706467661692,0.04146879756468798,0.02153517422748192,0.0167219854974957,0.015106356612996957,0.009769361276746637,0.008652558330501756,0.4824870033789424,79.98046875,40.30131720278139,27.225,523.8034733217318,0.0,5.408857639964532,1188.7920772926382,,1053.047681158757,1025.1195673371597,1003.7962500084158,1053.2940603385873,1515.4090850037608,1041.2838994005972,1054.7219140218185,1366.2122108945573,-0.0004790625753406952,-0.11469282355216805,-0.6537001636330714,0.23196393083669514,0.24522299708503986,-0.08374291889056738,0.0020640920552629912,0.02209341462195473,-0.09836549673980141,-0.07338092210146778,-0.12243653148697688,0.04203168384965409,0.049836147089876714,0.13911703439619086,0.09601442765742985,-0.12495314340794691,0.024570143863560902,-0.08721217536049992,0.0463778793452961,-0.08850804341714409,0.13260259894476634,0.08201845342827778,0.13020267229020108,-0.054803419135852925,-0.12093218978360094,-0.03766959480926399,0.13608872807173628,0.011181991003534302,-0.10288194114995969,0.0627775830490974,-0.12189930660678237,-0.0689445661184596,-0.053670779269599934,-0.08848370323092106,-0.027242398226252924,-0.11203292672215374,0.01987870675966645,-0.10881291982398507,-0.23621966726805493,0.042090607261433,0.016739013552192553,-0.027899601893595357,0.022766079213558343,0.04544523483551346,-0.091330198442358,-0.11662640055722467,-0.12512101156936634,0.06860922526961172,0.08465582332189113,0.15103217622553847,0.08583752726305022,-0.008469709040031399,0.10404721074901495,-0.06825262427564682,0.08201494128056383,-0.006076631899817606,0.1484919061277613,0.20771783016038606,0.16698238221056347,0.015604193397818746,-0.013518994505103629,-0.018801612493412685,0.129262726582812,0.008237756153319,-0.04414891808187237,0.07899644197226337,-0.013317810243880835,-0.001797045234598258,-0.019667605498638305,-0.06997492192676506,-0.028569144009708666,-0.002609060411286722,-0.04195700191844324,-0.15408673477942741,-0.16719429320870885,-0.026460217962740756,-0.07208434362470192,-0.004473984811787875,-0.038524057311317444,0.040157939389677065,-0.14306281769420115,-0.14250434044427734,-0.16636787428877783,0.03257665465949937,-0.008077665161702946,0.070002175007532,0.05964209278636401,-0.04155083197690798,0.026572646489961143,-0.0626529602642461,-0.010359508785369599,-0.05621205084865977,0.06276106158419605,0.12857896381398012,0.0878574350755697,-0.05575038147954175,0.0,0.0,0.0,16.255389427041525,36.96778360028582,44.57227344712318,49.45649310113755,51.95450592555099,52.77127376411838,181.80912476200592,121.44413687325225,35.42557489870174,24.939412990051938,0.0,60.36498788875367,,,,363.0,133.0,160.0,198.0,232.0,247.0,278.0,323.0,337.0,1268.641439368002,96.0,6.129050210060545,6.951772164398911,7.820439515262181,8.665095821339733,9.534378481388618,10.389825792650848,11.260417467526102,12.122174598912311,12.994104915556347,0.6438095238095238,0.9978514285714285,1.1463249073546635,0.6039382946584679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6349653105218136,0.9818039215686274,1.016314639475601,0.6023274251984531,11.0,1.0,2.0,0.0,0.0,2.0,4.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,1.0,12.0,0.0,5.0,0.0,0.0,3.0,2.0,14.0,10.0,1.0,0.0,10.0,1.0,1.0,0.0,0.0,89.55309577976358,60.12607929561554,5.959554568743835,53.16461756416355,5.907179729351506,58.363567970464274,15.204307102129416,0.0,0.0,44.179309741689295,94.54005157156816,67.76333937368486,25.142134814774067,,,,,,,,,,,0.5,,0.046272342061494054,,0.030094607146762955,,,16.0,0.3229166666666667,0.22360293827909766,0.5288445025342359,0.7417122192314048,0.8654370070283742,0.9138749692877153,0.9288368898296149,-3.1057000000000192,,6.071428571428572,7.34201954397394,6.478371140533878,6.054721320061088,-24.479392428020855,6.523408812729499,6.003661079082666,-11.333766001194077,328.53820000000024,67.68982676827149,0.0,73.23773691996354,28.11131321028362,158.80452050102855,26.303276740850986,84.07277474392603,0.0,5.749511833283905,5.262690188904886,0.0,6.586171654854675,3.713572066704308,8.06117135969092,5.973809611869261,9.608109273449877,7.9658927350845286,11.19811882512179,112.66666666666667,17.209323529882635,4.0019372921069785,6.008366538908427,0.0,0.0,1.3942644415869032,1.2725303809821908,0.0,174.624,0.0,151.6115642182222,0.0,0.0,0.0,0.0,3.9719080427691567,-9.242723203281953,200.6068587870661,70.58689405775797,4.794537184071822,5.749511833283905,187.4082614721368,71.94469966329629,5.917906046161393,96.38526833717765,72.24434849831924,0.0,10.902924932081056,0.0,105.68920156523188,111.11892934131738,113.15528560572781,2377.5841545852763,,2105.961924326933,2050.077771607419,2007.450118233523,2106.4550498789313,3033.749537303892,2082.4244271789366,2109.3118794484926,2733.6698905804546,113.15528560572781,2377.5841545852772,,2100.0239337460853,2042.8971151303456,2001.1141288762974,2100.533399357114,3055.297562435543,2076.044389988464,2103.440166964554,2743.7581877903094,4.782750491554129,1715.5880123734953,,1529.6840013667577,1487.0644053715591,1452.2352966625608,1530.05313033218,2220.2543468514514,1511.6329413365572,1532.2484405414505,2002.0820045996393,1.2434646769860198,26.127298402036004,,23.142438728867397,22.528327160521087,22.059891409159594,23.14785769097727,33.337907003339474,22.88378491405425,23.17925142251091,30.040328467917085,2.422175716305221,1188.7920772926382,,1053.047681158757,1025.1195673371597,1003.7962500084158,1053.2940603385873,1515.4090850037608,1041.2838994005972,1054.7219140218185,1366.2122108945573,171.8156862745098,0.0,8.629266998606903,0.0,0.0,16.199506582371505,20.960696558174533,177.8550619082302,-0.8917497623893067,25.27963004567382,6.025069762780987,0.0,-12.693791938570588,1.258972011377741,-0.911438165868804,0.0,0.0,105.40729940972929,,291.56972221012495,689.5931059000442,967.1645077008005,1128.4969225881287,1191.6581820468593,1211.1679570511862,2458.0,272.8672589670956,,149.36953571568023,495.8899999999998,495.8899999999998,1.0,8.814657147675868,7.584962500721156,5.1322404270896405,9.399167847484744,,9.401984252157316,9.402387488192211,9.40384112132969,9.401984119355784,9.391821697387138,9.402223884517182,9.401951317808042,9.395057635310575,0.05639824645153451,0.10328755876356861,,0.10331850826546501,0.10332293943068364,0.10333891342120538,0.10331850680610752,0.1032068318394191,0.1033211415881009,0.10331814634953893,0.10324239159681951,3.8438167077933376,4.448895572016704,,4.449195171177299,4.449238058654799,4.4493926492609805,4.449195157052458,4.448113691908228,4.449220658276584,4.449191668256418,4.4484581810485615,948.5300000000036,16685.31287505367,972.9800865217023,,969.220657662403,969.2280455806207,969.6508688164909,969.2217605723587,973.0664834853839,969.2360411479444,969.2195697128184,970.9756901653055,183.3550865390513,10.692088862875849,,10.650776457828604,10.650857643743084,10.655504052928471,10.650788577718227,10.693038280059163,10.650945507120268,10.650764502338664,10.670062529289071,11.93055855640862,9.088638029437405,,9.084766716375881,9.084774338881656,9.08521049117506,9.084767854310074,9.088726821725391,9.08478258826567,9.084765593875874,9.086575845625655,6.025069762780987,166.85274810338453,42.75895487199252,21.5580999081673,-8.582681332860707,-0.7157040234702523,4.907969641276474,7.278876402062506,0.0,1176.9200636461194,,,,,,,,,,,52357.0,134.0,7.923986732849433,3.7902790313576102,0.3535533905932738,0.2041241452319315,1.2876137402895291,0.2871886842050946,0.0,0.0,0.0,0.0,0.0,0.0,0.4762648725578599,0.236808068015579,0.7948281599442533,0.30592432150226895,1.0350268652633872,0.31210395220061377,66.52742905396097,51.39094886022878,43.171872861746735,29.86058294782192,40.40071988276961,23.65463181390786,30.203821600572915,14.843671917965482,23.658576472267224,10.233084661286778,18.52378046637764,6.520921469217161,12.175046998767373,3.881685831806915,8.580387796897579,2.4376326239131223,13.707318244504183,4.9657065393477104,19.00406969525271,6.203350714335032,28.218999831903016,7.2313371407473355,305.07537043801085,130.50978501483823,78.08560117599579,48.68280041547166,37.366295105865895,34.74158301853544,458.0,522.0,185.5686120000011,103.53338800000014,0.3142857142857143,1026.32,34.28472222222223,20.06944444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,20.0,21.0,175.0,0.0,3.0,180.0,21.0,12.0,21.0,159.0,33.0,96.0,147.0,0.0,0.0,0.0,59.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.0,16.0,17.0,4.0,91.0,32.0,0.0,18.0,14.0,0.0,6.0,31.0,0.0,0.0,0.0,2.0,4.0,4.783316371371566,7.174649531964011,5.262690188904886,5.619494658133612,6.019809020117124,6.363674446340085,6.470678559936682,6.736809398140368,7.062288698055385,7.010555096975398 +4506,O=C1CN=C(c2ccccc2)c2cc([N+](=O)[O-])ccc2N1,0,27.8125,6.625459375,3.78125,10.9375,160.19011123294496,110.36345840625,1.633870436041844,6.6875968750000006,7.560763888888888,8.052215625,252.30592392307187,28.735294117647058,6.5917352941176475,4.4411764705882355,9.617647058823529,147.0079149841265,111.1971209117647,1.9409163352941174,6.728608823529411,3.812091503267974,7.935063647058822,292.75832760191946,25.8,6.504418181818183,4.109090909090909,8.636363636363637,149.17122934904276,98.45230567272726,1.771108503724527,6.62884909090909,4.561111111111111,7.894338909090909,263.06708763763237,22.616438356164384,6.452943835616438,3.73972602739726,7.178082191780822,155.17784589877803,84.86528476712328,1.5797218277019862,6.552893150684931,3.9337899543379,7.890575342465753,231.99753922115343,20.226666666666667,6.369306666666667,3.3733333333333335,6.24,157.5557512427639,74.74110106666667,1.4538403296372266,6.458806666666666,3.7881481481481485,7.853323200000001,211.01524517962554,21.27536231884058,6.388214492753623,3.2753623188405796,6.434782608695652,154.739889549013,79.04246815942028,1.5142777065542752,6.487357971014493,3.8389694041867957,7.850743246376811,219.86696923347714,18.708333333333332,6.3694444444444445,2.7916666666666665,5.722222222222222,160.88074344174154,68.30084952777777,1.2972390487568055,6.436054166666667,4.147376543209877,7.866048444444443,184.0734014304067,17.18032786885246,6.424983606557378,2.3278688524590163,4.967213114754099,164.98939035354738,61.890648377049175,1.1127417508555408,6.469280327868852,4.39344262295082,7.976335016393444,161.55667931688325,15.25,6.812425,1.725,4.875,172.87999629536853,52.674840025,0.8545129923410251,6.789392500000001,7.3125,8.4314295,127.10936063396964,6.99609375,0.15320537109374993,0.01990409627026502,0.6083984375,4.37109375,1.631786531914373,33.10430270214843,0.2169728006290224,0.13879599609374996,3.0893012152777777,0.09875808984374997,44.81338156948906,0.30353860294117646,0.02492073184742647,-0.006776044486347409,0.1223000919117647,0.7336856617647058,0.1423685297244115,1.3782294311236178,0.019248819169504213,0.019960621553308855,-0.1436823427287581,0.017335399126838236,1.6376183001018234,-0.08700284090909091,0.02184337890625,-0.0005627057929910428,-0.03737571022727273,0.060724431818181816,-0.1805937740837607,-0.5658687152166209,-0.018216234577501416,0.01802002663352274,0.5165699968434343,0.016802103338068187,-4.435829395382154,-0.3796553938356164,-0.007352203285530822,0.0011100188206851621,0.0071837542808219175,-0.2264019691780822,-0.042559024367927044,-1.786234778775151,-0.006666191881013462,-0.007015987532106157,-0.009630362918569215,-0.004493687446489719,-1.9087133692329132,-0.44526041666666666,-0.022915371093749994,-0.0034396808862999064,-0.08006510416666666,-0.5527604166666666,-0.0847635798437989,-2.0313605854817705,-0.005721755476739126,-0.01938541276041668,-0.264509548611111,-0.014621549843749986,-0.6536587767990202,-0.5576879528985508,-0.005113659137228267,2.72108061730411e-05,-0.10885133605072464,-0.219825634057971,-0.10095214497143674,-2.705789583489017,-0.032622739476552344,-0.0050461772531702935,-0.24494735054347816,-0.004462430423460134,-6.099389618165716,0.17317708333333334,0.02421689453124998,0.0036868749437717003,-0.0966796875,0.4370659722222222,-0.16349534319746703,0.6243794922960085,-0.03359330066586969,0.02107093098958331,0.2045597029320988,0.014391844184027783,-5.348198960397266,0.4496029713114754,-0.010751631339651645,-0.0031928716738958847,-0.0766361424180328,0.19140625,-0.15335984635789993,2.122411581150744,-0.023664943768679746,-0.005868844454405763,-0.30984424806466293,-0.011016780417520494,0.0497459468382348,-0.66171875,-0.025855996093749955,0.002508651254175133,0.1775390625,-0.73046875,0.19263138576168787,-2.904144767773436,0.04846817252137751,-0.02459123046874995,0.109700520833333,-0.011965108593750043,5.186107299655765,,,0.46190476190476193,1.4523809523809523,0.8095238095238095,0.023809523809523808,0.6428571428571429,0.16666666666666666,0.5974345824684582,0.012683167468202649,0.024968881753916934,1.0585548178170594,0.30442093424067046,0.17881082983270288,1.6559894002855176,0.4832317640733733,2.049927678568327,1.5103155898513088,0.29175960148735114,0.24785248722966782,0.0,0.5396120887170189,8.78375128787501,890.0,212.0147,121.0,350.0,5126.083559454239,3531.630669,52.283853953339005,214.00310000000002,241.94444444444443,257.6709,8073.7895655383,977.0,224.11900000000003,151.0,327.0,4998.269109460301,3780.7021109999996,65.9911554,228.7727,129.61111111111111,269.79216399999996,9953.783138465262,1419.0,357.74300000000005,226.0,475.0,8204.417614197351,5414.8768119999995,97.41096770484899,364.58669999999995,250.86111111111111,434.18863999999996,14468.68982006978,1651.0,471.06489999999997,273.0,524.0,11327.982750610796,6195.165787999999,115.319693422245,478.3612,287.1666666666667,576.012,16935.8203631442,1517.0,477.698,253.0,468.0,11816.681343207292,5605.58258,109.038024722792,484.41049999999996,284.11111111111114,588.9992400000001,15826.143388471915,1468.0,440.7868,226.0,444.0,10677.052378881895,5453.930302999999,104.48516175224499,447.6277,264.8888888888889,541.701284,15170.820877109922,1347.0,458.6,201.0,412.0,11583.413527805391,4917.661166,93.40121151049,463.3959,298.6111111111111,566.3554879999999,13253.284902989282,1048.0,391.92400000000004,142.0,303.0,10064.35281156639,3775.329551,67.877246802188,394.6261,268.0,486.5564360000001,9854.957438329879,610.0,272.497,69.0,195.0,6915.199851814741,2106.993601,34.180519693641,271.57570000000004,292.5,337.25718,5084.374425358786,223.875,4.902571874999998,0.6369310806484806,19.46875,139.875,52.217169021259934,1059.3376864687498,6.943129620128717,4.441471874999999,98.85763888888889,3.160258874999999,1434.02821022365,10.3203125,0.8473048828125,-0.2303855125358119,4.158203125,24.9453125,4.84053001062999,46.85980065820301,0.6544598517631433,0.6786611328125011,-4.885199652777775,0.5894035703125,55.679022203462,-4.78515625,1.20138583984375,-0.03094881861450735,-2.0556640625,3.33984375,-9.93265757460684,-31.12277933691415,-1.001892901762578,0.9911014648437507,28.411349826388886,0.9241156835937503,-243.97061674601846,-27.71484375,-0.53671083984375,0.08103137391001684,0.5244140625,-16.52734375,-3.106808778858674,-130.39513885058602,-0.4866320073139827,-0.5121670898437495,-0.7030164930555527,-0.3280391835937495,-139.33607595400267,-33.39453125,-1.7186528320312495,-0.257976066472493,-6.0048828125,-41.45703125,-6.357268488284918,-152.3520439111328,-0.4291316607554344,-1.453905957031251,-19.83821614583332,-1.096616238281249,-49.02440825992652,-38.48046875,-0.35284248046875044,0.001877545625939836,-7.5107421875,-15.16796875,-6.965698003029136,-186.69948126074217,-2.250969023882112,-0.34818623046875025,-16.901367187499993,-0.3079076992187493,-420.85788365343444,12.46875,1.7436164062499986,0.2654549959515624,-6.9609375,31.46875,-11.771664710217626,44.955323445312615,-2.418717647942618,1.5171070312499984,14.728298611111114,1.0362127812500004,-385.0703251486031,27.42578125,-0.6558495117187503,-0.19476517210764896,-4.6748046875,11.67578125,-9.354950627831895,129.4671064501954,-1.4435615698894644,-0.35799951171875155,-18.90049913194444,-0.6720236054687502,3.034502757132323,-26.46875,-1.0342398437499982,0.10034605016700532,7.1015625,-29.21875,7.705255430467515,-116.16579071093744,1.9387269008551002,-0.983649218749998,4.38802083333332,-0.4786043437500017,207.44429198623058,0.7056964989228289,0.5222658849590699,0.44121161067568876,0.27779721545930924,0.2881641355849347,0.1441595043653884,0.1793966872822199,0.07627954715536801,0.11269021191580175,0.040727469821083086,0.07212946751142799,0.021569818072836422,0.04644265136810317,0.010809600546433245,0.031155287352265026,0.0058398894675112225,8.054533377731456,5.685126515406487,3.6075616211125126,2.183468424355937,0.46257873746792566,-0.39157426939852524,3.221025803790479,0.9727793867574696,7.004118840838739,1.9916449713147784,14.594824681924178,10.947328465013785,16.027835787879106,11.697450056753814,1.9988904597679324,0.6692246129679265,3.553038941974392,2.2329291859532923,8.001936940762805,1.4253697409334392,3.756907626470741,2.4285971865621927,20.903302865327678,14.651573071349507,0.31002632963291094,0.6104567598050892,0.732807915815692,0.8710245406772217,0.9099261136717368,0.9099261136717368,1.7487645585807101,754.0140888404636,0.0,1.0,1.0,0.0,11.0,0.0,2.0,0.0,0.0,3.3177150544832807,1.6875,1.0235902344426084,0.273590234442608,0.0625,0.0625,4.856188624024725,808.5031305726297,62.918111976539606,25.26572283039468,55.82056451982372,,9.0,318.0,4.923311048817671,14.908855452837393,18.139322409947642,16.96252276915126,5.563451491696996,18.19910120538483,0.0,30.33183534230805,10.309193336642,0.0,9.700000000000001,30.5,17.0,0.5,13.5,0.0,0.03809523809523804,3.5,0.2295021186440676,0.10142045454545434,-0.12808166409861327,0.025757575757575757,0.18103296703296679,0.0,0.6718750000000001,0.8666666666666665,0.4423728813559325,0.5704545454545458,0.8409090909090907,12.546126231837622,0.26634651683225563,0.5243465168322556,22.229651174158246,6.3928396190540795,3.7550274264867607,34.77577740599587,10.14786704554084,0.5329670329670332,0.10309278350515463,0.0,0.35051546391752575,0.06666666666666667,0.494867096549966,-0.8458002872071494,-0.09323235850114295,-0.02643125897522342,-0.07689093520064993,0.505132903450034,0.8633460535048568,0.039774251841908394,0.026979564172026776,0.04111171683356461,-4.511439083399154,0.6047886491279929,0.4325076825110289,1.2562517117054852,0.7727315645359267,0.4334752667823162,1.0159751381192481,0.6125529339009104,0.8409301913329829,0.43553129557980136,0.5250709183958084,0.41123393914441675,0.7985153579982246,0.746479874118065,0.5229813456561789,1.0325364542216267,1.129082153801255,0.7192785766512308,1.1568416018119934,0.7562825348472603,1.0330880252402144,0.5278088543154811,0.4305420826933946,0.4895522767174342,0.9838085112062389,0.9076432390261812,0.8282324627993735,0.8552442626639953,1.0360825875678885,0.8743618935693562,1.059986644995132,0.9107763065060364,0.9763757805465568,0.8300164054394568,0.6574129984704457,0.7998624080986412,0.9701268678974871,1.000677461380979,1.00402063627743,1.082148065388536,1.199529159978598,1.0741495382782247,1.0369143866776016,1.0009161774981172,0.994593495465581,1.000191105942029,0.8898767166590567,0.9805574509039761,0.9914802814022833,0.9662806787560994,0.8428749598829224,0.9337881146642008,1.1076837183334496,0.9154136068694875,1.0442470837857023,0.9714536576397071,1.1223511924013712,0.8488035188834194,0.847770347554262,0.8448701642464682,1.0958110125603282,0.9933308517898132,0.7668431117539143,0.8398889720200197,1.0283574103798823,0.8511071393108927,1.0652194652979359,1.0007614797774103,1.123433958200575,0.7850575685816112,0.7538918743829004,0.7444469596216579,1.1292371752145773,1.0850610063065784,1.2574380315166418,1.1125448501565758,1.0049732915822436,1.0790664967257066,0.9886860571781271,1.0815637233625492,1.095181303213176,1.2377640604321247,1.3415779415465032,1.3040346726471843,1.0381392705874133,1.4608598548297043,2.0001583352615304,0.994336522694471,0.5971107544141252,1.7065236818588028,0.6704448305970558,1.4365930251173913,0.7755242602669286,1.9888477285471946,2.2387376628850415,2.072479426230549,0.9076805490393771,4.0,0.0,2.4444444444444455,1.375,1.1794444444444445,0.7952777777777779,0.5160090702947846,0.32468820861678005,0.07407407407407404,0.03125,4058.2005057424885,4373.207412242739,2027.064833881864,1910.6203120486844,9.42688041131558,0.3627375468873333,6.007396936114711,0.5692121748512963,1.0,0.06666666666666667,1.6822849455167193,3.3125,3.9764097655573916,4.726409765557392,4.9375,4.9375,0.17391304347826084,0.0,0.07638888888888892,0.03819444444444444,0.03685763888888889,0.02565412186379929,0.019846502703645564,0.017088853085093687,0.008230452674897117,0.015625,0.4117989460279188,15.879017013232515,7.05078125,3.673469387755102,119.83717500723333,1.0,3.9788060959017173,84.51635200275183,,63.040031093929876,62.09447339715381,61.743140782110814,63.04964974165268,85.18084407499707,62.65779389396809,63.0953322027031,75.85435990980999,0.043386868985450126,0.16266225961606068,-0.3404346720564363,0.20101973373619111,0.16784944540819008,0.08724703074818747,0.04163293948596514,0.08871535562844866,0.14381266113632288,-0.046509657918170584,0.17553396541250874,0.03654306465497321,-0.012435916958530024,0.1425758036438783,-0.028270853665015482,-0.06143294907339851,0.01389227394589325,-0.11067242592809759,-0.017093509575113228,-0.08395630477502719,0.12983102640331992,0.16721257036665696,0.17013394411183552,-0.09898448275999469,-0.054266767628094806,-0.04798920059422615,0.05576836072398993,0.011807647485652719,-0.0517952673007945,-0.02608124502535133,-0.05395778291560953,-0.03072362923687951,-0.05054891876972588,-0.0031173272683619785,-0.04550196802711963,-0.04259248693993783,-0.06364414665922204,-0.14957289636880644,-0.17281271350352587,-0.13159978598180844,-0.1264581471551981,-0.05194526256100195,-0.06136243387328432,-0.026370842152340177,-0.1396683860197435,-0.0856211583716764,-0.14805419856624868,-0.014586240848292959,-0.07971419092240592,-0.033377805887099744,0.001367095787900286,-0.17891455556330985,-0.050290761679035366,-0.061866024137974776,-0.08173528401531364,-0.15035405074726546,-0.03635679266829748,-0.07928891793785588,-0.04518546714016406,-0.13610643527777094,0.024753396612693098,0.15806818232522082,0.18523196902335975,-0.15890850722311398,0.09999007049945388,-0.10019407563418127,0.01886097701298167,-0.1548272436382804,0.1518122394204435,0.06621552534938087,0.1457282558502076,-0.11934379359665545,0.06426485798756991,-0.07017790083268341,-0.16041279295185867,-0.12596373970476016,0.043789097408400354,-0.09398278718355509,0.06411286171005807,-0.10906871137798416,-0.042283960773923504,-0.1002959007468629,-0.11155319462892291,0.0011100690261701663,-0.09458403126744835,-0.16876690359588026,0.12603693330818735,0.29181380417335473,-0.1671134941912422,0.11804937839246493,-0.08772710888681429,0.22338363325202143,-0.17717535923831526,0.03550981700677872,-0.12115573126900925,0.1157267565629704,10.310410669398491,17.800459656166524,6.455107950793857,16.294897614525745,32.61996875,40.59418894410982,43.67281479368184,43.88559375,43.88559375,43.04848124993487,31.716627386877484,6.126951631234374,5.2049022318230245,0.0,11.331853863057399,3018.335972444566,1691.0187547322623,1533.442963598388,88.0,32.0,42.0,55.0,74.0,85.0,93.0,95.0,91.0,281.0800412120003,23.0,4.709530201312334,5.556828061699537,6.434546518787453,7.307202314764738,8.193400231952097,9.075779878580487,9.965757878262252,10.852458423798911,11.744060995173982,0.7604166666666666,1.0176249999999998,1.1182645638881734,0.7318057405711431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.712775505239521,1.0035539215686275,1.0270165695557174,0.699948154131895,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,6.544756405912575,0.0,5.907179729351506,5.687386274683562,19.901260185473063,0.0,0.0,0.0,30.33183534230805,6.06636706846161,23.259637120317212,16.322382326271935,234.09440563840698,-400.1015967780353,-44.10310101792812,-12.503174899313603,-36.37287243436684,238.9505942624317,408.40153379459446,18.815010958611488,12.762547931081077,19.44769208545688,0.4444444444444444,0.6589450619120415,0.1894708636301721,33.3075456750877,0.15783147622554494,39.51415643232327,0.3410549380879585,5.0,0.08695652173913043,0.3364569891033439,0.6625,0.7952819531114783,0.9452819531114784,0.9875,0.9875,2.3842999999999996,,1.1785714285714288,1.4141461144718472,1.1951513140078471,1.1752972727426438,-4.80142824756291,1.259715422276622,1.1662733799930696,-2.1549573189043634,78.67410000000002,9.717848232889493,0.0,0.0,4.992404732635669,0.0,11.861545009918906,69.77215779985245,0.0,0.0,3.8501476017100584,0.0,5.1647859739235145,0.0,6.673297967767654,2.70805020110221,8.269500767180615,5.293304824724492,9.914773624553096,24.333333333333332,13.644847489921895,0.0,0.0,0.0,0.0,0.0,1.8715102985638707,0.0,32.56399999999999,0.0,22.647911706349205,0.0,-0.46269227135298596,0.0,0.0,4.298262471655328,0.3367446145124724,35.78446604442155,5.316788604006331,11.374772549367124,0.0,23.086932186852454,4.794537184071822,10.114318268765572,11.126902983393991,53.523341280328545,0.0,0.0,0.0,23.41778369827658,22.808816167664673,27.238703829501116,169.03270400550366,,125.96781728990058,124.05426621197697,123.3724576295542,125.98736640971083,172.80768405767196,125.19561489057651,126.07959075016876,152.73488997147922,27.238703829501116,169.03270400550366,,124.90149075928832,122.77480067983572,122.30853416993747,124.92400221056272,175.1631163975571,124.05587236565957,125.02439102541314,153.86367713852434,4.840580161003869,116.285100639621,,89.02619664529843,88.00849873947206,87.6342241782883,89.03658016445031,114.742321566606,88.61427702063901,89.08586519794389,103.3957124407911,1.2970811347381483,8.04917638121446,,5.9984674899952655,5.907346010094141,5.874878934740677,5.999398400462421,8.228937336079618,5.96169594717031,6.003790035722322,7.273089998641868,2.4402307695744225,84.51635200275183,,63.040031093929876,62.09447339715381,61.743140782110814,63.04964974165268,85.18084407499707,62.65779389396809,63.0953322027031,75.85435990980999,32.11372549019608,0.0,0.0,0.0,0.0,0.0,0.0,32.86453022578296,-0.007236866969009936,2.7121397864701438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.39834093222064,311.7106667468398,53.833118256535016,106.0,127.24511249783653,151.24511249783654,158.0,158.0,699.0,117.83956450433179,161.33433315399887,62.87386096096165,84.6,84.6,0.8,8.504810592495824,5.523561956057013,4.086170793402648,4.510984406058049,,4.521258156636111,4.522535348962993,4.521685597845138,4.521240350386544,4.460485775237505,4.521730526368497,4.521185463242779,4.491804886460366,0.19457956159060227,0.21480878124085948,,0.2152980074588624,0.21535882614109492,0.21531836180214942,0.2152971595422164,0.21240408453511928,0.21532050125564273,0.21529454586870378,0.21389547078382692,2.149545639909241,2.248452746279355,,2.2507276530785196,2.251010099230034,2.250822188933425,2.250723714731269,2.237195023044879,2.250832125117438,2.2507115748155218,2.244191944878679,198.47999999999982,133.7439801838221,114.36040875723971,,113.07889892767454,112.91397347489553,112.99962347716222,113.08104758102701,117.94803674201216,113.01853326053045,113.08797494875547,115.7412302404538,6.368760961134385,5.445733750344748,,5.384709472746406,5.3768558797569295,5.380934451293439,5.384811789572715,5.6165731781910555,5.381834917168116,5.385141664226451,5.511487154307324,5.637864721521181,5.481292286479651,,5.47002314039801,5.468563576825899,5.469321831375655,5.4700421415817795,5.512181505612082,5.469489161148496,5.470103399906666,5.493294270164127,0.0,26.483481906651548,13.670652557319226,2.448038076341649,-0.2397831632653058,13.644847489921895,0.0,-0.007236866969009936,0.0,244.75969258033095,110.73718809200712,-189.26605980819107,-20.862751416652486,-5.914564369005971,-17.20600543710828,113.03438383917735,193.19230351336628,8.90034685705065,6.037259484792696,9.199633500636489,857.0,36.0,1.3941739949040548,0.47765055454079397,0.0,0.0,0.35830498571017655,0.06846327625187014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.056131276171213614,0.2248892177291057,0.062004016989867405,14.819626477379408,10.967583584140467,10.147867045540842,6.389335955564112,9.22125233871791,4.613104139692429,7.534660865853237,3.2037409805254566,6.197961655369096,2.2400108401595697,5.337580595845671,1.5961665373898952,3.9476253662887695,0.9188160464468258,2.8974417237606476,0.5431097204785437,3.1768132011193395,0.9453599483728352,4.6825788830399375,1.2751411723804937,7.551812962174075,1.7149516722155644,66.34801663987598,44.5,29.82537578003305,23.679229296672176,23.0,23.0,110.0,129.0,38.09072299999999,14.779276999999997,0.53125,109.06,6.527777777777778,4.611111111111112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,32.0,0.0,0.0,34.0,12.0,3.0,9.0,25.0,15.0,23.0,19.0,0.0,0.0,0.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,4.0,1.0,1.0,21.0,6.0,0.0,3.0,3.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,2.0,3.4965075614664802,7.187137376743536,4.07753744390572,4.634728988229636,5.209486152841421,5.781900253920153,6.076064163974125,6.4468600421003925,6.710675351212637,6.92227436508134 +8980,CN(C)CCOC(c1ccccc1)c1ccccc1,0,18.65,5.739122500000001,2.775,5.05,160.88665236629322,73.14978627500001,1.465034375045725,5.8314425,2.4270833333333335,7.320746699999999,207.80627282435452,21.658536585365855,6.092073170731707,3.341463414634146,4.829268292682927,144.27196289855848,80.66470419512191,1.7904295246341473,6.2475000000000005,2.738482384823848,7.535559804878044,251.96860042850358,16.942857142857143,6.0575285714285725,3.1142857142857143,3.6142857142857143,155.47970170618908,60.83604012857139,1.491472252239885,6.162978571428573,2.4742063492063497,7.581052057142856,204.23780137511093,14.436781609195402,5.86187356321839,2.7126436781609193,3.1264367816091956,154.04384552732398,50.29299135632183,1.3728399770136555,5.9695988505747115,2.3314176245210727,7.422143908045975,179.2043975645974,11.950495049504951,5.691831683168317,2.396039603960396,2.386138613861386,161.35705230293482,41.60093650495048,1.144793977264505,5.771148514851483,2.103960396039604,7.329117267326734,146.5779350258506,13.49438202247191,5.888584269662922,2.550561797752809,2.539325842696629,159.40993482925936,47.09276125842695,1.276704876254809,5.971528089887641,2.3108614232209743,7.494162876404493,168.3183638639854,13.022727272727273,5.697272727272726,2.4545454545454546,2.090909090909091,154.00312252178162,44.56295188636363,1.3695401379532501,5.811920454545456,2.178030303030303,7.269257000000002,173.22018474802326,10.26530612244898,5.545061224489796,2.142857142857143,1.346938775510204,161.34168946251094,34.04626728571428,1.162121577606837,5.633214285714287,1.969387755102041,7.170719428571431,140.5259136182969,9.037037037037036,5.536000000000001,1.8271604938271604,0.7777777777777778,160.5064273354763,28.00712092592592,1.1336208093454323,5.625166666666667,2.0123456790123457,7.164220197530864,132.1123064107782,6.7475,0.06638943749999995,0.008641791440014052,0.44937499999999997,2.9475,1.404765225312093,32.394011074375,0.23877419730171937,0.06784193749999994,0.3124826388888889,0.03587579749999999,53.27552990849209,0.40737804878048695,0.006513123475609717,-0.0012951048785830072,0.16221036585365853,0.6720121951219511,-0.2515373365311589,1.8674660524542686,-0.0198344333452681,0.007350562500000001,-0.017784129403794115,0.002119563475609741,-1.5269077426585111,-0.5289285714285715,-0.016189116071428592,-0.0030624254316667992,-0.028303571428571386,-0.37321428571428555,0.333336129687343,-2.401489511160713,0.023794453833556713,-0.015437294642857128,-0.054139384920634956,-0.008078896071428584,2.554646028977551,-0.8641666666666671,0.003377688936781597,0.0014206832056458175,0.007521551724137953,0.22893678160919528,-0.15431224863509102,-4.241465360581894,-0.04271282054957338,0.0012584647988505906,-0.002840237867177541,0.003272928936781601,-9.117358630917293,1.0351732673267329,0.0059754139851485085,0.0004979445211711325,0.025872524752475257,0.3252722772277228,0.04188225293706416,4.9419386860210395,0.016775706945471713,0.00782130507425741,0.06962682205720572,0.0012245767574257382,5.974819780038083,-0.18738764044943815,-0.015860954353932595,-0.0012583066021777125,-0.024374999999999987,-0.4250280898876404,0.21567073211254814,-0.7058523895435393,0.041190286958611516,-0.015058988061797736,-0.056856858614232224,-0.009030844691011241,5.450915680331234,-1.1065909090909092,-0.0050156874999999984,0.00031853971054063946,-0.10676136363636365,-0.45318181818181835,-0.3180969061581807,-5.338490474374998,-0.042341902239767075,-0.006460857954545442,-0.03681976010101012,-0.0018487474999999975,-9.864002297865584,-0.15158163265306102,0.00023785841836735608,0.00026546032695401044,-0.10651785714285715,-0.4270918367346939,-0.09848593575445386,-0.7505482366198982,-0.011746955756604071,0.00011163392857142447,0.01825715702947847,0.0002496882142857198,-2.1811769218343366,-1.5493518518518516,-0.006663048611111096,-0.0007270187626405418,-0.0644984567901235,-0.5925617283950618,-0.2864705611849526,-7.489790036412038,-0.0576141282391456,-0.00857110416666666,-0.05602687757201643,-0.0018225295987654244,-13.177524257505961,,,0.4859649122807018,1.2236842105263157,0.631578947368421,0.0,0.5921052631578947,0.039473684210526314,0.6991470435367101,0.007545084976000021,0.01659771655494739,0.8068856855434788,0.2637333392190153,0.22420650014041074,1.506032729080189,0.4879398393594261,2.0158016092143005,1.8036067287058575,0.10480323377662566,0.10739164673181713,0.0,0.2121948805084428,6.379057857299999,746.0,229.56490000000002,111.0,202.0,6435.466094651729,2925.9914510000003,58.601375001829005,233.2577,97.08333333333334,292.829868,8312.250912974181,888.0,249.775,137.0,198.0,5915.150478840897,3307.252871999998,73.40761051000004,256.14750000000004,112.27777777777777,308.9579519999998,10330.712617568646,1186.0,424.02700000000004,218.0,253.0,10883.579119433236,4258.522808999997,104.40305765679196,431.4085000000001,173.19444444444449,530.673644,14296.646096257766,1256.0,509.98299999999995,236.0,272.0,13401.814560877187,4375.490247999999,119.43707800018802,519.3550999999999,202.83333333333334,645.7265199999998,15590.782588119973,1207.0,574.875,242.0,241.0,16297.062282596416,4201.694586999999,115.62419170371501,582.8859999999999,212.5,740.2408440000002,14804.371437610911,1201.0,524.0840000000001,227.0,226.0,14187.484199804083,4191.255751999998,113.626733986678,531.466,205.6666666666667,666.9804959999999,14980.334383894702,1146.0,501.35999999999996,216.0,184.0,13552.274781916783,3921.539765999999,120.51953213988601,511.4490000000001,191.66666666666669,639.6946160000002,15243.376257826047,1006.0,543.416,210.0,132.0,15811.485567326074,3336.5341939999994,113.88791460547003,552.0550000000001,193.0,702.7305040000002,13771.539534593096,732.0,448.4160000000001,148.0,63.0,13001.020614173582,2268.5767949999995,91.82328555698003,455.6385,163.0,580.301836,10701.096819273032,269.9,2.6555774999999984,0.34567165760056207,17.974999999999998,117.89999999999999,56.19060901248372,1295.760442975,9.550967892068774,2.7136774999999975,12.499305555555555,1.4350318999999996,2131.0211963396837,16.702499999999965,0.2670380624999984,-0.053099300021903294,6.650625,27.552499999999995,-10.313030797777515,76.56610815062501,-0.8132117671559921,0.30137306250000007,-0.7291493055555587,0.08690210249999938,-62.60321744899896,-37.025000000000006,-1.1332381250000014,-0.21436978021667594,-1.981249999999997,-26.12499999999999,23.33352907811401,-168.10426578124992,1.66561176834897,-1.080610624999999,-3.7897569444444468,-0.5655227250000009,178.82522202842858,-75.18250000000003,0.2938589374999989,0.12359943889118613,0.6543750000000019,19.91749999999999,-13.425165631252918,-369.0074863706248,-3.716015387812884,0.1094864375000014,-0.24710069444444605,0.2847448174999993,-793.2102008898045,104.55250000000001,0.6035168124999993,0.05029239663828438,2.613125000000001,32.8525,4.23010754664348,499.13580728812497,1.694346401492643,0.7899518124999985,7.032309027777778,0.12368225249999956,603.4567977838464,-16.677499999999995,-1.411624937500001,-0.11198928759381642,-2.1693749999999987,-37.82749999999999,19.194695158016785,-62.820862669375,3.665935539316425,-1.3402499374999985,-5.060260416666668,-0.8037451775000005,485.13149554947984,-97.38000000000001,-0.44138049999999984,0.02803149452757627,-9.395000000000001,-39.88000000000002,-27.9925277419199,-469.7871617449998,-3.7260873970995023,-0.5685554999999989,-3.24013888888889,-0.16268977999999978,-868.0322022121713,-14.854999999999979,0.023310125000000896,0.026015112041493024,-10.43875,-41.855000000000004,-9.651621703936478,-73.55372718875003,-1.151201664147199,0.010940124999999598,1.7892013888888902,0.024469445000000537,-213.755338339765,-125.49749999999999,-0.5397069374999988,-0.05888851977388389,-5.224375000000004,-47.99750000000001,-23.20411545598116,-606.672992949375,-4.666744387370794,-0.6942594374999994,-4.538177083333331,-0.14762489749999938,-1067.3794648579828,0.7106204859044013,0.6116067583906739,0.4635428473914548,0.3316874913121314,0.3113914125252697,0.195018950796842,0.1943196480709142,0.10092207761382824,0.1281822882680289,0.05388359164198066,0.0851445411258209,0.03051279937604062,0.0544306254301837,0.01730093102818903,0.038668108190624495,0.010333552268855907,8.010022839849881,5.687797454909428,3.5200536378770875,2.1876253838044453,0.3453524357523763,-0.4051806151828186,3.1678658587104844,0.9889059289615466,6.005854077728852,0.9949384687321783,14.544531904513267,10.948126874192967,16.00402392427744,11.698897923489831,1.9937254418419423,0.779162848675796,3.4625328402903346,2.237587907009384,3.509645219996533,1.2692417834179297,3.676083424419156,2.433594524800992,20.902650971023633,14.706818816127782,0.2302222134786609,0.46981341409819155,0.6149793282931215,0.7194842771241262,0.7622857123800171,0.7622857123800171,1.863552467523932,427.63544259070466,0.0,0.0,2.0,0.0,10.0,1.0,2.0,0.0,0.0,4.043138354490244,2.7123077425689384,1.9059707739381881,1.3254887502163473,1.0877443751081737,1.0877443751081737,156.39143976840853,671.6250478546274,29.906597548806438,16.790626196365686,32.81737589027771,,9.0,285.0,0.0,0.0,6.103966387748303,0.0,13.151638370425493,11.126902983393991,0.0,12.13273413692322,67.52619024389774,4.736862953800049,9.233333333333334,23.25,12.0,0.0,11.25,0.0,0.014035087719298196,0.75,0.08098484848484838,0.050576923076922964,-0.030407925407925418,0.0,0.0757511520737324,0.0,0.5191666666666669,0.7614035087719295,0.4381818181818185,0.4685897435897439,0.7614035087719295,13.283793827197492,0.1433566145440004,0.3153566145440004,15.330828025326099,5.0109334451612915,4.259923502667804,28.61462185252359,9.270856947829095,0.6382488479262676,0.10830324909747291,0.0,0.20577617328519854,0.29411764705882354,0.3454069316877054,-0.45863264923906666,-0.024209660896194668,-0.011465816230976669,-0.028664540577441666,0.6545930683122945,0.8691711878122773,0.03491573221608056,0.02172927969530693,0.03621546615884489,-4.114088146619633,0.9445232651659603,0.8712601234525466,1.2326699015853009,0.8467044336646427,0.778563892509154,1.337993953894018,0.9492468493356656,1.176029272379121,0.8547621375376421,1.0168044566161534,0.9111207673178962,1.0871299702923614,1.133276875033081,1.7612900180307833,1.9845026231630665,1.4412875024836083,1.4271174118502363,0.8752136400605371,1.1233910860819503,0.8839996460872344,1.6485299271665748,1.3403125570468202,1.8584234160329716,0.9196995098088266,1.1310702559057635,1.123290313597935,0.9898200064592279,1.1596566111937077,0.9733555614050481,1.1239550212733633,1.132156881742185,1.1925356056492677,1.1210128106155983,1.1292198225571919,1.1877646809778597,1.1661575321015394,0.8555423901041457,1.2065043635834989,1.087952851320762,1.0418760930335036,0.9890912755397677,0.8840162897228816,0.8522700481107096,0.892862428851883,1.1326987852907329,0.9915732392173603,1.4239436864514206,0.84667528211655,1.0845465028662302,1.9130422751630904,1.6799884620504957,1.0482724133081216,1.3881979586585471,0.8125019456476312,1.0703721703849134,0.7967751838037266,1.7815991005778795,1.6496796638514875,2.206244609097838,0.8489989885853013,1.1100070733268215,0.7659787406283224,0.7527872593004806,1.158806423062334,1.0111612306268793,1.247021836370328,1.11477698702259,1.1984968499958073,0.8296846588841489,0.9218693967846698,0.655385557504458,1.198149826999843,0.9569303823789612,0.6344382719013093,0.7242434925832597,1.217677613465414,1.0429973516124007,1.0547357412566132,0.9614316148064975,1.0072095031723292,0.6905573709477266,0.6261572354926748,0.4635869070227636,1.0137460746766627,1.1559836976658022,0.7086845202848218,0.7838468499988458,0.8571575748209962,0.9801149750259165,1.184262514683268,1.1617331693310187,1.2022203582241016,0.7928887807944914,0.9341259699612942,0.49354277743207614,1.2209019713232254,2.5,0.0,1.5555555555555562,1.0,0.38222222222222224,0.19444444444444442,0.36244897959183675,0.26041666666666663,0.10733182161753588,0.0625,3104.29857046305,3646.8262128546094,1743.329469139444,1531.7255264149258,10.698883751827372,0.4499970253899486,5.884417888512202,0.8181719848133433,1.0,0.29411764705882354,1.278789740397119,2.6096203523184243,3.4159573209491745,3.9964393446710154,4.234183719779189,4.234183719779189,0.12500000000000003,0.0,0.06222222222222225,0.041666666666666664,0.016618357487922706,0.008101851851851851,0.016474953617810758,0.014467592592592593,0.009757438328866897,0.015625,0.3099340827679337,15.39,8.3232,5.12,115.18658679725432,1.0,3.8443243912385845,80.51708284604234,,64.63795714403322,63.611955072462415,64.98099523187733,64.65347977832973,93.72793674539419,64.30262195822792,64.68978151613993,80.23272962747359,0.060374664509890624,0.09810481487525362,-0.1498653245189751,0.3609688252654432,0.22799395932890623,-0.1790600535938491,0.05764849706838284,-0.08306774169658272,0.1083483575332737,-0.056912375890801774,0.05908059536822119,-0.02866058292205035,-0.07838882125655007,-0.24385077929645965,-0.35437391111834327,-0.06298430359626456,-0.12662062280382885,0.23728956531742632,-0.0741337497739016,0.09965253407800012,-0.22754796239209915,-0.173255657060313,-0.22519070332662533,0.047951583651359264,-0.12807212547857239,0.05087690247084258,0.1643968401120668,0.01673780634022354,0.07767151199633428,-0.1098491376740963,-0.13093362692393065,-0.1788837363176252,0.018549953689789473,-0.00908926613419781,0.09122944059380428,-0.17113595390937614,0.1534158232421983,0.09000549199032622,0.05762052053993134,0.057574463983255095,0.11035531034019434,0.02981441466687737,0.15255717097443106,0.07025762052619794,0.11528717136442951,0.22281820937246788,0.03413378496814569,0.11214942001141315,-0.027771417628668124,-0.23890779845713564,-0.1456071476512822,-0.054242002781641145,-0.14419952159037844,0.15352795486849635,-0.02178959524101348,0.17250727852542094,-0.22197166850958153,-0.18195205601309938,-0.25172526662330624,0.10231556006470358,-0.16400013473003472,-0.07554948029195158,0.03686037932664127,-0.23757744341888995,-0.15375125298789427,-0.22644133014291407,-0.16479868646454732,-0.17733030921370072,-0.09523398347143974,-0.11782977842203361,-0.05153188580685902,-0.18515071205876954,-0.022464858488782664,0.00358277502151387,0.030718205686479608,-0.23703556526922318,-0.14489969015596063,-0.07010846651088867,-0.023169351732845855,-0.04919692282227802,0.0016455003009226345,0.05842614839146397,0.006959795507980551,-0.04094144019929604,-0.22961865162680278,-0.1003630827736882,-0.08412824675150453,-0.1435292501588284,-0.20103875433250615,-0.20392771405720714,-0.2312090966202321,-0.2412912655145202,-0.12633931875348736,-0.1792959691176258,-0.050801089474468826,-0.24734665765202407,18.036078069978632,13.681333809489724,2.381101577952299,10.7857382466692,21.00322209444239,25.587152106518367,28.788179345745213,29.027825675854253,29.027825675854253,38.30023057507171,34.26852784541129,1.9912614417558876,2.0404412879045255,0.0,4.031702729660413,2834.191065136274,1929.800100161166,1168.201207610438,24.0,25.0,30.0,37.0,44.0,40.0,44.0,40.0,32.0,255.162314292,20.0,4.51085950651685,5.303304908059076,6.129050210060545,6.947937068614969,7.786136437783072,8.617762246337932,9.46148811969999,10.299878279368585,11.14618575505945,0.575,0.9526999999999999,1.1215166403204175,0.5315148613770712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6630936077844313,0.9414705882352943,0.9829024034959941,0.604048865255445,10.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,9.636772684650527,6.103966387748303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.6636706846161,25.22224694874837,6.544756405912575,6.606881964512918,174.71251441722166,-231.98394702407515,-12.245645180585742,-5.79959867560188,-14.498996689004697,331.1039541856302,439.64110083055226,17.6609523682207,10.991027520763806,18.31837920127301,0.4444444444444444,0.9768005245764492,0.27674258226234844,12.951045918018362,0.08103308759767339,0.0,0.02319947542355057,5.0,0.3,0.2402869256399046,0.4903524259986561,0.6418646137347845,0.7509382452029538,0.7956108471001062,0.7956108471001062,3.3542000000000023,,0.3928571428571429,0.4713820381572824,0.39838377133594904,0.3917657575808813,-1.60047608252097,0.419905140758874,0.3887577933310232,-0.7183191063014545,79.23300000000006,4.736862953800049,0.0,4.899909730850478,0.0,6.103966387748303,27.246982335779872,71.7905736680101,0.0,0.0,3.713572066704308,0.0,4.948759890378168,0.0,6.385194398997726,0.0,7.913155185928068,0.0,9.491073355339758,22.999999999999996,20.764256897203325,0.0,0.0,0.0,0.0,0.0,2.4026965230536663,0.0,38.108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.8606656128167,0.0,0.0,0.0,32.14689206663035,4.736862953800049,0.0,17.230869371142294,60.6636706846161,0.0,0.0,0.0,21.260594455082845,26.52374431137725,24.61663314122859,161.03416569208468,,129.2345609046078,127.17429098301355,129.92005532992982,129.26572105586146,188.2982293236941,128.56104337532332,129.33864115929765,160.84352194247438,24.61663314122859,161.03416569208468,,128.8830571452094,126.75252810676757,129.56360669241866,128.91519379907857,189.0563495733094,128.18533877569703,128.99080523894884,161.18377836124878,4.672091476568156,110.44357414956743,,89.63416996960461,87.85710893655346,90.64407004670119,89.66229552445417,142.76836793383546,89.07134604295973,89.7221841814396,117.59851079481732,1.2956122705909785,8.475482404846563,,6.801818994979358,6.693383735948082,6.837897648943675,6.803459002940077,9.91043312229969,6.766370703964386,6.807296903120929,8.465448523288126,2.336045738284077,80.51708284604234,,64.63795714403322,63.611955072462415,64.98099523187733,64.65347977832973,93.72793674539419,64.30262195822792,64.68978151613993,80.23272962747359,37.65882352941177,0.0,4.117859032501889,0.0,0.0,0.0,0.0,39.316096139839765,1.6504190287226004,0.0,6.08337962962963,0.0,0.016064814814814365,2.131990740740741,0.0,0.0,0.0,24.161954610217798,494.08179187067276,51.15158961588476,104.38481409273697,136.638292837967,159.85757378684062,169.36734879116756,169.36734879116756,355.0,109.20260253150047,11.734676732179,51.45175489734803,12.47,12.47,0.8,7.545711777564981,5.321928094887363,3.7476142053292625,4.28487332295522,,4.287405074768448,4.288664766676757,4.291372971105899,4.287399293442681,4.270591266396903,4.288024612957717,4.287319998806851,4.2743896907436385,0.19724285291206645,0.22551964857659054,,0.22565289867202357,0.2257191982461451,0.22586173532136308,0.22565259439172003,0.22476796138931068,0.22568550594514297,0.22564842098983426,0.2249678784601915,1.962973311773839,2.0969448748808808,,2.0975355584236626,2.097829327467212,2.0984606077953054,2.0975342099787255,2.0936061737090372,2.097680049886576,2.097515714997577,2.0944952159704484,218.71999999999957,145.52259609368454,94.74697529509224,,94.34573125105668,94.27103127824809,94.06823766358906,94.34593265441768,94.96938887709514,94.30739496218769,94.35088657961168,94.92970105164021,7.659084004930765,4.986682910268013,,4.965564802687194,4.961633225170952,4.9509598770310035,4.965575402864088,4.998388888268165,4.9635471032730365,4.9658361357690355,4.996300055349485,5.622185260339157,5.193063806618438,,5.1888199132014385,5.188027831143488,5.185874337672155,5.18882204793656,5.195408503501794,5.1884134922725496,5.188874554653051,5.19499051491588,6.08337962962963,2.131990740740741,0.0,2.4026965230536663,0.0,20.764256897203325,0.016064814814814365,1.6504190287226004,4.117859032501889,260.043523720592,88.3724670632439,-117.34130085626876,-6.1940490010074125,-2.9335325214067196,-7.3338313035167975,167.47783284661594,222.37770907478028,8.933200559056568,5.5594427268695075,9.265737878115846,736.0,24.0,0.8776643872851506,0.5676034208455922,0.0,0.0,0.13608276348795434,0.039283710065919304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2041241452319315,0.06415002990995841,0.11785113019775792,0.037037037037037035,13.501789232183626,11.620528409422803,9.270856947829095,6.633749826242627,7.784785313131743,4.87547376992105,5.829589442127426,3.027662328414847,4.74274466591707,1.9936928907532843,3.7463598095361195,1.3425631725457872,2.177225017207348,0.6920372411275612,1.7013967603874778,0.4546762998296599,1.6693572298359234,0.7983709151235983,2.6329931618554525,0.9350594704285383,3.885609831162109,1.134477611361132,65.75874944074505,50.21095623280336,38.003535170608494,29.331046186635298,28.164355580351923,28.164355580351923,90.0,100.0,44.294652999999975,24.513346999999996,0.325,58.02,5.694444444444445,4.388888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,40.0,0.0,1.0,41.0,12.0,0.0,6.0,35.0,12.0,20.0,29.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,2.0,0.0,0.0,19.0,2.0,0.0,1.0,1.0,0.0,2.0,6.0,0.0,0.0,0.0,0.0,2.0,3.295836866004329,5.938648712665391,3.7612001156935624,4.22683374526818,4.7295977643631435,5.2223808004580965,5.106702762842489,5.472270673671475,5.739591927352912,5.863631175598097 +9782,C[C@H]1C[C@H]2[C@@H]3CCC4=CC(=O)C=C[C@]4(C)[C@@]3(F)[C@@H](O)C[C@]2(C)[C@@]1(O)C(=O)CO,0,21.43859649122807,6.24421052631579,3.456140350877193,6.912280701754386,164.6122479216793,84.98343591490826,1.3644884779056317,6.288129824561404,6.244639376218323,7.78044540350877,201.36488276291513,22.9,6.2725,4.516666666666667,6.033333333333333,144.4916761631475,85.97963424725336,1.798430766966667,6.418925000000001,2.953240740740741,7.718970933333332,260.07649656990145,20.52991452991453,6.133418803418803,4.239316239316239,5.111111111111111,149.87115464277127,76.99498461970599,1.6060293777426158,6.259837606837605,2.757241215574549,7.62318105982906,229.60073369034822,18.90810810810811,6.261297297297297,3.4594594594594597,4.113513513513514,154.2078496340175,69.55924586842809,1.4393868868161075,6.359058918918917,3.610548048048047,7.760118205405404,203.38631008071744,14.49802371541502,6.177312252964425,2.739130434782609,2.541501976284585,159.82073300778646,50.120038970086945,1.2285972367306959,6.250547826086955,3.167764602547211,7.73529775494071,165.3035963145704,11.280701754385966,5.978596491228069,2.175438596491228,1.936842105263158,164.86447444569785,37.4343309189277,1.0290842032539407,6.030361754385965,2.9264863547758284,7.609825824561404,131.7826555023254,9.756972111553784,5.885139442231075,1.9641434262948207,1.8764940239043826,169.9057088266478,32.18758088432829,0.9070915800308725,5.915117529880478,3.078297919433378,7.559309051792829,113.0394540790632,10.89820359281437,5.9329940119760485,2.029940119760479,2.2215568862275448,168.2600396320919,36.82257266068503,0.9608605310696887,5.969649101796406,3.3567032601463747,7.584984550898206,122.3354263201181,10.899159663865547,5.984873949579832,1.9327731092436975,2.1596638655462184,167.23449063559008,36.23940840880671,0.9660099675219411,6.0229260504201685,3.363912231559291,7.637431697478991,123.63614009640976,7.865189289012003,0.17706371191135725,0.01756587793600035,0.907356109572176,4.075715604801478,1.6717271261474553,37.57479861895522,0.23254191830698306,0.16207060634041237,2.9262764611333396,0.11143263034779927,49.993038124827706,-0.0002770083102490754,-0.013090027700830979,-0.007745355291371739,0.49322868574946116,1.1225300092336103,0.21145261410580424,0.1416401642432539,0.035601791969406035,-0.011960811018774954,-0.2660506651619301,-0.008022199938442592,5.399220109004838,1.071382910718091,0.002670880981130292,-0.0024349125424809217,0.006424067365895554,0.4047162440514241,0.08202476484274003,5.224753422326426,0.02898473022543868,0.00495803363559597,-0.03284957720938025,-0.0009125247847463961,7.9656006436223485,0.1401212847196228,0.01398607471737668,0.0024065017208380465,-0.21375724755226147,-0.29657857303286655,-0.1590262075440511,0.6516497368924644,-0.01592553829589633,0.012549071231896752,0.2627026495562968,0.009019703080365685,-2.423111917758709,-1.6643710378505028,-0.02362497673349169,-8.673901586329546e-05,-0.15151393496569934,-0.8861309712809171,-0.20118210193526323,-8.07235313830381,-0.04328920175944878,-0.023484599822140427,-0.27901147719787567,-0.012339967703045135,-10.853403652422827,-0.8190212373037856,-0.014223453370267784,-0.0007442615321038411,-0.009233610341643564,-0.2083102493074793,-0.16874365419700488,-3.9334732326156745,-0.026951698802551296,-0.013368230224684525,-0.24539986662562838,-0.00862053431825177,-5.845949233509885,0.5939565836377482,0.0064611360651576156,-0.0006854249835119143,0.0414801244391471,0.2844577369193585,0.13580080909707656,2.9256323006643594,0.02463422278611467,0.006432497035557331,0.07778041079415453,0.0030731285115003126,5.201017425034697,0.6897009305488745,0.01473899845737884,0.0019631003796347943,0.009126714253856116,0.29795810041965926,0.11328219451963713,3.2283779545313416,0.014916569402426862,0.013723237550752573,0.21752511699694885,0.009391882311093407,3.717056252091237,-0.14043622989361954,-0.002963756139574958,-0.0008213043440614433,0.02748098315965356,-0.0422495868153356,0.03947942790100622,-0.6475768369441163,-0.0017082877042220352,-0.002863470854639194,-0.11952510562037474,-0.0026551165633381707,-0.4890174794231066,,,0.4625850340136055,0.7857142857142857,0.17857142857142858,0.0,0.6071428571428571,-0.42857142857142855,1.526802575982492,0.03396357743444715,0.04624929172016142,0.6601636811601271,0.11664657542076677,0.3463260458009681,2.186966257142619,0.4629726212217348,2.0200885121074816,1.6430279493462994,0.0,0.3127814066167857,0.06427915614439612,0.37706056276118183,6.88070003943861,1222.0,355.92,197.0,394.0,9382.898131535721,4844.055847149771,77.775843240621,358.4234,355.94444444444446,443.4853879999999,11477.798317486162,1374.0,376.35,271.0,362.0,8669.50056978885,5158.778054835201,107.90584601800002,385.13550000000004,177.19444444444446,463.1382559999999,15604.589794194086,2402.0,717.61,496.0,598.0,17534.925093204238,9008.4132005056,187.90543719588604,732.4009999999998,322.59722222222223,891.912184,26863.285841770743,3498.0,1158.34,640.0,761.0,28528.452182293237,12868.460485659198,266.2865740609799,1176.4258999999997,667.9513888888887,1435.6218679999997,37626.46736493272,3668.0,1562.8599999999994,693.0,643.0,40434.645450969976,12680.369859431998,310.8351008928661,1581.3885999999998,801.4444444444443,1957.0303319999996,41821.80986758631,3215.0,1703.8999999999999,620.0,552.0,46986.37521702389,10668.784311894395,293.2889979273731,1718.6531,834.0486111111111,2168.80036,37558.056818162746,2449.0,1477.1699999999998,493.0,471.0,42646.3329154886,8079.0828019664,227.679986587749,1484.6944999999998,772.6527777777778,1897.3865720000001,28372.902973844866,1820.0,990.8100000000001,339.0,371.0,28099.426618559344,6149.3696343344,160.463708688638,996.9313999999999,560.5694444444446,1266.6924200000003,20430.016195459724,1297.0,712.2,230.0,257.0,19900.90438563522,4312.4896006479985,114.95518613511099,716.7282,400.3055555555556,908.854372,14712.700671472761,448.31578947368416,10.092631578947364,1.00125504235202,51.719298245614034,232.31578947368425,95.28844619040495,2141.7635212804475,13.254889343498034,9.238024561403504,166.79775828460035,6.351659929824558,2849.6031731151793,-0.016620498614944523,-0.7854016620498587,-0.46472131748230433,29.59372114496767,67.35180055401662,12.687156846348254,8.498409854595234,2.136107518164362,-0.7176486611264973,-15.963039909715807,-0.4813319963065555,323.95320654029024,125.35180055401665,0.3124930747922442,-0.28488476747026786,0.7516158818097798,47.35180055401662,9.596897486600584,611.2961504121919,3.3912134363763253,0.5800899353647284,-3.8434005334974892,-0.10676539981532834,931.9752753038148,25.92243767313022,2.587423822714686,0.4452028183550386,-39.54509079716837,-54.867036011080316,-29.419848395649456,120.55520132510591,-2.946224584740821,2.321578177900899,48.5999901679149,1.6686450698676518,-448.27570478536114,-421.0858725761772,-5.977119113573398,-0.02194497101341375,-38.333025546321934,-224.19113573407202,-50.899071789621594,-2042.305343990864,-10.952168045140542,-5.941603755001528,-70.58990373106255,-3.122011828870419,-2745.9111240629754,-233.4210526315789,-4.053684210526319,-0.2121145366495947,-2.631578947368416,-59.3684210526316,-48.09194144614639,-1121.0398712954673,-7.681234158727119,-3.8099456140350894,-69.93896198830409,-2.4568522807017543,-1666.0955315503172,149.0831024930748,1.6217451523545614,-0.1720416708614905,10.411511234225923,71.39889196675898,34.086003083366215,734.3337074667542,6.183189919314782,1.6145567559248901,19.522883109332785,0.7713552563865784,1305.455373683709,115.18005540166205,2.461412742382266,0.32783776339901066,1.5241612803939713,49.7590027700831,18.9181264847794,539.139118406734,2.491067090205286,2.2917806709756796,36.32669453849046,1.568444345952599,620.7483940992366,-16.711911357340725,-0.35268698060942,-0.09773521694331175,3.270236995998774,-5.027700831024937,4.69805192021974,-77.06164359634984,-0.2032862368024222,-0.34075303170206406,-14.223487568824595,-0.3159588710372423,-58.19308005134968,0.7392252190649915,0.5933245582391766,0.4181688191680186,0.3271721073139524,0.25128951628760116,0.18394624290473255,0.15627708028934378,0.10465777624969459,0.09103154905618162,0.06259511353470285,0.05502735294285919,0.03570174471289903,0.03246455454442696,0.020006753858479435,0.01943239075562017,0.011494835500209128,9.00406389097513,5.70333532282235,4.107678383057921,2.2021230909936618,0.3987440175969649,-0.3800036087019454,4.123946483601727,0.9771523618430016,7.004056002154444,0.9934518416231902,17.424771341800547,10.963892936713384,19.00014195079825,11.71502890999363,1.9812174152191282,0.5459781904042451,3.988613527642447,2.25184783701721,8.001802230253393,1.0635973087450215,4.009869439680131,2.447857874599668,20.88747117430153,13.304119510481236,0.23940393527553605,0.5728171953365443,0.7980288180870044,0.9011990301195901,0.9011990301195901,0.9011990301195901,1.7687957566101882,804.7488254884713,0.0,0.0,4.0,0.0,5.0,5.0,1.0,5.0,2.0,4.396466402511525,2.3959868421454757,1.0447171056427145,0.4256958334472003,0.4256958334472003,0.4256958334472003,133.55930060589117,1345.749454062256,70.50148344620479,23.60963954495186,48.79000656169174,,12.0,530.0,52.42969695947186,24.90865655266576,18.121972615452343,24.835569398847298,0.0,12.152040213667762,26.847231705905752,0.0,0.0,0.0,12.952380952380954,22.0,5.0,0.0,17.0,0.0,0.03741496598639449,-12.0,0.13970181864918702,0.01857649588452026,-0.12112532276466675,0.0558097432521395,0.18635693501454864,0.0,0.5832915622389305,0.8767006802721085,0.4435897435897435,0.5647150663544103,0.820890937019969,42.750472127509774,0.95098016816452,1.2949801681645199,18.48458307248356,3.2661041117814698,9.697129282427106,61.23505519999333,12.963233394208576,0.5276430649854513,0.2665441176470588,0.15441176470588233,0.2702205882352941,0.7272727272727273,0.3776860497678616,-0.9309513972677005,-0.08731189228461336,-0.016332480653819308,-0.04899744196145793,0.6223139502321384,1.5339302096645493,0.04181898663450933,0.026911056309904376,0.04036658446485657,-2.797529767186576,0.8598105971667842,0.6921881518564874,1.2862823106035148,0.9474219810040705,0.5303126415949252,1.0182315286161072,0.8607161568370868,1.0994400469518057,0.6972803861386027,0.7275832751432354,0.7123060611955077,1.0364398938683461,0.7414645306169139,0.6397491165951743,0.8598680710570812,1.7352050934140486,0.8076245357622791,1.0710640436216188,0.7452703145351904,1.0581518813495512,0.6327693136865143,0.6660914705639762,0.6578674882264959,0.9519006759692235,0.9223228393925741,0.8474365479371735,0.7211350096087644,1.7470607649712127,1.0684431599701194,1.3017618869743717,0.9297400800701602,1.1960355103118303,0.8402353276938374,0.8336938079286935,0.8339238755515628,1.1082749514096453,1.1883915669862566,1.1925108955364165,0.9111405207123625,1.228278299483538,1.1895352731427669,1.3130159606843002,1.1981722329622153,1.2359036904125325,1.1908235190191696,1.1045455809975506,1.1472146532370766,1.2263168750669255,1.0878296939813727,1.055013210958142,0.9676059196861797,0.7997286295793757,0.9781603987313093,1.0492105000309258,1.0884414507140603,1.0665724249525073,1.0602011442409842,1.039501094168622,1.0447757897330534,1.0840445501939877,0.9308677476054926,0.9670263460135261,1.0223299638901668,0.7268781049479152,0.8912171883377227,0.7749080052332413,0.9264704069173323,0.7740875580191205,0.9714753503585496,0.9276023999156602,0.9657537823759179,0.8282711137101466,0.9117824459088398,0.9176790349213965,0.9307447163679717,0.8104550735706335,0.9223456123548099,0.8411919585192031,0.9130690322198756,0.8444193257328259,0.9214526697379027,0.8993864002650996,0.902977708616043,0.8725432763556941,1.023963095451846,1.0304547350855238,1.1246978494546636,0.6733179024662782,1.0290252938511153,0.8255008371428542,1.0186842723184248,0.9124899502333926,1.0359663247623137,1.0776621690576025,1.0497724564487185,0.9500104921905158,10.0,0.06601367207427813,8.666666666666668,5.798611111111111,3.818888888888889,2.0388888888888888,1.1445804988662132,0.5955215419501133,0.3038548752834467,0.16719135802469137,6303.907177283687,7302.008559643314,2632.6513376674393,2325.738123443675,12.75627876409145,0.48225935630153244,6.604443978517799,0.931468993541872,1.0,0.7272727272727273,1.4364236116532163,3.4369031720192655,4.788172908522027,5.407194180717541,5.407194180717541,5.407194180717541,0.32258064516129026,0.009430524582039732,0.16352201257861637,0.08283730158730158,0.05967013888888889,0.04077777777777778,0.030934608077465214,0.020535225584486665,0.015192743764172333,0.012860873694207029,0.7583418516962459,21.240374609781476,6.497686009255963,2.395124716553288,163.87178561127467,1.0,4.302534848811815,123.84031644971577,,114.86675488535963,114.46790660096823,115.48396010899721,114.81378333516898,131.52186165681195,114.74844710899667,114.91373605915454,122.14717866040716,-3.521953510210715e-05,-0.07392834793491843,-0.44093186344521035,0.5435888738127542,0.2754191209787041,0.12648751748923465,0.003769552185219197,0.15309838427671105,-0.07380000167120077,-0.0909178161037079,-0.07199147963575846,0.10799943975246144,0.1362183249950332,0.015084293400939235,-0.13861604591312204,0.007079984691924917,0.09929943187759226,0.04906588136292825,0.13904940583475844,0.12464303398054616,0.03059181271391148,-0.011225725814251223,-0.008189026696204322,0.1593341981684135,0.017815373485718655,0.07898893887629825,0.13699865896859315,-0.23558252961238044,-0.07276723937349217,-0.09512689305373163,0.017342733982444528,-0.06848459156027398,0.07742965560046552,0.08977369467495655,0.08094310483575351,-0.0484689870559264,-0.21161233082790498,-0.133426417409113,-0.004937926597197193,-0.16698398056430025,-0.21741727274518194,-0.12034386401259954,-0.21483423557808717,-0.18615655222342267,-0.1449035105897826,-0.09534693010168124,-0.1107392660886681,-0.21709830127392826,-0.10413242545198402,-0.08032957863996672,-0.0423697315224146,-0.010176390773405678,-0.05111010421386498,-0.10093971172548934,-0.10468381407721956,-0.11590038905145626,-0.08248398970388224,-0.08386079370319838,-0.07736095155741803,-0.11693526644476225,0.07551713783513517,0.03649045869089331,-0.039020251991343485,0.04571537459389041,0.06979332330848782,0.08123383713347618,0.07786155636742326,0.1059345470505432,0.039689473500497334,0.026579994005088082,0.027578353861957502,0.10403483405125864,0.08769031554172706,0.08324121469201758,0.11175646254557664,0.010058580261458113,0.0731057142624583,0.06776356783819097,0.0859187027792275,0.06414572267669699,0.08467443826259494,0.07433512174468365,0.08428305319348402,0.07435147755593714,-0.017855416409343742,-0.016738359924695873,-0.046755667268882875,0.03028687730180272,-0.01036617637539838,0.023615952199081514,-0.017234339523976464,-0.007346149531487445,-0.017668045546919055,-0.04084545913822612,-0.023827101227451263,-0.009781711569560505,7.098323376798651,17.49517186257132,5.851085878768621,13.738536438897423,32.83035833479011,39.108624195919056,39.732597638292134,39.732597638292134,39.732597638292134,56.56247833900948,46.00478258169638,0.0,8.75787938527,1.7998163720430915,10.557695757313091,5135.145292534639,4683.163419270818,1075.2762634998362,332.0,53.0,84.0,116.0,155.0,194.0,243.0,288.0,321.0,392.19990224800074,31.0,5.1298987149230735,6.093569770045136,7.084226422097916,8.071843149609158,9.06820060481506,10.062924236792623,11.062143902371083,12.059953790733452,13.06066880839849,0.6140350877192982,0.985263157894737,1.1336124025862637,0.5732572673879354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6370836957663619,0.9706226350189199,1.0084844303037273,0.5978430408404486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,3.0,0.0,1.0,0.0,3.0,5.0,0.0,0.0,0.0,4.0,0.0,4.0,0.0,0.0,15.319582184522117,12.207932775496605,17.235249711475557,0.0,0.0,9.589074368143644,4.39041504767482,0.0,0.0,25.496599036284397,56.594875997385216,16.747886984954953,6.103966387748303,206.20495274603275,-508.2707952820299,-47.66960451354066,-8.917031496175964,-26.751094488527894,339.7642533519239,837.4786587802262,22.831878932664118,14.692608048775899,22.03891207316385,0.5,0.6486851897739446,0.1581059369180031,96.6415912006233,0.0858240769810167,103.64979764544422,0.3513148102260553,6.0,0.06451612903225806,0.2462627630839889,0.5892281808285431,0.8208920272616668,0.9270180249561659,0.9270180249561659,0.9270180249561659,1.8957000000000002,,1.5833333333333335,1.8188153310104527,1.2193741229080475,1.61411686841094,-7.409675989559316,1.6529011335748511,1.5559740010946905,-2.541632055590836,99.94440000000004,29.299071600340582,0.0,0.0,28.583699077277743,63.82827510825357,6.606881964512918,23.80116485057091,0.0,0.0,4.143134726391533,0.0,5.616771097666572,2.3978952727983707,7.323170717943469,5.043425116919247,9.13938128303569,7.40184157874383,11.012924377287385,34.99999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.160000000000004,0.0,24.380376536674213,0.0,0.0,0.0,4.448177124219241,0.0,-0.11987342297519898,64.61590694741703,0.0,4.39041504767482,0.0,50.866731059242575,9.589074368143644,28.583699077277743,46.454498090775914,23.80116485057091,0.0,0.0,0.0,32.675664241112315,36.31377065868263,35.275293180256256,247.68063289943154,,229.620414532624,228.80589782114998,230.88082206635812,229.51227260830862,266.7485613084036,229.37882985130943,229.7163311182309,245.56517334860973,35.275293180256256,247.68063289943157,,228.1501764373861,227.116997870926,229.7485460950865,228.01344980192692,270.45339930318323,227.84399308441854,228.2714981172144,246.83598937640522,5.393211061304875,178.4100519727808,,167.9347474575515,167.50921013633678,168.60652102403563,167.88149589608904,185.66667844610555,167.8096304116043,167.98326464006084,175.7157456086167,1.2598318992948663,8.845736889265412,,8.200729090450858,8.171639207898213,8.245743645227076,8.196866878868166,9.526734332442986,8.192101066118195,8.20415468279396,8.770184762450347,2.7238923532875696,123.84031644971577,,114.86675488535963,114.46790660096823,115.48396010899721,114.81378333516898,131.52186165681195,114.74844710899667,114.91373605915454,122.14717866040716,55.325490196078434,0.0,5.257134843504794,0.0,16.85906328735198,0.0,31.96344205578165,57.48361252731245,0.6081851498953319,0.0,0.0,0.0,-2.6911447047954997,0.0,-5.872027536323171,0.0,0.0,34.07705332790557,354.1621380683829,81.87614586423332,195.90348080509813,272.9258557857555,308.2100683008998,308.2100683008998,308.2100683008998,1845.0,140.693429399786,191.80706802957374,80.0785441707861,94.83,94.83,1.0,8.017637159908478,5.954196310386875,4.551583314177744,5.203553273108567,,5.219115560544476,5.219361136497564,5.2179281898812695,5.218964556645176,5.187344880185034,5.2191299506141435,5.219171688731643,5.208687104041426,0.16255654693491944,0.18584118832530597,,0.18639698430515986,0.18640575487491298,0.18635457821004534,0.1863915913087563,0.18526231714946548,0.1863974982362194,0.18639898888327294,0.18602453943005096,2.545094570750589,2.678961131162179,,2.6819473718744535,2.681994423941582,2.6817198418004744,2.681918438603658,2.67584139967595,2.6819501290561374,2.681958126165043,2.679947245804739,291.3100000000007,220.65273496585849,180.98696483267796,,178.59513980485968,178.45794373167908,178.82570530332387,178.58135417988044,184.37413481358902,178.55588084763752,178.60928095856733,181.15787480185696,7.8804548202092315,6.463820172595641,,6.3783978501735605,6.37349799041711,6.386632332261567,6.377905506424301,6.584790529056751,6.376995744558483,6.378902891377405,6.46992410006632,6.426209547861177,6.228044428354583,,6.214740872514536,6.2139723812942735,6.216031035265822,6.214663680284822,6.246586451727766,6.214521027378389,6.214820049326989,6.228988304744152,16.85906328735198,24.380376536674213,31.96344205578165,-5.1691156987486355,-2.1191335745667015,0.0,4.439214381714833,4.479486345126001,0.0,379.11515600192865,112.58155434421816,-277.5002025829069,-26.026136131261367,-4.8684246067176655,-14.605273820152997,185.5008196630149,457.2375584582216,12.465502814591291,8.021711551898626,12.03256732784794,1670.0,70.0,3.613038628057037,2.399136420485058,0.37079081189859814,0.23800275690049974,2.7077595067902354,1.2973988161371035,0.8893562880894406,0.35793477945439134,0.0,0.0,0.0,0.0,0.05892556509887896,0.05892556509887896,0.42109766634481494,0.34351492803316375,1.2604023241496514,0.8690383571899402,20.698306133819763,16.613087630696945,12.963233394208578,10.142335326732525,13.318344363242861,9.749150873950825,13.127274744304879,8.791253204974346,10.559659690517067,7.26103317002553,8.529239706143175,5.5337704304993505,6.29812358161883,3.8813102485450104,4.7220709536157015,2.793245026550818,11.397235032882097,6.57130414080876,20.00554710685335,11.289789033037682,35.57906959454254,18.453773823404465,97.59842209833185,43.354752069865846,26.921084289799907,23.253225190381347,23.253225190381347,23.253225190381347,168.0,221.0,60.64399699999996,31.942002999999996,0.2982456140350877,205.06,12.027777777777779,5.819444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,57.0,0.0,0.0,60.0,0.0,4.0,4.0,56.0,4.0,31.0,56.0,0.0,0.0,0.0,22.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,5.0,3.0,0.0,28.0,6.0,0.0,0.0,5.0,0.0,4.0,2.0,0.0,0.0,1.0,0.0,0.0,3.58351893845611,6.551080335043404,4.143134726391533,4.672828834461906,5.043425116919247,5.402677381872279,5.673323267171493,5.910796644040527,6.152732694704104,6.400257445308821 +444036,CCC(=O)O[C@]1(C(=O)SCF)[C@H](C)C[C@H]2[C@@H]3C[C@H](F)C4=CC(=O)C=C[C@]4(C)[C@@]3(F)[C@@H](O)C[C@@]21C,0,26.923076923076923,6.52190153846154,3.4923076923076923,8.314529914529915,166.8854497036049,108.13234748383556,1.477881031543369,6.553047692307693,7.448770708029968,8.004426353846153,211.71356553426082,25.970588235294116,6.333088235294118,4.529411764705882,6.632352941176471,144.37419768586986,99.08684550743529,1.8671339306764705,6.487794117647058,3.016090232389252,7.7713042941176464,267.33653749311924,23.227272727272727,6.287272727272728,4.204545454545454,5.457070707070707,152.53494816137612,88.04063575033939,1.5994725662987348,6.408137878787879,2.965242704826038,7.78658718181818,228.7910159288558,21.141414141414142,6.38989898989899,3.6515151515151514,4.705387205387205,155.50894337539006,79.03840358510706,1.4680237474983737,6.485661616161616,3.476738839007357,7.881742050505049,210.4133376491746,18.522556390977442,6.392849624060149,3.0413533834586466,3.600250626566416,159.9531992111758,67.0556423687639,1.338903682347064,6.468290225563909,3.475685742133111,7.928500511278194,184.40735767351833,16.268852459016394,6.296321311475409,2.5278688524590165,3.2043715846994543,162.9541315902996,57.383811070004484,1.2063751194045673,6.358310491803279,3.7236768872697836,7.88407366557377,160.1064637777791,14.166666666666666,6.186973333333333,2.236666666666667,2.6066666666666665,166.0773201089348,49.43609403747733,1.0877039681889167,6.234969666666666,3.5564506172839505,7.7929530133333325,141.99120955745033,12.818867924528302,6.179781132075472,2.0113207547169814,2.4993710691823896,171.2241333666615,43.89860498464604,0.9958900588842112,6.209776226415094,3.6871010948054974,7.805734626415094,127.12817173727191,13.702564102564102,6.108728205128206,2.0,2.712820512820513,170.3253386923139,48.77052252806564,0.993153407883482,6.141738461538461,3.672681228236783,7.743038923076923,128.4131344141117,10.426982248520712,0.23800956213017746,0.01783441113652049,0.8828402366863906,4.868270874424721,2.344485240760066,48.825001171588085,0.2846917324887209,0.21272369230769225,3.6922420272562726,0.14468471100591712,50.53321469144817,0.4178141315697881,-0.004602865297598314,-0.008464577810085284,0.463539853811347,1.4153641180338017,0.10148648863033373,1.9504305924920027,0.023229183618474283,-0.00368394117647055,-0.15245665679279718,-0.003625067114514442,3.122543553179561,1.2925981710597096,0.005034400573785184,-0.0007444304095339695,0.09548144163528781,0.4182222620684162,0.04155404494338837,6.067107837945482,0.0073907152117663345,0.008144909090909095,-0.06293448922959838,0.005112518714362558,6.7699969010665635,0.42725240571394446,-0.0008393989600143179,0.0020896776621981356,-0.13528778913394301,-0.37096447711832314,-0.1280626424796406,1.9211123847838685,-0.007261608436126469,0.0007179393939394272,-0.006616201892792578,-0.0005107716896778451,-0.05220793343164343,-1.0465889576011032,-0.03031665293411038,-0.0016203468768130297,-0.16092005160831074,-0.8653340451721017,-0.12006192275703977,-5.098383653779665,-0.011751717896242,-0.028358030075187918,-0.25966677184963277,-0.018453075551897492,-5.7646007504279835,-1.4984576583567755,0.00034120710059171833,0.0003618702817007007,-0.09015423416432243,-0.196784255397118,-0.12110924899217211,-6.846464648005571,-0.037684157698225966,-0.0019098360655737594,-0.022373817422974392,-0.0006140296440003862,-6.6950740003372395,-0.3809309664694281,-0.0013143211045365144,-0.0003181087314206563,-0.03232741617357002,-0.11241902257286882,-0.2081998703912987,-1.7466897058688569,-0.01834416068793294,-0.0015288000000000246,-0.07751554032299526,-0.0010007256725838242,-3.890234108897323,-0.20399240817237937,-0.0016862181533995964,0.0006065469099531051,0.06113654125265156,0.2012662969992432,0.08353167785688964,-1.0228211656904544,0.0036333496204840523,-0.0019872452830189003,-0.043339351264148306,0.0009656359316735518,0.8363942955763375,1.7887179487179485,0.015607794871794813,-2.8788330061213837e-05,0.053254437869822494,0.5105150120534735,-0.020423838652161783,8.504602103007867,0.02616359595395575,0.017058564102564032,0.1719071950173565,0.008190639053254437,6.6792822716769535,,,0.4663865546218488,0.8014705882352942,0.19117647058823528,0.0,0.6102941176470589,-0.41911764705882354,1.6409159240507,0.031934986580717306,0.04205263363954083,0.7542811225986557,0.12172245009974697,0.3438194328010974,2.3951970466493555,0.46554188290084436,2.00776046560767,1.5284146675868011,0.0,0.2666536259775441,0.15586785530691144,0.4793457980208687,7.695145073107705,1750.0,423.9236000000001,227.0,540.4444444444445,10847.554230734318,7028.602586449311,96.062267050319,425.94810000000007,484.17009602194787,520.2877129999999,13761.381759726954,1766.0,430.65,308.0,451.0,9817.445442639151,6737.9054945056,126.96510728599999,441.16999999999996,205.09413580246914,528.4486919999999,18178.884549532107,3066.0,829.9200000000001,555.0,720.3333333333333,20134.613157301646,11621.3639190448,211.130378751433,845.8742,391.412037037037,1027.8295079999998,30200.414102608967,4186.0,1265.2,723.0,931.6666666666666,30790.77078832723,15649.603909851197,290.668702004678,1284.161,688.3942901234567,1560.5849259999998,41661.84085453657,4927.0,1700.4979999999998,809.0,957.6666666666666,42547.55099017276,17836.800870091196,356.148379504319,1720.5652,924.5324074074075,2108.9811359999994,49052.35714115587,4962.0,1920.3779999999997,771.0,977.3333333333335,49701.010135041375,17502.06237635137,367.94441141839303,1939.2847000000002,1135.721450617284,2404.642468,48832.47145222263,4250.0,1856.092,671.0,782.0,49823.19603268044,14830.828211243199,326.311190456675,1870.4909,1066.9351851851852,2337.8859039999998,42597.3628672351,3397.0,1637.642,533.0,662.3333333333333,45374.3953421653,11633.130320931201,263.910865604316,1645.5907,977.0817901234568,2068.519676,33688.96551037706,2672.0,1191.2020000000002,390.0,529.0,33213.44104500121,9510.2518929728,193.664914537279,1197.639,716.1728395061727,1509.89259,25040.56121075178,677.7538461538463,15.470621538461534,1.159236723873832,57.38461538461539,316.43760683760684,152.39154064940428,3173.6250761532256,18.50496261176686,13.827039999999997,239.99573177165772,9.404506215384613,3284.6589549441314,28.41136094674559,-0.3129948402366854,-0.5755912910857993,31.520710059171595,96.24476002629852,6.9010812268626935,132.62928028945618,1.5795844860562511,-0.2505079999999974,-10.36705266191021,-0.24650456378698204,212.33296161621016,170.62295857988167,0.6645408757396443,-0.09826481405848397,12.60355029585799,55.20533859303094,5.485133932527265,800.8582346088036,0.9755744079531562,1.0751280000000005,-8.307352578306986,0.6748524702958576,893.6395909407864,84.595976331361,-0.16620099408283495,0.4137561771152309,-26.786982248520715,-73.45096646942798,-25.35640321096884,380.38025218720594,-1.4377984703530409,0.14215200000000658,-1.3100079747729305,-0.10113279455621334,-10.337170819465399,-278.39266272189343,-8.06422968047336,-0.4310122692322659,-42.80473372781066,-230.17885601577905,-31.936471453372576,-1356.170051905391,-3.125956960400372,-7.543235999999986,-69.07136131200232,-4.908518096804733,-1533.3837996138436,-457.0295857988165,0.10406816568047408,0.11037043591871372,-27.49704142011834,-60.019197896120986,-36.93832094261249,-2088.171717641699,-11.493668097958919,-0.5824999999999966,-6.82401431400719,-0.1872790414201178,-2041.9975701028582,-114.27928994082842,-0.3942963313609543,-0.0954326194261969,-9.698224852071005,-33.725706771860644,-62.45996111738961,-524.0069117606571,-5.503248206379882,-0.4586400000000074,-23.254662096898578,-0.3002177017751473,-1167.070232669197,-54.057988165680534,-0.446847810650893,0.16073493113757284,16.201183431952664,53.33556870479945,22.135894632075754,-271.0476089079704,0.9628376494282739,-0.5266200000000085,-11.484928084999302,0.25589352189349124,221.64448832772945,348.79999999999995,3.0435199999999885,-0.005613724361936698,10.384615384615387,99.55042735042733,-3.9826485371715474,1658.3974100865341,5.101901211021371,3.326419999999986,33.521903028384514,1.5971746153846154,1302.460042977006,0.7431535363109444,0.6056817972713067,0.4277952437467219,0.34403316178221904,0.2576917311114272,0.18816407224482312,0.15302111006977698,0.10416378309611782,0.09035240787876424,0.06098433447986831,0.05552054307836412,0.034365778469463905,0.03294016308145274,0.019622898928529985,0.018788703335641595,0.011017987885852355,16.002005260779804,5.703199395307729,4.110027402281297,2.2018870737296248,0.4292178318143001,-0.48248555302893514,4.124245581323779,0.9771053482898299,7.00547165301056,0.6562086494788604,17.42685591461048,10.338051424010661,32.060999669902614,11.714967715595295,2.9163679329807985,0.5451914264027792,3.991007260303926,2.251590982453538,8.00391765304753,0.6268701537079572,4.012345488850796,2.4475716073794187,24.43423100724771,13.30315459990129,0.26200044058950084,0.5699117854234963,0.8007427034658672,0.9008192630454139,0.9008192630454139,0.9008192630454139,1.8127889963909172,983.5979311485576,0.0,2.0,4.0,0.0,4.0,6.0,1.0,5.0,2.0,4.400631051430177,2.494713847218938,1.0659109617714506,0.44645461551775245,0.44645461551775245,0.44645461551775245,87.4475031448157,1819.9132775911137,67.65420770221037,27.998665809094057,60.89986933884933,,13.0,700.0,75.0036016108639,23.880553994730988,31.256391021773307,11.761884949391115,6.076020106833881,19.075777413358388,20.771211599071872,0.0,0.0,4.736862953800049,15.85714285714286,27.25,6.5,0.0,20.75,0.0,0.0336134453781512,-14.25,0.18206959706959652,0.018767319636884938,-0.16330227743271158,0.017683073229291635,0.20645541838134396,0.0,0.6237362637362622,0.9189075630252096,0.4416666666666657,0.6049689440993773,0.901224489795918,55.7911414177238,1.0857895437443883,1.4297895437443882,25.64555816835429,4.138563303391397,11.68986071523731,81.43669958607809,15.828424018628708,0.507544581618656,0.2642642642642642,0.12612612612612611,0.2837837837837837,0.72,0.4312986314997054,-1.233322752955756,-0.07632598951987035,-0.01897419619931932,-0.05872965490265505,0.5687013685002945,1.6262336260368317,0.029976340147516517,0.025018978862105107,0.03695985513720072,-4.759930954627958,0.7290517786994035,0.5498756223794732,1.381125772713469,0.9430689165746727,0.41772217865300365,0.9662785496998516,0.7269521627641263,1.0546909553477903,0.5480038090752101,0.5804824986186933,0.5800822679231479,1.036163910794888,0.7829784658222482,0.6838063399462552,0.9104419769556907,1.5504102689089283,0.7734249515619035,1.008636979007669,0.7767811172242035,1.0934917674235423,0.6672494509659949,0.6948762921450787,0.6755099040199083,0.9315515995004563,0.7549595927495776,0.8369939196963797,0.9690205750949852,1.6841877217212338,1.0097255971194474,1.0628792646271752,0.7668346788517256,1.0014845887486972,0.8265181116058817,0.78575062723927,0.8529986076193616,1.0163849639793918,1.017070300939619,1.0921438624102282,1.228656939797762,1.356366788284384,1.1514568308885613,1.0803336846053035,1.023721685340498,1.0392408590545845,1.091942587465319,0.9698728717785058,1.1059930866043324,1.1058699357500168,1.2376464949499382,0.9474660399486314,1.033058241762482,1.0512899397881599,0.9877170504343045,0.9986418789595976,1.2176422899331594,1.2077301436082808,0.959370842667226,0.977347768891959,0.9690262931416022,1.1284300954678785,1.0070912970445358,0.954065008310872,0.9652049974753071,0.8736371760500447,0.9689722480318647,0.985960834496827,1.007547619017221,1.0037356523823873,0.9620901267853904,0.9944671219480568,0.9580825539350064,1.0520790302100274,1.0829111099499669,1.1044546079033728,0.8391839733177361,0.6944205574384136,0.9835277176534286,0.9873533791670677,1.0860509135610636,0.9492227935573899,1.1077970930134817,1.0866541572638544,1.0612499299471174,0.949963739524623,0.8300116523660355,0.9235198214567945,0.9402024594574676,0.674888293118856,0.8889849247678933,0.8889882438809232,0.8307436809824124,0.815249079508157,0.9189004910779058,0.910451573297108,0.9206794085954798,0.8332253499819894,11.5,0.1361085603509846,9.111111111111114,6.611111111111111,5.170000000000001,2.9280555555555554,1.75859410430839,0.9792020975056689,0.5873015873015872,0.3484413580246914,8900.11608642463,10037.841841826652,3312.976142848388,2998.0040582498477,13.191949213646676,0.4664337820542747,7.038778449257542,0.8741816223862221,0.0,0.72,1.6217367615982774,3.5276539658095163,4.956456851257004,5.575913197510702,5.575913197510702,5.575913197510702,0.31081081081081086,0.006805428017549228,0.14936247723132978,0.08161865569272977,0.06082352941176471,0.03706399437412095,0.027478032879818592,0.02040004369803477,0.015059015059015055,0.011614711934156379,0.72103669910933,27.04601899196494,9.08142972319269,3.5173407202216067,201.10739261084083,0.0,4.477605814124425,173.6142658555763,,152.01915215280536,157.81169695454506,161.18055530515005,151.82253985581875,200.54874359484447,158.18132796424578,158.02557149520035,177.18154864920695,0.0400704750052743,-0.019338993174907875,-0.4746205380872884,0.5250551963412711,0.2907324088044,0.04328732246462448,0.03994737420768325,0.08159416297554264,-0.017317963676288333,-0.04129107888035407,-0.02505494249745703,0.0617919040426295,0.12396666075106169,0.02115209375929047,-0.041741238543590534,0.10815257128930053,0.08590776332219541,0.017724165723439076,0.12426231832793097,0.02596041390860953,0.03828867862601767,-0.01704506063389495,0.035335583689651034,0.13397122946568174,0.040975652929164545,-0.0035267446925313665,0.11717110512939725,-0.15324153058737514,-0.076200459400723,-0.05462292543079674,0.039346898897808714,-0.025506917157891697,0.003374985579419947,-0.0017919198806447467,-0.0035302395541776093,-0.0010331409499755942,-0.10037314082409451,-0.12737577710230366,-0.09085508147196167,-0.18227539357777825,-0.17774977348078594,-0.051210355548289364,-0.10442157770487637,-0.041278746641185256,-0.13330922271774837,-0.07032766810321824,-0.12753991367576373,-0.11407548056513288,-0.14370962016065225,0.0014335856826000032,0.02029056518494627,-0.10211840196897112,-0.04042179666520134,-0.05165707460496076,-0.14022456699887637,-0.1323682896190846,-0.008978012955939548,-0.006059683319189266,-0.004243915198305054,-0.1324885828304578,-0.03653319411025862,-0.005522135719142481,-0.017836794777554937,-0.03661751563896335,-0.023092187241153313,-0.08880408661638738,-0.03577449388542522,-0.0644351717823759,-0.007186787627720874,-0.020994165537029416,-0.006916595856094968,-0.07698370532432551,-0.019563897138246304,-0.0070846655836345465,0.03400992078236024,0.06924983560119378,0.041342460637633825,0.035629005636140944,-0.02094871768862645,0.012762399486356706,-0.009341908564394734,-0.011737949718413784,0.006674070293675056,0.016551377162195107,0.17154704075301516,0.06557633538798015,-0.001614201323544819,0.060321715817694375,0.10486577785460646,-0.008711438356310794,0.1741853947554395,0.09190149543591791,0.08019118095171941,0.04655902666952246,0.05661025962113901,0.13217608086998076,5.614095830211157,19.298831071802937,9.583804756155425,18.297726508765844,38.14969549425728,45.30511340404162,45.92952540106535,45.92952540106535,45.92952540106535,68.26385583066077,51.96609869795124,0.0,9.0662232832365,5.299507080434989,16.297757132709535,7335.098720311925,7215.283327338806,2173.8690060194294,458.0,61.0,95.0,138.0,191.0,239.0,295.0,367.0,427.0,500.1844297520008,37.0,5.2832037287379885,6.2324480165505225,7.221835825288449,8.206037762778815,9.205026277152413,10.200884779674478,11.204428252804528,12.205317360374137,13.211221880738579,0.6769230769230771,1.002707692307692,1.1391661145795406,0.6411727834100791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6540910456011053,0.9874509803921572,1.0209479522662335,0.6169083874806245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,3.0,0.0,4.0,0.0,4.0,0.0,3.0,0.0,1.0,5.0,0.0,1.0,1.0,5.0,0.0,4.0,0.0,0.0,9.843390348640755,12.17829835160598,17.053055576094305,5.11527693018572,0.0,14.383611552215466,13.171245143024459,0.0,0.0,26.847231705905752,61.59113780775819,29.086614654042357,6.103966387748303,274.4922645482925,-784.9261060731908,-48.576304622966944,-12.075786247279858,-37.3774336225329,361.9397676931082,1034.987171517923,19.077903079243427,15.9228795618142,23.52243571631643,0.46153846153846156,0.7131038686960772,0.15706880272135587,0.0,0.107030046107161,0.0,0.2868961313039228,7.0,0.10810810810810811,0.2692855720452515,0.5857586376869885,0.8230079937220841,0.9258672619510357,0.9258672619510357,0.9258672619510357,4.430000000000004,,2.875,2.5747129719540753,1.8398800146713379,2.9750535166788206,-10.98194739425194,2.383122005375716,2.2543301052543114,-3.477372511020783,120.86780000000005,37.39824704388068,0.0,0.0,28.583699077277743,76.92368770345448,6.006622956095687,23.80116485057091,0.0,0.0,4.31748811353631,0.0,5.765191102784844,2.3978952727983707,7.44600149832412,5.043425116919247,9.247925132303454,7.4127640174265625,11.117583940032915,44.00000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.17599999999999,0.0,37.78350402283688,0.0,0.0,0.0,3.669983094273318,0.0,-1.7335431873159763,74.04579744767014,0.0,13.171245143024459,0.0,51.52642992842686,19.120474506015512,28.583699077277743,53.378235290466534,23.80116485057091,0.0,0.0,0.0,41.67623092165514,42.515917964071846,42.46154036897482,347.22853171115264,,304.0562684759319,315.47194020485756,322.2528823741429,303.6530054977776,406.071344089984,316.2224722811165,315.9185353371505,355.7949565676578,42.46154036897482,347.22853171115264,,301.5195037700495,313.04868093713606,320.5212305956288,301.0279582771787,412.079434583941,313.9795339231158,313.79681288514644,357.84046980943475,5.42358315236545,245.1159508428812,,220.60813668187654,226.9824611817472,230.86527870229193,220.40492996239368,277.00950354845065,227.4113249763689,227.22910516892574,249.34874050240106,1.2488688343816126,10.21260387385743,,8.942831425762703,9.278586476613457,9.478025952180674,8.930970749934636,11.943274826176,9.300660949444604,9.29172162756325,10.464557546107581,2.7390567594112882,173.6142658555763,,152.01915215280536,157.81169695454506,161.18055530515005,151.82253985581875,200.54874359484447,158.18132796424578,158.02557149520035,177.18154864920695,64.18431372549021,0.0,6.450651617743554,0.0,46.02014308042061,0.0,11.377536690602167,66.36161689730517,-1.2867708492210368,0.0,5.807591292485773,0.39576924667811175,-5.4636496651129605,0.0,-6.854548676723776,0.0,0.0,40.099045186240595,453.84214435344944,105.41288950388802,229.29750777761856,322.16969533170527,362.43435783819564,362.43435783819564,362.43435783819564,2342.0,153.9704038840999,182.58988788795133,86.74827419412584,105.97,80.67,0.8571428571428571,8.21851757748959,6.20945336562895,4.766539051089641,5.725785577706391,,5.752455408414114,5.740902328157038,5.737972248273974,5.752565384383891,5.692139425166154,5.741430015239552,5.742532965181685,5.724920852400666,0.14019232503204826,0.16840545816783503,,0.1691898649533563,0.168850068475207,0.16876388965511688,0.16919309954070266,0.16741586544606335,0.16886558868351623,0.16889802838769663,0.1683800250706078,2.785395907362801,2.9687551904621223,,2.9734022228313397,2.9713918296263198,2.9708813126889333,2.9734213407402525,2.9628616064840467,2.971483742500308,2.971675827749521,2.9686041560586736,349.1500000000014,392.43868177441755,239.6818369850288,,234.80263380562494,236.28709333582276,236.91281697579856,234.72910362914445,245.3453534765196,236.33027917978467,236.28754956680902,240.27029913446034,11.54231416983581,7.049465793677318,,6.905959817812498,6.949620392230081,6.968024028699958,6.903797165563072,7.216039808132929,6.9508905641113135,6.949633810788501,7.066773503954716,7.196155731861663,6.703087796244985,,6.682520736743234,6.688822994500251,6.691467644218233,6.682207530324075,6.726442255631516,6.689005746326965,6.688824925331679,6.705539967618009,51.82773437290639,37.78350402283688,10.706630746931973,-6.840489687923174,-3.2972197165313775,-1.0194846860743625,0.15957075009867583,6.450651617743554,0.0,459.0107951076885,174.695669761014,-499.55211684749014,-30.9155162699722,-7.685417182269078,-23.788196040356674,230.35006190190535,658.6989889129309,12.14178862762737,10.133830598660476,14.970431566202976,2835.0,81.0,3.9775630601159273,2.5531971598283123,0.34638304366414374,0.23519067823154408,2.477814429718563,1.3038262831877352,0.7696411650708285,0.3469097464972541,0.0,0.0,0.0,0.0,0.05892556509887896,0.05892556509887896,0.3961927921179245,0.3345972661397495,1.2092489535277202,0.871226368377196,25.267220234572108,20.593181107224428,15.828424018628711,12.729226985942104,15.719195597797059,11.47800840693421,14.537005456628812,9.895559394131192,12.468632287269465,8.415838158221828,10.604423727967546,6.563863687667606,7.8726989764672055,4.689872843918667,5.54266748401427,3.250306426326445,11.58089995446133,6.928912141462819,21.517673163110587,12.700619522558211,40.35899408651997,21.593177526893584,113.72010861805553,50.72706993466336,30.803679838002537,26.42472243471566,26.42472243471566,26.42472243471566,196.0,254.0,71.00158299999998,41.23841700000003,0.26153846153846155,247.09,14.75,7.3055555555555545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,65.0,0.0,0.0,68.0,0.0,5.0,5.0,63.0,5.0,37.0,63.0,0.0,0.0,0.0,25.0,0.0,3.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,6.0,1.0,0.0,34.0,9.0,0.0,0.0,5.0,0.0,4.0,4.0,1.0,0.0,3.0,0.0,0.0,3.7612001156935624,6.790097235513905,4.290459441148391,4.795790545596741,5.209486152841421,5.60947179518496,5.846438775057725,6.082218910376446,6.345636360828596,6.617402977974478 +124087,Clc1ccc2c(c1)CCc1cccnc1C2=C1CCNCC1,0,26.585365853658537,5.794358536585366,3.3902439024390243,5.6489009334537785,158.85774896603982,107.54678324390245,1.6733937851739267,5.950641463414635,2.268421864602734,7.3999882195121955,234.8295507873512,25.113636363636363,6.102931818181818,4.136363636363637,6.025252525252525,142.9633368192613,95.81980268181823,1.9896334063636372,6.290545454545454,2.5579171343060234,7.541631590909088,281.1045622032748,21.025316455696203,5.972594936708862,3.759493670886076,4.679324894514768,149.51048162722395,78.58723089873418,1.742245584292329,6.133620253164557,2.3339584310048447,7.476704405063288,237.91340065412592,17.763636363636362,5.808699999999999,3.418181818181818,3.813131313131313,153.5114225905274,64.97787132727271,1.5683461255648268,5.960022727272727,2.1178077066965963,7.3819146545454535,207.53869860194425,16.80701754385965,5.7746315789473694,3.236842105263158,3.242690058479532,153.01945377026382,60.86925143859649,1.5241986900638766,5.919114035087718,2.1130243303732583,7.3425679649122815,199.095662083458,16.864406779661017,5.825932203389831,3.0847457627118646,2.8954802259887003,154.23623716261199,60.698690313559325,1.5201431473934996,5.970639830508477,2.183214759015135,7.397286101694916,198.70871044170605,14.967479674796747,5.783787804878046,2.569105691056911,1.970189701897019,154.70643218331438,51.80911054471544,1.4208759412047804,5.927809756097561,2.110458697179564,7.379667691056911,176.84237776869386,10.873015873015873,5.502707142857142,1.9841269841269842,1.0661375661375663,163.83036384873733,36.82522067460318,1.0771129789564047,5.605919841269841,1.7547521066039586,7.191382952380954,122.8612793371526,9.814814814814815,5.457925925925927,1.5679012345679013,0.44170096021947874,175.34831528818899,32.29719567901234,0.892800621032815,5.573827160493829,1.522405121170553,7.302540246913582,91.50356736666038,10.585365853658537,0.049567995240927976,0.006259741640454935,0.5580011897679952,2.916106667841746,1.4764727122082448,50.0737430148721,0.25792836138422487,0.06232492563950024,0.23172073619093447,0.032735854848304574,54.49237809462866,0.29545454545454547,0.0008489670650587343,-0.0017932188057978137,0.19865069493267012,0.9140923412190517,-0.0002712665685784291,1.4417357877886523,0.010057731677457516,0.0012639324536261314,0.026319450209183592,-0.0005300882185928323,2.756292068532232,0.06329113924050633,-0.004626624447473208,-0.0008951129544528216,0.05175490779298041,0.1602619720753141,0.06117639541245106,0.3273407634545434,0.00989269636034229,-0.0040974171492254895,-0.007523990698623268,-0.002266203412676301,0.8846467897309791,-0.01818181818181818,-0.0018412546644313336,0.00017507537471471882,0.023595262560164428,0.12715795672369143,0.12284376467875054,-0.009245189816668109,0.015377358680547197,-0.0020006684332918643,0.004378445258543072,-0.0018941448704775296,3.3450763105934063,-0.17543859649122806,-0.0004962365759729425,0.0003996901705589345,-0.11640940542909922,-0.3952980971829403,-0.11642708931980235,-0.8609578563355149,-0.01232043294580338,-0.0006743907657305023,-0.006942467904316875,-0.00034715758685828176,-2.5286091823679375,-0.7966101694915254,-0.005759499994958592,-0.0004936977560795711,-0.14440052833765213,-0.7475873837788489,-0.021638529275766226,-3.7690672870920263,-0.012935073987235406,-0.006840427913167084,-0.027805255503728938,-0.003197255013662166,-3.2343412617741953,-2.138211382113821,-0.007185544318857806,-0.00021390089858957774,-0.1536783660519532,-0.7790311959126817,-0.35443476070131563,-10.322791492762242,-0.07698928211710887,-0.010616755899266283,-0.04986117257762183,-0.0020828383898473116,-18.033939434394576,1.3174603174603174,0.008080436814821066,0.0004123436007750646,0.02136388959708409,0.13700173802185378,-0.3117787524656883,6.090626428217336,-0.012117496621665625,0.011287772773198073,0.005978009898579744,0.006452076626724454,-2.4752570432291043,1.3209876543209877,0.0006466389054133949,-0.0006402074943724752,0.1408846879796711,0.6029806217965821,0.3855490817130659,6.533341252818356,0.07487539439513738,0.0020700457546580335,0.021623943651230614,-0.003173174330388291,15.628569919539906,,,0.5006493506493507,1.2386363636363635,0.6136363636363636,0.022727272727272728,0.625,-0.011363636363636364,0.8772049115611764,0.0039869873580988206,0.019623350994462455,0.7735395904147879,0.2278234272945361,0.2642902018188694,1.6507445019759643,0.49211362911340556,2.099387024695199,1.8335182154209995,0.18514564901627564,0.0,0.0807231602579242,0.26586880927419987,7.563992104585378,1090.0,237.5687,139.0,231.60493827160494,6513.167707607632,4409.418113000001,68.609145192131,243.9763,93.00529644871209,303.399517,9628.011582281399,1105.0,268.529,182.0,265.1111111111111,6290.386820047497,4216.071318000002,87.54386988000003,276.784,112.54835390946502,331.83178999999984,12368.60073694409,1661.0,471.83500000000015,297.0,369.6666666666667,11811.328048550693,6208.391241,137.637401159094,484.55600000000004,184.38271604938274,590.6596479999997,18795.15865167595,1954.0,638.9569999999999,376.0,419.44444444444446,16886.256484958012,7147.565845999998,172.51807381213095,655.6025,232.95884773662561,812.0106119999999,22829.256846213866,1916.0,658.3080000000001,369.0,369.66666666666663,17444.217729810076,6939.094664,173.75865066728193,674.7789999999999,240.88477366255145,837.0527480000001,22696.90547751421,1990.0,687.46,364.0,341.66666666666663,18199.875985188213,7162.445457000001,179.37689139243295,704.5355000000003,257.61934156378595,872.87976,23447.627832121314,1841.0,711.4058999999996,316.0,242.33333333333331,19028.891158547667,6372.520596999999,174.767740768188,729.1206000000001,259.5864197530864,907.699126,21751.612465549344,1370.0,693.3410999999999,250.0,134.33333333333334,20642.625844940903,4639.977805,135.71623534850698,706.3459,221.0987654320988,906.1142520000002,15480.521196481228,795.0,442.09200000000016,127.0,35.77777777777778,14203.213538343309,2616.0728499999996,72.31685030365801,451.4800000000002,123.31481481481478,591.5057600000001,7411.788956699491,434.0,2.032287804878047,0.2566494072586523,22.878048780487802,119.56037338151158,60.53538120053804,2053.023463609756,10.575062816753219,2.55532195121951,9.500550183828313,1.3421700487804875,2234.187501879775,13.0,0.03735455086258431,-0.0789016274551038,8.740630577037486,40.220063013638274,-0.01193572901745088,63.4363746627007,0.4425401938081307,0.05561302795954978,1.158055809204078,-0.02332388161808462,121.2768510154182,5.0,-0.36550333135038343,-0.0707139234017729,4.0886377156454525,12.660695793949813,4.832935237583634,25.859920312908926,0.7815230124670409,-0.3236959547888137,-0.5943952651912382,-0.17903006960142778,69.88709638874735,-2.0,-0.2025380130874467,0.01925829121861907,2.595478881618087,13.987375239606056,13.512814114662559,-1.016970879833492,1.6915094548601917,-0.22007352766210508,0.48162897843973795,-0.20835593575252825,367.9583941652747,-20.0,-0.056570969660915446,0.04556467944371853,-13.270672218917312,-45.063983078855195,-13.272688182457468,-98.1491956222487,-1.4045293558215852,-0.07688054729327726,-0.7914413410921237,-0.03957596490184412,-288.2614467899449,-94.0,-0.6796209994051138,-0.05825633521738939,-17.03926234384295,-88.21531128590418,-2.5533464545404145,-444.7499398768591,-1.5263387304937779,-0.807170493753716,-3.281020149440015,-0.3772760916121356,-381.65226888935507,-263.0,-0.8838219512195101,-0.02630981052651806,-18.902439024390244,-95.82083709725984,-43.595475566261825,-1269.7033536097558,-9.469681700404392,-1.3058609756097528,-6.132924227047485,-0.25618912195121935,-2218.1745504305327,166.0,1.0181350386674544,0.05195529369765814,2.6918500892325956,17.262218990753578,-39.28412281067673,767.4189299553843,-1.5268045743298688,1.4222593694229573,0.7532292472210478,0.8129616549672811,-311.88238744686714,107.0,0.05237775133848499,-0.05185680704417049,11.41165972635336,48.84143036552315,31.229475618758336,529.2006414782868,6.064906946006127,0.1676737061273007,1.7515394357496796,-0.25702712076145157,1265.9141634827324,0.6791339464063205,0.6039931507629401,0.433059993619797,0.3345379365417876,0.2743811560580542,0.1850740221818716,0.1706627051108333,0.10049261924036546,0.10762555884449848,0.0551667883541187,0.06963154994891947,0.031087201628003883,0.043625329763097596,0.01710776278952656,0.028854421260484,0.009817571254679077,17.001102775177245,5.676743161242546,3.1464267385118454,2.175016464074867,0.35529053622136897,-0.3820781863279741,3.278711337813747,0.9938464774443458,5.033751080702713,0.7740036699567341,14.54802261483464,10.937140499036797,35.45051726529175,11.68810917473845,2.207871137328126,1.0248897042256282,3.182288797383796,2.225298822351478,3.0390138132563105,1.304080186803436,3.492965973584964,2.4213105408781197,22.45586445157653,15.589349233623462,0.24181331354309152,0.582710554200482,0.7311794379814159,0.824096377392794,0.8412955417234166,0.8412955417234166,1.6027457257222917,740.850445001187,0.0,1.0,2.0,0.0,7.0,4.0,5.0,0.0,0.0,3.9858840368501527,2.052169889937015,1.2099912310838246,0.6829268292682942,0.585365853658538,0.585365853658538,145.9635446361803,559.337508574198,31.146625807340918,13.642378257907271,26.723441346196253,,9.0,341.0,0.0,0.0,0.0,0.0,43.79543261727052,33.53049153007798,0.0,18.3295777085363,23.51588980939116,16.584918411179725,11.014285714285714,27.25,13.5,0.5,13.75,0.0006493506493506471,0.0,-0.25,0.10420441347270604,0.05680099927683907,-0.047403414195866966,0.02032749858836802,0.06171573604060887,0.0,0.550871080139373,0.7675324675324672,0.446666666666667,0.49407008086253396,0.7472049689440992,19.29850805434588,0.08771372187817406,0.43171372187817403,17.017870989125335,5.012115400479795,5.814384440015127,36.316379043471215,10.826499840494922,0.6522842639593911,0.0648508430609598,0.0,0.31776913099870296,0.3157894736842105,0.3559316325941122,-0.3930019988619359,-0.028149573742201568,-0.009585414606388683,-0.02183344438121866,0.6440683674058878,0.7111482448172963,0.033334868026465035,0.01734507914188528,0.03091948890509983,-6.473327341767563,0.6399245915374948,0.8466499476631034,1.299602368243985,0.6556503198294243,0.6173477331110938,1.0892647409114127,0.6450541669268173,0.8537669221674479,0.7547705749020651,0.8036605150444739,0.7191708281164395,0.8657807371397143,0.7303272472729394,1.0709138036783814,1.2620154888123953,1.0733853337291843,1.0012981489900132,1.0212844110224018,0.7347905470459828,0.8688949296151408,0.9427036742886448,0.9939655227815053,0.8791826783051983,0.9136021544818304,0.854210305823209,0.9286980976078208,0.8908772393023012,1.1841442139949603,1.0364195015179756,0.9164769912263137,0.8557640893388393,0.8931010934517701,0.9040597155521339,0.8658327117919219,0.8779952362680385,0.9040050759245527,0.7931118117875333,0.8369100583001431,0.6851128366397665,1.403321737178768,1.2200860535461964,1.0675911794448891,0.7992846149509021,0.9899043138909962,0.8127653707163116,0.9755607746837421,0.7077659656947967,1.0128776127574126,0.9126767163945951,1.0866354297372298,0.975117439477351,1.3409345524195007,1.331270430887361,1.0270137628174312,0.9159287320856151,0.9889488248999119,1.0254238744134387,1.2305611526517348,0.9622994438737175,1.0135509422831737,1.0940017234273725,1.0826438544569499,0.9167572300976711,1.0092395167022035,1.1238435836733323,1.2268554365737503,1.099964984158248,1.2493646360980892,1.087861902116609,1.2758882335889425,0.9524932914732019,1.2893713635195934,0.7830444005559213,0.7503858441405696,0.7927279942905079,0.6591193691406911,0.7776546505705828,1.1200026861914756,0.7900109252429094,1.03091572456345,0.7343839005068269,0.8997212052208662,0.6055273217123885,1.0525731651434267,1.4530352164760767,1.3273491820797636,1.5438524561703335,0.5504224907209982,0.716387671608545,0.6176449024348201,1.4323811354934315,0.8118098877321523,1.4176561585540017,0.8865628947193083,1.8027133770664896,0.7507952128835433,3.0,0.0,2.222222222222223,1.625,1.521666666666667,0.455,0.4361451247165532,0.25170068027210885,0.06828703703703701,0.015625,4267.886849188485,4816.673610725844,2092.963064821637,1899.0719777575493,10.114050500042483,0.41705404077428376,5.8959448704046,0.7154248763096765,1.0,0.3157894736842105,1.3716679677679313,3.305382114681069,4.147560773534259,4.67462517534979,4.772186150959546,4.772186150959546,0.12000000000000001,0.0,0.06349206349206352,0.04062500000000001,0.040043859649122805,0.011666666666666667,0.014538170823885107,0.01480592236894758,0.01138117283950617,0.015625,0.3321778558401918,15.5232,6.857142857142857,3.1653477717617657,135.7795452929274,1.0,4.047723006770438,86.2572716321382,,67.51391727829606,68.39488119421229,68.04984857347033,67.48575175626698,72.65684816340146,68.40508601346315,68.53015839261482,71.80755664835061,0.027911604524507753,0.017127323002116245,-0.2864685012251543,0.3560040705563097,0.3134632732401333,-0.0001837260968898754,0.02879225120759299,0.038994283619996885,0.020279726620725837,0.11358262813172124,-0.016192893726136685,0.05058124025612898,0.005979116840692994,-0.09333894632988977,-0.142995191473712,0.0927505330490406,0.05495751367487746,0.04143415242734443,0.006537173850920668,0.038354434181844636,-0.06574283253743075,-0.03247007938220778,-0.06922695079073735,0.016234321581538376,-0.001717637201508169,-0.03714603859772447,0.027968466555114084,0.04228532661368487,0.043605385950371604,0.0832008364685743,-0.0001846314906781035,0.05961871970194159,-0.032100614846524295,0.0188953536507639,-0.05786147571996671,0.06138613192444122,-0.016573692295254263,-0.010011229495180452,0.0638509052795167,-0.2086185613286949,-0.1355568030285759,-0.07885488729803306,-0.017193798675681323,-0.04776687945320661,-0.010820562701210628,-0.029960494768134966,-0.010604812016273387,-0.04640298828538709,-0.07525579942201047,-0.11619392648349453,-0.07886871127219414,-0.25878175707419326,-0.256364896395285,-0.014655556514419537,-0.07527033251683618,-0.05014987075409896,-0.10975428920258129,-0.11999467963375456,-0.09766829149499835,-0.05935401197131836,-0.20199692780337944,-0.1449633838111078,-0.034170882901491804,-0.27540867093105903,-0.267147702278413,-0.24005507028383563,-0.20615178477263688,-0.29849095192141833,-0.17034526379823875,-0.21517786192659494,-0.06362559949935703,-0.3309442543153056,0.12446053690293321,0.16301722059860718,0.06587230343664742,0.03828645886215177,0.04698104480631047,-0.21116458833796203,0.12163313668020374,-0.046980086085278185,0.18111169259132043,0.025798338106667987,0.1970951012772655,-0.04542391302744579,0.12479376457871083,0.01304549240433007,-0.10227378878306986,0.2524809813367027,0.20677591407959606,0.2611284844786805,0.13047439355348225,0.2902953129826569,0.03321377014762263,0.09331898390575112,-0.096932685738391,0.2868028606202529,16.718436220856255,27.89758810191166,9.361985947187538,14.304672605817341,31.675176174143523,37.78665016812677,38.854662792473896,38.95300425588853,38.95300425588853,46.18651454329438,40.33740073926199,4.073204278358064,0.0,1.7759095256743325,5.849113804032397,3677.8353591432115,2438.282426626682,1502.9860142953826,149.0,35.0,49.0,69.0,95.0,107.0,125.0,142.0,150.0,310.1236762880005,25.0,4.795790545596741,5.666426688112432,6.561030665896573,7.455298485683291,8.360539381370861,9.263975921142093,10.173171119285234,11.08049503863161,11.991176242804041,0.6666666666666666,0.9587317073170731,1.1141061462860127,0.6311795488282083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7124151745289908,0.9516021042563367,0.9884443891780506,0.6525401746486426,6.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,29.306778557225,73.662254984005,16.79258141542367,5.693927994848461,180.30690455181764,-199.0859125979375,-14.259936575228268,-4.855753965803355,-11.060328477663194,326.27044918799794,360.2515959762605,16.886689232112648,8.786624292103916,15.66311286853306,0.4444444444444444,0.9673987253760675,0.2862785756488027,41.921524181366756,0.11068735249576533,195.15799925762843,0.03260127462393247,5.0,0.0,0.25602513360310564,0.6169575417712991,0.7741522191402266,0.8725300606173066,0.8907400519576915,0.8907400519576915,4.018900000000002,,0.9327731092436975,0.4879432787375836,0.5821600835107351,0.9461851242422312,-0.8024186822351957,0.5154063957361761,0.4903101588860408,-0.5553606267492481,91.22270000000003,0.0,0.0,10.30076712495354,0.0,25.683286491704038,13.08951281182515,69.50869922767116,0.0,0.0,3.9318256327243257,0.0,5.25227342804663,0.0,6.785587645007929,2.70805020110221,8.41604600941128,5.37989735354046,10.097449430486758,27.333333333333332,12.511436095014137,4.7459334845049135,0.0,0.0,0.0,0.0,6.049941053581928,0.0,39.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8939251070798693,45.67835199772652,5.316788604006331,0.0,0.0,18.07349133277236,12.841643245852019,0.0,35.22592571579147,42.10178344399039,5.022633313741326,5.573104530069267,0.0,25.87836150195654,29.209022155688626,29.831012335596213,172.51454326427643,,134.94303700120633,136.786940992108,136.11281392543822,134.88548668305742,145.53253778559437,136.7857641090559,137.02758553324412,143.7665752858146,29.831012335596213,172.51454326427643,,134.17451475177097,136.4246743626955,135.68942477379403,134.10458664245522,146.11611500903814,136.39152433471764,136.64696387038026,144.17047392345052,4.91858928673898,114.53079311012488,,90.0440708249377,91.12055780993683,90.78579393647327,90.01169033534366,95.56582496002798,91.09216195426919,91.20370341967347,94.64061728171441,1.3559551061634643,7.841570148376201,,6.133774409145743,6.217588226914,6.186946087519919,6.131158485593519,6.615115353890653,6.217534732229813,6.22852661514746,6.5348443311733915,2.487218297244982,86.2572716321382,,67.51391727829606,68.39488119421229,68.04984857347033,67.48575175626698,72.65684816340146,68.40508601346315,68.53015839261482,71.80755664835061,39.015686274509804,0.0,0.0,6.23304806696341,0.0,0.0,0.0,40.526219956300075,6.392695385767475,3.450798584866045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.754147160594346,490.06228631227884,56.238386678485185,135.52066670192383,170.04999171490462,191.65963218934138,195.65963218934138,195.65963218934138,968.0,122.34790408852287,16.51506742753671,64.57112970031959,24.92,24.92,0.8,8.730293982605826,5.643856189774724,4.210283953011022,4.620520735778728,,4.626625057776808,4.6211469256240845,4.621848214348359,4.626744282522683,4.610780290364396,4.621854344536375,4.621779919022341,4.613021876229541,0.1913765433186828,0.21002366980812398,,0.21030113898985492,0.21005213298291292,0.2100840097431072,0.2103065582964856,0.2095809222892907,0.21008428838801707,0.2100809054101064,0.20968281255588825,2.225987453055122,2.318964772478262,,2.320285033458473,2.3191002869479997,2.319252031856441,2.320310802395494,2.3168544634326373,2.3192533582054833,2.319237255120503,2.3173405072286313,237.2299999999998,149.48058485073653,126.2065050988143,,125.49084107596538,126.04649321588478,125.97745277684231,125.47576361634825,126.83552581580513,125.98744008422524,125.99595699671978,126.72646734348167,6.794572038669842,5.736659322673377,,5.704129139816608,5.72938605526749,5.726247853492833,5.703443800743102,5.765251173445687,5.726701822010238,5.727088954396354,5.760293970158258,5.79562387754238,5.626376855092336,,5.620690136798598,5.62510819303115,5.624560305087427,5.620569981691477,5.631348535175473,5.624639580475952,5.624707179473318,5.630488323613878,0.0,4.7459334845049135,4.277026486520534,8.117638259007308,0.0,10.593398902256375,6.191837110873156,2.1188954676520813,0.0,284.7037190012169,91.33939456887728,-100.85241477073939,-7.223760934776744,-2.4598149944082786,-5.602911931707744,165.28122075315696,182.49530017019922,8.554414344630263,4.451104882199982,7.93457826826953,918.0,40.0,1.1719517726818327,0.7086768648227432,0.0,0.0,0.2823601613688128,0.11555217655037088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25343678769327627,0.10807283536183117,0.3534762818275713,0.12916351488266353,14.940946820939052,13.287849316784683,10.826499840494925,8.36344841354469,9.603340462031897,6.477590776365506,8.362472550430832,4.9241383427779075,7.426163560270395,3.8065083964341904,6.61499724514735,2.953284154660369,4.667910284651443,1.830530618479342,3.6068026575605,1.2271964068348846,3.0110636376718425,1.547738746652643,5.457615303012831,2.4216921691540603,9.541139233269769,3.667182898776727,73.58807144892123,42.59759380964648,28.998214023361562,25.75833290327929,25.298322756036736,25.298322756036736,120.0,144.0,48.77906699999999,21.280932999999997,0.5121951219512195,163.03,5.277777777777778,4.805555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,12.0,12.0,41.0,0.0,1.0,44.0,12.0,1.0,7.0,37.0,13.0,25.0,31.0,0.0,0.0,0.0,19.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,2.0,1.0,2.0,22.0,3.0,0.0,2.0,0.0,0.0,4.0,0.0,0.0,0.0,1.0,1.0,2.0,3.4965075614664802,7.485868571202411,4.0943445622221,4.700480365792417,5.311973692995522,5.890953365511593,6.172743894323493,6.568779912142806,6.941310937510347,7.242976733701697 +31703,COc1cccc2c1C(=O)c1c(O)c3c(c(O)c1C2=O)C[C@@](O)(C(=O)CO)C[C@@H]3O[C@H]1C[C@H](N)[C@H](O)[C@H](C)O1,0,25.794117647058822,6.665954411764706,3.661764705882353,9.529411764705882,162.31270190839297,102.00648798529414,1.4188135035385439,6.696157352941175,7.081392973856208,8.169116176470588,219.99996552291898,26.5,6.641430555555555,4.513888888888889,8.347222222222221,146.53620261857156,101.0160877638889,1.7682738798611113,6.767583333333333,3.6705246913580245,8.067791499999998,271.19309336464966,24.0,6.555421875000001,4.234375,7.4765625,150.93858979890737,90.88817846093748,1.5813866109635861,6.659090624999999,3.5211588541666674,8.029752343750001,240.53396380755564,22.38121546961326,6.639651933701656,3.6685082872928176,6.9502762430939224,155.0744598927234,83.61702348618786,1.419313165200453,6.716430386740333,4.226289134438305,8.139256685082874,215.7904393797268,20.624413145539908,6.665338028169015,3.1690140845070425,6.370892018779343,158.39107026224826,75.94482283568074,1.275171093906451,6.720231455399061,4.5597287428273345,8.192400000000001,192.22562084504503,18.609865470852018,6.562363228699553,2.977578475336323,5.6591928251121075,161.49218381438772,67.87539380269058,1.1939205193116909,6.6040242152466355,4.506726457399103,8.127959856502242,176.32565349276652,19.237864077669904,6.511961165048545,3.1650485436893203,5.553398058252427,158.825881108795,70.51582813592232,1.258700566693524,6.569328640776697,4.173948220064725,8.06012427184466,185.2777039363337,19.441747572815533,6.609966019417476,3.0728155339805827,5.402912621359223,158.4291492735897,70.69024403398059,1.2657735576481892,6.664935436893203,4.41477885652643,8.148119747572816,186.81901177683966,18.13953488372093,6.529395348837208,2.8232558139534882,4.674418604651163,160.19963956092215,65.42670062790698,1.1956314881635721,6.578268837209305,4.372222222222222,8.086068706976745,173.90444626889672,8.104671280276818,0.20314366349480958,0.03658324474241494,0.8016868512110726,4.663494809688583,1.352883286622538,38.11820389684256,0.22336078837721002,0.18390369809688578,2.9379730752595155,0.13872707525951553,46.86802700951389,-0.2059784698193006,-0.03084217248173773,-0.015548320578289108,0.35088667820069214,0.9582372164552093,0.2050431470148986,-0.7571857303801492,0.030084690937884535,-0.026610703815839944,-0.46014537010337914,-0.0211487884948097,5.384778980866023,0.5835180579584772,-0.012757231969074367,-0.0016690529046377617,0.06550064878892732,0.36522761678200666,0.10725317887086844,2.899441650951553,0.023508249664590076,-0.009080616754973996,-0.16615121174848624,-0.011013444744809687,6.4048848628621915,0.14963486206962442,-0.010544256604981884,-0.0007918852027035749,-0.021218862910780175,0.17742166739949125,0.011700973599270817,0.7654808562448586,0.0011462068317224777,-0.007983589224607537,-0.013301226777949822,-0.008907552022596512,1.6529080695917417,-0.05247575417905375,0.00034082283493353145,0.00010975113746719546,-0.021032335883815003,0.2798909953376543,-0.0782729389786008,-0.2983629754120186,-0.017936883899507015,0.0007627062113164235,-0.03549447818688358,-0.0008551768888997483,-2.4184884630051187,0.42671885425233125,0.007711856156997245,0.0016765862312536671,0.028503072291960845,0.2969377938461061,0.11487335664891737,2.0347552552940784,0.0181428654787786,0.007118578347324187,0.2212188339406369,0.005671656737319018,3.554672159644971,0.3606342594147881,0.010632585791312535,-0.00028039172698794083,-0.041763950011757985,-0.04256391305808456,-0.028013125096284664,1.6575208266011858,-0.0021026217579231603,0.009971737368562515,-0.02900141620754527,0.0068884136039909895,0.4611694461038267,-0.7013303322471194,-0.004157519862599476,-0.00032367518479039825,-0.1011585816508214,-0.5142943528067995,-0.1140318532118537,-3.3659284987843097,-0.019190241795104916,-0.005045602722813783,-0.1307210684697446,-0.0010799347683676753,-5.070500238391369,-0.4002937152973364,0.0018887646857648846,0.0001283163982094829,-0.16105757624527237,-0.5759435100989779,-0.15788711239623263,-1.9675679204403715,-0.02323200084590746,0.0008768490987366523,-0.006797649662920322,0.0014219460811136944,-4.868943378018431,,,0.45042735042735044,1.108974358974359,0.46153846153846156,0.038461538461538464,0.6474358974358975,-0.1858974358974359,1.179028221247224,0.025293242182955786,0.03631888320859681,1.2050893291423912,0.21858103289876418,0.25392607267143635,2.384117550389615,0.47250710557020054,2.0348100428890232,1.4710882121754218,0.04513235845135104,0.5185894722622494,0.0,0.5637218307136004,7.987853834529422,1754.0,453.2849,249.0,648.0,11037.263729770722,6936.441183000002,96.47931824062098,455.3386999999999,481.5347222222222,555.4999,14959.99765555849,1908.0,478.183,325.0,601.0,10550.606588537154,7273.158319000001,127.31571935000001,487.26599999999996,264.27777777777777,580.8809879999999,19525.902722254774,3072.0,839.0940000000002,542.0,957.0,19320.139494260144,11633.686842999998,202.41748620333902,852.3635999999999,450.7083333333334,1027.8083000000001,30788.34736736712,4051.0,1201.7769999999998,664.0,1258.0,28068.477240582935,15134.681251000002,256.895682901282,1215.6739000000002,764.9583333333333,1473.2054600000001,39058.06952773055,4393.0,1419.717,675.0,1357.0,33737.29796585888,16176.247263999996,271.61144300207405,1431.4093,971.2222222222223,1744.9812000000002,40944.05723999459,4150.0,1463.4070000000004,664.0,1262.0,36012.75699060846,15136.212817999998,266.24427580650706,1472.6973999999998,1005.0,1812.5350480000002,39320.620728886934,3963.0,1341.4640000000002,652.0,1144.0,32718.131508411767,14526.260595999996,259.29231673886596,1353.2816999999995,859.8333333333333,1660.3856,38167.20701088474,4005.0,1361.653,633.0,1113.0,32636.40475035948,14562.190271000003,260.749352875527,1372.9767,909.4444444444446,1678.5126679999998,38484.71642602897,3900.0,1403.8199999999997,607.0,1005.0,34442.92250559826,14066.740635000002,257.060769955168,1414.3278000000005,940.0277777777777,1738.504772,37389.45594781279,551.1176470588236,13.813769117647052,2.487660642484216,54.51470588235294,317.11764705882365,91.99606349033259,2592.037864985294,15.188533609650282,12.505451470588234,199.78216911764704,9.433441117647055,3187.0258366469443,-14.830449826989643,-2.2206364186851166,-1.1194790816368159,25.263840830449833,68.99307958477507,14.763106585072698,-54.517372587370744,2.1660977475276866,-1.9159706747404759,-33.1304666474433,-1.5227127716262983,387.70408662235366,74.69031141868508,-1.632925692041519,-0.2136387717936335,8.384083044982697,46.74913494809685,13.72840689547116,371.1285313217988,3.0090559570675297,-1.1623189446366715,-21.26735510380624,-1.40972092733564,819.8252624463605,27.08391003460202,-1.908510445501721,-0.14333122168934706,-3.840614186851212,32.11332179930792,2.117876221468018,138.5520349803194,0.20746343654176844,-1.445029649653964,-2.407522046808918,-1.6122669160899687,299.17636059610527,-11.177335640138448,0.0725952638408422,0.023376992280512633,-4.4798875432525955,59.616782006920374,-16.67213600244197,-63.55131376275996,-3.8205562705949943,0.1624564230103982,-7.560323853806203,-0.18215267733564638,-515.1380426200902,95.15830449826987,1.7197439230103855,0.37387872956956775,6.356185121107268,66.21712802768165,25.616758532708573,453.7504219305795,4.045859001767628,1.5874429714532938,49.33179996876203,1.264779452422141,792.6918916008285,74.29065743944635,2.190312673010382,-0.057760695759515805,-8.603373702422145,-8.768166089965419,-5.770703769834641,341.44929027984426,-0.43314008213217103,2.054177897923878,-5.974291738754326,1.4190132024221438,95.00090589738831,-144.4740484429066,-0.8564490916954921,-0.06667708806682204,-20.838667820069208,-105.94463667820068,-23.490561761641864,-693.3812707495678,-3.953189809791613,-1.0393941608996393,-26.928540104767386,-0.22246656228374112,-1044.523049108622,-86.06314878892734,0.4060844074394502,0.027588025615038824,-34.62737889273356,-123.82785467128026,-33.945729165190016,-423.0271028946799,-4.994880181870104,0.18852255622838024,-1.4614946775278692,0.3057184074394443,-1046.8228262739626,0.7278467278997208,0.543849673531687,0.42855295621483286,0.28864655198588396,0.26404895002420076,0.15164079194804028,0.1655727234358389,0.07964571859837571,0.0999654995067042,0.04166854038187092,0.05961755468305516,0.021435470123376266,0.036149905268114284,0.011284729567755208,0.021875619241067488,0.005778444526482974,8.028246509193567,5.668289728931745,3.5498872737346736,2.1662672689967626,0.45552479699737364,-0.5282409125908801,4.0240350050363975,0.9771727576983384,6.025410546566299,0.9937247848020622,14.53782724776338,10.92893885872441,16.01730632867622,11.68048593300418,2.020489350277153,0.7518956926508678,3.4953142339613086,2.2158315752152054,7.01046571233248,1.1579630805628724,3.7083322497218227,2.4119084391326537,20.924359361691987,14.701788826267832,0.24733910928116898,0.639866624091654,0.851124059414603,0.8963788297664949,0.9102963978599826,0.9149355872244788,1.4853559533774496,1376.5187409654486,0.0,0.0,3.0,0.0,9.0,7.0,6.0,1.0,0.0,4.51936998856064,2.0308044226570923,0.6914639707154953,0.4045555147695108,0.31632022065186494,0.2869084559459818,246.00229081212214,3458.5103103683437,115.45497701406745,50.86044574071093,116.22230223833336,,14.0,919.0,95.6690042321333,39.91624852641899,34.4241394229979,0.0,0.0,25.30889874666236,6.923737199690624,0.0,0.0,19.944256338562333,17.566666666666666,43.25,18.0,1.5,25.25,0.0,0.04957264957264958,-7.25,0.2161944594351503,0.053897058823529576,-0.16229740061162073,0.09533630620587186,0.22783763837638366,0.0,0.6593137254901947,0.9264957264957263,0.4431192660550444,0.6054166666666652,0.8311594202898545,45.98210062864174,0.9864364451352756,1.4164364451352756,46.998483836553255,8.524660283051803,9.903116834186017,92.980584465195,18.42777711723782,0.4861623616236163,0.23149905123339656,0.028462998102466795,0.4838709677419355,0.4444444444444444,0.3321981847727541,-1.567378295908788,-0.09522755421725183,-0.023049680822188057,-0.09796114349429925,0.667801815227246,3.150824174044443,0.062279553997252754,0.046335649618300626,0.06059277257777776,-3.008689530206607,0.7800814743658163,0.8847869294048957,1.3165000009783259,0.8108158738722536,0.5458016447165026,1.0649676141368225,0.7811405485493419,1.0256371365367887,0.8603402904168734,0.8727648117562684,0.9188217012827024,0.8873437053272557,0.7593447306276015,0.8680534147487967,0.8717991753700058,1.219424399784192,0.8013710640419214,1.0495941853663748,0.7600553506008928,1.0055002547026477,0.8444535626492069,0.7292538783688525,0.9087264643772093,0.8697578621664617,0.882566168314572,0.9973177893901738,0.9516027472682398,1.1916800677231518,0.9157327897631715,1.0682852582134144,0.8819369286846924,1.0435583935468076,0.976927005666421,0.893400249257573,1.0307603913882122,0.9388189766799294,0.9665761674326028,1.0425200293465224,1.0423785130906003,1.0616939656100437,0.9393442208932812,1.0784626883853845,0.9662847236322866,1.0836108465049756,1.0290147214786263,1.0788337117236013,1.0690213523838694,1.0099742495789374,0.9529432768212313,1.0255698233196138,1.0135635113525043,0.9699937459248712,0.9881749436238603,0.8833277764228024,0.9501588948440435,0.8952793348718607,1.0204270634361974,0.9396692003359624,1.0320117504635204,0.8942598333766877,0.9173899774820284,0.9224472299869229,1.0401902803076375,1.1484831897669328,1.0004939011981488,1.0203876328377792,0.9187015767558342,1.0207381838666856,0.9174179366830355,1.0230087668309775,0.9352027543799767,0.9781861829184278,1.0448626279394864,1.0410165930532886,1.100165491813128,1.1902462148493667,1.09690233452734,1.098867496154699,1.0456224609165325,1.0918586385382782,1.0392488623188352,1.1256623739703249,1.0445765624923369,1.0747926241358479,1.0296792738050025,1.0010587817089824,1.0815160995921311,1.2604663709763428,1.1006112685656106,1.1077801143361834,1.0311948347830362,1.0915387619466366,1.0020612345749587,1.0676769154103554,1.0061530451725726,1.0786959333705375,9.5,0.3466993163962861,6.222222222222223,5.0,4.786666666666668,2.687499999999999,1.7665306122448978,1.4062499999999998,1.0055429579239101,0.6631250000000002,9583.054812684659,10583.738836714876,3826.914846815696,3504.871756895981,15.055123688759286,0.49179301968498973,7.651118948133336,0.9677022133386549,0.0,0.4444444444444444,1.5680928526896996,4.056658418593247,5.395998870534844,5.682907326480828,5.771142620598474,5.800554385304357,0.22093023255813954,0.00806277479991363,0.0928689883913765,0.06024096385542169,0.056984126984126984,0.034455128205128215,0.023243823845327607,0.018750000000000003,0.014162576872167747,0.011433189655172416,0.5411318051667743,30.457544618712816,11.588772555134774,5.127863390254061,222.08139702756714,0.0,4.610174789661353,233.495039621242,,191.48004437992347,189.01351537347153,196.3951845748666,191.529581674164,274.97354131228286,190.85811462673308,191.58606293569602,233.2811918362436,-0.025414783980265924,-0.15182443769665385,-0.4250120700819697,0.43768545994065294,0.20547620519796356,0.1515601153790488,-0.019864150273955303,0.13469101338896483,-0.1446991229171512,-0.15662000920914967,-0.1524488889803728,0.11489237598529482,0.07199774522360973,-0.06279906421693689,-0.045623424504569625,0.08170353385486916,0.07831629104062318,0.0792774808672706,0.0760644876867276,0.10524788095253998,-0.049377020956860064,-0.05655300695150512,-0.07938929530667992,0.13665787257402673,0.01846279224596924,-0.05190541719875646,-0.02164611718504718,-0.026467769651860675,0.03804478714780408,0.008648915774901914,0.020081766137681676,0.005131638547885013,-0.0434117927329637,-0.004527348085644013,-0.06420918199229123,0.03526728507808133,-0.006474754171308157,0.0016777428794486598,0.003000038357449169,-0.026235101463922463,0.060017434726456736,-0.05785638698664727,-0.007827309393156713,-0.08030453344037872,0.004147313073142269,-0.01208128096400213,-0.0061644555491419135,-0.05160209672393895,0.05265097614640781,0.03796257301027894,0.04582934737086943,0.03555387274832127,0.06367280461623047,0.08491002718770942,0.05338014510863727,0.08122672565132186,0.03870818488692877,0.07529641296018219,0.04088356023299057,0.07584428845113103,0.04449708654963123,0.05234022862634946,-0.0076644849018231605,-0.05209509167908523,-0.00912704201356812,-0.02070623931368034,0.04348370744557781,-0.009413567050866012,0.05422260385057138,-0.00987123280732705,0.049654428244125345,0.009839745249148475,-0.08653408731750131,-0.02046590964775873,-0.008847634677279633,-0.12618216389355222,-0.1102808888600742,-0.08428801977185577,-0.08830238979500078,-0.08591589389761904,-0.027436113438869585,-0.04449362370626824,-0.007784599843595426,-0.10818676530510006,-0.04939049363685781,0.009297679549887332,0.0035075182399201383,-0.20089836324740745,-0.12350040765617108,-0.11670416358708702,-0.05161754015916135,-0.10401109798499383,0.004767979697040691,-0.002313720884702075,0.01024995357577944,-0.10388624588421587,4.007877741131215,25.19206083488012,35.786183518824636,14.939148189993471,39.50411310266924,46.107507858556865,47.04394687626806,48.33832922920924,48.36797628803277,79.3575916726719,57.37244027484145,1.7601619796026904,20.224989418227725,0.0,21.985151397830414,11267.347635602262,7901.1581432621115,4140.567500635367,568.0,67.0,98.0,138.0,192.0,243.0,307.0,387.0,485.0,543.1740607480007,43.0,5.3981627015177525,6.311734809152915,7.256297239690681,8.189522110748094,9.140454244512016,10.082177523096034,11.03735436608764,11.984384284912215,12.942621689883977,0.7009803921568626,1.0168823529411763,1.1267012489480224,0.6654745404947426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6547111394857343,1.0007497116493655,1.0319716378904076,0.6393714245519094,3.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,1.0,5.0,4.0,0.0,3.0,0.0,5.0,0.0,1.0,0.0,0.0,45.47689331276586,29.456468275348325,17.85651662206509,5.783244946364939,0.0,14.383611552215466,0.0,0.0,0.0,12.13273413692322,12.990104268152233,41.994660173016975,42.112051179613424,243.50605011946564,-1148.910847122218,-69.80316766584002,-16.895747751797323,-71.80692794513863,489.5083409315878,2309.5994632461257,45.651809348227424,33.964697988913606,44.41537429319473,0.5,0.6320429701894281,0.10742395179778191,121.74978045738328,0.06213134420586006,127.34899313207725,0.367957029810572,7.0,0.11627906976744186,0.2575938274421762,0.6663955944181216,0.8864117960556666,0.9335428362653599,0.9480374289090701,0.952868959790307,0.0012999999999993017,,2.892857142857143,3.328524895300139,2.1297256301189615,2.8844215485678184,-12.42341872591249,3.007114443084455,2.8737057955204044,-4.708263886881712,131.75439999999995,54.12683738781914,0.0,0.0,5.733667477162185,62.43101960118041,13.716679505790452,51.579810155566804,0.0,17.248535499851716,4.465908118654584,0.0,5.872117789475416,0.0,7.490529402060711,0.0,9.212238569259263,0.0,10.991156851161252,47.66666666666666,4.36342757100796,0.0,0.0,0.0,0.0,0.0,-2.6548202502380427,0.0,69.148,0.0,39.73908207424436,0.0,0.0,0.0,0.0,0.0,-2.5085012273580993,76.61568492846553,10.470530430962235,0.0,17.248535499851716,86.73990246405225,20.68908471459793,0.0,68.83913015161656,18.19910120538483,0.0,0.0,0.0,45.2522687536425,44.52035748502993,49.7823439037901,466.99007924248406,,382.8117371114953,377.8563371625687,392.68115245075273,382.91124429455533,555.077981638201,381.56201825638493,383.02475634341664,468.2525296831627,49.7823439037901,466.99007924248417,,380.13861852124126,374.79399781651847,390.69327601279866,380.2456759769674,562.3705013504782,378.78601527810827,380.3688799097034,471.27064755936897,5.249452411697408,324.99624654125984,,265.63934068706646,262.3232353160755,272.44842086614403,265.70657369892695,389.60676999296163,264.80483628631987,265.78211639281045,325.6783173898733,1.2764703565074385,11.97410459596113,,9.815685566961418,9.688624029809453,10.068747498737249,9.818237033193727,14.23276875995387,9.78364149375346,9.821147598549144,12.006475120081095,2.624726205848704,233.495039621242,,191.48004437992347,189.01351537347153,196.3951845748666,191.529581674164,274.97354131228286,190.85811462673308,191.58606293569602,233.2811918362436,68.05098039215686,0.0,2.9008342117511594,0.0,0.0,6.003095557169348,53.69213165007618,70.17407137654772,-2.043298941296604,0.0,16.992219914907572,0.0,-4.826766751033268,0.0,-2.2407371425638924,0.0,0.0,43.47725686952984,463.2965929115027,106.63031398289957,275.8527724643408,366.92792319636936,386.43769820069633,392.4376982006962,394.4376982006963,2567.0,164.3427089696013,269.7177981395507,77.03195073061123,206.07,206.07,1.0,9.504162539777164,6.426264754702098,4.977026380792846,6.14427116955261,,6.13782711046415,6.138909975848551,6.13620833460824,6.137807158937169,6.101249949846178,6.138139483263925,6.137776008071403,6.119416895438765,0.1276160610459704,0.15754541460391308,,0.1573801823195936,0.1574079480986808,0.1573386752463651,0.1573796707419787,0.15644230640631226,0.15738819187856218,0.15737887200183084,0.1569081255240709,2.9658091535390283,3.176496683676392,,3.1754473418566396,3.1756237511711984,3.175183569461238,3.1754440912666424,3.1694702131345673,3.1754982336210404,3.175439016010283,3.172443366597471,372.84000000000134,636.960688735551,293.1928330516247,,293.2413632122897,292.95888804871583,293.6870108611352,293.246662835984,301.07483545130424,293.1647183926263,293.25403271807477,297.5279862781904,16.332325352193614,7.517764950041658,,7.519009313135633,7.511766360223483,7.5304361759265435,7.519145200922667,7.719867575674468,7.5170440613493925,7.519334172258327,7.628922725081805,7.817684493672427,7.04180707895993,,7.041972588273967,7.041008838480853,7.043491164489303,7.0419906606759906,7.068335409744767,7.041711183003782,7.042015792383922,7.056484845220166,16.992219914907572,39.73908207424436,53.69213165007618,2.373741684889566,-3.774704747880252,3.63515611968848,-5.122799847545572,0.5596546492817411,1.3221851690045994,475.92689178761964,178.49343904556738,-842.1681849752425,-51.1667264400103,-12.384826249635918,-52.63551156095266,358.81665844237926,1692.9696441231986,33.46343322976971,24.896612413576445,32.55710854083075,4392.0,83.0,3.6944324224192266,1.6697095557032773,0.14433756729740643,0.05590169943749474,1.443807744383566,0.3636053980596706,0.10206207261596575,0.016137430609197572,0.0,0.0,0.0,0.0,0.0,0.0,0.24578353380607562,0.12346566799556523,0.8269233539906417,0.29179150791694597,28.386022388089113,21.210137267735792,18.427777117237813,12.411801735393011,17.69127965162145,10.159933060518698,16.226126896712213,7.80528042264082,13.79523893192518,5.750258572698187,11.44657049914659,4.115610263688243,8.784426980151771,2.7421892849645153,6.715815107007719,1.773982469630273,9.850050681266465,3.5619545265125305,16.743045198667406,5.073891706755671,28.40297042595831,7.033324613037861,138.95919454607937,52.64909537715869,32.204801271679024,29.62400765867116,26.97917876139153,26.85895926606064,220.0,275.0,74.34899699999998,36.33500300000002,0.36764705882352944,367.12,15.45138888888889,8.416666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,12.0,12.0,68.0,0.0,1.0,72.0,12.0,3.0,9.0,63.0,15.0,43.0,57.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,12.0,6.0,1.0,39.0,12.0,0.0,1.0,11.0,0.0,5.0,5.0,0.0,0.0,0.0,0.0,2.0,3.970291913552122,8.414630840574542,4.584967478670572,5.204006687076795,5.784594117392615,6.3707567809121235,6.7737952230660605,7.236519312160031,7.649930690609437,8.091235155309176 +3475,Cc1ccc(S(=O)(=O)NC(=O)NN2CC3CCCC3C2)cc1,0,26.88372093023256,6.1946116279069745,3.2325581395348837,6.708010335917313,164.7113927185309,106.27057927906979,1.5148833256239298,6.257197674418603,5.2963700673110665,7.758125325581394,208.86986620033133,30.244444444444444,6.334526666666666,3.9555555555555557,4.8962962962962955,147.740996868171,115.53946186666674,1.8722405886666675,6.493226666666668,2.499965706447188,7.818948444444438,260.3501671834595,22.5,6.301939285714287,3.4761904761904763,4.865079365079365,155.6787771418205,83.67944014285715,1.5707607058189526,6.403923809523808,3.4969503233392136,7.796924261904759,212.8101965033515,16.948275862068964,6.042919827586206,2.6810344827586206,2.9022988505747125,160.26064775173097,59.90592953448275,1.2858498566045775,6.130755172413791,2.6888968710089403,7.637979206896553,163.8889322967515,14.285714285714286,6.030342857142856,2.26890756302521,3.19327731092437,168.79671807770754,50.190629546218474,1.0248557479227645,6.0741941176470595,3.535895839817408,7.670546521008404,130.2904528296647,16.302325581395348,6.297476744186046,2.383720930232558,3.6666666666666665,172.83272788111248,58.60195975581396,1.052699641113628,6.320397674418606,3.3667097329888023,7.921902906976746,140.29109633468096,22.225806451612904,6.479435483870968,3.0,3.838709677419355,161.59554279994674,80.28050956451614,1.370620393749838,6.564580645161291,3.8023197929111916,8.095832387096774,184.91660856251625,17.985507246376812,6.77855072463768,2.5652173913043477,3.140096618357488,168.82491776166015,62.14039386956525,1.1904341921607826,6.802108695652173,4.178475577026301,8.387451710144926,165.04949892733268,17.383333333333333,6.174133333333332,2.75,2.588888888888889,158.62351924101932,60.77822188333333,1.3689808991606824,6.266366666666666,3.1213734567901237,7.792295166666667,178.96775864271686,10.883720930232558,0.13499967550027034,0.014796123416307766,0.6576527852893457,3.852172345411934,1.5325956014096678,49.70233973282857,0.286464068850318,0.12639134667387772,2.2953584631443538,0.0835503504597079,50.502820186941655,2.688888888888889,-0.0009784351901928683,-0.010042605109998897,0.11185625863830295,0.2538856505685429,-0.04954900204256381,11.647208409807106,-0.013005640892748974,0.004449273481161011,-0.3490659329358982,0.010242159617811402,2.0256470289128914,0.5952380952380952,0.043154920291534705,0.003981540935991733,-0.0809639702284375,0.5052166050002727,0.12439285158691225,2.65393816113601,0.006382883598031673,0.03600106750109456,0.6245712654542669,0.02792124643951683,-1.2437587310204012,-0.46551724137931033,-0.0018868246582495678,-0.003068021269746733,-0.11134163853714032,-0.010908868623196856,-0.28760962815147845,-2.5236375481854108,-0.054093389932564996,-0.0019126578206299693,-0.03395791939766036,0.0011887561962663903,-9.929975016623938,1.3109243697478992,0.03211525512314172,0.0014744971648095893,0.05682835600438118,0.9178100661573445,-0.18650021969469943,6.1281175296299155,-0.010201441119352216,0.031174453599720008,0.6126778492847239,0.018528639182660622,2.3669398839895806,1.6511627906976745,-0.013736479177933985,-0.0005007802872163921,0.0327203893996755,0.2737215311579834,0.2640225870211768,7.8216226949702525,0.07679721838689724,-0.009644023796646844,-0.3294398605333696,-0.011566484315846427,11.764907275982749,-2.4193548387096775,-0.014063779026151831,0.002614607130366938,-0.0672551858894956,-0.2559399539807431,-0.41244952781559996,-10.23144069344371,-0.07225568378098304,-0.010325892810411914,-0.09111356833011489,-0.020003117526474684,-2.6605107324406423,-3.9855072463768115,-0.09465953394314182,-0.0024960197117609518,0.0005878618289557216,-2.1026310953651226,0.30825909608756624,-18.10871694280496,0.04021910505963109,-0.09001308580431251,-1.2595236364753197,-0.057760307655528705,-2.650305189950153,-2.816666666666667,-0.02598223363980527,0.0010283252608093087,-0.0774202271498107,-0.9300362558339841,-0.012028397638426721,-12.551441367324681,-0.03340261760728545,-0.025565028844420388,-0.32925521429544724,-0.018981343095366865,-4.357958966592455,,,0.4787878787878789,1.1022727272727273,0.4772727272727273,0.0,0.625,-0.14772727272727273,0.8864619072094747,0.02166924497464566,0.033396517701918385,0.7714844962925884,0.19043459845767546,0.28399677303918325,1.657946403502063,0.4744313714968587,2.0231831113892373,1.4005249198569967,0.28323266973515665,0.23825912447822803,0.0,0.622658191532241,7.5146595937674565,1156.0,266.3682999999999,139.0,288.44444444444446,7082.589886896829,4569.634909000001,65.13998300182898,269.05949999999996,227.74391289437585,333.5993889999999,8981.404246614247,1361.0,285.0537,178.0,220.33333333333331,6648.344859067695,5199.275784000003,84.25082649000004,292.19520000000006,112.49845679012346,351.85267999999974,11715.757523255677,1890.0,529.3629000000001,292.0,408.66666666666663,13077.017279912921,7029.072972000001,131.943899288792,537.9295999999998,293.74382716049394,654.9416379999998,17876.056506281526,1966.0,700.9786999999999,311.0,336.66666666666663,18590.23513920079,6949.087825999999,149.15858336613098,711.1675999999998,311.91203703703707,886.0055880000001,19011.116146423174,1700.0,717.6107999999999,270.0,380.0,20086.809451247198,5972.684915999998,121.95783400280897,722.8291,420.77160493827154,912.7950360000001,15504.563886730099,1402.0,541.583,205.0,315.3333333333333,14863.614597775673,5039.768539000001,90.53216913577201,543.5542000000002,289.537037037037,681.2836500000002,12065.034284782561,1378.0,401.725,186.0,238.0,10018.923653596697,4977.391593,84.97846441248996,407.004,235.74382716049388,501.94160800000003,11464.829730876007,1241.0,467.7199999999999,177.0,216.66666666666669,11648.91932555455,4287.6871770000025,82.139959259094,469.3454999999999,288.3148148148148,578.734168,11388.415425985955,1043.0,370.4479999999999,165.0,155.33333333333334,9517.411154461159,3646.6933129999998,82.13885394964095,375.98199999999997,187.28240740740742,467.53771000000006,10738.065518563011,468.0,5.804986046511624,0.6362333069012339,28.279069767441865,165.64341085271317,65.90161086061572,2137.2006085116286,12.317954960563675,5.434827906976742,98.7004139152072,3.59266506976744,2171.621268038491,121.0,-0.04402958355867907,-0.45191722994995037,5.033531638723633,11.42485427558443,-2.2297050919153714,524.1243784413198,-0.5852538401737039,0.20021730665224552,-15.707966982115419,0.46089718280151304,91.15411630108011,50.0,3.625013304488915,0.3344494386233056,-6.80097349918875,42.4381948200229,10.44899953330063,222.93080553542484,0.5361622222346605,3.024089670091943,52.46398629815842,2.3453847009194138,-104.47573340571371,-54.0,-0.21887166035694985,-0.355890467290621,-12.915630070308278,-1.2654287602908352,-33.3627168655715,-292.74195558950765,-6.2748332321775395,-0.22186830719307643,-3.9391186501286017,0.13789571876690127,-1151.8771019283768,156.0,3.8217153596538647,0.17546516261234113,6.7625743645213605,109.219397872724,-22.19352614366923,729.24598602596,-1.2139714932029138,3.709759978366681,72.90866406488215,2.204908062736614,281.6658461947601,142.0,-1.1813372093023227,-0.04306710470060972,2.8139534883720927,23.540051679586572,22.705942483821207,672.6595517674417,6.604560781273162,-0.8293860465116285,-28.331828005869784,-0.9947176511627928,1011.7820257345164,-150.0,-0.8719542996214135,0.16210564208275013,-4.169821525148727,-15.86827714680607,-25.571870724567198,-634.3493229935101,-4.4798523944209485,-0.6402053542455387,-5.649041236467123,-1.2401932866414305,-164.95166541131982,-275.0,-6.531507842076786,-0.17222536011150566,0.04056246619794479,-145.08154558019345,21.26987763004207,-1249.5014690535422,2.7751182491145454,-6.210902920497563,-86.90713091679706,-3.9854612282314807,-182.87105810656055,-169.0,-1.5589340183883162,0.06169951564855852,-4.645213628988642,-55.80217535003904,-0.7217038583056032,-753.0864820394809,-2.0041570564371267,-1.5339017306652232,-19.755312857726835,-1.138880585722012,-261.4775379955473,0.7155580094631719,0.6089244936069833,0.43489542387212055,0.37802604361007835,0.293681939738532,0.2256550594686382,0.18185936128042215,0.13700429147428106,0.12068932496010919,0.0780562400515965,0.07536627448666859,0.04651680438243049,0.05207232427642689,0.0281234974651593,0.03162332168265305,0.01577297556461758,16.013122457801376,5.693497269068172,3.5810135417581006,2.184183908206492,0.47347863207230745,-0.35886640361270644,4.043812933427954,0.9715084715981063,6.022513164008525,0.6442337699560832,14.638832433547142,10.319769948388354,32.06654384432143,11.704563326535862,2.9545711558006795,0.7508934663800688,3.5370344619668384,2.237517614436034,7.014574468274734,0.29894080608983387,3.7682991284228082,2.436233382443032,24.441830556640596,14.701069378205462,0.29919355985133606,0.5984525883767513,0.766928096636391,0.8305150846029403,0.8551138894013891,0.8715130926003549,1.4503615413897926,645.1151747425323,0.0,0.0,3.0,0.0,5.0,3.0,1.0,2.0,0.0,3.729111623646714,2.0315871264253778,1.0759223838718697,0.7152299419107786,0.5756950581898481,0.48267180237589447,164.35781937710638,1025.4089389928388,46.08495532417906,23.846719511461366,46.77898916759732,,13.0,476.0,16.054405665745655,13.212334168400758,4.895483475517775,11.835812092322787,18.652964303522147,31.395199005701247,12.13273413692322,11.932649723645156,10.147886261562473,0.0,10.533333333333335,24.25,10.5,0.0,13.75,0.0,0.021212121212121137,-3.25,0.15031257814453602,0.03578547698149015,-0.11452710116304587,0.04760101010101003,0.16443478260869537,0.0,0.5922480620155041,0.871212121212121,0.44193548387096804,0.5564625850340139,0.823611111111111,19.502161958608443,0.4767233894422045,0.7347233894422045,16.972658918436945,4.18956116606886,6.247929006862031,36.47482087704539,10.437490172930891,0.5495652173913046,0.1424050632911392,0.0791139240506329,0.2753164556962025,0.5333333333333333,0.35155201942991354,-0.6511793428763019,-0.04641604528086458,-0.015143705648286092,-0.03830466722801776,0.6484479805700866,1.2011193409209702,0.036831816956104976,0.027933007928394656,0.04619689772772962,-2.9480829248638525,0.8615384615384616,0.6568801319154665,1.7653408572382632,1.1221491228070173,0.6990026623403636,1.370334222792771,0.8546004563754841,1.3300135774137058,0.6167665393226117,0.6673513605162528,0.5033403610457876,1.051633266433363,0.8536324786324787,0.503528342114878,0.6997255504183721,1.3702713815789471,0.7915262698115563,1.0903352140156752,0.8567140162032373,1.0046425960576784,0.5348559420379155,0.42345932268476966,0.4598550012085995,1.0363941682067148,1.0192860300618922,0.8533246921430927,1.1397922754694663,1.1523083030852992,0.8757907409080933,1.2248647308659006,1.0255189340723652,1.206835362194895,0.8621544761116575,0.7755031123573835,0.8025938757896156,1.1953199678924262,0.8725490196078431,0.8315691063072154,1.0094454110673423,0.7800406346749225,0.7886063822758604,1.0194842214899853,0.8711026719321102,0.942078589219749,0.8228627885931622,0.7499098796121663,0.8314604079971322,0.8892479040315764,0.837432915921288,1.5100324740880338,1.5506776319182,0.9152960526315788,1.1803163609135157,0.7393365435638636,0.8348675656080684,0.5557725064760209,1.4518724197424366,1.5414248902953918,1.5542763913590925,0.6317382339117562,1.8339536807278742,1.4625583209219322,1.8371752756728439,1.4851973684210524,1.2452906667793868,1.421130481279345,1.7601103472364201,1.6779102902614702,1.400270767615652,1.5533634451192913,1.663214560444819,1.0409735773413185,1.5145856558900037,2.649635998564186,1.7099462885549046,1.0654676773455376,2.066017721203045,0.7786063393514849,1.4993499233342107,0.7985764357724652,2.568401792669709,2.9055156863785094,2.7878667462061006,0.882505584756387,1.4471153846153846,1.251767005429174,1.0741758743352394,1.212911184210526,1.268957475352552,1.058823632990023,1.419993522561028,1.3030882998188384,1.249008269661306,1.3717013976214558,1.341330587855755,1.1021610736278653,6.5,0.02938271604938271,2.88888888888889,2.0416666666666665,0.8272222222222224,0.9655555555555555,0.3117913832199547,0.3898100907029478,0.17361111111111108,0.13625771604938272,4593.245437331026,5166.969336204297,2462.8012257040036,2249.309523167838,14.39805072673769,0.4857049072134239,7.40484683445339,0.9444089862529241,1.0,0.5333333333333333,1.697153131055384,3.39467762827672,4.350342370830228,4.711034812791319,4.85056969651225,4.943592952326203,0.2708333333333333,0.0029382716049382706,0.08253968253968257,0.06805555555555556,0.03181623931623932,0.04388888888888889,0.013556147096519769,0.020516320563313043,0.00964506172839506,0.009732694003527336,0.5535221946303931,16.84375,6.857142857142857,4.11032990805841,130.45621189212125,1.0,4.031562971706628,108.2731508703743,,77.02604669555112,87.22162552880127,86.39154925271731,77.03866457251547,124.0715344118822,88.0094451522421,88.0752446730524,116.46828678159919,0.24705603038936375,-0.007247685496776687,-0.6787321805473919,0.1700840643274853,0.06590713701346441,-0.03233012152520148,0.23433923779878083,-0.04540060100711837,0.03520235837538217,-0.15207469270735238,0.12258667451970384,0.04010958242361,0.05469067969067969,0.31966684461732864,0.2690935202394581,-0.12311051065162905,0.13115109078699516,0.08116482356630596,0.05339664441155221,0.02228162025223076,0.28483807197645106,0.2721018418180673,0.3341846717086104,-0.024627510432417316,-0.04277188328912467,-0.01397651254536378,-0.20735304670176433,-0.16930155399274047,-0.0028318744970457204,-0.18766178624481086,-0.05077502511453277,-0.18883132586107906,-0.015132822546508027,-0.01479416829349707,0.014228021662693888,-0.19662218822368854,0.12044817927170869,0.2378913505097826,0.09965428939207487,0.08641088014153026,0.2382577890759449,-0.121689126292127,0.12329635913663581,-0.03561159052265864,0.24665022108007234,0.26692033471993387,0.22176614557225638,0.04686747938487587,0.1517094017094017,-0.10175194219564238,-0.03384537105607335,0.049753289473684195,0.0710564083364533,0.17227152862655432,0.15736930569093596,0.26808674014549794,-0.07630288030343496,-0.14352436267496024,-0.13843729262900406,0.2329554514467444,-0.22229114971050454,-0.10417639134342711,0.17670892954874992,-0.10226549235993203,-0.06644042141197969,-0.26911830324727054,-0.20585430682825193,-0.2522329731298265,-0.08169778297445775,-0.03969470119508075,-0.23941392724763222,-0.05268043888623396,-0.36618976836368144,-0.7011834183479372,-0.16869416681195878,0.0008938787185354681,-0.545829964713138,0.20113531306238402,-0.36434334963197096,0.14039842839991987,-0.7121775989662449,-0.5487263347747132,-0.6913233438007369,-0.052478360221068075,-0.2587962962962963,-0.1924614525444044,0.06949964067452458,-0.11772203947368418,-0.24143163193144468,-0.007848383244322969,-0.25253220340921717,-0.11660316681719284,-0.20226882232993973,-0.1434439193625595,-0.227184482062952,-0.08629139819243754,7.976617192902665,12.168310535969697,2.174347822177709,18.963140015886893,33.78043150795714,37.49574220069072,38.37108762404796,39.02350622869912,39.11727367055959,44.510028450563226,30.811548236853927,6.231118734173446,5.241700738521017,0.0,13.698480213709303,5181.970326208936,4895.642042909036,759.9251759750032,54.0,35.0,43.0,55.0,57.0,62.0,60.0,52.0,56.0,323.1303625320006,24.0,4.77912349311153,5.616771097666572,6.508769136971682,7.362010551259734,8.255048902752295,9.113499020526627,10.00654040759221,10.867558414857822,11.760261991881912,0.6666666666666667,0.9846511627906979,1.1344409697044298,0.6261914950055472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6636771062526112,0.9709986320109438,1.008850082149088,0.6115008070662079,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,5.0,2.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.023291153407584,5.425791397110385,22.94334155680738,0.0,0.0,24.117007251546227,43.73392667478865,13.08951281182515,4.895483475517775,194.61471651289654,-360.4845832444175,-25.695330974442385,-8.383362401032965,-21.204975484965736,358.9725358900029,664.9243557484212,20.389624349736675,15.4633571104284,25.574013682631584,0.46153846153846156,0.8092445187712548,0.1456367850542046,33.78467951904408,0.18501556750626214,31.66546100941476,0.19075548122874517,7.0,0.125,0.3127663701968699,0.6256011790311341,0.8017195193176788,0.8681911085722457,0.8939058294767164,0.9110489767463635,1.6298199999999994,,1.8035714285714286,1.389555950537421,1.1082508187380549,1.8006559751755822,-4.377290316528427,1.2713433292533662,1.237629484152691,-1.9973784437328954,82.43620000000003,13.212334168400758,0.0,15.156798785517005,11.835812092322787,31.081685543986428,13.08951281182515,29.828919765543436,0.0,0.0,3.8918202981106265,0.0,5.241747015059643,3.044522437723423,6.755768921984255,5.351858133476067,8.347827345782498,7.3796321526095525,9.984099329028517,28.666666666666668,6.387546390865294,0.0,0.0,0.0,0.0,0.0,1.0542129081074512,0.0,42.34000000000001,0.0,36.19796367157974,0.0,0.0,-3.8252616895523617,0.0,0.0,-0.6939366024187452,48.78096169729048,10.147886261562473,4.794537184071822,0.0,32.54733683244669,10.023291153407584,18.75954929201341,24.825916360475023,29.160951749364216,0.0,0.0,0.0,26.92623428523853,28.53811556886228,27.166841802563184,216.5463017407486,,154.64554920521005,174.31692778937185,172.68234843100393,154.67166737170965,249.8033758443524,175.90331363818842,176.03797757481817,233.48131313876195,27.166841802563184,216.54630174074853,,153.1698998545607,173.0536951070651,171.67484768669658,153.19840339202062,252.52035914029287,174.74754697523076,174.91285986195211,234.93395200693135,4.776365349756418,166.64080694140438,,119.03619178270927,134.89647958807436,133.03933369658247,119.0605932405546,202.702181365364,136.363285373437,136.64994709674846,187.63591740038527,1.2348564455710538,9.843013715488572,,7.0293431456913655,7.92349671769872,7.8491976559547245,7.030530335077711,11.354698902016018,7.995605165372201,8.001726253400825,10.612786960852816,2.4143416534998687,108.2731508703743,,77.02604669555112,87.22162552880127,86.39154925271731,77.03866457251547,124.0715344118822,88.0094451522421,88.0752446730524,116.46828678159919,41.752941176470586,0.0,1.8757725459796304,0.0,0.0,0.0,0.0,43.38055353241079,5.278538102833391,4.713955577601411,0.0,0.0,1.2666772020000732,1.8278652263374486,0.0,0.0,0.0,26.29453470384694,447.9874496686855,72.97758463538152,145.97113801589896,187.0647219456998,202.57449695002674,208.57449695002674,212.57449695002674,520.0,120.26958301662037,105.59980273421388,71.99727563377458,86.88999999999999,78.50999999999999,0.8571428571428571,7.105324579176917,5.584962500721156,4.105656601344121,4.625891836149089,,4.598741368807847,4.614357873888295,4.614333380261931,4.598761084727689,4.640548314203536,4.61534062953914,4.615325388848109,4.638092824075839,0.18662075460655095,0.2102678107340495,,0.20903369858217485,0.20974353972219523,0.2097424263755423,0.20903459476034952,0.21093401428197892,0.20978821043359727,0.20978751767491402,0.21082240109435632,2.2008230420841306,2.320126542177093,,2.3142400109432204,2.3176300797192555,2.317624771571938,2.314244298176617,2.323289890785327,2.3178430348129013,2.317839732626255,2.3227606128127394,236.32999999999987,160.61376334436795,119.52055710858122,,120.06297234399989,119.29621699158034,119.50084180546548,120.0615742905507,117.38993350380059,119.21471478906192,119.17852061478075,117.57571436642148,7.300625606562179,5.432752595844601,,5.457407833818177,5.422555317799106,5.4318564457029765,5.457344285934123,5.335906068354572,5.418850672230087,5.417205482490034,5.344350653019158,5.867459857734002,5.57194574295429,,5.576473735036269,5.570066978919938,5.571780776108224,5.5764620906336555,5.55395851879914,5.5693835535936245,5.569079902573511,5.555539864012956,26.331543052406147,12.020928419207188,1.8278652263374486,3.613660685675269,1.2666772020000732,5.693609788446549,3.662137347704281,3.4921733011087404,-3.8252616895523617,287.3510117933541,107.73622619154357,-199.5596699718813,-14.224607673724675,-4.640922557485613,-11.73880411599302,198.7226198314479,368.0936471545365,11.287436121297981,8.560317375686896,14.157447967482172,1154.0,30.0,2.3096221307042466,1.3210827256468356,0.2041241452319315,0.05103103630798288,0.43179504586267126,0.20068735753865524,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.21407617506269555,0.19238672944775093,0.45412414523193145,0.33712149940838687,0.55999693219208,0.37840155935559905,15.742276208189782,13.396338859353632,10.437490172930893,9.07262504664188,10.27886789084862,7.8979270814023375,7.819952535058152,5.891184533394085,6.637912872806005,4.293093202837808,4.295877645740109,2.651457849798538,3.228484105138467,1.7436568428398767,1.897399300959183,0.9463785338770548,3.9926491036612783,2.405939287735568,6.251450175344658,3.051540082388027,7.3477717817290795,3.143403254204513,72.38423089574849,39.05231784900191,29.59507923982205,27.176662026749426,25.76909702456241,25.317698930664346,118.0,137.0,47.65865299999998,30.301346999999996,0.4186046511627907,114.07,7.479166666666666,4.652777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,6.0,6.0,43.0,0.0,0.0,45.0,6.0,3.0,6.0,39.0,9.0,24.0,36.0,0.0,0.0,0.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,4.0,2.0,1.0,22.0,7.0,0.0,3.0,3.0,0.0,3.0,3.0,1.0,0.0,0.0,0.0,1.0,3.4339872044851463,4.863198139155803,3.9982007016691985,4.334017415487521,4.773857551506242,5.061407619469679,5.220355825078324,5.162282843705396,4.8870542323249015,4.983178447863216 +441243,CC(C)(C)NC(=O)[C@@H]1C[C@@H]2CCCC[C@@H]2CN1C[C@@H](O)[C@H](Cc1ccccc1)NC(=O)[C@H](CC(N)=O)NC(=O)c1ccc2ccccc2n1,1,20.525252525252526,6.033327272727275,3.090909090909091,6.181818181818182,164.2299488737874,80.70561714141414,1.4008572246712119,6.098107070707073,4.449003928170595,7.580113171717172,203.93604456740337,22.78640776699029,6.255533980582523,3.7766990291262137,5.747572815533981,147.63102334145876,85.36523659223299,1.7702832924854366,6.396330097087378,2.9087108953613807,7.678814563106795,254.15180749874793,18.925531914893618,6.110335106382978,3.4574468085106385,4.26595744680851,153.74712570388505,69.45491544148938,1.5140360103092076,6.221645744680848,2.784278959810875,7.593534957446807,209.9143642190535,14.934782608695652,6.071415579710145,2.7971014492753623,3.2246376811594204,160.4781074480363,52.20749072826087,1.2848043693869893,6.149539130434783,2.721316425120773,7.613583463768117,170.814010592959,12.926153846153847,5.889180923076924,2.5353846153846153,2.796923076923077,165.06185171887475,45.24187807384615,1.1096411481433783,5.951551692307692,2.550555555555556,7.494979421538462,145.45778052974202,15.046666666666667,6.168396333333334,2.6866666666666665,3.486666666666667,164.42654636914241,53.30690221333333,1.1639229353781,6.222830666666666,3.3848148148148147,7.739848506666665,158.88434527137053,15.335483870967742,6.161599677419356,2.706451612903226,3.3774193548387097,163.25800171487626,54.29249424838707,1.2118084879633484,6.223478387096774,3.221818996415771,7.71730981935484,164.92418154599937,13.971671388101983,6.026625212464588,2.5637393767705383,2.8810198300283285,162.66509223730066,48.74952791784701,1.1823800363227195,6.0937308781869675,2.8227887944601826,7.608323705382437,157.38156492295758,13.459317585301838,5.975682414698163,2.47244094488189,2.795275590551181,163.68089121688624,46.94782251706036,1.1540339546292624,6.039625459317587,2.922827354913969,7.571973700787402,152.66882667482386,7.302112029384758,0.11123295582083455,0.01714667265244512,0.6078971533516988,3.504132231404957,1.4462706623232362,34.787197487807376,0.2237494894276146,0.10599651056014686,1.685237617476675,0.06575852178349145,50.09379072738114,0.17547941908047843,-0.006350794400809022,-0.010225539109945364,0.1402640705376805,0.9424697103426138,-0.045878944029167354,0.8905495007186751,0.008960784527847827,-0.0047180953399840395,-0.09770438330104565,-0.004435698207929984,2.2638401915718553,0.27246351327589236,0.013612530961886252,0.0009096647788418988,-0.07759412304866846,0.0848426235273429,-0.17312705116592192,1.203704628730354,-0.014576875128658549,0.012252404118555037,0.1634796825925757,0.007840516901228075,-1.9663239006914963,-0.9593364474787401,-0.0009979060477413166,0.001528427746766612,0.010460334571006518,-0.008743562103245974,-0.0006817536158334213,-4.620182990259423,-0.02249747184386798,-0.003465438974727459,-0.08053723197918779,0.0011427780261996673,-6.685705080000797,0.8402034329307055,0.004435606727727924,-0.0017413845347563294,0.009911704457159007,0.3137698664971392,-0.010235308805741378,3.9950807053861053,0.006376893761333486,0.006298895811259424,0.0068184129126889655,0.00025208023671053183,3.9786135236545674,0.20920110192837463,0.004012845525966799,9.152909983204417e-07,-0.014563820018365465,0.06617079889807154,-0.01936649554438023,0.9921371554922973,0.005645441769822173,0.0037794894398531253,0.14295191675452631,0.0028637044791348567,1.2049569679147722,-0.12172753932284727,0.0033104948145515714,0.001253017336896127,-0.03086880535560886,0.005838443081844736,0.02682009969263286,-0.6083625510853058,-0.002824112369572434,0.002411000029621786,0.1348060087497473,0.0030224208036705273,-0.9890935973430628,-0.23758574672816232,-0.005592028130331819,-0.0002989580270962976,-0.019778001493170175,-0.03181701121438443,-0.030854275243893507,-1.1220148527886238,-0.008169222042230091,-0.005084838599749723,-0.11038518220167096,-0.004078377794021678,-1.6194644207985827,0.1589553371944209,-0.0024027641402492115,-0.0009339550161597411,-0.011698950854283702,0.08713476931086088,-0.002580097398589556,0.7819981781169683,0.006296447499039177,-0.0014835621786945972,0.026891695483784412,-0.0015726427304942974,1.666102130602099,,,0.47074829931972784,1.0765306122448979,0.4489795918367347,0.0,0.6275510204081632,-0.17857142857142858,1.331924195233173,0.021571795136982905,0.03034730534106454,1.0627561182778529,0.19791592610657635,0.2787615351314019,2.394680313511026,0.4766774612379782,2.0306438227836088,1.6042488469922207,0.24608817580035156,0.18030679999103658,0.0,0.4263949757913882,6.771558269696984,2032.0,597.2994000000002,306.0,612.0,16258.764938504954,7989.856096999999,138.68486524244997,603.7126000000002,440.45138888888886,750.431204,20189.668412172934,2347.0,644.3199999999999,389.0,592.0,15205.995404170253,8792.619368999998,182.33917912599998,658.8219999999999,299.59722222222223,790.9178999999999,26177.636172371036,3558.0,1148.743,650.0,802.0,28904.45963233039,13057.524103000002,284.638769938131,1169.6693999999995,523.4444444444445,1427.5845719999998,39463.90047318206,4122.0,1675.7106999999999,772.0,890.0,44291.95765565802,14409.267441,354.60600595080905,1697.2728,751.0833333333334,2101.349036,47144.66692365668,4201.0,1913.9838000000002,824.0,909.0,53645.101808634296,14703.610374,360.633373146598,1934.2543,828.9305555555557,2435.868312,47273.778672166154,4514.0,1850.5189,806.0,1046.0,49327.96391074273,15992.070663999999,349.17688061343,1866.8491999999999,1015.4444444444445,2321.9545519999997,47665.303581411164,4754.0,1910.0959000000003,839.0,1047.0,50609.98053161164,16830.673216999992,375.660631268638,1929.2783,998.763888888889,2392.3660440000003,51126.49627925981,4932.0,2127.3986999999997,905.0,1017.0,57420.777559767135,17208.583354999995,417.38015282192,2151.0869999999995,996.4444444444445,2685.7382680000005,55555.69241780403,5128.0,2276.735,942.0,1065.0,62362.419553633656,17887.120378999996,439.686936713749,2301.0973000000004,1113.5972222222222,2884.92198,58166.82296310789,722.909090909091,11.01206262626262,1.697520592592067,60.18181818181818,346.90909090909076,143.18079557000038,3443.93255129293,22.151199453333845,10.49365454545454,166.83852413019082,6.510093656565654,4959.285282010733,18.074380165289277,-0.6541318232833293,-1.0532305283243726,14.447199265381093,97.07438016528923,-4.7255312350042376,91.72659857402354,0.9229608063683262,-0.48596382001835603,-10.063551480007701,-0.4568769154167883,233.1755397319011,51.22314049586777,2.5591558208346155,0.17101697842227698,-14.58769513314967,15.950413223140464,-32.54788561919332,226.2964702013066,-2.7404525241878073,2.303451974288347,30.734180327404232,1.4740171774308781,-369.6688933300013,-264.7768595041323,-0.2754220691766034,0.4218460581075849,2.887052341597799,-2.413223140495889,-0.18816399797002425,-1275.1705053116007,-6.209302228907562,-0.9564611570247786,-22.22827602625583,0.3154067352311082,-1845.25460208022,273.0661157024793,1.4415721865115751,-0.565949973795807,3.2213039485766775,101.97520661157026,-3.3264753618659477,1298.4012292504842,2.072490472433383,2.047141138659313,2.2159841966239138,0.08192607693092284,1293.0493951877345,62.76033057851239,1.2038536577900396,0.0002745872994961325,-4.36914600550964,19.85123966942146,-5.809948663314069,297.6411466476892,1.693632530946652,1.1338468319559376,42.8855750263579,0.859111343740457,361.48709037443166,-37.73553719008265,1.0262533925109871,0.3884353744377994,-9.569329660238747,1.8099173553718684,8.314230904716187,-188.5923908364448,-0.8754748345674546,0.7474100091827536,41.78986271242166,0.9369504491378635,-306.6190151763495,-83.8677685950413,-1.973985930007132,-0.10553218356499305,-6.981634527089072,-11.231404958677706,-10.891559161094408,-396.0712430343842,-2.8837353809072224,-1.7949480257116524,-38.965969317189845,-1.4396673612896522,-571.6709405418997,60.56198347107436,-0.9154531374349496,-0.35583686115686136,-4.4573002754820905,33.198347107437996,-0.9830171088626208,297.9413058625649,2.3989464971339265,-0.5652371900826415,10.24573597932186,-0.5991768803183273,634.7849117593997,0.7169554446188063,0.5863448943764801,0.4407018037860554,0.32819653597602666,0.2979756914049014,0.19609466526144495,0.18120327165321334,0.105146221929856,0.11758869441573694,0.06053509608747202,0.07527109323070881,0.03571419122063865,0.04765727950773186,0.020649539669283092,0.03046852354271938,0.012265403189623372,8.02617868978141,5.674015066783181,3.549233850445695,2.1714451185452615,0.42984089275621695,-0.38177164813707715,4.017095461241746,0.9723268784070034,6.0256910610356424,0.9898785182465871,14.549669408789436,10.937272288293888,16.013865768566504,11.687079475693233,2.011494854624512,0.7509849131196781,3.4948267116174274,2.2206175392774896,7.011555405865406,1.1646950309813755,3.7075913697131173,2.416110874899579,20.913900345010834,14.701775920207087,0.21775427105473152,0.5315744309818844,0.7416659903377247,0.8549645081317239,0.8838999349653568,0.8898022210111113,1.2769868435902247,1625.6024314296826,0.0,4.0,5.0,0.0,13.0,11.0,2.0,3.0,0.0,5.1387219240238,2.9904691414567024,1.5522894620989076,0.7767055857533425,0.5786284092438798,0.5382243688398392,342.8770338152367,4449.674312723644,84.78845285743981,44.94620517902671,88.88921979601838,,19.0,1578.0,53.91077493855606,24.28467613112799,24.566685753038552,23.897269215851622,36.63296219786583,6.4208216229260096,18.19910120538483,69.30214814676475,25.834254063816676,5.733667477162185,23.066666666666663,52.75,22.0,0.0,30.75,0.0,0.029251700680272188,-8.75,0.11993556669815725,0.03232919162122716,-0.08760637507693009,0.057513914656772136,0.14492105263157917,0.0,0.5609427609427596,0.8272108843537418,0.4410071942446024,0.5286135693215325,0.7696969696969697,65.26428556642549,1.0570179617121624,1.4870179617121624,52.07504979561479,9.69788037922224,13.659315221438693,117.33933536204027,23.357195600660933,0.5690789473684208,0.15462427745664745,0.021676300578034685,0.3208092485549134,0.5,0.32736175615018304,-1.4668468580911436,-0.04713755664883735,-0.014816634930213568,-0.04314255464973952,0.6726382438498171,3.0139662806867453,0.03824424590104776,0.030444103845320657,0.046368712010565305,-6.879791076674703,0.8956396143853411,0.7920102969166731,1.6612329515185693,1.0750593963570236,0.5800741894119805,1.3334466337000093,0.901170734341674,1.136213796700839,0.7841703370084384,0.6547989175458356,0.7683254324962414,1.051486608545306,0.9006311807012285,0.6542192353962686,0.9230973496119363,1.5764286173426756,0.9151027030643655,1.304515132615359,0.9086357677858721,1.1640818340620498,0.6697810092251753,0.5073631383392457,0.6129839517970024,1.0946761175079542,1.1179067156562563,1.008813429754075,1.0180027758375925,1.0236492403345157,0.972866914289187,1.0861633593119884,1.1197299416365423,1.107656179743062,1.025066095530371,0.924882966345455,0.9650643457373366,1.126950279209392,0.8838732394366196,0.9715756587220883,1.1676581394776373,1.0096072507552871,0.9226713433317211,0.9680696172832158,0.8833780353404446,0.9311594655600512,0.9522940630255008,0.9488865605751643,0.9979155557430115,0.8938773620945227,1.0268926056338028,1.3189180652401198,1.2982400303382375,1.1643051359516616,1.138453878406709,1.0119426435323282,1.0206009088826187,0.9229693656633469,1.280812698929743,1.3728234480438941,1.382795332125682,0.9197038864635736,1.0523654020899589,1.223267711267376,1.2672720398912614,1.163517201052529,1.0771251775207957,1.019772765583943,1.0487721514967079,0.9764358911434113,1.1998265953881024,1.1364448275137167,1.246268480461827,0.9763016353686153,1.0474479312133422,1.189347805742683,1.2043629981030397,1.1048201432691733,1.0323462861011639,1.019599797229404,1.0446350122923242,1.0195849186262054,1.1707598376302886,1.220225246082074,1.2377933715403682,1.0088276825341207,0.9914628849210749,1.1375892146367386,1.15791774128652,1.0749141629199674,0.9979998569361224,0.9756644652344212,0.9884363083662857,0.9458253959616167,1.1179111066659497,1.1460152521087061,1.1703881405399528,0.9409311721982793,12.0,0.6279971431486584,5.333333333333336,3.125,3.573333333333334,2.125,1.5297959183673469,1.4305555555555554,0.9790879314688838,0.8187500000000003,10679.118675709611,12355.319240216859,4585.499207119627,4069.995805319515,23.04488490851561,0.49052773792833587,11.740729643522602,0.9628153963352307,0.0,0.5,1.4906346960558092,3.638887478622907,5.077067157980702,5.852651034326267,6.05072821083573,6.09113225123977,0.22641509433962265,0.007136331172143845,0.07111111111111114,0.040584415584415584,0.04581196581196582,0.025297619047619048,0.017188718183902774,0.01572039072039072,0.010306188752304041,0.008803763440860216,0.46837559816433577,40.190815236739056,18.850133333333332,12.0,287.9614492327174,0.0,4.80990160331726,401.1762671079044,,349.34920193371767,341.97752800158594,335.91388587454276,349.4129323714248,463.0245224572581,346.225858084863,349.7928047914787,427.5659582642285,0.024031323865523264,-0.05709453959884327,-0.5963570493944899,0.23073651482709073,0.26895951639494414,-0.031722239290582786,0.025599920805083692,0.040048290392844625,-0.044511798690833264,-0.057976621390246154,-0.0674543479327961,0.04519203196044907,0.037312973586198034,0.12237857801614356,0.05305197091472907,-0.127643504531722,0.024212163789642676,-0.11970584460851676,0.034601943118649975,-0.06514819392861375,0.11559252331804365,0.09700690329791928,0.11923195182280424,-0.03925284695248085,-0.131377941562418,-0.008971316462619823,0.08913844556008702,0.017207408380401964,-0.002495214656822555,-0.00047138729533397107,-0.1328127392808449,-0.10054758963437169,-0.03269389677465867,-0.04778983755405192,0.017378401995748017,-0.13346374835926336,0.11506307073208479,0.03987673163043924,-0.10155816058621774,0.01630490355565885,0.08954281567489118,-0.00707703549023096,0.11484341924313818,0.028500148883675913,0.0594255016318218,0.0040459652941394995,0.0038334231043164364,0.0794232871156997,0.02864939637826961,0.036076048652616766,5.3380094020160866e-05,-0.023957703927492434,0.01888364779874212,-0.013390643984488077,0.028520180616447566,0.02523108224409395,0.03565673454607248,0.08482597069520072,0.04354879643681078,0.024054018480500934,-0.016670182384630364,0.029761816451986233,0.07307641326653813,-0.05077965110612999,0.001666159464394371,0.01854431566049334,-0.01748811617545598,-0.01262176006209867,0.02274603208049649,0.079992285569553,0.04596242010460308,-0.019744834299441964,-0.03253657924886428,-0.05027312354567855,-0.017435337639904503,-0.0325351112176168,-0.00907985461542575,-0.02133367982057406,-0.03225367186252588,-0.03651057288724194,-0.04797175466322896,-0.06550125694853164,-0.06202052119495099,-0.032328645871740495,0.021768405709849642,-0.02160118934643253,-0.054468586126915935,-0.01924495087660869,0.024866290298618327,-0.0017839657996277004,0.022479481952837742,0.028140611695456615,-0.013996330358939145,0.015957212920543303,-0.02391542096509089,0.0332596536698392,26.425222190065973,44.553266519578294,17.06310716338105,13.784343910422667,32.60675798532597,40.15225803525523,43.08608085215864,43.810873959211484,43.851601231938766,99.50154731639684,78.60819350261882,12.058320614217227,8.835033199560792,0.0,20.89335381377802,26680.48491889558,24395.180868421034,3729.5095235164627,234.0,75.0,92.0,120.0,155.0,165.0,189.0,217.0,240.0,670.3842687000014,53.0,5.54907608489522,6.3818160174060985,7.264730177929867,8.117610746466228,9.002208578282412,9.864798697921016,10.750235261617851,11.618554944454042,12.504579666245784,0.6060606060606061,0.9734141414141416,1.1330666773594582,0.5641755999761161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6496682392790175,0.9599524658348189,0.998263773937481,0.60270173750532,11.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,3.0,0.0,0.0,1.0,1.0,9.0,3.0,0.0,0.0,6.0,1.0,1.0,0.0,0.0,26.790560684021884,11.735768823996422,0.0,17.721539188054518,5.907179729351506,24.07805846713776,4.9839785209472085,0.0,0.0,73.85976848493253,69.5656741887929,24.014662278673292,30.125170386586497,325.086798354386,-1456.6531973095712,-46.8099803514891,-14.713668659692635,-42.84274109734033,667.9638321696227,2993.0211154140734,37.97847250595071,30.232536519334076,46.04647869867805,0.47368421052631576,0.868579690345012,0.08695635945852186,150.4069699868596,0.0602709906512641,88.97334816893431,0.131420309654988,10.0,0.22641509433962265,0.2248535991472893,0.5489050728695312,0.765846136954348,0.8828384667977003,0.9127172601499101,0.9188119753265928,3.092400000000003,,2.1071428571428577,2.542577943229409,2.217168442137393,2.101328966386594,-8.520562230786668,2.260709914320686,2.0840519597672014,-3.910920159750701,188.21379999999954,24.28467613112799,0.0,25.834254063816676,17.569479569484972,95.48537708712948,13.08951281182515,77.98741723962318,0.0,0.0,4.672828834461906,0.0,6.008813185442595,0.0,7.52131798019924,0.0,9.115480090952223,0.0,10.75442876783813,60.00000000000001,20.13554333861913,4.410638471283096,0.0,0.0,0.0,1.4702834538623324,0.975227918746831,0.0,96.36800000000002,0.0,52.78747909322762,0.0,0.0,0.0,0.0,0.0,-2.1061686468201963,112.17360105858637,21.684033289181176,0.0,0.0,81.4770615034451,20.804433175141472,11.835812092322787,75.34805800724523,66.73003775307771,0.0,10.902924932081056,0.0,55.853384397635494,64.31715568862273,61.76054183166609,802.3525342158089,,698.6123980365315,683.8512773116115,671.7538540752581,698.7400962136094,928.4834912661695,692.359442295672,699.5005462376607,856.2493222883859,61.76054183166609,802.3525342158091,,696.6806428668034,681.5525608325504,669.8081756464437,696.813543790413,934.5696071453029,690.3006598514614,697.588240831433,859.0428366882079,4.880589961950156,570.5089354263062,,500.4020221258455,488.9589103972588,479.1570096598643,500.49978940651954,677.4677693468564,495.5357193708907,501.0924749220761,622.8371933040689,1.26041922105441,16.374541514608346,,14.257395878296562,13.9561485165635,13.709262328066492,14.260001963543049,18.948642678901418,14.129784536646367,14.275521351788994,17.4744759650691,2.4402949809750787,401.1762671079044,,349.34920193371767,341.97752800158594,335.91388587454276,349.4129323714248,463.0245224572581,346.225858084863,349.7928047914787,427.5659582642285,95.03529411764707,0.0,5.872286114524808,0.0,0.0,5.51884850338983,11.84666684084809,98.82811361981062,5.95226429018774,8.70284729073865,0.0,0.0,-2.656473628422262,2.0797992985993874,-0.40590900545172226,0.0,0.0,59.66747201302668,862.5436091574624,147.5728349095251,360.2498603836678,502.6296486400895,579.4124523983004,599.0220928727373,603.0220928727373,1589.0,183.05361017521852,130.5070213665463,87.0728688588941,166.75,166.75,0.9,8.67501858442145,6.727920454563199,4.847821334851743,6.89634652981406,,6.904344612110241,6.903515829062635,6.9037495983724195,6.904354275715967,6.914691187682922,6.904051302136749,6.904386724871507,6.912004901300733,0.09893512928268865,0.14074176591457266,,0.14090499208388246,0.1408880781441354,0.1408928489463759,0.14090518930032586,0.14111614668740657,0.1408990061660561,0.14090585152798996,0.14106132451634149,3.167764599832327,3.5202269880585475,,3.5213860724999524,3.5212660273920036,3.5212998891745606,3.5213874721402525,3.5228835109111327,3.521343589654681,3.5213921719395374,3.522494945718306,529.6100000000021,1446.9905046297822,395.8067691644731,,393.4155554341948,393.5862231175382,393.8756840056336,393.4145355622413,392.4272595160535,393.4915315410965,393.4052534297915,392.30224347731223,29.53041846183229,8.0776891666219,,8.028888886412139,8.032371900357923,8.038279265421094,8.028868072698803,8.008719581960275,8.03043941920605,8.028678641424317,8.006168234230861,8.866476369618574,7.5701613406260995,,7.5641016513020025,7.56453536744006,7.565270541798373,7.564099058945749,7.561586399090296,7.564294751881207,7.564075464896438,7.561267777095527,0.0,59.2779168631101,21.405125119519738,6.702839882614272,-1.1954100735081432,17.636535715735818,4.030706496148877,6.7256193297126705,0.0,649.6157936864806,322.8276500808543,-1446.5303760430827,-46.48468050286271,-14.611417939829117,-42.54501106009067,663.3219047032769,2972.221505833617,37.714546068373075,30.022439452864823,45.72648470513257,9512.0,77.0,4.585257745878967,2.7115417375208577,0.3535533905932738,0.25,0.6844864838688554,0.24040464362589026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39232567658216516,0.2048531741697821,0.5933059441278131,0.3126288892465424,35.13081678632151,28.730899824447526,23.357195600660937,17.394416406729412,22.3481768553676,14.70709989460837,16.67070099209563,9.673452417546752,14.110643329888433,7.264211530496643,11.667019450759867,5.535699639198991,7.863451118775757,3.4071740454317103,5.758550949573963,2.318161202838817,7.266570966988691,3.4359897756162545,11.374711309554517,4.789304531839719,17.319947400509996,6.556214186804551,164.77904928054045,77.54957298070664,43.45099695698131,31.46469446218173,29.109181650542595,28.815900307505856,256.0,295.0,107.40964999999996,57.62235000000009,0.35353535353535354,457.11,16.729166666666668,10.56944444444444,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,16.0,17.0,99.0,0.0,1.0,103.0,17.0,4.0,12.0,91.0,21.0,53.0,82.0,0.0,0.0,0.0,38.0,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,7.0,5.0,2.0,49.0,11.0,0.0,6.0,5.0,0.0,5.0,12.0,0.0,0.0,0.0,1.0,3.0,4.197201947661808,7.030207950454297,4.709530201312334,5.1298987149230735,5.61904124620111,6.122629861525839,6.284075857132354,6.606481253010889,6.891903742087957,7.205069523697336 +5362440,CC(C)(C)NC(=O)[C@@H]1CN(Cc2cccnc2)CCN1C[C@@H](O)C[C@@H](Cc1ccccc1)C(=O)N[C@H]1c2ccccc2C[C@H]1O,0,20.043478260869566,5.96309239130435,3.0760869565217392,5.8478260869565215,163.6275208873881,78.76212622826087,1.4121741579119895,6.033830434782611,3.865413647342995,7.517841608695653,204.23563505647218,22.625,6.2370624999999995,3.75,5.447916666666667,146.99382651301673,84.68047659375002,1.7693119364791672,6.379546874999995,2.8326099537037037,7.664369374999997,253.23681723541972,18.70689655172414,6.128022988505747,3.4942528735632186,3.9885057471264367,154.86183513822726,68.41252177586209,1.515889068243868,6.2365499999999985,2.628192848020434,7.613387701149424,210.57892700594172,14.838709677419354,6.0618096774193555,2.7983870967741935,3.024193548387097,158.994952216989,51.485155370967746,1.3082215051476653,6.146409274193549,2.606742831541218,7.601008741935484,173.1601413591243,12.441471571906355,5.827343812709031,2.5150501672240804,2.4983277591973243,164.73525311370133,43.31518702675586,1.1120542805831204,5.89256287625418,2.3937662578966927,7.440653418060204,144.01665418301152,14.578181818181818,6.098767272727273,2.6436363636363636,2.9890909090909092,162.33354332444216,51.172637796363624,1.186017142320331,6.163466545454544,3.0861616161616165,7.676060043636363,159.89844481547132,13.823728813559322,6.06117593220339,2.593220338983051,2.6847457627118643,163.87412038625385,47.96244836271186,1.1848374761260507,6.122850847457626,2.8317325800376643,7.640836650847458,157.42425960991096,12.996845425867507,5.8989176656151425,2.55205047318612,2.5141955835962144,162.09853078638287,44.806482094637225,1.190263062550549,5.973563406940061,2.4535138450753586,7.491882977917983,154.98275678174892,12.792284866468842,5.853643620178042,2.421364985163205,2.56379821958457,162.24291079146528,44.36724955192878,1.1527413389905228,5.926247181008902,2.6102044180679194,7.458827810089022,149.36284954358564,7.177221172022683,0.10090400519848765,0.014968091078970173,0.5920368620037806,3.3293950850661616,1.4416700139259953,34.24958808920132,0.22674384368852013,0.0971922495274102,1.3152592351921861,0.05864941162570887,50.76268005690026,0.25688208884688113,-0.003700880198487569,-0.007057019980536342,0.14313071045998754,0.7423893352236929,-0.16016717062006314,1.2588032372253106,0.0025606436032876083,-0.002208961483931746,-0.10110426840474683,-0.003436834180056732,1.3606980993625666,0.03267388045107887,0.0005618243867197862,-0.0005449748126582887,-0.0814796406144753,-0.30603176672533294,-0.028350197720990244,0.14857460495160368,-0.0008989066126336757,0.0006616485235644425,0.019713469427725738,0.00044978977359145096,0.012299800142744148,-1.4390549728641993,-0.007224543417281453,0.0005527449326584014,-0.017790718946277196,-0.24848695042380636,-0.10638863405378925,-6.9145200775866655,-0.038424262077924626,-0.0094688799621927,-0.14041361028958402,-0.002169376387279723,-10.211701427332693,0.8348480442053217,0.005846089319470675,-0.0004112622296232853,-0.0032626872182637784,0.18158353933401192,0.05966338495722507,3.9699137860349696,0.010353836618997329,0.0072627744656099695,0.011181658769973962,0.0014744464519412534,4.425516004409884,-0.19469152775390947,-0.002480210732084458,0.00047550150648757126,-0.02468508334765423,-0.22860457123217048,-0.13615690217349596,-0.9371691818100174,-0.010127124060183564,-0.0022316487368962677,0.0156405232619198,-0.0011705026929025796,-2.009967427187662,-0.5100877895613726,-0.007959557888244442,0.0005444967969930228,-0.01429183621159205,-0.3108247092371278,0.11874050385024254,-2.377139989938243,0.007508601544864096,-0.00839665630707113,-0.049897530451336554,-0.003353771537278539,-0.4322298853900608,-0.34317920247118255,-0.008730819078613873,-0.0011454629119272458,-0.030248355626054737,-0.0386256432886286,-0.005147492672063322,-1.6131244839345558,-0.006674023077622933,-0.007848496955746492,-0.07423600830668078,-0.005317222899882526,-1.4774609068584859,0.3156829693784251,0.005507290118245601,-2.3136672923315462e-05,0.008788837905908344,0.2648508186881916,-0.09536074501094345,1.4571274954651714,-0.008700388541519586,0.005845139196625389,0.0694843552405892,0.002363241580329045,-0.2614492673590387,,,0.47407407407407404,1.1,0.4666666666666667,0.0,0.6333333333333333,-0.16666666666666666,1.2462470400674945,0.01914552031894369,0.028701075874499247,1.0077842795178897,0.21144174356947126,0.26750637083098716,2.2540313195853843,0.4789481144004584,2.0382329760443603,1.6463443310267811,0.23344751648454512,0.1584411285330336,0.0,0.39188864501757875,6.666987010695667,1844.0,548.6045000000003,283.0,538.0,15053.731921639706,7246.115613,129.92002252790303,555.1124000000002,355.61805555555554,691.641428,18789.67842519544,2172.0,598.7579999999999,360.0,523.0,14111.407345249607,8129.325753000002,169.85394590200005,612.4364999999995,271.93055555555554,735.7794599999997,24310.734454600293,3255.0,1066.276,608.0,694.0,26945.959314051543,11903.778789000004,263.764697874433,1085.1596999999997,457.30555555555554,1324.7294599999998,36640.73329903386,3680.0,1503.3288000000002,694.0,750.0,39430.74814981327,12768.318532000001,324.438933276621,1524.3095,646.4722222222222,1885.050168,42943.71505706283,3720.0,1742.3758000000003,752.0,747.0,49255.8406809967,12951.240921,332.504229894353,1761.8763,715.7361111111111,2224.755372000001,43060.97960072044,4009.0,1677.161,727.0,822.0,44641.72441422159,14072.475393999997,326.15471413809104,1694.9532999999997,848.6944444444446,2110.916512,43972.072324254616,4078.0,1788.0468999999998,765.0,792.0,48342.86551394488,14148.922266999998,349.527055457185,1806.2409999999998,835.361111111111,2254.046812,46440.15658492374,4120.0,1869.9569000000001,809.0,797.0,51385.23425928337,14203.654824,377.31339082852406,1893.6195999999993,777.7638888888887,2374.926904000001,49129.53389981441,4311.0,1972.6779000000004,816.0,864.0,54675.8609367238,14951.763098999998,388.47383123980615,1997.1453,879.6388888888888,2513.6249720000005,50335.28029618836,660.3043478260868,9.283168478260864,1.377064379265256,54.467391304347814,306.3043478260869,132.63364128119156,3150.962104206521,20.86043361934385,8.941686956521737,121.00384963768113,5.395745869565216,4670.166565234824,24.66068052930059,-0.35528449905480664,-0.6774739181314888,13.740548204158804,71.26937618147451,-15.376048379526061,120.84511077362983,0.24582178591561038,-0.2120603024574476,-9.706009766855695,-0.32993608128544627,130.6270175388064,5.685255198487724,0.0977574432892428,-0.09482561740254222,-14.177457466918701,-53.24952741020793,-4.932934403452302,25.85198126157904,-0.15640975059825957,0.11512684310021298,3.4301436804242784,0.07826342060491247,2.1401652248374816,-356.8856332703214,-1.7916867674858004,0.13708074329928355,-4.412098298676745,-61.62476370510398,-26.384381245339732,-1714.800979241493,-9.529216995325307,-2.3482822306237896,-34.82257535181684,-0.5380053440453713,-2532.501953978508,249.61956521739117,1.7479807065217319,-0.1229674066573623,-0.9755434782608697,54.29347826086956,17.839352102210295,1187.0042220244559,3.095797149080201,2.1715695652173808,3.3433159722222148,0.44085948913043477,1323.2292853185554,-53.5401701323251,-0.682057951323226,0.1307629142840821,-6.788397920604913,-62.86625708884688,-37.443148097711386,-257.7215249977548,-2.78495911655048,-0.6137034026464736,4.301143897027944,-0.3218882405482094,-552.741042476607,-150.47589792060492,-2.3480695770321107,0.16062655511294172,-4.216091682419655,-91.6932892249527,35.02844863582155,-701.2562970317817,2.215037455734908,-2.477013610585983,-14.719771483144283,-0.989362603497169,-127.50781619006793,-108.78780718336486,-2.7676696479205978,-0.3631117430809369,-9.588728733459352,-12.244328922495267,-1.631755177044073,-511.3604614072542,-2.1156653156064698,-2.4879735349716383,-23.53281463321781,-1.6855596592627606,-468.35510747414,106.38516068052925,1.8559567698487678,-0.007797058775157311,2.961838374291112,89.25472589792058,-32.13657106868794,491.05196597176274,-2.9320309384921006,1.969811909262756,23.41622771607856,0.7964124125708881,-88.10840309999602,0.7105803610653838,0.5911494145185148,0.4398503091432781,0.3267472686352719,0.2965134886733233,0.19679840812735758,0.18066315421747148,0.10240567788903092,0.11780334554144163,0.05809717247629187,0.07721548260436567,0.0333986496101402,0.048196770142980454,0.019662097335209718,0.031115698761611816,0.011495352559466269,8.023670897628621,5.688992683929344,3.5457852187678114,2.1889047199078173,0.39385538718337276,-0.3773541354408692,4.017090462193921,0.9772381100010892,6.0231927049793725,0.9898825949818622,14.549439304792564,10.949398114578198,16.011755847024034,11.700065408607442,2.00000519493804,0.7512270071493478,3.491115728817705,2.2388766389189625,7.009369251147477,1.197112221962688,3.7039899102534366,2.434859403419658,20.907371847627967,14.701778088050784,0.21504654259048114,0.5256993946113194,0.74042086493255,0.8392557270119155,0.8805472823799609,0.888213797681509,1.224170631236258,1413.7019903455487,0.0,4.0,8.0,0.0,11.0,7.0,4.0,2.0,0.0,5.073832788643577,2.979576842513734,1.532039139071645,0.8657471792580917,0.5873815219272585,0.5356979621211329,350.00023920841244,3484.160189023546,75.42724001345118,37.87130640242984,75.36553161809799,,19.0,1445.0,35.74844573233727,19.802129157825057,24.779937487541595,32.475912463589744,28.798562372700555,0.0,6.196843571613076,93.69809292376269,25.417375190660824,0.0,21.333333333333332,49.5,21.0,0.0,28.5,0.0,0.025925925925925953,-7.5,0.10899235421659298,0.03714439076757947,-0.07184796344901351,0.041844293272864985,0.13059070191431166,0.0,0.550724637681158,0.8125925925925925,0.441732283464565,0.5135802469135785,0.7707482993197275,56.081116803037254,0.8615484143524661,1.291548414352466,45.35029257830504,9.514878460626207,12.037786687394423,101.43140938134229,21.55266514802063,0.5834092980856883,0.13281250000000003,0.0234375,0.29531250000000003,0.4722222222222222,0.30940176648299006,-1.1740901071595857,-0.043708173641151586,-0.012761848990865065,-0.040485865764123656,0.6905982335170098,2.620620312582422,0.03844204853093529,0.028485003397635014,0.0415971478187686,-6.467924720000242,0.9137437309321571,0.8507201117262835,1.49770961126097,1.052904443557507,0.6885682812869649,1.3853442115753976,0.9182464746365622,1.149669025716904,0.837671969199308,0.7537830277405053,0.8526195232400813,1.0639653108606657,0.9678748233705631,0.9020951379947536,1.1130513219356315,1.6563216097000395,1.1465288824714686,1.2073619169132916,0.9708810050034364,1.0657990693162942,0.8974462394347658,0.6539999714482657,0.8538288336159316,1.0295799018595084,1.1994926953655187,1.13933317045378,1.1704736227538588,1.0778867137458883,1.073956878591543,1.168243549161034,1.2002862270971921,1.1794040945408928,1.1491593065404224,1.076575180488095,1.1043242196383007,1.1940118115666525,0.8817409626654379,0.9638746609542866,1.1054571100320532,1.053282777888645,0.9672817601135558,0.9159570076502463,0.8812412887871534,0.9127492210339906,0.9459211081655633,1.0281106309873813,0.9909599877616952,0.8837870981901056,1.081223175323393,1.4142551194884834,1.2858243368616356,1.1391302770269045,1.209967094651268,1.0908501342083878,1.075012823693012,1.012870883584974,1.3664263156433678,1.6490708962166596,1.515281032908296,0.995682589829375,1.114434736220653,1.3890175642069453,1.249806801975395,1.0902184685217946,1.2029632748312906,0.932101459507601,1.107521570117708,0.9176352570369285,1.3585655241775638,1.4381479113010645,1.4224776790007378,0.9574620430277724,1.0455698558392652,1.1300535107063845,1.1278603312253972,1.1199650988645173,1.005139336352829,1.0025692430564888,1.044014766796734,1.015627999518912,1.1174369380140017,1.090401865220997,1.1449218840456015,1.0132417005878454,0.9510069227957149,0.9729429179118277,0.9800468391309716,0.9692184612250676,0.8890664717911352,1.0284741376337858,0.9517196381927451,1.0280597581667508,0.9646409453821579,1.030943097712539,1.0121288924308147,0.9937891791103994,10.5,0.4948495051525355,4.222222222222223,3.576388888888889,2.5327777777777785,1.7641666666666669,1.3527437641723354,1.1006944444444444,0.8115709246661625,0.5750077160493827,9540.687475647495,11126.646711489235,4219.934374833552,3733.3881524037624,17.80539814225169,0.46155322287700923,9.58725924508711,0.8571937700939797,0.0,0.4722222222222222,1.4497291674134367,3.543985113543279,4.991522816985368,5.657814776798921,5.936180434129755,5.98786399393588,0.21428571428571427,0.00677876034455528,0.061191626409017735,0.05259395424836601,0.03670692431561998,0.023840090090090096,0.018036583522297804,0.0144828216374269,0.010273049679318512,0.007565891000649773,0.44575541553305636,36.28488129945856,17.088006721277043,10.742698961937716,266.218380791151,0.0,4.729644640194584,357.9473284749769,,317.67421420206125,312.0458014141815,307.6289994969456,317.72350547110625,407.92526454244694,315.29928899023844,318.01189700703014,379.1853528062448,0.03579130177125177,-0.03667723784806748,-0.4714709406365982,0.24175979511740867,0.22298024603737893,-0.11109835751101704,0.03675382121229667,0.011293111917098775,-0.022727753444051875,-0.07687022124575574,-0.058599636122354574,0.02680508786843701,0.004552441629978463,0.005567909674295137,-0.0364091058628021,-0.13762595852343226,-0.0919181289412072,-0.019664831374127154,0.004337996841440798,-0.0039644146364057895,0.006807626398006605,0.014988276759634534,0.00766912678445842,0.0002423000544683065,-0.20050308306977324,-0.07159818287757853,0.036928218150342196,-0.030050018990478992,-0.07463426360493604,-0.07379541297669694,-0.20188622588914495,-0.1694611040055771,-0.09742422886839638,-0.10675736503691359,-0.03698888577304636,-0.2011655297924838,0.1163191190846422,0.05793713845125245,-0.0274759304612396,-0.005510952826857839,0.05453949882622701,0.04138491081932689,0.11591128558088146,0.045663143265845314,0.07472586035331674,0.0085014866049126,0.025140004154703785,0.0871805034613872,-0.02712631018155479,-0.02457990371349136,0.0317676785889979,-0.041695179695578816,-0.0686624943544745,-0.09444387471354125,-0.027362932931316072,-0.04466328124037307,-0.022961180009182704,0.011891589766814599,-0.01995762038283589,-0.039595376464258286,-0.07107037352418942,-0.07888247718796935,0.03637717021631626,-0.024140112092379793,-0.09335771252601315,0.08236316404118384,-0.06940638187376451,0.033114908095051625,-0.08639224164374446,-0.03793741120855578,-0.05718337907090647,-0.0085147176017021,-0.0478150518488854,-0.08652599132650417,-0.0765269870342114,-0.051092013973044775,-0.011601399744320532,-0.003570506858254982,-0.04709909151996967,-0.029434197502583984,-0.08075229242978944,-0.056442111425914744,-0.09066114650588805,-0.029105258138506267,0.043984010219579095,0.05457949966814741,-0.0015457330397876828,0.014845085618760374,0.07954923099279114,-0.06614602793274063,0.04254438014466501,-0.03837100227281752,0.06013997232337895,0.052829399240398506,0.04029437832063642,-0.005150422851314751,30.515784593546968,39.21385236553428,11.768815442990215,13.20613666116844,31.313178771320395,38.17449800419762,41.5136947231019,42.36296151423817,42.41505854252274,91.7204839219962,74.08549489620515,10.50513824180453,7.129850783986512,0.0,17.634989025791043,17734.84555274201,16426.15740419071,5333.714448409837,211.0,69.0,85.0,113.0,139.0,141.0,164.0,187.0,195.0,613.3628049840014,49.0,5.4680601411351315,6.300785794663244,7.1846291527173145,8.036249942132116,8.92252495730139,9.784084455288346,10.671394278644025,11.539401851543076,12.427442624995232,0.5978260869565217,0.9684782608695651,1.1309841549900788,0.5554717957814033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6519608890913824,0.9554987212276215,0.9945929256784573,0.6019779090965409,13.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,2.0,8.0,2.0,0.0,0.0,5.0,2.0,1.0,0.0,0.0,20.846631997694075,6.041840829147961,0.0,11.814359458703011,0.0,24.372872350791805,0.0,0.0,0.0,60.6636706846161,61.93302788017348,62.99512209425977,18.249773604644567,284.0810491323036,-1078.0053171935936,-40.13119887703637,-11.717449099930366,-37.172597144606684,634.081288340716,2406.1548718299523,35.29604113641481,26.153857302499475,38.192934473491306,0.47368421052631576,0.8678992192044811,0.10324077033136789,108.8173824845292,0.06287439915532442,0.0,0.1321007807955186,10.0,0.22448979591836735,0.22222969248684588,0.543259209832866,0.7651529717366793,0.8672891918418494,0.9099599994782168,0.9178825976162077,2.8669000000000016,,1.7142857142857144,2.0711959050721265,1.8187846708014441,1.7095632088057127,-6.920086148265698,1.8408047735618116,1.6952941664361783,-3.1926010534492466,174.06699999999952,19.802129157825057,0.0,25.417375190660824,5.917906046161393,76.40897255993835,26.1790256236503,101.37753086309188,0.0,0.0,4.59511985013459,0.0,5.926926025970411,2.3978952727983707,7.4318919168078,4.844187086458591,9.014690384970896,7.018401799069201,10.639909716577396,55.0,25.159634130593645,4.230197900285468,0.0,0.0,0.0,0.0,4.070193563904674,0.0,89.1,0.0,27.34839835279087,0.0,0.0,0.0,0.0,0.0,-0.26386738882794836,104.05054225908725,10.633577208012662,0.0,0.0,86.77893671171081,28.975474019908237,5.917906046161393,55.48768001793382,79.12372489630388,0.0,0.0,0.0,51.1034052118891,59.98040179640718,57.20113062868284,715.8946569499539,,635.3888510272188,624.1590441446365,615.4251676281498,635.4873654996295,817.6958853910979,630.6528443524676,636.062360245975,759.2220658934094,57.20113062868284,715.8946569499539,,633.8790641895548,622.3485662008509,613.848887580122,633.9816957998535,822.7706152331591,629.0377217658715,634.5685349466726,761.5633066659391,4.847617402082635,512.0790932207523,,460.9357171305036,452.62960506270645,445.76543938815126,461.00742885827424,593.0892035980291,457.41436302569747,461.4358318217013,551.6276559652126,1.271136236192952,15.908770154443419,,14.119752245049307,13.870200980991921,13.676114836181107,14.121941455547322,18.171019675357734,14.014507652277057,14.134719116577223,16.87160146429799,2.4538485078087766,357.9473284749769,,317.67421420206125,312.0458014141815,307.6289994969456,317.72350547110625,407.92526454244694,315.29928899023844,318.01189700703014,379.1853528062448,87.90588235294118,0.0,5.895212638638172,0.0,0.0,0.0,22.26708499716242,91.50254916241806,4.035140834327709,6.238123261142777,0.0,0.0,-2.9785565536060696,4.308669225105358,-0.39356429485040856,0.0,0.0,55.38196763688177,796.8723757957952,133.37508340203618,326.0466304459817,459.22009916265387,520.5189594655008,546.1285999399374,550.883487442101,1398.0,174.33457319841986,121.28996167722435,96.86902205278723,118.03000000000002,118.03000000000002,0.9,8.16927444272074,6.614709844115208,4.250556657372601,6.60585626173333,,6.618035602076674,6.617970152321946,6.618638778791147,6.618038268985293,6.619038038997831,6.618047311605129,6.618034880720604,6.618972408227254,0.09445681460828002,0.14679680581629623,,0.14706745782392608,0.14706600338493214,0.14708086175091437,0.14706751708856206,0.1470897341999518,0.14706771803566954,0.1470674417937912,0.14708827573838343,2.951127349341021,3.392033964763571,,3.393875985843678,3.3938660961902665,3.3939671230428763,3.393876388819461,3.394027444836844,3.3938777551780843,3.393875876845154,3.3940175293331754,489.88000000000216,2229.0035486141705,350.8714975367247,,348.06329694399926,348.0678839123584,348.2269411489639,348.0637084693505,348.8858760821743,348.0712292943807,348.0625094902282,348.31385407392344,49.53341219142601,7.797144389704993,,7.734739932088872,7.734841864719076,7.738376469976975,7.734749077096678,7.753019468492763,7.734916206541794,7.734722433116182,7.74030786830941,9.213387322181589,7.364497449325777,,7.356461747781286,7.3564749262409945,7.356931793744952,7.3564629301096485,7.35882226287181,7.356484537486675,7.356459485392035,7.357181349624541,0.0,35.887265478181696,28.5052082583052,3.6766292690542652,-0.7813825973835404,20.626342850020876,3.2603443654366497,8.742259043051524,0.0,597.8732946372975,260.8325201031036,-989.7838818428139,-36.84695536653434,-10.758520454813198,-34.13047868423497,582.1895578508157,2209.2407814414833,32.40749563335448,24.013486754798723,35.067313991134654,7788.0,68.0,4.077062813720838,2.6296288181853664,0.3535533905932738,0.25,0.5019395389711432,0.17816949474366106,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.05892556509887896,0.6007329471077474,0.2493792996572941,0.7820446417108536,0.30535830889255317,31.97611624794227,26.601723653333167,21.552665148020626,16.010616163128326,20.459430718459306,13.579090160787672,15.356368108485077,8.704482620567628,13.311778046182905,6.564980489820981,10.732952082006829,4.642412295809487,6.795744590160244,2.77235572426457,5.102974596904338,1.885237819752468,6.253380175256221,3.1093053852484522,10.517214079914979,4.457876597310848,15.58202016557729,5.590423657703764,151.9635261167167,74.01815017387449,43.46875206292686,31.440726989732987,28.393716707869196,28.123317694501246,236.0,272.0,100.16727099999997,54.58672900000007,0.3804347826086957,421.09,14.506944444444445,9.708333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,18.0,18.0,92.0,0.0,2.0,96.0,18.0,2.0,11.0,85.0,20.0,49.0,76.0,0.0,0.0,0.0,36.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.0,7.0,4.0,2.0,45.0,9.0,0.0,5.0,4.0,0.0,5.0,11.0,0.0,0.0,0.0,1.0,3.0,4.110873864173311,6.532379778815184,4.61015772749913,5.012300573415317,5.4769864277604166,5.892852045636659,5.800228372924454,6.0477414961830975,6.304048813844894,6.3870897349341735 +119182,Nc1nc(Cl)nc2c1ncn2[C@@H]1O[C@H](CO)[C@@H](O)[C@@H]1F,0,38.0,7.239787096774195,3.903225806451613,11.535643170051774,173.75178362197224,155.49496729515397,1.478129127527065,7.283864516129033,7.501066910531932,8.659587645161292,229.80156023645984,32.0,7.090393939393939,4.757575757575758,9.912457912457912,157.2859612007333,124.72251317682422,1.6776618406666663,7.200363636363636,3.9433844619029808,8.452596303030301,267.8503601877814,30.280701754385966,7.197505263157894,4.315789473684211,9.048732943469787,164.71589906310962,117.14878465080704,1.483552322292948,7.2741807017543865,4.003736192332683,8.591478877192982,236.34648552088046,26.17808219178082,7.202858904109588,3.4383561643835616,8.19482496194825,170.2308074394499,100.10017979318356,1.2665859086683837,7.228083561643835,5.142116241050792,8.625609260273974,196.99948504679855,24.726027397260275,7.014231506849313,3.136986301369863,6.374429223744292,171.98487644158752,93.66348648433973,1.221424618186863,7.059465753424659,4.441935847567507,8.497009452054796,185.1665757371006,23.19402985074627,6.971240298507464,2.925373134328358,5.903814262023217,175.53192819612124,86.6812162858746,1.1954671091140452,7.029038805970147,4.705515631717954,8.495419791044778,174.77594779765874,24.45098039215686,6.8723529411764686,2.9019607843137254,6.19607843137255,170.561090227525,91.8935992175686,1.2279357182537842,6.9558294117647055,4.3513273622206095,8.414560784313725,182.19558598581767,26.068181818181817,7.04375,2.522727272727273,5.457070707070707,175.23824104907013,99.51791762919997,1.177882341641932,7.118304545454547,5.053778526000748,8.583677090909092,173.19162581802567,21.65625,6.792375,2.125,3.170138888888889,175.12317411449774,77.89572171410002,1.0981164002045938,6.8958,4.4151234567901225,8.43949375,149.202064941189,12.67637877211238,0.2463215400624349,0.04025501732085709,0.7554630593132156,4.912860831695379,2.1409781823174803,59.531832466744135,0.22678212184056193,0.22541540062434967,2.9206828068803103,0.1597295379812694,41.84474631916481,-0.4711001797370163,-0.05789084602528934,-0.02186405135056604,0.2171664617034024,0.40985256270260345,-0.6687664291542141,-1.9523003473847318,-0.004317132486252975,-0.04831882193422261,-0.5998331909070179,-0.04100626525399676,1.802959673117729,-0.015371415009949268,-0.035134103729667604,-0.001059017252480733,0.02438979863811458,-0.2459146929514659,-0.0018479513198179666,-0.13119438649624351,-0.0046136669983734375,-0.027001648502108573,-0.5282299805162275,-0.021034128247257058,0.30176423467472263,0.6276424386697649,0.027151946459880505,0.0019688428809983547,-0.0731829002323493,0.27374276999144564,-0.10067998533787288,2.964185978428919,0.0137619655462547,0.021474966145424976,0.25708502312361525,0.015680293658147184,0.09587222068356514,0.5542884837426768,-0.014396882528188389,0.003409026983445109,-0.058600487505880025,-0.516478884864176,-0.13820976974963348,2.5043618004984576,0.006895347401148203,-0.009936832352144591,-0.17959911377364782,-0.00608618491012501,0.13461827122201214,-1.1289546026371784,-0.0164956854644571,-0.005357215732972912,-0.017379284638203384,-0.37492922330959005,0.19426830605666792,-5.26792962997311,0.013826471589845396,-0.01918997934365632,-0.0008469081257846227,-0.012988155217668159,0.023427275457214528,-0.35063557160637404,0.0069983840362367825,0.002795412989546655,-0.07298361592295609,0.0972515366290913,-0.2381473277314984,-1.8333988815225162,-0.03341845286292751,0.006827293872804075,-0.0297552001388874,0.004227879476035992,-2.717308496369384,0.15426638917793978,0.012865703339324557,-0.0015728510671378022,-0.25692933497303944,-0.8525172525345955,0.10768549512055783,1.2454938655571768,-0.023918768894576583,0.014939584712893762,0.16307134600300585,0.009855429760665972,-4.92194643065373,-3.1854513527575437,-0.025144927159209095,0.0022764247717426767,-0.21614854318418317,-1.314132735319433,-0.19991947622540146,-15.711715133976075,-0.08243115911409822,-0.027025078043704444,-0.18160127795327005,-0.009443878707075958,-16.61660990270694,,,0.45,1.2,0.45,0.05,0.75,-0.3,0.7741085805404256,0.01950688784599732,0.03240688784599732,0.8918988999710337,0.2396419949510895,0.23656179532156796,1.6660074805114593,0.47620379027265747,2.0294822827630417,1.067923098407863,0.5071433882079293,0.2771558814303047,0.17725991471694463,0.9615591843551785,9.775917584258075,1178.0,224.43340000000003,121.0,357.60493827160496,5386.305292281139,4820.343986149773,45.822002953339016,225.79980000000003,232.5330742264899,268.447217,7123.848367330255,1056.0,233.983,157.0,327.1111111111111,5190.436719624199,4115.842934835199,55.36284074199999,237.612,130.13168724279836,278.93567799999994,8839.061886196787,1726.0,410.2578,246.0,515.7777777777778,9388.806246597249,6677.480725096001,84.56248237069804,414.6283,228.21296296296293,489.714296,13471.749674690187,1911.0,525.8086999999999,251.0,598.2222222222222,12426.848943079844,7307.3131249024,92.460771332792,527.6501,375.37448559670787,629.6694760000001,14380.962408416295,1805.0,512.0388999999999,229.0,465.3333333333333,12554.89598023589,6837.4345133568,89.16399712764101,515.3410000000001,324.261316872428,620.28169,13517.160028808345,1554.0,467.07310000000007,196.0,395.55555555555554,11760.639189140124,5807.6414911535985,80.09629631064102,470.9455999999999,315.2695473251029,569.1931260000001,11709.988502443135,1247.0,350.4899999999999,148.0,316.00000000000006,8698.615601603775,4686.573560095999,62.624721630943,354.7473,221.9176954732511,429.14259999999996,9291.9748852767,1147.0,309.925,111.0,240.11111111111111,7710.482606159086,4378.788375684799,51.826823032245,313.20540000000005,222.36625514403292,377.68179200000003,7620.43153599313,693.0,217.356,68.0,101.44444444444444,5603.941571663928,2492.6630948512006,35.139724806547,220.6656,141.28395061728392,270.0638,4774.466078118048,392.9677419354838,7.635967741935482,1.2479055369465697,23.419354838709683,152.29868578255673,66.37032365184189,1845.4868064690681,7.03024577705742,6.98787741935484,90.54116701328962,4.951615677419351,1297.1871358941091,-15.546305931321537,-1.9103979188345483,-0.7215136945686793,7.166493236212279,13.525134569185914,-22.069292162089067,-64.42591146369615,-0.14246537204634818,-1.594521123829346,-19.79449529993159,-1.3532067533818932,59.49766921288506,-0.8761706555671083,-2.0026439125910533,-0.06036398339140178,1.390218522372531,-14.017137498233556,-0.1053332252296241,-7.478080030285881,-0.2629790189072859,-1.5390939646201887,-30.10910888942497,-1.1989453100936522,17.20056137645919,45.817898022892834,1.982092091571277,0.1437255303128799,-5.342351716961499,19.983222209375533,-7.34963892966472,216.3855764253111,1.0046234848765931,1.5676725286160231,18.76720668802391,1.1446614370447443,6.998672109900255,40.46305931321541,-1.0509724245577523,0.24885896979149297,-4.277835587929242,-37.70295859508485,-10.089313191723244,182.8184114363874,0.5033603602838188,-0.7253887617065552,-13.110735305476291,-0.44429149843912574,9.827133799206887,-75.63995837669096,-1.1052109261186258,-0.3589334541091851,-1.1644120707596268,-25.120257961742535,13.01597650579675,-352.9512852081983,0.9263735965196416,-1.2857286160249735,-0.056742844427569716,-0.8702063995837667,1.5696274556333734,-17.882414151925076,0.3569175858480759,0.1425660624668794,-3.7221644120707604,4.959828368083657,-12.14551371430642,-93.50334295764833,-1.704341096009303,0.3481919875130078,-1.5175152070832574,0.21562185327783562,-138.58273331483858,6.78772112382935,0.5660909469302805,-0.06920544695406329,-11.304890738813736,-37.510759111522205,4.738161785304545,54.80173008451578,-1.0524258313613697,0.6573417273673255,7.175139224132257,0.4336389094693028,-216.5656429487641,-101.9344432882414,-0.804637669094691,0.07284559269576565,-6.916753381893861,-42.052247530221855,-6.397423239212847,-502.7748842872344,-2.637797091651143,-0.8648024973985422,-5.811240894504642,-0.30220411862643065,-531.7315168866221,0.721939655491296,0.5387298075912412,0.43291253661150697,0.27927984805022255,0.269966440933874,0.1431116270633611,0.1704320570505234,0.07102224807096623,0.10609062394473025,0.03666378555850864,0.0653375163484816,0.018530957065927084,0.04270504516920156,0.009491804700579703,0.026007908063719026,0.004701108393047635,17.001102805425248,5.761444804772682,4.107632680984649,2.245803188782472,0.45098641395911654,-0.4063128082501537,3.275183666160636,0.9876782992656563,7.003037759590384,0.7740138675618979,17.42476973902378,11.039606358635192,35.45051725004419,11.784892757089223,2.2048775753572496,0.5460532933881053,3.988552634184243,2.291093161442104,8.00182046921061,1.16420471766913,4.00978312159686,2.4841589353388662,22.455782449817992,13.304120179031102,0.408330433548699,0.7759802651074968,0.9014634482078463,0.9262323153054671,0.9262323153054671,0.9262323153054671,1.7456443936767398,653.0999260663426,0.0,2.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,2.8270179590478763,0.9117633066609807,0.25806451612903114,0.12903225806451424,0.12903225806451424,0.12903225806451424,14.463304327423174,1287.3977384092204,82.59202185449256,41.52895930352324,93.9991568744281,,9.0,305.0,31.214391306254683,9.496942442515525,22.265327036263272,0.0,0.0,10.894419722555895,0.0,0.0,14.951935562841626,27.177997716035456,9.0,24.0,9.0,1.0,15.0,0.0,0.05,-6.0,0.3119815668202762,0.02756598240469199,-0.28441558441558423,0.11749999999999983,0.2662388059701491,0.0,0.7548387096774194,1.0049999999999997,0.44285714285714317,0.7272727272727274,0.8874999999999998,15.482171610808512,0.39013775691994645,0.6481377569199465,17.837977999420673,4.79283989902179,4.731235906431359,33.32014961022919,9.52407580545315,0.4477611940298509,0.2296296296296296,0.0,0.48888888888888893,0.5,0.4848290155543126,-1.309415806967959,-0.10702536818695438,-0.04223921957961158,-0.13094158069679587,0.5151709844456873,1.3913627457984905,0.0662410238527427,0.04488266921930614,0.06625536884754715,-0.8961881256704902,0.5795062760257311,0.9191964637183571,1.5468117504666752,0.8734034560480839,0.5920862768925903,1.440437401343427,0.5754917838403988,0.983958452969738,0.8671055470928246,0.9128206101478299,0.9689547162385783,0.8360813304460212,0.664310587666013,1.0061489666120815,0.987784675332782,1.0899666521676088,0.9065536308883352,1.103861090205676,0.6662937846218266,0.9524248059012654,0.9519342714248914,0.9798980300122208,1.0035783336715256,0.8694691585064173,0.7017202564754198,0.9731333760990543,0.9356831960770975,1.1055134156005884,0.9522097549411634,1.1224236457293624,0.7060666312635988,0.8578987426709439,0.9527791788602575,0.9589988168243041,0.9649063917110061,0.9182240445213367,0.8062985361289846,1.059598719806113,0.9070414476277797,1.0265481716291178,1.0930415893566048,1.0496507896882468,0.8107237547910401,0.8875549069287346,1.0314349642034577,1.0300668460967135,1.018467033248313,0.9456494736496914,1.1559567945856013,1.1557987264110345,1.0118462934839862,0.9750832613790549,1.1259006519093504,0.9972823354850011,1.1589877159651485,0.9384874362145105,1.1728210669589743,1.1494280761388032,1.1386442222890758,0.9917334173656269,1.0792683515698187,0.896650476932424,0.8397018293701526,1.0046994004213252,0.9490247453767582,1.0405759369370133,1.080929528041128,1.1529481495474823,0.9090490785967802,0.918017447484714,0.9115232754753679,1.0696301764649219,1.1260466261697588,0.9435310586378324,1.0116192221692502,1.2373215627347856,1.1733765316848928,0.8790179278462208,1.1147836578561272,1.0861264591828512,0.94484407055671,0.9746102729775079,0.9404999083725719,1.0828872247432415,1.6043778730914469,1.0511069482288826,0.9344110126269181,1.1809142561983468,1.2327673192180366,0.9393730099493264,1.6105564079785673,1.4197772311077226,1.1132672388403508,1.1210540242178795,1.0410071854943461,1.4279696251380989,4.5,0.0,3.1111111111111125,2.361111111111111,1.4644444444444447,0.6913888888888888,0.44671201814058953,0.35423752834467115,0.10254472159234063,0.015625,4564.280921955039,4902.491774527098,2091.856046781102,1964.213418758327,10.563661407901655,0.4723340062817687,5.574084894103358,0.8951382349911118,1.0,0.5,2.1271783513389986,4.042433003725894,4.696131794257844,4.825164052322361,4.825164052322361,4.825164052322361,0.20454545454545456,0.0,0.09427609427609432,0.06944444444444445,0.048814814814814804,0.02880787037037037,0.022335600907029476,0.022139845521541947,0.012818090199042578,0.005208333333333333,0.5083905484121258,14.917355371900827,5.652892561983471,2.4934359438660025,116.52072798085469,1.0,3.9481301085202194,77.79164539912684,,57.13408929060121,56.38717570700269,56.877916314079755,57.058375476846436,95.38687939196619,57.362793627967434,58.16110255640861,82.01752905934306,-0.03716362442351607,-0.2350214520850097,-0.5431385403786114,0.2874613907671758,0.08342441944588272,-0.3123648968857378,-0.03279422565188686,-0.019036476293700585,-0.21435457293685525,-0.2053743013428158,-0.2567231194195612,0.0430868826247843,-0.0012126030064489616,-0.14263512529501965,-0.026307708279932368,0.03228456816973568,-0.05005529392669632,-0.0008631341202261438,-0.002203768657205903,-0.020344050760831376,-0.11978617444646689,-0.18085838670048857,-0.13168590176303907,0.007211520231788697,0.04951275517662487,0.11022968780155534,0.048909254349724256,-0.09687158005962489,0.05571962637846181,-0.04702522714588938,0.04979161325304041,0.06068364399522632,0.09526840706510814,0.08802223319766014,0.0981677769579846,0.0022911411614809063,0.043726090369127606,-0.05844751751933357,0.08468576615613106,-0.07756896486659874,-0.10512792903314226,-0.06455449704771382,0.042067608147245465,0.030405163093041098,-0.044082313473799095,-0.061492166609315675,-0.03810306463691583,0.0032170889553309883,-0.08905970884373081,-0.06696809974586856,-0.13308193834007395,-0.02300481065745654,-0.07631586486039454,0.09073810637639668,-0.08848929071544871,0.0609680845986882,-0.08513162494889177,-0.00028996922356290945,-0.08131342131091125,0.0005598618110509342,-0.0276605470623646,0.02841157957384851,0.06944259810561017,-0.09660778912115811,0.01979529645978813,-0.11123295402932049,-0.030796950229050914,-0.14735929178060247,0.03028761057981848,-0.010187754749948362,0.02646898957744292,-0.06493786521355638,0.012169594483664437,0.05223133687806392,-0.03907217464598805,-0.34009516654144745,-0.17352766173113854,0.050297334185813496,0.020921477030846288,-0.10547025797471177,0.06627579425147746,0.055833295426280266,0.06170073416115224,-0.1176239997516603,-0.25129032589065836,-0.10208172274676275,0.056550087995197715,-0.2861139807162534,-0.26748828846143785,-0.09337763358662564,-0.2639212415097923,-0.3634817350022461,-0.11989011384692923,-0.062177678974748074,-0.059124184708925845,-0.3971014611001851,0.19999999999999996,4.9973364337250334,10.051997297324872,26.724214490247594,43.942184751207456,48.27197708821279,48.40204160434182,48.40204160434182,48.40204160434182,40.58964565526083,21.358461968157258,10.142867764158584,5.543117628606094,3.5451982943388924,19.23118368710357,3009.9281325584125,2408.497564368921,1083.7913219907819,85.0,33.0,47.0,64.0,76.0,87.0,93.0,103.0,100.0,303.0534451120003,22.0,4.709530201312334,5.602118820879701,6.520621127558696,7.4318919168078,8.355379895253634,9.272469743441732,10.197611332567385,11.117316623885428,12.043041820330265,0.8387096774193552,1.057806451612903,1.1633820361744787,0.8155921673949416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6698420513811092,1.0418722327640733,1.0617085261847146,0.666183180895977,1.0,3.0,0.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,20.683585220643646,17.72463349311287,23.864616564847918,5.283586320044258,0.0,4.567099647791355,9.374393568622029,9.967957041894417,0.0,0.0,11.600939890232516,0.0,12.934202039277459,231.10661090686094,-624.1677781397908,-51.016480716334435,-20.13444445612229,-62.41677781397908,245.5699152342841,663.2299602694295,31.575541138158126,21.394514847400952,31.582379060449018,0.4444444444444444,0.6144783624775192,0.1457234209688194,235.59673152240083,0.08366211222284091,108.14647180000671,0.3855216375224808,5.0,0.09090909090909091,0.429369007214994,0.815961409371406,0.9479099131401035,0.973954956570052,0.973954956570052,0.973954956570052,-0.34940000000000027,,2.4446778711484596,2.2923332956484552,2.1310145910351235,2.4892713699023465,-7.60205159766166,2.1344183004248585,1.9700835388791105,-3.256977610954319,66.644,19.34033279115628,0.0,19.519035210632982,0.0,24.607509341741768,12.340549441675103,11.6109063948088,0.0,0.0,3.8066624897703196,0.0,5.176149732573829,3.044522437723423,6.736966958001855,5.476463551931511,8.385944904806284,7.627057417018934,10.082679216321155,26.00000000000001,1.2735679642227262,11.652237811791382,0.0,0.0,0.0,0.4519241307634174,-0.045533772150833984,1.2666666666666666,32.791999999999994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.06484312140884,5.733667477162185,10.208277825509848,0.0,54.7185801358342,4.736862953800049,0.0,6.22790117073487,6.3273200747645415,5.283586320044258,11.16387793838399,0.0,25.283357189243187,20.765103592814384,25.397628158582584,155.58329079825373,,114.02371079408758,112.54511808444053,113.542731169056,113.86782381670264,192.00295814880764,114.51214542589238,116.1251967589293,164.4845711864583,25.397628158582584,155.58329079825378,,111.82552609460448,110.50288961579531,111.67679493629589,111.6294417360688,198.37581038159408,112.59946713494725,114.35342251318838,167.29203572964036,4.881224479538112,113.8220471981696,,83.6781498600044,81.96352293123815,82.8270443878035,83.60773816717611,139.88716261057678,83.55845743841661,84.78424335802154,121.65293844850527,1.2698814079291292,7.779164539912687,,5.701185539704379,5.627255904222027,5.6771365584527995,5.693391190835132,9.600147907440382,5.725607271294619,5.806259837946465,8.224228559322915,2.5202269693973745,77.79164539912684,,57.13408929060121,56.38717570700269,56.877916314079755,57.058375476846436,95.38687939196619,57.362793627967434,58.16110255640861,82.01752905934306,32.29803921568627,0.0,0.0,5.7132547905993665,14.06854969765684,5.649132023179643,18.658436091514794,32.91296431172615,-0.49742506158842126,0.0,5.271000566893424,0.0,-5.350699798437896,0.0,0.0,0.0,0.0,20.651678607775285,292.9074112146832,65.94252889150896,125.31542311550272,145.58008562199316,149.5800856219932,149.5800856219932,149.5800856219932,730.0,117.24998148203697,183.76911492646187,70.3364467081473,119.31000000000002,119.31000000000002,0.8,8.395334478647515,5.459431618637297,4.045062824521199,4.407044376170858,,4.39904883174006,4.394766373132481,4.390883466337358,4.399183201884937,4.3865763294988405,4.396037372338734,4.396798093537853,4.39603927894194,0.20225314122605992,0.2203522188085429,,0.21995244158700297,0.21973831865662405,0.21954417331686787,0.21995916009424685,0.219328816474942,0.21980186861693668,0.21983990467689263,0.219801963947097,2.090644262351816,2.1763514358428577,,2.174535523510531,2.1735615528626737,2.172677632579283,2.1745660683164365,2.1716962239976643,2.1738507185071154,2.174023750563491,2.173851152216529,183.48999999999987,114.8500776077748,107.34357291304741,,107.67558740406608,108.24603782476072,108.48615602466167,107.6337297008357,109.42044770255436,108.132013736763,108.09431870070829,108.32682831832084,5.74250388038874,5.367178645652371,,5.383779370203304,5.412301891238036,5.424307801233083,5.381686485041785,5.471022385127718,5.40660068683815,5.404715935035414,5.416341415916042,5.436774785426429,5.369181832696972,,5.372270066828318,5.37755394469194,5.379769751156872,5.371881252221311,5.388344960784352,5.3765000106378205,5.37615134786385,5.3783000261263,20.60621693121693,11.652237811791382,18.55140994618012,6.10105615394306,0.061492373183842375,0.0,-4.0771318342151694,-0.49742506158842126,0.0,214.73420937890688,110.16309645533573,-297.5261282129124,-24.318358803809016,-9.59761703912621,-29.752612821291244,117.05741411865401,316.1461534939613,15.051319260764034,10.198263015934238,15.05457873780768,753.0,34.0,1.6202752950685635,0.6742650631647201,0.0,0.0,0.5487952876394917,0.11675569579918854,0.0,0.0,0.0,0.0,0.0,0.0,0.17479246499677625,0.07422843462213273,0.49275936539252807,0.14630224079787818,0.924889071004833,0.19390116063563814,14.438793109825921,10.774596151824825,9.524075805453153,6.1441566571048964,8.908892550817843,4.722683693090917,8.0103066813746,3.338045659335413,6.789799932462736,2.346482275744553,4.9656512424846015,1.4083527370104585,3.7153389297205357,0.8257870089504342,2.4187354499258693,0.43720308055343005,4.269728465242959,1.3248331650901095,7.123101497122072,1.7797753618420324,10.505811010817613,2.088621799027534,64.2667204219294,33.26386300416752,25.693167577530563,25.31198095683548,25.31198095683548,25.31198095683548,110.0,135.0,34.67772299999999,18.954277,0.45161290322580644,104.1,7.5,4.36111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,9.0,10.0,31.0,0.0,0.0,33.0,10.0,0.0,4.0,29.0,10.0,22.0,23.0,0.0,0.0,0.0,10.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,8.0,3.0,3.0,20.0,10.0,0.0,5.0,3.0,0.0,3.0,2.0,0.0,0.0,2.0,2.0,2.0,3.332204510175204,6.787655597128183,3.9749978045895347,4.608913172266925,5.237438806241952,5.719491768361381,6.108170614152915,6.438413930380153,6.798537507279088,6.782767641459485 +2942,CN(C)/N=N/c1nc[nH]c1C(N)=O,0,25.391304347826086,6.726060869565218,3.0434782608695654,9.565217391304348,176.64497041065178,100.38650699999997,1.2644666542821734,6.726008695652174,5.764492753623188,8.129968173913046,196.8788987434668,26.82608695652174,6.96790434782609,3.391304347826087,9.173913043478262,165.3678261419218,102.00416213043472,1.4794942204347827,7.026530434782608,4.198067632850242,8.275823826086956,229.06650175520826,22.72222222222222,6.780047222222222,3.25,7.416666666666667,174.7076791617151,86.00845769444446,1.2538162770539727,6.800122222222221,4.141975308641976,8.176891222222222,191.57063017888646,21.13888888888889,6.914936111111111,2.7777777777777777,6.5,172.14709094709582,77.01131561111112,1.2040951860235831,6.932913888888889,4.444444444444445,8.306674888888887,178.73454255335554,19.135135135135137,6.843070270270271,2.3513513513513513,6.081081081081081,183.38489244019974,70.36559916216216,0.9949906043146215,6.816016216216217,4.770270270270271,8.28928854054054,149.4211484431109,18.555555555555557,6.720474074074075,2.7037037037037037,4.37037037037037,173.78207846359066,66.36369840740741,1.173876087988815,6.736955555555557,4.037037037037036,8.149598666666668,167.33329193214055,16.96153846153846,6.5669192307692335,2.3846153846153846,2.576923076923077,173.40931286630382,59.603534461538466,1.2241159488345381,6.593584615384616,3.333333333333333,8.019508615384614,170.3503619813857,11.857142857142858,6.2457857142857165,2.0,0.6428571428571429,166.61046842667142,36.69535671428571,1.072755977142857,6.296857142857144,3.3214285714285707,7.775789714285714,134.96410812675148,4.5,5.957285714285716,1.0,0.0,183.15908777704598,8.646336000000002,0.6213919219352856,5.93057142857143,3.0714285714285716,7.699721142857143,65.92250827892079,7.9697542533081265,0.16355349716446116,0.031094187956326146,0.5935727788279774,4.839319470699435,1.5213123530819832,37.64151083931947,0.16744448527480155,0.15012892249527413,1.8509766855702596,0.0905243251417769,40.5948001692163,0.14933837429111585,-0.00782268431001899,-0.01790319444401472,0.26086956521739135,2.085066162570888,-0.5972745041425348,0.6761610359168075,-0.03603105442344019,-0.0042423440453687455,-0.2745221592102499,-0.007217119092627554,-3.8394229245720943,1.9988447805082967,0.013683580130224686,0.0005130881162467883,0.004253308128544378,0.7899075824406636,0.047452387285030505,9.561265659472797,0.043365938963832625,0.016462140306658192,0.39888912226656403,0.005142810123923565,12.63968698583653,-1.671445074564167,-0.01722898025624875,0.0010364048427628262,-0.03318630539802565,-0.42869145137576115,-0.4646270299024596,-8.014727804295326,-0.05999367964690648,-0.017428801722327324,-0.33356525239795565,-0.009205914513757562,-13.480883293114346,1.3604455116742455,0.018759781331425876,0.0003067688604571085,-0.021304858733970276,0.4074490369386402,0.2413714901540954,6.464511857507791,0.0325595905274346,0.018475542839625946,0.22716667518179803,0.009599421039186675,8.462435646713436,-1.74270111321151,-0.011495848211160143,-0.0004483859791026573,-0.1797241475880418,-1.8538122243226212,-0.02321803277967584,-8.322499315970038,-0.02791958392136506,-0.014175299306868328,-0.07239375481341452,-0.002932093257718942,-9.648119600075661,-2.379453249963647,-0.029044968736367575,0.003712035723863554,-0.4631379962192816,-2.8142358586592993,0.5124986614909142,-11.22683439450342,0.010524685818833982,-0.031009190053802503,-0.15894770006301207,-0.008991950559837132,-4.875845589382632,-5.007021334053469,-0.04614790710234936,-0.0036564356856626837,-0.24574669187145556,-2.5504995949230356,-0.5134284934298742,-24.039432466648655,-0.14970176128418036,-0.047912773426951036,-0.04222927356197682,-0.020021815825006787,-35.03873191734792,-1.034971644612477,-0.05285660275452323,-0.003065257901150376,0.3194706994328924,0.22279233054280265,0.0860309051722776,-4.538777777207649,0.0439499894836516,-0.047863083985957164,-1.069403186605455,-0.032901666756683816,4.690981755175086,,,0.441025641025641,1.2115384615384615,0.5384615384615384,0.038461538461538464,0.6730769230769231,-0.1346153846153846,0.5524131468010649,0.023473281314805645,0.03008866593019026,0.7950827564589512,0.27336201888877404,0.19656574305588917,1.347495903260016,0.4699277619446632,1.9357800594309609,0.905786539287964,0.8986173993821572,0.13137612076083935,0.0,1.0299935201429966,7.9170264756521735,584.0,154.69940000000003,70.0,220.0,4062.834319444991,2308.8896609999993,29.082733048489988,154.6982,132.58333333333331,186.98926800000007,4528.214671099737,617.0,160.26180000000005,78.0,211.0,3803.4600012642013,2346.0957289999988,34.02836707,161.6102,96.55555555555557,190.34394799999998,5268.52954036979,818.0,244.08169999999998,117.0,267.0,6289.476449821744,3096.3044770000006,45.13738597394302,244.80439999999996,149.11111111111114,294.368084,6896.542686439912,761.0,248.9377,100.0,234.0,6197.29527409545,2772.4073620000004,43.34742669684899,249.5849,160.0,299.04029599999996,6434.4435319208,708.0,253.19360000000003,87.0,225.0,6785.241020287391,2603.527169,36.814652359640995,252.19260000000003,176.50000000000003,306.703676,5528.582492395103,501.0,181.45280000000002,73.0,118.0,4692.116118516948,1791.8198570000002,31.694654375698004,181.89780000000005,108.99999999999999,220.03916400000003,4517.998882167795,441.0,170.73990000000006,62.0,67.0,4508.6421345239,1549.691896,31.82701466969799,171.43320000000003,86.66666666666666,208.50722399999998,4429.109411516029,332.0,174.88200000000006,56.0,18.0,4665.0931159468,1027.4699879999998,30.037167359999998,176.31200000000004,92.99999999999999,217.72211199999998,3778.995027549042,126.0,166.80400000000003,28.0,0.0,5128.454457757288,242.09740800000003,17.398973814187997,166.05600000000004,86.0,215.592192,1845.8302318097822,183.3043478260869,3.7617304347826064,0.7151663229955013,13.652173913043482,111.304347826087,34.990184120885615,865.7547493043479,3.8512231613204353,3.452965217391305,42.57246376811597,2.082059478260869,933.680403891975,3.4347826086956648,-0.17992173913043674,-0.4117734722123386,6.000000000000001,47.95652173913043,-13.737313595278302,15.551703826086573,-0.8287142517391244,-0.09757391304348115,-6.314009661835748,-0.16599373913043375,-88.30672726515817,71.95841209829868,0.4926088846880887,0.01847117218488438,0.15311909262759762,28.436672967863892,1.708285942261098,344.2055637410207,1.5611738026979745,0.5926370510396949,14.360008401596305,0.18514116446124834,455.0287314901151,-60.17202268431001,-0.620243289224955,0.03731057433946174,-1.1947069943289235,-15.432892249527402,-16.726573076488545,-288.5302009546317,-2.1597724672886334,-0.6274368620037837,-12.008349086326403,-0.3314129224952722,-485.31179855211644,50.336483931947086,0.6941119092627575,0.011350447836913016,-0.7882797731569002,15.075614366729688,8.93074513570153,239.18693872778826,1.2047048495150803,0.6835950850661601,8.405166981726527,0.35517857844990697,313.1101189283971,-47.05293005671077,-0.31038790170132385,-0.012106421435771746,-4.852551984877129,-50.05293005671077,-0.6268868850512477,-224.70748153119104,-0.7538287658768565,-0.38273308128544486,-1.954631379962192,-0.07916651795841143,-260.49922920204284,-61.86578449905482,-0.7551691871455569,0.0965129288204524,-12.041587901701321,-73.17013232514178,13.324965198763767,-291.8976942570889,0.27364183128968356,-0.8062389413988651,-4.1326402016383135,-0.23379071455576544,-126.77198532394841,-140.19659735349714,-1.2921413988657822,-0.10238019919855515,-6.880907372400756,-71.413988657845,-14.375997816036477,-673.1041090661623,-4.19164931595705,-1.341557655954629,-1.182419659735351,-0.56061084310019,-981.0844936857417,-28.979206049149358,-1.4799848771266504,-0.08582722123221054,8.945179584120988,6.238185255198474,2.4088653448237727,-127.08577776181417,1.2305997055422448,-1.3401663516068005,-29.94328922495274,-0.9212466691871469,131.3474891449024,0.7573026909762495,0.5655233239109959,0.46992776194466324,0.27163954543604557,0.32765011652076,0.1471794317356251,0.19415703915845833,0.06231875560474031,0.12950037098126954,0.030727836780364014,0.09178052087986543,0.015546063055517449,0.06294934820672506,0.008411767748518024,0.04881427036660162,0.004816118260431367,8.022042064701202,5.796953096666283,3.54397225938201,2.2834489554433945,0.44937568974290826,-0.388906207017187,3.204817852675626,0.9728553673065707,6.021938183858883,0.994950774512,14.760199841466957,11.070781870353045,16.010065153873448,11.818538075419418,1.8982263903350471,0.7515787344287416,3.489249493467799,2.3294697535527664,7.0082723199154895,1.4667270093743539,3.702129607779398,2.5234845465900526,20.766635906651373,14.70270691729555,0.363955888534129,0.747763885014994,0.772954326940459,0.772954326940459,0.772954326940459,0.772954326940459,2.309138474806626,327.62039676887485,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.7929926503272826,0.9680288046300172,0.8482510871446496,0.8482510871446496,0.8482510871446496,0.8482510871446496,192.69418791491375,642.652470804881,50.5413350472308,27.941411774125264,53.2074010361728,,7.0,143.0,5.907179729351506,4.794537184071822,11.51179077268349,0.0,0.0,11.336232598719073,14.09534396535438,0.0,20.305460086257266,5.733667477162185,5.733333333333333,15.75,7.0,0.5,8.75,0.0,0.05897435897435897,-1.75,0.2304347826086955,0.02910144927536229,-0.2013333333333332,0.12067307692307683,0.24660869565217386,0.0,0.6637681159420292,0.9435897435897436,0.43333333333333374,0.6346666666666669,0.8229166666666667,7.181370908413843,0.3051526570924734,0.3911526570924734,10.336075833966365,3.5537062455540624,2.555354659726559,17.51744674238021,6.1090609052806215,0.4673913043478261,0.3023255813953488,0.0,0.3313953488372093,0.3333333333333333,0.2525404366665619,-0.4168432094138873,-0.06042925226153274,-0.018123617800603793,-0.059549029916269605,0.7474595633334381,1.2337566506166873,0.06938199774460964,0.05364159350507336,0.07710979066354295,-0.8810730357543695,0.769686907020873,0.826387717031246,1.7098810042961587,0.770700636942675,0.3996093749999999,1.8069099124791717,0.7745824358001836,1.3611326441889988,0.7877186841303379,0.7598581560283683,0.8460794921951025,1.080921844141046,0.6684390153911028,0.8284625471728886,1.060482724201447,1.2757430997876853,0.823567708333333,1.0567463828911368,0.6662717061065875,0.7115573937859988,0.7970983211516868,0.4856643026004724,0.8270885503203638,0.6342135363540459,1.105174731182796,1.1000138439730303,0.8688045949336082,1.051928520877565,1.100835503472222,1.4310313365373164,1.1070931259922645,1.3383652256808003,1.0935070088888101,1.2478542159180448,1.1327838945381634,1.2453532669964373,0.8595953638648138,1.0238840189244605,0.916187264598906,0.8275090377001202,0.9856102195945943,0.6469259041229387,0.853827815805329,0.5660392511570659,1.0107348938397738,1.0488564308989832,1.0332165304264835,0.6365800927219334,1.1246222503338255,0.9956095684541658,1.0016659092147888,1.372729417315404,1.3543113425925921,1.089527627668802,1.1275018914047914,1.139506476140279,1.0120040587767125,0.8923782505910158,0.95270655061237,1.1727906565596076,1.1840333527952125,1.0058862915682971,0.7972151803054361,1.8593826555609987,1.5014272836538456,0.7717963049082431,1.186550000779048,0.9506686012569643,1.033038542027665,0.6597599563557005,0.8898878269140588,1.0901493638758084,1.4959507996747088,1.0594952996721145,1.1677383720815506,1.266151046405823,1.2635881696428568,1.426221540242405,1.5104438072849486,2.0157660107950215,1.1001020996626532,0.7951428571428565,1.0055164920676845,1.9036451356791106,1.3073495527243157,1.5708519073916363,0.9833054609710871,0.0,0.9671037946428569,0.3045236664123868,1.291662969431311,0.5367062785466987,1.587054172900993,2.5284620060790255,1.7050403533796816,0.8432012230904092,3.0,0.0,1.5555555555555562,0.75,0.6150000000000001,0.2533333333333333,0.27437641723356004,0.0,0.0,0.0,2200.9164840388494,2422.930399248031,1289.3244440018157,1180.9507514320076,8.770053902492842,0.40428902296865205,5.224417378871597,0.6786663978954633,1.0,0.3333333333333333,1.7305693057297304,3.555533151426996,3.6753108689123635,3.6753108689123635,3.6753108689123635,3.6753108689123635,0.23076923076923078,0.0,0.09150326797385624,0.05357142857142856,0.0473076923076923,0.028148148148148144,0.034297052154195005,0.0,0.0,0.0,0.48559681992455106,11.076923076923077,5.024221453287197,3.3240997229916895,74.63319819663151,1.0,3.4535426896426573,41.78505650760672,,29.412288239758734,28.111158376310087,27.070271530799655,29.42366385377619,54.14057194133783,28.857330114230614,29.49155727018634,45.684087983710434,0.018738140417457378,-0.04782951416901158,-0.5757730180688735,0.43949044585987257,0.4308593749999998,-0.39260478161012324,0.01796317471961048,-0.2151820907347759,-0.028258006351189854,-0.14831205673758854,-0.07972574312290409,-0.09457918030308698,0.25080381615011604,0.08366424666826394,0.016501093933292445,0.007165605095541323,0.1632269965277777,0.031191745198741117,0.25400855189599125,0.25898696450147407,0.10965335681521593,0.21550197005516142,0.0568113610995611,0.3113622171595615,-0.20972353995361587,-0.10534155829712498,0.03333114356350215,-0.05590941259731071,-0.08858506944444437,-0.3054119878545553,-0.2129225853475393,-0.358289970245648,-0.11609223214717979,-0.18021040189125284,-0.10169547797610744,-0.33208399196252525,0.1707010615929023,0.11470119353401527,0.009865794240646703,-0.03589258047856775,0.08419552364864867,0.15866004746829787,0.17173890509078893,0.19445006190558875,0.12306451370293112,0.12272800460034493,0.10604244797353976,0.2084610741138871,-0.2186643474594139,-0.07028800001506845,-0.014420250489655664,-0.3027836753951404,-0.38307291666666654,-0.015261844638702298,-0.2210989710667124,-0.16673934573327293,-0.09442084224187082,-0.03911111111111107,-0.03239011451481988,-0.23766885315011324,-0.298560429134433,-0.1775869623084942,0.11938037195495683,-0.7802547770700634,-0.5815354567307691,0.33687931374030966,-0.29825674220217857,0.06285477722100787,-0.20655040706615765,-0.0858723404255319,-0.09933187069612688,-0.12011010200956881,-0.6282529140688534,-0.2821578743494879,-0.11759225520854222,-0.41401273885350304,-0.5270368303571427,-0.3374905175717097,-0.6386415404330054,-0.8940381705524509,-0.31914419041047387,-0.0228145896656535,-0.22117608492136367,-0.863133499149932,-0.12986242884250485,-0.32317623084129654,-0.09857977013118126,0.5382165605095542,0.046037946428571314,0.05655045461110603,-0.12057905424100415,0.26247498931674623,-0.3188132119409825,-0.577750759878419,-0.36345663671233186,0.11555622236397492,,1.3103706971044482,2.381101577952299,16.83112264474418,33.89936531659204,34.02010125581728,34.02010125581728,34.02010125581728,34.02010125581728,25.16514077260249,11.775225010743533,11.682026191968044,1.7078895698909116,0.0,13.389915761858955,1349.9778626097523,1099.3680170420405,374.6036129557623,4.0,17.0,19.0,22.0,19.0,17.0,13.0,7.0,4.0,182.09160894,13.0,4.110873864173311,4.890349128221754,5.726847747587197,6.53813982376767,7.3796321526095525,8.203851372183879,9.046526486737967,9.877502855564135,10.720421929870149,0.6956521739130433,1.0246956521739128,1.1752288629270438,0.6594932905706004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6271785993230928,1.0056265984654735,1.032553279077868,0.6074660660713814,1.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,10.717645998109393,0.0,5.693927994848461,5.817862777835028,5.907179729351506,9.803449708026353,4.9839785209472085,0.0,5.114250125629398,5.2232529187334515,0.0,14.09534396535438,6.3273200747645415,98.32530556430758,-162.2957356019096,-23.527815078117182,-7.056336330517808,-23.185105085987082,291.01949347922135,480.35673520297144,27.013519969113617,20.885075443607455,30.022295950185715,0.42857142857142855,0.7560843913153787,0.22064974480983351,58.94720267686846,0.1627749411684223,50.50496836749374,0.2439156086846212,4.0,0.23076923076923078,0.38256783537860295,0.7860029741973945,0.8124816029083346,0.8124816029083346,0.8124816029083346,0.8124816029083346,0.0688999999999999,,1.1071428571428574,1.399720800372266,1.5246316986241886,1.104266649991819,-4.19138517343006,1.225826193390453,1.090072758891449,-2.3149422475185983,45.308600000000006,4.794537184071822,0.0,14.976869565848947,16.071170521525033,0.0,14.09534396535438,12.021248069613002,0.0,0.0,3.295836866004329,0.0,4.553876891600541,2.3978952727983707,5.973809611869261,4.59511985013459,7.4770384723196965,6.580639137284949,9.030854790001436,15.999999999999998,1.3374074074074074,3.765925925925926,2.571010015117158,0.0,0.0,0.0,0.353518518518519,0.0,23.567999999999994,0.0,10.763244520030234,0.0,0.0,0.0,0.0,7.3728240740740745,-0.6062906273620554,27.030263847322004,5.733667477162185,5.817862777835028,0.0,34.979393260554836,0.0,0.0,10.488465178920283,16.66482311912739,0.0,0.0,0.0,15.168345683123809,14.425107784431136,15.386148684309228,83.57011301521345,,58.654246809185636,56.00697509101615,53.905984338709914,58.67744053062843,108.92597237089566,57.52607158332041,58.815411039002775,91.72432092857758,15.386148684309228,83.57011301521348,,57.71743362237246,54.822595952239645,52.61591136295101,57.74306105755842,112.47252905610571,56.488834035066944,57.89304178147927,93.6831182149395,4.510240446465901,62.0422074575836,,43.368325091277214,41.393470191435426,39.79786221836998,43.385560468962844,82.9832528680515,42.52130013460231,43.48957335874541,69.22881272102191,1.1835498987930175,6.428470231939496,,4.511865139168126,4.3082288531550885,4.146614179900762,4.513649271586802,8.378920951607359,4.425082429486185,4.5242623876155985,7.055716994505968,2.321205418974077,41.78505650760672,,29.412288239757657,28.11115837630594,27.070271530787593,29.423663853775125,54.14057194133783,28.857330114228702,29.491557270185346,45.684087983710434,23.12941176470589,0.0,3.416854686318972,0.0,0.0,5.039936696900982,0.0,23.748725418790965,0.0,0.0,0.0,0.0,0.0,1.485568783068783,0.0,0.0,0.0,13.971719519641772,294.37752539663506,39.8030940317838,81.7772624828209,84.53214998498436,84.53214998498436,84.53214998498436,84.53214998498436,148.0,92.4941453607156,94.96727364689389,56.90507089201317,99.72999999999999,99.72999999999999,0.75,6.492334527506693,4.700439718141093,3.13000228905965,3.549412278997213,,3.5406505604021326,3.5412663711600847,3.5415067416614265,3.540644786018258,3.5308897726046933,3.5409103224356064,3.540612874643075,3.5335055027755247,0.24076940685074233,0.2730317137690164,,0.27235773541554864,0.27240510547385266,0.2724235955124174,0.27235729123217367,0.2716069055849764,0.27237771711043124,0.2723548365110058,0.2718081155981173,1.4033980003482471,1.5291462990369862,,1.5266747488536745,1.5268486596084758,1.5269165342947337,1.5266731179701731,1.523914163878813,1.5267481117853468,1.5266641050584242,1.5246547029308914,133.08999999999997,67.48355901927593,51.6329724831451,,51.97794730806244,51.95011681747674,51.96373486737462,51.97828270825745,52.31907911247663,51.96798455776011,51.979403863387994,52.21472634853878,5.191043001482764,3.971767114088085,,3.998303639081726,3.9961628321135954,3.997210374413432,3.998329439096727,4.024544547113587,3.9975372736738546,3.9984156817990764,4.01651741142606,4.474248262593163,4.206524734491749,,4.213183802867656,4.212648230662302,4.212910333351309,4.213190255587132,4.219725370400307,4.212992111857647,4.2132118250384645,4.217728833526106,0.0,17.100180461073318,8.858392857142857,5.197899659863945,-0.4107350718064995,0.0,1.3374074074074074,0.0,3.416854686318972,153.30086608998604,38.282446335828915,-63.1890005635472,-9.160432433522844,-2.7473478505890085,-9.027000080506742,113.30692620641702,187.02439653680656,10.517573503832896,8.131495501600286,11.68902478355041,262.0,14.0,1.0443310539518174,0.371425565098879,0.0,0.0,0.2041241452319315,0.02723139127471974,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.032274861218395144,0.15137471507731048,0.030571187338938217,0.24312085101930211,0.029576878973482594,9.844934982691242,7.351803210842947,6.109060905280622,3.5313140906685927,5.57005198085292,2.5020503395056264,3.6889837440107085,1.184056356490066,2.84900816158793,0.6760124091680083,1.7438298967174433,0.29537519805483153,1.070138919514326,0.1430000517248064,0.634585514765821,0.06260953738560777,1.727446581749137,0.40318247867353907,2.336296939847226,0.3834407154860028,2.8223792631623628,0.31340505547870356,46.24419247228705,22.611722136511215,22.271305383566094,22.271305383566094,22.271305383566094,22.271305383566094,60.0,66.0,24.08992999999998,13.750069999999996,0.21739130434782608,13.07,5.694444444444445,2.9722222222222228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,23.0,0.0,0.0,23.0,5.0,2.0,4.0,19.0,7.0,13.0,16.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,4.0,2.0,1.0,13.0,7.0,0.0,6.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,1.0,2.917770732084279,4.123093975508087,3.4094961844768505,3.899444223221286,4.379680133792758,4.477336814478207,4.636547721680347,4.517021799211387,4.406719247264253,3.944006051281197 +896,COc1ccc2[nH]cc(CCNC(C)=O)c2c1,0,21.515151515151516,6.122418181818182,3.0303030303030303,6.96969696969697,163.64823511463587,84.72783930303031,1.426542862957091,6.185542424242424,4.004208754208754,7.655419272727273,209.77180406085606,23.705882352941178,6.359058823529412,3.588235294117647,6.5588235294117645,148.48232752788823,89.23785147058823,1.7382495570588234,6.4931617647058815,3.143790849673203,7.774552,253.85767438196527,19.362068965517242,6.227620689655174,3.3448275862068964,4.844827586206897,156.3522663794714,71.49569958620688,1.475021212013655,6.323432758620689,2.9966475095785445,7.725591172413793,209.41023397423237,16.264705882352942,6.163882352941177,2.9558823529411766,3.3676470588235294,158.44203721851605,57.61463497058823,1.372323779629294,6.249669117647059,2.8378267973856213,7.6999783529411765,188.09829957695734,13.95774647887324,5.956000000000001,2.619718309859155,2.788732394366197,157.53960130231255,47.863572366197175,1.2927432221357886,6.048415492957746,2.514475743348983,7.51377014084507,168.58915559246154,11.794520547945206,5.804820547945206,2.2739726027397262,2.493150684931507,164.67043866158807,40.391347876712324,1.0821616299113286,5.867934246575343,2.33599695585997,7.420167835616439,136.89132859766246,13.0,5.9317586206896555,2.396551724137931,2.5517241379310347,164.51612619773678,45.268501827586206,1.121674386662638,5.994094827586208,2.5148467432950192,7.5388948965517235,147.74064436105033,14.041666666666666,6.182208333333334,2.2291666666666665,2.9791666666666665,162.38316041080716,47.746758729166665,1.1665107088977915,6.241910416666667,3.174189814814815,7.73575825,153.29306233339034,9.659574468085106,5.795978723404256,1.7872340425531914,1.8936170212765957,169.69244007635385,31.53776763829787,0.9248108530911063,5.8362021276595755,2.549645390070922,7.462120255319149,114.34493254044527,7.395775941230487,0.12140293847566569,0.02270433594934571,0.5472910927456383,3.880624426078971,1.4616132224678853,35.18202471258034,0.22435102557844627,0.11454508723599627,1.2432404856647281,0.07357358310376488,49.82148989662489,0.24950035110462848,-0.005131637227893903,-0.010718502307851666,0.23167503916167023,1.2735645222276235,-0.1561070703132402,1.1860073088100203,-0.009792048237526456,-0.002656495435639816,-0.057510638170174724,-0.004653483282018052,0.22919749804400555,0.5054779772648109,2.077198315446344e-06,0.001194313203317775,0.013837433900129857,-0.0964029004781357,0.07740902006065636,2.469173795256639,0.02345096441083273,0.0008149441119660606,0.10430102135953753,-0.0009679948070042194,4.96297354611893,-1.3342786150272783,-0.029549819046075707,-0.0014716084308584198,-0.07625722465294656,-1.142210878841895,0.07147426594326017,-6.2054549122238445,0.0037578537452221785,-0.02838038135364336,-0.24944220877821596,-0.016058253335493978,-2.714900956406812,-1.6659423944955316,-0.0140673004048164,-0.0020218087642961988,-0.04622408463637656,-0.5336333889470894,-0.3168024633920175,-8.00248243131701,-0.05581574345193795,-0.014968134611156361,-0.16186333386504106,-0.006677919424720955,-12.927373722371597,0.6403386291306592,0.01843089298967255,0.004995105853257583,-0.035045347623180755,0.3094959558222323,-0.02548388740233241,2.938645531919445,-0.010554666982464963,0.017177702303231554,0.02486292284963937,0.009538438481955298,-0.14161550530432412,0.4276305373484058,-0.0069646939615591675,-0.005872223340032933,-0.11939140622526202,-0.35920331845096726,-0.0755345735761219,2.0975982242012603,0.00888550134189698,-0.00438751147842058,0.03790429548005308,-0.006217117064057501,3.2841842144652675,-1.821280991735537,0.003126101928374664,0.005408991478175511,-0.113578971533517,-0.37620523415977963,-0.2384468402909464,-8.849466145661156,-0.06508802047489703,-0.0016560089531680137,0.0041115064789306955,0.0049619926538108285,-15.98262622797895,0.5139597131860189,-0.005854518101713465,-0.0052578778688319484,0.012347849872027788,0.4204716409745423,0.059114250876299096,2.4925536381611098,0.010257260894075946,-0.0030641716976339962,-0.03955469155340204,-0.005458993806537321,4.101501481250796,,,0.4686274509803921,1.2205882352941178,0.5882352941176471,0.029411764705882353,0.6323529411764706,-0.04411764705882353,0.6798681770937016,0.012441468350933124,0.022559115409756653,0.7655505479618671,0.25718788857536173,0.22532438203682842,1.4454187250555688,0.48251227061219015,2.0115209759180903,1.5643030405847123,0.2358671486658561,0.21135078666752177,0.0,0.44721793533337784,7.03397508339394,710.0,202.0398,100.0,230.0,5400.391758782984,2796.018697,47.07591447758401,204.1229,132.13888888888889,252.628836,6922.46953400825,806.0,216.208,122.0,223.0,5048.3991359482,3034.0869499999994,59.100484939999994,220.76749999999998,106.8888888888889,264.334768,8631.16092898682,1123.0,361.20200000000006,194.0,281.0,9068.43145000934,4146.7505759999995,85.55123029679199,366.7591,173.80555555555557,448.084288,12145.793570505477,1106.0,419.144,201.0,229.0,10774.05853085909,3917.7951779999994,93.31801701479199,424.9775,192.97222222222226,523.598528,12790.6843712331,991.0,422.8760000000001,186.0,198.0,11185.31169246419,3398.3136379999996,91.784768771641,429.43749999999994,178.52777777777777,533.47768,11969.830047064768,861.0,423.75190000000003,166.0,182.0,12020.942022295929,2948.568395,78.99779898352699,428.35920000000004,170.5277777777778,541.6722520000001,9993.06698762936,754.0,344.04200000000003,139.0,148.0,9541.935319468734,2625.573106,65.057114426433,347.6575000000001,145.86111111111111,437.255904,8568.957372940919,674.0,296.74600000000004,107.0,143.0,7794.391699718743,2291.844419,55.992514027093996,299.61170000000004,152.36111111111111,371.316396,7358.066992002737,454.0,272.41100000000006,84.0,89.0,7975.544683588631,1482.2750789999998,43.466110095282,274.30150000000003,119.83333333333334,350.719652,5374.211829400928,244.06060606060606,4.006296969696968,0.7492430863284084,18.060606060606062,128.06060606060603,48.23323634144021,1161.0068155151514,7.403583844088727,3.779987878787877,41.02693602693603,2.427928242424241,1644.1091665886213,8.483011937557368,-0.1744756657483927,-0.3644290784669566,7.876951331496788,43.3011937557392,-5.307640390650167,40.32424849954069,-0.33292964007589954,-0.09032084481175374,-1.9553616977859407,-0.15821843158861376,7.792714933496189,29.317722681359033,0.00012047750229588795,0.06927016579243095,0.8025711662075318,-5.591368227731871,4.489723163518069,143.21208012488506,1.3601559358282984,0.047266758494031516,6.049459238853177,-0.05614369880624473,287.852465674898,-90.73094582185493,-2.009387695133148,-0.10006937329837255,-5.185491276400366,-77.67033976124885,4.860250084141692,-421.9709340312214,0.25553405467510815,-1.9298659320477485,-16.962070196918685,-1.0919612268135905,-184.61326503566323,-118.28191000918274,-0.9987783287419645,-0.14354842226503012,-3.281910009182736,-37.88797061524335,-22.492974900833243,-568.1762526235077,-3.9629177850875945,-1.0627375573921016,-11.492296704417916,-0.4741322791551878,-917.8435342883834,46.744719926538124,1.3454551882460961,0.36464272728780356,-2.5583103764921953,22.593204775022958,-1.860323780370266,214.5211238301195,-0.7704906897199423,1.2539722681359036,1.8149933680236738,0.6963060091827368,-10.33793188721566,24.802571166207535,-0.4039522497704317,-0.3405889537219101,-6.924701561065198,-20.8337924701561,-4.38100526741507,121.6606970036731,0.5153590778300249,-0.25447566574839364,2.1984491378430784,-0.36059278971533504,190.48268443898553,-87.42148760330578,0.15005289256198387,0.2596315909524245,-5.451790633608816,-18.05785123966942,-11.445448333965427,-424.7743749917355,-3.1242249827950577,-0.07948842975206466,0.1973523109886734,0.23817564738291977,-767.1660589429896,24.156106519742888,-0.27516235078053286,-0.24712025983510158,0.580348943985306,19.76216712580349,2.7783697911860576,117.15002099357216,0.48209126202156943,-0.14401606978879783,-1.859070503009896,-0.2565727089072541,192.77056961878742,0.7206301398015917,0.5905947776505486,0.4557060333559574,0.31049930572313805,0.29889337184232984,0.16493294573665843,0.18680634270541438,0.09142911312497552,0.1172247689226734,0.04906651702171691,0.07581176061068118,0.026435231480906218,0.05310027670224418,0.015262265273193895,0.0357721827900534,0.008589173813233403,8.022166558584418,5.675734949052244,3.5439290531657335,2.1748401112650084,0.3900243059829452,-0.5292959817923882,3.241158815024665,0.9728863096745418,6.022011248685166,0.9955254067503306,14.548036809201765,10.936721155979274,16.010280281551797,11.68737022192646,2.009301957516091,0.7517850096540168,3.4891541282735523,2.2245812865342667,7.008270080181371,1.3588907298094168,3.7020796501780615,2.420475835684295,20.910359522980077,14.702493010947004,0.28872714236062985,0.6793487591559164,0.8496835835733959,0.8769449903876871,0.8769449903876871,0.8769449903876871,1.78630667799208,531.1990260144933,0.0,2.0,2.0,0.0,5.0,1.0,2.0,0.0,0.0,3.518355040479824,1.4537626803344574,0.5534746214087995,0.4093871213432383,0.4093871213432383,0.4093871213432383,237.16825173924403,743.5657833717119,49.20038335387774,22.53229646580945,43.78408364896893,,10.0,269.0,0.0,4.794537184071822,5.907179729351506,6.544756405912575,23.073258388290974,12.487188691387619,7.109797541277533,24.395944776997908,10.30076712495354,4.736862953800049,7.966666666666666,20.75,10.0,0.5,10.75,0.0,0.03137254901960789,-0.75,0.13799216656359492,0.05400344912540023,-0.0839887174381947,0.05655314757481922,0.15428103044496466,0.0,0.5767676767676769,0.837254901960784,0.438775510204082,0.5227642276422767,0.7807017543859648,11.557759010592928,0.2115049619658631,0.3835049619658631,13.01435931535174,4.3721941057811495,3.830514494626083,24.57211832594467,8.202708600407233,0.5597189695550353,0.1673640167364017,0.0,0.3138075313807532,0.3076923076923077,0.2479287490693578,-0.39187092844801863,-0.05456960934036304,-0.011874876619636925,-0.043541214272002075,0.7520712509306423,1.1887078867114658,0.050014390308245574,0.03602145111246866,0.049529495279644405,-4.0102220059710305,0.844534684993938,0.8308567359601368,1.5008206749218844,0.7295696802210816,0.536510676206119,1.3447959718881577,0.8497779061427111,1.145718485544531,0.8045964176101067,0.6066475174394746,0.8398426326730487,1.017623051720866,0.873723059006876,0.9605637019381872,1.0888569157654204,1.221939365887526,1.0447639407934464,1.0470428077855134,0.872971916990511,0.9210789663640969,0.9426339294846611,0.5980558346185953,0.9809499705613105,0.8863365509389981,1.1337588921836428,1.2522051960447649,1.0952552124881558,1.276746940386893,1.3118788452437296,1.0095200506863882,1.1295650814381741,0.9840257807188588,1.2437574897202324,1.2824350092930072,1.2437921619264192,1.0246030655670642,1.1375609005410663,0.8846467881153971,0.888626726317644,0.9982039890348804,0.9872086280103719,1.2396420063838347,1.1438691717424918,1.2663250186638468,0.9124047440981164,0.854127968467349,0.8341289284054214,1.2588870545979083,0.8720043813845584,0.6666436919032837,0.5646760669563625,0.9951273329042934,0.8232403451562087,0.9342101193890123,0.8774643828638381,1.000364726347705,0.689050553400515,0.725216834081877,0.6446246797601803,0.9832856198160992,0.926847229476893,1.0418288743045105,1.3275816470707182,1.252487850034714,1.1029260570850403,0.9809471358059165,0.9244796489546294,0.9063452606726214,1.0256482442154533,0.6931246727887594,1.0622498794212594,0.8960427380547339,1.2333002234914328,1.104694276737076,0.943697851633135,1.0520134228187918,1.0828206341694275,1.167525997542427,1.235531911754409,1.2288622838659151,1.1251887932941902,1.2254821501846531,1.081287859937751,1.2520170483034967,0.9470964605931241,1.0853127312506394,1.1444970869339737,0.7728116521490789,0.8719275810333198,0.7968470646659989,0.9435018060148048,0.8500565053527996,1.0707317910202452,1.2865905935969406,1.1024874886605385,0.8607952689757297,3.5,0.0,1.7777777777777786,0.9791666666666667,0.6533333333333334,0.423888888888889,0.2792290249433106,0.18753543083900223,0.10304862685815065,0.07125000000000001,2795.8618830647692,3185.4228054943087,1628.5520502554764,1464.1165334055631,11.644206385219782,0.3972836093323121,7.018154044689312,0.65915514408394,1.0,0.3076923076923077,1.5260390788786293,3.590631439023996,4.490919497949654,4.635006998015215,4.635006998015215,4.635006998015215,0.19444444444444445,0.0,0.07407407407407411,0.044507575757575746,0.0362962962962963,0.02825925925925926,0.019944930353093616,0.017048675530818385,0.014721232408307236,0.014250000000000002,0.4435464881238691,13.432098765432098,6.25,3.4844444444444442,99.97186815738822,1.0,3.7490426065640747,68.76157144687257,,53.781143489856575,52.92561500938188,53.19813279647555,53.791450836784975,73.21649470573766,53.46234112733359,53.82824701355689,65.08439621177588,0.03373552053053643,-0.04226946474547237,-0.4720905439280443,0.4233122779313068,0.32818546254280223,-0.10680463744687436,0.033710604165027754,-0.043646104189983215,-0.023191701187207276,-0.0462586593931787,-0.06324937682394764,0.004600374226454683,0.06834684842828148,1.7109950891861672e-05,0.052602868719980884,0.025283499190002372,-0.0248421104166327,0.052961357266564556,0.07018282249042121,0.10452800182378884,0.0071146142678911945,0.08389448587154923,-0.013156825672592333,0.09961511701911473,-0.1804109028761741,-0.2434028320657061,-0.06481618463282245,-0.1393357678641926,-0.2943368781492721,0.048900943727491916,-0.17638140393906623,0.016749884407852696,-0.24776602854360313,-0.20063874339230975,-0.21826112930841135,-0.05449256860924848,-0.22525593091701437,-0.1158728164362849,-0.08904945596325459,-0.08445977880707059,-0.13751224812195467,-0.21674849305010194,-0.2274594056679032,-0.24878755650003256,-0.13067461008011316,-0.13019470949620576,-0.09076517879117993,-0.2594738485178732,0.0865816696204728,0.1518158721781424,0.22000669230766606,-0.06403420060678496,0.0797541637222932,-0.017435452150127456,0.08352690204519832,-0.047045325312205594,0.14996454861342487,0.019998482301954487,0.1296448817573926,-0.002842458256430379,0.0578209157154723,-0.05736841339268891,-0.2586388500035456,-0.21814973385790323,-0.09256327822837279,-0.051678906851009655,0.059621304951536905,0.03960535201025897,-0.03830379446462883,0.030488305293393532,-0.08450202914936408,0.06591902854129121,-0.2462596225478023,0.025749804474471328,0.23823605721141497,-0.2075293624161074,-0.09694451017510651,-0.16313949314739837,-0.25153373684308666,-0.29011688405292557,-0.01445726737940452,0.0033070886335658384,0.06744258529331998,-0.3207978376628532,0.06949368359319276,-0.04822385829554661,-0.2315803413305056,0.02256175924603735,0.10835154212524294,0.04044452387786056,0.0708473619276899,0.04571969692418191,-0.02675079107776058,-0.031815800731628506,-0.07419774294311861,0.08232394273557542,5.145513940964438,12.194773509074398,3.564033859430106,14.224401221734396,32.45609121945423,34.94897634607265,35.09421654613873,35.09421654613873,35.09421654613873,34.195856590607534,26.593151689940107,4.009741527319553,3.59296337334787,0.0,7.602704900667423,2864.5948731447356,2304.735608895276,714.4072702867306,28.0,24.0,30.0,38.0,45.0,48.0,49.0,48.0,38.0,232.121177752,18.0,4.442651256490317,5.262690188904886,6.12029741895095,6.970730078143525,7.840312983320164,8.704668113450987,9.58045460278142,10.452620010456705,11.331919043007233,0.6262626262626262,0.9798787878787878,1.130986843291489,0.5860360326266579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6565539466521503,0.966250742721331,1.0027367631154962,0.6145499324611884,4.0,0.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15.037630078753587,5.749511833283905,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,0.0,30.183374320007836,30.568262109297333,7.109797541277533,116.63533178731367,-184.35133452212557,-25.67166782718209,-5.586404076428046,-20.48348161356951,353.8035835265577,559.2144488495862,23.52871552669565,16.945892389381402,23.300602035399425,0.5,0.8310102668971681,0.3142791509681166,54.95362707931265,0.13690104392725364,58.669794057535704,0.16898973310283177,5.0,0.2222222222222222,0.30252177818982773,0.7118062851680298,0.8902792667835417,0.9188431530811267,0.9188431530811267,0.9188431530811267,1.8550999999999997,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,67.23840000000003,9.53140013787187,0.0,10.30076712495354,0.0,13.344558822616634,13.65455394719011,29.959396268694903,0.0,5.749511833283905,3.6109179126442243,0.0,4.890349128221754,2.3978952727983707,6.3578422665081,4.727387818712341,7.918992488165245,6.823286122355687,9.537267195753865,20.666666666666664,7.910076976778365,0.0,3.209340513983371,0.0,0.0,2.2345620748299324,2.032895460653397,0.0,32.336,0.0,10.797336554622358,0.0,0.0,0.0,0.0,0.0,0.0022424309229867045,37.32256582861913,10.05365155780638,0.0,5.749511833283905,24.54571219748882,11.21535880699783,0.0,12.487188691387619,24.395944776997908,0.0,10.902924932081056,0.0,19.339189076679713,21.666280239520958,21.603159850400907,137.52314289374516,,107.46985000492323,105.74031659802087,106.3025282349897,107.49072149531564,147.5627372344313,106.82588104507684,107.56502160515353,130.67584120447043,21.603159850400907,137.52314289374522,,106.7765726939989,104.9084659424492,105.59949805027918,106.79937015840821,149.6339415765172,106.0848719731494,106.87897844045177,131.60543063615467,4.720993583752846,102.99824667686542,,82.55615598497724,81.31299400459962,81.31837381429013,82.56996030629358,108.87414459900631,82.07467693219995,82.62650140155385,98.41600125906675,1.270774108847112,8.089596640808539,,6.321755882642543,6.220018623412992,6.253089896175864,6.322983617371508,8.680161013790077,6.283875355592755,6.3273542120678545,7.686814188498261,2.421079565013425,68.76157144687257,,53.781143489856575,52.92561500938188,53.19813279647555,53.791450836784975,73.21649470573766,53.46234112733359,53.82824701355689,65.08439621177588,31.886274509803926,0.0,3.1835848309071615,0.0,0.0,0.0,0.0,33.09031318281137,1.4645278250188967,2.793024927563618,5.205741738053246,0.0,0.0,0.0,0.0,0.0,0.0,20.280147771219216,390.9395685737945,50.35928960299477,118.49083748779186,148.20034343233857,152.9552309345021,152.9552309345021,152.9552309345021,383.0,105.70634369550619,79.4993467400768,63.26393820515959,54.12,54.12,1.0,7.941841546434551,5.169925001442312,3.427303623500353,4.052420116379828,,4.047972542950806,4.049516177803659,4.04683178944159,4.047948057811564,4.00476154477651,4.048455742948049,4.047897092595435,4.025217902362116,0.20160609550002076,0.23837765390469579,,0.23811603193828268,0.2382068339884505,0.2380489287906818,0.23811459163597437,0.23557420851626532,0.23814445546753232,0.23811159368208443,0.23677752366835977,1.7624020874915585,1.9299425133129313,,1.928844400156447,1.9292256627737312,1.9285625518325287,1.9288383513967202,1.9181122904283083,1.9289637614305188,1.9288257609345305,1.923207297700154,182.50999999999968,176.15609176941675,80.89627830555965,,81.03976744655967,80.92976090783122,81.15477361012775,81.04163340595245,83.83375596693661,81.00742563340984,81.0449203676917,82.59442890966207,10.362123045259809,4.758604606209391,,4.767045143915275,4.760574171048895,4.7738102123604556,4.767154906232498,4.931397409819801,4.765142684318226,4.767348256923041,4.858495818215416,5.701998738103653,4.923796070428858,,4.925568241385446,4.924209880257141,4.92698636781674,4.925591266351705,4.959463993276255,4.925169076019301,4.925631824456781,4.944570482700217,5.205741738053246,14.006677068605729,3.9408971875787353,2.274328703703704,0.8474990026874951,5.931978904216007,2.790347694633409,2.178323465188545,1.6575395686664627,213.28302932211494,54.86979897329734,-86.72604184925339,-12.07695156691755,-2.6280618742197994,-9.636226872139266,166.44297406839448,263.0762387446438,11.068823411107344,7.972007234686174,10.961509947693488,561.0,22.0,1.0817885325170822,0.4165030942733151,0.0,0.0,0.13608276348795434,0.050296115882772816,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.03608439182435161,0.2721655269759087,0.09123844603689252,0.4153550771591204,0.11585509507723062,12.25071237662706,10.040111220059325,8.202708600407233,5.588987503016485,7.173440924215916,3.9583906976798025,5.604190281162431,2.7428733937492655,4.454541219061589,1.8645276468252425,3.4115292274806532,1.1895854166407798,2.5488132817077207,0.732588733113307,1.7528369567126163,0.4208695168484367,2.1180124478299205,0.8142885328085072,3.114597956171905,1.057643204537646,4.233101774205874,1.2131998218138709,56.7514637742932,26.60422009039252,20.7784107244504,20.29351065749099,20.29351065749099,20.29351065749099,84.0,96.0,36.18268799999998,19.795311999999996,0.2727272727272727,52.04,5.805555555555555,3.888888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,33.0,0.0,0.0,34.0,10.0,1.0,5.0,29.0,11.0,18.0,23.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,2.0,2.0,1.0,17.0,4.0,0.0,2.0,2.0,0.0,2.0,4.0,0.0,0.0,0.0,1.0,2.0,3.2188758248682006,5.960914726626287,3.8122026701459353,4.389808775115936,5.005203904099049,5.494089721066114,5.812403294740891,6.138991777744102,6.425622133682996,6.126399982899303 +1355,Clc1cccc(N2CCNCC2)c1,0,29.23076923076923,5.856873076923078,2.9615384615384617,4.830959164292498,163.9427919481591,119.42094769230768,1.5708218370398848,6.0159153846153846,2.1390925984547384,7.50861880769231,216.53296153660952,25.14814814814815,6.229777777777778,3.6296296296296298,4.9300411522633745,148.65842914518893,95.57397833333327,1.823437185925925,6.401703703703706,2.496646852613931,7.681871481481483,256.2588369948547,20.5,6.147750000000002,3.1875,3.368055555555556,158.72787159661655,75.80403874999998,1.5392130749874167,6.2811875000000015,2.281121399176955,7.673671250000003,207.71972065838148,15.359375,5.8816703125,2.65625,2.2100694444444446,164.24948558319477,54.131187906250005,1.3094936869982186,6.005517187499999,1.95508616255144,7.519105312500001,164.80272858986245,13.913793103448276,5.645639655172412,2.3620689655172415,1.5383141762452108,160.49968432740732,48.81273031034485,1.2550480619437065,5.779248275862068,1.8085355470412936,7.312803931034482,152.0741868730299,13.134615384615385,5.553076923076924,2.1538461538461537,1.2905982905982907,161.91386513064086,46.13902976923078,1.2124157606237111,5.684326923076923,1.7830009496676158,7.251436846153846,143.97321364007354,13.380952380952381,5.654571428571431,1.9523809523809523,1.0264550264550265,165.44767681795594,44.71136095238095,1.1712745713854282,5.830214285714284,1.7679306290417403,7.453157619047619,131.5687432226213,11.76,5.6168439999999995,1.56,0.6044444444444445,173.17149997461402,37.15428107999999,0.9654956315395998,5.805375999999999,1.6365432098765433,7.53212872,99.50109813417151,4.375,5.335000000000001,1.25,0.0,181.46143945506688,8.380008,0.6904612342806251,5.431250000000001,1.3557098765432098,7.249500000000001,60.28532843531633,13.23076923076923,0.06544571005917156,0.011679316952023521,0.4748520710059172,2.7197750018262834,1.4601275476400006,62.19870555621302,0.26170661757319674,0.08106982248520705,0.2028190269920248,0.047526557692307694,53.558022753390915,0.25925925925925924,0.0018824950690334646,-0.003243455050596308,0.10064650449265843,0.5954443010473398,-0.35564505470698515,1.233688190225723,-0.012984165375877675,0.002392570677186064,0.008686975628137259,-0.0015851018518518527,-0.7366137048781538,-0.3333333333333333,-0.015302440828402408,-0.0022993967955423984,-0.04215976331360944,-0.37981377992061743,-0.04601602789672129,-1.5241647292899427,0.0057686260861093365,-0.014474309664694268,-0.02546463048039234,-0.008558687499999999,-1.5176745811854058,-0.890625,-0.009894508136094679,-9.030017363462347e-05,-0.05598187869822484,-0.3126792041054862,0.30360440461776894,-4.114758128328402,0.015253471904633775,-0.012017058062130166,-0.019685340940707553,-0.005835749999999999,0.313351201985548,0.3275862068965517,0.004349648031014099,0.000499834087912085,-0.07233217710671287,-0.26689816389197474,-0.15352557413201798,1.3847997541318124,-0.02410477572173853,0.006694501122219957,-0.010731594704862102,0.006418189655172413,-4.69273042868441,1.0576923076923077,0.006005769230769261,0.000536950253544093,-0.02958579881656807,-0.1002995105559208,-0.14978787541321217,4.98270355029586,0.006329342731536254,0.007619970414201168,0.007615491035877238,0.0029288365384615364,1.1281880980745682,-2.4285714285714284,-0.005686369399830916,-0.0007999315311371749,-0.02888137503522122,-0.1719524540037361,-0.2818773358754533,-11.426048783319242,-0.05056103318247696,-0.01084381515919977,-0.019961532406135123,-0.00741434523809524,-9.343000005783871,-3.12,0.005129520710059196,0.0014938618539038697,0.07284023668639049,0.28106070567609026,-0.11455823048833298,-14.744667325443784,-0.0702043655632829,0.0008834082840236727,0.01641643195536834,0.0019841500000000027,-7.2689448105572385,-1.125,-0.003813017751479228,-0.0020724177582214336,0.18860946745562127,0.6985535831689678,0.5087404857988695,-4.9105951331360895,0.051876145144038835,-0.007697707100591748,0.014012036225355344,-0.009119812500000001,14.045195986509107,,,0.5010989010989011,1.1538461538461537,0.5,0.038461538461538464,0.6538461538461539,-0.15384615384615385,0.656534568403086,0.004156939774381372,0.0173877090051506,0.6043161018728411,0.2318491018751157,0.25739500160997175,1.2608506702759272,0.48924410348508746,2.0347770445252733,1.5741041189194043,0.3249844331547929,0.0,0.13568849245107545,0.46067292560586837,7.541412542153846,760.0,152.27870000000001,77.0,125.60493827160494,4262.512590652137,3104.9446399999997,40.841367763037006,156.4138,55.6164075598232,195.22408900000005,5629.856999951848,679.0,168.204,98.0,133.11111111111111,4013.777586920101,2580.4974149999985,49.232804019999975,172.84600000000006,67.40946502057614,207.41053000000005,6918.988598861077,984.0,295.0920000000001,153.0,161.66666666666669,7618.937836637595,3638.593859999999,73.882227599396,301.49700000000007,109.49382716049384,368.33622000000014,9970.546591602311,983.0,376.4269,170.0,141.44444444444446,10511.967077324465,3464.3960260000003,83.80759596788599,384.3530999999999,125.12551440329216,481.22274000000004,10547.374629751197,807.0,327.4470999999999,137.0,89.22222222222223,9308.981690989625,2831.138358000001,72.79278759273498,335.1964,104.89506172839504,424.14262799999995,8820.302838635735,683.0,288.76000000000005,112.0,67.11111111111111,8419.520986793324,2399.2295480000007,63.04561955243298,295.585,92.71604938271602,377.07471599999997,7486.607109283824,562.0,237.49200000000008,82.0,43.111111111111114,6948.802426354149,1877.8771599999998,49.193531998187986,244.86899999999994,74.25308641975309,313.03262,5525.887215350094,294.0,140.4211,39.0,15.11111111111111,4329.28749936535,928.8570269999997,24.137390788489995,145.13439999999997,40.91358024691358,188.30321800000002,2487.527453354288,35.0,42.68000000000001,10.0,0.0,1451.691515640535,67.040064,5.523689874245001,43.45000000000001,10.845679012345679,57.99600000000001,482.28262748253064,344.0,1.7015884615384604,0.30366224075261156,12.346153846153847,70.71415004748337,37.96331623864002,1617.1663444615385,6.804372056903116,2.1078153846153835,5.273294701792645,1.2356905,1392.5085915881639,7.0,0.050827366863903545,-0.08757328636610032,2.7174556213017773,16.076996128278175,-9.6024164770886,33.30958113609452,-0.3505724651486972,0.06459940828402372,0.234548341959706,-0.04279775000000002,-19.888570031710152,-16.0,-0.7345171597633156,-0.11037104618603512,-2.0236686390532532,-18.231061436189638,-2.2087693390426217,-73.15990700591725,0.27689405213324814,-0.6947668639053248,-1.2223022630588323,-0.41081699999999993,-72.84837989689947,-57.0,-0.6332485207100594,-0.005779211112615902,-3.5828402366863896,-20.011469062751118,19.430681895537212,-263.34452021301774,0.9762222018965616,-0.7690917159763306,-1.2598618202052834,-0.37348799999999993,20.054476927075072,19.0,0.2522795857988177,0.02899037709890093,-4.195266272189347,-15.480093505734533,-8.904483299657043,80.31838573964512,-1.3980769918608347,0.3882810650887575,-0.6224324928820019,0.37225499999999995,-272.1783648636958,55.0,0.3123000000000016,0.027921413184292834,-1.5384615384615397,-5.215574548907882,-7.788969521487033,259.1005846153847,0.3291258220398852,0.39623846153846076,0.3960055338656164,0.1522994999999999,58.66578109987755,-102.0,-0.23882751479289846,-0.03359712430776134,-1.2130177514792913,-7.222003068156916,-11.83884810676904,-479.8940488994082,-2.1235633936640324,-0.45544023668639033,-0.8383843610576751,-0.3114025000000001,-392.4060002429226,-78.0,0.1282380177514799,0.037346546347596744,1.8210059171597623,7.026517641902256,-2.8639557622083247,-368.6166831360946,-1.7551091390820723,0.022085207100591815,0.4104107988842085,0.049603750000000064,-181.72362026393097,-9.0,-0.030504142011833824,-0.01657934206577147,1.5088757396449701,5.588428665351742,4.069923886390956,-39.284761065088716,0.4150091611523107,-0.061581656804733986,0.11209628980284275,-0.07295850000000001,112.36156789207286,0.6996932183267545,0.6322257858486412,0.4542980960932956,0.3536773589664259,0.30166374374678284,0.20296416907865902,0.19515696910607885,0.11479277026249955,0.13017603959002594,0.06594016738403968,0.08694082530057443,0.038079162133788855,0.05764686748848301,0.021732789957573793,0.03891798806362796,0.012630974204133347,17.00110191186885,5.699459569466325,3.124525758787845,2.1956551477043305,0.34454444581107113,-0.4330364497306281,3.133573021419592,0.9938517285521873,5.016760157483784,0.7740070203641078,14.543782473363978,10.9598302283944,35.45051687160256,11.711171184726695,2.207728020336578,1.047450200148882,3.1822557976271852,2.2464400668071693,2.5199246925259335,1.3044833129750917,3.492933803158054,2.4425507219748477,22.455857648865752,15.592114811273957,0.30480242041798294,0.5816893236914072,0.6757485761947177,0.8011609128657985,0.8011609128657985,0.8011609128657985,1.8326492664211986,282.00816415336243,0.0,0.0,4.0,0.0,6.0,0.0,0.0,0.0,0.0,3.2048075878733773,1.8461538461538458,1.3846153846153846,0.7692307692307692,0.7692307692307692,0.7692307692307692,111.61226928365355,351.12146611822766,25.26215820985419,13.504671773777988,29.651477787505097,,7.0,153.0,0.0,0.0,0.0,0.0,31.201658937391628,5.687386274683562,0.0,18.19910120538483,16.283065403318417,11.600939890232516,6.514285714285714,15.0,6.5,0.5,8.5,0.001098901098901095,0.0,-2.0,0.11660231660231646,0.048214285714285654,-0.0683880308880308,0.03673469387755102,0.09861538461538444,0.0,0.5571428571428574,0.8142857142857142,0.4405405405405409,0.5089285714285717,0.7775510204081632,8.534949389240118,0.05404021706695783,0.22604021706695782,7.856109324346935,3.014038324376504,3.346135020929633,16.391058713587054,6.360173345306137,0.6153846153846155,0.10964912280701755,0.0,0.21491228070175436,0.4,0.3526311230072292,-0.32696544184895493,-0.031028901331378107,-0.0125755939172675,-0.046709348835565,0.6473688769927707,0.6002511891182781,0.03568161194272403,0.023086584196856854,0.03159216784833043,-2.9088897021565456,0.6217700258397932,0.9713962594528943,1.4861162683083773,0.8624668281989154,0.8208760720108791,1.4997691435963916,0.6272611410418868,0.9627088946084785,0.8232589013455823,1.001604176128056,0.8174905267765494,0.973975683963281,0.7464268410852714,1.5063131056275472,1.7887792499232447,1.2655763239875388,1.3179401350129376,1.204182007515083,0.7493910767284229,0.8452968800400308,1.2397561486677178,1.2302470155687986,1.1787492667729766,0.9372832561488809,0.9459029796511628,1.2867572268446001,1.3241782552698893,1.2497566199376946,1.2167463563629772,0.8081812658357653,0.9459588010641461,0.8544485694020852,1.1877856242883627,1.058388383702022,1.1332005516348953,0.9234032510122278,0.7837560144346432,0.6645666629020457,0.6335295960764871,1.0997421849822753,0.9916392207457821,1.0333632982012202,0.7904424069524174,1.0427281588538997,0.6778447306877621,0.8538645542879478,0.5546869027534778,1.0662475005661214,0.7763584525939178,0.5779949956262587,0.42321643667405967,0.895638629283489,0.8654582203002876,0.9768910244785313,0.7798667677095236,0.9466206651182333,0.6465293085075321,0.8408160077772197,0.6131442221046574,0.9701192157416059,1.548657253599114,0.9775529716738499,0.6970512483520253,0.843717549325026,0.8855547604338935,1.0114127904647594,1.54018726929465,1.2605758682030392,1.2039942575476996,1.086326591697192,1.3812264902748317,1.1645579149956409,1.9781976744186045,1.0128771080415813,0.6859382780785946,0.5264797507788161,0.6986046574091485,0.7819924110526538,1.962164812461856,1.3880446369678845,1.334675712367161,0.9723406224388241,1.5985204223873208,1.1174645908062801,1.4398619186046513,1.1421313342962347,1.1185755030960969,0.2531152647975078,0.5657667669415273,0.2774179630367155,1.4263871368427805,0.8000113716896355,1.2970330655874112,0.9983956218677054,1.4741365758658822,0.6848313402112663,2.0,0.0,1.1111111111111116,0.5625,0.33333333333333337,0.25,0.10040816326530612,0.027777777777777776,0.0,0.0,2171.1176473277965,2501.990718334934,1271.555857522219,1138.504011006462,8.491716150541563,0.4356569844594536,4.7922406995109865,0.771971961134607,1.0,0.4,1.4956321302677145,2.854285871987246,3.315824333525707,3.9312089489103226,3.9312089489103226,3.9312089489103226,0.14285714285714282,0.0,0.06172839506172842,0.03515625,0.027777777777777776,0.025,0.01673469387755102,0.013888888888888888,0.0,0.0,0.32314314846308895,9.551020408163266,4.481481481481482,2.479338842975207,83.49830250424726,1.0,3.491234155160824,38.8884836730331,,30.088773375525104,30.467243672271966,29.809004843014197,30.067706812104102,41.49622478145756,30.696837699493422,30.99469131164847,38.59337946346861,0.019595176571920756,0.028764224077199876,-0.2777093098782936,0.21195338640821526,0.21893145596511068,-0.24357122450145743,0.01983462805525364,-0.04961343926370579,0.029512469669248875,0.042831167060469355,-0.0333519179342628,-0.013753564209603249,-0.025193798449612403,-0.23381885252015727,-0.19687767743506715,-0.08878504672897189,-0.13964897083971242,-0.03151507412561104,-0.02450476606643294,0.022042339393637644,-0.1785412773949939,-0.12555345944635485,-0.18008220909685715,-0.028337016625381625,-0.06731468023255814,-0.15118650446528487,-0.007731631396387298,-0.11789330218068532,-0.11496509964814272,0.2079300572806011,-0.06615504441020284,0.05828462438618897,-0.14823096552756038,-0.09705864993367518,-0.1227892421281866,0.0058506865241904175,0.02475942261427426,0.06646192740641736,0.04279651712213234,-0.15232570630572553,-0.09813244246776189,-0.1051453171883243,0.022264124980547688,-0.092106099361422,0.0825769801511717,-0.052912169356201896,0.1350442777009961,-0.08761956075735262,0.07994186046511628,0.09176719490611766,0.04597445687532803,-0.06230529595015581,-0.03687787059171121,-0.1025854732042511,0.0801094412775627,0.024184878434592886,0.093992686558449,0.03754820811844587,0.061625261341735606,0.021064782456016624,-0.1835548172757475,-0.08688681648789032,-0.06849129400487597,-0.060821836522771164,-0.06322304377688334,-0.19304980330728688,-0.18370235652240027,-0.19319738129409564,-0.13375896019975198,-0.0984204130262396,-0.15600425526495204,-0.1744463205597398,-0.2358139534883721,0.07837825742010336,0.12790661132328018,0.15339563862928338,0.10333969004324353,-0.07845768725718043,-0.237057462749254,-0.2682559815043554,0.010896881933901726,0.08094128149038926,0.041748237119246336,-0.13572093286616,-0.08502906976744186,-0.058262302418779735,-0.17744340415921095,0.3971962616822429,0.2568424162660149,0.3484219489051796,-0.07895011783964001,0.19822251964847465,-0.09495157217096857,0.06908639900883816,-0.1918887658357817,0.2622426158482459,9.765048757225463,7.029969172926684,0.4999999999999999,17.26868610231793,26.92519939245031,32.46873785398877,33.08904554629646,33.08904554629646,33.08904554629646,26.45210157882855,20.463353545952256,4.224797631012308,0.0,1.7639504018639807,5.9887480328762885,1684.3563280504673,1409.2383897310751,327.1375484168909,10.0,18.0,22.0,27.0,32.0,25.0,24.0,20.0,16.0,196.076726096,14.0,4.174387269895637,4.976733742420574,5.808142489980444,6.6293632534374485,7.466799475018602,8.294299608857235,9.132919225007598,9.962935011179548,10.80151247560339,0.6666666666666667,0.9626153846153845,1.1320185792289998,0.6298008876478612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6851291801013359,0.9553544494720966,0.9947195921340131,0.6203332211244893,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,10.216698334856808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.667306958694127,18.19910120538483,36.88904521207519,0.0,133.53552209266934,-123.81635690921536,-11.750127169468687,-4.762167573431361,-17.688050987030767,245.14779137632289,227.30510920901227,13.512031040385502,8.742504200346627,11.96342680047433,0.42857142857142855,0.9695508167774689,0.3979039460202178,1.5053685414660112,0.13194388903471124,159.17625037557494,0.030449183222531026,4.0,0.07142857142857142,0.31818983328206585,0.6072380549784065,0.7054285412338048,0.836349189574336,0.836349189574336,0.836349189574336,1.7495999999999998,,0.9327731092436975,0.4879432787375836,0.5821600835107351,0.9461851242422312,-0.8024186822351957,0.5154063957361761,0.4903101588860408,-0.5553606267492481,56.53470000000003,0.0,0.0,5.316788604006331,0.0,0.0,31.078935354500782,29.288101587587764,0.0,0.0,3.367295829986474,0.0,4.61512051684126,0.0,6.07993319509559,0.0,7.634820677745543,0.0,9.231024963169016,17.333333333333336,8.03871874212648,0.0,0.0,0.0,0.0,0.0,2.0463265306122453,0.0,25.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.432483059953995,10.216698334856808,5.687386274683562,0.0,26.1790256236503,0.0,0.0,0.0,24.26546827384644,5.022633313741326,0.0,0.0,16.374823078844393,17.813358682634735,17.101696701635362,77.77696734606619,,60.08177773509615,61.03324274032623,59.74127713398764,60.03504160365513,83.48624567505988,61.45097797130616,62.026257467376865,77.52851931262904,17.101696701635362,77.77696734606619,,59.43601173638899,60.695435855046355,59.338243230018676,59.37999036379513,83.79486824515033,61.09415815887343,61.68681197276346,77.74211955368644,4.610268297716967,58.43610220132209,,45.78024544422225,45.819693527761515,44.75785006091701,45.76072974095589,64.30856206036059,46.28172060391508,46.790270540586576,59.2616212553974,1.315515130895028,5.982843642005092,,4.621675210392012,4.694864826178941,4.595482856460587,4.618080123358087,6.422018898081529,4.726998305485089,4.771250574413605,5.963732254817619,2.305134148858484,38.8884836730331,,30.088773375524475,30.467243672271564,29.80900484301341,30.067706812103456,41.49622478145756,30.696837699493102,30.994691311648232,38.59337946346861,24.83921568627451,0.0,0.0,5.921780439027462,0.0,0.0,0.0,25.86270939548434,4.26360229276896,3.3244331065759636,0.0,0.0,0.0,2.3495833333333334,0.0,0.0,0.0,16.128663749236722,367.15271587385973,38.88643538696058,74.21143267166839,86.21143267166839,102.21143267166839,102.21143267166839,102.21143267166839,221.0,94.24709255140047,11.530597595132496,43.92819518283788,15.27,15.27,0.75,6.535785390007767,4.807354922057604,3.399556277510342,3.5625166886099042,,3.5627541934926725,3.556864668681431,3.5565517717871113,3.5628399353817177,3.5618142507812287,3.5581875523349864,3.5586211776747887,3.560247869827588,0.2615043290392571,0.27403974527768493,,0.27405801488405174,0.27360497451395627,0.27358090552208547,0.2740646104139783,0.27398571159855606,0.27370673479499896,0.27374009059036836,0.2738652207559683,1.4860091809582723,1.532831494573366,,1.532898160076134,1.5312437102330574,1.5311557365014083,1.5329222259680437,1.53263430052471,1.5316155651759884,1.5317374246657653,1.532194433263692,149.3399999999999,55.35590022029201,53.69435889306702,,53.479205798515494,53.945708952493604,53.96359675002747,53.46793727722824,53.536343576687834,53.8627836550783,53.8344413581328,53.69597788996543,4.258146170791693,4.130335299466694,,4.113785061424268,4.149669919422585,4.151045903848267,4.11291825209448,4.118180275129833,4.143291050390639,4.141110873702523,4.130459837689648,4.276147516320193,4.245672211918087,,4.241657166151838,4.250342415519827,4.2506739494423424,4.241446435486111,4.24272500692704,4.2488040336769135,4.248277700754291,4.245702363548989,0.0,2.3495833333333334,4.140204081632653,1.2305555555555558,0.0,8.03871874212648,0.0,4.26360229276896,0.0,175.19860567295174,50.56767397186384,-46.887188296041025,-4.449577090216433,-1.8033533960015782,-6.69816975657729,92.8333779279912,86.07665192369991,5.116780686069056,3.310640458603843,4.530350101247365,246.0,16.0,0.6220084679281461,0.3753212346295961,0.0,0.0,0.08333333333333333,0.037267799624996496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.08367947721527252,0.19037142086468112,0.0718704890111818,9.096011838247808,8.218935216032335,6.360173345306138,4.951483025529963,5.429947387442091,3.6533550434158624,4.293453320333735,2.52544094577499,3.5147530689307,1.7803845193690715,2.7821064096183816,1.2185331882812434,1.4411716872120752,0.5433197489393449,0.934031713527071,0.30314338089920034,1.2919737681478412,0.6765235945074385,1.996030159476016,0.899670573951546,2.847602133515053,1.1175473681856145,45.37026004879181,33.74380580509943,24.972545567525152,23.171801429132536,23.171801429132536,23.171801429132536,64.0,72.0,29.748308999999985,15.831690999999996,0.46153846153846156,40.03,3.5833333333333335,2.944444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,26.0,0.0,1.0,27.0,6.0,0.0,3.0,24.0,6.0,14.0,21.0,0.0,0.0,0.0,10.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,2.0,1.0,1.0,13.0,3.0,0.0,2.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,1.0,2.8903717578961645,4.123093975508087,3.349904087274605,3.7898553714539385,4.250279363842861,4.680393607225679,4.518386055903201,4.5512418439625355,4.485823428355525,4.378896741664954 +5832,C#C[C@]1(OC(C)=O)CC[C@H]2[C@@H]3CCC4=CC(=O)CC[C@@H]4[C@H]3CC[C@@]21C,0,19.09433962264151,5.844716981132074,3.2452830188679247,5.509433962264151,160.8212065672919,74.90876333962264,1.4289542138824902,5.925958490566036,3.944706498951782,7.435160226415092,204.46960402725233,21.857142857142858,6.053571428571429,4.178571428571429,5.267857142857143,141.85480706752142,81.60702364285716,1.847682155,6.218357142857143,2.5541914682539684,7.507171714285712,260.4990876546736,18.27027027027027,5.925765765765766,3.8378378378378377,3.8378378378378377,148.8990410907269,67.12184540540541,1.5825352531341086,6.057816216216214,2.376251251251251,7.444508756756758,217.10197156884226,14.847953216374268,5.877953216374269,3.181286549707602,2.52046783625731,153.5950672512291,52.270648953216366,1.4025441502744038,5.986733918128654,2.2639701104613383,7.448774619883039,185.86477409781008,12.20754716981132,5.7384433962264145,2.641509433962264,1.8018867924528301,155.82491087926044,41.10358616509431,1.2808603555658493,5.83911320754717,2.147798742138365,7.340515490566038,161.72290832481323,9.875,5.588017241379312,2.211206896551724,1.3620689655172413,160.95015941914693,32.2604524224138,1.1012825559136938,5.6694590517241386,2.171455938697318,7.239179103448277,133.1767918437207,8.56,5.5933,2.0,1.21,164.66517024061588,26.92231224999999,0.9969409054941302,5.656059999999999,2.144305555555556,7.276231000000001,117.84864493103223,8.876712328767123,5.553013698630137,2.0136986301369864,1.5,166.59587691594436,29.223700917808213,0.9683525670139318,5.610369863013698,2.1062595129375947,7.2484566027397275,116.4684345936316,10.924731182795698,5.788924731182797,2.118279569892473,2.053763440860215,162.35342221767922,36.361704440860215,1.075086211008301,5.8561666666666685,2.6132019115890084,7.438070924731184,135.38689758696862,7.041651833392665,0.09377002491990027,0.010940843305611046,0.7333570665717339,3.3435386258454964,1.3294921761136689,33.64316904663582,0.23895298747821286,0.0914549661801352,1.502071713935366,0.05829924385902453,52.67414348586037,0.4327416976046382,0.002375527640746612,-0.0062139529715633125,0.32257285256573265,1.2578764684941264,0.04273185100122607,2.070197012663375,0.008990807274353151,0.0031075675125870447,0.019756022662417293,0.0005339097797893783,2.7885452735910445,0.7666092578872924,0.016697423660755824,0.0013206430450295329,-0.004137280748174395,0.23626759547015866,0.015997704003627634,3.575358254741034,0.004393012013733067,0.01603294814928845,0.20764743918001305,0.010155307900281874,2.557329798864753,-0.6090136341209021,-0.009662113632247204,8.506558315031387e-05,-0.15518206933020223,-0.5893733384130788,-0.01846498030756375,-2.862269504431245,-0.004983443023016264,-0.00977118597490523,-0.05062229198776509,-0.005296395795469491,-2.4913756792975175,-1.2043431826272692,-0.00911000355998575,-0.000828373070075186,-0.13207547169811323,-0.5097899608401566,-0.177671107761865,-5.7716178401566385,-0.034019616049387316,-0.010316108935564245,-0.026981725406431685,-0.0040348921324314495,-8.686808824531024,-0.26424454647008994,0.0006436055290261394,0.0003930175447799391,-0.024752642368740856,-0.11321982298277705,-0.13584589335875707,-1.3198539707574786,-0.023375583175938897,0.0004868441646923254,0.01691707193899197,0.00022153525613491468,-4.0816298686304275,-0.2522178711285151,-0.0060228551085795825,-0.00028263361832330734,0.05834104663581351,-0.009010323958704153,0.0024441978395160087,-1.1703164807867557,-0.00012849122078628555,-0.00575324919900318,-0.1636034225307543,-0.0036797344250622437,-0.6376510512799242,1.1454766235729583,0.0032628000994845037,0.00044123816643504125,0.05315107506693264,0.29913389935481344,0.1882980947451673,5.526684470810555,0.03630431876110398,0.005298691095646589,-0.07377233999435386,-0.00021076828394049203,9.16354113689278,-0.3165554649609358,-0.0071723377622618465,0.0001254810877792063,-0.005217484506406044,-0.06883787518613368,-0.0710225236246208,-1.5008889427607883,-0.012071872099348211,-0.006446303165324974,-0.22522944257087968,-0.005054986606032106,-2.3077125311509947,,,0.48,0.84,0.24,0.0,0.6,-0.36,1.365899057670339,0.02058397316566648,0.03434397316566648,0.5058844519298166,0.11336093075651994,0.3626236385727374,1.8717835096001554,0.47598456932925737,2.0572377605174244,1.8390435734705834,0.0,0.21819418704684046,0.0,0.21819418704684046,6.418940467094354,1012.0,309.7699999999999,172.0,292.0,8523.523948066471,3970.164457,75.73457333577198,314.0757999999999,209.06944444444446,394.0634919999999,10836.889013444374,1224.0,339.0,234.0,295.0,7943.869195781199,4569.993324000001,103.47020068,348.228,143.03472222222223,420.4016159999999,14587.948908661721,2028.0,657.76,426.0,426.0,16527.793561070688,7450.52484,175.66141309788605,672.4175999999998,263.76388888888886,826.3404720000001,24098.31884414149,2539.0,1005.1300000000001,544.0,431.0,26264.756499960175,8938.280970999998,239.83504969692305,1023.7314999999999,387.13888888888886,1273.7404599999998,31782.876370725524,2588.0,1216.55,560.0,382.0,33034.88110640321,8713.960266999995,271.54239537996006,1237.892,455.3333333333333,1556.189284,34285.25656486041,2291.0,1296.4200000000003,513.0,316.0,37340.436985242086,7484.424962000001,255.49755297197697,1315.3145000000002,503.77777777777777,1679.4895520000002,30897.015707743205,1712.0,1118.66,400.0,242.0,32933.034048123176,5384.462449999998,199.38818109882604,1131.2119999999998,428.86111111111114,1455.2462000000003,23569.728986206446,1296.0,810.74,294.0,219.0,24322.998029727878,4266.660333999999,141.37947478403404,819.1139999999999,307.5138888888888,1058.2746640000003,17004.391450670213,1016.0,538.3700000000001,197.0,191.0,15098.868266244168,3381.638513,99.983017623772,544.6235000000001,243.0277777777778,691.7405960000001,12590.981475588082,373.2075471698112,4.969811320754714,0.5798646951973854,38.8679245283019,177.2075471698113,70.46308533402446,1783.0879594716985,12.664508336345282,4.8471132075471655,79.6098008385744,3.0898599245283003,2791.7296047505997,24.23353506585974,0.1330295478818103,-0.3479813664075455,18.064079743681027,70.44108223567108,2.39298365606866,115.931032709149,0.5034852073637764,0.1740237807048745,1.1063372690953683,0.029898947668205188,156.1585353210985,85.09362762548946,1.8534140263438965,0.14659137799827815,-0.4592381630473578,26.225703097187612,1.7757451444026675,396.8647662762548,0.4876243335243704,1.7796572445710181,23.04886574898145,1.127239176931288,283.8636076739876,-104.14133143467427,-1.6522214311142718,0.014546214718703671,-26.536133855464584,-100.78284086863648,-3.157511632593401,-489.44808525774295,-0.8521687569357812,-1.6708728017087944,-8.656411929907831,-0.905683681025283,-426.02524115987546,-255.3207547169811,-1.9313207547169793,-0.17561509085593943,-28.000000000000007,-108.07547169811319,-37.66627484551538,-1223.5829821132074,-7.212158602470112,-2.18701509433962,-5.720125786163517,-0.8553971320754673,-1841.6034708005773,-61.304734781060866,0.14931648273406434,0.09118007038894588,-5.742613029547878,-26.266998932004277,-31.516247259231644,-306.20612121573504,-5.423135296817824,0.1129478462086195,3.9247606898461367,0.05139617942330021,-946.9381295222593,-50.443574225703024,-1.2045710217159165,-0.056526723664661466,11.668209327162701,-1.8020647917408308,0.4888395679032017,-234.06329615735115,-0.025698244157257112,-1.150649839800636,-32.72068450615086,-0.7359468850124488,-127.53021025598484,167.2395870416519,0.47636881452473756,0.06442077229951602,7.760056959772165,43.673549305802766,27.491521832794422,806.8959327383411,5.300430539121181,0.773608899964402,-10.770761639175662,-0.03077216945531184,1337.877005986346,-29.439658241367027,-0.6670274118903518,0.011669741163466188,-0.48522605909576216,-6.401922392310432,-6.605094697089735,-139.5826716767533,-1.1226841052393837,-0.5995061943752226,-20.94633815909181,-0.47011375436098585,-214.6172653970425,0.7127850590951763,0.6138280294408691,0.4249862226154084,0.3502528206475121,0.2631905169903669,0.20144146752299016,0.1573457937817096,0.12262746926836011,0.09954399855447446,0.07455015807996733,0.06264276914091403,0.0452055059392383,0.037986106368270045,0.027363149374282435,0.023810467619518216,0.01652063676633488,8.029201315148208,5.669854388535097,3.555477435632515,2.169603313799023,0.42558108839012676,-0.47994601147255794,4.116472583709276,0.9114383621828721,6.0291228588087975,0.9950258009623048,13.643107367816718,10.930197546263177,16.014523496516077,11.681002141729088,2.005201436918254,0.7413137597953654,3.5016008192353465,2.2195488810528725,7.009358369756465,1.081290914539703,3.7145098571142685,2.415558495199275,20.913859554348964,14.700696374919657,0.210325635144349,0.4998064113828079,0.7517458213236806,0.8719206318888097,0.8846461487710361,0.8846461487710361,1.5735777917879228,683.8761264525542,1.0,1.0,2.0,1.0,2.0,8.0,1.0,5.0,1.0,4.480534357165979,2.763699909021864,1.2695134436819675,0.5567882076288093,0.4813165095156027,0.4813165095156027,229.0837327600469,926.5210253787411,45.14481563859151,17.481528780730958,33.57426322245867,,12.0,489.0,5.601050810983688,9.589074368143644,11.384295757348628,35.87569075393652,44.94575136048208,12.496841729759891,0.0,6.076020106833881,12.844171518546268,11.160212849420308,12.0,21.0,6.0,0.0,15.0,0.0,0.02,-9.0,0.08714793546622901,0.023600895426926782,-0.06354704003930223,0.0,0.10793939393939356,0.0,0.5320754716981134,0.7919999999999996,0.4449275362318844,0.5084745762711866,0.7919999999999996,34.14747644175847,0.514599329141662,0.8585993291416619,12.647111298245413,2.8340232689129987,9.065590964318435,46.794587740003884,11.899614233231434,0.6060606060606064,0.18055555555555555,0.08333333333333333,0.2916666666666667,0.7272727272727273,0.29393645314865435,-0.4899430979483891,-0.05188798304867222,-0.009244209395252624,-0.025786478839388893,0.7060635468513455,1.1768903032854723,0.02932861596826756,0.022205477420480603,0.03461442068486684,-3.8034404990863835,0.8907337859309551,0.6091061937303394,1.5074679552609043,0.9675624133148402,0.4794620041372597,1.1551253250660616,0.8992233815002781,1.1435684132698372,0.6320345174469589,0.5299845476471843,0.5953200059229998,1.0712471865189834,0.8491760719263249,0.5547367412971057,0.8100742909473668,1.5849470830053347,0.8948635603235263,1.092533084260122,0.8575239735313975,1.0840935660565925,0.5816914529526976,0.38813561991009654,0.5327892358613713,1.021341183606288,1.0678096488271576,1.0392807505983386,1.0090584934591487,1.568665190484301,1.1797710132799346,1.0632946491269142,1.0681699149796802,1.0655726637926848,1.0444275309373199,0.7646498118579947,1.0307520912727373,1.0704192005651456,1.1228766430738124,0.8846810933940773,0.9956752329078354,1.1643203883495141,1.0277363713798977,1.1524684565550585,1.1269589974120784,1.1640736354159864,0.9215812173750569,0.593105128196688,0.8288066621521637,1.1783680751150507,0.9768300442801857,0.737157659780588,0.7182562149738303,0.8736483093404752,0.8689401838688833,1.0621036938597745,0.9818238471145125,1.0676654312079696,0.7692787180371363,0.7539264602172616,0.693583690077156,1.060463524663141,1.0045884732052581,1.0201594533029612,0.8188924000602592,0.7023786407766989,0.9184710391822828,0.9188661395731279,1.0029837733018385,0.9273401362872148,1.0253078042951067,1.1341960920501268,1.0047185295863938,0.9589933199073082,0.8064116237516796,0.918036009610884,0.8629101507472083,0.7514031121159727,0.8823335511423304,0.7613175502597087,0.8039999379611509,0.7593199505527056,0.9035613974813531,0.97182530365257,0.9371042885523042,0.7647661813640965,1.0607260510779872,1.3005837640123774,1.2263173217284302,0.8343668441382188,1.1185474711948857,0.9999700738655897,1.0561209111086347,0.9916951545056496,1.266219585683079,1.4846176256646173,1.3497935058825523,0.989341328702824,7.0,0.07427813488419549,5.1111111111111125,3.263888888888889,2.458333333333334,1.1080555555555556,0.7224943310657597,0.4392715419501134,0.25447215923406397,0.1871913580246914,4807.946744067302,5664.001938942478,2316.279411046687,2040.0896756374345,13.85455756290911,0.46988824802667123,7.34446378248908,0.8863947012635035,1.0,0.8,1.2473860973972195,2.964220545541335,4.458407010881231,5.171132246934389,5.246603945047596,5.246603945047596,0.24999999999999994,0.009284766860524436,0.1161616161616162,0.06399782135076253,0.05230496453900709,0.0291593567251462,0.02778824350252922,0.019966888270459695,0.014968950543180232,0.014399335232668564,0.598031943185894,18.367346938775512,6.5578512396694215,2.7493491124260356,150.12592260531082,1.0,4.183801809404965,113.146091732808,,102.40633334943601,101.85461139246341,103.6024726283751,102.41770623541437,124.39806337622379,102.27136910193158,102.42964332031389,112.82584955785288,0.06145457171746355,0.02533355027660302,-0.5679592329392441,0.4398578363384188,0.37621113713798987,0.032141483619812276,0.06153394794032896,0.037625841673868635,0.033979210122566696,0.013152516274111391,0.00915809098794565,0.05293954659822024,0.10886781624900935,0.17806781724777196,0.12070760983773865,-0.0056415638939912,0.07066393480362816,0.012032943323060114,0.1062729331408973,0.01838441971408125,0.17530975975333032,0.1382406960024467,0.17419278927251242,0.04855000251786215,-0.08648732549270044,-0.1030405360401762,0.007775048117788848,-0.21160506444103783,-0.17627232832222514,-0.013888746875923723,-0.08507728568802767,-0.020855328387432873,-0.10684150224996328,-0.03370164787614353,-0.09084844750777374,-0.04729788686485793,-0.17103134479271992,-0.09715261958997717,-0.07571382268589409,-0.18009708737864077,-0.1524701873935264,-0.13363832518460378,-0.17155392918414078,-0.14236949455377343,-0.11279987699350319,-0.01796300746236721,-0.0692100251280851,-0.16491599577433802,-0.037525931801541096,0.006863659571125385,0.03592205224055982,-0.03375251088048206,-0.03386227456969983,-0.10217878359830417,-0.039230964506581124,-0.09782503003052107,0.005323321247896019,0.011262492850404551,0.0037999679150319157,-0.0774883006825936,-0.03581799797775526,-0.06423006833713005,-0.025832891526593554,0.07955339805825247,-0.0026948466780238466,0.0018384446959746792,-0.03478615463259346,-0.0005377259440960162,-0.06290800203972778,-0.1089185163484106,-0.06311804719046339,-0.012105579874328523,0.16267157915148842,0.034795768714699984,0.040329447567241085,0.07247639313738531,0.0894662609974096,0.14163159297077968,0.16427359928993376,0.1519308008836429,0.0579377076714453,-0.04911372693456383,-0.003615283320829311,0.17396659025604475,-0.0449547169401046,-0.0764885982315624,0.011469050810265507,-0.007114521348783774,-0.020588329578135597,-0.05342079096112598,-0.0446119965892711,-0.05051986261711373,-0.07048609205789817,-0.14994586508841698,-0.08670758437717901,-0.04381110690049412,12.364959591132312,22.757804208571876,6.905055716817173,10.566407952504276,28.821452758933063,35.100311235975184,36.23394582108658,36.3100212927847,36.3100212927847,51.430944012935605,45.97608933676459,0.0,5.454854676171012,0.0,5.454854676171012,4915.716510940138,4629.546990262261,768.0834441421803,269.0,44.0,65.0,92.0,121.0,144.0,183.0,224.0,259.0,340.20384475600076,28.0,4.976733742420574,5.8944028342648505,6.849066282633458,7.791935956938058,8.752265313595721,9.705828982731935,10.668978650219241,11.628261063650132,12.593139539691895,0.5786163522012578,0.9592452830188681,1.12155119363253,0.5348289225442715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6532166308891652,0.9472438031816497,0.9890887603237646,0.5986789918160905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,0.0,4.0,0.0,2.0,0.0,1.0,4.736862953800049,0.0,11.384295757348628,0.0,0.0,9.589074368143644,0.0,0.0,6.423349895620259,18.417276048615534,74.69339565196152,18.759549292013414,0.0,163.3866370603595,-272.3383039674815,-28.842298950514863,-5.1384585654241794,-14.33359494565692,392.4703698204064,654.1827214112595,16.302516688076643,12.34307021530678,19.240668276801753,0.5,0.847160425277451,0.26722672433291667,9.88269469052782,0.18218541916703634,21.784022259122374,0.15283957472254917,6.0,0.03571428571428571,0.21777294347785126,0.5175037902594932,0.7783639885098966,0.9027940049018595,0.9159701128300136,0.9159701128300136,4.0633000000000035,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,95.42300000000006,14.325937321943691,0.0,0.0,29.086614654042354,70.81509819377303,0.0,11.64912463690315,0.0,12.343784214475903,4.04305126783455,0.0,5.4510384535657,2.3978952727983707,7.0825485693553,4.948759890378168,8.82246957226897,7.247792581767846,10.619545270929176,30.666666666666668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.84000000000001,0.0,23.515981867140848,0.0,0.0,0.0,1.9418981523777248,0.0,1.454930804232978,59.442213262524085,0.0,0.0,0.0,17.353601045300476,14.325937321943691,41.430398868518246,65.21404738278933,11.64912463690315,0.0,0.0,0.0,28.34593289484639,34.620481437125754,32.19572280640642,226.292183465616,,204.752666698872,203.64065135635536,207.16339305213938,204.77558873184506,250.09487986965462,204.48064518060735,204.79964788857524,226.13049248937537,32.19572280640642,226.29218346561603,,204.06266669887214,202.85207992778405,206.68554269911533,204.08761573353263,252.04300954546505,203.76657541316553,204.113802239971,226.84868254987992,5.187517364445132,166.96453392056478,,154.0150009651095,153.34871712771871,155.46634683025758,154.02875600558812,182.5978780600424,153.85183120348495,154.04319432463743,167.01395713898683,1.287828912256257,9.05168733862464,,8.190106667954879,8.145626054254215,8.286535722085576,8.191023549273803,10.003795194786186,8.179225807224293,8.19198591554301,9.045219699575014,2.635767240615766,113.146091732808,,102.40633334943601,101.85461139246341,103.6024726283751,102.41770623541437,124.39806337622379,102.27136910193158,102.42964332031389,112.82584955785288,50.203921568627436,0.0,3.7336960924523357,0.0,0.0,0.0,0.0,52.42170429715952,7.952726135188032,0.0,5.789815955499127,0.0,2.452177763080541,0.0,-0.8398733019442342,0.0,2.907016030356128,31.729986566252798,470.90005834256067,66.11146316205263,157.10368891369075,236.29557157670524,274.07000908752264,278.0700090875226,278.0700090875226,1454.0,131.86061236614586,84.95694853820535,75.61310087889808,43.370000000000005,43.370000000000005,1.0,7.693481640835175,5.807354922057604,4.185018918575687,4.911406410463627,,4.9345991245711724,4.935533689847756,4.93247973918951,4.934579556062707,4.889015609092938,4.934830431375584,4.934559003974637,4.913709634789802,0.16740075674302748,0.19645625641854508,,0.1973839649828469,0.19742134759391025,0.1972991895675804,0.19738318224250828,0.19556062436371754,0.19739321725502335,0.19738236015898547,0.19654838539159208,2.347801956373043,2.507851070641358,,2.5125621703702414,2.512751542751941,2.512132583165453,2.5125582047903086,2.5032817081620156,2.5126090437590514,2.512554039869947,2.508319914847932,273.5100000000004,224.35429263343616,153.26478731681865,,150.6645182347145,150.5547561675209,150.90346110944276,150.6667846535796,154.74318567576182,150.63763308017656,150.669163655654,152.71315603114354,8.974171705337447,6.130591492672746,,6.026580729388581,6.022190246700836,6.03613844437771,6.026671386143184,6.189727427030473,6.025505323207062,6.02676654622616,6.108526241245742,6.329517197758905,5.948457793499217,,5.931346363432501,5.930617578249219,5.932931033829208,5.93136140613695,5.958057608063902,5.9311679036738045,5.931377195836704,5.94485209645264,5.789815955499127,23.515981867140848,0.0,0.5650332656210637,5.409218030104349,0.0,15.819588122515611,3.7336960924523357,0.0,352.83068419739806,90.81960704068547,-151.38115450234852,-16.03219396619345,-2.856248198157519,-7.96742918433413,218.1574050577584,363.63204947677673,9.061868130858022,6.860982065599559,10.695060278728729,1358.0,51.0,2.568766688125541,1.703443015931498,0.19045042026428421,0.13814646444031736,1.0459550832014497,0.7419751093153888,0.3443752037229498,0.18912741713583558,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.4386380189713201,0.3683053725287482,1.034850255724997,0.7739140112989897,17.81962647737941,15.345700736021728,11.899614233231436,9.80707897813034,11.580382747576143,8.863424571011567,10.227476595811124,7.970785502443407,9.15804786701165,6.858614543356994,7.5797750660505985,5.469866218647834,5.4699993170308865,3.9402935098966707,4.3573155743718335,3.023276528239283,6.491948691547121,4.658897009037818,11.809629693479135,8.057250408930122,19.625780031038033,12.745440940967612,88.74920622056288,43.34454953511394,27.086168586986936,22.181380660206095,21.76961908215882,21.76961908215882,144.0,181.0,57.81620399999998,31.561795999999994,0.32075471698113206,184.03,8.652777777777779,5.340277777777776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,53.0,0.0,0.0,56.0,0.0,3.0,3.0,52.0,4.0,28.0,52.0,1.0,0.0,0.0,22.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,3.0,0.0,0.0,25.0,3.0,0.0,0.0,3.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,3.5263605246161616,6.19644412779452,3.9889840465642745,4.418840607796598,4.812184355372417,5.123963979403259,5.293304824724492,5.560681631015528,5.820082930352362,6.061456918928017 +3779,CC(C)NCC(O)c1ccc(O)c(O)c1,0,20.4375,6.162653125,2.71875,5.9375,165.81037255061665,80.25870221875002,1.2929978557010313,6.204684374999999,5.168402777777779,7.731760875000001,189.98737745884983,21.78125,6.4204375,3.25,5.375,149.9711649802328,80.48442209375,1.637339759,6.536468749999999,3.403645833333333,7.883432125,237.81129267433244,18.22222222222222,6.159574074074073,3.0,4.185185185185185,155.55782769724988,66.4567245925926,1.401554339813759,6.258472222222222,3.088477366255144,7.675993481481481,196.99138181406482,14.849315068493151,6.187232876712329,2.3835616438356166,3.2739726027397262,162.42287905833476,51.831397904109586,1.174618069959411,6.246687671232877,3.576864535768645,7.754895616438357,158.9234251576744,11.012658227848101,5.888658227848102,2.0,2.1265822784810124,165.27846054647625,36.694951063291136,1.0011424356863925,5.940417721518988,2.727144866385373,7.539800405063291,127.55067244783176,11.441176470588236,5.87129411764706,2.014705882352941,2.088235294117647,167.34048938840994,39.29722754411764,0.9667040470599116,5.915119117647059,2.997549019607843,7.523428411764706,124.09926415269783,11.8,6.1933454545454545,2.0,1.8909090909090909,167.1634342989279,38.942333127272725,1.0078724855252,6.2202945454545455,3.6313131313131315,7.833190836363637,131.18134997206462,10.0,5.838702127659575,1.8085106382978724,1.297872340425532,164.4320574796423,31.910516659574462,1.036973414958234,5.893619148936171,2.671394799054373,7.486219829787234,126.81625304627912,8.585365853658537,5.638634146341464,1.7073170731707317,0.8048780487804879,167.68754217176178,27.375115731707314,0.8969257710837318,5.687439024390245,2.41869918699187,7.329265073170731,106.59573812516571,7.74609375,0.1494295898437499,0.033780370240777444,0.5615234375,3.49609375,1.309642947241107,36.67353608496093,0.21584700588329586,0.13923896484374995,2.032552083333333,0.09586490234374997,48.31507635468866,-0.484375,-0.027283007812499968,-0.018707333821922738,0.1748046875,0.736328125,0.08967696144721773,-2.102949378906246,0.025545071718749878,-0.02461767578125,-0.44238281250000006,-0.017223726562499996,3.115872274087063,0.3684895833333333,-0.002767437065972217,-0.0017253400178892024,-0.0921947337962963,0.23191550925925927,-0.14029682901193816,1.7269822906177683,-0.014702733158871774,-0.00017854817708334782,0.042807998971193445,-0.0039235944733796305,0.002551348813641299,-0.5688677226027398,0.005694382758989737,0.006020448248764183,-0.006300834760273972,0.12890625,-0.006380860291329897,-2.8173591611595654,-0.025707408808046783,0.0038058981699486292,0.22370267313546413,0.005803196971318491,-5.643369937021467,-0.1511570411392405,-0.0086102069323576,-0.006484512970892027,-0.007330399525316456,0.17716574367088608,-0.18279566733717756,-0.721762616210938,-0.019881044906066053,-0.006738648388053797,-0.1780118231364275,-0.0072716855715980995,-2.589083110061033,1.23828125,0.02097877412683822,0.0032539394115360183,-0.0615234375,0.23276654411764705,-0.08645009346843441,5.785235403550091,-0.001829367675235669,0.021436770450367633,0.2870455473856209,0.011414176700367644,3.3914341888168553,-1.2881392045454545,-0.010229135298295436,0.0015632718725929287,-0.03538707386363636,-0.8949573863636363,0.11273575148924365,-6.0389936372336654,0.013442357152283653,-0.013545669389204523,-0.12835385101010108,-0.002348184161931816,-3.18208531765036,-1.1849235372340425,-0.004140028673537238,-0.002386031359275119,-0.03426279920212766,-0.4827958776595745,-0.018993650424295794,-5.663236330971576,-0.01887490998928925,-0.007060174950132956,-0.21484374999999997,-0.0004940140458776552,-7.095866434018366,0.5968940548780488,0.008751812595274362,0.0006465541669749454,-0.11182831554878049,-0.3741425304878049,-0.13364487764624577,2.738598009551256,-0.022156881227305008,0.010074297351371945,0.06208714430894316,0.0029696220464939032,-0.8068867177033521,,,0.45999999999999996,1.05,0.4666666666666667,0.06666666666666667,0.5833333333333334,-0.11666666666666667,0.7655550763650881,0.02742038713167473,0.033153720465008064,0.6937059859182637,0.21006164564876773,0.25679887137776386,1.459261062283352,0.4668605170265316,1.9377699926819305,1.4566592416245405,0.1292658454409797,0.35184490561641035,0.0,0.48111075105739,6.597526356375,654.0,197.2049,87.0,190.0,5305.931921619733,2568.2784710000005,41.375931382433,198.54989999999998,165.3888888888889,247.41634800000003,6079.596078683195,697.0,205.454,104.0,172.0,4799.07727936745,2575.501507,52.394872288,209.16699999999997,108.91666666666666,252.269828,7609.961365578638,984.0,332.61699999999996,162.0,226.0,8400.122695651493,3588.663128,75.68393434994299,337.9575,166.77777777777777,414.503648,10637.5346179595,1084.0,451.668,174.0,239.0,11856.870171258437,3783.692047,85.74711910703701,456.0082,261.1111111111111,566.10738,11601.41003651023,870.0,465.204,158.0,168.0,13056.998383171624,2898.9011339999997,79.09025241922501,469.293,215.44444444444446,595.644232,10076.503123378709,778.0,399.24800000000005,137.0,142.0,11379.153278411875,2672.2114729999994,65.73587520007399,402.22810000000004,203.83333333333334,511.593132,8438.749962383452,649.0,340.634,110.0,104.0,9193.988886441035,2141.828322,55.432986703885994,342.1162,199.72222222222223,430.82549600000004,7214.9742484635535,470.0,274.41900000000004,85.0,61.0,7728.306701543188,1499.7942829999997,48.73775050303699,277.00010000000003,125.55555555555554,351.852332,5960.363893175118,352.0,231.18400000000003,70.0,33.0,6875.189229042233,1122.379745,36.773956614433004,233.18500000000003,99.16666666666667,300.499868,4370.425263131794,247.875,4.781746874999997,1.0809718477048782,17.96875,111.875,41.90857431171543,1173.5531547187497,6.907104188265468,4.4556468749999985,65.04166666666666,3.067676874999999,1546.082443350037,-15.5,-0.873056249999999,-0.5986346823015276,5.59375,23.5625,2.8696627663109675,-67.29438012499988,0.8174422949999961,-0.787765625,-14.156250000000002,-0.5511592499999999,99.70791277078601,19.8984375,-0.14944160156249972,-0.09316836096601692,-4.978515625,12.5234375,-7.57602876664466,93.25704369335949,-0.7939475905790758,-0.009641601562500782,2.311631944444446,-0.21187410156250003,0.13777283593663014,-41.52734375,0.4156899414062508,0.43949272215978535,-0.4599609375,9.41015625,-0.4658028012670825,-205.66721876464828,-1.876640842987415,0.2778305664062499,16.330295138888882,0.42363337890624986,-411.96600540256713,-11.94140625,-0.6802063476562504,-0.5122765247004701,-0.5791015625,13.99609375,-14.440857719637027,-57.0192466806641,-1.570602547579218,-0.53235322265625,-14.062934027777771,-0.5744631601562499,-204.53756569482164,84.203125,1.426556640624999,0.22126787998444924,-4.18359375,15.828125,-5.87860635585354,393.3960074414062,-0.12439700191602548,1.457700390624999,19.51909722222222,0.7761640156249998,230.61752483954615,-70.84765625,-0.5626024414062489,0.08597995299261108,-1.9462890625,-49.22265625,6.200466331908401,-332.1446500478516,0.7393296433756009,-0.7450118164062487,-7.059461805555559,-0.12915012890624988,-175.0146924707698,-55.69140625,-0.19458134765625018,-0.11214347388593059,-1.6103515625,-22.69140625,-0.8927015699419023,-266.17210755566407,-0.8871207694965948,-0.3318282226562489,-10.097656249999998,-0.023218660156249793,-333.5057223988632,24.47265625,0.35882431640624884,0.026508720845972764,-4.5849609375,-15.33984375,-5.479439983496077,112.28251839160149,-0.9084321303195053,0.4130461914062497,2.5455729166666696,0.12175450390625003,-33.082355425837434,0.7614856834587246,0.5956999275756368,0.4668605170265316,0.32915325637238124,0.32380904784280495,0.19134491637531875,0.21103794754081837,0.0956223796225557,0.1277364968538496,0.05273540409719978,0.088080083177672,0.02908356000668555,0.058723158746634314,0.016712743581991475,0.039138323584921614,0.009985425427272081,8.008692180654144,5.6925838715808865,3.51658131542542,2.1912772206594457,0.4157667760662606,-0.28943176492427636,3.1795208562556434,0.9882876864335518,5.015789856739676,0.9889449971953002,14.540223042272354,10.953122148400436,16.00424578977102,11.7043614718475,1.984728295439558,0.7842597349648334,3.4587966004266373,2.2409950833745365,6.004916255208021,1.2587632541679823,3.672385589506506,2.4370418848365984,20.891065135281778,14.707149342612913,0.2906381861386325,0.6489458187476708,0.7904085782123405,0.8315625238506014,0.8437474627189631,0.8559324015873246,2.3033090891864183,325.60911457507285,0.0,0.0,3.0,0.0,5.0,2.0,1.0,0.0,0.0,3.5092344877634223,1.6713732329801259,0.9457707033278249,0.7346804688852169,0.6721804688852169,0.6096804688852169,129.56730905696023,797.7080505924467,71.47628545353274,24.92837658101396,51.299352580105094,,9.0,204.0,6.103966387748303,10.213054789681411,11.49902366656781,18.150048726757532,0.0,12.13273413692322,6.06636706846161,13.847474399381248,5.316788604006331,5.106527394840706,6.8999999999999995,15.75,7.0,1.0,8.75,0.0,0.040000000000000036,-1.75,0.1385416666666665,0.0429276315789473,-0.0956140350877192,0.1221052631578945,0.19127272727272715,0.0,0.5718750000000002,0.8799999999999998,0.43333333333333374,0.5289473684210529,0.7578947368421053,11.483326145476322,0.411305806975121,0.49730580697512095,10.405589788773955,3.1509246847315158,3.851983070666458,21.888915934250278,7.002907755397974,0.5227272727272728,0.2898550724637681,0.0,0.3623188405797102,0.45454545454545453,0.3456545557029783,-0.6569232488563937,-0.10089266095538862,-0.020528851526762305,-0.06569232488563936,0.6543454442970216,1.243596324856065,0.06939780992529263,0.038862385151752034,0.05652710567527568,-1.5531955127932635,1.0200453857791225,1.0784751780697304,1.4689855197354218,1.0782608695652174,0.75768156424581,1.2720501661378372,1.0205889916817752,1.1385900871057955,1.0618176232828147,1.118106715780483,1.094070798281191,1.0747258133808093,0.8789152238471452,0.7806836244299281,0.7647872014159457,1.6133977455716588,0.9005586592178771,1.3278599302826593,0.8862762189602126,1.2144674414777061,0.7694954506465463,0.6721435293931558,0.7774975636233841,1.0849453846343695,1.0484736700308788,0.9443890632656702,0.7403376601563322,1.016223942823109,0.9470574730236474,1.0895350338167964,1.052476166368645,1.122456725953475,0.9491362022320625,0.8102317037141045,0.9080137180130834,1.1018481415068688,0.9728004493894303,0.973133188334751,1.0270561115081638,0.829851403412218,0.8523301039530443,1.0540440306924515,0.9735708502759396,1.0425935783603775,0.9703767938553083,1.017672324080907,0.9893374098179377,1.015643721099223,0.7954376909614073,0.7623992016515933,0.7468958930665347,1.0909462915601023,0.874071639829116,0.9611922500381841,0.7980736642971079,0.9244609118052884,0.7581486463867996,0.7401395535792794,0.7657326820565058,0.874934104957649,1.2006051437216338,1.3299964489727125,1.0798317772642512,1.0194466403162057,1.3552463179278822,0.8195056792977937,1.1923275542089464,0.8436852180224904,1.3370283890902739,1.3909770349232233,1.3280344415200331,0.976259153115244,1.0790012982693318,0.8470504518422111,1.0145883163220972,0.7708418131359852,0.9993105907524069,0.9606780689593245,1.0832838138160414,1.0626471021303174,0.8821323419544905,0.9119676875616196,0.8101197341614035,1.1263820532381181,0.8327367993800966,0.6780966600968092,0.7811555234529193,1.0730010604453872,1.00362447199891,0.9473983073056949,0.8385965449322309,1.0173442300581288,0.6887125129496625,0.682796622969433,0.6742177482828765,0.9714173429989544,4.0,0.0,2.222222222222223,0.8125,0.8133333333333337,0.4305555555555556,0.18285714285714286,0.1527777777777778,0.09019904257999495,0.0,2379.4060344331283,2819.160746321018,1355.71979955103,1166.2366586829135,9.972195007901199,0.40975026421562827,5.8860854686039135,0.6941981323737805,1.0,0.45454545454545453,1.4907655122365777,3.328626767019874,4.054229296672175,4.265319531114783,4.327819531114783,4.390319531114783,0.26666666666666666,0.0,0.11111111111111119,0.042763157894736836,0.058095238095238096,0.03311965811965812,0.018285714285714287,0.021825396825396824,0.01803980851599899,0.0,0.569906751514521,13.066666666666666,5.915,4.1652892561983474,89.1886771316761,1.0,3.5918026210097618,55.310118015690804,,45.910055913304234,45.20520200001629,45.38890055415135,45.91842492300101,61.5822390568917,45.64563976349272,45.9490345417053,55.10876830511062,-0.06253151790216843,-0.18258102589338746,-0.5537930368608119,0.31130434782608696,0.2106145251396648,0.068474359088583,-0.0573424219042958,0.11834804756365991,-0.17680162883195277,-0.2176489429852659,-0.17966665736266635,0.06449068301606209,0.047571020339552864,-0.018520007107467602,-0.05107522521486414,-0.16418679549114332,0.06633560935236914,-0.10712601423730594,0.0470906946801339,-0.06811645637012563,-0.0012823147405879494,0.021061206412476982,-0.04092837292328848,5.2806473799429434e-05,-0.07343930256495279,0.03810746429100175,0.17822327599881346,-0.011220964860035735,0.03687150837988827,-0.004872213686006413,-0.07682267547456126,-0.11910014087453343,0.02733357127596791,0.11005999549521875,0.06053515759615059,-0.11680349826196261,-0.019513970010915566,-0.05762049498603863,-0.19196097984338695,-0.013054485415520088,0.050675341206421046,-0.13957672029789095,-0.019680747843317952,-0.09210711459586024,-0.04839628329337064,-0.08758044853861392,-0.07585347080961363,-0.053587478389854185,0.15985879979828543,0.1403923690667594,0.09632633947889879,-0.10956521739130434,0.06657903384817614,-0.06601042952245123,0.15774959333475613,-0.00847529789792299,0.15395669218327912,0.14122420268555852,0.11906523056205674,0.0701941183724889,-0.16629532847384587,-0.06845454979158723,0.04627752335010969,-0.0630197628458498,-0.25598781107160995,0.08608128782484777,-0.1646689761042741,0.06227724631747575,-0.09728361169881643,-0.06314910799215737,-0.02449472230735453,-0.065861125713435,-0.15297046169032522,-0.027705547996660047,-0.07063366512172974,-0.06101757631822387,-0.13809580411268277,-0.014502922696837183,-0.15442296913642733,-0.08744578092268991,-0.05070545416691143,-0.1057014734144779,-0.005153231618660935,-0.1468665056415617,0.07705742715520952,0.058568136367272636,0.019139937258427903,-0.19915164369034996,-0.10701730480991961,-0.10204680438113456,0.07467504642057952,-0.10265086206145842,0.07235257287841114,0.03054639771253578,0.030977156121700374,-0.016700516248383184,2.449489742783178,9.100176364785773,3.4996426185119476,14.160163334976328,27.37753618158401,29.74388188104555,30.644348337363695,31.6442858373637,31.7072858373637,29.06654989022896,21.84988862436811,1.9389876816146954,5.2776735842461555,0.0,7.21666126586085,1729.9815898332843,1584.2531953626226,510.2352669235986,6.0,20.0,22.0,23.0,28.0,24.0,18.0,13.0,11.0,211.120843404,15.0,4.2626798770413155,5.043425116919247,5.872117789475416,6.683360945766275,7.513709247839705,8.336390480591552,9.16858043772795,9.996750182995818,10.830381867194474,0.5937499999999999,0.9808749999999999,1.1390268271049617,0.5496550037465657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6214723241017964,0.9658088235294119,1.0063046249089584,0.5783717878587422,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,20.63637078852845,0.0,11.49902366656781,0.0,0.0,0.0,0.0,0.0,0.0,19.913841467842857,17.696185628620217,12.586597235060536,6.103966387748303,145.0821268152528,-275.73142180822117,-42.34783424650194,-8.616606931506912,-27.573142180822114,274.649435872213,521.9766287842256,29.128451207030803,16.31176964950705,23.72621039928298,0.4444444444444444,0.6288975902895646,0.2653273779627807,104.5111197159474,0.1543229542503266,161.48022934279712,0.37110240971043545,5.0,0.26666666666666666,0.2981531024473155,0.6657253534039749,0.810845859334435,0.8530639062229566,0.8655639062229566,0.8780639062229566,1.1291999999999998,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,57.870100000000036,15.319582184522117,0.0,5.316788604006331,0.0,25.993281616277514,6.544756405912575,23.762552697081826,0.0,11.49902366656781,3.4339872044851463,0.0,4.709530201312334,0.0,6.163314804034641,0.0,7.699389406256737,0.0,9.280892027927127,18.999999999999996,4.31249433106576,0.0,0.0,0.0,0.0,0.0,0.19195898421096924,0.0,31.387999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.448858467358775,5.316788604006331,0.0,11.49902366656781,27.90617941958265,0.0,0.0,25.514892278826544,18.19910120538483,0.0,0.0,0.0,17.588960119890103,19.887114371257486,18.076156137587585,110.62023603138161,,91.70106420756082,90.27136258542112,90.67851415589035,91.71814359056492,124.67050395826315,91.16629992682223,91.77996943090808,110.82405983518825,18.07615613758759,110.62023603138164,,90.92725468375134,89.36759339044673,90.03314896521016,90.94655293022376,126.92954272498275,90.3539325257615,91.01232168964175,111.73384467263878,4.617937700056798,83.7648069984924,,70.47790944466419,69.42191078192793,69.31575911125907,70.48929690831817,92.03245646498712,70.06382367843094,70.53818606511015,83.70816517252617,1.2050770758391722,7.374682402092107,,6.113404280504055,6.0180908390280745,6.045234277059357,6.114542906037661,8.311366930550877,6.077753328454816,6.118664628727205,7.388270655679217,2.3089688500284,55.310118015690804,,45.910055913304234,45.20520200001629,45.38890055415135,45.91842492300101,61.5822390568917,45.64563976349272,45.9490345417053,55.10876830511062,30.90588235294118,0.0,3.97423353909465,0.0,0.0,0.0,28.07072029583438,32.20174799708667,0.4185336356764928,3.0836685090702947,0.0,0.0,-0.38494262828588277,0.0,0.0,0.0,0.0,18.50789721147975,263.9681683426206,47.70449639157049,106.51605654463597,129.7353374935096,136.49022499567306,138.49022499567306,140.49022499567306,195.0,97.70739594555177,155.76339434484527,46.28711364401599,72.72,72.72,0.8,6.4429879165316475,4.906890595608519,3.3830305209586427,3.812444412102666,,3.8076626038447237,3.8085605258069615,3.808057790013613,3.8076516205402755,3.78444093125262,3.807993319133295,3.8076137845725073,3.7955347552266145,0.2255353680639095,0.2541629608068444,,0.2538441735896482,0.25390403505379744,0.2538705193342409,0.2538434413693517,0.252296062083508,0.25386622127555303,0.25384091897150046,0.25303565034844094,1.6242370197278901,1.7437356695033113,,1.7424806191803677,1.7427164111079707,1.7425844008710827,1.7424777346495066,1.736363277681734,1.7425674706064624,1.7424677977751482,1.7392904194969563,169.67999999999975,88.50038794585736,63.49197294512598,,63.66552194211681,63.593633684292485,63.77051848112828,63.66682993113617,65.67250236382361,63.64572420320135,63.66875423840781,64.73971858242244,5.900025863057157,4.232798196341732,,4.244368129474454,4.239575578952833,4.2513678987418855,4.244455328742411,4.378166824254907,4.243048280213423,4.244583615893854,4.315981238828162,4.88847204368145,4.556378595703377,,4.559108267358291,4.557978474140394,4.560756098888858,4.559128811846792,4.590145412714097,4.5587972541575805,4.559159036034074,4.575840009708067,0.0,0.0,31.154388804904677,0.5818981481481484,-0.3899391639371792,4.6091257768539515,-0.6815740740740746,4.3927671747711425,0.0,205.01390207139633,60.895547806187146,-115.73318055760147,-17.774722644714043,-3.616661892425046,-11.573318055760147,115.2790369098749,219.09006608593825,12.22613034379264,6.84656456518557,9.958639367542649,400.0,19.0,1.282021738317077,0.6052867172508587,0.0,0.0,0.2845177968644246,0.0470956976391759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.17536647355387364,0.03540546303448565,11.422285251880869,8.935498913634552,7.002907755397974,4.937298845585719,6.4761809568560995,3.826898327506375,4.642834845898004,2.103692351696225,2.937939427638541,1.212914294235595,2.466242328974816,0.8143396801871954,1.4093558099192236,0.4011058459677954,0.7044898245285891,0.17973765769089747,2.394756390800919,0.7717328420651836,2.4512370245133277,0.675807743882183,3.578436517041986,0.7690799825548544,51.97058074050159,29.17780907685439,24.208646483360873,22.5919171866887,21.0919171866887,20.9044171866887,70.0,77.0,33.21148099999997,17.624519,0.1875,15.04,6.805555555555555,3.388888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,32.0,0.0,1.0,32.0,6.0,0.0,3.0,29.0,6.0,15.0,26.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,4.0,4.0,0.0,15.0,4.0,0.0,1.0,3.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,1.0,2.9444389791664403,3.7256934272366524,3.449987545831587,3.855452653939752,4.246707931475263,4.729045735643632,4.652769164787371,4.4304447058157646,4.027581346062418,4.007333185232471 +6436173,CO[C@H]1/C=C/O[C@@]2(C)Oc3c(C)c(O)c4c(O)c(c5c(nc6cc(C)ccn65)c4c3C2=O)NC(=O)/C(C)=C\C=C\[C@H](C)[C@H](O)[C@@H](C)[C@@H](O)[C@@H](C)[C@H](OC(C)=O)[C@@H]1C,0,22.685185185185187,6.283469444444448,3.3796296296296298,7.814814814814815,162.56149904966847,89.43900578703698,1.419474093956472,6.336499074074076,5.022955246913581,7.818126259259259,212.09943340251485,24.504424778761063,6.420610619469026,4.097345132743363,7.486725663716814,146.0136981010558,92.62163084955755,1.7575281637522127,6.557203539823003,3.2630285152409053,7.8504297345132725,260.36810902195776,21.691542288557216,6.317034328358205,3.8955223880597014,6.527363184079602,153.2837103372004,81.76315052238807,1.5214802990222378,6.419696019900495,3.1095909342178003,7.80790680597015,223.30631726667238,20.75925925925926,6.418932962962964,3.5074074074074075,5.648148148148148,154.2867452306841,76.8940815259259,1.4506660320108262,6.510379259259259,3.4634773662551446,7.919395229629631,212.47635699353185,17.892351274787536,6.367430311614732,3.082152974504249,4.875354107648725,158.80390197343505,64.68621773371106,1.3146772888049512,6.435730311614729,3.448851117406359,7.912225541076491,187.20603497028162,17.2544080604534,6.1872644836272075,2.906801007556675,4.526448362720403,158.65085842315676,62.69457358690175,1.2764520832931312,6.265131486146093,3.2555625524769107,7.737191778337534,179.5464640944347,16.340857787810382,6.295483069977426,2.711060948081264,4.2686230248307,161.6048686136514,58.57518479458239,1.2004257106109588,6.349574492099322,3.548281916227741,7.872268225733635,168.2406867638952,15.973033707865168,6.176303370786517,2.6696629213483147,3.6382022471910114,160.04890862482654,57.05733780449437,1.2317823570866537,6.246077752808987,3.2361423220973795,7.747723640449439,170.80149807083865,14.716386554621849,6.203016806722691,2.546218487394958,3.2626050420168067,162.09641176652767,51.44846247689073,1.1737448876705923,6.259522689075631,3.3023459383753506,7.796162226890755,160.48940350645282,7.705418381344308,0.15280174039780522,0.02717440975560668,0.7540294924554186,4.316529492455417,1.3856981597232358,36.48764571493485,0.22696069055590212,0.14147025891632367,1.8597173401539397,0.09971043998628254,49.33216355311052,0.19821977008145505,-0.009804649280138834,-0.013898655138247274,0.3991989572332083,1.7324708353059708,-0.09344215153722493,0.9988623537311759,0.0005711636701334374,-0.007211827254573384,-0.23411246106147468,-0.008222996525122275,1.511725416275234,1.6261644452633959,0.016118109427144128,0.0003412163135756713,0.0799487644084105,0.9901777122617365,0.059607036055456836,7.732582965321294,0.025728216090550544,0.01763045049955986,0.08551214513566141,0.006862079085027547,8.696585598643253,0.20329218106995905,-0.004363448216735205,2.2582159599382262e-05,0.0176097393689986,0.1478737997256516,-0.10217216484796109,0.9774017153463695,-0.007100952037682156,-0.002593894032921728,-0.01759390241579029,-0.00485461515775031,0.16934148829202375,-0.3714030629097253,-0.007899767887050786,0.0008633071410380902,0.02957138887917399,0.10268150324282944,0.034429744159101404,-1.692500003362077,0.012290747101780972,-0.008190123043907326,-0.12003108973134244,-0.0036881768449542477,0.4131390465335109,0.637524057316016,0.009375948752302075,-0.002377951146636249,-0.0021636467608573216,0.5291184224620181,-0.12114322339949551,2.943819408374237,-0.01800633381417423,0.010425398327822188,0.08486493716255933,0.0030006658071683023,-0.25451043720151073,0.24408416860971005,0.009672446543086044,0.0023376364621017797,4.625371965060546e-05,0.2178739855146512,0.07300980986738383,1.1581705610245268,0.015956435842057838,0.00794631160453577,0.06604834275997472,0.007256577737987989,2.1765564868787277,0.033324856275334894,-0.0022350550045467776,-0.000612688761597479,-0.04285595937177296,-0.12223069928022072,-0.03735791828356508,0.14766063983003647,-0.007779490903585439,-0.0013398240432483963,0.0055951164974680076,-0.002311905987114866,-0.5914973314058881,-0.6163271893119384,-0.011504543463475903,0.0006926770248696864,-0.01608987216285691,-0.4337486023215871,0.08587894182686395,-2.866456551322175,0.00602008481130695,-0.011585451104310007,-0.08254177085214522,-0.005693520829731054,-0.8659090123649797,,,0.46257309941520464,1.0701754385964912,0.4298245614035088,0.017543859649122806,0.6403508771929824,-0.21052631578947367,1.5783920436100125,0.027965142759114457,0.037017774338061825,1.283916981312252,0.20486919122460695,0.26566064079475393,2.8623090249222645,0.4705298320193609,2.0197092409952786,1.5501369037750605,0.11325664422109596,0.3563156929991225,0.0,0.46957233722021846,7.271781106037052,2450.0,678.6147000000003,365.0,844.0,17556.641897364196,9659.412624999994,153.30320214729898,684.3419000000001,542.4791666666667,844.357636,22906.738807471604,2769.0,725.529,463.0,846.0,16499.547885419306,10466.244286000003,198.60068250400002,740.9639999999993,368.7222222222223,887.0985599999998,29421.596319481225,4360.0,1269.7238999999993,783.0,1312.0,30810.02577777728,16434.393255000003,305.8175401034698,1290.3588999999995,625.0277777777778,1569.3892680000001,44884.56977060115,5605.0,1733.1119000000003,947.0,1525.0,41657.4212122847,20761.40201199999,391.6798286429231,1757.8023999999998,935.138888888889,2138.2367120000004,57368.6163882536,6316.0,2247.7029,1088.0,1721.0,56057.77739662257,22834.234860000004,464.08108294814775,2271.8127999999992,1217.4444444444448,2793.015616000001,66083.73034450941,6850.0,2456.3440000000014,1154.0,1797.0,62984.39079399323,24889.745713999993,506.75147706737306,2487.257199999999,1292.4583333333335,3071.665136000001,71279.94624549057,7239.0,2788.8989999999994,1201.0,1891.0,71590.95679584757,25948.806864,531.7885898006548,2812.8614999999995,1571.8888888888894,3487.4148240000004,74530.62423640558,7108.0,2748.455,1188.0,1619.0,71221.76433804781,25390.515322999992,548.1431489035609,2779.5045999999993,1440.083333333334,3447.7370200000005,76006.6666415232,7005.0,2952.636000000001,1212.0,1553.0,77157.89200086717,24489.46813899999,558.7025665312019,2979.5328000000004,1571.916666666667,3710.9732199999994,76392.95606907154,832.1851851851852,16.502587962962963,2.9348362536055217,81.4351851851852,466.185185185185,149.65540125010946,3940.6657372129634,24.51175458003743,15.278787962962957,200.8494727366255,10.768727518518514,5327.873663735936,22.398834019204422,-1.1079253686556882,-1.570548030621942,45.10948216735254,195.7692043895747,-10.558963123706418,112.87144597162288,0.06454149472507843,-0.8149364797667924,-26.45470809994664,-0.9291986073388171,170.82497203910145,326.85905349794257,3.2397399948559698,0.06858447902870994,16.06970164609051,199.02572016460903,11.981014247146824,1554.24917602958,5.171371434200659,3.543720550411532,17.187941172267944,1.379277896090537,1748.0137053272938,54.88888888888894,-1.1781310185185054,0.006097183091833211,4.754629629629622,39.92592592592593,-27.586484508949493,263.8984631435198,-1.9172570501741821,-0.7003513888888666,-4.750353652263378,-1.3107460925925836,45.72220183884641,-131.10528120713303,-2.7886180641289275,0.30474742078644584,10.438700274348419,36.246570644718794,12.153699688162796,-597.4525011868132,4.338633726928683,-2.891113434499286,-42.37097467516388,-1.3019264262688495,145.83808342632935,253.09705075445837,3.7222516546639235,-0.9440466052145908,-0.8589677640603567,210.06001371742119,-48.09385968959972,1168.696305124572,-7.14851452422717,4.138883136145409,33.69138005353605,1.191264325445816,-101.04064356899976,108.12928669410155,4.2848938185871175,1.0355729527110884,0.02049039780521822,96.51817558299048,32.34334577125104,513.0695585338653,7.068701078031623,3.5202160408093457,29.2594158426688,3.214663937928679,964.2145236872764,14.829561042524029,-0.9945994770233161,-0.27264649891087817,-19.070901920438967,-54.39266117969822,-16.62427363618646,65.70898472436623,-3.4618734520955203,-0.5962216992455364,2.4898268413732634,-1.0287981642661153,-263.2163124756202,-293.3717421124827,-5.476162688614529,0.32971426383797076,-7.658779149519889,-206.46433470507546,40.87837630958724,-1364.4333184293553,2.865560370182108,-5.514674725651563,-39.28988292562112,-2.710115914951982,-412.17268988573034,0.7339166959009173,0.5926074370751017,0.43258387782425106,0.30577252407236105,0.2721158629663536,0.1641752230756588,0.170496324657806,0.08538718138109962,0.09921426489764043,0.04340532916435618,0.059969441001821826,0.021078701485654803,0.03604650666224563,0.01063185812036083,0.02177063267905747,0.005150226956667516,8.032293182082201,5.646800638794138,3.5580899257385386,2.14446938066467,0.4897625149169658,-0.4941189251171996,4.0241303679205265,0.9722643946809247,6.030311750507212,0.9930390334298201,14.560441648714711,10.908962515335062,16.019049909514994,11.659552321712107,2.0440284808022793,0.7411712687613959,3.5042829135509224,2.1938327760493026,7.010477510193175,1.1370732293848118,3.7171392786392974,2.3895893574077296,20.943131326725993,14.70027433416327,0.2174098208169978,0.5686609603664179,0.7739104020501045,0.8551517084899979,0.8955997967891332,0.9035491546505219,1.3447550107996482,2378.8100422585153,0.0,5.0,9.0,0.0,13.0,5.0,6.0,4.0,0.0,5.235478816665835,2.7806953564855306,1.3462717264222128,0.778501852172365,0.49582291686698987,0.44026736131143096,418.4874634814058,5381.176441770129,82.58176292336367,49.82570779416786,101.36353032728445,,18.0,1760.0,77.28384268516157,34.809721131578286,55.692267318876745,5.647177220767728,5.563451491696996,40.219109695604075,63.444284496829624,19.056471336613843,5.316788604006331,23.931430336147404,26.366666666666664,61.0,24.5,1.0,36.5,0.0,0.03742690058479538,-12.0,0.15869373514301122,0.046923225308642236,-0.11177050983436898,0.045887568383324195,0.18169851951547822,0.0,0.6003086419753076,0.8690058479532171,0.4416149068322964,0.5533854166666654,0.8231182795698929,89.96834648577071,1.594013137269524,2.110013137269524,73.18326793479837,11.677543899802597,15.142656525300975,163.15161442056908,26.82020042510357,0.5323014804845217,0.2781289506953224,0.018963337547408345,0.470290771175727,0.4418604651162791,0.27296493044596726,-1.5937660678843937,-0.047198720380010634,-0.014757093221151795,-0.05692021671015692,0.7270350695540327,4.244954918289601,0.0424047106677324,0.03930513813231112,0.05306193647862001,-6.407879280320866,0.8243729709015016,0.830022241056333,1.494201638339981,0.7848687156318703,0.46006063286253357,1.299497475993222,0.8294067859076116,1.1614656354867765,0.8073233396388948,0.8197972755284252,0.8677275329664376,1.0201943211378968,0.7068544854170555,0.770008218512622,0.9541137814650765,1.2518272763527443,0.7576527073064014,1.0824132261823434,0.7094671538325857,0.9684380490437038,0.7453554000509476,0.6342176104763404,0.8151597427953587,0.8456486843148805,0.9269460145088789,1.065202264852398,1.1030776649910972,1.1752359295054005,0.9839715579566223,1.1781686380501426,0.9264144881826086,1.0891412749470373,1.0374526872192875,0.9407033078062538,1.1154200278066488,0.99072323872208,1.0450080608384962,1.1778963656424624,1.1346805644592315,1.0477927357000096,1.0100941638828318,1.019660143027415,1.0406332852781242,0.9507273567797899,1.1664469586141226,1.1582361408452089,1.1891051660522431,0.9623252059787667,0.879798060423132,0.8695528513674146,1.136259665034009,1.0921822709548445,0.8478457942793726,1.1322516814398689,0.8834566350481898,1.095471843401427,0.8569264550820991,0.8713359406684298,0.8952951436743174,1.0049633855947364,0.9924820924580613,1.097016725614002,1.0509436031975756,1.0158475534400957,1.0170490138074668,0.9301078353740498,0.988757948594768,0.9068529640724954,1.0900897696755112,1.1254734592919446,1.1134484439132153,0.9216346032767472,0.9781976265926436,1.0046092268703068,1.0843012592895085,1.0747638788637566,1.0178937069903586,1.041859387542519,0.9786350181993735,1.0348915951405881,0.9969937842019392,0.9637531488647759,1.0150198535915056,1.0028379672331398,1.09452650168617,1.172676529733765,1.0393013874614696,0.977165215148026,1.1406208586556894,0.918628695347996,1.090720652361441,0.9481726775234285,1.17123512641445,1.1574740034568212,1.1676281945220692,0.9898280934987906,13.5,0.9105397408427711,9.333333333333336,6.993055555555555,5.871666666666669,4.268888888888888,3.173242630385487,2.3022959183673466,1.6042375283446713,1.2809799382716052,15709.799891763767,17670.456133586547,5571.252911117848,5037.5313645667775,15.900969597743208,0.42673130347142635,9.115528114838726,0.7443827057983388,0.0,0.4418604651162791,1.519408685497633,3.9741921456779377,5.408615775741255,5.976385649991103,6.259064585296478,6.314620140852037,0.21774193548387094,0.007402762120672936,0.09824561403508775,0.06028496168582375,0.04735215053763442,0.03185737976782753,0.023332666399893287,0.017054043839758126,0.012631791561769063,0.01049983555960332,0.5264031409919412,46.50156087408949,18.770083102493075,8.96,329.9359927691709,0.0,4.976652676363685,433.9503159750847,,348.8074379795745,344.31613764216803,350.9636108643716,348.87726900886605,471.5277619225999,347.3703770089216,349.0309687475063,416.6926153570257,0.025724725157217628,-0.06416582202933904,-0.5114611600857191,0.5294208797234952,0.4013573493089865,-0.0674332652328037,0.027375357717922842,0.0025165753097352137,-0.050977691776467375,-0.12588604515678484,-0.08246876180923018,0.03064380938102837,0.21104168064391216,0.10548380787536922,0.012556530818678437,0.1060286967663104,0.22939208778543135,0.043015887433495686,0.21192331853179147,0.1133597894310843,0.12462301712466546,0.045981259242645484,0.06882006624353061,0.17628632057218807,0.02638301660064981,-0.028556273020028246,0.0008310082832516008,0.023354178510517295,0.03425756733137365,-0.07373334815452727,0.02678719594523762,-0.03128714501303977,-0.01833526037763142,-0.0094605250141583,-0.048687130037919545,0.003432679130517201,-0.04820024618117224,-0.05169946275797952,0.03176912208221821,0.03921781465454069,0.023787976758249844,0.024846496271581992,-0.04638556339274352,0.05415363811097353,-0.05789289640553773,-0.06454265233737443,-0.036988873436539255,0.00837463870986987,0.08273711118133885,0.061360222258546655,-0.08750700265515887,-0.0028694458008686518,0.12257959163416585,-0.08742396210130736,0.08067989454220378,-0.07933679515193022,0.07369321585810178,0.04563324507988647,0.030093797676362808,-0.005159117680446091,0.03167695205242398,0.06330063072517841,0.08602344938217006,6.134205639620942e-05,0.05047434192108709,0.0526881048048487,0.03174144394168115,0.07030484355231395,0.05616948512998641,0.03551525886966645,0.07277650904946661,0.04412043442075003,0.004324860069378991,-0.014627156724314909,-0.022546534298544158,-0.05683591928508922,-0.02831689196004797,-0.026959636210404248,0.004046866739050723,-0.03427682073283652,-0.009470711748968175,0.0030085843566984576,-0.023186197828762183,-0.011990095078013109,-0.0799862069532962,-0.07529065724987744,0.025490048582445173,-0.0213385183521959,-0.10048549490504079,0.06197521532684758,-0.0785596465641218,0.026524790687593357,-0.08189319220206226,-0.04438404109589727,-0.057100548653825314,-0.017552625913776328,4.754158064230897,31.48269474191192,50.842000559602596,14.250503656965371,38.83307062511753,46.068876984860296,48.1652635956283,48.653963221675404,48.70996322167539,115.12342673673089,88.35780351517845,6.45562872060247,20.309994500949983,0.0,26.765623221552453,16463.556566837775,11945.60897364036,8556.07935888074,815.0,95.0,135.0,185.0,255.0,332.0,433.0,558.0,678.0,785.3523594520016,62.0,5.752572638825633,6.652863029353347,7.585281078639126,8.512180649592693,9.455088847042777,10.396016814019003,11.34707156888344,12.297507142751899,13.254957080535439,0.6450617283950618,0.9904074074074076,1.1274569217450627,0.6058420213569661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6539057607008205,0.9760711692084243,1.0117274958862723,0.6199378689191943,3.0,1.0,0.0,0.0,0.0,5.0,7.0,1.0,0.0,3.0,0.0,0.0,0.0,5.0,0.0,4.0,0.0,10.0,0.0,0.0,0.0,4.0,0.0,1.0,4.0,0.0,8.0,0.0,1.0,0.0,0.0,44.690349998569346,39.97095498499993,5.749511833283905,0.0,11.690424675716445,18.784306158477257,4.9839785209472085,0.0,0.0,45.92300911926414,44.54341733452597,67.34851993314848,35.52365531782749,251.57435277752253,-1468.8724531452608,-43.500047834455664,-13.60067086245612,-52.459730469473605,670.0618162589284,3912.303988624868,39.08171508890801,36.22503693171174,48.90379985781085,0.3333333333333333,0.8196089774020274,0.08678899711338572,127.75435800548838,0.053454867007840905,3.535453586115586,0.18039102259797254,12.0,0.03225806451612903,0.22493471357013628,0.5883432025189281,0.8006966472807984,0.8847498419591703,0.9265979016366761,0.9348223991635062,6.157840000000009,,3.178571428571429,3.699860400186133,2.580224801034257,3.169421905532194,-13.459782362276126,3.329482864137087,3.154231781744574,-5.346913143368569,213.1433999999995,53.757172946778475,0.0,9.384673127209002,23.671624184645573,92.5166115007794,12.426586145283864,71.15919758945287,0.0,17.248535499851716,4.8283137373023015,0.0,6.22455842927536,3.044522437723423,7.807510042216193,5.58724865840025,9.483187955469509,7.853604813097837,11.21687514284793,69.66666666666667,5.370204622898582,4.865048674816199,0.0,0.0,0.0,0.9263365914508019,0.1585620743455607,1.6773440861445044,106.96400000000003,0.0,40.70104539104432,0.0,0.0,0.0,7.671243397138509,0.0,-1.5352399933608116,121.76534754846676,10.05365155780638,5.687386274683562,17.248535499851716,84.78328691508146,23.79966322954379,37.519098584026814,69.95105205699716,54.468843114361874,0.0,27.45302708492984,0.0,65.43093830655233,70.62182215568862,71.91590862323523,875.1345520060753,,702.140752355079,693.4173862059483,706.5562086367734,702.276619628836,948.7968978059353,699.3426607380679,702.576382470817,838.3677096804267,71.91590862323523,875.1345520060752,,699.5580601772369,690.4097521251854,704.4304964009189,699.7012044676649,959.1686428502624,696.6307072624311,700.0144491858633,842.3319713807169,5.244549894624644,612.1930939612412,,493.8848756125948,487.53907235504585,498.2866908775793,493.98756584338037,674.3435402950984,491.91114045493674,494.1953863322274,593.2891042685508,1.2616826074251795,15.353237754492548,,12.318258813247,12.165217301858743,12.395722958539883,12.320642449628702,16.645559610630443,12.269169486632771,12.325901446856438,14.708205432989942,2.6717753710316767,433.9503159750847,,348.8074379795745,344.31613764216803,350.9636108643716,348.87726900886605,471.5277619225999,347.3703770089216,349.0309687475063,416.6926153570257,105.41568627450982,0.0,16.152268383563573,0.0,0.0,0.0,46.580269194078106,109.26656955571741,0.0,2.814690432946118,23.81720684864187,0.0,-6.157950936305753,0.0,-1.957695434068245,0.0,0.0,66.95328984327298,755.3812780406877,164.09613803374435,429.21275173321726,584.1305037800556,645.4496501990392,675.9789752120197,681.97897521202,3605.0,204.25353884964335,166.25489099576328,113.0458212163328,198.37999999999997,198.37999999999997,0.5,10.793677176938573,6.954196310386875,4.969506576445499,7.495375039629423,,7.492815156711242,7.492890694435045,7.490857271661177,7.492809093037237,7.459524508881886,7.492779234660886,7.49281653499754,7.481957289824504,0.08718432590255262,0.1314978077127969,,0.13145289748616215,0.13145422270938675,0.13141854862563468,0.13145279110591643,0.13086885103301554,0.13145226727475237,0.1314529216666235,0.13126240859341234,3.3437867296271575,3.7547523437861927,,3.7544107571223546,3.7544208384257716,3.7541494213155864,3.7544099478569004,3.749957848268994,3.754405962911405,3.754410941070062,3.7529606023599635,585.8800000000022,12029.85416513028,491.07003044412096,,492.09936001344215,492.01757287198035,492.727934844082,492.1022760567491,499.451989628757,492.0963662893663,492.1012294313446,494.9882995454662,211.05007307246106,8.615263692002122,,8.633322105498985,8.631887243368077,8.6443497341067,8.633373264153493,8.762315607522053,8.63326958402397,8.633354902304292,8.684005255183617,11.135612861136439,7.937052920660356,,7.939146822190239,7.9389806079144405,7.940423340254425,7.9391527478932655,7.953977651450246,7.939140738595287,7.93915062104572,7.945000299847943,25.494550934786375,45.56609406586051,49.38826801970568,2.1805783865611703,-6.9582071521778985,3.6376410252820444,5.622139669751876,14.693303784468775,1.4589645990947988,727.3174228783256,231.86002272170052,-1353.7659805199721,-40.091217439050084,-12.534870189999742,-48.34878501857043,617.553205354485,3605.72086018225,36.019122173915235,33.38630426094676,45.07151075227813,12175.0,116.0,5.37107504372971,2.696514160906971,0.14433756729740643,0.041666666666666664,2.029499870726988,0.6398920910215019,0.08333333333333333,0.008505172717997146,0.0,0.0,0.0,0.0,0.14660880187581576,0.05051551815399144,0.6067111153067271,0.17849845724639427,1.3901733410340886,0.3384502671678549,41.83325166635229,33.778623913280796,26.820200425103565,18.957896492486384,25.85100698180359,15.596646192187587,23.017003828803812,11.527269486448448,18.35463900606348,8.029985895405893,15.292207455464565,5.375068878841975,11.967440211865549,3.5297768959597953,9.426683950031885,2.2300482722370343,13.88458473512417,5.627720468833538,21.887208217877077,7.676895677756531,36.67560818012392,10.41146285139297,195.10121675314784,69.47860265220841,40.918541483888546,32.16079213932517,29.10415047217774,28.575829638604013,314.0,387.0,117.938443,64.13155700000011,0.3425925925925926,652.14,23.34027777777778,12.277777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,17.0,20.0,108.0,0.0,0.0,113.0,20.0,6.0,14.0,99.0,26.0,62.0,87.0,0.0,0.0,4.0,43.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,51.0,13.0,5.0,4.0,57.0,14.0,0.0,3.0,11.0,0.0,6.0,2.0,0.0,0.0,0.0,2.0,4.0,4.3694478524670215,9.91901707528959,5.025523906590006,5.675468730341594,6.3578422665081,7.0569562290834815,7.6729541896140345,8.306693971918278,8.917737357358076,9.427588925634293 +9926001,Nc1cnc(-c2cc(Cl)cc(Cl)c2Cl)c(N)n1,0,59.583333333333336,6.5877625,3.9583333333333335,8.700617283950617,162.99190249001848,250.19355641666667,2.087437097247625,6.909508333333334,3.9115416857186402,8.311159458333334,289.08019985982565,37.12,6.6816400000000025,4.52,9.293333333333333,152.44358156883607,147.11891555999995,2.1327368852,6.91162,3.633580246913581,8.143373039999998,312.6310669931318,38.5,6.571284210526314,4.342105263157895,8.298245614035089,152.2242661743394,153.60049063157894,2.0906604447288935,6.8284394736842104,3.5123456790123457,8.099278421052631,298.5822524174584,41.630434782608695,6.707839130434785,3.652173913043478,6.670155662909287,159.13043380254283,165.01904315217394,2.0146674591304348,7.01603043478261,3.456525052517181,8.377771630434783,275.5165802751763,39.97727272727273,6.561679545454546,3.272727272727273,5.21324354657688,161.22743819250516,158.9537359318182,1.8588819341942509,6.858786363636366,3.275255989247759,8.270395068181818,250.43473227612228,42.07692307692308,6.686930769230771,2.8974358974358974,4.568217790440013,163.4186862934587,167.45810423076924,1.7995678605128205,6.992248717948719,3.3061134364289364,8.405049205128206,242.18137116979955,32.027027027027025,6.200524324324325,2.4324324324324325,2.870870870870871,166.1921653552111,124.88763332432431,1.5259393990173242,6.495110810810812,2.6321877432988536,8.045163189189187,195.428475602524,26.695652173913043,6.3502652173913035,2.0434782608695654,1.9371980676328504,165.67669066233222,94.89059986956521,1.564022774782609,6.712386956521739,2.6496689926641617,8.30811365217391,185.62885589390095,23.266666666666666,5.946880000000002,1.7333333333333334,0.9111111111111112,172.23227613879502,86.56115579999998,1.1554002369496668,6.2079200000000005,2.3193415637860086,7.877593600000001,133.3857696596796,22.57638888888889,0.09163593749999994,0.025371414145046834,0.7482638888888888,3.3850308641975313,1.6686786375967888,104.6454176388889,0.27532277152262324,0.11914097222222221,0.7455585086114921,0.09218719270833332,45.50664349205459,-0.8197222222222222,-0.03393393749999999,-0.017698443013913483,0.2050694444444444,0.6526234567901226,0.1755809210252016,-3.5393531022222224,0.051384724895666666,-0.033881305555555546,-0.3203565576893766,-0.023450769374999996,7.0023373149866766,1.2262426900584797,0.013786430921052617,0.003981469247663311,-0.03883406432748543,0.16475795971409965,0.010227474592931262,5.991679058479531,0.03808664357319249,0.010870869883040925,0.16629151826181826,0.00045085115131579464,6.006845447282543,-1.6361714975845407,-0.011857133152173911,0.0004295145390171381,-0.07072765700483095,-0.41079575952764386,0.2181543252908473,-7.603645193236708,0.009601703791200072,-0.020946950483091746,0.015238990444192616,-0.013555913722826102,-3.7442272297199177,1.6338383838383843,-0.007433948863636359,0.00040420954398138716,-0.19523358585858583,-0.8184624017957352,-0.2309280577033258,7.647711277777781,0.01886527567244113,-0.0048207070707070665,0.08680663805406601,-0.004220634943181823,0.3468260972330937,1.8723290598290616,-0.017507091346153827,-0.005756848639836956,-0.09441773504273503,-1.0396684077239633,-0.21426691018431485,8.267369846153851,-0.0334745529169427,-0.003578579059829009,-0.3770781917429722,0.009819259214743576,-10.118067347683567,2.774962462462462,0.03349649493243241,0.007084278859696336,-0.02303866366366365,0.2243284951618287,-0.1853164341283912,13.148538804804797,0.010980792381767565,0.044323442192192135,0.11764265551559788,0.023830961570945955,10.185955212205219,-14.58725845410628,-0.040309850543478236,-0.0069569143098025124,-0.0435537439613526,-0.3655730005367681,-0.32438897012367823,-68.1889385410628,-0.190305218544982,-0.06797249396135262,-0.20137532471190095,-0.044324109375000004,-31.21845530823675,2.6847222222222205,0.050984062499999976,0.009063228046969728,0.04618055555555565,0.829989711934157,-0.24177504452789225,12.519929266666649,-0.027707811094862,0.06293069444444435,0.1810443974495758,0.03786111562500003,7.753752689820241,,,0.5142857142857143,1.5147058823529411,0.8529411764705882,0.14705882352941177,0.6617647058823529,0.19117647058823528,0.6034499985761413,0.025184856434160612,0.03530250349298414,0.9765397598931509,0.2931914249797892,0.17657745754917348,1.5799897584692921,0.46976888252896265,1.9910463947317893,1.2359095164437233,0.4439300143578264,0.0,0.3112068639302395,0.7551368782880659,11.998901219333343,1430.0,158.1063,95.0,208.8148148148148,3911.805659760443,6004.645354,50.098490333943005,165.8282,93.87700045724736,199.467827,6937.924796635815,928.0,167.04100000000005,113.0,232.33333333333334,3811.0895392209013,3677.9728889999988,53.318422129999995,172.7905,90.83950617283952,203.58432599999998,7815.776674828295,1463.0,249.70879999999994,165.0,315.33333333333337,5784.522114624897,5836.818643999999,79.44509689969796,259.4807,133.46913580246914,307.77258,11346.125591863418,1915.0,308.5606000000001,168.0,306.8271604938272,7319.99995491697,7590.875985000001,92.67470311999999,322.73740000000004,159.00015241579032,385.377495,12673.76269265811,1759.0,288.7139,144.0,229.38271604938274,7094.007280470228,6993.964381,81.79080510454703,301.7866000000001,144.11126352690138,363.897383,11019.12822014938,1641.0,260.79030000000006,113.0,178.1604938271605,6373.3287654448895,6530.866065,70.18314656,272.69770000000005,128.93842402072852,327.796919,9445.073475622183,1185.0,229.41940000000002,90.0,106.22222222222223,6149.11011814281,4620.842433,56.459757763640994,240.31910000000002,97.39094650205759,297.67103799999995,7230.853597293388,614.0,146.0561,47.0,44.55555555555556,3810.563885233641,2182.483797,35.972523820000006,154.3849,60.94238683127572,191.08661399999994,4269.463685559722,349.0,89.20320000000002,26.0,13.666666666666668,2583.4841420819253,1298.4173369999996,17.331003554245,93.11880000000001,34.79012345679013,118.16390400000002,2000.786544895194,541.8333333333334,2.199262499999999,0.608913939481124,17.958333333333332,81.24074074074075,40.04828730232293,2511.4900233333337,6.607746516542958,2.859383333333333,17.89340420667581,2.212492625,1092.1594438093102,-20.493055555555557,-0.8483484374999998,-0.4424610753478371,5.12673611111111,16.315586419753064,4.38952302563004,-88.48382755555556,1.2846181223916666,-0.8470326388888887,-8.008913942234415,-0.5862692343749999,175.05843287466692,46.59722222222223,0.5238843749999994,0.15129583141120584,-1.4756944444444462,6.260802469135786,0.38864403453138796,227.68380422222216,1.4472924557813145,0.41309305555555514,6.319077693949094,0.017132343750000195,228.26012699673663,-75.26388888888887,-0.5454281249999999,0.019757668794788352,-3.2534722222222237,-18.89660493827162,10.035098963378976,-349.76767888888855,0.4416783743952033,-0.9635597222222203,0.7009935604328603,-0.6235720312500007,-172.23445256711622,71.88888888888891,-0.3270937499999998,0.017785219935181035,-8.590277777777777,-36.01234567901235,-10.160834538946336,336.49929622222237,0.8300721295874098,-0.21211111111111094,3.8194920743789043,-0.1857079375000002,15.260348278256124,73.0208333333334,-0.6827765624999993,-0.2245170969536413,-3.682291666666666,-40.54706790123457,-8.35640949718828,322.4274240000002,-1.3055075637607654,-0.13956458333333135,-14.706049477975915,0.38295110937499943,-394.6046265596591,102.6736111111111,1.2393703124999993,0.26211831780876443,-0.852430555555555,8.300154320987662,-6.856708062750474,486.4959357777775,0.4062893181253999,1.639967361111109,4.352778254077122,0.8817455781250003,376.88034285159307,-335.50694444444446,-0.9271265624999994,-0.16000902912545778,-1.0017361111111098,-8.408179012345666,-7.4609463128446,-1568.3455864444443,-4.377020026534586,-1.5633673611111103,-4.631632468373722,-1.0194545156250001,-718.0244720894452,40.27083333333331,0.7647609374999996,0.1359484207045459,0.6927083333333347,12.449845679012356,-3.626625667918384,187.79893899999973,-0.41561716642293,0.9439604166666653,2.7156659617436367,0.5679167343750005,116.30629034730362,0.739822693544713,0.628403458472417,0.44367061127735363,0.3139214085390173,0.29369977797096264,0.17305654335839846,0.1839212543169992,0.09352850517435803,0.11753277195680316,0.048704084888478674,0.07379662495709795,0.02608599287713448,0.0498803783053736,0.013811157100399958,0.029380691821187698,0.006768652079557598,17.00315550722562,5.691378717923728,3.1750206404788326,2.1828869602763423,0.40393107750555574,-0.3698301099267086,3.254600561107778,0.9925399354249805,5.047093241876483,0.7729058349623438,14.554074280415497,10.950266286251246,35.452539223197,11.703166152922554,2.219461747495956,0.9998583233006991,3.1917929076089617,2.235151390656311,4.006458619440436,1.2787909233248917,3.4993943312872404,2.4316308080962075,22.458536651143515,15.58716363516822,0.3735339054788684,0.6877539798884784,0.80137630257819,0.8918289783533957,0.8918289783533957,0.8918289783533957,2.0422754709681525,586.0039603978297,0.0,3.0,0.0,0.0,6.0,0.0,1.0,0.0,0.0,2.734402204393347,1.1776942711037672,0.6147869792568113,0.16666666666666696,0.16666666666666696,0.16666666666666696,-63.77576892084804,678.331739398401,54.16564971963584,28.26382247493338,62.46148762415713,,8.0,222.0,0.0,0.0,11.635725555670057,26.325279427769438,0.0,12.263210640074686,6.06636706846161,0.0,9.967957041894417,46.27015462502192,8.742857142857144,25.75,14.5,2.5,11.25,0.014285714285714339,0.0,3.25,0.29693877551020376,0.10892857142857126,-0.1880102040816325,0.11716686674669863,0.15201652892561968,0.0,0.7357142857142858,0.9151260504201679,0.438775510204082,0.6267857142857145,0.7979591836734693,10.258649975794404,0.4281425593807304,0.6001425593807304,16.601175918183564,4.984254224656416,3.0018167783359493,26.859825893977966,7.986071002992365,0.5619834710743803,0.33660130718954245,0.0,0.4003267973856209,0.0,0.5718232538992527,-0.8736617450104273,-0.07068189375500904,-0.0364025727087678,-0.0970735272233808,0.4281767461007472,0.6541910295190152,0.0513190880680311,0.027257959563292303,0.04361273530126768,-4.839645681352695,0.49919409412488464,1.1658008082254847,1.7621023455163405,0.7940603248259862,0.6123546842945065,1.0676830314213115,0.4965708809564625,0.45247455944753817,0.9245098302081453,1.4675778357710747,0.8980292352386938,0.5208337326756142,0.5551814016739789,0.6184836483761452,0.6607299866124979,1.1290755892050313,0.8789905582282581,1.077519440100619,0.552219153301591,0.5990753612208146,0.6055418647806838,0.5005157024893425,0.707089517238623,0.6432090188048054,0.962934481697939,1.0621515167016216,0.8637576002845386,1.0580046403712298,1.0819846516222171,0.9103201703655154,0.960870762109219,0.8259146630957588,1.0726700978649244,0.8500482863406619,1.0932196892633712,0.8885147619796036,0.8687466793434188,1.0551341849617977,0.9425873090816979,1.2516346762286439,1.2478966782021261,1.1159495497419254,0.8676176543673084,0.8668207345822773,0.9950870154774845,0.7924486880799188,1.004763487886511,0.9128649678758856,0.8582211390578047,1.2444678788737307,1.4060769051957376,1.001606282348742,1.1858950005747362,1.1412202777142206,0.8609767830896495,1.0297643390142062,1.0256017188572575,1.714008848496156,0.8950138482208675,1.0898410554103763,1.0445767206763823,0.6648352787797259,0.6078229621410157,0.9519031792813696,0.9855449249112344,0.9171031007696056,1.0447063487247226,1.122630633824556,0.7423784596659867,0.760309333011952,0.7939383435141304,0.9970102239502223,2.0190710550599817,1.4316844851399049,1.2588755093855253,0.8909512761020882,0.9929336676544335,0.9796739349263198,2.0226044872987328,1.868229333602683,1.7250572675926625,1.3372899384468937,1.6945423716384143,1.792026153293213,1.1857274684712396,0.5870104182652139,0.6405496608762495,0.8965197215777263,0.8595800724362384,0.8376423454187139,1.1909621880149028,1.4235639013199144,0.7305281441802717,0.8805798761839558,0.7057113090565293,1.2732237895448582,4.5,0.0,2.4444444444444455,1.6875,1.3377777777777782,0.638888888888889,0.32163265306122457,0.16493055555555555,0.02040816326530612,0.0,3903.420606395318,4103.830823093739,1705.655120813999,1623.6513380131419,10.217889260898986,0.4766304508581588,5.347732095657963,0.9106958011593919,1.0,0.0,1.8505602963278094,3.407268229617389,3.970175521464345,4.418295834054489,4.418295834054489,4.418295834054489,0.25,0.0,0.09401709401709406,0.0625,0.05816425120772947,0.033625730994152045,0.02297376093294461,0.027488425925925927,0.006802721088435374,0.0,0.5555719841662814,13.432098765432098,5.325443786982248,2.879706152433425,112.51737336212445,1.0,3.7572356727281573,59.21153275269344,,40.1298451746127,42.793369966582304,42.20395864993137,40.05323419210677,51.159381484876135,42.62158273771984,42.7812318636508,49.44907642396929,-0.03630882805290679,-0.3703125479564173,-0.6975741640861072,0.274060324825986,0.19279689993161586,0.10522153101814208,-0.03382234198190928,0.18663448944485284,-0.28437996537715005,-0.42968667648364706,-0.2543820750588942,0.15387505598406256,0.05431527141446357,0.15044786245628386,0.15692736813570948,-0.051898888753205585,0.04867251328686417,0.006129085830247548,0.05725696541396257,0.13833452047050496,0.09124375670499428,0.2230428817337422,0.004890605062052612,0.13199930793250728,-0.07247268399021035,-0.12939391984911944,0.01692907366383401,-0.0945223443962474,-0.12135657723907599,0.1307347744350767,-0.07266104302316817,0.03487435397406313,-0.17581651460776573,0.020439697579970346,-0.14704768986419853,-0.0822786947662632,0.07236934090210007,-0.08112481921883936,0.015931691535621375,-0.26091541868804047,-0.24178875603539382,-0.13838977290193255,0.0730821420596605,0.06852057883955659,-0.04046221027738019,0.11643169121056954,-0.04578331131673886,0.007621438775058177,0.08293306201642106,-0.19105049638580754,-0.22690294703028382,-0.12618240228449043,-0.3071370541167669,-0.12840513766802905,0.07900364901483738,-0.1215829432916779,-0.030036510472268345,-0.5057660631426933,0.10651435330946961,-0.2223426421122483,0.12291436314813735,0.3655388469445454,0.27922286157152865,-0.030789490186241907,0.06627073848409619,-0.11105579585730282,0.12564849088927965,0.039883342453078834,0.37202518466543877,0.15779131236083987,0.2585062075416875,0.22383446526843218,-0.646128950289543,-0.4398912876673331,-0.2742028595658979,-0.05820639564208609,-0.10799694750299782,-0.1943987073453876,-0.6516189631577528,-0.6912076959436848,-0.570521565281254,-0.27009996182182516,-0.4808055009900881,-0.6860197305847762,0.11891725622885257,0.5563762852319812,0.35722202929469377,0.06171693735498853,0.24519413418433264,-0.14489011789357703,0.11964144774948964,-0.10063755693591529,0.5282036336506115,0.24283056977881984,0.41069821645168236,0.1703872686451603,0.8254818122236568,8.328388866405263,8.495871337853877,26.173047522923,42.04153083193522,47.87227584821298,55.14823529047137,55.14823529047137,55.14823529047137,33.84778871044042,21.010461779543295,7.54681024408305,0.0,5.290516686814072,12.83732693089712,3005.9256316848673,2186.081739813866,1011.3124048232373,26.0,26.0,33.0,42.0,51.0,48.0,41.0,42.0,30.0,287.97362926400024,18.0,4.48863636973214,5.332718793265369,6.220590170099739,7.085901464365611,7.975564658495202,8.848078421168667,9.738082108118487,10.613368932087239,11.50347091119929,1.013888888888889,1.0195,1.1279724304266612,1.0044403741015182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.8060766217564871,1.0218954248366015,1.0440185724690458,0.7583674689599024,3.0,2.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.46733495432437,11.51179077268349,5.817862777835028,0.0,0.0,0.0,9.967957041894417,0.0,0.0,34.802819670697545,12.13273413692322,10.586084805438322,16.24211019909573,253.87646565972113,-387.8858624459337,-31.381146622307835,-16.16191093524724,-43.0984291606593,190.1006967388731,290.44587695246736,22.784503097328006,12.101911539686142,19.363058463497826,0.5,0.8779018650276279,0.2502498057005431,66.50723594878937,0.10329737141022438,203.61661537991836,0.12209813497237211,4.0,0.05555555555555555,0.40361514320711234,0.7431398248254962,0.8659123211672695,0.963649284669078,0.963649284669078,0.963649284669078,3.2682,,2.5126050420168067,1.0924943313267574,1.2959810796169098,2.553555015762319,-1.370892410341951,1.2238507661558966,1.1904044904339521,-1.0274326237608868,71.3228,0.0,0.0,9.967957041894417,0.0,0.0,11.46733495432437,33.397477649760276,0.0,11.257379486545457,3.6109179126442243,0.0,4.948759890378168,0.0,6.484635235635252,0.0,8.116417072794205,0.0,9.796292020932572,24.333333333333336,4.540703420256992,7.975519652305366,0.0,0.0,0.0,0.0,2.4073631582262562,0.0,24.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.07133833023987,11.46733495432437,11.635725555670057,0.0,9.967957041894417,0.0,0.0,0.0,18.329577708536295,15.067899941223978,11.257379486545457,0.0,24.106568978436435,19.34583892215569,20.738438556950157,118.42306550538694,,79.96408975604695,85.58142187800564,84.40967176796866,79.80605014706504,102.96388880991321,85.17320428860506,85.47169083575352,99.38165055323782,20.738438556950157,118.42306550538697,,77.93995997196131,84.74598503640283,83.41862741296751,77.74530217443319,103.68965538009424,84.2373184086035,84.56138151953932,99.92558547169949,4.8404285911003075,86.06123674176926,,59.809642553634035,62.51220038851599,61.743484295307944,59.72994999484983,74.6396281146927,62.408291503891235,62.654304239846155,71.74820764005625,1.2199081504088327,6.966062676787467,,4.703769985649821,5.034201286941508,4.965274809880509,4.694473538062649,6.056699341759601,5.010188487565004,5.027746519750207,5.845979444308107,2.4202142955501538,59.21153275269344,,40.1298451746127,42.793369966582304,42.20395864993137,40.05323419210677,51.159381484876135,42.62158273771984,42.7812318636508,49.44907642396929,24.525490196078433,0.0,0.0,17.88767372483973,0.0,11.188740044371658,0.0,25.0564457392571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.200819255037658,389.7683788993999,44.41344711186743,81.77443751081734,95.28421251514428,106.03910001730773,106.03910001730773,106.03910001730773,374.0,106.80641182853175,54.20878349919433,49.957022132384424,77.82,77.82,1.0,8.058277859155922,5.169925001442312,3.7787990020300515,4.065797666116382,,4.071357781416394,4.062064170655404,4.063179331795111,4.07146989943694,4.047318327296336,4.063636607507124,4.06361441453588,4.05047684289224,0.22228229423706186,0.2391645685950813,,0.23949163420096434,0.23894495121502377,0.23901054892912418,0.2394982293786435,0.23807754866449032,0.23903744750041908,0.23903614203152235,0.23826334369954355,1.8600344858779236,1.933238202638691,,1.9346048021097713,1.9323195118935619,1.9325940048724795,1.934632339968841,1.9286827714598678,1.9327065398962602,1.9327010785240977,1.9294628642356662,180.87999999999977,80.64309912848698,80.92085646327705,,80.05362231540424,81.37967949663235,81.28346912517144,80.01856707079371,82.06756348492225,81.21069524004905,81.19749041421755,82.13233107132388,4.743711713440411,4.760050380192768,,4.709036606788485,4.787039970390138,4.78138053677479,4.7069745335761,4.827503734407191,4.7770997200028855,4.776322965542209,4.831313592430816,4.9206614862996165,4.924099847379815,,4.913324940142004,4.929753855272495,4.928570915147515,4.91288694719263,4.938171104008209,4.9276752043351015,4.927512591523348,4.938959991113595,0.0,7.975519652305366,1.0846803350970031,12.107968439433385,0.4034544280675241,3.154957640463593,1.3857457797933987,0.0,0.0,208.80488608497845,112.71535282338715,-172.2124645432771,-13.932512430186463,-7.17551935596988,-19.134718282586345,84.40036790812057,128.9513362797277,10.11579903181367,5.372972344988656,8.59675575198185,488.0,27.0,1.5133704066864415,0.7615381363330493,0.0,0.0,0.3664307840402861,0.16427547787794808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12359693729953272,0.03526709006307398,0.37410815517551954,0.10516855038743377,12.576985790260121,10.68285879403109,7.986071002992365,5.650585353702311,7.636194227245029,4.49947012731836,6.069401392460974,3.086440670753815,4.936376422185733,2.0455715653161044,3.7636278728119956,1.3303856367338585,2.394258158657933,0.662935540819198,1.2046083646686956,0.27751473526186154,3.1978862410258393,1.469622116260122,4.941305616168272,1.8649718341139025,7.664136497365664,2.5169608665419965,66.393300622315,46.404386462119405,38.448371357441914,28.322682296173888,28.322682296173888,28.322682296173888,88.0,103.0,32.307551,9.692448999999998,0.5,52.07,7.027777777777779,3.6944444444444446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,24.0,0.0,0.0,25.0,12.0,0.0,6.0,19.0,12.0,18.0,13.0,0.0,0.0,0.0,10.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,4.0,2.0,1.0,17.0,7.0,0.0,4.0,0.0,0.0,2.0,1.0,0.0,0.0,3.0,1.0,2.0,3.2188758248682006,6.577317920795264,3.8918202981106265,4.460144413937834,5.0369526024136295,5.585374243605899,5.757520694443002,5.9486059749623,6.305818978475576,6.404737635117641 +6917864,C[C@@H]1CC[C@H]2[C@@H](C)[C@H](OC(=O)CCC(=O)O)O[C@@H]3O[C@@]4(C)CC[C@@H]1[C@@]23OO4,0,22.254545454545454,6.404909090909088,3.309090909090909,7.672727272727273,164.9163147056177,87.58567452727279,1.283343515195854,6.431569090909088,4.874494949494949,7.967282254545451,193.6053126003304,24.310344827586206,6.503448275862069,4.172413793103448,6.879310344827586,146.10378229193023,91.54386941379313,1.6582173854482765,6.627734482758621,2.948275862068965,7.9500165517241355,247.40727248130688,20.79824561403509,6.435526315789473,3.7719298245614037,5.473684210526316,154.1082113305705,77.3168420614035,1.385663968392413,6.51760087719298,3.1087962962962967,7.9487322456140355,202.78900209293604,17.578034682080926,6.408843930635839,3.2658959537572256,3.901734104046243,158.67964887879089,63.243938433526004,1.2298101054619828,6.4713479768786115,2.723306037251124,7.977487791907514,177.63248357044597,14.405797101449275,6.343478260869566,2.7246376811594204,2.9613526570048307,162.90255207643355,49.60378101449277,1.0849573889080193,6.384573913043476,2.7167874396135265,7.95869472463768,150.41048784254437,13.157635467980295,6.1876847290640375,2.4729064039408866,2.561576354679803,164.75251230042755,45.143330443349754,1.0299609637374139,6.2248423645320194,2.9045566502463043,7.824080591133005,138.6246589211303,11.117977528089888,6.086853932584269,2.303370786516854,1.9157303370786516,165.8616808758191,36.310649,0.9875223146719156,6.122605056179774,2.48353620474407,7.747952,127.70809207284556,11.244755244755245,5.926643356643357,2.125874125874126,2.335664335664336,164.34321585943744,37.55051371328671,1.0077045469745176,5.975477622377623,2.632284382284382,7.577996503496505,127.82888208577157,11.0,5.868062015503877,2.007751937984496,2.10077519379845,168.6344887479158,37.8919045891473,0.9086247615844419,5.903167441860466,2.6708656330749343,7.553427286821706,118.1455467062448,8.22611570247934,0.1912198347107437,0.024029701706297663,0.749090909090909,4.626115702479339,1.2408097167178322,38.7319288661157,0.21620928809846085,0.17520383471074383,1.9327502295684116,0.1291148747107438,47.502865704275145,0.6259219150755195,0.012824052436591734,-0.014436221069605147,0.2772413793103446,1.8005300655457392,-0.0614814742550112,2.8934924417213006,-0.008206051409695825,0.012895287546309636,-0.05386656533991957,0.006911470116842327,0.6863197571150207,1.3147136436131643,0.04563662461939979,0.003721394417415087,0.03017543859649116,0.8188603740756853,-0.054237303934703676,6.006199644410621,-0.008231709674038275,0.04182972190807605,0.398565116878514,0.02994857983471068,1.1343891888594577,-0.2407242153537479,-0.015449997611426843,-0.0012890437696325638,-0.009942196531791946,-0.3664204844026179,-0.07944953020538736,-1.0972773057373493,-0.01165895449783809,-0.012873629771174603,-0.16117683667998958,-0.01194665568814801,-1.3010497677357786,-1.1856238272048547,-0.025686237872799063,-0.0017147338769301988,-0.09507246376811597,-0.6702966423124526,-0.063681055964647,-5.546065539984826,-0.013043523125468288,-0.024442578672096378,-0.1228541674984363,-0.01598700892242593,-4.741065095572054,-0.19449904327647272,0.0015907340308594126,0.002918563972829386,-0.08236453201970445,-0.316039571713553,0.00807624645909832,-0.9338973213776828,-0.0001005721440736391,0.0005960040711639351,0.31359997195420397,0.002119968818141119,-0.9668942781076226,-1.1349001764323516,-0.021651908255176936,-0.002110667761053589,-0.11640449438202242,-0.646646856718358,0.008479497674066238,-5.296697905237259,-0.001847578864509156,-0.021440535425759147,-0.10238903333642868,-0.012304405660692673,-3.4418296058056175,0.024106802288620627,0.018356770502224912,0.001203582327268555,0.020139860139860168,0.5975333757151937,-0.1050831230286129,-0.027188890019074208,-0.019583968415445952,0.015661861411315824,0.11073179345906616,0.013265131900826638,-3.7251678987698793,1.9750118521365878,0.016178333013005152,-0.000756149986578969,0.028217054263565914,0.47931065410980844,0.07840595975672593,9.372140623806771,0.021534092882672187,0.019246806585943813,0.03947590777400499,0.005461473139855414,9.900656811415084,,,0.4506172839506173,0.7685185185185185,0.1111111111111111,0.0,0.6574074074074074,-0.5462962962962963,1.3995611310603084,0.02462001280106681,0.040545938726992733,0.549748707692388,0.11929313363128484,0.35290957809998524,1.9493098387526966,0.4722027117312701,2.049807720469458,1.4760968018187344,0.0,0.5737109186507234,0.0,0.5737109186507234,6.9850621428363775,1224.0,352.26999999999987,182.0,422.0,9070.397308808973,4817.212099000003,70.58389333577198,353.73629999999986,268.0972222222222,438.2005239999998,10648.292193018171,1410.0,377.2,242.0,399.0,8474.019372931953,5309.544426000001,96.17660835600003,384.40860000000004,170.99999999999997,461.1009599999999,14349.6218039158,2371.0,733.65,430.0,624.0,17568.336091685036,8814.119995,157.96569239673508,743.0064999999997,354.4027777777778,906.155476,23117.946238594708,3041.0,1108.73,565.0,675.0,27451.579256030825,10941.201348999999,212.757148244923,1119.5431999999998,471.13194444444446,1380.105388,30730.419657687155,2982.0,1313.1000000000001,564.0,613.0,33720.82827982175,10267.982670000003,224.58617950396,1321.6067999999996,562.375,1647.4498079999998,31134.970983406685,2671.0,1256.0999999999997,502.0,520.0,33444.759996986795,9164.09608,209.08207563869502,1263.643,589.6249999999998,1588.28836,28140.80576098945,1979.0,1083.4599999999998,410.0,341.0,29523.3791958958,6463.295521999999,175.77897201160098,1089.8236999999997,442.06944444444446,1379.135456,22732.04038896651,1608.0,847.51,304.0,334.0,23501.079867899552,5369.723461,144.10175021735603,854.4933000000001,376.4166666666667,1083.6535000000001,18279.530138265334,1419.0,756.9800000000001,259.0,271.0,21753.84904848114,4888.055692000002,117.21259424439302,761.5086000000001,344.5416666666665,974.3921200000001,15240.775525105579,452.4363636363637,10.517090909090903,1.3216335938463715,41.199999999999996,254.43636363636364,68.24453441948077,2130.2560876363636,11.891510845415347,9.636210909090911,106.30126262626264,7.101318109090908,2612.657613735133,36.303471074380134,0.7437950413223205,-0.8373008220370985,16.079999999999988,104.43074380165288,-3.5659255067906495,167.82256161983543,-0.47595098176235784,0.7479266776859589,-3.124260789715335,0.40086526677685497,39.8065459126712,149.87735537190073,5.202575206611576,0.42423896358531993,3.4399999999999924,93.35008264462813,-6.183052648556219,684.7067594628109,-0.9384149028403634,4.76858829752067,45.436423324150596,3.4141381011570173,129.32036752997817,-41.64528925619839,-2.672849586776844,-0.22300457214643352,-1.7200000000000066,-63.390743801652896,-13.744768725532014,-189.8289738925614,-2.0169991281259896,-2.2271379504132063,-27.883592745638197,-2.0667714340496057,-225.0816098182897,-245.4241322314049,-5.317051239669406,-0.35494991252455116,-19.680000000000007,-138.75140495867768,-13.181978584681929,-1148.035566776859,-2.7000092869719357,-5.05961378512395,-25.430812672176316,-3.3093108469421675,-981.4004747834152,-39.48330578512396,0.32291900826446074,0.5924684864843653,-16.720000000000002,-64.15603305785126,1.6394780311969592,-189.5811562396696,-0.020416145246948736,0.12098882644627883,63.66079430670341,0.43035367008264713,-196.2795384558474,-202.01223140495858,-3.854039669421495,-0.3756988614675389,-20.71999999999999,-115.10314049586772,1.5093505859837903,-942.8122271322321,-0.3288690378826298,-3.8164153057851284,-18.225247933884305,-2.190184207603296,-612.6456698333999,3.44727272727275,2.6250181818181626,0.1721122727994034,2.880000000000004,85.4472727272727,-15.026886593091646,-3.8880112727276117,-2.8005074834087713,2.2396461818181628,15.834646464646461,1.8969138618182093,-532.6990095240927,254.77652892561983,2.0870049586776647,-0.097543348268687,3.640000000000003,61.83107438016529,10.114368808617645,1209.0061404710734,2.777897981864712,2.4828380495867517,5.0923921028466435,0.7045300350413485,1277.1847286725458,0.7184065461692233,0.5930257011482979,0.4249824405581431,0.32879861209084665,0.2722839442071177,0.1841977086668812,0.16102681763071275,0.10435932369133924,0.09593786082184794,0.0568854356799267,0.059837085506804666,0.031016553011008113,0.037073018539959236,0.01831648154410152,0.02384693148112583,0.009931157286407557,8.105404146432523,5.760391245835331,3.610855655990394,2.2592939845823747,0.4423105045209685,-0.4672370530046205,4.034871248358233,0.9726051558632111,6.105305702388829,0.9930407819058292,13.722649159120055,11.020870592190885,16.101769040790174,11.771995136175647,1.9237134296390739,0.6909649565294173,3.552264913588883,2.3090427182765456,7.009375626787662,1.0866636175656421,3.766008507179778,2.5050874751088257,20.82912438009731,14.608569852058015,0.2421154578943438,0.48275801916026184,0.7223938271907014,0.8316953729626748,0.8979039495276858,0.8979039495276858,1.5654446981546197,622.8309079866845,0.0,2.0,5.0,0.0,0.0,7.0,0.0,5.0,0.0,4.35121019223711,2.929760910192312,1.5142584093662599,0.8686261365603167,0.47753931829982665,0.47753931829982665,208.79011206437391,1619.5935383646772,66.02259468357556,29.447155242994125,60.71578383131782,,12.0,555.0,35.90682599812841,9.589074368143644,30.5953613843362,12.338727669087403,19.26246486877803,0.0,0.0,13.847474399381248,6.923737199690624,29.092258162753076,12.166666666666666,20.75,3.0,0.0,17.75,0.0,0.04938271604938274,-14.75,0.16387878787878762,0.0,-0.16387878787878762,0.022398589065255714,0.22798135818908105,0.0,0.6078787878787878,0.9271604938271601,0.4440000000000002,0.6078787878787878,0.9047619047619044,37.78815053862833,0.6647403456288039,1.0947403456288038,14.843215107694476,3.2209146080446907,9.528558608699601,52.631365646322806,12.749473216744292,0.4860186418109189,0.20547945205479454,0.08219178082191782,0.32876712328767127,0.8947368421052632,0.3214212920466807,-0.8904928211253718,-0.07688412688067263,-0.01619077856591585,-0.055655801320335735,0.6785787079533195,1.8799920321184012,0.036054455677139975,0.034181673311243645,0.048204923900471826,-1.7257148447184545,0.7902044798208514,0.6692554766804415,1.615704705508808,1.0621024439236693,0.42446762898385026,1.4239888096124262,0.8016549819336964,1.3889128907902737,0.6549852345089864,0.6671020771669406,0.7104231372478272,1.1654285622055252,0.7663770421069552,0.6323541722018207,0.7911372504568475,1.4199029126213594,0.7642279021836427,1.2386744162149483,0.7760882192400341,1.218709459378861,0.6266519129737147,0.4279359478436585,0.6558852332284527,1.0629405679745578,1.0034688120509219,1.0893746305090874,0.9846654721154963,1.2387058757506035,1.0961324465233242,1.1559231802658338,1.0031360882501184,1.1313101614417358,1.0730197983680985,0.8282980914116028,1.1180035874218355,1.049328001114323,1.146546060678068,1.2095839484310125,1.0183450979366648,1.1460531869987338,1.1965065773530272,1.048959895204827,1.1435906913236682,1.0481133447377806,1.2067904144305217,0.8041218378298765,1.2104776150911065,1.0716235075038807,1.0100976907233798,0.980866492277684,0.744417889627162,1.042732794490411,1.0658737629286583,0.9513444912632664,1.0101218843906195,0.960284807294531,0.9867338886385988,0.515393180280742,0.9704644576848068,0.9909281557221782,1.1181037316519435,1.071754696281125,0.9294469055366422,1.0897785535071454,1.1267469364880296,0.9257689343147589,1.1168583649755937,0.9480955918291514,1.0854177752454681,0.8093121074100003,1.0457373204109546,1.0362999367664356,0.9272872281231065,0.6832834201273453,0.7812765477187965,0.8203204562427864,0.7212981387627666,1.0459483830996554,0.9353733160036422,1.0705172001351244,0.7054851290241052,0.7455555516978051,0.654945586101107,1.0830022216831743,0.7235245959858394,0.7586322796036816,0.8709152442064955,0.7823436441634681,0.8119177321842252,0.8084892202438195,0.7236819318942791,0.7965681083301686,0.7509523143473423,1.0323063189013144,0.7725083237454756,0.7540122341922093,8.5,0.1618181818181818,4.88888888888889,3.2222222222222223,2.885555555555556,1.489722222222222,0.7936054421768706,0.40883645124716556,0.3373803224993701,0.1871913580246914,6108.444909252417,6992.0752760479545,2715.6828979177308,2435.9214488395073,12.654141709141191,0.4759919472994955,6.630872155603309,0.9083676192502095,1.0,0.8947368421052632,1.4301495212875497,2.851598803332348,4.2671013041584,4.912733576964343,5.303820395224833,5.303820395224833,0.2833333333333333,0.011558441558441558,0.10401891252955087,0.056530214424951264,0.05771111111111112,0.033857323232323225,0.02645351473922902,0.016353458049886624,0.014057513437473752,0.01101125635439361,0.6148850787706944,20.28,7.356269805341784,3.43801652892562,157.89918388840783,1.0,4.252200422566388,131.49578155058197,,113.75031920914857,111.51398521756528,118.44834837306914,113.79496471408567,181.34061361652212,113.21567784813467,113.84182555564678,149.73202272690037,0.07608960750295155,0.06706444682368097,-0.600765720942001,0.3701037830599261,0.3892099076944306,-0.04954947839838078,0.0747056117892607,-0.03795420391911573,0.07360162845521823,-0.027870422424913187,0.053529619513832956,0.014447965337241823,0.15982192460737105,0.2386605170349292,0.1548664424927002,0.04028274569919937,0.17700819148055938,-0.04371121792805687,0.1550710181559043,-0.038072877194293274,0.23874889483518233,0.2062165668284591,0.23195297909558849,0.023880436938720634,-0.02926341229083296,-0.08079704511196706,-0.05364376908993146,-0.013272349739042648,-0.07920694335557518,-0.0640303901032834,-0.028330045465339397,-0.05392439242725155,-0.07347801372286497,-0.08339248093944389,-0.09252733827076173,-0.02738886903866701,-0.1441292427782786,-0.13432831333451561,-0.07135893311904093,-0.12691712396229074,-0.1448940505213069,-0.051322177048302775,-0.14319104940928346,-0.060328227525213066,-0.13950938181490333,-0.06356443042610321,-0.12382003977652961,-0.0998058753989103,-0.023644092827171267,0.008318875671374256,0.12145652112129605,-0.10995265196805207,-0.06831640020247949,0.006508851720198859,-0.02411182062752095,-0.0004651610712849623,0.003401775264496462,0.162255819275847,0.01641924544240536,-0.020354441016820685,-0.13796306999308244,-0.11323045168368416,-0.08783578701272139,-0.15539434929638918,-0.1397818166051903,0.006833842095060356,-0.13675275309800103,-0.00854532606234648,-0.12237480681377103,-0.05297582262312934,-0.09529812648045587,-0.07245519938170511,0.0029305206929383294,0.09599825525418434,0.050087277069824056,0.026885735623599742,0.12916524664416615,-0.08468915226306974,-0.0007019761425530288,-0.0905787562952776,0.08939222955463891,0.05729234526273624,0.10273899061238707,-0.07841985622426613,0.2400904538142251,0.08460593555829578,-0.03146730641191432,0.03766839768194479,0.10360974193812851,0.06318935022859426,0.24197453878951813,0.09959837096760453,0.10985379753656477,0.020424733196291,0.04229933345860235,0.20842230599414233,3.5075485327301594,13.338154250608365,8.483078965318448,13.33500241156575,30.468058833170012,36.186012626729955,39.53350136110571,39.92771687391228,39.92771687391228,55.34480845267536,39.85461364910583,0.0,15.490194803569533,0.0,15.490194803569533,5550.811359565284,4785.216157824659,1406.34921076706,307.0,47.0,66.0,95.0,140.0,183.0,219.0,248.0,282.0,384.17841785600075,30.0,5.043425116919247,5.942799375126701,6.894670039433482,7.829232537543592,8.791941988456118,9.743612184572003,10.71225988664308,11.673384774907047,12.645304518452901,0.6242424242424239,0.9970909090909092,1.1361662477909114,0.5819286865827535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6185759825802942,0.9808912655971478,1.0195457856055092,0.5873451288788557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,1.0,6.0,0.0,5.0,0.0,6.0,0.0,2.0,0.0,0.0,19.31711625624085,0.0,11.8910775403189,12.07713788190581,0.0,9.589074368143644,9.775141906512223,0.0,0.0,13.847474399381248,38.022014160791436,18.256633715248796,12.841643245852019,187.89918561804356,-520.5718476916297,-44.945575123052606,-9.464942685302358,-32.53574048072686,396.6892976824175,1099.0216906730475,21.07701956052295,19.982212557691767,28.18004335059096,0.5,0.6979187193154363,0.17369484198091562,128.87511106676433,0.11124161512150266,20.811395203893298,0.30208128068456386,6.0,0.13333333333333333,0.24737251998728266,0.49324016228594847,0.7380791916780632,0.8497540060466587,0.9174001719383258,0.9174001719383258,2.6024000000000003,,2.0,2.2857142857142856,1.3850734870264096,1.9941246327895499,-8.658354114713216,2.0697674418604652,1.9879584017515048,-3.1919558244642054,89.78980000000007,38.68133253089671,0.0,0.0,23.671624184645573,83.26435675885266,0.0,0.0,0.0,0.0,4.110873864173311,0.0,5.517452896464707,0.0,7.130098510125578,3.367295829986474,8.85609105525229,6.111467339502679,10.653038695742612,34.333333333333314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.84000000000001,0.0,22.76443162130917,0.0,0.0,0.0,0.0,0.0,-1.6077799509126174,62.48914362850013,0.0,0.0,0.0,41.013353392969115,33.574805136056014,23.671624184645573,59.29614133662794,0.0,0.0,0.0,0.0,32.00607776205145,34.02167904191618,34.15054750716886,263.9505451875552,,228.26808678873368,223.74265232444304,237.60901942982414,228.35646114170112,364.7084927788183,227.19636184771855,228.44922862896368,301.0461081817516,34.15054750716886,263.95054518755524,,226.768672798983,222.04545876887596,236.5523136781876,226.86115405285875,371.33958134775753,225.64853082242092,226.9582354899622,303.2922993174857,5.262314490840325,192.42287604876876,,164.11770484225545,160.49440643566967,171.9090651538824,164.19174620910013,272.9983390851411,163.2346155212726,164.26946180248274,222.38597424885046,1.2648350928581058,9.775946118057599,,8.454373584767914,8.286764900905299,8.80033405295645,8.457646708951893,13.507721954771048,8.41468006843402,8.46108254181347,11.149855858583393,2.652273042409007,131.49578155058197,,113.75031920914857,111.51398521756528,118.44834837306914,113.79496471408567,181.34061361652212,113.21567784813467,113.84182555564678,149.73202272690037,53.94901960784313,0.0,6.061244392207561,0.0,0.0,0.0,8.757188404103953,56.07501820830301,3.1794350250685923,0.0,29.553211316985216,0.0,-0.7980448542926009,0.0,-1.576352621135945,0.0,0.0,32.303982088337065,407.99524559161097,78.65822367081523,156.83793418327912,234.690571728712,270.2003467330389,291.71012173736585,291.71012173736585,1644.0,136.27663042205415,176.59323770884998,72.74631819124765,100.52000000000002,100.52000000000002,1.0,7.463363045520021,5.906890595608519,4.187656003306594,5.103537729810303,,5.101166841800678,5.099591162971425,5.1039274957404634,5.10119708926653,5.095424050385664,5.10079445038447,5.101228749133599,5.1065937698452455,0.1550983704928368,0.1890199159189001,,0.18893210525187698,0.18887374677671945,0.18903435169409125,0.18893322552839,0.1887194092735431,0.18891831297720257,0.1889343981160592,0.18913310258686095,2.4253929239885137,2.6231857447728135,,2.6227210790814857,2.6224121454039984,2.6232621135718714,2.6227270085829337,2.6215946649528923,2.622648075194153,2.6227332149239686,2.6237843737182507,273.4900000000005,946.9243141339567,170.49707852846967,,170.6160633740462,170.79594708329947,170.29399544434057,170.61261348465285,170.93731072865086,170.65731320905925,170.60900101492086,169.9081543759145,35.07127089385025,6.314706612165543,,6.319113458298007,6.32577581789998,6.307185016457058,6.318985684616773,6.33101150846855,6.320641229965157,6.318851889441514,6.292894606515352,7.846470941285404,6.131969934856671,,6.132667561748081,6.13372132506272,6.130778101362905,6.132647341352624,6.134548658371277,6.1329093024641415,6.132626167607594,6.128509795686025,17.79616525468212,34.52147768361227,8.757188404103953,-0.6973557439951288,-1.8241733242373581,0.0,1.7187866669599163,6.061244392207561,0.0,349.0032401265038,109.84369993384387,-304.32030689096837,-26.274665592252248,-5.533096488926697,-19.020019180685523,231.89999487368945,642.4754232648651,12.321382897380257,11.681371332088455,16.47372880166321,1700.0,57.0,3.048337400298504,1.6222811991684944,0.24481807704061406,0.09820927516479827,0.6845809224341887,0.41184622933405474,0.08957624642754414,0.03862229996596576,0.0,0.0,0.0,0.0,0.0,0.0,0.13842726880637102,0.08061391053027436,0.5924573009197138,0.29807439491660975,19.396976746569027,16.011693931004043,12.749473216744294,9.8639583627254,12.797345377734533,8.657292307343416,10.627769963627042,6.88771536362839,9.114096778075554,5.404116389593037,8.377191970952653,4.342317421541136,6.7843623928125405,3.3519161225705782,5.222477994366557,2.174923445723255,6.407225058788435,3.5566575878436284,11.055518215604037,5.747057173085351,19.924386875725695,9.291549214862956,100.1652740947346,48.57913854790526,34.24904093642323,25.90272063521251,23.59285281586088,23.59285281586088,154.0,190.0,56.81620399999997,36.769796000000014,0.2909090909090909,198.08,9.76388888888889,5.666666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,1.0,0.0,0.0,55.0,0.0,0.0,58.0,0.0,2.0,2.0,56.0,2.0,30.0,56.0,0.0,0.0,2.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,7.0,1.0,4.0,27.0,8.0,0.0,0.0,8.0,0.0,5.0,4.0,0.0,1.0,0.0,0.0,0.0,3.4965075614664802,5.811140992976701,3.9512437185814275,4.248495242049359,4.605170185988092,5.003946305945459,5.241747015059643,5.438079308923196,5.583496308781699,5.71042701737487 +9578005,Cc1c(OCC(F)(F)F)ccnc1C[S@@+]([O-])c1nc2ccccc2[nH]1,0,34.97435897435897,7.100469230769227,3.7435897435897436,12.136119025007915,170.26080185986117,141.8881167551106,1.6693368119970768,7.112041025641022,9.164151833266677,8.429716435897433,243.64297890843986,33.73170731707317,6.696195121951219,4.317073170731708,9.127371273712738,148.4915154624512,131.91082769525858,1.9504463007317077,6.846017073170732,3.502429823680953,8.085941609756096,287.8559918408996,30.434782608695652,6.99277536231884,3.8115942028985508,8.901771336553946,159.89712113705366,118.78245804282476,1.641821382554275,7.0683724637681165,6.10896155146021,8.353787913043476,243.40329697868202,25.753086419753085,6.919170370370372,3.382716049382716,6.388203017832647,164.25057615731578,96.6657126165926,1.5122805065851357,6.973635802469137,4.7574302697759485,8.360210320987658,214.92619797049545,23.6,6.542862500000001,3.2,5.559722222222222,159.61618239805995,87.51687436881998,1.5282666655568373,6.629540000000001,3.6641117969821666,8.043452874999998,207.42879531677642,22.352941176470587,6.281774117647059,2.929411764705882,5.368627450980393,160.74957426315135,83.17153960013177,1.3980635661091998,6.378598823529411,3.6297143548777533,7.8632619294117685,186.2392295692756,22.2,6.832012500000002,2.7875,6.476388888888889,168.8006032398797,83.36799955992,1.2220716447110749,6.871845,5.16730324074074,8.309731324999998,183.38764301680737,20.59722222222222,7.168458333333334,2.7222222222222223,5.4753086419753085,179.83374707979308,75.02208959,1.1881133298443336,7.158865277777778,5.1734682213077265,8.591500916666668,175.14715802601123,23.57894736842105,6.687157894736841,3.0,4.345029239766082,168.328716730571,89.00193684788773,1.296780758820912,6.745942105263158,3.54927442061945,8.208128280701757,190.08392971240636,11.239973701512163,0.2937220249835632,0.034806841123263356,0.7034845496383955,5.619808280776939,3.24838200958153,52.1915737698414,0.30642413078050623,0.2557001972386587,4.225997470548119,0.17205105719921096,46.28459047124053,1.1433909013646355,-0.013453857378810455,-0.01198909522036458,0.085133336540466,0.9708077678336873,-0.28392680738457754,4.955250221986623,-0.008205810155789377,-0.00816217347380575,-0.4886818241770678,-0.005932874585077251,0.47017440071805133,0.7912414601377818,0.0952230511962953,-0.004738771210014471,-0.046851327787782636,0.5910087545167436,0.5473041974126188,4.319203495387642,-0.016474226364794897,0.0817799588371495,1.4177662637624693,0.05147417579967413,-0.5937328068985767,-1.3355735748898137,0.0017461611512893536,0.003223089800029967,-0.056444347042637635,-1.4592753726445824,0.41840590152585677,-6.743748503448757,0.02996022641664352,-0.0051982979034260815,-0.1669829521225356,0.009123788004967518,-3.505675287991401,-1.3226660092044706,-0.026601832675871066,-0.003299129642849512,-0.10220249835634454,-0.5846824498177775,-0.021632752976556972,-6.355718914996241,0.0012402362682569306,-0.027017248520710052,-0.1405427202885547,-0.014587416494082872,-8.888062055412679,0.06319371930231646,0.027381806087326526,0.0032757473601660396,-0.0407394515991801,1.567332102441873,-0.47467661585650345,1.0632431107632152,-0.05759247455169294,0.028343814827706187,0.35472755945035983,0.006300761503654626,-0.05392180419904428,-0.46946088099934286,-0.03226593523997369,-0.0004624762761270804,0.008374424720578583,0.06253185850764205,-0.9269665680081094,-1.6043411517872062,-0.03167100019893511,-0.023319556213017775,-0.47763578627655845,-0.026870057840236668,1.3733523757193666,-3.168392504930966,-0.07738260190664042,0.0024324589337190883,0.09566074950690334,-1.7882687640522397,0.7690689033752496,-15.2532694760897,0.05300569580637046,-0.07539004766600915,-1.1793003850893948,-0.042224314677843426,1.9885972268066523,1.0740164019516245,-0.08100043254091832,-0.00839437639793817,-0.07775355548634898,-2.2455392749289884,-0.13283257066894666,4.559629006145145,-0.0058327306494194405,-0.06516753866915809,-1.359637437814718,-0.030724806187065294,3.722944763036707,,,0.4622857142857143,1.26,0.6,0.04,0.66,-0.06,0.811175227243147,0.023275804198589684,0.03359580419858968,0.953551301445177,0.25166404639628687,0.22162869190004728,1.764726528688324,0.47329273829633417,2.021031375926213,1.3345733518146168,0.24699411781968614,0.1517443288483031,0.2015809961030925,0.6864580241115967,9.463484162769243,1364.0,276.9182999999999,146.0,473.30864197530866,6640.171272534586,5533.636553449313,65.104135667886,277.3695999999999,357.4019214974004,328.7589409999999,9502.076177429155,1383.0,274.544,177.0,374.22222222222223,6088.152133960499,5408.343935505602,79.96829833000001,280.68670000000003,143.59962277091907,331.5236059999999,11802.095665476883,2100.0,482.50149999999996,263.0,614.2222222222223,11032.901358456702,8195.989604954908,113.28567539624497,487.71770000000004,421.51834705075447,576.4113659999998,16794.82749152906,2086.0,560.4528000000001,274.0,517.4444444444445,13304.296668742578,7829.922721944001,122.49472103339599,564.8645000000001,385.35185185185185,677.1770360000003,17409.02203561013,1888.0,523.4290000000001,256.0,444.77777777777777,12769.294591844797,7001.3499495055985,122.26133324454699,530.3632000000001,293.1289437585733,643.4762299999999,16594.303625342112,1900.0,533.9508,249.0,456.33333333333337,13663.713812367863,7069.5808660112,118.83540311928199,542.1809,308.525720164609,668.3772640000003,15830.334513388427,1776.0,546.5610000000001,223.0,518.1111111111111,13504.048259190376,6669.4399647936,97.765731576886,549.7476,413.3842592592592,664.7785059999999,14671.01144134459,1483.0,516.129,196.0,394.22222222222223,12948.029789745102,5401.590450479999,85.54415974879201,515.4383,372.48971193415633,618.5880660000001,12610.595377872809,1344.0,381.16799999999995,171.0,247.66666666666669,9594.736853642546,5073.1104003296,73.91650325279198,384.51869999999997,202.30864197530866,467.8633120000001,10834.783993607163,438.35897435897436,11.455158974358964,1.3574668038072708,27.435897435897424,219.17252295030065,126.68689837367968,2035.4713770238145,11.950541100439743,9.972307692307691,164.81390135137664,6.709991230769227,1805.0990283783806,46.87902695595005,-0.5516081525312286,-0.49155290403494784,3.4904667981591055,39.80311848118118,-11.64099910276768,203.16525910145154,-0.3364382163873645,-0.33464911242603573,-20.03595479125978,-0.24324785798816728,19.277150429440105,54.59566074950695,6.570390532544376,-0.3269752134909985,-3.232741617357002,40.77960406165531,37.7639896214707,298.02504118174727,-1.136721619170848,5.642817159763315,97.82587219961037,3.5517181301775147,-40.96756367600179,-108.1814595660749,0.14143905325443765,0.2610702738024273,-4.571992110453649,-118.20130518421118,33.8908780235944,-546.2436287793494,2.4267783397481253,-0.4210621301775126,-13.525619121925384,0.739026828402369,-283.9596983273035,-105.81328073635765,-2.1281466140696854,-0.26393037142796094,-8.176199868507563,-46.7745959854222,-1.7306202381245577,-508.4575131996993,0.09921890146055445,-2.161379881656804,-11.243417623084374,-1.1669933195266298,-711.0449644330143,5.371466140696899,2.3274535174227546,0.27843852561411336,-3.4628533859303086,133.2232287075592,-40.34751234780279,90.37566441487328,-4.8953603368939,2.409224260355026,30.151842553280584,0.5355647278106432,-4.583353356918764,-37.55687047994743,-2.5812748191978954,-0.036998102090166435,0.6699539776462866,5.002548680611364,-74.15732544064875,-128.3472921429765,-2.5336800159148085,-1.865564497041422,-38.210862902124674,-2.1496046272189333,109.86819005754933,-228.12426035502955,-5.57154733727811,0.17513704322777435,6.88757396449704,-128.75535101176126,55.37296104301797,-1098.2354022784584,3.8164100980586735,-5.428083431952659,-84.90962772643643,-3.0401506568047267,143.17900033007896,61.21893491124259,-4.617024654832345,-0.4784794546824757,-4.4319526627218915,-127.99573867095235,-7.571456528129959,259.89885335027327,-0.3324656470169081,-3.714549704142011,-77.49933395543893,-1.7513139526627217,212.2078514930923,0.7210693303426381,0.5613795735004565,0.4382340169410501,0.3248824827696134,0.29893850551894197,0.17555381997843023,0.1842311701850982,0.10199976603801329,0.1156725465254493,0.059059790524394036,0.07656605982725403,0.03463518077022768,0.05079160508157594,0.020497901018671816,0.03192203976426866,0.012048018961583465,16.003515898961652,5.694955367612479,4.12453034865854,2.1917381452412745,0.5321641877772141,-0.6276955379911185,4.017050039565897,0.9890332667877286,7.014350901598049,0.5439054496249229,17.43069988574936,10.33452327871589,32.061752457122516,11.708660884658153,2.9220106979451685,0.5269737417471427,4.007150294651163,2.2407286634172263,8.007895826907271,0.3969562366633168,4.030595403927691,2.436107339061712,24.435471828375015,13.302786613983844,0.3549730815629889,0.7006217374371976,0.8218555792646689,0.8751564007204413,0.8843385664512641,0.8843385664512641,1.4918073406981338,849.4325983042299,0.0,1.0,4.0,0.0,9.0,0.0,1.0,0.0,0.0,3.3028908695675234,1.3724560880853964,0.6953696276606092,0.39768653857248637,0.3464044872904344,0.3464044872904344,8.511268451318244,1486.0666375323358,75.19093940231558,38.10427275723938,82.45318443750553,,13.0,544.0,23.95903495534168,17.723995016714824,11.502365440030694,21.930516685982425,5.516700717616262,12.263210640074686,12.990104268152233,18.19910120538483,14.951935562841626,4.736862953800049,11.557142857142857,31.5,15.0,1.0,16.5,0.0,0.03771428571428572,-1.5,0.2782025486250836,0.08551992225461602,-0.19268262637046757,0.025142857142857133,0.22927860994607535,0.0,0.7190476190476192,0.9537142857142855,0.44084507042253557,0.6335276967930031,0.9285714285714284,20.279380681078674,0.5818951049647421,0.8398951049647421,23.838782536129425,6.291601159907172,5.540717297501182,44.1181632172081,11.832318457408354,0.4847213900539246,0.14627111660486197,0.04326328800988875,0.33168520807581375,0.25,0.4926783609508097,-1.2596381166961454,-0.09082847240864524,-0.032298413248619116,-0.0899741511925818,0.5073216390491903,1.297076804302609,0.03853436492214731,0.0332583795975028,0.051883072172104375,-6.0836428200171735,0.7040671330906102,0.5941617299598942,1.3212990664736672,1.0303396398449969,0.4619535078831492,1.0005778981916598,0.6845784358716568,1.0807791406001346,0.5668893596526215,0.6321337130046145,0.6088808691653922,0.9056487091687306,0.8794327684075605,0.5241258494077087,1.0795072247710047,1.1341324664770422,0.7401274570913678,0.8337678253814589,0.8490115309891854,1.107799729469095,0.5168986580452445,0.45479239056973586,0.5646993772793403,0.9391165847370223,1.0739549212291375,0.8607672707115532,1.0051344301516267,1.0345102111457256,1.1918809587008203,0.7648921060814323,1.0697796082930158,0.8862198087682049,0.8835306508812626,0.8827581971596618,0.8408949684351064,0.9955990534129026,1.051620993214787,0.6876768378014433,1.20822672858079,1.0301285046728976,0.9232319141898943,0.6919973349583173,1.0340351547311029,0.9627773420068778,0.7133520614779387,0.6048803042763695,0.7079658786611278,1.1542023804396113,1.3314094800297283,0.58634921998432,0.812545295991424,1.0835953820780653,0.6307132015012125,0.895743662844753,1.2704449578539105,1.451789570625483,0.5879525291758172,0.6423118041885961,0.6387873308358885,1.1215421046370528,1.0564971338324753,1.1422067584821267,1.3660146563955191,1.0301285046728976,1.0858018555215023,1.2056827183547323,1.0454639088742084,1.0610934658359583,1.1275090828448011,1.3597501427243626,1.2017764886222602,0.9443226637752759,1.2954882233660896,1.5977346283569027,0.8944981322030858,0.769470404984424,1.468284476707407,0.9788161329001264,1.3218831533716993,0.7531996571747768,1.6179261051972984,1.6318719119039051,1.5507823649199521,0.8710757750263307,0.9223795039775387,1.2708684386298241,1.176771731797029,1.1420560747663555,1.412270388782812,1.0063074980046787,0.9307374725486397,1.0042230446632858,1.2534644656998868,1.3159587148402034,1.1735448521240381,0.9161909634348661,6.5,0.0708070605040302,3.1111111111111125,1.7291666666666667,1.6405555555555558,0.8194444444444444,0.6107936507936507,0.37677154195011336,0.24390589569160995,0.18063271604938275,5425.099464335994,5837.617113661856,2640.9388125645924,2497.7412698939256,16.315675405115645,0.4899273524996732,8.322179749643304,0.9605050474684771,1.0,0.25,1.9825113492947255,3.9129461307768523,4.5900325912016395,4.887715680289762,4.938997731571814,4.938997731571814,0.2407407407407407,0.005057647178859299,0.07977207977207984,0.0480324074074074,0.05292114695340502,0.026433691756272405,0.019087301587301583,0.015070861678004532,0.011614566461505235,0.009031635802469138,0.5077620793380452,19.753086419753085,8.347140039447732,5.258488003621548,143.9829291516583,1.0,4.1481294313665575,134.92349805000404,,88.95687852519214,103.05168791419669,106.48526533206028,88.72061156399126,149.1078255211611,103.34524828401463,102.757180612496,127.53870635627948,0.10172540716984152,-0.04580472771683819,-0.3444465177953652,0.12101664007294284,0.17274748876299265,-0.08740560886838372,0.09494349114358352,-0.02677925571621269,-0.031920872811011386,-0.11563703660089625,-0.03448322074654744,0.010158335548203666,0.07039531240463068,0.32419445290704374,-0.13614482260061475,-0.06659894351889478,0.10516528767330771,0.16848517070907088,0.08275672073876932,-0.05376282319160922,0.31982751566210127,0.3354867752863521,0.29917965421202997,-0.012827872102865413,-0.11882354980155631,0.005944944548802799,0.09259931944458459,-0.0802353755624784,-0.2596663978086522,0.12880440178886396,-0.12921144193098835,0.09777371756046277,-0.020329659341538287,-0.039513263622677375,0.05302953758896961,-0.07574173720235666,-0.1176751871782873,-0.09056805555306831,-0.09478394293714058,-0.1452803738317758,-0.10403957227824595,-0.006659547095368808,-0.12177672478366339,0.00404744973934615,-0.10565986578216598,-0.033256697683334405,-0.08478539296153637,-0.19203069455557525,0.005622230174240952,0.09322353708019963,0.09411217032207715,-0.05791094007696538,0.2788942298624445,-0.14612709172024174,0.020371930447086923,-0.18795019310325412,0.11084784108027645,0.08393936861593793,0.03662146345523021,-0.0011650055374811889,-0.04176708001871786,-0.10985194331878688,-0.013286936165487932,0.011904205607476664,0.011127044800004638,-0.2853625482698462,-0.030739466850763283,-0.10335674321165414,-0.09119881980870113,-0.1130232068536019,-0.15617490690060054,0.02967191373493334,-0.28188611371080946,-0.26345522407102695,0.06988450704575258,0.135981308411215,-0.3182081442474068,0.2367544522493905,-0.29225540397296307,0.1729814674560954,-0.294837659415818,-0.27905846922725147,-0.2454173509027242,0.042964563509366914,0.09555328424008076,-0.27577241626824256,-0.24117030236127174,-0.1105263157894737,-0.39957577958843504,-0.04089191796935813,0.08736331704141675,-0.01903482808146551,-0.25485916465028663,-0.32173172068613914,-0.17857958380046618,0.08043594477410365,6.0672301990490745,12.515425330984987,4.872059729488875,24.125435695069967,42.5391064804551,46.59937563615888,47.46369660021612,47.515388907908424,47.515388907908424,50.52578439815533,33.36433379536542,6.1748529454921535,3.7936082212075775,5.039524902577313,17.16145060278992,8534.347383107768,8004.391277918002,805.3957778579588,84.0,39.0,47.0,59.0,73.0,75.0,77.0,86.0,87.0,369.07588234800045,27.0,4.890349128221754,5.720311776607412,6.6052979209482015,7.456454555176209,8.340694647925071,9.20099685697303,10.084349711593731,10.95008698975197,11.832723746321301,0.8119658119658121,1.043589743589744,1.1476895387174866,0.7885126873015973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6990649777368343,1.0268476621417795,1.0464731917754502,0.6826410830502017,6.0,2.0,1.0,0.0,0.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,9.289612827490412,5.749511833283905,12.359735571259707,0.0,0.0,9.967957041894417,0.0,18.155223663971668,0.0,12.13273413692322,25.122838405075452,22.93614953669536,16.727329430080985,286.36468979384847,-732.1528752431122,-52.793200163194776,-18.77315064725929,-52.296633945936584,294.8759582451667,753.9137622892234,22.3977392391208,19.33112210998009,30.156550491568943,0.46153846153846156,0.8988753551516965,0.23807661724151727,126.42193069714466,0.16508163802135215,1.144810552665819,0.10112464484830358,7.0,0.18518518518518517,0.3750918600328372,0.740330814713126,0.8684358164495007,0.924757563927066,0.9344601464663927,0.9344601464663927,3.515220000000001,,2.553571428571429,2.2745733721402086,1.9962262134093782,2.654757314829302,-9.289610055779939,2.090511846256989,1.9296346839337528,-3.2383629615769918,86.73010000000004,22.46085797051487,0.0,14.951935562841626,0.0,24.009325805701593,6.606881964512918,47.78605840046659,0.0,5.749511833283905,4.007333185232471,0.0,5.351858133476067,2.3978952727983707,6.8679744089702925,4.727387818712341,8.458504195067558,6.842683282238422,10.086850233838494,31.66666666666667,9.960063898146753,8.372819008342546,2.975661669128931,0.0,0.0,1.454245119025062,1.1968694622910905,0.0,40.70000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.759892009981975,4.736862953800049,13.171245143024459,5.749511833283905,32.28786591848838,16.928708080132076,6.923737199690624,11.257379486545457,41.68511539574183,0.0,11.033401435232523,0.0,30.751994804762294,27.263534131736538,31.390198559740547,269.8469961000082,,178.18059947540135,205.92140995862218,212.81083256704784,177.69235824229094,301.66344511766187,206.5232556203287,205.35999045027728,255.85461982333737,31.390198559740547,269.84699610000825,,176.087885397831,203.90594094491735,211.0783963649235,175.51446012669462,307.5052610981022,204.66234932810704,203.6356947632092,258.3157756741359,4.766590327999309,204.72622818558006,,134.40072676465093,159.19180145281825,164.45242345248667,134.12262132896512,223.66962026267927,159.27924969032165,157.88972030953357,192.3414132959977,1.2556079423896218,10.793879844000328,,7.127223979016054,8.236856398344887,8.512433302681913,7.107694329691637,12.066537804706474,8.260930224813148,8.214399618011091,10.234184792933496,2.4187414288378304,134.92349805000404,,88.95687852519214,103.05168791419669,106.48526533206028,88.72061156399126,149.1078255211611,103.34524828401463,102.757180612496,127.53870635627948,40.0470588235294,0.0,1.5871797052154193,0.0,36.91414541888898,0.0,0.0,40.81245447924256,-1.3622727929938423,0.0,4.789793414674818,0.0,0.0,0.0,-4.423642518722942,0.0,0.0,26.623002238957863,522.462893934672,77.3179426224943,152.60489910029725,179.01127105686393,190.62091153130072,192.62091153130075,192.62091153130075,679.0,127.08126533351869,58.77775410434324,73.74048653033402,73.86,73.86,0.8571428571428571,8.442620327563267,5.754887502163468,4.215500804355986,4.927664450777662,,4.913483636967213,4.934243797911787,4.932606650712516,4.914429869831954,4.861443797975011,4.9327143716401665,4.930417242049474,4.9061528943185335,0.16862003217423943,0.19710657803110648,,0.1965393454786885,0.19736975191647146,0.19730426602850062,0.19657719479327818,0.19445775191900044,0.19730857486560666,0.19721668968197897,0.19624611577274134,2.3550591310638835,2.5111558654416792,,2.5082739204696023,2.512490160578956,2.512158312595079,2.5084664807453945,2.4976262034403294,2.5121801508966226,2.5117143496233156,2.506780841986059,236.92999999999984,250.90090182736262,144.64474812433474,,145.83198766934302,143.90913793802798,144.1407839171003,145.7349132343499,150.4538763127678,144.0832062737869,144.32236712094857,146.8520470759763,10.036036073094504,5.78578992497339,,5.833279506773721,5.756365517521119,5.765631356684012,5.829396529373996,6.0181550525107115,5.763328250951477,5.772894684837943,5.874081883039051,6.4413487796097915,5.89057145516627,,5.898745921550923,5.885472845752894,5.887081219936904,5.898080040490493,5.929947299409049,5.886681685921424,5.888340189945232,5.905716329332938,54.224850193478126,11.348480677471477,0.2953823643654996,2.282647949292972,0.09577583039388671,8.622884192931332,-3.0864628135075227,0.20221534948537112,0.0,284.3500700839189,166.44679787126807,-425.55701166993487,-30.685553874908777,-10.911718247947048,-30.396929404995344,171.3938930615463,438.2053237585203,13.018476469955454,11.236033942526163,17.52821295034082,1631.0,36.0,2.822145855238545,0.9075056481293746,0.3535533905932738,0.019090088708030313,0.39363455326096647,0.12771433940090612,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02795084971874737,0.34301303412082035,0.11618653880867118,0.5998618098573926,0.17767109517719237,18.02673325856595,14.034489337511413,11.832318457408352,8.771827034779562,11.658601715238737,6.846598979158779,8.658864998699615,4.793989003786625,6.824680245001509,3.4845276409392483,5.589322367389545,2.5283681962266207,3.809370381118195,1.5373425764003863,2.457997061848687,0.9276974600419268,4.115833766805246,1.6267207657018237,5.662734551354075,2.1755122396823237,8.153167687651088,2.8633800588497715,77.40096677599561,42.13181488435153,32.793082234808075,30.728624178559784,30.560142013489923,30.560142013489923,132.0,152.0,45.53010199999999,26.527897999999997,0.4358974358974359,129.09,8.840277777777779,5.319444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,39.0,0.0,0.0,41.0,16.0,0.0,7.0,34.0,16.0,27.0,25.0,0.0,0.0,0.0,16.0,0.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,4.0,1.0,2.0,25.0,9.0,0.0,3.0,2.0,0.0,3.0,5.0,1.0,0.0,3.0,2.0,3.0,3.58351893845611,7.037727611283503,4.21582445975981,4.767501597905544,5.345618327166001,5.842638209447822,6.054696062141322,6.352833534889536,6.739498411606674,6.762485618812087 +11472813,N#Cc1ccc(N(CC(N)=O)CC(F)(F)F)cc1C(F)(F)F,0,36.70967741935484,8.385312903225806,3.838709677419355,17.29032258064516,187.9447217603465,153.24213293221365,1.4065488433432585,8.26421935483871,17.257616487455195,9.384161032258062,237.7598016642781,32.193548387096776,7.197838709677421,4.451612903225806,12.419354838709678,157.54304336477088,127.68136248423221,1.7179430570967735,7.293451612903227,4.948476702508961,8.437993032258065,282.67742016307596,33.40384615384615,8.013288461538464,3.769230769230769,13.365384615384615,176.2071837269759,135.39823767134266,1.4340794929720575,7.976971153846155,11.543803418803423,9.095041923076927,240.13749506570431,24.765625,7.2797953125,3.453125,8.5,170.67596722849453,94.12145772550001,1.3948692786695152,7.30185625,5.554253472222221,8.59186825,219.00094183970918,24.54794520547945,7.018643835616438,3.0684931506849313,8.506849315068493,168.8234312008005,95.3585625726685,1.2700824831046709,7.062609589041096,5.648401826484018,8.36221895890411,205.38348449816843,24.883116883116884,7.594844155844155,2.6363636363636362,9.103896103896103,182.2478331449278,96.19480443619737,1.0760729417485841,7.562612987012985,7.977633477633481,8.88070535064935,182.7518809678977,25.954545454545453,7.884756060606057,2.6515151515151514,8.909090909090908,185.74194199831658,100.99619009258181,0.9983231527241213,7.822118181818182,9.385206228956232,9.143633393939394,176.02620989855996,22.545454545454547,8.198799999999999,2.1636363636363636,8.363636363636363,198.03633701129178,83.95293790836365,0.8458415292071999,8.103945454545455,7.2310606060606055,9.478774981818184,159.8457685294222,47.625,11.0413125,1.625,24.6875,225.28811449282185,201.46989259722287,0.7465214140530626,10.66505625,30.526041666666668,11.578028250000001,179.9831745513057,8.72216441207076,0.4892129032258063,0.0341750035851652,0.9157127991675337,6.464099895941725,5.026306823169404,43.1855060273298,0.23979088298033507,0.4169918834547344,7.5339490114464125,0.28401300312174815,37.699414996016955,-0.23100936524453658,-0.03383225806451588,-0.021442239089711646,-0.07075962539021856,1.1685744016649322,-0.4627091557665034,-1.025374229857225,-0.00648923232049923,-0.026952549427679433,-0.7180743438547812,-0.0200961331945889,0.6856853572635419,2.078704074281597,0.21283653846153852,0.0007117562445219295,-0.014968382294084707,1.222624669815096,1.7182235427472037,10.868089281023058,0.03400133154583563,0.17953088329464498,3.4522999546412647,0.12362903906187467,1.5295225934991663,-2.3819426378772115,-0.04991406249999978,0.005078037513042506,-0.00845473465140481,-1.1354708636836628,0.4985210587891534,-11.538909569168283,0.01925535158445786,-0.05054248829344421,-1.0686852345646898,-0.024835023283038445,-4.349282833885486,1.0816358530640173,-0.019443835616438063,-0.005425872945323563,-0.09777201260102918,0.7179593174917682,-1.2997960957241255,5.347208146178713,-0.05833155902693817,-0.008376991718101787,-0.2940818243299963,-0.01739744147791249,-1.8247842929241187,-0.03259591605065106,-0.06076363636363627,0.0011097345698421724,-0.0581510061218698,-0.11093692987553534,-0.6958632869579521,-0.3050786243731755,-0.03073886175792368,-0.048552671054231895,-0.9577550441234097,-0.040428104923172545,-0.8416784630726486,0.15711222527039387,-0.05008787878787879,0.01083655010434188,0.031012518525525817,-0.8541292214549235,-1.0017530942634378,0.46505412664626794,-0.028615724901638624,-0.039102049632642806,-0.644167459366471,-0.029226694226342526,-0.879942150874693,-4.774950335824424,-0.35381818181818175,-0.02048484863758073,-0.16673919212941057,-3.662926875413869,-1.826023173436156,-24.31732850326266,0.0016858806029680343,-0.30446015324945613,-5.700045459800922,-0.20106432042380093,0.8895823716896573,5.681061394380853,0.5582562499999988,0.014443560496033556,0.06009365244536949,4.769771071800204,3.6169109389065706,29.180118849435353,0.03586644296770705,0.47284944719042626,8.16553575557868,0.32845364203954175,-3.3371779630169716,,,0.4203463203463204,1.1363636363636365,0.5,0.022727272727272728,0.6363636363636364,-0.13636363636363635,0.7752425560678495,0.04443294214734719,0.04834203305643811,1.1155812690429932,0.24939060710788813,0.20227706721626904,1.8908238251108427,0.45166767432415716,1.9255248202026216,1.1310537651229573,0.2566931732649311,0.07729955980171944,0.4604783220130136,0.7944710550796642,10.485967136387105,1138.0,259.9447,119.0,536.0,5826.286374570742,4750.5061208986235,43.60301414364101,256.1908,534.9861111111111,290.9089919999999,7370.553851592621,998.0,223.13300000000004,138.0,385.0,4883.8343443078975,3958.1222370111986,53.25623476999998,226.09700000000004,153.40277777777777,261.577784,8763.000025055355,1737.0,416.6910000000001,196.0,695.0,9162.773553802746,7040.708358909818,74.57213363454699,414.80250000000007,600.2777777777779,472.94218000000023,12487.149743416625,1585.0,465.9069,221.0,544.0,10923.26190262365,6023.7732944320005,89.27163383484897,467.3188,355.4722222222222,549.879568,14016.060277741388,1792.0,512.361,224.0,621.0,12324.110477658438,6961.175067804801,92.71602126664098,515.5705,412.3333333333333,610.441984,14992.994368366295,1916.0,584.8029999999999,203.0,701.0,14033.083152159441,7406.999941587198,82.85761651464098,582.3211999999999,614.277777777778,683.814312,14071.894834528122,1713.0,520.3938999999998,175.0,588.0,12258.968171888893,6665.7485461104,65.88932807979201,516.2598,619.4236111111113,603.4798040000001,11617.729853304956,1240.0,450.9339999999999,119.0,460.0,10891.998535621047,4617.411584960001,46.521284106395996,445.71700000000004,397.7083333333333,521.3326240000001,8791.517269118222,1524.0,353.322,52.0,790.0,7209.219663770299,6447.036563111132,23.888685249698003,341.2818,976.8333333333334,370.49690400000003,5759.461585641782,270.3870967741936,15.165599999999996,1.0594251111401214,28.387096774193544,200.38709677419348,155.81551151825153,1338.7506868472237,7.433517372390387,12.926748387096767,233.55241935483878,8.804403096774193,1168.6818648765257,-7.161290322580634,-1.0487999999999924,-0.664709411781061,-2.1935483870967754,36.2258064516129,-14.343983828761605,-31.786601125573974,-0.20116620193547613,-0.8355290322580624,-22.260304659498217,-0.6229801290322559,21.2562460751698,108.09261186264305,11.067500000000003,0.037011324715140334,-0.7783558792924048,63.576482830385,89.34762422285459,565.140642613199,1.7680692403834528,9.335605931321538,179.51959764134577,6.4287100312174825,79.53517486195665,-152.44432882414154,-3.194499999999986,0.32499440083472037,-0.5411030176899079,-72.67013527575442,31.90534776250582,-738.4902124267701,1.232342501405303,-3.2347192507804294,-68.39585501214015,-1.5894414901144605,-278.3541013686711,78.95941727367327,-1.4193999999999787,-0.39608872500862013,-7.13735691987513,52.41103017689908,-94.88511498786116,390.346194671046,-4.258203808966487,-0.6115203954214304,-21.46797317608973,-1.2700132278876117,-133.20925338346066,-2.509885535900132,-4.678799999999993,0.08544956187784727,-4.4776274713839745,-8.542143600416221,-53.58147309576231,-23.491054076734514,-2.3668923553601235,-3.738555671175856,-73.74713839750255,-3.112964079084286,-64.80924165659394,10.369406867845996,-3.3058000000000005,0.715212306886564,2.046826222684704,-56.37252861602495,-66.11570422138689,30.693572358653682,-1.8886378435081492,-2.5807352757544253,-42.51505231818709,-1.9289618189386066,-58.07618195772974,-262.62226847034333,-19.459999999999997,-1.1266666750669403,-9.170655567117581,-201.4609781477628,-100.43127453898859,-1337.4530676794463,0.09272343316324189,-16.745308428720087,-313.5025002890507,-11.058537623309052,48.92703044293115,181.7939646201873,17.86419999999996,0.4621939358730738,1.9229968782518236,152.63267429760654,115.74115004501026,933.7638031819313,1.1477261749666257,15.13118231009364,261.2971441785178,10.510516545265336,-106.78969481654309,0.7786087287757918,0.4906398617568518,0.45166767432415716,0.256886476331236,0.3293452027215064,0.1296061195096036,0.1760617291036014,0.07385276011546844,0.11540397091328139,0.03872645323006825,0.07639138948664845,0.01996251380884155,0.05170942168306549,0.010524505609135598,0.029864046447735347,0.005359307157823696,9.01732608301761,5.685980292064606,4.127960184081502,2.1838639967216897,0.5082653128138643,-0.4150037507298088,4.022604671582252,0.911305785569785,7.017314438540986,1.9892574022733909,17.43381277370376,10.948386801101604,19.00870535126836,11.69851480755148,1.9930378123740433,0.5246131811804182,4.010630450213337,2.233134701931493,8.010496043871136,1.2087107853692642,4.034138876063745,2.4286383026888476,20.896622328102247,13.29989058673987,0.3824718552039531,0.7341525374073804,0.8255179993027381,0.8549612934540441,0.8549612934540441,0.8549612934540441,2.864132177472524,602.3498737601783,1.0,1.0,4.0,0.0,4.0,0.0,2.0,0.0,0.0,2.961727017036293,1.1296629035049635,0.6536987905319487,0.5003153227202244,0.5003153227202244,0.5003153227202244,-187.35125326535714,1082.650430075736,73.60823151241075,34.924207421797945,76.31085820479923,,9.0,310.0,48.16357883414116,31.137027470120742,0.0,10.966276799312087,12.13273413692322,6.069221312792274,0.0,0.0,0.0,10.995559031900672,9.247619047619049,25.0,11.0,0.5,14.0,0.0,0.07965367965367962,-3.0,0.4296466973886326,0.09129405903599441,-0.3383526383526382,0.06610750360750339,0.32952167887547007,0.0,0.8629800307219663,1.093290043290043,0.4333333333333337,0.7716859716859719,1.0271825396825396,17.05533623349269,0.9775247272416383,1.0635247272416384,24.542787918945848,5.486593356373539,4.450095478757919,41.59812415243854,9.936688835131458,0.3844783211245299,0.3079299691040164,0.10813594232749742,0.2595262615859938,0.3333333333333333,0.6987084886991387,-1.6046269636786203,-0.12768637875833555,-0.05176216011866519,-0.12343284335989388,0.3012915113008612,0.6919344630561947,0.028454348188720772,0.022320466550199824,0.03844080350312192,-3.514407638123658,0.5547602004294917,0.6422100015825287,1.8927014030762108,1.4147727272727275,0.3670315518351579,1.0155482506153766,0.547276166269564,1.1216097354318275,0.6187732264082582,0.7117165334392245,0.6679520792265172,0.9327161689613174,0.5430248884973294,0.429905763448452,0.9210623644480351,1.056818181818182,0.6204337758185152,0.6806643174399666,0.5312230062479764,0.8945452019794995,0.42297135111153933,0.4000450547363582,0.4393428487933241,0.8897929935453551,1.0791819523979955,0.820547406630796,0.7413072731803221,0.9494850852272729,0.9660988811976823,0.7314305605786311,1.0650417155508611,0.9054426009084097,0.8381748198034985,0.874834274989497,0.8167366922505667,1.1189997111368486,0.787303517321854,0.7927805791188565,0.9419819943329274,1.0133872976338731,0.7516274290149868,1.085898855755809,0.7831415307644595,1.2519429760767207,0.7782683742879201,0.7805110314403202,0.8065785875138426,1.155169732784238,1.0389145571679572,1.0573849121285424,0.8678815568675055,0.981331168831169,1.0178351912093062,1.0190066354497622,1.0391794431102113,1.0623228020943,1.0572746500013597,1.0616017816774015,1.0674190730375668,1.0464418825681097,1.0750580247716968,1.145779383485112,0.7644673225106776,0.9927685950413225,1.19881607445999,1.134188262545813,1.0805103210903546,1.0612153347833775,1.1443994416360799,1.1207617951933482,1.1469135363201182,1.0273430457472634,1.7641374373657837,2.032048008171603,1.5961652240842539,1.200929752066116,1.8019668676461988,1.507826691708263,1.7912104690535564,0.9605937330763596,2.043184138951057,2.0052357102908713,2.0021074152921434,0.9434717677320822,0.5079523085182533,0.5348762165690774,0.7503663111425014,0.7265625000000001,0.5824663956857697,0.7384727928958017,0.5028776197366917,0.7116472504768812,0.5252589763236623,0.6153680767769892,0.5322262421988446,0.638403798032851,8.5,0.0,2.88888888888889,2.0625,1.8711111111111116,1.4305555555555556,0.5102040816326532,0.7638888888888888,0.12345679012345677,0.0,5071.710413681077,5370.106848492803,2114.5530341990575,2019.1590441676735,9.507376581875134,0.4478906054850773,5.249111928044435,0.8112352550685886,1.0,0.36363636363636365,1.9924692933505819,3.8245334068819115,4.300497519854926,4.4538809876666505,4.4538809876666505,4.4538809876666505,0.38636363636363624,0.0,0.08754208754208759,0.06653225806451611,0.053460317460317465,0.04207516339869281,0.01759324419422942,0.03819444444444444,0.005611672278338944,0.0,0.6973728237462632,20.045454545454547,7.7134986225895315,6.57439446366782,120.26809437216258,1.0,3.980935695678596,96.50832080479633,,76.08812744176267,74.13434697570102,73.58385149839351,75.67130831993548,126.6640509524509,75.23811212645346,76.40988405497923,101.02764347193987,-0.02648532569792408,-0.06915651210634546,-0.6274246332199175,-0.07727272727272733,0.1807791371538957,-0.09205748316708132,-0.02374348072263691,-0.027062047730277566,-0.06463566917509368,-0.09531181360051719,-0.07075779268449292,0.018188222743933464,0.2383243397022923,0.4350591267281015,0.020826808188862664,-0.01634615384615387,0.18914074496012678,0.34184613140344566,0.25166057505833617,0.1417957643895245,0.4305380762024677,0.45823245543554214,0.43529358762802306,0.04057152063661371,-0.27309077487473155,-0.10202932541409462,0.1485892313189631,-0.009232954545454574,-0.17565800064391504,0.0991823771066177,-0.26719403407860787,0.08030059919349379,-0.12120736709478598,-0.14184927890287344,-0.08744326143543642,-0.11536738260646746,0.12401002801175383,-0.03974514058854118,-0.15876729703340378,-0.10677148194271484,0.11106872249027519,-0.25859863741953615,0.12381950886009652,-0.2432601202428612,-0.020089100173123948,-0.03903422015243195,-0.06125579211756974,-0.04840351748473847,-0.003737136163764694,-0.12420693723114976,0.03247211275564838,-0.06350354191263283,-0.017162007342303526,-0.13844425170192184,-0.007064375352696054,-0.12819028553493642,-0.11643553023617165,-0.12712523573869186,-0.14234596472275668,-0.02232603511650179,0.018012985980058276,-0.1023846232542229,0.31708994784263445,0.033867079889807174,-0.13213428554703507,-0.199302018262341,0.010768754830659158,-0.11933616718858056,-0.09377172838158476,-0.08550196694824723,-0.10290618353770897,-0.023341002797196222,-0.5474501637708507,-0.7232396763968215,-0.5994102849625701,-0.18208677685950406,-0.5666569103787394,-0.36329321660565345,-0.5630900443281486,0.007030628445979287,-0.7301344830192746,-0.7565813693642975,-0.7079405457277971,0.023596715540112334,0.651336196611787,1.1411314916653457,0.42263522987026875,0.0656250000000001,0.7378863490019315,0.7195961301514577,0.6756924147413907,0.1495738391799008,1.1339535994631782,1.0838320969749984,1.156473958689642,-0.08852068297000242,5.119181277698049,10.10736357256037,2.102578844744821,22.723945191983976,40.14598401840861,45.795369624488785,45.949980160043,45.949980160043,45.949980160043,42.361546044457675,24.88318283270506,5.647249811828484,1.700590315637828,10.130523084286299,17.47836321175261,3450.693740763135,2410.590604529992,1441.23246935273,15.0,33.0,34.0,44.0,53.0,53.0,51.0,55.0,34.0,325.06498122800025,22.0,4.709530201312334,5.501258210544727,6.415096959171596,7.243512974665482,8.153925132007862,8.998754769495703,9.905635244593586,10.75919991152435,11.663627347383722,0.8817204301075272,1.124,1.2010988563015996,0.8734316639854325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6468058141780957,1.0985452245414293,1.0985597819702562,0.6872981556502495,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,6.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,10.633577208012664,6.544756405912575,0.0,5.907179729351506,0.0,4.794537184071822,0.0,31.60438184078741,0.0,0.0,18.19910120538483,5.687386274683562,23.74088070209884,329.38681150941346,-756.4570457876902,-60.19421525949366,-24.40184018669969,-58.189003522130015,142.03555824405632,326.193384288046,13.414016252917097,10.522367235098256,18.12185468266922,0.4444444444444444,0.8738987476833504,0.16029855436733528,48.310553760267624,0.18168945722157043,1.5602490437384005,0.12610125231664954,5.0,0.18181818181818182,0.40217810690569694,0.7719785747818403,0.8680514962313027,0.8990118091058942,0.8990118091058942,0.8990118091058942,2.4310800000000006,,2.6785714285714293,3.184180957677422,2.971102103350493,2.8834999520500837,-14.626067726065932,2.8980524562838674,2.550283779555193,-4.636926354592557,63.621399999999994,31.137027470120742,5.261891554738487,0.0,5.733667477162185,12.35259703488695,17.98942254267563,29.32600418877882,0.0,6.069221312792274,3.8066624897703196,0.0,5.176149732573829,0.0,6.70073110954781,0.0,8.302265794873367,0.0,9.951086531335408,27.333333333333343,2.01213388133031,0.0,0.0,0.0,0.0,0.0,-2.630667989417989,0.0,34.844,0.0,10.812466576908543,0.0,0.0,0.0,0.0,0.0,-1.1368811151003617,37.23406454534959,10.633577208012664,32.02987656073248,0.0,25.17299105862013,10.970835701515297,11.33111286753076,11.126902983393991,18.19910120538483,0.0,0.0,0.0,27.076381583548407,20.050980239520968,24.642026640339893,193.01664160959268,,151.93274839001884,147.97922295524955,146.8976028055733,151.0804802805937,257.73882681010554,150.21276493869925,152.5879241299989,203.31990322240495,24.642026640339893,193.01664160959274,,149.49768345495397,145.08451299372462,144.19660089343665,148.4591166878209,267.95416963096767,147.57817179662305,150.26948433040332,206.69221329847224,4.844107416117918,135.82334690887922,,106.69429658861819,104.02920482593679,102.95394310580946,106.23981847479001,170.9841674554149,105.5378614134249,107.0798249836287,139.98004346320513,1.1200921200154497,8.773483709526941,,6.906034017728129,6.726328316147707,6.677163763889696,6.867294558208804,11.71540121864116,6.8278529517590565,6.935814733181768,9.241813782836589,2.422053708058959,96.50832080479633,,76.08812744176267,74.13434697570102,73.58385149839351,75.67130831993548,126.6640509524509,75.23811212645346,76.40988405497923,101.02764347193987,34.054901960784306,0.0,0.0,0.0,75.74731646825397,4.806945979780801,0.0,34.05535324107794,-2.567614323507181,0.0,0.0,0.0,0.0,0.3598488284202568,-9.667217065066769,8.625416089275218,1.3049193357898714,21.306242825157735,411.97541855747465,61.76654809386804,118.56053561333925,133.3154231155027,138.07031061766617,138.07031061766617,138.07031061766617,416.0,117.35054075069935,59.446951195995155,55.936895658100724,70.12,70.12,0.8,7.461424851740017,5.459431618637297,4.004455156669714,4.617051886597842,,4.616366249652734,4.617301748101651,4.615787586637663,4.617152842380712,4.564917756726362,4.616794608632004,4.615927153874879,4.5991266706386975,0.18202068893953244,0.20986599484535648,,0.20983482952966973,0.2098773521864387,0.20980852666534833,0.20987058374457782,0.2074962616693801,0.20985430039236383,0.20981487063067633,0.20905121230175897,2.1758648908486116,2.3182137419888167,,2.3180652299348297,2.318267857634319,2.31793987175166,2.3182356076038504,2.3068578581977306,2.318158017006592,2.3179701082225974,2.314323791625749,189.64999999999995,140.0241363182746,114.59130099911334,,114.35522716411818,114.18641343905257,114.43271596874598,114.2202301923476,120.29142314618215,114.27938558900851,114.42892609594027,116.72472037217926,6.3647334690124815,5.208695499959697,,5.197964871096281,5.1902915199569355,5.201487089488453,5.1918286451067095,5.467791961190098,5.194517526773114,5.20131482254274,5.30566910782633,5.7302721703874,5.5298292542516885,,5.527766991761349,5.526289678871476,5.52844437717362,5.526585788940819,5.578374685260298,5.527103561347396,5.528411257837659,5.548275705606316,75.74731646825397,11.1723154053288,8.625416089275218,2.176277990362812,-1.1368811151003617,3.3170532171201814,-9.667217065066769,-2.567614323507181,0.0,255.2189314673338,155.28031124730717,-356.61077314194193,-28.376899603080975,-11.50357332715942,-27.431597933995533,66.95873945667,153.7748582189749,6.323667329861737,4.960479297386286,8.543047678831938,1026.0,31.0,3.9527849962258808,0.7266705622970148,0.6422285251880866,0.03258881988693128,0.49581228902548613,0.08903061166491694,0.11785113019775792,0.0038967480399284353,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.12141692337037671,0.034814548289032785,17.12939203306742,10.79407695865074,9.936688835131458,5.651502479287192,10.868391689809712,4.277001943816919,5.986098789522448,2.510993843925927,5.077774720184381,1.703963942123003,4.048743642792368,1.0580132318686022,2.740599349202471,0.5577987972841867,1.5230663688345027,0.2733246650490085,3.899449905238536,0.9944340708611462,6.167610667625777,1.2561474059949937,9.309375778898511,1.4904267891535132,75.71196910965868,46.90889368743488,36.25687627505015,35.758149973249154,35.758149973249154,35.758149973249154,110.0,122.0,33.48513699999998,18.284862999999994,0.1935483870967742,22.1,11.180555555555555,4.680555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,31.0,0.0,0.0,31.0,6.0,1.0,4.0,26.0,8.0,22.0,23.0,1.0,0.0,0.0,12.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,3.0,1.0,0.0,22.0,10.0,0.0,3.0,1.0,0.0,1.0,4.0,0.0,0.0,6.0,0.0,1.0,3.367295829986474,4.523146350509501,3.8815637979434374,4.2520603082138555,4.769624740953621,5.27524063521806,5.454786784594254,5.694258094739718,5.702740265077757,5.836910139960482 +5601,O=C(CC(=O)C(F)(F)F)c1cccs1,0,48.421052631578945,8.162294736842107,3.8421052631578947,16.549707602339183,175.14933511401816,199.0416243394374,1.8506010275918423,8.108673684210528,16.819259439751644,9.334933105263161,268.6444602047942,38.526315789473685,6.93157894736842,4.473684210526316,11.298245614035087,146.40691546055265,153.1277393424,2.118172186842105,7.090342105263159,4.521280051981806,8.296388631578948,314.24822990016446,38.96774193548387,7.675419354838709,3.4838709677419355,12.473118279569892,163.03305158205742,156.23892109531965,1.7912963998338387,7.719893548387097,10.200766626841894,8.924922903225808,265.68625793723294,31.696969696969695,7.474424242424242,2.9393939393939394,9.131313131313133,164.31904911504725,122.19351033018181,1.3993826649605454,7.502948484848485,9.318181818181817,8.916315393939394,211.87242669208274,27.964285714285715,7.642714285714285,2.75,8.80952380952381,173.2224679772021,104.59058435925712,1.3368806445303212,7.6537,7.715828924162259,9.0727185,208.92404704199268,35.56521739130435,7.805217391304347,2.739130434782609,11.768115942028986,169.73389530606948,140.8012391693913,1.3373532152912173,7.797404347826086,11.529589371980675,9.155779130434782,211.88693424584702,44.0,7.4623333333333335,2.611111111111111,7.611111111111111,170.80871711921367,180.06692301564442,1.1970445852997775,7.531066666666665,6.229938271604938,8.96015111111111,211.09300145977872,29.153846153846153,8.843076923076922,1.9230769230769231,9.692307692307692,197.2690950737923,114.08140432984615,0.7686135150000001,8.732153846153846,10.5,10.014276923076922,173.77014678928523,9.0,9.02,1.0,0.0,236.92295270039997,19.150390425599998,0.37140370100000003,8.756,8.0,10.368,74.1834929458842,13.673130193905816,0.45728753462603866,0.03138198915782667,0.8254847645429364,6.354570637119115,4.861773602202019,62.29788500614341,0.4018764841812465,0.3861252077562326,7.6930893266304174,0.27388255401662037,41.619737135631176,0.05540166204986167,0.000870914127423968,-0.01030844528203556,-0.09695290858725766,1.1031086488150201,0.08477545870706597,0.33476778318448575,0.030191338088642803,-0.0003614958448751929,-0.3914525932005666,-0.002933542936288136,1.1167975063518494,0.1265302475203294,0.1977535519613975,-0.0048998440372685585,-0.1667411312661961,1.7937032734637957,1.8278315725390575,1.8910890675396732,0.020019575220767114,0.16271367170047368,2.5889683040053124,0.10311091117862567,-4.188894971667246,-1.6125241332997562,0.06736063124317974,0.003277678732562835,-0.04398556199110215,0.10405066360745051,-0.2945355775606942,-6.708351905057305,-0.06442388312113169,0.05581275077646275,1.0653834233952901,0.03810192923696801,-8.722153508643535,-6.129897111199051,-0.15902813612979813,-0.007075888123509651,-0.00217649386624454,-1.2935848392912106,-0.08744379965281031,-29.090958270057506,-0.011358987948030391,-0.14516505738029278,-2.0329767896294775,-0.09778976642263551,-3.9020048644720275,2.9081055040346864,0.11304106949295434,0.0022650044535502626,0.016620498614958477,1.7873057930868361,-0.4258146923480811,13.46689083529156,-0.01284853550913672,0.10041964350234854,1.9000547486678674,0.07526243225340237,-3.003245137952453,9.975992613111728,-0.07174367497691597,0.007492355623379142,-0.06525084641428129,-0.46470708936082883,-3.101148928417564,47.597576119245254,-0.1954333691578722,-0.021332225300092364,-2.1029612071203925,-0.021183065712526972,10.280484487067634,-5.0213083315576394,-0.3842316641806948,0.001523876152681888,-0.13722565523119534,-4.91957288633189,-3.160318034792873,-24.542495441166718,-0.06442459041416164,-0.3258644790112938,-5.35480529548576,-0.24062418559556775,-8.150945207700877,-15.1994459833795,-0.7624664819944598,-0.011196615973166813,0.5429362880886428,-12.155740227762388,2.4010486420911263,-78.05570512117497,0.3471345978713847,-0.6953462603878119,-10.062426378106844,-0.41391029085872555,16.72074930145951,,,0.4540816326530612,1.0892857142857142,0.5,0.0,0.5892857142857143,-0.08928571428571429,0.6578927018204224,0.03603652815787463,0.04217938530073177,0.8095888629767322,0.2316195479283667,0.2262163212261226,1.4674815647971544,0.4578358691544893,1.9173318330857136,1.167077078645564,0.0,0.2494298192458582,0.358375342389545,0.7502547544401492,11.684012371578948,920.0,155.08360000000002,73.0,314.44444444444446,3327.837367166345,3781.7908624493107,35.161419524245005,154.06480000000002,319.56592935528124,177.36372900000006,5104.2447438910895,732.0,131.7,85.0,214.66666666666666,2781.7313937505005,2909.4270475055996,40.24527154999999,134.71650000000002,85.90432098765432,157.631384,5970.716368103125,1208.0,237.938,108.0,386.66666666666663,5054.02459904378,4843.406553954909,55.530188394849,239.31670000000003,316.22376543209873,276.67261,8236.27399605422,1046.0,246.656,97.0,301.33333333333337,5422.528620796559,4032.3858408959995,46.179627943698,247.5973,307.49999999999994,294.238408,6991.79008083873,783.0,213.99599999999998,77.0,246.66666666666669,4850.229103361658,2928.5363620591993,37.43265804684899,214.3036,216.04320987654324,254.03611800000002,5849.873317175795,818.0,179.51999999999998,63.0,270.6666666666667,3903.8795920395983,3238.4285008959996,30.759123951697998,179.34029999999998,265.18055555555554,210.58291999999997,4873.399487654481,792.0,134.322,47.0,137.0,3074.556908145846,3241.2046142815993,21.546802535395997,135.55919999999998,112.13888888888889,161.28271999999998,3799.674026276017,379.0,114.95999999999998,25.0,126.0,2564.4982359593,1483.058256288,9.991975695,113.51799999999999,136.5,130.1856,2259.011908260708,54.0,54.12,6.0,0.0,1421.5377162024,114.9023425536,2.2284222060000003,52.536,48.0,62.208,445.10095767530515,259.7894736842105,8.688463157894734,0.5962577939987067,15.684210526315791,120.73684210526318,92.37369844183837,1183.6598151167248,7.635653199443683,7.336378947368419,146.16869720597794,5.203768526315788,790.7750055769924,1.0526315789473717,0.016547368421055392,-0.19586046035867563,-1.8421052631578956,20.959064327485383,1.6107337154342536,6.360587880505229,0.5736354236842133,-0.006868421052628665,-7.437599270810765,-0.05573731578947458,21.21915262068514,3.9224376731302115,6.1303601108033225,-0.1518951651553253,-5.168975069252079,55.60480147737766,56.662778748710785,58.62376109372987,0.6206068318437805,5.044123822714684,80.25801742416469,3.196438246537396,-129.8557441216846,-53.213296398891956,2.2229008310249316,0.10816339817457356,-1.451523545706371,3.4336718990458666,-9.719674059502909,-221.37561286689106,-2.125988142997346,1.8418207756232707,35.15765297204457,1.2573636648199442,-287.83106578523666,-171.63711911357342,-4.452787811634348,-0.19812486745827024,-0.06094182825484712,-36.2203755001539,-2.4484263902786885,-814.5468315616101,-0.31805166254485095,-4.064621606648198,-56.923350109625375,-2.7381134598337944,-109.25613620521678,66.88642659279779,2.5999445983379497,0.05209510243165604,0.38227146814404495,41.10803324099723,-9.793737924005866,309.7384892117059,-0.29551631671014456,2.3096518005540165,43.70125921936095,1.7310359418282546,-69.07463817290642,179.5678670360111,-1.2913861495844876,0.13486240122082455,-1.1745152354570632,-8.364727608494919,-55.820680711516154,856.7563701464146,-3.5178006448417,-0.3839800554016626,-37.85330172816706,-0.3812951828254855,185.04872076721742,-65.27700831024931,-4.995011634349033,0.019810389984864542,-1.7839335180055393,-63.95444752231457,-41.08413445230735,-319.05244073516735,-0.8375196753841013,-4.236238227146819,-69.61246884131488,-3.128114412742381,-105.9622877001114,-91.196675900277,-4.574798891966759,-0.06717969583900088,3.257617728531857,-72.93444136657433,14.406291852546758,-468.33423072704977,2.082807587228308,-4.172077562326871,-60.37455826864107,-2.4834617451523533,100.32449580875705,0.769113193821544,0.5438780328644588,0.4578358691544893,0.31836591423629096,0.32622979122126466,0.17229420239757728,0.209919239159162,0.1116281649879573,0.13150533533798756,0.07174391015886467,0.08619283486871228,0.03405604773851972,0.054596382597256646,0.022398205800608844,0.034708591189442924,0.011835655665012115,16.004502300144296,5.748613327356878,4.124507393398508,2.2172531968294953,0.5477541856952441,-0.38011901541002924,4.022053718228668,0.9773259378949015,7.014080726938489,0.6503303885564824,17.430692225118538,10.311405181979502,32.062245498890924,11.760167175203689,2.9363691811038946,0.5269415051312303,4.007127547513942,2.2889531026894656,8.007385781427143,0.6100844327639587,4.030584028851503,2.4914143090008007,24.440715385798534,13.302793147923847,0.44615626673859865,0.7586109351840565,0.8372039550883531,0.8604739266101958,0.8604739266101958,0.8604739266101958,2.352899280647545,339.96840694059443,0.0,1.0,1.0,0.0,5.0,1.0,0.0,0.0,0.0,2.2297119987684355,0.8163039475961544,0.4607835527454469,0.35552039485070885,0.35552039485070885,0.35552039485070885,-187.79769963846053,489.17359699977345,53.09778425865004,25.745978789461763,53.00411499807479,,7.0,158.0,24.16361003309936,22.760319511168106,4.877147193701299,0.0,11.336785877934737,12.13273413692322,5.380062770465915,0.0,0.0,0.0,6.357142857142857,15.25,7.0,0.0,8.25,0.0,0.045918367346938806,-1.25,0.4320802005012528,0.09833278849297145,-0.33374741200828134,0.0,0.28856978967495217,0.0,0.8654135338345865,1.0673469387755101,0.43333333333333374,0.7670807453416151,1.0673469387755101,9.210497825485913,0.5045113942102448,0.5905113942102448,11.33424408167425,3.2426736709971338,3.1670284971657163,20.544741907160162,6.40970216816285,0.4254302103250478,0.2397003745318352,0.07865168539325842,0.2359550561797753,0.25,0.7518966254201587,-0.9866956660720324,-0.12364560044935605,-0.05193135084589645,-0.10963285178578137,0.24810337457984133,0.3255800281042361,0.01879653486743211,0.017135790952854533,0.03255800281042361,-2.4085567541408404,0.6564019448946515,0.5526675421975178,1.4588408950190135,1.3590604026845634,0.3748910200523103,0.7897128111416242,0.6353092655806253,0.8239028196587697,0.538045443327843,0.6490459978139936,0.5984213950533542,0.8283706487591793,0.8862014429863544,0.4196354442110147,0.9691037296127863,1.1291405066031608,0.5204601063081812,0.6231970438299808,0.8510554373358745,0.9624780878455006,0.4176020784576767,0.5041061420204187,0.47397860901552685,0.9995602546246342,1.130635774274348,0.6457591456040699,0.9007571113950519,1.008541793776693,0.9105703944413619,0.754755976453052,1.1055216529191405,1.1135510011831358,0.6568016032315073,0.7499763040385578,0.6850815519855191,1.189209181364221,1.424092671914795,1.3169730043885002,1.111831560520267,0.8812320230105465,1.2033254452609288,0.9500840918244358,1.4426328855049229,0.9825173759027047,1.3473934970684767,1.2469544516437234,1.3260187306216749,1.0527286774200333,0.7094373194278064,0.6709286814593874,0.889557031688412,0.8482637875693024,0.6921269095182137,0.9006420637516407,0.7095107899677126,0.9042965232145642,0.6653750458203713,0.7141649026356083,0.6657274860730817,1.0149828685522848,0.5889384116693679,1.145588099888055,0.8223780252295306,1.0520134228187918,1.1277971519907002,1.575650450492575,0.5398610829790617,1.6193543067931466,1.0566520698580686,1.225384000443054,1.0404973765874659,0.8584159636573091,1.049962598179778,2.370517486448594,0.942273783196318,1.0593701600413008,1.9897055864797797,2.1185112571902245,1.143746590037055,0.8629929304413897,2.36810601000306,2.060909007014565,2.3528876043621794,0.9751754584785529,2.2171799027552677,3.739441534085126,0.8118939402535053,0.0,3.652571926765474,1.4249874194863004,2.4609194537873886,0.014208414500661739,3.8868766464454008,3.0170618499701876,3.4287028544353926,0.6801515907794095,4.5,0.0,2.222222222222223,0.6527777777777778,0.73,0.3644444444444444,0.24489795918367346,0.1224489795918367,0.0,0.0,2904.1296633353127,3041.1051327737805,1397.6306907244634,1347.4355821600568,9.253296025137653,0.44714295137568816,5.115749930504679,0.8087858380178479,0.0,0.25,2.0182155146751497,3.431623565847431,3.7871439606981383,3.8924071185928764,3.8924071185928764,3.8924071185928764,0.3214285714285714,0.0,0.11111111111111117,0.04079861111111111,0.05615384615384615,0.030370370370370367,0.024489795918367346,0.020408163265306117,0.0,0.0,0.6047604693586837,12.071428571428571,4.68,3.5918367346938775,81.35118525636112,1.0,3.535851346650265,46.38032851998573,,36.41869487323698,38.34457070397221,38.94709736401645,36.20812474391997,54.57539598159913,38.45412439688147,38.55207467921493,44.67416003589509,0.004051863857374405,0.0019045219068483587,-0.32848285142768374,-0.11744966442953024,0.17359294778649617,0.017437146532012317,0.005373662093849143,0.0751259137497244,-0.0009362140508148625,-0.050883666701426855,-0.010710952170068181,0.026833362803623882,0.009253934229100267,0.432449032583223,-0.15613554681400868,-0.20199177311106306,0.28226978279007414,0.375959829086074,0.03035559019946161,0.04981524425733325,0.42140131861890145,0.33653168370778347,0.3764785659636008,-0.10064683873462238,-0.11793379500024555,0.1473047615397302,0.10444458176563298,-0.05328452308318079,0.0163741454064035,-0.06058191961618526,-0.10768185636471882,-0.16030767078194225,0.14454573194221054,0.1384857731610312,0.13911776664188627,-0.20956772216555855,-0.4483170294049549,-0.34776398674380754,-0.22547608718884934,-0.0026366251198465733,-0.20356762292246164,-0.017985987585519163,-0.4669654237409303,-0.028264873400523437,-0.37595332929399927,-0.26426013052937264,-0.3570500018657676,-0.09375371237343717,0.21268761891339583,0.2471991054499162,0.07217529909143348,0.020134228187919496,0.2812630302111368,-0.08758422896434728,0.21616931030585618,-0.03197135442078274,0.26007015725775967,0.24698202087562313,0.27479819780282577,-0.07215915680018405,0.7296056185845491,-0.15688963626700786,0.2387469954724189,-0.07904548844146156,-0.07312958119409728,-0.6378637061612609,0.7640319749948412,-0.48630207750531546,-0.055246911808875636,-0.2733571804295547,-0.07734361098166731,0.2470098370291335,-0.36723912230395217,-0.8402408442970404,0.04855894076752089,-0.16623644811564264,-0.7741786451463871,-0.6500339780037239,-0.3939539109352829,-0.16030943075809861,-0.8439347456875118,-0.6960539606565534,-0.8785670429412076,-0.19584326496677343,-1.1116288492706643,-1.6673677374958205,-0.35678477603368797,0.6577181208053692,-1.9129129129129125,0.4938627008472034,-1.2529430993279729,0.8637843007376037,-1.800831042418748,-1.3079825218296535,-1.5112692823567275,0.4017504783119994,2.8039657955522017,5.403199938809624,1.6509636244473134,27.44928421395558,41.61431531901093,44.70889040333623,44.81499566649411,44.81499566649411,44.81499566649411,26.842645663199992,16.339079101037896,0.0,3.4920174694420147,5.01725479345363,10.503566562162089,1956.6374344261678,1805.6882735885933,329.7878212619255,0.0,20.0,21.0,20.0,18.0,16.0,12.0,10.0,6.0,221.99623506,14.0,4.23410650459726,5.017279836814924,5.872117789475416,6.683360945766275,7.5310163320779155,8.351610750626559,9.19573421958682,10.020158859339821,10.8623587319454,0.9824561403508772,1.110315789473684,1.1588880963721169,0.9735865351497968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7207363693665301,1.0897832817337463,1.0961973396711004,0.7321519170407191,3.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,5.783244946364939,5.783244946364939,0.0,9.589074368143644,0.0,13.171245143024459,11.336785877934737,6.06636706846161,11.446429838927525,0.0,11.297968816627309,280.2825492090272,-367.8079768287703,-46.091048850047436,-19.35831456993528,-40.86755298097447,92.48484957056667,121.36562017100316,7.006735408602605,6.387664219526482,12.136562017100315,0.42857142857142855,0.8152542233201157,0.223109973637433,147.4909555467904,0.34288709774182,1.240120160925771,0.1847457766798846,4.0,0.21428571428571427,0.47510592124936757,0.807834774719492,0.8915274445509753,0.9163073301685165,0.9163073301685165,0.9163073301685165,2.4523,,2.125,1.717570114811218,1.3204774570364344,2.2272567793827394,-7.735064601234485,1.6069592146780418,1.5088457045974972,-2.2803890768467054,44.32850000000001,22.760319511168106,0.0,0.0,0.0,12.597120140369483,0.0,22.389944101090435,0.0,0.0,3.367295829986474,0.0,4.6913478822291435,2.3978952727983707,6.171700597410915,4.442651256490317,7.716460800176355,6.293419278846481,9.293669979563187,18.666666666666668,4.484044784580499,0.0,0.0,0.0,1.0145323129251698,0.0,0.16907407407407438,0.0,21.095999999999997,0.0,21.481442743764173,0.0,0.0,0.0,0.0,0.0,-2.7933101851851854,22.01887383107022,0.0,13.171245143024459,0.0,17.742788410173354,4.794537184071822,0.0,16.09250600069913,17.512796907389134,0.0,0.0,0.0,18.49814416784614,13.693991017964072,16.10872327377509,92.76065703997148,,72.75339965297258,76.44377424868567,77.70555509131341,72.30391093541596,112.54276699970018,76.67868319166607,76.88859997205878,89.67408993991114,16.10872327377509,92.76065703997142,,71.23554251011542,74.97157129313321,76.5737172709965,70.71301323585686,116.94088764264362,75.3012895790849,75.59530365383235,91.62870914863689,4.571590328060077,70.28994368603578,,57.94456137386065,60.70752500904203,61.44445875104019,57.692760199645654,80.53285971446846,60.80203923554202,60.86927770877986,68.05534945518069,1.150623090983935,6.62576121714082,,5.196671403783755,5.460269589191833,5.550396792236673,5.164565066815426,8.038769071407156,5.477048799404719,5.492042855147056,6.405292138565081,2.302775637731993,46.38032851998573,,36.41869487323698,38.34457070397221,38.94709736401645,36.20812474391997,54.57539598159913,38.45412439688147,38.55207467921493,44.67416003589509,20.705882352941178,0.0,0.0,0.0,35.258370181405894,0.0,0.0,20.827749453750908,-1.1071296296296302,0.0,0.0,0.0,0.0,0.0,-4.923690948601663,0.0,0.0,13.910886423773663,303.9001961711176,38.34609477882785,65.20084775110118,71.95573525326463,73.95573525326465,73.95573525326465,73.95573525326465,151.0,95.7677439702304,68.86720260847633,58.374440897501245,62.379999999999995,34.14,0.75,6.011420348946852,4.807354922057604,3.519660686585362,3.696075329832647,,3.704375975325564,3.704456172432709,3.704011602811276,3.7052532512138265,3.649678180212095,3.7041673802666923,3.7034821993347347,3.6855217725805893,0.2514043347560973,0.2640053807023319,,0.264598283951826,0.26460401231662206,0.2645722573436626,0.26466094651527333,0.2606912985865782,0.26458338430476375,0.2645344428096239,0.2632515551843278,1.5948368257284085,1.643743771641179,,1.6459870534713248,1.6460087025262766,1.6458886859086834,1.6462238469371084,1.631111230523522,1.6459307414410336,1.6457457486368927,1.6408843458837437,128.89000000000001,52.33426702327513,56.98448706441755,,55.75689940227888,55.68742750385962,55.797915243570415,55.69038379531516,59.58969296161784,55.74488538140882,55.822017096267054,57.4412030045007,3.738161930233938,4.070320504601254,,3.982635671591349,3.9776733931328296,3.985565374540744,3.9778845568082253,4.25640664011556,3.981777527243487,3.9872869354476466,4.10294307175005,4.294123594351338,4.379251310649786,,4.3574733953989755,4.356226640012734,4.358208744084194,4.356279725836952,4.423954858851603,4.357257900715373,4.358640599803257,4.387234104813536,35.258370181405894,21.65051681783825,1.5608116024187453,0.0,-2.7933101851851854,2.9232331821617534,-6.0308205782312925,0.0,0.0,167.41420123860996,104.48019679196257,-137.10682277284582,-17.181240386855375,-7.216148566991887,-15.234091419205091,34.47533680094217,45.241146532417055,2.6118825322016677,2.3811129753903715,4.524114653241705,316.0,16.0,1.9725184760785526,0.4552545820947024,0.28867513459481287,0.013498731178900972,0.7302235658935525,0.08196051501456998,0.2041241452319315,0.0038967480399284353,0.0,0.0,0.0,0.0,0.14433756729740643,0.11785113019775792,0.08333333333333333,0.05892556509887896,0.1422588984322123,0.06572292788290107,10.767584713501616,7.614292460102423,6.40970216816285,4.457122799308073,6.524595824425293,3.445884047951546,4.408304022342402,2.3441914647471034,2.6301067067597512,1.4348782031772933,1.551471027636821,0.6130088592933549,0.8735421215561063,0.3583712928097415,0.4165030942733151,0.14202786798014538,3.1982575594550138,0.8048507647882217,2.738485377118509,0.7664620281040666,3.4063465902199077,0.7026421034624543,48.15551775273954,34.496564876352636,30.82977445931557,30.593150510532034,30.593150510532034,30.593150510532034,68.0,75.0,22.86896499999999,12.551034999999999,0.2631578947368421,14.06,6.645833333333333,3.0277777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,19.0,0.0,0.0,19.0,5.0,2.0,4.0,15.0,7.0,14.0,12.0,0.0,0.0,0.0,8.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,3.0,0.0,1.0,14.0,6.0,0.0,0.0,2.0,0.0,1.0,3.0,1.0,0.0,3.0,1.0,1.0,2.970414465569701,0.0,3.4735180432417816,3.8367605209275992,4.120052918932307,3.9866665484239117,4.104707349257647,3.803880846808443,3.944006051281197,3.446011397451948 +441313,CCC[C@H](N[C@@H](C)C(=O)N1[C@H](C(=O)O)C[C@@H]2CCCC[C@@H]21)C(=O)OCC,0,19.551724137931036,6.098789655172414,2.7586206896551726,5.827586206896552,166.83093422618052,76.65111120689657,1.2560816026753103,6.139287931034483,4.909003831417626,7.679698344827584,182.93246872917558,21.508474576271187,6.276762711864407,3.542372881355932,5.084745762711864,148.1959853825331,79.59082954237293,1.6358984675593227,6.406576271186442,2.7914312617702444,7.728545016949149,234.04707869061238,16.92920353982301,6.1218230088495575,3.1150442477876106,3.8230088495575223,157.441898518526,60.98989275221239,1.3301454954374605,6.208586725663715,2.7885939036381515,7.648584460176992,181.73351634130836,13.851851851851851,6.034900617283952,2.6728395061728394,2.814814814814815,164.8369970437155,48.64375551234568,1.1342254361565183,6.090624074074075,2.603566529492456,7.62325390123457,150.8629173266429,14.106508875739644,6.141739644970415,2.562130177514793,2.6923076923076925,163.8958005988397,49.11853194674556,1.1280345107521361,6.197328402366864,2.8763971071663383,7.739103124260355,153.62989535031375,14.196531791907514,6.21708092485549,2.3583815028901736,2.560693641618497,164.06673032716313,49.132751109826586,1.0981586807431443,6.265882658959537,3.4661207450224785,7.810395976878612,149.38072714255878,12.370165745856353,6.2097513812154705,2.0994475138121547,2.110497237569061,167.18610170262247,41.2957237955801,1.0191674770304253,6.2402574585635335,3.39195825659914,7.8319017679558005,134.18003410261971,10.0,5.850591954022987,1.9942528735632183,1.4022988505747127,166.41977708557067,32.267066385057475,0.9971946881419255,5.899413793103446,2.4755747126436787,7.5101631954023,124.00953696891139,10.17283950617284,5.773166666666666,1.9506172839506173,1.7222222222222223,167.9505126169367,34.03485522839507,0.9464507214887964,5.819163580246912,2.3816872427983533,7.445615629629631,118.88811253901824,7.661117717003567,0.14350677764565994,0.022651296699895126,0.5600475624256837,3.7300832342449457,1.2852983540894365,36.29050220689655,0.2115491099745446,0.13425318073721756,2.1312260536398466,0.09100328656361474,47.82465283766773,0.20212015558556237,-0.003595205465648152,-0.014175956957124458,0.2371470606017855,1.3155041415586768,-0.2179597568517893,0.9571642711864368,-0.012538776335288054,-0.0017125027711158362,-0.056967984934086606,-0.004073701525625282,-0.6874368039346658,0.40967874317342423,0.02482587417002519,-0.00016241575804200006,0.05179253522460615,0.704155398650995,-0.24045169236987368,1.7829686991150435,-0.02081672867389249,0.02218977013248033,0.33284169124877094,0.016628679258783783,-3.017528780681758,0.518958911348923,0.013814657007383931,0.004463743809140882,-0.007046285286475555,0.1115515039415159,0.14167234647426966,2.4264256172839502,0.00907193704728852,0.012339826925617664,0.05041152263374484,0.007619907135831823,2.3150328294764364,-0.28323565211884955,-0.02080573704170149,-0.003868320867991763,-0.099937380830091,-0.4376939259405187,-0.030617019324189768,-1.2577507159763326,-0.002885149486367691,-0.017452823667231842,-0.2892833662064432,-0.014512098642782271,0.14627866125972525,-0.5423216237207286,-0.009470819901988328,-0.0010937776458506171,-0.10559270892757729,-0.5488992597582015,-0.1660425460804411,-2.59829571098266,-0.023895330197813473,-0.00844034438082927,0.030025690430314833,-0.00567840635631957,-4.50392933056605,-1.153592474100157,-0.009589917291306638,0.003909997150145807,-0.019182635772987955,-0.5689096773769717,0.059906102564812096,-5.453721740331493,-0.0039719070135937435,-0.011761791901248781,-0.11479435236341308,-0.003342350004270129,-4.617237237490267,-0.7808164883075707,-0.018577606024573933,-0.001996002181821666,0.03428458184700754,-0.24573919936583433,-0.02195036265946265,-3.6392133390804595,-0.005305199319807567,-0.017458670233848603,-0.28304597701149425,-0.01121442806183114,-2.52475483816088,0.777792457538791,0.0003330690976350349,-0.002711347497191817,-0.006194859147693061,0.2616153609019244,0.02131552726126984,3.7028881049382725,0.0034208721587404346,0.003024171327490739,-0.06344307270233202,-0.002590257189412943,3.858732904008791,,,0.46025641025641034,0.7980769230769231,0.17307692307692307,0.0,0.625,-0.4519230769230769,1.2640107638343492,0.01976649988490892,0.026381884500293534,0.6263346539172048,0.12823914191215652,0.348694879832669,1.890345417751554,0.4769340217448255,1.9816923497300774,1.4757458051829284,0.1639275048779657,0.342019039669183,0.0,0.5059465445471487,6.348812450413808,1134.0,353.7298,160.0,338.0,9676.19418511847,4445.7644500000015,72.852732955168,356.0787,284.7222222222223,445.4225039999999,10610.083186292184,1269.0,370.329,209.0,300.0,8743.563137569454,4695.858943000003,96.51800958600003,377.98800000000006,164.69444444444443,455.9841559999998,13808.77764274613,1913.0,691.766,352.0,432.0,17790.934532593437,6891.857881,150.30644098443304,701.5702999999999,315.11111111111114,864.2900440000001,20535.887346567844,2244.0,977.6539000000002,433.0,456.0,26703.59352108191,7880.288393,183.74452065735596,986.6811000000001,421.7777777777778,1234.9671320000002,24439.79260691615,2384.0,1037.9540000000002,433.0,455.0,27698.39030120391,8301.031899,190.637832317111,1047.3485,486.11111111111114,1307.908428,25963.452314203023,2456.0,1075.5549999999998,408.0,443.0,28383.54434659922,8499.965941999999,189.98145176856394,1083.9977,599.6388888888888,1351.198504,25842.86579566267,2239.0,1123.9650000000001,380.0,382.0,30260.684408174664,7474.526006999999,184.46931334250698,1129.4865999999995,613.9444444444443,1417.57422,24286.58617257417,1740.0,1018.0029999999998,347.0,244.0,28957.041212889297,5614.469551,173.51187573669503,1026.4979999999996,430.75000000000006,1306.7683960000002,21577.659432590583,1648.0,935.2529999999998,316.0,279.0,27207.983043943743,5513.646547,153.325016881185,942.7044999999998,385.83333333333326,1206.1897320000003,19259.874231320955,444.34482758620686,8.323393103448277,1.3137752085939174,32.48275862068965,216.34482758620686,74.54730453718732,2104.849128,12.269848378523587,7.786684482758618,123.61111111111111,5.278190620689655,2773.829864584728,11.92508917954818,-0.21211712247324097,-0.836381460470343,13.991676575505345,77.61474435196193,-12.85962565425557,56.47269199999977,-0.7397878037819952,-0.10103766349583433,-3.36111111111111,-0.24034839001189162,-40.55877143214528,46.29369797859694,2.8053237812128464,-0.018352980658746007,5.852556480380494,79.56956004756243,-27.171041237795727,201.4754629999999,-2.3522903401498514,2.5074440249702774,37.611111111111114,1.8790407562425675,-340.9807522170386,84.07134363852553,2.2379744351961968,0.7231264970808229,-1.14149821640904,18.071343638525576,22.950920128831683,393.0809499999999,1.4696538016607403,1.9990519619500615,8.166666666666664,1.2344249560047553,375.03531837518267,-47.86682520808557,-3.516169560047552,-0.6537462266906079,-16.88941736028538,-73.97027348394766,-5.1742762657880705,-212.55987100000021,-0.48759026319613974,-2.9495271997621813,-48.8888888888889,-2.452544670630204,24.721093752893566,-93.82164090368605,-1.6384518430439807,-0.18922353273215675,-18.26753864447087,-94.95957193816886,-28.72536047191631,-449.50515800000016,-4.133892124221731,-1.4601795778834636,5.194444444444466,-0.9823642996432855,-779.1797741879267,-208.80023781212842,-1.7357750297265016,0.7077094841763911,-3.4720570749108197,-102.97265160523189,10.84300456423099,-987.1236350000001,-0.7189151694604676,-2.1288843341260293,-20.777777777777768,-0.6049653507728934,-835.7199399857383,-135.8620689655173,-3.2325034482758643,-0.3473043796369699,5.965517241379312,-42.758620689655174,-3.8193631027465007,-633.223121,-0.9231046816465166,-3.0378086206896566,-49.25,-1.9513104827586183,-439.3073418399931,126.00237812128414,0.05395719381687565,-0.43923829454507435,-1.003567181926276,42.381688466111754,3.453115416325714,599.8678730000001,0.5541812897159504,0.4899157550534997,-10.277777777777786,-0.4196216646848968,625.1147304494242,0.7410469320989272,0.6181163826267647,0.4592697987172394,0.3658628659520835,0.2923278946486006,0.200778205464443,0.17908801001884536,0.1142380036783136,0.11131923358782986,0.06867107919750187,0.07384271696330297,0.04142851386258827,0.04717778816699009,0.02403128256921608,0.029656507464201,0.014704676594733913,8.03157562501646,5.785708862192185,3.558142685616033,2.285243366231457,0.45698012145967726,-0.49484362430853257,3.2147306160657494,0.9725282862730639,6.029055530150471,0.98718815575047,14.543799811652898,11.046267282421274,16.01674386273969,11.796985500530585,1.9009813277994234,0.7404304419570914,3.504323499883793,2.33509851525246,7.01045824545467,1.1746330226251163,3.7171929674905995,2.531051169718222,20.80195024536329,14.699771382458954,0.2474135540181762,0.45357762516159444,0.7157389610227048,0.8846216478828159,0.8962043222936462,0.8962043222936462,2.0650317054153398,524.0588693990485,0.0,3.0,4.0,0.0,0.0,11.0,0.0,1.0,0.0,4.384832124652844,3.1572907729163653,1.5963307142060472,0.5907700432153522,0.5218045259739741,0.5218045259739741,270.01364718030925,1721.0323552748177,57.480107080598344,29.672971642669275,57.878434186493394,,12.0,500.0,24.09482777539573,19.49013894705617,23.83623189261271,19.448525210364938,32.10410811463005,0.0,18.747384130231726,6.923737199690624,5.316788604006331,4.736862953800049,11.966666666666669,20.75,4.5,0.0,16.25,0.0,0.03974358974358967,-11.75,0.12235329703569264,0.0,-0.12235329703569264,0.041300366300366265,0.18991240875912374,0.0,0.5591954022988507,0.8782051282051277,0.43684210526315803,0.5591954022988507,0.8369047619047615,32.86427985969308,0.513928997007632,0.6859289970076319,16.284701001847324,3.33421768971607,9.066066875649394,49.1489808615404,12.400284565365464,0.5240875912408762,0.2367688022284122,0.0,0.3676880222841225,0.8421052631578947,0.28243857099523734,-0.7833200156675884,-0.0570101045883561,-0.013505517511510147,-0.043517778648199355,0.7175614290047627,1.9900972725851451,0.03561820784246621,0.03431202194112319,0.04975243181462863,-2.227099706298058,0.9392613715581488,0.7411923859110414,1.6708279614466794,0.9963564719853181,0.4845137046622327,1.6317792435121636,0.95034256097982,1.4386873604333117,0.7364420040546145,0.6151571129308703,0.7460598241120685,1.2657751325061248,0.9087357617995245,0.6147170744930168,0.9780482509556793,1.2811425511526973,0.723954880515458,1.4341674068633192,0.9199047312821467,1.267473776680526,0.6304302007891018,0.413571641642637,0.5699169132701092,1.1757858651560398,0.9118085375457718,0.8219916053736309,0.8552499497197861,1.2619230164346937,0.9928850989976271,0.9741437084907405,0.9148015524258831,0.9658994087055778,0.8287108845200165,0.7371098626716603,0.7981169023406209,0.9556132281995934,1.0619051729917428,1.2544568596236045,1.3109994288146352,1.4744280707044057,1.272130875426528,1.0857721143164984,1.0578996860141432,1.0276553925479495,1.2270542160562363,1.3328927597899078,1.2798855925546004,0.9949100054112261,1.1166924896760297,1.2646014341351521,1.2656402496345387,1.3389050476786568,1.315818470944406,1.179067991365966,1.1139188751463096,1.1140837838482591,1.2420985095989103,1.3071091771124248,1.2863692817084154,1.0793329978602604,1.2119152825928694,1.3630750073935396,1.0395161077630815,0.964642643488053,1.3107910925911903,0.9264725244878387,1.205163844451639,0.9518891040910601,1.358552208804431,1.4440542553851885,1.3690931575410252,1.0323397112949135,1.066040664286823,1.0611316091249252,1.0211288962729337,0.8370488322717622,0.9736212942301563,0.9626029784923499,1.0649957059535147,0.9891646125492036,1.0667029502397658,1.1384540875629603,1.049909762702903,1.0248329535910639,0.8488569277021862,0.8854682109086809,1.0336453181225334,0.8990524494770781,0.8684695214819539,0.8811869815177673,0.8492707134357189,0.9171810497527993,0.8757159853044802,0.882159800249688,0.903098690364125,0.8752723161201214,5.0,0.10662381389654119,3.333333333333335,2.4166666666666665,2.1122222222222224,1.0869444444444443,0.6009070294784581,0.42449688208616776,0.3449467750062987,0.19938271604938274,5136.327728147804,6088.964981885364,2403.29643838069,2080.3688383363315,13.825984887923418,0.4478030576876719,7.634666579567767,0.8109480936502363,1.0,0.8421052631578947,1.4731488704747284,2.7006902222112066,4.261650280921525,5.26721095191222,5.336176469153598,5.336176469153598,0.18518518518518517,0.007108254259769412,0.09009009009009013,0.05894308943089431,0.049121447028423776,0.025879629629629627,0.017168772270813086,0.015722106743932138,0.01277580648171477,0.008307613168724281,0.4703019942891767,22.290809327846365,10.51862673484295,5.517700957934194,154.99858791555567,1.0,4.157539902430094,132.64578924846157,,118.71378118287487,116.0021899314982,115.71522869831675,118.74304006966294,173.37808432043212,117.6523136474758,118.86817494438645,152.28677154806,0.026382593643870553,-0.025052513369962642,-0.6258342356704943,0.4234409298643347,0.3526742056266648,-0.16957911457546512,0.02637506270179253,-0.059271231804269124,-0.012755770565077552,-0.02673014663873547,-0.044764334118610215,-0.014374109651523193,0.0534750617738398,0.1729944367598027,-0.007170263150663336,0.0924788155496683,0.1887773956855234,-0.18707850329445147,0.049130449861237054,-0.09840140039538495,0.16528301236984325,0.15617380928706376,0.18272613975496046,-0.06309567559066706,0.0677393208822667,0.09626484012827896,0.19706350008481183,-0.012581583706849137,0.029905902076765984,0.11022526094700928,0.06686117495565655,0.04288336192187305,0.09191459642040962,0.02365376612567623,0.08373221917106498,0.0484066834177428,-0.03697053910165334,-0.14498086698785767,-0.1707770163996692,-0.1784444528197591,-0.1173415976142736,-0.023820943383904235,-0.034657848183134624,-0.013638201960362096,-0.12999933090146581,-0.13573565587394457,-0.1594678521048552,0.003058645543256574,-0.07078883835932528,-0.06599562792339482,-0.04828763934983383,-0.1885423953462686,-0.14715469475825552,-0.12918599448302662,-0.07159712742936049,-0.11295405686504077,-0.06286885967603331,0.014088458790673566,-0.062397816284911305,-0.09417589179065945,-0.1505775680146255,-0.0668255356899282,0.1726169235231425,-0.03425179763287234,-0.1525192982703326,0.046608713357648615,-0.15027958856119336,-0.018775342586275487,-0.08760903716889135,-0.05386305791793405,-0.03672779446194726,-0.09654512816146636,-0.10191939572662843,-0.12945455489527377,-0.08811867189179096,0.061217268223637676,-0.06588035277866328,-0.01707802907365682,-0.1002800489872767,-0.025077861686328688,-0.1300428797141245,-0.13280898876404496,-0.12323102258501215,-0.052791911458943803,0.1015246712385726,0.002320929388139654,-0.11969943854050395,-0.011061309008938144,0.07013660137663962,0.01658410842389254,0.10203463385068795,0.01617058166376622,0.02252588214956445,-0.029768345124150393,-0.02846333673457228,0.08068501651452806,6.190194305326613,16.000598100879753,9.356660030704251,14.035547609184057,26.89272388071576,34.710307074539564,36.620257058484384,36.68977429986369,36.68977429986369,51.52400109298201,38.36939093475614,4.2621151268271085,8.892495031398758,0.0,13.154610158225868,4932.695878900091,4534.303963903816,1505.834312208196,64.0,37.0,49.0,64.0,78.0,79.0,78.0,83.0,74.0,368.2311221240009,27.0,4.859812404361672,5.707110264748875,6.591673732008658,7.473637108496206,8.368925174747135,9.263786347681808,10.164581780078812,11.065809894256876,11.970318665938752,0.5747126436781609,0.9761379310344829,1.1426386416482444,0.5289318125052036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.611990253974809,0.9609871534820825,1.0031895923851621,0.564813233013048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,1.0,8.0,1.0,1.0,0.0,5.0,1.0,0.0,0.0,0.0,14.743300079491233,12.083681658295921,0.0,5.907179729351506,0.0,14.905862972149976,4.794537184071822,0.0,0.0,26.186202068468653,45.448666937246685,6.041840829147961,12.648722793660879,175.26605935546888,-486.08591906038725,-35.37737901532153,-8.380791707937712,-27.004773281132625,445.27970653577813,1234.9464362144306,22.102728065276814,21.292179934731564,30.87366090536077,0.5,0.7921749067302809,0.1729677823697468,129.6591834149328,0.11752294035200335,2.0101096931815032,0.20782509326971915,6.0,0.2962962962962963,0.2514772362184229,0.46102748104808294,0.7274947263342422,0.8991512530158888,0.9109241688547659,0.9109241688547659,1.940599999999999,,1.5357142857142856,1.799906933457422,1.3161701003068016,1.5313282524578438,-6.447834958059396,1.6159730722154224,1.5229999873188609,-2.633621646776986,96.55950000000006,24.22700190085622,0.0,10.216698334856808,5.917906046161393,89.88432627614579,6.606881964512918,0.0,0.0,0.0,4.007333185232471,0.0,5.313205979041787,2.3978952727983707,6.816735880594968,4.844187086458591,8.416930769477844,7.065613363597717,10.072174918054278,33.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.61600000000001,0.0,36.90472177301948,0.0,0.0,0.0,0.0,0.0,-1.519998275417196,66.27304121559817,5.316788604006331,0.0,0.0,58.62647271205114,19.120474506015515,5.917906046161393,65.71696295955395,0.0,0.0,0.0,0.0,30.678045125301807,35.495434730538925,32.13413980296617,265.29157849692314,,237.30943049761788,231.86592548349967,231.32921354276374,237.3682856583676,348.2441305542626,235.18032167401194,237.61919604359454,305.1813019376839,32.13413980296617,265.2915784969232,,235.89184808003557,230.2044729295389,230.1142872963266,235.95475188686805,353.2040035989237,233.68865422273612,236.21334990145402,307.20716474289685,4.854145723326672,192.09089868569365,,171.9383826484299,167.50315752196425,166.02620734985933,171.98320108337296,255.8328679687836,170.15650225977123,172.195508699134,224.97453881798316,1.2359284539602373,10.20352224988166,,9.12728578836992,8.917920210903834,8.89727744395245,9.129549448398754,13.394005021317792,9.045396987461997,9.13919984783056,11.737742382218611,2.5009513109556494,132.64578924846157,,118.71378118287487,116.0021899314982,115.71522869831675,118.74304006966294,173.37808432043212,117.6523136474758,118.86817494438645,152.28677154806,55.73725490196079,0.0,5.42422747090659,0.0,0.0,0.0,9.59723982940794,58.184996358339404,6.16549169040348,3.075444538926682,5.087464142299099,0.0,-1.649260245509796,1.5813357426303856,0.0,0.0,0.0,32.75916751475678,491.5807842167693,85.44263448753425,156.64003288824998,247.17571629344843,305.4982352109087,309.49823521090866,309.49823521090866,659.0,128.4656553723188,128.9649816744777,74.93407645525602,95.94000000000001,95.94000000000001,1.0,6.675823221634848,5.754887502163468,3.8784870768787547,5.019018567106534,,5.015344720424862,5.013802808404022,5.00949936404111,5.0153490171616655,5.010850573035146,5.014579412874852,5.015446450233405,5.020473429129125,0.1491725798799521,0.19303917565794362,,0.19289787386249468,0.19283856955400086,0.1926730524631196,0.19289803912160253,0.19272502203981332,0.19286843895672506,0.19290178654743867,0.19309513188958174,2.3109565939811825,2.568745855057115,,2.5680136019503546,2.567706115789929,2.566847427794037,2.568014458668128,2.567117120770971,2.567860997096853,2.568033885456773,2.5690356828757577,293.2600000000007,529.4074408190568,150.56756388786377,,150.10457167552883,150.2812441105008,150.88936556373278,150.10441483100783,150.31604908650738,150.19796310235074,150.0923153194711,149.43994083609405,20.3618246468868,5.791060149533222,,5.773252756751109,5.780047850403877,5.803437137066646,5.773246724269532,5.781386503327207,5.776844734705798,5.772781358441197,5.747690032157464,7.227269789914442,5.96992335796514,,5.9668436407348695,5.968019944315524,5.9720583349164995,5.966842595832631,5.9682515164351,5.9674656230295025,5.966761985284093,5.962406023603809,5.087464142299099,38.48605751564986,12.672684368334622,0.0,-1.2445395530929435,-1.9247189678340484,5.873802838196951,5.715916323113119,0.0,370.50253941521373,108.76061103748019,-301.6385589322787,-21.95328275628763,-5.200664809177219,-16.757697718459927,276.3164365280741,766.3407820953498,13.715754315553161,13.212772105092242,19.15851955238375,1665.0,41.0,1.7137979152745937,0.8378200318579202,0.0,0.0,0.6129299111529052,0.1870835076372738,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.06085806194501846,0.2851662867697473,0.2302576918607388,0.5416503211248692,0.3447829550319956,19.267220234572108,16.071025948295883,12.400284565365464,9.878297380706254,10.816132101998221,7.428793602184391,8.775312490923422,5.597662180237367,7.124430949621111,4.39494906864012,5.759731923137632,3.2314240812818853,3.727045265192217,1.8984713229680705,2.313207582207678,1.1469647743892453,4.327895338323957,1.9460371798867542,6.6198276913235405,3.090798686199609,11.066646373728922,4.464071445621867,89.8134901422373,51.14909023539792,30.916216125274175,22.738576091403473,22.344371816213467,22.344371816213467,128.0,150.0,59.27737599999996,38.72262400000002,0.15517241379310345,79.07,10.5,6.027777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,58.0,0.0,1.0,59.0,0.0,3.0,3.0,56.0,3.0,27.0,56.0,0.0,0.0,0.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,5.0,2.0,1.0,26.0,7.0,0.0,2.0,5.0,0.0,2.0,8.0,0.0,0.0,0.0,0.0,0.0,3.4339872044851463,4.356708826689592,3.784189633918261,4.07753744390572,4.330733340286331,4.574710978503383,4.59511985013459,4.543294782270004,4.6443908991413725,4.543294782270004 +6918649,COc1ccc(S(=O)(=O)Nc2cc(Cl)cc(Cl)c2OC)cc1N1CCNCC1,0,38.89795918367347,6.395634693877551,3.4081632653061225,7.707231040564373,162.95394074700266,158.60816883673468,1.7072385102414083,6.5382,4.493289233846259,8.03518169387755,234.2099519520974,34.19607843137255,6.497623529411765,4.078431372549019,6.128540305010893,147.38216161060197,132.69858345098038,1.9218440488235293,6.68410980392157,2.7360707657548615,8.00742831372549,273.46361635772934,27.43820224719101,6.560842696629214,3.640449438202247,6.064918851435705,158.29774845238902,104.86362853932583,1.6304369615111234,6.684952808988765,3.559046562167661,8.106393146067415,229.26510582519563,26.063063063063062,6.399044144144145,3.3513513513513513,4.895895895895895,158.18543632136053,98.20938475675675,1.5833859691084413,6.551321621621622,3.056992177362548,8.008087153153154,214.82484386677802,26.816666666666666,6.344315833333334,3.075,3.9031893004115235,157.41140120300955,102.08703564166669,1.511231864056125,6.492098333333333,3.1027233208860436,7.979983074999999,203.06738778344177,24.984375,6.36880703125,2.7734375,4.351851851851852,160.69174742318066,92.98593391406251,1.4430957574631407,6.4988140625,3.2569707897519433,8.027788578125,187.8201011413308,24.472,6.272096,2.688,3.9200000000000004,158.65557403270134,91.78677859199999,1.4149339662818,6.413348000000001,3.306329218106996,7.950269312,186.2363474463198,18.30081300813008,6.297640650406503,2.4471544715447155,2.707317073170732,163.75592707234395,64.45433886178861,1.2540749599311136,6.4028065040650395,3.191445849643682,7.996586813008131,163.19802221927986,17.067307692307693,6.327979807692307,2.3846153846153846,3.0662393162393164,168.880718919055,60.188071865384615,1.1869672057372882,6.419027884615385,3.138275561886673,8.007595076923078,155.61310985843517,16.480633069554354,0.14461424406497286,0.023842630578427216,0.6755518533944191,4.164982697538576,1.4967379628977882,75.633544243232,0.3143253797097926,0.1465905039566847,1.576715450511177,0.10750938025822573,51.42150067917607,1.839494981666136,-0.009750378518754403,-0.009862251195447232,0.2312108516876138,0.510482550288949,-0.3729948067020876,7.946890487460293,-0.03786218284509869,-0.0033119925521228524,-0.3409779265730847,-0.00016051711296765015,-0.5399811647571504,0.7530289345731415,-0.0012613892151677871,-0.00315993464753326,0.03942177650697974,0.3917590170415536,0.1739051337333952,3.868994343101423,0.06190072626139911,-0.0019955486711997032,0.3573732457452627,-0.004294609104820574,8.392980055195013,-0.4447808908450306,0.0008338897831609425,0.004466971698855357,-0.06661638731609577,0.007377871647388833,0.11442167661378415,-1.8785785399777128,0.002735374890133685,0.0003295364919271786,0.06227917350451312,-0.002635109436383497,0.8028843487842906,1.8870540052755798,-0.013401250867693998,-0.004221367983253446,-0.060755935027072036,-0.6022233962872124,-0.2698554339358549,8.690210597924477,-0.013141740079058896,-0.005079177426072453,-0.09824769157022817,-0.004354871584756355,-2.2657722200341186,0.9425174406497296,0.006102560781965865,-0.0007710236121885924,-0.07303272074135776,0.2530264042502866,0.13102747757104086,3.4269992137195455,0.009298950722691945,0.00192623711474388,-5.106892706750483e-05,0.007217221463713026,-3.3301940507665124,0.9059791753436068,0.04249770695543522,0.005619342845992952,-0.09400083298625574,0.524460487142703,-0.19639412133426007,4.6249249879516885,-0.046372347230972014,0.04744115318617242,0.23671281608581393,0.03338780357850895,-1.3316897676572548,-3.1258960527964303,-0.04057789098715641,-0.003914679864697581,0.032428899882501534,-0.6939214034033379,-0.19178140107497782,-13.825645998168111,-0.023235650863415783,-0.04043171849127903,-0.41325554524617614,-0.032273288338531034,-3.114045009582722,-1.8073599141383396,-0.028038419889148722,-2.6641475948935728e-05,0.11035866465895625,-0.4835186589316813,0.4029914120707349,-8.119289962423512,0.04591611173615285,-0.03218891447473806,-0.3837049680523919,-0.02142988477156954,2.869412208224683,,,0.492687074829932,1.2857142857142858,0.625,0.08928571428571429,0.6607142857142857,-0.03571428571428571,0.8607387507014561,0.020089636681039597,0.02930392239532531,1.0741942135323261,0.2541861781265598,0.22266038384858258,1.9349329642337822,0.4768465619751424,2.0142877808904815,1.323303653593589,0.22373437004347116,0.2607983834823763,0.1260791631968706,0.6909841272968924,9.082918010448992,1906.0,313.3861,167.0,377.6543209876543,7984.74309660313,7771.800273,83.654687001829,320.3718,220.17117245846669,393.72390299999995,11476.287645652774,1744.0,331.3788,208.0,312.55555555555554,7516.4902421407005,6767.627756,98.01404649,340.88960000000003,139.53960905349794,408.37884399999996,13946.644434244196,2442.0,583.9150000000001,324.0,539.7777777777777,14088.499612262622,9332.862939999999,145.10888957448998,594.9608000000001,316.7551440329218,721.46899,20404.59441844241,2893.0,710.2939,372.0,543.4444444444443,17558.583431671017,10901.241708,175.755842571037,727.1967000000001,339.3261316872428,888.897674,23845.55766921236,3218.0,761.3179,369.0,468.3827160493828,18889.368144361146,12250.444277000002,181.347823686735,779.0518,372.32679850632525,957.5979689999999,24368.08653401301,3198.0,815.2073,355.0,557.0370370370371,20568.543670167124,11902.199541000002,184.716256955282,831.8482,416.89226108824874,1027.556938,24040.972946090344,3059.0,784.0120000000001,336.0,490.00000000000006,19831.94675408767,11473.347323999998,176.866745785225,801.6685000000001,413.2911522633745,993.7836639999999,23279.543430789974,2251.0,774.6098,301.0,333.0,20141.979029898306,7927.88368,154.25122007152697,787.5451999999999,392.54783950617286,983.580178,20073.356732971424,1775.0,658.1098999999999,248.0,318.8888888888889,17563.59476758172,6259.559474,123.44458939667798,667.5789000000001,326.380658436214,832.789888,16183.763425277257,807.5510204081634,7.086097959183671,1.1682888983429336,33.102040816326536,204.08415217939026,73.34016018199162,3706.043667918368,15.401943605779836,7.18293469387755,77.25905707504766,5.267959632653061,2519.6535332796275,93.81424406497293,-0.49726930445647455,-0.5029748109678088,11.791753436068303,26.034610064736395,-19.022735141806468,405.29141486047496,-1.9309713251000329,-0.16891162015826547,-17.38987425522732,-0.008186372761350157,-27.539039402614673,67.01957517700959,-0.11226364014993306,-0.28123418363046016,3.508538109121197,34.86655251669827,15.477556902272173,344.34049653602665,5.50916463726452,-0.1776038317367736,31.80621887132838,-0.3822202103290311,746.9752249123561,-49.3706788837984,0.09256176593086463,0.4958338585729447,-7.3944189920866314,0.8189437528601604,12.70080610413004,-208.52221793752614,0.30362661280483905,0.03657855060391682,6.912988259000956,-0.2924971474385682,89.12016271505625,226.44648063306957,-1.6081501041232797,-0.5065641579904135,-7.290712203248645,-72.26680755446549,-32.38265207230259,1042.8252717509372,-1.5770088094870676,-0.6095012911286943,-11.78972298842738,-0.5225845901707626,-271.89266640409426,120.6422324031654,0.7811277800916308,-0.09869102236013982,-9.348188254893794,32.387379744036686,16.77151712909323,438.6558993561018,1.190265692504569,0.24655835068721663,-0.006536822664640618,0.9238043473552673,-426.2648384981136,113.24739691795085,5.3122133694294025,0.702417855749119,-11.750104123281966,65.55756089283787,-24.549265166782508,578.115623493961,-5.796543403871501,5.930144148271552,29.58910201072674,4.173475447313619,-166.46122095715685,-384.48521449396094,-4.991080591420238,-0.48150562335780245,3.988754685547689,-85.35233261861056,-23.58911233222227,-1700.5544577746778,-2.857985056200141,-4.973101374427321,-50.830432065279666,-3.969614465639317,-383.02753617867484,-187.96543107038733,-2.915995668471467,-0.0027707134986893157,11.477301124531449,-50.285940528894855,41.91110685535643,-844.4061560920452,4.7752756205598965,-3.3476471053727583,-39.90531667744876,-2.2287080162432322,298.418869655367,0.72539965389079,0.6352827477677386,0.44505679117679964,0.3596428894290966,0.28648829360666656,0.20164328068613815,0.17872044371476564,0.11137985494239835,0.11804505128277033,0.06500915901787198,0.07104545289423539,0.036338575553169584,0.049011149708153484,0.02277626080950542,0.029922182956889944,0.013307722253449152,17.00212864726847,5.698630075891477,3.5809311686612935,2.1865557751784603,0.4648184174948045,-0.5268447876206066,4.043826493865687,0.9714747840775421,6.018097304489831,0.6442210885614001,14.544302954710986,10.319767337168582,35.451528688749015,11.710724371292969,2.9545857712542567,0.7609112367963781,3.5369584138164076,2.2400340526998748,7.01420822506003,0.2989376085685694,3.768285256001853,2.4388062733622555,24.44183296830864,14.70154048823888,0.3228750645329585,0.6057201375851495,0.735478673703185,0.8173856317481332,0.8243240650659663,0.8451393650194662,1.6756993531697386,963.5433390581417,0.0,0.0,4.0,0.0,12.0,0.0,0.0,0.0,0.0,3.715351089928144,2.05147448689143,1.2881513363013015,0.8063219388638148,0.7655056123332029,0.6430566327413656,94.53455072395258,1685.540008380566,63.733698165558366,34.39877568123604,78.98167861595383,,12.0,564.0,10.023291153407584,8.417796984328938,21.355014897226567,10.772145147025231,31.866411898333865,25.308898746662365,19.242531678200752,0.0,14.938793199308897,32.67560568806513,13.795238095238096,36.0,17.5,2.5,18.5,0.0,0.007312925170068001,-1.0,0.20907677356656973,0.06867084070162077,-0.14040593286494896,0.040725623582766324,0.1731112770724419,0.0,0.6490767735665696,0.9108843537414962,0.43999999999999984,0.5804059328649488,0.8701587301587299,24.10068501964077,0.5625098270691087,0.8205098270691087,30.07743797890513,7.117212987543675,6.234490747760312,54.1781229985459,13.351703735303987,0.5408887229275581,0.2243700379703141,0.06040731791508457,0.2827062478425958,0.3333333333333333,0.4266955942166476,-1.1153899649877703,-0.05967326690466571,-0.022763060509954497,-0.07967071178484073,0.5733044057833525,1.4986280377888177,0.03916807388816768,0.030584245669159543,0.04281794393682337,-5.998183037203772,0.6526631880955566,0.7994908651937321,1.485884349256593,0.8671937332269528,0.7099183234484397,1.5236524136477183,0.6435632164038924,1.1774465691801288,0.7064849550202739,0.7845014522365055,0.6979089612808065,0.9438658949957682,0.7182765288650749,1.0610971292744296,1.4557986490567,1.0834730323224206,0.9654206238818804,1.0217390549270877,0.7093984295197244,0.7166964874710215,0.9878056981741056,0.6393699817276571,1.0101279829895573,0.7360616688289706,0.9539686767889952,0.9194401884889842,0.9211386810504996,1.2737028026793746,0.991236344429515,1.0266334665734402,0.9463540189577769,0.9916540312805205,0.903549985784011,0.8345798639025891,0.9277367976980219,0.9334106682090272,0.7920242608036391,1.0883366338458633,1.1824161589098041,1.1963008631319356,1.1540143948840138,1.2295542238277852,0.7841289565355469,1.0619580392100811,0.9919204759125796,1.193263280581636,1.0112624187511206,1.0063066195521795,0.914802880970432,1.0295449331948616,1.0803515412341487,1.132860665844636,0.9761428099653092,0.9269025984851718,0.9204479863774876,0.9882524898321031,1.024156603605257,1.2242995074492804,0.9853469582085261,1.0264266730052702,0.9871623957543594,0.7218731704619682,0.7121954809207512,1.2238520345252772,0.857174365748571,1.1492434686243436,0.9630849474509268,1.3072661480467092,0.6611911429527695,1.1161037931612436,0.6861270252710083,1.0362121363605712,1.1866047818931562,1.491486509652015,1.0374531850165405,0.9254458512525938,1.2436669104657248,1.0856734025695685,1.1696864022969766,1.1227589524971449,1.425742411785447,2.0807156741426756,1.459591938968932,1.0294458770306258,1.0050329503703272,1.3963885640364566,0.9387845228472634,0.6622877738784027,1.20595747630846,0.6484623296259304,1.0136407904524307,0.6748952776219841,1.3855564560463758,1.8205399208709212,1.3458591389801458,0.872287080635657,7.0,0.16926844199571472,4.000000000000002,2.625,2.008888888888889,1.6388888888888888,0.7306122448979591,0.3923611111111111,0.3076341647770218,0.265625,6868.95060927938,7533.846546732775,3132.5803801268517,2918.012086833044,12.120110576927416,0.40563056603150655,7.203823263243899,0.6824552927010179,1.0,0.3333333333333333,1.8993587541870642,3.5632353572237783,4.326558507813907,4.808387905251394,4.849204231782005,4.971653211373843,0.23333333333333336,0.007359497478074553,0.0930232558139535,0.055851063829787245,0.04367149758454107,0.03811369509043926,0.01660482374768089,0.01188973063973064,0.011832083260654689,0.011067708333333336,0.5227466891115284,22.68,9.871281773931855,5.389030612244898,174.12627570102308,1.0,4.2532169820762835,148.77987567910176,,97.75015048707742,114.20403831896598,115.39543525823403,97.70709573747075,152.2059477522735,114.50544207003064,114.03103425752707,142.8871949893143,0.11161555347435916,-0.06742336193641972,-0.41363939113205844,0.34225478107395846,0.12256534717194242,-0.24920514876227493,0.10507097832019703,-0.12045537932716643,-0.022593500006668217,-0.21625837843000675,-0.0014930521651422943,-0.010501077518646283,0.04569174808971727,-0.008722441024558169,-0.13253297018292795,0.05835492317710132,0.09406017875490226,0.11618943198093461,0.0511544762553903,0.19693200185918883,-0.013613082821444958,0.2266567792111132,-0.039946366489188145,0.163219274901362,-0.026988094994160182,0.00576630461648224,0.18735230092006155,-0.09861032425767319,0.0017714051133391286,0.0764473671745827,-0.02483790173757216,0.008702367249692585,0.002248007087993583,0.03949931072491361,-0.024510507176715685,0.015613786804736934,0.11450130570297364,-0.09266895494521984,-0.17705126828886636,-0.08993526510480883,-0.14459205236149353,-0.18029571015449902,0.11489889419934346,-0.041809350842723164,-0.03464874796783068,-0.06231161845872438,-0.04050689878684475,-0.04406274010108145,0.05718939537528432,0.0421988914122739,-0.032338026194400446,-0.10810823828606657,0.06075088964951049,0.08754202861091503,0.04531057281539741,0.029583836759466874,0.013140258493913454,-3.238943783480279e-05,0.0671310861096776,-0.06476267722219795,0.05497235279251958,0.29386944024920314,0.235684683680723,-0.13914673242909986,0.1259214083776744,-0.13121476584587155,0.06114912416477885,-0.14752975809266897,0.3236304665422978,0.15013033328814707,0.31055712067463426,-0.025897528272576124,-0.18967087244792086,-0.2805940123638541,-0.16418825313007107,0.04800356881497298,-0.1666084720624246,-0.12813291693602516,-0.18279780666771128,-0.07392228678724123,-0.27581403569787855,-0.26209900151114596,-0.300190441624853,-0.06055920127674925,-0.1096656849594681,-0.1938842198459476,-0.0011173882790031107,0.16336076069429958,-0.11609139678237591,0.2692464693622895,-0.10735038326793814,0.1460782828880883,-0.2195838994062631,-0.24335714343890863,-0.1993303721042509,0.0558017982813694,8.312273456824261,15.524096743153745,6.128457561382644,25.431708107548538,40.24877806496159,45.87067461994477,48.374154570929115,48.864399468888294,48.98782804031687,56.40005786493349,37.05250230062049,6.264562361217193,7.302354737506536,3.530216569512377,19.347555564312987,6869.605748396326,6325.856784963566,2618.1388161214645,108.0,43.0,56.0,72.0,89.0,98.0,94.0,96.0,101.0,445.0629825120006,30.0,4.990432586778736,5.84354441703136,6.739336627357174,7.612336837167746,8.513385953073284,9.392411897514927,10.295495855957682,11.177214938174416,12.081365065458305,0.7891156462585034,1.0000816326530613,1.1284407237491587,0.7583915424466346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7067170108762069,0.991436574629852,1.0253504169329786,0.6569601141494662,5.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,4.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,19.690424242456906,5.749511833283905,5.749511833283905,0.0,10.023291153407584,4.722094864452088,8.417796984328938,0.0,0.0,23.20187978046503,30.33183534230805,31.201658937391628,35.51248442118129,275.13677973446903,-719.2124954518786,-38.47780646183346,-14.677806029630174,-51.37232110370561,369.6713304584216,966.3275129286874,25.255891703724906,19.720969651605863,27.609357512248216,0.5,0.8369847172938364,0.18920480161259046,6.868220944823276,0.10007542568454475,6.036744166502657,0.1630152827061637,6.0,0.2,0.33828261956898575,0.6346250218002653,0.7705756179633367,0.8563911651269169,0.8636606995576929,0.8854693028500209,3.221000000000001,,3.3476890756302518,1.9084857839548874,1.544706829807235,3.3722910888299884,-4.9916946726106985,1.916140208853013,1.9056926296953702,-2.229795662315702,111.89920000000006,17.891522891929036,0.0,5.316788604006331,0.0,4.895483475517775,50.02062530150793,40.3771019697907,0.0,11.49902366656781,4.110873864173311,0.0,5.4510384535657,0.0,6.996681488176539,0.0,8.633552992532433,0.0,10.315961375454851,38.666666666666664,7.67153144696437,0.0,0.0,0.0,0.0,0.0,2.3063669858992153,0.0,49.004,0.0,26.004901738473166,0.0,0.0,-3.910719679075332,0.0,0.0,0.0,55.293595463708776,24.412519106908995,11.374772549367124,11.49902366656781,48.8164176905343,10.023291153407584,0.0,0.0,35.227318817825825,10.045266627482652,0.0,0.0,37.1611855798851,34.629133532934134,35.19372906786236,297.55975135820364,,195.94393631137768,228.38443601686055,230.87275555533463,195.85466051679043,306.8502129239072,228.95312124268406,227.97762853290072,286.7300166910497,35.19372906786236,297.5597513582038,,193.265777449656,226.7485910591848,229.5487211297857,193.15493491660294,309.4035901771577,227.31071534938155,226.34417770744756,288.0041856409444,4.90504317982603,218.88320627198996,,141.17009129472294,169.76124080773377,171.25004704909074,141.12664352991948,216.20791451796396,169.97213311806314,168.80582822687205,208.35716570701487,1.2569188952807984,10.627133977078701,,6.9979977254063455,8.156587000602162,8.245455555547666,6.994809304171087,10.958936175853827,8.176897187238717,8.142058161889311,10.24035773896606,2.4525215899130144,148.77987567910176,,97.75015048707742,114.20403831896598,115.39543525823403,97.70709573747075,152.2059477522735,114.50544207003064,114.03103425752707,142.8871949893143,48.58039215686275,0.0,2.9673404260333305,12.118963517528517,0.0,0.0,0.0,50.24217042971595,3.1420789193904275,5.780758007515157,10.635851944989302,0.0,0.0,2.0884822478374065,0.0,0.0,0.0,32.19104559332384,539.6945338185694,93.06857895516615,174.59853250396515,212.00136688288143,235.61100735731827,237.61100735731827,243.6110073573183,815.0,134.64552417851365,105.11357637432121,63.50810817390284,88.28,79.9,1.0,8.287127298384123,5.906890595608519,4.665588706782477,5.21606836617885,,5.185412339834273,5.2094620959175355,5.209753299159898,5.185438725730963,5.155933975456164,5.2085617897029435,5.206374068249713,5.1883749372668415,0.16662816809937417,0.18628815593495893,,0.18519329785122404,0.18605221771134056,0.1860626178271392,0.18519424020467726,0.18414049912343441,0.18602006391796228,0.18594193100891832,0.18529910490238719,2.5698334400419287,2.68136334873243,,2.6754687812231834,2.6800960230707704,2.680151920416472,2.675473869695966,2.669767696795226,2.6799231867964983,2.6795030744664285,2.6760399511216932,300.35000000000053,206.5013735583294,171.3783658529104,,173.09450535281272,171.14081390200147,171.4207759056454,173.0750793849784,177.09522582911057,171.2199350861905,171.42739499538445,173.8512145914104,7.375049055654621,6.120655923318229,,6.181946619743312,6.112171925071481,6.122170568058764,6.1812528351778,6.324829493896806,6.114997681649661,6.122406964120873,6.208971949693229,6.35992648117431,6.173493195150334,,6.183457136241448,6.172106107926975,6.173740628984233,6.183344902419003,6.206307004119916,6.172568317370269,6.173779241351466,6.187819262043815,39.150779902283325,2.1856893529016546,3.7741330442582504,0.8912102299767649,0.8145483952942474,7.67153144696437,0.0,3.1420789193904275,-0.9433792530420015,362.27841258074534,177.41042698514056,-463.75405001943875,-24.810801669022624,-9.464368367743647,-33.12528928710277,238.3670719853864,623.095817438943,16.28520380071516,12.716241172223324,17.80273764111266,2018.0,47.0,2.491357304915593,1.369372451012816,0.2041241452319315,0.05103103630798288,0.648810902626207,0.21298244742374448,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.22565900991549848,0.10079129398706249,0.3700210197122054,0.14416024536828229,20.31119030894212,17.787916937496682,13.351703735303989,10.789286682872898,12.318996625086662,8.670661069503941,10.008344848026876,6.237271876774308,8.499243692359464,4.680659449286782,6.32304530758695,3.234133224232093,4.803092671399042,2.232073559331531,2.812685197947655,1.2509258918242203,5.140038327225533,2.4930826306556746,8.306416529421611,3.5128314501408293,12.080795173358494,4.584400463775975,91.18223186840271,52.847667816426636,39.25235671454175,33.40231178132609,32.517076717461144,31.771455244377613,146.0,172.0,57.830652999999984,35.06534700000001,0.40816326530612246,144.1,10.20138888888889,6.236111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,49.0,0.0,1.0,51.0,12.0,2.0,8.0,43.0,14.0,30.0,37.0,0.0,0.0,0.0,18.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,6.0,2.0,1.0,28.0,10.0,0.0,3.0,4.0,0.0,3.0,6.0,1.0,0.0,2.0,0.0,2.0,3.6635616461296463,6.857579780680333,4.290459441148391,4.791649752930709,5.318119993844216,5.823785267050898,6.095402175942312,6.216543723889947,6.358491968750769,6.558818177715845 +11569786,COC[C@H]1C[C@@](Cn2cccn2)(C(=O)O)N(C(=O)c2ccc(C(C)(C)C)c(OC)c2)[C@H]1c1nccs1,0,25.58823529411765,6.210047058823529,3.323529411764706,7.4183006535947715,163.14065603777308,101.11542639705884,1.5177210728701174,6.275526470588234,4.397313503590737,7.7551946617647065,215.5603982609927,26.239436619718308,6.390491549295774,4.014084507042254,6.826291079812206,146.78715980911343,99.69559392957746,1.811111571774648,6.5331,3.1164145366023304,7.821310647887322,260.1222945604841,22.523809523809526,6.317442857142856,3.8968253968253967,5.518518518518518,156.02192575709455,84.57454542063492,1.5696738454387458,6.419467460317461,2.9508622378992753,7.822968333333333,222.28853118703887,19.828220858895705,6.249101840490797,3.478527607361963,4.658486707566462,154.54727531344204,72.05928017177914,1.4987660020959566,6.355279754601226,2.8218207983034156,7.749339263803681,206.6120569833915,18.28310502283105,6.197807762557077,2.9954337899543377,4.383561643835616,160.94238159446658,66.9619804155251,1.298802631221922,6.272378538812786,2.962060995546535,7.764923525114155,178.99072079998328,20.11111111111111,6.392662222222224,2.9466666666666668,4.740740740740741,159.4228590505151,73.29645699555557,1.373721464157644,6.468116888888889,3.658902606310013,7.9421739111111105,190.26007505055944,18.53909465020576,6.211068724279835,2.7242798353909463,4.248285322359397,159.64085736101308,67.21786853909464,1.3028591585994158,6.2898473251028815,3.3742760249961905,7.778884148148148,176.06259835407297,16.825531914893617,6.161981702127661,2.548936170212766,3.4936170212765956,163.22986315479372,60.25847552765956,1.208340920592519,6.229371914893616,3.1979281586551087,7.768847131914893,162.49054956115114,16.959183673469386,6.38967857142857,2.6377551020408165,3.2687074829931975,163.93998711940196,59.65661189795918,1.2566149399215356,6.4423602040816315,3.3149880322499374,7.978315326530613,170.2035975974662,9.588235294117647,0.13382205882352932,0.021923525289826218,0.7067474048442909,4.164167627835447,1.5125709025021885,44.28489209234428,0.2663703610350449,0.12512647058823528,1.5215551740546136,0.08367959926470586,50.41865319693881,0.6619718309859155,0.003537676056338103,-0.009380847637477447,0.34254836980359676,1.4080499916066955,-0.21050997916899458,3.054187782759278,-0.007542898051707726,0.004761971830986048,-0.07362913135445212,-0.0009997473591549383,-0.6371957565869282,1.126984126984127,0.0001956349206349819,-0.0015633308236452247,0.0430191684516944,0.23027162934890735,0.10195108810677465,5.445897039775226,0.04939325008095598,0.0019753968253969144,0.16259329957809526,-0.00037738988095238873,9.89226436183542,-1.2024539877300613,-0.0019415644171778654,0.0022604393552497397,-0.008082662873882878,-0.06300078072850704,-0.11949922413110314,-5.747229099832558,-0.049725679098966635,-0.003409815950920158,-0.07311301221676607,-0.00036601111963190504,-9.33177855163389,1.1141552511415524,0.0031727168949771925,-0.002579768176078373,-0.016309585881088946,0.287469343543667,-0.008341569590832884,5.277415002270268,0.018573406292730733,0.005226027397260306,-0.1225963997317982,-0.0018317308789954397,4.981830012236446,-0.26222222222222225,0.006942777777777861,0.0002772457071909533,-0.04439446366782008,0.04158400615148011,0.029006463656157826,-1.2851645575730453,-0.004850367651938568,0.004906222222222347,0.15152115935941057,0.006886323611111099,-1.5316977184359724,0.51440329218107,0.016564300411522653,0.0029973644489472715,-0.03778105287140273,0.2842575584256135,-0.1341035584018039,2.1120897083698242,-0.026828121518243705,0.015345267489711975,0.1168560353630221,0.012382618055555544,-3.9399232376518705,0.2127659574468085,-0.0060252127659574245,-0.002144281013803051,0.0030147979091511524,-0.14297446972113828,-0.09838291798391585,1.2077868035881243,-0.006346207560745608,-0.0030263829787233877,-0.02386564315951304,-0.007983254521276599,2.3655484518882934,-1.5918367346938775,-0.03567091836734683,0.0003077984647109377,-0.06884224277946473,-1.2634740170578036,0.2652504013960137,-7.3768309788238815,0.03261397051340669,-0.035627551020408016,-0.3853089831914369,-0.017571376275510208,-0.5704386741216411,,,0.4749999999999999,1.1319444444444444,0.4861111111111111,0.013888888888888888,0.6458333333333334,-0.1597222222222222,1.1951261160002755,0.022106597830382786,0.031662153385938335,1.054202846163676,0.21655481353746575,0.25895563203140415,2.249328962163952,0.4755104455688699,2.016244382722034,1.47219501314111,0.23672528155448236,0.251117707183568,0.0,0.5440493695809245,7.532490310647073,1740.0,422.28319999999997,226.0,504.44444444444446,11093.56461056857,6875.848995000001,103.20503295516798,426.7357999999999,299.0173182441701,527.353237,14658.107081747505,1863.0,453.7249,285.0,484.66666666666663,10421.888346447053,7078.387169,128.588921596,463.8501,221.26543209876544,555.3130559999998,18468.68291379437,2838.0,795.9977999999999,491.0,695.3333333333333,19658.762645393912,10656.392722999999,197.77890452528197,808.8529000000001,371.80864197530866,985.6940099999999,28008.354929566896,3232.0,1018.6036,567.0,759.3333333333334,25191.205876091055,11745.662667999999,244.29885834164094,1035.9106,459.95679012345676,1263.1423,33677.765288292816,4004.0,1357.3199,656.0,960.0,35246.38156918818,14664.673710999998,284.43777623760093,1373.6509,648.6913580246912,1700.518252,39198.96785519634,4525.0,1438.3490000000004,663.0,1066.6666666666667,35870.14328636589,16491.702824000004,309.08732943546994,1455.3263,823.253086419753,1786.98913,42808.51688637587,4505.0,1509.2897,662.0,1032.3333333333335,38792.72833872618,16333.942054999996,316.59477553965803,1528.4329000000002,819.9490740740742,1890.268848,42783.211400039734,3954.0,1448.0657000000003,599.0,821.0,38359.017841376524,14160.741748999997,283.960116339242,1463.9024,751.5131172839506,1825.679076,38185.27914687052,3324.0,1252.3769999999997,517.0,640.6666666666667,32132.237475402784,11692.695931999999,246.29652822462097,1262.7025999999998,649.7376543209878,1563.749804,33359.905129103376,652.0,9.099899999999995,1.4907997197081828,48.05882352941178,283.1633986928104,102.85482137014881,3011.372662279411,18.113184550383053,8.5086,103.46575183571373,5.690212749999999,3428.4684173918395,47.0,0.2511750000000053,-0.6660401822608988,24.32093425605537,99.97154940407539,-14.946208520998615,216.84733257590875,-0.5355457616712486,0.3381000000000094,-5.227668326166101,-0.07098206250000061,-45.2408987176719,142.0,0.02465000000000772,-0.1969796837792983,5.420415224913494,29.014225297962327,12.845837101453606,686.1830270116785,6.223549510200453,0.24890000000001122,20.486755746840004,-0.04755112500000098,1246.425309591263,-196.0,-0.31647499999999207,0.36845161490570755,-1.317474048442909,-10.269127258746646,-19.478373533369812,-936.798343272707,-8.105285693131561,-0.5557999999999857,-11.91742099133287,-0.05965981250000052,-1521.0799039163242,244.0,0.6948250000000051,-0.5649692305611637,-3.5717993079584796,62.95578623606307,-1.8268037403924016,1155.7538854971888,4.067575978108031,1.144500000000007,-26.848611541263807,-0.4011490625000013,1091.0207726797817,-59.0,1.5621250000000186,0.06238028411796449,-9.988754325259517,9.356401384083025,6.5264543226355105,-289.1620254539352,-1.0913327216861777,1.103900000000028,34.09226085586738,1.5494228124999974,-344.6319866480938,125.0,4.0251250000000045,0.728359561094187,-9.180795847750863,69.07458669742408,-32.58716469163835,513.2377991338673,-6.519233528933221,3.72890000000001,28.39601659321437,3.0089761874999974,-957.4013467494045,50.0,-1.4159249999999948,-0.503906038243717,0.7084775086505208,-33.599000384467494,-23.119985726220225,283.8298988432092,-1.4913587767752179,-0.7111999999999961,-5.608426142485564,-1.8760648125000008,555.9038861937489,-312.0,-6.991499999999978,0.0603284990833438,-13.493079584775087,-247.6409073433295,51.989078673618685,-1445.8588718494807,6.392338220627711,-6.982999999999971,-75.52056070552163,-3.443989750000001,-111.80598012784165,0.7246447553022505,0.6107952512834093,0.4389327189866492,0.32343896374002773,0.27958819106705907,0.19037010508293822,0.16414715152065823,0.09466530254296143,0.10165181763760463,0.052761164177188985,0.06262830789601538,0.02850670022301417,0.039435120167569324,0.01601200236425718,0.025735509473694407,0.008915963372809983,16.0045048113063,5.6854472713105135,3.5555743411375436,2.184559924230586,0.4628412375873367,-0.5290723398895514,4.030255119953717,0.9725569042746893,6.02366218300949,0.6503186101105556,14.692345918444934,10.311712012735958,32.06224664598555,11.696970334470256,2.936288134146692,0.7414174375901667,3.501666965788324,2.2343538571926684,7.009378443601253,0.6100999006600699,3.7145500474252535,2.430366766044012,24.440714556922018,14.70056055447596,0.260825119042206,0.6260903148947234,0.8168428635708722,0.8494092499408272,0.8494092499408272,0.8494092499408272,1.678552647333875,1205.6575049173034,0.0,7.0,5.0,0.0,5.0,2.0,2.0,2.0,1.0,4.438545193325076,2.129364889580511,0.9234409929333971,0.7175586399922214,0.7175586399922214,0.7175586399922214,399.87589647771165,2445.724400854324,61.581097295462385,35.96653530668124,67.1753631688007,,12.0,738.0,23.45725109883466,14.69560176298435,30.905356508909676,16.320587021833667,5.563451491696996,16.236695608785215,55.69102993792431,11.446429838927525,30.853871928320117,9.473725907600098,17.099999999999998,40.75,17.5,0.5,23.25,0.0,0.02500000000000006,-5.75,0.1544117647058822,0.03789592760181015,-0.11651583710407204,0.015090090090090102,0.16060194174757259,0.0,0.5955882352941163,0.858333333333333,0.4411764705882341,0.5576923076923062,0.8432432432432428,43.02454017600992,0.7958375218937803,1.1398375218937802,37.95130246189234,7.795973287348767,9.322402753130548,80.97584263790226,17.118376040479315,0.5533980582524274,0.20467836257309943,0.0584795321637427,0.28070175438596495,0.46153846153846156,0.22742108957169202,-0.7582899018898012,-0.03685454758621949,-0.011151322086614724,-0.03791449509449006,0.7725789104283082,2.5760090556866837,0.04710004208339001,0.03788248611303947,0.05366685532680591,-4.50812448999758,0.767087185690832,0.7303816525456325,1.4256176908740033,0.8443291326908818,0.5324706989977908,1.356711971114341,0.7716486026156302,1.0970916412767582,0.7099368890398544,0.6796229859038605,0.7735551430881329,1.0365180557794782,0.826979257960853,0.9468280394499364,1.157013438125744,1.5158341590410127,0.9944401944448111,1.0607824472450547,0.8209370881843203,0.8353208033826978,0.9203563509412882,0.5548721829821492,0.947290789256364,0.7884938845816716,0.9951400127968685,0.8521217148142328,0.935451548406639,1.3299779982128237,0.9791918844625148,1.2071178062257342,1.005206747268303,1.179398191503771,0.8611075780563552,0.8203636318780301,0.8221659640992759,1.1774885014444612,0.8258397064179062,1.0585252304192616,1.2339726721193245,1.1904171068001315,0.9903271579252688,1.0003590230883344,0.8267820895861601,0.8795930570513683,1.0290222345009619,1.292130536362312,1.1222426653258348,0.8697152078075916,1.0897205180640763,1.1680739837189908,1.2823539336259595,1.1029076567387457,1.0929744868125444,1.0344065114929841,1.081518764718522,1.053314859312749,1.1513297134663747,1.2816892781868914,1.1860722872112486,0.9875408922962625,0.9495853215178368,0.9293007877760336,0.9160849524893412,1.0154736539885456,0.9493170513839072,1.1049589677906753,0.9523759637116707,1.1097748917236474,0.9201268549496613,1.1685401304293106,0.9260897327500225,1.0577235693650169,1.0857655658530219,1.1876158564286305,1.2472647882696601,0.8364749082007341,1.1012270236928283,1.0476560810266866,1.0694714569081303,1.0571284544177864,1.1546781704218156,1.3376072415217326,1.259964014152606,0.9229538878757192,1.2066522161011644,1.6608301481671366,1.291038393853404,1.0633758399320556,1.4844617631929515,0.8206790960545951,1.2020381691312578,0.8288452962706035,1.6391880160145287,1.8172915506425429,1.6654778614815233,0.9307017225057136,9.0,0.30149984695439236,5.1111111111111125,4.229166666666668,3.5533333333333346,2.3616666666666664,1.41156462585034,0.8021541950113379,0.6992236709498614,0.5868904320987655,8827.018083782055,9852.023219436529,3559.644306050404,3238.2563728225196,15.183785004453478,0.4878449574886898,7.776452054438465,0.9525337388002315,0.0,0.46153846153846156,1.648917647925263,3.9580979516698283,5.164021848316942,5.369904201258118,5.369904201258118,5.369904201258118,0.23076923076923075,0.008867642557482128,0.08812260536398471,0.06821236559139783,0.04737777777777779,0.029156378600823044,0.01833200812792649,0.011625423116106344,0.012486136981247524,0.011977355757117664,0.5269269246430943,28.994082840236686,12.027348394768133,5.960625,214.2203967694679,0.0,4.516334902629451,205.17662028928544,,166.64887897040472,165.83326679838896,165.5765285766936,166.68179890268073,231.24815729808427,167.6343059541762,168.85458974093754,208.57611327122513,0.06904000691264149,0.02643567202177949,-0.4278895621695797,0.48468288310031543,0.3381348008650185,-0.1391736273788924,0.06896681099257479,-0.028317332387875344,0.038057269645658656,-0.04839070748794899,-0.011947324890890206,-0.012638095549637088,0.11753822183270035,0.0014619033839029854,-0.07130836865778609,0.060869227331895606,0.05529835730186577,0.06740251841293579,0.12297415173597503,0.1854307284377543,0.015787201669721244,0.1068599432676631,-0.004509938913050736,0.1962024713987408,-0.1254093116037487,-0.01450855288169045,0.10310565136614751,-0.011436423846032563,-0.015129261441680995,-0.07900404796457484,-0.12977855038797997,-0.18667872396067556,-0.027250956051826473,-0.04805150247817553,-0.004373958800568493,-0.18508583549789215,0.11620024091660364,0.02370847469295808,-0.11767122951141139,-0.023076966069202957,0.06903404695384341,-0.00551482881036105,0.1191696479979139,0.06972775131797464,0.04176596185197339,-0.08057308852304412,-0.021889814185188407,0.09880926395984967,-0.027348329925017043,0.051880667797326877,0.012646036781302288,-0.06281517747858016,0.009986150863262837,0.019176928240635556,-0.029020383630904614,-0.018209111678534052,0.03921010637603362,0.09958308574222757,0.08229393629536169,-0.030379584168046952,0.05364942311090914,0.1237785500921484,0.13671909099118387,-0.053457646412902744,0.06826275592881736,-0.0886593535416829,0.04769323370971813,-0.10071736740528003,0.12263805905794307,0.07680039301606538,0.14797654582911285,-0.07814415871566924,0.022190314580341992,-0.045024062691359806,-0.0978073090643922,0.004265736086877271,-0.03433446549207651,-0.06504350825549053,0.02727311158554047,-0.02382475113254313,-0.024186592688948873,-0.015685033028356304,-0.09540263805545915,0.046918120613977814,-0.16601978214598723,-0.2665548466444231,0.014039642833070009,-0.09740713911023403,-0.30341574354790396,0.17536394555601992,-0.16657669535338318,0.12243843641866689,-0.28473232604514787,-0.25323365840534867,-0.2099839916767074,-0.011314040299598392,11.188947554587205,21.189112037848325,8.798321934081832,17.553942580381182,40.91680936850195,44.191380656322224,44.39891006808694,44.39891006808694,44.39891006808694,72.58479777799322,52.99902047307996,8.522110135961364,9.040237458608448,0.0,19.585777304913282,8898.714546012314,7204.983102165724,3112.5730145880193,244.0,58.0,80.0,113.0,141.0,172.0,200.0,215.0,240.0,512.209341124001,39.0,5.272999558563747,6.154858094016418,7.087573705557973,8.003363058629947,8.946505025998682,9.876476003289278,10.82450708598337,11.762290216087433,12.713158284262827,0.6666666666666666,0.9859999999999998,1.129037722848258,0.6276415736555218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6698430433251145,0.9725490196078432,1.008648943918427,0.6244433735228269,8.0,2.0,0.0,0.0,1.0,0.0,4.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,5.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,2.0,1.0,2.0,0.0,0.0,19.480163033291284,10.75713553013667,5.538925252383345,0.0,5.907179729351506,9.476340119217006,9.77851570501903,5.098681808301038,11.336785877934737,26.83757866753348,35.59836478940461,42.56174856444106,26.303276740850986,166.81446838187583,-556.2093080343641,-27.032988781419498,-8.179548647564179,-27.810465401718204,566.6903648595875,1889.51509281996,34.54810851404289,27.78698665911706,39.364897767082496,0.5,0.8890529101763859,0.14888586507572757,0.563107412745766,0.09931181880484394,6.184645608959497,0.11094708982361415,6.0,0.20512820512820512,0.27087108224328516,0.6502048644713947,0.8483044550718397,0.8821251712404969,0.8821251712404969,0.8821251712404969,4.0191000000000034,,2.4464285714285716,2.1466522744089893,1.6797687759523052,2.441687311855157,-7.06006066338855,1.9499694002447985,1.8748820777026522,-3.1146920280923753,135.29529999999997,24.169327670584448,0.0,19.66437299524391,5.917906046161393,50.73254617883853,20.826477047067986,64.37058843939833,0.0,5.749511833283905,4.3694478524670215,0.0,5.739792912179234,3.4339872044851463,7.301822342137932,5.733341276897746,8.962776046120291,7.818027938530729,10.683935651497876,45.33333333333333,13.85593533944544,8.737719651246888,0.0,0.0,1.3994301688637905,0.0,2.565150413943254,1.5612878453850674,67.04799999999999,0.0,27.345550201995906,0.0,0.0,0.0,0.0,0.0,-1.493607200596287,76.77456515368155,4.736862953800049,0.0,5.749511833283905,63.0127877068393,21.491147013181227,5.917906046161393,54.16293791546442,48.23606175915158,0.0,0.0,0.0,42.67962700857548,45.54932694610778,45.269977165012484,410.3532405785709,,333.5488930308071,331.5472751370885,331.0597366658343,333.616151561115,464.1217428123857,335.1602802750055,337.6050193664471,417.67134188046566,45.269977165012484,410.3532405785709,,331.3742898562042,329.51988132236903,329.47328837743487,331.4457628394661,469.6129011061324,333.3186425081077,335.8342974041723,420.26691857054266,5.082607100664971,280.82988977621187,,228.57945588005495,226.6173155516754,225.40166514267563,228.62265899381185,313.6190990719731,229.0982856078131,230.88997289627798,284.3246787254183,1.2574993656947913,11.398701127182525,,9.265247028633532,9.209646531585792,9.196103796273174,9.267115321142082,12.89227063367738,9.31000778541682,9.37791720462353,11.601981718901824,2.606628490879183,205.17662028928544,,166.64887897040472,165.83326679838896,165.5765285766936,166.68179890268073,231.24815729808427,167.6343059541762,168.85458974093754,208.57611327122513,66.13333333333334,0.0,9.358069203532091,0.0,0.0,0.0,10.664127624853634,68.58812818645303,0.4841755427045842,0.0,11.12664341115234,0.0,-0.842679686843874,1.4911394557823128,-1.7529419714651489,0.0,0.0,42.462149399552224,652.1246066217675,112.12640005891788,269.15066071354835,351.153485685552,365.153485685552,365.153485685552,365.153485685552,1538.0,155.64173103238966,81.38022661969573,90.04313122431599,135.02,106.78,1.0,8.559941329729954,6.285402218862249,4.548437626489038,5.899456975726908,,5.9012881349328445,5.900995184770813,5.897225705563548,5.901285454270264,5.8846400482377845,5.901522565735061,5.902161532497854,5.899421422987051,0.1263454896246955,0.163873804881303,,0.16392467041480124,0.16391653291030037,0.16381182515454298,0.16392459595195177,0.16346222356216067,0.16393118238152948,0.16394893145827372,0.16387281730519587,2.7957176406633084,3.055794154125592,,3.0561045004983782,3.0560548575345283,3.0554158663899207,3.0561040462478606,3.053279420028041,3.056144225070464,3.0562524907200865,3.0557881276646595,380.68000000000154,490.3911200314782,256.95726692669666,,255.59672978866163,255.82467040233306,256.72707899125527,255.59831116104436,258.5690124580682,255.78073094642113,255.67209159297553,256.4089927926132,13.62197555642995,7.137701859074907,,7.099909160796156,7.1062408445092515,7.131307749757091,7.099953087806788,7.182472568279672,7.105020304067254,7.10200254424932,7.122472022017034,7.4761371223171,6.829843639981988,,6.8245347736295345,6.825426174062445,6.82894741663908,6.824540960592459,6.836096476538147,6.825254403178461,6.824829576683067,6.827707643187649,12.687931256537407,33.3248213136137,17.41773995733637,-0.4443242431270016,-1.1812975035693283,6.485020339600742,5.166082380355469,6.495430022802408,3.1491663075864462,458.8453100700347,122.35921881271116,-407.9822157370959,-19.828827928133453,-5.999738466721999,-20.39911078685479,415.6701215758756,1385.9684530661327,25.341204574401004,20.38188901567842,28.874342772211094,3559.0,62.0,3.5675061211718604,2.4961475863364937,0.3720084679281462,0.30590169943749473,1.2141654524359657,0.48824159163563,0.22896224130886902,0.09851242151949736,0.0,0.0,0.0,0.0,0.35671651633879004,0.18248173853297572,0.46751296275597176,0.2575699823375008,0.7952873588103351,0.40158790602923417,26.087211190881018,21.988629046202735,17.11837604047932,12.614119585861081,16.216115081889427,11.041466094810417,13.131772121652658,7.573224203436914,11.486655393049324,5.962011552022355,8.830591413338169,4.019444731444998,6.782840668821923,2.754064406652235,5.147101894738881,1.7831926745619968,7.480743881043381,3.838921613327283,12.84278166370492,5.946913692206754,21.584591511786318,8.379057206656748,118.34749896653078,43.915980973819515,31.26505214519726,29.998955671307122,29.998955671307122,29.998955671307122,194.0,235.0,76.06737599999998,44.33062400000004,0.3382352941176471,261.1,13.23611111111111,7.916666666666668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,16.0,16.0,68.0,0.0,0.0,71.0,16.0,2.0,9.0,62.0,18.0,39.0,53.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,8.0,1.0,3.0,36.0,10.0,0.0,4.0,5.0,0.0,4.0,8.0,1.0,0.0,0.0,2.0,3.0,3.912023005428146,7.189686471779435,4.477336814478207,5.003946305945459,5.5254529391317835,5.836089159298634,6.16305161150779,6.508815708167406,6.671953828407345,6.955979807019133 +44137946,CN(C[C@@H]1COCCO1)S(=O)(=O)Nc1ccc2ccc3ncc(-c4cnn(C)c4)cc3c(=O)c2c1,0,28.5,6.422134999999999,3.6166666666666667,8.874074074074075,162.6132066171471,112.9400725666667,1.5954157103537496,6.484873333333332,5.097583733424782,7.924076549999998,230.61335400756695,31.4375,6.5100078125,4.265625,7.25,146.9656277995923,121.26782873437504,1.8696833709375007,6.6630453125,2.982566550925926,7.945137062499995,274.0683034813012,25.160714285714285,6.6168919642857125,3.8482142857142856,6.952380952380952,157.65559750143896,95.1153961607143,1.6098565715222324,6.704228571428572,3.737089395943562,8.078574767857143,233.9499031126971,22.041958041958043,6.408216783216781,3.4825174825174825,5.468531468531468,155.09713438105024,80.95047083916086,1.5623753891922376,6.5111517482517485,3.3262539929206603,7.928185720279717,217.85870999548368,19.26993865030675,6.292785276073619,2.957055214723926,4.607361963190184,160.10809491029218,69.90914775460124,1.351691494326534,6.372941104294478,3.4395213209119144,7.855738331288341,184.85795486062088,19.915032679738562,6.338939869281045,3.026143790849673,4.945533769063181,162.6231012250514,73.16257659477122,1.325930742399791,6.406354901960785,3.5330831921245873,7.905772444444444,183.037573822426,20.874074074074073,6.423466666666666,3.0444444444444443,5.066666666666666,159.28012015648227,76.37567951111112,1.3966620322635854,6.501877777777779,3.6134316415180616,7.968931170370368,193.56216886851823,19.335766423357665,6.273619708029196,2.9124087591240877,4.961070559610706,160.6069809746111,70.64863244525546,1.349339787431197,6.349164963503649,3.858092277192034,7.833106992700731,183.44853305241168,18.77777777777778,6.234966666666666,3.0,4.333333333333333,159.5071028597297,68.35770217460319,1.326789132021254,6.3184063492063505,3.2997746423672343,7.793379841269838,183.77978955806216,9.722222222222221,0.1479449722222221,0.017008840897015466,0.6697222222222223,4.417283950617285,1.6071234132495198,44.7251373122222,0.2667819897896874,0.1361532222222222,1.828072392737387,0.09331382749999996,48.694655513280466,2.1423611111111134,-0.0010194253472221122,-0.006731624377636651,0.1849652777777779,0.6344521604938271,-0.3733812978621451,9.277520050798621,-0.045599735863183416,0.00516735069444455,-0.30623342775967816,0.006235602187499958,-1.0430842255385182,0.3343253968253971,0.0041617837301589,-0.00047944957418793245,-0.04085317460317455,0.12477954144620797,0.3642028208796268,1.7507463553373022,0.051977945407779065,0.002650140873015991,0.28034223468765646,0.002666591249999914,7.252944819036959,-1.877233877233877,-0.017448515345765258,-0.0008522342235018329,-0.04105089355089353,-0.26607959941293274,-0.016373230014455266,-8.445601363271171,-0.013662882649608764,-0.017915413364413303,-0.07332900084121789,-0.011221473304195836,-3.4257867897610415,-0.5003408316291752,-0.015586250340831607,-0.00025943741716992594,0.006249147920927071,-0.08831326213739303,-0.1296354533390387,-2.2869879392160883,-0.011213065742501905,-0.013630686434901148,-0.19386841342292205,-0.010439828113496946,-1.909533882750108,0.7124183006535947,0.007597075708061023,0.002220708694597438,0.0376851851851852,0.23117889130961033,0.18246583186397095,3.461108896928105,0.02791431367635333,0.007702572984749462,0.005946830330592869,0.004302916290849644,6.2504350802750785,-0.5679012345679011,-0.009826663580246822,-0.0027576090040804004,0.0021296296296296363,-0.15637860082304536,-0.1367258603878653,-2.7013099872839494,-0.007901325229602293,-0.009594135802469072,-0.210625134951481,-0.003977367870370418,-3.196266417460906,0.283860502838605,0.02163188909164637,0.0017954521034806183,-0.004880373073803734,0.49571956384608457,0.05945231504530152,1.4345670838848337,0.005331656877148269,0.018812057583130565,0.35316489319908495,0.012473480164233575,1.4148755150018668,-1.867994295401057e-16,-0.011431638888888901,-9.45482305943447e-05,-0.06138888888888889,-0.4194591416813639,-0.2925875194526874,0.07687659201058158,-0.024414906579683517,-0.007796740740740756,-0.08169816479594426,-0.010016794960317448,-1.26220897836819,,,0.4714285714285714,1.3357142857142856,0.6714285714285714,0.02857142857142857,0.6642857142857143,0.007142857142857143,0.8462204345699712,0.01761571554674463,0.029901429832458915,1.1826205584428744,0.2613730209563617,0.21856022242183926,2.028840993012846,0.479933243378201,2.060074627117873,1.4368582282578266,0.2942384542376537,0.2655909085187962,0.0,0.6232163988600464,8.252627331666679,1710.0,385.32809999999995,217.0,532.4444444444445,9756.792397028827,6776.404354000002,95.72494262122498,389.09239999999994,305.85502400548694,475.4445929999999,13836.801240454017,2012.0,416.6405,273.0,464.0,9405.800179173908,7761.141039000003,119.65973574000004,426.4349,190.88425925925927,508.4887719999997,17540.371422803277,2818.0,741.0918999999998,431.0,778.6666666666666,17657.426920161164,10652.92437,180.30393601049002,750.8736,418.5540123456789,904.8003739999999,26202.389148622075,3152.0,916.3749999999997,498.0,782.0,22178.890216490185,11575.917330000002,223.41968065448998,931.0947,475.6543209876544,1133.7305579999995,31153.795529354167,3141.0,1025.724,482.0,751.0,26097.619470377624,11395.191084000002,220.32571357522502,1038.7894,560.641975308642,1280.4853479999997,30131.8466422812,3047.0,969.8577999999999,463.0,756.6666666666667,24881.334487432865,11193.874218999998,202.86740358716804,980.1723000000001,540.5617283950619,1209.5831839999998,28004.748794831175,2818.0,867.1679999999999,411.0,684.0,21502.816221125107,10310.716734000001,188.54937435558404,877.7535000000003,487.81327160493834,1075.8057079999996,26130.892797249962,2649.0,859.4858999999999,399.0,679.6666666666666,22003.15639352172,9678.862644999997,184.85955087807397,869.8356,528.5586419753087,1073.1356580000001,25132.4490281804,2366.0,785.6057999999999,378.0,546.0,20097.894960325943,8613.070474000002,167.175430634678,796.1192000000002,415.77160493827154,981.9658599999996,23156.253484315832,583.3333333333333,8.876698333333326,1.0205304538209279,40.18333333333334,265.03703703703707,96.42740479497118,2683.5082387333323,16.006919387381245,8.169193333333332,109.68434356424322,5.598829649999997,2921.679330796828,137.11111111111126,-0.06524322222221518,-0.4308239601687457,11.837777777777786,40.60493827160494,-23.896403063177285,593.7612832511118,-2.9183830952437386,0.3307104444444512,-19.598939376619402,0.3990785399999973,-66.75739043446517,37.44444444444447,0.4661197777777968,-0.05369835230904844,-4.57555555555555,13.975308641975293,40.790715938518204,196.08359179777784,5.821529885671255,0.296815777777791,31.398330285017526,0.29865821999999037,812.3298197321394,-268.4444444444444,-2.495137694444432,-0.1218694939607621,-5.870277777777774,-38.04938271604938,-2.341371892067103,-1207.7209949477774,-1.9537922188940533,-2.5619041111111023,-10.486047120294158,-1.6046706825000046,-489.8875109358289,-81.55555555555556,-2.540558805555552,-0.04228829899869793,1.0186111111111125,-14.395061728395063,-21.13057889426331,-372.7790340922224,-1.8277297160278105,-2.221801888888887,-31.600551387936292,-1.701691982500002,-311.2540228882676,108.99999999999999,1.1623525833333366,0.339768430273408,5.765833333333335,35.37037037037038,27.917272275187553,529.5496612300001,4.27088999248206,1.1784936666666677,0.9098650405807089,0.6583461924999956,956.316567282087,-76.66666666666664,-1.326599583333321,-0.372277215550854,0.28750000000000087,-21.111111111111125,-18.457991152361814,-364.6768482833332,-1.0666789059963095,-1.2952083333333249,-28.434393218449934,-0.5369446625000064,-431.4959663572223,38.88888888888888,2.9635688055555525,0.2459769381768447,-0.6686111111111116,67.91358024691358,8.144967161206308,196.53569049222222,0.7304369921693128,2.5772518888888873,48.38359036827464,1.7088667824999997,193.83794555525574,-2.353672812205332e-14,-1.4403865000000016,-0.011913077054887432,-7.735,-52.85185185185185,-36.86602745103861,9.68645059333328,-3.076278229040123,-0.9823893333333352,-10.293968764288977,-1.2621161649999983,-159.03833127439194,0.702250714926964,0.5759077292100911,0.4307093209804367,0.32136910140406155,0.28154983495638286,0.179945314508065,0.17955752723329274,0.09848332007586653,0.11228311752835833,0.05145005989317105,0.07193193355961856,0.028185856319390953,0.04405634782091219,0.015112503248798101,0.02821281604707384,0.008327831422831354,16.013234536429305,5.658563965733081,3.5819399758064847,2.156231640732873,0.4752514101972227,-0.4382100846620905,4.043694686223424,0.9713658869064637,6.022995920037227,0.6449130217776886,14.692670157344418,10.328441550957555,32.066599654533555,11.670941199766956,2.9520504007165425,0.751116970859847,3.53821089319957,2.2056619398436608,7.014582384982478,0.30043848804330453,3.7694760240976732,2.4016347816570542,24.440365697255118,14.700983488566255,0.2802493301442979,0.611953452604522,0.8052913281349965,0.8827024641909472,0.8933726690746019,0.8933726690746019,1.1899786297488903,1564.1731761868639,0.0,3.0,4.0,0.0,9.0,1.0,5.0,0.0,0.0,4.1559130951758245,2.0834497821339304,0.8754887502163475,0.3918295834054488,0.3251629167387824,0.3251629167387824,245.03496223152806,2007.893916778669,72.25599359636803,33.46489861297782,70.03376287110376,,18.0,1051.0,10.209329170397666,13.212334168400758,23.76489946024498,41.4960192545494,11.126902983393991,11.352887973973424,53.473692489141,13.244515554290267,14.804755193700334,9.473725907600098,16.5,46.75,23.5,1.0,23.25,0.0,0.02857142857142857,0.25,0.1906701030927836,0.06337837837837879,-0.1272917247144048,0.01595238095238094,0.17478431372548997,0.0,0.634999999999999,0.874285714285714,0.4443298969072154,0.5716216216216202,0.8583333333333331,29.617715209948994,0.6165500441360621,1.046550044136062,41.39171954550061,9.14805573347266,7.649607784764374,71.0094347554496,16.797663518237034,0.53921568627451,0.1212121212121212,0.050505050505050504,0.3212121212121212,0.2916666666666667,0.32679638046795945,-0.9276345288083407,-0.0611054389134113,-0.015460575480139013,-0.054566736988725925,0.6732036195320407,1.9109358601292759,0.04104324639909319,0.0318489310021546,0.04444036884021571,-5.547003768751765,0.7538303571428573,0.7039752334248153,1.4057601745934738,0.8717855661551224,0.6239661210871994,1.4421432726313579,0.7478181909046141,1.3243742165416508,0.6448853336906375,0.7067569450285954,0.637502462233335,0.9811559826735033,0.8836454081632654,1.0052353026582468,1.225703207349315,1.2191888368785921,0.9743621736005746,0.8873498299054091,0.8755864434557071,0.7748358006998408,0.9892780949229351,0.620169837875758,1.0156927649793994,0.7626515307827396,1.248725274725275,1.0616341335683497,1.161703797855591,1.1551078535732207,0.9998441329492195,1.0818928302898796,1.2288063774776115,1.1614898832902476,1.0627220416926295,0.9086397987535932,1.091009667123427,1.04341980618628,1.0933356704645052,1.109222248926663,0.960191619470595,0.9908573435150244,0.9922627028843612,1.0742891569419168,1.0862016471886438,1.0758683832342844,1.1006628488853603,1.4026216609054667,1.126972223561044,1.0234779954292865,1.016386554621849,1.0237503699420956,0.9233089392712169,1.031627914542009,1.0008576376330296,0.8743302003494696,1.0031326532672034,0.9323593925707494,1.0132470179814235,1.247256324112298,1.0387472015189738,0.8520395738696218,1.1009587301587302,1.1526560457257102,1.2275724531851366,1.0277892990460389,1.0501164523942612,1.0938884966352291,1.0938932099531407,1.065398384240644,1.142451120111501,1.4278962698453408,1.1622498508998087,1.0267159263334462,1.0254556830031285,0.8313775774593799,0.8178993164903774,1.0288610292848774,0.8663390019298797,0.9495022729742797,1.0157240827499754,1.023244822423401,0.8404728296098205,1.0502094704950202,0.8482332911718304,0.9684450124159861,0.9640680272108846,1.0315705380912625,0.9279072002882961,1.136161640101914,1.0801708190263248,1.153720451721046,0.963681830595497,1.0772596287543936,1.0135260290120542,1.1396475076905674,1.0677416887289697,1.01774258486054,8.5,0.2719130700948883,4.666666666666668,2.5347222222222223,2.692777777777778,1.3716666666666664,1.044172335600907,0.7118764172335601,0.40239197530864196,0.34689043209876547,8292.724134541579,9095.74389307298,3882.8653705719116,3630.957231629852,17.4874194611828,0.48781551065794554,8.956785006636217,0.95242148251031,0.0,0.2916666666666667,1.7509775004326937,3.8234408134745883,5.031401845392171,5.51506101220307,5.581727678869736,5.581727678869736,0.21794871794871795,0.008239790002875403,0.08187134502923979,0.041552823315118406,0.04808531746031746,0.02493939393939394,0.02088344671201814,0.014830758692365834,0.009145272166105497,0.009128695581546458,0.4766255608476989,26.600920447074294,11.39612188365651,6.189511111111111,201.83242085003053,1.0,4.5001526027226415,235.67907916524055,,160.40610212081688,174.21955352948166,174.7040078861793,160.4267969721867,225.60650363976924,175.49642087743203,175.5515303532876,214.25663099297387,0.2203571428571431,-0.006890571081326609,-0.39577208220095983,0.27618208212360035,0.1436294717719396,-0.23232895170582302,0.20743413230982566,-0.17092509092960553,0.037952467155060565,-0.16751712294124138,0.06682398905456924,-0.021420918056480314,0.03438775510204085,0.028130619565142467,-0.028188256747822323,-0.06100017775671024,0.028248023636508787,0.22661783026558469,0.03914457194654312,0.1948330374503725,0.019464400693290747,0.15335401147208794,0.028576592788458016,0.1489474510618289,-0.1930869130869131,-0.11793922485960899,-0.050105367476943954,-0.06129540306230473,-0.06023601887212843,-0.010187910822199678,-0.1888334362019546,-0.05121366198812611,-0.13158273503929782,-0.04011274451304075,-0.12025520338018329,-0.07035241863096718,-0.05146362839614374,-0.10535167303570232,-0.015253092126662749,0.00933095500428762,-0.019992661355865946,-0.0806630357508902,-0.051134285474649946,-0.04203081981411682,-0.1001128450170195,-0.1060507309191515,-0.11187868286184008,-0.039214444842500674,0.07327731092436976,0.05135068528486231,0.13056202406991207,0.056269874187750604,0.052335076009162755,0.11353566898452094,0.07738621063958757,0.10463342633570975,0.05657282919222964,0.0032530606305409947,0.046112311606226274,0.12835977612718508,-0.0584126984126984,-0.06642107151493187,-0.16212797925367609,0.003179870040094023,-0.03540152785541273,-0.08507489795784429,-0.060398025576228975,-0.029617161322738294,-0.07046572711154807,-0.11521706459123716,-0.04262356369821418,-0.06563895737159882,0.0291970802919708,0.14621577716851364,0.10555993288147375,-0.007287160126791141,0.11222270729886206,0.036992999140677094,0.03207518568071124,0.01998507051151159,0.1381682877282662,0.19318977443242813,0.1336723666622032,0.029056074020607635,-1.9213655609839446e-17,-0.07726953283493745,-0.005558769769604644,-0.09166321028618829,-0.09495860949186828,-0.18205665914672398,0.0017188676576644793,-0.0915163223684273,-0.057264459948037964,-0.04469088047088115,-0.10734523734242336,-0.025920893475136066,13.190912651086068,26.24012218925392,10.241543585614602,19.00268220140326,39.475576865462514,47.03811751395447,47.892412620766514,47.959612620766514,47.959612620766514,72.10261194912555,50.29003798902393,10.29834589831788,9.295681798157867,0.0,21.812573960101624,12135.125843296264,10957.092015848975,2237.1806254175244,275.0,57.0,75.0,97.0,125.0,142.0,172.0,205.0,240.0,495.15763990000073,39.0,5.262690188904886,6.124683390894205,7.020190708311925,7.899153483343097,8.796187635470453,9.682778535337379,10.581292642796804,11.472530462609178,12.37245535102262,0.7222222222222221,1.0019333333333333,1.1268631608394093,0.6876391085948992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6902178143712575,0.9881045751633988,1.0190640932265114,0.6553952608725153,9.0,2.0,0.0,0.0,0.0,4.0,3.0,1.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,9.473725907600098,0.0,5.428790391900541,0.0,0.0,19.182413504616303,0.0,17.82169478392621,0.0,12.13273413692322,29.651692488311234,54.93313892681668,43.32554284519996,231.16300618230818,-656.1724643669031,-43.22360282291579,-10.936207739448385,-38.59838025687665,476.19796841383624,1351.721452411766,29.03239077345225,22.528690873529435,31.435382614227112,0.5,0.8974044917083126,0.1325708098192178,170.43373966349748,0.10602683032764419,5.697894960592177,0.10259550829168722,9.0,0.15384615384615385,0.29642964806804767,0.6472848534416953,0.851785175965976,0.9336656778954473,0.944951931735366,0.944951931735366,2.1525999999999987,,2.5892857142857144,2.3323200268519857,1.9050183614099532,2.584187490337345,-7.578242481570367,2.1111536107711144,2.0151450708147376,-3.4340166563358046,133.45249999999996,17.891522891929036,0.0,19.069679255689664,7.04767198267719,6.103966387748303,38.13516914658061,65.21206070158125,0.0,11.126902983393991,4.3694478524670215,0.0,5.726847747587197,2.3978952727983707,7.264730177929867,4.727387818712341,8.881141619321468,6.823286122355687,10.539773333966417,43.33333333333333,15.554128778075528,8.655097585889948,0.0,0.0,0.0,2.0558509584455,1.9105300484949397,1.6813992417781038,60.11600000000001,0.0,39.30155747316954,0.0,0.0,-3.869935543010713,0.0,0.0,0.0,67.61178965036456,10.150885256352629,5.687386274683562,0.0,67.00451690989541,26.730727060674955,0.0,0.0,59.78327030968071,0.0,32.80227634440464,0.0,41.25834651569395,41.41306886227545,45.438687035408236,471.3581583304811,,321.6305028836084,348.5559689400478,349.4220971729577,321.67211361799895,453.43074929270665,351.0985713473527,351.20597884830704,429.2981800788245,45.438687035408236,471.35815833048116,,319.53950356972655,346.5704604109486,347.84323441331844,319.5851426434599,458.791249761109,349.29359815269106,349.4741359065921,431.94727864228355,4.898842988871284,354.02573279777585,,239.20624979523643,263.02118656858323,263.32653377302944,239.23233452169666,336.82639456595945,264.76830038159653,264.58603708819066,323.29170135617926,1.2982482010116638,13.46737595229946,,9.189442939531668,9.958741969715652,9.983488490655935,9.190631817657113,12.955164265505905,10.031387752781505,10.034456538523058,12.265662287966414,2.480319669328738,235.67907916524055,,160.40610212081688,174.21955352948166,174.7040078861793,160.4267969721867,225.60650363976924,175.49642087743203,175.5515303532876,214.25663099297387,59.286274509803924,0.0,3.291669108960572,0.0,0.0,0.0,0.0,61.14384559359068,1.433118971376782,2.5614684639287812,10.89588566695473,0.0,-0.33139134108210233,1.1796972185765338,0.0,0.0,0.0,39.32371565235092,634.7889158617496,105.05865002596163,229.4064488084753,301.8841107235303,330.9036607321842,334.90366073218416,334.90366073218416,1462.0,153.21196239869053,72.57205873439469,85.73050994513838,124.03,115.65,1.0,10.079459812193155,6.285402218862249,4.844533405184698,5.821175444932671,,5.796512968224723,5.805288770804782,5.8031534616439435,5.79648632361867,5.7648236412110405,5.804321285489232,5.803477705251132,5.786767877031897,0.13841524014813425,0.16631929842664775,,0.1656146562349921,0.1658653934515652,0.1658043846183984,0.16561389496053344,0.16470924689174402,0.16583775101397805,0.16581364872146093,0.1653362250580542,2.830613904801088,3.014265176329507,,3.010019492872064,3.011532327593981,3.011164438579734,3.0100148962003344,3.0045375304581015,3.011365657858633,3.01122031071052,3.0083368791769987,347.32000000000113,676.7645642315151,246.59020978719838,,248.14298821754258,247.4452336895441,247.79154181905085,248.14658131414828,252.61645002537637,247.58411190152614,247.67772911591857,250.15540884706397,19.336130406614718,7.045434565348525,,7.0897996633583595,7.0698638197012595,7.079758337687167,7.08990232326138,7.217612857867896,7.073831768615032,7.076506546169102,7.147297395630399,7.770086417602708,6.760490857655675,,6.7667681139037015,6.7639522479964755,6.765350804012829,6.766782593742999,6.784635299115494,6.764513338836291,6.764891390233569,6.774845328610628,42.1077997587674,17.986096686886277,5.685759025217652,2.2260878881419375,0.0,10.285876831200223,4.936860605793204,1.433118971376782,-0.5782664340501411,409.35718232455633,163.51568934369206,-464.1507938977264,-30.57468981837437,-7.735846564962107,-27.302987876336847,336.8438590379152,956.1550039605025,20.536380232365293,15.935916732675045,22.236162882802383,3972.0,61.0,3.0828066693150076,1.63082714131541,0.2041241452319315,0.04564354645876384,0.8693502169117092,0.3225943268011592,0.14433756729740643,0.032274861218395144,0.0,0.0,0.0,0.0,0.11785113019775792,0.03333333333333333,0.4240373480456552,0.12671085190072123,0.5306989227077616,0.1377219405129752,24.57877502244374,20.15677052235319,16.79766351823703,12.5333949547584,16.048340592513824,10.256882926959705,13.466814542496955,7.38624900568999,10.891462400250758,4.990655809637592,8.99149169495232,3.5232320399238692,6.256001390569531,2.1459754613293303,4.8526043600967,1.4323870047269929,6.706390823268188,3.0807663454594123,9.63245331681809,3.547513525966098,14.629662820973698,4.485713811322237,113.2808531146169,53.83516217657489,31.757374604222534,28.252756934200146,27.865171521452343,27.865171521452343,192.0,228.0,69.159825,41.20617500000003,0.5,331.11,10.784722222222221,7.430555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,20.0,22.0,60.0,0.0,0.0,64.0,22.0,3.0,12.0,52.0,25.0,39.0,39.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,25.0,8.0,1.0,3.0,35.0,11.0,0.0,5.0,5.0,0.0,5.0,6.0,1.0,0.0,0.0,2.0,4.0,3.9889840465642745,9.186457231479546,4.68213122712422,5.285738584341177,5.921075612292236,6.530330831029494,7.058207162402389,7.630044002412945,8.155812998707406,8.688638103043695 +5282226,CC(C)OC(=O)CCC/C=C\C[C@H]1[C@@H](O)C[C@@H](O)[C@@H]1/C=C/[C@@H](O)COc1cccc(C(F)(F)F)c1,0,22.82857142857143,6.511857142857142,2.9285714285714284,7.8,168.45915247891023,91.50079092070446,1.3266117524244996,6.528397142857142,6.89375,7.990142171428574,198.98353113425316,23.408450704225352,6.4239436619718315,3.6056338028169015,6.112676056338028,147.0512359294543,88.22946748599439,1.6966973503943665,6.55506338028169,3.2065727699530515,7.857939436619716,249.9838259688499,20.0234375,6.470390625,3.09375,5.28125,156.45127750626793,74.62995226527278,1.3994078647202186,6.547721093750001,4.494791666666666,7.930025781249999,200.39450980443894,14.741573033707866,6.180168539325843,2.49438202247191,3.2134831460674156,161.5286721939335,52.08639075287189,1.1609994162149548,6.241893820224721,3.1573033707865177,7.765782808988764,159.33468264637898,13.659459459459459,6.145837837837836,2.3189189189189188,2.9135135135135135,165.2060770963757,47.869163230080005,1.0869632865924377,6.196257297297299,3.3135885885885887,7.739752735135133,147.41203541675512,13.878612716763005,6.201676300578035,2.2890173410404624,3.1098265895953756,164.56878139694774,48.592018492328314,1.1033978820616068,6.2476913294797685,3.4713391136801532,7.790342774566474,148.89478490996132,12.970930232558139,5.9815697674418615,2.296511627906977,2.4302325581395348,163.0958856990477,45.091292940595345,1.1023297580915814,6.043706976744185,2.8835594315245476,7.591631116279069,145.6613169817447,12.262569832402235,6.089720670391062,2.1731843575418996,2.368715083798883,166.36934282087708,41.76469949753742,1.0326158390016706,6.132604469273743,3.044227188081936,7.710436536312849,136.1079987015157,12.68452380952381,6.121428571428572,2.2023809523809526,2.875,168.05964227376995,44.34481348912381,1.019231178122286,6.153638095238095,3.601025132275132,7.739738666666666,135.39343182994935,8.388571428571433,0.2404102040816327,0.02331625461227444,0.5920408163265309,4.560000000000002,2.1633881672979625,40.3670117660718,0.23187538651225,0.2153819591836734,3.2155739795918357,0.14694184489795914,48.612452010118226,-0.04450704225352053,-0.012977608508191893,-0.012152211765986227,0.0862288013797069,0.9104225352112678,-0.000921465382575512,-0.15641725424766156,0.004147660477637328,-0.01079636562230511,-0.3544866221136343,-0.00935594711123887,1.2576297273470223,0.3228125000000004,0.06193466198979599,0.00017320198467516944,-0.05108099489795913,0.6462500000000003,0.31916200299337016,1.7323164273590677,-0.023369093631824208,0.05231453635204092,0.9160759460034014,0.034977375637755076,-5.065356340477917,-0.3431460674157303,-0.012130107773446511,0.00048512175984647337,-0.04677596881449207,-0.11955056179775289,-0.21751007782934292,-1.466148264411844,-0.01428098946291011,-0.010206630130704,-0.08532718986470994,-0.009237313918825929,-2.3555683686282536,3.8407715446491904e-17,-0.01209437396580261,-0.0009218153405899154,-0.021152785438499733,-0.1124324324324324,-0.13032396172574456,0.013730174206281347,-0.007190348725879726,-0.009444893546607897,-0.10171512073297782,-0.008751512851627103,-0.12386495600135126,-0.2582658959537574,0.006702099799457298,0.0006703412740419512,-0.004344697416538867,0.08624277456647392,0.012879914405284566,-1.1194454606551394,-0.00170705839124711,0.004675431402618814,-0.06369708721638948,0.00412054783531912,-1.6110923562339088,0.25860465116279063,0.0038564072140482085,0.0004790698361735047,-0.023768391077361176,0.14465116279069767,-0.12195963330916001,1.1921952378747753,-0.015081659662066853,0.004658074038917726,0.024853184490850635,0.0010451238728050255,-1.0747411016259731,-0.27955307262569834,-0.009164394025766843,-0.0008683022686900594,0.01793524113556036,-0.03262569832402228,-0.030219674753833754,-1.3739494326533477,-0.0036839613746438562,-0.008312605632197108,-0.1767039343670429,-0.005055050963402075,-1.0749299135682224,0.7280952380952381,0.02051156462585022,0.0009800958444204238,0.07147959183673469,0.33999999999999997,0.14961646253598812,3.6405608530079614,0.029320891921999995,0.018207870748299215,0.348849324452003,0.012328632653061264,5.42996459838805,,,0.45306122448979597,0.8785714285714286,0.2857142857142857,0.014285714285714285,0.5928571428571429,-0.30714285714285716,1.1734485032465565,0.02702744988989839,0.031941735604184104,0.8056526670613088,0.17066813126854552,0.29985337776650167,1.9791011703078651,0.4705215090350472,1.9740630263910686,1.5142050127222515,0.0,0.3149774124946605,0.14488060117415696,0.45985801366881746,7.1462653357143,1598.0,455.8299999999999,205.0,546.0,11792.140673523716,6405.055364449312,92.86282266971497,456.98779999999994,482.5625,559.3099520000002,13928.84717939772,1662.0,456.1,256.0,434.0,10440.637750991255,6264.292191505601,120.46551187800003,465.4095,227.66666666666666,557.9136999999998,17748.851643788345,2563.0,828.21,396.0,676.0,20025.763520802295,9552.633889954916,179.12420668418798,838.1083000000001,575.3333333333333,1015.0432999999998,25650.497254968184,2624.0,1100.07,444.0,572.0,28752.10365052016,9271.377554011196,206.65789608626196,1111.0571000000004,562.0000000000001,1382.30934,28361.573511055456,2527.0,1136.9799999999996,429.0,539.0,30563.124262829508,8855.795197564801,201.08820801960096,1146.3076000000003,613.0138888888889,1431.8542559999996,27271.226552099695,2401.0,1072.89,396.0,538.0,28470.399181671957,8406.419199172798,190.887833596658,1080.8506,600.5416666666665,1347.7293,25758.797789423308,2231.0,1028.8300000000002,395.0,418.0,28052.492340236204,7755.702385782399,189.600718391752,1039.5176,495.97222222222223,1305.7605519999997,25053.74652086009,2195.0,1090.06,389.0,424.0,29780.112364937,7475.881210059199,184.83823518129904,1097.7362,544.9166666666665,1380.16814,24363.331767571308,2131.0,1028.4,370.0,483.0,28234.01990199335,7449.928666172799,171.23083792454406,1033.8111999999999,604.9722222222222,1300.2760959999998,22746.09654743149,587.2000000000003,16.828714285714288,1.632137822859211,41.442857142857164,319.20000000000016,151.43717171085737,2825.690823625026,16.2312770558575,15.076737142857137,225.0901785714285,10.285929142857139,3402.8716407082757,-3.1599999999999575,-0.9214102040816244,-0.8628070353850221,6.12224489795919,64.64000000000001,-0.06542404216286135,-11.10562505158397,0.29448389391225027,-0.7665419591836629,-25.168550170068034,-0.6642722448979598,89.29171064163859,41.32000000000005,7.927636734693887,0.02216985403842169,-6.538367346938768,82.72000000000004,40.85273638315138,221.73650270196066,-2.9912439848734986,6.696260653061238,117.25772108843537,4.47710408163265,-648.3656115811734,-61.07999999999999,-2.159159183673479,0.08635167325267226,-8.32612244897959,-21.280000000000015,-38.71679385362304,-260.9743910653082,-2.5420161243979997,-1.816780163265312,-15.188239795918369,-1.6442418775510155,-419.2911696158292,7.105427357601002e-15,-2.237459183673483,-0.17053583800913436,-3.913265306122451,-20.799999999999994,-24.109932919262747,2.540082228162049,-1.3302145142877493,-1.7473053061224608,-18.817297335600898,-1.6190298775510141,-22.915016860249985,-44.68000000000002,1.1594632653061125,0.11596904040925755,-0.7516326530612241,14.919999999999987,2.22822519211423,-193.66406469333913,-0.29532110168575004,0.8088496326530549,-11.01959608843538,0.7128547755102077,-278.71897762846623,44.47999999999999,0.6633020408162918,0.08240001182184281,-4.088163265306123,24.88,-20.97705692917552,205.05758091446134,-2.5940454618754987,0.8011887346938488,4.2747477324263095,0.1797613061224644,-184.8554694796674,-50.040000000000006,-1.6404265306122647,-0.15542610609552063,3.210408163265304,-5.839999999999989,-5.409321780936242,-245.93694844494922,-0.6594290860612503,-1.4879564081632823,-31.63000425170068,-0.9048541224489715,-192.41245452871183,122.32000000000001,3.4459428571428368,0.16465610186263122,12.008571428571427,57.11999999999999,25.135565706046005,611.6142233053375,4.925909842895999,3.058922285714268,58.60668650793651,2.0712102857142924,912.2340525291925,0.7431388834768968,0.5721663866483772,0.45745146711740703,0.3289093727660113,0.3183615574311968,0.18445704020264592,0.194209801388877,0.10449555268384512,0.12934522517344238,0.06184013134506551,0.08533741127816907,0.035374661783237636,0.057643254721532255,0.02157251180056058,0.03898952281692764,0.012701145581008209,9.014115971533657,5.694139384010417,4.124568804803421,2.193429551320292,0.5032492327095055,-0.5213496097224621,4.02211478677538,0.9776904041359349,7.014101586409341,0.9889344640208921,17.43070462665533,10.954648000480601,19.00561338666331,11.705578385814848,1.9847401007947651,0.5269418989718637,4.007195268192802,2.243271329005144,8.007397225755069,1.1556609999842753,4.030659322353415,2.4392347223548625,20.891924590748797,13.302778705700131,0.24402757462415448,0.5681569289130111,0.8018819223416475,0.8908305628228599,0.8999489294325703,0.8999489294325703,1.6532572383943334,851.7340302603388,0.0,1.0,4.0,0.0,9.0,9.0,1.0,2.0,0.0,4.600014296731894,2.568764821830359,1.1040601787877762,0.5466380358070042,0.48949517866414904,0.48949517866414904,209.89484156742066,2859.493246361751,84.24557310320925,40.84990351945359,84.46367223181566,,21.0,1145.0,30.05164917238538,33.285364511618404,42.68629918874577,25.683286491704038,12.13273413692322,18.208754243757102,19.92349450621513,12.152040213667762,0.0,9.473725907600098,15.85714285714286,30.75,10.0,0.5,20.75,0.0,0.04693877551020401,-10.75,0.1775470576580142,0.03918367346938789,-0.13836338418862631,0.049495166487647846,0.22522853368560075,0.0,0.6134693877551004,0.9269387755102036,0.4359223300970862,0.5742857142857125,0.8774436090225558,41.07069761362948,0.9459607461464437,1.1179607461464436,28.197843347145806,5.973384594399093,10.49486822182756,69.26854096077528,16.468252816226652,0.4887714663143992,0.20120120120120114,0.03153153153153153,0.2837837837837837,0.5769230769230769,0.3721067979551397,-1.296678680696012,-0.06629017088322102,-0.01852398115280017,-0.056377333943304866,0.6278932020448602,2.1880162719942535,0.0363749162796087,0.03125737531420363,0.04655353770200541,-3.745213022964804,0.8324778370495447,0.6822971085995942,1.554622211950037,1.289744672793742,0.5373689505453773,1.0695970426020107,0.8292088908891405,1.2574766654511609,0.6769577987613725,0.737396162090412,0.7301397787077212,1.1264768776751153,0.8712028482629423,0.5815464878269282,0.9164667786972319,1.3332552352637015,0.7464461936090221,0.9249380440058363,0.8667372050518767,1.2456310176442547,0.5922765105615405,0.5081622172264293,0.6197039365837416,1.1754326811063054,0.9766928558307559,0.8284345748195224,1.0678239949183783,1.0850191139049297,0.9108093266875048,0.8809161931168372,0.9629958041241367,1.063783098960905,0.836787804664881,0.7256257364420275,0.8790282967834436,1.05857074174328,0.960379998527137,0.9237493280582892,0.9932689017751014,0.9629671036082613,0.9511278195488717,0.9489136714941503,0.9577403579504229,1.011539481552355,0.9246400419914091,0.9152760560609006,0.9383046449035741,0.9983906272460925,0.9920156006363101,0.8344841179940321,0.8946098911378116,0.8854032793156829,0.8909013864140114,0.827877852274539,0.9827789634720084,0.9831018732847334,0.8490137748747082,0.923581343774205,0.8576995792735286,1.0241251405368161,0.8830090377669345,0.6733041414146794,0.8068256381854041,0.9679901878261702,0.7389840881272945,0.8188548974208043,0.8796383181647874,1.052928655203953,0.685800239394572,0.685014264155049,0.6917452173621781,1.042603011207255,0.9968385139969245,0.8804982590894336,1.0188033803627712,0.8278208824158106,0.8737188641996048,0.8076557747216425,0.9918247509473822,0.9599564479262392,0.8931375821617195,0.8855174779680431,0.8918395962532013,1.002914542366675,0.893541382833787,0.7951333180533268,1.0138123115679771,0.7383229920716989,0.857584810239885,0.7185758302600603,0.8842263531262241,0.7959666819160605,0.8077662526639905,0.7243605296642575,0.8107563037849879,0.8560849493299879,9.0,0.2832425262728293,4.000000000000002,2.888888888888889,1.5300000000000002,1.1355555555555554,0.6572789115646259,0.49656320861678005,0.33560878054925675,0.2937577160493828,6826.260322133857,7885.440462588891,3268.1068015770466,2904.301209748909,20.52073927166303,0.4771086912368893,10.730116214546443,0.9124433381107075,0.0,0.5769230769230769,1.529268720213072,3.560518195114607,5.02522283815719,5.582644981137962,5.639787838280817,5.639787838280817,0.25,0.007453750691390247,0.08163265306122451,0.06146572104018913,0.034772727272727275,0.027696476964769647,0.016853305424733993,0.013793422461577224,0.00932246612636824,0.008159936556927299,0.5111504595999077,31.219135802469136,15.421074552269888,11.509421487603305,203.61312821395566,0.0,4.442979364044676,291.6159739590572,,249.74713900068272,247.52482790105995,253.58199589129813,249.55532428975275,335.48217371812376,249.12380933589074,249.95734297813968,289.41340386910963,-0.005305676017960551,-0.05398110516051669,-0.5211905586066513,0.14564671725631287,0.19965406473931302,-0.0004259362219431974,-0.0038748782088232057,0.017887454723091993,-0.050126601425786954,-0.11024054317003477,-0.06367108782209671,0.025870526487436974,0.03848241655313354,0.25762077040941955,0.007428379366898413,-0.08627951568424667,0.14172149122807018,0.14752877353119595,0.04291416063685616,-0.10078298513408457,0.24289191420822825,0.28488722443253567,0.23803550079315003,-0.10419874190718895,-0.04090637724642559,-0.050455877360878004,0.020806161534669868,-0.07900801350948329,-0.02621722846441948,-0.10054140126919968,-0.036320455745107484,-0.06158907022309435,-0.047388510019077276,-0.02653560154617896,-0.06286373990499847,-0.04845606981803684,4.578576432654006e-18,-0.050307240543316936,-0.039535309419062595,-0.03572859312259519,-0.024656235182550952,-0.06024067418678596,0.00034013352996868266,-0.03100953850269856,-0.043851832263042435,-0.031632026312729676,-0.059557662813505705,-0.0025480088100795647,-0.030787828196122285,0.027877767605827417,0.028749955135978895,-0.007338509941758166,0.018912889159314446,0.0059535845670134055,-0.027731690102362882,-0.007361964617822539,0.02170762778990092,-0.0198089322841438,0.028042031445709378,-0.03314155714462984,0.030828211139978433,0.016040946468057333,0.020546603394925474,-0.040146541288889934,0.031721746226030176,-0.05637436459749416,0.02953389873849437,-0.0650420895849163,0.021627039036010504,0.007729004105825405,0.007112500006589622,-0.022108349963549993,-0.03332546846695994,-0.03811982133110714,-0.037240212166535384,0.030293926771542818,-0.007154758404390848,-0.013968678950286416,-0.03403644145411187,-0.01588767755843388,-0.038594716399196115,-0.0549525327324214,-0.03440171155406723,-0.022112233987795674,0.08679609445958215,0.08531902672020276,0.04203487484239725,0.1207342295760082,0.07456140350877188,0.06915839921730584,0.09018653335315317,0.1264510751357862,0.08453758530802438,0.1084874198715477,0.0839014418365486,0.11169904775134268,17.136854882802677,24.354787710850538,6.479831212161937,15.43886093637593,33.93265837648654,40.437145984066916,41.74171321847724,41.79931321847725,41.79931321847725,69.0922059236874,52.9971754452788,0.0,11.024209437313118,5.070821041095494,16.09503047840861,19850.832664338635,19139.443721951833,2251.173144377084,71.0,49.0,55.0,65.0,70.0,66.0,68.0,65.0,66.0,500.23857350000094,36.0,5.14166355650266,5.937536205082426,6.794586580876499,7.614312146452,8.473659189392508,9.306468399070404,10.167504297059917,11.009158205571683,11.871850874710114,0.6333333333333333,1.0017142857142853,1.1452245055637953,0.5953533185056555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6265248502994012,0.9853221288515406,1.0198730621163252,0.5958635020790325,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,2.0,0.0,3.0,0.0,3.0,6.0,0.0,2.0,0.0,6.0,0.0,1.0,0.0,0.0,24.793308092122217,18.460360185545124,0.0,0.0,0.0,4.794537184071822,0.0,13.171245143024459,0.0,30.370447495797134,57.2269465197055,18.75954929201341,23.875350654941904,305.34577348199656,-1064.0368756780188,-54.39681192019262,-15.200526795400267,-46.26247285556603,515.2406150494172,1795.4563706837323,29.84876118301663,25.649376724053326,38.20119937624963,0.47619047619047616,0.858041004532399,0.1407698335333588,49.87925196382555,0.11939199760447894,0.7914567351669517,0.14195899546760107,11.0,0.3333333333333333,0.2495020569266043,0.5809028862382806,0.8198712352267793,0.9108153377326886,0.9201382645717461,0.9201382645717461,4.427400000000004,,2.5000000000000004,2.8850174216027873,2.0999146958194315,2.5989603933445764,-12.488379589625575,2.63021502863153,2.4314688013136285,-4.033945864250276,124.53240000000004,42.7590904192185,0.0,0.0,11.835812092322787,76.54374658244798,6.606881964512918,54.13300019287896,0.0,5.749511833283905,4.290459441148391,0.0,5.594711379601839,2.3978952727983707,7.055312843339752,4.844187086458591,8.593598522618644,6.985641817639208,10.179337399481271,44.33333333333333,4.401772846279407,0.0,0.0,0.0,0.0,0.0,-0.8485508688723777,0.0,70.11999999999998,0.0,11.536805530967673,0.0,0.0,0.0,6.893243743630492,0.0,-0.23284008913189025,80.16571538946567,4.736862953800049,13.171245143024459,5.749511833283905,52.311634987980085,15.707698655315344,11.835812092322787,51.5150340057083,48.569548701181965,0.0,0.0,0.0,41.67473229539589,43.85673952095809,42.13983879281106,583.2319479181144,,499.3514208585084,494.8847976637426,507.0439966571209,498.96213655702866,673.1940396349486,498.09732067014534,499.77574488191857,579.5183413149479,42.13983879281106,583.2319479181144,,496.9942780013654,492.1646383805172,505.06407708677705,496.511688186161,683.4527270258732,495.6174036431498,497.4832171549655,582.8607536024696,4.74028785654326,444.7511302863257,,383.25211774473917,380.2949072463647,388.6732430719375,383.0729733573876,499.8584948313867,382.448032998599,383.4946779708789,437.09576968513574,1.203995394080316,16.663769940517554,,14.26718345310024,14.139565647535502,14.486971333060596,14.256061044486533,19.23411541814139,14.23135201914701,14.279306996626245,16.557666894712796,2.4057680368367453,291.6159739590572,,249.74713900068272,247.52482790105995,253.58199589129813,249.55532428975275,335.48217371812376,249.12380933589074,249.95734297813968,289.41340386910963,68.97254901960784,0.0,3.595990539631011,0.0,38.41294231605184,0.0,30.836089508974972,71.39111434814276,2.140826780543289,0.0,10.35594346048303,0.0,-3.356504101990309,0.0,-4.485719666567145,0.0,0.0,41.710445145532276,704.0967691211077,107.04881041491504,249.2362736580225,351.7655986710033,390.78514867965737,394.7851486796572,394.7851486796572,646.0,147.3167394547182,116.4896194103061,84.94114376308606,96.22000000000001,96.22000000000001,0.9090909090909091,7.419380582918692,6.169925001442312,3.665742354018834,5.819351305307807,,5.822719536587757,5.823640930654262,5.821886622132386,5.822989437815376,5.787345674493893,5.8230429936555925,5.822537156169465,5.807288728705921,0.10473549582910954,0.16626718015165162,,0.16636341533107876,0.16638974087583605,0.16633961777521103,0.16637112679472502,0.16535273355696836,0.16637265696158834,0.16635820446198474,0.16592253510588345,2.5517938355792062,3.0139517644575298,,3.014530395427856,3.0146886240986963,3.0143873395880214,3.0145767474753375,3.0084367222379647,3.0145859447432537,3.0144990727317373,3.011876774452742,370.18000000000166,2421.957241146683,228.93261533867974,,228.1145598291172,227.93298500828186,228.26447383532934,228.05877014359788,233.97155793242615,228.05018334780556,228.15135970621944,230.87777279037684,69.19877831847666,6.540931866819421,,6.517558852260492,6.512371000236625,6.521842109580838,6.515964861245654,6.684901655212176,6.515719524223016,6.518610277320556,6.596507794010766,9.045094238095292,6.6861906725847975,,6.682610926652232,6.681814628842999,6.683267898162954,6.682366328022141,6.707962529168274,6.682328675633484,6.682772235553933,6.694651416863073,48.76888577653487,11.536805530967673,30.836089508974972,-0.8384401067405711,-0.882887253395717,4.401772846279407,2.0887351563458356,3.3390385410335224,0.0,477.7644417564638,250.56258551492272,-873.1341770768744,-44.63728344121343,-12.473345386812491,-37.96235552508149,422.79943552810573,1473.3270589850833,24.493487141308268,21.047529414072624,31.347384233725183,4909.0,47.0,3.4436557237342065,1.143564500688268,0.28867513459481287,0.013498731178900972,0.6810183471776501,0.15924477361444606,0.14433756729740643,0.004499577059633658,0.0,0.0,0.0,0.0,0.07856742013183861,0.07856742013183861,0.3515792847081216,0.1989670913886154,0.5192330043173644,0.22154421395649837,26.009860921691388,20.025823532693202,16.468252816226652,11.840737419576406,15.599716314128644,9.03839496992965,10.681539076388235,5.7472553976114815,8.407439636273754,4.019608537429258,5.973618789471835,2.4762263248266345,3.8044548116211288,1.4237857788369983,2.65128755155108,0.8636778995085582,5.148735630498018,1.833571419284939,7.149974692295445,2.3925475645178578,9.177027448806168,2.578805392434845,120.13203843478713,55.188201419539574,33.68192043344023,29.13469096886888,28.898731939329174,28.898731939329174,170.0,189.0,73.24075499999998,42.79124500000003,0.22857142857142856,106.09,14.0625,7.750000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,6.0,70.0,0.0,0.0,71.0,6.0,3.0,6.0,65.0,9.0,36.0,62.0,0.0,0.0,0.0,26.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,6.0,3.0,0.0,35.0,9.0,0.0,0.0,6.0,0.0,2.0,12.0,0.0,0.0,3.0,0.0,1.0,3.7612001156935624,5.689091759246198,4.182050142641207,4.491441420659749,4.860780927439802,5.189130093741584,5.218665207600417,5.374699536466843,5.294246592177555,5.482460180512514 +3639,NS(=O)(=O)c1cc2c(cc1Cl)NCNS2(=O)=O,0,58.56,7.186432000000001,4.08,10.899753086419754,165.00984330724367,237.7130884,2.03417676955168,7.303803999999999,10.235280445054109,8.804256760000001,260.25277308646423,54.76923076923077,6.844523076923078,4.8076923076923075,5.427350427350428,149.9849327848385,216.1915155,2.255471786153846,7.071776923076923,2.5022752453308006,8.501238846153845,306.8444193474037,40.37777777777778,7.16233111111111,4.111111111111111,9.51358024691358,156.880771886562,157.1807053777778,1.9370687173266212,7.290971111111111,7.009064929126656,8.680984488888889,269.177118120638,36.275862068965516,6.754586206896551,3.5,5.895913154533845,156.22149299965184,139.15882381034484,1.7784477825068277,6.920181034482758,4.398066356053798,8.421502086206898,236.97809890388748,36.49122807017544,7.037750877192983,2.9298245614035086,5.5906432748538,162.30396618048383,139.54605942105263,1.55433156294207,7.194740350877194,5.245597489952591,8.727635912280702,210.38400434937648,37.52173913043478,6.6408391304347845,2.5652173913043477,3.421900161030596,163.72178463988288,143.37427323913045,1.4384187128248482,6.808167391304348,3.3800520864396346,8.466001021739128,184.8562124817445,40.9375,7.891934375000001,2.125,9.805555555555555,175.51748020102016,157.5984640625,1.2330168235701564,7.979606249999998,11.937837577160495,9.571963124999998,180.20437520031587,14.65,7.213050000000001,1.65,1.5,179.7882783697975,43.33314434999999,0.9257832913999999,7.213600000000001,5.1496913580246915,8.930860599999999,125.09669426449443,5.166666666666667,6.222333333333335,1.1666666666666667,0.0,181.827922593333,10.085376,0.6342963986163334,6.185666666666667,3.5833333333333335,7.962623999999999,71.31625689732277,21.593600000000002,0.21260735999999994,0.026292265022036278,0.9824000000000003,4.924444444444444,1.8124948227981816,95.8859492256,0.4453322505527424,0.19624799999999998,4.635337997256515,0.15006951999999996,46.388156789716184,2.8740923076923073,-0.05397782153846147,-0.017511247295799195,0.05298461538461537,-1.4881291547958218,-0.11700397202600277,12.519051966707694,-0.06138876803850238,-0.03454861538461535,-1.4488591830513635,-0.002169829230769235,6.355999649844349,-2.3713777777777776,0.0659733511111111,0.007011069226285174,-0.026844444444444452,1.3714677640603563,0.4644231026763284,-9.572274886044443,0.03276923166222116,0.04952266666666662,1.6296637131873528,0.032027115555555555,3.224356753107549,-1.9191172413793105,-0.04563770482758617,-0.0042634948307933,-0.13895172413793105,-0.5102171136653896,-0.31460010491547796,-8.157409462151726,-0.009226431935707905,-0.043686758620689645,-0.4995158586001921,-0.04193478413793101,-1.581947689815729,-1.4223719298245614,-0.03562728982456141,0.00264962550577039,0.006371929824561435,-0.9707602339181288,-0.26993076638290775,-6.919644385599999,-0.03550085941683643,-0.026284350877192986,-0.9108303203138162,-0.02098826877192982,-11.121112242320013,3.5107478260869556,-0.052050316521739096,-0.012013206180395886,-0.22935652173913043,-0.7643585614600109,-0.7058726082262841,14.581676260486958,-0.0628465649112615,-0.04194573913043475,-1.4367616601392943,-0.026348846956521736,-2.2554335925058373,-3.2260999999999997,0.2324260149999998,0.02801986965561136,-0.11240000000000007,3.1597222222222228,0.3678777191054252,-13.5032719631,-0.10700041160169621,0.2008847499999999,3.880424819958846,0.14639915249999993,-8.961043779844768,-13.1356,-0.21868936,-0.02463453499822706,0.08359999999999998,-3.904938271604938,0.2605490464267675,-59.4399412436,-0.009226135435990462,-0.21520900000000004,-2.9157098917847892,-0.15238817,-15.028210424177038,4.639733333333334,-0.08266469333333319,0.0015994891024222067,0.4509333333333334,-0.9506172839506165,0.4911443187722551,20.75340690773332,0.18358974562636418,-0.06788066666666653,-1.6628147538484983,-0.04554395999999994,16.582878521447014,,,0.49495798319327744,1.3823529411764706,0.7352941176470589,0.029411764705882353,0.6470588235294118,0.08823529411764706,0.6597693493705181,0.0410618537890934,0.05117950084791693,1.0212438369806314,0.2518926994784754,0.20199918569555442,1.6810131863511495,0.4538918851740299,1.976844947707379,0.8748787041881321,0.33652037821717184,0.4039662491857265,0.1045721904600336,1.1019662435192465,11.878579016640005,1464.0,179.66080000000002,102.0,272.4938271604938,4125.246082681092,5942.82721,50.854419238792005,182.59509999999997,255.88201112635272,220.10641900000002,6506.319327161606,1424.0,177.95760000000004,125.0,141.11111111111111,3899.608252405801,5620.979403,58.64226643999999,183.8662,65.05915637860082,221.03220999999996,7977.954903032495,1817.0,322.3048999999999,185.0,428.1111111111111,7059.63473489529,7073.1317420000005,87.16809227969796,328.0937,315.4079218106995,390.64430200000004,12112.97031542871,2104.0,391.76599999999996,203.0,341.962962962963,9060.846593979806,8071.211781000001,103.149971385396,401.3705,255.08784865112028,488.44712100000004,13744.729736425474,2080.0,401.15180000000004,167.0,318.66666666666663,9251.326072287578,7954.125387,88.59689908769799,410.1002000000001,298.99905692729766,497.475247,11991.88824791446,1726.0,305.4786000000001,118.0,157.40740740740742,7531.202093434613,6595.216569000001,66.16726078994301,313.1757,155.4823959762232,389.4360469999999,8503.385774160248,1310.0,252.54190000000003,68.0,313.77777777777777,5616.559366432645,5043.15085,39.456538354245005,255.34739999999994,382.01080246913585,306.30281999999994,5766.540006410108,293.0,144.26100000000002,33.0,30.0,3595.76556739595,866.6628869999998,18.515665828,144.27200000000002,102.99382716049382,178.61721199999997,2501.9338852898886,62.0,74.66800000000002,14.0,0.0,2181.935071119996,121.024512,7.611556783396001,74.22800000000001,43.0,95.55148799999999,855.7950827678733,539.84,5.315183999999999,0.6573066255509069,24.560000000000006,123.1111111111111,45.31237056995454,2397.14873064,11.13330626381856,4.906199999999999,115.88344993141288,3.751737999999999,1159.7039197429046,74.72639999999998,-1.4034233599999983,-0.4552924296907791,1.3775999999999997,-38.69135802469137,-3.042103272676072,325.49535113440004,-1.5961079690010618,-0.8982639999999992,-37.67033875933545,-0.056415560000000115,165.25599089595306,-106.71199999999999,2.9688007999999995,0.31549811518283283,-1.2080000000000004,61.71604938271604,20.899039620434777,-430.752369872,1.4746154247999523,2.228519999999998,73.33486709343087,1.4412202,145.0960538898397,-111.3088,-2.646986879999998,-0.24728270018601142,-8.0592,-29.592592592592595,-18.24680608509772,-473.1297488048001,-0.5351330522710586,-2.5338319999999994,-28.971919798811143,-2.4322174799999985,-91.75296600931227,-81.0752,-2.0307555200000005,0.15102865382891223,0.3632000000000018,-55.33333333333334,-15.386053683825743,-394.41972997919993,-2.0235489867596765,-1.4982080000000002,-51.91732825788752,-1.1963313199999996,-633.9033978122408,161.49439999999996,-2.3943145599999984,-0.5526074842982107,-10.5504,-35.1604938271605,-32.470139978409065,670.7571079824,-2.890941985918029,-1.9295039999999986,-66.09103636640754,-1.21204696,-103.74994525526851,-103.23519999999999,7.437632479999993,0.8966358289795635,-3.596800000000002,101.11111111111113,11.772087011373607,-432.1047028192,-3.4240131712542787,6.4283119999999965,124.17359423868307,4.684772879999998,-286.7534009550326,-262.712,-4.3737872,-0.4926906999645412,1.6719999999999997,-78.09876543209876,5.21098092853535,-1188.798824872,-0.18452270871980925,-4.304180000000001,-58.314197835695786,-3.0477633999999996,-300.56420848354077,55.67680000000001,-0.9919763199999984,0.01919386922906648,5.411200000000001,-11.407407407407398,5.893731825267062,249.04088289279986,2.20307694751637,-0.8145679999999984,-19.95377704618198,-0.5465275199999993,198.99454225736417,0.7555844107465438,0.6267961124953962,0.4286756693310282,0.42905433985297625,0.29891687343236023,0.24129471167776725,0.1700141867365057,0.14251184016499863,0.11095375978982841,0.08227450516282928,0.06470708770517271,0.04924937842965104,0.04727578100831064,0.029193771980423805,0.028085821675448413,0.01765604969078148,17.001104565732412,5.699188393275682,3.5838288422970375,2.1767844491809947,0.46874743993927076,-0.3671809749321863,4.045289943029416,0.9676066213639003,6.019720227768992,0.6418773402189705,14.544404308006245,10.31915749871946,35.45051763196424,11.711024849069265,2.957079196501779,0.7593225704000435,3.5401049273617873,2.233416583192185,7.016339858034005,0.29867033295241996,3.771605207173269,2.4350671604448206,24.44313046695108,14.700233568009203,0.4574585682463562,0.714427957947319,0.8095830922691879,0.8571606594301225,0.8571606594301225,0.8571606594301225,2.1765654202809763,683.3155123780438,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,2.3362548782626673,1.0400000000000005,0.5600000000000005,0.3200000000000003,0.3200000000000003,0.3200000000000003,-95.89898005745474,738.6250030176051,62.18094555901829,29.545000120704206,64.32460387371825,,7.0,194.0,24.942065782332943,16.835593968657875,22.274194252841806,0.0,6.06636706846161,6.06636706846161,0.0,0.0,10.038883468458419,16.73991362784046,8.414285714285716,23.5,12.5,0.5,11.0,0.0,0.005042016806722567,1.5,0.3526530612244895,0.09511520737327173,-0.25753785385121775,0.13765506202480982,0.23002300739523407,0.0,0.7914285714285715,1.022689075630252,0.438775510204082,0.6963133640552998,0.8850340136054422,11.216078939298807,0.6980515144145878,0.8700515144145877,17.361145228670733,4.282175891134083,3.433986156824425,28.57722416796954,7.716162047958508,0.4839769926047659,0.2908885116015846,0.19807583474816068,0.2376910016977928,0.14285714285714285,0.6126087098699964,-1.062662028062084,-0.10412270973258161,-0.04250648112248336,-0.1062662028062084,0.3873912901300037,0.6719885097789383,0.041908375346789185,0.026879540391157537,0.04479923398526256,-2.568210920996437,0.8429848160138614,0.8480725292786737,1.716839029025772,1.2402906539714353,0.9407571970748868,1.419522078141189,0.8103989529535616,1.3731515525323794,0.7326553842390946,0.9095321393751413,0.5932818336461663,0.7735574601983553,0.8693934005137325,0.5069953050229932,0.7510498193590666,1.096634093376764,0.5535231982885414,0.8920519565784322,0.8476791252987818,0.8505528639062498,0.5234519587460765,0.46958150732418524,0.5862429270558516,0.7738579325790815,0.9976135968767246,1.0415936812282542,1.0472287939441254,1.1625294844434457,0.9863894767417738,1.1794158774174723,0.9888608520806956,0.999718771413926,1.0477875285177518,0.9490434282127601,1.1273155406172122,1.0038081577551399,0.9858671575203568,1.142062755345916,0.809504164766568,0.8486199211383505,1.1498511622015328,1.0524472287862943,0.9998169733010975,0.9512097616679509,1.1168124542737548,1.190986813079324,1.150904460812562,1.1518392607890855,1.0017460890183243,1.2034627751281088,1.2475860792562112,1.2321200963036394,1.1691780463558836,1.2473671333860477,1.0164133358085903,1.199688433956479,1.2134725715288373,1.2556636522089584,1.1630298787666802,1.1391043994417775,1.323308758150563,0.24993960698256168,0.15150883596507264,1.023004885993485,0.5656212394705176,0.6556614729797818,1.3261059873937369,1.2317923835949927,0.3183777669071785,0.5645111449347562,0.36663227816014865,1.0681269440601584,1.4704356846473028,2.359098010529833,2.1666846130011947,0.6107491856677523,1.9713598074608905,0.6417367777430093,1.4923183498275954,0.8282298552970154,2.393188210835269,1.9819046425739435,2.253826946337937,1.2208662731737037,0.5890634262003556,1.5904999714026833,0.7298197754999212,0.08143322475570029,1.3808664259927799,0.27997368044133913,0.6169831371310576,0.22107618819315653,1.5911703558762376,1.4022709894827754,1.4083115612017683,0.8493331671905979,6.5,0.0,3.3333333333333344,2.125,1.4088888888888889,1.1458333333333333,0.18367346938775508,0.08333333333333333,0.0,0.0,4679.151680972414,4931.947315825671,2392.438384592059,2300.2283194103957,8.971806000418667,0.43822322979914774,5.040152197783825,0.7800664837787251,1.0,0.14285714285714285,2.307601311512057,3.603856189774724,4.083856189774724,4.323856189774724,4.323856189774724,4.323856189774724,0.3611111111111111,0.0,0.11494252873563224,0.07327586206896552,0.056355555555555555,0.07161458333333333,0.011479591836734693,0.027777777777777776,0.0,0.0,0.7165570104191101,13.432098765432098,4.280618311533888,2.56,103.05494715630499,1.0,3.772794438871049,55.599816957118804,,27.875294999772645,40.94273876223064,42.00011160669335,27.842530040539053,40.53496624647177,40.51440443725128,39.609742190133424,44.54559810944247,0.13309926587934884,-0.2538850091476677,-0.6660227744213948,0.0539338511651215,-0.30219229226449457,-0.06455409999205883,0.13056190263343934,-0.13784936519263358,-0.17604569414524152,-0.3125681846520986,-0.014458827020765013,0.13701772369738593,-0.10981854705921094,0.31030605483794693,0.26665900485975635,-0.027325370973579444,0.2785020279003431,0.2562341678633535,-0.09982979741403865,0.07358378294306843,0.25234736999442864,0.3515738688639081,0.21341519287564567,0.0695081886465978,-0.08887435357602765,-0.21465721989862524,-0.16215776112175756,-0.14144108727395258,-0.10360907091580565,-0.17357296746910938,-0.08507408570320363,-0.020718086157596134,-0.22260995587567592,-0.10776255343101991,-0.27943571844523135,-0.03410240456388282,-0.06587006936428208,-0.16757317255884943,0.10077585569556922,0.006486084919138268,-0.19713091392741788,-0.14892774477897866,-0.07216536355414799,-0.07971769251558378,-0.13393436303653025,-0.1964970668488259,-0.1398569727678867,-0.23974033486032925,0.1625827942578799,-0.24481897767668584,-0.4569102802792869,-0.23346551479960337,-0.15521721690298057,-0.38944806867725984,0.15207312831809447,-0.1411228691235744,-0.21373842857218803,-0.30995833766376046,-0.17557760534265549,-0.0486208926715934,-0.14940074836988734,1.0932171633192747,1.065707714117712,-0.11441368078175901,0.641640342960289,0.20296759719152468,-0.14082638876869819,-0.24027096952643393,1.0236269923769918,0.8371395618303402,0.9755422186997065,-0.1931752498911823,-0.6083098695909899,-1.0286067236806857,-0.9369498967692654,0.0850977198697068,-0.7929703168872845,0.14375160863881775,-0.6199025167258865,-0.020717420363198638,-1.0966175451469573,-0.6290177530765803,-1.0154505058722119,-0.3239665350857107,0.21486613317526182,-0.3888138836460469,0.060834968044085606,0.4590119435396308,-0.1930405134376252,0.2709769498894416,0.21643845709765885,0.4122534251640079,-0.34589227236285996,-0.3587256754162602,-0.3034857444736276,0.35748086729592327,0.9085602964160698,6.3910587572155535,3.3019272488946267,34.54925088799338,45.21675844897902,49.94579844897902,52.586278448979016,52.586278448979016,52.586278448979016,33.60636411102544,14.872937971198246,5.720846429691921,6.867426236157351,1.7777272378205713,18.73342613982719,2702.1594780771534,2156.90495949251,753.35919127837,33.0,29.0,35.0,45.0,55.0,65.0,53.0,51.0,40.0,296.96447541600014,18.0,4.553876891600541,5.407171771460119,6.3473892096560105,7.226209010100671,8.165363632473982,9.050992878742049,9.989252319496922,10.877311072607851,11.814976310389106,1.0133333333333332,1.05632,1.1345054536735255,0.9915177753725751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7547866826347306,1.0454901960784313,1.0713037144938091,0.7106145491553023,2.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,9.79096695103555,0.0,20.046582306815168,0.0,0.0,21.974567706265816,4.722094864452088,0.0,11.600939890232516,12.13273413692322,0.0,17.37871077732403,260.85260420206146,-452.4881101763372,-44.336098316465495,-18.09952440705349,-45.24881101763372,164.95362414460672,286.13689284126787,17.844847242552795,11.445475713650715,19.075792856084526,0.42857142857142855,0.5910476645392102,0.21353101349842413,28.151945258633926,0.14046896265493825,4.659206382860866,0.40895233546078985,4.0,0.05555555555555555,0.49691489512383025,0.7760481898018355,0.8794105637394498,0.931091750708257,0.931091750708257,0.931091750708257,-0.35129999999999967,,3.32563025210084,1.767287846168871,1.3261454219420035,3.3364650239850704,-4.801501695704657,1.7347301411462133,1.7672645611931208,-2.1555054168818435,61.63640000000001,16.835593968657875,0.0,4.722094864452088,5.138973737607942,9.79096695103555,11.985479792905473,17.155367450664546,0.0,0.0,3.6109179126442243,0.0,5.030437921392435,0.0,6.637258031284457,0.0,8.331586243630754,0.0,10.070991535979658,25.333333333333332,2.1493209876543213,0.0,0.0,0.0,0.0,0.0,-0.5128086419753071,0.0,26.407999999999998,0.0,45.68375141723356,0.0,0.0,-7.8018430335097,0.0,0.0,0.0,28.36263634183814,15.17785720606636,5.687386274683562,0.0,23.504285157557018,20.046582306815168,0.0,0.0,21.92370108795877,5.022633313741326,0.0,0.0,24.78794438431438,18.869667065868263,19.655123841379297,111.19963391423762,,56.43019727863489,81.67756130726494,83.84420610492293,56.361577669339596,83.80956278998977,80.82472297554418,79.01157090247942,89.85196283660795,19.655123841379297,111.19963391423761,,54.2783188802167,80.26341170561619,82.71346035504483,54.202688536172786,85.87143418864825,79.46221578699082,77.52865768640254,91.24670163576683,4.987070097921594,79.41222962160973,,40.80783253023986,59.10423853252988,60.65605312892074,40.77127957658142,56.99665672855106,58.45958257770479,57.158832874570926,62.853055261962545,1.1561837553752528,6.541154936131625,,3.319423369331464,4.804562429839114,4.932012123818996,3.3153869217258585,4.929974281764104,4.7543954691496575,4.647739464851731,5.285409578623997,2.493535048960797,55.599816957118804,,27.8752949997627,40.94273876223064,42.00011160669335,27.842530040528757,40.53496624647177,40.51440443725128,39.609742190133424,44.54559810944247,26.137254901960784,0.0,0.0,5.7245570357772735,0.0,4.931449121315193,0.0,26.78259286234523,0.014269731040564393,4.922414493575208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.76536372888256,251.67177681054787,57.69003278780143,90.0964047443681,102.0964047443681,108.0964047443681,108.0964047443681,108.0964047443681,441.0,108.43254309652727,174.1344515361203,50.68119164493153,135.11999999999998,118.35999999999999,0.75,7.7174347132968135,5.169925001442312,3.7877161677636164,4.072136653930754,,4.08233482309883,4.072193139427786,4.071479381062357,4.082503974056366,4.0507342348865905,4.072619996836146,4.073039777900472,4.054073765429663,0.22280683339785978,0.23953745023122086,,0.2401373425352253,0.23954077290751682,0.23949878712131512,0.24014729259155096,0.23827848440509355,0.23956588216683208,0.239590575170616,0.23847492737821543,1.8623914942659938,1.9347960891605378,,1.937297336363045,1.9348099602827702,1.9346346687627682,1.9373387703611342,1.9295264083136974,1.9349147772752804,1.9350178459219725,1.9303504946416985,173.2299999999998,76.74442535331178,81.2937131591365,,78.49104780219795,80.6313954193513,80.84688132739585,78.47091468290147,81.93542840303158,80.57023479264869,80.47756966929202,82.06149485580725,4.514377961959517,4.781983127008029,,4.6171204589528205,4.743023259961841,4.75569890161152,4.615936157817734,4.81973108253127,4.739425576038158,4.733974686428943,4.827146756223956,4.871109001058441,4.928696935709991,,4.8936128286110625,4.920516346062915,4.923185262777867,4.8933562935998,4.936559729618503,4.919757536991856,4.9186067590114595,4.938097154529925,47.87880810657597,-0.6211419753086411,7.529964332955405,0.23717592592592607,0.0,2.1493209876543213,0.0,0.014269731040564393,-7.8018430335097,206.48636735369004,111.07266354968603,-192.67225556589779,-18.878586803741236,-7.706890222635912,-19.267225556589775,70.23828054912889,121.83887113157503,7.598447099773847,4.873554845263001,8.122591408771669,460.0,29.0,3.054573406894087,1.5520980745594393,0.4927992798267444,0.10995660140686184,0.7803300858899106,0.3811862308604673,0.20118446353109126,0.031741736710714036,0.0,0.0,0.0,0.0,0.0,0.0,0.11448112065443451,0.07495992106986075,0.35157928470812166,0.19176465636188547,12.844934982691244,10.655533912421737,7.716162047958507,7.7229781173535725,8.668589329538447,6.99754663865525,5.9504965357777,4.987914405774952,4.9929191905422785,3.7023527323273173,3.5588898237844986,2.7087158136308074,3.0729257655401914,1.8975951787275473,1.488548548798766,0.9357706336114185,4.5585998541335355,2.7920003584632864,7.249829170834657,3.858355688516006,10.064438083811337,5.388610091516536,59.53657659710833,43.12135922911648,36.461578888111205,32.04179854710593,32.04179854710593,32.04179854710593,94.0,111.0,31.512343999999985,22.417655999999994,0.4,52.1,7.819444444444445,3.430555555555556,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,25.0,0.0,0.0,26.0,6.0,4.0,7.0,19.0,10.0,18.0,16.0,0.0,0.0,0.0,7.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,5.0,3.0,1.0,17.0,10.0,0.0,3.0,4.0,0.0,2.0,1.0,2.0,0.0,1.0,0.0,1.0,3.258096538021482,5.78900405647314,4.0163830207523885,4.409763389645481,4.94787297235994,5.43835101113924,5.890953365511593,5.887318571375632,5.951537334442684,5.603156105592081 +51580080,CN(C)[C@@H]1C(=O)C(C(N)=O)=C(O)[C@@]2(O)C(=O)C3=C(O)c4c(O)cccc4[C@@](C)(O)[C@H]3C[C@@H]12,0,25.464285714285715,6.61624642857143,3.75,9.285714285714286,163.09981954646386,100.68450542857144,1.4212882449352857,6.6494107142857155,7.740823412698412,8.113419428571428,219.3060047676036,26.033898305084747,6.609457627118645,4.6440677966101696,8.474576271186441,147.8294419952992,99.03445035593224,1.7843806406779665,6.734364406779661,3.822504708097928,8.028798576271184,270.8693095355385,24.596153846153847,6.4258461538461535,4.605769230769231,7.836538461538462,150.8859832562696,94.0613564807692,1.6688035455128758,6.5439048076923045,3.603365384615384,7.87218176923077,251.65697738241494,23.571428571428573,6.584766233766234,3.9155844155844157,7.279220779220779,150.98510608966424,88.52784228571426,1.5389351001165128,6.685005194805194,4.330627705627705,8.048840779220777,231.98702714788868,20.359223300970875,6.535500000000001,3.150485436893204,5.888349514563107,157.67197137228555,75.19911730582524,1.29941764332899,6.600106310679612,4.862628101402372,8.052759708737863,192.10630017413288,18.100456621004565,6.588588584474885,2.7945205479452055,4.789954337899544,161.14707762039487,64.88918671689498,1.1963877954745343,6.631849771689499,4.8496955859969555,8.13527388127854,173.38924649511048,16.266666666666666,6.487452380952383,2.5142857142857142,4.0,163.78906935344196,57.44678054761905,1.103885779778157,6.522572380952379,4.724206349206349,8.066598114285716,157.36538996362398,14.491891891891893,6.429367567567567,2.281081081081081,3.4324324324324325,167.43419136928844,50.10824322702702,1.031940607182751,6.4524643243243265,4.313963963963964,8.038376108108107,144.93747406810257,13.909722222222221,6.282409722222222,2.1597222222222223,3.3472222222222223,165.3743747320276,47.969593673611115,1.038014218589347,6.316686805555555,4.238425925925927,7.895757750000001,141.59371733607557,8.003826530612246,0.1918320153061224,0.039922533699798875,0.9323979591836735,4.5395408163265305,1.400514974475264,37.697606959183666,0.22073632912628569,0.174203443877551,3.3258219954648527,0.12875820408163263,46.836333332703006,-0.4160541335178144,-0.0354338918194396,-0.019380007253888415,0.4913308543756485,1.146294534763058,0.22042284753356164,-1.6904926516776262,0.045511191651305016,-0.03162838334486338,-0.5590031563472847,-0.022420877205119327,6.597483620442463,1.4762558869701723,0.002302153649921502,-0.0005645127550961414,0.07962127158555726,0.7262558869701732,0.32327282430850196,7.106454627354784,0.04284489895555762,0.005710635792778627,0.12711699263038553,-0.0014459623233908836,11.850951031808298,-0.0483534322820041,-0.0012728084415584298,-0.0026014517230025886,-0.06829777365491654,0.28374304267161415,-0.1694582171611695,-0.2875445463821929,-0.025663773258155897,-0.00021772959183674379,-0.11279890744176455,-0.0024265677179962984,-3.3205793574642444,0.49652021002575786,0.0237616913512978,0.0033184387653543163,-0.14321626708936003,0.12238706162076475,-0.18652173032720998,2.17654987021993,-0.028278553441199044,0.021913355706360212,0.35011998326838834,0.01444126609867247,-3.2880441409274948,-0.9777339017798898,-0.001404308195881072,0.00017176578041225605,-0.13640970086664803,-0.6703301183487094,-0.07839300069426121,-4.7002870870375535,-0.023033568657904117,-0.0038957465520454656,-0.11150570387972546,0.0009511788276954459,-6.988489883446223,-0.736139455782313,-0.00974249149659863,-0.0007808784010005846,-0.06352040816326524,-0.5801870748299319,-0.12956440070684705,-3.4944845612244904,-0.01700554138211903,-0.009828767006802715,-0.02681878306878307,-0.005418048979591843,-4.605777387468517,-0.8437879205736345,-0.03028718905129618,-0.0011508052972382522,-0.0005446773303916021,-0.6298883066740208,0.12083334874102822,-3.8380089947049068,0.014153065372827053,-0.0277241581632653,-0.47462749739535454,-0.018496845008273585,0.6715998454750753,-0.3463364512471654,-0.0026496244331065876,0.0022406276219741205,-0.00010629251700679166,-0.015731292517006907,-0.08830429511359399,-1.6531070583900207,-0.008731125487381915,-0.0030650014172335554,0.004256129535147448,-0.0010764620181405787,-2.4727411329200146,,,0.45208333333333334,1.046875,0.40625,0.015625,0.640625,-0.234375,1.2153422976762296,0.03567788452615461,0.04642788452615461,1.1478988832928563,0.20614925994321392,0.2554920293547907,2.363241180969086,0.46164128929800463,2.0089090796563567,1.4484203387031032,0.11670892551609881,0.44377981543715517,0.0,0.560488740953254,7.93130831657144,1426.0,370.5098000000001,210.0,520.0,9133.589894601977,5638.3323040000005,79.592141716376,372.3670000000001,433.4861111111111,454.3514879999999,12281.136266985803,1536.0,389.958,274.0,500.0,8721.937077722652,5843.032571000002,105.27845780000003,397.3275,225.52777777777777,473.69911599999983,15981.289262596772,2558.0,668.288,479.0,815.0,15692.14225865204,9782.381073999997,173.55556873333907,680.5660999999997,374.74999999999994,818.7069040000001,26172.325647771155,3630.0,1014.0540000000001,603.0,1121.0,23251.706337808293,13633.287711999996,236.99600541794297,1029.4907999999998,666.9166666666666,1239.5214799999997,35726.002180774856,4194.0,1346.313,649.0,1213.0,32480.426102690824,15491.018165,267.68003452577193,1359.6219,1001.7013888888886,1658.8684999999998,39573.89783587137,3964.0,1442.9008999999999,612.0,1049.0,35291.20999886648,14210.731891000001,262.008927208923,1452.3751000000002,1062.0833333333333,1781.62498,37972.2449824292,3416.0,1362.3650000000005,528.0,840.0,34395.70456422281,12063.823915,231.81601375341296,1369.7401999999997,992.0833333333333,1693.9856040000004,33046.73189236104,2681.0,1189.433,422.0,635.0,30975.325403318362,9270.024996999999,190.90901232880896,1193.7059000000004,798.0833333333333,1487.0995799999998,26813.432702598977,2003.0,904.6669999999999,311.0,482.0,23813.909961411973,6907.621489,149.474047476866,909.6029,610.3333333333336,1136.9891160000002,20389.49529639488,448.2142857142858,10.742592857142855,2.235661887188737,52.214285714285715,254.21428571428572,78.42883857061479,2111.0659897142855,12.361234431071999,9.755392857142855,186.24603174603175,7.210459428571427,2622.8346666313682,-24.54719387755105,-2.0905996173469363,-1.1434204279794165,28.98852040816326,67.63137755102042,13.004948004480138,-99.73906644897994,2.685160307426996,-1.8660746173469391,-32.9811862244898,-1.3228317551020403,389.25153360610534,153.53061224489792,0.2394239795918362,-0.05870932652999871,8.280612244897956,75.53061224489801,33.6203737280842,739.0712812448976,4.455869491377992,0.5939061224489772,13.220167233560096,-0.1503800816326519,1232.498907308063,-7.446428571428632,-0.1960124999999982,-0.4006235653423986,-10.517857142857148,43.696428571428584,-26.0965654428201,-44.28186014285771,-3.952221081756008,-0.03353035714285854,-17.37103174603174,-0.37369142857142995,-511.36922104949366,102.28316326530611,4.894908418367347,0.6835983856629891,-29.502551020408166,25.21173469387754,-38.42347644740526,448.36927326530554,-5.825382008887003,4.514151275510204,72.124716553288,2.974900816326529,-677.3370930310639,-214.12372448979588,-0.30754349489795474,0.03761670591028408,-29.873724489795915,-146.80229591836735,-17.168067152043204,-1029.3628720612242,-5.044351536081002,-0.853168494897957,-24.419749149659875,0.20830816326530266,-1530.4792844747228,-154.58928571428572,-2.045923214285712,-0.16398446421012275,-13.3392857142857,-121.83928571428571,-27.20852414843788,-733.841757857143,-3.571163690244996,-2.06404107142857,-5.631944444444445,-1.1377902857142872,-967.2132513683885,-156.10076530612238,-5.603129974489794,-0.21289897998907667,-0.10076530612244639,-116.52933673469386,22.35416951709022,-710.0316640204078,2.6183170939730047,-5.12896926020408,-87.80608701814059,-3.421916326530613,124.24597141288893,-49.872448979591816,-0.38154591836734864,0.32265037756427334,-0.015306122448977999,-2.2653061224489948,-12.715818496357533,-238.04741640816297,-1.2572820701829959,-0.44136020408163196,0.6128826530612326,-0.15501053061224335,-356.0747231404821,0.7472290904187796,0.5517682846845395,0.4220720359296044,0.2848644293795481,0.26282379931961436,0.1544887410404744,0.15373494023810388,0.07977772679030372,0.09535808704755054,0.04298016767536778,0.054723682190387014,0.023352497040817134,0.03295846833908809,0.012731009114343854,0.019624740869655377,0.006984138847416379,8.026066962854676,5.675728415572047,3.548428249805849,2.1745449748839074,0.46705601310098044,-0.38169382700949805,4.034681097377646,0.9724156331097402,6.024485134851448,0.994033900243507,14.544746441379264,10.936234523515509,16.014532604226304,11.68742826601355,2.009167592457592,0.751273099466421,3.493976441600022,2.2242892596555555,7.010464366454996,1.120383020587486,3.7068963272969526,2.420333754399966,20.914498823375407,14.701781135459578,0.2680748111954524,0.66905814175504,0.8343732946775545,0.8741429015273212,0.8800304321245411,0.8800304321245411,1.8197724963472475,1148.584974808633,0.0,1.0,1.0,0.0,8.0,2.0,4.0,4.0,0.0,4.181189207630862,1.7487885605695919,0.7459720984074529,0.504726116187328,0.4690118304730424,0.4690118304730424,118.39036679069628,2424.9136356048148,102.90432672332062,43.30202920722884,92.30338326740195,,11.0,582.0,74.96747480225429,39.91624852641899,17.547724606320003,0.0,0.0,44.11809210128031,0.0,0.0,0.0,5.733667477162185,14.466666666666667,33.5,13.0,0.5,20.5,0.0,0.04791666666666666,-7.5,0.21015873015873004,0.05339105339105377,-0.15676767676767628,0.11068376068376051,0.22081818181818152,0.0,0.6523809523809515,0.9166666666666662,0.44222222222222146,0.5989898989898977,0.8059829059829057,38.89095352563935,1.1416923048369476,1.4856923048369475,36.7327642653714,6.596776318182846,8.175744939353303,75.62371779101075,14.772521257536148,0.49318181818181844,0.315668202764977,0.06912442396313365,0.47695852534562216,0.4090909090909091,0.40180954133560043,-1.616216138967395,-0.10415499076091207,-0.028861002481560632,-0.08978978549818863,0.5981904586643995,2.406127714777718,0.06653834035068845,0.0429665663353164,0.0633191503888873,-1.3686362073060505,0.8090485515564859,0.9021880575699792,1.3856593927450638,0.7944770340142363,0.5225472780870649,1.0818217834416222,0.8087284533973386,0.9390085964270061,0.8829010513772447,0.8761925328968989,0.9157072300199639,0.8565872226169474,0.6041066503217898,0.6394318709968263,0.7277197700582833,1.372395559297064,0.6781831543000411,0.966599592805248,0.6086121035421709,0.927640214086349,0.6157028389200339,0.5903109696185478,0.6612163884336961,0.7730224053469692,0.844621513944223,0.8521868556606779,0.900929848716852,1.347469220246238,0.8218600730542287,1.2396136043335055,0.8497548076883802,1.2214633946922644,0.8338940732415403,0.9189566732006648,0.8979957805739978,1.0671160797298715,0.8756430588326306,0.8396470731447258,0.8577910055718377,1.2425457877890373,0.9368290972974299,1.1544824824097322,0.8804344106616,1.152689437273861,0.8313299486222512,0.8807432824486854,0.8689990614051042,1.0526560389833959,1.1119467336134912,1.0917204842219337,1.0360767958416313,1.1880266601702802,1.1736404330907173,1.0373991272630443,1.111777901953162,1.0806947742136055,1.0974109207396598,1.171929923259574,1.095782125306685,1.1025808674898778,1.1166533864541832,1.1414560508913227,1.0925098210160633,1.0056999544003649,1.1492460428959443,1.033489072581724,1.1145344952161937,1.0257163679453414,1.1438629183125815,1.0985439659948013,1.139235206781091,1.0580531219040032,1.1687218692796382,1.2785306086185162,1.103254790588093,0.8882315968499279,1.2068983847573338,0.8312361214696725,1.1614688866234877,0.8438930884934724,1.28043577916066,1.2752574345342915,1.2557307343878104,0.9381365449056397,1.0818005754758742,1.0242315727773146,0.9758144858034264,0.7863562091503268,1.0081444538103712,0.967494052689481,1.0816750202649568,0.9845634117457706,1.0363491459140017,0.9569250873271213,1.007532684100547,1.0453731626855571,9.0,0.07427813488419549,6.666666666666668,5.9375,5.173333333333334,2.909722222222222,1.4008163265306124,0.8906250000000001,0.4847568657092466,0.30687500000000006,7777.446777086974,8604.396075833807,3041.670883880839,2764.731057092621,12.703217844791883,0.4331516358225351,7.200798255110261,0.7641402237282049,1.0,0.4090909090909091,1.626165714426742,4.058566361488012,5.061382823650151,5.302628805870276,5.338343091584561,5.338343091584561,0.2571428571428571,0.005713702683399652,0.11494252873563224,0.078125,0.06386831275720166,0.04098200312989044,0.023742649602213766,0.01979166666666667,0.01468960199118929,0.013342391304347829,0.6323407140133988,25.103673469387754,8.293697978596908,3.3703512396694215,182.42923685321395,0.0,4.41965147459515,151.41530657612557,,128.3744451483179,127.35803853180839,128.27315940052196,128.38846517637472,155.1545602403926,128.02181060219047,128.42784587005835,143.0769479778286,-0.05198190289688708,-0.1847131291557083,-0.4854403129725719,0.5269540216559623,0.25251332263395265,0.15738699803345427,-0.044843500371468496,0.2061789820979924,-0.1815600348698917,-0.1680796979241676,-0.17413163972762857,0.1408625131599667,0.18444376340790677,0.012000883409621499,-0.01414020360884523,0.08539408607808055,0.159984438152463,0.23082425407812845,0.1885120887129296,0.19409989794224394,0.03278141732256843,0.03822122555077344,-0.011230059736419934,0.25302900950048307,-0.0060412893879029815,-0.006635015742952515,-0.06516249050134046,-0.07324959582141528,0.06250478939436513,-0.12099707625379799,-0.007627660469098901,-0.11626438366415602,-0.001249858137074418,-0.033916098815745116,-0.018845927025029456,-0.07089750886083311,0.062035353730708225,0.12386718303187964,0.0831219478780485,-0.15359993624905371,0.026960229365181106,-0.13318081828942582,0.057737083220601934,-0.12811010110175644,0.1257917479620167,0.10527321779271948,0.11215802675778792,-0.07020285122600856,-0.12215830740963084,-0.007320510049587395,0.004302476934551912,-0.14629987069692482,-0.1476647408781647,-0.0559744109295461,-0.12468396447887782,-0.10434878911448399,-0.022363200550637893,-0.033527261540688746,0.007387325991999695,-0.14921086656812607,-0.09197343957503319,-0.05078657741801711,-0.019559840737375808,-0.06812585499315998,-0.1278074365458462,-0.09251197100223181,-0.0926977822493633,-0.07704006607987927,-0.05642119804308482,-0.008063805911847842,-0.04207925248908258,-0.09833770194501068,-0.10542306449876165,-0.15788391214555286,-0.028825958439708192,-0.000584168299626561,-0.1387559517933218,0.08627779848359085,-0.10181041462022866,0.06411751717013436,-0.15914816347002209,-0.1427098317476295,-0.14365566171260508,0.014339291692719622,-0.043271359008410774,-0.013812211840022428,0.056124384259343955,-0.00011399908800728407,-0.00346539290062754,-0.06305130378679405,-0.04385177712155282,-0.039554546920034815,-0.01759437901461908,0.0012797225891677843,-0.008360337314569116,-0.052795361143128765,2.406851949670727,12.916851227092202,25.255490275246395,15.709683553033546,38.34668108242998,43.8739676526496,45.1879293170132,45.2239293170132,45.2239293170132,64.28509054900341,46.3494508384993,3.734685616515162,14.200954093988965,0.0,17.935639710504127,5374.975260980054,5228.492764168629,1983.9146261666483,431.0,58.0,88.0,128.0,179.0,225.0,276.0,327.0,395.0,444.15326572800063,35.0,5.231108616854587,6.171700597410915,7.150701457592526,8.11522197256233,9.097059685517216,10.070737771809798,11.05372724643721,12.0318561537767,13.015519539946242,0.6964285714285715,1.0138571428571428,1.129286443776555,0.6607633478834877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.656105988023952,0.9978991596638658,1.0290292373322234,0.6381473859439971,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,3.0,0.0,0.0,1.0,5.0,1.0,0.0,0.0,0.0,3.0,1.0,2.0,0.0,0.0,31.266304451365713,22.840946106665523,11.384295757348628,5.783244946364939,5.907179729351506,19.28352128306594,0.0,0.0,0.0,12.13273413692322,39.06972134812962,17.408916622392056,17.206343131828646,242.23524172196656,-974.3534357008137,-62.79096628630342,-17.399168494657392,-54.13074642782299,360.62560851266284,1450.5601999040011,40.11336043701719,25.90286071257145,38.17263683957896,0.45454545454545453,0.5864046364468819,0.1262291169929846,104.77424422579634,0.07288005055015144,214.60416628414868,0.41359536355311805,6.0,0.05714285714285714,0.2800183106168023,0.6988665951985626,0.8715470109164349,0.9130884674759127,0.9192383043971305,0.9192383043971305,-0.3709999999999982,,2.2857142857142856,2.657049790600279,1.8355726579417053,2.279124989753925,-9.694717751076853,2.392135862913097,2.268484387975675,-3.830605080951063,110.11140000000003,39.91624852641899,0.0,4.899909730850478,17.56947956948497,30.58850127373197,14.09534396535438,46.23137812057353,0.0,5.749511833283905,4.2626798770413155,0.0,5.713732805509369,0.0,7.382124365737512,0.0,9.161045080251306,0.0,11.001783124388094,39.00000000000001,4.230627632423492,0.0,0.0,0.0,0.0,0.0,-0.3957179075333823,0.0,56.775999999999996,0.0,38.596719202781614,0.0,0.0,0.0,0.0,0.0,-6.472624054895654,63.24004085148708,5.733667477162185,0.0,5.749511833283905,73.64445193262142,19.984662363199156,11.835812092322787,24.471461806010627,35.10447513717954,0.0,5.759164871656176,0.0,37.00274748147531,36.74193532934132,38.989563101943716,302.83061315225115,,256.60603315377864,254.55001145170425,256.43159550992254,256.6344850408898,314.25374962805745,255.89411271294887,256.71391146586814,287.4175073688649,38.989563101943716,302.8306131522511,,254.46317601092142,252.05902727301643,254.71074614310223,254.49780536299562,320.0038382318621,253.65148534146778,254.58720735214098,289.98450103660826,5.3523714799624,213.25953017696554,,183.44591320299676,182.36532476071312,183.30917059630463,183.4607318217248,211.82130647306388,183.06956628396665,183.50284773436897,199.06735589168497,1.2184238469357411,9.463456661007848,,8.018938536055582,7.954687857865758,8.01348735968508,8.019827657527806,9.820429675876795,7.996691022279652,8.02230973330838,8.981797105277028,2.6761857399811997,151.41530657612557,,128.3744451483179,127.35803853180839,128.27315940052196,128.38846517637472,155.1545602403926,128.02181060219047,128.42784587005835,143.0769479778286,55.882352941176485,0.0,4.409853055394181,0.0,0.0,5.26880442532589,54.89516337401709,57.62563729060451,-0.1999820483749053,0.0,0.0,0.0,-3.548469282774839,1.3953472747123539,-4.513055004409171,0.0,0.0,35.73625361286384,353.520397709896,91.06528000789756,227.27971624332866,283.43743812440846,296.9472131287354,298.9472131287354,298.9472131287354,2174.0,148.9376330419075,249.3404525247334,69.5213652529276,181.61999999999998,181.61999999999998,0.8333333333333334,8.952071460092752,6.129283016944966,4.856806393767129,5.578501014759352,,5.588608877714314,5.5900737975152515,5.590997549747374,5.588595853414711,5.550344594263459,5.589236241044805,5.588518966197757,5.567598431467132,0.15177519980522278,0.17432815671122975,,0.17464402742857232,0.1746898061723516,0.17471867342960543,0.17464362041920972,0.1734482685707331,0.17466363253265016,0.1746412176936799,0.17398745098334786,2.7435319110956486,2.882070914762176,,2.8838812069170325,2.8841432985877384,2.884308533600652,2.883878876405976,2.8770108246930572,2.8839934581290474,2.8838651184338704,2.8801146094516135,309.9200000000011,253.94770373255844,217.18463012846237,,214.52414330066213,214.15415542263148,214.50454618927566,214.52925972781014,223.57797858686766,214.39639276136847,214.54349324830164,219.65665778729004,7.935865741642451,6.787019691514449,,6.703879478145692,6.692317356957234,6.703267068414864,6.704039366494067,6.986811830839614,6.699887273792765,6.704484164009426,6.864270555852814,6.7002791648090945,6.543898631680482,,6.531573098020024,6.529846917940446,6.531481742304753,6.531596947858352,6.572911060489124,6.530977414053739,6.531663293345909,6.555216490659476,0.0,39.992066477493964,54.89516337401709,-0.5479175396946843,-7.897788663949152,3.0152720117801732,-0.1999820483749053,1.4026620895271686,3.007190965867012,399.9659633070649,146.03414378129574,-587.3995406756248,-37.85421532241484,-10.489277512064733,-32.6333078153125,217.40706096432453,874.4859554306402,24.182774578828333,15.615820632690003,23.01278830080631,2350.0,76.0,3.9255089222808808,1.8741806083683505,0.2628917115316043,0.09682458365518543,1.9655975547989233,0.6407088434567716,0.28647758466498474,0.06843678678280286,0.0,0.0,0.0,0.0,0.0,0.0,0.1714751217198549,0.09239457301118303,0.6606805036571055,0.2686403502966809,23.911330893400947,17.656585109905265,14.772521257536154,9.970255028284184,15.243780360537633,8.960346980347515,13.528674740953143,7.020439957546728,12.20583514208647,5.501461462447076,9.795539112079275,4.180096970306267,7.41565537629482,2.864477050727367,5.416428480024884,1.9276223218869206,10.265374157561142,4.188278471706521,18.63806168262609,6.399655287520355,34.00725717684824,10.100540838819743,110.54355295952627,44.60747150780007,30.21766422460164,27.307051875359612,27.171074913857556,27.171074913857556,186.0,239.0,61.359031999999985,27.820968,0.32142857142857145,233.1,14.680555555555557,6.666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,6.0,6.0,56.0,0.0,1.0,59.0,6.0,5.0,8.0,51.0,11.0,35.0,48.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,9.0,6.0,0.0,32.0,10.0,0.0,2.0,8.0,0.0,4.0,2.0,0.0,0.0,0.0,0.0,1.0,3.784189633918261,7.756275606137981,4.42484663185681,5.028802598051705,5.58114392002342,6.051353604345463,6.395887445637703,6.747879911018012,7.0903632530880705,7.463022339178691 +10278166,CN(C)CCOc1cc(NS(=O)(=O)c2c(Cl)cc(C(F)(F)F)cc2Cl)ccc1Cl,0,50.75555555555555,7.104446666666664,3.688888888888889,10.694650205761317,169.23312086925074,211.3291612099846,1.832725899501866,7.246686666666664,8.612100543616318,8.64696311111111,254.95000104493977,39.06521739130435,6.686952173913044,4.304347826086956,7.644927536231883,147.9768017435173,154.2312093153392,2.0196714554347834,6.8960565217391325,3.1021537842190017,8.185100043478256,292.1027913700131,34.46835443037975,7.071392405063291,3.721518987341772,8.637130801687766,163.0229811114572,136.4467503412014,1.71996839190876,7.188620253164559,6.379004531958119,8.52646574683544,249.30095698227976,35.770833333333336,6.676087500000002,3.2708333333333335,6.081404320987654,156.6948626314403,139.66014510428337,1.7512208552525523,6.876964583333334,3.827072378448406,8.306725666666667,237.4236029187075,33.205357142857146,6.675875892857143,2.6785714285714284,5.128417107583775,166.60587593175248,130.29332386218576,1.4353997629752229,6.86070625,4.050578227404359,8.385929955357142,198.86633104849452,32.78947368421053,6.893085263157896,2.778947368421053,4.798830409356725,168.21862039597846,128.57623480153268,1.3846634278272003,7.087746315789474,4.082101472817847,8.636840652631582,199.07950586507664,36.0958904109589,6.610757534246577,3.3424657534246576,5.809233891425673,155.92953750145156,141.43308849008218,1.726655940425945,6.816083561643838,3.4750674909646673,8.260662123287672,238.81550775663516,33.626506024096386,7.028167469879519,2.819277108433735,7.291834002677375,163.47874739610492,131.1073526222651,1.5979997310734213,7.1956771084337365,7.147460211215234,8.601534168674696,222.24699637813208,24.107142857142858,6.394319047619048,2.607142857142857,3.3703703703703702,164.46282835770316,88.91255050931429,1.3918463223200714,6.591267857142857,3.127743484224967,8.147604023809524,183.44867833305912,19.891358024691364,0.2784195555555554,0.021978486846559328,0.836543209876543,5.353415637860083,2.8495860302728557,91.92195997804437,0.35105874104589435,0.25947555555555557,4.034613879997967,0.1871384217283951,48.81797076655333,1.3303811057434254,-0.014386367149758444,-0.010978311101430865,0.10741814278046154,0.6267418142780459,-0.3858549019921938,5.593302890475232,-0.039438279775594706,-0.008023671497584532,-0.5915663870168253,-0.002320178250134143,-0.8596553682452037,1.5491483044225665,0.08931082419127986,4.5213946793798455e-05,0.010714174089701496,1.1258571651820595,1.0209737543762099,8.101561147395271,0.08673545263181257,0.07247693389592118,1.7745692517542284,0.04422987250507892,10.49419805665408,1.4729938271604939,-0.019251847222222222,-0.0004382840283344874,-0.03422839506172839,0.43683641975308657,-0.3992734484740021,6.119739961824052,0.010560894049237442,-0.01855590277777777,-0.06638312566681911,-0.01691294765432096,-4.37098231871476,3.6528880070546745,0.004213837301587291,0.003205995539879526,0.05710758377425044,0.8308509700176366,-0.3082736632041422,17.184462744223854,0.005593796503306678,0.020451884920634898,-0.16968731628453856,0.005790486406525587,8.969754763407567,0.7296946068875898,-0.027089520467836265,-0.004385204876778603,0.12018193632228721,-0.6640415854450941,0.02628654648199708,4.858110797666107,-0.006069283408066972,-0.0028794152046783604,-0.7146880489976658,-0.0016693658219623336,6.260877425465234,2.34821579570438,0.01089907458143074,-0.0032641185673479766,-0.2137121596482327,-0.09904955183493999,-0.3418004204605636,10.488298575056561,-0.026112061724813604,0.011250380517503827,-0.25092249135092587,0.016325417236597355,-1.3623134943003963,-1.0380782388814518,0.14115715127175363,0.005934216255861193,-0.025833705191134915,1.4642451286627995,0.5761706808267518,-4.532222788699631,-0.026732771409079852,0.11334846050870141,2.2999655136320305,0.0843758433318459,-7.723124649117342,-3.2297178130511464,-0.016853920634920628,-0.0018336491778446352,-0.02940035273368608,-0.2821634332745446,-0.2060859432527749,-15.003283821856051,-0.0529907232941848,-0.019268253968253945,-0.21124141753942846,-0.015681927548500823,-3.9705956966575346,,,0.4873563218390805,1.2413793103448276,0.603448275862069,0.08620689655172414,0.6379310344827587,-0.034482758620689655,0.881567100630363,0.03813197798412315,0.04406301246688177,1.1597461319190627,0.24760812591249445,0.21130174308176503,2.0413132325494256,0.45890986899425945,1.9625770687010682,1.1985688290642558,0.13837904460866224,0.19004973789345592,0.35831112494500306,0.7640082396368124,10.888665134933344,2284.0,319.7000999999999,166.0,481.25925925925924,7615.490439116284,9509.812254449307,82.47266547758397,326.10089999999985,387.54452446273433,389.11333999999994,11472.75004702229,1797.0,307.5998,198.0,351.66666666666663,6806.932880201796,7094.635628505604,92.90488695000003,317.2186000000001,142.69907407407408,376.5146019999998,13436.728403020603,2723.0,558.64,294.0,682.3333333333335,12878.815507805119,10779.293276954912,135.87750296079204,567.9010000000002,503.94135802469134,673.5907939999997,19694.7756016001,3434.0,640.9044000000002,314.0,583.8148148148148,15042.706812618268,13407.373930011203,168.11720210424502,660.1886000000001,367.398948331047,797.445664,22792.66588019592,3719.0,747.6981000000001,300.0,574.3827160493828,18659.858104356277,14592.852272564805,160.76477345322496,768.3991,453.6647614692882,939.2241549999999,22273.029077431387,3115.0,654.8431,264.0,455.8888888888889,15980.768937617953,12214.742306145605,131.54302564358403,673.3359,387.79963991769546,820.4998620000002,18912.553057182282,2635.0,482.58530000000013,244.0,424.07407407407413,11382.856237605964,10324.615459776,126.04588365109399,497.57410000000016,253.6799268404207,603.028335,17433.532066234366,2791.0,583.3379000000001,234.0,605.2222222222222,13568.736033876708,10881.910267648003,132.63397767909396,597.2412000000002,593.2391975308644,713.9273359999997,18446.500699384964,2025.0,537.1228,219.0,283.1111111111111,13814.877582047066,7468.6542427824,116.91509107488599,553.6665,262.7304526748972,684.3987380000001,15409.688979976965,895.1111111111113,12.528879999999994,0.9890319080951698,37.64444444444443,240.90370370370374,128.2313713622785,4136.488199011997,15.797643347065245,11.676400000000001,181.55762459990854,8.42122897777778,2196.8086844949,61.19753086419757,-0.6617728888888884,-0.5050023106658198,4.941234567901231,28.830123456790112,-17.749325491640914,257.29193296186065,-1.8141608696773566,-0.36908888888888847,-27.212053802773962,-0.10672819950617057,-39.54414693927937,122.38271604938275,7.055555111111109,0.003571901796710078,0.8464197530864181,88.9427160493827,80.65692659572058,640.0233306442265,6.852100757913193,5.725677777777773,140.19097088858405,3.4941599279012348,829.0416464756722,141.40740740740742,-1.8481773333333333,-0.04207526672011079,-3.285925925925925,41.93629629629631,-38.3302510535042,587.495036335109,1.0138458287267944,-1.7813666666666659,-6.372780064014635,-1.6236429748148122,-419.614302596617,409.12345679012356,0.47194977777777664,0.35907150046650693,6.396049382716049,93.0553086419753,-34.526650278863926,1924.6598273530717,0.626505208370348,2.2906111111111085,-19.00497942386832,0.6485344775308657,1004.6125335016474,69.32098765432103,-2.573504444444445,-0.4165944632939673,11.417283950617286,-63.08395061728393,2.4972219157897224,461.52052577828016,-0.5765819237663623,-0.27354444444444426,-67.89536465477825,-0.1585897530864217,594.7833554191973,171.41975308641972,0.795632444444444,-0.23828065541640228,-15.600987654320987,-7.230617283950619,-24.95143069362114,765.6457959791289,-1.9061805059113932,0.8212777777777793,-18.31734186861759,1.1917554582716068,-99.44888508392893,-86.1604938271605,11.71604355555555,0.49253994923647904,-2.144197530864198,121.53234567901237,47.822166508620406,-376.17449146206934,-2.218820026953628,9.407922222222217,190.89713763145855,7.00319499654321,-641.0193458767394,-271.2962962962963,-1.4157293333333327,-0.15402653093894936,-2.4696296296296305,-23.701728395061743,-17.311219233233093,-1260.2758410359083,-4.451220756711523,-1.6185333333333314,-17.74427907331199,-1.3172819140740692,-333.5300385192329,0.7580263166964114,0.6287324800936237,0.4436128733611175,0.35295734521274297,0.3099689303282491,0.20022354230141542,0.17900119313321003,0.11900146212513495,0.1191539140053272,0.07032271414326406,0.07364668126924812,0.034501328168958116,0.04478406004135079,0.021756482333228418,0.03132860458352382,0.01202903346862364,17.00315288558233,5.694339559808822,4.1245481518371445,2.1792056902897152,0.5050312900018901,-0.5211214522012343,4.04419100690978,0.9712537107351807,7.01409556498843,0.64421593037246,17.430702308972073,10.319762652008514,35.45253968423066,11.705705065814005,2.9545978479859354,0.52696627425567,4.007176851824632,2.234257794691668,8.007393510577062,0.2989030327685966,4.030642497667111,2.4334759273212963,24.441833603897003,13.30278451445052,0.3760353785870604,0.665830816234317,0.7819602565862153,0.8451510969147311,0.8451510969147311,0.8451510969147311,1.9674374257062937,976.1432416157481,0.0,0.0,3.0,0.0,11.0,0.0,1.0,0.0,0.0,3.3278117957276927,1.6600716534275035,0.991759788513126,0.6281036112553426,0.6281036112553426,0.6281036112553426,-156.69106216184548,1613.024407644897,66.64593949735837,35.844986836553275,80.56034744156707,,15.0,679.0,36.70379126554848,21.589042127353395,16.459531421708792,25.284372507348714,0.0,18.19910120538483,0.0,18.99525369620486,4.722094864452088,39.5396826244976,14.133333333333335,36.0,17.5,2.5,18.5,0.0,0.012643678160919495,-1.0,0.3161220043572984,0.0952826510721253,-0.22083935328517312,0.023409961685823655,0.22776146788990803,0.0,0.7525925925925921,1.0022988505747124,0.4364705882352937,0.6573099415204668,0.9788888888888887,25.565445918280528,1.1058273615395713,1.2778273615395712,33.63263782565282,7.180635651462339,6.127750549371186,59.198083743933346,13.308386200833525,0.48623853211009194,0.33018867924528295,0.09433962264150944,0.27594339622641506,0.29411764705882354,0.6157439629579398,-1.4673212960811162,-0.07490851232045566,-0.032607139912913696,-0.08631301741653626,0.3842560370420604,0.9156842782363802,0.023551030247603775,0.020348539516364013,0.03270300993701358,-7.360961696365014,0.5994883640602735,0.6130875225878132,1.6769273479932818,1.1688311688311692,0.5742600995179181,1.1151923340425045,0.5863235668608616,1.0942060006065568,0.5746798075046953,0.6751159261854388,0.59938962284357,0.8918222819618311,0.6424490591178206,0.5747134983890182,1.1647232665750502,1.0726615156994908,0.724502751399442,0.663870232667794,0.6283624624198316,0.6466204524472006,0.57985793262966,0.40808719057399223,0.6293671054800966,0.6592107699538307,0.8402588133068518,0.7664636623544963,1.1346740861282327,1.0714285714285716,0.7394257476989934,0.9577261298973363,0.8365066711274003,0.9620598400781123,0.7856814814497618,0.6775783995410677,0.8488045383711001,1.0372907969221488,0.9181621506596677,0.9076124806960286,0.7682724338130719,0.8505333951762526,0.8072484267060245,0.969271419434856,0.9086943968325447,1.045828205763721,0.8670419454137038,0.9828049710639679,0.9148418838239258,0.856813447881608,1.0757382532796735,1.0815666641685788,1.3476328451133994,0.7259056732740946,1.1561264331729018,0.7753212122894249,1.0571518030464198,1.0144892504161898,1.017010470061969,1.1743870271541852,1.0534051505256974,0.8564685076167662,0.8097257553291342,0.5803439951514106,1.177246271586191,1.3689734922611638,0.8162988510201312,0.8733330067243861,0.7997985423183523,1.075754809721055,0.6043528616204186,0.7059432804250609,0.6060045684951066,0.9908535018797953,1.021909883825271,0.3790044445169303,0.5600766085835116,0.8871851040525742,0.624684334780855,0.724787367632505,1.0183346061190885,1.0167344905829,0.45890898044578005,0.38169290499018127,0.4769958732246119,1.0894401044820432,1.266935026244857,0.8071965768383965,0.900091854996364,0.9392393320964753,0.9410382031992015,0.7935355344649628,1.2682189207150938,1.133811743628762,0.8817001244675867,0.7386992283347971,0.8994135672150777,1.152115648961292,10.0,0.1776349352106928,4.444444444444446,3.5625,2.1377777777777784,1.305555555555555,0.9959183673469387,0.5208333333333334,0.47190728143109084,0.26562500000000006,7903.573618550971,8398.964155256535,3236.2517570504474,3073.6730789512726,16.252213520728795,0.4972514471493897,8.170776828165524,0.9890658945310697,0.0,0.29411764705882354,2.164041300601982,3.8317814429021713,4.500093307816549,4.863749485074332,4.863749485074332,4.863749485074332,0.33333333333333337,0.008074315236849672,0.09876543209876545,0.07744565217391307,0.045484633569739946,0.03347578347578348,0.027664399092970516,0.013354700854700856,0.017478047460410772,0.010625000000000002,0.6657012972964671,25.26222222222222,10.08,7.0,180.9036297627011,0.0,4.272750493432937,172.90368492231917,,115.35868730995098,132.65975285710647,135.2559372398509,115.06385685301267,190.32761661756007,133.03617083003638,132.7062832476333,168.3711571681185,0.06688236690989165,-0.05167153981354521,-0.49950258987685897,0.12840716595657303,0.1170732587706515,-0.13540735317096117,0.0608483858678731,-0.11234097079622038,-0.030922648880759813,-0.14662280074670325,-0.012398192892219391,-0.017609403970436633,0.07788046962402424,0.32077784196253745,0.002057191066403035,0.012807675638515667,0.21030632428759025,0.3582884473498239,0.08813520892429116,0.24706820395186666,0.2793208544856679,0.43983620354647723,0.23634843180024417,0.21496588022548394,0.07405194885799403,-0.06914689301837039,-0.01994150149618237,-0.040916469893742625,0.08159957105959045,-0.1401162990807372,0.0665753859391788,0.03008298274463647,-0.07151310549484426,-0.016453402392709895,-0.09037667143985913,-0.08953633774776752,0.18364196162576252,0.015134846735815827,0.14586971169862023,0.06826614943498062,0.15520016120955482,-0.10818191131243865,0.18694621773000028,0.015934075552830045,0.07882008336718255,-0.042057882447136194,0.03094226376948747,0.18373878763418444,0.03668400146344015,-0.09729747759198208,-0.19952260168743574,0.14366494749269876,-0.12404073032344093,0.00922468955235581,0.052850383073059705,-0.017288512429529643,-0.011097057672786665,-0.17713914398123914,-0.008920486806205843,0.12824944026052698,0.11805206023588302,0.039146225054784115,-0.14851425351235975,-0.25547055684041997,-0.018502122483157874,-0.11994739475468136,0.11410003200064162,-0.0743808903519082,0.04335815176661233,-0.06219244240320025,0.08723712151581242,-0.02790598365538288,-0.05218739905002332,0.5069943847517828,0.27000112870782905,-0.030881495284562112,0.27351605548940733,0.20219452043410735,-0.049305114792832484,-0.07614899811192863,0.4368367581524753,0.5700583951872958,0.4508739710026276,-0.15820249239873546,-0.1623678890622783,-0.06053425594078869,-0.08342927293612516,-0.03514504975543939,-0.05270717843745335,-0.07232136214292208,-0.16321762313857968,-0.15094546039876916,-0.07425845539476443,-0.05235728221396366,-0.08379854550264894,-0.08133471412904181,4.7024486748801975,13.367576576279973,6.151025365746489,31.966270955865173,47.64281144457304,52.31777872277412,56.32394637193932,56.32394637193932,56.32394637193932,56.91473499233098,34.75849604286342,4.012992293651205,5.511442398910222,10.391022623405089,22.15623894946756,10449.719712986367,9369.216713783948,2368.0998048937545,79.0,45.0,52.0,66.0,75.0,82.0,94.0,74.0,77.0,489.98993107200045,30.0,5.017279836814924,5.84354441703136,6.75343791859778,7.604396348796338,8.516192691082654,9.380504998499505,10.29312811029732,11.166186707513063,12.079244450479303,0.9259259259259257,1.045066666666667,1.145526689144852,0.9097793866733276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7288847371922823,1.0366013071895424,1.0592053087318933,0.6976496279711423,5.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,3.0,3.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,9.636772684650527,17.251877273314598,0.0,0.0,10.023291153407584,4.722094864452088,8.417796984328938,13.171245143024459,0.0,34.802819670697545,38.36081223920082,12.611123474374185,26.318737707604537,416.7888031045047,-993.210041111152,-50.70456402430762,-22.07133424691449,-58.42412006536189,260.09774094265924,619.814366533745,15.94137547305074,13.773652589638782,22.13622737620518,0.4666666666666667,0.8901186880641347,0.20588067547120698,22.397101499170716,0.17457599769325458,0.27063743549423963,0.10988131193586526,8.0,0.23333333333333334,0.3940457369568494,0.6977210379977269,0.819412542339135,0.8856299321489284,0.8856299321489284,0.8856299321489284,5.406800000000003,,4.601890756302521,2.7244432269662675,2.339093551616349,4.745077017279376,-9.151887639551951,2.767162490013865,2.6672190090262173,-3.0681669221787606,107.77350000000003,26.32590508115345,0.0,4.899909730850478,0.0,11.071781992961249,31.96907720023196,50.96318677522902,0.0,5.749511833283905,4.110873864173311,0.0,5.484796933490655,0.0,7.029087564149662,0.0,8.660254034256889,0.0,10.340806561758198,41.66666666666666,5.130638548961059,0.0,0.0,0.0,0.0,0.0,-2.5761259309745235,0.0,47.02800000000001,0.0,25.324177042794467,0.0,0.0,-4.388584118060803,0.0,0.0,0.0,51.54870101151834,9.458957818252138,18.858631417708022,5.749511833283905,40.56468905095929,16.199589670851058,0.0,5.563451491696996,35.227318817825825,15.067899941223978,0.0,0.0,40.94007240029974,32.7998131736527,33.63478000656118,345.8073698446384,,231.00550545183827,265.1316130778704,270.3505576830386,230.39648561659982,384.38605103669084,265.881502867658,265.2286203567131,337.8003029300918,33.63478000656118,345.8073698446384,,227.03835824812927,262.59506248724676,268.1727809280855,226.30590198101407,389.807120874672,263.3051791700589,262.7453474862404,339.8104812584158,4.9507846973423,258.52242959773383,,170.8224278379726,199.35042591500928,203.15613558175903,170.5363614666749,280.6412474306348,199.88173972109044,198.98268608464463,251.4231340858508,1.1598200002262475,11.92439206360822,,7.965707084546147,9.142469416478288,9.322433023553055,7.944706400572407,13.254691415058305,9.168327685091656,9.145814495059073,11.6482863079342,2.4753923486711504,172.90368492231917,,115.35868730995098,132.65975285710647,135.2559372398509,115.06385685301267,190.32761661756007,133.03617083003638,132.7062832476333,168.3711571681185,46.647058823529406,0.0,3.708456049160137,17.62988357461072,38.53535341794572,0.0,0.0,47.664238892935195,0.905295349297337,2.214251700680272,5.523549812325365,0.0,0.0,1.8839998593588407,-4.724228639431927,0.0,0.0,31.3942332587014,602.5093625555277,97.3818585270892,172.4301649305977,202.5041988517447,218.86872682834493,218.86872682834493,218.86872682834493,703.0,135.65391547911224,74.37718149163621,64.62581895782871,67.02,58.64,0.875,8.174104111692719,5.906890595608519,4.277758782407379,5.292314893942727,,5.251718868649292,5.284944121696631,5.28542372902282,5.252153691654896,5.217359449181454,5.282774335601045,5.279629059951135,5.256968060014785,0.14750892353128894,0.18249361703250783,,0.18109375409135492,0.18223945247229761,0.1822559906559593,0.18110874798809987,0.1799089465234984,0.182164632262105,0.1820561744810736,0.181274760690165,2.5181399604638917,2.7309664852433255,,2.7232661635633595,2.7295727832590435,2.7296635288855517,2.723348956457762,2.7167021582531308,2.7291621390627876,2.7285665784455513,2.7242651831055156,298.79000000000053,710.4837055913546,176.43488183822086,,178.64811194907546,176.48424792518333,176.54857533316482,178.53631201512633,183.47417978628988,176.57599907724006,176.8762441425483,179.45132970476874,24.499438123839813,6.083961442697271,,6.160279722381913,6.085663721558046,6.087881908040166,6.156424552245736,6.3266958546996515,6.0888275543875885,6.099180832501665,6.187976886371336,7.630656750545778,6.237662603863637,,6.250128752970935,6.237942362500226,6.238306789853466,6.2495027461794885,6.276784684975028,6.2384621103613975,6.240161039386666,6.254614764448638,71.59733197374584,1.2162771547913491,-1.0557509404554237,-1.0872169987360178,0.23456471278441038,5.130638548961059,-4.724228639431927,0.905295349297337,-0.6801280689006659,370.96564364674913,282.11873253096206,-672.2905122406693,-34.321237109831735,-14.939789160903759,-39.546500720039376,176.05666098115114,419.5440045138088,10.790502551311539,9.323200100306863,14.983714446921741,2408.0,46.0,4.143210715147741,1.7741678244699057,0.4927992798267444,0.06452976748688385,0.9192544039308236,0.3627515727931185,0.2123789490413836,0.017257336136629376,0.0,0.0,0.0,0.0,0.0,0.0,0.12359693729953272,0.04488959454956774,0.3309330932755814,0.1323040383509076,21.98276318419593,18.233241922715088,13.308386200833525,10.58872035638229,13.948601864771211,9.010059403563695,9.308062042926922,6.188076030507017,7.864158324351595,4.641299133455428,5.523501095193609,2.5875996126718586,3.672292923390765,1.7840315513247302,2.9448888308512395,1.1307291460506221,6.089566015374365,3.126571017745879,9.758497144285702,4.747237006663196,13.952970489183327,5.760912587087058,93.91727007694837,57.62883869175677,46.534138520933006,38.32394712605079,38.32394712605079,38.32394712605079,150.0,172.0,54.77568799999998,31.592311999999993,0.3111111111111111,88.12,13.26388888888889,6.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,45.0,0.0,1.0,46.0,12.0,2.0,8.0,38.0,14.0,30.0,32.0,0.0,0.0,0.0,17.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,4.0,1.0,0.0,29.0,12.0,0.0,2.0,3.0,0.0,2.0,7.0,1.0,0.0,6.0,0.0,2.0,3.6635616461296463,6.6575696776220346,4.31748811353631,4.757891273005756,5.31566600488265,5.7430031878094825,5.9928698092644455,6.2994661169320585,6.202598774296461,6.335663551652616 +3957,CCOC(=O)N1CCC(=C2c3ccc(Cl)cc3CCc3cccnc32)CC1,0,26.6,6.003573999999999,3.34,6.672098765432099,160.08247911159253,107.16421468,1.60081409623054,6.13022,3.3006614845297975,7.591967059999998,229.11357638363643,25.471698113207548,6.216037735849056,4.056603773584905,6.624737945492662,143.5630395428434,97.1977710754717,1.90607621,6.390877358490566,2.766635608354686,7.651962150943396,273.7364798680171,21.378947368421052,6.150894736842106,3.663157894736842,5.2596491228070175,152.58699722817042,80.10685351578947,1.6414701650577892,6.283266315789474,2.7092917478882392,7.654501431578947,228.17176410456565,18.703125,5.9680625,3.4375,4.011284722222222,154.17885036344973,68.8145131796875,1.5341107876549138,6.1058281249999995,2.366865997942387,7.530416125,208.60640850932313,17.751824817518248,6.077598540145984,3.204379562043796,3.333333333333333,154.60704724335457,63.93453542335765,1.477200652320336,6.1989379562043805,2.6483884533357362,7.632961693430658,199.70998139290998,16.554794520547944,6.025150684931507,2.993150684931507,2.9155251141552507,156.45440199544566,58.716422849315066,1.451217440468719,6.145027397260274,2.5072862055358254,7.599266602739726,192.71832959722778,14.422077922077921,5.758934415584416,2.5779220779220777,2.274891774891775,155.18734789239,49.87020194805194,1.3815878764089613,5.893877272727272,2.0820907487574156,7.357787649350649,172.461764907944,11.286585365853659,5.5293420731707315,2.1463414634146343,1.9654471544715446,164.22222015107127,39.10584426219512,1.0672913410700424,5.623782926829269,1.8403718759409817,7.212635439024392,126.20348997387725,14.036697247706423,5.73919266055046,2.18348623853211,2.924566768603466,171.50797327449587,50.70464736697248,1.028514974834835,5.842107339449542,2.21695548759769,7.493748293577982,126.97848751855071,10.2784,0.09186803999999996,0.013626243424741325,0.5844,3.5901234567901237,1.4420462146833541,48.522926462399994,0.2524175551356916,0.09631903999999995,0.8870499009297361,0.06254081959999999,52.72977015506849,0.402354716981132,0.003774035471698117,-0.009204120577205138,0.23484528301886798,1.3006568832983927,-0.20589245371949694,1.8920758062792413,-0.01009540282029153,0.004663752452830193,0.011055427008653213,8.606190943395834e-05,0.14919715226520439,0.5750736842105265,0.018212907368421058,0.0026359826244609507,0.058336842105263215,0.44059779077322936,0.1956418802444144,2.710292357389472,0.029381732298279794,0.01499893894736843,0.13741485492423328,0.013242119978947366,3.648932232177225,0.08503750000000003,-0.0035090868749999976,0.0001217005641545676,-0.018931249999999983,-0.23222222222222222,0.08755779340196146,0.49660183228749843,0.015553508742465603,-0.0031388837500000025,-0.012350445816186561,-0.0038360902249999994,3.819725735069635,-1.2839474452554744,-0.01914938306569342,-0.00046346696307364817,-0.12264817518248174,-1.2134558889790032,-0.0951357032366439,-6.02932444780146,-0.013137172914276843,-0.019756003503649616,-0.1642707936857587,-0.011040333176642334,-5.481320431981037,-1.7956602739726033,-0.02596442356164382,-0.0010011857698607074,-0.09535890410958901,-1.1222526636225267,0.09000730561570945,-8.386746814728767,0.0007861118174499125,-0.027360683835616413,-0.19438274987316084,-0.013979581243835611,-4.329898739628212,-1.6287896103896105,-0.003079403636363634,1.5905500169637913e-05,-0.05608831168831168,-0.15932659932659932,-0.3204155780176692,-7.901379548633764,-0.06666902409089172,-0.005859585454545443,-0.024426567853728345,0.00010676078961039415,-15.151868511265034,2.259648780487805,0.01865699658536583,-0.0003149849803000735,0.09401463414634142,1.0105962059620597,-0.21572257862966138,10.585013962721957,0.004371103015208131,0.02258581365853655,0.08379468700859848,0.010436175521951219,3.8946768274095094,2.930774311926605,0.026799042568807312,0.0017897135432905964,0.08092110091743117,1.4807520670517618,0.4461476350815414,14.095484989343118,0.08198493518578358,0.028047418715596278,0.26280527610330157,0.008745327188990817,21.800158698266753,,,0.48818342151675487,1.1944444444444444,0.5555555555555556,0.018518518518518517,0.6388888888888888,-0.08333333333333333,0.9598909045550892,0.009080683954706544,0.021821424695447282,0.8554726920599371,0.22508438219341323,0.2626576583842171,1.8153635966150263,0.4877420405776303,2.070671165806917,1.709747434948719,0.15844622672489056,0.1366960017627751,0.06578150237053233,0.360923730858198,7.642896113120013,1330.0,300.17869999999994,167.0,333.60493827160496,8004.123955579627,5358.210734,80.040704811527,306.51099999999997,165.03307422648987,379.5983529999999,11455.678819181821,1350.0,329.45,215.0,351.1111111111111,7608.8410957707,5151.481867,101.02203913,338.7165,146.63168724279836,405.553994,14508.033433004908,2031.0,584.335,348.0,499.6666666666667,14495.76473667619,7610.151083999999,155.93966568048998,596.9103,257.38271604938274,727.1776359999999,21676.317589933737,2394.0,763.912,440.0,513.4444444444445,19734.892846521565,8808.257687,196.36618081982897,781.5459999999999,302.95884773662556,963.893264,26701.62028919336,2432.0,832.6309999999999,439.0,456.66666666666663,21181.165472339577,8759.031352999998,202.37648936788602,849.2545000000001,362.8292181069959,1045.715752,27360.26745082867,2417.0,879.672,437.0,425.66666666666663,22842.342691335067,8572.597736,211.877746308433,897.174,366.0637860082305,1109.492924,28136.876121195255,2221.0,886.8759,397.0,350.3333333333333,23898.85157542806,7680.011099999999,212.76453296698003,907.6570999999999,320.64197530864203,1133.0992979999999,26559.111795823377,1851.0,906.8121,352.0,322.3333333333333,26932.444104775688,6413.358459,175.03577993548697,922.3004000000001,301.820987654321,1182.8722120000002,20697.37235571587,1530.0,625.5720000000001,238.0,318.7777777777778,18694.36908692005,5526.806563,112.10813225699701,636.7897,241.64814814814818,816.818564,13840.655139522027,513.92,4.5934019999999975,0.6813121712370662,29.220000000000002,179.50617283950618,72.1023107341677,2426.1463231199996,12.62087775678458,4.815951999999998,44.35249504648681,3.1270409799999994,2636.4885077534245,21.324799999999996,0.2000238800000002,-0.48781839059187226,12.446800000000003,68.93481481481481,-10.912300047133337,100.28001773279979,-0.5350563494754511,0.2471788800000002,0.5859376314586203,0.004561281199999792,7.907449070055833,54.63200000000002,1.7302262000000006,0.2504183493237903,5.542000000000005,41.85679012345679,18.58597862321937,257.47777395199984,2.7912645683365804,1.424899200000001,13.054411217802162,1.2580013979999998,346.64856205683634,10.884800000000004,-0.4491631199999997,0.015577672211784653,-2.423199999999998,-29.724444444444444,11.207397555451067,63.5650345327998,1.9908491190355972,-0.4017771200000003,-1.5808570644718798,-0.4910195487999999,488.9248940889133,-175.9008,-2.6234654799999984,-0.0634949739410898,-16.802799999999998,-166.24345679012345,-13.033591343420214,-826.0174493488,-1.7997926892559275,-2.7065724799999975,-22.50509873494894,-1.5125256451999998,-750.9408991814021,-262.16640000000007,-3.7908058399999973,-0.1461731223996633,-13.922399999999996,-163.8488888888889,13.14106661989358,-1224.4650349504,0.11477232534768722,-3.994659839999996,-28.379881481481483,-2.041018861599999,-632.165215985719,-250.83360000000002,-0.4742281599999997,0.0024494470261242386,-8.637599999999999,-24.536296296296296,-49.34399901472106,-1216.8124504895995,-10.267029709997324,-0.9023761599999982,-3.7616914494741653,0.016441161600000698,-2333.387750734815,370.5824,3.059747439999996,-0.05165753676921206,15.418399999999995,165.73777777777778,-35.37850289526447,1735.9422898864009,0.7168608944941335,3.7040734399999944,13.74232866941015,1.7115327856,638.7269996951595,319.45439999999996,2.921095639999997,0.195078776218675,8.820399999999998,161.40197530864202,48.63009222388801,1536.4078638383999,8.93635793525041,3.057168639999994,28.645775095259868,0.953240663599999,2376.217298111076,0.6963983015001795,0.6021728249777376,0.43896783651986737,0.33054780561290065,0.2772873627051209,0.17651331325459263,0.17375679322548537,0.0967247941083046,0.1100893197256032,0.05382189284520223,0.06916068463923582,0.03059111115168006,0.04364977660603812,0.01696050785848998,0.028070371664837945,0.009389954898367359,17.001103294838394,5.6767424933797095,3.5556449658664167,2.175014954340828,0.49604574149472047,-0.479341398609806,3.278867119501947,0.9779547895471018,6.028213963140644,0.7739988483266173,14.548159524506302,10.937140438584006,35.45051750138643,11.688109001357802,2.207895905071402,0.7404822904048148,3.501872673125562,2.225296777414192,7.008272951365361,1.3040735052863262,3.714606712176424,2.421308189274695,22.45586679232425,14.70145706149628,0.25643822870986516,0.5786347158622492,0.7615521263497245,0.8344254951889415,0.8479145430841017,0.8479145430841017,1.4859291940727395,896.9358326942499,0.0,1.0,4.0,0.0,7.0,4.0,5.0,0.0,0.0,4.122988411986636,2.2121256756003906,1.1272905595320042,0.695097750043268,0.615097750043267,0.615097750043267,189.91887669531513,1091.8145539525185,43.25833609454813,21.83629107905037,42.88614829270056,,13.0,591.0,0.0,4.794537184071822,6.093240070938415,19.696394776338067,36.39984780029383,27.83656353522952,4.899909730850478,25.25331490822692,18.19910120538483,21.321781364979774,13.180952380952382,32.25,15.0,0.5,17.25,0.0,0.011816578483245108,-2.25,0.13238095238095238,0.053493087557603625,-0.07888786482334875,0.0,0.11265305235715806,0.0,0.5763809523809525,0.8118165784832448,0.4440000000000002,0.5228878648233489,0.8118165784832448,25.91705442298741,0.24517846677707666,0.5891784667770766,23.097762685618303,6.077278319222157,7.091756776373862,49.01481710860571,13.16903509559602,0.6013469476428419,0.11741329479768783,0.0,0.3338150289017341,0.36363636363636365,0.34464528209454787,-0.6156126371964813,-0.03573547506424274,-0.012312252743929627,-0.03240066511560428,0.6553547179054523,1.1706083534265614,0.035035653303467765,0.023412167068531223,0.037761559787953584,-6.191564524121873,0.6413339422918771,0.6846707352259397,1.7189636602250056,0.6644453914997481,0.4979990137811113,1.2753193440247326,0.6481096385735186,0.9996455818717718,0.6494799264908363,0.5494134902445144,0.6731821589729239,0.9483468225560869,0.7181027561119486,0.7644986164250831,0.9324743711494884,1.0944198278035953,0.9135575182798813,0.9580176959662237,0.7223211099754718,0.8231196504286775,0.7534499819284786,0.5081086526191412,0.679206001323334,0.874574579267722,0.8592275427109278,0.8807125518025636,1.1225049422163051,1.2773517710472277,1.0881853400103165,0.9703204288998637,0.8603239112134845,0.911738036304475,0.8747424347512185,0.6893792499995791,0.8742458631370414,0.9043175439330706,0.9377968453154686,1.3226695420318162,1.1829638140210477,1.370923824797534,1.438061125111698,1.0948913142298986,0.9397013040746081,0.9969412979435194,1.246230168309993,1.5782024620879016,1.2514789468971859,1.0501445734760515,1.0341077018543476,1.334164996746107,0.8892519766265524,1.1830422022821674,1.3443700420191818,0.9747550694903252,1.0342283523125102,0.9442779915876351,1.2868607471671427,1.444058478810063,1.2304359515734957,1.032659086779067,1.030227555756821,0.5878021047660019,0.4897174433420641,0.8493559828262085,0.7731446167312743,1.2253309115093534,1.0398072757703412,1.2462192760513386,0.6818315842471395,0.4047025856511373,0.5031924563451617,1.290547271505358,0.6822441283449261,0.45484746514621643,0.6009322618005357,0.6390753075908582,0.5340855335994901,1.0534039577047258,0.6900267566421238,0.9574909773840299,0.4847755527220633,0.3915263386314659,0.40463061804525635,0.9578047093405612,1.128401807442275,0.8462977505161782,1.11211248183769,0.9000056515268541,0.6760278510404705,0.5812649141223428,1.1129686404176917,0.7028876559341208,0.9214941427225665,0.6548824406056359,1.0903535589315783,0.5969308690682225,4.5,0.11896949290888686,3.333333333333335,2.0625,1.792777777777778,0.718888888888889,0.6565532879818594,0.5294784580498866,0.2839506172839506,0.16500771604938275,5469.584337625637,6151.79099017806,2585.0561275886485,2356.4480347888866,13.094192310379617,0.4320711288554044,7.43656985738414,0.7607838777145006,1.0,0.36363636363636365,1.5208677777880881,3.4317305141743337,4.51656563024272,4.948758439731456,5.028758439731457,5.028758439731457,0.15,0.007931299527259125,0.07936507936507939,0.042091836734693876,0.03814420803782505,0.0156280193236715,0.017744683458969172,0.019610313261106908,0.012345679012345678,0.007857510288065845,0.39071862900901655,20.28,9.212018140589569,4.451843043995244,164.35941045226315,1.0,4.235719183303096,136.96408315610228,,109.00610335564235,108.6768332090343,109.08296193671461,108.99394781731836,143.49288421905277,109.45062862154043,110.06408749273858,129.76406691619016,0.03914565661787166,0.04108104920599285,-0.6754701417188183,0.40185708935466796,0.3622875087591809,-0.14277798563113805,0.03899343968351528,-0.03999485223943543,0.04841983945054057,0.012463139894458904,0.0013760918066695494,0.0028294671459109947,0.05594972799370783,0.19825074496441927,0.19344896038439818,0.09982348067293499,0.122724969231883,0.1356696326735781,0.05585591296703126,0.11640130292239426,0.1557214331389561,0.15491220367671063,0.21173563224213596,0.06920060947442765,0.00827341804171856,-0.038197036477538866,0.00893133641907457,-0.03239433607118409,-0.06468363136176065,0.060717744348566166,0.010234375139601504,0.061618173641308484,-0.032588403601198725,-0.013923056417955508,-0.0613373833207648,0.07243964318138556,-0.12491705374917056,-0.20844444994900763,-0.03401281986729563,-0.2098702518522959,-0.33799837347764533,-0.06597271451354553,-0.12425723029037691,-0.052045401149752514,-0.20511005408328015,-0.18518777073711742,-0.1765300366585272,-0.10395115351084384,-0.17470231494907804,-0.2826273812050832,-0.0734748190424107,-0.163174031672808,-0.31259444894575195,0.06241638076451894,-0.17284091101198495,0.003114331002165535,-0.2840630869620008,-0.2191339513926151,-0.22352731117447033,-0.0821148798277478,-0.15846723326486717,-0.03351985779128014,0.0011672696335923455,-0.09597589269047173,-0.044379142178316865,-0.22219508276163422,-0.1628380669652412,-0.26412197858050157,-0.06083517292682159,-0.02753685878114222,0.0017070577311461101,-0.2873494131817035,0.2198444096832002,0.20308473529386106,-0.02311605410836502,0.16087377506218584,0.28149344113798774,-0.14959477472573926,0.21814459131858413,0.0173169533032612,0.2344896051552898,0.09446445675803745,0.16686982340012732,0.07386106208989696,0.2851391570601071,0.29171235795176786,0.1313431359989499,0.13846868740149068,0.41245157300960356,0.30938511577418965,0.2904912382039775,0.32479886409529285,0.29119288061422016,0.2962688748714697,0.13983390759706033,0.4134317034600477,17.84942878979721,30.323524549657773,9.716899802856878,16.354527003957035,35.354154643370926,40.762965923172416,41.63873627513706,41.719376275137066,41.719376275137066,55.90812147678676,46.16318074361541,4.278048121572045,3.690792047594928,1.776100564004373,9.744940733171346,6829.687876793072,5047.437771552942,2158.5145585381015,209.0,42.0,58.0,79.0,107.0,125.0,151.0,180.0,200.0,382.14480565600064,30.0,4.976733742420574,5.84354441703136,6.734591659972948,7.624130585661289,8.524962928680598,9.42424134192346,10.329898425159755,11.234229562348085,12.142616205398392,0.6733333333333333,0.9725600000000001,1.118554068719306,0.6375622346182666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6953322035928144,0.963294117647059,0.9992643845593591,0.6453480195399961,6.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,7.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,9.636772684650527,0.0,0.0,0.0,0.0,4.9839785209472085,4.794537184071822,0.0,0.0,29.306778557225,67.49647937187048,29.88209422724882,12.300809959361379,210.6619152485983,-376.28873494189867,-21.843048521078224,-7.525774698837974,-19.80467026009993,400.5807919439134,715.5258190106199,21.4152875734699,14.310516380212393,23.081478032600632,0.46153846153846156,0.9241815909469258,0.251765801241867,48.4519175247907,0.22912153571967095,25.363641267662864,0.07581840905307405,7.0,0.03333333333333333,0.2694731627895703,0.6080471221771708,0.8002623522593689,0.8768399252797026,0.8910146308905474,0.8910146308905474,4.887800000000005,,1.4327731092436975,1.0593718501661549,0.9284284552673375,1.4447162824396187,-2.9670072109134997,1.0328482562012924,0.987299759323917,-1.3533495828652995,106.94800000000004,9.53140013787187,0.0,9.883888251797686,0.0,32.60702369139466,19.696394776338067,69.50869922767117,0.0,0.0,4.110873864173311,0.0,5.43372200355424,0.0,6.963189985870238,2.70805020110221,8.587651655064798,5.37989735354046,10.262245325878965,33.666666666666664,12.215100814166771,4.744679806725261,0.0,0.0,0.0,0.0,5.638615390100295,0.0,48.62800000000001,0.0,12.030945661347896,0.0,0.0,0.0,0.0,0.0,2.381824020152394,55.9277034359653,0.0,4.794537184071822,0.0,35.67352309907417,17.578506199652068,0.0,42.14966291548208,42.1017834439904,5.022633313741326,5.573104530069267,0.0,31.87811173091333,34.76661017964072,35.68056722780028,273.92816631220455,,217.90607536985925,217.2826339926774,218.15456589652547,217.88087961371525,287.6451033738641,218.82474996484373,220.05504166997167,259.82887818412814,35.68056722780028,273.92816631220455,,216.66742400369998,216.43236421057242,217.43245487576195,216.63081518361255,289.9527756490191,217.97639765645943,219.22617656792767,260.8814834152457,4.9342603578469735,197.11919383472994,,158.67019576548117,157.52689508253974,157.90029722857304,158.66762367869356,212.55192798080213,158.783390804977,159.7506405002379,190.378131178777,1.321502489918529,10.14548764119276,,8.070595384068861,8.047504962691756,8.079798736908351,8.06966220791538,10.653522347180152,8.104620369068286,8.15018672851747,9.623291784597338,2.492525060690208,136.96408315610228,,109.00610335564235,108.6768332090343,109.08296193671461,108.99394781731836,143.49288421905277,109.45062862154043,110.06408749273858,129.76406691619016,48.16470588235295,0.0,1.8387338690860864,6.26865352259176,0.0,0.0,0.0,49.963219227967954,5.376233992429382,0.0,5.151673566299287,0.0,0.0,1.7979838015453093,0.0,0.0,0.0,32.2674009769998,564.8992575878813,76.04338888940441,171.5865257087167,225.82828151213602,247.4379219865728,251.43792198657286,251.43792198657286,1208.0,133.83494886859646,46.34344960463021,70.44563038918422,42.43,42.43,0.8571428571428571,8.869615668922535,5.906890595608519,4.424522080536155,5.100981598138193,,5.107458699453696,5.105930633793544,5.102007006928098,5.107492579819294,5.045809107160886,5.10517124849177,5.104620959260666,5.07256826209689,0.16387118816800575,0.18892524437548863,,0.18916513701680357,0.18910854199235347,0.18896322247881844,0.18916639184515902,0.1868818187837365,0.1890804166108063,0.18906003552817283,0.18787289859618111,2.480414041238672,2.6226847644437217,,2.6239537344324466,2.6236545065029717,2.622885766097854,2.6239603679179466,2.611809791986582,2.623505769312426,2.6233979729497894,2.6170990229262596,286.94000000000057,317.34488851562105,169.53841071140357,,168.30542327587588,168.6471674117101,168.9722818882169,168.29526782446567,173.43074305392975,168.69572433239065,168.7435218665624,171.47662877552753,11.753514389467446,6.279200396718651,,6.23353419540281,6.246191385618892,6.258232662526552,6.233158067572803,6.42336085384925,6.247989790088543,6.24976006913194,6.350986250945464,6.75324093186015,6.126331286024885,,6.11903209754928,6.121060538715525,6.122986461986079,6.11897175631005,6.149030117223784,6.121348417441914,6.121631713087159,6.137698754968592,5.151673566299287,18.573609269618466,0.7723571118425572,7.4627827754022755,0.0,10.346003663666602,5.2526315353539985,3.6167329996694964,0.0,351.535669628028,128.76555937891266,-230.00374503193157,-13.35140411136124,-4.600074900638632,-12.105460264838502,244.85208771711788,437.3599386781904,13.089938351713894,8.747198773563804,14.108385118651297,1772.0,49.0,1.5743206997440153,0.8577480633227291,0.0,0.0,0.4002112915665707,0.13418607636286914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2347080484106438,0.10147453479932592,0.3907757615936299,0.15381521432015827,18.802754140504845,16.258666274398916,13.169035095596021,9.916434168387019,11.646069233615078,7.41355915669289,10.077894007078152,5.610038058281667,8.697056258322652,4.2519295347709765,7.400193256398232,3.2732488932297668,5.456222075754765,2.1200634823112474,4.23862612139053,1.4178831896534712,4.0312836949317825,1.8761966640827998,6.770220944508615,2.809581623128359,11.161942213775937,4.1421102422026,88.13563061664826,44.89356211069369,30.25470205012167,27.231530174653702,26.808513184289747,26.808513184289747,144.0,172.0,58.06023899999999,29.037760999999996,0.42,198.05,7.75,5.999999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,12.0,12.0,50.0,0.0,0.0,53.0,12.0,2.0,8.0,45.0,14.0,30.0,39.0,0.0,0.0,0.0,22.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,3.0,0.0,2.0,27.0,5.0,0.0,2.0,2.0,0.0,4.0,1.0,0.0,0.0,1.0,1.0,2.0,3.6635616461296463,7.683712967934256,4.23410650459726,4.804021044733257,5.374120329963537,5.934232601152849,6.2373475853916815,6.652217659856923,7.064865859691909,7.403822531772582 +216326,Nc1cccc2c1CN(C1CCC(=O)NC1=O)C2=O,0,25.625,6.537334375,3.65625,9.4375,163.8228172288355,101.41045484375,1.4873524925949062,6.583690624999999,6.982638888888888,8.000837375,227.77885159067188,26.735294117647058,6.545941176470588,4.4411764705882355,8.5,149.63709070743826,102.36817438235293,1.8189023529411765,6.677117647058823,3.538398692810458,7.918383882352941,274.25642065937666,23.616666666666667,6.44595,4.083333333333333,7.066666666666666,153.66448331882827,89.33263298333333,1.6208127223232665,6.551521666666665,3.491203703703704,7.862785799999999,237.89786244041045,19.666666666666668,6.424554320987653,3.3209876543209877,5.308641975308642,158.86694109993263,72.04845377777777,1.3770040280097777,6.502033333333334,3.6117969821673523,7.9129875555555556,198.97614772874527,17.476190476190474,6.472451190476191,2.8214285714285716,4.630952380952381,163.57246618211775,62.37195751190476,1.2148544873391667,6.523526190476192,4.152116402116403,7.995443190476191,173.2800381755298,15.693333333333333,6.37104,2.6,4.36,166.62646129020644,55.55790337333332,1.1224658612744534,6.405405333333334,4.3318518518518525,7.935192693333334,156.20049468942844,16.036363636363635,6.193527272727273,2.709090909090909,4.181818181818182,160.74539477859892,57.310630781818176,1.2265383339879816,6.262254545454546,3.5494949494949495,7.762509890909091,170.936831340109,17.68888888888889,6.496597777777778,2.3333333333333335,4.888888888888889,163.85452679612098,63.412398088888885,1.1642023150465333,6.539662222222223,5.269135802469137,8.013996444444446,165.12482746729387,9.68421052631579,6.03928947368421,1.8157894736842106,2.0526315789473686,172.80528715729838,30.23132444736842,0.9080680896668157,6.061552631578947,3.149122807017544,7.682978631578948,113.53539222117182,7.5625,0.16013115234374994,0.027547655327434032,0.7021484375,4.375,1.562901934722365,35.76754446777343,0.21579257461885057,0.14637021484374993,2.9408637152777777,0.10157580859374996,46.42317912624445,0.04779411764705882,-0.017596685431985285,-0.017981835027159762,0.21696920955882354,1.0551470588235294,-0.049908722395547285,0.33787997432215017,0.013203377252268004,-0.014014792049632352,-0.15598830678104567,-0.010946569623161763,3.318214961567595,0.525,0.024869472656249985,0.004420457756857178,-0.0380859375,0.24166666666666667,-0.06067581705422895,2.3747300025390627,-0.0038849748060010886,0.021699628906249997,0.16703559027777787,0.015496218489583328,-0.34014693052409606,-0.6257716049382716,-0.012488675491898145,0.0005621570378198564,-0.13308979552469136,-0.6566358024691358,-0.1306371620165469,-2.9818038381438075,-0.02553395031474873,-0.011265662374614193,-0.3177712941529492,-0.008580682050540122,-4.848800449492518,-1.244047619047619,-0.02222415829613094,-0.0035244080400692523,-0.07640438988095238,-0.6994047619047619,-0.16572540486769402,-5.896179781389508,-0.030105452011220744,-0.020794061569940465,-0.21874483300264552,-0.012342893415178571,-7.168570028611403,-0.07416666666666667,0.006863180989583334,0.0037688387036373264,-0.0146484375,-0.1175,0.18217287889401762,-0.3495319840234371,0.016828939801096485,0.004556993489583339,0.14878906249999996,0.006115743072916666,1.4058657409521143,-0.05568181818181818,-0.016804447798295454,-0.005140585514913286,-0.08680752840909091,-0.32840909090909093,-0.19719707985726934,-0.1842232825461653,-0.006170363234151722,-0.013579646661931823,-0.4199356849747475,-0.013093313139204539,-0.06665910102723661,-0.5152777777777777,0.021082736545138883,0.008033856528696289,-0.05978732638888889,0.10138888888888889,-0.25905069187628704,-2.687860698328992,-0.05433927696933392,0.017028882378472228,0.5097535686728395,0.01459297473958333,-10.683421961093693,-0.8848684210526315,-0.034627040501644724,-0.010825956187118747,0.11117393092105263,0.06907894736842106,0.18718403872970937,-4.036603170076068,0.01305926809219051,-0.030827122738486843,-0.44515830592105254,-0.02022770990953946,1.1746245988623591,,,0.4578947368421053,1.25,0.5789473684210527,0.02631578947368421,0.6710526315789473,-0.09210526315789473,0.7073145454060805,0.01783295588966778,0.03141190325808883,0.8987554086076082,0.24967843709320794,0.22797353135255036,1.6060699540136887,0.4776519684457583,2.041340591684539,1.443798194708231,0.3168177570514667,0.2807246399248413,0.0,0.5975423969763081,8.096740352375003,820.0,209.1947,117.0,302.0,5242.330151322736,3245.134555,47.595279763037,210.67809999999997,223.44444444444443,256.026796,7288.9232509015,909.0,222.562,151.0,289.0,5087.661084052901,3480.5179289999996,61.84268,227.022,120.30555555555557,269.225052,9324.718302418807,1417.0,386.757,245.0,424.0,9219.868999129696,5359.957979,97.24876333939599,393.09129999999993,209.47222222222223,471.76714799999996,14273.871746424627,1593.0,520.3888999999999,269.0,430.0,12868.222229094543,5835.9247559999985,111.537326268792,526.6647,292.55555555555554,640.951992,16117.067966028368,1468.0,543.6859000000001,237.0,389.0,13740.087159297891,5239.244431,102.04777693649,547.9762000000001,348.7777777777778,671.6172280000001,14555.523206744503,1177.0,477.828,195.0,327.0,12496.984596765484,4166.842752999999,84.184939595584,480.40540000000004,324.8888888888889,595.139452,11715.037101707134,882.0,340.644,149.0,230.0,8840.99671282294,3152.084693,67.459608369339,344.42400000000004,195.22222222222223,426.938044,9401.525723705994,796.0,292.3469,105.0,220.0,7373.453705825445,2853.557914,52.389104177094,294.2848,237.11111111111114,360.62984000000006,7430.6172360282235,368.0,229.493,69.0,78.0,6566.600911977339,1148.790329,34.506587407339,230.339,119.66666666666667,291.953188,4314.344904404529,242.0,5.124196874999998,0.881524970477889,22.46875,140.0,50.01286191111568,1144.5614229687499,6.905362387803218,4.683846874999998,94.10763888888889,3.2504258749999986,1485.5417320398224,1.625,-0.5982873046874997,-0.6113823909234319,7.376953125,35.875,-1.6968965614486078,11.487919126953106,0.4489148265771121,-0.47650292968749997,-5.303602430555553,-0.37218336718749995,112.81930869329824,31.5,1.492168359374999,0.26522746541143066,-2.28515625,14.5,-3.6405490232537367,142.48380015234378,-0.2330984883600653,1.3019777343749999,10.022135416666671,0.9297731093749997,-20.408815831445764,-50.6875,-1.0115827148437497,0.04553472006340837,-10.7802734375,-53.1875,-10.5816101233403,-241.5261108896484,-2.068249975494647,-0.9125186523437496,-25.739474826388886,-0.6950352460937499,-392.7528364088939,-104.5,-1.8668292968749989,-0.2960502753658172,-6.41796875,-58.75,-13.920934008886299,-495.2791016367187,-2.5288579689425426,-1.746701171874999,-18.374565972222225,-1.036803046875,-602.1598824033579,-5.5625,0.51473857421875,0.2826629027727995,-1.0986328125,-8.8125,13.662965917051322,-26.214898801757784,1.2621704850822364,0.3417745117187504,11.159179687499996,0.4586807304687499,105.43993057140857,-3.0625,-0.92424462890625,-0.28273220332023075,-4.7744140625,-18.0625,-10.845839392149813,-10.13228054003909,-0.3393699778783447,-0.7468805664062502,-23.09646267361111,-0.7201322226562497,-3.6662505564980137,-23.1875,0.9487231445312497,0.361523543791333,-2.6904296875,4.5625,-11.657281134432916,-120.95373142480464,-2.4452674636200262,0.7662997070312503,22.938910590277775,0.6566838632812498,-480.75398824921615,-33.625,-1.3158275390624994,-0.41138633511051237,4.224609375,2.625,7.112993471728956,-153.3909204628906,0.49625218750323935,-1.1714306640625,-16.916015624999996,-0.7686529765624995,44.635734756769644,0.7141341906222549,0.5357910608631221,0.4321613047842576,0.2903394364717191,0.2759333268436029,0.15397766859687909,0.17257186812323724,0.08414679002311723,0.10899263384166488,0.044993325395955734,0.06836673006603292,0.024431035304866216,0.043903127088195645,0.013130893605192817,0.027805884978418842,0.007131868869717279,8.024600586076868,5.687352170293722,3.547623273078842,2.1863070052875515,0.4142437940282571,-0.39531738191411436,3.249951465279654,0.9772223869675761,6.024467805331792,1.893168896095889,14.544155229349816,10.948601015262636,16.012308077963638,11.699156260130025,1.991464725375225,0.7503093763035426,3.493226966343827,2.2360139813951045,7.010441072080856,1.2468230115600294,3.7059487985962427,2.4318949634393916,20.896603888580255,14.701773270923857,0.3187213787714743,0.7006915739075557,0.8528694271382216,0.8925336673682609,0.8925336673682609,0.8925336673682609,1.7145360075013785,596.796280171291,0.0,3.0,1.0,0.0,4.0,3.0,2.0,0.0,0.0,3.3037877398748545,1.2709698269705347,0.461090234442608,0.25,0.25,0.25,90.95547138184776,895.7288604508972,62.17784831910656,27.991526889090537,60.20032572460778,,9.0,292.0,11.949020558499466,14.383611552215466,18.23518108162902,24.21641579521914,5.563451491696996,4.899909730850478,18.19910120538483,0.0,5.316788604006331,5.733667477162185,8.700000000000001,23.75,11.0,0.5,12.75,0.0,0.04210526315789468,-1.75,0.20347877358490551,0.05476973684210518,-0.14870903674280034,0.07966507177033477,0.19614285714285695,0.0,0.6468750000000002,0.8842105263157893,0.4433962264150947,0.592105263157895,0.8045454545454546,13.438976362715529,0.33882616190368786,0.5968261619036879,17.076352763544556,4.743890304770951,4.331497095698457,30.515329126260085,9.075387400469408,0.517857142857143,0.16091954022988503,0.0,0.44827586206896547,0.3076923076923077,0.3988170271327826,-0.794801835341886,-0.08655728299834503,-0.024837557354433937,-0.07948018353418859,0.6011829728672174,1.198096614997507,0.05178160841373771,0.03744051921867209,0.05445893704534121,-2.3510561008544903,0.7083130772970345,0.7224176557653529,1.6701088298412163,0.771005481469361,0.4330882352941176,1.2604552703990086,0.7126433416783596,0.9795126616265137,0.6967616762663704,0.5728343508749846,0.701544396493438,0.860759877126322,0.7269628099173553,0.5245417117194584,0.7657853994582867,1.230227167362077,0.7547023809523808,1.1768446193322788,0.7362190552773915,1.0411436674945633,0.5288670970909995,0.5021215363612884,0.5025147358574974,0.9665961087073797,0.9892102846648301,0.9765680910716037,0.9475624275703047,1.2774944624736,1.0784391534391533,1.1080507724558966,0.9911904029369801,1.102935840322082,0.9712881177002215,0.9921274261015249,0.9853566999371267,1.0593507792056136,1.1475550964187329,1.1993730841038008,1.1960312249628942,1.06762037221008,1.170408163265306,1.0750757619246485,1.1455674797836133,1.0776822823103491,1.1954137845395767,1.1526627697162324,1.1919532368530457,1.089951980089786,1.0598071625344352,1.0654660882833469,0.8102025246277476,0.9657858136300416,1.104190476190476,0.780077302702428,1.0567782347431296,0.8638091252835387,1.077763955153494,1.0832099767553407,1.0579829963563367,0.9409100602485195,0.9945154019534185,1.044760617420479,0.9865786653620319,1.1037552155771906,1.058831168831169,1.0192545668697715,0.993298889794405,1.0403895396930247,1.041034537158383,1.164331355468868,1.0862818343206126,1.01971152440084,1.0674931129476584,0.9552050805793617,0.7211266958553434,0.8278164116828928,0.9324603174603174,1.1138344908092042,1.071618584296555,1.1880145400335236,0.9637847095503094,0.9703362071439405,0.957209255951217,1.1691013489775715,1.2337973031752936,1.2237327178068371,1.3518338949184208,0.5264621916404363,0.9818609022556389,0.7185378627147977,1.2292338703557748,0.8440536614921527,1.2419599007493174,1.068656217897805,1.1493233701422685,0.9904403325650721,4.0,0.0,2.88888888888889,2.1388888888888893,1.436666666666667,0.7086111111111111,0.35015873015873017,0.2031958616780045,0.10404856386999242,0.024691358024691357,3602.680660324673,3963.4135708006797,1829.1680098961813,1691.0447886316567,11.08328593665183,0.48592082450291496,5.697686496112411,0.9452256532917471,1.0,0.3076923076923077,1.6962122601251457,3.7290301730294653,4.538909765557392,4.75,4.75,4.75,0.19047619047619047,0.0,0.09318996415770614,0.06684027777777779,0.053209876543209876,0.03374338624338624,0.020597572362278247,0.014513990119857462,0.02080971277399848,0.008230452674897118,0.5016114231293018,13.959183673469388,5.4131113423517165,2.492157923201731,109.10848846417022,1.0,3.8966497595669294,71.62697430285951,,58.665360750270125,57.27714210806954,56.40616424404721,58.67817823360844,79.22375200256617,58.08927809448463,58.74769953500921,72.47893202044058,0.006319883325230919,-0.1098892075304053,-0.652753739417238,0.30900760860672505,0.2411764705882353,-0.03193336785037195,0.009446552156427179,0.061185503141564644,-0.09574893406143545,-0.05304166458672903,-0.10776748691159634,0.07147754686390502,0.06942148760330578,0.1553068987030284,0.16046584380104947,-0.054242002781641166,0.05523809523809524,-0.038822536274489575,0.06639343119231166,-0.0180032830734006,0.14825167080211182,0.05679814042725901,0.15255816029543104,-0.007327092562943423,-0.08274665850423425,-0.0779902930136229,0.02040671088475606,-0.18954652380707085,-0.15008818342151675,-0.08358628210397179,-0.08336618804878858,-0.11832636206249801,-0.07696690468508417,-0.10805373010048998,-0.08447564601585754,-0.10444783275842782,-0.1645021645021645,-0.13878722516417566,-0.1279385849059677,-0.10881515332141202,-0.15986394557823128,-0.10603698235048484,-0.16484720629066296,-0.13951106549609182,-0.14206484285165605,-0.0743811526750685,-0.12151410445122501,-0.15441790423523127,-0.009807162534435263,0.04285974895659464,0.13681159644407315,-0.02086230876216968,-0.026857142857142857,0.11656065863555216,-0.009772322624449815,0.07798664912739028,0.031133338804263732,0.0505936612183153,0.06020865752963322,0.03028370239636034,-0.007362885048835462,-0.10494177773867339,-0.18660700715947695,-0.12363130610696675,-0.07506493506493507,-0.12617367441694258,-0.005150571147319059,-0.028593955306619293,-0.0927760246606735,-0.14279331707660675,-0.12890188441985173,-0.0014359012519578216,-0.06813590449954085,0.13165918209269517,0.2916348572393952,-0.0851491268737444,0.023174603174603174,-0.16574980561547836,-0.07514803541380245,-0.25181254297239897,0.11634117225728298,0.17333464520122824,0.14366584860719728,-0.230131200882234,-0.11700739451935624,-0.2162417493087893,-0.39299011325793104,0.15833394334236145,0.015789473684210527,0.11976697614297911,-0.11285659192268703,0.060517689801221346,-0.21061062711013145,-0.15136992020692988,-0.19913904885010278,0.02530254543033456,4.6282380363573035,14.152846705709717,7.6621456009189775,16.480047644808046,34.678876610312535,39.108439793681846,40.258156249999985,40.258156249999985,40.258156249999985,38.785471242006246,27.432165699456387,6.019537383977867,5.333768158571985,0.0,11.353305542549853,2714.361322740272,2546.139254886757,474.90974982004263,73.0,31.0,43.0,58.0,72.0,78.0,83.0,86.0,82.0,259.0956912760001,21.0,4.653960350157523,5.53338948872752,6.440946540632921,7.340186835320115,8.253488028345904,9.160414563206457,10.076137489633352,10.986935440684466,11.903838537269687,0.7083333333333333,1.010125,1.131242365323304,0.6745509324785613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6752303330838323,0.9949754901960786,1.0235114712308815,0.6543802730002037,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10.633577208012664,6.041840829147961,0.0,11.814359458703011,5.907179729351506,19.700400156221797,0.0,0.0,0.0,6.06636706846161,18.553555759849232,29.77986728691614,0.0,179.25244569346967,-357.23192124206184,-38.904067816716726,-11.163497538814433,-35.723192124206186,270.2079170753174,538.4969392088353,23.27378050238983,16.828029350276104,24.477133600401597,0.4444444444444444,0.688168901992191,0.19992505965610366,51.36142374499449,0.1278369826649352,18.4793161296626,0.3118310980078088,5.0,0.047619047619047616,0.3392424520250291,0.745806034605893,0.9077819531114784,0.95,0.95,0.95,0.029799999999999882,,1.1785714285714288,1.4141461144718472,1.1951513140078474,1.1752972727426438,-4.80142824756291,1.2597154222766218,1.1662733799930698,-2.1549573189043634,66.8996,14.383611552215466,0.0,10.216698334856808,0.0,25.428240480912553,5.733667477162185,29.32600418877882,0.0,0.0,3.7612001156935624,0.0,5.117993812416755,2.3978952727983707,6.675823221634848,4.844187086458591,8.325306029752582,7.050122520269059,10.020514747061002,22.666666666666664,5.166692439321407,0.0,0.0,0.0,0.0,0.0,1.8634666582682462,0.0,32.324,0.0,35.229337417065594,0.0,0.0,0.0,0.0,0.0,-0.8910180461073309,36.199755690345725,11.050456081168516,5.687386274683562,0.0,28.663289748052954,16.133830774056218,0.0,28.763083413317833,18.19910120538483,0.0,0.0,0.0,21.585629839313963,21.607370658682633,24.349698199769154,143.2539486057191,,117.2066613501643,114.4054267304052,112.68652308661991,117.23264096482293,160.01859076953275,116.04595456557172,117.37263345107178,145.6383768784299,24.349698199769154,143.25394860571916,,116.1737668959624,113.17778133142309,111.67383223913899,116.20256253515822,163.24893225269523,114.94670706800264,116.34992780528478,147.11282135978553,4.848542281193495,105.629002684126,,88.97714143168355,86.71405663571639,85.09869768880321,88.99746120178895,121.18114815964961,88.02849360346495,89.11241290020834,110.94634204144613,1.2815630631457449,7.539681505564164,,6.168771650008647,6.021338248968695,5.93086963613789,6.170138998148576,8.422031093133302,6.107681819240617,6.1775070237406196,7.66517773044368,2.504039725234179,71.62697430285951,,58.665360750270125,57.27714210806954,56.40616424404721,58.67817823360844,79.22375200256617,58.08927809448463,58.74769953500921,72.47893202044058,31.839215686274514,0.0,0.0,0.0,0.0,5.849043262366675,0.0,32.75236707938821,0.9478484032501888,2.2651854213907785,0.0,0.0,-0.5861111111111115,1.4888888888888887,0.0,0.0,0.0,20.94016873600652,309.3046443356081,54.27879232400466,119.32896553694289,145.24511249783654,152.0,152.0,152.0,646.0,114.34929727397795,140.15571843317895,67.19304280608478,92.5,92.5,0.8,7.677849032980961,5.392317422778761,3.8677662322203954,4.297108296598616,,4.307516537179783,4.30773725981442,4.307556173459493,4.307513506145194,4.305273212225276,4.30760393323008,4.307502856683804,4.30783985007411,0.20356664380107345,0.22616359455782187,,0.2267113966936728,0.22672301367444317,0.22671348281365752,0.22671123716553654,0.22659332695922507,0.22671599648579369,0.22671067666756864,0.22672841316179526,1.9945310255928315,2.099796193486535,,2.1022154147445278,2.102266654705622,2.1022246163568745,2.1022147110825387,2.101694485969878,2.102235703735402,2.1022122387804694,2.1022904697695197,183.19999999999973,115.75950287302034,99.09387789398872,,97.58418353249327,97.57236283163424,97.71084927797746,97.58471444242215,98.24589966740392,97.5852765187995,97.58432979385722,97.81205315833004,6.092605414369491,5.215467257578354,,5.136009659604909,5.135387517454434,5.142676277788287,5.1360376022327445,5.170836824600206,5.136067185199974,5.136017357571433,5.1480027978068446,5.393368674023896,5.237921548546461,,5.222569312488923,5.22244817178323,5.223866485913383,5.222574753006693,5.229327402385792,5.2225805128714615,5.222570811310238,5.224901698547091,0.0,36.71822630595448,2.2651854213907785,7.712509920634921,-0.8910180461073309,4.580581328210296,0.6213433012093725,0.3265051020408163,0.0,228.97709897584173,80.5668692685792,-160.5615889140479,-17.485836434082994,-5.0175496535639965,-16.056158891404788,121.4477484316705,242.0330296466846,10.460641827605258,7.563532176458894,11.00150134757657,659.0,32.0,1.4968607990675373,0.6032025456717562,0.0,0.0,0.46069604110466367,0.1376971184641908,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.03952847075210474,0.3609275815006514,0.1416858654845998,0.7424044568134776,0.21477437072612326,13.568549621822843,10.18003015639932,9.07538740046941,6.097128165906102,8.55393313215169,4.773307726503251,7.420590329299201,3.618311970994041,6.321572762816563,2.6096128729654327,4.92240456475437,1.7590345419503675,3.4244439128792603,1.0242097012050397,2.307888453208764,0.5919451161865341,3.716097625486619,1.3648411984196736,6.144108817030709,1.9016322132449854,9.525402315975146,2.444013285274853,62.45030862005412,32.50640652235409,23.991729296672176,22.0,22.0,22.0,104.0,126.0,36.08430899999998,17.355690999999997,0.46875,99.06,6.638888888888889,4.083333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,6.0,6.0,32.0,0.0,0.0,34.0,6.0,3.0,6.0,28.0,9.0,21.0,25.0,0.0,0.0,0.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,4.0,2.0,2.0,19.0,6.0,0.0,3.0,3.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,3.332204510175204,6.017832584658087,3.8815637979434374,4.378896741664954,4.8704149133209365,5.291733238671021,5.446198433361699,5.6882457355070715,5.855877471585885,5.9334049920681196 +4030,COC(=O)Nc1nc2ccc(C(=O)c3ccccc3)cc2[nH]1,0,26.514285714285716,6.512705714285715,3.6285714285714286,10.0,160.64894913122106,105.08362622857142,1.598913707515343,6.576731428571429,5.71984126984127,7.961381257142856,244.55639874712833,27.783783783783782,6.555621621621621,4.216216216216216,9.378378378378379,147.2993119447162,107.00535654054052,1.86864573,6.695162162162163,3.734234234234235,7.923750054054054,283.8446499854914,25.25423728813559,6.5946559322033895,3.9491525423728815,8.474576271186441,152.74206534409652,96.15508286440676,1.6922069978397793,6.694950847457628,4.00376647834275,7.9952781694915265,251.23100136454525,21.47142857142857,6.39927142857143,3.4571428571428573,6.385714285714286,155.4843603026978,79.88917702857142,1.5151831720892142,6.498942857142857,3.753174603174603,7.856721485714286,221.34469735401163,19.845070422535212,6.5480140845070425,3.1690140845070425,6.169014084507042,160.89666998672243,72.58280112676057,1.3629954812104645,6.608871830985915,4.203834115805947,8.035020394366196,197.73205666606728,20.524590163934427,6.445688524590164,3.1311475409836067,6.245901639344262,157.7701959126622,75.97033275409835,1.417268415802344,6.526526229508198,3.8806921675774135,7.936057442622951,207.5557732981367,18.833333333333332,6.308383333333333,2.966666666666667,5.366666666666666,158.8576034841174,68.76254151666667,1.3980527152657165,6.3916683333333335,3.639814814814815,7.8057282,198.8785388490504,17.017543859649123,6.211894736842106,2.8421052631578947,4.719298245614035,160.08126644997353,61.431299631578945,1.282013691447193,6.285896491228071,3.3265107212475633,7.749817333333334,178.8440322704046,16.355555555555554,6.228466666666667,2.7111111111111112,4.377777777777778,161.13148612502988,58.0477388,1.2708019592687556,6.301488888888889,3.2172839506172846,7.759009422222223,175.55575500261176,7.154285714285714,0.14645583673469378,0.02729290394437198,0.5910204081632654,4.239999999999999,1.6000913792062956,33.899210878367334,0.22034862001535838,0.13383706122448977,1.926621315192744,0.09319597061224487,46.40868198761186,0.1708108108108101,-0.011622400441257574,-0.020979508614246842,0.18813017098731386,0.9978378378378379,-0.17141375931082653,0.8524914969222321,-0.005627743500386935,-0.008205400992829572,-0.1577452963167249,-0.00856316752344181,0.9168896583637463,0.3905084745762708,0.0398484731926669,0.010669571224061383,-0.014264960221376695,0.28203389830508474,0.34630204238779566,1.73595081025251,0.019743581198324436,0.031686570736769296,0.177064452899804,0.026462313164994804,0.6808152622395564,-0.5285714285714289,-0.01780175510204081,-0.008337006919664432,-0.0783673469387755,-0.5742857142857142,-0.26837829356463494,-2.510656361632652,-0.029819955527777133,-0.014660897959183674,-0.0632312925170068,-0.011704231836734693,-4.494126016376299,-0.890704225352113,-0.005293583213567106,0.006346875396369984,-0.0038976717447542436,-0.6118309859154928,0.1575129515794505,-4.1993031431560786,0.006190239261012651,-0.007892554182236257,-0.2506096898853439,-0.0013853339925265962,-2.4901928451102435,-0.2203278688524591,-0.014727171629307454,-0.00306897047904054,-0.031301438608230175,-0.19081967213114753,-0.11919405190968944,-0.9827729898427569,-0.0045330058122164405,-0.012454438273670123,-0.270883610274711,-0.010600324710605557,-0.5031566108919124,-0.5266666666666667,-0.010046979591836728,-0.001377049117344503,-0.037687074829931985,-0.2333333333333333,0.04268742610879662,-2.5053608055102035,-0.011433262276978846,-0.009163013605442173,-0.04906840513983369,-0.005448220136054415,-2.4247873938496025,0.09684210526315801,-0.00038651342642320925,0.0034660392235091758,-0.08274973147153596,-0.17333333333333337,-0.20861853718512732,0.4391460294020751,-0.0142397829183744,0.0004012846401718549,-0.010149580299956188,-0.0019712187325456407,-1.6389317201137608,-1.048888888888889,-0.022679836734693874,-0.006804042583197305,-0.06086167800453516,-0.36888888888888893,-0.3045313409438926,-4.968318712018142,-0.033982815863875186,-0.02037356916099773,-0.23896699420508938,-0.013769273469387744,-6.973597565822211,,,0.4636363636363637,1.4545454545454546,0.7954545454545454,0.022727272727272728,0.6590909090909091,0.13636363636363635,0.5736278313440933,0.011144475762594393,0.02287174848986712,1.0395923020848428,0.30546319096854063,0.17949294974036933,1.6132201334289362,0.48495614070890997,2.04113103032798,1.5166580040575632,0.2799376823065351,0.24453534396388152,0.0,0.5244730262704167,8.431305465028583,928.0,227.94470000000004,127.0,350.0,5622.713219592737,3677.9269179999997,55.96197976303701,230.1856,200.19444444444446,278.64834399999995,8559.473956149492,1028.0,242.558,156.0,347.0,5450.0745419545,3959.198191999999,69.13989201,247.721,138.16666666666669,293.178752,10502.252049463183,1490.0,389.0847,233.0,500.0,9011.781855301695,5673.149888999999,99.84021287254699,395.00210000000004,236.22222222222223,471.72141200000004,14822.62908050817,1503.0,447.94900000000007,242.0,447.0,10883.905221188847,5592.242392,106.06282204624499,454.926,262.72222222222223,549.970504,15494.128814780814,1409.0,464.909,225.0,438.0,11423.663569057293,5153.37888,96.77267916594299,469.2299,298.47222222222223,570.4864479999999,14038.976023290777,1252.0,393.187,191.0,381.0,9623.981950672394,4634.1902979999995,86.45337336394299,398.1181000000001,236.72222222222223,484.09950399999997,12660.902171186339,1130.0,378.50299999999993,178.0,322.0,9531.456209047043,4125.752491,83.88316291594299,383.50010000000003,218.3888888888889,468.343692,11932.712330943023,970.0,354.07800000000003,162.0,269.0,9124.63218764849,3501.5840789999997,73.07478041249,358.2961,189.61111111111111,441.739588,10194.109839413062,736.0,280.281,122.0,197.0,7250.916875626344,2612.1482459999997,57.186088167094,283.567,144.7777777777778,349.15542400000004,7900.008975117529,250.39999999999998,5.125954285714283,0.9552516380530193,20.68571428571429,148.39999999999998,56.003198272220345,1186.4723807428568,7.712201700537543,4.684297142857142,67.43174603174604,3.2618589714285706,1624.303869566415,6.319999999999974,-0.4300288163265302,-0.7762418187271332,6.960816326530613,36.92,-6.342309094500582,31.54218538612259,-0.2082265095143166,-0.30359983673469415,-5.836575963718821,-0.31683719836734703,33.92491735945861,23.039999999999978,2.351059918367347,0.6295047022196216,-0.841632653061225,16.64,20.431820500879944,102.4210978048981,1.1648712907011418,1.8695076734693885,10.446802721088435,1.5612764767346934,40.16810047213382,-37.00000000000002,-1.2461228571428566,-0.5835904843765103,-5.485714285714286,-40.199999999999996,-18.786480549524445,-175.74594531428562,-2.0873968869443993,-1.0262628571428571,-4.4261904761904765,-0.8192962285714285,-314.58882114634093,-63.24000000000002,-0.37584440816326453,0.45062815314226884,-0.2767346938775513,-43.43999999999999,11.183419562140985,-298.15052316408156,0.4395069875318982,-0.5603713469387742,-17.793287981859415,-0.09835871346938832,-176.8036920028273,-13.440000000000007,-0.8983574693877547,-0.18720719922147294,-1.9093877551020408,-11.639999999999999,-7.270837166491056,-59.949152380408165,-0.27651335454520287,-0.7597207346938775,-16.52390022675737,-0.6466198073469389,-30.69255326440666,-31.600000000000005,-0.6028187755102037,-0.08262294704067018,-2.2612244897959193,-13.999999999999998,2.561245566527797,-150.32164833061222,-0.6859957366187307,-0.5497808163265304,-2.9441043083900214,-0.3268932081632649,-145.48724363097614,5.520000000000007,-0.022031265306122927,0.19756423574002302,-4.71673469387755,-9.880000000000003,-11.891256619552257,25.03132367591828,-0.8116676263473408,0.02287322448979573,-0.5785260770975027,-0.11235946775510151,-93.41910804648437,-47.2,-1.0205926530612244,-0.30618191624387875,-2.738775510204082,-16.6,-13.703910342475167,-223.5743420408164,-1.5292267138743834,-0.9168106122448978,-10.753514739229022,-0.6196173061224485,-313.8118904619995,0.705760602662089,0.5359436645640253,0.44454312898316756,0.2756896581622983,0.28597122846823936,0.14027483687792555,0.18656221022476313,0.07409080959134641,0.11572864018409293,0.0384356320922944,0.07488244130817019,0.02065186641426499,0.04677067994530836,0.01007066430186899,0.030677982712211185,0.005252657851026647,8.029521981637261,5.684338544341468,3.5564162083531827,2.181832872730415,0.5046311598925954,-0.48239644856665276,3.1997863823183286,0.9771590981845542,6.028527230586782,0.9975744407108245,14.559375165494734,10.946630605188261,16.01467255099879,11.697111137705884,2.0016344923331064,0.7399914620009261,3.502662803215212,2.231085307902314,7.009357397402291,1.440129086208996,3.715390032475489,2.426736825986322,20.903610639708166,14.700629865297797,0.29954487812452535,0.6143552141368788,0.724248652293805,0.869082729717837,0.9040233689849433,0.9040233689849433,1.5018095906735547,840.2231332611786,0.0,0.0,0.0,0.0,11.0,0.0,2.0,0.0,0.0,3.4747283240046034,1.7358539286332428,1.1288507144093414,0.32885071440934244,0.1358539286332423,0.1358539286332423,89.89305357628973,1143.627479100355,67.94158188159537,32.67507083143872,65.76461948073906,,13.0,461.0,6.093240070938415,9.589074368143644,11.731584227351433,22.160304418626517,0.0,7.109797541277533,30.33183534230805,18.19910120538483,20.021608599700794,0.0,10.200000000000001,32.0,17.5,0.5,14.5,0.0,0.03636363636363631,3.0,0.20949308755760354,0.08972644376899686,-0.11976664378860669,0.046590909090909016,0.1743174603174601,0.0,0.6514285714285716,0.8590909090909089,0.44193548387096804,0.5617021276595747,0.8124999999999999,12.619812289570055,0.24517846677707666,0.5031784667770767,22.87103064586654,6.720190201307894,3.9488448942881256,35.490842935436596,10.66903509559602,0.5396825396825399,0.11437908496732023,0.0,0.34313725490196073,0.0625,0.4152217996404585,-0.895679809035259,-0.07050646215551476,-0.02559085168672169,-0.06397712921680422,0.5847782003595414,1.2614319076685123,0.05764504260149656,0.03604091164767178,0.06006818607945296,-4.285403530691854,0.677078836024523,0.7576935895676825,1.778282334091062,0.7107660146334178,0.47060537626575366,1.2177399459671419,0.6804707582506685,0.9775828474022717,0.7226611284942341,0.5791642119969411,0.7729963505984443,0.8384101816483216,0.7606135268316456,0.5924313994858961,0.656098171970622,1.100407341511377,0.7785874183379781,0.8489571283884859,0.7652687706206491,0.8655567286987685,0.6106438598792424,0.5513352015888682,0.5947400505307244,0.8732222228889658,0.9465997261524419,0.952083347268021,1.2701492919359152,1.1740331491712703,1.0097227570273395,1.2025039657846384,0.949168711557765,1.087073665231004,0.9371959446271555,0.8762711265947929,0.938159733348899,1.0260150542046143,1.1082549610763623,1.158680850310179,0.7609717382578083,1.0764726480429536,1.1762081925515357,0.8985875349233151,1.1040538662949015,0.9126154742423286,1.1666018812422692,1.5215176469106053,1.1570512240264106,0.9772990507136216,0.983868433457288,1.122973626872233,1.0788435778833279,1.037383389185762,1.0065838893553092,1.0473422066123714,0.9807033452594462,0.9880190534778639,1.1070681272816776,1.2999112063662832,1.1588339103544285,0.9569588805733231,1.0183706070287541,0.9425809122278188,0.9602710859302521,0.9587937384898709,0.9699011680143756,0.9735953741715606,1.0206659348798253,1.015471923433223,0.9476789931589066,0.8941620372549941,0.9057406505140078,1.0239437636613415,1.0005044560282497,0.9346121093432348,0.7494865136095948,1.1101822235145873,1.026977821913274,1.0581173772708166,1.0024265274651774,1.056392778303176,0.9413814691580662,0.8288071645617502,0.9391130894904265,1.0558120435253329,1.143592474263401,1.0569986317994775,1.1560831194663377,1.0227133210558623,1.0615453728661277,1.1614194419772768,1.1452702359899156,1.1171351652964334,1.0659206144731033,0.9460228907406535,1.0118845814337736,1.1470516070478392,4.5,0.053667993061932456,2.222222222222223,1.7916666666666667,0.8444444444444446,0.7122222222222222,0.43437641723356,0.26569586167800446,0.16354087931468883,0.09000000000000002,4088.0073438274317,4424.04283096997,2152.793247460546,2013.7671112805722,16.497538914239566,0.4692734653791579,8.755681657726855,0.8842095406336012,1.0,0.0625,1.6545546929403627,3.3934290883117235,4.000432302535625,4.800432302535624,4.993429088311724,4.993429088311724,0.1875,0.005963110340214717,0.06734006734006737,0.055989583333333336,0.030158730158730163,0.02739316239316239,0.018885931184067832,0.013983992719894974,0.011681491379620629,0.008181818181818184,0.42707788703090954,16.84375,7.7134986225895315,4.11032990805841,125.68024821564931,1.0,4.0224357926729075,107.662296581654,,78.80330947126025,77.26685294717977,77.14561111858416,78.82004466752277,110.8053593287946,78.20322363361677,78.8907363495191,98.23135657380061,0.023875313012693106,-0.07935771424604722,-0.7686799710652625,0.31831417052411526,0.2353391126976033,-0.10712748130413283,0.025147827186332725,-0.02554018037414838,-0.06130888498116642,-0.08187664855194632,-0.09188345233368608,0.01975685624100458,0.05458385227703466,0.2720852516438304,0.39092839830484716,-0.02413615507069951,0.06651742884553886,0.2164264159460532,0.051209180546450454,0.08960156499708644,0.23675483043983053,0.09190412848831686,0.28394267467952056,0.01466999779095839,-0.07388178913738024,-0.121550328747149,-0.30546426780590313,-0.1325966850828729,-0.13544474393530997,-0.16772685426113632,-0.07406238365373922,-0.13533080227912783,-0.10954288614117443,-0.032819782496116,-0.12558731627391723,-0.0968380446050147,-0.12449939252126183,-0.03614456980063201,0.23254672384096972,-0.006594817523928103,-0.14429976082912568,0.09843997263305221,-0.12387613263988542,0.028092934099524604,-0.05897136495695904,-0.13007729537149454,-0.014864741291128088,-0.05365790921998098,-0.03079662703608654,-0.10055708230997902,-0.11244572894462507,-0.05296168825287564,-0.045004639653572535,-0.07449202805455654,-0.028991028533643836,-0.020571972776142134,-0.09305672255295444,-0.1406003391214485,-0.11374230710799417,-0.010841863835439735,-0.07361554845580406,-0.0686007455615233,-0.05045447417948583,-0.06376611418047883,-0.055031446540880505,0.026678117677236133,-0.07390616892232706,-0.05188715171523173,-0.06846394803956968,-0.025468629851074166,-0.05845982503602556,-0.0522485726807942,0.013536236758029275,-0.002639112479507267,0.12699415315327417,-0.1400116312881651,-0.04088050314465411,-0.1303791395267749,0.012954461712331911,-0.06462388063688296,0.00299830731861906,-0.005268072256815449,-0.02115133003708044,-0.03531519642275664,-0.14660986865459713,-0.15485785503911753,-0.24929712855272607,-0.10297728667894414,-0.08700209643605873,-0.1903212184637551,-0.1465614857479959,-0.1542229575184386,-0.15222666258955284,-0.12403423149150745,-0.14774537331315288,-0.15026493464485188,9.22886188348264,15.339299266344739,6.883867240737968,15.851351425182195,31.75337399244668,39.3860324556328,42.94471894667007,43.13925970673239,43.13925970673239,44.90488266721556,33.36647608926639,6.1586290107437724,5.379777567205394,0.0,11.538406577949168,5983.862582025452,5694.680262864957,372.8574041092952,94.0,33.0,43.0,55.0,67.0,72.0,86.0,93.0,90.0,295.0956912760004,24.0,4.74493212836325,5.58724865840025,6.456769655572163,7.319202458767849,8.197263371414335,9.068892008391808,9.951467865054695,10.828678559197003,11.713913382839303,0.7333333333333334,1.009257142857143,1.1199930197241637,0.7024465668375418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7030677331052183,0.9954061624649857,1.0214962022682346,0.6840048210287575,8.0,1.0,1.0,0.0,0.0,2.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9.720841474747257,0.0,5.783244946364939,5.948339280986494,0.0,10.111325788078153,9.77851570501903,0.0,0.0,30.33183534230805,18.19910120538483,11.126902983393991,18.143198976510057,220.1365169514496,-474.85905999033037,-37.38013518298877,-13.567401714009442,-33.9185042850236,310.02957052773934,668.7684191100246,30.5614466986066,19.107669117429275,31.84611519571546,0.46153846153846156,0.7561501518113541,0.20980455192391662,96.60426251793169,0.19154778131030156,57.22466529235784,0.2438498481886459,7.0,0.125,0.32257036460542704,0.6615796159231766,0.7799203688546529,0.9358875863696817,0.9735140509532348,0.9735140509532348,2.972200000000001,,1.1785714285714288,1.4141461144718472,1.1951513140078471,1.1752972727426438,-4.80142824756291,1.259715422276622,1.1662733799930696,-2.1549573189043634,81.99590000000002,14.325937321943691,0.0,9.967957041894417,0.0,0.0,12.426586145283864,59.65783953108687,0.0,0.0,3.8918202981106265,0.0,5.198497031265826,2.3978952727983707,6.698268054115413,4.727387818712341,8.28121766128665,6.823286122355687,9.909419921189237,25.666666666666668,14.179359736934142,4.195038107835727,2.932252299067775,0.0,0.0,1.3094434471319394,1.4374098930971235,0.0,35.324000000000005,0.0,23.567587158744786,0.0,0.0,0.0,0.0,0.0,-0.6812790422260118,39.199755690345725,5.316788604006331,10.742876465058316,0.0,28.9542396004753,4.736862953800049,0.0,15.921440167465814,48.53093654769288,0.0,11.033401435232523,0.0,24.585629839313963,24.60737065868264,28.898563506021883,215.32459316330818,,157.49947608537764,154.4051471566803,154.18257211771305,157.53324412843256,223.7931860428451,156.29192768339024,157.67544784631156,197.4422392016486,28.898563506021883,215.32459316330818,,156.42804751394905,153.1195597798877,153.09607092316054,156.46479206230288,226.41214690515216,155.14673184495712,156.61519931904513,198.61767046650561,4.7859537782908195,163.15246840913085,,120.19881470362043,118.02511368006994,117.48864682116819,120.22150951945619,167.83184333331647,119.3296496734907,120.32505258808374,148.95188028258167,1.3135710684555402,9.787481507423099,,7.159067094789893,7.0184157798491045,7.00829873262332,7.160602005837844,10.17241754740205,7.104178531063193,7.16706581119598,8.974647236438573,2.4355036166906836,107.662296581654,,78.80330947126025,77.26685294717977,77.14561111858416,78.82004466752277,110.8053593287946,78.20322363361677,78.8907363495191,98.23135657380061,34.8392156862745,0.0,1.2724402124384087,0.0,0.0,0.0,0.0,35.75236707938821,0.0,2.44864675017543,4.505768103467348,0.0,0.0,0.0,0.0,0.0,0.0,23.940168736006513,400.88516753262036,57.9094142529127,118.77001809091033,140.01513058874687,168.01513058874684,174.77001809091036,174.77001809091036,679.0,119.86836808800066,129.2809199465686,69.92779217983416,84.07999999999998,84.07999999999998,0.8571428571428571,8.838138701836197,5.584962500721156,3.9838492566507555,4.610968525423833,,4.608113135054255,4.609626240643171,4.60635316665014,4.608086792567713,4.56131347908569,4.608558717630997,4.608041394448004,4.5834907289705376,0.1810840571204889,0.20958947842835604,,0.20945968795701161,0.20952846548378048,0.20937968939318818,0.20945849057125968,0.2073324308675314,0.20947994171049986,0.20945642702036382,0.20834048768047897,2.170705862184722,2.3168952875893614,,2.3162758353345616,2.316604138303616,2.315893834170763,2.3162701187731263,2.3060679860730975,2.316372525893629,2.3162602668876517,2.310918236085406,212.5699999999998,191.88905065721147,121.67333374341362,,121.51145762415568,121.36850923003043,121.68583834777301,121.51394379399461,125.00068136278348,121.47062426255839,121.51801450722604,123.46111377328205,8.722229575327795,5.530606079246073,,5.5232480738252585,5.516750419546837,5.531174470353319,5.52336108154521,5.681849152853794,5.521392011934473,5.52354611396482,5.611868807876457,6.045374704205586,5.589797221668373,,5.588465920132153,5.587288808553273,5.589899988326091,5.588486380296601,5.616776548553983,5.588129818295633,5.5885198797035125,5.604383598618358,4.505768103467348,30.69487756564829,2.44864675017543,2.4772606636522587,0.1997566557487198,14.179359736934142,-0.6114430213979276,0.0,1.2724402124384087,251.1556778041883,116.7089159034462,-251.75416993911892,-19.81768001940833,-7.192976283974828,-17.98244070993707,164.36716440954484,354.5583361892042,16.202642623904037,10.130238176834405,16.88373029472401,1138.0,32.0,1.3519160362232865,0.45198457516430446,0.0,0.0,0.2757834230632086,0.05265459068448683,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02795084971874737,0.37422759959187446,0.10238156224898244,0.46545182989144984,0.10067981392250386,15.526733258565956,11.790760620408557,10.669035095596021,6.616551795895159,9.4370505394519,4.6290696169715435,8.022175039664814,3.185904812427896,6.365075210125111,2.113959765076192,5.017123567647403,1.3836750497557544,3.367488956062202,0.7250878297345673,2.638306513250162,0.4517285751882916,3.206718889911592,0.8867782616159319,4.803646283190069,1.1220884798263209,6.76178256183785,1.296354531867647,70.12961432044393,46.02251473122027,30.916801176150507,23.691149195250674,23.040589148705834,23.040589148705834,114.0,133.0,41.09430899999999,18.793690999999995,0.45714285714285713,114.06,6.777777777777778,4.916666666666668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,35.0,0.0,0.0,37.0,16.0,2.0,9.0,28.0,18.0,24.0,19.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,4.0,2.0,1.0,22.0,6.0,0.0,3.0,3.0,0.0,3.0,3.0,0.0,0.0,0.0,1.0,3.0,3.5553480614894135,7.61037696557491,4.1705337005796475,4.7801733619743665,5.387072014823595,5.918557776299894,6.255000000465936,6.744270809971662,7.118044693727257,7.277231529195538 +446596,C/C(=C\C(=O)OCCCCCCCCC(=O)O)C[C@@H]1OC[C@H](C[C@@H]2O[C@H]2[C@@H](C)[C@H](C)O)[C@@H](O)[C@H]1O,0,19.696202531645568,6.148227848101266,2.6835443037974684,5.772151898734177,165.84925974214502,77.2061515316456,1.2387747318146327,6.1838911392405045,4.88677918424754,7.744699696202533,181.34988852054076,21.4,6.322500000000001,3.4,4.6375,146.86029378050756,78.96372825000003,1.621081554300001,6.449949999999999,2.8760416666666657,7.7996117999999965,233.93348555270455,16.256756756756758,6.138851351351353,2.8986486486486487,3.114864864864865,155.2431434538053,57.7506737635135,1.3077352742363515,6.227004729729728,2.846096096096097,7.699375702702702,179.2499602992898,13.04739336492891,6.039763033175356,2.3838862559241707,2.2748815165876777,161.53653417167013,44.69344475355452,1.108343134603313,6.100294786729859,2.72432859399684,7.662652075829385,146.7357274730649,11.563559322033898,5.98737288135593,2.1652542372881354,1.8898305084745763,165.00733198292812,38.849828864406774,1.0019299021185466,6.032924576271186,2.643479284369113,7.642704067796613,130.14026087874328,11.153153153153154,6.024594594594592,2.171171171171171,1.9414414414414414,166.9318536983531,37.17117619819819,0.9734823054181353,6.059489639639639,2.6305055055055044,7.695054306306309,126.7124686358038,12.37037037037037,5.99804232804233,2.248677248677249,2.3386243386243386,162.89767290460796,42.09396003703703,1.0694660456515774,6.052602116402114,2.730893592004704,7.633508973544974,139.56675985456584,11.903061224489797,5.945663265306122,2.1581632653061225,2.0918367346938775,164.73638571231115,40.67449203571428,1.01098988191421,5.994850510204081,2.7465986394557818,7.5978376122448985,131.89023522310157,12.171122994652407,6.145775401069521,2.090909090909091,2.1390374331550803,165.964309174143,41.00970025668449,0.9894429334965034,6.1784673796791445,3.2130124777183577,7.797492192513372,130.951437496127,7.841692036532601,0.16122416279442395,0.023780992251753664,0.5274795705816379,3.689793302355394,1.21055966291499,37.047619943598775,0.21389037770797295,0.14971655183464183,2.066647082910503,0.10682292965870858,47.85320715256418,0.029194039416759365,-0.010312770389360501,-0.012703840981731182,0.14150777119051428,0.78536492549271,-0.017590695441067145,0.18833527412273984,-0.0010021040977173097,-0.008180855632110011,-0.1954577369189411,-0.008391648646050362,0.7863116631883232,-0.2937960392695216,0.005753257664009218,0.00023539617996394768,-0.07460581074585242,-0.03866432527704756,-0.1492437946513873,-1.4941251721311097,-0.026504003624555322,0.00462723023857067,0.18383757896656477,0.004219658777829243,-4.985656230401437,-0.4068729112101521,-0.00447390783011894,0.00056603899150939,-0.0321289196727648,-0.13601083190125537,-0.09879423596758934,-1.9579452108013733,-0.017471493540284728,-0.004380034947006113,-0.02675933386203568,-0.0028468094355397927,-3.5702064885503373,-0.17257596701962682,-0.005785952110021477,1.4588928261460336e-05,-0.00908223095494801,-0.19794605927450784,-0.057493984751777215,-0.8156232191297841,-0.009285474757916282,-0.004923363677594038,-0.10093127323685092,-0.00441626177627988,-1.450759395512151,-0.2561064509470213,-0.015369447319455307,-0.0010301334166499484,0.008157332143872762,-0.3053138862304061,0.10540046472125038,-1.0964598029898194,0.01780077465792667,-0.014006727453298489,-0.18745618314998216,-0.009973769207117723,2.2824438892871255,-0.1860762037015843,0.004614695955827189,0.0005841680296816651,-0.008090380306371336,0.11477437563000777,-0.056483612464692384,-0.9362155438934704,-0.010857079788338492,0.00348413130781342,-0.0689372472963066,0.0038149384010329377,-2.495892855639786,0.4643658296518417,0.005592551232959104,0.0002805412001341509,-0.023410854487605014,0.05859212776602386,-0.053906673473925595,2.164627452358335,-0.006790780251478701,0.0064290759101268795,0.018960999985103248,0.0019656446115058858,0.7206948493636878,-0.40704775304245594,-0.0032630174617223335,0.0014869650133319502,-0.016750537886856535,-0.3083541904620729,0.012597587258777104,-1.9203564094486434,0.000149540663205822,-0.004087241606522934,0.026789140831008265,-0.0007822478743722981,-1.4766806434356883,,,0.45714285714285713,0.7142857142857143,0.11428571428571428,0.0,0.6,-0.4857142857142857,1.366886846645266,0.02340233297428875,0.028316618688574463,0.5608619218242473,0.1182313995926587,0.35591522635799816,1.9277487684695132,0.4741466259506568,1.96246485771446,1.494241165956473,0.0,0.4682236917579877,0.0,0.4682236917579877,6.3328928226329255,1556.0,485.71,212.0,456.0,13102.091519629457,6099.285971000003,97.86320381335598,488.5273999999999,386.0555555555556,611.8312760000001,14326.64119312272,1712.0,505.80000000000007,272.0,371.0,11748.823502440606,6317.0982600000025,129.68652434400008,515.996,230.08333333333326,623.9689439999997,18714.678844216363,2406.0,908.5500000000003,429.0,461.0,22975.985231163184,8547.099716999997,193.54482058698002,921.5966999999997,421.22222222222234,1139.507604,26528.994124294888,2753.0,1274.39,503.0,480.0,34084.208710222396,9430.316843000004,233.86040140129904,1287.1622000000002,574.8333333333333,1616.8195880000003,30961.238496816695,2729.0,1413.0199999999995,511.0,446.0,38941.73034797104,9168.559612,236.455456899977,1423.7702,623.8611111111106,1803.6781600000006,30713.10156738341,2476.0,1337.4599999999994,482.0,431.0,37058.87152103439,8252.001115999998,216.11307180282603,1345.2067,583.972222222222,1708.3020560000007,28130.168037148444,2338.0,1133.6300000000003,425.0,442.0,30787.660178970906,7955.758446999998,202.12908262814813,1143.9417999999996,516.138888888889,1442.7331960000001,26378.117612512946,2333.0,1165.35,423.0,410.0,32288.331599612986,7972.200438999999,198.15401685518515,1174.9906999999998,538.3333333333333,1489.1761720000002,25850.486103727908,2276.0,1149.2600000000004,391.0,400.0,31035.32581556474,7668.813948,185.02582856384612,1155.3734,600.8333333333329,1458.1310400000004,24487.918811775748,619.4936708860755,12.736708860759492,1.8786983878885395,41.67088607594939,291.49367088607613,95.63421337028421,2926.7619755443034,16.897339838929863,11.827607594936705,163.26511954992975,8.439011443037979,3780.4033650525703,2.3355231533407492,-0.8250216311488401,-1.0163072785384946,11.320621695241142,62.8291940394168,-1.4072556352853716,15.066821929819188,-0.08016832781738478,-0.6544684505688009,-15.636618953515288,-0.671331891684029,62.90493305506586,-43.4818138118892,0.8514821342733642,0.03483863463466426,-11.041659990386158,-5.722320141003038,-22.088081608405318,-221.13052547540423,-3.9225925364341876,0.6848300753084591,27.207961687051586,0.624509499118728,-737.8771220994128,-85.8501842653421,-0.9439945521550963,0.1194342272084813,-6.779202050953374,-28.69828553116488,-20.84558378916135,-413.12643947908975,-3.6864851370000773,-0.9241873738182899,-5.646219444889528,-0.6006767908988963,-753.3135690841211,-40.72792821663193,-1.3654846979650686,0.0034429870697046394,-2.1434065053677305,-46.71526998878385,-13.568580401419423,-192.48707971462903,-2.1913720428682426,-1.161913827912193,-23.819780483896817,-1.0422377792020516,-342.3792173408676,-56.85563211023873,-3.412017304919078,-0.22868961849628855,1.810927735939753,-67.77968274315016,23.398903168117585,-243.4140762637399,3.9517719740597204,-3.1094934946322645,-41.61527265929604,-2.2141767639801344,506.7025434217419,-35.16840249959943,0.8721775356513387,0.11040775760983472,-1.5290818779041824,21.692356994071467,-10.67540275582686,-176.9447377958659,-2.051988079995975,0.6585008171767364,-13.029139739001947,0.7210233577952252,-471.72374971591955,91.01570261176097,1.0961400416599842,0.054986075226293576,-4.588527479570582,11.484057042140677,-10.565708000889417,424.26698066223366,-1.3309929292898255,1.2600988783848683,3.7163559970802367,0.38526634385515357,141.2561904752828,-76.11792981893926,-0.6101842653420764,0.2780624574930747,-3.132350584842172,-57.66223361640763,2.3557488173913184,-359.1066485668963,0.027964104019488716,-0.7643141804197886,5.009569335398545,-0.14628035250761975,-276.1392803224737,0.7416415622538315,0.6086977957165086,0.46097588634091646,0.3601995473242865,0.31129238285418825,0.21281234870491592,0.19975890029038262,0.1287918102461279,0.12654173358072668,0.0735768830874092,0.08007814818549223,0.04377636944263124,0.051817404637668846,0.02584428718541715,0.033500117946430374,0.015373093234994618,8.032357058928973,5.733590911821849,3.558523987444334,2.232361533585275,0.4468063273011681,-0.4924398082961032,3.181788481697815,0.9724836884762181,6.02885795398398,0.9927577088821018,13.646340029807092,10.994085661100586,16.018156836403215,11.745239053559096,1.9445419636035939,0.7404435524333808,3.504649011905394,2.2820717642063233,7.009384368541436,1.1506916273664294,3.717557679717754,2.478123581431329,20.85042452578223,14.699771398293763,0.21254359515862417,0.46056174916739834,0.737471730754532,0.8676623008448245,0.9088730412321333,0.9168154095794468,1.5561092112747246,692.3099433432227,0.0,2.0,5.0,0.0,1.0,15.0,1.0,2.0,0.0,4.9488069481606365,3.367681436664827,1.602369385113299,0.7723993671981484,0.5096792722340542,0.45904636084164885,420.377808945275,3319.4842778547863,107.5010281850283,42.01878832727578,83.06781084585009,,24.0,1307.0,36.354476126896905,24.90865655266576,30.464566490745398,38.04933332787313,32.10410811463005,6.076020106833881,13.847474399381248,6.923737199690624,0.0,19.31711625624085,16.0,25.0,4.0,0.0,21.0,0.0,0.04285714285714286,-17.0,0.1286346319282286,0.006532270667291784,-0.12210236126093682,0.061245421245421205,0.2044458598726111,0.0,0.5645569620253148,0.8971428571428566,0.4359223300970862,0.558024691358023,0.8358974358974354,47.841039632584305,0.8190816541001062,0.9910816541001062,19.630167263848655,4.138098985743055,12.457032922529935,67.47120689643296,16.59513190827299,0.5095541401273889,0.21875000000000003,0.0,0.34375,0.8461538461538461,0.2562057360896505,-0.9864456484733153,-0.06890976530922358,-0.012486653778143226,-0.0469736023082531,0.7437942639103493,2.863763419945597,0.05577871004931509,0.03625016987272908,0.049375231378372374,-2.472836813614581,0.9789446260727429,0.8558333333333331,1.4888923992133425,1.2049779769137299,0.6572612688900464,1.4547681711865843,0.9881398282523991,1.4243929519698495,0.8472427682069732,0.8486707614908489,0.8869370838660106,1.2575989931350031,1.011953274279593,0.8166064320134085,0.8511129982167885,1.5366552001576295,0.9627718195005839,1.3447393304648698,1.0209692873122478,1.3365913561184481,0.8241665243794727,0.6141802485928164,0.8181470540660668,1.2421421367951717,1.0374088980219525,0.9805705573312755,0.8820246896810793,1.1665548536449122,0.9999648069072304,1.1445279170886753,1.040168077705934,1.1411810112161995,0.9822537444778492,0.8774483763276874,0.9821842015012072,1.1095512944826946,1.013409622990449,1.0419934962554196,0.9913225951969314,1.015219226887987,1.0510737848985605,1.0234493025036664,1.0128658075739607,1.0190703750306649,1.0379394631946945,0.9579190854876432,1.0484191619841754,1.0092132044219553,1.0481096544030757,1.2016341923318665,1.1017736282979465,0.9654157498932706,1.1957053457835107,0.846131890936128,1.0418102635654456,0.846885820856522,1.1927033352937775,1.0528804261591136,1.2071681635590472,0.8971034056762179,1.002610906779277,0.9140683318977888,0.9266529215289776,1.039894694208181,0.9386792062664907,1.0762270186369487,1.0056779627812806,1.0798586883426284,0.9213707018633487,0.9675431581355433,0.9060219706285054,1.068179042069155,0.9160542271669607,0.9104809365606708,0.9464800658220481,1.0839310511567928,0.9672734257851129,1.0271811816458425,0.9176532645183928,1.0173084722676864,0.9055957890620547,0.9375245088623955,0.9220338201582712,0.9736430104928221,1.0937947590523383,1.2105604609708573,1.0947915501169578,0.9859536325300026,1.2198832112313391,0.9446817904190217,1.0890631230729857,0.9448279198335527,1.203541860968473,1.141612322856053,1.215279527560422,0.9812058093633975,7.5,0.18589939802061015,3.88888888888889,2.4722222222222223,1.7794444444444448,0.9516666666666667,0.8130612244897961,0.5338718820861678,0.4149659863945578,0.26625771604938275,6333.711796356496,7630.685501503536,3236.193545716104,2781.2060977514207,25.50714643979718,0.4975197068519341,12.816838420439932,0.9901277993111859,0.0,0.8461538461538461,1.3549738000164664,2.936099311512276,4.701411363063804,5.531381380978955,5.794101475943049,5.844734387335454,0.20833333333333331,0.006885162889652228,0.08641975308641979,0.05260047281323877,0.040441919191919196,0.023791666666666662,0.02084772370486656,0.013689022617594047,0.01152683295540438,0.008588958582238152,0.4731248458413331,31.219135802469136,16.0703125,11.939643347050755,208.00215344589427,0.0,4.456876071263731,313.85897791963987,,285.9611774563619,283.4774188489465,291.3111555142849,286.01226655733444,354.5617963920424,285.354558198456,286.0658854423217,322.18025950483093,0.0037229260318756706,-0.06396541443052961,-0.5342014684351268,0.2682715674362087,0.2128479459788084,-0.014531043764261314,0.005083599821242527,-0.004685129403462433,-0.05464229259798583,-0.0945772205304032,-0.07855662330981807,0.016431744285841234,-0.037465898673499906,0.035684835103440206,0.009898501184137471,-0.14143829430888963,-0.010478723903684805,-0.12328495589553419,-0.04032985585594332,-0.12391395961131804,0.0309066043925546,0.08895451017580727,0.039501432803900276,-0.10418645953042009,-0.051885856944474076,-0.02774961117846582,0.02380216037737656,-0.06091026357160541,-0.0368613688507788,-0.08161038154013482,-0.052849419578967424,-0.08168433628248001,-0.029255515795232525,-0.012948187469120243,-0.026649797423035856,-0.07460746522522327,-0.02200749101286252,-0.03588762385076927,0.0006134701238290221,-0.017218166278806346,-0.05364692356836037,-0.047493722542624205,-0.02201553623070759,-0.0434123070771975,-0.03288456498137741,-0.04883817564763271,-0.041341889708412904,-0.030316868645540992,-0.03265959052636618,-0.09532967672502543,-0.04331751197530389,0.015464735695598385,-0.08274552561941825,0.08706755061328357,-0.029595957976762545,0.08322382170099432,-0.09355496958525046,-0.09070546427597286,-0.09336730642927676,0.047696779904642654,-0.023729088420547374,0.028622855754638733,0.02456449350378083,-0.015337807865146864,0.031105909254250393,-0.04665909016717243,-0.02527059890267615,-0.050760019710478936,0.02327151717775036,-0.03335704865449054,0.035712729591122296,-0.05215727438460821,0.059217555023644175,0.034688046357481385,0.011796866891181259,-0.044382485679569504,0.015879514911748945,-0.04453037312024754,0.058428246015635,-0.0317488814796065,0.04294165094870493,0.009174764352315089,0.018400961458237254,0.015060533917110085,-0.05190815338655434,-0.020239010115890566,0.06252745880367115,-0.03175580405585406,-0.08356950246108197,0.010406415846074456,-0.05183481185490971,0.0006991462860942329,-0.027299864687220347,0.012962610332713675,-0.00732284610496569,-0.030858551209071078,13.548637139715607,18.027891180112317,11.156659858353894,12.52400699148436,28.88015680563697,36.03727917416303,38.89040184519532,39.43378066294444,39.48481863762799,68.6862700200061,52.29844080847655,0.0,16.38782921152957,0.0,16.38782921152957,27764.586267272643,27453.029155124852,1086.4559095036166,88.0,48.0,54.0,61.0,68.0,71.0,78.0,85.0,88.0,500.2985329880011,36.0,5.1298987149230735,5.937536205082426,6.787844982309579,7.624130585661289,8.487352349405215,9.341982481027898,10.21563050341292,11.083603020331497,11.965344131083846,0.5738396624472573,0.9787341772151896,1.1395043907479594,0.5276060235922978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6062070188736451,0.9633159592951105,1.006435136954097,0.5614354888992523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,4.0,11.0,0.0,3.0,0.0,8.0,0.0,0.0,0.0,0.0,34.63669844076296,6.103966387748303,0.0,0.0,0.0,4.794537184071822,4.794537184071822,0.0,0.0,38.18012822146393,39.53076089108528,24.332653822082676,43.73359586776734,220.88954073214867,-850.4709128458078,-59.41102897785363,-10.765454592984904,-40.49861489741941,641.2673496774237,2469.013365008979,48.08999920717467,31.253333734290877,42.569195948430675,0.5,0.6873215447453263,0.12498811914721145,207.6044382125166,0.08575759738979784,73.27425946033792,0.31267845525467375,12.0,0.4444444444444444,0.21494621309732118,0.46576799365385974,0.745808198424943,0.8774704581180893,0.9191470495890199,0.9271791994075311,2.5925000000000016,,2.25,2.571428571428571,1.558207672904711,2.2433902118882436,-9.740648379052368,2.328488372093023,2.236453201970443,-3.590950302522231,128.6542000000001,44.225772808906605,0.0,0.0,11.835812092322787,115.18240453189577,13.213763929025836,11.64912463690315,0.0,0.0,4.290459441148391,1.9459101490553132,5.579729825986222,3.9318256327243257,7.039660349862076,5.860786223465865,8.592857095337227,7.753194269884341,10.206292200258018,45.33333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.31999999999998,0.0,22.51096571717436,0.0,0.0,0.0,1.403303588914159,0.0,-0.4837139682719723,90.02084686908879,0.0,0.0,0.0,82.20228241078217,23.79966322954379,11.835812092322787,78.55860620540597,11.64912463690315,0.0,0.0,0.0,41.68087586379153,47.890354491017966,42.735167782097264,627.7179558392797,,571.7937834841524,566.807898922383,582.5332705901181,571.8963393882752,709.7330757297223,570.5760599185069,572.0039735588165,644.5657161698061,42.735167782097264,627.7179558392799,,569.743843021071,564.47898853847,581.096776266096,569.852177901545,718.864241163137,568.4576246720285,569.9658789303426,647.9514693121843,4.846666671737742,486.4861442088078,,440.47078135399704,436.41057798446593,449.22156728597383,440.55431315362534,549.8122209605011,439.4789955868845,440.6419819069231,498.458423994266,1.2210047937742075,17.934798738265137,,16.336965242404354,16.19451139778237,16.643807731146232,16.33989541109358,20.278087877992064,16.30217314052877,16.342970673109043,18.41616331913732,2.4751005582203724,313.85897791963987,,285.9611774563619,283.4774188489465,291.3111555142849,286.01226655733444,354.5617963920424,285.354558198456,286.0658854423217,322.18025950483093,76.10196078431373,0.0,5.436813010725537,0.0,0.0,0.0,39.46983550314171,79.50837581937365,6.974276058164265,0.0,16.719009641896037,0.0,-3.3638228850774246,0.0,0.0,0.0,0.0,44.35340362304093,592.5790057291343,107.04293020130085,231.9518456094698,371.41149768204053,436.9791290973374,457.7340165995009,461.7340165995009,712.0,147.57332297323774,269.57788468043816,90.20071518772178,146.05,146.05,1.0,6.833031732786201,6.169925001442312,3.834236236913935,5.8047768232216885,,5.797310801118904,5.79671887621725,5.798515724896812,5.797322753975189,5.809428946921028,5.797168196884971,5.797335289183517,5.805367673587481,0.10954960676896956,0.16585076637776253,,0.16563745146054012,0.16562053932049287,0.16567187785419463,0.1656377929707197,0.16598368419774367,0.1656333770538563,0.16563815111952904,0.16586764781678517,2.5967332275257617,3.0114441372940592,,3.0101571235470357,3.010055014975876,3.0103649437967683,3.0101591853381615,3.0122452465632095,3.010132524902463,3.010161347576717,3.011545919036132,395.4100000000019,159124.33437111997,229.83749966881527,,230.31279310345437,230.34768697316264,230.24398870055057,230.31209561045392,230.28835101585258,230.32113666168755,230.3113644442613,230.0920754384719,4546.40955346057,6.566785704823293,,6.580365517241553,6.581362484947504,6.578399677158588,6.580345588870112,6.5796671718815025,6.580603904619644,6.580324698407466,6.574059298242054,13.230204121289736,6.690135504534376,,6.692201323511937,6.692352818468783,6.691902535583352,6.692198295047703,6.692095192261779,6.692237549928165,6.692195120367054,6.691242525302048,16.719009641896037,22.51096571717436,39.46983550314171,0.7078508872046937,-1.4219554285331526,0.0,4.6140264725236975,6.066933873259326,0.0,504.74182259273744,190.4414395616279,-733.2393576029322,-51.2216279995793,-9.281510855733314,-34.91615988585391,552.8730641190756,2128.6768851558163,41.46112417625652,26.945277027288817,36.701325606134766,5246.0,47.0,2.532364925664402,1.2681244480242064,0.0,0.0,0.5745787107027003,0.22152778800845188,0.0,0.0,0.23570226039551584,0.13608276348795434,0.30274943015462097,0.17479246499677625,0.4071002733496682,0.23503945240560115,0.6221909092266528,0.33414718841503405,0.9260635568454885,0.40185044373754086,25.9574546788841,21.304422850077803,16.595131908272993,12.967183703674314,14.942034377001036,10.214992737835964,10.786980615680662,6.954757753290907,7.719045748424328,4.488189868331961,5.445314076613472,2.976793122098924,3.679035729274488,1.8349443901646176,2.613009199821569,1.1991012723295802,4.759391303985762,2.2614022398798044,6.079729291541472,2.5072875307998475,8.065645847320749,2.976679543906951,128.7158184366996,62.45146453263081,37.37696888497495,26.460481446599196,24.131846226546852,23.797286150782078,168.0,189.0,79.97689199999996,51.08510800000006,0.12658227848101267,106.09,13.972222222222221,7.916666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,79.0,0.0,0.0,80.0,0.0,3.0,3.0,77.0,3.0,36.0,77.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,8.0,4.0,2.0,35.0,9.0,0.0,0.0,9.0,0.0,2.0,16.0,0.0,0.0,0.0,0.0,0.0,3.6888794541139363,4.927253685157205,4.02535169073515,4.1588830833596715,4.330733340286331,4.418840607796598,4.5217885770490405,4.663439094112067,4.770684624465665,4.859812404361672 +53025,CO[C@@]1(NC(=O)C2SC(=C(C(N)=O)C(=O)O)S2)C(=O)N2C(C(=O)O)=C(CSc3nnnn3C)CS[C@@H]21,0,47.320754716981135,7.100352830188678,4.018867924528302,11.731656184486374,163.97573760061573,188.72177162264146,1.9287802147628863,7.147322641509432,8.501438064549525,8.59628747169811,255.65368604523846,39.17857142857143,6.947530357142857,4.767857142857143,10.029761904761907,151.58385219866074,153.13081141071433,2.0621882962857145,7.082460714285714,4.020337301587301,8.382167499999998,292.9006728032217,38.17777777777778,6.884807777777778,4.322222222222222,8.74567901234568,156.12627470790892,147.4782933333333,1.8978978546849,7.000415555555554,4.479719173906417,8.4180893,258.38329957296185,39.262135922330096,6.96770776699029,4.0,7.268608414239482,153.23367756964856,152.06254181553396,1.8854871298834954,7.090128155339806,4.135577729833393,8.491653320388352,263.15230918042613,35.8359375,6.8456796875000006,3.40625,6.034722222222221,157.82720599849836,136.183236140625,1.6683585466468125,6.9566359375,4.491563250171467,8.450266289062501,227.0125953942426,30.446153846153845,6.890130769230769,3.1384615384615384,5.333333333333333,159.55630362390585,113.2218739923077,1.5237982339314922,6.974786923076922,4.610434472934473,8.52136693846154,207.4862001977295,31.616666666666667,6.667768333333333,3.175,5.9185185185185185,160.951138991123,119.79416289999999,1.54409233482735,6.755319166666667,3.880728452217649,8.282508416666667,204.95042119858897,30.324324324324323,6.914081981981983,3.279279279279279,7.321321321321322,162.42072206582898,114.65607623423425,1.5034225534251173,6.978871171171171,5.3754587921254595,8.453485405405404,208.6127079815795,27.07547169811321,6.887952830188679,3.160377358490566,6.864779874213836,162.92121874003283,100.48352829245283,1.4704173232579152,6.948441509433962,5.069095038434661,8.456364169811321,203.0497247419214,16.12958348166607,0.20725119259522964,0.04264998986492573,0.8059807760768958,5.082393892646651,1.9075751722154164,70.77233594588822,0.4041851861144849,0.18270288358846562,3.6135072647638067,0.1354334681381274,45.00990396927333,-0.13969129837766317,-0.021858571301429035,-0.026834377735111877,0.330811676753293,1.376164058835828,0.26026517637626306,-0.11476297857016951,0.05855524456708088,-0.020033746122158334,-0.22544734856578885,-0.0212111568173727,4.274836664507663,0.05406431707606581,0.0364822665242672,0.003566190399223714,0.02672362643882756,0.9069375771879626,0.18768649901978,0.8633572440488806,0.03272168494356357,0.030816445551995544,0.7477725282095368,0.015631748843004657,6.947917482431242,0.5606528253498639,-0.020288873489166172,0.0018205876701517967,-0.1831560829096489,-1.2534060845417894,-0.10040974945309289,2.341461153030989,-0.0016895656183476325,-0.016804385695078517,-0.508617458951129,-0.006888212230452069,-3.0044167966440227,-0.7771365477038089,-0.008639739175418316,0.0016664853735070483,-0.14457157796368816,-0.6052909052252682,-0.22647219866749682,-3.6687696431169936,-0.08236060937630811,-0.0040975917252581056,0.0512813825132517,-0.0006977769529859343,-5.805413151062018,-3.1905413916805863,-0.05239756414820488,-0.005098117054536837,-0.018752909603746197,-1.2080187918564564,-0.19217791640819082,-14.36865835532218,-0.05445449344354641,-0.047796323356245,-0.5166711312051029,-0.029161144480652882,-7.9468943897424635,2.3046932478936744,-0.0001289284442863641,0.0007597247945691205,0.009742494363355884,0.3551672534050606,-0.13776762028969644,9.957003939017447,0.01754830130889061,0.003002383707131767,-0.33359424151752387,0.0005702692832562928,3.3618678293459676,-0.4216113585996101,0.04166993608061601,0.007790392238442964,0.01672872587788928,0.6438606637965842,0.0028828177247056655,-1.580389304718745,-0.020404149684553886,0.03494936866378659,0.7469628606143072,0.024222762356518147,-2.239248216096405,-2.9038803844784615,-0.0056441794232823,-0.010550657887493233,0.015129939480242084,0.3047150033622088,0.12253380113087518,-12.43792755233179,0.002150204861328929,-0.009207155571377721,0.04868219484598056,-0.011267781060875753,-0.6605615240351512,,,0.4805555555555557,1.0555555555555556,0.3888888888888889,0.013888888888888888,0.6666666666666666,-0.2777777777777778,1.1750473826253196,0.025067577212997745,0.0346231327685533,0.9516334250078522,0.1917427348965846,0.2808067312896703,2.126680807633172,0.47254946618625493,2.0044048892256594,0.9957244868435772,0.3916240475243187,0.38995878898263414,0.0,1.0086804023820823,10.84909706611322,2508.0,376.3186999999999,213.0,621.7777777777778,8690.714092832633,10002.253895999997,102.22535138243298,378.8080999999999,450.57621742112485,455.60323599999987,13549.645360397639,2194.0,389.0617,267.0,561.6666666666667,8488.695723125002,8575.325439000002,115.48254459200001,396.6178,225.13888888888889,469.40137999999985,16402.437676980415,3436.0,619.6327,389.0,787.1111111111111,14051.364723711802,13273.0464,170.810806921641,630.0373999999998,403.1747256515775,757.6280370000001,23254.496961566565,4044.0,717.6738999999999,412.0,748.6666666666666,15783.068789673802,15662.441806999997,194.20517437800004,730.2832,425.9645061728395,874.6402920000002,27104.68784558389,4587.0,876.2470000000001,436.0,772.4444444444443,20201.88236780779,17431.454226,213.549893970792,890.4494,574.9200960219478,1081.6340850000001,29057.612210463052,3958.0,895.717,408.0,693.3333333333333,20742.31947110776,14718.843619000001,198.09377041109397,906.7222999999999,599.3564814814814,1107.777702,26973.206025704832,3794.0,800.1322,381.0,710.2222222222222,19314.13667893476,14375.299547999999,185.291080179282,810.6383000000001,465.6874142661179,993.9010100000002,24594.050543830675,3366.0,767.4631000000002,364.0,812.6666666666667,18028.700149307017,12726.824462000002,166.87990343018802,774.6547,596.675925925926,938.3368799999998,23156.010585955322,2870.0,730.1229999999999,335.0,727.6666666666666,17269.64918644348,10651.253999,155.864236265339,736.5348,537.324074074074,896.374602,21523.27082264367,854.8679245283018,10.98431320754717,2.2604494628410636,42.716981132075475,269.3668763102725,101.10148412741707,3750.933805132075,21.4218148640677,9.683252830188678,191.51588503248175,7.177973811320752,2385.5249103714864,-7.822712709149137,-1.224079992880026,-1.502725153166265,18.525453898184406,77.06518729480636,14.574849877070731,-6.426726799929493,3.2790936957565293,-1.1218897828408667,-12.625051519684176,-1.187824781772871,239.3908532124291,4.865788536845923,3.2834039871840477,0.32095713593013425,2.4051263794944804,81.62438194691664,16.8917849117802,77.70215196439925,2.9449516449207214,2.773480099679599,67.29952753885831,1.4068573958704191,625.3125734188118,57.74724101103598,-2.0897539693841156,0.18752053002563507,-18.86507653969384,-129.10082670780432,-10.342204193668568,241.17049876219187,-0.17402525868980614,-1.7308517265930874,-52.38759827196629,-0.7094858597365631,-309.45493005433434,-99.47347810608754,-1.1058866144535444,0.21331012780890218,-18.505161979352085,-77.47723586883433,-28.988441429439593,-469.6025143189752,-10.542158000167438,-0.5244917408330375,6.564016961696217,-0.08931544998219959,-743.0928833359383,-414.77038091847623,-6.811683339266635,-0.6627552170897888,-2.4378782484870056,-157.04244294133935,-24.983129133064807,-1867.9255861918834,-7.079084147661033,-6.21352203631185,-67.16724705666337,-3.790948782484875,-1033.0962706665202,276.5631897472409,-0.015471413314363691,0.09116697534829446,1.169099323602706,42.620070408607276,-16.532114434763574,1194.8404726820936,2.105796157066873,0.36028604485581206,-40.031308982102864,0.06843231399075513,403.4241395215161,-46.79886080455672,4.6253629049483775,0.864733538467169,1.8568885724457098,71.46853368142085,0.31999276744232885,-175.4232128237807,-2.2648606149854813,3.8793799216803118,82.91287752818809,2.6887266215735144,-248.55655198670095,-307.8113207547169,-0.5982830188679238,-1.1183697360742828,1.603773584905661,32.29979035639413,12.98858291987277,-1318.4203205471697,0.22792171530086647,-0.9759584905660383,5.160312653673939,-1.19438479245283,-70.01952154772603,0.7322521767140772,0.6007007990775336,0.43619950724885076,0.3472735147894701,0.27461026634454705,0.2050278164091245,0.1631142509109146,0.12529456411444673,0.10675073633745984,0.07026574478121653,0.0639303597151673,0.04357452346601668,0.039122305599930435,0.025603585265276445,0.02534719387570441,0.015249387631382932,16.00633470433176,5.737148918984857,3.5602070207446443,2.2002600658853435,0.4918176052966214,-0.39039038055442,4.030080229457275,0.9715070198039566,6.027499647213482,0.6524233553118273,14.782386771474116,10.31737858248189,32.06461109369695,11.750437679696086,2.93385915696724,0.7404050831514423,3.5065426752786384,2.265730985182942,7.012658268678742,0.6020200444850836,3.7193087309193835,2.475127847412043,24.441264985338996,14.699772939391226,0.3538837607792585,0.7188322240589411,0.8586543378747892,0.889984082443834,0.896250031357643,0.896250031357643,1.3710693659416806,1225.2229761288495,0.0,6.0,4.0,0.0,1.0,1.0,2.0,0.0,0.0,3.596702284092731,1.3988484054229735,0.5567882076288093,0.36810896234579094,0.3303731132891867,0.3303731132891867,-27.727467163749452,3226.484340876112,118.83577560375032,60.877063035398336,130.74219316710816,,17.0,1002.0,50.91408271476943,29.079213315199816,21.439915024260237,10.729541011889975,28.42367962963271,35.31537037520495,7.04767198267719,0.0,20.842240603617103,15.57705782580294,17.300000000000004,38.0,14.0,0.5,24.0,0.0,0.019444444444444327,-10.0,0.3192008879023311,0.03230718305196967,-0.2868937048503614,0.08265582655826598,0.22252272727272715,0.0,0.7603773584905652,0.9777777777777779,0.4411764705882341,0.7280701754385955,0.8951219512195119,42.301705774511504,0.9024327796679188,1.2464327796679187,34.25880330028268,6.902738456277046,10.109042326428131,76.56050907479418,17.011780782705177,0.4914772727272728,0.21579961464354525,0.028901734104046235,0.39306358381502887,0.4117647058823529,0.5187871182524995,-2.2682906910620666,-0.10462705627277834,-0.042797937567208795,-0.11341453455310334,0.4812128817475005,2.1040050180192518,0.05641049942679187,0.039698207887155695,0.06375772781876521,-0.06029491632051365,0.7337390747770814,0.7897197036832873,1.6456660607001348,0.7716904341241797,0.45369467521147055,1.0158340718225964,0.7183951087990029,0.7474057694129848,0.7651907725868332,0.6839792757309509,0.8544603677968299,0.7438030856773716,1.0675333274476915,0.6255565331265049,0.8346563341002895,1.1293973301923832,0.7027085970847256,1.0316008397470624,1.0430362388759933,1.058474112680201,0.6183665866218353,0.4748846986169183,0.6763069317400044,0.8163329431658591,0.87255856570905,0.9415077063602721,0.9290094769400554,1.3295910665889052,1.0951726518376843,1.1398005022623987,0.8626989740035623,1.0266518576150436,0.9116963651144252,1.0071546653764258,0.9232131381844654,0.9692630364287521,1.201355169065066,0.9440031767644285,0.9210232735783251,1.1935388140459364,1.0455780646830835,1.1919797127037253,1.1900277138827573,1.3835736312330293,0.9159936844618329,0.9219695911393027,0.9054465458622408,1.1335599369354172,1.2860466142844533,1.3083221252400075,1.1122938635495907,0.9644876325088338,1.2332622501712225,1.0655404712287893,1.2843080085841119,1.2351260639203319,1.3108425673269,1.263843416925586,1.2982450263753944,1.1787757685346305,0.9316838821694478,0.9289535425533653,0.8385312757867373,0.9789237338044758,0.9245616970715812,1.0378731789004536,0.9328673104581199,1.0099480484395025,0.9227212683611437,1.022756108070087,0.9188151475650396,0.9862388900532497,0.9806477705744945,0.7531405355272871,0.7340650748220162,0.9157275650208512,0.8493798418304987,0.9890410841521163,0.9781863891142315,1.0040802971435574,0.7640485904292468,0.6900761348967955,0.7672347165737814,1.024192857098263,1.146839410258674,1.0438388466846198,1.2448940518155593,1.010600706713781,0.9473180374820995,0.887506045659434,1.1452014288629373,0.9547752044065843,1.0690899128703824,1.0262331943179224,1.1035524551717457,1.0022653240539454,9.0,0.2627323742475258,5.666666666666668,5.381944444444445,2.9650000000000007,2.0033333333333334,1.176326530612245,0.77515589569161,0.7226001511715795,0.5337500000000002,10270.425353138058,10862.070890287521,3926.262533458369,3740.53103857294,18.26192329820615,0.4746997975955876,9.592992004841545,0.9036733574873647,0.0,0.4117647058823529,2.1312181704704676,4.329072049140225,5.171132246934389,5.359811492217408,5.397547341274012,5.397547341274012,0.23076923076923078,0.006736727544808351,0.10303030303030307,0.08822859744990892,0.047063492063492064,0.03709876543209876,0.02262166405023548,0.014906844147915576,0.0157086989385126,0.012130681818181818,0.5782950052446874,28.994082840236686,11.623096811261131,5.406462585034014,218.5088638669527,0.0,4.5268787470125105,251.807473515702,,174.36846747195906,210.72243562628165,212.59697714346942,174.37525574005087,250.82813324129282,211.08515387617314,209.6216762138381,248.14668951488224,-0.008660564517146108,-0.1054689771755367,-0.6291766497506202,0.4104461130742049,0.2707708390778016,0.13643770382794235,-0.0016215796332894267,0.14487231738991838,-0.10965205216620402,-0.06239017443362606,-0.15661680313568896,0.09497546734216414,0.003351873105559037,0.17602922360750228,0.08361526955851538,0.033156654888103626,0.178446928031325,0.09839009322070645,0.01219907796612782,0.08095716039997368,0.16866972730112426,0.2069381554871218,0.11542013254110849,0.15436419253803207,0.03475928724304246,-0.09789508680314907,0.04268670815439049,-0.22724621770901227,-0.24661726560691258,-0.05263737488073887,0.03308441245773272,-0.004180176999037925,-0.09197657620407372,-0.14075451401766428,-0.05086048762649157,-0.06675012678754062,-0.04818081933654099,-0.041687283277988624,0.039073523318173715,-0.1793734816696113,-0.11909563052580792,-0.11872255519266217,-0.05183903560738897,-0.20376949033698522,-0.02242762481235843,0.014191581407157807,-0.005152175179286392,-0.12898079398314574,-0.19780680606583312,-0.25282153261496326,-0.11953383976603003,-0.023267192171785807,-0.23768696747496323,-0.10074460981005512,-0.20302648150978522,-0.13472659393341113,-0.26160683628784537,-0.14298328281868686,-0.2153171212518289,-0.17655879459701865,0.14288609811365172,-0.0006220878281659243,0.017813012311965377,0.01208775029446408,0.06988188261420007,-0.07222133224228125,0.1406906216382411,0.04341648806475574,0.016433148991203517,-0.09231868571857678,0.004210696891219534,0.07469173521545383,-0.02613901090991226,0.20106005451075573,0.18265871253698904,0.0207557380702257,0.12668452650396494,0.001511247245558152,-0.022330608190283478,-0.05048218090500338,0.19129073377139083,0.20671408852505288,0.17885359276049528,-0.049750122053694244,-0.1800344310055619,-0.027233519636751243,-0.24737773492813483,0.018772084805653715,0.05995501525434283,0.06423537217071613,-0.1757456128315688,0.005319850739704959,-0.05039414480242493,0.013472283651036917,-0.08319790680826282,-0.014675914982757866,0.4999999999999999,5.246096393261847,14.258317333833284,27.863291055363177,52.91924638882696,58.78046139427853,60.66774441314646,60.70578214899552,60.70578214899552,72.15857601212375,35.84608152636878,14.098465710875473,14.03851640337483,0.0,36.31249448575496,15886.850204657034,15508.736731891679,1887.224410882116,250.0,59.0,84.0,109.0,128.0,153.0,176.0,189.0,222.0,575.0021445040006,39.0,5.2832037287379885,6.180016653652572,7.113956109566034,8.035602692918582,8.97853441008332,9.912397738665884,10.861630148432843,11.80386971074401,12.758200468499693,0.9308176100628929,1.0501886792452833,1.130573737185527,0.9042088777111551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7393682182804204,1.0349241583425821,1.0592697439843892,0.7052432668046656,0.0,3.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,0.0,0.0,1.0,2.0,2.0,1.0,1.0,4.0,2.0,1.0,1.0,0.0,0.0,26.000373824649976,21.22598666989679,0.0,11.063616211172214,17.539345052673266,19.283521283065944,14.270877303288827,0.0,16.860566757692155,35.285654848173344,15.999874721379003,25.663176737448303,4.237168497710827,382.83286965547785,-1673.8585132899339,-77.20830912578256,-31.582236099810068,-83.6929256644967,355.1054024917284,1552.6258275861783,41.62746647796776,29.29482693558827,47.049267502611464,0.47058823529411764,0.6373041243604031,0.1091990255451473,270.82763210243155,0.08054390952759395,63.645753778223465,0.3626958756395968,9.0,0.23076923076923078,0.3720753783814532,0.755784247264019,0.9027940049018595,0.9357342747222452,0.9423223286863225,0.9423223286863225,-1.3974999999999984,,5.5,3.4870278970775583,2.6142186041507753,5.493060691896616,-10.589075117848012,3.244568543451653,3.2552237701745854,-4.796912721482335,127.98470000000002,38.92260366384056,0.0,30.423953269612767,12.781339459839375,20.837264902562655,18.615504754771113,21.080416870905196,0.0,0.0,4.3694478524670215,0.0,5.802118375377063,2.3978952727983707,7.4377951216719325,4.59511985013459,9.175645402179295,6.529418838262226,10.972997101616976,49.33333333333332,0.0,11.08945563242353,0.0,0.0,0.0,0.0,0.47139658292278286,1.4351536784940617,55.66000000000001,0.0,60.62414187501665,0.0,0.0,0.0,0.0,0.0,-5.623819909444273,59.92040807083293,11.050456081168516,0.0,0.0,99.27670239475911,35.75722085683634,0.0,0.0,26.236853352725902,0.0,0.0,0.0,47.92307051869122,39.18651556886228,44.26170913635578,503.614947031404,,349.02564095180435,421.25114748050345,425.04871992004155,349.0425933711683,504.4837423493798,421.99005394437677,419.0625066626666,496.98830389069303,44.26170913635578,503.614947031404,,344.7478631740265,417.9744632083182,422.7694765298038,344.7702128330267,512.6981939950798,418.9373923337394,416.0604101214232,501.25222630978845,5.299011857317486,375.7399808166799,,263.28373331854016,318.3917330170815,319.9853153287004,263.2878123520834,371.1570738991794,319.06236658327975,317.1058825302091,373.6258901035547,1.2294919204543273,13.989304084205665,,9.695156693105677,11.701420763347318,11.80690888666782,9.695627593643565,14.013437287482772,11.721945942899355,11.640625185074072,13.805230663630361,2.6495657732333098,251.807473515702,,174.36846747195906,210.72243562628165,212.59697714346942,174.37525574005087,250.82813324129282,211.08515387617314,209.6216762138381,248.14668951488224,54.850980392156856,0.0,2.858662110699081,0.0,0.0,5.077529936949877,18.962670525050438,56.14129643117263,0.4699061844764063,2.5329141488755487,5.400282204517865,4.062850019074281,-1.709998930301475,1.0764959717944926,-1.810973363882591,0.0,0.0,37.37789314064728,470.2911043628041,112.95456303493478,229.44081860443194,274.07000908752264,284.07000908752264,286.07000908752264,286.07000908752264,1445.0,155.92741166130094,267.6471677844021,87.28043781450748,321.13,219.92999999999995,0.8888888888888888,8.127478393399304,6.285402218862249,4.06819118048176,5.894252778897227,,5.9098274123222385,5.901761635400529,5.900766181706509,5.9098313392023085,5.897587775047111,5.902566027326004,5.903520456323084,5.905121116340243,0.11300531056893777,0.16372924385825632,,0.16416187256450662,0.16393782320557027,0.1639101717140697,0.16416198164450857,0.1638218826401975,0.16396016742572234,0.16398667934230787,0.1640311421205623,2.684132318729382,3.054911616353213,,3.057550473800914,3.0561847340781987,3.0560160492486768,3.0575511382668097,3.0554772610841687,3.0563210217092616,3.056482705938914,3.056753805712264,350.47000000000077,1122.2008347758485,255.445986867021,,252.88689283981878,253.10105067770925,253.6505002805572,252.88933947733474,256.6185472668646,253.0730732647663,252.9918631613949,254.02996537080585,31.172245410440237,7.095721857417249,,7.024635912217189,7.0305847410474795,7.045847230015478,7.0247038743704096,7.128292979635128,7.029807590687953,7.027551754483191,7.0563879269668295,8.303980912653056,6.823944831062701,,6.813876170352502,6.814722664240043,6.816891181799083,6.813885845134984,6.828524575884407,6.814612119620521,6.8142911722549835,6.818386079423038,6.047647633827608,61.70063784681114,32.20975531540819,2.9287005248157483,-4.891586783969373,0.0,0.0,0.0,2.858662110699081,439.8694791258926,282.5070263547199,-1235.2042591160653,-56.97496623168736,-23.305740738038963,-61.76021295580327,262.04586714488426,1145.7420205000706,30.718500686617276,21.617773971699442,34.71945516666881,4350.0,61.0,3.2802997126457845,1.9923852136425761,0.08333333333333333,0.02946278254943948,1.1865897142835766,0.5073815836325711,0.0821332133044574,0.02151657414559676,0.0,0.0,0.2628917115316043,0.49756242432900966,0.666205965580058,0.6493239935026922,1.3291291547972035,0.9756709607981571,2.0513674994568762,1.2274522641965737,26.361078361706777,21.62522876679121,17.01178078270518,13.543667076789335,16.202005714328276,12.096641168138346,13.701597076516826,10.524743385613526,11.635830260783122,7.658966181152602,8.183086043541415,5.577539003650135,5.985712756789356,3.917348545587296,4.461106122123976,2.683892223123396,8.161788198581243,4.943825823903706,13.539765929676644,6.755330193801788,19.57756293672645,8.946349125031471,125.87627619784661,55.29157238685593,39.350010162840604,35.562018739151185,35.421342495582756,35.421342495582756,196.0,241.0,65.441481,36.39051900000002,0.39622641509433965,261.19,14.368055555555557,7.861111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,4.0,5.0,5.0,53.0,0.0,0.0,56.0,5.0,7.0,9.0,47.0,12.0,39.0,44.0,0.0,0.0,0.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,14.0,4.0,4.0,36.0,19.0,0.0,7.0,8.0,0.0,4.0,9.0,4.0,0.0,0.0,1.0,1.0,3.901972669574645,6.686718881060069,4.457250055911469,4.944317413058608,5.350969112821869,5.517452896464707,5.739591927352912,6.019657125228095,6.157376152467059,6.441046216685831 +37768,NCC[C@H](O)C(=O)N[C@@H]1C[C@H](N)[C@@H](O[C@H]2O[C@H](CN)[C@@H](O)[C@H](O)[C@H]2O)[C@H](O)[C@H]1O[C@H]1O[C@H](CO)[C@@H](O)[C@H](N)[C@H]1O,0,23.03614457831325,6.650536144578314,3.0,7.373493975903615,171.18074578921937,90.67549002409638,1.1432024928735782,6.641202409638557,6.52677376171352,8.185130024096386,176.9111303091604,23.941176470588236,6.811011764705881,3.9176470588235293,5.823529411764706,155.7565874577212,89.27183884705882,1.4895461958588232,6.891523529411764,3.515359477124183,8.256559811764706,229.89696000072223,20.692307692307693,6.6878717948717945,3.4743589743589745,5.121794871794871,158.25337003068393,75.59673851923075,1.2951067514464165,6.74944423076923,3.3206908831908826,8.188022846153846,194.34636392119015,17.933609958506224,6.677854771784234,2.767634854771784,4.647302904564316,166.64428237016844,64.70718714522822,1.055123029704365,6.691640248962655,4.186721991701244,8.23565507053942,155.2919982039806,15.475836431226766,6.6079252788104075,2.546468401486989,3.524163568773234,169.37373082668663,54.091469100371754,0.9778801008627916,6.6133468401487,3.835192069392813,8.206116431226764,141.1191637819256,15.24436090225564,6.555518421052631,2.5714285714285716,3.5413533834586466,169.443281135293,53.278818703007516,0.9974116138413122,6.5632124060150385,3.7242063492063497,8.152712165413533,142.17720859035907,15.597785977859779,6.458047970479705,2.6383763837638377,3.6162361623616235,167.0868185980538,55.19539826199262,1.0372688043174685,6.479980073800737,3.6801968019680196,8.054723645756455,147.66660709203504,15.484429065743944,6.450106920415225,2.5536332179930796,3.43598615916955,166.56729434602903,54.368271221453284,1.0426654138648443,6.476429757785468,3.660611303344867,8.032875418685121,146.9201257502815,13.990595611285267,6.419642319749216,2.272727272727273,3.1128526645768027,170.57896370814976,48.32687892789969,0.9427042999665077,6.427975548589341,3.7611459421804248,8.027111197492165,130.30763521714493,8.724052837857451,0.22156205545071844,0.03816303671241856,0.6587313107853099,4.193932355929744,1.1879090647730837,40.895154755697476,0.18284738343334012,0.2018375671360139,2.764108643408977,0.14551388242125124,42.65501443234386,-0.46820592077736856,-0.05371258698863477,-0.019488503659275815,0.22844090749959442,0.06645035137004439,0.12720207867868352,-1.9238004625720446,0.022877357863228812,-0.04519823333020231,-0.705415045487881,-0.03645340446235686,5.38337555322365,-0.6200985592043803,-0.023926474666041277,-0.004978747156085231,-0.04002571918815201,-0.08851066918275509,-0.20790741029635734,-2.909069463528812,-0.028742077757670754,-0.020162088297583196,-0.38347285238162,-0.017000777385724544,-4.314886890199759,0.5678533762104359,0.030480288197734247,0.006965962774677732,-0.03382504672491894,0.3613843465648828,-0.06486518734564525,2.521281147816985,-0.010937592016472744,0.02703587684738861,0.28693647760064905,0.02096344038032849,-1.2445986081207838,-0.5896415869056914,-0.018786348907071773,-0.003130149622849762,-0.026850628203682277,-0.4818348954558774,-0.027365354142307063,-2.7165104092111725,-0.002987139219960971,-0.017199357793065872,-0.10589462251748069,-0.012680784915988577,-1.5235765648664652,-0.45260614884576816,-0.010065783143444284,0.00011330572794426608,0.028966850280003977,-0.2641379904980916,0.12960784713873402,-2.079417793427356,0.01018315717883169,-0.010205204603175769,-0.17857981128851547,-0.005945453215707285,0.17880325683011655,0.14737382821643571,-0.0010171525920513865,-0.00014614871403116018,-0.022889048748231697,-0.03406039576435829,-0.006791834062572873,0.7306362581734935,0.007911136196605691,-0.0006419062637425509,0.07511788138639114,-0.000936648793011373,1.5737600140401116,-0.36381604292686637,-0.001999617463475439,-0.0007343581061412259,-0.07137149088286275,-0.10359175477078192,-0.1385386160754608,-1.766389455618278,-0.019168257713424116,-0.002208651473363319,-0.08741687055053082,-0.001229458524974119,-3.8729438179798708,-0.13603304709566066,0.005976098418677538,0.0020849701117420273,-0.014738411287632685,0.05424530770284369,-0.05365119229921385,-0.7076166377082902,-0.011680879645897044,0.004780093475082484,0.07793350638140684,0.004499018738245651,-2.4649584558583837,,,0.4333333333333334,0.70625,0.0375,0.0,0.66875,-0.63125,1.4791340585543051,0.026558320915647915,0.03300832091564791,0.8830679588527477,0.145324988863349,0.3259720292803305,2.3622020174070526,0.47129701814367947,1.9853078097734673,1.1575486676266682,0.2253455970710144,0.6024135450757845,0.0,0.8277591421467989,7.051635378747,1912.0,551.9945000000001,249.0,612.0,14208.001900505209,7526.065672,94.88580690850699,551.2198000000002,541.7222222222222,679.365792,14683.623815660312,2035.0,578.9359999999999,333.0,495.0,13239.309933906301,7588.106301999999,126.61142664799998,585.7794999999999,298.80555555555554,701.807584,19541.24160006139,3228.0,1043.308,542.0,799.0,24687.525724786694,11793.091208999998,202.03665322564098,1052.9133,518.0277777777777,1277.3315639999998,30318.032771705664,4322.0,1609.3630000000003,667.0,1120.0,40161.272051210595,15594.432102,254.284650158752,1612.6852999999999,1008.9999999999999,1984.7928720000002,37425.37156715932,4163.0,1777.5318999999997,685.0,948.0,45561.5335923787,14550.605188000001,263.04974713209094,1778.9903000000002,1031.6666666666667,2207.44532,37961.05505733799,4055.0,1743.7678999999998,684.0,942.0,45071.912781987936,14172.165775,265.311489281789,1745.8145000000002,990.638888888889,2168.621436,37819.13748503551,4227.0,1750.131,715.0,980.0,45280.52784007258,14957.952929000001,281.099845970034,1756.0746,997.3333333333333,2182.8301079999997,40017.6505219415,4475.0,1864.0809,738.0,993.0,48137.94806600239,15712.430382999999,301.33030460694005,1871.6882,1057.9166666666665,2321.5009959999998,42459.916341831355,4463.0,2047.8658999999998,725.0,993.0,54414.68942289977,15416.274378000002,300.722671689316,2050.5242,1199.8055555555554,2560.6484720000003,41568.13563426924,724.0963855421685,18.38965060240963,3.1675320471307407,54.67469879518072,348.0963855421687,98.59645237616594,3394.2978447228907,15.17633282496723,16.752518072289153,229.4210174029451,12.077652240963854,3540.3661978845407,-39.797503266076326,-4.565569894033955,-1.6565228110384442,19.417477137465525,5.648279866453773,10.8121766876881,-163.5230393186238,1.944575418374449,-3.8418498330671964,-59.96027886646989,-3.098539379300333,457.5869220240103,-96.73537523588332,-3.7325300479024395,-0.776684556349296,-6.244012193351714,-13.807664392509794,-32.43355600623175,-453.8148363104947,-4.483764130196637,-3.1452857744229785,-59.821764971532716,-2.6521212721730287,-673.1223548711624,136.85266366671505,7.345749455653953,1.6787970286973333,-8.151836260705466,87.09362752213674,-15.632510150300504,607.6287566238934,-2.6359596759699313,6.515646320220656,69.15169110175643,5.0521891316591665,-299.9482645571089,-158.61358687763098,-5.053527856002307,-0.8420102485465859,-7.222818986790533,-129.613586877631,-7.3612802642806,-730.7413000778054,-0.8035404501695013,-4.62662724633472,-28.485653457202307,-3.411131142400927,-409.8420959490791,-120.39323559297434,-2.67749831615618,0.030139323633174776,7.705182174481058,-70.26070547249238,34.47568733890325,-553.1251330516767,2.7087198095692298,-2.7145844244447543,-47.50222980274511,-1.5814905553781378,47.561666316811,39.93830744665408,-0.2756483524459258,-0.03960630150244441,-6.20293221077079,-9.230367252141097,-1.8405870309572485,198.00242596501676,2.1439179092801424,-0.1739565974742313,20.356945855712,-0.2538318229060821,426.48896380487025,-105.14283640586437,-0.5778894469444018,-0.21222949267481428,-20.626360865147333,-29.938017128755973,-40.037660045808174,-510.48655267368235,-5.53962647917957,-0.6383002758019991,-25.263475589103408,-0.3553135137175204,-1119.2807633961827,-43.394542023515754,1.9063753955581346,0.6651054656457067,-4.701553200754827,17.30425315720714,-17.114730343449217,-225.72970742894458,-3.7262006070411573,1.5248498185513124,24.86078853566878,1.4351869775003625,-786.3217474188244,0.7471505597022279,0.542537237651106,0.44885430299398044,0.3110742188511039,0.2802157659544363,0.16941335694580167,0.18617860923260748,0.09046915654242234,0.11263308350530246,0.05016913176364587,0.06776256631288066,0.026933557130469504,0.04398430619404481,0.014375816043527808,0.027179352310537013,0.007760300500079512,8.027226278307674,5.795419390031896,3.547333180575467,2.2914107484860846,0.4224267375518413,-0.3916621463087862,3.199638521527392,0.9776421539768471,6.022573396563247,1.8901846419710342,14.543005228224747,11.0581328379044,16.017816838175673,11.809048308533102,1.8951765244466963,0.7514549218659842,3.4924894162486204,2.3402993522062014,7.008281851935675,1.1446597475325362,3.705415589898923,2.5360003853168602,20.789988208052236,14.701998741717437,0.25868244495374576,0.5069806882953986,0.7253542694496469,0.8851264487601804,0.949367072959841,0.9582817074197687,1.842391643552881,815.0542713752033,0.0,1.0,5.0,0.0,0.0,16.0,0.0,0.0,0.0,4.7126775526805025,3.117047302839594,1.7137208549099698,0.6869825302247445,0.27415527111040294,0.21686746987951722,280.6868773457858,5177.080789726324,147.52638135992518,62.37446734610029,136.65823387160572,,15.0,958.0,110.36326790521005,45.64675634279746,25.93115605767717,0.0,0.0,0.0,0.0,0.0,5.316788604006331,41.88212172384894,17.333333333333336,28.25,1.5,0.0,26.75,0.0,0.06666666666666661,-25.25,0.19901675668190016,0.0,-0.19901675668190016,0.2085233918128664,0.2803052543786488,0.0,0.6369477911646572,0.9991666666666668,0.437931034482757,0.6369477911646572,0.7906432748538004,59.1653623421722,1.0623328366259166,1.3203328366259166,35.32271835410991,5.81299955453396,13.03888117121322,94.48808069628211,18.85188072574718,0.4336947456213512,0.2653846153846154,0.0,0.4903846153846153,0.9545454545454546,0.32606342250675563,-2.092116343061333,-0.11098280978468873,-0.02520622100073896,-0.0996245877648254,0.6739365774932445,4.324170178675054,0.07185604685410611,0.05209843588765125,0.06974468030121055,4.821580556308406,0.9592483116374673,1.0917147571333319,1.5305755663990024,1.173357011381018,0.8230985984314809,1.5108622222524042,0.9607271388844721,1.3590479693010946,1.057921732404657,1.1484793202484713,1.1230910396441591,1.1116908550515414,1.0006901958274672,1.010674832987131,1.049352134862338,1.5045866246284936,0.981528912270986,1.5941302118940945,1.0061613242955751,1.5262432409151165,0.991086024609361,0.9338081716438708,1.0506920489436498,1.281927145830704,0.9327407294895783,0.9098113737852085,0.8239824688438472,1.2072914933187524,0.9847870995316367,1.159564506267194,0.935678198427897,1.1473613557862743,0.9054166948584477,0.8353841411104348,0.9244066480924995,1.0584025442285891,1.0861377258472562,1.177608220279863,1.150393507737474,1.0983516312477373,1.231253219913463,1.0234746916039237,1.0825569853062957,1.0116520782504128,1.171186857499178,1.0088926275767116,1.1980922781827872,1.0147787843647942,1.0562399759798833,1.0934764781939341,1.049743960761777,1.0177076119121076,1.1335551949234846,0.9070016963041997,1.0539665395490854,0.949437512512894,1.0939157866228917,1.0575771696458256,1.0997749258496894,0.9843997148604403,0.9598628362323558,0.9806212769732354,0.9519228276472248,1.1566566216565648,1.0309313268959905,1.0657416287051364,0.9598220117022029,1.0345483431961164,0.976979525588127,0.9010640985317528,0.9962404323884286,0.9981019854235289,1.0027436394935778,0.94075345473792,0.9458215112601843,1.224733545713933,0.9614228528915941,1.2268970767374119,1.006536595671297,1.2038037453366819,0.9412522086910081,1.0156486628625299,0.9445873280588117,1.1382973837175305,0.9996764013999658,0.9442848263143718,0.9218533200421841,0.961457479922245,0.9562983885072804,1.033650836402862,1.0017368823176107,1.036029705974269,0.9486380184765714,0.906703354146461,0.9324606127677038,1.0383140410963836,9.5,0.507907356392205,6.666666666666669,4.1875,3.5466666666666673,1.826388888888889,1.6653061224489796,1.3506944444444442,0.8422776518014612,0.7018750000000002,9480.78398885541,11074.38617249236,3906.4135170052264,3399.269247102744,15.844043530565834,0.46215838555695576,8.521585951785399,0.8592834268421914,0.0,0.9545454545454546,1.6623618786664218,3.2579921285073303,4.661318576436955,5.68805690112218,6.100884160236522,6.158171961467407,0.22619047619047616,0.008608599260884829,0.10928961748633884,0.05658783783783784,0.052156862745098044,0.02725953565505804,0.02281241263628739,0.01800925925925926,0.012032537882878018,0.011320564516129034,0.5442677034702474,34.48979591836735,15.134641225477022,7.755552329801132,229.26453997686886,0.0,4.5955046486647895,270.1551810956611,,234.28281135814433,228.53940476256275,240.6379559774602,234.38278095528685,401.2060164537815,232.6063987756599,234.55241771692732,322.57654118616824,-0.05366839581090337,-0.24242683107163152,-0.5106643846540152,0.34678920488424547,0.015844402277039864,0.10708065326783399,-0.04704225901734783,0.12511722855235233,-0.22393370060660817,-0.25520525293748664,-0.25051496019346886,0.12620733165528172,-0.07107918426554038,-0.1079899471837279,-0.13045993151968188,-0.060761828886553376,-0.02110445798144814,-0.17501963446677812,-0.07113481978261796,-0.1571916273450483,-0.09989264428656341,-0.1387329160508983,-0.11683268360958599,-0.10115778760416794,0.06509054756595165,0.13756998298164783,0.182531668723599,-0.051348776308498593,0.08616837752614831,-0.05460450573970148,0.06165231951997253,-0.05981814894529358,0.13394868572295926,0.10380795931623371,0.14406488254942562,-0.029178248435359724,-0.06758803481186869,-0.08479046138498376,-0.08202045467286376,-0.040761123335206526,-0.1148885710506555,-0.02303657321407379,-0.06642621663713623,-0.01633678953382442,-0.08521385803999314,-0.03831058622459962,-0.08714484628537848,-0.03571858045630359,-0.051880262219608946,-0.045430988275351115,0.0029689914038574256,0.04397369580849437,-0.06298098492805457,0.10910586591364375,-0.0508475345270005,0.05569211321278831,-0.05056147251467169,-0.06460665419730856,-0.040858323046427045,0.004191846121954094,0.016892817014692613,-0.004590824859347947,-0.0038295881727777236,-0.03474716986041608,-0.008121350769094014,-0.00571746968179779,0.017866083709383737,0.04326633527949729,-0.0031803111425237527,0.027176168189159237,-0.006436834599051164,0.036895076346446676,-0.04170264092717443,-0.009025089875645289,-0.01924265387146877,-0.1083468930568624,-0.024700387602655284,-0.11662392365187034,-0.043193123150418844,-0.10483200444819166,-0.01094271747674682,-0.03162569993729318,-0.0084490806273379,-0.09079691730318927,-0.015592872902529227,0.02697257166404465,0.05463323391829458,-0.022373934632107004,0.01293423524729649,-0.04516439337842951,-0.01730319011959982,-0.06388322012907278,0.023682873029584647,0.028194805789287423,0.030918141028093423,-0.05778824573528426,1.4187256267741515,14.910699147936551,30.49596330923309,16.716257255783106,28.97515265422502,37.218509463022315,43.06669718504281,44.70285740614493,44.76060350978565,79.4123123909387,46.301946705066726,9.013823882840576,24.09654180303138,0.0,33.110365685871955,14945.612248262794,11771.680895399895,4441.302927560804,232.0,61.0,83.0,101.0,128.0,146.0,160.0,184.0,211.0,585.285736436001,42.0,5.332718793265369,6.20455776256869,7.097548850614793,7.987864096085687,8.886132618174951,9.782956995898381,10.68443954523277,11.584808821643675,12.488446906439943,0.6305220883534137,1.0142168674698795,1.1578847906746477,0.5874213697684753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5868126325661928,0.9951334750767779,1.0325643433164557,0.5630301683019481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,4.0,8.0,5.0,1.0,4.0,0.0,16.0,0.0,0.0,0.0,0.0,88.05112948658092,67.14363026523132,12.580053458670426,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,0.0,19.386399651764595,12.586597235060536,18.69056362280884,263.0893547495939,-1688.0566808921424,-89.54820994662694,-20.338032299905333,-80.3836514710544,543.7762320953797,3489.0241088341813,57.978171413298234,42.03643504619495,56.2745824005513,0.4666666666666667,0.5415516960078882,0.061338794671509794,379.63263820556256,0.03876068541814311,3.656808423653578,0.45844830399211184,8.0,0.23809523809523808,0.26076103474628964,0.5110544277557478,0.7311827050851836,0.892238701011517,0.956995517586551,0.9659817837654225,-8.424200000000015,,3.9642857142857144,4.642624476500698,3.3769923437061546,3.952953420693956,-16.660734527318066,4.169293145654835,3.9317473684066204,-6.783551355971477,131.42570000000003,64.59420815799766,0.0,5.316788604006331,22.93466990864874,110.69084945719763,19.696394776338067,0.0,0.0,0.0,4.442651256490317,0.0,5.796057750765372,0.0,7.349230824613334,0.0,8.997270906233448,0.0,10.695687899179232,52.333333333333336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.18,0.0,12.578430739026395,0.0,0.0,0.0,0.0,0.0,-0.8451654705857445,96.10443762599576,28.251458512655073,0.0,0.0,164.3049998757608,23.741988999272017,0.0,12.841643245852019,0.0,0.0,0.0,0.0,48.75597369078344,48.705448502994,49.62894926074779,540.3103621913222,,468.3674084305744,456.84667830130047,481.1070623377351,468.56791423953894,805.585138181294,465.0043328940371,468.90824806543435,646.1706150757323,49.62894926074779,540.3103621913222,,464.74490763819404,452.6284268385516,477.96442631857207,464.95526570440956,819.072767434881,461.1981928066099,465.3147893688391,651.9366337283079,4.964978758375308,369.0591804771527,,318.95381440410097,311.14536377267257,329.1577402224907,319.09408680288584,558.6651090332837,316.7378565025325,319.3141052201348,443.12023383904324,1.2407237315186948,13.507759054783055,,11.70918521076436,11.421166957532511,12.027676558443378,11.714197855988473,20.13962845453235,11.625108322350927,11.722706201635859,16.154265376893306,2.4824893791876543,270.1551810956611,,234.28281135814433,228.53940476256275,240.6379559774602,234.38278095528685,401.2060164537815,232.6063987756599,234.55241771692732,322.57654118616824,82.59607843137256,0.0,0.0,0.0,0.0,23.07815814323158,82.32805552516754,85.70284049526583,-1.0969600283099987,2.523514362905146,22.508987749652608,0.0,-23.075021021087533,0.0,0.0,0.0,0.0,46.73150396906169,436.9594270062954,137.976035929313,270.4133466661084,386.88944184426725,472.10872279314094,506.3733852996313,511.1282728017948,1388.0,162.04947438992428,369.9061598386781,77.28089863728171,331.93999999999994,331.93999999999994,0.875,7.274479558773871,6.392317422778761,5.326006236961101,6.218410294570133,,6.216119757247486,6.215946818394253,6.218662327963331,6.216131040246584,6.219488098373408,6.21620914085013,6.216113143707633,6.219358362305571,0.1331501559240275,0.15546025736425334,,0.15540299393118714,0.1553986704598563,0.15546655819908328,0.1554032760061646,0.1554872024593352,0.15540522852125324,0.15540282859269083,0.1554839590576393,3.0588960195513324,3.2138086555538297,,3.213440239966106,3.2134124185492574,3.2138491849293316,3.2134420550837834,3.213981965187326,3.213454619187148,3.2134391760317498,3.213961105364311,410.1700000000018,472.7039473762107,290.95492136126427,,290.6025538362623,290.5256360683261,290.24880442583316,290.60245132800407,291.3657936329155,290.55778592206565,290.6084108559061,291.1331804990609,11.817598684405267,7.273873034031607,,7.265063845906558,7.2631409017081525,7.256220110645829,7.265061283200102,7.284144840822887,7.263944648051641,7.265210271397652,7.278329512476523,7.544763649584893,7.059462706880218,,7.058250900367018,7.0579861816019624,7.057032862570831,7.058250547623125,7.060873861693208,7.058096836466842,7.0582710549064185,7.060075188539951,22.508987749652608,12.578430739026395,84.8515698880727,23.07815814323158,-0.8451654705857445,-3.4543834318598456,-19.819150484244457,-0.8984471332932249,0.0,518.6190514396109,212.27774661269646,-1362.0348444556166,-72.25336896950203,-16.41005836693514,-64.85880211693413,438.75432862198704,2815.173485090752,46.78059130158935,33.9177528324187,45.40602395307664,5207.0,74.0,3.159756269604916,1.492351483412216,0.0,0.0,1.3174125574434536,0.299259874368761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.09773920125054386,0.587412473986066,0.2382940431157477,29.886022388089117,21.701489506044236,18.85188072574718,13.065117191746365,17.093161723220614,10.334214773693903,15.452824566306422,7.5089399930210545,11.375941434035548,5.067082308128232,8.673608488048725,3.4474953127000965,6.421708704330542,2.09886914235506,4.348696369685922,1.2416480800127219,8.937828760779196,3.0831543595609454,12.925587863316789,3.8939391210995504,19.79991740534853,5.035881197560931,140.27184049831027,85.22392707649956,50.80450311915714,30.55514711306548,25.35540560588879,25.06642278562866,206.0,247.0,81.33809899999996,49.23990100000007,0.24096385542168675,204.18,17.38888888888889,9.027777777777773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,83.0,0.0,4.0,85.0,0.0,1.0,1.0,84.0,1.0,42.0,84.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.0,17.0,13.0,2.0,40.0,18.0,0.0,5.0,13.0,0.0,3.0,10.0,0.0,0.0,0.0,0.0,0.0,3.784189633918261,5.501258210544727,4.1588830833596715,4.465908118654584,4.653960350157523,4.890349128221754,5.0238805208462765,5.117993812416755,5.267858159063328,5.3981627015177525 +3373,CCOC(=O)c1ncn2c1CN(C)C(=O)c1cc(F)ccc1-2,0,27.055555555555557,6.759575000000001,3.6666666666666665,10.833333333333334,166.23306876019407,108.21161625416028,1.4979983796635004,6.787875,7.033179012345678,8.161841444444441,231.78013345870113,27.94736842105263,6.6421052631578945,4.342105263157895,9.68421052631579,148.8757753502789,107.87249883776839,1.7697650089473687,6.771592105263157,3.676169590643275,7.996785578947366,271.5217481147752,24.676923076923078,6.687967692307692,4.030769230769231,8.538461538461538,160.241822994086,94.47022256415998,1.524402543704492,6.762796923076924,3.8632478632478637,8.098369907692305,233.11012724520901,23.9625,6.675273750000001,3.875,7.7125,158.41707957828115,90.90082746901999,1.511325525424287,6.75596,3.9965277777777777,8.09167345,229.43741337917035,22.08888888888889,6.725054444444445,3.3333333333333335,6.711111111111111,161.04606841188826,82.28659931217777,1.3788664934771442,6.785654444444444,4.243518518518519,8.172786488888889,207.7792210215384,20.470588235294116,6.751541176470586,3.023529411764706,5.91764705882353,162.90493729801054,74.97158105931294,1.341351213875247,6.797797647058824,4.573529411764706,8.200797364705883,196.34162733938558,17.49367088607595,6.481316455696202,2.569620253164557,4.544303797468355,164.5951807281714,63.00175108026329,1.159196577792924,6.533786075949367,3.9613220815752457,7.979307746835444,166.62908130147142,14.830769230769231,6.742492307692308,2.0615384615384613,3.9384615384615387,176.01936987102903,51.43498716940308,0.9551664543367075,6.729544615384615,4.909401709401709,8.292963261538462,137.06038013634418,12.931818181818182,6.037318181818182,2.1136363636363638,2.5454545454545454,165.14755942302244,44.79388040534545,1.0922640534588182,6.091954545454545,2.878787878787879,7.646272999999999,145.5937264824539,7.793209876543211,0.21308418209876534,0.02689697375618201,0.7006172839506172,5.126543209876543,2.1355795839206713,37.23407888947065,0.22310008012460797,0.19011195987654317,2.9024991426611804,0.13060033024691356,45.77685090062684,0.4333983105912924,-0.005757427712800534,-0.013583582049407811,0.328622482131254,1.8749187784275503,-0.6373258837476019,1.995084949575483,-0.03752365537806992,-0.0016175885315140208,-0.10884254746949669,-0.006878438434048087,-3.0855251652851936,1.265764482431149,0.006045433285849935,-0.0014062862938820871,0.10792972459639118,0.8674738841405506,0.11455685717481091,6.139555064340094,0.042870812386261246,0.008129065764482385,0.18218746702542996,0.003507951804368476,10.35294240472071,0.32345679012345646,-0.010092793209876555,0.0015473470450088275,0.016743827160493767,-0.048070987654320954,-0.06283292390721132,1.4526237096960704,0.004870699157361459,-0.007549807098765469,-0.07863725994513032,-0.007755516358024683,2.31838837696987,-0.6358024691358029,-0.01987087962962964,-2.2326878189858692e-05,-0.13024691358024695,-0.90679012345679,-0.17703546672637197,-3.0131446596732334,-0.015412910496464175,-0.01788288580246917,-0.5006472908093278,-0.013313945061728375,-3.4096869839786077,-1.7807915758896156,-0.0016285611837327694,0.0025248481232482112,-0.19015976761074804,-1.1912490922294845,0.22303594012770928,-8.311477685633927,-0.012957502592271417,-0.007149901053013812,-0.07499369603808599,0.0014051756354393847,-8.540724472078558,-0.966205657133927,-0.016251270706360357,-0.0036716342732715456,-0.197804344428817,-0.725699328020003,-0.6098081539706489,-4.58139193315139,-0.08478327718460592,-0.012261537935614936,-0.08908103045614764,-0.011783828137208942,-12.848564058117192,-1.2205603038936368,-0.039018968423551764,0.0021498872794976378,0.04639126305792977,-0.6820987654320986,0.4689624192562869,-6.02279924442274,0.03936218686846114,-0.037768712013295375,-0.1422308615595653,-0.01762726528964859,2.4374668856500437,0.4744668911335585,-0.0063021745230078165,-0.0051439679852110015,-0.12612233445566776,0.21689113355780015,-0.016761679225536237,2.4726815813940695,0.00850804181162679,-0.0033077300785633213,-0.05776710001247036,-0.006951413580246952,3.812460218866082,,,0.4538961038961039,1.3068181818181819,0.6136363636363636,0.022727272727272728,0.6931818181818182,-0.07954545454545454,0.7261522406462241,0.01773353440545195,0.029460807132724677,1.0312828234306006,0.26861973534331535,0.20974734672273704,1.7574350640768246,0.4783670820660524,2.0317214437514513,1.407790103706874,0.29423759409360645,0.24911007163153354,0.08058367431943794,0.623931340044578,8.419497764666678,974.0,243.34470000000002,132.0,390.0,5984.390475366987,3895.61818514977,53.92794166788601,244.3635,253.1944444444444,293.8262919999999,8344.08480451324,1062.0,252.39999999999998,165.0,368.0,5657.279463310599,4099.154955835199,67.25107034000001,257.3205,139.69444444444446,303.8778519999999,10317.826428361459,1604.0,434.71789999999993,262.0,555.0,10415.71849461559,6140.564466670399,99.08616534079198,439.58180000000004,251.11111111111114,526.3940439999999,15152.158270938586,1917.0,534.0219000000001,310.0,617.0,12673.366366262491,7272.066197521599,120.90604203394297,540.4768,319.72222222222223,647.333876,18354.99307033363,1988.0,605.2549,300.0,604.0,14494.146157069943,7405.793938095999,124.09798441294298,610.7089,381.9166666666667,735.550784,18700.129891938457,1740.0,573.8809999999999,257.0,503.0,13846.919670330895,6372.584390041599,114.014853179396,577.8128,388.75,697.0677760000001,16689.038323847773,1382.0,512.024,203.0,359.0,13003.019277525542,4977.1383353408,91.576529645641,516.1691,312.9444444444444,630.365312,13163.697422816242,964.0,438.262,134.0,256.0,11441.259041616886,3343.2741660112,62.08581953188599,437.4204,319.1111111111111,539.0426120000001,8908.924708862372,569.0,265.642,93.0,112.0,7266.492614612987,1970.9307378351998,48.059618352188,268.046,126.66666666666667,336.43601199999995,6406.123965227971,280.5555555555556,7.671030555555552,0.9682910552225523,25.222222222222218,184.55555555555554,76.88086502114416,1340.4268400209435,8.031602884485887,6.8440305555555545,104.4899691358025,4.7016118888888885,1647.9666324225664,16.46913580246911,-0.2187822530864203,-0.5161761178774968,12.487654320987652,71.24691358024691,-24.218383582408872,75.81322808386835,-1.4258989043666568,-0.06146836419753279,-4.1360168038408744,-0.2613806604938273,-117.24995628083735,82.27469135802468,0.3929531635802458,-0.09140860910233567,7.015432098765427,56.38580246913579,7.446195716362709,399.0710791821061,2.786602805106981,0.528389274691355,11.842185356652948,0.22801686728395093,672.9412563068462,25.876543209876516,-0.8074234567901244,0.1237877636007062,1.3395061728395015,-3.845679012345676,-5.026633912576906,116.20989677568562,0.38965593258891673,-0.6039845679012376,-6.290980795610426,-0.6204413086419747,185.4710701575896,-57.22222222222226,-1.7883791666666677,-0.002009419037087282,-11.722222222222225,-81.6111111111111,-15.933192005373476,-271.183019370591,-1.3871619446817758,-1.6094597222222253,-45.0582561728395,-1.1982550555555538,-306.8718285580747,-151.36728395061732,-0.1384277006172854,0.21461209047609797,-16.163580246913583,-101.25617283950618,18.95805491085529,-706.4756032788838,-1.1013877203430704,-0.6077415895061741,-6.37446416323731,0.1194399290123477,-725.9615801266775,-76.33024691358024,-1.2838503858024681,-0.2900591075884521,-15.626543209876543,-57.33024691358024,-48.174844163681264,-361.9299627189598,-6.697878897583867,-0.96866149691358,-7.037401406035664,-0.9309224228395064,-1015.0365605912582,-79.33641975308639,-2.5362329475308645,0.13974267316734645,3.015432098765435,-44.33641975308641,30.482557251658648,-391.4819508874781,2.558542146449974,-2.454966280864199,-9.245006001371744,-1.1457722438271583,158.43534756725285,20.876543209876573,-0.2772956790123439,-0.22633459134928408,-5.549382716049381,9.543209876543207,-0.7375138859235945,108.79798958133905,0.37435383971157876,-0.14554012345678613,-2.541752400548696,-0.3058621975308659,167.7482496301076,0.7205912123726826,0.5530893077287404,0.43850315856054806,0.2838745909291109,0.2757974139049753,0.1415151040024998,0.17126988214040273,0.07178385143813774,0.10504542298324536,0.037225514141584946,0.06555305106880029,0.019286062288982487,0.04199056110116017,0.009926900738307997,0.02639741245002523,0.0051170575513825225,9.00406712227345,5.692395057056523,4.107715234901596,2.1905852156981616,0.48338975532092365,-0.4905888487958044,3.2670803887056508,0.9772534404544446,7.004058838052487,0.9879368024823667,17.424771483622695,10.95413434544563,19.00014134435147,11.704681692693434,1.9872722415494404,0.5458600200204031,3.988666737454648,2.24005603893262,8.001919501239074,1.3992325644209924,4.00994706561511,2.4357388398941864,20.89047924396975,13.304120154511597,0.32725847658023205,0.6987275777096592,0.8489981766385941,0.8730483844785857,0.8730483844785857,0.8730483844785857,1.8119836121112503,769.388319561848,0.0,2.0,3.0,0.0,7.0,0.0,1.0,0.0,0.0,3.3726695235350324,1.3326157903065865,0.5073517362914011,0.37527152789797125,0.37527152789797125,0.37527152789797125,122.73981234073955,1066.8717640956409,54.97581731532857,29.63532678043447,63.12630358894776,,11.0,377.0,11.786526128997744,13.979489415818463,30.316197586322453,11.381314269532023,0.0,29.42633101099985,18.53850883015917,0.0,4.9839785209472085,4.736862953800049,9.985714285714286,28.75,13.5,0.5,15.25,0.0,0.0461038961038961,-1.75,0.23068356374807975,0.06774891774891767,-0.16293464599916208,0.0,0.21507066381156298,0.0,0.6726190476190478,0.9097402597402595,0.44193548387096804,0.6048701298701301,0.9097402597402595,15.97534929421693,0.3901377569199429,0.6481377569199429,22.688222115473213,5.909634177552938,4.614441627900215,38.66357140969014,10.524075805453153,0.498929336188437,0.19551740581783497,0.0,0.4306151645207439,0.26666666666666666,0.37654438968090576,-0.8081347351338635,-0.06614690410157549,-0.022448187087051766,-0.0734667941030785,0.6234556103190941,1.3380524270721625,0.04444595000208296,0.037168122974226746,0.05352209708288651,-3.233453427227294,0.628686816050026,0.6255112340803572,1.5402592775040238,0.6207975886853699,0.35184099622928483,1.3327513710401722,0.6319008582878382,1.200776523752013,0.5954449484075731,0.5264362732276158,0.6668513111516153,0.9895279616550984,0.6890175171363289,0.7634457120463455,1.2235549540404091,1.0033886818027788,0.7206502107164359,0.9173943779494264,0.6835562178186741,0.758019759784506,0.7452946314841778,0.5365807661349644,0.7650944645750706,0.6926445962438275,0.8108910891089107,0.9163623712734529,1.0970949202900266,1.136150881057269,0.9067391631547261,1.070089553785278,0.8138131102782191,0.9709514031447508,0.8988334724786522,0.839261846565105,0.9375421885454083,0.8822047773114707,0.9862376237623761,1.01704102483695,1.1108862864945868,1.2643171806167404,1.1252257676098736,1.0039486547336915,0.979154195578289,1.0162933590101402,1.0119134639229401,1.2517593543003562,1.0623316490488708,0.9870409470222294,1.14919044845661,0.9603269085518608,0.9980489277202915,1.2325732054936513,1.1869532882388356,0.8212646259239019,1.1374054453464209,0.9932067955947923,0.9841577748196049,1.0348195991265448,0.9746977374755686,1.0933972355279475,1.1014538162677026,1.0128872756059064,1.101421330008754,1.1505325377795128,1.1030605323924128,1.2244716674388496,1.1002525807068122,1.3269817345666552,1.0055732502606074,0.94681663596184,1.0152792220132787,1.2498477388823581,1.354044173648134,1.700113059949182,1.004524502965704,0.7258556421552018,1.3493956374751077,0.9257217966536394,1.3626168356448063,0.7756302114163174,1.7017126066845387,1.5796101785512424,1.6522490647329202,0.911025688535414,0.9923492349234921,0.8264927496308837,0.9508140050808657,1.056517821385663,0.9137430901428494,0.7205619227027261,0.9846160137552907,0.9523510619048063,0.8441438921133105,0.7555640439873816,0.8459580852066126,1.0060073649589238,4.5,0.02887460463218039,3.333333333333335,2.0347222222222223,1.8483333333333334,1.0805555555555555,0.6327891156462584,0.23441043083900226,0.15848607961703198,0.045625000000000006,4512.166212774486,4893.680372825214,2195.1860199856606,2055.418312212043,12.580018436504227,0.4866151565726087,6.458390795338419,0.9478564916796794,1.0,0.26666666666666666,1.7972554779072798,3.8373092111357257,4.662573265150911,4.794653473544341,4.794653473544341,4.794653473544341,0.1875,0.014437302316090195,0.09523809523809529,0.049627371273712736,0.04620833333333334,0.03274410774410775,0.026366213151927435,0.015627362055933482,0.015848607961703197,0.007604166666666667,0.4912015597415701,16.84375,6.857142857142857,3.1653477717617657,125.67305724969157,1.0,4.0305017285292015,90.46704569458214,,68.37849333132577,66.81109870541431,67.44360485633084,68.31836419294171,106.49113446186148,67.78803740295575,68.50218543227605,89.41401071729143,0.05561229807191237,-0.02701949837896435,-0.5050226903792757,0.4690470670067239,0.3657276846541399,-0.29843227971750275,0.05358222921259558,-0.1681920300392176,-0.00850861004517794,-0.03749959676808156,-0.05266784870332013,-0.06740361349851923,0.16241888804265037,0.02837110303686387,-0.052284182846364484,0.15404947475432046,0.16921224470893342,0.05364204548373613,0.16489074652727037,0.19215955620597103,0.04275936016735254,0.06276917169332559,0.026860206231763172,0.2261610879960933,0.04150495049504946,-0.047365285918776014,0.05752866694355103,0.023898678414096836,-0.00937688139674894,-0.02942195382475867,0.03901328441635909,0.021831902322227002,-0.03971242579198194,-0.027092948552271096,-0.05938358917900184,0.05064543172711174,-0.08158415841584163,-0.09325365887750134,-0.000830088856547554,-0.1859030837004406,-0.1768813967489464,-0.08289808914606489,-0.0809243776009003,-0.06908518584061292,-0.09406502260079869,-0.17248835096995244,-0.10194419138571068,-0.07448496165409922,-0.2285055329062318,-0.007642806555100956,0.09387108550336073,-0.27141746566468006,-0.23236887771363815,0.1044381308975813,-0.22322232571689352,-0.05807932738094164,-0.03760889666098276,-0.02583762900592191,0.010759357444064295,-0.18657300150722264,-0.12398044867777912,-0.07626690327876065,-0.1365073374631098,-0.2823286678191045,-0.1415572439966773,-0.285546911275071,-0.12304297755696468,-0.3800235174153768,-0.06449640487414604,-0.030691147896248112,-0.09022816492829983,-0.28067819881295614,-0.15661843107387652,-0.18311527415707624,0.07993045236189468,0.06621484242629624,-0.13305237808549064,0.21959491595968877,-0.16175502185246524,0.1764328674668167,-0.19866562860023113,-0.049002895287390075,-0.1349710621429701,0.05324671395464353,0.060882088208820954,-0.029575984763086427,-0.19124709091217781,-0.18001601922306765,0.042307481801762345,-0.007848772928782067,0.06640909766384241,0.03813553902300168,-0.017398853184782948,-0.019902538182838568,-0.05322661563798942,0.08328358425402033,3.8326851344863173,14.26932703219781,7.7289577986882945,18.54757145151779,39.92622429104147,43.04420232377502,43.17733917383559,43.17733917383559,43.17733917383559,44.69787176253193,30.97138228155123,6.473227070059342,5.480421575893738,1.7728408350276348,13.726489480980714,3905.4862774772405,3226.518689173408,823.6519297443338,132.0,35.0,49.0,67.0,87.0,107.0,119.0,130.0,142.0,303.1019195280004,24.0,4.77912349311153,5.659482215759621,6.569481420414296,7.475905969367397,8.394573477868327,9.309914176872276,10.232179601838379,11.151453318547691,12.075286053919031,0.7314814814814815,1.0234444444444446,1.1376299230235627,0.7014250899638294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6761161343978711,1.0072984749455334,1.0320263818078825,0.6627121469118212,4.0,1.0,0.0,0.0,0.0,0.0,5.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,9.636772684650527,12.144540915810436,5.693927994848461,0.0,5.907179729351506,9.361636831863176,14.16893075269385,0.0,0.0,0.0,25.122838405075452,7.04767198267719,30.09640413165451,187.1805890713926,-401.72457727918453,-32.881691546311906,-11.159016035532904,-36.5204161162895,309.92040141213215,665.1471868164564,22.09412576901666,18.476310744901568,26.605887472658257,0.45454545454545453,0.7108967080467544,0.2148987770660415,16.97071054032934,0.16699427234336572,37.34605716714246,0.2891032919532454,6.0,0.08333333333333333,0.34763666347304445,0.7422369202774098,0.9018647782801763,0.9274125779787371,0.9274125779787371,0.9274125779787371,1.7736999999999998,,1.5119047619047623,1.8043900169108715,1.5488545075243887,1.543086245660115,-6.799632915426464,1.6190119046886824,1.4797733799930697,-2.701616984205071,75.27600000000002,18.716352369618512,0.0,14.450987899589041,0.0,13.4684936056032,13.654553947190108,47.294949602589185,0.0,5.687386274683562,3.8918202981106265,0.0,5.241747015059643,2.3978952727983707,6.78332520060396,4.844187086458591,8.415603335654604,7.065613363597717,10.099835281063175,26.333333333333336,5.407897691484001,4.095508786848073,0.0,0.0,0.0,0.0,0.9406222104314654,1.6274074074074074,36.84400000000001,0.0,24.35424206874108,0.0,0.0,0.0,0.0,0.0,-0.8512319171495752,40.954677228848254,0.0,4.39041504767482,0.0,39.9820268640825,11.281619359712625,5.817220841045895,33.46411904922819,24.52642128014937,0.0,5.687386274683562,0.0,25.251303238697858,24.34018083832336,27.983330933330627,180.93409138916434,,136.61954077520565,133.45816195474583,134.74640475743217,136.49644781809613,215.29844920419475,135.42889190548524,136.86984601182547,179.60714829716335,27.983330933330635,180.93409138916442,,135.24508190074687,131.81780739391778,133.33835520513728,135.09364214022332,219.78190183914938,133.9570629012228,135.52459748455914,181.52963841878795,4.894265737371018,128.7757466976677,,97.34540439115696,95.07214854825988,95.78650588945276,97.29023851215481,150.926832094847,96.48332082892517,97.51032425415815,127.51486713387578,1.271969587878665,8.224276881325652,,6.209979126145711,6.066280088852083,6.12483657988328,6.204383991731643,9.786293145645216,6.155858722976602,6.221356636901158,8.163961286234697,2.519887347825282,90.46704569458214,,68.37849333132577,66.81109870541431,67.44360485633084,68.31836419294171,106.49113446186148,67.78803740295575,68.50218543227605,89.41401071729143,36.262745098039204,0.0,3.3005896292426775,0.0,13.467738807542197,0.0,0.0,37.152949745083774,0.4216085301583137,0.0,4.984116407365415,0.0,0.0,1.418167044595616,0.0,0.0,0.0,23.857637288825565,353.38745770151877,64.70119720466207,138.14313160088614,167.8526375454328,172.60752504759628,172.60752504759628,172.60752504759628,914.0,121.64739972769854,143.71353278200596,70.74002685334669,64.43,64.43,0.8333333333333334,8.703191574143567,5.584962500721156,4.110911168607686,4.608717951053945,,4.60314917076248,4.603238634257663,4.595779195726001,4.603474651832332,4.562229198173895,4.602919449034491,4.603005422854668,4.589132993944991,0.18685959857307663,0.20948717959336116,,0.20923405321647637,0.2092381197389847,0.20889905435118186,0.20924884781056055,0.2073740544624498,0.20922361131974962,0.20922751922066674,0.20859695427022687,2.2021020598265766,2.316407076971716,,2.3151980319657057,2.3152174670573142,2.313595676491296,2.3152687378132044,2.3062687236864723,2.315148125379621,2.315166803311796,2.312148476386659,208.8399999999998,167.22607233489384,123.56901672551571,,123.60369109405623,123.57381362821144,124.18252513064151,123.56833174471967,127.1057029405417,123.61287544740264,123.62066842506994,124.92721568287298,7.601185106131538,5.616773487523441,,5.618349595184374,5.616991528555065,5.644660233210978,5.616742352032713,5.777531951842804,5.61876706579103,5.619121292048633,5.6785098037669535,5.907803983875578,5.605257200222164,,5.605537768162483,5.605296019092123,5.610209820533328,5.605251656901413,5.633476407266216,5.6056120702489425,5.605675111675667,5.6161886535419026,20.07926262231502,29.867917900184768,0.0,1.4316578745695827,-1.3422675812876925,3.958726300705467,1.4491713907785335,2.130321033550651,1.5918771258503401,256.1001694296222,93.0476562266789,-199.69768526705795,-16.34552143644539,-5.547157924084943,-18.154335024277994,154.06173851302248,330.6453253837906,10.983011803645752,9.184592371771961,13.225813015351623,956.0,41.0,1.6329435625554916,0.6446450444327086,0.0,0.0,0.5330974507069528,0.13253521042605462,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.24719387459906544,0.07333618919890886,0.4889220777148724,0.10481099143670947,15.853006672199017,12.16796477003229,10.524075805453153,6.812990182298662,9.652909486674135,4.953028640087493,8.392224224879733,3.5174087204687496,7.038043339877439,2.4941094474861916,5.703115442985625,1.6778874191414763,4.492990037824138,1.0621783789989556,3.1412920815530025,0.6089298486145202,4.21490911071359,1.3488561149518108,6.823828470208649,1.8678093837526821,11.151583379373019,2.4970123470480696,69.5183179457045,31.423217108953406,24.43868090944847,23.9732673677217,23.9732673677217,23.9732673677217,118.0,143.0,40.64810199999998,23.189897999999996,0.3888888888888889,114.07,8.0,4.861111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,36.0,0.0,0.0,38.0,11.0,2.0,7.0,31.0,13.0,24.0,25.0,0.0,0.0,0.0,15.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,5.0,0.0,2.0,22.0,7.0,0.0,3.0,3.0,0.0,3.0,2.0,0.0,0.0,1.0,1.0,2.0,3.481240089335692,7.421172853240359,4.09016919081162,4.715145039196663,5.30919548469522,5.804946698182618,6.208841503527855,6.58258765378185,6.905126827628445,7.2321571936204325 +44093,C[C@H](CS)C(=O)N1CCC[C@H]1C(=O)O,0,28.82758620689655,6.240637931034484,2.793103448275862,6.527884206045126,165.16681767556327,113.9848862413793,1.4937553645770694,6.293837931034482,6.091927744403976,7.849732310344829,198.86800079618337,24.82758620689655,6.334241379310345,3.5517241379310347,5.555555555555555,147.30619584814758,92.48149382758616,1.7530642660689648,6.477327586206899,3.025117071094083,7.826975379310347,243.04703455693635,19.69811320754717,6.191943396226417,3.1132075471698113,4.2578616352201255,156.4839569412604,71.57393452830186,1.443634065168736,6.291183018867923,3.1502251727618606,7.735367735849054,192.97275839408505,16.301369863013697,6.109698630136987,2.5205479452054793,2.8188736681887367,163.17581636626116,57.93471826027397,1.2061231355675754,6.176228767123287,2.9503354191329842,7.718402301369863,156.33977801495323,17.211267605633804,6.380264788732397,2.1690140845070425,2.5508607198748043,166.17814533613762,60.3728904225352,1.107631326332169,6.427547887323944,3.6587115284298384,8.042765859154928,150.38421902509475,15.116666666666667,6.3379,1.9666666666666666,2.096296296296296,162.28721983944402,51.311279633333335,1.1763166569465333,6.383936666666667,4.408882030178325,7.974405266666667,149.4963804137832,11.790322580645162,5.593935483870967,1.564516129032258,0.6039426523297491,164.12627192006232,38.8283566451613,1.0720969666052742,5.673177419354838,2.250962431966016,7.346540999999999,114.06203610071917,10.088888888888889,5.7602666666666655,1.1111111111111112,0.1358024691358025,175.58145431837102,31.140282133333326,0.7549446650305778,5.785431111111109,2.630315500685871,7.640242399999997,75.62970724388657,3.4166666666666665,5.360666666666668,1.0,0.0,181.29228558958093,6.142920000000001,0.5837293179700834,5.3643333333333345,1.9372427983539093,7.256087999999999,48.33163390835784,12.827586206896552,0.1601621878715814,0.02778911236994081,0.5945303210463732,4.060216379677339,1.4436696607760875,57.847071629013094,0.3185576927209156,0.1485678953626634,2.8461013726301476,0.10464331034482754,50.697682615842574,-1.103448275862069,-0.007275624256837142,-0.018337127795890636,0.2282996432818072,1.4086698668545667,-0.3062446595156757,-4.752777853745549,-0.02824200330083229,-0.006449464922711159,-0.07575155392519592,-0.008513137931034474,-2.428460855958493,-0.6037735849056604,0.0324381374374621,0.001476251610592386,-0.03174567563323093,0.7482769976731197,-0.18374484024728216,-2.6419348788504298,-0.036320688212674174,0.02759358804657524,0.5071159491814645,0.020261622641509443,-3.9916856059596437,0.3013698630136986,0.007802384636684956,0.003565096868239156,-0.09476650432459728,-0.23664820435353454,-0.010067708829906201,1.3399131844021308,-0.005647079398276463,0.007152699819197622,-0.07019549402439268,0.002858849315068491,-1.5700443818877072,-1.0422535211267605,-0.0418747667933882,-0.003667595437152768,-0.10157257456750014,-1.060953882600369,-0.0010766227564439196,-4.668414520222406,-0.022454539383661567,-0.035340357723032706,-0.6800502355409896,-0.027150197183098572,-0.14471990645159788,-2.15,-0.01984350971066194,0.0007574179550199434,-0.13476020610384465,-0.9893919153662849,0.05893699691789334,-10.310549486484344,0.0096005927273074,-0.02510099881093939,0.08309487934293654,-0.0052906333333333205,-10.806675488116268,0.1774193548387097,0.011679080204058228,-0.00021539527661378362,-0.039469141958497926,0.12409678034957737,-0.24097490473927283,0.7852295333895934,-0.028086027832971757,0.01097476314679158,0.13121825921875094,0.004448354838709661,-5.473219013818161,0.4,-0.024985866032500952,0.0013319198186718332,0.17941603910688342,-0.2008435969329082,0.09085060325721285,2.0400571004888404,0.0017314746497617932,-0.018463527546571445,-0.5555592103931744,-0.012945755555555556,7.5245198437452325,1.75,0.007761950059453145,-0.005965356030365294,0.23305588585017842,0.9549673864642818,0.4307391057018295,9.067628411216814,0.0870585593221131,0.011334978200555077,-0.10871947296879096,-0.0031355833333333583,23.114146083751745,,,0.4809523809523809,0.8214285714285714,0.21428571428571427,0.0,0.6071428571428571,-0.39285714285714285,0.9839840023156022,0.02425910712165161,0.030401964264508752,0.4751316847635701,0.12402511819232778,0.34558817199838454,1.4591156870791724,0.4696132901907123,1.9271123868959783,1.2800641377542745,0.15626419328267843,0.36944386544300556,0.0,0.6470482491417038,7.485422908275862,836.0,180.97850000000003,81.0,189.30864197530866,4789.837712591335,3305.5617009999996,43.31890557273501,182.5213,176.6659045877153,227.64223700000005,5767.172023089318,720.0,183.693,103.0,161.11111111111111,4271.87967959628,2681.963320999999,50.83886371599998,187.84250000000006,87.7283950617284,226.98228600000004,7048.364002151155,1044.0,328.1730000000001,165.0,225.66666666666666,8293.649717886801,3793.4185299999986,76.51260545394301,333.43269999999995,166.96193415637862,409.97448999999983,10227.556194886507,1190.0,446.00800000000004,184.0,205.77777777777777,11911.834594737065,4229.234433,88.046988896433,450.8646999999999,215.37448559670784,563.443368,11412.803795091586,1222.0,452.9988000000002,154.0,181.11111111111111,11798.648318865771,4286.475219999999,78.64182416958401,456.3559,259.76851851851853,571.0363759999999,10677.279550781726,907.0,380.274,118.0,125.77777777777777,9737.233190366642,3078.676778,70.578999416792,383.0362,264.5329218106995,478.46431600000005,8969.782824826993,731.0,346.82399999999996,97.0,37.44444444444444,10175.828859043864,2407.358112000001,66.470011929527,351.73699999999997,139.559670781893,455.48554199999995,7071.846238244589,454.0,259.21199999999993,50.0,6.111111111111112,7901.165444326695,1401.3126959999997,33.972509926376,260.3443999999999,118.36419753086419,343.81090799999987,3403.3368259748954,41.0,64.32800000000002,12.0,0.0,2175.507427074971,73.71504000000002,7.004751815641002,64.37200000000001,23.24691358024691,87.073056,579.979606900294,372.0,4.644703448275861,0.8058842587282834,17.241379310344822,117.74627501064283,41.866420162506536,1677.5650772413796,9.238173088906553,4.308468965517239,82.53693980627428,3.0346559999999987,1470.2327958594346,-32.0,-0.21099310344827713,-0.5317767060808285,6.620689655172409,40.851426138782436,-8.881095125954594,-137.83055775862093,-0.8190180957241364,-0.1870344827586236,-2.1967950638306815,-0.24688099999999977,-70.4253648227963,-32.0,1.7192212841854912,0.07824133536139645,-1.6825208085612393,39.65868087667535,-9.738476533105954,-140.02254857907278,-1.9249964752717312,1.4624601664684878,26.877145306617617,1.0738660000000004,-211.55933711586113,22.0,0.5695740784780018,0.2602520713814584,-6.917954815695602,-17.275318917808022,-0.7349427445831527,97.81366246135555,-0.41223679607418184,0.5221470868014264,-5.124271063780665,0.20869599999999985,-114.61323987780263,-74.0,-2.9731084423305623,-0.2603992760378465,-7.21165279429251,-75.3277256646262,-0.0764402157075183,-331.4574309357908,-1.5942722962399711,-2.509165398335322,-48.28356672341027,-1.9276639999999987,-10.27511335806345,-129.0,-1.1906105826397164,0.0454450773011966,-8.085612366230679,-59.36351492197709,3.5362198150736006,-618.6329691890606,0.576035563638444,-1.5060599286563634,4.9856927605761925,-0.3174379999999992,-648.400529286976,11.0,0.7241029726516102,-0.013354507150054585,-2.4470868014268716,7.694000381673797,-14.940444093834916,48.684231070154794,-1.741333725644249,0.680435315101078,8.135532071562558,0.27579799999999893,-339.339578856726,18.0,-1.1243639714625429,0.05993639184023249,8.073721759809754,-9.03796186198087,4.088277146574578,91.80256952199782,0.0779163592392807,-0.830858739595715,-25.000164467692844,-0.582559,338.60339296853545,21.0,0.09314340071343774,-0.07158427236438353,2.796670630202141,11.459608637571382,5.168869268421954,108.81154093460177,1.0447027118653571,0.13601973840666093,-1.3046336756254915,-0.0376270000000003,277.3697530050209,0.7653698907638801,0.6454065872537829,0.46961329019071235,0.3821263542203795,0.3024883551439011,0.20929821454574707,0.19575117436106296,0.1276705499165985,0.12191494382583047,0.0668363853711242,0.0821335870779734,0.0392569315743311,0.05625361755334728,0.026672125760326425,0.0377310534408474,0.0200742037970887,16.001211546749857,5.816229388236769,3.555112054722607,2.295226463155787,0.45502619575608955,-0.40309821501588505,3.189555213804549,0.9727103042332079,6.023247327481132,0.5472026583001578,14.543330701911676,10.346617280449617,32.06060422974297,11.830127182108257,2.909853830330183,0.7414800494332441,3.5011728517502223,2.3511700237423083,7.00936760753254,1.1911303203514358,3.7140757113854876,2.5509008720994046,24.432171643050438,14.700683399958269,0.34101273804166643,0.6179069144964551,0.8639597596687513,0.8918010129904201,0.8918010129904201,0.8918010129904201,2.5696010318098463,244.21156588239836,0.0,2.0,3.0,0.0,0.0,3.0,0.0,1.0,0.0,3.168536946526622,1.7967488391666961,0.577754741453913,0.439823706971155,0.439823706971155,0.439823706971155,75.65295080316835,645.877152828218,54.92364792551588,22.271625959593727,51.01193686044289,,7.0,150.0,12.011146117099809,9.589074368143644,11.8250857755129,18.718431635585375,6.4208216229260096,4.899909730850478,6.923737199690624,0.0,12.628789148012991,5.106527394840706,6.7333333333333325,11.5,3.0,0.0,8.5,0.0,0.01904761904761911,-5.5,0.1620689655172412,0.0,-0.1620689655172412,0.07648809523809508,0.18658485639686673,0.0,0.5954022988505749,0.9119047619047617,0.43333333333333374,0.5954022988505749,0.8354166666666666,13.775776032418431,0.33962749970312256,0.4256274997031225,6.651843586689981,1.736351654692589,4.838234407977383,20.427619619108413,6.574586062669972,0.5274151436031332,0.3465346534653466,0.0,0.3564356435643565,0.7777777777777778,0.4052911913937368,-0.6554077673691476,-0.09528421322357375,-0.022600267840315432,-0.08192597092114345,0.5947088086062632,0.9617203155662264,0.04223198949188247,0.03316276950228368,0.04579620550315364,-0.37609938548634375,0.9265850945494993,0.7167422440391873,1.6369165669636632,1.0080000000000005,0.4567187059359476,1.5128399856015815,0.9279086032327998,1.1933854905091796,0.7139747217989271,0.6290113976363424,0.7459986375323302,1.1683413875589788,0.8698518969364982,0.5035396724194222,0.8283658246431896,1.455471698113208,0.6945372615348135,1.2938700135888328,0.8768064313177177,1.0819847162391099,0.5271530698461857,0.3925516207177916,0.4707157632016083,1.1109331733800905,0.7753719251730741,0.8282363710852447,0.8251365739715206,1.3681643835616444,1.0690720288242486,1.0103443373041014,0.787906011238785,0.862476181629867,0.8317120323093379,0.8310626286354164,0.8188665630526569,0.985825464883433,1.0919279115553535,1.5688498382444716,1.2904249579521025,1.235154929577465,1.5060425389938064,0.9526025089039786,1.0892953361027518,0.9996050252895793,1.5175267487678248,1.657622721260467,1.5886791187265743,0.9059679851551199,0.9603046594982078,1.3601062092231118,0.9939497614795262,1.0826666666666669,1.2882027048850386,0.8680898014880111,0.9839141526763177,0.7861402782019392,1.3791271828166285,1.3809644192687642,1.3362605624272845,1.13269797336164,1.085327783558793,0.5636333312929023,0.7035128901437864,0.667935483870968,0.6557952108694886,1.0693728019514266,1.0746880343500564,1.1912401899931426,0.597582984243775,0.5449256999737676,0.5827167783570644,1.1292061517094103,1.374074074074074,1.3280905305066306,0.8967489697750557,0.12631111111111115,1.0162746246495966,0.6726419134462955,1.339988255787216,1.1438959587291675,1.3030367349203706,1.3687592548101135,1.3226579296705203,0.7556209666715523,1.0129928315412187,0.8634638094757296,1.542317026910173,0.0,0.6074650681282976,0.29226891888429635,0.9831519301646465,0.6344405121263965,0.8718178151131375,0.8631019541391662,0.9184122242081695,0.4145043651032488,3.0,0.0,2.222222222222223,1.0555555555555556,0.8900000000000001,0.38222222222222224,0.13718820861678002,0.0,0.0,0.0,2515.086154970565,2925.5555243958934,1302.597160175942,1139.9934953129982,9.590615181766474,0.47886111014123706,4.998042548888378,0.9188742568627264,1.0,0.7777777777777778,1.6894440486009497,3.0612321559608757,4.280226253673659,4.418157288156417,4.418157288156417,4.418157288156417,0.21428571428571425,0.0,0.11695906432748542,0.05555555555555555,0.04944444444444446,0.03185185185185185,0.019598315516682865,0.0,0.0,0.0,0.48769494598173435,12.071428571428571,5.185595567867036,2.75,88.68513507536183,1.0,3.5303265330003066,43.934262616902174,,37.654869443218686,38.34882149372066,38.336031255002275,37.66200827735078,52.875194333373386,38.717082845080604,38.919992021942086,47.85280339607475,-0.08602150537634409,-0.04542660382905585,-0.6598673448715734,0.38399999999999984,0.3469445308150085,-0.2121293172781956,-0.08216107954826536,-0.08865585087463185,-0.043410892420382055,-0.026615901546469572,-0.08135386679742279,-0.047900825652327166,-0.04706837086630148,0.20253305645069677,0.05312338123434384,-0.053396226415094436,0.18429485714566388,-0.12727623585890466,-0.045671021962767296,-0.11401604495074703,0.1857304902867311,0.1781791590623587,0.19362558939259478,-0.07873507032276614,0.023493887170422743,0.04871552231130193,0.12829113865815608,-0.1593972602739727,-0.058284628754771126,-0.006973692876869078,0.02316302531259162,-0.017727022537245077,0.048144316790228736,-0.02466373640076053,0.027319943392920407,-0.0309687603235159,-0.08125094653945177,-0.26145226504375385,-0.13197958208697474,-0.1708450704225353,-0.2613047639310006,-0.0007457542301367954,-0.08070269399567966,-0.07048814044284815,-0.23787344928569332,-0.23894097451368698,-0.25945468557551793,-0.0028545665005677043,-0.16760752688172043,-0.12389634516339484,0.027255924728248407,-0.22666666666666677,-0.24367960296857646,0.04082443409263724,-0.17823805416820976,0.030137689174307144,-0.16895304836664948,0.029196036424432296,-0.050558734389224466,-0.21315916094238357,0.013831078737426294,0.07292033381451155,-0.0077510671714284204,-0.06638709677419354,0.030564080518151893,-0.16691831330010054,0.013574231353065815,-0.08816622067129791,0.07387035483003583,0.046104562711864736,0.04250969148482734,-0.10795797226652386,0.031182795698924733,-0.1560035259541703,0.04792955604125582,0.301777777777778,-0.04946622991281785,0.06293032660142862,0.03526638502242962,0.005435356575358915,-0.12427669855254282,-0.19520007816157628,-0.1237131691734125,0.1484194041128398,0.1364247311827957,0.04846306211598897,-0.214665223953607,0.39200000000000024,0.23520110682873804,0.298364035350215,0.1567517275441297,0.2732897723439503,0.07629493688986907,-0.03819943801521054,-0.02996448911068254,0.4559211563750802,2.4811113252000823,6.373468493496842,2.94168275343288,19.92342540509115,32.795866495336185,35.81730220100309,35.956336683761705,35.956336683761705,35.956336683761705,26.979573416543698,17.920897928559842,2.187698705957498,5.172214116202078,0.0,9.058675487983853,1762.297059325185,1513.6420681150994,405.1946117473924,2.0,19.0,24.0,27.0,24.0,20.0,12.0,8.0,5.0,217.07726434,14.0,4.204692619390966,5.030437921392435,5.8888779583328805,6.741700694652055,7.605392364814935,8.465268118551318,9.330520532232288,10.192830744564542,11.058621941528564,0.6666666666666669,0.9863448275862068,1.136331594644229,0.6238046158837157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6491409250464591,0.9721433400946587,1.0134741442097597,0.5914870400134757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,10.006437125691184,6.041840829147961,0.0,5.907179729351506,0.0,4.794537184071822,4.794537184071822,12.628789148012991,0.0,6.923737199690624,12.841643245852019,18.215516058820757,0.0,161.87234859503968,-261.7683207637432,-38.056290652382465,-9.02649381943942,-32.7210400954679,237.52529939820803,384.10883206447477,16.86735727313341,13.245132140154308,18.290896764974992,0.42857142857142855,0.7368860867726111,0.2966444908164125,108.38615106864624,0.20153912947936717,8.908336642074914,0.26311391322738886,4.0,0.21428571428571427,0.3477667060236378,0.630144942730573,0.8810710165327147,0.9094636830789814,0.9094636830789814,0.9094636830789814,0.6279000000000001,,1.5178571428571428,1.0182204456514277,0.6577516478227592,1.515655618211207,-3.340926680164791,0.9489749082007346,0.9571034979285207,-1.3587291872460379,55.38780000000003,14.69560176298435,0.0,4.899909730850478,5.917906046161393,25.807221274690605,12.297610012659364,0.0,0.0,0.0,3.367295829986474,0.0,4.653960350157523,2.3978952727983707,6.133398042996649,4.59511985013459,7.700295203420117,6.6052979209482015,9.315510869581722,19.33333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.603999999999996,0.0,22.519285714285715,0.0,0.0,0.0,0.0,0.0,-0.9934126984126979,32.95361624468264,0.0,0.0,0.0,40.222372984801865,9.589074368143644,5.917906046161393,19.765380445542643,0.0,0.0,0.0,0.0,18.090333860627755,18.825086826347317,16.990718617652252,87.86852523380433,,75.09290215174349,76.55218292377683,76.57809798888701,75.10749432352853,106.239998611861,77.29859784613254,77.70325497275152,95.89971096175606,16.990718617652256,87.86852523380432,,73.79188174358022,75.67942254178988,76.01431086218183,73.80836093649036,109.09131534691161,76.48519078196047,76.88288054595569,97.0643359793956,4.651595997075909,62.928228266783634,,54.49471616070055,55.13217356547675,54.79827828083954,54.50588871292528,78.096038242353,55.742218735989496,56.12909963984279,70.44499375117562,1.2136227584037322,6.276323230986024,,5.363778725124535,5.468013065984059,5.469864142063358,5.36482102310918,7.5885713294186425,5.521328417580896,5.55023249805368,6.849979354411147,2.375976430400569,43.934262616902174,,37.654869443218686,38.34882149372066,38.336031255002275,37.66200827735078,52.875194333373386,38.717082845080604,38.919992021942086,47.85280339607475,28.192156862745104,0.0,1.770400604686319,0.0,0.0,0.0,8.874048091458805,29.390750182083032,2.3729692617787856,0.0,0.0,0.0,-0.816558641975309,1.4615277777777778,0.0,0.0,0.0,17.153124160390796,294.3105698959291,48.99387740942754,88.7757325228654,124.1265613565361,128.1265613565361,128.1265613565361,128.1265613565361,169.0,96.51834289546,105.08707809731857,58.76877334002365,96.41,57.61,0.75,5.3706380281276624,4.807354922057604,3.3207419782813767,3.6834994502081018,,3.68732774330355,3.6766183845277904,3.673573811476332,3.6873419697733794,3.691724418355729,3.6782054041299106,3.6799817470440335,3.6918919891609097,0.23719585559152692,0.26310710358629297,,0.2633805530931107,0.26261559889484215,0.2623981293911666,0.2633815692695271,0.2636946013111235,0.26272895743785074,0.2628558390745738,0.2637065706543507,1.5366604820141634,1.640335474503918,,1.6413742435156402,1.6384656490908898,1.6376372154542187,1.6413781017141447,1.6425659075603314,1.638897207935086,1.6393800287473692,1.6426112974603373,162.14999999999984,62.21558076406494,58.42927956548222,,57.72534166131619,58.23984406141497,58.49919091399931,57.72484266553966,57.604916692271765,58.16955826882829,58.08091817159062,57.53729072263826,4.443970054576067,4.173519968963015,,4.123238690094014,4.159988861529641,4.178513636714237,4.1232030475385475,4.114636906590841,4.15496844777345,4.148637012256473,4.109806480188447,4.467077699596928,4.404289363237888,,4.392168510619764,4.4010419629891455,4.405485160233455,4.392159866271911,4.390080159920995,4.3998344007180465,4.398309415752305,4.388905508523776,0.0,23.980813492063493,8.874048091458805,0.0,-0.7294542076089692,-0.6205246913580249,1.3495663265306121,2.3338110985134795,0.0,202.4674150457377,64.65143530400194,-104.54965163218105,-15.199592977908974,-3.605160401109691,-13.068706454022632,94.86704591853626,153.41216409998458,6.736782822751285,5.290074624137402,7.305341147618314,297.0,19.0,1.0336512104346331,0.49210758640593283,0.0,0.0,0.40628850266330285,0.10772590165565507,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.13608276348795434,0.09128709291752768,0.2826915653637701,0.10685430121230804,10.71517847069432,9.03569222155296,6.574586062669973,5.349768959085313,5.747278747734121,3.9766660763691943,4.698028184665511,3.0640931979983645,3.2917034832974226,1.8045824050203534,1.9712060898713617,0.9421663577839464,1.1250723510669456,0.5334425152065285,0.4527726412901688,0.2408904455650644,2.640217092540401,1.1845400271905087,3.66151974881595,1.4691138176436147,4.999051873419409,1.6572635930438542,47.647636114069634,26.759309868014725,21.246093614521193,20.73354713310669,20.73354713310669,20.73354713310669,66.0,76.0,31.437894999999976,20.954105,0.1724137931034483,14.05,6.555555555555555,3.277777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,29.0,0.0,0.0,29.0,0.0,2.0,2.0,27.0,2.0,14.0,27.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,3.0,2.0,1.0,14.0,5.0,0.0,1.0,3.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,2.833213344056216,1.3862943611198906,3.1780538303479458,3.4339872044851463,3.5553480614894135,3.5263605246161616,3.295836866004329,2.772588722239781,2.6390573296152584,2.0794415416798357 +3052775,C#CCN[C@@H]1CCc2ccccc21,0,19.0,5.667111538461539,2.9615384615384617,5.0,159.10391585404756,74.63747434615384,1.5560295293475772,5.776600000000001,2.7532051282051286,7.231840769230771,220.36944891598972,22.037037037037038,6.040888888888889,3.7037037037037037,5.074074074074074,143.8503936481889,82.48332288888885,1.8976594081481475,6.20525925925926,2.817901234567901,7.471039703703706,266.2233020223302,17.617021276595743,5.916106382978723,3.404255319148936,3.723404255319149,150.26351627081593,63.67115808510639,1.627452654139297,6.051223404255321,2.387706855791962,7.406752851063829,219.33780008835538,13.193548387096774,5.698193548387095,2.7580645161290325,2.370967741935484,156.29647080510304,45.677088,1.342750280293355,5.806677419354838,2.172043010752688,7.266331870967741,170.7218282636965,11.183333333333334,5.638099999999999,2.3666666666666667,1.7,158.94255317333898,37.06870246666666,1.2466121762172833,5.735183333333333,2.0444444444444447,7.234143733333334,153.09963774080126,8.781818181818181,5.4525999999999994,1.981818181818182,1.4181818181818182,162.56586743034057,28.007537090909082,1.0950189427660182,5.535736363636364,1.9924242424242427,7.1058414545454545,127.87825841817764,8.72972972972973,5.3701081081081075,1.7297297297297298,1.5405405405405406,163.80555046796982,28.796217243243248,1.0856837599347025,5.450891891891892,2.265765765765766,7.044978810810811,127.88432771564183,8.619047619047619,5.387142857142858,1.6666666666666667,1.4285714285714286,159.95974558484016,27.28965614285713,1.129903702092524,5.480833333333334,2.650793650793651,7.044988000000002,130.96379506381928,6.454545454545454,5.268181818181819,1.3636363636363635,0.8181818181818182,165.1813958887041,19.079989181818178,0.9617896431131817,5.341136363636364,2.5,6.974636,104.78351870514311,6.479289940828402,0.04109245562130174,0.0074648077054540836,0.4748520710059172,2.6331360946745566,1.4686870990524854,31.258531965976324,0.2416282195258595,0.04610059171597628,0.4839332675871137,0.016005023668639044,54.32492992761737,0.22156476002629924,-0.0003180966469428816,-0.0024894318136309827,0.17472057856673248,0.4893710278325662,0.03157583181548689,1.078564487015119,0.009225472927869962,0.00021906640368176517,0.019311430102028335,-0.0004394966031119602,2.121649407243501,-0.7296991061311845,-0.0056072674052625475,-0.0007179669736946601,-0.014131940073020254,-0.3254437869822486,-0.08820593188572998,-3.5030911075475277,-0.020862070521131933,-0.006186843761802853,-0.04387598444472422,-0.0021661726048092444,-5.155165478210926,-0.5388432907043329,-0.000572356365718662,0.0006987497338951171,-0.12187440351212063,-0.4482725711013553,-0.2607691804731838,-2.6382223108894833,-0.03288176262447236,-0.0011616338995991593,-0.0009755890649190787,-8.233384233631821e-05,-6.522246704860712,-1.1241617357001974,-0.007259378698224848,-0.0011537586357656473,-0.08767258382642998,-0.44595660749506916,-0.1304854502467653,-5.405801601232741,-0.033539429188728064,-0.00842084812623273,-0.05487343852728466,-0.0025688467455621264,-8.241337950846942,-0.12124798278644446,-0.0008492388380849574,0.00016013505145357726,-0.0328940290478752,0.09273803119956968,-0.020773991922836722,-0.5834806687735331,-0.003975883503482565,-0.0009452071005917064,0.007228348574502449,-0.00032845024206563825,-0.9341284009635181,1.167279705741244,0.003866380137534029,0.0003966452576611729,0.03970094354709737,0.41468095314249165,0.2871546825699811,5.659358618223254,0.04952728339182657,0.005364688949304335,0.022592488938642793,0.000994818327202923,10.891894199259237,-0.2595097210481827,0.0006619399830938755,0.00017299450408932596,0.023316427162580988,-0.08734854888701044,-0.1053053574712227,-1.2744748121301757,-0.01568983622847852,0.00015325443786983668,-0.041523825177671406,0.0005200019723865691,-3.190903672563479,0.6395911780527164,0.004917684238838151,-0.0004914510724085143,0.12305002689618072,0.10812264658418508,0.033045181500038094,3.064554390667027,0.015356306237154489,0.00553786982248522,-0.0923248759787222,0.0018008224852070732,4.107973921419723,,,0.49230769230769234,1.1923076923076923,0.6153846153846154,0.0,0.5769230769230769,0.038461538461538464,0.6337139795659669,-6.164136918728448e-05,0.013169127861581946,0.6112902573332133,0.2363766847591432,0.2570859998695129,1.24500423689918,0.4934626846286561,2.0369234395813702,1.8823658082913861,0.1545576312899842,0.0,0.0,0.1545576312899842,6.580953823692307,494.0,147.3449,77.0,130.0,4136.701812205237,1940.5743329999998,40.45676776303701,150.19160000000002,71.58333333333334,188.02786000000003,5729.605671815732,595.0,163.104,100.0,137.0,3883.960628501101,2227.049717999999,51.23680401999998,167.54200000000003,76.08333333333333,201.71807200000006,7188.029154602916,828.0,278.05699999999996,160.0,175.0,7062.385264728348,2992.5444300000004,76.49027474454697,284.4075000000001,112.22222222222221,348.11738399999996,10308.876604152703,818.0,353.2879999999999,171.0,147.0,9690.381189916388,2831.979456,83.25051737818802,360.01399999999995,134.66666666666666,450.5125759999999,10584.753352349182,671.0,338.28599999999994,142.0,102.0,9536.553190400338,2224.1221479999995,74.796730573037,344.11099999999993,122.66666666666667,434.048624,9185.978264448075,483.0,299.893,109.0,78.0,8941.122708668732,1540.4145399999995,60.226041852131004,304.4655,109.58333333333334,390.82128,7033.30421299977,323.0,198.694,64.0,57.0,6060.805367314883,1065.4600380000002,40.170299117583994,201.68300000000002,83.83333333333334,260.664216,4731.720125478748,181.0,113.13000000000002,35.0,30.0,3359.1546572816433,573.0827789999997,23.727977743943004,115.09750000000001,55.66666666666667,147.94474800000003,2750.239696340205,71.0,57.95000000000002,15.0,9.0,1816.995354775745,209.87988099999995,10.579686074244998,58.752500000000005,27.5,76.720996,1152.6187057565742,168.46153846153845,1.0684038461538452,0.19408500034180617,12.346153846153847,68.46153846153847,38.18586457536462,812.7218311153845,6.282333707672347,1.1986153846153833,12.582264957264956,0.41613061538461515,1412.4481781180516,5.98224852071008,-0.008588609467457804,-0.06721465896803654,4.717455621301777,13.213017751479287,0.8525474590181461,29.121241149408213,0.24908776905248897,0.00591479289940766,0.521408612754765,-0.011866408284022925,57.28453399557452,-34.29585798816567,-0.26354156804733975,-0.03374444776364902,-0.6642011834319519,-15.295857988165682,-4.145678798629309,-164.6452820547338,-0.9805173144932008,-0.29078165680473406,-2.0621712689020386,-0.10181011242603448,-242.2927774759135,-33.40828402366864,-0.035486094674557045,0.04332248350149726,-7.556213017751479,-27.79289940828403,-16.167689189337395,-163.56978327514796,-2.038669282717286,-0.07202130177514787,-0.06048652202498288,-0.005104698224851729,-404.37929570136413,-67.44970414201184,-0.4355627218934909,-0.06922551814593884,-5.260355029585798,-26.75739644970415,-7.829127014805919,-324.3480960739645,-2.0123657513236837,-0.5052508875739639,-3.2924063116370794,-0.1541308047337276,-494.4802770508165,-6.668639053254445,-0.046708136094672656,0.00880742782994675,-1.8091715976331362,5.100591715976332,-1.1425695557560198,-32.09143678254432,-0.21867359269154107,-0.05198639053254385,0.3975591715976347,-0.018064763313610104,-51.377062052993494,43.18934911242603,0.14305606508875907,0.014675874533463397,1.4689349112426027,15.343195266272192,10.6247232550893,209.3962688742604,1.8325094854975832,0.1984934911242604,0.8359220907297833,0.03680827810650815,403.0000853725918,-5.449704142011837,0.013900739644971386,0.003632884585875845,0.48964497041420074,-1.8343195266272192,-2.2114125068956767,-26.763971054733688,-0.32948656079804894,0.0032183431952665705,-0.8720003287310994,0.010920041420117951,-67.00897712383306,7.0355029585798805,0.05409452662721966,-0.0054059617964936565,1.353550295857988,1.1893491124260358,0.363496996500419,33.7100982973373,0.16891936860869938,0.060916568047337416,-1.0155736357659442,0.019809047337277806,45.18771313561695,0.6996932183267545,0.5834939968228768,0.45821535001232355,0.3330202953726964,0.2882249870025823,0.1875055388887289,0.18375361643758104,0.10764100952498486,0.11878438130433408,0.06294512717874699,0.08239818126286633,0.0358590099704895,0.05659355448437285,0.021607029727267125,0.03891426399621672,0.012470380208982763,7.020038491176695,5.6741917612712,3.1052614013973487,2.17399816042768,0.32299977406724817,-0.36872939501693774,3.2035364789810803,0.9110392248887313,4.177089148985377,1.8931759840653721,14.54021809185122,10.934729874399855,14.017037749141792,11.685355435833252,1.9996002316399817,1.0654158994210028,3.0812070001293943,2.2239373351114473,4.061714411558234,1.2506061271062534,3.239303607716032,2.419899829257542,20.908152951553692,15.5945179631041,0.23912435636292556,0.6504611401328089,0.80162640516668,0.847780251320526,0.8785494820897568,0.8939340974743721,1.8373755779662986,335.2228677267164,1.0,0.0,1.0,1.0,4.0,3.0,2.0,0.0,0.0,3.504817936326464,1.4481340174770474,0.6923076923076916,0.4615384615384617,0.3076923076923075,0.23076923076923084,75.0777529660715,329.67106666477434,27.37983506915041,12.679656410183627,25.177624971021373,,8.0,167.0,0.0,0.0,0.0,12.586597235060536,0.0,23.96854622924601,0.0,0.0,35.50269119670841,6.423349895620259,6.4,15.5,8.0,0.0,7.5,0.0,0.007692307692307665,0.5,0.07484407484407474,0.05982905982905973,-0.01501501501501501,0.03076923076923066,0.04031578947368397,0.0,0.5153846153846157,0.7307692307692306,0.4405405405405409,0.45555555555555594,0.7,8.23828173435757,-0.0008013377994346982,0.1711986622005653,7.946773345331772,3.0728969018688614,3.342117998303668,16.18505507968934,6.41501490017253,0.673684210526316,0.078125,0.0,0.234375,0.3333333333333333,0.40034328174970735,-0.35037950070617363,-0.03592354047399973,-0.013476134642545141,-0.03185268188237942,0.5996567182502927,0.5248181526048394,0.03676335814585863,0.02018531356172459,0.03498787684032263,-2.9249357710995056,0.9288855065110774,1.0775419839084184,1.3885476384257949,0.7874697127033575,0.7573866000832292,1.0658629368031431,0.9283699758917142,0.9517104810012715,1.0257978103890053,0.8411719012890789,1.1663939260359615,0.9346836376914223,1.0830175847663461,1.3231609169650953,1.1926237551154617,1.3355869291442963,1.1887401386564667,1.117982574182194,1.081011653813873,1.0450388569304918,1.2546835273651813,0.6951884217163278,1.4283005203035561,1.045746924280528,1.0483870967741935,1.0743717437540172,0.8829127372778478,1.4860315546176264,1.1867977528089888,1.1592449357900265,1.0488442504223126,1.0872947940523938,1.0582775410833838,0.7464316724506764,1.1078136148772435,1.0711568574124992,1.13898401826484,1.2611102111345105,1.1928966092555038,1.0462097611630323,1.077247191011236,1.0606654041053318,1.1373587865314354,1.0810614456954128,1.2340801886792452,0.8067278027794289,1.294775758893257,1.095974237696679,0.9754047322540472,0.8889003431365329,0.8033746421766161,0.8283772302463891,0.8764044943820224,0.9201906023118288,0.9758589533224271,0.9719632162892874,0.9170240137221266,0.8399268219256334,0.8422442939933565,0.9781620651175078,0.7740960138220412,0.6377599047289635,0.7317628078229169,0.6020038730319104,0.7895535985423626,0.6848812055722456,0.7747980785891747,0.7677905280998398,0.6822624511303753,1.3328200408951025,0.5637750393280183,0.7778925326695224,0.9716786257882148,0.5515570880871382,0.8167410220585536,0.6267616080700192,0.9650882825040128,0.9373956056412559,0.9753572208829688,1.048922760886769,0.6691749026654681,2.067083944896631,0.37316007905308807,1.043612475991783,0.843192195931922,0.4786239194144588,1.0603232381571508,0.36816765788728406,0.8631256384065373,0.813442467705222,0.8463843652290227,0.9102222305215765,0.5806889651229268,2.370761190919126,0.323816597525407,0.9056141320589852,1.5,0.0,1.333333333333334,0.7916666666666666,0.26222222222222225,0.17027777777777778,0.11596371882086165,0.043402777777777776,0.02040816326530612,0.0,1905.7855637760697,2219.811825717019,1170.2869185861089,1035.3992107680451,9.001636059401486,0.4160116436552383,5.256850646743612,0.7123629078139407,1.0,0.4,1.1956217818146277,3.2523057006640443,4.0081320258334,4.23890125660263,4.392747410448784,4.469670487371861,0.10714285714285712,0.0,0.07407407407407411,0.049479166666666664,0.02185185185185185,0.021284722222222222,0.01932728647014361,0.014467592592592591,0.02040816326530612,0.0,0.3280357142857143,9.551020408163266,4.481481481481482,2.0833333333333335,79.1643122278147,1.0,3.494555061042644,40.206407658641716,,32.584957197929164,32.12409600100529,31.698720961778008,32.58880328568114,39.78037090149559,32.38756663010758,32.61290891257258,37.602840414659056,0.03419583967529185,-0.007740998734034889,-0.33348907458287314,0.3679473866389755,0.1858510195588847,0.021499359418257195,0.03450464302639336,0.03818044492473958,0.004751921733053312,0.03990515096908904,-0.027459915849617232,0.03905480246491602,-0.1126202273389682,-0.13645491174676405,-0.09618023692292636,-0.02976072115065947,-0.12359550561797755,-0.060057674601101556,-0.11206831822302159,-0.08633954495078848,-0.1342031312725816,-0.09066536108064947,-0.13534329280960325,-0.09489502305994094,-0.0831639416703491,-0.01392850237506762,0.09360585851187873,-0.25665762234951256,-0.17024284160927877,-0.1775525778373198,-0.08440007079542583,-0.13608411587435998,-0.02519780888618382,-0.002015957840186015,-0.005144249958070777,-0.12005991933263356,-0.17350076103500764,-0.17665964684918198,-0.15455972629042616,-0.1846313603322949,-0.16936329588014984,-0.0888449625049115,-0.17293843508443524,-0.13880592777839268,-0.18266247379454922,-0.11339050692026828,-0.1605025271281316,-0.1517045297955785,-0.01871315898713161,-0.02066653903362067,0.021451999538658745,-0.06927216086094591,0.03521961184882534,-0.014144600259809553,-0.018666285077259183,-0.016454549519440788,-0.020503144654087865,0.014936663913483196,-0.02052169674133118,-0.01719520673488493,0.18015549796371713,0.0940897806927302,0.05313536172825566,0.08360697145743869,0.15748557546310354,0.19551794439757605,0.18105004497278507,0.2049730925014165,0.11636919938806746,0.04668513295498099,0.06215662955576968,0.20049531980568802,-0.04005218525766473,0.016108552606204807,0.023174676551002023,0.04910250704643223,-0.03317281968967362,-0.07170033531251131,-0.04077206228102429,-0.06493379067753866,0.0033243486073677867,-0.0858048577331928,0.03248992211148579,-0.05873737300379485,0.09871315898713158,0.1196736521214102,-0.06583573104628546,0.2591333899745114,0.04106230847803882,0.022499810559619537,0.09803897361535317,0.06355344697439626,0.12012578616352242,-0.19078018016627185,0.11251607760728807,0.07561857745409327,9.33777520191403,10.742874792194039,2.381101577952299,9.219962362814327,25.26671932013833,28.56774610206288,29.64674610206288,30.64820764052442,30.72574610206288,26.480004714557815,24.47075550778802,2.0092492067697947,0.0,0.0,2.0092492067697947,1161.6683164551832,951.9268323716686,305.288736521361,10.0,18.0,24.0,31.0,34.0,31.0,30.0,27.0,14.0,171.104799416,14.0,4.174387269895637,5.003946305945459,5.855071922202427,6.71295620067707,7.578145472419466,8.445267451844648,9.315510869581722,10.18606913959895,11.058275364758341,0.5897435897435896,0.9487692307692307,1.1150046521509536,0.5483531122112424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6865110317825889,0.9387631975867271,0.9782340747380807,0.6261478573329785,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,6.423349895620259,30.18590259270208,23.96854622924601,6.041840829147961,6.544756405912575,150.80204594607258,-131.98159672650232,-13.531745499585034,-5.076215258711628,-11.998326975136573,225.87979891214408,197.689469938272,13.848089569565376,7.6034411514719995,13.179297995884802,0.5,0.9787029412088604,0.3419726934823348,23.4586431852482,0.14154059295484375,159.88980483190423,0.021297058791139543,4.0,0.14285714285714285,0.2543638156235023,0.6919152027653811,0.8527142706169025,0.9018095137446016,0.9345396758297344,0.9509047568723008,1.8967,,0.1428571428571429,0.18566775244299671,0.22524958545764784,0.14250017848218755,-0.5181818181818181,0.16118421052631582,0.14026299311208512,-0.3193246282434288,54.33970000000003,0.0,0.0,5.316788604006331,0.0,18.88348407499998,6.544756405912575,35.392371257240434,0.0,12.343784214475903,3.367295829986474,0.0,4.61512051684126,2.3978952727983707,6.07993319509559,4.727387818712341,7.650168700845001,6.823286122355687,9.276970454273945,15.333333333333332,8.583836844923153,0.0,0.0,0.0,0.0,0.0,2.8979365079365085,0.0,24.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.990120955924795,5.316788604006331,0.0,0.0,6.544756405912575,6.4208216229260096,12.343784214475903,23.58956543546796,24.26546827384644,0.0,0.0,0.0,14.2571809174923,17.84928682634731,17.18125982161793,80.41281531728342,,65.14793637388023,64.21962773240382,63.362788141177695,65.15568346698032,79.79990264215202,64.75033568936483,65.20423890312783,75.35306142696888,17.18125982161793,80.41281531728345,,65.02705725300115,64.06252424956746,63.17219233809814,65.03510639288001,80.078923621173,64.61394904968873,65.08555483203301,75.52500545756152,4.64051163672117,59.87145847804695,,49.38019123002839,48.549852117062066,47.786832559506244,49.38713601897775,62.67303238463346,49.02410156749852,49.43066856443984,58.60201263889907,1.321635370893687,6.18560117825257,,5.01137972106771,4.939971364031063,4.874060626244438,5.011975651306178,6.13845404939631,4.980795053028064,5.015710684855987,5.796389340536067,2.3949293555646096,40.206407658641716,,32.58495719792912,32.12409600100522,31.698720961777898,32.588803285681095,39.78037090149559,32.38756663010752,32.612908912572536,37.602840414659056,24.407843137254904,0.0,0.0,0.0,0.0,0.0,0.0,25.434085943190098,3.0262292139077855,3.3513425925925926,0.0,0.0,0.4789351851851851,0.0,0.0,0.0,2.614285478080121,16.27984429065744,368.6596294627163,31.086166327180322,84.55994821726516,104.2114326716684,110.21143267166838,114.21143267166839,116.21143267166838,246.0,95.32962999692371,8.022215395500345,57.93805791090867,12.03,12.03,1.0,6.843216757844566,4.807354922057604,3.191999792131081,3.545590279968331,,3.5551903530936415,3.555508221899946,3.55579230130513,3.5551876610280617,3.5497462251577234,3.555327673048666,3.5551707744348535,3.551410716162149,0.2455384455485447,0.27273771384371776,,0.27347618100720317,0.273500632453842,0.2735224847157792,0.27347597392523554,0.2730574019352095,0.2734867440806666,0.2734746749565272,0.2731854397047807,1.4230118789332096,1.5280689211595815,,1.5307728714632238,1.5308622772517448,1.5309421724564005,1.530772114241716,1.529240379528515,1.5308114959219583,1.5307673643846276,1.5297091738527817,146.6999999999999,82.54143769288282,54.6934566266513,,54.25354161412413,54.239678060367446,54.22683016716156,54.253656985870585,54.4509716448046,54.24761273230143,54.254379948770364,54.39569957366447,6.349341360990986,4.207188971280869,,4.1733493549326255,4.172282927720572,4.171294628243197,4.173358229682353,4.1885362803695845,4.17289328710011,4.173413842213105,4.184284582589575,4.675664706775474,4.264108343826896,,4.256032537966865,4.255776972616815,4.255540071964697,4.2560346644939155,4.259664958403583,4.255923250985279,4.2560479900119175,4.25864936324992,0.0,0.0,3.3513425925925926,2.8979365079365085,2.614285478080121,9.062772030108338,7.574654509952129,0.6656755479969766,0.0,178.30982959755684,56.80439287536017,-49.71507134227207,-5.097162858935562,-1.9121181285489253,-4.51955194020655,85.08481937042944,74.46603424539126,5.216323926825713,2.864078240207356,4.964402283026085,251.0,16.0,0.46941609682128765,0.2874574785652648,0.0,0.0,0.13608276348795434,0.06348347342142807,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.07216878364870322,0.2874574785652648,0.14719550293546269,0.3957132221261607,0.1750303309798106,9.096011838247808,7.585421958697399,6.41501490017253,4.6622841352177495,5.188049766046482,3.37509969999712,4.410086794501945,2.5833842285996367,3.6823158204343565,1.9512989425411567,2.801538162937455,1.219206338996643,1.7544001890155585,0.6698179215452809,1.1674279198865016,0.3741114062694829,1.3806820952411107,0.7589824893789704,2.398285113444808,1.1695821750358757,3.254991801242204,1.315244081055912,44.83366899530047,26.751567076601106,20.68688162426563,18.917312610310944,17.463229685158048,17.255503552993343,64.0,74.0,29.80830899999998,13.611690999999997,0.34615384615384615,40.01,3.5833333333333335,3.055555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,6.0,26.0,0.0,1.0,27.0,6.0,0.0,3.0,23.0,7.0,14.0,20.0,1.0,0.0,0.0,12.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,1.0,1.0,0.0,13.0,1.0,0.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,2.995732273553991,4.675745138657694,3.417726683613366,3.907010463604602,4.380462912697699,4.7921682906659475,4.760034896549007,4.952520540756487,5.0745877060053655,4.675745138657694 +149096,C[C@H]1COc2c(N3CCN(C)CC3)c(F)cc3c(=O)c(C(=O)O)cn1c23,0,25.043478260869566,6.5953195652173875,3.608695652173913,9.434782608695652,166.51588568663,99.79293332934287,1.4262070238473912,6.62488260869565,6.380434782608695,8.045876956521736,217.77236420241672,26.489795918367346,6.5872448979591836,4.36734693877551,8.408163265306122,149.09104492829073,101.40840442520823,1.7325836709387765,6.713673469387757,3.3475056689342404,7.966598693877547,262.60844345500794,22.808988764044944,6.551876404494383,4.044943820224719,7.134831460674158,160.1220685446465,86.32811554685841,1.493072176576843,6.632304494382019,3.4438202247191003,7.990698966292131,224.4006551018552,20.865546218487395,6.4785201680672255,3.6050420168067228,6.470588235294118,159.86548294065489,77.7298101320874,1.4241655077818232,6.556084033613446,3.351540616246498,7.9351423865546185,208.56791799773222,18.633093525179856,6.363114388489209,3.0863309352517985,5.690647482014389,160.9065729286984,68.95429154775252,1.2698184126828993,6.425908633093523,3.8389288569144684,7.8750364604316525,181.59264376496844,18.265151515151516,6.471636363636366,3.015151515151515,4.984848484848484,164.98263479276605,67.2805880262303,1.2170771466823782,6.520655303030302,3.802188552188552,7.9771200606060635,176.66977584775975,18.37719298245614,6.6895701754385986,2.8596491228070176,4.385964912280702,164.22068969220214,65.77207462878597,1.225912901834158,6.735231578947369,3.9644249512670546,8.166210771929824,178.08442535484375,15.053571428571429,6.5172491071428595,2.4107142857142856,3.330357142857143,168.32559379288463,52.48196570638573,1.0683909240547405,6.5378678571428575,4.425595238095238,8.067686464285716,147.70702180355678,11.456521739130435,6.180195652173914,2.2065217391304346,1.9130434782608696,169.65947456917425,37.30763814107824,1.022812491052489,6.212165217391303,2.9420289855072466,7.774753739130432,131.5068207512318,7.982986767485821,0.20211724952741003,0.03038309777299041,0.7334593572778828,4.896030245746693,1.9228498782965386,38.0770843027125,0.22285239627669193,0.1821143667296786,2.7483721907162355,0.12458907561436669,47.140982982093284,0.39145866286023023,-0.009222839589522018,-0.011789840982180928,0.3215539523938121,1.6425678021681251,-0.5167623378733307,1.8533715244087827,-0.022421630585289797,-0.005217915975463967,-0.11207129354577368,-0.008861025924925731,-1.1288131943611412,0.8856014103353804,-0.012093922707674004,-0.0043386136974621495,0.08041460461757406,0.686285338034451,0.07396252932620735,4.3828716174488065,0.03870966042724906,-0.007237864531339654,0.2913878917893276,-0.007587650113633945,9.866867889767743,0.1273530206033268,0.0002807957776683449,-0.00044431500702324644,0.025400708487553818,0.6615145112865561,0.17396319485878217,0.6101030201398868,-0.00013404416161291662,0.0008236310781401217,0.02771070621065062,-0.00071867152229512,0.9433327916515094,1.13462349213257,0.040435815846377704,0.004375343603408632,-0.0037127198052522054,0.8646829228488665,-0.15182648937688226,5.353088994031007,-0.010023621355672462,0.036946440276890015,0.40080412040877694,0.023866679155730236,0.41621907092641114,0.5924414275075901,0.004461900670218249,-0.001770331864475667,-0.13431574726470752,-0.337729850489775,-0.058009092885785624,2.8172456193992166,0.0005807675696526628,0.005794098355960337,0.0950072559240801,0.001381851921865151,2.251457291317652,-2.3159387125659143,-0.039807886445793084,-0.002969166576724223,-0.244519616621895,-1.6340165157695754,-0.2505494215676877,-11.218340624815914,-0.0602678718278543,-0.038323748880708414,-0.5059363910721983,-0.022723042814976956,-14.539213667994254,-1.3350830407777485,0.0014411161558196153,0.003165691128761,-0.07352146907912503,-0.9950209289765056,0.0064860027405652465,-6.286576308367697,-0.011240798321360766,-0.0027948791520388846,0.14236064227203168,0.005652818795571157,-6.870649893070743,-1.6531190926276005,-0.03216550094517955,0.0003197892197439194,-0.02362948960302458,-0.9352551984877128,0.08672386083359564,-8.181862776096796,-0.005961881214254755,-0.03250831758034021,-0.45180896870405396,-0.015599718336483923,-5.972230828843531,,,0.45457875457875463,1.1634615384615385,0.46153846153846156,0.038461538461538464,0.7019230769230769,-0.2403846153846154,0.9274175628358479,0.020549834971668488,0.03378060420243772,0.9791793264601423,0.23037966169288743,0.24577102496517853,1.9065968892959901,0.476150686658066,2.0547568406360877,1.450222277275104,0.25480294303908935,0.2804632842434549,0.06926833607843898,0.6045345633609831,7.850951833478272,1152.0,303.38469999999984,166.0,434.0,7659.730741584981,4590.474933149772,65.60552309698,304.7445999999999,293.5,370.11033999999984,10017.52875331117,1298.0,322.775,214.0,412.0,7305.461201486245,4969.011816835204,84.89659987600005,328.9700000000001,164.02777777777777,390.3633359999998,12867.813729295389,2030.0,583.1170000000001,360.0,635.0,14250.86410047354,7683.202283670399,132.88342371533903,590.2750999999997,306.49999999999994,711.1722079999996,19971.658304065113,2483.0,770.9438999999999,429.0,770.0,19023.99246993793,9249.8474057184,169.47569542603696,780.174,398.83333333333326,944.2819439999996,24819.582241730135,2590.0,884.4729000000001,429.0,791.0,22366.01363708908,9584.6465251376,176.504759362923,893.2012999999997,533.6111111111111,1094.6300679999997,25241.377483330612,2411.0,854.2560000000003,398.0,658.0,21777.70779264512,8881.0376194624,160.65418336207392,860.7264999999999,501.88888888888886,1052.9798480000004,23320.410411904286,2095.0,762.6110000000002,326.0,500.0,18721.158624911044,7498.016507681601,139.754070809094,767.8164,451.94444444444423,930.948028,20301.62449045219,1686.0,729.9319000000003,270.0,373.0,18852.46650480308,5877.980159115202,119.65978349413092,732.2412,495.6666666666667,903.5808840000001,16543.18644199836,1054.0,568.5780000000001,203.0,176.0,15608.67166036403,3432.3027089791985,94.09874917682897,571.5191999999998,270.6666666666667,715.2773439999997,12098.627509113327,367.21739130434776,9.297393478260862,1.3976224975575589,33.73913043478261,225.21739130434787,88.45109440164077,1751.5458779247751,10.251210228727828,8.377260869565216,126.42512077294683,5.7310974782608675,2168.485217176291,19.18147448015128,-0.4519191398865789,-0.5777022081268655,15.756143667296795,80.48582230623813,-25.321354555793206,90.81520469603035,-1.0986598986792,-0.25567788279773435,-5.4914933837429105,-0.4341902703213608,-55.31184652369592,78.81852551984886,-1.0763591209829864,-0.3861366190741313,7.156899810964092,61.07939508506614,6.582665110032454,390.0755739529438,3.4451597780251664,-0.6441699432892292,25.93352236925016,-0.675300860113421,878.1512421893292,15.155009451795888,0.03341469754253304,-0.05287348583576633,3.0226843100189043,78.72022684310018,20.70162018819508,72.60225939664653,-0.015951255231937078,0.09801209829867448,3.297574039067424,-0.08552191115311927,112.25660220652962,157.71266540642722,5.620578402646501,0.6081727608737999,-0.5160680529300565,120.19092627599244,-21.103882023386635,744.07937017031,-1.3932833684384722,5.135555198487712,55.711772736819995,3.3174684026465027,57.854450858771145,78.2022684310019,0.588970888468809,-0.23368380611078804,-17.729678638941394,-44.5803402646503,-7.657200260923703,371.8764217606966,0.07666131919415148,0.7648209829867645,12.540957781978573,0.18240445368619992,297.19236245393006,-264.0170132325142,-4.538099054820411,-0.33848498974656144,-27.87523629489603,-186.2778827977316,-28.562634058716398,-1278.890831229014,-6.87053738837539,-4.368907372400759,-57.676748582230616,-2.590426880907373,-1657.470358151345,-149.52930056710784,0.16140500945179692,0.354557406421232,-8.234404536862003,-111.44234404536863,0.7264323069433076,-704.096546537182,-1.2589694119924058,-0.31302646502835507,15.94439193446755,0.6331157051039696,-769.5127880239232,-152.08695652173924,-2.9592260869565186,0.02942060821644059,-2.1739130434782616,-86.04347826086958,7.978595196690798,-752.7313754009053,-0.5484930717114375,-2.990765217391299,-41.56642512077296,-1.4351740869565208,-549.4452362536049,0.714809903067996,0.5638134015347025,0.42689371907274903,0.29624126215671437,0.2712847077356691,0.15833998034564353,0.16382513666692702,0.0824101852470213,0.09970731219020447,0.04098633517483386,0.061653242070394666,0.02223642920711293,0.038651872570330356,0.011386219163178194,0.02460729936724982,0.005899788343632401,9.004069784972392,5.669237088151579,4.1077228259863015,2.1639209726641413,0.4976074031443695,-0.5175321014515921,3.326630423951863,0.9726908270407256,7.004064028421364,0.9936778318842899,17.4247723340034,10.933392093072747,19.000142182631915,11.684056237759803,2.0163528290145813,0.5458495057327608,3.9886764995157,2.2124881204839957,8.0019203921276,1.2588698316385016,4.009962636750036,2.4079722516527293,20.91177670324714,13.304119084553516,0.3001841995825614,0.6339601680588798,0.806843724474841,0.8369254097696369,0.8369254097696369,0.8369254097696369,1.605186418645728,963.2881482992597,0.0,2.0,6.0,0.0,6.0,1.0,2.0,0.0,0.0,3.7880891179537466,1.8584101804620823,0.8589081522679765,0.6849951087897166,0.6849951087897166,0.6849951087897166,214.22815806278632,1552.0853341500779,68.79877705132267,33.74098552500169,74.2166667093949,,12.0,501.0,17.215316520898284,19.086016810659167,23.598398499822668,30.043111637408877,19.15587988028676,6.196843571613076,4.567099647791355,18.871318913218293,4.899909730850478,4.736862953800049,11.81904761904762,30.25,12.0,1.0,18.25,0.0,0.0454212454212454,-6.25,0.1986197377501724,0.05082432328809139,-0.147795414462081,0.022479989146655832,0.21278836833602555,0.0,0.6430641821946171,0.9069597069597066,0.44444444444444475,0.5922398589065258,0.8844797178130508,24.112856633732044,0.5342957092633807,0.8782957092633806,25.4586624879637,5.989871204015073,6.390046649094642,49.571519121695744,12.379917853109715,0.5012116316639744,0.193392425463336,0.0,0.4822723609991942,0.4444444444444444,0.30873726663155865,-0.8556348204651676,-0.0694469640309073,-0.018600756966634078,-0.07778498367865158,0.6912627333684414,1.915766344675892,0.05340002555470464,0.041647094449475903,0.054736181276454035,-2.702977536438293,0.7027478289445072,0.6857139106485224,1.398487612285658,0.6804912686724175,0.4200023638799148,1.3814428554193523,0.7049942713621858,1.2125645569327104,0.6594783826119911,0.5855688473325901,0.7274720559405478,1.0183870905645607,0.7559126453051376,0.8326980423509814,1.2279929583973497,1.0864922390825902,0.7711650253785084,0.9946864556869808,0.7504220876914603,0.811944294995657,0.8103125286290098,0.45509240574806914,0.8179018196707089,0.7426626756946081,0.8644960470572317,0.8101986123025409,1.0001430982782604,1.0591646452395391,0.7807582492456441,0.9633184814625841,0.865817260176294,1.013065862666797,0.8044209966407402,0.6714207845920181,0.8038472254568396,0.9550301302574193,0.8027021432818227,0.6945495009003227,0.7359317077063844,1.0027210190610398,0.7755097080636647,1.032186401720621,0.8046467850176828,1.0663341303280116,0.6945993468100693,0.7107457327985531,0.7158486166045467,0.9977944455778527,0.9200024756205198,1.0929859512029927,1.0565847620788507,1.217563847235239,1.1148319585819584,1.1750234051516457,0.9264008917665132,1.0051532597929305,1.072027426257887,0.9852819849237506,1.0871437524514949,0.9336674500827576,1.2759543602078842,1.4429235100081388,1.2124237478813875,1.310363537710255,1.3819980694980694,1.3740054767756413,1.2856854235392405,1.2728261117445594,1.4300789868399884,1.4658319590531548,1.4281267160607314,1.243480309838911,1.2139437307601233,1.1696084814828391,0.9008846475307414,1.0003221649484537,1.2470094456701597,0.9658579987856034,1.2089811198768878,0.987736726242389,1.1851733939071976,1.29563034793111,1.1519532608918086,1.089619588904059,1.2494080037887758,1.2466642707949243,0.768106906512662,0.8625966494845361,1.1977557915057913,1.0162504453745527,1.2646908600171776,0.9980457326859365,1.2673204378311889,1.2328465322888809,1.1692911810608368,1.1291008567669427,5.5,0.05774920926436078,3.7777777777777795,2.625,2.7777777777777786,1.4791666666666665,1.0506122448979593,0.4496527777777778,0.2625346434870244,0.16687500000000005,5692.275796946157,6272.437634083306,2634.5002930298374,2431.9099134895228,13.690903645071888,0.46354089567827034,7.344609906790369,0.8640749908874167,1.0,0.4444444444444444,1.7354728381032662,3.6651517755949308,4.664653803789037,4.8385668472672965,4.8385668472672965,4.8385668472672965,0.1896551724137931,0.007218651158045097,0.08585858585858588,0.05147058823529412,0.05555555555555556,0.03215579710144927,0.028394925537782677,0.016653806584362135,0.016408415217939024,0.013906250000000002,0.4972777476628069,19.322235434007133,7.43801652892562,3.3378684807256236,148.73152976640844,1.0,4.212470854925481,118.75830745828189,,89.07130823358546,86.84482695298026,86.1525200298289,89.03071807612213,130.2319473257922,88.16900923531568,89.23051232554008,114.18761807103047,0.04903661677789767,-0.0456311354477999,-0.38803946425310576,0.43840732169156343,0.3354897171223699,-0.26874814498318134,0.048674197574438596,-0.1006120237426178,-0.0286518634919626,-0.0407773350073694,-0.07112201355721387,-0.023945474255170414,0.1109360989977306,-0.05983617299340843,-0.14279695012926025,0.10963743773890897,0.14017179298078167,0.03846505656059385,0.11510523186610123,0.1737008938382131,-0.03974351206504853,0.1060219910438662,-0.0609014078980693,0.20930551858699506,0.015953054202974163,0.0013892717139427772,-0.014623755956123344,0.034631378324525695,0.13511242334771742,0.09047154269416859,0.016022839755522583,-0.0006014930234202569,0.004522603531673468,0.010082588633466383,-0.005768334974404836,0.02001088505112078,0.1421301982804001,0.2000611820165009,0.14400584285708257,-0.005061929837573238,0.17660898308380318,-0.07895909664637264,0.14058558033157145,-0.0449787461258761,0.20287493480254334,0.1458332760616116,0.19156317709269613,0.00882924038907958,0.07421300382465433,0.022075803429202862,-0.058266996923843455,-0.18312636676038732,-0.06898034398034399,-0.030168290068060925,0.07398795551156537,0.0026060638312885177,0.03181571262063473,0.03456855525063397,0.011091276783707079,0.047760083665902314,-0.29010930119520933,-0.1969544239240924,-0.09772428732937548,-0.3333785494664496,-0.3337431416378785,-0.13030108298919862,-0.2946218396248568,-0.27043851820658077,-0.21043781206781043,-0.1840858355288297,-0.18238391049075817,-0.30841982386148037,-0.16724104394303319,0.007130099777179972,0.10419250704499253,-0.10023932253313697,-0.20323014340871481,0.003373119666685173,-0.1651013049841072,-0.05044055396830587,-0.015346835080768024,0.05179816720344998,0.045371705084866334,-0.14574685249309696,-0.20708027468624218,-0.15914277984877012,0.010525234198739328,-0.032216494845360835,-0.19102316602316602,0.04510173249220303,-0.2148762943887997,-0.026752600886788432,-0.17850495907658906,-0.16439147879251062,-0.12520935932431848,-0.1266887207488251,5.549511796322224,16.830953252738936,14.248881202557778,17.669846296709412,37.997334597794016,41.570180468300634,41.74548481612673,41.74548481612673,41.74548481612673,53.42367785653828,37.70577920915271,6.624876519016323,7.292045390329827,1.8009767380394135,15.71789864738556,5304.041256989615,4450.347297106907,1119.7749242930995,261.0,44.0,63.0,90.0,129.0,158.0,195.0,221.0,258.0,361.14378434000054,29.0,4.990432586778736,5.8888779583328805,6.818924065275521,7.742835955430749,8.68084148294457,9.614804979750764,10.556515616499246,11.495606351199761,12.439344729640425,0.6884057971014493,1.0113913043478264,1.139346353039478,0.6540624051141525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.656871387659464,0.9953964194373398,1.0249374584375697,0.6347373870565225,2.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,5.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,24.210309458133064,17.857719730893475,11.5667326743298,5.428790391900541,0.0,4.794537184071822,9.184952231746642,0.0,0.0,0.0,20.037776250829424,32.37586919526338,16.944765761229018,172.90408536724223,-479.1865836444244,-38.892822781985444,-10.417099644444008,-43.562416694947665,387.13224343002855,1072.8987505056534,29.905954269337233,23.32388588055768,30.654250014447232,0.5,0.6926469670926643,0.17569343504959908,17.65594239409676,0.12294255425167068,80.31866041702084,0.3073530329073357,6.0,0.06896551724137931,0.31419450925144166,0.6635485950466815,0.8445010377178593,0.8759867067230835,0.8759867067230835,0.8759867067230835,1.5439999999999998,,1.7619047619047619,2.090104302625157,1.72198869340269,1.7923518247588088,-7.881927179765617,1.8777328349212405,1.7282681802120077,-3.1006114622630965,95.04130000000004,19.028342580387395,0.0,9.467009378641833,0.0,12.965578028838586,44.73348930169089,33.86721054878994,0.0,5.749511833283905,4.07753744390572,0.0,5.459585514144159,0.0,7.053585727193677,0.0,8.753213480544126,0.0,10.513497659473217,31.66666666666667,2.4945564058956915,0.0,0.0,0.0,0.0,0.510097736625515,-0.2294823761562561,1.7202692743764172,46.524000000000015,0.0,23.989140443256222,0.0,0.0,0.0,0.0,0.0,-1.3153294094140058,52.40993223981599,15.065563076551069,10.077801322358383,5.749511833283905,60.376421632274784,0.0,5.817220841045895,23.3235667046074,17.05774782414651,0.0,10.902924932081056,0.0,30.086870635251014,30.21608383233534,33.46582201659464,237.51661491656375,,178.06370358703583,173.61857669306266,172.35688020570615,177.97735437605576,263.14938979565534,176.266208553755,178.38376440618362,229.32927043814192,33.46582201659464,237.51661491656373,,176.64128672342554,171.95411467141668,171.0322735184733,176.52889962993027,268.3458218313499,174.7600324216083,176.98789001435574,231.47584760432412,5.157046688639975,170.01390337164315,,126.8770446465597,123.66521508609881,122.13116281598438,126.84434073369505,182.2775142120931,125.55445611187301,127.09617093257886,161.72839354173766,1.2871470006382555,9.135254419867836,,6.848603984116763,6.677637565117795,6.629110777142544,6.845282860617529,10.121130376755975,6.779469559759808,6.860914015622447,8.82035655531315,2.5785233443199878,118.75830745828189,,89.07130823358546,86.84482695298026,86.1525200298289,89.03071807612213,130.2319473257922,88.16900923531568,89.23051232554008,114.18761807103047,45.788235294117634,0.0,3.887670043276069,0.0,14.983653155706726,0.0,9.320051749038907,47.147123088128204,3.2033178919078087,0.0,5.85276100718065,0.0,-0.15787000293944775,4.096231216124344,0.0,0.0,0.0,29.197919804600037,387.9074646031398,79.83175055275025,168.5969816773668,214.57407497429568,222.57407497429563,222.57407497429563,222.57407497429563,1474.0,133.22818372585266,172.12886419413104,61.8574198252609,75.00999999999999,75.00999999999999,1.0,9.419576727487197,5.857980995127572,4.358686956171379,5.010717621438563,,4.991970370266365,4.9931183096212886,4.9944838890848375,4.991848750553515,4.970113913016271,4.992474209041413,4.9919475414474865,4.980831600008384,0.1676418060065915,0.19271990851686782,,0.1919988603948602,0.19204301190851109,0.19209553419557068,0.19199418271359675,0.19115822742370273,0.19201823880928512,0.19199798236336488,0.1915704461541686,2.427682300190124,2.5670905876787424,,2.5633421406335115,2.5635720713625783,2.5638455262809643,2.5633177772688747,2.5589542049973097,2.5634430653812976,2.5633375675152066,2.5611083100765524,250.42000000000013,228.20101892845946,161.8252405688422,,163.44595450715542,163.29813857690925,163.4384160009295,163.4249821020021,167.40905702955254,163.39042446496174,163.46483768242297,165.36915665150786,8.77696226647921,6.224047714186238,,6.2863828656598235,6.280697637573433,6.2860929231126725,6.285576234692389,6.438809885752021,6.28424709480622,6.287109141631652,6.360352178904149,6.385738347513189,6.042028436056652,,6.051993827246847,6.051089046144702,6.05194770386557,6.051865505008109,6.075951705738427,6.051654023930566,6.052109352189674,6.063691732909397,22.556683437263793,28.085371659380563,9.363410540086191,-0.22381680128433334,-1.5426565069196736,0.9940744415049967,1.342611961451247,5.075710339627637,2.0152775955562405,307.0583520526847,96.83256920312024,-268.3618951131298,-21.781393687385986,-5.833954241589778,-24.39653591937543,216.80812036960455,600.8622774043652,16.748420838178692,13.062223421834021,17.167493640124714,1484.0,51.0,2.2190830212897596,1.0509210395161406,0.0,0.0,0.7050093089545691,0.19308627141796247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2296107312141918,0.10281352633387163,0.602441863796174,0.20372902885069497,18.585057479767894,14.659148439902266,12.379917853109722,8.590996602544717,11.93652714036944,6.966959135208316,10.320983610016402,5.191841670562342,8.973658097118403,3.688770165735048,7.953268227080912,2.868499367717568,6.106995866112197,1.7990226277821546,4.798423376613715,1.1504587270083182,5.448528667755291,2.155594095607878,9.20143840064059,2.893114600321253,16.127522522096946,4.260250029042732,83.93442473706104,37.48467229494546,28.177440663200237,27.117571476377968,27.117571476377968,27.117571476377968,146.0,180.0,50.460859999999975,29.779139999999998,0.41304347826086957,191.08,9.333333333333332,5.527777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,10.0,11.0,46.0,0.0,1.0,49.0,11.0,2.0,6.0,43.0,13.0,29.0,36.0,0.0,0.0,0.0,18.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,6.0,1.0,3.0,26.0,8.0,0.0,3.0,4.0,0.0,4.0,2.0,0.0,0.0,1.0,1.0,2.0,3.624340932976365,8.1774851000595,4.297285406218791,4.978456395732021,5.65861075600948,6.32278963126672,6.818753285666191,7.288522045316851,7.655009564885399,8.058612817638418 +60198,C=C1C[C@@H]2[C@H](CC[C@]3(C)C(=O)CC[C@@H]23)[C@@]2(C)C=CC(=O)C=C12,0,18.956521739130434,5.775217391304347,3.391304347826087,5.391304347826087,159.66985526058644,74.38269473913043,1.4725025590516518,5.866895652173912,3.952596618357488,7.364280173913041,209.76368380994862,21.79591836734694,5.98469387755102,4.3061224489795915,5.326530612244898,140.77342840835908,81.4892423061224,1.9091519069387766,6.157989795918369,2.5314625850340136,7.435159265306116,267.34748035262606,18.6875,5.841979166666667,4.03125,3.9583333333333335,146.9588110930801,69.15860401041665,1.6850460436269599,5.989484374999997,2.267071759259259,7.352233041666666,231.12211260554122,15.493243243243244,5.823175675675676,3.2635135135135136,2.635135135135135,150.35655120546508,54.852439128378386,1.494337676529953,5.949908783783782,2.376970720720721,7.370767432432432,197.40525318680147,11.528795811518325,5.684764397905759,2.5706806282722514,1.6910994764397906,155.806190289155,38.194135282722506,1.2719218723485026,5.786897905759162,2.1750654450261786,7.2918609214659655,157.94746071370682,9.09,5.482900000000002,2.16,1.34,161.89695162604937,29.435168909999998,1.07186391278564,5.5641300000000005,2.0089583333333336,7.147468200000002,126.82415850270745,8.824675324675324,5.5555194805194805,2.012987012987013,1.3506493506493507,165.59013395333332,28.69483874675324,1.0024265176050973,5.61710064935065,2.228354978354978,7.245182519480521,120.07043095330957,9.833333333333334,5.655624999999998,1.96875,1.625,160.5554336532565,31.495533395833323,1.0680138324382706,5.734645833333334,2.651909722222223,7.300578083333334,128.53928272049623,7.194444444444445,5.63847222222222,1.5694444444444444,1.3888888888888888,172.82627094373632,22.265684208333326,0.7705008310869723,5.661215277777778,2.64621913580247,7.3807861666666685,89.80601072534945,6.858223062381853,0.07765595463137993,0.00632636925916778,0.8034026465028355,3.2060491493383743,1.3452249271309402,32.86148108128545,0.24295751488859738,0.07764120982986764,1.5253229363579086,0.04654950472589792,53.61274759935617,0.3893368311407737,0.0007823772231009473,-0.0024141163528075757,0.3607499710659311,1.2065506731993358,0.10706769476453239,1.8976455735504079,0.019279039687001575,0.0012680182091739996,-0.03313004470849459,0.00010226457312602232,4.000579701102501,0.894494328922495,0.005070494643982347,-3.64273600670005e-05,-0.05023235664776312,0.13815374921235046,0.14427377198292846,4.3009132683522395,0.027506089733583802,0.006206480387523606,0.09751950526850096,0.0017884264335223633,6.858890282894951,-0.7515838144382566,-0.004392147345833549,0.0002373755884483918,-0.18119348081540904,-0.6132171869411944,-0.15018118578379153,-3.6247538853394934,-0.02772169431703478,-0.005142296786389419,-0.023184928785117822,-0.001895503550809794,-6.325085981006099,-1.4673739843030906,-0.010080266035887124,-0.0005484891252836397,-0.09705163352764774,-0.4578133196092599,-0.21668765379502367,-7.037778719345992,-0.041645725565233827,-0.011738796900206839,-0.1198356712644512,-0.004117863478458808,-10.686017670985187,0.17960302457466903,0.0047310018903591764,0.0003579498091786866,0.0022495274102079443,0.16960302457466908,-0.08205863516083296,0.7985197352362927,-0.012823917673369538,0.004955007561436685,0.05638600084015964,0.002164897013232534,-1.1822309016520878,0.6406476321410158,-0.002814057398178375,-0.00046756486005726636,-0.005830653278668386,-0.01576117644170592,0.2110541042004277,3.158938598838775,0.03795327284075301,-0.0014656310608106374,-0.13462637446569387,-0.0027035453808950875,7.668367468174532,-0.8944549464398234,0.00022448015122873604,0.000993005910336623,0.015437933207309401,-0.054781033396345304,-0.36912219514244643,-4.420365446321678,-0.06430746373395697,-0.0005043438878386807,0.0036059585696282203,0.00012202425960932717,-11.828593821810033,1.1768010922075192,-0.005325036756983828,-3.860347181750568e-05,0.15795001050199545,0.26858853182104586,0.336965255272379,5.782986999632423,0.061629596127222706,-0.002504192921655118,-0.2189202927722935,-0.005595354967443822,13.094428621278325,,,0.4848484848484848,0.8636363636363636,0.2727272727272727,0.0,0.5909090909090909,-0.3181818181818182,1.277347794073962,0.025198595978523433,0.04083495961488707,0.53443077102953,0.12037499798976099,0.35052702250321993,1.8117785651034917,0.4709020204929809,2.061119107537061,1.9001660478513989,0.0,0.16095305968566245,0.0,0.16095305968566245,6.4386441306087105,872.0,265.65999999999997,156.0,248.0,7344.813341986976,3421.6039579999997,67.73511771637598,269.87719999999996,181.81944444444446,338.7568879999999,9649.129455257636,1068.0,293.25,211.0,261.0,6897.897992009595,3992.972872999998,93.54844344000006,301.7415000000001,124.04166666666667,364.3228039999997,13100.026537278676,1794.0,560.83,387.0,380.0,14108.04586493569,6639.225984999999,161.76442018818815,574.9904999999998,217.63888888888889,705.8143719999999,22187.722810131956,2293.0,861.83,483.0,390.0,22252.769578408832,8118.160991000001,221.16197612643305,880.5864999999997,351.7916666666667,1090.87358,29215.977471646616,2202.0,1085.79,491.0,323.0,29758.982345228607,7295.079838999999,242.937077618564,1105.2975,415.4375000000001,1392.7454359999995,30167.964996318,1818.0,1096.5800000000004,432.0,268.0,32379.390325209875,5887.0337819999995,214.372782557128,1112.826,401.79166666666674,1429.4936400000004,25364.83170054149,1359.0,855.55,310.0,208.0,25500.88062881333,4419.005166999999,154.37368371118498,865.0335000000001,343.1666666666666,1115.7581080000002,18490.846366809674,944.0,542.9399999999998,189.0,156.0,15413.321630712624,3023.571205999999,102.52932791407397,550.5260000000001,254.58333333333343,700.855496,12339.771141167637,518.0,405.96999999999986,113.0,100.0,12443.491507949015,1603.1292629999996,55.476059838262,407.6075,190.52777777777783,531.4166040000001,6466.03277222516,315.47826086956525,3.572173913043477,0.29101298592171787,36.95652173913044,147.47826086956522,61.88034664802325,1511.6281297391306,11.17604568487548,3.571495652173911,70.1648550724638,2.141277217391304,2466.1863895703837,19.077504725897914,0.03833648393194642,-0.1182917012875712,17.676748582230623,59.12098298676746,5.246317043462087,92.98463310396998,0.9446729446630772,0.06213289224952598,-1.6233721907162348,0.005010964083175093,196.02840535402254,85.87145557655953,0.4867674858223053,-0.0034970265664320483,-4.822306238185259,13.262759924385644,13.850282110361132,412.887673761815,2.640584614424045,0.5958221172022662,9.361872505776093,0.17168893761814688,658.4534671579153,-111.23440453686197,-0.6500378071833652,0.03513158709036199,-26.816635160680537,-90.75614366729678,-22.226815496001148,-536.463575030245,-4.102810758921147,-0.761059924385634,-3.4313694601974376,-0.28053452551984953,-936.1127251889027,-280.2684310018903,-1.9253308128544409,-0.10476142292917517,-18.53686200378072,-87.44234404536864,-41.38734187484952,-1344.2157353950845,-7.954333582959661,-2.2421102079395063,-22.88861321151018,-0.7865119243856323,-2041.0293751581708,35.920604914933804,0.9462003780718352,0.07158996183573732,0.44990548204158887,33.92060491493382,-16.411727032166592,159.70394704725854,-2.5647835346739076,0.9910015122873371,11.277200168031928,0.4329794026465068,-236.44618033041755,98.65973534971644,-0.43336483931946973,-0.07200498844881902,-0.8979206049149314,-2.427221172022712,32.50233204686587,486.47654422117137,5.844804017475964,-0.22570718336483814,-20.732461667716855,-0.41634598865784345,1180.928590098878,-85.86767485822304,0.02155009451795866,0.09532856739231581,1.4820415879017026,-5.258979206049149,-35.43573073367486,-424.3550828468811,-6.173516518459869,-0.04841701323251335,0.34617202268430913,0.011714328922495408,-1135.5450068937632,84.72967863894138,-0.3834026465028356,-0.0027794499708604092,11.372400756143673,19.3383742911153,24.26149837961129,416.37506397353445,4.437330921160035,-0.1803018903591685,-15.762261079605132,-0.4028655576559552,942.7988607320394,0.7135593697190802,0.6146926765083985,0.41439377803382327,0.341170301271897,0.2586482753757623,0.1994858258801678,0.16013524046978056,0.11869070103338537,0.09643870174835707,0.0703465783478319,0.060402955425252515,0.039581801663169665,0.03749468538425816,0.02417503016872045,0.022688284664610286,0.01342317027126955,8.023199240488605,5.691904852392337,3.544773094945164,2.1911888362983167,0.3692606540898725,-0.3910236686188355,4.030775569904762,0.9771935956863251,6.023143226185299,0.9950243254139332,13.637904641181182,10.952321968913363,16.011168604658266,11.70329873240424,1.9908074389136816,0.7521745892484987,3.489941617662051,2.241025659559649,7.00935455946071,1.1013272571606143,3.7030157926432716,2.4370546889112332,20.898504200183307,14.701789859690269,0.21005278988346957,0.5373648341856584,0.7793353433711635,0.8785503017590538,0.8785503017590538,0.8785503017590538,1.6638743491673016,652.618395327054,0.0,1.0,2.0,0.0,5.0,5.0,2.0,3.0,2.0,4.314731780762065,2.4310877876998234,1.0385747284960294,0.4676038044418904,0.4676038044418904,0.4676038044418904,121.57066224335958,579.0356155257952,43.42312905316464,12.587730772299892,25.232497781285986,,10.0,362.0,0.0,9.589074368143644,16.6132258851585,23.53696308484912,43.250317174768576,0.0,12.152040213667762,0.0,26.502430189813627,0.0,10.666666666666666,19.0,6.0,0.0,13.0,0.0,0.015151515151515178,-7.0,0.07797101449275357,0.025919732441471555,-0.05205128205128201,0.0,0.08407874015748007,0.0,0.5246376811594206,0.7696969696969694,0.446666666666667,0.498717948717949,0.7696969696969694,28.10165146962716,0.5543691115275156,0.8983691115275155,11.757476962649658,2.648249955774742,7.711594495070838,39.85912843227682,10.35984445084558,0.6299212598425199,0.203125,0.09375,0.328125,0.6,0.3736120128923554,-0.4498141566174047,-0.06549079585844568,-0.009778568622117494,-0.026459656271612043,0.6263879871076444,0.7541464792709403,0.024796807641793196,0.016394488679803042,0.026005051009342757,-4.092885292399922,0.8849537609972323,0.5347455437871349,1.12103797716773,0.9318727490996397,0.49505739795918363,1.0561156025012357,0.8922847186238411,1.054319813706958,0.5816719318265721,0.5306380640092652,0.47566041802255926,1.0188331803831026,0.8105253410970231,0.5163609877069132,0.6705878949340838,1.6742647058823528,0.9376381928066037,0.9745869440163404,0.817018738045223,0.9707552252068938,0.553595539531605,0.4415985822080502,0.4725907529772558,0.9330835072729237,1.0698042998897463,0.8494713676675698,0.7799211888672289,1.5097178060413354,1.1607299368944415,1.1564319227569677,1.0740682477470473,1.1577133245022078,0.8812597989933874,0.7824688844818067,0.8062168549511576,1.1435485388647215,1.169503339355911,0.9510685318392916,0.8559838520630343,1.0518940560517398,1.011241418057888,1.155919265111191,1.1720853797748005,1.1685784786962587,0.9932802441294092,0.8665665962070777,0.8794634637864794,1.1930850656460767,0.9079072491730981,0.6179010467380719,0.638582884288016,0.7853823529411764,0.7628242924528301,1.00484366022211,0.9132369552842573,1.0084864429655205,0.6615789238219522,0.5637281828509461,0.5560351038762398,0.9964638306141527,0.8938191769641604,1.1264012885848327,1.0749721115319126,0.8816080977845683,1.0223826880666502,0.7624379353079564,0.888657604130596,0.7656581802232619,1.0971407564708506,1.192663130677899,1.1605274734060362,0.7960888888804305,1.1114078004410144,1.0392831061343717,1.0047145967500224,0.6912683823529412,0.9837254938089622,1.2237633304185602,1.1141929275559717,1.214564912045576,1.040655141281694,1.077517242325269,1.0493807068743362,1.1773732530869399,0.8984374999999999,1.8222447054527748,1.6502989229044094,0.3805147058823529,1.1421174823113207,0.6092596190028415,0.8817842214060481,0.5954102115848301,1.6810009264173822,2.011909871937207,2.0249800982250004,0.6261075681401207,7.0,0.0,5.333333333333336,3.104166666666667,2.466666666666667,1.1005555555555553,0.7160090702947844,0.23093820861678005,0.13680240614764422,0.06031635802469136,4120.3598993108835,4842.634794090277,2032.485642488829,1794.0177341093859,10.655023764495096,0.47442666810735834,5.599996341300965,0.9026840581863257,1.0,0.6,1.208830175294948,3.0924741683571897,4.484987227560984,5.055958151615123,5.055958151615123,5.055958151615123,0.28,0.0,0.13008130081300817,0.06604609929078016,0.06324786324786325,0.03668518518518519,0.031130829143251503,0.01649558632977,0.01954320087823489,0.01507908950617284,0.6583091543942661,15.5232,4.997025580011898,2.042461703843053,131.90406169078295,1.0,4.073510683614699,83.72958391880397,,76.22829716903902,76.15111468392132,76.39498400968098,76.2298861079215,79.22009765249952,76.2094346670232,76.23155378501136,77.65929916398507,0.05676934500371259,0.010074916042366145,-0.3815958654814827,0.44902761104441774,0.3763356757797457,0.07959092387091243,0.05774680602059393,0.07935148536500934,0.016331767780957587,-0.021720020015958644,0.0021968992737559077,0.07461993425516106,0.13042654355016534,0.06529434436871134,-0.005758019896516828,-0.06252450980392162,0.0430915880503145,0.1072488095285535,0.13088007986352146,0.1132135787040631,0.07993796594776977,0.06393367787502971,0.03841988102888167,0.1279339446310586,-0.10958870943711072,-0.056559054185636524,0.03752161448755175,-0.22553259141494442,-0.19126880418154002,-0.11164020436648758,-0.11030403274804872,-0.11410099551662738,-0.06623153860762278,-0.015200013211941636,-0.040720165809953864,-0.11797727712582402,-0.21395833453592472,-0.12980673644070814,-0.08669887937521248,-0.12080073914382508,-0.1427967252790675,-0.16107912470605887,-0.21416498854502314,-0.17141155557311955,-0.15119286427825687,-0.07856413118037085,-0.08846202559418051,-0.19931859771189034,0.026187982359426657,0.06092259006815981,0.05658060642918813,0.0028000000000000056,0.052900943396226384,-0.060999936520538194,0.024299566208263457,-0.05278255204104163,0.06381929869838987,0.03696659867634022,0.04650741239848442,-0.022051302247868474,0.09341306433368174,-0.03623749668053458,-0.0739072983101169,-0.007257448433919003,-0.004916074491546245,0.15689131233284404,0.09612891734930915,0.1562136197275298,-0.01887697350443433,-0.08826089954901493,-0.05807892902007536,0.14303254004960977,-0.1304208011760382,0.002890701071080852,0.15696300194580343,0.01921568627450982,-0.017086772798742135,-0.27439440624230804,-0.13451510098974412,-0.2646860450620089,-0.006495827266780505,0.002364062378972909,0.002621386851006359,-0.22063024842905238,0.17158979541835104,-0.06857216271773238,-0.006101994720204474,0.19660130718954255,0.08377555031446536,0.25048989836298197,0.17598071691679848,0.25366408672512786,-0.03225339902794489,-0.14352389750004066,-0.12020224490875914,0.2442409540195917,7.971116459067144,19.666339641636117,7.366379982878764,9.915391730947192,28.30157101048227,34.54526883443381,35.12080752588039,35.12080752588039,35.12080752588039,45.344620365815345,41.80365305273077,0.0,3.540967313084574,0.0,3.540967313084574,3109.102031668674,2757.7521697114084,766.7124708365222,207.0,41.0,61.0,85.0,115.0,140.0,167.0,198.0,219.0,296.1776300080007,25.0,4.890349128221754,5.820082930352362,6.78332520060396,7.733245646529795,8.69901462316851,9.654705629041903,10.621644368600101,11.579658451506333,12.5471378895541,0.5797101449275364,0.9547826086956526,1.1174401716843594,0.5364828617245785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6639811507419945,0.9435635123614661,0.9851166914721812,0.6072072142231346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,3.0,0.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,5.783244946364939,5.783244946364939,0.0,0.0,9.589074368143644,0.0,0.0,0.0,32.075534719882896,61.16214937392524,17.25080256171957,0.0,179.6858264334642,-216.33466185295632,-31.497294978576132,-4.702927431586008,-12.725568344291549,301.2564886768238,362.70095367283886,11.925834074588503,7.884803340713885,12.506929436994438,0.5,0.8099456480040323,0.24841942556558305,172.2879511176375,0.1479843646298855,48.52886766634398,0.19005435199596746,5.0,0.0,0.21884975400146858,0.5598695539145809,0.8119737342029536,0.9153437929796141,0.9153437929796141,0.9153437929796141,4.029500000000003,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,86.14600000000004,9.589074368143644,0.0,0.0,28.58369907727774,45.95158251401129,0.0,35.953205064238674,0.0,0.0,3.9318256327243257,0.0,5.3706380281276624,2.3978952727983707,7.025538314638521,4.844187086458591,8.783702698635217,7.034387929915503,10.596659732783579,26.66666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.920000000000016,4.285811130007558,24.19280462648022,0.0,0.0,0.0,5.643875976316453,0.0,2.8244544569370973,51.40224789748053,0.0,0.0,0.0,11.566489892729878,9.589074368143644,28.58369907727774,45.95158251401129,35.953205064238674,0.0,0.0,0.0,24.67821163933061,30.543132934131748,28.28530689407344,167.459167837608,,152.4111397926235,152.2502813158946,152.75848907647497,152.41445120146142,159.8176607323397,152.3718291649132,152.41792669725564,155.82640948186219,28.28530689407344,167.45916783760794,,151.9565943380781,151.73080079641414,152.44369964760546,151.96124105764565,160.6047838336774,151.9014274735814,151.96611796958496,156.11658728408634,5.212465236918531,121.51296690314805,,112.4319394601211,112.34078547246085,112.62885304022538,112.43381618935804,115.97940140219359,112.40966106264968,112.43578592502557,114.12503577499879,1.285695767912429,7.611780356254909,,6.9277790814828855,6.920467332540664,6.943567685294317,6.927929600066428,7.264439124197259,6.925992234768782,6.928087577147983,7.083018612811918,2.6225089242010258,83.72958391880397,,76.22829716903902,76.15111468392132,76.39498400968098,76.2298861079215,79.22009765249952,76.2094346670232,76.23155378501136,77.65929916398507,43.40392156862744,0.0,4.461428623918703,0.0,0.0,0.0,0.0,45.315367807720335,4.8519388280003355,0.0,0.0,0.0,1.5788704648526077,0.0,-0.17251743984630874,0.0,0.0,27.931531854264193,389.53713506456177,55.60618806356761,142.25381174443072,206.30941246780526,232.57407497429563,232.57407497429563,232.57407497429563,1280.0,125.32916386757881,91.40518004572618,71.98483469608176,34.14,34.14,1.0,7.843064016692054,5.643856189774724,4.264306422068473,4.623219552557283,,4.641621436164706,4.641907982569159,4.640992410890504,4.641615505225903,4.628737187252955,4.641691745446574,4.641609279013515,4.635828580832779,0.1938321100940215,0.21014634329805834,,0.21098279255294117,0.21099581738950723,0.2109542004950229,0.21098252296481376,0.2103971448751343,0.2109859884293897,0.21098223995515977,0.2107194809469445,2.2387369072322367,2.3195486956026805,,2.3235211130091846,2.3235828452214973,2.3233855853904495,2.323519835235313,2.320741445526828,2.3235362604636536,2.323518493845326,2.3222723094965496,239.45999999999987,133.60071960488568,127.19467455975935,,125.14781366205982,125.11502431520732,125.21852600894753,125.14848838572739,126.38884481276666,125.13980298516032,125.14919653129145,125.74950747905656,6.0727599820402585,5.7815761163526975,,5.688536984639082,5.687046559782151,5.691751182224888,5.688567653896699,5.744947491489394,5.688172862961832,5.6885998423314295,5.71588670359348,5.683313007716424,5.6341761437253,,5.617952908349622,5.6176908690688,5.618517779401065,5.617958299749032,5.627820585118942,5.617888896577809,5.617963958175832,5.622749252668907,0.0,24.19280462648022,0.0,2.0906543288611745,2.1401531530822213,0.0,10.495814804316787,8.747239753926262,0.0,309.4484867981929,86.41851735741567,-104.04449311016214,-15.148381966708056,-2.2618368067426555,-6.120264300597772,144.88699310622792,174.43823635212445,5.7356382494537534,3.7921355728722697,6.015111598349117,892.0,47.0,2.6036698689600635,1.875139587961607,0.23570226039551584,0.1853954059492991,1.1235421215561066,0.7067727195766695,0.2276709006307398,0.12920640130432914,0.0,0.0,0.0,0.0,0.08333333333333333,0.07216878364870322,0.42002655179528153,0.2959608353709349,0.9733570037431412,0.6252915027956057,15.698306133819765,13.523238883184767,10.359844450845582,8.529257531797425,10.604579290406253,8.17891886108688,9.768249668656614,7.240132763036508,8.19728964861035,5.979459159565711,6.946339873904039,4.551907191264512,5.249255953796142,3.3845042236208633,3.7889435389899178,2.241669435302015,6.816561205233368,4.687747177097045,11.461117889797368,7.779487022823138,18.99523145932761,11.867779955882044,77.59366381900955,37.90821265831111,23.83304414798659,20.952305976119767,20.952305976119767,20.952305976119767,132.0,168.0,51.007031999999974,25.812967999999994,0.3695652173913043,163.02,7.902777777777777,4.499999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,46.0,0.0,0.0,49.0,0.0,5.0,5.0,44.0,5.0,25.0,44.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,2.0,0.0,0.0,22.0,2.0,0.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4339872044851463,6.327936783729195,3.970291913552122,4.48863636973214,4.859812404361672,5.293304824724492,5.517452896464707,5.7430031878094825,5.986452005284438,6.244166900663736 +5546,Nc1nc(N)c2nc(-c3ccccc3)c(N)nc2n1,0,26.2,6.473810000000001,3.7666666666666666,9.466666666666667,167.81022950055797,103.85728329999999,1.5609180651113002,6.53204,4.481481481481482,7.860024933333335,237.57744074279904,27.9375,6.717156250000002,4.28125,10.0,156.86389595100937,107.45343228124995,1.8145173546875,6.82734375,3.993055555555556,8.035761625,276.93010441256985,26.877551020408163,6.598355102040818,4.224489795918367,9.673469387755102,156.8134355897785,103.59217057142855,1.7107172994805502,6.699685714285718,4.034013605442178,7.929016000000002,255.67882796657867,24.084745762711865,6.626550847457629,3.7457627118644066,8.220338983050848,163.3849079509118,91.1561506271186,1.5372498132101018,6.701525423728812,3.879472693032017,7.987648474576272,227.945241725528,22.310344827586206,6.556610344827587,3.4655172413793105,6.758620689655173,164.02724808509822,83.40409908620693,1.447720964299931,6.625760344827586,4.03639846743295,7.936902827586206,209.9872879235704,19.31578947368421,6.543015789473687,3.0701754385964914,5.228070175438597,168.02398279956842,69.7400960350877,1.371878804556105,6.6009052631578955,3.662768031189086,7.9608043508771935,195.67003902743699,17.11111111111111,6.22866111111111,2.7962962962962963,4.12962962962963,165.66322022312949,61.65789477777777,1.2772599971998517,6.2935888888888885,3.545267489711934,7.702859999999999,174.57480525707822,14.043478260869565,6.329500000000001,2.369565217391304,3.0,172.6215170358282,47.18092241304347,1.1624267184651302,6.368434782608697,3.3188405797101446,7.825640608695653,154.83570464507383,10.756756756756756,5.788081081081081,2.054054054054054,2.189189189189189,172.37296570908882,36.47915510810811,0.9871258802131351,5.831162162162163,2.558558558558558,7.4011501621621605,123.14652281894288,6.84,0.10828099999999992,0.031838464863276315,0.6455555555555555,3.7066666666666683,1.877038683891378,32.58485401000001,0.1939889611927122,0.10074399999999994,0.9135802469135801,0.053216395555555546,43.929703962124975,-0.27750000000000097,-0.036126312500000056,-0.0243253131334621,0.28048611111111116,1.0600000000000005,-0.05908571228084244,-1.095919894375008,0.03368287072407852,-0.030000250000000082,-0.4668209876543211,-0.019520933055555554,6.4158009236097975,1.3395918367346935,0.0430347142857142,0.00831449794683455,0.06260770975056688,1.0334693877551024,0.19052897300886432,6.203985877755094,-0.0015192916712407005,0.03797599999999994,0.2519526329050138,0.02199360444444443,1.433443689211118,0.19050847457627057,0.00761001694915248,-0.004702378809646204,-0.05007532956685496,0.10915254237288148,0.010574647352028567,0.8695726255932166,-0.0032060108299816663,0.006657355932203339,0.009206947060054385,0.003907638342749524,-0.3265938953021249,-0.12965517241379335,0.020039344827586153,0.00850188188032549,-0.1754406130268199,-0.5986206896551723,-0.12677049099570287,-0.7856605427586232,-0.03784723579117368,0.016332206896551696,0.24414644529587057,0.010900048122605362,-7.274272049820005,-2.390877192982457,-0.04772415789473685,-0.01050819426251685,-0.16251461988304097,-1.51719298245614,-0.10793045084639552,-11.246724943333332,-0.018995332784688825,-0.044660491228070205,-0.34697855750487333,-0.022785275087719287,-7.777798003724919,-0.19555555555555537,0.010026777777777805,0.011341086478667606,-0.16777777777777778,-0.7325925925925928,-0.2250449586067182,-1.0471008655555545,-0.033590453108051734,0.008253777777777808,0.23388203017832648,0.0052891204938271584,-6.16750273768891,-3.135652173913043,-0.05983295652173908,-0.01196390264410353,-0.0013526570048309385,-1.3095652173913044,0.0006834652950390671,-14.750542394782606,-0.019024279891804306,-0.05668660869565216,-0.5045625335480409,-0.02805155787439612,-9.582364989470877,2.1708108108108117,0.01116116216216228,0.006350965177220471,0.06615615615615611,0.814054054054054,-0.1475017303585772,10.40547663054055,0.04200217411648315,0.014948972972973058,0.13646980313646992,0.0024968693093093057,12.939571726714833,,,0.46315789473684216,1.618421052631579,0.9210526315789473,0.07894736842105263,0.6973684210526315,0.2236842105263158,0.5101311438885174,0.01401823772801336,0.027597185096434412,1.0645937192709554,0.3208615007630331,0.16060518584437966,1.574724863159473,0.4814666866074127,2.0516540442718765,1.3412796864766867,0.71037435779519,0.0,0.0,0.71037435779519,8.4369197784,786.0,194.21430000000004,113.0,284.0,5034.306885016739,3115.7184989999996,46.82754195333901,195.96120000000002,134.44444444444446,235.80074800000006,7127.3232222839715,894.0,214.94900000000007,137.0,320.0,5019.6446704323,3438.5098329999983,58.06455535,218.475,127.77777777777779,257.144372,8861.763341202235,1317.0,323.3194000000001,207.0,474.0,7683.858343899146,5076.016357999999,83.82514767454695,328.2846000000002,197.66666666666674,388.5217840000001,12528.262570362354,1421.0,390.9665000000001,221.0,485.0,9639.709569103798,5378.212886999998,90.69773897939601,395.38999999999993,228.888888888889,471.27126000000004,13448.769261806152,1294.0,380.28340000000003,201.0,392.0,9513.580388935698,4837.437747000002,83.967815929396,384.29409999999996,234.11111111111111,460.3403639999999,12179.262699567083,1101.0,372.95190000000014,175.0,298.0,9577.3670195754,3975.1854739999994,78.19709185969799,376.25160000000005,208.77777777777789,453.765848,11153.192224563909,924.0,336.3477,151.0,223.0,8945.813892048993,3329.5263179999997,68.972039848792,339.8538,191.44444444444443,415.95444,9427.039483882225,646.0,291.15700000000004,109.0,138.0,7940.589783648097,2170.3224309999996,53.47162904939599,292.94800000000004,152.66666666666666,359.97946800000005,7122.442413673396,398.0,214.15900000000002,76.0,81.0,6377.799731236286,1349.7287390000001,36.523657567886,215.75300000000001,94.66666666666666,273.84255599999995,4556.421344300887,205.2,3.2484299999999977,0.9551539458982894,19.366666666666667,111.20000000000005,56.31116051674134,977.5456203000002,5.819668835781366,3.0223199999999983,27.4074074074074,1.5964918666666663,1317.8911188637492,-8.880000000000031,-1.1560420000000018,-0.7784100202707872,8.975555555555557,33.920000000000016,-1.890742792986958,-35.06943662000025,1.0778518631705127,-0.9600080000000026,-14.938271604938276,-0.6246698577777777,205.30562955551352,65.63999999999999,2.1087009999999955,0.407410399394893,3.0677777777777773,50.640000000000015,9.335919677434351,303.9953080099996,-0.07444529189079432,1.860823999999997,12.345679012345677,1.077686617777777,70.23874077134478,11.239999999999963,0.44899099999999637,-0.27744034976912607,-2.9544444444444427,6.4400000000000075,0.6239041937696854,51.304784909999775,-0.18915463896891832,0.392783999999997,0.5432098765432087,0.2305506622222219,-19.26903982282537,-7.520000000000014,1.162281999999997,0.4931091490588785,-10.175555555555555,-34.72,-7.352688477750767,-45.56831148000015,-2.1951396758880737,0.9472679999999983,14.160493827160494,0.632202791111111,-421.9077788895603,-136.28000000000003,-2.7202770000000003,-0.5989670729634605,-9.263333333333335,-86.47999999999999,-6.1520356982445445,-641.0633217699999,-1.082733968727263,-2.5456480000000017,-19.77777777777778,-1.2987606799999993,-443.33448621232037,-10.55999999999999,0.5414460000000014,0.6124186698480507,-9.06,-39.56000000000001,-12.152427764762782,-56.543446739999936,-1.8138844678347936,0.44570400000000165,12.62962962962963,0.28561250666666654,-333.04514783520113,-144.23999999999998,-2.7523159999999978,-0.5503395216287623,-0.06222222222222318,-60.24,0.03143940357179709,-678.5249501599999,-0.8751168750229981,-2.6075839999999992,-23.20987654320988,-1.2903716622222214,-440.78878951566037,80.32000000000004,0.41296300000000435,0.23498571155715742,2.447777777777776,30.119999999999997,-5.457564023267356,385.0026353300003,1.5540804423098766,0.5531120000000032,5.049382716049387,0.0923841644444443,478.76415388844885,0.705548048158227,0.5214556071324653,0.4356127164543258,0.26502682801463007,0.2829475832757659,0.13209130347911494,0.17551922528979835,0.06624205939219277,0.11437037107240375,0.03346606035405269,0.07040652310444136,0.016775942662345774,0.0470301444460108,0.008067144893823751,0.02836422750811759,0.004121013870224799,7.086699643656635,5.691761164339659,3.207961155328666,2.1907429043625273,0.4519528117027175,-0.3791785964831385,3.247523579434265,0.992947605646378,5.078560663617543,2.7343981692552477,14.564558659790107,10.952899308619315,14.05384478507443,11.70336990515297,1.9872303308551202,0.9711161341114646,3.1942388760870224,2.240312900417343,4.007595602794712,1.4305919251717465,3.3581807661121137,2.4360090902230174,20.89245900040525,15.583701625427372,0.2911346838428862,0.5995494659466863,0.7223723735145613,0.8546515970228773,0.8844333316209788,0.8844333316209788,1.676713941867793,754.8677985188037,0.0,3.0,0.0,0.0,7.0,0.0,1.0,0.0,0.0,3.3574927422689127,1.7161314485121344,1.0624767660309073,0.3584962500721156,0.20000000000000018,0.20000000000000018,76.34854931834045,1028.6158305943452,71.19917994887766,34.28719435314484,69.04488322194507,,10.0,307.0,0.0,0.0,17.58406483665655,16.85780593323245,5.563451491696996,0.0,0.0,30.33183534230805,19.935914083788834,17.201002431486554,8.8,30.75,17.5,1.5,13.25,0.0,0.03684210526315786,4.25,0.20327044025157215,0.0729824561403507,-0.13028798411122144,0.13136842105263136,0.1674161490683228,0.0,0.6466666666666668,0.8473684210526314,0.4433962264150947,0.5736842105263161,0.7160000000000001,9.692491733881832,0.26634651683225385,0.5243465168322539,20.227280666148154,6.0963685144976285,3.0514985310432134,29.919772400029988,9.147867045540842,0.5465838509316772,0.13636363636363638,0.0,0.3977272727272727,0.0,0.4164665972074399,-0.937395269505293,-0.08242579163449354,-0.031246508983509766,-0.07811627245877444,0.5835334027925599,1.3134341506471736,0.07337310252316794,0.043781138354905796,0.07296856392484298,-3.2719069788330213,0.77729044834308,1.1947776502802891,1.8545342090530395,0.631723321858864,0.45638489208633076,1.2109052833359435,0.7708551457456463,0.7577452920613064,1.1225275616083015,1.4842905405405407,1.277426763067756,0.6881137205397376,0.591259895771174,0.42714826069510375,0.5873888214597263,0.9779057922652709,0.6120613713111142,1.0228877716573972,0.5984374688460536,0.9839992337698995,0.426989862092697,0.4438775510204082,0.4423498889941102,0.8645081843770385,0.8407671721677075,0.9111838485522367,1.011643946751228,1.0786487353773446,0.9569717107669793,1.0671885737335685,0.840865060150645,0.9355027548044227,0.8917265712589859,0.8199839670178655,0.937265711143259,0.8863680626154851,0.9173976608187135,0.7950148225450447,0.7494687166308678,1.342512908777969,1.1263489208633088,1.1040044530488446,0.9217059317124124,1.123763247922453,0.8013132295719846,0.672972972972973,0.7956363740531426,1.067651333493163,1.2843268014089808,1.5033958914889574,1.4116032848103919,1.2215780414892652,1.3657232109049597,1.0710680950870597,1.2775472007101185,0.9921658166028784,1.486392700298087,1.4500000000000004,1.5118497029524263,1.0631481472972175,1.028535845787308,0.8359012404966912,0.6458657111088062,1.2478485370051635,1.1614874766853178,1.0366348499104827,1.0331122451815822,1.1706914630245933,0.8593637411730796,0.7206456456456456,0.8142552298534634,1.1520411377649158,1.5054241884905502,1.6562733515816137,1.4925504153091682,0.8300905485295218,1.3067915233030962,0.9060138629509222,1.4972621489218947,1.014811050495372,1.6660322562454184,1.7711809635722684,1.6262472859559347,1.1740805865730888,0.8995179389916232,0.8524329965302989,0.6246675999316768,0.748709122203098,0.9162939918335599,0.7899662515675031,0.8997755381182184,0.8629352996974806,0.8634583026606374,0.7848429510591675,0.8383077894170088,0.8855820588257503,4.0,0.012345679012345678,2.222222222222223,1.5625,1.3600000000000003,0.7569444444444444,0.3420408163265306,0.1371527777777778,0.10204081632653061,0.030000000000000006,3587.76680241739,3871.8134130056833,1858.3633139784033,1729.802264072079,12.30190403938117,0.4885495189320428,6.291814738993346,0.9552235006444904,1.0,0.0,1.549397853339606,3.1907591470963843,3.8444138295776114,4.548394345536403,4.7068905956085185,4.7068905956085185,0.19047619047619052,0.012345679012345678,0.07407407407407411,0.050403225806451596,0.05037037037037038,0.034406565656565656,0.019002267573696146,0.012468434343434344,0.014577259475218656,0.010000000000000002,0.46812406678834706,13.959183673469388,5.78,2.88,108.06842587212039,1.0,3.890030656538569,72.89781438029063,,49.78280630392294,48.65761113301577,47.62050767181577,49.79220304224026,67.0743580253991,49.30068471962153,49.85110013549782,61.85771757305579,-0.04057017543859664,-0.33363482513091014,-0.7640228019134124,0.434487951807229,0.28597122302158273,-0.03147815374712952,-0.03363280050414465,0.17363292486842766,-0.29778696498054574,-0.5109797297297299,-0.36682178211744104,0.14604698745844796,0.19584675975653415,0.39743550840603825,0.2611463204190101,0.09698268291826195,0.27881368374688004,0.10150508598675743,0.1903947728552396,-0.007831846007626219,0.37695545144127657,0.27578599007170435,0.41328624787231383,0.03263039720110555,0.02785211616612143,0.07028026107214087,-0.14769489766041155,-0.07756935733247755,0.029447628338007584,0.005633686424674937,0.02668640544856676,-0.01652676941136231,0.06608190991228602,0.010077874484654128,0.07342921860745198,-0.007434466109393897,-0.01895543456342008,0.18506796970462192,0.267031777971553,-0.27176687043741465,-0.16149838749689893,-0.06753749514255558,-0.024111218743453962,-0.1950999456797727,0.1621159264725612,0.26724137931034486,0.20482499817610153,-0.16558891578444712,-0.34954344926644104,-0.44074360132190216,-0.33004713976135824,-0.25174381737476226,-0.40931465354032537,-0.05750038705789472,-0.3451519205788619,-0.09791965825219565,-0.44330671035565616,-0.37980085348506415,-0.4281626902733853,-0.17705099971606297,-0.028589993502274178,0.0925996045269051,0.3562070761693301,-0.25989672977624784,-0.19764188649080733,-0.11989361782367043,-0.03213458821187931,-0.17315651829632903,0.08192823173367955,0.2560060060060061,0.0993889277657964,-0.14039481675101584,-0.4584286803966437,-0.5525711484169811,-0.375768828537432,-0.002095337873232091,-0.3532999687206755,0.0003641189182218359,-0.45268094158886807,-0.09806887863534273,-0.562679749619354,-0.5522914218566395,-0.5271224700874666,-0.21812951431979916,0.317370001580528,0.10307590585755846,0.199474604208883,0.1024794157324277,0.21961889947501445,-0.07858214730704663,0.3193347629345585,0.2165183722735513,0.14838573982542946,0.14937910883856848,0.04691917374792296,0.2945517624673954,6.083643418932058,8.493477774517489,8.66150229607153,13.747964618831858,29.910860082510528,38.61053165560314,41.0640782552331,41.22384247530579,41.22384247530579,38.98142684116565,25.484314043057047,13.49711279810861,0.0,0.0,13.49711279810861,2795.0481651045075,2352.189281909506,529.7968259472536,73.0,30.0,40.0,54.0,70.0,75.0,77.0,87.0,83.0,253.10759335199998,21.0,4.634728988229636,5.493061443340548,6.385194398997726,7.2633296174768365,8.16194579946869,9.04699757378001,9.948508718183648,10.836655066966722,11.739702407516859,0.7333333333333336,1.0091999999999997,1.1439753618168846,0.7028806926983596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7000942714570861,0.9945098039215687,1.01750424860403,0.6761932627722368,5.0,4.0,0.0,0.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.201002431486554,5.693927994848461,22.799603494054043,5.948339280986494,0.0,0.0,9.967957041894417,9.967957041894417,0.0,30.33183534230805,0.0,5.563451491696996,0.0,190.32278988618938,-428.38413480133147,-37.66810286261847,-14.279471160044382,-35.698677900110965,266.67133920452983,600.2316957930137,33.53107708625919,20.00772319310046,33.3462053218341,0.5,0.8077899934255478,0.16963049070278324,63.68695876067055,0.09937132459873808,91.28776029728937,0.192210006574452,5.0,0.047619047619047616,0.3157596084832742,0.650260910636971,0.7834724974341625,0.9269402398347834,0.9592409905818987,0.9592409905818987,0.8334000000000001,,1.0000000000000004,1.2996742671009769,1.5767470982035352,0.9975012493753128,-3.6272727272727265,1.1282894736842106,0.9818409517845959,-2.2352723977040014,73.8012,0.0,0.0,19.935914083788834,0.0,0.0,17.201002431486554,30.33183534230805,0.0,11.257379486545457,3.7612001156935624,0.0,5.093750200806762,0.0,6.637258031284457,0.0,8.280711075662847,0.0,9.975947739265388,22.000000000000007,9.472645089665292,16.40289808515999,0.0,0.0,0.0,0.6846612811791386,1.9104987612328894,0.0,30.27599999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.31926085450654,17.201002431486554,17.58406483665655,0.0,19.935914083788834,0.0,0.0,0.0,30.33183534230805,0.0,22.421257424929443,0.0,21.08642078095079,21.002828143712584,24.37909692205593,145.7956287605814,,99.5521189889867,97.2985769570636,95.22189291308493,99.57094065859795,135.67598877807092,98.58646998248587,99.68891223115439,124.65660247146062,24.37909692205593,145.7956287605814,,98.76264530477619,96.27251832514182,93.97709257239795,98.783439672249,137.77598877807088,97.69571513484044,98.91377463764024,125.95070754381555,4.913799625111572,107.40705621511572,,73.47084078084671,71.9209106168361,70.50261557371658,73.48383195013099,98.70703565860033,72.80534150364758,73.5652758565941,90.90909735621177,1.2831103643187332,7.673454145293758,,5.239585209946669,5.120977734582294,5.011678574372891,5.240575824136734,7.140841514635311,5.188761578025572,5.246784854271284,6.560873814287401,2.4568998125557853,72.89781438029063,,49.78280630392294,48.65761113301577,47.62050767181577,49.79220304224026,67.0743580253991,49.30068471962153,49.85110013549782,61.85771757305579,29.835294117647063,0.0,0.0,0.0,0.0,17.195963449429357,0.0,30.5251274581209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.285797883167103,369.1552845337061,46.48193560018818,95.72277441289152,115.33241488732834,136.45183036609208,141.20671786825557,141.20671786825557,629.0,113.51012401396068,87.83884455701312,52.74886716271302,129.62,129.62,1.0,9.064193804077517,5.392317422778761,3.924392020213422,4.295435173373534,,4.2896123727113595,4.289684280314188,4.289675252665952,4.289611447251977,4.281903646569622,4.289652838338866,4.289605530390446,4.2848173450497615,0.20654694843228538,0.2260755354407123,,0.2257690722479663,0.22577285685864149,0.22577238171926065,0.22576902353957773,0.22536334981945377,0.22577120201783507,0.22576871212581295,0.22551670237104007,2.0090653260999476,2.0994067574011486,,2.098050259018632,2.098067022071768,2.0980649175677657,2.098050043274317,2.096251574117918,2.0980596923737065,2.098048663926634,2.0969318107207777,182.81999999999974,117.95971318410024,98.56636014693362,,99.27482393371002,99.23812436015866,99.2048490760426,99.27513244551467,99.87348938366918,99.259036447804,99.27706679676702,99.69984993849708,6.2084059570579075,5.187703165628085,,5.2249907333531596,5.223059176850456,5.221307846107505,5.225006970816562,5.256499441245746,5.2241598130423155,5.225108778777211,5.247360523078794,5.41219703864907,5.23258391458717,,5.239745889667211,5.23937614477868,5.2390407810834905,5.239748997316392,5.245758165074803,5.239586848928176,5.2397684818777295,5.244018058008634,0.0,16.40289808515999,0.0,19.282288090396854,0.5088354014445293,9.472645089665292,0.0,0.0,0.0,202.22455739290868,86.97639761015508,-195.76903459981577,-17.214101862201957,-6.525634486660526,-16.31408621665132,121.8672364132299,274.30236107157384,15.323505370508792,9.14341203571913,15.239020059531882,670.0,31.0,1.3655785156950866,0.43197120400086597,0.0,0.0,0.3285328532178296,0.05868175315947849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21317318372707686,0.05707501495497921,0.407593391873262,0.066958652403349,13.405412915006313,9.907656535516841,9.147867045540842,5.565563388307231,8.488427498272978,3.962739104373448,7.020769011591934,2.649682375687711,6.176000037909803,1.8071672591188452,4.928456617310895,1.174315986364204,3.52726083345081,0.6050358670367814,2.184045518125054,0.31731806800730955,3.073953057298477,0.8020908339541798,5.230672458429968,1.0527506887894413,8.109913763174854,1.2848589144141707,67.91430487413874,42.5633490247921,27.766910746852293,22.67758610870454,22.17169673979918,22.17169673979918,102.0,121.0,35.07472299999999,13.885276999999999,0.5333333333333333,99.07,6.027777777777778,4.111111111111111,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,17.0,30.0,0.0,0.0,32.0,17.0,0.0,8.0,24.0,17.0,21.0,15.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,7.0,3.0,2.0,19.0,7.0,0.0,7.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,2.0,3.0,3.417726683613366,7.844270577309899,4.110873864173311,4.764308407326388,5.425500526716335,6.066832885380821,6.42749927327205,6.840579951190062,7.316257437247798,7.675002061125057 +2804,CC1CCCC(C)N1NC(=O)c1ccc(Cl)c(S(N)(=O)=O)c1,0,33.523809523809526,6.268742857142857,3.1904761904761907,6.715461493239272,165.2151739666543,135.26326723809524,1.58711595469,6.3738714285714275,5.632917682771935,7.890857952380951,215.01844187731135,32.093023255813954,6.371109302325581,3.86046511627907,5.134366925064599,148.72808408877205,123.31321897674422,1.901672329534884,6.545737209302326,2.5970188534788017,7.886683116279067,262.5748625672835,24.243589743589745,6.314846153846153,3.371794871794872,5.206552706552706,156.11630447872884,91.39199838461538,1.5725558248524356,6.437248717948717,3.8535401498364457,7.846870256410257,214.51596910065265,21.166666666666668,6.204650000000002,2.824074074074074,3.4245541838134432,162.50140998109634,78.28069905555556,1.3807190001123237,6.311137962962963,2.9738596335247,7.808795768518518,181.1197681887448,18.581196581196583,6.1545991452991435,2.4017094017094016,2.8841405508072175,165.1549640683136,67.29212585470084,1.2297315875245813,6.262907692307691,2.9670166367697237,7.803783726495724,160.14304479714318,15.0625,5.936649999999999,2.1785714285714284,2.6230158730158735,165.9265747530123,53.45804561607142,1.0967489217804731,6.017722321428572,2.860151197824808,7.609136303571428,141.3209378043089,17.466666666666665,6.272608888888889,2.3333333333333335,3.1012345679012343,167.23539486749223,63.46902387777776,1.1236423489785996,6.329067777777778,4.413340192043894,7.916528777777775,150.29204094512025,17.314285714285713,6.093299999999999,2.6285714285714286,2.2984126984126982,157.89567525563976,60.843703271428566,1.4020443735013424,6.20536,2.87636684303351,7.694069457142858,176.21780723559948,17.205128205128204,5.676974358974358,2.41025641025641,1.7521367521367524,159.93730308187483,62.40090769230772,1.3340568158509742,5.800602564102563,2.021433470507545,7.37664887179487,156.31915682820804,14.746031746031743,0.13958163265306117,0.014243692492254786,0.7210884353741497,3.9022983679068335,1.4987925448161328,67.4590217936508,0.30796249467888887,0.13814897959183667,2.4438797165083574,0.09612575283446709,51.28596902390791,2.2971576227390202,-0.006116848599905055,-0.008212598703320282,0.19031798766018038,0.5971069066922391,0.06607162135110879,9.876149328165372,-0.00837071015478036,-0.0010081158044612725,-0.5185482153292876,0.007467198439065536,2.383930226330636,0.854700854700855,0.04099620617477758,0.0018813783628247671,-0.041601255886970154,0.9833948140826445,-0.1530360387148394,4.172039487179484,-0.0017782241867948666,0.036467870225013084,0.83076142363061,0.02318610675039245,1.3227538167414996,1.1450617283950624,-0.01243837868480724,6.0026846247923486e-05,-0.07558578987150415,-0.07957426226091735,-0.07711881834627443,5.047893117283951,0.022357277659114203,-0.010762339380196516,0.0033791572424439515,-0.0085966527462837,0.9450486744573138,0.2849002849002853,-0.008266858538287096,-0.0007948726741428964,-0.03122274550845979,0.03957594433784918,-0.07989832027177643,1.1818305726495744,-0.022954713825276352,-0.0015974533403104796,-0.11271622619420482,0.0009076191639048817,-3.256857766920462,1.5724206349206347,0.002230229591836705,-0.0026713605858671723,0.0038265306122448836,0.4293920242994318,-0.17217890531261,7.207143164682542,-0.007729027052493047,0.00629681122448975,-0.07100198042783386,-0.0009147196712018073,4.165001568050916,1.8666666666666667,0.03310154195011339,0.0047759429184995,0.05351473922902494,-0.28935173520711455,0.29216489603943946,8.637696122222223,0.04206701958808147,0.032740068027210904,0.42603444477335367,0.028821718065003773,6.59870977615155,-2.041269841269841,-0.00403061224489795,-0.0019116814209184925,0.024489795918367356,-0.9957392010302064,0.1387466116976174,-9.949291484126986,-0.026569660497355575,-0.009671836734693838,-0.3125661386461814,0.004259697505668948,-13.857870545325607,2.0940170940170937,0.018561590790162164,-0.0004723861345909829,-0.21742543171114598,0.08069052248946464,-0.08871746194447554,9.79681930769231,0.01918804710191453,0.020585818942961735,0.06749875497528024,0.009620118960404699,2.865959989052176,,,0.48852813852813864,1.1022727272727273,0.5,0.022727272727272728,0.6022727272727273,-0.10227272727272728,0.978439393731568,0.03258262245343368,0.04040080427161549,0.8176899513779978,0.18870882503788974,0.27480916898018093,1.7961293451095657,0.4635179940180707,1.9747808105563323,1.2944170291579438,0.26857955776421233,0.23459758291701593,0.08042311278163933,0.6803637813983884,8.216461670952393,1408.0,263.2872,134.0,282.0493827160494,6939.037306599481,5681.057224,66.65887009698,267.70259999999996,236.58254267642127,331.4160339999999,9030.774558847077,1380.0,273.9577,166.0,220.77777777777777,6395.307615817198,5302.4684160000015,81.77191017000001,281.4667,111.67181069958848,339.12737399999986,11290.719090393191,1891.0,492.55799999999994,263.0,406.1111111111111,12177.071749340848,7128.575873999999,122.65935433848998,502.1053999999999,300.57613168724276,612.05588,16732.245589850907,2286.0,670.1022000000002,305.0,369.85185185185185,17550.152277958405,8454.315498,149.11765201213097,681.6029,321.1768404206676,843.3499429999999,19560.93496438444,2174.0,720.0880999999998,281.0,337.44444444444446,19323.130795992693,7873.178724999999,143.87859574037603,732.7601999999999,347.14094650205766,913.0426959999998,18736.736241265753,1687.0,664.9047999999999,244.0,293.7777777777778,18583.776372337376,5987.301108999999,122.83587923941299,673.9849,320.3369341563785,852.223266,15827.945034082595,1572.0,564.5348,210.0,279.1111111111111,15051.1855380743,5712.212148999998,101.12781140807397,569.6161000000001,397.20061728395046,712.4875899999997,13526.283685060822,1212.0,426.53099999999995,184.0,160.88888888888889,11052.697267894784,4259.0592289999995,98.14310614509397,434.3752,201.3456790123457,538.584862,12335.246506491963,1342.0,442.8039999999999,188.0,136.66666666666669,12475.109640386236,4867.270800000002,104.05643163637599,452.44699999999995,157.67181069958852,575.3786119999999,12192.894232600227,619.3333333333333,5.86242857142857,0.598235084674701,30.285714285714285,163.896531452087,62.949286882277576,2833.2789153333338,12.934424776513332,5.80225714285714,102.64294809335101,4.037281619047618,2154.010699004132,98.77777777777787,-0.26302448979591736,-0.3531417442427721,8.183673469387756,25.67559698776628,2.8410797180976783,424.67442111111103,-0.35994053665555553,-0.043348979591834716,-22.297573259159368,0.32108953287981806,102.50899973221735,66.66666666666669,3.1977040816326516,0.14674751230033184,-3.244897959183672,76.70479549844627,-11.936811019757473,325.4190799999998,-0.1387014865699996,2.8444938775510207,64.79939104318758,1.8085163265306112,103.17479770583697,123.66666666666674,-1.343344897959182,0.006482899394775737,-8.163265306122447,-8.594020324179073,-8.328832381397639,545.1724566666667,2.414585987184334,-1.1623326530612237,0.3649489821839468,-0.9284384965986395,102.06525684138988,33.33333333333338,-0.9672224489795902,-0.09300010287471888,-3.6530612244897958,4.630385487528354,-9.348103471797842,138.2741770000002,-2.6857015175573333,-0.1869020408163261,-13.187798464721965,0.10619144217687115,-381.05235872969405,176.1111111111111,0.24978571428571095,-0.2991923856171233,0.42857142857142694,48.09190672153636,-19.28403739501232,807.2000344444447,-0.8656510298792213,0.705242857142852,-7.952221807917392,-0.10244860317460242,466.4801756217026,168.0,2.979138775510205,0.42983486266495496,4.816326530612244,-26.04165616864031,26.294840643549552,777.3926510000001,3.7860317629273323,2.9466061224489817,38.34310002960183,2.5939546258503396,593.8838798536394,-142.88888888888889,-0.28214285714285653,-0.13381769946429448,1.7142857142857149,-69.70174407211445,9.712262818833219,-696.450403888889,-1.8598762348148903,-0.6770285714285686,-21.8796297052327,0.2981788253968264,-970.0509381727925,163.33333333333331,1.4478040816326487,-0.036846118498096665,-16.959183673469386,6.293860754178242,-6.919962031669092,764.1519060000002,1.4966676739493332,1.6056938775510152,5.264902888071859,0.7503692789115665,223.54487914606972,0.7495999705742371,0.6416372143640099,0.44336503775641545,0.39303415825617305,0.30250725672116796,0.22365880777303154,0.18483330784927005,0.1296719916357979,0.12072595146086713,0.07668035127188132,0.07634674349502951,0.03878677886238075,0.05248074904825264,0.02247840416069235,0.03011944835344975,0.010651559311412104,17.00110394631428,5.6941131276356725,3.5811119327862198,2.181248584453601,0.45696187702715474,-0.3670388924303019,4.042996724982308,0.9682396689231751,6.022497168672636,0.6420895372992719,14.638732438426318,10.319284074310275,35.45051756888203,11.705560776474389,2.9556459333722764,0.7516515053720505,3.537225074831346,2.2354612222448513,7.014578219387085,0.300191861067464,3.768617989064208,2.4345207071601,24.442067239753833,14.701063361774846,0.32748173182969376,0.6282596325950461,0.7578006581832267,0.8013285933981092,0.8013285933981092,0.8013285933981092,1.9555901047322015,667.9106772656903,0.0,1.0,2.0,0.0,5.0,5.0,1.0,0.0,0.0,3.5536025193066823,1.8648218789871511,1.1374866074004135,0.8930898810554035,0.8930898810554035,0.8930898810554035,59.577469129848566,994.2406576489338,49.47509735634012,23.6723966106889,49.94330522739925,,10.0,365.0,10.023291153407584,13.212334168400758,33.472429668603525,0.0,19.26246486877803,18.19910120538483,0.0,18.85638692333578,5.425791397110385,16.73991362784046,10.74761904761905,24.25,11.0,0.5,13.25,0.0,0.01147186147186135,-2.25,0.17803287981859395,0.039441609977324266,-0.13859126984126968,0.07228571428571406,0.17262317102422609,0.0,0.6155328798185943,0.902380952380952,0.43750000000000033,0.57609126984127,0.8300952380952379,21.525666662094494,0.7168176939755408,0.8888176939755408,17.98917893031595,4.151594150833574,6.045801717563981,39.514845592410445,10.197395868397555,0.5413768289757739,0.28976517501107657,0.07753655294638899,0.3163491360212671,0.5,0.44535065625922615,-0.8123188138374633,-0.06035830329150369,-0.01934092413898722,-0.054154587589164215,0.554649343740774,1.0116794275946435,0.030406935364137026,0.024087605418920084,0.03746960842943125,-3.127412941018536,0.7466768468220394,0.6938389689168764,1.6305635578999227,1.1019087318999563,0.6394358670804622,1.330311872678987,0.7380262427582985,1.2243139722703356,0.638876273032479,0.776558312183499,0.5338299221907015,1.0009906459574667,0.74220625983274,0.524513197283502,0.8155017768847844,1.3190614417029511,0.698782904793386,1.2744414088565947,0.7369437649613236,0.9899746081572821,0.5309309810089063,0.3921897497547933,0.5278097628346347,0.9647264045480605,0.7695775026910657,1.002049877752597,1.0121825395349533,1.1720169461914745,1.0139427430321408,1.1107265241542723,0.7766400136640407,0.8330802119119051,0.9783011943171906,0.762011034228665,0.9552004713669864,0.9374912151368285,0.8755968645634954,1.0135080203835225,1.1843318493298611,0.931442509272698,0.9322912585355732,1.0310455994059582,0.8866694229422892,0.9382670548858343,0.9718945424926843,0.8801750809194545,0.9266904818001057,1.0102728085413246,0.7033772874058128,0.9131353260472256,1.3482129645532654,0.8763266509433963,0.8840316163177756,0.9957384007517671,0.7111296816083871,0.8818381973145843,0.878526183160248,0.9405362970803063,0.8991754613730308,0.886659695758363,0.6546465733763905,1.0445617911207499,0.7533087452519887,0.8122641509433963,1.2700742738807502,0.6803011667688769,0.6609514028463122,0.6761003690308165,0.9769396392536894,1.278063187548203,0.9485207911899168,0.7859433553226493,0.8795171459326466,0.8233669615225282,0.8845518572725621,0.7929245283018869,1.1298574544098026,0.9564539694048001,0.8963247636911058,0.9863524921696186,0.8585552912905811,0.903268397677856,0.7311084589520005,1.2602784948782715,0.8410822224062268,0.42101108880478705,0.5688726877228503,1.3971637639090473,0.7497409804637878,1.0454927368494418,0.8273180966230868,1.0726771741634098,0.4537053977099476,0.45283685408585167,0.4355342343913956,1.021214619716308,6.5,0.04938271604938271,3.7777777777777795,2.125,1.5644444444444447,1.0694444444444442,0.2848979591836735,0.3298611111111111,0.43965734441924914,0.10437500000000002,4887.256114775533,5459.156411218734,2441.6090943241943,2236.0288809890785,12.812430107068321,0.4707430442806229,6.7810677538342725,0.8894413936247264,1.0,0.5,1.8387149034720784,3.5274955437916096,4.254830815378347,4.499227541723357,4.499227541723357,4.499227541723357,0.2826086956521739,0.012345679012345678,0.11111111111111115,0.060714285714285714,0.05046594982078854,0.04113247863247864,0.01187074829931973,0.018325617283950615,0.024425408023291614,0.005798611111111112,0.6187985846608566,18.340264650283554,7.26643598615917,4.521118381915526,135.19039567154022,1.0,4.005275462611685,99.59212868327455,,73.37095244130718,79.04471479662037,78.37178460884112,73.35466113310062,109.97029555496101,79.5944520476293,79.84361360101668,101.8545169215823,0.15578141036873874,-0.04382273285990902,-0.5765779279344877,0.2639315489249672,0.1530141599635097,0.044083233253081236,0.14640220189340053,-0.027180940209970902,-0.007297309089359664,-0.21218238026466896,0.07768156002818923,0.0464830882930051,0.05796141425850794,0.2937077421688869,0.13208501684853097,-0.05769230769230767,0.2520040041454162,-0.10210621826492565,0.06184553787247703,-0.005774158274204829,0.2639749517713267,0.33993547964690474,0.2412059834820746,0.025791729042398973,0.07765219471355106,-0.08911185840420426,0.004214275636781961,-0.10482180293501046,-0.020391639684794387,-0.0514539644682681,0.07482902928424993,0.07259740405215914,-0.07790386445121793,0.0013827019470793974,-0.0894313177561015,0.018427041400285556,0.019320471419502664,-0.0592259768076713,-0.055805239728049454,-0.04329946782776971,0.010141701276183412,-0.053308458564275886,0.01751923673403766,-0.07453736809481015,-0.011563265577713136,-0.04612183874386657,0.009441997978084427,-0.06350387501505952,0.1066334768568353,0.015977958915125167,-0.18754691505168083,0.005306603773584886,0.11003567226709904,-0.11487841056330605,0.10683735063233415,-0.02509729978824879,0.04557986054688046,-0.029052976686297995,-0.009515864835690765,0.08121132635924892,0.1265877287405813,0.23714826457424615,0.3353023045882581,0.0742138364779874,-0.07414905471780234,0.19493351301349138,0.12804360176825447,0.13659786602243423,0.23699102319786905,0.17432709224414758,0.2998334703774552,0.12866501114711196,-0.13842841765339073,-0.02887637985232833,-0.13421248892855536,0.03396226415094341,-0.255167367318536,0.09257225903444724,-0.14748644761794347,-0.08627563731440624,-0.07001019307757055,-0.12789751334110414,0.04431380124537845,-0.27020783284538313,0.14200546493334434,0.13298018111235416,-0.03316458389198234,-0.30152394775036284,0.02067769167859568,-0.05919262292258007,0.14522622841552055,0.06230644131494591,0.14901173359211817,0.027619507833927966,0.10007847716907851,0.055881950630905605,4.083883702240134,11.310317539999328,4.697603470226241,23.688490022770456,38.270585996701676,40.971122197427995,41.21747409758376,41.21747409758376,41.21747409758376,43.44517783223931,28.47717464147476,5.908750270812671,5.1611468241743506,1.7693084811960653,14.968003190764545,5730.703492018898,5412.747679875999,828.8778294892609,46.0,34.0,41.0,49.0,57.0,55.0,49.0,52.0,55.0,345.09139018000053,23.0,4.74493212836325,5.579729825986222,6.472346294500901,7.327123292259293,8.217438537730187,9.07783702216309,9.96688479766592,10.829827620263284,11.718108690907446,0.7222222222222223,0.9902857142857144,1.1363081124033318,0.6855660089362529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.677243512974052,0.9792717086834732,1.0167169562653904,0.6217732546305721,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,3.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,4.895483475517775,0.0,10.023291153407584,5.907179729351506,10.220328581182207,18.56568324589141,0.0,0.0,18.021761513158523,44.888218850618095,17.647133149992918,5.022633313741326,242.7555681281279,-442.7857293635573,-32.900623364637255,-10.542517365798984,-29.519048624237154,302.33303725797646,551.4549282853765,16.574473991702867,13.129879244889917,20.424256603162096,0.5,0.7817594450229333,0.15585044777481802,2.470742589975637,0.14535867906137206,25.027770255702436,0.21824055497706685,5.0,0.13043478260869565,0.34098788318818124,0.6541706036982196,0.7890542195095323,0.8343773537361274,0.8343773537361274,0.8343773537361274,1.8951000000000002,,2.4506302521008405,1.5061637243890114,1.2399117313334944,2.4618407424534383,-4.143345362399987,1.4643813039369107,1.4474136568145615,-1.914089813995286,84.90540000000003,13.212334168400758,0.0,10.434703921064916,5.138973737607942,50.089104401972975,0.0,28.785186010823153,0.0,0.0,3.8501476017100584,0.0,5.209486152841421,0.0,6.75343791859778,0.0,8.379997952238393,0.0,10.047458017946159,30.333333333333336,4.03886826026707,0.0,0.0,0.0,0.0,0.0,-0.042856617955823184,0.0,41.592000000000006,0.0,35.31068684769082,0.0,0.0,-3.9696847180230113,0.0,0.0,-0.3729938271604938,47.72494072093994,10.564765134718327,0.0,0.0,31.417570895930893,10.023291153407584,0.0,43.467927943928096,23.094584680902607,5.022633313741326,0.0,0.0,28.793772375322618,28.444227544910184,26.38278089697502,199.1842573665491,,147.2165760787414,157.9525056182963,156.6308499693792,147.1823191988288,221.3858771954695,159.05577852217345,159.55564414232293,204.2310583378906,26.38278089697502,199.18425736654916,,145.2438286310706,156.6413541986284,155.5946492420785,145.20022547971166,224.08393647232202,157.7667420098801,158.2708530283453,205.6231236571599,4.8177948742190395,149.61676451970507,,113.24742206024736,118.78624991583094,117.21078516107019,113.24113665515816,175.5676251427314,119.94096416853469,120.67201748980561,158.9023031634153,1.1992173134988646,9.053829880297686,,6.6916625490337,7.179659346286195,7.119584089517236,6.6901054181285815,10.062994417975887,7.229808114644248,7.252529279196497,9.283229924449573,2.4088974371095198,99.59212868327455,,73.37095244130718,79.04471479662037,78.37178460884112,73.35466113310062,109.97029555496101,79.5944520476293,79.84361360101668,101.8545169215823,41.12941176470588,0.0,4.098359053497942,5.822469068418442,0.0,5.100661052044529,0.0,42.702112163146396,3.145385164345301,2.8484826152683294,0.0,0.0,0.4679846851291951,1.9137495275888132,0.0,0.0,0.0,26.114476694484026,426.12816563496557,77.22602594582729,148.1548128392476,178.70289424589058,188.967556752381,188.967556752381,188.967556752381,483.0,118.9342282098396,118.9604397511388,56.240527643333806,100.88,92.5,1.0,7.417730541293289,5.523561956057013,4.190723763624888,4.632585891571088,,4.630380100155508,4.623385097411642,4.6221037776880065,4.630448244892098,4.6392623136591,4.624732058914386,4.625889559250096,4.633804236556658,0.19048744380113128,0.210572085980504,,0.21047182273434126,0.21015386806416556,0.21009562625854575,0.2104749202223681,0.21087555971177727,0.21021509358701754,0.21026770723864072,0.21062746529802992,2.221330815329841,2.321572580453647,,2.321096320158782,2.319584502228062,2.3193073249475202,2.3211110369279635,2.3230127298379246,2.319875796442765,2.320126049969399,2.32183554045765,245.33999999999975,130.33165134510276,116.46364945206273,,115.04814053397267,116.65317758927816,116.9449629627898,115.03536481242787,114.74688581114853,116.4859123104517,116.31941153310251,115.52231997531769,5.924165970231943,5.293802247821033,,5.229460933362394,5.302417163149007,5.315680134672264,5.228880218746721,5.215767536870388,5.294814195929622,5.287245978777387,5.251014544332622,5.658539726317711,5.546036562810367,,5.533808014472294,5.547662598831706,5.550160782460846,5.533696961560972,5.531186070035992,5.546227701684279,5.544797315102144,5.537921118195958,22.947704988280385,12.11442423574368,7.0132611507259774,3.055333049886621,-0.3729938271604938,4.506852945396265,3.145385164345301,4.098359053497942,-3.9696847180230113,297.6225535471447,132.32329408067267,-241.35745570365046,-17.9337549061636,-5.746606088182154,-16.09049704691003,164.79829364109548,300.59179779237,9.034556913145572,7.156947566485001,11.13302954786556,1066.0,35.0,2.729435005718881,1.4230767909435875,0.28867513459481287,0.05892556509887896,0.7471879438542403,0.35094322912928205,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.0767608888857074,0.3255410686023082,0.2005297186107382,16.491199352633217,14.116018716008218,10.197395868397555,9.03978563989198,10.285246728519711,7.604399464283072,7.578165621820072,5.3165516570677145,5.915571621582489,3.7573372123221844,4.351764379216682,2.210846395155703,2.886441197653895,1.2363122288380792,1.4758529693190376,0.5219264062591931,4.636361434323833,2.638238719611931,6.877894601030125,3.5743788165959796,9.662933871261975,4.19689295764305,71.04788146271702,38.226287202425695,31.592441284912606,30.466068171372594,30.466068171372594,30.466068171372594,114.0,132.0,47.50185999999997,28.668139999999994,0.3333333333333333,67.08,9.590277777777779,4.694444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,42.0,0.0,0.0,43.0,6.0,3.0,6.0,37.0,9.0,23.0,34.0,0.0,0.0,0.0,14.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,4.0,2.0,1.0,22.0,8.0,0.0,3.0,3.0,0.0,2.0,3.0,1.0,0.0,1.0,0.0,1.0,3.4011973816621555,5.40211416022968,3.9982007016691985,4.37260741275739,4.815228497753646,5.258471458000837,5.445119684605523,5.524331792953929,5.523084598978344,5.385927522567051 +37542,NC(=O)c1ncn([C@@H]2O[C@H](CO)[C@@H](O)[C@H]2O)n1,0,28.137931034482758,7.138951724137931,3.4482758620689653,10.758620689655173,172.60632252632718,111.41137713793101,1.2311232709720004,7.111531034482759,8.21264367816092,8.569338620689656,200.56381809911443,28.3,7.14443,4.266666666666667,9.033333333333333,158.99715653404502,108.04325846666664,1.5026199575999997,7.20827,4.2592592592592595,8.517549599999999,244.21558458289564,25.627450980392158,7.126603921568627,3.8627450980392157,8.156862745098039,163.18385737137055,96.54834764705886,1.3278182542293728,7.163086274509807,4.351307189542483,8.537950431372547,213.32831835163384,21.492537313432837,7.122788059701492,2.91044776119403,6.835820895522388,169.8284691666402,79.02866174626867,1.068500578800612,7.108097014925373,5.351575456053068,8.61104232835821,166.10604452766984,18.560606060606062,6.91296818181818,2.6515151515151514,5.348484848484849,173.14442173021496,66.74138146969696,1.0109500733233183,6.901933333333335,4.53956228956229,8.434822363636362,153.42594751482775,16.719298245614034,6.729210526315791,2.543859649122807,4.701754385964913,173.40112092475854,59.185876912280705,1.0002965712515612,6.7244982456140345,4.470760233918129,8.273988631578948,146.2863700844689,17.2,6.7070444444444455,2.3555555555555556,5.066666666666666,173.39046153586642,61.66396419999999,0.9839174776108891,6.701819999999999,4.632098765432099,8.247539822222224,144.67203514058232,18.08823529411765,6.866176470588236,2.2058823529411766,5.0588235294117645,172.5099826294174,64.81540123529406,0.9624668724439412,6.85545,5.661764705882354,8.398804470588235,145.11116841440378,15.08,6.88824,1.84,3.32,173.99766448997588,50.78592516,0.8756402529818801,6.863168000000002,6.2200000000000015,8.45715056,125.65580448706119,8.656361474435196,0.23836623067776447,0.04639220022914598,0.7086801426872769,4.932223543400715,1.3662061329693167,40.499297650416175,0.17720749815599995,0.21456837098692025,3.240256308627295,0.15573823543400714,39.98700740885543,-0.47590170432025347,-0.061418989298454255,-0.024017957771766733,0.220055489496631,0.29651208878319485,-0.23928029810123572,-1.9475936917954872,0.002019339627200166,-0.050897911216805466,-0.8276126304663758,-0.04366904003170827,2.6343307003063106,-0.5001748618591311,-0.035463458534424515,-0.006480974796084004,-0.050803198806276324,-0.1681937935697465,-0.20057563400860012,-2.2416425145135377,-0.021272397312352833,-0.029808533258725674,-0.3537151021063729,-0.027772701965447268,-2.406045372740626,0.0641737803254832,0.03338508172573514,0.01039228933063154,-0.08129980300637123,0.12490460894102619,-0.04760779465727601,0.13350930017569684,-0.010352585003865662,0.026975478730012218,0.24510424492677318,0.02345545885317765,-3.9974383670790288,-0.6119518610600654,-0.021434830468778157,-0.003767996385017438,-0.0759737686015926,-0.45521204914783997,-0.011863054257895338,-2.813793011440204,-0.002285427170257589,-0.019329290527150222,-0.16777865856343863,-0.014379579216661251,-1.1905281931576859,-0.580741389740701,-0.015779418820535265,-0.0026974510081736415,-0.0014811106243611245,-0.3550910570123288,0.04791783176502725,-2.6906709335377683,0.00519656254924559,-0.01454247866992091,-0.15448632812047294,-0.008180120491478414,-0.23901363026665715,0.4884661117717005,0.017234688862465337,0.0009205746173222534,-0.054274012419077824,0.11145461751882675,0.08265075560660178,2.20955189287885,-0.003313430124755583,0.016040594530321077,-0.03357261343785319,0.011577448857180582,0.8629427763772761,-0.20707141358326922,0.0041418829124991305,0.0016529436081007616,-0.26344687696719593,-0.6157935231167377,-0.1782055354313068,-1.1071997498076513,-0.03434308665652943,0.00421956004756243,0.2389526163219945,0.002796085052808279,-5.153438171620622,-2.690844233055886,-0.03075188585017833,-0.0014856676416528235,-0.1210939357907253,-1.570844233055886,-0.2359004466215384,-12.813568813174788,-0.05492038469636004,-0.03165747443519617,-0.19489232395296618,-0.013878114054696775,-15.510280859219424,,,0.42745098039215684,1.0294117647058822,0.3235294117647059,0.0,0.7058823529411765,-0.38235294117647056,0.7533240452429197,0.02195888261849041,0.03207652967731394,0.7913663610935252,0.22153822923077016,0.25145662711386274,1.5446904063364448,0.4729948563446329,1.9845726194878803,0.9839650054982831,0.4703537925363057,0.5302538214532915,0.0,1.0006076139895972,8.416578258068965,816.0,207.02960000000002,100.0,312.0,5005.583353263488,3230.9299369999994,35.70257485818801,206.23440000000002,238.16666666666666,248.51082000000005,5816.350724874318,849.0,214.3329,128.0,271.0,4769.91469602135,3241.2977539999993,45.07859872799999,216.2481,127.77777777777779,255.52648799999997,7326.467537486869,1307.0,363.4568,197.0,416.0,8322.376725939897,4923.965730000002,67.71873096569801,365.31740000000013,221.91666666666663,435.4354719999999,10879.744235933325,1440.0,477.22679999999997,195.0,458.0,11378.507434164892,5294.9203370000005,71.58953877964102,476.24249999999995,358.55555555555554,576.939836,11129.104983353878,1225.0,456.2558999999999,175.0,353.0,11427.531834194187,4404.9311769999995,66.72270483933902,455.5276000000001,299.61111111111114,556.698276,10126.112535978631,953.0,383.5650000000001,145.0,268.0,9883.863892711237,3373.5949840000003,57.016904561339,383.29639999999995,254.83333333333334,471.61735200000004,8338.323094814727,774.0,301.81700000000006,106.0,228.0,7802.570769113989,2774.8783889999995,44.27628649249001,301.58189999999996,208.44444444444446,371.1392920000001,6510.241581326204,615.0,233.45000000000002,75.0,172.0,5865.3394094001915,2203.723641999998,32.723873663094004,233.08530000000002,192.50000000000003,285.559352,4933.779726089729,377.0,172.206,46.0,83.0,4349.941612249397,1269.648129,21.891006324547003,171.57920000000004,155.50000000000003,211.42876400000003,3141.39511217653,251.03448275862067,6.91262068965517,1.3453738066452334,20.55172413793103,143.03448275862073,39.61997785611018,1174.479631862069,5.139017446523999,6.2224827586206874,93.96743295019155,4.516408827586207,1159.6232148568076,-14.277051129607605,-1.8425696789536277,-0.720538733153002,6.60166468489893,8.895362663495845,-7.178408943037072,-58.42781075386462,0.060580188816004986,-1.526937336504164,-24.828378913991273,-1.310071200951248,79.02992100918932,-25.508917954815683,-1.8086363852556502,-0.3305297146002842,-2.5909631391200927,-8.577883472057072,-10.229357334438607,-114.32376824019042,-1.0848922629299944,-1.5202351961950094,-18.03947020742502,-1.4164078002378107,-122.70831400977193,4.299643281807374,2.2368004756242543,0.6962833851523133,-5.447086801426872,8.368608799048754,-3.189722242037493,8.945123111771688,-0.6936231952589994,1.8073570749108185,16.421984410093803,1.5715157431629025,-267.82837059429494,-40.38882282996432,-1.4146988109393583,-0.24868776141115093,-5.014268727705112,-30.043995243757436,-0.7829615810210924,-185.71033875505347,-0.15083819323700087,-1.2757331747919147,-11.07339146518695,-0.9490522282996426,-78.57486074840726,-33.10225921521996,-0.8994268727705101,-0.15375470746589756,-0.0844233055885841,-20.240190249702742,2.7313164106065533,-153.36824321165278,0.2962040653069986,-0.8289212841854918,-8.805720702866958,-0.4662668680142696,-13.623776925199458,21.980975029726523,0.7755609988109402,0.041425857779501404,-2.4423305588585023,5.015457788347204,3.71928400229708,99.42983517954823,-0.14910435561400123,0.7218267538644485,-1.5107676047033936,0.5209851985731262,38.832424936977425,-7.040428061831154,0.14082401902497044,0.056200082675425894,-8.957193816884661,-20.936979785969083,-6.0589882046644306,-37.64479149346015,-1.1676649463220006,0.14346504161712265,8.124388954947813,0.09506689179548147,-175.21689783510115,-67.27110582639715,-0.7687971462544583,-0.03714169104132059,-3.0273483947681328,-39.271105826397154,-5.89751116553846,-320.3392203293697,-1.373009617409001,-0.7914368608799043,-4.8723080988241545,-0.3469528513674194,-387.7570214804856,0.739822693544713,0.5100580323677517,0.4467173643254866,0.27093821674079116,0.28320565791432056,0.14004981551569912,0.18313166574802456,0.07162242194793748,0.11175325319958782,0.03741665090661645,0.0707734605053824,0.019255635524028675,0.04756949892819396,0.00940155729122078,0.029424890724506995,0.0047829484816368254,8.022562963335046,5.822883908331781,3.5443890967154186,2.318972100885306,0.45619112046361376,-0.39366567613772646,3.1909847744118243,0.9728320139137144,6.02203727899257,1.9860234715680738,14.69309217648051,11.084289498255329,16.011022765739927,11.836132597858569,1.8642891085471736,0.7514793430772891,3.48968089677427,2.3679748647794496,7.008275844095412,1.1640522849648316,3.7025386376589267,2.5639014000243643,20.75757403066554,14.702284531041217,0.3708606992094692,0.7458399655363094,0.8570228782881026,0.9220303436550192,0.9357020583564372,0.9357020583564372,1.9560405388479316,421.8029666398912,0.0,2.0,2.0,0.0,0.0,3.0,0.0,0.0,0.0,2.987213464934161,1.0956702589937013,0.5348198277354115,0.2068965517241388,0.13793103448275978,0.13793103448275978,82.49078380169706,1167.4639837475504,88.85511784019505,40.25737874991553,87.20310095774707,,9.0,243.0,37.053862027844204,15.007591973753234,5.824404497999927,0.0,11.009123009909725,0.0,0.0,0.0,10.082660329248245,15.57705782580294,7.266666666666667,17.5,5.5,0.0,12.0,0.0,0.07254901960784314,-6.5,0.2830635702556884,0.0,-0.2830635702556884,0.16354723707664864,0.29476923076923073,0.0,0.7218390804597704,1.0196078431372548,0.438775510204082,0.7218390804597704,0.8560606060606062,12.806508769129636,0.373301004514337,0.5453010045143369,13.453228138589928,3.7661498969230927,4.274762660935666,26.259736907719564,8.040912557858759,0.41923076923076924,0.2385321100917431,0.0,0.4678899082568807,0.625,0.4040912914977735,-1.0969973816139553,-0.12296664797891559,-0.03782749591772259,-0.12188859795710612,0.5959087085022264,1.6177292276824484,0.0836498782103029,0.05578376647180857,0.08088646138412245,1.9098235274070714,0.7882051282051282,1.0236580766813324,1.5022494172569356,0.9763982102908281,0.6557859209257472,1.6216847600902664,0.7863059520261843,1.2663335592986116,0.9805614420085862,1.0332579016397903,1.077220461151252,0.9588764651069768,0.8715309200603318,1.0052859973516608,1.0498404456757422,1.322345045400711,0.8885832057027244,1.4265855140015198,0.8716189539146221,1.281754757059458,0.9787972511727634,0.870231503745002,1.0596847867840284,1.0508507087256802,0.958065442020666,0.90487141080685,0.7222231213150004,1.1184012821797058,0.9758632104664715,1.0086091806001731,0.9597553921176218,1.04225131762914,0.9120144241442137,0.8878115589105098,0.9214452106644798,1.044428820241741,1.052855477855478,1.0748166771422587,0.9978888128445852,1.0114907463900755,1.0855614973262029,0.9354295066335054,1.0509507327944316,0.9279107521159888,1.07627652514326,0.9179428584843359,1.0706853145190174,0.9709150530234192,1.0517881241565452,0.9957028019451521,0.9636691057556056,0.9082774049217005,1.0320171209122126,0.8802002115641576,1.0522855721892495,0.89277841339676,1.0039948029140082,0.960143524087175,0.9607694863604236,0.9770917676895193,0.9356837606837608,0.8515046829775511,0.9295050338209517,0.9082774049217005,0.9722597235615555,0.8469829055241559,0.9390079517706181,0.9425091535474107,0.8574040988431519,0.9138837355224383,0.8253639581735834,0.9600816594569969,1.018608597285068,0.9753575052480662,1.0398963277596973,1.3023095144097911,1.1342390379488339,1.028173411662963,1.021245067319093,1.1145723494265178,0.9760289847324563,1.0184483856538276,0.9718175090044612,1.083455352908029,1.3362307692307693,1.1914647670926741,1.1847082049866826,1.0626845637583897,1.3037415621986497,0.9881832227466648,1.338795048277739,1.1784068830236456,1.2126722230842548,1.4988171494974623,1.1580629565803329,1.310929421692813,4.0,0.0,2.666666666666668,1.7638888888888886,1.1500000000000001,0.4133333333333333,0.3299319727891156,0.2474489795918367,0.0493827160493827,0.0,3357.659520921494,3709.0393141562618,1727.1552614107104,1583.2976488524923,9.82953448437173,0.44307393312018994,5.474323979640609,0.7955704706057681,0.0,0.625,1.8707675301934106,3.7623107361338706,4.32316116739216,4.651084443403433,4.720049960644812,4.720049960644812,0.2222222222222222,0.0,0.10256410256410262,0.07055555555555555,0.05476190476190477,0.02583333333333333,0.02537938252223966,0.024744897959183672,0.009876543209876541,0.0,0.5359379421284184,13.432098765432098,5.325443786982248,2.56,95.43976537340615,1.0,3.7617733325744602,62.894842832553536,,48.89649036208196,47.32515952693255,48.14226300427174,48.916401122180794,83.5713703619557,48.32307951119878,48.982077797472634,71.03816501938152,-0.05497710622710621,-0.257666487085092,-0.5177154274454396,0.3105145413870247,0.06011732561877214,-0.17514216363615875,-0.04808956709834383,0.01139533963411917,-0.2372106894538903,-0.25541579172697804,-0.28040024923881124,0.06587966619684867,-0.05778118939883644,-0.1487771922792445,-0.1396996642554651,-0.07168706408737986,-0.034101007809102406,-0.14681213117721,-0.05535015776972375,-0.12004230934757759,-0.1389232398121844,-0.10916269221190748,-0.17832937356745468,-0.06017067864417852,0.0074134820403477155,0.1400579336712623,0.22400940846307535,-0.1147200240408695,0.02532419867873746,-0.03484671420249379,0.0032965830994929586,-0.0584206938848154,0.12571973495411679,0.07564347433694509,0.15060822275154592,-0.09996843040056468,-0.07069388944388942,-0.08992393934254406,-0.08122047168287111,-0.10720459629855604,-0.09229347476695596,-0.008683209635512425,-0.06947757553052994,-0.012896898799652784,-0.09008452848033462,-0.051779440446338185,-0.09233172044481322,-0.029772875498906032,-0.06708839406207824,-0.06619821430102941,-0.05814449400653697,-0.0020899564347109166,-0.0719941125716896,0.035073647093709415,-0.06643747150291923,0.029324732888395797,-0.0677755001961934,-0.0476771938408538,-0.05252480528421472,-0.005977282266282465,0.056428571428571446,0.07230339974526032,0.019843305831050036,-0.0765846383296048,0.022597235615557685,0.06049654851641484,0.05455778300037122,-0.018698024402097772,0.07475749783876061,-0.010361098086118972,0.07433915521719416,0.021580579100454782,-0.02392129928894635,0.017376131261220208,0.0356297739692522,-0.37174299249901316,-0.1248510976232344,-0.13043824876118387,-0.02733873953481447,-0.19380154346683678,0.019665340367521586,0.07374497371883047,0.017953748127530943,-0.12887781570969356,-0.3108516483516484,-0.1290110841738748,-0.03202408237407654,-0.17087248322147652,-0.3184860173577627,-0.17266826793467224,-0.31638990196273475,-0.3099213366694694,-0.14754026555538308,-0.0601471937371308,-0.08911179721551114,-0.3878830116150315,0.19999999999999996,4.066953649166565,5.757779244560663,19.20436622475453,35.542268487413025,39.335762471474396,40.70017120265928,40.769688444038586,40.769688444038586,33.73773453129397,16.727405093470814,7.996014473117198,9.014314964705955,0.0,17.010329437823152,2377.655212687166,2032.0389857711714,534.1779845439582,20.0,26.0,35.0,43.0,46.0,50.0,46.0,45.0,39.0,244.080769484,18.0,4.48863636973214,5.351858133476067,6.240275845170769,7.126890808898808,8.02059914989697,8.913684824725294,9.80978108609582,10.7054218711718,11.60268389867549,0.7356321839080462,1.0507586206896549,1.1621248714204035,0.7011015764285037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6147329341317369,1.0298850574712646,1.056307607303413,0.6157522968619495,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,25.790112615484354,24.639219238009446,6.22790117073487,5.824404497999927,5.907179729351506,4.794537184071822,9.665781456092393,0.0,5.098681808301038,0.0,0.0,0.0,6.606881964512918,173.77883553878505,-471.7620289696833,-52.88161696501541,-16.267656171368387,-52.41800321885369,256.2696193404821,695.7019547778672,35.97350087517964,23.989722578547145,34.78509773889337,0.4444444444444444,0.4396460743502524,0.14497476163993248,154.55036091890565,0.10604315690837421,80.64330699172493,0.5603539256497475,5.0,0.16666666666666666,0.38509157036014374,0.7744597477650427,0.8899090325236303,0.9574110001805995,0.971607333453733,0.971607333453733,-3.0114999999999994,,1.8214285714285716,2.1712424383434152,1.7666692712220975,1.8163286094222189,-7.484198594423033,1.9383414932680543,1.803525973543031,-3.2722709032638435,51.549300000000024,24.85098232239399,0.0,14.76446326439343,5.733667477162185,24.539800333979777,6.606881964512918,12.151724572764468,0.0,0.0,3.6109179126442243,0.0,4.948759890378168,3.044522437723423,6.466144724237619,5.41610040220442,8.059908334578276,7.515889085215125,9.696278864234223,21.33333333333334,1.1532284580498864,7.311334561602418,0.0,0.0,0.0,0.0,-0.21968679138321967,1.0730555555555557,30.471999999999994,0.0,10.78669674351222,0.0,0.0,0.0,0.0,0.0,-0.809728337322585,33.701621271191705,5.733667477162185,0.0,0.0,60.910006306024876,4.736862953800049,0.0,16.84684285280662,6.3273200747645415,0.0,0.0,0.0,20.331945716426606,17.82725508982037,21.174967846278047,125.78968566510707,,97.5786950098782,94.39487876700119,96.0766825648703,97.61911652560603,168.08223821187357,96.41811884671895,97.75197606864609,142.46130308620582,21.174967846278047,125.78968566510706,,95.97155215273533,92.47907661552172,94.51785673732138,96.01647363493936,174.6269393183344,94.7078175291295,96.16062962140225,145.3486009420269,4.666147238116661,93.35636685786517,,71.42473425602665,68.88349493028416,69.9334393413263,71.4560288033071,125.17278435934688,70.48246049184398,71.56479724441529,107.10339361230987,1.2455863438987087,7.399393274418063,,5.739923235875189,5.552639927470658,5.6515695626394296,5.742300972094473,9.887190483051386,5.671654049806997,5.750116239332122,8.380076652129754,2.4570543966201432,62.894842832553536,,48.89649036208196,47.32515952693255,48.14226300427174,48.916401122180794,83.5713703619557,48.32307951119878,48.982077797472634,71.03816501938152,29.86666666666667,0.0,0.0,0.0,0.0,4.9712153565129755,28.083231187536743,30.632920611798976,-0.4383924634668681,0.0,5.172580309901738,0.0,-4.416867913832202,0.0,0.0,0.0,0.0,17.856816608996535,189.06911496806146,54.2522583756089,109.10701134788225,125.37167385437264,134.88144885869957,136.88144885869954,136.88144885869954,385.0,107.25983198784316,240.9793399112057,65.75852165121549,143.72000000000003,143.72000000000003,0.8,6.952788394273857,5.169925001442312,3.6710900664054993,4.055584570181151,,4.050466004731408,4.049312125252033,4.046740725954786,4.0504711861830485,4.049954791841294,4.049929859885921,4.050538012370692,4.053757500508387,0.21594647449444113,0.23856379824595006,,0.23826270616067108,0.2381948308971784,0.2380435721149874,0.23826301095194402,0.2382326348141938,0.2382311682285836,0.23826694190415837,0.23845632355931687,1.8311168898456358,1.930723088580048,,1.929460188458035,1.929175272138436,1.9285400491647302,1.929461467680801,1.9293339696099947,1.9293278134839644,1.9294779659184915,1.9302724799640214,158.22999999999976,91.48496218755642,81.69860862829624,,81.9946964737551,82.08247266205997,82.3214185188302,81.99446613689655,82.30864933028681,82.03822821087427,81.9889138070762,81.74724501329356,5.381468363973907,4.805800507546838,,4.823217439632653,4.828380744827057,4.8424363834606,4.823203890405679,4.841685254722754,4.825778130051427,4.822877282769189,4.808661471370209,5.046802862160107,4.933665222529699,,4.937282819085438,4.938352757055978,4.941259574203714,4.9372800099137235,4.941104448366304,4.93781358738363,4.937212291711741,4.934260360128473,6.245635865457293,14.399394683799446,31.781867808851935,4.9712153565129755,-1.0294151287058046,0.0,-3.2636394557823154,-0.4383924634668681,0.0,191.34022314822303,74.7333197141728,-202.88053162912038,-22.74165766732212,-6.99588040100415,-22.542281292124486,110.2083538298723,299.1855507087076,15.47034846796897,10.31674312788647,14.959277535435383,515.0,25.0,1.3543162762810381,0.5048079317402758,0.0,0.0,0.5206116245185313,0.09027950304473113,0.0,0.0,0.0,0.0,0.0,0.0,0.19641855032959654,0.07118081013736756,0.39413408046983855,0.12075014123735431,0.6949436800410077,0.1402484259368374,12.576985790260121,8.67098655025178,8.040912557858759,4.876887901334241,7.363347105772335,3.6412952034081774,6.409608301180859,2.5067847681778117,4.805389887582276,1.6089159889845073,3.2555791832475904,0.8857592341053191,2.378474946409698,0.47007786456103895,1.3535449733273217,0.220015630155294,3.5848992991141126,0.9850684126667139,4.975302719504987,1.1728793567358307,6.725104700987397,1.2248716536056423,59.45116609744281,31.15402279857156,24.43957359335968,22.033429425761888,21.83632728816688,21.83632728816688,88.0,105.0,29.771515999999984,16.922483999999997,0.3448275862068966,52.09,7.027777777777779,3.805555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,5.0,5.0,29.0,0.0,0.0,30.0,5.0,1.0,3.0,27.0,6.0,18.0,24.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,8.0,4.0,2.0,17.0,9.0,0.0,4.0,5.0,0.0,2.0,3.0,0.0,0.0,0.0,1.0,1.0,3.1135153092103742,4.523146350509501,3.6176519448255684,4.09225905573108,4.5278840920280174,4.701616084256344,5.003946305945459,4.993828175779875,5.114244276715276,5.079850363117729 +5505,CCCCNC(=O)NS(=O)(=O)c1ccc(C)cc1,0,27.666666666666668,6.213150000000001,2.8333333333333335,6.623456790123457,164.89482777066894,109.37773069444444,1.5063734524245003,6.2719555555555555,6.019121037189453,7.795022583333331,204.84133707921615,30.77777777777778,6.290383333333334,3.388888888888889,4.37037037037037,147.41392784802775,117.26288638888893,1.8529887100000006,6.454488888888889,2.6612225651577504,7.8157044444444415,253.14320868869618,22.253968253968253,6.277633333333332,2.9047619047619047,4.962962962962964,157.1720216105567,82.6678414126984,1.498562552597476,6.369842857142857,4.043552812071331,7.809777682539683,198.09030092496687,18.85,6.06691,2.4625,3.1083333333333334,160.61868635902175,68.24203418749998,1.293406972766025,6.15618,3.0884837962962965,7.6975802999999985,167.15447420185382,17.1375,6.312912499999999,2.1875,4.0,167.12848985918646,60.996677587499995,1.1184047368478625,6.354705,4.617689043209877,7.934887800000001,146.5855628387957,16.318181818181817,6.235818181818182,2.242424242424242,3.121212121212121,168.9556578753476,57.93016149999999,1.1075699879542424,6.278969696969696,3.47523849607183,7.887170060606061,146.03749991074594,19.392156862745097,6.527176470588236,2.4901960784313726,2.8888888888888884,162.8839451042391,67.99204609803922,1.273799790822412,6.593470588235295,4.239560639070444,8.159465215686275,171.85508552311165,15.038461538461538,6.599096153846153,2.0961538461538463,1.935897435897436,167.67126257483278,49.312058269230775,1.160175017873,6.629192307692307,3.9864672364672367,8.233619730769231,153.31814563891209,12.808510638297872,5.859765957446809,2.127659574468085,1.2340425531914894,160.06487775140587,42.59345808510638,1.18952645706783,5.945595744680853,2.9320330969267143,7.526228085106384,147.77052735129416,11.666666666666666,0.1451388888888888,0.016868137698440522,0.5833333333333334,3.9677640603566524,1.4968872301532363,52.9830544529321,0.29953242126780555,0.1353256172839505,2.6759044263027323,0.0920849097222222,50.62211299395182,3.0,-0.011644444444444442,-0.014726822773168545,0.1388888888888889,0.2962962962962963,-0.21411115863998742,12.852413496141992,-0.024638835694444305,-0.003491820987654303,-0.5117528847863642,0.0074551273148148085,0.46548828439460255,1.3015873015873016,0.06573227513227511,0.00793534665241983,-0.011904761904761904,1.1604938271604939,0.18477056381633175,5.879429561618172,0.01057470738841407,0.05587526455026455,0.7754465476462647,0.04122122916666665,-0.8195111426743676,0.95,-0.00530930555555556,-0.00547635664794879,-0.0125,0.202914951989026,-0.24330990146730674,4.233825289081793,-0.02361126993566594,-0.001024645061728402,-0.15705577280097888,-0.0031832972222222236,-0.7688212036655762,0.1875,0.03007819444444444,0.0025849215432800924,0.03125,0.8840877914951989,-0.09813553065379799,1.0391679057484573,-0.010017193594943071,0.026572021604938267,0.6329407204450965,0.016982541319444447,-0.5351084825023659,0.3181818181818182,-0.0251540404040404,-0.0004662669661435458,-0.05303030303030303,-0.09140790622272091,0.10583563529323368,1.8831284405864182,0.0365782933262323,-0.01968058361391696,-0.39272447579167685,-0.021106394570707062,7.9003165561195985,-3.823529411764706,-0.04026339869281044,0.001665441919600728,-0.11274509803921569,-1.2615185992092308,-0.2809078770055327,-16.83542366589506,-0.06124707297832513,-0.03730851488743645,-0.4400795150625156,-0.03333349959150325,-6.094566076704257,-5.423076923076923,-0.09722286324786318,-0.0030648674625684503,-0.0673076923076923,-2.365674791600717,0.31865696128905463,-24.831585301222695,0.012041293889902752,-0.09524858736942064,-1.3192978704452758,-0.05747499145299141,-9.17071438134471,-2.1702127659574466,-0.005762647754137121,0.0024572511536170667,-0.12234042553191489,-0.9298076642442284,-0.21589319350181732,-9.653332140284345,-0.054757331015911924,-0.0066187614919884456,-0.03894232027322782,-0.006985970005910165,-5.764486147492315,,,0.47962962962962963,1.1666666666666667,0.5833333333333334,0.0,0.5833333333333334,0.0,0.7443076846209995,0.02559377637977948,0.030371554157557254,0.8318315458728998,0.2189705094701525,0.25066980094857333,1.5761392304938993,0.46964031041872584,1.9422972713467326,1.309733405543386,0.2188474194342702,0.2902581222839231,0.0,0.6325638658033466,7.502883706555567,996.0,223.67340000000002,102.0,238.44444444444446,5936.213799744082,3937.598305,54.22944428728201,225.7904,216.68835733882028,280.62081299999994,7374.288134851781,1108.0,226.4538,122.0,157.33333333333331,5306.901402528999,4221.463910000001,66.70759356000002,232.3616,95.80401234567901,281.3653599999999,9113.155512793062,1402.0,395.49089999999995,183.0,312.6666666666667,9901.837361465072,5208.074008999999,94.40944081364098,401.3001,254.74382716049385,492.01599400000003,12479.688958272913,1508.0,485.3528,197.0,248.66666666666669,12849.494908721741,5459.362734999999,103.472557821282,492.4944,247.07870370370372,615.8064239999999,13372.357936148306,1371.0,505.0329999999999,175.0,320.0,13370.279188734916,4879.7342069999995,89.472378947829,508.3764,369.4151234567901,634.7910240000001,11726.845027103656,1077.0,411.564,148.0,206.0,11151.073419772942,3823.3906589999992,73.09961920498,414.4119999999999,229.36574074074076,520.553224,9638.474994109232,989.0,332.886,127.0,147.33333333333331,8307.081200316194,3467.594351,64.963789331943,336.26700000000005,216.2175925925926,416.132726,8764.609361678695,782.0,343.15299999999996,109.0,100.66666666666667,8718.905653891305,2564.2270300000005,60.329100929396,344.71799999999996,207.2962962962963,428.14822599999997,7972.543573223429,602.0,275.40900000000005,100.0,58.0,7523.049254316076,2001.8925299999999,55.907743482188,279.4430000000001,137.80555555555557,353.73272000000003,6945.214785510826,420.0,5.224999999999996,0.6072529571438589,21.0,142.8395061728395,53.88794028551651,1907.3899603055556,10.783167165641,4.8717222222222185,96.33255934689836,3.315056749999999,1822.3960677822656,108.0,-0.4191999999999999,-0.5301656198340676,5.0,10.666666666666666,-7.708001711039547,462.6868858611117,-0.886998084999995,-0.1257055555555549,-18.423103852309108,0.2683845833333331,16.757578238205692,82.0,4.1411333333333324,0.4999268391024492,-0.75,73.11111111111111,11.6405455204289,370.40406238194487,0.6662065654700864,3.5201416666666665,48.85313250171468,2.596937437499999,-51.629201988485164,76.0,-0.4247444444444448,-0.4381085318359032,-1.0,16.23319615912208,-19.46479211738454,338.7060231265434,-1.8889015948532752,-0.08197160493827216,-12.564461824078311,-0.2546637777777779,-61.505696293246096,15.0,2.406255555555555,0.2067937234624074,2.5,70.72702331961591,-7.850842452303839,83.13343245987659,-0.8013754875954457,2.1257617283950614,50.63525763560772,1.3586033055555558,-42.80867860018927,21.0,-1.6601666666666663,-0.030773619765474023,-3.5,-6.03292181069958,6.985151929353423,124.2864770787036,2.4141673595313318,-1.2989185185185195,-25.919815402250673,-1.393022041666666,521.4208927038935,-195.0,-2.0534333333333326,0.08493753789963712,-5.75,-64.33744855967078,-14.326301727282168,-858.606606960648,-3.1236007218945816,-1.902734259259259,-22.444055268188293,-1.7000084791666659,-310.8228699119171,-282.0,-5.055588888888885,-0.15937310805355942,-3.5,-123.01508916323728,16.57016198703084,-1291.2424356635802,0.6261472822749431,-4.952926543209873,-68.60348926315434,-2.9886995555555536,-476.877147829925,-102.0,-0.27084444444444467,0.11549080422000213,-5.75,-43.70096021947874,-10.146980094585414,-453.70661059336425,-2.5735945577478603,-0.31108179012345694,-1.8302890528417075,-0.32834059027777773,-270.9308489321388,0.7553339910137671,0.6322339535056292,0.46964031041872584,0.40616091074718114,0.32293561046268354,0.23793366093440602,0.20369480701580564,0.14312021402851322,0.13624793025884643,0.07729807132432481,0.08386223061430666,0.04851430107421169,0.06187380486845898,0.032962781881487976,0.03446850280861742,0.01918552444771602,16.013121968927855,5.693497366634226,3.5809851985023053,2.1841838721490445,0.4696877263254251,-0.3589405908720042,4.043805318317069,0.9714523765390688,6.022506623464168,0.6442336298593094,14.544168353444118,10.319771491997008,32.066543620414414,11.704563423671528,2.954564485367223,0.7510046390024638,3.5370018181420377,2.237517589703625,7.014572364592859,0.29894275992879843,3.7682718167502127,2.4362334007019837,24.44182943158956,14.701069539085651,0.3156971489364843,0.6238183189811874,0.806742016099296,0.8685583572377522,0.8685583572377522,0.8685583572377522,2.3307126609033597,494.5587374421376,0.0,0.0,3.0,0.0,5.0,2.0,1.0,0.0,0.0,3.4675857649105266,1.8060986113514965,0.819715972342415,0.48638263900908196,0.48638263900908196,0.48638263900908196,117.25932091820269,869.9722526048697,47.24928433640393,24.165895905690824,48.3095741743128,,12.0,318.0,16.054405665745655,13.212334168400758,4.895483475517775,6.544756405912575,18.405094737549014,12.13273413692322,12.13273413692322,18.569569263833337,5.316788604006331,0.0,8.633333333333333,21.0,10.5,0.0,10.5,0.0,0.020370370370370396,0.0,0.1601851851851851,0.04193121693121693,-0.11825396825396817,0.05870370370370359,0.17329018789144035,0.0,0.5935185185185188,0.8870370370370367,0.4333333333333337,0.5515873015873018,0.8283333333333331,13.39753832317799,0.46068797483603063,0.5466879748360306,14.972967825712196,3.941469170462745,4.51205641707432,28.370506148890186,8.453525587537065,0.5407098121085596,0.23166023166023164,0.09652509652509654,0.17374517374517376,0.4166666666666667,0.3879056632462442,-0.6452051331968489,-0.05483693575662084,-0.01792236481102358,-0.04608608094263206,0.6120943367537558,1.0180991037079625,0.035499203806620326,0.02828053065855451,0.04627723198672557,-3.7586571296867763,0.9120370370370371,0.704856459330144,2.001212548853121,1.1574074074074074,0.6776145203111497,1.5010302356448721,0.9038862386217908,1.4318645437764193,0.656097832160655,0.723178027267796,0.5283560463264401,1.1186009665927807,0.8505291005291005,0.3934928229665073,0.5755858349368224,1.2301587301587302,0.64066551426102,1.021598697553097,0.849399914336002,1.0197624892106234,0.4316406472728101,0.4777502101522933,0.3794692872821022,1.0366336033783443,0.9854166666666666,0.9352912679425842,1.3906776701893198,1.1041666666666667,0.8887451382886778,1.1953225405637127,0.9781803283791332,1.1608906716437701,0.9102620280302427,0.9488716089449438,0.9317528086057651,1.0224190559931283,1.0369791666666666,1.0435400717703354,1.0465513790870629,0.8645833333333335,0.8947007346585999,1.0257914018348195,1.0283424290067742,0.9878093450245725,1.032063153573343,1.0313764024048493,1.078829938205432,0.9254352028332306,1.0265151515151516,1.4371618094823846,1.443968324471574,1.186868686868687,1.204319556847647,0.8665560844837692,1.0138330265010203,0.8141747077982333,1.3881897800230358,1.419871021161509,1.5015979512997548,0.7497868763486423,1.6895424836601307,1.7159358288770061,1.5768044431089387,1.5522875816993464,1.5782830850577054,1.2650695017551195,1.6471221361462267,1.4316561343591399,1.669205774017993,1.7578523082237976,1.8650152141467273,1.0691732855725449,1.5112179487179487,2.314154398233347,1.4039350777292745,1.0096153846153846,1.9272571637524103,0.7606128090321163,1.5099049557713338,0.8715331186185543,2.2855041478688722,2.3123143041614473,2.3437041781469445,1.036147864369757,1.1826241134751774,0.8464206454240052,0.7166326306770069,1.223404255319149,1.121751963073981,1.0866138914347516,1.1756456159746216,1.2339416047272789,0.8716717332160292,0.9022287474272243,0.8998954606965915,1.140198963282629,5.0,0.037139067442097745,2.444444444444445,1.375,0.8222222222222224,0.6597222222222222,0.20326530612244897,0.19618055555555555,0.05744520030234315,0.045625000000000006,3419.8045446769393,3851.1296364441782,1991.5370670566904,1807.40691497942,15.145485071869697,0.4587566103587481,8.197393678059735,0.8475976226939642,1.0,0.4166666666666667,1.7023392365317855,3.3638263900908156,4.350209029099897,4.68354236243323,4.68354236243323,4.68354236243323,0.2777777777777778,0.009284766860524436,0.10185185185185189,0.05978260869565216,0.039153439153439155,0.03880718954248366,0.012704081632653061,0.01783459595959596,0.0057445200302343145,0.007604166666666667,0.5705449981708791,16.055555555555557,7.555555555555555,5.680473372781065,107.64307816555157,1.0,3.7698114346363827,79.50217309148825,,55.157879259889356,64.48170302837208,64.49717227975142,55.16220368979755,79.16277894963974,64.71945714770328,64.39962308015294,78.2056062573156,0.2571428571428571,-0.08022966507177037,-0.8730556411411116,0.23809523809523808,0.07467588591184098,-0.14303760118126524,0.2425759259983686,-0.08225765875412615,-0.025803104081376538,-0.191244829133695,0.08095927266805708,0.009195354695095751,0.11156462585034015,0.4528922305764413,0.4704340689104915,-0.02040816326530612,0.2924805531547105,0.1234365288809477,0.11096811277351344,0.03530404937019972,0.41289495419793887,0.28978858139477376,0.4476436941841191,-0.0161887976262919,0.08142857142857142,-0.0365808612440192,-0.32465686170294217,-0.02142857142857143,0.051140881590319785,-0.1625439088303259,0.07990904512390737,-0.07882709269243214,-0.007571700630623495,-0.05869259427100732,-0.03456915179506356,-0.01518745777675129,0.01607142857142857,0.2072373205741628,0.15324285285619116,0.05357142857142857,0.22281763180639588,-0.06555973534743285,0.019613212497433682,-0.03344276907502748,0.19635618250447606,0.2365333807230267,0.18442263092479494,-0.010570646914053135,0.027272727272727275,-0.17331013484123542,-0.027641875735141333,-0.09090909090909091,-0.023037636520782556,0.07070381332760738,0.035542089070370785,0.1221179769836282,-0.14543132341766202,-0.14676326700288767,-0.22920579098546487,0.15606453561240136,-0.3277310924369748,-0.2774128905150578,0.09873300475574726,-0.19327731092436973,-0.3179419390919721,-0.18766134906286572,-0.31775109683136404,-0.20447560474118234,-0.27569440018997204,-0.16446010206372302,-0.36198655884069475,-0.12039335610965936,-0.46483516483516485,-0.6698608759661392,-0.1816956629925899,-0.11538461538461538,-0.5962236553420649,0.21287973794554563,-0.46867032408035336,0.040200302320986106,-0.7038474257949462,-0.4930287709371351,-0.6241521181523336,-0.18116024478157203,-0.18601823708206686,-0.03970436730123187,0.14567412227398654,-0.20972644376899693,-0.23434046231081854,-0.14422809491114194,-0.18219659549564013,-0.18280936261972977,-0.04890989322517152,-0.014552956335228307,-0.07586443888562873,-0.11387288689788666,5.442479634837752,6.739116452377586,0.7937005259840998,19.479320119797514,33.11550548420033,37.166168073210365,37.50216807321036,37.50216807321036,37.50216807321036,34.961350884241185,23.575201299780947,3.9392535498168635,5.224646201110616,0.0,11.386149584460238,4323.459916107334,3998.209081869201,611.7857140642395,10.0,24.0,26.0,29.0,31.0,30.0,22.0,19.0,14.0,270.1038134360004,18.0,4.442651256490317,5.220355825078324,6.07073772800249,6.878326468291325,7.740229524763182,8.560444233410552,9.429556219952412,10.256290008060986,11.129803871016513,0.6666666666666667,0.9853333333333336,1.1352024714162934,0.6252301131370318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6578222554890221,0.9714596949891064,1.0107125515901922,0.6034397064477464,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,0.0,10.023291153407584,0.0,17.934429032852847,0.0,0.0,31.040744451236847,25.477292959539852,6.544756405912575,4.895483475517775,202.8896194483955,-337.46716365252104,-28.6818319028103,-9.374087879236697,-24.1047974037515,320.1489403665982,532.5050889523486,18.567452433593637,14.791808026454127,24.204776770561303,0.5,0.7776362442910878,0.20280106134509998,30.485313819989262,0.19731419718981552,45.016519772222466,0.2223637557089121,6.0,0.2777777777777778,0.3292773562589138,0.6506528410281331,0.8414452874821724,0.905920755354596,0.905920755354596,0.905920755354596,1.78302,,1.6607142857142858,1.2038881980944245,0.883001233280407,1.6581557966933946,-3.8591084983466093,1.1101591187270503,1.0973664910406058,-1.6780538154894666,69.80720000000004,13.212334168400758,0.0,10.038883468458419,0.0,31.584601120751042,6.544756405912575,29.828919765543436,0.0,0.0,3.6109179126442243,0.0,4.890349128221754,0.0,6.3578422665081,0.0,7.916078096302786,0.0,9.525661930231381,24.000000000000004,6.306628243890149,0.0,0.0,0.0,0.0,0.0,1.0417489356215912,0.0,35.47200000000001,0.0,35.00163832199547,0.0,0.0,-3.7754522156084644,0.0,0.0,-0.6907175925925919,40.867288970986564,10.038883468458419,4.794537184071822,0.0,20.993667902579585,10.023291153407584,6.923737199690624,25.328831937239638,29.160951749364212,0.0,0.0,0.0,22.508284072933144,23.681601197604795,21.183189777220775,159.00434618297652,,110.86783561456214,128.82964070140034,128.8962333113606,110.87740544719361,159.97702121578573,129.31556328221467,128.67731655019026,156.97056378646104,21.183189777220775,159.00434618297652,,109.57616894789547,127.75951785864976,128.11134332622245,109.58772871643208,162.18466639762607,128.32875517667952,127.70187966926538,158.08926633012067,4.717560603040956,119.50453013728298,,83.68506344290272,98.38713368771448,98.10993625170153,83.6938274321381,124.56080120325592,98.82905966029816,98.3708783027092,122.3659067822908,1.1768438765122653,8.83357478794314,,6.159324200809007,7.157202261188908,7.160901850631144,6.159855858177423,8.887612289765874,7.184197960123037,7.148739808343903,8.720586877025614,2.3587803015204765,79.50217309148825,,55.157879259889356,64.48170302837208,64.49717227975142,55.16220368979755,79.16277894963974,64.71945714770328,64.39962308015294,78.2056062573156,34.97254901960783,0.0,3.8511053485839293,0.0,0.0,0.0,0.0,36.38565185724692,2.2170065513323993,4.464709073444193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.72382943211887,406.7337412739512,61.284212515144276,121.09775004326936,156.6075250475963,168.60752504759628,168.60752504759628,168.60752504759628,241.0,105.72839513506611,116.30481854104247,50.30084933390824,83.65,75.27000000000001,1.0,6.736447843451283,5.169925001442312,3.512011376795277,4.165242160356875,,4.117756540207926,4.148361675016858,4.150910948159895,4.117756185916989,4.154994735687856,4.148082624879203,4.146432926836166,4.159962675790703,0.19511174315529317,0.2314023422420486,,0.2287642522337737,0.23046453750093654,0.23060616378666085,0.22876423255094386,0.23083304087154755,0.2304490347155113,0.23035738482423143,0.23110903754392792,1.8439755800761426,2.0145610805731065,,2.0030951508780093,2.0105001440953587,2.0111144806375982,2.003095064838208,2.0120978262262623,2.0104328742800806,2.010035093829974,2.0132927669693443,205.7999999999997,210.02592911064346,83.63067066390774,,85.10118744778279,83.58676572133868,83.59570032967837,85.1014184747061,83.56934914585327,83.60826286948696,83.6848865736544,83.16463864268825,11.668107172813526,4.646148370217096,,4.727843747099044,4.643709206741038,4.64420557387102,4.727856581928116,4.64274161921407,4.644903492749275,4.649160365203022,4.620257702371569,5.935017659952998,5.014196991681164,,5.031627653942062,5.013671867692577,5.013778752206955,5.031630368670454,5.013463480753669,5.013929018260365,5.014845059470427,5.008608906070405,25.602366937515747,11.454532811581423,2.4916157249937014,0.9595808569703774,0.0,5.615910651297557,1.7529676981367999,4.315144201779528,-3.7754522156084644,249.17921341954587,106.11909435770093,-176.5083392616654,-15.00170405130164,-4.903009423935151,-12.607738518690384,167.45024069564184,278.5206948197915,9.711493580300218,7.736685967216432,12.660031582717798,685.0,23.0,1.7721646521389818,0.8759459934385126,0.2041241452319315,0.05103103630798288,0.34846171252933794,0.11735402420532191,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.125,0.06179846864976636,13.596011838247808,11.380211163101325,8.453525587537065,7.31089639344926,7.750454651104405,5.710407862425744,5.296064982410947,3.7211255647413433,3.951189977506546,2.2416440684054195,2.5997291490435064,1.5039433333005623,1.8562141460537696,0.9888834564446393,0.7583070617895833,0.42208153784975244,2.776996320716848,1.3780227823329285,3.987592935017151,1.4743626836402057,4.909813623040409,1.670239056050949,59.75004446495733,33.77878195718487,24.86432847979436,23.54770347899307,23.54770347899307,23.54770347899307,84.0,92.0,39.54827399999998,26.721725999999993,0.16666666666666666,18.06,7.645833333333334,4.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,36.0,0.0,0.0,36.0,6.0,3.0,6.0,30.0,9.0,18.0,27.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,3.0,2.0,0.0,18.0,6.0,0.0,2.0,3.0,0.0,1.0,5.0,1.0,0.0,0.0,0.0,1.0,3.2188758248682006,3.7912668042923463,3.7727609380946383,4.081765780015241,4.514971918069943,4.873765000206219,4.997212273764115,4.848606440570063,4.455073776488874,4.35269436927093 +151166,Cc1ccc(Nc2c(F)cccc2Cl)c(CC(=O)O)c1,0,33.333333333333336,6.527690909090908,3.4242424242424243,9.018331462775908,162.41517696173145,136.4528643075688,1.6718946897890001,6.6421909090909095,6.659251407536729,8.04328681818182,245.87736045720226,28.147058823529413,6.437617647058823,4.0,8.062091503267974,145.44992475039263,108.88734511279998,1.9492411087058823,6.610544117647059,3.6394940692326316,7.861390411764705,287.26878260848986,25.89090909090909,6.326545454545455,3.7636363636363637,6.626262626262626,149.4881278692963,99.78876724855272,1.7506925534435633,6.4840836363636365,3.9129442573887014,7.795384145454546,251.8069370158111,23.314285714285713,6.454572857142858,3.1857142857142855,5.250793650793651,156.64358119126126,87.43230661026286,1.5515836097935287,6.593137142857143,3.6611845972957084,7.974167628571428,217.82688969771644,20.666666666666668,6.24952,2.84,4.438518518518519,162.49733305228557,77.29328337282132,1.3740237134004933,6.382584,3.2429903978052126,7.837194453333335,189.08351742176302,20.720588235294116,6.258014705882353,2.8823529411764706,5.080065359477125,158.64055339883203,77.5461525602353,1.4225856370762942,6.3760102941176475,3.644638102154442,7.8171647647058835,198.63237688249012,21.671641791044777,6.390850746268657,2.6865671641791047,4.2868988391376455,160.55879708781467,81.23494892434626,1.4006893649774625,6.512499999999999,3.9232540998710155,7.96950552238806,197.61002626951338,18.11111111111111,6.489904761904762,2.2063492063492065,3.6543209876543212,164.91586875977148,63.636824704330145,1.2682705256498887,6.608103174603174,3.892089620484682,8.14377473015873,171.4957372295593,22.5,6.375108695652172,2.0217391304347827,4.115942028985507,165.2984950072247,86.63425479193043,1.1393740794138478,6.476917391304347,5.5076489533011275,8.00057152173913,158.19181721341803,12.117539026629936,0.1864512396694214,0.023251619812542895,0.6464646464646465,4.2873402940743,2.089785535264645,57.23077969638113,0.26376660773438015,0.17672892561983464,2.7780713426263572,0.12452027180899906,49.923513607287425,-0.22003457030195045,-0.014987603305785132,-0.014029035722019623,0.16013071895424835,0.9083090094181404,0.07793260117941533,-0.9219850606392184,0.020754930568451443,-0.013804326689353413,-0.23478179419277642,-0.009615368956949172,2.9977609038852684,1.0460973370064277,0.024680991735537186,0.0021948000781945223,-0.0646464646464647,-0.01470144769808034,-0.29948097418753694,4.89596467524919,-0.005117548611518965,0.023244793388429743,0.41442820495487087,0.015443094031221289,-0.036654639372158536,-1.3989243080152172,-0.013818642266824097,0.00010383250944842388,-0.03650793650793653,-0.6795801529808262,-0.21224611280311234,-6.654238383518773,-0.03421059931792429,-0.015014769775678834,-0.3158562562343166,-0.007784252761380027,-9.848959303889556,0.30508723599632703,-0.006193057851239656,-0.0029069181034138965,-0.02666666666666666,0.06637962112709574,-0.01592223813736898,1.5827915209799694,-0.01333501335349047,-0.00018541046831957342,-0.06602147341142219,-1.9789384756660292e-05,0.2992652073981757,0.7527818289850375,0.013159455517744289,0.006156809449274555,-0.07516339869281048,0.36436741482295054,-0.04619164079721233,3.5585989217710403,0.005208644679488819,0.011917464754496822,0.05972089970877169,0.004467347174958127,2.324418592344888,-0.010799994517769262,-0.024191809547304797,-0.0023865106608587927,-0.05804311774461028,-0.659972084616539,-0.1279644640009037,0.1268978395017874,0.0061863040805112835,-0.021067053163932408,-0.22432244154006967,-0.019819238339980533,1.3587142917709831,-4.467226376317285,-0.06674301456119637,-0.005564052962682733,-0.06878306878306877,-0.9249687835546422,0.0033080084248093902,-21.117226759942785,-0.02116788261004685,-0.07072041191132095,-0.8963170742694376,-0.045682852376579625,-9.159367921809372,5.165069669022238,0.10956378009342434,0.009396215789405615,-0.09178743961352655,0.7455327194750411,-0.1837911421199178,24.014306165958875,-0.02552459900891378,0.1132147502694933,1.428441159183454,0.0803238092186689,2.677782418126411,,,0.4783333333333334,1.35,0.75,0.075,0.6,0.15,0.6849172323000643,0.02224896558931686,0.030848965589316858,0.966173353826913,0.278364489635217,0.19509722289412093,1.6510905861269773,0.47346171252933794,1.9937568937134416,1.543023615115428,0.1032857225185825,0.17016668588367684,0.17728087019575495,0.4507332785980143,8.880663168363647,1100.0,215.41379999999998,113.0,297.60493827160496,5359.700839737137,4502.944522149771,55.172524763037,219.19230000000002,219.75529644871207,265.428465,8113.952895087675,957.0,218.879,136.0,274.1111111111111,4945.297441513349,3702.169733835199,66.274197696,224.7585,123.74279835390948,267.28727399999997,9767.138608688656,1424.0,347.96000000000004,207.0,364.44444444444446,8221.847032811296,5488.3821986704,96.28809043939599,356.6246,215.2119341563786,428.746128,13849.38153586961,1632.0,451.8201,223.0,367.55555555555554,10965.050683388288,6120.2614627184,108.61085268554702,461.51959999999997,256.2829218106996,558.191734,15247.88227884015,1550.0,468.714,213.0,332.8888888888889,12187.299978921417,5796.9962529616,103.05177850503699,478.69379999999995,243.22427983539094,587.7895840000001,14181.263806632227,1409.0,425.545,196.0,345.44444444444446,10787.557631120579,5273.138374096,96.73582332118801,433.56870000000004,247.83539094650206,531.5672040000001,13507.001628009328,1452.0,428.187,180.0,287.22222222222223,10757.439404883582,5442.7415779312,93.84618745348999,436.3375,262.858024691358,533.95687,13239.871760057396,1141.0,408.864,139.0,230.22222222222223,10389.699731865603,4009.119956372799,79.901043115943,416.3105,245.20164609053498,513.057808,10804.231445462236,1035.0,293.25499999999994,93.0,189.33333333333331,7603.730770332336,3985.1757204287997,52.411207653036996,297.9382,253.35185185185185,368.02629,7276.8235918172295,399.8787878787879,6.152890909090906,0.7673034538139155,21.333333333333336,141.48222970445192,68.96292266373328,1888.6157299805773,8.704298055234545,5.832054545454543,91.6763543066698,4.109168969696969,1647.4759490404851,-7.481175390266316,-0.5095785123966945,-0.4769872145486672,5.444444444444444,30.882506320216773,2.649708440100121,-31.347492061733426,0.7056676393273491,-0.46934710743801605,-7.982581002554398,-0.32692254453627184,101.92387073209912,57.53535353535353,1.3574545454545452,0.12071400430069872,-3.5555555555555585,-0.8085796233944187,-16.47145358031453,269.27805713870544,-0.28146517363354306,1.278463636363636,22.7935512725179,0.8493701717171709,-2.0160051654687194,-97.9247015610652,-0.9673049586776867,0.007268275661389672,-2.555555555555557,-47.57061070865783,-14.857227896217864,-465.79668684631406,-2.3947419522547007,-1.0510338842975184,-22.109937936402165,-0.5448976932966019,-689.4271512722689,22.881542699724527,-0.4644793388429742,-0.21801885775604224,-1.9999999999999996,4.97847158453218,-1.1941678603026733,118.70936407349771,-1.0001260015117852,-0.013905785123968006,-4.951610505856664,-0.001484203856749522,22.44489055486318,51.18916437098255,0.8948429752066116,0.4186630425506698,-5.1111111111111125,24.776984207960638,-3.141031574210438,241.98472668043075,0.3541878382052397,0.8103876033057839,4.061021180196475,0.30377960789715264,158.0604642794524,-0.7235996326905405,-1.6208512396694215,-0.1598962142775391,-3.888888888888889,-44.21812966930811,-8.573619088060548,8.502155246619756,0.414482373394256,-1.4114925619834713,-15.029603583184668,-1.3278889687786957,91.03385754865587,-281.43526170798896,-4.204809917355371,-0.35053533664901215,-4.333333333333332,-58.27303336394246,0.2084045307629916,-1330.3852858763955,-1.3335766044329516,-4.45538595041322,-56.46797567897457,-2.878019699724516,-577.0401790739904,237.59320477502297,5.039933884297519,0.43222592631265827,-4.222222222222221,34.29450509585189,-8.454392537516219,1104.6580836341082,-1.174131554410034,5.207878512396692,65.70829332243889,3.694895224058769,123.17799123381491,0.7349153066909883,0.5769264087162517,0.4509159166946076,0.303467498940752,0.3052745160509305,0.1675853596057601,0.1866241755399574,0.08970924611655144,0.12115667072163318,0.048086069395498046,0.07778830401583946,0.025577543398869536,0.054740037072420686,0.01445388352989422,0.032058684834030064,0.007035923646552192,17.001102654007212,5.686597993099243,4.107712072850503,2.1857006949498388,0.435371389303266,-0.3341474197319417,3.2308839508502296,0.9727890903949942,7.0040594351617385,0.7740049742634043,17.4247706677956,10.947733730460842,35.45051721027596,11.698206781330512,2.2078694499489733,0.5458570542699583,3.988664119694821,2.2354635724626974,8.001918380159042,1.2989480182245758,4.009943723667538,2.431308172672287,22.455862004185516,13.304121437112968,0.32667526432403826,0.6778073911393512,0.8156164182766584,0.9033417789533593,0.9033417789533593,0.9033417789533593,1.9687746380415059,638.0669275170543,0.0,1.0,1.0,0.0,10.0,1.0,2.0,0.0,0.0,3.29421440212006,1.413005772214869,0.6746867426209207,0.20469356067161737,0.20469356067161737,0.20469356067161737,-36.572936914123034,864.709774070476,62.59638046490625,26.203326486984125,54.23835662054351,,9.0,298.0,11.786526128997744,9.184952231746642,17.130841211350898,11.250837766380558,5.563451491696996,12.13273413692322,18.19910120538483,12.990104268152233,5.316788604006331,16.70746728507322,9.566666666666668,27.0,15.0,1.5,12.0,0.0,0.02166666666666659,3.0,0.21762452107279673,0.09481481481481469,-0.12280970625798204,0.05333333333333323,0.17452631578947342,0.0,0.6555555555555557,0.8866666666666664,0.43793103448275894,0.560740740740741,0.8333333333333331,13.698344646001285,0.4449793117863372,0.6169793117863371,19.32346707653826,5.56728979270434,3.9019444578824185,33.021811722539546,9.469234250586759,0.5394736842105265,0.22648083623693374,0.0,0.3658536585365853,0.13333333333333333,0.5369353033099182,-0.9377868878763899,-0.08291015478202837,-0.028417784481102725,-0.06698477770545642,0.4630646966900818,0.8087678312777367,0.043523021968485225,0.024508116099325353,0.04256672796198614,-5.111011438475034,0.5884136012695469,0.6696498302697763,1.542485881062511,0.8602941176470587,0.510170795449561,0.9175041947996243,0.5888949401559033,0.8072892549936194,0.6513374085429762,0.6488739119175613,0.6762972720761155,0.8098622291227618,0.5979993937556836,0.5019913772978851,0.6799057897409915,1.3090909090909089,0.8190088370149823,1.0800802691125577,0.6019019461122155,0.9339760477149482,0.5024818947322479,0.4593341191783164,0.5084087488131495,0.9241682487246946,0.9877278829082407,0.9656636116145172,0.8969173355119234,1.0714285714285714,1.0586830075013014,1.1176071598594872,0.9884641254299625,1.0599423394511729,0.9670809021881309,0.9702449811428332,0.9491924662467851,1.1063105644251259,0.9864322521976356,0.9299251497448354,1.0052699512795678,1.02,0.9276972462994008,1.031542546562722,0.9854432398600989,1.0175387856034297,0.9142557381410367,0.7953134573077477,0.8669446303143975,0.9781399912612204,0.7990656705240446,0.7811268404243873,0.6957509715147853,1.1691176470588234,0.8613443822722143,0.9177563727057704,0.8007044868874793,0.9245095726392345,0.7865576398627466,0.8333824329010012,0.807538063635744,0.9307683436295165,0.9698461315731135,1.155867780412142,1.213741633904737,1.052238805970149,1.142657602195326,1.0209323196612492,0.9658159251975482,0.9405991598286839,1.1367500094573941,1.1417326104849823,1.191571985229596,0.928979600911699,1.6023903347334691,1.6904852665603711,1.3262397681673501,0.9642857142857143,1.3250823299741545,1.0674437940726174,1.5978136355902226,1.1237021754400494,1.7192645175548442,1.759092632072634,1.7381247107759676,1.1521744973023014,0.6828156094732264,0.5651185913829253,0.7001440386897915,1.0271739130434783,0.914905245760438,0.992578737452489,0.6881979823539196,1.1010030751641549,0.5160624483822472,0.7165765684078236,0.5210769883386542,0.9702009141633223,5.0,0.0,2.4444444444444455,1.375,1.4266666666666667,0.7430555555555556,0.3844897959183674,0.4600694444444444,0.09070294784580496,0.046875,3974.84396980286,4341.5819487139315,1893.5286833038224,1754.4021949380742,11.083151858363532,0.4488620171561407,6.108345958770648,0.8144276590047796,1.0,0.13333333333333333,1.7501797172383935,3.6313883471435844,4.369707376737533,4.839700558686836,4.839700558686836,4.839700558686836,0.23809523809523814,0.0,0.08429118773946365,0.04741379310344828,0.054871794871794874,0.028579059829059828,0.015379591836734693,0.027062908496732024,0.006478781988986069,0.015625,0.5177973559614575,16.3718820861678,7.319857312722949,4.496326530612245,120.55774333440655,1.0,3.905156312351064,83.41464731349733,,63.20472745305049,63.202277160855445,62.874894370100655,63.119366462905305,86.45404595439665,63.66096525306261,64.14828660657676,77.15303288713051,-0.018158354581602306,-0.0803835004388182,-0.6033573503748662,0.24770220588235292,0.2118583893780369,0.03729215264644185,-0.01610995107056908,0.07868672515723521,-0.07811017150100372,-0.08451251434414796,-0.07721930587895062,0.0600470737590008,0.08632919066383751,0.13237236598317426,0.09439342703386863,-0.10000000000000007,-0.003429036812962988,-0.1433070375566608,0.08554775421937466,-0.01940180622360079,0.1315279505429242,0.14917838811262316,0.12402072214321345,-0.000734215938014587,-0.11544623912007969,-0.07411397366584739,0.004465603269171479,-0.05647321428571432,-0.15850856390384974,-0.10156358593813028,-0.11627027307369603,-0.1297002665036935,-0.08495932243699272,-0.11369623644571694,-0.06251393968461816,-0.19728097227619582,0.025177326462564424,-0.033215428667677224,-0.1250200255659515,-0.04124999999999999,0.01548270409485377,-0.007619077588912791,0.027656298400562485,-0.05055610893293656,-0.0010491234961639152,-0.023765218840278674,-0.0001589250044925626,0.005994474061907601,0.062123326141611535,0.0705785359275489,0.26479056078292296,-0.11626838235294121,0.08498681929366719,-0.022103531686739685,0.06217980849902803,0.019747172412112376,0.06743358345386388,0.021497251993648308,0.03587646501294636,0.046559595356797726,-0.0008912696294218495,-0.1297487192372491,-0.10263846906577276,-0.08978544776119403,-0.15393508313970597,-0.061233299705416244,0.002217300553565786,0.023453704521768173,-0.11920546164157754,-0.0807475452836995,-0.15916475327311483,0.0272159187844633,-0.3686578905584665,-0.3579649815122278,-0.23929743422353958,-0.10639880952380949,-0.21574419572737843,0.0015829415837115902,-0.36898373343807667,-0.0802523215196499,-0.40016319718623267,-0.32264004905722454,-0.36687080515413817,-0.18346801456843695,0.4262474135772369,0.5876269864854814,0.4041101594279855,-0.14198369565217386,0.17389165970927728,-0.08794737020545171,0.41960473530779746,-0.09676963747669574,0.6406124513710447,0.5141844765703611,0.6450661249910948,0.053637699445407826,5.733565171428046,15.99827581857074,7.087344141291053,21.13003504497673,36.96958740390901,44.21884493642484,44.69259806382973,44.69259806382973,44.69259806382973,39.87513787426883,30.86047230230856,2.06571445037165,3.4033337176735365,3.5456174039150987,9.014665571960286,2983.330762440735,2717.5148080583804,1137.5335018585038,36.0,29.0,35.0,44.0,54.0,52.0,48.0,54.0,41.0,293.06188455600034,21.0,4.61512051684126,5.43372200355424,6.300785794663244,7.144407180321139,8.014666370464942,8.867709208039386,9.738789780495722,10.595759350060119,11.467080459559904,0.7676767676767676,1.0072727272727273,1.1244785958929455,0.7410439501164336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7105663037561242,0.9971479500891266,1.024774327396323,0.6802076679680996,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.423315998847038,5.817220841045895,0.0,0.0,0.0,4.794537184071822,4.39041504767482,0.0,0.0,35.36349258731434,30.686289896772447,5.687386274683562,17.130841211350898,265.83375815470794,-464.2932048155819,-41.048368209406966,-14.069491055017634,-33.16380034397014,229.2608212405849,400.41656925489417,21.548012255499284,12.13383543196649,21.07455627657338,0.4444444444444444,0.7187580255161339,0.2753908636933813,111.04282080199829,0.17600138841549942,51.54155738236707,0.281241974483866,5.0,0.19047619047619047,0.34695538766922945,0.7198859290569122,0.8662501924598375,0.9594215765405637,0.9594215765405637,0.9594215765405637,4.158220000000002,,1.623249299719888,1.2639480001621826,1.0568820633262312,1.6700050768749024,-4.447030060595236,1.2309605280870368,1.1605367662118318,-1.5806846199225781,77.21150000000003,14.291479626587348,0.0,0.0,0.0,13.344558822616634,5.316788604006331,58.36495954895087,0.0,0.0,3.7612001156935624,0.0,5.0689042022202315,0.0,6.5638555265321274,0.0,8.152198015861787,0.0,9.78824503702385,25.333333333333332,9.664147324053078,0.0,0.0,0.0,0.0,0.0,1.9482488767111799,0.0,33.24,0.0,10.890627502029618,0.0,0.0,0.0,0.0,0.0,-0.9460365226337448,37.1077936644672,5.316788604006331,15.765187597041944,0.0,11.075832682792555,11.21535880699783,12.740958040736519,11.126902983393991,36.39820241076966,5.022633313741326,0.0,0.0,24.45445035384231,23.448688023952098,24.306642251474415,166.82929462699468,,126.247129976129,126.27815952169468,125.64410053386868,126.07173241812312,175.1316069390909,127.19883445331652,128.18051953653233,155.09640808422236,24.306642251474415,166.82929462699468,,124.7862056063811,125.14060632154866,124.69290667687514,124.56872784893571,177.35512196938862,126.09096997803822,127.13603644694173,155.88675039418368,4.754338241024662,120.04478933292827,,91.98324751638232,91.30203234394162,90.37287146698871,91.89814952431101,127.92207205212554,92.18112218031581,93.03195037923578,114.4908209326992,1.2153321125737206,8.341464731349735,,6.31235649880645,6.313907976084733,6.282205026693434,6.303586620906156,8.756580346954545,6.359941722665826,6.409025976826617,7.754820404211118,2.37716912051233,83.41464731349733,,63.20472745305049,63.202277160855445,62.874894370100655,63.119366462905305,86.45404595439665,63.66096525306261,64.14828660657676,77.15303288713051,32.90588235294118,0.0,1.866279114526469,5.949944465440496,13.746347316704458,0.0,8.92960362951765,33.81755280407866,-0.14277281746031778,2.8713888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.446853042947286,355.8532023299015,57.75593066886699,119.83581545573828,144.20034343233857,159.7101184366656,159.7101184366656,159.7101184366656,434.0,113.17804066399995,139.24137706539133,53.33440289733156,49.33,49.33,0.8,7.922385688005068,5.392317422778761,4.058329670247369,4.407312277869209,,4.405647903281537,4.403671792876707,4.400596509877445,4.405738453831779,4.386055039163177,4.404416798943899,4.404923488847356,4.404031777982801,0.20291648351236846,0.22036561389346043,,0.22028239516407683,0.22018358964383533,0.22002982549387226,0.22028692269158895,0.21930275195815888,0.22022083994719494,0.22024617444236777,0.22020158889914004,2.0939186582516305,2.1764122234213388,,2.1760345127376985,2.1755858718650467,2.174887282722013,2.176055065814496,2.17157737930572,2.1757550359376383,2.1758700706365968,2.1756676151034284,206.10999999999976,110.58229211108568,102.20134102736965,,101.97283862747175,102.40278538938195,102.69680362040022,101.93903167601732,103.44863748493687,102.3156525038453,102.27730133267846,102.33869362335643,5.529114605554284,5.110067051368483,,5.098641931373587,5.120139269469098,5.134840181020011,5.096951583800866,5.172431874246843,5.115782625192265,5.113865066633923,5.116934681167821,5.398907149334902,5.320091979841991,,5.317853670417318,5.322061093863593,5.324928173547603,5.317522086466723,5.332222413905331,5.321209847716008,5.320834945541746,5.321435018791478,13.746347316704458,10.890627502029618,12.043446222110244,2.1925081359704386,-1.4327494855967076,9.664147324053078,-0.14277281746031778,1.866279114526469,0.0,252.88394826034013,131.6128526826751,-229.86904895426306,-20.32282459349945,-6.96572875618979,-16.41921778244736,113.5057898639268,198.24407293815798,10.668304064441035,6.007396149641151,10.433898575692526,808.0,29.0,1.6377440426709953,0.6861651356041183,0.0,0.0,0.2757834230632086,0.08401725510843756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.048112522432468816,0.34846171252933794,0.1014925162411285,14.698306133819765,11.538528174325034,9.46923425058676,6.372817477755792,8.852960965476983,4.859975428567043,6.531846143898509,3.1398236140793006,5.33089351175186,2.115787053401914,4.20056841685533,1.381187343538955,2.8464819277658755,0.7516019435544994,1.538816872033443,0.3377243350345052,2.9664390883579137,1.1364166247119065,4.497105991301361,1.413685963220001,6.644791235374013,1.7180901684255043,62.38314147352865,39.108038178958076,25.67004758017134,23.904193836086733,23.904193836086733,23.904193836086733,100.0,114.0,39.159308999999986,16.102690999999997,0.3939393939393939,61.05,7.777777777777777,4.416666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12.0,12.0,33.0,0.0,0.0,34.0,12.0,1.0,7.0,27.0,13.0,21.0,21.0,0.0,0.0,0.0,15.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,2.0,2.0,0.0,20.0,5.0,0.0,1.0,2.0,0.0,2.0,4.0,0.0,0.0,2.0,0.0,2.0,3.367295829986474,6.459708817088444,3.970291913552122,4.442651256490317,4.971547905388209,5.48945412172716,5.564041365397364,5.709288124048888,6.131226489483141,6.2777002615881745 +969472,CN1CCN(C(=O)O[C@H]2c3nccnc3C(=O)N2c2ccc(Cl)cn2)CC1,0,31.90909090909091,6.587234090909089,3.7045454545454546,9.67283950617284,165.70585909151438,128.89877140909093,1.566175713237113,6.676329545454544,4.988756737470729,8.085073840909088,235.0281662204701,29.48936170212766,6.663829787234044,4.404255319148936,9.023640661938535,150.7509464514531,114.18039929787243,1.7738768780851077,6.804702127659575,3.3479555205323526,8.034971276595739,269.6544921050115,25.98780487804878,6.766096341463416,4.0,7.873983739837399,163.64000096435723,99.18936489024388,1.5312553143895489,6.846568292682925,3.4247214694369155,8.185911219512192,229.08933874843316,23.106796116504853,6.569725242718446,3.466019417475728,6.672060409924487,162.27907509259484,86.41227556310676,1.4073348413445628,6.667247572815532,3.2899436653481944,8.05819153398058,205.2551271997069,19.9009009009009,6.56117027027027,3.027027027027027,6.307307307307307,165.38937634939563,73.37346218018016,1.2125583362326937,6.613456756756758,3.813109405701998,8.09462744144144,176.77310615541845,21.306122448979593,6.637885714285714,3.183673469387755,6.9274376417233565,167.2535832934727,80.1069778163265,1.2211778307502754,6.6803622448979585,3.9084152179390284,8.159922999999997,184.9191571807853,25.746987951807228,6.808600000000001,3.5542168674698793,7.258366800535476,161.48619434233424,97.96649879518071,1.4694126610836513,6.886591566265058,4.581436858545292,8.256626746987951,221.84723898418696,24.032967032967033,6.67844945054945,3.21978021978022,4.511599511599512,163.68126380303394,89.64075408791207,1.438920576674681,6.78686153846154,3.5264324153213034,8.207080791208794,208.7119704381787,19.752808988764045,6.442034831460674,2.898876404494382,3.3358302122347068,162.456635892477,71.27766979775281,1.372759565974135,6.540055056179776,3.1608637351458824,7.968086943820227,188.53862458391933,10.832644628099173,0.14832784090909087,0.02669590973399769,0.6420454545454546,4.530481583511886,1.6184866613748603,50.812629185950435,0.22734363802360066,0.1424964359504132,1.6681606523836692,0.09841247262396693,46.08885379819739,0.4565236504308068,-0.004801196808510645,-0.01608749373857978,0.20611702127659576,1.3908833662218572,-0.8957891995033034,2.1258166815544253,-0.04866459509372158,-0.000689569412695644,-0.026435175185160222,-0.008006469722612979,-4.390665424657942,0.5952932876436206,0.010621493902439025,0.002556304665860778,0.019817073170731708,0.5287557765384816,0.18516699882467588,2.882117672142714,0.04200996230042368,0.008379256954243092,0.12614841954948655,0.008220801211953217,6.2586440503626335,-0.3441185910294471,0.007516201456310675,-0.0021942579550200004,-0.029733009708737865,0.6497184753289488,0.014757240587218673,-1.7272914723581778,-0.03697821263774128,0.006453674376153411,0.02833497329660189,0.0018948978526438166,-4.278702529575018,0.6517943563398108,0.014477421171171158,0.002240838514771358,0.1143018018018018,0.957971516052324,-0.09443351395778565,3.096539934033206,0.0056061795888349905,0.01266376060978333,0.06045182965816772,0.005390908006663676,2.278118503485683,2.0481531455557427,0.0006401785714285567,-0.0016320973745011715,0.04974489795918367,0.8059725267517475,0.21223947796806586,9.867563752825097,0.054656870508166915,0.00523028019058862,-0.04782311927423757,-0.004597152818772154,13.55181308338712,0.47184606193368506,0.007259262048192763,0.003975606589521717,-0.1302710843373494,-0.40087223703507013,-0.07820354348038762,2.2741183940057765,0.012991638365952133,0.005636258463606492,0.39660063744455476,0.0023850095775664374,1.6580943731044406,-1.4555217509762965,-0.05031737637362637,-0.0017623739699372727,-0.17925824175824176,-2.379404265767901,0.061028546283087425,-6.842505852783575,-0.0019989652408469835,-0.04256154584052309,-0.4098341690057458,-0.021895455141449475,-3.7073569285414827,-2.449089980499582,-0.04462773876404492,-0.003192148033141569,-0.15379213483146068,-2.282660047300837,-0.12593163954025083,-11.667205314142445,-0.043961923862619365,-0.04138903043458071,-0.5216535135954702,-0.018919383757776943,-14.86257138300616,,,0.46719576719576716,1.3148148148148149,0.5740740740740741,0.018518518518518517,0.7407407407407407,-0.16666666666666666,0.7786182623358359,0.013796283952403822,0.026537024693144562,1.049097887521997,0.267126428260826,0.21590001231910708,1.8277161498578327,0.48302644057993305,2.0579254171792503,1.311539929637948,0.4715116298301931,0.2095718770120056,0.0653019806991037,0.7463854875413022,8.820569683727284,1404.0,289.8382999999999,163.0,425.60493827160496,7291.057800026633,5671.545942000001,68.91173138243298,293.7584999999999,219.50529644871207,355.7432489999999,10341.239313700684,1386.0,313.20000000000005,207.0,424.1111111111111,7085.294483218296,5366.478767000004,83.37221327000006,319.821,157.35390946502056,377.64364999999975,12673.761128935541,2131.0,554.8199000000001,328.0,645.6666666666667,13418.480079077293,8133.527920999998,125.562935779943,561.4185999999999,280.8271604938271,671.2447199999998,18785.32577737152,2380.0,676.6817,357.0,687.2222222222222,16714.744734537268,8900.464382999997,144.95548865848997,686.7264999999998,338.86419753086403,829.9937279999997,21141.27810156981,2209.0,728.2899,336.0,700.1111111111111,18358.220774782916,8144.454301999997,134.593975321829,734.0937000000001,423.2551440329218,898.5036459999999,19621.814783251448,2088.0,650.5128,312.0,678.8888888888889,16390.851162760326,7850.483825999998,119.67542741352699,654.6754999999999,383.02469135802477,799.6724539999997,18122.07740371696,2137.0,565.1138000000001,295.0,602.4444444444445,13403.354130413743,8131.219399999999,121.96125086994306,571.5870999999999,380.25925925925924,685.3000199999999,18413.32083568752,2187.0,607.7389,293.0,410.55555555555554,14894.995006076088,8157.308621999999,130.94177247739597,617.6044000000002,320.9053497942386,746.8443520000002,18992.78930987426,1758.0,573.3411,258.0,296.8888888888889,14458.640594430453,6343.712611999999,122.17560137169801,582.0649000000001,281.3168724279835,709.1597380000002,16779.93758796882,476.6363636363636,6.526424999999999,1.1746200282958983,28.25,199.34118967452298,71.21341310049385,2235.755684181819,10.00312007303843,6.269843181818181,73.39906870488144,4.330148795454545,2027.909567120685,21.45661157024792,-0.22565625000000034,-0.7561122057132496,9.6875,65.37151821242729,-42.10209237665526,99.91338403305798,-2.287235969404914,-0.03240976239669527,-1.2424532337025305,-0.37630407696281,-206.36127495892327,48.81404958677688,0.8709625000000001,0.2096169826005838,1.625,43.357973676155495,15.183693903623423,236.33364911570254,3.4448169086347415,0.6870990702479336,10.344170403057896,0.6741056993801637,513.208812129736,-35.44421487603305,0.7741687499999995,-0.22600856936706004,-3.0625,66.92100295888173,1.5199957804835234,-177.91102165289232,-3.8087559016873516,0.6647284607438013,2.9185022495499946,0.19517447882231312,-440.70636054622685,72.349173553719,1.6069937499999984,0.24873307513962073,12.6875,106.33483828180796,-10.482120049314208,343.7159326776858,0.6222859343606839,1.4056774276859496,6.710153092056617,0.5983907887396681,252.87115388691083,200.7190082644628,0.06273749999999856,-0.1599455427011148,4.875,78.98530762167125,20.799468840870453,967.0212477768595,5.356373309800357,0.5125674586776847,-4.686665688875282,-0.45052097623967113,1328.0776821719378,39.16322314049586,0.6025187499999993,0.32997534693030245,-10.8125,-33.27239567391082,-6.4908941088721726,188.75182670247943,1.078305984374027,0.4678094524793388,32.917852907898045,0.1979557949380143,137.62183296766858,-132.45247933884298,-4.578881249999999,-0.1603760312642918,-16.3125,-216.52578818487902,5.553597711760956,-622.6680326033054,-0.18190583691707551,-3.873100671487601,-37.29490937952287,-1.9924864178719022,-337.36948049727494,-217.9690082644628,-3.9718687499999974,-0.28410117494959963,-13.6875,-203.15674420977447,-11.207915919082323,-1038.3812729586775,-3.912611223773123,-3.683623708677683,-46.42716270999685,-1.683825154442148,-1322.7688530875482,0.7024404017526436,0.5679425408630729,0.4347237965219398,0.2940983205235633,0.2782646016439201,0.15727528751401962,0.17484244804654336,0.08088877349662887,0.10739534057678479,0.03939006902149282,0.06919889171690466,0.020964795470333225,0.043949963126254384,0.010391644410118717,0.027194393828245917,0.00488770397871325,17.00110335627257,5.733313367274865,3.5562460511027076,2.2242982780584195,0.5008083747581867,-0.4495463125802056,3.249503176351669,0.9772634039342026,6.0288617803961015,0.7740000300638938,14.554576648543032,10.997306387942633,35.450517526955764,11.747918451295375,2.2075763625306926,0.7403943274256887,3.5025451789569275,2.274390630042988,7.009359377726361,1.282422224747746,3.715222440360195,2.4698484301572696,22.455862705396292,14.700685677209115,0.31832945615326613,0.6558338958838775,0.7919657222071456,0.8391392741467122,0.8470015328033066,0.8470015328033066,1.472084789096586,869.2273935019915,0.0,5.0,5.0,0.0,5.0,0.0,0.0,0.0,0.0,3.61905452520459,1.6678199542103216,0.8807928977764439,0.6080656250491705,0.5626110795946246,0.5626110795946246,145.96061322050002,1601.0406037398643,61.67919705335484,36.387286448633276,78.75435470260139,,13.0,580.0,18.22832097102479,9.589074368143644,5.693927994848461,29.623936898249966,13.08951281182515,23.490440445689707,17.032643867773697,7.04767198267719,19.8518452936921,16.337802844032566,12.614285714285714,35.5,15.5,0.5,20.0,0.0,0.03280423280423282,-4.5,0.22385714285714287,0.04414285714285704,-0.17971428571428583,0.0,0.1945882352941175,0.0,0.667857142857143,0.8994708994708993,0.4440000000000002,0.623714285714286,0.8994708994708993,21.02269308306757,0.3724996667149032,0.7164996667149032,28.325642963093916,7.212413563042301,5.829300332615891,49.348336046161485,13.041713895658193,0.5194117647058825,0.14911287278218197,0.0,0.37259343148357865,0.35294117647058826,0.37907557924138974,-1.0056259819694897,-0.06062229234291793,-0.022855135953852034,-0.07735584476688383,0.6209244207586099,1.6472117027528004,0.04157680112438141,0.03743662960801819,0.05313586137912259,-2.9919801110049606,0.553769767998669,0.7368297084218746,1.6941426982878727,0.7286763321408398,0.4552473097438358,1.7912538021495696,0.5587528870602126,1.1549905709151738,0.6730181222623043,0.5341983541978608,0.7651701261347059,0.9791358018923414,0.6920190916576342,0.8964673353740051,1.1334734278647365,1.0951867040794303,0.8495267801343371,1.0370728602304782,0.692220389693329,0.6865235415409157,0.8636137147221924,0.5504962592821384,0.8181738643461174,0.7296887054846036,0.9113519829490639,0.8975815310356465,1.3092593243222352,1.1083426411203712,0.8167422910692873,1.0471294416625083,0.9142400980326743,1.1069495484851766,0.8868751258867288,0.779738751231865,0.9140909901652706,1.0251006921316972,0.7863380259908965,1.1374415590506326,1.142024795086351,0.8022004305190146,0.885178642521855,0.9672870620717658,0.7864422176904513,0.9074241702730124,1.0934019895248808,1.3296460089443058,1.1723579385180052,0.9089557056178695,0.6190810293218948,1.3153970674791249,1.3777669011810534,1.0018060321473723,0.9738089990884792,0.783548647034848,0.614898147695489,0.6614249240199243,1.2120164477576014,1.5327956858817855,1.3433393905501902,0.643473161358805,0.7293327419921916,1.097740044862104,1.1766823484980182,1.3020577886768312,1.1270499846050834,1.1150983496924993,0.7280187724080687,0.8521673011883175,1.043289001661769,1.153905251125939,1.11967116234647,0.84239877630211,1.1257113094801443,1.4070859098726571,1.1531978107352978,1.2544977146747058,1.5276498484202876,1.008931097164999,1.12268748327225,0.9626645738903905,1.3481990630657896,1.4466033594593426,1.3185851060787508,0.9827170512561346,1.0770111888081917,1.205628561122279,0.9131756673501453,1.0860097444565975,1.4130702486158992,1.1225020722669659,1.0825142076397738,1.133868756330137,1.1826702082559462,1.4299247302599718,1.06856605781007,1.2650631449202219,5.0,0.1072339557188042,3.555555555555557,2.6111111111111107,1.6366666666666672,1.2816666666666665,0.7552380952380953,0.46797052154195007,0.2526927437641723,0.2500077160493827,5957.296791781904,6454.642829271068,2755.90870742465,2585.6067307107933,12.2961375664829,0.41980676683251306,7.134135810169909,0.7235637074576593,1.0,0.35294117647058826,1.8403770934327075,3.7916116644269757,4.578638720860853,4.851365993588127,4.896820539042673,4.896820539042673,0.16666666666666669,0.008936162976567017,0.08268733850129201,0.058024691358024696,0.039918699186991875,0.031260162601626014,0.017981859410430834,0.012315013724788158,0.008713542888419731,0.011905129335684893,0.4384092666504919,20.28,8.788534342888047,4.302212008043665,160.07467254360114,1.0,4.240405299011803,137.1912205471107,,105.390559034187,102.75217020820651,102.93929218826497,105.40261212580126,184.14030947400494,104.9559963521571,106.62228895402242,154.09368072553536,0.042143323823862384,-0.032368817472731,-0.6026201728608667,0.3210318207493881,0.307005632973722,-0.5534733284377857,0.04183638429286805,-0.21405743093048277,-0.004839204630602865,-0.015846900085664084,-0.08135624996646124,-0.09526523362639294,0.0549536431851063,0.07160822834971936,0.09575641704411673,0.030865529894236996,0.11671072198214452,0.11440749142002912,0.05672049878772289,0.18478617948421588,0.0588032739089626,0.07562126547537881,0.08353413945166092,0.13579517680709646,-0.031766812523031165,0.0506728973484978,-0.08219453754840864,-0.04630982043130853,0.14341046605144955,0.009117925367814153,-0.033993349685510266,-0.16265338656145967,0.04529007573494119,0.016985758089973806,0.019254651388388565,-0.09283595006093133,0.060169458033276446,0.09760420621267096,0.08393939510207486,0.17802758510723113,0.21145026160987831,-0.058346797790453805,0.060940360371854005,0.024659496247935515,0.08887071824161373,0.03623861381203714,0.054778707037087475,0.04942883833606606,0.1890723102134235,0.004315970403836173,-0.06113660822064693,0.07747877912226839,0.17789996756304724,0.13113452401750053,0.19419510288897732,0.24041521893167273,0.036704638650812894,-0.028668173659354767,-0.04671311162293248,0.2940366697493604,0.04355779019185649,0.048940657422782245,0.14892193707333057,-0.2029000959590575,-0.08848336090670667,-0.048318929866221966,0.04475498375971784,0.05714537903454973,0.039553680244801576,0.23774726785327532,0.024234830341876835,0.035976038379355216,-0.13436439585590834,-0.33923082858372855,-0.06601662904534247,-0.2791986774287659,-0.5251989709940421,0.03770716666348386,-0.13466151943728807,-0.008792703671960549,-0.29868498504295166,-0.24568027570973175,-0.22248658688936498,-0.08043933886432392,-0.22608421715845844,-0.30087230077997934,-0.11957442413270955,-0.2395346524808591,-0.503844901523999,-0.07780826530462434,-0.22961231294381432,-0.19337213147814433,-0.29045660095655673,-0.3127117959832398,-0.19224579215754203,-0.3224764809314364,7.088063927377967,14.775478356981877,7.557896439894795,21.016829608038435,41.47524935342503,45.85513586814272,46.63018132268818,46.67599950450636,46.67599950450636,55.56398626383976,35.411578100224595,12.730814005415214,5.658440679324151,1.7631534788757999,20.15240816361516,6523.637383196077,3739.2487551753597,3156.080912072347,164.0,43.0,59.0,80.0,106.0,117.0,134.0,149.0,160.0,388.1050660840005,30.0,4.990432586778736,5.860786223465865,6.7580945044277305,7.653020413804189,8.560827228436299,9.467228129254554,10.381676341775822,11.295005745656221,12.213926721369312,0.7651515151515149,1.0150000000000001,1.1375948545695134,0.7357119610054422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6928617446924334,1.0024064171122993,1.029158114281931,0.6679220666876376,5.0,3.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,14.536682415501005,11.51179077268349,5.693927994848461,6.22790117073487,5.907179729351506,9.77851570501903,19.662403956816718,0.0,0.0,11.600939890232516,19.18040611960041,44.76955633848952,5.022633313741326,228.77969419196023,-606.9153942516735,-36.58676597206149,-13.793531687538033,-46.68579955782105,374.74030741246025,994.1252094881906,25.092431081293352,22.59375476109524,32.06855514478034,0.46153846153846156,0.7955986217086798,0.1577720952844293,49.68509571218578,0.15516243177838543,15.833946324492194,0.20440137829132,7.0,0.06666666666666667,0.33710049360267935,0.6945066683284847,0.8386658247042401,0.888621074953413,0.896946949994942,0.896946949994942,1.5679999999999998,,2.254201680672269,2.0877571456524273,2.00256098297623,2.263982575467063,-6.122028747979924,1.9363060285391138,1.7968465319911957,-3.02964257389704,96.38050000000004,14.325937321943691,0.0,24.75175502454258,0.0,6.22790117073487,38.126607337177965,47.13375415520069,0.0,0.0,4.110873864173311,0.0,5.4510384535657,2.3978952727983707,6.99117688712121,4.948759890378168,8.619208116822968,7.221835825288449,10.294887542319458,33.66666666666666,7.506945966658268,12.486020733659922,0.0,0.0,0.0,0.0,1.1784017444185757,0.0,44.660000000000004,0.0,25.49787014305773,0.0,0.0,0.0,0.0,0.0,-0.928271727415245,50.05417360105859,4.899909730850478,10.61239996190685,0.0,69.97887243116,4.736862953800049,0.0,22.410294344503612,30.723264851762448,5.022633313741326,0.0,0.0,32.37132628423946,30.48591676646707,35.48457709974126,274.38244109422135,,210.6639521824425,205.54019840518959,206.04106799933834,210.6849196238869,369.7281216335289,209.9150851764407,213.22202973482385,308.8606153563811,35.48457709974126,274.38244109422135,,208.96392457070118,203.99312637902915,204.58722168352443,208.97771066193087,374.4026476959897,208.47120553716917,211.87530374647227,311.21700402496776,4.89172286723287,193.58154526090823,,150.91409704523713,146.30577515002932,147.85696991022976,150.95225760520475,276.68167776667894,149.77313478449432,152.24297792377155,226.40421150808703,1.3142435962867134,10.16231263311931,,7.802368599349722,7.612599940932948,7.631150666642161,7.803145171255071,13.693634134575143,7.774632784312619,7.8971122124008835,11.439282050236338,2.5361558217332254,137.1912205471107,,105.390559034187,102.75217020820651,102.93929218826497,105.40261212580126,184.14030947400494,104.9559963521571,106.62228895402242,154.09368072553536,44.105882352941165,0.0,1.9980993740116562,5.891285904884008,0.0,0.0,0.0,45.282957028404965,2.639015928455864,0.0,5.678293414588058,0.0,-1.025896636432351,5.022679598557956,0.0,0.0,0.0,29.388570934256055,480.1596814500973,80.97659211103912,166.83091323478692,201.46010371787756,213.4601037178776,215.4601037178776,215.4601037178776,1069.0,134.18099789496873,123.36032015432325,77.03567585246763,91.75999999999999,91.75999999999999,0.8571428571428571,8.443822447443027,5.906890595608519,4.096137615070449,5.108064906349212,,5.11007331107496,5.105098765423763,5.1092620187011075,5.1101830129614125,5.120529956358205,5.106381059428731,5.106547355008839,5.114403286071483,0.1517088005581648,0.1891875891240449,,0.1892619744842578,0.18907773205273198,0.18923192661855953,0.18926603751708934,0.1896492576428965,0.18912522442328633,0.1891313835188459,0.18942234392857346,2.403296257612418,2.6240724179027453,,2.624465523712997,2.623491571241678,2.6243067477555835,2.624486991254119,2.6265097138064215,2.623742718780272,2.6237752844800157,2.6253125059940428,262.28000000000014,360.71980141630803,169.0593124300871,,167.59284040456956,168.19986813509877,167.84885604379852,167.57737765865974,166.81611581875129,168.06843208962184,168.04774240662846,167.4159402367245,13.359992645048445,6.261456015929151,,6.20714223720628,6.229624745744399,6.216624297918464,6.206569542913324,6.178374659953751,6.224756744060068,6.2239904595047575,6.200590379137945,6.881353256602635,6.123501387485683,,6.114789241795988,6.118404736572003,6.116315681064866,6.114696973777606,6.110143875886162,6.117623003342421,6.117499893033608,6.1137331489738935,5.678293414588058,43.006570475275616,0.43531611201746667,0.43718054505752924,-0.12085422440581128,3.1975875535399347,2.7819493610201294,2.639015928455864,1.9980993740116562,317.8330128511112,138.07312140579072,-366.2855797125177,-22.080845058159117,-8.324672266193582,-28.17581382403982,226.16327093080912,599.9744480253079,15.143784046440981,13.635782909666087,19.354014452429286,1782.0,45.0,1.8581953542233245,0.9027445781128534,0.0,0.0,0.47259616806887306,0.09807795732501441,0.0,0.0,0.0,0.0,0.0,0.0,0.06415002990995841,0.032274861218395144,0.48726983043494976,0.1595404987156788,0.8497464719601064,0.22977867299324314,18.965890847321376,15.334448603302969,13.041713895658194,8.822949615706898,11.965377870688563,6.762837363102843,10.315704434746058,4.772437636301103,8.591627246142783,3.151205521719426,7.335082521991894,2.222268319855322,5.142145685771763,1.2158223959838899,3.644048772984953,0.6549523331475755,4.520787007014466,1.6581207444573787,7.3006553690441836,2.002708277077173,11.852408664977986,2.503770286322718,87.99161746307907,41.52854141468826,31.213694308164733,29.051561252316645,28.894314360560408,28.894314360560408,146.0,175.0,50.91148099999999,29.586519,0.5227272727272727,198.1,8.36111111111111,5.861111111111112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,44.0,0.0,1.0,47.0,12.0,2.0,8.0,39.0,14.0,30.0,33.0,0.0,0.0,0.0,17.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,7.0,0.0,4.0,27.0,10.0,0.0,6.0,3.0,0.0,4.0,2.0,0.0,0.0,1.0,2.0,2.0,3.6635616461296463,7.109598582125644,4.204692619390966,4.727387818712341,5.2457074162757396,5.764014862696279,5.943783143036834,6.308383009395119,6.618446884785772,6.90569064909992 +54746,C=CCN1C[C@H](C(=O)N(CCCN(C)C)C(=O)NCC)C[C@@H]2c3cccc4[nH]cc(c34)C[C@H]21,0,19.228571428571428,5.902921428571427,3.0142857142857142,5.514285714285714,165.22441812703164,75.44825372857146,1.3756926497058997,5.971717142857142,3.4357142857142855,7.462117085714285,197.2984344209161,22.21917808219178,6.226479452054794,3.767123287671233,5.397260273972603,148.6506548832069,82.91720153424659,1.7201037732876714,6.36436301369863,2.689117199391172,7.64538126027397,244.6871618955298,17.918518518518518,6.120569629629628,3.511111111111111,4.192592592592592,158.7581193954747,65.28955172592593,1.4642229671650522,6.2150362962962955,2.4405349794238678,7.609200918518518,201.6361434189232,15.370967741935484,5.950080645161291,3.075268817204301,3.182795698924731,158.43137014408475,54.640237768817215,1.3436809582105804,6.045201612903227,2.3379629629629632,7.490551462365589,179.56711187596594,13.825892857142858,5.957704464285714,2.7767857142857144,2.8125,162.94950790520508,48.40731328125002,1.2199320885796698,6.028310267857145,2.599826388888889,7.533509803571428,160.54582075997297,13.448888888888888,5.911457333333335,2.6933333333333334,2.5244444444444443,160.78756322989696,46.50085950222222,1.22277824439068,5.991971555555555,2.4208641975308636,7.48852864,159.2496657473572,13.055555555555555,5.960870940170941,2.4957264957264957,2.628205128205128,164.79820751340088,45.11700545299144,1.1568446087561541,6.022722222222222,2.589268755935423,7.548908683760684,150.92921077639653,13.035398230088495,5.899044247787612,2.4469026548672566,2.3628318584070795,163.18027813412587,45.1514816017699,1.156837509155938,5.9701924778761075,2.6070550639134704,7.49020771681416,150.78702416784589,12.152466367713005,5.982003587443946,2.2600896860986546,2.0807174887892375,166.03869546043177,40.94495465022422,1.1113470009627577,6.036819730941703,2.703537618335826,7.5826894529147975,143.34548421281252,7.078367346938778,0.09137806122448977,0.013675409195072418,0.5895918367346938,3.3069387755102047,1.451413425493311,33.82455817244898,0.22174585213318965,0.08901338775510197,1.0991836734693874,0.04987747673469387,50.27721665385043,0.46722952194576456,0.0026143066815769987,-0.00763590810520623,0.2832065977075763,1.1732960581492868,-0.38251944270895516,2.188495179410126,-0.01626616967313707,0.004300741403410883,-0.020731836113440767,-0.0004280176348895904,-0.783706210662436,0.3239606953892667,0.007470139833711452,0.0017842145051646387,0.0647996976568405,0.31401360544217677,0.27295064715068407,1.561264721201818,0.026350389754468528,0.006170146636432492,0.06302679096329888,0.005588154164777007,4.371953447281409,-0.12091727013386015,-0.004217001316655601,-0.0017274416374519087,0.016475751590958956,0.014412991002852671,-0.11810056436993789,-0.5932974980250142,-0.01357132424862083,-0.003116813254333921,-0.029013849267305478,-0.002838324968180826,-1.812885878111779,0.05109693877551015,0.0035630420918368257,0.0012136903163319568,-0.012168367346938772,-0.10719387755102047,0.15798792562008288,0.2580401929209194,0.014358104429966339,0.002484571428571495,0.0651729024943311,0.003194483214285705,1.8463307401252063,-0.5050340136054421,-0.006249299319727822,-0.0010410527170489569,-0.03092517006802722,-0.30643083900226753,-0.18317640156137388,-2.426976468639455,-0.023096253016368817,-0.005936206802721034,-0.12950466112370873,-0.003907574258503406,-4.6617044622507375,-0.1327019012733298,-0.0012464067678352418,0.0008956342303814704,-0.03049537763823479,-0.07238444095586953,0.11341570599973726,-0.6050036679312745,0.008699657571215047,-0.001873546485260703,-0.07907446169350929,-0.00031837832199547387,0.6841171391683258,0.014426584793209338,-0.004203788152429055,-0.00016766536738756444,-0.07543254469929564,-0.20908795376557704,-0.17201808509602134,0.05122327104027525,-0.015282276795560759,-0.0026200881343687575,0.03772811189372506,-0.0035952835614954004,-1.5701751242031095,-0.8476178274000183,-0.015277516701747835,0.00040294877220001485,-0.0425066349409719,-0.46222384918092796,0.08954540530531689,-3.957456713256154,0.002597184831022188,-0.015325303193923223,-0.13856725948974505,-0.00794246584423905,-1.9697525257240558,,,0.4747474747474748,1.0227272727272727,0.36363636363636365,0.0,0.6590909090909091,-0.29545454545454547,1.1596833148500194,0.01439766232567919,0.024821904749921613,0.873951531306777,0.19819748509220103,0.2848052635631227,2.0336348461567963,0.4830027486553237,2.043948308459732,1.619316446578127,0.31679648933038995,0.10783537255121482,0.0,0.42463186188160473,6.447067506057158,1346.0,413.20449999999994,211.0,386.0,11565.709268892215,5281.3777610000025,96.29848547941297,418.02019999999993,240.5,522.3481959999999,13810.890409464126,1622.0,454.53299999999996,275.0,394.0,10851.497806474104,6052.955712000001,125.56757545,464.5985,196.30555555555554,558.1128319999998,17862.162818373676,2419.0,826.2768999999998,474.0,566.0,21432.346118389083,8814.089483000002,197.67010056728205,839.0298999999999,329.4722222222222,1027.2421239999999,27220.879361554635,2859.0,1106.7150000000001,572.0,592.0,29468.234846799765,10163.084225000002,249.92465822716795,1124.4075000000003,434.8611111111112,1393.2425719999997,33399.482808929664,3097.0,1334.5258000000001,622.0,630.0,36500.68977076594,10843.238175000004,273.26478784184604,1350.3415000000005,582.3611111111111,1687.5061959999998,35962.26385023395,3026.0,1330.0779000000002,606.0,568.0,36177.20172672682,10462.693388,275.125104987903,1348.1935999999998,544.6944444444443,1684.918944,35831.17479315537,3055.0,1394.8438,584.0,615.0,38562.780558135804,10557.379275999998,270.70163844894006,1409.317,605.8888888888889,1766.444632,35317.435321676785,2946.0,1333.1840000000002,553.0,534.0,36878.74285831245,10204.234841999998,261.44527706924197,1349.2635000000002,589.1944444444443,1692.7869440000002,34077.86746193317,2710.0,1333.9868,504.0,464.0,37026.62908767629,9130.724887,247.830381214695,1346.2107999999998,602.8888888888891,1690.9397479999998,31966.04297945719,495.4857142857145,6.396464285714284,0.9572786436550692,41.27142857142857,231.48571428571432,101.59893978453178,2367.719072071429,15.522209649323274,6.230937142857138,76.94285714285712,3.491423371428571,3519.40516576953,34.10775510204081,0.19084438775512091,-0.5574212916800548,20.674081632653067,85.65061224489794,-27.923919317753725,159.7601480969392,-1.187430386139006,0.31395412244899445,-1.513424036281176,-0.031245287346940098,-57.21055337835782,43.734693877551,1.008468877551046,0.24086895819722623,8.747959183673467,42.39183673469386,36.848337365342346,210.77073736224543,3.557302616853251,0.8329697959183865,8.50861678004535,0.754400812244896,590.2137153829901,-22.49061224489799,-0.7843622448979417,-0.321304144566055,3.064489795918366,2.680816326530597,-21.966704972808447,-110.35333463265265,-2.5242663102434744,-0.5797272653061093,-5.396575963718819,-0.5279284440816336,-337.19677332879087,11.445714285714274,0.798121428571449,0.2718666308583583,-2.725714285714285,-24.011428571428585,35.38929533889856,57.80100321428594,3.21621539231246,0.5565440000000148,14.598730158730165,0.715564239999998,413.5780857880462,-113.63265306122447,-1.40609234693876,-0.23423686133601532,-6.9581632653061245,-68.94693877551019,-41.21469035130912,-546.0697054438774,-5.196656928682984,-1.3356465306122327,-29.138548752834463,-0.8792042081632664,-1048.883504006416,-31.05224489795917,-0.29165918367344656,0.20957840990926407,-7.135918367346941,-16.93795918367347,26.53927520393852,-141.5708582959182,2.035719871664321,-0.43840987755100447,-18.503424036281174,-0.07450052734694089,160.08341056538825,3.26040816326531,-0.9500561224489663,-0.03789237302958956,-17.047755102040814,-47.25387755102041,-38.87608723170082,11.576459255102206,-3.4537945557967316,-0.5921399183673391,8.526553287981864,-0.8125340848979605,-354.85957806990274,-189.01877551020408,-3.4068862244897673,0.0898575762006033,-9.478979591836733,-103.07591836734693,19.968625383085666,-882.5128470561223,0.5791722173179479,-3.417542612244879,-30.900498866213145,-1.771169883265308,-439.25481323646443,0.7131759075173855,0.6103303197461678,0.4427525196007135,0.3366320317639835,0.2789597933853892,0.18860922983415782,0.16812137543318684,0.10019909034846419,0.10538021753776242,0.05676424009661292,0.06424644067937606,0.03227126235133398,0.040477726664523185,0.018139910137034622,0.025872548833703997,0.01014728171673994,8.023441153916833,5.6689859725890415,3.5466596231534977,2.1684774236757094,0.42864821495036576,-0.381431383395889,3.286559438103162,0.9572470509175914,6.02336901774591,0.9877952031288137,14.550425835590318,10.929862610585989,16.011210587058837,11.680388021147298,2.0172705777405002,0.7503534105416182,3.4923297182232553,2.2183098747979693,7.009363290581748,1.174300294779065,3.7049300066253172,2.4142047493064736,20.91960339245571,14.701786089303534,0.22705316209064705,0.5604924358724395,0.8180828374411216,0.8785410825944375,0.8785410825944375,0.8785410825944375,1.5118595778993908,1013.2759425858146,0.0,3.0,6.0,0.0,5.0,4.0,3.0,2.0,0.0,4.6938692524910905,2.585890139631138,0.9574221429807679,0.5752094643784327,0.5752094643784327,0.5752094643784327,334.8660625190764,1906.8274625805648,53.644839624002806,27.240392322579495,52.929571212902886,,13.0,738.0,0.0,9.589074368143644,23.774106334012366,25.676110046885686,37.868678398219444,21.413036928709264,0.0,27.095101271878885,51.075467047250896,0.0,15.666666666666668,33.75,12.0,0.0,21.75,0.0,0.025252525252525217,-9.75,0.09711213517665129,0.029880952380952563,-0.06723118279569873,0.028975468975468877,0.12576470588235267,0.0,0.5390476190476182,0.8070707070707067,0.4419354838709669,0.5091666666666657,0.7780952380952378,38.26954939005064,0.4751228567474133,0.8191228567474133,28.840400533123642,6.5405170080426345,9.398573697583048,67.10994992317428,15.939090705625683,0.5882352941176473,0.17021276595744678,0.0,0.36382978723404247,0.5384615384615384,0.27010369592733746,-0.707184566999869,-0.03496062413123489,-0.0101026366714267,-0.03367545557142233,0.7298963040726625,1.911011991073567,0.0386971856172606,0.02730017130105096,0.039000244715787086,-5.110110583924312,0.9232949384106678,0.8044228966085023,1.712799279675034,0.7672228623451257,0.5879826729743711,1.598036255208401,0.9299200504789131,1.258391610370462,0.7891354561800094,0.57873702665629,0.7868467551561541,1.1376372167231996,0.9624226348364276,0.9218189860593862,1.11197282569523,1.2817583939079267,1.021181326970021,1.016552856758098,0.9632320383648386,0.926588450373692,0.9225685534729625,0.522930964136559,0.8292030571327581,0.9384704105531111,1.003625823564644,0.9803311557310153,1.205818997760751,1.2269286168894247,1.0376519935340536,1.1869722133289562,1.0059025038559741,1.117440950947075,0.9706045283067097,0.8549844479315153,0.975961208851998,1.069735917382271,1.0121021220159148,1.1384334467702577,1.0192810495706146,1.1717938733125648,1.1530428443594174,0.9119516681388455,1.009074340768108,0.9274387791840556,1.1249003317203377,1.2634729120250034,1.176119138634887,0.9463936160180978,1.0735190097259057,1.147190959291126,1.1370317297449,1.1294334833275643,1.146593433720069,1.1506744475760047,1.0729803663985347,1.1259124815650132,1.132761119476945,1.3873354788133851,1.2123397106859846,1.0979365435786723,1.0506784329728622,1.280485556137283,1.1047138548781454,1.064559647114164,1.140708372101855,0.9162264109475411,1.0455393790472087,0.9220952886945724,1.253373939058574,1.5504508496756926,1.3535739262385593,0.9462320451450782,1.009923475974742,1.1915761576759991,1.2250640624077798,1.154026410828991,1.1375632696395295,1.1098629215907525,1.0081094402334985,1.0543998344192207,1.1556440369867804,1.3058047083720827,1.2782813448962338,1.0111795505135037,1.1693241426889174,1.559129076228577,1.1919722738824257,0.9933690028824348,1.271829299746616,0.9119158947693634,1.1601939519784692,0.9270995508207399,1.5150514149145202,1.855367636406629,1.6704893583437093,0.9793357643979353,6.0,0.2621222324252627,4.000000000000002,2.7222222222222223,2.2033333333333336,1.2883333333333333,1.1135147392290248,0.7760416666666666,0.5283525447215923,0.34375000000000006,6659.752664840107,7800.311069933955,3135.3206702969305,2761.483047012123,14.889130947509353,0.47807678043852786,7.770983160596433,0.915990633335331,0.0,0.5384615384615384,1.4354137644538758,3.5433928773138286,5.1718608739641985,5.554073552566534,5.554073552566534,5.554073552566534,0.16666666666666669,0.008455555884685894,0.07843137254901965,0.04775828460038986,0.0373446327683616,0.02300595238095238,0.019884191771946873,0.014371141975308642,0.011241543504714728,0.008814102564102566,0.41597344466614883,26.074074074074073,11.82314494425221,5.713152152350724,196.34232818644838,1.0,4.425772839791399,192.92254736891462,,169.2134833120032,165.9026877426954,163.0864525682952,169.2418313072903,220.27283234453796,167.80595909925842,169.41326070695868,204.5009925628991,0.06600809184448869,0.02860978495871558,-0.5583677969912325,0.48034348520841946,0.35479824024509404,-0.26354961032480684,0.06470136781247639,-0.07335501213058516,0.04831566927037195,-0.01886112086072406,-0.008581381074393225,-0.015587700808064056,0.04576771443338157,0.08174981755587321,0.13046882032660015,0.10990602925528505,0.09495597794783177,0.18805851066033286,0.04615772697582523,0.11883148884625543,0.06931706333218218,0.057339635298953695,0.11203762761499095,0.08695695064787537,-0.01708264974212647,-0.04614894713399132,-0.1263173637300994,0.02794433464717857,0.0043584087826449075,-0.08136934817851606,-0.017540436005111546,-0.06120215606319137,-0.03501510652430229,-0.026395815337875394,-0.05690594540855228,-0.036057801102896594,0.007218746396032743,0.0389923143924388,0.08874983549079314,-0.02063862928348909,-0.03241483584300174,0.10885108463591993,0.0076287823659172025,0.06475027285444904,0.027912334214345042,0.05929209473119615,0.06404660827727238,0.036723010202351906,-0.07134894091415826,-0.06838949345155267,-0.07612589153266971,-0.05245182877581633,-0.09266299130530181,-0.12620553065307033,-0.07175190452646601,-0.10415641507691545,-0.06668892121096458,-0.11781894532234924,-0.07834346310837668,-0.09272001857910576,-0.018747529588263052,-0.013640109574804576,0.06549231672747234,-0.05172286273013169,-0.021888654695369086,0.07814155774478189,-0.017886520936851922,0.03923256055310417,-0.021047917987519996,-0.07193926147385733,-0.006383208270317645,0.013606901588812064,0.0020381232120495253,-0.046004348265844125,-0.012260354699147017,-0.1279402800368808,-0.0632270410671024,-0.11851763396604609,0.0015143810830912194,-0.06891798267496611,-0.029434764819616502,0.034323755714677474,-0.0720823064209779,-0.031230351015918045,-0.1197476460114199,-0.16719020404925578,0.029465207691569996,-0.07209501945682323,-0.139773936126052,0.06169531281197975,-0.11699950944162248,0.011712439290463988,-0.17216851959490584,-0.12606378973259394,-0.15923952782307474,-0.03917783554498346,15.448735677526468,29.77182369081173,12.358524387403039,13.018408928975116,32.87528163227033,38.26449204698397,38.64976242701512,38.64976242701512,38.64976242701512,67.45029417917115,53.437442737078186,10.454284147902868,3.558567294190089,0.0,14.012851442092956,8411.45423570261,7220.568622493785,2697.0832215139562,338.0,51.0,71.0,100.0,134.0,167.0,217.0,266.0,307.0,451.29472542400106,36.0,5.1647859739235145,6.037870919922137,6.9440872082295275,7.847371836159788,8.767640577257792,9.685518092495647,10.613073867047845,11.539207058364116,12.471137107335245,0.5809523809523809,0.9642857142857141,1.136504598329657,0.5371445222831452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.64324500427716,0.9511484593837535,0.9914577047133494,0.5891890058445527,4.0,0.0,1.0,0.0,0.0,2.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,0.0,8.0,1.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,15.200676855804016,0.0,0.0,5.907179729351506,0.0,14.594356645772777,4.794537184071822,0.0,6.578935683598497,18.208754243757102,64.0195724915912,55.23854100265378,5.917906046161393,196.71599657045735,-515.0411451387573,-25.461754579438136,-7.357730644839391,-24.525768816131304,531.5820590895338,1391.7863174418073,28.18308504456467,19.882661677740106,28.40380239677158,0.46153846153846156,0.9032042321378287,0.13783551256293222,56.804535205928886,0.12359076770006851,38.419564179224004,0.09679576786217113,7.0,0.2222222222222222,0.2341895064211495,0.5781088697516158,0.8437954096206871,0.9061538743131597,0.9061538743131597,0.9061538743131597,3.193900000000001,,1.2142857142857144,1.4997673336435549,1.4725162990448417,1.2110320506083252,-4.755497619587395,1.3233629130966955,1.1983045659983018,-2.3946120973331952,132.36540000000002,9.589074368143644,0.0,25.00049631750497,5.917906046161393,38.14594894377801,46.81912599491725,48.17780355082428,0.0,0.0,4.290459441148391,0.0,5.6240175061873385,2.3978952727983707,7.1631723908466425,4.727387818712341,8.812396905266864,6.86171134048073,10.528168508620523,40.666666666666664,8.575815859108157,0.0,3.4191268384924727,0.0,0.0,2.480808725573718,2.6778278372307263,0.0,67.49999999999999,3.968021268467003,26.567678757313043,0.0,0.0,0.0,1.9263668430335097,0.0,-0.33650394725791455,79.55532188307598,5.316788604006331,4.794537184071822,0.0,84.48296877925343,11.21535880699783,5.917906046161393,36.81018947509803,37.05090056743028,0.0,10.902924932081056,0.0,37.600116559820165,45.0271502994012,42.40253063456656,385.8450947378293,,338.3533735504134,331.714480495473,326.10180831175035,338.41026673272563,441.5640220432714,335.53171438560196,338.75389689476594,409.45163161454684,42.40253063456656,385.84509473782936,,337.2558435451126,330.3786864524451,324.8077788368322,337.31557596064545,445.3011623086635,334.343592059034,337.66981304926094,411.39659722313144,5.091743526042098,273.26938608275344,,243.71753633899812,239.31085157678046,235.5140844674943,243.75514341352297,311.6030769918158,241.83985949848358,243.9841194890593,290.62292117107427,1.2849251707444411,11.692275598116039,,10.253132531830708,10.051953954408274,9.88187297914395,10.254856567658353,13.380727940705194,10.167627708654605,10.265269602871696,12.407625200440814,2.5684892596482287,192.92254736891462,,169.2134833120032,165.9026877426954,163.0864525682952,169.2418313072903,220.27283234453796,167.80595909925842,169.41326070695868,204.5009925628991,66.58039215686274,0.0,5.894697591409456,0.0,0.0,0.0,0.0,69.40203932993445,5.673571729847432,2.8406560181975045,0.0,0.0,0.38336206755939783,5.92857041102549,0.0,0.0,0.0,41.24323040911869,657.801886129856,100.47896351177131,248.037501411968,362.0302611774939,388.78514867965737,388.78514867965737,388.78514867965737,1720.0,148.07069264073561,70.49616953013509,83.40520918406119,71.68,71.68,0.8571428571428571,8.914237527466206,6.169925001442312,4.365053186274328,5.646985283985335,,5.648889359015984,5.64988418322911,5.65145494046574,5.648882939693275,5.6293984620560975,5.649352646402807,5.648824432812128,5.634890662867407,0.13227433897800994,0.17112076618137378,,0.17117846542472678,0.17120861161300335,0.17125621031714364,0.1711782708997962,0.1705878321835181,0.1711925044364487,0.17117649796400386,0.17075426251113354,2.667552842403244,2.9250442931716627,,2.925381420682167,2.9255575148771658,2.925835492067223,2.9253802842948264,2.9219250598102,2.925463431208559,2.9253699269932576,2.922900212558078,365.30000000000155,1310.2858364254143,225.21537975918562,,223.78801932065952,223.60374211508605,223.4706793354291,223.7896601607611,227.29345051025717,223.71049014668816,223.799072785334,226.19175689620172,39.70563140683074,6.82470847755108,,6.781455130929076,6.775870973184426,6.7718387677402765,6.781504853356396,6.887680318492642,6.779105762020853,6.781790084404061,6.854295663521264,8.371923056610994,6.6109796561857435,,6.604621729944395,6.603797945369537,6.603202685264276,6.604629062035233,6.62016438461864,6.604275229685257,6.604671121291338,6.615305589829087,0.0,35.91537600683101,4.157292304139797,3.8420002768621515,-0.013258666120768536,6.501720505057445,6.5613721460551355,9.024276079494713,4.011221347680514,441.13528323445234,143.26787781948155,-375.10346458945224,-18.54374635389667,-5.358620922706462,-17.862069742354873,387.150180058642,1013.6352688870476,20.525686040456627,14.480503841243538,20.686434058919343,3064.0,57.0,2.1585094723188494,1.3103944689549778,0.0,0.0,0.6066420349905648,0.24950780982239096,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.03608439182435161,0.36059617750569406,0.16094323945636796,0.7034356176425286,0.31009660497329755,23.53480494807372,20.140900551623538,15.939090705625686,12.118753143503405,14.226949462654849,9.619070721542048,11.936617655756265,7.114135414740958,10.538021753776242,5.676424009661292,8.609023051036392,4.324349155078753,6.759780352975372,3.029364992884782,5.6143430969137675,2.201960132532567,5.297908241811954,2.726858497286474,9.20585073413554,4.2634258029281105,15.067874456370925,6.407868930604664,112.64370543574942,45.6414783675626,27.23948390426392,24.753634610292675,24.753634610292675,24.753634610292675,174.0,209.0,75.19534099999997,45.12465900000004,0.22857142857142856,240.07,11.083333333333334,7.416666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,9.0,10.0,70.0,0.0,2.0,73.0,10.0,3.0,7.0,66.0,13.0,36.0,60.0,0.0,0.0,0.0,26.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,4.0,2.0,2.0,33.0,7.0,0.0,5.0,2.0,0.0,4.0,8.0,0.0,0.0,0.0,1.0,2.0,3.8066624897703196,7.689401498944297,4.3208159036289855,4.874242669190701,5.458787323334188,5.92809201261038,6.309037208380266,6.76605669690531,7.186507954328617,7.394977969678821 +5281067,CN(C)CCC(c1ccc(Br)cc1)c1ccccn1,0,50.473684210526315,5.745194736842106,2.9210526315789473,4.975453035881886,160.63660742001923,239.59401226315785,1.7050669787402895,5.874863157894737,2.309077413183164,7.3437975,225.18153635130784,26.615384615384617,6.082692307692308,3.4871794871794872,5.000949667616334,144.50687064346405,103.86281269230766,1.9097549202564108,6.254692307692308,2.678695789806901,7.5255186153846125,263.07926474507053,22.73134328358209,5.9836716417910445,3.2388059701492535,3.5008291873963513,155.06905710388494,88.1113245373134,1.6447196623700293,6.115014925373136,2.3264234383637374,7.5022757611940305,218.37370223424378,19.13953488372093,5.799023255813954,2.7906976744186047,2.634366925064599,154.15869631034585,70.8940433372093,1.5236284428295233,5.9370406976744174,2.12984496124031,7.372956558139535,191.03066100253002,14.06,5.612469999999999,2.45,2.1603703703703703,160.4423972722837,49.97842602000001,1.2768483035546998,5.718364999999999,1.9279320987654318,7.240612859999999,156.30958076529984,15.0,5.6932542553191485,2.5,2.5189125295508275,159.39643368582367,54.89392446808511,1.322124300225798,5.79517659574468,2.122668768058839,7.280916914893616,167.36064212163188,16.83157894736842,5.718873684210527,2.389473684210526,1.9953216374269005,159.43879397562554,62.56934654736842,1.342900399805547,5.829363157894736,2.1660006497725797,7.319838526315789,166.4000207646932,18.264367816091955,5.7528482758620685,2.0689655172413794,1.1907194550872713,160.6223569266619,68.19938581609196,1.3329612390526895,5.86887816091954,2.1557577692635164,7.378156528735631,157.60014523745053,15.93421052631579,5.434734210526315,1.644736842105263,0.37962962962962965,162.86622827864701,59.23981027631581,1.1604703625799209,5.550669736842106,1.7225877192982455,7.159509026315789,122.6531012189685,31.847645429362867,0.05069168975069247,0.006383560918270073,0.5103878116343488,2.860781475021754,1.4670312731874566,169.01367395567866,0.32511801569978455,0.05915013850415509,0.2597986583716166,0.02663013088642657,56.91855157507082,0.2022870942538532,0.005316002556999694,-0.0006590165472084106,0.1650507848568791,0.8044597646184461,-0.29432497385586903,0.888358959301097,-0.015426463302605001,0.0057087009020526215,0.015004581790622779,0.0014550634455572362,-1.4308870656074186,0.7760780584611566,-0.01085484764542942,-0.0016569254672697256,-0.051236201265142396,-0.32103920736932956,0.3172174120656256,4.202053258775379,0.04453125235302532,-0.00982727911688102,-0.010683643506587319,-0.0052315389775498995,5.313556122259018,-2.2307543644914003,-0.007683366617277605,-0.00037959413993677394,0.0018520904464343424,-0.10452762381799582,-0.14077210854605254,-11.233445207208653,-0.03865474776627296,-0.009301974489467252,-0.04487682836354074,-0.003453204937834171,-8.483989180476401,-0.1571191135734068,0.0018019944598338105,0.00017676989201309331,0.03198060941828255,0.2647062153977102,-0.0036260129474724673,-0.9665942019944671,0.0058610346299371955,0.0021486509695290983,0.011474512338079336,5.8954639889186944e-05,2.428955896968104,1.5790063063594035,0.006808030294100308,0.0013018935423075083,-0.04454234690870513,0.15870939820807645,0.034454188891783574,8.068686289002173,0.018123841141354773,0.007090063063594034,0.031198434356921205,0.003229904667884712,3.094275805743102,0.5224376731301938,0.00025628808864265346,-0.00037342407679771003,-0.11925207756232689,-0.46348012113888803,-0.1427963819547548,2.6710147734071983,-0.0012285807385223068,0.0007037673130193866,0.028262815434188675,-0.00029013476454293623,-0.928681032034927,-1.4060241347470306,-0.012724539115483812,-0.001592044497836938,-0.07118635972872289,-0.9117010733411418,-0.06598190767250772,-6.9444869998408,-0.038808750941671216,-0.013507065303913138,-0.09488655401299538,-0.003509271842264453,-10.419624506162759,-0.5339335180055398,0.0020979224376731906,0.00026475255099211764,-0.01004155124653743,-0.23337000178592457,-0.21285151405592811,-3.133429684903048,-0.03588767015530614,0.002134279778393405,-0.04659387123863371,0.0030059833795013646,-6.642819343045199,,,0.5333333333333334,1.25,0.6578947368421053,0.02631578947368421,0.5921052631578947,0.06578947368421052,0.7846716834160263,0.01313209286456042,0.022184724443507785,0.7595825897445141,0.2441816780870976,0.23817115338376807,1.5442542731605404,0.48235283147086566,2.008172087547469,1.7032662623174515,0.21215084209166699,0.0,0.09275498313835011,0.30490582523001714,8.370346334421066,1918.0,218.31740000000002,111.0,189.06721536351165,6104.191081960731,9104.572465999998,64.792545192131,223.2448,87.74494170096023,279.064305,8556.898381349698,1038.0,237.22500000000002,136.0,195.03703703703704,5635.767955095098,4050.6496949999987,74.48044189000002,243.93300000000002,104.46913580246914,293.4952259999999,10260.09132505775,1523.0,400.906,217.0,234.55555555555554,10389.626825960291,5903.458743999998,110.19621737879197,409.7060000000001,155.8703703703704,502.65247600000004,14631.038049694333,1646.0,498.71600000000007,240.0,226.55555555555554,13257.647882689742,6096.887726999999,131.032046083339,510.5854999999999,183.16666666666666,634.074264,16428.63684621758,1406.0,561.247,245.0,216.03703703703704,16044.23972722837,4997.842602000001,127.68483035546997,571.8364999999999,192.7932098765432,724.0612859999999,15630.958076529983,1410.0,535.1659,235.0,236.77777777777777,14983.264766467426,5160.0289,124.27968422122501,544.7466,199.5308641975309,684.4061899999999,15731.900359433397,1599.0,543.293,227.0,189.55555555555554,15146.685427684428,5944.087922,127.57553798152698,553.7895,205.77006172839506,695.3846599999999,15808.001972645856,1589.0,500.4978,180.0,103.59259259259261,13974.145052619584,5933.346566,115.96762779758399,510.5924,187.55092592592592,641.8996179999999,13711.212635658196,1211.0,413.03979999999996,125.0,28.851851851851855,12377.833349177174,4502.2255810000015,88.19574755607398,421.8509,130.91666666666666,544.1226859999999,9321.635692641607,1210.210526315789,1.926284210526314,0.24257531489426276,19.394736842105253,108.70969605082665,55.74718838112335,6422.519610315789,12.354484596591814,2.2477052631578935,9.87234901812143,1.0119449736842097,2162.9049598526913,7.8891966759002745,0.20732409972298807,-0.025701645341128017,6.436980609418285,31.373930820119398,-11.478673980378892,34.64599941274278,-0.601632068801595,0.22263933518005224,0.5851786898342883,0.056747474376732214,-55.80459555868933,51.997229916897496,-0.7272747922437712,-0.11101400630707162,-3.4328254847645407,-21.509626893745082,21.253566608396916,281.5375683379504,2.9835939076526965,-0.6584277008310283,-0.7158041149413503,-0.35051311149584324,356.0082601913542,-191.8448753462604,-0.660769529085874,-0.03264509603456256,0.15927977839335344,-8.989375648347641,-12.10640133496052,-966.0762878199441,-3.324308307899474,-0.7999698060941838,-3.859407239264504,-0.2969756246537387,-729.6230695209705,-15.71191135734068,0.18019944598338106,0.01767698920130933,3.198060941828255,26.470621539771024,-0.3626012947472467,-96.65942019944671,0.5861034629937195,0.2148650969529098,1.1474512338079337,0.005895463988918694,242.8955896968104,148.42659279778394,0.639954847645429,0.12237799297690577,-4.186980609418282,14.918683431559186,3.238693755827656,758.4565111662042,1.7036410672873485,0.6664659279778392,2.932652829550593,0.3036110387811629,290.8619257398516,49.63157894736842,0.02434736842105208,-0.035475287295782455,-11.328947368421055,-44.03061150819436,-13.565656285701706,253.74640347368384,-0.11671517015961916,0.06685789473684173,2.684967466247924,-0.027562802631578943,-88.22469804331807,-122.32409972299166,-1.1070349030470916,-0.1385078713118136,-6.193213296398892,-79.31799338067934,-5.7404259675081715,-604.1703689861496,-3.376361331925396,-1.175114681440443,-8.255130199130598,-0.30530665027700743,-906.5073320361599,-40.57894736842103,0.1594421052631625,0.02012119387540094,-0.7631578947368447,-17.736120135730268,-16.176715068250537,-238.14065605263164,-2.7274629318032666,0.1622052631578988,-3.541134214136162,0.2284547368421037,-504.8542700714351,0.7192066283684293,0.6825660099054515,0.45823518989732237,0.363504102493504,0.30973437444118507,0.22562948907363548,0.1935061748662319,0.11970383490011476,0.12259007089981604,0.06352955721376989,0.08183224196771467,0.037895660047337354,0.054558645540341656,0.025149230418939027,0.03657806779435179,0.014120218133312231,35.00041793495933,5.692058472171198,3.1463200517270917,2.188950731399636,0.340091864379935,-0.3829382543705655,3.1680901048978796,0.9886008491231986,5.033414566453131,0.2560121739490321,14.548237693889174,10.95075976205804,79.90417849027469,11.703242818363847,3.0589799010223286,1.0250365384616311,3.1276481334924218,2.2396163387861225,3.039060981293224,1.0438496893166693,3.289109472911829,2.4357555269319184,26.52389176618184,15.589195489533846,0.25257806921049625,0.554486471150178,0.7583481207535092,0.8525138456329809,0.8525138456329809,0.8525138456329809,1.9155576903946374,493.91719964890143,0.0,1.0,1.0,0.0,9.0,1.0,1.0,1.0,0.0,3.86080586198495,2.2027692699845653,1.0831910383876355,0.5660467106401805,0.5660467106401805,0.5660467106401805,106.37110699517001,556.9740703245254,28.260111469416913,14.657212376961198,29.355591718080774,,9.0,279.0,0.0,0.0,0.0,5.917906046161393,23.13222553951946,5.563451491696996,0.0,12.263210640074686,76.30737852587107,0.0,10.133333333333335,23.75,12.5,0.5,11.25,0.0333333333333334,0.0,1.25,0.08462519936204133,0.046418128654970636,-0.03820707070707069,0.0,0.0,0.001294117647059112,0.5228070175438598,0.7456140350877191,0.4381818181818185,0.4763888888888892,0.7456140350877191,14.9087619849045,0.24950976442664796,0.42150976442664795,14.432069205145767,4.639451883654854,4.5252519142915935,29.340831190050267,9.164703797946448,0.7152941176470591,0.23026315789473678,0.0,0.23684210526315785,0.3125,0.39792428910489785,-0.42536735455560826,-0.02401761920479501,-0.011193877751463377,-0.02835782363704056,0.602075710895102,0.6435981904038148,0.030220247631479295,0.01693679448431092,0.027982530017557163,-5.1312565593218356,0.5177844610522702,0.8353248540013897,1.1828965464400878,0.8804926416866721,0.7461352029404373,1.3424528510889406,0.5118137637658003,0.8696993176605086,0.7800302975066005,0.9276710343430248,0.7865097894675644,0.9730562204192515,0.5954927891636886,1.4888896514819308,1.8105096989032854,1.4521557747220486,1.3157638641342193,0.9042748929795731,0.5873277232555735,0.6917598689293943,1.3005602501886535,1.0053049982865683,1.3864277982261757,0.8268769283262735,0.9337266445645076,1.0779353702710337,0.9633059200895202,1.1535136158530819,1.0233590469598048,1.116377468612836,0.9289485033200483,1.0566008185014433,1.0764210794177567,1.1441276633103736,1.0348973642645134,1.1169220335142531,0.6614510307036622,0.8627161510844441,0.7975205440922413,0.9252510176390778,0.8528089415290044,0.9554457000211266,0.654393613222981,0.8520735233961989,0.853407931832231,0.894454971169455,0.810877702186272,0.9125499442986202,0.3236205004450746,0.849002276981869,0.7907855776279556,1.0553422442911176,0.9369053792325714,0.974643197204301,0.3109677095849058,0.709472819023848,0.7960056861276656,0.930091385810609,0.7051077458924836,0.8704652008658067,0.6557145342263201,1.0357743569566715,1.1943896910692502,1.214925373134329,1.216487131227345,1.09271093078778,0.6488993267583656,0.8664761863042599,0.9761944345578177,0.9002541512397562,0.9725068991035479,0.9580368490257944,1.0876325558191597,1.4136731184400424,1.5135204764683863,0.8880830954943157,1.3069493184561742,1.0458517619485441,1.0857449277277207,1.097547986307171,1.3414012780339684,1.5666401587097245,1.3145668269494017,1.1381888192962968,1.3918848395233545,0.6666933064476468,0.523093713271485,0.7154002713704211,0.854695753842966,0.987643927171361,1.4025160869997835,1.2429102510930088,0.8053008448382437,1.0074429679453154,0.695443173280511,1.1436143101239216,3.5,0.0,2.000000000000001,0.9375,0.5733333333333335,0.5277777777777777,0.4848979591836735,0.2673611111111111,0.16805240614764422,0.015625,3728.152392828797,4255.194589561813,1912.1424784670558,1722.8772005541105,10.036817803604816,0.3831135485041219,6.191576919176428,0.6210438688921048,1.0,0.3125,1.3871216514586349,3.04515824345902,4.16473647505595,4.681880802803405,4.681880802803405,4.681880802803405,0.17500000000000002,0.0,0.07692307692307696,0.037500000000000006,0.024927536231884057,0.021111111111111115,0.02020408163265306,0.015727124183006536,0.021006550768455527,0.005208333333333333,0.3976078141835206,15.39,7.695266272189349,4.795005202913631,123.16023715433529,1.0,3.8488792063656687,78.56058966247673,,62.804888853689434,63.741693400686685,63.21169589215775,62.76718390748013,73.24570721803046,64.01268922982173,64.32569932700491,70.8733138996627,0.006351712709893105,0.10486931059399286,-0.10323650947267882,0.32338308457711473,0.28120280127734293,-0.20062624378577942,0.005256136610189636,-0.047448811070654004,0.09651204623386646,0.057754654641673286,0.05463974066679803,-0.025139203757147576,0.024368459520264216,-0.21413465794521355,-0.2595613151474002,-0.10038680410700904,-0.11222080755639971,0.21623084515192315,0.02486220884043563,0.13696950092776672,-0.16614126974851778,-0.04112278167081761,-0.19645186874452897,0.09335367775919036,-0.07004456167534104,-0.15157053661192357,-0.05946432481757265,0.0036287905083462572,-0.0365381364255377,-0.09595712860312335,-0.06646471225845584,-0.11889451183771656,-0.15726040081569415,-0.17273695193355781,-0.12967284887038527,-0.14905490293945248,-0.00493346090284421,0.035548123739733775,0.02769142399928682,0.06265943012211672,0.0925293377732381,-0.0024716671101319716,-0.005719029587203353,0.018027406501365036,0.036325375119420265,0.04416694223904024,0.0022138321490277105,0.04267423941321686,0.04958000144348482,0.13430268999875483,0.20394471972240816,-0.08727157250497998,0.055477637699282704,0.023485654001720133,0.047739843174570994,0.055745422480956604,0.11986553612374012,0.12008697255200947,0.12128760018716245,0.05436322113119851,0.01640427937722885,0.0050558205872226316,-0.05849776975245141,-0.233649932157395,-0.16201171784201504,-0.09733697199548952,0.015803542464307548,-0.0037788762209252156,0.011897982503793281,0.10878738024028392,-0.010894980793760143,-0.01631596388762764,-0.04414844852080354,-0.25101824733135847,-0.2493975569780225,-0.13947503860010302,-0.31868951938533124,-0.044976483377308744,-0.04108831455650085,-0.11936819575543728,-0.22835221768693428,-0.3652311163103446,-0.13177824236880245,-0.18306201085282614,-0.01676524310689745,0.04138592435941696,0.04147411677930143,-0.019674355495251095,-0.08157561275600402,-0.14508996361983487,-0.018539504003236708,-0.11038351743769553,0.0360824138770779,-0.1793460810409026,0.11287903136193447,-0.11670745581576991,12.970631738280169,15.084293208129944,2.701599969404812,20.98172524261419,35.59930814177692,42.41798203743186,42.939263519801294,42.939263519801294,42.939263519801294,38.15526966340191,32.36205898403158,4.030865999741673,0.0,1.7623446796286522,5.7932106793703255,4343.18861314736,3151.4182674513527,1645.4864445329906,24.0,26.0,31.0,38.0,48.0,46.0,46.0,42.0,36.0,318.07316070800056,20.0,4.532599493153256,5.332718793265369,6.171700597410915,7.00033446027523,7.848933726364071,8.689632748355741,9.542445945729886,10.388964598613677,11.243489253126375,0.7192982456140352,0.9545263157894738,1.120417977552248,0.6994597057960026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7034205326189729,0.9457172342621255,0.985078774868709,0.6303168553890321,8.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,34.12904510333418,56.8898417597364,22.281397128455346,0.0,207.33456941510792,-221.6335109837482,-12.514146214606903,-5.832460815361796,-14.775567398916552,313.70567641027793,335.3405593407772,15.745965254810008,8.8247515615994,14.580024319164224,0.4444444444444444,0.9707671085174463,0.28940570951098193,1.3305416110645345,0.07857209203778946,301.128208462453,0.029232891482553786,5.0,0.25,0.2643179898932014,0.5802592043541486,0.7935964177072127,0.8921389997879845,0.8921389997879845,0.8921389997879845,3.9277000000000024,,1.1142857142857143,0.45892674576190595,0.49735115757496484,1.1346824755066258,-0.5839046199701935,0.46088193456614523,0.42746602971593783,-0.41459539985447624,83.39300000000004,0.0,0.0,9.883888251797686,0.0,12.338727669087403,20.640100371266954,64.39151205322221,0.0,0.0,3.713572066704308,0.0,4.976733742420574,0.0,6.434546518787453,0.0,7.979681302387741,0.0,9.57227147806062,27.33333333333334,16.566671797577055,4.525590868291761,0.0,0.0,0.0,0.0,3.582456380700429,0.0,36.272000000000006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.575883146985426,0.0,0.0,0.0,30.523988623064643,0.0,0.0,23.59610715563286,53.134132566676755,0.0,0.0,0.0,26.5794688202481,26.72998023952097,24.221082779743824,157.12117932495346,,125.97491824575691,127.46317849122309,126.4218183479281,125.98098712323348,146.6758053686831,127.99023784319311,128.61204659140128,141.87755266243732,24.221082779743824,157.12117932495346,,125.14717218468053,127.10086790246373,126.02917269721104,125.13695464966975,147.07531905603116,127.62638368432516,128.27457341004663,142.1612231991799,4.699256169583747,106.45154818705362,,86.19112087175944,87.15197828248414,86.50780164270485,86.15107612564634,100.19044616184857,87.49048324544675,87.87433589850933,96.56646416632317,1.2747938305128328,8.269535753944918,,6.630258855039838,6.7085883416433205,6.653779913048847,6.630578269643867,7.719779229930689,6.736328307536479,6.769055083757962,7.467239613812491,2.3496280847918736,78.56058966247673,,62.804888853689434,63.741693400686685,63.21169589215775,62.76718390748013,73.24570721803046,64.01268922982173,64.32569932700491,70.8733138996627,35.93725490196077,3.4891757605820106,4.216395607625766,0.0,0.0,0.0,0.0,37.43299344501094,2.127927177815571,0.0,0.0,0.0,0.35805555555555535,2.2170601851851854,0.0,0.0,0.0,23.952040504783223,505.8087328611293,52.710622755428126,115.71601325144276,158.2599860521261,177.91147050652938,177.91147050652938,177.91147050652938,376.0,109.75081961629452,15.231512964256654,51.676805108360696,16.130000000000003,16.130000000000003,0.8,7.658500446894326,5.321928094887363,3.8424139382057287,4.283408342154291,,4.293225506010251,4.2881889003442115,4.288938525401358,4.293328380371719,4.26594049270576,4.287974645296876,4.287369647830509,4.272179875897331,0.2022323125371436,0.22544254432391006,,0.22595923715843427,0.22569415264969533,0.22573360660007147,0.2259646515985115,0.22452318382661896,0.22568287606825663,0.2256510340963426,0.22485157241564901,1.9879546850081973,2.0966029204791785,,2.0988922028053802,2.0977183622224946,2.0978931585201,2.0989161645396996,2.0925165569226127,2.0976683969795884,2.0975272953639124,2.0939780927250755,226.23999999999967,117.99071673395548,95.15914568711885,,94.14939402738173,94.65365742255041,94.59174996499763,94.1339975922739,96.02818616278766,94.67051865731523,94.7157203064288,95.73225441881674,6.210037722839762,5.008376088795729,,4.955231264599038,4.981771443292127,4.978513156052507,4.954420925909153,5.054115061199351,4.9826588767008015,4.985037910864674,5.038539706253513,5.412459835797136,5.19740459391993,,5.186736705008234,5.192078404629502,5.191424148754914,5.186573159673622,5.2064956404088365,5.192256524879736,5.192733873711617,5.2034091646164145,1.114472631645251,6.742651053476947,0.0,2.467983749055178,0.35805555555555535,14.694796797577055,2.946920351473923,1.0528818263416477,4.216395607625766,264.2376914494739,108.02965501614838,-115.47997904611553,-6.520373819953604,-3.038946817003041,-7.6986652697410385,163.4532827536302,174.72592747414095,8.204281607124193,4.59805072300371,7.5967794553974315,718.0,25.0,1.1663395218799635,0.916377318101723,0.0,0.0,0.13608276348795434,0.060373004706725075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.052622977527775436,0.19037142086468112,0.08493636280021888,13.664925939000156,12.968754188203578,9.164703797946448,7.27008204987008,8.053093735470812,5.8663667159145225,5.998691420853189,3.7108188819035575,4.65842269419301,2.414123174123256,3.9279476144503045,1.818991682272193,2.509697694855716,1.1568645992711952,1.6825911185401825,0.6495300341323627,2.0776055202997865,1.2994640353277236,2.932505781615976,1.4437889227533,4.480400211784982,1.8889841664985392,67.90621299990246,43.61356236961687,27.891018215289456,25.710687573610294,25.710687573610294,25.710687573610294,92.0,103.0,44.63906699999998,23.290932999999995,0.34210526315789475,58.03,6.305555555555555,4.305555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,38.0,0.0,1.0,39.0,12.0,0.0,6.0,33.0,12.0,20.0,27.0,0.0,1.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,2.0,0.0,1.0,19.0,3.0,0.0,2.0,0.0,0.0,2.0,5.0,0.0,0.0,1.0,1.0,2.0,3.295836866004329,6.081398082722002,3.8066624897703196,4.276666119016055,4.77912349311153,5.309504555938601,5.27715756871241,5.568344503761097,5.839369045620879,6.002188093804204 +16112839,C=C[C@]1(C)C[C@@H](OC(=O)NC(=O)OC2CCC(N)CC2)[C@]2(C)[C@H](C)CC[C@]3(CCC(=O)[C@H]32)[C@@H](C)[C@@H]1O,0,19.175,6.003872500000002,3.05,5.525,165.27258125027447,75.15377885000001,1.2991423976669503,6.056435000000001,4.3558159722222225,7.590755399999999,187.63913765214588,21.53012048192771,6.2167108433734946,3.9156626506024095,5.072289156626506,146.6382307585669,79.80950856626505,1.7059262323614457,6.355831325301205,2.704317269076305,7.671454024096385,243.08093035098855,18.135802469135804,6.063296296296296,3.6419753086419755,3.925925925925926,152.83817756334616,66.3937993888889,1.4794480247501665,6.17063024691358,2.5757458847736627,7.582990543209876,203.77267557649907,15.236220472440944,5.977818897637795,3.094488188976378,2.811023622047244,155.49484560398488,53.78565582283465,1.3358768453069292,6.075549212598425,2.4083005249343827,7.543349086614173,179.37216315625773,13.13953488372093,5.933863372093024,2.5406976744186047,2.4302325581395348,160.1366393104809,45.26485780232558,1.1724624134881394,6.007804941860465,2.6333575581395348,7.5388305581395345,152.89157231494846,11.3203125,5.862846354166667,2.2473958333333335,1.9427083333333333,164.6775134470579,38.18937769010416,1.0377485192949896,5.918371875000001,2.5185546875,7.508631322916666,132.37074438620314,11.05952380952381,5.948514880952381,2.0595238095238093,1.9077380952380953,165.96656165750787,36.62268911607143,1.0007737645825863,5.995163988095238,2.7952215608465605,7.596690749999999,127.9010085290385,10.97173144876325,5.984519081272085,1.911660777385159,2.1024734982332154,169.24136199645196,36.71062607773852,0.9205798260627172,6.0147,3.21883588535532,7.642043505300354,118.08542816183328,11.20673076923077,6.143567307692308,2.019230769230769,2.1298076923076925,171.45211992988789,37.385701254807685,0.8927703858789712,6.159555288461538,3.2130742521367517,7.816284711538462,119.43173568598066,7.444374999999999,0.12688443749999995,0.0186458997079757,0.724375,3.4943750000000007,1.3057112592404387,35.3584991275,0.2198579650051275,0.11990274999999992,1.7522992621527778,0.07986703999999997,49.28347560246772,0.24869728915662695,-0.004768985692771043,-0.013459830256002857,0.3250225903614458,1.196890060240964,0.05399006603406314,1.2235082562349437,0.008419538284162136,-0.0031547981927710256,-0.11275880867218878,-0.0038835436144578107,2.585222108528482,0.9230632716049384,0.031679991512345684,0.005212517356514168,-0.010023148148148076,0.4500694444444445,0.1605830866225622,4.284460496574077,0.017948275065064394,0.02783774382716052,0.22326604563185876,0.020646572345679008,3.7136790008906395,-0.3927017716535432,-0.00741097293307085,-0.0032457467867221222,-0.0674852362204724,-0.14024114173228341,-0.08944355080108042,-1.8760977217913366,-0.016755314294287987,-0.006674226377952733,-0.05696933269083551,-0.005014280944881884,-3.1497751661880273,-0.24982558139534874,0.0062338546511627995,0.0009582994611220749,-0.050029069767441856,0.08643895348837209,-0.11580438322384048,-1.2738133408720917,-0.02066799793530194,0.004991392441860476,0.07064844254683465,0.00497214604651163,-4.088472021737541,0.11949218749999994,0.0006563177083333303,0.0009454047819142205,-0.07346354166666666,-0.07901041666666667,-0.0500156090165591,0.5538831572656248,-0.005024453875149494,0.0011412734374999947,-0.053307472511574104,-0.0002957952083333339,-0.19627468166421394,-0.5324702380952381,-0.013350791666666653,-0.0019923707890295555,-0.04007440476190478,-0.24333333333333335,-0.12053299440800094,-2.500578602797619,-0.013840812852040878,-0.012084773809523795,-0.15061249586640216,-0.008754835238095223,-3.038860559321248,0.2764730565371023,0.004354767446996476,0.002495176666512045,0.055660335689045916,0.044405918727915154,-0.012220251608839536,1.2863441136660774,-0.003858762134807147,0.004547568021201421,0.07280380027360615,0.0015392914487632658,0.34493875518247036,-0.18139423076923092,-0.03134709374999995,-0.00432733488502474,0.08512019230769229,-0.4776682692307693,0.19117538531241976,-0.6444354147596159,0.028277429837174704,-0.026788495192307655,-0.3893385249732908,-0.02147817269230765,5.344528006513466,,,0.4666666666666667,0.7708333333333334,0.1527777777777778,0.0,0.6180555555555556,-0.4652777777777778,1.6546664560116122,0.029041557895008632,0.038597113450564186,0.6628902364282544,0.10863512074051733,0.3599403647637267,2.317556692439867,0.46857548550424405,2.0106378947656918,1.5973260399524105,0.10411056417041847,0.3092012906428628,0.0,0.4133118548132812,6.303999214100015,1534.0,480.30980000000017,244.0,442.0,13221.806500021958,6012.302308,103.93139181335602,484.5148000000001,348.46527777777777,607.2604319999999,15011.13101217167,1787.0,515.9870000000001,325.0,421.0,12170.97315296105,6624.189210999999,141.591877286,527.534,224.45833333333331,636.730684,20175.71721913205,2938.0,982.254,590.0,636.0,24759.78476526208,10755.795501,239.67058000952696,999.6421,417.27083333333337,1228.444468,33011.17344339285,3870.0,1518.366,786.0,714.0,39495.69078341216,13661.556579,339.31271870796,1543.1895,611.7083333333333,1916.010668,45560.52944168946,4520.0,2041.249,874.0,836.0,55087.00392280542,15571.111084,403.32707023992,2066.6849,905.875,2593.357712,52594.70087634227,4347.0,2251.333,863.0,746.0,63236.16516367023,14664.721032999998,398.49543140927597,2272.6548000000003,967.125,2883.3144279999997,50830.36584430201,3716.0,1998.701,692.0,641.0,55764.76471692265,12305.223543,336.259984899749,2014.3751,939.1944444444443,2552.4880919999996,42974.73886575694,3105.0,1693.6189,541.0,595.0,47895.3054449959,10389.10718,260.52409077574896,1702.1601,910.9305555555555,2162.698312,33418.17616979882,2331.0,1277.862,420.0,443.0,35662.04094541668,7776.225860999999,185.696240262826,1281.1875,668.3194444444443,1625.7872200000002,24841.801022683976,595.55,10.150754999999997,1.491671976638056,57.95,279.55000000000007,104.4569007392351,2828.6799302,17.5886372004102,9.592219999999994,140.18394097222222,6.389363199999998,3942.6780481974174,20.641875000000038,-0.39582581249999654,-1.117165911248237,26.976875000000003,99.34187500000002,4.481175480827241,101.55118526750033,0.6988216775854572,-0.2618482499999951,-9.358981119791668,-0.3223341199999983,214.57343500786402,149.53625000000002,5.132158625000001,0.8444278117552952,-1.6237499999999883,72.91125000000001,26.01446003285508,694.0826004450005,2.907620560540432,4.509714500000004,36.16909939236112,3.3447447199999996,601.6159981442836,-99.74624999999997,-1.882387124999996,-0.824419683827419,-17.14124999999999,-35.62124999999999,-22.718661903474427,-476.5288213349995,-4.255849830749149,-1.695253499999994,-14.47021050347222,-1.2736273599999985,-800.042892211759,-85.93999999999997,2.144446000000003,0.3296550146259938,-17.209999999999997,29.735,-39.83670782900113,-438.19178925999955,-7.1097912897438675,1.7170390000000038,24.30306423611112,1.7104182400000005,-1406.4343754777142,45.88499999999998,0.2520259999999988,0.3630354362550607,-28.209999999999997,-30.34,-19.205993862358692,212.6911323899999,-1.9293902880574056,0.43824899999999795,-20.470069444444455,-0.11358536000000022,-75.36947775905816,-178.91,-4.485865999999995,-0.6694365851139307,-13.465000000000007,-81.76,-40.49908612108832,-840.1944105399999,-4.650513118285735,-4.060483999999995,-50.605798611111126,-2.941624639999995,-1021.0571479319393,78.24187499999995,1.2323991875000027,0.7061349966229088,15.751874999999995,12.566874999999989,-3.4583312053015884,364.0353841674999,-1.0920296841504227,1.2869617500000021,20.603475477430543,0.4356194800000042,97.61766771663912,-37.73000000000003,-6.520195499999989,-0.9000856560851459,17.704999999999995,-99.35500000000002,39.76448014498331,-134.0425662700001,5.881705406132339,-5.572006999999992,-80.98241319444449,-4.467459919999991,1111.6618253548008,0.735163634647816,0.6182132022886494,0.43253121738853295,0.3500754875416002,0.27150607511342784,0.20568629629854995,0.16915398018134448,0.12497427359118247,0.10058451931999712,0.069493245831994,0.06197111070906168,0.041732848122209155,0.0378914942253268,0.02345967203695977,0.023036891627068283,0.012788770022885518,8.032186010131353,5.7357397676675905,3.560149205888809,2.2351722949236117,0.5244464259805115,-0.47627425728494344,4.043316620884669,0.9573982205297555,6.031261810421535,0.9930337620119688,14.540805758798031,10.9961326235855,16.017241121373072,11.747052282750055,1.956863255365324,0.7398637654988537,3.5067414014312033,2.285042486874081,7.010457390398459,1.0682406640132218,3.719273787644266,2.4810655288882257,20.863459931223673,14.699772277615272,0.22005381473174554,0.49275793590637135,0.7255608603449878,0.858952701252919,0.8744735575299344,0.8783537715991884,1.569449179310884,900.470787437676,0.0,1.0,4.0,0.0,2.0,13.0,0.0,3.0,3.0,4.904133800524762,3.147116556711563,1.6471804688852165,0.787744375108173,0.6877443751081733,0.662744375108173,343.11978871104424,2397.1182917424444,66.21486973419309,29.96397864678056,57.40124436086394,,15.0,933.0,35.22439385616699,19.490138947056174,41.09776077114216,25.683286491704038,32.10410811463005,0.0,6.076020106833881,6.923737199690624,32.6669358866767,15.207393384762284,16.8,27.75,5.5,0.0,22.25,0.0,0.03333333333333331,-16.75,0.10632352941176432,0.006036585365853719,-0.1002869440459106,0.05499999999999983,0.16498039215686244,0.0,0.5474999999999984,0.8499999999999995,0.4411764705882341,0.5414634146341447,0.7949999999999997,59.56799241641804,1.0454960842203107,1.3894960842203106,23.86404851141716,3.9108643466586237,12.957853131494161,83.4320409278352,16.868717478152785,0.5490196078431375,0.251984126984127,0.08928571428571429,0.2976190476190476,0.8214285714285714,0.2641887937984178,-0.870467433307206,-0.04877699157592622,-0.010880842916340075,-0.03481869733228825,0.7358112062015822,2.424401439788877,0.04223616950788468,0.030305017997360968,0.04408002617797958,-3.981186868167707,0.9525264183254721,0.7752385538323036,1.7603280521372728,1.0676008607337026,0.5481701443585106,1.3573561681331845,0.9612486138406494,1.2944377021066367,0.774541167436572,0.7039601083502439,0.7717646759033995,1.1756685455446598,0.847898664062994,0.5254817115683622,0.5719104750789742,1.7713759200673207,0.8669797801139837,1.1080439706595595,0.8579413792060102,1.1332854977370777,0.5551668660695211,0.48354785427872893,0.5092427542044012,1.0722717184931494,1.0285635523835903,0.9020117222807563,1.0897359608352823,1.540358576834496,1.0124539297549349,1.2193797848135615,1.0338457630438662,1.2303274625137732,0.9074616154230108,0.7669938327469222,0.9103133702011957,1.167469431647393,1.019365038766198,0.8980151842984114,0.9258104473164542,1.2027459518028774,0.949657464446598,1.1366223790782195,1.0235211967509583,1.15376470123017,0.9073490814236906,0.8094194572391038,0.8954846763460406,1.1195296453464707,0.9753610982844989,1.0177526255025693,1.004893056779587,1.1573375035950533,1.0670981637154948,0.9929675343054183,0.9747671415323899,0.9941132119091194,1.0112336780701794,1.023127811157505,1.0375207600565994,0.9790848757794844,1.0967353106971947,1.2828229748615225,1.3522640974682,0.9270871851760549,1.1951499433613544,1.0364699329859461,1.0918230578800048,1.0008075911771694,1.2623264888479568,1.3336621276508664,1.3124533137765442,1.0082506692143383,1.00847184343955,1.253685384014491,1.2084264907529698,0.640676591554191,1.1623425583645597,0.9084651095004036,1.0023234708687514,0.8902247403822394,1.2254771540301512,1.376151550770708,1.2945176876017412,0.8927892252614038,1.143472743359403,1.8792440950678808,1.8386701424975473,0.652128824583527,1.5359420359643932,0.7090648430583886,1.1235172100305082,0.6927332623668793,1.8010735272559832,2.0723347067609534,1.9811137513793116,0.7431960572639389,12.0,0.2940495867768595,7.111111111111113,5.222222222222222,4.0888888888888895,2.687777777777778,1.4367800453514736,0.7578656462585034,0.4910478080120937,0.36750771604938276,7843.152233081236,9324.751069912754,3353.3442509550737,2901.313019182972,16.689654171671563,0.4777990550223046,8.715353179797827,0.9149716399741725,0.0,0.8214285714285714,1.417794294362601,3.1748115381757995,4.674747626002146,5.53418371977919,5.634183719779189,5.65918371977919,0.3076923076923076,0.008648517258142927,0.11657559198542808,0.06962962962962964,0.05111111111111112,0.036818873668188735,0.024352204158499556,0.015788867630385485,0.013271562378705234,0.009932640974307643,0.6538213064867061,28.994082840236686,10.873421123353937,5.157923201730665,214.27540386219863,0.0,4.521863618634884,217.85307771313296,,192.9396317128165,189.1938995321879,195.12825882533787,192.9990850131542,302.95018463063076,191.75904164468102,193.12428322072878,251.01077070175666,0.03340741017971649,-0.03758526882204166,-0.7218654217176486,0.4486938262107966,0.34251906571016666,0.04134916173233457,0.034602946573695566,0.03829535256530631,-0.02631130806233408,-0.064349059037815,-0.04862511011373167,0.05245616460538419,0.1239947304649401,0.24967594242868196,0.279553008336977,-0.013836960342568524,0.12879826705618155,0.12298514352704361,0.1211720124523568,0.08163577364434264,0.232169352472404,0.1274131938842264,0.2585118009341402,0.07535343145938125,-0.052751476336635815,-0.058407264744905006,-0.17407295102707052,-0.09316339771592393,-0.040133397741308065,-0.06850178411811485,-0.053059314396413544,-0.07620972155317285,-0.055663663910567,-0.0325111891109548,-0.06278285691922332,-0.06391138465141676,-0.033558973237558395,0.04913017525228657,0.051394648482002,-0.0690651523968136,0.024736599102377986,-0.08869065224359517,-0.03602566207006751,-0.09400613680209367,0.04162867358638963,0.040317566795091776,0.06225529387982366,-0.08295827296589495,0.016051339098312477,0.005172562697717208,0.05070309272927323,-0.10141645096347425,-0.022610743456745953,-0.03830525980579679,0.01566478133781542,-0.02285318102999959,0.009518325789024817,-0.030421443222023333,-0.003703595479854192,-0.003982565743686837,-0.07152652010346579,-0.1052200878982236,-0.1068530250743185,-0.05532273306216363,-0.06963572408036725,-0.09231213528641674,-0.07072072244301793,-0.06295342928202799,-0.1007881287920736,-0.08595135495370122,-0.10961762496888862,-0.06166084112722534,0.03713851821504187,0.034320737300793706,0.13381905435460134,0.07683911743095208,0.012707828646872515,-0.009359076535763603,0.03638005417106706,-0.01755115915276098,0.037927136960590344,0.04154758370677132,0.01927317512660124,0.006999075267435047,-0.024366616508334268,-0.2470523128575162,-0.23207970399914474,0.11750846220216364,-0.13669633889630312,0.1464147482527115,-0.01822575705025917,0.1286168087497545,-0.22341852202979223,-0.22218723330110354,-0.2689241105255391,0.10844462451519662,7.9120501022388225,21.072752895937157,9.918128477809255,13.192891090240483,29.562459786576973,36.37072718474639,37.88688876727366,38.262763767273654,38.662738767273666,72.3829642115649,57.50373743828678,3.747980310135065,11.13124646314306,0.0,14.879226773278123,12454.417235274967,11469.641953072605,2038.9427552721809,253.0,61.0,86.0,117.0,153.0,179.0,214.0,239.0,249.0,504.3199371280012,39.0,5.303304908059076,6.20455776256869,7.152268856032539,8.08301991917133,9.039907859574642,9.98594273247232,10.949103342801886,11.90536612195564,12.873314666161262,0.5708333333333335,0.9697000000000002,1.1371770645542303,0.5252143868120888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6220875149700598,0.9554901960784317,0.9980335032774944,0.571561668023611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,4.0,0.0,0.0,1.0,1.0,9.0,1.0,2.0,0.0,7.0,0.0,3.0,0.0,0.0,20.313920779602988,17.991177721861543,0.0,0.0,0.0,4.794537184071822,14.905862972149976,0.0,6.578935683598497,33.770968905596376,68.61737554512764,29.210549437028924,6.103966387748303,192.2054608177703,-633.29179008756,-35.486759329802986,-7.9161473760945,-25.331671603502404,535.3252495288145,1763.8265016548844,30.728110404390108,22.04783127068606,32.069572757361534,0.4666666666666667,0.81018181655162,0.1353224525150887,62.10967178822719,0.126382132281451,22.430449365737633,0.1898181834483802,8.0,0.07692307692307693,0.22426612151903347,0.5021903904195489,0.7394496672277378,0.8753949169802748,0.8912128760742529,0.8951673658477476,4.482400000000005,,1.7857142857142858,2.0856212191717076,1.489304286185103,1.7805938315565375,-7.530129222398548,1.8746940024479806,1.771494787537799,-3.0326161248350116,134.87789999999998,28.963864854656265,0.0,5.316788604006331,39.732357023836705,109.83608339748945,0.0,12.654955790432378,0.0,0.0,4.3694478524670215,0.0,5.777652323222656,2.3978952727983707,7.387090235656757,4.844187086458591,9.097283649683886,7.080867896690782,10.871782326157078,45.66666666666668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.57600000000002,4.01331820071119,38.90448574436311,0.0,0.0,0.0,1.751955708648599,0.0,-1.5315741934372087,90.97416516433843,11.050456081168516,9.589074368143644,0.0,47.429992475475345,14.268263091671919,33.99868954667452,85.48234340509659,12.654955790432378,0.0,0.0,0.0,42.0171509449671,49.76700119760478,45.165258547613654,437.59137489273746,,387.5926884811407,380.0708967224608,391.9967603701813,387.71210359240115,610.6975911924903,385.22231034123683,387.9634524837396,505.082323403743,45.165258547613654,437.5913748927376,,386.00538689383916,378.2170111943083,390.67293433801683,386.12935351990643,615.2993368284007,383.55591567239406,386.38879045037265,506.93558881336446,5.2893264402819495,321.74611845816884,,280.75815384339154,274.13778995149517,284.3978654912696,280.86259303787386,475.61663877880477,278.65953437634425,281.0858978398761,383.678395586624,1.2545905152114905,12.155315969242707,,10.766463568920576,10.557524908957244,10.888798899171702,10.769780655344476,16.963821977569175,10.700619731701023,10.776762568992767,14.03006453899286,2.67025767713853,217.85307771313296,,192.9396317128165,189.1938995321879,195.12825882533787,192.9990850131542,302.95018463063076,191.75904164468102,193.12428322072878,251.01077070175666,76.43921568627454,0.0,8.194580003504552,0.0,0.0,5.919555575538204,11.568159300807245,79.84268026219955,6.161937668803684,2.2354427280171327,11.448709747985767,0.0,-1.875119977278221,0.0,-1.708117174330717,0.0,0.0,45.72493344188888,589.4321525056865,113.42354354900807,253.98492305406396,373.97981008017166,442.7346975823352,450.7346975823351,452.7346975823352,1626.0,156.49678616879737,138.0985578408984,87.82620664313512,127.95,127.95,0.875,7.572502985020384,6.285402218862249,4.368872448676884,5.905849685857983,,5.904000750395958,5.90385878693278,5.905048117745603,5.904005602213729,5.90008389781495,5.904010137617763,5.904001392776019,5.902878946643876,0.12135756801880232,0.16405138016272175,,0.16400002084433216,0.16399607741479943,0.16402911438182233,0.16400015561704803,0.16389121938374862,0.1640002816004934,0.16400003868822274,0.16396885962899654,2.755438800378706,3.0568771773691528,,3.056564059859814,3.0565400142717487,3.0567414437226614,3.0565648816442246,3.0559004162412706,3.056565649834941,3.0565641686640053,3.0563740344196906,399.9200000000019,5873.789511342905,253.00592946791542,,252.33112270280893,252.40919745416596,252.25282606002702,252.32983322321007,251.70737298522516,252.3529859657407,252.32767544668513,251.7606083658733,163.16081975952514,7.027942485219873,,7.009197852855803,7.011366595949054,7.007022946111862,7.009162033978058,6.99187147181181,7.009805165715019,7.0091020957412535,6.99335023238537,9.959189122622655,6.8143467705470275,,6.8116760494379776,6.811985415457936,6.811365708042448,6.811670939157169,6.80920103992451,6.811762690814513,6.811662387707967,6.8094125146669695,11.448709747985767,38.90448574436311,13.803602028824379,4.211438401207486,-0.11044655698345873,0.12322052870559874,4.494425235014714,12.207898204215741,0.0,507.6072565381948,139.8353754412451,-460.7392258990628,-25.81770722310986,-5.759240323738285,-18.429569035962515,389.4655590561612,1283.2379476771096,22.355643990114217,16.040474345963872,23.331599048674722,3774.0,75.0,3.9941684862244258,2.8653815188452736,0.3238959454956774,0.29740950839602887,1.4329442912743366,1.0338300529678,0.2994337989362603,0.21925030747630075,0.0,0.0,0.0,0.0,0.08333333333333333,0.07216878364870322,0.35703808753134775,0.2832448773484406,0.7708044427754137,0.5718202672321149,26.465890847321376,22.25567528239138,16.868717478152785,13.652944014122408,16.5618705819191,12.546864074211546,14.547242295595625,10.747787528841693,11.768388760439663,8.130709762343297,9.481579938486437,6.385125762698001,6.782577466333497,4.1992812946157985,4.929894808192612,2.736796784897501,9.859543860601352,7.038277724379109,16.84451326919083,11.252136382931583,28.666727488374416,18.527010632395733,125.24506825985029,60.750403543707485,36.84659409507889,28.113935393566585,26.84982892064609,25.985443301668617,200.0,247.0,83.11089199999996,50.21710800000005,0.3125,261.08,14.54861111111111,7.722222222222219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,80.0,0.0,1.0,83.0,0.0,4.0,4.0,79.0,4.0,39.0,79.0,0.0,0.0,2.0,28.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,7.0,3.0,0.0,36.0,8.0,0.0,2.0,6.0,0.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,3.784189633918261,5.746203190540153,4.23410650459726,4.574710978503383,4.919980925828125,5.176149732573829,5.3471075307174685,5.572154032177765,5.683579767338681,5.746203190540153 +5405,CC(C)(C)c1ccc(C(O)CCCN2CCC(C(O)(c3ccccc3)c3ccccc3)CC2)cc1,0,18.026315789473685,5.689011842105264,2.960526315789474,4.552631578947368,160.80507581959486,70.6084545657895,1.446978119721171,5.781957894736841,2.8755482456140355,7.284981631578948,203.98776453680384,21.0126582278481,6.033860759493671,3.6582278481012658,4.670886075949367,143.34206709728366,77.90112174683547,1.831913215974684,6.193778481012659,2.6009142053445853,7.4904677468354395,255.48485069590924,17.37062937062937,5.894678321678321,3.3846153846153846,3.5524475524475525,150.53170378656185,63.06188742657346,1.58070232673835,6.025363636363636,2.3517871017871013,7.410830209790207,214.21135248687247,14.246376811594203,5.795623188405797,2.8260869565217392,2.5555555555555554,154.07988443976697,49.799273342995185,1.384700312985589,5.907688405797104,2.356011808910359,7.3605467826086945,180.3975851319389,11.736220472440944,5.704259842519686,2.405511811023622,1.8858267716535433,159.20515299241347,39.854208704724385,1.206543741030441,5.792606299212599,2.2905730533683286,7.32527768503937,152.24226051341688,11.01556420233463,5.65233073929961,2.2762645914396886,1.7898832684824904,159.7695180800854,36.88138756031128,1.1872287890705366,5.7388665369649825,2.179150453955901,7.279741276264591,146.82354946690336,10.244897959183673,5.526155102040815,2.2653061224489797,1.546938775510204,160.63022140829068,34.177665620408156,1.1480306649792653,5.614936734693878,1.889795918367347,7.164491444897958,139.15991232991394,10.514018691588785,5.640018691588786,2.2710280373831777,1.4672897196261683,162.0554305918993,34.95545659345794,1.1183459416169814,5.718960280373832,2.0885254413291796,7.274535532710283,137.253520560829,9.666666666666666,5.683486772486773,2.1375661375661377,1.2380952380952381,163.3564232845352,31.009810719576716,1.0892833771237729,5.752912698412698,2.123971193415638,7.333936973544975,132.13679131556526,6.680055401662049,0.06275268351800549,0.008481371729546923,0.5905470914127423,2.6800554016620493,1.3692757013577748,32.08928226229225,0.24037666944499922,0.06482520775623261,0.7295802554632198,0.0342916530470914,53.554216307687,0.20968477155580564,-0.0018838627318627662,-0.0032821793046464865,0.22107849153196113,0.7753076896104348,0.01565174256051955,1.0479813962687174,0.013642980769981234,-0.0013735755110626546,-0.10525341779943988,-0.0016028309285038079,2.570745998119675,0.16775468299014049,-0.0010490950012589952,-0.0004892203196968824,-0.08033362067295587,0.03746392112043087,0.07594665831707946,0.8153334460257559,0.007022189726065096,-0.0004146078298431954,0.011674651910108967,-0.0008723619171687062,1.8152719201439351,-0.541102948064287,-0.0020929390481351233,0.00041241580476400306,-0.06938004335782248,-0.1531039650996294,-0.12824115327992697,-2.643482075348434,-0.029176356809382745,-0.0023942644559529387,0.03057685530887988,-0.0008934966779075849,-5.652575821665713,-0.2577595044386763,-0.004059972162845945,-0.000639073130460085,-0.018696697711954972,-0.19062315963967114,-0.03127935841166312,-1.2226075317182696,-0.006159919589678217,-0.0039325223024407,-0.027404252792500677,-0.0023883283475472764,-1.5432645481892113,-0.3651874925897583,-6.528490358588551e-06,0.0003753153612046117,0.0038620832749496044,-0.08605581124632183,-0.02754404006646498,-1.7467434087698195,-0.00529807511760107,-0.0012365122821388784,-0.05346826260818954,0.0007328943622880673,-2.309621485228052,0.14325286901464176,0.0035570533240996695,3.155922532851533e-06,-0.039687800327887386,-0.037842727118548296,-0.11656597406160507,0.6408491210052857,-0.011007820487984899,0.003750023178246332,0.0007776333063234687,0.0014646676833060094,-1.151079989516376,-0.16038004504621126,-0.0010405093910994827,0.00028730754531965,-0.04935181349833017,-0.29220493437233036,-0.1071527310668367,-0.7929341997615009,-0.014303626646380033,-0.0008480803582985981,-0.0022291186648372044,-0.0008908264361715901,-2.4240952900023487,-0.9263656216564802,-0.014608642860806941,-0.0008053710981812268,0.01945012384763078,-0.41536590013044317,0.042261438474455244,-4.332540226021011,0.002026169900867264,-0.015103932345483552,-0.1635519516790678,-0.007185637174075538,-2.547766870248316,,,0.48761904761904773,1.0928571428571427,0.5142857142857142,0.0,0.5785714285714286,-0.06428571428571428,1.1510881076662536,0.018095810142194323,0.027924381570765752,0.8344775504417784,0.19581486578794147,0.2836382829948098,1.985565658108032,0.47945314878275125,2.0333278060921214,1.8671134347124227,0.06362604503276123,0.10258832634693749,0.0,0.16621437137969874,6.2014964414737,1370.0,432.36490000000003,225.0,346.0,12221.18576228921,5366.242547000002,109.970337098809,439.42879999999997,218.54166666666669,553.6586040000001,15503.07010479709,1660.0,476.675,289.0,369.0,11324.023300685409,6154.188618000002,144.72114406200004,489.30850000000004,205.47222222222223,591.7469519999997,20183.30320497683,2484.0,842.939,484.0,508.0,21526.033641478345,9017.849902000005,226.04043272358405,861.627,336.3055555555555,1059.7487199999996,30632.223405622764,2949.0,1199.694,585.0,529.0,31894.53607903176,10308.449582000003,286.6329647880169,1222.8915000000004,487.6944444444444,1523.6331839999998,37342.30012231135,2981.0,1448.8820000000003,611.0,479.0,40438.10886007302,10122.969010999994,306.462110221732,1471.3220000000001,581.8055555555554,1860.620532,38669.53417040789,2831.0,1452.649,585.0,460.0,41060.76614658195,9478.516603,305.11779879112794,1474.8887000000004,560.0416666666665,1870.8935079999999,37733.652212994166,2510.0,1353.9079999999997,555.0,379.0,39354.40424503122,8373.528076999999,281.26751291992,1375.6595000000002,463.0,1755.3004039999998,34094.178520828915,2250.0,1206.9640000000002,486.0,314.0,34679.86214666645,7480.467710999999,239.32603150603404,1223.8575,446.94444444444446,1556.7506040000005,29372.253400017406,1827.0,1074.179,404.0,234.0,30874.36400077715,5860.8542259999995,205.87455827639306,1087.3004999999998,401.43055555555554,1386.1140880000003,24973.853558641837,507.6842105263157,4.769203947368417,0.6445842514455661,44.88157894736842,203.68421052631575,104.06495330319088,2438.785451934211,18.26862687781994,4.926715789473679,55.4480994152047,2.6061656315789463,4070.1204393842117,16.565096952908647,-0.14882515581715852,-0.2592921650670724,17.46520083102493,61.249307479224356,1.2364876622810446,82.79053030522869,1.0777954808285175,-0.1085124653739497,-8.31502000615575,-0.12662364335180082,203.08893385145433,23.98891966759009,-0.1500205851800363,-0.06995850571665418,-11.48770775623269,5.357340720221615,10.860372139342363,116.5926827816831,1.0041731308273087,-0.05928891966757694,1.6694752231455823,-0.12474775415512498,259.5838845805827,-112.00831024930743,-0.43323838296397055,0.08537007158614864,-14.361668975069254,-31.692520775623283,-26.54591872894488,-547.2007895971258,-6.039505859542229,-0.49561274238225833,6.329409048938135,-0.18495381232687008,-1170.0831950848026,-65.47091412742378,-1.0312329293628701,-0.16232457513686158,-4.748961218836563,-48.41828254847647,-7.944957036562432,-310.5423130564405,-1.564619575778267,-0.9988606648199377,-6.960680209295172,-0.6066354002770082,-391.9891952400597,-93.85318559556788,-0.0016778220221572576,0.09645604782958521,0.9925554016620484,-22.11634349030471,-7.0788182970815,-448.9130560538436,-1.361605305223475,-0.31778365650969176,-13.741343490304713,0.1883538511080333,-593.5727217036093,35.096952908587234,0.871478064404419,0.0007732010205486256,-9.72351108033241,-9.271468144044333,-28.558663645093244,157.008034646295,-2.6969160195563,0.9187556786703514,0.19052016004924982,0.35884358240997233,-282.0145974315121,-34.32132963988921,-0.2226690096952893,0.061483814698405095,-10.561288088642657,-62.531855955678694,-22.930684448303055,-169.6879187489612,-3.060976102325327,-0.1814891966759,-0.4770313942751618,-0.19063685734072028,-518.7563920605027,-175.08310249307476,-2.7610335006925117,-0.15221513755625185,3.6760734072022174,-78.50415512465376,7.987411871672041,-818.850102717971,0.3829461112639129,-2.8546432132963915,-30.911318867343816,-1.3580854259002766,-481.5279384769317,0.7111626939784248,0.6151140731954208,0.44160158440516567,0.3454031193742292,0.289619612400868,0.20637743397393007,0.18241735277176946,0.11027958698774411,0.1181269139384931,0.06443632417889832,0.07503987671809552,0.03720719471861624,0.04729507137671977,0.02196979867154487,0.032492172506626595,0.013518717747263891,8.007254835150375,5.685389034834721,3.513761925535725,2.185118544522169,0.3528059386704252,-0.37276916540125626,4.033982402253968,0.9891201116261926,5.013274460390793,0.9898918928744445,14.543272688967056,10.94573812727953,16.003117819975387,11.696549762601302,2.007494229848377,0.787063913874199,3.455436681665019,2.2350600397374163,6.003641304274265,1.1350054735256363,3.6691304973636187,2.4310697340069822,20.916116536871307,14.707201946880232,0.18981395271013274,0.45349919189454074,0.6243030798778428,0.7466412358381703,0.8016801952761698,0.8016801952761698,1.210849986625669,992.9311441153958,0.0,0.0,6.0,0.0,14.0,5.0,4.0,2.0,1.0,5.021837265649229,3.3185804942935255,2.215284459668001,1.4250495068920808,1.069529112041371,1.069529112041371,312.32196856317194,1762.12832742316,45.23728192163962,23.18589904504158,44.66174179294238,,18.0,1092.0,11.70501719873199,10.213054789681411,11.332896515558172,0.0,62.007910184532754,5.563451491696996,0.0,36.39820241076966,74.20205787761525,0.0,17.06666666666667,38.25,18.0,0.0,20.25,0.0,0.012380952380952286,-2.25,0.06823498139287637,0.040145576707727115,-0.028089404685149255,0.024607464607464546,0.06835056746532109,0.0,0.5096491228070167,0.7552380952380948,0.4414141414141403,0.46950354609928957,0.7306306306306303,40.28808376831888,0.6333533549768013,0.9773533549768013,29.206714265462246,6.853520302577952,9.927339904818343,69.49479803378112,16.780860207396294,0.6456494325346789,0.12695312499999997,0.058593749999999986,0.19921874999999994,0.4375,0.2965037629728923,-0.6808502282688116,-0.022113041836233385,-0.008958555635115942,-0.0206318250990549,0.7034962370271076,1.6154114496346081,0.03683648827039497,0.021255413810981685,0.0375677081310374,-7.030071589547367,1.0135374537094146,0.9818432617203277,1.3595912953425264,0.9941774378499939,0.7713914238053186,1.1699194283413012,1.015004128295613,1.085297448254517,0.9786348355031866,1.071058995355273,0.9893138761187392,1.0601564717275291,1.0010490235453953,0.9977750395783309,1.0384224559917001,1.776236077027634,1.17803707919987,1.0735400425507846,1.002204495553476,1.0379785243013386,0.9866819208421816,0.7863658397421067,0.9651624004415776,1.0174346434564356,1.097624005745417,1.0974395520171165,0.9985082545975726,1.445026533933268,1.1500112346927314,1.1518724543916314,1.0988781297884773,1.1532686876952476,1.087055996506168,0.9939968745802565,1.10643084002244,1.1261563234288157,1.0567902978020347,1.3200000417097923,1.2464459577339158,1.0296123934376278,1.1039263260697065,1.004813149691901,1.053257108048072,1.0098489954420495,1.2702047894657458,1.4263193333645439,1.4272245847873493,1.0075782754467835,1.0536513996245296,1.1097280623055044,1.092019073967836,0.7705101485580528,1.0014930775495432,0.999569875804872,1.0519637987153658,1.003162662142215,1.1075532723464556,1.242602871897266,1.1345927288911506,1.0225035920579026,0.9322041070212038,0.6830558493642823,0.8195318980450623,0.8866871286773287,0.9145309286505301,1.062605708336057,0.936309104451136,1.0231677090396711,0.7240427931414255,0.5949901218710624,0.6010255932770364,1.0066866841961537,1.0234073588199846,1.1522818798202055,1.1045556028644106,1.007323749167756,1.1149750054336016,1.0662476094449884,1.02210341743036,1.0103194284874737,1.1216347163959413,1.034016653091056,1.1694689071049817,1.0029952164145088,1.1673767233066425,1.6706100738523675,1.5382268218870787,0.8001656638420053,1.1835548172757477,0.9368189225791569,1.1581114574741775,0.9275392694601545,1.5917667823335746,1.7177570275338319,1.771144845694355,0.9863379140674662,8.0,0.2558922558922559,5.333333333333334,3.125,1.3822222222222227,0.9930555555555557,0.8865306122448979,0.49826388888888884,0.1846812799193751,0.17375000000000002,6653.944755887431,7905.018892927109,3193.879204115612,2770.920170797645,18.33173708656133,0.47018672329489,9.712397693527645,0.8874574193741699,0.0,0.4375,1.226090247794356,2.9293470191500597,4.032643053775584,4.8228780065515044,5.178398401402214,5.178398401402214,0.21052631578947364,0.00947749095897244,0.09876543209876548,0.05387931034482759,0.025131313131313143,0.019471677559912855,0.01970068027210884,0.01277599715099715,0.00615604266397917,0.006435185185185185,0.46231944515553547,28.019390581717452,12.697530864197532,7.1053061224489795,210.99725115424363,0.0,4.480257358203037,261.45256213052033,,231.42056842500233,229.83177642810818,228.89247283409597,231.435406832466,259.1676704313605,230.76408020678596,231.5144868457639,249.61572861349887,0.03138967552628897,-0.03002043301179676,-0.3869868470936389,0.37436217152993484,0.2892879337977954,0.011430672833089253,0.032658299668490515,0.05675667610122577,-0.02118891028051649,-0.144265715815751,-0.04674113920092164,0.04800268168149215,0.025112768218718943,-0.016717930492294895,-0.05768174480462452,-0.13603253972647114,0.013978786071809352,0.05546484045672519,0.025408279292798173,0.029213274908411396,-0.00639578096536579,0.016001874807722947,-0.025439482779401897,0.03389596646722616,-0.08100276352942469,-0.033352184015120266,0.04862607346017535,-0.11748435368947016,-0.057127164238724784,-0.09365619586527604,-0.08237897169968054,-0.1213776564786734,-0.03693415785038872,0.041910201214897524,-0.026055806545125737,-0.10554866099038332,-0.03858643213865318,-0.06469798477512163,-0.07535020876796596,-0.0316599607107159,-0.07112657429449229,-0.022843725613947933,-0.03810018316162035,-0.025626112567000488,-0.06066347395643491,-0.03756166999763634,-0.06964751288797531,-0.0288168636307296,-0.054668332915157686,-0.00010403523789887561,0.04425172875009232,0.006539839635329497,-0.03210971355030717,-0.02011577364525807,-0.054433857214139,-0.022040721047652784,-0.019074559495260452,-0.07328633444752677,0.02137238357339064,-0.043126790838624154,0.021444862415212807,0.05668368465994052,0.00037210048486108785,-0.06720514063145047,-0.014120128671623709,-0.0851296593856286,0.019970815045568663,-0.04579404695722189,0.05784822460342653,0.001065863968357723,0.04271207577233556,-0.021493732312373576,-0.024008789658586886,-0.01658111387062725,0.03387512709987044,-0.08356964959435799,-0.10902943804486953,-0.07825504459078912,-0.024710250397007756,-0.059505053794968475,-0.01308257061801795,-0.003055344012046911,-0.025977937982407925,-0.04526432197373789,-0.13867633813725455,-0.23279710192178982,-0.09495764645894726,0.03293577113571252,-0.15498407229673386,0.030864082691709767,-0.13501518016537656,0.008429145413926593,-0.2329947387485447,-0.22417266702924493,-0.20954478817943775,-0.047573600099206706,37.73261625122352,25.181420092470024,2.811100340826047,10.156299735944494,23.62717438678411,30.026250901936482,34.33575617589927,34.69412073390878,34.69412073390878,71.16647321322425,65.3489702149348,2.226911576146643,3.590591422142812,0.0,5.817502998289456,14060.685564810086,13212.30779378762,1852.113521637386,116.0,54.0,70.0,85.0,104.0,110.0,126.0,114.0,112.0,471.3137295520012,38.0,5.220355825078324,6.07073772800249,6.955592608396297,7.827639546366422,8.720134035412928,9.602179736502535,10.49893921062262,11.386965337842025,12.286329176495727,0.5614035087719299,0.9487894736842104,1.1213545808586012,0.5167248005118116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6577569571383548,0.9376676986584108,0.9805937823436961,0.5959872599012289,14.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,2.0,7.0,0.0,0.0,0.0,2.0,1.0,2.0,0.0,0.0,15.11296452053189,5.601050810983688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.70035055753445,78.90425819178792,0.0,6.103966387748303,227.53403279330917,-522.4776799220958,-16.969327929862878,-6.874706314764419,-15.832656967336238,539.8560013564811,1239.6506475010642,28.267953991776743,16.31119273027716,28.829084825606145,0.5,0.9503789300492701,0.1691535153066791,21.312389325068928,0.09226732837631774,75.43090052654568,0.049621069950729874,9.0,0.21052631578947367,0.19623951224725214,0.4688509930448171,0.6454369140964901,0.7719164468816547,0.8288185786822784,0.8288185786822784,6.445800000000008,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,144.38259999999983,10.213054789681411,0.0,4.899909730850478,5.917906046161393,63.57450575890468,19.634269217737724,107.18294492525057,0.0,0.0,4.343805421853684,0.0,5.680172609017068,0.0,7.224753405767971,0.0,8.857799727175905,0.0,10.538926167950644,42.66666666666667,28.702069451425807,0.0,0.0,0.0,0.0,0.0,4.254891548175526,0.0,72.10799999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.2229481452537,0.0,0.0,0.0,34.747233738269614,11.016041280380467,5.917906046161393,74.81227044531221,84.92913895846256,0.0,0.0,0.0,39.27108483889768,49.98952874251496,45.352313606666826,522.9051242610408,,462.8044021561271,459.6290215154554,457.7980425409717,462.834183302836,519.408449001465,461.4893817809439,462.99255925761065,499.6783826607416,45.352313606666826,522.9051242610408,,462.22822213327447,458.9584504857406,457.2918409217249,462.2595683198442,521.0181112095811,460.8881105838301,462.4205367707689,500.3487708113573,4.992648329971877,407.8142055847462,,366.7588090806887,363.8825844032499,361.77361888774783,366.7844498307561,414.8716811806587,365.5516017944985,366.9307597791536,399.0854955129437,1.2957803887619093,14.940146407458307,,13.222982918746489,13.13225775758444,13.079944072599192,13.223833808652456,14.840241400041856,13.185410908026968,13.228358835931733,14.276525218878332,2.4963241649859382,261.45256213052033,,231.42056842500233,229.83177642810818,228.89247283409597,231.435406832466,259.1676704313605,230.76408020678596,231.5144868457639,249.61572861349887,71.26274509803922,0.0,6.631387628193947,0.0,0.0,0.0,22.75094411367704,74.5251274581209,6.583794539893162,0.0,0.0,0.0,-0.23770245329117046,2.488420781893004,-0.8404722766339823,0.0,0.0,45.2950317524934,729.3113195857505,93.18285883237105,222.63037345540454,306.4808720869444,366.53872849791435,393.5582785065683,393.5582785065683,964.0,151.56887320471935,38.07871456403973,71.64545733176529,43.7,43.7,1.0,8.14777218184013,6.247927513443585,4.079811580623617,5.830467360936247,,5.841101369682037,5.8401666513703505,5.839733159740113,5.8411103909459845,5.851134082800334,5.840724820143004,5.841155224640289,5.849568031938336,0.11656604516067477,0.1665847817410356,,0.16688861056234391,0.16686190432486717,0.16684951884971752,0.1668888683127424,0.16717525950858098,0.16687785200408584,0.16689014927543683,0.16713051519823818,2.6588137746253513,3.0158601304708554,,3.0176823382534925,3.0175223011219074,3.0174480724662773,3.017683882698009,3.019398471258401,3.0176178706723036,3.0176915582116086,3.0191307863184735,401.32000000000187,2822.901083834937,239.00667465711516,,237.29202441107006,237.3812945429003,237.57505958576363,237.29161357580492,236.9189028195187,237.33483185942887,237.2861955635713,236.7052058978502,80.65431668099819,6.828762133060433,,6.779772126030573,6.782322701225723,6.787858845307532,6.779760387880141,6.769111509129106,6.7809951959836825,6.779605587530609,6.76300588279572,9.19828335675662,6.7292544474725435,,6.722054521642263,6.722430654571239,6.723246582400939,6.722052790291949,6.720480868876689,6.722234905233748,6.722029957314387,6.719578478427231,0.0,2.488420781893004,22.75094411367704,3.4144192715415436,0.1763621978840091,28.702069451425807,3.2342193976758367,9.566898119236093,0.0,484.7512342912333,174.60734919549702,-400.9441646379203,-13.022093139596464,-5.2755811136568465,-12.14982317084607,414.28011531691925,951.2955527196513,21.692546179094254,12.5170467463112,22.1231523888291,4424.0,58.0,3.146093790133116,2.2471335160480694,0.3849001794597505,0.2822748612183951,1.1952013993873836,0.5094766155823098,0.2886751345948129,0.12098733808812767,0.0,0.0,0.0,0.0,0.0,0.0,0.3707908118985982,0.15647753012452648,0.29243349348064684,0.1399198189985167,24.89069428924487,21.528992561839726,16.780860207396294,13.125318536220709,15.639459069646872,11.144381434592225,12.769214694023862,7.719571089142088,10.040787684771914,5.4770875552063565,7.8041471786819345,3.869548250736089,5.202457851439174,2.4166778538699356,4.094013735834951,1.7033584361552503,6.6829614680928735,3.528834334831883,9.869847317182538,4.557072339595951,14.394103357051371,5.725340383338628,123.36390849943892,79.64241605303307,51.40523971823468,35.189081675272575,32.81068232323714,32.810682323237145,184.0,216.0,83.48251299999997,42.84148700000003,0.3815789473684211,254.03,11.152777777777779,7.6111111111111125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,18.0,76.0,0.0,1.0,79.0,18.0,0.0,9.0,70.0,18.0,38.0,61.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,3.0,2.0,1.0,35.0,3.0,0.0,1.0,2.0,0.0,4.0,8.0,0.0,0.0,0.0,0.0,3.0,3.871201010907891,6.483083459734485,4.400603020246817,4.903421209789107,5.3735407877856245,5.857039898506244,5.905021190582361,6.209972370017663,6.228757521526611,6.353391301118328 +5281078,COc1c(C)c2c(c(O)c1C/C=C(\C)CCC(=O)OCCN1CCOCC1)C(=O)OC2,0,21.870967741935484,6.273627419354837,3.0161290322580645,7.451612903225806,163.84058816531,86.08943262903229,1.3490343233922415,6.317327419354837,4.540322580645161,7.8285145161290295,201.00861983170333,23.84375,6.417578125,3.65625,6.40625,146.33914164137747,89.66993814062505,1.674592770093751,6.549429687500001,3.0512152777777777,7.858669187499995,247.8748268938827,18.939655172413794,6.355250000000001,3.3017241379310347,4.939655172413793,158.17101591640247,69.54463821551722,1.3677902214494038,6.430544827586206,2.9932950191570877,7.889487344827585,197.56344547116956,17.485714285714284,6.233100000000002,3.0357142857142856,4.114285714285714,156.43207993952842,62.980199657142855,1.351413970909157,6.318930000000002,2.847222222222222,7.773136799999999,189.74471040344054,15.327272727272728,6.171848484848485,2.521212121212121,3.466666666666667,158.0849259973071,53.8118804181818,1.2142516145510482,6.243738181818181,3.168181818181818,7.7516098666666675,165.4540092437308,12.422222222222222,5.9932222222222205,2.2222222222222223,2.4,163.95107622553968,42.58130818888888,1.0455911870102557,6.045237222222223,2.6878086419753084,7.632359200000006,137.65687212479648,12.73076923076923,6.1364935897435915,2.230769230769231,2.25,165.33246083851097,43.46718847435899,1.0491440206753593,6.176430769230769,2.990918803418803,7.777646256410257,140.59124247876025,13.378787878787879,6.148659090909093,2.4393939393939394,2.3181818181818183,161.75367950969343,45.500692265151514,1.151607267455106,6.206833333333334,2.88047138047138,7.764212939393939,154.7264959454088,13.124031007751938,6.014496124031009,2.24031007751938,2.62015503875969,159.10084707804023,44.47974424806201,1.1535702126164884,6.087617054263568,2.833763996554694,7.61567423255814,150.5589305594528,7.868886576482832,0.16236495837669085,0.02843805880314942,0.5684183142559834,4.417273673257024,1.3195917014075662,37.20204527185223,0.22288261888030403,0.15011594693028096,1.6722164412070752,0.10710777211238291,48.87115796663608,0.42647632674297653,-0.001986203336368203,-0.012378916753628604,0.26147079864724276,1.438573100936524,-0.27100530624527547,1.978399928500587,-0.02693994463924384,0.0009231659729450423,-0.06102132471962082,-0.004932392072060441,-1.5636687502767534,0.5223814991567688,-0.003297758710394926,-0.001695987762854472,0.030858660160034482,0.15030141016900486,0.23025191790337016,2.5873218849886963,0.036842034547173136,-0.0020078546054754817,0.10674320531374966,-0.0018028410779002788,7.23328437082535,-0.4255686041325998,-0.00835196298498581,-0.0012168000703888149,-0.10413259997026901,-0.27948565482384424,0.035503136760145895,-2.020417292359149,-0.011586131265896957,-0.007779011446409898,-0.08709099317840212,-0.0058347204994797395,-2.389644162624085,-0.6514867719862517,0.0054797728061047836,0.0030027034055656074,-0.08493835335666762,0.029451644436035644,-0.2261298847775365,-3.2279092753712977,-0.03974351161627984,0.003646702141077835,0.10715794784473238,0.004787548317724575,-8.156714981019311,0.2307550005781015,0.00027484449069249683,-0.0015051377170117322,-0.023615446872470816,-0.08178980228928201,-0.06217725298475379,1.0823386557463286,-0.007139218750075798,0.0012204419586078598,0.006407612954612586,-0.0016237412880101203,0.00904861681734026,-0.3482083299981321,-0.01622096540729473,0.0014543285047210303,-0.01506843832546227,-0.7901024573761305,0.13920300455171525,-1.5176633555991355,0.02335546900998559,-0.015188351810347105,-0.2131421373747076,-0.009675739854318457,2.660446857038982,-1.4773909753098096,-0.03707437919780528,-0.0017578039352472918,-0.07904881278970773,-1.1533440544886955,0.032332222495900675,-6.842402246558984,0.0016497918909792499,-0.03517712728218706,-0.3285241418696153,-0.022581160675432824,-3.2552066946022986,-1.2429800998636757,-0.0036129828828175264,-0.0025061746165432044,0.0066004404326888136,0.14511692439238827,-0.37048938933886627,-6.047038083430131,-0.06060350941215343,-0.005018285014802119,-0.10301858618776553,-0.0011436945930030234,-12.659455021412336,,,0.45913978494623664,1.0,0.3548387096774194,0.03225806451612903,0.6451612903225806,-0.2903225806451613,1.0666153318522622,0.0160093840904062,0.024331964735567493,0.8219114481174061,0.20755881010591434,0.2736645013641019,1.8885267799696683,0.48122331147001624,2.012440439912181,1.5145898573125336,0.0709033039480809,0.4269472786515666,0.0,0.4978505825996476,6.9872589085806585,1356.0,388.96489999999994,187.0,462.0,10158.116466249221,5337.544823000002,83.64012805031898,391.6742999999999,281.5,485.36789999999985,12462.534429565607,1526.0,410.725,234.0,410.0,9365.705065048158,5738.876041000003,107.17393728600007,419.16350000000006,195.27777777777777,502.9548279999997,15863.988921208493,2197.0,737.2090000000001,383.0,573.0,18347.837846302686,8067.178032999997,158.66366568813083,745.9431999999999,347.2222222222222,915.1805319999999,22917.35967465567,2448.0,872.6340000000002,425.0,576.0,21900.49119153398,8817.227952,189.19795592728198,884.6502000000003,398.6111111111111,1088.2391519999999,26564.259456481675,2529.0,1018.355,416.0,572.0,26084.012789555672,8878.960268999997,200.35151640092295,1030.2168,522.75,1279.015628,27299.911525215583,2236.0,1078.7799999999997,400.0,432.0,29511.193720597144,7664.635473999999,188.206413661846,1088.1427,483.80555555555554,1373.8246560000011,24778.236982463364,1986.0,957.2930000000002,348.0,351.0,25791.863890807712,6780.881402000003,163.66646722535606,963.5232,466.58333333333326,1213.312816,21932.2338266866,1766.0,811.6230000000003,322.0,306.0,21351.48569527953,6006.0913789999995,152.012159304074,819.302,380.2222222222222,1024.876108,20423.89746479396,1693.0,775.8700000000001,289.0,338.0,20524.00927306719,5737.887008,148.81055742752702,785.3026000000002,365.55555555555554,982.4219760000001,19422.10204216941,487.8709677419356,10.066627419354832,1.763159645795264,35.241935483870975,273.8709677419355,81.8146854872691,2306.526806854838,13.81872237057885,9.307188709677419,103.67741935483866,6.64068187096774,3030.0117939314373,27.294484911550498,-0.127117013527565,-0.7922506722322307,16.734131113423537,92.06867845993753,-17.34433959969763,126.61759542403757,-1.7241564569116057,0.05908262226848271,-3.9053647820557327,-0.3156730926118682,-100.07480001771222,60.596253902185175,-0.3825400104058114,-0.19673458049111875,3.579604578564,17.434963579604563,26.709222476790938,300.12933865868877,4.273676007472083,-0.23291113423515586,12.38221181639496,-0.20912956503643235,839.0609870157406,-59.579604578563966,-1.1692748178980132,-0.17035200985443408,-14.578563995837662,-39.127991675338194,4.970439146420425,-282.8584209302809,-1.6220583772255739,-1.0890616024973858,-12.192739044976296,-0.8168608699271636,-334.5501827673719,-107.49531737773154,0.9041625130072892,0.4954460619183252,-14.014828303850157,4.859521331945881,-37.31143098829352,-532.6050304362641,-6.557679416686174,0.6017058532778428,17.681061394380844,0.7899454724245548,-1345.8579718681863,41.53590010405827,0.04947200832464943,-0.2709247890621118,-4.250780437044747,-14.72216441207076,-11.191905537255682,194.82095803433916,-1.2850593750136436,0.21967955254941476,1.1533703318302655,-0.29227343184182164,1.6287510271212469,-54.32049947970861,-2.5304706035379776,0.22687524673648074,-2.350676378772114,-123.25598335067636,21.71566871006758,-236.75548347346512,3.643453165557752,-2.3693828824141483,-33.25017343045439,-1.5094154172736793,415.0297096980812,-195.01560874089486,-4.893818054110296,-0.2320301194526425,-10.43444328824142,-152.24141519250782,4.267853369458889,-903.1970965457858,0.21777252960926097,-4.643380801248692,-43.36518672678922,-2.9807132091571327,-429.6872836875034,-160.34443288241417,-0.4660747918834609,-0.32329652553407334,0.851456815816857,18.72008324661809,-47.79313122471375,-780.0679127624869,-7.817852714167793,-0.6473587669094734,-13.289397618221754,-0.14753660249739003,-1633.0696977621915,0.721938851925628,0.5965269359625225,0.45205826229001533,0.32172717085560715,0.2900003006967277,0.1743150854688334,0.18543066773878458,0.09830510944115935,0.11844688294989207,0.05188235457837618,0.07597991862396476,0.027778243413199923,0.0471997468083626,0.014812923111381946,0.031326304361325184,0.008610732055964802,8.031946196172967,5.676194386509558,3.55844162387405,2.174951900586695,0.47477814057146356,-0.5285989917622542,3.3164655463186716,0.9772114215808776,6.03078438188917,0.9950152553313978,14.5432770766446,10.936709180642701,16.017347485109035,11.687930850566786,2.005510360215131,0.7404527253627692,3.504633749866066,2.224684484513749,7.00936394453568,1.335413261854139,3.7175258074873834,2.4207316581486404,20.911128883283236,14.699769846327179,0.24179714985725728,0.529607732995832,0.7871285097366273,0.8351914446566532,0.8496902593685508,0.8496902593685508,1.368225514061654,856.2163393799153,0.0,2.0,9.0,0.0,3.0,3.0,5.0,0.0,0.0,4.472153146221091,2.7080806268927975,1.1296629035049648,0.835071572755119,0.7462042339756527,0.7462042339756527,332.0854373864579,2432.0194407273693,91.5616879818444,39.22612001173176,81.63048673426076,,17.0,907.0,5.969305287951849,14.69560176298435,23.88915057744567,42.74576164996884,43.98458916852982,0.0,7.109797541277533,19.92349450621513,4.899909730850478,18.947451815200196,14.233333333333336,31.0,11.0,1.0,20.0,0.0,0.04086021505376335,-9.0,0.15368490999154266,0.03348694316436285,-0.12019796682717981,0.01831317204301075,0.19579611650485396,0.0,0.5930107526881713,0.8860215053763436,0.4393258426966286,0.5595238095238084,0.8677083333333329,33.06507528742013,0.49629090680259225,0.7542909068025923,25.47925489163959,6.4343231132833445,8.483599542287159,58.54433017905972,14.917922655570504,0.518203883495146,0.17564402810304447,0.0,0.34426229508196715,0.5652173913043478,0.27072667964624075,-0.9091421306270161,-0.07722007862868242,-0.014663582752048645,-0.0606094753751344,0.7292733203537592,2.449012787148338,0.049209146247942155,0.03950020624432803,0.05210665504570932,-4.785547017221084,0.8263903811822267,0.7747184850365526,1.4257269181583014,0.7166976544622424,0.515069199057715,1.4988048726692735,0.8354691233899524,1.361307438111111,0.7499293925073869,0.6685483539894906,0.826043443329503,1.1466766353893327,0.9059507496648395,1.0253331679797213,1.1458815656109615,1.2235619032588965,1.04357916006661,0.9495313399425432,0.9035177704669446,0.8860517791243497,1.0074119659906453,0.6092858158273076,1.0257394202534118,0.8580358858782496,0.9922266407224088,0.9312606789926375,1.0132130909718726,1.4465315462569464,1.052411660777385,1.0996337571194346,0.9960367374788242,1.1337473079659632,0.9294659504437861,0.8584969281220063,0.9331141470713135,1.0819054893325502,1.0434577192180998,0.9125227930890976,0.8821794641467685,1.1486831703765341,0.9321022950351572,1.2011762776307968,1.0489281781361184,1.229428526445435,0.9200489383013571,0.9989301331087272,0.9181377797582085,1.1848610554012893,0.953724396837991,0.9498430519765793,1.0712798352089368,0.9808390541571317,0.9824983640884702,0.9780831673886747,0.9542486410750677,0.9965401983632969,0.949534159753532,0.8817733421297261,0.963828004400822,0.981677181785963,1.0679907211496074,1.2212225082993464,1.0628716387569572,0.9874963328052571,1.2378794056355893,0.8160994626681005,1.0609890168185365,0.8318732658550384,1.2159087970826534,1.4295261272353683,1.2250237256085177,0.8961934791853248,1.1792890889855976,1.2672124585927849,1.182376710039622,1.1998231745371333,1.288305760788093,0.9642168099658295,1.1743798831582715,0.986130637109194,1.267669555304009,1.4471362662090732,1.262921493092724,1.048224538776715,1.0952508359832616,0.8518660194942388,0.8592735214065567,0.8721551097156438,0.8218661261310616,1.2971826613352408,1.1036231628279904,1.310071825740446,0.8717019528364758,1.1715957439110871,0.8354726285323428,1.282046291618561,5.5,0.16589939802061013,3.7777777777777795,2.4375,2.1027777777777783,1.021111111111111,0.6196825396825396,0.3463364512471655,0.32125535399344923,0.2259413580246914,6004.465648058274,6891.080951261713,3014.2561247833987,2706.3623908370064,16.95506991438878,0.46367980151171967,9.093346461867661,0.8645577824939069,1.0,0.5652173913043478,1.482043164165784,3.2461156834940774,4.82453340688191,5.119124737631756,5.207992076411222,5.207992076411222,0.16666666666666669,0.006635975920824406,0.08395061728395062,0.05078125,0.046728395061728406,0.02687134502923976,0.01822595704948646,0.01117214358861824,0.011473405499766042,0.008690052231718901,0.43119580833199944,25.619834710743802,12.459259259259259,6.756679115196783,182.26544626551106,1.0,4.344264993004524,217.26920765458186,,183.25089272082843,180.866576438848,184.66019414805822,183.28882959273028,252.91218490975842,182.50101544493265,183.36825828418296,220.16117389223777,0.05419779820153403,-0.012232955658819933,-0.43529401353715746,0.45999713958810107,0.32566990577149574,-0.20537057481962248,0.053179869924987216,-0.12087054959503843,0.006149686238023684,-0.03649128379312734,-0.04605073912736346,-0.03199573767710306,0.06638569435197761,-0.020310778528603704,-0.059637958223317515,0.054288645151108705,0.03402583160716458,0.1744872430296188,0.0695478398050957,0.16529792557291617,-0.01337535849144661,0.06383336671220502,-0.01683202854792504,0.1480072229056543,-0.054082442286621034,-0.05143944277440113,-0.04278773311538614,-0.1831971232428897,-0.06327107521453812,0.026904637792338218,-0.05430930685651939,-0.0519831080777058,-0.05182002049404345,-0.052081172647445224,-0.054475229802722944,-0.048896818942892134,-0.08279275163697272,0.03374972568521572,0.10558749548802072,-0.1494293044865127,0.0066673805189706135,-0.1713635244419399,-0.08676698422851485,-0.1783158858054496,0.024292569947758382,0.06408138635892213,0.04469842125650075,-0.16690242917075607,0.02932498751065267,0.0016927574363358048,-0.052926879694230156,-0.04154589371980677,-0.018515901060070675,-0.047118554109147025,0.029093525580037038,-0.032031294256775644,0.008129995403983797,0.003831808369248723,-0.01515988294767637,0.00018515249471923035,-0.044251283407591234,-0.09990434863205938,0.051140217227484186,-0.026509417356099293,-0.1788665398206034,0.10548945132288408,-0.040795159097003424,0.10478820254049649,-0.10117747062143305,-0.12746085501997145,-0.09033648691867271,0.05443797462002529,-0.1877509557356158,-0.22833978198541938,-0.061811671022095956,-0.13906802579571462,-0.2610986186957918,0.024501686742507498,-0.18392543196371183,0.007402066160507775,-0.23433304723131473,-0.19646029890273833,-0.21082653695512893,-0.06660793052672499,-0.15796136947487335,-0.022252232987584143,-0.08812748556050014,0.01161194188707359,0.03285214707681629,-0.2807606238684868,-0.16254585034886335,-0.2719077410190504,-0.03342939319519987,-0.06160601202641115,-0.010677979482226565,-0.25903734529995864,11.252103034116839,15.954943538412243,12.377959822380593,13.90789786466833,33.67211689978842,39.29397765718177,40.07982938287285,40.16940766036255,40.16940766036255,62.38565363727762,46.95228557668854,2.198002422390508,13.235365638198566,0.0,15.433368060589075,13135.437298732239,12124.698047307744,1738.112132230097,75.0,45.0,59.0,75.0,88.0,91.0,94.0,92.0,84.0,433.2100523320008,33.0,5.056245805348308,5.8998973535824915,6.771935555839602,7.638679823876112,8.521782643750045,9.402199633250627,10.293872863209199,11.184463063796828,12.083277696190752,0.6236559139784945,0.9888387096774196,1.132152101316272,0.5821290161438037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6354508692292835,0.9738772928526248,1.0119235016328738,0.5993530363814241,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,1.0,10.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,24.0539792100409,30.276239087290644,0.0,0.0,0.0,9.694446914922299,4.794537184071822,0.0,0.0,11.64912463690315,32.25256913693026,37.18199382405773,20.32356147030337,196.0637803033222,-658.412548023228,-55.92378464894119,-10.619557226181096,-43.894169868215194,528.1492176897801,1773.606892704141,35.637903332903214,28.606562785550665,37.73631686604556,0.47058823529411764,0.7540777844252052,0.15085369438191976,98.92561638935672,0.10189902392918392,95.74639568417363,0.24592221557479468,9.0,0.2727272727272727,0.2489073397832743,0.5451811653961339,0.8102744947232745,0.8597507490140411,0.8746759100512143,0.8746759100512143,2.52402,,1.8928571428571428,2.1856677524429964,1.4371888866057563,1.8873592321730437,-8.094241668555883,1.972230722154223,1.879726594644652,-3.1122859746496085,113.42830000000006,33.64305357818455,0.0,4.899909730850478,0.0,39.716821232672196,46.56471265255401,33.90293060369113,0.0,11.49902366656781,4.204692619390966,0.0,5.5093883366279774,2.3978952727983707,7.007600613951853,4.727387818712341,8.605753368395717,6.842683282238422,10.267679175328517,38.66666666666666,0.0,0.0,0.0,0.0,0.0,0.0,2.7042188113527548,0.0,61.308000000000014,0.0,24.01695337712995,0.0,0.0,0.0,1.9352209537396226,0.0,0.2545347332561688,70.19343028160887,4.736862953800049,0.0,11.49902366656781,68.5097603541489,32.0328296329109,6.923737199690624,46.81372359640245,11.64912463690315,0.0,0.0,0.0,36.091999000915834,39.397953892215575,39.64140009150958,434.5384153091637,,366.4620801928333,361.71195596903124,369.3741493462527,366.53808172765696,507.3909972392373,364.9745354752327,366.6952732826842,440.968583616334,39.64140009150958,434.5384153091637,,364.81346268131267,359.80830986206473,368.12240418695086,364.89425271899006,513.9186114880727,363.25678613658215,365.05809205509047,443.4346337591252,4.978754078325816,339.01398730020406,,289.35439858928123,285.85585177929914,291.35119629103315,289.4098046864974,394.73275075640686,288.2477464676109,289.5274324442586,344.46943233953914,1.2787548416615995,14.017368235779475,,11.821357425575268,11.668127611904234,11.9152951402017,11.823809087988934,16.367451523846366,11.77337211210428,11.828879783312393,14.224793019881742,2.5224693133346534,217.26920765458186,,183.25089272082843,180.866576438848,184.66019414805822,183.28882959273028,252.91218490975842,182.50101544493265,183.36825828418296,220.16117389223777,60.38039215686274,0.0,5.32328679902956,0.0,0.0,0.0,10.656044766408975,62.73925710123818,5.6889300058843055,0.0,21.202378599311537,0.0,0.0,2.2184319538871238,0.0,0.0,0.0,37.1598882556483,546.1129329785742,91.8866761782786,201.2591723766328,299.12107122667845,317.3857337331689,322.8955087374958,322.8955087374958,767.0,140.85235443884397,178.10006501452807,80.56308048744415,94.53000000000002,94.53000000000002,0.8888888888888888,8.033242756037877,6.044394119358453,3.7407099817164857,5.491473099094428,,5.489643372558934,5.49129712113958,5.490348923698178,5.489622212599719,5.454848911159235,5.490238134812893,5.489554714689984,5.468610305666742,0.12066806392633825,0.1771442935191751,,0.17708527008254626,0.1771386168109542,0.17710802979671544,0.17708458750321673,0.1759628681019108,0.17710445596170624,0.1770824101512898,0.17640678405376586,2.45067753958477,2.834598655080993,,2.8342654054415504,2.834566608893859,2.8343939212221048,2.8342615509106532,2.8279070330798595,2.834373742176176,2.834249255287733,2.830426638181979,327.6200000000011,23177.2094167483,194.4445641907652,,194.1853865046574,193.98459661804978,194.27618340024904,194.18848648270057,198.75400847414087,194.12151241494766,194.19529614229342,196.88816074734913,747.6519166693,6.272405296476297,,6.2640447259566905,6.257567632840315,6.2669736580725495,6.264144725248405,6.411419628198093,6.261984271449925,6.264364391686884,6.351230991849972,11.182326833594468,6.401549216910472,,6.400215414798372,6.399180868526139,6.4006828839344685,6.400231378683993,6.423470033245512,6.399886427131846,6.400266445336609,6.414037967077258,21.202378599311537,26.235385331017074,10.656044766408975,3.231686905078896,-0.2729333604699722,0.0,3.17515269094433,8.231818613318158,1.5404664543910007,415.1043378249372,141.99193813132996,-476.8309253201795,-40.500731739730334,-7.690821376131925,-31.788728354678625,382.4925283308273,1284.4691650264967,25.80943281491021,20.71724459720156,27.32913117077653,3259.0,48.0,1.921436255851798,0.9340396910480105,0.0,0.0,0.47933618715551984,0.1540053017044988,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.03608439182435161,0.3464352656290515,0.11208432955783519,0.5646408882450953,0.1590816364584175,22.380104409694468,18.492335014838197,14.917922655570505,10.616996638235037,13.050013531352747,7.8441788460975035,10.94040939658829,5.800001457028402,8.883516221241905,3.8911765933782134,6.686232838908899,2.4444854203615933,4.2951769595609965,1.347976003135757,2.9446726099645675,0.8094088132606914,4.6390056191221944,2.0132895857109645,7.618126671435522,2.6338501957399587,11.787928078149738,3.2565482897355174,109.30765546839945,46.68081513763433,30.500263968521576,27.503473542591745,26.88720755968484,26.88720755968484,156.0,182.0,65.79458299999997,41.48941700000003,0.3870967741935484,159.08,10.86111111111111,7.027777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,6.0,6.0,62.0,0.0,1.0,64.0,6.0,3.0,6.0,58.0,9.0,33.0,55.0,0.0,0.0,0.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,8.0,1.0,2.0,31.0,8.0,0.0,1.0,7.0,0.0,3.0,9.0,0.0,0.0,0.0,0.0,1.0,3.6888794541139363,6.267556272740287,4.197201947661808,4.675162557808126,5.16120815257563,5.633225881193066,5.901266279189834,6.117959523366387,6.233797792815333,6.283609303207754 +5959,O=C(N[C@H](CO)[C@H](O)c1ccc([N+](=O)[O-])cc1)C(Cl)Cl,0,43.875,6.9671125,3.3125,9.975308641975309,165.61891098585275,180.7729750625,1.5985648393183751,7.100934375,9.080192139155617,8.5900108125,237.7567187657851,31.96875,6.84590625,4.09375,7.958333333333333,151.65475460117813,124.3425039375,1.8215164706875,6.99819375,3.9558899176954734,8.297665875,274.1537291314122,31.830188679245282,6.724998113207547,3.452830188679245,6.845795481015607,154.27894933578642,123.29143418867923,1.666130047789604,6.906383018867924,4.626080210966459,8.29897624528302,240.53462399541309,25.309859154929576,6.627960563380282,2.915492957746479,4.979655712050078,162.03450333903297,96.2471373661972,1.3303242396850845,6.740708450704225,4.124587028342898,8.200389126760564,196.26150069742403,19.29113924050633,6.552189873417721,2.5316455696202533,4.3122362869198305,163.65828481183883,69.67606565822786,1.1999757570909872,6.631767088607594,4.4198572693650044,8.173088405063291,171.27351511636715,20.666666666666668,6.509933333333334,2.3466666666666667,4.263703703703704,164.38829487356824,75.89995753333332,1.2120085029851468,6.608855999999999,4.579780521262003,8.176241973333333,168.09670492285994,24.893939393939394,6.495348484848485,2.212121212121212,3.4057239057239057,167.1467515488504,92.85883178787878,1.2135892605134242,6.6820863636363645,3.581992767177952,8.29937121212121,165.75774196941384,24.102040816326532,6.651263265306122,2.2653061224489797,4.6394557823129245,167.80100128612756,89.47786342857142,1.2478431007038777,6.795148979591837,5.148148148148148,8.398535836734695,170.79360754107776,28.5,7.027529411764706,2.235294117647059,4.686274509803921,171.8532145027546,106.20885764705884,1.3065456748645885,7.201920588235294,4.827886710239651,8.816155529411764,180.60929540085763,16.96484375,0.20711249999999992,0.03139167055272261,0.671875,4.691695601851852,1.3479671830380264,78.80968221484376,0.26587381941773436,0.20210380859374996,4.107567443987197,0.15860971484374997,46.17224524996156,-0.453125,-0.0018437499999999895,-0.013257804527538962,0.08203125,0.2723524305555555,0.19984284811386707,-1.9770422656249993,0.038511112499999986,-0.006520117187500005,-0.42268679269547316,-0.00325076562499999,2.9996402951292715,0.20968455188679244,0.0008094339622641498,-0.003645976361779491,-0.13060141509433962,0.13036938766596792,-0.22026412459850714,0.7151174125147421,-0.019828142719588146,-0.0025759194428065933,0.33222836378773374,0.002726734448702844,-7.211044865474219,1.9524097711267605,0.006016901408450681,0.005552335703001103,-0.0741637323943662,-0.42401389432272646,-0.01417334549400357,8.78506598233935,-0.03362505453909353,0.018777793518926087,-0.14863736124259652,0.01721752547315142,-2.057460359082832,-1.0115209651898733,-0.03370886075949369,-0.0038068798073299364,-0.03184335443037975,-0.5038146829582747,-0.13835922472682471,-4.618716639685525,-0.009960749590811903,-0.03177418042919301,-0.3707725418612862,-0.02577418715387656,-2.829200810674601,0.05932291666666667,-0.008440000000000038,-0.0010567990708599017,-0.017708333333333333,0.05660686728395058,-0.1697910221919672,0.4414955726562497,0.012137906312283968,-0.009654683593749968,-0.03853175964029868,-0.010508934010416653,0.17959497561799823,-0.38529829545454547,0.0040151515151514655,0.0002486108026505539,0.026988636363636364,0.17983217592592604,-0.04489276945464668,-1.9775208720407214,-0.04577541259506392,0.010741977391098511,-0.2913048956644636,0.007996044625946976,-1.0695979161068654,-1.4980070153061225,0.008528571428571401,0.0032958318604734763,-0.002232142857142857,0.436737252771479,0.02640489561120611,-6.650949518415183,0.018844978434821746,-0.003275874920280614,0.43804264103904017,-0.010146869180484694,2.6075885114303206,-5.161534926470588,-0.04064705882352936,0.0013591445258081512,0.0009191176470588235,-0.591704679557008,0.11216833049513075,-23.483650295726108,0.019695528168824434,-0.05873827550551475,-0.8746905455140447,-0.05397993910845591,-1.9137381491830552,,,0.4697619047619047,1.1,0.475,0.025,0.625,-0.15,0.8173885815135036,0.027596689973420928,0.031896689973420926,0.8750050510076127,0.23011049812340145,0.2380034900218324,1.6923936325211162,0.46811398814523386,1.9370078663223542,1.1354778610225948,0.19983864596689876,0.43302042615616765,0.16867093317669263,0.801530005299759,10.062885213875012,1404.0,222.9476,106.0,319.2098765432099,5299.805151547288,5784.735202,51.154074858188004,227.2299,290.56614845297975,274.880346,7608.2150005051235,1023.0,219.069,131.0,254.66666666666666,4852.9521472377,3978.960126,58.288527062,223.9422,126.58847736625515,265.525308,8772.91933220519,1687.0,356.4249,183.0,362.82716049382714,8176.78431479668,6534.446011999999,88.30489253284901,366.0383,245.18225118122237,439.84574100000003,12748.335071756894,1797.0,470.5852,207.0,353.55555555555554,11504.449737071342,6833.5467530000005,94.45302101764099,478.59029999999996,292.8456790123457,582.2276280000001,13934.566549517105,1524.0,517.6229999999999,200.0,340.66666666666663,12929.004500135268,5504.409187,94.79808481018799,523.9096,349.1687242798354,645.673984,13530.607694193004,1550.0,488.245,176.0,319.77777777777777,12329.122115517617,5692.4968149999995,90.900637723886,495.66419999999994,343.4835390946502,613.218148,12607.252869214495,1643.0,428.693,146.0,224.77777777777777,11031.685602224126,6128.682898,80.096891193886,441.01770000000005,236.41152263374482,547.7584999999999,10940.010969981313,1181.0,325.9119,111.0,227.33333333333331,8222.24906302025,4384.415308,61.144311934490005,332.9623,252.25925925925927,411.528256,8368.88676951281,969.0,238.936,76.0,159.33333333333331,5843.009293093657,3611.10116,44.422552945396006,244.8653,164.14814814814815,299.749288,6140.71604362916,542.875,6.6275999999999975,1.0045334576871234,21.5,150.13425925925927,43.134949857216846,2521.9098308750004,8.5079622213675,6.467321874999999,131.4421582075903,5.075510874999999,1477.51184799877,-14.5,-0.058999999999999664,-0.4242497448812468,2.625,8.715277777777777,6.394971139643746,-63.26535249999998,1.2323555999999996,-0.20864375000000016,-13.525977366255141,-0.10402449999999969,95.98848944413669,11.11328125,0.04289999999999994,-0.19323674717431302,-6.921875,6.909577546296299,-11.673998603720879,37.90122286328133,-1.0508915641381718,-0.13652373046874944,17.608103280749887,0.14451692578125075,-382.1853778701336,138.62109375,0.42719999999999836,0.3942158349130783,-5.265625,-30.10498649691358,-1.0063075300742534,623.7396847460939,-2.3873788722756406,1.333223339843752,-10.553252648224353,1.2224443085937509,-146.0796854948811,-79.91015625,-2.6630000000000016,-0.300743504779065,-2.515625,-39.8013599537037,-10.930378753419152,-364.8786145351565,-0.7868992176741403,-2.5101602539062475,-29.29103080704161,-2.036160785156248,-223.50686404329346,4.44921875,-0.6330000000000028,-0.07925993031449263,-1.328125,4.245515046296293,-12.73432666439754,33.11216794921873,0.9103429734212976,-0.7241012695312476,-2.8898819730224012,-0.7881700507812489,13.469623171349866,-25.4296875,0.26499999999999674,0.016408312974936556,1.78125,11.868923611111118,-2.9629227840066807,-130.5163775546876,-3.021177231274219,0.7089705078125017,-19.226123113854598,0.5277389453125004,-70.59346246305311,-73.40234375,0.41789999999999866,0.16149576116320033,-0.109375,21.400125385802472,1.2938398849490995,-325.89652640234397,0.9234039433062655,-0.1605178710937501,21.46408941091297,-0.49719658984375004,127.7718370600857,-175.4921875,-1.3819999999999983,0.04621091387747714,0.03125,-20.117959104938272,3.813723236834446,-798.4441100546877,0.6696479577400307,-1.9971013671875013,-29.739478547477518,-1.8353179296875008,-65.06709707222387,0.7642046285723334,0.5802616874253081,0.46811398814523386,0.3204969378387991,0.31123424324807414,0.18648768144523964,0.2057321485790559,0.09310103169040634,0.12803452728280168,0.04969003120418533,0.08153999770116031,0.02871501940246678,0.05431847633663851,0.015321761614509604,0.03535396300105051,0.007987100557141202,17.00320340025931,5.6928771434548535,3.6076247223336217,2.1921385105672453,0.45606800572246287,-0.3876187097532923,3.16282717724876,0.9726153543128668,7.004118152685587,0.7679165169759372,14.594780049701944,10.953921235866398,35.45203406484099,11.704446155728546,2.2264117468849833,0.6692194900615744,3.5531103195592237,2.2419115703002563,8.00193734885811,1.1733049414790067,3.7569996086166477,2.4377975989504397,22.463210295408203,14.651538079259167,0.37982069127476625,0.7581791136155017,0.8758116600299306,0.9357987600319807,0.9357987600319807,0.9357987600319807,2.4868043108728073,480.20675753303044,0.0,1.0,2.0,0.0,5.0,2.0,1.0,0.0,0.0,3.021341821503155,1.0503012648261505,0.4375,0.125,0.125,0.125,-92.06922718697962,1109.3263644516915,78.275825988088,34.66644888911536,81.25993406909944,,11.0,333.0,34.41944964982841,20.0153828476781,5.687386274683562,5.563451491696996,0.0,24.26546827384644,0.0,0.0,5.316788604006331,28.30840717530574,9.395238095238094,22.0,9.5,0.5,12.5,0.0,0.030238095238095307,-3.0,0.30431547619047605,0.06910244360902251,-0.23521303258145354,0.09133540372670801,0.2443499166865032,0.0,0.7376488095238097,1.0002380952380951,0.4333333333333337,0.6685463659147872,0.9089026915113871,16.34777163027007,0.5519337994684186,0.6379337994684185,17.500101020152254,4.602209962468029,4.760069800436648,33.847872650422325,9.362279762904677,0.4696500833134968,0.32944754181449576,0.0,0.361885453623923,0.36363636363636365,0.5921120214464535,-1.3143015626403443,-0.11756961775517652,-0.04107192383251076,-0.1194819602400313,0.40788797855354636,0.9053824076828293,0.03905480024956776,0.028293200240088415,0.04311344798489663,-2.409548242205166,0.5514045590605572,0.6949753681574024,1.3770035017090942,1.1489825581395348,0.5964632993102882,1.1949870033187497,0.5520770782963254,0.7523461554691153,0.6773647612057347,0.7328204258112899,0.7055533042769808,0.8129743911222723,0.7768215171670744,0.7218169700862146,1.0458932753740786,1.4010530934620447,0.7284822130048595,1.3502654064682078,0.7809080066917424,1.055220811035444,0.7391855602356618,0.613532578298675,0.7479530073199794,1.0958170023914664,0.5589697521995894,0.8145577095866284,0.7426767599758951,1.096626269243367,0.9194384496459366,1.1165243238225362,0.565842277067238,0.9855954915377144,0.7276509361769485,0.7714736707100553,0.6838436842750392,0.9920589133837047,0.7708956942205849,1.138383808866795,1.0799600163156335,0.9764498086546952,1.0468975195796124,1.0672787432229303,0.7730449968654838,0.9105973830043597,1.0992619742864165,1.0076333957531838,1.076450252315796,1.040576941631114,0.8439880267096477,1.009631339650351,1.0151627101442637,0.893953488372093,0.9485419429111803,1.037646877674358,0.8443751249191852,0.8828861617104674,1.0075896627097545,0.9290260287665008,1.0000245292220622,1.0113298710902097,1.2787697374388602,0.8919040577785826,0.9546004601693735,0.8083157152924594,0.8645703387446889,0.8771341764437349,1.2804852406184704,1.2392690453189033,0.9225378538043217,0.8124875742016497,0.9109084825063858,1.0874165121706163,1.2644320910496365,0.954186789689622,0.87059931592686,0.9121974371143806,0.9442812062689333,0.8334687529094756,1.2598463896452672,0.9610037853393724,1.044735352053027,0.8867497291822973,1.079471212353775,0.969414542035793,1.7223388549525267,1.2906555207634385,0.8532623151531756,0.8905608755129959,1.2879999080948485,0.7728607258025726,1.7112984778739604,1.0050020197092626,1.4257403971908433,1.4515711055106373,1.4843896408173656,0.9907933381070155,5.0,0.06611570247933884,3.1111111111111125,1.5,1.0222222222222224,0.7500000000000001,0.4473469387755102,0.2743055555555556,0.164273116654069,0.11125000000000002,4235.78219764357,4633.806791302945,1942.5914472461816,1805.7314574796133,12.29104611348224,0.4632975586948255,6.5966344553003955,0.8632298328439869,1.0,0.36363636363636365,1.9786581784968453,3.9496987351738495,4.5625,4.875,4.875,4.875,0.25,0.011019283746556474,0.11522633744855973,0.051724137931034475,0.0408888888888889,0.03260869565217391,0.02236734693877551,0.017144097222222224,0.013689426387839078,0.013906250000000002,0.5685744642160503,18.05,8.444444444444445,5.37890625,123.81547365578696,1.0,3.8743843957581667,91.38985710009868,,72.36280548226392,73.42367257397666,73.1902216958798,72.31578017565626,104.32704898824379,73.87088089379046,74.38534151443572,92.36610850884293,-0.02670964770895694,-0.008902166696843456,-0.42233510654593404,0.12209302325581395,0.05804989361374078,0.1482549802610658,-0.0250862864823559,0.14484732864762542,-0.03226122868671975,-0.10290440716054879,-0.020495375256190284,0.06496630776541604,0.012359945955104505,0.003908184982867524,-0.11614470646460306,-0.19438350153576128,0.027787264718220427,-0.16340466397859885,0.009073979140852952,-0.07457726662599547,-0.012745526473399934,0.08088202283180071,0.017191471855232905,-0.15617704589490852,0.11508563237588089,0.029051367775729052,0.17687289670283404,-0.11038322961021946,-0.09037540588851599,-0.010514607234027697,0.11147191227583314,-0.12646997215721595,0.09291162620627026,-0.03618622536805261,0.10855277994864815,-0.04456054384932786,-0.05962453766719032,-0.16275628346668455,-0.12127037969948894,-0.04739476008242567,-0.10738435007578385,-0.10264287325971316,-0.05860595436858128,-0.037464198666216995,-0.15721712841672603,-0.09026572221085165,-0.1625006840171631,-0.061274923828335076,0.003496814797758846,-0.0407507996861611,-0.03366495163374621,-0.02635658914728682,0.012065332469908612,-0.1259607981028848,0.005602047365864067,0.04565288278050871,-0.047770913675144556,-0.009380676073061889,-0.06625655951004793,0.0038896738645852994,-0.022711573482929688,0.019386331173403184,0.007919642321456252,0.04016913319238901,0.03832988991334919,-0.03330405221992726,-0.02509235942164802,-0.17216968822019565,0.05315079149592387,-0.07091907793039066,0.05041333460452949,-0.02316538670182507,-0.08830066680137401,0.04117844856573796,0.10499064887095115,-0.0033222591362126242,0.09308729504938366,0.019588678376943263,-0.08439254329542874,0.07087940616376742,-0.016208872772236912,0.10664283593937393,-0.06397381894596182,0.05647523739237029,-0.30424889274153133,-0.19625594217408113,0.04329634268827634,0.0013679890560875513,-0.1261174487371809,0.08321295348031219,-0.2979792537636064,0.07407847907687108,-0.2906341840572876,-0.2129461189479549,-0.34033185900140334,-0.04144780351968368,3.838519496373775,10.438087368103016,5.1330537040448005,25.955315336087,43.590171325055245,47.895562500000004,48.21056249999999,48.21056249999999,48.21056249999999,38.74015732644708,22.7095572204519,3.9967729193379755,8.660408523123353,3.3734186635338523,16.03060010599518,5523.174593209296,5209.190187255025,589.3418996411838,20.0,27.0,32.0,33.0,38.0,38.0,36.0,28.0,24.0,322.01232684400037,20.0,4.553876891600541,5.3612921657094255,6.20050917404269,7.0326242610280065,7.874358824729881,8.713582005421628,9.557399229195953,10.39979834394387,11.245111377155913,0.8645833333333334,1.04,1.1382310140493592,0.8407033136291733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.691270883233533,1.0300245098039218,1.0574244355426075,0.6725812894361898,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,15.529843393687743,6.103966387748303,4.836269690250055,0.0,11.594566004035068,14.908855452837393,0.0,0.0,0.0,23.20187978046503,17.696185628620217,12.13273413692322,17.57203384247855,295.9184662687379,-656.8454760993363,-58.75749808443953,-20.52642112810426,-59.71322509993967,203.8492390817583,452.4808883523551,19.51832790364847,14.140027761011098,21.546708969159766,0.45454545454545453,0.5909950704643878,0.17755825280599852,105.05914584021305,0.12116370466248982,56.15162778529304,0.40900492953561207,6.0,0.3,0.3957316356993691,0.7899397470347699,0.9125,0.975,0.975,0.975,0.9089999999999998,,2.829831932773109,2.033122481160602,1.5794919254976802,2.853697787013556,-5.979945049802515,2.0020490215825113,1.942568332642602,-2.467044387301767,72.56670000000003,19.930903022570906,0.0,5.316788604006331,0.0,16.98207690714632,6.606881964512918,39.94323803430901,0.0,0.0,3.713572066704308,0.0,5.003946305945459,0.0,6.481577129276431,0.0,8.034306936339489,0.0,9.625161575008372,27.666666666666668,5.07778180202122,0.0,0.0,0.0,0.0,0.0,0.16922162383471995,0.0,33.28,0.0,21.814085567243936,0.0,-0.5763372472751982,0.0,0.0,0.0,-0.7561620265390101,36.423392449579495,5.316788604006331,5.687386274683562,0.0,38.52853805176152,4.794537184071822,10.114318268765572,11.6674178794453,24.26546827384644,0.0,0.0,0.0,26.902506036133545,22.120668263473057,24.21249844509221,182.77971420019736,,144.4426277712505,146.64403289983724,146.22249419920985,144.34619057261114,210.44808149142833,147.54155688542266,148.57642619560716,185.47233033387639,24.21249844509221,182.77971420019745,,141.8957790317547,144.81422266679272,144.8009514662619,141.77786256429894,214.6340430262901,145.73971276599843,146.8281146962288,187.19926140498765,4.672091476568154,136.50844011075267,,109.99539779740027,110.90214475258827,110.27137356500768,109.94410871113757,151.4755176748267,111.5918135506985,112.34250712221055,136.48748981739908,1.2106249222546104,9.138985710009868,,7.222131388562525,7.332201644991862,7.311124709960493,7.217309528630556,10.522404074571416,7.377077844271133,7.428821309780358,9.273616516693819,2.3360457382840765,91.38985710009868,,72.36280548226392,73.42367257397666,73.1902216958798,72.31578017565626,104.32704898824379,73.87088089379046,74.38534151443572,92.36610850884293,32.9607843137255,0.0,0.0,10.701515153828765,0.0,0.0,19.171832168052408,33.83758193736344,-0.5511984284454523,2.26505078420257,0.0,0.0,-3.6028663767823224,0.0,0.0,0.0,0.0,21.522601261958073,295.36025023944194,63.31706171189905,126.39035952556318,146.0,156.0,156.0,156.0,316.0,110.9385522728279,204.40745511105428,52.858564013274055,112.70000000000002,112.70000000000002,0.8333333333333334,7.013746845485488,5.321928094887363,3.93068380137705,4.398153086316561,,4.411330016175779,4.403852679851354,4.403942694625879,4.411502003007225,4.36570826124008,4.404651402330903,4.4045043211723165,4.38444684584404,0.1965341900688525,0.21990765431582804,,0.22056650080878898,0.22019263399256772,0.22019713473129396,0.22057510015036125,0.218285413062004,0.22023257011654515,0.22022521605861584,0.219222342292202,2.0619605865670314,2.174331880253291,,2.17732341551885,2.1756269474193033,2.175647387216256,2.1773624022820783,2.1669276158504474,2.1758083000018273,2.175774907208416,2.1712106515270255,207.27999999999977,112.71675924432702,98.19606202432695,,96.79669168765966,97.39430303697408,97.55114371939781,96.78017755587649,101.04116764080207,97.36742643081747,97.38793106087286,99.43584937460895,5.6358379622163515,4.909803101216347,,4.839834584382983,4.869715151848704,4.8775571859698905,4.839008877793825,5.052058382040103,4.868371321540874,4.869396553043643,4.971792468730447,5.418025297243162,5.28011329353101,,5.265759997478062,5.271914899117663,5.273523972003162,5.265589376557414,5.308675214758707,5.271638904378854,5.271849472451488,5.2926598868933645,0.0,19.911924964098485,31.946182154335563,0.16922162383471995,-0.7561620265390101,4.0536671005850895,-1.2529283194759382,-0.5511984284454523,0.0,258.74033473642595,147.89049285796537,-328.2701563600196,-29.365099989796526,-10.258442386250612,-29.842741487274505,101.87726645333505,226.13533528681063,9.754629948684958,7.066729227712832,10.768349299371934,880.0,29.0,1.5948190167920575,0.8406002547144689,0.0,0.0,0.5948190167920577,0.13981756692299097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.09622504486493763,0.02992639636637849,15.284092571446669,11.605233748506164,9.362279762904677,6.409938756775983,8.403324567698002,5.0351673990214705,6.5834287545297885,2.979233014093003,4.225139400332456,1.6397710297381158,3.098519912644092,1.0911707372937376,2.0641021007922635,0.582226941351365,1.2727426680378184,0.2875356200570833,3.785671441469861,1.3200363055950748,3.9252397641339054,1.127780039293454,5.374926189517205,1.357488858807364,70.0572633058751,38.24849367586925,30.375,29.3125,29.3125,29.3125,94.0,106.0,36.941515999999986,15.662483999999997,0.1875,20.09,9.277777777777779,4.611111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,32.0,0.0,0.0,32.0,6.0,2.0,5.0,27.0,8.0,20.0,24.0,0.0,0.0,0.0,11.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,5.0,3.0,0.0,20.0,9.0,0.0,2.0,5.0,0.0,1.0,6.0,0.0,0.0,2.0,0.0,1.0,3.258096538021482,4.949203054577755,3.7256934272366524,4.131158535344817,4.458698282087834,4.907586918196809,5.032070574816321,5.215954260497914,4.904348423578298,4.912654885736052 +9933004,OC(CNCC(O)C1CCc2cc(F)ccc2O1)C1CCc2cc(F)ccc2O1,0,23.77777777777778,6.49157222222222,3.314814814814815,8.25925925925926,166.158708523819,95.20664746851006,1.4236006781708328,6.524292592592591,5.87088477366255,7.952989851851849,214.02649521670222,25.035087719298247,6.473754385964913,4.0701754385964914,6.982456140350878,146.770703510393,95.30490118720003,1.7759158437192988,6.609350877192981,3.1978557504873293,7.884441964912279,264.88810973071855,21.145631067961165,6.397631067961164,3.5728155339805827,5.398058252427185,152.94978317624168,78.73909728486214,1.5097449341077094,6.503257281553397,3.1820388349514563,7.863734407766989,220.54243916200022,16.756756756756758,6.375459459459459,2.8783783783783785,3.9864864864864864,162.34579295160933,60.249369020562156,1.2210006492842835,6.431212162162162,3.3014264264264264,7.917624270270269,172.4327362222903,14.14569536423841,6.240701986754968,2.589403973509934,2.9072847682119205,164.19916600705082,49.10132281584106,1.1307072413739736,6.291044370860927,2.8568800588668135,7.821804211920529,153.87864405429798,13.25,6.133583333333333,2.4166666666666665,2.8472222222222223,166.00856251423238,45.943873728933326,1.0819287945733613,6.180419444444444,3.0104166666666665,7.716587888888889,143.47039913882892,12.572519083969466,6.046992366412214,2.3435114503816794,2.6106870229007635,167.0910765042245,43.36569372040306,1.0405319241306183,6.093191603053436,2.8910093299406276,7.654378320610688,137.37383985469515,13.421052631578947,6.131122807017543,2.4035087719298245,2.9649122807017543,165.48590020214888,46.635297741417546,1.0692052337497369,6.1775719298245635,2.9658869395711505,7.729639719298246,142.86329519496422,14.264150943396226,6.230245283018869,2.490566037735849,3.358490566037736,167.4894480157507,50.710209793539605,1.0636186301459432,6.265570754716982,3.5303983228511537,7.808797962264152,144.66976893785179,8.072702331961592,0.2165472222222221,0.02302467199806271,0.5984224965706446,4.406035665294926,2.1576852758146496,38.833856529931445,0.2366378411232938,0.19440932784636472,2.521081008992533,0.13143824554183808,49.2452537211664,0.1371742112482856,-0.01397587719298236,-0.00964341656153634,0.10723052487185036,0.7797992924698578,0.020133962222642448,0.7176914877146663,0.011351675916082368,-0.011163518879503186,-0.1900038304494661,-0.010009294274781633,3.014122330909337,-0.316499527215097,-0.013344902912621297,-0.00234509264103025,-0.07936460372634412,-0.08708564731578042,-0.25719706446045504,-1.4792558577717707,-0.03285569703648139,-0.010294908572722248,-0.019138262578372058,-0.010249610518465267,-4.291909215715901,-0.3664961257553848,-0.0068743243243242725,0.003641118492262283,-0.04011418826233641,-0.3569866162458755,-0.0410348413571451,-1.8035374362982566,-0.0032101586712798805,-0.006888657175694165,-0.05143080323121478,-0.0029401654617581,-1.6441819231762,-1.0655892586233524,-0.025198841059602645,-0.0034924425983076757,-0.06432880022529272,-0.6493518291408897,-0.11582226091444878,-4.932076656606384,-0.009918594709514773,-0.023682862307978808,-0.22140191488738897,-0.015666037055205806,-3.94427036459725,-0.21673525377229094,0.006074999999999936,0.0008115760301146153,-0.017403978052126196,0.020919067215363508,-0.07756437026717775,-1.0434255879559484,-0.01342428608862878,0.0047531207133058445,-0.049880448864502346,0.004159517832647512,-2.9362826888574642,0.32509240934460026,-0.00334751908396956,0.0001313669065487859,0.0022277720185551676,0.11050377490863772,-0.09414124548425577,1.4940763398905677,-0.0032128183010548595,-0.0013739871621693302,0.009590778146600748,-0.0027789778008145928,1.1199054905864554,0.06439968233340532,0.0037609649122806385,-0.0005234589758403362,0.001967366977113566,0.13717421124828533,-0.1848061319948855,0.27511429599536147,-0.010229303535496628,0.003744733232257539,-0.10087669161472498,0.0029906823334055737,-1.4797647370179117,0.733027926598856,0.027061792452830146,0.0011490536440195193,0.013736832569816497,0.21171416000207055,0.044803697432095585,3.5489716980867976,0.010313775466587294,0.024369043921629484,0.3764945015284715,0.017144310712529455,2.6757333833528123,,,0.4587848932676519,1.0862068965517242,0.4482758620689655,0.034482758620689655,0.6379310344827587,-0.1896551724137931,0.9658568205111192,0.014586549101093884,0.026448618066611126,0.8154454012134035,0.20957056669531815,0.2728847311819706,1.7813022217245227,0.48245529787728875,2.0560906024655057,1.5990756373137143,0.06907554359596164,0.2657779973055734,0.1221614242502566,0.4570149651517917,7.503243791111124,1284.0,350.54489999999987,179.0,446.0,8972.570260286226,5141.158963299543,76.87443662122497,352.3117999999999,317.0277777777777,429.46145199999984,11557.430741701919,1427.0,369.004,232.0,398.0,8365.9301000924,5432.379367670402,101.22720309200002,376.73299999999995,182.27777777777777,449.41319199999987,15098.622254650956,2178.0,658.9559999999999,368.0,556.0,15753.827667152893,8110.1270203408,155.50372821309406,669.8354999999999,327.75,809.9646439999999,22715.871233686023,2480.0,943.568,426.0,590.0,24027.17735683818,8916.906615043199,180.70809609407397,951.8194,488.6111111111111,1171.808392,25520.044960898962,2136.0,942.3460000000001,391.0,439.0,24794.074067064674,7414.299745192,170.73679344747,949.9476999999999,431.38888888888886,1181.092436,23235.675252198995,1908.0,883.236,348.0,410.0,23905.233002049463,6615.917816966399,155.79774641856403,889.9803999999999,433.5,1111.188656,20659.737475991365,1647.0,792.1560000000001,307.0,342.0,21888.93102205341,5680.9058773728,136.309682061111,798.2081000000001,378.72222222222223,1002.7235600000001,17995.973020965066,1530.0,698.9479999999999,274.0,338.0,18865.392623044972,5316.4239425216,121.88939664747,704.2432000000002,338.11111111111114,881.178928,16286.415652225922,1512.0,660.4060000000001,264.0,356.0,17753.881489669573,5375.282238115198,112.74357479546998,664.1505000000001,374.2222222222223,827.7325840000001,15334.99550741229,435.925925925926,11.693549999999995,1.2433322878953863,32.31481481481481,237.92592592592598,116.51500489399109,2097.0282526162982,12.778443420657865,10.498103703703695,136.13837448559678,7.097665259259257,2659.2437009429855,7.818930041152279,-0.7966249999999946,-0.5496747440075714,6.112139917695471,44.4485596707819,1.1476358466906196,40.90841479973598,0.647045527216695,-0.6363205761316816,-10.830218335619566,-0.5705297736625531,171.8049728618322,-32.59945130315499,-1.3745249999999936,-0.24154454202611575,-8.174554183813443,-8.969821673525383,-26.491297639426868,-152.3633533504924,-3.384136794757583,-1.0603755829903916,-1.971241045572322,-1.0557098834019225,-442.0666492187378,-54.24142661179695,-1.0173999999999923,0.5388855368548179,-5.936899862825789,-52.83401920438958,-6.073156520857475,-266.923540572142,-0.4751034833494223,-1.0195212620027365,-7.611758878219788,-0.4351444883401988,-243.3389246300776,-160.9039780521262,-3.805024999999999,-0.527358832344459,-9.713648834019201,-98.05212620027436,-17.489161398081766,-744.743575147564,-1.4977078011367306,-3.5761122085048,-33.43168914799573,-2.3655715953360765,-595.5848250541848,-31.209876543209894,0.8747999999999908,0.1168669483365046,-2.5061728395061724,3.0123456790123453,-11.169269318473596,-150.25328466565657,-1.9330971967625443,0.6844493827160416,-7.182784636488337,0.5989705679012418,-422.82470719547484,42.58710562414264,-0.4385250000000123,0.017209064757890954,0.291838134430727,14.47599451303154,-12.332503158437506,195.72400052566437,-0.4208791974381866,-0.17999231824418224,1.256391937204698,-0.36404609190671167,146.70761926682565,7.341563786008207,0.4287499999999928,-0.059674323245798334,0.22427983539094654,15.637860082304528,-21.067899047416947,31.36302974347121,-1.1661406030466157,0.4268995884773594,-11.499942844078648,0.3409377860082354,-168.69318002004192,77.70096021947873,2.8685499999999955,0.12179968626606905,1.4561042524005487,22.441700960219478,4.749191927802132,376.19099999720055,1.0932601994582531,2.5831186556927253,39.90841716201798,1.817296935528122,283.6277386353981,0.7027622210239473,0.5511377964469532,0.43722511370129297,0.3113736311899635,0.28685562021931205,0.1708219724789201,0.18551699081608136,0.09592086212317238,0.11763228752089093,0.05397413662793168,0.0761947980836742,0.029697693673581178,0.05094808547682553,0.017395255096685554,0.033169564908971105,0.010056290640754487,9.005164575037776,5.6927893314115785,4.108918120940547,2.191756340971839,0.39788566452576624,-0.5204380157917805,3.1857769158231743,0.9929418790317123,7.005148273928064,1.8931344430308585,17.425814772681758,10.95345657618011,19.00117995671019,11.704455707687268,1.9929470967820657,0.5450368496685591,3.989900708416226,2.241526712920045,8.002961082251062,1.1947282873766705,4.01123103876366,2.437437799043093,20.899132418610417,13.303154012464548,0.26817606704757563,0.581660509744478,0.7226566855932688,0.7645120147397337,0.7645120147397337,0.7645120147397337,1.1539483628992107,793.2010626317405,0.0,0.0,2.0,0.0,10.0,8.0,2.0,0.0,0.0,4.151924080636826,2.278139814975072,1.4353662037838308,1.1851851851851851,1.1851851851851851,1.1851851851851851,112.48293882624108,1645.4345718737825,74.13929823204114,30.471010590255233,63.21012610055905,,18.0,880.0,12.207932775496605,18.99388488503105,36.931887269413544,37.18231015827185,11.126902983393991,24.26546827384644,12.13273413692322,0.0,5.316788604006331,9.473725907600098,13.304761904761905,31.5,13.0,1.0,18.5,0.0,0.041215106732348086,-5.5,0.1770723104056437,0.058233124899792044,-0.11883918550585165,0.055911330049260966,0.20218464920315038,0.0,0.6202821869488533,0.896387520525451,0.4432098765432096,0.5620490620490612,0.84047619047619,28.009847794822456,0.42300992393172265,0.7670099239317226,23.6479166351887,6.077546434164226,7.913657204277147,51.657764430011156,13.991203638441373,0.5118153507968496,0.09305654974946313,0.0,0.37580529706513954,0.45454545454545453,0.4091425593347805,-1.0875747489169083,-0.0779124647021044,-0.02014027312809089,-0.057240776258784654,0.5908574406652194,1.5706056923580876,0.04185871056002741,0.029085290599223847,0.04487444835308822,-4.97020679183226,0.7764074587488262,0.7111396018512829,1.3477413527344295,0.9927009500829438,0.5549419938388935,1.005080966323573,0.7721667411110217,1.0919655372337869,0.6996377996196923,0.6988414024560856,0.7619908769835441,0.9759449093463687,0.900638450561325,0.8060962825203654,1.1297747220018008,1.3216457562522603,0.8629184852918061,1.0689532841459874,0.8951159455253973,1.2030571620434567,0.7971728179508144,0.6560940633052422,0.8550913919336933,1.0948113118291247,1.0243960825736527,1.0092796017023475,1.059240749283334,1.0971036939518317,1.0761639207700848,0.9174616704553518,1.0185301735214365,0.9858416657658053,1.012639767841766,0.8969907663895635,1.0376413973157592,0.9980514171790621,1.1167672891569653,1.0284555749743851,1.3813207933992102,1.0318601871003246,1.106415923729722,0.8575383851921177,1.1028498424909405,0.9795348156061124,1.0420167592877447,0.8619100712733848,1.0646345830668766,1.0418054704736897,1.0114804587935429,0.8612718122383707,0.8817034886464974,0.9453438395415473,0.8987682907845578,0.9023898422534129,1.009063578166344,0.9977146343029019,0.8755554795081161,0.9404564656361344,0.8508621969283776,1.0392469917222684,0.9494399657558679,0.8602450995608232,0.9308692800763655,0.9014370393053217,0.8740291654387649,0.8467575688419079,0.9473202822929178,0.9349225008814065,0.8683434455661406,0.8352494291603435,0.8574263764610511,0.9581269123952839,0.9790412735321736,0.8351845938160389,1.0816295393129594,0.906379128336601,0.8636773284394047,0.845369243381361,0.9719873411477369,0.9670954179174868,0.8484366024555594,0.901085174688524,0.8484594691739664,1.0028421845799405,0.923322005097706,0.8444270559410956,1.0874269009005764,0.943839541547278,0.9393679950186798,0.8352135901024293,0.9177815705467319,0.8788283999800617,0.8519586253319829,0.7906579558894093,0.8461841719239944,0.9081173017243148,6.5,0.15671870217324763,3.7777777777777795,1.625,1.9733333333333336,0.75,0.5257142857142858,0.41666666666666663,0.20508944318468125,0.23375,5966.084584175035,6785.690726703364,2800.1557332360785,2535.14165781895,12.421884179491153,0.46116921160544544,6.693293645781062,0.8558701943879236,1.0,0.45454545454545453,1.6029634215266415,3.4767476871883964,4.319521298379637,4.569702316978283,4.569702316978283,4.569702316978283,0.203125,0.006529945923885318,0.08395061728395065,0.035326086956521736,0.053333333333333344,0.0234375,0.018775510204081636,0.016025641025641024,0.007888055507103125,0.009739583333333334,0.4581312735678502,22.203125,10.08,5.626634958382877,167.82274711533492,1.0,4.3023018674579525,191.4367089847021,,158.86573458456203,155.7323382667657,159.9824076783541,158.74567200473143,225.653976308834,157.81935566548134,159.10351608955915,200.67108910973107,0.016992353440951603,-0.06453962812157539,-0.41882970416897725,0.17918865932740155,0.17698433505931702,0.00933127849938204,0.01848107687068115,0.047970670549550364,-0.05742275333787146,-0.07536601551942786,-0.0761520684753478,0.06120635194562555,-0.03920614364312756,-0.06162583281223841,-0.10185129417815662,-0.1326230283472891,-0.019765079979204205,-0.1192004539973275,-0.03809191231449353,-0.13884379979346925,-0.05295480770787899,-0.007591292191765006,-0.07798042705311914,-0.08715376389402517,-0.045399435119061256,-0.03174515125975524,0.15813986373263628,-0.06703322233408195,-0.08102218033724881,-0.01901799202001418,-0.04644239839811347,-0.013565703000169417,-0.035433779088717615,-0.020400297748372397,-0.022369177628913318,-0.03338762213483133,-0.13199907723643564,-0.1163664941115866,-0.1516826210858304,-0.10749729596387025,-0.14737779683801636,-0.05367894113784469,-0.12700455471902342,-0.04191466023537189,-0.12181957815673636,-0.08782023032884015,-0.11918933481365705,-0.08009442670211972,-0.026847918436703498,0.028053927164975283,0.03524810386801172,-0.029083094555873924,0.004747820672478204,-0.03594795364115035,-0.026868966443024306,-0.05672924509835439,0.02444903629861875,-0.019785341560458393,0.031646175856200824,-0.0596256992700883,0.04027058052883833,-0.015458610134164245,0.005705484384743422,0.003722741092324854,0.02508009088057188,-0.0436306659453437,0.03847355048909445,-0.013576942241375954,-0.007067496078455387,0.003804232435368424,-0.02114284004140954,0.022741389392113173,0.007977462773330921,0.01736787419245264,-0.022734698495786604,0.0032875885990046763,0.031133250311332496,-0.08565017987857872,0.007084392861762656,-0.04322767435224751,0.019262106781300525,-0.04001326861568682,0.022753516840375125,-0.03004888035294831,0.0908032894631378,0.12496947397948686,0.04990532087128973,0.022955073795750666,0.048050941046547134,0.020764704627823732,0.09138859786823914,0.043584641482651024,0.12534914960915627,0.14933851795540878,0.13043624130749867,0.054334848156193764,11.69744767022748,25.818508660547085,8.670127184653216,16.146019222414427,31.90010338858012,35.50236093630179,35.75454340304923,35.75454340304923,35.75454340304923,59.62662747149967,46.37319348209771,2.0031907642828877,7.707561921861629,3.5426813032574413,13.253433989401959,6720.621053922746,6194.352335241141,2042.3870697904276,94.0,45.0,58.0,73.0,96.0,98.0,106.0,112.0,110.0,405.1751647200007,32.0,5.043425116919247,5.8888779583328805,6.760414691083428,7.621195162809845,8.49351506406166,9.359880439245758,10.232467506256102,11.101236025842091,11.97395772152685,0.6604938271604937,1.0020000000000002,1.1372954917653995,0.6251087836150198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6523821800842761,0.9866376180101668,1.0184645679911524,0.6237614228313397,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,6.0,1.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,25.00356930128784,47.54933089965281,0.0,0.0,0.0,0.0,8.78083009534964,0.0,0.0,0.0,73.2083918858677,13.08951281182515,0.0,253.2624578455854,-673.2173119543684,-48.22842761541324,-12.466987258414227,-35.4324901028615,365.7453966718265,972.2172599194141,25.9108706166279,18.004023331841005,27.77763599769755,0.5,0.7001068191170363,0.18335079674549432,60.47245392421917,0.07926707961297162,173.66575463662963,0.29989318088296363,9.0,0.1875,0.2785394885519535,0.6041382539417778,0.7505830994534254,0.7940558899301452,0.7940558899301452,0.7940558899301452,2.363600000000001,,1.8095238095238098,2.109012700178188,1.6251927160039354,1.875140440711905,-8.843768211265536,1.9146608962806693,1.7612421939878375,-3.0086218710769463,103.15730000000003,28.46761079263115,0.0,5.316788604006331,0.0,50.099152042697256,13.08951281182515,59.159547076255436,0.0,11.49902366656781,4.174387269895637,0.0,5.501258210544727,0.0,7.02197642307216,0.0,8.63141433550626,0.0,10.286877452992435,35.66666666666666,8.791683502826297,0.0,0.0,0.0,0.0,0.0,2.247362879284675,0.0,54.10800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.413956555331566,14.790514511606428,8.78083009534964,11.49902366656781,47.71843315249977,12.841643245852019,11.63444168209179,23.96854622924601,36.39820241076966,0.0,0.0,0.0,33.75587431521107,35.22863772455091,37.69187270585108,382.8734179694042,,317.6066744236396,311.31922738179503,319.8527331004321,317.3620239790689,454.357527862932,315.5066657519088,318.0855672002226,402.3796340370749,37.69187270585108,382.8734179694042,,315.92194535960016,309.3556638333531,318.3396226407042,315.61620356875113,460.15172082893355,313.724050434682,316.4457899851304,404.350800090539,4.7834075191447045,301.0287578256939,,254.15807560546182,248.98656985620406,255.2412365094063,254.05364564613137,357.66423524578545,252.41144456425508,254.50809563195233,321.92693995324083,1.2997197484776235,13.202531654117386,,10.951954290470331,10.735145771786035,11.029404589670072,10.943518068243755,15.667500960790758,10.879540198341683,10.968467834490434,13.875159794381892,2.391703759572351,191.4367089847021,,158.86573458456203,155.7323382667657,159.9824076783541,158.74567200473143,225.653976308834,157.81935566548134,159.10351608955915,200.67108910973107,53.27843137254901,0.0,0.0,0.0,26.56050398114867,0.0,20.847071626239682,54.99708667152223,3.0021201455465802,3.0656923448391704,11.59355350516148,0.0,-2.2746546517132207,0.0,0.0,0.0,0.0,33.683116832892345,433.37162003464647,86.56002476243864,187.74437510817341,233.2541501125004,246.7639251168273,246.7639251168273,246.7639251168273,853.0,137.47496968607786,185.63623448276545,64.61591369201122,70.95,70.95,1.0,7.839205522614114,6.0,5.078919755367086,5.313138770456203,,5.331901195172988,5.33189211878907,5.33077109334219,5.33236341794309,5.316228755776904,5.331930676376939,5.331680758630622,5.3288067234600875,0.17513516397817538,0.18321168173986907,,0.18385866190251685,0.18385834892376104,0.18381969287386862,0.18387460061872724,0.18331823295782426,0.18385967849575652,0.18385106064243523,0.18375195598138233,2.6898093293890466,2.734893503159514,,2.738418608599499,2.7384169063189594,2.7382066351270993,2.7385052948900515,2.7354749084783383,2.73842413779469,2.738377264791508,2.7378380708296945,288.5800000000007,186.11642810592394,181.23330470501864,,179.39132741210665,179.37754931966114,179.54321387813405,179.3341326960799,181.84873465764272,179.3835993012269,179.4190984808881,180.00753012932012,6.417807865721516,6.2494243001730565,,6.185907841796781,6.185432735160729,6.191145306142554,6.183935610209652,6.270646022677335,6.18564135521472,6.18686546485821,6.2071562113558665,6.291083172434645,6.264495914512334,,6.254280343264136,6.254203535640366,6.25512666178532,6.253961465889254,6.267885950235932,6.254237262712484,6.254435138480957,6.257709421059398,38.15405748631015,0.0,23.912763971078853,1.6230391991579072,0.6243236801267675,8.791683502826297,0.2140271876109625,0.5134383062223971,0.0,360.31633070648223,156.77145066080232,-416.72680389685274,-29.853775504965252,-7.7171630351269025,-21.93298967878173,226.3992732934471,601.8101201875136,16.03903242907709,11.144631855324327,17.194574862500392,2692.0,46.0,2.0487547899806575,0.851232033507199,0.0,0.0,0.40236892706218247,0.10897058437748727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2721655269759087,0.10703808753134778,0.5995503630795436,0.17390944270724668,20.38010440969447,15.982996096961642,13.991203638441375,9.963956198078831,12.908502909869043,7.686988761551404,10.759985467332719,5.563410003143998,8.587156989025038,3.9401119738390125,7.314700616032723,2.850978592663793,4.992912376728902,1.7047349994751841,3.515973880350937,1.0659668079199756,4.5378833094842825,1.6657785764344832,6.38829821344645,2.105724395317488,9.66286866663841,2.680565944093813,95.34230034949852,52.477642623682435,39.81977409266388,38.355000943714444,38.355000943714444,38.355000943714444,154.0,180.0,58.83182499999998,31.348174999999994,0.46296296296296297,212.07,8.86111111111111,6.277777777777778,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,54.0,0.0,1.0,57.0,12.0,0.0,6.0,51.0,12.0,32.0,45.0,0.0,0.0,0.0,22.0,0.0,2.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,5.0,3.0,2.0,29.0,7.0,0.0,1.0,4.0,0.0,4.0,6.0,0.0,0.0,2.0,0.0,2.0,3.6635616461296463,5.857575947835618,4.204692619390966,4.677490847567717,5.146039931102459,5.652050487565848,5.691203692449341,5.807579268337845,6.012185869921234,6.132855596549932 +3033821,CC(C)n1c(=O)c2c(-c3noc(C4CC4)n3)ncn2c2ccccc21,0,24.714285714285715,6.342964285714285,3.880952380952381,9.095238095238095,163.1666995163627,97.78436935714286,1.5498816043436425,6.409528571428571,4.017857142857143,7.801304476190475,233.35905492502098,27.304347826086957,6.5200000000000005,4.630434782608695,9.391304347826088,148.0402825724847,104.97450280434789,1.83764420152174,6.656110869565218,3.222826086956522,7.876610695652168,275.4197203061895,23.531645569620252,6.429706329113925,4.2784810126582276,8.278481012658228,156.31523248982518,89.35501975949369,1.5768295760606579,6.529062025316455,3.042194092827004,7.840983037974682,231.93881887247653,21.63157894736842,6.379586315789475,3.8,7.126315789473685,161.03277333217665,81.74221415789476,1.4535894441940314,6.46016210526316,3.0497076023391796,7.83463237894737,213.66693994571028,22.346534653465348,6.559313861386138,3.623762376237624,6.792079207920792,160.49391242485538,83.85106364356437,1.45731339864692,6.633455445544555,3.6809680968096803,7.999283247524752,216.50289355208847,19.7,6.513237999999997,3.35,5.39,159.4729711966935,71.36581443000001,1.4263226599254706,6.5868649999999995,3.671666666666665,7.974185000000002,203.495847611498,17.45263157894737,6.269052631578948,3.042105263157895,4.431578947368421,160.54872800749942,62.603856336842114,1.3304837095420003,6.3452863157894726,3.110526315789472,7.766345094736841,183.9201424774057,14.829545454545455,6.136806818181818,2.8068181818181817,3.2386363636363638,165.635145197426,51.84490404545454,1.1958795031674432,6.199755681818181,2.6824494949494957,7.669909818181821,160.96573449836197,14.971428571428572,6.347200000000001,2.7285714285714286,2.857142857142857,170.9929170448084,52.17003638571429,1.1265850051576718,6.382492857142858,2.876190476190477,7.891529085714285,157.06860749008533,7.154195011337869,0.12269075963718815,0.017936385722773115,0.6921768707482995,4.29705215419501,1.6555645482720083,34.02528506632653,0.21643508661724772,0.11420861678004528,1.0926713277903752,0.07158060997732424,47.4754761312684,0.6822439120575765,0.01304008922409543,-0.00867564601630588,0.3269742679680567,2.0466331460120277,-0.445590413931167,3.154462944543038,-0.02057379528155564,0.013472232081238315,0.025571138278177596,0.005935089815636389,-1.320374270510688,1.2026464594276534,0.025679071586440477,-0.0012679964040781964,0.12096357530353906,1.56973506702259,-0.21969478083749977,5.600735771828986,-0.008645407901891156,0.024745512213324158,0.11838285478279453,0.012776066333706466,1.4738628167312622,1.6979353144766678,0.013320368182360652,0.0014200224850244385,0.07148227712137488,1.0182360663563672,0.1555767851761881,8.103623897583246,0.032519109207892645,0.015330581214942114,0.039791774409568895,0.00444645568683613,10.13407642155179,0.4497653847017351,0.001420838665499201,-0.0005199391964411813,-0.10047484340270767,-0.2730068925259875,0.04476929179900847,2.1628556557385332,0.008925358928310742,0.0022117509710155043,0.07533773502066757,-0.0009744327024539325,2.7897852832345404,-2.0046712018140598,-0.01581049773242628,0.0005159316980824668,-0.15765306122448983,-1.377528344671202,0.030892120310088634,-9.539649193469382,-0.02762015408949487,-0.018836092970521478,-0.19025730662635432,-0.006104514739229033,-10.517841178819117,-1.0253729562000238,-0.0013893811910729113,0.0003248225466200079,-0.14129967776584323,-0.708079723117317,-0.330824064180266,-4.982158066326529,-0.041512905726995585,-0.002880847356486439,-0.0014084483696012585,0.002182509822174483,-9.424628621573746,-0.8484590806019376,-0.019347550762729326,-2.0419962823624074e-05,-0.010899814471243028,-0.9491084312512882,-0.20499258058978098,-4.03664637070965,-0.028662671579161428,-0.016803530199958776,-0.1420114552555029,-0.010657392444856726,-5.281776103074749,-1.1718820861677999,-0.04706303854875281,0.0003057910488252849,-0.07755102040816325,-1.857596371882086,0.4169427650875143,-5.343693058163266,0.026268971012735905,-0.04162487528344671,-0.21731229528848572,-0.025768177324263036,3.3677758611190765,,,0.46666666666666673,1.36,0.64,0.02,0.72,-0.08,0.8062844227288346,0.010653860673290154,0.02785386067329015,0.947572565524602,0.24611560091524531,0.23979908090638838,1.7538569882534367,0.48591468182163366,2.074601915216947,1.4933824810872514,0.4277491978116603,0.15347023631803544,0.0,0.5812194341296959,7.9794815424762024,1038.0,266.4045,163.0,382.0,6853.001379687234,4106.943513,65.09502738243299,269.2002,168.75,327.65478799999994,9801.080306850881,1256.0,299.92,213.0,432.0,6809.852998334296,4828.827129000003,84.53163327000004,306.1811,148.25,362.3240919999997,12669.307134084716,1859.0,507.94680000000005,338.0,654.0,12348.90336669619,7059.046561000001,124.56953650879197,515.7959,240.33333333333331,619.4376599999998,18323.166690925646,2055.0,606.0607000000001,361.0,677.0,15298.11346655678,7765.510345000002,138.09099719843297,613.7154000000003,289.72222222222206,744.2900760000002,20298.359294842478,2257.0,662.4907,366.0,686.0,16209.885154910393,8468.957428000002,147.18865326333892,669.979,371.7777777777777,807.927608,21866.792248760936,1970.0,651.3237999999997,335.0,539.0,15947.29711966935,7136.581443000001,142.63226599254705,658.6864999999999,367.1666666666665,797.4185000000002,20349.5847611498,1658.0,595.5600000000001,289.0,421.0,15252.129160712444,5947.366352000001,126.39595240649003,602.8021999999999,295.49999999999983,737.8027839999999,17472.413535353542,1305.0,540.039,247.0,285.0,14575.892777373489,4562.351556,105.237396278735,545.5785,236.05555555555563,674.9520640000002,14164.984635855853,1048.0,444.3040000000001,191.0,200.0,11969.504193136587,3651.902547,78.86095036103703,446.77450000000005,201.3333333333334,552.407036,10994.802524305973,300.4761904761905,5.153011904761902,0.7533282003564709,29.071428571428577,180.47619047619042,69.53371102742435,1429.0619727857143,9.090273637924405,4.796761904761902,45.89219576719576,3.006385619047618,1993.9699975132728,31.38321995464852,0.5998441043083897,-0.39907971675007053,15.040816326530607,94.14512471655327,-20.497159040833683,145.10529544897975,-0.9463945829515594,0.6197226757369625,1.1762723607961694,0.2730141315192739,-60.73721644349165,95.00907029478462,2.0286466553287976,-0.10017171592217752,9.556122448979586,124.0090702947846,-17.355887686162482,442.4581259744899,-0.6829872242494013,1.9548954648526085,9.352245527840768,1.0093092403628108,116.43516252176971,161.30385487528343,1.265434977324262,0.13490213607732165,6.790816326530614,96.7324263038549,14.779794591737868,769.8442702704083,3.0893153747498014,1.4564052154195009,3.780218568909045,0.42241329024943236,962.7372600474199,45.42630385487524,0.1435047052154193,-0.05251385884055931,-10.147959183673475,-27.573696145124735,4.521698471699856,218.44842122959187,0.901461251759385,0.22338684807256592,7.609111237087424,-0.09841770294784719,281.7683136066886,-200.46712018140596,-1.581049773242628,0.05159316980824668,-15.765306122448983,-137.7528344671202,3.0892120310088633,-953.9649193469381,-2.762015408949487,-1.8836092970521479,-19.025730662635432,-0.6104514739229033,-1051.7841178819117,-97.41043083900226,-0.13199121315192658,0.030858141928900747,-13.423469387755107,-67.26757369614512,-31.42828609712527,-473.3050163010203,-3.9437260440645807,-0.2736804988662117,-0.13380259511211956,0.2073384331065759,-895.3397190495059,-74.66439909297051,-1.7025844671201806,-0.0017969567284789184,-0.9591836734693865,-83.52154195011336,-18.039347091900726,-355.2248806224492,-2.5223150989662058,-1.4787106575963722,-12.497008062484255,-0.9378505351473919,-464.79629707057796,-82.031746031746,-3.2944126984126965,0.021405373417769942,-5.428571428571428,-130.03174603174602,29.185993556126004,-374.05851407142865,1.8388279708915134,-2.9137412698412697,-15.211860670194001,-1.8037724126984125,235.74431027833535,0.6851611021655165,0.5603292002051198,0.4188919670876153,0.29281020864247076,0.26012958539122316,0.15454314463932786,0.15626332255446707,0.06980230936946272,0.10003792805926104,0.035336692781235406,0.06071479896831539,0.017942007043199194,0.037957324530181344,0.009127133376450889,0.023977841011053172,0.004698980336821883,8.033548851282193,5.693231292888181,3.5705866356218707,2.187130419697708,0.489434157563772,-0.45444478664256444,3.3388140009876404,0.9778465064771604,6.033530667538538,0.9889424814934957,14.569759914167403,10.958992661236405,16.016134105613983,11.708187478607424,1.9936923843198722,0.7154865469066015,3.516440907198863,2.2348984128190703,7.008279660314628,1.25088596846076,3.7243486900688456,2.429522194109176,20.88535274725776,14.681743461891994,0.2826672811727795,0.6333881364976438,0.7735352763074501,0.806633436854391,0.8397315974013317,0.8480061375380671,1.377010985586671,1163.3544967572986,0.0,3.0,2.0,0.0,8.0,3.0,0.0,1.0,0.0,3.765599019087005,1.7472399520298612,0.940708928674451,0.7502327381982603,0.5597565477220714,0.5121375001030231,159.24380457045146,1122.4079874718366,47.944522319551695,26.723999701710387,53.388690477431766,,11.0,486.0,0.0,4.794537184071822,11.601107724199968,28.84366317865195,23.87504468108454,0.0,10.894419722555895,42.51363727948948,15.124620299019863,4.523094936973348,11.666666666666668,34.0,16.0,0.5,18.0,0.0,0.033333333333333284,-2.0,0.1729684908789384,0.051555555555555466,-0.12141293532338293,0.0,0.1593248811410456,0.0,0.6222222222222223,0.8413333333333329,0.44925373134328395,0.5706666666666669,0.8413333333333329,20.157110568220865,0.26634651683225385,0.6963465168322538,23.68931413811505,6.152890022881133,5.994977022659709,43.84642470633592,12.147867045540842,0.5546751188589544,0.11428571428571427,0.0,0.45428571428571424,0.3333333333333333,0.35535948044341137,-0.7245628762112042,-0.048103155393675975,-0.017251497052647717,-0.04830419174741361,0.6446405195565885,1.3143946191878417,0.0389924856191511,0.031295109980662886,0.04868128219214227,-4.092627888809256,0.6600031006683663,0.6303632953410531,1.5625991083230775,0.5978527935049672,0.3136027302971206,1.4278955488151344,0.6666476179152537,1.0922201442546184,0.6009031066506221,0.5297807508645338,0.6628253962183658,0.9319424269697916,0.7012497743184417,0.6518296751547219,1.1915608151086905,0.9729418716760487,0.5506880197722188,1.2291228566036534,0.7065608261697455,1.0004861434974452,0.6341383666497945,0.5313582516179653,0.6589824268008716,0.8923535664847189,0.7081040954208024,0.8785957211436921,1.1636448835829145,1.0391827233932494,0.7831620608248856,0.9531796020069754,0.7068647694044866,0.7997050626589864,0.8430198003247809,0.8275687561580747,0.9117467564624779,0.724602852574377,0.8869255150554676,1.1698632602342556,1.3476447589259808,1.1938842532901937,1.1280114423051808,1.0263113515384792,0.8819104506635174,0.8922492194548661,1.129551706262633,1.3123320114224744,1.2536640807110775,0.8362275327461602,1.2219104595879557,1.306248389176002,1.1090417040162461,1.2481326781326778,1.3562453825857523,1.0143492674543746,1.2178259215851115,1.0749288683575564,1.3098598856371364,2.00828445430832,1.3414739394867097,1.1222863244232388,1.100936691967637,0.9902758332809473,1.0091557699768063,1.1653691969481441,1.1394709068184978,1.192564292498404,1.1038222484566411,1.157519554191249,0.9998876853014881,1.0349834002204203,0.9510713892631655,1.1565324466526996,1.1257131537242473,1.0964751365307093,0.9185305275905292,0.8654232745141834,1.209458203406093,1.1024973830701787,1.126392688844227,1.0715624169975029,1.0954652116958412,0.8766186741676374,1.0221115540880503,1.0871782707347943,1.2485182250396198,1.6779430892242861,1.084968934293665,0.9570024570024568,1.5577836411609502,0.7208266320545883,1.2355062608764091,0.7701672985552404,1.6397883492832472,1.2674199080545914,1.663367171255064,0.8544736228141002,4.0,0.051125395367819626,2.9444444444444455,2.2222222222222223,2.068888888888889,1.0625,0.6727891156462584,0.22133645124716556,0.22904856386999242,0.11655864197530869,5312.842492866357,5755.156205908874,2602.084839520159,2433.3356337261903,13.664310376216827,0.46981149483390183,7.244660292492004,0.8861216157199008,1.0,0.3333333333333333,1.6267184036917557,3.6450774707488995,4.45160849410431,4.6420846845805,4.832560875056689,4.880179922675738,0.13793103448275862,0.005680599485313292,0.0718157181571816,0.04938271604938272,0.043101851851851856,0.02724358974358974,0.021024659863945576,0.009222352135298564,0.012055187572104864,0.009713220164609055,0.3871709295060359,17.122473246135552,6.5578512396694215,2.926681783824641,142.46791486563026,1.0,4.22097144907091,113.23323207010009,,80.49363113898175,78.91249591226014,77.78122047259802,80.50785513644115,108.07268020997427,79.8312411820835,80.58807667434922,98.69718811543873,0.09536277819885618,0.10628419990760996,-0.48368975502632944,0.4723854289071678,0.47628771366295747,-0.26914711020856963,0.09270937593598252,-0.09505757870921891,0.11796160798606402,0.023402406220256675,0.0829147700406094,-0.027811712027066126,0.16810367309274013,0.20929914903434202,-0.07069408651645308,0.1747581874164151,0.3653051000300593,-0.1327008246623822,0.16460510943292025,-0.03994457662578542,0.21666939773013463,0.10834260199925903,0.17848501623210183,0.03104471901779503,0.23733422303778465,0.10856863403365208,0.07916993462186156,0.10327169274537695,0.23696153312040003,0.09397204436309717,0.23816476134693962,0.15024878690487328,0.13423313973294437,0.03641696583183593,0.06211815865001299,0.21345918455944166,0.06286736439095568,0.011580649347194508,-0.02898795802439926,-0.14515775901914518,-0.06353353013401611,0.027041707220498482,0.0635661288809899,0.041238040780766275,0.019365885284077313,0.06894821260938296,-0.013613081849436872,0.058762660442222,-0.28020919175911263,-0.1288646168560688,0.028764529602382984,-0.22776412776412777,-0.3205751978891822,0.018659568630128145,-0.280369412772691,-0.12761403209240021,-0.16492707381963978,-0.1741212584127168,-0.08528168090720183,-0.2215426160179536,-0.14332471432146132,-0.011324252903653742,0.018109699001822514,-0.20413810940126734,-0.16478266907373978,-0.1998255305270718,-0.14642516753686724,-0.19180303145768887,-0.025224430850385587,-0.0012889954497565656,0.03049023782929305,-0.19851572621441232,-0.11859602362771933,-0.1576936259905998,-0.0011384658614749603,-0.01574715211078845,-0.22087431038618374,-0.12382034926016117,-0.11863666572788123,-0.13243079958588053,-0.14713014371166708,-0.12996722037420136,-0.14888658322739698,-0.11125272526958513,-0.16380348652931845,-0.3835907340367284,0.01704864366498509,-0.112039312039312,-0.4322955145118734,0.2518432552344138,-0.15705064770939145,0.12137112989998235,-0.3644635269824884,-0.19888166712303101,-0.3599882332998566,0.07093716873543865,4.97123285640664,15.047100348441115,11.658214463964544,15.290925578336124,36.287669984038175,40.01322533144482,41.25313009334958,41.96908247430196,42.017082474301965,51.86504788042368,37.334562027181285,10.693729945291508,3.836755907950886,0.0,14.530485853242396,5049.363286381075,4218.741176426306,980.7062087764298,245.0,44.0,63.0,92.0,117.0,146.0,176.0,205.0,228.0,335.1382247840005,29.0,4.990432586778736,5.905361848054571,6.840546529288687,7.771910256435763,8.712595487748722,9.64956257688248,10.592350569157022,11.53209063423124,12.476065431008182,0.6984126984126985,0.9976190476190477,1.1286291767579566,0.6648013130820557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6914667949814657,0.9839402427637722,1.012468352235286,0.6624988659823792,5.0,3.0,0.0,1.0,0.0,3.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,9.090194584764703,17.53794878722926,0.0,11.715128420025835,5.559266895052008,9.195231790333615,4.9839785209472085,4.9839785209472085,0.0,17.289397394048667,38.821851782156486,11.959746875309353,11.033401435232523,195.61875133422825,-398.8583192735268,-26.47988786342708,-9.496626649369684,-26.590554618235117,354.8625559046797,723.5496681983099,21.464634456124617,17.227373052340702,26.79813585919665,0.45454545454545453,0.8328881097763553,0.16607646556701633,161.4162198937199,0.13610729151487824,45.126781765546966,0.16711189022364456,6.0,0.10344827586206896,0.3016733393364439,0.6759760572237463,0.8255464478592052,0.8608700713668945,0.8961936948745836,0.905024600751506,3.1575000000000015,,1.2142857142857144,1.4997673336435549,1.4725162990448417,1.2110320506083252,-4.755497619587395,1.3233629130966955,1.1983045659983018,-2.3946120973331952,92.61000000000003,4.523094936973348,0.0,24.09241455307301,0.0,38.64886452054263,0.0,46.83731634976072,0.0,11.518332492848387,4.07753744390572,1.9459101490553132,5.459585514144159,4.110873864173311,7.0431599159883405,6.1070228877422545,8.725020038618554,8.04012466444838,10.464502361385257,29.333333333333336,9.487253173397203,12.94910934744268,0.0,5.347119472789116,0.0,2.2886478279583446,1.4944579344083315,3.6079054862685815,41.900000000000006,0.0,13.20813854245402,0.0,0.0,0.0,0.0,0.0,0.0,47.402425423834174,5.559266895052008,0.0,0.0,24.09241455307301,0.0,0.0,44.53958844256853,39.91042046965615,0.0,28.068434645697167,0.0,27.92165514944634,29.04160538922156,33.39061383334276,226.4664641402002,,160.9939628607366,157.84829894536335,155.64666482085008,161.02241327900094,217.66711965821654,159.67821427555702,161.18167281631628,198.16065210202413,33.39061383334276,226.46646414020017,,159.97396286073666,156.58849438510276,154.40975112965242,160.00514635648994,220.90085803953605,158.5665894285559,160.17509698087778,199.7889883282108,5.083990587307053,164.16670833034715,,116.8081310023243,114.57559970264032,112.77381881325077,116.82759717853318,155.1035542418419,115.86328927835598,116.94247768273652,142.22381693566,1.3356245533337106,9.058658565608008,,6.439758514429464,6.3139319578145345,6.225866592834003,6.440896531160038,8.706684786328662,6.387128571022281,6.447266912652651,7.9264260840809655,2.5785141832280067,113.23323207010009,,80.49363113898175,78.91249591226014,77.78122047259802,80.50785513644115,108.07268020997427,79.8312411820835,80.58807667434922,98.69718811543873,41.325490196078434,0.0,3.9998633087558053,0.0,0.0,0.0,0.0,42.52367079388201,2.159452489316306,0.0,0.0,0.0,0.3895598813063633,0.0,0.0,0.0,0.0,27.824952371259926,458.4893354534312,68.32217295505374,153.0932537714538,186.967556752381,194.96755675238103,202.96755675238094,204.96755675238097,1370.0,132.47091591958542,91.99197178547675,80.97373683946128,78.22,78.22,0.8333333333333334,9.990722020687251,5.857980995127572,4.389527627770423,4.921142275438708,,4.894480802266084,4.892825335920798,4.892002751905228,4.894496656269466,4.910332880324635,4.893821540728832,4.894574295780255,4.907843766478032,0.17558110511081693,0.1968456910175483,,0.19577923209064338,0.19571301343683192,0.1956801100762091,0.19577986625077862,0.19641331521298538,0.19575286162915329,0.19578297183121018,0.19631375065912127,2.395512351297119,2.509831405235749,,2.50439893527834,2.5040606468182265,2.5038925122306535,2.50440217443247,2.5076324677826416,2.5042642313194414,2.5044180369205797,2.507125425795219,237.41999999999996,196.23482559315434,156.26021960461216,,158.2977100885406,158.41696584944205,158.5964302580399,158.29692319315015,157.65118644124524,158.35038753080633,158.2904776089895,157.55348359886725,7.849393023726174,6.250408784184486,,6.331908403541624,6.336678633977682,6.343857210321596,6.331876927726006,6.30604745764981,6.334015501232253,6.33161910435958,6.30213934395469,6.195602763728865,5.967813423821339,,5.9807682330124035,5.981521313154234,5.9826535329908275,5.980763262016008,5.976675643629772,5.981100952161185,5.980722542870867,5.976055710901652,8.955024959057697,22.101602891156464,4.055644998740237,2.6634394946250115,1.3856417291689658,7.853710798113756,3.818405153715399,3.9998633087558053,0.0,265.9744835481103,107.68446595490886,-219.56404899680476,-14.576683286599035,-5.227715452304875,-14.63760326645365,195.34520366454817,398.30056720208376,11.815880034812785,9.483346838144847,14.751872859336428,1365.0,45.0,1.7923366992372483,0.920886919794955,0.0,0.0,0.6379797606074039,0.20803663723885127,0.0,0.0,0.28867513459481287,0.28867513459481287,0.16666666666666666,0.14433756729740643,0.4497784354582114,0.1727552155183437,0.6578278489356352,0.19054985713624023,1.0538297790601112,0.2284594325206966,17.129027554137913,14.008230005127995,12.147867045540844,8.491496050631651,11.445701757213818,6.799898364130426,9.844589320931425,4.397545490276151,9.203489381452016,3.2509757358736575,7.1036314792929005,2.0992148240543056,5.541769381406477,1.3325614729618298,4.2201000179453585,0.8270205392806514,4.6917991742408285,1.7536584549599108,8.703437676707226,2.5000972927789977,14.317710094719557,3.379137454087171,81.69776502499246,38.76399240195618,29.66679984539366,27.272653237562224,25.68620125420192,25.524662329307695,146.0,183.0,48.49948099999999,25.358518999999998,0.5,241.07,6.972222222222222,5.277777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,18.0,20.0,42.0,0.0,0.0,46.0,20.0,1.0,8.0,38.0,21.0,29.0,25.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,17.0,7.0,0.0,3.0,25.0,7.0,0.0,5.0,2.0,0.0,5.0,3.0,0.0,0.0,0.0,3.0,4.0,3.713572066704308,8.977877283248425,4.448516375942715,5.199187400640846,5.957131868027477,6.563723289298338,7.12652678682752,7.662585344729667,8.188722761031263,8.613650085651276 +2119,C=CCc1ccccc1OCC(O)CNC(C)C,0,18.048780487804876,5.829143902439024,2.5121951219512195,4.634146341463414,164.32107249567628,70.62105702439025,1.3306342636957806,5.896739024390244,3.179539295392954,7.427743414634147,188.87257012931067,20.414634146341463,6.165951219512195,3.048780487804878,4.2926829268292686,147.17249209630117,74.94869731707314,1.6731802633170738,6.30289024390244,2.8441734417344176,7.631465756097557,234.98482293999618,15.816901408450704,6.021647887323942,2.7746478873239435,3.028169014084507,156.10576650845834,56.13612053521125,1.3556353822040843,6.118999999999999,2.5410798122065716,7.5685261971831,183.23944337155748,12.946236559139784,5.9923440860215065,2.3010752688172045,2.4838709677419355,162.7102267750315,44.232900569892465,1.1586971268583766,6.056023655913976,2.6478494623655915,7.589599784946235,150.75923426901542,10.96938775510204,5.78231632653061,2.13265306122449,1.9387755102040816,164.8386203599609,37.04093790816327,1.0687761846210813,5.841720408163265,2.2114512471655328,7.432722326530615,135.14808574173952,12.160919540229886,5.771666666666666,2.218390804597701,1.9080459770114941,159.87256590439748,41.67320099999998,1.1573723455215632,5.853402298850574,2.4712643678160915,7.394175954022989,148.08183055452741,10.688888888888888,5.864,1.9555555555555555,1.511111111111111,163.06976683363746,34.81616812222221,1.048395625404178,5.924822222222223,2.5996913580246916,7.509030266666667,131.26834367140128,9.011904761904763,5.7272500000000015,1.8452380952380953,1.2976190476190477,168.52636884036392,28.996637904761894,0.940186515415071,5.7704226190476176,2.27744708994709,7.413784761904758,114.22555825719098,10.21311475409836,5.650098360655739,2.0491803278688523,1.2459016393442623,164.935035975712,33.955470278688516,1.086497627931623,5.718918032786886,2.2732240437158477,7.290991278688523,133.38488932392562,7.045806067816776,0.09603926234384288,0.016426295771300437,0.4414039262343843,2.8994646044021413,1.329834829076433,33.6327064497323,0.22607227852200235,0.0933405116002379,0.8557736796880165,0.05744545865556215,50.69924613909794,0.026769779892921435,-0.003399643069601434,-0.0064619375191425,0.13563355145746586,0.7269482450922065,-0.0926954972565407,0.12484524925639523,-0.008236236960142723,-0.002290422367638244,-0.15503337960208866,-0.00303143842950626,-0.700075846484314,-0.2306222821761019,-0.005413188829586686,-0.002651419934349405,-0.039136664125143446,-0.07878442576936946,-0.14818308363752394,-1.1233745823327825,-0.020515344773320114,-0.004308014176672123,-0.051849865801990185,-0.0041314579685130534,-3.117002937342536,-0.518662086699545,0.005037212872522115,0.0024127763741101905,0.02384653272181818,0.05490203603845643,0.08238374376939299,-2.5229131748831017,-0.007174384260006836,0.0026185757325709012,0.013248962151305221,0.005859146642103703,-3.199550785692224,0.27599582367152686,-0.001596106544938023,-0.0011107512701824854,-0.025525379693816852,0.04478626667799779,0.19529550046909813,1.3799571413577916,0.024256908997808708,-0.0012849117993419823,-0.009436364274045922,-0.0013869549223615725,4.416421298287094,0.09689087639404584,0.0015150970618200677,0.0002663744884102392,-0.07751270111523653,-0.14196530527121923,-0.15869283072384574,0.4010262155326268,-0.021654520831006857,0.002383850608901381,0.09628687540029313,-0.000577537152898865,-2.4477930826997842,-1.0485160949170467,-0.0140917826690462,-0.0004084760395002834,-0.002921541410536057,-0.41274373719346935,-0.23633085287599417,-4.9948239128759315,-0.03217885254106118,-0.013899481789939822,-0.13808322500569176,-0.008493836975345366,-7.563786426969144,0.033462224866150865,-0.01219518568879068,-0.00025861022744163794,0.010105946007195247,-0.18198492960539356,0.04251952699656455,0.2891873818588703,0.023810561137670078,-0.010718299056683946,-0.08084304347689238,-0.008246299538256703,3.7929982120329804,0.06295042958426379,-0.004674008445402323,0.0006591715975156338,-0.07914882827356864,-0.43085204942413263,0.07462583657493228,0.348124161623155,0.011766847421907653,-0.0038778566622131765,0.061303933711068424,-0.002794299919056763,2.181223312151928,,,0.4759259259259259,0.9861111111111112,0.4166666666666667,0.027777777777777776,0.5694444444444444,-0.1527777777777778,0.8485113176563135,0.015776922613183173,0.02055470039096095,0.6478734934324516,0.20377443830928607,0.2756827258760361,1.4963848110887652,0.47945716418532214,1.9586629459782858,1.6406240373352177,0.10754396772153436,0.21049494092153362,0.0,0.318038908643068,6.077387292097561,740.0,238.9949,103.0,190.0,6737.163972322727,2895.4633380000005,54.55600481152701,241.7663,130.36111111111111,304.53748,7743.775375301738,837.0,252.804,125.0,176.0,6034.072175948348,3072.896589999999,68.60039079600003,258.41850000000005,116.61111111111111,312.89009599999986,9634.377740539843,1123.0,427.53699999999986,197.0,215.0,11083.509422100542,3985.6645579999986,96.25011213648999,434.4489999999999,180.41666666666657,537.3653600000001,13010.000479380582,1204.0,557.2880000000001,214.0,231.0,15132.051090077928,4113.659752999999,107.75883279782902,563.2101999999998,246.25,705.8327799999998,14020.608787018435,1075.0,566.6669999999998,209.0,190.0,16154.18479527617,3630.0119150000005,104.74006609286596,572.4886,216.7222222222222,728.4067880000002,13244.512402690474,1058.0,502.1349999999999,193.0,166.0,13908.91323368258,3625.568486999998,100.691394060376,509.24599999999987,214.99999999999997,643.293308,12883.119258243885,962.0,527.76,176.0,136.0,14676.279015027372,3133.455130999999,94.35560628637602,533.234,233.97222222222223,675.812724,11814.150930426114,757.0,481.0890000000001,155.0,109.0,14156.214982590569,2435.717583999999,78.97566729486597,484.7154999999999,191.30555555555557,622.7579199999997,9594.946893604043,623.0,344.65600000000006,125.0,76.0,10061.037194518432,2071.2836869999996,66.276355303829,348.85400000000004,138.6666666666667,444.7504679999999,8136.478248759463,288.8780487804878,3.937609756097558,0.673478126623318,18.097560975609756,118.87804878048779,54.523227992133755,1378.9409644390241,9.268963419402096,3.826960975609754,35.086720867208676,2.355263804878048,2078.6690917030155,1.0975609756097788,-0.1393853658536588,-0.2649394382848425,5.560975609756101,29.804878048780466,-3.8005153875181685,5.118655219512204,-0.3376857153658516,-0.093907317073168,-6.356368563685635,-0.12428897560975666,-28.70310970585687,-16.374182034503235,-0.38433640690065474,-0.18825081533880775,-2.7787031528851847,-5.593694229625232,-10.5209989382642,-79.75959534562756,-1.456589478905728,-0.30586900654372073,-3.681340471941303,-0.2933335157644268,-221.30720855132006,-48.23557406305769,0.46846079714455663,0.22438820279224772,2.2177275431290906,5.105889351576447,7.661688170553548,-234.63092526412845,-0.6672177361806357,0.24352754312909383,1.2321534800713856,0.5449006377156443,-297.5582230693768,27.04759071980963,-0.15641844140392624,-0.10885362447788358,-2.5014872099940515,4.389054134443783,19.138959045971617,135.23579985306358,2.3771770817852533,-0.12592135633551427,-0.9247636988565003,-0.1359215823914341,432.80928723213526,8.429506246281989,0.13181344437834588,0.023174580491690813,-6.743604997025578,-12.350981558596072,-13.806276272974578,34.88928075133853,-1.8839433122975966,0.20739500297442015,8.376958159825502,-0.05024573230220126,-212.9579981948812,-94.3664485425342,-1.268260440214158,-0.03676284355502551,-0.26293872694824516,-37.14693634741224,-21.269776758839477,-449.5341521588338,-2.8960967286955066,-1.250953361094584,-12.427490250512259,-0.764445327781083,-680.740778427223,2.8108268887566727,-1.0243955978584172,-0.02172325910509759,0.8488994646044008,-15.286734086853059,3.5716402677114223,24.291740076145103,2.0000871355642866,-0.9003371207614516,-6.790815652058959,-0.692689161213563,318.61184981077037,3.839976204640091,-0.2851145151695417,0.04020946744845366,-4.828078524687688,-26.281975014872092,4.55217603107087,21.235573859012455,0.7177776927363668,-0.23654925639500377,3.739539956375174,-0.17045229506246254,133.0546220412676,0.7433593827013323,0.6236300497242996,0.47945716418532225,0.35343466970997756,0.3294095727164463,0.21037720634677476,0.20804314589567433,0.10540863187071146,0.13615222915121852,0.05871914240150518,0.09759754942516971,0.03472989489351,0.06472617162210864,0.018578121532630613,0.043296425319645546,0.010488645967627013,8.01052872639062,5.692685041507923,3.521001599407043,2.1921074407788246,0.36688774581454703,-0.5215251375391485,3.1787196945763982,0.9572918621226837,6.007550759603918,0.9889398533556036,14.540223270412755,10.953083769666161,16.004557398219855,11.70402215211918,1.9843979926249835,0.7783715841306875,3.463681726230027,2.241981655852775,6.002600642228225,1.2491787217342085,3.6771941258610563,2.4380038781521076,20.89243729988947,14.70630459415135,0.24432797979171095,0.6071307072150679,0.8178405089428841,0.8533698553760426,0.8622521919843323,0.8622521919843323,2.2218367819907705,363.26616352106794,0.0,1.0,4.0,0.0,6.0,3.0,1.0,0.0,0.0,4.015738632279001,2.0232793503221878,0.8660920732762687,0.6709701220567572,0.6221896342518791,0.6221896342518791,203.88753013062095,827.3169860755493,32.918204943379365,20.178463075013397,39.51859533116455,,11.0,305.0,6.103966387748303,5.106527394840706,0.0,19.193479199573453,17.73378494790691,0.0,0.0,44.18896278006157,11.895724287604828,4.736862953800049,8.566666666666666,17.75,7.5,0.5,10.25,0.0,0.024074074074074088,-2.75,0.08943089430894302,0.03636966981914713,-0.05306122448979589,0.05074074074074064,0.12455045871559611,0.0,0.5227642276422767,0.8074074074074072,0.4333333333333337,0.48639455782312957,0.7566666666666666,15.273203717813644,0.2839846070372971,0.3699846070372971,11.66172288178413,3.6679398895671493,4.962289065768649,26.934926599597773,8.630228955335799,0.5894495412844039,0.2140077821011673,0.0,0.23346303501945526,0.4666666666666667,0.2924834489199687,-0.49256699484210104,-0.028190858795774678,-0.01201382914249027,-0.03788976883400777,0.7075165510800312,1.1915180248777009,0.03881738200462524,0.02906141524091953,0.0425542151742036,-3.546433270932691,1.0536980749746707,0.9894203491037031,1.4225124101714308,1.0781671159029649,0.7755437012720559,1.3759496429508788,1.0583486865446001,1.2762724385499644,0.9779395737813994,1.138873870394686,1.0072061111149313,1.1885079360270099,1.0755549847548649,1.16503079377393,1.313858200153638,1.5409437758627234,1.1918949065752744,1.2553577604701032,1.076098997187853,1.1722194180158458,1.1374376705712892,0.9647457619743329,1.1933478569420963,1.1149628020624287,1.1270894386886152,1.2762559422452462,1.2214969308323909,1.0100570964843636,1.154160103423476,0.9768590727186118,1.123392185300011,0.9998655857649077,1.2580970129374989,1.1803830505011745,1.2705706367414804,1.0265230778900343,0.9657348248316551,1.1939077634249897,1.3423034548973547,1.0600143022168436,1.1227420800080394,0.7919469000266632,0.9603038860140044,0.8373385974072682,1.1684552524993417,0.8542164838438657,1.2499803475476037,0.8602335748630043,0.9716544969663092,0.9740958177642391,0.9852749868713159,1.3210645351178858,1.059716346176522,1.1078257320367488,0.973755699870951,1.1204253310989678,0.9637069698442939,0.9509370208693444,1.0353433282574172,1.0584124187841604,1.1823520582385831,1.480864541651698,1.2731538428236435,0.859538784067086,1.203848082797611,1.1142151207059448,1.1761837718168575,1.0995626043623967,1.4423513219501118,1.8361911382302205,1.5826982914947871,1.0996951625050628,0.9989385825252087,1.3944645312690804,1.3263175403640224,0.7630599409575151,1.131611856888837,0.8373766621645718,0.9891679017825755,0.7712754707673054,1.349672204671459,1.382063136523629,1.469071711374847,0.8197446016419409,0.9340829693114311,0.8432676730474793,0.810466813099969,1.2681719764924217,1.0701144244805156,0.9395069033688656,0.9353213807887263,0.8962827841661314,0.855654760505479,0.8324417201529059,0.762386353446947,0.9196862950883432,3.5,0.05774920926436078,1.7777777777777786,0.625,0.7022222222222223,0.4583333333333333,0.2040816326530612,0.16493055555555555,0.13151927437641722,0.08437500000000003,2886.251471466525,3482.3321640613044,1641.131402166697,1402.280071858324,11.252272013567568,0.4453532169670835,6.241036474136569,0.8029492473242258,1.0,0.4666666666666667,1.341813372339082,3.334272654295896,4.491459931341815,4.686581882561327,4.735362370366205,4.735362370366205,0.19444444444444448,0.011549841852872155,0.08080808080808086,0.02976190476190476,0.036959064327485386,0.02412280701754386,0.013605442176870748,0.013744212962962962,0.011956297670583383,0.009375000000000001,0.42632709602274854,16.055555555555557,8.991735537190083,6.666666666666667,109.48392028219311,1.0,3.759451657070681,81.99379771423413,,68.38554717525624,67.16369059205728,68.8117994964309,68.40405812871957,102.4827933877709,67.98739741249197,68.44707813325233,86.71095771034462,0.0037993920972645163,-0.03539847127761063,-0.3933898189287822,0.3072776280323452,0.2507180960196962,-0.06970451911002924,0.003712019115767264,-0.03643187485873522,-0.024538352408520613,-0.1811616590715995,-0.05277072375176765,-0.013808407418200913,-0.03273185210554098,-0.05636433160227962,-0.16141313728088907,-0.08866405983068212,-0.02717205985193067,-0.11142969066349144,-0.03340125434186472,-0.09074683949506648,-0.046153745065407835,-0.06058829224672198,-0.07191966197510767,-0.061480262029750064,-0.07361288143717791,0.052449516474707206,0.14688499511409783,0.05402428774309482,0.018935232371900958,0.061950358020483105,-0.0750136828463052,-0.03173491374931488,0.028054010929207583,0.015481852814327386,0.10199494928284278,-0.0631084489286876,0.03917164636878053,-0.01661931283086693,-0.06762031352942997,-0.05782771329556082,0.015446391933876546,0.14685696012694327,0.04103021395022985,0.10729714034995193,-0.013765853403986563,-0.01102670542226313,-0.024143856708980786,0.08711019659286937,0.01375156730989455,0.015775809026892233,0.01621634555464667,-0.1756049199120116,-0.04896259297515789,-0.11933273761077345,0.011923697432200517,-0.09578582996808847,0.025539292296907712,0.11251441553495285,-0.010053660749089434,-0.048280660347178414,-0.1488142144170513,-0.14672939301214477,-0.024867203488078013,-0.0066187481281820915,-0.1423517074727579,-0.17771444070247833,-0.14851091214860254,-0.14233878099268768,-0.14891156638897612,-0.16135483981703178,-0.14785915499906888,-0.14918932731696277,0.004749240121580514,-0.12698125111716374,-0.015743672891454594,0.022895007059427507,-0.0627650116263165,0.03197353992156624,0.008598397583349172,0.10532278125092073,-0.11483008688219605,-0.09446778441043521,-0.14355006873042447,0.0748137004172912,0.00893445391178212,-0.04866768372989254,0.04012904715056452,-0.1793115637841899,-0.14859710608985782,0.05611662060825986,0.010350762646576306,0.052049050413593506,-0.041545268991254304,0.071635684955183,-0.04864266008930552,0.04302279576638173,8.837925069618473,10.164577647799055,1.7710301384923586,12.077312634451296,27.86046179437615,30.63710169158966,31.370516325736002,31.419687057443316,31.419687057443316,35.255933027609146,29.53123267203392,1.9357914189876186,3.788908936587605,0.0,5.724700355575224,2721.3505386248908,2401.048767636456,743.7778930634868,15.0,22.0,24.0,27.0,31.0,25.0,23.0,22.0,19.0,249.172878976,18.0,4.394449154672439,5.153291594497779,5.958424693029782,6.7464121285733745,7.556427969440253,8.356789669923213,9.1689974084418,9.975947739265388,10.78987562305597,0.5528455284552845,0.9577560975609756,1.133788812974051,0.5063529163307618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.629330203008617,0.9447154471544715,0.9886486774554563,0.5711849150834273,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,3.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,15.160178952647087,18.460360185545127,0.0,0.0,0.0,0.0,0.0,0.0,6.578935683598497,38.122595711599956,18.050640183084614,12.586597235060536,0.0,143.6842692643335,-241.97652543745033,-13.848930464141377,-5.901866474084154,-18.61357887980387,347.57179939495444,585.340460638099,19.069274479237986,14.276596600929242,20.90501645136068,0.45454545454545453,0.9489109129137676,0.29128395329767787,5.324758080797154,0.12510675204033006,76.87632606331239,0.05108908708623243,6.0,0.4444444444444444,0.25045270137974773,0.6223500306524008,0.8383418261680489,0.8747618088488182,0.8838668045190105,0.8838668045190105,2.1528,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,74.98350000000005,9.843390348640755,0.0,5.316788604006331,0.0,32.41410323920352,13.151638370425493,42.483875555975814,0.0,5.749511833283905,3.6109179126442243,0.0,4.8283137373023015,0.0,6.22455842927536,0.0,7.709308333385869,0.0,9.24445190160495,22.666666666666664,7.833630138783909,0.0,0.0,0.0,0.0,0.0,1.9143663916183762,0.0,39.268,3.726206549883498,0.0,0.0,0.0,0.0,1.8461710285966237,0.0,0.0,46.48534133193609,10.05365155780638,0.0,5.749511833283905,30.403972982162465,6.4208216229260096,0.0,19.410925891078243,36.92042406427882,0.0,0.0,0.0,20.760469569561238,25.802538323353296,22.049673353016374,163.98759542846835,,136.6996657790839,134.24325937035104,137.56009699761577,136.73689055336365,205.85984355782853,135.89939192820714,136.82335042277688,173.7943532821424,22.049673353016377,163.9875954284684,,136.1282372076554,133.57028486024302,137.05208103564763,136.16708492075958,207.648357122402,135.29616875399262,136.25690367295476,174.53922900504867,4.549840548777601,123.73536889473237,,103.77827215487983,101.72122827390976,104.7378078574633,103.81009335047258,162.87608619023206,103.11759133067181,103.88093569446218,135.15428624730498,1.224981852945354,9.110421968248241,,7.594425876615771,7.457958853908391,7.642227610978654,7.596493919631314,11.436657975434919,7.54996621823373,7.6012972457098265,9.655241849007911,2.2749202743888,81.99379771423413,,68.38554717525624,67.16369059205728,68.8117994964309,68.40405812871957,102.4827933877709,67.98739741249197,68.44707813325233,86.71095771034462,38.733333333333334,0.0,4.097144851767868,0.0,0.0,0.0,9.772509448223733,40.53459577567371,1.6167467666078776,3.1751121189216427,5.645993008314438,0.0,-0.12788030271796558,0.0,0.0,0.0,0.0,23.41858151842052,466.15824458591345,55.014348265902356,136.70517882613174,184.1498571850144,192.14985718501438,194.14985718501438,194.14985718501438,244.0,104.10061598090002,25.09782407337454,49.61755031421271,41.49,41.49,0.8333333333333334,6.658412120756805,5.169925001442312,3.472639655258692,4.174259677646674,,4.167296499097238,4.166835717872594,4.171396605124596,4.167315346991445,4.184857736263651,4.167335169100055,4.167300226579078,4.176454460758917,0.19292442529214954,0.23190331542481524,,0.23151647217206875,0.2314908732151441,0.23174425584025535,0.2315175192773025,0.23249209645909172,0.23151862050555863,0.23151667925439323,0.23202524781993983,1.8327016772368825,2.016723684762046,,2.015054168902113,2.0149435920086542,2.016037561936617,2.0150586917028277,2.0192593745414213,2.015063448257064,2.0150550633621482,2.0172493363713344,215.86999999999955,162.71205574006376,82.94994608418448,,83.31925067998877,83.36203704871039,83.09801653625293,83.31798744677303,81.97426785748341,83.32335037458343,83.31811347214598,82.5914328224475,9.039558652225764,4.608330338010249,,4.628847259999376,4.63122428048391,4.6165564742362735,4.628777080376279,4.554125992082412,4.62907502081019,4.628784081785888,4.5884129345804165,5.679768774354111,5.006024031558669,,5.010466287975391,5.010979679373363,5.007807498082192,5.010451126499722,4.994192056302717,5.010515491415203,5.0104526390815955,5.001692621193311,5.645993008314438,0.0,12.947621567145376,1.093998855715126,0.8203675359032504,8.201872757456723,2.1243662079029138,8.665780067562174,0.0,262.77115706759326,70.58576924697904,-118.87243659423605,-6.80337113494994,-2.899327721810635,-9.144033584172002,170.7467557476,287.5520535202892,9.367896812855344,7.013464720007053,10.269716197153185,711.0,21.0,1.0302567583920093,0.5787622171832382,0.0,0.0,0.08333333333333333,0.024056261216234408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.11785113019775792,0.030982085323622514,13.380468888623982,11.225340895037393,8.6302289553358,6.361824054779596,7.247010599761818,4.628298539629045,4.993035501496184,2.529807164897075,3.6761101870829,1.5854168448406398,3.025524032180261,1.07662674169881,1.618154290552716,0.46445303831576534,0.9958177823518475,0.2412388572554213,1.6397324666407394,0.6911965723788088,2.065932339634657,0.7058386372302357,3.012263458814425,0.8458497419852911,62.84190648858109,31.19393010112966,22.82993343765454,21.223442118103375,21.059659093487856,21.059659093487856,80.0,86.0,43.09023899999997,25.379760999999995,0.14634146341463414,18.03,6.944444444444445,4.277777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,41.0,0.0,1.0,41.0,6.0,1.0,4.0,37.0,7.0,18.0,34.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,3.0,2.0,0.0,18.0,3.0,0.0,1.0,2.0,0.0,1.0,8.0,0.0,0.0,0.0,0.0,1.0,3.1354942159291497,4.428209235436233,3.5115454388310208,3.865979066926739,4.288745644670657,4.716823361268938,4.547276207569189,4.603606464011909,4.684443366882599,4.55519181618185 +16759173,CC[C@H](C)C(=O)O[C@H]1C[C@H](O)C=C2C=C[C@H](C)[C@H](CC[C@@H](O)C[C@@H](O)CC(=O)[O-])[C@H]21,0,20.16923076923077,6.136923076923078,2.8153846153846156,6.246153846153846,164.40841556209566,79.16020046153847,1.2955166103033078,6.181426153846155,5.8047008547008545,7.723694153846152,189.90084975488676,21.636363636363637,6.255303030303031,3.5606060606060606,5.045454545454546,145.43168445895836,80.16961343939394,1.6984415436060605,6.393295454545454,2.980218855218855,7.7254646666666655,243.64147534203263,17.475806451612904,6.0899193548387105,3.1693548387096775,3.6693548387096775,152.3883764882511,63.16090131451613,1.4200371027156047,6.195126612903226,3.103270609318997,7.626934032258065,195.60892446376698,13.605405405405405,5.99427027027027,2.6,2.497297297297297,159.38482122088328,47.08702044324324,1.193931810804373,6.069227027027026,2.6525525525525526,7.604396237837838,158.9910340365998,13.08695652173913,6.004589371980677,2.429951690821256,2.5217391304347827,161.7476811150154,45.18479742512077,1.113779960563744,6.064707246376811,3.1407675791733762,7.627957352657005,146.7027528293747,12.207729468599034,5.984057971014493,2.3864734299516908,2.1497584541062804,162.54465766502125,41.305147285024155,1.1030019590661595,6.043345410628018,2.6806226516371443,7.6232322705314,144.6492928562005,12.867647058823529,5.935784313725489,2.3333333333333335,2.4215686274509802,161.08738575317105,44.39701604901962,1.1274375711406617,6.0024941176470605,3.0849673202614376,7.558755137254902,147.31616553409498,11.626168224299066,5.895700934579439,2.191588785046729,1.6775700934579438,162.74789210703128,39.142656177570096,1.0747136577039158,5.956507476635514,2.770898234683281,7.539855177570093,138.15123381739616,10.504807692307692,5.892692307692308,2.0384615384615383,1.4759615384615385,163.53379886185454,33.994234086538455,1.0397643579345817,5.948802884615384,2.6601228632478637,7.5493552692307695,130.75536934953033,7.7571597633136085,0.15325443786982243,0.025638044348045372,0.5884023668639055,3.879289940828402,1.2534805906991582,36.704751307455616,0.22152701582282844,0.14268700591715966,2.665443786982248,0.10133771928994081,49.04577116175857,-0.06135556750941351,-0.010329029944414517,-0.009665625657682947,0.1575183790568406,0.8855119239734625,0.06907427403066038,-0.20883066759548755,0.012330254573713497,-0.00903350941366314,-0.20708455362301514,-0.007170488520710047,2.053987166694788,0.11219507539606802,0.01641677801107082,0.002651933265379233,-0.019295667112044293,0.20495323535025772,-0.09625502177002684,0.4074475901870565,-0.017347633543945678,0.014322584653559883,0.33654477105469666,0.011472215697652218,-2.922517097308151,-0.49129697745082357,-0.01482616344154805,-0.0017989073460939326,-0.01293459139612986,-0.2917639533024149,-0.03946892065195239,-2.280714398349593,-0.006831787860153985,-0.013448727330881156,-0.22910052063898217,-0.010039221826323363,-1.8230487714976753,0.05458308321184571,0.011557899551210588,0.0037019385389285295,-0.007428751107680875,-0.06866192150473086,-0.03358357168526464,0.18415785991710223,-0.006889414587789017,0.009790088099934258,0.23709141265440037,0.008517520546551182,-1.5014818085117498,-0.6374273218420375,-0.021972386587771193,-0.004315786863556339,-0.022070148357773774,-0.42577823514278373,0.03958203459861511,-2.9075230228030775,0.006091287677157473,-0.020237886630649158,-0.2972349426864477,-0.014266530289569214,-0.3011330797946388,0.11735004060795913,0.011240283095486706,0.0028015332566767,-0.07022740457129598,0.0900916579649611,-0.06348678494582298,0.4734431797238658,-0.011253621681671544,0.00992637266504233,0.29652830954867154,0.007714296396333675,-1.7499270293747997,-0.29403970580102856,-0.006194768567162537,-2.7828898498830203e-05,-0.0722988442183266,-0.47749267267599416,-0.04350118278809425,-1.3875973769020624,-0.007694043250637893,-0.005747120942321539,-0.1448570787787179,-0.004103904192888354,-1.7424968609601885,-1.1857100591715977,-0.021590236686390537,-0.002463584797084725,-0.04646449704142011,-0.5062869822485209,-0.07603138105516197,-5.573738850059172,-0.01567061551438905,-0.021034979289940837,-0.3124605522682446,-0.012894024023668639,-5.379437694135319,,,0.4611111111111112,0.75,0.16666666666666666,0.0,0.5833333333333334,-0.4166666666666667,1.3875592446395537,0.026597120134830968,0.0323304534681643,0.6114227859339839,0.12186596375669048,0.34867736818758177,1.9989820305735375,0.4705433319442722,1.9760012037663082,1.5610763947613593,0.0,0.4149248090049485,0.0,0.4149248090049485,6.511366569844783,1311.0,398.9000000000001,183.0,406.0,10686.547011536217,5145.413030000001,84.20857966971501,401.7927,377.30555555555554,502.0401199999999,12343.55523406764,1428.0,412.85,235.0,333.0,9598.491174291252,5291.194487,112.09714187799999,421.9575,196.69444444444443,509.8806679999999,16080.337372574153,2167.0,755.1500000000001,393.0,455.0,18896.158684543137,7831.951763,176.08460073673498,768.1957,384.8055555555556,945.73982,24255.506633507106,2517.0,1108.94,481.0,462.0,29486.191925863408,8711.098782,220.87738499880902,1122.8069999999998,490.72222222222223,1406.813304,29413.341296770966,2709.0,1242.95,503.0,522.0,33481.76999080819,9353.253067,230.55245183669498,1255.3944,650.1388888888889,1578.987172,30367.469835680564,2527.0,1238.7,494.0,445.0,33646.7441366594,8550.165488,228.321405526695,1250.9724999999999,554.8888888888889,1578.0090799999998,29942.403621233505,2625.0,1210.8999999999999,476.0,494.0,32861.82669364689,9056.991274000002,229.99726451269498,1224.5088000000003,629.3333333333333,1541.986048,30052.497768955378,2488.0,1261.68,469.0,359.0,34828.04891090469,8376.528422000001,229.98872274863797,1274.6926,592.9722222222222,1613.529008,29564.36403692278,2185.0,1225.68,424.0,307.0,34015.03016326574,7070.800689999999,216.270986450393,1237.3509999999999,553.3055555555557,1570.265896,27197.11682470231,504.21538461538455,9.961538461538458,1.6664728826229491,38.24615384615385,252.15384615384613,81.47623839544528,2385.8088349846153,14.39925602848385,9.274655384615379,173.25384615384613,6.586951753846153,3187.9751255143074,-4.049467455621292,-0.6817159763313582,-0.6379312934070746,10.39621301775148,58.443786982248525,4.558902086023585,-13.782824061302177,0.8137968018650908,-0.5962116213017673,-13.667580539119,-0.47325224236686314,135.563153001856,13.912189349112435,2.035680473372782,0.3288397249070249,-2.392662721893492,25.414201183431956,-11.935622699483329,50.52350118319501,-2.151106559449264,1.7760004970414254,41.73155161078238,1.422554746508875,-362.39212006621074,-90.88994082840236,-2.7428402366863893,-0.3327978590273775,-2.3928994082840243,-53.97633136094675,-7.301750320611193,-421.9321636946747,-1.2638807541284873,-2.488014556213014,-42.3835963182117,-1.8572560378698222,-337.2640227270699,11.298698224852062,2.3924852071005915,0.7663012775582057,-1.5377514792899412,-14.213017751479287,-6.9517993388497805,38.12067700284016,-1.4261088196723266,2.0265482366863914,49.077922419460876,1.7631267531360946,-310.80673436193223,-131.94745562130177,-4.548284023668637,-0.893367880756162,-4.568520710059171,-88.13609467455623,8.193481161913327,-601.857265720237,1.2608965491715969,-4.189242532544376,-61.52763313609467,-2.9531717699408273,-62.334547517490236,23.939408284023663,2.293017751479288,0.5715127843620468,-14.326390532544378,18.378698224852066,-12.95130412894789,96.58240866366862,-2.295738823060995,2.0249800236686353,60.49177514792899,1.5737164648520696,-356.98511399245916,-62.92449704142011,-1.325680473372783,-0.005955384278749663,-15.471952662721892,-102.18343195266274,-9.309253116652169,-296.94583865704135,-1.646525255636509,-1.2298838816568094,-30.99941485864563,-0.8782354972781078,-372.8943282454803,-246.6276923076923,-4.4907692307692315,-0.5124256377936228,-9.664615384615383,-105.30769230769234,-15.81452725947369,-1159.3376808123078,-3.2594880269929223,-4.375275692307694,-64.99179487179488,-2.681956996923077,-1118.9230403801464,0.7473973590983788,0.6012614593035289,0.4553645147847797,0.3531516507769883,0.3056753016410703,0.20563176613913337,0.1861189949833646,0.12362860030497114,0.11841990091554727,0.06722406827115515,0.06966497598991829,0.03994582499838839,0.04748251610145285,0.023262827326351904,0.030642375999479412,0.0142057230514071,8.03164696714119,5.706064097463615,3.558005778428599,2.2058665203682986,0.42498102307309077,-0.6338500815515838,3.2007472558278565,0.9725155124496585,7.004118698018276,0.987604166264039,13.645558188748705,10.966397643053444,16.017081957931648,11.717178424535366,1.973343041526936,0.7404345771734989,3.5041474874773106,2.2558231508172586,8.001939409589607,1.143883766679283,3.717053598188588,2.4518308245953206,20.88190635447162,14.69977134064919,0.2214729936378323,0.5181519422795782,0.7716817737674069,0.896551708232498,0.9166318583473915,0.9166318583473915,2.0256749510103105,655.9370596949925,0.0,2.0,3.0,0.0,3.0,10.0,1.0,4.0,0.0,4.664897154412128,2.8464679130171877,1.29251182258992,0.5271486539460062,0.40407173086908355,0.40407173086908355,156.8067742955795,2069.207465124309,116.48041793173391,31.83396100191245,72.90864090901721,,15.0,694.0,36.80599246187107,30.015183947506465,36.061751095523434,25.683286491704038,5.573104530069267,0.0,0.0,25.99951461304901,12.999757306524504,4.736862953800049,13.833333333333336,22.5,5.0,0.0,17.5,0.0,0.03888888888888881,-12.5,0.13081585081585057,0.015488665923448663,-0.1153271848924019,0.052626262626262466,0.18934766118836865,0.0,0.5671794871794864,0.8788888888888883,0.43636363636363584,0.5516908212560377,0.8262626262626258,41.62677733918661,0.7979136040449291,0.969913604044929,18.342683578019518,3.6559789127007143,10.460321045627452,59.96946091720613,14.116299958328167,0.5246523388116313,0.25301204819277107,0.0,0.3975903614457831,0.7391304347826086,0.3880717353868635,-1.383831985724103,-0.13131035553593634,-0.021289722857293893,-0.06919159928620516,0.6119282646131362,1.5701577476447033,0.034976478678717386,0.02415627304068775,0.03489239439210452,-1.98339400022789,0.9413966355444358,0.7763191763191762,1.1505243217351806,1.2043199492917915,0.5730027548209368,1.305689411202687,0.9501710105672379,1.2892185233602749,0.7773337909958371,0.7388003374328466,0.7904078944599277,1.17563115031767,0.9181943987858197,0.6305542408768214,0.6328964310087524,1.4574520540835125,0.7941900057076503,1.2848644389609833,0.9297841019922265,1.2816525493704576,0.6469410010276625,0.5242271659539744,0.6219661318809006,1.1903660910926392,1.027102894680853,0.9866271522487738,0.9488717255423542,1.1668369898458393,1.0001616015038834,1.0941250287630857,1.0289466058128274,1.0922065411258968,0.9880919033491323,0.8454050107471057,0.9873253020158109,1.0732254918103339,0.970369761113219,0.8760263368959021,0.7679273134121419,1.0792029568482049,0.9950217081819067,1.0399025695522173,0.9734710667654133,1.0436722019348699,0.8841673880077022,0.7115365031878073,0.8669389480225369,1.0339096164612396,1.0669468463424967,1.128514352862179,1.0984915187942823,1.0792029568482049,1.099244561164608,0.9673011336494776,1.0641741397022448,0.9700005410098592,1.1261608318637861,0.9829355804452439,1.1277368603038005,0.9979571581422002,0.9392189169559324,0.7852948747066395,0.7120347908256125,1.168898774312621,0.8678175358001651,1.0762427239804138,0.9446041389354762,1.0801513144770456,0.797291501939215,0.6672491745789368,0.7733829585619125,1.0548448112680642,0.9970520283630346,0.9261790495435356,0.7964497978188608,1.1651040217742723,1.0300787464432952,1.025955946753563,0.9990598754522932,1.0310058547313425,0.933566994186682,0.9448857378927619,0.916468653381807,1.0329517888603041,1.1194849575883323,1.0645559845559847,0.8876504370149302,0.9774738535800481,1.0115924344112264,1.0343880086925041,1.1195578052003907,1.048521822401042,1.0761436543526561,0.9881503845451811,1.0437430210510539,1.0927875546770072,8.0,0.23548617488011428,3.555555555555557,2.75,1.7688888888888892,1.222222222222222,1.0399999999999998,0.6076388888888888,0.4520030234315948,0.27250000000000013,5689.861782773311,6787.071543847352,2719.0551365401093,2353.1203866658957,16.789908264545875,0.4783510058849528,8.758438757484274,0.9169978496679603,1.0,0.7391304347826086,1.357470658616326,3.1758999000112667,4.729855990438534,5.495219159082448,5.618296082159371,5.618296082159371,0.25806451612903225,0.009811923953338094,0.08268733850129201,0.05978260869565216,0.037635933806146576,0.02777777777777778,0.02260869565217391,0.014467592592592593,0.013294206571517492,0.00939655172413793,0.5355271454036609,26.253902185223726,12.296376419686316,7.828402366863905,177.99063361150638,1.0,4.2950777251784755,180.57016241148435,,167.26797541589795,166.1441999416499,169.6936334571976,167.29110658877477,210.33936298355317,166.99337039490797,167.3153838346966,188.00817761169714,-0.00790954026750693,-0.06739791739791715,-0.37700323497645594,0.26770520978083323,0.2282664965703404,0.05510597814054112,-0.005689472347768476,0.05566027478822228,-0.06330996544217739,-0.07769233575076492,-0.07075833728006369,0.041878986058155813,0.014463422028082854,0.1071210611533193,0.1034374240631741,-0.0327933200114188,0.052832667440807744,-0.07679019721903979,0.011100677042437666,-0.07830933612999989,0.10037763818434314,0.12626219044586368,0.1132077550001759,-0.05958754502338957,-0.0633346472731351,-0.09674214755295835,-0.07016554467544948,-0.021982561805570656,-0.07521065910327657,-0.031487460551692846,-0.062136762056914555,-0.030839524627632196,-0.09425334314386788,-0.085952111148577,-0.09906698015967581,-0.037170355941291075,0.007036477896199675,0.07541641019901892,0.14439239158312647,-0.01262529100158958,-0.01769961063804075,-0.02679225504922467,0.005017275784666476,-0.03109965871295351,0.06861233114400148,0.08895007045818423,0.08405084115008957,-0.030613889290468915,-0.08217277216032859,-0.14337194337194337,-0.1683352600911376,-0.03750859887835647,-0.10975674456853333,0.03157770043853436,-0.079213805276825,0.027496816379403256,-0.14183412498261225,-0.11151424169517751,-0.14078203446389748,-0.006139837801743751,0.015127964898048067,0.07334393216746155,0.10927250217079397,-0.11935268878267315,0.02322374953642225,-0.05064839887980375,0.0128986892121429,-0.050800222446330874,0.06956746061940161,0.11124913269485749,0.07612463010206534,-0.03567946813606702,-0.03790558848505968,-0.040421462851369466,-0.0010854532475661257,-0.12287313629220828,-0.12308764747138959,-0.034704313023172104,-0.037804298557397066,-0.034731850749939175,-0.04027781580656452,-0.0543463266740739,-0.040497301711976894,-0.035527973557867694,-0.15285363397815344,-0.14087837837837844,-0.09609097962546223,-0.07896721641190665,-0.13051021964612572,-0.06065620929379823,-0.15185333373794066,-0.070739071964577,-0.14742042665155644,-0.11722646479894629,-0.12723815094730034,-0.10968198820634949,7.784998940627467,25.596090388464532,13.683909082621046,12.394101303234702,30.094850745780438,37.13778424253228,38.70908570114072,38.83314723960226,38.83314723960226,59.280036112989244,46.83229184284078,0.0,12.447744270148455,0.0,12.447744270148455,9458.119498672102,9126.593312472605,1613.8337140071371,102.0,43.0,52.0,67.0,82.0,95.0,103.0,107.0,114.0,423.23882703991086,31.0,5.003946305945459,5.82600010738045,6.703188113240863,7.553286605600419,8.440959885416648,9.306468399070404,10.200290403937228,11.076232813045465,11.974083840040583,0.5871794871794872,0.9784615384615385,1.1343580202467622,0.5424847735729427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.62055969599263,0.9636802413273003,1.0054120679029637,0.576701235341089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,3.0,6.0,0.0,1.0,0.0,8.0,0.0,0.0,0.0,0.0,29.957509717234693,6.103966387748303,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,38.999271919573516,43.092203114096094,24.728854579965258,24.2298052094063,271.8360604965544,-969.3451006251718,-91.9801327857776,-14.913001548079567,-48.467255031258595,428.6428347921339,1099.8623644991371,24.50028514595632,16.920959453832882,24.441385877758606,0.4666666666666667,0.6392098157274738,0.15425708153848,267.5379083822538,0.12020347982221205,0.0,0.3607901842725261,8.0,0.3225806451612903,0.22540480767043983,0.5273507030143031,0.785381454152672,0.9124682068063658,0.9329048401867888,0.9329048401867888,1.1056999999999997,,1.75,1.9999999999999996,1.2119393011481083,1.7448590536908561,-7.576059850374065,1.811046511627907,1.739463601532567,-2.7929613464061798,108.81440000000005,34.752046901306514,0.0,0.0,23.671624184645573,83.71200688762114,0.0,23.80116485057091,0.0,0.0,4.143134726391533,0.0,5.459585514144159,0.0,6.953684210870537,0.0,8.54461378699223,0.0,10.197015007403428,38.16666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.6,0.0,23.01365418225279,0.0,0.0,0.0,5.863026315949297,0.0,-0.6575291887127265,73.73327131603955,5.106527394840706,0.0,0.0,51.67405831141902,14.325937321943691,23.671624184645573,59.29614133662794,23.80116485057091,0.0,0.0,0.0,35.261510282241275,40.33638023952095,36.23309420416996,361.14032482296875,,334.4192841651292,332.15506654996653,339.30647096098534,334.4658892406368,421.6353224269729,333.86600435570745,334.5148034292911,376.202552646488,36.23309420416996,361.14032482296875,,332.78595083179584,330.2883998832998,338.1753276132471,332.8373541238587,428.2547858174803,332.1756942781882,332.8913040678606,378.8093165698005,4.950315322828715,261.49605077781905,,245.80543169450078,244.46636824720645,248.7083092659544,245.83303227510447,300.50772598648246,245.4778852875101,245.86200203493985,271.2495540555592,1.2077698068056653,12.038010827432291,,11.147309472170974,11.07183555166555,11.310215698699512,11.148862974687892,14.054510747565763,11.128866811856915,11.150493447643036,12.540085088216268,2.475157661414357,180.57016241148435,,167.26797541589795,166.1441999416499,169.6936334571976,167.29110658877477,210.33936298355317,166.99337039490797,167.3153838346966,188.00817761169714,62.639215686274525,0.0,5.832161930232749,0.0,0.0,0.0,30.24401132869137,65.35178441369264,1.5252730818977425,0.0,5.829231599345688,0.0,-3.0718622867612098,0.0,0.0,0.0,0.0,37.485580297170785,447.75298557846696,88.23559281006119,206.43349350073234,307.4406393785047,357.18924534035915,365.1892453403591,365.1892453403591,826.0,137.08445647367753,252.72590971022143,65.29803324580188,127.12,127.12,0.875,7.327123292259293,5.954196310386875,4.064652199185571,5.381202264445325,,5.382742263510105,5.383061833264091,5.381988994669342,5.3827354810646915,5.363274931409784,5.382822161881951,5.382728353891465,5.374414829590427,0.13548840663951903,0.17937340881484418,,0.1794247421170035,0.17943539444213638,0.17939963315564475,0.17942451603548973,0.1787758310469928,0.17942740539606505,0.17942427846304881,0.1791471609863476,2.5009404681514824,2.7815241071040298,,2.781810247388623,2.7818696149474618,2.781670296130403,2.781808987352501,2.77818707183558,2.7818250907110333,2.78180766327147,2.780261987841777,334.95000000000124,906.6922191609336,186.38489461392146,,185.4551402524036,185.35783561638826,185.6660899955744,185.4571465032287,189.03158453467285,185.43133255978378,185.45925229178675,187.24779811151456,30.22307397203112,6.212829820464049,,6.181838008413453,6.178594520546275,6.188869666519147,6.181904883440956,6.301052817822428,6.181044418659459,6.181975076392892,6.241593270383818,7.9084153417910015,6.326426150156925,,6.3214253099462105,6.320900492075311,6.322562133974028,6.321436127872156,6.340526403705841,6.321296927304094,6.321447482390667,6.3310451519122655,5.829231599345688,23.01365418225279,40.83271103246234,0.9493311377708932,-1.6029328747409988,0.0,4.312509659343208,5.832161930232749,0.0,431.3187245965718,190.41542335625553,-679.005785239423,-64.43014180228836,-10.446242849837276,-33.95028926197115,300.2552593886058,770.4303740539605,17.161932673297347,11.852774985445548,17.120674978976897,2600.0,46.0,2.5619076833672483,1.287607273122148,0.0,0.0,0.4193637438053669,0.21172461380250346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1111111111111111,0.07135872502089852,0.3323959812847467,0.1707591504366407,22.421920772951363,18.037843779105867,14.11629995832817,10.947701174086637,13.144037970566025,8.842165943982735,9.678187739134959,6.428687215858499,7.934133361341667,4.504012574167395,5.7125280311733,3.275557649867848,4.510839029638021,2.209968596003431,3.1561647279463796,1.4631894742949314,4.653179982092883,2.5180500803565993,7.35145353116906,3.476987851196559,10.30789587794169,4.870077319987441,109.40805720754156,50.50909755326906,30.155592052623295,23.767958573884414,22.969219631613825,22.969219631613825,148.0,169.0,67.36175499999997,39.452245000000026,0.15384615384615385,91.07,12.722222222222221,6.7222222222222205,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,65.0,0.0,0.0,66.0,0.0,4.0,4.0,62.0,4.0,31.0,62.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,7.0,3.0,0.0,30.0,7.0,0.0,0.0,7.0,0.0,2.0,10.0,0.0,0.0,0.0,0.0,0.0,3.58351893845611,5.537334267018537,3.970291913552122,4.248495242049359,4.574710978503383,4.882801922586371,5.111987788356544,5.2832037287379885,5.43372200355424,5.583496308781699 +36811,CC(CCc1ccc(O)cc1)NCCc1ccc(O)c(O)c1,0,20.266666666666666,5.999886666666666,2.8666666666666667,5.777777777777778,162.2888516976717,79.64941560000001,1.412575751367267,6.069053333333332,4.309259259259259,7.566905422222221,205.12704127809084,22.195652173913043,6.270739130434784,3.4347826086956523,5.478260869565218,146.3514655296706,82.65776093478259,1.769289959739131,6.409717391304349,3.1853864734299515,7.723907565217388,254.0547016912259,18.28205128205128,6.024576923076924,3.128205128205128,4.012820512820513,151.0220537890877,66.62543161538461,1.5351452694095253,6.148262820512821,2.851851851851853,7.528232307692304,211.68896474852707,14.074074074074074,5.961925925925925,2.490740740740741,2.6944444444444446,158.6639672981198,48.83747559259258,1.2661165068160274,6.046899074074073,2.948559670781892,7.534586074074071,166.53564254111575,10.461538461538462,5.722760683760683,2.111111111111111,1.6324786324786325,161.85021073422237,34.1918101880342,1.101884400146735,5.797166666666664,2.292497625830959,7.3581925470085485,135.44980322358174,9.845454545454546,5.574345454545456,2.109090909090909,1.490909090909091,164.7523567531223,32.922985009090915,1.0445893526955183,5.64349090909091,1.9931818181818186,7.232673345454546,126.95165098079629,11.505376344086022,5.792064516129033,2.247311827956989,1.7741935483870968,163.00405198210458,38.873074913978485,1.1296326562034733,5.861527956989247,2.4044205495818396,7.415157204301076,142.53656595054082,11.146067415730338,5.761258426966291,2.1797752808988764,1.7415730337078652,161.42216786765482,37.02078459550562,1.15066573428682,5.837304494382023,2.3689138576779025,7.382876898876405,143.27799002133213,10.882352941176471,5.686694117647059,2.164705882352941,1.7529411764705882,162.38188016124732,36.6890748235294,1.0930063183973173,5.759471764705883,2.3941176470588235,7.328397835294116,135.85492443576328,7.306666666666666,0.1144106666666666,0.02805722933205885,0.5155555555555558,3.217777777777778,1.3723882733803907,34.79335584888889,0.23162316903979954,0.10894488888888883,1.519122085048011,0.07147826172839504,51.15086394190741,-0.21826086956521792,-0.01650356521739131,-0.01510775169889492,0.11922705314009654,0.6295652173913044,0.14812944543879372,-0.882293601062791,0.029143152932722734,-0.015164309178743994,-0.22784457565455957,-0.009970781535158329,3.922241520975525,-0.09641025641025663,0.00025907692307691917,-0.00030601693991757345,-0.12324786324786331,-0.05282051282051283,-0.15104632925389647,-0.5254814625640961,-0.024595601186649614,0.0009228888888888684,0.106210298617706,-0.0004927825261158582,-3.425808581070897,-0.7659259259259259,-0.00023862962962962515,0.0026125443878925255,-0.05629629629629629,-0.25666666666666665,-0.07209875717798747,-3.7235358525925895,-0.026785574440697027,-0.0016398888888888897,0.1501737540009144,0.002198913580246914,-6.30804715380077,-0.7630769230769231,-0.006497504273504265,-0.0028121904014063843,-0.0067236467236467135,-0.08786324786324781,-0.20230501361689956,-3.6707090750997162,-0.029624017206136454,-0.0068216410256410065,-0.08551967922338287,-0.0035280987654321048,-6.537123519656451,0.9436363636363637,0.008660363636363638,0.0009452195218656497,-0.0004040404040403844,0.2545454545454547,-0.0393106735268728,4.476976903232319,0.009210841260436241,0.009929292929292946,0.06578812819553567,0.0033360615039281514,4.346061086350524,-0.15397849462365598,-0.0009104516129032227,0.0005183401288748371,-0.01806451612903225,-0.3109677419354838,0.008630548213185126,-0.7170620617921162,0.002842505681662612,-0.001504673835125435,-0.06202000088499489,-0.0002954440461967391,-0.3186777971122173,-0.7298876404494383,-0.0021543370786516777,-0.0008722022238806398,-0.01742821473158551,-0.30067415730337066,-0.022687521952613383,-3.5013319335330846,-0.014728632381733841,-0.0038278102372034744,-0.11794300334458473,0.00011219919545012631,-4.722741585110436,0.42117647058823543,0.011851999999999998,0.002064771725019903,-0.03006535947712417,-0.07294117647058816,-0.021293942451472567,1.9260448099346377,-0.008208500430278992,0.011232758169934657,0.0552352134269346,0.006263061147421917,-0.12275371797023023,,,0.47272727272727283,1.1931818181818181,0.6136363636363636,0.06818181818181818,0.5795454545454546,0.03409090909090909,0.7928726306961861,0.0169318030324956,0.024749984850677417,0.7856889889311137,0.23328859323910892,0.24588022019989983,1.5785616196272998,0.47916881343900875,1.9987673977747173,1.6682870764894628,0.0908312455247339,0.23964907576052055,0.0,0.33048032128525445,6.692617635466681,912.0,269.9949,129.0,260.0,7302.998326395227,3584.2237020000002,63.56590881152702,273.1073999999999,193.91666666666669,340.51074399999993,9230.716857514088,1021.0,288.45400000000006,158.0,252.0,6732.167414364848,3802.2570029999993,81.38733814800003,294.84700000000004,146.52777777777777,355.29974799999985,11686.51627779639,1426.0,469.9170000000001,244.0,313.0,11779.72019554884,5196.783665999999,119.74133101394298,479.56450000000007,222.44444444444454,587.2021199999997,16511.73925038511,1520.0,643.8879999999999,269.0,291.0,17135.708468196935,5274.447363999999,136.74058273613096,653.0650999999999,318.44444444444434,813.7352959999997,17985.8493944405,1224.0,669.5629999999999,247.0,191.0,18936.474655904018,4000.441792000001,128.92047481716799,678.2684999999997,268.22222222222223,860.9085280000002,15847.626977159065,1083.0,613.1780000000001,232.0,164.0,18122.759242843455,3621.5283510000004,114.90482879650702,620.7840000000001,219.25000000000006,795.5940680000001,13964.68160788759,1070.0,538.662,209.0,165.0,15159.376834335726,3615.195966999999,105.05583702692302,545.1220999999999,223.6111111111111,689.6096200000001,13255.900633400295,992.0,512.752,194.0,155.0,14366.572940221278,3294.8498289999998,102.40925035152698,519.5201000000001,210.83333333333334,657.076044,12751.741111898558,925.0,483.369,184.0,149.0,13802.459813706022,3118.5713599999995,92.90553706377197,489.55510000000004,203.5,622.9138159999999,11547.668577039878,328.79999999999995,5.1484799999999975,1.2625753199426482,23.20000000000001,144.8,61.75747230211758,1565.7010132000003,10.423042606790979,4.902519999999997,68.3604938271605,3.216521777777777,2301.7888773858335,-10.040000000000024,-0.7591640000000003,-0.6949565781491663,5.484444444444441,28.960000000000004,6.813954490184511,-40.585505648888386,1.3405850349052457,-0.6975582222222237,-10.48085048010974,-0.45865595061728315,180.42310996487416,-7.520000000000017,0.020207999999999695,-0.023869321313570727,-9.613333333333339,-4.120000000000001,-11.781613681803925,-40.9875540799995,-1.91845689255867,0.07198533333333174,8.284403292181068,-0.03843703703703694,-267.21306932352996,-82.72,-0.025771999999999518,0.28215479389239273,-6.079999999999999,-27.72,-7.786665775222646,-402.14187207999964,-2.892842039595279,-0.1771080000000001,16.218765432098756,0.23748266666666673,-681.2690926104831,-89.28,-0.760207999999999,-0.32902627696454695,-0.7866666666666655,-10.279999999999994,-23.66968659317725,-429.4729617866668,-3.466010013117965,-0.7981319999999977,-10.005802469135796,-0.41278755555555624,-764.8434517998048,103.80000000000001,0.9526400000000003,0.10397414740522147,-0.04444444444444229,28.000000000000014,-4.324174087956008,492.46745935555504,1.0131925386479865,1.092222222222224,7.236694101508924,0.36696676543209666,478.0667194985576,-14.320000000000006,-0.0846719999999997,0.04820563198535985,-1.6799999999999993,-28.919999999999995,0.8026409838262167,-66.6867717466668,0.26435302839462294,-0.13993466666666546,-5.767860082304525,-0.027476296296296738,-29.637035131436207,-64.96000000000001,-0.19173599999999932,-0.07762599792537694,-1.5511111111111102,-26.759999999999987,-2.019189453782591,-311.6185420844445,-1.310848281974312,-0.3406751111111092,-10.49692729766804,0.009985728395061242,-420.32400107482874,35.80000000000001,1.0074199999999998,0.17550559662669174,-2.5555555555555545,-6.199999999999994,-1.8099851083751684,163.7138088444442,-0.6977225365737143,0.9547844444444459,4.694993141289441,0.5323601975308629,-10.43406602746957,0.7249719540625604,0.5813122756710488,0.4583353867677476,0.32891979721898107,0.3124323001312101,0.18777869033938663,0.2123299472948864,0.11025486042496992,0.13401564360781976,0.06311550730492112,0.09040446254143429,0.035783384919851405,0.0645115714379277,0.023207450430427358,0.042118689649098054,0.014669802306830616,8.008721244938755,5.692721382659233,3.5166745040778213,2.191516465275614,0.4136159436449164,-0.3050962313559072,3.177743761077175,0.9925253549451674,5.016314205053022,0.9939329949799558,14.54022477418656,10.953241222077708,16.004254732650413,11.704435573311853,1.9911713197182428,0.7842603788473167,3.4589053924691373,2.241255448077477,6.004988455434245,1.2580034550776884,3.672492369548294,2.4372987301107103,20.898215181661055,14.707149342615523,0.24667854078392182,0.5712861742324726,0.75322548952397,0.8639630363376003,0.8980925184869308,0.9136858574719933,1.5137174398994755,595.7813056795756,0.0,0.0,2.0,0.0,10.0,4.0,2.0,0.0,0.0,4.08567694483192,2.235270698310016,1.1981365991309696,0.5668838889850427,0.3723308333814117,0.283441944492524,149.11861147741652,1328.132389815678,87.56042768301013,29.514053107015066,58.33736212621293,,15.0,532.0,0.0,15.319582184522117,11.49902366656781,11.791352662431866,31.3706727663876,11.629818560158606,18.19910120538483,18.19910120538483,12.240525803696954,0.0,10.400000000000002,26.25,13.5,1.5,12.75,0.0,0.027272727272727174,0.75,0.11805555555555547,0.05380116959064318,-0.06425438596491229,0.0804195804195802,0.13941436464088364,0.0,0.5555555555555558,0.8227272727272724,0.43750000000000033,0.5017543859649126,0.7423076923076922,17.443197875316095,0.3724996667149032,0.5444996667149031,17.2851577564845,5.132349051260396,5.409364844397796,34.728355631800596,10.541713895658193,0.5745856353591163,0.1442307692307692,0.0,0.2884615384615384,0.3333333333333333,0.3719153142953579,-0.8485565327568567,-0.08729947851517958,-0.01885681183904126,-0.047142029597603136,0.6280846857046423,1.4330288178344677,0.0631197045609839,0.031845084840765946,0.05307514140127658,-4.225127377329084,0.97746747064424,1.039172895605153,1.4333694166208142,0.9895052473763115,0.7497597886139803,1.1063366751769337,0.9772004991991481,1.0220711223334327,1.0245520582316319,1.0457314008963878,1.0514292925844309,0.9934266475490928,0.9307349179611955,0.6938537796965916,0.6615981239507218,1.5683023872679038,0.9641946451338715,1.259948767418344,0.9394150352378269,1.1988381145734048,0.7044608351079308,0.5348822509571625,0.6609343221964391,1.1196528589923624,1.0680814634585927,0.9182469245147938,0.731356556185502,1.079980842911877,1.0157049314507878,1.1025544590654186,1.0718515420034695,1.111607526865592,0.9327077744748655,0.7424781478003322,0.8601662978763073,1.1106260803031462,1.0488281656164868,0.8531054954465358,0.8330337270854509,0.802387267904509,0.8687491146054682,1.1030713190290264,1.0527990622176957,1.0977749139633772,0.8792063052728996,0.8068504492690001,0.8095253967703628,1.1113515274097447,0.7968369829683699,0.5731167257132201,0.5440876746244089,0.9137931034482756,0.7693370165745856,0.9598104224459633,0.8024041723217042,0.906957736620137,0.5967624813361291,0.48696091887596626,0.5225729269463467,0.8979397780627851,0.9813463098134632,0.8725544300954969,0.732284732390827,0.9992584352984795,1.0194261272500447,0.9747806355511891,0.9826088334059786,0.9415838075518158,0.8908339349550227,0.8130171764930685,0.8250370887506553,0.9764395496866529,1.0434949014461852,0.8123942417214357,0.7786052254567201,0.8950019372336301,0.9764727791917561,0.9984371476772184,1.047374199164541,1.039662627337735,0.8476612853174248,0.8030515970835056,0.7500615199160721,1.0785640603465505,0.8855732073851439,0.6707167483812468,0.6533488364807255,1.0040567951318455,0.9384140396490088,0.9481118424694446,0.8910438859184837,1.0077441433465033,0.6957876645432287,0.7168456344468005,0.6544279462739266,0.991660015207023,5.0,0.05774920926436078,2.4444444444444455,0.8125,0.9555555555555559,0.5138888888888888,0.2636734693877551,0.22395833333333331,0.18468127991937514,0.09125000000000003,3452.2035644552616,4066.817720049264,2000.035801399085,1749.9406694988604,17.2654725095693,0.4923120516271327,8.765472316071378,0.9697138827206474,1.0,0.3333333333333333,1.406176151497755,3.256582398019659,4.293716497198705,4.924969207344632,5.119522262948263,5.208411151837151,0.21739130434782605,0.00444224686648929,0.0814814814814815,0.02901785714285714,0.04777777777777779,0.027046783625730993,0.013877551020408165,0.013174019607843137,0.011542579994960946,0.006517857142857143,0.4522694590082321,18.340264650283554,9.333333333333334,6.57439446366782,130.61071345213674,1.0,3.9886454168116843,126.10539858136386,,106.43199553513944,105.27526579211104,105.18315592963145,106.44456560768211,129.8436086328091,105.98067682785435,106.49769493923537,120.76395336205319,-0.02987146937480173,-0.1442484839763599,-0.538461995662289,0.23125937031484234,0.1956521739130435,0.10793552255727855,-0.025358105866380994,0.12582140661288985,-0.13919247918284477,-0.14998437446017293,-0.13949390057980934,0.07667986850486157,-0.013194834362717608,0.0022644472812289,-0.01090688379439916,-0.2390583554376658,-0.01641521461963451,-0.1100609296827111,-0.015102925536884566,-0.10618800048635628,0.008471153610795897,0.069915577992765,-0.006894159345793076,-0.0669745986101354,-0.1048256285482563,-0.0020857288623696967,0.09311483885215177,-0.10919540229885052,-0.07976519337016573,-0.05253524718656902,-0.10701858908822383,-0.11564289769342762,-0.015052462815042076,0.0988556189650605,0.03076338913504085,-0.12332239707553888,-0.10443571027512634,-0.056791070822396525,-0.10023050986695645,-0.013041556145004395,-0.02730556736081596,-0.14741091682355542,-0.10550028836085779,-0.12789746953615938,-0.06261552143669898,-0.056295461744063885,-0.04935904539534364,-0.1278008427595814,0.12914731254147316,0.07569542149068538,0.03368898299539576,-0.0007836990595610901,0.07910597689603217,-0.02864398821336831,0.12867332839856804,0.03976649356202165,0.09114051178132528,0.04330667616714721,0.046672392742350174,0.0849655460616734,-0.021073699081704745,-0.0079577511383253,0.01847438757192498,-0.03503893214682978,-0.0966405275351987,0.006288707343678214,-0.0206091664427654,0.01227211290410325,-0.013811330209901156,-0.04082621238636971,-0.0041333412292449846,-0.006230154733537699,-0.09989338144837205,-0.01882986212228183,-0.03108654149552968,-0.03380472685005809,-0.09344155441057789,-0.016531416358382848,-0.10063219968604717,-0.06358876982294909,-0.035135289743673956,-0.07763892349761817,0.0015696967544687045,-0.09232965430406229,0.05764276513525121,0.1035917396979303,0.073591433444237,-0.05831643002028392,-0.02266818329541759,-0.015515975226910466,0.05535668414106554,-0.035439029974020146,0.10310495778641594,0.03635995682676743,0.08762190064470873,-0.0023998366500640723,12.865150300774749,16.692156725588973,2.8898144814112525,12.726455250938914,25.998665094045265,32.033680946864486,35.054795201912306,36.40619357084966,36.495793570849656,43.972882751043784,36.70231568276818,1.9982874015441459,5.272279666731452,0.0,7.270567068275598,8156.671108647631,8013.655494503872,448.5894942436289,29.0,30.0,34.0,37.0,45.0,38.0,32.0,33.0,32.0,301.16779359600065,23.0,4.672828834461906,5.459585514144159,6.278521424165844,7.080867896690782,7.898411092811599,8.705993714307901,9.523032079931992,10.332831934434235,11.149786819103003,0.6000000000000001,0.9704000000000003,1.1265494978918065,0.5576110787333832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.650728396540253,0.9573856209150324,0.997005745731165,0.6029640138408304,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,4.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,20.63637078852845,5.749511833283905,11.49902366656781,0.0,0.0,0.0,0.0,0.0,0.0,18.19910120538483,68.12332973162165,6.041840829147961,0.0,216.4954184405697,-493.95277518414264,-50.81785128046078,-10.976728337425394,-27.441820843563473,365.6140299179862,834.1796146315354,36.74257640254935,18.537324769589674,30.895541282649457,0.4666666666666667,0.7164100263168354,0.22263758185534002,151.38132070324272,0.1285482407023467,177.2450233253625,0.2835899736831648,8.0,0.30434782608695654,0.256047663117124,0.5929842515627565,0.7818338221880498,0.89677730284448,0.9322030602693564,0.9483886514222395,2.956800000000002,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,87.36810000000003,15.319582184522117,0.0,5.316788604006331,0.0,32.22804289761662,6.544756405912575,53.59147246262526,0.0,17.248535499851716,3.8501476017100584,0.0,5.117993812416755,0.0,6.561030665896573,0.0,8.080546965824498,0.0,9.638023488650779,27.000000000000004,12.242935821646451,0.0,0.0,0.0,0.0,0.0,2.354045537105048,0.0,43.66800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.694727405131296,5.316788604006331,0.0,17.248535499851716,27.90617941958265,12.841643245852019,0.0,24.471461806010623,42.46456947923127,0.0,0.0,0.0,25.092498543002247,29.282777844311386,27.65958962536739,252.21079716272777,,212.78282223911003,210.45573061971427,210.2986162098909,212.80819513211165,261.39861027070873,211.8761402919611,212.91486738812807,242.2171376615689,27.65958962536739,252.21079716272777,,211.97113392742182,209.50772097463627,209.6216597161704,211.998834299586,263.45228187681755,211.02400665448494,212.1096424847018,243.04421478652398,4.548856242599456,199.28881946910028,,171.5288278056803,169.56763091749244,168.82928767456946,171.5484015472746,208.2199150869467,170.73699417019515,171.64294684386755,194.89374421809967,1.257254073880336,11.464127143760352,,9.671946465414093,9.566169573623377,9.559028009540496,9.673099778732348,11.881755012304943,9.630733649634594,9.677948517642186,11.009869893707677,2.2744281212997284,126.10539858136386,,106.43199553513944,105.27526579211104,105.18315592963145,106.44456560768211,129.8436086328091,105.98067682785435,106.49769493923537,120.76395336205319,43.08235294117646,0.0,2.147525720164609,0.0,0.0,0.0,27.970913755727313,44.86525855790242,3.609520218938509,3.453285777273872,0.0,0.0,0.3884398358108675,0.0,0.0,0.0,0.0,27.133380622837368,417.0290452178315,63.27792681739898,146.54620791088465,193.21724237394173,221.62361433050845,230.37850183267184,234.3785018326718,355.0,116.10185931005141,165.08040314072443,55.24774253449866,72.72,72.72,0.875,7.054476643951895,5.523561956057013,3.6752562517199525,4.6289883041684075,,4.641794766857922,4.641738524481604,4.638850503119811,4.641786930747722,4.625676867386816,4.641647678373248,4.6418103092691405,4.636667456075705,0.16705710235090693,0.21040855928038216,,0.21099067122081464,0.21098811474916382,0.21085684105090052,0.21099031503398738,0.21025803942667345,0.21098398538060217,0.21099137769405185,0.21075761163980478,2.0900802189573318,2.3207956957669644,,2.3235584550154993,2.3235463384270076,2.3229239595141116,2.3235567668502077,2.320080070325843,2.323526766665934,2.323561803372326,2.3224532478850644,244.54999999999984,251.19996971711035,113.81516244991232,,112.84459149841962,112.83885412361691,113.12434848382878,112.84549651702707,114.33010517139051,112.85501784106644,112.84365741821419,113.39938309529742,11.418180441686834,5.1734164749960145,,5.129299613564528,5.1290388238007685,5.142015840174036,5.129340750773958,5.196822962335933,5.1297735382302925,5.129257155373373,5.15451741342261,6.314706674405402,5.523033110878092,,5.51446893601426,5.514418091568952,5.516945003108804,5.514476956026263,5.527547283810934,5.514561327336378,5.514460658399365,5.519373311566382,0.0,0.0,31.424199533001183,2.211519884303074,0.1425256528019745,12.631375657457319,2.7891236559923427,2.9679222831107754,0.0,294.9199628474303,126.02402860059475,-287.534577477619,-29.581551375636153,-6.389657277280424,-15.974143193201053,212.82738126770747,485.5838353051157,21.388200880960095,10.790751895669239,17.98458649278206,1346.0,28.0,1.4570030804445206,0.6434614497510208,0.0,0.0,0.16666666666666666,0.016666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.32645418435263546,0.07059137448954954,15.94938298937633,12.788870064763074,10.541713895658194,7.565155336036565,9.372969003936303,5.633360710181599,7.219218208026138,3.7486652544489774,4.958578813489331,2.335273770282081,4.068200814364543,1.610252321393313,2.4514397146412525,0.8818831163562396,1.3477980687711377,0.4694336738185797,2.763522831891502,1.0062710951870242,3.002345882381881,1.0226272140900596,4.041658585767668,1.1182039581764662,75.59540720496423,46.98119105903268,30.78046220778682,23.705049724479323,21.11708655184114,20.80669960994517,106.0,117.0,48.90223899999997,23.643760999999998,0.4,67.04,7.666666666666666,4.944444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,45.0,0.0,1.0,46.0,12.0,0.0,6.0,40.0,12.0,23.0,34.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,4.0,4.0,0.0,22.0,4.0,0.0,1.0,3.0,0.0,2.0,7.0,0.0,0.0,0.0,0.0,2.0,3.4011973816621555,4.8917579098588355,3.9318256327243257,4.363098624788363,4.7770204429147505,5.267858159063328,5.049856007249537,4.793981058221796,4.842709617586033,4.912654885736052 +60464,C[C@H]1CN(c2c(F)c(N)c3c(=O)c(C(=O)O)cn(C4CC4)c3c2F)C[C@@H](C)N1,0,25.12,6.665992,3.6,9.36,169.71406277141955,100.75877108599083,1.40321387813356,6.68351,7.3116666666666665,8.078754079999998,214.14361091723663,26.0188679245283,6.585603773584905,4.415094339622642,8.30188679245283,151.2291398353255,99.54558684283772,1.7472015559622638,6.708235849056605,3.4544025157232703,7.955094867924528,263.26215398669683,22.393617021276597,6.456351063829787,4.053191489361702,7.25531914893617,158.61728124538976,84.87066732277445,1.489447592056798,6.546745744680851,3.498522458628842,7.8829552765957445,220.33378519502727,21.141732283464567,6.527652755905512,3.52755905511811,6.937007874015748,164.28663902364906,79.86268614827087,1.3680331789998423,6.590361417322833,3.7401574803149606,7.960659370078739,202.10755850463255,20.568493150684933,6.564230821917809,3.267123287671233,6.493150684931507,164.9628557898878,77.81179247502034,1.291327934012137,6.614368493150685,4.622146118721462,8.012216547945204,190.29782136135358,20.068493150684933,6.715027397260274,3.1027397260273974,5.691780821917808,165.92632524483483,74.43716837517808,1.2787961234296916,6.761741780821918,4.640030441400305,8.141746493150684,188.7377696418172,18.5472972972973,6.706567567567568,2.722972972972973,4.358108108108108,170.27396778706742,67.82824949447567,1.1433928918907363,6.7350182432432435,4.4406906906906904,8.162993864864864,168.7197422264419,15.26086956521739,6.866244927536232,2.398550724637681,3.1449275362318843,175.44359905739955,52.208047577298544,1.0489505618480943,6.858760869565217,5.21135265700483,8.356525043478259,148.00423257658463,11.42608695652174,6.081208695652174,2.3130434782608695,1.8695652173913044,169.84498859000064,37.366664830900866,1.0733089347484697,6.12196695652174,2.7038647342995166,7.664902295652174,136.94236660239096,8.1456,0.22657823999999993,0.028324456146134977,0.7776,4.8656,2.297585983347872,39.16553040237197,0.2229729926347936,0.20241235999999993,3.3515666666666664,0.1335716416,46.80168512643139,0.08307924528301869,-0.019204051320754697,-0.012691678334257975,0.3273056603773586,1.5962867924528301,-0.20739991860262275,0.477292269434724,0.008306271355779176,-0.015202737358490597,-0.1887993710691823,-0.01240757820377359,2.6056988826218617,1.0169531914893615,0.005026781276595744,-0.002052008737599141,0.08410212765957452,1.2173787234042552,-0.3745502144986397,4.890744794563902,-2.6537963729372252e-05,0.008243022978723376,0.338374231678487,0.0020444520170212906,3.746547789935675,1.1658960629921258,0.019112374173228336,-0.002210856369277851,0.06649448818897641,1.2821165354330708,0.2030408088288394,5.740195904943504,0.013147401969730787,0.01932286834645667,0.15549370078740163,0.007728336982677161,5.668580361907845,1.676317808219178,0.047284691506849295,0.005970471877313701,-0.04362739726027396,0.8812493150684931,-0.006292185967398635,8.060419907761153,0.007629856932003372,0.043881886575342435,0.5654538812785388,0.026727185797260255,4.619727785928581,-0.5732712328767124,-0.006838623561643807,-0.0039051137345840637,-0.13896986301369857,-0.4864219178082193,-0.2587131471737544,-2.8915379962910155,-0.03147281665070182,-0.00648025041095893,-0.10044033485540338,-0.0031743057095890937,-6.113406863308712,-0.5561405405405406,-0.021419321081081053,0.0013064675890445128,-0.18705945945945948,-1.2461405405405406,-0.3192482758974496,-2.8482420637719246,-0.038727444090680886,-0.01791579243243246,-0.35700210210210215,-0.013530827545946006,-5.885774270994962,-3.531107246376812,-0.055540848695652095,-0.000393786574587495,-0.05035362318840582,-2.2693681159420294,0.30224102264973285,-17.059094872447645,0.0004380716516893084,-0.05769070782608695,-0.38679613526570045,-0.02346088681739141,-10.773648074931511,-1.5142956521739128,-0.025492605217391304,-0.00027412396165645583,-0.0652521739130435,-0.6228173913043477,0.28244391498291066,-7.359437421616442,0.0040336235569124945,-0.026095768695652114,-0.295267149758454,-0.010428145252173834,-3.659854570839601,,,0.45255102040816325,1.1428571428571428,0.4642857142857143,0.07142857142857142,0.6785714285714286,-0.21428571428571427,1.0055297062038064,0.025461732293480668,0.037747446579194946,1.0184532651760596,0.2117657506769207,0.25970871568578063,2.023982971379866,0.47147446636270135,2.013571465841478,1.4053568651011001,0.2938480032942394,0.1862147320542221,0.12815186539191653,0.608214600740378,7.843319940080013,1256.0,333.2996,180.0,468.0,8485.703138570978,5037.9385542995415,70.16069390667799,334.1755,365.5833333333333,403.9377039999999,10707.180545861831,1379.0,349.037,234.0,440.0,8015.144411272251,5275.9161026704,92.60168246599999,355.53650000000005,183.08333333333331,421.620028,13952.894161294931,2105.0,606.897,381.0,682.0,14910.024437066639,7977.842728340799,140.008073653339,615.3941,328.86111111111114,740.997796,20711.375808332563,2685.0,829.0119000000001,448.0,881.0,20864.40315600343,10142.5611408304,173.74021373297998,836.9758999999998,475.0,1011.0037399999999,25667.659930088335,3003.0,958.3777000000001,477.0,948.0,24084.57694532362,11360.52170135297,188.533878365772,965.6978,674.8333333333334,1169.783616,27783.48191875762,2930.0,980.3939999999999,453.0,831.0,24225.243485745883,10867.826582775999,186.704234020735,987.2143,677.4444444444446,1188.694988,27555.714367705314,2745.0,992.572,403.0,645.0,25200.54723248598,10038.5809251824,169.222147999829,996.7827,657.2222222222222,1208.123092,24970.5218495134,2106.0,947.5418,331.0,434.0,24211.216669921138,7204.710565667199,144.755177535037,946.509,719.1666666666665,1153.2004559999998,20424.58409556868,1314.0,699.339,266.0,215.0,19532.173687850074,4297.1664555536,123.430527496074,704.0262,310.9444444444444,881.4637640000001,15748.37215927496,407.28,11.328911999999997,1.4162228073067489,38.879999999999995,243.28,114.8792991673936,1958.2765201185987,11.14864963173968,10.120617999999997,167.57833333333332,6.67858208,2340.0842563215692,4.40319999999999,-1.017814719999999,-0.6726589517156727,17.347200000000004,84.6032,-10.992195685939006,25.296490280040373,0.4402323818562963,-0.8057450800000017,-10.006366666666661,-0.6576016448000003,138.10204077895867,95.59359999999998,0.4725174399999999,-0.19288882133431925,7.905600000000004,114.43359999999998,-35.20772016287213,459.7300106890068,-0.0024945685905609916,0.7748441599999973,31.807177777777778,0.19217848960000133,352.17549225395345,148.06879999999998,2.427271519999999,-0.2807787588982871,8.444800000000004,162.8288,25.786182721262605,729.0048799278251,1.6697200501558098,2.454004279999997,19.747700000000005,0.9814987967999994,719.9097059622964,244.7424,6.903564959999997,0.8716888940878003,-6.369599999999998,128.6624,-0.9186591512402007,1176.8213065331283,1.1139591120724923,6.406755439999996,82.55626666666666,3.9021691263999974,674.4802567455728,-83.69760000000002,-0.9984390399999958,-0.5701466052492733,-20.289599999999993,-71.01760000000002,-37.77211948736814,-422.16454745848824,-4.595031231002466,-0.9461165600000038,-14.664288888888894,-0.4634486336000077,-892.557402043072,-82.3088,-3.1700595199999957,0.1933572031785879,-27.684800000000003,-184.4288,-47.24874483282254,-421.5398254382448,-5.731661725420771,-2.6515372800000043,-52.836311111111115,-2.002562476800009,-871.0945921072544,-487.29280000000006,-7.664637119999989,-0.05434254729307431,-6.948800000000003,-313.17280000000005,41.70926112566313,-2354.1550923977748,0.06045388793312456,-7.961317679999999,-53.37786666666666,-3.2376023808000145,-1486.7634343405487,-174.14399999999998,-2.9316496,-0.03152425559049242,-7.504000000000003,-71.62399999999998,32.48105022303473,-846.3353034858908,0.4638667090449369,-3.001013399999993,-33.95572222222221,-1.199236703999991,-420.8832756465541,0.7259123019919302,0.5581873137192991,0.4258479051017948,0.2999445389311285,0.27064387588836697,0.16256443955415237,0.16027134274297042,0.07757809714787657,0.1011572165873325,0.04271426081074868,0.05853836279848008,0.02113231046807265,0.037630869322030885,0.011367579407635522,0.022435953060110966,0.005502026921202633,9.005174598952069,5.66816308661547,4.108993427154315,2.162519050709589,0.5020812601638788,-0.45453801071033945,3.350725383314958,0.9726212671044483,7.0051691952697315,0.993048217713919,17.425816770904866,10.933117267556467,19.001180490554095,11.683426266649956,2.018276832005263,0.5452326871615265,3.990007706748011,2.210991683371664,8.002964551547603,1.255424352751229,4.011393779319719,2.4063269706292716,20.91230096217465,13.303154697999624,0.30129247305167606,0.6270694214601327,0.7885168113588188,0.8114822962453994,0.8318812901998294,0.8318812901998294,1.6444971446739975,1038.1212061890906,0.0,2.0,4.0,0.0,6.0,5.0,2.0,0.0,0.0,3.8714601173522425,1.9550306161549238,1.0052932501298066,0.8701955000865391,0.7501955000865372,0.7501955000865372,246.78476665521708,1765.4329506895897,73.28599364941185,35.308659013791804,73.4042178069441,,11.0,508.0,39.66959934278953,14.69560176298435,29.329609479743706,13.08951281182515,19.038486817465095,4.567099647791355,4.899909730850478,13.847474399381248,5.316788604006331,5.733667477162185,12.67142857142857,32.0,13.0,2.0,19.0,0.0,0.047448979591836755,-6.0,0.20298168498168517,0.047802955665025015,-0.15517872931666016,0.07735969387755093,0.22149583564686276,0.0,0.6465714285714287,0.918877551020408,0.4435897435897435,0.5987684729064037,0.8415178571428571,28.15483177370658,0.7129285042174587,1.0569285042174585,28.51669142492967,5.92944101895378,7.2718440392018575,56.67152319863625,13.201285058155637,0.4925041643531372,0.23449830890642615,0.0,0.5366403607666291,0.47368421052631576,0.29163763109187074,-0.8694121871363151,-0.06426524692156288,-0.017388243742726302,-0.06687786054894732,0.7083623689081291,2.1117263712907874,0.059486664118483905,0.04223452742581576,0.05707368571056183,-3.543360123401082,0.7332121427750785,0.6783572029338537,1.4879443566815935,0.7609286435282243,0.3876269598505953,1.1674206318695963,0.7299004124887921,1.0929344761368163,0.6616733677949724,0.6093977265114542,0.6967761003183615,0.9619470905100256,0.7071432899944416,0.6411604690648927,1.0037886852989413,1.112807547500219,0.5860290567912291,1.147829830444345,0.7057328445600691,1.0411913599278344,0.6250121329105786,0.4672014999936165,0.63257981442162,0.9221279713008909,0.7554921685172383,0.7323562585974019,1.0710347181971662,0.9973145717896377,0.6597498232812973,0.928637908610601,0.7518061004786852,0.9340836078771294,0.7206476138708553,0.6714276842678424,0.7350876461942596,0.8533648656752998,0.7486435234889397,0.7966456767537151,0.705217951454338,1.1782830204633858,0.8373856382858919,1.0974079806874082,0.7525510217999108,0.9945635963190471,0.7810266050757196,0.8357282241481562,0.8008482186152657,0.8926635476911878,1.0477713154828694,1.264905196327259,1.0437979491373484,1.2905004509837084,1.193998797259373,1.4464989809754172,1.0635111723044188,1.2046391246495125,1.241197621163191,1.273188626250937,1.2442232164214604,1.1056798625798525,1.088483518875387,1.3407178310083367,1.0798511348884023,1.2560303358914473,1.3343678066425517,1.3588776573823858,1.0997940419173307,1.1528703627422512,1.3154925887898323,1.3434071932833709,1.3330466769749798,1.0638658473281917,1.5343928899820372,1.7468406485554164,1.168289803340067,0.9543485715989743,1.6339346563153807,1.1253869205264193,1.5414949170450052,0.9381761342446846,1.7579574628771668,1.6917503526242856,1.6944094290857858,1.1231309607435174,1.1607333487057299,0.896164225847452,0.8863029633174726,0.931517266058329,0.9991886250232331,0.6978902929726158,1.161989248968878,0.9187226364169103,0.9308484229271201,0.8116234631349131,0.8253977115479862,1.0833927369777607,6.5,0.1033568003264973,3.38888888888889,3.25,2.940555555555556,1.9822222222222223,1.1666213151927438,0.4609906462585034,0.31593285462333076,0.17281635802469136,6356.900682248944,7016.592004111027,2787.3161250264966,2554.810621725115,13.579743636156588,0.44678579499572846,7.5125070798381826,0.8076180816656338,1.0,0.47368421052631576,1.772396072422482,3.6888255736198006,4.638562939644918,4.773660689688185,4.893660689688187,4.893660689688187,0.20967741935483863,0.014765257189499614,0.07530864197530865,0.05909090909090909,0.04983992467043315,0.03604040404040404,0.02380859826923967,0.014405957695578231,0.015044421648730034,0.009600908779149521,0.5075824427140907,21.240374609781476,7.921875,3.879706152433425,159.2783812646418,1.0,4.3027692517008544,131.78542245833796,,100.12108003611921,97.82705772293403,96.64232997752632,100.02235434907114,142.3311690567434,99.16121251905595,100.31389915439487,125.43934457413754,0.010199278786463697,-0.08475682095842346,-0.4480819779478739,0.4209177731190312,0.32807604251332423,-0.0902686211118049,0.012186539146315708,0.03725236521978237,-0.07510775210807581,-0.056331677047305934,-0.09289081166592168,0.0556753218518255,0.12484693472418994,0.022185631226527957,-0.07244653620221932,0.1081560283687944,0.2502011516368496,-0.1630190196202681,0.12487370257259953,-0.00011901873592753297,0.04072391122124844,0.10096001820397038,0.015306033470365694,0.08005155754145701,0.14313200537616944,0.08435220510684671,-0.07805468030423363,0.08551245909076186,0.2635063579893684,0.08837136468467804,0.14656244524128445,0.058964100604169824,0.09546288747612387,0.04639433323343361,0.057859115079387936,0.12111915087233684,0.2057942703077954,0.20869034690555152,0.21078857954094923,-0.0561051919499408,0.1811183235507426,-0.002738607396198565,0.20580392567013447,0.034218749283686914,0.21679450096497294,0.16871330261823989,0.2000962590345244,0.09870857798065857,-0.07037802407148798,-0.03018217266425853,-0.13787074019837578,-0.17871638762049716,-0.0999716207267797,-0.11260216115906868,-0.07382864387599092,-0.1411508016230961,-0.032015092413126015,-0.02996817454187695,-0.023764817678104313,-0.13062364841765384,-0.06827496323666037,-0.09453388410590999,0.04612507235104626,-0.24056000444889342,-0.25611240968031496,-0.13894943571698878,-0.07272318374116611,-0.17368670363640132,-0.08851135588969204,-0.10651797729482795,-0.10130015161800637,-0.12575987926705984,-0.43349872893056524,-0.24512878507508978,-0.013902705582618196,-0.06475517385340254,-0.46641074398677024,0.1315472086095031,-0.4355639945939427,0.0019646848100873986,-0.2850157363220654,-0.11540756121983763,-0.17564272278429052,-0.23019786671841572,-0.18590351259255464,-0.11251126859044942,-0.009677995589470885,-0.08391483270710327,-0.12800423201749994,0.12293072687158124,-0.1879059812546477,0.01809018890247012,-0.1289237905019838,-0.08809824751363661,-0.07807155117103713,-0.07819920502761316,2.403273974395813,15.68583164933313,21.117873878242765,18.404998827345587,36.71042869155846,40.36012504396396,41.37654357600758,42.21710357600758,42.21710357600758,56.380001043561386,39.34999222283081,8.227744092238703,5.214012497518219,3.5882522309736626,17.030008820730586,5994.8849353369205,4677.922106855347,1503.1095467820696,198.0,48.0,66.0,95.0,128.0,159.0,180.0,194.0,210.0,392.16599700400064,31.0,5.0689042022202315,5.973809611869261,6.914730892718563,7.841099765422119,8.788288460263619,9.723702775394143,10.67380408586716,11.614371328365458,12.56595793080428,0.6866666666666665,1.01504,1.149077015710061,0.6534123826492382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6505322874251498,0.9983529411764707,1.0264821558630737,0.6285893344188888,1.0,0.0,0.0,0.0,0.0,2.0,5.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,2.0,1.0,1.0,4.0,1.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,25.623992854651053,11.250837766380558,11.63444168209179,5.428790391900541,0.0,4.794537184071822,13.575367279421462,0.0,0.0,0.0,26.689117645233267,37.411878870882106,16.590311206764618,172.70806891387684,-514.8666835906437,-38.057937353770996,-10.297333671812874,-39.60512950697259,419.4928355690939,1250.5662670989461,35.228056295640855,25.01132534197893,33.79908829997152,0.45454545454545453,0.7263186912400551,0.16017270087741495,168.02010302355188,0.11429343983392352,90.11717980960586,0.2736813087599448,6.0,0.0967741935483871,0.31403990690507433,0.653600206947697,0.8218783015855099,0.8458154370298948,0.8670774954461621,0.8670774954461621,2.0816,,1.9880952380952381,2.3803016717928926,2.127807286498578,2.053375397059774,-9.316019401471836,2.1394925976270587,1.9335363731051547,-3.567601277749207,102.03940000000004,18.681894674262168,0.0,9.883888251797686,0.0,44.814640132677155,23.723090019837816,33.61806432137422,0.0,0.0,4.143134726391533,1.9459101490553132,5.541263545158426,3.713572066704308,7.141245122350491,5.476463551931511,8.843182098022606,7.252053951852814,10.603188212065916,34.33333333333333,1.1506752330561854,0.0,0.0,0.0,0.0,-0.5212776360544218,-3.1999025783152755,1.4343983843537413,50.752,0.0,24.122487345540193,0.0,0.0,0.0,0.0,0.0,-1.4487524618305636,57.45385078550305,21.379156203919536,20.155602644716765,0.0,40.81612680070498,0.0,11.63444168209179,43.08894715015005,10.991380755684897,0.0,10.902924932081056,0.0,32.67061913246191,32.52661437125749,35.060949096615325,263.5708449166759,,200.15083188751146,195.56536750590794,193.2865415212875,199.9435676756098,287.67325590871235,198.23450936905363,200.54072582867184,251.89800379906052,35.06094909661533,263.5708449166759,,198.50785545777126,193.61746952516341,191.588771116531,198.24440490290903,293.9783575149587,196.474290875569,198.9428342894934,254.44629042602423,5.163029772184357,186.79289787761036,,140.8126457699525,137.55692722643178,135.50025943090267,140.72187243456804,195.81105245850625,139.44106326841944,141.06387050556384,175.212643348091,1.2521767534505472,9.413244461309855,,7.148243995982552,6.984477410925284,6.90309076861741,7.14084170270035,10.274044853882584,7.07980390603763,7.162168779595423,8.996357278537875,2.592436954353724,131.78542245833796,,100.12108003611921,97.82705772293403,96.64232997752632,100.02235434907114,142.3311690567434,99.16121251905595,100.31389915439487,125.43934457413754,49.91764705882353,0.0,3.837569669588068,0.0,30.815019368858653,5.933021778155706,9.34118843167815,51.324107793153686,2.2118717456118246,3.2999949668036788,0.0,0.0,-0.10347536989492334,1.5963506235827665,0.0,0.0,0.0,31.42946672094444,430.12658589524824,88.6198036211241,184.44127868099002,231.9281469822459,238.68303448440926,244.68303448440935,244.68303448440935,1337.0,138.16466905292484,162.0743185877225,82.66001342353292,100.59,100.59,0.8333333333333334,9.369808529551175,5.954196310386875,4.499257176656644,5.207881016022874,,5.186514406235655,5.186434713340534,5.185758818506171,5.186152532165536,5.17400355130289,5.186412014229804,5.186682104475702,5.184051125423529,0.16068775630916585,0.18599575057224552,,0.1852326573655591,0.18522981119073337,0.1852056720895061,0.1852197332916263,0.18478584111796037,0.1852290005082073,0.18523864658841793,0.1851446830508403,2.533531728477495,2.679792475440667,,2.6756812907081637,2.675665925184974,2.675535596950499,2.6756115161608047,2.6732661873194976,2.6756615485444377,2.6757136237001955,2.6752062383398174,270.3800000000005,247.99756458769014,179.50989549593874,,181.5246400086214,181.41445678332704,181.69486139293687,181.49122367672828,185.87405322682716,181.48815047685034,181.5470064362106,183.34640530646772,8.85705587813179,6.411067696283526,,6.483022857450764,6.47908774226168,6.489102192604888,6.4818294170260105,6.638359043815256,6.481719659887512,6.483821658436093,6.548085903802418,6.543038343086995,6.219849751701073,,6.23101081929509,6.230403647294866,6.231948111462061,6.230826715318761,6.254688728347037,6.230809782125875,6.2311340259835575,6.240996705869364,32.2494177532124,25.71883796912296,12.240055044362403,3.535259222516167,-3.340211267575083,-0.10347536989492334,2.604616664567061,4.595499983689017,0.0,332.62842987657916,102.27787462230513,-304.9045157105267,-22.537944923659428,-6.098090314210535,-23.454193516194362,248.42403664814358,740.5864744918885,20.862086801455526,14.811729489837774,20.01585066194293,1781.0,55.0,2.619316155085035,1.2334934006538758,0.0,0.0,0.8525063397799173,0.2018673798889442,0.0,0.0,0.28867513459481287,0.28867513459481287,0.16666666666666666,0.12909944487358058,0.21407617506269555,0.13908532168678328,0.39763321454273115,0.20811555192097736,0.8810192616184486,0.345819058349359,20.325544455774047,15.629244784140376,13.201285058155639,9.298280706864983,12.990906042641614,7.803093098599314,10.577908621036048,5.120154411759854,9.609935575796587,4.057854777021125,7.49291043820545,2.7049357399132994,5.98330822220291,1.807445125814048,4.038471550819974,0.990364845816474,6.085516354610239,2.1809539460408778,10.910352253592237,3.349035370279098,18.472935628695016,4.548797607576583,89.28748134124555,42.27578299295695,32.42901858259205,30.433752366448015,28.698947147765157,28.698947147765157,158.0,196.0,54.319445999999985,29.452553999999996,0.38,205.09,11.055555555555555,5.916666666666666,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,10.0,11.0,50.0,0.0,1.0,53.0,11.0,2.0,6.0,47.0,13.0,31.0,40.0,0.0,0.0,0.0,19.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,6.0,3.0,2.0,28.0,9.0,0.0,4.0,3.0,0.0,4.0,3.0,0.0,0.0,2.0,1.0,2.0,3.676300671907076,8.073349999418019,4.363098624788363,5.020585624949423,5.709598859977641,6.345417038533605,6.842683282238422,7.288201679670123,7.618964909391694,7.980886819041427 +2088,NCCCC(O)(P(=O)([O-])O)P(=O)(O)O,0,42.42307692307692,7.182388461538462,3.076923076923077,9.94681861348528,171.36652486118027,172.92189126404958,1.8675839560841538,7.144576923076924,13.173340353252904,8.734528076923077,193.02602406438277,47.2,6.641719999999999,3.84,2.6133333333333333,153.806221605224,187.03720228768006,2.0568832961599997,6.788404000000001,2.964938271604938,8.30102224,249.85246505776794,37.674418604651166,7.019827906976748,3.1627906976744184,8.46712604076945,157.87129687110243,146.87454641768943,1.7850202795208376,7.077090697674416,8.641471760544162,8.56357844186046,211.74186897554242,30.952380952380953,6.803412698412697,2.380952380952381,4.493827160493827,164.41959790397786,117.66454494869843,1.3717141366061587,6.84537619047619,6.696820497746423,8.461641841269842,170.16937342394723,21.37142857142857,7.272099999999999,1.8142857142857143,5.431746031746032,172.20147886473111,75.52704172051428,1.0519190120191284,7.230191428571429,9.380246913580248,8.912237371428574,138.09371263954768,14.894736842105264,6.609147368421055,1.5964912280701755,1.5146198830409356,174.47305840000465,49.62230540442107,0.9164245170304386,6.596505263157897,4.635802469135803,8.3392129122807,112.17074903033514,14.289473684210526,6.896105263157895,1.394736842105263,2.6842105263157894,180.44032619627023,46.20665827326316,0.8153163274339473,6.839147368421053,7.151234567901234,8.566145052631578,100.30911783716324,5.434782608695652,6.581826086956524,1.0,0.0,186.71634468550837,10.609112347826086,0.529327650904,6.504347826086957,4.3478260869565215,8.358185739130436,64.94487163717025,1.0,4.840000000000001,1.0,0.0,184.917652024249,1.016064,0.4446129048489999,4.840000000000001,1.0,6.718464,31.083744430930263,17.806213017751478,0.32403328402366854,0.06708554189259198,0.9408284023668637,5.774052158667544,1.3085281705416743,81.87541261841261,0.6528818891814083,0.2842071005917159,6.257764031609591,0.21486520710059168,44.7020761280268,4.935325443786982,-0.17972959171597633,-0.03657870965910948,0.2468639053254438,-2.4016684929505447,0.12253312228700547,22.335177551578017,-0.07377049366687881,-0.1472384852071005,-2.689033142204835,-0.10115033633136086,8.348534342597587,3.214359433053529,0.11706009701389845,0.009928463494223215,-0.1393972753543415,2.901271943013147,-0.07259580497052066,14.405070695233674,0.04603535007574031,0.10304907114352549,2.297884142441062,0.08028366409797717,-1.383806875611653,1.1498309382924765,0.029218730628345995,-0.001398451738958218,-0.21555367709213855,0.2758882986803217,-0.2686882484302981,5.106491093928745,-0.1311210142113496,0.03169839391377851,0.34409768935077995,0.021325968723584107,-2.0347077082609486,-4.3358833474218095,0.020486221470836855,0.004963540226548412,-0.037531699070160615,0.1495674316187133,-0.04543561656787299,-19.82347732748371,-0.030026673379035796,0.012195866441251004,0.5528139382790773,0.013018653338968714,-7.413454322310897,-2.792042977265649,-0.0939855107443164,-0.013962629902633692,-0.06228589224540644,-1.8145879711331805,-0.21957271225371697,-12.581269536190137,-0.01877108012339079,-0.08316944876985359,-1.9835377692890583,-0.06735944056887781,-2.9256373006589333,-4.050140143257551,-0.0034410775459358667,0.015544203292047446,0.03083151666147614,-0.7345909700835479,0.130272687580724,-18.50290198062737,-0.03721912741218977,-0.009398800996574252,-0.3100864980673192,-0.012485599813142323,-6.805333894036591,-1.8747748906611768,-0.156184789040391,-0.029648349657669083,0.21301775147928984,-2.665955209990885,0.3849399917205318,-8.38947983206874,0.13421347922843765,-0.14140275276562894,-2.8000343559238874,-0.09993731077952148,3.5006234732222374,15.693786982248524,0.175432100591716,0.04053143863285466,0.2130177514792899,4.172766454817739,0.3111568018662505,72.82621770779082,0.18952285789112996,0.17575443786982273,2.6560796454799696,0.10682840828402362,43.6069016385089,,,0.48095238095238085,0.8214285714285714,0.21428571428571427,0.0,0.6071428571428571,-0.39285714285714285,0.9418463577483532,0.060968099328091,0.060968099328091,0.768868657423835,0.13426445933949088,0.29863983864478205,1.7107150151721882,0.43290429798427293,1.8304580399504702,0.5667903926016006,0.1217611381098735,0.8417954657829565,0.0,1.2636676473488697,9.53882494476577,1103.0,186.74210000000002,80.0,258.6172839506173,4455.529646390687,4495.969172865289,48.557182858188,185.75900000000001,342.5068491845755,227.09773,5018.676625673952,1180.0,166.04299999999998,96.0,65.33333333333333,3845.1555401306005,4675.930057192001,51.422082403999994,169.7101,74.12345679012346,207.525556,6246.311626444199,1620.0,301.85260000000017,136.0,364.0864197530864,6788.465765457405,6315.605495960645,76.75587201939602,304.3148999999999,371.58328570339893,368.23387299999985,9104.900365948324,1950.0,428.61499999999995,150.0,283.1111111111111,10358.434667950605,7412.866331768001,86.417990606188,431.2587,421.89969135802465,533.083436,10720.670525708676,1496.0,509.04699999999997,127.0,380.22222222222223,12054.103520531178,5286.892920435999,73.634330841339,506.1134,656.6172839506173,623.8566160000003,9666.559884768338,849.0,376.72140000000013,91.0,86.33333333333333,9944.964328800264,2828.471408052001,52.236197470735,376.00080000000014,264.24074074074076,475.3351359999999,6393.732694729103,543.0,262.052,53.0,102.0,6856.732395458269,1755.853014384,30.982020442489997,259.8876,271.7469135802469,325.513512,3811.7464778122035,125.0,151.38200000000006,23.0,0.0,4294.475927766693,244.00958399999996,12.174535970792,149.60000000000002,100.0,192.23827200000002,1493.7320476549157,6.0,29.040000000000003,6.0,0.0,1109.505912145494,6.0963840000000005,2.6676774290939993,29.040000000000003,6.0,40.310784,186.50246658558157,462.96153846153845,8.424865384615382,1.7442240892073915,24.461538461538456,150.12535612535615,34.02173243408353,2128.760728078728,16.974929118716616,7.389384615384613,162.70186482184937,5.586495384615383,1162.253979328697,123.38313609467454,-4.493239792899408,-0.914467741477737,6.171597633136095,-60.04171232376362,3.063328057175137,558.3794387894504,-1.8442623416719701,-3.6809621301775124,-67.22582855512087,-2.5287584082840215,208.71335856493965,138.21745562130175,5.033584171597633,0.4269239302515982,-5.994082840236684,124.75469354956533,-3.1216196137323884,619.418039895048,1.9795200532568336,4.431110059171596,98.80901812496566,3.4521975562130183,-59.50369565130108,72.43934911242602,1.8407800295857977,-0.08810245955436773,-13.579881656804728,17.38096281686027,-16.92735965110878,321.7089389175109,-8.260623895315026,1.9969988165680461,21.678154429099138,1.3435360295857988,-128.18658562043976,-303.51183431952666,1.4340355029585798,0.34744781585838885,-2.627218934911243,10.469720213309932,-3.1804931597511095,-1387.6434129238598,-2.1018671365325057,0.8537106508875703,38.69697567953541,0.91130573372781,-518.9418025617628,-159.14644970414201,-5.357174112426034,-0.7958699044501205,-3.550295857988167,-103.43151435459129,-12.515644598461867,-717.1323635628378,-1.069951567033275,-4.7406585798816545,-113.06165284947633,-3.8394881124260354,-166.7613261375592,-153.90532544378692,-0.13076094674556293,0.590679725097803,1.1715976331360933,-27.91445686317482,4.950362128067512,-703.1102752638401,-1.4143268416632113,-0.3571544378698216,-11.783286926558128,-0.4744527928994083,-258.60268797339046,-43.11982248520707,-3.5922501479289926,-0.6819120421263889,4.899408284023666,-61.31696982979036,8.853619809572232,-192.95803613758102,3.0869100222540657,-3.2522633136094656,-64.40079018624941,-2.298558147928994,80.51433988411146,94.16272189349114,1.052592603550296,0.24318863179712796,1.2781065088757393,25.036598728906434,1.866940811197503,436.9573062467449,1.1371371473467797,1.0545266272189364,15.936477872879818,0.6409704497041417,261.6414098310534,0.8300943102542602,0.6332334015489858,0.46620462859844775,0.5176605333195716,0.3302695319895153,0.31606037961494804,0.18873870685520575,0.23520980740289046,0.1265963203099953,0.1553775751857942,0.0982092751647983,0.10233268775063818,0.08838834764831845,0.0578783410890674,,,15.013093299496438,5.8362691876159865,3.5524006525759595,1.9758311026175537,0.5136580236213256,-0.79026451795927,4.157650330221942,0.9766849866075676,7.001908851497847,0.5375028603156687,14.537807927749371,10.441167122115958,30.980435837771058,11.84849446588816,3.6653209045424084,0.7773494861406687,3.49931199549817,2.0932092198729677,8.001597510387018,0.2812683190830586,3.718094776394336,2.396980273810543,24.442328166353615,14.702292460605383,0.4007245029947564,0.7113876157400174,0.8368437506301295,0.8914829750806798,0.8914829750806798,0.8914829750806798,4.873785646533211,257.41438217180246,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,2.795039787040657,1.3178716348650155,0.7213418270062868,0.4615384615384608,0.4615384615384608,0.4615384615384608,-18.63447998109953,1033.2622779391904,107.79991526101458,39.74085684381502,84.39505399255314,,6.0,127.0,26.69557389656929,19.130035567455838,12.965578028838586,0.0,0.0,0.0,0.0,0.0,0.0,20.41390228541961,6.733333333333332,11.5,3.0,0.0,8.5,0.0,0.01904761904761917,-5.5,0.2945221445221444,0.0,-0.2945221445221444,0.23499999999999988,0.27004395604395615,0.0,0.7217948717948721,1.0833333333333335,0.4272727272727277,0.7217948717948721,0.8483333333333336,13.185849008476945,0.853553390593274,0.853553390593274,10.764161203933691,1.8797024307528725,4.1809577410269485,23.950010212410636,6.060660171779821,0.4439560439560438,0.4059405940594061,0.3712871287128714,0.0,1.0,0.523496465494834,-1.6135271071375537,-0.20901510860022027,-0.0620587348899059,-0.14668428246705034,0.47650353450516597,0.9921813950944725,0.06283760656494992,0.03816082288824895,0.06614542633963151,1.4222285626332551,0.949322920993603,1.3630781592036394,1.42202642795121,1.5125786163522015,1.1050847028757225,1.6292543478036783,0.950737711779004,1.8625713724031379,1.2831244404655326,1.2162751901811808,1.2793616584169183,1.0931823482101064,0.7999559497750155,0.5038345633206585,0.7802233878130322,1.78258007898201,0.37295370403879285,1.472282520691822,0.8041335840652776,1.1829668104940523,0.47888463991036806,0.5424084854067298,0.5060073721034368,1.170159353892629,1.0392889120977515,0.8568998486550239,0.9192991516687974,1.460017969451932,0.863165901642768,1.3711769875676711,1.0398225894375062,1.479186832491101,0.8216849369438323,0.8834398669132844,0.8499211453089649,1.1207592514271267,1.1424892296371902,1.0375981812080997,0.963531538761355,0.8103099730458222,1.0697409301140273,0.8613386507219414,1.140450748837132,0.879379123442844,1.0584851078321442,1.0339655651555468,1.0540445795028308,1.0301829279228378,1.0487400689977833,1.2419767396180117,1.1860757316139485,0.7351318547942184,1.31057898665516,0.8927372824681057,1.0468687070941771,0.7621215977564098,1.2600401166351995,1.2747006741276008,1.2634984946394778,0.9538601531702224,1.1276087327232263,1.010273053053984,0.7816317997117198,0.5244538232373388,1.118001133988423,0.5902620946869296,1.1271057817870491,0.7580467495138064,1.048797363873551,1.0101719836409149,1.0314278825202787,0.9539932679409491,0.817045992248538,1.4547194118699631,1.4254140932525485,0.0,1.5168483005242734,0.042028367351095074,0.8179087619686878,0.025048965091251194,1.5127458443957842,1.3995991475186058,1.4224267430106712,0.6091816682781754,0.0,0.0,0.07397168683021144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,3.5555555555555562,2.0,0.56,0.33333333333333326,0.0,0.0,0.0,0.0,3501.260471245801,3878.0492719765816,1868.1439640176745,1716.0133417832108,8.351542204839433,0.4345355662645922,4.722500083676889,0.7684578204045283,0.0,1.0,1.9053999311004346,3.3825680832760763,3.979097891134805,4.238901256602631,4.238901256602631,4.238901256602631,0.4615384615384616,0.0,0.16931216931216936,0.08695652173913042,0.029473684210526322,0.037037037037037035,0.0,0.0,0.0,0.0,0.7843178738373247,14.0,4.244897959183674,2.9943289224952743,80.07101766170787,1.0,3.5098769921245183,41.77525059940352,,26.614516852829603,40.24206676738952,38.94101846318168,26.420956107370003,36.67842584616841,39.751412315740254,38.60852060899376,41.212093729449705,0.27716872974993767,-0.5546639823051271,-0.545254739354632,0.2623899371069183,-0.4159415999291507,0.09364194447283625,0.27279468691868497,-0.1129920968697312,-0.5180675813537089,-0.4297114957709863,-0.4707618217779026,0.18675943190395392,0.18051898120330528,0.36125948408851716,0.14799706783496341,-0.14816439959046362,0.5024672211625227,-0.0554789775297456,0.17593890808672613,0.07051099262909563,0.36258443553654546,0.367205303816803,0.37364664657126845,-0.030956210437484567,0.06457470418590298,0.09017200413958634,-0.020845799251308486,-0.22911051212938002,0.04778070774199369,-0.2053362353819809,0.06236904255649966,-0.2008342035276102,0.11153273034974433,0.054987322566439574,0.09925277810846361,-0.045517074026574136,-0.24350395803415664,0.0632225838545045,0.0739882258757832,-0.03989218328840972,0.025903373836724815,-0.03472268888874177,-0.24211758687400733,-0.04599097306357146,0.04291189916036352,0.08834048958808138,0.06058986242883837,-0.1658413873458305,-0.15680161606974985,-0.2900489405818304,-0.2081317301571285,-0.06620324395895402,-0.3142659472532243,-0.16780128788730878,-0.1536635863421687,-0.028751111700963568,-0.29263677296132207,-0.31697228583080056,-0.31349626809212855,-0.06544745913545277,-0.22745657031171423,-0.010619518782781952,0.23170720327391345,0.03277060575968219,-0.1272227804490541,0.09955665496050935,-0.22598850361660752,-0.05700744350384048,-0.033070253969749726,-0.049552283611365294,-0.05810898833563612,-0.15223753533384235,-0.1052876818216296,-0.4820023026677182,-0.4419484261621959,0.22641509433962256,-0.4617130460085932,0.2941778407118153,-0.10246641285545188,0.20557084129981953,-0.49753420119071634,-0.4474496548256193,-0.46511630304451596,0.07831008705717486,0.8813657888178119,0.5414014832467081,0.6041754674613489,0.22641509433962265,0.7226755734365712,0.23779144299006186,0.8894760390057961,0.29028659093110415,0.6184026982573765,0.4244454779795821,0.4971880265100838,0.9755005900311806,2.381101577952299,,,25.01226471536411,38.78136117087355,42.9706062381541,43.23248803054567,43.23248803054567,43.23248803054567,25.626412559306583,7.935065496422408,1.704655933538229,11.785136520961391,0.0,17.691347062884176,1511.4629061959618,1219.9740245419086,661.7448630549202,0.0,21.0,23.0,19.0,9.0,6.0,0.0,0.0,0.0,248.00944856391,13.0,4.23410650459726,5.056245805348308,5.983936280687191,6.855408798609928,7.783640596221253,8.666130304190608,9.595262578853017,10.480746775644146,11.410372116639888,0.8269230769230769,1.0475384615384615,1.1581066838634575,0.7944240984225998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6599612160294797,1.0271493212669685,1.0629447027844696,0.5917936009644743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,34.97888956794412,0.0,7.595762326787885,5.083227620067512,0.0,4.565048284931329,0.0,0.0,0.0,0.0,19.386399651764595,0.0,0.0,207.5862092659133,-639.8247128600437,-82.8824202902877,-24.608642802309372,-58.1658829872767,188.95172928481378,393.4375650791466,24.91749497072688,15.132214041505643,26.229171005276445,0.5,0.2997067531647564,0.2518114224019349,165.22273488712426,0.1753304423883205,0.5742772846347507,0.7002932468352435,3.0,0.38461538461538464,0.40536631578246757,0.7196280105925491,0.8465373730414397,0.9018095137446017,0.9018095137446017,0.9018095137446017,-1.9051999999999998,,3.092857142857143,1.758483286423579,1.289647574714206,3.111799582686488,-7.014351861393347,1.6434635988665516,1.6960287815233799,-2.7971282243066726,45.10760000000002,33.810270375713266,0.0,0.0,5.733667477162185,17.92487086591953,6.544756405912575,0.0,0.0,0.0,3.295836866004329,0.0,4.709530201312334,0.0,6.329720905522696,0.0,8.050384453067021,0.0,9.821029430095606,21.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.235999999999997,0.0,21.283143424036282,0.0,0.0,0.0,0.0,0.0,0.0,30.110773780449897,10.62707907991466,0.0,0.0,31.414746229078222,9.130096569862658,0.0,12.841643245852019,0.0,0.0,0.0,0.0,20.655026558987593,17.15899161676647,14.54490171420468,83.55050119880704,,53.574322610626496,80.23292163671852,77.69780155854704,53.231176634129426,76.63914138015937,79.26804411735672,76.9747513920556,82.82377720522894,14.54490171420468,83.55050119880703,,51.806975671850985,78.72565024835545,76.59238935164912,51.45300544402288,80.6473424438127,77.859361032614,75.5210124364641,85.22131568320613,4.961662224978724,56.68695358031226,,41.26279116603107,55.274819583088785,53.71482350378483,41.076955944745535,52.09483785131584,54.741176189802395,53.52766010827508,56.44366460551701,1.0389215510146201,5.967892942771932,,3.826737329330464,5.730922974051323,5.549842968467646,3.802226902437816,5.474224384297098,5.662003151239766,5.498196528003971,5.915984086087781,2.480831112489362,41.77525059940352,,26.614516852803945,40.24206676738952,38.94101846318168,26.42095610733854,36.67842584616841,39.751412315740254,38.60852060899376,41.212093729449705,26.70588235294118,0.0,0.0,0.0,0.0,4.984818909045099,34.86100607835727,27.636562272396212,-1.026026234567901,0.0,0.0,0.0,0.0,0.0,-3.431180555555555,0.0,0.0,15.386633625076332,118.84509806968413,49.5403982086113,87.94677016517798,103.45654516950493,110.2114326716684,110.2114326716684,110.2114326716684,105.0,97.06584976079161,277.692840481043,46.206501856001985,183.76,164.14,1.0,4.890349128221754,4.700439718141093,3.1776772025337072,3.6764762567847744,,3.632552027075673,3.6800848464682625,3.6785020001344626,3.630939797980634,3.6389535505720043,3.6788940471932046,3.6770316224726565,3.6652916855490436,0.22697694303812194,0.26260544691319815,,0.2594680019339766,0.26286320331916163,0.2627501428667473,0.25935284271290243,0.259925253612286,0.26277814622808604,0.26264511589090406,0.2618065489677888,1.4926227270576131,1.6384269911516227,,1.6264076756445858,1.6394080446417707,1.6389778407476785,1.6259637489051202,1.6281683908312174,1.6390844129796451,1.6385780389775195,1.6353801555730618,157.05999999999995,70.75395632352229,56.304187315091994,,55.630046897625164,55.279851687125365,55.50616596152262,55.64472180884047,57.43480673637908,55.354313892389406,55.38656164062219,56.73907044932989,5.053854023108735,4.021727665363714,,3.9735747784017974,3.948560834794669,3.9647261401087586,3.974622986345748,4.102486195455649,3.9538795637421003,3.9561829743301566,4.0527907463807065,4.595680691348208,4.3672411440472105,,4.355195703735656,4.348880733137907,4.352966349608444,4.355459463642254,4.387122745302657,4.350226831174036,4.350809231285813,4.374935283233423,21.283143424036282,36.29589569160998,5.7399459876543215,4.984818909045099,0.0,0.0,-0.9588734567901231,-0.06715277777777784,-10.916666666666668,188.60502752382354,82.31580749386511,-253.71477267133264,-32.866024084005645,-9.758260487358948,-23.064979333757513,74.9265292161951,156.01292100490235,9.880732089540148,6.0004969617270145,10.400861400326825,281.0,23.0,3.066941738241592,2.3837656450796567,0.5883883476483185,0.3856682501542983,2.3409902576697323,1.3399138258143355,1.3106601717798216,0.4933020905143038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.621320343559642,8.8652676216858,6.060660171779821,6.7295869331544305,6.935660171779821,6.637267971913909,4.340990257669732,5.409825570266481,2.4053300858899105,2.95217392853009,0.8838834764831847,0.9209941897557437,0.5303300858899107,0.3472700465344044,0.0,0.0,5.964150429449554,5.7160300104181125,7.962849474438844,6.476249173038605,10.414975644174326,6.000068773450816,54.49575513193062,33.50898229766335,26.873414247041236,26.02185216584113,26.02185216584113,26.02185216584113,68.0,78.0,28.655515999999977,29.752484,0.0,13.1,8.9375,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,26.0,0.0,1.0,25.0,0.0,2.0,2.0,23.0,2.0,13.0,23.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,5.0,5.0,0.0,14.0,10.0,0.0,1.0,7.0,2.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,2.772588722239781,0.0,3.332204510175204,3.4011973816621555,3.367295829986474,2.4849066497880004,2.1972245773362196,0.0,0.0,0.0 +101526,COc1c(N2C[C@@H]3CCCN[C@@H]3C2)c(F)cc2c(=O)c(C(=O)O)cn(C3CC3)c12,0,23.849056603773583,6.443296226415094,3.5849056603773586,8.49056603773585,165.65630977267878,94.85531230471268,1.429258013516528,6.483247169811318,5.732180293501048,7.91708950943396,215.32857426948829,25.63157894736842,6.484280701754385,4.456140350877193,7.631578947368421,147.9435689342325,97.76376604974035,1.7733018439649124,6.618394736842105,3.112085769980507,7.875911157894735,264.834454051266,21.221153846153847,6.3907307692307675,4.009615384615385,6.384615384615385,156.74254839434272,79.27323891029232,1.506930370735481,6.48556346153846,3.1466346153846163,7.846634807692308,219.22443208547773,18.95035460992908,6.265467375886526,3.5106382978723403,5.75886524822695,160.73515002058605,70.33068313275463,1.3610763481069075,6.344106382978724,2.9836485421591807,7.7581098439716305,194.276264643182,19.09090909090909,6.362603246753246,3.2987012987012987,5.662337662337662,161.03729369233622,70.84603850089353,1.3095084612322858,6.429622077922079,3.650432900432901,7.859741168831167,187.83760757153973,18.452229299363058,6.454687898089171,3.1656050955414012,4.885350318471337,163.17482198743645,67.68315702842294,1.2773058792562098,6.513111464968153,3.5796178343949046,7.953471388535029,184.37663410479877,17.633986928104576,6.484549019607844,2.9019607843137254,4.03921568627451,161.9022031846349,63.21598066072681,1.2536599601234377,6.5448457516339875,3.536310820624546,7.9838828235294095,178.39103745571373,14.566037735849056,6.401967924528302,2.49685534591195,3.1132075471698113,167.187617243741,50.69643580542391,1.0945560114064212,6.434432075471698,3.8710691823899386,7.956167748427673,149.56685450628217,11.764705882352942,6.109110294117649,2.389705882352941,1.9558823529411764,168.6178079394167,38.96632864581176,1.0616670093604192,6.149961029411764,2.756944444444444,7.703000411764706,137.2206963344927,7.849056603773585,0.18291456034175851,0.026829783830177405,0.7013171947312207,4.490566037735849,1.8519391712840507,37.4851479886693,0.22597187438052832,0.1660865788536846,2.462679482615403,0.11170781345674617,48.32461810421458,0.3684210526315789,-0.008460207478468233,-0.010596797339649789,0.2791528483008874,1.3508771929824561,-0.2603093746041925,1.779224342824626,-0.0034823219904561095,-0.005348611293274088,-0.04219693452610202,-0.007281096475614128,1.3787796548029125,0.22115384615384615,-0.005299520428841301,-0.0029030880022655977,0.06809499685078181,0.75,-0.13304163263143448,1.1181911213588183,0.005815719067019244,-0.0032713938028863104,0.2729730331078677,-0.002836596475614116,2.074004992461392,1.049645390070922,0.014584422663727767,0.0002635953461231814,0.02329139619611732,0.9787234042553191,0.08823531416526822,4.9830876284684695,0.007978715311673766,0.015140598986540216,0.11475483648892831,0.006440507164155757,4.47432150548988,1.1168831168831168,0.035108203686665784,0.002857945394175886,-0.025747481425658726,0.7012987012987013,-0.07135938869204135,5.27605992870475,-0.0039890661863116825,0.03258832925707258,0.39367040439486156,0.021121949346488308,1.7353834727457564,0.03184713375796178,-0.0029641216925577283,-0.0023383508179065696,-0.13756283828367868,-0.4267515923566879,0.02338757584466749,0.16955217827182018,-0.0010440819045541385,-0.0019764358420273085,0.08285457445572902,-0.0018729397636804966,0.4678788617506408,-1.5032679738562091,-0.02252266245052655,-0.0008853956728434344,-0.17449514515667428,-1.1111111111111112,-0.2697910918884959,-7.261765184046339,-0.05113802203373855,-0.021695568864783316,-0.3185597802271102,-0.013481841327013853,-11.195275760293248,-1.2327044025157232,-0.005548368339859901,0.002459295567285067,-0.04497448676871958,-0.8742138364779874,-0.04733237263925638,-5.857561696924049,-0.012542337110408811,-0.008240251572327006,-0.010633809316614498,0.000482517621929453,-6.326166374740187,-1.2647058823529411,-0.028843930486042797,-0.0006526007959169436,-0.008337172533662795,-0.8235294117647058,0.17179793355167403,-6.262966423877727,0.0038418471974779305,-0.028523412926936526,-0.3088188031234803,-0.014115761292484203,-3.0546492827597462,,,0.4592775041050904,1.1206896551724137,0.43103448275862066,0.05172413793103448,0.6896551724137931,-0.25862068965517243,1.014800860448979,0.014614181439005579,0.029441767645902128,0.9252580522820526,0.20388194323040848,0.27854572230896857,1.9400589127310317,0.48242766553937705,2.057401917865276,1.5230168292384112,0.22603844199399764,0.24631815285775013,0.062028493775117065,0.5343850886268648,7.569341216377371,1264.0,341.49469999999997,190.0,450.0,8779.784417951976,5027.3315521497725,75.75067471637598,343.6120999999999,303.80555555555554,419.60574399999985,11412.41443628288,1461.0,369.604,254.0,435.0,8432.783429251253,5572.534664835201,101.07820510600001,377.2485,177.38888888888889,448.9269359999999,15095.56388092216,2207.0,664.6359999999999,417.0,664.0,16301.225033011642,8244.416846670401,156.72075855649004,674.4985999999998,327.2500000000001,816.05002,22799.340936889683,2672.0,883.4309000000001,495.0,812.0,22663.656152902633,9916.626321718402,191.91176508307396,894.5190000000001,420.69444444444446,1093.893488,27392.95331468866,2940.0,979.8408999999999,508.0,872.0,24799.743228619776,10910.289929137603,201.66430302977201,990.1618000000001,562.1666666666667,1210.4001399999997,28926.991566017117,2897.0,1013.3859999999999,497.0,767.0,25618.44705202752,10626.255653462402,200.53702304322493,1022.5585000000001,562.0,1248.6950079999997,28947.131554453405,2698.0,992.1360000000001,444.0,618.0,24771.03708724914,9672.045041091202,191.80997389888597,1001.3614000000001,541.0555555555555,1221.5340719999997,27293.828730724203,2316.0,1017.9129,397.0,495.0,26582.831141754818,8060.733293062402,174.034405813621,1023.0747,615.5000000000002,1265.030672,23781.129866498864,1600.0,830.8390000000003,325.0,266.0,22932.021879760672,5299.4206958303985,144.38671327301702,836.3947,374.9444444444444,1047.608056,18662.014701491004,416.0,9.694471698113201,1.4219785429994025,37.1698113207547,238.0,98.15277607805469,1986.7128433994726,11.976509342168,8.802588679245284,130.52201257861634,5.920514113207547,2561.2047595233726,21.0,-0.48223182627268923,-0.604017448360038,15.91171235315058,77.0,-14.837634352438972,101.41578754100368,-0.19849235345599825,-0.304870843716623,-2.405225267987815,-0.41502249911000527,78.59044032376602,23.0,-0.5511501245994953,-0.30192115223562216,7.081879672481308,78.0,-13.836329793669186,116.2918766213171,0.6048347829700014,-0.3402249555001763,28.38919544321824,-0.29500603346386806,215.69651921598478,148.0,2.056403595585615,0.03716694380336858,3.284086863652542,138.0,12.441179297302819,702.6153556140542,1.124998858946001,2.1348244571021704,16.180431944938892,0.9081115101459618,630.879332274073,172.0,5.406663367746531,0.44012359070308643,-3.9651121395514437,108.0,-10.989345858574367,812.5132290205314,-0.6143161926919991,5.018602705589177,60.625242276808684,3.2527801993591994,267.2490548028465,5.0,-0.4653671057315633,-0.3671210784113314,-21.597365610537555,-67.0,3.671849407612796,26.61969198867577,-0.16392085901499975,-0.31030042719828743,13.008168189549457,-0.29405154289783797,73.4569812948506,-230.0,-3.445967354930562,-0.13546553794504546,-26.697757208971165,-170.0,-41.27803705893987,-1111.0500731590898,-7.824117371161998,-3.319422036311847,-48.739646374747856,-2.0627217230331194,-1712.877191324867,-196.0,-0.8821905660377243,0.3910279951983256,-7.150943396226413,-139.0,-7.525847249641765,-931.3523098109238,-1.994231600555001,-1.310199999999994,-1.6907756813417052,0.07672030188678303,-1005.8604535836897,-172.0,-3.92277454610182,-0.08875370824470433,-1.13385546457814,-112.0,23.364518963027667,-851.7634336473709,0.5224912188569986,-3.8791841580633677,-41.99935722479332,-1.9197435357778516,-415.4323024553255,0.6994388997419712,0.5614085843156777,0.4239515848679376,0.30794258733537516,0.2628743966012708,0.16639631409742323,0.1586191201080381,0.08732074582525536,0.09912045128799994,0.04736858607436299,0.061160375832795946,0.025648444997908346,0.03781374564694691,0.013385492333216762,0.024341206946662596,0.007313117398386446,9.004070986236233,5.6692660437132005,4.107725505598534,2.163990778341214,0.4975481059925489,-0.524082255157158,3.326792030800913,0.9727178043131126,7.0040646756525105,0.997569369490038,17.424772859598107,10.933398554893412,19.000142645866056,11.684065321022118,2.016818334387696,0.5458477216652013,3.988679651135791,2.212571984127879,8.001920890507892,1.1803478929003102,4.009966526210046,2.4080623626219455,20.912158644978007,13.304118696150498,0.2795085056271346,0.6136012934380325,0.8059295376258855,0.8864538757321347,0.8990803043215818,0.8990803043215818,1.4148459609992536,1048.2978600921988,0.0,2.0,3.0,0.0,6.0,6.0,2.0,1.0,0.0,4.057219875430664,2.060253762262466,0.9106540095564224,0.4293375000408197,0.3538658019276122,0.3538658019276122,224.4640448534033,1715.344238782755,72.39969195686496,32.36498563741047,66.64542916385922,,12.0,590.0,17.215316520898284,14.69560176298435,16.991516535309753,35.45810210680566,38.7727993035292,19.37300818135222,4.567099647791355,4.899909730850478,5.316788604006331,4.736862953800049,13.319047619047621,32.5,12.5,1.5,20.0,0.0,0.0407224958949096,-7.5,0.1735598849045233,0.04201905940229522,-0.13154082550222806,0.0377774246517294,0.19536473206007754,0.0,0.6203953279424977,0.8855500821018059,0.44683544303797446,0.5783762685402025,0.8477726574500765,29.42922495302039,0.4238112617311618,0.8538112617311617,26.832483516179526,5.912576353681846,8.077825946960088,56.26170846919992,13.990402300641934,0.5186352679399224,0.13407222023596707,0.0,0.47300679299249193,0.5238095238095238,0.3106926387419365,-0.8989446762525445,-0.06900326811396991,-0.016961220306651783,-0.05992964508350297,0.6893073612580635,1.9944121792319336,0.05311691063627898,0.03763041847607422,0.052484531032419304,-3.6469843112781613,0.7368421052631579,0.6862992620035943,1.3920529742560923,0.72403597827055,0.4465575703965797,1.267125218722002,0.7386943829066971,1.1407736021752442,0.6666188940146716,0.5643032515837209,0.7174701959710913,0.990275987105351,0.8413461538461539,0.7749493973418036,1.1278772390663931,1.0761421319796962,0.7090336134453782,1.1134226692714002,0.8397221636897824,0.999155683521521,0.7660899816777738,0.448200260203344,0.7590342517679366,0.9413755040512224,0.7788120567375887,0.7100619189640529,0.8973624735097085,1.0765237426647951,0.7042731986411587,0.9754576864778702,0.7817450390808818,0.9669810049697685,0.7038632231362567,0.62648357883602,0.7001577697787158,0.9006549672991228,0.8043831168831169,0.7305868197162011,0.8794358537702087,1.121913112268443,0.8427370948379352,1.04593967414794,0.8057344447505657,1.0178711672263057,0.724824560140586,0.7112493306658006,0.7349090193152101,0.9462039035160368,0.9828821656050956,1.1614529354556153,1.2198998423395044,1.2920559992240301,1.193330835518921,1.147138894731639,0.9862320509447043,1.0091036740818624,1.1393534604494717,0.958254059500568,1.1574112956747218,0.9559104078390094,1.1748366013071896,1.3014670305936575,1.1333923859136887,1.266401247470224,1.3066403031800957,1.3146928966897855,1.1803417694704634,1.2389911847414141,1.2872701675404294,1.2978748275572833,1.3086005590541483,1.1921776687483485,1.2067610062893082,1.3090553456842744,0.890911061787842,0.9854483925549921,1.285502880397442,1.1250380502371307,1.2080298074500337,1.0239704954656794,1.310184053918958,1.38914587984602,1.2843049292217674,1.0843254209535353,1.1861213235294117,1.242482079274674,0.843631795793615,0.8795088085995825,1.1767795353435493,0.9819297306757121,1.1987330459839662,0.9506589547829987,1.2546392807665139,1.1699345027366703,1.1672609124376037,1.0514867702564663,5.5,0.1308070605040302,3.38888888888889,2.9166666666666665,2.6033333333333335,1.8961111111111113,1.1102494331065758,0.5556972789115645,0.3219875913328294,0.1406327160493827,6374.155245185898,7113.1352555274425,2900.40555791626,2654.3363575740086,14.953437418035856,0.48504082763114675,7.700409756861186,0.9419015208524597,1.0,0.5238095238095238,1.6707005791325351,3.667666692300733,4.817266445006776,5.298582954522379,5.374054652635587,5.374054652635587,0.16666666666666669,0.009343361464573586,0.0721040189125296,0.05303030303030304,0.044885057471264374,0.033859126984126985,0.02265815169605257,0.014623612602935907,0.012384138128185746,0.007031635802469137,0.4365860727591076,20.877869605142333,8.1648,3.7548105534616147,166.6105534694737,1.0,4.351316547666511,143.40461187666767,,110.03443151435495,107.48800800875115,106.73226515705483,109.99843952051832,157.42841819202448,109.0052017327205,110.21144556908553,138.7911377002985,0.046938259109311736,-0.0462522363592113,-0.3949639477799594,0.3980407872473061,0.30082559339525283,-0.14056043451130515,0.04746478107442541,-0.015410422204101416,-0.03220375379028063,-0.017134562099525935,-0.06517983165459958,0.028531620298157388,0.028175850591715974,-0.02897265487744469,-0.10820392816584247,0.0970958609918001,0.16701680672268907,-0.07183909422855905,0.029830244279596175,0.025736473102956993,-0.01969691847146947,0.11084391413289651,-0.025392999718076664,0.04291818691642201,0.13372885979268959,0.07973352496640047,0.0098247286594496,0.033210929906037356,0.21795101019131058,0.04764482307703976,0.13293498614370464,0.0353084441749503,0.09116088181862338,0.046597552502876644,0.057654938941666366,0.09258886424804787,0.1422952047952048,0.19193772010860938,0.10652137237726632,-0.03671303315973371,0.15617155953290407,-0.03853225300189746,0.14075067624915216,-0.01765293223878934,0.1962128998140274,0.15985450285912875,0.18908211245820178,0.0359109609309961,0.004057447329740323,-0.016204952120922184,-0.08715503757717409,-0.19614924504510337,-0.09503291762564899,0.012628695481640254,0.0045231828435910405,-0.004620406444015873,-0.011900033438393999,0.03364407550418872,-0.01676641683086661,0.009681998122398722,-0.19152212166918048,-0.12313214655216671,-0.033000477322056,-0.24881059022593824,-0.24743230625583568,-0.14568032042944207,-0.19372379658848796,-0.2263025970551716,-0.13062806768929963,-0.12935494954820304,-0.12068843628591916,-0.2316681683060598,-0.15705128205128205,-0.030333114703899464,0.09166289161521005,-0.06412859560067685,-0.19467787114845939,-0.02555827608875418,-0.15626353399203935,-0.055503974310041684,-0.0496141929661055,-0.004317983477623012,0.004319461701005241,-0.13090980586949444,-0.16112839366515838,-0.15769072966171008,-0.02432374409155381,-0.011887876978202438,-0.18339100346020762,0.09276650994565719,-0.16707861006099925,0.01700143970575914,-0.17173821704199513,-0.12539951110304867,-0.12636324045452646,-0.06321103823670648,7.844751958369861,23.954036219094156,17.101859457504176,16.717230066297773,36.848979382217486,42.05185191759245,42.95222650635399,43.0283019780521,43.0283019780521,59.664655618093,44.16748804791393,6.555114817825932,7.143226432874754,1.7988263194783949,15.49716757017908,6896.209694118412,5798.494946121852,1325.8132368237602,274.0,50.0,71.0,103.0,140.0,174.0,211.0,231.0,254.0,401.17508446800065,33.0,5.117993812416755,6.028278520230698,6.963189985870238,7.893945138235959,8.835646922534773,9.773549695421735,10.717944874528614,11.65926572270551,12.604993050379989,0.6666666666666664,1.0008301886792454,1.1366134251257425,0.6306143946665244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6568526946107786,0.9856455789863114,1.0174112602894092,0.6279542530598453,2.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,7.0,1.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,24.627188331288917,11.250837766380558,11.5667326743298,5.428790391900541,0.0,4.794537184071822,9.184952231746642,0.0,0.0,0.0,44.21231601223961,31.370038041734148,18.012722473358593,184.19602369060473,-532.9448278981927,-40.909007885465456,-10.055562790531937,-35.52965519321285,408.660068544008,1182.3994108845623,31.490684071399492,22.309422846878537,31.115773970646377,0.5,0.7024803467231875,0.1701270745504396,6.160008224642655,0.11776048889819717,84.45490978566397,0.29751965327681246,6.0,0.12121212121212122,0.2916766376882131,0.6403138314148293,0.8410148994246347,0.9250447865946211,0.9382208945227754,0.9382208945227754,2.3705000000000007,,1.7619047619047619,2.090104302625157,1.72198869340269,1.7923518247588088,-7.881927179765617,1.8777328349212405,1.7282681802120077,-3.1006114622630965,106.67600000000004,19.028342580387395,0.0,9.883888251797686,5.917906046161393,37.76696814999996,31.64397648986574,33.86721054878994,0.0,5.749511833283905,4.204692619390966,1.9459101490553132,5.58724865840025,3.9318256327243257,7.1770187659099,5.860786223465865,8.866581653303996,7.760893195851024,10.611695744521377,35.33333333333332,2.579787887377173,0.0,0.0,0.0,0.0,0.549879115226338,-0.19663093954038957,1.7949732300327537,53.04400000000001,0.0,24.349999822845483,0.0,0.0,0.0,0.0,0.0,-1.3014407118321263,60.240511531664346,20.3823516805574,10.077801322358383,5.749511833283905,48.42883991874712,0.0,11.735126887207288,42.08311599662082,17.05774782414651,0.0,10.902924932081056,0.0,33.42256291732579,34.81319281437126,38.2390203050662,286.80922375333535,,219.94735235547506,214.83187089318335,213.35303893073583,219.87326857036362,316.9854091733705,217.88090464923954,220.3037002291909,278.22378122037554,38.2390203050662,286.80922375333546,,218.39502381565066,213.02557851547195,211.94100275953676,218.2922166320595,322.7387635638146,216.24117273533844,218.7799820000089,280.68288686286013,5.126190167239048,205.59908052945568,,157.25955398718253,153.5076902907433,151.63539402594807,157.2338983451312,221.88628518173425,155.71334725690247,157.50965650322118,198.20282081291037,1.3185869070712481,9.889973232873633,,7.584391460533623,7.407995548040805,7.357001342439167,7.581836847253918,10.930531350805879,7.513134643077225,7.596679318247962,9.593923490357778,2.582395419343667,143.40461187666767,,110.03443151435495,107.48800800875115,106.73226515705483,109.99843952051832,157.42841819202448,109.0052017327205,110.21144556908553,138.7911377002985,52.239215686274505,0.0,1.4780831128747796,0.0,15.320222505668934,0.0,9.43975694425193,53.922796795338684,6.411207870300756,3.518130832260973,5.669982048374905,0.0,0.8873753901621858,2.008017290249433,0.0,0.0,0.0,33.281575412171804,416.46975322992483,88.54713069402436,194.38633469193883,255.31512158535915,280.8248965896861,284.8248965896861,284.8248965896861,1570.0,141.59480772232428,176.38633900468795,84.94665264262301,83.80000000000001,83.80000000000001,1.0,9.398760805773623,6.044394119358453,4.664713622668813,5.2990867191421795,,5.280520485153495,5.280525018776769,5.279920487436251,5.280390656581698,5.264732683810932,5.280500925442278,5.280576305336207,5.276543179509873,0.1608521938851315,0.18272712824628207,,0.182086913281155,0.18208706961299204,0.18206622370469833,0.18208243643385166,0.18154250633830799,0.18208623880835442,0.18208883811504162,0.18194976481068528,2.6047371809119535,2.732245225559215,,2.728735406585848,2.7287362651416176,2.728621775399528,2.7287108199625805,2.725741108983794,2.7287317024533677,2.7287459774922262,2.7279819194500057,281.8300000000006,259.25895837213835,192.75866669196643,,194.2494799888549,194.1610471435991,194.6466750254183,194.23081192424337,198.59443550688366,194.2320953900193,194.262710815841,196.0417374454276,8.939964081797875,6.6468505755850495,,6.698257930650168,6.695208522193072,6.71195431122132,6.697614204284254,6.8480839829959885,6.697658461724804,6.698714166063483,6.760059911911297,6.622538138460267,6.32614971180749,,6.3338540492165505,6.33339869159565,6.335896729091635,6.333757941048313,6.35597546961522,6.333764548967637,6.333922159444771,6.343038319703274,22.78517778407659,26.358017113094917,13.017738074656851,-0.15536167566199954,-1.0670584673263241,1.6164592265331796,5.404268065958043,2.3960100991272943,1.4780831128747796,346.589848776515,109.20173481036608,-315.9595880443708,-24.25315455217201,-5.961501661214543,-21.063972536291384,242.2766112893296,700.9926941975298,18.66944390036467,13.22627724901,18.44717616309289,2006.0,55.0,2.194705626299431,1.0583572976691114,0.0,0.0,0.7601589791669421,0.23657500847236493,0.0,0.0,0.28867513459481287,0.28867513459481287,0.16666666666666666,0.12909944487358058,0.31030121992763315,0.21362092093677626,0.6128873693012116,0.35943074022650157,1.0881238753622728,0.5096545636728846,20.283728092517162,16.280848945154656,13.990402300641941,10.16210538206738,13.14371983006354,8.31981570487116,11.261957527670706,6.19977295359313,10.209406482663994,4.878964365659388,8.562452616591433,3.5907822997071683,6.579591742568763,2.3290756659797167,5.135994665745808,1.5430677710595402,5.641245155783618,2.367596759187945,9.970814626927854,3.553919377548167,16.943560873653354,5.050589526867347,94.00152560154432,41.59420395748613,28.191611170163117,24.687476350729764,24.275714772682484,24.275714772682484,166.0,207.0,58.138031999999974,32.651968,0.41509433962264153,277.08,9.194444444444443,6.222222222222221,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,10.0,11.0,53.0,0.0,1.0,57.0,11.0,2.0,6.0,51.0,13.0,33.0,44.0,0.0,0.0,0.0,21.0,0.0,1.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,6.0,2.0,3.0,29.0,8.0,0.0,3.0,4.0,0.0,5.0,4.0,0.0,0.0,1.0,1.0,2.0,3.7256934272366524,8.145413674165896,4.375757021660286,5.032070574816321,5.702948793907623,6.339697709261014,6.834209648684591,7.2942286809087005,7.631556687071646,8.007074349071404 +4723,NC1=NC(=O)C(c2ccccc2)O1,0,26.571428571428573,6.586657142857144,3.5238095238095237,9.904761904761905,162.56538658233296,105.27779528571425,1.5411148208948566,6.637757142857143,5.921957671957672,8.034240952380955,237.13009388397563,27.636363636363637,6.626500000000001,4.136363636363637,9.181818181818182,149.06260726113638,106.19090027272723,1.8176559299999995,6.755818181818182,3.876262626262626,8.000065454545457,278.2594050746648,25.485714285714284,6.6821399999999995,3.857142857142857,8.457142857142857,152.49320541402858,96.76479117142858,1.6273863208814003,6.775940000000002,4.250793650793652,8.081965600000002,243.97093665407442,19.73170731707317,6.475536585365854,3.048780487804878,6.073170731707317,158.27169443830113,72.19170429268291,1.3685146616438044,6.548185365853659,3.8929539295392956,7.9759008780487815,198.3121654272736,18.18918918918919,6.316594594594593,2.810810810810811,5.108108108108108,159.74594553898905,66.29363591891891,1.2667273067863243,6.3872459459459465,3.981981981981982,7.841016540540541,180.528020045479,16.75,6.513999999999999,2.46875,4.3125,166.74751791478732,59.693430937500004,1.1245095132841876,6.547984375,4.166666666666667,8.076332500000001,163.53719584710785,15.25,6.5740500000000015,2.2,3.15,168.70027504616002,51.58826104999999,1.1208428116424505,6.604825,4.241666666666666,8.097867799999998,155.87115988623856,7.5,5.892642857142858,1.5714285714285714,0.6428571428571429,174.78923862903903,20.808709499999996,0.8513112896711428,5.913857142857144,2.833333333333333,7.538603714285715,97.2814711454077,3.2857142857142856,5.3020000000000005,1.2857142857142858,0.0,177.65097627558515,6.0567839999999995,0.6770017913422858,5.324,1.7142857142857142,7.0554239999999995,62.96776933791174,7.378684807256238,0.15922494331065756,0.03488173074867099,0.585034013605442,4.235827664399094,1.5963021458523705,34.89768048979592,0.2166049530891066,0.14496780045351473,1.9536407155454767,0.10170282086167798,45.853961731535406,0.032570603999174726,-0.01982970521541956,-0.02426704456342009,0.140074211502783,0.7814883529169246,-0.0015747883552117224,0.24195727643783946,0.003401828302858976,-0.015386415172129532,-0.33495384685860863,-0.013260431251288384,2.479868748233415,0.24308390022675672,0.048025532879818505,0.009096319258396126,-0.012244897959183617,0.31655328798185933,0.22354076463202963,0.8905958653061166,-0.01898454196518128,0.039018866213151905,0.2413706223230033,0.029311464852607712,-5.157289826066306,-0.7178253415187215,-0.0032481721143742125,-0.008354840716425272,-0.11697361871577899,-0.22072894198329737,-0.11345130887865516,-3.4596588730711795,-0.018966740068409687,-0.00402993750345668,-0.06649398693533423,0.0011188748409933153,-4.97500939091014,0.3214438928724645,0.009594361708647456,0.006823384203723341,-0.1345835631549917,0.030581602010173417,-0.3367918821089765,1.3976522592388319,-0.038906656295647116,0.010088312802598533,0.3948148829101209,0.002810424955567798,-4.516319524193454,-0.7477324263038547,-0.053247562358276684,-2.8862604956824282e-05,-0.05676020408163268,-1.328089569160998,-0.16827562441986904,-3.2343015880102026,0.019302246723604657,-0.04608416950113381,-0.5076668398841018,-0.03553804705215416,2.8931994805493124,-3.8905895691609977,-0.07907875283446715,-0.0024020004720889223,-0.08979591836734696,-2.3715419501133788,-0.309752212147736,-18.265246296938773,-0.0455224781819709,-0.07476399092970522,-0.7709026203073823,-0.04378698276643987,-15.737292766068213,-1.1575963718820848,-0.026534467120181208,-0.0021299667531245,0.10204081632653055,-0.3208616780045351,0.005684094788750427,-5.4251861632652965,-0.0073432526641407665,-0.024418140589569034,-0.4077223481985387,-0.013441895691610023,-3.2226482814222948,3.7029478458049914,0.0419845804988666,-0.00027603254271314743,0.3061224489795918,2.6077097505668934,0.3432127153193827,17.571677877551036,0.06562352330645778,0.04458934240362833,0.275573192239859,0.02120765532879806,20.93596325807177,,,0.4589743589743589,1.3461538461538463,0.6923076923076923,0.0,0.6538461538461539,0.038461538461538464,0.4972173805597712,0.011027431887999893,0.024258201118769123,0.8007531832226629,0.2910709191964593,0.19130269217500967,1.2979705637824341,0.48237361137146895,2.017799585259184,1.4394324335123225,0.28759684191555335,0.29077030983130747,0.0,0.5783671517468608,8.38374178552381,558.0,138.31980000000001,74.0,208.0,3413.873118228992,2210.833700999999,32.36341123879199,139.3929,124.3611111111111,168.71906000000004,4979.7319715634885,608.0,145.78300000000002,91.0,202.0,3279.3773597450004,2336.199805999999,39.98843045999999,148.62800000000001,85.27777777777777,176.00144000000003,6121.706911642626,892.0,233.8749,135.0,296.0,5337.262189491,3386.7676910000005,56.95852123084901,237.15790000000007,148.7777777777778,282.8687960000001,8538.982782892605,809.0,265.497,125.0,249.0,6489.139471970346,2959.8598759999995,56.10910112739598,268.4756,159.61111111111111,327.01193600000005,8130.798782518218,673.0,233.71399999999994,104.0,189.0,5910.599984942594,2452.8645289999995,46.868910351093994,236.3281,147.33333333333334,290.117612,6679.536741682723,536.0,208.44799999999998,79.0,138.0,5335.920573273194,1910.1897900000001,35.984304425094,209.5355,133.33333333333334,258.44264000000004,5233.190267107451,305.0,131.48100000000002,44.0,63.0,3374.0055009232,1031.7652209999999,22.41685623284901,132.0965,84.83333333333333,161.95735599999995,3117.4231977247714,105.0,82.49700000000001,22.0,9.0,2447.0493408065463,291.32193299999994,11.918358055395998,82.79400000000001,39.666666666666664,105.54045200000002,1361.9405960357078,23.0,37.114000000000004,9.0,0.0,1243.556833929096,42.397487999999996,4.7390125393960005,37.268,12.0,49.387967999999994,440.77438536538216,154.952380952381,3.3437238095238087,0.7325163457220909,12.285714285714283,88.95238095238098,33.52234506289978,732.8512902857142,4.548704014871238,3.044323809523809,41.02645502645501,2.1357592380952375,962.9331963622435,0.7165532879818439,-0.43625351473923035,-0.533874980395242,3.0816326530612264,17.19274376417234,-0.03464534381465789,5.323060081632468,0.07484022266289747,-0.3385011337868497,-7.36898463088939,-0.29172948752834443,54.557112461135134,8.507936507936485,1.6808936507936476,0.3183711740438644,-0.4285714285714266,11.079365079365077,7.823926762121037,31.17085528571408,-0.6644589687813448,1.3656603174603166,8.447971781305116,1.02590126984127,-180.5051439123207,-29.43083900226758,-0.1331750566893427,-0.34254846937343614,-4.795918367346939,-9.049886621315192,-4.651503664024862,-141.84601379591837,-0.7776363428047972,-0.16522743764172387,-2.7262534643487033,0.04587386848072593,-203.97538502731572,11.893424036281186,0.3549913832199559,0.25246521553776363,-4.979591836734693,1.1315192743764164,-12.461299638032129,51.71313359183678,-1.4395462829389434,0.3732675736961457,14.608150667674474,0.10398572335600852,-167.1038223951578,-23.92743764172335,-1.703921995464854,-0.000923603358618377,-1.8163265306122458,-42.498866213151935,-5.384819981435809,-103.49765081632648,0.617671895155349,-1.474693424036282,-16.245338876291257,-1.137217505668933,92.582383377578,-77.81179138321995,-1.581575056689343,-0.04804000944177844,-1.7959183673469392,-47.430839002267575,-6.195044242954721,-365.30492593877545,-0.9104495636394181,-1.4952798185941043,-15.418052406147646,-0.8757396553287974,-314.7458553213643,-16.206349206349188,-0.3714825396825369,-0.029819534543742997,1.4285714285714277,-4.492063492063491,0.07957732704250597,-75.95260628571415,-0.10280553729797073,-0.34185396825396647,-5.708112874779542,-0.18818653968254032,-45.11707593991213,25.92063492063494,0.2938920634920662,-0.0019322277989920322,2.1428571428571423,18.253968253968253,2.402489007235679,123.00174514285726,0.45936466314520447,0.3121253968253983,1.929012345679013,0.14845358730158642,146.55174280650238,0.7122421957741799,0.5234740046734666,0.4479183534163641,0.27627665376190963,0.29556867512539375,0.14193964711928214,0.18478828999308572,0.07439991819193316,0.12329040384115157,0.03881258538686542,0.08427217461695191,0.021778700409335237,0.05180547575573428,0.011383892222127878,0.03632293570706087,0.00608477656821711,8.0222990631441,5.694045660409477,3.544646320474203,2.193878488304622,0.47190166378829934,-0.47598750473015894,3.167215757382365,0.9780136239283166,6.022192027560919,2.734223664818855,14.553296430938937,10.954387282171062,16.010312201502227,11.705142412783577,1.981636104442776,0.7516501456980601,3.4901144895697973,2.243839067944668,7.008268789751259,1.2726018387883955,3.702903596213288,2.4398418088671274,20.89037033880961,14.702488202371095,0.3576204068633184,0.6711829209217092,0.7398316130421796,0.8560993527816977,0.9037184004007455,0.9037184004007455,1.9103178277560637,359.1372680200689,0.0,1.0,0.0,0.0,5.0,1.0,1.0,0.0,0.0,2.6918726196657534,1.2009181404225542,0.874501332219062,0.32166130962683237,0.0952380952380949,0.0952380952380949,18.163643246252178,539.8434353448903,53.781042901150514,25.706830254518586,52.101222987455415,,7.0,150.0,6.103966387748303,4.794537184071822,11.928859856695684,0.0,5.563451491696996,0.0,12.13273413692322,18.19910120538483,4.992404732635669,10.470530430962235,5.966666666666666,17.5,9.0,0.0,8.5,0.0,0.04102564102564109,0.5,0.21818961818961813,0.07971781305114634,-0.1384718051384718,0.07726495726495719,0.19213411078717202,0.0,0.658730158730159,0.8794871794871795,0.4405405405405409,0.5790123456790127,0.8022222222222223,6.463825947277026,0.14335661454399862,0.3153566145439986,10.409791381894618,3.7839219495539704,2.486934998275126,16.873617329171644,6.270856947829096,0.521865889212828,0.12290502793296092,0.0,0.335195530726257,0.1111111111111111,0.4744222208613148,-0.721311260571742,-0.09225238918107619,-0.03434815526532105,-0.08014569561908243,0.5255777791386853,0.799088140750986,0.059214980941117774,0.03805181622623743,0.0665906783959155,-1.5406770218153991,0.6952282505447839,0.8195136407266594,1.726181092794884,0.8509513742071884,0.49055869184348827,1.1306249407540583,0.6971577694976875,0.9641961441851109,0.782798104996482,0.7650889863296366,0.8390901528080535,0.8163846693899287,0.7652120467117393,0.5835751984528228,0.7770740814383603,1.0930232558139537,0.7805139186295501,0.9072782119167577,0.7732049455477993,1.065283327501492,0.595863026897833,0.5379803972143412,0.6379483116341989,0.9986613669595295,1.0215569580403854,0.9968001486099322,1.1125712312683493,1.1514463981849123,1.0145192458348562,1.0114872814170657,1.0226248658808337,1.0564578673781113,0.9979227539777383,0.9586318941600562,0.9965556458168335,1.0488469963789728,0.9226897456768383,0.8605472809197768,0.7840586891423394,1.209930861093652,0.9388564153018112,1.1134831886873122,0.927130680045935,1.1525584275637637,0.8582210258084797,0.6719461271950312,0.8966239915135885,1.0826397267005659,1.1737476951444374,1.5582738876815412,0.991869912179333,1.0174418604651165,1.468482334047109,0.9791653234208241,1.1592158481003636,0.8310257469790554,1.53497756558654,1.7584774793654894,1.6033244473070623,0.8779234662955241,1.5262753534111857,1.6003564602909213,1.0992233928691657,0.9360465116279072,1.5401498929336184,1.1855322538212427,1.5183192903517908,1.0528944047106947,1.6103904534277682,1.7512412948155798,1.5043212468393081,1.2134671270158894,1.3045482483097723,1.011618070528723,0.8544739284804548,0.5813953488372094,1.0519271948608135,0.8667795488419235,1.3069949843997117,0.9324959455055272,1.0574715160767578,1.1568222852721182,0.8475875112015477,1.138850211150585,0.7928703134603563,0.4002808388708339,0.6068598590210764,0.23255813953488377,0.4336188436830834,0.5032583224451206,0.8013826551743893,0.6910969640560641,0.44607606975041736,0.3830281145215374,0.2741320227284402,0.817028038928076,2.5,0.0,1.333333333333334,1.1319444444444444,0.4411111111111111,0.25722222222222224,0.10122448979591836,0.027777777777777776,0.0,0.0,2204.081588364972,2396.8285694211863,1246.8723762361678,1159.7700411156532,9.3054959685532,0.4327171474300967,5.278848297618595,0.7627890486550098,1.0,0.1111111111111111,1.7004448031130073,3.1913992823562065,3.5178160905596987,4.070656113151928,4.297079327540666,4.297079327540666,0.17857142857142855,0.0,0.07017543859649125,0.07074652777777778,0.03393162393162393,0.025722222222222223,0.020244897959183675,0.027777777777777776,0.0,0.0,0.4271699168365051,9.551020408163266,4.022160664819944,2.0833333333333335,75.03067882158105,1.0,3.50068306693207,37.883060464567066,,29.03938111154889,28.586966644342812,29.19954302062432,29.04624707908684,39.927973221647505,28.891716695199698,29.062216858137187,36.00519012470207,0.004414147622506469,-0.12453893719861842,-0.6956949681845895,0.2394291754756873,0.18449484134708977,-0.000986522732744207,0.006933334050914582,0.015705219360609625,-0.10613677743605782,-0.17145109855323937,-0.13038410477643855,0.05408188637554344,0.0329440688383527,0.30162066244933605,0.2607760298345488,-0.020930232558139444,0.07473233404710918,0.14003662477861703,0.02552020228297198,-0.08764592727190061,0.2691553992754665,0.12354913592984271,0.28820699961187,-0.11247206634534816,-0.09728364339574556,-0.020399894933778254,-0.2395190988836927,-0.1999432785025525,-0.05210999112132447,-0.07107132517075962,-0.09913721555456341,-0.08756374126221933,-0.0277988456115737,-0.03403593424636854,0.011001414036637718,-0.10849682782128395,0.04356384657552453,0.060256650177781965,0.19561484069947746,-0.23004399748585797,0.00721974651310839,-0.2109825404821098,0.04005000445939396,-0.17962034450635003,0.06959002461952539,0.20209185843052238,0.027633697194988788,-0.09849355112728286,-0.10133681622618311,-0.33441721661905355,-0.0008274418825368623,-0.09702034883720936,-0.3135372055674518,-0.10541589814753749,-0.09267955756990534,0.08911267470261462,-0.3178924516821315,-0.2598568077766315,-0.34943029850163215,0.06309595444529618,-0.5272741241548862,-0.49664802002899566,-0.06886127553118732,-0.15348837209302332,-0.5598768736616702,-0.19404359817003125,-0.5233942783755939,-0.21016360675392284,-0.5157282561769915,-0.39459794944544774,-0.4305385277955351,-0.3432046473586407,-0.15688383527965558,-0.16664767823726492,-0.061062530654550515,0.1744186046511627,-0.07574946466809418,0.0035607887914698728,-0.1554597923736399,-0.0339015916275927,-0.16843837399187786,-0.2086987361361879,-0.13216836640049365,-0.07028069461675249,0.501843884449908,0.2636809260277275,-0.007913384364497577,0.5232558139534884,0.615631691648822,0.21500485745204514,0.5035199368820227,0.3029640937133219,0.30758100946648714,0.14105622904307463,0.20852573359436866,0.45657915843012886,6.083643418932058,6.718551056327246,3.5327755290014426,16.52127615367312,29.554981553397873,33.47557383673002,36.52417120742225,36.752405807526095,36.752405807526095,26.23139460836939,18.71262163566019,3.7387589449021936,3.780014027806997,0.0,7.518772972709191,1100.064337798692,1039.8924597956113,246.48632816118766,8.0,19.0,24.0,31.0,32.0,25.0,24.0,20.0,14.0,176.058577496,14.0,4.204692619390966,5.030437921392435,5.8944028342648505,6.741700694652055,7.610357618312838,8.465689348549121,9.334414687078109,10.193579219581707,11.061641523912554,0.73015873015873,1.014095238095238,1.1267336783296393,0.6984668815490563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6891458226404333,0.9992530345471524,1.0256650365900182,0.6720398360036057,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,10.470530430962235,0.0,0.0,6.103966387748303,11.928859856695684,4.794537184071822,0.0,4.992404732635669,0.0,30.33183534230805,0.0,5.563451491696996,0.0,168.45160639428613,-256.11372151372444,-32.75576578822577,-12.195891500653545,-28.4570801681916,186.6152496405383,283.72971383116584,21.025277112924737,13.51093875386504,23.64414281926382,0.42857142857142855,0.7393718905952144,0.29374480663281327,62.07743692329098,0.19440773746580714,31.107766177908193,0.26062810940478603,4.0,0.07142857142857142,0.38714069122017963,0.7265866683053148,0.8009020642078695,0.9267672896410715,0.9783171191717188,0.9783171191717188,0.5992000000000001,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,46.89740000000001,9.53140013787187,0.0,0.0,10.726072209797854,6.103966387748303,0.0,35.89528683400505,0.0,0.0,3.367295829986474,0.0,4.653960350157523,2.3978952727983707,6.133398042996649,4.727387818712341,7.696667081526462,6.78332520060396,9.304650051446924,15.33333333333333,9.140359977324263,0.0,0.0,0.0,0.0,0.0,0.7747222222222223,0.0,21.295999999999996,0.0,11.192642668178383,0.0,0.0,0.0,0.0,3.4800377928949358,-0.40041383219954607,23.661407244922426,5.733667477162185,0.0,0.0,11.928859856695684,9.53140013787187,0.0,11.6674178794453,35.32424007494372,0.0,0.0,0.0,14.667804512530184,14.472062275449101,16.730549104143854,75.76612092913413,,57.9578831022153,57.028892661554906,58.27650641929625,57.971950848145454,81.3333089810067,57.65423180862351,58.004815933707704,72.67344403983626,16.730549104143854,75.76612092913416,,57.321718516646555,56.363757733453696,57.602318498573894,57.3360417074127,83.05689860833698,57.003684328058725,57.370758948848646,73.44701846200704,4.6313620240275375,56.156392941579796,,44.52971914718903,43.91692753996061,45.03572566031042,44.53990226841965,60.753081914788964,44.341893975197536,44.55950306599743,55.086817362137346,1.2869653157033734,5.828163148394934,,4.458298700170408,4.386837897042685,4.482808186099711,4.459380834472727,6.256408383154361,4.434940908355655,4.4619089179775155,5.59026492614125,2.3766979890732807,37.883060464567066,,29.039381111547208,28.58696664434011,29.199543020622883,29.04624707908517,39.927973221647505,28.891716695197733,29.062216858135546,36.00519012470207,20.9843137254902,0.0,0.0,0.0,0.0,5.259827097505669,0.0,21.538965768390383,0.0,0.0,5.0378240740740745,0.0,-0.6516666666666675,0.0,0.0,0.0,0.0,14.11283655607572,262.5264526341669,35.70934086537315,67.01938492948034,73.87413790175367,85.4837783761905,90.23866587835398,90.23866587835398,224.0,95.53691646713465,92.54040340065762,58.0645796482287,64.67999999999999,64.67999999999999,0.75,6.946314715848133,4.807354922057604,3.313914709245439,3.557817388406364,,3.567144871481207,3.5679080934477554,3.5686577326615483,3.5671390231236173,3.550624910259161,3.5674944815593874,3.567095398466283,3.554140265959442,0.254916516095803,0.27367826064664336,,0.2743957593447082,0.2744544687267504,0.2745121332816576,0.2743953094710475,0.27312499309685856,0.2744226524276452,0.27439195372817565,0.2733954050738032,1.4604944466426157,1.5315115281686962,,1.534129784396069,1.5343437202906478,1.534553804309997,1.5341281448881168,1.5294878835220853,1.5342277879702262,1.534115915220641,1.5304774604890816,126.14999999999998,58.92662148288923,54.414527623852806,,53.69342766924158,53.652003087996476,53.595624276275224,53.69368975820737,54.454788961887004,53.67421166393224,53.69609236166712,54.19733951929367,4.532817037145326,4.185732894142523,,4.130263666864737,4.127077160615114,4.122740328944248,4.130283827554413,4.188829920145154,4.128785512610173,4.130468643205163,4.169026116868744,4.338657230652093,4.258995434586433,,4.245654868720033,4.24488306906337,4.24383169257514,4.245659749919419,4.259735061528757,4.245296920913154,4.245704495395436,4.254996085348421,5.0378240740740745,14.67268046107332,0.0,6.034549319727891,-0.34379629629629593,9.083742441421013,-0.6516666666666675,0.0,0.0,154.99908842668566,59.8115822764349,-90.93749388525671,-11.630486775438387,-4.330356851678891,-10.104165987250742,66.26088997801985,100.74301745369249,7.465379041747136,4.797286545413928,8.395251454474373,239.0,16.0,0.8271268251449497,0.26055986530276254,0.0,0.0,0.1642664266089148,0.030400142105758032,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.026352313834736494,0.35006771790139657,0.07122397443140045,0.3448291412067663,0.05293073522179905,9.259148545064338,6.805162060755066,6.270856947829097,3.8678731526667347,5.615804827382481,2.6968532952663606,4.434918959834057,1.785598036606396,3.8220025190756988,1.203190146992828,2.696709587742461,0.6969184130987276,1.295136893893357,0.28459730555319696,0.8717504569694609,0.14603463763721064,1.7252692806487255,0.47742262957620224,2.931927727325651,0.620730875891416,3.8831352534317847,0.6436843217592754,42.22524177114667,29.403088586901973,24.34340171455655,20.046051417685028,19.470373225771596,19.470373225771596,66.0,76.0,24.16834399999999,11.199656,0.5238095238095238,40.04,4.194444444444445,2.888888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,21.0,0.0,2.0,22.0,6.0,2.0,5.0,17.0,8.0,14.0,14.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,3.0,1.0,1.0,13.0,4.0,0.0,2.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,2.995732273553991,4.887525596934148,3.5115454388310208,3.965563772356176,4.4557997293338225,4.805556750179685,4.681552355906898,4.974144185513841,5.140932295044114,5.104049738735681 +82148,COc1ccc2cccc(CCNC(C)=O)c2c1,0,20.97142857142857,5.998711428571429,3.0,6.628571428571429,160.79023029077808,82.55334154285714,1.482523639498086,6.077894285714286,3.853968253968254,7.549334171428572,215.92208310617588,23.194444444444443,6.218166666666666,3.5555555555555554,6.25,144.72415324382501,87.23606330555555,1.8135222572222223,6.369527777777778,3.0709876543209877,7.649202333333331,261.1721647169754,18.885245901639344,6.113491803278689,3.3114754098360657,4.573770491803279,153.2190230887171,69.52942683606555,1.537753949619541,6.223854098360655,2.928506375227687,7.623085704918034,215.31268374291088,16.324324324324323,6.056824324324324,3.027027027027027,3.472972972972973,155.27694396575325,58.13356682432433,1.4539485209410945,6.158358108108108,2.7665165165165164,7.598945459459458,198.06867644560506,14.128205128205128,5.834615384615385,2.6666666666666665,2.769230769230769,153.30997160055819,48.877532628205124,1.3764205467498716,5.946205128205128,2.460826210826211,7.39827317948718,178.61242503806886,11.975903614457831,5.719867469879517,2.3373493975903616,2.397590361445783,160.14435241565576,40.990294722891555,1.168717990042494,5.804885542168674,2.2935073627844718,7.334058891566265,147.8708755115091,12.442857142857143,5.8389,2.342857142857143,2.4714285714285715,162.8442335073533,43.038886799999986,1.1282434845118428,5.9089214285714275,2.4384920634920637,7.457407542857144,146.26050592571528,13.446428571428571,6.009607142857143,2.2142857142857144,2.6964285714285716,159.35140772279715,45.78268080357144,1.2113427387078743,6.086314285714287,2.9409722222222228,7.5905289285714295,157.877819015212,10.290909090909091,5.745254545454547,1.8,2.0,164.95740019276695,34.07670525454546,0.995398192366018,5.804218181818182,2.6727272727272733,7.402127781818182,123.42793425307796,7.1755102040816325,0.10491477551020406,0.017349051072983634,0.5306122448979592,3.689795918367346,1.4189166272439122,34.22859898285715,0.23518688451901548,0.10056783673469383,1.1706122448979588,0.06426352979591833,51.72228981343114,0.2602040816326526,-0.000307870748299341,-0.007920192318622763,0.21938775510204084,1.1887755102040816,-0.07309412148948749,1.222487565555548,-0.006470256045819352,0.0010047823129250971,-0.04724363819601918,-0.0014067647165532842,0.3361443311409663,0.3486115757778519,0.0020423205085312673,0.0010124100654948893,0.01037136165941787,-0.15958514553362316,0.1905699031661008,1.7161813698360615,0.02643723900186557,0.001744200736032075,0.09783688338723463,0.001043938119772502,4.643781777905582,-1.0998345284059574,-0.02457184114726971,-0.0014223162827397638,-0.04605626034197461,-0.9318808604522888,0.23669172359732688,-5.0793610913513545,0.018720682342900738,-0.024175867622724785,-0.22443034871606307,-0.012749156050744614,-0.12903597935999392,-1.3615907901622188,-0.006785324960753525,-0.00015612686125986936,-0.06174777603349033,-0.489795918367347,-0.3279638058105934,-6.57575488871795,-0.05318673491538433,-0.008311609628466752,-0.12362404790976217,-0.002750652140240712,-12.02907289541767,0.17457585443816104,0.00509489746742071,0.000956339022892568,-0.04007868207523975,0.11089254979100067,-0.22854153158440205,0.7471305551807242,-0.02552111870377283,0.005659151217113376,-0.006498647651831749,0.0017043545414310247,-2.9831864509787214,0.45102040816326533,-0.0018337551020408155,-0.0012434351060452186,-0.10408163265306122,-0.19795918367346932,-0.06922431016989299,2.1647698114285725,0.002043419707862021,5.0979591836738845e-05,0.055453514739229035,-0.003040127346938777,2.1990342778428085,-1.4107142857142854,-0.0045347755102040825,0.0021677938133981274,-0.08673469387755103,-0.33418367346938777,-0.19572023739137903,-6.810443465,-0.04722021207148132,-0.006968244897959187,-0.03587585034013608,-0.0010849195918367308,-11.50125558184806,0.3829313543599257,0.0019131205936920262,-0.0034481502862780526,-0.016326530612244903,0.3881261595547309,-0.15180650545344315,1.7726200545454571,-0.016851183585896073,0.003556474953617832,0.009936095650381374,-0.0010936866790352544,-0.6707989841363342,,,0.4759259259259259,1.2638888888888888,0.6666666666666666,0.027777777777777776,0.5972222222222222,0.06944444444444445,0.6795370277004357,0.011750275664770172,0.021305831220325727,0.8143405320368869,0.2644187463965678,0.21906506473716736,1.4938775597373226,0.4834838111337352,2.0152195185100874,1.7070716876117829,0.10847291143238971,0.19967491946591465,0.0,0.3081478308983044,6.946455108114286,734.0,209.9549,105.0,232.0,5627.658060177233,2889.366954,51.88832738243301,212.7263,134.88888888888889,264.226696,7557.272908716156,835.0,223.85399999999998,128.0,225.0,5210.0695167777,3140.4982789999995,65.28680126,229.303,110.55555555555556,275.37128399999995,9402.197929811113,1152.0,372.923,202.0,279.0,9346.360408411743,4241.295036999999,93.80299092679199,379.65509999999995,178.6388888888889,465.0082280000001,13134.073708317563,1208.0,448.2049999999999,224.0,257.0,11490.493853465741,4301.8839450000005,107.59219054964099,455.7185,204.72222222222223,562.3219639999999,14657.082056974776,1102.0,455.1000000000001,208.0,216.0,11958.17778484354,3812.4475449999995,107.36080264648999,463.80400000000003,191.94444444444446,577.0653080000001,13931.769152969371,994.0,474.74899999999997,194.0,199.0,13291.981250499428,3402.194461999999,97.003593173527,481.80549999999994,190.36111111111114,608.726888,12273.282667455256,871.0,408.72299999999996,164.0,173.0,11399.09634551473,3012.722075999999,78.977043915829,413.62449999999995,170.69444444444446,522.0185280000001,10238.23541480007,753.0,336.538,124.0,151.0,8923.67883247664,2563.8301250000004,67.83519336764097,340.83360000000005,164.69444444444449,425.06962000000004,8841.157864851872,566.0,315.9890000000001,99.0,110.0,9072.657010602183,1874.2187890000002,54.74690058013099,319.232,147.00000000000003,407.117028,6788.536383919288,251.14285714285714,3.672017142857142,0.6072167875544272,18.571428571428573,129.1428571428571,49.66208195353693,1198.0009644000002,8.231540958165542,3.519874285714284,40.97142857142856,2.2492235428571417,1810.2801434700898,9.367346938775492,-0.011083346938776276,-0.28512692347041946,7.89795918367347,42.795918367346935,-2.6313883736215495,44.00955235999973,-0.2329292176494967,0.036172163265303495,-1.7007709750566904,-0.050643529795918234,12.101195921074787,21.265306122448965,0.1245815510204073,0.06175701399518825,0.63265306122449,-9.734693877551013,11.62476409313215,104.68706355999976,1.6126715791137998,0.10639624489795657,5.968049886621313,0.06368022530612262,283.2706884522405,-81.38775510204084,-1.8183162448979586,-0.10525140492274251,-3.408163265306121,-68.95918367346937,17.51518754620219,-375.8727207600002,1.3853304933746546,-1.7890142040816341,-16.607845804988667,-0.9434375477551015,-9.548662472639549,-106.20408163265307,-0.529255346938775,-0.01217789517826981,-4.816326530612246,-38.204081632653065,-25.58117685322629,-512.9088813200001,-4.1485653233999775,-0.6483055510204067,-9.642675736961449,-0.21455086693877554,-938.2676858425783,14.489795918367367,0.4228764897959189,0.07937613890008315,-3.326530612244899,9.204081632653056,-18.96894712150537,62.01183608000011,-2.118252852413145,0.46970955102041023,-0.5393877551020352,0.14146142693877506,-247.60447543123388,31.571428571428573,-0.12836285714285708,-0.0870404574231653,-7.285714285714286,-13.857142857142852,-4.845701711892509,151.53388680000006,0.14303937955034146,0.0035685714285717193,3.8817460317460326,-0.21280891428571438,153.9323994489966,-78.99999999999999,-0.2539474285714286,0.12139645355029513,-4.857142857142858,-18.714285714285715,-10.960333293917225,-381.38483404,-2.644331876002954,-0.3902217142857145,-2.0090476190476205,-0.060755497142856926,-644.0703125834914,21.061224489795915,0.10522163265306145,-0.1896482657452929,-0.8979591836734697,21.3469387755102,-8.349357799939373,97.49410300000014,-0.9268150972242841,0.19560612244898076,0.5464852607709756,-0.06015276734693899,-36.89394412749838,0.719878842100756,0.5941562088021431,0.4580372947582754,0.3160870615622711,0.3010797725923676,0.16948662611259457,0.18857328725676217,0.0950932133283236,0.11970813831087912,0.052171968634795805,0.07670138939067747,0.027869094625239694,0.05383681916903669,0.016327610188025313,0.036859567268814404,0.009438735322541195,8.02216640231456,5.652564057306436,3.5439268344772272,2.152395524888938,0.37905820903482096,-0.5293252667729039,3.2402175194570377,0.9728853133787805,6.022011466292215,0.9955252830212198,14.540277239301755,10.912896858333221,16.010280247207717,11.663665089016252,2.0261521211128914,0.7517852287369434,3.4891515522748864,2.202358997202708,7.008270284202958,1.3566336589199415,3.702078330934677,2.3983646360233712,20.93507733256227,14.702493374894514,0.2619317949796152,0.6002511973635043,0.7974591774832432,0.8796383954245154,0.8796383954245154,0.8796383954245154,1.8391858566741381,563.4221987756571,0.0,1.0,2.0,0.0,7.0,1.0,3.0,0.0,0.0,3.716863635296673,1.8925380273579298,0.8291300002472539,0.3859935715521994,0.3859935715521994,0.3859935715521994,180.52749942000852,688.4828976110463,43.4490266097975,19.67093993174418,37.97628445040894,,10.0,285.0,0.0,4.794537184071822,5.907179729351506,6.544756405912575,12.170333456209914,23.259637120317212,7.109797541277533,18.19910120538483,23.51588980939116,4.736862953800049,8.566666666666666,22.75,12.0,0.5,10.75,0.0,0.024074074074074088,1.25,0.1224908424908423,0.05798941798941781,-0.06450142450142449,0.026705653021442455,0.12455045871559611,0.0,0.5609523809523811,0.8074074074074072,0.4384615384615388,0.5029629629629633,0.7807017543859648,12.231666498607842,0.2115049619658631,0.3835049619658631,14.658129576663965,4.7595374351382205,3.9431711652690122,26.889796075271807,8.702708600407233,0.5894495412844039,0.1556420233463035,0.0,0.2918287937743191,0.26666666666666666,0.30839782989269965,-0.4507041143939162,-0.04820565336399245,-0.01287726041125475,-0.03466954726107049,0.6916021701073005,1.010733258724854,0.04402326260984019,0.0288780931064244,0.04594242085112971,-4.495984526581914,0.8461319681456201,0.7518869218890459,1.4389201343006255,0.7373931623931623,0.5411750245821043,1.2024573444993116,0.8520926258974998,1.101484698106957,0.740838485032474,0.5970925452416621,0.7593141320460987,1.0057222416968428,0.8977321471866316,0.9478173722893384,1.1241649670878422,1.2305170239596468,1.0725192223995361,0.9340258313796588,0.8970843740381728,0.8997893721720308,0.938865498123762,0.6004673134620321,0.9590452466991587,0.8902734538077424,1.1086615625864773,1.2424491545387337,1.112630445246711,1.274116424116424,1.2861307103563744,0.8803690483273349,1.1037490595845112,0.9159421887249988,1.2350045649225978,1.2528689777643756,1.2196163634110018,0.9720584961485047,1.0943306788016687,0.7525962015786991,0.6764355328779935,1.0796844181459566,0.9788404810528707,1.2229271869772982,1.1018909064599112,1.2509869374030735,0.7962409226070426,0.8019190537495979,0.7075445212752127,1.2411420039950805,0.9199391422344669,0.704012777549383,0.646028716622161,0.9925857275254863,0.8453326580658921,1.1072606100432536,0.9258878978329145,1.0814616336382827,0.7242831235523313,0.7066749097739167,0.6777746068197117,1.0476474247840055,0.9302616609783846,1.036932989730829,1.229977524064289,1.19,1.0662610619469028,0.9963685540113426,0.9286985879610746,0.9326066776480259,1.0182287354418502,0.6413199287153264,1.0556038233587761,0.9156559236912848,1.1870022753128555,1.18250109320996,1.097101954193849,1.0134615384615384,1.0836559734513278,1.1189975158375196,1.1865074894318195,1.1543997570077627,1.1874206546337693,1.194345168913684,1.185812198505481,1.1683566961888823,0.9538214913641536,1.0287662409407872,1.061231955399157,0.8321678321678321,0.8711987127916334,0.9931404376908096,0.9534035689872192,1.003657690125871,1.013749015239328,1.3635888170407002,1.0705058917740415,0.9717514427085917,3.5,0.0,1.7777777777777786,0.875,0.8666666666666669,0.4375,0.3036734693877551,0.1996527777777778,0.1438649533887629,0.07125000000000001,2992.4143377018995,3422.1825963001424,1677.1693519908717,1503.7025138042445,11.129771517023883,0.45871974484474054,6.024325566554427,0.8474717865205752,1.0,0.26666666666666666,1.4124193816482935,3.2367449895870366,4.300153016697712,4.743289445392767,4.743289445392767,4.743289445392767,0.18421052631578944,0.0,0.07111111111111115,0.035,0.04126984126984127,0.024305555555555556,0.018979591836734692,0.01535790598290598,0.015984994820973653,0.014250000000000002,0.4204695268929118,14.409972299168976,6.9632,3.995837669094693,106.7627077363739,1.0,3.7993537351799143,74.28201693361595,,57.90904682010512,57.099628909969134,57.42230582395452,57.91899590059502,76.7953990582859,57.61028615106953,57.953332450716886,68.7683818871759,0.036262798634812216,-0.002934484173484195,-0.45652020305342694,0.4134615384615385,0.32217920353982304,-0.05151403548738779,0.0357153842658828,-0.02751112613720692,0.00999109004975214,-0.040358059128398543,-0.02189056096079295,0.00649902261391523,0.04858352449691338,0.01946647170142999,0.05835535679939516,0.01954602774274906,-0.04325039895546204,0.1343066248622808,0.05013881434924006,0.1124094953506136,0.017343524457361245,0.0835775328796112,0.016244643316166037,0.08978298901027569,-0.15327614303723525,-0.23420763212594248,-0.08198236760940945,-0.08679833679833676,-0.252556206649127,0.16681157937875057,-0.14839523796738724,0.0795991765492651,-0.240393632871936,-0.19172048617655324,-0.19838866758847676,-0.0024947847403013882,-0.18975525801464369,-0.06467463641566465,-0.0089991585478121,-0.116370808678501,-0.13274336283185847,-0.2311367697816232,-0.19211288466733076,-0.22614668766142035,-0.08264679740893162,-0.10560631707772573,-0.04280269305119026,-0.23257038578160522,0.02432939950930003,0.04856224914597637,0.0551234196538739,-0.07553290083410567,0.03005384369335749,-0.16106762525457086,0.021827669766878652,-0.10851420884275279,0.05627197920188618,-0.005551494681655436,0.026521334057490194,-0.057676998867208965,0.06285551763367464,-0.017478520953061218,-0.07167164940689615,-0.19615384615384612,-0.0536504424778761,-0.04878673548589921,0.06324447613274393,0.008688493459323004,0.000506917454844208,0.047371377653804454,-0.047307195178872184,0.04251618181977256,-0.1966012514220705,-0.043223420992432364,0.12495172238981236,-0.16346153846153846,-0.09056969026548675,-0.13793639008342853,-0.19896939014100176,-0.20077740375723815,-0.06928900058118966,-0.03064708275220831,-0.0168823529501431,-0.22236555309779493,0.05336642879304994,0.018234996780848618,-0.19875152086257883,-0.030769230769230778,0.10518905872888173,-0.1069876147327348,0.051787689453291555,-0.07165018415188713,0.03536394009349235,0.008487947818491761,-0.017018776940956635,-0.012969243754597704,9.765048757225463,15.307588474753132,3.564033859430106,12.630275037581068,28.244472506943275,34.820960780345395,35.26764230047,35.26764230047,35.26764230047,36.27395133318157,30.727290377012093,1.9525124057830148,3.5941485503864636,0.0,5.546660956169479,2808.461245363789,2039.8436188637484,835.9274888062248,36.0,25.0,31.0,39.0,50.0,51.0,52.0,50.0,49.0,243.125928784,19.0,4.48863636973214,5.303304908059076,6.154858094016418,6.9985096422506015,7.861341795599989,8.717845704894916,9.585964638073326,10.449438978277493,11.320395984148833,0.6190476190476191,0.9710857142857144,1.1211277826903876,0.5787694613271168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6687678528656973,0.9587675070028011,0.9963167204245138,0.6226599459160826,6.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10.05365155780638,5.749511833283905,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,24.26546827384644,34.88945568047582,13.4684936056032,7.109797541277533,145.28616514600978,-212.32663154148432,-22.709675090933892,-6.066475186899552,-16.332817810883412,325.8136645660183,476.1562660695619,20.739351518863604,13.604464744844625,21.64346663952553,0.5,0.8736794296628813,0.3399016171542323,50.0711447058243,0.14806168691520724,44.99340094758453,0.12632057033711883,5.0,0.21052631578947367,0.2753639011499778,0.6310326372895022,0.8383536261290006,0.924747070832894,0.924747070832894,0.924747070832894,2.527,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,72.88770000000002,9.53140013787187,0.0,5.316788604006331,0.0,13.344558822616634,13.65455394719011,41.96165390246666,0.0,5.749511833283905,3.6635616461296463,0.0,4.9344739331306915,0.0,6.411818267709897,0.0,7.993957547573565,0.0,9.636849167012697,21.666666666666668,12.256557198496683,0.0,0.0,0.0,0.0,2.3734509637188212,2.0783584236163604,0.0,33.98800000000001,0.0,10.866877449684086,0.0,0.0,0.0,0.0,0.0,0.007238179222306407,39.23947239416356,10.05365155780638,0.0,5.749511833283905,19.561733676541614,11.21535880699783,0.0,12.487188691387619,36.39820241076966,0.0,10.772448428929591,0.0,20.256931146449087,23.406874850299406,22.86417912812282,148.56403386723196,,115.74666506878165,114.11513600617477,114.781109652663,115.76676609711453,155.08122608704957,115.14516940536222,115.83585905770599,138.1574935434404,22.86417912812282,148.5640338672319,,115.17523649735314,113.4421614960667,114.27309369069482,115.19696046451048,156.273568463432,114.54194623114765,115.26941230788378,138.65407735871133,4.796840376113483,109.03195297446541,,87.2097066728141,85.99386040760467,86.0222758851802,87.22328005834271,113.23501284792711,86.73967773676243,87.27844043628244,102.8357961785726,1.2702321737846012,8.253557437068443,,6.4303702815989805,6.33972977812082,6.376728314036834,6.431487005395251,8.615623671502753,6.396953855853457,6.435325503205888,7.675416307968912,2.3984201880567415,74.28201693361595,,57.90904682010512,57.099628909969134,57.42230582395452,57.91899590059502,76.7953990582859,57.61028615106953,57.953332450716886,68.7683818871759,33.55686274509804,0.0,3.2016014125398145,0.0,0.0,0.0,0.0,34.871085214857985,1.4818889361300074,2.81711789808516,5.2502428718400935,0.0,0.0,0.0,0.0,0.0,0.0,21.793098107062892,411.5902305370851,49.434678357690274,113.28607463554629,150.50535558441993,166.01513058874684,166.01513058874684,166.01513058874684,420.0,107.88029611505279,59.509599174942934,50.6406605615565,38.33,38.33,1.0,8.237187310641685,5.247927513443585,3.572640927824146,4.16991900746188,,4.165039140497931,4.166983879644612,4.1648018816111865,4.165011614639891,4.11510326617959,4.165698894580517,4.1649389623561826,4.137887093881653,0.1984800515457859,0.23166216708121556,,0.23139106336099616,0.23149910442470067,0.2313778823117326,0.2313895341466606,0.22861684812108832,0.2314277163655843,0.2313854979086768,0.2298826163267585,1.8610917429023284,2.015683277853195,,2.0145123379552636,2.0149791487591453,2.0144553719492673,2.0145057291460624,2.0024505937781454,2.0146707282638263,2.014488285517066,2.0079719586627087,196.40999999999966,177.15715192085966,87.89179712321064,,88.07289647443864,87.94279015350058,88.15567072385196,88.07495284842919,91.25601395359423,88.03229302029749,88.07922852487744,89.8659663749324,9.842063995603315,4.882877617956146,,4.892938693024369,4.885710564083365,4.89753726243622,4.893052936023844,5.069778552977457,4.890682945572083,4.893290473604302,4.992553687496244,5.764823867517548,5.063893144683561,,5.065951505499771,5.064473156073917,5.066890902066587,5.065974853772243,5.101455561533752,5.065490378204464,5.066023398477975,5.0861059626779905,5.2502428718400935,10.866877449684086,5.190568861803982,1.2223611111111112,0.8632354917275555,12.256557198496683,0.8234996220710507,2.1922470762996555,1.6677436502991156,234.24178022436794,68.44428765979877,-100.02703996252177,-10.69852406815444,-2.857915427500622,-7.694387689424754,153.49076189490302,224.3171358616857,9.770304968874532,6.409061024619591,10.196233448258438,642.0,25.0,1.0817885325170822,0.42766764395794526,0.0,0.0,0.13608276348795434,0.05351904376567389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.048112522432468816,0.27984632222826344,0.08052607022725798,12.957819157813608,10.694811758438577,8.702708600407233,6.005654169683152,7.5269943148091905,4.2371656528148645,5.845771904959627,2.9478896131780314,4.6686173941242854,2.0347067767570364,3.8350694695338734,1.3934547312619847,2.745677777620871,0.832708119589291,1.9166974979783489,0.4908142367721422,2.1180124478299205,0.85268517858144,3.1451818593506173,1.1387611726157398,4.757479169196202,1.4622481954152777,60.55308106402302,35.98684953769165,22.090452455524904,20.352742727456693,20.352742727456693,20.352742727456693,88.0,100.0,39.08948099999998,20.228518999999995,0.2857142857142857,55.03,6.055555555555555,4.138888888888888,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,11.0,35.0,0.0,0.0,36.0,11.0,1.0,6.0,30.0,12.0,19.0,24.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,2.0,1.0,0.0,18.0,3.0,0.0,1.0,2.0,0.0,2.0,4.0,0.0,0.0,0.0,0.0,2.0,3.2771447329921766,6.479082514760098,3.8607297110405954,4.430816798843313,5.038574662785497,5.648093568795613,5.916538933083924,6.248767950068896,6.538411132835579,6.848892288175985 +4543,CNCCC=C1c2ccccc2CCc2ccccc21,0,18.390243902439025,5.605241463414634,3.0,4.7317073170731705,158.62447612266413,72.15979736585366,1.5496578293129026,5.717782926829268,2.198509485094851,7.1843703414634135,218.11936437825568,21.651162790697676,5.979162790697675,3.697674418604651,5.116279069767442,142.40222927730923,80.88417186046507,1.9175897325581404,6.149813953488373,2.593669250645995,7.418215255813949,267.3036581293419,17.28,5.831,3.4133333333333336,3.9466666666666668,149.36928180253122,62.62642913333333,1.6608847783192395,5.97176,2.2944444444444456,7.337708639999998,223.1059422964074,15.049019607843137,5.6526764705882355,3.156862745098039,3.2745098039215685,152.12685958433656,54.15047535294118,1.517490289723813,5.782357843137256,2.088235294117647,7.211241490196076,198.89124370964757,13.842592592592593,5.630083333333331,2.888888888888889,2.5555555555555554,151.61810780667577,48.433157583333326,1.4706118015489074,5.759398148148149,2.0817901234567904,7.1946301851851855,188.21958109036476,12.464912280701755,5.576052631578947,2.6140350877192984,2.1315789473684212,153.717512397109,42.74964312280701,1.3733753363291843,5.695780701754385,2.024853801169591,7.16254694736842,171.90169439474343,10.672727272727272,5.526999999999999,2.2818181818181817,1.5545454545454545,157.5300638692352,35.38567749999999,1.2284969476888363,5.629822727272727,1.9318181818181819,7.1414928363636365,148.6646117903137,9.39795918367347,5.518857142857143,2.010204081632653,1.1938775510204083,162.31587776938082,30.33567394897959,1.0923393892889695,5.601535714285714,1.903061224489796,7.155108857142859,128.694629063493,7.4935064935064934,5.49664935064935,1.7272727272727273,0.5194805194805194,167.94474373722628,22.492285714285707,0.971459357930143,5.55718181818182,1.8311688311688312,7.163831272727273,109.7643101859565,6.395002974419988,0.03449018441403923,0.0050056146101904835,0.4866151100535397,2.5901249256395005,1.4296967635370479,30.89202136585365,0.24490031175287325,0.04060499702557995,0.2088042831647829,0.012425070791195708,54.971452009851106,0.3009697992612373,0.0006368717402432082,-0.0009048048055909906,0.23828562732592717,0.825643650650914,0.059399084374035016,1.4597780000000071,0.012261013278458533,0.0011269938989803701,0.0072258422527503585,2.620998021667804e-05,2.76401373822585,-0.32540947848502866,-0.006723647828673405,-0.0010926759258561623,0.07143367043426525,0.13702954590521516,0.20713686716106577,-1.4993949733333296,0.012367140959940043,-0.006829257188181648,-0.029057219027474837,-0.002728138108268866,1.0530950797703622,0.4914150074068891,0.0004679934912692014,0.00033795319911298076,0.028210332318531203,0.1363217505919679,0.17831734156174753,2.3984164509803922,0.02612366713731466,0.001166858545916871,0.007572782566658754,-8.813152768543009e-05,5.410944512804411,-0.5546687377442882,-0.002456444576640885,-0.00011608587521543598,-0.10246876859012496,-0.41126313702161404,-0.09087807213335848,-2.678744120370368,-0.019733449751441715,-0.0031700150924273457,-0.014366111931218686,-0.0007099099962544304,-4.596780705461443,-0.6040316436540488,-0.0010007107298287345,-0.00015121211626708392,-0.08759927778995383,-0.3609850026613231,-0.1943805797092455,-2.941733087719296,-0.029929104215057272,-0.0018442567602826169,-0.01917370264845139,-6.927104793512707e-05,-6.313528099661934,-0.5998810232004761,0.0007427202422800284,0.00027375521731241056,-0.10501865772537992,-0.3216105132226489,-0.3055535882501205,-2.9488417000000005,-0.03937200063450321,-0.00012947596127845277,0.0018510506612826666,0.0006307456167865408,-7.751832920944165,-0.30615280020396046,0.00224226954315337,0.00021971942705659706,-0.07073656351297211,-0.2185470261870364,-0.2984772929995152,-1.5371987040816348,-0.031888338548837714,0.001815734681737066,0.011302458718962504,0.0010234657941701343,-5.747996589289004,-0.4821109883572703,-0.007354200885372802,-0.0011184126658936614,-0.04188910435192406,-0.4178094362508401,0.14155229997509716,-2.2619725714285734,0.004073468692819446,-0.00757151587258665,-0.02613261878580142,-0.0029835452923043636,-0.6311549598515108,,,0.495,1.225,0.65,0.0,0.575,0.075,0.7880095975012755,0.0008017707303086929,0.013701770730308694,0.7687316185171942,0.24250284194589639,0.2524060654424497,1.5567412160184697,0.4949089073883461,2.0718545806415256,1.9787622636194242,0.09309231702210188,0.0,0.0,0.09309231702210188,6.418717065170737,754.0,229.8149,123.0,194.0,6503.603521029229,2958.551692,63.53597100182901,234.4291,90.13888888888889,294.55918399999996,8942.893939508484,931.0,257.10400000000004,159.0,220.0,6123.295858924297,3478.019389999998,82.45635850000004,264.442,111.52777777777779,318.9832559999998,11494.057299561702,1296.0,437.32500000000005,256.0,296.0,11202.69613518984,4696.982185,124.56635837394296,447.88199999999995,172.08333333333343,550.3281479999998,16732.945672230555,1535.0,576.573,322.0,334.0,15516.93967760233,5523.348486,154.78400955182892,589.8005000000002,213.0,735.5466319999997,20286.906858384053,1495.0,608.0489999999998,312.0,276.0,16374.755643120983,5230.781018999999,158.826074567282,622.0150000000001,224.83333333333334,777.0200600000001,20327.714757759393,1421.0,635.67,298.0,243.0,17523.796413270426,4873.459315999999,156.56478834152702,649.319,230.83333333333334,816.5303519999999,19596.79316100075,1174.0,607.9699999999999,251.0,171.0,17328.30702561587,3892.4245249999994,135.134664245772,619.2805,212.5,785.564212,16353.107296934508,921.0,540.848,197.0,117.0,15906.956021399319,2972.8960469999997,107.04926015031901,548.9505,186.5,701.2006680000002,12612.073648222315,577.0,423.24199999999996,133.0,40.0,12931.745267766424,1731.9059999999995,74.80237056062101,427.90300000000013,141.0,551.615008,8451.85188431865,262.1951219512195,1.4140975609756083,0.2052301990178098,19.951219512195127,106.19512195121952,58.617567305018966,1266.5728759999997,10.040912781867803,1.664804878048778,8.560975609756099,0.509427902439024,2253.8295324038954,12.941701368233204,0.027385484830457954,-0.038906606640412594,10.246281975014869,35.5026769779893,2.5541606280835056,62.770454000000306,0.527223570973717,0.04846073765615592,0.3107112168682654,0.0011270291493171557,118.85259074371154,-24.40571088637715,-0.5042735871505054,-0.08195069443921217,5.3575252825698945,10.277215942891136,15.535265037079933,-112.45462299999973,0.9275355719955032,-0.5121942891136236,-2.1792914270606127,-0.20461035812016493,78.98213098277716,50.12433075550269,0.04773533610945854,0.03447122630952404,2.8774538964901826,13.904818560380726,18.18836883929825,244.63847800000002,2.6646140480060954,0.11901957168352083,0.7724238217991929,-0.008989415823913868,551.91634030605,-59.904223676383126,-0.2652960142772156,-0.012537274523267087,-11.066627007733496,-44.41641879833432,-9.814831790402716,-289.30436499999973,-2.1312125731557052,-0.34236162998215336,-1.5515400885716182,-0.07667027959547848,-496.45231618983587,-68.85960737656157,-0.11408102320047574,-0.017238181254447565,-9.986317668054737,-41.152290303390835,-22.159386086853985,-335.3575719999997,-3.411917880516529,-0.21024527067221832,-2.1858021019234584,-0.007896899464604486,-719.7422033614604,-65.98691255205237,0.08169922665080312,0.03011307390436516,-11.552052349791792,-35.37715645449138,-33.61089470751326,-324.37258700000007,-4.330920069795353,-0.014242355740629806,0.20361557274109332,0.0693820178465195,-852.7016213038581,-30.002974419988124,0.21974241522903024,0.021532503851546512,-6.932183224271267,-21.417608566329566,-29.25077471395249,-150.6454730000002,-3.125057177786096,0.17794199881023245,1.1076409544583254,0.10029964782867315,-563.3036657503224,-37.12254610350981,-0.5662734681737057,-0.08611777527381194,-3.225461035098153,-32.17132659131469,10.899527098082482,-174.17188800000017,0.31365708934709735,-0.583006722189172,-2.0122116465067093,-0.229732987507436,-48.598931908566335,0.68931231412799,0.6012289773726412,0.44991718853486024,0.3369220061462613,0.28116446303647397,0.18359730742905428,0.17712220902849626,0.10053864880632916,0.11334617025374799,0.05550574003045625,0.07371473332648316,0.031212719463690308,0.04762923382363104,0.018222085485772945,0.03237485605936396,0.010591155413752659,7.0218058963450805,5.672449148544396,3.1071444846188765,2.172446531281608,0.33659910146268757,-0.33933668725582916,3.234278463127774,0.9879351535126841,4.233043563143794,0.9959569850037946,14.540850044772903,10.932752389834448,14.018047003658339,11.683451373622376,2.0145422935565738,1.063199153826403,3.082605609112928,2.2224457118582452,2.532654850360141,1.3506445453533142,3.2401412802760903,2.4184452072049063,20.923989892027556,15.594096105858558,0.20186139295166688,0.5080715115903073,0.671548155079433,0.7645038649702374,0.7904332045022703,0.8077194308569586,1.726953766713544,575.6683055943938,0.0,0.0,1.0,0.0,9.0,3.0,5.0,0.0,0.0,4.21827533253127,2.490069459080927,1.5674307928412294,1.0428021341991096,0.8964606707844753,0.79889969517472,176.8778303592172,535.075627471308,27.61350886014354,13.050625060275802,25.890132356280816,,9.0,314.0,0.0,0.0,0.0,0.0,25.807221274690605,27.82691049685725,0.0,7.04767198267719,59.92374525853309,0.0,9.9,24.5,13.0,0.0,11.5,0.0,0.004999999999999982,1.5,0.06202090592334486,0.05215077605321494,-0.009870129870129918,0.019999999999999907,0.026499999999999746,0.0,0.504878048780488,0.7199999999999998,0.44285714285714317,0.4527272727272731,0.6999999999999998,15.76019195002551,0.01603541460617386,0.27403541460617387,15.374632370343884,4.8500568389179275,5.0481213088489945,31.134824320369393,9.898178147766922,0.6875000000000002,0.050505050505050504,0.0,0.25252525252525254,0.2631578947368421,0.32209099305503947,-0.34669555902719995,-0.021499319507550414,-0.008455989244565853,-0.01733477795136,0.6779090069449606,0.7296945496771318,0.034049665117565485,0.017797428040905644,0.03474735950843485,-5.813986379507158,0.9543753380205516,1.0547280564319907,1.2856830778343453,0.6061295274918973,0.696392517973315,1.044605018227025,0.9541449019299382,0.9711872540202086,1.0157765572046278,0.997555894196721,1.1304354278202073,0.9601507113770885,1.0485829457364342,1.3519859256959534,1.4199272853737404,1.109372453137734,1.0822844893584442,0.9142654768083642,1.0453612623655564,0.9423224887996213,1.2707154821727689,1.1282895431043578,1.4756778399209238,0.968008164624718,0.8959051527587779,0.8165257410011503,0.6911928881980423,1.2874538568483627,1.0856818611689047,0.8646265166265239,0.896336094364586,0.8980772734509498,0.8437425221344818,0.814355498451359,0.7670011062117877,0.9009915584917964,1.0502497846683894,0.8252613060126254,0.6562211432132569,1.4015666032780945,1.2189302301842493,1.038350571600202,1.0519472687591274,1.0860230152475798,0.89552258647736,0.9403614599087851,0.7047251729789922,1.0831495387856087,1.0551937984496125,0.7840596523908342,0.6891244857285308,1.1695191524042379,1.1118229657745649,1.094968532031055,1.0575750672884328,1.1191847869483396,0.8638808075465041,1.0075640192599258,0.6527845551343167,1.1078724881564128,1.060279069767442,0.8729756427986789,0.7865108155967504,1.0571238052900642,1.0272685513843067,1.1673594454807266,1.0624177980580727,1.1352006940861037,0.920981531031782,0.9403723848168289,0.8028585468058461,1.1158392877345973,1.0336592311343142,1.1492438018361644,1.267887733889366,0.8796966219250534,0.976254534886991,1.1816585086858014,1.0336671742481605,1.070029372417333,1.100429260002637,1.0316814285068252,1.2478311395125976,1.050924570556916,1.0797946239806704,1.7605647999935488,2.092635177161471,0.807163496650049,1.0810778564568182,0.9011986139996491,1.0733273889579793,0.8887463215341131,1.567205228368187,1.3551880218546883,2.0698298735909946,0.9285693334286971,2.0,0.0,2.000000000000001,1.25,0.9894444444444445,0.42722222222222217,0.24503401360544208,0.1423611111111111,0.09675768455530359,0.03125,3349.0540108083146,3895.9718383306276,1825.0768489511731,1612.1868930905594,10.112438419843631,0.4137870048545756,5.9280428143201975,0.7058646060071146,1.0,0.2631578947368421,1.139276672086813,2.8674825455371566,3.7901212117768543,4.314749870418974,4.4610913338336085,4.558652309443364,0.09090909090909091,0.0,0.06896551724137935,0.036764705882352935,0.03191756272401433,0.015257936507936505,0.011668286362163908,0.00949074074074074,0.012094710569412949,0.015625,0.2926935509370916,14.917355371900827,7.319857312722949,3.4425,120.89752012423182,1.0,3.9270690708581677,79.07138582136682,,64.0348966327991,63.72063101089391,63.43175698858904,64.03752491451868,69.09926352235325,63.90013085111512,64.0539999540475,67.53756109615234,0.04706327744726883,0.01846530400063531,-0.18075798399440887,0.4896798771820091,0.3187659569922339,0.04154663134795283,0.047254207897627756,0.05006532327664415,0.027755054341474204,0.0346058143215765,0.0021094431297124035,0.0502808937579187,-0.05088496124031006,-0.19494380627134442,-0.21829006244941054,0.14679706601466974,0.052904608788853155,0.14488167871948757,-0.04853664172946218,0.050498673813121224,-0.16818760469011776,-0.13916007175266437,-0.2195672084381201,0.019157126858894747,0.076843593251254,0.013568889213555632,0.06751482593665363,0.05797257778416985,0.05263134192583786,0.12472388978526687,0.07763870232303641,0.10667061609817721,0.02873682136171034,0.03626737177935431,-0.007093040286569577,0.09843190083163071,-0.08673471145564171,-0.07122155530258602,-0.023191133208518917,-0.2105745721271394,-0.15878119736640633,-0.06356457848343135,-0.08671313827755231,-0.0805774790983303,-0.07806958070777174,-0.06880180671332937,-0.057135287853447576,-0.08362123497552296,-0.09445369237046103,-0.02901436297978724,-0.030208501461387916,-0.18001758675417157,-0.13936972656722188,-0.13595930596384012,-0.09522630626466311,-0.1222093348956553,-0.045419453155501756,-0.09182619416537545,-0.005575102878626004,-0.1148510339244909,-0.09380465116279073,0.02153424966836954,0.05468963127027334,-0.21581462547232716,-0.12416795423226291,-0.2137191578262971,-0.0954564178587384,-0.16076745820655855,-0.0031886706258563873,0.008865003309447755,0.05076394552484011,-0.14101561151331796,-0.04787375415282396,0.06501181658630546,0.043894595203012615,-0.14536450276932286,-0.08437702136435649,-0.2087696500487886,-0.04976037941566265,-0.1302094649067493,0.044717025360036515,0.054129439050073974,0.08237102318124037,-0.10456330293511147,-0.07538870431893688,-0.21322590790147458,-0.22343163686968331,-0.08608262153494417,-0.16130860411981218,0.09900861748116359,-0.07322190233653127,0.016633170712048534,-0.18646758840585106,-0.1251536529314307,-0.2401230015058326,-0.01148150424948581,21.47691469873046,23.9339668216134,5.841906810678656,8.504917367402472,22.37731298065423,28.006358472628953,29.608647575174356,30.29289147761338,30.391232941028015,41.437091612830514,39.575245272388486,1.8618463404420376,0.0,0.0,1.8618463404420376,2629.3309043561767,1618.9832893069013,1341.7579307021801,94.0,29.0,40.0,54.0,71.0,79.0,88.0,94.0,96.0,263.1673996720002,22.0,4.634728988229636,5.484796933490655,6.354370040797351,7.232010331664759,8.11701408773731,9.004913941467132,9.895908907012577,10.787812788403233,11.681207257230376,0.5772357723577236,0.9440975609756099,1.1134458424297926,0.5348430605278495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6839879217175405,0.9343854615016739,0.9752544721368555,0.6206623294097791,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.60695665452676,60.681803754225044,0.0,0.0,160.11206236299782,-172.3430402117819,-10.687353760204966,-4.203488785653217,-8.617152010589097,336.989892722215,362.73258725952616,16.926155099938576,8.847136274622585,17.27298034569172,0.4444444444444444,0.9784396748820848,0.2967729571740085,36.114071411514445,0.11322919621879038,104.61524822796078,0.021560325117915186,5.0,0.13636363636363635,0.21264873791328268,0.5352225313100936,0.7074352630660158,0.80535846720662,0.8326734542171971,0.8508834455575817,3.826400000000003,,0.1428571428571429,0.18566775244299671,0.22524958545764784,0.14250017848218755,-0.5181818181818181,0.16118421052631582,0.14026299311208512,-0.3193246282434288,85.91470000000005,0.0,0.0,5.316788604006331,0.0,19.26246486877803,13.592428388589765,76.86076262131475,0.0,0.0,3.8066624897703196,0.0,5.081404364984463,0.0,6.57507584059962,2.70805020110221,8.175547596021026,5.37989735354046,9.832796811913358,23.666666666666668,17.683493795666415,0.0,0.0,0.0,0.0,0.0,5.764742063492064,0.0,38.708000000000006,0.0,0.0,0.0,0.0,0.0,2.38837962962963,0.0,1.4064351851851853,45.6512795396215,5.316788604006331,0.0,0.0,13.592428388589765,12.841643245852019,0.0,28.67462758971399,54.60695665452676,0.0,5.573104530069267,0.0,21.92856548164183,28.043504790419163,26.81545460661802,158.1427716427337,,128.05550755131247,127.42269524654353,126.84098901863233,128.06079981118916,138.45761795379735,127.78414328117762,128.0939736087838,135.23478450642637,26.81545460661802,158.14277164273363,,127.92693612274113,127.2555942693449,126.63826439172045,127.93254965055525,138.71670886288837,127.63907749170406,127.967736914983,135.39444682054813,4.821858326563587,106.51408358905279,,86.42974656841442,85.9449249852428,85.5013109038691,86.4338109445949,94.5439372052418,86.22155990561123,86.45929160813927,91.98403271945251,1.340772730330901,7.907138582136684,,6.402775377565623,6.371134762327176,6.342049450931617,6.403039990559458,6.9228808976898675,6.389207164058881,6.404698680439191,6.761739225321318,2.4472615713621635,79.07138582136682,,64.0348966327991,63.72063101089391,63.43175698858904,64.03752491451868,69.09926352235325,63.90013085111512,64.0539999540475,67.53756109615234,38.30980392156863,0.0,2.007432602670698,0.0,0.0,0.0,0.0,39.98543335761107,4.356591868228772,3.2262581884605694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.44715550580094,486.38427531682436,46.710343555559334,117.56678436702342,155.39496968285104,176.90474468717795,182.90474468717795,186.90474468717792,687.0,115.19276327603305,10.71767976838846,61.55943465793146,12.03,12.03,0.8,8.431168827169234,5.459431618637297,3.9110521322436074,4.393237782387209,,4.391800357327553,4.393614920723101,4.395271068478957,4.391785130574266,4.361926011132448,4.392580010612674,4.3916896654169495,4.371139438733934,0.19555260661218038,0.21966188911936047,,0.21959001786637766,0.21968074603615503,0.21976355342394785,0.21958925652871328,0.2180963005566224,0.2196290005306337,0.21958448327084748,0.2185569719366967,2.056953605889998,2.1732136716524155,,2.1728864277521334,2.1732995131587813,2.1736763863546544,2.1728829606592686,2.166060886052573,2.1730639367520883,2.1728612232126343,2.16817089680943,225.86999999999966,190.11487053715265,106.94353663315485,,106.74992691861591,106.64239766458627,106.54290793276925,106.75082305970004,108.3727715424086,106.70390664838563,106.75643920113342,107.89493197718572,9.505743526857632,5.347176831657743,,5.337496345930796,5.332119883229313,5.327145396638462,5.337541152985002,5.41863857712043,5.335195332419281,5.3378219600566705,5.394746598859286,5.940775651808987,5.3654481807245915,,5.363636148065315,5.362628339904071,5.361694975957987,5.36364454280008,5.378724052980116,5.363204951584331,5.363697151234803,5.374305082093362,0.0,0.0,3.2262581884605694,7.17117724867725,0.0,17.683493795666415,5.7233109725371625,1.0216605253212394,2.007432602670698,270.85234932133267,79.59201923337173,-85.67206223460623,-5.312704448885189,-2.089562493526981,-4.283603111730312,167.5183345161692,180.31507829982803,8.414024792255011,4.397928739020194,8.58643229999181,759.0,34.0,0.7415816237971963,0.42063049617804116,0.0,0.0,0.24719387459906544,0.10059223176554563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.24615119001767477,0.08268648784369709,13.7862462825598,12.024579547452825,9.898178147766926,7.412284135217749,8.153769428057744,5.3243219154425745,7.084888361139851,4.021545952253167,6.120693193702391,2.9973099616446377,5.233746066180305,2.2161030819220118,3.762709472066852,1.4395447533760626,2.848987333224028,0.9320216764102339,2.272302044958091,1.1128659098635765,4.146740312628557,1.756250407375174,6.981249670248886,2.557575899888893,69.91751128066905,47.88994122892754,33.0794103699269,28.100708944211803,26.658000649276147,26.197990502033594,102.0,120.0,46.83265299999998,21.637346999999995,0.36585365853658536,104.01,5.055555555555555,4.61111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,12.0,12.0,41.0,0.0,1.0,43.0,12.0,1.0,7.0,36.0,13.0,22.0,30.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,1.0,1.0,0.0,20.0,1.0,0.0,1.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,2.0,3.4011973816621555,7.163208699250227,3.9512437185814275,4.5591262474866845,5.140200498450899,5.685703361256295,5.885409345767477,6.272759075064222,6.609096515816724,6.919127865277104 +5311,O=C(CCCCCCC(=O)Nc1ccccc1)NO,0,20.871794871794872,6.1512769230769235,2.6153846153846154,6.3076923076923075,165.44379509673027,82.0593608974359,1.3406787204353852,6.20048717948718,5.341880341880342,7.702433948717946,197.09518437040145,22.307692307692307,6.339179487179487,3.2051282051282053,5.435897435897436,149.42215932879617,83.04511217948716,1.6989627142564099,6.464207692307693,3.301282051282051,7.771952102564101,243.84964774247004,16.940298507462686,6.0699104477611945,2.746268656716418,3.582089552238806,153.98071201448118,60.557888388059716,1.4107936893297608,6.1736970149253745,2.961857379767828,7.581584955223882,190.41198055524242,12.445652173913043,5.944826086956522,2.1956521739130435,2.369565217391304,164.42802972331438,42.555517,1.1057095563828805,6.003729347826089,2.9791666666666665,7.555376521739131,143.22598093409172,11.55813953488372,5.910337209302326,2.116279069767442,1.930232558139535,166.07573173143402,38.96680056976742,1.0513752852101625,5.963750000000001,2.7054263565891477,7.541006093023256,135.28487301884886,12.012987012987013,5.976623376623375,2.103896103896104,1.948051948051948,165.63944090928024,40.68080649350648,1.0668823552555584,6.028707792207792,2.882034632034632,7.605243324675325,139.289022220883,11.704225352112676,5.970788732394366,2.084507042253521,1.7183098591549295,165.0944391412751,39.1384048169014,1.0697801456356477,6.024338028169013,2.8333333333333335,7.599930929577465,138.29282956323132,11.169230769230769,5.929015384615383,2.0923076923076924,1.6,165.61877646737437,36.939098461538435,1.055687397373569,5.981930769230767,2.688888888888889,7.563012307692309,134.6149828825668,11.508771929824562,5.960631578947366,2.0701754385964914,2.245614035087719,166.156427064791,38.42438257894734,1.0518001718172632,6.011140350877191,2.7982456140350878,7.59081859649123,135.4970070289141,7.614727153188691,0.1374639053254437,0.017732800670988962,0.40368178829717305,3.614727153188691,1.3835545682173689,36.123985733070356,0.21806457588600914,0.12868573307034845,2.211702827087442,0.0856831558185404,48.78856126161283,-0.09861932938855997,0.002164891518737566,-0.009544267091958025,0.04010519395134779,0.765285996055227,0.11833275045525579,-0.4407486522024819,0.015062959805391393,0.0006771203155817727,-0.01035502958579878,0.002348291913214981,1.2838901828294076,-0.6698362232231346,0.016539538991433345,0.0007298327595921064,-0.08068140559529767,0.05385302285417103,-0.29837640135263993,-3.386325358787906,-0.05088379377642394,0.012516448330340399,0.11978078051556805,0.011190705643380726,-10.69479627670009,-0.14064688563016328,0.0009735528685361718,0.00012884578549739263,-0.005688477260383616,-0.05675613869593812,-0.0420336402223519,-0.6892539964482759,-0.004219014272052965,0.0006247184346682821,0.08370315581854045,0.0019129701569333712,-1.1366751786587417,-0.16392214424414792,-0.013170345397000105,-0.0005625959591640518,-0.012507071541060805,-0.2998792104337722,-0.0060545642787691745,-0.7179246758252708,0.0008423199315417546,-0.011044856505053265,-0.15783679647722584,-0.008881378835833214,0.5189328106271037,-0.358982897444436,-0.01918318604472449,0.00034961602543259556,-0.01074139535677997,-0.49518003364157226,0.049657303551765064,-1.603145290179907,0.006581950639652444,-0.016795123679739052,-0.26051512589974135,-0.012428335971720585,0.8994784866561146,-0.7822966728708876,-0.022034869572464356,0.0007042909239148356,-0.01870526247557666,-0.7429322813938202,-0.007813777398695635,-3.6231513838468032,-0.0021899661741244265,-0.020304006815382747,-0.3326249409673027,-0.013470970914242852,-1.8423256719801246,-0.8368178829717293,-0.021414911242603512,-0.0001497541495186917,0.0026298487836949385,-0.7563445101906643,-0.007940042381307407,-3.885958612754768,-0.002258764366436053,-0.019991255752794188,-0.3460223537146613,-0.01272292544378698,-2.1322171480770518,-0.6574621959237348,-0.021212083463095582,-0.005761378482711114,0.0029758815183916435,-0.18602719817294738,0.0016013565865332072,-3.027537893214299,0.0005244987468634625,-0.019260182013218427,-0.315616457316862,-0.013030567424478357,-1.013352166573821,,,0.46315789473684216,1.0789473684210527,0.5,0.02631578947368421,0.5789473684210527,-0.07894736842105263,0.7611919160245156,0.010245695240013444,0.014772011029487126,0.6874703309231102,0.21355164475208033,0.27168758434333234,1.4486622469476258,0.48523922909541267,1.9659789148800666,1.489746941093557,0.2030345327745015,0.27319744101200777,0.0,0.47623197378650933,6.773010064102571,814.0,239.89980000000003,102.0,246.0,6452.30800877248,3200.315075,52.28647009698002,241.81900000000002,208.33333333333334,300.3949239999999,7686.712190445656,870.0,247.22799999999998,125.0,212.0,5827.46421382305,3238.759374999999,66.25954585599999,252.10410000000002,128.75,303.10613199999995,9510.136261956332,1135.0,406.684,184.0,240.0,10316.70770497024,4057.378522000001,94.52317718509397,413.6377000000001,198.44444444444449,507.9661920000001,12757.602697201242,1145.0,546.924,202.0,218.0,15127.378734544922,3915.107564,101.725279187225,552.3431000000002,274.0833333333333,695.09464,13176.79024593644,994.0,508.289,182.0,166.0,14282.512928903327,3351.1448489999984,90.41827452807398,512.8825,232.6666666666667,648.526524,11634.499079621,925.0,460.1999999999999,162.0,150.0,12754.236950014578,3132.422099999999,82.149941354678,464.21049999999997,221.91666666666669,585.603736,10725.25471100799,831.0,423.926,148.0,122.0,11721.705179030532,2778.8267419999993,75.95439034013098,427.72799999999995,201.16666666666669,539.595096,9818.790898989424,726.0,385.38599999999985,136.0,104.0,10765.220470379334,2401.0413999999982,68.61968082928199,388.82549999999986,174.7777777777778,491.59580000000005,8749.973887366843,656.0,339.75599999999986,118.0,128.0,9470.916342693086,2190.1898069999984,59.952609793583996,342.6349999999999,159.5,432.67666000000014,7723.329400648105,296.97435897435895,5.361092307692305,0.6915792261685696,15.743589743589748,140.97435897435895,53.95862816047739,1408.8354435897438,8.504518459554356,5.01874358974359,86.25641025641023,3.341643076923076,1902.7538892029004,-3.8461538461538387,0.08443076923076506,-0.37222641658636296,1.5641025641025639,29.84615384615385,4.614977267754976,-17.189197435896794,0.5874554324102643,0.026407692307689135,-0.4038461538461524,0.09158338461538425,50.0717171303469,-44.87902695595002,1.108149112426034,0.04889879489267113,-5.405654174884944,3.608152531229459,-19.991218890626875,-226.8837990387897,-3.409214183020404,0.8386020381328068,8.02531229454306,0.7497772781065086,-716.551350538906,-12.939513477975021,0.08956686390532781,0.01185381226576012,-0.5233399079552926,-5.221564760026307,-3.8670949004563746,-63.41136767324139,-0.38814931302887284,0.05747409598948195,7.700690335305721,0.17599325443787014,-104.57411643660424,-14.09730440499672,-1.132649704142009,-0.04838325248810846,-1.0756081525312293,-25.78961209730441,-0.520692527974149,-61.741522120973286,0.07243951411259089,-0.9498576594345808,-13.573964497041421,-0.7637985798816563,44.62822171393092,-27.641683103221574,-1.4771053254437858,0.02692043395830986,-0.8270874424720576,-38.12886259040106,3.82361237348591,-123.44218734385284,0.5068101992532382,-1.293224523339907,-20.059664694280084,-0.956981869822485,69.25984347252083,-55.54306377383302,-1.5644757396449693,0.05000465559795333,-1.328073635765943,-52.74819197896123,-0.55477819530739,-257.24374825312304,-0.15548759836283427,-1.441584483892175,-23.616370808678493,-0.9564389349112425,-130.80512271058885,-54.393162393162406,-1.3919692307692282,-0.009734019718714959,0.170940170940171,-49.16239316239318,-0.5161027547849815,-252.5873098290599,-0.14681968381834343,-1.2994316239316221,-22.491452991452984,-0.8269901538461537,-138.59411462500836,-37.47534516765288,-1.2090887573964482,-0.3283985735145335,0.16962524654832367,-10.603550295858001,0.09127732543239281,-172.56965991321505,0.029896428571217368,-1.0978303747534504,-17.990138067061135,-0.7427423431952663,-57.7610734947078,0.7328652085786316,0.5733211689207948,0.48523922909541267,0.34208660378543937,0.3340860753736848,0.1983361379751155,0.23048771334622312,0.11912713232132723,0.15220853109080415,0.07189763234273601,0.1040717266805063,0.04295178479305348,0.07180978361483467,0.02754855113140618,0.049285239671570155,0.017013967736171184,8.023816644389052,5.69966930193033,3.546897662872981,2.1989478251587027,0.3800173767213574,-0.36194126629369994,3.0598586373948176,0.9771190481388486,6.023148016917228,1.8201092183395187,14.55035349495736,10.960833365008105,16.011660413714505,11.7112655623748,1.9760358226719725,0.7486246196045554,3.4922762506796357,2.24871768793296,7.009356098690442,1.3168814142134284,3.704755805887503,2.4445764880029124,20.883334506605202,14.696458489503645,0.28008113435656157,0.5818763687318126,0.7033988480889622,0.8142850060387776,0.8647969211011283,0.892976805857072,1.9032148082446625,392.93736710495426,0.0,2.0,0.0,0.0,6.0,6.0,0.0,0.0,0.0,3.7563184181722353,2.1086879732699364,1.4452443070923153,0.8398689103118837,0.5641025641025648,0.4102564102564106,160.772764617613,979.6524412947896,58.992861801642704,25.119293366533064,49.89586417488623,,14.0,413.0,0.0,9.589074368143644,11.814359458703011,12.841643245852019,31.3706727663876,0.0,5.480096598121202,30.33183534230805,5.316788604006331,5.20725302477729,8.8,20.5,9.5,0.5,11.0,0.0,0.03684210526315786,-1.5,0.14102564102564097,0.03658119658119652,-0.10444444444444445,0.07679425837320553,0.17741463414634118,0.0,0.5743589743589746,0.8631578947368418,0.4333333333333337,0.5377777777777781,0.7863636363636363,14.462646404465797,0.19466820956025543,0.2806682095602554,13.061936287539094,4.057481250289526,5.162064102523314,27.52458269200489,9.21954535281284,0.5365853658536588,0.11363636363636363,0.0,0.17045454545454544,0.42857142857142855,0.34784305545313504,-0.6450073399548142,-0.06012106031648646,-0.016538649742431133,-0.04607195285391529,0.6521569445468649,1.2092983011756762,0.05154180277058714,0.03100764874809426,0.048371932047027034,-3.4973397881220953,0.9153859437057504,0.7172983308988888,1.499083940651185,1.083061889250814,0.5840305565660241,1.2531848505638064,0.9227851402557662,1.149887879823276,0.7276323116930885,0.6156361474435197,0.6879067628944705,1.0896160260566203,0.9816416106310102,0.5525708963897165,0.7832800961242681,1.3869658223540275,0.8006113484957896,1.3894505234539607,0.9953164982423367,1.3731794834346012,0.589478569315776,0.5484006099112051,0.5148768039724108,1.299279873686583,0.9770642976733013,0.8910598948225125,0.8676755796759746,0.9838372751734878,0.962478450661901,1.0016481720063097,0.9790900432232265,0.9901424373593108,0.9001787446524318,0.8624717813507041,0.8573372242489645,1.0007204520721482,0.9909241686177028,1.032147998969318,0.9673113034252815,1.0244110294674642,1.0468669368142327,0.938490205937937,0.9895831535033884,0.9401048702653656,1.0280053675945613,1.00161825161998,1.0251176094919467,0.950647807413073,1.0336280883682025,1.1642124946058419,0.9565276222106017,1.0030881170946315,1.1464735700821551,0.8951687873639428,1.0294990622675542,0.918842753896022,1.1531718890364169,1.2100738144138858,1.1796327882777295,0.9395580171891205,1.0849326662791463,1.1748987862105529,0.8866798195135275,0.9858696150846444,1.2015969955784178,0.9389055135289228,1.0813817282756508,0.9668787550886674,1.1707638127378177,1.2346001295127087,1.1842732415686827,0.9999827822114231,1.0836988430322916,1.126867372033828,0.9223529564832768,0.9283387622149835,1.181884321571481,0.9362258588979241,1.0810363783837518,0.9604215772582927,1.1288755485845365,1.144386642885454,1.1186650325864567,1.0050075825717102,1.068554653773096,1.157562609227167,1.262783890494985,0.8892508143322472,1.0356493270280103,0.932534608310264,1.065011331280973,0.9367144703578479,1.1526457229565061,1.1426955344166998,1.1537039049115099,0.9736871001718385,3.0,0.053667993061932456,1.1111111111111116,0.6875,0.47111111111111115,0.22916666666666666,0.1820408163265306,0.07465277777777778,0.10682791635172587,0.045625000000000006,2919.8732898966023,3434.882905760426,1736.979993967963,1524.8314627605819,15.471514682731222,0.4732252739895641,8.150002907962175,0.8983446825051152,1.0,0.42857142857142855,1.5290838006900134,3.1767142455923123,3.8401579117699334,4.445533308550365,4.721299654759684,4.875145808605838,0.15789473684210525,0.005963110340214717,0.05050505050505053,0.034375,0.027712418300653602,0.014322916666666666,0.013002915451895043,0.006221064814814814,0.009711628759247805,0.004147727272727273,0.32385656895337567,17.05263157894737,10.74793388429752,8.710775047258979,112.52198085364748,1.0,3.806226896198727,103.83154624450019,,92.12879856120696,91.01172519200891,90.51002538553074,92.13980949493497,115.15027381332587,91.67413154310896,92.19426630796984,106.13381440173347,-0.012951131065446358,0.01574879975665043,-0.5382267172028015,0.09934853420195436,0.2117133503092034,0.08552806891290221,-0.01220099729468641,0.06907568432052619,0.005261813407175543,-0.004681926278240175,0.027406692608150287,0.02631539339610699,-0.08796588633417267,0.12031914088484709,0.04115721893756579,-0.19986387281831877,0.014898226220660997,-0.21565929397138334,-0.09374174222662904,-0.2333427773386856,0.09726368286294836,0.054157719133228026,0.1306056661484362,-0.2192070436214078,-0.018470377572394954,0.007082243635020409,0.007265958033813891,-0.014091488457725534,-0.01570136176000762,-0.03038090523347398,-0.019080231111299712,-0.019347545353989127,0.004854605244598235,0.03784557074910822,0.022326093602162075,-0.0232979852093545,-0.021526988550798567,-0.09580948079293623,-0.03172628901674084,-0.030982501325657132,-0.08296039997631276,-0.004376093590995934,-0.01987390541924707,0.003862708686724377,-0.08582813526823047,-0.07136437795536878,-0.10365373159973447,0.010636362237543651,-0.047143238388273806,-0.13955071332586244,0.019715781613931452,-0.026608570582511933,-0.1369896018859279,0.035891105918392265,-0.044378970305933844,0.03018349318273999,-0.13051270936582912,-0.11778938956406262,-0.14504993254498336,0.018436257667713403,-0.10273469516807288,-0.16029567558332594,0.03971684659305185,-0.046336651832821,-0.20552928337577311,-0.005647610566429079,-0.10029766401247148,-0.010042741537576498,-0.1577797812620237,-0.15039314364187503,-0.157218426253716,-0.037761426538102875,-0.10989466413400106,-0.15578570383188253,-0.008445036534115614,0.006514657980456026,-0.2092397235358313,-0.005738871862161316,-0.10757280886636209,-0.0103582361200051,-0.1553494336615046,-0.15645065398335312,-0.14848805838491247,-0.04370321839670019,-0.08634087376964261,-0.15431020537992354,-0.3248995231834296,0.00737184981998972,-0.05146369014569899,0.001157422065828935,-0.083809630409711,0.0024052450735402276,-0.14966835525341018,-0.14270292258589395,-0.1520785188173328,-0.020770281811346082,14.32110559113424,8.693439588153486,0.5984084805885755,14.503191446078123,26.26688014757302,30.562319746514,33.84705166406623,34.689280551301636,35.40861388463496,37.353599382721264,28.305191880777585,3.857656122715529,5.190751379228147,0.0,9.048407501943677,5990.855997360338,5720.45754264716,413.0667781420998,14.0,22.0,23.0,24.0,25.0,20.0,19.0,18.0,16.0,264.14739250000025,19.0,4.418840607796598,5.153291594497779,5.921578419643816,6.670766320845874,7.444833273892193,8.200013648175434,8.97727273946428,9.736192529758796,10.515777110135918,0.606837606837607,0.9809230769230775,1.1375007998375049,0.5642797521075764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6344520190388457,0.9663147310206128,1.0050422992884762,0.5917590380309695,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,11.814359458703011,0.0,14.796327392920933,5.480096598121202,0.0,0.0,31.040744451236847,24.974377382775238,18.52902952053558,0.0,183.76975774843282,-340.7652984621026,-31.76269445870306,-8.737571755438527,-24.34037846157875,344.54252236604583,638.887142832687,27.230167342939644,16.381721611094537,25.555485713307473,0.5,0.74112994167624,0.17586015594374238,33.57412314007645,0.1324930707119873,195.27558961477487,0.25887005832376003,7.0,0.42105263157894735,0.2893032048219726,0.601035477348428,0.7265592575084242,0.8410965002219497,0.8932715920674065,0.9223793396853865,2.4711,,1.0357142857142858,1.2284783620288504,0.9699017285501993,1.0327970942604563,-4.283246429381093,1.098531211750306,1.0260103868809844,-1.8356326906609346,72.70290000000003,14.796327392920933,0.0,5.480096598121202,0.0,38.524929737556064,5.316788604006331,30.33183534230805,0.0,0.0,3.6635616461296463,0.0,4.844187086458591,0.0,6.192362489474872,0.0,7.612336837167746,0.0,9.069813136839207,23.666666666666675,9.359749944038676,0.0,0.0,0.0,0.0,0.0,0.8121452493480814,0.0,38.25600000000002,0.0,22.322116254554164,0.0,0.0,0.0,0.0,0.0,-0.34618342259895085,44.36253119366269,10.796885202127534,5.687386274683562,0.0,17.0216124834803,9.589074368143644,0.0,38.524929737556064,30.33183534230805,0.0,0.0,0.0,22.00691033219548,24.743628742514982,23.780547709666948,207.6630924890004,,184.14857456602294,181.8941368722253,180.91795585226674,184.17090350626353,231.65315176224578,183.23262822182312,184.28053152258377,212.8473022847283,23.780547709666948,207.66309248900032,,183.2218828366997,180.79497202198888,180.0501490425113,183.24682189560946,234.58379405603284,182.24973187446764,183.3625222290587,214.10326149412788,4.389417149666954,164.13730034236963,,149.4493721311867,147.8403832470062,146.98557778621358,149.46480591352187,181.43103511091,148.78792071512567,149.54436893369504,169.30782804668456,1.2516077741929972,10.929636446789495,,9.692030240316997,9.573375624853963,9.521997676435092,9.69320544769808,12.192271145381357,9.64382253799069,9.698975343293883,11.202489593933068,2.1947085748334785,103.83154624450019,,92.12879856120696,91.01172519200891,90.51002538553074,92.13980949493497,115.15027381332587,91.67413154310896,92.19426630796984,106.13381440173347,37.6862745098039,0.0,0.0,0.0,0.0,0.0,8.297954737096532,39.19664967225057,4.131811833331945,4.422405404229552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.07860248320781,391.54804934808493,59.63426822691052,123.89185557810018,149.7661585590274,173.37579903346423,184.13068653562766,190.1306865356277,219.0,105.03856624421067,136.76423076639372,50.38226119607007,78.43,78.43,1.0,6.366040802182401,5.247927513443585,3.4178018611715375,4.296944251398904,,4.305269998345785,4.30592313155264,4.305689070627572,4.305261667581709,4.278016206180544,4.305514591765539,4.305233341129496,4.292512474055352,0.1798843084827125,0.22615496059994233,,0.2265931578076729,0.22662753323961263,0.22661521424355643,0.22659271934640574,0.22515874769371283,0.2266060311455547,0.22659122848049976,0.22592170916080798,1.8708514999554189,2.0997580170386216,,2.1016937394712163,2.101845433481153,2.101791074106943,2.101691804453868,2.09534328508643,2.101750550419687,2.1016852249361553,2.098726105969396,213.3299999999996,336.11112858436496,87.87838666836134,,86.93508073753307,86.88805755332808,86.95221987114398,86.93581405775689,88.67277692819684,86.91972463987942,86.9374764364539,87.79566034674349,17.690059399177102,4.625178245703228,,4.575530565133319,4.573055660701478,4.576432624797052,4.575569160934573,4.666988259378781,4.574722349467338,4.5756566545502055,4.620824228775973,6.459295731287656,5.117807775172101,,5.1070155278632035,5.106474481535143,5.107212657079729,5.1070239630900955,5.126806816635636,5.106838873583671,5.10704308481595,5.1168659590172565,0.0,22.322116254554164,11.122017013037414,2.4104883776367503,-0.34618342259895085,9.359749944038676,4.131811833331945,0.0,0.0,262.62570044520453,97.08781973215993,-180.03049181440426,-16.780621532056927,-4.616166456779596,-12.859320843886017,182.0260455875994,337.53192316576144,14.38603179684726,8.654664696557985,13.501276926630455,954.0,20.0,0.7814744144215573,0.22767090063073975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.032075014954979206,0.07216878364870322,0.016037507477489603,13.924438962994,10.893102209495101,9.21954535281284,6.4996454719233485,7.349893658221066,4.363395035452541,5.301217406963132,2.739924043390526,3.6530047461792994,1.725543176225664,2.6017931670126573,1.0737946198263368,1.4361956722966935,0.5509710226281236,0.936419553759833,0.3232653869872525,1.2701163565179132,0.30831303719031683,1.5203900184656733,0.34009172544997923,1.6573569043840912,0.331070413018054,64.3588767299107,40.82359884231108,31.003121235565857,24.130743564534797,22.203671893152027,20.723978447581647,82.0,86.0,41.32185999999998,21.800139999999995,0.15384615384615385,19.05,6.583333333333334,4.583333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,39.0,0.0,0.0,39.0,6.0,2.0,5.0,34.0,8.0,19.0,31.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,3.0,3.0,0.0,19.0,5.0,0.0,2.0,3.0,0.0,1.0,8.0,0.0,0.0,0.0,0.0,1.0,3.2188758248682006,3.840795496139778,3.56953269648137,3.82319179172153,4.153006474870687,4.510172457365812,4.159859169332727,4.245813076829419,4.3686564001107095,3.9427946640948996 +82153,CC1(C)O[C@@H]2C[C@H]3[C@@H]4C[C@H](F)C5=CC(=O)C=C[C@]5(C)[C@H]4[C@@H](O)C[C@]3(C)[C@]2(C(=O)CO)O1,0,21.93548387096774,6.295967741935482,3.564516129032258,7.354838709677419,164.38344247688258,86.94490674435117,1.369130210489016,6.337774193548386,5.673387096774193,7.828307483870965,203.28049010985552,23.696969696969695,6.328030303030303,4.545454545454546,6.454545454545454,144.40164056918798,89.38982446720004,1.780585317606061,6.472969696969697,2.878051346801347,7.76760836363636,260.58320334328704,21.284615384615385,6.275076923076924,4.3307692307692305,5.3076923076923075,151.3017875355199,79.96125478535384,1.557429825481416,6.3880315384615365,2.865224358974359,7.765654461538461,226.87370427339818,18.257575757575758,6.31929292929293,3.5757575757575757,4.095959595959596,154.47667921252443,66.00035167856967,1.4265540748809737,6.410261111111109,3.036510942760942,7.8438292727272705,201.67171187144024,15.414448669201521,6.086501901140682,2.9809885931558937,3.064638783269962,157.38584127575402,54.673593471586294,1.2678314082713158,6.171000760456272,2.773579425433037,7.648622874524714,172.09714324036406,13.016666666666667,6.122333333333335,2.4766666666666666,2.466666666666667,163.31574963540183,44.44817865897067,1.0888814843896102,6.175798000000001,3.0953009259259248,7.726303426666665,144.33846987940814,11.053763440860216,6.028924731182794,2.129032258064516,2.132616487455197,167.1799835608569,36.737059526308244,0.9738257156022007,6.0660462365591385,3.0461469534050174,7.6749859211469555,125.10562771152907,10.855203619909503,5.970859728506788,2.090497737556561,2.3800904977375565,170.19315886650978,36.853480354787344,0.9211348265054841,5.998407692307691,3.092225992961288,7.626847257918552,118.15766672339984,11.919463087248323,6.080335570469798,2.1543624161073827,2.6375838926174495,167.03812518943462,40.63798585548454,0.9832168589043762,6.115776510067113,3.198359433258762,7.728222174496644,130.16018332374563,7.93340270551509,0.18231269510926104,0.017398218823305847,0.9107700312174816,4.320499479708637,1.6440259572724976,37.83094306063934,0.23182551327416465,0.16655660770031203,2.5256243496357964,0.11604099063475548,49.716646148214394,0.27969602371267344,-0.007383565099485897,-0.007584032524865519,0.4115662346671711,1.307066502696055,0.08894570465886677,1.3963693536247646,0.016714228746159226,-0.005627379938826207,-0.2107450458452019,-0.005889991612272591,3.818898605154455,1.2350836468422315,0.0068088929800689145,-0.0005632390352845416,0.07992475786440402,0.22193228207796353,0.11103542634857048,5.877575329477202,0.024609207216808607,0.008912226046586171,0.04100613009952241,0.001929674377651462,7.782123141070692,-1.0019918224913018,-0.01861849504409325,-5.807845511154839e-05,-0.12207664574990286,-0.6028390039836452,0.014801219302832081,-4.709229226283377,0.000941799430982892,-0.018652094829670132,-0.08066059922849728,-0.009671910804191813,-2.8210514158992304,-0.4478145784452983,0.0008389055285408356,0.0004237634161771256,-0.20624408984620748,-0.365390930708269,-0.26166031336052864,-2.200761966745916,-0.03713207158245846,0.000593668271722659,0.01916914832678078,0.0005453643266084754,-6.630174743677448,-0.8711446409989594,-0.009055168227540744,5.0229250443655434e-05,-0.07706035379812694,-0.4273812001387442,-0.1623134366025995,-4.197714313307696,-0.029605247988154507,-0.009280317377731512,-0.09376428392492392,-0.004902269344432888,-6.74185593657485,-0.4134582032604927,-0.007628338536247005,-0.0009279590826813841,0.04165221412880105,-0.015146259683200375,-0.05228988682103183,-1.8985358311178873,-0.003974477870220481,-0.0074063128685397635,-0.13871064092187924,-0.004612358422939056,-1.685376180033967,1.0680569354132432,0.015859834448467513,0.0016057310453574858,0.07828266182003103,0.4960236556000771,0.19782319435310664,5.026490135857408,0.025492027815544386,0.015511630513087231,0.08918350485422168,0.00916257614381704,6.589157730393383,0.07958711912227902,-0.009605399157756548,-0.0016056145139468278,-0.0024565434495666246,0.10708224793803996,0.0027041990999044523,0.6073268422169636,0.012437547664086328,-0.007763275810292721,-0.07590278893242107,-0.008482048872469257,2.7089458385409277,,,0.46082949308755766,0.7983870967741935,0.16129032258064516,0.0,0.6370967741935484,-0.47580645161290325,1.557289587887474,0.03292731743598868,0.04679828517792416,0.6739847141157602,0.12379538457305413,0.3405099935513796,2.231274302003234,0.4643053781244338,2.0450310519083112,1.6291388352851521,0.0,0.3580500144411051,0.057842202182053847,0.41589221662315906,7.003394627935497,1360.0,390.3499999999999,221.0,456.0,10191.77343356672,5390.584218149773,84.88607305031898,392.9419999999999,351.74999999999994,485.35506399999986,12603.390386811043,1564.0,417.65000000000003,300.0,426.0,9530.508277566407,5899.728414835203,117.51863096200003,427.216,189.95138888888889,512.6621519999998,17198.491420656945,2767.0,815.7600000000001,563.0,690.0,19669.232379617588,10394.963122096,202.4658773125841,830.4440999999997,372.4791666666667,1009.53508,29493.58155554176,3615.0,1251.22,708.0,811.0,30586.382484079837,13068.069632356795,282.4577068264328,1269.2316999999996,601.2291666666665,1553.0781959999995,39930.99895054517,4054.0,1600.7499999999993,784.0,806.0,41392.47625552331,14379.155083027195,333.439660375356,1622.9731999999997,729.4513888888887,2011.5878159999997,45261.54867221575,3905.0,1836.7000000000005,743.0,740.0,48994.72489062055,13334.453597691201,326.6644453168831,1852.7394000000004,928.5902777777775,2317.8910279999996,43301.540963822445,3084.0,1682.0699999999995,594.0,595.0,46643.215413479076,10249.63960784,271.697374653014,1692.4268999999997,849.8749999999999,2141.3210720000006,34904.47013151661,2399.0,1319.5600000000002,462.0,526.0,37612.68810949866,8144.6191584080025,203.57079665771198,1325.6480999999999,683.3819444444446,1685.533244,26112.844345871366,1776.0,905.9699999999999,321.0,393.0,24888.680653225758,6055.059892467196,146.49931197675204,911.2506999999999,476.55555555555554,1151.505104,19393.867315238098,491.8709677419356,11.303387096774184,1.0786895670449625,56.46774193548386,267.8709677419355,101.92960935089485,2345.518469759639,14.373181822998209,10.326509677419345,156.5887096774194,7.19454141935484,3082.4320611892927,18.459937565036448,-0.4873152965660692,-0.5005461466411243,27.163371488033295,86.26638917793963,5.870416507485206,92.16037733923446,1.103139097246509,-0.37140707596252964,-13.909173025783325,-0.38873944640999103,252.04730794019403,160.56087408949008,0.8851560874089589,-0.0732210745869904,10.390218522372523,28.85119667013526,14.434605425314164,764.0847928320363,3.199196938185119,1.1585893860562022,5.330796912937914,0.25085766909469004,1011.67600833919,-198.39438085327774,-3.6864620187304635,-0.011499534112086582,-24.171175858480765,-119.36212278876175,2.930641421960752,-932.4273868041086,0.1864762873346126,-3.6931147762746863,-15.97079864724246,-1.915038339229979,-558.5681803480476,-117.77523413111345,0.22063215400623976,0.11144977845458404,-54.24219562955257,-96.09781477627475,-68.81666241381903,-578.800397254176,-9.765734826186575,0.15613475546305933,5.041486009943345,0.14343081789802903,-1743.7359575871687,-261.3433922996878,-2.716550468262223,0.01506877513309663,-23.11810613943808,-128.21436004162325,-48.69403098077985,-1259.3142939923086,-8.881574396446352,-2.784095213319454,-28.129285177477175,-1.4706808033298664,-2022.556780972455,-115.35483870967747,-2.1283064516129144,-0.2589005840681062,11.620967741935493,-4.225806451612905,-14.588878423067879,-529.6914968818905,-1.1088793257915144,-2.066361290322594,-38.700268817204304,-1.2868479999999964,-470.2199542294768,236.04058272632673,3.5050234131113203,0.3548665610240044,17.300468262226858,109.62122788761704,43.718925952036564,1110.8543200244872,5.633738147235309,3.428070343392278,19.70955457278299,2.024929327783566,1456.2038584169377,11.858480749219574,-1.4312044745057257,-0.23923656257807735,-0.3660249739854271,15.955254942767954,0.4029256658857634,90.49169949032759,1.8531946019488628,-1.1567280957336155,-11.309515550930739,-1.2638252819979194,403.63292994259825,0.727745595270502,0.5945149797844328,0.41124190633878427,0.31971571931865334,0.25712092914596457,0.18279016961295672,0.14636360659645348,0.09920187685111743,0.08869480179181718,0.05667843171408546,0.05505461475815935,0.03186768604518737,0.03291327523595596,0.01860660822860572,0.019286011203067874,0.010484256638513796,9.004058612778673,5.70335370364893,4.1076412284666075,2.2021522275078222,0.40927147688453963,-0.39432976718843155,4.121248772549484,0.9771573581377149,7.003042557437491,0.9921992849452876,17.42477086504871,10.963902473989467,19.000141802731676,11.71503765454013,1.9810816176719932,0.546057789008588,3.9885614904500386,2.2518791345828064,8.001824097227555,1.0722891439624298,4.009792237632035,2.4478931550602745,20.887245700227147,13.304118568665679,0.23691454546825008,0.559672038990328,0.7785890893812684,0.8792814500056528,0.8792814500056528,0.8792814500056528,1.5649137887167912,909.7455961968411,0.0,0.0,5.0,0.0,5.0,7.0,1.0,4.0,2.0,4.502080010381094,2.523807986744496,1.18200342766362,0.5648314517524824,0.5648314517524824,0.5648314517524824,137.88654999262752,1560.2017613638532,70.51083204388954,25.164544538126663,52.80956765407624,,12.0,620.0,52.98787798423259,19.802129157825057,36.37860633070113,11.993926152995277,0.0,12.152040213667762,19.92349450621513,13.847474399381248,0.0,9.473725907600098,14.285714285714288,24.75,5.0,0.0,19.75,0.0,0.03917050691244232,-14.75,0.14628354567633484,0.01770702415863723,-0.1285765215176976,0.03541404831727413,0.19289525794684692,0.0,0.5921658986175108,0.8843317972350226,0.44588235294117595,0.5744588744588736,0.8489177489177485,48.27597722451169,1.020746840515649,1.450746840515649,20.893526137588566,3.837656921764678,10.555809800092769,69.16950336210026,14.393466721857447,0.521104742053153,0.2533333333333333,0.13999999999999999,0.31499999999999995,0.75,0.3832838083083047,-1.0123727243187421,-0.08097189765072041,-0.016328592327721644,-0.0506186362159371,0.6167161916916952,1.6289408463928403,0.03839805960204375,0.026273239457949037,0.0387843058664962,-3.0137531160051374,0.8117428217113419,0.6766207328057191,1.3145507138724242,1.0066085014671136,0.5002974105213989,1.0925811592560204,0.8149723428419604,1.1731816693334562,0.6716850453720299,0.6928301096491342,0.713727634743883,1.0530578289930135,0.747436485995641,0.7451476478316852,0.9261407455313423,1.5331421791576039,0.9038795020008893,1.0298039945012154,0.7508956830171906,1.0435753918246526,0.7289553262347218,0.6472719242412036,0.7823961436090019,0.9195897597494833,1.0716759011945263,1.0320339999068904,0.988989893888549,1.4621738666297368,1.1449334992506957,1.0530649638732104,1.0693701743917066,1.0904058356249329,1.035012115432756,0.814634531497761,1.0427525321691766,1.0894803030538625,0.983406537889155,0.808465901732504,0.7969283088714786,1.341086685716086,0.9766917954240752,1.1783988143408943,0.9882505195948919,1.2173979782050284,0.8154193066442796,0.7309360937443938,0.8042678000898742,1.1657342121458747,1.102091203217908,1.075095151800536,0.9878113388420632,0.9992430734075981,1.0676346740526654,1.1007900381984812,1.1035378017035453,1.102247769923672,1.0784001094791635,1.0635948452959318,1.0649313518980408,1.11046422791692,1.0648063133962922,1.0833844646432942,1.0766278908652014,0.7550223745596499,0.9786314493684436,0.9462724263857143,1.060994897800769,0.9333457938372999,1.0880546092143684,1.1353891874054616,1.0777155129301688,0.9822187571707124,0.8897184943474522,0.9873847334122298,0.9113074657055221,0.7161017989688792,0.8913084464555052,0.8453593311515312,0.8930938095185729,0.7852556052890698,0.9831383156030585,1.0236115419066076,0.9648230497347838,0.809346263937956,1.015019023289224,1.11119510893866,1.28396719938458,0.8120096079931144,1.0086996159366877,0.8314043644308649,1.0024301308283106,0.8484090156851862,1.1076239003760744,1.0687540596608895,1.153451391600258,0.882931679660603,11.5,0.12386491174369962,7.333333333333336,6.180555555555555,4.727777777777779,2.3375000000000004,1.498956916099773,0.7847576530612245,0.5379188712522045,0.26969135802469135,7268.088671534432,8366.480582193431,2994.4681347887126,2674.4811601833076,12.750518512012679,0.47816714596888,6.653639465500206,0.9163224244603887,1.0,0.75,1.4521163000057813,3.430388323642379,4.772192882723255,5.3893648586343925,5.3893648586343925,5.3893648586343925,0.32857142857142857,0.010322075978641635,0.12222222222222225,0.08584104938271606,0.06303703703703704,0.036523437500000006,0.03189270034254837,0.0206515171858217,0.018548926594903602,0.011237139917695474,0.7288475347330147,22.775510204081634,7.008333333333334,2.8402366863905324,181.0286953933564,1.0,4.415702914024129,147.82406066482326,,135.47555040975143,134.60045689059416,137.0798191994246,135.42166730581818,170.4439767295275,135.23719983776388,135.5478565269071,151.53917202523624,0.03525549302044584,-0.04049945668929355,-0.4359085606341668,0.45188820510157274,0.3025267122087931,0.054102372450634005,0.03691077305121682,0.07209831441801841,-0.033786590736475865,-0.08344275183900252,-0.05075785358306375,0.07681327887182134,0.15568145128743233,0.03734733325064558,-0.03237337344728948,0.08775514688111086,0.051367274344152926,0.06753873067356098,0.15536422975382924,0.10615400724986179,0.053508690946816616,0.0162360368854678,0.016629247708899723,0.1565295277133289,-0.12630038580982958,-0.10212396362708082,-0.0033381839659212234,-0.1340367398636466,-0.1395299332438061,0.009003032608674789,-0.12448088377640858,0.004062535730780797,-0.1119865197016449,-0.031936894827660656,-0.08334908855298047,-0.056742592963514894,-0.056446722178112745,0.0046014652355288515,0.02435671263137993,-0.2264502374661016,-0.084571455782911,-0.15915826158525692,-0.05817359517626372,-0.16017249809146253,0.003564363371226051,0.007589865187016049,0.004699755867519568,-0.1333592520282178,-0.10980718782791182,-0.049668336163391856,0.0028870340667500206,-0.08461011139674378,-0.09891939627488758,-0.0987292420077623,-0.11095981156428392,-0.12770487410996192,-0.05571869832045173,-0.03712519003011871,-0.042246014254247566,-0.13560560614801223,-0.05211612451906261,-0.04184205895083334,-0.053336441626905685,0.04573296518455049,-0.0035056733033611656,-0.031805998311476034,-0.05018473444013061,-0.017144264296398343,-0.04446724132293845,-0.05492132705399431,-0.0397476650079339,-0.03389963544623571,0.13462784823348983,0.08699248529545693,0.09229284110431597,0.08595217138994556,0.11480701662612575,0.12032851031215039,0.13286716452720806,0.10996213253455264,0.09313128267476219,0.035311468574921775,0.07895982353905166,0.13253423633504763,0.010031902082438367,-0.0526863976861292,-0.09228614321116717,-0.0026972159440543006,0.024784691779493353,0.0016448639925313727,0.016053706122088406,0.053650469650323884,-0.04661043423903847,-0.030053079328034873,-0.07309528146969123,0.054487702779971635,4.959872870242769,19.84995814600986,11.405069555288623,13.911175269988059,33.91574444090557,40.181381087630214,40.803490439348636,40.803490439348636,40.803490439348636,63.39596260915764,50.503303893839714,0.0,11.09955044767426,1.7931082676436692,12.89265871531793,5772.367697392223,5618.678635721843,1644.337713780923,563.0,60.0,91.0,142.0,199.0,251.0,319.0,403.0,498.0,434.21046693200077,35.0,5.25227342804663,6.20050917404269,7.207118856207756,8.184513753033722,9.193295937366925,10.181990121970616,11.190858965656616,12.185436170679731,13.194190894152214,0.6236559139784945,0.9890322580645163,1.1329126236538138,0.583476441219205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6385897527525595,0.9741935483870966,1.0113243897281678,0.6021561328404565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,4.0,0.0,1.0,0.0,2.0,4.0,0.0,2.0,0.0,6.0,0.0,4.0,0.0,0.0,19.68678069728151,12.77855736002321,22.954651856284162,0.0,0.0,9.589074368143644,4.39041504767482,0.0,0.0,19.92349450621513,62.67089610421908,16.747886984954953,12.207932775496605,226.40252920207365,-598.0000728248625,-47.82942045824308,-9.645162464917137,-29.900003641243128,364.2890791947012,962.2016885389907,22.68141158564645,15.519382073209526,22.909564012833112,0.5,0.6784867274490601,0.14869898607866067,47.07856117084518,0.07976255135810853,268.7040464359578,0.32151327255093964,6.0,0.05714285714285714,0.24388115948958858,0.5761295303042315,0.8014839676008567,0.9051372473616373,0.9051372473616373,0.9051372473616373,2.2747000000000006,,1.8333333333333335,2.1045296167247383,1.3925083087863488,1.8633824475096337,-8.491970253898467,1.9116220638074093,1.8044688013136287,-2.9406265336488615,108.52860000000005,33.66627011309997,0.0,0.0,28.58369907727774,76.72518380210171,6.606881964512918,23.80116485057091,0.0,0.0,4.2626798770413155,0.0,5.739792912179234,3.044522437723423,7.422373700986824,5.68697535633982,9.211839248099919,8.0323601479245,11.063524143191238,38.66666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.320000000000014,0.0,25.092935975172196,0.0,0.0,0.0,4.602012000762452,0.0,-0.22796150636180212,70.24058266653645,0.0,4.39041504767482,0.0,58.15419678148538,19.06280027574374,28.58369907727774,46.95741366754052,23.80116485057091,0.0,0.0,0.0,36.175539355590715,39.59256467065869,38.899863641440255,295.64812132964653,,270.8328212496104,269.0651376768834,274.06979915312115,270.72311638921633,344.7230367995251,270.3510692197982,270.97929571179395,304.4063689366365,38.899863641440255,295.64812132964664,,269.11776748616956,267.0963841644637,272.76713009006284,268.97995216412676,349.3799237129533,268.56277761172026,269.29124425250063,306.01897058412135,5.369905069686261,212.9897857379091,,198.47372186083427,197.4786012392724,200.32915053102914,198.41871329831906,239.5544176359291,198.20465253201246,198.5529047292734,217.07358679511987,1.2548343110142017,9.53703617192408,,8.736542620955174,8.679520570222046,8.840961263003908,8.733003754490849,11.120097961275004,8.721002232896716,8.741267603606257,9.819560288278597,2.7398479656013337,147.82406066482326,,135.47555040975143,134.60045689059416,137.0798191994246,135.42166730581818,170.4439767295275,135.23719983776388,135.5478565269071,151.53917202523624,60.39999999999999,0.0,7.324182784243071,0.0,15.445723261526831,0.0,21.269783004587197,62.70211216314641,0.2915013976907469,0.0,12.423877312862704,0.0,-3.290554308914926,0.0,-3.9314999215684643,0.0,0.0,37.33368023610831,400.7764163127496,90.03121060035843,212.6840760658275,295.8759587288418,334.14062123533233,334.14062123533233,334.14062123533233,2592.0,148.7901873011569,189.9151920840252,85.46406782348629,93.06,93.06,1.0,8.259716961021523,6.129283016944966,4.641350921222933,5.476301044155289,,5.493649840290726,5.494500384594956,5.491876337200912,5.49367308374747,5.445096817318675,5.493875506467177,5.493590010235552,5.473520836980262,0.14972099745880427,0.1766548723921061,,0.1772145109771202,0.17724194789015987,0.17715730120002943,0.1772152607660474,0.17564828442963468,0.17722179053119924,0.1772125809753404,0.17656518828968587,2.6664075821695423,2.831831992598934,,2.8349949622023245,2.835149773392292,2.834672082246177,2.834999193161386,2.8261176486763793,2.8350360389997578,2.8349840713769687,2.8313241839304553,314.5000000000012,296.5877868265559,214.1641912867119,,211.4391006147334,211.2584481957059,211.7261936972225,211.41603146518457,218.59542882464754,211.3857198994804,211.4599957945437,214.76101612045503,9.567347962146965,6.908522299571352,,6.820616148862368,6.814788651474384,6.829877216039436,6.819871982747889,7.051465445956373,6.818894190305819,6.8212901869207645,6.927774713563065,6.823745363093437,6.498145081331228,,6.485339128158779,6.48448436838771,6.486696012243539,6.485230016797362,6.518624775874219,6.485086632501255,6.485437946907766,6.500927968457516,27.869600574389537,25.092935975172196,21.269783004587197,-2.4987018009364235,-2.2769860064345084,0.0,2.896142672321197,6.647225580900812,0.0,410.14089445339215,133.7340741194707,-353.2336248383066,-28.252437299165212,-5.697316529650106,-17.66168124191533,215.18250211089816,568.364463005189,13.397719490234746,9.16716875814821,13.532487214409262,2209.0,72.0,4.509033394383389,2.8215382232517165,0.5288387679126026,0.29819152183207187,1.637696156936087,0.995184983373135,0.4172899913413725,0.23845675413466857,0.0,0.0,0.0,0.0,0.1310943487475822,0.08298182631511336,0.6625795941699814,0.39872801885828235,1.7402603248487656,0.9542314344574518,22.56011345338556,18.429964373317418,14.393466721857449,11.190050176152866,15.427255748757874,10.967410176777403,13.319088200277267,9.027370793451686,12.59466185443804,8.048337303400135,10.95586833687371,6.3416695229922855,8.261232084224947,4.670258665380036,6.152237573778652,3.344477867685901,9.952774075210568,6.2428404505412525,19.88356447774189,11.423349632122687,36.61484689949088,18.932050247338772,108.33869597067635,46.490375116776306,29.632331253648218,25.62815710023869,25.62815710023869,25.62815710023869,190.0,246.0,66.11958299999998,37.420417000000015,0.3225806451612903,295.07,12.5,6.29861111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,0.0,0.0,0.0,62.0,0.0,0.0,66.0,0.0,4.0,4.0,62.0,4.0,35.0,62.0,0.0,0.0,0.0,24.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,6.0,2.0,1.0,31.0,7.0,0.0,0.0,6.0,0.0,5.0,2.0,0.0,0.0,1.0,0.0,0.0,3.6888794541139363,6.891625897052253,4.248495242049359,4.74493212836325,5.198497031265826,5.60947179518496,5.849324779946859,6.100318952020064,6.375024819828097,6.684611727667927 +135416229,O=C1NC(=Nc2c(Cl)cccc2Cl)S/C1=C\c1ccc2nccnc2c1,1,48.666666666666664,6.467250000000001,4.166666666666667,9.823731138545954,155.70930915941364,199.6921004166667,2.167898140235833,6.690905555555556,4.369216667513422,8.05464686111111,298.0141194233654,36.333333333333336,6.4808717948717955,4.743589743589744,9.578347578347579,143.39528576670253,143.36160535897437,2.2661618228205134,6.699487179487178,3.408304315711723,7.910513128205127,325.54220562085885,36.60655737704918,6.512040983606558,4.409836065573771,8.353369763205828,147.01872337014427,143.83191673770494,2.1421406914754098,6.72498524590164,3.420377116643055,7.98635049180328,301.8559729571349,32.5945945945946,6.440663513513514,3.6486486486486487,6.45945945945946,153.8132311145971,125.78401058108106,1.8764211376404858,6.6574675675675685,3.241964186408631,8.034510081081082,257.4862203991667,33.833333333333336,6.350604545454545,3.5757575757575757,5.724653946876169,154.24777464990947,131.82623903030304,1.9172893497787271,6.575366666666667,3.099515964399367,7.977994560606063,252.50928660557253,37.75409836065574,6.319108196721311,3.6721311475409837,5.982392228293867,152.33728627422107,147.07651232786887,2.0078999928564754,6.547826229508195,3.0070423590966002,7.970924491803277,258.26915760989704,31.35593220338983,6.456979661016948,3.5084745762711864,6.329566854990584,153.91255169362063,119.3843188983051,1.8557666628228302,6.664122033898305,3.3575364441654467,8.085043152542372,249.69575750920887,32.21153846153846,6.571532692307691,3.423076923076923,6.891025641025641,157.91173558584566,125.25646209615385,1.6794259681748842,6.741301923076923,3.938034188034188,8.152098923076924,237.63670923912917,28.3953488372093,6.531809302325584,3.4651162790697674,7.074935400516796,156.27470611163156,107.66493318604651,1.7500977645708604,6.704309302325583,3.931763805148819,8.098435023255814,243.0192188667045,16.555555555555557,0.0944302469135802,0.01629836365341255,0.5987654320987654,3.5428288370675207,1.7290959246894586,75.45321135416665,0.30088485828760797,0.10312777777777776,1.12526484595656,0.07637585416666665,45.0130699961343,0.008547008547008269,-0.006087369420702762,-0.009631994764929411,0.07787274453941123,0.44378788411710207,-0.1578128039956515,0.16022993429487714,0.009141474423367851,-0.005435897435897455,-0.06665245277245482,-0.00623265972222222,1.0732884152215045,0.3460837887067392,0.006055636510827751,0.0019892276271824337,-0.07326452135195301,-0.3114654153580148,-0.24055773148677895,1.4477549395491862,-0.017876413101774614,0.004806739526411648,-0.007860232838640593,0.004521744649362472,-3.6940933440023462,-1.37987987987988,-0.0055773940607274,-0.0011024539279642575,-0.0582248915582249,-0.385059957076418,-0.10837842522048236,-6.212367231418918,-0.041201385152511906,-0.004304204204204208,-0.11014495926602824,-0.002873602289789792,-3.5987525822629167,1.035353535353535,-0.007808024691358015,0.0002102557622188859,-0.039842873176206495,-0.4451441714816201,0.053802036889296884,4.775792846590911,0.03362551805854771,-0.007355555555555548,-0.006529160596121926,-0.0023734854797979764,-0.43893540954556914,2.3296903460837872,-0.0010614855292450872,0.002739650113260185,0.02509613438575188,0.22544794001314278,-0.02465743110150488,9.985540201844271,0.010570249033908411,0.0018444444444444459,0.06252414368222053,0.0025240916438979957,0.1367825115433702,-3.6685499058380406,-0.02475727139568947,-0.004900669665339917,-0.0629838878426449,-0.07614589549443421,-0.24363667790183166,-16.33114589512712,-0.04704402457154304,-0.027337476459510374,-0.14895240535494494,-0.023023043903013185,-4.838281602104439,2.2072649572649574,0.0187114197530864,0.0017859118302875408,0.016619183285849954,0.05736109645574667,0.06028973393511035,10.318689956730767,0.003697903942987021,0.027823290598290584,-0.01064426357191691,0.022694601495726482,4.792259186812784,-2.749354005167958,0.006479184610967536,0.003185995751162082,-0.03933390755096182,0.09967283773389612,0.30521939395577435,-12.43960437936047,-0.005499524454919435,-0.003843152454780366,0.08250490340807919,-0.004894958171834629,-1.785576130070605,,,0.5075091575091576,1.4903846153846154,0.8269230769230769,0.057692307692307696,0.6634615384615384,0.16346153846153846,0.7047809704572529,0.012186799001887504,0.025417568232656732,1.0143879438903314,0.2866356286351045,0.19787809399274242,1.7191689143475841,0.484513722627847,2.0658168706159867,1.4665390428905867,0.3148708253792246,0.068572820294337,0.13633738055163735,0.5992778277254001,11.110978813888899,1752.0,232.82100000000003,150.0,353.65432098765433,5605.535129738891,7188.915615000002,78.04433304848999,240.87260000000003,157.2918000304832,289.96728699999994,10728.508299241155,1417.0,252.75400000000002,185.0,373.55555555555554,5592.416144901399,5591.1026090000005,88.38031109000002,261.28,132.9238683127572,308.51001199999996,12696.146019213495,2233.0,397.2345,269.0,509.55555555555554,8968.142125578801,8773.746921000002,130.67058218,410.2241,208.64300411522635,487.16738000000004,18413.214350385228,2412.0,476.60910000000007,270.0,478.0,11382.179102480186,9308.016783,138.85516418539595,492.65260000000006,239.9053497942387,594.553746,19053.980309538336,2233.0,419.1399,236.0,377.82716049382714,10180.353126894026,8700.531776000002,126.54109708539599,433.9742,204.56805365035822,526.5476410000001,16665.612915967788,2303.0,385.4656,224.0,364.9259259259259,9292.574462727485,8971.667252000001,122.481899564245,399.41739999999993,183.4295839048926,486.2263939999999,15754.41861420372,1850.0,380.9617999999999,207.0,373.44444444444446,9080.840549923618,7043.674815,109.49023310654698,393.1832,198.09465020576135,477.017546,14732.049693043324,1675.0,341.71969999999993,178.0,358.33333333333337,8211.410250463974,6513.336029,87.33015034509398,350.5477,204.77777777777777,423.909144,12357.108880434716,1221.0,280.8678000000001,149.0,304.22222222222223,6719.812362800157,4629.592127,75.254203876547,288.28530000000006,169.0658436213992,348.232706,10449.826411268294,596.0000000000001,3.399488888888887,0.5867410915228518,21.555555555555557,127.54183813443075,62.24745328882051,2716.3156087499997,10.831854898353887,3.7125999999999997,40.50953445443616,2.749530749999999,1620.4705198608347,0.3333333333333225,-0.23740740740740773,-0.37564779583224706,3.037037037037038,17.30772748056698,-6.154699355830409,6.248967437500209,0.3565175025113462,-0.21200000000000074,-2.599445658125738,-0.24307372916666659,41.85824819363867,21.111111111111093,0.36939382716049285,0.12134288525812846,-4.4691358024691334,-18.999390336838903,-14.674021620693516,88.31305131250036,-1.0904611992082514,0.29321111111111053,-0.4794742031570762,0.2758264236111108,-225.3396939841431,-102.11111111111111,-0.41272716049382757,-0.08158159066935505,-4.3086419753086425,-28.49443682365493,-8.020003466315694,-459.7151751249999,-3.0489025012858813,-0.3185111111111114,-8.15072698568609,-0.2126465694444446,-266.30769108745585,68.33333333333331,-0.515329629629629,0.013876880306446468,-2.629629629629629,-29.37951531778693,3.5509344346935943,315.20232787500015,2.2192841918641486,-0.4854666666666662,-0.43092459934404714,-0.15665004166666643,-28.969737030007565,142.11111111111103,-0.06475061728395032,0.16711865690887126,1.5308641975308648,13.75232434080171,-1.5041032971917978,609.1179523125005,0.644785191068413,0.1125111111111112,3.813972764615453,0.15396959027777773,8.343733204145583,-216.4444444444444,-1.4606790123456788,-0.2891395102550551,-3.716049382716049,-4.4926078341716185,-14.374563996208067,-963.5376078124999,-2.7755974497210394,-1.612911111111112,-8.788191915941752,-1.3583595902777779,-285.4586145241619,114.77777777777779,0.9729938271604927,0.09286741517495212,0.8641975308641976,2.9827770156988267,3.135066164625738,536.5718777499999,0.1922910050353251,1.4468111111111104,-0.5535017057396794,1.1801192777777771,249.1974777142648,-118.22222222222219,0.27860493827160404,0.13699781729996952,-1.6913580246913582,4.2859320225575335,13.124433940098298,-534.9029883125002,-0.23647955156153572,-0.16525555555555574,3.547710846547405,-0.21048320138888904,-76.77977359303601,0.6959864368968577,0.5937912772737433,0.43439161339048354,0.3143559246978372,0.2824199589793106,0.1756472718430712,0.1817877993632958,0.09468095233445595,0.11727172409955681,0.05298593810500099,0.0764891484672362,0.02777173964115392,0.04951744690322301,0.01573242983205612,0.03147575130674921,0.008364623182490111,17.00212796873048,5.684103913450432,3.5438117687298725,2.1793149235977,0.41870659318508147,-0.39582115531783435,3.2314060656489954,0.977957173294078,6.021956881117221,0.6606407889917137,14.554396546368283,10.337604078487221,35.45152844862117,11.697507374068207,2.9166315922175885,0.7518739072075677,3.489052774740052,2.2288346286818315,7.008271126983802,0.6283803771936927,3.7019846668497385,2.4245742615227863,24.43423988731908,14.70270863041554,0.33388996024068024,0.6025564764764287,0.7700891924498432,0.8864964248806187,0.8963399704437055,0.9061835160067919,1.2703374830624765,1077.2461974094094,0.0,3.0,0.0,0.0,13.0,0.0,1.0,0.0,0.0,3.2854980826343123,1.769182901991972,0.8236523459556455,0.16666666666666785,0.1111111111111116,0.055555555555556246,-89.2374017145593,1087.8205065799739,61.217795558841964,30.217236293888167,62.2035470862034,,14.0,624.0,0.0,4.794537184071822,5.907179729351506,25.805441185634308,16.59685292692952,11.761884949391115,36.66880845544486,18.19910120538483,20.277150378536415,23.20187978046503,13.195238095238096,38.75,21.5,1.5,17.25,0.007509157509157551,0.0,4.25,0.2556878306878304,0.11203703703703682,-0.14365079365079358,0.020519603852937163,0.1197473729358779,0.0,0.7001322751322752,0.8540293040293038,0.44444444444444475,0.5880952380952383,0.8335097001763666,18.324305231888573,0.3168567740490751,0.6608567740490751,26.374086541148614,7.452526344512718,5.144830443811303,44.69839177303719,12.59735678832402,0.5942526270641221,0.13352580295922048,0.0,0.3410321183688199,0.0,0.5745449150810131,-1.0441967332437463,-0.0685948328884959,-0.02900546481232628,-0.06526229582773414,0.4254550849189868,0.7732359962696812,0.03368235769976739,0.021478777674157814,0.038661799813484055,-6.731790253543561,0.5383109619686799,0.7116020708995471,1.5417386273205587,0.7910388580491673,0.5769416917484201,1.0728566431644948,0.5301132929047662,0.6687822520485261,0.6365882227811872,0.5911066734187406,0.6785557862918973,0.6635145424596726,0.6652271977115193,0.7155824989013136,0.8887214922461831,1.091346966368092,0.897681947677381,1.1574524362439274,0.6575792634181743,0.8688115517203356,0.6678431358696083,0.6749384088763107,0.6595563594999907,0.8340858862565663,1.054269454017776,1.05141699891646,1.0246580756800414,1.064189189189189,1.0959392893291235,1.0735813273113817,1.0484429446012011,1.117727525125013,1.0122559261303,1.0777155126037985,1.011003214157789,1.0095418389623376,0.9671801911734795,1.0185922928402191,0.9249999419322266,1.0701733833177132,1.097602023156993,0.947468648102338,0.9653612888020633,0.8906829759637857,1.0305313681990402,0.8656521813900586,0.9914993511330813,0.9924313125925169,1.0238337550885683,0.9354455887882858,0.9159507816359124,0.9449467635626161,0.9049853675944494,1.0424780726407814,1.0075670402446892,1.201460666037671,0.902290648681539,0.8622633185895222,0.8770664701633895,1.0130642482929857,1.2954299852121485,1.4400931047239518,1.593225044015252,1.1145815131923815,1.0451378875483939,1.149023278414167,1.2746776157913595,1.2924914925679112,1.3698027422876016,1.6332234727780275,1.438270197775828,1.0780897002225338,0.7600348477026327,1.2147598168352105,1.2240729778249184,0.9992069785884219,1.1190162643933967,0.9789698420186671,0.754972853361818,0.9906184370052376,0.9923379427231175,1.9204791978178974,0.9712516224534229,0.8754086467232459,1.048852817231153,1.211081510809271,0.9582766170421126,1.0761807719971228,1.0525727016193378,0.8102071803671405,1.049435702624556,0.9638332547629854,1.2092337345231634,1.613087328586872,1.258737534810089,0.988285581422869,5.5,0.11957963473114988,2.88888888888889,2.0416666666666665,1.493888888888889,0.5838888888888889,0.7226757369614513,0.2751913265306122,0.2595269589317208,0.10562500000000002,6038.877087623381,6336.273291538494,2655.2491287526714,2547.7689205237602,15.168419738085618,0.4415292117079063,8.471119328274028,0.790603950939285,1.0,0.0,1.8844269188079998,3.40074209945034,4.346272655486667,5.003258334775644,5.0588138903312005,5.114369445886756,0.18965517241379307,0.007034096160655875,0.0704607046070461,0.051041666666666666,0.04526936026936027,0.018246527777777778,0.024089191232048373,0.010192271352985637,0.011796679951441852,0.005281250000000001,0.4330669204317757,19.322235434007133,8.566329565734682,4.54320987654321,162.71014133970266,1.0,4.2032786013003145,144.2681412266676,,90.26284642427062,104.5475124721793,104.68672874845507,90.20953363261927,116.08943508937531,104.21786892778623,103.55261380301846,116.73742356653098,0.0005162622612286873,-0.06446419044391301,-0.590979252258411,0.13005551149881048,0.12526371002569667,-0.09126896995260358,0.0021235667961537197,0.0303819689544821,-0.05271031290532467,-0.059232680210315476,-0.08160510661682907,0.023843928337118046,0.020904389921883572,0.06412814441086545,0.1220507573326804,-0.12235930370119986,-0.08791432769747402,-0.13912341591458122,0.019187452907121875,-0.059412803965984286,0.046609552052690656,-0.0069852291812767,0.05920385046686569,-0.08206712726591618,-0.08334844912026118,-0.059063639490762626,-0.06764200084181002,-0.09724157146837559,-0.10868714656707515,-0.06267924391756742,-0.08233403350135687,-0.13693405971638686,-0.041736613519191806,-0.09788358683896921,-0.037624486444616974,-0.07994905885272824,0.06253813300793164,-0.08268563248069967,0.012900421581577766,-0.06654170571696343,-0.1256465361307367,0.03111570394740222,0.06329475924058445,0.11175543445395299,-0.07132467812314813,-0.005802332330547168,-0.031076385406028712,-0.009751288005534054,0.1407195511057321,-0.011240948360714634,0.16809356887104168,0.04191313165455468,0.06363500761153087,-0.014260302594798662,0.1323408245008097,0.03513054493358581,0.017885040133599112,0.05556393582087807,0.03304829348801714,0.0030387287859974235,-0.22159026276874066,-0.26217522674007837,-0.3006847662473045,-0.10518958588153064,-0.021492964801952407,-0.14090408428068454,-0.21644070016411945,-0.15635224995793867,-0.26508354052210675,-0.13237097549983814,-0.30144401204040905,-0.10748615018971042,0.13332472896231284,0.19815070239317012,0.10957614324144785,0.027755749405233943,0.016190761420815842,0.03486777863173684,0.13675614028270183,0.01229009649748573,0.26979433861403357,-0.00945934071446841,0.2971436685500439,0.10646372680699943,-0.1660683627282659,0.06861344561448725,0.19547948609521903,-0.0656916806521218,0.02813368703874432,0.17651964220006533,-0.16486514166999114,-0.018277837197319458,-0.03726592909876992,0.07332043092303643,-0.0640903885821414,-0.039667948225347645,7.186232000097762,18.358089470509817,9.42528377865185,26.572241224179958,43.53119339729326,52.938568566631375,56.12569902024355,56.90386568691022,57.57114346468799,53.71123863601565,38.13001511515525,8.18664145985984,1.7828933276527623,3.5447718943425714,15.581223520860402,7755.318626137479,7119.418704117764,1413.8085971926212,123.0,41.0,54.0,70.0,85.0,85.0,99.0,114.0,122.0,399.9952373000003,29.0,4.948759890378168,5.802118375377063,6.680854678790215,7.546974117516527,8.426611813185,9.297526733655099,10.17690587972396,11.05027076606553,11.929403045929615,0.9444444444444441,1.009777777777778,1.1020022902488291,0.9280034967946053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.8181957751164339,1.0065359477124178,1.0286173828599177,0.7729044145916729,8.0,2.0,0.0,0.0,0.0,2.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,5.687386274683562,5.167651769578048,0.0,5.907179729351506,14.76249422596624,4.992404732635669,0.0,0.0,35.33461391738825,47.66682482176843,12.393687143226153,25.983804576605223,343.89264066115095,-625.0017405763759,-41.05729177745667,-17.361159460454886,-39.062608786023496,254.65523894659165,462.81876600359806,20.160503781385295,12.856076833433281,23.1409383001799,0.5,0.8164780713210329,0.16520008558888635,31.596764203028837,0.14505543504380508,60.74593658626252,0.18352192867896727,7.0,0.06896551724137931,0.36449792178460616,0.6577933139265264,0.8406838888908713,0.967762266063788,0.9785081773758587,0.9892540886879293,4.8282000000000025,,2.740546218487395,1.2370106792550266,1.250553857629979,2.7669945300160945,-2.2629936977750607,1.3011616286816547,1.300471222150641,-1.352136856385054,106.80569999999999,4.794537184071822,0.0,15.284745645900749,4.992404732635669,0.0,0.0,69.30574418706551,0.0,0.0,4.07753744390572,0.0,5.407171771460119,2.3978952727983707,6.926577033222725,4.727387818712341,8.531293315795018,6.78332520060396,10.177666364950163,33.999999999999986,14.036293382182736,8.506150312948584,0.0,0.0,0.0,1.565540985598671,2.128984331194159,0.0,36.35200000000001,0.0,12.237707231040565,0.0,0.0,0.0,1.7825869236583523,4.36996299098662,0.7251536911060728,39.672082448957845,5.316788604006331,5.687386274683562,0.0,21.04278854082397,4.794537184071822,0.0,5.563451491696996,58.68943080052153,10.045266627482652,17.109421542066407,0.0,33.40812588460579,29.455047904191623,34.036661195239375,288.5362824533353,,180.45890687889994,209.16030365098078,209.4913770500246,180.34923440284535,233.22332880849297,208.45733697443728,207.09806730255804,234.09891029754738,34.036661195239375,288.5362824533353,,178.3364738741985,208.1136023069958,208.43321609356855,178.20393124308424,234.4418638765257,207.35635405786053,205.99766857612286,234.82698398944706,4.767649277193046,221.7208371130099,,136.9711612299383,163.4871649820989,164.3741927644305,136.91205181541287,175.74158056872585,162.7187148019442,161.1285095515613,178.9520390591194,1.3091023536630528,11.09754932512828,,6.940727187649998,8.044627063499261,8.057360655770177,6.936509015494052,8.970128031095884,8.017589883632203,7.965310280867617,9.003804242213361,2.4099573540706096,144.2681412266676,,90.26284642427062,104.5475124721793,104.68672874845507,90.20953363261927,116.08943508937531,104.21786892778623,103.55261380301846,116.73742356653098,36.235294117647044,0.0,0.0,12.250015223510662,0.0,0.0,0.0,37.03022578295704,0.0,2.7247837931468886,0.0,1.2283766901822455,0.0,0.0,0.0,0.0,0.0,27.824558925300224,488.7012183354235,67.839369077088,122.42671558021225,156.46581559752,180.1173000519232,182.11730005192322,184.11730005192322,848.0,130.85942530062118,109.84666127231924,75.02885422144843,92.54,67.24000000000001,1.0,9.063910073577988,5.857980995127572,4.715398032658179,5.030857632448256,,5.033070262071702,5.039809482182453,5.040532279152329,5.033118210435634,5.028087439100909,5.040451206691311,5.04007992623499,5.035012462750771,0.18136146279454535,0.19349452432493291,,0.19357962546429622,0.19383882623778664,0.19386662612124342,0.1935814696321398,0.19338797842695804,0.1938635079496658,0.19384922793211498,0.19365432549041428,2.5063447759290796,2.571101918073858,,2.571541633000731,2.5728797252419566,2.573023132477193,2.571551159618291,2.5705511260379783,2.5730070482407426,2.572933385364929,2.5719274464184876,260.35999999999996,172.26958144579336,156.86560946531083,,156.50086686821282,155.68007840807934,155.584842404454,156.478243234052,157.52170717637273,155.61427385172448,155.7017803344673,156.62934876227743,6.625753132530514,6.033292671742724,,6.019264110315878,5.987695323387667,5.984032400171308,6.018393970540462,6.058527199091259,5.98516437891248,5.988530012864127,6.024205721626055,6.1045720288420435,6.0109008931397225,,6.0085729940863155,6.003314567114024,6.002702638173567,6.00842842447467,6.015074717138409,6.002891786829979,6.003453958191659,6.009393623299732,0.0,25.63712268917078,3.995705214382996,2.8512250427810453,-0.22576961031326093,10.760784489852574,5.058095815988514,0.0,0.0,310.465738637543,205.83621088043927,-374.09346657313824,-24.574754935833095,-10.391485182587171,-23.38084166082114,152.42335330248548,277.01919103412564,12.067026790172045,7.694977528725713,13.850959551706278,1819.0,40.0,1.7514378351383653,0.9732913955109127,0.0,0.0,0.39363455326096647,0.12594356396215825,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.07654655446197432,0.4517239051741796,0.1744560227673676,0.7091466894678492,0.21095850462098759,18.0956473593183,15.438573209117324,12.597356788324023,9.116321816237278,11.579218318151735,7.201538145565919,9.816541165617974,5.112771426060621,8.209020686968977,3.7090156673500694,6.501577619715078,2.360597869498083,4.208982986773956,1.3372565357247703,3.116099379368172,0.828097695066521,4.083175388431224,1.8066419485330638,6.309134584420484,2.4588058871685483,8.990978304713414,2.881571094717668,80.31845530415907,56.92398100476548,38.02265581335325,31.761738898183783,30.52899028651177,29.472348619364332,140.0,165.0,49.189930000000004,18.37007,0.6388888888888888,191.08,7.5,5.61111111111111,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,16.0,17.0,36.0,0.0,2.0,39.0,17.0,3.0,11.0,28.0,20.0,29.0,19.0,0.0,0.0,0.0,18.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,5.0,1.0,2.0,26.0,8.0,0.0,4.0,1.0,0.0,4.0,2.0,1.0,0.0,2.0,1.0,3.0,3.7256934272366524,7.836877397874621,4.3694478524670215,4.969813299576001,5.562122899581136,6.125640263361446,6.387878399240674,6.829117833465064,7.274928825475339,7.670262711453248 +4946,CC(C)NCC(O)COc1cccc2ccccc12,0,19.35,5.889122500000001,2.825,5.4,162.35307560910573,75.94238327500001,1.4113919750457251,5.96472,3.197222222222222,7.466026699999999,202.62811970473018,21.878048780487806,6.202536585365854,3.4146341463414633,5.219512195121951,145.88819006591578,81.39538185365849,1.754904931121952,6.346426829268293,2.8672086720867207,7.652094243902436,250.04727588530406,17.64788732394366,6.082492957746479,3.112676056338028,3.9295774647887325,153.72685136600333,63.89401039436617,1.4688647564336896,6.190971830985917,2.6482785602503918,7.603594816901408,202.99193471514087,14.25531914893617,6.033063829787234,2.5638297872340425,3.1702127659574466,160.81139002847374,49.75081937234042,1.2437410923205428,6.105640425531917,2.7234042553191498,7.6110668510638275,165.29544988067414,11.989583333333334,5.811531250000001,2.3125,2.40625,162.8180043095591,41.19099959374999,1.1275771575153124,5.880073958333333,2.2774884259259265,7.441669374999997,144.91531041960425,12.464285714285714,5.815416666666668,2.369047619047619,2.1547619047619047,160.11681208590215,42.90902560714285,1.1600109072800833,5.894571428571427,2.4332010582010586,7.43682280952381,149.87903923008167,11.493827160493828,5.918024691358025,2.1358024691358026,1.9135802469135803,161.81652882804048,37.974401913580245,1.089594331433716,5.983160493827161,2.6529492455418375,7.548102962962965,138.67294726585723,10.363636363636363,5.768428571428572,2.0779220779220777,1.8311688311688312,167.5161164516743,34.91448267532467,0.9902124073807662,5.8168051948051955,2.3470418470418464,7.4384943376623385,124.73984853770641,12.145454545454545,5.8084181818181815,2.3636363636363638,1.8363636363636364,160.1764783918625,40.99249694545453,1.2094599177488727,5.892145454545456,2.4313131313131313,7.405843345454548,153.27320108998035,7.1,0.09667693749999996,0.01665318345965796,0.49937499999999996,3.15,1.378958390165843,33.903693399374994,0.23272060580671936,0.09379099999999993,0.820486111111111,0.058103637499999986,51.72392095276342,0.1524390243902439,-0.004134132621951231,-0.006363304804830004,0.16099085365853658,0.8475609756097561,-0.02124174136432872,0.7526644908689029,0.0025247283033903406,-0.0028378292682926906,-0.139354674796748,-0.003474876524390251,1.2585368824582452,-0.12323943661971831,-0.006948944542253527,-0.0027470047182058645,-0.017332746478873187,0.0528169014084507,-0.05570864087313067,-0.5723454226144372,-0.007086684218479252,-0.00566297183098592,-0.04149550078247261,-0.004951888204225356,-0.8309313552272319,-0.4148936170212766,0.003502184840425528,0.002375063719665321,0.038656914893617014,0.15425531914893617,0.16834923899020984,-1.9908132488430854,0.0054907239970609315,0.0012785744680851104,0.024120862884160748,0.005006179521276589,-1.0291716340096655,0.359375,0.0019375937499999973,-0.0006292152806183262,-0.01630208333333333,0.15625,0.14431466339817564,1.7348719399479167,0.014958059974618914,0.002229312499999997,0.002459490740740747,0.0004615781249999989,3.3675766406973153,0.08928571428571429,-0.000981788690476193,-0.0007103254763896175,-0.061875,-0.20238095238095238,-0.1302418368146495,0.39314900895833355,-0.015659905124646746,0.00010471428571428066,0.047288359788359796,-0.0021411636904761916,-1.5633080371724803,-1.1882716049382716,-0.015453449845679009,-0.0001289352360908067,0.01821759259259258,-0.3549382716049383,-0.26697085847241103,-5.664211142584877,-0.03677017508945888,-0.015320012345679,-0.14726937585733885,-0.009230733796296296,-8.641865905510281,0.7954545454545454,-0.006528982954545456,0.0004463219823461583,0.006793831168831152,-0.02922077922077922,0.11283063700445164,3.925883221079544,0.039137194510705006,-0.004027493506493514,0.018691378066378078,-0.006137002435064936,8.522333578792326,-0.9318181818181818,-0.010611028409090903,-0.0001907419383112093,-0.10755681818181816,-0.740909090909091,-0.19775536082583503,-4.437446348465908,-0.024053772396028468,-0.010943363636363624,-0.08323863636363638,-0.005519019318181816,-6.31005885810882,,,0.47719298245614034,1.144736842105263,0.5526315789473685,0.02631578947368421,0.5921052631578947,-0.039473684210526314,0.786806748686757,0.01313209286456042,0.022184724443507785,0.7235066664488439,0.22774249069282365,0.254610340778042,1.5103134151356008,0.48235283147086566,2.01148930437534,1.7096096066615463,0.10190458935628521,0.1999751083575081,0.0,0.3018796977137933,6.478930722800003,774.0,235.56490000000002,113.0,216.0,6494.123024364229,3037.6953310000004,56.455679001829004,238.5888,127.88888888888889,298.64106799999996,8105.124788189207,897.0,254.304,140.0,214.0,5981.415792702547,3337.2106559999984,71.95110217600003,260.2035,117.55555555555556,313.7358639999999,10251.938311297466,1253.0,431.85699999999997,221.0,279.0,10914.606446986236,4536.474737999998,104.28939770679196,439.5590000000001,188.0277777777778,539.855232,14412.427364775001,1340.0,567.108,241.0,298.0,15116.27066267653,4676.577021,116.91166267813101,573.9302000000002,256.00000000000006,715.4402839999998,15537.77228878337,1151.0,557.907,222.0,231.0,15630.528413717673,3954.3359609999993,108.24740712146999,564.4870999999999,218.63888888888894,714.4002599999998,13911.869800282007,1047.0,488.49500000000006,199.0,181.0,13449.812215215781,3604.3581509999995,97.440916211527,495.1439999999999,204.3888888888889,624.693116,12589.83929532686,931.0,479.36,173.0,155.0,13107.138835071279,3075.9265549999996,88.257140846131,484.6360000000001,214.88888888888886,611.3963400000001,11232.508728534436,798.0,444.16900000000004,160.0,141.0,12898.74096677892,2688.4151659999998,76.246355368319,447.89400000000006,180.72222222222217,572.7640640000001,9604.968337403394,668.0,319.46299999999997,130.0,101.0,8809.706311552438,2254.587331999999,66.520295476188,324.06800000000004,133.72222222222223,407.32138400000014,8430.02605994892,284.0,3.8670774999999984,0.6661273383863184,19.974999999999998,126.0,55.15833560663372,1356.1477359749997,9.308824232268774,3.751639999999997,32.81944444444444,2.3241454999999993,2068.956838110537,6.25,-0.1694994375000005,-0.26089549699803016,6.600624999999999,34.75,-0.8709113959374776,30.85924412562502,0.10351386043900396,-0.11635100000000032,-5.713541666666669,-0.14246993750000028,51.600012180788056,-8.75,-0.4933750625000004,-0.19503733499261638,-1.2306249999999963,3.75,-3.9553135019922774,-40.636525005625046,-0.5031545795120269,-0.4020710000000003,-2.9461805555555554,-0.3515840625000003,-58.996126221133466,-39.0,0.32920537499999963,0.22325598964854015,3.6337499999999996,14.5,15.824828465079726,-187.13644539125002,0.5161280557237276,0.12018600000000038,2.2673611111111103,0.4705808749999994,-96.74213359690856,34.5,0.18600899999999973,-0.06040466693935932,-1.565,15.0,13.85420768622486,166.547706235,1.4359737575634157,0.2140139999999997,0.23611111111111172,0.04431149999999989,323.28735750694227,7.5,-0.08247025000000022,-0.05966734001672787,-5.1975,-17.0,-10.940314292430557,33.02451675250002,-1.3154320304703266,0.008795999999999575,3.9722222222222228,-0.1798577500000001,-131.31787512248835,-96.25,-1.2517294374999997,-0.010443754123355343,1.475624999999999,-28.75,-21.624639536265292,-458.80110254937506,-2.9783841822461694,-1.240920999999999,-11.928819444444446,-0.7476894374999999,-699.9911383463327,61.25,-0.5027316875000001,0.03436679264065419,0.5231249999999987,-2.25,8.687959049342776,302.29300802312486,3.0135639773242855,-0.3101170000000006,1.439236111111112,-0.4725491875000001,656.2196855670092,-51.25,-0.5836065624999996,-0.010490806607116512,-5.915624999999999,-40.75,-10.876544845420927,-244.05954916562496,-1.3229574817815657,-0.6018849999999993,-4.578125000000001,-0.3035460624999999,-347.0532371959851,0.7192066283684293,0.6034646247917659,0.4582351898973225,0.3342895509557444,0.30973437444118507,0.19250235426522405,0.19323461434356085,0.09492189166787188,0.12344373216295375,0.05100508598897955,0.08547949661639626,0.02936778949856236,0.05565671411023457,0.0151210247658062,0.03723353196081544,0.008389153343038712,8.010530578894038,5.655497921587161,3.5210146616439433,2.155194304893316,0.38651696402382607,-0.5211011542211222,3.239122275070129,0.9886050101646922,6.0075524064862,0.9889408912213499,14.540223704153533,10.915850630277005,16.004558015049366,11.66667892614076,2.022797317368184,0.7783649304791584,3.463702109377607,2.2051292345040623,6.0026008654620115,1.2491786851430988,3.6772129495322923,2.401140705951419,20.931439118827022,14.706304567609594,0.24729720763440166,0.5727943575397811,0.7466240903377049,0.8265158549038971,0.8570889142626149,0.8661410441016167,1.7146377295273996,519.6427894422644,0.0,0.0,4.0,0.0,8.0,2.0,2.0,0.0,0.0,3.9559666469588497,2.158062972936509,1.1979036740223412,0.7566165626622583,0.5877443751081719,0.537744375108173,183.81443989803108,824.2485396900878,36.33642555698039,20.606213492252195,40.86445516875243,,11.0,345.0,6.103966387748303,5.106527394840706,0.0,19.193479199573453,16.521960262213497,0.0,0.0,30.33183534230805,31.296997140310797,4.736862953800049,9.066666666666666,21.75,10.5,0.5,11.25,0.0,0.02280701754385966,-0.75,0.10015151515151494,0.047666666666666524,-0.05248484848484841,0.047786131996658265,0.11881400437636724,0.0,0.5383333333333334,0.8017543859649119,0.4381818181818185,0.4906666666666669,0.7539682539682536,14.949328225048383,0.24950976442664796,0.42150976442664795,13.746626662528033,4.327107323163649,4.837596474782798,28.695954887576416,9.164703797946448,0.5951859956236327,0.14705882352941177,0.0,0.2757352941176471,0.375,0.3144156312041804,-0.523304030668184,-0.030894348507656072,-0.013082600766704599,-0.04025415620524492,0.6855843687958195,1.1410662446390007,0.04247826144648414,0.02852665611597502,0.042261712764407426,-3.9149965459101272,0.9612676056338029,0.9601417822442994,1.3805996856022695,0.9524100247260295,0.7058652729384436,1.2318256328460857,0.9643160290413142,1.1361960223181482,0.9415745595227168,1.0776193965917655,0.9854680239127591,1.0607308065823728,1.0183247371553263,1.1438390062022399,1.293851532132675,1.3749581342875778,1.0767940979208583,1.1554382616897145,1.0177939913745464,1.078632765510537,1.1133311313542356,0.9526085842179614,1.1734874990145172,1.0324218325215344,1.0876348516631706,1.2487382404907814,1.189976576859434,0.9658349532660507,1.0767477203647415,0.9108946369521713,1.0833493396561367,0.9379398466735568,1.2311866674137635,1.1646167421507099,1.2399208518077316,0.9722881744044717,0.9462477992957746,1.0944262818627246,1.2530777901079784,0.9863892365456822,1.0188492063492063,0.8398919747951588,0.9431952981295286,0.8894090380324563,1.0759781888720668,0.8424143038510369,1.1398385180704047,0.8914221642342379,0.9767982897384306,1.0868474227076428,1.1260783203578442,1.1854103343465046,1.0796485260770976,1.0368015209424122,0.976143662926625,1.0517461327312319,1.0651132380962534,1.0533371622030108,1.1650564537743933,1.007408025151665,1.197769953051643,1.5115127734153342,1.261272734956214,0.8195429472025217,1.1349206349206349,1.12158455145729,1.191247107999288,1.1075361915617614,1.4716689826908294,1.9943888026833432,1.6133521378550144,1.1086326154110182,0.9077647704408268,1.330818743813441,1.3021009913431425,0.8621166067974579,1.0953927025355596,0.8055279244188153,0.8984046670585156,0.726826908442132,1.277189494409164,1.2054674060598733,1.4171916897249712,0.749566187289804,1.0935979513444303,0.9992077056546284,0.9153916600932755,1.2602116281715783,1.1733766233766234,1.1673104134306598,1.0948171382575065,1.0788278365040416,1.0132165230042425,1.245035201785096,0.9384084211125805,1.0990393421455305,3.5,0.06193245587184981,2.000000000000001,0.8125,0.7955555555555557,0.3472222222222222,0.2244897959183673,0.1684027777777778,0.13529856386999242,0.11000000000000004,3216.036587091507,3758.1066652071963,1786.0538019735532,1566.688651508156,11.814616102299166,0.4210217659965905,6.840405566337416,0.7271806456097472,1.0,0.375,1.365961447928513,3.163865121950854,4.124024420865021,4.565311532225104,4.734183719779191,4.78418371977919,0.17500000000000002,0.008847493695978545,0.07692307692307696,0.0325,0.03788359788359789,0.01827485380116959,0.014965986394557823,0.01202876984126984,0.011274880322499369,0.011000000000000003,0.39869865886215006,15.39,7.695266272189349,4.795005202913631,113.76036150292278,1.0,3.8488990792408004,86.28790008771311,,68.99972390053144,67.71525459284179,69.45743175424593,69.0192092343004,104.81528800090106,68.5816385388402,69.06435518430862,88.25082641174899,0.021470285125386464,-0.04276234569336904,-0.3821074102885491,0.3223846881772948,0.2690669763840495,-0.015404193132886369,0.02220007366167304,0.010848752712027548,-0.030256946490523535,-0.1698440386858376,-0.059804801797310056,0.024331815130712867,-0.01735766712953779,-0.07187799615863431,-0.1649537294091808,-0.03470887905656709,0.016767270288397047,-0.04039907314856017,-0.01688150656249706,-0.030451468592192183,-0.0603786272775205,-0.050574287877071994,-0.08522509807110368,-0.016064740257918098,-0.05843572070722205,0.03622564937398363,0.14261920103257555,0.07741059302851969,0.04896994258696387,0.12208435018112693,-0.05871965704125279,0.023593630559818682,0.013632165859038835,0.029398258614635193,0.08615948564797843,-0.01989740172539415,0.050616197183098594,0.020041943819331245,-0.03778348338878203,-0.03264497288277013,0.0496031746031746,0.10465483543765187,0.05117058839317779,0.06427475522748502,0.023768938384279927,0.002997601918465235,0.007944048683699002,0.06510675483733601,0.012575452716297788,-0.010155355722518552,-0.04265403537469987,-0.12390488110137673,-0.06424792139077853,-0.09444943208111284,0.011596052510479026,-0.0672905825006863,0.001116464113979814,0.05763456461721381,-0.03685076843039633,-0.03022408217273711,-0.1673621978786298,-0.15984629059726904,-0.007742377690316689,0.03648078616789503,-0.1126788163825201,-0.19360327358413135,-0.1670676724173448,-0.1580013723408639,-0.16334203010607642,-0.1794903946124147,-0.15886671116410395,-0.1670767750457746,0.11203585147247118,-0.06753402748763591,0.026801000747236424,0.013604668172878403,-0.00927643784786642,0.08182309039135101,0.11579514877137005,0.16817245028663033,-0.04294115113916599,0.022780858582805277,-0.10562165639053042,0.16476580703491717,-0.13124199743918055,-0.10975759765963736,-0.011453782321757172,-0.21538286494481734,-0.23520923520923523,-0.1434092299203108,-0.13088386259851298,-0.10335901418203493,-0.11667818486169924,-0.10145039048974726,-0.09498577981768899,-0.12199498301514006,10.991418438850387,14.08016218220497,3.102671683933338,12.163953856889043,25.824658674008592,30.890180653951425,32.64294874186,33.36332190691453,33.413721906914525,38.218296783131464,32.48258252656938,1.936187197769419,3.7995270587926537,0.0,5.735714256562073,3206.426023173738,2936.249957489671,651.1868193159635,34.0,26.0,31.0,38.0,47.0,42.0,44.0,45.0,46.0,259.1572289120001,20.0,4.532599493153256,5.332718793265369,6.171700597410915,6.9985096422506015,7.844240718141811,8.683554728631462,9.533510237357516,10.380249542526327,11.233542195333143,0.5833333333333333,0.9627000000000001,1.126751292150298,0.5398155857130964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6500995958083833,0.9501960784313728,0.9911689730517116,0.5969188428658663,7.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,15.160178952647087,18.460360185545124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.245676810150904,11.452591282926406,17.97282144952533,0.0,155.70851553927906,-259.1566248757829,-15.29985365630991,-6.478915621894572,-19.935124990444837,339.52295543731015,565.0919148143049,21.036571900670477,14.127297870357623,20.929330178307588,0.45454545454545453,0.9213382538458426,0.29452281766616883,9.037940878042615,0.12658866246014458,133.38344113758333,0.07866174615415748,6.0,0.3,0.2566666485480622,0.5944960295480686,0.7749117138254581,0.8578303672706289,0.8895617594546603,0.8989568506901155,2.5775000000000006,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,78.58850000000005,9.843390348640755,0.0,5.316788604006331,0.0,25.993281616277514,13.151638370425493,42.46456947923127,0.0,5.749511833283905,3.713572066704308,0.0,4.976733742420574,0.0,6.434546518787453,0.0,7.990576881743923,0.0,9.604474863741963,23.333333333333332,14.043745317316295,0.0,0.0,0.0,0.0,2.2257536795582435,0.8210156840513985,0.0,38.508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.07005168601192,10.05365155780638,0.0,5.749511833283905,30.40397298216246,0.0,0.0,13.847474399381248,42.46456947923127,0.0,10.772448428929591,0.0,21.592623428523858,26.003983832335333,24.316535312117583,172.5758001754263,,137.93177862813053,135.35081483580237,138.85470372352194,137.97094148579242,211.04256039488632,137.09184275441814,138.06163114824358,177.08971260473987,24.316535312117583,172.5758001754263,,137.35659065820582,134.67341286181207,138.3433455512777,137.39738713192133,212.31334634866226,136.48465100668898,137.49145777506732,177.61896640785753,4.746175564248397,131.9187429407523,,106.94825747300072,104.77468751935656,107.9716164201034,106.98191059061892,169.32081515870433,106.2507384281925,107.0566640004422,140.07141284364974,1.2798176480061887,9.082936851338227,,7.259567296217396,7.123727096621177,7.3081423012379965,7.261628499252232,11.107503178678227,7.215360144969376,7.2664016393812405,9.32051118972315,2.373087782124198,86.28790008771311,,68.99972390053144,67.71525459284179,69.45743175424593,69.0192092343004,104.81528800090106,68.5816385388402,69.06435518430862,88.25082641174899,38.00784313725491,0.0,4.107700407323423,0.0,0.0,0.0,9.843953766691861,39.646758922068464,0.8434130920886875,3.188680791761149,5.723354119425549,0.0,-0.1309501915499398,0.0,0.0,0.0,0.0,23.87675371463465,456.2756987190788,54.638457917140514,126.55460487803416,164.96097683460084,182.61246128900416,189.36734879116761,191.3673487911676,392.0,109.71062594807042,38.95577225751047,51.71990407339822,41.489999999999995,41.489999999999995,0.8333333333333334,8.009893246176663,5.321928094887363,3.5112712637684558,4.295352744041838,,4.286139989845201,4.286200597628546,4.290710607648068,4.286153097453667,4.297196075825276,4.286375831690536,4.286115127276328,4.290515283414064,0.18480375072465557,0.22607119705483358,,0.22558631525501058,0.22558950513834453,0.2258268740867404,0.22558700512914037,0.2261682145171198,0.2255987279837124,0.2255850066987541,0.2258165938638981,1.897832041487407,2.0993875672331477,,2.0972404448101236,2.0972545851216817,2.0983062482034724,2.097243502943655,2.099816620788818,2.097295467594637,2.097234644103417,2.0982607245833007,214.7999999999996,302.4463681113211,93.50891753356056,,93.99653706034299,94.00341543456254,93.74446603926397,93.99567707040997,93.1521531788752,93.98709901412865,93.99737109040338,93.62308357352025,15.918229900595847,4.921521975450556,,4.947186161070683,4.947548180766449,4.93391926522442,4.94714089844263,4.9027449041513265,4.946689421796244,4.9472300573896515,4.927530714395803,6.353757852424821,5.1799106926096465,,5.185111827980212,5.18518500219256,5.182426520366122,5.18510267877223,5.176088098131318,5.18501141449296,5.185120700927943,5.181130858625599,5.723354119425549,0.0,15.258388238011253,0.0,0.8210156840513985,14.411528118963636,-0.4987329931972795,4.951113499412111,0.0,254.174224395967,77.11175719409827,-128.3425165505621,-7.576969031940903,-3.208562913764052,-9.872501273120161,168.14245265153804,279.8513002104657,10.417972446673824,6.996282505261641,10.364862970757988,792.0,25.0,1.1663395218799635,0.632202261549309,0.0,0.0,0.13608276348795434,0.0410666066522287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15137471507731048,0.051834038994012184,0.25137565482875424,0.06752510166063609,13.664925939000156,11.465827871043551,9.16470379794645,6.685791019114888,8.053093735470812,5.005061210895826,5.990273044650386,2.9425786417040283,4.690861822192242,1.9381932675812228,4.017536340970624,1.380286106432431,2.337581992629852,0.6350830401638604,1.6382754062758795,0.36912274709370335,2.077605520299786,0.842683009478457,2.9602835593937544,0.9549987922199156,4.611167496013645,1.2248051690769641,65.39987639618722,40.31950594034847,27.416128448579634,23.224846875358615,21.786595795321563,21.620499390577194,92.0,103.0,43.42665299999998,23.373346999999995,0.25,58.03,6.305555555555555,4.3055555555555545,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,11.0,40.0,0.0,1.0,41.0,11.0,0.0,5.0,36.0,11.0,20.0,30.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,3.0,2.0,0.0,19.0,3.0,0.0,1.0,2.0,0.0,2.0,6.0,0.0,0.0,0.0,0.0,2.0,3.2771447329921766,6.042201290165194,3.817712325956905,4.375757021660286,4.96021880818224,5.5252039041410805,5.694573535570891,6.0328613763790795,6.330333462969109,6.6322847989354585 +78000,CCOC(=O)C1=C[C@@H](OC(CC)CC)[C@H](NC(C)=O)[C@@H](N)C1,0,19.16,6.067396,2.6,5.64,167.41378445897945,75.05879660000001,1.24128754671544,6.107551999999999,4.343888888888889,7.651507679999998,179.97613452712233,21.06,6.29074,3.22,4.96,149.606973247828,77.56332211999998,1.5968352930000003,6.41469,2.871666666666666,7.74639056,228.28883625114435,16.532608695652176,6.146282608695651,2.880434782608696,3.652173913043478,158.78323902785797,59.48444209782608,1.2627818731134022,6.223806521739129,2.818538647342995,7.696478739130434,174.15052651209996,14.368852459016393,6.165589344262295,2.6065573770491803,2.8278688524590163,165.0309509152125,50.39650714754097,1.1232981758481146,6.215944262295081,2.7320127504553735,7.757705245901641,153.52070531273188,14.161538461538461,6.185138461538461,2.5076923076923077,2.746153846153846,163.8844968444087,49.12061025384615,1.1358147472905538,6.237862307692308,2.813247863247864,7.78018716923077,154.60061319058065,14.107913669064748,6.1277553956834545,2.338129496402878,2.776978417266187,162.49492249958897,49.083940100719424,1.140713343585029,6.1822201438848925,3.2755795363709033,7.717378820143885,151.4583868230019,11.370860927152318,5.928523178807947,2.0794701986754967,1.6754966887417218,164.82559917759613,37.66508966887418,1.0728654351861655,5.984180132450332,2.531640912435615,7.55068519205298,135.91882242153662,10.342105263157896,5.7998552631578955,1.9013157894736843,1.3421052631578947,167.37742490126314,34.1753118486842,0.9831756310141317,5.850838815789473,2.3898026315789473,7.44710055263158,122.56129740047523,9.65925925925926,5.978437037037037,1.6,1.0740740740740742,169.83966015986192,30.497950199999995,0.8914316236185702,6.005245925925926,3.2172839506172837,7.6428229037037045,110.09079228250071,7.599999999999998,0.13914495999999996,0.020213699776281596,0.5264,3.68,1.2814808468783125,36.01879336,0.20910453486519362,0.13050495999999992,1.6652111111111112,0.08724757759999999,47.533681603851456,0.11600000000000003,-0.004678879999999999,-0.012235666634988767,0.22479999999999997,1.3759999999999997,-0.12097165874111862,0.5217664800000006,-0.018222485694400038,-0.002421040000000055,-0.13980000000000004,-0.004451251200000021,-1.2601628400831932,0.6708695652173913,0.01803921391304347,0.0015641008317404102,0.03925217391304351,0.5295652173913044,-0.1877774384489838,3.0647173986956524,-0.017937417554125354,0.017511648695652138,0.19287463768115942,0.0099752832695652,-0.9312422669233679,0.09442622950819685,-0.011306664918032784,0.0016979589371708002,0.017862295081967225,-0.19245901639344254,0.08078718729564448,0.5289264268852452,0.009355667179567708,-0.009165812459016423,-0.11417741347905286,-0.008949552681967234,2.469058517123465,-0.5369230769230768,-0.021466406153846145,-0.00486204135896915,-0.059938461538461524,-0.3876923076923075,0.0006767186283573286,-2.442948624615385,0.0025474968153386987,-0.019245975384615407,-0.20912991452991464,-0.014143548061538481,-0.3166075476590612,-0.06446043165467628,0.023890464460431658,0.004268321434262011,-0.05330647482014388,0.003165467625899181,-0.07119763119178571,-0.44253856719424317,-0.010241232338104974,0.019164277410071925,0.23573613109512384,0.01756078729208631,-3.580567635345324,-0.9141721854304635,-0.010053993112582777,-0.00016860812321897793,-0.09063841059602648,-0.4254304635761588,-0.06570423131253089,-4.336295546754967,-0.014632540583596521,-0.010845092450331117,-0.17478432671081678,-0.005111938924503308,-4.970672107106221,0.0034210526315789913,-0.004105644210526316,-0.002453876684841171,-0.13666315789473682,-0.2807894736842106,-0.09423906798580624,-0.017658462631578425,-0.01810647695340991,-0.0023726705263157812,-0.024567836257309912,-0.003613312336842093,-1.7343729690833078,-0.9688888888888886,-0.006517789629629621,0.0020651349583362525,-0.027733333333333332,-0.5955555555555554,-0.07102267533242074,-4.65895873037037,-0.026341576534041292,-0.007368426666666662,0.12317572016460902,-0.0015346661925925997,-6.605402633364878,,,0.4606060606060607,0.7840909090909091,0.18181818181818182,0.0,0.6022727272727273,-0.42045454545454547,1.1687782319822049,0.022398224861475215,0.026307315770566123,0.6061514680472371,0.14466262534009858,0.32903976626993053,1.774929700029442,0.47370239161002914,1.946602558256355,1.437526613293994,0.1713419093832017,0.33773403557915954,0.0,0.5090759449623612,6.244098147520016,958.0,303.3698,130.0,282.0,8370.689222948973,3752.9398300000003,62.06437733577201,305.3776,217.19444444444446,382.57538399999993,8998.806726356117,1053.0,314.53700000000003,161.0,248.0,7480.3486623914,3878.166105999999,79.84176465000002,320.7345,143.58333333333331,387.319528,11414.441812557217,1521.0,565.4579999999999,265.0,336.0,14608.057990562933,5472.568673,116.175932326433,572.5901999999999,259.30555555555554,708.0760439999999,16021.848439113197,1753.0,752.2019,318.0,345.0,20133.776011655922,6148.373871999998,137.04237745346998,758.3451999999999,333.30555555555554,946.4400400000002,18729.52604815329,1841.0,804.068,326.0,357.0,21304.98458977313,6385.679333,147.655917147772,810.9221,365.7222222222223,1011.424332,20098.079714775486,1961.0,851.7580000000002,325.0,386.0,22586.794227442868,6822.667674,158.559154758319,859.3286,455.30555555555554,1072.715656,21052.715768397262,1717.0,895.2070000000001,314.0,253.0,24888.665475817015,5687.428540000001,162.002680713111,903.6112,382.2777777777778,1140.153464,20523.74218565203,1572.0,881.5780000000001,289.0,204.0,25441.368584991997,5194.647400999999,149.44269591414803,889.3274999999999,363.25,1131.9592840000003,18629.317204872234,1304.0,807.0889999999999,216.0,145.0,22928.35412158136,4117.223276999999,120.34326918850698,810.7081999999999,434.3333333333333,1031.7810920000002,14862.256958137597,379.9999999999999,6.957247999999998,1.0106849888140799,26.32,184.0,64.07404234391562,1800.9396679999998,10.455226743259681,6.525247999999996,83.26055555555556,4.36237888,2376.6840801925728,5.800000000000002,-0.23394399999999993,-0.6117833317494383,11.239999999999998,68.79999999999998,-6.048582937055931,26.08832400000003,-0.9111242847200018,-0.12105200000000274,-6.990000000000002,-0.22256256000000102,-63.008142004159666,61.72,1.6596076799999993,0.14389727652011775,3.611200000000003,48.72,-17.27552433730651,281.95400068000004,-1.6502424149795325,1.6110716799999967,17.744466666666668,0.9177260607999984,-85.67428855694985,11.520000000000016,-1.3794131199999997,0.20715099033483764,2.1792000000000016,-23.47999999999999,9.856036850068627,64.52902407999991,1.1413913959072604,-1.1182291200000036,-13.929644444444449,-1.0918454272000024,301.22513908906274,-69.79999999999998,-2.7906327999999987,-0.6320653766659895,-7.791999999999998,-50.39999999999998,0.08797342168645272,-317.58332120000006,0.3311745859940308,-2.501976800000003,-27.1868888888889,-1.8386612480000026,-41.15898119567795,-8.960000000000003,3.3207745600000003,0.5932966793624196,-7.409599999999999,0.4399999999999862,-9.896470735658214,-61.5128608399998,-1.4235312949965915,2.6638345599999975,32.76732222222221,2.440949433599997,-497.6989013130001,-138.04,-1.5181529599999992,-0.025459826606065668,-13.686399999999999,-64.23999999999998,-9.921338928192165,-654.7806275600001,-2.2095136281230747,-1.6376089599999986,-26.392433333333333,-0.7719027775999995,-750.5714881730394,0.5200000000000067,-0.62405792,-0.372989256095858,-20.772799999999997,-42.68000000000001,-14.32433833384255,-2.6840863199999205,-2.7521844969183062,-0.36064591999999873,-3.7343111111111065,-0.5492234751999981,-263.6246913006628,-130.79999999999995,-0.8799015999999988,0.2787932193753941,-3.7439999999999998,-80.39999999999998,-9.5880611698768,-628.9594285999999,-3.5561128320955744,-0.9947375999999993,16.62872222222222,-0.20717993600000095,-891.7293555042585,0.7590139151736256,0.6329782682608818,0.47370239161002914,0.3628524681431411,0.3084977482994625,0.19123671199865816,0.19141548841575404,0.10868858017092824,0.12145960662994787,0.0609500755439272,0.07719952880765309,0.03204164010261851,0.047668938525398025,0.017668963207930335,0.0340824078047678,0.010505701850017816,8.029373179546946,5.731102609097689,3.5555126092982205,2.229247723134497,0.4477661427722586,-0.492614584206298,3.1626822191478907,0.9725527058704956,6.028688158732164,0.9872034773099939,14.54078443312135,10.991997983439314,16.014826326102167,11.743185933676187,1.9466636684909988,0.7414048449294459,3.5015974204855858,2.278792577082169,7.009357850518415,1.1733333722682873,3.7145024556692574,2.4747980933173674,20.85118249431129,14.700630263959336,0.25694096925700033,0.5469487075097551,0.7992729605427044,0.8351137603160773,0.8351137603160773,0.8351137603160773,2.795408119610381,418.3688686812758,0.0,2.0,5.0,0.0,1.0,7.0,1.0,0.0,0.0,4.172118756352258,2.510977500432694,1.0656842503028834,0.8603910001730766,0.8603910001730766,0.8603910001730766,272.39280135390095,1322.4774205977317,49.94835811117729,26.449548411954627,53.171780177392634,,10.0,336.0,6.103966387748303,9.589074368143644,30.06413306334758,18.600808117508194,12.841643245852019,6.923737199690624,12.999757306524504,13.847474399381248,5.316788604006331,15.207393384762284,10.133333333333335,17.25,4.0,0.0,13.25,0.0,0.039393939393939335,-9.25,0.11999999999999988,0.009743589743589687,-0.1102564102564102,0.06909090909090898,0.18804844290657408,0.0,0.5533333333333336,0.8757575757575754,0.4333333333333337,0.5435897435897439,0.8066666666666664,25.713121103608508,0.49276094695245476,0.5787609469524547,13.335332297039216,3.1825777574821688,7.238874857938472,39.04845340064772,10.421452615420641,0.5259515570934259,0.30263157894736836,0.0,0.3453947368421052,0.75,0.26413241753011746,-0.6049404116197817,-0.04869906482225667,-0.012098808232395633,-0.04653387781690629,0.7358675824698825,1.6853517731734917,0.03780247572849266,0.03370703546346982,0.04555004792360788,-2.473153582875863,0.9800000000000002,0.8096227128887743,1.6858659568995944,1.0425531914893618,0.5059782608695652,1.5662369178648174,0.9906301195426834,1.4631188622848534,0.7999049231538787,0.7063802387418345,0.8119913509208992,1.2804585546838692,0.9152459954233412,0.8299733507821783,1.0064422435961546,1.335568917668825,0.8915406427221172,1.3271934833941548,0.9213211765971131,1.233967925133732,0.8227124421004848,0.5624821764630966,0.854374217830034,1.1137916697593624,1.027879637618637,1.241755655279261,1.221574367346872,1.228418207185211,1.194003920171062,1.0014282792367941,1.022954927016103,0.9586927009814484,1.2141819153469877,0.9841395365066913,1.2772340292685351,0.9390032446904771,1.1188663967611339,1.35138386504372,1.5382245960542136,1.3819558101472995,1.2915760869565216,1.065234992993785,1.1128214994899073,1.0123363018084455,1.3248819166601913,1.189037143720901,1.3926951744697182,1.0087976249401929,1.0260128739113974,0.91136103646175,0.838116336976344,1.2656895759987754,1.090123553331248,1.1229164187136562,1.0289797208474432,1.1067586193252414,0.9256554379180727,1.0194322706098577,0.9109828369079632,1.102556821093163,1.0892209829208785,0.986243611084221,0.9231508692754992,1.177434127095956,1.049344946731932,1.0863861020291652,1.0911571017250516,1.0820393140516722,1.000755041714443,1.0667627653095182,0.9561855030135777,1.1078379218983807,0.9412309556786705,0.863056582748024,1.0800797374931796,1.2493001119820828,0.9609732551487413,1.0442633098254932,0.9447154426651029,1.0417559945677197,0.8638601894800336,0.8270600183809651,0.8357539321828868,1.0064725545142614,1.1409454191033142,1.2106368409952812,1.091745483319285,0.7791568163908589,1.2092190016103057,0.9423416424965468,1.138012344430885,1.0068601155637105,1.207188401682772,1.280986629557715,1.200727464858195,1.045239626528821,5.5,0.0,2.4444444444444455,1.625,1.6444444444444448,0.888888888888889,0.7918367346938775,0.45833333333333337,0.09876543209876541,0.08000000000000002,3913.233663478083,4680.331275663815,2025.132215678711,1741.3804945897123,12.950927295550951,0.46109220678861174,6.979355648886496,0.8556050081238051,1.0,0.75,1.4717374334224662,3.1328786893420304,4.578171939471841,4.783465189601648,4.783465189601648,4.783465189601648,0.25,0.0,0.08429118773946365,0.05078125,0.049831649831649845,0.026143790849673207,0.028279883381924196,0.018333333333333333,0.005809731299927377,0.01142857142857143,0.5248993978645431,20.045454545454547,9.988109393579073,6.204081632653061,131.9578360977872,1.0,3.9650735239105463,100.58932649717904,,85.36839188416944,83.736403348363,86.42156985046083,85.39454097130559,133.42513538742926,84.85807034500148,85.44842872336727,110.68551627791476,0.015263157894736852,-0.03362593945192122,-0.6053155419546641,0.42705167173252273,0.37391304347826076,-0.09439989605447917,0.014485951119601877,-0.08714533956017637,-0.018551325558814443,-0.08395331923212941,-0.051018622206423545,-0.02651094545096392,0.08827231121281466,0.12964331523788913,0.07737825578945715,0.07456719968283342,0.14390359168241967,-0.1465315996773652,0.08508662042241308,-0.08578205903420183,0.13418377888206048,0.11582593726056988,0.11433306853857224,-0.019591208496838024,0.012424503882657483,-0.08125817074533485,0.08400040348690424,0.03393293138671585,-0.052298645759087645,0.06304205598736967,0.014684734760510736,0.04474157954345255,-0.07023344138810071,-0.06856632934839599,-0.10257651763121542,0.05194334698710582,-0.07064777327935225,-0.15427368805773597,-0.240531986364722,-0.11386485854570957,-0.10535117056856183,0.0005280754917295996,-0.06782427718215449,0.012182886502107805,-0.1474731334702943,-0.1255876285802422,-0.16210820346648208,-0.006660699044893839,-0.008481635744036356,0.1716947883734464,0.21115983127791307,-0.1012660995823402,0.0008601814200812992,-0.055558872663000115,-0.012286324052312541,-0.04897661518774489,0.14684711914452858,0.14156531236320483,0.20127535657891218,-0.07532695794922828,-0.12028581387242944,-0.07225553201914593,-0.008341279680863756,-0.17218543046357615,-0.11560610423265186,-0.051272113408941236,-0.12038980604970959,-0.06997715565102348,-0.08310099823279608,-0.10496226306957082,-0.058591184593568685,-0.10457157828699447,0.00045013850415513056,-0.029506237311982535,-0.1213967117351029,-0.25961846104623254,-0.07630148741418766,-0.07353919351613614,-0.0004902569182450377,-0.08659055130049124,-0.018180692337791474,-0.01475358655330917,-0.041414471739351685,-0.036487242531257645,-0.12748538011695906,-0.04684172268711438,0.10216511480790101,-0.05268490374873354,-0.1618357487922705,-0.055422346346753436,-0.12934799574780564,-0.12597324372244384,-0.056460893644706425,0.07397003259389742,-0.01758978569730055,-0.13896257160164235,2.3052697787043193,11.208770923227647,7.785901020006669,14.056086538547358,30.206636380788186,33.30949252064513,33.51642811677597,33.51642811677597,33.51642811677597,42.82525628163981,31.625585492467867,3.7695220064304378,7.43014878274151,0.0,11.199670789171947,4134.142681117957,2842.778657965358,1603.0423902271764,19.0,29.0,35.0,43.0,53.0,55.0,59.0,50.0,34.0,312.2049073760008,22.0,4.634728988229636,5.442417710521793,6.300785794663244,7.144407180321139,8.013343181386672,8.87332798950246,9.74665828850311,10.614597433470246,11.489953621007944,0.5666666666666667,0.97392,1.1446615170110919,0.5202064773957206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6083617245508983,0.9587450980392157,1.0015731973780044,0.5592142560553635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,4.0,0.0,0.0,1.0,0.0,4.0,1.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,20.524181988768614,0.0,0.0,5.907179729351506,0.0,4.794537184071822,4.794537184071822,0.0,0.0,13.847474399381248,32.26222217530253,18.53868255890785,24.856655569157486,152.51729039236196,-349.30915823147274,-28.12017351291487,-6.9861831646294545,-26.869935248574826,424.91009174626294,973.1682623662589,21.82818459826242,19.46336524732517,26.301844928817808,0.5,0.8301685093861736,0.20199689137147722,28.84594902775189,0.14553573594099403,57.136735535060154,0.16983149061382644,5.0,0.3181818181818182,0.2607680606902939,0.5550954141989007,0.811177993473037,0.8475526357790808,0.8475526357790808,0.8475526357790808,1.2853999999999997,,1.2857142857142856,1.5141926477431364,1.1430359144285005,1.28206267335915,-5.365540693720243,1.3572521419828645,1.2745051870999227,-2.2346271687189603,84.15610000000005,19.06280027574374,0.0,5.316788604006331,5.733667477162185,71.24902810133304,6.606881964512918,11.64912463690315,0.0,0.0,3.8066624897703196,0.0,5.081404364984463,0.0,6.54965074223381,0.0,8.117610746466228,0.0,9.74537068443899,28.333333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.696,0.0,23.365285843905973,0.0,0.0,0.0,1.7502777777777778,0.0,-0.0038317008902317706,57.2330758505546,11.050456081168516,0.0,0.0,42.7749814156088,19.06280027574374,0.0,46.95741366754052,11.64912463690315,0.0,0.0,0.0,26.010323869786028,30.418086227544915,26.5310142398251,201.17865299435806,,170.61990065145577,167.33515281965842,172.73922734506448,170.67253079048763,267.49722917044767,169.5927541316409,170.7809933388164,221.57418048025852,26.531014239825105,201.17865299435817,,169.45106948262458,165.95861404898284,171.70010378649323,169.507019269252,272.21581146857875,168.3588885480201,169.62235225963462,223.60565972454847,4.807411221596723,135.18998155999114,,113.52458758215332,111.50974023434804,115.14745954781931,113.55761917376884,180.00166958709258,112.90484342741775,113.62241896208536,146.65506953131526,1.2059551927193228,9.144484227016276,,7.755450029611626,7.606143309984474,7.851783061139295,7.757842308658528,12.158964962293076,7.708761551438223,7.762772424491654,10.071553658193569,2.403705610798362,100.58932649717904,,85.36839188416944,83.736403348363,86.42156985046083,85.39454097130559,133.42513538742926,84.85807034500148,85.44842872336727,110.68551627791476,47.937254901960785,0.0,7.297215442102257,0.0,0.0,6.157320483749055,0.0,50.07865986890022,2.403154735659696,2.840979623330814,11.099639707734946,0.0,-1.076708580036954,0.0,0.0,0.0,0.0,27.96071280276817,479.3620291087827,73.5868716711233,156.64393446710153,228.90859697359204,239.17325948008238,239.17325948008238,239.17325948008238,421.0,116.26022018760625,98.06535302984226,55.300699027893806,90.64999999999999,90.64999999999999,1.0,6.54965074223381,5.459431618637297,3.869434157826605,4.600287423962648,,4.59973261606315,4.600157239532601,4.598981365212926,4.59972503231062,4.585464174041363,4.59985679756168,4.599712155716419,4.5922420250271045,0.17588337081030023,0.209103973816484,,0.20907875527559774,0.20909805634239095,0.20904460750967846,0.20907841055957366,0.20843018972915284,0.20908439988916727,0.2090778252598372,0.2087382738648684,2.141565644267973,2.31457614537745,,2.31445553522709,2.314547845782198,2.3142921969923274,2.31445388648804,2.311348698471179,2.314482532409889,2.3144510870571757,2.312825723791219,255.9799999999999,168.06594145548613,115.50183181680784,,115.31404479744229,115.24948908712517,115.28805522997939,115.31484169487179,116.64655888408726,115.29034498997628,115.31756418453624,116.1253743574635,7.639360975249369,5.250083264400356,,5.241547490792832,5.238613140323872,5.240366146817245,5.241583713403263,5.302116312913057,5.240470226817103,5.241707462933466,5.278426107157432,5.912813771419763,5.537743750086134,,5.536116591126769,5.535556609147689,5.535891184961171,5.536123501773926,5.547605858903125,5.535911045971524,5.53614711068226,5.543127781238725,11.099639707734946,23.365285843905973,2.840979623330814,6.67760582010582,-0.524117037246997,-0.7185695389266824,3.4772332189048454,7.6152756955246135,0.0,322.18081573989315,88.06765972213802,-201.700672794646,-16.237358176846335,-4.03401345589292,-15.515436368818925,245.35472192132755,561.9340021185434,12.604191489413322,11.238680042370865,15.187405462663333,1060.0,32.0,1.553193053308114,0.6745171705810867,0.0,0.0,0.2821175568066727,0.07897451608323933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05555555555555555,0.039283710065919304,0.16619799064237337,0.07800167812473463,16.698306133819763,13.9255219017394,10.421452615420641,7.982754299149104,8.946434700684414,5.5458646479610865,6.699542094551391,3.8041003059824883,5.222763085087759,2.62085324838887,4.0915750268056135,1.698206925438781,2.6217916188968915,0.9717929764361685,2.0108620604813003,0.6198364091510511,3.0874533443011876,1.2973236685149874,4.531550395129514,1.7292570932996698,7.122665172996386,2.240353549185395,75.54443333978114,34.3373867723612,25.61954839581803,24.39902994327675,24.39902994327675,24.39902994327675,102.0,115.0,50.79820399999997,33.297796,0.12,22.06,9.777777777777777,5.249999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,50.0,0.0,1.0,50.0,0.0,3.0,3.0,47.0,3.0,22.0,47.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,5.0,2.0,0.0,22.0,6.0,0.0,2.0,4.0,0.0,1.0,7.0,0.0,0.0,0.0,0.0,0.0,3.258096538021482,3.6109179126442243,3.6109179126442243,3.871201010907891,4.143134726391533,4.465908118654584,4.584967478670572,4.7535901911063645,4.68213122712422,4.189654742026425 +4823,COc1ccc(-c2nc3ccc(C4=NNC(=O)CC4C)cc3[nH]2)cc1,0,23.86046511627907,6.234176744186045,3.5813953488372094,8.372093023255815,161.7086819765461,94.32622439534885,1.5608962857507438,6.309327906976743,4.0,7.714235627906976,232.84573906533626,26.152173913043477,6.4289760869565225,4.195652173913044,8.304347826086957,147.40785737552167,100.01787339130438,1.8637798600000008,6.570665217391305,3.2874396135265695,7.806450608695649,276.3171175969339,22.756410256410255,6.321524358974359,3.923076923076923,6.8076923076923075,152.4926743097794,85.97753353846153,1.6508536277172179,6.437041025641025,3.124287749287749,7.760540717948716,240.0636200849348,19.567010309278352,6.2751443298969045,3.3917525773195876,5.195876288659794,156.1692235273479,71.78640053608248,1.4940235128741448,6.373449484536081,3.1632302405498276,7.749491463917524,211.2339195212517,16.676470588235293,6.162647058823529,3.049019607843137,4.03921568627451,160.69471656156017,59.498001156862735,1.365760265648902,6.246779411764704,2.869281045751635,7.669685803921569,187.1633733694708,15.185567010309278,6.0195247422680405,2.8762886597938144,3.845360824742268,160.2863626256143,53.50842112371134,1.3351206280488142,6.105763917525774,2.6626575028636887,7.55443006185567,178.2094845281693,15.208791208791208,5.892602197802197,2.879120879120879,4.131868131868132,161.25240142765523,55.05608079120879,1.2719689051782965,5.974273626373625,2.6016483516483526,7.448026901098901,169.3364413222042,16.71232876712329,6.192080821917811,2.9726027397260273,4.328767123287672,161.60053105498477,59.90533561643833,1.3057764476895757,6.2676931506849325,2.9680365296803664,7.711532712328767,180.3436683872184,15.587301587301587,6.155126984126985,2.9206349206349205,4.063492063492063,164.96103777885452,55.3687413174603,1.2500833703839367,6.219096825396827,2.929453262786598,7.690079682539684,170.77749613625383,7.107625743645215,0.1137308815575986,0.01913775939784685,0.619794483504597,3.9913466738777723,1.603696880088398,33.8560699113034,0.22303963274745806,0.1069114115738236,1.0650201310017426,0.06656694429421309,48.90867697145085,0.37316293178451254,0.00217523573259344,-0.008861604735211574,0.23612058221835533,1.3554682907329454,0.026133043635762618,1.7709276336915398,0.0012588032403559638,0.002951126343264262,-0.046819928777273534,-0.0001317167916852964,1.545734566672319,0.6780033559373739,0.00718220729153667,0.0004737089434222072,-0.02110634993274256,0.24031701127428534,-0.07323037231102855,3.2412576042004697,0.011804693787382465,0.007371444717172126,0.05216167513355179,0.0025000670355424174,3.3221150880137347,-0.7283402006099704,-0.01166912178775931,0.0008638817560888167,-0.086828767848879,-0.67271804764905,-0.24604908797479857,-3.446885189174421,-0.01790393703681792,-0.011252816512687268,-0.06275581921932977,-0.006465054100015062,-4.670214037023355,-1.2008769976351814,-0.02337041644131961,-0.0015273470544910023,-0.046379070827898494,-0.855003764621046,-0.0834627060867259,-5.658324362739794,-0.01595075029686802,-0.021930244223162487,-0.11348240997017758,-0.012086212876064435,-4.9461480407430205,-0.9323680116864504,-0.013007098292194725,-0.0024810374492804594,0.03640307103867791,-0.10283073045892731,0.03835576716319597,-4.408505752828221,-0.009679037483120278,-0.013203188126209194,-0.15416741782344803,-0.0061779239154070385,-3.9120846091055523,1.6462715218799593,0.035307094419912116,0.006152922160240115,0.016034803487480608,0.7385281025086323,0.10427472003501549,7.715370136997129,0.014263374330620356,0.03307274380568053,0.193143539952626,0.018749677223803784,5.736464369266762,-0.5686005763944968,-0.012845153618764666,-0.005062603339364591,-0.053690628773791084,-0.43671143972676824,-0.07749523855880563,-2.688977833890218,-0.016070479094625018,-0.011555661334894095,-0.10093036426782175,-0.007866546715366327,-3.3133063352267516,-0.3390764634680267,-0.011336787796063067,0.0012788482585090889,-0.10004549863933312,-0.6255290289903598,0.26343842162253095,-1.55664613647875,0.013726930017052044,-0.010256040588220147,-0.04557876272316508,-0.005098659318207183,1.930308567953241,,,0.4706666666666667,1.35,0.7,0.02,0.65,0.05,0.7413364854898478,0.01115407886353168,0.02491407886353168,0.9502730645758924,0.2682482097048721,0.21716625392652003,1.6916095500657402,0.4854144636313922,2.070203172098884,1.5949750086894214,0.3290843127023937,0.14614385070706862,0.0,0.47522816340946233,7.770766879441872,1026.0,268.0695999999999,154.0,360.0,6953.4733249914825,4056.027649,67.11854028728199,271.30109999999996,172.0,331.71213199999994,10012.36677980946,1203.0,295.73290000000003,193.0,382.0,6780.761439273997,4600.8221760000015,85.73387356000003,302.2506,151.2222222222222,359.09672799999987,12710.587409458958,1775.0,493.0789,306.0,531.0,11894.428596162794,6706.247615999999,128.766582961943,502.08919999999995,243.69444444444443,605.3221759999999,18724.962366624914,1898.0,608.6889999999997,329.0,504.0,15148.414682152745,6963.280852000001,144.92028074879204,618.2245999999999,306.83333333333326,751.7006719999998,20489.690193561415,1701.0,628.5899999999999,311.0,412.0,16390.861089279137,6068.796117999999,139.30754709618802,637.1714999999998,292.66666666666674,782.307952,19090.66408368602,1473.0,583.8938999999999,279.0,373.0,15547.777174684586,5190.316849,129.50670092073497,592.2591000000001,258.2777777777778,732.779716,17286.319999232423,1384.0,536.2267999999999,262.0,376.0,14673.968529916625,5010.103352,115.74917037122498,543.6588999999999,236.75000000000009,677.770448,15409.616160320582,1220.0,452.0219000000002,217.0,316.0,11796.838767013887,4373.089499999998,95.32168068133902,457.5416000000001,216.66666666666674,562.941888,13165.087792266942,982.0,387.7730000000001,184.0,256.0,10392.545380067835,3488.230702999999,78.75525233418801,391.8031000000001,184.55555555555566,484.4750200000001,10758.982256583991,305.62790697674427,4.89042790697674,0.8229236541074145,26.65116279069767,171.6279069767442,68.95896584380111,1455.8110061860461,9.590704208140696,4.597190697674415,45.79586563307493,2.8623786046511626,2103.0731097723865,17.165494862087577,0.10006084369929824,-0.4076338178197324,10.861546782044345,62.35154137371549,1.2021200072450804,81.46267114981083,0.05790494905637433,0.13575181179015605,-2.1537167237545827,-0.006058972417523635,71.10379006692668,52.88426176311516,0.5602121687398602,0.03694929758693216,-1.6462952947539198,18.744726879394257,-5.711969040260227,252.81809312763664,0.9207661154158322,0.5749726879394258,4.06861066041704,0.19500522877230855,259.1249768650713,-70.64899945916713,-1.131904813412653,0.08379653034061522,-8.422390481341262,-65.25365062195785,-23.86676153355546,-334.34786334991884,-1.736681892571338,-1.091523201730665,-6.0873144642749875,-0.627110247701461,-453.0107615912654,-122.48945375878851,-2.3837824770146003,-0.15578939955808224,-4.730665224445646,-87.21038399134669,-8.513196020846042,-577.149084999459,-1.626976530280538,-2.2368849107625737,-11.575205816958114,-1.2327937133585725,-504.50710015578807,-90.4396971335857,-1.2616885343428883,-0.24066063258020456,3.5310978907517576,-9.97458085451595,3.7205094148300093,-427.6250580243375,-0.9388666358626669,-1.2807092482422917,-14.954239528874458,-0.5992586197944827,-379.4722070832386,149.8107084910763,3.2129455922120025,0.5599159165818505,1.4591671173607355,67.20605732828554,9.48899952318641,702.0986824667388,1.2979670640864525,3.009619686316928,17.576062135688968,1.7062206273661444,522.0182576032753,-41.50784207679827,-0.9376962141698206,-0.36957004377361513,-3.919415900486749,-31.87993510005408,-5.657152414792812,-196.29538187398592,-1.1731449739076263,-0.843563277447269,-7.367916591550987,-0.5742579102217419,-241.87136247155286,-21.361817198485685,-0.7142176311519732,0.0805674402860726,-6.302866414277987,-39.40832882639267,16.59662056221945,-98.06870659816126,0.8647965910742788,-0.6461305570578693,-2.8714620515594,-0.3212155370470525,121.60943978105418,0.6955416231252701,0.5614733082652479,0.4334057710994574,0.2910054261974186,0.27682980749385633,0.15457588109771858,0.1783369237654529,0.0814911526342664,0.11361606587984976,0.04305352787825453,0.07034929653821848,0.02175560725110682,0.046130083238776765,0.011264550711975909,0.028799079747110646,0.005927514027827391,8.022166865478756,5.687934175737459,3.543936292397991,2.1847547860411765,0.4016297678172457,-0.5293570523264957,3.2032992509225813,0.9779052313991066,6.022022227593115,0.9937142644374447,14.641814286091865,10.95213636585614,16.010283180614035,11.701620465490775,2.001380139052944,0.7517650091432074,3.48916269301466,2.2337595301307056,7.008270835371144,1.2469486715842282,3.7020615034835607,2.429147654654623,20.89926054894827,14.702491265600733,0.2717639907472837,0.6496302734145206,0.8051864794672159,0.8842355767431315,0.8922806786242978,0.8922806786242978,1.3042037724705187,972.7577054473691,0.0,2.0,1.0,0.0,11.0,1.0,2.0,1.0,0.0,3.8550993670090636,1.6705184632973786,0.7711920804355854,0.31418081405411513,0.2676691861471383,0.2676691861471383,142.27708059326267,1190.9640660763612,63.88254544860951,27.696838745961887,57.64980067365974,,15.0,614.0,0.0,4.794537184071822,11.8250857755129,6.4208216229260096,39.44590575268104,0.0,7.109797541277533,49.38830667892189,20.495155964744523,4.736862953800049,11.766666666666667,33.75,17.5,0.5,16.25,0.0,0.0293333333333333,1.25,0.16049882035726304,0.0666384778012683,-0.09386034255599474,0.03891358024691349,0.14372536348949905,0.0,0.6054263565891475,0.8253333333333331,0.4449275362318844,0.5387878787878791,0.7864197530864196,18.533412137246195,0.278851971588292,0.622851971588292,23.756826614397312,6.706205242621803,5.4291563481630005,42.29023875164351,12.135361590784804,0.5702746365105009,0.11331444759206798,0.0,0.38243626062322944,0.21052631578947367,0.37685559904514904,-0.7769326111625633,-0.06410759084251408,-0.018068200259594488,-0.05549518651161165,0.6231444009548509,1.2846862506272099,0.04647631709174218,0.029876424433190937,0.0442995258836969,-5.706558753612808,0.7319215525398157,0.7377641951430184,1.435145947028065,0.702310493967676,0.4601714386709083,1.126790567111467,0.7358670504768857,0.9847482454488299,0.7138107006749806,0.6114089036844778,0.762663670824597,0.8802721811994224,0.7769628788499583,0.8266533191852424,1.028739365761176,1.2021412270103373,0.8690535751511359,1.108386850334232,0.7781060228457279,0.9358926121646309,0.8083791431151705,0.6367209710111588,0.8727683265085886,0.8713269714862729,1.0186229088450185,1.0688730089028253,0.9115269865276986,1.1941220920818267,1.13653926745453,1.1947648181376889,1.0179938767694232,1.0464852737012151,1.0583790021053798,1.0756121842954376,1.074744898918996,1.032134013076528,1.1189115274781345,1.1258253371252502,0.9991320286633644,1.0119854224412281,1.1659971305595407,1.093216454005722,1.1179094218410597,1.014804446506854,1.1245045299776257,0.8781510234291765,1.050324327280714,1.048782558568993,1.0859171900274085,0.9376284061298089,0.9011003385094348,0.836697792411076,0.9132679574218421,0.970044181851231,1.0876969468708102,1.0192092860257533,0.9614854482758134,0.9993173876801711,0.8583585592993763,1.0683336971854676,0.7535558339089002,0.44427447843423257,0.47309973208916234,0.969794603302457,0.7422138836772981,0.8712653091975844,0.7614941553202308,0.9407381123935579,0.4773316487599023,0.4550573136168125,0.40253665459210874,0.9190268955543106,1.066432414740568,1.166437134098396,1.416437358820084,1.0578067847665498,1.104571778594498,1.0507154680445405,1.064337808690646,1.020352259126505,1.1522766760835204,1.1685517773901106,1.168409806949454,1.018232313393161,1.0612032668797238,1.156497299264566,1.0460059243870414,1.2132053519488077,1.2410569105691054,0.8447745708205003,1.0578957489141616,0.8703232303460711,1.1477299247130375,1.0861404201696476,1.0964195983369822,0.9145079584904546,5.5,0.1107050300989695,3.1111111111111125,1.6666666666666667,1.3738888888888892,0.9030555555555556,0.4523356009070295,0.4063562925170067,0.24363032249937008,0.12063271604938272,4673.784119971815,5157.93661896489,2454.1325950975333,2267.8362011901645,17.387122169558534,0.49159476811667074,8.839703878398181,0.9669349119315983,1.0,0.21052631578947367,1.5711653876930343,3.7557462914047193,4.6550726742665125,5.112083940647983,5.15859556855496,5.15859556855496,0.19642857142857142,0.007907502149926393,0.07777777777777782,0.04166666666666667,0.04040849673202615,0.031139846743295018,0.016154842889536766,0.01693151218820861,0.012822648552598424,0.00670181755829904,0.4479396826869063,18.367346938775512,7.935,3.983539094650206,144.4731798113612,1.0,4.168771589474416,134.31412777729238,,97.50480157586536,95.88228891218918,95.63539110558258,97.52211992259092,127.22773550335634,96.86241084872634,97.59838405772093,116.46046674646729,0.05250176996420359,0.01912616611075682,-0.46304295873886764,0.3809659306472418,0.33960174384352515,0.016295500702303622,0.05230753712202984,0.005643854524192451,0.02760347375290686,-0.043961543462315004,-0.0019787117026603103,0.031604505833895305,0.09539097588861695,0.06315089791948256,0.024752581196913953,-0.03405378798048953,0.060209505941213215,-0.04566347494982468,0.09573638088212724,0.05292644021140678,0.068949091669995,0.048977172933331564,0.03755718490686011,0.0679248610620347,-0.10247306581401879,-0.10260293095371396,0.04514017227042839,-0.14009283748043394,-0.1685441287402565,-0.15342618111300188,-0.10180996194196841,-0.0802724467229108,-0.10525365203804335,-0.05892453803695011,-0.09712108868090395,-0.09548845575498738,-0.16895613823066885,-0.2054887478339271,-0.07980803931848161,-0.07482975738288336,-0.21421435782985282,-0.05204394117305094,-0.16712880076050027,-0.07151531815392037,-0.20512538278497422,-0.10655423936769876,-0.18156478420649294,-0.10113027681427988,-0.13117854615798558,-0.1143673390556401,-0.1296409573191518,0.058734099782299716,-0.025763417427988693,0.023917092836821974,-0.1302131571791317,-0.04339604295385296,-0.12349652793698487,-0.14475540258421254,-0.0928076837672134,-0.0799875370047145,0.2316204568525372,0.31044421652557896,0.32150692420829413,0.025871161996816452,0.1850323118615801,0.06502146467309193,0.22788735246618888,0.06394995434183844,0.30934718117385823,0.18135200859626752,0.28166648510909287,0.11728929761513017,-0.07999866578552917,-0.11294341029317778,-0.2645347991956767,-0.08662650314375195,-0.10941455989902363,-0.048322871685411016,-0.07942380320382252,-0.07205212318844338,-0.10808632273005557,-0.09476850373981954,-0.11817497105767248,-0.06774475492683653,-0.04770600981223415,-0.0996808223131691,0.06682330109411708,-0.1614172137732347,-0.15672129737170395,0.1642694607025798,-0.045978347178419504,0.06154480191686241,-0.09593027009224576,-0.04279615135565029,-0.07659446249586116,0.039467609583469364,6.749393250945721,19.973515165577705,9.487220608745599,14.541873796998054,34.97187782994355,40.90689378786355,41.87932858623655,41.92621230716677,41.92621230716677,51.7550793024721,39.87437521723554,8.227107817559842,3.6535962676767157,0.0,11.880704085236559,8152.719032946837,7716.773761867703,494.50777052079593,177.0,40.0,54.0,71.0,91.0,104.0,119.0,142.0,162.0,334.1429758160005,28.0,4.919980925828125,5.783825182329737,6.670766320845874,7.550135342488429,8.442254104751743,9.328034514792826,10.223358460802768,11.112940314429848,12.010465221160372,0.682170542635659,0.9895813953488374,1.123705395101828,0.6474278423073422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6926093023255816,0.9766529867761059,1.0070800657192704,0.659020993188456,7.0,1.0,1.0,0.0,0.0,2.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,9.720841474747257,11.573916331283833,0.0,5.907179729351506,0.0,4.794537184071822,10.409769918057593,5.101407525739723,0.0,12.990104268152233,36.39820241076966,23.465630652481394,23.854883979280757,217.70341981292012,-448.82147656245354,-37.033924393705796,-10.437708757266357,-32.0586768973181,359.9805004061828,742.1425895139075,26.848621054903717,17.25912998869553,25.591123776341643,0.4666666666666667,0.8179653659875811,0.24096005145061888,76.98089308647789,0.11652756328446738,54.533832710411815,0.18203463401241887,8.0,0.10714285714285714,0.28954823598158386,0.6921421016455563,0.8578779113630028,0.9420999843802564,0.9506715580150801,0.9506715580150801,3.098600000000001,,1.0714285714285716,1.3140995812005583,1.2472667135871938,1.0685318721261376,-4.237315801405576,1.1621787025703796,1.0580415728862167,-2.0752874690897665,96.54240000000001,9.53140013787187,0.0,15.393748439004803,11.019313571901115,13.344558822616634,7.109797541277533,48.02802097092827,0.0,17.137367822980828,4.04305126783455,0.0,5.37989735354046,2.3978952727983707,6.912742820493176,4.727387818712341,8.530109416682784,6.842683282238422,10.18968101756145,29.333333333333336,13.764395541930575,4.649807466196355,3.358167044595616,0.0,0.0,1.8312816515495092,3.605878427996033,0.0,42.55200000000001,0.0,11.425355935840155,0.0,0.0,0.0,0.0,4.221523871073488,0.8497757445877042,48.31933198937861,10.162654350910433,0.0,5.749511833283905,28.696619315294154,4.794537184071822,5.917906046161393,18.90801031431363,47.565977004970996,0.0,22.421257424929443,0.0,27.839397219215716,29.782200000000007,32.955147893298054,268.62825555458505,,194.92388886601643,191.6594498578823,191.1710008740782,194.95875729541171,256.15039732727485,193.63184740124706,195.112124789611,233.75104848057046,32.955147893298054,268.62825555458505,,193.93817458030213,190.4504782431777,190.10609370905792,193.97570797305565,258.6927868081183,192.56264299488242,194.13872654255573,234.99622096202435,4.844924537375867,205.33427110130592,,148.1055824587029,145.6603542311306,144.8429008042582,148.1303288860447,190.0637633452116,147.11731419779585,148.2486265121092,175.60325993334112,1.3182059157319221,10.745130222183402,,7.7969555546406575,7.666377994315292,7.6468400349631285,7.798350291816469,10.246015893090993,7.745273896049882,7.80448499158444,9.350041939222818,2.4643041482384835,134.31412777729238,,97.50480157586536,95.88228891218918,95.63539110558258,97.52211992259092,127.22773550335634,96.86241084872634,97.59838405772093,116.46046674646729,41.99607843137255,0.0,3.6593609101863867,0.0,0.0,0.0,0.0,43.30444282592863,0.4553025047214885,2.562262636463921,5.19079564640691,0.0,0.0927592851185226,0.0,0.0,0.0,0.0,28.337902707103606,472.5254392271591,67.56011167080047,161.49709053040294,200.16812499346003,219.81960944786326,221.81960944786326,221.81960944786326,1013.0,129.04176038742972,105.15848099194378,74.02344824986156,79.37,79.37,0.875,9.357308286143788,5.807354922057604,4.3483797807172575,4.9148402115958625,,4.910778565938432,4.911547578802914,4.9069174818114965,4.910756464984043,4.871587847589957,4.910894259573086,4.910750890612618,4.89216901829415,0.1739351912286903,0.1965936084638345,,0.19643114263753728,0.19646190315211653,0.19627669927245986,0.19643025859936172,0.1948635139035983,0.19643577038292342,0.1964300356245047,0.195686760731766,2.386094043389799,2.508549974587917,,2.5077232285110056,2.507879813184477,2.506936672417352,2.5077187280018043,2.499710662560019,2.5077467873561665,2.5077175928661832,2.5039264990397254,248.09000000000003,215.54665390419893,150.63850805056495,,151.1692376008873,151.10078329217828,151.51013703521923,151.17119833733088,154.208379992288,151.15984478346388,151.17151825361037,152.662917359578,8.621866156167957,6.025540322022598,,6.046769504035492,6.0440313316871315,6.060405481408769,6.046847933493235,6.16833519969152,6.046393791338556,6.046860730144415,6.10651669438312,6.2894681094218665,5.931173712101814,,5.934690719899221,5.934237785071764,5.936943265708689,5.934703690287634,5.954595536483223,5.934628583518874,5.934705806536923,5.944523068238602,5.19079564640691,19.433330446632127,4.221523871073488,7.269670909741604,1.6722868359740863,13.764395541930575,0.4553025047214885,2.0114214594815936,1.647939450704793,292.8937081742478,125.76376500263281,-259.2769500591244,-21.39390262485383,-6.02969651300289,-18.519782147080306,207.95494667707803,428.7238404719506,15.510016663473925,9.970321871440715,14.783580705929333,1613.0,40.0,1.6979176370435478,0.768170905251057,0.0,0.0,0.33093309327558146,0.1044279202293571,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.02795084971874737,0.4110544158647976,0.12090609830116295,0.7105569112106125,0.16257075355439873,17.388540578131753,14.036832706631198,12.135361590784807,8.148151933527721,11.073192299754254,6.183035243908743,9.630193883334456,4.400522242250386,8.066740677469333,3.0568004793560717,6.401785984977882,1.9797602598507205,4.7975286568327835,1.1715132740454945,3.427090489906167,0.7053741693114595,4.029045234941037,1.488931374682314,6.2744559279914665,1.938905266528284,9.00070939411423,2.2748063841571433,81.03987603021422,41.14689628446001,26.277183347756008,23.37938390441446,23.220022753032964,23.220022753032964,136.0,162.0,49.73627399999999,22.941725999999996,0.4883720930232558,184.06,7.25,5.4444444444444455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,15.0,16.0,43.0,0.0,0.0,46.0,16.0,2.0,9.0,37.0,18.0,28.0,28.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,4.0,2.0,2.0,25.0,6.0,0.0,4.0,2.0,0.0,4.0,3.0,0.0,0.0,0.0,1.0,3.0,3.6635616461296463,8.307811925793834,4.300680995219929,4.9245325950428445,5.544444754252622,6.125230287270975,6.563745330051692,7.052281668549216,7.551747091975257,7.930141568804333 +6526396,COCC1=C(C(=O)OC(C)OC(=O)OC(C)C)N2C(=O)[C@@H](NC(=O)/C(=N\OC)c3csc(N)n3)[C@H]2SC1,0,33.0625,6.737682812500001,3.359375,9.79513888888889,165.55280598777227,131.208745671875,1.550473194233172,6.769620312500001,6.092989111796982,8.256416968749999,220.16809951081183,30.893939393939394,6.745939393939395,3.9696969696969697,8.5,150.30815754228033,118.79939265151512,1.7665287930303029,6.868357575757575,3.5743546576879908,8.176870848484848,260.0267580754277,26.991071428571427,6.751449107142856,3.580357142857143,7.098214285714286,160.27947240034422,102.13764645535714,1.4634134551185891,6.818896428571429,3.7899856701940036,8.291928928571428,210.27986053581063,24.976,6.746372,3.432,6.648,160.11555570280186,93.20369867999999,1.455359307898712,6.8160511999999995,3.643777777777778,8.260799215999999,210.2747206939007,25.78472222222222,6.798900694444445,3.201388888888889,6.55787037037037,161.5403107041456,97.21122351388888,1.3328670606713748,6.854760416666666,4.31764403292181,8.33311563888889,198.06687088652248,27.119718309859156,7.185138732394367,3.0985915492957745,6.183098591549296,162.7882214209609,101.0079631338028,1.3138304231647606,7.217947183098591,5.02547383063815,8.720162253521128,200.77612690598625,23.224489795918366,6.732017687074831,3.061224489795918,5.439909297052154,161.61591669258033,85.4508311632653,1.3722867499332518,6.790443537414966,4.215251532711851,8.256460993197278,194.94006014805842,20.59171597633136,6.5807970414201185,2.6804733727810652,4.453648915187377,162.82216519654574,74.17301908875739,1.2643132611569645,6.632505917159764,3.578785886478194,8.182632366863906,172.38631278706586,20.51829268292683,6.32150243902439,2.591463414634146,4.266937669376694,164.78791685255,75.48997020731707,1.2060097935744207,6.380037195121951,3.505121031148583,7.94936062804878,162.19897940069671,12.24609375,0.20087204589843746,0.03740738804726561,0.667724609375,5.190538194444445,1.5618788457733663,55.30299526928711,0.29917189321488064,0.18157517089843742,2.3614741405178323,0.13213562109374996,47.10365209173252,0.6933001893939394,-0.007151378284801128,-0.023973158094625455,0.2977109966856061,1.9310948021885526,-0.30995494719796607,3.2507550874837334,-0.01110032150323355,-0.0033148489287405138,-0.140764601714158,-0.010149764086174235,-1.4071470194684632,1.1640625,0.032129711914062505,0.005387720528028214,0.11966378348214286,0.9608754960317462,-0.06437636796998872,5.7211004752720465,0.02714980612919767,0.02975345633370537,0.3382624574392514,0.019787619977678576,7.514008753868873,-0.78159375,-0.018709008398437487,-0.0027512142561651005,0.007400390625,0.14004513888888914,0.11078468124904108,-3.3525324366621043,0.005127930525273273,-0.01737867089843747,-0.1973082454561043,-0.016666476343749983,0.2112531355792802,1.3880208333333333,0.020000621202256944,0.0025817173591988225,-0.05422634548611111,0.016059027777778172,-0.11409535090893438,6.45408399080404,-0.017614573791903388,0.021718405490451394,0.007062328532235975,0.010163551215277787,2.5219924706963983,-0.8376430457746479,-0.05426329809914167,-0.0029007936790763204,-0.07903622909330986,-1.7145503227699528,-0.13994928746437413,-4.288856812310869,-0.008577965139621476,-0.048504770370268374,-0.5186595152835738,-0.026796957801496428,-4.733302602760561,-1.3358046343537415,0.001197405632174759,0.001232315755815758,-0.09533940529336735,-0.4073040674603173,0.08157141325174176,-6.120221719435915,-0.02051601530581492,-0.0016240973440156995,0.1892525416159262,0.00046176049638606796,-5.585938947887221,-1.2742002588757397,-0.013639177925064711,0.0016846382273258541,0.003688112518491124,-0.1726428952991453,-0.00047383281558126375,-5.927720012445393,-0.00955950684954981,-0.015060710839265877,-0.16826047189907145,-0.006757117580436385,-4.834744323057278,2.2752477134146343,0.010021999452172232,-0.0037029414866787125,0.021109232088414635,0.5891450711382114,-0.17046921598078024,10.395187599901151,0.013227652778410258,0.013978011266196596,0.06992855989034427,0.001181667016006081,6.279134222720603,,,0.463963963963964,1.0337837837837838,0.35135135135135137,0.013513513513513514,0.6824324324324325,-0.3310810810810811,1.1412888923736537,0.022952032407059127,0.0299250053800321,0.9987541324570073,0.20548801222610205,0.2692414029985441,2.140043024830661,0.4747294152246462,1.9906989043178027,1.1565040502929385,0.2715751871009112,0.45291026653167055,0.0,0.8341948540248645,8.705078428812513,2116.0,431.21170000000006,215.0,626.8888888888889,10595.379583217426,8397.359723,99.230284430923,433.25570000000005,389.9513031550068,528.4106859999999,14090.758368691957,2039.0,445.232,262.0,561.0,9920.338397790501,7840.759914999998,116.59090033999999,453.3116,235.9074074074074,539.6734759999999,17161.76603297823,3023.0,756.1623,401.0,795.0,17951.30090883855,11439.416403,163.90230697328198,763.7164,424.4783950617284,928.69604,23551.34438001079,3122.0,843.2965,429.0,831.0,20014.44446285023,11650.462334999998,181.919913487339,852.0064,455.47222222222223,1032.599902,26284.340086737586,3713.0,979.0417,461.0,944.3333333333334,23261.80474139697,13998.416185999999,191.932856736678,987.0854999999999,621.7407407407406,1199.968652,28521.62940765924,3851.0,1020.2897,440.0,878.0,23115.927441776446,14343.130764999998,186.563920089396,1024.9485,713.6172839506173,1238.26304,28510.210020650047,3414.0,989.6066000000001,450.0,799.6666666666666,23757.53975380931,12561.272181,201.72615224018801,998.1952,619.641975308642,1213.699766,28656.18884176459,3480.0,1112.1547,453.0,752.6666666666666,27516.945918216228,12535.240225999998,213.668941135527,1120.8935000000001,604.8148148148148,1382.86487,29133.28686101413,3365.0,1036.7264,425.0,699.7777777777778,27025.218363818203,12380.355114,197.785606146205,1046.3261,574.8398491083676,1303.695143,26600.63262171426,783.75,12.855810937499998,2.394072835024999,42.734375,332.19444444444446,99.96024612949545,3539.391697234375,19.14700116575236,11.620810937499995,151.13434499314127,8.456679749999997,3014.6337338708813,45.7578125,-0.47199096679687447,-1.58222843424528,19.64892578125,127.45225694444447,-20.45702651506576,214.54983577392642,-0.7326212192134143,-0.2187800292968739,-9.290463713134429,-0.6698844296874995,-92.87170328491857,130.375,3.598527734375,0.60342469913916,13.40234375,107.61805555555557,-7.210153212638737,640.7632532304692,3.0407782864701387,3.3323871093750013,37.88539523319616,2.2162134375000004,841.5689804333138,-97.69921875,-2.338626049804686,-0.34390178202063754,0.925048828125,17.505642361111143,13.848085156130134,-419.06655458276305,0.6409913156591591,-2.1723338623046837,-24.663530682013036,-2.083309542968748,26.406641947410023,199.875,2.880089453125,0.3717672997246304,-7.80859375,2.312500000000057,-16.42973053088655,929.3880946757818,-2.536498626034088,3.127450390625001,1.0169753086419804,1.4635513750000013,363.16691578028133,-118.9453125,-7.705388330078117,-0.4119127024288375,-11.22314453125,-243.4661458333333,-19.872798819941128,-609.0176673481434,-1.2180710498262495,-6.887677392578109,-73.64965117026748,-3.805168007812493,-672.1289695919996,-196.36328125,0.1760186279296896,0.18115041610491642,-14.014892578125,-59.873697916666636,11.99099774800604,-899.6725927570795,-3.0158542499547933,-0.23874230957030784,27.82012361754115,0.06787879296875199,-821.1330253394215,-215.33984375,-2.305021069335936,0.28470386041806933,0.623291015625,-29.176649305555557,-0.08007774583323357,-1001.7846821032714,-1.6155566575739178,-2.545260131835933,-28.436019750943075,-1.141952871093749,-817.07179059668,373.140625,1.643607910156246,-0.6072824038153088,3.4619140625,96.61979166666666,-27.956951420847957,1704.8107663837886,2.1693350556592823,2.2923938476562418,11.46828382201646,0.19379339062499729,1029.7780125261788,0.7371700520021587,0.6038832519180721,0.4503843170079978,0.32999378051246303,0.2927278602132194,0.1807569713364391,0.17074024543737487,0.09567516247016433,0.11370055844438924,0.05407877500778613,0.06895470112394565,0.03161225818635791,0.04294532022408821,0.017391204159774045,0.026651562378585843,0.009888825307831162,16.004890662025897,5.736987031245742,3.569876158097234,2.225203894034694,0.5886581988483943,-0.46384171260108537,3.2713661681690276,0.977202712912884,6.037705267226889,0.6502003701389705,14.557993356150636,10.311864554252825,32.06282464888982,11.750345939714677,2.936374399097056,0.7310575644792078,3.5168996242137815,2.278853865045643,7.01154404444736,0.6102174482064485,3.729570697926147,2.476120934319991,24.440906280466486,14.696427147508238,0.3050802113146598,0.6434076133807033,0.8353213651527587,0.8712158857393283,0.8712158857393283,0.8712158857393283,1.6360058899326022,1119.6389469514086,0.0,4.0,7.0,0.0,3.0,2.0,1.0,0.0,0.0,4.105618655065395,2.0047904296219015,0.8131109377704338,0.5902255861065209,0.5902255861065209,0.5902255861065209,223.2484638356786,3909.452294155991,107.58652024075099,61.085192096187356,130.69764767531493,,18.0,1040.0,47.74873713539383,19.178148736287287,28.841092755027248,11.325958136816055,11.336785877934737,43.1851897329532,13.847474399381248,0.0,15.456479851704078,29.518707876099015,17.166666666666668,38.25,13.0,0.5,25.25,0.0,0.036036036036036,-12.25,0.24032807632398762,0.02227328431372555,-0.21805479201026207,0.049121621621621814,0.22815094339622627,0.0,0.6786458333333321,0.9549549549549549,0.43831775700934444,0.6563725490196065,0.905833333333333,42.227689017825185,0.8492251990611877,1.1072251990611877,36.95390290090927,7.6030564523657755,9.961931910946133,79.18159191873445,17.564988363311908,0.4858490566037737,0.2466019417475728,0.0,0.40194174757281553,0.5238095238095238,0.36860263825227985,-1.6962994414671364,-0.07903223123970535,-0.026504678772924006,-0.08927891797195454,0.6313973617477201,2.9056737009664024,0.04761217810017316,0.04540115157760004,0.06457052668814225,-2.1741049313147633,0.7124836885602436,0.7630721555667218,1.7475165775377852,0.804121655309955,0.41489483006332234,1.4640921087995402,0.7102248418038094,1.0862136283563464,0.7260692633021024,0.642829681863486,0.8223177015241063,1.0188824110077184,0.9714114832535886,0.8234471789811975,0.9404218872436867,0.9872029250457038,0.8046868467263147,1.138882604572733,0.9509227759317078,1.0315179386154782,0.8074361204622258,0.5676236122464378,0.8451066078859142,0.8248325506163376,0.9755253588516747,1.0444589194161833,1.2580054451668732,1.1204095063985375,0.9494198511581237,1.0397326375622897,0.9707058484780333,0.9826281244391251,1.033268854005052,0.9284581448817271,1.0838710830926288,0.9502172885039751,0.8359250398724083,0.9605624596561937,1.1986634722042417,1.2387568555758683,1.0518437996488,1.103691691475965,0.8311684248291735,1.0453888415147112,0.9271039738916672,1.203132135184825,1.005076412376855,0.8978948545874679,0.993463171372734,1.608576110262408,1.2998604491677712,1.2042948734454257,1.5021958828815352,1.0950125814143135,1.0007674513445788,0.9546845117007249,1.5699994604105876,1.8987502504873701,1.6027434790756576,0.9608991136025032,1.0258373205741629,0.9606178473384558,1.0025216440752371,1.2535910159310524,1.0363981699377633,1.030018383725724,1.0271146084583769,1.0450920012521934,0.9644839568052491,0.9659841795060657,0.9646348413006214,1.0695492519306478,1.130828685484556,1.1039451902244166,0.9820785571367873,0.9551918479495473,1.0352085602138668,0.9781048632328724,1.1297478415955753,1.0655812585501496,1.1143948527465772,1.052595693816723,1.1057041624403476,1.0896786300424388,0.8861710818065118,0.8709352539367674,1.067490047388929,0.9888081330539084,0.8446144244869156,1.055923257974926,0.8807393315808463,0.9991713924154337,0.8556279159328195,1.032623342240062,0.8996077281177726,0.8990049342389144,8.5,0.3228221610039791,4.222222222222223,4.347222222222222,2.2494444444444452,2.1149999999999998,1.1126984126984127,0.8871527777777778,0.5777352607709749,0.5196913580246916,8950.287640928856,9777.094683021789,3847.8542947005685,3573.8466110279332,19.094835586591916,0.47220057309962327,10.078243279360132,0.8946591243433695,0.0,0.5238095238095238,1.8943813449346056,3.9952095703780985,5.186889062229566,5.409774413893479,5.409774413893479,5.409774413893479,0.21794871794871795,0.007336867295544981,0.07966457023060798,0.07762896825396826,0.03514756944444446,0.034672131147541,0.01918445539135194,0.016738731656184485,0.011110293476364903,0.011297638217928072,0.510729943062654,31.526627218934912,14.578512396694215,8.027777777777779,219.99497919998814,0.0,4.522479410608261,264.61025261929984,,211.27852525543287,209.31873638427192,215.91283488638595,211.3636998114561,375.7511103334753,213.4001340936504,215.67874274427697,307.7848510049497,0.056613986757527435,-0.035601660016032904,-0.6408669342092126,0.4458589551825384,0.37204134327639643,-0.1984500577856866,0.05878081416123698,-0.037103490518277826,-0.01825606944131501,-0.059608783894322316,-0.07681323175506927,-0.029873416539509492,0.09505582137161085,0.159951135910208,0.14402824707302825,0.17921128231914338,0.18512059058927527,-0.04121726095733928,0.10345010152550088,0.09074985566808337,0.16386302260647587,0.14324207563207786,0.14975235151495825,0.15952072546807272,-0.06382392344497607,-0.09313893486153327,-0.07354734986278219,0.011082998171846435,0.026980851241742668,0.07093039357619695,-0.06062117287386703,0.017140415398548586,-0.09571061292382363,-0.08355299855743406,-0.12613159272112667,0.004484856825281254,0.11334396597554491,0.09956896248455308,0.06901624235128974,-0.08121064391631119,0.0030939041725897573,-0.07305006480988602,0.11670405842173903,-0.0588777695746027,0.11961109761311697,0.0029906440265686425,0.07691757249974833,0.05354133615340306,-0.06840083563582451,-0.27013862409992895,-0.07754600977248294,-0.1183665061667997,-0.3303222630372081,-0.08960316470326356,-0.07755198052885057,-0.02867236306005638,-0.2671332767044406,-0.21963378992151078,-0.20279889389163305,-0.10048695573631189,-0.10908005945599931,0.005961036672968309,0.0329431115120543,-0.1427825243442898,-0.0784704884546008,0.052226466522985376,-0.11066709297814148,-0.06857601188852076,-0.008944490240486267,0.08014169554887704,0.0034945951179844973,-0.11858823466615334,-0.10404952672159151,-0.06789983078063928,0.045034906612491946,0.005523403610873727,-0.03326107791364084,-0.000303373604721975,-0.10718623798912737,-0.03195322510689091,-0.08294477028299184,-0.07125230338629696,-0.05113774411853881,-0.10264054077254568,0.18579375267436887,0.049892454708403956,-0.09898957612330243,0.03161367993935881,0.11350365782276435,-0.10914368706772015,0.1879678948542266,0.04421422292136741,0.07698195296765042,0.029612248845126074,0.008942834689274972,0.13330461532987367,0.552604724796058,8.238245157248269,16.892430849464738,22.26817907606396,46.10588146989054,51.11219667472742,51.33686510920462,51.33686510920462,51.33686510920462,73.6558594597587,42.79064986083872,10.048281922733715,16.75767986167181,0.0,30.865209598919986,16136.3844037629,14930.640567482485,2851.4368107558985,192.0,55.0,72.0,97.0,113.0,133.0,153.0,164.0,176.0,557.1250194440008,39.0,5.241747015059643,6.093569770045136,6.996681488176539,7.879669914604289,8.794673401383422,9.69467827290507,10.617049917838665,11.52861178876435,12.456469430683159,0.7604166666666667,1.0226875,1.1372604845674625,0.7253676317542251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6698298184880238,1.0065563725490199,1.0379870721048796,0.6392467910390802,1.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,7.0,0.0,5.0,0.0,0.0,1.0,0.0,2.0,1.0,5.0,1.0,4.0,1.0,0.0,0.0,0.0,34.83549648010534,29.916478491298527,10.843243482610035,6.290026729335213,11.814359458703011,14.48898409899412,14.573052889090853,0.0,23.098670827325854,5.15571272675054,19.420578929450514,25.166451118180863,12.71084835226122,313.13403732410796,-1441.0344297473255,-67.1391875114132,-22.51616296480196,-75.84391735512239,536.3825011597866,2468.417864408665,40.447332729337795,38.56902913138539,54.85373032019255,0.5,0.754234686276148,0.09376170740873176,94.11119983353036,0.11106662309942938,56.78976875299385,0.24576531372385196,9.0,0.2564102564102564,0.3157302241557676,0.665868261729683,0.8644815103715944,0.9016290689822465,0.9016290689822465,0.9016290689822465,0.8270000000000015,,4.214285714285714,3.450587005774703,2.5106546096533657,4.206608509165058,-11.48328160789249,3.1576652386780912,3.0804803758501107,-4.872415693396439,132.2531,42.96318913522411,0.0,15.200676855804016,5.15571272675054,44.580918358272086,32.31299813097696,22.34413460843948,0.0,0.0,4.3694478524670215,0.0,5.726847747587197,2.3978952727983707,7.277247726631484,4.59511985013459,8.934191535338075,6.555356891810665,10.658881567825121,48.66666666666667,1.5328232817654506,4.028494354896502,0.0,0.0,1.1151984081579112,0.0,0.42432901525738287,0.0,65.452,0.0,50.76162437650559,0.0,0.0,0.0,0.0,3.711699451039417,-2.829146953398796,72.7846710123176,11.050456081168516,9.926095663911155,0.0,89.92364104377698,38.16865195115229,0.0,26.465139593920334,21.805919340341557,0.0,0.0,0.0,46.42352843227041,42.869108383233524,45.21188283941992,529.2205052385997,,422.8693430053298,418.45095455201545,431.6899587127906,423.04221564587783,753.9184785777784,426.6295835798047,431.1909730358053,615.8359902030111,45.21188283941992,529.2205052385997,,419.33845497444173,415.1868857627693,429.3284995861933,419.5177598679287,763.041967251405,423.64260294862265,428.2770051127038,620.4421177032957,5.15574907336792,386.10132674889877,,315.6979939206917,311.13813669848184,318.82741326480436,315.82192412110754,557.5184972979438,317.2940621189308,320.9932787028982,457.3887081896339,1.2219427794437816,14.303256898340532,,11.428901162306211,11.30948525816258,11.667296181426773,11.433573395834536,20.376175096696713,11.530529285940668,11.653810082048793,16.64421595143273,2.5781615910413196,264.61025261929984,,211.27852525543287,209.31873638427192,215.91283488638595,211.3636998114561,375.7511103334753,213.4001340936504,215.67874274427697,307.7848510049497,64.41960784313727,0.0,7.335377770259223,0.0,0.0,5.64613163253497,0.0,66.4311726147123,0.38575153149283836,2.619552986568783,24.982117253041284,1.3320390036817706,-3.2711158310431023,1.225123719240783,0.0,0.0,0.0,40.911794626501134,640.7348398897994,121.24040607581476,255.6934125041983,331.96089998269224,346.22556248918266,346.22556248918266,346.22556248918266,1231.0,155.30315099946029,208.7816985940951,87.51498844459252,234.51,180.96999999999997,1.0,7.8811113648107485,6.285402218862249,4.051789024535121,5.9731167297716175,,5.974176072780332,5.9803395246975715,5.973839522962743,5.9741407668408435,5.930816309282861,5.979547086442531,5.979308218182765,5.957484555894659,0.10950781147392219,0.16143558729112478,,0.1614642181832522,0.16163079796479923,0.1614551222422363,0.16146326396867144,0.16029233268332055,0.161609380714663,0.1616029248157504,0.16101309610526107,2.7074913376858016,3.0956016761143963,,3.0957790121902753,3.0968101627062627,3.0957226765059134,3.0957731024140345,3.0884946807377975,3.0966776466913597,3.0966376983428407,3.0929811572573285,375.20000000000124,1621.5554160196189,260.0406799194817,,258.34870890878074,257.6673001336489,258.7567986509777,258.35394678959926,264.3194451658901,257.7697821950594,257.77200504488445,260.72545318120456,43.82582205458429,7.028126484310317,,6.982397538075155,6.963981084693214,6.993426990566965,6.982539102421602,7.1437687882673,6.966750870136741,6.966810947159039,7.046633869762285,8.699473920588854,6.869170899655701,,6.86264307692084,6.8600020380411735,6.864221438864201,6.862663351176297,6.885491210880597,6.860399689146515,6.8604083125011295,6.871800769813792,20.228584035804502,60.76877566787966,7.490011028319306,6.151283022518993,-1.8135851124040716,-0.9609937694213484,-2.7076827925432383,4.681400904493376,2.7149696035131488,473.82499472422774,266.01254346906285,-1224.182580595061,-57.035850171316866,-19.127852821797827,-64.43066213658214,455.66580568859547,2096.961799704257,34.36067809113338,32.765028120379014,46.599151104539025,4697.0,56.0,2.901932150788627,1.3012745727019424,0.0,0.0,0.57906036609335,0.2009659974686626,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.4502471114825046,0.27530866464423936,0.7840008863440658,0.43914296185018,1.1192816496307216,0.565888367143412,27.275291924079873,22.34368032096867,17.564988363311915,12.869757439986058,16.100032311727066,9.94163342350415,12.293297671490992,6.8886116978518315,11.028954169105756,5.245641175755255,7.7918812270058595,3.572185175058444,5.711727589803732,2.313030153249948,4.077689043923634,1.5129902720981678,5.784498464170125,2.4804130787996868,10.118909965133964,3.621237357937701,14.558008874028436,4.759808206359693,124.36197332359883,48.26665293200756,32.59652226339392,30.877302538352613,30.877302538352613,30.877302538352613,188.0,221.0,71.59141099999998,47.00858900000006,0.25,189.16,14.805555555555557,8.333333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,5.0,5.0,64.0,0.0,0.0,66.0,5.0,6.0,8.0,58.0,11.0,39.0,55.0,0.0,0.0,0.0,21.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,14.0,2.0,3.0,37.0,16.0,0.0,5.0,9.0,0.0,3.0,10.0,2.0,0.0,0.0,1.0,1.0,3.8815637979434374,6.2075834834852275,4.37260741275739,4.819272992650152,5.275880021429101,5.485315471225893,5.69035945432406,5.873525249243295,5.8998973535824915,6.0342845442909105 +18004026,Cc1ccc(-c2nc3ccc(C)cn3c2CC(=O)N(C)C)cc1,0,20.818181818181817,5.929879545454545,3.25,6.681818181818182,161.62579391935748,81.97526797727272,1.5136176136779314,6.016952272727272,3.4703282828282833,7.461685727272724,219.2252968844593,23.608695652173914,6.209782608695653,3.782608695652174,6.869565217391305,145.8020247318673,89.14224758695649,1.8270037067391314,6.361695652173914,2.9830917874396135,7.615613130434776,262.098954845705,20.11392405063291,6.117315189873417,3.6582278481012658,5.531645569620253,156.34013911868405,75.38570784810128,1.5743776328232535,6.225515189873419,2.735583684950774,7.589653063291139,222.57343391718078,18.591397849462364,6.131118279569892,3.3118279569892475,4.43010752688172,152.33859058399187,67.24612989247308,1.554408244586527,6.249865591397851,2.982676224611707,7.606695139784944,214.15205327713898,14.324561403508772,5.974078070175438,2.8157894736842106,3.6578947368421053,161.879659877927,50.30500856140349,1.2774494881787366,6.051387719298248,2.6413255360623777,7.535017403508773,169.00559123957888,16.47,5.921009000000002,3.03,4.33,159.62515206727176,60.47117211,1.34677995576074,6.012776999999999,2.675,7.461740920000002,183.35732607090108,17.827956989247312,6.147182795698922,3.021505376344086,3.763440860215054,155.95055290014244,64.13233120430108,1.483387585108538,6.251860215053764,2.995818399044204,7.634689118279574,204.27900802886302,14.0,5.959934579439249,2.4953271028037385,2.196261682242991,159.59410119711436,48.28104239252334,1.2944052795848968,6.047434579439254,2.820353063343718,7.515517757009346,169.69274331368686,10.989795918367347,5.839193877551019,2.122448979591837,1.1020408163265305,159.14716561853254,34.83849854081633,1.2274127164713058,5.925321428571429,2.516439909297053,7.430843714285717,151.22503045393276,6.925619834710744,0.08117701446280988,0.011430272532424917,0.6461776859504134,3.698347107438016,1.5266067589119137,33.16694379907025,0.2308218287448693,0.07997701446280985,0.9272698576675847,0.04324308057851239,51.641860069110315,0.4716133668702848,0.005344527039166364,-0.0051911967284506,0.3177551203736977,1.7048149478979517,-0.41126547310345485,2.1878665848230385,-0.02073887940508412,0.006599467750628739,-0.05528918133908251,0.0011084549946101237,-1.5993037819975948,1.4518255047599122,0.012954257113714809,0.00027642397416571715,0.011762475154304904,0.42535830107751854,0.32060147376601744,6.9769056805039815,0.05168878881775873,0.01346311787320844,0.07064441160744381,0.006332071320221769,11.638090946920292,-1.2618857193637243,-0.01132757653514617,-0.000983807621680926,0.016334533013418695,-0.46129920909979555,-0.3334322196845508,-6.073652863341993,-0.04871902071250732,-0.011571638118723936,-0.0699941435370321,-0.005602831311650234,-10.592972881792518,-0.35863418877772935,-0.00620982945483543,0.00019178420554827834,0.0691333188342758,0.08075975061620992,0.15571846023299676,-1.6372596762632297,0.016094257952733546,-0.0069313206829056204,-0.1569183159344643,-0.0026113006742061787,1.018363170608975,1.6998347107438014,0.020596485537190068,0.00102647844082548,-0.07845041322314046,0.49074380165289244,0.027447156162304864,8.060999798429753,0.023266846876430006,0.021421462809917337,0.1814738292011019,0.009262154876033052,8.231215373871185,-1.1836843508397756,-0.0155464914911579,-0.0001887060230560396,-0.2392861903492401,-1.0351017506442726,-0.09369511495217696,-5.65441433083955,-0.030884506070053053,-0.015078993934950725,0.008879267997669752,-0.007540065915755803,-7.2498464445327695,-1.368270641847532,-0.016479265949640828,0.00042796165278648034,-0.23942322545763497,-1.503359851703097,-0.06022603724408463,-6.524381315637791,-0.0300079924883604,-0.01659740528693907,-0.0640229021309098,-0.007750771317679773,-7.876453861872917,-3.0721875527070326,-0.029048860473941618,-0.0018671101834239444,-0.14756915162759318,-1.4840613931523021,-0.14046157233549597,-14.642726432419037,-0.058330409110496174,-0.03174779368358912,-0.24802202216974953,-0.012288931227863046,-17.67914863024315,,,0.47971014492753633,1.315217391304348,0.6739130434782609,0.0,0.6413043478260869,0.03260869565217391,0.7875026418621858,0.020078959312693333,0.03129635061704116,0.9560657379299333,0.266556893775113,0.20963430179798048,1.743568379792119,0.4761911955730934,2.028961627214159,1.6765867060381825,0.27642100820326904,0.07595391297270744,0.0,0.35237492117597646,6.981101415727286,916.0,260.9147,143.0,294.0,7111.534932451729,3606.9117909999995,66.59917500182898,264.74589999999995,152.69444444444446,328.31417199999987,9645.91306291621,1086.0,285.65000000000003,174.0,316.0,6706.893137665897,4100.543388999999,84.04217051000005,292.63800000000003,137.22222222222223,350.3182039999997,12056.55192290243,1589.0,483.26789999999994,289.0,437.0,12350.87099037604,5955.470920000001,124.37583299303702,491.8157000000001,216.11111111111114,599.582592,17583.301279457282,1729.0,570.194,308.0,412.0,14167.488924311245,6253.8900799999965,144.55996674654702,581.2375000000002,277.38888888888874,707.4226479999998,19916.140954773924,1633.0,681.0449,321.0,417.0,18454.281226083676,5734.770975999998,145.62924165237598,689.8582000000002,301.1111111111111,858.9919840000001,19266.637401311993,1647.0,592.1009000000003,303.0,433.0,15962.515206727176,6047.117211,134.677995576074,601.2776999999999,267.5,746.1740920000002,18335.732607090107,1658.0,571.6879999999998,281.0,350.0,14503.401419713247,5964.306802,137.95504541509405,581.423,278.611111111111,710.0260880000004,18997.94774668426,1498.0,637.7129999999996,267.0,235.0,17076.568828091236,5166.071535999998,138.50136491558396,647.0755000000001,301.7777777777778,804.1604,18157.123534564493,1077.0,572.2409999999999,208.0,108.0,15596.422230616188,3414.1728570000005,120.28644621418796,580.6815,246.6111111111112,728.2226840000003,14820.05298448541,304.72727272727275,3.571788636363635,0.5029319914266963,28.431818181818187,162.7272727272727,67.1706973921242,1459.345527159091,10.15616046477425,3.518988636363633,40.79987373737373,1.9026955454545451,2272.241843040854,21.6942148760331,0.2458482438016527,-0.2387950495087276,14.616735537190094,78.42148760330578,-18.918211762758922,100.64186290185978,-0.9539884526338696,0.303575516528922,-2.5433023415977956,0.05098892975206569,-73.56797397188936,114.69421487603306,1.0233863119834699,0.021837493959091653,0.9292355371900874,33.603305785123965,25.327516427515377,551.1755487598145,4.08341431660294,1.0635863119834668,5.580908516988061,0.5002336342975198,919.409184806703,-117.35537190082636,-1.0534646177685938,-0.09149410881632614,1.5191115702479385,-42.90082644628099,-31.009196430663224,-564.8497162908053,-4.530868926263181,-1.076162345041326,-6.509455348943985,-0.5210633119834718,-985.1464780067042,-40.88429752066114,-0.707920557851239,0.02186339943250373,7.881198347107441,9.206611570247931,17.75190446656163,-186.6476030940082,1.8347454066116242,-0.7901705578512407,-17.888688016528928,-0.2976882768595044,116.09340144942317,169.98347107438013,2.059648553719007,0.102647844082548,-7.845041322314047,49.07438016528924,2.7447156162304864,806.0999798429752,2.3266846876430005,2.1421462809917338,18.14738292011019,0.9262154876033052,823.1215373871186,-110.08264462809913,-1.4458237086776846,-0.017549660144211682,-22.25361570247933,-96.26446280991735,-8.713645690552458,-525.8605327680781,-2.872259064514934,-1.4023464359504174,0.8257719237832869,-0.7012261301652897,-674.2357193415476,-146.40495867768593,-1.7632814566115684,0.04579189684815339,-25.618285123966942,-160.8595041322314,-6.4441859851170555,-698.1088007732436,-3.210855196254563,-1.7759223657024803,-6.850450528007348,-0.8293325309917358,-842.7805632204021,-301.0743801652892,-2.8467883264462785,-0.18297679797554656,-14.46177685950413,-145.4380165289256,-13.765234088878605,-1434.9871903770656,-5.716380092828625,-3.1112837809917337,-24.306158172635453,-1.2043152603305785,-1732.556565763829,0.7200049327558942,0.6086281627164203,0.4380958999272461,0.3081046775231657,0.28840347172733105,0.17146452498727435,0.179428207548672,0.08527283982171037,0.10409026703780516,0.04213593632384613,0.06833053071154344,0.02304897767136001,0.04384827688048339,0.012256107266758166,0.028004007616317085,0.00655726165794321,8.02202347735451,5.685958347001264,3.5438066338305596,2.1854458051227565,0.3944606698891813,-0.44839264767456943,3.2761153881373524,0.9776550344928121,6.021984674360505,0.9938044495902255,14.560393379725365,10.946812549918583,16.010063890547713,11.697348162331906,1.9961566510962963,0.7518208116128933,3.489033068500264,2.2352722729297247,7.0082697069927296,1.3866106630205794,3.7019455160914028,2.4311626885133326,20.900544393218727,14.702709643234094,0.24686848218775093,0.5756007109281677,0.7333121239723087,0.8024619434547777,0.834055642158676,0.834055642158676,1.7266238070716815,860.2021521816744,0.0,3.0,2.0,0.0,8.0,1.0,3.0,0.0,0.0,4.038731275816945,2.146914281080378,1.2393028412041103,0.8413534092875894,0.6595352274694068,0.6595352274694068,242.1002353420835,913.1710656817106,33.57331257638225,20.753887856402514,40.398338444413454,,10.0,383.0,0.0,4.794537184071822,5.907179729351506,6.4208216229260096,28.16193619385864,5.563451491696996,18.99525369620486,29.654009514488717,31.18920547353706,4.9839785209472085,11.033333333333335,30.25,15.5,0.0,14.75,0.0,0.020289855072463697,0.75,0.11224941724941712,0.05438311688311681,-0.057866300366300305,0.0,0.10329889298892969,0.0,0.553787878787879,0.7855072463768115,0.44153846153846193,0.49940476190476224,0.7855072463768115,18.112560762830274,0.46181606419194665,0.7198160641919467,21.989511972388467,6.130808556827598,4.821588941353551,40.10207273521874,10.95239749818115,0.6107011070110703,0.21148036253776428,0.0,0.3897280966767371,0.2631578947368421,0.2862899532402393,-0.4615491687948224,-0.027311744930847707,-0.010489753836245964,-0.032967797771058745,0.713710046759761,1.150624655577963,0.03196084677432458,0.026150560354044613,0.0383541551859321,-4.767679893670326,0.8236516810210647,0.718296800013921,1.568591922637045,0.6739999304903902,0.46243016759776545,1.4341414962830148,0.8295632450227731,1.126927886549809,0.7020056769926795,0.6058794917456092,0.7192866131694549,1.0203775258449899,0.7502039213316818,0.8497554431252845,1.3519898662535965,1.3018041263191977,0.9967753341347856,0.9075988624069506,0.7495143422116098,0.7477055557178296,0.822073078864548,0.5566086831678495,0.8187307185643774,0.732397523033414,1.1273609721046012,1.1851343663703378,1.2894350480621604,1.0895713536697522,1.156430588093951,1.3098711365571545,1.1279006776738296,1.2056862032173348,1.1642019523807492,1.1537140091419564,1.215207610618815,1.1676945894967328,1.062036804421555,1.3173072265682406,1.0910792456654588,0.8755942614329588,1.0604601587768305,0.8978797815984775,1.0559230112073634,0.8796954482387999,1.2894382136287597,1.5535375877606965,1.3706575238180074,0.927078901794773,0.734476431980907,0.7395787570144065,0.987214677994043,1.2855315747402076,0.9367513966480449,0.9884704369353744,0.7367410364274827,0.8732109300968978,0.7213795673472816,0.6972005508533585,0.7651070942367838,0.8145616996960167,1.1417754125285497,1.3574055144354422,1.3986264008514784,1.463603310899667,1.3482219018441766,1.1604120497758645,1.1390933561815724,1.0958057091346731,1.3135219504376536,1.0795804077359725,1.3764831088329574,1.0815606643658964,1.1869047353511921,1.3556179645755897,1.0932771759282154,1.3427762462926853,1.4570563358220647,1.0432311638976626,1.1836476190822482,1.093161493316745,1.3320823664620616,1.3812927064279288,1.3910450374389185,1.10748894038688,1.4204571745165846,1.4211295814423277,1.1114240532185078,1.064846082317819,1.3185326644624331,1.043106349609284,1.4171286959139482,1.236119775758149,1.4478267027172158,1.6040389386757226,1.42221665057182,1.3151256192384324,5.5,0.0,3.1111111111111125,1.5763888888888888,1.4405555555555558,1.0630555555555556,0.7568707482993197,0.5182823129251701,0.22700144872763917,0.13156635802469138,4269.913544467443,4803.676088416194,2199.345495192111,1988.2620149778736,12.967517249299142,0.48517093494152286,6.676054781586353,0.9423922771073822,1.0,0.2631578947368421,1.4207003428203526,3.3125173375569195,4.220128777433187,4.618078209349708,4.7998963911678905,4.7998963911678905,0.22,0.0,0.08641975308641979,0.04378858024691358,0.04501736111111112,0.030373015873015875,0.022260904361744695,0.018510082604470363,0.013353026395743478,0.01879519400352734,0.49851791768294634,17.8112,7.486111111111111,3.9837030330466274,135.93731415834665,1.0,4.070012046303888,102.80535673862848,,78.78248530880015,77.73498141458884,76.9062466014965,78.7916395842846,95.76724296261031,78.33974889067335,78.845455582475,90.35524634748609,0.06809691812804827,0.06583793546158173,-0.45416211325884237,0.4917457338477047,0.46096672334223954,-0.26939843591193297,0.06596527548867405,-0.08984799885632612,0.0825170556184935,-0.0596257722408389,0.02563311817245782,-0.030969135888159492,0.2096311289689133,0.15958035903931428,0.024183498108340747,0.018203158991793998,0.11501308252598827,0.21000920629653547,0.21035720754890783,0.22393371155070038,0.16833733996745942,0.07618538554152915,0.14642970009329526,0.2253615754999042,-0.1822054558985807,-0.13954167457508235,-0.08607035561838985,0.025278701769767056,-0.12473118279569893,-0.21841395483025636,-0.18312368182419783,-0.2110676489196226,-0.14468704785304118,-0.07548411388362433,-0.1295659614600699,-0.20512376718453498,-0.051783695515638724,-0.07649738655614609,0.01677862054506863,0.10698809373553791,0.021836714691757325,0.102002994106999,-0.049364200879706194,0.06972589221846413,-0.08666640946104281,-0.16922615853077544,-0.06038655524240661,0.01971972290010737,0.24544152744630066,0.2537231219143451,0.08980349662823954,-0.12140687450039961,0.1326927374301676,0.01797919208864749,0.24304318924482038,0.10080002832898091,0.2678452422086666,0.19570767635817846,0.21418813720305216,0.15939037367855585,-0.17091385018092226,-0.1915134671315155,-0.016509319661515184,-0.37031020345014287,-0.27988226106806036,-0.06137475443837154,-0.17048342967910285,-0.133802362792083,-0.1885415958101639,0.009575710807643727,-0.17436468019585274,-0.14038701229643122,-0.19756652465817587,-0.20300408999632,0.03744107164308259,-0.37052227376976915,-0.4064950660470945,-0.03945091746286426,-0.19671337085392487,-0.13000500278302823,-0.20752719263679237,-0.06904451988976575,-0.17923726094415102,-0.15252072352413645,-0.44359748672738775,-0.3578458836675984,-0.16334782728298078,-0.22837240411752227,-0.4012769353551477,-0.0920090072413997,-0.44148555022514635,-0.25270750789765906,-0.39696147570439977,-0.2674755575400818,-0.2841826036318386,-0.3423414378681137,7.592501166647001,18.625694545535048,6.553105012248863,12.482257429786761,30.59820237970825,35.39157594684465,36.792981701489225,36.976254428761955,36.976254428761955,46.666117425925655,38.5614942388782,6.357683188675187,1.746939998372271,0.0,8.104623187047459,4107.953148517405,2808.3984300466636,1580.9355666612705,108.0,36.0,47.0,62.0,85.0,97.0,111.0,123.0,118.0,307.1684622920006,25.0,4.812184355372417,5.666426688112432,6.558197802812269,7.444833273892193,8.346404870435956,9.247154345098899,10.155063057844572,11.062959729461,11.974701590942729,0.6212121212121212,0.9673636363636365,1.1236850483557277,0.5816581012859424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6782070359281438,0.955525846702317,0.9918724756670863,0.629042766870825,7.0,1.0,0.0,0.0,0.0,1.0,5.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,9.300604337112272,5.647177220767728,0.0,5.907179729351506,0.0,4.794537184071822,4.9839785209472085,0.0,0.0,35.89528683400505,25.477292959539852,25.855639028664452,17.80867761262293,162.16098893434534,-261.4317016943564,-15.469979010378895,-5.941629583962646,-18.673692978168315,404.26122427642883,651.7393639873543,18.103333566003354,14.81225827243987,21.724645466245143,0.5,0.9292484369665185,0.21615830412599663,5.344226869390571,0.14116875841108564,14.726057218599037,0.0707515630334817,5.0,0.12,0.26022861756714644,0.606751319358725,0.7729978269215053,0.8458899262671604,0.8791934264332758,0.8791934264332758,3.2488400000000013,,0.6785714285714287,0.8427175430432758,0.8488829422512447,0.6767661145452564,-2.636839718884606,0.7422735618115056,0.6692837795551935,-1.356968362788312,92.50000000000003,4.794537184071822,0.0,14.28458285805948,0.0,20.268296022307258,14.09534396535438,59.41587696062519,0.0,11.257379486545457,3.9318256327243257,0.0,5.272999558563747,2.3978952727983707,6.799055862058796,4.844187086458591,8.409830673087738,7.050122520269059,10.069044362997353,27.333333333333336,14.346473975392627,4.758307823129251,0.0,0.0,0.0,0.8682695578231294,5.207173091458807,2.033654572940287,42.56400000000001,0.0,12.261272570756697,0.0,0.0,0.0,0.0,0.0,0.07098870412362501,49.44214212765202,0.0,0.0,0.0,34.287106552765366,11.21535880699783,13.847474399381248,16.82083097824245,42.595045982382736,0.0,16.904556707313183,0.0,25.592956456581465,29.841109580838328,29.25732943158876,205.61071347725698,,157.51142744394383,155.4217841739323,153.80177142008907,157.52979860148326,192.222357156234,156.6284644680559,157.63716791555404,181.0644844417866,29.257329431588758,205.61071347725698,,156.9508684377327,154.72562620359227,153.10052029388163,156.9707309416416,194.1713256441052,156.01528196047252,157.08428131505195,182.06746105776048,4.8444240925751565,139.41319921946436,,108.4458549038254,107.27641228709363,106.35905507562254,108.45610737676094,128.08630540150958,107.95131934920022,108.51625980536377,121.67151352208987,1.2720578013734245,8.939596238141608,,6.848322932345384,6.757468877127492,6.687033540003872,6.84912167832536,8.35749378940148,6.809933237741562,6.853789909371915,7.87236888877333,2.5029976959378257,102.80535673862848,,78.78248530880015,77.73498141458884,76.9062466014965,78.7916395842846,95.76724296261031,78.33974889067335,78.845455582475,90.35524634748609,42.04313725490195,0.0,7.667211173049466,0.0,0.0,0.0,0.0,43.642388929351796,0.3341565098261525,0.0,0.0,0.0,0.0,1.6191586881666247,0.0,0.0,0.0,27.677881742316302,526.3469562892278,62.51081508409551,145.75076285250447,185.68566620706022,203.19544121138716,211.1954412113872,211.1954412113872,835.0,123.26792571397249,40.075256921546284,71.77496096895797,37.61000000000001,37.61000000000001,1.0,9.13418210228282,5.643856189774724,4.003219925785358,4.712319127055297,,4.699672976975498,4.699594649563114,4.699538590166019,4.699673683590476,4.694254085892748,4.699653755831954,4.699674835176488,4.696666716854526,0.1740530402515373,0.20488344030675204,,0.2043336076945869,0.20433020215491798,0.2043277647898269,0.20433363841697724,0.2040980037344673,0.20433277199269365,0.20433368848593425,0.2042029007328055,2.2200081416775395,2.383089293445916,,2.3804020498634455,2.380385383158017,2.3803734545267985,2.380402200217508,2.379248348829247,2.3803979599655003,2.3804024452527908,2.37976217086343,247.39999999999986,188.37977107632318,131.63076234904497,,132.64303845090612,132.65070881986406,132.70377734230104,132.64311199147446,133.13042361744382,132.64756545613787,132.64253913005146,132.87468583799176,8.190424829405355,5.7230766238715205,,5.767088628300266,5.7674221226027855,5.769729449665262,5.767091825716281,5.788279287714949,5.76728545461469,5.76706691869789,5.777160253825729,6.071369107106206,5.712909870961248,,5.720570721560517,5.720628547039172,5.721028529145463,5.720571275984999,5.724238399357221,5.72060485021163,5.720566957157949,5.722315595251932,2.033654572940287,18.638739082052574,0.0,6.075442649281936,0.07098870412362501,12.306497123540774,2.3741333616780045,4.106974022633745,3.560237150415722,288.099638520521,91.8515862486397,-148.0807230771762,-8.762539749383034,-3.365470979026732,-10.577194505512587,228.9825373699519,369.1596529862994,10.254130264948513,8.389992113324986,12.30532176620998,1137.0,36.0,1.887967486715671,0.9620665771508929,0.0,0.0,0.4828961349945813,0.1403497316750008,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.025,0.3634023029066286,0.10833953491251952,0.6685434149566991,0.1744051749154307,16.560113453385565,13.998447742477667,10.952397498181153,7.702616938079143,10.382524982183918,6.172722899541877,8.433125754787584,4.007823471620387,6.45359655634392,2.61242805207846,5.808095110481192,1.959163102065601,4.253282857406889,1.1888424048755422,3.1084448454111966,0.7278560440316963,4.153265065796269,1.606489143267038,5.410897185264047,1.7710582734242823,8.927748980641018,2.424093923169806,76.87459680911385,40.53051912720556,28.158592785550134,24.821506555023376,23.89743138775598,23.89743138775598,122.0,144.0,49.83465299999998,26.495346999999995,0.3409090909090909,119.04,8.25,4.972222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,16.0,44.0,0.0,0.0,46.0,16.0,1.0,8.0,38.0,17.0,25.0,29.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,3.0,0.0,2.0,23.0,4.0,0.0,3.0,1.0,0.0,3.0,3.0,0.0,0.0,0.0,2.0,3.0,3.5553480614894135,7.919793594985396,4.21582445975981,4.8352893510387265,5.476725024020855,6.101019379309329,6.503703234529104,6.97221811366181,7.425141367015084,7.685087417584815 +6758,C=C(C)[C@H]1Cc2c(ccc3c2O[C@@H]2COc4cc(OC)c(OC)cc4[C@@H]2C3=O)O1,0,24.19607843137255,6.3476470588235285,3.6862745098039214,8.901960784313726,158.76796567487213,95.61247445098041,1.5252040766015291,6.412531372549018,4.056100217864923,7.869575921568626,229.86423097061157,26.4,6.45,4.418181818181818,8.327272727272728,142.63542720415998,100.98128140000001,1.8288457239999998,6.599399999999998,3.1883838383838383,7.870035999999998,275.8473076631036,22.979591836734695,6.460000000000002,4.183673469387755,7.1020408163265305,151.4601139368662,86.89541614285712,1.575894558961102,6.5645561224489795,3.005668934240363,7.957191183673471,237.74237304159345,22.512396694214875,6.532975206611571,3.8925619834710745,6.768595041322314,150.5691264575574,83.94203676859505,1.5419125276454047,6.63349338842975,3.3578971533516992,8.019186016528925,229.68377297150226,19.428571428571427,6.409,3.3142857142857145,5.485714285714286,154.25245727331813,70.95575421428572,1.3984968437706145,6.493066428571428,3.304761904761905,7.938093771428571,201.99803671800234,16.84027777777778,6.205208333333334,3.1180555555555554,4.527777777777778,156.9309798233023,60.58062449305554,1.2970943917029514,6.28419236111111,2.985532407407407,7.772924638888889,181.51702727008535,17.650793650793652,6.316190476190476,2.9761904761904763,4.603174603174603,155.99464090838634,63.495877761904765,1.3082763148379681,6.393307936507937,3.209435626102293,7.867243047619048,184.61328967590342,14.555555555555555,6.185476190476191,2.6666666666666665,3.611111111111111,161.16584341863867,50.9102795952381,1.1663661877283495,6.241391269841269,2.8461199294532626,7.792362380952381,158.78415834166836,14.235294117647058,6.0069607843137245,2.6470588235294117,3.0686274509803924,159.32662208621693,50.00054877450981,1.1922315942193726,6.082588235294116,2.815904139433551,7.612207568627451,160.87613117996685,7.562475970780469,0.15633217993079582,0.031231028476855976,0.7089580930411379,4.582083813917723,1.3584961569886418,35.801054639753936,0.23669215043047362,0.14389004229142632,1.1349053782733134,0.10559466974240675,49.85906444785216,0.6179161860822765,0.0010795847750865017,-0.009045310008869836,0.36804725455244486,1.6125685924993882,-0.15536614696066925,2.8811995798539,-0.02139986095583048,0.0038997616301422165,-0.07443795898236495,-0.003215532487504829,-0.09048639722380794,0.9097129047697513,-0.01837299625732646,-0.0050154297271238595,0.08295867366554462,0.22383855502985492,0.20944166878889664,4.5273668072248485,0.04174583202597933,-0.013213651735203917,-0.07841611590169835,-0.01602927558474374,10.476875976155544,-0.3574848834364401,-0.004781377791758409,0.0018285345859081956,-0.046342633634234826,-0.21407214644081607,-0.09862253039799113,-1.720432503957474,-0.017105863190095747,-0.004466723542439199,-0.049001779000730425,-0.003287178574038643,-3.2898356503227384,-0.5854451584555389,-0.0008195748887790358,0.0003658198008865234,-0.04341187455374309,-0.23026308562640757,-0.08213927692450447,-2.823564626588675,-0.016435002169786536,-0.0021059526555720397,-0.020580759536930227,0.0009144417421870365,-4.484974509155794,-0.11653370498526207,0.00027321222606689854,-0.0016298608626004682,-0.0756519928232731,-0.27434960912469575,-0.04729321085747653,-0.5769097618944636,-0.008289493944445479,0.00012775454953223007,-0.027822498825238146,0.0002154233948481344,-1.5486519769000038,-0.6088500759781035,0.0070851870159828675,0.00017102949906874917,-0.08570879332125006,-0.1989527837278703,-0.17511537002720381,-3.0158443733362623,-0.03269871334575345,0.0048220803354021334,0.04686918340320879,0.006287023379286337,-7.205490541481711,-0.30539536075868257,0.0007826660075795063,0.002179151529050015,-0.052873436956481924,-0.16829607660057486,0.10691592498561178,-1.4189710726826668,0.015185616627379108,-0.0010439327364932809,0.043017642786962275,0.002923755405430141,0.5163747748901536,0.12072279892349075,-0.006274509803921573,-0.00036247935374394063,-0.059592464436755074,-0.2731641676278354,-0.0863887097845948,0.5755254752018456,-0.012110965933124574,-0.004164801999231057,0.04551668161818103,-0.006280304498269868,-0.5076470675637139,,,0.4655172413793104,1.1982758620689655,0.5344827586206896,0.034482758620689655,0.6637931034482759,-0.12931034482758622,0.9404865195066412,0.013884248678481982,0.028711834885378533,0.9759639332218637,0.24107168217212258,0.24208591612777805,1.916450452728505,0.4831575982999006,2.084597621740441,1.6742457571298084,0.0,0.4103518646106322,0.0,0.4103518646106322,7.728267420078441,1234.0,323.72999999999996,188.0,454.0,8097.166249418478,4876.236197000001,77.78540790667799,327.0390999999999,206.8611111111111,401.3483719999999,11723.07577950119,1452.0,354.75,243.0,458.0,7844.9484962288,5553.970477000001,100.58651481999999,362.9669999999999,175.36111111111111,432.8519799999999,15171.6019214707,2252.0,633.0800000000002,410.0,696.0,14843.091165812888,8515.750781999997,154.437666778188,643.3265,294.55555555555554,779.8047360000002,23298.752558076158,2724.0,790.4900000000001,471.0,819.0,18218.864301364443,10156.986449,186.57141584509395,802.6526999999998,406.3055555555556,970.321508,27791.736529551774,2720.0,897.26,464.0,768.0,21595.34401826454,9933.80559,195.789558127886,909.0292999999999,462.6666666666667,1111.333128,28279.725140520328,2425.0,893.5500000000001,449.0,652.0,22598.06109455553,8723.609926999998,186.781592405225,904.9236999999998,429.91666666666663,1119.301148,26138.45192689229,2224.0,795.84,375.0,580.0,19655.32475445668,8000.480598,164.84281566958398,805.5568000000001,404.3888888888889,991.272624,23261.274499163832,1834.0,779.37,336.0,455.0,20306.89627074847,6414.695229000001,146.96213965377206,786.4152999999999,358.6111111111111,981.83766,20006.803951050213,1452.0,612.7099999999999,270.0,313.0,16251.315452794128,5100.055975,121.607622610376,620.4239999999999,287.22222222222223,776.445172,16409.36538035662,385.6862745098039,7.972941176470586,1.5927824523196548,36.15686274509803,233.6862745098039,69.28330400642074,1825.8537866274507,12.071299671954154,7.338392156862743,57.880174291938985,5.3853281568627445,2542.8122868404603,33.985390234525205,0.05937716262975759,-0.49749205048784095,20.242599000384466,88.69127258746636,-8.545138082836809,158.46597689196452,-1.1769923525706765,0.2144868896578219,-4.094087744030072,-0.1768542868127656,-4.976751847309437,89.15186466743563,-1.8005536332179932,-0.49151211325813826,8.129950019223372,21.936178392925783,20.52528354131187,443.68194710803516,4.0910915385459745,-1.2949378700499838,-7.6847793583664386,-1.5708690073048865,1026.7338456632433,-43.25567089580925,-0.5785467128027675,0.22125268489489167,-5.607458669742414,-25.902729719338744,-11.933326178156927,-208.17233297885434,-2.0698094460015852,-0.5404735486351431,-5.929215259088381,-0.3977486074586758,-398.07011368905137,-81.96232218377544,-0.11474048442906501,0.05121477212411328,-6.077662437524032,-32.23683198769706,-11.499498769430625,-395.2990477224145,-2.3009003037701152,-0.29483337178008556,-2.8813063351702315,0.12802184390618512,-627.8964312818111,-16.780853517877738,0.03934256055363339,-0.23469996421446743,-10.893886966551326,-39.506343713956184,-6.81022236347662,-83.07500571280276,-1.1936871280001489,0.018396655132641132,-4.006439830834293,0.031020968858131354,-223.00588467360055,-76.71510957324104,0.8927335640138413,0.021549716882662395,-10.799307958477508,-25.06805074971166,-22.06453662342768,-379.9963910403691,-4.120037881564935,0.6075821222606688,5.9055171088043075,0.7921649457900785,-907.8918082266956,-38.479815455594,0.09861591695501778,0.2745730926603019,-6.662053056516722,-21.205305651672433,13.471406548187085,-178.790355158016,1.9133876950497675,-0.1315355247981534,5.420222991157247,0.3683931810841978,65.06322163615935,12.313725490196056,-0.6400000000000005,-0.036972894081881945,-6.0784313725490176,-27.862745098039213,-8.81164839802867,58.70359847058825,-1.2353185251787064,-0.42480980392156786,4.642701525054465,-0.6405910588235265,-51.780000891498815,0.6994388997419712,0.5728366196782829,0.42459304093021577,0.2905959802375581,0.2609217751425144,0.15260305847835864,0.16223086422005611,0.07931070318739593,0.09939990790062098,0.040950903601832706,0.061569981901771036,0.02166312835314043,0.03918866365841344,0.011461978859366631,0.02424722242769553,0.006020967326250635,8.02304284172846,5.685065601060155,3.5441357980081176,2.1834517869055703,0.4452090612790923,-0.5282790421325134,3.272236931525195,0.9726842930708913,6.022684759412553,0.9953549047002183,13.637931251951702,10.94563884166855,16.011991731183194,11.69699509210266,2.003490484991906,0.752716854251055,3.4892724266771094,2.233097376785422,7.00827106312592,1.1911804008883287,3.7023505569501842,2.4291600708110708,20.90769600004405,14.702193284262052,0.2349894927409438,0.572641076436588,0.8169137497429756,0.8497177063724215,0.8562784976983105,0.8628392890241997,1.3468483189779863,1040.1489593987324,0.0,1.0,2.0,0.0,10.0,3.0,4.0,1.0,0.0,4.267827364777622,2.2495893324156966,0.7895031864017721,0.5934247550292229,0.5542090687547141,0.5149933824802044,282.68377048988987,1892.2188603123755,74.8961250688631,37.1023305943603,78.75508720508232,,14.0,670.0,12.021872433909696,4.794537184071822,18.494093298626158,34.982320447758624,22.449519346747163,0.0,26.35232921947829,19.056471336613843,6.578935683598497,23.684314769000245,13.500000000000002,34.75,15.5,1.0,19.25,0.0,0.03448275862068959,-3.75,0.17081161578555498,0.06841628959276069,-0.10239532619279429,0.0,0.17183132530120449,0.0,0.6176470588235294,0.858620689655172,0.44683544303797446,0.5492307692307687,0.858620689655172,27.274109065692596,0.4026432116759775,0.8326432116759774,28.302954063434047,6.991078782991555,7.020491567705563,55.57706312912664,14.011570350697118,0.5421686746987955,0.1728395061728395,0.0,0.4814814814814814,0.34782608695652173,0.27697748345879625,-0.8269774440502152,-0.07058397169536011,-0.016215244000984612,-0.06891478700418462,0.7230225165412036,2.1587433940598553,0.04759417672183019,0.042328301844310884,0.05535239471948346,-5.396232275761335,0.7000508388408745,0.7400029511583296,1.2324475480633355,0.6285742457109053,0.45126546552960384,1.1902442208782031,0.7066178132385417,1.145805607048683,0.7066261776635371,0.6945732402125674,0.8095105577632322,0.9530854950420893,0.798999823620348,1.1595341988056842,1.359768554123732,1.058313781043871,0.9606460473096774,0.8713348782602721,0.7915485466632168,0.827524659153403,1.1133333236997593,0.8376540099233128,1.2273968273324696,0.7296891175492792,0.961043162596058,1.1096416293808542,1.1617350792107006,1.205719689500009,1.0609689628438963,1.0978066933138808,0.9596117699657843,1.0709698728358996,1.0843318122041499,1.06791825563747,1.1513611929735739,0.9903040843863881,1.0334083811460528,1.0858154682855876,1.0904430838958832,1.0371475054229937,1.054527365569487,1.0610717597096895,1.0325881902215792,1.053295718003091,1.078094761596851,1.211966107254435,1.097884548389882,1.0326058282576995,0.99029825453313,0.977263784368698,0.9823774705740204,1.1283780730296458,1.053466045757118,1.0174360789048074,0.9910238101437276,1.016577421209982,0.9771904786715758,1.2326245122394952,0.9786352973692228,1.0088915962205982,1.0535744546929091,1.003393832079091,1.044292484892434,1.0810479289329615,1.0316028576223242,1.115549974772444,1.055716112225813,1.1157333330971522,1.0056022914164888,1.1338079195995032,1.0032101509229472,1.1021755279608985,1.0767242840196576,1.0862634119606227,1.0148155273558808,0.9767844230967877,1.0655650916181207,0.8791333370055904,1.073468357451613,0.8943523208114273,1.096732607936109,0.9101315272975605,1.0624111238962257,0.9670174627902234,0.9754702592780884,0.9219295656878655,0.8202244612350761,1.0710412147505426,1.0089780164457125,1.0286078464009671,0.9775561943892139,1.029869700213106,0.9250470263828695,1.1186340196484361,0.9200639095905804,1.0203030951116405,6.0,0.15671870217324763,4.000000000000002,2.5069444444444446,3.058888888888889,1.298611111111111,0.9927891156462585,0.5477607709750566,0.32753842277651796,0.2071913580246914,6188.141988295123,6811.381757657109,2900.4912790115923,2681.6540423847546,14.623342980799135,0.4264575919017429,8.38710734765428,0.7435502342639044,1.0,0.34782608695652173,1.4045979771938728,3.4228360095557986,4.882922155569723,5.079000586942272,5.118216273216781,5.157431959491291,0.18181818181818182,0.009794918885827977,0.08000000000000004,0.043981481481481476,0.05664609053497943,0.027630023640661944,0.02363783608681568,0.01659881124166838,0.012131052695426591,0.010359567901234571,0.46259796428627786,20.877869605142333,8.1648,3.4565376186997807,168.5250123387299,1.0,4.333446273469605,151.89910140226158,,121.13126737995037,119.34396155372305,124.99462265778857,121.168074162415,156.72842021425654,120.69436433428102,121.20670535227987,140.52080900169122,0.08170818505338084,0.006905710491367841,-0.2896257488149307,0.5191382370341157,0.3519290912142062,-0.11436627638687405,0.08047806437117024,-0.09041221230577527,0.027102373229162525,-0.06558957284669634,-0.030451655328332102,-0.0018148434637887782,0.12029299772781511,-0.1175253633990117,-0.16059124440428169,0.11701491876577093,0.04885082074447497,0.15417170502209065,0.12645903459496427,0.17637184820052507,-0.09183159254649305,-0.06909484914152358,-0.1518000446788309,0.21012981475240797,-0.04727087858760451,-0.030584731779950875,0.058548650975847535,-0.0653672397411306,-0.04671938688475941,-0.07259684165511827,-0.048055358180624216,-0.07227051323411106,-0.031042617482817628,-0.0431769731105544,-0.03113015630483585,-0.06598269916924722,-0.07741448180695763,-0.005242521975589673,0.011713344668031582,-0.06123334366284479,-0.050252918754345205,-0.06046338556200363,-0.07886819690091905,-0.06943619439806553,-0.014635847081806874,-0.01813433959423344,0.008659923312585515,-0.08995304181542858,-0.015409464497542788,0.0017476390733362926,-0.05218722988288044,-0.10670869486623286,-0.0598744196453544,-0.03481291471763209,-0.01611432310303663,-0.03502225962867514,0.0008878623391706537,-0.02451525859148567,0.0020400972451890768,-0.031060590367068486,-0.08050935676761806,0.045321360062395954,0.005476268551177943,-0.12089401921289124,-0.0434197172743909,-0.12890383909173467,-0.084238981328428,-0.13814870195857396,0.03351225879575307,0.041297877603256476,0.05953921153996917,-0.14451716295274591,-0.040382985934587355,0.00500642930921818,0.06977520867315957,-0.074579072409875,-0.03672915717721893,0.07870167643507414,-0.0396348958699955,0.0641576689373134,-0.00725507283109252,0.037904166823502845,0.02768847530431702,0.010356688008661543,0.015963396034570383,-0.04013575328316368,-0.011606385425717219,-0.08405639913232103,-0.059615707333445206,-0.0635914274325894,0.016075657016058262,-0.051167585875147435,-0.028944337863185246,0.04010614672337863,-0.05947558256103624,-0.010181640453656415,3.40472746324175,22.861643443629692,22.513086043647665,12.561847328248586,33.09551250515856,41.62263217352708,42.25176942842904,42.87918119313491,43.35020080097806,60.45333103047278,48.553126956764444,0.0,11.900204073708334,0.0,11.900204073708334,6472.784402350412,6150.078978867604,1684.3887217767979,428.0,50.0,74.0,106.0,150.0,189.0,238.0,306.0,376.0,394.1416384240005,33.0,5.117993812416755,6.028278520230698,6.959398512133975,7.889459149404524,8.826587830773668,9.76313293456348,10.703311881612331,11.642891760180254,12.584957610782993,0.6797385620915032,0.9952941176470589,1.1142059322419056,0.6438917920011233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6797164024891394,0.981853133410227,1.0147094526084288,0.651939224865603,4.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,0.0,2.0,0.0,5.0,0.0,3.0,0.0,0.0,0.0,0.0,23.684314769000245,36.06335023986124,17.28226861293275,0.0,0.0,4.794537184071822,0.0,0.0,0.0,6.578935683598497,30.69594293514472,23.61409167478161,25.700952620413453,175.5361758517063,-524.1020180825932,-44.73302419065325,-10.27651015848222,-43.675168173549444,458.21994634159614,1368.1168422297824,30.163100878209846,26.825820435878082,35.079919031532874,0.5,0.8514729316002966,0.1650704108727937,74.40688192795508,0.05947178392027633,46.077555398664565,0.14852706839970345,7.0,0.09090909090909091,0.24761859213923015,0.6034166698025091,0.8608173508146386,0.8953842987340274,0.9022976883179049,0.9092110779017826,3.7033000000000023,,1.5,1.714285714285714,1.0388051152698072,1.4955934745921624,-6.493765586034913,1.552325581395349,1.4909688013136289,-2.393966868348154,105.90450000000007,28.478851953072066,0.0,0.0,0.0,31.470397644274627,20.826477047067986,53.10786296260519,0.0,28.747559166419524,4.204692619390966,0.0,5.58724865840025,2.3978952727983707,7.181591944611865,4.727387818712341,8.877800393882575,6.86171134048073,10.62975514642929,34.666666666666664,7.2251506052502625,0.0,0.0,0.0,0.0,0.0,5.3830108016564635,0.0,50.760000000000005,3.9933602261694308,13.517073019022423,0.0,0.0,0.0,0.0,0.0,0.9727099973506004,56.824502544337186,23.684314769000245,0.0,28.747559166419524,38.81765476892953,6.4208216229260096,0.0,34.326534905014825,36.417508487514205,0.0,0.0,0.0,32.83848139205729,34.66553652694611,38.390102873402064,303.79820280452316,,242.15908648403865,238.5696965064609,249.91760358348955,242.23300394727192,315.69606994093897,241.2816717319141,242.31058526998638,281.8671238200542,38.390102873402064,303.79820280452327,,240.76253475990075,236.9736373931604,248.95044020030724,240.84055485023777,319.9506060145481,239.83640308716673,240.92244190324607,283.4355848717306,5.127789346882031,225.6819067557114,,181.91790113228234,179.172521837712,187.86634366788235,181.9744833080885,222.37659997131163,181.2463984397624,182.03387203062604,204.31180749923672,1.3237966508069676,10.475800096707696,,8.350313327035815,8.22654125884348,8.617848399430674,8.352862205078342,10.886071377273758,8.320057645928072,8.355537423102978,9.719555993794971,2.574525824572482,151.89910140226158,,121.13126737995037,119.34396155372305,124.99462265778857,121.168074162415,156.72842021425654,120.69436433428102,121.20670535227987,140.52080900169122,50.07450980392157,0.0,5.0850133977923555,0.0,0.0,0.0,0.0,51.75018208302987,0.938235815344401,0.0,29.003661577776487,0.0,-0.9515487736957597,0.0,0.0,0.0,0.0,33.24890046814575,539.6261832835671,71.63449683688751,174.56463648734572,249.02902993405587,259.02902993405587,261.0290299340558,263.0290299340558,1979.0,141.51601201209868,94.12993890973546,79.4680831947064,63.22,63.22,1.0,9.078247230287039,6.044394119358453,4.724212712655196,5.290391597907956,,5.2872404689058365,5.28796368065407,5.285434214771299,5.287224770296702,5.2511838057690285,5.287424398729496,5.2872082598874535,5.274874566122303,0.16290388664328262,0.18242729647958467,,0.18231863685882194,0.18234357519496794,0.18225635223349307,0.1823180955274725,0.1810753036472079,0.18232497926653435,0.18231752620301564,0.18189222641801045,2.6174116623949275,2.730603006192399,,2.730007196265294,2.730143971260676,2.729665512782892,2.7300042271110567,2.7231642749907787,2.730041983149981,2.7300011044076076,2.727665637137675,281.4500000000006,258.0895167049004,193.1692727906486,,192.72032189721955,192.61006798895437,192.9814805706144,192.72266771496456,198.40266348859365,192.6927029439225,192.72513296462256,195.2326707627173,8.89963850706553,6.661009406574089,,6.645528341283432,6.641726482377737,6.654533812779807,6.645609231550502,6.841471154779091,6.644575963583535,6.645694240159399,6.732161060783356,6.618017225708448,6.32827760259542,,6.3259507655821015,6.325378509076163,6.32730496570061,6.325962937642864,6.35500935659479,6.325807444253738,6.32597572925643,6.338902767677148,29.003661577776487,13.517073019022423,0.0,3.2185661825448086,2.6819369398854507,7.2251506052502625,0.15741145795837586,6.220912636771638,3.1419542474572166,354.4315144847599,111.24712611241902,-332.15286261370835,-28.3498279450476,-6.512801227719772,-27.679405217809038,290.3996963050732,867.0524246388931,19.11604984589967,17.00102793409594,22.232113452279307,2115.0,57.0,2.181225588126137,1.0565651831962686,0.0,0.0,0.7408278013590694,0.2281964428454138,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.041666666666666664,0.39118008068440646,0.14845620120179645,0.9528924602700103,0.2779811168114068,20.283728092517162,16.612261970670204,14.01157035069712,9.589667347839418,13.046088757125721,7.630152923917932,12.005083952284153,5.868992035867299,10.536390237465824,4.340795781794267,9.235497285265655,3.2494692529710645,7.40665743144014,2.1663140044202933,5.770838937791536,1.4329902236476513,5.989518749490444,2.3499248032512408,9.981683347575713,3.249591419097089,17.003125584716393,4.637332487986654,100.44648327973368,52.44152468249253,29.0539047204498,27.482567304620076,26.33043386400156,25.466333783537685,166.0,207.0,57.89144599999998,31.618553999999996,0.4117647058823529,277.06,9.194444444444443,6.277777777777776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,12.0,12.0,51.0,0.0,0.0,55.0,12.0,2.0,8.0,47.0,14.0,33.0,41.0,0.0,0.0,0.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,6.0,0.0,3.0,29.0,6.0,0.0,0.0,6.0,0.0,5.0,3.0,0.0,0.0,0.0,0.0,2.0,3.7376696182833684,7.921717038029739,4.356708826689592,4.962844630259907,5.544200404831736,6.122218649128844,6.480619549963578,6.855902617651749,7.2443837533975906,7.605594559404585 +4917,CN1CCN(CCCN2c3ccccc3Sc3ccc(Cl)cc32)CC1,0,29.306122448979593,5.7836163265306135,3.2244897959183674,5.062232300327538,160.8800039556934,118.01637148979592,1.698798157477061,5.930138775510204,2.038159937042947,7.417915061224489,225.44976767701442,26.76923076923077,6.160576923076923,3.9038461538461537,5.181623931623932,145.30593892143463,102.09373098076922,1.9462896815384616,6.3396923076923075,2.396644507755619,7.619041038461537,267.04834732822246,22.670212765957448,6.1038297872340435,3.5531914893617023,3.776595744680851,156.58499415621267,84.86686396808508,1.6810898175371272,6.2396755319148935,2.1494943525085373,7.63404059574468,222.80174394131976,19.11904761904762,5.8933309523809525,3.0476190476190474,2.7680776014109347,157.52962787763826,69.30678623015872,1.539462016325238,6.032236507936508,1.927803906198968,7.50120173015873,193.3816989424352,15.064285714285715,5.664742857142857,2.6357142857142857,2.05,158.73640184987661,53.01969060714286,1.3688748542836786,5.789807142857144,1.7702307466196354,7.314014442857143,165.34469220721152,15.154411764705882,5.602516176470589,2.5441176470588234,1.9229302832244006,160.38708839561724,54.41522664705882,1.3183040538504265,5.720656617647059,1.76221539713279,7.264732389705883,158.89900830747655,14.733333333333333,5.6961,2.558333333333333,2.0027777777777778,159.3535429279368,51.630384549999995,1.3315925396314334,5.828362499999999,1.8701045953360769,7.3484709,162.05186807869333,14.8125,5.698720535714286,2.5535714285714284,1.9871031746031744,162.7598327371763,52.238147535714276,1.2802776989287232,5.827154464285714,1.8097993827160495,7.379831035714285,155.83058842511545,16.595744680851062,5.737277659574468,2.702127659574468,2.041371158392435,157.89988245014936,59.10649239361702,1.4171060742231913,5.892706382978724,1.8745731547149986,7.399557319148935,174.48005921890766,12.977925864223243,0.05492061640982918,0.008147404458259466,0.5589337775926697,2.8763940950529867,1.5545214208998903,59.776734984589766,0.30817808787563516,0.06583406913785918,0.17815603047579437,0.03482794585589337,55.34900075699051,0.8242719379745627,0.0075382532918976414,-0.001461976473674825,0.19577579854547783,0.8249693563104642,-0.38391217908307457,3.8037335224746056,-0.006773701070875411,0.008282414378624295,0.017215829358146577,0.001654416781469225,-0.4964007993571118,0.7396164718601297,-0.011837854794544779,-0.002068659981281245,0.0007709553643428501,-0.1908175791826517,0.27287725819036307,3.478895887750669,0.05533092733298704,-0.010365918899040285,-0.01837295030952284,-0.006585506429058847,6.034477814287223,-0.43905317228932356,-0.007385193669304433,7.510763622290899e-05,-0.014068212318941195,-0.08900812361561741,0.16626553005464342,-2.0956905984543486,0.009670576905631426,-0.008281785367208095,-0.01775132236338863,-0.0033977158591327844,-0.40232867407696266,-0.1258850478967097,0.0030887130362348947,0.0007321592935730122,-0.016513952519783423,0.10671608023405886,0.047651088457456574,-0.5017150338608913,-0.005901703582681943,0.0034641815910037487,0.013767515675307016,0.0029216042898792273,-0.8112818161344233,1.8598592498223776,0.002182114682607722,-0.00036673220927951064,-0.01241517014969253,0.09011658329242503,0.06123988425387347,8.559771146862829,0.03297510728275052,0.004571528101036322,0.021022446356182146,0.002079629324178666,5.619028198492949,-0.5241843676246011,-0.0016271470220741375,-0.0005314907060914078,-0.014205886436207144,-0.0975434189800889,-0.18900096371233574,-2.4127242696237676,-0.021942495550324258,-0.0020022834235735106,-0.009100395342606808,-0.001510012522560039,-4.1988977997338575,0.1129997917534359,0.0018054586630570542,0.0007918168005380711,0.015045814244064976,-0.007222749265995134,0.0787831704492099,0.6505614089962516,0.00813639223482423,0.001676189608496455,-0.0038053639566555135,0.0002409080070803827,3.0932022601935967,-0.5202619475927581,0.0004911291394543062,0.00015773138105798214,-0.05133499339814087,-0.31826272587805166,-0.07255693711485905,-2.6060336437300062,-0.015746208510915228,-0.00027306175618314557,-0.016464203952892255,0.0008761887511409234,-3.3510537341406654,,,0.5099047619047619,1.16,0.5,0.02,0.66,-0.16,0.9502460340553559,0.0084281449666571,0.022188144966657098,0.7350290020375148,0.21772884999609488,0.27041154753217184,1.6852750360928708,0.4881403975282667,2.080363139030621,1.660969972941945,0.26448272633118786,0.0,0.07107351984912956,0.41939316608867655,7.61506013159185,1436.0,283.39720000000005,158.0,248.04938271604937,7883.120193828977,5782.802203,83.24110971637599,290.5768,99.8698369151044,363.47783799999996,11047.038616173706,1392.0,320.35,203.0,269.44444444444446,7555.9088239146,5308.874011,101.20706344,329.664,124.62551440329219,396.19013399999994,13886.514061067568,2131.0,573.7600000000001,334.0,355.0,14718.98945068399,7977.485212999998,158.02244284848996,586.5295,202.05246913580248,717.5998159999999,20943.363930484058,2409.0,742.5597,384.0,348.77777777777777,19848.73311258242,8732.655064999999,193.97221405698,760.0618000000001,242.90329218106996,945.1514179999999,24366.094066746835,2109.0,793.064,369.0,287.0,22223.096258982725,7422.756685000001,191.64247959971502,810.5730000000001,247.83230452674897,1023.962022,23148.256909009615,2061.0,761.9422000000001,346.0,261.5185185185185,21812.644021803946,7400.470824,179.289351323658,778.0093,239.66129401005946,988.0036050000001,21610.26512981681,1768.0,683.532,307.0,240.33333333333331,19122.425151352414,6195.646145999999,159.791104755772,699.4034999999999,224.41255144032922,881.816508,19446.2241694432,1659.0,638.2567,286.0,222.55555555555554,18229.101266563746,5850.672523999999,143.391102280017,652.6413,202.69753086419755,826.541076,17453.025903612932,1560.0,539.3041,254.0,191.88888888888889,14842.58895031404,5556.010284999999,133.20797097698,553.9144,176.20987654320987,695.5583879999999,16401.12556657732,635.9183673469389,2.69111020408163,0.3992228184547138,27.387755102040817,140.94331065759636,76.17154962409462,2929.0600142448984,15.100726305906123,3.2258693877551,8.729645493313924,1.706569346938775,2712.101037092535,42.86214077467726,0.3919891711786774,-0.0760227766310909,10.180341524364847,42.898406528144136,-19.96343331231988,197.79414316867948,-0.35223245568552136,0.43068554768846334,0.895223126623622,0.0860296726363997,-25.812841566569812,69.5239483548522,-1.1127583506872092,-0.19445403824043703,0.07246980424822791,-17.936852443169258,25.65046226989413,327.0162134485629,5.201107169300782,-0.9743963765097867,-1.727057329095147,-0.6190376043315317,567.240914542999,-55.32069970845477,-0.9305344023323585,0.009463562164086533,-1.7725947521865906,-11.215023575567795,20.949456786885072,-264.0570154052479,1.2184926901095596,-1.04350495626822,-2.2366666177869674,-0.4281121982507308,-50.693412933697296,-17.62390670553936,0.43241982507288523,0.1025023011002217,-2.311953352769679,14.94025123276824,6.67115238404392,-70.24010474052479,-0.826238501575472,0.4849854227405248,1.9274521945429823,0.4090246005830918,-113.57945425881925,252.94085797584336,0.29676759683465015,-0.04987558046201345,-1.6884631403581842,12.255855327769805,8.328624258526792,1164.1288759733447,4.484614590454071,0.6217278217409398,2.859052704440772,0.2828295880882986,764.1878349950412,-62.90212411495212,-0.1952576426488965,-0.06377888473096893,-1.7047063723448572,-11.705210277610668,-22.68011564548029,-289.52691235485213,-2.633099466038911,-0.24027401082882127,-1.092047441112817,-0.1812015027072047,-503.8677359680629,12.655976676384821,0.20221137026239006,0.08868348166026396,1.6851311953352772,-0.8089479177914549,8.82371509031151,72.86287780758018,0.9112759303003138,0.18773323615160298,-0.4262007631454175,0.026981696793002864,346.43865314168283,-48.904623073719264,0.046166139108704776,0.01482674981945032,-4.825489379425242,-29.916696232536857,-6.820352088796751,-244.96716251062057,-1.4801436000260315,-0.025667805081215682,-1.547635171571872,0.0823617426072468,-314.99905100922257,0.6890161548526089,0.6476591371820944,0.4358396406502382,0.36245962531816367,0.2822284106585362,0.21415780018548825,0.1782462543603193,0.12317445168474982,0.11131152880176598,0.06871026812649454,0.07310557924213801,0.04159912185940326,0.04715041661099826,0.024661794656259298,0.030381985776662766,0.014175808008381835,17.001104035326115,5.697870248162763,3.131101579190293,2.1792909489661656,0.3649118825264127,-0.41614326940706936,3.231628104649684,0.9929795668040252,5.023993526996219,0.6606439083979905,14.546049675354753,10.33722944798836,35.45051765928062,11.710307574629503,2.9166812727078315,1.0439622424410726,3.182422249175503,2.2338825111785083,2.263241547165404,0.6282290956788068,3.4929953932892475,2.433980807245286,24.43424528225405,15.591285250816957,0.2574134539816807,0.5045311835419355,0.660863134376792,0.8025537803828714,0.8513272888582201,0.8513272888582201,1.3532805154141816,743.4711667615176,0.0,0.0,6.0,0.0,12.0,1.0,0.0,0.0,0.0,4.106786722800377,2.6591757594773298,1.743386162555522,0.9133650510645603,0.6276507653502748,0.6276507653502748,161.28469009036766,868.7695869224513,33.38560461660755,17.729991569845946,37.35010042551103,,12.0,544.0,0.0,0.0,0.0,0.0,24.53296774849249,47.34476512405297,0.0,17.828252017852726,58.14560358599828,11.600939890232516,12.747619047619047,29.0,12.5,0.5,16.5,0.00990476190476187,0.0,-4.0,0.10308023830650259,0.04878841466328915,-0.054291823643213444,0.0,0.06534480251999009,0.0,0.548007774538387,0.7860952380952377,0.4449275362318844,0.49921935987509786,0.7860952380952377,23.756150851383897,0.21070362416642752,0.5547036241664275,18.37572505093787,5.443221249902372,6.760288688304296,42.13187590232177,12.203509938206668,0.6486551974800099,0.09525588345162497,0.0,0.2902502801643631,0.4,0.36452081824732324,-0.5320302944014155,-0.02609035765260729,-0.01085776111023297,-0.035468686293427705,0.6354791817526766,0.9275030649263335,0.029997475522905066,0.018928633978088444,0.027279501909598044,-5.23720316083498,0.6749777821664855,0.8918595396249714,1.4002836539932928,0.7246360197179869,0.7616972019121451,1.4069566970413176,0.6767335483497199,0.9280506081811676,0.7833022560746646,0.9551898275162428,0.8102633613248789,0.9631166124372874,0.7797066615682954,1.6636051076841223,2.0211105302621397,1.2305545866759677,1.3259974103137429,0.9834092045180969,0.7769295339383279,0.7241340257939006,1.3777819702564102,1.1529128565796263,1.405663832421279,0.807273227386688,1.0169020111253742,1.30263816466006,1.3307331422608561,1.126676602086438,1.1081460506777452,0.9683419914400105,1.0101858426514556,0.9744209931187845,1.1980764348080608,1.0579954403224434,1.1763183052043773,0.9682271847320023,0.9187163029525031,0.8098091675994432,0.778965359661524,1.0014903129657227,0.8914537615033143,0.9490499118509303,0.9130115588013953,1.0239374325307622,0.7979510032416507,0.8015981913318617,0.6826168045121385,1.004165484672465,0.7145756248584156,0.7966819122745882,0.8045113731178171,0.9729552029455597,0.9077491927332747,0.9009824593600996,0.717139039112232,0.8505868407313221,0.7672022081989341,0.7887121099461971,0.6772081708577733,0.8866182667163358,0.9428883183568677,0.9598269131016409,0.9764801502524746,0.9274217585692995,0.97300305324953,1.068158839717687,0.9511840137281177,0.9879582949750036,0.9782479141835516,1.043455906587778,0.9756050071956032,1.0500379466334988,0.9954107830551988,1.03390414698736,0.9754970879662139,0.9780178837555886,1.024502863762147,0.8914684773955436,1.0001975405208503,0.9070807469136121,1.0553101963969846,1.0025308793740213,1.1183711532115668,0.9134973262475888,1.0471034878321905,0.8952881770809434,0.7709261459697672,1.1186859878872435,1.0864318057653153,0.9868220395781319,1.060806549932141,0.9818122635156605,0.9922708533591039,1.0084490939089816,1.0330548523230327,1.0449427917425274,4.5,0.13182328333843485,2.666666666666668,1.375,1.5733333333333335,0.5555555555555556,0.523265306122449,0.2899305555555556,0.18468127991937514,0.15625,5243.0170297345285,5955.58299327468,2536.693203139184,2297.5820173405473,11.487298537256825,0.4117194449318993,6.757754359730426,0.6998692059169587,1.0,0.4,1.5079231213148314,2.9555340846378786,3.8713236815596863,4.701344793050648,4.987059078764934,4.987059078764934,0.1607142857142857,0.00878821888922899,0.06837606837606841,0.034375,0.046274509803921574,0.017361111111111112,0.018688046647230325,0.011151175213675214,0.007387251196775006,0.007102272727272728,0.3802179396795691,18.367346938775512,8.347140039447732,4.295857988165681,159.10224919653248,1.0,4.163969008211665,127.93303073743694,,103.53084464848092,105.63808315951584,103.53322581553627,103.52013472333877,141.52912315429168,106.76685360807102,107.74615724116782,132.88359357372426,0.06351338007307203,0.13725725938044123,-0.17944076314914503,0.3502665367419465,0.2868067896987068,-0.24696486900825934,0.06363233996395412,-0.02197982704600636,0.12580741988286623,0.0966334359390975,0.04750256556371885,-0.00896855936996147,0.05699034495944066,-0.2155448275781943,-0.25390417179843483,0.0013793322129561723,-0.06633916385478346,0.175537792224438,0.05819815834115925,0.17954205542126592,-0.15745523609263215,-0.10312842209413241,-0.18908684584234497,0.1090259576822636,-0.033830765939238304,-0.13447033467713776,0.00921859674546638,-0.025169730087762895,-0.030944342351661575,0.10695608810484881,-0.035058632743902966,0.03137983291509672,-0.12579786538586435,-0.09963918883902423,-0.09755717070399213,-0.007268941960549288,-0.009699935815147623,0.056239591580441645,0.08986411529266633,-0.02954545454545454,0.03710064640224239,0.030653220867083348,-0.008393148839431121,-0.01915030242209682,0.052619891742520325,0.07727785379219916,0.08388678166573098,-0.014657569333479963,0.1433094370610888,0.03973215934657986,-0.045012152171693694,-0.02221223809941264,0.03132970667941973,0.03939468664151477,0.143195695600797,0.10700016834440733,0.06944015706310601,0.11800019511008591,0.059711512495841446,0.1015199573911598,-0.04039045785194695,-0.029627253451272734,-0.06523435884573116,-0.025416045702930965,-0.033911701858883155,-0.12158144697866291,-0.04036226251309576,-0.07120069989914118,-0.0304140918189433,-0.05108104013264517,-0.043356347480496736,-0.07586221507718081,0.008707076379974312,0.032873969395833834,0.09718638673146557,0.02691877794336811,-0.00251104300291024,0.05068001597791007,0.010883187399980345,0.026401592309533897,0.02546082340720041,-0.021359725777974937,0.006917089169633522,0.05588542192070069,-0.040088220031136455,0.008942527807579531,0.019359709201386376,-0.09184450011098079,-0.11064642582371483,-0.04667477471803308,-0.043596118864669214,-0.0510945103834559,-0.004147727153418746,-0.09241451950249423,0.025157635043028533,-0.06054406923899943,20.408444704248854,18.317571730827947,4.329638385866451,18.03883472086372,30.845025375508204,37.4995971631729,40.58176864763742,41.31887068845375,41.31887068845375,52.00907847576553,41.524249323548624,6.612068158279696,0.0,1.776837996228239,10.484829152216914,5414.645790077283,3682.2394340000155,2514.178932596169,139.0,39.0,52.0,70.0,96.0,100.0,114.0,131.0,146.0,373.13794644800066,28.0,4.90527477843843,5.75890177387728,6.639875833826536,7.515889085215125,8.404472321352118,9.29090601981575,10.1841072449874,11.076635103009114,11.973276406562663,0.6734693877551019,0.9573877551020408,1.1209665672082179,0.6353750558586603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7061350604912624,0.9496598639455782,0.989506071911649,0.6337496936490861,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,14.699729192551434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.49555897654685,50.34508535382382,47.53738229433974,11.374772549367124,216.97661014012292,-316.6846006933609,-15.52996996995991,-6.462951034558387,-21.11230671289073,378.2613002304906,552.0849862290903,17.85563464664764,11.26704053528756,16.237793712620302,0.5,0.9882477716842318,0.2326434301844482,4.137945553402496,0.04528817440501625,87.525364452742,0.011752228315768337,6.0,0.14285714285714285,0.2685665267093525,0.526391241345371,0.6894966594965242,0.837326402178759,0.8882131431941906,0.8882131431941906,4.580200000000004,,1.7006302521008403,0.6490208672461542,0.7205091736985907,1.714044005157357,-0.8964625693825311,0.6882185132392362,0.7019292561577472,-0.717106379821209,107.57700000000006,0.0,0.0,9.799819461700956,0.0,16.21178857396156,51.21612014900312,47.487202792972596,0.0,0.0,4.04305126783455,0.0,5.3612921657094255,0.0,6.8885724595653635,0.0,8.518192691749322,0.0,10.204961577256293,32.99999999999999,14.92635962744789,0.0,0.0,0.0,0.0,0.0,5.9839236408266,0.0,46.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.92736179320267,4.899909730850478,11.374772549367124,0.0,56.11602987985359,0.0,0.0,6.4208216229260096,52.25553643026682,5.022633313741326,0.0,0.0,31.13337773707435,34.60061796407186,33.262058146208815,255.86606147487402,,207.4686628616471,211.4227623961803,207.25586552398016,207.44424344961445,283.63549385435226,213.64124612287566,215.62321239975657,266.11139820976274,33.262058146208815,255.86606147487407,,206.17618387005058,210.9179189832729,206.68694830374068,206.14157000569492,284.02993738488055,213.1182000528139,215.08974616507675,266.48429352726976,4.9702320880040025,189.0827468467775,,160.7397757133449,159.28765419369108,155.76205441029714,160.74512389231006,222.86095639120708,161.3005267612129,163.06907273689302,205.3268958222047,1.3304823258483527,10.23464245899496,,8.298746514465883,8.456910495847213,8.290234620959206,8.297769737984577,11.34541975417409,8.545649844915026,8.624928495990263,10.64445592839051,2.4851160440020017,127.93303073743694,,103.53084464848092,105.63808315951584,103.53322581553627,103.52013472333877,141.52912315429168,106.76685360807102,107.74615724116782,132.88359357372426,46.53333333333333,0.0,2.2086733306722692,6.28969506896116,0.0,0.0,0.0,48.4857975236708,8.084760174322764,0.0,0.0,1.8404651768752596,0.0,7.443900758671832,0.0,0.0,0.0,31.053734988805218,588.2425385457374,73.88823294442673,144.82117014725605,189.69486039642462,230.36589485948176,244.36589485948176,244.36589485948176,940.0,128.7493385670844,6.9953718248763,60.01607016211495,35.02,9.72,1.0,8.512833702638785,5.807354922057604,3.9603839638504317,4.924589348826587,,4.920830090896698,4.924238771164556,4.924489557018755,4.920856084900699,4.913158979001207,4.924482265689126,4.924324233630443,4.918625710781829,0.15841535855401725,0.19698357395306348,,0.1968332036358679,0.19696955084658224,0.1969795822807502,0.19683424339602795,0.1965263591600483,0.19697929062756503,0.19697296934521774,0.19674502843127317,2.292631713008463,2.5105316220729064,,2.509767965809078,2.5104604303213787,2.5105113578819522,2.509773248238031,2.5082078433812596,2.510509877254378,2.5104777856382605,2.5093198962824337,281.9500000000004,562.1803927155383,149.61527249058045,,149.26961969476034,149.38980797927738,149.42382159852949,149.2583605095585,149.53735801048094,149.2985656156642,149.2678929995789,149.32821127988615,22.487215708621534,5.984610899623218,,5.970784787790413,5.975592319171096,5.97695286394118,5.970334420382341,5.9814943204192375,5.971942624626568,5.970715719983156,5.973128451195446,7.2481135137432755,5.9243578810446,,5.922044930748659,5.922849782562252,5.923077440312984,5.921969499392445,5.923836979846232,5.922238828976392,5.922033363055434,5.922437375567743,0.0,10.068546172648054,0.8081470645088976,2.5511311623414805,0.0,14.92635962744789,1.161377551020408,6.923382623302356,2.2086733306722692,334.14194824484997,129.15270401910604,-188.50267996326832,-9.244026873037317,-3.8469934686381295,-12.566845330884556,225.15546592326848,328.62191354999266,10.628350655411671,6.706569664285566,9.665350398529196,1544.0,40.0,1.5230560382187535,1.1324126942340753,0.0,0.0,0.24719387459906544,0.13693063937629152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28006896957329525,0.13606669883808506,0.5651096749808215,0.30256002312605756,17.225403871315223,16.19147842955236,12.20350993820667,10.148869508908582,11.006908015682912,8.352154207234042,9.268805226736603,6.405071487606991,7.791807016123618,4.8097187688546175,7.018135607245249,3.993515698502713,4.715041661099826,2.4661794656259297,3.4635463785395553,1.6160421129555291,3.423444053814031,2.2826515870963817,5.505207199195512,3.2280200929900515,9.286854340113269,4.943445034221299,84.38714643737615,55.81823810976039,37.69990343400907,28.97625611821966,26.74143831173945,26.74143831173945,134.0,158.0,57.78303199999998,32.176967999999995,0.46938775510204084,184.05,6.638888888888889,5.444444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,49.0,0.0,2.0,52.0,12.0,0.0,6.0,46.0,12.0,28.0,40.0,0.0,0.0,0.0,20.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,4.0,0.0,2.0,25.0,5.0,0.0,3.0,0.0,0.0,4.0,4.0,1.0,0.0,1.0,0.0,2.0,3.5553480614894135,7.192487692965469,4.0943445622221,4.61512051684126,5.163356381113919,5.738183901373533,5.928258471204189,6.314340304821167,6.73444301634577,7.075623935637592 +2337,CCOC(=O)c1ccc(N)cc1,0,22.26086956521739,6.235430434782609,2.8260869565217392,7.391304347826087,163.36460919529304,87.72547147826083,1.4124891284060432,6.290056521739132,5.166666666666667,7.7683833043478305,209.98561007106937,23.565217391304348,6.388391304347827,3.3043478260869565,6.782608695652174,148.3229717575522,88.52369200000001,1.7241331908695647,6.519739130434783,3.544685990338164,7.817951652173914,253.21286949956843,19.64864864864865,6.275675675675675,2.972972972972973,5.5675675675675675,154.2092475006634,72.60145500000002,1.4440834904390543,6.369245945945948,3.6216216216216224,7.788070162162163,205.91209162603408,16.697674418604652,6.190186046511628,2.604651162790698,4.0,159.57513622480099,60.13037102325582,1.2636711803905114,6.266081395348838,3.4328165374677004,7.746407069767443,177.31896846376543,14.974358974358974,6.350589743589744,2.282051282051282,3.128205128205128,162.82780619214088,51.76454548717949,1.1214280665408718,6.399897435897436,3.8831908831908835,7.937491692307693,156.46900882579206,13.225806451612904,6.245645161290323,2.129032258064516,2.5161290322580645,163.47310584775624,44.57373661290322,1.107461959390129,6.291354838709679,3.4032258064516125,7.867853806451614,149.78185978453453,12.8,5.904,1.96,2.0,158.63466563133588,43.15064052,1.18905042317584,5.981708000000002,3.473333333333333,7.46877072,147.58349643133673,6.923076923076923,5.697115384615386,1.5769230769230769,0.38461538461538464,169.67660717215733,19.547757153846153,0.859482465095769,5.7317884615384616,2.294871794871795,7.406033538461538,97.33790051529772,6.571428571428571,5.551642857142858,1.5714285714285714,0.21428571428571427,173.86137412518528,18.793429499999995,0.8242388270781428,5.5870000000000015,2.142857142857143,7.230526000000002,89.65201995510554,7.621928166351605,0.14311871455576547,0.028043857383021287,0.510396975425331,4.056710775047259,1.4159976034829254,36.140600279773174,0.2245101627146843,0.1331852551984877,1.832073093887839,0.09114703969754254,49.2883214085218,-0.05671077504725927,-0.011916446124763816,-0.017605822991936436,0.19470699432892247,1.3043478260869563,0.09815286443449808,-0.23437555387525183,-0.0009171959848768321,-0.009327788279773331,-0.2662780928376391,-0.00794312287334591,1.0591013504166544,0.6800694834721299,0.024014657947172054,0.0024667323327409625,-0.016859960149185144,0.6600929852347622,-0.07874050833524752,3.1281545510141444,0.0021321547013264035,0.02168454503652982,0.2687886374086753,0.016471004955806483,1.1372266863797258,0.10506880028135583,-0.01173742031916301,0.001212495879570797,-0.06954763265485561,-0.35195850002198076,-0.13212361171245113,0.51998052710247,-0.014091730263470912,-0.008382120719215782,-0.020254197134664875,-0.00987354323647073,-0.36279028063233776,-1.58402404149096,-0.03827099995152935,-0.001232958175283313,-0.08453298434394846,-1.3565992923270804,-0.1893268649927722,-7.44321868557026,-0.03508464071410685,-0.03489651495322583,-0.4299301482666321,-0.024563726431098783,-8.054336543195985,-1.879992682480639,-0.04873161778157211,-0.006527641860516299,-0.12049515214342336,-1.394719190194524,-0.023321721707328706,-8.674598584120982,0.007900965201866833,-0.046341917190072614,-0.6745228367583388,-0.029568352460515836,-3.573874310512268,-1.0271455576559547,0.05585293761814752,0.01602002118282112,-0.10691871455576557,-0.21671077504725905,-0.3098047645762354,-5.369691119773154,-0.08829562275042858,0.04370935349716461,0.6722747321991176,0.03792690117202263,-19.878879234769347,-0.6587174640104696,-0.017403831612621636,-0.00904460673708015,-0.028791624254762203,-0.6353060927730116,-0.0985802192993839,-3.015375420241374,0.006374304473539589,-0.016829402355678143,-0.23508312733265482,-0.010675026319616145,-1.1206447234516437,0.4401836348906297,0.0061045773697004455,-0.0002471499182784268,-0.025924925735889788,0.1575749392384552,-0.09433448019917698,2.0242109842020133,-0.011113640930625498,0.007301701323251672,0.129624628679449,0.0037226124763704333,0.25446657254674065,,,0.46388888888888885,1.25,0.6666666666666666,0.041666666666666664,0.5833333333333334,0.08333333333333333,0.5270294455246815,0.014819288096220648,0.02198595476288731,0.74772064315023,0.2660527280422356,0.21197911405930167,1.2747500886749115,0.47803184210153726,1.9486758953023784,1.4954669494138944,0.14643636160316986,0.3067725842853143,0.0,0.4532089458884842,7.177346895304348,512.0,143.41490000000002,65.0,170.0,3757.3860114917397,2017.6858439999992,32.487249953338996,144.67130000000003,118.83333333333334,178.6728160000001,4829.669031634596,542.0,146.93300000000002,76.0,156.0,3411.4283504237005,2036.0449160000003,39.65506338999999,149.954,81.52777777777777,179.81288800000002,5823.895998490074,727.0,232.2,110.0,206.0,5705.742157524545,2686.2538350000004,53.43108914624501,235.66210000000007,134.00000000000003,288.15859600000005,7618.747390163261,718.0,266.178,112.0,172.0,6861.730857666442,2585.605954,54.33786075679199,269.4415,147.61111111111111,333.09550400000006,7624.715643941913,584.0,247.673,89.0,122.0,6350.284441493494,2018.817274,43.735694595093996,249.596,151.44444444444446,309.562176,6102.29134420589,410.0,193.615,66.0,78.0,5067.666281280443,1381.7858349999997,34.331320741094,195.03200000000004,105.49999999999999,243.90346800000003,4643.237653320571,320.0,147.6,49.0,50.0,3965.866640783397,1078.7660130000002,29.726260579396,149.54270000000005,86.83333333333333,186.719268,3689.5874107834184,180.0,148.12500000000003,41.0,10.0,4411.59178647609,508.24168599999996,22.346544092489992,149.0265,59.66666666666667,192.556872,2530.7854133977407,92.0,77.72300000000001,22.0,3.0,2434.059237752594,263.1080129999999,11.539343579093998,78.21800000000002,30.0,101.22736400000002,1255.1282793714777,175.3043478260869,3.2917304347826057,0.6450087198094896,11.739130434782613,93.30434782608695,32.567944880107284,831.233806434783,5.1637337424377385,3.063260869565217,42.137681159420296,2.096381913043478,1133.6313923960015,-1.3043478260869632,-0.27407826086956777,-0.40493392881453805,4.478260869565217,29.999999999999993,2.2575158819934558,-5.390637739130792,-0.02109550765216714,-0.21453913043478662,-6.124396135265699,-0.18269182608695594,24.359331059583052,25.162570888468807,0.888542344045366,0.09126909631141561,-0.6238185255198503,24.423440453686204,-2.9133988084041587,115.74171838752335,0.07888972394907692,0.8023281663516033,9.945179584120986,0.6094271833648399,42.07738739604985,4.5179584120983005,-0.5047090737240094,0.05213732282154426,-2.990548204158791,-15.134215500945173,-5.681315303635398,22.35916266540621,-0.6059444013292492,-0.3604311909262786,-0.8709304767905897,-0.4245623591682414,-15.599982067190524,-61.77693761814744,-1.4925689981096446,-0.048085368836049205,-3.29678638941399,-52.90737240075614,-7.383747734718116,-290.28552873724016,-1.368300987850167,-1.3609640831758074,-16.767275782398652,-0.9579853308128525,-314.11912518464345,-58.27977315689981,-1.5106801512287353,-0.20235689767600526,-3.7353497164461245,-43.236294896030245,-0.7229733729271899,-268.91255610775045,0.24492992125787183,-1.4365994328922511,-20.910207939508503,-0.916618926275991,-110.7901036258803,-25.678638941398866,1.396323440453688,0.400500529570528,-2.672967863894139,-5.417769376181476,-7.7451191144058855,-134.24227799432884,-2.2073905687607147,1.0927338374291151,16.80686830497794,0.9481725293005658,-496.9719808692337,-17.12665406427221,-0.4524996219281625,-0.23515977516408393,-0.7485822306238172,-16.517958412098302,-2.5630857017839817,-78.39976092627572,0.16573191631202933,-0.43756446124763176,-6.112161310649025,-0.2775506843100198,-29.136762809742734,6.162570888468816,0.08546408317580624,-0.0034600988558979758,-0.36294896030245705,2.206049149338373,-1.3206827227884776,28.338953778828188,-0.15559097302875696,0.10222381852552341,1.814744801512286,0.052116574669186067,3.5625320156543694,0.7478909578906804,0.5758628923385336,0.4780318421015373,0.3136727121571629,0.31906072853834405,0.15616524322570868,0.21230990039792214,0.08363633993902726,0.14144126299082763,0.04631277914489595,0.08975684469466785,0.025896725229846956,0.06791400528962063,0.01316181228208118,0.04247578980827672,0.007451449957533792,8.028762570149,5.6931553988224675,3.554954227466971,2.1920148245436777,0.4523372767878303,-0.49223333225787497,3.1361355335486993,0.9779598763844667,6.0281198095326625,0.9880210082078689,14.537819348525646,10.954388507086051,16.013983750227663,11.704999269201839,1.9833909847469609,0.7415069470356437,3.5010271977332237,2.2417007715708333,7.008269555376965,1.4719141156940527,3.7139449292989246,2.4375913748755873,20.88978472912936,14.701467693381527,0.3242325342373595,0.6806020714018896,0.798144768865924,0.8712960446423248,0.8712960446423248,0.8712960446423248,2.236981996737214,266.36195376207496,0.0,1.0,2.0,0.0,5.0,0.0,1.0,0.0,0.0,2.9818727312170035,1.2873756728016001,0.7284733696592811,0.3806472827027596,0.3806472827027596,0.3806472827027596,112.80028270293232,476.5443194725313,40.120786272563436,20.719318237936143,41.37284870388952,,8.0,140.0,0.0,4.794537184071822,5.969305287951849,17.857719730893475,0.0,0.0,31.18920547353706,0.0,0.0,10.470530430962235,5.566666666666666,15.0,8.0,0.5,7.0,0.0,0.03611111111111113,1.0,0.15942028985507228,0.060569715142428704,-0.09885057471264358,0.0801587301587301,0.17529032258064514,0.0,0.5927536231884061,0.861111111111111,0.4333333333333338,0.5321839080459774,0.780952380952381,6.324353346296178,0.17783145715464777,0.26383145715464773,8.97264771780276,3.192632736506827,2.54374936871162,15.297001064098938,5.736382105218447,0.5387096774193548,0.22155688622754494,0.0,0.2694610778443114,0.2222222222222222,0.3454594857176362,-0.4510893564110332,-0.05548733033009542,-0.019612580713523186,-0.05638616955137915,0.6545405142823639,0.8546769492209229,0.05444655982341883,0.037159867357431424,0.056978463281394866,-1.9054168773097657,0.8457341269841272,0.8207088118050773,1.6789999525536266,0.8148148148148145,0.48695246971109035,1.150539528185017,0.8510985725722415,1.113127804673925,0.8009523809523807,0.7654915448552594,0.8241078044524909,0.9936354627728564,0.8258995602745605,0.7568335078617767,0.8868257508548331,1.2409409409409407,0.8316289262235209,1.096490549600002,0.830170641012133,1.038809289799662,0.7540207186108823,0.5426762101740604,0.7780265354364032,0.9694865914853401,0.9353832133628648,1.0626318721173211,1.1337793051419802,1.1985357450473726,1.0774940939335487,1.087518441332989,0.9345456281699558,1.0378679329711402,1.037590908265708,0.8585274650562896,1.0996438993544864,0.96473118278582,1.2259996947496952,1.5704910945038388,1.2653561042868693,1.153276353276353,1.4842521566659497,1.0589030606728933,1.2167287564413276,1.0745924938505862,1.5353497868251964,1.81507154353242,1.6374609348713138,1.0637785008218705,1.2691292242703538,1.6325749877354279,1.0886496684639242,1.1788530465949818,1.5021946306707152,0.8931393819106578,1.2553014341780213,0.8954148386861834,1.6141875047216134,1.995527880250372,1.6935410867343108,0.9873107519819502,1.0089880952380954,0.24191288314062387,0.13235057413175855,0.8995555555555553,0.7639515377446413,1.2044209532189465,1.0295498006157482,1.3872470662972667,0.32749414519906267,0.23668443680137574,0.1684657923265889,1.3986833775370262,1.0787831959706964,1.0262769051135952,0.9086670883882864,0.7568376068376067,1.097318804215356,0.8494345074735433,1.0757506839195048,0.8571982549470233,1.0518014772113127,1.0015245717309345,0.9988205000916756,0.9740178793500789,0.8874362244897962,0.5462975542324584,0.7229973071847622,0.9370370370370368,0.6568366395952603,0.96026853309022,0.8953886733824514,0.8722362195173502,0.5806557377049179,0.444404864267289,0.39132087283133593,0.9366337349520878,2.5,0.0,1.5555555555555562,0.625,0.38222222222222224,0.2638888888888889,0.10122448979591839,0.059027777777777776,0.0,0.0,1814.096179546856,2062.3657991893774,1091.0669251546983,976.0247486423588,10.198524784967425,0.48102671383202766,5.292761921720058,0.9268814535404376,1.0,0.2222222222222222,1.5416892248400094,3.236186283255413,3.795088586397732,4.1429146733542535,4.1429146733542535,4.1429146733542535,0.20833333333333334,0.0,0.10370370370370371,0.04464285714285714,0.038222222222222234,0.0376984126984127,0.020244897959183675,0.029513888888888888,0.0,0.0,0.4823593159486017,10.083333333333334,4.888888888888889,3.114186851211073,71.14118748925014,1.0,3.3684694394248105,36.574907055995396,,27.778508490856773,27.352064653048522,28.330346489675698,27.786172973659276,41.96528245536912,27.6576213571437,27.79817142109809,34.93266173805245,-0.007440476190476231,-0.0832626687694336,-0.627796053569849,0.3814814814814813,0.3215284249767008,0.06931711197326305,-0.0064851040674724185,-0.0040853205653876715,-0.07003619331488316,-0.14534250501576376,-0.08714625181140215,0.021487876238234782,0.08922538610038612,0.16779537198690297,0.08795980877560756,-0.03303303303303311,0.16271630437520468,-0.05560779774031376,0.08655513540999153,0.009496918426966816,0.16281490773293986,0.14671283493295534,0.1807080626037114,0.023072944135263302,0.013785068290882255,-0.08201177851265276,0.043235702671376566,-0.13626184323858742,-0.0867595743297427,-0.09330779330944278,0.0143877114125713,-0.06276655850710508,-0.06293580101433752,-0.011055343371526449,-0.10832544062028311,-0.0073605728550863656,-0.20782458282458288,-0.2674073762492972,-0.043965356065096384,-0.16562203228869896,-0.33440867923626544,-0.13370563942134184,-0.20595171712562862,-0.15627194907294106,-0.2620148521787874,-0.23466866562309374,-0.2694956030674144,-0.16341267693899217,-0.24665578597030216,-0.34049787222330097,-0.2327654777073698,-0.23608124253285534,-0.34380542945615244,-0.016470170323709826,-0.24002364423857947,0.03519201583719695,-0.3479508082257954,-0.3681746317920837,-0.3244027733498957,-0.07250955618655651,-0.1347619047619048,0.39025600384626646,0.5712488465484848,-0.20948148148148135,-0.053420316868592756,-0.21878904583892622,-0.1485778066275897,-0.39328118461451517,0.328184628486269,0.3669475494411004,0.4161067797470684,-0.40331824388996834,-0.08642399267399269,-0.12160416383449504,-0.3225165002641921,-0.05641025641025629,-0.1566062083303463,-0.06961891676716571,-0.08343456934579446,0.028392053154583867,-0.1263608522624901,-0.12831536477280245,-0.11711873863418473,-0.022736516307043226,0.05775226757369623,0.04265394213921498,-0.008812978717687384,-0.05079365079365071,0.03884303022234054,-0.06662050837313759,0.05600933489018178,-0.049501727655639,0.05482364629905805,0.0707529787495393,0.04084183631989971,0.00516281677433519,3.838519496373775,7.732315986074721,1.3103706971044482,14.531928092461182,27.364596915075552,31.75510087142562,32.105709567077795,32.105709567077795,32.105709567077795,23.38411074362854,17.94560339296673,1.7572363392380383,3.6812710114237714,0.0,5.43850735066181,1281.4751298563674,1167.3045871906165,157.91648631511543,0.0,15.0,17.0,18.0,20.0,16.0,10.0,6.0,2.0,165.078978592,12.0,4.007333185232471,4.77912349311153,5.58724865840025,6.385194398997726,7.199678345691172,8.005367067316664,8.821879862683842,9.630037062331072,10.447235248444299,0.6376811594202897,0.9873043478260868,1.1301566720170015,0.5979735966668237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6526613642280655,0.9730605285592501,1.0090249849583584,0.6159832476393597,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10.470530430962235,0.0,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,31.18920547353706,5.687386274683562,12.170333456209914,126.07673732779207,-164.62675552664155,-20.250309689761494,-7.15768502289746,-20.578344440830193,238.8770200307244,311.91756394588975,19.870476582801945,13.561633215038684,20.79450426305932,0.5,0.8498951865857352,0.35411490519992367,38.176862096689646,0.2585529466679396,22.01962697108692,0.150104813414265,4.0,0.16666666666666666,0.3408131113968053,0.7154066451819424,0.8389602316192749,0.9158523114305805,0.9158523114305805,0.9158523114305805,1.4455,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,46.81090000000002,9.53140013787187,0.0,0.0,0.0,6.923737199690624,12.340549441675103,29.828919765543436,0.0,0.0,3.2188758248682006,0.0,4.442651256490317,0.0,5.872117789475416,0.0,7.390798521735676,0.0,8.952217101765946,14.666666666666663,6.638055555555557,0.0,0.0,0.0,0.0,0.0,1.1750911753590332,0.0,22.707999999999995,0.0,11.092937452758882,0.0,0.0,0.0,0.0,0.0,-0.30787037037037,25.993603456391035,5.733667477162185,5.687386274683562,0.0,12.576187252464766,4.736862953800049,0.0,17.28172587545944,24.26546827384644,0.0,0.0,0.0,13.753392723336946,15.011211377245507,14.591850041640502,73.14981411199082,,55.449874124560324,54.57794658543565,56.56543998647648,55.46550739119502,85.27195008416825,55.202138369110415,55.49013407659437,70.42398026828462,14.591850041640498,73.14981411199082,,54.91415983884605,53.94703298220932,56.08917502213127,54.9313146106287,86.61333525759832,54.63661664328422,54.95909024863607,70.98263706046436,4.5120419648337045,55.08124062972959,,42.238779443407765,41.62213005267663,43.15591175954614,42.25020351188833,65.0978713312215,42.06839765124261,42.26680136012141,53.25707060320184,1.2159875034700418,6.095817842665902,,4.62082284371336,4.548162215452971,4.713786665539707,4.6221256159329185,7.105995840347354,4.600178197425868,4.6241778397161974,5.868665022357052,2.2560209824168522,36.574907055995396,,27.778508490851593,27.352064653040458,28.33034648967276,27.78617297365414,41.96528245536912,27.657621357137828,27.798171421093016,34.93266173805245,22.38039215686275,0.0,1.773016975308642,0.0,0.0,5.4486593757873525,0.0,23.207574654042244,0.3920731764928196,0.0,4.788036659108088,0.0,0.0,0.0,0.0,0.0,0.0,14.167614695705275,310.17244170538146,35.45885217132022,74.4322845148745,87.28703748714784,95.28703748714783,95.28703748714783,95.28703748714783,128.0,88.86309732220901,54.78131565313505,41.87666049433555,52.32,52.32,1.0,6.152998616790501,4.584962500721156,3.1703461746532424,3.4058091354694437,,3.3972457607039606,3.3984101580698454,3.3973474875507605,3.3972301107279135,3.3744931606046498,3.397650362452957,3.397184869637713,3.3831151573262526,0.26419551455443685,0.28381742795578696,,0.2831038133919967,0.28320084650582045,0.28311229062923005,0.2831025092273261,0.28120776338372083,0.28313753020441307,0.2830987391364761,0.28192626311052105,1.3361623420815354,1.4078040997277677,,1.4052865897505702,1.4056292784891402,1.4053165332197641,1.4052819830741046,1.398566695205449,1.4054056796504426,1.4052686659333846,1.4011184860150268,131.32999999999998,50.07163886405277,45.47231751034476,,45.56394446513588,45.50295559929158,45.56589682321308,45.564799240131734,46.67166472852574,45.54337308344274,45.56706343546927,46.281783090246,4.172636572004397,3.78935979252873,,3.7969953720946568,3.7919129666076317,3.79715806860109,3.797066603344311,3.8893053940438116,3.795281090286895,3.797255286289106,3.8568152575205,4.0957763140571615,3.999425291230554,,4.001438268998815,4.000098838867354,4.001481116831092,4.001457028721842,4.025458786325763,4.000986683273403,4.001506719253157,4.017069986688513,4.788036659108088,11.092937452758882,0.0,6.623750551146386,-0.30787037037037,6.638055555555557,0.0,2.1650901518014614,0.0,158.99524572444946,46.012179003280444,-60.08115299118975,-7.390426608952031,-2.6122240430952064,-7.510144123898718,87.17906600681846,113.83548694816778,7.251805089397984,4.949368997746426,7.589032463211187,211.0,14.0,0.6910440616569954,0.22122504486493763,0.0,0.0,0.11785113019775792,0.013888888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.13144585576580214,0.02992639636637849,8.974691494688164,6.910354708062403,5.736382105218448,3.7640725458859547,4.785910928075161,2.3424786483856304,3.6092683067646765,1.4218177789634634,2.5459427338348974,0.8336300246081271,1.795136893893357,0.5179345045969391,1.0866240846339301,0.21058899651329888,0.4247578980827672,0.07451449957533791,1.4284683477238034,0.3529528427019343,1.723229372367424,0.3574058032680602,2.162151810905449,0.38246922045013343,40.4802716111632,25.71838335229898,19.27509359390352,18.306278660308557,18.306278660308557,18.306278660308557,54.0,59.0,25.068722999999984,13.069276999999996,0.2608695652173913,12.03,4.833333333333334,2.861111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,23.0,0.0,0.0,23.0,6.0,1.0,4.0,19.0,7.0,12.0,16.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,3.0,1.0,0.0,12.0,3.0,0.0,1.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,2.833213344056216,0.0,3.3141860046725258,3.7669972333778885,4.1647253589839,4.618209799495895,4.535284058523925,4.251170232498662,3.498399709618518,2.7842393394597567 +54682951,CN1C(C(=O)Nc2nccs2)=C(O)c2ccccc2S1(=O)=O,0,42.24242424242424,6.777936363636364,3.9696969696969697,10.632996632996633,159.7759317417254,168.32598872727274,1.9445229682829999,6.852863636363637,7.831569293760651,8.285735818181818,261.71821250112987,40.94285714285714,6.6535657142857145,4.685714285714286,7.961904761904762,145.72053323255855,160.16416485714285,2.1500119736000003,6.833074285714286,3.3346560846560847,8.152004457142857,302.17950861526566,36.21052631578947,6.796850877192981,4.368421052631579,9.280701754385966,152.83895539893996,140.68230233333333,1.9420808358692456,6.9221473684210535,4.68708035520901,8.265082701754386,272.6439988341225,31.492753623188406,6.702766666666666,3.927536231884058,8.08695652173913,151.5336573362555,119.66136002898547,1.7884381981941448,6.8313014492753625,4.452406512792987,8.225851507246375,250.83569188833818,30.423076923076923,6.997907692307692,3.2435897435897436,6.82905982905983,157.7814390581283,114.88613215384615,1.4912602231243333,7.076315384615384,5.4614395378284275,8.528862461538461,221.38906728454575,25.144736842105264,7.096627631578946,2.776315789473684,6.7324561403508785,163.84548350175507,92.44142884210527,1.330223288202579,7.126932894736842,6.870614035087719,8.632995657894739,193.9478038478089,24.696969696969695,6.394960606060606,2.6666666666666665,4.0218855218855225,162.34701997478317,91.9938026818182,1.3943579623967879,6.468809090909091,3.7584668703495865,8.017434318181817,180.485025558848,27.73076923076923,6.430173076923075,2.7115384615384617,4.33974358974359,161.19233007848874,103.16933026923078,1.5656707598229231,6.533319230769231,3.7372981956315288,8.073912384615385,200.028620796403,20.21951219512195,6.17590243902439,2.5365853658536586,3.902439024390244,156.1677309971972,72.11837080487804,1.4746448007864634,6.285865853658537,3.6111111111111116,7.803439999999999,187.34233971110064,14.440771349862258,0.1761511478420569,0.0313453447382207,0.7731864095500459,4.558514437302317,1.8081354414206952,63.810683471074384,0.3742312331914215,0.15731533516988055,3.271115570217703,0.11618606244260786,47.178748566689485,2.0068476977567893,-0.024745173816082912,-0.01951640773758138,0.27096943460579825,0.023111344323465243,-0.2968593648267595,8.823376128925617,-0.015573717049312347,-0.015488235602781036,-0.6526272626861851,-0.00439985811360357,2.217331421002296,1.1094678845875021,0.03598452467256292,0.0033964977313178453,0.0370209269730801,0.8555679066045888,0.22185043257996756,5.329138945193562,0.031290411856020314,0.03156106036440966,0.4348638416177846,0.023105903532937015,4.50252376060288,-2.755659360402442,0.011475817463169218,0.00020418485733162203,-0.20884736695013373,0.5403973862471884,-0.25340439467429543,-11.657197745119174,-0.07648747655860065,0.009578999480975748,-0.020408802233693617,-0.005815124366191563,-5.561789092714037,-1.1272515363424453,-0.0345654446563538,-0.001439076753968692,-0.23006286642650275,-1.3893009347554806,-0.3675836397898652,-5.45525206314897,-0.0724077883700392,-0.028872095076640496,-0.5984241498410973,-0.01864155117609666,-9.322795145561164,-2.9722705524140927,-0.01031805374317341,0.0019816450356818314,-0.0024527572374462227,-0.651328543274317,0.11068371987000183,-13.477901069160504,0.0029083373246155697,-0.01628252017785506,0.37152044993618594,-0.004220908535111915,-6.53716634256742,3.4462809917355366,-0.026967033976124852,-0.0002982939057118359,0.06611570247933884,-0.5837669625548412,-0.0598830352047395,14.760075188705233,0.07769785657606884,-0.021301377410468326,-0.5814840322416079,-0.015006414600550952,5.401467341203441,-0.7438016528925613,-0.0032689217348308023,-0.001121215270454464,-0.005703892067528437,-0.04472267351055199,0.26448422336870575,-2.9450592717736797,-0.011994746768225688,-0.0016063608109062792,-0.038996980074421025,-0.0006990834216288701,3.0336482241181844,-2.777061076395888,-0.011627348876794492,-0.00034049237050022893,-0.06660843467938811,0.09829758536336544,-0.2619074186440239,-12.359229233823829,-0.06119910466459443,-0.01263396044704251,-0.04546811148909354,-0.011765858451477044,-9.174624506142461,,,0.4863636363636364,1.3863636363636365,0.7272727272727273,0.022727272727272728,0.6590909090909091,0.06818181818181818,0.7162798332377668,0.022211639825670367,0.033938912552943096,1.0699488242014932,0.26948607247143513,0.20440290417439888,1.7862286574392598,0.473888976645834,2.018568060349468,1.226244546839328,0.2790522863133219,0.3207435269054491,0.0,0.7923235135101397,10.21269993430304,1394.0,223.67190000000002,131.0,350.8888888888889,5272.605747476939,5554.757628,64.169257953339,226.14450000000002,258.4417866941015,273.429282,8636.701012537285,1433.0,232.8748,164.0,278.6666666666667,5100.21866313955,5605.7457699999995,75.25041907600001,239.1576,116.71296296296296,285.320156,10576.282801534298,2064.0,387.42049999999995,249.0,529.0,8711.820457739577,8018.891232999999,110.698607644547,394.5624,267.16358024691357,471.109714,15540.707933544983,2173.0,462.49089999999995,271.0,558.0,10455.822356201628,8256.633841999997,123.402235675396,471.3598,307.21604938271605,567.5837539999999,17307.662740295335,2373.0,545.8367999999999,253.0,532.6666666666667,12306.952246534009,8961.118308,116.318297403698,551.9526,425.9922839506173,665.251272,17268.34724819457,1911.0,539.3436999999999,211.0,511.66666666666674,12452.256746133386,7025.548592,101.096969903396,541.6469,522.1666666666666,656.1076700000001,14740.033092433476,1630.0,422.0674,176.0,265.44444444444446,10714.90331833569,6071.590977000001,92.027625518188,426.94140000000004,248.05881344307272,529.1506649999999,11912.011686883969,1442.0,334.3689999999999,141.0,225.66666666666669,8382.001164081414,5364.805174000001,81.414879510792,339.7326,194.3395061728395,419.843444,10401.488281412956,829.0,253.212,104.0,160.0,6402.876970885085,2956.8532029999997,60.460436832245,257.7205,148.05555555555557,319.94104,7681.0359281551255,476.5454545454545,5.812987878787878,1.034396376361283,25.515151515151516,150.43097643097644,59.66846956688294,2105.7525545454546,12.34963069531691,5.191406060606059,107.94681381718419,3.8341400606060594,1556.8987027007531,70.23966942148762,-0.8660810835629019,-0.6830742708153483,9.483930211202939,0.8088970513212835,-10.390077768936584,308.8181645123966,-0.5450800967259322,-0.5420882460973363,-22.841954194016477,-0.15399503397612493,77.60659973508035,63.239669421487626,2.0511179063360863,0.19360037068511718,2.1101928374655654,48.76737067646156,12.64547465705815,303.76091987603303,1.783553475793158,1.7989804407713506,24.78723897221372,1.31703650137741,256.6438543543642,-190.14049586776852,0.791831404958676,0.01408875515588192,-14.410468319559227,37.287419651056,-17.484903232526385,-804.346644413223,-5.277635882543445,0.6609509641873267,-1.4082073541248596,-0.4012435812672178,-383.7634473972686,-87.92561983471073,-2.696104683195596,-0.11224798680955797,-17.944903581267216,-108.36547291092748,-28.671523903609486,-425.5096609256197,-5.647807492863057,-2.2520234159779586,-46.67708368760559,-1.4540409917355395,-727.1780213537708,-225.89256198347104,-0.7841720844811793,0.1506050227118192,-0.18640955004591292,-49.50096928884809,8.41196271012014,-1024.3204812561983,0.2210336366707833,-1.2374715335169844,28.235554195150133,-0.3207890486685055,-496.82464203512393,227.4545454545454,-1.7798242424242403,-0.01968739777698117,4.363636363636363,-38.528619528619515,-3.952280323512807,974.1649624545454,5.128058534020544,-1.4058909090909095,-38.377946127946124,-0.9904233636363629,356.4968445194271,-38.677685950413185,-0.16998393021120173,-0.05830319406363213,-0.2966023875114787,-2.325579022548703,13.753179615172698,-153.14308213223134,-0.6237268319477358,-0.08353076216712652,-2.0278429638698934,-0.036352337924701245,157.7497076541456,-113.85950413223141,-0.47672130394857415,-0.013960187190509387,-2.7309458218549123,4.030200999897983,-10.73820416440498,-506.72839858677696,-2.5091632912483717,-0.5179923783287429,-1.864192571052835,-0.48240019651055877,-376.1596047518409,0.7229733143184688,0.5899989552641999,0.4343982285920145,0.352942284847302,0.27679951936574815,0.20248712325713164,0.17290784813066296,0.11383342314950655,0.1095013144044354,0.06129606574879647,0.06670661948657756,0.03249347110763933,0.04055272269601594,0.018728308423178745,0.026649122023979777,0.01030396878703862,16.013262800930093,5.6881044721849126,3.581010096194645,2.176999996249581,0.4755184787678157,-0.38199856358135476,4.048656744490708,0.9714091327889247,6.022511495548057,0.6448016633525798,14.551215686932556,10.311864890851549,32.06678799797336,11.69959448881139,2.954770713459854,0.7517065401876226,3.5370449847769008,2.2302989769769423,7.014574649768156,0.2975781417714607,3.7683423180171434,2.4293036208140344,24.442568267287687,14.701030337869602,0.36384437103830597,0.7559913600206392,0.8309784923707696,0.8753831592589233,0.8864843259809617,0.8864843259809617,1.763176870523453,872.4499809705909,0.0,3.0,0.0,0.0,7.0,0.0,1.0,0.0,0.0,3.058010655848725,0.9171109850451638,0.5077238637019219,0.2652996212776788,0.20469356067161826,0.20469356067161826,49.37523449959926,1157.4217041218722,64.25411926896892,35.07338497339008,73.77548297206985,,10.0,365.0,15.930470882759089,18.318861563241466,21.91513915192678,5.131558479839333,4.305215991296234,36.71403556914822,17.512796907389134,0.0,10.30076712495354,0.0,10.700000000000001,30.5,16.0,0.5,14.5,0.0,0.013636363636363587,1.5,0.2701857282502441,0.09584214235377009,-0.17434358589647403,0.051515151515151514,0.18429702970297002,0.0,0.7121212121212122,0.9181818181818179,0.44193548387096804,0.6162790697674421,0.8666666666666664,15.758156331230868,0.48865607616474804,0.746656076164748,23.53887413243285,5.928693594371572,4.496863891836775,39.29703046366372,10.425557486208348,0.52970297029703,0.1713395638629283,0.0778816199376947,0.3177570093457944,0.07692307692307693,0.45142110479533315,-1.028115577710647,-0.0775972349395196,-0.031155017506383238,-0.08567629814255392,0.5485788952046668,1.2493933087575153,0.04883838235200901,0.0378604032956823,0.0594949194646436,-2.467723900653424,0.7990843189622282,0.7755008675155097,1.5978333708935972,0.8062436375975569,0.6999571537285848,1.276285375719326,0.7786496212431301,1.084661193261914,0.7100966399013755,0.7816944262518012,0.6817777915092502,0.8042838620395609,0.8152238666104408,0.5913533446552093,0.8171067504105779,1.0781347668458556,0.6709248164055781,0.9778428189753751,0.7980757352605353,0.8756323364138001,0.5746609320839287,0.6076084095643361,0.584717732991776,0.7595293738774436,1.1950743437895706,0.814432122806732,1.0296681933630256,1.5540638231952906,0.7967660379488397,1.165542855198418,1.173273718582886,1.256382230577067,0.8022221380769863,0.9356347235176399,0.9448739673485302,1.030170257944243,0.9271857482464122,1.4180024010216172,1.2824163715779493,1.42298556550338,1.3461796719776038,1.1508649272795481,0.9353272936543424,1.0731891676273815,1.376645964830167,1.5349696808098854,1.4284037126620248,1.0416943622871448,1.0364063535412358,1.451113513231137,1.344856211207385,0.9736217027128391,1.2516085863524022,0.8580400272487375,1.051043107836051,0.8221787819230835,1.469181123655596,1.370253010532177,1.4692235424531739,0.997091981806136,0.7274577133409641,1.1625294664090755,1.00453268125859,0.7980997624703088,1.1825059313308564,0.9268733191029946,0.7466817701132438,0.7146514405040557,1.1655253087270103,1.1792077905899643,1.126862803624047,0.938535216332428,1.3436445279253368,0.9089301595278283,0.8359416796140267,0.7476703818746574,0.9963396199127429,0.9210049602776065,1.3238725086219054,1.241230344365186,0.9140550197448428,0.8107114450764216,0.8485213077863626,1.002246457864791,1.217706889010897,0.8568600480566199,0.6536453818586982,0.8106135218121777,0.8644359257953114,1.0497719949836442,1.2224479244953528,1.1747950454788636,0.8979267629240685,0.766605780669726,0.8806183382478678,1.2812532828473426,5.0,0.004691358024691353,3.555555555555557,2.9097222222222223,2.1327777777777785,0.951388888888889,0.45950113378684804,0.3454861111111111,0.10759952128999746,0.0206327160493827,5400.103003377904,5718.708012263745,2597.247899241129,2479.0848086765936,13.058211731901652,0.4563774222587255,7.098738722387728,0.8395115305088167,1.0,0.07692307692307693,1.9863834635097282,4.12728313431329,4.5366702556565315,4.779094498080775,4.839700558686835,4.839700558686835,0.20833333333333331,0.0023456790123456764,0.09876543209876548,0.0746082621082621,0.056125730994152044,0.03068996415770609,0.020886415172129462,0.017274305555555557,0.008276886253076725,0.00343878600823045,0.5207447946935568,16.84375,6.481481481481482,3.04,130.13907044725823,1.0,4.034869426231793,91.14920101381307,,60.60448451640184,67.91185812496805,67.79463647226098,60.61317059526954,88.65610600816885,68.4403765253912,68.52196685222309,84.96820772170346,0.13897094892898026,-0.14047693767099534,-0.6226253978245199,0.3504580929759077,0.005069928951928977,-0.16417982747659104,0.13827427711106222,-0.04161522520849108,-0.0984534380329528,-0.19951213849737223,-0.03786906984456037,0.046998521333561624,0.07682885198497964,0.20428209020146645,0.10835732577464217,0.047880985123140415,0.18768568540739455,0.12269569386110499,0.0835148388217669,0.08361250767119985,0.20062291022250134,0.13294053122948604,0.19886983900801855,0.0954354216123037,-0.19082494235522446,0.06514755994357088,0.006514040889863013,-0.27011256841887843,0.11854681907445931,-0.14014679922162773,-0.18268410728437698,-0.2043856038052197,0.06089043684540764,-0.00623909543872684,-0.05005010277428108,-0.11788759264888457,-0.07806034103248906,-0.19622605404391885,-0.04591038209938605,-0.29755161702905164,-0.3047705461645209,-0.2032943060399535,-0.08549120251347654,-0.19348408670369366,-0.18353007381932793,-0.18294191599022908,-0.16044567467208024,-0.1976058167881018,-0.20582491616297513,-0.05857500146649585,0.06321975566807306,-0.00317227153394173,-0.1428817550613631,0.06121428590716357,-0.21121699903543717,0.007771498118458589,-0.10350243452281373,0.11357606968055248,-0.03632887152189108,-0.13856167323571147,0.2386493704692865,-0.15309031082956331,-0.009516370236251178,0.0855106888361045,-0.1280607905456824,-0.033118666795053785,0.23131040737709743,0.2076199143333553,-0.13540560039786043,-0.17776321862052352,-0.1291584746489161,0.11448941536819698,-0.05150705837466611,-0.018557481883466512,-0.03576975400392771,-0.007377124063584879,-0.00981080001515108,0.1462745640121374,-0.04615307518385516,-0.0320516988011268,-0.0102110885068618,-0.011921614885598694,-0.006016930145766792,0.06430115923549716,-0.19230697648449205,-0.06600779511933677,-0.010862613678166133,-0.08614796361740339,0.021563513007438664,-0.1448494469187756,-0.1936858933571259,-0.16353286213631113,-0.08030978310791786,-0.013899879265368634,-0.10126738271459192,-0.19446519428495812,3.943990333779691,9.516144306537324,6.631975707865092,25.060731237498032,47.07196960517732,49.485177278036765,50.39638939924888,50.45748030833979,50.45748030833979,44.40849732768829,26.977380030465213,6.139150298893082,7.05635759191988,0.0,17.431117297223075,4513.279490415429,3909.879833604526,893.5681558118154,74.0,36.0,50.0,66.0,78.0,81.0,87.0,83.0,87.0,337.0190978320003,24.0,4.795790545596741,5.680172609017068,6.5998704992128365,7.506042178518122,8.430981494597171,9.347054195292005,10.274809700521592,11.196857635323791,12.126558548117611,0.8787878787878788,1.0277575757575759,1.116180211033723,0.851159164705081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7503669569951008,1.0147355912061793,1.0408748813701472,0.7117348346070105,6.0,1.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,5.106527394840706,0.0,16.58776266455134,0.0,15.930470882759089,14.416541779374388,13.401775505276145,0.0,11.336785877934737,12.13273413692322,12.13273413692322,24.188029816453177,4.895483475517775,229.41055795353387,-522.4845843887929,-39.43463159791257,-15.83286619359978,-43.54038203239941,278.7857924531331,634.9371197330794,24.819487671056354,19.240518779790293,30.235100939670453,0.5,0.6981458082032601,0.22167270111834816,64.29562483436388,0.1287599496335097,159.89063836611638,0.3018541917967399,5.0,0.08333333333333333,0.39378038601043264,0.8181920438124287,0.8993488907313026,0.9474070393787114,0.9594215765405636,0.9594215765405636,1.6424999999999998,,2.678571428571429,1.6506800723172805,1.1944845093465637,2.6752802567072145,-5.035446649833096,1.5416921664626688,1.5574803885312503,-2.238794046619453,81.68330000000003,18.318861563241466,0.0,9.289194512243443,0.0,4.895483475517775,12.36446058668352,47.102865420678256,0.0,0.0,3.8918202981106265,0.0,5.262690188904886,2.3978952727983707,6.842683282238422,4.442651256490317,8.530109416682784,6.259581464064923,10.282232159944682,29.0,9.147611777735786,3.8961723670949864,0.0,0.0,1.1879610208280842,0.0,0.37559626165281035,0.0,33.916000000000004,0.0,37.22446932476694,0.0,0.0,-3.8891527305366593,0.0,0.0,-1.4686026077097496,36.833946964112855,5.316788604006331,5.131558479839333,0.0,35.76837060344178,14.817828337479405,0.0,5.563451491696996,46.43489740449904,0.0,5.759164871656176,0.0,28.088252435267673,24.762109580838327,27.914178186887415,182.2984020276262,,121.93003928575075,135.67365442517996,135.48068344367226,121.9495724983181,179.70234730612978,136.7405992174676,136.90234457821606,170.54699563793952,27.914178186887415,182.2984020276262,,119.98198733769887,134.17303617761888,134.39478843517543,120.00391412980375,182.4088644405621,135.33906088431974,135.4864533159149,172.17520949002653,5.095477050151818,132.39400502575384,,91.91345691177474,100.56346072794847,99.79366059041138,91.92849525015933,134.29781489950665,101.50664340886205,101.90444760870176,127.5467755747114,1.2688262812221553,8.286291001255735,,5.54227451298867,6.166984292053635,6.158212883803285,5.543162386287187,8.16828851391499,6.215481782612164,6.2228338444643665,7.752136165360887,2.5481452914749623,91.14920101381307,,60.60448451640184,67.91185812496805,67.79463647226098,60.61317059526954,88.65610600816885,68.4403765253912,68.52196685222309,84.96820772170346,33.48627450980392,0.0,1.2204931972789115,0.0,0.0,0.0,10.318480725623584,34.34887108521486,0.0,2.465535478080121,0.0,0.0,0.0,0.7714351851851853,0.0,0.0,0.0,23.487249542031346,354.79515178060973,65.55065429582103,136.20034343233857,149.71011843666554,157.71011843666557,159.71011843666557,159.71011843666557,688.0,121.95813740619694,153.4011986260573,69.90966333923501,136.22,99.6,1.0,8.312495649078144,5.584962500721156,3.902266196486053,4.623199010739095,,4.622881128507271,4.629943059039838,4.63036415260108,4.622872571465824,4.6208857830712144,4.630238896829252,4.63029202760642,4.624650232318362,0.1773757362039115,0.21014540957904976,,0.21013096038669413,0.21045195722908352,0.21047109784550366,0.21013057143026473,0.21004026286687338,0.21046540440132963,0.21046781943665546,0.21021137419628919,2.1500148207626357,2.319544252408151,,2.319475491976236,2.3210019301232547,2.321092876039391,2.3194736409553833,2.319043775017958,2.3210658247186147,2.3210772993905535,2.3198581030242322,217.46999999999989,232.6791878212395,121.87649366864754,,120.50616815929705,120.3183864537306,120.55849025321345,120.5074860402032,122.15406803481095,120.32867820718675,120.3030050109219,121.46608272047654,10.57632671914725,5.539840621302161,,5.4775530981498655,5.469017566078663,5.479931375146066,5.477613001827418,5.5524576379459525,5.469485373053943,5.468318409587359,5.521185578203479,6.238117988861112,5.591465545349929,,5.5801583000288755,5.578598810018188,5.5805923918205345,5.580169236180278,5.593740461114048,5.578684344021911,5.578470962342335,5.588092429610006,25.680457136558324,16.170692528554632,14.765933681342908,-0.23723261526832906,-1.129621126228268,5.975363074242042,1.5051058332283531,0.0,-2.668659533257748,261.2489159282189,116.58560829674309,-265.52475893012877,-20.0405358576906,-8.046204816064506,-22.1270632441774,141.67792226991278,322.6727269860719,12.613173053394107,9.777961423820365,15.365367951717714,970.0,39.0,2.0746717693437717,1.2395277955406598,0.16666666666666666,0.04564354645876384,0.9380035982439142,0.41100412354000027,0.1642664266089148,0.035997930146750165,0.0,0.0,0.0,0.0,0.14433756729740643,0.09128709291752768,0.21747042090427826,0.10765398408061451,0.34088425369910125,0.2048689741196157,15.905412915006313,12.979977015812398,10.425557486208348,8.470614836335248,9.964782697166934,7.289536437256739,8.645392406533148,5.691671157475327,7.227086750692736,4.045540339420567,5.20311631995305,2.5344907463958677,3.284770538377291,1.5169929822774784,2.3184736160862407,0.8964452844723599,5.231467190929015,2.855285997424146,8.665368261079124,3.954127374595735,14.54436199193239,5.445019978347458,73.36418449432233,35.512307122314155,30.530364962193012,28.743193125044954,28.558684390538378,28.558684390538378,120.0,146.0,41.35272299999999,24.439276999999997,0.5151515151515151,114.09,8.090277777777779,4.722222222222222,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,33.0,0.0,0.0,35.0,11.0,4.0,9.0,26.0,15.0,24.0,20.0,0.0,0.0,0.0,13.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,6.0,2.0,2.0,22.0,9.0,0.0,3.0,4.0,0.0,3.0,2.0,2.0,0.0,0.0,1.0,2.0,3.5409593240373143,6.842383077095988,4.200954297280359,4.754667197134003,5.3005024774533736,5.699397876338377,5.928924028633084,6.2956695178019455,6.417753003229712,6.7772550021668065 +441074,C=C[C@H]1CN2CC[C@H]1C[C@@H]2[C@@H](O)c1ccnc2ccc(OC)cc12,0,20.208333333333332,5.927287500000001,3.25,5.958333333333333,161.81861390847868,79.45825116666667,1.4615649524245,6.007508333333334,3.1140046296296298,7.482503333333333,211.16162086877083,23.215686274509803,6.226960784313725,4.0588235294117645,5.8431372549019605,144.98857365093824,87.31942484313724,1.8105570022745094,6.376892156862744,2.799019607843137,7.654936862745099,260.4121049465177,19.268817204301076,6.14805376344086,3.763440860215054,4.56989247311828,152.984520331944,70.74111684946236,1.5751609047612043,6.263462365591398,2.4958183990442055,7.636615870967742,220.91939399893144,15.84732824427481,5.961656488549619,3.2213740458015265,3.5114503816793894,156.23332873154223,56.53538807633587,1.3986092399616794,6.063302290076336,2.3725614927905005,7.5001247633587775,187.73163138765733,13.18918918918919,5.829290540540541,2.668918918918919,2.7162162162162162,158.42920172592312,45.50600437837838,1.2419529987453986,5.920037162162162,2.3667417417417416,7.416063243243244,160.50874672663915,12.141891891891891,5.79618918918919,2.4527027027027026,2.5878378378378377,163.10267755123817,41.965560547297294,1.126766468242588,5.865443918918919,2.411036036036036,7.418008027027028,144.43292280376036,13.065040650406504,5.861552032520326,2.6178861788617884,2.6260162601626016,161.2103257636461,45.38429630894309,1.199166129115187,5.937977235772358,2.4480578139114724,7.459468162601626,155.3755793337045,12.918181818181818,5.868536363636364,2.590909090909091,2.2454545454545456,160.1444486219207,44.22154194545454,1.2311491458320636,5.951041818181819,2.400252525252525,7.454726472727273,158.44194852867028,11.03921568627451,5.811656862745098,2.3137254901960786,1.7058823529411764,163.0070525922934,36.40561359803922,1.1224001457654313,5.881259803921568,2.263616557734205,7.433996745098039,140.48451285935226,7.067708333333333,0.09304982638888885,0.015051439126871902,0.609375,3.3177083333333335,1.441226122768325,33.77642313888889,0.2328374115178055,0.09045208333333327,0.7692780671296297,0.05415308333333332,51.76323351674906,0.46170343137254904,0.0006915134803922215,-0.00483694607897642,0.26317401960784315,0.8685661764705882,-0.17611152015118667,2.200334419934627,-0.0023196103061421153,0.0021920343137255484,-0.06050219566993464,-0.0014468872549019804,1.2870989693191437,-0.1376008064516129,-0.011940507392473057,-0.0017599406981033392,-0.008568548387096774,-0.058299731182795696,0.05650986248464782,-0.5638843987455292,0.014009594522891598,-0.010491330645161237,-0.03585512806152926,-0.007224717741935498,2.125846246884815,-0.3441078244274809,-0.0018489994168786853,0.0008783124010736178,-0.09219942748091603,-0.07502385496183206,-0.02678814829472327,-1.661769914970318,-0.011255080767914958,-0.002210734732824403,0.04366369142281595,-0.0005656660305343567,-2.603949015340105,-0.49028716216216217,-0.0022814705330330325,-0.0014149703523304103,-0.048564189189189186,0.04265202702702703,-0.22694915796791884,-2.4148394170420424,-0.03647165016290803,-0.0021141891891891867,-0.01678338494744745,-0.0016428243243243232,-6.447762799382609,0.6423141891891891,0.008682211899399387,0.0005643432518605451,0.020692567567567568,0.2766047297297297,0.039964140273801504,3.0455190367867884,0.010606287719536782,0.008707094594594579,-0.010425464527027042,0.004021898648648648,3.2976051406571405,0.12334857723577236,0.0075295435298102995,0.001281813220975159,-0.039253048780487805,-0.16323678861788618,0.010919720824392317,0.5556198773712738,0.000925514606061652,0.006385315040650409,0.02682062302393856,0.005214583333333331,-0.016118666187683924,-0.7661931818181819,-0.004750546085858573,-0.0001422144762218397,-0.05710227272727273,-0.609375,-0.07113666732371945,-3.672493194949495,-0.018833875449164646,-0.005818977272727257,-0.020456518308080814,-0.0016716500000000009,-5.186964897528996,-0.9819240196078431,-0.015121435866013068,-0.0009773229283178463,-0.048100490196078434,-0.7037377450980392,-0.04474342389945012,-4.635082611111109,-0.01276464423330393,-0.015048651960784304,-0.16054985362200438,-0.007927563725490193,-4.515556517951798,,,0.4777777777777778,1.125,0.4791666666666667,0.020833333333333332,0.6458333333333334,-0.16666666666666666,0.9369896928622814,0.008632236013178826,0.026548902679845488,0.7782978970052145,0.21186671103084986,0.2759266180548503,1.715287589867496,0.48779332908570017,2.0757372127543223,1.7416526456787214,0.17957796219178554,0.1545066048838156,0.0,0.33408456707560114,6.753828708500014,970.0,284.50980000000004,156.0,286.0,7767.293467606976,3813.996056,70.155117716376,288.3604,149.47222222222223,359.16015999999996,10135.757801701,1184.0,317.575,207.0,298.0,7394.41725619785,4453.290666999999,92.33840711599998,325.22149999999993,142.75,390.40178000000003,13281.0173522724,1792.0,571.769,350.0,425.0,14227.560390870793,6578.9238669999995,146.489964142792,582.502,232.11111111111111,710.205276,20545.503641900625,2076.0,780.9770000000001,422.0,460.0,20466.566063832033,7406.135837999999,183.21781043498,794.2926,310.80555555555554,982.5163439999999,24592.84371178311,1952.0,862.735,395.0,402.0,23447.521855436622,6734.888648,183.80904381431898,876.1655,350.27777777777777,1097.57736,23755.294515542595,1797.0,857.836,363.0,383.0,24139.19627758325,6210.902961,166.761437299903,868.0857,356.8333333333333,1097.8651880000002,21376.07257495653,1607.0,720.9709,322.0,323.0,19828.87006892847,5582.268446,147.497433881168,730.3712,301.1111111111111,917.514584,19111.196258045653,1421.0,645.5390000000001,285.0,247.0,17615.889348411278,4864.369613999999,135.426406041527,654.6146000000001,264.02777777777777,820.0199120000001,17428.61433815373,1126.0,592.789,236.0,174.0,16626.719364413926,3713.372587,114.484814868074,599.8885,230.88888888888889,758.267668,14329.420311653932,339.25,4.466391666666665,0.7224690780898513,29.25,159.25,69.1788538928796,1621.2683106666666,11.176195752854664,4.341699999999997,36.92534722222222,2.599347999999999,2484.635208803955,23.546875,0.035267187500003294,-0.24668425002779742,13.421875,44.296875,-8.98168752771052,112.21705541666597,-0.11830012561324788,0.11179375000000297,-3.0856119791666665,-0.073791250000001,65.64204743527633,-12.796875,-1.1104671874999943,-0.16367448492361056,-0.796875,-5.421875,5.255417211072247,-52.44124908333421,1.3028922906289186,-0.975693749999995,-3.3345269097222214,-0.6718987500000013,197.7037009602878,-45.078125,-0.24221892361110778,0.11505892454064393,-12.078125,-9.828125,-3.5092474266087486,-217.69185886111165,-1.4744155805968595,-0.2896062499999968,5.71994357638889,-0.07410225000000072,-341.11732100955373,-72.5625,-0.3376576388888888,-0.20941561214490073,-7.1875,6.3125,-33.58847537925199,-357.3962337222223,-5.397804224110388,-0.3128999999999996,-2.4839409722222223,-0.24313799999999985,-954.2688943086262,95.0625,1.2849673611111092,0.08352280127536069,3.0625,40.9375,5.914692760522622,450.7368174444447,1.5697305824914436,1.2886499999999976,-1.5429687500000022,0.5952409999999999,488.0455608172568,15.171875,0.9261338541666668,0.15766302617994457,-4.828125,-20.078125,1.3431256614002551,68.34124491666668,0.1138382965455832,0.7853937500000003,3.298936631944443,0.6413937499999997,-1.9825959410851226,-84.28125,-0.5225600694444431,-0.01564359238440237,-6.28125,-67.03125,-7.82503340560914,-403.97425144444446,-2.071726299408111,-0.6400874999999983,-2.2502170138888897,-0.1838815000000001,-570.5661387281896,-100.15625,-1.5423864583333329,-0.09968693868842032,-4.90625,-71.78125,-4.563829237743913,-472.7784263333331,-1.3019937117970009,-1.5349624999999991,-16.376085069444446,-0.8086114999999997,-460.5867648310834,0.6950597415393837,0.5857885697830306,0.4335940702984003,0.32159223560280714,0.2658008249631668,0.17883060663938127,0.17200476747509827,0.10391936386802844,0.10738090887628186,0.058477710976984974,0.06777668246842039,0.03353135406826954,0.043982886638341656,0.018880829612553524,0.028529321763971275,0.010710897765292372,8.011353927593717,5.670063242299072,3.5224342082788564,2.1674933238518026,0.3964000783419313,-0.5293016341199063,3.2537053675757,0.9574759002787414,6.007460577248749,0.997570731019336,14.548157796401657,10.933095991098325,16.0049608273377,11.683118305777553,2.0116840975624433,0.7766105251985196,3.465202043799178,2.216711283654493,6.002602358515155,1.1673468732508094,3.678699179604975,2.412280107418001,20.91420367076588,14.706040527175164,0.24144884280990217,0.6196000920327691,0.8476476782097223,0.9047948784010268,0.9047948784010268,0.9047948784010268,1.4597148156867092,760.3873010425311,0.0,2.0,2.0,0.0,7.0,4.0,2.0,2.0,0.0,4.176617956563645,1.9709033111276626,0.6407268229617387,0.3073934896284056,0.3073934896284056,0.3073934896284056,256.87587568034974,1005.2038801367959,47.65942144224965,20.941747502849918,39.73836201846942,,12.0,483.0,6.103966387748303,5.106527394840706,6.041840829147961,11.835812092322787,41.72622269181311,6.4208216229260096,13.30664111289061,24.26546827384644,22.538844042230064,4.736862953800049,11.466666666666667,27.0,11.5,0.5,15.5,0.0,0.022222222222222216,-4.0,0.10315656565656545,0.04286398467432939,-0.060292580982236055,0.019888888888888845,0.11469686411149793,0.0,0.5486111111111113,0.7972222222222219,0.4454545454545458,0.5057471264367819,0.7773333333333331,22.487752628694754,0.2071736643162918,0.6371736643162917,18.679149528125148,5.084801064740397,6.622238833316407,41.1669021568199,11.707039898056804,0.599303135888502,0.11627906976744186,0.0,0.38372093023255816,0.45,0.2650444449318764,-0.4873772532944541,-0.042227204777899305,-0.010153692776967793,-0.03046107833090338,0.7349555550681236,1.3514737870271918,0.0449576722723982,0.028155703896399837,0.04223355584459974,-3.551490838498236,0.87063447339142,0.8650038704094929,1.2733171454248202,0.7876654935478464,0.6626035029396374,1.305544971326931,0.8744872138160438,1.1152801795156508,0.841811985636782,0.9705739458790709,0.9129760352875216,1.0179126403994558,0.9943661302208383,1.177657844485731,1.2391855605537017,1.339031339031339,1.0948498506102193,1.093332493954698,0.9916712799788474,0.9658416523228862,1.143233994117066,0.8590138507404133,1.1901059688400604,0.9511660067888648,1.011031293772185,0.9430367259280816,0.8558534779480237,1.3615188882364453,1.0160700804103204,1.081400947210485,1.013000551896167,1.0550995349569536,0.9471559052659396,0.7903959423437833,0.9107282240724441,1.0420800789541738,1.035780437770121,0.9473931911600648,0.9279964860748635,1.0748440748440748,0.8993593279307566,1.1385826762606266,1.0388966034877483,1.1525816624074845,0.9521724116036251,1.1627073027232886,0.9547852467701983,1.1148406167116387,0.9089406281742317,0.9832283946081998,0.9484320737038755,0.9445599445599445,0.910327124612839,0.9020890817526379,0.9077938452063837,0.9127148021209522,0.9728501072876549,1.4293153466598387,1.0304681186371518,0.9027251747255695,0.9759812115438767,0.9863079029210344,1.0267712075912176,1.0646932110346743,1.0857551275669743,0.9595084397091104,0.975536537607881,0.965888821933511,0.986783398133173,1.1226446215282597,0.9942499464312194,0.9705024378800163,1.0881757888390167,1.0511508425637466,1.0464150010512516,1.0079254079254079,1.1858998144712432,1.0468523530836265,1.0882202370747474,1.0549220292275556,1.0600530374570498,0.9713428421219102,1.026307792989207,1.0730485151231488,1.1368503186093892,1.253793939683951,1.1405941943276028,0.9294452823864588,1.2311693908332566,0.9812305021312596,1.1330865182058567,1.005404545339305,1.2461457900063544,1.3286464051980282,1.257577767540922,1.0450590158555082,4.5,0.07417610447913478,3.1111111111111125,1.625,1.6711111111111112,0.9305555555555557,0.48734693877551016,0.3072916666666667,0.17233560090702943,0.12687500000000002,4628.966593055214,5327.623569084623,2298.3136195830616,2052.440773604669,13.314049842577402,0.4817635540481352,6.899825871643298,0.929621136860148,1.0,0.45,1.4083445441575106,3.6140591895934935,4.944235677759417,5.2775690110927505,5.2775690110927505,5.2775690110927505,0.16666666666666663,0.010596586354162111,0.07977207977207984,0.03869047619047619,0.046419753086419754,0.028198653198653202,0.01624489795918367,0.011818910256410256,0.009070294784580497,0.009759615384615386,0.4172379336532475,17.415637860082306,7.3188691650230115,3.2410714285714284,142.3134262032049,1.0,4.132304663699703,110.94457791177038,,90.9885067143196,89.77794724747719,89.89034224244264,91.00227715712019,110.50355568301924,90.52493300058774,91.05643174282858,102.34694161699268,0.06532576184490009,0.007431647185478205,-0.3213610365231347,0.4318753142282554,0.2617970265029088,-0.12219562036032865,0.0651440921049229,-0.009962360820888659,0.024234204818118804,-0.07864801851908189,-0.026718464874766704,0.024865119156489257,-0.019468942401407282,-0.12832380086954018,-0.11692840021930201,-0.014061207609594705,-0.01757228946169038,0.039209574120196336,-0.016694615543713216,0.06016900132829495,-0.11598771701585549,-0.04660880063214824,-0.13341286030685542,0.04106865244801513,-0.04868732666917931,-0.01987106788518926,0.05835404798638381,-0.15130162458406732,-0.022613155655685644,-0.01858705436400796,-0.04919910874331212,-0.048338798711710734,-0.024440948747166184,0.05675930887479503,-0.010445684635396696,-0.05030499136993719,-0.06937003326096915,-0.024518804833637654,-0.09400897418534619,-0.07969507969507968,0.012855869998727142,-0.157469500713734,-0.07149482368551004,-0.1566399915080613,-0.023373582025722883,-0.021817058960319106,-0.030336671952954176,-0.12456259706604887,0.0908801210938278,0.09330712626064756,0.037494305169331076,0.03395703395703396,0.08337222622936909,0.027729264438419898,0.09016700863390989,0.04555233478330307,0.09626195742233228,-0.013552270593034165,0.07426906098572995,0.06370554767584473,0.017452414759961895,0.0809194796166692,0.0851621702197692,-0.06441525953721076,-0.04920166941072865,0.007576688107357908,0.016449932400673717,0.003974939422442756,0.070593344070576,0.034864666198027805,0.09629337818560653,-0.0003113921811408555,-0.10840758357339052,-0.05105378774168073,-0.009448563358166783,-0.09370629370629371,-0.1836734693877551,-0.04935843598718517,-0.10872948801737167,-0.0808885278632484,-0.06433215309461929,-0.02659183874097599,-0.03086897175753307,-0.10020558116506857,-0.13893103298799256,-0.16250901751084545,-0.06493219153861472,-0.07893413775766718,-0.21211561547696003,-0.031045387807366685,-0.1372283439265199,-0.05482213597073851,-0.16637153514007122,-0.20870197719409364,-0.14639173316675155,-0.08723482308134203,10.367266822184,24.163655981791067,9.595433520528273,12.557310303389,33.01041017767415,37.1019780777454,37.437978077745406,37.437978077745406,37.437978077745406,49.81769310610374,41.79966349628931,4.309871092602853,3.708158517211574,0.0,8.018029609814427,4187.173372956804,3441.2397360700043,1144.2170211601342,153.0,39.0,56.0,76.0,105.0,112.0,126.0,132.0,147.0,324.1837780080007,27.0,4.890349128221754,5.777652323222656,6.680854678790215,7.585281078639126,8.494333897270154,9.40351943877092,10.314702763735975,11.225816561559018,12.138056083012769,0.6041666666666666,0.9661666666666666,1.12466092525658,0.5627202841839426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6637603792415169,0.9539215686274511,0.9925345957756736,0.6134887288825567,5.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,0.0,4.0,1.0,0.0,0.0,0.0,9.843390348640755,5.749511833283905,0.0,0.0,0.0,9.883888251797686,0.0,0.0,6.578935683598497,6.076020106833881,61.051131509630814,24.169665021138407,18.730464646642098,144.88596336091666,-266.42370445422546,-23.083408693425618,-5.550493842796364,-16.65148152838909,401.7618390412664,738.7801756825704,24.576012748824034,15.391253660053554,23.086880490080326,0.5,0.8701569408698381,0.27013767222872487,72.15767263644237,0.11475808045824629,193.59050553132664,0.12984305913016203,6.0,0.14814814814814814,0.2521672337058053,0.6471053635770749,0.8852764324059463,0.9449605096562934,0.9449605096562934,0.9449605096562934,3.1732000000000014,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,95.02680000000007,9.843390348640755,0.0,9.883888251797686,11.835812092322787,24.987450462748285,20.199310353102682,48.68071912758889,0.0,5.749511833283905,4.007333185232471,0.0,5.351858133476067,0.0,6.934397209928558,0.0,8.619569258033104,0.0,10.353447900530844,28.999999999999996,9.568129438886563,4.42455099941211,0.0,0.0,0.0,1.8745875587889484,1.743282807460297,0.0,46.376,3.979849799827808,0.0,0.0,0.0,0.0,2.0894117482979317,0.0,0.0,53.98372441231584,4.736862953800049,0.0,5.749511833283905,41.231566828889044,0.0,11.835812092322787,24.509061125297315,43.11726763589189,0.0,10.902924932081056,0.0,27.010573640829243,31.86049820359281,32.595631483432186,222.8584179890234,,182.73777941471647,180.27881536182872,180.56170259927828,182.76580398029714,222.68595053176836,181.7960979022689,182.87584157560366,205.8491975039791,32.595631483432186,222.85841798902334,,182.1365182270349,179.57174230459282,179.96412694227442,182.16617120350676,224.81991864179636,181.15996505817674,182.28003455964006,206.80695631238098,4.989896260827983,163.50258314100208,,136.719827330575,134.9834697750273,134.66385903076656,136.73813557521237,160.51353334591306,136.03266837809224,136.8195534052102,151.20595736410726,1.3581513118096744,9.285767416209309,,7.614074142279853,7.511617306742863,7.523404274969928,7.615241832512381,9.278581272157014,7.574837412594538,7.619826732316819,8.57704989599913,2.494948130413992,110.94457791177038,,90.9885067143196,89.77794724747719,89.89034224244264,91.00227715712019,110.50355568301924,90.52493300058774,91.05643174282858,102.34694161699268,45.788235294117655,0.0,1.661567054154883,0.0,0.0,0.0,11.151855158730157,47.64166059723233,4.335080941518531,0.0,5.3495717015634945,0.0,0.888137215017625,2.4339755763416475,0.0,0.0,0.0,29.44745898636272,475.66937947150336,67.60053811956051,173.47484110048768,237.32331253245204,253.323312532452,253.323312532452,253.323312532452,997.0,127.51056595322258,70.97842293067978,59.26660568720104,45.59,45.59,1.0,8.613208023463029,5.754887502163468,4.4275867864798695,4.823742446479141,,4.828252162577957,4.828938736838238,4.826552130443957,4.828237860411827,4.796027569432232,4.828427894444384,4.82822144683088,4.816741727573447,0.18448278276999455,0.20098926860329755,,0.20117717344074823,0.20120578070159326,0.20110633876849823,0.20117657751715945,0.19983448205967633,0.20118449560184934,0.20117589361795332,0.20069757198222696,2.3633234295260523,2.44901880532014,,2.4499532684253618,2.4500954576538008,2.449601105481407,2.4499503062380463,2.4432567229247124,2.449989664343091,2.449946906735097,2.4475664467020715,255.12000000000018,172.09945801180763,142.70448000401663,,141.87147849953413,141.7559300995402,142.09110254335246,141.87373339631353,145.43368236633103,141.84112932868328,141.87660637622017,143.51985436427623,7.1708107504919845,5.946020000167359,,5.911311604147255,5.906497087480841,5.920462605973019,5.91140555817973,6.059736765263793,5.910047055361804,5.911525265675841,5.9799939318448425,6.02354129130326,5.836244655906026,,5.830390304132859,5.829575514004097,5.83193715644561,5.8304061979466395,5.855188928764327,5.830176361078309,5.830426448001029,5.841942120922206,5.3495717015634945,6.858526575753758,12.13080666834635,1.8461944391954317,2.0068593648815507,7.95765726390546,5.620374760237224,6.068442171961847,1.661567054154883,303.2055490458908,79.2015934701683,-145.63993254775104,-12.618494634212562,-3.0341652614114807,-9.10249578423444,219.62222640096786,403.85255949517585,13.434423360952692,8.413594989482831,12.620392484224245,1286.0,42.0,1.4714891920923363,0.8998869507799445,0.0,0.0,0.4321064926405204,0.20852297062733116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3277210825314642,0.19113256465887216,0.6831323525096153,0.3716823910008341,16.681433796945207,14.058925674792736,11.707039898056808,8.682990361275793,10.366232173563507,6.9743936589358695,9.632266978605504,5.8194843766095925,8.160949074597422,4.444306034250858,7.116551659184141,3.520792177168302,4.9260833034942655,2.1146529166059946,3.5946945422603807,1.349573118426839,4.204149146715663,2.2874995095199266,6.9686060773611604,3.351046260105559,11.528760369665397,4.939120484713901,80.88292341759114,35.05186492447132,22.984524221890034,21.39329609646936,21.39329609646936,21.39329609646936,132.0,161.0,53.20703199999998,28.662967999999996,0.3958333333333333,177.04,7.0,5.333333333333332,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,10.0,11.0,48.0,0.0,1.0,51.0,11.0,1.0,6.0,45.0,12.0,27.0,39.0,0.0,0.0,2.0,20.0,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,4.0,1.0,4.0,24.0,4.0,0.0,2.0,2.0,0.0,5.0,4.0,0.0,0.0,0.0,1.0,2.0,3.5409593240373143,7.166605262611263,4.102643365036796,4.709530201312334,5.288267030694535,5.877735781779639,6.158566707538567,6.523699961872766,6.846876718676053,7.198674294376859 +49800073,N#C[C@@H]1C[C@@H]2C[C@@H]2N1C(=O)[C@@H](N)C12CC3CC(CC(O)(C3)C1)C2,0,19.75,5.96405625,3.5208333333333335,5.625,164.7888014637755,77.5558318125,1.3798318879421876,6.0299375,4.3087384259259265,7.5208172499999995,199.23170658031154,22.692307692307693,6.213134615384616,4.538461538461538,5.3076923076923075,146.34669224947214,85.02926582692307,1.8104109116538463,6.359961538461539,2.5849358974358974,7.641316846153846,258.8653939495507,18.826923076923077,6.030932692307693,4.115384615384615,3.8653846153846154,151.06646149708791,69.03052132692308,1.5739693129196248,6.156327884615385,2.2412526709401708,7.517610461538461,216.99934792440547,13.877300613496933,5.9461214723926386,3.0122699386503067,2.736196319018405,157.85586407402687,47.668650092024535,1.2857581911872822,6.035965030674847,2.443762781186094,7.506125815950919,167.0114643976705,11.427807486631016,5.777406417112299,2.4705882352941178,2.192513368983957,166.64388185066142,39.33456268449197,1.0270085411261016,5.8347165775401075,2.4196375519904927,7.412924577540107,130.94692240364884,12.839160839160838,6.149426573426573,2.5174825174825175,2.4825174825174825,167.13255142956132,43.41766024475525,1.075201257364811,6.191746153846155,3.261946386946387,7.744421902097902,141.81138643981978,12.076335877862595,5.903877099236641,2.5114503816793894,2.1526717557251906,166.8433461746814,41.2085093129771,1.1053508783836792,5.959006106870229,2.7998303647158607,7.505653374045802,141.53259580047333,10.637096774193548,5.737508064516129,2.5806451612903225,1.6612903225806452,163.83113279415173,35.12566492741936,1.123421309407774,5.807604838709677,2.1728270609318994,7.367304096774195,139.43301910635907,10.576923076923077,5.673163461538461,2.2788461538461537,1.6442307692307692,163.97659251672374,35.35248960576923,1.0846612871814036,5.7445,2.2900641025641026,7.308031499999999,133.96632786471167,7.206597222222222,0.10261349826388884,0.014077182232700991,0.8120659722222223,3.248263888888888,1.4365046522453004,34.37532665234375,0.22269131323271482,0.09868315972222218,1.7576195987654326,0.059042109374999985,50.17329006941949,0.3639155982905988,-0.006886134481837507,-0.007500476948387028,0.22078659188034194,0.7765758547008544,0.12640401340743437,1.840148757512012,0.029929724732459393,-0.005296541132478573,-0.02420168566001897,-0.0045803257211538256,5.805734950086617,0.21047008547008592,0.007388785389957306,-4.093262147104506e-06,-0.09151308760683753,-0.05795940170940182,-0.09361543213551603,0.9452155417668228,-0.009375057573020755,0.0069788595085470365,0.062136455365622005,0.004039508413461542,-0.929310621791228,-1.3042454839809137,-0.0034058551146046064,0.001209516316709345,-0.07471934645535105,-0.098468387866394,-0.16191036687398871,-6.304239373969517,-0.04582642233402543,-0.005767080990115849,-0.018893669999242604,-0.0006331553872699326,-10.984825532031804,1.0734829916815212,0.005290824374257246,-0.0007218846922270679,-0.07498932338086751,0.15859885620915037,-0.11410850946329858,5.09551540213486,0.003086681342141788,0.007987629047831221,-0.04867816234237802,0.00011052832553475167,4.394006497145001,-1.1180191336441339,-0.020184025653166186,-0.0007479782011864198,-0.022001869658119667,-0.5419701825951827,-0.107277820785069,-5.229446814494101,-0.005621841315051815,-0.020021067647630092,-0.16069482215315542,-0.011055457277097867,-4.088478678369172,-0.009714270568278,0.004232096519826136,0.0017733723295153647,0.0565727046225615,-0.07205523748939778,0.2303967369475932,-0.04537759604604024,0.014779303908240306,0.00301028811492791,0.09393406606351896,0.00458766543416031,1.8633435345084737,-0.6115031362007171,-0.013067900145609341,-0.0014844441018872446,0.020091285842293895,-0.3756160394265232,0.09607926122338055,-2.83533010345262,0.007106516613580015,-0.012811855958781369,-0.15788654918359218,-0.006684546875000005,-0.5401628523629389,0.16760149572649574,0.0013689736912392639,-0.00010865729685718232,-0.17144097222222227,-0.11485042735042725,-0.058705002421224596,0.7640648398437511,-0.009320858985280338,0.00214656784188031,-0.060548729819563135,6.785937499998284e-05,-0.4801082507299276,,,0.47246376811594204,0.8586956521739131,0.1956521739130435,0.0,0.6630434782608695,-0.4673913043478261,1.2611226862088316,0.021087517516681743,0.043522300125377396,0.4852280312308472,0.10057146119455411,0.3746111761745509,1.7463507174396786,0.47518263736910504,2.071826018935277,1.6673850993790114,0.2490873864023795,0.15535353315388564,0.0,0.4044409195562651,6.566555771666681,948.0,286.2747,169.0,270.0,7909.862470261225,3722.679927,66.231930621225,289.437,206.81944444444446,360.99922799999996,9563.121915854954,1180.0,323.083,236.0,276.0,7610.027996972551,4421.521822999999,94.141367406,330.718,134.41666666666666,397.348476,13461.000485376637,1958.0,627.2170000000001,428.0,402.0,15710.911995697143,7179.174218,163.69280854364098,640.2581,233.09027777777777,781.8314879999999,22567.932184138168,2262.0,969.2178000000001,491.0,446.0,25730.505844066378,7769.989964999999,209.578585163527,983.8623,398.3333333333333,1223.498508,27222.86869682029,2137.0,1080.375,462.0,410.0,31162.405906073684,7355.563221999999,192.050597190581,1091.092,452.4722222222222,1386.216896,24487.074489482333,1836.0,879.3679999999999,360.0,355.0,23899.95485442727,6208.725415,153.753779803168,885.4197000000001,466.4583333333333,1107.452332,20279.02826089423,1582.0,773.4078999999999,329.0,282.0,21856.47834888326,5398.31472,144.80096506826197,780.6297999999999,366.77777777777777,983.2405920000001,18540.770049862007,1319.0,711.451,320.0,206.0,20315.060466474813,4355.582451,139.30424236656398,720.143,269.43055555555554,913.5457080000001,17289.694369188524,1100.0,590.009,237.0,171.0,17053.565621739268,3676.6589189999995,112.80477386686599,597.428,238.16666666666666,760.035276,13932.498097930013,345.9166666666667,4.9254479166666645,0.6757047471696476,38.97916666666667,155.91666666666663,68.95222330777442,1650.0156793125,10.689183035170311,4.736791666666664,84.36574074074076,2.8340212499999993,2408.3179233321353,18.923611111111136,-0.35807899305555035,-0.39002480131612544,11.48090277777778,40.38194444444443,6.573008697186587,95.68773539062462,1.5563456860878884,-0.27542013888888583,-1.2584876543209864,-0.2381769374999989,301.89821740450407,21.888888888888935,0.7684336805555598,-0.0004256992632988687,-9.517361111111104,-6.027777777777789,-9.736004942093667,98.30241634374957,-0.9750059875941586,0.7258013888888918,6.462191358024689,0.4201088750000004,-96.64830466628771,-212.5920138888889,-0.5551543836805508,0.19715115962362323,-12.179253472222221,-16.05034722222222,-26.39138980046016,-1027.5910179570312,-7.469706840446145,-0.9400342013888834,-3.0796682098765444,-0.10320432812499902,-1790.526561721184,200.74131944444446,0.9893841579861051,-0.1349924374464617,-14.023003472222225,29.65798611111112,-21.338291269636834,952.861380199219,0.5772094109805144,1.4936866319444384,-9.10281635802469,0.020668796874998563,821.6792149661151,-159.87673611111114,-2.8863156684027644,-0.10696088276965802,-3.1462673611111125,-77.50173611111113,-15.340728372264868,-747.8108944726564,-0.8039233080524095,-2.8630126736111032,-22.979359567901223,-1.580930390624995,-584.6524510067916,-1.272569444444418,0.5544046440972239,0.23231177516651277,7.411024305555556,-9.439236111111109,30.18197254013471,-5.944465082031272,1.9360888119794801,0.3943477430555562,12.305362654320984,0.6009841718750005,244.09800302061007,-75.82638888888891,-1.6204196180555583,-0.18407106863401834,2.491319444444443,-46.57638888888888,11.913828391699187,-351.5809328281249,0.8812080600839218,-1.5886701388888897,-19.57793209876543,-0.8288838125000006,-66.98019369300442,17.430555555555557,0.14237326388888344,-0.011300358873146961,-17.829861111111114,-11.944444444444434,-6.105320251807358,79.4627433437501,-0.9693693344691552,0.22324305555555224,-6.297067901234566,0.007057374999998214,-49.93125807591247,0.6949027471389538,0.5847041395992827,0.404785209610719,0.33806806061576183,0.2538415076531742,0.2047699583888476,0.15350408106364632,0.1154509283094565,0.09598031166336006,0.07086073422635823,0.058480362030628584,0.04139909134168462,0.037272731732720256,0.025298330487254952,0.021248225633803897,0.014437512372402135,8.022113351470804,5.748044207466552,3.5438845508985466,2.2471286580586463,0.3898183259718099,-0.4070646211639292,4.028920088551515,0.9113359987107735,6.021995129269543,1.9578804974195803,14.563407045753195,11.008781501913912,16.01020988340749,11.75960969400585,1.936751858498017,0.7517965302023482,3.4891156136723316,2.296881141522852,7.008271323304066,1.1009822871672272,3.7020258434433693,2.492836060865191,20.841801366052305,14.702550368741063,0.2528537880038473,0.5016690991277396,0.6894402946596867,0.8435090374985058,0.8435090374985058,0.8435090374985058,1.4040131855855793,597.8781806405583,1.0,1.0,0.0,0.0,0.0,11.0,0.0,4.0,1.0,4.123123797343609,2.6846329815038334,1.5990601562950726,0.708333333333333,0.708333333333333,0.708333333333333,228.86553218860465,906.435885915999,44.417233746620084,18.884080956583315,35.726945235912765,,9.0,392.0,11.642891640131648,15.162956133651013,23.40585185704421,24.17453976141019,38.524929737556064,6.4208216229260096,4.899909730850478,0.0,6.069221312792274,5.733667477162185,10.866666666666667,19.75,4.5,0.0,15.25,0.0,0.02753623188405795,-10.75,0.0977914389799634,0.0,-0.0977914389799634,0.05986622073578585,0.1370088495575218,0.0,0.5486111111111113,0.8188405797101446,0.4508196721311479,0.5486111111111113,0.7589743589743587,29.005821782803125,0.48501290288368004,1.00101290288368,11.160244718309485,2.3131436074747445,8.616057052014671,40.16606650111261,10.929200659489416,0.5769911504424782,0.13496932515337423,0.09202453987730061,0.3588957055214724,0.8888888888888888,0.26939814748801916,-0.49208949264168134,-0.04986372065450973,-0.01025186443003503,-0.028946440743628316,0.730601852511981,1.334535884073524,0.03964470193301572,0.027802830918198417,0.043049544647533036,-1.3223426484788956,0.8936122899023404,0.8081851855527259,1.5118427801588463,1.0898326686675162,0.6173786128355878,1.2238571973027177,0.8977732666105446,1.08513374173224,0.8041378895024558,0.649055082545726,0.8015996432902268,1.0189689727301776,0.9034106702740766,0.6218446552189463,0.8508137168781902,1.6521399498417135,0.9492558483739674,1.260982735988266,0.9120103410559753,1.196185087850501,0.6435679104987618,0.47020038075297893,0.5890663107440328,1.116038247050007,1.1461500148533947,0.9538679053368457,0.9111559815957894,1.1022090480140865,0.9496381646899892,1.1679740069107414,1.1503795876454699,1.2573381581083363,0.9809103767126852,0.8137165026735913,0.9466988731740738,1.2424645366867024,0.8388391689651485,0.9706309612598119,1.0777951844785396,1.144516501513389,0.9857349868668135,0.9799517920703975,0.8381712558986475,0.9200607802278915,0.9411832066472863,1.0491312177917014,1.028122323842485,0.864396220162215,1.2323393301470873,1.7440150398684202,1.5627152122837331,0.9865409844030901,1.3733578020055843,1.0400489928516516,1.2196071186439368,0.9223239984146246,1.6874410372752255,1.7245099465096168,1.8535662151291354,0.9826838473416725,0.9982879137005523,1.022400602184935,1.1327258414602204,0.823791008604616,0.9975234699164837,0.8216405176603138,0.9965252677614043,0.8591681190501721,1.0237532208384732,0.97521712557698,0.9623623907720715,0.9050728877731447,1.0425898151242219,1.0014314374143007,0.8554735545255544,0.8313994586300236,1.0878691746694025,0.8768631798636525,1.041739742956458,0.9505486707294475,1.0170626129875007,0.988243986242129,0.9743000623743243,0.9964724098202324,0.9197413042269703,0.7691673557607913,0.5790370170604741,1.0898326686675162,0.9173724458331624,0.965819178677735,0.923655049823884,1.023715963896064,0.785438117734943,0.9479522391398865,0.7454815512383005,1.000403872702493,8.0,0.0,3.222222222222223,3.2847222222222223,2.072777777777778,1.104166666666666,0.41496598639455773,0.3142006802721089,0.24667737465356512,0.046875,4601.234549922889,5385.696907946783,2211.5807440714284,1948.8628501122434,10.162479566775005,0.4463392557666309,5.626566000197055,0.8061601990306506,1.0,0.9411764705882353,1.4618387033775477,2.9003295192173226,3.9859023444260835,4.876629167387823,4.876629167387823,4.876629167387823,0.2962962962962962,0.0,0.07671957671957674,0.08011517615176152,0.054546783625730996,0.035618279569892476,0.014820213799805632,0.013660899142265603,0.01298301971860869,0.01171875,0.596478995023938,15.270233196159122,4.791111111111111,2.2171831695641218,136.36217110585034,1.0,4.163328494614693,94.46123366801852,,87.79437599783097,86.65474073111214,86.02415095971253,87.80514265089582,107.63184043028119,87.3251436679903,87.8616006742134,100.77087382550408,0.05049756314511801,-0.06710749168816552,-0.532810957789804,0.27188258027381496,0.23907412736915676,0.08799415526421099,0.05353109153325089,0.13440005493695442,-0.05367218831852889,-0.013769581129510872,-0.07757727102977216,0.1157136584436427,0.029205196152919652,0.07200597889135144,-0.00029077283219335943,-0.11269169099206502,-0.017843193684989555,-0.06516890285680055,0.027496918104264093,-0.042098892125278904,0.07071986272218529,0.035352618626503254,0.06841741354132544,-0.018522018797360887,-0.18097937816743104,-0.0331911022645953,0.08592034234661428,-0.09201142396212122,-0.030314158958334024,-0.1127113418121674,-0.1833943117901888,-0.20578450802046477,-0.0584403763149588,-0.01074957858487336,-0.010723793475068959,-0.2189377160005505,0.1489583722497124,0.051560705596947407,-0.051280482151473836,-0.09234388084955572,0.04882573018517939,-0.07943483460700493,0.14823176674562427,0.01386080712953618,0.08094216956890275,-0.02769550497534847,0.0018720253511395096,0.08757660681740181,-0.15513828498651436,-0.1966995180425423,-0.053134085275168386,-0.027093697323520956,-0.1668491850212856,-0.07467975868883579,-0.15212791626338049,-0.025244996014626448,-0.20288231248357166,-0.09142753202457965,-0.1872469902265898,-0.08148715527150753,-0.0013479691272773133,0.04124307806895491,0.12597495011436727,0.06966515844488598,-0.02218269203308024,0.1603870454491575,-0.0013200629772909035,0.06636677333163765,0.030504577715198874,0.05344391137280165,0.07770158422054702,0.037138157213337256,-0.08485324173731944,-0.12735069329770743,-0.1054503719102899,0.02474095274219408,-0.11563593731142566,0.0668840585188539,-0.0824815464919896,0.031911961496915824,-0.12982818947877997,-0.08982976139688763,-0.11321659991081588,-0.010765944422133224,0.023256675870503864,0.013341068323376958,-0.007718682266169273,-0.21111704970603956,-0.035357480573942335,-0.040866559206381194,0.022227129579629933,-0.04185551223338443,0.021752119084173696,-0.034449280072942456,0.0011493385944086258,-0.009569000758484296,8.954254138137259,18.55261655897287,6.640974366402652,13.42578721672944,27.402266827637057,33.712608135162164,34.6104607727076,34.6104607727076,34.6104607727076,47.65199843551137,38.34985728571726,5.729009887254729,3.57313126253937,0.0,9.302141149794098,3004.170840656728,2817.8772363285816,996.4286908923436,174.0,45.0,63.0,96.0,126.0,148.0,161.0,182.0,157.0,315.19467704000067,27.0,4.976733742420574,5.905361848054571,6.8885724595653635,7.83002808253384,8.815073088844464,9.759790377278941,10.744860753883362,11.690929380819647,12.675704330613254,0.5902777777777777,0.9684166666666666,1.1350439060978246,0.5470974523353593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6441345434131737,0.9550653594771243,0.9947651128914785,0.5932570094646857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,8.0,0.0,0.0,0.0,6.0,1.0,2.0,1.0,1.0,15.74010460285337,6.041840829147961,0.0,5.907179729351506,0.0,4.794537184071822,0.0,5.261891554738487,0.0,0.0,74.53528159128905,6.041840829147961,17.712112952923924,133.68485492168017,-244.19214848243158,-24.744135487604925,-5.087336426717325,-14.364244028378328,362.5503871102848,662.2437374335675,19.673098259015163,13.79674452986599,21.36270120753444,0.4444444444444444,0.8726003221534595,0.213426264094901,120.98946803425324,0.131879360887533,29.377133766193456,0.12739967784654058,5.0,0.07407407407407407,0.2617454822997985,0.5193104732292865,0.7136847103111982,0.8731713358430124,0.8731713358430124,0.8731713358430124,1.157979999999999,,0.9285714285714287,1.1284318287575617,1.022017128129546,0.9260316936439501,-3.719133983223758,1.0009944920440637,0.9177785797741316,-1.7559628408463377,82.79920000000004,9.901064578912528,5.261891554738487,4.899909730850478,28.902376085043144,75.09314628183566,0.0,0.0,0.0,6.069221312792274,4.007333185232471,1.9459101490553132,5.459585514144159,4.110873864173311,7.130098510125578,6.1675164908883415,8.909640602443098,8.165363632473982,10.744946973787279,28.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.483999999999995,0.0,13.13985119047619,0.0,0.0,0.0,0.0,0.0,-0.02120370370370339,54.482107492695576,5.733667477162185,0.0,0.0,39.64019015347026,4.794537184071822,34.49982147541172,51.36657298340809,0.0,0.0,0.0,0.0,26.260677712097248,30.918458083832338,30.009197159787664,188.92246733603707,,175.50800665404705,173.21135695537578,171.95943086480509,175.52976080669217,217.20409859094,174.56324433667243,175.64339451540297,202.45790217666718,30.009197159787664,188.92246733603707,,174.66018056709052,172.1810496334667,171.02628479129555,174.68425360814769,218.98281484378614,173.64929284393656,174.80542276865265,203.2977104918545,5.231855542897723,139.2340845257442,,130.46792712885835,128.76910756499944,127.65771950379994,130.48346918699534,160.32972088347424,129.75947528866703,130.56918748609834,150.23545122597724,1.3047477025994636,8.214020318958134,,7.630782898002046,7.530928563277207,7.47649699412196,7.631728730725746,9.443656460475651,7.589706275507496,7.636669326756651,8.802517485942051,2.6272438630724984,94.46123366801852,,87.79437599783097,86.65474073111214,86.02415095971253,87.80514265089582,107.63184043028119,87.3251436679903,87.8616006742134,100.77087382550408,45.84313725490197,0.0,0.0,0.0,0.0,6.540989229024944,10.889292905433779,47.74872541879097,7.484564751826657,0.0,0.0,0.0,1.0085194239732913,1.80353977702192,-0.8267483150667674,9.355847951835056,2.2920134558453014,28.476336454304914,433.01503206099255,70.1682577621223,139.2158169224315,191.323312532452,234.07820003461552,234.07820003461552,234.07820003461552,1202.0,129.28705406401403,63.220209970972434,79.64126892232353,90.35000000000001,90.35000000000001,0.8,7.243512974665482,5.754887502163468,4.4915424348118,4.738733878949183,,4.743275783104611,4.743262059033653,4.74302721720939,4.743275343009847,4.7381663727060115,4.743268304885285,4.743276137964017,4.7419481144848525,0.19528445368746955,0.20603190778039923,,0.20622938187411352,0.2062287851753762,0.20621857466127783,0.20622936273955855,0.20600723359591355,0.2062290567341428,0.20622939730278333,0.20617165715151534,2.335105292381628,2.3886791088150097,,2.389637113428942,2.389634220050728,2.389584708209486,2.389637020646062,2.3885593425984664,2.3896355368338704,2.3896371882420895,2.3893571688239934,238.96000000000004,142.49652276664932,138.3540201682254,,137.1607883924177,137.11814363125316,137.23476305374504,137.16159820951742,138.4844998097635,137.14922271032205,137.16272123961724,137.80624302529247,6.1955009898543185,6.015392181227191,,5.963512538800769,5.961658418750138,5.9667288284236975,5.963547748239888,6.0210652091201515,5.96300968305748,5.963596575635532,5.9915757837083685,5.792226720708536,5.762724886701958,,5.75406299848952,5.753752039414438,5.754602181160154,5.754068902616483,5.763667527568627,5.7539786728606,5.7540770902252385,5.758757785461518,0.0,14.94339096749811,20.245140857268836,5.714240913958177,1.5571088041698156,1.7222203719450737,7.484564751826657,0.0,0.0,296.96325709137943,66.33913633806809,-121.17674990448495,-12.278912062563364,-2.524515623010104,-7.128044112028527,179.91027909645476,328.6286813294994,9.762484676081018,6.846430861031238,10.600925204177402,1058.0,41.0,2.884458347278297,2.1041611547502646,0.27883876791260265,0.18111901412017523,0.511291551493103,0.214564069516658,0.05892556509887896,0.02946278254943948,0.23570226039551584,0.23570226039551584,0.30274943015462097,0.27207592200561265,0.4281523501253911,0.3451813956744405,1.0581603237330495,0.7801872919176865,1.8629423939290737,1.1967938437682983,15.982763184195939,13.448195210783501,10.929200659489414,9.12783763662557,11.42286784439284,9.214648127498142,9.670757107009718,7.273408483495759,9.214109919682565,6.802630485730391,7.368525615859202,5.216285509052262,5.516364296442598,3.744152912113733,3.4209643270424275,2.3244394919567437,5.720617074720893,3.7187686157071145,11.345591238239336,7.108438875233931,17.91607457841818,10.316261964937265,77.86964881172227,46.21915410971019,29.61058985043572,24.824185941135827,24.824185941135827,24.824185941135827,144.0,183.0,51.63382499999997,27.658174999999993,0.375,223.05,7.263888888888888,4.638888888888888,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,0.0,0.0,0.0,48.0,0.0,1.0,52.0,0.0,1.0,1.0,50.0,2.0,27.0,50.0,1.0,0.0,4.0,18.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,4.0,2.0,1.0,23.0,5.0,0.0,3.0,2.0,0.0,6.0,2.0,0.0,0.0,0.0,0.0,0.0,3.4339872044851463,5.351858133476067,3.912023005428146,4.276666119016055,4.700480365792417,5.003946305945459,5.170483995038151,5.214935757608986,5.3612921657094255,5.241747015059643 +444795,CC1=C(/C=C/C(C)=C/C=C/C(C)=C/C(=O)O)C(C)(C)CCC1,0,17.52,5.700399999999999,2.64,4.56,161.68967900167945,68.51336428,1.3902713867154397,5.784744,3.5840277777777776,7.312614879999999,195.46928865962713,19.72,5.974,3.08,4.38,143.241336871489,72.25257531999998,1.7811428871200001,6.13264,2.7880555555555553,7.450506399999999,245.11398623535413,15.795454545454545,5.7456818181818194,2.977272727272727,2.965909090909091,151.92051365926116,57.24999906818182,1.4905339623554774,5.868921590909091,2.6892361111111116,7.302852818181818,197.79293389687948,13.412280701754385,5.728859649122808,2.491228070175439,1.956140350877193,150.80247509851836,45.60193134210527,1.4345234379064822,5.8540833333333335,2.352948343079922,7.292369999999999,182.23401047637725,10.006756756756756,5.4897297297297305,2.081081081081081,1.2702702702702702,159.31195858950815,33.09630558108108,1.1562553363371826,5.583601351351351,2.085397897897898,7.132547945945945,139.1518382623727,8.841726618705035,5.560935251798561,1.8273381294964028,1.1798561151079137,161.58690469900722,27.661250323741005,1.08144630350005,5.639140287769785,2.194244604316547,7.223283769784173,127.44448143158104,8.944,5.369280000000002,2.0,1.192,165.70565061561229,30.518837871999988,1.033460650818688,5.440480000000001,1.8742222222222227,7.0652360320000005,123.79550999742315,11.362637362637363,5.706153846153846,2.0,1.5494505494505495,151.17914940405927,35.99706575824176,1.3341299448505053,5.8259890109890105,2.3904151404151404,7.280964747252747,161.9767516173923,7.2439024390243905,5.302520325203252,1.6991869918699187,1.065040650406504,168.61145187907545,23.559724674796747,0.8954616140209836,5.36069512195122,1.8626919602529362,7.026364845528455,101.53748237179126,6.7616,0.07401599999999994,0.011426939104763145,0.5664,2.9215999999999998,1.313540814544232,32.40720613439999,0.23790331670199358,0.07455583999999993,1.2072916666666667,0.043767513599999974,52.84893803061212,-0.09119999999999932,-0.003439999999999967,-0.007494151528976622,0.2,1.1543999999999996,0.04406507054260267,-0.39886699840000206,0.0070601571487999394,-0.003374880000000022,-0.10770833333333339,-0.0018900928000000435,0.7474079029207735,1.0593090909090912,0.01881127272727273,0.002314889857315054,-0.08730909090909088,0.06612727272727269,0.16682170108530486,5.02211227741818,0.029892128209225457,0.017790478181818167,0.3957149621212121,0.012132890036363626,6.814309421272506,-1.6665122807017545,-0.009549333333333314,-0.0012772620519600861,-0.1214877192982456,-0.5486175438596491,-0.26605607674620624,-8.01127098948772,-0.050791913333775036,-0.011663594385964902,-0.09816642300194933,-0.0033851907929824602,-12.714485138596809,-0.0451135135135134,0.0045758918918918775,0.00059053728905495,-0.04856216216216216,-0.14430270270270262,-0.13071009037739034,-0.29305949521081015,-0.02189614809335333,0.004382646486486492,0.10189095345345352,0.002470003156756789,-3.258838775750808,-1.0001611510791368,-0.008862043165467624,-0.0007692356035641463,0.02640575539568344,-0.0640460431654676,-0.10797430691069095,-4.770069006630214,-0.021716691126335754,-0.009867235683453221,-0.12056604716227014,-0.0039733622330935135,-6.30436165206298,2.04288,0.010457599999999968,0.0006128549825722865,-0.039040000000000005,0.1577600000000001,0.3669218835023694,9.843813482879998,0.06898311668014658,0.013029311999999996,0.1408750000000001,0.003577021440000048,16.51493026150876,-3.2899516483516473,-0.013963252747252726,-0.001146317590508859,-0.009037362637362628,-0.23017142857142867,-0.6629122497132065,-15.897690582751643,-0.12306684027143014,-0.0181953125274725,-0.17126449938949942,-0.004220271402197802,-28.301374819759054,2.0289691056910564,0.015775869918699142,0.0010953847310525304,0.08498211382113818,0.6429528455284553,0.20661701185327092,9.683716619746342,0.042418631756764476,0.018303314471544707,0.1909863369467029,0.006207405424390299,12.75393918895201,,,0.4848484848484848,0.8181818181818182,0.29545454545454547,0.0,0.5227272727272727,-0.22727272727272727,1.1761337237990792,0.031552832938932115,0.03546192384802302,0.5379107752688093,0.1513886983078168,0.31315908522475544,1.7140444990678885,0.46454778353257226,1.939026743830975,1.7855472966374144,0.0,0.15347944719356074,0.0,0.15347944719356074,6.004178602720016,876.0,285.02,132.0,228.0,8084.483950083973,3425.6682140000003,69.51356933577199,289.2372,179.20138888888889,365.63074399999994,9773.464432981356,986.0,298.7,154.0,219.0,7162.06684357445,3612.628765999999,89.05714435600001,306.632,139.40277777777777,372.52531999999997,12255.699311767707,1390.0,505.6200000000001,262.0,261.0,13369.005202014983,5037.999918,131.16698868728201,516.4651,236.65277777777783,642.651048,17405.778182925395,1529.0,653.0900000000001,284.0,223.0,17191.48216123109,5198.620173,163.53567192133897,667.3655,268.2361111111111,831.3301799999999,20774.677194307005,1481.0,812.4800000000001,308.0,188.0,23578.169871247206,4898.253226000001,171.125789777903,826.373,308.6388888888889,1055.617096,20594.472062831162,1229.0,772.97,254.0,164.0,22460.579753162005,3844.9137949999995,150.32103618650697,783.8405000000001,305.0,1004.036444,17714.782918989764,1118.0,671.1600000000002,250.0,149.0,20713.206326951535,3814.8547339999986,129.182581352336,680.0600000000001,234.27777777777783,883.1545040000001,15474.438749677895,1034.0,519.26,182.0,141.0,13757.302595769394,3275.732984,121.40582498139598,530.165,217.52777777777777,662.5677919999999,14739.8843971827,891.0,652.21,209.0,131.0,20739.20858112628,2897.846135,110.14177852458099,659.3655000000001,229.11111111111114,864.242876,12489.110331730324,338.08,3.7007999999999974,0.5713469552381573,28.32,146.07999999999998,65.6770407272116,1620.3603067199997,11.895165835099679,3.7277919999999964,60.364583333333336,2.1883756799999987,2642.446901530606,-4.559999999999966,-0.17199999999999835,-0.3747075764488311,10.0,57.719999999999985,2.2032535271301334,-19.943349920000102,0.35300785743999696,-0.1687440000000011,-5.38541666666667,-0.09450464000000218,37.370395146038675,93.21920000000003,1.655392,0.20371030744372476,-7.683199999999998,5.819199999999997,14.680309695506828,441.94588041279985,2.6305072824118403,1.5655620799999985,34.822916666666664,1.0676943231999991,599.6592290719806,-189.9824,-1.0886239999999978,-0.14560787392344982,-13.849599999999999,-62.5424,-30.330392749067514,-913.2848928016001,-5.790278120050354,-1.3296497599999988,-11.190972222222223,-0.3859117504000005,-1449.4513058000362,-6.676799999999983,0.6772319999999978,0.0873995187801326,-7.1872,-21.35679999999999,-19.34509337585377,-43.3728052911999,-3.2406299178162925,0.6486316800000008,15.079861111111121,0.3655604672000048,-482.3081388111196,-139.02240000000003,-1.2318239999999998,-0.10692374889541634,3.670399999999998,-8.902399999999995,-15.008428660586041,-663.0395919215997,-3.0186200665606697,-1.3715457599999978,-16.75868055555555,-0.5522973503999984,-876.3062696367542,255.35999999999996,1.307199999999996,0.0766068728215358,-4.880000000000001,19.720000000000013,45.86523543779617,1230.4766853599997,8.622889585018322,1.6286639999999994,17.609375000000014,0.44712768000000597,2064.3662826885948,-299.3855999999999,-1.270655999999998,-0.10431490073630617,-0.8223999999999991,-20.94560000000001,-60.32501472390179,-1446.6898430303995,-11.199082464700142,-1.6557734399999977,-15.585069444444446,-0.3840446976,-2575.425108598074,249.56319999999994,1.9404319999999946,0.13473232191946125,10.452799999999996,79.0832,25.413892457952322,1191.0971442288,5.217491706082031,2.251307679999999,23.491319444444457,0.7635108672000068,1568.7345202410972,0.7613960171194116,0.6564038111209646,0.4645477835325723,0.35758584235169716,0.3270911049271163,0.22537226503188604,0.2002914916479523,0.1288980732970362,0.1404856951113635,0.07986760104634041,0.08305669860474008,0.04409313272980807,0.06491799684111998,0.0314540040910718,0.038882227378258305,0.013825826192273138,8.02864580468724,5.691657871013948,3.5547525409265273,2.191630526844398,0.4505135656275856,-0.3364592789276834,4.023296811895599,0.9726895962196129,6.022014882736117,0.9920297694816924,13.642549756333823,10.95196216674192,16.01390586665686,11.702672135355716,1.9919840276700036,0.7415842105955032,3.500803331716921,2.2416240163263215,7.0082930612291765,1.1633843793404879,3.713726042787376,2.4376251825895294,20.901176482659956,14.701441272785615,0.2037013771922837,0.5008297944561513,0.6952874404080912,0.7978278840711007,0.821091099744408,0.8417545517996998,2.23127357841912,566.514664398947,0.0,1.0,5.0,0.0,6.0,3.0,4.0,0.0,1.0,4.460889994307204,2.735359817826696,1.6060752504759632,1.0105865002596142,0.8754887502163458,0.7554887502163457,195.04681529626458,947.29065993999,51.96581829056798,18.9458131987998,36.870745193263254,,13.0,453.0,5.969305287951849,4.794537184071822,5.41499046939678,0.0,11.146209060138535,36.484694035750444,12.999757306524504,12.152040213667762,39.84698901243026,5.106527394840706,10.666666666666666,18.0,6.5,0.0,11.5,0.0,0.015151515151515178,-5.0,0.07333333333333336,0.034444444444444444,-0.03888888888888892,0.020421607378129036,0.08407874015748018,0.0,0.506666666666667,0.7696969696969695,0.4333333333333337,0.4722222222222226,0.7492753623188405,25.87494192357974,0.6941623246565065,0.7801623246565065,11.834037055913804,3.3305513627719696,6.88949987494462,37.708978979493544,10.22005123771659,0.6299212598425198,0.296875,0.046875,0.234375,0.45,0.3353388829316007,-0.5363513252160682,-0.05138843175693351,-0.010727026504321365,-0.026817566260803415,0.6646611170683991,1.0630794372626988,0.036352038920336255,0.02126158874525398,0.035435981242089964,-3.1646760218441012,1.0609323237103645,0.8103112840466926,1.6070185118462061,1.0727401129943501,0.610487404162103,1.1842075669235508,1.0660635740804396,1.182186668146644,0.845099994849498,0.7882841530054644,0.7651250081521654,1.1554005253895507,0.830088628834488,0.4212848327634319,0.4363954115164223,1.9268425783256289,1.1130264861097283,0.9741131895360635,0.8375241056847453,0.9774917938558044,0.4842706425875495,0.28143579888618714,0.3304672739986516,0.9560390361848052,1.226871455733513,0.7816470217914002,0.669315648005684,1.449443701060561,1.16371586825772,1.3065145612315214,1.2337048531514194,1.319227102501582,0.8586881899291271,0.6936035804207096,0.6595825864908489,1.3259590057280881,0.9259262960310051,0.4808584119138593,0.4901382129158226,1.06385516872805,0.8873099893431219,1.089507457874832,0.9341324018626938,1.0923925361384637,0.5486900462431552,0.37057847321005216,0.3840180787991229,1.0663938547037959,1.1078749399912158,1.0349405300662196,0.7977875588543532,0.659726456123237,0.8916716571977905,1.0421917265151108,1.1077049931728324,1.0534846625101595,1.0561708517531454,1.0070030601920534,0.9913336677222776,1.0852747372004394,0.5977165168007572,0.46129485516645047,0.5211774449515422,1.1557909604519774,0.8734665936473166,0.6368332555231414,0.6000513030562743,0.6390072532635743,0.4832920935502839,0.39425481737129703,0.42830542148960465,0.6353350781405307,1.458120972732899,0.8431648874255877,0.7227854719135575,0.7795523685354193,0.8422676720869492,1.5919097751074005,1.4679489503405265,1.6066862969974953,0.9469752934382932,0.7555496559810623,0.6816988008764003,1.6067142412164346,0.5838686374322334,0.40420836277104666,0.49984406826425887,0.49937416747048824,0.548146020890658,0.7140651796487544,0.5882320014378523,0.7077234201915786,0.4245730230386209,0.3744738361965155,0.38435943755710883,0.6722188245133447,6.5,0.08682787470666259,3.1111111111111125,2.0,0.8844444444444446,0.7569444444444444,0.28653061224489795,0.2586805555555556,0.13151927437641722,0.18562500000000004,3313.879042510072,4030.5335022167997,1903.0493937342824,1619.9528268881143,16.420711880280432,0.4948489383680926,8.294940039075335,0.9796058564530509,0.0,0.45,1.1829661954675212,2.9084963719480283,4.037780939298761,4.63326968951511,4.768367439558379,4.888367439558379,0.2954545454545454,0.005788524980444173,0.10370370370370376,0.0689655172413793,0.03401709401709402,0.03983918128654971,0.013024118738404453,0.016167534722222224,0.00876795162509448,0.014278846153846156,0.6000070179232836,20.045454545454547,9.333333333333334,7.421875,134.17506073915436,0.0,3.9687350602043017,119.89565309974687,,95.64411108770648,95.52196094041543,95.9081580802002,95.64662653215886,100.42509397332769,95.61425226802893,95.64926665988858,97.92080879138041,-0.013487931850449497,-0.04647643752702077,-0.6558319301669158,0.3531073446327684,0.39512595837897035,0.03354678442777754,-0.012307972391875147,0.02967658142254381,-0.04526647409512152,-0.08921484037963766,-0.04318483378503011,0.014142344780662317,0.15666544766166163,0.25415143654443284,0.2025817969354652,-0.15414740626605025,0.022633924126257084,0.12700153603006853,0.1549689984564034,0.12564821972057427,0.23861951232550238,0.32777080555337673,0.2772122297658607,0.1289393822317754,-0.24646714989081794,-0.12901714944516485,-0.11177639438261108,-0.21449102983447316,-0.1877798274437463,-0.20254877031630075,-0.24720646871758004,-0.2134981304081559,-0.15644105660891103,-0.08131127358228762,-0.07734482757966088,-0.24058165806911946,-0.00667201749785752,0.06182300978020807,0.05167939407402579,-0.08573828065353488,-0.04939166987359757,-0.0995097289175165,-0.009043034873028743,-0.09203801105800154,0.05878340967637809,0.08439630311934028,0.056434623619030316,-0.0616632783399198,-0.14791782286428312,-0.11973145219233179,-0.06731773019106248,0.046620330853960876,-0.021921564610305175,-0.08220095311477284,-0.14719161494044447,-0.09128368375603135,-0.13234691854391595,-0.09986488807228587,-0.09078336661768961,-0.11929022392864837,0.30212967345007097,0.14128837008214407,0.05363247121154494,-0.06892655367231638,0.0539978094194962,0.279338014806706,0.3037538454273251,0.2899628203441878,0.17475910673127695,0.11668679896462476,0.081727773542065,0.312493133768226,-0.4865640748272077,-0.1886518151109589,-0.10031711729618249,-0.01595579561681255,-0.07878266312001256,-0.5046757910931161,-0.49056035613870363,-0.5172977072261173,-0.2440494604778448,-0.14185842917508149,-0.09642474646304341,-0.5355145415290241,0.30007233579198067,0.2131413467182657,0.09585985547047643,0.15003904276330896,0.2200687450467057,0.15729774786249195,0.29881368296871336,0.17830197722673877,0.2454980652292929,0.1581940323285891,0.14182677775852232,0.24132820193216453,9.384687130379191,12.520522517770377,2.257951961765231,9.795141781886036,24.769743956092274,29.92738443116009,32.014117635104256,32.59041616714788,32.711376167147876,42.65858836428145,39.28204052602312,0.0,3.376547838258336,0.0,3.376547838258336,7623.932232094573,7169.57996734356,592.2225236691183,26.0,30.0,32.0,36.0,34.0,35.0,25.0,25.0,23.0,300.2089301360008,22.0,4.653960350157523,5.43372200355424,6.289715570908998,7.0909098220799835,7.954723334497908,8.766705997750515,9.636588019266876,10.456136269555778,11.3310318166104,0.5466666666666665,0.9488,1.1246565437865776,0.5002780784281076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6428048383233533,0.9370980392156864,0.9818208302986163,0.580303749236719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,6.0,0.0,5.0,0.0,5.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,5.106527394840706,0.0,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,55.37378399368919,56.594875997385216,6.076020106833881,0.0,198.6102800870895,-317.6633917158151,-30.43569160622101,-6.353267834316302,-15.883169585790757,393.6570953833541,629.6272682241748,21.530126684346975,12.592545364483499,20.987575607472497,0.46153846153846156,0.8337379773824963,0.29889805537110115,110.65438559409378,0.20511597838817844,43.30427365500385,0.16626202261750356,7.0,0.22727272727272727,0.20960246960416254,0.5153384980321623,0.7154294516954958,0.8209404233065776,0.8448775587509626,0.8661396171672295,5.602600000000005,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,93.76180000000005,9.901064578912528,0.0,0.0,5.41499046939678,53.881150867231156,0.0,58.74853876128035,0.0,0.0,3.8066624897703196,0.0,5.10594547390058,0.0,6.57507584059962,0.0,8.137688184977605,0.0,9.756436609824092,27.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.44,0.0,10.53400526792031,0.0,0.0,0.0,11.290141811743316,0.0,3.92291257766255,56.23282718932888,0.0,0.0,0.0,11.075832682792555,4.794537184071822,5.41499046939678,53.881150867231156,58.74853876128035,0.0,0.0,0.0,25.01390392140538,32.14024191616767,25.195993682633397,239.79130619949382,,191.24276762995842,190.9919738288828,191.78483721751343,191.24793204993614,201.04696872198974,191.18146436692467,191.2533524470101,195.9141620333168,25.195993682633397,239.7913061994938,,190.78822217541307,190.47249330940235,191.47004778864368,190.79472190612034,203.01477647533378,190.7110626755927,190.80154371933935,196.63960653887688,4.783365277943959,186.73836309033476,,147.11902942913304,146.97493136548235,147.4307882316985,147.1219976675552,152.82628154980412,147.08379838670805,147.12511306859602,149.8197415666575,1.1452724401196999,10.89960482724972,,8.692853074089019,8.68145335585831,8.717492600796065,8.693087820451643,9.13849857827226,8.69006656213294,8.693334202136823,8.905189183332583,2.3916826389719796,119.89565309974687,,95.64411108770648,95.52196094041543,95.9081580802002,95.64662653215886,100.42509397332769,95.61425226802893,95.64926665988858,97.92080879138041,46.85490196078432,0.0,10.701809261025426,0.0,0.0,0.0,8.652828444187502,49.091041514930815,3.721947476409889,0.0,0.0,0.0,0.0,0.0,0.2596884943843366,0.0,0.0,29.01518746183595,493.79580369436724,59.14830977337606,145.4248185974014,201.88904696493805,231.66348447575552,238.41837197791892,244.41837197791892,310.0,115.61349318438225,98.47157177607637,55.381808599072215,37.3,37.3,0.8571428571428571,7.303843225277705,5.459431618637297,3.3517288289763414,4.627267573161113,,4.625498873254755,4.6258878012686155,4.6246437131902125,4.625490818776832,4.6078660910254605,4.625594342945043,4.625482363116202,4.617582741963356,0.15235131040801553,0.21033034423459604,,0.21024994878430706,0.21026762733039162,0.21021107787228238,0.21024958267167418,0.20944845868297549,0.21025428831568374,0.21024919832346373,0.209890124634698,1.997933641434917,2.3204238972665943,,2.3200415899992177,2.3201256699383173,2.319856693375412,2.3200398486767884,2.3162222232282854,2.320062229655107,2.320038020618169,2.3183287125074026,267.74,1179.0888855363992,110.72134047822615,,111.25254685081465,111.21957922720769,111.32374461675053,111.25322556289015,112.51455065211938,111.24448979780607,111.25393790811721,111.86183395036352,53.5949493425636,5.032788203555734,,5.0569339477643025,5.055435419418531,5.060170209852297,5.056964798313189,5.114297756914517,5.056567718082094,5.0569971776416915,5.0846288159256146,7.860954648676026,5.495473959080737,,5.500260174189608,5.499963798868984,5.500899934766935,5.500266274814039,5.511539912775111,5.500187750276612,5.5002726777110595,5.505721844673945,0.0,10.53400526792031,8.652828444187502,5.094925467808539,-0.9123243957616529,0.0,15.012089288153206,10.701809261025426,0.0,343.8814046936764,117.63038932863022,-188.1416632945653,-18.026067188244326,-3.7628332658913055,-9.407083164728265,233.15025471801724,372.90768967575707,12.751591624884348,7.458153793515143,12.430256322525238,1278.0,29.0,2.3896287658987125,1.592090221134694,0.2041241452319315,0.1767766952966369,0.36785113019775795,0.22526189257265183,0.08333333333333333,0.05103103630798288,0.0,0.0,0.0,0.0,0.0,0.0,0.05892556509887896,0.04419417382415922,0.21844336196330352,0.15809803962646912,16.750712376627057,14.44088384466122,10.220051237716591,7.866888531737337,9.81273314781349,6.761167950956581,6.409327732734473,4.1247383455051585,5.057485024009086,2.875233637668255,2.8239277525611626,1.4991665128134744,2.2721298894391992,1.1008901431875129,0.9720556844564576,0.34564565480682846,3.5033225583660816,2.224284700081884,5.4323485023367715,3.162140057799751,6.162787490994689,3.4853281522559225,79.54095639385366,44.30867050388911,30.389677285725035,24.532382428303457,23.26588745011436,22.524685722055075,104.0,114.0,53.67420399999997,28.957795999999995,0.12,22.02,9.868055555555555,4.902777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,50.0,0.0,0.0,50.0,0.0,6.0,6.0,44.0,6.0,22.0,44.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,1.0,1.0,0.0,22.0,2.0,0.0,0.0,2.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,0.0,3.367295829986474,5.872117789475416,3.8501476017100584,4.189654742026425,4.51085950651685,4.700480365792417,4.962844630259907,5.075173815233827,5.3706380281276624,5.54907608489522 +60490,CC(c1cc2ccccc2s1)N(O)C(N)=O,0,31.785714285714285,6.290478571428571,3.357142857142857,7.658730158730159,161.23079448950315,126.11677853571427,1.7189165306495717,6.371939285714285,5.511035175387027,7.836349892857145,233.8527853411612,29.586206896551722,6.480275862068965,3.9655172413793105,7.149425287356321,148.34727850485697,113.34798755172409,1.9769362543448268,6.6242275862068976,3.5457641549595578,7.922396137931036,276.7047802002211,27.93617021276596,6.293253191489362,3.74468085106383,5.865248226950354,150.93799286640203,106.78815412765952,1.8538389253062972,6.428921276595748,3.4038613081166273,7.789155234042556,249.25894336940428,23.847457627118644,6.303386440677966,3.0847457627118646,4.101694915254237,155.5598813126497,87.80580879661018,1.6152713199507465,6.415650847457627,3.779974890144383,7.886499593220341,210.56774292377003,20.0,6.219540983606558,2.6721311475409837,2.9344262295081966,156.44975618366468,70.27872719672133,1.4612441796105735,6.328314754098361,3.1940902651285175,7.8575195737704915,184.51713619214266,16.857142857142858,6.027210714285713,2.4107142857142856,2.8392857142857144,162.23622491968027,59.56485664285715,1.2149278965542323,6.1091678571428565,2.9341931216931223,7.6723112857142866,155.58760351225578,15.25,6.040863636363636,2.272727272727273,3.6818181818181817,162.1406592143818,53.31036172727274,1.198326870329318,6.119318181818181,3.173400673400673,7.638273818181819,157.97636120308502,12.736842105263158,6.004157894736842,2.0526315789473686,2.8421052631578947,164.7122835829945,43.6322762105263,1.0370652258023685,6.059710526315787,3.4385964912280698,7.613810526315789,136.43567082515355,10.846153846153847,6.149153846153847,1.5384615384615385,2.076923076923077,172.0901644147843,35.32828569230769,0.8624597793381542,6.16523076923077,3.8974358974358974,7.797705846153847,112.15498173578686,12.173469387755103,0.13299081632653056,0.021451285731747184,0.6581632653061221,3.8469387755102034,1.651707331246157,54.90186588137755,0.3235214303099591,0.12372487244897952,2.1085719009826156,0.08350630994897955,51.2895600194273,0.33145672061928183,-0.00040879662209714063,-0.0147984925575261,0.26301900070372985,0.8402533427163968,0.3605175667460991,1.6309827676372273,0.06243693279003595,-0.0024426064391273824,-0.27930944887533565,0.0006441518736805148,5.573449740092306,1.8493269648284845,0.0319828918801563,0.003796271695846174,-0.05785931393834126,0.17822164326723589,0.45242177188187677,8.494616978804823,0.06278980981530537,0.02734731600086842,0.2943437285386092,0.01894939597807207,5.938490080034426,-1.2013144240747151,0.007046835005188504,0.0018363388576594464,-0.11942234520927014,-0.6791959721741805,0.11977693096489866,-5.376206042394501,-0.004437273472290866,0.0033860234347976507,0.3709362480955276,0.007053779639398136,-2.4838859478885174,-4.0200736032117765,-0.034588825694212115,-0.004625847518372846,-0.06917029106724656,-1.0419687000483255,-0.3287915911043648,-18.351441688754605,-0.08468161644385608,-0.03478371319839409,-0.414405941068325,-0.02021413606139176,-14.315466756717068,0.09183673469387765,-0.01196607142857142,0.0029003508844142665,-0.02423469387755103,-0.17063492063492047,-0.29642222812522984,0.2573725044642868,-0.04435873430917857,-0.007815306122448967,-0.32553504941071054,-0.004657591836734696,-2.83601427712727,-0.8682745825602968,0.00156600185528758,-0.0014125476171402472,-0.10621521335807049,0.6454854669140384,-0.41180836827757256,-3.755870283974953,-0.06293209336345268,0.003390062615955464,0.023579640891148904,-0.0039172693645640085,-4.714084991717064,0.6498388829215901,-0.0025784103114930034,0.0011236105182693514,-0.09049409237379163,-0.02530134860961918,-0.3463449554249682,2.7813566355397428,-0.032776008180876524,0.0004728719119226634,0.077611793851177,-0.004366838144468317,-4.118248684173759,0.13971742543171167,-0.031784772370486644,-0.0006400233726356812,0.06711145996860278,-0.41897784754927603,-0.13770191749763233,0.6045831460949773,0.019996816164524242,-0.027085037284144423,-0.456782418174614,-0.02191726874018838,1.169329674116778,,,0.4875,1.203125,0.59375,0.0,0.609375,-0.015625,0.7443331675058374,0.020124338093630012,0.03087433809363001,0.7433170451488925,0.23986855189736903,0.2346454576573194,1.48765021265473,0.4745140095546884,1.9973222242661288,1.4206446057280107,0.234023204750656,0.2136942798661958,0.0,0.576677618538118,8.43078387942857,890.0,176.1334,94.0,214.44444444444446,4514.462245706089,3531.2697989999997,48.129662858188006,178.4143,154.30898491083676,219.41779700000006,6547.877989552513,858.0,187.928,115.0,207.33333333333331,4302.071076640852,3287.0916389999984,57.33115137599998,192.10260000000002,102.82716049382718,229.74948800000004,8024.438625806411,1313.0,295.78290000000004,176.0,275.66666666666663,7094.085664720896,5019.043243999998,87.13042948939596,302.15930000000014,159.9814814814815,366.09029600000014,11715.170338362,1407.0,371.89979999999997,182.0,242.0,9178.032997446333,5180.542719000001,95.30100787709404,378.5234,223.0185185185186,465.3034760000001,12423.496832502431,1220.0,379.39200000000005,163.0,179.0,9543.435127203546,4287.002359000001,89.13589495624498,386.02720000000005,194.83950617283958,479.308694,11255.545307720702,944.0,337.52379999999994,135.0,159.0,9085.228595502094,3335.6319720000006,68.035962207037,342.11339999999996,164.31481481481484,429.64943200000005,8712.905796686324,671.0,265.798,100.0,162.0,7134.1890054328,2345.6559160000006,52.726382294489994,269.24999999999994,139.62962962962962,336.08404800000005,6950.959892935741,484.0,228.15800000000002,78.0,108.0,6259.066776153791,1658.0264959999993,39.408478580490005,230.26899999999992,130.66666666666666,289.3248,5184.555491355835,282.0,159.87800000000001,40.0,54.0,4474.344274784392,918.5354279999998,22.42395426279201,160.29600000000002,101.33333333333333,202.74035200000003,2916.0295251304583,340.8571428571429,3.7237428571428555,0.6006360004889212,18.42857142857142,107.7142857142857,46.24780527489239,1537.2522446785715,9.058600048678855,3.4642964285714264,59.040013227513235,2.3381766785714273,1436.1076805439643,9.612244897959172,-0.011855102040817078,-0.4291562841682569,7.627551020408166,24.36734693877551,10.455009435636873,47.29850026147959,1.8106710509110424,-0.07083558673469409,-8.099974017384733,0.01868040433673493,161.63004246267687,86.91836734693877,1.503195918367346,0.17842476970477017,-2.7193877551020393,8.376417233560087,21.263823278448207,399.24699800382666,2.951121061319352,1.2853238520408157,13.834155241314631,0.8906216109693873,279.10903376161804,-70.87755102040819,0.41576326530612173,0.10834399260190733,-7.045918367346938,-40.07256235827665,7.066838926929021,-317.19615650127554,-0.2617991348651611,0.19977538265306138,21.885238637636128,0.41617299872449,-146.54927092542252,-245.22448979591837,-2.109918367346939,-0.2821766986207436,-4.219387755102041,-63.56009070294785,-20.05628705736625,-1119.437943014031,-5.165578603075221,-2.121806505102039,-25.278762405167825,-1.2330622997448974,-873.2434721597411,5.142857142857149,-0.6700999999999995,0.16241964952719892,-1.3571428571428577,-9.555555555555546,-16.59964477501287,14.412860250000058,-2.4840891213139997,-0.4376571428571422,-18.22996276699979,-0.260825142857143,-158.81679951912713,-38.20408163265306,0.06890408163265352,-0.062152095154170875,-4.673469387755102,28.401360544217688,-18.11956820421319,-165.25829249489794,-2.769012107991918,0.1491627551020404,1.0375041992105518,-0.17235985204081639,-207.4197396355508,24.693877551020424,-0.09797959183673413,0.042697199694235355,-3.4387755102040822,-0.9614512471655288,-13.16110830614879,105.69155215051022,-1.245488310873308,0.017969132653061208,2.9492481663447263,-0.16593984948979607,-156.49344999860284,3.632653061224503,-0.8264040816326528,-0.016640607688527712,1.7448979591836724,-10.893424036281177,-3.5802498549384407,15.719161798469411,0.5199172202776303,-0.704210969387755,-11.876342872539965,-0.5698489872448979,30.40257152703623,0.7316713938910652,0.5980545148239219,0.4466014207573537,0.3335338694634803,0.2915979577489214,0.1941970982794827,0.19038631675302456,0.12049536534712114,0.11472283652368823,0.07084679585304507,0.0734338492369589,0.04122597641003983,0.047627024571206794,0.024655222799184504,0.031641597398190786,0.012748638206109818,16.004503373707813,5.679809779147545,3.546502989474286,2.1678427516387444,0.4465770369124004,-0.33649491193290015,3.2015000904851263,0.9728226777462358,6.022001652360057,0.6531764857931485,14.554441599840107,10.310814584996173,32.06224570742528,11.690876507895453,2.9366790377357104,0.7471676282059857,3.4920734900677077,2.2234098189249925,7.0082740211650565,0.6046112302114218,3.7042245952318744,2.4226893425060547,24.440728548798983,14.696502358549747,0.347722020284892,0.711740241455304,0.8019813566760102,0.8834817095792795,0.8975218261673384,0.8975218261673384,1.913905328717478,490.4338490921654,0.0,0.0,1.0,0.0,7.0,1.0,1.0,0.0,0.0,3.038332064773719,1.1864028910312006,0.7273045705928673,0.31267455364869523,0.24124598222012317,0.24124598222012317,17.203415205861432,653.3292149438543,51.97985205721301,23.333186247994792,47.36642393327365,,8.0,211.0,12.072955341486033,10.001790208849112,0.0,5.063217724965349,14.963291324635195,0.0,18.26052307762536,30.33183534230805,0.0,5.733667477162185,7.8,19.25,9.5,0.0,9.75,0.0,0.012500000000000011,-0.25,0.18229813664596273,0.0714285714285714,-0.11086956521739133,0.08881578947368407,0.14878260869565219,0.0,0.6214285714285718,0.8625,0.43913043478260905,0.5500000000000004,0.773684210526316,11.9093306800934,0.3219894094980802,0.4939894094980802,11.89307272238228,3.8378968303579044,3.7543273225171103,23.80240340247568,7.592224152875015,0.5652173913043478,0.20085470085470086,0.0,0.3717948717948718,0.18181818181818182,0.4800041032797264,-0.729009584767116,-0.07292129285171463,-0.026036056598825567,-0.06075079873059299,0.5199958967202735,0.7897474004044869,0.04791329037882882,0.02820526430016024,0.04935921252528043,-1.3796546394853149,0.7566118449576552,0.7726569670486206,1.683990137253465,0.7830793905372898,0.6103311076557213,0.9172482000270779,0.7534331335458843,0.7345704420967637,0.7693680435471104,0.8249865332656824,0.7552265340549084,0.794117756420628,0.765997574503754,0.46881622356954633,0.6186242966886446,1.340425531914894,0.8598397200744964,0.820828457330747,0.7570434206772972,0.8203101031698005,0.48766741037278216,0.47432137256488577,0.4643061395588537,0.8415302115935971,1.2573237955872534,0.9204605704718716,0.7622238685517492,1.26645644461963,1.1643325990199165,0.9821803949917639,1.2359324324639611,1.1582499129795762,0.9334252801629462,0.7794768458477437,0.91224566280488,1.0153510824722807,1.5783978948236295,1.300924688476038,1.2237896609690841,1.0808234845596651,1.231856329086403,1.2087251042424767,1.5564430484436935,1.4600526122410293,1.3094589888288841,1.2907899790620612,1.3293560070121968,1.2586463913921886,1.0000523889354567,1.0643805483729887,0.8601139268579082,1.0072674418604657,1.035726127320955,1.0936517488324253,1.0035122707989748,1.1074930201318949,1.0475550075618325,1.189775788772075,1.0265732546454431,1.040570081094646,0.9244408671797606,0.8911442526406541,0.9457669525118353,0.9989429175475691,0.7801573426573428,1.1688121736131036,0.9334193370102916,1.0490263969429232,0.8884920974471215,0.8333495425190703,0.9135134679679794,1.0543084402973186,0.6128512815988,1.0478887965015393,0.9234610516622888,0.925336597307222,0.9828633254223093,1.0208539431227739,0.6461744784988196,0.7913546228282777,1.0352409653426469,0.9320173350474601,1.0725790704376155,1.0284244677935936,0.728141724160165,1.62355877313562,1.3839038099986753,0.5071556350626121,1.1761885329524588,0.8761803545242035,0.7583418801036322,0.610821100710821,1.5896334658441584,1.8019070384462432,1.6602244114297429,0.8873471016444254,3.5,0.0,2.222222222222223,1.2916666666666665,0.8272222222222223,0.41333333333333333,0.3560090702947845,0.125,0.062499999999999986,0.0,3037.4997381297976,3354.866870925227,1595.9031643014414,1462.1844320567411,9.86583920043935,0.41977258156855424,5.724430409930683,0.7234621602394176,1.0,0.18181818181818182,1.7690228572838849,3.620952031026403,4.080050351464736,4.4946803684089085,4.566108939837481,4.566108939837481,0.20588235294117646,0.0,0.09259259259259264,0.05615942028985506,0.04595679012345679,0.02952380952380952,0.029667422524565376,0.015625,0.015624999999999997,0.0,0.4910323879954559,12.456747404844291,5.104166666666667,2.651404786680541,96.85777598376734,1.0,3.6994121268256883,56.24335657218094,,39.27254293332842,42.24939678783948,42.208727649934474,39.276896450495684,57.82375512828706,42.52748678007652,42.59070697528198,52.21432076703775,0.027227794317426335,-0.0030738710640998536,-0.6898650618235356,0.3996257685110936,0.2184212933321138,0.2182696413135739,0.029707237476430625,0.19299164426361626,-0.019742242531990816,-0.13246380108981565,0.007713810777581681,0.10866635896235437,0.15191453692639686,0.2404894771202031,0.176971755601009,-0.08791027544120071,0.04632817252039555,0.27391158428808327,0.1547236481389999,0.19408238197744046,0.22103329314116404,0.1395938779234619,0.22692172591088886,0.11578360348158696,-0.09868299543949881,0.05298738063150545,0.08560507191145779,-0.18144790434896865,-0.176554921148726,0.07251704263765123,-0.09792392218527647,-0.013715547276233317,0.02736736250177948,0.17591823542875992,0.08447001961537798,-0.04842868503741656,-0.3302323663996262,-0.260084317471115,-0.2156443010558918,-0.10509594611767699,-0.27085658515845074,-0.19906165268171494,-0.3342589799844912,-0.2617496354498816,-0.2811375959408474,-0.19653393885938047,-0.24206716922041144,-0.2791107342565368,0.007544006705783746,-0.08997667477422866,0.13520638905675683,-0.03682170542635662,-0.04435602711464777,-0.17946413539351996,0.004687864434705602,-0.13711219768866437,-0.06316681494799495,-0.15438650645918595,-0.05577532811089819,-0.055294182208875525,-0.07132515430922806,0.011775263123752822,-0.06584908871218494,-0.1613812544045103,0.16779197813680574,-0.2493228433919205,-0.06841061271196114,-0.19452217833965052,0.02740000897841641,0.011182754014772063,-0.046909860667503696,-0.09191119966580874,0.05338156791811888,-0.019387882432139278,0.052379635063386686,-0.13749490004079976,-0.006577008391890397,-0.20968905863223522,0.05066051200425895,-0.10131016096669243,0.0038219632201897144,0.03680775306500534,-0.05229351107881974,-0.0802940926499245,0.011477206783158207,-0.23899975388109446,-0.02983613106642219,0.10196779964221822,-0.10891201342129724,-0.08336944136086198,0.01101206919635948,0.06180986571852662,-0.21891343872925384,-0.2166311795968394,-0.2624624265349449,0.02279859046702415,5.085675264759766,8.773317917517,4.234095253480114,20.554266691707934,34.81188676163681,39.0509033736468,40.25477900215509,40.32677900215509,40.32677900215509,31.95715558825806,22.73031369164817,3.744371276010496,3.4191084778591327,0.0,9.226841896609889,2114.285868543793,2042.967339383016,458.58552200133204,20.0,24.0,31.0,37.0,42.0,43.0,45.0,43.0,26.0,236.061948624,17.0,4.418840607796598,5.262690188904886,6.133398042996649,7.00033446027523,7.877397186353287,8.752265313595721,9.632138041371906,10.510668264544881,11.39187584984776,0.7380952380952382,0.9925714285714283,1.121858355714958,0.7025970241564279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7073463644140293,0.9802521008403363,1.0139813755072313,0.6565552470122996,5.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5.733667477162185,0.0,0.0,0.0,0.0,5.20725302477729,4.794537184071822,5.063217724965349,11.336785877934737,18.19910120538483,24.44269555107864,9.5770671101704,6.041840829147961,206.48511053935266,-313.6007039655724,-31.36881770859387,-11.200025141627584,-26.13339199713103,223.6885257452141,339.72851097828186,20.611034348619143,12.133161106367208,21.233031936142616,0.5,0.756938511687678,0.23024839885628373,85.5708926064966,0.22295911899857998,39.09700889197595,0.24306148831232177,4.0,0.11764705882352941,0.36798257793845657,0.7532108799398971,0.8487100323598382,0.9349591285190845,0.9498173140674068,0.9498173140674068,2.7321999999999997,,1.4107142857142858,0.9181739123801387,0.7098670474021058,1.408890217594701,-2.7768142340074573,0.8514381884944923,0.8488716908216677,-1.279059337431441,63.448900000000016,10.001790208849112,0.0,5.063217724965349,5.733667477162185,12.965578028838586,0.0,35.20898253600935,0.0,0.0,3.5553480614894135,0.0,4.875197323201151,2.3978952727983707,6.385194398997726,4.727387818712341,7.9748769005588755,6.842683282238422,9.604744532724922,20.66666666666667,9.860556185437137,0.0,0.0,0.0,1.5416666666666665,2.2309637188208624,0.9050925925925928,0.0,27.791999999999994,0.0,10.832023494583018,0.0,0.0,0.0,0.0,0.0,-0.8426332199546482,31.412033960018825,5.733667477162185,4.794537184071822,0.0,16.30158526208071,0.0,0.0,17.842725222539883,30.33183534230805,0.0,10.086144130933896,0.0,19.67271667637998,19.805698203592822,20.2299205812374,112.48671314436191,,78.7488321797783,84.38402183663145,84.32872191894369,78.75891097791425,117.31349209322178,84.94854378659123,85.07530498921125,104.90828878561234,20.2299205812374,112.48671314436191,,77.69079646549261,83.58061966329885,83.70758825246683,77.70224331471822,118.48322153240619,84.20353537165855,84.33254225974231,105.70770087150701,4.661401223755341,84.2431967851714,,58.9104587492908,64.19927771927948,64.14414858431225,58.916110552613944,86.74868775212668,64.5518376237847,64.5704730817256,78.8149812957731,1.2643700363273376,7.03041957152262,,4.921802011236144,5.2740013647894655,5.27054511993398,4.922431936119641,7.332093255826361,5.309283986661952,5.317206561825703,6.556768049100771,2.418791085128626,56.24335657218094,,39.27254293332842,42.24939678783948,42.208727649934474,39.276896450495684,57.82375512828706,42.52748678007652,42.59070697528198,52.21432076703775,27.447058823529417,0.0,1.7316203703703703,0.0,0.0,5.010083774250441,9.43900604686319,28.391478514202475,0.0,0.0,0.0,0.0,-0.42138888888888926,0.5463425925925924,0.0,0.0,0.0,18.38354691634439,325.6149920165165,49.53264000394878,101.3866568687393,114.24140984101263,125.85105031544944,127.85105031544946,127.85105031544946,344.0,103.9796079556869,104.55864426805019,62.36332759072123,94.8,66.56,1.0,7.863535618142767,5.087462841250339,3.5705691302874585,3.9447968363405677,,3.936108116636382,3.949202159120198,3.950221081335365,3.9360879755276152,3.9001655004535447,3.9481604664936345,3.9469377206380307,3.925725881458362,0.22316057064296616,0.24654980227128548,,0.24600675728977386,0.24682513494501238,0.24688881758346032,0.24600549847047595,0.24376034377834654,0.24676002915585216,0.24668360753987692,0.24535786759114764,1.7427286325798137,1.8424010831909807,,1.8401960767161032,1.8435172027241808,1.8437751765508268,1.8401909596919512,1.8310226174946838,1.8432533949995042,1.8429436468908933,1.8375549013323678,170.67999999999975,84.38606461952766,73.77738568893935,,74.48515515198149,73.44340377819314,73.41719587205766,74.48710955614268,76.56179791736456,73.53804584962377,73.63757998049627,75.12406440445451,5.274129038720479,4.611086605558709,,4.655322196998843,4.5902127361370715,4.588574742003604,4.655444347258918,4.785112369835285,4.596127865601486,4.602348748781017,4.695254025278407,4.905405906072264,4.771055886914681,,4.780603475071451,4.766518722226229,4.766161813613897,4.780629713568464,4.808101859883824,4.7678065321471435,4.769159122231078,4.789144568172702,1.1270559334845052,11.737116087175611,11.08925642479214,5.010083774250441,0.0,8.596534076593601,0.0,1.7316203703703703,0.0,197.20008334871457,88.82445083933406,-134.90275516627025,-13.494038379653537,-4.817955541652508,-11.241896263855853,96.22490651495269,146.14224891706888,8.866323593331604,5.219366032752459,9.133890557316805,436.0,23.0,1.2182335127930837,0.7037732733239179,0.0,0.0,0.48311957903925734,0.19268844782468336,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.08838834764831845,0.27497165237684323,0.1808708867017264,0.4283866881375378,0.2712249206340404,11.706742302257043,9.56887223718275,7.592224152875013,5.670075780879165,6.998350985974113,4.660730358707585,5.901975819343761,3.7353563257607556,4.244744951376465,2.6213314465626674,3.084221667952274,1.731491009221673,2.047962056561892,1.0601745803649336,1.4238718829185855,0.5736887192749418,3.144870203358742,1.686503321402731,4.092758699145774,2.1455676204388117,5.50084173539274,2.6117338646056103,52.141992893998896,31.93240184738305,24.57476222638473,22.211460608901017,22.010935257325475,22.010935257325475,82.0,96.0,33.07551599999998,15.366483999999996,0.32142857142857145,49.05,6.166666666666667,3.527777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,28.0,0.0,0.0,29.0,10.0,1.0,5.0,24.0,11.0,17.0,18.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,2.0,1.0,16.0,5.0,0.0,2.0,2.0,0.0,2.0,2.0,1.0,0.0,0.0,1.0,2.0,3.1780538303479458,5.931955025991852,3.7898553714539385,4.367864320861377,4.954505762540061,5.430441519475078,5.715330126472461,6.065364629350523,6.387319826281453,5.91672837286895 +9556529,Clc1ccc(CO/N=C(\Cn2ccnc2)c2ccc(Cl)cc2Cl)c(Cl)c1,0,52.0,6.358469230769232,3.717948717948718,8.06204495093384,158.41120695988045,217.46997841025632,2.0323838913599226,6.652969230769231,2.934303909269616,8.085344717948715,281.7848728044052,34.58536585365854,6.471829268292684,4.317073170731708,8.084010840108402,144.79511756984627,136.4504469268293,2.119619903170732,6.705941463414634,3.1395413028204353,7.943316487804875,306.6848730256862,32.378787878787875,6.445892424242424,3.9393939393939394,6.200336700336701,151.71166494443634,126.70828275757577,1.9546329266923939,6.6702742424242425,2.8631375483227335,7.996259272727271,275.4228569388177,29.308641975308642,6.308023456790125,3.271604938271605,4.647462277091907,154.61879481787764,111.57462461728394,1.7857211636363828,6.5724641975308655,2.5993115886805875,7.995841827160493,237.8225561965454,32.617283950617285,6.412640740740742,2.950617283950617,4.693949093126048,160.7472456617788,126.98382683950618,1.5856836346480248,6.664402469135802,2.6971408867588313,8.164743308641976,211.29463880141137,26.492957746478872,6.499071830985916,3.183098591549296,5.508607198748043,162.72326261350568,100.53438957746476,1.480155141359014,6.672630985915492,2.9080449776850408,8.131034732394365,209.74180397616246,28.169014084507044,6.4202549295774665,3.3380281690140845,5.090766823161189,158.5872561295306,108.2787401690141,1.6614534089125634,6.614864788732395,2.788587492030372,8.048289661971832,231.54923027052675,27.736842105263158,6.165319736842107,3.1447368421052633,4.0321637426900585,153.07801772235905,104.97784478947368,1.7510608192815265,6.435225,2.482022958631146,7.864726578947369,231.53253053193873,24.725,5.9473262500000015,2.9625,3.5513888888888885,157.40079218986003,94.3529816375,1.6380647207841874,6.174836250000001,2.255787037037037,7.650981025,211.305390101298,20.754766600920444,0.0917914529914529,0.012693549919758143,0.5877712031558187,3.5206532414509617,1.483532093181657,96.4011481117686,0.2852212628290347,0.11773583168967779,0.3620321945037923,0.09240086522024986,49.642050816540554,0.11702827087442488,0.013636314363143618,-0.002521876288570149,0.0682638187328619,0.6129564992048482,-0.2109072848923392,0.5379975667805224,-0.008753224742082904,0.010192998829396557,0.06387695520006434,0.004897063485191068,-1.2557204371006703,-0.06517841133225735,-0.017259090909090904,-0.0028835878287885434,-0.11457772996234528,-0.7602236847251096,0.12650817195283687,-0.08835545209491312,0.03736186727335603,-0.01810541210925828,-0.0710448557912594,-0.013832181459566075,2.4344056621971633,-3.555652957362359,-0.01273868312757201,-0.0006230657327792,-0.10723938929067135,-0.47835590560081453,-0.19328273694028017,-16.565444914554266,-0.05171588348824534,-0.021204904180972563,-0.053026597288403345,-0.01723863160201622,-10.703119435016115,1.6852460613144373,0.002253086419753082,0.0024236396282197505,0.030462415077799686,0.2054008700626829,-0.2744439768466612,7.626562913872454,-0.01624291294838877,0.00603409550247156,0.011557627730376042,0.0058711373121971226,-2.902450323081175,-0.2849218916391181,-0.0058339593114241015,-0.0006830413753456737,0.03375281273439454,0.17511427278290553,0.05450897827150226,-1.2772298625811453,-0.0026777043874000274,-0.003375773907084868,0.030054481147094282,-0.004045084071820815,2.7320010339082197,0.28893148503115995,-0.011313771517996864,-0.0021339545132501706,-0.03558629885823818,-0.4828448781339918,0.2951320810036229,1.5017654093581843,0.04530785240563938,-0.008933592614199334,-0.036694965623218424,-0.003806463631228533,6.124986772222636,-2.7257517561161286,0.0026181286549707655,0.0011356071520724831,-0.010510744316412335,-0.3681482848524384,-0.18432960068198628,-13.070701061836052,-0.08386323938723994,0.0023946338973667215,-0.052768998865064316,0.008576626007820354,-12.956824805567255,1.679848783694937,0.005247361111111111,0.0004074873697932706,-0.033284023668639064,0.012533684791519659,0.0783846692112778,8.041315863551933,0.04087552562359974,0.008864841387245258,0.003573777948030548,0.0033318392669296876,7.296641930478382,,,0.515018315018315,1.4038461538461537,0.75,0.07692307692307693,0.6538461538461539,0.09615384615384616,0.7417568410158757,0.014974477658481119,0.024897554581558044,1.0051674696983488,0.28284174915093335,0.19888429482031997,1.7469243107142245,0.48172604397125335,2.024710271830619,1.4345533397439114,0.24006660997959697,0.0783968640478454,0.27169345805926565,0.590156932086708,10.948237762974369,2028.0,247.98030000000003,145.0,314.41975308641975,6178.037071435338,8481.329157999997,79.26297176303697,259.4658,114.43785246151502,315.3284439999999,10989.610039371802,1418.0,265.345,177.0,331.44444444444446,5936.599820363697,5594.468324000001,86.90441603000002,274.9436,128.72119341563786,325.6759759999999,12574.079794053136,2137.0,425.4289,260.0,409.22222222222223,10012.969886332798,8362.746662000001,129.005773161698,440.23810000000003,188.96707818930042,527.7531119999999,18177.908557961968,2374.0,510.9499000000001,265.0,376.44444444444446,12524.122380248089,9037.544593999999,144.643414254547,532.3696000000001,210.5442386831276,647.663188,19263.62705192018,2642.0,519.4239000000001,239.0,380.2098765432099,13020.526898604083,10285.689974,128.44037440649,539.8166,218.46841182746533,661.3442080000001,17114.86574291432,1881.0,461.43410000000006,226.0,391.1111111111111,11553.351645558903,7137.941659999999,105.09101503648999,473.75679999999994,206.47119341563788,577.303466,14891.668082307535,2000.0,455.8381000000001,237.0,361.44444444444446,11259.695185196673,7687.790552000001,117.96319203279201,469.65540000000004,197.98971193415642,571.428566,16439.9953492074,2108.0,468.5643000000001,239.0,306.44444444444446,11633.929346899287,7978.316204,133.08062226539602,489.07710000000003,188.6337448559671,597.7192200000001,17596.472320427343,1978.0,475.7861000000001,237.0,284.1111111111111,12592.063375188802,7548.238530999999,131.045177662735,493.9869000000001,180.462962962963,612.078482,16904.43120810384,809.4358974358973,3.579866666666663,0.4950484468705676,22.923076923076927,137.3054764165875,57.85775163408462,3759.644776358976,11.123629250332353,4.591697435897434,14.1192555856479,3.6036337435897448,1936.0399818450815,4.79815910585142,0.5590888888888883,-0.1033969278313761,2.798816568047338,25.131216467398776,-8.647198680585907,22.057900238001416,-0.3588822144253991,0.41791295200525885,2.6189551632026378,0.20077960289283378,-51.48453792112748,-4.301775147928986,-1.1390999999999998,-0.19031679670004387,-7.562130177514788,-50.17476319185723,8.349539348887234,-5.831459838264266,2.465883240041498,-1.1949571992110466,-4.68896048222312,-0.9129239763313609,160.67077370501278,-288.00788954635107,-1.0318333333333327,-0.050468324355115196,-8.68639053254438,-38.746828353665975,-15.655901692162693,-1341.8010380788955,-4.188986562547872,-1.7175972386587777,-4.295154380360671,-1.3963291597633138,-866.9526742363053,136.50493096646943,0.18249999999999966,0.1963148098857998,2.4674556213017746,16.637470475077315,-22.229962124579558,617.7515960236688,-1.3156759488194902,0.4887617357001963,0.9361678461604593,0.47556212228796696,-235.09847616957518,-20.229454306377384,-0.4142111111111112,-0.04849593764954283,2.3964497041420123,12.433113367586293,3.8701374572766603,-90.68332024326132,-0.19011701150540194,-0.23967994740302564,2.133868161443694,-0.28720096909927784,193.9720734074836,20.514135437212357,-0.8032777777777774,-0.1515107704407621,-2.5266272189349106,-34.28198634751342,20.954377751257226,106.62534406443109,3.2168575208003958,-0.6342850756081527,-2.605342559248508,-0.27025891781722583,434.87406082780717,-207.15713346482576,0.19897777777777817,0.08630614355750872,-0.7988165680473374,-27.979269648785316,-14.009049651830958,-993.3732806995399,-6.373606193430236,0.18199217619987085,-4.010443913744888,0.651823576594347,-984.7186852231114,134.38790269559496,0.4197888888888889,0.03259898958346165,-2.662721893491125,1.0026947833215727,6.270773536902224,643.3052690841546,3.2700420498879788,0.7091873109796207,0.28590223584244384,0.266547141354375,583.7313544382705,0.7122421957741799,0.6306087976213153,0.4473170408304496,0.32422050497091953,0.29716101458506355,0.1866738610008723,0.190918297531155,0.09953674928335814,0.12705577338816879,0.055845053625170886,0.07921604543797581,0.02832628035911725,0.05486451409546891,0.01677600498323367,0.03423274159125977,0.007273714609831165,17.004170650408952,5.692965244110413,3.533642458607779,2.186949179189437,0.3898532413894111,-0.44122650025028853,3.2083148304577067,0.9928887466925105,6.012613958495466,0.7730619144524574,14.559349153428851,10.952401041323146,35.453548545048896,11.70458126341974,2.2165416287330935,0.7574923714254984,3.4768003012970112,2.2385519319371228,3.524930287482494,1.2957566258961863,3.6873549888605672,2.434897529686163,22.45936189763155,14.697352912588936,0.31898281687068536,0.6273742263563035,0.7842469882153345,0.8819696575877188,0.9092287068393431,0.9183150565898844,1.5109330474393718,926.1905705417456,0.0,2.0,2.0,0.0,11.0,0.0,2.0,0.0,0.0,3.4851090734348538,1.7445923081360966,0.859225000110948,0.3076923076923075,0.1538461538461542,0.10256410256410309,-77.81545111118453,994.0511006018532,48.39716330949378,25.48848975902188,57.37412980265982,,13.0,570.0,0.0,0.0,6.606881964512918,32.34697466364858,11.126902983393991,0.0,48.92236605714728,10.763943219404432,10.139691247697748,51.2413481446667,13.390476190476189,36.5,19.5,2.0,17.0,0.015018315018314965,0.0,2.5,0.24688314688314666,0.10233833252701152,-0.14454481435613514,0.0,0.1295061317813343,0.0,0.6874236874236874,0.8811355311355308,0.44054054054054076,0.5850853548966759,0.8811355311355308,19.28567786641277,0.3893364191205091,0.6473364191205091,26.13435421215707,7.353885477924267,5.170991665328319,45.42003207856984,12.524877143252587,0.5844938682186657,0.21337126600284498,0.0,0.29125177809388336,0.1111111111111111,0.5637381691556559,-0.9180152417227544,-0.050002983672781574,-0.023538852351865498,-0.06557251726591103,0.43626183084434395,0.7104273437734878,0.029280668548596976,0.018216085737781745,0.028417093750939523,-7.0846453499617725,0.46946274708565644,0.6135812388888539,1.2197559026047844,0.8692912096906202,0.6666791125430368,1.228941503779541,0.4702600787648788,0.7047079977333053,0.5524201837936767,0.6444282533868323,0.6011062675616071,0.7479444352460665,0.6209711790996637,1.1549355147813194,1.4540140281125387,1.306080943664836,1.2042939469671121,1.0070790168471837,0.6197098650356465,0.6422172021443489,0.9727458326272688,1.1321018728729009,0.9555671259653864,0.7535412096815856,1.0817928610313305,1.0704229966493,0.9169553812762699,1.1870080371198937,1.0929951987824302,1.1214864643611016,1.0819054372980141,1.102799141224096,1.0997678538418183,1.114877230388766,1.1182699314067792,1.1342647216048085,0.9426927878207656,1.3250369349572306,1.0909962372107018,0.8697903720275083,1.0589544398368878,1.151971542226487,0.9442783332873751,1.0736844385146846,1.169177350407464,1.3173061787245832,1.1618600582145537,1.0419190572331531,0.7812256840587367,1.5780424848618704,1.5187356346055199,0.863881274222516,1.160076234308569,1.0382762242181833,0.7829111200151491,0.9278327227650853,1.2441684475462342,1.4540241633034525,1.192665244062371,0.8778151966497507,0.7223775368888445,1.438433854645622,1.6266209254678146,1.0389923433216748,1.2523279565067118,0.8457738989337176,0.7226844014702298,0.7376370676515502,1.1605536606015747,1.379615148656941,1.0873890031682028,0.7950215941888126,1.0164486188545363,0.7255926663935345,0.7479066308728092,0.9161073825503354,0.9533127530271034,1.0855842722506215,1.021408974764625,1.2184261467618633,0.7896480660188233,0.9345195727936704,0.7163257100119652,1.2183520161270516,0.7907513146224026,0.639124362173638,0.6617962327406836,1.0878775167785233,0.9185452728312293,0.9105576276993714,0.7923671788675015,0.843959814511691,0.7009556476516703,0.7130023541506764,0.6540958703677702,0.9334327672503504,5.5,0.20835220895826959,2.88888888888889,1.8472222222222223,1.141666666666667,0.6597222222222223,0.420453514739229,0.44625141723356004,0.3481827916351726,0.2028163580246914,6165.391655231176,6594.8405666871495,2643.0585777675456,2511.64938096076,14.549795348597723,0.4536018200551439,7.949981697043929,0.8301671504486389,0.0,0.1111111111111111,1.800293145427395,3.540809910726152,4.426177218751301,4.977709911169941,5.1315560650160945,5.182838116298146,0.1964285714285714,0.01096590573464577,0.07602339181286552,0.05131172839506173,0.0345959595959596,0.021281362007168465,0.012741015598158456,0.013945356788548751,0.011606093054505754,0.006993667518092807,0.4358930519335783,20.727040816326532,9.97229916897507,5.9972838388411045,170.45516888574264,0.0,4.176726331823359,142.62422440426653,,101.33988509150679,103.86755627229556,104.94045827932705,101.24914171191818,165.41879463215608,104.49883047610862,105.20114355380571,138.19390574818757,0.005638621388748107,0.14855756084843055,-0.1986738386434139,0.11614012113275496,0.17410305905395876,-0.14216563690241235,0.0055808211553327325,-0.03068924334484032,0.08657516308427458,0.1764399856416505,0.05299802630114188,-0.0252954988048614,-0.00314040685619499,-0.1880250322510743,-0.2271695346862815,-0.19493593654667465,-0.21593256494973634,0.08527498160253556,-0.0009165394170666182,0.1309925736348458,-0.15377996527836674,-0.1962390551719709,-0.14969753179902823,0.049039183961070924,-0.1713174147284639,-0.13877853234067625,-0.04908522333924626,-0.18245090728312205,-0.13587134909192886,-0.13028551106417682,-0.17183866830453198,-0.18131847175518784,-0.18010578323227366,-0.14646928669170578,-0.18656353012415658,-0.2156059078737713,0.08119802519194308,0.024545710371998108,0.1909347380000637,0.051826994780014894,0.05834169285528141,-0.18499362306215766,0.07911278094976762,-0.05694846445625963,0.051251139231563145,0.031924309235031235,0.06353985212370554,-0.0584675748753331,-0.013728021958410372,-0.06355667244931101,-0.053810114559244435,0.057425087437375934,0.04973914236175555,0.03674270244777758,-0.0132491146381401,-0.009388165387252626,-0.028672442863295552,0.08301604554337352,-0.04377755621853555,0.05503400824443632,0.013921210996337884,-0.12325517408522053,-0.1681132958660023,-0.06054447490310991,-0.13714638875795607,0.19893879098406825,0.0155782938146859,0.1588515945699234,-0.07587828179399157,-0.10135829404208979,-0.04119510809942435,0.12338303255960192,-0.13133136153866676,0.028522575573725267,0.08946332265214903,-0.017882373719533735,-0.10456817516646826,-0.1242504975316468,-0.13558657046990488,-0.29402870794211666,0.020339040910488302,-0.14575775211757186,0.09281975863945446,-0.26100502683604054,0.08093797516472376,0.057166118849864105,0.032101923604443874,-0.056627516778523505,0.0035600452336379965,0.05283651737062872,0.0834151461995944,0.14331163538849157,0.07529433699173896,0.009871436856406738,0.036058528878358455,0.14698510255839728,11.33258642438166,18.86833177690503,5.3554154102897975,24.817950744053398,42.7006238102353,48.53307545089412,55.51676399459569,56.23609732792903,58.054199892031605,52.6424670675961,37.298386833341695,6.241731859469521,2.0383184652439805,7.064029909540907,15.34408023425441,8793.174454760796,7980.239049391951,1743.480095189082,74.0,38.0,47.0,58.0,64.0,65.0,63.0,70.0,74.0,426.98127275600035,28.0,4.890349128221754,5.713732805509369,6.569481420414296,7.4067107301776405,8.264878262801748,9.107310471656639,9.966603186850204,10.811604973721122,11.67162862366544,0.9316239316239311,1.0013333333333336,1.1124994597538844,0.9160876034575148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7914986795639494,1.0025138260432374,1.0295628139765072,0.74035882300751,9.0,1.0,0.0,0.0,0.0,0.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,4.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9.404688231527988,12.318566967283619,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,57.625839356142215,30.33183534230805,38.58849006784412,17.894709794418443,344.1229997861331,-560.3845475004536,-30.523348748066574,-14.36883455129368,-40.02746767860383,266.3075486749486,433.6665531013997,17.8738145614272,11.1196552077282,17.346662124055992,0.46153846153846156,0.9490714326348546,0.23984470045745335,3.320765370735239,0.08798641769098026,45.106180369349275,0.050928567365145276,7.0,0.21428571428571427,0.3406161103506199,0.6699225080902844,0.837434321073126,0.9417845047640401,0.9708922523820199,0.9805948349213466,6.117800000000003,,3.266806722689075,1.3091486384496362,1.3755265926330025,3.321505183656681,-1.7010599023708446,1.5144254605456835,1.5084204702026756,-1.0238138438378743,106.477,4.8375885837366335,0.0,9.551078168738563,5.15571272675054,13.151638370425493,0.0,86.33664586711966,0.0,0.0,4.04305126783455,0.0,5.342334251964811,2.3978952727983707,6.818924065275521,4.442651256490317,8.382289428951436,6.259581464064923,9.991361057786367,36.333333333333314,15.635698039324563,4.03625880685408,0.0,0.0,0.0,0.0,3.6383660100070685,1.8634902045027104,39.052000000000014,0.0,0.0,0.0,0.0,0.0,0.0,4.267050579491055,0.6340302273172644,43.38747893040149,0.0,0.0,0.0,15.262763171509263,17.989226954162127,0.0,11.126902983393991,60.274922355510895,20.090533254965305,0.0,0.0,35.72741653484308,30.868448502994024,32.91224163705591,285.2484488085331,,202.42847735819134,207.6344088031719,209.77510682075925,202.24278302509356,331.49184307291637,208.8811666860214,210.28625476374964,276.78158605169745,32.91224163705591,285.2484488085332,,199.41296346032453,206.42596390614156,208.5053899660211,199.1767782401797,332.53864916668306,207.48323549167156,208.89386663740873,277.41162534021305,4.713643268572891,206.49800782111015,,146.67991140289746,148.28589337466803,150.96450734440197,146.5986244418623,259.9562522029868,149.74927766882595,150.9559224901203,208.1491783745342,1.2658554475790733,10.971094184943581,,7.785710667622744,7.985938800121996,8.06827333925997,7.778568577888214,12.749686272035245,8.033891026385438,8.087932875528832,10.645445617372978,2.3618549600268617,142.62422440426653,,101.33988509150679,103.86755627229556,104.94045827932705,101.24914171191818,165.41879463215608,104.49883047610862,105.20114355380571,138.19390574818757,39.098039215686256,0.0,0.0,24.366979601541075,0.0,0.0,0.0,40.15294974508378,0.6431963690826128,0.0,5.526041272990677,0.0,0.0,0.0,0.0,0.0,0.0,28.87399409729289,579.3421951520389,70.2114326716684,138.09158651831993,172.62091153130072,194.13068653562772,200.1306865356277,202.1306865356277,607.0,128.4022996030182,31.08835330904278,73.67808806516629,39.41,39.41,0.8571428571428571,8.168114324099133,5.807354922057604,4.352848498306224,5.0234373547633275,,5.033831134175301,5.0225098956906296,5.024736470266,5.034036778136465,5.048592788592726,5.025196451559563,5.026014865255668,5.0384361935626965,0.16741724993485477,0.19320912902935874,,0.19360888977597313,0.19317345752656268,0.19325909501023078,0.1936167991590948,0.19417664571510487,0.19327678659844474,0.19330826404829493,0.1937860074447191,2.426341903019084,2.5696258764336277,,2.571692796119371,2.5694412330043503,2.5698844538691965,2.5717336476607264,2.574620993758772,2.569975993046117,2.570138841815706,2.5726071999091875,277.9700000000001,218.21420193931556,152.81801364501038,,151.1789648842586,153.0457144970756,152.7681945879041,151.13305887225695,149.6307995526793,152.68528685981855,152.57727445057157,151.0864132878256,8.392853920742906,5.877615909423477,,5.814575572471484,5.886373634502908,5.875699791842465,5.812809956625268,5.755030752026126,5.872511033069944,5.868356709637368,5.8110158956856,6.340988603106316,5.984759205158262,,5.9739757779587705,5.986248109354343,5.984433149490791,5.973672078411633,5.963682368740395,5.983890299366912,5.983182630445503,5.973363391585676,1.8634902045027104,9.562300079844757,6.395258909142029,2.1441879076733583,0.0,10.427124951645453,5.208573087679109,0.6431963690826128,0.0,329.0114664685466,210.06319149752196,-342.075846679817,-18.632384517151152,-8.771175555892743,-24.43398904855836,162.5622629969751,264.72331185891426,10.910722425823675,6.78777722715165,10.588932474356573,1794.0,36.0,1.7222950320338768,1.0639883614710401,0.0,0.0,0.2821175568066727,0.13688264283364143,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.03849001794597505,0.2381448361039201,0.07532907513005968,0.4184873245731758,0.15175569751090315,18.518297090128677,16.395828738154197,12.524877143252588,9.078174139185746,11.292118554232415,7.093606718033147,8.973159983964285,4.678227216317833,7.369234856513789,3.2390131102599113,5.069826908030452,1.812881942983504,3.566193416205479,1.0904403239101885,2.1566627202493653,0.4582440204193634,3.5257115293866654,1.7946266104486683,5.378014535028204,2.2950296824331575,7.154085420437509,2.5444574636510384,92.44581273873206,62.13382196474326,48.2912626065196,34.09306162898799,32.745204308429116,29.881007502241516,132.0,151.0,51.550309,19.667690999999998,0.5641025641025641,134.08,8.38888888888889,5.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,17.0,39.0,0.0,0.0,41.0,17.0,1.0,9.0,32.0,18.0,28.0,23.0,0.0,0.0,0.0,18.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,4.0,0.0,1.0,26.0,8.0,0.0,3.0,1.0,0.0,3.0,6.0,0.0,0.0,4.0,1.0,3.0,3.6506582412937387,6.8558038733500375,4.2520603082138555,4.769624740953621,5.279707777298865,5.637464593618552,5.760871441640328,5.880009106182659,6.208086881431926,6.528597333035978 +1549120,CC(/C=C1\SC(=S)N(CC(=O)O)C1=O)=C\c1ccccc1,1,38.411764705882355,6.316238235294118,3.4411764705882355,8.437908496732026,155.53230447890994,152.85170291176473,1.9874435224422644,6.426844117647058,6.000504316953119,7.888007470588235,260.08479945559066,31.6,6.357857142857142,4.0,7.485714285714286,142.05591154757,122.09342282857145,2.1203148487428574,6.5351285714285705,3.455202821869489,7.819515714285712,295.5430186469618,32.25,6.305325000000001,3.75,6.121031746031746,148.0752954980035,124.2919675178571,1.9537483289177853,6.457017857142857,3.697322653341172,7.822360375000001,260.2987214446662,25.323529411764707,6.2159264705882356,3.0294117647058822,4.568627450980393,149.5994981698482,94.40693444117646,1.7437491257264117,6.352491176470587,3.3431826434277414,7.789559882352941,227.20780439022911,22.98611111111111,6.002013888888889,2.7916666666666665,4.125,154.35039035960844,85.03373233333332,1.592260496537986,6.131815277777777,2.9915123456790123,7.658325888888888,200.99141551765288,29.566666666666666,6.331833333333333,2.7333333333333334,4.766666666666667,148.3817552829108,110.64030833333332,1.700988764489933,6.4822999999999995,4.553086419753086,7.957722333333334,224.74280400584072,18.714285714285715,5.981222222222223,2.6507936507936507,2.915343915343916,157.3399657219881,66.9689804126984,1.477673168465698,6.089253968253969,2.85626102292769,7.621685460317461,182.32559394702952,20.884615384615383,5.9515,2.5961538461538463,3.8589743589743586,152.10256703013408,74.59190588461539,1.6011065250152305,6.093288461538462,2.8923314339981014,7.620638423076922,195.36869307948552,21.3125,6.087791666666667,2.625,3.75,159.31091865214162,79.03920287499999,1.427475405313271,6.187333333333332,3.449074074074075,7.727673958333334,185.39577948051138,14.57439446366782,0.13223953287197224,0.02414970633890584,0.6306228373702423,4.036139946174548,1.6318394960242348,64.60612466868511,0.38615358738389005,0.12231392733564007,2.407869005748026,0.08814420415224909,52.590271493854736,0.19703410776075075,-0.007779869006426129,-0.015716287804134584,0.15257043994068212,0.7379030043389903,-0.06697383691052934,1.0378157993821069,0.02056301102351653,-0.006732750865051933,-0.18686809509569982,-0.006628256253089469,1.4916406803688966,3.6892609985170535,0.02752407006920413,0.0031225027910347573,-0.025580820563519544,-0.07979073982534206,0.03982088979503045,15.712280504634206,0.04969166585162769,0.025545684008897666,0.40149270189799463,0.023207048999011357,2.7812245918124225,-0.4524221453287199,-0.0006195934256055388,0.002474669262699355,-0.0523356401384083,-0.5530565167243369,-0.025317974877588127,-2.4024376872837343,-0.010761985778201578,-0.0033644031141868355,-0.34804366554174315,0.0034553788927335644,-7.196928893724909,0.5767493271818531,0.0005201485005767276,-0.006521221833882715,-0.07915224913494809,0.26088256653423897,0.08972936469617514,3.046103351331217,0.009006847849115172,0.0032930171088043168,-0.08201469282944357,-0.0017958054594386676,5.745014910328839,-0.7900807381776243,0.03724674163783157,0.006060681384829915,-0.10023068050749712,0.030308855568371144,-0.62743189769987,-3.958885506430215,-0.1618558921798323,0.03615112168396769,0.6359783274239251,0.03487352329873124,-14.627396756149261,-0.6145438567583893,-0.019531409622672555,-0.0021261111220658366,-0.020445433075190863,-0.6088134600245326,0.20032745243726063,-2.751672262989511,0.02937099701050063,-0.01914137831603226,-0.19511929681095386,-0.01177141890481681,0.20348424954751285,-3.444303965930264,0.002956281607665731,-1.3568893332756921e-05,0.022657705616183136,0.8369118386419424,-0.36979785733648673,-14.992156012576524,-0.0892576077898511,0.0008198961937716453,0.048757408667058806,-0.004746036731434638,-8.377881906538855,1.8189878892733564,0.004787305363321808,0.003003315034988001,-0.047902249134948095,0.05100602332436244,0.14341490791489217,8.947071313545264,0.04698848815373611,0.0091165260957324,0.17591316967358228,-0.004692650230680503,12.421912616464487,,,0.5031746031746032,1.1666666666666667,0.5714285714285714,0.0,0.5952380952380952,-0.023809523809523808,0.8139092703535188,0.02118949103744463,0.029379967227920818,0.8307806746631091,0.2387999450831779,0.23592549542095348,1.644689945016628,0.47472544050413135,1.988826069654908,1.4578698377680657,0.10382412024508032,0.24649108451635676,0.0,0.5309562318868425,9.383343684588246,1306.0,214.7521,117.0,286.8888888888889,5288.098352282937,5196.957899000001,67.57307976303699,218.5127,204.01714677640604,268.192254,8842.883181490082,1106.0,222.52499999999998,140.0,262.0,4971.95690416495,4273.269799000001,74.211019706,228.72949999999997,120.9320987654321,273.6830499999999,10344.005652643664,1806.0,353.0982,210.0,342.77777777777777,8292.216547888196,6960.350180999998,109.40990641939598,361.59299999999996,207.05006858710564,438.052181,14576.72840090131,1722.0,422.683,206.0,310.6666666666667,10172.765875549678,6419.671541999999,118.574940549396,431.96939999999995,227.3364197530864,529.690072,15450.13069853558,1655.0,432.14500000000004,201.0,297.0,11113.228105891807,6122.428727999999,114.64275575073499,441.49069999999995,215.38888888888889,551.399464,14471.381917271008,1774.0,379.90999999999997,164.0,286.0,8902.905316974648,6638.4185,102.05932586939599,388.938,273.18518518518516,477.46334,13484.568240350443,1179.0,376.817,167.0,183.66666666666669,9912.41784048525,4219.045765999999,93.09340961333898,383.62300000000005,179.94444444444446,480.16618400000004,11486.51241866286,1086.0,309.478,135.0,200.66666666666666,7909.333485566973,3878.779106,83.25753930079199,316.851,150.40123456790127,396.273198,10159.172040133248,1023.0,292.214,126.0,180.0,7646.9240953027975,3793.8817379999996,68.518819455037,296.99199999999996,165.5555555555556,370.92835,8898.997415064547,495.5294117647059,4.496144117647056,0.8210900155227986,21.44117647058824,137.22875816993462,55.482542864823984,2196.608238735294,13.129221971052262,4.158673529411763,81.86754619543288,2.996902941176469,1788.069230791061,6.896193771626276,-0.2722954152249145,-0.5500700731447105,5.339965397923875,25.82660515186466,-2.344084291868527,36.32355297837374,0.7197053858230786,-0.23564628027681767,-6.540383328349494,-0.23198896885813142,52.20742381291138,206.598615916955,1.5413479238754313,0.1748601562979464,-1.4325259515570945,-4.468281430219156,2.229969828521705,879.8877082595155,2.7827332876911504,1.4305583044982693,22.4835913062877,1.299594743944636,155.74857714149567,-30.764705882352953,-0.042132352941176635,0.16827750986355614,-3.5588235294117645,-37.6078431372549,-1.7216222916759927,-163.36576273529394,-0.7318150329177073,-0.22877941176470482,-23.666969256838534,0.23496576470588237,-489.39116477329384,41.52595155709343,0.03745069204152439,-0.4695279720395555,-5.698961937716263,18.783544790465207,6.4605142581246096,219.31944129584764,0.6484930451362924,0.2370972318339108,-5.905057883719937,-0.12929799307958406,413.64107354367644,-47.40484429065746,2.2348044982698942,0.3636408830897949,-6.013840830449827,1.8185313341022686,-37.6459138619922,-237.5331303858129,-9.711353530789937,2.1690673010380612,38.158699645435505,2.092411397923874,-877.6438053689557,-38.71626297577853,-1.230478806228371,-0.1339450006901477,-1.2880622837370244,-38.35524798154555,12.62062950354742,-173.3553525683392,1.8503728116615397,-1.2059068339100323,-12.292515699090092,-0.7415993910034591,12.81950772149331,-179.1038062283737,0.153726643598618,-0.0007055824533033599,1.1782006920415231,43.51941560938101,-19.22948858149731,-779.5921126539793,-4.641395605072257,0.04263460207612556,2.535385250687058,-0.2467939100346012,-435.64985914002045,87.31141868512111,0.22979065743944677,0.14415912167942405,-2.2993079584775087,2.448289119569397,6.883915579914824,429.4594230501727,2.2554474313793333,0.43759325259515514,8.44383214433195,-0.22524721107266416,596.2518055902954,0.7335910911907768,0.6147129609630834,0.4531470113903073,0.33642505855970484,0.3068732786157281,0.20454659265325958,0.1870413345438986,0.11381718376579496,0.12264941963514418,0.06819699208226539,0.08616744563914691,0.03851302381680344,0.0514362522580152,0.023284772660022206,0.033124773372347475,0.012029116689875113,16.00654261452241,5.685219178389401,3.5551356686039344,2.1839447782660013,0.4592150289766722,-0.3740342323672289,3.18882836753889,0.97254283677763,6.023262770670698,0.6506738010697809,14.543340781338712,10.301855719775117,32.06373898675945,11.696247686161488,2.9454357132301747,0.7414885175437043,3.5012000217479424,2.234524141049033,7.009371206880039,0.6279241305850558,3.7141051911858214,2.430827773154462,24.44451147623857,14.700683044445395,0.32255843471015483,0.6507625012281564,0.7686604687869127,0.8751766199557924,0.900949345530118,0.900949345530118,1.787562475987341,650.14239307736,0.0,2.0,2.0,0.0,8.0,0.0,2.0,0.0,0.0,3.337175375650748,1.5562532171542136,0.9165076311391225,0.33852279424491005,0.19867316182833772,0.19867316182833772,-39.90121711331574,1001.8894899342014,64.63575110177347,29.467337939241215,59.40079632356154,,12.0,403.0,12.514061693864424,9.589074368143644,10.227713814910476,4.905136513890047,27.798350702007856,0.0,6.076020106833881,43.331592648832554,0.0,17.324400837887403,10.566666666666666,24.5,12.0,0.0,12.5,0.0031746031746031633,0.0,-0.5,0.20445194471231098,0.07776292335115853,-0.12668902136115245,0.025180375180375192,0.12478066914498132,0.0,0.6421568627450982,0.8539682539682538,0.4377049180327872,0.5643939393939397,0.8287878787878786,17.092094677423894,0.4449793117863372,0.6169793117863371,17.44639416792529,5.014798846746736,4.954435403840023,34.538488845349185,9.969234250586759,0.5892193308550187,0.22082018927444796,0.0,0.3217665615141956,0.13333333333333333,0.5375829934643033,-1.0146133279950285,-0.07399647056160877,-0.02984156847044201,-0.06341333299968928,0.4624170065356968,0.872747954505068,0.047764477447549296,0.025669057485443174,0.048485997472503775,-2.1638736651411294,0.6317053317053316,0.708325985767637,1.620239045598434,0.857495590828924,0.5885896633372344,0.9929893509624155,0.6316324807579452,0.7134341406301611,0.6922801519513283,0.6602407825920015,0.7269866925645511,0.7928576041594582,0.5642774470899471,0.5209493582876757,0.7530260789112001,1.2092886537330978,0.9020174761179001,0.990459640276216,0.5733835172500265,0.7407688187859378,0.517397765811517,0.4552635656693526,0.44113387013399974,0.8309707013818781,0.880920584045584,0.8658541730855657,0.7212678628724799,1.0298353909465017,1.0322323299676133,0.954437426681674,0.888935666113111,0.9240767617560877,0.8861718138348694,1.0418721592435134,0.8331099532164088,1.0618525905359566,1.0442535216840771,0.8288013727230763,1.0116861814493254,1.218449931412894,0.9309104511970535,0.9199002719933956,1.0328083181711847,1.035620951233337,0.8284262138639136,0.8807555477964956,0.8425909206595961,0.9261129424048956,1.2342355175688509,0.7149648489653556,0.6544352790322101,1.0773662551440326,0.9316155458182512,1.3722697549686422,1.2212723522650315,1.5581963937094303,0.6872762383933224,0.8200370632017346,0.6414641924457308,1.2304353179497822,0.9656339031339031,0.9903888389394598,0.8007763902857257,1.0260631001371738,1.1323925645701225,0.8537214720876973,0.9743669619155786,0.8498153256669881,1.0225541912689045,0.8837459535687482,0.9397183273283013,1.0099915311250485,1.435003698224852,0.7125220720801642,0.7075672236751955,0.8435422602089268,0.6720950510719991,1.2175858053868933,1.417456417028179,1.3844449971512904,0.7569286717282862,0.6867900134526463,0.7769863452926631,1.2083078902643485,0.8643533357075023,0.9747630158913947,0.893792248853117,1.1062242798353907,1.042612283292056,0.9017790807029415,0.8572487817014736,0.8423411120542449,0.9489782251693664,0.9037287785664972,1.0338404444735596,0.7845675727759102,5.0,0.06601367207427813,2.000000000000001,2.076388888888889,1.0761111111111115,0.7158333333333333,0.27841269841269844,0.3038548752834467,0.14891975308641975,0.10906635802469139,4325.428646433385,4682.379399053336,2044.3965210739912,1908.2958263728624,14.39455847267109,0.4705867256716356,7.620670333527902,0.8888835027203301,1.0,0.13333333333333333,1.750287465599591,3.5312096240961255,4.170955210111217,4.748940047005429,4.888789679422001,4.888789679422001,0.22727272727272724,0.008251709009284767,0.0666666666666667,0.07415674603174603,0.0413888888888889,0.027532051282051277,0.015467372134038797,0.01787381619314392,0.00875998547567175,0.009915123456790126,0.4972850864110095,17.355371900826448,8.022222222222222,5.0,131.68984682622576,1.0,3.9517759512795507,100.72255989306571,,73.6527502847146,78.20557399475366,78.47189325263831,73.65542014779038,92.71713499443659,78.46610289425936,78.45342276472496,88.1002843271134,0.013519196852530144,-0.0588316431362338,-0.6507858763820747,0.24193611601018997,0.18282393925373538,-0.04104192665620755,0.016063737063695772,0.053250861044245736,-0.05504484249431937,-0.07760725132871071,-0.07519786827549843,0.028363433730194707,0.2531330552163885,0.2081379862090981,0.12929775406851715,-0.04056437389770726,-0.01976907165990805,0.02440245495469921,0.24320109873808946,0.12868368306061417,0.20885343611605311,0.16674192032023244,0.26328502505878265,0.052884773415505446,-0.031042260208926885,-0.004685387282828641,0.10247202297083814,-0.0829903978052126,-0.13702610020956374,-0.015514990867221983,-0.03718591232029441,-0.02786970296226376,-0.027506296195973008,-0.14454426910720597,0.03920143049638502,-0.13684905381342027,0.039572781470929616,0.003933381261111302,-0.2700331731726629,-0.12551440329218103,0.06463665036726572,0.05498663619479066,0.04714883251320718,0.023324522012432118,0.026922666784854277,-0.0340611107305503,-0.020373494510618324,0.10924102019515441,-0.054210193099082,0.28166117067195046,0.25096294339057823,-0.15893918609967989,0.007509366863529564,-0.3844936338583092,-0.06127724773358995,-0.4191490056492086,0.295560141608125,0.2641249693840188,0.3956417059310576,-0.2781388332984457,-0.04216599586969955,-0.1476972067164053,-0.0880387981629662,-0.03242101596011061,-0.15084052291139355,0.12276173785800165,-0.04259150780364418,0.07606040179370857,-0.15649385751065492,-0.08103401652879298,-0.1335472821841395,0.0038692374800021775,-0.23632569946672513,0.022355505524417243,-0.0005618657693943492,0.03592909148464705,0.20735451441300176,-0.22661411139848692,-0.2320547175590504,-0.23114535435123823,0.00670321206776215,0.02024919484850127,-0.053844002303735566,-0.15930478524945102,0.12480709876543208,0.03620177158336335,0.1243623832456123,-0.07596021947873799,0.0126373277449673,0.08788542516853158,0.13848642616203768,0.12168341739895079,0.07453383514304023,0.07305761619658097,-0.05323833002763308,0.23620172065314415,8.787032431966724,12.239642496741686,4.671139580770372,21.540832128347184,38.983177941915855,45.3306666768983,47.45204089796722,47.59300932744313,47.59300932744313,41.76534746275307,30.61526659312938,2.180306525146687,5.176312774843492,0.0,11.150080869623693,5375.993072711398,5067.208297126001,763.3592222732823,38.0,30.0,36.0,46.0,50.0,42.0,44.0,43.0,38.0,319.03368527600037,22.0,4.653960350157523,5.4680601411351315,6.333279628139691,7.172424577124845,8.041412909393047,8.892748769118258,9.763938087586043,10.62261919381804,11.495708093019807,0.8137254901960784,0.9947058823529414,1.1017168830001918,0.7821090470989828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7577370376893273,0.9846597462514417,1.0170515402082174,0.6999515032147604,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,2.0,0.0,5.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,5.106527394840706,10.865290491471546,0.0,0.0,5.907179729351506,14.48898409899412,0.0,0.0,0.0,60.387613841579736,24.13631332829077,0.0,4.905136513890047,285.3713044308062,-538.5987511192519,-39.28038941738627,-15.841139738801527,-33.662421944953245,245.47008731749048,463.29073881494946,25.355361684387198,13.626198200439688,25.7383743786083,0.5,0.7564250123641273,0.25427725464478795,111.60814046258096,0.17124832952885635,65.80129514852617,0.2435749876358727,6.0,0.18181818181818182,0.34403936111490596,0.6941003274685864,0.8198497640694563,0.9334594070152045,0.9609484790301662,0.9609484790301662,2.918700000000001,,2.142857142857143,0.9936302817170015,0.5708511525529669,2.141014320644145,-2.9167887491303084,0.9606028151774789,1.0284596020881418,-1.20115031207457,87.71380000000002,14.69560176298435,0.0,4.899909730850478,0.0,6.923737199690624,6.544756405912575,52.44954798479824,0.0,0.0,3.8066624897703196,0.0,5.10594547390058,2.3978952727983707,6.57507584059962,4.844187086458591,8.12355783506165,6.985641817639208,9.717459133810847,27.666666666666668,9.736673189951023,0.0,0.0,0.0,0.0,0.0,1.0345042044595618,0.0,33.82000000000001,0.0,22.820907990533783,5.039990615979072,0.0,0.0,3.6784660808767953,0.0,0.1957671280939688,37.45837402200652,0.0,0.0,0.0,32.748212634466086,9.589074368143644,0.0,12.487188691387619,46.88609649310124,0.0,6.076020106833881,0.0,26.591707601365414,25.76305928143713,25.85925221536693,201.44511978613156,,147.3762781137035,156.3165165341057,156.889419728843,147.3843060978292,186.449127616364,156.8407198061209,156.80889699591773,176.54375445767673,25.85925221536693,201.44511978613156,,145.8456658688055,155.41751770779027,156.37293535272374,145.85501015451194,188.35105873800353,155.97160297334125,155.87838592736182,177.40171896630147,4.6511924937870806,152.69262844373864,,112.02096090955823,119.38166911447061,119.69261408990899,112.02148682273966,139.44540511012903,119.67103425618228,119.59674676754153,132.6918515439962,1.2313929626365205,9.59262475172055,,7.017918005414453,7.443643644481223,7.470924748992523,7.018300290372819,8.878529886493524,7.468605705053376,7.467090333138939,8.406845450365559,2.4141531243466634,100.72255989306571,,73.6527502847146,78.20557399475366,78.47189325263831,73.65542014779038,92.71713499443659,78.46610289425936,78.45342276472496,88.1002843271134,33.47843137254902,0.0,1.8856580687830689,0.0,0.0,0.0,8.778816685951842,34.579752367079394,-0.39935135146038836,0.0,0.0,1.1274128138909882,0.0,1.1011545729402872,0.0,0.0,0.0,23.798351109301855,401.5417063165959,59.509773830386095,120.06112721926827,141.81247714378136,161.4639615981846,166.21884910034805,166.21884910034805,410.0,115.44415174949239,129.29968543170082,68.55642495003917,115.00000000000001,57.61000000000001,1.0,7.771225234672709,5.459431618637297,3.5901810217863495,4.5126010712194,,4.501698017932702,4.517821914889372,4.517672833258215,4.501676759926103,4.4801249935742655,4.516851550568022,4.515604724779954,4.501305239137253,0.17096100103744521,0.2148857652961619,,0.2143665722825096,0.2151343768994939,0.21512727777420068,0.2143655599964811,0.21333928540829836,0.2150881690746677,0.21502879641809305,0.21434786853034535,2.020139969854242,2.248811066191705,,2.2463920076502073,2.2499673451965054,2.2499343460890238,2.246387285419461,2.241588291118462,2.2497525362543134,2.2494764594579295,2.246304752589983,226.37999999999985,253.0070145061964,108.95499542760481,,109.09579614595944,108.15399263866726,108.25948433088526,109.09773564203763,110.77667719844578,108.22101378998225,108.28716790409727,109.38798979357908,12.047953071723638,5.188333115600229,,5.195037911712355,5.150190125650822,5.155213539565965,5.195130268668459,5.275079866592656,5.1533816090467734,5.156531804957013,5.208951894932337,6.275354558393492,5.432872255712356,,5.434163704708326,5.425493414049108,5.4264683228399155,5.4341814824679355,5.4494536022865985,5.426112904761688,5.426724005142801,5.4368384461823,0.2788528806584363,24.371998787963868,8.778816685951842,1.93452735260771,-1.433045125202412,9.736673189951023,3.6784660808767953,1.4863067173226805,0.0,285.6771382290034,151.48690040907604,-285.91051063803815,-20.85165658674039,-8.409132665824652,-17.869406914877384,130.30568278419256,245.9339005766244,13.459675484821537,7.23335001695954,13.662994476479131,1021.0,28.0,1.6319493505706195,0.9643288138529732,0.0,0.0,0.27101750986171386,0.16699770408390693,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.06846531968814577,0.37030802399075413,0.23181917640966615,0.4763921659786418,0.26827907331218726,15.405412915006313,12.908972180224751,9.96923425058676,7.401351288313506,9.206198358471843,6.136397779597788,6.7334880435803495,4.0974186155686185,5.641873303216633,3.1370616357842076,4.308372281957346,1.925651190840172,2.1603225948366385,0.9779604517209326,1.4574900283832888,0.529281134354505,2.9146206671049724,1.697672873009858,4.6746765641330095,2.444753085284061,6.750042012524166,2.858020950563941,69.928509578494,43.24737143006547,30.606694331436177,25.976881953296477,25.498643290325546,25.498643290325546,104.0,118.0,43.024308999999995,20.177691,0.4117647058823529,64.06,8.027777777777779,4.666666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,6.0,6.0,34.0,0.0,0.0,35.0,6.0,5.0,8.0,27.0,11.0,22.0,24.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,4.0,1.0,1.0,21.0,6.0,0.0,1.0,3.0,0.0,2.0,4.0,2.0,0.0,0.0,0.0,1.0,3.4339872044851463,6.415914955127227,3.9415818076696905,4.353498551059343,4.821289122365337,5.237438806241952,5.233445456509227,5.586780383982889,5.903316160331277,6.119747817398232 +3324,CC(=O)OCC(CCn1cnc2cnc(N)nc21)COC(C)=O,0,24.38095238095238,6.5615357142857125,3.119047619047619,9.0,168.72766264239837,96.2822656904762,1.3360728855269288,6.584223809523808,5.4563492063492065,8.03888295238095,204.80861292009848,25.86046511627907,6.657162790697675,3.627906976744186,8.023255813953488,152.77589891725344,98.22177395348842,1.6073125086046516,6.765534883720932,3.554909560723515,8.041677023255811,245.09467129930653,21.5,6.62479054054054,3.2837837837837838,6.135135135135135,163.63746518191405,80.31619059459457,1.3222337596937703,6.674644594594595,3.763888888888888,8.085620108108111,196.3043728097609,17.511363636363637,6.526452272727273,2.8863636363636362,3.9318181818181817,164.6197377067488,62.368551329545454,1.2244359958237503,6.572848863636364,3.224116161616161,8.048705863636366,175.5933164227977,15.135416666666666,6.322404166666666,2.625,3.2916666666666665,165.63701336142378,52.731649812499995,1.1627666587456666,6.367466666666664,2.8486689814814823,7.8782574166666635,159.30958347250592,14.806122448979592,6.163611224489797,2.6020408163265305,3.1020408163265305,166.75942626078088,52.47529231632652,1.1340413349716836,6.211707142857143,2.7488662131519277,7.733615142857143,154.92391707285253,15.789473684210526,6.395747368421051,2.473684210526316,3.6315789473684212,162.69864901270253,54.76784489473686,1.1589082986488526,6.447502105263156,3.519298245614035,7.935209136842105,159.51882495923763,13.45631067961165,6.2607572815533965,2.2233009708737863,3.9029126213592233,173.62888880735395,47.168961009708724,0.9540762125880001,6.269598058252428,3.047464940668824,7.871347106796117,130.4237313091405,18.661971830985916,6.355098591549295,2.676056338028169,5.28169014084507,164.82946132877655,69.09476971830983,1.1824223659497601,6.409452112676054,4.06885758998435,7.879398197183098,173.1728526896549,7.997732426303854,0.17388123582766435,0.03217670213612159,0.5742630385487529,4.807256235827665,1.4828378064354941,37.746286342970514,0.20047478663662868,0.15920589569160992,1.9481607457797931,0.10822236054421767,45.04067009223026,0.35553446184675497,-0.01175028344671205,-0.020862378584404873,0.16272477983441427,1.7398091019353474,-0.653406435476115,1.64610592945473,-0.04538693622624989,-0.006125054052628853,-0.13857541293864656,-0.011172358329378268,-3.6632531184090436,1.1264631978917699,0.03161152479009618,0.006441396028563651,-0.013452227737942076,0.36648893791750947,0.19869947812161146,5.2494884334130045,0.011630199925465596,0.028511929276214976,0.4085709859519383,0.018838696083838934,3.559278841461368,-1.6140744176458461,-0.04647509405277262,-0.0038735166004142934,-0.007163471449185757,-1.2526025561739849,-0.12116458553515193,-7.456820374085241,-0.005802148920430356,-0.04290714028035456,-0.37309460821365587,-0.029061619202226344,-4.296291422115515,-1.2839427437641726,-0.02162290249433105,0.0010916488767737838,-0.031356292517006806,-0.706065759637188,0.012968843206800954,-6.01065284545068,-0.003207448137660928,-0.021792998866213133,-0.25722985953640715,-0.01111650935374149,-4.246276491835312,0.4604794298671849,0.0020455863297700245,0.0006244186640710197,-0.11094914156138647,-0.41512795594428253,0.1439457730532833,2.2110603081470677,0.013733979847266358,0.002747505668934253,-0.02774178454450558,8.45510204081698e-05,3.67345345539654,-1.9977324263038547,-0.012860935075784686,-0.0022350316493910806,0.03125074591240007,-0.4954767872061103,-0.44045829856676905,-9.637376425677285,-0.07230840610855399,-0.014209504714166361,-0.2575592420203949,-0.0038363615467239503,-16.364910398109245,1.2704136670849568,0.010525490940712858,0.002677546838323119,0.059810008145653105,0.7798912445236993,0.3140325673325171,6.126942032434008,0.05134276209478968,0.010716619333817672,-0.07567140484385045,0.00432118823063206,10.985635947561484,1.8661173389543604,0.016144082750471075,-0.006166266302267512,-0.1041087796620996,0.6494842068282711,-0.26827863585193884,8.754593594319886,-0.014467605853474745,0.02071308485835646,0.5070706425501864,0.006023730669732676,5.0320674662976,,,0.4492753623188407,1.1956521739130435,0.5,0.021739130434782608,0.6956521739130435,-0.1956521739130435,0.8029738011587016,0.020078959312693177,0.027557220182258393,0.8681537188366178,0.24306169751660633,0.23312949805648725,1.6711275199953195,0.4761911955730936,1.99403875245141,1.2358868873344455,0.44047481955255746,0.31767704556440707,0.0,0.7581518651169645,7.646278668761917,1024.0,275.58449999999993,131.0,378.0,7086.561830980731,4043.855159,56.11506119213101,276.53739999999993,229.16666666666666,337.63308399999994,8601.961742644136,1112.0,286.25800000000004,156.0,345.0,6569.363653441898,4223.536280000002,69.11443787000002,290.91800000000006,152.86111111111114,345.79211199999986,10539.07086587018,1591.0,490.23449999999997,243.0,454.0,12109.17242346164,5943.398103999998,97.845298217339,493.9237,278.5277777777777,598.3358880000002,14526.523587922307,1541.0,574.3278,254.0,346.0,14486.536918193893,5488.432517,107.75036763249003,578.4107,283.7222222222222,708.2861160000002,15452.211845206199,1453.0,606.9508,252.0,316.0,15901.153282696683,5062.238382,111.625599239584,611.2767999999998,273.4722222222223,756.3127119999997,15293.72001336057,1451.0,604.0339000000001,255.0,304.0,16342.423773556528,5142.578646999998,111.13605082722499,608.7473,269.3888888888889,757.8942840000001,15182.543873139548,1500.0,607.5959999999999,235.0,345.0,15456.37165620674,5202.945265000002,110.096288371641,612.5126999999998,334.3333333333333,753.844868,15154.288371127575,1386.0,644.8579999999998,229.0,402.0,17883.775547157456,4858.4029839999985,98.26984989656401,645.7686000000001,313.88888888888886,810.7487520000001,13433.64432484147,1325.0,451.21199999999993,190.0,375.0,11702.891754343134,4905.728649999998,83.95198798243297,455.07109999999983,288.88888888888886,559.437272,12295.272540965498,335.90476190476187,7.303011904761902,1.3514214897171066,24.119047619047624,201.90476190476193,62.279187870290755,1585.3440264047615,8.419941038738404,6.6866476190476165,81.82275132275132,4.545339142857142,1891.708143873671,15.287981859410463,-0.5052621882086181,-0.8970822791294095,6.997165532879814,74.81179138321994,-28.096476725472947,70.78255496655339,-1.9516382577287452,-0.26337732426304067,-5.9587427563618025,-0.4804114081632655,-157.51988409158886,83.35827664399096,2.3392528344671173,0.47666330611371016,-0.9954648526077137,27.1201814058957,14.703761380999248,388.46214407256235,0.8606347944844541,2.1098827664399082,30.234252960443435,1.394063510204081,263.3866342681412,-142.03854875283446,-4.089808276643991,-0.3408694608364578,-0.6303854875283467,-110.22902494331066,-10.66248352709337,-656.2001929195012,-0.5105891049978714,-3.7758283446712015,-32.83232552280172,-2.5574224897959184,-378.07364514616535,-123.25850340136057,-2.075798639455781,0.10479829217028323,-3.0102040816326534,-67.78231292517005,1.2450089478528916,-577.0226731632653,-0.3079150212154491,-2.0921278911564607,-24.694066515495084,-1.067184897959183,-407.64254321618995,45.12698412698412,0.2004674603174624,0.06119302907895993,-10.873015873015873,-40.68253968253969,14.106685759221762,216.68391019841263,1.3459300250321031,0.2692555555555568,-2.718694885361547,0.00828600000000064,359.9984386288609,-189.7845804988662,-1.2217888321995451,-0.21232800669215265,2.9688208616780063,-47.07029478458048,-41.84353836384306,-915.5507604393421,-6.86929858031263,-1.3499029478458042,-24.468127991937514,-0.36445434693877526,-1554.6664878203783,130.85260770975054,1.0841255668934244,0.27578732434728126,6.16043083900227,80.32879818594103,32.34535443524926,631.0750293407028,5.288304495763337,1.1038117913832202,-7.794154698916596,0.44508238775510217,1131.5205025988328,132.49433106575958,1.1462298752834463,-0.4378049074609934,-7.391723356009071,46.11337868480725,-19.047783145487656,621.5761451967119,-1.027200015596707,1.4706290249433085,36.00201562106324,0.42768487755102,357.2767901071296,0.7312881077121481,0.5678119889286948,0.4563498957575481,0.298116683946116,0.3145424483493101,0.16046513910142493,0.1911965795995105,0.08648003780112827,0.11836642581585392,0.04432934518917855,0.08193998391474455,0.025570950009094328,0.05530268297570518,0.014133770914658643,0.03425799719868736,0.007499414465565394,8.031117750239613,5.763636073111824,3.5578373182772656,2.249154957706891,0.43562937743380054,-0.49615911309649025,3.2412165048888455,0.9714655262697012,6.03031204424062,0.9950307722672789,14.565371211036998,11.040449358567283,16.016120943966097,11.786185746626767,1.931742557232339,0.7403498417147291,3.5040403582873907,2.2945069155697384,7.0093604172943245,1.220319319887977,3.7169182157484033,2.4876333158665602,20.79898059892371,14.699769408622656,0.30894230826462415,0.6323486895965094,0.7928474698955373,0.7928474698955373,0.7928474698955373,0.7928474698955373,1.789021926474108,681.5324964048717,0.0,4.0,5.0,0.0,1.0,1.0,0.0,1.0,0.0,3.6576960033017003,1.8418630103878875,0.940708928674451,0.940708928674451,0.940708928674451,0.940708928674451,243.35278022097594,1510.133912554922,71.2782613486965,35.955569346545765,75.75861013541454,,11.0,424.0,0.0,9.589074368143644,37.01861983207743,24.129455967222572,0.0,13.847474399381248,12.524163646377618,4.567099647791355,14.951935562841626,15.207393384762284,10.333333333333336,27.5,11.5,0.5,16.0,0.0,0.05072463768115932,-4.5,0.20236910684671844,0.015440115440115365,-0.18692899140660307,0.049623188405796936,0.22581102362204686,0.0,0.6396825396825397,0.9202898550724633,0.4373134328358213,0.6242424242424244,0.8706666666666664,18.46839742665014,0.4618160641919431,0.633816064191943,19.96753553324221,5.590419042881946,5.361978455299207,38.43593295989235,10.952397498181153,0.4881889763779531,0.19999999999999998,0.0,0.329032258064516,0.5,0.2751536873585637,-0.7678391482589725,-0.07509883347877097,-0.01828188448235649,-0.07678391482589725,0.7248463126414362,2.022743655228487,0.056616565220960716,0.04816056321972588,0.06321073922589023,-2.478493994611843,0.7536396964282183,0.802479991359623,1.7052702699220834,0.9092495236346102,0.4250219394471259,1.8005977690453152,0.7612223652553395,1.4299081397109992,0.7591305331588575,0.6703767142600422,0.8476711965095577,1.129768810282121,0.788431328975701,0.776641709285775,0.9256350802608312,1.228982684560177,0.9000764915859255,0.9888739274874765,0.7909845565272648,0.9746268450831979,0.7692120615640551,0.4818034635560259,0.7920831309402282,0.8998139287122031,1.1595548624893677,1.2991365456907642,1.1473744673546635,0.946535941846899,1.242625696826758,1.1211689287921078,1.1541094398180898,1.038039309730973,1.2907483745470394,1.121663821685444,1.3296902039347203,1.0627276537152863,1.118868726963425,1.0624842897499889,0.9173460738463137,0.9827554294175713,1.076673054245283,0.9790955606264659,1.1185552201631945,1.0248140082655615,1.076010355748058,0.8839999474603124,1.0467776570226484,1.0888951204170272,0.9004921219976508,0.8326716844764681,0.8806586211264533,1.3096178254124944,1.0018615229110512,0.8625204281489663,0.9026975306764021,0.9361902786425413,0.8388059786525528,0.7399071837341746,0.8198640780348496,0.9362548053270792,1.1923179084655218,1.0309685046861996,0.9412915098742949,0.7962695485010649,1.0217428003972193,1.3119406457936171,1.1984424155545341,1.403013595316387,1.0423371246269264,1.2756374957245034,1.022098100768533,1.3633161707094084,0.9012176524508576,1.0214922281652548,0.9054456560194718,0.7756831098630425,0.908868382487635,0.5896915368088952,0.894879825143116,0.6249740872359387,1.0219777875447753,0.9409497857134115,1.0379328809534742,0.7076666744124314,0.7185973795708758,0.8086866027800196,1.2234780396423055,1.3766806167707129,0.8437250863672602,1.1946012053554647,0.7219522253821117,1.0892101945218258,0.774510301699787,0.7816191012673736,0.8400135273068191,0.8927728467812137,5.5,0.14059789817365576,2.4444444444444455,0.9791666666666667,1.0933333333333335,0.6702777777777779,0.33478458049886617,0.3976048752834467,0.26303854875283444,0.23001543209876546,4585.264510065472,5133.754759364614,2270.976712248153,2079.837040875772,11.749609587983834,0.46703892176673467,6.2620845948317765,0.8763096234249248,1.0,0.5,1.7346214194770604,3.5504544123908732,4.45160849410431,4.45160849410431,4.45160849410431,4.45160849410431,0.22916666666666666,0.011716491514471314,0.07638888888888892,0.033764367816091954,0.04205128205128206,0.02482510288065843,0.013391383219954645,0.016566869803476946,0.010116867259724403,0.011500771604938275,0.4694886917061536,19.32638888888889,9.474609375,6.428049671292914,132.36564788736482,1.0,4.035549699942777,119.5418380728125,,94.9000441829142,92.56092371700645,94.52512925211516,94.93186062929699,152.56687047908883,94.08351460762067,95.02329183022286,127.1051629771711,0.0444544081866796,-0.06757648915238841,-0.6483690744983077,0.28336279528914776,0.3619131197893812,-0.44064592407904674,0.0436097451944775,-0.22639722923619393,-0.038472532854520666,-0.07113140598835892,-0.10323521195800794,-0.0813321185254962,0.14084782258867892,0.1817995175823728,0.2001881983216837,-0.023425202102398637,0.07623661397246305,0.13399946862648002,0.1390729775563899,0.05801327997692776,0.17908840091854428,0.209721393286979,0.17407397130412608,0.07902366537116333,-0.20181650643090962,-0.2672806748327612,-0.1203826477936619,-0.012474199048730181,-0.2605649656946827,-0.08171128697238458,-0.19755109963218734,-0.028942038137429536,-0.2695072320906251,-0.19151120307801742,-0.26853617917853767,-0.09538693392700316,-0.1605383470371421,-0.12435443302094859,0.03392668621400756,-0.05460266535044422,-0.14687499999999992,0.008745962067136653,-0.1592382569992887,-0.0159992595152357,-0.13688562707770133,-0.1320372870121892,-0.10271915432115794,-0.0942764946245286,0.05757624853173478,0.011764273011019016,0.019405924865433827,-0.19320265124806088,-0.08635444743935311,0.09707452320716452,0.058576896494052934,0.06850726756058323,0.017257562334602947,-0.014239987436663671,0.0007812712639327785,0.08155858800222932,-0.24978735469237312,-0.07396390423939306,-0.06946117846185464,0.054418870473320544,-0.10306852035749747,-0.29703740803962947,-0.25531985684923025,-0.3606857865853069,-0.0892523775733212,-0.1322063605779621,-0.03544888068816872,-0.3633362994955147,0.15884673296979474,0.06053264396593541,0.08321383673801994,0.1041508927630129,0.16223209379007136,0.2117780960059289,0.16231906833862686,0.2561058323401596,0.06731295526000067,-0.03884248515312392,0.039928792986053015,0.24390480703475503,0.23333080421856336,0.09284545669132269,-0.19163761022436349,-0.1812911029851369,0.13510496943927713,-0.18092244120537898,0.23193258046033588,-0.07216671031902909,0.13010249883257324,0.26028172657139775,0.05566068453359498,0.11172274870674397,4.742127064679826,10.47781535522566,3.2343382519366064,17.156300053735144,34.92817163416795,37.308172630454685,37.308172630454685,37.308172630454685,37.308172630454685,45.86289130638243,28.425398408692246,10.130920849708822,7.306572047981362,0.0,17.437492897690184,3639.8550087567396,3299.920637831244,1340.1988020612716,54.0,32.0,37.0,46.0,56.0,56.0,58.0,66.0,55.0,321.1437040880005,24.0,4.727387818712341,5.5254529391317835,6.375024819828097,7.205635176410364,8.061802274538348,8.90910013492555,9.7705845338719,10.627963812132798,11.49399745508471,0.6746031746031745,1.010952380952381,1.148487790860685,0.6369895056515654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6381104505275166,0.9940242763772176,1.025543647903444,0.6141994853304644,2.0,3.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,1.0,0.0,4.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,19.77449303255364,5.516700717616262,5.647177220767728,5.948339280986494,0.0,9.589074368143644,9.967957041894417,4.9839785209472085,0.0,0.0,6.4208216229260096,26.310136851455216,25.737927575403454,148.90040672701684,-415.5189144447015,-40.64000361783804,-9.893307486778609,-41.55189144447015,392.2531869479928,1094.6149981102205,30.63825773085846,26.062261859767155,34.20671869094439,0.45454545454545453,0.7174302121843645,0.16679049297172985,38.956068722603554,0.10826956313203882,39.49249728894071,0.2825697878156353,6.0,0.2916666666666667,0.3216838482374018,0.6584283034586749,0.8255464478592052,0.8255464478592052,0.8255464478592052,0.8255464478592052,0.5409999999999998,,1.7142857142857144,2.071195905072126,1.8187846708014441,1.7095632088057127,-6.9200861482657,1.8408047735618118,1.6952941664361783,-3.1926010534492466,81.10840000000002,19.06280027574374,0.0,19.51903521063298,5.917906046161393,26.813052428219834,18.94743140618802,12.524163646377618,0.0,0.0,3.8918202981106265,0.0,5.176149732573829,2.3978952727983707,6.621405651764134,4.727387818712341,8.150467911624004,6.823286122355687,9.734417801417921,28.333333333333332,3.2052378674916557,12.24564248745616,0.0,0.0,0.0,1.2842078714201735,0.17650557879003093,1.8352258125472412,42.46,0.0,21.91105221544796,0.0,0.0,0.0,0.0,0.0,-0.7381106797376629,48.23648721614877,5.733667477162185,5.948339280986494,0.0,44.67140971556251,25.607556681656316,5.917906046161393,20.268296022307258,12.524163646377618,0.0,11.16387793838399,0.0,26.75355923736575,26.800638922155695,28.27306869435552,239.083676145625,,189.65102004284708,184.9417434422675,188.89210331546496,189.71506358826304,306.03992827948764,188.00695923493166,189.8991667764078,254.56197001154226,28.27306869435552,239.0836761456249,,188.087806026953,183.07153294567328,187.28342218351247,188.1560631716448,312.05382710644324,186.33453372188453,188.35259899240722,257.40292700779156,4.710614863423423,174.24289052852671,,141.1458801603509,137.84886283326276,139.94286379188253,141.18860603282107,219.06527665160678,139.96264419109323,141.32291858586933,185.29767574312214,1.229263856276327,10.39494244111413,,8.245696523602048,8.040945367055109,8.21270014415065,8.248481025576654,13.306083838238592,8.174215618910072,8.256485512017731,11.067911739632272,2.4181127755174256,119.5418380728125,,94.9000441829142,92.56092371700645,94.52512925211516,94.93186062929699,152.56687047908883,94.08351460762067,95.02329183022286,127.1051629771711,41.74901960784314,0.0,2.678494755671884,0.0,0.0,5.591594074115719,0.0,43.07283321194465,1.5642948475686573,0.0,10.024156851012009,0.0,-0.11163501511715768,0.0,0.0,0.0,0.0,25.796378383879507,388.2399375345936,72.85409961803654,149.11908532041667,186.967556752381,186.967556752381,186.967556752381,186.967556752381,507.0,119.6969489646359,152.913656140416,70.52283060935693,122.22,122.22,0.8333333333333334,7.963988643427733,5.584962500721156,3.5367150720185276,4.721291143285161,,4.72930702571794,4.729966547020803,4.724793195406349,4.729285364553294,4.699416578070128,4.729345329584513,4.729290970633668,4.71493444652329,0.1537702205225447,0.20527352796892007,,0.20562204459643219,0.20565071943568708,0.20542579110462386,0.20562110280666496,0.20432245991609252,0.20562370998193535,0.20562134654928993,0.20499714984883868,2.0961074735151133,2.384991432431504,,2.386687808515155,2.3868272529024774,2.3857329147549877,2.386683228306229,2.3803474916205576,2.38669590773799,2.3866844137024614,2.383644135747478,233.97999999999973,578.0979813107384,124.52236579743582,,123.59953173525307,123.52574120658548,123.98450229514296,123.60165917737118,126.29956544004182,123.59120299602321,123.60167071587708,124.95976825825282,25.134694839597323,5.41401590423634,,5.373892684141437,5.370684400286325,5.390630534571433,5.373985181624834,5.491285453914862,5.373530565044487,5.373985683299003,5.433033402532732,7.192652495079604,5.657394467664967,,5.6499558794017855,5.649358688107005,5.653065699238521,5.649973091633735,5.671565711589207,5.649888492254431,5.649973184986085,5.660900954497334,11.85938266355925,34.15669470290412,0.0,6.875801945535892,-0.6732401160647896,0.0,3.826197807023024,3.621829663709173,0.0,278.51329129437084,80.57799019999575,-224.85955379168914,-21.992484004758452,-5.353798899802123,-22.48595537916891,212.2692217473817,592.3548399179098,16.580003274995203,14.103686664712137,18.51108874743468,1328.0,29.0,1.7787119575757582,0.6343626541718788,0.0,0.0,0.13608276348795434,0.03332235901055121,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.2721655269759087,0.06442278240695852,0.4352839364706287,0.0779529489556382,16.81962647737941,13.05967574535998,10.952397498181154,7.154800414706784,10.065358347177924,5.134884451245598,7.0742734451818885,3.199761398641746,5.444855587529281,2.0391498787022133,4.588639099225695,1.4319732005092825,3.0969502466394903,0.791491171220884,1.9869638375238667,0.43496603900279285,2.744178253488455,0.9472205236997002,3.670927497583736,1.0533133886323904,5.428257034671399,1.261810397373277,77.3470338241608,36.68813774512757,30.217717449732476,30.217717449732476,30.217717449732476,30.217717449732476,112.0,125.0,44.75706699999998,28.828932999999996,0.21428571428571427,70.09,8.527777777777777,5.138888888888887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,42.0,0.0,0.0,43.0,10.0,2.0,6.0,37.0,12.0,24.0,31.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,9.0,1.0,2.0,23.0,9.0,0.0,5.0,4.0,0.0,2.0,7.0,0.0,0.0,0.0,2.0,2.0,3.4657359027997265,6.125478001256551,4.0118683403978626,4.473066345354754,5.047850793022399,5.525950823135099,5.782237383983307,6.085406603958752,6.424254724646344,6.091230339887153 +25195495,Cc1nc(C(=O)N2CCCC[C@H]2CNC(=O)c2cccc3occc23)c(-c2ccc(F)cc2)s1,0,28.20689655172414,6.318074137931035,3.586206896551724,8.524904214559387,160.95921930688928,112.42289234740986,1.6803788054547584,6.3956448275862074,5.150442268577645,7.805180293103446,239.8342311177899,28.080645161290324,6.361758064516129,4.290322580645161,7.827956989247311,144.37105592385495,108.05771967476132,1.9695345391935486,6.523177419354839,3.153126244524094,7.7695357419354805,284.31624184425823,24.824074074074073,6.303664814814815,3.8796296296296298,6.401234567901234,151.5135372250244,94.25376705250375,1.723324862266593,6.431753703703705,3.0852480566986724,7.76699096296296,242.64907939597177,19.950704225352112,6.195766197183097,3.3028169014084505,4.892018779342724,158.3158604266244,73.52578420085634,1.4816483699403307,6.294016197183099,2.99378368979308,7.725364211267604,202.54496674581145,20.163265306122447,6.250039455782313,3.122448979591837,4.5396825396825395,157.93406976476456,73.92302472575784,1.4181862990542862,6.3454687074829925,3.131708238851095,7.791642448979591,195.0638087441212,19.34931506849315,6.315547945205481,3.0205479452054793,4.3561643835616435,160.6045238688133,70.56893715640548,1.3737493401142327,6.3924821917808226,3.435629122272958,7.853529904109589,188.34623194615853,19.28472222222222,6.29392986111111,3.0625,3.6712962962962967,159.68336197244707,69.62545146824444,1.4279504038939927,6.382045138888889,3.1015946502057616,7.846149430555554,193.12948790256294,18.081632653061224,6.141733333333332,2.979591836734694,3.9523809523809526,155.78668453111845,64.46754567546124,1.44618496122949,6.2463945578231295,3.1313932980599652,7.695070530612244,191.33411320187318,15.484276729559749,5.934899371069182,2.7169811320754715,3.488469601677149,157.22054744033878,54.89653232864402,1.3419087909976162,6.031723899371068,2.887122447394985,7.497675911949686,173.72610085423992,9.627824019024972,0.14970240784780017,0.01786232520920008,0.6135552913198572,4.196591359492667,1.951601478061991,44.62913253299005,0.28203047444850887,0.1370211652794292,1.9876775639425923,0.08971625475624254,50.754906144528164,0.566836715124083,-0.0017395046219937352,-0.009078495584139907,0.19957040389705047,1.205892882257425,-0.14706049716406938,2.6387520196355387,0.004992384958134112,8.256300103607204e-06,-0.02702111896715092,-0.002763985012082395,1.2484737432431956,0.8983573347425896,0.006790296494473099,-6.564320477069673e-05,0.019586471132250025,0.48777787564285124,-0.10431544626759684,4.067528592131357,0.005726041632786143,0.0073309100717840565,0.10436493028049881,0.004132667338265728,0.8588915924169285,-0.05084490294920543,-0.0016695642343956662,0.0015071680572777007,-0.038276029542295364,0.13663404658363715,0.17650313022010977,-0.09185340569607783,0.011398154104016343,-0.0012585135067240522,0.039937240345983796,-0.0028347603414781205,3.015744120367927,-0.13873183042539272,-0.015573918521035015,-0.0025017460161106462,-0.08599254208223123,-0.40208045168126705,-0.28518711336812164,-0.8238066160621845,-0.029283803601848804,-0.012255624580390999,-0.22504276687064878,-0.009349530735599833,-3.5904492817308005,-0.3333034710797648,-0.00035695437590600563,0.0034490223196770795,-0.04128320818334337,-0.5968432883227726,-0.05171883222578561,-1.4818126501775857,0.003556333239564294,-0.001278298014431584,-0.06953961152526139,-0.00022141477041357489,-0.9132382188752848,-1.6476994979521735,-0.0351397402232791,-0.0018769441705442716,-0.07117023384859292,-1.3431962977642729,0.07764586357568595,-7.517395449814925,-0.005266645217017778,-0.03316992006870123,-0.3969259504375022,-0.018447547021568242,-3.7578357829187357,-2.2790086308007154,-0.0010506367945513533,-0.0018691785053160672,-0.11156139031117797,-0.2723074696915363,-0.2655326135097054,-10.456450172260922,-0.06386038721826752,-0.004113025471782044,0.09165654423357629,-2.9774226099472274e-05,-11.162544970041402,-0.44651844539669,0.029906700805420242,0.002283234069792919,-0.0032755255423687225,0.5329924859011972,-0.17570999557477343,-2.061252351796791,-0.042991120595436486,0.024818934482010734,0.33517634091128046,0.017699579444581563,-7.230883893893832,,,0.4799719887955182,1.2794117647058822,0.6323529411764706,0.014705882352941176,0.6470588235294118,-0.014705882352941176,0.9444991168999143,0.01194626975076814,0.02459332857429755,1.0154952397110086,0.24484766005762382,0.2406829396731697,1.9599943566109228,0.4855305997307935,2.0645881317102988,1.6020001112740283,0.1853733096709414,0.16543312552619382,0.05182936466948895,0.4625880204362703,8.22676277324139,1636.0,366.4483,208.0,494.44444444444446,9335.634719799578,6520.527756149771,97.46197071637599,370.9474,298.7256515775034,452.7004569999999,13910.385404831814,1741.0,394.42900000000003,266.0,485.3333333333333,8951.005467279007,6699.578619835202,122.11114143000002,404.437,195.49382716049385,481.7112159999998,17627.60699434401,2681.0,680.7958,419.0,691.3333333333333,16363.462020302635,10179.406841670405,186.11908512479206,694.6294000000001,333.20679012345664,838.8350239999996,26206.10057476495,2833.0,879.7987999999998,469.0,694.6666666666667,22480.852180580663,10440.6613565216,210.39406853152695,893.7503,425.1172839506174,1097.0017179999998,28761.385277905225,2964.0,918.7558,459.0,667.3333333333333,23216.30825542039,10866.684634686402,208.47338596098007,932.7838999999999,460.361111111111,1145.37144,28674.379885385813,2825.0,922.0700000000002,441.0,636.0,23448.26048484674,10303.0648248352,200.56740365667798,933.3024000000001,501.60185185185185,1146.615366,27498.549864139146,2777.0,906.3258999999998,441.0,528.6666666666667,22994.40412403238,10026.0650114272,205.62485816073496,919.0145,446.6296296296297,1129.8455179999999,27810.646257969063,2658.0,902.8347999999999,438.0,581.0,22900.642626074412,9476.729214292802,212.58918930073503,918.22,460.3148148148149,1131.175368,28126.114640675358,2462.0,943.649,432.0,554.6666666666666,24998.067043013867,8728.5486402544,213.363497768621,959.0440999999997,459.0524691358026,1192.13047,27622.450035824146,558.4137931034484,8.68273965517241,1.0360148621336045,35.586206896551715,243.4022988505747,113.19288572759548,2588.4896869134227,16.357767518013514,7.9472275862068935,115.28529870867035,5.203542775862067,2943.7845563826336,35.14387633769314,-0.10784928656361158,-0.5628667262166742,12.373365041617129,74.76535869996036,-9.117750824172301,163.6026252174034,0.3095278674043149,0.0005118906064236466,-1.675309375963357,-0.17136707074910848,77.40537208107813,97.02259215219968,0.7333520214030947,-0.0070894661152352476,2.1153388822830026,52.680010569427935,-11.26606819690046,439.2930879501865,0.6184124963409035,0.7917382877526781,11.271412470293871,0.4463280725326986,92.76029198102827,-7.2199762187871706,-0.2370781212841846,0.2140178641334335,-5.4351961950059415,19.402034614876474,25.063444491255588,-13.043183608843053,1.6185378827703207,-0.17870891795481542,5.671088129129699,-0.4025359684898931,428.23566509224565,-20.39357907253273,-2.289366022592147,-0.367756664368265,-12.64090368608799,-59.10582639714625,-41.92250566511388,-121.09957256114113,-4.304719129471774,-1.8015768133174768,-33.08128672998537,-1.3743810181331755,-527.7960444144277,-48.66230677764567,-0.052115338882276825,0.5035572586728536,-6.027348394768132,-87.1391200951248,-7.5509495049646995,-216.34464692592752,0.5192246529763869,-0.18663151010701126,-10.152783282688162,-0.032326556480381935,-133.33277995579158,-237.26872770511298,-5.06012259215219,-0.2702799605583751,-10.24851367419738,-193.4202668780553,11.181004354898777,-1082.5049447733493,-0.7583969112505601,-4.776468489892977,-57.15733686300031,-2.656446771105827,-541.1283527402979,-335.01426872770514,-0.15444360879904895,-0.2747692402814619,-16.399524375743162,-40.029198044655836,-39.0332941859267,-1537.0981753223555,-9.387476921085325,-0.6046147443519605,13.473512002335715,-0.004376811236622424,-1640.8941105960862,-70.99643281807371,4.755165428061819,0.3630342170970742,-0.5208085612366269,84.74580525829036,-27.937889296388974,-327.73912393568975,-6.835588174674401,3.946210582639707,53.29303820489359,2.8142331316884683,-1149.7105391291193,0.695768390930393,0.5744387648418037,0.4344221155486048,0.3188024061408634,0.2777032553462646,0.17809008691845307,0.1755064382694371,0.0971575694444892,0.11166742688054095,0.05453345483277329,0.0739406544106525,0.0312891716442881,0.04693609023893237,0.016832030683755585,0.029555769866770137,0.00947464659682134,16.004505189547807,5.67453668241138,4.107726564203121,2.173647282262452,0.4357651856653609,-0.5341657412736888,3.2521623820647005,0.977262642246721,7.004062341213403,0.6531496971873179,17.42477359875711,10.311401401462387,32.0622466556702,11.68605148408898,2.9364582073325716,0.5458538609114603,3.9886802004686652,2.2234382366041645,8.001921605395284,0.6049246400850934,4.009964271728166,2.419453944404445,24.44072157874018,13.304118677783785,0.2729802455511582,0.6083979154252195,0.7896670673924635,0.8997191392785265,0.9052900174662161,0.9052900174662161,1.1938997198474637,1345.0965686640106,0.0,4.0,3.0,0.0,12.0,4.0,3.0,0.0,0.0,4.168281167125915,2.0921046366571403,0.9700803880429394,0.28887737072695696,0.25439461210626746,0.25439461210626746,76.44857020463598,1904.7880318326922,73.77170837571124,32.841172962632626,68.99058028553695,,16.0,932.0,0.0,13.979489415818463,23.673421128896866,29.92991244001285,40.09691146549388,23.469520014857956,36.5949983379471,17.89001399900271,10.30076712495354,4.417150937053347,16.31904761904762,43.5,21.5,0.5,22.0,0.0,0.020028011204481774,-0.5,0.17395625895259076,0.0688945102738211,-0.10506174867876966,0.01553021208483385,0.145014444628922,0.0,0.6186371100164196,0.8435574229691871,0.4446808510638289,0.5497425997425985,0.8280272108843533,32.112969974597085,0.40617317152611676,0.8361731715261167,34.52683815017429,8.32482044195921,8.18321994888777,66.63980812477138,16.50804039084698,0.568985555371078,0.08899912459877442,0.0,0.36154070615698863,0.2692307692307692,0.4464122774426737,-1.1920890875633212,-0.06824154406996263,-0.020553260130402092,-0.05676614702682481,0.5535877225573265,1.4782879334100867,0.03518113160430063,0.025487722989829077,0.03995372793000233,-7.216165104659423,0.6939442923902519,0.6177428107964492,1.5092252130977684,0.7233683420855216,0.4517831355033696,1.0699631953602466,0.6921818551104376,0.924201129992449,0.602641992136784,0.5125557698199125,0.6424224242035403,0.8857569536143212,0.7839914989090607,0.6958663542663726,1.084887367356968,1.0826604220499572,0.7438594443045236,1.0369589474306873,0.7814240461151495,0.9411384597811566,0.6877151946865587,0.5347759998948722,0.6884395003931542,0.9158111259896499,1.0124818007712817,0.9115961987958004,1.0243559401496796,1.1618285293154278,0.9345219408631618,0.9024268843547075,1.0026796684030372,0.9606483487222295,0.9117852813755352,0.811918765662138,0.916178888223218,0.9117085240317863,1.0235259720783456,1.073090719861479,1.3396847441505395,1.2040321942730583,1.0904513581027424,1.078629734527626,1.0190702040456001,1.0907670642309224,1.0566889985331103,1.2119004615098492,1.0995282859839441,1.0261611642508146,1.0186509970714672,0.9914635872274703,1.1348068214253473,1.102570484230647,1.174287187356066,0.8961679945385145,1.0102641426994827,0.9198097240435982,0.9977988553900028,1.1672659688957492,1.0284337618481918,0.9512434333793611,1.237657465728047,1.2272614508623163,1.268263696126906,1.1790616925064603,1.3512342326743063,0.887399397425626,1.218881360535548,1.022470823913321,1.2304425896445053,1.3560236952677267,1.2288065383218363,1.0135911056964475,1.3151683793191227,0.8490117465162316,0.9412189731668358,1.2040321942730583,0.9849552117787046,1.0677863043973017,1.2960009966134265,1.2939584401277824,0.8798988133403293,0.8772653590928975,0.8546025369045096,1.20926083637762,0.949167639540384,0.495252453025687,0.5372920821263286,0.8915368582711718,0.7131777281982925,0.9564495327594532,0.9560978428272061,1.1082041156029612,0.5422020174264703,0.48754628875210465,0.4700543949190804,1.1700303367204519,6.0,0.21885521885521886,4.444444444444445,2.534722222222222,1.9827777777777782,1.309722222222222,0.8376870748299319,0.55296910430839,0.31191735953640715,0.32875771604938275,7535.772146915733,8310.071899339851,3403.7317534639324,3159.46935068132,15.588182051491835,0.47783774701905085,8.13956025988417,0.9151135385431327,1.0,0.2692307692307692,1.6896998280016566,3.7658763584704316,4.8879006070846325,5.569103624400615,5.603586383021304,5.603586383021304,0.15789473684210525,0.006436918201624084,0.08230452674897125,0.046085858585858584,0.036718106995884785,0.025186965811965816,0.017095654588365955,0.011520189673091458,0.0069314968785868245,0.00821894290123457,0.3983933972276886,25.641274238227147,11.588477366255145,5.796932067202338,199.95851991166046,0.0,4.470844347165137,220.0065369124178,,177.93269001738037,176.33226498866148,174.1533607060128,177.87446923042222,234.0272754681821,178.15185769683902,179.63774820185742,216.15483448133622,0.05887485209575814,-0.011619750456934929,-0.5082482531145488,0.32526881720430134,0.28735056119526664,-0.07535375373362888,0.05912622248897538,0.01770157983067743,6.025565529799732e-05,-0.01359431703477805,-0.03080807396153677,0.024598089880967938,0.09330844986025907,0.04535863245016523,-0.0036749529527593016,0.0319229112833765,0.11623192106600998,-0.05345120273796152,0.09114065995176182,0.020302918129620647,0.053502026908281125,0.05250596584361963,0.04606375232107172,0.016922336334760903,-0.005281037838740491,-0.01115255431357579,0.08437692403570318,-0.06238399388579537,0.03255833958542846,0.09044014989954999,-0.0020581490269428694,0.04041461876169462,-0.009184811004617774,0.020092413915850413,-0.031596953630979294,0.05941778538177932,-0.014409468863499477,-0.10403251854752227,-0.14005713068207434,-0.14015451141696994,-0.09581119943254976,-0.14612978959788575,-0.01845894305593377,-0.1038320545292535,-0.08944329553319687,-0.11321895007169706,-0.10421222732716988,-0.07074093037443009,-0.03461877475337559,-0.002384426416633959,0.19308921315018068,-0.06728522884145695,-0.14222096868514877,-0.0265007138020536,-0.03320281094601656,0.012609748100869093,-0.00932920116264325,-0.03498535818220355,-0.0024679448670160706,-0.01799310230768184,-0.1711393451621314,-0.23473062810723166,-0.10507837857400236,-0.11599644702842377,-0.3200684037834587,0.03978571672982695,-0.16844144224085095,-0.018674028852081817,-0.24207880586227204,-0.19969332935981465,-0.20562101117227752,-0.07403886773463897,-0.23671066549381267,-0.007018168977078293,-0.10464362749108036,-0.18182776986763702,-0.06488777352018758,-0.13605882988641138,-0.23429651393137585,-0.22643080448360092,-0.030017446307614545,0.046112380547161776,-0.0003318710325165525,-0.21993036374168973,-0.04637791930080477,0.19977434722242987,0.1278240118826707,-0.005338598800643597,0.12700604853879113,-0.09003374795004748,-0.04618625177787411,-0.15243430937561858,0.1811321224089514,0.16862711890073986,0.1972839759380394,-0.14246669816122567,15.759045717526172,30.321198915153218,12.24968371714512,18.552882361850795,38.491869002827336,46.359318658751306,47.94231612779202,47.97707474848168,47.97707474848168,70.19599647815016,54.46800378331696,6.302692528812008,5.62472626789059,1.7621983987626244,15.72799269483319,11008.58073379871,9239.76781865981,2577.310980962857,165.0,54.0,74.0,99.0,120.0,125.0,139.0,154.0,157.0,477.1522408480006,38.0,5.220355825078324,6.089044875446846,6.980075940561763,7.865187954187467,8.759511722116487,9.65046452256919,10.546156895606837,11.439892299620066,12.336412074253893,0.7183908045977011,0.9934482758620691,1.1198478083054686,0.6855129969941346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7080944868882924,0.9810682893847195,1.0115340181329584,0.6681695010422737,9.0,1.0,0.0,1.0,1.0,2.0,6.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,5.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14.633849271910154,17.094168977536597,0.0,0.0,11.814359458703011,9.589074368143644,9.374393568622029,0.0,11.336785877934737,18.19910120538483,62.081488902473694,24.517577855437906,21.711385377890117,318.4272320565508,-850.32076333598,-48.67690045163195,-14.660702816137588,-40.49146492076095,394.8758022611868,1054.4672684967122,25.09480792407929,18.180470146495036,28.499115364776,0.5,0.7925698846323398,0.17388026221005407,130.90741908799504,0.10253348838914217,22.348501462848557,0.20743011536766032,8.0,0.13157894736842105,0.2884440610864186,0.642862508704404,0.8344002159020638,0.9506865298867933,0.9565729878062318,0.9565729878062318,5.428520000000004,,2.136904761904762,1.7797998529764454,1.4619540122545964,2.1684449480930534,-6.375494984391982,1.6306398116654264,1.5511294841526908,-2.544038109033603,129.4677,18.396640352871813,0.0,15.200676855804016,0.0,32.22804289761661,13.08951281182515,76.87632356777607,0.0,10.440598685398296,4.343805421853684,0.0,5.680172609017068,3.044522437723423,7.207118856207756,5.351858133476067,8.821879862683842,7.4127640174265625,10.483941845626783,41.666666666666664,14.84173497480873,4.525871202143748,0.0,5.397206046795177,1.4246653760306078,1.4238981372495605,2.894099201963501,0.0,57.620000000000005,0.0,26.528438309265432,0.0,0.0,0.0,0.0,0.0,-0.3462624708739701,64.95117288171718,5.316788604006331,4.39041504767482,0.0,40.829601351473805,0.0,12.740958040736519,45.116542420319895,59.21125048038528,0.0,21.409843041505333,0.0,39.75975382565981,41.069480239520956,45.00917079686824,440.01307382483577,,356.14576240241024,352.55983586832434,348.22072411718705,356.0265098042907,470.3613714588587,356.2077954047565,359.1842534928823,433.0579154653294,45.00917079686824,440.0130738248358,,354.2901532971539,350.9366038738881,346.9229470940147,354.1429151247305,474.4866917428769,354.7115784348885,357.7531385300899,434.853707071706,4.854928409894735,328.6086072382863,,272.92533715919524,268.13746112210254,263.8032421353029,272.88320059096526,362.93932505764235,271.27592868484084,273.93395316230396,334.710707344078,1.32379914108436,12.94156099484811,,10.474875364776771,10.369406937303657,10.241786003446677,10.471367935420314,13.83415798408408,10.476699864845779,10.564242749790656,12.736997513686159,2.4629605941445254,220.0065369124178,,177.93269001738037,176.33226498866148,174.1533607060128,177.87446923042222,234.0272754681821,178.15185769683902,179.63774820185742,216.15483448133622,56.90196078431373,0.0,1.85996644865245,0.0,13.422133620270532,0.0,0.0,58.66897305171158,3.6556717248934056,3.010703662318922,0.0,0.0,-0.12793821386579407,1.823145313681028,0.0,0.0,0.0,38.75383106045187,565.3425036171071,98.00259002409608,218.42082879128503,283.49823521090866,323.0080102152357,325.00801021523563,325.00801021523563,1159.0,150.8871021094409,147.96053070063044,86.3460631840152,103.67999999999999,75.44,1.0,8.783866069118245,6.247927513443585,4.799153968846885,5.749964001358575,,5.760822314679993,5.759858587821224,5.757927406647781,5.761090859946214,5.761591884552056,5.760669349062762,5.761192075296759,5.769269673820048,0.14115158731902602,0.1691165882752522,,0.16943595043176451,0.16940760552415365,0.1693508060778759,0.16944384882194746,0.16945858483976634,0.1694314514430224,0.16944682574402234,0.1696844021711779,2.792215077510728,2.9729690257784855,,2.97485565910553,2.97468835530306,2.974353016342522,2.974902273806092,2.9749892369929243,2.974829106012978,2.9749198424339616,2.976320931136294,341.2600000000012,373.60648701485013,235.49462356778614,,233.28893516182578,233.52422433288726,233.89539279693457,233.2528592453091,233.44882280034977,233.42775653232565,233.35251734963538,232.5014101618948,10.988426088672062,6.926312457876063,,6.861439269465464,6.868359539202566,6.87927625873337,6.860378213097327,6.866141847069111,6.865522250950754,6.863309333812805,6.838276769467494,7.1469785013561715,6.685463514957203,,6.676053182014389,6.67706124781631,6.678649407698607,6.675898529560864,6.6767383104063,6.676648066993068,6.676325691830484,6.672671721843584,18.81933966706571,33.615875749270515,4.548859730447379,2.3647425243015947,-0.6695846482712648,13.146799964050746,4.260437642378942,2.8221973280591053,0.0,407.80627767991615,227.135110835336,-606.5363806309292,-34.72138079333152,-10.45752380398154,-28.882684791949007,281.6661079315554,752.1547022074412,17.90020263786656,12.96818452081795,20.328505465065973,3624.0,55.0,2.1859164367547885,1.1495077522363715,0.0,0.0,0.5685951414716575,0.21232241972896182,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.10248601056013436,0.593418919464003,0.28996660127604795,0.8778111349662062,0.3319263708743542,23.656125291633362,19.530918004621324,16.508040390846983,12.114491433352809,14.99597578869829,9.616864693596465,12.987476431938346,7.189660138892201,11.055075261173554,5.3988120284445555,8.872878529278301,3.7547005973145717,5.867011279866546,2.104003835469448,4.108252011481049,1.3169758769581663,5.438659055818949,2.445273404416168,9.024605761157545,3.569115453630671,14.010365999072985,4.669481280171509,106.06126023893643,54.665801162818035,31.903886682866908,26.408176623925844,26.27514279650765,26.27514279650765,184.0,220.0,68.58603199999999,34.541968000000004,0.5172413793103449,322.08,9.833333333333334,7.388888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,20.0,21.0,58.0,0.0,0.0,62.0,21.0,2.0,11.0,51.0,23.0,38.0,39.0,0.0,0.0,0.0,26.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,5.0,1.0,3.0,34.0,8.0,0.0,3.0,3.0,0.0,5.0,5.0,1.0,0.0,1.0,2.0,4.0,3.9415818076696905,7.225074844450622,4.553876891600541,5.171903441692378,5.7698822763607245,6.212230273636227,6.46946831628797,6.791791875852378,7.100185080109115,7.122642969267973 +17747460,O=c1c2ccccc2c(Cc2ccc(Cl)cc2)nn1C[C@H]1CCCN1CCCCc1ccc(OCCCN2CCCCCC2)cc1,0,21.74736842105263,5.801247368421056,3.0210526315789474,5.153736192332683,161.99965355115899,86.62642687368417,1.4887572667115896,5.909228421052634,2.5848510737291335,7.398636431578949,210.0028615849261,22.99,6.125749000000001,3.74,5.181111111111111,144.8461040147611,86.43640448000004,1.8315459119000004,6.288660999999991,2.4749279835390947,7.565452139999996,257.94811584377544,18.167567567567566,6.0184702702702735,3.27027027027027,3.717117117117117,153.969754155607,66.11441551351353,1.5268242713474707,6.141876216216213,2.280447113780447,7.532250270270268,206.787990188488,14.370229007633588,5.842778244274809,2.7480916030534353,2.7010178117048347,160.07992411896365,50.65763417175574,1.299516052214088,5.943403435114505,2.1354608425219115,7.4315560000000005,168.54613221540598,12.278571428571428,5.762185357142855,2.517857142857143,2.2718253968253967,161.72487520096203,41.86797926428572,1.194633061289743,5.850725714285714,2.057403733098177,7.3747063357142855,150.14917938461997,12.237226277372264,5.702350364963502,2.5,2.3231954582319547,163.14195256631422,42.64518083211679,1.168712457005697,5.783139051094892,2.0330156799134906,7.318621481751829,148.1313634731016,13.181467181467182,5.815648648648648,2.61003861003861,2.4174174174174174,161.4116270996099,45.80597748648647,1.2294129963541776,5.905405405405404,2.176279454057232,7.4267598532818555,158.39894032780958,13.78968253968254,5.832163095238095,2.6865079365079363,2.388888888888889,160.26734250956272,48.41263458333334,1.266129596181702,5.924777380952382,2.2131915866483776,7.432311396825398,164.06022890713226,13.955465587044534,5.789607692307694,2.6558704453441297,2.147098515519568,158.08143321931678,48.885352785425106,1.3160765045835954,5.895776923076923,2.1652629912863826,7.389614615384614,168.58761353300412,8.635346260387815,0.07101932409972295,0.008957703349670406,0.4946260387811636,2.988879997264116,1.4265956982394699,41.057247681551246,0.2440798310618998,0.07573229916897502,0.550103613183079,0.042493393240997226,53.08000480543016,0.5070747922437667,0.009112939058171971,-0.0022701342785435784,0.13105817174515236,0.9635995348996276,-0.14994675597106474,2.3682726864487536,-0.008316134595831247,0.009129332409972555,0.03521452269158685,0.0034301114958448626,0.21000923941609798,-0.21378153777045772,-0.0018319386089688998,-0.00129470326331867,-0.028509395822415254,0.11147298729939556,-0.09625378124429143,-1.0440845580235087,-0.011300397058836367,-0.0019829392827728945,0.02538626916190384,-0.0007913097701579765,-2.753909265906222,-0.07644710410014609,-0.00032625459389728833,2.053304492375567e-05,-0.015638493582288398,0.10303405419192073,0.03822566760796063,-0.3542668729132396,0.0003801089990024218,-0.0006426487069420606,0.054843099770468744,-0.0005309713044765418,0.04856868762882884,-0.40940641076375167,-0.000853801543331993,0.00011654294684757193,-0.007971903442817565,0.11022656543893847,-0.08152135531450429,-1.9664902739572596,-0.014495475111916794,-0.001683915710328439,0.011308792717360025,-0.0006277058349821932,-3.1113865944471706,0.900535414602584,0.005291432719331922,0.00036109349046902953,0.043368582809309095,0.3168541271791907,0.03708782911726246,4.293318113723436,0.01776159407220193,0.006623839901328383,0.02783792959379126,0.0019950769472471025,4.908566997998694,-0.10244644327746835,-0.006329488700413847,-0.00031756645772414984,0.01823720039786521,-0.10065593360145543,0.0320452879943422,-0.4186962814293204,0.008878097865803316,-0.00580515834393946,-0.050155924227376456,-0.004513747477940942,1.688546573038389,0.08867211889372556,-0.007021366706239211,-1.5533656115652293e-05,-0.028544167436134197,-0.3598207235654656,0.050410570912179875,0.4562272382064809,0.011214306790746744,-0.005591576529041841,-0.04663261413895674,-0.0033318934080816087,1.3697277539181882,-0.24433837630513547,-0.007665840187513271,-0.000278967043745162,-0.062322608139782666,-0.5389169580120642,-0.00899149605675071,-1.167537806844236,-0.0018160628901686972,-0.006852439803963299,-0.051627766214248666,-0.0028282624504581294,-2.0683432383911105,,,0.4887163561076604,1.125,0.5,0.03260869565217391,0.625,-0.125,1.1513392019771007,0.006410595352053567,0.017627986656401393,0.8722054664433783,0.20009423151896524,0.2916302505718746,2.0235446684204788,0.4917244820908398,2.075453266599606,1.7620710186500104,0.19147454577860054,0.08361759218411775,0.03829010998687678,0.313382247949595,6.740572678821067,2066.0,551.1185000000004,287.0,489.60493827160496,15389.967087360104,8229.510552999996,141.43194033760102,561.3767000000003,245.56085200426767,702.8704610000002,19950.27185056798,2299.0,612.5749000000001,374.0,518.1111111111111,14484.61040147611,8643.640448000004,183.15459119000005,628.8660999999992,247.49279835390948,756.5452139999996,25794.811584377545,3361.0,1113.4170000000006,605.0,687.6666666666666,28484.404518787298,12231.166870000003,282.46249019928206,1136.2470999999994,421.8827160493827,1393.4662999999996,38255.77818487028,3765.0,1530.8079,720.0,707.6666666666666,41940.940119168474,13272.300153000004,340.4732056800911,1557.1717000000003,559.4907407407408,1947.0676720000001,44159.08664043636,3438.0,1613.4118999999996,705.0,636.1111111111111,45282.96505626937,11723.034194000002,334.497257161128,1638.2032,576.0730452674896,2064.917774,42041.77022769359,3353.0,1562.4439999999995,685.0,636.5555555555555,44700.895003170095,11684.779548,320.227213219561,1584.5801000000004,557.0462962962964,2005.302286000001,40587.99359162984,3414.0,1506.253,676.0,626.1111111111111,41805.61141879896,11863.748168999995,318.417966055732,1529.4999999999998,563.656378600823,1923.5308020000007,41025.325544902684,3475.0,1469.7051,677.0,602.0,40387.3703124098,12199.983915000003,319.06465823778893,1493.0439000000003,557.7242798353911,1872.9424720000002,41343.17768459733,3447.0,1430.0331000000003,656.0,530.3333333333334,39046.11400517124,12074.682138000002,325.07089663214805,1456.2569,534.8199588477365,1825.2348099999997,41641.140542652014,820.3578947368424,6.74683578947368,0.8509818182186887,46.989473684210544,283.94359974009103,135.52659133274963,3900.4385297473686,23.18758395088048,7.194568421052627,52.25984325239251,4.036872357894737,5042.600456515865,50.70747922437667,0.9112939058171972,-0.22701342785435785,13.105817174515236,96.35995348996276,-14.994675597106475,236.82726864487535,-0.8316134595831247,0.9129332409972555,3.521452269158685,0.34301114958448625,21.0009239416098,-39.54958448753468,-0.3389086426592465,-0.23952010371395394,-5.274238227146822,20.622502650388178,-17.806949530193915,-193.1556432343491,-2.0905734558847278,-0.36684376731298546,4.696459794952211,-0.14639230747922566,-509.4732141926511,-20.029141274238274,-0.08547870360108954,0.005379657770023985,-4.09728531855956,26.99492219828323,10.015124913285685,-92.81792070326878,0.09958855773863451,-0.16837396121881987,14.36889213986281,-0.13911448177285396,12.724996158753157,-114.63379501385047,-0.23906443213295803,0.03263202511732014,-2.232132963988918,30.86343832290277,-22.8259794880612,-550.6172767080327,-4.058733031336702,-0.47149639889196293,3.166461960860807,-0.17575763379501408,-871.1882464452077,246.746703601108,1.4498525650969465,0.09893961638851409,11.882991689750693,86.81803084709826,10.162065178129915,1176.3691631602214,4.866676775783329,1.814932132963977,7.627592708698805,0.5466510835457061,1344.9473574516421,-26.533628808864304,-1.6393375734071864,-0.08224971255055481,4.72343490304709,-26.069886802776956,8.299729590534628,-108.44233689019399,2.299427347243059,-1.50353601108032,-12.990384374890501,-1.169060596786704,437.33356241694275,22.34537396121884,-1.769384409972281,-0.0039144813411443775,-7.193130193905818,-90.67482233849734,12.703463869869328,114.9692640280332,2.8260053112681796,-1.4090772853185438,-11.751418763017098,-0.8396371388365654,345.17139398738345,-60.35157894736846,-1.8934625263157778,-0.06890485980505501,-15.393684210526319,-133.11248862897986,-2.2208995260174254,-288.3818382905263,-0.4485675338716682,-1.6925526315789348,-12.75205825491942,-0.6985808252631579,-510.8807798826043,0.6859917440922828,0.6081026074517004,0.44351619953291427,0.3512527578021503,0.28807006514795896,0.2001494997872802,0.18808389277763474,0.11402286258535786,0.12043673298651078,0.0652806404435963,0.07898438538753659,0.03681629655102892,0.05115219742805519,0.021708748085016796,0.03252296270941751,0.011645202631851181,17.001105132747377,5.666764140327869,3.546099029266846,2.1643665433557207,0.4624710212573914,-0.524856534210278,3.2862900970713897,0.9779007466722657,6.0223619676476705,0.7739922692123299,14.692401709749456,10.928728449281854,35.45051833983635,11.6793113629055,2.208017423185756,0.7479833843914945,3.492118094900288,2.2136430546666817,7.008284014438674,1.2359214951895567,3.70455595223107,2.4093478745100345,22.455879447178987,14.702488014965246,0.20587310847471846,0.4575093089406145,0.6621984267847304,0.8194298814398773,0.8894862984157892,0.9111759364879134,0.868397663106924,1578.9194764134859,0.0,1.0,7.0,0.0,15.0,12.0,4.0,0.0,0.0,5.171068093655505,3.4613471006619645,2.0706041107126962,1.0023082205144593,0.5263157894736841,0.37894736842105203,362.01399113813324,2992.991595458715,62.70463098568319,31.50517468903911,61.450754191843004,,27.0,2126.0,0.0,4.794537184071822,5.559266895052007,19.007418857986547,91.14723235938098,50.7570724181522,4.681802935145185,48.53093654769288,34.06528773554739,21.436484652333604,22.480952380952377,51.75,23.0,1.5,28.75,0.0,0.01128364389233962,-5.75,0.09013471177944915,0.03725597178787704,-0.05287873999157211,0.0,0.0898593336858805,0.0,0.5338847117794472,0.7830227743271222,0.44374999999999803,0.49662873999157015,0.7830227743271222,52.961603290946634,0.2948873861944641,0.8108873861944641,40.1214514563954,9.2043346498724,13.414991526306231,93.08305474734203,22.61932617617863,0.6241406663141195,0.04660029654734167,0.0,0.2535479771234908,0.48717948717948717,0.32465013264552395,-0.9413067301633888,-0.029641400932370044,-0.009908491896456725,-0.02689447800466825,0.6753498673544762,1.9581429712515621,0.03110348183463593,0.020612031276332234,0.032635716187526045,-10.48624537277759,0.7831825647342622,0.7274832459473399,1.3239553523000582,0.8401881720430104,0.6279763893478373,1.3314535325679937,0.791100578390568,1.109941129467919,0.7128358088850653,0.5675184558370955,0.695446539078609,1.0589472182704078,0.9101696584566703,1.1195294085659533,1.4649925063404032,1.2867746779037097,1.0646232558261504,1.217638255020445,0.9143485500580001,1.0429155319831849,1.058368989281783,0.659096237821178,1.028411987365734,1.0517940611480208,0.9503485724953801,1.1131714135598232,1.2195863723728788,1.114753481627404,1.0260620324656928,1.0205671129232856,0.9512068323538123,0.9665454137576603,1.0732961617489127,0.7649479137360212,1.0720041734299532,0.9752084703215232,0.9463421888117782,1.108744933687433,1.0630027059928848,1.007368471582181,0.9840466799375622,1.0617396966387869,0.949190408979422,1.0109577830806094,1.0702392186837688,1.0860312591786123,1.0512475143890871,1.0269394848806999,0.7230509851214173,0.9481392975305277,0.8889358358730604,0.9235645095884674,0.920356131870128,0.9673025039902327,0.7279268202885069,0.8591390612627883,0.8861114952172695,1.0689249562357566,0.8551174282258878,0.8709727307693579,0.932599834747806,1.3445116936227155,1.3008668311984821,1.0040858831181407,1.161615916454251,0.97770701065672,0.9316731221125358,0.919430394766346,1.2531495626462006,1.554701683411782,1.3540592657480184,0.9338222949760676,0.8721125852929684,1.3441835546724015,1.3548318703133595,1.170897159640439,1.2763945537341306,0.9763172624851043,0.8734066371677139,0.9129622409247964,1.232312024257044,1.536019756354762,1.303098373001485,0.9450229897184693,0.9312860388770773,1.159121201239191,1.157236175487089,1.1784015715467324,1.236516917263718,1.0201635558520104,0.9340651850230514,0.99914207075057,1.1044689921276645,1.3095358557562513,1.1031459330581983,1.0346528064379743,7.0,0.21651464136312623,4.000000000000002,2.1319444444444446,1.9472222222222224,1.0419444444444446,0.9265759637188207,0.6901218820861678,0.41095049130763406,0.3153317901234568,9108.245943048494,10595.192936304755,4411.601952054255,3924.554008904889,26.987791643782554,0.4929798812773059,13.683353323293963,0.9723083228319244,0.0,0.48717948717948717,1.3987875146754436,3.1085085076689833,4.499251497618252,5.5675473878164885,6.043539818857264,6.190908239909896,0.13725490196078433,0.00470684002963318,0.05882352941176473,0.030027386541471045,0.031921675774134795,0.01653880070546737,0.014477749433106573,0.01061725972440258,0.006523023671549747,0.005630924823633156,0.3165220920759475,35.813148788927336,18.84083044982699,10.75,278.8652158435695,0.0,4.755074752615711,470.3247618249215,,390.7736132398632,385.2024461088916,384.25416810693287,390.81415602111144,527.2315408695911,389.1567653143084,392.19179667444234,475.79229552317776,0.058720840711371076,0.1283163304310794,-0.253428160090511,0.2649641577060931,0.3223948555250336,-0.10510809485554368,0.05768220765350811,-0.03407137148387421,0.12054740857138187,0.06401434538454334,0.08072105412696304,0.003956466096525555,-0.024756568100936436,-0.025794931621660508,-0.14453517969718294,-0.057638283444735115,0.03729590595856402,-0.06747095996649652,-0.025429969542080627,-0.046297955098020906,-0.02618353469433869,0.04614815928041374,-0.018621948256053324,-0.051882234675768024,-0.008852812822437169,-0.004593884805763184,0.0022922220263647346,-0.0316168021012887,0.0344724626904504,0.026795025146321472,-0.008628607442491247,0.0015573142498038863,-0.008485794225105635,0.09969594537496068,-0.012495384905253122,0.0009150091038397985,-0.047410537854374955,-0.012022101789269544,0.013010360166912656,-0.016117031490015345,0.03687888625165106,-0.057143979485644036,-0.04789630053163273,-0.05938825444467254,-0.02223510614105696,0.020557568513181836,-0.014771845388345887,-0.05861692375221623,0.10428480659004181,0.0745069428132246,0.040310945381141224,0.0876795384977631,0.10601098989227552,0.025997435126877032,0.10456906773253107,0.07276960982367078,0.08746386910225944,0.05060488411030772,0.04695028556397494,0.09247487855344996,-0.0118636172989857,-0.08912347140232132,-0.035451772103597796,0.036870684048103376,-0.03367680659430665,0.02246276785629494,-0.010197865299613307,0.036373746356583594,-0.07665366570988298,-0.0911754131865412,-0.10622233560736498,0.031811349287324264,0.01026850762203753,-0.09886558053382828,-0.001734111469121585,-0.05770858223815211,-0.12038647382793187,0.035336270096980135,0.011111978127347369,0.04594524153002525,-0.07383344478378813,-0.0847706014311108,-0.07840968098699704,0.02580496665249102,-0.0282951452017585,-0.1079402019758616,-0.031142697280260614,-0.1259994485800937,-0.1803073253209778,-0.006302764033178367,-0.028436825963101757,-0.007440446358339764,-0.09048239495111636,-0.09385098548165056,-0.06655769837955534,-0.038966523194050584,0.0,36.40759727404244,6.6870777990021715,13.853020810764994,30.0407734423957,38.83339450358485,42.41308806764391,43.81945685918565,43.96800422760669,95.47085026358187,81.05526685790048,8.807829105815625,3.8464092404694163,1.7613450593963318,14.415583405681371,40929.9968581476,39605.13839253792,3098.2836701970737,249.0,68.0,88.0,112.0,141.0,152.0,171.0,200.0,230.0,640.3544044880014,51.0,5.476463551931511,6.311734809152915,7.166265974133638,8.017966703493599,8.880029117468442,9.741380302992413,10.609575637228874,11.478116605263347,12.351734540211522,0.6035087719298246,0.9575157894736841,1.125346793134894,0.5620260375357676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6680545666561614,0.9471620227038184,0.9876988538352438,0.6087062058769969,12.0,1.0,0.0,0.0,0.0,2.0,5.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,18.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,9.636772684650527,5.749511833283905,0.0,0.0,5.559266895052007,9.694446914922299,4.681802935145185,5.098681808301038,0.0,66.90715261531581,119.00433693276045,29.41627638619267,24.23179057973875,335.12397818055825,-971.6751184726104,-30.597690253054374,-10.22815914181695,-27.762146242074582,697.1379693186915,2021.3164769861046,32.106940732628814,21.277015547222156,33.68860794976842,0.48148148148148145,0.9497122013778202,0.17022198789288082,74.74080219632091,0.09456812660025865,67.44680551223799,0.050287798622179844,14.0,0.27450980392156865,0.21290993258690527,0.4731471577133627,0.6848326304025536,0.8474383182419601,0.9198892912035561,0.9423202896665605,7.772900000000009,,1.7184873949579833,1.4307073550521485,1.3789276261826333,1.7297166394039938,-4.003370847277136,1.355216677253924,1.2678257455480872,-1.991998839352157,189.25599999999937,4.736862953800049,0.0,19.58030420514718,0.0,83.21563508724667,39.33066399407579,104.99367319264695,0.0,5.749511833283905,4.634728988229636,0.0,5.926926025970411,2.3978952727983707,7.40184157874383,4.727387818712341,8.967886572127473,6.741700694652055,10.588426134546184,57.33333333333333,24.48526419648218,4.939553083308069,0.0,0.0,0.0,1.6805796699036333,5.143474382345099,1.7312804683035514,90.96399999999998,0.0,13.517701793630488,0.0,0.0,0.0,0.0,0.0,0.0,106.90794534781492,10.296129848852056,0.0,5.749511833283905,64.95280902837092,19.386399651764595,0.0,74.60822558457656,77.59094200561115,5.022633313741326,10.772448428929591,0.0,53.39247356589793,63.46518383233533,61.28063006725745,940.6495236498429,,781.4725096364674,770.3532859837954,768.5159346278376,781.5531069709444,1055.8193617424822,778.2546081643884,784.3284704903826,952.1908515626802,61.28063006725745,940.6495236498426,,779.857191932556,769.046987963965,767.2569137517576,779.9267662934611,1058.4664525864594,777.0037868229147,783.1420311080299,953.5765898857077,4.936829656588432,732.8994952239864,,615.0341189779831,605.3263265106135,604.0005227277965,615.1201310167401,835.946999758507,611.7731945920136,616.647848870886,751.7597833848977,1.3321876101577705,20.44890268804006,,16.988532818184073,16.746810564865118,16.706868144083426,16.990284934150967,22.952594820488745,16.91857843835627,17.050618923703972,20.69980112092783,2.4716372618913334,470.3247618249215,,390.7736132398632,385.2024461088916,384.25416810693287,390.81415602111144,527.2315408695911,389.1567653143084,392.19179667444234,475.79229552317776,89.98039215686275,0.0,0.0,6.117353909107998,0.0,0.0,0.0,93.83139111434816,20.09910733437674,0.0,6.0428567993461435,0.0,0.3384574892874941,5.17553729268071,0.0,0.0,0.0,57.827089558314704,980.3517665580682,132.88481389416714,295.3083082285534,427.4288922737339,528.9170018425664,574.1362827914401,588.1362827914401,1508.0,177.03326724187627,51.910180941181444,97.3867930857803,50.6,50.6,0.9285714285714286,9.253625642639143,6.672425341971495,4.40598017831053,6.672990686549261,,6.672912861530992,6.6708738397563625,6.669149459960614,6.672949461425606,6.667738412167779,6.671320737394136,6.671646833481865,6.671292851708797,0.09578217778935935,0.14506501492498394,,0.14506332307676068,0.14501899651644265,0.14498150999914378,0.14506411872664363,0.14495083504712564,0.14502871168248122,0.14503580072786662,0.14502810547193037,3.0090190530703764,3.4241244417238414,,3.4241127789663532,3.4238071652996864,3.423548638044282,3.4241182637965917,3.4233370372853003,3.4238741554241905,3.423923034518899,3.4238699754807107,511.8100000000022,136845.93737382095,366.28258596431624,,365.5320833518681,365.9987224888945,366.31919947523573,365.5224131638964,366.2565628079136,365.9022602142938,365.83582347654266,365.74638558862614,2974.911682039586,7.962664912267744,,7.946349638084089,7.95649396714988,7.9634608581572985,7.946139416606443,7.962099191476383,7.9543969611803,7.952952684272667,7.9510083823614375,13.352667330813834,7.429461431784782,,7.427410358180977,7.428686146422822,7.429561386526028,7.427383902730615,7.429390382595241,7.428422552637764,7.428240966522693,7.427996461155411,7.774137267649695,18.693239086311202,7.342147160256035,3.4480801246066894,0.9799912096997527,24.823721685769673,12.87173132851278,7.227376005863954,0.0,613.138644890333,345.93573037035907,-1003.0232501311009,-31.584831329596714,-10.55813947506422,-28.65780714660288,719.6289978845846,2086.5280830459983,33.1427731689064,21.963453505747356,34.77546805076665,10405.0,71.0,2.23645399889499,1.2487873847787212,0.0,0.0,0.38172273562964226,0.13581474264661442,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.462027587829318,0.22493277820691393,0.7681284907564059,0.3231695932565019,31.55562022824501,27.97271994277822,22.619326176178628,17.913890647909668,19.58876443006121,13.610165985535053,16.551382564431858,10.034011907511491,13.488914094489207,7.311431729682785,11.13679833964266,5.1910978136950785,7.775134009064389,3.299729708922553,5.561426623310395,1.9913296500465518,5.365358377884455,2.5776763342371587,8.240424587744524,3.5230231323946883,12.435211385296485,4.32833166460032,155.96814068541713,88.75485703100937,48.88480692690278,32.22910103659543,26.51959344191963,25.521527696481684,238.0,275.0,105.98685699999997,57.40114300000008,0.4631578947368421,531.07,11.333333333333332,10.222222222222221,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,1.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,22.0,23.0,95.0,0.0,2.0,100.0,23.0,1.0,11.0,89.0,24.0,51.0,76.0,0.0,0.0,0.0,39.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.0,6.0,0.0,3.0,46.0,7.0,0.0,4.0,2.0,0.0,6.0,14.0,0.0,0.0,1.0,1.0,4.0,4.1666652238017265,8.034999944735537,4.7140245909001735,5.267858159063328,5.816366835403347,6.388981485366972,6.627876018593377,7.007459201238615,7.409959469768918,7.8257008907868375 +64715,CC[C@H](C)C(=O)O[C@H]1CCC=C2C=C[C@H](C)[C@H](CC[C@@H]3C[C@@H](O)CC(=O)O3)[C@H]21,0,19.06451612903226,5.960645161290322,2.870967741935484,5.451612903225806,163.3988191597898,74.7171123225807,1.3302832058849352,6.0207338709677405,4.081093189964157,7.5583584516129,191.6079021888387,21.40625,6.159375000000001,3.640625,4.875,144.1859662530759,79.35755628125004,1.7312782846250006,6.307179687500001,2.6267361111111107,7.625344999999996,245.75495665027995,17.073170731707318,6.02471544715447,3.2113821138211383,3.5040650406504064,152.16259966773362,61.59981282926832,1.4317452492323914,6.133546341463412,2.5578139114724485,7.564714341463414,195.3059727228476,13.414364640883978,5.9333149171270705,2.6685082872928176,2.3480662983425415,159.01956850467573,46.47272334254143,1.208366683069934,6.012660220994474,2.377225291589933,7.544051823204421,159.67793055553963,12.403061224489797,5.934489795918367,2.4591836734693877,2.086734693877551,160.92516082557503,42.13637098979591,1.1356140122836784,6.001893877551019,2.640731292517007,7.560567877551022,147.14284341295308,11.549222797927461,5.862020725388602,2.435233160621762,1.782383419689119,161.73006349048114,38.727587932642486,1.1243114187305545,5.929826424870465,2.334916522740357,7.503132414507773,144.0025554798667,11.857142857142858,5.80074074074074,2.433862433862434,1.9682539682539681,160.2198349366384,40.19087743915344,1.1573110881867679,5.878595238095236,2.241328630217519,7.431324486772488,147.88692728929678,11.53,5.759649999999999,2.305,1.905,161.41924127707247,39.215368224999985,1.1215487497931902,5.833010499999998,2.2531944444444445,7.3997522200000025,142.29825289250633,10.964467005076141,5.786395939086296,2.1421319796954315,1.751269035532995,162.02826068544235,36.479628832487315,1.0800929503920917,5.855185279187816,2.415538635081782,7.433075857868022,135.90625968759798,7.3725286160249714,0.12296566077003114,0.017163219737688137,0.5723204994797085,3.4370447450572317,1.2784792815845327,35.04336872216441,0.22808931044127162,0.11661771592091559,1.591144930049717,0.0793685619146722,50.51958093357111,0.2938020291363164,-0.0005362252861600472,-0.009259162365570402,0.1827198231009366,1.101261706555671,-0.008842378967855294,1.4019124824726843,0.00039196316406608944,0.0005970018210200148,-0.0692055259278529,-0.0017031385275755025,1.3481391502408413,0.27053458880062276,0.019434024517144342,0.0011385542681921163,-0.012131671784980074,0.3027926533167515,-0.09085577711035667,1.1491137703611585,-0.016036599908262943,0.017270154522304976,0.15994418030375238,0.013251859800512647,-2.3113499133374313,-0.28377438326788973,-0.010638089927044158,-0.0012552921961162344,-0.033557355655078426,-0.30320051051793423,-0.02590834004332063,-1.307323782403229,-0.00411366945380109,-0.009435841032303981,-0.10789526173945316,-0.007458565835541965,-0.9157707133123987,-0.48592558771687655,-0.0015288602433688743,0.0018070479946326436,-0.03808745142177579,-0.39573467264116896,-0.04933067857141244,-2.331359316963624,-0.010492299146571139,-0.0025551007135423726,0.03854794172264811,0.00028101873048904134,-3.2671958602807742,-0.623406102235905,-0.016647760051328196,-0.001252202642549534,-0.01089646471454066,-0.48317544871760315,0.04020595887685175,-2.8692876446113442,0.005426365078508618,-0.015864623826648588,-0.17608698810309018,-0.010136541857844551,-0.7291844074011875,-0.3320780271872884,-0.007577369252707462,-0.00033629936046056973,-0.02444543547561237,-0.09500685463224477,-0.039944075119026666,-1.5602320001982064,-0.007128067971992538,-0.00702030168640471,-0.06103692906357955,-0.0049993780949077315,-1.729902870004698,0.1926326742976066,0.0035343392299687286,0.0013706239030229785,-0.0508688865764828,0.02343912591050991,-0.006638985908274147,0.8977012609001036,-0.0004955934356772379,0.0035570179500519794,-0.014397618221759743,0.0019260174401665253,0.49451318572147335,-0.37645853251424866,-0.00645837404987405,-0.0020227348969389406,-0.069127442332173,-0.13918982447429437,-0.11293787104183661,-1.8076756332500512,-0.019239703425883346,-0.005804919130347538,-0.07001708040541058,-0.004669857477141497,-3.508150334346112,,,0.47023809523809534,0.7767857142857143,0.17857142857142858,0.0,0.5982142857142857,-0.41964285714285715,1.3552762946323065,0.01892730041477878,0.028141586129064495,0.5325087943518734,0.11607581833160951,0.3619330799097937,1.8877850889841798,0.4780088982414032,2.0197416538574546,1.6865524468230102,0.0,0.33318920703444405,0.0,0.33318920703444405,6.294203615935498,1182.0,369.55999999999995,178.0,338.0,10130.726787906968,4632.4609640000035,82.47755876486599,373.2854999999999,253.02777777777777,468.6182239999998,11879.689935707998,1370.0,394.20000000000005,233.0,312.0,9227.901840196857,5078.883602000003,110.80181021600004,403.65950000000004,168.1111111111111,488.02207999999973,15728.317225617917,2100.0,741.0399999999998,395.0,431.0,18715.999759131235,7576.7769780000035,176.10466565558414,754.4261999999997,314.61111111111114,930.4598639999999,24022.634644910253,2428.0,1073.9299999999998,483.0,425.0,28782.54189934631,8411.562924999998,218.71436963565807,1088.2914999999998,430.2777777777778,1365.4733800000001,28901.705430552673,2431.0,1163.1599999999999,482.0,409.0,31541.331521812706,8258.728713999997,222.58034640760096,1176.3711999999998,517.5833333333334,1481.8713040000002,28839.997308938804,2229.0,1131.3700000000001,470.0,344.0,31213.902253662858,7474.424470999999,216.99210381499702,1144.4564999999998,450.63888888888886,1448.1045560000002,27792.49320761427,2241.0,1096.34,460.0,372.0,30281.548803024656,7596.075836,218.7317956672991,1111.0544999999995,423.6111111111111,1404.5203280000003,27950.62925767709,2306.0,1151.9299999999998,461.0,381.0,32283.848255414494,7843.073644999997,224.30974995863804,1166.6020999999996,450.63888888888886,1479.9504440000005,28459.650578501267,2160.0,1139.9200000000003,422.0,345.0,31919.567355032144,7186.48688,212.77831122724206,1153.4714999999997,475.8611111111111,1464.3159440000002,26773.5331584568,457.09677419354824,7.62387096774193,1.0641196237366646,35.48387096774193,213.09677419354836,79.26571545824103,2172.6888607741935,14.14153724735884,7.2302983870967665,98.65098566308245,4.9208508387096765,3132.214017881409,18.80332986472425,-0.034318418314243024,-0.5925863913965057,11.694068678459942,70.48074921956294,-0.5659122539427388,89.7223988782518,0.025085642500229724,0.038208116545280946,-4.429153659382585,-0.10900086576483216,86.28090561541384,33.2757544224766,2.390385015608754,0.1400421749876303,-1.4921956295525491,37.24349635796043,-11.17526058457387,141.3409937544225,-1.972501788716342,2.124229006243512,19.673134177361543,1.6299787554630556,-284.2960393405041,-51.36316337148804,-1.9254942767949925,-0.22720788749703844,-6.073881373569195,-54.87929240374609,-4.689409547841034,-236.62560461498447,-0.7445741711379973,-1.7078872268470207,-19.529042374841023,-1.3500004162330956,-165.75449910954416,-95.2414151925078,-0.29965660770029934,0.35418140694799816,-7.465140478668054,-77.56399583766911,-9.668812999996838,-456.9464261248703,-2.056490632727943,-0.500799739854305,7.55539657763903,0.05507967117585211,-640.3703886150317,-120.31737773152966,-3.2130176899063416,-0.24167511001206005,-2.1030176899063475,-93.2528616024974,7.759750063232388,-553.7725154099894,1.0472884601521633,-3.0618723985431777,-33.984788703896406,-1.9563525785639984,-140.7325906284292,-62.76274713839751,-1.4321227887617103,-0.06356057912704768,-4.620187304890738,-17.956295525494262,-7.54943019749604,-294.883848037461,-1.3472048467065896,-1.32683701873049,-11.535979593016535,-0.9448824599375613,-326.9516424308879,38.52653485952132,0.7068678459937457,0.2741247806045957,-10.17377731529656,4.687825182101982,-1.3277971816548293,179.54025218002073,-0.09911868713544758,0.7114035900103959,-2.8795236443519485,0.38520348803330506,98.90263714429467,-74.16233090530699,-1.2722996878251878,-0.3984787746969713,-13.61810613943808,-27.42039542143599,-22.248760595241812,-356.1120997502601,-3.790221574899019,-1.143569068678465,-13.793364839865882,-0.9199619229968748,-691.105615866184,0.7235280023619582,0.6179806041984823,0.4461416383586431,0.36162714101272714,0.29062490971661803,0.20849639245633375,0.1839048337506916,0.12379882437703739,0.11657210956267297,0.06860539239851267,0.07188256381491197,0.041504478777401474,0.04853658068950779,0.02502027998424128,0.030815241955942308,0.015302298467453236,8.031320856198235,5.706227508297165,3.5579281368207547,2.206161685105378,0.4325788371324924,-0.4945343819890575,3.199972956281725,0.9772031362246064,6.030546848504128,0.9876041879981982,13.64516558040655,10.966538548500562,16.01643649864543,11.717264994678269,1.9728634380402637,0.7404096571886372,3.504112719651645,2.256147030328571,7.009361831948076,1.1445144346085478,3.7170113217573526,2.4521496292922214,20.88181815504993,14.699769715846308,0.21338109763307558,0.4804275544069628,0.7469126609178542,0.8873221248934215,0.9032194200510393,0.9032194200510393,1.6470852902124384,636.9039408415775,0.0,2.0,3.0,0.0,3.0,10.0,1.0,4.0,0.0,4.655246807520316,3.0296114250217134,1.4073932413900225,0.5526558468788787,0.4558816533304917,0.4558816533304917,285.8665824123493,1587.699233173592,55.44027953111959,25.60805214796116,49.918960206012144,,13.0,588.0,6.103966387748303,14.69560176298435,42.4031770666491,18.256633715248796,32.10410811463005,5.573104530069267,0.0,13.847474399381248,25.151797520192268,9.473725907600098,13.16666666666667,21.75,5.0,0.0,16.75,0.0,0.029761904761904656,-11.75,0.10247311827956995,0.014695340501792331,-0.08777777777777762,0.018513957307060736,0.15212233285917443,0.0,0.5424731182795698,0.8369047619047614,0.43999999999999984,0.5277777777777775,0.8183908045977006,37.94773624970458,0.5299644116138058,0.7879644116138058,14.910246241852455,3.2501229132850664,10.134126237474224,52.85798249155704,13.38424915075929,0.5618776671408255,0.18987341772151894,0.0,0.3797468354430379,0.7391304347826086,0.2786397038182193,-0.6851372309534457,-0.05298560090533732,-0.011050600499249125,-0.036059854260707666,0.7213602961817807,1.7737271073478174,0.032874569205117596,0.02860850173141641,0.041249467612739926,-3.042028114511986,0.9404121824276644,0.7288579218498775,1.5256878894929546,1.0878622159090912,0.5434370742506813,1.3186073375061567,0.9500234267460289,1.297573345690091,0.7332563908373926,0.6693332205514353,0.743940389068961,1.179729985572315,0.9422939222335064,0.6716441656673486,0.9149321526028884,1.3976348854397638,0.8587647593097186,1.2342408991131877,0.9517613182289066,1.2272071997325689,0.6903294356129932,0.5377672034671469,0.6600520944241228,1.1520934723647132,1.0373784004023756,1.097621088075659,1.2251905495358026,1.2204595680562536,1.1299952495889392,1.0603492157909995,1.0365676043542589,1.0528047115278274,1.0874768402685646,0.8943936134825807,1.114358638499569,1.0348507857320075,1.0733950355018511,1.090977867409975,1.0426359868957413,1.1314424860853436,1.1968668711808066,1.043235741766355,1.072614992054036,1.0448520253333007,1.0905256385237745,0.9769813474713419,1.089929310401705,1.0541442584083578,1.0776337295826772,1.1585135097806316,1.045210816276685,1.0510504003768255,1.1746834013355738,0.9609931605045392,1.0743712090793056,0.966139905613677,1.1549300833936966,1.1231246298369624,1.1572458996647357,1.0001751973889437,1.0075899974982547,0.9275447487768722,0.9035506923637969,1.077842712842713,0.9579695066373844,1.0482927695960809,1.009717214614499,1.0509399639427381,0.9361767943377368,0.8185482116241599,0.9167698322403379,1.0467175493075882,0.9278177487649968,0.810720043158162,0.7581327817334819,1.1174090909090912,0.9238877535573723,1.0011530289470183,0.9311329380644144,1.0035971019303076,0.8224093158605648,0.7979181975484696,0.7971773944338081,0.9919833042162488,1.0198497934794684,0.9721236375882807,0.9785190158665602,1.0558883248730966,0.990994189254193,1.0701509949672203,1.0215018650150087,1.0690329509708196,0.975498913839758,1.0179704408531542,0.9698894863550177,1.0562528293944529,6.5,0.12804815835118866,3.333333333333335,2.375,1.7111111111111112,0.8958333333333334,0.7559183673469387,0.5434027777777778,0.43159486016628873,0.21250000000000002,5365.693590671604,6388.500034354472,2576.8715973177095,2234.803537741946,14.355924815318371,0.4729127260550702,7.56682527586453,0.8972190174799785,1.0,0.7391304347826086,1.2989495028665583,2.9245848853651615,4.546803068996852,5.401540463507996,5.498314657056383,5.498314657056383,0.21666666666666667,0.008536543890079245,0.07936507936507939,0.05277777777777778,0.04074074074074074,0.022970085470085465,0.018897959183673464,0.013253726287262874,0.01198874611573024,0.008499999999999999,0.47369732549709587,22.68,10.346938775510203,5.795610425240055,167.71564643089602,1.0,4.249755321698991,153.10022508619792,,139.06762327241057,137.74799296209144,141.91691166111914,139.09478873403515,185.13938126047356,138.74513337997402,139.12330027646746,161.9560045438309,0.039850917431192685,-0.004360772615721467,-0.5394770041450042,0.3192613636363638,0.3204094762337269,-0.006916325587142992,0.04000507181793843,0.001718463540916408,0.0051193064133143555,-0.043494168646026794,-0.021458603841235248,0.026685477696529746,0.03669495269405767,0.15804432225586634,0.06633686951475679,-0.02119733924611973,0.08809680285722016,-0.07106550604226533,0.0327911902383506,-0.07030842382414954,0.14809203203754007,0.10052144043142239,0.16696610699283548,-0.045751565445023325,-0.03849078084974483,-0.08651268866793131,-0.07313850287424686,-0.05863385233550977,-0.08821546794057973,-0.02026496668073504,-0.03730588211333593,-0.018035345215620162,-0.08091258654648067,-0.0678098265606024,-0.09397380594548939,-0.018127044927719375,-0.06591030201777255,-0.012433229194190482,0.10528607232503162,-0.06654916512059371,-0.1151380624911182,-0.038585434493918866,-0.0665278311411047,-0.046000836804987816,-0.02191005623258062,0.024226543412009388,0.003540680638653373,-0.06467187177535884,-0.08455797660532179,-0.13538543969980882,-0.07295849273547808,-0.019039095619406504,-0.14057874847642043,0.03144826784132234,-0.0818781912024503,0.023790527789358185,-0.13603956912864934,-0.11066684421863958,-0.12771482326644867,-0.014433698655576777,-0.04504262302427442,-0.061621831698839606,-0.019594188363276692,-0.04271284271284271,-0.027642018559366408,-0.03124342779299515,-0.04452288855470059,-0.031251214527336965,-0.06019927273456062,-0.03836038308695889,-0.06298940001309937,-0.034242225252805854,0.02612844036697248,0.028742489633578325,0.0798582039949807,-0.08888181818181815,0.006819557977596133,-0.005192877197075781,0.025616865433725294,-0.0021728043051138213,0.030501523048729356,-0.009048590074890209,0.02426675491786224,0.009788544888599046,-0.05106233588513664,-0.05252176916246904,-0.11785288121070227,-0.1207844946931241,-0.04049694862845804,-0.08833766230600365,-0.051583957226883935,-0.08435162256688562,-0.04977733515449873,-0.04400421299348439,-0.05883762240976448,-0.06944139815726157,10.110846068260367,26.010212623388266,12.127560619938174,11.540080929674488,27.82608373895134,34.76300475997373,36.94667682783451,37.04422521493129,37.04422521493129,56.55276630800873,47.22346851104429,0.0,9.329297796964433,0.0,9.329297796964433,6865.740414650949,5829.239704912788,1791.8508070140197,124.0,42.0,54.0,70.0,87.0,94.0,102.0,114.0,126.0,390.2406241880009,30.0,4.976733742420574,5.820082930352362,6.70073110954781,7.563719668414366,8.45126704130007,9.323222529032856,10.214458814215858,11.092169038293106,11.98580620137099,0.5698924731182794,0.966451612903226,1.1307557152691463,0.5244117623361383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6286552250338034,0.9528779253636939,0.9959119422973007,0.577178519136196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,0.0,7.0,0.0,0.0,0.0,0.0,14.580253302440804,12.207932775496605,0.0,0.0,0.0,9.589074368143644,0.0,0.0,0.0,38.999271919573516,49.51302473702211,12.338727669087403,18.442694056835705,179.9188500124974,-442.3960440839035,-34.213029412092325,-7.135420065869413,-23.28400232020545,465.7854324248467,1145.3031890896884,21.227250119027268,18.47263208209175,26.6349578858067,0.46153846153846156,0.8139073566538577,0.18796798159759362,31.556387421401208,0.1254362132343093,2.25995982003837,0.18609264334614203,7.0,0.2,0.21815698293329513,0.4911804604532994,0.7636300235961523,0.9071821253332224,0.9234352329742265,0.9234352329742265,3.949500000000003,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,106.29080000000005,24.169327670584448,0.0,0.0,23.671624184645573,84.02886212279886,0.0,23.80116485057091,0.0,0.0,4.110873864173311,0.0,5.43372200355424,0.0,6.951772164398911,0.0,8.566554620953962,0.0,10.23462415135353,35.33333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.920000000000016,0.0,24.07039284459826,0.0,0.0,0.0,6.713378212396069,0.0,0.8703367046336583,70.10685434668707,0.0,0.0,0.0,35.35703713398931,19.06280027574374,23.671624184645573,65.71696295955395,23.80116485057091,0.0,0.0,0.0,32.51352926484057,38.976623952095814,35.352619849907924,306.2004501723959,,278.04596083053536,275.39394510785644,283.7719896844246,278.10055404696357,370.8471231653335,277.39786642772214,278.1578524099996,324.0545071155396,35.352619849907924,306.2004501723959,,276.956544423398,274.16291974067815,283.00066669721923,277.0140933074314,375.6902338426428,276.27348426878433,277.07449549571925,325.90698147795194,4.922596189131033,221.03456961720343,,202.72705540304722,200.88717031841148,206.71170905212256,202.76496814710723,269.05119837753966,202.27709624178772,202.8047611316714,235.12044275073634,1.2625935660681402,10.935730363299854,,9.930212886804835,9.835498039566302,10.13471391730088,9.932162644534413,13.244540113047625,9.907066658132933,9.934209014642843,11.573375254126415,2.4612980945655174,153.10022508619792,,139.06762327241057,137.74799296209144,141.91691166111914,139.09478873403515,185.13938126047356,138.74513337997402,139.12330027646746,161.9560045438309,59.07843137254902,0.0,6.1384876490588836,0.0,0.0,0.0,9.864284377485344,61.746540422432645,4.821845346553625,0.0,11.418518453881909,0.0,-0.06391025527441285,0.0,0.0,0.0,0.0,35.78506818644415,525.5434656986547,80.53486917772662,181.32426289264,281.9017902778048,334.8955087374958,340.8955087374958,340.8955087374958,871.0,134.12819107494798,120.16081673868923,63.29754680443395,72.83,72.83,0.8571428571428571,7.344072850573066,5.906890595608519,4.149818912095269,5.209631087619748,,5.212056759732116,5.212484093339155,5.21103438762664,5.21204763750117,5.189148362934068,5.212164070862954,5.212038049539841,5.202147642914864,0.14820781828911675,0.1860582531292767,,0.186144884276147,0.1861601461906841,0.18610837098666572,0.18614455848218464,0.1853267272476453,0.18614871681653408,0.18614421605499434,0.18579098724695942,2.452684114832009,2.68012846192111,,2.6805939665863234,2.6806759526638495,2.680397792132066,2.6805922163676765,2.6761890089741853,2.6806145553924483,2.6805903767892967,2.6786909657569655,314.50000000000097,352.46043208352876,172.29816064778197,,171.36118050485223,171.2905959799011,171.5175611050315,171.36264689538442,174.0056713938469,171.3438124190333,171.36418650244804,172.66063627956845,12.587872574411742,6.153505737420785,,6.1200421608875795,6.117521284996468,6.125627182322553,6.1200945319780145,6.214488264065961,6.119421872108332,6.120149517944573,6.166451295698873,6.894557783724617,6.178845885369506,,6.173392912890786,6.172980923046906,6.174305075658813,6.173401470162939,6.188707310082019,6.17329155407669,6.173410454618859,6.180947445140835,11.418518453881909,24.07039284459826,9.864284377485344,1.2749770093222477,0.42572362804908037,0.0,10.64094937093761,6.1384876490588836,0.0,402.7000412197199,116.17437194427175,-285.65702019831656,-22.091499606542826,-4.607371293521236,-15.034580010437715,300.7596484136537,739.5271738843591,13.706526306224529,11.927857643296115,17.198306369403692,2069.0,45.0,2.0691084035405036,1.1753207956472602,0.0,0.0,0.4193637438053669,0.21172461380250346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1916383190435099,0.1142082282594366,0.48590203149365346,0.2201495887532351,20.25878406613483,17.303456917557504,13.384249150759294,10.848814230381814,12.206246208097957,8.756848483166017,9.930861022537346,6.685136516360019,8.160047669387108,4.802377467895886,6.253783051897341,3.610889653633928,4.562438584813732,2.3519063185186804,3.1431546795061154,1.5608344436802302,4.469978908157332,2.5104809734541615,7.079955654615938,3.543872018932876,10.310751290604493,5.037151758408153,101.11662861394711,49.50142509147332,30.680275841826262,22.978647109498535,22.290805035724617,22.290805035724617,144.0,168.0,65.09096199999998,39.31703800000002,0.2903225806451613,144.05,10.11111111111111,6.222222222222222,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,62.0,0.0,0.0,64.0,0.0,4.0,4.0,60.0,4.0,30.0,60.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,5.0,1.0,1.0,28.0,5.0,0.0,0.0,5.0,0.0,3.0,6.0,0.0,0.0,0.0,0.0,0.0,3.5553480614894135,5.648974238161206,3.9512437185814275,4.276666119016055,4.605170185988092,4.897839799950911,5.0689042022202315,5.231108616854587,5.420534999272286,5.631211781821365 +5284439,C1CCC(C(CC2CCCCN2)C2CCCCC2)CC1,1,13.963636363636363,5.410452727272724,2.4545454545454546,2.036363636363636,165.31728453397665,54.05048341818181,1.2683736667220904,5.49434727272727,1.492929292929293,7.065775999999997,170.5102974825729,17.80701754385965,5.861473684210526,3.2982456140350878,2.175438596491228,145.03528994569996,63.99155477192979,1.7201048919298252,6.017228070175439,1.7933723196881093,7.344387789473681,229.83105138156077,12.717948717948717,5.6635641025641,2.8034188034188032,1.3504273504273505,152.98481145417554,42.97879172649574,1.3945705682285052,5.7845512820512806,1.618708452041785,7.228978188034187,174.5675909453167,8.80327868852459,5.440131147540983,2.300546448087432,0.8415300546448088,162.04642658851253,28.115421874316933,1.1075754195381804,5.525598360655736,1.4383727990285369,7.094123781420767,129.46503758898814,8.026315789473685,5.369484210526316,2.1842105263157894,0.7578947368421053,163.46732047842744,25.343887036842094,1.0503921490974948,5.449607894736841,1.382017543859649,7.044891978947369,120.38695585166242,8.88586956521739,5.4009673913043486,2.2010869565217392,0.8369565217391305,162.87264610209112,29.078984548913034,1.0873789752933534,5.4840570652173914,1.421195652173913,7.065282195652174,127.6844514737071,8.77948717948718,5.464984615384615,2.1025641025641026,0.6974358974358974,162.686096744772,27.90391316923078,1.092581799743764,5.547394871794871,1.4863247863247866,7.1161254564102565,127.51902061854749,6.904761904761905,5.362485714285715,1.819047619047619,0.41904761904761906,165.68298457073436,20.456403485714286,0.975614009414352,5.4326333333333325,1.4126984126984126,7.050390933333333,107.85224564565154,4.8743169398907105,5.218065573770492,1.5737704918032787,0.19672131147540983,169.4802013744137,12.83234955737705,0.8367164317240655,5.273521857923499,1.296448087431694,6.9544117377049215,85.43205405537786,5.91867768595041,0.03058333884297517,0.003286682851978366,0.39140495867768593,1.336859504132232,1.279264592045056,28.59460572694216,0.22545905457662813,0.03660178512396689,0.08187327823691458,0.010667324297520655,50.8090647118387,0.3744642598231113,0.0017546515876468258,-0.000745069797743724,0.09471944323618975,0.2337944033637813,0.040556808537626735,1.8049900542380852,0.011825130489952481,0.0022715482093664096,-0.0014550609765920412,0.000485357042192113,2.8864053062942303,-0.8128501801229073,-0.0031174647171010625,-0.0002876088107492437,-0.031808999081726304,-0.14462951190223913,-0.18419341168793196,-3.935856153049367,-0.03290511299205621,-0.004122437804619601,-0.0076179039815403235,-0.0008904117878082375,-7.330998181969008,-0.34043625524996607,-0.0023462300501287023,-0.00018196377172347543,-0.016044799710969594,-0.08141986180734315,-0.023773078532346392,-1.6339173397588391,-0.008928094041899336,-0.0027107270017612717,-0.006673189922072181,-0.0008236454102876949,-2.3125566163308178,-0.05121357111787733,-9.745367551109222e-05,2.9000582755962068e-05,-0.01638103523270986,-0.008438451500652455,-0.020438283018076618,-0.24985993718138347,-0.0027830893399434066,-0.0001565698129621574,-0.0015675897733314031,-2.1673388429746942e-05,-0.5687482360757258,0.37509701760689923,0.002684467481135464,0.0003146177231174793,-0.021444484369385546,0.022824290334171743,-0.0018279899980151657,1.795815141338484,0.007858408297015682,0.0031390547969816717,0.009963568491236474,0.0008990579159180687,2.263380936734845,-0.4410086882814157,-0.00234280737444373,-0.00013636714429605856,-0.05499470226742954,-0.1642720915448188,-0.0760181614549881,-2.1275848344479744,-0.015441973617868187,-0.0028285636787454883,-0.0032770596406959955,-0.0007865850900614837,-3.590924546133944,-0.5827469500196774,-0.003346455726092087,-0.00023270978839897205,-0.030192837465564754,-0.13997638724911451,-0.07149627523863487,-2.805733454388036,-0.01817188893207572,-0.004015724517906331,-0.008299444663081024,-0.0011118236914600525,-4.413437669164502,-0.25509099941290697,-0.0015920720769543493,-0.00012985401495147462,0.010681479474325947,-0.017833175269836972,-0.019189712134722234,-1.225659209406136,-0.0069922827398158915,-0.001892356410603808,-0.005792801336765577,-0.0005292462051212072,-1.787608181963246,,,0.495,0.575,0.0,0.0,0.575,-0.575,1.4360528289218542,-0.0009219714002237644,0.011978028599776236,0.06581025515785158,0.02094887368825722,0.4756837758306213,1.5018630840797056,0.49663264951887853,2.06782616187802,1.9663866293342092,0.1014395325438111,0.0,0.0,0.1014395325438111,5.04139909309092,768.0,297.57489999999984,135.0,112.0,9092.450649368715,2972.7765879999997,69.76055166971497,302.1890999999999,82.11111111111111,388.61767999999984,9378.066361541509,1015.0,334.104,188.0,124.0,8267.011526904898,3647.5186219999982,98.04597884000003,342.982,102.22222222222223,418.63010399999985,13100.369928748964,1488.0,662.6369999999997,328.0,158.0,17899.222940138538,5028.518632000002,163.1647564827351,676.7924999999998,189.38888888888883,845.7904479999999,20424.408140602056,1611.0,995.5439999999999,421.0,154.0,29654.496065697793,5145.122202999999,202.686301775487,1011.1844999999997,263.22222222222223,1298.2246520000003,23692.10187878483,1525.0,1020.2020000000001,415.0,144.0,31058.790890901215,4815.338536999998,199.57450832852402,1035.4254999999998,262.5833333333333,1338.5294760000002,22873.52161181586,1635.0,993.7780000000001,405.0,154.0,29968.56688278477,5350.533156999998,200.077731453977,1009.0665,261.5,1300.0119240000001,23493.939071162105,1712.0,1065.6719999999998,410.0,136.0,31723.788865230537,5441.263068000002,213.05345095003395,1081.7419999999997,289.83333333333337,1387.644464,24866.20902061676,1450.0,1126.1220000000003,382.0,88.0,34793.426759854214,4295.8447320000005,204.8789419770139,1140.8529999999998,296.66666666666663,1480.582096,22648.971585586823,892.0,954.906,288.0,36.0,31014.876851517707,2348.319969,153.119107005504,965.0545000000003,237.25,1272.6573480000006,15634.065892134147,325.52727272727253,1.6820836363636344,0.18076755685881013,21.527272727272727,73.52727272727276,70.35955256247809,1572.7033149818187,12.400248001714546,2.013098181818179,4.503030303030302,0.586702836363636,2794.4985591511286,21.344462809917346,0.10001514049586907,-0.04246897847139226,5.3990082644628155,13.326280991735533,2.311738086644724,102.88443309157086,0.6740324379272914,0.12947824793388535,-0.08293847566574634,0.02766535140495044,164.52510245877113,-95.10347107438015,-0.3647433719008243,-0.033650230857661514,-3.721652892561978,-16.92165289256198,-21.55062916748804,-460.49516990677597,-3.8498982200705765,-0.48232522314049325,-0.8912947658402178,-0.10417817917356378,-857.726787290374,-62.299834710743795,-0.42936009917355256,-0.033299370225396,-2.9361983471074358,-14.899834710743797,-4.3504733714193895,-299.00687317586755,-1.6338412096675785,-0.4960630413223127,-1.2211937557392092,-0.15072711008264816,-423.19786078853963,-9.730578512396693,-0.01851619834710752,0.005510110723632793,-3.1123966942148735,-1.6033057851239665,-3.8832737734345577,-47.47338806446286,-0.5287869745892473,-0.029748264462809905,-0.2978420569329666,-0.004117943801651919,-108.06216485438789,69.01785123966945,0.4939420165289254,0.0578896610536162,-3.9457851239669406,4.1996694214876005,-0.3363501596347905,330.42998600628107,1.4459471266508854,0.5775860826446276,1.8332966023875112,0.16542665652892463,416.4620923592115,-85.99669421487606,-0.4568474380165274,-0.02659159313773142,-10.723966942148762,-32.03305785123967,-14.82354148372268,-414.87904271735505,-3.0111848554842964,-0.5515699173553702,-0.6390266299357191,-0.15338409256198932,-700.2302864961191,-122.37685950413224,-0.7027557024793383,-0.04886905556378413,-6.340495867768598,-29.39504132231405,-15.014217800113324,-589.2040254214876,-3.8160966757359014,-0.8433021487603295,-1.742883379247015,-0.23348297520661102,-926.8219105245454,-46.68165289256197,-0.2913491900826459,-0.023763284736119855,1.9547107438016482,-3.2634710743801656,-3.511717320654169,-224.2956353213229,-1.2795877413863082,-0.3463012231404969,-1.0600826446281006,-0.0968520555371809,-327.132297299274,0.6811554787871634,0.670800139727836,0.4514842268353441,0.4393924193228089,0.29284903244217475,0.28009166248924916,0.19002503557892872,0.17999211466475173,0.12396045108179132,0.11626394473809165,0.08240919783593122,0.07631895737258051,0.0511171945304798,0.047262334747432584,0.03481165388523118,0.03198562313669648,7.020024430490327,5.767613435053323,3.1049683856961723,2.267476117659342,0.2543674200574437,-0.2674076857427368,3.1563007831315364,1.8243681884060343,4.014979321932866,1.824519702027465,14.540220276768899,11.028057153512163,14.01704053918617,11.778714830339128,1.9157076346354631,1.065596382266865,3.0805682376827557,2.3174284155994345,2.5186082657713693,1.1443059469467611,3.238280453980414,2.5133977832039993,20.82446807414548,15.594516756783893,0.1799801899390239,0.27101236115525995,0.45809966995244106,0.6566893312155065,0.7168590018619478,0.7168590018619478,1.6083797130755597,238.93981477754497,0.0,0.0,1.0,0.0,0.0,15.0,0.0,3.0,0.0,4.731555060881854,4.200574418426935,3.1093147231669027,1.9509630710692094,1.6000000000000005,1.6000000000000005,380.6049639941167,575.6772232226401,18.993337202237903,10.466858604048006,17.88504463970764,,9.0,313.0,0.0,0.0,0.0,0.0,23.79555896763214,70.75297263517268,25.683286491704038,0.0,5.316788604006331,0.0,9.9,11.5,0.0,0.0,11.5,0.0,0.004999999999999982,-11.5,0.009870129870129918,0.0,-0.009870129870129918,0.019999999999999907,0.026499999999999746,0.0,0.4527272727272731,0.7199999999999998,0.44285714285714317,0.4527272727272731,0.6999999999999998,28.721056578437082,-0.01843942800447529,0.23956057199552472,1.3162051031570314,0.4189774737651444,9.513675516612427,30.037261681594114,9.932652990377571,0.6875000000000002,0.0,0.0,0.20202020202020202,1.0,0.13237639591297723,-0.1472138041794738,-0.009484336023982054,-0.0026766146214449783,-0.00774809495681441,0.8676236040870225,0.9648711952961915,0.027206720249444573,0.017543112641748942,0.026801977647116434,-4.413379918133489,1.2921546493579803,1.2578478367056036,1.5114854948500545,1.2102151493598863,1.185381852256754,1.4015784088124708,1.2930694316334472,1.3391202713458943,1.2590491097632552,1.3412020967627687,1.2676913407696213,1.3228955460923664,1.33700247473706,1.3219044511726965,1.2978926694865953,1.5329391891891893,1.4154873316594379,1.3871511954124842,1.3374170062425823,1.3584187831516328,1.3222558111033944,1.2911533285019157,1.3267730957057713,1.3509957001562696,1.0845959873423292,1.142131469687744,1.132428589714709,1.3021987151085512,1.2059760665466746,1.0533219548146509,1.0839745597191275,1.0629249384703532,1.1265703490244898,1.1158241952209698,1.1666228209753537,1.0685308960557363,0.9865775363341336,0.9006170235207257,0.8200784530534702,1.267425320056899,1.0687763548336713,0.9981693608504336,0.9872953385510054,1.0057790872130352,0.9269922016938255,0.8625770347807611,0.8545641677141661,1.0023892727319348,0.9358061837043951,0.8735342149051164,0.809566108642147,1.247406543772033,1.0557307121661716,1.0051881824667401,0.9366918076383408,0.9725873782966387,0.8872145512480082,0.8029013546725967,0.8565962249262403,0.9614773630817091,1.113128995669211,1.294394614471662,1.3978444910570587,1.0998570686070686,1.1863729742068017,1.0986815400069978,1.1116752927995466,1.0763874601512713,1.237887577106908,1.3008334196086553,1.39419876389312,1.0821170075133062,1.0624521256223676,1.1729075349033713,1.2678876218889916,0.7644787644787645,0.9792284866468838,1.0110039619865543,1.0613106292201693,1.024070417135156,1.1422691753281238,1.2245721976542974,1.2222391908730255,1.0336134548739389,0.9037544499626429,0.8497306566020789,0.8331466035786713,0.5345868409393,0.7223816704772094,0.8556704977890539,0.9038736062571848,0.8950569700800409,0.8712335564977405,0.9010325883105711,0.8058761723328842,0.9007840164062494,2.0,0.0,1.333333333333334,0.8125,0.6933333333333334,0.3125,0.08163265306122447,0.14583333333333331,0.06449987402368357,0.0,3086.4628442065314,4048.9694488088735,1776.8473320107735,1433.2101093489468,11.154021245537713,0.4506130037209725,6.127874228518421,0.820210537877586,1.0,1.0,1.049804652642806,1.5807852950977241,2.672044990357757,3.8303966424554505,4.181359713524659,4.181359713524659,0.09090909090909091,0.0,0.04761904761904763,0.03009259259259259,0.027733333333333336,0.010775862068965516,0.0029154518950437313,0.007291666666666665,0.007166652669298174,0.0,0.22450369775403856,14.917355371900827,7.8520408163265305,4.25,125.84057780998887,0.0,3.9225490784162114,82.91859247165306,,81.66577183465043,81.29526430166793,80.9547944328685,81.66887097742642,85.62432035286136,81.5068736187356,81.68829773690283,84.55797733263441,0.06326822977909474,0.05737279361994382,-0.2266935482671354,0.2419985775248936,0.17488330123032594,0.03170322135844616,0.06312344613086948,0.05244912657048956,0.06206113176373458,-0.01777211085137655,0.04549941753480972,0.05680886516341811,-0.13733644966888942,-0.10193343287687268,-0.08750732081622119,-0.08126876876876864,-0.1081860221326096,-0.14398382698412449,-0.13764330904345917,-0.1459471789848766,-0.11262941932086869,-0.09304505872473547,-0.08347095888096238,-0.14428524168957707,-0.05751897185719102,-0.07671595512102233,-0.05536395810564601,-0.04099283709939445,-0.06090382837962732,-0.01858339445973589,-0.057140754286370304,-0.0395996251233498,-0.07405996709123032,-0.08150632374536347,-0.07721199687152383,-0.04551464644048021,-0.008652873806500169,-0.0031864956279447167,0.008823663268424464,-0.041851884779516325,-0.006312145348534536,-0.0159765877560979,-0.008738009524151704,-0.01234410099505452,-0.004277655104303514,-0.019146537271847223,-0.002031754901722109,-0.011193833999924139,0.06337513841939628,0.08777548765745935,0.09572500216383831,-0.0547884841363102,0.01707306584096674,-0.0014289381644597126,0.06280258446251094,0.03485514614514982,0.08576234154563721,0.12169499873212788,0.08428148342007674,0.044546793954415555,-0.07451135400197069,-0.07660404203976767,-0.04149081321125175,-0.14050589050589052,-0.12287909914022668,-0.05942332956582817,-0.07440511174607105,-0.06849125508339178,-0.07727939140578532,-0.0400259976303044,-0.07373780604423034,-0.0706748798959341,-0.0984589769777438,-0.10942087596367032,-0.07080384657707273,-0.07713963963963968,-0.10470538363713433,-0.055888575110438724,-0.09812107504404032,-0.08059950826192937,-0.10971389795075404,-0.10136939477450917,-0.10422704517556174,-0.08686319447514164,-0.043099322677839814,-0.052056843274325484,-0.03950914061370755,0.02729009747452364,-0.013339603163020972,-0.015000581001030605,-0.04286330159996947,-0.03101353703867051,-0.05170120539734798,-0.07075325993424983,-0.04961377289750316,-0.035182859438597905,25.479479548314387,20.045601147724796,3.3019272488946267,8.253232732926786,13.320250094849955,20.103063697455767,23.20150549825749,23.555276273895252,23.555276273895252,41.3565232375604,39.327732586684185,2.028790650876222,0.0,0.0,2.028790650876222,3106.6759970413814,2210.1405194872336,1199.7266549138787,44.0,28.0,36.0,46.0,58.0,52.0,58.0,60.0,56.0,277.2769501200006,22.0,4.61512051684126,5.43372200355424,6.270988431858299,7.110696122978827,7.959625305098115,8.808219665118408,9.662116382947598,10.514800838871937,11.370889438825515,0.4727272727272728,0.9277818181818184,1.1374237647471042,0.4200634267073364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6115161132280894,0.9161497326203206,0.9672780242335963,0.5316354569509464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,1.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.62903785218613,43.56093941317478,6.041840829147961,0.0,68.5254059315015,-76.20607601940361,-4.90962132298406,-1.3855650185346113,-4.010846106284401,449.1303699256182,499.47114720323657,14.083715879253843,9.081293585513395,13.87419853342324,0.4444444444444444,0.9863211376117577,0.28232735969320044,25.08060901402905,0.11012557458437933,113.00453374004545,0.013678862388242228,5.0,0.18181818181818182,0.18158438579542782,0.2734279431531832,0.46218279483750024,0.6625425215273819,0.7232484952878766,0.7232484952878766,5.295400000000005,,0.1428571428571429,0.18566775244299671,0.22524958545764784,0.14250017848218755,-0.5181818181818181,0.16118421052631582,0.14026299311208512,-0.3193246282434288,86.89870000000008,0.0,0.0,5.316788604006331,17.75371813848418,95.93334355011213,6.544756405912575,0.0,0.0,0.0,3.8066624897703196,0.0,5.056245805348308,0.0,6.523562306149512,0.0,8.079927770758275,0.0,9.679406061493943,26.000000000000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.02800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.55830706109073,5.316788604006331,0.0,0.0,12.586597235060536,0.0,17.75371813848418,89.89150272096417,0.0,0.0,0.0,0.0,23.1034884689035,33.63338622754492,27.290378615183293,165.83718494330623,,163.32451912103676,162.59069880237774,161.92071749475696,163.33067687011174,171.5077316148137,163.0092304576059,163.3692834843004,169.2756169793907,27.290378615183293,165.83718494330623,,163.21023340675112,162.4421646004234,161.74051782639083,163.21667672732605,171.76682252390464,162.88028308918484,163.25707308981066,169.43527929351245,4.716588942364525,113.51609744168405,,111.49026110560713,110.89639078206349,110.35281388940304,111.49523879977504,117.84198271658954,111.23527310489563,111.52644497484769,116.12106334903095,1.3645189307591647,8.291859247165311,,8.166225956051838,8.129534940118887,8.096035874737847,8.166533843505587,8.575386580740686,8.150461522880295,8.168464174215021,8.463780848969535,2.3582944711822633,82.91859247165306,,81.66577183465043,81.29526430166793,80.9547944328685,81.66887097742642,85.62432035286136,81.5068736187356,81.68829773690283,84.55797733263441,50.388235294117635,0.0,0.0,0.0,0.0,0.0,0.0,53.2002913328478,22.42692649281935,3.8277437641723355,0.0,0.0,4.078663076341647,0.0,0.0,0.0,0.0,29.239950132302052,510.5748337346914,57.739255895354326,86.94319123037482,146.96247446967664,210.67181533504979,229.97478424385628,229.97478424385628,480.0,113.74617870609418,7.080942122428305,53.145804433520354,12.03,12.03,0.8,6.175867270105761,5.459431618637297,4.011087124048564,4.404844233973792,,4.4061398413864765,4.40643666885254,4.4066707392588675,4.406137180719556,4.403013150631136,4.406272351389176,4.406120436764937,4.4042880805017735,0.2005543562024282,0.2202422116986896,,0.22030699206932383,0.22032183344262699,0.2203335369629434,0.2203068590359778,0.22015065753155677,0.2203136175694588,0.22030602183824682,0.22021440402508868,2.0822094883905824,2.1758520781364403,,2.176146167289466,2.1762135318033127,2.1762666505037993,2.176145563434886,2.1754362940724894,2.1761762407812206,2.1761417632839266,2.175725810655625,255.97000000000014,127.17241866664709,105.48435990735528,,105.39824274882585,105.37585710364422,105.35671583017007,105.39843648033037,105.63786459331068,105.38845173075852,105.39965325335093,105.55766545188021,6.358620933332355,5.274217995367764,,5.269912137441293,5.268792855182211,5.267835791508504,5.269921824016519,5.281893229665534,5.269422586537926,5.269982662667546,5.277883272594011,5.5386909735722885,5.351709875162699,,5.350893144315946,5.350680730691298,5.3504990665730245,5.350894982404717,5.3531640537871334,5.350800244542565,5.350906526845391,5.352404576110042,0.0,0.0,3.8277437641723355,0.0,3.2197713529856387,0.8588917233560089,21.142482048374905,1.2844444444444445,0.0,311.1075619555251,35.472572173395484,-39.44851540685103,-2.5414938351139726,-0.7172457346700188,-2.0762376529921593,232.49493010484113,258.5541242237371,7.290516870426386,4.700984076795222,7.182059006214922,802.0,27.0,0.6735402420532192,0.613753664118694,0.0,0.0,0.13608276348795434,0.13608276348795434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.30618621784789724,0.2762929288806347,0.19001991384646116,0.16888216650574078,13.623109575743268,13.41600279455672,9.932652990377571,9.666633225101796,8.199772908380893,7.842566549698976,6.840901280841434,6.479716127931062,5.702180749762401,5.348141457952216,4.7797334744840105,4.4264995276096695,2.6580941155849493,2.4576414068664945,2.0190759253434085,1.8551661419283956,1.7695507353005824,1.6504819490732765,3.000347186060775,2.8057222185774253,4.761556386445847,4.415274792452674,75.64868393964369,63.01467387047733,44.23262784913426,34.84902166205118,32.4986448767517,32.4986448767517,100.0,114.0,56.16775499999996,35.682245,0.36363636363636365,104.01,4.444444444444445,4.555555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,55.0,0.0,1.0,57.0,0.0,0.0,0.0,57.0,0.0,22.0,57.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,1.0,1.0,1.0,20.0,1.0,0.0,1.0,0.0,0.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,3.1354942159291497,3.8066624897703196,3.367295829986474,3.6109179126442243,3.8501476017100584,4.07753744390572,3.970291913552122,4.07753744390572,4.110873864173311,4.04305126783455 +77999,CN(CCOc1ccc(CC2SC(=O)NC2=O)cc1)c1ccccn1,0,28.681818181818183,6.259961363636362,3.2954545454545454,7.91919191919192,161.20767388905298,113.6453441818182,1.6503967543666134,6.338340909090906,4.712199152013967,7.790545659090907,231.586078704554,28.195652173913043,6.395195652173913,3.891304347826087,7.079710144927535,146.11441767335862,108.00461193478267,1.9070484756521748,6.548108695652174,3.1847826086956523,7.820302086956516,272.715827661441,25.08974358974359,6.363496153846155,3.4871794871794872,5.213675213675213,154.36569960058742,94.28116712820511,1.6491538880909484,6.479246153846154,3.0341484647040207,7.866654615384611,228.72873010278303,19.04123711340206,6.223742268041236,2.9072164948453607,3.780068728522336,157.15855222811012,68.40161697938142,1.4159425796426701,6.320028865979382,2.9006936489754356,7.7873504742268045,191.22639283001016,15.969696969696969,6.083737373737372,2.606060606060606,3.080808080808081,160.09368370911903,56.25668247474745,1.3096365810377273,6.165021212121212,3.0357276468387577,7.6546812121212096,171.08315955968658,15.07,5.89233,2.46,2.99,160.5483122531518,53.218253559999994,1.2627377553607402,5.977946000000002,2.554722222222223,7.5140181199999985,160.73391841132758,15.295454545454545,5.996670454545457,2.5681818181818183,3.4393939393939394,161.54912394677487,54.06515430681816,1.2256564323486132,6.075051136363637,2.805730920314254,7.606926431818181,160.87033772432974,16.549295774647888,6.158535211267606,2.6338028169014085,3.8028169014084505,161.86945608643782,59.2786163943662,1.227041156545564,6.228714084507042,3.0464267083985392,7.746712197183099,168.41727495363094,16.612903225806452,6.044161290322579,2.6129032258064515,4.021505376344086,159.79124393178446,60.040327258064515,1.310594784933645,6.123833870967742,2.978494623655915,7.6180805483870975,173.94495136078444,10.425619834710742,0.12871007231404955,0.021731493685470085,0.5428719008264463,4.039485766758492,1.6033410702695414,47.65630741322315,0.28919370483433626,0.12011859504132225,1.664412078132617,0.08020509659090908,50.73426504947467,0.6593604024434061,-0.001726475476104912,-0.011575759010572674,0.11572493711821771,0.9253802850640802,-0.28375745349173975,3.0545906776859555,-0.003777342364209204,0.0005391124685590959,-0.03442731368730487,-0.0037041331521739072,-0.33829403840896183,0.6186692095783002,0.0054965710425937805,0.002993093525197579,-0.07754556050010598,-0.35948058675331385,0.08736293024165852,2.6306045203432973,-0.004891148499235405,0.00549877092604366,0.007311488652678303,0.006583149038461548,-0.23011458924421263,-1.5535486069694124,-0.015732659005708433,-0.0014261052576641032,-0.12136299735877991,-0.774047882763909,-0.15244561838895307,-7.217328589418077,-0.04290892984797307,-0.015279841526795594,-0.21111607238338473,-0.008396620489690714,-6.9042035390498215,-0.7759412304866848,-0.00962152777777777,-0.0016966216101444468,-0.020833333333333325,-0.5070911131517192,-0.0029986228116428287,-3.856372542699725,-0.009579068190187506,-0.0106329660238751,0.09733826606254589,-0.002466356691919194,-6.261730051210851,0.42619834710743787,0.006396291322314034,0.0018535632852946598,0.036219008264462824,0.35657483930211187,-0.02963361518855046,2.07391057950413,0.004787185252767365,0.006525677685950407,0.04054770488272169,0.0017709024999999856,1.8233482835587986,0.09814049586776848,-0.003739540289256207,-0.00019520227414747648,0.0041322314049586865,0.20133149678604223,-0.1311621273155539,0.6365916280991715,-0.00890504863028307,-0.0014872933884297634,0.058460942194107156,-0.0057545710227272775,1.2526367895613852,0.44313816785007554,-0.021144995489465707,-0.0028248271419637067,0.035233092771505076,-0.13153299965079734,-0.03582418501022569,1.9037358825515065,0.0031268204022597574,-0.016679606565009893,-0.1713280909823804,-0.011439307218309857,1.7551295096104615,1.0318581711543584,0.02397306551586243,0.00272196079253357,0.01357971207677953,0.5730916200124412,0.06328317726675071,4.6870127744601415,0.022938466991777734,0.021079352172753932,0.12302521796656694,0.016481098790322567,2.623512901052576,,,0.48133333333333334,1.29,0.64,0.04,0.65,-0.01,0.755273668606842,0.012000800865738768,0.022320800865738767,0.8790676830690103,0.2536939230828389,0.23087381854634617,1.6343413516758523,0.4845677416291851,2.0331267549945924,1.4853180181283525,0.24503402287593787,0.2223821019576937,0.0,0.5478087368662394,8.116243465181832,1262.0,275.4382999999999,145.0,348.44444444444446,7093.137651118332,5000.395144000001,72.61745719213098,278.8869999999999,207.33676268861456,342.7840089999999,10189.787463000377,1297.0,294.17900000000003,179.0,325.66666666666663,6721.263212974496,4968.212149000003,87.72422988000004,301.213,146.5,359.73389599999973,12544.928072426286,1957.0,496.3527000000001,272.0,406.66666666666663,12040.524568845818,7353.931035999999,128.63400327109397,505.38120000000004,236.66358024691363,613.5990599999997,17840.840948017078,1847.0,603.7029999999999,282.0,366.66666666666663,15244.379566126681,6634.956846999998,137.346430225339,613.0428,281.36728395061726,755.3729960000001,18548.960104510985,1581.0,602.2899999999998,258.0,305.0,15849.274687202784,5569.411564999998,129.654021522735,610.3371,300.537037037037,757.8134399999998,16937.23279640897,1507.0,589.2330000000001,246.0,299.0,16054.831225315182,5321.825355999999,126.27377553607401,597.7946000000002,255.47222222222229,751.4018119999998,16073.391841132758,1346.0,527.7070000000002,226.0,302.6666666666667,14216.322907316187,4757.733578999998,107.85776604667797,534.6045,246.90432098765436,669.4095259999999,14156.589719741018,1175.0,437.25600000000003,187.0,270.0,11492.731382137084,4208.781764,87.11992211473503,442.2387,216.29629629629628,550.016566,11957.626521707796,1030.0,374.7379999999999,162.0,249.33333333333334,9907.057123770637,3722.50029,81.256876665886,379.6777,184.6666666666667,472.32099400000004,10784.586984368636,458.72727272727263,5.66324318181818,0.9561857221606836,23.88636363636364,177.73737373737367,70.54700709185983,2096.8775261818187,12.724523012710796,5.285218181818179,73.23413143783515,3.529024249999999,2232.3076621768855,30.33057851239668,-0.07941787190082596,-0.532484914486343,5.323347107438015,42.56749311294769,-13.052842860620029,140.51117117355395,-0.17375774875362338,0.024799173553718416,-1.5836564296160238,-0.17039012499999973,-15.561525766812245,48.256198347107414,0.42873254132231486,0.23346129496541118,-6.048553719008267,-28.03948576675848,6.814308558849365,205.1871525867772,-0.38150958294036164,0.4289041322314055,0.5702961149089076,0.5134856250000007,-17.948937961048586,-150.69421487603302,-1.526067923553718,-0.138332209993418,-11.77221074380165,-75.08264462809917,-14.787224983728448,-700.0808731735535,-4.162166195253388,-1.4821446280991726,-20.478259021188318,-0.8144721874999992,-669.7077432878327,-76.8181818181818,-0.9525312499999993,-0.16796553940430023,-2.062499999999999,-50.20202020202019,-0.29686365835264006,-381.7808817272728,-0.948327750828563,-1.052663636363635,9.636488340192043,-0.2441693125000002,-619.9112750698743,42.61983471074379,0.6396291322314034,0.18535632852946599,3.6219008264462826,35.657483930211185,-2.963361518855046,207.39105795041303,0.47871852527673653,0.6525677685950407,4.054770488272169,0.17709024999999856,182.33482835587986,8.636363636363626,-0.3290795454545462,-0.01717780012497793,0.3636363636363644,17.717171717171716,-11.542267203768745,56.020063272727086,-0.7836442794649101,-0.13088181818181918,5.14456291308143,-0.5064022500000004,110.2320374814019,31.462809917355365,-1.5012946797520652,-0.2005627270794232,2.5015495867768602,-9.338842975206612,-2.543517135726024,135.16524766115697,0.22200424856044276,-1.1842520661157023,-12.164294459749007,-0.8121908124999999,124.61419518234277,63.97520661157022,1.4863300619834707,0.16876156913708132,0.8419421487603308,35.53168044077135,3.923556990538544,290.5947920165288,1.4221849534902196,1.3069198347107438,7.627563513927151,1.0218281249999992,162.6577998652597,0.7059221440850239,0.586455588001975,0.4486738348418381,0.3277740662677609,0.29840752840462986,0.19068772276073562,0.19574603571677712,0.10974190717855156,0.12929128763427047,0.06259762585750608,0.08668901520471874,0.034045095633399865,0.056021340748103284,0.020035770823268004,0.036800851963486134,0.011523977753814274,16.00200429963098,5.693520363928243,3.546418024778545,2.1928162991439537,0.4189625796754528,-0.5227978289800087,3.1321245380080702,0.9773104159498237,6.023391476242231,0.659377684721814,14.55211815569134,10.33794984614746,32.060999140054946,11.704815655738365,2.9164344893778953,0.7512018496862312,3.4920158830873955,2.2427768281871474,7.009360025525759,0.6240093409785917,3.704847389268396,2.438850405658895,24.434231945192025,14.701792366891251,0.2959379523695503,0.63718260725857,0.8285787878113873,0.9061866726784811,0.9061866726784811,0.9061866726784811,1.2742671521867772,736.9913268650013,0.0,3.0,2.0,0.0,8.0,2.0,1.0,0.0,0.0,3.7563419951299246,1.792517395529019,0.6910539081037887,0.24442926141280896,0.24442926141280896,0.24442926141280896,119.9078551082518,1412.8065778406421,64.62101125417082,32.109240405469144,65.71470567154705,,16.0,668.0,0.0,9.589074368143644,16.396329472505965,13.027703587438928,35.43746745811961,0.0,6.196843571613076,54.412151192758934,10.30076712495354,4.736862953800049,12.033333333333333,32.25,16.0,1.0,16.25,0.0,0.01866666666666667,-0.25,0.17203371745625257,0.05794051627384955,-0.11409320118240301,0.021179487179487144,0.14816927899686505,0.0,0.6128787878787881,0.8506666666666665,0.44084507042253557,0.5549382716049386,0.8294871794871793,18.88184171517105,0.3000200216434692,0.5580200216434692,21.976692076725257,6.342348077070972,5.7718454636586545,40.858533791896306,12.114193540729627,0.5658307210031349,0.09695290858725761,0.0,0.28254847645429365,0.2777777777777778,0.40317402033959276,-0.9199188299019335,-0.06143650343811775,-0.020907246134134853,-0.057494926868870845,0.5968259796604073,1.3617729049154232,0.042926846497256116,0.03094938420262326,0.04863474660412226,-4.504438105220446,0.7223909596925676,0.7145836298461714,1.5555804488573963,0.8805278616638397,0.5536924152722459,1.3128669871691325,0.7229924087306652,0.9776870805997926,0.6863780233662354,0.548022371928033,0.7391748644796448,0.9409064010482533,0.9505955466121936,0.8727365348952641,1.0660729382542502,1.3039839957061647,1.0357842837241569,1.0569339826113515,0.9432517840566194,1.0572545325787703,0.8554480310260584,0.6422394663776954,0.824751100708754,0.9469638974870523,1.1374141404235674,1.140320604160358,1.163575673109132,1.2805477355880994,1.1982878020543568,1.0962564698989266,1.1355091039685936,1.148380153010628,1.1346726998207128,1.0434304668369236,1.1455749586527637,1.0970381864081347,0.8895604879552562,1.0010944669201443,0.9623867934018376,0.9182788878316944,1.061668055871284,0.9563159176608114,0.9111537492419828,0.8931327977842619,1.0195226213150992,0.7646381135662796,0.9399126101044485,1.0874956062251255,0.927065001981768,0.7876642158544714,0.7360435151599517,0.7740818268315888,0.8198738349624919,0.9279130689234611,0.9292483678186199,0.9640181342348348,0.8067272444244152,0.6436305872396508,0.7993063861774256,0.9907045290355402,0.9304523384859296,0.9927140808731908,1.0177545258862513,0.941008563273073,0.937478688338259,0.9948558962405862,0.9337831214945234,0.968227982062342,0.9866071582148498,0.7757656473360809,1.0322196403284716,0.9728681682545633,0.7756457492477659,1.306863768044576,1.2641715815625814,0.9000951474785917,1.0962570718697275,0.9271235860763791,0.7954286642902206,0.8210547691012624,1.2711539666328098,1.1622315575129132,1.3149708270266824,0.916327698255471,0.7037880531369467,0.7290946530138263,0.7290529050378658,0.8710598201405726,0.8073004128504281,0.8743647161484849,0.7222673679851624,0.7812621974673815,0.7499067836738708,0.7114716972752756,0.7059921299135855,0.9341211324286546,5.0,0.08591164166921743,2.4444444444444455,1.6041666666666665,0.7333333333333335,0.5766666666666667,0.45478458049886616,0.25432256235827666,0.1461404006046863,0.10719135802469136,4756.477784209187,5288.910280508964,2467.4997170366532,2274.77566847276,16.416323498746667,0.47157330467780045,8.67482357578287,0.8924100709754383,1.0,0.2777777777777778,1.7030896235073727,3.6669142231082783,4.768377710533509,5.215002357224488,5.215002357224488,5.215002357224488,0.18518518518518517,0.006136545833515531,0.06790123456790127,0.04861111111111112,0.0271604938271605,0.02217948717948718,0.01894935752078609,0.012110598207536984,0.007691600031825594,0.0063053740014524335,0.40223098746596186,19.753086419753085,9.796296296296296,6.0,150.12630426252562,1.0,4.137631016257426,155.5969167377476,,118.3415730205366,122.07984169632303,124.31180707789511,118.36804236767861,175.00586412547113,123.23908660078781,123.64197684600373,153.77138560511574,0.063244239948991,-0.01341367808334652,-0.5326720370957453,0.21317172051462366,0.22908368502722976,-0.17697884670542158,0.06409625175530073,-0.013061634126417249,0.0044881682838001456,-0.020684369057169128,-0.04618326402706129,-0.006667959771942428,0.05934124007845766,0.04270505752791652,0.13773068563615554,-0.14284320183463858,-0.08899167060112728,0.054488051146205425,0.05519950376208514,-0.016913053145597635,0.04577784916774973,0.004392835613690938,0.08207893660473095,-0.004535683901596114,-0.1490125893327776,-0.12223331649850307,-0.06562389490132531,-0.22355733861712454,-0.191620401075221,-0.09507996845819279,-0.15144540106385776,-0.14837435646309563,-0.12720629575744824,-0.12684122829740932,-0.10468936322735427,-0.13608561259963123,-0.07442638833839785,-0.0747534952377423,-0.07807202002312555,-0.03837614969869963,-0.12553358086433788,-0.001870233892991167,-0.0809205066867959,-0.03312336344138212,-0.08852056603074013,0.058482071442160125,-0.030750623049542538,-0.12342211018735726,0.04087990487514863,0.04969534401866572,0.08529387404851847,0.06671741198858232,0.08827233462150488,-0.01848241508811889,0.04351807120768832,0.01655355968246159,0.05432695648584215,0.0243615781304676,0.022079675423029292,0.03593918787984253,0.009413396749900903,-0.02905398328214607,-0.008982460063386755,0.0076117982873454,0.04984087292566494,-0.08180550585753031,0.013357972168916658,-0.030792677992020262,-0.012381874662437706,0.03512407952464348,-0.0717481964030143,0.024690153456245954,0.042504731121568884,-0.16428392206844866,-0.1299877119745532,0.06490130124227765,-0.032561817826714794,-0.022343458715370648,0.0399471966227765,0.010812200784422148,-0.13885948765278106,-0.10293610172223787,-0.1426256896947177,0.03459455868531666,0.09897331645634355,0.18625632854411514,0.12525419706209626,0.02501457904913907,0.1418724196848258,0.039469566669374984,0.09835031350246075,0.07931869403906273,0.1754878348810389,0.07391511968874606,0.20548692652769193,0.05171086835483273,12.850160160411942,13.785331768163681,3.487184123245723,18.768887114054742,36.94733921884819,43.6532344926228,44.1034321364873,44.1034321364873,44.1034321364873,50.82816887486481,37.132950453208814,6.125850571898447,5.559552548942342,0.0,13.695218421655985,9679.188212566767,9638.576764722608,748.1428372867595,66.0,36.0,44.0,53.0,59.0,52.0,57.0,60.0,64.0,357.11471246800056,27.0,4.844187086458591,5.659482215759621,6.502790045915623,7.3310603052186325,8.174984532943087,9.00859131751613,9.852246888342531,10.689008788520935,11.532541800405353,0.7121212121212122,0.9904545454545456,1.121947092076507,0.6763270032772989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6986263881328254,0.9778966131907307,1.0111981063364899,0.6534706113650242,8.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,3.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9.636772684650527,18.17425657563185,0.0,5.907179729351506,5.239211713172287,14.905862972149976,4.9839785209472085,0.0,0.0,29.960986154775945,36.249741388469445,13.244515554290267,11.79469443589475,249.64235933292235,-569.6069079502334,-38.04102668752925,-12.945611544323489,-35.60043174688959,369.55021444117415,843.1996698904088,26.57998456664157,19.163628861145657,30.114273924657457,0.5,0.7909470387645234,0.21552147300397168,38.80315788300779,0.12532178746928574,94.62797426072986,0.2090529612354767,8.0,0.25925925925925924,0.3119536505766278,0.671665931411292,0.87342017331169,0.955228075285643,0.955228075285643,0.955228075285643,2.490900000000001,,1.8035714285714284,1.3895559505374213,1.1082508187380549,1.8006559751755822,-4.377290316528427,1.2713433292533662,1.237629484152691,-1.9973784437328954,98.06570000000002,14.325937321943691,0.0,10.30076712495354,0.0,11.670759652908185,25.099220083953163,54.22486454254134,0.0,5.749511833283905,4.007333185232471,0.0,5.293304824724492,2.3978952727983707,6.755768921984255,4.727387818712341,8.291797105048733,6.762729506931879,9.865006565717847,31.333333333333336,15.180796336419375,4.287944821640293,0.0,0.0,0.0,0.0,2.681863595216805,0.0,43.580000000000005,0.0,22.777463955113745,0.0,0.0,0.0,0.0,0.0,-0.486236723171229,49.3656720513663,14.953561288656857,10.61239996190685,5.749511833283905,41.57961834655586,11.21535880699783,0.0,5.563451491696996,48.661413050844345,0.0,0.0,0.0,29.75838814420115,30.739561077844318,32.362992493463196,311.19383347549524,,236.74800230693234,244.0485189166031,248.54962753012438,236.80242826100798,351.2202041875174,246.37646573523534,247.18494333327527,308.0221420367275,32.362992493463196,311.1938334754953,,235.2850335485143,242.8466475154243,247.61869684238448,235.34172316648733,354.389018567471,245.26879639877205,246.09702225346774,309.54014965396453,4.620107177560956,245.92154946765655,,188.85270758728106,193.61109747498443,197.7808888445561,188.89757579831837,284.78665103374107,195.48936672079674,196.16336462132477,245.9399112905458,1.2945196997385278,12.44775333901981,,9.469920092277293,9.761940756664124,9.941985101204976,9.47209713044032,14.048808167500697,9.855058629409413,9.88739773333101,12.320885681469099,2.3479874140277213,155.5969167377476,,118.3415730205366,122.07984169632303,124.31180707789511,118.36804236767861,175.00586412547113,123.23908660078781,123.64197684600373,153.77138560511574,43.02745098039215,0.0,1.9726167460927146,0.0,0.0,0.0,0.0,44.49271667880555,1.7981166334017997,2.301088599895444,5.753253390862518,1.0454146905308934,-0.34139779957840366,2.029075753576045,0.0,0.0,0.0,28.752706900061064,489.7485326516053,74.9359434343244,161.34422581676424,209.80861926347438,229.46010371787747,229.46010371787747,229.46010371787747,543.0,125.5948929810805,129.44404112249123,73.10122320115039,96.83,71.53,1.0,7.598085997032508,5.754887502163468,3.876896264522348,4.930185590403933,,4.9375233241364,4.932562107856601,4.933992911380569,4.937528166714208,4.940829546441363,4.932983280154558,4.933433598877243,4.935269599984374,0.1550758505808939,0.1972074236161573,,0.197500932965456,0.19730248431426403,0.19735971645522277,0.19750112666856834,0.19763318185765452,0.19731933120618234,0.19733734395508973,0.19741078399937495,2.271325633569013,2.511667364332554,,2.5131545859659643,2.5121492822668596,2.512439313292118,2.5131555667361027,2.513823973357108,2.51223466473314,2.5123259478663216,2.5126980334567617,261.4000000000001,518.8125329705185,142.67385739586166,,141.81870863751698,142.27144657336694,142.13362152241237,141.8184225875386,141.7776913523208,142.25324877383204,142.22844302146004,142.24549504092096,20.75250131882074,5.706954295834467,,5.672748345500679,5.690857862934678,5.685344860896495,5.672736903501544,5.6711076540928325,5.690129950953281,5.689137720858401,5.689819801636839,7.167833341639377,5.87685203982513,,5.870840274064189,5.874027560288779,5.8730583436523345,5.87083825705057,5.87055100885854,5.8738996431001675,5.873725250489674,5.873845135071,5.753253390862518,29.094484530330085,1.6883752265449479,1.0002811219631207,1.4666613238545478,13.41504569827847,2.298423626466573,1.2654436450761306,1.9726167460927146,317.7931316739589,154.57669499839002,-352.6963673732099,-23.55472122366033,-8.015826531209317,-22.04352296082562,228.8227484185999,522.1029738049107,16.458129054694556,11.865976677384337,18.646534778746812,1883.0,33.0,1.501661279183041,0.8356669869679956,0.0,0.0,0.23570226039551584,0.09185586535436918,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.08838834764831845,0.4458868774231515,0.18729176117647864,0.44836821371544816,0.13910562401743623,17.648053602125596,14.661389700049373,12.114193540729628,8.849899789229545,10.742671022566675,6.864758019386482,8.612825571538194,4.828643915856269,6.852438244616335,3.3176741704478223,5.114651897078406,2.008660642370592,2.913109718901371,1.0418600828099362,2.0976485619187097,0.6568667319674136,3.139476340693651,1.5248608694689052,4.429522889427556,1.8655977168616964,5.5890239411703195,1.8928712769184808,80.78541096861036,43.29596995104503,26.30357722779348,24.218674118658395,24.218674118658395,24.218674118658395,126.0,143.0,51.33506699999998,28.412933,0.5,129.07,7.527777777777779,5.555555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,44.0,0.0,0.0,46.0,12.0,2.0,8.0,38.0,14.0,27.0,32.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,6.0,1.0,2.0,25.0,7.0,0.0,3.0,3.0,0.0,3.0,7.0,1.0,0.0,0.0,1.0,2.0,3.58351893845611,6.01874527106157,4.07753744390572,4.499809670330265,4.941642422609304,5.367143557477889,5.201599947046231,5.412761500938905,5.61586159328373,5.850764665004847 +24946920,COCCOc1cc(Cn2c(C(=O)O)c(-c3ccc(C(C)(C)C)cc3)c3ccccc32)cc(OCCOC)c1,1,21.342105263157894,6.079011842105263,3.1447368421052633,6.973684210526316,160.83316180792386,84.02697756578948,1.4574302826238552,6.150042105263157,3.678819444444444,7.634100157894738,213.7407662490895,23.72151898734177,6.297151898734177,3.7341772151898733,6.518987341772152,144.29165295962733,89.39235177215193,1.7772767486835446,6.4440063291139245,3.0566104078762306,7.734580962025313,259.30187512467165,19.708029197080293,6.248051094890513,3.5839416058394162,5.218978102189781,154.06347220407295,73.02912740875915,1.5164899235108027,6.347949635036498,2.9920924574209247,7.76824989781022,217.68394476892118,18.130177514792898,6.16058579881657,3.2662721893491122,4.792899408284024,152.05256177316915,65.51729497633139,1.5122749844440055,6.267907692307695,2.8044049967126887,7.675052473372781,208.65894891005865,15.595238095238095,5.864976190476189,2.8857142857142857,3.966666666666667,156.53264117915074,56.43090418571426,1.3364192858211899,5.96513380952381,2.521957671957672,7.432094076190476,180.04388395815656,15.906103286384976,6.039187793427231,2.8779342723004695,3.976525821596244,157.35285204760902,57.074722178403746,1.324330409927263,6.126961032863848,2.8538080333854974,7.60860544600939,181.23835778734082,16.71359223300971,6.112752427184464,2.9805825242718447,4.29126213592233,156.37104891003915,60.24122268446602,1.3386479741289512,6.202728155339809,3.075107874865157,7.673427592233007,186.20562049825293,16.63,6.152204999999999,2.885,4.305,156.31939741316287,59.54393806499999,1.3375957923573503,6.239071,2.9619444444444447,7.707669539999999,184.88930561096728,16.23076923076923,6.045437499999997,2.8076923076923075,3.735576923076923,158.19905281626563,58.79633053365383,1.298370757840154,6.12716153846154,2.818442841880341,7.611620519230769,177.64483762726883,7.378116343490304,0.1234853704986149,0.021342558839926397,0.6099376731301941,3.9570637119113563,1.3713002614382446,35.09161413071329,0.2351446467508842,0.11655484764542927,1.0417568386426592,0.07926926523545705,51.2822342975997,0.4116904519793826,0.000970059214909518,-0.008478813717787767,0.2834667239384271,1.3130895192678564,-0.17661070009176164,1.919279753030863,-0.016032259124743858,0.0028295627476420575,-0.08249009980188639,-0.0019490360549107764,-0.45274241513295366,0.5859635643083893,-0.008905846872030105,-0.002749004442860045,0.06409229229431629,0.07117293810785114,0.25598220182461257,2.9725395741464733,0.053872206833594026,-0.00718004933578653,0.1321824194783123,-0.006031201847059078,9.775257548544495,-0.8740677604943534,0.0028014482494387073,0.0016493444075516407,0.044998483830254586,0.1941352915143668,-0.02322687743910937,-4.180279288763755,-0.005280431341707718,-0.0008228638397612461,-0.05161823090536733,0.00511485435345604,-4.75856488696869,1.070254583827991,0.015964692158026584,-1.106489852809936e-05,0.022518467220683295,0.6479488194169634,-0.047690333626815976,5.006359571604998,-0.0023067643948552746,0.0168296135074528,0.07658893899588151,0.008047195165545447,3.0891835796387985,0.18588167973677724,-0.0028620384007646588,0.001037124951769359,0.008545153655079138,0.0213153342957096,0.06316150114321921,0.9255949032007109,0.009798968026225856,-0.0021204270869909806,0.0009840119187991359,-0.0029287589344933907,2.209357077555287,0.039103891563348925,-0.00954266482666802,-0.0016630034033830266,0.004842602802355928,-0.05261813194201653,-0.04526507223641315,0.2206994999075489,-0.004854507590850118,-0.0073264112632116215,-0.016162284903943554,-0.007847569527741181,0.3100044317957014,-0.3844321329639891,-0.002605390235456965,-0.002532461407378542,-0.0013192520775623202,0.0789889196675901,-0.06735746701507639,-1.852591278147511,-0.013315949523570009,-0.002879900277008232,-0.14555161203447212,-0.0009168844459833919,-3.050913932239572,1.0186447901129343,0.028598580665352664,0.0060607024041394175,-0.16864212657148941,-0.061567760494353266,0.07692303185963491,4.731796495235588,0.010757388648786817,0.0262126118687407,0.22726482408788495,0.018491373175474102,3.523162921100362,,,0.4717948717948718,1.1987179487179487,0.5769230769230769,0.02564102564102564,0.6217948717948718,-0.04487179487179487,1.0437935052172507,0.017726111442840874,0.02654662426335369,1.1167217748425189,0.24317009775294493,0.2369041385573705,2.16051528005977,0.4800742363103154,2.0311307201393722,1.683982963934849,0.05911042816527834,0.28803732803924514,0.0,0.3471477562045234,6.990290630315802,1622.0,462.0049,239.0,530.0,12223.320297402213,6386.050295000001,110.76470147941299,467.40319999999997,279.59027777777777,580.1916120000001,16244.2982349308,1874.0,497.475,295.0,515.0,11399.040583810558,7061.995790000003,140.40486314600003,509.07650000000007,241.47222222222223,611.0318959999997,20484.84813484906,2700.0,855.9830000000002,491.0,715.0,21106.695691957993,10004.990455000005,207.75911952097997,869.6691000000002,409.9166666666667,1064.250236,29822.7004333422,3064.0,1041.1390000000004,552.0,810.0,25696.882939665586,11072.422851000003,255.57447237103693,1059.2764000000004,473.9444444444444,1297.083868,35263.36236579991,3275.0,1231.6449999999998,606.0,833.0,32871.85464762166,11850.489878999995,280.64805002244987,1252.6781,529.6111111111112,1560.739756,37809.21563121288,3388.0,1286.3470000000002,613.0,847.0,33516.15748614072,12156.915823999998,282.082377314507,1305.0426999999997,607.861111111111,1620.6329600000001,38603.770208703594,3443.0,1259.2269999999996,614.0,884.0,32212.436075468064,12409.691873,275.76148267056396,1277.7620000000006,633.4722222222223,1580.7260839999994,38358.3578226401,3326.0,1230.4409999999998,577.0,861.0,31263.879482632576,11908.787612999999,267.51915847147006,1247.8142,592.3888888888889,1541.5339079999997,36977.861122193455,3376.0,1257.4509999999993,584.0,777.0,32905.40298578325,12229.636750999996,270.06111763075205,1274.4496000000004,586.236111111111,1583.217068,36950.12622647192,560.7368421052631,9.384888157894732,1.6220344718344062,46.35526315789475,300.73684210526307,104.21881986930659,2666.96267393421,17.8709931530672,8.858168421052625,79.1735197368421,6.0244641578947355,3897.4498066175775,32.52354570637122,0.07663467797785192,-0.6698262837052336,22.39387119113574,103.73407202216066,-13.95224530724917,151.62310048943817,-1.2665484708547647,0.22353545706372255,-6.516717884349025,-0.15397384833795133,-35.76665079550334,80.27700831024933,-1.2201010214681243,-0.37661360867182614,8.780644044321331,9.750692520775607,35.069561649971924,407.23792165806685,7.380492336202382,-0.9836667590027546,18.108991468528785,-0.8262746530470937,1339.2102841505957,-147.71745152354572,0.47344475415514153,0.2787392048762273,7.604743767313025,32.80886426592799,-3.9253422872094834,-706.4671998010746,-0.8923928967486043,-0.13906398891965058,-8.723481023007079,0.8644103857340708,-804.1974658977086,224.75346260387815,3.352585353185583,-0.0023236286909008655,4.728878116343492,136.0692520775623,-10.014970061631354,1051.3355100370495,-0.4844205229196077,3.534218836565088,16.083677189135116,1.689910984764544,648.7285517241477,39.592797783933555,-0.6096141793628723,0.22090761472687345,1.8201177285318564,4.540166204986145,13.453399743505692,197.15171438175142,2.0871801895861073,-0.4516509695290789,0.20959453870421596,-0.6238256530470923,470.5930575192761,8.055401662049878,-1.965788954293612,-0.34257870109690347,0.9975761772853212,-10.839335180055405,-9.32460488070111,45.46409698095507,-1.0000285637151243,-1.509240720221594,-3.329430690212372,-1.6165993227146833,63.86091294991449,-76.88642659279782,-0.521078047091393,-0.5064922814757085,-0.263850415512464,15.797783933518021,-13.471493403015277,-370.51825562950216,-2.663189904714002,-0.5759800554016463,-29.110322406894426,-0.18337688919667838,-610.1827864479144,211.87811634349035,5.948504778393354,1.2606261000609988,-35.077562326869796,-12.806094182825479,15.999990626804061,984.2136710090023,2.237536838947658,5.452223268698066,47.27108341028007,3.8462056204986133,732.8178875888752,0.7177689380722263,0.5980014233419962,0.44578321943100707,0.3108318901587439,0.2912697705640805,0.17719646161934724,0.1715076193352999,0.08579179160401408,0.10725619421364732,0.04370098655937164,0.06736037955203827,0.022744308149873084,0.043605873760703726,0.012450845572212647,0.027469235893899772,0.006734954929610321,8.029406439938082,5.667373910134313,3.5554050959138817,2.167157049157577,0.4783679250054066,-0.52237136523069,4.022122158429143,0.9726639875939522,6.022506150420397,0.989330347838656,14.550920053487681,10.927848373184611,16.015145263836,11.67852540761951,2.027057125909046,0.7414441046806532,3.501483332005007,2.217089574328756,7.0082970723658375,1.1825560290818449,3.714386331954729,2.4130565871829983,20.92925709296995,14.700737746255475,0.21602570237605243,0.5130495502491086,0.7012731969454866,0.7986700643648313,0.8108310555717465,0.8148847193073852,1.4816388078507308,1387.1161806002438,0.0,1.0,8.0,0.0,15.0,0.0,5.0,0.0,1.0,4.8455203885868166,2.9172852020883626,1.6953649384800178,1.0630787831509343,0.9841314147298839,0.9578156252561989,369.6210241696748,3057.1226420875537,88.31592577043722,40.22529792220465,78.48832649139531,,17.0,1066.0,5.969305287951849,9.901064578912528,11.10891846424524,50.03475942222905,22.029827915475046,5.563451491696996,14.219595082555067,59.16440326394584,32.903945735995094,18.947451815200196,18.4,46.75,22.5,1.0,24.25,0.0,0.02820512820512824,-1.75,0.13051209103840677,0.05646929824561431,-0.07404279279279247,0.013205128205128314,0.14434055727554151,0.0,0.5710526315789458,0.8282051282051278,0.44054054054053904,0.5145833333333315,0.8149999999999995,40.70794670347278,0.6913183462707941,1.035318346270794,43.55214921885824,9.483633812364852,9.23926140373745,84.26009592233102,18.7228952161023,0.5696594427244585,0.17210144927536233,0.027173913043478264,0.29347826086956524,0.34375,0.28718049768119236,-1.0110032652572771,-0.057057126842696,-0.013302674542858913,-0.04212513605238655,0.7128195023188078,2.509442145975425,0.044643534863501706,0.033018975604939806,0.04825850280721971,-7.9560937349027245,0.8397630413964685,0.8044527798381556,1.3882527311298978,0.768009140656158,0.5682246137623339,1.2960455486547335,0.846165943468024,1.1888606834153024,0.7817768222870106,0.7892388080470085,0.8531962121916253,1.048269663995801,0.9045384414064696,1.1835195815057118,1.2790010512444412,1.3404095298673366,1.123153785426498,0.8944157696465995,0.8978374647158646,0.7973789282280375,1.149628628689858,0.6436966794102208,1.2157935025580113,0.7931268796795098,1.0601277071255846,0.894469587723165,0.9545508080042223,1.1440458055012954,0.9746770622554799,1.1100923338669058,1.0631368662495762,1.0709831204266158,0.9179422422047679,0.766906518299763,0.857135475840762,1.0989586698751934,0.7799049317493095,0.5580590136458579,0.7605964275041409,1.0478082802806048,0.739849492474624,1.076029571858115,0.7882873984638212,1.0310299420005702,0.5681217174853439,0.6451665821699579,0.536324284432382,0.9616531147586324,0.9532226208763753,1.0153647381536686,1.0682036631572809,0.9912726429539481,1.018039458310944,0.9783748690277424,0.9522778680208863,0.961466457130804,1.0056723997012404,1.1010444211185928,1.0321144680676766,0.9463264586909571,0.9846397542470035,1.157330776901779,1.2203363938556997,1.0563729610410366,1.0720029326709057,1.057399312937776,0.982344941234856,1.0281242703376714,1.1284199789591676,1.4528315681464659,1.2031570387570603,0.977548407529959,1.0459451849070773,1.1326513508909553,1.307941332477288,1.023346579619642,1.0249824991249565,1.0801982131572003,1.0447569380778798,1.0609955000576115,1.1179215645149412,1.5173686488358005,1.1501057303030375,1.0375705618293083,0.8430270862514622,0.7527080142029954,0.8468187973850756,1.4701467280944995,1.0730855052368005,0.9652551562389811,0.846538139508999,0.9494886410935828,0.7566231927977363,0.6112514897895319,0.746989471616266,0.9188261952198438,8.0,0.33292929292929285,3.555555555555557,3.673611111111111,2.5577777777777784,1.615,1.0401360544217686,1.0816326530612241,0.8922036407155454,0.43750771604938277,8108.35138647924,9198.219472169596,3766.9134639324784,3391.227698052105,18.55747416151189,0.43697165910499614,10.448383888357943,0.776109526583289,0.0,0.34375,1.4024071248567687,3.3306423113552226,4.552562574963567,5.184848730292651,5.263796098713701,5.290111888187386,0.19047619047619047,0.0070836019772189986,0.0602636534839925,0.05831128747795414,0.03817578772802654,0.02375,0.015074435571329977,0.01664050235478807,0.013316472249485753,0.007291795267489713,0.43038372658647606,31.92517006802721,14.944556162022407,8.306291111485917,229.4356301139964,0.0,4.581758869127501,272.7955084878075,,210.19001022875108,206.92103029140455,211.76022129592909,210.240831009951,306.2927322890396,209.14319489623426,210.35281720674138,260.6887328443185,0.05579885607830191,0.00785566104707439,-0.39727259422736616,0.4647470330594251,0.3318343132346491,-0.1287906850586677,0.054693401844717326,-0.06818041297673544,0.02427666291710021,-0.0791836412702273,-0.024587537794395688,-0.008828445588107782,0.07941912773243046,-0.07212066365489019,-0.12880388258400252,0.10508006820663378,0.01798630077489273,0.1866711536655975,0.08470797504708717,0.2291024166527893,-0.06160232269042048,0.12688413896138884,-0.07608499749738225,0.19061684192262335,-0.11846760335590824,0.022686478877027225,0.0772795998793802,0.07377554430983549,0.04906044118773989,-0.016937849493843603,-0.11912473655935485,-0.022456098468198966,-0.007059885164660629,-0.04954921243677411,0.06452506325450551,-0.0927916841406307,0.14505797062583248,0.12928407708187306,-0.000518442920133822,0.03691929226984578,0.16374485390936216,-0.03477745535962889,0.1426654115412512,-0.009809980481074253,0.14439222260965118,0.07351901725518968,0.10151721656107827,0.06023886482230338,0.025193649853567333,-0.023177145512931523,0.04859421775748684,0.0140098800771323,0.00538665430924128,0.04605957055457299,0.026376526874852445,0.041672086358857365,-0.018192525920856743,0.000944569675281651,-0.03694696709744902,0.04308230926004519,0.005299983050260545,-0.0772776952292908,-0.07791958854867852,0.007939504339031461,-0.013297266805087837,-0.03300887012807707,0.006289237624848545,-0.020644771879468116,-0.06285805705395668,-0.015514450497874295,-0.09899889325870745,0.006045064846369444,-0.0521043739440586,-0.02109877651852038,-0.11865781541812892,-0.002162929321600897,0.01996149807490377,-0.04911941527994071,-0.052792991261295795,-0.056628758968419665,-0.02470854138790655,-0.1397174528982371,-0.011566708020566724,-0.05949260936125734,0.13806298826009736,0.2315948889319925,0.28397262247680505,-0.2764907530732111,-0.015558951024474299,0.0560949589398872,0.1348412323699345,0.04574796321084595,0.2248950807132614,0.21815534648565027,0.23327292262074523,0.06870143177956788,22.004392322090148,36.777043759381186,13.065664975792922,12.598838836526905,30.774520899500608,38.7829982921235,40.28900063143207,40.763079578800486,41.07915852616891,79.21409808543551,65.67533559345911,2.3053066984458552,11.23345579353056,0.0,13.538762491976414,13847.11197150735,12016.880283043229,3962.6927672901666,304.0,59.0,77.0,107.0,142.0,171.0,206.0,251.0,286.0,531.262087904001,42.0,5.313205979041787,6.163314804034641,7.063903961472068,7.9483852851118995,8.863757191604241,9.765202019731785,10.688872014562484,11.600377578154724,12.529101350025869,0.6228070175438596,0.976157894736842,1.1214462256077131,0.5824145848761442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6620181295304127,0.9632610939112488,1.0009487484187527,0.6193496389814351,11.0,0.0,0.0,0.0,0.0,2.0,7.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,0.0,0.0,1.0,5.0,0.0,4.0,0.0,0.0,0.0,1.0,0.0,0.0,28.62107885783226,30.406715590442108,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,63.23578107830314,40.3044461498726,43.29709498070731,13.213763929025836,249.38492130168495,-877.9460018271452,-49.54788783450833,-11.551921076672965,-36.581083409464384,619.0059454713597,2179.1766402604085,38.76803793592888,28.67337684553169,41.90724308193093,0.47058823529411764,0.845957301674843,0.13948260507993168,86.85453713826287,0.10018955680288968,59.41833689658251,0.1540426983251571,9.0,0.2857142857142857,0.2244595702877838,0.533079537844945,0.728651631307802,0.8298509736446972,0.8424867425858669,0.8466986655662571,6.4027000000000065,,1.6428571428571428,1.8999534667287108,1.264054700727455,1.63809365307435,-7.0119474042167305,1.7135097919216649,1.6312317944257138,-2.713291496591583,153.3192999999997,28.84851639411272,0.0,4.567099647791355,0.0,32.730958474381225,40.647122940606735,83.55086873132018,0.0,22.6259266499618,4.442651256490317,0.0,5.771441123130016,2.3978952727983707,7.293697720601438,4.948759890378168,8.913684824725294,7.247792581767846,10.590742407391236,47.33333333333333,21.66546386591246,0.0,0.0,0.0,0.0,1.73595326645223,5.130038265886238,1.8589990787981858,74.18799999999999,0.0,12.786646574155732,0.0,0.0,0.0,0.0,0.0,-0.9813286218668147,85.22991314618619,9.473725907600098,0.0,11.49902366656781,56.29005527119064,21.433472782909455,0.0,42.386579761386145,66.73003775307771,0.0,22.029827915475046,0.0,44.263508450586954,50.31337784431137,49.218986626828695,545.591016975615,,420.2957713732531,413.74462707169477,423.4556192738721,420.39765721718027,615.1025739026697,418.19851749544694,420.62198150094815,522.3514677643366,49.218986626828695,545.591016975615,,418.73716331464516,411.9421071160804,422.25638789113066,418.84356836682764,619.5974119822959,416.5728800005469,419.0744026190572,524.0907571852285,4.9550632998794315,384.9417651198844,,296.38410300683273,291.67923058804024,296.4766146370133,296.4508021979139,428.1632707525913,294.7768630538595,296.62877932814075,366.6866799977286,1.2620252981238127,13.989513255785,,10.776814650596233,10.608836591581918,10.857836391637747,10.779427108132827,15.771860869299225,10.723038910139666,10.785179012844825,13.393627378572733,2.562193289811468,272.7955084878075,,210.19001022875108,206.92103029140455,211.76022129592909,210.240831009951,306.2927322890396,209.14319489623426,210.35281720674138,260.6887328443185,73.20784313725491,0.0,9.736670322561265,0.0,0.0,0.0,10.468465522256938,76.0721048798252,2.0020346752358655,0.0,22.012204661029344,0.0,0.0,0.0,0.0015190562452225276,0.0,0.0,47.07057256258907,734.6215944544028,106.58294148911442,253.1288156629969,345.99475569723114,394.0485035022415,400.0485035022413,402.0485035022414,1684.0,160.9361201837395,133.76927231864178,90.60666507728267,79.15,79.15,0.8888888888888888,9.71646143098631,6.392317422778761,4.4279288230542155,6.119856063605203,,6.107394017814045,6.108092443331947,6.099237962377923,6.107359836499454,6.0439227858359565,6.107276111813233,6.107392817774454,6.080435095258426,0.11353663648856963,0.15691938624628726,,0.15659984661061652,0.1566177549572294,0.1563907169840493,0.15659897016665267,0.1549723791239989,0.1565968233798265,0.1565998158403706,0.15590859218611347,2.8489084935651325,3.172515130364501,,3.1704767243413543,3.170591075173126,3.169140392310848,3.170471127615461,3.160029822122986,3.1704574187032057,3.1704765278517053,3.1660528082733945,416.20000000000164,2319.3384752917063,288.67950494917136,,290.29848235592834,290.1991457560569,291.6404838779396,290.3038833421763,298.306778694441,290.32482500038066,290.29762813942574,293.81010518071236,59.47021731517196,7.402038588440291,,7.443550829639189,7.441003737334793,7.477961125075374,7.443689316466059,7.648891761395923,7.4442262820610425,7.443528926651942,7.533592440531086,9.110013837175357,7.026293646460731,,7.031886196305218,7.031543949942682,7.036498377234227,7.031904801073532,7.059098968817957,7.0319769354957975,7.031883253755356,7.043910211044655,23.87120373982753,12.786646574155732,11.359646860392642,4.720225487334151,0.27477514124702185,21.66546386591246,0.0,8.492863715225582,3.24584128257155,503.7392242017117,216.56358796929769,-762.4002895066036,-43.026933263382276,-10.031582756665838,-31.766678729441814,537.539109525542,1892.377091487307,33.665810066271554,24.899698572201405,36.39186714398667,5082.0,63.0,3.253205919463725,2.0504212538383406,0.28867513459481287,0.25,0.8385493590323371,0.3742770697844119,0.14433756729740643,0.08333333333333333,0.0,0.0,0.0,0.0,0.06415002990995841,0.02795084971874737,0.4448648859726722,0.15960176308498486,0.8218765538092846,0.2385158905874524,27.992988584816825,23.322055510337854,18.722895216102298,13.054939386667245,17.18491646328075,10.454591235541487,13.206086688818091,6.605967953509084,11.476412780860263,4.676005561852766,9.565173896389435,3.229691757281978,7.456604413080337,2.1290945928483627,5.658662594143353,1.387400715499726,5.994416426665502,2.7840766749630372,9.943223189418035,3.6870330355685943,15.768467425600283,4.615832352050884,134.04746272649723,70.76162132334441,40.50078839859216,34.23041785274912,33.1125421913166,32.44181679445708,202.0,237.0,84.02334099999999,46.64065900000005,0.2894736842105263,282.07,13.284722222222221,8.694444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,21.0,22.0,76.0,0.0,0.0,79.0,22.0,1.0,11.0,68.0,23.0,42.0,56.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,6.0,1.0,1.0,39.0,7.0,0.0,1.0,6.0,0.0,4.0,12.0,0.0,0.0,0.0,1.0,4.0,4.007333185232471,8.650975333850399,4.617592705986649,5.2331119564227615,5.903486794236648,6.513044633771833,6.938451177203383,7.421172853240359,7.913988115107955,8.299402475581617 +6915744,CC[C@H]1OC(=O)[C@H](C)[C@@H](O[C@H]2C[C@@](C)(OC)[C@@H](O)[C@H](C)O2)[C@H](C)[C@@H](O[C@@H]2O[C@H](C)C[C@H](N(C)C)[C@H]2O)[C@](C)(O)C[C@@H](C)/C(=N\OCOCCOC)[C@H](C)[C@@H](O)[C@]1(C)O,0,19.47761194029851,6.169326865671641,2.791044776119403,5.91044776119403,167.58626541933157,76.29822341791044,1.195548811705403,6.197236567164178,4.006788971807628,7.764503223880595,175.06751902523834,21.66176470588235,6.409522058823531,3.4779411764705883,5.022058823529412,148.78307077166653,79.95229505882355,1.5442301907352938,6.525379411764704,2.847937091503268,7.87895094117647,224.89107923990085,17.75968992248062,6.339197674418603,3.2131782945736433,3.864341085271318,159.64037220063764,64.55824246899225,1.2530520815643447,6.404152713178295,2.6960055986218774,7.898904263565891,180.19962126543405,16.92757660167131,6.420022284122561,2.863509749303621,3.448467966573816,159.79701588507325,60.12046910584957,1.2096995842750753,6.476295264623955,3.1479418136799753,7.981249415041783,171.27391549773577,14.136645962732919,6.243132505175984,2.5196687370600412,2.63768115942029,163.84402447109355,48.979445511387155,1.093951533100186,6.287331055900622,2.824189095928227,7.854641093167702,149.7881819923328,13.423423423423424,6.144007207207206,2.4252252252252253,2.4342342342342342,163.30679591231674,46.14629822342342,1.0775471795743532,6.193375315315317,2.8025775775775776,7.763748699099098,144.8314566056439,12.98259493670886,6.12292246835443,2.4145569620253164,2.490506329113924,165.78880268871634,44.807944142405056,1.0436416940811866,6.161969620253164,2.735265031645569,7.759732848101266,140.13155975631187,13.789312977099236,6.115909923664122,2.454961832061069,2.5435114503816796,162.0904311124603,47.778844922137395,1.1100776095889249,6.172113740458016,2.7726993214588638,7.727015987786263,149.15628606609476,12.303547963206308,6.077206307490145,2.2181340341655718,2.1984231274638635,165.516239756875,41.718778501971094,1.0198082504748807,6.118701051248359,2.7025843188786682,7.713764478318005,134.10077484138301,7.897304522165293,0.1653640899977723,0.021478027204263644,0.6515927823568723,3.9420806415682783,1.1968820613367157,37.27694388104255,0.2048365781562927,0.1533445589218088,1.4304445589218089,0.10829682067275559,46.51045423152656,0.338209086263153,-0.0010606549670434747,-0.00922096086601539,0.3043993159749976,1.285641044120923,-0.2172013484690355,1.554142913953069,-0.026419612692758845,0.0012566153538715887,-0.20536895654155335,-0.004312216634125276,-1.8903473458522262,0.929028926868607,0.0020135797928097633,-0.0021157782624627876,-0.021892446825228253,0.1663886399312013,0.0678205519712078,4.451681349722235,0.017134964637167162,0.004372472201643658,-0.00954718853858289,-0.0009652207653161097,5.996565197357311,-0.35587517863226176,0.0008351200799728054,0.0019534263639199626,-0.05328903646238934,-0.17947306662960105,-0.09118035196747369,-1.7393832114379209,-0.01636994441911371,5.3096256339434144e-05,0.043098386749093796,0.001261698929788716,-3.617756059272695,-0.3937354111983885,-0.011144455252245212,-0.000750703737340808,-0.03177262846793196,-0.29132819263283116,0.03921835801176708,-1.8137670206241405,0.0024288929730057096,-0.010466066291791224,-0.10044932717852394,-0.0069662193934379515,-0.4771749020796422,-0.36230384985118785,-0.006746800768244241,-0.00015426253440595992,0.01848923996395592,-0.14762050979471342,-0.07870013763006659,-1.7211924054475491,-0.01257259819727089,-0.006259751875957028,-0.024430989382119933,-0.004575775627710591,-2.6187508641536352,0.19279088686550244,-0.002092367911998623,0.0003309112264222149,0.01320034063575941,-0.03645056410748076,0.14560795742824814,0.9828195675215936,0.02232133068654674,-0.0018522707581965362,-0.0018963715884335482,-0.0011236699075941024,3.7983529485357486,-0.1605607600597899,0.000621463152506848,-5.277536292396455e-06,-0.052686550159082676,-0.03336467939441454,-0.11079293994084656,-0.8021581191649114,-0.014690929344796598,0.00048462075233948797,0.0007541707124625296,0.0003315081867635646,-2.6206491807311254,-0.22770246673940006,0.00023148926753061757,-0.0003671313274047267,-0.032395732128382745,-0.051383012760935,-0.011736911047617211,-1.1074508739230855,-0.00771567528858212,-0.00028533500198615696,0.00944963796497926,0.0007395585611667404,-1.868017652776428,,,0.4534482758620689,0.6896551724137931,0.05172413793103448,0.0,0.6379310344827587,-0.5862068965517241,2.1384934141157568,0.03363258559121381,0.03808086145328277,0.8520911029066064,0.12350721251157784,0.34138112538639964,2.9905845170223633,0.4648883378979775,1.965327711957883,1.4058809261433352,0.06963183753164984,0.48981494828289823,0.0,0.559446785814548,6.242720669641807,2610.0,826.6897999999999,374.0,792.0,22456.55956619043,10223.961937999999,160.203540768524,830.4296999999999,536.9097222222222,1040.4434319999998,23459.04754938194,2946.0,871.6950000000002,473.0,683.0,20234.49762494665,10873.512128000002,210.01530593999996,887.4515999999998,387.31944444444446,1071.537328,30585.186776626517,4582.0,1635.5129999999997,829.0,997.0,41187.21602776451,16656.026557,323.2874370436009,1652.2714,695.5694444444443,2037.9172999999998,46491.502286481984,6077.0,2304.7879999999996,1028.0,1238.0,57367.1287027413,21583.248408999996,434.282150754752,2324.99,1130.111111111111,2865.26854,61487.33566368714,6828.0,3015.433,1217.0,1274.0,79136.66381953818,23657.072181999996,528.3785904873898,3036.7809,1364.0833333333337,3793.791648,72347.69190229673,7450.0,3409.9239999999995,1346.0,1351.0,90635.27173133579,25611.195514,598.038684663766,3437.323300000001,1555.4305555555557,4308.880528,80381.45841613236,8205.0,3869.6869999999994,1526.0,1574.0,104778.52329926874,28318.620697999995,659.5815506593099,3894.3648,1728.6874999999995,4904.15116,88563.1457659891,9032.0,4005.9210000000003,1608.0,1666.0,106169.23237866149,31295.143423999994,727.1008342807459,4042.7345000000005,1816.1180555555557,5061.195472000002,97697.36737329207,9363.0,4624.754,1688.0,1673.0,125957.85845498188,31747.990440000005,776.0740786113842,4656.331500000001,2056.6666666666665,5870.174768000002,102050.68965429247,1058.2388059701493,22.15878805970149,2.878055645371328,87.31343283582089,528.2388059701493,160.38219621911992,4995.110480059701,27.448101472943222,20.54817089552238,191.6795708955224,14.51177397014925,6232.400867024559,45.99643573178881,-0.14424907551791255,-1.254050677778093,41.39830697259967,174.8471820004455,-29.539383391788828,211.36343629761737,-3.593067326215203,0.17089968812653605,-27.930178089651257,-0.5864614622410376,-257.08723903590277,239.68946313210063,0.5195035865449189,-0.5458707917153992,-5.648251280908889,42.928269102249935,17.497702408571612,1148.5337882283366,4.4208208763891275,1.1280978280240637,-2.4631746429543857,-0.24902695745155629,1547.1138209181863,-127.75918912898197,0.2998081087102371,0.7012800646472666,-19.130764089997772,-64.43083092002678,-32.73374635632305,-624.4385729062136,-5.876810046461822,0.01906155602585686,15.472320842924674,0.45294991579414906,-1298.7744252788975,-190.17420360882164,-5.382771886834437,-0.3625899051356103,-15.346179550011138,-140.71151704165746,18.9424669196835,-876.0494709614599,1.1731553059617577,-5.055110018935161,-48.517025027227064,-3.3646839670305306,-230.47547770446718,-201.07863666740926,-3.7444744263755534,-0.08561570659530776,10.261528179995535,-81.92938293606595,-43.678576384686956,-955.2617850233897,-6.977791999485344,-3.4741622911561505,-13.559199107076562,-2.539555473379378,-1453.4067296052676,121.84384049899754,-1.3223765203831297,0.2091358950988398,8.342615281799947,-23.036756515927838,92.02422909465282,621.1419666736472,14.10708099389754,-1.170635119180211,-1.1985068438900024,-0.7101593815994728,2400.559063474593,-105.16729783916239,0.40705836489198544,-0.003456786271519678,-34.50969035419915,-21.85386500334152,-72.5693756612545,-525.413568053017,-9.622558720841772,0.3174265927823646,0.4939818166629569,0.21713786233013482,-1716.5252133788872,-173.28157718868346,0.17616333259079997,-0.279386940154997,-24.653152149699267,-39.102472711071535,-8.931789307236699,-842.7701150554681,-5.871628894610994,-0.21713993651146543,7.191174491349217,0.5628040650478895,-1421.5614337628617,0.7571227607859407,0.643499647918768,0.449392059968045,0.34598538554938585,0.290119406912057,0.19925433548345906,0.18463720430547223,0.10953295330626668,0.11555156003009101,0.06426552598381527,0.07070865812654277,0.03221746713460117,0.04303685688234708,0.018048214164548198,0.02690326170006752,0.00966654162326553,8.034212956903312,5.771459347676595,3.559016083390295,2.267271574723776,0.45633705071643826,-0.4903913034256951,4.029179245926607,0.9775481794026395,6.030093537973469,0.9874751601822378,14.557149582112098,11.03460123092818,16.022145811166535,11.78522154432461,1.929879941962511,0.7412396982265793,3.504978455331636,2.3159737041869364,7.008284439814984,1.1176538387219213,3.7177594852007965,2.5113721196796126,20.82719120175212,14.696685363613167,0.2013038937632721,0.4037868910210409,0.6928831496022211,0.8451103255335021,0.9010492731162911,0.9010492731162911,2.1841069239773194,1303.8127067323928,0.0,1.0,14.0,0.0,1.0,13.0,0.0,7.0,0.0,5.635115538396878,4.195760200308282,2.140712375820897,1.0586017727271129,0.6609583957484242,0.6609583957484242,538.3044454410318,6514.555069690907,90.39912625139166,48.61608260963363,96.7445332821756,,20.0,1784.0,101.75190007845703,30.327174158275348,44.80809635628703,18.73938859020963,0.0,14.033534740968157,55.57595793911189,32.84272809558611,5.15571272675054,42.732492214137025,26.299999999999994,40.0,3.0,0.0,37.0,0.0,0.04655172413793114,-34.0,0.12845478489903472,0.0,-0.12845478489903472,0.04857690202517817,0.21683553875236344,0.0,0.5649253731343271,0.912068965517242,0.4364705882352924,0.5649253731343271,0.8634920634920639,124.03261801871389,1.950689964290401,2.208689964290401,49.42128396858317,7.163418325671515,19.80010527241118,173.45390198729706,26.963523598082695,0.4971644612476365,0.34220532319391644,0.05703422053231941,0.3384030418250952,0.9512195121951219,0.2353156963905254,-1.507529688001062,-0.0466736124478914,-0.01125022155224673,-0.04711030275003319,0.7646843036094745,4.89888395598805,0.04222489092282119,0.03655883549244813,0.048028274078314226,-3.213834377892077,0.9781825514753587,0.8677606304664414,1.4527466642104931,1.1312355455002514,0.6377811162043932,1.7064638408480324,0.9891804502513293,1.60800833931347,0.8501040397732788,0.9947401462152325,0.9198715124730502,1.3567929661614058,0.9357840027691896,1.078206478298306,1.2328529467837408,1.7357940767243094,1.1613111446374251,1.1641168804440813,0.9349662898123461,1.094829529684142,1.0499929838533362,0.8616366020644692,1.1182572914685953,0.9824001426662226,1.124998163340368,1.1817640406639542,1.167233104769118,1.4999111968192749,1.2427695603116955,1.2810389785345586,1.125369556146356,1.242697841919378,1.1680700189678774,1.1308882955667732,1.2060734319741948,1.1742094574752435,1.1014609264716884,1.2128975548058254,1.2316680604975336,1.2725269416573763,1.2161550469114446,1.051116608871103,1.0982687118764936,1.0453816748042069,1.2010142303007414,1.2283724545704762,1.228934871032886,1.0392705289319952,1.0676050383971176,1.0937433392814053,1.123118135571739,1.1129315469315468,1.0987591230470977,1.1431665334503112,1.067824373118245,1.1324155677840766,1.0875779889122943,1.1238950202608553,1.10977825122321,1.0975267685756807,1.0004725947278272,1.0984473786494502,1.0337102310786668,1.1424358974358975,1.1192659617348981,0.897198676761624,0.9969364017102895,0.9003146546838829,1.0908141399976528,1.113191597933821,1.1074834816945553,0.9183188835643259,1.0257832712220136,0.9830280195512718,1.0353424924722818,1.3337139688132056,1.0255713112378007,1.202245784996135,1.0287142254372168,1.178488863954586,0.981300827297992,1.102020395031015,0.9941843842372018,1.1234880577806041,1.0364926718083716,1.024598465787092,1.0477877511527478,1.0908936734166694,1.0481461767494469,1.0389680420857563,1.0371153224157816,1.0531460545089832,1.0246824740938536,1.0584399466391943,1.0218100344372618,1.046529000498992,17.0,1.2473217018671563,10.222222222222225,7.3125,5.440000000000001,3.7569444444444438,3.040816326530612,2.7725694444444446,1.9604434366339127,1.4650000000000003,15497.226395580306,18506.34057708042,5619.584940236236,4847.895723934591,17.05587991054226,0.45288867179837644,9.331465111504164,0.8277815655673578,0.0,0.9512195121951219,1.430973652060894,2.87032899014949,4.925376814636875,6.007487417730659,6.405130794709348,6.405130794709348,0.2833333333333333,0.009239420013830789,0.11485642946317107,0.06708715596330275,0.046101694915254246,0.02981701940035273,0.02141419948260994,0.017772881054131055,0.012897654188381003,0.010464285714285716,0.6129840735286526,52.345,22.56684762024997,13.041965973534971,345.0832347252334,0.0,4.957825832947348,464.0930481011368,,401.0710916518492,392.7730127916458,413.73743493811793,401.22671170107793,680.315802820494,398.80611927353175,401.44561223508657,541.5657645430947,0.04282588892373399,-0.006414058620936161,-0.4293206623830386,0.46716189039718437,0.3261326088979895,-0.18147264086025164,0.04169180067208887,-0.12897897890385757,0.008194717587027939,-0.14357002182338982,-0.039818497046701457,-0.04064349353464014,0.11763873664249744,0.012176644837684462,-0.09850896650520959,-0.03359835685417081,0.04220832982884056,0.0566643566329866,0.11942184326935043,0.0836518789339128,0.028514035531402224,-0.0066742807185613965,-0.00891273408877581,0.12892940515065127,-0.04506286640377487,0.005050190038139814,0.09094999020823405,-0.08178272980501393,-0.04552749751922915,-0.07618156785275952,-0.04666110014245284,-0.07991709569871477,0.00034625458322592464,0.030129365364274595,0.011650378302436384,-0.07778371807042989,-0.049856936641267266,-0.06739344226666952,-0.03495217368901481,-0.04876148006582789,-0.0739021392816896,0.0327671031914095,-0.048656537574866605,0.011857711131809848,-0.06825195732655846,-0.07022245395811576,-0.06432524380829265,-0.010259519283649456,-0.045876900002312544,-0.04079967282095605,-0.007182341885447327,0.028375452375452352,-0.037447359203688316,-0.06575429624383523,-0.04617310933375291,-0.061378677140749,-0.04082148020099565,-0.017079298341023914,-0.04225216954002165,-0.05630456436992925,0.024412239179127257,-0.012653097247575396,0.015406965606064839,0.02025857405604239,-0.009246529287888852,0.12165606130451029,0.02636534718774018,0.1089714097328618,-0.012079142365533941,-0.0013257218370371024,-0.010375834679298077,0.08166664917155507,-0.020331083803232543,0.003758150590706967,-0.0002457179256830814,-0.08085809356038365,-0.008463723203070006,-0.09256796765515016,-0.021518880993161422,-0.07172024389895464,0.003160338754416442,0.0005272282017214161,0.0030611072855526835,-0.05634537920626777,-0.028832934845086648,0.0013998762822916152,-0.017093344929363288,-0.04971775778608894,-0.013034490522368738,-0.00980623858169372,-0.029708735712271936,-0.037667468174043456,-0.0018607442219821491,0.0066060847350154425,0.006828996055216534,-0.04016339301864342,2.7652573920338868,17.71721685995855,28.25890456366055,13.672718453903176,29.620100278722795,38.893474706281935,42.684709156271694,43.30927994892292,43.30927994892292,113.98900729355721,81.54109371631344,4.03864657683569,28.409267000408096,0.0,32.44791357724378,18462.58390586566,14663.45882268102,10341.140387983882,297.0,89.0,115.0,139.0,163.0,183.0,208.0,234.0,270.0,836.5245697320022,60.0,5.700443573390687,6.561030665896573,7.467942332285852,8.350193650720067,9.260938424739274,10.152181884694343,11.065309354602123,11.96154584339232,12.876107277041624,0.5671641791044775,0.9801194029850747,1.1455468220737473,0.5200817161383159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5960151398695148,0.9640913081650571,1.0076420519398637,0.550950524195631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,14.0,0.0,0.0,0.0,5.0,7.0,0.0,9.0,0.0,15.0,1.0,3.0,0.0,0.0,73.16503891919103,23.912949974228596,12.580053458670426,6.792942306099827,0.0,4.794537184071822,0.0,0.0,0.0,32.85066152551303,74.90023203227615,44.43597567311322,66.5652885386668,239.28786807843358,-1532.9770628987442,-47.46147150184177,-11.440127335065254,-47.905533215585756,777.5923135194654,4981.578006792162,42.93765474954989,37.17595527456837,48.83900006658984,0.5,0.818124185732214,0.07163705259842551,0.0,0.0485745125966922,40.851992271894865,0.1818758142677857,10.0,0.21666666666666667,0.20251282052784128,0.40621182563413666,0.6970442463828832,0.8501856197687575,0.9064605076537954,0.9064605076537954,2.2096000000000076,,4.035714285714286,4.657049790600278,3.047511959089814,4.023984043444781,-17.270777601450913,4.2031823745410035,4.007947989508242,-6.623566427357243,212.46599999999918,73.05966637241238,0.0,4.899909730850478,28.827336911396117,179.17743631136617,48.32164528303511,0.0,0.0,0.0,4.795790545596741,0.0,6.1675164908883415,0.0,7.724446645633537,0.0,9.36947859331448,0.0,11.062740149172154,75.99999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,131.336,0.0,14.32306010010004,0.0,0.0,0.0,0.0,4.3867537399433285,-0.4461389910833162,153.50327415788215,0.0,0.0,0.0,174.69196010156753,47.527029398208846,23.671624184645573,94.92065848861026,5.15571272675054,0.0,0.0,0.0,69.69094996253433,79.86602874251498,70.18772999960353,928.1860962022736,,802.051977552474,785.4485587509796,827.3844339884915,802.3633215954335,1363.2173975367584,797.5189431444824,802.8014888728319,1083.3599279285122,70.18772999960353,928.1860962022738,,798.4381566528041,781.30480916905,824.6126892675863,798.7595102930909,1377.9023832424393,793.7603029910118,799.2116530763611,1089.7550955135462,4.9785185644880166,607.0531574811521,,526.6158720360004,516.2223750061947,542.563888620832,526.811072737637,879.2801947283192,523.7803764483125,527.0850021618057,703.2124430277815,1.2101332758552332,16.003208555211614,,13.82848237159438,13.542216530189304,14.265248861870544,13.83385037233506,23.503748233392386,13.750326605939351,13.841404980566066,18.678619447043314,2.4892592822440087,464.0930481011368,,401.0710916518492,392.7730127916458,413.73743493811793,401.22671170107793,680.315802820494,398.80611927353175,401.44561223508657,541.5657645430947,129.18823529411765,0.0,23.7042855586811,0.0,0.0,0.0,59.165276135829004,135.02403495994173,1.1088356922237752,0.0,53.70126887721996,0.0,-13.969260457995517,1.900277935261362,-4.791025256846389,0.0,0.0,73.82737024221454,831.9342705570072,191.7504693761598,384.6240846800317,660.0004931613413,805.0033139759083,858.2875264910526,858.2875264910526,1816.0,201.39569300676283,184.9459110408917,97.11997242460527,216.88999999999996,216.88999999999996,1.0,7.642524134232902,6.906890595608519,6.391294436690718,7.47759823244926,,7.4955584241553055,7.4983004153272,7.493826106598679,7.495515015112165,7.422879991898161,7.496425258376635,7.495422891576573,7.454451994103228,0.11019473166708134,0.12892410745602173,,0.12923376593371216,0.1292810416435724,0.1292038983896324,0.1292330175019339,0.12798068951548552,0.1292487113513213,0.12923142916511332,0.12852503438109014,3.6127947376788976,3.769769566059164,,3.7721685525563413,3.772534301124714,3.7719374133043213,3.7721627612374853,3.762425038495013,3.7722841922529486,3.7721504706741906,3.7666693545632666,655.380000000003,2800.5241312321173,498.3293850066943,,494.71767524771315,494.1752089006477,495.01468262585826,494.7261379344098,508.1450986319153,494.5452820231595,494.7445074185239,502.4861117708495,48.284898814346846,8.591885948391282,,8.529615090477813,8.520262222424961,8.534735907342384,8.529760998869135,8.761122390205436,8.526642793502749,8.530077714112482,8.663553651221543,9.695419785923615,7.9691191916141735,,7.961845164372977,7.960748045746332,7.962445341551581,7.961862270319942,7.9886249515753445,7.961496635753702,7.961899400242295,7.977425918836695,48.12980474324705,21.79480216933431,63.552029875772334,-4.493387337864709,-4.140046101783253,-0.32800048123711156,-9.493823707857647,17.30215272629137,6.759801447430997,829.19648385498,243.32709074577164,-1558.853994105889,-48.262629759696374,-11.633238761984245,-48.71418731580903,790.7182129808045,5065.667948190914,43.662450159110186,37.80349215067846,49.66341125677368,12923.0,109.0,6.237223017161333,3.7392617305650946,0.5151283791960046,0.24915602550085397,2.3346772349936993,0.8693276635694382,0.34622504486493766,0.0837947314097778,0.0,0.0,0.0,0.0,0.0,0.0,0.10366807798802437,0.05985279273275698,0.3948487851733933,0.16451696651629477,43.913120125584555,37.32297957928854,26.9635235980827,20.75912313296315,25.820627215173072,17.733635858027856,21.233278495129305,12.596289630220669,16.06166684418265,8.932908111750322,11.525511274626473,5.251447142939991,7.875744809469516,3.3028231921123203,5.595878433614044,2.01064065763923,14.26295060858484,7.080197175044093,21.82306774455813,10.056188203266125,32.690982958141966,12.489066412534868,207.57026769309343,99.29224058118909,52.92804011585875,33.005447738185794,28.43553348599621,28.43553348599621,298.0,353.0,133.3762680000001,94.44573200000016,0.208955223880597,294.17,26.4375,12.847222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,134.0,0.0,1.0,136.0,0.0,2.0,2.0,134.0,2.0,60.0,134.0,0.0,0.0,0.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,76.0,17.0,5.0,3.0,58.0,17.0,0.0,2.0,15.0,0.0,3.0,13.0,0.0,0.0,0.0,0.0,0.0,4.143134726391533,5.883322388488279,4.553876891600541,4.836281906951478,5.0369526024136295,5.231108616854587,5.3471075307174685,5.488937726156687,5.6240175061873385,5.777652323222656 +6433334,CN(C)CC[C@@H](c1ccc(Br)cc1)c1ccccn1,0,50.473684210526315,5.745194736842106,2.9210526315789473,4.975453035881886,160.63660742001923,239.59401226315785,1.7050669787402895,5.874863157894737,2.309077413183164,7.3437975,225.18153635130784,26.615384615384617,6.082692307692308,3.4871794871794872,5.000949667616334,144.50687064346405,103.86281269230766,1.9097549202564108,6.254692307692308,2.678695789806901,7.5255186153846125,263.07926474507053,22.73134328358209,5.9836716417910445,3.2388059701492535,3.5008291873963513,155.06905710388494,88.1113245373134,1.6447196623700293,6.115014925373136,2.3264234383637374,7.5022757611940305,218.37370223424378,19.13953488372093,5.799023255813954,2.7906976744186047,2.634366925064599,154.15869631034585,70.8940433372093,1.5236284428295233,5.9370406976744174,2.12984496124031,7.372956558139535,191.03066100253002,14.06,5.612469999999999,2.45,2.1603703703703703,160.4423972722837,49.97842602000001,1.2768483035546998,5.718364999999999,1.9279320987654318,7.240612859999999,156.30958076529984,15.0,5.6932542553191485,2.5,2.5189125295508275,159.39643368582367,54.89392446808511,1.322124300225798,5.79517659574468,2.122668768058839,7.280916914893616,167.36064212163188,16.83157894736842,5.718873684210527,2.389473684210526,1.9953216374269005,159.43879397562554,62.56934654736842,1.342900399805547,5.829363157894736,2.1660006497725797,7.319838526315789,166.4000207646932,18.264367816091955,5.7528482758620685,2.0689655172413794,1.1907194550872713,160.6223569266619,68.19938581609196,1.3329612390526895,5.86887816091954,2.1557577692635164,7.378156528735631,157.60014523745053,15.93421052631579,5.434734210526315,1.644736842105263,0.37962962962962965,162.86622827864701,59.23981027631581,1.1604703625799209,5.550669736842106,1.7225877192982455,7.159509026315789,122.6531012189685,31.847645429362867,0.05069168975069247,0.006383560918270073,0.5103878116343488,2.860781475021754,1.4670312731874566,169.01367395567866,0.32511801569978455,0.05915013850415509,0.2597986583716166,0.02663013088642657,56.91855157507082,0.2022870942538532,0.005316002556999694,-0.0006590165472084106,0.1650507848568791,0.8044597646184461,-0.29432497385586903,0.888358959301097,-0.015426463302605001,0.0057087009020526215,0.015004581790622779,0.0014550634455572362,-1.4308870656074186,0.7760780584611566,-0.01085484764542942,-0.0016569254672697256,-0.051236201265142396,-0.32103920736932956,0.3172174120656256,4.202053258775379,0.04453125235302532,-0.00982727911688102,-0.010683643506587319,-0.0052315389775498995,5.313556122259018,-2.2307543644914003,-0.007683366617277605,-0.00037959413993677394,0.0018520904464343424,-0.10452762381799582,-0.14077210854605254,-11.233445207208653,-0.03865474776627296,-0.009301974489467252,-0.04487682836354074,-0.003453204937834171,-8.483989180476401,-0.1571191135734068,0.0018019944598338105,0.00017676989201309331,0.03198060941828255,0.2647062153977102,-0.0036260129474724673,-0.9665942019944671,0.0058610346299371955,0.0021486509695290983,0.011474512338079336,5.8954639889186944e-05,2.428955896968104,1.5790063063594035,0.006808030294100308,0.0013018935423075083,-0.04454234690870513,0.15870939820807645,0.034454188891783574,8.068686289002173,0.018123841141354773,0.007090063063594034,0.031198434356921205,0.003229904667884712,3.094275805743102,0.5224376731301938,0.00025628808864265346,-0.00037342407679771003,-0.11925207756232689,-0.46348012113888803,-0.1427963819547548,2.6710147734071983,-0.0012285807385223068,0.0007037673130193866,0.028262815434188675,-0.00029013476454293623,-0.928681032034927,-1.4060241347470306,-0.012724539115483812,-0.001592044497836938,-0.07118635972872289,-0.9117010733411418,-0.06598190767250772,-6.9444869998408,-0.038808750941671216,-0.013507065303913138,-0.09488655401299538,-0.003509271842264453,-10.419624506162759,-0.5339335180055398,0.0020979224376731906,0.00026475255099211764,-0.01004155124653743,-0.23337000178592457,-0.21285151405592811,-3.133429684903048,-0.03588767015530614,0.002134279778393405,-0.04659387123863371,0.0030059833795013646,-6.642819343045199,,,0.5333333333333334,1.25,0.6578947368421053,0.02631578947368421,0.5921052631578947,0.06578947368421052,0.7846716834160263,0.01313209286456042,0.022184724443507785,0.7595825897445141,0.2441816780870976,0.23817115338376807,1.5442542731605404,0.48235283147086566,2.008172087547469,1.7032662623174515,0.21215084209166699,0.0,0.09275498313835011,0.30490582523001714,8.370346334421066,1918.0,218.31740000000002,111.0,189.06721536351165,6104.191081960731,9104.572465999998,64.792545192131,223.2448,87.74494170096023,279.064305,8556.898381349698,1038.0,237.22500000000002,136.0,195.03703703703704,5635.767955095098,4050.6496949999987,74.48044189000002,243.93300000000002,104.46913580246914,293.4952259999999,10260.09132505775,1523.0,400.906,217.0,234.55555555555554,10389.626825960291,5903.458743999998,110.19621737879197,409.7060000000001,155.8703703703704,502.65247600000004,14631.038049694333,1646.0,498.71600000000007,240.0,226.55555555555554,13257.647882689742,6096.887726999999,131.032046083339,510.5854999999999,183.16666666666666,634.074264,16428.63684621758,1406.0,561.247,245.0,216.03703703703704,16044.23972722837,4997.842602000001,127.68483035546997,571.8364999999999,192.7932098765432,724.0612859999999,15630.958076529983,1410.0,535.1659,235.0,236.77777777777777,14983.264766467426,5160.0289,124.27968422122501,544.7466,199.5308641975309,684.4061899999999,15731.900359433397,1599.0,543.293,227.0,189.55555555555554,15146.685427684428,5944.087922,127.57553798152698,553.7895,205.77006172839506,695.3846599999999,15808.001972645856,1589.0,500.4978,180.0,103.59259259259261,13974.145052619584,5933.346566,115.96762779758399,510.5924,187.55092592592592,641.8996179999999,13711.212635658196,1211.0,413.03979999999996,125.0,28.851851851851855,12377.833349177174,4502.2255810000015,88.19574755607398,421.8509,130.91666666666666,544.1226859999999,9321.635692641607,1210.210526315789,1.926284210526314,0.24257531489426276,19.394736842105253,108.70969605082665,55.74718838112335,6422.519610315789,12.354484596591814,2.2477052631578935,9.87234901812143,1.0119449736842097,2162.9049598526913,7.8891966759002745,0.20732409972298807,-0.025701645341128017,6.436980609418285,31.373930820119398,-11.478673980378892,34.64599941274278,-0.601632068801595,0.22263933518005224,0.5851786898342883,0.056747474376732214,-55.80459555868933,51.997229916897496,-0.7272747922437712,-0.11101400630707162,-3.4328254847645407,-21.509626893745082,21.253566608396916,281.5375683379504,2.9835939076526965,-0.6584277008310283,-0.7158041149413503,-0.35051311149584324,356.0082601913542,-191.8448753462604,-0.660769529085874,-0.03264509603456256,0.15927977839335344,-8.989375648347641,-12.10640133496052,-966.0762878199441,-3.324308307899474,-0.7999698060941838,-3.859407239264504,-0.2969756246537387,-729.6230695209705,-15.71191135734068,0.18019944598338106,0.01767698920130933,3.198060941828255,26.470621539771024,-0.3626012947472467,-96.65942019944671,0.5861034629937195,0.2148650969529098,1.1474512338079337,0.005895463988918694,242.8955896968104,148.42659279778394,0.639954847645429,0.12237799297690577,-4.186980609418282,14.918683431559186,3.238693755827656,758.4565111662042,1.7036410672873485,0.6664659279778392,2.932652829550593,0.3036110387811629,290.8619257398516,49.63157894736842,0.02434736842105208,-0.035475287295782455,-11.328947368421055,-44.03061150819436,-13.565656285701706,253.74640347368384,-0.11671517015961916,0.06685789473684173,2.684967466247924,-0.027562802631578943,-88.22469804331807,-122.32409972299166,-1.1070349030470916,-0.1385078713118136,-6.193213296398892,-79.31799338067934,-5.7404259675081715,-604.1703689861496,-3.376361331925396,-1.175114681440443,-8.255130199130598,-0.30530665027700743,-906.5073320361599,-40.57894736842103,0.1594421052631625,0.02012119387540094,-0.7631578947368447,-17.736120135730268,-16.176715068250537,-238.14065605263164,-2.7274629318032666,0.1622052631578988,-3.541134214136162,0.2284547368421037,-504.8542700714351,0.7192066283684293,0.6825660099054515,0.45823518989732237,0.363504102493504,0.30973437444118507,0.22562948907363548,0.1935061748662319,0.11970383490011476,0.12259007089981604,0.06352955721376989,0.08183224196771467,0.037895660047337354,0.054558645540341656,0.025149230418939027,0.03657806779435179,0.014120218133312231,35.00041793495933,5.692058472171198,3.1463200517270917,2.188950731399636,0.340091864379935,-0.3829382543705655,3.1680901048978796,0.9886008491231986,5.033414566453131,0.2560121739490321,14.548237693889174,10.95075976205804,79.90417849027469,11.703242818363847,3.0589799010223286,1.0250365384616311,3.1276481334924218,2.2396163387861225,3.039060981293224,1.0438496893166693,3.289109472911829,2.4357555269319184,26.52389176618184,15.589195489533846,0.25257806921049625,0.554486471150178,0.7583481207535092,0.8525138456329809,0.8525138456329809,0.8525138456329809,1.9155576903946374,493.91719964890143,0.0,1.0,1.0,0.0,9.0,1.0,1.0,1.0,0.0,3.86080586198495,2.2027692699845653,1.0831910383876355,0.5660467106401805,0.5660467106401805,0.5660467106401805,92.13126061337388,555.1602188396103,29.164834322300813,14.609479443147638,29.43218430468145,,9.0,279.0,0.0,0.0,0.0,5.917906046161393,23.13222553951946,5.563451491696996,0.0,12.263210640074686,76.30737852587107,0.0,10.133333333333335,23.75,12.5,0.5,11.25,0.0333333333333334,0.0,1.25,0.08462519936204133,0.046418128654970636,-0.03820707070707069,0.0,0.0,0.001294117647059112,0.5228070175438598,0.7456140350877191,0.4381818181818185,0.4763888888888892,0.7456140350877191,14.9087619849045,0.24950976442664796,0.42150976442664795,14.432069205145767,4.639451883654854,4.5252519142915935,29.340831190050267,9.164703797946448,0.7152941176470591,0.23026315789473678,0.0,0.23684210526315785,0.3125,0.4113002518306999,-0.4396657978401522,-0.026330086335305473,-0.011570152574740845,-0.02931105318934348,0.5886997481692999,0.6292997471192708,0.029827040845301467,0.016560519661033446,0.027360858570403084,-5.1312565593218356,0.5177844610522702,0.8353248540013897,1.1828965464400878,0.8804926416866721,0.7461352029404373,1.3424528510889406,0.5118137637658003,0.8696993176605086,0.7800302975066005,0.9276710343430248,0.7865097894675644,0.9730562204192515,0.5954927891636886,1.4888896514819308,1.8105096989032854,1.4521557747220486,1.3157638641342193,0.9042748929795731,0.5873277232555735,0.6917598689293943,1.3005602501886535,1.0053049982865683,1.3864277982261757,0.8268769283262735,0.9337266445645076,1.0779353702710337,0.9633059200895202,1.1535136158530819,1.0233590469598048,1.116377468612836,0.9289485033200483,1.0566008185014433,1.0764210794177567,1.1441276633103736,1.0348973642645134,1.1169220335142531,0.6614510307036622,0.8627161510844441,0.7975205440922413,0.9252510176390778,0.8528089415290044,0.9554457000211266,0.654393613222981,0.8520735233961989,0.853407931832231,0.894454971169455,0.810877702186272,0.9125499442986202,0.3236205004450746,0.849002276981869,0.7907855776279556,1.0553422442911176,0.9369053792325714,0.974643197204301,0.3109677095849058,0.709472819023848,0.7960056861276656,0.930091385810609,0.7051077458924836,0.8704652008658067,0.6557145342263201,1.0357743569566715,1.1943896910692502,1.214925373134329,1.216487131227345,1.09271093078778,0.6488993267583656,0.8664761863042599,0.9761944345578177,0.9002541512397562,0.9725068991035479,0.9580368490257944,1.0876325558191597,1.4136731184400424,1.5135204764683863,0.8880830954943157,1.3069493184561742,1.0458517619485441,1.0857449277277207,1.097547986307171,1.3414012780339684,1.5666401587097245,1.3145668269494017,1.1381888192962968,1.3918848395233545,0.6666933064476468,0.523093713271485,0.7154002713704211,0.854695753842966,0.987643927171361,1.4025160869997835,1.2429102510930088,0.8053008448382437,1.0074429679453154,0.695443173280511,1.1436143101239216,3.5,0.0,2.000000000000001,0.9375,0.5733333333333335,0.5277777777777777,0.4848979591836735,0.2673611111111111,0.16805240614764422,0.015625,3704.595783768423,4231.827569703366,1896.4890923280595,1706.0000180800557,11.026711463142405,0.4361186424980909,6.2177570286186015,0.7734227008854684,1.0,0.3125,1.3871216514586349,3.04515824345902,4.16473647505595,4.681880802803405,4.681880802803405,4.681880802803405,0.17500000000000002,0.0,0.07692307692307696,0.037500000000000006,0.024927536231884057,0.021111111111111115,0.02020408163265306,0.015727124183006536,0.021006550768455527,0.005208333333333333,0.3976078141835206,15.39,7.695266272189349,4.795005202913631,123.16023715433529,1.0,3.8488792063656687,78.56058966247673,,62.804888853689434,63.741693400686685,63.21169589215775,62.76718390748013,73.24570721803046,64.01268922982173,64.32569932700491,70.8733138996627,0.006351712709893105,0.10486931059399286,-0.10323650947267882,0.32338308457711473,0.28120280127734293,-0.20062624378577942,0.005256136610189636,-0.047448811070654004,0.09651204623386646,0.057754654641673286,0.05463974066679803,-0.025139203757147576,0.024368459520264216,-0.21413465794521355,-0.2595613151474002,-0.10038680410700904,-0.11222080755639971,0.21623084515192315,0.02486220884043563,0.13696950092776672,-0.16614126974851778,-0.04112278167081761,-0.19645186874452897,0.09335367775919036,-0.07004456167534104,-0.15157053661192357,-0.05946432481757265,0.0036287905083462572,-0.0365381364255377,-0.09595712860312335,-0.06646471225845584,-0.11889451183771656,-0.15726040081569415,-0.17273695193355781,-0.12967284887038527,-0.14905490293945248,-0.00493346090284421,0.035548123739733775,0.02769142399928682,0.06265943012211672,0.0925293377732381,-0.0024716671101319716,-0.005719029587203353,0.018027406501365036,0.036325375119420265,0.04416694223904024,0.0022138321490277105,0.04267423941321686,0.04958000144348482,0.13430268999875483,0.20394471972240816,-0.08727157250497998,0.055477637699282704,0.023485654001720133,0.047739843174570994,0.055745422480956604,0.11986553612374012,0.12008697255200947,0.12128760018716245,0.05436322113119851,0.01640427937722885,0.0050558205872226316,-0.05849776975245141,-0.233649932157395,-0.16201171784201504,-0.09733697199548952,0.015803542464307548,-0.0037788762209252156,0.011897982503793281,0.10878738024028392,-0.010894980793760143,-0.01631596388762764,-0.04414844852080354,-0.25101824733135847,-0.2493975569780225,-0.13947503860010302,-0.31868951938533124,-0.044976483377308744,-0.04108831455650085,-0.11936819575543728,-0.22835221768693428,-0.3652311163103446,-0.13177824236880245,-0.18306201085282614,-0.01676524310689745,0.04138592435941696,0.04147411677930143,-0.019674355495251095,-0.08157561275600402,-0.14508996361983487,-0.018539504003236708,-0.11038351743769553,0.0360824138770779,-0.1793460810409026,0.11287903136193447,-0.11670745581576991,12.970631738280169,15.084293208129944,2.701599969404812,20.98172524261419,35.59930814177692,42.41798203743186,42.939263519801294,42.939263519801294,42.939263519801294,38.15526966340191,32.36205898403158,4.030865999741673,0.0,1.7623446796286522,5.7932106793703255,4740.2983449341355,3888.259565196689,1198.0312053390776,24.0,26.0,31.0,38.0,48.0,46.0,46.0,42.0,36.0,318.07316070800056,20.0,4.532599493153256,5.332718793265369,6.171700597410915,7.00033446027523,7.848933726364071,8.689632748355741,9.542445945729886,10.388964598613677,11.243489253126375,0.7192982456140352,0.9545263157894738,1.120417977552248,0.6994597057960026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7034205326189729,0.9457172342621255,0.985078774868709,0.6303168553890321,8.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,34.12904510333418,56.8898417597364,22.281397128455346,0.0,213.60607822377065,-228.33753781511822,-13.674357008886457,-6.008882574082057,-15.22250252100788,305.73733883714453,326.822681024492,15.490477313414354,8.60059686906558,14.209681783673567,0.4444444444444444,0.9657286078804207,0.28940570951098193,16.853527073484102,0.07857209203778946,291.93793197041714,0.03427139211957917,5.0,0.25,0.2643179898932014,0.5802592043541486,0.7935964177072127,0.8921389997879845,0.8921389997879845,0.8921389997879845,3.9277000000000024,,1.1142857142857143,0.45892674576190595,0.49735115757496484,1.1346824755066258,-0.5839046199701935,0.46088193456614523,0.42746602971593783,-0.41459539985447624,83.39300000000004,0.0,0.0,9.883888251797686,0.0,12.338727669087403,20.640100371266954,64.39151205322221,0.0,0.0,3.713572066704308,0.0,4.976733742420574,0.0,6.434546518787453,0.0,7.979681302387741,0.0,9.57227147806062,27.33333333333334,16.566671797577055,4.525590868291761,0.0,0.0,0.0,0.0,3.582456380700429,0.0,36.272000000000006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.575883146985426,0.0,0.0,0.0,30.523988623064643,0.0,0.0,23.59610715563286,53.134132566676755,0.0,0.0,0.0,26.5794688202481,26.72998023952097,24.221082779743824,157.12117932495346,,125.97491824575691,127.46317849122309,126.4218183479281,125.98098712323348,146.6758053686831,127.99023784319311,128.61204659140128,141.87755266243732,24.221082779743824,157.12117932495346,,125.14717218468053,127.10086790246373,126.02917269721104,125.13695464966975,147.07531905603116,127.62638368432516,128.27457341004663,142.1612231991799,4.699256169583747,106.45154818705362,,86.19112087175944,87.15197828248414,86.50780164270485,86.15107612564634,100.19044616184857,87.49048324544675,87.87433589850933,96.56646416632317,1.2747938305128328,8.269535753944918,,6.630258855039838,6.7085883416433205,6.653779913048847,6.630578269643867,7.719779229930689,6.736328307536479,6.769055083757962,7.467239613812491,2.3496280847918736,78.56058966247673,,62.804888853689434,63.741693400686685,63.21169589215775,62.76718390748013,73.24570721803046,64.01268922982173,64.32569932700491,70.8733138996627,35.93725490196077,3.4891757605820106,4.216395607625766,0.0,0.0,0.0,0.0,37.43299344501094,2.127927177815571,0.0,0.0,0.0,0.35805555555555535,2.2170601851851854,0.0,0.0,0.0,23.952040504783223,501.54479517009844,52.710622755428126,115.71601325144276,158.2599860521261,177.91147050652938,177.91147050652938,177.91147050652938,376.0,109.75081961629452,17.79862189081677,51.676805108360696,16.130000000000003,16.130000000000003,0.8,7.658500446894326,5.321928094887363,3.8424139382057287,4.283408342154291,,4.293225506010251,4.2881889003442115,4.288938525401358,4.293328380371719,4.26594049270576,4.287974645296876,4.287369647830509,4.272179875897331,0.2022323125371436,0.22544254432391006,,0.22595923715843427,0.22569415264969533,0.22573360660007147,0.2259646515985115,0.22452318382661896,0.22568287606825663,0.2256510340963426,0.22485157241564901,1.9879546850081973,2.0966029204791785,,2.0988922028053802,2.0977183622224946,2.0978931585201,2.0989161645396996,2.0925165569226127,2.0976683969795884,2.0975272953639124,2.0939780927250755,226.23999999999967,117.99071673395548,95.15914568711885,,94.14939402738173,94.65365742255041,94.59174996499763,94.1339975922739,96.02818616278766,94.67051865731523,94.7157203064288,95.73225441881674,6.210037722839762,5.008376088795729,,4.955231264599038,4.981771443292127,4.978513156052507,4.954420925909153,5.054115061199351,4.9826588767008015,4.985037910864674,5.038539706253513,5.412459835797136,5.19740459391993,,5.186736705008234,5.192078404629502,5.191424148754914,5.186573159673622,5.2064956404088365,5.192256524879736,5.192733873711617,5.2034091646164145,1.114472631645251,6.742651053476947,0.0,2.467983749055178,0.35805555555555535,14.694796797577055,2.946920351473923,1.0528818263416477,4.216395607625766,264.2376914494739,110.9349105697142,-118.58559713217944,-7.101687295105968,-3.120673608741564,-7.90570647547863,158.78267427479352,169.73320793626922,8.044877419853197,4.466663366743927,7.379704692881272,718.0,25.0,1.1663395218799635,0.916377318101723,0.0,0.0,0.13608276348795434,0.060373004706725075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.052622977527775436,0.19037142086468112,0.08493636280021888,13.664925939000156,12.968754188203578,9.164703797946448,7.27008204987008,8.053093735470812,5.8663667159145225,5.998691420853189,3.7108188819035575,4.65842269419301,2.414123174123256,3.9279476144503045,1.818991682272193,2.509697694855716,1.1568645992711952,1.6825911185401825,0.6495300341323627,2.0776055202997865,1.2994640353277236,2.932505781615976,1.4437889227533,4.480400211784982,1.8889841664985392,67.90621299990246,43.61356236961687,27.891018215289456,25.710687573610294,25.710687573610294,25.710687573610294,92.0,103.0,44.63906699999998,23.290932999999995,0.34210526315789475,58.03,6.305555555555555,4.305555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,38.0,0.0,1.0,39.0,12.0,0.0,6.0,33.0,12.0,20.0,27.0,0.0,1.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,2.0,0.0,1.0,19.0,3.0,0.0,2.0,0.0,0.0,2.0,5.0,0.0,0.0,1.0,1.0,2.0,3.295836866004329,6.081398082722002,3.8066624897703196,4.276666119016055,4.77912349311153,5.309504555938601,5.27715756871241,5.568344503761097,5.839369045620879,6.002188093804204 +21233,COc1ccc2cc1Oc1cc3c(cc1OC)CC[N+](C)(C)[C@H]3Cc1ccc(cc1)Oc1c(OC)c(OC)cc3c1[C@@H](C2)[N+](C)(C)CC3,0,20.520833333333332,5.986143750000001,3.3333333333333335,6.375,161.28134772082242,80.70350016666666,1.4497567024244997,6.061508333333333,2.6309317129629632,7.548129999999998,210.60071678007662,23.764705882352942,6.302941176470588,3.9901960784313726,6.421568627450981,145.19879360881572,89.5881649215686,1.7553020282352936,6.4475,2.759531590413944,7.731336078431372,255.95852273753334,19.870967741935484,6.2485053763440845,3.838709677419355,5.096774193548387,156.49342959775416,73.9288185483871,1.5147284624595159,6.345451612903226,2.4647550776583036,7.758066967741937,218.87756233286458,18.836,6.153327999999999,3.512,4.652,150.76581495647557,68.5153237,1.53933157601894,6.2690216,2.5474444444444444,7.652872048,213.7315793840512,14.781976744186046,5.868049418604651,2.9302325581395348,3.261627906976744,156.28655788445516,52.56692809302324,1.309585327711703,5.965961337209301,2.2080507105943155,7.443863674418605,173.94037000468933,14.973190348525469,5.9588713136729226,2.9758713136729225,3.168900804289544,158.99305261243728,53.55510655495977,1.2857240602277666,6.042567560321716,2.283139708072684,7.546861887399464,174.02104572057544,16.742465753424657,6.133115068493151,3.0821917808219177,3.493150684931507,153.90728593103935,59.589781054794514,1.4173821753659286,6.231836712328766,2.5562785388127858,7.6744368767123285,194.11350939481264,14.645539906103286,5.9733450704225355,2.795774647887324,2.908450704225352,156.75613974057424,51.321383424882626,1.3002541066169622,6.064366666666666,2.3643714136671883,7.549283183098592,173.29597994810914,13.510022271714922,5.939701559020045,2.6726057906458798,2.6881959910913142,159.784953114202,46.87516215812917,1.2153841099141356,6.017571714922048,2.2914810690423164,7.540966779510022,160.24942586524878,7.228732638888887,0.10854960937499993,0.022218086511327933,0.6927083333333334,3.734375,1.3869655128528304,34.45896672222223,0.2347542427122499,0.10384097222222216,0.42756257233796297,0.06744915972222221,51.669283329176096,0.7414470996732024,0.007320611213235385,-0.006701201791997039,0.3538602941176471,1.6381740196078431,-0.3459074864874487,3.4312750849673397,-0.02906340784045593,0.009562785947712477,0.005282266986655795,0.0008777749183007366,-1.3495334767301534,0.9778085797491035,-0.015066208837365494,-0.005765589156710537,0.014280913978494623,0.39868951612903225,0.48667647996426217,4.88730099283155,0.06990083048287901,-0.011016420250896008,0.03942798172416369,-0.01084165972222212,14.439611454601584,-0.509399305555556,0.010095090625000068,0.005190392239923909,-0.022375,0.311625,-0.11382630731650421,-2.54741613022221,-0.026499537534074028,0.0074867611111111634,0.05721983506944445,0.009023429611111165,-6.12084229096989,0.32759003552971555,0.009272374636627896,0.0011639891445633021,0.010901162790697675,0.24781976744186046,-0.15839688337487412,1.468762163436695,-0.019160598579654076,0.009310989987080097,0.023020505289082692,0.004537718184754506,-1.7994883707605627,0.5647771913166516,-0.003649073181970491,-0.001637218094405614,-0.033972855227882036,-0.28966990616621985,0.15459916649729158,2.78205551414954,0.029434026755771444,-0.0021212894697646627,-0.019345290042262445,-0.003727340687369651,6.319034166538538,-1.0898627758751902,-0.010471201840753354,0.00039671113047669434,-0.09156678082191781,-0.7357448630136987,-0.07559120913566561,-5.176897919025867,-0.01773588500362948,-0.011720218797564628,-0.07236573380422374,-0.004977116799847722,-6.100253997216355,-0.6556203540688577,-0.007327690360915465,-0.0002701554605023921,-0.04892899061032864,-0.4207012910798122,-0.12309711082088574,-3.137330120500779,-0.021929546579495317,-0.007435436228481979,-0.037538690621739694,-0.004455200019561788,-4.997015724890933,-0.35080947630536985,-0.0075528666133073295,-0.0010977317224173252,-0.003305957683741648,-0.2700097438752784,-0.015545649400049188,-1.6410410633506542,-0.0034635834192277295,-0.007186851954961627,-0.03128135584864513,-0.004583455564835413,-1.3415943568481097,,,0.4749999999999999,1.2083333333333333,0.5416666666666666,0.041666666666666664,0.6666666666666666,-0.125,1.2864883016510638,0.018132859463803646,0.03246619279713698,1.2426969421004228,0.2432652767280741,0.23681464635756175,2.5291852437514866,0.48007992308563585,2.074943393432951,1.734028025079155,0.09404183062221294,0.24687353773158302,0.0,0.34091536835379593,6.795313959335222,1970.0,574.6698000000001,320.0,612.0,15483.009381198954,7747.536015999999,139.17664343275197,581.9048,252.56944444444446,724.6204799999998,20217.668810887357,2424.0,642.9,407.0,655.0,14810.276948099203,9137.992821999998,179.04080687999993,657.645,281.4722222222223,788.59628,26107.769319228402,3696.0,1162.2219999999998,714.0,948.0,29107.777905182273,13750.76025,281.73949401746995,1180.254,458.44444444444446,1443.0004560000002,40711.22659391281,4709.0,1538.3319999999999,878.0,1163.0,37691.45373911889,17128.830925,384.832894004735,1567.2554,636.8611111111111,1913.218012,53432.8948460128,5085.0,2018.6089999999997,1008.0,1122.0,53762.57591225258,18083.023263999996,450.4973527328259,2052.2906999999996,759.5694444444445,2560.689104,59835.487281613125,5585.0,2222.659,1110.0,1182.0,59304.40862443911,19976.054744999994,479.57507446495697,2253.8777,851.6111111111111,2814.979484,64909.850053774644,6111.0,2238.587,1125.0,1275.0,56176.159364829364,21750.270084999996,517.344494008564,2274.6204,933.0416666666667,2801.16946,70851.43092910662,6239.0,2544.645,1191.0,1239.0,66778.11552948462,21862.909338999998,553.9082494188259,2583.4201999999996,1007.2222222222223,3215.9946360000004,73824.0874578945,6066.0,2666.926,1200.0,1207.0,71743.4439482767,21046.947808999998,545.7074653514469,2701.8896999999997,1028.875,3385.894084,71951.9922134967,693.9583333333331,10.420762499999993,2.1329363050874814,66.5,358.5,133.14868923387172,3308.060805333334,22.53640730037599,9.968733333333327,41.04600694444444,6.475119333333332,4960.251199600905,75.62760416666664,0.7467023437500093,-0.6835225827836979,36.09375,167.09375,-35.28256362171977,349.99005866666863,-2.964467599726505,0.9754041666666727,0.5387912326388911,0.08953304166667513,-137.65241462647566,181.87239583333326,-2.802314843749982,-1.0723995831481599,2.65625,74.15625,90.52182527335276,909.0379846666683,13.001554469815495,-2.0490541666666573,7.333604600694446,-2.0165487083333145,2685.7677305558946,-127.349826388889,2.523772656250017,1.2975980599809773,-5.59375,77.90625,-28.456576829126053,-636.8540325555525,-6.624884383518507,1.8716902777777908,14.304958767361112,2.2558574027777913,-1530.2105727424723,112.69097222222216,3.1896968749999965,0.40041226572977595,3.75,85.25,-54.488527880956696,505.2541842222231,-6.5912459114010025,3.2029805555555533,7.919053819444446,1.56097505555555,-619.0239995416335,210.66189236111106,-1.3611042968749931,-0.610682349213294,-12.671875,-108.046875,57.66548910348976,1037.7067067777784,10.978891979902748,-0.7912409722222191,-7.215793185763892,-1.39029807638888,2356.999744118875,-397.79991319444446,-3.821988671874974,0.14479956262399343,-33.421875,-268.546875,-27.590791334517945,-1889.5677404444416,-6.473598026324759,-4.2778798611110895,-26.413492838541668,-1.8166476319444187,-2226.5927089839697,-279.29427083333337,-3.121596093749988,-0.11508622617401904,-20.84375,-179.21875,-52.439369209697325,-1336.502631333332,-9.341986842865005,-3.167495833333323,-15.99148220486111,-1.897915208333322,-2128.7286988035376,-157.51345486111106,-3.391237109374991,-0.49288154336537904,-1.484375,-121.234375,-6.979996580622085,-736.8274374444437,-1.5551489552332505,-3.226896527777771,-14.045328776041664,-2.0579715486111003,-602.3758662248013,0.7040406977737094,0.6170902845870411,0.4267377094094541,0.3175917716834242,0.26836230191937915,0.1834115625171083,0.16700003048020493,0.09855809488303781,0.10249493446409563,0.05176380592292375,0.06487448896758183,0.0292170696217143,0.04148846251238333,0.016047085641194715,0.02622477907284955,0.00862037280382225,8.017609014406203,5.684776032138066,3.5319386615903716,2.1831159435163703,0.47029423136689336,-0.5264441970970195,4.024594782430623,0.9871956710165191,6.01510978509802,0.991061356628331,14.54889476808574,10.945572090828577,16.010130424602636,11.696792198157286,2.0165484481366285,0.7734799924142801,3.4757873625042213,2.2327323993065664,3.520020225656694,1.1286273439115908,3.6890685406141857,2.4287452069029825,20.920424403777485,14.705488173472672,0.2038109377304248,0.43720339091174076,0.640503644153986,0.7216358603516538,0.7673705347503607,0.8169015301276219,1.2353367652928227,1848.1724748238555,0.0,0.0,2.0,0.0,18.0,6.0,6.0,0.0,0.0,5.192344779525385,3.5975998168013588,2.2084715465452582,1.6541040366611588,1.3416040366611588,1.0031641929562305,613.4653785868642,4801.045720000464,82.93194603188729,50.01089291667148,79.83881562256704,,15.0,1279.0,0.0,0.0,12.083681658295921,28.747559166419524,76.11429950216414,22.253805966787983,28.439190165110134,6.06636706846161,82.78799154686324,28.421177722800294,22.799999999999997,58.0,26.0,2.0,32.0,0.0,0.02500000000000006,-6.0,0.11079545454545514,0.05125000000000035,-0.05954545454545479,0.0,0.12938461538461554,0.0,0.5562499999999987,0.8125000000000001,0.44545454545454355,0.5049999999999983,0.8125000000000001,61.751438479251064,0.870377254262575,1.558377254262575,59.64945322082029,11.676733282947557,11.367103025162963,121.40089170007136,23.04383630811052,0.5846153846153844,0.1754385964912281,0.03508771929824562,0.3508771929824562,0.4,0.14045995842665174,-0.5489902224227219,-0.03367725353918793,-0.005718648150236687,-0.024954101019214633,0.8595400415733484,5.078607480778698,0.06353232458810137,0.05290216125811142,0.06862983082133374,-11.461029359499879,0.8428488177018033,0.8454670917512883,1.370913172318572,0.7563025210084034,0.5092022862143463,1.4509750653592446,0.8494099880175784,1.2387628967939617,0.8084444028328575,0.8786436854534558,0.9088854826949876,1.0719613768794873,0.8854068815913078,1.3677956021240838,1.6416957024255885,1.490015360983103,1.0371770069435071,0.7855221667765829,0.8757030298264857,0.7012552680582863,1.2976969820261675,0.9322195199323254,1.3999710601090625,0.6906856504501425,1.0349324527169022,0.8734364687804755,0.8274035588045089,1.2742857142857145,0.9348953974895398,1.196156923133538,1.0401732269831343,1.1818055187765633,0.8840182303335095,0.800230094110183,0.8489342847632457,1.1419730409979494,0.9109143842550252,0.7440346548760285,0.787565095010745,1.007059800664452,0.8847223573675845,1.130404520310121,0.9167860797896459,1.1114250912852963,0.7541157902157023,0.7988250367022336,0.748237327987277,1.054027367957227,0.9245055989594864,1.1129786770522798,1.1595452922587874,1.147070088088855,1.1850090300290532,0.8908612534922401,0.9205591476772744,0.8718129181472457,1.0885556955802993,1.1038704609349332,1.1564797969266265,0.8653726626310582,1.1533004610076372,1.2566266834291717,1.2086594887956574,1.1663405088062622,1.3187940620163925,1.1065537153848888,1.1507405588655224,1.113487697909639,1.2464660509760064,1.345267186298183,1.2921216986241624,1.1170996577192733,1.0799024105606323,1.1015518838837643,1.0723098048521127,1.0127431254191819,1.1336849549177912,1.104727192589888,1.0799141752905628,1.1097912553143763,1.0971625625512107,1.1497298620243546,1.1237202329502192,1.0952030193730404,1.0561406347472186,1.1738785823890665,1.154063658582276,0.9560929048679606,1.120466059708076,0.9980586354029908,1.0532944391740187,1.0011451395843167,1.160730274564932,1.1805954180603664,1.1976393356961301,1.006562812795409,12.5,0.673196612590552,6.888888888888892,4.25,5.426666666666667,3.0208333333333335,2.2702040816326523,1.8489583333333328,1.1987906273620559,0.8731250000000002,11687.633844582584,13339.002418543383,4761.497100136444,4286.557180688746,16.802518842056454,0.45173583312478244,9.212218994345227,0.8239382772348781,0.0,0.4,1.3926177211957715,2.9873626839197973,4.376490954175898,4.930858464059997,5.243358464059997,5.581798307764926,0.23148148148148148,0.008014245387982762,0.08401084010840112,0.04381443298969072,0.05426666666666668,0.02673303834808259,0.018762017203575645,0.015537464985994395,0.010608766613823501,0.00864480198019802,0.5018737557658969,36.36213991769547,14.790600832837598,7.2,284.04514779808574,0.0,4.8238814428864405,313.2850893544605,,245.35813001830238,241.53280520603695,248.63427133853858,245.42124580031987,361.7776083433074,244.2586066677033,245.53385167653332,305.2922011190221,0.10256944567079308,0.06744023544060211,-0.3016102124087247,0.5108359133126935,0.4386742144556567,-0.24939876534922362,0.09957568120446705,-0.12380354665657912,0.09209068196364617,0.012354371800533736,0.013013874774952007,-0.026118679992762982,0.13526694492596428,-0.1387956062127976,-0.25949980677998263,0.02061605626970652,0.10676204616007558,0.3508929929794894,0.14182958625047165,0.2977617344644117,-0.10608934041295957,0.09221569958419606,-0.1607382473980645,0.27946219734865124,-0.07046868808165724,0.09299978768348355,0.23361112746039486,-0.03230075187969925,0.08344769874476987,-0.08206859237788576,-0.07392607418432567,-0.11288203879899988,0.0720983341246971,0.1338279792746114,0.13378120125250798,-0.11846191579579415,0.04531776894989282,0.08542061726445437,0.052389261513129864,0.01573701696100717,0.06636177872920113,-0.11420390911456027,0.04262351147312567,-0.08161981806284194,0.08966585912884517,0.05384125454013393,0.06727612624741834,-0.034827043357585054,0.07812948957031315,-0.033616640382041846,-0.07368852819845109,-0.04904352032897256,-0.0775685104378162,0.111465761091131,0.08073531445606061,0.12538229944517004,-0.020428251241957292,-0.04524551795186398,-0.05526148439387628,0.12229769331773117,-0.1507681678544845,-0.09646466625761047,0.017855323872036886,-0.13218663096096406,-0.19701954490743395,-0.054501145439574114,-0.1502336956519169,-0.07555086033256168,-0.11286699793683633,-0.16925179724810643,-0.07379064202349034,-0.11806345287107406,-0.09069644525815962,-0.06750545122277617,-0.01215925864563777,-0.07063433230964737,-0.11265641267409196,-0.08875282743526115,-0.09104539163321887,-0.09341491052996842,-0.07160406985183043,-0.0877969519559995,-0.06605271344980078,-0.09671153542145743,-0.048529872915495195,-0.06957985990732483,-0.049407122519648336,-0.004772510340439071,-0.07230386446869379,-0.01120838929013711,-0.04762304907687102,-0.014754082308421654,-0.06921017591766757,-0.07316205363251269,-0.0679542278022675,-0.02596502738969773,21.921876352882542,53.83992180294317,26.08671052192624,12.454472806604068,27.77616559943223,35.36263372362914,38.89007688860661,41.736477840258985,43.310292152570895,99.59728288478163,83.23334520379944,4.514007869866221,11.849929811115985,0.0,16.363937680982204,14962.536613541482,11325.480888818056,5236.09617671818,579.0,82.0,115.0,160.0,230.0,277.0,342.0,430.0,516.0,652.3501400961813,54.0,5.60947179518496,6.502790045915623,7.4318919168078,8.345930261979017,9.277344600756656,10.199249395552329,11.13147469069291,12.057125901709425,12.989793807794003,0.6076388888888891,0.9697500000000003,1.122966088085279,0.566175450281686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6600428143712573,0.9571895424836603,0.9960245205146879,0.6125894692652148,10.0,0.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,6.0,0.0,6.0,0.0,2.0,0.0,0.0,0.0,0.0,37.38723943818954,17.833193491579827,34.49707099970343,5.749511833283905,0.0,0.0,0.0,0.0,0.0,18.19910120538483,64.71837544601925,31.246737983401033,75.28284239934104,119.82993771073818,-468.3574229524799,-28.730915479922977,-4.878723155754999,-21.288973770567267,733.2953162976023,4332.688297047984,54.20103055196431,45.13216976091648,58.54984185199977,0.4,0.9286276498881596,0.12609510143632252,28.756273766276166,0.03452746652265943,108.10226178627877,0.07137235011184055,9.0,0.07407407407407407,0.2114845332897884,0.45366434259764343,0.6646189638432419,0.7488058532634,0.7962624636792948,0.8476583286774422,7.451600000000009,,1.7857142857142858,2.0856212191717076,1.489304286185103,1.7805938315565375,-7.530129222398548,1.8746940024479806,1.7714947875377987,-3.0326161248350116,186.37279999999936,37.38723943818954,0.0,0.0,0.0,37.76696814999996,69.71939090764404,94.04437963479809,0.0,45.99609466627124,4.6913478822291435,0.0,6.07993319509559,0.0,7.669961995473577,0.0,9.355046592975441,0.0,11.091772950417356,58.33333333333335,21.325550914291025,0.0,0.0,0.0,0.0,0.0,12.88669494709913,0.0,93.09600000000003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.80474445618678,28.421177722800294,0.0,45.99609466627124,78.68545262303329,25.683286491704038,0.0,45.46439060847789,60.6636706846161,0.0,0.0,0.0,54.35284322704186,63.364110179640704,62.538118693382714,633.461170425559,,495.06555704608525,487.5548381179633,501.5903384329443,495.18875728104933,731.7769522986936,492.89693074084,495.4115977011909,616.5892942391401,62.538118693382714,633.4611704255592,,493.72627133179947,485.9906222035844,500.36681084621637,493.853311907382,735.5420169098927,491.49091023900417,494.0829766105377,618.1056023015577,5.102410802873953,436.7391948612137,,343.19027130990094,338.3479834996862,347.78899307423853,343.2714827700703,506.76511283438685,341.820211493756,343.4105951236945,423.79149883860015,1.3028774727788066,13.197107717199145,,10.313865771793443,10.157392460790902,10.449798717353007,10.316432443355195,15.24535317288945,10.268686057100833,10.321074952108143,12.845610296648752,2.5512054014369774,313.2850893544605,,245.35813001830238,241.53280520603695,248.63427133853858,245.42124580031987,361.7776083433074,244.2586066677033,245.53385167653332,305.2922011190221,91.89019607843139,0.0,16.010576692336215,0.0,0.0,0.0,0.0,95.61835396941004,5.510776095112384,0.0,37.30707908800108,0.0,0.30013019873544655,0.0,0.0,0.0,0.0,58.80858904946063,792.2356996900043,133.69130123479408,286.7868176563005,420.1431316008862,473.3624125497597,503.3624125497597,535.8526375454328,2833.0,185.54507241639268,60.889554318336174,86.8880626161911,55.38000000000001,55.38000000000001,0.6666666666666666,9.629089768571449,6.754887502163468,5.399316634539319,6.870873083764982,,6.873018614681705,6.875182918147856,6.873038482664935,6.872989911962159,6.824083844047301,6.8737393591215055,6.872908962697119,6.8443036994734054,0.11248576321956914,0.1431431892451038,,0.14318788780586886,0.14323297746141367,0.14318830172218613,0.14318728983254497,0.1421684134176521,0.14320290331503135,0.14318560338952332,0.14258966040569596,3.254888314316668,3.49590710250198,,3.496219318427604,3.4965341673885915,3.4962222091450057,3.4962151422742878,3.4890740146700794,3.496324178706927,3.4962033643228017,3.492032647517045,506.3200000000021,711.9838583110984,392.7123814594418,,392.32422365690064,391.77933935944185,392.22922290211847,392.33134717334406,402.57502348872714,392.14176030949415,392.3517581508595,398.77502814835356,14.832997048147883,8.181507947071704,,8.17342132618543,8.162069569988372,8.171442143794135,8.173569732778,8.386979656015148,8.169620006447795,8.17399496147624,8.307813086424032,8.136671158157453,7.541693408054616,,7.54070451701019,7.539314689413764,7.540462339104623,7.5407226740633195,7.566497391164117,7.540239325773282,7.540774697555048,7.557013336559412,38.9662711524258,0.0,0.0,7.343587073576218,5.543107873522912,21.62568111302647,3.4988683264566407,2.011907768655743,16.010576692336215,612.2344897470647,102.2299460472771,-399.5675454230261,-24.511069566701448,-4.162161931489855,-18.162161155592095,625.5927529795183,3696.3258039580246,46.240267957158366,38.50339379122941,49.95034870213546,7389.0,97.0,4.635054395636851,3.3651375789996525,0.408248290463863,0.408248290463863,1.115653288655621,0.6762150202788848,0.16666666666666666,0.14433756729740643,0.0,0.0,0.0,0.0,0.0,0.0,0.3485162366604551,0.16287835188822455,0.9569353643793603,0.4325864652847149,33.79395349313805,29.620333660177973,23.04383630811052,17.149955670904905,22.00570875738909,15.03974812640288,19.205003505223566,11.334180911549348,16.3991895142553,8.2822089476678,14.92113246254382,6.719926012994289,11.492304115930182,4.445042722610936,8.968874442914545,2.9481674989072095,10.092234946776966,6.0550437136934265,16.36436239722959,8.353318899872628,27.996483125097303,12.534417737097764,163.93238797942305,93.39529746215914,57.40419548097172,45.69570859815206,38.11149791991187,32.22973086154598,272.0,333.0,105.81806399999996,63.12993600000011,0.375,660.08,15.402777777777779,10.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,6.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0,24.0,24.0,96.0,0.0,2.0,102.0,24.0,0.0,12.0,90.0,24.0,54.0,78.0,0.0,0.0,6.0,40.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,48.0,6.0,0.0,4.0,48.0,8.0,0.0,2.0,6.0,0.0,8.0,4.0,0.0,0.0,0.0,0.0,4.0,4.204692619390966,8.533417118876551,4.844187086458591,5.427150238391005,6.006968733643947,6.615395616979245,6.933240260492155,7.323768723920729,7.767383062488347,8.189123058059169 +2160,CN(C)CCC=C1c2ccccc2CCc2ccccc21,0,18.0,5.585111363636364,2.977272727272727,4.636363636363637,159.0962086629029,70.56472593181817,1.527593109352886,5.695718181818182,2.1338383838383836,7.171286999999998,214.28587113908353,21.391304347826086,5.967934782608695,3.608695652173913,4.956521739130435,142.36262386710206,79.74912336956517,1.8891417202173924,6.137739130434783,2.5495169082125604,7.4093049565217335,262.4415511935802,17.037037037037038,5.847000000000001,3.3950617283950617,3.7160493827160495,151.82365554611957,61.81113099999998,1.62285586874679,5.978407407407409,2.238683127572018,7.360072246913577,218.57600001213382,15.055555555555555,5.681694444444445,3.1018518518518516,3.138888888888889,150.46640046944523,53.551881175925935,1.5415304456257768,5.816694444444447,2.111111111111111,7.228436555555553,200.94788149707333,12.444444444444445,5.54935714285714,2.6746031746031744,2.246031746031746,154.90452116172875,43.14827241269841,1.3638819013517383,5.665694444444444,1.9603174603174602,7.145802666666667,171.5418000205785,12.032520325203253,5.549756097560976,2.569105691056911,2.073170731707317,154.75241197252333,41.13109773170731,1.3407917544371708,5.665459349593495,1.9823848238482389,7.146472227642276,166.8287693822462,10.818965517241379,5.521465517241379,2.353448275862069,1.6637931034482758,157.67044173777168,36.173345232758614,1.2341366143993018,5.624271551724138,1.8979885057471266,7.137226448275863,150.0700771560041,10.35576923076923,5.546615384615385,2.201923076923077,1.4134615384615385,160.77287058831845,34.36698756730768,1.1579995074069136,5.636350961538461,1.8974358974358976,7.169211500000002,139.76552392269875,9.426966292134832,5.562494382022472,1.9662921348314606,0.6966292134831461,163.4568144040576,30.25073373033708,1.1185943733811574,5.641775280898878,1.9101123595505618,7.195081258426967,133.13122176311145,6.378099173553719,0.03373279958677683,0.004289168919875673,0.5180785123966941,2.6508264462809916,1.4200777933804047,30.81428020816116,0.24471567254239,0.039969421487603254,0.19077134986225897,0.01201380785123966,54.94087009130263,0.4045095220984547,0.0044651747215234995,2.7172900530941683e-05,0.2383444125044916,0.9381063600431188,-0.11146296423183032,1.9108849820562417,-0.000762623330373646,0.004944017247574514,0.007735457340200391,0.0015846605282070051,1.0292513880385827,-0.002678298132843841,-0.007939365243342532,-0.001358018135030796,0.026814865830017375,-0.004361799816345336,0.39481605122044205,0.09593485328665716,0.03612826518646159,-0.007484236302418147,-0.0058043963767869635,-0.0034626754157738695,5.645973861230142,-0.2796143250688708,-0.002425034435261716,8.104401470188873e-05,0.028849097030915222,0.08823079277624712,0.016641477449203322,-1.3336452946510535,-0.00430812841092764,-0.0027244719926538216,-0.015780702649389532,-0.0008683288950107019,-1.4383583008857033,0.01331496786042247,-3.2474911452184046e-05,8.728554649481253e-05,-0.04369178800996982,-0.10753640299094847,0.012006467650791434,0.06626541647809259,0.001239581489998738,-2.3461891643710723e-05,0.005516929759353998,-1.1035123966944266e-05,0.22448329328260083,-0.4032285157562319,-0.0002902829570651071,-0.00020427099074755452,-0.04597947322448429,-0.2258449237384936,-0.15033458305662709,-1.9692097693215407,-0.02182057365741307,-0.0008708257743734432,-0.018376671370019495,0.00011468808371967844,-4.500868168353656,-0.3647762895411798,0.0014405546451980644,0.00031773704573994456,-0.08116628669136507,-0.23781704189227698,-0.24493075142989293,-1.8080322026752627,-0.02910936175049734,0.0008779923055001484,-0.0002889395522624329,0.0007930103305785086,-5.511773346470774,-0.18142085187539733,0.0024040885251112518,0.0004030095623679791,-0.10374284806102993,-0.31341385886840445,-0.2500321810657837,-0.9283045123569617,-0.025101929527592774,0.002138882708200893,0.011637352546443457,0.001031842498410681,-4.355999666806918,-0.7080276720215433,-0.007620159137338649,-0.0009442509897666777,-0.15571896183489653,-0.8326446280991732,0.07631678778894058,-3.3619871782837327,-0.006764996078967872,-0.008191995542761621,-0.015393980664665043,-0.002933292018757537,-2.950827488069255,,,0.49523809523809526,1.2023809523809523,0.6190476190476191,0.0,0.5833333333333334,0.03571428571428571,0.8308386770608652,0.0076282555690288705,0.01991396985474316,0.7804365242358449,0.2380446429036003,0.2502420330689468,1.6112752012967102,0.4882866759725471,2.060527776639348,1.9656530278369284,0.0948747488024195,0.0,0.0,0.0948747488024195,6.299614766727287,792.0,245.74490000000003,131.0,204.0,7000.233181167728,3104.8479409999995,67.21409681152699,250.6116,93.88888888888889,315.5366279999999,9428.578330119675,984.0,274.525,166.0,228.0,6548.680697886695,3668.459674999998,86.90051913000005,282.336,117.27777777777779,340.82802799999973,12072.31135490469,1380.0,473.6070000000001,275.0,301.0,12297.716099235686,5006.701610999999,131.45132536849,484.2510000000001,181.33333333333343,596.1658519999997,17704.65600098284,1626.0,613.623,335.0,339.0,16250.371250700084,5783.603167000001,166.48528812758389,628.2030000000002,228.0,780.6711479999997,21702.37120168392,1568.0,699.2189999999996,337.0,283.0,19517.969666377823,5436.682323999999,171.84911957031903,713.8774999999999,247.0,900.3711360000001,21614.26680259289,1480.0,682.62,316.0,255.0,19034.54667262037,5059.125020999999,164.91738579577202,696.8514999999999,243.83333333333337,879.016084,20519.938634016282,1255.0,640.4899999999999,273.0,193.0,18289.771241581515,4196.108046999999,143.159847270319,652.4155,220.16666666666669,827.9182680000001,17408.128950096474,1077.0,576.8480000000001,229.0,147.0,16720.37854118512,3574.166706999999,120.43194877031901,586.1804999999999,197.33333333333334,745.5979960000002,14535.614487960669,839.0,495.06200000000007,175.0,62.0,14547.656481961127,2692.315302,99.55489923092301,502.11800000000017,170.0,640.3622320000001,11848.67873691692,280.6363636363636,1.4842431818181805,0.18872343247452963,22.795454545454543,116.63636363636363,62.48342290873781,1355.828329159091,10.767489591865159,1.7586545454545432,8.393939393939394,0.528607545454545,2417.3982840173157,18.607438016528917,0.20539803719008098,0.0012499534244233175,10.963842975206614,43.152892561983464,-5.127296354664194,87.90070917458712,-0.03508067319718772,0.22742479338842764,0.355831037649218,0.07289438429752224,47.345563849774805,-0.21694214876035112,-0.6430885847107451,-0.10999946893749447,2.1720041322314074,-0.35330578512397226,31.980100148855804,7.77072311621923,2.926389480103389,-0.6062231404958699,-0.47015610651974404,-0.28047670867768343,457.3238827596415,-30.198347107438046,-0.2619037190082653,0.008752753587803983,3.115702479338844,9.52892561983469,1.7972795645139588,-144.03369182231378,-0.46527786838018503,-0.29424297520661274,-1.7043158861340695,-0.0937795206611558,-155.34269649565596,1.677685950413231,-0.00409183884297519,0.010997978858346379,-5.5051652892561975,-13.549586776859506,1.5128149239997208,8.349442476239666,0.15618726773984098,-0.002956198347107551,0.6951331496786038,-0.0013904256198349774,28.284894953607704,-49.59710743801653,-0.03570480371900817,-0.025125331861949207,-5.655475206611568,-27.778925619834713,-18.491153715965133,-242.2128016265495,-2.6839305598618077,-0.10711157024793351,-2.2603305785123977,0.014106634297520449,-553.6067847074997,-42.314049586776854,0.16710433884297546,0.03685749730583357,-9.415289256198347,-27.58677685950413,-28.41196716586758,-209.73173551033048,-3.3766859630576915,0.10184710743801721,-0.033516988062442216,0.091989198347107,-639.3657081906098,-18.867768595041323,0.2500252066115702,0.041912994486269825,-10.789256198347113,-32.59504132231406,-26.0033468308415,-96.54366928512401,-2.6106006708696485,0.22244380165289288,1.2102846648301195,0.10731161983471083,-453.0239653479195,-63.014462809917354,-0.6781941632231397,-0.08403833808923432,-13.858987603305792,-74.10537190082641,6.792194113215711,-299.2168588672522,-0.6020846510281406,-0.7290876033057843,-1.370064279155189,-0.26106298966942076,-262.6236464381637,0.697928084312518,0.617704435378704,0.4458269650184127,0.33779937833222734,0.28976574265085925,0.19432401452041656,0.17714169231629595,0.10252491281290974,0.11368100085575646,0.0564282222342269,0.07353509522360696,0.031464092804652434,0.04727067434950834,0.018373666875966827,0.03200252700205093,0.010716555153151265,7.033322002313481,5.672449056961579,3.1255187060424583,2.1724462727220035,0.33675655798495807,-0.381162761210054,3.234320056298511,0.9889043008117949,5.00938644362614,0.9949356677377446,14.544531505962107,10.932752387119978,14.024037785751169,11.683451356688359,2.0146224400296404,1.0450464844416647,3.1030481454019974,2.22244538282491,2.268208565107696,1.3506445453533085,3.261802593208858,2.4184448303483395,20.924040663877353,15.591674337832945,0.19733682632253285,0.4796002130455581,0.6475277248838193,0.732874322606935,0.756681153977123,0.7725523748905817,1.7043469931371242,602.8929198710237,0.0,0.0,1.0,0.0,9.0,3.0,5.0,0.0,0.0,4.329101974705876,2.7123197483207773,1.7504443183784972,1.261585795552886,1.1252221591892493,1.0343130682801576,207.79526259132808,573.3694950337867,25.415653983297588,13.031124887131519,25.348661283572277,,9.0,331.0,0.0,0.0,0.0,0.0,25.807221274690605,27.82691049685725,0.0,0.0,73.60221035073162,0.0,10.4,25.25,13.0,0.0,12.25,0.0,0.004761904761904745,0.75,0.05762711864406772,0.04827586206896539,-0.009351256575102329,0.0,0.025258278145695146,0.0,0.5000000000000002,0.7190476190476188,0.4423728813559325,0.45172413793103483,0.7190476190476188,17.44761221827817,0.1601933669496063,0.4181933669496063,16.389167008952743,4.9989375009756065,5.255082694447883,33.83677922723091,10.25402019542349,0.6887417218543048,0.09615384615384615,0.0,0.27884615384615385,0.3,0.30519914361580625,-0.32809764223738247,-0.015081478789458399,-0.007456764596304147,-0.01640488211186912,0.6948008563841938,0.7469304143629385,0.0325711105888457,0.016975691235521333,0.031122100598455774,-5.481745354161628,0.9626413712482923,0.9587824433221145,1.1336419844424404,0.6766223069920673,0.6972618523162425,1.18107300262463,0.9640201874709322,1.047098979783789,0.9402284040350644,1.0084628263485584,1.014682665156168,1.0155165923440899,1.0300003599323326,1.6560141949022416,1.9425875187991046,1.2924928916952847,1.2561993014058486,0.8184385093442665,1.023861355533069,0.8389270566434546,1.4798444594543887,0.987305195287546,1.9376608076527466,0.8819866790419763,1.0271628933760453,0.9105341922549037,0.7144346689612427,1.2313614711421292,1.068452123206605,0.9977017728537296,1.0278812371013835,1.0363430495347412,0.9495853502945697,0.9855484244774259,0.8397793202203865,1.0382550580378664,0.9649413053203141,0.7658689143467885,0.6128190127758479,1.1677348905663962,1.050408887899145,0.9572886800528843,0.9664307473419935,0.9969633027817838,0.8286685241472469,0.8820244303096287,0.6564153578487808,0.9940776213713958,1.0289622624117398,0.7760693287100449,0.7563261037443513,1.0275190688098308,1.0430583807007205,1.0693454879052504,1.031163830807491,1.08885943220374,0.8513150633026083,1.0759150010272664,0.6503245640376042,1.0779668226451022,1.02633122214403,0.8590898657860682,0.8240836528345415,1.0407398494172655,1.020191093073884,1.1325931640235438,1.0282784833886691,1.0964558861698754,0.9016547007651183,0.9556075978256359,0.7970513256016618,1.0777778617354021,1.0151036605118238,1.13421440679134,1.2425376059753568,1.1064115346268888,1.0989118052641047,1.1591143250380964,1.015073611989574,1.0494234104712246,1.0840274530434104,0.9427271359807461,1.2367157352410203,1.0310393158550586,1.110437754556076,1.6772252302416173,1.9362245928839703,1.2504957038995375,1.3379719232487062,0.9553971265594031,1.1051050112134542,0.9514434716926365,1.514420614050067,1.1751612379832068,1.941916019741013,0.9851639617047284,3.0,0.0,2.222222222222223,1.375,0.9894444444444443,0.42722222222222217,0.32666666666666655,0.3107284580498866,0.16983182161753588,0.0625,3497.8277580623244,4087.6054312326096,1917.4068102217252,1688.9583174403106,11.06029711882547,0.4659697679018244,5.906533037441148,0.8725531625261266,1.0,0.3,1.1303296439314214,2.74711187031652,3.7089873002588,4.197845823084411,4.334209459448048,4.42511855035714,0.13043478260869565,0.0,0.07168458781362011,0.039285714285714285,0.030920138888888886,0.01473180076628352,0.014202898550724633,0.016354129371046664,0.01213084440125256,0.015625,0.3453698966862263,15.879017013232515,7.513007284079085,3.8548483045806066,127.47243372522377,1.0,3.9748212966617804,87.32117390419893,,71.0769157795086,70.59462718031888,70.15101204599458,71.08094787536524,78.8044274250149,70.87013788567741,71.10622200963215,76.43014415528583,0.06342164194870492,0.13236893398180438,0.0063352367413240795,0.46005461875243847,0.3538920329391033,-0.07849074519114888,0.06201296831039214,-0.003116364891756344,0.12369499141006905,0.04054831789881215,0.13190326895760113,0.018733802109943607,-0.0004199210548417295,-0.2353604011703417,-0.3166156801933927,0.05175830533092088,-0.0016454490343812494,0.2780242413907534,0.003113324492364706,0.14763363870862584,-0.18724905249728035,-0.030425933354132385,-0.2882246377376986,0.10276455126843582,-0.04383975812547246,-0.07188951006047904,0.018895039159296596,0.055684797459473453,0.03328425853757101,0.011718708317795284,-0.04328010538107062,-0.017604628122791687,-0.06816390858944085,-0.08272050630654729,-0.07227757475088152,-0.02618011506726031,0.0020876075297844104,-0.0009627102360313471,0.020350223580689053,-0.0843342986912279,-0.04056712318598524,0.008454795720881461,0.0021504775068717065,0.005065394778848976,-0.0005869960277255342,0.028919068630259944,-0.0009185367456834755,0.004085907138156836,-0.06322079741691489,-0.008605362158523519,-0.047624841679929815,-0.08875001013220497,-0.08519792914219089,-0.10586362504744559,-0.06390575265814567,-0.08916704610994329,-0.02178729993986865,-0.09632825570132962,0.00954635575496109,-0.08192204020202007,-0.05719200652346324,0.042704864785748704,0.07407893036517539,-0.1566679272527246,-0.08971430107237885,-0.1724769956770121,-0.05867513991764135,-0.1189517673636329,0.021966600286483073,-0.0015145856674550632,0.06600824154988302,-0.10032191585810561,-0.028444344770875384,0.0712685740454714,0.09395982529400142,-0.20024541759337383,-0.1182325079441214,-0.17606935495456064,-0.030125789279708704,-0.10257589661832789,0.05351297638531695,0.061001573636952695,0.0858880474190545,-0.07928523264316652,-0.11100919768656525,-0.22589761984432893,-0.22014777394079596,-0.3005701995138183,-0.31410756040529997,0.05374127258709773,-0.10910484215669951,-0.02764431067567211,-0.20495657024464103,-0.08069335713030196,-0.24416005775012137,-0.05370915100480695,21.47691469873046,23.9339668216134,5.841906810678656,8.44133085033462,22.3065801115377,27.654788144297,29.147830262577948,29.78542117166885,29.87705753530522,43.27108330942631,41.2787135845755,1.9923697248508097,0.0,0.0,1.9923697248508097,3267.998443403314,2322.0044719051484,1338.706704675385,100.0,31.0,41.0,55.0,72.0,81.0,92.0,100.0,102.0,277.1830497360006,23.0,4.6913478822291435,5.53338948872752,6.405228458030842,7.274479558773871,8.158516244806831,9.039907859574642,9.929496371717178,10.816914186795634,11.709223888694977,0.5681818181818182,0.9424545454545457,1.1151492996714927,0.5249184459699819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6782286200326622,0.9326203208556147,0.9743925048003711,0.6133859843087911,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.60695665452676,61.18471933098965,6.544756405912575,0.0,162.77889473241748,-174.99187885973902,-8.043752741877924,-3.9770881559031594,-8.74959394298695,370.57415732374557,398.3776161740478,17.371901241419664,9.05403673122836,16.599067340585325,0.4444444444444444,0.9972725476065506,0.28751964830068233,5.059463125326209,0.058541975107067656,152.47821453819896,0.002727452393449284,5.0,0.13043478260869565,0.20704163416439267,0.503186423461828,0.6793724254365847,0.7689162748652973,0.7938938999898838,0.8105456500729415,4.168600000000003,,0.1428571428571429,0.18566775244299671,0.22524958545764784,0.14250017848218755,-0.5181818181818181,0.16118421052631582,0.14026299311208512,-0.3193246282434288,90.54200000000006,0.0,0.0,4.899909730850478,0.0,19.26246486877803,20.640100371266954,76.86076262131475,0.0,0.0,3.8501476017100584,0.0,5.14166355650266,0.0,6.634633357861686,2.70805020110221,8.226573474977114,5.37989735354046,9.873389104712095,25.000000000000004,17.747497637944065,0.0,0.0,0.0,0.0,0.0,5.788905895691611,0.0,41.46800000000001,0.0,0.0,0.0,0.0,0.0,2.41962962962963,0.0,1.417175925925926,49.066569185545674,0.0,0.0,0.0,25.540010102117435,12.841643245852019,0.0,28.67462758971399,54.60695665452676,0.0,5.573104530069267,0.0,23.096411622679206,29.842059281437134,27.545010834223554,174.64234780839786,,142.14022611684032,141.17157171754792,140.280571750517,142.14832430516074,157.85560809678304,141.72492489416186,142.1990856389679,153.01234765735427,27.545010834223554,174.64234780839786,,142.01097441616008,141.0035866081949,140.07677450653154,142.01939557224838,158.1270366682116,141.5790915608285,142.0721810261522,153.17961293881524,4.822977605706515,120.71517644943678,,98.65079539130369,97.91337698154666,97.23783021262685,98.65697340641896,110.84661388222804,98.33425530686684,98.69570353492807,107.02917631502719,1.311667182582074,8.316302276590374,,6.768582196040016,6.72245579607371,6.6800272262150955,6.768967824055274,7.516933718894431,6.748805947341041,6.771385030427043,7.286302269397822,2.4476334782893154,87.32117390419893,,71.0769157795086,70.59462718031888,70.15101204599458,71.08094787536524,78.8044274250149,70.87013788567741,71.10622200963215,76.43014415528583,41.03529411764705,0.0,4.264865205341396,0.0,0.0,0.0,0.0,42.87327021121633,4.4536211892164275,0.0,0.0,0.0,0.0,2.2416378495842784,0.0,0.0,0.0,26.98898330958681,531.8983569977789,49.734504332982546,120.87292229392688,163.1954412113872,184.7052162157141,190.7052162157141,194.70521621571416,718.0,117.55850393935064,1.4546950583840625,62.81435465040629,3.24,3.24,0.8,8.458580411675193,5.523561956057013,3.941955037638573,4.506173128792474,,4.505348091486247,4.507334982112131,4.509149524808377,4.505331425562344,4.4730906988438255,4.506201597123462,4.505226940331151,4.4829272320363875,0.18771214464945585,0.21457967279964163,,0.2145403853088689,0.21463499914819673,0.21472140594325606,0.21453959169344494,0.2130043189925631,0.21458102843445057,0.21453461620624528,0.21347272533506606,2.1136141474178336,2.24738560783721,,2.247202500615163,2.247643410528858,2.248045905030867,2.2471988014659763,2.240016945934904,2.2473919254464647,2.2471756097331324,2.2422135777915484,239.9599999999998,212.80106608333392,114.35200634339836,,114.14969174054175,114.01058915211121,113.88157359242254,114.15084952213344,116.20491538418833,114.09020205927642,114.15810480908807,115.60840820074783,10.133384099206378,5.445333635399922,,5.435699606692465,5.429075673910058,5.422932075829645,5.435754739149211,5.5335673992470635,5.432866764727448,5.436100229004194,5.505162295273706,6.102295111974421,5.48121881067956,,5.47944801722446,5.478228676109336,5.4770964250312995,5.479458159833717,5.49729248932127,5.478926726387682,5.479521716578378,5.492146033623158,0.0,2.2416378495842784,0.0,7.206081821617537,0.0,17.747497637944065,5.782145849080372,1.091104969765684,4.264865205341396,288.14833454519,86.81862031586375,-93.33245267488417,-4.290160074865721,-2.1211921062473675,-4.666622633744208,197.64685782176045,212.47591745728707,9.265356547129427,4.828998124029252,8.85316322738696,882.0,35.0,1.1498299142610593,0.7368582621948792,0.0,0.0,0.24719387459906544,0.10059223176554563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.24615119001767477,0.08268648784369709,14.656489770562878,12.971793142952784,10.254020195423491,7.769385701641229,8.982738022176637,6.024044450132913,7.2628093849681346,4.203521425329299,6.252455047066605,3.1035522228824797,5.294526856099702,2.2654146819349754,3.828924622310175,1.488267016953313,2.9442324841886856,0.9859230740899164,2.5609771795529035,1.3364727076135554,4.350864457860488,1.885349852248754,7.090271988080093,2.6202208570227046,74.16589840534715,49.77053166506313,34.79928470060553,29.91923382987105,28.52858309412683,28.08141370892004,108.0,126.0,49.83623899999998,24.783760999999995,0.3409090909090909,109.01,5.916666666666666,4.694444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,12.0,12.0,44.0,0.0,1.0,46.0,12.0,1.0,7.0,39.0,13.0,23.0,33.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,1.0,0.0,0.0,21.0,1.0,0.0,1.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,0.0,2.0,3.4339872044851463,7.198592524885012,3.9889840465642745,4.56954300834494,5.146039931102459,5.692468714755927,5.8964668184857025,6.295150681137379,6.640937361709665,6.951233741963601 +57004,NCCCC(N)(C(=O)O)C(F)F,0,25.666666666666668,7.1895750000000005,2.6666666666666665,9.583333333333334,182.5111907389995,104.33267676248084,1.0998192024245002,7.121925,11.244502314814815,8.540473666666665,174.48351064181324,23.73913043478261,6.8615652173913055,3.391304347826087,6.434782608695652,161.21537529268045,89.38509611610435,1.4530881459130436,6.932543478260871,4.193840579710145,8.247381739130434,223.7283723968561,20.75,6.818949999999998,2.825,6.25,168.00865218158862,77.93051196678424,1.2258634621561249,6.8471125,5.725347222222222,8.223527199999996,181.5419346248169,18.196428571428573,6.6395357142857145,2.1964285714285716,4.428571428571429,171.71595972695602,67.57615888545715,1.0184024081105003,6.65548392857143,5.210565476190475,8.108670214285715,149.8595093553538,14.515625,7.111250000000001,1.625,3.6875,186.15202766502944,50.62892684784999,0.768029210556,7.041465625000001,7.044270833333333,8.628075125,113.47567083208233,11.636363636363637,6.563702272727273,1.5909090909090908,1.8181818181818181,184.09460506982575,39.03045648236364,0.7514121686985227,6.533445454545455,4.159090909090909,8.145056818181816,104.52631238474297,12.633333333333333,7.117800000000002,1.3,2.5,194.12967201153972,42.026200498239994,0.6468824345597334,7.020653333333333,6.983333333333333,8.632684533333332,91.86632606016529,4.882352941176471,6.609058823529414,1.0,0.0,197.96536848155836,9.609241041317645,0.4655918992230589,6.5120000000000005,4.117647058823529,8.316660705882354,56.495566154909994,1.0,4.840000000000001,1.0,0.0,184.91765202424898,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,9.666666666666666,0.35570763888888873,0.03998321152746865,0.6597222222222222,5.583333333333333,2.623840479318498,46.717741511740776,0.1862403928511389,0.31417430555555553,5.454463252314814,0.2085914166666666,40.686471839020925,-0.9565217391304348,-0.059630464975845385,-0.02482015418762061,0.22433574879227042,0.6956521739130435,-0.07621076756439286,-4.2759284581481225,0.01738141964173795,-0.050853291062801904,-0.9314283288043478,-0.035430010869565216,3.187974911918758,0.55,0.05784361111111107,-0.0003727836222077894,-0.1618055555555556,1.2,0.17875374997437385,2.5906612761588645,-0.009555243526388868,0.04936361111111109,0.8877821180555555,0.03712455000000001,-2.53244585105555,1.3392857142857142,0.04919042658730156,0.0032124857944822345,-0.1478174603174603,0.6071428571428571,-0.4408172011145179,6.471651114171883,-0.06246706046910615,0.0469928075396825,0.5305524553571429,0.02327444642857145,-5.555633762597695,-1.296875,-0.0239273003472222,-0.0014424840125478982,0.0017361111111111405,-0.71875,-0.11973777657574947,-6.183082350694283,0.0077114778710381865,-0.023804383680555517,-0.1588134765625,-0.008874093750000017,-2.7354391693588096,-0.5454545454545454,-0.06657695707070706,-0.0015379347318834676,-0.07260101010101008,-1.0909090909090908,-0.45798212666193105,-2.8266353787049314,-0.013356899949494953,-0.05568869949494952,-1.1250887784090908,-0.0422380227272727,-0.2436788141219632,-1.9,-0.03673847222222222,0.009262350458481368,0.04861111111111114,-1.3666666666666667,0.3973356391721342,-9.250051750458319,-0.0030885836424500266,-0.03757736111111105,-0.4208984375,-0.02036895000000003,-6.040415799967374,-2.6470588235294117,-0.1615046977124182,-0.015409863540119313,0.17361111111111116,-2.235294117647059,0.2133747681702362,-12.786587085208362,0.07443935124568461,-0.14354930555555553,-2.4066521139705883,-0.09485498529411762,8.591274114916907,9.0,0.1715340277777777,0.035081209908240985,0.17361111111111116,4.0,0.03468310275600025,43.32865151314007,0.08353265674002776,0.16741736111111075,1.9775390625,0.08673025000000012,35.901514205537175,,,0.41984126984126985,0.7083333333333334,0.125,0.0,0.5833333333333334,-0.4583333333333333,0.8294115441039128,0.0389001703870954,0.0389001703870954,0.6303571186742337,0.1610145380720359,0.2929364217386266,1.4597686627781465,0.4539509598106625,1.8404749555922317,0.9911787908144197,0.28631481709436407,0.281490673841724,0.281490673841724,0.849296164777812,7.586945169333333,616.0,172.5498,64.0,230.0,4380.2685777359875,2503.9842422995403,26.395660858188002,170.9262,269.86805555555554,204.97136799999998,4187.6042554035175,546.0,157.81600000000003,78.0,148.0,3707.9536317316506,2055.8572106704,33.421027356,159.44850000000002,96.45833333333333,189.68977999999998,5145.75256512769,830.0,272.7579999999999,113.0,250.0,6720.346087263544,3117.2204786713696,49.034538486245,273.8845,229.01388888888889,328.94108799999987,7261.677384992676,1019.0,371.814,123.0,248.0,9616.093744709537,3784.2648975856,57.03053485418801,372.7071000000001,291.79166666666663,454.085532,8392.132523899812,929.0,455.12000000000006,104.0,236.0,11913.729770561884,3240.2513182623993,49.153869475584,450.65380000000005,450.8333333333333,552.196808,7262.442933253269,512.0,288.8029,70.0,80.0,8100.162623072333,1717.3400852240002,33.062135422735,287.4716,183.0,358.38249999999994,4599.157744928691,379.0,213.53400000000005,39.0,75.0,5823.890160346192,1260.7860149471999,19.406473036792,210.6196,209.5,258.980536,2755.989781804959,83.0,112.35400000000003,17.0,0.0,3365.411264186492,163.35709770239998,7.915062286792001,110.70400000000001,70.0,141.38323200000002,960.4246246334699,2.0,9.680000000000001,2.0,0.0,369.83530404849796,2.032128,0.8892258096979999,9.680000000000001,2.0,13.436928,62.16748886186053,232.0,8.53698333333333,0.9595970766592476,15.833333333333332,134.0,62.972171503643956,1121.2257962817787,4.469769428427333,7.540183333333332,130.90711805555554,5.006193999999999,976.4753241365022,-22.0,-1.371500694444444,-0.570863546315274,5.15972222222222,16.0,-1.752847653981036,-98.34635453740682,0.39977265175997284,-1.1696256944444439,-21.4228515625,-0.8148902499999999,73.32342297413143,22.0,2.313744444444443,-0.014911344888311577,-6.472222222222224,48.0,7.150149998974954,103.62645104635459,-0.3822097410555547,1.9745444444444435,35.51128472222222,1.4849820000000005,-101.29783404222201,75.0,2.7546638888888872,0.17989920449100513,-8.277777777777777,34.0,-24.685763262413,362.41246239362545,-3.498155386269944,2.63159722222222,29.7109375,1.303369000000001,-311.1154907054709,-83.0,-1.5313472222222209,-0.09231897680306549,0.11111111111111299,-46.0,-7.663217700847966,-395.7172704444341,0.49353458374644393,-1.523480555555553,-10.1640625,-0.5679420000000011,-175.0681068389638,-24.0,-2.9293861111111106,-0.06766912820287257,-3.1944444444444438,-48.0,-20.151213573124966,-124.37195666301697,-0.5877035977777779,-2.450302777777779,-49.50390625,-1.8584729999999987,-10.72186782136638,-57.0,-1.1021541666666665,0.27787051375444105,1.4583333333333341,-41.0,11.920069175164027,-277.5015525137496,-0.09265750927350079,-1.1273208333333313,-12.626953125,-0.6110685000000009,-181.21247399902123,-45.0,-2.7455798611111097,-0.2619676801820283,2.9513888888888897,-38.0,3.6273710588940156,-217.37198044854216,1.2654689711766385,-2.440338194444444,-40.9130859375,-1.6125347499999996,146.0516599535874,18.0,0.3430680555555554,0.07016241981648197,0.3472222222222223,8.0,0.0693662055120005,86.65730302628015,0.16706531348005552,0.3348347222222215,3.955078125,0.17346050000000024,71.80302841107435,0.8146684068282412,0.538730165259233,0.4952192288843591,0.3139380612455144,0.3279182056176804,0.16922962511591827,0.21805111802696284,0.09306780753514489,0.15014120597345817,0.05866289919382114,0.11273559014177593,0.04594952915189188,0.10206207261596575,0.02204966172036316,,,9.009067765042621,5.803075908912252,4.116077723128345,2.2970888236307965,0.48650878945933285,-0.32931565468226265,4.028741644564741,0.9727385237387373,7.007055873415147,1.8552196764442934,17.427730469853337,11.066897537769252,19.002869822489416,11.817855570640118,1.87907304480558,0.536481698647215,3.997850727006482,2.3454376115779385,8.004635310086604,1.1429601007849641,4.02018984024819,2.540918103016058,20.77461880912722,13.303457003382968,0.41357821898914865,0.694186117033761,0.8182464233453903,0.8909478540072342,0.8909478540072342,0.8909478540072342,4.1903350395895895,165.6270750562502,0.0,1.0,2.0,0.0,0.0,2.0,0.0,1.0,0.0,2.688721875540867,1.4021451856001343,0.8333333333333335,0.5,0.5,0.5,24.021832031014355,632.6434996156718,62.76546268959269,26.36014581731966,55.2474567693523,,6.0,105.0,17.933675285194386,13.575367279421462,19.386399651764595,0.0,0.0,0.0,0.0,0.0,0.0,16.573862349165076,5.038095238095238,8.5,1.5,0.0,7.0,0.0,0.08015873015873017,-5.5,0.26376357560568076,0.0,-0.26376357560568076,0.22945845004668508,0.32531520940484937,0.0,0.6900793650793654,1.08015873015873,0.42631578947368465,0.6900793650793654,0.850700280112045,9.952938529246953,0.46680204464514485,0.46680204464514485,7.564285424090805,1.9321744568644306,3.5152370608635195,17.51722395333776,5.44741151772795,0.3886847905951506,0.4045368620037807,0.09924385633270322,0.19848771266540643,0.8333333333333334,0.46487876357788377,-0.8599880642677505,-0.1250051021693761,-0.03583283601115627,-0.0955542293630834,0.5351212364221164,0.9899309504210588,0.05852799817189901,0.04124712293421078,0.06599539669473725,-0.4058877366477835,0.8534482758620688,0.7682690411718426,1.7043316296759423,1.3263157894736843,0.5149253731343284,1.1932009112667488,0.8408262105686011,1.3924778834249407,0.7540731768237289,0.8127051490335202,0.792901753308002,1.1702978397118924,0.7807112068965517,0.6261699585528845,0.8127375429621164,2.0155263157894736,0.6200559701492537,1.1341398168610313,0.7866080875922573,1.4013112756770418,0.6231201274946895,0.6419349491064621,0.6125343524441921,1.2355435270529662,0.724060960591133,0.595262649932381,0.8252671825981855,1.2969924812030076,0.6789045842217484,1.0863542946966176,0.7210101494736252,1.4461844566674207,0.5870102864746564,0.647621573744713,0.6214499692067182,1.203906265443641,1.1919787176724137,1.2617151733438237,0.9829240143289346,0.680921052631579,1.2725629664179103,1.0240077644134866,1.1905185508293263,0.7708624998187051,1.2669400376538145,1.2404698948973842,1.253841079171123,0.9152545032316463,1.0477076802507836,1.1818668115857403,0.9672967030934723,0.8253588516746413,1.185888738127544,1.0487476923082188,1.0552395589206087,0.889922792232552,1.1768426175635547,1.1655738446096857,1.1779961710705507,0.9017183371425289,1.2673132183908045,1.2539564131748333,0.9556289248038675,0.4115789473684211,1.3216417910447762,0.6609862468054291,1.2654984775207825,0.5882463977379141,1.2735965747959266,1.1987259485207167,1.232369980068691,0.8687100514674411,1.422920892494929,1.7398648303350943,1.363512679111828,0.0,1.6507901668129938,0.637880180895607,1.4253778300883373,0.04676666482366452,1.7521059390686784,1.6897926227286115,1.7301133708503085,0.46643889144376904,0.0,0.0,0.3795667156443201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.4444444444444446,1.125,0.40000000000000013,0.2222222222222222,0.0,0.0,0.0,0.0,2084.3986000895356,2414.464836416828,1085.2086313225043,949.8005714102169,8.118611806196224,0.4666104239936342,4.330382909067279,0.8748022927018458,0.0,0.8333333333333334,1.896240625180289,3.1828173151210217,3.7516291673878226,4.084962500721156,4.084962500721156,4.084962500721156,0.36363636363636365,0.0,0.162962962962963,0.06617647058823528,0.03333333333333334,0.031746031746031744,0.0,0.0,0.0,0.0,0.657855162266927,12.0,4.888888888888889,3.114186851211073,68.53056965193026,1.0,3.331805759701937,34.571967612729736,,31.181193603293217,30.713102376421812,30.994281151562845,31.05946890476063,46.54504659316585,30.99229501477711,31.267574057943463,38.04920093501529,-0.09895052473763119,-0.16763897779117404,-0.6207643968411354,0.3400457665903889,0.12459441920830629,-0.029045503400491567,-0.09152686580693388,0.09332787251813221,-0.16186330378888833,-0.17076443377064826,-0.1698536374877932,0.07835466600623961,0.056896551724137934,0.16261559996798236,-0.009323503739855547,-0.2452631578947369,0.21492537313432833,0.06812675975667634,0.055453478535724965,-0.051305967411840306,0.15712173223020653,0.16276250787440735,0.17797736164439504,-0.06224294554404623,0.13854679802955663,0.1382889238503731,0.08034586697157235,-0.22406015037593982,0.1087420042643923,-0.1680045736732491,0.13852662617574252,-0.33541091442518484,0.14957559134756407,0.09726941603868763,0.1115791186449656,-0.13654744467839278,-0.1341594827586207,-0.06726675992104936,-0.03607724235850602,0.0026315789473684657,-0.1287313432835821,-0.045634548868172614,-0.13234977014332752,0.04140604383927571,-0.07576807924652573,-0.02911624283014489,-0.04254294779627007,-0.06723215471181133,-0.05642633228840125,-0.18716763373052972,-0.03846451230729426,-0.11004784688995213,-0.19538670284938942,-0.17454648263559255,-0.060504538259722185,-0.07171859844696024,-0.17725415003774733,-0.20626938460564667,-0.20249166241950373,-0.0059891851789483416,-0.196551724137931,-0.10328277553155978,0.23165599021774655,0.07368421052631584,-0.24477611940298505,0.15143284902569074,-0.19799869281210136,-0.016583854851072603,-0.11960672927934979,-0.07716587646298201,-0.09764999119091287,-0.14846251166399319,-0.2738336713995943,-0.45403775476091734,-0.3854083489399711,0.2631578947368422,-0.4003511852502195,0.08132154749958617,-0.27369874209340633,0.3996949861740447,-0.45690975683615115,-0.4412262036872705,-0.4547405967604978,0.21115800231853296,0.9310344827586207,0.48223318541483234,0.8773985022223647,0.2631578947368422,0.7164179104477612,0.013218449455817773,0.9274560394202921,0.4485206214464713,0.5328805002530874,0.3625542919664468,0.41579011920033526,0.8823943827713596,2.381101577952299,2.080083823051904,0.4999999999999999,21.14929186544496,29.88908010109727,32.462609114848874,32.79860911484887,32.79860911484887,32.79860911484887,22.08569946710678,11.894145489773036,3.4357778051323686,3.377888086100688,3.377888086100688,10.191553977333744,954.715682909098,833.9850907733525,367.08444645045176,0.0,15.0,17.0,12.0,7.0,4.0,0.0,0.0,0.0,182.086684064,11.0,3.970291913552122,4.762173934797756,5.602118820879701,6.437751649736401,7.282761179605593,8.127699852817772,8.974997713204976,9.822440173682805,10.670744490962486,0.6666666666666666,1.0456666666666667,1.191105831993819,0.63195822718064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5723432135728543,1.023202614379085,1.0511653313911145,0.562066727729154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,2.0,1.0,3.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,16.573862349165076,0.0,5.538925252383345,0.0,6.425444744859191,0.0,13.575367279421462,0.0,0.0,0.0,19.386399651764595,0.0,0.0,158.9812989388578,-294.10252788691884,-42.74979860107662,-12.254271995288285,-32.678058654102095,183.00313096987216,338.540971728753,20.01566408851607,14.105873822031374,22.5693981152502,0.5,0.4762743237326709,0.2593173176769912,81.47300468444979,0.17793394193333967,6.372720096169312,0.5237256762673292,3.0,0.45454545454545453,0.41357821898914865,0.694186117033761,0.8182464233453903,0.8909478540072342,0.8909478540072342,0.8909478540072342,-0.22749999999999942,,1.4523809523809526,1.7232518811926134,1.5041739297049808,1.519109460996705,-7.197361500769048,1.5584032463418687,1.4045155866620465,-2.5299575432043238,38.8466,18.681894674262168,0.0,0.0,11.46733495432437,24.806013243094554,6.544756405912575,0.0,0.0,0.0,3.1354942159291497,0.0,4.418840607796598,0.0,5.932245187448011,0.0,7.549082710812286,0.0,9.211639527707803,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.096,0.0,10.322752267573696,0.0,0.0,0.0,0.0,0.0,-1.688935185185185,28.586539967851657,11.46733495432437,8.78083009534964,0.0,29.584959085947666,4.794537184071822,0.0,12.841643245852019,0.0,0.0,0.0,0.0,15.16699745233536,13.736237125748504,13.341318122132993,69.14393522545946,,62.120323714522655,61.1389961059777,61.73786664817452,61.86575289935481,94.6300759962256,61.72485615516355,62.30106218477632,76.52006146056462,13.341318122132993,69.14393522545944,,60.91000625420521,59.702952871650524,60.48438837342039,60.59982834852421,100.28745468710075,60.42618678321199,61.13063252922463,78.6283594132349,4.67485439731184,48.324780972289105,,44.72530091832749,44.20074946834224,44.44047103887581,44.603211164609945,61.8557086131346,44.512387345533426,44.815578679226974,52.32874600030309,1.1117765101777495,5.7619946021216215,,5.176693642876888,5.094916342164808,5.14482222068121,5.155479408279567,7.885839666352133,5.143738012930296,5.191755182064694,6.376671788380385,2.337427198655921,34.57196761272973,,31.18119360329307,30.713102376421567,30.994281151562667,31.059468904760465,46.54504659316585,30.992295014776932,31.26757405794333,38.04920093501529,24.55686274509804,0.0,0.0,0.0,24.22187641723356,10.007193877551021,8.383732993197277,25.227967953386745,0.01645833333333324,0.0,0.0,0.0,-3.0680092592592603,0.0,-2.4450694444444445,0.0,0.0,13.489601465499696,162.87840308188333,45.50977500432694,76.38761556290453,90.03910001730775,98.03910001730775,98.03910001730775,98.03910001730775,78.0,88.65097972923961,179.10602682684663,42.247302249693846,89.34,89.34,1.0,4.499809670330265,4.459431618637297,2.971724008472591,3.4014618796482696,,3.4048277262874533,3.4054890010579584,3.405447686154405,3.4049324735106143,3.3762923839628587,3.4051098152990837,3.404726195447013,3.393593242833133,0.24764366737271593,0.2834551566373558,,0.2837356438572878,0.2837907500881632,0.28378730717953377,0.2837443727925512,0.2813576986635716,0.2837591512749236,0.28372718295391774,0.28279943690276105,1.2714638154317597,1.4065268606102104,,1.4075159007799443,1.4077100987296307,1.407697966799633,1.407546664630681,1.3990997364015978,1.4075987470645301,1.407486080664966,1.4042108704701866,126.32000000000005,51.984856004889366,43.7389276720355,,43.10958347079546,43.01966607784432,43.08309934968174,43.08416075093324,45.23325832397705,43.073547513963966,43.12701877420096,44.23777746143138,4.332071333740781,3.644910639336292,,3.5924652892329547,3.584972173153693,3.5902582791401447,3.590346729244437,3.769438193664754,3.5894622928303304,3.5939182311834137,3.6864814551192815,4.133274002284289,3.960560055784934,,3.9460668834974006,3.943978918582129,3.9454523505444734,3.9454769863806436,3.9941541766891784,3.9452306187082278,3.9464712432052083,3.9719006745324763,24.22187641723356,10.322752267573696,8.383732993197277,7.562124433106575,-1.688935185185185,0.0,-3.203287037037038,0.15173611111111107,0.0,161.40500434918002,54.369128883754655,-100.57848533412427,-14.619765503302208,-4.190770222255178,-11.175387259347142,62.58422141624436,115.77574121740504,6.845045472555806,4.823989217391876,7.718382747827002,199.0,17.0,1.2701163565179132,0.4921914601639027,0.11785113019775792,0.05892556509887896,0.9772838841927121,0.09580324884654497,0.23570226039551584,0.019176224944066803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.776020881938894,6.464761983110796,5.44741151772795,3.4533186737006583,4.918773084265206,2.538444376738774,3.7068690064583683,1.5821527280974632,1.801694471681498,0.7039547903258536,0.7891491309924316,0.32164670406324314,0.408248290463863,0.08819864688145264,0.0,0.0,3.645508129300392,0.8613819091764179,3.821884155697311,0.7395208388634336,4.068200814364541,0.5760476866084323,38.339850002884624,26.330097248295072,22.412281254206743,21.355639587059308,21.355639587059308,21.355639587059308,52.0,58.0,22.939515999999983,13.992483999999997,0.0,11.06,7.034722222222221,2.8750000000000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,24.0,0.0,2.0,23.0,0.0,1.0,1.0,22.0,1.0,11.0,22.0,0.0,0.0,0.0,6.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,3.0,0.0,12.0,6.0,0.0,2.0,2.0,0.0,0.0,5.0,0.0,0.0,2.0,0.0,0.0,2.5649493574615367,0.0,2.8903717578961645,3.044522437723423,2.772588722239781,2.1972245773362196,1.791759469228055,0.0,0.0,0.0 +443866,Cc1cccn2c(=O)c(-c3nnn[n-]3)cnc12,0,30.208333333333332,6.8824749999999995,4.125,13.083333333333334,167.30244948884348,120.12074804166666,1.621020597247625,6.924508333333333,5.922453703703703,8.208164166666666,255.37629353351113,31.5,6.894219230769232,4.6923076923076925,12.76923076923077,154.57248012174233,122.97235611538457,1.843628852692307,7.001953846153849,4.346153846153847,8.16082353846154,287.34754685590485,28.804878048780488,6.799941463414635,4.487804878048781,11.585365853658537,158.99573257588895,111.8684980243902,1.7044883440133412,6.887317073170733,4.09078590785908,8.114775317073171,262.84276852471754,26.41304347826087,6.620847826086957,4.0,9.26086956521739,154.34870116719995,101.221840673913,1.6231079797760428,6.728608695652173,4.0736714975845425,7.991704608695653,247.80714054281592,23.294117647058822,6.933678431372548,3.196078431372549,8.411764705882353,170.42149132188229,87.05781278431373,1.3511928231646273,6.959023529411765,4.968409586056644,8.320917176470587,205.33130008105636,21.238095238095237,6.669561904761904,2.9761904761904763,7.476190476190476,164.8850161254761,78.35811926190475,1.3021047900130238,6.7161452380952396,4.609788359788361,8.085286190476191,189.06381141633622,16.258064516129032,6.304129032258064,2.7096774193548385,5.258064516129032,169.35721741295134,58.7115182580645,1.1365009662190966,6.343838709677421,3.462365591397849,7.847107354838711,160.28806435158987,22.88235294117647,6.779764705882354,3.1176470588235294,6.705882352941177,170.42582202006173,85.40148564705883,1.3252164320499413,6.826352941176473,4.009803921568628,8.145304470588238,200.35164462187876,17.0,7.017142857142859,2.2857142857142856,2.857142857142857,187.93175778449998,58.15306199999999,1.0487659285714288,6.992000000000002,4.0,8.419383999999999,153.83594810960417,6.442708333333333,0.13979722222222216,0.023876935215705036,0.609375,4.576388888888888,1.9499068937184554,30.497447956597217,0.18406388762678993,0.12545208333333333,1.6110628858024691,0.08043832638888887,38.889659071812254,0.515625,0.023372649572649562,-0.003272958996359305,0.27524038461538464,1.8691239316239314,0.02419515797788457,2.3246805450053434,-0.017748990590063938,0.020372596153846158,0.032544664055080746,0.011350321047008545,-2.3568940754608656,1.3235518292682926,0.0336192411924119,0.005430076504310553,0.00038109756097560977,1.1695460704607048,0.27627492028551665,6.207612510882454,0.020373267198169422,0.030069054878048777,0.10506177544414337,0.01800394190379403,5.235636818458642,0.26290760869565216,-0.004791787439613531,-0.004853194084749773,-0.14741847826086957,0.07759661835748796,-0.8948048822444739,1.127913169308576,-0.06655624855312413,-0.0001584239130435002,0.0042752784487386074,-0.006717699577294693,-7.51462416562108,-0.6387867647058824,-0.002476470588235287,0.001158323000615408,-0.0897671568627451,-0.35253267973856206,0.6336224322622328,-2.974469182087417,0.033310294180696975,-0.005430024509803903,0.09211884985475671,0.0017606670751634087,2.5046559961647747,-0.3802083333333333,0.04002460317460316,0.0052823782917097205,-0.026041666666666668,0.42757936507936495,-0.04652619740290068,-2.1335105974702366,-0.06255059872765303,0.03194315476190478,0.18716242283950607,0.023335070436507923,-12.921341650236482,1.4954637096774193,-0.020289964157706092,-0.0033386397513639255,0.11643145161290322,0.31070788530465926,-0.4996792527865427,7.397155777273739,0.04935504786097082,-0.013204233870967771,-0.4536554783950617,-0.01770572423835126,12.487643431710328,-0.9549632352941176,-0.04743202614379081,-0.0038913445775770918,-0.20496323529411764,-2.115604575163399,-1.214745685449885,-4.455379150224671,-0.05187888636704238,-0.03789080882352942,-0.16757160039941904,-0.027504983251633978,-7.160632910860317,-5.198660714285714,-0.1471841269841269,-0.01413978176822779,-0.09151785714285714,-5.7192460317460325,0.11969662309068638,-24.131429444692454,0.02421954807491241,-0.13299375,-0.8840456900352732,-0.07373432638888884,-4.293605350969312,,,0.45490196078431383,1.5,0.8235294117647058,0.029411764705882353,0.6764705882352942,0.14705882352941177,0.5434333902932672,0.008432742032000022,0.02360921262023532,0.9322056795971587,0.3061099873865466,0.18041100954457662,1.4756390698904258,0.4865209969311233,2.0599245995038467,1.2294531880837074,0.724658281623526,0.10581312979661342,0.0,0.8304714114201395,9.46119510099625,725.0,165.1794,99.0,314.0,4015.2587877322435,2882.8979529999997,38.904494333943,166.1882,142.13888888888889,196.99594,6129.031044804267,819.0,179.24970000000002,122.0,332.0,4018.884483165301,3197.281258999999,47.93435016999998,182.05080000000007,113.00000000000001,212.18141200000005,7471.036218253526,1181.0,278.79760000000005,184.0,475.0,6518.825035611447,4586.608418999998,69.88402210454699,282.38000000000005,167.72222222222226,332.70578800000004,10776.553509513418,1215.0,304.559,184.0,426.0,7100.040253691198,4656.204670999998,74.66296706969797,309.51599999999996,187.38888888888894,367.61841200000003,11399.128464969532,1188.0,353.6175999999999,163.0,429.0,8691.496057415996,4439.948452,68.910833981396,354.91020000000003,253.38888888888889,424.3667759999999,10471.896304133874,892.0,280.1216,125.0,314.0,6925.170677269996,3291.0410089999996,54.688401180547,282.07810000000006,193.61111111111117,339.58202,7940.680079486121,504.0,195.428,84.0,163.0,5250.073739801492,1820.0570659999996,35.231529952791995,196.65900000000005,107.33333333333331,243.26032800000004,4968.929994899286,389.0,115.25600000000001,53.0,114.0,2897.2389743410495,1451.825256,22.528679344849003,116.04800000000003,68.16666666666669,138.47017600000004,3405.977958571939,238.0,98.24000000000002,32.0,40.0,2631.0446089829998,814.1428679999999,14.682723000000005,97.88800000000002,56.0,117.87137599999998,2153.7032735344583,154.625,3.3551333333333315,0.5730464451769208,14.625,109.83333333333333,46.79776544924293,731.9387509583332,4.417533303042958,3.0108499999999996,38.66550925925926,1.9305198333333329,933.3518177234942,13.40625,0.6076888888888886,-0.08509693390534193,7.15625,48.597222222222214,0.6290741074249988,60.44169417013893,-0.4614737553416624,0.5296875000000001,0.8461612654320994,0.2951083472222222,-61.27924596198251,54.265625,1.3783888888888878,0.22263313667673268,0.015625,47.95138888888889,11.327271731706183,254.5121129461806,0.8353039551249464,1.2328312499999998,4.307532793209878,0.7381616180555554,214.66110955680432,12.09375,-0.2204222222222224,-0.22324692789848954,-6.78125,3.5694444444444464,-41.1610245832458,51.8840057881945,-3.0615874334437096,-0.0072875000000010084,0.19666280864197594,-0.30901418055555585,-345.6727116185697,-32.578125,-0.12629999999999963,0.05907447303138581,-4.578125,-17.979166666666664,32.31474404537387,-151.69792828645828,1.6988250032155459,-0.2769312499999991,4.698061342592593,0.08979402083333385,127.73745580440351,-15.96875,1.6810333333333325,0.22185988825180825,-1.09375,17.95833333333333,-1.9541002909218288,-89.60744509374994,-2.6271251465614274,1.3416125000000005,7.860821759259255,0.9800729583333327,-542.6963493099322,46.359375,-0.6289888888888888,-0.1034978322922817,3.609375,9.631944444444438,-15.490056836382823,229.3118290954859,1.5300064836900955,-0.4093312500000009,-14.063319830246913,-0.5488774513888891,387.11694638302015,-16.234375,-0.8063444444444438,-0.06615285781881056,-3.484375,-35.96527777777778,-20.650676652648045,-75.7414455538194,-0.8819410682397205,-0.6441437500000002,-2.848717206790124,-0.4675847152777776,-121.73075948462538,-72.78125,-2.0605777777777763,-0.19795694475518905,-1.28125,-80.06944444444446,1.6757527232696092,-337.84001222569435,0.3390736730487737,-1.8619125,-12.376639660493826,-1.0322805694444437,-60.110474913570364,0.6957683909303933,0.521292096187413,0.43530826041205767,0.2576665464552342,0.2733613002550562,0.1307173469048189,0.17545060703802431,0.06466207949763125,0.11385822489033508,0.03261893710070937,0.07044916393376974,0.0169758168595831,0.0452317138362733,0.008681982038341012,0.030212903763040932,0.004334227492499491,8.022250557177891,5.71831783814532,3.5458153759434103,2.2095878203619908,0.45883330325953076,-0.5038113378046929,3.286963838721609,0.977916688726823,6.033847493937815,0.9959511053730479,14.781784193956812,10.985822190380365,16.010093832051872,11.734624451636849,1.9694862328243206,0.7485335092056353,3.491778966611565,2.2563991659272657,7.008278008853671,1.4282292351324772,3.7042874421583245,2.4505153796450876,20.857598499873323,14.702692199919586,0.3440994648712647,0.7705270635406539,0.8531270065283874,0.869646995125934,0.869646995125934,0.869646995125934,1.6969639785483521,730.1359792766608,0.0,5.0,1.0,0.0,2.0,0.0,2.0,0.0,0.0,2.8491891836501577,0.6981203125901443,0.2814536459234782,0.19812031259014518,0.19812031259014518,0.19812031259014518,-22.297778834243815,576.4021908329256,51.695120846163746,24.0167579513719,49.94862446850712,,8.0,234.0,0.0,4.794537184071822,16.94712288474893,5.647177220767728,5.563451491696996,10.59753817787487,12.263210640074686,12.990104268152233,25.60811232885902,0.0,7.733333333333335,25.5,14.0,0.5,11.5,0.0,0.04509803921568617,2.5,0.27059692671394764,0.08305555555555544,-0.1875413711583922,0.0,0.20072566371681388,0.0,0.7152777777777778,0.8862745098039213,0.44468085106383015,0.6322222222222224,0.8862745098039213,9.238367634985542,0.1433566145440004,0.4013566145440004,15.847496553151698,5.2038697855712925,3.0669871622578024,25.08586418813724,8.270856947829095,0.5132743362831861,0.10775862068965514,0.0,0.3749999999999999,0.1,0.5288517533619573,-1.038028011015816,-0.10440635590696172,-0.043251167125659004,-0.09436618281961963,0.4711482466380427,0.45361956256793357,0.029373325715813425,0.01890081510699723,0.034893812505225656,-2.806289512985765,0.5320564641502394,0.5147044100811463,1.0872728194296406,0.544378698224852,0.28592272674215014,1.1233236861255085,0.5385814599650769,1.0085334348727049,0.48923636437959633,0.5052372717832053,0.548818819206441,0.8454288628049124,0.5641500877417829,0.5377795073875392,0.7384730262016914,1.0931832395247028,0.5311817609830121,0.9218848852830932,0.5684072168729077,0.8380908092451326,0.5241778008560098,0.5769113673415898,0.5492959783048788,0.7469668339904256,0.7550525464834277,0.8248852504619788,1.208207972114305,1.3333333333333333,0.7670713201820942,1.4495803981342796,0.7614731963846085,1.3682779055552643,0.783458159655911,0.8890352321369773,0.9130022751212344,1.1283134322288848,1.1243520852156546,1.1729056675226375,1.0150069714810313,1.094687447628624,1.1127376595554763,0.6116119825025369,1.118418621504506,0.7526063350463245,1.1915103122139632,1.2927195603598403,1.1803193128572302,0.8682676475312363,1.0996650883473844,0.7548926449591103,0.6778951207356063,0.936100936100936,0.9074355083459787,0.916828888998724,1.1097398877893023,1.3438401301223084,0.7933687449438813,1.10038529136323,0.7824713582881134,1.3514738212689121,1.082014238401961,1.2718546512261426,0.9167700064804721,0.8370554177005789,1.1517450682852808,0.9969280180980905,1.0725526803736167,0.8475409303647374,1.273982215931949,1.6563459271139813,1.3466207827264443,0.9177671088521686,1.1024775310285797,1.2070739715203742,1.0424769776288803,1.110105580693816,1.472016424172097,1.6061392585964605,1.101696966893145,1.129443985344937,1.1757828793705902,0.5613124406825623,1.1038260684261598,1.0877826106785529,1.9337105901374294,2.171276281689181,1.7429297632631455,0.6739926739926739,2.4979406026447,0.9061703557704492,1.9142189957168605,0.5906213870932658,2.1870568111994944,1.1259573485454288,1.8836097600309554,0.9715226996448845,2.5,0.0,2.4444444444444455,1.3402777777777777,1.097777777777778,0.4688888888888889,0.16244897959183674,0.08680555555555555,0.04081632653061224,0.0,3384.134665791363,3556.9084564133705,1769.6547623698193,1698.978127529636,9.567481007238964,0.39886090059089446,5.751386916305353,0.6635084974225732,1.0,0.1,1.7357733170709984,3.886842188131012,4.303508854797678,4.386842188131011,4.386842188131011,4.386842188131011,0.13157894736842105,0.0,0.09053497942386837,0.04963991769547325,0.04574074074074075,0.027581699346405232,0.01624489795918367,0.010850694444444444,0.01020408163265306,0.0,0.3823759586111898,12.055401662049862,4.938271604938271,2.1717451523545708,95.13672254516045,1.0,3.7894404250585008,58.5712531556006,,38.58731493040715,37.6396540313994,36.892115129963564,38.595620321641526,54.94780945539459,38.1852713202001,38.644632455481016,49.49254795870145,0.08003233629749394,0.16718965656911491,-0.13707617693775534,0.4516765285996056,0.4084276876386132,0.012408365781888494,0.07622541231363812,-0.09642842395055785,0.16239344626677113,0.02020074097782364,0.1411058826874895,-0.06060464739762077,0.20543407535934696,0.24048575971681782,0.227419325606702,0.0006253908692933084,0.2555609015877716,0.14168621136502718,0.20354531040488652,0.11068584642457674,0.23968557619050126,0.06521270918100269,0.22382293008872145,0.13462799477852716,0.04080700151137043,-0.03427669994756039,-0.20325866954472402,-0.241917502787068,0.016955861977963987,-0.45889620941751164,0.03698385421999172,-0.36159319142532914,-0.001262824090553832,0.0026537005391996816,-0.08351366666702086,-0.19322936597990853,-0.09914879452185078,-0.017714733875746694,0.0485122144090554,-0.14731020613373555,-0.0770329376059984,0.32495009597813174,-0.09753174056795066,0.18097137146335468,-0.04328365353149234,0.05717892868525265,0.02188841009261244,0.06440416439598419,-0.05901374292643492,0.2863047100533937,0.22123351443510392,-0.042735042735042736,0.09343160632993712,-0.023860727685400214,-0.06995702068273274,-0.33983091161521783,0.25462434670797773,0.11617325710180494,0.29009890538611766,-0.3322564907647144,0.2321172451560748,-0.14513853591062842,-0.1398269803558347,0.1910669975186104,0.06789368055215621,-0.2562580061623654,0.2425499926354849,0.26814085314248975,-0.10525320520890331,-0.2815876912024426,-0.22011552245319954,0.32110447172218953,-0.14822388130676684,-0.3392916210337334,-0.16297504442771044,-0.3363499245852187,-0.4622868874408641,-0.6229762504882351,-0.14609022881407627,-0.2818526058312569,-0.3020341138763825,-0.10401307228671697,-0.3419387807580406,-0.18412691398599684,-0.8069061092504908,-1.0528401397716078,-0.5921941673204089,-0.15018315018315018,-1.2497290266637766,0.06138581461314081,-0.7912606156107017,0.13158229127497428,-1.0601159141106333,-0.5487344397453057,-0.9166566448984937,-0.11040480820469249,2.5751226567976713,7.538338271369121,4.508797713853318,16.9035281920327,40.70177701246545,43.12194367913213,43.20594367913212,43.20594367913212,43.20594367913212,35.01871819156539,20.900704197423025,12.319190787599942,1.798823206542428,0.0,14.118013994142371,2103.693788535634,1743.4595879847059,363.5343814143762,51.0,27.0,38.0,50.0,58.0,62.0,69.0,67.0,67.0,227.06868242391,19.0,4.532599493153256,5.407171771460119,6.297109319933935,7.186144304522325,8.081784206935001,8.975756630519417,9.873389104712095,10.769642214916486,11.668124166859037,0.8125,1.0386666666666666,1.1419720574348224,0.7881906863153221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7178031686626748,1.0225490196078433,1.038207089099296,0.7149574089151233,4.0,5.0,0.0,0.0,0.0,1.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.098681808301038,5.647177220767728,0.0,0.0,5.559266895052008,19.50729869428952,4.9839785209472085,5.213385095654868,0.0,6.06636706846161,18.55355575984923,18.21809164122608,5.563451491696996,204.35880073957114,-401.1145999171683,-40.34468553256829,-16.713108329882015,-36.46496362883348,182.06102190532732,175.2875909157573,11.350435313595458,7.303649621489886,13.483660839673638,0.5,0.6803639504223977,0.168215680020977,123.3582811886098,0.27593760427934066,29.107870507357916,0.31963604957760233,4.0,0.05263157894736842,0.3785796103671477,0.8477369635018086,0.9386137518291133,0.9567891094945742,0.9567891094945742,0.9567891094945742,-0.1878800000000005,,1.1071428571428574,1.3997208003722659,1.5246316986241883,1.104266649991819,-4.19138517343006,1.225826193390453,1.090072758891449,-2.3149422475185983,58.34,0.0,0.0,30.008806935120813,0.0,6.923737199690624,0.0,40.443676850970206,0.0,11.387855989696924,3.6635616461296463,0.0,4.990432586778736,2.3978952727983707,6.532334292222349,4.442651256490317,8.178358165605836,6.293419278846481,9.879143629146611,19.5,6.787145376669185,18.227405202821867,0.0,0.0,0.0,0.6191893424036283,1.4095653817082392,1.4593518518518518,24.928,0.0,12.166481481481481,0.0,0.0,0.0,0.0,0.0,0.0,27.40732937843574,10.657948703353046,0.0,0.0,24.910125126819775,0.0,6.923737199690624,5.563451491696996,29.320958464221196,0.0,17.03503321046465,0.0,18.91657647156773,17.227276047904194,22.492646960226132,117.14250631120123,,77.04437775997397,75.11463502746089,73.60486182479487,77.0613269197546,111.036582080051,76.22632779411896,77.1610210569748,99.54825745939156,22.492646960226132,117.14250631120126,,76.15659359206728,74.00635196356339,72.58029431888068,76.17580750927308,114.0870040842193,75.2482108634717,76.28632196726686,101.30003816492155,4.902998326466971,86.55988418089485,,57.68903259528443,56.324396662386796,55.194856365593864,57.700831414462364,81.27453159885559,57.107967667542276,57.7717506077374,73.5155790265404,1.3230968800133018,6.890735665364779,,4.532022221174939,4.418507942791817,4.329697754399698,4.5330192305738,6.531563651767706,4.483901634948174,4.538883591586753,5.8557798505524445,2.457866808695114,58.5712531556006,,38.58731493040715,37.6396540313994,36.892115129963564,38.595620321641526,54.94780945539459,38.1852713202001,38.644632455481016,49.49254795870145,24.541176470588237,0.0,1.892435437137818,0.0,0.0,0.0,0.0,24.916970138383103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.15897781396296,262.9061170562054,41.65855960970396,93.28421251514428,103.28421251514428,105.28421251514426,105.28421251514426,105.28421251514426,525.0,108.79172121301167,123.51370558869306,63.377796128018346,87.14,87.14,1.0,8.93129098254531,5.247927513443585,3.797110472773677,4.068050829720997,,4.061172982131605,4.060618314912231,4.060594592371727,4.06117886954122,4.0521656937393455,4.060984639623358,4.061198584829821,4.057081668934015,0.2233594395749222,0.2392971076306469,,0.23889252836068267,0.23885990087719008,0.238858505433631,0.2388928746788953,0.23836268786702033,0.2388814493896093,0.2388940344017542,0.23865186287847148,1.8648686266406793,1.9337922241854164,,1.9321000948038938,1.9319635073935677,1.9319576652759491,1.932101544484903,1.9298797284534634,1.9320537173468062,1.9321063990459504,1.9310921654595181,152.67999999999984,90.98096043177844,83.999403403041,,84.16128225805377,84.1830815958415,84.25372399495862,84.16125287775625,84.8208544784239,84.17153440340532,84.16001750595265,84.45565528335666,5.3518212018693205,4.941141376649471,,4.950663662238457,4.9519459762259705,4.956101411468154,4.950661933985662,4.989462028142582,4.951266729612078,4.950589265056038,4.967979722550392,5.0412785096637895,4.961437947535512,,4.9633632358914666,4.963622220955303,4.9644610210383515,4.963362886796231,4.971169689078432,4.96348504393303,4.963348208059541,4.966854858128994,1.4593518518518518,16.39138888888889,14.00249779541446,1.6075453514739237,0.1929686318972037,3.6816654069035017,3.1054799697656836,1.892435437137818,0.0,166.74428277283556,78.96829153770922,-154.99863256027157,-15.589986228159239,-6.458276356677983,-14.090784778206505,70.35198779520556,67.73459979351844,4.38603320082195,2.8222749913966014,5.210353830270649,483.0,27.0,1.0030673072559209,0.4223431663004276,0.0,0.0,0.37695682242814754,0.08282974094132667,0.0,0.0,0.0,0.0,0.0,0.0,0.14433756729740643,0.018257418583505537,0.20693027063286606,0.04507904016709017,0.4214649973051464,0.08039182969067446,11.828062645816686,8.86196563518602,8.270856947829095,4.895664382649449,7.380755106886518,3.52936836643011,6.6671230674449244,2.457159020909988,5.692911244516754,1.6309468550354687,4.086051508158644,0.9845973778558198,2.8043662578489448,0.5382828863771427,2.0846903596498243,0.2990616969824649,2.905900611388348,0.8751699069341684,4.930254041819825,1.1204265284291015,7.609755255088677,1.3500530470105208,57.733463119189985,26.663095837900652,23.118985420152253,22.90357187842549,22.90357187842549,22.90357187842549,92.0,111.0,28.769550999999993,11.880448999999997,0.625,89.07,4.916666666666666,3.722222222222222,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,15.0,16.0,24.0,0.0,0.0,26.0,16.0,1.0,7.0,19.0,17.0,19.0,9.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,6.0,0.0,3.0,17.0,7.0,0.0,6.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,3.0,3.0,3.367295829986474,7.607316416385653,4.073291153024268,4.786449533203602,5.442688236696851,5.95518949124327,6.359790108266689,6.832425406766345,7.169758901503061,7.557277059984718 +3869,CC(CCc1ccccc1)NCC(O)c1ccc(O)c(C(N)=O)c1,0,20.791666666666668,6.052287500000001,2.9166666666666665,6.125,163.0406332774891,81.78541533333333,1.4168629524245002,6.118572916666667,4.738425925925926,7.60357,206.8464932690839,22.551020408163264,6.289530612244898,3.5306122448979593,5.6938775510204085,147.6064914449245,84.22184328571427,1.7743962196326528,6.426724489795918,3.240362811791383,7.728520734693878,255.57065877252145,18.819277108433734,6.087795180722892,3.216867469879518,4.385542168674699,151.56454012599875,68.83997673493975,1.5463530519270243,6.20704939759036,3.092034805890228,7.58168274698795,214.49713389009273,14.991304347826087,6.002339130434783,2.643478260869565,3.2,158.33056801722984,52.825015904347815,1.2950449707563478,6.089566086956521,2.945893719806764,7.56294987826087,173.31798638941507,12.793650793650794,5.912984126984127,2.2777777777777777,2.642857142857143,161.53930031091485,43.842328,1.1479872876307142,5.983815079365078,3.028439153439154,7.511954222222222,147.99375968281345,11.648,5.788368,2.192,2.128,164.54920955825486,39.959647663999995,1.0704472135172638,5.852468,2.514666666666667,7.420278656000001,136.71178594346483,12.8,6.001545454545456,2.2363636363636363,2.272727272727273,163.65064166112566,43.75564465454545,1.1163674552629363,6.058702727272728,3.3404040404040405,7.602995199999999,144.44804539713886,11.028301886792454,5.905565094339623,2.0943396226415096,1.830188679245283,164.66619154185352,36.15688289622642,1.0919400699709716,5.961545283018868,2.759958071278826,7.528930603773585,136.60244885023377,10.458333333333334,5.63015625,2.15625,1.8958333333333333,164.25481263538452,35.277023729166665,1.0816250448095313,5.701130208333335,2.21875,7.277609749999999,133.90578637866574,7.347222222222224,0.11697343749999996,0.02250275068116836,0.5399305555555555,3.3472222222222228,1.4167247470267885,34.973591659722224,0.22789842521225,0.1109676649305555,1.7484085648148149,0.07174715972222219,50.520725414175,-0.2222222222222217,-0.01706297831632648,-0.012821919010902896,0.14969529478458046,0.6145124716553285,0.20865325416547492,-0.9066918263889034,0.029904160881882632,-0.015461287379535081,-0.26869862528344673,-0.009814792375283429,4.282533863368616,-0.1178045515394909,0.004471592620481943,0.0013262636851757268,-0.09013135876840699,0.014725568942436285,-0.07227737266446584,-0.6227814358266474,-0.015650332501647598,0.0037422497280790103,0.1445521670013387,0.0027474205990629203,-2.765574348007707,-0.4830917874396134,-0.003573220108695642,-0.0007369163161771024,-0.04717693236714978,-0.12367149758454112,-0.08743150599932027,-2.338894097403384,-0.021237010973132613,-0.003727936669685975,-0.005906551932367143,-0.0020008553743961323,-4.324804730132803,-0.3015873015873014,0.009283308531746024,0.0019332113491082842,-0.01942791005291005,0.19576719576719578,-0.21285690486113037,-1.5579431041666654,-0.03171394054065475,0.007577325148809522,0.19281167328042323,0.006551837632275129,-6.0381961758217,0.7164444444444443,0.002396062499999977,-0.0035013428514876887,-0.056263888888888884,0.11911111111111122,-0.11131983174528759,3.402388342277781,-0.0004464590453219932,0.004482751736111077,-0.02864930555555552,-0.0010173770555555648,2.64997606591394,-0.3555555555555555,0.013187585227272732,0.0037519199128029793,-0.03993055555555555,-0.3585858585858585,-0.09073649688288386,-1.7887657892676765,-0.013045354569981816,0.009856842645202034,0.27047821969696967,0.011235963005050505,-4.222402560723744,-1.1247379454926627,-0.007110229952830186,-0.0012359209244734244,0.04969208595387843,-0.37631027253668753,0.12870857531695865,-5.316675148715932,-0.000929089254448117,-0.00996876555948636,-0.2151058045073375,-0.0021586660115303956,-4.3602667492434435,0.7951388888888888,0.00546406249999996,-0.0011564218292631871,-0.011718749999999993,0.263888888888889,0.1075669952903487,3.7861757612847278,0.014268338897109377,0.006798719618055501,0.027271412037037066,0.00198964062499998,4.916644657378588,,,0.47083333333333344,1.1666666666666667,0.5833333333333334,0.020833333333333332,0.5833333333333334,0.0,0.8350382324741671,0.01854080465776405,0.025707471324430714,0.8616985571073476,0.23523177085279456,0.24265298958832038,1.6967367895815146,0.47788476044111494,1.9912534207696322,1.618319720588654,0.15411299744374274,0.21882070273723553,0.0,0.37293370018097827,6.837056096416681,998.0,290.50980000000004,140.0,294.0,7825.950397319477,3925.699936,68.00942171637601,293.6915,227.44444444444443,364.97136,9928.631676916028,1105.0,308.187,173.0,279.0,7232.7180808013,4126.870320999999,86.94541476199998,314.9095,158.77777777777777,378.697516,12522.962279853551,1562.0,505.28700000000003,267.0,364.0,12579.856830457895,5713.718069,128.34730330994302,515.1850999999999,256.6388888888889,629.2796679999999,17803.262112877695,1724.0,690.269,304.0,368.0,18208.01532198143,6074.876828999999,148.93017163698,700.3000999999999,338.7777777777778,869.739236,19931.568434782734,1612.0,745.0360000000001,287.0,333.0,20353.95183917527,5524.133328,144.64639824147,753.9606999999999,381.58333333333337,946.506232,18647.213720034495,1456.0,723.546,274.0,266.0,20568.651194781858,4994.955958,133.805901689658,731.5585,314.33333333333337,927.534832,17088.973242933105,1408.0,660.1700000000001,246.0,250.0,18001.570582723823,4813.120911999999,122.800420078923,666.4573,367.44444444444446,836.3294719999999,15889.284993685273,1169.0,625.9899,222.0,194.0,17454.616303436473,3832.6295870000004,115.74564741692299,631.9238,292.55555555555554,798.066644,14479.859578124779,1004.0,540.495,207.0,182.0,15768.462012996915,3386.5942779999996,103.836004301715,547.3085000000001,213.0,698.6505359999999,12854.95549235191,352.66666666666674,5.614724999999998,1.0801320326960813,25.916666666666664,160.66666666666669,68.00278785728585,1678.7323996666667,10.939124410188,5.326447916666664,83.92361111111111,3.443863666666665,2424.9948198804,-10.888888888888864,-0.8360859374999975,-0.6282740315342419,7.335069444444443,30.111111111111097,10.224009454108272,-44.427899493056266,1.465303883212249,-0.757603081597219,-13.16623263888889,-0.480924826388888,209.84415930506216,-9.777777777777745,0.3711421875000012,0.11007988586958532,-7.48090277777778,1.2222222222222117,-5.999021931150665,-51.69085917361173,-1.2989775976367506,0.31060672743055784,11.99782986111111,0.22803590972222237,-229.54267088463968,-55.55555555555554,-0.41092031249999883,-0.08474537636036678,-5.425347222222225,-14.222222222222229,-10.05462318992183,-268.97282120138914,-2.4422562619102504,-0.42871271701388713,-0.6792534722222214,-0.23009836805555522,-497.3525439652724,-37.99999999999998,1.1696968749999992,0.2435846299876438,-2.4479166666666665,24.666666666666668,-26.819970012502427,-196.30083112499983,-3.9959565081224993,0.9547429687499998,24.29427083333333,0.8255315416666663,-760.8127181535342,89.55555555555554,0.29950781249999714,-0.43766785643596107,-7.032986111111111,14.888888888888903,-13.914978968160948,425.2985427847226,-0.05580738066524915,0.5603439670138846,-3.58116319444444,-0.1271721319444456,331.2470082392425,-39.11111111111111,1.4506343750000006,0.4127111904083277,-4.392361111111111,-39.444444444444436,-9.981014657117225,-196.76423681944442,-1.4349890026979997,1.0842526909722237,29.75260416666666,1.2359559305555556,-464.46428167961176,-119.22222222222224,-0.7536843749999997,-0.13100761799418298,5.267361111111113,-39.88888888888888,13.643108983597617,-563.5675657638888,-0.0984834609715004,-1.0566891493055541,-22.801215277777775,-0.22881859722222192,-462.188275419805,76.33333333333333,0.5245499999999962,-0.11101649560926596,-1.1249999999999993,25.333333333333346,10.326431547873476,363.47287308333387,1.3697605341225,0.6526770833333281,2.6180555555555585,0.19100549999999808,471.99788710834446,0.7302805524402481,0.5739520327545545,0.4587693700234705,0.32206505368211824,0.3090751393451301,0.18152134991896973,0.20171603660810744,0.10357318922753454,0.13091656734436982,0.05724683998743793,0.08651802048528633,0.03342470763687793,0.05880080705719861,0.01964259437903785,0.037504426339274866,0.011892167522296385,8.022241448037825,5.687649981907553,3.544113578162257,2.186506196762908,0.4205890470518119,-0.3523092122446056,3.206069684465118,0.9728411675989698,6.021940214973659,0.9939325812965372,14.540672715399143,10.948260983112679,16.010395506629024,11.69933733151803,1.9947825759762323,0.7516010543713562,3.4893839765277637,2.2362426359137153,7.0082763170197016,1.2558291407158761,3.7022816146004387,2.4322588425195804,20.90179989888078,14.702440891922455,0.2531760396475218,0.6215880804490915,0.8056178617614154,0.891715578658465,0.9159480949848264,0.9159480949848264,1.6481804504493662,673.56704729252,0.0,1.0,2.0,0.0,9.0,4.0,3.0,0.0,0.0,4.114679380727069,1.9751799022327865,0.9064536459234782,0.40645364592347555,0.26572682296173866,0.26572682296173866,180.8815972267156,1367.944413910416,67.70977484883092,28.498841956467,55.91052604338046,,14.0,553.0,12.011146117099809,15.007591973753232,17.35480415412886,12.10820789760957,12.841643245852019,17.696185628620217,6.06636706846161,18.19910120538483,24.373259940620173,5.733667477162185,11.300000000000002,28.0,14.0,0.5,14.0,0.0,0.029166666666666563,0.0,0.12744047619047605,0.0529166666666665,-0.07452380952380955,0.09123563218390796,0.14616080402010023,0.0,0.5645833333333335,0.8291666666666665,0.4371428571428575,0.511666666666667,0.7379310344827585,20.04091757938001,0.4449793117863372,0.6169793117863371,20.680765370576342,5.6455625004670695,5.823671750119689,40.72168294995635,11.469234250586759,0.5678391959798997,0.1681415929203539,0.0,0.3097345132743362,0.3157894736842105,0.3392367748042769,-0.8248855533266255,-0.05988952338197139,-0.0171851156943047,-0.04582697518481253,0.660763225195723,1.6067068169361334,0.060468124370672324,0.03347305868616944,0.05355689389787111,-3.8679648162425226,0.9464912619111915,0.9682335833228605,1.5404294161716345,0.9807730166021394,0.6955076636463713,1.0954608126746976,0.9474236631317843,1.0064606305411252,0.9558705872309401,0.9205305953577129,0.9565768224657673,0.9737196685765815,0.928878083221354,0.7037158693145877,0.6998844061845166,1.507612443342502,0.9304604309353597,1.1963586025100903,0.9365019743138916,1.1643879090237153,0.7182860534579927,0.5825243879946761,0.6804588592895349,1.1018358635439618,1.0250226021204896,0.948668011345168,0.8834599907218966,1.1511813225220189,1.00096518130976,1.1019013847147014,1.02775636302516,1.1060216647600882,0.9527577969418228,0.8590556025255887,0.938044919913488,1.0822198751239587,1.0143352236925014,0.8702026212679004,0.808313752235913,0.9355382024192316,0.862502469867615,1.120008154941034,1.0182821291125879,1.1161844568670263,0.8847036990370473,0.8038129387736338,0.853189093713133,1.0991661833867206,0.8779848771266539,0.8821867500189233,0.9964128784280002,1.1098649517684889,0.9091867219917013,1.0053952583757,0.879072244920646,0.9518591463068418,0.8750053455730932,0.8678023996690112,0.8901859796811548,0.9205070921277922,1.0540470871283723,0.9989425532457469,0.8582924271283189,1.0551300789242912,1.1023104488872122,1.0271820467424748,1.0541431555962968,1.0029151776395553,1.0107607602072917,0.9183270019182307,0.9686112763711365,1.0354957821083053,1.1478849377608158,1.1067364394012138,1.0460442665961929,0.7014499787660015,1.0611152430908948,0.8570259821201055,1.1451997451782594,0.9460018284198356,1.131447685981094,1.1323939703827448,1.0757146185614699,1.0409951808281745,0.8294689272211718,0.6421747057959204,0.7624808796250009,0.9350884244372991,0.8075077800829874,0.842842920332596,0.8341314583377031,0.9072958989129037,0.6627891672647693,0.5838539511791476,0.598501219463682,0.9020884174279749,5.0,0.06193245587184981,2.88888888888889,1.25,1.1244444444444448,0.9236111111111112,0.2653061224489796,0.22395833333333331,0.28344671201814053,0.11000000000000001,4291.527065073014,4985.580111542868,2186.352651122955,1924.978447564929,12.641478201859147,0.46743724756283667,6.73238042605651,0.8777129933021164,1.0,0.3157894736842105,1.4702831199940867,3.6097825984883696,4.678508854797678,5.1785088547976805,5.319235677759417,5.319235677759417,0.2,0.0041288303914566536,0.08754208754208757,0.03787878787878788,0.040158730158730165,0.03552350427350427,0.011054421768707483,0.011787280701754384,0.015747039556563366,0.0057894736842105275,0.44961015595580234,20.3136,10.222222222222221,6.682445759368837,141.6828346113938,1.0,4.0737054970607725,138.18261911962676,,117.24404527738577,115.98329533796894,115.52122153883221,117.25666360508578,140.84121498370973,116.73581034081386,117.31729649838877,132.22511383409076,-0.030245746691871384,-0.14587053848294818,-0.5697934084846364,0.2772491633309272,0.18358878821238028,0.14727861188517063,-0.025925041820428943,0.1312170580118393,-0.13933146551484962,-0.1536818285444091,-0.13679694657297356,0.0847678616698372,-0.016033889812558304,0.0382274191136936,0.05893784737550433,-0.16693139115949332,0.004399340098985114,-0.051017230281429654,-0.01780719126265437,-0.06867240301055998,0.033723785486708596,0.08267642352612768,0.038293092154447525,-0.054741382379908346,-0.06575162324319878,-0.03054727795526778,-0.03274783277023097,-0.0873759261848176,-0.036947501353057924,-0.06171382703860332,-0.06687600519156861,-0.09318629978839836,-0.033594801440752574,-0.0033782446798942233,-0.027887590005551247,-0.08560456514979807,-0.041047799081825515,0.0793625350348965,0.08591000169264242,-0.03598223855458582,0.05848646512546927,-0.15024577308178091,-0.044546271350245394,-0.13915822591190974,0.06828408215628828,0.110278385247355,0.09131842511454616,-0.1195191899229443,0.09751228733459354,0.02048381710591328,-0.15559621581808755,-0.10420578778135048,0.03558506224066393,-0.0785754833314722,0.09728449898373419,-0.0019590264606093254,0.04039691867821514,-0.016385932974762082,-0.014180032484832336,0.052453246547612235,-0.04839319470699431,0.11273999900424177,0.16673161276869183,-0.07395498392282958,-0.10712938513768386,-0.06404666613843524,-0.05114618500357603,-0.05724196890712258,0.08882625989625471,0.15469966524993414,0.1566049868531646,-0.0835776312811817,-0.15308342547348147,-0.06078499619052564,-0.05492310437886674,0.092034217072135,-0.11242464573710165,0.09084938735422889,-0.15201970676746215,-0.004076769085099305,-0.08983486825396296,-0.12302948454734933,-0.03008712846456825,-0.08630649527490848,0.10822306238185252,0.04671199390887322,-0.051390243159515146,-0.02170418006430867,0.07883817427385895,0.0759265309059465,0.10825813368333928,0.06260832598479238,0.06126757395778488,0.01559784857261069,0.027731280690456803,0.09731935986808071,12.815930685989118,16.897191760863922,5.733565171428046,13.536386602225617,30.26090834160844,35.74972550825354,37.80214274130156,37.94399537884699,37.94399537884699,47.790082098471174,38.83967329412769,3.6987119386498257,5.251696865693653,0.0,8.950408804343478,5454.780729138648,4655.660779364185,1107.5267121476732,33.0,33.0,39.0,44.0,52.0,47.0,42.0,39.0,38.0,328.1786926280007,25.0,4.762173934797756,5.564520407322694,6.398594934535208,7.220373836723949,8.056743774975313,8.885302512980633,9.723702775394143,10.555995013629378,11.396268045570105,0.611111111111111,0.9744999999999999,1.1290231351148134,0.5696375544639637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6529320359281438,0.9611928104575164,0.9994234037387715,0.6075470435579078,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,2.0,3.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,21.263510870849927,5.749511833283905,0.0,0.0,5.907179729351506,4.794537184071822,0.0,0.0,0.0,36.39820241076966,43.025017565859855,12.586597235060536,11.6674178794453,190.84491988118475,-464.0570510864964,-33.692135229587066,-9.667855230968676,-25.780947282583135,371.72651710790035,903.8873628239196,34.01763961924385,18.830986725498324,30.129578760797322,0.5,0.7863478772150357,0.20855532275521904,96.07742074159705,0.12055091600160804,198.17958511188337,0.2136521227849641,7.0,0.32,0.2632574739408254,0.6463396303954159,0.8376974517185329,0.9272235675940541,0.9524210193125868,0.9524210193125868,2.1353999999999997,,1.0357142857142858,1.2284783620288504,0.9699017285501993,1.0327970942604563,-4.283246429381093,1.098531211750306,1.0260103868809844,-1.8356326906609346,93.81220000000003,15.007591973753232,0.0,5.316788604006331,5.733667477162185,31.911187662438905,6.544756405912575,65.22129102278387,0.0,5.749511833283905,3.9318256327243257,0.0,5.209486152841421,0.0,6.670766320845874,0.0,8.212568398234145,0.0,9.79762691183662,29.33333333333333,14.640677856792713,0.0,0.0,0.0,0.0,0.0,1.6731544769900522,0.0,46.775999999999996,0.0,11.247552441693543,0.0,0.0,0.0,0.0,0.0,-0.7169089434115377,54.19311048551104,11.050456081168516,0.0,5.749511833283905,28.70683175409345,6.4208216229260096,0.0,40.93341686952774,48.53093654769288,0.0,0.0,0.0,27.342602614270255,31.3407377245509,30.22746375005933,276.3652382392536,,234.401781030962,231.86421747910214,230.96161793361858,234.42726078564988,283.46711597966146,233.38007641398184,234.54909213120413,265.2150746226235,30.22746375005933,276.3652382392536,,233.4523762690573,230.73811231390914,230.07254134911432,233.48053011591128,285.9656763968005,232.37308946987764,233.6085826098967,266.28586035884234,4.699001674314127,214.68228039250437,,185.5909472906127,183.4630178129617,182.21822769121763,185.6108579320616,223.04004383904964,184.71180632780806,185.7167752252649,210.14882586736695,1.259477656252472,11.515218259968899,,9.766740876290084,9.661009061629256,9.623400747234108,9.767802532735411,11.811129832485895,9.724169850582577,9.772878838800173,11.050628109275978,2.3495008371570623,138.18261911962676,,117.24404527738577,115.98329533796894,115.52122153883221,117.25666360508578,140.84121498370973,116.73581034081386,117.31729649838877,132.22511383409076,46.13725490196079,0.0,2.0707536008230454,0.0,0.0,5.204449499823744,19.840933531256784,47.97232337946103,2.2856303448835913,3.2857412131519275,0.0,0.0,-0.5319840220038636,0.0,0.0,0.0,0.0,29.162258090779574,442.3768552581794,70.57358975971616,173.26956472744175,224.56842503028855,248.56842503028867,255.32331253245204,255.32331253245204,416.0,121.5636752359292,120.19458173090572,57.82227341648239,95.57999999999998,95.57999999999998,1.0,7.267525427828172,5.643856189774724,3.690540225379886,4.832602962045883,,4.841497565295462,4.841072236886543,4.840314433178088,4.841500083015342,4.8401100081592245,4.841304968746991,4.841523986312618,4.843457735567235,0.15377250939082857,0.20135845675191177,,0.20172906522064427,0.20171134320360595,0.20167976804908702,0.20172917012563926,0.2016712503399677,0.20172104036445795,0.20173016609635908,0.2018107389819681,2.181241587232504,2.4508539753930045,,2.4526928245409465,2.4526049700936494,2.4524484215049345,2.452693344569965,2.452406186782659,2.452653043382998,2.452698281725363,2.453097611189443,264.3200000000001,608.503143250344,130.20960330738595,,129.2933502423469,129.2990960055362,129.4884442725295,129.29384383787604,130.25341571352124,129.30380066835298,129.2922193586649,129.59959883392898,25.354297635431,5.425400137807748,,5.387222926764454,5.387462333564009,5.395351844688729,5.387243493244835,5.4272256547300515,5.387658361181374,5.387175806611038,5.399983284747041,7.286470815339782,5.744614222529616,,5.737552592902371,5.737597031657436,5.739060381095194,5.737556410535575,5.744950641931597,5.737633416886509,5.737543846214118,5.739918425850069,0.0,11.247552441693543,23.12667474440871,7.055716623929037,-0.8950215905267791,14.883809313078931,1.1504617990702044,2.430806668346351,0.0,320.5762497212657,107.36390081962494,-261.06524207464764,-18.95423293133938,-5.438859209888493,-14.503624559702647,209.12272089633927,508.5012125801271,19.13735240357485,10.59377526208598,16.950040419337572,1607.0,33.0,1.6002865641057304,0.7051314843965271,0.0,0.0,0.3501589385506499,0.06607327622100177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17010345435994292,0.056131276171213614,0.21877758552451898,0.059355767151130195,17.526733258565955,13.77484878610931,11.469234250586762,8.051626342052955,10.199479598389292,5.990204547326001,7.86692542771619,4.039354379873847,5.760328963152272,2.518860959447269,4.498937065234889,1.7380847971176523,2.7636379316883346,0.9232019358147789,1.5751859062495444,0.4994710359364482,3.3204641666905195,1.2253359440523417,4.283803802094939,1.2805063750160317,5.829469117730657,1.4694114571827293,81.0082652596544,43.61349869045342,27.294298701387227,22.026942711037666,21.476629429802692,21.476629429802692,116.0,130.0,52.339031999999975,24.944967999999996,0.375,73.05,8.777777777777779,5.416666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,48.0,0.0,1.0,49.0,12.0,1.0,7.0,42.0,13.0,25.0,36.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,4.0,4.0,0.0,24.0,5.0,0.0,2.0,3.0,0.0,2.0,8.0,0.0,0.0,0.0,0.0,2.0,3.4965075614664802,5.044231243524771,4.007333185232471,4.465908118654584,4.908971640319756,5.371219254531703,5.27715756871241,5.312127811821442,5.171726121007455,5.090293312401709 +3291,CCC1(C)CC(=O)NC1=O,0,20.952380952380953,6.234042857142858,2.9047619047619047,6.9523809523809526,166.84749044341615,82.34083819047616,1.2814023787304283,6.2698238095238095,6.422288359788359,7.790084952380955,189.64929657790185,22.047619047619047,6.2906666666666675,3.5238095238095237,6.0,148.7445739697762,81.97994257142858,1.6645235904761901,6.4214761904761914,3.142857142857143,7.72892761904762,239.1863578817877,18.46153846153846,6.084871794871795,3.230769230769231,4.410256410256411,156.41812037718952,68.44151607692308,1.399763902533128,6.178607692307693,2.999643874643875,7.601165025641025,194.9359888568941,14.901960784313726,6.185254901960784,2.215686274509804,2.607843137254902,158.98156713094303,51.45896950980393,1.1937330594724316,6.258754901960785,3.375816993464053,7.750174823529412,161.71811074486016,9.140350877192983,6.0125438596491225,1.5087719298245614,1.1929824561403508,171.307382117183,28.087445438596493,0.843602178934772,6.030703508771929,3.730994152046784,7.681748210526317,102.57910874547771,4.916666666666667,5.817,1.25,0.16666666666666666,181.62733790387998,12.007964583333333,0.5878982256938888,5.794999999999999,2.9027777777777777,7.596655000000002,63.898845163391876,4.5,6.2700000000000005,1.0,0.0,185.0509643601995,8.571528,0.4896904454244999,6.204000000000001,4.0,8.094816000000002,56.54868752819852,,,,,,,,,,,,,,,,,,,,,,,7.854875283446712,0.1566439909297051,0.018775257362246407,0.7256235827664398,4.331065759637188,1.3268008616022438,37.15043252154194,0.2107960222435147,0.1453773242630385,2.958553791887126,0.09976364625850336,47.46780862989379,-0.011337868480725457,-0.006255782312925218,-0.014205757152627844,0.2902494331065759,1.8367346938775508,-0.1359758576721102,-0.0404676553288126,-0.0072577505442174665,-0.004655555555555631,-0.0845458553791887,-0.004443428571428563,-0.5471576201673957,1.8642944357230073,0.04594147915576485,0.006731508684879497,-0.1163439734868307,0.7214372928658642,0.08721644461949421,8.711413003488568,0.01878195765881138,0.04219532530961101,0.3113722697056031,0.02611707169021452,6.405371201259882,-1.520608243297319,-0.01906574629851943,-0.004102540422294284,-0.26530612244897955,-0.7073496065092705,-0.43991925379342434,-7.330568033213289,-0.07365681475486201,-0.017781992797118874,-0.3220769789397241,-0.012325875950380136,-14.145391277742611,-1.1907148824442058,-0.007888853085093664,0.0013137052226266511,-0.015514977920992917,-0.5883757011576561,-0.14421501417600863,-5.725338892469264,-0.033983268505123836,-0.008956021004893153,0.12577160493827164,-0.0019425735767991384,-8.457926919559291,0.11999244142101241,-0.03529914965986388,-0.0005534348973346716,0.10770975056689348,-0.8099017384731675,0.3586749281920537,0.89712264644748,0.062144307964340895,-0.03021634542705963,-0.5868055555555558,-0.02369947165532881,11.081511157613598,-2.307256235827665,-0.10205351473922906,-0.0011793534428942226,0.22675736961451254,-2.235827664399093,0.5444138267856133,-10.177992759637181,0.11048449162529451,-0.09485827664399094,-1.8418209876543212,-0.06337412244897948,11.308538411026428,,,,,,,,,,,,,,,,,,,,,,,,,,,0.45666666666666667,0.9,0.3,0.0,0.6,-0.3,0.7896713560960444,0.03318794556343461,0.041787945563434604,0.4934674974944258,0.15305598497878795,0.30517742569508693,1.2831388535904702,0.4582334106738749,1.9107577303113192,1.3655465562289628,0.1960878098863077,0.3491233641960487,0.0,0.5452111740823564,6.718046599619048,440.0,130.91490000000002,61.0,146.0,3503.797299311739,1729.1576019999993,26.909449953338992,131.6663,134.86805555555554,163.59178400000005,3982.635228135939,463.0,132.104,74.0,126.0,3123.6360533653005,1721.5787940000002,34.954995399999994,134.85100000000003,66.0,162.30748000000003,5022.913515517542,720.0,237.31,126.0,172.0,6100.306694710392,2669.219127,54.590792198791995,240.96570000000003,116.98611111111111,296.445436,7602.5035654188705,760.0,315.448,113.0,133.0,8108.0599236780945,2624.4074450000003,60.880386033094005,319.1965,172.1666666666667,395.258916,8247.623647987868,521.0,342.715,86.0,68.0,9764.520780679431,1600.98439,48.085324199282,343.7501,212.66666666666669,437.85964800000005,5847.009198492229,177.0,209.412,45.0,6.0,6538.5841645396795,432.286725,21.164336124979997,208.61999999999998,104.5,273.47958000000006,2300.3584258821074,27.0,37.620000000000005,6.0,0.0,1110.305786161197,51.429168000000004,2.9381426725469995,37.224000000000004,24.0,48.56889600000001,339.29212516919114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,164.95238095238096,3.289523809523807,0.39428040460717456,15.238095238095235,90.95238095238096,27.86281809364712,780.1590829523807,4.426716467113809,3.0529238095238087,62.12962962962964,2.0950365714285706,996.8239812277695,-0.23809523809523458,-0.13137142857142958,-0.2983209002051847,6.095238095238094,38.57142857142857,-2.8554930111143144,-0.8498207619050646,-0.1524127614285668,-0.09776666666666825,-1.7754629629629626,-0.09331199999999981,-11.49031002351531,72.70748299319729,1.7917176870748293,0.26252883871030036,-4.537414965986398,28.136054421768705,3.4014413401602743,339.7451071360542,0.7324963486936438,1.6456176870748294,12.14351851851852,1.0185657959183663,249.80947684913542,-77.55102040816327,-0.9723530612244909,-0.20922956153700847,-13.530612244897958,-36.07482993197279,-22.43588194346464,-373.8589696938778,-3.756497552497962,-0.9068816326530627,-16.425925925925927,-0.628619673469387,-721.4149551648732,-67.87074829931973,-0.4496646258503389,0.07488119768971911,-0.8843537414965963,-33.5374149659864,-8.220255808032492,-326.344316870748,-1.9370463047920585,-0.5104931972789097,7.168981481481483,-0.11072669387755088,-482.10183441487965,4.319727891156447,-1.2707693877550996,-0.019923656304048177,3.8775510204081653,-29.15646258503403,12.912297414913933,32.29641527210928,2.237195086716272,-1.0877884353741467,-21.12500000000001,-0.8531809795918371,398.9344016740895,-13.843537414965992,-0.6123210884353744,-0.007076120657365335,1.3605442176870752,-13.41496598639456,3.26648296071368,-61.06795655782309,0.6629069497517671,-0.5691496598639456,-11.050925925925927,-0.38024473469387693,67.85123046615857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7776020881938894,0.6230710143300822,0.4582334106738749,0.3426015243430232,0.2969086192186061,0.19788604920744485,0.19822761742347306,0.11845438975589898,0.12954916211171938,0.05483749309512428,0.09047283551237947,0.03136224619786077,0.06868867239266072,0.022268430180269465,0.05892556509887896,0.01275775907699572,8.023361770047766,5.779280308702394,3.54617597633352,2.2767504649724506,0.3957634081768584,-0.36310568898448015,4.023967021129941,0.9773165629633643,6.023209590157903,0.9878169699436544,14.54033328381859,11.04006843163334,16.01118771293322,11.791612041566559,1.9030405084997883,0.7511361040206652,3.4917303901423256,2.3261334033439396,7.009353381729104,1.1553441937594058,3.7044659661466084,2.522209378559326,20.803126790690495,14.701791935066751,0.34247593815689203,0.5581293326399439,0.7445553869474327,0.8287705219788626,0.8287705219788626,0.8287705219788626,2.6094321151636795,188.04512825117834,0.0,2.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,2.8431062980673096,1.8675848070892207,1.0242750002060457,0.6433226192536652,0.6433226192536652,0.6433226192536652,59.623006736601184,311.53918331238054,38.505490686985326,14.83519920535145,33.363456884533775,,5.0,73.0,5.41499046939678,9.589074368143644,11.814359458703011,6.4208216229260096,6.4208216229260096,0.0,0.0,13.847474399381248,5.316788604006331,0.0,4.566666666666666,9.0,3.0,0.0,6.0,0.0,0.043333333333333356,-3.0,0.14920634920634918,0.0,-0.14920634920634918,0.05393939393939384,0.20280597014925372,0.0,0.5825396825396829,0.8933333333333333,0.43333333333333374,0.5825396825396829,0.8393939393939395,7.896713560960444,0.33187945563434607,0.41787945563434603,4.934674974944258,1.5305598497878794,3.0517742569508695,12.831388535904702,4.582334106738749,0.5111940298507462,0.36496350364963503,0.10948905109489052,0.21897810218978103,0.7142857142857143,0.40425662875329393,-0.40447777645458644,-0.09129332831229701,-0.019260846497837446,-0.06741296274243107,0.595743371246706,0.5960692713501077,0.03237187046465334,0.028384251016671788,0.03973795142334051,-1.9600525506418458,0.8545034642032332,0.6234365952518821,1.7110649421580493,1.0937500000000002,0.3560209424083769,1.505643412956816,0.8663742232750058,1.3348127751038716,0.6231341071946642,0.526293378752395,0.6023079310719159,1.1800610755480754,0.6404334695327766,0.34761480557658914,0.5263689596111326,1.9519230769230773,0.7047925896093434,1.1199780222880038,0.6523221157200919,1.0679354229207503,0.3648793050365936,0.4652929038174939,0.3491759620012683,0.9574343572278151,1.1221301453606847,1.0290302803228997,1.1885215572092325,1.376838235294118,1.0886972590083153,1.3981780325503526,1.1279694088513947,1.4079322358844808,1.0262999936324069,1.0598097659331989,1.0483220059871643,1.3069638040244442,1.1284490093594262,1.1108844055709632,0.879348208467885,0.5411184210526317,1.0975475337558553,0.9229419270202143,1.1270897873606531,0.9823284396703569,1.1194388123435801,1.0092556278923837,1.0784939228939618,1.0458287082562783,1.017128560431101,1.4482592646207302,0.9545001487224998,0.27343750000000006,1.2521815008726003,0.2996433899014362,0.9987033030584007,0.34439707408842735,1.4284757988958798,1.4400149031296572,1.4623573946172883,0.5305553629668966,1.4852771362586603,2.5687608569774185,1.406632355916085,0.0,1.9790575916230364,6.898700047280513e-05,1.440283692843432,0.02064841173453229,2.5182416855660614,2.8971684053651265,2.6917048021527887,0.41856567315712684,,,,,,,,,,,,,,,,,,,,,,,,,4.0,0.0,2.000000000000001,1.3888888888888888,0.20500000000000002,0.0,0.0,0.0,0.0,0.0,1487.3915393192433,1744.751753043452,894.3224752560287,782.3046144561315,5.667685132773115,0.39320416516008244,3.439127731750851,0.6480007649752837,0.0,0.7142857142857143,1.549211124711451,2.52473261568954,3.368042422572715,3.7489948035250955,3.7489948035250955,3.7489948035250955,0.4,0.0,0.13333333333333336,0.10683760683760682,0.03416666666666667,0.0,0.0,0.0,0.0,0.0,0.6743376068376068,8.1,2.56,1.382716049382716,59.79597894437554,1.0,3.2198185305642713,22.39868711342574,,19.5632755620159,19.37443281267363,19.436500997774424,19.565564395796628,23.95952613830622,19.492910037600865,19.57369187502478,22.12886963141941,-0.0014434180138567915,-0.03993630573248441,-0.7566211678777309,0.39999999999999997,0.4240837696335078,-0.10248399862199807,-0.0010892916335589673,-0.03443020635291308,-0.03202394581930879,-0.028576751117734712,-0.04453955662280965,-0.01152691973698597,0.23734233434002489,0.2932859338114116,0.35853083422522475,-0.16033653846153859,0.16657269432138538,0.06573438949547537,0.23449021753480784,0.08910015217039619,0.2902469523600867,0.10524475524475525,0.2617894661001169,0.13494137155566885,-0.19358782774079608,-0.12171386968221011,-0.21850781286991777,-0.365625,-0.16331998768093625,-0.33156388914473434,-0.19732120289481445,-0.3494222232987516,-0.12231613759065355,-0.10886297887262208,-0.12355077638643885,-0.29799966937665356,-0.1515892792026255,-0.05036167067930383,0.06997002476611963,-0.021381578947368366,-0.13585009644530174,-0.10869378996472362,-0.15411230782170265,-0.16121399324065924,-0.061605350423760544,0.04251117734724292,-0.019471757996551403,-0.17818237588142516,0.015276173979984545,-0.22534633757961758,-0.029476820831629585,0.1484375000000001,-0.186998254799302,0.2703306415997636,0.024148376897826885,0.29480778291229265,-0.20784772027023743,-0.19834202682563343,-0.23755618949531712,0.2334531860110938,-0.29373556581986154,-0.651499710480603,-0.06281423578595975,0.31250000000000017,-0.5162303664921466,0.4103206762529379,-0.27396700573365873,0.524129869479516,-0.6524970598052766,-0.6225409836065574,-0.6352426442470549,0.2382359484761353,,,,,,,,,,,,,,,,,,,,,,,,,0.4999999999999999,2.1491398636470835,0.4999999999999999,14.936823476399525,24.120781684629186,27.066647493776955,28.87836177949124,28.87836177949124,28.87836177949124,19.107577303113192,13.655465562289628,1.960878098863077,3.4912336419604872,0.0,5.452111740823565,487.4659697209847,412.5905056171587,290.9406071827763,0.0,15.0,18.0,19.0,14.0,5.0,1.0,0.0,0.0,141.078978592,10.0,3.9318256327243257,4.762173934797756,5.659482215759621,6.51471269087253,7.409136443920128,8.272570608424903,9.162934249578912,10.030692726771417,10.91793894319107,0.603174603174603,0.9860952380952378,1.1425525455424304,0.5596853677779497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.619581494154548,0.9704948646125118,1.0098845073353448,0.5794102236050132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.814359458703011,0.0,14.905862972149976,0.0,0.0,0.0,13.847474399381248,6.4208216229260096,6.4208216229260096,5.41499046939678,125.8729214650595,-125.94177997041739,-28.42589861884614,-5.997227617638923,-20.99029666173623,185.4959282016607,185.59740334196314,10.079592068139187,8.837971587712529,12.373160222797543,0.4,0.6656191843479164,0.295779263482638,24.301585275907055,0.23236764592848272,8.946422835819645,0.33438081565208355,3.0,0.1,0.3527092820471423,0.5748065025073462,0.766803055969018,0.8535345792821428,0.8535345792821428,0.8535345792821428,0.4491999999999999,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,36.164699999999996,9.589074368143644,0.0,5.316788604006331,5.41499046939678,26.689117645233267,0.0,0.0,0.0,0.0,3.044522437723423,0.0,4.394449154672439,2.3978952727983707,5.942799375126701,4.844187086458591,7.5688956634069955,6.985641817639208,9.232199706329077,12.666666666666663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.707999999999995,0.0,21.701597222222222,0.0,0.0,0.0,0.0,0.0,-0.26912037037036973,23.993603456391035,5.316788604006331,0.0,0.0,11.814359458703011,9.589074368143644,5.41499046939678,26.689117645233267,0.0,0.0,0.0,0.0,11.753392723336946,13.011211377245507,11.576737174882894,44.79737422544186,,38.99797966583404,38.59744632395058,38.758698370621715,39.00292249470878,48.52818435756913,38.85009482898184,39.01993320205308,44.4812019778789,11.576737174882894,44.79737422544188,,38.483693951548304,37.991769264853325,38.30148400485031,38.49009742536512,50.60182262320193,38.3071939721887,38.510131127213114,45.37505284536648,4.634945548490688,30.777707139572215,,27.720112366385237,27.544132721053675,27.6599929129698,27.72243258041273,33.32164524490092,27.65644224245969,27.72971966231325,30.659683478125288,1.1576737174882894,4.4797374225441855,,3.899797966583404,3.8597446323950577,3.8758698370621714,3.9002922494708776,4.852818435756913,3.885009482898184,3.901993320205308,4.4481201977878895,2.406774854694537,22.39868711272093,,19.563275547202736,19.374432794362445,19.43650098103228,19.565564381022345,23.959526138170904,19.492910021590063,19.573691860381533,22.1288696305035,20.380392156862747,0.0,3.7275925925925923,0.0,0.0,0.0,0.0,21.207574654042244,1.0762962962962965,2.2804166666666665,0.0,0.0,0.0,0.0,-0.4334490740740742,0.0,0.0,12.167614695705275,207.25307974651133,32.53343361894047,53.01938492948034,70.72889087402702,78.728890874027,78.728890874027,78.728890874027,92.0,86.66146744604067,104.11576992020889,54.410590514154805,46.17,46.17,0.6666666666666666,4.859812404361672,4.321928094887362,2.9021210035781486,3.11103138745688,,3.117340685720797,3.116475010337127,3.1156977880781396,3.1173476925927766,3.117751876435071,3.116984560910612,3.1173900650862194,3.1208594883276737,0.29021210035781486,0.311103138745688,,0.3117340685720797,0.3116475010337127,0.31156977880781395,0.3117347692592777,0.3117751876435071,0.3116984560910612,0.31173900650862196,0.31208594883276736,1.0654418502082053,1.1349543070503583,,1.1369802940491747,1.136702558732174,1.1364531361669925,1.136982541754771,1.137112189674066,1.1368660475841657,1.1369961341447288,1.138108440912662,111.75000000000011,32.48833241912497,35.73084531529149,,35.10865235244093,35.121116427149154,35.188659924195406,35.10871861673756,35.35768608468159,35.11617928466579,35.10771737690845,35.17084734549773,3.2488332419124974,3.573084531529149,,3.5108652352440926,3.5121116427149155,3.5188659924195407,3.510871861673756,3.535768608468159,3.511617928466579,3.5107717376908445,3.5170847345497727,3.4808810223904088,3.57601433017392,,3.5584476058618133,3.558802557189596,3.5607238694545207,3.5584494932664743,3.565515796846603,3.558661972548873,3.5584209745923205,3.5602175390446176,0.0,21.701597222222222,2.2804166666666665,-0.4334490740740742,-0.26912037037036973,0.0,1.0762962962962965,3.7275925925925923,0.0,140.57619317221838,39.19290676076499,-39.21434715436805,-8.850939353692935,-1.8673498644937165,-6.535724525728008,57.757653782011616,57.78924997971736,3.138470987366296,2.751869046653207,3.8526166653144904,108.0,13.0,1.2953851375880139,0.8517532105499599,0.14433756729740643,0.125,0.39073720721077865,0.09768430180269466,0.10206207261596575,0.02551551815399144,0.0,0.0,0.0,0.0,0.08333333333333333,0.04419417382415922,0.3089255650988789,0.11152856564851082,0.4857022603955158,0.13146560561570292,7.776020881938894,6.230710143300821,4.582334106738749,3.426015243430232,4.4536292882790915,2.9682907381116728,3.5680971136225152,2.1321790156061815,2.461434080122668,1.0419123688073613,1.2666196971733126,0.43907144677005083,0.34344336196330355,0.11134215090134733,0.05892556509887896,0.01275775907699572,2.808961452318459,1.4831944636063625,3.831920856829382,1.5445200047575958,4.264093265381842,1.209534346413699,34.1980255715004,23.45831331446135,20.017778344960107,17.503041803936437,17.503041803936437,17.503041803936437,50.0,58.0,21.728722999999984,13.341276999999996,0.23809523809523808,10.03,5.034722222222222,2.2500000000000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21.0,0.0,0.0,21.0,0.0,2.0,2.0,19.0,2.0,10.0,19.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,2.0,1.0,1.0,10.0,3.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5649493574615367,0.0,2.995732273553991,3.2188758248682006,3.4011973816621555,3.2188758248682006,2.1972245773362196,1.0986122886681098,0.0,0.0 +2519,Cn1c(=O)c2c(ncn2C)n(C)c1=O,0,25.916666666666668,6.69165,3.5833333333333335,10.333333333333334,169.97475799197875,102.54140858333334,1.3701557103537498,6.710566666666668,6.50462962962963,8.125781,212.70878771330786,27.6,6.777,4.2,9.8,155.66969738676002,105.78183787999996,1.583956923999999,6.876840000000002,3.7022222222222223,8.112123360000004,245.23892655232376,24.53488372093023,6.842760465116277,4.0,8.930232558139535,172.84145742296613,94.08362844186048,1.3848500335730471,6.8670953488372115,3.6201550387596906,8.232191162790697,214.44570393614248,26.304347826086957,6.802604347826088,3.630434782608696,7.673913043478261,155.2842195567587,99.90465828260866,1.5071393589130428,6.889952173913046,4.5024154589371985,8.173070000000001,232.06209953002588,19.31578947368421,7.027752631578948,2.56140350877193,4.87719298245614,172.76773044017892,68.78649219298246,1.1165314126060877,7.02271052631579,5.467836257309941,8.500784210526314,167.60393414428842,13.404761904761905,6.500523809523812,2.1904761904761907,1.619047619047619,168.77627669311428,43.038017238095236,1.1228082169999998,6.532133333333335,3.5476190476190483,8.028116,149.02695713646472,5.82051282051282,5.702358974358975,1.3076923076923077,0.15384615384615385,169.62420659627145,13.878373461538462,0.8249109126202051,5.737897435897436,2.564102564102564,7.400299384615386,88.32521008950197,1.875,5.197500000000002,1.0,0.0,184.95098010823662,2.9049300000000002,0.45588228999287495,5.181000000000001,1.75,7.062552000000001,37.449980205247336,,,,,,,,,,,,7.854166666666667,0.17213888888888884,0.029784272184710275,0.8055555555555557,5.270833333333333,1.5816047439771868,37.07038490972222,0.19366025978968748,0.15696666666666662,2.559992283950617,0.10461297222222217,43.48816400367045,0.6125,-0.00839822222222221,-0.021021025420855675,0.5111111111111108,2.6225,-1.455473195739936,2.805102073611115,-0.07971492447743753,-0.0013680000000000326,-0.13869598765432087,-0.010511758888888913,-8.266344697697173,2.667151162790698,0.028527390180878548,0.004634040678117637,0.07235142118863044,1.434593023255814,0.9847443820572535,12.834499078649868,0.11946476170085896,0.027727906976744158,0.14381908555842673,0.016350097545219593,24.658209931285217,0.296195652173913,0.018138647342995175,0.0004056350259583488,-0.2946859903381643,-0.6168478260869565,-0.6663225557216154,1.1204513239734353,-0.0904788675974321,0.018578260869565193,-0.029899691358024748,0.005696498792270503,-12.030402064125655,-2.661184210526316,-0.04274093567251455,0.00016647711331270213,-0.304093567251462,-2.5339912280701755,0.08222484260933847,-12.499631219663742,-0.005937231522898032,-0.042889473684210505,-0.16964140675763517,-0.019789206140350946,-8.14441049022982,-5.2648809523809526,-0.07187777777777772,-0.0020389918486685013,-0.3492063492063492,-2.9077380952380953,0.09403575742441975,-24.93729989384921,-0.06487494616278276,-0.07266666666666663,-0.42066247795414474,-0.03364641666666665,-23.29812591911115,-1.2900641025641026,-0.0020495726495726977,0.0001950155587082766,0.23931623931623938,0.6009615384615384,-0.31379137167887305,-6.261110753739319,-0.05805443310259133,-0.004379487179487152,-0.26440823836657157,-0.000914621794871689,-12.864246379514567,7.71875,0.06742777777777764,0.0007805943478065106,0.4444444444444444,3.375,0.38816448980927953,36.9013542673611,0.16755358239365634,0.07379999999999995,0.2328317901234572,0.025797902777777923,46.76476719373898,,,,,,,,,,,,,,,0.44761904761904764,1.3392857142857142,0.5714285714285714,0.07142857142857142,0.7678571428571429,-0.19642857142857142,0.5979126771576456,0.02697373586885053,0.039259450154564814,0.8987733766121602,0.2714983745223457,0.1954002869211677,1.4966860537698057,0.4668986614435134,1.985721595036919,1.137093323534333,0.5971250172452223,0.2515032542573642,0.0,0.8486282715025864,8.086682315,622.0,160.5996,86.0,248.0,4079.39419180749,2460.993806,32.88373704849,161.05360000000002,156.11111111111111,195.018744,5105.010905119389,690.0,169.425,105.0,245.0,3891.7424346690004,2644.5459469999987,39.59892309999998,171.92100000000005,92.55555555555556,202.80308400000007,6130.973163808094,1055.0,294.23869999999994,172.0,384.0,7432.182669187543,4045.596023000001,59.548551443641024,295.2851000000001,155.66666666666669,353.98422,9221.165269254127,1210.0,312.9198,167.0,353.0,7143.074099610901,4595.614280999998,69.32841050999997,316.9378000000001,207.11111111111111,375.9612200000001,10674.85657838119,1101.0,400.5819,146.0,278.0,9847.760635090199,3920.830055000001,63.642290518547,400.2945,311.66666666666663,484.5446999999999,9553.42424622444,563.0,273.0220000000001,92.0,68.0,7088.603621110799,1807.596724,47.15794511399999,274.34960000000007,149.00000000000003,337.180872,6259.132199731518,227.0,222.39200000000002,51.0,6.0,6615.344057254587,541.256565,32.171525592188,223.778,99.99999999999999,288.61167600000005,3444.6831934905767,45.0,124.74000000000004,24.0,0.0,4438.823522597679,69.71832,10.941174959828999,124.34400000000002,42.0,169.50124800000003,898.799524925936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188.5,4.131333333333332,0.7148225324330466,19.333333333333336,126.5,37.95851385545248,889.6892378333333,4.6478462349525,3.767199999999999,61.43981481481481,2.510711333333332,1043.7159360880908,15.3125,-0.20995555555555526,-0.5255256355213919,12.777777777777771,65.5625,-36.3868298934984,70.12755184027787,-1.9928731119359382,-0.03420000000000081,-3.467399691358022,-0.26279397222222284,-206.65861744242932,114.6875,1.2266777777777775,0.19926374915905842,3.111111111111109,61.6875,42.3440084284619,551.8834603819444,5.136984753136935,1.1922999999999988,6.18422067901235,0.7030541944444425,1060.3030270452643,13.625,0.834377777777778,0.018659211194084046,-13.555555555555557,-28.375,-30.650837563194305,51.54076090277802,-4.162027909481877,0.8545999999999989,-1.3753858024691383,0.26203894444444314,-553.3984949497801,-151.6875,-2.4362333333333295,0.009489195458824021,-17.333333333333336,-144.4375,4.686816028732293,-712.4789795208333,-0.3384221968051878,-2.4446999999999988,-9.669560185185205,-1.127984750000004,-464.2313979430997,-221.125,-3.018866666666664,-0.08563765764407706,-14.666666666666666,-122.125,3.9495018118256295,-1047.3665955416668,-2.724747738836876,-3.0519999999999983,-17.66782407407408,-1.4131494999999994,-978.5212886026683,-50.3125,-0.0799333333333352,0.007605606789622787,9.333333333333336,23.4375,-12.237863495476049,-244.18331939583345,-2.264122891001062,-0.17079999999999892,-10.31192129629629,-0.03567024999999587,-501.70560880106814,185.25,1.6182666666666634,0.018734264347356255,10.666666666666666,81.0,9.315947755422709,885.6325024166664,4.021285977447752,1.7711999999999988,5.587962962962973,0.6191496666666702,1122.3544126497357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7468332461928913,0.5844786594369417,0.43577208401394574,0.2738618428638622,0.27096982863821895,0.14058473763372256,0.17809993197012977,0.07019736046934053,0.10671055508094214,0.03502809250770866,0.06647391964547252,0.018448125311674536,0.042836244142013334,0.009052081446272689,0.027748948214360008,0.004573977123663438,8.023847065898172,5.7581218661252045,3.550517817633125,2.238808132023027,0.5088010285934967,-0.44154155936384865,3.3309020387010837,0.977250930042074,6.0238371274086715,0.9960168583171924,14.565371975573356,11.036008848605368,16.011257519715393,11.78341049010414,1.9422178353595332,0.7436548856994611,3.497533325596243,2.2830274435141065,7.009369872445498,1.4017692035903704,3.709254934413766,2.476205086481329,20.80022836876685,14.701775845996961,0.3672635050735865,0.6003865946762672,0.6583229361740559,0.699105374966808,0.8214526913450653,0.8214526913450653,2.226351040051458,616.5285919942219,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.8008033728697344,1.6682958340544891,1.386842188131011,1.1887218755408675,0.5943609377704338,0.5943609377704338,199.10845089041243,574.1490576255508,39.66163826158656,23.922877401064618,46.08401641570147,,6.0,137.0,0.0,9.589074368143644,11.24901029325548,11.16387793838399,4.567099647791355,17.942091705233086,18.662443613145733,0.0,4.9839785209472085,0.0,6.266666666666667,18.75,8.0,1.0,10.75,0.0,0.05238095238095238,-2.75,0.2238888888888887,0.027991452991453003,-0.1958974358974357,0.0,0.2294639175257731,0.0,0.6638888888888891,0.9238095238095237,0.4400000000000004,0.6358974358974361,0.9238095238095237,8.370777480207039,0.3776323021639074,0.5496323021639073,12.582827272570242,3.8009772433128397,2.735604016896348,20.95360475277728,6.5365812602091875,0.48453608247422686,0.3457446808510638,0.0,0.5106382978723404,0.375,0.2223840956154793,-0.3560516688629673,-0.055293772956572736,-0.014835486202623637,-0.05934194481049455,0.7776159043845207,1.2450145759039715,0.05530626964455478,0.051875607329332156,0.06916747643910953,-0.5187265173123385,0.656445623342175,0.7208312086493462,1.8170617371551938,0.5472413793103448,0.32,2.225955503224434,0.6650575837929187,1.4989084057718611,0.6655176258228925,0.5257538994800693,0.7500514674858415,1.1428579592117687,0.5788662019616311,0.7447826405124758,1.1146429517314689,1.1481555733761026,0.7145877378435518,0.5023203892310287,0.5730793268761836,0.270942721094218,0.7265484944712501,0.532989399862964,0.6869740507339837,0.3243970620195643,0.7466843501326261,0.7260973051476519,1.2782600635855608,1.5646551724137931,0.9901185770750989,1.6532332404616255,0.7568764717103906,1.5825492332649038,0.6926961669144193,0.9426569211061713,0.8251864611011966,1.2438485710695468,1.3432453813579042,1.549237321963938,1.0706524663664039,1.3044464609800364,1.5789473684210527,0.8820733708954345,1.3326362849603723,0.875273862901861,1.547786899293253,1.6342242087019976,1.5655700034852775,1.0125857332151786,1.5963748894783378,1.3679098757463284,1.0185184335445705,1.3312807881773399,1.4696969696969697,0.9160631727854908,1.5983335295294028,1.2690959048583463,1.409313725490196,1.0973013122059918,1.2745474257361857,1.4590107933198735,1.2248520710059172,0.8379864326411041,0.4029669826812116,0.2745358090185676,0.7738927738927739,0.870497995274731,1.2335914195087874,1.3013116500149522,0.8912842837773818,0.9518730835888548,0.807280094346947,1.3976475950470455,0.37367374005305043,0.5880365499435211,0.18013206689195466,0.0,0.4090909090909091,1.455864480211079e-05,0.36310374195851214,0.005653982434448177,0.5867222340199617,0.8422876949740035,0.6457435900635863,0.11493111517211142,,,,,,,,,,,,,3.0,0.0,2.666666666666668,1.7500000000000002,1.3916666666666666,0.2780555555555556,0.0,0.0,0.0,0.0,2759.076630654912,2996.35732340282,1472.345459236812,1374.535540234549,7.600121882675562,0.4188866540502344,4.416532256867628,0.7208346822006133,0.0,0.375,1.784159127851422,2.916666666666667,3.198120312590145,3.3962406251802886,3.9906015629507223,3.9906015629507223,0.19999999999999998,0.0,0.11594202898550728,0.07,0.07324561403508772,0.03475694444444445,0.0,0.0,0.0,0.0,0.49394458746503944,10.515555555555556,3.5387523629489603,1.4545454545454546,79.02895701814934,1.0,3.5865898111484813,37.862607538354524,,23.33924607344801,22.376470885997495,21.74389796709402,23.348037464620255,38.91141586121987,22.938454534021478,23.396460588988088,33.77198318939642,0.07798408488063661,-0.04878747781184438,-0.7057760314064949,0.6344827586206893,0.4975494071146245,-0.920250904205008,0.07566962362118443,-0.4116225216469651,-0.008715226162667443,-0.05417828347524673,-0.10048236528983712,-0.19008263252961163,0.33958423292825857,0.1657230993241291,0.1555868362127216,0.0898155573376102,0.27217575144774336,0.6226235636983254,0.34621974144336015,0.6168780411148685,0.17664837742669887,0.056179499625867255,0.1562913011446439,0.5670096794429869,0.03771191327413216,0.10537216465190034,0.013619101499031462,-0.3658170914542729,-0.11703041759752535,-0.421295243491775,0.03022497140782537,-0.46720410111858246,0.11835800086790314,-0.011679602140004543,0.054453082359325576,-0.2766362374624571,-0.3388245148680721,-0.24829331680014916,0.005589430296643709,-0.37749546279491836,-0.4807572290409819,0.0519882372144203,-0.337186442765679,-0.030657975618466005,-0.27323937365179773,-0.06626637424697315,-0.1891658913802209,-0.18727878439619625,-0.6703296703296704,-0.41755688236243327,-0.06845867631156069,-0.43349753694581267,-0.5516657255787691,0.05945591512829715,-0.6727014017949692,-0.3349935925586184,-0.46294330006370765,-0.16432177573010975,-0.3216275759300087,-0.5357348706913624,-0.16425219342991226,-0.011906505629274994,0.0065476019524286925,0.2970822281167109,0.11401641836424445,-0.19840062624609783,-0.16889791592364223,-0.2997746319541122,-0.027900746524658016,-0.10328477942071487,-0.008742909941692705,-0.2958102894026248,0.9827586206896551,0.39170566403098206,0.02620827337883475,0.5517241379310344,0.6403162055335968,0.24542445973776017,0.9954402781958492,0.8651934195256029,0.4701635166702058,0.09095019214829343,0.2466032866648431,1.0753447119494857,,,,,,,,,,,,,,1.519671371303185,3.5327755290014426,17.690382194524148,29.41266605086126,33.52098726931141,35.900610343831644,36.49972616910424,36.49972616910424,27.800102330516864,15.91930652948066,8.359750241433112,3.521045559603099,0.0,11.880795801036209,1146.855627997755,695.5548403280951,461.1085992192981,4.0,23.0,33.0,42.0,47.0,46.0,38.0,30.0,17.0,194.08037556,15.0,4.343805421853684,5.241747015059643,6.159095388491933,7.072421900537371,7.9919305198524775,8.908018322784887,9.82752401372909,10.744472672295117,11.663713354092298,0.7083333333333334,1.0213333333333334,1.1524238919034129,0.6736671939610913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.649499251497006,1.0039215686274512,1.0313789754794855,0.6321079788316712,1.0,1.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.567099647791355,0.0,11.16387793838399,0.0,5.559266895052008,13.928736479654532,9.77851570501903,0.0,0.0,0.0,0.0,21.143015948031568,6.3273200747645415,79.74786761376258,-127.68161892853782,-19.828578448481796,-5.320067455355742,-21.28026982142297,278.856318504175,446.46743869701294,19.833059813104768,18.602809945708877,24.8037465942785,0.3333333333333333,0.7311074665115971,0.20477820150858778,7.3126934220938775,0.20717658230579564,42.18941137512609,0.2688925334884028,4.0,0.0,0.3891327633695579,0.6361375182911337,0.6975237664620205,0.7407346569674459,0.870367328483723,0.870367328483723,-1.0293,,1.0714285714285716,1.314099581200558,1.247266713587194,1.0685318721261376,-4.237315801405576,1.1621787025703796,1.0580415728862167,-2.0752874690897665,51.19600000000001,0.0,0.0,18.685277464321274,21.143015948031568,0.0,0.0,27.165404736163666,0.0,0.0,3.4339872044851463,0.0,4.812184355372417,2.3978952727983707,6.398594934535208,4.727387818712341,8.084254106307318,6.842683282238422,9.824498456285756,17.0,1.5193518518518518,3.993148148148148,0.0,0.0,0.0,0.8566666666666674,0.0,4.039537037037037,24.512,0.0,23.161300075585793,0.0,0.0,0.0,0.0,0.0,0.0,27.658173405681907,11.24901029325548,0.0,0.0,18.685277464321274,21.143015948031568,0.0,0.0,15.916394442908185,0.0,11.16387793838399,0.0,16.168012655066192,15.587982035928146,17.668228976605832,75.72521507670906,,46.525430921307645,44.565213257417426,43.309614969496764,46.54342751784823,78.74617907821339,45.71088353744298,46.64177238081399,67.93974313694724,17.668228976605832,75.72521507670905,,45.61729150216756,43.4791562648567,42.332245395095015,45.63760499172329,82.0601475238453,44.734919039523874,45.743925632599634,69.61925384788259,4.932792612901736,51.54837375899888,,31.553408741216707,30.28601000420827,29.406607547891472,31.564850282410163,52.070657713103394,31.02335278343723,31.629017499157847,45.325117123793994,1.262016355471845,5.408943934050647,,3.323245065807689,3.183229518386959,3.093543926392626,3.324530536989159,5.624727077015242,3.2650631098173557,3.331555170058142,4.852838795496232,2.504976898746482,37.862607538354524,,23.339246072898717,22.376470884508752,21.743897964290326,23.34803746407598,38.91141586121987,22.938454533190807,23.396460588470298,33.77198318939641,24.094117647058827,0.0,4.773236961451247,0.0,0.0,0.0,0.0,24.75309541150765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.17059149196011,262.1781979931386,42.81981906843413,70.0,76.75488750216348,81.50977500432693,95.77443751081734,95.77443751081734,309.0,100.9527286086965,96.42598812479898,60.52148543073497,61.82,61.82,0.5,8.113340064617802,4.906890595608519,3.45608423104524,3.6950357221104504,,3.683027336803416,3.684386684422897,3.6856067756281212,3.68301675159423,3.665309952133245,3.6836057662372474,3.6829466593206974,3.6698099995037206,0.24686315936037428,0.2639311230078893,,0.263073381200244,0.26317047745877836,0.26325762683058007,0.2630726251138736,0.2618078537238032,0.2631146975883748,0.26306761852290694,0.2621292856788372,1.5766084596749435,1.6434624586635367,,1.6402072964848915,1.64057631270442,1.640907409664813,1.6402044224295482,1.6353851392251832,1.6403643368660072,1.640185391036199,1.636612126095122,136.31999999999994,57.286650373743015,61.719729448979756,,62.20776911404503,62.104883020946744,62.13026916802488,62.20893841370812,63.83261841594281,62.169725779431644,62.213289749927085,63.31367307785814,4.091903598124501,4.408552103498554,,4.443412079574645,4.436063072924767,4.437876369144634,4.443495600979151,4.559472743995915,4.440694698530832,4.443806410709078,4.52240521984701,4.384539855427742,4.459075880583878,,4.466952133936819,4.465296854046588,4.465705533023257,4.466970930442311,4.4927365567608435,4.466340394074518,4.467040875118354,4.484573546835298,4.039537037037037,27.154448223733937,0.0,0.18009259259259403,0.0,0.0,1.5193518518518518,0.0,4.773236961451247,151.4330833460098,28.597919160274365,-45.78716303808896,-7.110611236393493,-1.9077984599203734,-7.631193839681494,99.99904314103406,160.10509248210255,7.112218272506811,6.671045520087607,8.894727360116809,258.0,25.0,1.2526964939140826,0.5450763175662043,0.0,0.0,0.5999791246696204,0.14230801064325888,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.24437319301308577,0.06871121467657999,0.5141678985825737,0.11189766609447724,10.455665446700477,8.182701232117184,6.536581260209186,4.107927642957933,6.232306058679036,3.2334489655756187,5.877297755014283,2.3165128954882372,4.48184331339957,1.4711798853237636,3.1242742233372085,0.8670618896487032,1.9704672305326134,0.41639574652854366,1.0544600321456803,0.17381113069921064,3.705282686564005,1.1569690317434553,5.934886903808752,1.4620837281571333,9.18082691482277,1.8377934548131771,47.46515170683957,31.440225520502803,25.85375937481971,22.542481250360574,21.14172969029448,21.14172969029448,76.0,94.0,26.03192999999998,18.038069999999998,0.375,43.06,6.277777777777777,3.027777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,24.0,0.0,0.0,25.0,10.0,2.0,4.0,21.0,12.0,15.0,13.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,6.0,0.0,2.0,14.0,6.0,0.0,4.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,2.0,3.1354942159291497,5.195189599506435,3.9367156180185177,4.680973149403592,5.334830089480193,5.814503596556124,6.221490609512883,6.395274640601348,6.565358495591288,6.423399143512001 +4421,CCn1cc(C(=O)O)c(=O)c2ccc(C)nc21,0,25.310344827586206,6.506200000000001,3.4482758620689653,9.517241379310345,162.73717518615476,100.12614899999998,1.4879919606271728,6.554965517241379,6.824712643678161,7.985040689655174,227.2761528103295,26.266666666666666,6.510833333333334,4.066666666666666,8.933333333333334,147.19324929443493,100.3209507333333,1.7958591798666659,6.645966666666668,3.737037037037038,7.9041850666666695,269.7508613360736,23.46,6.427338,3.82,7.94,155.96396456563483,89.37830019999996,1.5635898314788599,6.523883999999999,4.035555555555557,7.867861920000003,232.21438469355837,22.19672131147541,6.475540983606558,3.4754098360655736,6.918032786885246,158.2052283796606,83.38595785245903,1.4652137326220163,6.563254098360657,3.901639344262296,7.933043737704919,218.92662840408946,21.0625,6.663281250000001,2.96875,6.359375,160.21982901573355,77.56186721875,1.3623670220038273,6.717282812500001,5.2456597222222205,8.12957175,198.75853048819675,17.131147540983605,6.257983606557378,2.6721311475409837,3.639344262295082,159.1148389583942,61.23515265573771,1.3115457073105412,6.337959016393445,3.4908925318761397,7.78709849180328,184.14022920239566,14.298245614035087,6.352807017543861,2.0350877192982457,2.3684210526315788,159.0435682059745,47.75336007017545,1.1303250726762633,6.409845614035091,4.384990253411307,7.923356912280702,151.22396000403194,7.03921568627451,6.037725490196079,1.3333333333333333,0.9411764705882353,173.51094057259573,18.987931666666665,0.7528235498290586,6.0383627450980395,3.313725490196079,7.768241490196077,89.11155989946387,6.181818181818182,5.315454545454547,1.3636363636363635,0.5,176.26633091225384,20.409697909090905,0.6475756235265456,5.337454545454545,2.212121212121213,7.092441818181819,70.98842638766371,7.6123662306777655,0.16274982164090368,0.0295391134671683,0.7086801426872769,4.646848989298453,1.51087384746896,35.994219010701556,0.22061942677431154,0.14882996432818069,2.7554498612762575,0.10521092033293694,47.17474057537766,0.07269124058660338,-0.011670511296076123,-0.015701637156538474,0.35108997225525135,1.8864843440348797,-0.33084996006593725,0.4024544191835,-0.00786818058191593,-0.0088793896155371,-0.26266569780243976,-0.00912344447086801,-0.3227218908960578,1.7814268727705118,0.028078661117716997,0.0035361080511049875,0.10442330558858508,1.3345303210463735,0.09053476859239544,8.418354362401898,0.02952217963942581,0.027818173602853723,0.4998183379574581,0.01657168104637335,8.954841267881342,0.5843550807976456,-0.015652139334515914,-0.008097072864239207,-0.025808463772635994,0.13890567435332654,-0.14371958549514424,2.8369293211243396,-0.003473544875790823,-0.009838161049492259,-0.07601703670493751,-0.012655372565836917,3.4629827995847733,-0.41624554102259215,0.03937668697978593,0.009176537105295191,-0.18820600475624252,-0.32195674791914375,0.08368040411223675,-2.210171128697238,-0.012177984647666566,0.030456080930439937,0.5315173322103317,0.03040374992568372,-6.174511873376014,-1.1019083448665716,-0.021810533907721075,-0.005488670122852076,-0.39494356835149413,-1.5117444104403428,-0.016407104833918388,-5.264663560729811,-0.03760878984678691,-0.01937292645367535,-0.1781148948796753,-0.012907347693027425,-6.898336176650846,-3.2826626614097663,-0.01791679078790913,0.00422354785522028,-0.13275757765400423,-1.743642697707408,-0.5482281817284556,-15.812441029455323,-0.11452310103834364,-0.022136195423159526,-0.31661810756247183,-0.008980805390408238,-27.015129278972758,-1.246578536289665,-0.05241513604252633,-0.003912794345578481,0.21086008719778043,-0.2898510176960204,0.15438633485224487,-5.556180258842171,0.04080879863769502,-0.04839014012263636,-1.0024072649273736,-0.03339934494416077,3.4560070344364946,7.052210571830073,0.07324955139984876,0.005028273161874772,0.19100637768889844,2.4613014809209814,0.2346367988587925,33.45195998616368,0.09177638482961298,0.08012301372824568,0.8103808597268762,0.03133588844449241,35.386150439882584,,,0.4588235294117647,1.3235294117647058,0.6764705882352942,0.029411764705882353,0.6470588235294118,0.029411764705882353,0.6702405851935368,0.021958882618490518,0.032076529677314045,0.9215737326202146,0.26434908092926884,0.20864577541536394,1.5918143178137514,0.4729948563446328,1.9957808742298577,1.4400169255311734,0.24929185061340586,0.3064720980852781,0.0,0.555763948698684,8.002923870482759,734.0,188.67980000000003,100.0,276.0,4719.378080398488,2903.6583209999994,43.15176685818801,190.094,197.91666666666669,231.56618000000006,6591.008431499556,788.0,195.32500000000002,122.0,268.0,4415.797478833048,3009.628521999999,53.87577539599997,199.37900000000005,112.11111111111113,237.12555200000008,8092.5258400822095,1173.0,321.3669,191.0,397.0,7798.198228281741,4468.915009999998,78.179491573943,326.19419999999997,201.77777777777783,393.3930960000001,11610.71923467792,1354.0,395.00800000000004,212.0,422.0,9650.518931159297,5086.543429000001,89.37803768994299,400.3585000000001,238.00000000000006,483.91566800000004,13354.524332649456,1348.0,426.45000000000005,190.0,407.0,10254.069057006947,4963.959502,87.19148940824495,429.90610000000004,335.7222222222221,520.292592,12720.545951244592,1045.0,381.7370000000001,163.0,222.0,9706.005176462046,3735.344312,80.00428814594301,386.61550000000017,212.9444444444445,475.01300800000007,11232.553981346135,815.0,362.11000000000007,116.0,135.0,9065.483387740547,2721.9415240000003,64.428529142547,365.36120000000017,249.9444444444445,451.631344,8619.76572022982,359.0,307.92400000000004,68.0,48.0,8849.057969202382,968.384515,38.39400104128199,307.9565,169.00000000000003,396.18031599999995,4544.689554872657,136.0,116.94000000000004,30.0,11.0,3877.8592800695847,449.01335399999994,14.246663717584003,117.42399999999999,48.66666666666668,156.03372000000002,1561.7453805286016,220.7586206896552,4.719744827586207,0.8566342905478807,20.55172413793103,134.75862068965515,43.81534157659984,1043.832351310345,6.397963376455035,4.31606896551724,79.90804597701147,3.051116689655171,1368.0674766859522,2.1807372175981015,-0.3501153388822837,-0.47104911469615424,10.53269916765754,56.59453032104639,-9.925498801978117,12.073632575505,-0.23604541745747787,-0.266381688466113,-7.879970934073193,-0.27370333412604025,-9.681656726881734,89.07134363852559,1.4039330558858498,0.17680540255524937,5.221165279429254,66.72651605231867,4.526738429619772,420.9177181200949,1.4761089819712905,1.3909086801426862,24.990916897872907,0.8285840523186676,447.74206339406715,35.645659928656386,-0.9547804994054708,-0.49392144471859156,-1.5743162901307957,8.47324613555292,-8.766894715203799,173.05268858858472,-0.2118862374232402,-0.6001278240190278,-4.637039239001188,-0.7719777265160519,211.24195077467118,-26.639714625445897,2.5201079667062993,0.5872983747388922,-12.045184304399521,-20.6052318668252,5.355545863183152,-141.45095223662324,-0.7793910174506602,1.949189179548156,34.01710926146123,1.9458399952437582,-395.1687598960649,-67.21640903686087,-1.3304425683709855,-0.33480887749397664,-24.09155766944114,-92.21640903686091,-1.0008333948690216,-321.14447720451847,-2.2941361806540015,-1.1817485136741963,-10.865008587660194,-0.787348209274673,-420.79850677570164,-187.11177170035668,-1.0212570749108203,0.24074222774755596,-7.567181926278241,-99.38763376932225,-31.249006358521964,-901.3091386789534,-6.527816759185587,-1.261763139120093,-18.047232131060895,-0.5119059072532696,-1539.862368901447,-63.575505350772914,-2.673171938168843,-0.1995525116245025,10.753864447086801,-14.782401902497039,7.873703077464489,-283.3651932009507,2.081248730522446,-2.467897146254454,-51.12277051129605,-1.703366592152199,176.25635875626122,155.1486325802616,1.6114901307966727,0.11062200956124499,4.202140309155766,54.14863258026159,5.1620095748934345,735.943119695601,2.0190804662514856,1.7627063020214049,17.828378913991276,0.6893895457788329,778.4953096774169,0.739822693544713,0.5645467621284133,0.4467173643254866,0.2935315364184499,0.28526738366032534,0.1456487157928534,0.17511615430709482,0.07519129776733631,0.10974745323002337,0.03811446986734585,0.06918658611381431,0.021002107446458522,0.04884306899242897,0.01157183836987877,0.02855711738395757,0.00584928802065132,8.029079384302475,5.685682401423501,3.55540319093335,2.1783101251960173,0.49418653311602295,-0.4510490948877916,3.289988508747533,0.9727241329713805,6.023402781264528,0.9879241012094401,14.557458187093138,10.951366669078551,16.014433762158063,11.701962297271372,2.000559130561929,0.741577584896122,3.501589937993863,2.2262765688226205,7.00937903873919,1.3832657857820747,3.714477723248561,2.421529670735197,20.891965593136373,14.700689794262086,0.3207374036528101,0.7078510031538762,0.8495532688401125,0.8628930208137173,0.8628930208137173,0.8628930208137173,2.145059798973702,658.5837076111416,0.0,3.0,3.0,0.0,4.0,0.0,2.0,0.0,0.0,3.1997926730852138,1.1984443966263263,0.4658543104940325,0.39688879325265347,0.39688879325265347,0.39688879325265347,115.70418289882934,742.5363300552168,54.34619593297201,25.604701036386786,53.68801450818758,,8.0,204.0,11.39809567985239,9.589074368143644,5.563451491696996,17.5781578411451,5.693927994848461,6.196843571613076,16.699833784714574,13.847474399381248,4.9839785209472085,5.106527394840706,7.8,22.5,11.5,0.5,11.0,0.0,0.04117647058823531,0.5,0.20260380014074575,0.058522167487684684,-0.14408163265306106,0.03235294117647047,0.19399999999999984,0.0,0.6413793103448278,0.8823529411764703,0.438775510204082,0.5828571428571431,0.8499999999999999,11.394089948290125,0.3733010045143388,0.5453010045143387,15.666753454543647,4.49393437579757,3.546978182061187,27.060843402833772,8.040912557858757,0.5200000000000001,0.2564102564102564,0.0,0.4358974358974359,0.25,0.36496722239412926,-0.6325454070616939,-0.07461221269288222,-0.021811910588334277,-0.07028282300685489,0.6350327776058706,1.100611348529377,0.05223744140404552,0.03795211546653024,0.05503056742646885,-2.51652232333942,0.7208476517754867,0.7222353731377449,1.4817235625180192,0.6585011185682329,0.36015011941316966,1.3888825951801873,0.7260821676155644,1.092181311415927,0.6986805255953428,0.6703075054340879,0.7441958134099703,0.9507681503955507,0.6088097469540767,0.5624092184995388,0.7519602174460658,1.049060402684564,0.5984032753326511,1.058934800838902,0.6141050365753759,0.8584749754732892,0.5475871722352716,0.4275887034906023,0.543397270127803,0.7654259723143522,0.796359744137334,0.929631391335961,1.2066173480501778,1.1167345142479925,0.8992398946255687,1.2009871012660263,0.7969820942030975,0.970976749717893,0.8942434479797715,0.7694180862369286,0.9229011865268897,0.8535579636790558,0.9869376757263354,0.8223822509033946,0.7026590053368579,1.2985528523489938,1.0729833034800413,0.9909665884773242,0.9910076507211029,0.9942868762799062,0.8410843649633288,0.8887820051783661,0.7897345857566406,1.030523659914456,1.0593871792114142,0.9686596196443821,1.1138286139084805,1.5857630102321492,1.2381579609711901,1.0130441244599229,1.0637464391918847,1.1494983883108565,0.9697523524824606,0.8672308790331206,0.9418066431074046,1.1196489450388816,1.410765276202064,1.1943003675770607,0.852134547735298,0.9680324973507597,1.3122878845014279,1.238348744620285,1.415906661509362,1.499598785099383,1.225683226009193,1.3357824581592077,1.223521663749595,1.5314537129874852,1.3740497761116317,1.6149784687423505,1.0343042101574207,0.387353599157784,1.203895478355109,0.5889399915443354,1.3577777575831451,0.7314073547732974,1.631621786659473,1.8023985198221986,1.6335801844632782,0.945995946306989,0.311323166056062,0.31819902064202227,0.6644923074031143,0.4954240390482003,0.49583604726900543,0.4790753397059748,0.31461916304377135,0.5502861357738413,0.30582121488118336,0.3406693517453012,0.36369825577114584,0.4509246626958047,4.0,0.0,2.4444444444444455,1.625,1.648888888888889,0.8402777777777778,0.2016326530612245,0.11805555555555555,0.0,0.0,3190.7669999196833,3485.366867029403,1640.4278224314683,1515.3517469368612,9.80806326102,0.46785846686699345,5.219277820784698,0.8791993064560406,1.0,0.25,1.6581883220423579,3.6595365985012456,4.392126684633539,4.461092201874918,4.461092201874918,4.461092201874918,0.2222222222222222,0.0,0.09401709401709406,0.05603448275862069,0.06341880341880342,0.042013888888888885,0.016802721088435377,0.03935185185185185,0.0,0.0,0.5338610642459165,13.432098765432098,5.325443786982248,2.56,97.3393815095905,1.0,3.75772841748109,57.299822933929775,,39.56906025896643,38.707445440541505,38.51411574913916,39.57803991727073,53.12933922771413,39.22675666644467,39.618659554003855,48.08744959372087,0.009549099239820905,-0.07170828931429679,-0.53155410957036,0.49541387024608474,0.4059706584783353,-0.21897920903203294,0.011181084914325965,-0.03566404235999077,-0.05966130312278657,-0.09532588543664496,-0.08671575575992617,-0.006840989202270229,0.23401749453295848,0.17252652466600324,0.11970934926788677,0.14734899328859072,0.28719037871033787,0.059922123044263906,0.23388073401173146,0.13381495941255572,0.18691245226339412,0.181392644802455,0.15750913492565927,0.1898227983590698,0.07676392111071852,-0.09617300453361655,-0.2741136044329435,-0.036417647706018255,0.029892444250549547,-0.09512348482032805,0.07881624880597862,-0.01574451047479231,-0.06610336227588157,-0.027587886019355204,-0.1202857319923574,0.07340756424619829,-0.05468017806935332,0.24194611448894784,0.31065716022569856,-0.26557256711409394,-0.06928496033776867,0.055385434232262006,-0.061403502824720964,-0.05519905851321224,0.2046367548895067,0.19289675333237447,0.2889790321144604,-0.13088597410536124,-0.14475240831502448,-0.13401264399444027,-0.1858102521916422,-0.5572945318516891,-0.3253267781935334,-0.010859347960389832,-0.14626414200470794,-0.1704690760766948,-0.13016818582954615,-0.06464094933564743,-0.12268068421208078,-0.14622944593894296,-0.43122763171596584,-0.11008792886692864,0.1429815373408077,-0.1873307429647946,-0.37523119467040184,-0.36285503428817445,-0.43930501797397176,-0.5190979902032746,-0.1487348029886484,-0.11490614001440114,-0.0853600116982984,-0.5726608975370393,-0.16375703671034178,-0.32205956058235646,-0.13246146841635636,0.2975391498881433,-0.06237582033837082,0.10218347157896426,-0.1543631286232449,0.18497373161721364,-0.3251370807019253,-0.3637907838624517,-0.3174513143547219,0.07325969347757938,0.9264150407543096,0.45007454178025996,0.17022424073300382,0.26952410006101285,0.5296710709965573,0.15529873606049888,0.9293703518394988,0.4159941224192285,0.5383527039727612,0.2941011089026049,0.29783874473610616,0.7501080028906825,1.9692593638364124,9.570813381507834,6.631975707865092,16.001851090263933,35.14433523190522,38.43430328010589,38.50382052148519,38.50382052148519,38.50382052148519,33.92827486190758,24.48028773402995,4.2379614604279,5.210025667449727,0.0,9.447987127877628,2024.5738086664,1431.9146034472217,640.6005390267139,26.0,26.0,35.0,46.0,60.0,62.0,57.0,52.0,39.0,232.084792244,18.0,4.48863636973214,5.351858133476067,6.251903883165888,7.142827401161621,8.047829357457841,8.945984124827898,9.852036350945049,10.752590924862394,11.658850982128433,0.7011494252873566,1.0074482758620689,1.1276335382746892,0.6667422678636536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6741176130497628,0.9925625422582827,1.022251801994123,0.6521134920022177,3.0,1.0,0.0,0.0,0.0,2.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.67362704263206,11.210628712464723,0.0,5.428790391900541,0.0,4.794537184071822,9.77851570501903,0.0,0.0,0.0,25.980208536304467,18.435527972374114,5.386224214464796,156.36290314349628,-271.0014219069829,-31.966109477141778,-9.34487661748217,-30.11126910077588,272.0670860423256,471.5349081482339,22.38008645583023,16.259824418904618,23.576745407411696,0.5,0.6756927678706627,0.2755071122870399,75.46812831127663,0.19659207156661201,51.190103379064425,0.3243072321293374,4.0,0.1111111111111111,0.3413328137153022,0.7533040170745141,0.9041053657967637,0.918301699069897,0.918301699069897,0.918301699069897,1.4230200000000002,,1.0357142857142858,1.2284783620288504,0.9699017285501993,1.0327970942604563,-4.283246429381093,1.098531211750306,1.0260103868809844,-1.8356326906609346,63.37330000000001,9.901064578912528,0.0,9.551078168738563,0.0,20.392230805293824,0.0,39.810284771054114,0.0,0.0,3.6109179126442243,0.0,4.948759890378168,0.0,6.502790045915623,0.0,8.163086375583216,0.0,9.882110686776542,20.33333333333334,4.67401171579743,4.2777447089947085,0.0,0.0,0.0,0.8748611111111115,0.5760907974300835,1.6737962962962962,29.215999999999998,0.0,22.88198727639204,0.0,0.0,0.0,0.0,0.0,-1.2086342592592592,32.701372609965986,5.428790391900541,0.0,0.0,20.626910851531118,6.544756405912575,6.923737199690624,22.9756538703079,23.124114892608116,0.0,11.033401435232523,0.0,19.335525768045954,19.54941077844312,20.960173869931197,114.59964586785958,,79.01627177843707,77.27036401496197,76.92843395263951,79.03457429404023,107.20373483761455,78.32427436680106,79.11661200366876,96.41783690854706,20.960173869931197,114.59964586785958,,78.2161125387135,76.35624422114273,76.28924120488199,78.23656714324943,110.5419248848093,77.49127976025426,78.32197927578093,98.01053187810268,4.939810516937012,79.29759158429835,,53.99264757104999,52.796935278879616,52.45732217638473,54.004869406379676,70.2251880934263,53.51301218875635,54.0620628918946,64.30328448828375,1.2329514041135998,6.741155639285857,,4.648015986966887,4.54531553029188,4.525201997214089,4.649092605531778,6.306102049271444,4.607310256870651,4.653918353156986,5.671637465208651,2.469905258468506,57.299822933929775,,39.56906025896643,38.707445440541505,38.51411574913916,39.57803991727073,53.12933922771413,39.22675666644467,39.618659554003855,48.08744959372087,28.784313725490197,0.0,3.702959656084656,0.0,0.0,0.0,8.965932697152935,29.645302257829567,0.5630092592592593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.911291268064314,289.4870452317661,48.087461339228376,106.12656135653611,127.37167385437264,129.37167385437263,129.37167385437263,129.37167385437263,438.0,107.49251752775733,138.94294395405586,50.107664911297775,72.19,72.19,1.0,8.568321022896805,5.169925001442312,3.6969069429333166,4.056808414986945,,4.037559012185589,4.037706227229025,4.0355196834166325,4.03755141483906,4.019098262353796,4.037543797242074,4.037555831666947,4.02911979265428,0.2174651142901951,0.23863578911687913,,0.23750347130503466,0.23751213101347204,0.2373835107892137,0.23750302440229762,0.23641754484434094,0.23750257630835728,0.23750328421570277,0.23700704662672234,1.8381247597324155,1.9310248108504844,,1.926268555525331,1.9263050162579725,1.925763338398327,1.9262666738553282,1.9216858156838963,1.9262647871662464,1.9262677677919788,1.9241761894315796,169.9899999999998,85.77954559321019,81.93722483215353,,83.06699968724628,83.06354204132315,83.31332282740487,83.06776747241736,84.73947974430101,83.07552349129234,83.06634308132466,83.85166577933693,5.045855623130011,4.8198367548325605,,4.886294099249781,4.886090708313127,4.900783695729698,4.886339263083374,4.98467527907653,4.886795499487785,4.886255475372039,4.93245092819629,4.982408832785628,4.9365816543153525,,4.950275758375321,4.950234132724942,4.953236725350284,4.950285001295201,4.970209856807007,4.950378366712916,4.9502678538101,4.9596776053157745,1.6737962962962962,27.15973198538675,9.310701215671454,0.6244241307634169,-1.2086342592592592,3.3273450491307637,1.3466666666666667,4.265968915343915,0.0,202.14081210200635,66.99055690283184,-116.10513625695106,-13.695239937604653,-4.003625388170726,-12.900570695216784,116.56169873093167,202.01969559868542,9.588300198249106,6.966196399954669,10.100984779934272,470.0,29.0,1.3893735147885509,0.5113986878552614,0.0,0.0,0.4168145410511642,0.07748511071974153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11340230290662862,0.03477133042169582,0.31438390794735105,0.07888569170117402,12.576985790260121,9.597294956183026,8.040912557858759,5.2835676555320985,7.416951975168459,3.7868666106141884,6.129065400748319,2.631695421856771,5.048382848581075,1.7532656138979092,4.151195166828859,1.2601264467875113,3.028270277530596,0.7174539789324836,1.6277556908855815,0.33340941717712524,3.2671595968839573,0.9960286338547639,5.1852023963198315,1.291537177387705,8.461269722888535,1.7780102510157454,56.09942902836212,27.652520013865026,21.85765697636635,21.660554838771343,21.660554838771343,21.660554838771343,88.0,105.0,32.64751599999999,16.624483999999995,0.3448275862068966,52.05,7.027777777777777,3.805555555555555,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,10.0,11.0,29.0,0.0,0.0,30.0,11.0,2.0,6.0,24.0,13.0,18.0,17.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,4.0,1.0,2.0,17.0,5.0,0.0,2.0,3.0,0.0,2.0,2.0,0.0,0.0,0.0,2.0,2.0,3.2771447329921766,6.912542629436383,3.979681653901961,4.663439094112067,5.321179035691299,5.939019273657794,6.321105467617081,6.610233286248383,6.89970735615276,7.0804242795940615 +25590,NCc1ccc(S(N)(=O)=O)cc1,0,33.81818181818182,6.4297,3.090909090909091,7.383838383838384,165.33861442261775,134.19005395454542,1.6402198658404552,6.487468181818183,7.450480889138296,7.991763863636366,217.80194971333333,37.36363636363637,6.459627272727274,3.6363636363636362,4.212121212121212,150.45068804852733,143.96357436363633,1.9845025027272725,6.629731818181819,2.873035914702582,8.024993454545454,269.2918513318729,26.583333333333332,6.487611111111112,3.1666666666666665,6.277777777777778,153.67336351104188,99.73418686111113,1.6885610676263059,6.598411111111113,5.6373456790123475,8.008900444444446,228.68937212440096,20.22222222222222,6.193911111111111,2.6444444444444444,3.511111111111111,156.07779842060341,73.02753522222221,1.4456401411798667,6.29801111111111,3.84567901234568,7.795617244444447,188.22739820033226,15.863636363636363,6.241863636363638,2.090909090909091,2.6969696969696972,163.41434558157627,54.104231022727284,1.181570353479409,6.308488636363637,4.01564253647587,7.855367772727272,150.4839150125252,11.08108108108108,5.933135135135135,1.7297297297297298,1.981981981981982,173.02795577760236,36.81504756756756,0.9088828354563784,5.9597567567567555,3.0942192192192195,7.620649135135135,108.34257636019848,17.444444444444443,5.784544444444446,2.111111111111111,1.7777777777777777,166.36165679863623,62.37890549999999,1.0880088821551108,5.869511111111112,2.42283950617284,7.546137666666668,127.08555535239157,19.307692307692307,7.458376923076925,1.6153846153846154,3.4615384615384617,179.31667213629694,63.537327,0.9749926587692309,7.413600000000002,8.58831908831909,9.042316000000001,131.23749505317105,5.333333333333333,6.431333333333335,1.0,0.0,189.24768637556633,10.420704,0.5709510636163334,6.365333333333333,4.0,8.15616,66.68784998567367,13.975206611570247,0.16150495867768588,0.018351543374902114,0.7024793388429752,3.966942148760331,1.6488752277714462,62.5345984979339,0.34249190029314036,0.14851756198347105,3.2372754268271935,0.10204893595041317,50.151219601326034,3.752066115702482,-0.038447107438016576,-0.013039403551842412,0.12396694214876038,-0.8292011019283745,0.34011989009503774,16.07619540289254,0.009063185578512715,-0.02507913223140502,-1.2451413333673436,0.002240530991735562,7.757478964847627,-0.5938934802571159,0.05819706152433421,0.0037639546608998356,-0.11157024793388426,1.0341801856953374,0.22191592270096802,-2.33614954338844,-0.0028348902490822475,0.047996831955922796,1.262112312015277,0.03602612970615244,0.0130509118362833,-1.5105601469237833,-0.013792029384756639,0.00023105296884067648,-0.11864095500459136,-0.5754718906234056,-0.35754727299264166,-6.739244890863182,-0.03826684512902122,-0.01321907713498622,-0.1498638453055307,-0.012844918778696071,-6.816703260300253,-2.966942148760331,-0.02974545454545453,-0.0010857085826387004,-0.016528925619834715,-0.6078971533516987,-0.5371760332531111,-13.6940909411157,-0.08431239109683059,-0.02874535123966941,-0.3923707650296455,-0.020877377066115695,-16.034012677848416,1.7889211525575148,-0.016415278088005282,-0.0021741931224318347,0.024793388429752043,0.1698309880128061,0.02262610116860738,8.11983958314721,0.050346445693446526,-0.011618053383962375,-0.44944593066436506,-0.01179596789144523,6.031917112884851,2.1460055096418724,0.0408485766758495,0.0004626375984401979,-0.3085399449035812,0.8815426997245179,-0.7281426210322434,10.612972307621677,-0.07384134222378698,0.0464402662993573,0.23431093576997025,0.016283566574839196,6.558792943999271,-10.191989828353464,-0.004910553083280643,0.01608189253557439,-0.03814367450731089,-1.558239740057922,0.38165181233901213,-45.995011536395445,-0.1125380479383504,-0.02522770184361117,0.22563687520547848,-0.01060239399237096,-27.423758035052,-3.035812672176309,-0.127435261707989,-0.017927720867999552,0.29752066115702475,-2.1285583103764925,0.903031571708377,-13.967214816115685,0.13364465307334392,-0.11934028925619834,-2.0498416757360363,-0.07325719352617067,7.2743327405917855,,,0.48333333333333334,1.3125,0.75,0.0,0.5625,0.1875,0.542512155972506,0.03143251618936834,0.038599182856035,0.8114349660228694,0.2575523775739898,0.2038662364343998,1.3539471219953754,0.46141861400838957,1.9313551431600178,1.1878147569596689,0.28492917169269527,0.28138894058716013,0.0,0.7435403862003489,8.456649934545455,744.0,141.45340000000002,68.0,162.44444444444446,3637.4495172975903,2952.181186999999,36.084837048490016,142.72430000000003,163.9105795610425,175.81880500000005,4791.6428936933335,822.0,142.11180000000002,80.0,92.66666666666666,3309.915137067601,3167.198635999999,43.65905505999999,145.85410000000002,63.2067901234568,176.549856,5924.420729301204,957.0,233.55400000000003,114.0,226.0,5532.241086397508,3590.4307270000004,60.78819843454701,237.54280000000006,202.9444444444445,288.3204160000001,8232.817396478435,910.0,278.726,119.0,158.0,7023.500928927154,3286.2390849999997,65.053806353094,283.41049999999996,173.0555555555556,350.8027760000001,8470.232919014952,698.0,274.64200000000005,92.0,118.66666666666667,7190.231205589355,2380.5861650000006,51.989095553094,277.5735,176.68827160493828,345.63618199999996,6621.2922605511085,410.0,219.526,64.0,73.33333333333333,6402.034363771287,1362.1567599999998,33.628664911886,220.51099999999997,114.48611111111111,281.964018,4008.6753253273437,314.0,104.12180000000002,38.0,32.0,2994.509822375452,1122.8202989999997,19.584159878791993,105.6512,43.611111111111114,135.83047800000003,2287.539996343048,251.0,96.95890000000001,21.0,45.0,2331.1167377718602,825.985251,12.674904564000002,96.37680000000003,111.64814814814815,117.55010800000002,1706.0874356912236,64.0,77.17600000000002,12.0,0.0,2270.972236506796,125.04844800000001,6.8514127633960005,76.384,48.0,97.87392,800.254199828084,307.45454545454544,3.553109090909089,0.4037339542478465,15.454545454545453,87.27272727272728,36.27525501097182,1375.7611669545458,7.534821806449088,3.267386363636363,71.22005939019826,2.2450765909090897,1103.3268312291727,82.5454545454546,-0.8458363636363646,-0.2868668781405331,2.7272727272727284,-18.24242424242424,7.48263758209083,353.6762988636359,0.19939008272727973,-0.5517409090909104,-27.393109334081558,0.04929168181818236,170.66453722664778,-21.38016528925617,2.0950942148760316,0.13550236779239408,-4.016528925619833,37.23048668503215,7.988973217234848,-84.10138356198384,-0.10205604896696091,1.7278859504132207,45.43604323254998,1.2969406694214878,0.4698328261061988,-67.97520661157024,-0.6206413223140488,0.010397383597830441,-5.338842975206611,-25.896235078053255,-16.089627284668875,-303.26602008884316,-1.7220080308059549,-0.5948584710743798,-6.743873038748881,-0.5780213450413232,-306.7516467135114,-130.54545454545456,-1.3087999999999993,-0.047771177636102814,-0.7272727272727275,-26.747474747474744,-23.63574546313689,-602.5400014090908,-3.709745208260546,-1.264795454545454,-17.264313661304403,-0.9186045909090906,-705.4965578253303,66.19008264462805,-0.6073652892561954,-0.08044514552997789,0.9173553719008256,6.283746556473826,0.8371657432384731,300.43406457644676,1.8628184906575214,-0.4298679752066079,-16.629499434581508,-0.43645081198347346,223.18093317673947,38.62809917355371,0.735274380165291,0.008327476771923562,-5.553719008264462,15.867768595041323,-13.10656717858038,191.03350153719018,-1.3291441600281657,0.8359247933884314,4.217596843859464,0.29310419834710555,118.05827299198688,-132.49586776859502,-0.06383719008264835,0.2090646029624671,-0.49586776859504156,-20.257116620752985,4.961473560407158,-597.9351499731408,-1.462994623198555,-0.3279601239669452,2.9332793776712203,-0.13783112190082247,-356.508854455676,-36.429752066115704,-1.5292231404958678,-0.2151326504159946,3.5702479338842967,-25.54269972451791,10.836378860500524,-167.60657779338823,1.6037358368801269,-1.4320834710743802,-24.598100108832433,-0.8790863223140482,87.29199288710143,0.7658528703593325,0.6010374873869683,0.4614186140083896,0.40855400858211643,0.32305429773356875,0.23261806011159844,0.2027138044389417,0.13426767872415563,0.13537345981646276,0.07392526852708219,0.08190355937288489,0.0424727962257105,0.059640452079103144,0.029769651267457748,0.05152889434221654,0.016690973598517615,16.013353624498606,5.694690412931384,3.580937751054131,2.1848724034107585,0.44809245634741146,-0.3680515415581424,4.0428576821484565,0.9685433647116062,6.01753318829027,0.6421002067350505,14.538586320971149,10.319290002971764,32.06665947897243,11.705847799848167,2.9556232655174934,0.7609779341500573,3.5370500319308156,2.238349295794351,7.014206743141058,0.30021413015391135,3.7684705225492854,2.4371652495564793,24.442063955117167,14.702150616974755,0.39420424283990113,0.6701955292233681,0.7849100298727238,0.8613863636389614,0.8613863636389614,0.8613863636389614,2.3588248686077886,355.49769522287335,0.0,0.0,1.0,0.0,5.0,0.0,1.0,0.0,0.0,2.585034791058039,1.272727272727273,0.7272727272727284,0.3636363636363633,0.3636363636363633,0.3636363636363633,10.815349622435207,433.72907889978006,48.195744903088006,19.71495813180819,40.55673410647287,,7.0,126.0,10.023291153407584,8.417796984328938,4.895483475517775,6.544756405912575,5.563451491696996,12.13273413692322,12.13273413692322,0.0,0.0,10.872641214770127,5.8,15.75,9.0,0.0,6.75,0.0,0.01666666666666668,2.25,0.2030303030303029,0.07207792207792196,-0.13095238095238093,0.15416666666666645,0.18672727272727274,0.0,0.6363636363636367,0.9166666666666666,0.4333333333333338,0.5642857142857147,0.7625000000000002,6.510145871670073,0.37719019427242007,0.46319019427242003,9.737219592274432,3.0906285308878774,2.4463948372127975,16.247365463944504,5.537023368100675,0.5272727272727272,0.2528735632183908,0.14367816091954025,0.1724137931034483,0.14285714285714285,0.4850817141970809,-0.580419238481458,-0.08859756878089493,-0.026382692658248098,-0.06449102649793978,0.5149182858029192,0.6161198630639015,0.04436122072644955,0.028005448321086437,0.047393835620300126,-1.4050899202847957,0.9376108811354228,0.8785148474319545,1.7699873345063102,1.2352941176470589,0.8883680555555554,1.1378714597703101,0.9193468608626252,1.309299122517112,0.8018168538935064,1.0164197286256016,0.609043850194623,0.8907360372392626,0.9809038044549576,0.47083881295596003,0.6910453200377233,1.4343137254901963,0.6810281635802468,0.998466671304961,0.9690337291254908,1.0756081467459047,0.4959800136797318,0.4849644182945124,0.4986651700584826,0.9947885756246162,0.9987384190814114,0.906379901170635,0.7177323793168126,1.1474509803921569,1.0741975308641976,1.1971084144451982,0.9989688215837981,1.0994110343610517,0.9122847239128669,0.9143525740489012,0.9763734604316496,1.134320327777995,1.0555884092253105,1.1300794182815563,0.9163672045215149,0.7102941176470589,1.0499999999999998,1.2420200716756422,1.0691885503441516,1.10025706100308,1.1390891385246753,1.05628530212107,1.1479158030344583,1.2438132324554827,0.6461073728962553,1.0655342581926728,0.9576080297770438,0.6610492845786964,0.9617774024024022,0.7160963020615762,0.6656906338307688,0.548282023724698,1.0650925637841784,1.0282251262794377,1.0482588801213284,0.8025543727859108,1.2142716341415338,0.5248689581297131,0.9333538381208628,1.7362745098039216,0.6906828703703702,1.3202507202483047,1.1763756896598065,1.4765125227136768,0.5025142883641127,0.6794407494523997,0.5890595248977637,0.9427439359375414,2.0228130828367377,2.031966881757846,1.0078807148393925,1.0452488687782806,1.7481303418803416,0.7868562847391585,2.005133012987054,1.3520825204038147,2.0802724531754544,2.057376714146818,2.14895163021873,1.2426435619563343,0.9676227084565346,2.4103256558916395,2.4329508565701143,0.0,1.8046874999999998,0.08450483932961557,1.0016013826370247,0.09566547828988409,2.4028991757381832,2.2114556116429767,2.3232472429316795,0.5834127112343528,4.0,0.0,1.7777777777777786,0.75,0.4622222222222223,0.4166666666666667,0.12244897959183673,0.0,0.0,0.0,2252.0484853567064,2507.113440046045,1438.9969888495452,1326.3778939398424,8.465454877348845,0.46957808857722116,4.4902627571066605,0.8852916489019975,1.0,0.14285714285714285,1.8743968275792586,3.1867043459100244,3.732158891364569,4.095795255000934,4.095795255000934,4.095795255000934,0.33333333333333326,0.0,0.10457516339869286,0.049999999999999996,0.046222222222222234,0.08333333333333334,0.030612244897959183,0.0,0.0,0.0,0.6480762971855409,10.083333333333334,3.8062283737024223,2.7777777777777777,71.2369025203341,1.0,3.3833907913949,34.76781947673661,,20.938975564114827,26.034183645229515,26.58819684550684,20.937599632471034,26.00652854885502,25.882984099485345,25.48459920093063,27.506255964865385,0.268480189237138,-0.2380552755333361,-0.7105344376470987,0.1764705882352942,-0.20902777777777773,0.20627387953103654,0.257076814899894,0.026462481509067787,-0.16886307515737534,-0.38462631972828104,0.02195545667251507,0.15468176101229875,-0.04249622182797814,0.3603422582242667,0.2051028942910319,-0.15882352941176467,0.2606995884773663,0.13458624337567415,-0.03735771236247122,-0.008277247568937695,0.3231727703775834,0.3898686844981414,0.3530279798670118,0.0002602311955727239,-0.10808857349365925,-0.08539694073592675,0.012590383496391288,-0.1688888888888889,-0.1450668724279835,-0.21684313462328392,-0.10776826033489031,-0.11173065726888272,-0.08900682827299178,-0.0462932020129069,-0.12587018824907273,-0.13592298082657225,-0.21230041395623894,-0.18417672614509187,-0.05916170430240402,-0.02352941176470589,-0.1532407407407407,-0.32578331228805996,-0.21898423065062364,-0.2461733869462817,-0.19354849928703088,-0.12120401056335277,-0.20458201618349328,-0.3197133151558385,0.1280067767353396,-0.10163946805351728,-0.11847467420126083,0.035294117647058795,0.04281156156156153,0.013722142699170702,0.12984555395227304,0.14700039811264085,-0.07822679842573355,-0.13883462832350366,-0.11559128746993536,0.1202745847625481,0.15355805243445686,0.2529245975497921,0.025209737894465543,-0.4392156862745098,0.2222222222222222,-0.4415995878695878,0.1697136075475454,-0.21560025846037773,0.3126920862364127,0.07237905487690152,0.15956625537723962,0.13078032789906174,-0.7292908156302598,-0.0304049678937759,0.8763237078777941,-0.05429864253393669,-0.3928062678062678,0.23146191167832475,-0.7355130222498365,-0.32858601281381716,-0.16986342562247844,0.06969962250837022,-0.10389519394423469,-0.5468213585443273,-0.2172284644194757,-0.789048601054476,-0.9769053480546933,0.4235294117647058,-0.5365740740740741,0.5476651941268341,-0.22335179487203632,0.39021259468897473,-0.8035432824400934,-0.6331996526304394,-0.717863374506592,0.14504797287919688,4.883593419305869,6.597539553864471,0.33333333333333337,22.771622361374266,31.103486678569805,35.654395769478896,36.02094122402435,36.02094122402435,36.02094122402435,23.176261717920212,14.253777083516027,3.4191500603123433,3.3766672870459216,0.0,8.922484634404187,1308.3117027661472,1254.6357745659764,220.9504360114322,0.0,17.0,18.0,18.0,20.0,20.0,14.0,0.0,0.0,186.04629856,12.0,4.07753744390572,4.859812404361672,5.720311776607412,6.529418838262226,7.390798521735676,8.207674424355282,9.06843112579349,9.888424674859083,10.748432647339735,0.7424242424242423,1.0014545454545454,1.1362156506406658,0.7047668425155731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6821428960261294,0.9873440285204993,1.0228928027544197,0.6291690505708419,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.733667477162185,0.0,0.0,10.023291153407584,0.0,0.0,13.556770721936878,0.0,0.0,12.13273413692322,17.696185628620217,6.544756405912575,4.895483475517775,175.83549490200295,-210.39404508982625,-32.11540838946894,-9.563365685901195,-23.377116121091802,186.65084452443816,223.3350338099538,16.080336513619066,10.151592445906992,17.179617985381064,0.42857142857142855,0.6467688337875146,0.2728682206399296,92.19713245202908,0.198527111523422,3.5502356689296133,0.35323116621248557,4.0,0.16666666666666666,0.42032191271766434,0.7145987691776312,0.8369135823872176,0.918456791193609,0.918456791193609,0.918456791193609,-0.20729999999999998,,1.4107142857142858,0.9181739123801387,0.7098670474021058,1.408890217594701,-2.7768142340074573,0.8514381884944923,0.8488716908216677,-1.279059337431441,45.70660000000001,8.417796984328938,0.0,0.0,10.872641214770127,11.440239881430351,0.0,29.828919765543436,0.0,0.0,3.2188758248682006,0.0,4.532599493153256,0.0,6.042632833682381,0.0,7.627057417018934,0.0,9.24619002486988,16.333333333333332,6.16125,0.0,0.0,0.0,0.0,0.0,0.9880555555555561,0.0,22.031999999999996,0.0,21.558054610733183,0.0,0.0,-3.5686196145124716,0.0,0.0,0.0,24.99674431409465,10.872641214770127,0.0,0.0,8.417796984328938,16.56804755932016,0.0,5.563451491696996,29.160951749364216,0.0,0.0,0.0,15.504870535342608,15.007143712574848,14.21695795116161,69.53563895347321,,42.32678268357254,51.915338305001136,53.05808251641294,42.32498946649895,53.790362867566614,51.62406183415057,50.82771978661729,55.65204159843445,14.21695795116161,69.53563895347321,,41.386306493096335,51.150193378017676,52.46652664357785,41.385729321435804,54.78987133166295,50.91453001040516,50.12032671093256,56.291571267150175,4.638755011725435,52.6774882252535,,32.706373038252785,39.671715252730245,40.47883316498306,32.70488415063146,39.427254376081265,39.418158323311275,38.82425222002627,41.29124001063292,1.1847464959301341,5.7946365794561006,,3.5272318902977116,4.326278192083428,4.4215068763677445,3.527082455541579,4.482530238963885,4.30200515284588,4.235643315551441,4.637670133202871,2.319377505862717,34.767819476736605,,20.938975557776523,26.03418364519891,26.588196845489982,20.937599626124467,26.006528548827745,25.88298409944983,25.484599200877113,27.506255964859367,21.721568627450985,0.0,0.0,0.0,0.0,10.217510393046108,0.0,22.503641660597232,0.3937490551776264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.841719112558522,234.44486701474446,41.23673020674369,70.10749561002054,82.10749561002052,90.10749561002055,90.10749561002055,90.10749561002055,131.0,90.49084185722029,128.04147241169667,42.66735559359265,94.56,86.18,0.75,6.3120750416483995,4.584962500721156,3.193692705287555,3.4082106871676334,,3.3917111791130186,3.3995605161653013,3.400895515665999,3.391692041794817,3.3794075748610117,3.398767119340393,3.398031140284695,3.384741813011345,0.26614105877396294,0.28401755726396943,,0.28264259825941823,0.2832967096804418,0.28340795963883325,0.2826410034829014,0.28161729790508433,0.2832305932783661,0.28316926169039125,0.2820618177509454,1.3434993919669245,1.4085089852021682,,1.4036561234311904,1.405967720109901,1.4063603406964023,1.403650481036782,1.4000219772168907,1.405734310697749,1.40551774429973,1.4015991863973027,133.78000000000003,45.93655455769496,45.739054237966016,,45.25368793558924,45.781003217004276,45.82369211397531,45.25381225876312,46.46024941145839,45.80052171807195,45.78596952199502,46.51167644715493,3.828046213141247,3.8115878531638345,,3.7711406612991034,3.815083601417023,3.818641009497943,3.7711510215635933,3.871687450954866,3.816710143172662,3.815497460166252,3.875973037262911,4.009582752498237,4.00527406826109,,3.994605724957825,4.006190784949049,4.007122809228089,3.994608472203603,4.020918652426983,4.006617039073493,4.006299258667183,4.022024944255761,21.558054610733183,0.11083333333333356,4.889261148904006,6.205471466364324,0.0,6.16125,0.0,0.3937490551776264,-3.5686196145124716,156.54551929651063,63.73796488826369,-76.2649672417327,-11.641396826283811,-3.4665894200787597,-8.47388524908141,67.65838138251738,80.95589887145061,5.828902319567115,3.6798135850659373,6.227376836265432,201.0,15.0,1.7144871163137765,0.830563612838226,0.28867513459481287,0.05892556509887896,0.4330127018922193,0.13024573573692622,0.14433756729740643,0.019641855032959652,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.10059223176554563,0.05366254590494823,9.19023444431199,7.212449848643619,5.537023368100676,4.902648102985397,5.491923061470668,3.9545070218971734,3.6488484799009506,2.4168182170348014,2.4367222766963295,1.3306548334874793,1.6380711874576979,0.8494559245142099,1.192809041582063,0.595393025349155,0.7214045207910316,0.2336736303792466,2.3546809983424843,1.1755286660229631,2.634069917668003,1.0288507303191292,2.808871644841473,1.0223109801439703,39.926259281175355,29.699977415959413,23.302044257278332,22.32417246529435,22.32417246529435,22.32417246529435,58.0,64.0,25.061929999999982,15.548069999999996,0.2727272727272727,12.05,5.534722222222222,2.666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,22.0,0.0,1.0,22.0,6.0,2.0,5.0,17.0,8.0,12.0,14.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,3.0,2.0,0.0,12.0,5.0,0.0,2.0,2.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,2.8903717578961645,0.0,3.5409593240373143,3.876395827784995,4.2749284991175145,4.73674654377681,4.887525596934148,4.8352893510387265,0.0,0.0 +24066,Nc1ccn([C@H]2CC[C@@H](CO)O2)c(=O)n1,0,24.142857142857142,6.578382142857143,3.1785714285714284,8.428571428571429,169.11259739152632,95.28850253571429,1.3014171343941787,6.595289285714285,5.825396825396825,8.066597571428574,199.8162729965779,25.586206896551722,6.715793103448276,3.896551724137931,7.413793103448276,154.0614283523362,96.86569406896548,1.5948246788275855,6.815827586206899,3.514367816091954,8.110626206896553,244.18599481805157,21.84313725490196,6.6902509803921575,3.450980392156863,6.196078431372549,160.9888751522411,81.01012623529411,1.3610562755567848,6.746519607843136,3.590413943355119,8.138239372549018,201.72414421393424,16.417910447761194,6.4190000000000005,2.7761194029850746,4.223880597014926,166.53796950347595,58.49665862686566,1.1223907457468205,6.457561194029849,3.2375621890547253,7.972178626865673,159.7406195751455,15.935483870967742,6.442079032258065,2.4838709677419355,3.9516129032258065,167.91412667557154,56.4527055,1.070677414178016,6.468151612903225,3.8297491039426528,8.000674774193548,150.45306995770414,13.277777777777779,6.315074074074074,2.3333333333333335,2.7777777777777777,170.05654188683306,45.170187481481484,1.0173898847599445,6.337816666666664,3.1944444444444446,7.920143703703702,138.67746524322746,13.923076923076923,6.248333333333333,2.3076923076923075,2.7435897435897436,167.4992608403729,47.85801223076923,1.0604899753023591,6.286900000000002,3.394586894586895,7.824046871794872,143.23262199219204,13.21875,6.491906249999999,1.875,2.90625,172.90520842741228,44.3207740625,0.9119720801232187,6.4888031250000004,4.718750000000001,8.08797625,123.03128448271411,8.318181818181818,5.9645909090909095,1.6818181818181819,1.1818181818181819,174.73709671920653,24.590651727272725,0.8221302579974089,5.980090909090908,2.8181818181818183,7.623409454545453,98.01701680324763,8.142857142857142,0.18290242346938768,0.031806538886479566,0.5956632653061226,4.428571428571429,1.4296059991407581,38.38249380994898,0.19859393571116715,0.167253443877551,2.24248866213152,0.11540609693877546,44.79541081531552,0.06896551724137931,-0.026947127902885296,-0.022053129304686073,0.16172589725545378,0.9310344827586207,-0.411588788309982,0.4265574166520057,-0.015309151545413258,-0.020425734517945195,-0.32185374149659873,-0.01971194915552429,0.19813451982294375,0.0392156862745098,0.019103879051620618,0.007121825250803527,-0.01653161264505806,0.35294117647058826,0.06467949736488043,0.08422640433673442,-0.012757527589490553,0.015057620548219247,0.09675814770352585,0.00990690586234492,-3.26594583951447,-0.29850746268656714,-0.0181342464971063,-0.004868153588144171,-0.08606838257691139,-0.19402985074626866,-0.2113552031049674,-1.3608869213562302,-0.009695043780306209,-0.014829883109960418,0.002417758148035334,-0.011196883719159308,-1.0836789688515418,-0.06451612903225806,0.01181197745227123,0.005076987095213172,-0.0397876892692561,-0.14516129032258066,0.056791010979191606,-0.39912483068630683,-0.012072792139056501,0.009621383311389065,0.11090995538000152,0.007888211816984854,-2.5419546834280857,-1.0185185185185186,-0.03711948696145123,-0.0029483118448652996,-0.05399659863945578,-1.0,0.07617043353437288,-4.627707739181783,0.016023326074546502,-0.03394497826908539,-0.5896006550768457,-0.02296140117157973,0.5885001376934812,-0.8461538461538461,-0.011204895996860276,-0.0005060482617583037,-0.09566326530612243,-0.8974358974358975,-0.11939520782302715,-4.0627636478610665,-0.031296654123975705,-0.0106067405808477,-0.254189923832781,-0.006596181187859748,-6.345386647969879,-1.28125,-0.0014565529336734615,0.0023464329135940874,-0.06218112244897956,-0.71875,-0.12034960197952266,-6.1444422664221925,-0.01896455007348076,-0.0047671715561224395,0.306308460884354,0.004280023596938767,-7.6373718831813004,-1.1363636363636365,-0.025931806586270836,-0.007279365829517348,-0.045338589981447096,-0.2727272727272727,-0.16124674679381154,-5.373804947935991,-0.029259353907240212,-0.02319029452690159,-0.41032776747062466,-0.014968908627087163,-6.09118428836941,,,0.4466666666666666,1.1333333333333333,0.43333333333333335,0.06666666666666667,0.7,-0.26666666666666666,0.6892017097555256,0.014100330797724148,0.025566997464390815,0.7138277978138416,0.22127304013356344,0.25890753322691873,1.4030295075693673,0.4801805733604822,2.0059040146401417,1.238568381864727,0.3978692204001938,0.36946641237522143,0.0,0.7673356327754153,7.539131831285714,676.0,184.1947,89.0,236.0,4735.152726962737,2668.078071,36.439679763037006,184.66809999999998,163.11111111111111,225.86473200000006,5594.855643904181,742.0,194.758,113.0,215.0,4467.78142221775,2809.105127999999,46.24991568599998,197.65900000000005,101.91666666666667,235.20816000000005,7081.393849723496,1114.0,341.2028,176.0,316.0,8210.432632764296,4131.516438,69.41387005339602,344.07249999999993,183.1111111111111,415.05020799999994,10287.931354910646,1100.0,430.07300000000004,186.0,283.0,11158.043956732889,3919.276127999999,75.20017996503698,432.6565999999999,216.9166666666666,534.135968,10702.621511534748,988.0,399.4089,154.0,245.0,10410.675853885436,3500.067741,66.381999679037,401.02539999999993,237.44444444444449,496.041836,9328.090337377656,717.0,341.014,126.0,150.0,9183.053261888985,2439.190124,54.939053777037,342.2420999999999,172.5,427.6877599999999,7488.583123134283,543.0,243.68499999999997,90.0,107.0,6532.4711727745425,1866.462477,41.359109036792006,245.18910000000008,132.3888888888889,305.137828,5586.0722576954895,423.0,207.74099999999996,60.0,93.0,5532.966669677193,1418.26477,29.183106563943,207.64170000000001,151.00000000000003,258.81524,3937.0011034468516,183.0,131.221,37.0,26.0,3844.216127822544,540.994338,18.086865675942995,131.56199999999998,62.00000000000001,167.71500799999998,2156.3743696714478,228.0,5.121267857142855,0.8905830888214278,16.67857142857143,124.0,40.02896797594123,1074.7098266785715,5.56063019991268,4.683096428571428,62.78968253968256,3.231370714285713,1254.2715028288346,2.0,-0.7814667091836736,-0.6395407498358961,4.690051020408159,27.0,-11.936074860989478,12.370165082908166,-0.4439653948169845,-0.5923463010204106,-9.333758503401363,-0.5716465255102045,5.745901074865369,2.0,0.9742978316326516,0.3632130877909799,-0.8431122448979611,18.0,3.298654365608902,4.295546621173456,-0.6506339070640182,0.7679386479591815,4.934665532879818,0.505252198979591,-166.56323781523795,-20.0,-1.2149945153061221,-0.3261662904056594,-5.766581632653064,-13.0,-14.160798608032815,-91.17942373086743,-0.649567933280516,-0.993602168367348,0.16198979591836737,-0.7501912091836737,-72.6064909130533,-4.0,0.7323426020408162,0.31477319990321667,-2.466836734693878,-9.0,3.5210426807098796,-24.745739502551025,-0.7485131126215031,0.596525765306122,6.876417233560094,0.4890691326530609,-157.6011903725413,-55.0,-2.0044522959183664,-0.15920883962272617,-2.9158163265306123,-54.0,4.113203410856135,-249.89621791581632,0.865259608025511,-1.833028826530611,-31.838435374149668,-1.2399156632653054,31.779007435447987,-33.0,-0.4369909438775508,-0.019735882208573842,-3.730867346938775,-35.0,-4.656413105098059,-158.44778226658158,-1.2205695108350525,-0.4136628826530603,-9.913407029478458,-0.25725106632653016,-247.4700792708253,-41.0,-0.04660969387755077,0.0750858532350108,-1.989795918367346,-23.0,-3.851187263344725,-196.62215252551016,-0.6068656023513843,-0.15254948979591806,9.801870748299327,0.13696075510204053,-244.39590026180161,-25.0,-0.5704997448979584,-0.16014604824938167,-0.9974489795918361,-6.0,-3.547428429463854,-118.22370885459179,-0.6437057859592846,-0.5101864795918349,-9.027210884353742,-0.3293159897959176,-134.00605434412702,0.7224332542835976,0.5444139371290249,0.45016928752545216,0.30090019241866306,0.2912167554109358,0.1597689494917783,0.18794616689529856,0.08751929412173512,0.12178332540305199,0.0477348146581471,0.0758850231206073,0.025157667153659205,0.053257649652691925,0.013642224829714222,0.033526538105511705,0.007683196033604033,8.02263536629166,5.774082421494226,3.547308981676604,2.2632473808504896,0.48881122779197617,-0.41021733892443796,3.2089140843942587,0.9777683744245502,6.0224763287791685,1.8907371132561608,14.558810560383268,11.04432678823693,16.010509818509743,11.792246468216902,1.911392533410369,0.7461771091146485,3.493587279329535,2.309316543702737,7.008281127228824,1.2400102809545992,3.705694821886215,2.5029316343334744,20.79573033304057,14.70238156200298,0.34615086760336405,0.7471852701258065,0.8757566986972349,0.9043281272686636,0.9043281272686636,0.9043281272686636,1.8810769946369759,403.8341971708258,0.0,2.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,3.0766005840407837,1.0714285714285712,0.4285714285714288,0.2857142857142856,0.2857142857142856,0.2857142857142856,137.10382292044858,740.5942193700785,57.27661889215965,26.44979354893137,53.212174101513824,,9.0,212.0,5.689743398203474,4.794537184071822,24.75661230083112,6.4208216229260096,6.4208216229260096,4.567099647791355,12.263210640074686,0.0,4.9839785209472085,15.577057825802939,6.699999999999999,17.0,6.5,1.0,10.5,0.0,0.05333333333333338,-4.0,0.19975083056478393,0.02261904761904754,-0.1771317829457364,0.1055555555555554,0.23542857142857143,0.0,0.6392857142857146,0.9333333333333333,0.43953488372093064,0.616666666666667,0.827777777777778,10.338025646332884,0.21150496196586221,0.3835049619658622,10.707416967207624,3.3190956020034514,3.8836129984037813,21.04544261354051,7.202708600407233,0.47857142857142854,0.1592039800995025,0.0,0.35820895522388063,0.5555555555555556,0.32864607005687557,-0.6083916734898894,-0.07830249340146354,-0.02172827405321034,-0.06759907483220993,0.6713539299431244,1.2428146208211945,0.06486745666945239,0.044386236457899804,0.06541129583269445,-0.2979228279760392,0.8024047186932849,0.9138240884056024,1.7234548956867533,0.9489773314627481,0.5631256952169077,1.6625890026694343,0.8060425750436304,1.2909905569154587,0.8730430581446325,0.8493049184186264,0.9496401529369741,1.0474873628157415,0.8893188854489164,0.818632876123974,0.7174874452113732,1.2061972540622243,0.8645635673624289,1.145665986669863,0.8937354708471092,1.1496372975771816,0.8194747791976137,0.6560182310932334,0.8537657153402772,1.0660957141947247,0.9950903377847604,1.0702663966067756,1.0987109514968432,1.171849531784333,1.0497111218103035,1.1267734982599025,0.9937786048397302,1.0278206694793528,1.0578118879644818,0.7245224927627549,1.0761103476346934,0.9912286644721728,0.987478777589134,0.95667936670978,0.8271737128793357,0.9791393244456724,1.0448100936524454,0.9002663791181997,0.9885052197788161,1.016485427718279,0.9610530342273981,1.0144272424991791,0.9678152746937821,1.0119974123900817,1.1217105263157894,1.2287484614231272,0.9400441214763225,1.0342612419700212,1.2741935483870968,0.8210451732557423,1.1154107104005524,0.8409233099566089,1.2301476358361794,1.4965082474878337,1.2335437040318362,0.93364326864269,1.0506072874493928,0.9428464523749942,0.85264162476416,1.058474715862296,1.136166253101737,1.0365584888878263,1.0544061213483191,1.1256195302817513,0.9514636783179342,1.167511752609395,0.9227542076477702,1.119984548456389,1.1953125,1.1707675188551943,1.0044743370897806,0.8600107066381155,1.1907762096774193,0.906443682383906,1.1925786255967246,0.9406403920638171,1.186207357082882,1.2121940766605572,1.1441237757572582,1.0612639396081633,1.1357655502392345,1.0020046273799006,1.2402767155709216,0.9197975472065407,0.9006598240469209,0.8898604400151887,1.137792799494545,0.9833102482201035,1.020386944285738,1.1692171350106,0.9298408947881455,1.0782337693417854,3.5,0.0,1.7777777777777786,1.1597222222222223,0.7433333333333334,0.47611111111111115,0.16730158730158734,0.11546910430839001,0.045099521289997474,0.0,2743.002099747664,3085.3868055628623,1498.5964266349647,1356.3658062862394,10.318965363359052,0.4443365719355474,5.733871667882441,0.7996505609219396,0.0,0.5555555555555556,1.7307543380168202,3.7359263506290326,4.378783493486175,4.521640636343318,4.521640636343318,4.521640636343318,0.21875,0.0,0.08080808080808086,0.05798611111111112,0.04372549019607844,0.03967592592592593,0.018589065255731927,0.019244850718065004,0.022549760644998737,0.0,0.501329284659992,11.484375,4.8884297520661155,2.5714285714285716,86.30874176519849,1.0,3.6354153250336765,51.05277025958523,,37.97724917035672,36.67884880890377,37.3104785338058,37.9935536790787,62.01558170976084,37.50319540451036,38.047771407624055,54.461134465637706,0.008469449485783424,-0.1473306224802179,-0.6933520614549009,0.2715055748357082,0.21023359288097884,-0.28790365216525454,0.011113332519874968,-0.07708770910144366,-0.12212444804962708,-0.14352524805662642,-0.17080509330440102,0.004423098621415068,0.004815961472308222,0.10444847416042045,0.2239107271690884,-0.027753285468362993,0.07969639468690702,0.04524288328655239,0.0021943963504242763,-0.06423926059879775,0.0900287623329489,0.0431476641721594,0.08584386895608012,-0.07290804526783902,-0.03665881120712228,-0.09914710889624392,-0.15305511880808706,-0.14449167439036087,-0.04381319210399615,-0.14784157539349935,-0.03545592759278919,-0.04881842814378066,-0.08866713154688534,0.0010781584713731474,-0.09702159605223813,-0.024191740830760113,-0.00792303338992643,0.06458075966526598,0.1596208601424192,-0.06679560682461837,-0.032778355879292405,0.03972493890856987,-0.01039861642817099,-0.06079134338026836,0.0575257709995678,0.049458424139625264,0.06835177712638232,-0.05674587278389226,-0.12508122157244964,-0.20294693890518029,-0.09269514848465887,-0.09064953604568164,-0.22580645161290322,0.05328071761041426,-0.12056818824998422,0.08068386387110356,-0.20295533223182577,-0.2629224686988701,-0.19896176875092716,0.013137509556944912,-0.10391363022941971,-0.06126160487280605,-0.015910195811132927,-0.1605995717344753,-0.20264681555004135,-0.08351616312101917,-0.10584939238127285,-0.15759118732353045,-0.06341717297380775,-0.11335170969879936,-0.05715626264840335,-0.1416526053110868,-0.15734649122807018,-0.007963551854835015,0.07377202914057139,-0.10438972162740894,-0.1622983870967742,-0.08418375556052286,-0.1600844983352675,-0.09549410461889732,-0.02850268099479353,0.13659309233394434,0.03708663329294794,-0.17049451593755865,-0.13955342902711323,-0.14177945865551111,-0.22886381493749033,-0.07611446369476343,-0.061583577712609965,-0.1127910395526644,-0.14000666487551328,-0.14733256482612186,-0.13865361447432786,-0.18297874785266555,-0.12970639354546734,-0.13597786419422317,3.439154016039785,7.658333618341805,1.9827032282500943,17.199388385877814,34.398868356854614,35.83279692828317,35.97679692828318,35.97679692828318,35.97679692828318,30.088560219602126,18.578525727970906,5.9680383060029065,5.541996185628322,0.0,11.51003449163123,1756.8850781830454,1638.2645270812723,290.68145968374165,15.0,22.0,28.0,35.0,38.0,39.0,33.0,29.0,26.0,211.095691276,16.0,4.343805421853684,5.176149732573829,6.042632833682381,6.894670039433482,7.766840537085513,8.624970783589669,9.498897061838624,10.359423950612095,11.233780183540627,0.6666666666666669,1.0115714285714286,1.1499912746552046,0.6280582085469272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6288346663815229,0.9942577030812326,1.0268702528352929,0.6050060262859469,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,3.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,15.577057825802939,12.045763948569899,0.0,0.0,0.0,4.567099647791355,4.794537184071822,4.9839785209472085,0.0,0.0,18.90801031431363,6.196843571613076,12.71084835226122,131.47825850138076,-243.39337970281582,-31.325722127024424,-8.692620703671995,-27.043708855868424,268.58208142182934,497.2008396672626,25.950896765135226,17.757172845259376,26.168465245645397,0.4444444444444444,0.7124669784891936,0.2126594325924563,116.20207308445391,0.18967019078218975,39.85596270638622,0.28753302151080623,5.0,0.125,0.36002216729944236,0.7771272167751685,0.9108508867100673,0.9405672578067116,0.9405672578067116,0.9405672578067116,-0.5046000000000002,,1.1785714285714288,1.4141461144718472,1.1951513140078471,1.1752972727426438,-4.80142824756291,1.259715422276622,1.1662733799930696,-2.1549573189043634,53.13920000000002,9.843390348640755,0.0,9.551078168738563,0.0,25.173510804335194,12.340549441675103,22.74749122234998,0.0,0.0,3.4965075614664802,0.0,4.795790545596741,2.3978952727983707,6.285998094508865,4.59511985013459,7.8636512654486515,6.580639137284949,9.487441664883777,18.66666666666667,3.1171825396825397,3.611700207860922,0.0,0.0,0.0,0.0,0.20181030591248872,1.394861111111111,28.323999999999998,0.0,11.451388416477702,0.0,0.0,0.0,0.0,0.0,0.0,32.199755690345725,11.423410875365658,5.817862777835028,0.0,27.368453915840487,4.736862953800049,0.0,19.06954441658689,17.057747824146507,0.0,0.0,0.0,17.58562983931396,17.60737065868264,18.93428268052292,102.10554051917048,,75.79735548357058,73.16914480254464,74.46160355907722,75.83040105512505,125.00461872482518,74.83842875271716,75.9400396979157,109.28908372508644,18.93428268052292,102.1055405191705,,74.775926912142,71.94672859448633,73.44469514888797,74.81181008541475,128.83259166708459,73.7466753867441,74.92926943525508,111.07722625017982,4.703569135381134,76.3541823747417,,56.737724632685136,54.62721480795821,55.851091899605514,56.764700605595166,94.59245930089767,55.974152635854104,56.851711666378556,83.70403701600502,1.2622855120348613,6.807036034611365,,5.053157032238039,4.877942986836309,4.9641069039384815,5.05536007034167,8.333641248321678,4.989228583514477,5.062669313194379,7.2859389150057625,2.3833127616580487,51.05277025958523,,37.97724917035672,36.67884880890377,37.3104785338058,37.9935536790787,62.01558170976084,37.50319540451036,38.047771407624055,54.461134465637706,27.839215686274514,0.0,0.0,0.0,0.0,5.3743919280675225,8.896112265894011,28.7523670793882,1.4329028092718572,0.0,5.449471844293273,0.0,-0.5118490173847325,0.0,0.0,0.0,0.0,16.940168736006513,285.02978159844923,48.46112146447096,104.60593781761291,122.6059378176129,126.60593781761291,126.60593781761291,126.60593781761291,296.0,100.94117054420991,115.03055832476083,60.50304339212242,90.36999999999999,90.36999999999999,0.8,6.975764333346356,5.0,3.5684899149062805,3.810806924680532,,3.803474471486513,3.8026443989198384,3.8007472108222013,3.8034779364150784,3.8004093954815037,3.803104267945576,3.8035233197495346,3.8033354210981662,0.2378993276604187,0.2540537949787021,,0.2535649647657675,0.25350962659465587,0.25338314738814677,0.2535651957610052,0.2533606263654336,0.25354028452970506,0.25356822131663564,0.25355569473987777,1.6776076213894766,1.743306066076905,,1.7413800916929587,1.7411618272708238,1.7406627899373845,1.7413810026829006,1.7405739046904631,1.7412827539662592,1.7413929346736887,1.7413435322441686,150.59999999999988,70.48298046370012,67.40598676877897,,67.642170238617,67.71240282405053,67.77428574899605,67.64161832104108,67.66935301125147,67.67072405279659,67.63822033549589,67.39988546285633,4.698865364246674,4.493732451251931,,4.5094780159078,4.5141601882700355,4.5182857165997365,4.509441221402739,4.511290200750098,4.511381603519772,4.509214689033059,4.493325697523756,4.660836376919443,4.616198946544363,,4.619696716760092,4.620734473965444,4.621647964875888,4.619688557355602,4.620098497367498,4.620118758055609,4.619638320962957,4.6161084266608325,6.844332955404384,15.063088624338624,8.896112265894011,4.956419516880826,0.20181030591248872,1.5526114890400604,2.505811838624338,-0.020186996094733844,0.0,180.05899387137958,52.599236788574075,-97.37203821896745,-12.532179042477415,-3.477572793534552,-10.81911535766305,107.44903879090035,198.91033692739057,10.381924581172132,7.103940604549662,10.468965101441606,369.0,20.0,1.0312509703768813,0.3822827569941232,0.0,0.0,0.1642664266089148,0.03512485049439219,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.06804138174397717,0.21941609682128765,0.09520822007164471,0.3942085618180639,0.10186502014799104,10.836498814253964,8.166209056935372,7.2027086004072345,4.814403078698609,6.406768619040587,3.5149168888191227,5.262492673068359,2.4505402354085835,4.26241638910682,1.6707185130351485,2.883630878583077,0.9559913518390498,2.077048336454985,0.5320467683588547,1.1063757574818862,0.2535454691089331,2.225071141341365,0.7179010523811448,3.4545525754639064,0.9326771026769543,4.524982692926662,0.9828151859791284,50.63866384861938,23.59118948780711,20.547908215120476,20.031521094532586,20.031521094532586,20.031521094532586,76.0,88.0,29.404308999999976,17.925691,0.39285714285714285,46.06,5.305555555555555,3.3888888888888884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,28.0,0.0,0.0,29.0,6.0,1.0,3.0,26.0,7.0,16.0,22.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,6.0,2.0,2.0,15.0,6.0,0.0,3.0,3.0,0.0,2.0,2.0,0.0,0.0,0.0,1.0,1.0,3.044522437723423,4.8217925203120355,3.597312260588446,4.081765780015241,4.563045259687421,4.936719611146088,5.053854413216232,4.894569533079366,4.989581884898423,5.018520788370246 +71651,O=C(O)CCNC(=O)c1ccccc1,0,24.48,6.476596000000001,2.92,8.56,162.78526613536957,96.71671864,1.4367741581335602,6.520295999999999,7.363333333333332,7.9826019200000005,218.78306841393135,24.84,6.47216,3.48,7.2,147.57696716134203,94.02220199999994,1.7632903630399992,6.6035400000000015,3.837777777777778,7.892657920000002,262.53882948385206,20.95,6.369574999999999,3.05,5.6,152.82783890796745,77.399505925,1.5154984074924502,6.4695550000000015,4.335416666666667,7.832512100000002,216.18306363984743,15.461538461538462,6.214096153846152,2.480769230769231,3.4615384615384617,161.73355694561712,54.626507673076915,1.1924812202786537,6.277067307692306,3.5416666666666674,7.789799153846155,165.34892797930354,15.466666666666667,6.45928888888889,2.3333333333333335,3.6444444444444444,166.00236723187314,53.98830204444442,1.0979128083731555,6.489726666666666,4.209876543209878,8.033925866666666,153.92156086515195,15.416666666666666,6.38686111111111,2.3055555555555554,3.8333333333333335,164.13573357564422,53.79466972222222,1.1517930459748333,6.432625000000001,3.933641975308642,7.96880911111111,162.53051259160964,15.9375,6.205749999999999,2.21875,4.75,160.391426504306,57.01382228124999,1.1837418424982187,6.262490625000001,5.328125,7.778121625000001,160.89699101740214,13.413793103448276,5.896896551724137,2.103448275862069,3.310344827586207,161.40241722066176,47.310515275862066,1.0904439948152067,5.967017241379311,3.4195402298850572,7.520896965517239,145.51984277590816,14.0,6.345,1.8181818181818181,3.5454545454545454,166.46675103047247,48.55791113636363,0.9430827065042727,6.371477272727273,4.553030303030303,7.9861332727272725,134.18855516971334,7.833599999999999,0.17247935999999991,0.03247386783776204,0.4864,4.2336,1.4199483766189525,36.993498153599994,0.22318788075319357,0.15779423999999995,3.119733333333333,0.11390370559999997,47.85092308205029,-0.29280000000000017,-0.019764480000000004,-0.02233410294887796,0.04799999999999996,0.6271999999999999,0.012797326653119051,-1.2665700160000029,0.012052901494399975,-0.01725552000000001,-0.2822222222222222,-0.0126190592,1.7591979567335623,-0.3476000000000002,0.034952139999999986,0.005893352173982079,-0.09340000000000001,0.0464,-0.13951107788016892,-1.9272646145999996,-0.03770660952665862,0.028354359999999988,0.5536,0.026340010399999992,-8.747411510897345,-0.5320615384615386,-0.023716052307692297,-0.0029158846379930153,-0.03563076923076923,-0.7720615384615385,-0.15937829496999584,-2.4410294574461533,-0.011823056378620519,-0.02045354769230768,-0.4151179487179487,-0.016405302523076915,-2.0374357335074,-1.1616,-0.02047216,0.0075186815990346025,-0.01706666666666666,-1.0887111111111112,0.030793432450607578,-5.418891490488889,-0.0010529016801660413,-0.020980106666666658,-0.5876345679012346,-0.012878766933333325,-3.6829052329862755,-1.4836,-0.04993735999999999,-0.013826444848144619,-0.02751111111111109,-0.7380444444444443,0.08112695026849762,-6.816902146933334,0.003689618596479734,-0.04529057333333333,-0.7684987654320986,-0.03136819448888888,-1.732997928829073,0.8364,0.068068015,0.0070976745324686195,-0.027649999999999966,1.2764,-0.017907843805137304,3.586842452650002,-0.01722868789912735,0.058710885,1.4390166666666666,0.04965135939999998,-3.5608844537179434,1.5001931034482758,0.019304226206896546,0.0009558978456515515,-0.035365517241379284,0.8229517241379312,-0.22423891572930238,6.972421320882761,-0.029165952496163237,0.0219465875862069,0.25187586206896556,0.0065105564689655155,1.2604595951150093,0.04639999999999989,-0.030423360000000007,0.00011043253996429798,-0.0027636363636363345,-0.16450909090909088,-0.18879298725356958,0.32723082640000006,-0.019660989313173574,-0.023632240000000013,-0.5201878787878788,-0.02546285469090909,-0.009285531081854825,,,0.4571428571428572,1.2321428571428572,0.6428571428571429,0.0,0.5892857142857143,0.05357142857142857,0.540872831395516,0.015416875686816553,0.021559732829673692,0.7933995062090202,0.2715042719011202,0.20695124972442716,1.3342723376045362,0.4784555216255474,1.9542239070490375,1.4446735479386479,0.14161515339067268,0.36793520571971694,0.0,0.5095503591103896,7.72295572848,612.0,161.91490000000002,73.0,214.0,4069.631653384239,2417.917966,35.919353953339005,163.0074,184.08333333333331,199.56504800000002,5469.576710348284,621.0,161.804,87.0,180.0,3689.424179033551,2350.5550499999986,44.08225907599998,165.08850000000004,95.94444444444446,197.31644800000007,6563.4707370963015,838.0,254.783,122.0,224.0,6113.113556318698,3095.980237,60.61993629969801,258.78220000000005,173.41666666666669,313.3004840000001,8647.322545593897,804.0,323.1329999999999,129.0,180.0,8410.144961172091,2840.5783989999995,62.00902345448999,326.4074999999999,184.1666666666667,405.06955600000003,8598.144254923784,696.0,290.66800000000006,105.0,164.0,7470.106525434291,2429.473591999999,49.406076376792,292.0377,189.4444444444445,361.526664,6926.470238931837,555.0,229.92699999999996,83.0,138.0,5908.886408723192,1936.60811,41.464549655094,231.57450000000003,141.61111111111111,286.87712799999997,5851.098453297947,510.0,198.58399999999997,71.0,152.0,5132.525648137792,1824.4423129999998,37.879738959943,200.39970000000002,170.5,248.89989200000002,5148.703712556869,389.0,171.01,61.0,96.0,4680.670099399191,1372.004943,31.622875849640995,173.04350000000002,99.16666666666666,218.10601199999994,4220.075440501337,308.0,139.59,40.0,78.0,3662.2685226703943,1068.274045,20.747819543094,140.1725,100.16666666666666,175.694932,2952.1482137336934,195.83999999999997,4.311983999999998,0.8118466959440509,12.16,105.84,35.49870941547381,924.8374538399999,5.579697018829839,3.9448559999999984,77.99333333333333,2.8475926399999993,1196.2730770512574,-7.320000000000004,-0.4941120000000001,-0.558352573721949,1.199999999999999,15.679999999999998,0.3199331663279763,-31.66425040000007,0.30132253735999937,-0.43138800000000027,-7.055555555555555,-0.31547648,43.979948918339055,-13.904000000000007,1.3980855999999995,0.23573408695928316,-3.7360000000000007,1.8559999999999999,-5.580443115206757,-77.09058458399998,-1.5082643810663448,1.1341743999999996,22.144,1.0536004159999997,-349.8964604358938,-27.667200000000005,-1.2332347199999993,-0.1516260011756368,-1.8527999999999998,-40.1472,-8.287671338439784,-126.93353178719998,-0.6147989316882669,-1.0635844799999994,-21.586133333333333,-0.8530757311999996,-105.94665814238479,-52.272,-0.9212471999999999,0.3383406719565571,-0.7679999999999997,-48.992000000000004,1.385704460277341,-243.850117072,-0.04738057560747186,-0.9441047999999996,-26.443555555555555,-0.5795445119999997,-165.7307354843824,-53.4096,-1.7977449599999997,-0.4977520145332063,-0.9903999999999993,-26.569599999999994,2.920570209665914,-245.4084772896,0.13282626947327042,-1.6304606399999997,-27.66595555555555,-1.1292550015999998,-62.38792543784663,26.7648,2.17817648,0.22712558503899583,-0.8847999999999989,40.8448,-0.5730510017643937,114.77895848480006,-0.5513180127720751,1.87874832,46.04853333333333,1.5888435007999993,-113.94830251897419,43.5056,0.5598225599999999,0.027721037523894994,-1.0255999999999992,23.865600000000004,-6.502928556149769,202.20021830560006,-0.8458126223887339,0.6364510400000001,7.304400000000002,0.18880613759999995,36.55332825833527,1.0207999999999977,-0.6693139200000001,0.0024295158792145555,-0.060799999999999355,-3.6191999999999993,-4.153445719578531,7.199078180800001,-0.43254176488981866,-0.5199092800000003,-11.444133333333333,-0.5601828032,-0.20428168380080614,0.7420646469329472,0.5403339346249221,0.4784555216255474,0.3035461051373821,0.3353014406146033,0.16268616397272706,0.21641711829446625,0.0922444649239878,0.14668312328394004,0.051292284857863725,0.09681680675476141,0.028836405627906576,0.06913007851288162,0.01517910874342604,0.044881614405115025,0.0088951677832791,8.029022667228427,5.694399307447974,3.555055343874124,2.1938815653427244,0.4306608547550833,-0.35722843330532106,3.135808590482023,0.9727390779835682,6.023212656132549,1.895319677788653,14.540276082338703,10.954889829895746,16.01442177790473,11.705702663606186,1.9814464586933997,0.7415491753492236,3.5010923433093764,2.243749457085912,7.009368474995727,1.3770097613382648,3.7140087354116678,2.439742698555567,20.889489552824124,14.70068366483741,0.32663037993290933,0.6755978938651404,0.7803872933579913,0.8750267824456589,0.9137876833421974,0.9137876833421974,2.0976298949753898,321.3988126104432,0.0,2.0,1.0,0.0,5.0,1.0,1.0,0.0,0.0,3.0411166502418943,1.3287712379549452,0.8145811190640107,0.35019550008653955,0.16000000000000103,0.16000000000000103,33.76963012168039,652.8879392043982,63.056513938339876,26.115517568175925,55.32947086139778,,9.0,195.0,5.969305287951849,9.589074368143644,18.87275775819009,5.563451491696996,0.0,0.0,24.26546827384644,6.06636706846161,5.316788604006331,5.106527394840706,6.4,17.25,9.0,0.0,8.25,0.0,0.04285714285714283,0.75,0.19866666666666638,0.06425806451612903,-0.13440860215053735,0.0741071428571427,0.20199999999999974,0.0,0.6320000000000001,0.8928571428571425,0.43333333333333374,0.5677419354838711,0.8187499999999998,7.5722196395372245,0.21583625961543174,0.3018362596154317,11.107593086926283,3.801059806615683,2.89731749614198,18.679812726463506,6.698377302757663,0.5120000000000002,0.15625,0.0,0.234375,0.2,0.45762662989090724,-0.7498020662240436,-0.10053730302766951,-0.02999208264896174,-0.08331134069156039,0.5423733701090928,0.888656050609733,0.057706479523152575,0.03554624202438931,0.05554100316310831,-1.8274411608421983,0.7941176470588237,0.7688377322364833,1.636830692663532,1.026315789473684,0.5487528344671202,1.1924788321170487,0.7987454853745568,1.0472688902144354,0.7546678509938007,0.6822805367980169,0.7717663436579186,0.9481552304589382,0.8609068627450982,0.4910848463259604,0.6679663379774128,1.307565789473684,0.7653061224489796,1.2217955568616485,0.8751323888749225,1.2095427733393413,0.5137221738892369,0.4569835028634927,0.4489910466969039,1.16163470029813,1.0180995475113126,1.0349599556099396,0.9633047635328543,1.1196862348178136,1.1381475667189953,1.0763518953182654,1.0175730989435998,1.0070399412818651,1.0322166775786374,1.01586591884908,1.0265276621113248,1.0080750527667819,1.16421568627451,1.2618104952770388,0.8472940350459144,1.0526315789473684,1.3403880070546736,0.9280972681541706,1.1577949142169803,0.8939853798321067,1.265851022191938,1.3477885099391214,1.2549828756405268,0.9808162412764495,1.1812363834422661,1.370258640415487,1.4118233198691672,0.9868421052631579,1.2156714537666917,0.8987971347943942,1.173045478239272,0.9010019477212252,1.360286239430117,1.3740490640225662,1.3594772226034877,0.958835372184648,0.8482689950980394,0.49631155866997656,0.5302153063459867,0.863486842105263,0.6235827664399093,0.9352162481095049,0.8597875039537123,1.0620695782576366,0.5268633379773557,0.4706598854602958,0.45712296826276383,1.0672502470112368,0.7712136578769441,0.6496729371780666,0.6738289928236357,0.9187840290381124,0.6998201579482367,1.0239044633049885,0.7790246925143371,1.1204960165559104,0.6478275016620509,0.671439645593051,0.6844681073580757,1.0109919488424524,1.0778743315508024,1.4408048064944754,1.1631376203629569,0.8074162679425837,1.1389404246547103,0.9297014066130003,1.0675088444322078,0.9904535569988364,1.4070752115943121,1.4634117912175868,1.5276528776633904,0.9335701957162383,2.5,0.0,1.333333333333334,0.6875,0.27111111111111114,0.2638888888888889,0.1420408163265306,0.10590277777777778,0.05366591080876794,0.03125,2154.2387551454513,2430.067467479482,1272.3102035902389,1153.5777681427037,12.026065771950133,0.48362611862597765,6.209946260321169,0.9365812952024104,1.0,0.2,1.60273953953283,3.315084951819779,3.8292750707107137,4.293660689688185,4.483856189774723,4.483856189774723,0.17857142857142855,0.0,0.07843137254901963,0.04583333333333333,0.022592592592592595,0.026388888888888885,0.015782312925170065,0.015128968253968252,0.010733182161753587,0.015625,0.40908707927615495,12.071428571428571,6.477508650519031,4.888888888888889,81.558311712975,1.0,3.5140181337549854,52.028290814444134,,42.32164329038777,41.614070563557064,41.53964848451117,42.32928056078471,56.53889051818676,42.04474625225416,42.36191896262888,51.0644268192262,-0.037377450980392184,-0.11459040664343846,-0.6877561693746529,0.09868421052631571,0.1481481481481481,0.009012529514341108,-0.03423763848287885,0.05400338698375992,-0.10935456199161654,-0.09046357238510415,-0.11078708224221287,0.036764138357729355,-0.0443729575163399,0.20264534840574547,0.1814798349067933,-0.1920230263157895,0.010959939531368102,-0.09825080980222645,-0.052097387670607447,-0.16894559596788986,0.1796919836871105,0.17745106419352083,0.23124805519935604,-0.18280549146143119,-0.06792043740573155,-0.1375008134752605,-0.08979172584432019,-0.07325404858299595,-0.18236525379382523,-0.11224231640694744,-0.06598536443649643,-0.05297355904236903,-0.12962163696411028,-0.13306199740937752,-0.14402782101477934,-0.042578817758934254,-0.14828431372549022,-0.11869339032797901,0.23153021489763995,-0.035087719298245605,-0.2571596539850508,0.02168630420489652,-0.14648226745114,-0.004717557586965776,-0.13295863440051212,-0.1883605119779152,-0.11306714619592963,-0.07696623169988118,-0.18938929738562096,-0.28952658451422836,-0.42577142079966906,-0.05656067251461984,-0.17433022591752745,0.05713373218656687,-0.18427298004176315,0.01653144688693828,-0.2870229821654665,-0.24633476112234978,-0.2753922212069709,-0.03621660392752487,0.10677083333333334,0.394644408467193,0.21856572700019222,-0.05684621710526309,0.3014928193499622,-0.012611616098169553,0.09695872603767132,-0.07719365335154214,0.3720724216549351,0.4612627147619455,0.43590644517187677,-0.07441621236046109,0.19150749380211857,0.11192194942569682,0.02943590983455293,-0.07270871143375675,0.19438580029713035,-0.15792047050558203,0.1884769397025581,-0.1306789257451467,0.13908357862876938,0.08073634351300289,0.05715842548467113,0.02634138515893812,0.005923202614379072,-0.17638840960448846,0.0034006586624055354,-0.005681818181818121,-0.038857967429396,-0.13295764153278986,0.008845630792776374,-0.08809165285688231,-0.14976617650935814,-0.16674113560599585,-0.22354720205792053,-0.00019405124256292533,7.543218881495298,7.373470098453298,1.1052094495921163,15.350955886614862,28.23977576960654,32.97427328760555,35.53509507898703,35.726812143074255,35.726812143074255,27.359134698686525,20.22542967114107,1.9826121474694174,5.151092880076037,0.0,7.133705027545455,2295.2044646204927,2118.31337412415,184.10528045193314,6.0,17.0,18.0,19.0,20.0,16.0,14.0,10.0,8.0,193.073893212,14.0,4.143134726391533,4.890349128221754,5.680172609017068,6.450470422144176,7.246368080102461,8.026496938945412,8.825118970345061,9.61106090905359,10.411057883581446,0.68,1.00432,1.12811958118345,0.6434168678711181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6596580359281439,0.9891764705882353,1.0215294974508378,0.6352965520048851,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.423315998847038,0.0,0.0,0.0,5.907179729351506,9.589074368143644,0.0,0.0,0.0,18.19910120538483,12.13273413692322,12.10820789760957,6.4208216229260096,182.35370452550893,-298.7789073145283,-40.0618068368741,-11.95115629258113,-33.19765636828092,216.12333464718932,354.10903188986987,22.994707101465778,14.164361275594793,22.131814493116867,0.4444444444444444,0.6301639836112681,0.29367952631185057,119.04388648622341,0.1859266857598635,45.105451224275654,0.3698360163887319,5.0,0.2857142857142857,0.34513117418706707,0.7138646883853214,0.8245895036849695,0.9245895036849693,0.9655458753541283,0.9655458753541283,0.8911,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,51.02800000000002,14.69560176298435,0.0,5.316788604006331,0.0,6.4208216229260096,6.544756405912575,35.89528683400505,0.0,0.0,3.367295829986474,0.0,4.574710978503383,0.0,5.963579343618446,0.0,7.4318919168078,0.0,8.942330199321866,17.0,8.67901578378265,0.0,0.0,0.0,0.0,0.0,0.5397118291761154,0.0,25.108,0.0,21.488125157470392,0.0,0.0,0.0,0.0,0.0,-1.161841038884689,28.202989529586247,5.316788604006331,0.0,0.0,23.527768818056636,4.794537184071822,0.0,16.778810298694825,30.33183534230805,0.0,0.0,0.0,16.085421696777953,16.491450898203595,17.13934646921043,104.05658162888825,,84.51573556036738,83.07916818288757,82.97291809143769,84.5313758478868,114.69138015545892,83.95558579004775,84.59730258329077,102.77869995091706,17.13934646921043,104.0565816288883,,83.75042943791841,82.18533051752831,82.33464482592981,83.76826420579114,116.84284564757279,83.15214550328434,83.83809053148886,103.64516170086992,4.455116822253525,80.26435764941635,,67.19433642565659,65.96886481632072,65.56763861432344,67.20675156223194,90.59303267625984,66.70208702153437,67.26541140132814,81.96858955315113,1.2242390335150308,7.432612973492018,,6.036838254311955,5.934226298777683,5.926637006531264,6.0379554177062005,8.192241439675637,5.996827556431982,6.042664470235055,7.34133571077979,2.227558411126763,52.028290814444134,,42.32164329038777,41.614070563557064,41.53964848451117,42.32928056078471,56.53889051818676,42.04474625225416,42.36191896262888,51.0644268192262,24.729411764705883,0.0,0.0,0.0,0.0,0.0,8.345635235575712,25.538237436270943,0.0988437736205594,2.5105092592592593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.882413800122128,251.1058783826909,40.06848848832075,82.87712379549448,95.73187676776784,107.34151724220462,112.09640474436809,112.09640474436809,156.0,93.2842296678025,147.3711607900074,44.279808268237964,66.4,66.4,0.8,6.28553243675889,4.807354922057604,3.255139484605225,3.687413546776725,,3.6913604612043063,3.691023748782577,3.6889230426284283,3.691358026871857,3.6841796528386146,3.691142270974005,3.691387805237013,3.6904332477599686,0.2325099631860875,0.2633866819126232,,0.26366860437173617,0.2636445534844698,0.26349450304488775,0.26366843049084693,0.26315568948847246,0.26365301935528607,0.26367055751692947,0.26360237483999777,1.5167073637768866,1.6413975130704093,,1.6424673153979346,1.6423760948891166,1.6418067937084275,1.6424666559301644,1.640520119525215,1.6424082052998337,1.6424747229463759,1.6422160990985444,146.9899999999999,83.23144270853987,56.396344810028424,,55.77502975220831,55.78360987957153,55.93716914431546,55.775385476101825,56.327772089604,55.78504090228663,55.77389097148115,55.94047177419712,5.945103050609991,4.028310343573459,,3.983930696586308,3.9845435628265378,3.995512081736819,3.9839561054358446,4.023412292114571,3.9846457787347593,3.9838493551057965,3.995747983871223,4.758097430225619,4.368876584692246,,4.3577985103723575,4.357952333104661,4.3607013179003005,4.357804888186242,4.367659937700119,4.357977985879077,4.357778092770469,4.360760357934672,0.0,21.488125157470392,10.856144494834972,0.5397118291761154,-1.161841038884689,8.67901578378265,-0.056970663265305976,0.15581443688586538,0.0,182.44499895205547,72.66376426149787,-119.05653435394727,-15.96371017226615,-4.76226137415789,-13.228503817105251,86.12018648634223,141.10431857178594,9.162862802435502,5.6441727428714366,8.819019910736621,352.0,15.0,0.8106172175260454,0.1989140920781065,0.0,0.0,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.032075014954979206,0.05892556509887896,0.016037507477489603,10.38890505706126,7.5646750847489095,6.698377302757663,4.249645471923349,5.700124490448256,2.76566478753636,3.8955081293003926,1.6604003686317805,2.7869793423948606,0.9745534122994107,1.9363361350952282,0.5767281125581315,1.106081256206106,0.24286573989481663,0.6283426016716104,0.1245323489659074,1.3088951918547531,0.3125659057855873,1.5290820566162366,0.3242169973031896,1.7751481629305241,0.32369094178533275,47.56878275921304,31.340150185355483,24.026741013295155,19.913889229931147,19.36995024464483,19.36995024464483,62.0,66.0,27.540722999999986,13.341276999999996,0.24,14.04,5.333333333333333,3.2777777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,25.0,0.0,0.0,25.0,6.0,2.0,5.0,20.0,8.0,14.0,17.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,2.0,2.0,0.0,14.0,4.0,0.0,1.0,3.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,1.0,2.995732273553991,3.840795496139778,3.417726683613366,3.755369195382769,4.121067632362855,4.504659004391702,4.245813076829419,4.342993403944672,3.840795496139778,3.840795496139778 +9887755,N#C[C@@H]1C[C@H](F)CN1C(=O)[C@@H](N)C(c1ccc(F)cc1)c1ccc(F)cc1,0,26.488888888888887,6.734993333333331,3.511111111111111,10.088888888888889,168.76084915531072,107.35434872109583,1.5329996286062662,6.7611022222222195,8.416666666666666,8.082206577777777,233.49579440931535,26.595744680851062,6.476234042553192,4.319148936170213,8.127659574468085,147.68772276817015,102.66293141501282,1.8803524161702136,6.6205319148936175,3.704491725768321,7.831694297872336,281.04932174825063,23.121951219512194,6.454585365853659,3.902439024390244,6.378048780487805,153.73086835163463,87.70906466386339,1.6409655347017928,6.5684219512195146,3.629403794037939,7.848510780487802,240.67400304785193,18.75862068965517,6.464963793103444,3.1724137931034484,5.051724137931035,163.3925036770076,68.79480701899308,1.3709350267848015,6.532676724137931,3.90397509578544,7.916123758620687,195.55579795706979,18.058823529411764,6.359453781512605,2.966386554621849,4.907563025210084,162.0148567379188,65.90974718041008,1.3356552322137236,6.432130252100841,3.8543417366946793,7.851668605042014,190.2595463495558,18.688524590163933,6.328049180327869,2.9098360655737703,5.10655737704918,160.4856591391991,68.70804108954754,1.3643453747601229,6.405233606557381,4.500455373406195,7.799785901639345,192.31315290768802,15.992700729927007,6.207408029197083,2.678832116788321,4.189781021897811,164.95048740569032,57.758357759672975,1.2377945172465106,6.270757664233577,3.6009732360097324,7.726268613138688,170.90727656355426,16.983739837398375,6.345951219512197,2.6260162601626016,4.7317073170731705,166.20528186397345,62.360582374426016,1.2409900828473572,6.402360975609756,4.094850948509485,7.838421138211383,175.3121054548149,17.695238095238096,6.537371428571428,2.466666666666667,5.2,167.28144666114656,65.1589854849981,1.2176648663388947,6.581821904761903,5.164021164021164,7.981080266666665,172.1825973333409,7.903209876543213,0.24835032098765417,0.015657441346771654,0.6587654320987656,4.747654320987655,2.9427334894874133,38.50889975244357,0.23971139701363645,0.21887506172839508,3.8497393689986286,0.1408320869135802,47.7075378078084,0.05234567901234625,-0.009457649592855267,-0.007424694925944594,0.128468610454426,0.6840241660099818,-0.013502146630501161,0.28316978804251425,0.010566550516944119,-0.007619648016811143,-0.11000992324081357,-0.005461847670081433,2.289329414135074,-0.4045648900933452,-0.0056638711231556714,-0.0011530581555604475,-0.08315567600120442,-0.42814212586570294,-0.28933763080285496,-1.9557698571232747,-0.02492375050731375,-0.00482433002107799,-0.030392786643915683,-0.0027794592713038307,-4.463154485485074,-0.9353937845891866,-0.01820530183056619,0.0030513311259410267,-0.07562366964665818,-0.7442060451255855,0.18958574152282934,-4.7011720208694605,-0.0035790489275972733,-0.018492858663260944,-0.32595265124639305,-0.008383494576415495,-3.269892956867126,-0.5977010063284572,-0.030031721547878382,-0.0030114265454794886,-0.05689801846664592,-0.4910716879344329,-0.17194829492503078,-2.884696013089969,-0.0036612254007855564,-0.026246695715323152,-0.4800589042201241,-0.01803335899574645,-1.1150416861665366,-0.21832827362882007,0.015949241853875744,0.0010407527449710794,-0.010495851042299114,0.18039668083383928,-0.18464493907228113,-0.9940695771046083,-0.02816367877656276,0.013491368144100395,0.40537599226427373,0.009773762266747612,-5.368850555168565,0.15242678201315654,-0.003956160403712685,-0.0003085379196785326,0.008387852572767421,0.06726863116157507,-0.01731058897003599,0.8511649608997043,0.0019157144695245193,-0.0024153374785978073,-0.10466862915903177,-0.003728317894926565,1.3826139247437181,0.30943691659138794,-0.00558934537789821,-0.0017444113312148756,-0.041421258657031,0.03933754893104477,-0.025864226386573177,1.6148402447467978,0.008700933642073479,-0.003590003011141219,-0.14119274649536617,-0.00505647426678712,2.827627808738223,-0.2608818342151676,0.02226794356261023,0.003780017974200517,-0.021093474426807757,0.24028218694885353,-0.23519189147082656,-1.419301172049376,-0.03429149184388543,0.017995731922398592,0.32120125416421685,0.015479539753086417,-7.353843202104204,,,0.4589065255731923,1.2685185185185186,0.6481481481481481,0.037037037037037035,0.6203703703703703,0.027777777777777776,0.8202017146997819,0.019004728118822152,0.02856028367437771,1.0772228851675554,0.2525255060573623,0.22529249035615245,1.8974245998673371,0.47781799641351475,2.01334014972228,1.5398134957946665,0.21186713353263967,0.06584940026837768,0.19581012012659635,0.47352665392761367,8.29200437457779,1192.0,303.0746999999999,158.0,454.0,7594.238211988983,4830.945692449312,68.98498328728198,304.2495999999999,378.75,363.69929599999995,10507.310748419191,1250.0,304.38300000000004,203.0,382.0,6941.322970103996,4825.157776505603,88.37656356000004,311.165,174.1111111111111,368.0896319999998,13209.318122167779,1896.0,529.2760000000001,320.0,523.0,12605.93120483404,7192.143302436798,134.559173845547,538.6106000000002,297.611111111111,643.5778839999997,19735.268249923858,2176.0,749.9357999999995,368.0,586.0,18953.53042653288,7980.197614203198,159.02846310703697,757.7905000000001,452.86111111111103,918.2703559999997,22684.472563020096,2149.0,756.775,353.0,584.0,19279.767951812337,7843.259914468799,158.9429726334331,765.4235000000001,458.66666666666686,934.3485639999997,22640.886015597138,2280.0,772.022,355.0,623.0,19579.25041498229,8382.3810129248,166.45013572073498,781.4385000000005,549.0555555555559,951.5738800000001,23462.20465473794,2191.0,850.4149000000003,367.0,574.0,22598.216774579574,7912.895013075197,169.57784886277196,859.0938000000001,493.3333333333333,1058.4988000000003,23414.296889206933,2089.0,780.5520000000002,323.0,582.0,20443.249669268735,7670.3516320544,152.64178019022495,787.4904,503.66666666666674,964.1258000000001,21563.388970942233,1858.0,686.424,259.0,546.0,17564.55189942039,6841.6934759248,127.85481096558395,691.0912999999998,542.2222222222222,838.0134279999999,18079.172720000795,355.64444444444456,11.175764444444438,0.7045848606047244,29.64444444444445,213.64444444444447,132.4230070269336,1732.9004888599607,10.78701286561364,9.849377777777779,173.2382716049383,6.33744391111111,2146.839201351378,2.460246913580274,-0.44450953086419753,-0.3489606615193959,6.0380246913580224,32.14913580246915,-0.6346008916335546,13.30898003799817,0.49662787429637356,-0.35812345679012375,-5.170466392318238,-0.25670684049382736,107.59848246434848,-33.174320987654305,-0.46443743209876504,-0.09455076875595671,-6.818765432098763,-35.10765432098764,-23.725685725834108,-160.37312828410853,-2.0437475415997275,-0.39559506172839515,-2.492208504801086,-0.22791566024691412,-365.978667809776,-108.50567901234565,-2.111815012345678,0.3539544106091591,-8.772345679012348,-86.32790123456792,21.991946016648203,-545.3359544208574,-0.4151696756012837,-2.1451716049382696,-37.8105075445816,-0.9724853708641974,-379.30758299658663,-71.12641975308641,-3.5737748641975275,-0.3583597589120591,-6.770864197530864,-58.43753086419751,-20.461847096078664,-343.27882555770634,-0.4356858226934812,-3.123356790123455,-57.12700960219477,-2.1459697204938277,-132.68996065381785,-26.63604938271605,1.9458075061728408,0.12697183488647168,-1.280493827160492,22.008395061728393,-22.526682566818298,-121.27648840676221,-3.4359688107406567,1.6459469135802482,49.45587105624139,1.1923989965432087,-654.9997677305648,20.882469135802445,-0.5419939753086378,-0.042269694995958965,1.1491358024691367,9.215802469135784,-2.371550688894931,116.60959964325949,0.26245288232485914,-0.3309012345678996,-14.339602194787354,-0.5107795516049394,189.41810768988938,38.06074074074072,-0.6874894814814798,-0.2145625937394297,-5.094814814814813,4.838518518518507,-3.1812998455485006,198.62535010385614,1.0702148379750378,-0.44157037037036995,-17.36670781893004,-0.6219463348148158,347.79822047480144,-27.392592592592596,2.338134074074074,0.39690188729105425,-2.2148148148148143,25.22962962962962,-24.69514860443679,-149.02662306518448,-3.6006066436079696,1.8895518518518524,33.72613168724277,1.6253516740740737,-772.1535362209414,0.7241361957388253,0.5317161467529516,0.44486503114361714,0.29347562918173975,0.2864450339815163,0.16036676717322534,0.18205613811734747,0.08860469287760132,0.11262480722335567,0.04902955523984039,0.07596295309147504,0.02574178238665501,0.045955614972337785,0.013827940336963784,0.028115341984180003,0.00763560786964189,9.006243505796625,5.685574826214069,4.1100626097521475,2.185212479728153,0.40007526499477175,-0.4061229617909303,3.211434753159483,0.9113256750089922,7.005942837999522,1.9745059838059766,17.426855018205963,10.946128914699095,19.002213985004516,11.696842262939013,1.9981187148235104,0.5450368903072398,3.9910592467958406,2.2351244527955303,8.003969633943221,1.1959116597700161,4.012400862072244,2.4310267415996263,20.90583692319317,13.303154012464638,0.2913026419027317,0.6395468106219971,0.7773031576572755,0.8385282007840658,0.8385282007840658,0.8385282007840658,1.738746011986582,802.7708124033367,1.0,1.0,1.0,0.0,10.0,4.0,2.0,1.0,0.0,3.8001552650674624,1.7777777777777772,0.9777777777777779,0.6222222222222236,0.6222222222222236,0.6222222222222236,-4.458784282155136,1249.6360279201024,69.19405695414426,27.769689509335613,59.180834376258005,,11.0,493.0,41.7148845114109,23.227673881834768,12.965578028838586,11.126902983393991,4.899909730850478,48.53093654769288,0.0,6.069221312792274,0.0,5.733667477162185,12.39047619047619,34.25,17.5,1.0,16.75,0.0,0.04109347442680775,0.75,0.21772967772967766,0.0753661932609303,-0.14236348446874736,0.041148208964300825,0.2021982690794647,0.0,0.657989417989418,0.8966490299823628,0.44025974025974035,0.5826232247284877,0.855500821018062,22.14544629689411,0.5131276592081981,0.7711276592081981,29.085017899523994,6.818188663548781,6.082897239616116,51.230464196418104,12.901085903164898,0.5118017309205353,0.16064565718677937,0.0,0.3954650269023828,0.3,0.5038750581410318,-1.0944556212273797,-0.08530256042499777,-0.024321236027275105,-0.06437974242513998,0.49612494185896805,1.0776217688804026,0.03496833708591831,0.023947150419564505,0.03848649174572867,-4.242170987269121,0.6686094433838345,0.5553099116224217,1.436254945721206,0.9789785958084785,0.46010029699595884,0.9271654984005113,0.6637573458692673,0.979491159369784,0.546458539532132,0.5495512556819896,0.5650157421022903,0.8983441351491163,0.8290686474722779,0.6824322825465136,1.0784774487786788,1.3575529308516472,0.8376123234916559,1.0288504604030837,0.8260470743987274,1.1073898758162377,0.6792319622683163,0.6248971232398839,0.6811962188256131,1.05190371294927,1.049479009557955,0.975903001819907,0.8791077582072925,1.2347490048079406,1.0910005523554012,0.8978177090612478,1.0520207459861644,0.9963115598582641,0.9865715110618649,0.9619638017411551,0.9644959577103536,1.0396240371038172,1.00638705869751,0.9041810370956337,1.2219444832470039,1.1474934801506809,1.0115762552160452,0.8518658202957108,0.9960084717118023,0.9714249802637965,0.9130590854009496,0.9903298135029043,0.9373249084222623,1.0022933538741818,0.9091323480605255,0.5523803013060391,1.06220668697118,0.9915329220635583,0.7377049180327868,0.7694912333762313,0.8940883463498422,1.0417912685589923,0.5710584585854209,0.5936447210843647,0.5569786029268131,1.0825941617079928,0.9445996165192274,0.7346554061010812,1.077214081636011,0.9208899200035018,0.8741585795653843,0.7424902501769931,0.9330970965647379,0.9296255752643247,0.7493303762656118,0.7337872357159714,0.7389076443918869,0.980333587524024,0.9605830249754631,0.9569003298242333,1.0018592252794627,0.9653709730500601,0.9878885974214432,0.9230015574468602,0.9571096839230467,0.9455138602575321,0.9578808219324323,0.964089297114688,0.9677034763673066,0.949205981659092,1.0592708965615734,1.0840385962163366,0.4526734715850483,0.7774684086528163,0.9924812030075186,1.2210729781481124,1.0730402779251556,1.1717217412806862,1.0827257801153498,1.0397949221235496,1.0553060671350776,1.1537027917667226,6.0,0.1554984185287216,3.555555555555557,2.5694444444444446,2.054444444444445,1.052222222222222,0.8914285714285715,0.635487528344671,0.3300894431846812,0.25561728395061734,5551.633390048421,6141.6644092645865,2560.896553796848,2371.279974941336,11.659899646934676,0.4824671227385073,6.034381412858366,0.9322443924557321,1.0,0.3157894736842105,1.6916978312622124,3.7140753185518975,4.514075318551897,4.869630874107451,4.869630874107451,4.869630874107451,0.2068965517241379,0.014136219866247416,0.08672086720867213,0.05975452196382429,0.04777777777777779,0.023382716049382715,0.021224489795918365,0.01588718820861678,0.010002710399535793,0.012780864197530868,0.4985639071916441,21.702734839476815,9.666864961332541,5.135802469135802,154.55263544471188,1.0,4.218112535702512,135.7954996707037,,112.80926678518642,111.30384321784618,110.64928427675643,112.57919244644802,148.15156483313402,112.15841283179603,113.01439575178016,131.3970544892384,0.0066233441639590804,-0.038081889949823824,-0.4741959277705015,0.19501419503014442,0.14407623633973507,-0.004588300870172604,0.007353359609411998,0.04408030093096917,-0.03481277381096282,-0.028575940523846086,-0.038782693559266966,0.047986744219702206,-0.051189946415835026,-0.02280597464352474,-0.07364282132841533,-0.12622956814275782,-0.09017971758664951,-0.09832274374709139,-0.05078747691302637,-0.10397399046444135,-0.022041478745826987,-0.007894764743988703,-0.01973598014640946,-0.09355239634174915,-0.11835618681536506,-0.07330492571205978,0.19488057201441591,-0.11479605025073672,-0.15675236544407223,0.06442504637273583,-0.12208014383924716,-0.014930658167219609,-0.08449047834517105,-0.0846687580648292,-0.05952829898459091,-0.06854038391249642,-0.07562762670676865,-0.12092483483994088,-0.1923319703893001,-0.08637068020611542,-0.10343459206024823,-0.05843148743822601,-0.0749098528297195,-0.015273472377190647,-0.11991633723851564,-0.12469906614613087,-0.12804865276769198,-0.023372442540600686,-0.027625265814693857,0.0642207418554881,0.06647016724642997,-0.015932607466758397,0.03799701255341424,-0.06274606237088903,-0.025814021784445553,-0.11748994468944927,0.0616395857872653,0.10529959392282645,0.06940010959821362,-0.11253673532256432,0.019286692925308793,-0.015929757561736153,-0.01970551336231886,0.012732684752514262,0.014168814031848293,-0.005882486141499439,0.022103071403531693,0.007991753806413886,-0.011035233797421065,-0.027188497486846114,-0.026473497458106968,0.028981037133243598,0.039153321425741086,-0.02250589149903319,-0.11141100851542063,-0.06287709803634765,0.00828568094293381,-0.00878918409668094,0.041934208848548794,0.03629753841690935,-0.01640206509956854,-0.03667592347481237,-0.03590427705505749,0.05927004282068439,-0.033009604741671715,0.08966343781660423,0.24141990319381937,-0.032019704433497526,0.050610716514606656,-0.0799229329842554,-0.03685644568329467,-0.1430532393165048,0.08221919747408105,0.08343454540086588,0.10991486451937076,-0.15414426189273142,12.296022288914617,27.42872914259731,10.211087911491322,17.327319493610325,36.12962500891958,40.848202786697364,41.20660278669736,41.20660278669736,41.20660278669736,54.36018404250156,41.574964386455996,5.720412605381271,1.7779338072461974,5.286873243418102,12.78521965604557,5166.002323118097,4074.6559726900005,2192.026376191379,90.0,41.0,54.0,70.0,85.0,84.0,93.0,98.0,92.0,373.1401968560005,29.0,4.948759890378168,5.802118375377063,6.688354713946762,7.563719668414366,8.454253391642363,9.338645632129106,10.231171283124262,11.120223559562419,12.013937088589598,0.7185185185185184,1.0187555555555559,1.1435786178974903,0.6908097384804668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6809750365934799,1.0030501089324617,1.0262361414582832,0.6623289775425741,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,1.0,0.0,2.0,0.0,0.0,0.0,4.0,1.0,0.0,1.0,1.0,10.633577208012664,23.847957906750043,0.0,5.907179729351506,0.0,4.794537184071822,13.171245143024459,5.261891554738487,0.0,24.26546827384644,35.392371257240434,12.338727669087403,18.65581854785281,289.88857813769005,-629.6604262233698,-49.076130190563426,-13.992453916074885,-37.038848601374696,285.4297938555349,619.9756016967326,20.117926763580837,13.777235593260727,22.14198577488331,0.45454545454545453,0.7138382880455373,0.14836018610708251,0.0,0.11101826049717506,25.10903346958335,0.2861617119544627,6.0,0.13793103448275862,0.3080377063240841,0.6762881769423321,0.8219584973182826,0.886700861929816,0.886700861929816,0.886700861929816,2.8865800000000013,,1.6785714285714288,2.013449250360349,1.9099925228008692,1.7801330332976701,-8.63145372247527,1.8201630090476868,1.6097837795551935,-2.9969473586904343,93.24540000000003,17.96578232709628,5.261891554738487,4.899909730850478,5.733667477162185,30.59408472289362,6.544756405912575,71.29228121317867,0.0,6.069221312792274,4.07753744390572,0.0,5.407171771460119,2.3978952727983707,6.926577033222725,4.727387818712341,8.529714471969909,6.803505257608338,10.178426272278042,32.33333333333333,10.979352586713699,0.0,0.0,0.0,0.0,0.0,0.23930339001226542,0.0,45.844000000000015,0.0,12.91712931468884,0.0,0.0,0.0,0.0,0.0,-0.5691203703703696,51.461037805387065,5.733667477162185,13.171245143024459,0.0,35.60720291992077,4.794537184071822,22.96555454962255,23.465630652481394,48.53093654769288,0.0,0.0,0.0,31.086438231621006,30.643876646706595,34.55101418667506,271.5909993414074,,225.4941949460342,222.45854204677676,221.157087625898,225.02652318672583,299.67585092726586,224.181998774033,225.9095482606303,263.90408948169556,34.55101418667506,271.5909993414074,,223.93996214180146,220.59423718533205,219.38857603071193,223.3782518595984,304.93458338874314,222.49666265454437,224.41900772400504,265.7910563371672,4.869285323823123,187.05971705224508,,159.51138671840238,157.28238928903608,156.01523540206674,159.27142576437095,207.79347406547478,158.54918669648836,159.7681520382042,186.56498801124346,1.2796671920990763,10.058925901533607,,8.351636849853119,8.239205260991731,8.191003245403628,8.334315673582438,11.099105589898736,8.30303699163085,8.36702030594927,9.774225536359095,2.449177257260429,135.7954996707037,,112.80926678518642,111.30384321784618,110.64928427675643,112.57919244644802,148.15156483313402,112.15841283179603,113.01439575178016,131.3970544892384,45.13725490196077,0.0,0.0,0.0,40.3355656701003,6.233252078609221,0.0,46.18062636562274,-0.2390488336952976,0.0,0.0,0.0,-3.985829227824179,1.1481944444444445,0.0,9.18391433402256,1.923953279965185,29.804803989415834,410.6842817447893,76.12640240679956,167.13338933483539,203.13338933483536,219.1333893348353,219.1333893348353,219.1333893348353,763.0,132.1611836031641,164.63409024843568,76.04821534195557,70.12,70.12,0.8333333333333334,8.113159870311689,5.857980995127572,4.5707890165266205,5.109375341050563,,5.123322387422449,5.124330807194179,5.123663521326849,5.1241139747884725,5.069981934496781,5.1238164770763275,5.122878668750408,5.105646607520814,0.16928848209357852,0.18923612374261345,,0.18975268101564624,0.18979002989608068,0.18976531560469811,0.18978199906623971,0.18777710868506595,0.18977098063245657,0.18973624699075586,0.1890980225007709,2.5129376143326083,2.62432892729782,,2.6270549054081154,2.6272517153031876,2.627121487700228,2.6272094001206696,2.616589027391402,2.627151340063836,2.6269682940543295,2.6235988782163533,262.4700000000003,193.6964434937226,164.28742093104992,,162.07249068361153,161.91411373370354,162.03288074026918,161.97778398253888,167.80895100937215,162.00112137415647,162.12709128511366,164.3686084599792,7.173942351619355,6.08471929374259,,6.00268484013376,5.9968190271742055,6.001217805195155,5.999177184538477,6.21514633368045,6.000041532376166,6.004707084633839,6.087726239258489,6.259543982354942,6.094869233534264,,6.081295481511948,6.080317805519398,6.081051055180071,6.080710962928425,6.116077908942331,6.080855030281405,6.081632314777968,6.095363291292652,40.3355656701003,14.065323759133284,9.18391433402256,7.35984693877551,-2.1539080612349006,10.891924431388716,-1.3258373711692617,-0.19016303434954152,0.0,331.86184165806,166.77822483360663,-362.25521132338923,-28.23439932496251,-8.050115807186428,-21.30913007784643,164.21300431932818,356.6833538436843,11.574212873502258,7.926296752081875,12.738691208703012,1767.0,43.0,1.9981194578432548,0.8423843842204132,0.0,0.0,0.43298105400799647,0.15097146135893952,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.07453559924999299,0.386488648831137,0.15826296329649908,0.5814443111515682,0.15327650583523644,19.551677284948283,14.356335962329695,12.901085903164898,8.510793246270453,11.744246393242166,6.575037454102239,9.831031458336764,4.784653415390472,7.883736505634897,3.4320688667888275,6.4568510127753775,2.188051502865676,3.8602716576763743,1.1615469883049578,2.61472680452874,0.7101115318766957,4.534839514639334,1.7327451782357257,7.190908011141135,2.4571965650962695,11.372714884235434,3.0842522679069133,85.39226170540708,47.63136053515905,33.69291491844595,31.746049393472077,31.746049393472077,31.746049393472077,140.0,165.0,51.17527399999999,23.974725999999993,0.4444444444444444,139.07,9.86111111111111,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,45.0,0.0,1.0,47.0,12.0,1.0,7.0,39.0,14.0,29.0,33.0,1.0,0.0,0.0,20.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,3.0,1.0,1.0,27.0,7.0,0.0,3.0,1.0,0.0,3.0,4.0,0.0,0.0,3.0,0.0,2.0,3.6635616461296463,6.650016239153072,4.174387269895637,4.658710952916121,5.128418329752639,5.638799410279479,5.680172609017068,5.97062388123613,6.32536651914161,6.468668752371123 +2520,COc1ccc(CCN(C)CCCC(C#N)(c2ccc(OC)c(OC)c2)C(C)C)cc1OC,0,19.211267605633804,5.922814084507041,2.788732394366197,5.802816901408451,163.58596704480937,75.35219438028173,1.3688507941445347,5.990212676056336,3.04939358372457,7.502897183098591,196.7370435198317,21.833333333333332,6.211111111111112,3.375,5.402777777777778,145.68767471264172,81.16866980555557,1.6907389413888891,6.353041666666667,2.919753086419753,7.662712999999998,241.43390002360755,16.8984375,6.099945312500003,3.1484375,3.9453125,158.0829415653569,61.390684328125,1.3917954447505783,6.18798046875,2.4347873263888893,7.657341437500001,194.17435682775488,17.037974683544302,6.012601265822784,2.962025316455696,3.6392405063291138,153.1744355761853,61.45784943670886,1.4571086739935446,6.122007594936707,2.5923874824191278,7.5420285316455695,198.12142964987726,13.53623188405797,5.840338164251206,2.42512077294686,2.140096618357488,156.90379248036677,46.72915283091788,1.2820670921034445,5.9372898550724615,2.4819511540526027,7.416778821256039,165.93614436298404,11.038297872340426,5.798076595744682,2.1617021276595745,1.6553191489361703,162.69991825926664,36.43517714042553,1.1282078025401705,5.869348936170213,2.3215130023640667,7.419971812765957,140.97308704181037,10.963470319634704,5.711940182648405,2.127853881278539,1.7534246575342465,162.85577589251756,36.7841720045662,1.09833319048805,5.784115525114155,2.183980213089802,7.339693570776255,136.00814415797473,11.058252427184467,5.773262135922331,2.150485436893204,1.441747572815534,164.79551717991544,37.307849514563095,1.0783019010569515,5.835447572815534,2.2135922330097086,7.4101553398058275,135.5491033484587,10.626315789473685,5.853015789473685,2.0157894736842104,1.305263157894737,162.07084961055557,33.88746420526316,1.1263364964179627,5.923234736842107,2.3504385964912284,7.468171389473684,138.76665769258761,7.2065066455068445,0.10588537988494345,0.019221841142869105,0.5598095615949217,3.6572108708589566,1.361136344645951,34.35414611188257,0.22798207363948544,0.10172941876611777,0.710504419317155,0.0644476365800436,50.85630218222231,0.44138067843681866,0.0064022570477641145,-0.005423561470419576,0.3370996715819172,1.4857859992505893,-0.2973849274748058,1.99022907982323,-0.033522632706600504,0.0079912385108777,0.04754852799635575,0.0011775746875618892,-2.9445329852235167,0.5893780375917481,-0.016036634286351728,-0.005425764862367324,0.00037969896845863656,0.15165796716921248,0.3915045917918212,3.0320178592882123,0.06170091859934531,-0.013031542445695139,-0.02841983280502656,-0.010841908587085995,11.615037160023284,0.052541313131059746,0.011100196866705781,0.004445151680665469,-0.11944586040041286,0.02767056968302957,-0.03964467904030608,0.17535250373519637,-0.006785857312265803,0.009474093446397887,0.07141910141341701,0.00845425323988856,-1.4371443504972323,-0.7211014607752659,-0.003528150518406057,-0.00033586531706553954,-0.070049746666705,-0.5403162665179346,-0.27285865009089016,-3.514652576535213,-0.04077752824299275,-0.0038221723893062075,-0.010996110743220691,-0.0019629757649112928,-7.958184817441996,-0.9745617848535625,-0.01412529597724193,-0.002762738109506699,-0.024718162134328293,-0.5311095822763975,-0.08252941000023768,-4.6085431019934395,-0.01532074235602435,-0.014164731921646747,-0.14563868828795368,-0.007411729357987896,-4.951612626879162,0.027849261625447482,0.008796728289215572,0.001726884028076825,-0.0675592561090383,-0.013761131325867617,-0.12456031715373204,0.04514266405158048,-0.02011051957620925,0.007760233301539189,0.038426826707955705,0.004786581697659149,-3.1968886532027017,0.18868000839716262,0.00028924065382308906,0.0012817127653396247,-0.0849702343694328,-0.49414509757849717,0.05294457946208049,0.9258588759473274,0.010654186993335316,0.00041266382652537566,0.06343981241628786,-0.00026509753997799325,2.060818872086226,-2.114809091763331,-0.019692540744839632,-0.0013212739153518845,0.017284582215308167,-0.6428298478789713,-0.15627225836389133,-10.08138452589294,-0.042853528612891566,-0.021629203792062925,-0.19115366567247985,-0.008722297810584798,-12.68545907314495,,,0.4737373737373738,1.121212121212121,0.5151515151515151,0.06060606060606061,0.6060606060606061,-0.09090909090909091,1.09678583698865,0.017326690147596795,0.022538811359718004,0.9239823045350196,0.22092718853966337,0.25914653229374274,2.0207681415236696,0.4800737208334061,1.9807168819667313,1.6338860534492194,0.11682002219678907,0.23001080632072277,0.0,0.34683082851751185,6.398354333746493,1364.0,420.5197999999999,198.0,412.0,11614.603660181465,5350.005801000003,97.18840638426197,425.30509999999987,216.50694444444446,532.7057,13968.330089908051,1572.0,447.20000000000005,243.0,389.0,10489.512579310203,5844.144226000001,121.73320378000001,457.41900000000004,210.22222222222223,551.7153359999999,17383.240801699743,2163.0,780.7930000000003,403.0,505.0,20234.616520365682,7858.007594,178.14981692807402,792.0615,311.6527777777778,980.1397040000002,24854.317673952624,2692.0,949.9909999999999,468.0,575.0,24201.560821037277,9710.340211,230.22317049098004,967.2771999999997,409.5972222222222,1191.640508,31303.185884680606,2802.0,1208.9499999999998,502.0,443.0,32479.08504343592,9672.934636000002,265.387888065413,1229.0189999999996,513.7638888888888,1535.273216,34348.78188313769,2594.0,1362.5480000000002,508.0,389.0,38234.48079092766,8562.266628,265.12883359694007,1379.297,545.5555555555557,1743.693376,33128.67545482544,2401.0,1250.9149000000007,466.0,384.0,35665.41492046134,8055.733668999998,240.53496871688296,1266.7213,478.29166666666663,1607.3928919999998,29785.783570596468,2278.0,1189.2920000000001,443.0,297.0,33947.87653906258,7685.416999999998,222.130191617732,1202.1022,455.99999999999994,1526.4920000000004,27923.115289782487,2019.0,1112.073,383.0,248.0,30793.461426005557,6438.618199,214.00393431941293,1125.4146000000003,446.58333333333337,1418.952564,26365.664961591647,511.661971830986,7.517861971830985,1.3647507211437064,39.74647887323944,259.6619718309859,96.64068046986252,2439.1443739436627,16.186727228403466,7.222788732394362,50.445813771518004,4.575782197183096,3610.7974549377836,31.779408847450945,0.46096250743901623,-0.3904964258702095,24.271176353898042,106.97659194604243,-21.41171477818602,143.29649374727256,-2.4136295548752362,0.5753691727831944,3.4234940157376137,0.08478537750445601,-212.0063749360932,75.44038881174376,-2.052689188653021,-0.6944979023830175,0.04860146796270548,19.412219797659198,50.11258774935311,388.0982859888912,7.8977175807162,-1.6680374330489778,-3.6377385990433995,-1.3877642991470074,1486.7247564829804,8.30152747470744,1.7538311049395134,0.7023339655451442,-18.87244594326523,4.371950009918672,-6.26385928836836,27.705695590161028,-1.072165455337997,1.496906764530866,11.284218023319887,1.3357720119023926,-227.06880737856272,-149.26800238048006,-0.7303271573100538,-0.06952412063256669,-14.500297560007937,-111.84546716921247,-56.48174056881426,-727.533083342789,-8.4409483462995,-0.791189684586385,-2.276194923846683,-0.40633598333663756,-1647.3442572104932,-229.02201944058717,-3.319444554651853,-0.6492434557340743,-5.808768101567149,-124.81075183495341,-19.394411350055854,-1083.0076289684582,-3.6003744536657223,-3.3287120015869855,-34.22509174766911,-1.7417563991271556,-1163.628967316603,6.098988295972998,1.9264834953382102,0.3781876021488247,-14.795477087879387,-3.0136877603650083,-27.27870945666732,9.886243427296126,-4.404203787189826,1.6994910930370823,8.4154750490423,1.0482613917873536,-700.1186150513917,38.8680817298155,0.059583574687556345,0.2640328296599627,-17.503868280103156,-101.79389010117042,10.906583369188581,190.72692844514944,2.194762520627075,0.08500874826422739,13.0686013577553,-0.05461009323546661,424.52868764976256,-401.8137274350329,-3.7415827415195304,-0.2510420439168581,3.284070620908552,-122.13767109700456,-29.69172908913935,-1915.4630599196585,-8.142170436449398,-4.109548720491956,-36.31919647777117,-1.6572365840111114,-2410.2372238975404,0.7403791106818717,0.6395274588822876,0.46595390551477667,0.33468576075448747,0.2864898556060741,0.18812574227341047,0.1887510620563849,0.10532582434387232,0.12702897046389952,0.06036181168811379,0.08006443005336,0.03398583015578957,0.05145222942567161,0.019524064746261876,0.03628987005507676,0.012746564887463363,8.015205765133183,5.6895609856363425,3.5284000942910017,2.1882498264387444,0.42072124665505944,-0.528381918838736,4.029829722410129,0.9114276532976955,6.0113573669200795,0.9882886681000717,14.563319840537368,10.950388208762586,16.008002837204202,11.701357889581523,1.9969522735288094,0.7741150122405632,3.4718216253501715,2.2378957749921944,6.027275111682315,1.1344578860528032,3.685190662929638,2.433820006574359,20.902372333135283,14.70549059148805,0.2201789447246187,0.47590334019785935,0.6858267335867297,0.742659490983213,0.7693940697335989,0.7916728853589203,1.8351938399806942,938.2039770028957,1.0,0.0,4.0,0.0,10.0,3.0,2.0,1.0,1.0,4.757791662947463,3.141120422657097,1.8139998242179054,1.4547072185231595,1.2856931340161166,1.1448480635935816,388.4798627846239,2314.017561149378,75.34144738406506,32.591796635906725,61.85642255145433,,18.0,940.0,5.41499046939678,5.261891554738487,5.917906046161393,11.49902366656781,49.41445283886799,5.563451491696996,28.439190165110134,30.33183534230805,37.9306444941628,18.947451815200196,15.633333333333335,37.0,17.0,2.0,20.0,0.0,0.026262626262626224,-3.0,0.10429311262765584,0.03475309689462103,-0.06954001573303481,0.0,0.13427194066749026,0.0,0.5403755868544591,0.8171717171717165,0.43608247422680324,0.505622489959838,0.8171717171717165,36.19393262062545,0.5717807748706942,0.7437807748706942,30.491416049655648,7.290597221808891,8.55183556569351,66.6853486702811,15.842432787502402,0.5797280593325097,0.24946695095948826,0.03198294243070362,0.24946695095948826,0.5185185185185185,0.25245234265889366,-0.7445028427958758,-0.05087157445397243,-0.01048595553233628,-0.03384103830890345,0.7475476573411064,2.204579882896343,0.04514678112783833,0.031050420885863978,0.04499142618155802,-7.092857612045963,0.936762124103844,0.8224597514634836,1.303750598538838,0.7582782108827467,0.5616276126419325,1.484306629540094,0.9453947839684064,1.3685672804149047,0.8044119020349866,0.6592836821403318,0.8817276948567678,1.2021756983007965,0.9619387937678925,1.3778695128100544,1.6253932640363118,1.5341374689936216,1.1720466241321328,0.8064814225449546,0.9526817551057646,0.7732267755349111,1.32425910605712,0.8114444086422314,1.4429218799060346,0.7863840805672054,0.9749811144035078,0.7708843179682238,0.7205335706915377,1.7165759089971202,1.0450539121311908,1.1726453167873674,0.9810122177946428,1.1489773319934729,0.7881313631095019,0.6949420665888785,0.7425753160812958,1.105500541873204,1.0564700628838484,0.8131227292213274,0.7592005841420001,1.1358220606210006,1.0692087419803513,1.2783792685106725,1.0632499066388994,1.2416716597615305,0.835788287029273,1.051846620272965,0.7747614209196058,1.2003871883895774,1.1128108205615972,1.0696341236721552,0.9966804941674356,0.9180526863398526,1.1029888331340625,1.0675424901984172,1.1125566569135503,1.0427268105829683,1.0796734447615814,1.5108081779736213,1.0216907397275907,1.077962428978917,0.9476683268324418,0.7194612673855436,0.6655129995870089,1.1620454420421413,0.8955267686509718,1.0757532270936518,0.9531262877767979,1.067342458056017,0.746204902979367,0.8175016455365309,0.6794476131646695,1.0518905660041635,0.95699938852697,0.977997019563668,0.9015034113327501,1.179807751852642,1.1202017159335786,0.9270397962481947,0.9558741064243976,0.9014465553411806,0.9780770885728797,0.7610339906158291,0.9639755022568595,0.9213424288279112,1.2827650702952051,1.1875965368290458,1.0158561304945855,0.7693498452012385,1.1059925660321341,1.135704173293221,1.2826328597673666,1.1669250186684252,1.2103595129984557,1.569956513672977,1.120444615889273,1.2285926868918633,8.0,0.1652892561983471,4.88888888888889,2.625,2.026666666666667,1.361111111111111,0.9959183673469387,0.45833333333333337,0.2753842277651801,0.2868750000000001,6174.152130439346,7279.580797275435,3084.9216307147235,2709.6330887339404,17.873586396523343,0.4560232336748569,9.722815730613835,0.8383138065905649,0.0,0.5384615384615384,1.3919554565572188,3.0086266968475854,4.335747295286777,4.695039900981523,4.864053985488566,5.004899055911101,0.23529411764705882,0.005509641873278238,0.106280193236715,0.04772727272727273,0.03897435897435898,0.03093434343434343,0.0242906918865107,0.011458333333333334,0.008883362185973551,0.010245535714285717,0.5195978510131305,29.231833910034602,14.533081285444235,7.739854877721043,198.5692233112098,0.0,4.385221354346626,231.58175664456166,,196.98190350998132,194.5850814678033,196.290048670161,197.01362562063113,256.50361415450374,196.13172249001008,197.10953342417395,230.33526972346394,0.06124752257212075,0.06046403247285789,-0.2821561904558556,0.6021684778329003,0.4062620537113376,-0.21848283505511676,0.05793271861106862,-0.14704065179971473,0.07855385991391588,0.06692221287244525,0.018271805609183945,-0.05789907757494859,0.08178415237557812,-0.15145277189142978,-0.28227082005514165,0.0006782645287030428,0.041468204192883495,0.2876306942591093,0.08825769819496354,0.2706393428849793,-0.12810003835424894,-0.03999951588244874,-0.16822817968848874,0.22838933743954984,0.007290815885643915,0.10483219570791937,0.23125525008901274,-0.21336873929074457,0.007566030688443917,-0.029126163000678797,0.005104260288237659,-0.029764872316217602,0.09313032121199291,0.10051887007551032,0.13118019043861173,-0.028258923453534358,-0.10006255405659863,-0.03332046900374533,-0.01747310856276317,-0.12513138658641385,-0.14773998153161794,-0.20046386327437624,-0.1023065037066821,-0.17886287106711476,-0.037571947580803726,-0.01547648465549128,-0.030458460062740826,-0.15648374883661745,-0.1352335927506829,-0.1334017594552777,-0.14372910945274442,-0.04415459082889756,-0.14522257562678018,-0.06063272817955988,-0.13414809050950083,-0.06720152208217685,-0.13923928882570677,-0.20497928560095766,-0.11500389698204945,-0.09736477908159989,0.0038644606874554265,0.08307783660760551,0.08983967848040729,-0.12068256911610986,-0.0037627393693696384,-0.09151200586457912,0.00131403830863857,-0.08821096876244133,0.07628307912955294,0.05408386726839307,0.07427086471532965,-0.06286120925088079,0.02618189612227749,0.0027316391945458574,0.06668002070213305,-0.1517841784040789,-0.13511528731249753,0.03889733726554195,0.026950426097975027,0.04673256464095105,0.004056484658327945,0.08928841354323737,-0.004113378768339218,0.04052238923510685,-0.2934582864891805,-0.18597979028113065,-0.06873815601384518,0.030875825282554382,-0.1757705176371173,-0.1148101429945578,-0.2934546675402869,-0.18796885179953698,-0.2126150336294539,-0.26903937607621364,-0.13533929672893052,-0.24943730725234226,14.970580765749045,18.312104416875375,3.8205688675607377,12.629919999733712,28.398379253011417,32.139695046838256,33.741636641265885,35.37645354267433,36.87053804971659,65.36365710490213,53.91823976382424,3.855060732494039,7.590356608583852,0.0,11.44541734107789,12133.27164234265,11627.718797273197,2172.189422249179,52.0,46.0,61.0,70.0,78.0,82.0,86.0,70.0,56.0,454.283157696001,34.0,5.081404364984463,5.926926025970411,6.794586580876499,7.659642954564682,8.533656917446903,9.405989388981,10.28332711300532,11.159772881657789,12.039457101057836,0.5774647887323943,0.964732394366197,1.1311200574672609,0.5330923179573653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6395895589103483,0.9516155758077879,0.9932090723510768,0.58689932143236,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,5.0,0.0,4.0,0.0,1.0,1.0,1.0,1.0,1.0,23.847361546050674,0.0,22.99804733313562,0.0,0.0,0.0,0.0,5.261891554738487,0.0,25.98020853630447,74.16517056076962,6.544756405912575,39.92340194729918,198.08842565745914,-584.1791542659798,-39.91672245212422,-8.2278754121969,-26.553597921180906,586.568288442083,1729.8384068833977,35.424724931940844,24.363921223709823,35.30282463027343,0.5,0.9263819618452046,0.16712653543751482,92.80492652276897,0.054438729754252804,121.50452580169478,0.07361803815479533,9.0,0.38235294117647056,0.2263435275480613,0.48922770942976734,0.7050285501228853,0.7634525143465858,0.7909356093784113,0.8138381885715992,5.093080000000005,,1.2857142857142858,1.5141926477431362,1.1430359144285005,1.28206267335915,-5.365540693720244,1.3572521419828643,1.2745051870999227,-2.2346271687189603,131.65600000000003,18.947451815200196,5.261891554738487,4.899909730850478,5.917906046161393,38.52492973755606,48.576374959612465,47.52510539416365,0.0,29.067268645927893,4.23410650459726,0.0,5.53338948872752,0.0,7.051855622955894,0.0,8.669227347271736,0.0,10.3368596138973,40.99999999999999,11.877188295968994,0.0,0.0,0.0,0.0,0.0,5.007102817711449,0.0,68.49599999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.30952408017552,18.947451815200196,0.0,22.99804733313562,53.47628469046295,11.83581209232279,17.249018913692154,37.81602062862726,36.39820241076966,0.0,0.0,0.0,37.84955457497294,45.41085868263473,41.74235718622523,463.16351328912344,,393.88588494204055,389.0783936842282,392.51082243641724,393.9495504731799,514.633149731347,392.1811872744454,394.14182410973575,461.34769919502446,41.74235718622523,463.16351328912344,,392.67809273424837,387.6559702878634,391.43706142589355,392.74518856790326,518.3727690027276,390.9061928380372,392.9445616612479,462.905166615647,4.90766907112978,354.9655028517,,308.0813045910357,304.43438794809987,305.3165033863703,308.1244494610711,389.0442751846142,306.71046633775495,308.2832855963557,355.69731444965356,1.2649199147340977,14.035257978458286,,11.935935907334562,11.790254354067521,11.894267346558099,11.937865165853935,15.594943931252939,11.884278402255921,11.943691639688963,13.980233308940136,2.4538345355648894,231.58175664456166,,196.98190350998132,194.5850814678033,196.290048670161,197.01362562063113,256.50361415450374,196.13172249001008,197.10953342417395,230.33526972346394,67.56470588235294,0.0,12.892751625237516,0.0,0.0,0.0,0.0,70.51784413692646,4.448190805645434,0.0,21.583324082126502,0.0,0.16451030641364595,2.3132679568741077,-0.5796218690994228,10.242105340554598,2.634513971900509,41.66985182169756,726.8918261825456,98.82883741556253,213.61249547617857,307.83805796536114,333.3478329696881,345.34783296968817,355.34783296968817,668.0,143.88476332854495,57.764887916996415,68.8254385774497,63.95,63.95,1.0,7.699729176348912,6.087462841250339,3.9319082410699004,5.662450838605942,,5.678885869559234,5.679841525136061,5.673822472700029,5.678857668025548,5.625634055468059,5.678992945247295,5.67885806823224,5.655499087585178,0.11914873457787577,0.1715894193516952,,0.17208745059270406,0.17211640985260793,0.1719340143242433,0.17208659600077417,0.17047375925660785,0.1720906953105241,0.17208660812824972,0.17137876022985388,2.563047334032843,2.9277792773200035,,2.930677532240134,2.9308458003120537,2.929785516512733,2.93067256619497,2.9212561311824867,2.9306963871143252,2.9306726366680653,2.9265508301294205,378.61000000000166,2112.9088143293743,209.39128371737192,,207.2881695094884,207.13162556773406,207.9405242316895,207.2922839744333,213.92605676340654,207.26383065901487,207.29335729712315,210.44451848056053,64.02753982816286,6.345190415677937,,6.281459682105709,6.276715926294972,6.301228007020894,6.281584362861615,6.482607780709289,6.2807221411822685,6.2816168877916105,6.377106620623047,8.849743330556914,6.538127141006097,,6.528032416866875,6.527276931964562,6.531174566090974,6.528052265679864,6.559552894642377,6.5279149944422254,6.528057443489141,6.543144516690543,21.583324082126502,2.3132679568741077,10.242105340554598,1.604647476298846,2.987343778726826,14.511702267869502,2.611084525448425,6.060729342286188,8.669128563148337,465.097899515873,155.4314131775333,-458.38009563179327,-31.320924276907206,-6.4560576849548355,-20.835458892354243,460.2547458039573,1357.3293202683137,27.796248262976828,19.117314369976246,27.70059837282273,3698.0,55.0,2.116856043375959,1.3138499328003521,0.08333333333333333,0.05103103630798288,0.7367264082060501,0.3916104412960749,0.125,0.06804138174397717,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.048112522432468816,0.27458330303433265,0.0683221861100308,24.432510652501765,21.10440614311549,15.842432787502407,11.379315865652574,13.178533357879408,8.653784144576882,11.513814785439479,6.424875284976212,8.892027932472967,4.225326818167965,6.24502554416208,2.6508947521515864,4.219082812905072,1.600973309193474,3.120928824736601,1.0962045803218492,5.891691332584597,3.0329051245431824,9.02555639823018,3.7620842455796675,12.213659951198535,4.444363318429183,113.78456377528764,58.711978158850656,44.237912027074486,39.05885530371445,34.58312664182106,30.700305862646907,160.0,187.0,75.83613399999997,47.34586600000004,0.2676056338028169,100.06,12.95138888888889,7.88888888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,71.0,0.0,1.0,72.0,12.0,0.0,6.0,65.0,13.0,34.0,59.0,1.0,0.0,0.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,6.0,0.0,0.0,33.0,6.0,0.0,2.0,4.0,0.0,2.0,13.0,0.0,0.0,0.0,0.0,2.0,3.7612001156935624,5.234112123200586,4.248495242049359,4.791649752930709,5.2457074162757396,5.667723424840498,5.793775513182905,5.960844244173871,5.839187111662404,5.411087860380876 +4595,Cc1nccn1CC1CCc2c(c3ccccc3n2C)C1=O,0,21.414634146341463,5.975236585365853,3.4878048780487805,6.926829268292683,161.33915298324956,84.40525712195122,1.5346597363934391,6.062521951219512,3.468157181571816,7.49601775609756,223.4202115196346,24.40909090909091,6.242045454545454,4.2272727272727275,7.113636363636363,145.46927368727495,92.64384574999995,1.8594336793181825,6.395863636363638,2.865530303030303,7.638248636363631,268.7972429582135,20.72151898734177,6.153011392405063,3.962025316455696,5.632911392405063,154.2992858171866,77.51939241772152,1.6231918266283665,6.2702797468354445,2.593178621659635,7.610067898734175,230.34757090014287,17.722772277227723,6.0723069306930695,3.4158415841584158,3.9306930693069306,156.2076801054746,64.34922314851484,1.4901300418236434,6.178252475247526,2.5943344334433456,7.574588752475246,205.46090206082567,15.31578947368421,6.031552631578946,3.008771929824561,3.3333333333333335,156.10278063871567,53.38502078070176,1.3795106463376312,6.129076315789475,2.7119883040935684,7.561134000000001,182.60637499896924,13.120689655172415,5.802629310344827,2.5775862068965516,2.6206896551724137,159.97067944313076,45.66228569827584,1.2302884068846638,5.889409482758619,2.51676245210728,7.394979689655173,159.35044588516445,12.576923076923077,5.895729807692307,2.4615384615384617,2.6634615384615383,161.57316257037525,42.76138349038461,1.1761686616108362,5.969405769230767,2.7473290598290605,7.4878624230769235,150.54297069674305,10.647058823529411,5.714788235294117,2.3294117647058825,2.3176470588235296,165.13341875675675,35.611993552941165,1.0826997693620235,5.780476470588234,2.2111111111111112,7.346481694117648,133.95699583283204,12.9,5.744065,2.533333333333333,2.8666666666666667,167.22110415915046,46.16196286666668,1.1602349210254501,5.810410000000003,2.113888888888889,7.340377600000001,150.68845855413622,6.9375371802498496,0.08455240928019031,0.011972783472421884,0.6555621653777514,3.669244497323022,1.547252162183569,33.20599662224866,0.22999058924383226,0.08270779298036877,0.9676449203516424,0.04551463652587743,51.31934026631897,0.5779838840517014,0.005086282515818489,-0.003435547321296936,0.32780812287058575,1.510910713319994,-0.3836529038151228,2.708881310678167,-0.01519359495044263,0.006572694824509218,-0.0007965586862077417,0.0008553213455194276,-0.42773526368831954,0.7620614613061848,0.001725948237562018,-0.0008443210722998695,0.04125784079699404,0.3230370710622823,0.1466236835013945,3.681895297788385,0.02603451713620753,0.003144537985978807,0.016180677398005834,-0.00017900577564591193,6.403840146919643,-0.42413462048167916,-0.012091795901779341,-0.0014414510127296236,-0.15037018276485586,-0.7817777018629885,0.1111614011626904,-1.9738664049098547,0.0022440602604212974,-0.010897046783797942,-0.053513873100575995,-0.006249091005471758,-0.12239504828564908,-1.7809261404552426,-0.005550419549766739,0.001128274090247392,-0.1525668722669255,-0.7710844630911007,-0.17684434242141664,-8.587684014846008,-0.05220296594064376,-0.008755353955978557,-0.10011532400304747,-0.00013416669275807515,-13.446323540510939,0.11082278610843288,-0.0005761266897782496,-0.0004001472299317328,-0.059683275554370356,-0.1276128741102382,-0.09687278051674733,0.5066494023518434,-0.009674720237217216,0.0003453399044082896,0.02799801021559416,-0.0012581966604443139,-0.7230012952086672,-0.7142726399121404,-0.0005268464284079983,0.0011423593768402017,0.01845284400311168,-0.1530625085800577,-0.11427385056945082,-3.449479471451289,-0.024102280675678607,-0.0022705509541024018,-0.03329793265099633,0.00031818805198370766,-6.1587506265329495,0.2805402946425443,-0.004503485320362524,-0.000893993732649219,0.1128739895720334,0.37293627742590196,-0.10561072141940213,1.4116258661301044,0.014922905570824898,-0.0033575777723343983,-0.11909558191708172,-0.003722395492878881,2.945762157592225,2.1380725758477093,0.012709298036882803,0.00035796115652733836,-0.07588736862978389,0.4088042831647828,0.36187020213924903,10.296281988320441,0.07052049630726129,0.01497245092207017,0.12965634432767098,0.00457595859607377,16.793889075913135,,,0.4787878787878789,1.2840909090909092,0.6136363636363636,0.0,0.6704545454545454,-0.056818181818181816,0.8198958261676847,0.011341352928483917,0.026977716564847553,0.8435692451816781,0.24510685610211647,0.239652407440904,1.6634650713493628,0.48475926354302046,2.0769847817502587,1.705675189326577,0.2892250310705405,0.08208456135314163,0.0,0.3713095924236821,7.150068590926842,878.0,244.9847,143.0,284.0,6614.905272313232,3460.615542,62.92104919213101,248.5634,142.19444444444446,307.33672799999994,9160.228672305018,1074.0,274.65,186.0,313.0,6400.648042240097,4076.329212999998,81.81508189000003,281.41800000000006,126.08333333333334,336.0829399999998,11827.078690161392,1637.0,486.0879,313.0,445.0,12189.64357955774,6124.032001,128.23215430364095,495.3521000000001,204.86111111111117,601.1953639999998,18197.458101111286,1790.0,613.303,345.0,397.0,15776.975690652935,6499.271537999999,150.503134224188,624.0035000000001,262.0277777777779,765.0334639999999,20751.551108143394,1746.0,687.5969999999999,343.0,380.0,17795.716992813588,6085.892369,157.26421368248995,698.7147000000001,309.1666666666668,861.9692760000001,20817.126749882493,1522.0,673.1049999999999,299.0,304.0,18556.59881540317,5296.8251409999975,142.713455198621,683.1714999999998,291.94444444444446,857.8176440000001,18484.651722679075,1308.0,613.1559,256.0,277.0,16803.608907319027,4447.183883,122.32154080752696,620.8181999999998,285.7222222222223,778.737692,15656.468952461277,905.0,485.75699999999995,198.0,197.0,14036.340594324325,3027.019451999999,92.029480395772,491.3404999999999,187.94444444444446,624.450944,11386.344645790723,774.0,344.6439,152.0,172.0,10033.266249549028,2769.7177720000004,69.61409526152701,348.62460000000016,126.83333333333333,440.4226560000001,9041.307513248174,284.43902439024384,3.466648780487803,0.49088412236929724,26.878048780487806,150.4390243902439,63.43733864952633,1361.445861512195,9.429614158997122,3.3910195121951197,39.67344173441734,1.8661000975609747,2104.092950919078,25.431290898274863,0.22379643069601352,-0.15116408213706517,14.423557406305774,66.48007138607973,-16.8807277678654,119.19077766983935,-0.6685181778194758,0.2891985722784056,-0.03504858219314064,0.03763413920285481,-18.82035160228606,60.2028554431886,0.1363499107673994,-0.06670136471168969,3.259369422962529,25.5199286139203,11.583270996610164,290.8697285252824,2.056726853760395,0.24841850089232576,1.2782735144424608,-0.014141456276027042,505.90337160665183,-42.837596668649596,-1.2212713860797135,-0.14558655228569198,-15.187388459250442,-78.95954788816184,11.22730151743173,-199.36050689589533,0.226650086302551,-1.1006017251635922,-5.4049011831581755,-0.6311581915526475,-12.361899876850558,-203.02558001189766,-0.6327478286734083,0.1286232462882027,-17.392623438429506,-87.90362879238548,-20.160255036041498,-978.995977692445,-5.951138117233389,-0.9981103509815554,-11.413146936347411,-0.015295002974420567,-1532.880883618247,12.855443188578214,-0.06683069601427696,-0.046417078672081,-6.923259964306961,-14.80309339678763,-11.23724253994269,58.77133067281383,-1.122267547517197,0.04005942891136159,3.2477691850089228,-0.14595081261154041,-83.8681502442054,-74.2843545508626,-0.054792028554431826,0.11880537519138099,1.919095776323615,-15.918500892326001,-11.884480459222885,-358.74586503093406,-2.5066371902705753,-0.23613729922664978,-3.462984995703618,0.033091557406305594,-640.5100651594267,23.84592504461627,-0.38279625223081454,-0.07598946727518362,9.594289113622839,31.699583581201665,-8.976911320649181,119.98819862105887,1.2684469735201163,-0.28539411064842385,-10.123124462951946,-0.31640361689470486,250.38978339533912,128.28435455086256,0.7625578822129682,0.0214776693916403,-4.5532421177870335,24.528256989886966,21.712212128354942,617.7769192992265,4.231229778435678,0.8983470553242102,7.7793806596602595,0.2745575157644262,1007.6333445547882,0.6939645561169142,0.5869391502204893,0.42658815191785804,0.30991196743526955,0.2652163256284878,0.16552774315348937,0.16815605720619348,0.09103175612302489,0.10422771071761891,0.048909318332348566,0.06624314863255133,0.028008435840983163,0.04191406849091045,0.01582206450003454,0.02621144295625448,0.008748012943694526,8.021959944981605,5.674742765782582,3.543262495603362,2.174035714527371,0.3912821711754387,-0.469140933771987,3.321427580349122,0.9780035246917873,6.021933724743253,0.9953980058892681,14.558202184700942,10.935557233419425,16.010054100899428,11.6862282434388,2.013458295600024,0.7527755025659664,3.4883607966358645,2.2238262446693833,7.008269059672137,1.2267614672958755,3.7014425903923382,2.419739389377653,20.91303935635336,14.702715491809176,0.25427017476914254,0.6193597123321015,0.8348038246229951,0.8692021532842408,0.877801735449552,0.877801735449552,1.4756931910005975,871.7199680624578,0.0,3.0,2.0,0.0,7.0,2.0,2.0,1.0,0.0,3.9152234215500785,1.8442802765892958,0.6221896342518791,0.4270676830323641,0.3782871952274869,0.3782871952274869,237.17497445253755,724.0704635152462,34.90452199426791,17.66025520768893,34.865088402071,,10.0,385.0,0.0,4.794537184071822,11.701150992526333,0.0,41.67718057354257,5.693927994848461,6.196843571613076,25.25331490822692,33.29858393613033,0.0,10.533333333333335,28.25,13.5,0.0,14.75,0.0,0.021212121212121137,-1.25,0.1159349593495933,0.05149051490514889,-0.06444444444444442,0.0,0.10747408829174632,0.0,0.5626016260162603,0.7893939393939391,0.446666666666667,0.5111111111111114,0.7893939393939391,18.037708175689065,0.24950976442664619,0.5935097644266462,18.558523393996918,5.392350834246562,5.272352963699888,36.59623156968598,10.66470379794645,0.6065259117082537,0.12658227848101264,0.0,0.4082278481012657,0.3333333333333333,0.2573683852481903,-0.3812804621832003,-0.03544604001335942,-0.009299523467882934,-0.034661860198472755,0.7426316147518098,1.1001775724371625,0.03596908759998032,0.02683359932773567,0.03667258574790542,-4.018167211487891,0.7782463634804573,0.696139955352831,1.341062120050793,0.608810427322224,0.4592618794953426,1.3984627251360624,0.7839361043813637,1.083370530773623,0.6756348351436671,0.5263934125917118,0.7016821298174256,0.9743676074058765,0.8179546683049351,0.91741466521804,1.3469152459304041,1.1773760022054263,0.9339752745899621,1.021024588121092,0.817856993038455,0.8567583473533663,0.88613057670205,0.5711182810853764,0.8965706797283546,0.8240433334100242,1.0122408227788997,1.1691092307708808,1.3197808013399315,1.4145298377387647,1.2583631904046435,0.9848615251857711,1.0100547621586542,0.9618406299453608,1.1392292202856535,1.0053195968184547,1.175818411002174,0.9557367435317672,1.2200067997123663,1.1700212188810788,0.9694906162316845,1.3054414620944375,1.2256524904999204,1.1103569193734224,1.2202166146586493,1.2096248124970386,1.1857687335092313,1.477215871743295,1.194908166249198,1.2214294905329954,0.9710583740885519,0.9936556572451747,0.8868851227137722,1.045591088303398,0.9924974283286373,0.9760046984167147,0.971558571368905,1.0368292474935947,0.987740785276065,1.2286610033553533,1.0631790991719978,1.0083249987323544,1.1189365856232605,1.2188727828260912,0.853981545030798,0.8156498673740054,1.0405442482290732,0.989174475872518,1.116327544659856,1.0771588561856453,1.215013538131343,1.717278332856051,1.3234981356187936,1.0887240244860905,0.9802576492781989,1.0836028758894654,0.8926369799027613,0.6740685384861749,0.877431906614786,0.9571678447895982,0.9770994165450041,0.901807492598471,1.0774479609108472,1.2698440761597858,1.12395307407026,0.930568354248202,0.6984508088949867,0.7226864209899767,1.062906700558391,1.116152450090744,0.9040207522697795,0.7400754279996924,0.697727394471321,0.6308803238006184,0.7147899497333224,0.1598699864521785,0.6312065832943232,0.650122763578246,3.5,0.01703703703703703,3.1111111111111125,2.6805555555555554,1.336666666666667,0.7469444444444445,0.35356009070294786,0.2829861111111111,0.19023998488284202,0.06407407407407406,4306.285743658924,4830.153193508918,2157.7611544905612,1970.08314818882,9.526000771349716,0.3578445619800958,6.117173197904022,0.5572553634109443,1.0,0.3333333333333333,1.4423285830680053,3.513271728028788,4.735362370366205,4.93048432158572,4.979264809390597,4.979264809390597,0.13999999999999999,0.0056790123456790095,0.08408408408408412,0.07054093567251461,0.04050505050505051,0.025756704980842916,0.015372177856649906,0.017686631944444444,0.011889999055177626,0.005824915824915825,0.417339512269359,15.5232,6.135865595325055,2.606310013717421,128.93835940075277,1.0,4.0590828346408205,93.5961865911636,,74.18022423212535,73.18841307637042,72.39018929610708,74.18885136528901,90.36941113333629,73.7605728073307,74.23987432000311,85.22968819727042,0.0833125457975399,0.0601553824322561,-0.28694641719783687,0.5000412473189244,0.4117770604881501,-0.24795758131220852,0.0815780758365543,-0.06606181148714146,0.07946886971182135,-0.0008231931666817123,0.01879222621130091,-0.008334777132141806,0.109846108425287,0.02041276235952733,-0.0705200318910535,0.06293505479105896,0.088039123938991,0.09476392218736403,0.11088043342513153,0.11319818442052063,0.038019851245760884,0.01672170964544078,-0.0039329277197267705,0.12478414791942487,-0.061136194223092334,-0.1430094778459768,-0.12039397655940766,-0.2293759321485687,-0.21306230817634297,0.07184439865691523,-0.05944307070089039,0.009757182969091754,-0.13175356748286618,-0.05530321296073051,-0.13729849302254288,-0.0023849692464962824,-0.2567086985170008,-0.0656447237520308,0.09423657354584748,-0.23272678065399433,-0.2101480192049514,-0.11429574748297264,-0.2586184692042068,-0.22697870426906483,-0.10585887545151516,-0.10346287351631582,-0.0029477702778488504,-0.26201279031904856,0.015974370043583923,-0.006813841198410767,-0.033421403707285954,-0.09104136679391703,-0.03477905988639922,-0.06260956221902125,0.015257768291537393,-0.042065722206399654,0.004175421589235953,0.02893417784430644,-0.02764378135215831,-0.014088281171517222,-0.10295766658311681,-0.006231004330842084,0.0954130156509982,0.028148122295127708,-0.04171499301606307,-0.07385599669040446,-0.10388122093405475,-0.1047968125779519,-0.02745268459335303,-0.03441131343809034,0.006990895155293643,-0.12000837490451831,0.04043802394907538,-0.05326264926926973,-0.07466882990980708,0.17217892601686763,0.10163843747615778,-0.06825695513674923,0.042511172972422934,0.06488485298415353,-0.04059566397970915,-0.1230777730676273,-0.08178458133489666,0.05740062405918216,0.30818898988166693,0.15031266577829436,0.02989790614286697,-0.11575922565033277,0.1114137483787289,0.23387926737717885,0.3100729698147874,0.3066233994143848,0.18102829712339172,0.13399165499732466,0.10053817728440169,0.32724288716032096,9.108150105183242,18.865020553988693,8.716753125335867,12.737989491529438,33.158454056681094,37.171345814401114,37.90476044854746,37.95393118025477,37.95393118025477,45.69366519850569,37.52485416518469,6.362950683551891,1.8058603497691157,0.0,8.168811033321006,2537.818855079553,2205.340711113228,1137.1354179048267,152.0,37.0,54.0,75.0,94.0,105.0,123.0,145.0,149.0,293.1528122280005,25.0,4.8283137373023015,5.726847747587197,6.642486801367256,7.5595594960077,8.482394685873542,9.406153835618436,10.332897025887751,11.260417467526102,12.189836550589586,0.6341463414634145,0.9708292682926828,1.1226061580909228,0.5957343979400996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6839647582883015,0.9589670014347202,0.9940134652621107,0.6374647302080594,6.0,1.0,0.0,0.0,0.0,2.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,9.13419929558271,5.824404497999927,5.783244946364939,0.0,0.0,4.794537184071822,4.9839785209472085,0.0,0.0,18.19910120538483,25.831747514004253,54.06432599660383,0.0,125.79016188506628,-186.35284600082753,-17.32443985754218,-4.545191365873842,-16.94116781825705,362.96513633760384,537.7176175144186,17.580082136725725,13.115063841815088,17.923920583813953,0.5,0.8931913974436949,0.2341729997623963,5.846638007888363,0.11453399543720383,14.025453356121407,0.10680860255630509,5.0,0.08,0.2692141078284918,0.6557606393741825,0.8838668045190105,0.9202867871997804,0.9293917828699727,0.9293917828699727,3.1285200000000017,,0.6785714285714287,0.8427175430432758,0.8488829422512447,0.6767661145452564,-2.636839718884606,0.7422735618115056,0.6692837795551935,-1.356968362788312,86.02450000000005,4.794537184071822,0.0,14.118177816529919,12.965578028838582,26.31013685145522,0.0,53.74093940161798,0.0,0.0,3.9318256327243257,0.0,5.293304824724492,3.044522437723423,6.85751406254539,5.476463551931511,8.515391569469609,7.635786861395585,10.225244911570808,25.999999999999996,11.962491158883205,4.2530609060785824,0.0,0.0,0.0,2.2475596812799195,3.0911463844797185,4.263832042076089,39.803999999999995,0.0,13.034514361300076,0.0,0.0,0.0,0.0,0.0,0.28347222222222257,46.026852481727836,0.0,0.0,0.0,19.901422762894857,20.013250011515776,12.841643245852017,28.297142791543212,36.65915541707259,0.0,10.902924932081056,0.0,24.425110315544085,28.04255508982036,29.302625889425244,187.1923731823273,,148.2987601525624,146.30021546700965,144.70320741564586,148.31617853834663,181.46498611457275,147.45366619995127,148.41890466004665,170.82945867530128,29.302625889425244,187.19237318232723,,147.6818770356793,145.53410860969757,143.93149564996293,147.70093661603275,183.3756619855573,146.77887205284998,147.81046486045102,171.8163447573292,4.948814756577789,139.27109340527198,,113.96886376148827,112.5723741512945,111.40294794650481,113.98087976678379,136.8745228407847,113.37542032265324,114.05317330712262,129.62835668157553,1.3319375404284202,8.50874423556033,,6.740852734207382,6.650009793954984,6.577418518892994,6.741644479015756,8.248408459753307,6.702439372725058,6.746313848183939,7.764975394331876,2.5557086986084045,93.5961865911636,,74.18022423212535,73.18841307637042,72.39018929610708,74.18885136528901,90.36941113333629,73.7605728073307,74.23987432000311,85.22968819727042,39.31764705882353,0.0,4.047057928109515,0.0,0.0,0.0,0.0,40.75455207574654,2.6027855725623583,0.0,0.0,0.0,0.0474130763416476,0.0,0.0,0.0,0.0,26.136053938530434,436.55202782751655,59.135471905788215,144.0441408491803,194.14985718501438,202.1498571850145,204.14985718501447,204.14985718501447,981.0,123.42890734775986,52.20327039515354,72.98005385208515,39.82,39.82,1.0,8.767421613539206,5.643856189774724,3.9292620352396934,4.624793007918028,,4.6333925109939464,4.634259802302358,4.635522066555992,4.633386650340465,4.619204165944142,4.63379075967365,4.633336625179804,4.623356719476364,0.17860281978362244,0.210217863996274,,0.21060875049972483,0.21064817283192536,0.21070554847981782,0.21060848410638477,0.2099638257247337,0.2106268527124386,0.21060621023544562,0.21015257815801655,2.156908991320378,2.319888975282371,,2.32174668390821,2.321933849175448,2.322206188757823,2.3217454190343245,2.318679792166077,2.3218326320692246,2.3217346223030155,2.3195783642962713,226.74999999999966,223.08322462807098,125.82990501218282,,124.63755346072152,124.53258256944403,124.46749534811988,124.638518901322,126.36163974437336,124.59396940255276,124.64377972485227,125.79889276181295,10.140146574003227,5.7195411369174005,,5.665343339123705,5.660571934974729,5.6576134249145404,5.665387222787364,5.743710897471517,5.66336224557058,5.6656263511296485,5.718131489173316,6.196002266811054,5.623388395077795,,5.613867313448758,5.613024749414722,5.612501960640108,5.613875059403605,5.627605312981711,5.613517565887837,5.613917267162118,5.623141903016463,4.263832042076089,17.287575267378656,1.094493575207861,3.27521557697153,1.2998822121441174,8.205336911381735,5.630447898295121,2.7122768382044176,2.0642730116738055,261.0836532966636,61.480608085613525,-91.08094082177777,-8.467411769113742,-2.2214863615067753,-8.280085529252524,177.40113345511767,262.81233450784333,8.592358287514417,6.41005693921569,8.760411150261444,997.0,38.0,1.4732951747635739,0.7846290717785054,0.0,0.0,0.5816384431171896,0.21326266594177182,0.0,0.0,0.0,0.0,0.0,0.0,0.18200116010771633,0.06128418305208071,0.5773431828549299,0.21473110014758284,0.8892178868892348,0.3084728032728116,15.267220234572113,12.912661304850763,10.664703797946451,7.747799185881739,9.813004048254049,6.124526496679106,9.080427089134448,4.915714830643344,7.817078303821418,3.6681988749261425,6.226855971459825,2.632792969052417,4.400977191545597,1.6613167725036266,3.224007483619301,1.0760055920744267,4.306863510377651,1.965112415175605,7.266556887004545,2.8706501483020292,11.544011364341678,3.9953132427967106,72.9232900065889,34.02170535707684,23.51868224149756,21.912190921946387,21.74840789733087,21.74840789733087,124.0,153.0,46.83106699999998,24.488932999999996,0.4634146341463415,163.04,6.499999999999999,4.7222222222222205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,14.0,15.0,41.0,0.0,0.0,44.0,15.0,1.0,7.0,37.0,16.0,25.0,28.0,0.0,0.0,0.0,18.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,4.0,0.0,2.0,22.0,4.0,0.0,3.0,1.0,0.0,4.0,2.0,0.0,0.0,0.0,2.0,3.0,3.5409593240373143,7.446208989201536,4.212127597878484,4.888467660122048,5.525950823135099,5.975081067857458,6.2993799904696495,6.681393664627936,7.067183303739145,7.171164670191285 +60749,Nc1ccn([C@@H]2O[C@H](CO)[C@@H](O)C2(F)F)c(=O)n1,0,31.03448275862069,7.599472413793103,3.689655172413793,12.96551724137931,177.85781477230137,125.65146869998414,1.2694536535634142,7.534568965517242,11.170737547892719,8.888948965517242,210.45403253003354,29.6,7.173600000000001,4.566666666666666,10.1,157.9771097956733,114.58181622234662,1.5547923580666665,7.248900000000001,4.337037037037037,8.510943866666667,255.65269261523073,28.51923076923077,7.4429384615384615,4.0576923076923075,10.057692307692308,166.44525582456632,110.44427783635713,1.3500265323018854,7.4594403846153865,5.743856837606838,8.75961646153846,223.3058599027469,25.285714285714285,7.5718428571428555,3.1,9.028571428571428,175.20502113129703,96.42562475435429,1.1064152592563286,7.536391428571427,6.735119047619049,8.928076742857144,183.04213970272633,21.426470588235293,7.278969117647058,2.764705882352941,6.852941176470588,175.3619364818837,79.5241696134353,1.0237111953182503,7.256626470588236,5.824754901960785,8.723980882352942,166.02098865100476,22.677966101694917,7.664305084745764,2.5254237288135593,8.016949152542374,183.71163971142693,85.49114435010168,0.9607314381634071,7.592530508474577,8.4364406779661,9.04037220338983,160.178780182021,19.952380952380953,7.152285714285715,2.4285714285714284,5.785714285714286,174.2576505181535,72.4138872231619,1.0462947526522857,7.140864285714288,5.998677248677249,8.603903999999998,163.16667422880337,16.833333333333332,6.953083333333334,1.9722222222222223,4.388888888888889,176.81907933439425,60.02180428457777,0.8912197287761943,6.918336111111113,6.449074074074074,8.474017,131.44147782516586,11.291666666666666,6.76133333333333,1.7916666666666667,1.7083333333333333,182.94010418179153,34.85973886259999,0.812538073974833,6.7269,4.6805555555555545,8.314219833333334,109.04522844057476,9.041617122473248,0.3448087990487514,0.045113269776332926,0.8347205707491079,5.731272294887041,2.6645916084215213,43.279691661208545,0.20024609556254697,0.30217883472057067,4.906361474435197,0.21206457074910814,39.843690825080266,-0.46230677764565903,-0.06787500594530319,-0.026512143751157513,0.2124058660325009,0.479072532699168,-0.5359282942929181,-1.9553658665033307,-0.005964013526407736,-0.055328719778042074,-0.9118052803100362,-0.045629136266349596,2.0838918214657687,0.18848897832251044,0.012611293789444767,4.233222699136507e-05,-0.04095399249977137,0.274695874874234,0.02914880149634149,1.21469600382952,-0.01390263290910192,0.011299083051312494,0.09551739382298245,0.0008280075002286694,-1.6045808756666216,0.24803804994054726,0.036397210803465224,0.002483020662562262,-0.10368608799048755,0.2785799218617292,-0.034424510749907086,1.0470271156989146,-0.011908300613540547,0.0309766825208085,0.12459432742577801,0.025964361270596245,-2.8717217734693428,-0.7185948101000209,-0.05218187207106385,0.0010052763359179651,-0.09536965797020355,-0.7059173253130028,-0.4743527992037183,-3.4606315844399167,-0.017027913380491703,-0.043937404700286786,-0.692087330869724,-0.031868580891096024,-1.9821418257914503,-0.23857796408633783,-0.003191265442673201,-0.002206238639421238,-0.03226586589814383,-0.3852758016082548,0.2663581038927943,-1.154090727887148,0.026656284623891323,-0.0045747435458192084,0.3729261416437699,0.0001891896249420814,2.741751290402721,-1.82486835400034,-0.05815050676632123,-0.0006365811164239512,-0.10729856746503597,-1.1967895362663494,-0.29191578778172633,-9.139691780050374,-0.03604201176133679,-0.05233433554158878,-0.7330183344972286,-0.030686784213804424,-8.470364640744261,-0.25426080063416606,0.025245415510635503,0.0037819751444527422,-0.10100409565332275,-0.7044523715153921,0.13653924451149815,-0.9270243029430666,-0.019413412620952187,0.019894441141498298,0.511941526841943,0.011770421588056532,-5.173977470667399,-3.451099881093935,-0.09654974732461347,-0.0024380918500207607,-0.07035275465715415,-2.1522493063812917,-0.011216847880653268,-17.14255971757808,-0.027143019693085826,-0.09011532897344421,-1.2044337924428588,-0.05024735810543005,-11.640822971256876,,,0.4224867724867724,1.0694444444444444,0.3611111111111111,0.05555555555555555,0.7083333333333334,-0.3472222222222222,0.7722140440381345,0.02999820395450027,0.039553759510055825,0.9047038145418347,0.2258546211686603,0.23938126167534474,1.6769178585799691,0.4652358828440051,1.9775023022782514,1.0473359081186207,0.33152426405906976,0.4055921229800638,0.1930500071204976,0.9301663941596314,9.071440078344835,900.0,220.3847,107.0,376.0,5157.87662839674,3643.89259229954,36.81415595333901,218.50250000000003,323.95138888888886,257.77952000000005,6103.166943370973,888.0,215.20800000000003,137.0,303.0,4739.313293870199,3437.4544866703986,46.643770741999994,217.467,130.11111111111111,255.328316,7669.580778456922,1483.0,387.0328,211.0,523.0,8655.153302877448,5743.102447490571,70.20137967969804,387.8909000000001,298.6805555555556,455.500056,11611.904714942839,1770.0,530.0289999999999,217.0,632.0,12264.351479190793,6749.7937328048,77.449068147943,527.5473999999999,471.4583333333334,624.965372,12812.949779190843,1457.0,494.9699,188.0,466.0,11924.611680768092,5407.643533713601,69.61236128164101,493.4506,396.08333333333337,593.2307000000001,11289.427228268323,1338.0,452.1940000000001,149.0,473.0,10838.986742974188,5043.977516655999,56.68315485164102,447.95930000000004,497.74999999999994,533.38196,9450.548030739239,838.0,300.396,102.0,243.0,7318.821321762447,3041.3832633727993,43.944379611395995,299.9163000000001,251.94444444444446,361.36396799999994,6853.000317609742,606.0,250.311,71.0,158.0,6365.486856038193,2160.7849542448,32.083910235942994,249.06010000000006,232.16666666666669,305.064612,4731.893201705971,271.0,162.27199999999993,43.0,41.0,4390.562500362997,836.6337327023997,19.500913775395993,161.44559999999998,112.3333333333333,199.541276,2617.0854825737943,262.2068965517242,9.999455172413791,1.3082848235136548,24.206896551724128,166.20689655172418,77.27315664422412,1255.111058175048,5.807136771313862,8.763186206896549,142.28448275862073,6.149872551724136,1155.4670339273277,-13.869203329369771,-2.0362501783590954,-0.7953643125347254,6.372175980975027,14.37217598097504,-16.077848828787545,-58.66097599509992,-0.17892040579223206,-1.6598615933412622,-27.354158409301085,-1.368874087990488,62.516754643973066,9.801426872770543,0.6557872770511279,0.0022012758035509835,-2.129607609988111,14.28418549346017,1.5157376778097575,63.164192199135044,-0.7229369112732998,0.5875523186682496,4.966904478795088,0.04305639001189081,-83.43820553466432,17.36266349583831,2.5478047562425656,0.17381144637935833,-7.258026159334128,19.500594530321045,-2.4097157524934962,73.29189809892402,-0.8335810429478383,2.168367776456595,8.721602919804461,1.8175052889417371,-201.020524142854,-48.86444708680142,-3.548367300832342,0.06835879084242164,-6.485136741973841,-48.00237812128419,-32.255990345852844,-235.32294774191433,-1.1578981098734358,-2.9877435196195017,-47.06193849914123,-2.1670635005945296,-134.78564415381862,-14.076099881093931,-0.18828466111771885,-0.13016807972585304,-1.903686087990486,-22.731272294887034,15.715128129674865,-68.09135294534173,1.572720792809588,-0.2699098692033333,22.002642356982424,0.011162187871582803,161.76332613376053,-76.64447086801428,-2.4423212841854918,-0.02673640688980595,-4.5065398335315106,-50.26516052318667,-12.260463086832507,-383.8670547621157,-1.5137644939761452,-2.198042092746729,-30.786770048883604,-1.2888449369797859,-355.755314911259,-9.153388822829978,0.9088349583828781,0.13615110520029872,-3.6361474435196186,-25.360285374554117,4.915412802413933,-33.3728749059504,-0.6988828543542788,0.7161998810939387,18.42989496630995,0.42373517717003517,-186.26318894402635,-82.82639714625444,-2.317193935790723,-0.05851420440049825,-1.6884661117716997,-51.653983353151006,-0.2692043491356784,-411.42143322187394,-0.6514324726340598,-2.162767895362661,-28.90641101862861,-1.2059365945303213,-279.37975131016503,0.749979751170583,0.5018049058483508,0.44074978374695223,0.26551334016053846,0.2820664951034955,0.13348578942857103,0.17774567254362544,0.06829635696189816,0.10841881400672648,0.035160441797939715,0.06903162178458726,0.01813873645545902,0.045995236793561725,0.009376259113513674,0.02835201208967393,0.004810450114999409,9.009091097662962,5.7740755230762595,4.116177588245863,2.26321976149747,0.49817159993957816,-0.40384536574776425,4.027878877016802,0.9776633622558648,7.00907909421966,1.9860244322533562,17.427735743593246,11.044326262864981,19.002874307043097,11.792245506199476,1.911771889300305,0.5363025885569146,3.997983639107372,2.3092807485308295,8.004595281325699,1.1278209334737557,4.02038929142287,2.502889031765549,20.795760488467927,13.303452953645433,0.4070307938130692,0.8016533533744981,0.8946869142521835,0.9220303436550195,0.9220303436550195,0.9220303436550195,2.1283329146537846,506.83126955905954,0.0,2.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,2.8047572524191224,0.8141255336012696,0.3448275862068968,0.2068965517241379,0.2068965517241379,0.2068965517241379,-4.525231916630844,1075.6340551407302,80.81978923265808,37.09082948761139,82.36564461928765,,9.0,253.0,36.654988477042444,18.681894674262168,5.817862777835028,4.567099647791355,12.263210640074686,0.0,0.0,0.0,4.9839785209472085,15.57705782580294,7.6047619047619035,19.25,6.5,1.0,12.75,0.0,0.07751322751322759,-6.25,0.3337880510294303,0.03046771545103022,-0.3033203355784001,0.1383357383357383,0.3157456359102245,0.0,0.7722495894909691,1.060846560846561,0.4384615384615388,0.7417818740399389,0.9225108225108226,13.899852792686422,0.5399676711810049,0.7119676711810048,16.284668661753024,4.065383181035886,4.308862710156205,30.184521454439444,8.374245891192091,0.3982543640897755,0.2592360676268003,0.06574827802128994,0.3813400125234816,0.5555555555555556,0.505451944870389,-1.3100414150391588,-0.13428719474584921,-0.045173841897902016,-0.1310041415039159,0.494548055129611,1.2817804749232733,0.06045422114205447,0.04419932672149218,0.06746213025911962,-0.03571847623592633,0.6923285989829913,0.8210607336537644,1.649109288674991,1.0795821462488133,0.5334716459197786,1.2565992111964468,0.6826274305105515,1.2577223463670992,0.7899988090197606,0.824964376675979,0.881607299620107,0.9574461107412913,0.7536620402217454,0.7893764689460798,0.9791706000969677,1.3124041200964283,0.7629508458346631,1.0763831225431142,0.7454314319891634,1.1867902964739614,0.7738123301687807,0.763108692781519,0.8480076423071307,0.9995680365300891,0.9153077327722249,0.9450634896659884,0.9389678066945811,1.1319088319088324,0.9434024896265557,1.1163751785688385,0.9211790023734124,1.060854274324209,0.9388251950558056,0.9627523646033187,0.9343865830827649,1.0012193697192475,1.0647182597394558,1.162042723057893,0.9952620546234915,1.1226747109100055,1.1346595069563092,1.1455631259042847,1.0648262653853553,1.0412580928594766,1.1556725248450854,1.156566588061055,1.167211486413732,1.0042480553155155,1.095912945015558,1.2580729500645262,0.9411547323818334,0.9508426288087309,1.2178001265911804,1.0997571051850055,1.1058861860029832,0.7902950372141857,1.256162562426755,1.26146610825573,1.2230458994911955,0.8354050687034635,1.1568472733648953,1.1283014729768035,0.902508280457014,0.9088319088319091,1.155186721991701,1.0973118051838149,1.167421562026149,1.1627010309358308,1.131996943325605,1.1709229526406135,1.1023972626499359,1.1864499749213189,1.0678590215675958,0.7761556204326533,0.8548418038732027,0.8835865780310228,1.0926809589672657,0.5404061776065552,1.0485949800735839,0.9101114503794372,0.8030830910711634,0.7632021347814539,0.8081776875822196,1.0994281831098585,1.486103805014904,1.3021001086725872,0.9226315974779661,0.8434235517568853,1.4003630705394188,0.920833032326427,1.5074160226354467,0.9910814946732813,1.3338432381441063,1.2742305923008737,1.2045610600374428,1.2966482448793504,5.5,0.0,3.555555555555557,2.6736111111111107,1.5083333333333337,0.6983333333333335,0.349342403628118,0.1744968820861678,0.045099521289997474,0.0,4008.4744748735866,4348.896662387579,1832.9753684769094,1703.4126221342815,10.331519302739315,0.46376593736891725,5.540112568859354,0.8648572884262633,0.0,0.5555555555555556,2.0532237427084494,4.043855461526302,4.513153408920675,4.651084443403434,4.651084443403434,4.651084443403434,0.28947368421052627,0.0,0.12260536398467439,0.08624551971326164,0.06033333333333334,0.031742424242424246,0.024953028830579857,0.019388542454018644,0.01503317376333249,0.0,0.6497750705321509,14.409972299168976,5.174791914387634,2.52465483234714,99.43404632324696,1.0,3.8216961051998197,64.47516896848413,,48.9884179911471,47.339714328487766,48.084547044309446,48.87702082159184,85.2410461927118,48.36293761100071,49.14146659458133,70.19687100273079,-0.051130983692793154,-0.19684824207663723,-0.5876794983516395,0.2544634377967711,0.08358921161825729,-0.20112961873748336,-0.045179755017892585,-0.029783419794793816,-0.18309925587344783,-0.18584143974328754,-0.2151662397220187,0.05230167633350946,0.020846821510945718,0.036574744682375974,0.0009383542181988585,-0.04906311637080875,0.04792930098946696,0.010939312952955279,0.028066188949267587,-0.06942773525768658,0.03739203992152835,0.019468071058498206,0.0039045065250822983,-0.0402718935530087,0.02743293003682275,0.10555766240269042,0.05503969618856779,-0.12421652421652431,0.048606994665085924,-0.01291924460060123,0.02419211125381842,-0.05946832860878919,0.10251109264304731,0.025394445165726576,0.12243611075097721,-0.07207469273056627,-0.07947635919175663,-0.15133567419109287,0.02228338448758036,-0.11425339366515842,-0.12316939223822307,-0.17802082604497893,-0.07995970977634459,-0.08503493330372089,-0.14540199263431658,-0.14105918091764622,-0.1502777233298413,-0.049747947159146176,-0.026386647527171236,-0.009255174031165016,-0.04890442768523648,-0.03865469119706406,-0.06722343343413739,0.09996207413209648,-0.026665872227586963,0.13311762483561243,-0.015139192491921359,0.07600869678822428,0.0008921321665084269,0.06881268360502588,-0.2018298639813632,-0.16864565790300357,-0.014110728829456536,-0.12854429521096195,-0.20881742738589204,-0.10955366925990377,-0.21117737740821874,-0.17998858684402688,-0.17318994425927658,-0.1494016163131582,-0.1447049080636374,-0.21258985965759103,-0.028121164299491533,0.073215693973825,0.08383287585234668,-0.12100348211459326,-0.12291378515444909,0.05124209056275709,-0.02141938325715836,-0.09694777102352238,0.06583664656690794,0.10434239904854868,0.05550395120919101,-0.12985688232001222,-0.38169055760126236,-0.28000952293262854,-0.05404378494639329,-0.08428300094966762,-0.3755273167358228,-0.0042095936372396,-0.39608784304124106,-0.13554830927830844,-0.2982185335937747,-0.24548411255848385,-0.23694367205202463,-0.2921622653474002,0.9654893846056297,5.29643695220767,3.494135593857896,22.931275453669322,40.23634759721878,42.50208958336472,42.64112406612334,42.64112406612334,42.64112406612334,35.595041441008526,18.85204634613517,5.9674367530632555,7.300658213641149,3.474900128168957,16.742995094873365,2194.2105499985632,1795.7754694235025,618.2177388722816,26.0,29.0,39.0,49.0,57.0,55.0,51.0,45.0,38.0,263.0717622720002,19.0,4.574710978503383,5.4510384535657,6.371611847231857,7.274479558773871,8.19946419761216,9.111514017669288,10.037625011465359,10.954361623545012,11.880640245045546,0.781609195402299,1.0773793103448275,1.1754622602999185,0.7556314941188966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6191766054098702,1.054631507775524,1.0727076374412938,0.6346982530513695,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2.0,1.0,0.0,1.0,0.0,3.0,0.0,1.0,0.0,0.0,20.683585220643646,11.92182916558333,6.103966387748303,6.22790117073487,0.0,4.567099647791355,4.794537184071822,13.764808616296847,0.0,0.0,6.06636706846161,6.196843571613076,6.606881964512918,209.76801193217253,-543.6813251397055,-55.73063503991181,-18.74763190136915,-54.36813251397055,205.24278001554168,531.9527300010249,25.08915419274627,18.343197586242237,27.997512105317092,0.4444444444444444,0.6268530927577742,0.15184853741143287,245.83178128205253,0.13554704507679374,57.68731769569832,0.3731469072422258,5.0,0.10526315789473684,0.4226496037690924,0.8324148376830176,0.9290183336343328,0.9574110001805998,0.9574110001805998,0.9574110001805998,-1.2886,,2.0952380952380953,2.4803482050641814,2.0756918869192313,2.16014079767628,-9.88013184762917,2.2370293173333007,2.0417681802120082,-3.647271127563804,54.85900000000001,23.7307478388311,0.0,9.551078168738563,0.0,24.358363114326053,12.340549441675103,22.74749122234998,0.0,0.0,3.6635616461296463,0.0,5.043425116919247,2.3978952727983707,6.6240652277998935,4.948759890378168,8.292798858200374,7.195187320178709,10.007351949566416,22.66666666666667,2.148026738473167,3.2873275699168554,0.0,0.0,0.0,0.0,-0.1140556237927266,0.5230555555555554,31.243999999999996,0.0,11.430870653817083,0.0,0.0,0.0,0.0,0.0,0.0,34.08840554869764,11.423410875365658,14.598692873184667,0.0,44.50147686652407,4.736862953800049,0.0,6.22790117073487,17.057747824146507,0.0,0.0,0.0,21.913313329448002,17.956121556886234,21.926160600230695,128.95033793696825,,97.74403174948998,94.4038344119684,95.93846165673898,97.51402599899743,172.93789882141044,96.47731640896438,98.05607005802798,140.9964980432375,21.926160600230695,128.9503379369682,,95.8815978870561,92.2026570019188,94.11294206602037,95.59390084550742,180.36222423305287,94.48884590466812,96.24116500895067,144.04101313302533,4.914134257652265,93.06493692275455,,70.22684771260157,67.69338871034239,68.75485968923036,70.1194333861769,121.30219665294538,69.26954812639117,70.43203207626723,102.35760659492743,1.2181200333461497,7.163907663164903,,5.430223986082776,5.244657467331578,5.329914536485499,5.41744588883319,9.607661045633913,5.359850911609133,5.447559447668222,7.833138780179861,2.5240752260323585,64.47516896848413,,48.9884179911471,47.339714328487766,48.084547044309446,48.87702082159184,85.2410461927118,48.36293761100071,49.14146659458133,70.19687100273079,30.584313725490198,0.0,0.0,0.0,27.401744142101286,5.232406777525824,18.10387760351054,31.10852148579752,-0.7872934775762155,0.0,4.777018140589569,0.0,-5.683651738473167,0.0,-3.7132752267573705,0.0,0.0,18.406249338489715,260.1507984602778,59.543488538545034,117.27180838426277,130.88144885869957,134.88144885869957,134.88144885869957,134.88144885869957,426.0,110.85544593341217,154.85999348743638,66.17304528197084,110.60000000000001,110.60000000000001,0.8,7.268528065284385,5.247927513443585,3.669603878925609,4.175323661387555,,4.173904777344045,4.173597758780206,4.171753987771446,4.173893100711372,4.16231292816862,4.173732410880072,4.173918085642675,4.173087481163292,0.20386688216253385,0.23196242563264194,,0.23188359874133585,0.23186654215445587,0.231764110431747,0.23188295003952067,0.2312396071204789,0.2318740228266707,0.23188433809125972,0.23183819339796066,1.8878703862455535,2.016978543885774,,2.0166386600108552,2.0165651006288368,2.0161232328454877,2.016635862474824,2.0138575770170384,2.0165973629443656,2.0166418484586335,2.016442829906297,159.9899999999998,105.62263230251645,89.0905124492291,,88.78488282658626,88.7664117938304,88.95852283673224,88.73836569494095,91.16011303172264,88.77781573281256,88.80794062279823,89.51689893270904,5.8679240168064695,4.949472913846061,,4.9324934903659035,4.931467321879467,4.942140157596236,4.929909205274497,5.064450723984591,4.932100874045142,4.933774479044346,4.9731610518171685,5.247659334257363,5.077439511657966,,5.074003061968692,5.073794997782373,5.07595689046361,5.0734789939032705,5.100404109205585,5.073923460860635,5.074262732330294,5.082214087250245,32.70181783824641,14.718198223733939,18.10387760351054,4.209688995968757,-3.827330850550097,1.1522751322751323,-4.687900132275133,-0.7872934775762155,0.0,200.98433873048563,87.05598875726848,-225.63361731341186,-23.12881498366283,-7.780469562531443,-22.56336173134119,85.17796867580044,220.76612375647392,10.412269750829944,7.612624957119791,11.619269671393361,560.0,31.0,2.0223282245323335,0.6218280668847506,0.16666666666666666,0.023809523809523808,0.8407215507129939,0.12404872899788583,0.1642664266089148,0.010494597037671822,0.0,0.0,0.0,0.0,0.06804138174397717,0.039283710065919304,0.3595617594742968,0.1092765564365847,0.7680278548503194,0.1432714243434367,13.499635521070495,9.032488305270315,8.374245891192093,5.04475346305023,8.17992835800137,3.87108789342856,6.932081229201392,2.663557921514028,5.3125218863295975,1.7228616480990462,3.9348024417214735,1.0339079779611642,2.529738023645895,0.5156942512432521,1.4459526165733705,0.24533295586496986,4.783802760802767,1.1664632525219842,7.214767220971016,1.4601338657408873,11.080186695220416,1.689180646909974,58.63892192534088,29.25558084877072,25.34458349002299,24.950379214832978,24.950379214832978,24.950379214832978,96.0,116.0,29.986722999999984,18.145277,0.3793103448275862,55.09,7.979166666666667,3.916666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,29.0,0.0,0.0,30.0,6.0,1.0,3.0,27.0,7.0,19.0,23.0,0.0,0.0,0.0,9.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,7.0,3.0,2.0,18.0,9.0,0.0,3.0,4.0,0.0,2.0,2.0,0.0,0.0,2.0,1.0,1.0,3.1780538303479458,5.23810281689052,3.7727609380946383,4.2520603082138555,4.717382176595019,5.125822370571818,5.2344452899536265,5.23942951691928,5.374699536466843,5.425500526716335 +11950726,CN1C(=O)C(F)=C[C@]2(C)[C@H]3CC[C@]4(C)[C@@H](C(=O)NCc5nc6ncccc6[nH]5)CC[C@H]4[C@@H]3CC[C@@H]12,0,21.159420289855074,6.112239130434783,3.4782608695652173,6.782608695652174,165.81600911231112,83.81931904564887,1.4212144313748694,6.171639130434782,4.390297906602254,7.619323478260869,207.5101461391712,23.7027027027027,6.2727432432432435,4.364864864864865,6.445945945945946,147.22934116439734,89.59011783561083,1.803076115135135,6.417918918918919,2.7550675675675675,7.67439281081081,260.36950727454735,20.09090909090909,6.13571888111888,4.020979020979021,5.013986013986014,153.87135443802367,74.8860437948979,1.5832887989341542,6.251034265734265,2.56400543900544,7.597370993006992,222.43425509613124,16.53488372093023,6.029612558139534,3.2744186046511627,3.4046511627906977,156.55742118555057,59.45674155199999,1.412324334598939,6.12934976744186,2.637596899224806,7.539250455813953,190.13694226512064,12.866906474820144,5.874758992805756,2.672661870503597,2.1079136690647484,160.6172738183029,44.08550045806043,1.2147527070703017,5.957712230215828,2.334407474020783,7.451638762589927,156.22552348017405,10.51864406779661,5.824372542372882,2.3084745762711862,1.735593220338983,166.45895587724192,34.61675357596745,1.0568163574232645,5.8819857627118655,2.3624764595103582,7.442051376271186,130.85230924148996,10.456692913385826,5.75706692913386,2.295275590551181,1.9606299212598426,168.20446010263018,35.342596841077146,1.0117192669108386,5.809826771653543,2.2613188976377945,7.39698505511811,126.47086163685358,12.202020202020202,5.91509595959596,2.484848484848485,2.474747474747475,166.93783161623654,42.01405041817373,1.0849672254643434,5.971626767676769,2.504419191919192,7.512013030303029,140.09688987041395,13.346820809248555,6.039132947976879,2.566473988439306,2.6416184971098264,169.05795950214826,46.91252230842081,1.0994117793072138,6.087736994219653,2.719894026974952,7.621480184971099,147.31609897712895,7.39424490653224,0.1310245746691871,0.014458597914230502,0.7485822306238183,3.8580130224742706,1.788755825268074,35.506664823930166,0.2264082242903402,0.12217807183364836,1.7240979952857702,0.07291635706784286,50.016514923828296,0.4667029978939239,-0.0010730470546159378,-0.008344487500439956,0.30723445562765034,1.3744585795625492,-0.17893800837480436,2.228514130991651,0.00239316204155172,0.0007080621263987795,0.0004988842024129074,-0.0019165129628683974,2.052603515320783,0.7761209594857987,0.014375668565838743,-3.945404315001622e-05,-0.042896611894721555,0.4402539279665932,0.0884147090025639,3.6906181046723208,0.01587837176519825,0.013505084140812012,0.14990963959142914,0.0077546241827905135,4.0714716591712,-0.38197662206982136,0.01279880247944785,0.002056493062434819,-0.18194926803534528,-0.19316637603005046,0.00717378389435163,-1.8886779930858257,-0.022975352269005146,0.009682919066250536,0.19006427112624266,0.008395079399969719,-5.340169014803741,-0.8603589718017645,-0.0071989569025309435,-0.0016653831629636292,-0.11282996287280195,-0.41780866422174157,-0.26563056535458834,-4.085575516495779,-0.03693305541475565,-0.007183483156763853,-0.04282453579249601,-0.003934235078477826,-7.634702134365627,-0.5301328947415261,-0.006664191470955809,0.0007733505735598912,0.031226170260485086,-0.09343429488891013,-0.021837907684391294,-2.6010374765485063,-0.010170271289480299,-0.007032618628047872,-0.10834429021740118,-0.003014345571895911,-3.1128213057682412,0.8508766271890874,-0.001522948513761015,-0.0005477506511458049,0.0684324903621452,0.3472819678258555,-0.009123890444158143,4.0968554209153005,0.022017533308666386,0.0008911510352320014,-0.10174564893051462,-0.0029099672470052247,6.221811404259911,0.25851457231419434,-0.004875255389433109,0.0005121616510915453,0.04939756735597945,0.10480354903795354,-0.10580882697153554,1.1827148361324555,0.0019689294777857653,-0.00320479559298089,-0.12102519807046165,-0.003694922724408536,1.423564568452348,0.47615804228236897,-0.014947168285673667,-0.00030917936519186034,-0.013724226100068833,-0.3550390759215349,0.12084503766487298,2.4188216146925736,0.029490971148917314,-0.010921550094517944,-0.11337084441034162,-0.00995799969161774,7.191681304157756,,,0.47006802721088436,1.0142857142857142,0.34285714285714286,0.0,0.6714285714285714,-0.32857142857142857,1.3428784964825118,0.01983416474918219,0.03457702189203934,0.7385007555958424,0.1633478494514004,0.314366944724363,2.0813792520783543,0.4777147941757634,2.077507619554667,1.6304796146200553,0.2954270839229753,0.10126301757769172,0.05033790343394463,0.44702800493461164,6.945937007942044,1460.0,421.7445,240.0,468.0,11441.304628749467,5783.533014149772,98.06379576486599,425.84309999999994,302.93055555555554,525.7333199999999,14318.200083602813,1754.0,464.183,323.0,477.0,10894.971246165403,6629.668719835201,133.42763252,474.926,203.875,567.9050679999999,19267.3435383165,2873.0,877.4077999999998,575.0,717.0,22003.603684637386,10708.7042626704,226.41029824758405,893.8978999999998,366.6527777777779,1086.4240519999998,31808.098478746768,3555.0,1296.3666999999998,704.0,732.0,33659.84555489337,12783.199433679998,303.6497319387719,1317.8102,567.0833333333333,1620.9388479999998,40879.442587000936,3577.0,1633.183,743.0,586.0,44651.602121488206,12255.7691273408,337.7012525655439,1656.2440000000001,648.9652777777777,2071.5555759999997,43430.69552748839,3103.0,1718.1899000000003,681.0,512.0,49105.391983786365,10211.942304910397,311.760825439863,1735.1858000000002,696.9305555555557,2195.405156,38601.43122623954,2656.0,1462.2950000000003,583.0,498.0,42723.93286606806,8977.019597633594,256.976693795353,1475.696,574.3749999999998,1878.834204,32123.59885576081,2416.0,1171.189,492.0,490.0,33053.690660014836,8318.781982798399,214.82351064194,1182.3821000000003,495.875,1487.3785799999998,27739.184194341964,2309.0,1044.77,444.0,457.0,29247.026993871652,8115.8663593568,190.198237820148,1053.1785,470.5416666666667,1318.5160720000001,25485.685123043306,510.20289855072457,9.04069565217391,0.9976432560819046,51.65217391304346,266.2028985507247,123.42415194349711,2449.9598728511814,15.622167476033473,8.430286956521737,118.96276167471815,5.031228637681157,3451.1395297441527,34.53602184415037,-0.07940548204157939,-0.6174920750325568,22.735349716446123,101.70993488762865,-13.241412619735524,164.9100456933822,0.17709399107482726,0.05239659735350968,0.03691743097855515,-0.1418219592522614,151.89266013373793,110.98529720646921,2.0557206049149404,-0.00564192817045232,-6.134215500945182,62.95631169922282,12.643303387366638,527.7583889681418,2.27060716242335,1.9312270321361178,21.437078461574366,1.1089112581390435,582.2204472614816,-82.12497374501159,2.7517425330812877,0.4421460084234861,-39.11909262759924,-41.53077084646085,1.5423635372856004,-406.06576851345255,-4.939700737836106,2.0818275992438653,40.86381829214217,1.8049420709934896,-1148.1363381828044,-239.1797941608905,-2.0013100189036024,-0.46297651930388894,-31.36672967863894,-116.15080865364416,-73.84529716857556,-1135.7899935858266,-10.26738940530207,-1.997008317580351,-11.905220950313891,-1.0937173518168357,-2122.4471933536443,-156.3892039487502,-1.9659364839319635,0.22813841920016792,9.2117202268431,-27.563116992228487,-6.4421827668954315,-767.3060555818093,-3.000230030396688,-2.0746224952741223,-31.961565614133345,-0.8892319437092938,-918.2822852016311,216.12266330602822,-0.3868289224952978,-0.13912866539103444,17.38185255198488,88.2096198277673,-2.3174681728161683,1040.6012769124864,5.592453460401262,0.22635236294892835,-25.843394828350714,-0.7391316807393271,1580.3400966820172,51.185885318210474,-0.9653005671077556,0.10140800691612596,9.78071833648393,20.7511027095148,-20.950147740364038,234.17753755422618,0.3898480366015815,-0.6345495274102162,-23.962989217951407,-0.7315946994328901,281.8657845535649,82.37534131484983,-2.5858601134215444,-0.05348803017819184,-2.374291115311908,-61.42176013442554,20.906191516023025,418.45613934181523,5.101938008762695,-1.8894281663516044,-19.6131560829891,-1.7227339466498688,1244.1608656192918,0.7009944270878204,0.5909143351842655,0.41800044490379296,0.32374762817884123,0.260177171235265,0.185629330890501,0.16338459494861257,0.10978966817616416,0.10141840160128979,0.06563903906597846,0.061927843028065026,0.037900023980062064,0.038612364255329754,0.02331603860649352,0.023860214878079284,0.013857810165562846,9.004074713866396,5.727888957313834,4.10774562217653,2.2202724630728077,0.4423894852930751,-0.407646516545439,4.0307520529150676,0.977244059106735,7.004065684189493,0.9950221284568228,17.42477438026267,10.99218776813179,19.000143475852063,11.742871540304199,1.9688805318304523,0.5457823384124336,3.9887072185393464,2.2678131519553957,8.001921984216711,1.0881780275587958,4.01000909590366,2.462286520582824,20.86617425828277,13.304118256714776,0.24350881943525132,0.5683341776144286,0.78796314008112,0.8771609483109359,0.8989000787457185,0.8989000787457185,1.1116876550040597,1192.1272035035638,0.0,5.0,3.0,0.0,5.0,7.0,0.0,4.0,2.0,4.56471506717916,2.5053710191899032,1.1129563408619028,0.5474556160988024,0.40963278994913654,0.40963278994913654,250.69879336317743,1983.5810168774178,66.80007135616776,28.747550969237942,57.02390090339328,,17.0,1029.0,11.73405360876967,13.979489415818463,28.69690754345442,35.770056263164406,44.041630455172324,0.0,24.220445391974625,12.13273413692322,34.1161985662292,0.0,16.452380952380953,35.5,12.0,0.0,23.5,0.0,0.029931972789115642,-11.5,0.12288692746358654,0.021620427881297588,-0.10126649958228895,0.02879941165655442,0.14954974677340283,0.0,0.5702553485162171,0.8327891156462582,0.4473684210526305,0.5486349206349195,0.8039897039897038,47.000747376887915,0.6941957662213767,1.2101957662213767,25.847526445854484,5.717174730799014,11.002843065352705,72.8482738227424,16.72001779615172,0.5644502532265971,0.14905933429811868,0.06078147612156295,0.3586107091172214,0.6296296296296297,0.32240600168951644,-0.9060644649164816,-0.05647509633462883,-0.013131369056760604,-0.039394107170281814,0.6775939983104838,1.9042568695760462,0.038166697512233186,0.027597925646029656,0.041396888469044484,-6.011777326360616,0.8104883658797987,0.6366733813106733,1.644618603986454,0.8895258895258898,0.4591092617007251,1.2793923012213058,0.8132596682564097,1.1440903383609826,0.6322884381591959,0.5051988454520067,0.63129728376583,1.038398492027123,0.8001478694013634,0.5737650247951493,0.9931274155584163,1.5650679287042928,0.7886617955215516,1.030816382098541,0.8024636782402079,1.0157622386698852,0.5865420131033863,0.45145384845760667,0.5441321728306759,0.9651706176283887,0.975115935557006,0.6539161334077747,0.7423563778527298,1.5155038759689927,0.9219755287253868,1.0231182244503059,0.9781985758080516,1.1669026586392122,0.6852648746926224,0.6015355974416706,0.6223875499642363,1.1436896465842274,1.061927642297025,0.8309007572335482,0.9595300105061672,1.1649589419373596,0.9730772002606972,1.056971535152093,1.0600155765895911,1.1794464408226182,0.8537531651984768,0.8177733180752234,0.829225888230368,1.167726200231084,1.0669201689330374,1.0671364200718862,0.7411933905995554,0.8211379330023402,0.9499062481544912,0.9636246747512399,1.0709982622366925,1.024252884213871,1.0761563025632896,1.1317302588374518,1.0584927204958172,1.05086122503084,0.887311033910785,0.9996089007096063,0.8168180915208741,0.8344733423473584,0.862878611210184,0.8863066712955231,0.8879981158462467,0.8609868587696017,0.989809293679793,1.1109275668544318,1.030335958239565,0.8586292976245472,0.9720038700836339,1.1004894182670033,0.9444624863002922,0.867692072237527,0.9759776554746066,1.0246491082155669,0.9742549989945781,0.9517367197006249,1.0865558699270066,1.151434549485673,1.1155785980113675,0.943640066129037,0.9676304518732437,1.2665216742990724,1.2917699398511966,0.9816663747299589,1.1967489325491931,0.8871991219857183,0.9598650170744917,0.7844313428700767,1.2307949856045972,1.209159000698827,1.3029316451024255,0.7921627109116243,9.0,0.22569533721048873,7.111111111111114,4.611111111111111,3.37,1.476111111111111,1.1724263038548752,0.757830215419501,0.5575947971781304,0.3359567901234568,7354.997585897731,8477.499080283238,3398.4885612488733,3055.6183709810994,18.362396452277505,0.47523042880367555,9.636026912398576,0.9055982947339842,1.0,0.6296296296296297,1.5438093895990095,3.603153437588266,4.995568115916266,5.561068840679367,5.698891666829033,5.698891666829033,0.225,0.007052979287827773,0.11287477954144623,0.0649452269170579,0.05265625,0.029522222222222224,0.0254875283446712,0.017623958498127933,0.012967320864607683,0.009598765432098765,0.5577290311080597,25.2875,9.328798185941043,4.0254364666435425,204.51065624699223,1.0,4.528710624259754,228.30615789747273,,199.87591318133096,197.177093535382,195.16526384794142,199.82318888581952,246.69165456047674,198.72929351699378,200.07411703850156,230.21735570514713,0.0631170597935738,-0.008189662567691472,-0.5771297846402595,0.4104217854217856,0.3562607413598266,-0.10003489903267686,0.06276326267314512,0.010570119743012469,0.005795329028950809,0.00028935953975760937,-0.026283717946649954,0.04103851534731591,0.10496284195295671,0.10971734578902206,-0.002728759965804471,-0.057303807303807346,0.11411416327574857,0.049428048117922146,0.1039415592248186,0.07013160327972992,0.11053607196551496,0.08694960495362188,0.10634958320223614,0.08140254604647626,-0.0516586381568691,0.09768245775086441,0.14223322860446713,-0.24305849189570122,-0.05006887610404345,0.004010488068306652,-0.05319221060190726,-0.10147755162613763,0.07925251168993992,0.11023983070912359,0.1151330063316077,-0.1067681149503609,-0.11635521715566985,-0.05494356246304925,-0.11518289483135283,-0.150724874645738,-0.1082963333166219,-0.14850018185952202,-0.11506503178361753,-0.16312594443297979,-0.058795191714471715,-0.024838806094312417,-0.05395545302431022,-0.1526436247306065,-0.0716953389349053,-0.05086214924018386,0.05348724531572601,0.041713747645951045,-0.024218242485088255,-0.012208434139477102,-0.07325490832345098,-0.04492006119193886,-0.05756039952589151,-0.06284114389880897,-0.04133977194021504,-0.062235869702414355,0.11507282189658123,-0.011623380710116244,-0.03788407799947846,0.09141612980195662,0.09001575831984417,-0.00510069083508968,0.11538271592757912,0.09724705618657942,0.00729387051094855,-0.05901384330166814,-0.03990829169232539,0.12439514055977911,0.034961591830129514,-0.03720870990607854,0.03542263600728971,0.06598816447301298,0.027165162073698644,-0.05915219141532544,0.03330965727131178,0.00869636906502504,-0.02623053011791168,-0.0701962408177394,-0.05067344109046349,0.028461890449991138,0.0643957629617759,-0.11407912083219894,-0.021383772273489848,-0.01833362527004145,-0.09202640681960078,0.06755815184935171,0.06812303061092853,0.13025574155424158,-0.08939042768155801,-0.06575661286094722,-0.1365674327689275,0.14378613374222876,10.283692482684867,25.69550740510969,11.501031405811274,14.76349009508602,35.25261859108985,40.57857917195475,41.90683618057834,42.045761589337204,42.045761589337204,72.71276668441334,57.066786511701935,10.339947937304135,3.5442056152192105,1.761826620188062,15.645980172711408,14281.426504438981,13802.694825726372,1249.5738396394663,413.0,63.0,93.0,130.0,167.0,203.0,250.0,315.0,359.0,479.26965354800103,40.0,5.332718793265369,6.251903883165888,7.198183577101943,8.132412674500905,9.08421009483197,10.02548392184538,10.981165573844905,11.927000071423885,12.885782447546791,0.6183574879227053,0.9782608695652172,1.1373864366627557,0.5786970677844827,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6545340796667535,0.9645353793691391,1.0003905549046308,0.6098122225270434,3.0,2.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,3.0,0.0,1.0,0.0,0.0,7.0,1.0,0.0,0.0,5.0,1.0,2.0,0.0,0.0,15.200676855804016,5.824404497999927,11.474051100185893,5.907179729351506,5.907179729351506,9.589074368143644,14.358372089569237,0.0,0.0,13.847474399381248,79.90239258919412,30.6192528989964,12.061457123528836,227.56060555408132,-639.5184246786732,-39.861252747427066,-9.268382966357583,-27.80514889907275,478.25939891725875,1344.0625921987446,26.938818608740704,19.479168002880357,29.218752004320535,0.47058823529411764,0.7721451657774476,0.12404996691355143,7.932758438652531,0.10027303998306772,47.35373967333746,0.2278548342225525,9.0,0.075,0.25273032800678413,0.5898565951700689,0.8178027527372934,0.9103784195393811,0.9329407956295243,0.9329407956295243,4.126900000000003,,1.547619047619048,1.8900112360825794,1.8262194925613833,1.5788210235257965,-6.753702287450949,1.6826593955087557,1.5118045659983017,-2.9412717626339027,129.36040000000003,13.979489415818463,0.0,25.16863389769843,34.50160512343913,64.95900137199784,7.04767198267719,36.05687619278827,0.0,0.0,4.394449154672439,0.0,5.808142489980444,3.044522437723423,7.428333194190806,5.476463551931511,9.14984699154722,7.644440761556566,10.927932892952485,42.666666666666664,5.50063959729174,8.735501177370509,3.2330091635531333,0.0,0.0,1.5279722417045865,0.7143375865117668,0.0,67.49999999999999,0.0,25.672140497527185,0.0,0.0,0.0,1.6397049166115518,0.0,-0.9816602091230899,78.47966412973014,5.316788604006331,4.39041504767482,0.0,44.75571756422026,16.133830774056218,34.50160512343913,58.19680863493724,30.23247169478834,0.0,11.16387793838399,0.0,39.930097677129304,45.16285149700599,45.78625641969106,456.6123157949456,,399.6633909885122,394.2461864287021,390.23251427525054,399.55615942743754,495.36767436747573,397.36243506852986,400.0618452446603,461.2750747710468,45.78625641969106,456.61231579494563,,398.25914843470196,392.5456782770681,388.615005581839,398.122297486232,500.13701140840465,395.8416195465413,398.68992226875974,463.3759831729281,5.234038913470474,349.9623598246457,,311.46118395610057,307.49717827723885,304.354559131968,311.4168404213506,380.11066703786537,309.77127824741905,311.7376373477698,356.7191448675138,1.308178754848316,13.046066165569874,,11.418954028243206,11.264176755105774,11.1495004078643,11.415890269355359,14.153362124785021,11.353212430529425,11.430338435561723,13.179287850601336,2.6341213459982002,228.30615789747273,,199.87591318133096,197.177093535382,195.16526384794142,199.82318888581952,246.69165456047674,198.72929351699378,200.07411703850156,230.21735570514713,66.5529411764706,0.0,6.2060757066403855,0.0,14.611751183825856,0.0,0.0,69.02694828841953,6.150346725989103,3.13762821723297,0.0,0.0,1.2761365681448364,1.6367439308714349,-0.39366063748530244,0.0,0.0,42.07704335436599,544.9955043615615,106.52284788233166,248.61758719359034,344.69419999822236,383.7137500068763,393.22352501120326,393.22352501120326,2068.0,156.81886103752706,160.82450010977843,88.87413147455489,90.97999999999999,90.97999999999999,0.8888888888888888,8.498036652235175,6.321928094887363,4.595930863866849,5.8219147698734774,,5.8449608064089285,5.846382642629952,5.84735395554003,5.8450524686393335,5.817747917650937,5.845572874937495,5.844824706831541,5.829337692660019,0.1313123103961957,0.16634042199638507,,0.16699888018311224,0.16703950407514148,0.1670672558725723,0.16700149910398096,0.16622136907574106,0.16701636785535698,0.1669949916237583,0.16655250550457196,2.777934285693985,3.014392174390702,,3.018342857906572,3.0185860867936936,3.018752212121412,3.0183585400496544,3.013676199621947,3.018447569726547,3.018319572692786,3.0156663590871027,359.43000000000137,1710.8057112239906,253.40563860038105,,250.09114017732136,249.88560960550024,249.8514992168737,250.06582992503763,254.3041207234089,250.00594994234638,250.11599250355408,252.42233579853945,48.8801631778283,7.24016110286803,,7.145461147923467,7.139588845871435,7.138614263339249,7.144737997858218,7.265832020668825,7.143027141209896,7.14617121438726,7.212066737101127,8.697482683177826,6.787754487912192,,6.7745883806307905,6.773766220066373,6.773629706735354,6.774487171395218,6.791293844973866,6.77424768584379,6.774687748771025,6.783866588902162,14.611751183825856,39.277394769322264,3.13762821723297,1.134311604219284,0.9542733553003521,3.844199320612195,9.137263101639412,4.820730481577968,1.749114632936367,439.785909516634,160.6168276296825,-451.38489736620534,-28.13486959242218,-6.541810106756599,-19.6254303202698,337.5650510822399,948.6662648354786,19.01395707087398,13.748786446890994,20.623179670336494,3847.0,71.0,3.3867816377516076,2.3435740757533234,0.23570226039551584,0.21407617506269555,1.3760759179137638,0.8969012464219888,0.19245008972987526,0.15949193013756402,0.0,0.0,0.0,0.0,0.17955837819827097,0.1112841830520807,0.6614501767932718,0.4168152723396304,1.3903848644242724,0.854862379841364,24.534804948073717,20.682001731449294,16.72001779615172,12.949905127153649,16.391161787821694,11.694647846101562,15.19476733022097,10.210439140383267,13.184392208167672,8.5330750785772,10.34194978568686,6.329304004670365,7.83830994383194,4.7331558371181846,5.965053719519821,3.4644525413907115,9.099511858226506,6.0094556976368345,16.072343011039067,10.354693847295705,25.840471092048546,15.897151720340254,115.68491497237197,48.69190669415411,31.008636876869677,25.42039120245442,24.470450087429583,24.470450087429583,206.0,259.0,75.42196199999998,42.08803800000003,0.42028985507246375,410.08,11.208333333333332,7.277777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,9.0,10.0,69.0,0.0,0.0,74.0,10.0,3.0,7.0,67.0,13.0,40.0,61.0,0.0,0.0,0.0,27.0,0.0,1.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,4.0,2.0,3.0,35.0,8.0,0.0,5.0,2.0,0.0,6.0,3.0,0.0,0.0,1.0,2.0,2.0,3.8918202981106265,6.957058704267687,4.480173695813406,5.029620594007336,5.53066839861316,5.938195618228642,6.181277504408814,6.493647461273867,6.826896808977469,6.73344839373232 +219078,COC[C@@H](NC(C)=O)C(=O)NCc1ccccc1,0,21.555555555555557,6.221383333333334,2.7222222222222223,7.0,165.43550968427726,84.83385627777777,1.3502317857578336,6.267680555555556,5.093364197530864,7.761596666666666,200.02854999540187,23.055555555555557,6.3807777777777765,3.25,5.777777777777778,149.47758899163884,86.28336094444441,1.663278154444444,6.507138888888889,3.2793209876543212,7.807316666666665,242.77352116817636,18.114754098360656,6.3130655737704915,2.9508196721311477,4.065573770491803,159.2739455536941,65.68248285245903,1.3520803147342946,6.388118032786886,3.1962659380692173,7.826702426229509,190.3760312878965,15.783783783783784,6.299647297297296,2.581081081081081,3.4594594594594597,162.15368972687824,55.226150499999996,1.2322467494005542,6.3594905405405395,3.242867867867868,7.838118972972973,168.4776537999139,14.225,6.18555,2.2875,3.45,166.2192382037079,49.76256534999999,1.08525585211225,6.228814999999999,3.2184027777777784,7.7735796,147.10174167930876,15.2,6.233773333333334,2.2133333333333334,3.466666666666667,166.19659749438242,54.04163941333332,1.0828447374684131,6.274963999999999,3.958888888888889,7.80691744,148.744314961344,12.73972602739726,6.245041095890412,2.1506849315068495,2.26027397260274,168.873547746784,43.087810684931505,1.0338322789880956,6.273760273972604,3.3165905631659056,7.873621369863014,140.62175430047367,13.016666666666667,6.076133333333336,2.066666666666667,2.5833333333333335,160.41059013879985,43.60596901666666,1.167638027260683,6.145191666666667,3.1166666666666667,7.669899533333334,152.8783403602605,10.328125,5.662390625000001,1.921875,1.96875,167.72257798369483,35.48055325,0.9800856309159531,5.7152734375000005,2.3802083333333335,7.337717250000001,123.17511916444704,7.700617283950619,0.14515833333333325,0.021950552831609387,0.4722222222222222,4.033950617283951,1.3976017776459677,36.49350997839505,0.21729187654558332,0.13517862654320983,1.949309842249657,0.09115869135802462,48.453725447019565,0.10185185185185139,-0.006311111111111138,-0.011932802673641805,0.125,0.8503086419753083,-0.23897525760493987,0.462047932098758,-0.021188439944444325,-0.0037002314814815317,-0.09458590534979419,-0.0055995555555555425,-1.771818901865597,-0.18786682857721126,-0.0003651639344262531,-1.777838770071148e-05,-0.06147540983606557,-0.5348613640963368,-0.02341279156795968,-0.8727292352256664,0.0035931695211106982,-0.0013825427545031612,0.042253100474487826,-0.0002936312487350585,-0.5529969445017359,-1.3965632298965636,-0.009420270270270285,0.0025104973581633653,-0.033783783783783786,-0.626292959626293,-0.007298576369257501,-6.665531628545214,-0.026356443486101323,-0.011763536453119793,-0.31829340914989057,-0.0042476883550216695,-8.44237409897209,0.07021604938271607,0.00332999999999999,-0.003808252264167915,-0.05625,0.21604938271604937,-0.07839148733753827,0.3048779632716047,-0.004842097975000004,0.003207727623456777,-0.10214549039780521,0.002499053086419761,-0.582842104452208,0.766049382716049,0.029696999999999973,0.0036779607307591933,-0.03666666666666667,0.2786419753086421,-0.09588308425026583,3.448271203086421,-0.01619353296484334,0.027502595679012316,0.5935193758573388,0.019838093827160494,-0.8502585415102082,-1.0925503128699476,-0.04864417808219179,-0.0019075188591808022,0.003424657534246575,-1.1671317436157618,0.267708204721828,-4.8731413307542715,0.038645996155660924,-0.044206975097243376,-0.453823202642013,-0.02979650870962284,4.1492105116653715,-2.037654320987654,-0.028028333333333322,3.1501791366169827e-06,0.016666666666666666,-0.22006172839506175,-0.2706351393255971,-9.67977134691358,-0.04805565855659998,-0.027895524691358007,-0.3885845336076818,-0.015740224691358017,-12.532709936395579,2.0823688271604937,0.014074218750000027,0.0006391207955750585,-0.0234375,0.5216049382716049,0.15366097196341125,9.940730034625775,0.03887877285657028,0.017214385609567926,0.20481824417009603,0.004347648919753049,12.588983451346555,,,0.46111111111111114,1.1111111111111112,0.5,0.0,0.6111111111111112,-0.1111111111111111,0.708130737028632,0.015776922613183173,0.02055470039096095,0.8076251440429572,0.2517149185743613,0.22774224561096088,1.5157558810715892,0.47945716418532214,1.9559100752227205,1.4391457945344106,0.22051568610192482,0.29624859458638486,0.0,0.5167642806883097,6.948103956555555,776.0,223.96980000000002,98.0,252.0,5955.678348633982,3054.0188259999995,48.60834428728201,225.6365,183.3611111111111,279.41747999999995,7201.027799834467,830.0,229.70799999999997,117.0,208.0,5381.193203698998,3106.200993999999,59.878013559999985,234.257,118.05555555555557,281.06339999999994,8739.846762054349,1105.0,385.097,180.0,248.0,9715.71067877534,4006.6314540000008,82.47689919879197,389.6752,194.97222222222226,477.428848,11612.937908561686,1168.0,466.17389999999995,191.0,256.0,11999.37303978899,4086.7351369999997,91.18625945564101,470.60229999999996,239.97222222222226,580.020804,12467.346381193629,1138.0,494.844,183.0,276.0,13297.539056296633,3981.005227999999,86.82046816898,498.30519999999996,257.4722222222223,621.886368,11768.1393343447,1140.0,467.533,166.0,260.0,12464.744812078681,4053.1229559999992,81.21335531013098,470.62229999999994,296.9166666666667,585.518808,11155.823622100801,930.0,455.88800000000003,157.0,165.0,12327.768985515231,3145.41018,75.46975636613098,457.9845000000001,242.11111111111111,574.77436,10265.388063934577,781.0,364.56800000000015,124.0,155.0,9624.635408327991,2616.3581409999997,70.05828163564098,368.71150000000006,187.0,460.19397200000003,9172.70042161563,661.0,362.3930000000001,123.0,126.0,10734.24499095647,2270.755408,62.725480378621,365.77750000000003,152.33333333333334,469.61390400000005,7883.2076265246105,277.2222222222223,5.225699999999997,0.7902199019379379,17.0,145.22222222222223,50.313663995254835,1313.7663592222218,7.822507555641,4.866430555555554,70.17515432098766,3.2817128888888867,1744.3341160927043,3.66666666666665,-0.22720000000000096,-0.42958089625110496,4.5,30.6111111111111,-8.603109273777836,16.633725555555287,-0.7627838379999957,-0.13320833333333515,-3.405092592592591,-0.20158399999999954,-63.78548046716149,-11.459876543209887,-0.02227500000000144,-0.0010844816497434001,-3.75,-32.626543209876544,-1.4281802856455406,-53.236483348765645,0.2191833407877526,-0.08433510802469284,2.5774391289437575,-0.01791150617283857,-33.73281361460589,-103.3456790123457,-0.697100000000001,0.18577680450408904,-2.5,-46.345679012345684,-0.5400946513250551,-493.24934051234584,-1.950376817971498,-0.8705016975308647,-23.553712277091904,-0.3143289382716035,-624.7356833239346,5.617283950617286,0.2663999999999992,-0.3046601811334332,-4.5,17.28395061728395,-6.2713189870030615,24.390237061728378,-0.38736783800000035,0.25661820987654216,-8.171639231824416,0.19992424691358088,-46.62736835617664,57.45370370370368,2.227274999999998,0.2758470548069395,-2.75,20.898148148148156,-7.191231318769938,258.6203402314816,-1.2145149723632505,2.0626946759259237,44.51395318930041,1.487857037037037,-63.769390613265614,-79.75617283950618,-3.5510250000000005,-0.13924887672019856,0.25,-85.2006172839506,19.54269894469344,-355.7393171450618,2.8211577193632476,-3.2271091820987663,-33.129093792866946,-2.175145135802467,302.8923673515721,-122.25925925925925,-1.6816999999999993,0.00018901074819701897,1.0,-13.203703703703704,-16.238108359535826,-580.7862808148147,-2.883339513395999,-1.6737314814814803,-23.31507201646091,-0.9444134814814811,-751.9625961837347,133.2716049382716,0.9007500000000017,0.04090373091680374,-1.5,33.382716049382715,9.83430220565832,636.2067222160496,2.488241462820498,1.1017206790123473,13.108367626886146,0.2782495308641951,805.6949408861796,0.7433593827013323,0.5890588916056911,0.47945716418532225,0.3171422588269741,0.32895335902862505,0.1778115529329975,0.20805664088945944,0.09737021199639902,0.141521386700698,0.055672858992777394,0.10169712756684625,0.030465263162637944,0.0668753645604401,0.01902061205854107,0.03987618743383308,0.009545204557059235,8.02353081543527,5.694859036784558,3.5456905819517948,2.1947660863367133,0.40713528720382913,-0.41848496228997906,3.1252900801594294,0.9726815233453382,6.023299137772452,0.9955242588275933,14.541524108348446,10.955270315003387,16.01153666296864,11.70593581358957,1.9803945700863255,0.7510014583053297,3.4910379205748945,2.2447363940695926,7.0093547272195815,1.2579379652903926,3.7039070262651332,2.4407181654733767,20.889396510922637,14.701777629564763,0.29137502299724954,0.6058129160343418,0.7893478471540221,0.8702805425186508,0.8949336318922266,0.8949336318922266,2.276028959639277,392.48264694846,0.0,2.0,3.0,0.0,5.0,1.0,1.0,0.0,0.0,3.6088681628877577,1.9242507987189974,0.9409528605813122,0.5073517362914011,0.37527152789797125,0.37527152789797125,184.92325470063275,965.9143550708709,48.42139794129784,26.830954307524188,54.034384202548964,,10.0,284.0,6.041840829147961,9.589074368143644,18.42124142321593,6.544756405912575,5.563451491696996,14.033534740968157,0.0,30.33183534230805,10.633577208012662,4.736862953800049,8.3,20.0,9.0,0.0,11.0,0.0,0.03888888888888885,-2.0,0.15277777777777757,0.04087301587301584,-0.11190476190476173,0.057222222222222174,0.18533757961783415,0.0,0.5861111111111112,0.8722222222222219,0.4333333333333337,0.5452380952380954,0.8149999999999997,12.746353266515378,0.2839846070372971,0.3699846070372971,14.537252592773228,4.530868534338503,4.099360420997296,27.283605859288606,8.630228955335799,0.5286624203821658,0.2008032128514056,0.0,0.24096385542168672,0.38461538461538464,0.3131302279020897,-0.6112813384439607,-0.058001883872550605,-0.016980037178998906,-0.055571030767632784,0.6868697720979104,1.3408819596809893,0.039860287249203846,0.0372467211022497,0.05363527838723957,-3.01973969368278,0.8627254509018033,0.7677573233144737,1.602971875782165,1.0008169934640523,0.5991775057383321,1.4910622870829913,0.8712174789543864,1.2920333759113047,0.7491801828285046,0.5818773571420716,0.7709928649726826,1.1258689728703242,0.9800091987253192,0.9763771548999477,1.225756506547416,1.4513018322082931,1.1339320430970687,1.142162363540812,0.9806187192933236,1.0219137131468814,0.9738320544127751,0.64887728702377,0.9766501575100417,1.007448529105254,1.1558928668147102,1.1090024665000267,1.0927349061702851,1.1685214626391096,1.1578248102731652,1.084803308323621,1.156272772972768,1.107052960260371,1.1178416267418871,1.2692527486308476,1.0901306106906061,1.1360670838710656,0.9942384769539075,1.072078860248388,1.3353909311133552,1.1966911764705883,0.979102907421576,1.022084887985348,0.9922335949230253,0.9482053495211934,1.061976394402696,1.205317382651434,1.0696560359942116,0.9483765608784673,0.9073346693386771,0.9016310414553713,1.0653862420728137,1.084313725490196,0.9736801836266258,1.0449992907117027,0.9093543429649666,0.9975978533938883,0.8923035649560622,0.8284825227879973,0.8886338218496741,0.9515656194495942,1.19766931122519,1.6578148670388528,1.3102532164652112,1.0153102336825142,1.4741224806364046,0.7066020402976001,1.18144457225558,0.7077846749543171,1.6250666442932369,1.679966851083372,1.698649429357846,0.8136687075701204,1.2183366733466932,1.1499671495365853,0.7874225345603694,0.7892156862745099,0.9780986993114001,1.182381573813036,1.219613803349267,1.2435895296423198,1.1612592505914952,1.400661923977701,1.1559919453987042,1.2542562184227293,0.6766345190380759,0.6555708146755459,0.5898668843517918,0.9168198529411765,0.7606876434583014,0.7234082443173431,0.6782886812664474,0.7649745315193646,0.6538938283250042,0.46519882459014583,0.6693879021798782,0.7314574782084209,3.5,0.037037037037037035,1.5555555555555562,0.8125,0.7911111111111113,0.47916666666666663,0.1640816326530612,0.15625,0.1148904006046863,0.07,3024.173488387235,3495.5574064231564,1686.0783350265378,1499.8015745371904,10.99766598716878,0.4101184761980156,6.487319970776375,0.6952556736387747,1.0,0.38461538461538464,1.5610568385545545,3.2456742027233147,4.228972140861,4.662573265150911,4.794653473544341,4.794653473544341,0.19444444444444442,0.012345679012345678,0.07070707070707075,0.03869047619047619,0.039555555555555566,0.023958333333333328,0.010255102040816325,0.012019230769230768,0.009574200050390523,0.00875,0.42030009210366354,16.055555555555557,8.991735537190083,6.666666666666667,106.52231171708374,1.0,3.759440753896543,79.31494083363592,,65.90684403225741,64.39255829881783,64.15606397824514,65.92293818375661,95.98500375669771,65.31041233280489,65.9934351842933,84.49128438673598,0.01322645290581156,-0.043477428861205404,-0.5436219654777099,0.2647058823529412,0.21078806426931895,-0.17098952035354073,0.01266109870966921,-0.0975114223379604,-0.027372903365745868,-0.04852276600657523,-0.06142645832379666,-0.03656723782370347,-0.024396333650908392,-0.00251562501470523,-0.0008099289269430208,-0.13018322082931533,-0.13258996324958922,-0.016752119196209603,-0.023914642240287137,0.0165361428979004,-0.010227524793360965,0.021675928350992378,-0.003221099868380355,-0.011412888057625118,-0.18135730921302065,-0.06489651716128565,0.114370575421143,-0.07154213036565978,-0.15525548501830067,-0.005222214572129955,-0.18264978163216836,-0.12129511652761804,-0.08702216285175512,-0.16328518035006426,-0.04659663595146322,-0.17423580996270718,0.009118236472945893,0.02294046730581543,-0.17349231672579696,-0.11911764705882352,0.05355776587605202,-0.05609000259685985,0.008354306380835909,-0.02228384259907771,0.023729547381008693,-0.052400848846031196,0.027414315071776985,-0.012028839868866248,0.0994789579158316,0.20458350077501572,0.16755663326450854,-0.07764705882352942,0.06907421576128542,-0.0686054395349763,0.0944899847980606,-0.07452433667692254,0.2034537292048985,0.3044766732272642,0.2176215293530995,-0.017547846603454688,-0.14187827710214948,-0.3351111642380744,-0.08690072062485478,0.0072522159548751,-0.2893272264204337,0.19154827147740094,-0.1335344649949889,0.1778529265338357,-0.3270263667245696,-0.23281224606051606,-0.3268641559650897,0.085632435347045,-0.2646092184368737,-0.19308800734829787,0.00014351251928747052,0.03529411764705882,-0.05455241009946442,-0.19364252654388997,-0.2652463781270756,-0.22115717955300046,-0.20636046840172034,-0.19934467327124591,-0.1726683924140429,-0.25865317518462305,0.27041583166332656,0.09695770423101235,0.029116387203456096,-0.04963235294117647,0.12930374904361133,0.10994617667289183,0.27239720269469564,0.17892418931921883,0.12734546910095546,0.10507218489889716,0.04769319145530196,0.2598145619393424,7.76948053799506,7.722251753629722,2.1822472719434427,14.902154575778352,28.290772246857347,32.710460094998005,35.43364189456848,35.566778744629055,35.566778744629055,35.20638135400897,25.904624301619393,3.969282349834647,5.3324747025549275,0.0,9.301757052389576,2772.733677358198,2431.654934951387,769.1612403249878,14.0,22.0,24.0,27.0,29.0,21.0,19.0,20.0,18.0,250.131742436,18.0,4.394449154672439,5.153291594497779,5.958424693029782,6.741700694652055,7.549082710812286,8.341171747170762,9.148358579620302,9.9444855315702,10.7513495394883,0.6203703703703705,0.9860000000000002,1.13742337632607,0.5788628941988362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6373631736526948,0.9711328976034856,1.008578133851259,0.5982437410950538,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,15.37044016181271,6.041840829147961,0.0,11.814359458703011,0.0,9.589074368143644,0.0,0.0,0.0,30.33183534230805,5.563451491696996,20.578291146880733,6.606881964512918,154.93426314681324,-302.4569821372418,-28.69885542232151,-8.401582837145606,-27.496089285203798,339.857517847446,663.4573729336291,19.72254251897633,18.429371470378584,26.538294917345162,0.5,0.8272374967250811,0.1956786414991587,98.65087175296121,0.12537560819131244,19.595786228272722,0.172762503274919,5.0,0.3333333333333333,0.301949610123754,0.6277990883461235,0.8179948722043736,0.9018647782801763,0.9274125779787371,0.9274125779787371,0.4539000000000007,,1.0357142857142858,1.2284783620288504,0.9699017285501993,1.0327970942604563,-4.283246429381093,1.098531211750306,1.0260103868809844,-1.8356326906609346,67.76940000000003,14.325937321943691,0.0,10.633577208012662,0.0,19.51033443475116,13.716679505790452,35.89528683400505,0.0,0.0,3.6109179126442243,0.0,4.8283137373023015,0.0,6.22455842927536,0.0,7.70210434005105,0.0,9.220983532074662,22.333333333333336,9.56375369166134,0.0,0.0,0.0,0.0,0.0,1.004483182161754,0.0,35.49600000000001,0.0,22.797151080741447,0.0,0.0,0.0,0.0,0.0,-0.5112831737633323,40.947241547738514,10.633577208012662,0.0,0.0,31.572879793641423,20.870693727856267,0.0,12.487188691387619,30.33183534230805,0.0,0.0,0.0,20.8390641911581,22.94507425149701,22.08100576693309,158.62988166727183,,131.69860869943545,128.64861900185468,128.2043610977625,131.7311211348176,193.39775632318913,130.498765642082,131.87286921448873,169.59444633702557,22.08100576693309,158.62988166727183,,130.77797377880057,127.55663823560683,127.34222622794006,130.81307927325287,196.2532539427766,129.52229345385942,130.96085998170565,170.81820146413295,4.468398853625187,118.24150214324176,,100.0087364303521,97.68246424732796,96.80511859697936,100.03193042903189,143.72056103950106,99.06886334621575,100.14419217018992,127.78574848977689,1.2267225426073938,8.812771203737324,,7.316589372190858,7.147145500103038,7.12246450543125,7.318395618600978,10.744319795732729,7.249931424560111,7.32627051191604,9.42191368539031,2.2341994268125935,79.31494083363592,,65.90684403225741,64.39255829881783,64.15606397824514,65.92293818375661,95.98500375669771,65.31041233280489,65.9934351842933,84.49128438673598,34.96078431372548,0.0,2.853598828420257,0.0,0.0,0.0,0.0,36.30881281864532,0.5830113063744018,5.296418965734442,4.902484410430839,0.0,-0.6562849584278165,0.0,0.0,0.0,0.0,21.53677467942194,409.3103143098355,56.19804618796396,116.84427129803933,152.242997070996,167.8526375454328,172.60752504759628,172.60752504759628,230.0,103.9823142455139,85.4814666844237,49.5868779513476,67.42999999999999,67.42999999999999,1.0,6.496680717265689,5.169925001442312,3.857372291459364,4.178361891757671,,4.184116858099773,4.183858352171535,4.18105830831207,4.184112017922795,4.17062107277481,4.183909562794212,4.184141231052935,4.18047416144947,0.21429846063663133,0.2321312162087595,,0.2324509365610985,0.23243657512064086,0.23228101712844834,0.23245066766237749,0.23170117070971166,0.232439420155234,0.23245229061405195,0.23224856452497056,1.9377728630530393,2.017705942705074,,2.019082321030872,2.019020536448145,2.018351063199888,2.0190811642324507,2.0158516279379217,2.0190327764201896,2.019088146126825,2.018211340758897,199.23999999999964,89.6343034641743,82.66904211855095,,81.84382366078329,81.8471334885125,82.11510037745147,81.84455467624153,82.95163840212065,81.85646585948979,81.8425379029435,82.25112309946486,4.979683525787461,4.592724562141719,,4.546879092265738,4.547062971584028,4.561950020969526,4.54691970423564,4.608424355673369,4.547581436638321,4.546807661274639,4.569506838859159,5.083524762776857,5.002631857291193,,4.992599506626906,4.992639946585073,4.9959085910918155,4.992608438421157,5.006044433026701,4.992753962049908,4.992583796608948,4.997563709159116,4.902484410430839,22.797151080741447,5.296418965734442,1.004483182161754,-0.5112831737633323,8.907468733233523,0.0,1.951201499118166,1.4854086356764928,245.32971522134721,76.66019999944493,-149.6532288658347,-14.199957786907213,-4.157034135162076,-13.604838987803154,168.15870654002603,328.2732551676027,9.7585519386993,9.118701532433407,13.130930206704107,690.0,21.0,1.014741362757977,0.38090084052856843,0.0,0.0,0.11785113019775792,0.020833333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.032075014954979206,0.07216878364870322,0.022680460581325723,13.380468888623982,10.60306004890244,8.6302289553358,5.708560658885534,7.236973898629751,3.911854164525945,4.993359381347027,2.3368850879135765,3.8210774409188457,1.5031671928049897,2.949216699438541,0.8834926317165004,1.404382655769242,0.39943285322936245,0.7576475612428285,0.18135888658412547,1.6673089342148555,0.5521254155177842,2.2695234320358817,0.6439972213564211,3.174557941432682,0.6433917556087227,60.80370214888181,36.10553494880301,26.16382494163807,20.992064241820255,20.526650700093494,20.526650700093494,80.0,86.0,38.31827399999998,22.669725999999994,0.16666666666666666,18.05,6.944444444444445,4.277777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,36.0,0.0,0.0,36.0,6.0,2.0,5.0,31.0,8.0,18.0,28.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,3.0,2.0,0.0,18.0,5.0,0.0,2.0,3.0,0.0,1.0,6.0,0.0,0.0,0.0,0.0,1.0,3.1780538303479458,4.364689715020605,3.56953269648137,3.844814255734696,4.183956720911787,4.5740664409367575,4.120052918932307,4.1830038861565155,4.395220462076662,4.588151180818497 +36294,NC[C@H]1O[C@H](O[C@@H]2[C@@H](N)C[C@@H](N)[C@H](O[C@H]3O[C@H](CO)[C@@H](O)[C@H](N)[C@H]3O)[C@H]2O)[C@H](N)C[C@@H]1O,0,21.82608695652174,6.506586956521739,2.971014492753623,6.608695652173913,171.7320785621698,85.78320000000004,1.1375320794117825,6.504860869565217,5.505636070853463,8.050522898550726,173.00711064086937,23.267605633802816,6.748802816901409,3.8732394366197185,5.380281690140845,156.49990612975424,86.41872723943662,1.4890895457746478,6.830647887323943,3.3255086071987474,8.192599887323944,227.05269468901707,20.022727272727273,6.615219696969697,3.462121212121212,4.712121212121212,158.36754823633214,72.87567504545456,1.295853774073038,6.679259090909091,3.08459595959596,8.121597818181817,191.91879549146614,17.04901960784314,6.581191176470589,2.7254901960784315,4.117647058823529,166.63508340473413,60.95413981862745,1.0579759845488237,6.6010534313725495,3.699754901960784,8.140685117647058,152.52695554056663,14.108225108225108,6.474588311688311,2.4372294372294374,2.9220779220779223,170.2244972479506,48.59995115151516,0.9479700201871948,6.481796536796536,3.484487734487734,8.089014337662336,132.9425441947837,13.812785388127853,6.434844748858447,2.4246575342465753,2.922374429223744,170.53849192013402,47.33879928767123,0.9713215188577442,6.443390867579909,3.4162861491628607,8.042795762557079,133.75994006929284,13.662100456621005,6.251373515981735,2.4748858447488584,2.7488584474885847,168.8623171743584,47.552730388127856,1.0000828688912557,6.275690867579908,3.127219685438864,7.867216894977168,136.37338598156586,13.454954954954955,6.258702252252253,2.3603603603603602,2.5045045045045047,168.1676823844196,45.889939495495504,1.0194952405657705,6.290876576576575,3.0924674674674666,7.849577045045045,137.1987420345571,11.784232365145229,6.1924721991701235,2.04149377593361,2.2655601659751037,172.68943822273948,39.70542654771784,0.8751017771235229,6.200919917012448,3.43533886583679,7.828622937759335,114.62347219846126,8.487712665406423,0.20212098298676742,0.03425202321175922,0.6553245116572147,3.879017013232513,1.1984807945854041,39.873737618147466,0.1819736670332317,0.185102079395085,2.1886625125440506,0.13013236210880055,42.88133737605242,-0.32727175909901723,-0.04745839878591001,-0.017348181684394007,0.23057056897148473,0.12833142522431365,0.19061549428290017,-1.2929199929178081,0.023585033668144607,-0.03949313879496233,-0.6339914912471866,-0.03160725412758007,5.838890564400642,-0.4491751159993124,-0.019852372973592155,-0.004196415828174194,-0.04399381336999492,-0.06808157186229034,-0.19669370885604176,-2.1039441010196467,-0.023456528817249835,-0.01638600561379372,-0.3200610388701125,-0.013743272078058514,-3.234633055451998,0.3106675562474518,0.02495862059379524,0.006179034837037237,-0.053662107565143294,0.27102561251343626,-0.08288872719538144,1.3080751757570723,-0.017980263827201033,0.021850456836799117,0.17065081826331316,0.016781900749965967,-2.7901074576572205,-0.5375903239797377,-0.01757614955932531,-0.002768639037875029,-0.04945212317613076,-0.4848894017135983,-0.055062427836197976,-2.471199995711913,-0.0036470312911386937,-0.016136372638073875,0.030225818663121733,-0.012402636530031654,-1.5922854853176864,-0.648721202233904,-0.006963845801935199,-0.00020999978245945475,0.015312772440462311,-0.2550344839492106,0.08302082666969633,-3.0409645206687905,0.0065960547502966135,-0.008102555869176714,-0.13318048694092058,-0.0021232143356553082,-1.3000167567566208,0.3346022045558519,0.0024088760563136962,0.000895078353950473,-0.03173904411701238,-0.051341809738370825,0.009262902625485717,1.624105972283364,0.013296796895825507,0.002467168172911734,0.1349409698344968,0.001026440617689976,2.646137130416729,-0.8611948432364313,-0.012669024506548141,-0.00270090866965328,-0.08795279211158229,-0.24329433403157413,-0.14576968423730188,-4.112793093274749,-0.02859792828515383,-0.01203909467123078,-0.23158043046196797,-0.007585569054877165,-6.148565680699106,0.25448470064083956,0.014582498882256465,0.0037646387618896302,-0.012291256500560817,0.12783848018260402,-0.06269605962184127,1.1120476378511086,-0.012217078239681019,0.012970354305077236,0.27589572240025745,0.008960272685835227,-1.6271657284560854,,,0.4375000000000001,0.671875,0.0,0.0,0.671875,-0.671875,1.3942407804872456,0.026012138957986763,0.034074638957986764,0.7176275273782122,0.13289194074356026,0.3384150941226122,2.111868307865458,0.4713070348661725,1.9960699562665982,1.1879751363745084,0.27568857089449267,0.5324062489975975,0.0,0.8080948198920902,6.77187141686958,1506.0,448.9545,205.0,456.0,11849.513420789715,5919.0408000000025,78.48971347941298,448.8354,379.8888888888889,555.4860800000001,11937.490634219987,1652.0,479.165,275.0,382.0,11111.493335212552,6135.729634,105.72535775,484.97599999999994,236.11111111111106,581.674592,16120.741322920212,2643.0,873.209,457.0,622.0,20904.516367195843,9619.589106000001,171.05269817764102,881.6622,407.1666666666667,1072.050912,25333.28100487353,3478.0,1342.563,556.0,840.0,33993.55701456576,12434.644523,215.82710084796005,1346.6149,754.7499999999999,1660.699764,31115.498930275593,3259.0,1495.6299,563.0,675.0,39321.85886427659,11226.588716000002,218.981074663242,1497.2949999999998,804.9166666666665,1868.5623119999998,30709.727708995033,3025.0,1409.231,531.0,640.0,37347.92973050935,10367.197043999999,212.71941262984598,1411.1026000000002,748.1666666666665,1761.372272,29293.42687517513,2992.0,1369.0508,542.0,602.0,36980.84746118449,10414.047955,219.018148287185,1374.3763,684.8611111111112,1722.9204999999997,29865.771529962924,2987.0,1389.4319000000003,524.0,556.0,37333.22548934115,10187.566568000002,226.32794340560102,1396.5745999999997,686.5277777777776,1742.606104,30458.12073167168,2840.0,1492.3857999999998,492.0,546.0,41618.15461168021,9569.007798,210.89952828676903,1494.4216999999999,827.9166666666664,1886.6981279999998,27624.256799829163,585.6521739130433,13.946347826086953,2.3633896016113862,45.217391304347814,267.6521739130434,82.69517482639289,2751.287895652175,12.556183025292988,12.772043478260866,151.0177133655395,8.979132985507238,2958.812278947617,-23.236294896030223,-3.3695463137996104,-1.2317208995919746,16.370510396975416,9.11153119092627,13.533700094085912,-91.79731949716438,1.6745373904382672,-2.8040128544423255,-45.01339587855025,-2.2441150430581853,414.5612300724456,-59.29111531190924,-2.6205132325141642,-0.5539268893189937,-5.80718336483933,-8.986767485822325,-25.963569568997514,-277.7206213345934,-3.096261803876978,-2.1629527410207707,-42.24805713085485,-1.8141119143037239,-426.97156331966374,63.37618147448016,5.091558601134229,1.2605231067555964,-10.947069943289232,55.289224952741,-16.909300347857815,266.84733585444275,-3.6679738207490105,4.45749319470702,34.812766925715884,3.423507752993057,-569.181921362073,-124.18336483931942,-4.060090548204147,-0.6395556177491317,-11.423440453686206,-112.0094517958412,-12.719420830161733,-570.8471990094519,-0.8424642282530382,-3.7275020793950646,6.98216411118112,-2.865009038437312,-367.81794710838557,-142.06994328922497,-1.5250822306238088,-0.04598995235862059,3.3534971644612463,-55.85255198487712,18.181561040663496,-665.9712300264652,1.4445359903149584,-1.7744597353497005,-29.16652664006161,-0.46498393950851247,-284.7036697296999,73.27788279773156,0.5275438563326995,0.1960221595151536,-6.9508506616257115,-11.24385633270321,2.028575674981372,355.6792079300567,2.911998520185786,0.5403098298676697,29.552072393754802,0.22479049527410475,579.5040315612637,-191.18525519848774,-2.8125234404536874,-0.5996017246630282,-19.525519848771268,-54.01134215500946,-32.36086990068102,-913.0400667069943,-6.34874007930415,-2.672679017013233,-51.41085556255689,-1.6839963301827305,-1364.9815811152014,61.33081285444233,3.514382230623808,0.9072779416154009,-2.9621928166351568,30.809073724007572,-15.109750368863745,268.00348072211716,-2.9443158557631257,3.1258553875236137,66.49086909846204,2.1594257172862896,-392.1469405579166,0.7418674380670983,0.5520982305845102,0.4435830916387507,0.3164425325906859,0.2788868109648608,0.17569933969678803,0.18330181738226506,0.09433806307852821,0.11440887808023242,0.05271449182507009,0.06850673232959331,0.02845570569307995,0.0462548271580679,0.01540820139635091,0.027570102882763344,0.00804908036212053,8.02156324172437,5.795238151229749,3.53721203371709,2.29127555261966,0.4041750856874844,-0.3935185069955617,3.1938742874077235,0.9872001847011861,6.0134032085320905,1.97734856832614,14.542175593207348,11.058047774004457,16.013329729054846,11.808919329329163,1.8919351361673713,0.7676997197681166,3.48115683798461,2.3402046221925548,6.006855793646188,1.1451113187064876,3.6944187420535424,2.5359229446758746,20.78860697931299,14.704219363480682,0.26757503552977996,0.4980350645149082,0.7132596007678127,0.8707514576312644,0.9225975861816404,0.9320241550089817,1.6991706468763768,607.1880034640932,0.0,0.0,4.0,0.0,0.0,14.0,0.0,0.0,0.0,4.463005652777542,3.045734753365284,1.7221582814972534,0.7536231884057978,0.4347826086956532,0.37681159420289845,346.2621060450051,3406.285310532706,110.90978572509763,49.36645377583632,101.08695492001634,,14.0,728.0,92.1860298417616,25.532636974203527,19.386399651764595,0.0,0.0,0.0,0.0,0.0,0.0,47.615789201011125,14.000000000000004,21.5,0.0,0.0,21.5,0.0,0.06249999999999989,-21.5,0.175362318840579,0.0,-0.175362318840579,0.21642287234042612,0.26671565495207633,0.0,0.6144927536231869,0.9781249999999996,0.4391304347826079,0.6144927536231869,0.7617021276595735,44.61570497559186,0.8323884466555764,1.0903884466555764,22.96408087610279,4.252542103793928,10.829283011923591,67.57978585169465,15.08182511571752,0.44728434504792364,0.26190476190476186,0.0,0.4999999999999999,1.0,0.24772307785567782,-1.2295608946714374,-0.08531135224081661,-0.017819723111180255,-0.07684755591696484,0.7522769221443222,3.733888232937794,0.07630020669065506,0.05411432221648977,0.07045072137618479,3.9436629618593977,0.991022303083535,1.1201872577377057,1.5430499629971317,1.1861321776814737,0.853430524668479,1.4759895362348918,0.9927210663697352,1.3549990660027493,1.0849523945416801,1.2631046349324968,1.1469835660585426,1.1242791601402513,1.0203594969741965,1.0508056803042867,1.0419437352345469,1.5323280885780892,1.054738417311517,1.5829314010432196,1.0248033384054258,1.5071210338144132,1.0294827532672077,0.9758398830169,1.0998591030398084,1.2752961709153132,0.9755506062855732,0.9530129440152634,0.8342263460628646,1.2274038461538466,1.0336798787091188,1.190169231793704,0.9784809057681424,1.200249915639139,0.9487505545967131,0.8715251860698215,0.9768875622502895,1.1060233136850395,1.0942475984792246,1.2220440907240628,1.1398451639974503,1.0969613719613722,1.2868028657502346,1.006994462163695,1.08931611263423,0.9954381452305948,1.2138782375815027,0.9489902251892824,1.2604036338945606,1.0057139498358434,1.088728885092189,1.106354426648288,1.0804712889245986,1.0025641025641028,1.1281936025587394,0.9226061757476004,1.0866304957553674,0.9458119055753782,1.1101792409633513,1.1005660752727908,1.101988476348042,1.0063513361719445,0.9296742634570992,0.9285870634383555,0.8900207724492536,1.1124341412012648,1.0133440738663846,1.0113137043762326,0.9297580140049234,0.967131893349104,0.9287686808139484,0.7754793030645539,0.9366457448364922,0.9578394478305898,1.049434512463466,0.9301653143014135,0.988372520699677,1.1956254331254335,0.9166798377324696,1.2367517477024061,1.054841234349617,1.2317168283711448,0.9355345061050796,1.0841441796875673,0.9077383770525769,1.1841398790029967,0.9445369608812578,0.8740043950291914,0.8179204740812901,0.8860836259176511,0.9066079984038785,0.9594133773062281,0.9468231721031128,0.9828193412647923,0.880910189169395,0.8354748909605935,0.8617408372559453,0.9888439766667285,8.0,0.21467197224772983,5.333333333333336,3.375,2.915555555555556,1.4305555555555556,1.136326530612245,0.9982638888888888,0.4477198286722096,0.36500000000000005,7173.631116186116,8463.98545045208,3149.8816989446605,2721.896021980754,15.120846447062004,0.4783842329117915,7.887271918507259,0.9171199628075923,0.0,1.0,1.6455188040006272,3.0627897034128853,4.386366175280916,5.354901268372371,5.673741848082516,5.731712862575271,0.2352941176470588,0.007950813786952955,0.10666666666666672,0.05720338983050847,0.05606837606837607,0.02980324074074074,0.02228091236494598,0.020797164351851853,0.010659995920766894,0.012166666666666668,0.5588913440445351,26.602076124567475,11.16,5.6444636678200695,185.0505766760553,0.0,4.383540326512413,189.21077018243486,,161.67489218538662,157.5170185597576,168.8053521002773,161.75489253977224,291.45757538932463,160.5760764351628,161.85855091316722,228.6468083058924,-0.03855829856645438,-0.23480193933658558,-0.5064863344609122,0.3518418201516792,0.03308349120061498,0.1590476002152714,-0.032425352378538254,0.12960684945606746,-0.21335869874626046,-0.28967074074396676,-0.2428854253882981,0.13616391002910833,-0.05292063170682324,-0.09822024749845919,-0.12251585263242211,-0.06713286713286727,-0.017551243428436458,-0.16411919969404673,-0.052765158891502885,-0.1289006766729949,-0.08852415741272766,-0.1462359029935963,-0.10560994863497593,-0.07543218689952558,0.03660203502336349,0.12348357021116033,0.18039911974939582,-0.08188631221719464,0.0698696632649161,-0.06916149809814476,0.03280543169250672,-0.09880695443653124,0.11804544232137518,0.07797036650705577,0.128960240773429,-0.0650657751923425,-0.06333747915039674,-0.08695855966857234,-0.0808314014257854,-0.07546203796203803,-0.12500316447684873,-0.045943521235353606,-0.061975629658234305,-0.020041533209707092,-0.08717553412045755,0.013810177900834945,-0.09530785677787133,-0.03713236533072582,-0.07643062716742434,-0.034453848873232086,-0.006131018339008913,0.02336670179135932,-0.06574719396156552,0.06927172053551021,-0.07626484754929964,0.03624730356778519,-0.04377344595833784,-0.06085017044775654,-0.01631580570158359,-0.030316609422788902,0.03942195238531085,0.011917991000822522,0.026132130893896495,-0.04843256059009487,-0.013235778436451353,0.0077288703059193165,0.040731219827864734,0.07306989584046393,0.013328689666666404,0.06165453516067424,0.00788766607365348,0.06170836294612619,-0.10146371315636354,-0.0626804021993974,-0.07885398923605828,-0.13421257796257802,-0.06272061535219432,-0.12162871937195176,-0.10314541196667056,-0.15715421220769996,-0.06504029944220309,-0.10580910904933637,-0.05829118085580474,-0.1433855858267341,0.029982718627840573,0.07214737760903903,0.1099099676131591,-0.018755984679221176,0.03295641131413136,-0.05231294477566492,0.027889224945518775,-0.06713651727120472,0.07007135926006046,0.12605676792058845,0.06885506833683507,-0.03794577846736644,0.8586394358205235,12.098573623351534,22.49422328868288,16.535930881717256,26.130877878077982,34.03214204693091,39.614947159897525,40.25526600047722,40.63262831931781,63.87423860053114,38.01520436398427,8.822034268623765,17.03699996792312,0.0,25.859034236546886,9407.497194209422,8606.495809232538,1824.2256209723982,153.0,50.0,68.0,84.0,106.0,115.0,116.0,132.0,143.0,467.259127764001,34.0,5.1298987149230735,6.003887067106539,6.900730664045173,7.790282380703483,8.688622307043769,9.582524425515684,10.481700760003815,11.377460776160952,12.277281060886253,0.6086956521739131,1.0043478260869563,1.159724991238296,0.564120570636337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.585345318059533,0.9858482523444161,1.024879402978773,0.5543017991309661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,4.0,0.0,4.0,0.0,14.0,0.0,0.0,0.0,0.0,73.14842617521465,36.62379832648981,12.580053458670426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.841643245852019,18.628438064208495,30.898496398305447,170.00586879918117,-843.815481179745,-58.54694960871842,-12.229209872170218,-52.73846757373406,516.2679748441863,2562.469829352961,52.36283611637922,37.1372439036661,48.348487346282276,0.5,0.646054230077408,0.07929310271786294,319.5770699685028,0.04246943916846841,380.57324217158964,0.3539457699225922,7.0,0.17647058823529413,0.26938073435635,0.501395995888064,0.7180729497470859,0.8766276219833157,0.9288236280672973,0.9383138109916579,-6.295799999999999,,2.9642857142857144,3.499767333643555,2.68445560019295,2.955891104299181,-12.331557469961458,3.1344094247246024,2.9377681675308684,-5.187573443739375,108.37100000000002,44.480088789403716,0.0,0.0,28.668337385810926,98.4207911231007,13.151638370425493,0.0,0.0,0.0,4.23410650459726,0.0,5.594711379601839,0.0,7.155396301896734,0.0,8.81001204797317,0.0,10.511866293386406,42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.29999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.02102439544242,28.668337385810926,0.0,0.0,124.26342322187772,18.947451815200196,0.0,12.841643245852019,0.0,0.0,0.0,0.0,38.92431937390725,40.388826946107784,39.710140496113056,378.4215403648697,,323.16451651363036,314.8153016611625,337.4429257255425,323.3250418855257,585.7689080357238,320.9562522812803,323.5334913158638,458.26628663248596,39.710140496113056,378.42154036486966,,320.5285110547169,311.72558592699073,334.99159266225155,320.6959990059855,595.2467082486107,318.17180122404784,320.92048859354645,462.4811900555245,4.929911551160464,279.4448044877182,,236.9892545258901,230.707214606255,248.62621512772404,237.11274177068879,439.9528273653003,235.36749534835883,237.26293093136604,340.5939961480125,1.240941890503533,11.825673136402179,,10.098891141050949,9.837978176911328,10.545091428923204,10.103907558922678,18.30527837611637,10.029882883790009,10.110421603620743,14.320821457265186,2.464955775580232,189.21077018243486,,161.67489218538662,157.5170185597576,168.8053521002773,161.75489253977224,291.45757538932463,160.5760764351628,161.85855091316722,228.6468083058924,68.02352941176471,0.0,0.0,0.0,0.0,29.76995331513709,50.70976490930665,70.71667880553532,-0.11688293909843206,0.0,22.716317116442028,0.0,-14.412485735120677,0.0,0.0,0.0,0.0,38.24682414003666,443.3701196772792,113.54079747604328,211.3324895354891,302.6592660943832,369.48818751769363,391.4881875176936,395.4881875176937,1033.0,144.23238815638874,242.9037239660883,68.3060925274554,268.17,268.17,1.0,6.9411900550683745,6.087462841250339,4.968937998047863,5.576415031121507,,5.578295606020457,5.578725261569925,5.579196815438964,5.578293251375278,5.57363432545522,5.578504339737821,5.578266812796185,5.575503603563346,0.15527931243899573,0.1742629697225471,,0.17432173768813927,0.17433516442406016,0.17434990048246762,0.17432166410547745,0.17417607267047563,0.1743282606168069,0.1743208378998808,0.17423448761135457,2.766356944595524,2.881696912187243,,2.882034092590741,2.8821111123534138,2.8821956359530705,2.882033670482297,2.8811981330993643,2.8820715107963917,2.8820289309247737,2.881533455549861,334.63000000000136,251.89038419688333,208.1625976428637,,208.00263233010548,207.91341344524167,207.63671322200724,208.00267833510134,208.4777644538775,207.95380482088308,208.00908316979826,208.4754930973084,7.871574506152604,6.50508117633949,,6.500082260315796,6.497294170163802,6.488647288187726,6.500083697971917,6.514930139183672,6.498556400652596,6.500283849056196,6.5148591592908875,6.692144819338704,6.501470303560343,,6.500701544860119,6.500272521324535,6.4989407914254365,6.50070176603516,6.502983200052379,6.50046677263358,6.5007325576391,6.502972305034637,22.716317116442028,0.0,50.70976490930665,29.76995331513709,0.0,-3.266625684923709,-10.763801597427422,-0.4989413918679795,0.0,416.91066168596143,116.6705810227441,-579.0884935950012,-40.179240141569736,-8.39258686369567,-36.193030849687574,354.301207446297,1758.55601901022,35.9352448056553,25.48631911609015,33.18030224547584,2932.0,59.0,2.65144159414414,1.343663587765745,0.0,0.0,0.9999595023411658,0.2543986763291259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14627739788085845,0.10362507616157686,0.5901441180387752,0.2460940458474231,23.739758018147146,17.667143378704328,15.081825115717525,10.75904610808332,13.944340548243039,8.784966984839402,12.464523581994024,6.414988289339918,9.610345758739523,4.4280173133058875,7.261713626936891,3.0163048034664746,5.319305123177808,1.7719431605803546,3.198131934400548,0.9336933220059815,7.126013630965685,2.6853410657293177,10.617286928848555,3.410299002626461,16.222673061097485,4.394434083530329,109.65699239630018,72.81091959033917,45.317902634915214,28.17929127422433,25.527906270835878,24.694292612938863,168.0,202.0,67.44934099999996,41.21265900000004,0.2898550724637681,164.14,13.555555555555557,7.111111111111107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,69.0,0.0,5.0,71.0,0.0,0.0,0.0,71.0,0.0,34.0,71.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,14.0,10.0,2.0,32.0,14.0,0.0,5.0,9.0,0.0,3.0,6.0,0.0,0.0,0.0,0.0,0.0,3.5553480614894135,5.0369526024136295,3.9318256327243257,4.23410650459726,4.442651256490317,4.672828834461906,4.7535901911063645,4.762173934797756,4.890349128221754,4.969813299576001 +3821,CNC1(c2ccccc2Cl)CCCCC1=O,0,27.6875,5.88668125,3.0625,5.300154320987654,161.62061993710574,112.51741084375,1.5617222024245,6.032290625,3.4986464168000304,7.535972156250001,217.71048569485316,24.21212121212121,6.1114848484848485,3.878787878787879,5.276094276094276,144.52985940102425,91.68451642424242,1.8892811196969699,6.294075757575757,2.644562913081432,7.581446,264.25700955754354,20.366666666666667,5.967783333333333,3.466666666666667,4.057407407407408,151.89562821920074,75.95610116666666,1.6191173215657166,6.121041666666667,2.335476680384088,7.509627266666667,219.23176757261518,18.44047619047619,5.939571428571428,2.9642857142857144,3.1997354497354498,157.49647451231158,68.06489198809524,1.4204929027295474,6.073953571428571,2.5275389476778365,7.547531976190477,188.29047002507997,18.204545454545453,6.053864772727272,2.534090909090909,2.23989898989899,158.67724655075588,65.61423319318182,1.3777813847521363,6.195606818181819,2.7548283763561545,7.689941227272727,179.3443612835743,15.208791208791208,5.887857142857143,2.0,1.3247863247863247,161.46489703413565,52.69074859340659,1.2470222095965053,6.032592307692308,2.5433794600461264,7.602586065934067,152.809636261721,8.974683544303797,5.51887341772152,1.6329113924050633,0.589310829817159,165.66819003999308,26.417273316455695,1.0364722624420633,5.656462025316456,1.8916236912017503,7.317291721518988,112.20852944093382,4.4222222222222225,5.2311555555555564,1.4,0.13333333333333333,171.9457744799768,10.021629355555554,0.7813981566049999,5.305211111111111,1.5042524005486968,7.041551022222222,74.86071629310722,2.0714285714285716,4.981428571428572,1.2142857142857142,0.0,178.10441538610277,3.392712,0.5879553488099285,5.005000000000001,1.1785714285714286,6.804,49.009359846556336,12.18359375,0.08159335937499997,0.008940554993788073,0.62109375,3.0709394290123457,1.3776430968734987,57.32783415527344,0.26349781821225,0.09240771484374995,1.1447541339062024,0.060361756835937475,53.953376512258245,0.10239109848484848,-0.0018022608901514814,-0.0033544707352525785,0.30693655303030304,1.045456006827535,0.013755398161586248,0.5249845795750501,0.007529699218552936,-0.0014611239346591328,-0.015519084004464388,-0.0017648401692708258,1.7507781371302655,0.6299479166666667,-0.00013815104166664955,-0.0019469477664096734,0.02265625,0.3752282664609055,-0.014483622451256754,2.993366778580731,0.00948601812374162,0.0013146289062499754,-0.03544298282563793,-0.0006727401692708317,1.9705179073734327,1.0850074404761905,0.010142578125000004,0.0017030221430296751,-0.13746279761904762,-0.02978716563786008,-0.031189120307642353,5.161989504696801,0.01719893462735713,0.010397902715773785,0.04949984041491229,0.0037711047712053586,4.030124970409544,-0.9236505681818182,-0.012968856534090871,-9.162989129316316e-05,-0.19140625,-0.9714900743546576,-0.15144020645768702,-4.4081660157137765,-0.02743868812467615,-0.012505193536931837,-0.10695265333510219,-0.006654244051846572,-7.390796320947513,-1.6526871565934067,-0.014764101133241737,-0.0004284402950906924,-0.057220123626373624,-0.7483322522385024,-0.10063833547426108,-7.8901929705206895,-0.034874998395964286,-0.015005585722870873,-0.1553024764054194,-0.004791510613410014,-9.303050532292298,-2.834701344936709,-0.006505859375000027,-0.00040576597306597143,0.03950751582278481,0.01720910982184718,-0.10821885401822563,-13.362923630748124,-0.05152423696626263,-0.01238018319818034,-0.012785162306424971,-0.0070510507441653575,-8.886068312822841,0.7636284722222222,0.008801779513888818,3.302663367852162e-05,0.12612847222222223,0.552448774005487,0.09975460310712542,3.6912554725043365,0.022867104321905644,0.009118049045138946,0.033067668484608743,0.0030448660807291337,6.9297259176111,5.481584821428571,0.030378069196428454,0.0011181946342670459,0.19587053571428573,1.3760402888007055,0.41226101453413905,26.08957129785156,0.121757109764143,0.03846884765625006,0.19001235013368717,0.015517243164062444,28.931323472071654,,,0.4967261904761905,1.09375,0.5,0.03125,0.59375,-0.09375,0.8459601132549072,0.01311693673163744,0.02386693673163744,0.6804537808339913,0.19982071825718511,0.2817006926594959,1.5264138940888985,0.481521410916681,2.005410708281846,1.6648008535149588,0.11898296034870261,0.11079971663017334,0.11082717778801114,0.3406098547668871,7.409126306625,886.0,188.3738,98.0,169.60493827160494,5171.859837987384,3600.557147,49.975110477584,193.0333,111.95668533760097,241.15110900000002,6966.735542235301,799.0,201.679,128.0,174.11111111111111,4769.485360233801,3025.5890419999996,62.346276950000004,207.7045,87.27057613168725,250.187718,8720.481315398936,1222.0,358.067,208.0,243.44444444444446,9113.737693152045,4557.366069999999,97.147039293943,367.2625,140.12860082304528,450.577636,13153.90605435691,1549.0,498.924,249.0,268.77777777777777,13229.703859034173,5717.450927,119.32140382928199,510.21209999999996,212.31327160493828,633.992686,15816.399482106717,1602.0,532.7401,223.0,197.11111111111114,13963.597696466519,5774.052521,121.244761858188,545.2134000000001,242.42489711934158,676.714828,15782.303792954539,1384.0,535.7950000000001,182.0,120.55555555555554,14693.305630106343,4794.858122,113.47902107328198,548.9659,231.44753086419752,691.8353320000001,13905.676899816612,709.0,435.99100000000004,129.0,46.55555555555556,13087.787013159454,2086.964592,81.88130873292299,446.8605,149.43827160493828,578.066046,8864.473825833771,199.0,235.40200000000004,63.0,6.0,7737.559851598955,450.97332099999994,35.162917047224994,238.73450000000003,67.69135802469135,316.869796,3368.732233189825,29.0,69.74000000000001,17.0,0.0,2493.4618154054388,47.497968,8.231374883338999,70.07000000000001,16.5,95.256,686.1310378517887,389.875,2.610987499999999,0.2860977598012183,19.875,98.27006172839506,44.08457909995196,1834.4906929687502,8.431930182792,2.9570468749999983,36.63213228499848,1.9315762187499992,1726.5080483922638,3.37890625,-0.059474609374998884,-0.11069753426333509,10.12890625,34.50004822530865,0.4539281393323462,17.324491125976653,0.24848007421224688,-0.04821708984375138,-0.5121297721473248,-0.05823972558593725,57.775678525298765,37.796875,-0.008289062499998973,-0.11681686598458041,1.359375,22.51369598765433,-0.8690173470754052,179.60200671484387,0.5691610874244972,0.07887773437499852,-2.1265789695382757,-0.040364410156249905,118.23107444240595,91.140625,0.8519765625000004,0.14305386001449272,-11.546875,-2.502121913580247,-2.6198861058419576,433.6071183945313,1.444710508697999,0.873423828124998,4.157986594852632,0.31677280078125014,338.53049751440165,-81.28125,-1.1412593749999966,-0.008063430433798358,-16.84375,-85.49112654320987,-13.326738168276458,-387.91860938281235,-2.4146045549715014,-1.1004570312500017,-9.411833493488993,-0.5855734765624984,-650.3900762433811,-150.39453125,-1.343533203124998,-0.03898806685325301,-5.20703125,-68.09823495370372,-9.158088528157759,-718.0075603173827,-3.17362485403275,-1.3655083007812494,-14.132525352893165,-0.43602746582031127,-846.5775984385991,-223.94140625,-0.5139628906250021,-0.03205551187221174,3.12109375,1.3595196759259274,-8.549289467439825,-1055.6709668291019,-4.070414720334748,-0.9780344726562469,-1.0100278222075727,-0.5570330087890633,-701.9993967130044,34.36328125,0.3960800781249968,0.0014861985155334729,5.67578125,24.860194830246915,4.488957139820644,166.10649626269515,1.029019694485754,0.4103122070312526,1.4880450818073934,0.13701897363281101,311.83766629249953,76.7421875,0.42529296874999833,0.01565472487973864,2.7421875,19.264564043209877,5.771654203477946,365.25399816992183,1.704599536698002,0.5385638671875008,2.6601729018716203,0.21724140429687422,405.03852860900315,0.724750739890488,0.6362481194372649,0.4531966220392291,0.3562075238307027,0.2750741721301098,0.1946941502951117,0.17702910306965436,0.11093039255917542,0.1177889798984862,0.06706783768406713,0.0791113393360847,0.042201431254601955,0.05143607148282983,0.02489380031374003,0.033657553178460954,0.014554542575348065,17.001102212292253,5.692309606149219,3.5432264762673165,2.189013363621746,0.3611606834974547,-0.3863641407127528,4.02997886766513,0.977965897530581,6.021915366475657,0.7740048622031028,14.540860173883715,10.952017874421971,35.45051700764381,11.70359379725751,2.2079351393153557,0.7527807415708094,3.4883124665102065,2.2399445317485567,7.008267374996025,1.1642442838824574,3.7014022086902347,2.4361741050436176,22.455860586995207,14.702717841368758,0.2873039183688865,0.6070176513172485,0.7662472464018772,0.8712833088216729,0.883280728822083,0.883280728822083,2.1712982567110486,404.67399692249836,0.0,0.0,0.0,0.0,6.0,4.0,1.0,1.0,0.0,3.503303635494819,1.8377698533491795,1.0082707033278253,0.461090234442608,0.398590234442608,0.398590234442608,92.84275514489545,420.0084771634596,28.153152077390853,13.125264911358112,26.386168086955486,,7.0,182.0,5.538925252383345,4.794537184071822,5.783244946364939,11.443454936667337,24.825916360475023,0.0,0.0,31.313140256523628,5.316788604006331,11.600939890232516,7.947619047619048,17.5,8.0,0.5,9.5,0.0,0.003273809523809512,-1.5,0.11875646997929601,0.040718984962406,-0.07803748501689001,0.03033963585434174,0.10509813936519508,0.0,0.5578869047619051,0.8157738095238094,0.43913043478260905,0.517167919799499,0.7854341736694677,13.535361812078515,0.20987098770619905,0.38187098770619904,10.887260493343861,3.197131492114962,4.507211082551934,24.422622305422376,7.704342574666896,0.6089018606348049,0.19472738166566805,0.06291192330736968,0.18873576992210905,0.46153846153846156,0.38468825190067385,-0.40134930132192254,-0.04243819250917363,-0.01254216566631008,-0.033445775110160204,0.6153117480993261,0.6419612217806921,0.027494871745191125,0.02006128818064663,0.0320980610890346,-4.398053786681594,0.6481486879050201,0.6953923012119382,1.3463488088526554,0.8271393177053554,0.5753878234915939,1.201700970628041,0.654999020171949,0.9440450592333343,0.6651419959671961,0.5419818241492007,0.6019512148827296,0.9698434418444198,0.6698941968579674,0.772055272829405,1.2752894991259722,1.429769392033543,0.8841240178604145,1.1360523380265553,0.6755386887260941,0.9109077972643392,0.7295158281858484,0.6128217210067302,0.6710851328311498,0.9434067649066963,0.7719354493961741,0.9238178220747075,1.0067230217565402,1.689727463312369,1.1470328485356986,1.053492279846419,0.7729635023791328,0.8828563843997896,0.8775818256983484,1.0279000377749945,0.9194725613689085,0.886610836830169,1.081552945291323,1.4771847032797152,1.399010221992416,1.3913664951400802,1.4722664386289759,1.1345896418734756,1.0797831741381447,1.0610670273794927,1.3614225648381348,1.5569107784609055,1.4142142324123366,1.0751404296869138,1.2844353466347695,1.4055494245077687,1.116827700568537,0.7713041675305826,1.2301590273606167,1.005501181980135,1.280870966171313,1.1270671091909714,1.3695221550355736,1.5612196296581744,1.3918412229848267,1.128204481528849,1.4724940239690587,0.8396772136445535,0.5917829989330784,0.4343603216304434,0.7381866446045343,0.9055960535292915,1.4678948845319932,1.221416761593744,1.0406266033809897,0.6839298517529377,1.0423646842918755,1.156628317323997,0.8490185600797976,0.5176321645014045,0.37327644450848885,0.259958071278826,0.5405179799375688,0.6896520832715201,0.8513592602855858,0.8456222117494562,0.6221101547092954,0.46533482766136536,0.5468591866820426,0.8488776952380384,0.21298035084505107,0.11448870261867251,0.1472457454245454,0.16711590296495957,0.24785924043135996,0.4118891542493975,0.21919549816341227,0.3964414199608768,0.13759504573291534,0.06800235949113909,0.04078068431126979,0.43309651750836126,3.5,0.0,2.8888888888888897,1.8125,0.9733333333333334,0.3472222222222222,0.19836734693877553,0.0,0.0,0.0,3142.778874657035,3584.6326890267023,1495.0261078290007,1332.292209021467,8.492748642683221,0.4199540585984328,4.926184381532071,0.7240013740699508,1.0,0.46153846153846156,1.4966963645051812,3.1622301466508205,3.9917292966721747,4.538909765557392,4.601409765557392,4.601409765557392,0.20588235294117646,0.0,0.12037037037037042,0.06473214285714285,0.038933333333333334,0.019290123456790122,0.028338192419825072,0.0,0.0,0.0,0.47754651537863824,12.456747404844291,5.104166666666667,2.204152249134948,100.99481727727749,1.0,3.69854464543734,49.95782252131339,,41.32243791845648,42.05466945328839,41.89846378030409,41.29996667561576,47.36250902390729,42.06439497515904,42.15972522947528,45.751252202924285,0.008404014495710552,-0.022088328069302297,-0.3751971480051603,0.49418715456451306,0.3404352417213801,0.009984732760468606,0.009157586141369306,0.02857594521897594,-0.01581170941332889,-0.013556696188996662,-0.02923772040081007,0.03244983447389039,0.05170460617719355,-0.001693165261546747,-0.21776587334482247,0.03647798742138365,0.12218680150965525,-0.010513334320134661,0.05221489391127431,0.03600036686489959,0.014226397746907288,-0.030961218462428386,-0.011145138984263354,0.03652260590077675,0.08905479472969052,0.1243064166335535,0.19048282172783912,-0.22132374962563642,-0.009699691682763025,-0.02263947779974705,0.09004333725072296,0.06527163960615122,0.11252201976161141,0.04324058673280856,0.06247506648050646,0.0746964366445888,-0.07581101168789531,-0.15894500034600245,-0.010248792312874079,-0.3081761006289308,-0.31634947442356476,-0.10992702449667406,-0.07689399190930851,-0.10413250595712344,-0.13532629346020056,-0.09342849278049915,-0.11023940323560706,-0.136984870988905,-0.13564857713623343,-0.18094733745900193,-0.04792099544025781,-0.09212799778837515,-0.2436818665873771,-0.07305109407701851,-0.13763284601246165,-0.13235403098431783,-0.16238455575103733,-0.1356644818354894,-0.07937990649333289,-0.17242758718128862,-0.23266545184475712,-0.07973515767501796,-0.045384875250798075,0.06360958522410637,0.0056038584347402305,-0.0785536212273147,-0.23309660704352464,-0.19553952027321672,-0.13397348066786094,-0.011168478826801553,-0.11681321276532802,-0.16469902140052198,0.06267678386947383,0.10787372380926462,0.003694025001967846,0.20307477288609366,0.17989569210850953,0.0724096127171937,0.06438853877693175,0.0867828981547239,0.09867194595772055,0.02888626256519656,0.0504436292171721,0.12843915183022256,0.4499152658819218,0.37231055847096584,0.12506993526061538,0.31536388140161725,0.4480844772777749,0.29925095655743317,0.4550943129507998,0.4620801439276681,0.41629476198276455,0.16598529282905056,0.25707076760933456,0.5362282278199667,9.460176033934028,9.323388794973724,1.6509636244473134,17.073132534071732,30.907152138252005,35.441288131045546,36.680533543681854,36.74353354368185,36.74353354368185,32.086571332509536,26.63681365623934,1.9037273655792417,1.7727954660827734,1.7732348446081783,5.449757676270194,1323.3148042368257,1169.862420529747,688.544560060151,12.0,24.0,34.0,42.0,46.0,36.0,33.0,28.0,19.0,237.092041812,17.0,4.418840607796598,5.293304824724492,6.192362489474872,7.089243155027514,7.995306620290822,8.89795568688403,9.805819595357969,10.710298183791462,11.618716887774234,0.6562499999999999,0.9637499999999999,1.1241895420193067,0.6185137582216302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6822733532934132,0.9557598039215687,0.995686908230153,0.6218200310400979,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,5.316788604006331,5.538925252383345,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,0.0,36.22086271854336,31.519133788687814,11.443454936667337,0.0,154.86504093046892,-161.5723268634754,-17.084463555817734,-5.049135214483607,-13.46436057195628,247.70779607536437,258.4361502999842,11.068688521573119,8.076129696874506,12.921807514999207,0.42857142857142855,0.919574241870646,0.2916542139906008,13.276187274129192,0.15043193791863807,0.942222794605712,0.08042575812935385,4.0,0.11764705882352941,0.29933927290103624,0.6324460293301641,0.7983458593344349,0.9077819531114784,0.9202819531114784,0.9202819531114784,2.897800000000001,,1.0399159663865545,0.5879898120088726,0.5300446839313885,1.0529505248587374,-1.3665311283925297,0.6129431154424184,0.5985419659928938,-0.635030476563845,65.66470000000002,4.794537184071822,0.0,5.316788604006331,0.0,31.22221174408738,7.04767198267719,34.85155307928476,0.0,0.0,3.5553480614894135,0.0,4.875197323201151,0.0,6.453624998892692,0.0,8.146419323098003,0.0,9.891161902845491,20.999999999999996,7.6156775163769215,0.0,0.0,0.0,0.0,0.0,1.5934876543209882,0.0,30.839999999999996,0.0,12.178815507684554,0.0,0.0,0.0,0.0,0.0,0.2586574074074077,35.97406534461781,5.316788604006331,0.0,0.0,12.830916929042129,10.333462436455168,0.0,31.246737983401033,24.26546827384644,5.022633313741326,0.0,0.0,19.792440263092168,21.832747305389223,20.575927332940118,99.91564504262679,,82.51488634111465,84.03584018007567,83.73067197511676,82.46831453562417,95.57910000305993,84.05217206088777,84.24463271320144,91.89939845370094,20.575927332940118,99.91564504262678,,81.60495987052644,83.52134909456791,83.26688287667679,81.5469828263728,96.09154917620717,83.51584683487567,83.72090849295772,92.13753488241244,4.95547751177696,69.62515205244753,,58.60829913359085,59.399072743403664,59.24689049349239,58.58442921862341,64.99753820643258,59.40350005726647,59.50030161054781,63.26149934416396,1.2859954583087574,6.2447278151641745,,5.157180396319665,5.252240011254729,5.233166998444798,5.154269658476511,5.973693750191246,5.253260753805486,5.26528954457509,5.743712403356309,2.477738755888481,49.95782252131339,,41.32243791845648,42.05466945328839,41.89846378030409,41.29996667561576,47.36250902390729,42.06439497515904,42.15972522947528,45.751252202924285,30.584313725490198,0.0,1.8398302469135803,6.198959278155707,0.0,0.0,0.0,31.861981063364897,3.544294611363064,3.1903240740740744,0.0,0.0,0.0,0.0,-0.5589351851851851,0.0,0.0,19.89824099328313,370.1956113873543,47.8942836641658,101.19136469282626,127.73533749350959,145.24511249783654,147.24511249783654,147.24511249783654,307.0,105.02184805112199,32.37722561847894,48.92175160952675,29.1,29.1,0.75,6.8843267109007815,5.087462841250339,3.565057187046464,3.945663323269493,,3.948862776540722,3.947974402596909,3.9486112597164253,3.948826356427919,3.9322271664865864,3.9482317006139134,3.9480821328882314,3.938092035856388,0.222816074190404,0.24660395770434332,,0.24680392353379513,0.2467484001623068,0.24678820373227658,0.24680164727674495,0.24576419790541165,0.24676448128836959,0.24675513330551446,0.24613075224102424,1.7411837242305905,1.8426207121897669,,1.8434312620330244,1.8432062671578844,1.8433675665214653,1.8434220390534437,1.8392096036376513,1.8432714371936538,1.8432335542703422,1.8406999804075423,183.19999999999962,79.27246419403389,74.65166839092561,,73.7798582486253,74.08066408608035,74.04338279535993,73.77194804915959,75.42487491563082,74.0630788640957,74.08275338342378,75.0359486588015,4.954529012127118,4.6657292744328505,,4.611241140539081,4.630041505380022,4.627711424709996,4.610746753072474,4.7140546822269265,4.628942429005981,4.630172086463986,4.689746791175094,4.842894461697596,4.782836502491244,,4.771089400141415,4.775158183988408,4.774654804661519,4.770982180857941,4.793140755895463,4.774920776431166,4.775186386595762,4.7879709433977755,0.0,12.178815507684554,3.8635648148148154,0.361311728395062,0.2586574074074077,7.6156775163769215,3.544294611363064,0.0,1.8398302469135803,222.2435687505526,62.34445888040337,-65.0446300070631,-6.877740962388312,-2.032644687720722,-5.420385833921924,99.72043021452185,104.03937421113059,4.455953340063593,3.251230444097831,5.201968710556528,388.0,28.0,1.082054930815534,0.635666027919356,0.08333333333333333,0.04419417382415922,0.5072126825797824,0.18539202356647078,0.09294625597086754,0.02551551815399144,0.0,0.0,0.0,0.0,0.0,0.0,0.15550211698203653,0.09027777777777778,0.28986648662335274,0.13340144646031593,11.596011838247808,10.179969910996238,7.704342574666895,6.055527905121946,6.601780131122635,4.6726596070826805,6.018989504368248,3.771633347011964,4.947137155736421,2.8168491827308193,3.6391216094598966,1.94126583771169,1.8516985733818738,0.8961768112946411,1.1106992548892114,0.4802999049864861,3.3521712873334475,1.6848496467484229,5.953398580585111,2.718945613576086,9.310336033663717,3.7961982575779443,54.17981643140414,32.86939997206077,24.146146483360873,21.116729296672176,20.929229296672176,20.929229296672176,82.0,99.0,36.46068799999998,17.999311999999996,0.375,49.03,5.645833333333334,3.6944444444444446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,6.0,32.0,0.0,1.0,33.0,6.0,1.0,4.0,29.0,7.0,17.0,26.0,0.0,0.0,0.0,13.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,2.0,1.0,0.0,16.0,3.0,0.0,1.0,1.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,1.0,3.091042453358316,4.385925275089539,3.597312260588446,4.123093975508087,4.563045259687421,4.934923472360559,4.816241156068032,4.957805732535055,5.033496963239518,4.745747013645339 +3339,CC(C)OC(=O)C(C)(C)Oc1ccc(C(=O)c2ccc(Cl)cc2)cc1,0,27.956521739130434,6.166280434782606,3.1956521739130435,7.426194310252282,159.32874750730716,112.76509278260876,1.5747845000397602,6.282826086956519,4.637343401058958,7.769142456521737,228.1006681371011,25.53191489361702,6.251595744680851,3.702127659574468,7.130023640661938,142.35629026084882,97.3200219361703,1.8734078831914907,6.4265425531914895,3.1543976009106034,7.7124623404255255,270.9502765389873,22.8,6.214749999999998,3.375,5.683333333333333,150.98011786237043,86.63698703749995,1.5759787018023494,6.349338749999999,3.203221450617285,7.748283799999998,226.35516138329754,20.019607843137255,6.426980392156863,2.8529411764705883,4.496732026143791,155.93537976392034,72.85012355882354,1.4012203374753918,6.5331,3.6061183732752355,8.014071058823527,197.9240026529035,16.523364485981308,6.241186915887851,2.6261682242990654,3.430944963655244,160.32800241008795,58.84853912149533,1.2687753900063363,6.326345794392522,3.4570689588861945,7.870952654205603,176.2235650660437,18.21505376344086,6.240698924731181,2.752688172043011,3.560334528076463,151.9991402188392,65.24154547311826,1.4616601905956559,6.351924731182797,3.4993251913801506,7.787165956989248,202.23981217929747,13.68695652173913,5.921391304347828,2.1043478260869564,2.519806763285024,158.76306338855713,47.09486871304346,1.2015612352754612,6.015756521739132,2.7639738772589006,7.555370156521739,152.79980812147713,11.045871559633028,5.515963302752295,2.128440366972477,2.1162079510703364,167.13241643685092,39.38076655963304,1.0205425256471927,5.5908532110091755,2.0014724204326657,7.231501798165137,125.21326073024616,19.533333333333335,6.1007,2.716666666666667,3.5444444444444447,153.10683459663286,70.94438936666668,1.4564206696849002,6.257125,3.05030864197531,7.717734066666665,195.7455782759593,10.89603024574669,0.1285767958412097,0.019101789896662936,0.6772211720226844,4.109220751942868,1.3276004498044625,51.23334630056712,0.25774619939400983,0.12811228733459354,1.6181340369021973,0.09347220652173908,52.27214233073401,0.23347946748180137,0.0018614095241925822,-0.009830160487592788,0.2103828982825887,1.7368294302158553,-0.09489921971146452,1.076517774363517,-0.01348869823417911,0.002719812572899476,-0.1363860436866027,-0.0009338670212765938,-0.6882046298715664,1.9121219281663528,0.023099073724007553,-0.001445659907079961,-0.07749291115311906,0.655412903451656,-0.02793576472067689,9.002021462476375,0.011169301884352337,0.02434831049149335,0.19282884933515443,0.010969925000000007,6.195950030016429,-1.430130842507135,-0.009568867452463,0.003800513213584628,-0.011833277734534256,-0.4910632366554871,-0.02211273665722566,-6.693072865784498,-0.00799239172352333,-0.013265484265539857,0.050330907482282,-0.006553602941176432,-4.571123473548,-0.9651078564740381,-0.034306458579933884,-0.0018583471657802413,-0.07604278925145312,-1.0023486082293331,0.24582675905366905,-4.250033207921843,0.03926929833319587,-0.03318843524194828,-0.3109274354405038,-0.024596904205607454,5.183136199238418,-2.1204341728154152,-0.029396618188100857,-0.0015327422845669426,-0.10405614163465246,-1.108366539463286,-0.2259835863889466,-10.040824384251072,-0.04175807987567702,-0.030022338760493494,-0.35575309526048554,-0.017258067204301054,-12.175865129937561,-0.6079395085066166,-0.0011456616257088865,0.0008520931816992595,0.1103024574669187,0.23751779504772566,-0.20734529497573032,-3.0922977353497156,-0.03744214165093887,-0.0006757655954631179,-0.05321648909074614,0.005817884782608685,-9.894977442435922,4.308995681656579,0.023885569535734678,0.0005272795595860583,0.06071261337819321,1.0629096286704258,0.3848506273301255,20.546274943549363,0.09701883225158411,0.030172594994883853,0.15823217922594754,0.010473139908256827,24.08453716574845,-1.4061751732829237,-0.0049498393194706974,-0.003080069400126383,-0.08120667926906111,-0.36627031358180273,-0.38122528017498614,-6.736497564335219,-0.06653428741287584,-0.00698076559546314,0.025145655460888747,-0.007066383333333325,-11.641613004224602,,,0.48190476190476184,1.23,0.64,0.04,0.59,0.05,0.8648955106591651,0.029113433178708802,0.0359934331787088,0.9509686153697027,0.23902152487712272,0.2284335844390923,1.8158641260288677,0.46745510931621503,1.9759154185227157,1.607101800076476,0.0,0.29844808716421517,0.07036553128202427,0.36881361844623944,7.8285399311304475,1286.0,283.64889999999986,147.0,341.60493827160496,7329.122385336129,5187.194268000003,72.44008700182897,289.0099999999999,213.31779644871207,357.3805529999999,10492.630734306651,1200.0,293.825,174.0,335.1111111111111,6690.745642259895,4574.041031000004,88.05017051000006,302.0475,148.25668724279836,362.4857299999997,12734.662997332402,1824.0,497.17999999999984,270.0,454.66666666666663,12078.409428989635,6930.958962999996,126.07829614418796,507.9471,256.2577160493828,619.8627039999998,18108.412910663803,2042.0,655.552,291.0,458.6666666666667,15905.408735919875,7430.712603000002,142.92447442248996,666.3762,367.824074074074,817.4352479999997,20188.24827059616,1768.0,667.807,281.0,367.1111111111111,17155.09625787941,6296.793686,135.758966730678,676.9189999999999,369.9063786008228,842.1919339999996,18855.921462066675,1694.0,580.3849999999998,256.0,331.1111111111111,14135.920040352044,6067.463728999999,135.934397725396,590.7290000000002,325.437242798354,724.2064340000001,18808.302532674665,1574.0,680.9600000000002,242.0,289.77777777777777,18257.75228968407,5415.909901999998,138.17954205667803,691.8120000000001,317.8569958847736,868.8675679999999,17571.97793396987,1204.0,601.2400000000002,232.0,230.66666666666666,18217.43339161675,4292.503555000001,111.239135295544,609.4030000000001,218.16049382716056,788.233696,13648.245419596831,1172.0,366.042,163.0,212.66666666666669,9186.410075797972,4256.663362000001,87.38524018109402,375.4275,183.0185185185186,463.0640439999999,11744.734696557558,501.21739130434776,5.914532608695646,0.8786823352464951,31.15217391304348,189.0241545893719,61.06962069100528,2356.7339298260877,11.856325172124453,5.893165217391303,74.43416569750107,4.299721499999998,2404.5185472137646,10.973534971644664,0.08748624763705136,-0.46201754291686103,9.887996219281668,81.6309832201452,-4.460263326438833,50.596335395085305,-0.6339688170064182,0.12783119092627537,-6.4101440532703275,-0.04389174999999991,-32.34561760396362,152.96975425330822,1.8479258979206041,-0.11565279256639688,-6.199432892249525,52.43303227613248,-2.2348611776541514,720.16171699811,0.8935441507481869,1.947864839319468,15.426307946812354,0.8775940000000005,495.67600240131435,-145.87334593572777,-0.9760244801512259,0.38765234778563207,-1.206994328922494,-50.088450138859685,-2.2554991390370174,-682.6934323100188,-0.8152239557993796,-1.3530793950850655,5.133752563192764,-0.6684674999999961,-466.25459430189596,-103.26654064272208,-3.6707910680529254,-0.19884314673848583,-8.136578449905484,-107.25130108053865,26.30346321874259,-454.7535532476371,4.201814921651958,-3.551162570888466,-33.2692355921339,-2.6318687499999975,554.5955733185107,-197.20037807183363,-2.7338854914933797,-0.14254503246472566,-9.677221172022678,-103.0780881700856,-21.016473534172036,-933.7966677353497,-3.883501428437963,-2.7920775047258948,-33.08503785922515,-1.605000249999998,-1132.3554570841932,-69.9130434782609,-0.13175108695652193,0.09799071589541485,12.68478260869565,27.314546430488452,-23.844708922208987,-355.6142395652173,-4.30584628985797,-0.07771304347825855,-6.119896245435806,0.6690567499999988,-1137.922405880131,469.68052930056706,2.60352707939508,0.05747347199488036,6.61767485822306,115.85714952507642,41.94871837898368,2239.5439688468805,10.575052715422668,3.28881285444234,17.24730753562828,1.141572249999994,2625.214551066581,-84.37051039697542,-0.29699035916824185,-0.18480416400758298,-4.872400756143667,-21.976218814908165,-22.87351681049917,-404.18985386011315,-3.9920572447725506,-0.4188459357277884,1.5087393276533247,-0.4239829999999995,-698.4967802534761,0.7445007878477142,0.6185215601435908,0.44947606665020684,0.3219501786361578,0.3076534131047899,0.18549368053958185,0.19564785788836564,0.08563302187291653,0.12420469447104433,0.046133637220413165,0.08083343763565563,0.027090969973121517,0.050958678813124166,0.012676933599333697,0.03121661843864785,0.006731190768217882,17.0011031255711,5.6867027322086345,3.5558909563504466,2.184555640779946,0.4740746009905933,-0.5100294922419628,4.023037043349333,0.9772597389812622,6.029055065100551,0.7739906268139733,13.643409227724158,10.946887831050113,35.4505174235092,11.698328828389227,2.2078288087012994,0.7411223936141326,3.5020738028825766,2.234721542189702,7.009357836635098,1.1940896607157796,3.714980882918986,2.4308562908010787,22.45586526402026,14.700622627186728,0.25346309948518225,0.5413881131968054,0.6657990685799947,0.8011666524065768,0.823727916377674,0.823727916377674,1.768070682620644,746.2705504674376,0.0,1.0,4.0,0.0,11.0,1.0,2.0,1.0,0.0,4.058200603828287,2.393602529039874,1.6743380436663893,0.8917293480142154,0.7612945654055192,0.7612945654055192,41.93693449207808,1216.9332423326475,47.9166772987475,26.455070485492335,55.77423463485129,,15.0,584.0,11.570356098935537,9.589074368143644,11.887211334113243,21.899048130419224,0.0,0.0,76.22588534645539,0.0,0.0,21.074665797832616,12.047619047619046,30.75,16.0,1.0,14.75,0.0,0.018095238095238175,1.25,0.1619785019427662,0.06185478689226809,-0.10012371505049811,0.0,0.14711673762043453,0.0,0.5989648033126296,0.8500952380952378,0.4369863013698634,0.5371100164203615,0.8500952380952378,21.62238776647913,0.7278358294677201,0.89983582946772,23.774215384242567,5.975538121928068,5.710839610977308,45.396603150721695,11.686377732905376,0.5668832623795654,0.2806324110671937,0.041501976284584984,0.2905138339920949,0.3,0.4662562359265314,-0.913099801505109,-0.05207357742198382,-0.019849995684893675,-0.0537117530297123,0.5337437640734686,1.0452650012532336,0.025036925457471736,0.02272315220115725,0.03604362073287012,-5.2967451742556895,0.6399312681796034,0.6474325008654152,1.5118953857290096,1.014238838324598,0.42138159754999427,1.1842661526053742,0.6474155394015348,1.0463935532497424,0.6252717599635168,0.6216598005197662,0.6653863536599519,0.9830953304130065,0.6088301309854268,0.742187767051313,1.2940251525717328,1.525776343335659,0.8434584888059705,1.06378534990903,0.6122597226695546,0.9255868075867603,0.7001177165072582,0.5579674563480341,0.7830579114251935,0.8448777436501894,1.0822179756704904,1.4613158083350342,1.6260545042252976,1.019662575427938,1.2989544621774292,1.0149564124023738,1.0777019466446451,0.9840974850257918,1.4075777496979898,0.9568248809992742,1.457315864048678,1.000287982070902,0.9980839013665226,1.6284311061780958,1.430746633330899,1.228518694849704,1.4379477277547743,0.7877635650139045,0.9907446180196261,0.7789599642077378,1.5396173858136994,1.8562993787816569,1.5894162384464194,0.8292123728675453,0.8910562781222717,1.3023784273493275,1.0722755467485787,1.2814307903563467,1.2637692557979,1.2060325191456134,0.8965652064827184,1.0924655348413297,1.2336434238555474,1.6769852041904387,1.206876947277752,1.1658810714520256,0.853704024982651,0.9185561724345159,0.8467850983734024,0.4961618981158408,0.8339041095890414,1.1331193471980152,0.8631787117748994,1.0806770934771197,0.8968772225452031,0.745108952917461,0.7900985639671538,1.167852009756928,0.47691221692377245,0.5059850601237383,0.4851461225095427,0.7885234671600605,0.6398008699746214,0.6310663821472611,0.4788500350142588,0.5665363592712271,0.5003693372807283,0.4819484083906497,0.4973953150861585,0.5851877070147135,1.2195307078417768,0.8934518329023763,1.1510981505561981,1.143579902302861,1.0079791538880942,1.286729253403173,1.2194915460660782,1.2842211437168676,0.9470059457234171,0.7681465482290674,0.9908208008355893,1.2068395187752567,7.5,0.12815018875624937,3.777777777777779,2.0,1.6844444444444449,0.6180555555555556,0.5657142857142858,0.43229166666666663,0.2426303854875283,0.23250000000000004,4700.947375344795,5269.985860145509,2335.343922595778,2123.8013389018884,16.602566179977885,0.496571961305821,8.358197329276575,0.9863812166558268,1.0,0.3,1.4653613522287257,3.129959427017139,3.849223912390624,4.631832608042798,4.762267390651494,4.762267390651494,0.2884615384615385,0.008009386797265585,0.10210210210210213,0.05405405405405406,0.05104377104377105,0.019314236111111112,0.023571428571428577,0.020585317460317464,0.012131519274376418,0.013676470588235297,0.5929498244642002,21.301775147928993,9.273922571219869,6.282314764737696,152.2614351267168,1.0,4.122510951914069,142.4795097626408,,109.73195343421052,109.61074726148226,113.96691803272614,109.72788225117523,163.6583419164936,110.47450454134926,110.83247570425638,136.65824829583005,0.02142793863599461,0.014477025282939805,-0.5146198623674584,0.31065611497973317,0.4226663727897,-0.07148176224664723,0.021012052737058882,-0.05233325754518417,0.021229911895929893,-0.0842859989199066,-0.009990852425842776,-0.013165801116724624,0.17548794240111046,0.17965196264911237,-0.07568190807776168,-0.11442777390090714,0.15949810025216396,-0.021042298324613743,0.17570629506932534,0.04333449692221501,0.19005445143526598,0.11916741440301915,0.1173602871720879,0.11853254436777595,-0.13125246628838907,-0.07442141787605595,0.19896110438575046,-0.017473283800610247,-0.11950276373526758,-0.01665616839801656,-0.13063899489443284,-0.031008766539775703,-0.10354576084411103,0.031104288232288193,-0.07011285156355268,-0.08744855806034861,-0.08857426371873113,-0.2668168727917424,-0.09728654622595825,-0.11228649131617222,-0.2439266879871119,0.18516622157658655,-0.08295443329015574,0.1523564592825127,-0.25905739357591323,-0.19215184178175515,-0.2631467162368408,0.09915675861233897,-0.19460612030176175,-0.22863081939298918,-0.08024076763794326,-0.1536516369148113,-0.2697266967074579,-0.17021957654671696,-0.19598220903521046,-0.16201239814148544,-0.23434394455922503,-0.21985391021225262,-0.18463314226231836,-0.23293220034677284,-0.05579458709229706,-0.00891032956773756,0.044608028164319795,0.16287508722958824,0.05780117676457894,-0.1561804946708699,-0.06035712985070986,-0.14526748304715853,-0.005274791431193533,-0.0328875654779658,0.06224186845589874,-0.18929733891197445,0.3954647320604321,0.18576889694181659,0.02760367287246592,0.08964960914742277,0.25866452372213755,0.28988437551886087,0.40103324157301684,0.37641227098473706,0.23551679251562696,0.09778681840774564,0.11204549777928972,0.46075282343244744,-0.12905389775618786,-0.038497143182691144,-0.16124506744074638,-0.11991160735054661,-0.08913376420787995,-0.28715362384152204,-0.13148658150913423,-0.25813877205291635,-0.05448943064478529,0.015539908862573781,-0.0755987645556423,-0.22271161052796148,8.691901917570458,16.09174169359974,4.636529533537416,15.95485616040264,31.479412249374423,39.248691720196106,40.99434389410915,41.604213459326544,41.604213459326544,49.397885463067894,40.1775450019119,0.0,7.4612021791053795,1.759138282050607,9.220340461155986,9448.323919041812,8943.98971076015,850.1189508005828,62.0,37.0,43.0,49.0,59.0,54.0,60.0,64.0,60.0,360.1128368320006,26.0,4.844187086458591,5.659482215759621,6.529418838262226,7.367077059881012,8.235095497258357,9.08239335764556,9.94927320768526,10.801634680173994,11.667918646935727,0.6884057971014493,0.9828695652173917,1.1162980309042658,0.6530861203317248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6871993361103882,0.9728900255754472,1.0089220684632196,0.6443313967380241,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,9.473725907600098,5.749511833283905,11.384295757348628,0.0,0.0,4.794537184071822,4.794537184071822,0.0,0.0,11.600939890232516,76.22588534645539,16.149536297135317,6.103966387748303,289.73289968483255,-567.4027129438898,-32.35866337198189,-12.334841585736735,-33.37663017316999,331.6698341769106,649.5305293887577,15.55801392676561,14.120228899755602,22.397604461681297,0.4666666666666667,0.8776635429141978,0.24314464433683783,23.360885709709578,0.17853749114152334,6.218860813451376,0.12233645708580242,8.0,0.23076923076923078,0.26529282442859964,0.5666559824833496,0.6968734926870245,0.8385590032105342,0.8621732549644526,0.8621732549644526,4.680000000000004,,1.6470588235294117,1.2594649167087328,0.8241976561086443,1.658247083672631,-4.0952321032281676,1.227921695613777,1.203763373537623,-1.5126892824944933,97.26150000000003,19.06280027574374,0.0,0.0,0.0,39.399965997494476,0.0,64.6804728448282,0.0,5.749511833283905,3.970291913552122,0.0,5.303304908059076,0.0,6.814542897259958,0.0,8.400434630806041,0.0,10.024066675494513,31.66666666666667,13.358976852247492,0.0,0.0,0.0,0.0,0.0,2.143815013025579,0.0,45.21200000000002,0.0,24.480738160813797,0.0,0.0,0.0,0.0,0.0,-0.5504522729185555,51.34970942159623,4.736862953800049,0.0,5.749511833283905,23.45756743304878,9.53140013787187,0.0,43.61638896622831,48.53093654769288,5.022633313741326,0.0,0.0,30.04196153525934,31.611169461077857,30.153937081355096,284.95901952528163,,219.33214216253867,219.12073732962781,227.86790025296358,219.32310473565667,328.9547766742785,220.85077534704942,221.56865033862977,273.92157230465796,30.153937081355096,284.9590195252815,,217.81684804489163,217.9620296062559,227.10963840934372,217.7975174186779,331.41191593621556,219.72108738708476,220.46118803497518,274.82918587415463,4.7429741529425264,219.80211598468887,,169.43768161793886,168.68479813617932,175.45205131109003,169.44632054340752,257.1762018109864,170.0982997947889,170.66970573226664,211.8531337774994,1.206157483254204,11.398360781011265,,8.773285686501547,8.764829493185113,9.114716010118544,8.772924189426266,13.15819106697114,8.834031013881976,8.862746013545191,10.956862892186319,2.3714870764712623,142.4795097626408,,109.73195343421052,109.61074726148226,113.96691803272614,109.72788225117523,163.6583419164936,110.47450454134926,110.83247570425638,136.65824829583005,44.75294117647057,0.0,6.852452754962988,5.835982981423941,0.0,0.0,0.0,46.4104151493081,0.0,0.0,10.905199669433943,0.0,-0.21319601540845623,0.0,-1.1190726991362796,0.0,0.0,29.639244249949108,545.3825249776659,67.40662220252138,143.97813364278838,177.0642999699687,213.0642999699687,219.06429996996872,219.06429996996872,539.0,125.13648059006036,76.02020888407745,59.5126410251717,52.6,52.6,0.875,8.036952340168003,5.700439718141092,4.502788877883902,4.9197095614729704,,4.918139659604006,4.9136957595061475,4.913676611277827,4.918238313402493,4.906798828284453,4.91439759328831,4.914535540725337,4.9107384951570054,0.1801115551153561,0.19678838245891883,,0.19672558638416024,0.1965478303802459,0.19654706445111308,0.1967295325360997,0.1962719531313781,0.19657590373153241,0.1965814216290135,0.19642953980628022,2.420987687325178,2.5095402284149606,,2.5092210729070827,2.5083170910540415,2.5083131941368193,2.509241131875691,2.5069124912563523,2.508459913015161,2.508487982681554,2.507715068716306,272.26000000000016,161.67188310382974,140.48568922039752,,140.44836260589227,140.87924612215275,140.87598091650295,140.4373816117567,141.0561025400009,140.81681501707706,140.8038612596165,140.9992270135347,6.4668753241531896,5.619427568815901,,5.6179345042356905,5.63516984488611,5.635039236660118,5.617495264470268,5.642244101600036,5.632672600683082,5.63215445038466,5.639969080541388,6.001859600244599,5.861396359377692,,5.861130627157036,5.8641938448421715,5.8641706672373815,5.861052438823401,5.865448433469564,5.863750593304714,5.863658598940941,5.865045140063783,10.905199669433943,24.480738160813797,0.5794565267030307,-0.03930888401554622,-0.06585760171674093,13.358976852247492,-0.21319601540845623,6.852452754962988,0.0,337.24354978333827,180.04081595384514,-352.58559702390306,-20.1077618834614,-7.664904283128326,-20.74032923670018,206.1005416970033,403.6200466888394,9.667792387551223,8.774348841061725,13.917932644442736,1716.0,37.0,2.6814319542376968,1.4103385387492857,0.2041241452319315,0.10206207261596575,0.6852493695566196,0.10970804841064383,0.14433756729740643,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.2384839432971499,0.07061504748587624,18.612519696192855,15.46303900358977,11.686377732905378,8.370704644540103,11.383176284877226,6.863266179964528,8.412857889199723,3.682219940535411,6.086030029081172,2.260548223800245,4.769172820503682,1.5983672284141694,2.751768655908705,0.6845544143640196,1.8729971063188708,0.40387144609307296,4.876192854348111,1.6096479635586138,6.047356584541522,1.69931078914844,8.691381991589045,2.103899176899052,85.38514325241606,53.64668691536618,34.58881601411141,29.0372971131437,27.811710345819527,27.811710345819527,126.0,143.0,52.790652999999985,26.785346999999994,0.2826086956521739,76.05,10.340277777777779,5.430555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,46.0,0.0,0.0,47.0,12.0,2.0,8.0,39.0,14.0,26.0,33.0,0.0,0.0,0.0,20.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,4.0,0.0,0.0,25.0,5.0,0.0,0.0,4.0,0.0,2.0,6.0,0.0,0.0,1.0,0.0,2.0,3.5553480614894135,6.629920396751181,4.110873864173311,4.579852378003801,5.012300573415317,5.520960792820564,5.6325549653678335,5.916033584803987,6.178980920779041,6.385721241642017 +4450,CN1CCOC(c2ccccc2)c2ccccc2C1,0,19.57894736842105,5.786444736842106,3.0789473684210527,5.578947368421052,159.62186291061133,76.9462979736842,1.5187407682139742,5.8836236842105265,2.4239766081871346,7.352445789473683,217.10745852927155,22.8,6.125625,3.75,5.45,143.39249348762746,85.68257042499997,1.8492355472500008,6.28575,2.688888888888889,7.556580099999996,263.1189071644235,18.442857142857143,6.11097142857143,3.4857142857142858,4.271428571428571,153.33356747697772,67.13054205714283,1.5742165649584854,6.225678571428572,2.483333333333334,7.6115660571428565,218.7936659589428,16.333333333333332,5.932720430107527,3.139784946236559,3.78494623655914,152.45360582540795,58.41151551612903,1.468935108552032,6.048726881720432,2.3264635603345285,7.465076172043011,196.9817646741914,13.539823008849558,5.769814159292034,2.7168141592920354,2.7610619469026547,157.9261033797608,47.65101764601769,1.2656876637046106,5.864535398230088,2.1438053097345136,7.3652718584070795,164.995836870681,12.87037037037037,5.825574074074076,2.5555555555555554,2.240740740740741,158.98322945201923,44.300856324074076,1.2742776021780093,5.913162037037038,2.225308641975309,7.4282921111111095,164.93420775979152,11.175257731958762,5.618907216494844,2.2989690721649483,1.5876288659793814,155.41792001596943,36.64766436082474,1.2889927591178658,5.727118556701029,2.075601374570447,7.216370597938144,157.4840096182492,7.544444444444444,5.3862000000000005,1.8888888888888888,0.9333333333333333,164.3704570499557,23.055491755555558,1.0099555733301664,5.461444444444445,1.7574074074074075,7.062529866666667,113.61882094527616,6.153846153846154,5.328711538461538,1.6538461538461537,0.5769230769230769,168.1931414149688,17.69250046153846,0.9007563295456922,5.388759615384615,1.6730769230769231,7.034250153846155,96.84055505144285,6.770083102493074,0.06805353185595565,0.008807433761170977,0.5020775623268696,3.085872576177284,1.4265911718697275,32.497759867728526,0.2405875287551862,0.06917984764542932,0.30363188673437985,0.037129110803324095,53.47554718882434,0.535180055401662,0.006405218144044317,-0.0015022573541505111,0.18673822714681437,0.6799168975069254,-0.20650876396348156,2.494064113192511,-0.012530091332323603,0.007445152354570522,-0.008164050477069898,0.0019486918282548872,-0.04983613670311922,-0.49865453106450336,-0.015507704788286492,-0.0028374178602175518,-0.014483577364463856,-0.3633161851998416,0.27286628480013936,-2.263114709081922,0.021008344588593485,-0.014734170953700129,-0.05943806885635142,-0.00791981456272254,2.1625854833348197,-0.48994727906353336,0.0043752174366306264,0.0014729328215783344,-0.013962112411759485,0.18294462812378978,-0.13523898802932224,-2.4295978875361195,-0.030184034032633308,0.0028676905549101504,0.007928825081000923,0.0032197946862062028,-6.154215807571699,0.4409089794817738,0.003964190547397834,0.0006163226146802969,-0.04772264849361411,0.05618611036207193,-0.10041792347497397,2.064377137627779,-0.0070981716122591795,0.005009952075110908,0.05036335210016969,0.0008072757826097684,0.5955903308720927,-0.5995178003488251,-0.015168127372524874,-0.001167955321007756,-0.099543449266441,-0.7047809582435619,0.13380199016659194,-2.730497278059916,0.019339368309339043,-0.015055481173694485,-0.04523899091458343,-0.007939241407612575,1.0397571936798211,-1.695747779649884,-0.00813909886626495,-0.0005006108207616593,-0.08889253791015791,-0.6073050232744096,-0.3279761597051158,-8.173406726111601,-0.05794693449454708,-0.010380363109346853,-0.059886785148800754,-0.0026164705428791874,-13.891666316297941,0.1123730378578024,0.004103310249307475,0.00034391692331260903,0.006694367497691645,0.05798707294552171,-0.09585308679687841,0.49212911443521634,-0.010072048651123502,0.004058661126500537,0.008193974214288179,0.002089341828254802,-1.1717432168187147,0.5861922011506501,0.005202085552951198,0.00020214779909426075,0.06320583848284686,0.2764756019603666,0.03943412088870802,2.79010029826338,0.01043892842986824,0.005887611868740764,0.01305727206004217,0.0022573588323033795,3.399688386793855,,,0.4859649122807018,1.25,0.631578947368421,0.0,0.618421052631579,0.013157894736842105,0.7283858899482997,0.0037303668143455994,0.017309314182766652,0.8054221731379689,0.2603039690441185,0.23145058847696198,1.5338080630862685,0.4917545575210805,2.0711118728194733,1.8506948926161007,0.11207938931824615,0.10833759088512657,0.0,0.22041698020337272,6.6617543217894735,744.0,219.88490000000002,117.0,212.0,6065.630790603231,2923.9593229999996,57.712149192131015,223.57770000000002,92.11111111111111,279.39293999999995,8250.08342411232,912.0,245.025,150.0,218.0,5735.6997395050985,3427.302816999999,73.96942189000004,251.43,107.55555555555557,302.26320399999986,10524.75628657694,1291.0,427.7680000000001,244.0,299.0,10733.34972338844,4699.137943999998,110.19515954709398,435.79750000000007,173.83333333333337,532.809624,15315.556617125996,1519.0,551.743,292.0,352.0,14178.185341762939,5432.2709429999995,136.61096509533897,562.5316000000001,216.36111111111117,694.252084,18319.3041146998,1530.0,651.9889999999998,307.0,312.0,17845.64968191297,5384.564993999999,143.022705998621,662.6925,242.25000000000003,832.27572,18644.52956638695,1390.0,629.1620000000003,276.0,242.0,17170.188780818076,4784.492483,137.62198103522502,638.6215000000001,240.33333333333337,802.2555479999999,17812.894438057483,1084.0,545.0339999999999,223.0,154.0,15075.538241549035,3554.8234429999998,125.03229763443298,555.5304999999998,201.33333333333334,699.987948,15275.94893297017,679.0,484.75800000000004,170.0,84.0,14793.341134496013,2074.994258,90.89600159971498,491.53000000000003,158.16666666666669,635.627688,10225.693885074854,320.0,277.09299999999996,86.0,30.0,8746.043353578378,920.0100239999999,46.839329136375994,280.21549999999996,87.0,365.78100800000004,5035.708862675028,257.2631578947368,2.5860342105263148,0.33468248292449715,19.078947368421044,117.26315789473679,54.210464531049645,1234.914874973684,9.142326092697076,2.628834210526314,11.538011695906434,1.4109062105263155,2032.070793175325,21.40720221606648,0.25620872576177267,-0.06009029416602044,7.469529085872575,27.196675900277015,-8.260350558539262,99.76256452770045,-0.5012036532929441,0.2978060941828209,-0.3265620190827959,0.07794767313019549,-1.9934454681247686,-34.905817174515235,-1.0855393351800544,-0.1986192502152286,-1.01385041551247,-25.432132963988913,19.100639936009756,-158.41802963573454,1.470584121201544,-1.031391966759009,-4.160664819944599,-0.5543870193905778,151.38098383343737,-45.565096952908604,0.40689522160664826,0.1369827524067851,-1.298476454293632,17.01385041551245,-12.577225886726968,-225.95260354085912,-2.8071151650348978,0.266695221606644,0.7373807325330859,0.29944090581717686,-572.342070104168,49.822714681440445,0.4479535318559552,0.06964445545887354,-5.392659279778394,6.349030470914128,-11.347225352672059,233.274616551939,-0.8020933921852873,0.5661245844875326,5.691058787319175,0.09122216343490383,67.30170738854648,-64.74792243767311,-1.6381577562326863,-0.12613917466883764,-10.750692520775628,-76.11634349030469,14.450614937991931,-294.8937060304709,2.0886517774086166,-1.6259919667590044,-4.88581101877501,-0.857438072022158,112.29377691742067,-164.48753462603875,-0.7894925900277001,-0.04855924961388096,-8.622576177285318,-58.90858725761773,-31.81368749139623,-792.8204524328253,-5.620852645971067,-1.0068952216066447,-5.809018159433673,-0.2537976426592812,-1347.4916326809002,10.113573407202216,0.36929792243767273,0.030952523098134812,0.6024930747922481,5.218836565096954,-8.626777811719057,44.29162029916947,-0.9064843786011152,0.3652795013850484,0.7374576792859361,0.1880407645429322,-105.45688951368433,30.481994459833803,0.2705084487534623,0.01051168555290156,3.286703601108037,14.376731301939062,2.050574286212817,145.08521550969576,0.5428242783531485,0.30615581717451973,0.6789781471221928,0.11738265927977574,176.78379611328046,0.6883757632301711,0.5921202590220908,0.4449207901381205,0.32252305019140226,0.2872183449592885,0.18207539194775246,0.18142277395053438,0.09831547910015685,0.11818415458139828,0.053543024617353246,0.07785473620184377,0.03048880578280852,0.04999742028903162,0.017305880218582786,0.03372295278061237,0.0099738610488495,8.01002293055915,5.6842337376809935,3.5200547321709355,2.184011798235342,0.3486201481438395,-0.40523288183028966,3.213178540133596,0.9939171838409031,6.0058545435848485,0.99696461380988,14.543898960335474,10.944634804058168,16.004023938435463,11.695377519125415,1.9977699681220702,0.77916284155558,3.462534660613796,2.233956748882849,3.509644715148965,1.2661664545157134,3.676085057230377,2.4299501438149456,20.906428771412283,14.706818817690507,0.23451569288543248,0.4973355764208767,0.6849723066902984,0.7982403567940661,0.8762055315299437,0.8988591415506968,1.7146388147426057,537.9681454134255,0.0,0.0,3.0,0.0,9.0,1.0,3.0,0.0,0.0,3.95256555412326,2.5008636441315453,1.4644405392564361,0.8387974468665051,0.40815197379807433,0.2830233553200907,159.70221357774076,585.9539573016406,28.203267765537376,15.41984098162212,29.921699327577905,,9.0,283.0,0.0,0.0,6.103966387748303,0.0,19.696394776338067,16.690354475090988,0.0,6.06636706846161,60.47851826122054,4.736862953800049,9.233333333333334,23.75,12.0,0.0,11.75,0.0,0.014035087719298196,0.25,0.08730552797087043,0.055368421052631456,-0.03193710691823898,0.0,0.0757511520737324,0.0,0.5307017543859651,0.7614035087719295,0.4433962264150947,0.47533333333333366,0.7614035087719295,13.839331909017693,0.07087696947256639,0.3288769694725664,15.30302128962141,4.945775411838252,4.397561181062278,29.142353198639103,9.34333659290053,0.6382488479262676,0.054151624548736454,0.0,0.259927797833935,0.29411764705882354,0.3271752177322214,-0.41492439559993616,-0.024011810215874636,-0.010919063042103584,-0.02766162637332908,0.6728247822677786,0.853278002112025,0.037029593051164655,0.022454684266105918,0.037099043570088044,-3.899034548183123,0.8737162438625206,0.83783646062402,1.2232081412989875,0.75148275862069,0.7336063734290847,1.2553564695812494,0.877879707709086,1.0929023152096895,0.814923965696221,0.9419950582868727,0.8856083704769362,1.0061640004445862,1.0920168926817864,1.6717536547891503,1.875561689196576,1.3436650246305424,1.3567773788150812,0.9086434020589372,1.0829837451635222,0.880119949081598,1.567668006302002,1.3355269350517702,1.762978945233545,0.9051834729367085,1.0546917621385707,1.0737254940064906,0.9866680259155307,1.2303151649981465,0.992391556147565,1.1126156191661347,1.0555920684397047,1.119834048087716,1.063357199839002,1.0167292044754725,1.1287736725973765,1.0902319042503028,0.9291130165259331,1.0953307656676037,1.0222135909348056,1.2356667683857192,1.0415269855896796,1.0259905342516382,0.9285228138782072,1.0038797318427064,1.0535022453197445,0.9191541563317169,1.216137308500369,0.957798701188406,1.1046298190580106,1.5957304080235148,1.4190468026868293,1.185134099616859,1.3585303211649715,0.871254232556826,1.0952862371055165,0.883747375038019,1.5253825295338597,1.4293647106305492,1.739986828257308,0.9337132092163727,1.1757786795349858,0.7380004186056321,0.7039508178429715,0.8996800568787775,0.9791176960521205,1.1940413081510919,1.181201399015961,1.2359673613850322,0.8246021218687788,1.0096985855440195,0.5941053937086538,1.2552623894594852,0.9180612384069833,0.47959148991597556,0.5221393761681522,0.7110804597701151,0.7712946339517259,0.9792857527239157,0.9241073918888423,0.996069803445406,0.5597734770699168,0.6774842315706482,0.31265228060757516,1.0045804046492415,0.8615467235301524,0.525351117169467,0.602689975245253,0.5780636604774538,0.7099416517055658,0.8711431680009161,0.8658274771490568,0.8888687646725371,0.5881998193346426,0.6937770478381223,0.3649370852283141,0.9066449924561879,2.5,0.0,1.7777777777777786,1.3125,0.7733333333333335,0.39583333333333337,0.24,0.1597222222222222,0.03703703703703702,0.015625,3365.9854488660812,3876.115557405301,1795.8388763231342,1605.3840433251758,10.688350015977655,0.4980506342293607,5.365010511654586,0.9922328190707186,1.0,0.29411764705882354,1.2953619593203252,2.74706386931204,3.783486974187149,4.40913006657708,4.839775539645511,4.9649041581234945,0.11904761904761904,0.0,0.06349206349206352,0.042338709677419345,0.025777777777777778,0.014660493827160495,0.012631578947368423,0.01597222222222222,0.009259259259259255,0.015625,0.31880472425089007,13.959183673469388,6.635204081632653,3.3659605551497442,114.18075564372508,1.0,3.8806228636344455,70.48811999615407,,56.245698971577326,55.57238868789329,56.27986703771326,56.25530021383385,70.038236761196,56.01821774580415,56.280425254352856,64.21917821024553,0.079050736497545,0.09412028985654725,-0.1705669772702078,0.3719310344827587,0.22033213644524252,-0.14475679370202874,0.0767457241158708,-0.05208121716514161,0.1076202479185775,-0.02688798783578317,0.05248420406772642,-0.0009319425293049511,-0.07365559971942952,-0.22787509134883124,-0.3221617030748248,-0.028847290640394232,-0.1177353167478841,0.19127153607891298,-0.06963909876536686,0.08732100411559932,-0.21298357043539415,-0.19575700528564188,-0.21330471943361207,0.04044064244351988,-0.07236946306953172,0.06429082102441583,0.16723745662124662,-0.027808676307007864,0.05928456979594985,-0.09479869965273549,-0.07476201121015728,-0.12545967859933244,0.0414526867651987,0.026113281995105927,0.08671887412714288,-0.11508467198738354,0.0651260808481671,0.058251062645632706,0.06997754753461294,-0.09505035093072939,0.018207527684657072,-0.07039011978699099,0.06352367504806944,-0.02950348943266316,0.07241924123320778,0.16586977290770533,0.021742394717879823,0.01113762013073076,-0.08855397951142631,-0.2228852340041694,-0.13261017370994935,-0.19826309067688397,-0.2283895205798258,0.09379140485723571,-0.08402109219753946,0.08038391852396529,-0.21762813429221528,-0.14899288543485206,-0.213827943514925,0.019443600829522997,-0.25047665648674644,-0.11959847849619964,-0.0568395782854121,-0.17704941343761116,-0.19680171759610587,-0.2299019972731653,-0.2515067733708038,-0.24085593627553298,-0.15004894434792354,-0.19723483522397733,-0.07046951802155575,-0.25977604805512133,0.01659847244953628,0.060295331298788085,0.039048482524935174,0.013333333333333437,0.018791143028126883,-0.06719029858515868,0.015143478087051741,-0.0418643838408286,0.05866825765940656,0.026986540519231925,0.056272336801228964,-0.021911757399718446,0.08658567291955183,0.07644108117653767,0.02295195224577931,0.12588859416445644,0.08959397873221936,0.027642201680685177,0.08585515769762496,0.04338931649483188,0.08510588081831019,0.04300362587235379,0.06079754627738844,0.06357463486608966,17.81582785730353,17.30536732228132,3.965406456500188,10.883502973408174,22.829392751695206,28.773246425030358,32.76549661321805,34.576377439184306,34.70250708661011,39.351125583569996,35.16320295970591,2.129508397046677,2.058414226817405,0.0,4.187922623864082,2327.7223335198837,1762.239238887517,794.7888805920289,65.0,28.0,37.0,49.0,62.0,64.0,74.0,72.0,68.0,253.146664228,21.0,4.59511985013459,5.43372200355424,6.297109319933935,7.1569563646156364,8.029758520440822,8.897682313454224,9.773549695421735,10.645067690617664,11.52197439958884,0.5964912280701755,0.9565263157894739,1.116983578076119,0.5550723240538277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6769786794831392,0.945614035087719,0.9849541917430142,0.6215822843797871,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,4.736862953800049,6.103966387748303,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,54.59730361615449,23.738026457768175,13.08951281182515,6.606881964512918,151.16641784236938,-191.70961356122103,-11.094297915972946,-5.044989830558449,-12.780640904081404,310.86863142011015,394.24434374041954,17.10896984956443,10.374851151063671,17.141058423496503,0.4444444444444444,0.9773492367682002,0.28973909342712867,27.85084359425876,0.08508925790776894,0.0,0.02265076323179982,5.0,0.047619047619047616,0.24683305095240055,0.5234569003239664,0.7209487868296603,0.840165961759616,0.9222260649080015,0.9460694998939921,3.238000000000002,,0.3928571428571429,0.4713820381572824,0.39838377133594904,0.3917657575808813,-1.60047608252097,0.419905140758874,0.3887577933310232,-0.7183191063014545,77.01300000000005,4.736862953800049,0.0,4.899909730850478,0.0,12.648722793660877,20.199310353102682,71.28765809124548,0.0,0.0,3.7612001156935624,0.0,5.043425116919247,0.0,6.529418838262226,0.0,8.113426639943654,0.0,9.751675801946746,22.66666666666667,19.08603221844293,0.0,0.0,0.0,0.0,0.0,3.887320483749056,0.0,36.348000000000006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.44537596689253,0.0,0.0,0.0,25.099220083953163,11.281619359712625,0.0,22.79432086283929,54.59730361615449,0.0,0.0,0.0,21.09274831404545,25.72518982035929,25.17762572138106,140.97623999230834,,112.55502032528312,111.2289417101818,112.6492926569311,112.57340005263964,140.9188293552978,112.12765356148739,112.62050575771849,128.8164191080182,25.17762572138106,140.97623999230836,,112.2448699493433,110.85679799584713,112.33477915324485,112.26411129665482,141.67694960491298,111.79614950299361,112.31359171035193,129.15667552679267,4.805077567671888,99.27973436780354,,80.22851999812143,79.33781774690091,80.73729231250569,80.24263946022963,98.8033907695237,79.94651212471851,80.27270391107642,90.17322463425526,1.325138195862161,7.419802104858333,,5.923948438172796,5.854154826851674,5.928910139838479,5.9249157922441915,7.4167804923840945,5.901455450604599,5.9273950398799204,6.779811532000958,2.402538783835945,70.48811999615407,,56.245698971577326,55.57238868789329,56.27986703771326,56.25530021383385,70.038236761196,56.01821774580415,56.280425254352856,64.21917821024553,35.93333333333332,0.0,2.1418490173847315,0.0,0.0,0.0,0.0,37.42825928623454,2.7271130952380953,0.0,6.124212962962963,0.0,0.06120370370370343,2.305601851851852,0.0,0.0,0.0,23.620126806431912,451.56960275684213,49.22375445417236,104.38842703385751,143.77250501911166,167.54694252992905,183.9114705065294,188.66635800869278,559.0,112.3509401577617,10.46544650563739,52.19914651276543,12.47,12.47,0.8,7.906834944197854,5.392317422778761,3.9554987824974686,4.3006395178690395,,4.306699573844063,4.307598358313206,4.30879868046821,4.306692845650181,4.292155048199383,4.30713608181995,4.306637644833077,4.299216757476574,0.20818414644723518,0.2263494483088968,,0.22666839862337174,0.22671570306911612,0.22677887791937948,0.22666804450790426,0.22590289727365176,0.22669137272736578,0.2266651392017409,0.2262745661829776,2.0169605938517545,2.1006176228992555,,2.1020257368150124,2.1022344095308814,2.1025130230064133,2.102024174551608,2.098642835218316,2.1021270872455777,2.102011357020186,2.100286742856638,207.85999999999962,111.4767283499914,97.86118429381102,,97.26966122271057,97.19819991485366,97.12393467932591,97.27023454282177,98.43071758385923,97.23730575322556,97.27423882095509,97.92661965139911,5.867196228946916,5.150588647042685,,5.119455853826872,5.115694732360719,5.111786035753996,5.1194860285695665,5.180564083361013,5.1177529343802926,5.119696780050268,5.154032613231532,5.355669740938844,5.225403873879325,,5.219341020192847,5.218606078072792,5.217841726247422,5.219346914306329,5.231206812083184,5.219008328050386,5.21938807999009,5.226072305300547,6.124212962962963,2.305601851851852,0.0,3.887320483749056,0.0,19.08603221844293,0.06120370370370343,2.7271130952380953,2.1418490173847315,247.68706477285022,69.84418331463169,-88.57656074584966,-5.125954484139184,-2.3309621248907813,-5.905104049723311,143.6322034323502,182.15470478155865,7.904943727273778,4.793544862672595,7.919769773111246,650.0,31.0,0.8941739949040548,0.5641528136630946,0.0,0.0,0.1916383190435099,0.07067289134094253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.05985279273275698,0.16596365263022672,0.054197881028967776,13.079139501373252,11.250284921419725,9.343336592900531,6.772984054019448,8.042113658860078,5.098110974537069,6.712642636169772,3.6376727267058038,5.7910235744885155,2.623608206250309,4.826993644514314,1.8903059585341282,3.1998348984980236,1.1075763339892983,2.495498505765315,0.738065717614863,2.1756567966653786,1.094874356582852,3.801302238800005,1.5367175228956313,6.0919177798226105,2.078605611835792,64.52538563907217,47.494321446113595,33.060920214721676,24.15524408944857,20.201355580456088,19.748121302188427,98.0,114.0,42.96106699999998,22.506932999999997,0.47368421052631576,99.02,4.805555555555555,4.249999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,38.0,0.0,1.0,40.0,12.0,0.0,6.0,34.0,12.0,21.0,28.0,0.0,0.0,0.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,2.0,0.0,1.0,19.0,2.0,0.0,1.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,2.0,3.332204510175204,6.459708817088444,3.8501476017100584,4.375757021660286,4.912654885736052,5.426050733057588,5.456122076553906,5.810111271378576,6.091945991934113,6.289773546964902 +4173,Cc1ncc([N+](=O)[O-])n1CCO,0,26.857142857142858,6.9564142857142865,3.0952380952380953,10.761904761904763,172.14757383789245,106.24864057142854,1.2521203877924283,6.9428857142857145,9.134920634920634,8.39853942857143,199.99856956821293,27.428571428571427,6.987619047619047,3.7142857142857144,8.714285714285714,158.1758673083024,104.55069028571427,1.520741069809524,7.054985714285715,4.112433862433862,8.334940571428572,236.10309150424607,22.8,6.793194285714287,3.342857142857143,7.428571428571429,166.37348321588695,85.71406502857138,1.279249719607,6.829851428571429,4.96984126984127,8.230655314285713,195.5517593961989,20.076923076923077,6.7862794871794865,2.8974358974358974,5.487179487179487,172.7812100580306,73.72565176923075,1.1931508272075386,6.7985999999999995,3.9900284900284895,8.245761333333336,178.20232577324236,18.658536585365855,6.655243902439024,2.3902439024390243,5.195121951219512,163.37106776554634,66.56923065853658,1.1627489066267809,6.69888292682927,4.654471544715447,8.145043219512196,168.93607709485195,13.8,6.5077,1.7,2.6,175.136421013111,47.4192216,0.827500077433475,6.4993799999999995,4.429166666666667,8.111527200000001,117.53494943974981,9.785714285714286,6.983142857142857,1.1428571428571428,2.3214285714285716,183.72682206369615,28.510524642857145,0.5722891522425714,6.890542857142857,7.345238095238096,8.708587714285715,79.75171145267771,3.3333333333333335,5.793333333333334,1.0,0.0,185.00652691488267,6.05304,0.474664598566,5.749333333333333,3.1666666666666665,7.636032,48.06037316244244,,,,,,,,,,,,8.489795918367346,0.21868163265306106,0.03645324646062532,0.6258503401360546,5.537414965986396,1.4045233082956725,39.82148334693877,0.18167031473853057,0.197734693877551,4.125850340136056,0.1403056326530612,41.26142905026571,0.2857142857142863,0.02245238095238091,-0.010060097799287545,0.2721088435374151,1.639455782312925,-0.613371179119049,1.2365042448979535,-0.0239056404489794,0.019202040816326416,-0.36375661375661367,0.012937687074829935,-4.717035086586159,1.126530612244898,0.017638367346938764,-0.0022433844895130882,0.06530612244897958,0.8326530612244899,-0.15803796464880876,5.305209093877548,0.004439162133844979,0.01791673469387751,0.7174603174603175,0.009861910204081623,3.4484803185176074,-0.017268445839874583,-0.004318262689691263,0.0051678491410606636,-0.1936159079016222,-0.5410779696493982,0.47529419324326777,0.007183264782834697,0.039745127688506035,-0.004677551020408187,-0.020233734519448852,-0.000556548403976975,6.025053146570277,-1.8591338974614238,-0.009772573419611732,-0.005940417326584562,-0.31458437033349923,-0.4514683922349428,-0.46285340892249294,-9.067465441015429,-0.10010349751935632,-0.010432951717272248,-0.21682982135943804,-0.005771737182677964,-19.229225884104096,0.23877551020408116,-0.007635561224489777,0.000242772547006221,-0.07346938775510208,-0.46122448979591846,-0.10551138914430842,1.0523334959183699,-0.03980264293948783,-0.0034946938775509253,-0.3161281179138321,-0.009404632653061252,-2.7722888263728227,-3.071428571428572,-0.08647040816326532,0.001752117497644913,0.24489795918367346,-2.331632653061224,0.23604736667964457,-14.011262418367348,0.06689503140566307,-0.08278571428571432,-1.1275510204081634,-0.04761971428571417,1.4910458596756837,3.129251700680271,-0.014886394557823035,-0.018289629140712402,0.32653061224489793,0.27210884353741466,0.2860457191968044,15.322243510204089,0.11872295444204055,-0.006429931972788715,-1.1496598639455782,-0.02036391836734704,27.946563026404018,,,,,,,,,,,,,,,0.43333333333333335,1.1875,0.5,0.041666666666666664,0.6875,-0.1875,0.597282935608897,0.020859258518840074,0.02802592518550674,0.7341227508003773,0.25850292958676996,0.2134889420921479,1.3314056864092743,0.4719918716789178,1.9330538694339496,0.9899230886177978,0.5153777008886182,0.4277530799275338,0.0,0.9431307808161522,8.145923388,564.0,146.08470000000003,65.0,226.0,3615.0990505957416,2231.2214519999993,26.294528143640992,145.8006,191.83333333333331,176.36932800000005,4199.969960932472,576.0,146.73999999999998,78.0,183.0,3321.6932134743506,2195.5644959999995,31.935562466000004,148.15470000000002,86.36111111111111,175.03375200000002,4958.1649215891675,798.0,237.76180000000002,117.0,260.0,5823.071912556044,2999.9922759999986,44.773740186245,239.0448,173.94444444444446,288.07293599999997,6844.311578866961,783.0,264.6649,113.0,214.0,6738.467192263193,2875.3004189999992,46.532882261094,265.1454,155.6111111111111,321.5846920000001,6949.890705156452,765.0,272.865,98.0,213.0,6698.2137783873995,2729.338457,47.67270517169801,274.65420000000006,190.83333333333331,333.94677200000007,6926.37916088893,552.0,260.308,68.0,104.0,7005.45684052444,1896.768864,33.100003097339,259.9752,177.16666666666669,324.461088,4701.3979775899925,274.0,195.528,32.0,65.0,5144.351017783492,798.2946900000001,16.024096262792,192.9352,205.66666666666669,243.84045600000002,2233.047920674976,20.0,34.760000000000005,6.0,0.0,1110.039161489296,36.31824,2.847987591396,34.496,19.0,45.816192,288.36223897465464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,178.28571428571425,4.5923142857142825,0.7655181756731316,13.142857142857146,116.28571428571432,29.494989474209124,836.2511502857142,3.815076609509142,4.152428571428571,86.64285714285718,2.946418285714285,866.4900100555799,6.000000000000012,0.47149999999999914,-0.21126205378503843,5.714285714285717,34.42857142857142,-12.88079476150003,25.966589142857025,-0.5020184494285674,0.40324285714285474,-7.6388888888888875,0.27169142857142864,-99.05773681830934,39.42857142857143,0.6173428571428567,-0.07851845713295809,2.2857142857142856,29.142857142857146,-5.5313287627083065,185.6823182857142,0.15537067468457427,0.6270857142857129,25.11111111111111,0.34516685714285683,120.69681114811625,-0.6734693877551088,-0.16841224489795925,0.20154611650136586,-7.551020408163265,-21.102040816326532,18.536473536487442,0.2801473265305532,1.5500599798517354,-0.18242448979591927,-0.7891156462585052,-0.02170538775510203,234.9770727162408,-76.22448979591837,-0.400675510204081,-0.24355711038996705,-12.897959183673468,-18.510204081632654,-18.97698976582221,-371.7660830816326,-4.104243398293609,-0.42775102040816215,-8.89002267573696,-0.23664122448979652,-788.3982612482679,9.551020408163247,-0.3054224489795911,0.00971090188024884,-2.938775510204083,-18.44897959183674,-4.220455565772337,42.0933398367348,-1.592105717579513,-0.139787755102037,-12.645124716553285,-0.3761853061224501,-110.8915530549129,-86.00000000000001,-2.4211714285714288,0.049059289934057566,6.857142857142857,-65.28571428571428,6.609326267030048,-392.31534771428574,1.8730608793585657,-2.318000000000001,-31.571428571428573,-1.3333519999999968,41.749284070919146,18.775510204081627,-0.08931836734693821,-0.10973777484427441,1.9591836734693875,1.632653061224488,1.7162743151808264,91.93346106122453,0.7123377266522433,-0.03857959183673229,-6.8979591836734695,-0.12218351020408225,167.6793781584241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7614856834587246,0.5516181151279739,0.4719918716789178,0.2911046942801777,0.30718971530470357,0.14622515765838748,0.1857250027237053,0.0790040227243109,0.12354703661560956,0.04197391972403016,0.09358985189206262,0.02269509223370995,0.06980994321596241,0.010930875619043906,0.041780460867837134,0.007097471666281332,8.054487664406288,5.825938074348832,3.6075693289673083,2.311730187639661,0.5037694317762951,-0.48365366042669755,3.2432386100470283,0.9728844645851639,7.004115183498141,0.9959582860365437,14.59562537750828,11.102279885101153,16.02778351765167,11.848157199282763,1.8813768710226857,0.6691312008524963,3.5530601793731194,2.3571177177004117,8.001934695764051,1.386421629817081,3.756895211009344,2.5502983118842284,20.736373512344162,14.65157478475604,0.4018290210415739,0.7538845624617191,0.8670557321436217,0.8670557321436217,0.8670557321436217,0.8670557321436217,2.5098822160639793,294.2284590462867,0.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.549946429601652,0.9357849740192026,0.4168994048649277,0.4168994048649277,0.4168994048649277,0.4168994048649277,74.73581764604054,522.3647994436217,61.756587481941125,24.874514259220078,55.13141945070505,,6.0,109.0,4.923311048817671,10.114318268765572,18.969501148260523,5.824404497999927,0.0,10.763943219404432,6.923737199690624,0.0,4.9839785209472085,5.106527394840706,5.2,14.25,6.0,0.5,8.25,0.0,0.06666666666666665,-2.25,0.26190476190476164,0.034368530020703836,-0.2275362318840578,0.05320512820512813,0.2770252100840335,0.0,0.6952380952380954,0.9916666666666666,0.4333333333333338,0.6608695652173916,0.9384615384615385,7.1673952273067645,0.2503111022260809,0.33631110222608085,8.809473009604528,3.1020351550412393,2.5618673051057748,15.976868236911292,5.663902460147014,0.43697478991596644,0.28846153846153844,0.0,0.3461538461538461,0.5,0.3887532144092852,-0.6045560519288569,-0.1270984585061453,-0.02878838342518366,-0.10075934198814279,0.6112467855907149,0.9505591973366353,0.05675506883347862,0.04526472368269693,0.0633706131557757,-0.8824210444257117,0.6971153846153847,0.5940774752018385,1.1668500404069888,0.7608695652173911,0.41359541359541346,1.8611646201377645,0.7066699773467167,1.3667711821176207,0.5814497540165823,0.6720405483802019,0.6092077832546453,1.1372402083348192,0.7195512820512822,0.7098879494310372,1.0505133511480407,1.1304347826086956,0.71007371007371,1.2865419935963756,0.723498564576478,1.0385155501444023,0.6957305535486978,0.5053586150041218,0.7014773578845946,0.9056722484139306,0.8945595003287312,0.8385470930966201,0.7518130555212366,1.482720178372352,0.9746109746109745,0.7593249498117014,0.8957132300726176,0.7191273155572433,0.8429234668268623,0.6322414113015923,0.7752014380924793,0.7895130660150083,1.0698092557848657,0.8614074325971999,1.0950012850319188,1.4289501590668077,0.9501408281896084,1.4507208544202173,1.0820350067264333,1.6474954016837544,0.8648244971457868,0.92755313373414,0.8683886160924698,1.4719729382835776,1.0152243589743593,1.0521982380499098,0.7392186749495951,0.8369565217391304,1.0555896805896803,0.812265490360872,1.0151733160067409,1.0582485207228118,1.0468090962259604,1.0946917651369419,1.0737908515365484,1.0088380492933906,1.6185897435897438,1.9717571594776375,1.2538850934740748,0.16304347826086954,1.784398034398034,0.15365945839690145,1.5914140629398192,0.24752528959627212,1.9938934186534552,2.211230191444535,2.0075289474949924,0.7499252252055981,0.9161324786324787,1.2266872393419237,1.6391483990628313,0.0,1.218263718263718,4.344630007255739e-05,0.8957838440569701,0.015972534516899336,1.2342977718145431,1.6350645781808182,1.2759491814953243,0.32101643479613834,,,,,,,,,,,,,2.5,0.0,1.7777777777777786,1.1944444444444444,0.7750000000000001,0.19111111111111112,0.0,0.0,0.0,0.0,2102.1911168605006,2326.902576922102,1195.8043809804703,1099.8301607065882,6.485835622781405,0.4500971318012591,3.5665796116330615,0.8185029717622587,1.0,0.5,1.8423709931771088,3.456532448759558,3.975418017913833,3.975418017913833,3.975418017913833,3.975418017913833,0.20833333333333334,0.0,0.11111111111111116,0.07962962962962962,0.059615384615384626,0.02388888888888889,0.0,0.0,0.0,0.0,0.48257834757834756,10.083333333333334,4.296875,2.25,68.61221882593873,1.0,3.37950627759187,33.47960418567412,,24.671015021611833,23.741566680754318,23.530453876515608,24.68083459104438,45.99109192851017,24.30178407375495,24.724637028297987,37.07596855897111,0.03365384615384623,0.10267154438160642,-0.27597261632523945,0.4347826086956523,0.29606879606879594,-0.4367112852426408,0.031051184962777343,-0.1315880389340749,0.09711012488388839,-0.08816524686269114,0.09221074614175627,-0.11432069114328901,0.1326923076923077,0.08065774492786085,-0.06154141831883923,0.10434782608695649,0.15036855036855035,-0.11252071340886532,0.13322479847515223,0.024435264177496765,0.09060997006915039,0.17389392690299524,0.0702887690080663,0.08357636654602006,-0.002034023668639074,-0.019746801033547236,0.14176649936083674,-0.3093645484949832,-0.09771309771309769,0.3384024960183939,0.0001803866701863305,0.21877612611454603,-0.023655692021880604,-0.00490413680850615,-0.003966686108412856,0.1460214366116696,-0.21898452157598502,-0.04468858815918913,-0.16295989804367786,-0.5026511134676563,-0.08153053275004493,-0.32954484000991424,-0.2277028548137316,-0.5510173616610424,-0.05276237322183303,-0.05255397154136419,-0.041136888616225026,-0.46603392870078664,0.028124999999999952,-0.034916335367788355,0.006659833364044814,-0.11739130434782612,-0.08329238329238328,-0.07512256188353462,0.02642627565502948,-0.21909271746886042,-0.017673650531530125,-0.07662132453970866,-0.06702961581247723,-0.06718838610741161,-0.3617788461538463,-0.3954168766448293,0.048064786206009076,0.3913043478260868,-0.4210687960687959,0.1680622637484583,-0.35185184580635287,0.3682221363569601,-0.4186706574465892,-0.2732893652102225,-0.33939987572320174,0.03613655401656725,0.36858974358974356,-0.06807336481450335,-0.5017284032704138,0.5217391304347825,0.049140049140049075,0.20366035757990256,0.38477329879229544,0.6535077269663612,-0.032517975711285695,-0.27864798021434445,-0.14513970666952222,0.6773047776013481,,,,,,,,,,,,,1.3103706971044482,2.94168275343288,0.4999999999999999,18.76432663014995,34.85537068967062,35.37840734337813,35.37840734337813,35.37840734337813,35.37840734337813,23.196646433207395,11.879077063413574,6.184532410663419,5.133036959130406,0.0,11.317569369793826,901.5610052330807,604.3714572956086,396.214582599252,0.0,16.0,20.0,24.0,21.0,14.0,6.0,4.0,2.0,171.064391148,12.0,4.04305126783455,4.859812404361672,5.720311776607412,6.569481420414296,7.4342573821331355,8.291295851905407,9.156200925875535,10.015878298115155,10.880402906226719,0.7142857142857142,1.0382857142857143,1.1604369713570177,0.6785684551066287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6195362703165097,1.0184873949579836,1.0465092081989387,0.6122149108778461,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.220845663606278,12.741599977525652,5.824404497999927,0.0,0.0,0.0,9.551078168738563,0.0,0.0,0.0,4.923311048817671,6.923737199690624,6.606881964512918,130.5826014977883,-203.0709948779695,-42.692501934190425,-9.670047375141404,-33.84516581299491,205.31841914382883,319.2938045656521,19.0640855477507,15.204466884078673,21.286253637710146,0.5,0.535262670284622,0.25225586003161726,84.66767651876083,0.22019570776281522,30.039423162426004,0.46473732971537796,3.0,0.25,0.4194530622086846,0.7869496022381764,0.9050844088127902,0.9050844088127902,0.9050844088127902,0.9050844088127902,0.09201999999999994,,1.1785714285714288,1.4141461144718472,1.1951513140078474,1.1752972727426438,-4.80142824756291,1.2597154222766218,1.1662733799930698,-2.1549573189043634,40.704200000000014,10.029838443658377,0.0,9.551078168738563,0.0,13.4684936056032,6.606881964512918,22.135566338378577,0.0,0.0,3.2188758248682006,0.0,4.48863636973214,2.3978952727983707,5.953243334287785,4.727387818712341,7.513709247839705,6.803505257608338,9.126415137038421,14.999999999999998,1.1855092592592593,3.7666203703703705,0.0,0.0,0.0,0.0,0.45583333333333376,1.3611111111111112,21.804,0.0,10.373000755857898,0.0,-0.5181944444444442,0.0,0.0,0.0,0.0,24.369176398497373,0.0,5.817862777835028,0.0,26.187798576909856,6.544756405912575,17.038055468456196,5.824404497999927,6.196843571613076,0.0,0.0,0.0,14.249937557239202,13.010261676646705,14.259255741822003,66.95920837134821,,49.1456014715674,47.24744234182847,46.86171586663217,49.16578630307296,92.78242189828083,48.39361557679604,49.25489515971513,74.51109667109296,14.259255741822003,66.95920837134823,,48.163458614424535,46.06898724643528,45.865756438292294,48.186371909120766,96.78361210458327,47.34385272489885,48.28300067638757,76.30689443684659,4.5772270623343285,46.0155726843069,,34.34414477906713,33.033926512445916,32.70961522565851,34.35783933622559,63.76019507639705,33.8214827631365,34.41998591950431,51.62325403610103,1.1882713118185002,5.579934030945684,,4.095466789297284,3.937286861819039,3.905142988886014,4.097148858589414,7.731868491523403,4.032801298066336,4.1045745966429275,6.209258055924413,2.3698033104939364,33.479604185674106,,24.671015021497983,23.741566680453555,23.530453876150073,24.680834590931703,45.99109192851017,24.301784073587736,24.724637028190322,37.07596855897111,21.388235294117653,0.0,1.6554166666666665,0.0,0.0,0.0,8.597517006802722,21.97669337217771,0.08351851851851833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.856513128434768,179.79527725996192,38.689790856719284,72.58718142395072,83.48377837619049,83.48377837619049,83.48377837619049,83.48377837619049,131.0,90.97069223347388,156.10574338165517,56.229668262885305,81.19,81.19,1.0,6.00604523042301,4.584962500721156,3.081454201249137,3.403196659976763,,3.3905500218978015,3.3897147027462426,3.3850707600624728,3.390545081447091,3.3672683196722946,3.3900480307420726,3.3906116152064083,3.3839168427892954,0.2567878501040947,0.28359972166473024,,0.2825458351581501,0.2824762252288536,0.2820892300052061,0.28254542345392425,0.28060569330602453,0.2825040025618394,0.28255096793386736,0.2819930702324413,1.3077231856175853,1.4070367408212376,,1.4033137133729081,1.4030673161628557,1.4016963669463463,1.4033122562481708,1.3964233848200938,1.4031656464464368,1.4033318793780571,1.4013554245921693,119.19000000000005,50.73384412595831,46.69231190921654,,47.1804508471855,47.20439156823149,47.420297819631585,47.18085624885716,48.19198237097864,47.19863441171408,47.17832255697001,47.52785366094411,4.227820343829859,3.8910259924347117,,3.9317042372654583,3.9336992973526246,3.951691484969299,3.9317380207380968,4.015998530914887,3.9332195343095067,3.931526879747501,3.9606544717453427,4.108914781688521,4.025901080704623,,4.036301186624085,4.036808486757174,4.041371917876098,4.036309779164484,4.05751422316327,4.036686517011717,4.036256076028874,4.04363748883542,1.3611111111111112,13.621426681783824,18.97051776266062,0.0,0.45583333333333376,0.0,1.1855092592592593,1.7389351851851849,0.0,140.5274971475494,43.86282912114464,-68.21175444221855,-14.340454973438774,-3.248178782962788,-11.368625740369755,68.96666654693543,107.25111483814757,6.403645793088562,5.107195944673694,7.150074322543173,193.0,15.0,0.8412011207047578,0.28218250143152274,0.0,0.0,0.2878633639084475,0.06813735069982924,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.21982198216447035,0.06371368471241509,0.322104280909032,0.07083413901005872,9.137828201504695,6.619417381535686,5.663902460147014,3.4932563313621325,4.915035444875257,2.3396025225341996,3.714500054474106,1.580080454486218,2.9651288787746295,1.0073740733767238,1.9653868897333149,0.47659693690790894,0.9773392050234737,0.15303225866661468,0.2506827652070228,0.04258482999768799,1.9440768019989072,0.6309908481875351,2.915852641219112,0.8067241684562757,3.979884559617198,0.7895750000574031,41.352160179546246,21.058357553617796,19.85557522720884,19.85557522720884,19.85557522720884,19.85557522720884,56.0,64.0,21.727136999999985,13.044862999999996,0.23809523809523808,12.06,5.444444444444445,2.8333333333333335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,21.0,0.0,0.0,21.0,5.0,1.0,3.0,18.0,6.0,12.0,15.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,5.0,1.0,1.0,12.0,6.0,0.0,3.0,3.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,1.0,2.803360380906535,0.0,3.34109345759245,3.8580946634025906,4.347855650152707,4.388257184424518,4.290459441148391,3.595598464110711,3.2700441114426,2.7842393394597567 +6918296,C[C@]12CC[C@H]3[C@@H](CC[C@H]4NC(=O)C=C[C@]34C)[C@@H]1CC[C@@H]2C(=O)Nc1cc(C(F)(F)F)ccc1C(F)(F)F,0,25.582089552238806,6.838205970149255,3.671641791044776,9.82089552238806,172.9206512152608,104.41160047609883,1.4060684947085074,6.835228358208956,8.881011608623547,8.182903820895524,214.16630768096684,25.549295774647888,6.457154929577465,4.577464788732394,7.746478873239437,147.86176921371552,98.27204642269297,1.818762046197183,6.598232394366197,3.1128716744913927,7.8250847887323935,270.43674961996163,23.60144927536232,6.612202898550725,4.007246376811594,7.355072463768116,157.14808006808326,91.28359180369435,1.5874102256390434,6.693247101449275,5.464573268921096,7.963653304347826,230.932011323428,17.561904761904763,6.100357142857143,3.342857142857143,4.0285714285714285,155.78083934907534,64.33887653343999,1.4163075851186808,6.204419047619047,2.900462962962963,7.596663542857142,195.68229632899795,14.421818181818182,6.111967272727273,2.6836363636363636,3.178181818181818,163.7439746796431,51.01365003534545,1.1874087156176218,6.179167636363635,3.047348484848485,7.645425789090908,158.71210608078619,11.986062717770034,6.007452961672474,2.3937282229965158,2.794425087108014,169.22878249084815,41.40559853481254,1.0362053244921916,6.051406271777004,2.8611837011227252,7.600546536585367,134.75604198231503,13.792207792207792,6.038718614718615,2.567099567099567,3.696969696969697,167.38561110373882,49.907067215106494,1.0797538073422988,6.087749350649349,3.32759139009139,7.618394164502164,145.3460499589639,18.21025641025641,6.645102564102563,2.6769230769230767,5.769230769230769,169.6755019961934,68.7279160488817,1.159520320507487,6.661462564102563,6.351460113960115,8.071047035897434,163.18083988690336,15.320855614973262,6.299368983957219,2.609625668449198,3.3262032085561497,169.0762252808829,55.707527988577546,1.0932690670147165,6.344053475935827,3.410650623885917,7.823985604278073,153.6313523271051,8.612608598797058,0.3059855201603919,0.01706417307605961,0.8772555134773893,5.3290265092448195,3.212676376811179,42.180832454652325,0.24354070249552012,0.2686308754733793,4.514783049924508,0.17501752016039204,48.118908368313626,0.1643516702800892,-0.006433912003990988,-0.01133874010318799,0.19085463998067267,1.402526990860288,0.06562056427918284,0.8023102036504549,0.016834459906050182,-0.005168230949519788,-0.19240141350566214,-0.003663201051710101,3.280992324261858,1.4067511243264532,0.1239975211547712,0.0021472885531119614,-0.0666347044789033,1.4035064779929036,1.0128160740145522,7.089833166424261,0.02303190160522028,0.10437222857161309,1.8826801173310026,0.07225242143597396,1.4965858975855715,-0.2481452014978414,0.008282838048563055,-0.0004858750454983123,-0.17519439052074384,0.0731056869172262,-0.28093704783862083,-1.1068408179420077,-0.033140090828645156,0.007384248904729972,0.2849336443817396,0.004016753329302371,-5.695423979668465,-0.3955122622977377,0.007558642661860207,0.0009619244192427432,-0.04751331537698212,0.2637007634824519,-0.21905638967203295,-1.8937758761320782,-0.040039556586689645,0.00632052751169514,0.1375028689658896,0.0037439610879119126,-7.137153489758062,0.6364423138869079,0.007869095264226874,-0.00012226716938179279,0.07417201785549342,0.6917754045312466,0.024472893052899233,3.179857407659468,0.0065575005394708855,0.008534432134920429,-0.01321387778289212,0.0021776585800521047,3.099484659772168,1.979366590193055,0.036352516926898615,-0.0023626686698777115,0.006442877683688558,1.151686807289391,-0.14348622595956953,9.761923124935135,0.01816313173759265,0.036346542630904234,0.36757239866228486,0.017576420267339448,8.243830047730516,1.3372574555466066,0.1360830600156507,0.0013293748477365035,0.0020403150721707173,1.4248196446013328,0.6895346651020199,6.959602139386471,-0.00664298738417535,0.11575373225719851,1.9397833275896317,0.07863258868002124,-3.047807016927551,0.6348173729484909,-0.013665702138203596,0.00021700635519525404,-0.05787647285164092,-0.3988644851407422,-0.5375503252687712,3.192051193154476,-0.018346278685017006,-0.007414816729664875,-0.36622880687948256,-0.01182617432273541,1.244095942859813,,,0.45083655083655094,0.918918918918919,0.28378378378378377,0.013513513513513514,0.6351351351351351,-0.35135135135135137,1.3915532483676334,0.03436610906516224,0.045987730686783856,0.880342118621557,0.15293068079799435,0.3103846577685487,2.2718953669891904,0.46331533856654306,2.0334555676600363,1.552345052227454,0.11029264920530056,0.09629048560852342,0.2745273806187587,0.4811105154325827,7.883897724179117,1714.0,458.1598000000001,246.0,658.0,11585.683631422473,6995.577231898621,94.20658914546999,457.9603,595.0277777777777,548.2545560000001,14349.142614624778,1814.0,458.458,325.0,550.0,10498.185614173803,6977.3152960112,129.13210528,468.4745,221.01388888888889,555.58102,19201.009223017274,3257.0,912.484,553.0,1015.0,21686.43504939549,12597.135668909821,219.062611138188,923.6681,754.1111111111112,1098.984156,31868.617562633062,3688.0,1281.075,702.0,846.0,32713.976263305824,13511.164072022399,297.42459287492295,1302.9279999999999,609.0972222222222,1595.2993439999998,41093.28222908957,3966.0,1680.791,738.0,874.0,45029.593036901846,14028.753759719999,326.537396794846,1699.2710999999997,838.0208333333334,2102.4920919999995,43645.8291722162,3440.0,1724.139,687.0,802.0,48568.660574873415,11883.406779491199,297.390928129259,1736.7536,821.1597222222222,2181.3568560000003,38674.984048924416,3186.0,1394.944,593.0,854.0,38666.07616496367,11528.5325266896,249.42312949607103,1406.2700999999997,768.6736111111111,1759.849052,33574.93754052066,3551.0,1295.7949999999998,522.0,1125.0,33086.72288925771,13401.943629531932,226.10646249895998,1298.9851999999998,1238.5347222222224,1573.8541719999998,31820.263777946155,2865.0,1177.982,488.0,622.0,31617.254127525102,10417.307733864001,204.441315531752,1186.3379999999997,637.7916666666665,1463.0853079999997,28729.062885168656,577.0447761194029,20.501029850746256,1.1432995960959937,58.77611940298508,357.0447761194029,215.24931724634897,2826.1157744617058,16.31722706719985,17.998268656716416,302.49046434494204,11.726173850746267,3223.966860677013,11.668968589886333,-0.4568077522833601,-0.8050505473263473,13.55067943862776,99.57941635108044,4.659060063821982,56.9640244591823,1.195246653329563,-0.36694439741590495,-13.660500358902013,-0.2600872746714172,232.95045502259194,194.13165515705055,17.111657919358425,0.29632582032945065,-9.195589218088655,193.6838939630207,139.7686182140082,978.396976966548,3.1784024215203988,14.403367542882606,259.80985619167836,9.970834158164406,206.52885386680887,-52.11049231454669,1.7393959901982416,-0.10203375955464558,-36.790822009356205,15.352194252617503,-58.99678004611038,-232.43657176782162,-6.959419074015483,1.5506922699932941,59.83606532016532,0.8435181991534979,-1196.0390357303777,-108.76587213187787,2.078626732011557,0.2645292152917544,-13.066161728670084,72.51770995767427,-60.24050715980906,-520.7883659363215,-11.010878061339652,1.7381450657161635,37.813288965619634,1.029589299175776,-1962.717209683467,182.65894408554254,2.258430340833113,-0.035090677612574527,21.28736912452661,198.53954110046777,7.02372030618208,912.6190759982674,1.882002654828144,2.449382022722163,-3.792382923690038,0.6249880124749541,889.5520973546122,457.2336823345957,8.39743141011358,-0.5457764627417514,1.4883047449320568,266.03965248384935,-33.14531819666056,2255.0042418600165,4.195683431383902,8.396051347738878,84.9092240909878,4.060153081755413,1904.324741025749,260.7652038315883,26.53619670305189,0.2592280953086182,0.39786143907328986,277.8398306972599,134.4592596948939,1357.1224171803617,-1.2953825399141932,22.57197779015371,378.2577488799782,15.33335479260414,-594.3223683008724,118.71084874136781,-2.5554862998440724,0.04058018842151251,-10.822900423256852,-74.58765872131879,-100.52191082526022,596.913573119887,-3.43075411409818,-1.3865707284473316,-68.48478688646324,-2.2114945983515217,232.64594131478506,0.7288078607384155,0.5567682918378012,0.4181138421210266,0.31059442685061533,0.27740902842174037,0.17364605543766737,0.16134363029499188,0.10892893878550872,0.10113530567529133,0.0649608413845512,0.061864449914938446,0.037689333558709105,0.0385701854618832,0.0222712998134227,0.024890841652160177,0.01302554397770669,9.01736582023234,5.688313662368305,4.128047153116274,2.187366645986341,0.5113478282987258,-0.36143559830346433,4.031934442174558,0.9772102339568862,7.017348146887115,0.9950221497560682,17.433828078127245,10.949590549895117,19.00872011675799,11.700070970971163,1.9929728181860833,0.5246096672019783,4.010732897915056,2.237091991760603,8.010513985386831,1.0883990824189633,4.034272205948144,2.4328755550454337,20.898766235013063,13.299890586609859,0.2651493905203185,0.5644588106574177,0.7404092269720195,0.8523939457637262,0.8940963276368985,0.8940963276368985,1.3097357482124128,1144.6860218588802,0.0,2.0,4.0,0.0,6.0,7.0,2.0,4.0,2.0,4.404454558671584,2.5287463130532153,1.426102612263204,0.7243182837758333,0.46297835833811796,0.46297835833811796,-34.56260350567351,2021.3921792938006,75.59564038257574,30.170032526773134,63.30321859520949,,16.0,994.0,46.40696253787418,35.93156465419257,23.281917074057638,42.87655654355964,25.683286491704038,0.0,6.076020106833881,12.999757306524504,17.557314407703284,0.0,16.680952380952384,34.0,10.5,0.5,23.5,0.0,0.049163449163449086,-13.0,0.21181885303027143,0.03792087183131976,-0.17389798119895167,0.03301323301323311,0.23629646802127335,0.0,0.6555081734186197,0.9437580437580433,0.44368932038834824,0.6175873015872999,0.9107448107448102,51.48747018960243,1.2715460354110029,1.7015460354110028,32.57265838899761,5.658435189525791,11.484232337436302,84.06012857860004,17.142667526962093,0.4777035319787266,0.20268341421638586,0.11989723094490434,0.29974307736226086,0.6296296296296297,0.524767320233391,-1.5202672104003492,-0.08403450663527685,-0.022690555379109682,-0.0563061929777907,0.47523267976660893,1.3767638198936263,0.02430810900686823,0.02054871372975561,0.03441909549734065,-7.012226109145906,0.6749787431848866,0.5144930131075517,1.8676301989029105,1.16244393736722,0.3605891683181609,0.9429075015414103,0.6691110363677386,1.105037240312718,0.5075774602102432,0.5465387820110833,0.5262069276842818,1.0077370440174902,0.6448147040234992,0.2992607879941582,0.6094627889399078,1.419905270828273,0.5103488511575666,0.6920281108857934,0.6386191218847131,1.0203862563444117,0.3112289696045462,0.2902979081472151,0.2946644460263764,1.0157686246625153,0.8205107266640557,0.4460226107524059,0.7807120097295768,1.3448124501197125,0.6500585235348216,0.8257175369446994,0.8091276601957594,1.1865757000818054,0.45915098917356173,0.4119826838284171,0.4488521498870817,1.188296941231543,0.9341389478040455,0.6019652714934597,0.7270717608112306,0.9166988318943626,0.7162126912465514,0.8089876031575166,0.9264051128398011,1.1417893895338838,0.619054210852785,0.571006980470308,0.5938886945256059,1.1842800231553035,0.8853170792990697,0.6493951491658587,0.7648456186044964,0.7120861152745606,0.7152500854257173,0.6427690894191816,0.8751784491631026,0.8852057306543134,0.6667791172198544,0.6651355271884257,0.6519524184105739,0.9592272491472067,0.7209145931405515,0.5443698652405314,0.9851767308374643,0.9770732061234854,0.6493783367372534,0.6865940864398475,0.7095197720871945,0.8552945793991339,0.5510760215268276,0.6013668513127124,0.5623304947365668,0.861753013244072,0.8270255428705588,0.5232600171243953,0.8157003232227977,0.9386334336055007,0.7161782202414259,0.7442646541049829,0.8158292692363344,1.0120683311584182,0.5382451048359542,0.5536071948533725,0.524812077653685,1.0508720965924552,0.9006335450221681,0.9065381027775945,1.0807663352393546,1.0358348519702447,1.0166792074241287,1.0278322854235178,0.8962400234990348,1.0327209544581617,0.8987384066012006,0.9237813483632887,0.9206599864743152,0.9765663265707716,13.0,0.3591470258136925,8.000000000000004,4.881944444444445,3.5788888888888897,2.194444444444444,1.67437641723356,0.9462159863945578,0.7908871882086166,0.45564043209876554,8709.32339395121,9769.684246204497,3537.028667677083,3234.676376643658,17.336236022011438,0.4860124316871434,8.910609796651409,0.9455723477563077,0.0,0.6296296296296297,1.661634631786188,3.5373428774045568,4.639986578194568,5.341770906681939,5.603110832119654,5.603110832119654,0.3170731707317074,0.010883243206475528,0.1194029850746269,0.06597222222222222,0.051126984126984125,0.037835249042145594,0.028868558917820003,0.015770266439909298,0.015507591925659151,0.01059628911857594,0.6730365608061262,28.52587745389649,9.824014257072845,5.025480014491004,210.79824086038562,0.0,4.569020485668584,237.42551711270488,,210.06041457561076,207.6199667207882,206.82184682323503,209.6245022657674,270.5577804077716,209.00740162581863,210.4220432451043,240.8049774079406,0.0190826819069712,-0.021026851207267754,-0.6644763887853327,0.21755878082103594,0.26318634152545084,0.020425513367243093,0.019020729486858772,0.06912380449571812,-0.019239154622164596,-0.042615871322738155,-0.02093048197890713,0.06818509470639605,0.16333624223013424,0.40523983321097684,0.12583607441983383,-0.07595814840167518,0.26337014378856893,0.31525617747401247,0.1680818692719349,0.09457105678523674,0.3885340000016347,0.41700345210662626,0.41282964911032544,0.03110182563017318,-0.028811851676680208,0.027069379113826515,-0.02847340116234385,-0.199707368981112,0.013718394305301751,-0.08744642002113884,-0.026240373969194368,-0.13607618968437016,0.027488459365355912,0.06311125944058464,0.022950578465637497,-0.11836145442191516,-0.045922470266787675,0.02470261552866328,0.056370995239862345,-0.05416131862043492,0.04948385282471059,-0.06818501584945284,-0.04489659795519765,-0.16440601581752506,0.02352867108279029,0.0304561409585758,0.021391921702929046,-0.1483232627625004,0.07389657925193549,0.02571721452734771,-0.007165138845979534,0.08455007317250124,0.12981271594936739,0.007617602952336708,0.07538631228006375,0.026925686229354248,0.031770108778006685,-0.0029268023815924153,0.01244251762941461,0.06441302940723367,0.22982196015148273,0.1188046967315424,-0.13845784728897567,0.007344357014240206,0.21611579625123642,-0.04466252094211567,0.23143030985531077,0.07457945038130435,0.135302922893188,0.08141529606133147,0.10042663300926567,0.17132205046361962,0.15526741291057675,0.4447369272386436,0.07790444001072437,0.0023257933872458986,0.26736959220029194,0.21462935703048766,0.16499442363705324,-0.02727670289239453,0.43090256119375014,0.42965150399022317,0.449284098003215,-0.06333907231641474,0.07370790924333392,-0.04466127067398578,0.012717074201486258,-0.06597447603631693,-0.07484753255567228,-0.167321654041709,0.0756753958468264,-0.07533146819823468,-0.027602250547702455,-0.08111769775639746,-0.06757137406527929,0.02585461692807338,11.279920142464585,26.85022089672684,10.51236048681911,17.3299366123055,35.06498862047555,40.81326025255262,42.95842045546348,44.83289587642409,44.83289587642409,75.23785600342134,57.4367669324158,4.080828020596121,3.562747967515367,10.157513082894072,17.80108907100556,14149.16494713336,13002.050990852347,1842.5031569124967,383.0,67.0,91.0,124.0,163.0,205.0,257.0,288.0,342.0,528.2211475200008,41.0,5.37989735354046,6.278521424165844,7.234898420314831,8.155649270366002,9.11173476822206,10.042684117724416,10.99887798994429,11.936237039973754,12.892781645410674,0.6865671641791046,1.0223283582089548,1.1569142334825524,0.6567852841363079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6456322280811511,1.0049165935030728,1.030524725244861,0.6261532881086125,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,2.0,0.0,6.0,0.0,0.0,6.0,2.0,0.0,0.0,5.0,0.0,4.0,0.0,0.0,10.633577208012662,0.0,0.0,11.814359458703011,0.0,9.589074368143644,0.0,26.34249028604892,0.0,19.92349450621513,85.96875965765575,17.374737344706134,16.814289258077554,366.154364926185,-1060.760557068742,-58.63475148422019,-15.83224712042898,-39.28742803958303,331.5917614205115,960.6316222250587,16.960888898355552,14.337785406344157,24.015790555626467,0.5,0.872958707596184,0.12045322138315032,25.574498352960237,0.14425240748671395,0.0,0.12704129240381595,8.0,0.04878048780487805,0.2739218926091646,0.5831340038601731,0.7649057625946999,0.880595510380029,0.9236776209841419,0.9236776209841419,6.576100000000006,,2.7857142857142865,3.2842274909487106,2.9189867037711466,2.99026535266659,-15.190180172223265,2.9955891759901094,2.6585155866620465,-4.716596204407153,124.02240000000005,35.93156465419257,0.0,5.316788604006331,34.501605123439134,70.7668420009722,5.316788604006331,41.478044402446585,0.0,0.0,4.418840607796598,0.0,5.860786223465865,2.3978952727983707,7.491645473605133,4.844187086458591,9.212637731024866,7.065613363597717,10.983137860465707,46.00000000000001,1.1273313733440062,0.0,0.0,0.0,0.0,0.0,-3.3997661425141583,0.0,68.49599999999998,0.0,25.292355398640247,0.0,0.0,0.0,3.6034870621404576,0.0,-0.745379087460651,77.51325364333101,10.633577208012662,32.02987656073248,0.0,17.85620028785097,21.941671403030593,34.501605123439134,63.499307120331295,30.351141419052592,0.0,0.0,0.0,44.004614037132626,43.25735928143712,45.698923423952884,474.85103422540976,,419.9702500006424,415.0624076312548,413.48591058140136,419.0873685665258,547.2057609807662,417.85287951239445,420.70038294498363,483.3946128391704,45.698923423952884,474.8510342254096,,417.33511486550725,411.9557059506277,410.72470694269896,416.2587391788683,556.3057409877667,415.019214075647,418.1855709035466,486.32655102028855,5.197589406608264,356.2763734896563,,320.6035787140397,317.06684925000803,315.31777604925975,320.16432174385227,401.2606645091572,319.0800242307697,321.0380574558119,364.2241608338072,1.235106038485213,12.833811735821886,,11.350547297314659,11.217902908952833,11.175294880578415,11.32668563693313,14.789344891372059,11.293321067902554,11.370280620134693,13.064719265923525,2.621458799432941,237.42551711270488,,210.06041457561076,207.6199667207882,206.82184682323503,209.6245022657674,270.5577804077716,209.00740162581863,210.4220432451043,240.8049774079406,67.32941176470588,0.0,4.1739951943551645,0.0,80.36752755900368,0.0,0.0,69.04515659140569,4.418800634849291,5.327847303119375,0.0,0.0,0.24392607138165268,0.0,-10.410125366859052,0.0,0.0,41.95227030327704,609.1035566858559,111.32952032967461,237.0019727861053,310.87910073903606,357.8986507476899,375.4084257520168,375.4084257520168,1998.0,160.03128202966235,88.64256966084058,89.27474361921284,58.2,58.2,1.0,8.249820153962322,6.357552004618084,4.605777715165487,5.992664803837569,,6.004800988240544,6.005336740038417,6.004175193589219,6.00539937182289,5.960326564564529,6.005056692105362,6.004480479986328,5.992224976562223,0.1244804787882564,0.16196391361723161,,0.1622919186010958,0.16230639837941668,0.16227500523214106,0.1623080911303484,0.16108990715039267,0.16229882951636113,0.16228325621584672,0.1619520263935736,2.8356443600416377,3.0988690082817825,,3.1008921336238817,3.10098135021912,3.1007879124742326,3.1009917795190214,3.093458091938541,3.100934715954441,3.1008387568660565,3.098795611315502,353.4500000000014,857.9857140878564,268.98539832303976,,266.3698794638766,266.1861779441126,266.5043219357145,266.2141202823494,275.05233773746954,266.28791584371584,266.45454010946634,269.4348550168426,23.18880308345558,7.269875630352426,,7.199185931456125,7.1942210255165575,7.202819511776067,7.194976223847282,7.433846965877555,7.196970698478807,7.201474057012604,7.282023108563314,8.06292026875227,6.902989916451744,,6.893218686848537,6.89252880068728,6.893723280519379,6.892633768090023,6.925294218253722,6.892910933459665,6.893536467502697,6.904659455424004,80.36752755900368,25.292355398640247,5.327847303119375,-4.0582425973503815,-0.5549746632496351,1.180853020514643,-1.729361215033081,4.1739951943551645,0.0,463.02634038799664,255.48278977218033,-740.1415696760786,-40.912170717415854,-11.046889099642963,-27.412650728743646,231.36686705963987,670.2769932536778,11.834394528224276,10.004134227666832,16.756924831341944,4248.0,74.0,5.704789462756247,2.4787029711384423,0.8130525295851416,0.24107363742049748,1.867832719360159,0.9040220235001252,0.46545182989144973,0.17147991513660546,0.0,0.0,0.0,0.0,0.08333333333333333,0.08333333333333333,0.46167593500494375,0.37637565482875424,1.0922008260159914,0.8081470910500922,26.965890847321376,20.600426797998644,17.14266752696209,12.734371500875229,18.586404904256604,11.634285714323713,14.682270356844262,9.912533429481293,12.540777903736124,8.05514433168435,10.083905336134967,6.143361370069584,7.906888019686056,4.565616461751653,6.396946304605166,3.3475648022706195,10.563582198242608,6.009459983818945,17.11152230606157,9.786357530196328,26.62525830673242,14.898554724485251,122.54216893829468,64.8502972052624,46.884662175983784,39.40706466030202,32.32344984443228,32.32344984443228,216.0,266.0,72.23979,39.65021000000002,0.373134328358209,349.1,14.61111111111111,7.444444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,6.0,6.0,67.0,0.0,0.0,71.0,6.0,3.0,6.0,65.0,9.0,41.0,62.0,0.0,0.0,0.0,27.0,0.0,6.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,2.0,2.0,1.0,37.0,10.0,0.0,2.0,2.0,0.0,5.0,2.0,0.0,0.0,6.0,0.0,1.0,3.871201010907891,6.725521218360281,4.436751534363128,4.892227063045954,5.334528748510609,5.763426223417044,6.038467400703318,6.2925524522441965,6.27487971676376,6.526677858930803 +2675,C=CC1=C(C(=O)O)N2C(=O)[C@@H](NC(=O)/C(=N\OCC(=O)O)c3csc(N)n3)[C@H]2SC1,0,39.91111111111111,7.0529266666666635,3.8,11.619753086419754,163.81096459714303,158.93134106666673,1.7480893682829992,7.088799999999998,8.675461057765585,8.519624577777774,248.1641638410097,35.04255319148936,6.9123829787234055,4.51063829787234,10.042553191489361,151.0667437579191,136.30354493617023,1.941401616425532,7.037725531914895,4.235618597320725,8.323939234042552,286.79971810292864,33.36486486486486,6.849355405405404,4.175675675675675,8.77027027027027,154.1465143967407,128.08267008108115,1.7624277915053512,6.9612108108108135,4.6765098431765075,8.329814324324325,253.25581948761382,29.01123595505618,6.9537921348314615,3.707865168539326,8.176029962546817,159.78760734025263,109.67219682022468,1.5889523507572587,7.0244,4.649708697461507,8.427644382022473,229.73062168542117,29.416666666666668,6.897694791666665,3.4270833333333335,7.871527777777779,159.18317520807292,111.90338698958335,1.5222135014369067,6.972855208333335,4.7536651234567895,8.384061875000002,223.6460808834694,29.21,7.003486999999999,3.08,6.726666666666667,162.0233311809065,110.24200719000004,1.3657749231079201,7.0611369999999996,5.550154320987657,8.54394806,205.61433821958042,24.4468085106383,6.861740425531915,3.074468085106383,6.450354609929077,163.83708522088088,90.5663517340426,1.3611890244339575,6.9093925531914895,4.817868400315208,8.380433574468087,196.53844179823108,27.644444444444446,6.957707777777779,3.088888888888889,7.2407407407407405,163.91624395285083,103.91916433333334,1.4058706287704335,7.002221111111113,5.5867969821673515,8.497846133333333,200.8768115865804,31.19753086419753,6.822535802469135,3.037037037037037,6.507544581618656,161.67956044141857,118.48621291358026,1.4872746633289011,6.8987703703703716,4.8683169909735975,8.390003469135804,209.45470177257596,12.871111111111112,0.20830795061728377,0.04800162161075967,0.7180246913580247,4.821179698216734,1.7533601207779497,57.394817048888875,0.327442833739284,0.18475180246913575,3.541413741130248,0.1382135733333333,44.1671146584984,-0.0961702127659576,-0.029376130286314667,-0.02824930506289493,0.23422117152613617,0.9377906196188317,-0.004634302310023528,-0.14042029995271532,0.04595771587656488,-0.025640738639348595,-0.4052441769421212,-0.022098572860520093,4.160916040536074,-0.7302702702702706,0.02598072806139472,0.001042876494415553,0.021915248581915278,0.4999080562043527,-0.36777004202333324,-2.923229425465463,-0.039314870113391964,0.02301228161494827,0.5742391545638001,0.01490639183183184,-2.22559024220713,-1.6161797752808988,0.004746631155500069,0.004578294245796308,-0.03512831183243168,-0.18156255298161245,0.19655332444109264,-7.1709285372783995,0.00575746803691832,-0.00025332556526564337,-0.25177193536276576,0.002119934781523093,-2.5194609626870097,0.12333333333333323,0.00714684104938271,-0.0012266135270712294,-0.14742283950617288,-0.03277949245541826,-0.09898041519935956,0.581331524027779,-0.026865383870231838,0.007515628086419739,-0.1752732264729293,0.0020718572222222192,-2.8957101518635775,0.2980000000000001,-0.02833695061728396,-0.002258028795869487,-0.07024691358024691,-0.9458710562414266,-0.30741856172151705,0.9852128051111143,-0.05288601590026838,-0.020767513580246935,-0.18429493302172775,-0.010867787555555584,-3.666012240657656,-1.3429787234042556,-0.02658095298135014,-0.0004640711630970142,-0.006677173627528236,-0.6479987158158946,0.08543432255514544,-6.075628426903074,0.0013157783870576417,-0.025950265826109795,-0.46667965804094175,-0.02017931895981087,-3.184290670240118,-0.088888888888889,0.019777135802469124,0.005820715983435861,0.04592592592592593,0.24902606310013733,0.19170622339485455,-0.19314552740740712,0.024255226373696287,0.015258938271604931,0.2979636403664754,0.012566570370370352,2.2347859022839223,2.0646913580246924,-0.02440844444444443,-0.008597141474739303,-0.03626886145404664,-0.009900929736320785,-0.1987755297897764,8.696062643292183,0.002635767844920456,-0.016501706447187937,-0.2307118005573526,-0.011108285267489715,1.4260349948300999,,,0.4666666666666668,1.1416666666666666,0.4666666666666667,0.016666666666666666,0.675,-0.20833333333333334,0.9230766991010455,0.022497456725222402,0.031097456725222402,1.0333520661975226,0.2294884322617694,0.2451545630921114,1.9564287652985681,0.47464299535388077,1.999971292528742,1.1151800864603847,0.33650832890878785,0.4132662151693618,0.0,0.8847912060683576,10.067584218222231,1796.0,317.38169999999985,171.0,522.8888888888889,7371.493406871436,7151.910348000003,78.66402157273497,318.9959999999999,390.3957475994513,383.3831059999999,11167.387372845436,1647.0,324.88200000000006,212.0,472.0,7100.136956622198,6406.266612000001,91.24587597200001,330.77310000000006,199.07407407407408,391.22514399999994,13479.586750837645,2469.0,506.85229999999996,309.0,649.0,11406.842065358813,9478.117586000006,130.419656571396,515.1296000000002,346.06172839506155,616.40626,18740.930642083422,2582.0,618.8875,330.0,727.6666666666667,14221.097053282485,9760.825516999997,141.41675921739602,625.1716,413.8240740740741,750.0603500000001,20446.025330002485,2824.0,662.1786999999998,329.0,755.6666666666667,15281.584819975002,10742.725151000002,146.13249613794304,669.3941000000001,456.3518518518518,804.8699400000002,21470.023764813064,2921.0,700.3486999999999,308.0,672.6666666666666,16202.33311809065,11024.200719000004,136.57749231079202,706.1137,555.0154320987657,854.394806,20561.433821958042,2298.0,645.0036,289.0,606.3333333333333,15400.686010762804,8513.237063000004,127.951768296792,649.4829,452.8796296296296,787.7607560000001,18474.613529033722,2488.0,626.1937000000001,278.0,651.6666666666666,14752.461955756575,9352.72479,126.52835658933901,630.1999000000002,502.8117283950616,764.806152,18078.913042792236,2527.0,552.6253999999999,246.0,527.1111111111111,13096.044395754905,9597.383246000001,120.46924772964098,558.8004000000001,394.3336762688614,679.5902810000001,16965.830843578653,579.2,9.37385777777777,2.160072972484185,32.31111111111111,216.95308641975305,78.90120543500774,2582.7667671999993,14.73492751826778,8.313831111111108,159.36361835086117,6.219610799999999,1987.520159632428,-4.520000000000007,-1.3806781234567893,-1.3277173379560618,11.0083950617284,44.07615912208509,-0.21781220857110584,-6.59975409777762,2.1600126461985494,-1.205114716049384,-19.046476316279698,-1.0386329244444443,195.5630539051955,-54.04000000000002,1.9225738765432092,0.07717286058675094,1.6217283950617305,36.9931961591221,-27.21498310972666,-216.31897748444425,-2.9093003883910056,1.7029088395061718,42.49369743772121,1.103072995555556,-164.6936779233276,-143.84,0.4224501728395061,0.4074681878758714,-3.1264197530864197,-16.159067215363507,17.493245875257244,-638.2126398177776,0.5124146552857305,-0.02254597530864226,-22.407702247286153,0.18867419555555529,-224.23202567914387,11.83999999999999,0.6860967407407401,-0.11775489859883803,-14.152592592592596,-3.1468312757201526,-9.502119859138517,55.80782630666678,-2.5790768515422564,0.721500296296295,-16.826229741401214,0.19889829333333303,-277.98817457890345,29.80000000000001,-2.833695061728396,-0.2258028795869487,-7.0246913580246915,-94.58710562414267,-30.741856172151707,98.52128051111143,-5.288601590026838,-2.0767513580246937,-18.429493302172776,-1.0867787555555584,-366.60122406576556,-126.24000000000002,-2.4986095802469133,-0.04362268933111933,-0.6276543209876542,-60.911879286694095,8.030826320183671,-571.1090721288889,0.12368316838341831,-2.4393249876543206,-43.86788785584852,-1.896855982222222,-299.3233230025711,-8.00000000000001,1.7799422222222212,0.5238644385092275,4.133333333333334,22.41234567901236,17.25356010553691,-17.38309746666664,2.1829703736326658,1.3733044444444438,26.816727632982783,1.1309913333333317,201.130731205553,167.24000000000007,-1.977083999999999,-0.6963684594538835,-2.937777777777778,-0.8019753086419836,-16.100817912971888,704.3810741066668,0.21349719543855694,-1.336638222222223,-18.68765584514556,-0.8997711066666669,115.50883458123809,0.7333090347380328,0.5578290287370019,0.44497780814426324,0.3170583704739296,0.28719819200469887,0.1721040998532428,0.1696000313646323,0.09730527300860445,0.10847622312020135,0.055799431217063114,0.06981046205281202,0.03206076719716415,0.04248482811851894,0.0174920033504603,0.02820378985306048,0.009803606137644695,16.004889324200402,5.717679829537613,3.5596867032580386,2.2121675605649647,0.5112291646481752,-0.4306724485541944,3.2709819163157956,0.9573513352524738,6.026312685022899,0.6502075858740123,14.557972755901966,10.31186696837437,32.06282392739867,11.730019383485795,2.9363642349319896,0.7402347408422488,3.505955656720368,2.262845190168818,7.011562676392366,0.6102201959111982,3.7186592103016713,2.4595984510807365,24.440903888741072,14.696871678632046,0.34924641710312815,0.7915966701031032,0.9074063743017052,0.915059504692554,0.915059504692554,0.915059504692554,1.6284748810232081,1001.8616193320453,0.0,6.0,3.0,0.0,4.0,1.0,1.0,0.0,0.0,3.4636551969548406,0.8947702779220092,0.22222222222222232,0.17777777777777803,0.17777777777777803,0.17777777777777803,-53.674329267290545,2642.7157036746985,120.67849072722873,58.727015637215516,127.44220547878126,,14.0,685.0,41.775565641236334,24.28467613112799,22.234210790514332,11.325958136816055,16.236695608785215,23.21796782669091,0.0,0.0,26.87300411903921,10.84019487200289,14.000000000000004,34.25,14.0,0.5,20.25,0.0,0.033333333333333215,-6.25,0.3026873385012921,0.05202614379085002,-0.25066119471044207,0.0947619047619046,0.22957093425605501,0.0,0.7422222222222219,0.9633333333333329,0.4395348837209298,0.6901960784313719,0.8685714285714283,27.692300973031365,0.674923701756672,0.932923701756672,31.00056198592568,6.884652967853082,7.354636892763342,58.69286295895704,14.239289860616424,0.48442906574394495,0.20714285714285707,0.0,0.4214285714285714,0.25,0.5413275450479917,-2.202995192274679,-0.12048069138371682,-0.04895544871721508,-0.1295879524867458,0.45867245495200826,1.8666207222071356,0.06535659172482193,0.0414804604934919,0.066665025793112,-0.5941722310767568,0.7224932408604678,0.8326238841433229,1.6042316387322622,0.7967748544001874,0.4871247368454189,1.1672303177873073,0.711532783344598,0.7942486070253456,0.8043412666720384,0.7519399676868979,0.8690467022983412,0.7640160752393518,1.0820143347767657,0.6308037741817174,0.8631750581709311,1.0949291795234024,0.7227728832786534,1.359679732381348,1.057396107897096,1.2613051631826928,0.615218369637779,0.5168440294310537,0.6438184637325329,0.9977784864769762,1.0110419641194364,0.860493034678291,0.7753242230130039,1.1016490734587268,0.9527710351590025,0.9606607089319873,1.0072735413978606,0.9365940544364928,0.8729016991543019,0.9275507965526987,0.8640020665392217,0.9675342602772355,0.8712448204419889,0.8637030087932495,0.9313058792145501,1.2482806052269602,0.9382255366125692,1.0883722089620183,0.8703328123275592,1.0226422298719213,0.8497062893053183,0.928901476728762,0.8859330072550519,0.9976713092419894,0.9457872928176795,1.198419718574305,1.021813109782544,1.0825997248968364,1.204346391095532,1.1453776102350945,0.9498252124250117,1.130875190579207,1.1668016670480035,1.1743374592225764,1.1579162188090608,1.0162373051704485,0.974234453979076,1.1131046953921837,0.9613575464973406,0.9706166408147736,1.122999916216715,0.9156743757159471,0.983901954207644,0.8629103612864243,1.1268952780091404,1.1246841528507363,1.1258037615541074,1.0193789831799323,1.0508747697974217,0.9546334060019406,0.8664963912000017,0.87757909215956,0.9809937859923066,0.8678573358868023,1.0438868749657415,0.943279802229239,0.964625480858671,0.9595546874394776,0.9588214497994704,0.9213118489210855,0.9636535706977696,1.0736062288701835,1.1561695285177978,1.025523460186459,0.9654979678652089,1.1399885041785234,0.9610825240600585,1.101399561210122,1.044073335951609,1.0777490230001343,1.0279188864048223,0.9615934674060831,6.5,0.20701765126007549,3.7777777777777795,3.4722222222222223,2.089444444444445,1.5316666666666663,0.8482086167800454,0.5607638888888888,0.5044327916351725,0.3528163580246914,7333.178491518437,7886.186151705615,3123.233219937704,2952.5911867072364,15.028760530314251,0.4661527623042649,8.023062295098955,0.8731950441784386,0.0,0.25,2.028197899374834,4.5970828184076655,5.2696308741074525,5.314075318551897,5.314075318551897,5.314075318551897,0.203125,0.007667320417039834,0.0858585858585859,0.07548309178743964,0.042641723356009076,0.03329710144927536,0.021748938891796042,0.014019097222222221,0.0136333186928425,0.011025511188271607,0.5084996888634822,24.638671875,10.744801512287335,5.506763787721124,176.61495218218533,1.0,4.32637909074108,177.06936466078054,,136.9047078773117,138.4954529405124,138.67013407384363,136.94039871202287,219.41987409874054,140.65520477150466,142.04619413818028,191.10203796237897,-0.00747178793934408,-0.14102260715092102,-0.588507306939872,0.32620211302642765,0.19451476159781042,-0.0026430978183576634,-0.002446567602665331,0.14035340261304133,-0.1387847820517588,-0.11443005719314424,-0.15988713935659837,0.09420846420936518,-0.0567371584291474,0.12472269053776115,0.02172585965682855,0.030521580727908143,0.10368998616443595,-0.2097515722327237,-0.0509319408227307,-0.12006636292640684,0.12455781923314471,0.16214969403166396,0.10785041926295981,-0.05039021134650673,-0.12556645353529083,0.022786605798935024,0.09537790791572077,-0.04892354295782267,-0.037659362302709665,0.1121009438459703,-0.1249403501220364,0.01758312426987644,-0.0013711669487390435,-0.07109362355453343,0.015338108482373077,-0.057043820547653286,0.00958218232044198,0.03430901714602976,-0.025553585189636203,-0.20531722833562593,-0.00679906050121774,-0.0564518458167298,0.010128641468315878,-0.08204602789268112,0.0406795927616202,-0.04949244547094081,0.014990258715223768,-0.06556258370630061,0.02315262430939227,-0.13603393693477572,-0.04704067737918556,-0.09783356258596974,-0.19619079052193117,-0.1753311017391671,0.017165536119261617,-0.16151221053253284,-0.11240763717970391,-0.05203993277636905,-0.07863039275705183,-0.08300320881278718,-0.10434054308216764,-0.12760412121852377,-0.009667822617746555,-0.009299364921419999,-0.13440667147411606,0.04872605549921998,-0.10585674350573951,0.004018345346062112,-0.14046014966725423,-0.1317777848492789,-0.14600099305112296,-0.0720964159615397,-0.006906077348066307,0.09494181928180408,0.12126081969970645,0.06396148555708392,0.05165251633168693,0.10933647978134478,-0.0033652085212308607,0.07407468991368657,0.0825915529249251,0.08413691879768326,0.0909213912013057,0.050598412859055,0.1604128299570289,-0.11717480956494614,-0.17910106338599682,-0.050511997554638546,-0.0020536321722218645,-0.1133683419818979,0.15151303010313427,0.008049551168431136,-0.0893182433223875,-0.06514680786315595,-0.08037043685065266,0.032287257292133525,0.9155815940290007,9.77579175414955,13.938392292054003,24.919871147520606,51.10728758997599,55.11654936345471,55.161349363454704,55.161349363454704,55.161349363454704,59.999138775862264,33.45540259381154,10.095249867263636,12.397986455080854,0.0,26.54373618205073,8428.076613403147,7682.5123459798615,1905.8946569839536,136.0,46.0,62.0,82.0,98.0,111.0,127.0,125.0,133.0,453.04128982000043,32.0,5.056245805348308,5.921578419643816,6.829793737512425,7.726212650507529,8.644178203170727,9.555559953069064,10.479510855147508,11.400014292492612,12.328338949636324,0.8666666666666665,1.0464888888888892,1.1305369108973808,0.8389420808703136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7137178310046575,1.0304139433551196,1.054285020636077,0.6940273243322703,1.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,4.0,0.0,0.0,0.0,1.0,1.0,7.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,1.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,26.10109945458656,22.806680950020997,10.843243482610035,6.606881964512918,11.814359458703011,14.48898409899412,14.573052889090853,0.0,23.098670827325854,17.81066851718292,5.573104530069267,11.132916377212704,0.0,351.5257543197799,-1430.5748041300008,-78.23741153957889,-31.790551202888903,-84.15145906647062,297.85142505248933,1212.1408995446977,42.441079187649855,26.936464434326616,43.29074641231064,0.5,0.5687285937927541,0.11761463183232586,50.967038772575826,0.08660885752639873,109.37661266551187,0.43127140620724574,7.0,0.25,0.36931029723470266,0.8370731586902782,0.9595360221177914,0.9676288176942331,0.9676288176942331,0.9676288176942331,-0.5447999999999991,,3.7142857142857144,2.879158434346132,2.164386237896763,3.70807735096767,-9.318693079214189,2.640223378212975,2.5834907754122343,-4.074426737280388,106.53269999999999,34.22879210970533,0.0,15.200676855804016,5.15571272675054,11.4157136421167,18.09340304842189,34.99909039887186,0.0,0.0,4.174387269895637,0.0,5.54907608489522,2.3978952727983707,7.123672785204607,4.59511985013459,8.803424211600703,6.555356891810665,10.548625513909712,38.99999999999999,1.4203988775006993,3.9182145952325422,0.0,0.0,1.0274017376787175,0.0,0.18614541845363197,0.0,47.09200000000001,3.562857775617481,47.45538746410563,0.0,0.0,0.0,1.3780329589991456,3.520379529898379,-4.154374729667734,50.87416099038214,11.050456081168516,5.131558479839333,0.0,73.33704729223291,24.01573732002392,0.0,5.693927994848461,34.460875130773935,0.0,0.0,0.0,37.75239363916411,32.117302395209585,37.42504175042783,354.1387293215611,,274.06203546076335,276.7989619854017,277.1959757318275,274.13593802679395,441.2589163715237,281.1343946511284,283.92015555799975,382.4868723520033,37.42504175042783,354.13872932156096,,271.09060688933477,274.1117474466787,275.1893619114343,271.16947614601975,448.2149008286009,278.6701861647964,281.50889750094836,386.27850266203836,5.145634215303803,257.65540706232366,,204.7626154961523,206.89028200920745,205.81369197643286,204.81186775141288,322.8455654531959,210.17074163355937,212.424458686732,284.15050268812456,1.2475013916809277,11.804624310718703,,9.135401182025445,9.226632066180057,9.239865857727583,9.137864600893131,14.708630545717456,9.371146488370947,9.46400518526666,12.749562411733443,2.573138189667746,177.06936466078054,,136.9047078773117,138.4954529405124,138.67013407384363,136.94039871202287,219.41987409874054,140.65520477150466,142.04619413818028,191.10203796237897,46.368627450980384,0.0,0.0,0.0,0.0,5.5641699664514,18.097443974271833,47.44282592862346,-0.48675725375709433,2.476909722222222,4.640475628701639,1.2695787640890455,-1.6372101494918956,1.0942790530277002,0.0,0.0,0.0,31.231229594952165,369.3193700654957,91.26890547186754,206.86872682834496,237.13338933483536,239.13338933483536,239.13338933483536,239.13338933483536,982.0,139.94143286652834,280.0578093067734,79.7475578802495,238.05,184.51,1.0,7.867799703746215,6.0,3.8787944408323463,5.386818066890983,,5.393759506207216,5.398235916974633,5.394535963656454,5.393741414681836,5.360114035135267,5.397983260507656,5.3978868288659365,5.383798484072765,0.1292931480277449,0.17956060222969944,,0.17979198354024054,0.17994119723248775,0.1798178654552151,0.17979138048939453,0.17867046783784224,0.1799327753502552,0.1799295609621979,0.17945994946909216,2.454136682896905,2.7825671591752563,,2.7838549269647723,2.784684506824401,2.78399887138171,2.783851572800446,2.77759753873631,2.784637702204586,2.7846198376617703,2.7820064516460183,288.71000000000043,1125.2866232379185,191.40126051431736,,189.16007097933593,188.93967872458825,189.6045739522057,189.16255005725938,192.88265123288755,188.96278862712163,188.93519404554536,190.48424021831207,37.50955410793062,6.380042017143912,,6.305335699311198,6.297989290819609,6.320152465073523,6.3054183352419795,6.429421707762918,6.298759620904054,6.297839801518179,6.349474673943735,8.124405347068166,6.352984353424511,,6.341205881678097,6.3400400925979365,6.343553002418541,6.341218987306921,6.360694267950951,6.340162398772459,6.34001635628009,6.348181751299876,0.0,57.1083567410675,25.032353731641315,5.477847834492441,-3.723218268928288,-1.0103039703535732,1.3780329589991456,2.7732838046470247,0.0,367.1281557542184,228.27280281688795,-928.9826311869764,-50.80558962695916,-20.644058470821697,-54.646037128645666,193.41791827259638,787.136638348101,27.560268292391182,17.491925296624466,28.112022798146466,2560.0,46.0,2.4222129545368194,0.9809152514143534,0.0,0.0,0.6116040570726224,0.1967261783346446,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.4502471114825046,0.27530866464423936,0.7840008863440658,0.43914296185018,1.1301295466238126,0.5569429633553385,21.999271042140983,16.734870862110057,14.239289860616424,10.145867855165747,13.211116832216149,7.916788593249168,10.515201944607202,6.0329269265334755,8.89505029585651,4.5755533597991755,6.841425281175578,3.1419551853220864,4.7158159211556026,1.9416123719010931,3.581881311338681,1.2450579794808763,5.228815788146822,2.1993583398792493,8.371390617284762,3.205500947809149,12.928984308049102,4.2683767893274,100.9475928079288,38.743344746979986,29.33360345565424,29.178409984706256,29.178409984706256,29.178409984706256,156.0,186.0,53.63589499999999,28.026105,0.35555555555555557,154.14,11.833333333333332,6.666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,5.0,5.0,45.0,0.0,0.0,47.0,5.0,7.0,9.0,38.0,12.0,32.0,35.0,0.0,0.0,0.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,10.0,4.0,3.0,30.0,14.0,0.0,5.0,7.0,0.0,3.0,8.0,2.0,0.0,0.0,1.0,1.0,3.7495040759303713,6.223567839793664,4.26619481914876,4.743844580675851,5.190523336739508,5.460117287621195,5.645446897643238,5.879135362134062,5.886104031450156,6.092440464447984 +3715,COc1ccc2c(c1)c(CC(=O)O)c(C)n2C(=O)c1ccc(Cl)cc1,0,31.5609756097561,6.405458536585365,3.6097560975609757,9.063535079795242,158.26780077889964,127.65965551219514,1.6741005482337559,6.525587804878049,5.641728097665064,7.962179341463414,247.7319337469354,28.232558139534884,6.43139534883721,4.255813953488372,8.560723514211885,143.4426029503174,108.97236316279074,1.9368937822325585,6.603186046511628,3.5237343286438896,7.860206465116275,287.55910858850626,25.87323943661972,6.387323943661971,4.098591549295775,7.347417840375586,149.98529315355623,99.4663184366197,1.7412024381963798,6.529488732394365,3.6689271431055466,7.868646309859153,254.42669223157242,23.941860465116278,6.432127906976745,3.755813953488372,6.2054263565891485,151.6539835629114,89.62898241860465,1.6811486276342678,6.579668604651163,3.479543496985358,7.949771860465116,242.60459208115034,21.03061224489796,6.311744897959184,3.3877551020408165,5.715419501133787,152.8625375492406,77.2763517346939,1.5386226170637245,6.442204081632651,3.4624800537498945,7.831841448979591,218.5814006328657,19.537735849056602,6.263896226415095,2.943396226415094,5.067085953878406,156.240853140488,72.27533443396226,1.3953360782871045,6.3582150943396245,3.661881745477135,7.8019676037735834,198.60794526802698,18.80952380952381,6.319639047619046,2.7333333333333334,4.176719576719576,156.57038435596417,68.18177825714287,1.3465706256889427,6.418983809523811,3.613227513227513,7.897573295238095,189.05513790862412,17.770833333333332,6.223354166666666,2.4583333333333335,4.460648148148148,158.6990395400957,64.51555019791667,1.2896537211711772,6.307192708333333,4.18619255829904,7.807794666666669,174.35113293098888,16.654761904761905,5.918690476190476,2.1666666666666665,2.5277777777777777,160.53306240259195,60.83906282142857,1.2069098085181789,6.032761904761905,3.026210072506369,7.588602142857145,156.35932378412167,10.980368828078525,0.1432574657941701,0.02542588964030482,0.694824509220702,4.268740681986766,1.4106767968059002,51.50636336466388,0.2523823664316478,0.13948899464604397,2.082921398152387,0.10427644973230217,49.606251789356,0.07124773459873053,-0.0071545729978003125,-0.014142630697364354,0.30177220093244617,1.2980121173241737,-0.12856209850111497,0.3954109144058762,-0.001084435353503735,-0.005748155167881788,-0.17144298487079027,-0.006707037367015761,0.7331863226732501,1.2796792653601574,0.018199696692947687,0.002979030250709155,0.06402124825095729,0.2205019099696704,0.06100651326215464,6.106673129667953,0.03815393934999114,0.016836597933825435,0.296699474506812,0.010494972802909059,7.201114118553144,-1.8984062642668398,-0.031737386384073696,-0.0014330539805116839,-0.0791126544277354,-0.8168139017370509,0.01756479382771842,-8.77896108048919,-0.0025230770765136694,-0.03249789992114326,-0.23445528628611312,-0.02196810146230786,-2.6693295854748973,-1.8566754482875838,-0.017152587745389643,-0.001377719600388593,-0.12588473819033863,-0.31168017033856515,-0.2187348778933329,-8.81957262598793,-0.05621807562849476,-0.01799621216719881,-0.07618420674979069,-0.012581967153904989,-10.028840600079613,0.7014075179868227,0.010360987956405094,0.004154416453523038,-0.10117517650095968,-0.13179057034728445,0.018120087689001904,3.266900923417103,-0.0022995974086913173,0.010249155376965633,-0.11188740360947544,0.004052184644135896,0.8555586253228032,-0.8774652276139486,-0.027354306676864656,-0.0077773401111397335,-0.10783263930200278,-1.050137564738662,-0.10725454634737731,-4.234713007637176,-0.027305621269530525,-0.022340794878332036,-0.48512257602019787,-0.01172215821081555,-7.281146057549268,0.6883303589133449,0.047129932579813606,0.007183872740673543,-0.06880824905810035,0.5295818614238536,0.0005255357192184932,2.9991406330495263,-0.00025707131864961184,0.039762326492167356,0.7357169193321828,0.036191156466884776,-3.216107526690461,2.2388530069969685,0.010696425030452374,-8.947088343176476e-05,0.00029744199881020947,0.2292124589203047,-0.232652515477899,10.54101638010963,0.0020303053364819647,0.014842393274977998,0.11597638431292857,0.002101281975014858,2.8982720125588757,,,0.47790476190476183,1.35,0.72,0.04,0.63,0.09,0.7718489212965041,0.01985163627210369,0.03017163627210369,1.0713101415635986,0.2791838812880529,0.19753302493476727,1.8431590628601027,0.47671690622282015,2.0205110179166734,1.575639555239417,0.09025908894710881,0.28423112216914465,0.07038125156100301,0.4448714626772564,8.709189894439035,1294.0,262.62379999999996,148.0,371.60493827160496,6488.979831934885,5234.045876000001,68.63812247758399,267.5491,231.31085200426764,326.449353,10157.009283624351,1214.0,276.55,183.0,368.1111111111111,6168.031926863648,4685.811616000002,83.28643263600001,283.937,151.52057613168725,337.98887799999983,12365.04166930577,1837.0,453.49999999999994,291.0,521.6666666666666,10648.955813902492,7062.108608999999,123.62537311194296,463.59369999999996,260.4938271604938,558.6738879999998,18064.29514844164,2059.0,553.163,323.0,533.6666666666667,13042.24258641038,7708.092488,144.57878197654702,565.8515,299.24074074074076,683.68038,20863.99491897893,2061.0,618.551,332.0,560.1111111111111,14980.52867982558,7573.082470000002,150.785016472245,631.3359999999998,339.32304526748965,767.520462,21420.97726202084,2071.0,663.9730000000001,312.0,537.1111111111111,16561.53043289173,7661.185449999999,147.90562429843308,673.9708000000002,388.1594650205763,827.0085659999999,21052.44219841086,1975.0,663.5620999999999,287.0,438.55555555555554,16439.890357376236,7159.086717000001,141.38991569733898,673.9933000000002,379.38888888888886,829.245196,19850.789480405532,1706.0,597.4419999999999,236.0,428.2222222222222,15235.107795849186,6193.492819,123.806757232433,605.4905,401.87448559670787,749.5482880000002,16737.70876137493,1399.0,497.17,182.0,212.33333333333331,13484.777241817723,5110.481277,101.38042391552702,506.752,254.201646090535,637.4425800000001,13134.18319786622,450.1951219512195,5.873556097560973,1.0424614752524977,28.487804878048784,175.0183679614574,57.83774866904191,2111.7608979512192,10.34767702369756,5.719048780487803,85.39977732424786,4.275334439024389,2033.856323363596,3.0636525877454126,-0.30764663890541344,-0.6081331199866672,12.976204640095185,55.81452104493947,-5.528170235547944,17.00266931945268,-0.046630720200660614,-0.24717067221891686,-7.372048349443982,-0.28840260678167773,31.527011874949753,90.85722784057117,1.2921784651992858,0.21151114780035,4.545508625817967,15.655635607846598,4.331462441612979,433.5737922064246,2.7089296938493708,1.195398453301606,21.065662689983654,0.7451430690065431,511.2791024172732,-163.26293872694822,-2.7294152290303377,-0.12324264232400482,-6.803688280785244,-70.24599554938638,1.5105722691837842,-754.9906529220702,-0.2169846285801756,-2.7948193932183205,-20.163154620605727,-1.8892567257584758,-229.56234435084116,-181.95419393218322,-1.680953599048185,-0.1350165208380821,-12.336704342653185,-30.544656693179384,-21.436018033546624,-864.3181173468172,-5.509371411592487,-1.7636287923854836,-7.466052261479488,-1.2330327810826889,-982.826378807802,74.3491969066032,1.09826472337894,0.440368144073442,-10.724568709101726,-13.96980045681215,1.9207292950342019,346.2914978822129,-0.24375732532127964,1.0864104699583572,-11.860064782604397,0.429531572278405,90.68921428421714,-92.13384889946461,-2.872202201070789,-0.816620711669672,-11.322427126710291,-110.2644442975595,-11.261727366474618,-444.64486580190356,-2.867090233300705,-2.3457834622248637,-50.93787048212078,-1.2308266121356328,-764.5203360426732,66.07971445568111,4.524473527662106,0.6896517831046601,-6.605591909577633,50.839858696689944,0.05045142904497535,287.9175007727545,-0.024678846590362735,3.8171833432480664,70.62882425588954,3.4743510208209383,-308.74632256228426,188.06365258774537,0.8984997025579994,-0.00751555420826824,0.024985127900057594,19.253846549305596,-19.542811300143516,885.4453759292089,0.17054564826448504,1.2467610350981517,9.742016282286,0.17650768590124805,243.45484905494556,0.7254985489030075,0.5800649658773247,0.44140454279890756,0.29624083276364693,0.2826660219789584,0.15644743360615693,0.1721248380957459,0.08332320775750214,0.10485522715158946,0.04209579243238685,0.06721140673484634,0.022630844847610188,0.042121240778886314,0.011500353655305606,0.026628783513989288,0.005832652249492916,17.001103140466043,5.6748056980358275,3.5552697191433733,2.173971109065007,0.4386665614178907,-0.5293056182589753,3.321905352554712,0.9726065675610855,6.0234515145832175,0.7739976830866759,14.550971994688993,10.935661456974005,35.45051742869731,11.686361157459121,2.207841458031875,0.7415193800355786,3.5013300205517153,2.2237259813634846,7.009373292901292,1.3047189329968247,3.714245103428023,2.4196308551252943,22.45586488925301,14.700619213546256,0.28645205455349065,0.6518823742224948,0.8065204639356691,0.890602486128193,0.890602486128193,0.890602486128193,1.7570289279785132,973.2479304430422,0.0,2.0,1.0,0.0,11.0,1.0,3.0,0.0,0.0,3.724649335498247,1.6415358270440596,0.7600307185056154,0.2807262196177316,0.2807262196177316,0.2807262196177316,26.722904810505895,1235.6659479429452,71.64722467509195,30.138193852266955,64.14639381810366,,12.0,476.0,5.969305287951849,14.69560176298435,12.328001352277514,38.49590105734874,0.0,4.567099647791355,56.49810422019942,0.0,0.0,16.337802844032566,11.947619047619046,33.75,18.0,1.0,15.75,0.0,0.022095238095238157,2.25,0.2043349528062683,0.08786400591278631,-0.11647094689348197,0.02177289377289371,0.16220760941279955,0.0,0.6451800232288039,0.8660952380952378,0.44084507042253557,0.5573160173160175,0.8443223443223441,19.296223032412602,0.49629090680259225,0.7542909068025923,26.782753539089963,6.979597032201322,4.938325623369182,46.078976571502565,11.917922655570504,0.5517923905872004,0.2271821442805899,0.0,0.41012355520127547,0.15789473684210525,0.4768944360957184,-1.019028281784161,-0.08142174994957467,-0.024854348336199046,-0.06793521878561073,0.5231055639042818,1.1177722439817344,0.04247567363021039,0.02726273765809108,0.04299124015314363,-4.729059587951892,0.5868256532114392,0.7224813746961708,1.4806265375889731,0.6694010831474991,0.4740571295780747,1.1649853169346862,0.5906191253132179,0.9042166598994006,0.6854286701267905,0.6604760957775593,0.7331896972031982,0.8485492986741412,0.6038070442374696,0.6751290674402312,0.8291242337857385,1.097578622419448,0.8640968992837896,1.0146211895990964,0.6055722850229167,0.7675887878268406,0.6586833576893915,0.47496631018575064,0.6790083084813011,0.7627529227540054,1.0217791743417488,1.1091771058752091,0.9991035582324934,1.2898215992354252,1.1322219193836647,1.0505112192105577,1.0194604884484217,0.939660457328396,1.103627179392628,0.9607064544286962,1.1004205901574355,0.9451238907921912,0.9397285840330282,0.9556391233465579,0.9170197453871078,1.2966522225328485,1.0093314865534264,1.2091778482942175,0.9451842954697607,1.1364993287013452,0.947417435762821,0.8891296979280219,0.9221149962012384,1.1207166415762435,0.6450033426218013,0.9072418413215443,0.7234075364403396,1.1789222021194106,1.032110231715705,0.9893901634022471,0.6509003674010513,0.9232679002251942,0.8622030203517314,1.1796601091877972,0.869446491570874,0.9416788199051578,0.8665025875991312,1.3039330317631825,1.3111917986220452,1.0965427266797128,1.2571184100614488,1.041232884804019,0.8712361500116621,1.0382660262582522,1.2212487111860622,1.4878904107184523,1.1840470083870493,1.0943232474299391,0.7704992415212917,0.6994094829602819,0.7681921538171445,0.8921946347031962,0.8496315753555067,0.9576484073996557,0.778737837111261,0.9505263321888826,0.715973522374947,0.5863909045064672,0.6289813007658663,1.0605079489770737,0.8546558725342993,0.7878572593263241,0.8802803828879392,0.8357795172863665,0.8961686409487303,1.0641475051973999,0.8566514589984149,1.0153098655887063,0.7984053332780948,0.791193543645696,0.8304052117172268,1.0257781021072838,5.5,0.1072339557188042,3.1111111111111125,2.673611111111111,2.045555555555556,1.4313888888888888,0.7356462585034014,0.47828089569161003,0.269093285462333,0.09562500000000004,5127.236148371447,5585.959449201261,2439.4956878104363,2272.7619357048297,12.669543106459164,0.4358552139357844,7.147456685324762,0.7725945975261957,1.0,0.15789473684210525,1.632902669119837,3.716016177574024,4.597521286112468,5.076825785000352,5.076825785000352,5.076825785000352,0.20370370370370366,0.015319136531257743,0.07977207977207984,0.0636574074074074,0.04989159891598917,0.03491192411924119,0.02101846452866861,0.016492444679021036,0.012813965974396813,0.007355769230769232,0.5049364948625348,19.753086419753085,8.347140039447732,4.135279458882165,148.94809374556098,1.0,4.1489075279052,118.88479496481648,,87.59605626834855,87.67809400952335,88.10715608338016,87.57762560009847,116.80341237666653,88.2538953387305,88.72970026924928,105.24457747556622,0.00648864675807054,-0.049942060318726306,-0.5562295320807821,0.434314272061166,0.30407378054177103,-0.09113504864630183,0.007676933267572706,-0.004296795250936956,-0.04120866440014026,-0.08230890758665463,-0.06431977099559895,0.014780119364522714,0.11654246641404403,0.1270418724221794,0.11716523169308622,0.09214016978583835,0.051655025778479476,0.04324627256951241,0.118561527755956,0.15117513909326263,0.12070198065839265,0.14244391303963425,0.10064566668554294,0.145165455135199,-0.1728909378173452,-0.2215408893919249,-0.056361999551827816,-0.11385990761388971,-0.1913477445898372,0.012451323979730292,-0.17044420353140338,-0.009997041838487512,-0.23297823605086057,-0.11256079393782306,-0.21067174341573985,-0.05381034626058272,-0.16909044471618964,-0.11973259229668487,-0.05418569890292641,-0.18117486720715684,-0.07301454774561345,-0.15505669221227672,-0.17123267980590196,-0.22274961766681184,-0.1290152833409155,-0.03657565130271759,-0.12065971929621054,-0.20216888473382902,0.06387832038876633,0.07232424431751143,0.1633931599757086,-0.14561256138537088,-0.030873407443889573,0.012844960468641711,0.06342713229989697,-0.009111561323418022,0.07347644452505421,-0.05371657505113869,0.038860017334102166,0.01724699195084883,-0.07991218158083474,-0.19094506890249519,-0.3058827132959464,-0.1551940639269406,-0.24600640867458476,-0.07603055965067726,-0.08221727823522512,-0.10819147809569987,-0.1601617026133297,-0.23290488851404376,-0.11241424349322017,-0.14677879893984616,0.06268736229999636,0.3289876190294271,0.282541647206938,-0.09902968036529679,0.12406044331963836,0.00037254154914040415,0.058228545700570594,-0.0010185787631848437,0.2850570870703099,0.3532139618829522,0.34706931967663335,-0.06483270577158462,0.20389597490312625,0.0746657423482614,-0.0035188890024102273,0.0004280821917807894,0.053695568786254824,-0.16492262154214085,0.2046546424852299,0.0080445609778044,0.10640547888843029,0.055679673950156286,0.020151069396870103,0.0584255392821426,7.029614133624791,21.508097294792602,11.2252757764658,18.41403206031392,38.55707142137665,45.98741597204679,46.47055490692578,46.47055490692578,46.47055490692578,50.51277544791683,39.390988880985425,2.25647722367772,7.105778054228616,1.7595312890250754,11.12178656693141,6253.917609224914,4974.925209899485,1627.7774005598812,117.0,39.0,53.0,73.0,97.0,109.0,126.0,134.0,122.0,357.0767856720004,27.0,4.890349128221754,5.75890177387728,6.665683717782408,7.565793282428515,8.483636407887394,9.3982297330736,10.322099198314179,11.244248316112698,12.171683043742927,0.7560975609756098,1.0009756097560976,1.112249355224474,0.7265494434979317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7139869723966701,0.991009086561454,1.0208285221963653,0.6839667879642364,7.0,0.0,0.0,0.0,0.0,2.0,5.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9.843390348640755,5.749511833283905,0.0,0.0,5.907179729351506,14.156174015934997,0.0,0.0,0.0,11.600939890232516,54.95175817061889,21.66623701475158,19.047319881819803,275.77783154827483,-589.282215446932,-47.084452957326405,-14.372736962120293,-39.28548102979547,302.5007363587807,646.3837324960132,24.562771717765546,15.765456890146663,24.860912788308198,0.5,0.7606212345337237,0.23247044051496382,68.52208597954714,0.1438635932210944,14.121796682802369,0.23937876546627648,6.0,0.14814814814814814,0.30478522050972406,0.6936033797471132,0.8581384337752602,0.9476017742103572,0.9476017742103572,0.9476017742103572,3.9273200000000026,,1.7899159663865545,1.4451326691517297,1.049447241566292,1.8007472621548186,-4.613413921409986,1.389105906140093,1.344026366649708,-1.832013910737922,95.74730000000002,19.4324647167844,0.0,4.567099647791355,0.0,13.344558822616634,7.109797541277533,64.30803377121505,0.0,5.749511833283905,4.007333185232471,0.0,5.351858133476067,2.3978952727983707,6.892641641172089,4.948759890378168,8.525756422076725,7.221835825288449,10.2126252970172,31.0,11.866282421404776,0.0,0.0,0.0,0.0,1.343577342459618,2.827387996542189,1.5379809145880574,41.04,0.0,24.25277154793659,0.0,0.0,0.0,0.0,0.0,-1.1899221428189677,45.60222356420344,4.736862953800049,0.0,5.749511833283905,28.65990960121295,11.21535880699783,6.923737199690624,21.615368162314272,42.46456947923127,5.022633313741326,10.902924932081056,0.0,29.7885271834152,29.273465868263475,31.63770373185538,237.7695899296331,,175.04891925938617,175.24057740551456,176.13035638743503,175.01119141922453,235.45219032189704,176.3966622049698,177.35187842916656,211.2219605154276,31.63770373185538,237.76958992963304,,173.40219657031062,173.91105534989492,175.16486492519402,173.35450393804223,238.22023867474303,175.11868477132097,176.11537417184883,212.32116886187035,4.910966078161433,166.96604045287123,,123.68796746208378,123.30391271086016,123.13503260808044,123.66955789492033,165.15266636323196,124.25472388146505,125.0712025853569,149.73608314971483,1.2655081492742153,9.510783597185323,,7.001956770375447,7.009623096220582,7.0452142554974015,7.000447656768981,9.418087612875881,7.055866488198792,7.094075137166662,8.448878420617104,2.544120707729556,118.88479496481648,,87.59605626834855,87.67809400952335,88.10715608338016,87.57762560009847,116.80341237666653,88.2538953387305,88.72970026924928,105.24457747556622,40.631372549019616,0.0,3.290990396128013,5.886218622440131,0.0,0.0,9.232653264894878,41.85396941005098,-0.17023930251112773,0.0,5.233410050046954,0.0,0.0,0.0,0.0,0.0,0.0,28.04263830653369,439.8509582258583,66.94900943391332,152.356663280535,188.4983727306112,208.14985718501444,208.14985718501444,208.14985718501444,922.0,128.50062460144076,138.42760968119728,74.55870566743954,68.53,68.53,1.0,9.082200224011803,5.754887502163468,4.04690590520121,4.905856405377147,,4.904725434866447,4.898234965406226,4.893373061602858,4.904846880850253,4.8755374090832655,4.8993497331127145,4.900043734992337,4.893253366280286,0.1618762362080484,0.1962342562150859,,0.19618901739465788,0.19592939861624903,0.19573492246411434,0.19619387523401013,0.19502149636333063,0.19597398932450857,0.1960017493996935,0.19573013465121142,2.3142433469913373,2.5067204080968484,,2.50648984674297,2.5051656609575326,2.504172585215627,2.5065146074521842,2.5005210680089,2.505393220656295,2.505534862459544,2.5041481242180685,252.98999999999995,242.15434794016855,149.00362066895522,,149.05747606048388,149.64130989924482,150.25348381007763,149.0452084500462,151.76145208484294,149.55776127187977,149.48783928384614,150.2009450928981,9.686173917606743,5.960144826758209,,5.962299042419355,5.985652395969793,6.010139352403105,5.961808338001848,6.070458083393718,5.9823104508751905,5.979513571353846,6.008037803715925,6.405866056127623,5.920261337316025,,5.92062270881137,5.924531894986228,5.928614491776588,5.920540404215793,5.938600625752732,5.92397341310853,5.92350577881344,5.928264763414075,6.771390964635012,24.25277154793659,10.472007186275015,2.3249163394781793,-0.5832270646754765,11.866282421404776,-0.17023930251112773,1.7485792845944963,1.5424111115335168,305.05140726171726,159.47640948824957,-340.7692756417488,-27.227930026849837,-8.311445747359727,-22.71795170944992,174.92969261238545,373.78985914621177,14.204124452777386,9.116825832834433,14.376533044085066,1424.0,42.0,1.9719738179919988,0.8433621725237744,0.0,0.0,0.4595645570904556,0.15439157114748495,0.0,0.0,0.0,0.0,0.0,0.0,0.06415002990995841,0.02795084971874737,0.3886445455122603,0.14579941016658077,0.7489117392351053,0.2421270050263023,18.137463722575188,14.501624146933118,11.917922655570504,7.9985024846184665,11.023974857179377,6.10144991064012,9.122616419074534,4.416130011147613,7.654431582066031,3.07299284756424,6.519506453280094,2.195191950218188,4.591215244898608,1.253538548428311,3.35522672276265,0.7349141834361074,4.390215712616139,1.735150899588291,7.283617121846317,2.4079280496699162,12.199504750208385,3.344061839678325,80.71531379922294,44.164307130215626,27.474094363994464,25.34100185147893,25.34100185147893,25.34100185147893,132.0,158.0,48.886687999999985,21.743311999999996,0.3902439024390244,129.06,9.36111111111111,5.5277777777777795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,15.0,16.0,41.0,0.0,0.0,43.0,16.0,2.0,9.0,34.0,18.0,27.0,25.0,0.0,0.0,0.0,19.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,4.0,1.0,1.0,25.0,6.0,0.0,1.0,4.0,0.0,3.0,4.0,0.0,0.0,1.0,1.0,3.0,3.6375861597263857,7.8077038268141,4.300680995219929,4.942534881392324,5.609700706711655,6.204305205426294,6.579663453415824,7.015817610196968,7.379215366608504,7.531158748209716 +3151,O=c1[nH]c2ccccc2n1CCCN1CCC(n2c(=O)[nH]c3cc(Cl)ccc32)CC1,0,27.37037037037037,6.172099999999999,3.5185185185185186,7.251943301326018,163.38447770433106,110.14472120370374,1.557691068821777,6.27918148148148,3.9496865597498125,7.720772685185182,226.23527931995937,26.517241379310345,6.402724137931035,4.293103448275862,7.208812260536398,148.7334658969897,101.52691646551726,1.833886196896552,6.555500000000001,2.8643394352206615,7.8018003103448255,268.3108966925563,22.81904761904762,6.350912380952382,3.876190476190476,5.844444444444444,156.37126822676615,85.80281701904762,1.604796318418505,6.466639047619047,2.8250734861845976,7.798092419047617,227.11714301859388,17.641379310344828,6.102475862068966,3.110344827586207,3.7478927203065133,160.95424841510942,63.907629400000026,1.3717987590922485,6.208117241379311,2.4830495246204065,7.655193213793103,186.41065733159206,15.5,6.0214737179487186,2.8076923076923075,2.828347578347578,162.4102823721498,54.90078557051284,1.2707009201834678,6.113308333333332,2.4913276880869475,7.595639435897435,167.80015104138377,13.987096774193548,5.970484516129032,2.490322580645161,2.3548387096774195,163.08965317741684,48.624824167741934,1.1704910116755807,6.05416064516129,2.6070025222354976,7.585018709677421,151.61443307408518,13.079136690647482,5.941099280575538,2.446043165467626,2.2949640287769784,166.8326353302936,45.25236387769783,1.1104704292680718,6.007401438848922,2.3828344731622106,7.560546043165467,140.83153938841966,14.043103448275861,5.786474137931035,2.6551724137931036,2.242337164750958,164.32411494564704,50.03415826724137,1.1982921440910688,5.881116379310344,2.02269582801192,7.410312689655172,153.25284134285988,15.805825242718447,6.09753300970874,2.766990291262136,2.3408845738942827,163.30413153055775,54.96259802912621,1.293104356539651,6.210132038834953,2.501108713891885,7.720567999999999,168.18153455445886,10.163237311385458,0.10773772290809325,0.01739231445937044,0.6159122085048012,3.6995715422784454,1.5467554399190175,47.93440196879286,0.23829713921648832,0.10855747599451296,1.3032999612792808,0.06909465740740738,50.22164665425343,0.3833782697128806,-0.0021238020907241276,-0.013303696283862108,0.17527553095880039,1.1170643784443193,-0.4135875582070911,1.834516159240351,-0.012772718200912303,-4.444917458960593e-05,-0.005685647976652451,-0.0039086877394636866,-0.015040886653292675,0.2829708014893201,0.021867003723300058,0.005636907239048661,-0.0035665294924554325,0.4117311772547255,0.01291016084274795,1.2462695239760997,-0.0007722149257098378,0.017693599843229522,0.1517918618420603,0.013612046825396747,-1.4858882443054686,-0.42505084906106605,-0.01246548791447896,-0.0025018685189035473,-0.10863251501821107,-0.16228380754499033,-0.053735879971167015,-1.9486026148975912,-0.003784097733767519,-0.011306288255049425,-0.013212783535022718,-0.008611434291187743,-0.24139342584950044,-0.4248707396855546,-0.007072219584256625,0.0009056522554469185,-0.09976785902711831,-0.47373530718295215,0.059215479570724254,-2.062686320288594,-0.0147209784198599,-0.006183378178748555,0.00500196886478478,-0.002754419871794841,-3.4005004300392,-0.304933846630382,-0.011044031151820885,-0.0012893703250471528,-0.014956414000619488,-0.41995445007672677,-0.20633807695373735,-1.4696029028430497,-0.019209450816848446,-0.00903976990132308,-0.14333411734831547,-0.00625575609318993,-4.065275913275087,0.473320109344623,0.002360065527824632,0.0013411681389546423,0.053685446704364925,-0.11282776857313113,0.11024689862283124,2.1893467928644674,0.01572398060429022,0.003381825897306824,-0.14201769816024282,0.005272572142286224,0.9888148157647224,1.3907218201598792,0.006615214512085464,1.2577510589970682e-05,-0.03800671680620594,-0.0437566170935768,-0.033795018014655225,6.622773032803552,0.020944166275820717,0.009120589139586518,0.061713477053543665,0.0018109171455940004,6.478872847351869,-2.4275307310186847,-0.02626443991636366,-2.9553095929797132e-05,-0.08660620347064074,-1.200568163975056,0.10380897323744841,-11.355386549699016,-0.014594716398496261,-0.029243919719791685,-0.21833641337071197,-0.016610538565264333,-5.869365388057768,,,0.47936507936507944,1.25,0.55,0.05,0.7,-0.15,0.9004176304082881,0.010561892468302502,0.024895225801635834,0.8869083320642179,0.23441337889248431,0.2521651807183164,1.787325962472506,0.4865785596108007,2.083789934949093,1.5441249825431587,0.3612408202073195,0.11935270283427005,0.05907142936434486,0.5396649524059344,7.873367642370384,1478.0,333.2933999999999,190.0,391.60493827160496,8822.761796033878,5947.814945000002,84.11531771637597,339.0757999999999,213.28307422648987,416.9217249999998,12216.705083277806,1538.0,371.358,249.0,418.1111111111111,8626.541022025403,5888.561155000001,106.36539942000002,380.21900000000005,166.13168724279836,452.5044179999999,15562.032008168266,2396.0,666.8458,407.0,613.6666666666666,16418.983163810444,9009.295787000001,168.50361343394303,678.9970999999999,296.63271604938274,818.7997039999998,23847.30001695236,2558.0,884.859,451.0,543.4444444444445,23338.366020190864,9266.606263000003,198.910820068376,900.177,360.04218106995893,1110.003016,27029.54531308085,2418.0,939.3499000000002,438.0,441.22222222222223,25336.004050055366,8564.522549000003,198.229343548621,953.6760999999998,388.64711934156384,1184.9197519999998,26176.82356245587,2168.0,925.4250999999999,386.0,365.0,25278.89624249961,7536.847746,181.426106809715,938.3949,404.0853909465021,1175.6779000000001,23500.237126483204,1818.0,825.8127999999998,340.0,319.0,23189.736310910812,6290.078578999999,154.35538966826198,835.0288000000002,331.2139917695473,1050.9159,19575.58397499033,1629.0,671.231,308.0,260.1111111111111,19061.597333695056,5803.962358999998,139.001888714564,682.2094999999998,234.63271604938274,859.596272,17777.329595771746,1628.0,628.0459000000002,285.0,241.11111111111111,16820.325547647448,5661.147597,133.18974872358405,639.6436000000001,257.61419753086415,795.2185039999999,17322.69805910926,548.8148148148148,5.817837037037036,0.9391849808060038,33.25925925925927,199.77686328303605,83.52479375562694,2588.4577063148145,12.86804551769037,5.8621037037037,70.37819790908117,3.7311114999999986,2711.9689193296854,22.235939643347074,-0.12318052126199941,-0.7716143844640022,10.165980795610423,64.78973394977052,-23.988078376011284,106.40193723594035,-0.7408176556529136,-0.002578052126197144,-0.32976758264584216,-0.2267038888888938,-0.8723714258909752,29.711934156378607,2.296035390946506,0.5918752601001094,-0.3744855967078204,43.23177361174618,1.3555668884885348,130.85830001749048,-0.08108256719953297,1.8578279835390998,15.938145493416332,1.4292649166666584,-156.0182656520742,-61.63237311385458,-1.8074957475994493,-0.36277093524101434,-15.751714677640605,-23.5311520940236,-7.791702595819217,-282.54737916015074,-0.5486941713962903,-1.6394117969821667,-1.9158536125782941,-1.2486579722222229,-35.00204674817756,-66.27983539094652,-1.1032662551440335,0.14128175184971928,-15.563786008230457,-73.90270792054054,9.237614813032984,-321.77906596502066,-2.2964726334981442,-0.9646069958847745,0.7803071429064257,-0.4296894999999952,-530.4780670861152,-47.26474622770921,-1.7118248285322373,-0.1998524003823087,-2.318244170096021,-65.09293976189265,-31.98240192782929,-227.7884499406727,-2.977464876611509,-1.4011643347050773,-22.216788188988897,-0.9696421944444391,-630.1177665576386,65.7914951989026,0.3280491083676238,0.18642237131469527,7.462277091906724,-15.683059831665227,15.324318908573542,304.31920420816095,2.1856333039963407,0.47007379972564856,-19.740460044273753,0.7328875277777852,137.44525939129642,161.32373113854598,0.7673648834019138,0.0014589912284365993,-4.408779149519889,-5.075767582854908,-3.9202220897000064,768.241671805212,2.4295232879952033,1.057988340192036,7.158763338211065,0.21006638888890405,751.5492502928167,-250.03566529492454,-2.705237311385457,-0.0030439688807691045,-8.920438957475996,-123.65852088943078,10.692324243457186,-1169.6048146189987,-1.5032557890451148,-3.0121237311385434,-22.488650577183332,-1.7108854722222262,-604.5446349699502,0.6888187153356882,0.5786860136092709,0.42933402318600067,0.31690037843006086,0.2740701276227916,0.1719054933614014,0.17115040806430332,0.09372862928424151,0.11000361695585499,0.051279462071830303,0.07276007651172733,0.029927289109833426,0.04684043444064072,0.017110707570747345,0.03081249871186556,0.010050443734277591,17.001103618675984,5.694691498093365,3.549058444872038,2.1887510489240953,0.47954470918774317,-0.4193277914939716,3.2840909839391847,0.9770379989116745,6.023526716136176,0.7740013120732708,14.560836904364635,10.958201068990117,35.45051764633584,11.708549504077604,2.207897259922592,0.7455380906799816,3.4955485919600267,2.2385961048477987,7.009371519480072,1.2311402679374275,3.70754811321208,2.434177330236534,22.455867238202224,14.70173061208676,0.27269739609417043,0.5579173588928891,0.6926923194944838,0.8103598799252189,0.860190755919762,0.8724457599137664,1.061306436165033,1306.5523076910547,0.0,0.0,4.0,0.0,12.0,4.0,0.0,0.0,0.0,4.106596964847501,2.3826150989832895,1.567982119686243,0.8567530093794531,0.5555555555555562,0.48148148148148184,108.82323092657754,1611.8381276581522,65.09840781249889,29.848854215891713,62.27260088779222,,17.0,894.0,0.0,9.589074368143644,17.42132762555491,11.567389719653901,60.963536956980796,0.0,6.06636706846161,45.53240170635237,14.867866772744893,11.600939890232516,14.380952380952383,37.5,16.5,1.5,21.0,0.0,0.02063492063492056,-4.5,0.1540112702714333,0.05460958794292181,-0.09940168232851149,0.03378968253968251,0.14375830815709945,0.0,0.6003527336860671,0.8406349206349204,0.4463414634146338,0.5457431457431453,0.8068452380952379,27.012528912248644,0.3168567740490751,0.746856774049075,26.607249961926538,7.032401366774529,7.564955421549492,53.61977887417518,14.59735678832402,0.5702416918429005,0.09602649006622514,0.0,0.3615894039735098,0.36363636363636365,0.41824745688593434,-1.0128949009232917,-0.05421468023100332,-0.018757312980060958,-0.05331025794333114,0.5817525431140655,1.4088649549878733,0.043594589830809896,0.026090091759034692,0.04025328442822495,-5.268776524598802,0.6360414407454122,0.7717040280228609,1.8878671133518807,0.7555583288533906,0.5268931887806968,1.5064188471891198,0.6415167898651917,1.012189121930803,0.7157919347406048,0.5030789787650255,0.7391536261587429,0.9348058433972601,0.7284268168058153,0.6905358834425636,0.8401876313248323,1.1685968819599106,0.8500545059090033,1.1657169295790466,0.7345666705384023,0.9290677622596172,0.6886752466925935,0.4413677600380485,0.6040060742016983,0.9554458967318943,0.9287537058842694,1.048874757911899,1.1502441980889084,1.247358113816143,1.0195881550518184,1.0718308856324867,0.9299239508784068,0.9690325512728534,1.0239071676960871,0.7725303930121921,1.0063112902378304,0.9695313877446537,0.8877171215880894,1.0154868797246386,1.0172338271980557,1.1338658557478156,1.0870081037265737,0.9555155825617241,0.8928098334757588,1.006936787565714,0.9859808162759071,0.8691984950361735,0.9234152863646045,1.042414319665292,0.9124471545069425,1.183833434342405,0.9748847440579748,0.9047201666786405,1.1003919664342243,1.0431516993179146,0.9156451956906055,1.0432641337315534,1.132187738557164,1.483773577445357,1.1559236324254893,1.0698985430598404,0.8194702437537081,1.0513988664939136,0.7461837131637358,0.7795741135376776,1.031800865748973,0.8430785434362104,0.8240420059101246,0.8645639913963135,1.0083226134133683,1.240072142003551,0.92487938072212,0.9614556802581387,0.7821478188224015,0.6953299574321835,0.84234981958963,1.0646503724752323,0.940648763958465,0.9485195217031325,0.785568990436741,0.8899300326702572,0.7076627182078573,0.41954816960063046,0.6548315462915097,0.8952811631549221,1.3923206753266495,1.3151709882430282,1.0103080601301497,1.144874262114299,1.3398830552534458,0.8974348270431037,1.3851680961944415,1.0666955001341585,1.357849380669618,1.2905555834269324,1.3801048605770305,1.0919193933994882,5.5,0.11957963473114988,3.555555555555557,3.1180555555555554,1.502777777777778,0.8480555555555558,0.5909750566893425,0.4297406462585034,0.1635408793146888,0.135,6209.478320017901,6950.7371901517145,3068.961730980373,2825.4436062048226,16.85563066522422,0.45908281987205435,9.117500208711213,0.8487118485744256,1.0,0.36363636363636365,1.6482905373159666,3.3722724031801787,4.186905382477225,4.898134492784015,5.199331946607912,5.273406020681986,0.16176470588235292,0.005978981736557493,0.07256235827664402,0.06363378684807255,0.0349483204134367,0.023557098765432098,0.020378450230666978,0.014818642974431149,0.0060570696042477334,0.006136363636363636,0.40983577836820534,21.825259515570934,9.46938775510204,4.577854671280277,177.4292360249599,1.0,4.357982121787291,195.8419124259375,,155.35322040091825,153.1325890041209,150.15557843006457,155.3505298126168,211.82155030761615,154.94997975179305,156.59815013327676,194.86829893999823,0.0377220621704265,-0.01971270631490753,-0.7649181087968708,0.28457875739190525,0.3019442564303962,-0.26739040156777794,0.03827138931314281,-0.05359996449352477,-0.00040945291130251233,-0.004362501454439994,-0.05657004298344854,-0.0002994901134333638,0.027842585272737797,0.2029651558716711,0.3241033418649851,-0.005790645879732761,0.11129158405223157,0.00834660768571396,0.025999479972389543,-0.0032405547471062823,0.1629883126991995,0.11646732628846691,0.197005779262138,-0.02958660942630849,-0.04182238749703296,-0.1157021661309175,-0.14384908487873033,-0.17637662237923352,-0.04386556813145044,-0.0347410318298156,-0.04065144311524334,-0.015879744701130214,-0.10415024991573037,-0.010137945160416823,-0.1246324189786712,-0.004806561352146665,-0.041804665842997614,-0.0656429279676688,0.05207198027396412,-0.16198389583690254,-0.1280513977819156,0.03828367306328954,-0.043031439541719584,-0.06177572449363807,-0.05695948733241636,0.0038379260441893936,-0.039864440683941356,-0.06770985534284947,-0.030003613739175122,-0.10250848870494605,-0.07413448785434534,-0.02428335368920179,-0.1135143476149918,-0.13340058268328475,-0.03065862600726338,-0.080611336250231,-0.08327173986414345,-0.10997784209831706,-0.09053892627766721,-0.08094668701849078,0.046571785627241215,0.021905656293087886,0.07711268917588265,0.08716412170931409,-0.03049752310064646,0.07127623137928216,0.04567381051900505,0.06598476446670763,0.031152399835436103,-0.10896777593766091,0.07630940423073827,0.01968901622386323,0.13683846766048752,0.06140109827389464,0.0007231648564860389,-0.06170801013747021,-0.01182748234316575,-0.02184897311007654,0.1381632556324627,0.08789096816136491,0.08401622325898143,0.04735170635082927,0.026209220995426177,0.129005583826335,-0.2388540832653018,-0.24378127927178117,-0.0016992043237738746,-0.14061452634765498,-0.3245154608459512,0.06711401851793938,-0.23689429894404043,-0.06124587330961302,-0.2693865111719235,-0.1675258343109282,-0.2404026474481597,-0.11686923426595118,18.170798319135457,22.142987227750265,5.522024488878111,17.911461263085652,32.83066424473153,38.79865236685359,42.26831305768374,44.016105276323415,44.090771942990074,62.51369804847279,46.32374947629476,10.837224606219586,3.5805810850281015,1.7721428809303459,16.189948572178032,12231.217697477083,11385.856259665557,1621.3752179137336,156.0,49.0,68.0,94.0,115.0,120.0,139.0,150.0,139.0,425.1618526880007,34.0,5.117993812416755,5.993961427306569,6.894670039433482,7.786136437783072,8.690978417187905,9.58870831219998,10.494740425414733,11.39577348015937,12.302277879199707,0.6913580246913578,0.9850370370370373,1.129769685762599,0.6566773667348142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6878136172100245,0.974146695715323,1.0073440155377522,0.6446704736488985,7.0,0.0,2.0,0.0,0.0,4.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14.867866772744893,0.0,0.0,0.0,0.0,9.13419929558271,9.589074368143644,0.0,0.0,23.733674027155736,56.13905661699866,30.698743360627013,22.066802870465047,278.3707873261308,-674.1471978048082,-36.083383107466666,-12.48420736675571,-35.48143146341096,387.19401825270836,937.690929853344,29.01502470503223,17.364646849136,26.791169424381255,0.47058823529411764,0.8277088154933571,0.1261644852294785,65.28097922644216,0.13470188813221343,56.12013428429658,0.17229118450664296,9.0,0.14705882352941177,0.286415770368459,0.5859840703944987,0.7275390493564328,0.8511260195690413,0.9034636984047554,0.9163352052841214,3.353200000000002,,1.861344537815126,1.6163751074951453,1.6041772116402813,1.8722168178861813,-4.521552665458954,1.5164008877802397,1.4080887386601724,-2.311323467595586,119.45540000000001,0.0,0.0,24.002066068327604,0.0,31.849062103838566,19.634269217737724,68.45576395752319,0.0,0.0,4.23410650459726,0.0,5.579729825986222,3.044522437723423,7.117205503164344,5.53338948872752,8.742733867330168,7.719129840906732,10.415082880004208,37.33333333333332,13.341496697323747,0.0,5.8306403671698535,0.0,0.0,3.550423435910762,0.625024764242198,3.701603250603105,53.192000000000014,0.0,24.69398399208277,0.0,0.0,0.0,0.0,0.0,0.0,61.00756303118034,11.379486796406947,0.0,0.0,43.63633528606533,6.544756405912575,0.0,25.30430569792599,52.053643847374914,5.022633313741326,22.066802870465047,0.0,35.46057780367997,37.14193532934132,39.647928439881355,391.68382485187493,,310.5823511659821,306.15741966774215,300.2042117126864,310.5762451707078,425.15028483705197,309.7988661110674,313.10242768397615,390.5070390358617,39.647928439881355,391.6838248518749,,308.87505638104585,304.7008685060816,298.7856002480513,308.85864626284115,428.1646532806915,308.4221684158483,311.8170432528898,392.04792134759214,4.8492714158320185,308.70818152851695,,253.29260499624675,248.84461293088793,243.77654824967416,253.30757092343896,345.4118963918512,251.96124313794007,254.72378855499943,317.68968083030194,1.3215976146627118,13.056127495062498,,10.35274503886607,10.20524732225807,10.006807057089548,10.35254150569026,14.171676161235066,10.326628870368914,10.436747589465872,13.01690130119539,2.4913768174989044,195.8419124259375,,155.35322040091825,153.1325890041209,150.15557843006457,155.3505298126168,211.82155030761615,154.94997975179305,156.59815013327676,194.86829893999823,52.60392156862744,0.0,0.0,6.051349556332131,0.0,0.0,0.0,54.396576839038616,6.31130929624747,0.0,0.0,0.0,0.19436326433440398,2.423740131855211,0.0,0.0,0.0,34.81220557704052,550.8938568597275,89.0076890150622,182.10270977172965,226.09289065377016,264.4992626103368,280.76392511682724,284.76392511682724,1094.0,142.2652402311016,114.67094871911173,82.38590034843988,78.82,78.82,0.8888888888888888,8.879869854578072,6.087462841250339,4.061014735352541,5.406883357436396,,5.426751207070525,5.4220874005618525,5.4212669472947645,5.4268425185086215,5.429905726901397,5.423236592588298,5.423797874415547,5.428773651173354,0.13536715784508468,0.18022944524787984,,0.18089170690235082,0.1807362466853951,0.1807088982431588,0.18089475061695406,0.18099685756337988,0.1807745530862766,0.18079326248051822,0.18095912170577846,2.500045165869145,2.7862851263249113,,2.789952939151547,2.789093159231383,2.788941830916854,2.789969765179941,2.7905340609349527,2.7893050831963055,2.7894085735704635,2.7903255501772946,306.02000000000083,696.7672258264344,196.0285613380746,,193.08996955185327,193.66793435231543,193.81751311829896,193.07688972408593,193.230112742125,193.55176488480598,193.49541914571483,193.21004163434313,23.225574194214477,6.53428537793582,,6.436332318395109,6.455597811743847,6.460583770609966,6.4358963241361975,6.441003758070833,6.451725496160199,6.449847304857161,6.440334721144771,7.645063677833899,6.376872658394962,,6.36176853243366,6.364757302539518,6.365529351009414,6.36170079058861,6.362494061355621,6.364157284145704,6.363866127192164,6.362390184428896,3.701603250603105,32.94836449110783,0.625024764242198,3.4375997909202223,0.0,13.535859961658153,2.780748338361975,3.5305609578854957,0.0,350.3694924734457,185.27379894554466,-448.6886486384764,-24.015829862547825,-8.309049048860677,-23.61519203360403,257.7027114796534,624.0940814208819,19.311379276669992,11.557297804090405,17.831259469168053,2853.0,49.0,1.9835632021927503,0.9845263334161277,0.0,0.0,0.46734726075849314,0.14031192141183763,0.0,0.0,0.0,0.0,0.0,0.0,0.15713484026367722,0.05590169943749474,0.7149815876147503,0.2396569230822246,1.1672972435477404,0.3248016462070471,20.664561460070644,17.360580408278125,14.597356788324023,10.77461286662207,13.429436253516789,8.423369174708668,11.638227748372625,6.3735467913284225,10.34033999385037,4.820269434752048,8.367408798848643,3.441638247630844,5.620852132876887,2.0532849084896814,4.282937320949313,1.3970116790645852,4.81584867715372,2.0918170234746536,8.431292465838656,3.0567785283856934,12.786538924385155,3.952171092744879,97.9007050087056,57.9937079587647,40.58753629317927,31.553106726224215,27.608856955742553,27.33071714076749,166.0,200.0,62.02703199999999,32.592968,0.5,286.08,8.222222222222221,6.444444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,20.0,54.0,0.0,1.0,58.0,20.0,2.0,8.0,50.0,22.0,34.0,36.0,0.0,0.0,0.0,22.0,1.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,5.0,2.0,3.0,30.0,8.0,0.0,5.0,2.0,0.0,5.0,5.0,0.0,0.0,1.0,2.0,4.0,3.8501476017100584,7.127590237936061,4.537961436294641,5.197114861038874,5.8805329864007,6.395157252103981,6.667870814787037,7.0430097955505255,7.3407240855243705,7.062553070815822 +47965,CC1=C(C(=O)O)N2C(=O)[C@@H](NC(=O)[C@H](N)c3ccc(O)cc3)[C@H]2SC1,0,31.333333333333332,6.613292857142857,3.5952380952380953,9.248677248677248,162.87181444035318,124.32787561904765,1.6056390329150712,6.66355238095238,7.373758899993469,8.118320976190475,231.27066010877544,29.477272727272727,6.617318181818183,4.363636363636363,8.234848484848486,149.04235779743178,113.1815370227273,1.8882223770909092,6.751931818181817,3.719767115600449,8.04071127272727,276.73152514088906,26.986301369863014,6.47118904109589,3.9863013698630136,6.972602739726027,151.94395002948673,102.10922595890408,1.714595725537602,6.594178082191782,3.865550481988837,7.955096136986299,241.75610018677946,24.03157894736842,6.509111578947367,3.4,5.722807017543859,155.9488090629045,89.53604497894737,1.5378190076325686,6.602555789473682,3.933365821962313,8.00899027368421,214.52205501737714,20.477064220183486,6.428899082568808,2.8256880733944953,4.516819571865444,161.6697434831528,74.36490281651376,1.3013046486200366,6.502978899082571,3.739409899195832,8.00239,181.34558466873494,20.764705882352942,6.642088235294117,2.549019607843137,4.493464052287582,165.02563906973324,75.57550105882353,1.1659422911052446,6.680794117647057,4.964536431856693,8.222547490196078,165.9708232117737,17.686046511627907,6.380496511627909,2.604651162790698,4.077519379844961,166.4013648747505,63.35253347674418,1.1696602518486043,6.423083720930233,3.983491243181165,7.982671906976745,158.39338197330883,20.08695652173913,6.4818695652173925,2.8260869565217392,4.869565217391305,162.94532586306812,72.87345295652175,1.327323023352739,6.542553623188408,4.227053140096619,8.05662336231884,182.84963760014017,20.384615384615383,6.369784615384618,2.830769230769231,4.815384615384615,160.9092568248007,74.59012770769232,1.3480473475721233,6.441872307692308,4.527350427350426,7.947056861538459,183.67093910079768,10.868480725623582,0.1774070861678004,0.038212128507285406,0.737528344671202,4.380700428319476,1.5873231695062946,49.46912360997734,0.2850286836172477,0.1610523809523809,3.1502627228303304,0.11629235884353736,47.84366872940522,-0.025407132549989445,-0.02972921820243246,-0.024170981394494095,0.26734178519892804,0.9010456034265556,0.09923101989308857,0.07450317681921627,0.04442762456223876,-0.02585227272727271,-0.36109514315349106,-0.019619720315398884,5.308232162202584,-0.2657409995961855,0.027244088000496998,0.0011841351616109891,-0.05683689000714442,0.4159220258372251,-0.18454468074452093,-1.0049099485291788,-0.025255496540085586,0.023910958904109585,0.4066089848320082,0.01618099503774112,-1.3656922407084586,-0.4083303496837331,0.009720532879818595,0.008522724745297092,-0.09492182838047497,-0.30935539907970966,-0.0391290256629333,-2.0779816956916077,-0.019881755741783295,0.006108421052631599,-0.06880444751240573,0.005600436143931255,-6.756825994928217,-1.0174540764317956,-0.026415233830535262,-0.008740368931698144,-0.11695167363581523,-0.40545650812142753,-0.24054312179885445,-4.538524173105326,-0.047119617654370026,-0.02104403669724772,-0.3713763598885815,-0.019977697856206695,-3.938094394370651,0.38221955448846195,-0.013946862078164576,0.0008791679715870999,-0.02931172468987594,-0.6680746372623122,-0.20238246977517005,1.2513491696678691,-0.020947311819808193,-0.011205882352941152,-0.17937990239534307,-0.0012832832132853283,-4.443643349902203,0.11933765754363762,0.000883390022675726,0.005969517092579927,0.03711174392237516,-0.05093544739170433,0.16347433698937847,0.7297939697568931,0.02231393926684001,4.883720930232537e-05,-0.20287446360601002,-0.0019516899620313215,3.7451904593132603,-1.0147885241052945,-0.016782275953859786,-0.004411361502357068,-0.00012323770087745498,-0.06845443491406224,0.17854396178045975,-4.405986915705412,0.023070515562830587,-0.016489855072463762,-0.0953299656476176,-0.01131069114167406,2.0570121332516367,-0.004011861154718444,0.016157748997034708,-0.0003634813212876827,-0.059140066282923405,0.12251487489582724,0.015829677814847103,0.19890576804465354,0.006722328551491824,0.014303076923076904,0.5169214875637569,0.009878933830455258,1.7337196082068531,,,0.46800000000000014,1.13,0.48,0.02,0.65,-0.17,0.9085738807678742,0.024271014173392443,0.03459101417339244,0.9084144977144732,0.21694956592769432,0.25534796239383706,1.8169883784823475,0.4722975283215314,2.007092385772183,1.3338133243305788,0.24171273984953287,0.3498059865344829,0.0,0.6732790614416035,8.644973610571439,1316.0,277.75829999999996,151.0,388.44444444444446,6840.616206494833,5221.770776000001,67.43683938243299,279.8692,309.6978737997257,340.969481,9713.367724568569,1297.0,291.16200000000003,192.0,362.33333333333337,6557.8637430869985,4979.987629000001,83.081784592,297.085,163.66975308641975,353.7912959999999,12176.187106199119,1970.0,472.3968,291.0,509.0,11091.908352152532,7453.9734949999975,125.16548796424496,481.37500000000006,282.1851851851851,580.7220179999998,17648.1953136349,2283.0,618.3655999999999,323.0,543.6666666666666,14815.136860975927,8505.924273,146.09280572509402,627.2427999999998,373.66975308641975,760.854076,20379.59522665083,2232.0,700.7500000000001,308.0,492.33333333333337,17622.002039663657,8105.774407,141.84220669958398,708.8247000000002,407.5956790123457,872.26051,19766.66872889211,2118.0,677.4929999999999,260.0,458.3333333333333,16832.61518511279,7708.701108,118.92611369273496,681.4409999999998,506.3827160493827,838.6998439999999,16929.02396760092,1521.0,548.7227000000001,224.0,350.6666666666667,14310.517379228542,5448.317878999999,100.59078165897996,552.3852,342.5802469135802,686.5097840000001,13621.83084970456,1386.0,447.2490000000001,195.0,336.0,11243.2274845517,5028.2682540000005,91.585288611339,451.43620000000016,291.66666666666674,555.907012,12616.62499440967,1325.0,414.0360000000002,184.0,313.0,10459.101693612047,4848.358301000001,87.62307759218801,418.72170000000006,294.2777777777777,516.5586959999998,11938.611041551849,456.4761904761905,7.4510976190476175,1.6049093973059871,30.97619047619048,183.98941798941797,66.66757311926438,2077.703191619048,11.971204711924404,6.764199999999997,132.31103435887388,4.884279071428569,2009.4340866350194,-1.1179138321995357,-1.3080856009070283,-1.0635231813577402,11.763038548752833,39.64600655076845,4.366164875295897,3.2781397800455156,1.9548154807385056,-1.1374999999999993,-15.888186298753608,-0.8632676938775509,233.5622151369137,-19.399092970521544,1.988818424036281,0.08644186679760221,-4.149092970521543,30.36230788611743,-13.471761694350029,-73.35842624263005,-1.8436512474262479,1.7454999999999996,29.6824558927366,1.1812126377551018,-99.69553357171748,-38.791383219954646,0.9234506235827665,0.8096588508032238,-9.017573696145122,-29.388762912572417,-3.717257437978664,-197.40826109070275,-1.888766795469413,0.5803000000000019,-6.536422513678544,0.5320414336734692,-641.8984695181806,-110.90249433106572,-2.8792604875283434,-0.9527002135550977,-12.747732426303859,-44.1947593852356,-26.219200276075135,-494.69913486848054,-5.136038324326333,-2.2938000000000014,-40.48002322785538,-2.1775690663265297,-429.2522889864009,38.98639455782312,-1.4225799319727868,0.08967513310188419,-2.9897959183673457,-68.14361300075585,-20.643011917067344,127.63761530612264,-2.1366258056204357,-1.1429999999999976,-18.296750044324995,-0.1308948877551035,-453.2516216900247,10.263038548752835,0.07597154195011244,0.5133784699618738,3.1916099773242634,-4.380448475686572,14.058792981086548,62.762281399092814,1.9189987769482408,0.0041999999999999815,-17.447203870116862,-0.16784533673469365,322.0863795009404,-70.02040816326532,-1.1579770408163252,-0.3043839436626377,-0.008503401360544394,-4.723356009070295,12.319533362851724,-304.01309718367344,1.5918655738353105,-1.1377999999999995,-6.5777676296856145,-0.7804376887755102,141.93383719436292,-0.2607709750566989,1.0502536848072561,-0.023626285883699374,-3.8441043083900213,7.963466868228771,1.0289290579650616,12.92887492290248,0.4369513558469686,0.9296999999999987,33.5998966916442,0.6421306989795917,112.69177453344545,0.7320240171756687,0.5646815785594643,0.4373125262236402,0.3179414260036655,0.2808058103832161,0.17510879308207022,0.17271008279593358,0.10214669067237725,0.1082127171254106,0.058137504189449,0.06941022664726415,0.03439987023151943,0.0433042816151135,0.019649739202579855,0.02716635922779779,0.011073331654282642,16.00200327772523,5.693175174227358,3.5557762705555924,2.192396925154462,0.4770263623736213,-0.3838844095151619,3.2701264614716483,0.9725487256692844,6.024494732866737,0.6549460638945381,14.544244629369482,10.338078505943955,32.06099896792824,11.704671038451968,2.9162797352412517,0.7413678199379433,3.50187358402059,2.2422138448387554,7.010460259455907,0.6222010097588972,3.714749757194579,2.4382090041366022,24.434227456531268,14.700439250473359,0.32163085897516025,0.7176218050914249,0.8635024948481067,0.913871476102073,0.913871476102073,0.913871476102073,1.5646150940548436,776.4797957092851,0.0,3.0,3.0,0.0,6.0,2.0,2.0,0.0,0.0,3.5678903875680015,1.3216613096268333,0.49416398814674967,0.20844970243246408,0.20844970243246408,0.20844970243246408,42.241100395453714,1792.7945980374495,99.94734415817044,42.68558566755832,88.93347320674732,,13.0,540.0,35.24121921791952,24.596666341896878,11.446551146339738,16.889409628513054,0.0,40.92726295408803,6.923737199690624,0.0,5.316788604006331,5.733667477162185,11.700000000000003,28.25,12.0,0.5,16.25,0.0,0.03199999999999989,-4.25,0.2234406438631788,0.05828571428571416,-0.16515492957746464,0.10199999999999976,0.2008421052631575,0.0,0.6642857142857144,0.9119999999999996,0.44084507042253557,0.6060000000000002,0.8099999999999998,22.714347019196854,0.6067753543348111,0.8647753543348111,22.710362442861832,5.423739148192358,6.3836990598459264,45.424709462058686,11.807438208038285,0.5131578947368425,0.2193732193732193,0.0,0.46153846153846145,0.3125,0.4636120219520023,-1.4319831925091435,-0.109918205110787,-0.03409483791688437,-0.08949894953182147,0.5363879780479978,1.6567701717368695,0.06227815015152083,0.03944690885087784,0.06372192968218729,-1.1245343952940563,0.7471264912846386,0.8558520940187462,1.6081539712922899,0.8272482705611067,0.5222083374726154,1.1318127991540707,0.743705182370152,0.8336083878586815,0.8310142501565732,0.7497494871860452,0.8626149710908501,0.8162806539311646,1.0446012878369997,0.5267593872887724,0.778645746718304,1.2873342950101605,0.7275334035584766,1.2852188768169464,1.0231940507111699,1.248956589236468,0.5271192049358975,0.4964975543028262,0.5276263002590184,1.018121262930424,0.9449850110358308,0.7720968428412229,0.6755871027708199,1.2051701120595493,0.9580769661543865,1.107407984535935,0.9466660461327352,1.0759516986417617,0.7826571469921367,0.832378978437311,0.7742208080603501,1.099399023609033,1.1581640465740368,1.1043759275144864,1.1979931021111159,1.14145082470083,1.072738753988401,1.1688251783888706,1.1477950953025813,1.2036712198803103,1.0861390065181262,1.0748514173386892,1.1131073532109075,1.056634004018783,0.9444149556338288,1.2886960406280825,1.0132405730402796,0.986209702943437,1.2301047266551413,1.0558870388972228,0.9564715809375495,0.9776536083831572,1.2682129562152764,1.3620757886596708,1.240707646621925,1.015908664402137,1.026123974400652,1.0431673637713805,0.8085259509574417,0.908049264429866,1.0629473236486495,0.8286607650877852,1.0234767592372318,0.8749817856641345,1.0541486196480376,1.142352879986546,1.0476832929815905,0.9056792708748493,1.1377008136866262,1.114672073756054,1.1150394486343072,0.9399458610433445,1.0104900962988341,0.8856273264561922,1.1277294210815165,0.9301370672379414,1.1194165232217872,1.0501657747853732,1.111903972915166,0.9233867176265366,1.0564035693078047,0.8328525140714201,0.8904242715696726,1.0690593034943534,0.961254650910716,0.9795921074602361,1.045529988251264,1.02625093567259,0.8397030292967729,0.7901500134619205,0.8316206788190437,0.9668296652931709,5.5,0.1361085603509846,3.7777777777777795,3.125,1.9066666666666672,1.215277777777778,0.5877551020408164,0.42013888888888895,0.2705971277399848,0.21250000000000005,5304.247504852962,5816.750633419171,2489.175509754481,2298.6564148393018,15.272469781728073,0.4572629666120457,8.288934941842273,0.8425129270388099,1.0,0.3125,1.8244270352107592,4.070656113151927,4.898153434632011,5.183867720346297,5.183867720346297,5.183867720346297,0.20370370370370366,0.009073904023398973,0.0994152046783626,0.07621951219512196,0.05017543859649123,0.03797743055555556,0.023510204081632655,0.017505787037037035,0.011765092510434123,0.01118421052631579,0.5405304879080537,19.753086419753085,7.935,3.84,147.22528930493303,1.0,4.158309582700133,129.89843702252242,,105.38285863414475,106.92292262153703,106.25083653584237,105.39959791354207,141.77607012238946,108.06408532133479,108.83298819848369,132.6896731904332,-0.0023376894334540673,-0.1675762724286734,-0.6325473701336927,0.36248340437425747,0.20568528210732154,0.06251469253356416,0.0015060541077422658,0.1558707144783317,-0.160520897452094,-0.11462381868553102,-0.168710313476363,0.11094952170630862,-0.024450611479640685,0.15356820625940606,0.030988463816801662,-0.07706400766533646,0.09494418361695212,-0.11626156808504212,-0.020313882179358044,-0.08860685956084358,0.14846696933452633,0.12907145232213943,0.1391406554880483,-0.028544889574262305,-0.037570140665663734,0.05479224697160311,0.2230371632836987,-0.12870261741979847,-0.07061779369341276,-0.024650950993869516,-0.042005629856610265,-0.0697535261696034,0.037928163598138324,-0.0218408601332745,0.04815824702176883,-0.141227171209289,-0.09361511531533942,-0.14889615968073802,-0.22873284669373317,-0.15857244603657036,-0.09255517804876896,-0.15154010627443346,-0.09174458413469772,-0.16531535372645112,-0.13066579067508421,-0.11788742481608679,-0.1717885685256861,-0.08231171435961089,0.0351677078091825,-0.07861502254184449,0.023007563460367836,-0.03974318397612694,-0.1525040682863126,-0.1274992223783372,0.025295559701718404,-0.07349194317557668,-0.06957911635130963,-0.05694125162811199,-0.01103497449055866,-0.09287839891699386,0.010980160020184477,0.0049794517330619585,0.15622048092510202,0.05031907477253633,-0.011627238206572412,0.10298743200492935,0.01475251462934149,0.07828664464101585,0.0003032380459917901,-0.06439922046366309,-0.016782615654543337,0.07827975067078054,-0.09336986003138638,-0.09459755140776212,-0.11544401410447502,-0.00016709554523276752,-0.015626367525962675,0.11248116653900561,-0.08906539259605514,0.08094103116236172,-0.1023881483462166,-0.03026095727088092,-0.09726082826208511,0.0429944481240707,-0.00036912805533712364,0.09107724694689989,-0.009512197710168969,-0.08018683852657715,0.027966960284208798,0.009972561428540484,0.004020806384460319,0.02358474405515951,0.08881009295544635,0.16408837390531433,0.08494912244188478,0.03623717942728106,2.971004096610005,11.78705133716806,12.573842458373845,20.677382843088175,40.29273376431888,45.44376817258349,46.445625315440616,46.445625315440616,46.445625315440616,50.17730964430458,33.34533310826447,6.042818496238322,8.745149663362072,0.0,16.831976536040088,6884.140405473268,6308.538078371527,982.3484791793662,94.0,40.0,55.0,70.0,87.0,93.0,100.0,95.0,93.0,363.08889164400046,27.0,4.90527477843843,5.783825182329737,6.695798917058491,7.599401333415815,8.518192691749322,9.43276366396591,10.356503962502515,11.278025577957417,12.205747592706228,0.753968253968254,1.014761904761905,1.1278370131388702,0.7203476178582331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6881306102081552,1.0,1.030147747372802,0.6581066025025928,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,21.263510870849927,28.9041056176044,0.0,5.907179729351506,5.907179729351506,14.48898409899412,4.794537184071822,0.0,11.761884949391115,12.13273413692322,30.193027358380107,5.752853606746789,0.0,269.0927473076704,-831.1611285407691,-63.7994495221522,-19.789550679542124,-51.94757053379807,311.3338477031241,961.6334694966804,36.14789463601823,22.896034988016197,36.985902672949244,0.46153846153846156,0.5947187521935708,0.1644568423975386,182.8877745885664,0.11399902781361201,83.30427939044893,0.40528124780642893,7.0,0.14814814814814814,0.33833821197243213,0.7548992008438263,0.9083577709911413,0.9613432062526753,0.9613432062526753,0.9613432062526753,0.15050000000000108,,2.303571428571429,1.9609845219659925,1.4545191904946573,2.2991871333729694,-6.541878845206732,1.7887851897184825,1.7346190845905671,-2.7953673998489466,90.39370000000002,24.596666341896878,0.0,10.216698334856808,5.733667477162185,24.381291670955285,5.752853606746789,41.09906360866854,0.0,5.749511833283905,4.007333185232471,0.0,5.407171771460119,0.0,7.018401799069201,0.0,8.726967774991493,0.0,10.490301522301456,31.666666666666668,5.890617954175855,0.0,0.0,0.0,0.0,0.0,0.5558559503593299,0.0,42.620000000000005,0.0,36.00761335635039,0.0,0.0,0.0,0.0,0.0,-1.537851589080845,47.369154551832544,11.050456081168516,0.0,5.749511833283905,50.06519651605024,14.383611552215466,0.0,18.52902952053558,35.53561211697154,0.0,0.0,0.0,30.25459995004579,28.90148562874252,31.267157236701962,259.7968740450448,,210.8679362663196,213.68896648131675,212.38531153644516,210.9025011436443,285.7317070913998,215.9850678274921,217.52720687020013,266.0502345568301,31.267157236701962,259.7968740450447,,208.93293626631967,211.8848607211081,211.0606299745196,208.9711839516109,290.0940190899857,214.33938545295115,215.93135731237692,268.1747137807153,5.136700724327396,197.20111982870787,,163.64092844862486,165.5853668356136,163.85064411986494,163.66622619706084,219.22305067617015,167.44890545655812,168.7823553379471,206.93189893083843,1.2506862894680786,10.391874961801792,,8.434717450652784,8.54755865925267,8.495412461457807,8.436100045745771,11.429268283655993,8.639402713099683,8.701088274808006,10.642009382273205,2.5683503621636987,129.89843702252242,,105.38285863414475,106.92292262153703,106.25083653584237,105.39959791354207,141.77607012238946,108.06408532133479,108.83298819848369,132.6896731904332,42.0,0.0,1.673209421525203,0.0,0.0,5.89793275489208,18.565451612163823,43.266205389657685,0.4786370768080723,2.5985173374905517,0.0,1.4008415187572834,-2.2419946775006308,1.2111692840588941,0.0,0.0,0.0,27.640477305108895,345.1905803247828,76.62593547885189,170.96755675238094,205.72244425454446,217.72244425454446,217.72244425454446,217.72244425454446,779.0,128.77553370012387,235.23601468601157,60.65017605305474,158.26000000000002,132.96,0.8571428571428571,7.535263332960478,5.754887502163468,3.7375889928947528,4.926483361316057,,4.930202160785372,4.934873985378982,4.932107866496071,4.93019556958521,4.924392497568087,4.9351771458153895,4.935416186099454,4.934958606788266,0.1495035597157901,0.1970593344526423,,0.19720808643141488,0.19739495941515928,0.19728431465984284,0.19720782278340843,0.19697569990272348,0.19740708583261557,0.19741664744397816,0.19739834427153063,2.234731481115448,2.5109161512645057,,2.511670725332518,2.512617869555967,2.5120571876783875,2.5116693884290093,2.5104916481422817,2.5126792999239504,2.512727734759846,2.5126350170422076,249.26,504.6353866224502,146.0641862731274,,144.7085350277555,144.5011534991756,144.93129341560078,144.70955621681205,145.81842897309,144.47634894100668,144.432242315293,144.66520777698858,20.185415464898007,5.842567450925096,,5.78834140111022,5.780046139967023,5.797251736624031,5.788382248672482,5.8327371589235995,5.779053957640267,5.77728969261172,5.786608311079544,7.140126893688941,5.900336888980377,,5.891012348068947,5.889578222088037,5.8925505234846876,5.89101940491223,5.89865294245342,5.88940655088166,5.889101218140501,5.890712892764739,0.0,37.21878264040927,20.71792061674096,7.001584855707332,-1.6070106627286935,4.094671609588637,0.0,1.673209421525203,0.0,314.318074076967,156.18858706189124,-482.4280237442479,-37.030897249705866,-11.486381517720188,-30.151751484015495,180.70644513393356,558.1576403483748,20.981199400393024,13.289467627342258,21.46760155186057,1570.0,41.0,2.1393675840437263,0.9745033530146904,0.0,0.0,0.7026573033928828,0.23237635572670784,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.33239598128474673,0.1962517231400299,0.681441707735664,0.3817487224170892,1.1332575306299764,0.5580831806980777,18.300600429391718,14.11703946398661,11.807438208038285,8.584418502098968,11.232232415328644,7.0043517232828085,9.499054553776347,5.618067986980749,7.574890198778742,4.06962529326143,6.038689718311981,2.99278871014219,4.027298190205555,1.8274257458399266,2.716635922779779,1.1073331654282643,5.1911987829214326,2.305515647174395,7.810882156408645,3.1512569700655497,12.128137837105267,4.366474661108422,82.28382952100614,38.76279643980936,27.380198684110105,25.1475910011729,25.1475910011729,25.1475910011729,134.0,162.0,48.26548099999999,23.828518999999996,0.40476190476190477,129.09,9.972222222222221,5.416666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,6.0,6.0,42.0,0.0,1.0,44.0,6.0,4.0,7.0,37.0,10.0,27.0,34.0,0.0,0.0,0.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,6.0,4.0,2.0,25.0,9.0,0.0,3.0,5.0,0.0,3.0,4.0,1.0,0.0,0.0,0.0,1.0,3.5553480614894135,5.7698822763607245,4.102643365036796,4.566948973167894,4.98275009060672,5.36392952987551,5.365391732212357,5.548102848808668,5.546884970202405,5.553686065156984 +6013,C[C@]12CC[C@H]3[C@@H](CCC4=CC(=O)CC[C@@]43C)[C@@H]1CC[C@@H]2O,0,17.142857142857142,5.689183673469388,3.142857142857143,4.163265306122449,162.40182844885658,66.96743046938776,1.361727945628,5.770095918367346,3.2406462585034017,7.307963836734693,190.81525573942906,20.346153846153847,5.984615384615386,4.096153846153846,4.096153846153846,142.6087606875856,75.02225015384614,1.8199027760769229,6.146865384615383,2.2510683760683756,7.453968307692308,251.9756368320455,16.849056603773583,5.803867924528302,3.7547169811320753,2.9150943396226414,148.93943078223054,61.111515613207544,1.5814387997536414,5.940787735849056,2.009958071278826,7.336793622641509,212.42924220240835,13.541666666666666,5.745119047619047,3.017857142857143,1.8154761904761905,153.2393921406683,46.76750783333333,1.3758256242912084,5.859327380952381,2.056795634920635,7.323329904761905,176.8756978439263,9.838709677419354,5.609861751152073,2.3548387096774195,1.0921658986175116,158.43685639415668,31.275269612903223,1.1654364231672762,5.700935483870967,1.885336661546339,7.244495225806451,139.72211765077677,7.381578947368421,5.392938596491228,1.986842105263158,0.8421052631578947,165.60568039454472,22.823453179824558,0.9564396552181973,5.4594736842105265,1.6621588693957114,7.093468192982456,108.17089330683025,7.451807228915663,5.4512650602409645,1.9337349397590362,0.9156626506024096,167.61850584489227,23.327397271084333,0.9206464195606685,5.506551204819277,1.8297356091030792,7.163751397590361,105.58355654262964,8.314814814814815,5.551203703703703,1.9166666666666667,1.1018518518518519,165.0316347177167,26.105396157407405,0.9611630445709073,5.613703703703704,2.087962962962963,7.237696407407407,112.26597897578743,7.063291139240507,5.5983544303797474,1.620253164556962,1.0759493670886076,170.67452674627927,21.314670569620255,0.8082233712944555,5.631892405063291,2.2950070323488045,7.327677113924052,92.42926674131446,6.745522698875467,0.07518533944189919,0.007471350740240631,0.7371928363182007,2.6638900458142447,1.2993171640812196,32.31835018575593,0.23534842306506124,0.0755416076634735,1.1901001897357582,0.04460883298625571,52.3739609125814,0.35887290552013573,-0.0022732515298112444,-0.003126588207763891,0.3275638355813283,0.8624050876237466,0.1594289139650843,1.7899861109473592,0.02796058670830135,-0.0016435307403965993,-0.05855911176610879,-0.001649909909332685,5.180093353803361,0.5683009437891444,0.0023348761915239955,3.4401718069718986e-05,-0.058332612983583845,-0.009866172113820558,0.10717658529846215,2.743597533535553,0.020097752670925267,0.0031258355402230317,0.038146612129641974,0.00059517163446047,4.750592526847936,-0.6861203665139526,-0.004071393863667894,0.00023325196372951394,-0.1712307371928363,-0.5335450506733306,-0.13698224475620732,-3.3086516596383455,-0.02527840572986311,-0.0047453977509370904,-0.016683104647754785,-0.0017777518395113252,-5.765896103816006,-1.4883986510996763,-0.009440018271956566,-0.0006094195778409272,-0.07124719538901801,-0.36529134366057153,-0.23877053184621366,-7.150551318926253,-0.04540235778437591,-0.011151021751689466,-0.08342952607859035,-0.003750402439843608,-11.291003505809236,0.2987844976873671,0.0038327414746779135,0.0002614917635781464,0.018356751938154406,0.1825116727679257,-0.019226253759893754,1.3977467552573133,-0.0019343639985530646,0.00423127096166069,0.029143355635606577,0.0016032253739304838,0.7480080513553052,0.6000637284665525,0.0005080463461509257,-5.2442809158246134e-05,0.004016900588610158,0.10621076559465688,0.12824263216576662,2.9136734536588675,0.02394337354228561,0.0016150926069960604,-0.04757942641034781,-0.0007577461900914603,5.503012536908545,-0.1272309377265646,0.0005591805883350974,0.0004309879775725396,-0.00042034954571399036,0.03886883551606584,-0.128135668491992,-0.6621959314097517,-0.021326577441883963,0.0008265140296481332,-0.030343848927830132,-0.0003244097058324418,-3.2339772664100033,0.23613578730381313,-0.004748759746730004,-0.0005647223867867983,0.0796503566551911,0.14184490639448752,0.06335995261738359,1.1787002761402168,0.012271321775007516,-0.0034691716004407514,-0.13313816441930246,-0.004054886202478938,2.8960487659601646,,,0.4841269841269841,0.7142857142857143,0.11904761904761904,0.0,0.5952380952380952,-0.47619047619047616,1.457186563023054,0.02214536733573685,0.03852631971668923,0.27934437681122387,0.06589715982998898,0.40787240437585015,1.7365309398342779,0.47376956420583916,2.0721425234379716,1.9034602471758186,0.0,0.16868227626215268,0.0,0.16868227626215268,5.88181490073471,840.0,278.77,154.0,204.0,7957.689593993972,3281.4040930000006,66.724669335772,282.7347,158.79166666666669,358.09022799999997,9349.947531232025,1058.0,311.20000000000005,213.0,213.0,7415.655555754451,3901.1570079999997,94.63494435599999,319.63699999999994,117.05555555555554,387.606352,13102.733115266366,1786.0,615.21,398.0,309.0,15787.579662916438,6477.8206549999995,167.632512773886,629.7235,213.05555555555554,777.700124,22517.499673455284,2275.0,965.18,507.0,305.0,25744.217879632273,7856.941316,231.138704880923,984.367,345.54166666666663,1230.319424,29715.11723777962,2135.0,1217.34,511.0,237.0,34380.797837532,6786.733506,252.89970382729896,1237.1029999999998,409.11805555555554,1572.055464,30319.69953021856,1683.0,1229.59,453.0,192.0,37758.09512995619,5203.747324999999,218.06824138974898,1244.76,378.97222222222223,1617.310748,24662.963673957296,1237.0,904.9100000000001,321.0,152.0,27824.67197025212,3872.3479469999993,152.82730564707097,914.0875,303.73611111111114,1189.182732,17526.87038607652,898.0,599.53,207.0,119.0,17823.416549513404,2819.382785,103.80560881365798,606.2800000000001,225.5,781.671212,12124.725729385043,558.0,442.27000000000004,128.0,85.0,13483.287612956063,1683.858975,63.84964633226199,444.91949999999997,181.30555555555557,578.8864920000001,7301.912072563842,330.5306122448979,3.68408163265306,0.3660961862717909,36.12244897959183,130.53061224489798,63.66654103997976,1583.5991591020406,11.532072730188,3.701538775510201,58.314909297052154,2.18583281632653,2566.324084716489,18.661391087047058,-0.1182090795501847,-0.16258258680372234,17.033319450229072,44.84506455643482,8.290303526184383,93.07927776926267,1.4539505088316702,-0.08546359850062317,-3.045073811837657,-0.08579531528529963,269.36485439777476,60.239900041649314,0.24749687630154352,0.003646582115390213,-6.183256976259887,-1.0458142440649791,11.360718041636988,290.8213385547686,2.130361783118078,0.33133856726364136,4.04354088574205,0.06308819325280982,503.56280784588125,-115.26822157434404,-0.6839941690962061,0.03918632990655834,-28.766763848396497,-89.63556851311954,-23.013017119042832,-555.853478819242,-4.2467721626170025,-0.7972268221574312,-2.802761580822804,-0.29866230903790264,-968.670545441089,-322.98250728862973,-2.048483965014575,-0.13224404839148118,-15.46064139941691,-79.26822157434403,-51.81320541062836,-1551.6696362069968,-9.852311639209573,-2.4197717201166142,-18.104207159054106,-0.8138373294460629,-2450.1477607606043,68.1228654727197,0.8738650562265643,0.05962012209581738,4.185339441899204,41.61266139108706,-4.383585857255776,318.6862601986674,-0.44103499167009874,0.9647297792586372,6.6446850849183,0.3655353852561503,170.5458357090096,99.61057892544773,0.08433569346105366,-0.008705506320268858,0.6668054977092863,17.63098708871304,21.288276939517257,483.669793307372,3.974600008019411,0.26810537276134605,-7.898184784117737,-0.1257858675551824,913.5000811268185,-13.740941274468979,0.060391503540190516,0.046546701577834276,-0.04539775093711096,4.197834235735111,-13.838652197135136,-71.51716059225319,-2.303270363723468,0.08926351520199839,-3.2771356842056543,-0.03503624822990371,-349.26954477228037,18.654727197001236,-0.37515201999167036,-0.044613068556157064,6.292378175760097,11.205747605164515,5.0054362567733035,93.11732181507713,0.9694344202255938,-0.27406455643481936,-10.517914989124895,-0.32033600999583606,228.78785251085299,0.706098221229366,0.6380508324478255,0.4145483686801093,0.3695655041186822,0.2579326607121079,0.22067983172325434,0.16210393121683464,0.13641340601617444,0.09791414677881338,0.08268074622882234,0.061645823585462674,0.0488066445260435,0.03839349167102609,0.02999952660095876,0.02384586478663728,0.017986959646733757,8.02204179295515,5.715381688433529,3.5432817687653277,2.214542530514325,0.34259046024758094,-0.38595925651784313,4.030645916776533,0.977885861539682,6.021895977565091,0.9950199632636292,13.636798156216193,10.97581663588151,16.010197631448705,11.7268329799265,1.9672910583147025,0.7527803577838889,3.4883593409929605,2.2643478692443657,7.008269774363367,1.0915205339891676,3.7014502831142644,2.4603825930105585,20.874946391674733,14.702558953605193,0.20498715139823603,0.4562038403475033,0.7157591992525018,0.870993487886616,0.885178413835305,0.885178413835305,1.6231329398900707,507.69574308017087,0.0,0.0,2.0,0.0,2.0,9.0,1.0,3.0,2.0,4.435031848429409,2.9893080648603836,1.4955961737784547,0.6022403062107538,0.5206076531495292,0.5206076531495292,218.68980640566195,596.9116272122342,40.57341883928282,12.181869943106818,22.988041039336977,,10.0,349.0,0.0,9.901064578912528,16.933947326541862,11.701150992526333,37.51909858402682,31.256391021773307,0.0,6.076020106833881,13.847474399381248,0.0,10.166666666666666,15.0,2.5,0.0,12.5,0.0,0.0158730158730159,-10.0,0.055352667382742526,0.007949846605308786,-0.04740282077743374,0.021500721500721465,0.08771663244353156,0.0,0.5027210884353744,0.7730158730158727,0.4473684210526319,0.49477124183006566,0.7515151515151512,30.600917823484135,0.4650527140504739,0.8090527140504739,5.866231913035701,1.3838403564297685,8.565320491892853,36.467149736519836,9.949160848322622,0.6262833675564684,0.16393442622950818,0.09836065573770493,0.29508196721311475,0.8421052631578947,0.26842236646779094,-0.3393335546989838,-0.053312139313093775,-0.006925174585693547,-0.018851864149943543,0.7315776335322091,0.9248440887825323,0.03261684360148436,0.018874369158827183,0.029833680283307486,-3.483713862379734,1.0221327203298063,0.766708142289795,1.2299549679762742,1.009387222946545,0.6753499783518544,1.1506466315671906,1.0274513233607154,1.1485793495659946,0.8016582861164868,0.7004410079433775,0.7215212944452949,1.120570404584218,0.9350317106017328,0.6373160973121672,0.6460307336111696,1.7989126958746406,1.1049240681086054,1.0900513696338907,0.9413158393841133,1.0870298345638711,0.6774948844241132,0.5314616577196073,0.5861690853350732,1.052341460567352,1.1103358854038037,0.8813981830268113,0.7568538257862631,1.5898305084745765,1.232332707942464,1.203394595663168,1.1147435011275169,1.2041322262649354,0.9150866104223613,0.7948428804044038,0.8344564470303981,1.1876715310746302,1.1898756363578424,0.9570631080105498,0.9287582731310253,0.9797703663203938,0.9727047146401984,1.197257303578092,1.1929405126557866,1.2082217884678756,1.0006370320092128,0.8056132340616687,0.8839317230990389,1.2255645290983377,0.856676762293484,0.6337364572521486,0.6384081049496326,0.7197740112994351,0.706428359830157,0.9227144879820716,0.8605695798172343,0.9263106803263569,0.6691669380336668,0.5600014326042826,0.5808693871450142,0.9198837689037753,0.8450814867273493,0.962264302056442,0.855400297216933,0.8485195017357566,0.9071407581545694,0.7829663437855675,0.8425901700273088,0.7842842253574487,0.9465669359047921,1.032580864200965,0.9820764092018354,0.7983668449072361,0.9849482725501498,1.0718787699731636,1.042631742627388,0.781293157564344,0.9703981655201166,1.0129466986716111,0.9843034550874873,1.0052522706316176,1.0523251162444789,1.1379520040613196,1.1081367978766483,0.986763353379006,0.9724295106464796,1.6376992485842585,1.7469143127386308,0.47938210684402494,1.0543140095471062,0.7843656331333269,0.9609592214935944,0.7725810379545055,1.5310115813648577,1.807623362116623,1.7980770850258156,0.7882448745549309,6.5,0.0,5.1111111111111125,2.791666666666667,2.075555555555556,0.8680555555555557,0.5796371882086168,0.23093820861678005,0.13680240614764422,0.06031635802469136,3810.888920496979,4650.407812180345,1928.8226110575392,1646.3657413362143,10.20895387453303,0.4537858052089177,5.576275520237359,0.8307836184712906,1.0,0.8421052631578947,1.1796779956857992,2.6254017792548248,4.119113670336754,5.012469537904455,5.094102190965679,5.094102190965679,0.27083333333333326,0.0,0.13105413105413113,0.0634469696969697,0.06104575163398693,0.03472222222222223,0.03050722043203246,0.017764477585906154,0.019543200878234888,0.01507908950617284,0.6439963963429896,14.583333333333334,4.746877054569362,1.9262782401902496,127.55103729290711,1.0,4.029965320952855,78.93999972440085,,74.13796298365072,74.01741889242348,74.39888653272548,74.14044644453534,78.91672424406008,74.10848715435965,74.14305305027226,76.40111873921077,0.053201645230541245,-0.030235303141351647,-0.4184769684180551,0.44433941764450247,0.3237389955260499,0.12270207642321153,0.05538606088055454,0.11880507353376975,-0.02175662911118177,-0.04920519488288701,-0.036986170650127374,0.09890589261426255,0.08424861484550111,0.031054939817466844,0.004604484418651587,-0.0791280247308389,-0.0037036709264044957,0.08248685406557332,0.08489287100876743,0.08539573968324111,0.04137899148437718,0.032053277916132245,0.013342013108566333,0.09070523680225867,-0.10171492961224995,-0.054151432897554926,0.031219517305381056,-0.23227401129943503,-0.20028794037940378,-0.10542633357196583,-0.10237687383858501,-0.10740843469715956,-0.06281833148265951,-0.014018235432311786,-0.03985201406320275,-0.1100908925609044,-0.22064986177391477,-0.12555663566899913,-0.08156752360166931,-0.09664661928193914,-0.13712703504206256,-0.18376616460312398,-0.2212535998226111,-0.1929154960678219,-0.14761430285367494,-0.07010294326321759,-0.08407309021061216,-0.21558429626232228,0.0442937502437249,0.05097724507368531,0.03499926220432324,0.024900882148874995,0.06851321549652745,-0.014797198321850178,0.043249322667261635,-0.008219150030243953,0.05601245581786353,0.024488153087411382,0.03593963945267182,0.014282059984040979,0.08895733588837941,0.006757252809153407,-0.007019187156585972,0.005448914301272877,0.03987055162488604,0.09870002160438653,0.09015538964433423,0.10173585711966529,0.021380172555911906,-0.03997934528597296,-0.016986460738054435,0.10507153633260144,-0.018861538742990965,0.007437362024111285,0.05768541627302304,-0.0005702029713329328,0.01459100595279457,-0.09861769861448727,-0.02048978142769211,-0.0906170398940311,0.010941176064588524,-0.02549688605172601,-0.007272319944626094,-0.06174780769031217,0.03500629941445143,-0.0631607143358007,-0.07558504565248267,0.10804548380175925,0.05324728271625461,0.04876403881125285,0.03647154849691925,0.05214108348461359,-0.045923984248460656,-0.11187139164213018,-0.09089872859324243,0.05529558420822948,10.5026299094428,19.49026564955579,5.026097724552823,9.844087751273317,24.588252847948894,31.093467119035274,32.44307187435984,32.525357588645555,32.525357588645555,43.5149929921974,39.97266519069219,0.0,3.5423278015052064,0.0,3.5423278015052064,2803.8356656322317,2609.1370999828055,732.2619738805824,190.0,39.0,58.0,79.0,106.0,127.0,154.0,180.0,199.0,288.2089301360008,24.0,4.844187086458591,5.771441123130016,6.727431724850855,7.67368812926773,8.632127729508337,9.58417720462617,10.543787600548086,11.498268575626595,12.45846038649378,0.5374149659863945,0.9477551020408165,1.127200554884263,0.4900796718654159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6355151411462789,0.9358143257302922,0.9814498268353226,0.5717385196293052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,8.0,0.0,0.0,0.0,4.0,0.0,2.0,0.0,0.0,5.106527394840706,0.0,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,0.0,19.420578929450514,79.6054705445937,6.4208216229260096,6.103966387748303,126.74202266953033,-160.2244315484477,-25.17259816421474,-3.269886358131586,-8.901357308247094,345.4318290751923,436.6871956637865,15.400820675068081,8.911983584975232,14.086683731089884,0.5,0.8004953064972513,0.31051919596013844,66.48635119618422,0.16649071272392224,140.54290532134155,0.19950469350274863,5.0,0.0,0.21010489026823403,0.46759349140837886,0.7336289469444279,0.8927388372807967,0.9072779061423487,0.9072779061423487,3.879200000000003,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,82.71680000000005,9.901064578912528,0.0,0.0,28.583699077277743,71.31801377053763,0.0,11.64912463690315,0.0,0.0,3.8918202981106265,0.0,5.3230099791384085,2.3978952727983707,6.974478911025045,4.844187086458591,8.727940222393896,7.034387929915503,10.53340202567921,26.333333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.440000000000005,0.0,11.787347748902132,0.0,0.0,0.0,1.9831529509952128,0.0,1.7916757868270772,55.23282718932888,0.0,0.0,0.0,16.99373872895395,4.794537184071822,28.583699077277743,65.21404738278933,11.64912463690315,0.0,0.0,0.0,24.01390392140538,31.140241916167668,27.39545618427187,157.87999944880187,,148.2283069196824,147.9804160161395,148.76479512528368,148.2334137311471,158.86420493034797,148.16769413153216,148.23877375764567,153.18223221942915,27.39545618427187,157.87999944880187,,147.77592596730148,147.46340921341846,148.45150469369435,147.7823617308734,159.9980370167985,147.69953244825422,147.78911650010667,153.60022643453766,5.180347573426214,116.22242566375616,,110.05289802159817,109.91385380090847,110.35395852620726,110.05576290040061,115.59574023382888,110.01889606027972,110.05876984920513,112.66936185624377,1.3045455325843747,7.518095211847708,,7.058490805699162,7.046686476959023,7.084037863108747,7.05873398719748,7.56496213954038,7.055604482453912,7.058989226554556,7.294392010449007,2.6090834442881627,78.93999972440085,,74.13796298365072,74.01741889242348,74.39888653272548,74.14044644453534,78.91672424406008,74.10848715435965,74.14305305027226,76.40111873921077,45.85490196078432,0.0,4.7636699787939865,0.0,0.0,0.0,10.449210893073175,48.09104151493081,8.8053349920215,0.0,0.0,0.0,2.146860066557486,0.0,0.43941424949609464,0.0,0.0,28.015187461835954,377.97295217237945,57.80422178860416,128.6446871834864,201.83656984650094,245.61100735731827,249.61100735731827,249.61100735731827,1177.0,122.73356956051016,94.20089957234316,70.72712172551965,37.3,37.3,1.0,7.4133673356952405,5.584962500721156,4.183168931682151,4.515625257109089,,4.529585167160485,4.530098242614729,4.52844988905636,4.529574518897334,4.505427116415386,4.529711312069533,4.529563339292857,4.518849574818335,0.19919852055629292,0.21502977414805186,,0.21569453176954692,0.21571896393403472,0.21564047090744573,0.21569402470939686,0.21454414840073266,0.21570053866997774,0.21569349234727891,0.21518331308658736,2.173006421667341,2.249481006419789,,2.252567705452853,2.252680971100577,2.2523170378184214,2.252565354624847,2.24722004071073,2.2525955541736327,2.252562886486123,2.250194787332598,238.26999999999987,126.88472558067286,118.89835622043374,,117.75052391224071,117.69964469997835,117.86041809911308,117.75157143524139,119.68660928009592,117.73808883914302,117.75267086985025,118.68969161622105,6.042129789555851,5.661826486687321,,5.607167805344796,5.604744985713255,5.612400861862527,5.607217687392447,5.699362346671235,5.60657565900681,5.60727004142144,5.651890076962907,5.585216346410636,5.520206323439327,,5.5105055269768615,5.51007334029928,5.511438371554481,5.510514423059074,5.526814082030454,5.510399916153782,5.510523759915158,5.518449798565594,0.0,11.787347748902132,10.449210893073175,1.88584801744772,2.5743902615058367,0.0,10.706199766943815,4.7636699787939865,0.0,300.06187841756093,59.844269021789096,-75.65378698783921,-11.885842633619408,-1.5439548364865145,-4.202988165991067,163.1038772496582,206.19227518417142,7.271864818176656,4.208005616003497,6.651363715618431,802.0,44.0,2.394454045664196,1.9685340905205253,0.23570226039551584,0.21991320281372367,1.0850425217611719,0.8069210126191044,0.23848394329714995,0.16871365539079863,0.0,0.0,0.0,0.0,0.08333333333333333,0.08333333333333333,0.42885536416183107,0.3535028014131647,0.9743741383175338,0.7435179332799678,14.828062645816686,13.399067481404334,9.949160848322624,8.869572098848373,10.05937376777221,8.60651343720692,9.402028010576409,7.911977548938117,7.735217595526257,6.531778952076965,6.534457300059043,5.17350431976061,4.875973442220314,3.8099398783217624,3.6722631771421415,2.7699917855969987,6.4536994322817804,5.180983544035265,10.476640483542331,8.532492255718886,17.000376012042683,13.219358144976695,76.34872453346088,41.11793453009484,26.236541485796415,20.504579280517746,20.077687877396894,20.077687877396894,126.0,160.0,52.004203999999966,28.957795999999995,0.3469387755102041,156.02,7.041666666666666,4.3055555555555545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,49.0,0.0,0.0,52.0,0.0,2.0,2.0,50.0,2.0,24.0,50.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,2.0,1.0,0.0,21.0,2.0,0.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,3.295836866004329,5.755742213586912,3.8066624897703196,4.248495242049359,4.584967478670572,4.9344739331306915,5.123963979403259,5.342334251964811,5.556828061699537,5.752572638825633 +1548887,CC1=C(CC(=O)O)c2cc(F)ccc2/C1=C\c1ccc([S+](C)[O-])cc1,0,30.142857142857142,6.3522285714285704,3.5476190476190474,9.078777189888301,158.25535311094842,120.45815321785169,1.7615781043436427,6.4363714285714275,7.081494162636519,7.8529334523809515,248.13703008700645,30.227272727272727,6.26,4.159090909090909,7.4015151515151505,140.34308875111472,116.70404545080005,2.103160157863637,6.445606818181819,3.2819241800723287,7.722741045454541,296.72209664481585,25.136986301369863,6.156630136986301,4.0,6.538812785388128,145.48418573590587,95.53019929685478,1.8746903681362055,6.315076712328768,3.7255482270702953,7.654200328767125,261.17542364727666,21.725274725274726,6.270285714285715,3.5164835164835164,5.113553113553114,149.45849519848363,80.02731677496263,1.7193222479620542,6.401230769230772,3.6385158051824713,7.778730417582415,237.55198633662098,18.45098039215686,6.025843137254903,3.1862745098039214,4.649237472766885,149.787262561451,66.65350068721565,1.5712460572249318,6.1571862745098045,3.17670593614675,7.552243549019606,211.12231943178108,17.201834862385322,5.970825688073396,2.7247706422018347,4.299694189602446,155.49177504104884,63.17535338995962,1.378471975720431,6.074862385321101,3.2497262808170047,7.526100678899082,187.93361222043643,16.28846153846154,6.12719230769231,2.625,3.732905982905983,158.4289910198703,58.17987198419997,1.314813297281558,6.213192307692308,3.5742257570961273,7.696129596153846,177.52169197142268,16.752808988764045,6.230449438202247,2.460674157303371,4.072409488139825,161.89360443073917,60.287716405968546,1.2817120887239666,6.296751685393258,4.343906536582359,7.789266831460675,170.0267741429738,18.22222222222222,5.947361111111112,2.5416666666666665,3.592592592592593,160.3483243644754,67.32867220966665,1.3223892645115136,6.0384791666666695,3.248352004267643,7.570691388888889,169.10405287318088,10.530612244897961,0.16871746031746024,0.024366452450630488,0.6899092970521542,4.532179950169367,1.9955368853514184,48.44619838168786,0.3102140003145266,0.1529936507936507,3.184100170717975,0.10559138378684803,51.97981507843639,1.1252319109461963,-0.007907070707070708,-0.008002698064257512,0.2548958977530406,0.9152039416589678,0.13124579587877297,4.916606245358091,0.022200467693964263,-0.005451767676767681,-0.3695455495980424,0.00010922497938569216,3.7257154219666844,-0.08247134470226467,0.022625266362252656,0.000965577371187642,0.003176156307271775,0.3136883142681506,0.049985721866553624,0.07403697640688617,0.0022572039511166,0.02048188736681887,0.43624807660593723,0.01224998411921846,4.7554393937028,-2.364207221350079,-0.033095482295482266,-0.002577625131101819,-0.09048491191348335,-1.2876114675056471,0.08011751202208892,-10.951487622101988,-0.004213728702021379,-0.033832478632478624,-0.4583527185514215,-0.018539611154718288,-5.099899524029974,-1.8373349339735896,-0.0050549019607843025,-0.000179933934960292,-0.10470855008670131,-0.246102556248837,-0.3468743490896964,-8.677981133614267,-0.07018178510220262,-0.006756209150326778,-0.08224955519868765,-0.0024549437775110024,-12.983688658011559,1.304250140423142,0.012103160040774713,0.0007397238378191982,-0.07828850194512052,0.40413382100678835,-0.22970418995516914,6.107507020748939,-0.011750905534230452,0.01440163098878695,0.030726489780148334,0.004067261036218766,1.3907350287656068,-0.6350078492935634,-0.01694658119658119,-0.0014769113965379154,-0.027592447235304383,-0.4569018332245844,-0.1397815394446241,-2.962267099637661,-0.013300523170874419,-0.015311965811965799,-0.23524342930150427,-0.01154385677219605,-3.1860115272414458,0.1403347855996333,0.014714107365792756,0.00041100983166870856,0.07600830594410049,0.08724418236337855,0.2567917029590807,0.37779260323615665,0.022399519361142123,0.010181897627965057,0.23001269218254158,0.01177791289586996,-1.1349385942856733,2.836451247165534,0.009753703703703698,0.002372795045166463,-0.024234693877551013,0.5215711112977426,0.004821634353645891,13.178744429690896,0.0482940320260216,0.013775462962962955,0.10369624736086876,0.0013436367157974257,9.330300712083918,,,0.48476190476190484,1.24,0.66,0.04,0.58,0.08,0.8615200222965155,0.02204529846675939,0.03236529846675939,0.9440038987840367,0.2399422405979677,0.23458100343019672,1.8055239210805523,0.4745232440281644,2.021339084153585,1.665046104302844,0.0,0.20462228977993185,0.07100120346276441,0.3562929798507413,8.478291514857153,1266.0,266.79359999999997,149.0,381.30864197530866,6646.724830659833,5059.242435149771,73.986280382433,270.32759999999996,297.42275483073377,329.823205,10421.755263654271,1330.0,275.44,183.0,325.66666666666663,6175.095905049047,5134.977999835202,92.53904694600004,283.60670000000005,144.40466392318245,339.8006059999998,13055.772252371897,1835.0,449.43399999999997,292.0,477.33333333333337,10620.345558721128,6973.704548670398,136.852396873943,461.0006000000001,271.96502057613156,558.7566240000001,19065.805926251196,1977.0,570.5960000000001,320.0,465.33333333333337,13600.72306306201,7282.485826521599,156.45832456454693,582.5120000000003,331.1049382716049,707.8644679999998,21617.23075663251,1882.0,614.6360000000001,325.0,474.22222222222223,15278.300781268,6798.657070095997,160.26709783694304,628.033,324.0240054869685,770.3288419999998,21534.47658204167,1875.0,650.8200000000002,297.0,468.66666666666663,16948.603479474325,6886.113519505599,150.25344535352696,662.16,354.2201646090535,820.344974,20484.76373202757,1694.0,637.2280000000002,273.0,388.22222222222223,16476.61506606651,6050.706686356797,136.74058291728204,646.172,371.71947873799724,800.397478,18462.255965027958,1491.0,554.51,219.0,362.44444444444446,14408.530794335786,5365.606760131201,114.07237589643302,560.4109,386.6076817558299,693.2447480000001,15132.382898724669,1312.0,428.2100000000001,183.0,258.6666666666667,11545.079354242227,4847.664399095998,95.21202704482899,434.7705000000002,233.88134430727027,545.08978,12175.491806869022,442.28571428571433,7.08613333333333,1.0233910029264806,28.976190476190478,190.35155790711343,83.81254918475958,2034.74033203089,13.028988013210117,6.42573333333333,133.73220717015494,4.434838119047617,2183.152233294328,49.51020408163264,-0.3479111111111111,-0.35211871482733054,11.215419501133786,40.268973432994585,5.774815018666011,216.330674795756,0.9768205785344276,-0.23987777777777797,-16.260004182313867,0.004805899092970455,163.9314785665341,-6.020408163265321,1.6516444444444438,0.07048714809669787,0.23185941043083957,22.899246941574994,3.6489576962584147,5.40469927770269,0.1647758884315118,1.4951777777777775,31.846109592233418,0.8942488407029476,347.1470757403044,-215.1428571428572,-3.0116888888888864,-0.23456388693026553,-8.234126984126984,-117.17264354301389,7.290693594010092,-996.5853736112808,-0.3834493118839455,-3.078755555555555,-41.710097388179356,-1.6871046150793643,-464.09085668672765,-187.40816326530614,-0.5155999999999988,-0.018353261365949784,-10.680272108843534,-25.102460737381374,-35.38118360714903,-885.1540756286553,-7.1585420804246676,-0.6891333333333314,-8.38945463026614,-0.25040426530612225,-1324.336243117179,142.16326530612247,1.3192444444444438,0.0806298983222926,-8.533446712018137,44.05058648973993,-25.037756705113438,665.7182652616343,-1.2808487032311193,1.5697777777777775,3.3491873860361685,0.44333145294784543,151.59011813545115,-66.04081632653059,-1.7624444444444438,-0.1535987852399432,-2.8696145124716557,-47.51779065535678,-14.537280102240906,-308.0757783623167,-1.3832544097709396,-1.592444444444443,-24.465316647356445,-1.2005611043083892,-331.3451988331104,12.489795918367363,1.3095555555555554,0.03657987501851506,6.7647392290249435,7.764732230340691,22.854461563358186,33.623541688017944,1.993557223141649,0.90618888888889,20.4711296042462,1.0482342477324265,-101.00953489142493,204.22448979591846,0.7022666666666663,0.17084124325198533,-1.7448979591836729,37.553120013437464,0.34715767346250415,948.8695989377445,3.4771703058735555,0.9918333333333327,7.466129809982551,0.09674184353741465,671.7816512700422,0.7254985489030075,0.5911576221274282,0.4393733741001523,0.35111574219289343,0.290329060202617,0.19131734058484431,0.17355187422139828,0.1049251131931568,0.10678611262655598,0.05268327515447688,0.06976666188550937,0.028106187610442503,0.04512563851089234,0.01584201077853738,0.02870839822147921,0.008115041104731196,16.003725263567844,5.678618506446065,4.10771547965684,2.1763173988389135,0.43579860054650377,-0.632177362298096,3.2842573862199136,0.9727029145250936,7.004492817523283,0.5253253353369365,17.42477134241195,10.331999251564751,32.06185704830594,11.689739597266117,2.923686599198574,0.5458596930254296,3.9886670805164797,2.227159248295196,8.002810903023548,0.39845861125454546,4.0099466444814205,2.4237150366557283,24.43602029847973,13.304120574904452,0.27350162858894883,0.6005559081494143,0.7771770801317425,0.8852525368281512,0.8935660334971056,0.8935660334971056,1.6384346340812384,895.6573271795393,0.0,1.0,1.0,0.0,10.0,1.0,6.0,0.0,0.0,3.8257218500277737,1.952380952380953,0.940708928674451,0.32166130962683237,0.2740422620077849,0.2740422620077849,17.862914166576786,1178.7927940935178,88.88372005958375,28.06649509746471,56.17991399494165,,12.0,500.0,17.145159761337137,13.737702105437005,12.238042463971905,11.136556021766264,27.168595519050303,12.13273413692322,24.454870388896232,25.132491443447723,0.0,5.106527394840706,12.11904761904762,31.0,16.5,1.0,14.5,0.0,0.015238095238095184,2.0,0.18489189102871156,0.08985847212448173,-0.09503341890422984,0.02104761904761898,0.14183273381294925,0.0,0.6257369614512471,0.8472380952380948,0.44084507042253557,0.5358784893267654,0.8261904761904758,21.538000557412886,0.5511324616689848,0.8091324616689848,23.600097469600918,5.998556014949193,5.864525085754918,45.138098027013804,11.863081100704111,0.5721672661870507,0.1886051080550098,0.0,0.4400785854616895,0.15,0.4849479406527788,-0.96339901521539,-0.10489779656169312,-0.022938071790842614,-0.04816995076076949,0.5150520593472213,1.0232039465758858,0.04489669014551632,0.024361998727997283,0.0465092702989039,-5.639177242045544,0.7689907798919425,0.5799624020280326,1.0485732844797848,0.7396354672443414,0.5032134171405084,0.827177405975707,0.7566090100829761,0.9402614987639905,0.5704904215625431,0.6609261903344805,0.5571777500484384,0.8390010331246318,0.9581143145375383,0.4541572994320634,0.6046905876551397,1.221125381299175,0.7448344562000742,0.8794576596129879,0.9334488044750634,1.0266607305501563,0.4646995854851882,0.4648681545510742,0.4749634362092886,0.867322328238907,1.071655734446432,1.0561707889070249,0.9549530612106646,1.243916313760192,1.2089915671317701,0.9322720450494183,1.0736146295000482,0.9491163969939999,1.0726550958223608,1.0566776816610148,1.0484336203040243,1.0190685273299722,0.9447246922024622,0.6523032556265649,0.6631608766144812,1.1721929527768378,0.8810771881238197,1.0442341294413915,0.9594064279731301,1.1087098774449156,0.6839809845462058,0.6555766892212979,0.629831958784463,1.2148809501995965,0.610631059905649,0.6447775679045122,0.6817602721223438,1.057970795986521,0.7864489257496949,0.9463214219050908,0.6314095619790934,0.8566957602154377,0.6467581515226336,0.6684571363455389,0.6595567584677907,0.9675638038991493,0.8913486384416615,1.097138162941563,0.8347849956191045,0.9455707603817709,1.0367478548404416,1.020563158430263,0.9102413486394463,0.9068830976397547,1.0998028609724684,0.9621507917795551,1.0977405778817586,1.0349732727735161,0.8759653630636122,1.124593287010512,0.8605770277338481,0.6677314819089121,0.9761909165700459,0.9964903178808086,0.9021127720925974,0.8226922568721824,1.132985710312258,0.9955658307985534,1.0643983943313406,0.9991325582819414,0.8233585450760837,0.8258798090793916,0.7715954453175012,0.9531292796494111,0.838979453119531,0.9334702529625675,0.8175885681225407,0.8800578599791041,0.8151697125792822,0.7922670665728903,0.844142900060365,0.8707845032743438,6.0,0.11549841852872156,3.1111111111111125,2.4236111111111107,1.6805555555555558,1.403611111111111,0.47682539682539693,0.38453089569161,0.34316735953640715,0.20500771604938278,5009.440145488465,5495.3498673028835,2508.3987104994553,2331.8220273367397,14.171025743810947,0.46387618320253066,7.597424409707122,0.8652407683984099,1.0,0.15,1.566595572750987,3.4399364703978077,4.45160849410431,5.070656113151928,5.118275160770976,5.118275160770976,0.2222222222222222,0.010499856229883777,0.07977207977207984,0.060590277777777785,0.045420420420420445,0.037935435435435434,0.01538146441372248,0.015381235827664399,0.016341302835067004,0.010789879792072774,0.5143341747263461,19.753086419753085,8.347140039447732,4.465974625144176,148.23867929358494,1.0,4.148581234457843,126.45506759780459,,91.7961222139405,98.27910318537268,99.72089569675971,91.7196951420661,106.1570487921777,98.10839357650813,97.61620361614041,102.22711103130638,0.10685341789992948,-0.04686575231865567,-0.3284309884859927,0.3694629117800851,0.2019345991821809,0.06576966672087362,0.10148590414922042,0.0715650089017748,-0.0356339472160235,-0.11605964944083857,0.001034411856995634,0.07167619616084941,-0.007831581182966993,0.1341015110094756,0.039627326675642414,0.004603730259677412,0.06921356118183879,0.025048758674160527,0.0015282308804414127,0.007276280080293012,0.13387410039939301,0.13700827650392947,0.1160131033413378,0.0914862699401094,-0.2245080500894455,-0.19615920150297142,-0.10578581910207953,-0.13115479426079263,-0.28410422394140133,0.04014834935410379,-0.2260546335508037,-0.013583296362346868,-0.22113648806322023,-0.14395047076928763,-0.17557882556159374,-0.09811307555316114,-0.17447560419516644,-0.029960751846743988,-0.007384494535052277,-0.1517714727633041,-0.05430114403106174,-0.17382507516447687,-0.1791261527941571,-0.2262366786510124,-0.0441600622985275,-0.025831334062628254,-0.023249470643046718,-0.24978327911362247,0.1238532110091743,0.07173626261325475,0.030358290330443963,-0.11347651391223713,0.0891698532384368,-0.11510896723651275,0.1260678283284558,-0.0378799974286015,0.094132213422445,0.009649975859025784,0.03851887237721157,0.026755290042240792,-0.06030113297555155,-0.10044355317282726,-0.06061249168422545,-0.03999431135832122,-0.10081281816877329,-0.0700470838052228,-0.061145501578868285,-0.042875315612412694,-0.10008236114724604,-0.0738806622558171,-0.10932574570193197,-0.061293244741902696,0.013326365299189983,0.08721152711821624,0.01686785684134637,0.11017144756400432,0.019249937849470922,0.12868301500418478,0.007798188833304993,0.07220666810147577,0.06655111225300345,0.0722378944914527,0.11154236712765726,-0.021834217620302732,0.26935292850990533,0.0578108731920872,0.0973795857223798,-0.03512736236647493,0.11508173043266993,0.002416209085905616,0.2720284536231499,0.15567973069254185,0.09003944210431666,0.032566892309008784,0.01272487079542169,0.17949853607606533,9.611783355312896,24.975915846531574,11.77697508219807,17.561647996269972,34.88478550457047,43.763836618752336,45.435741380657106,45.4837413806571,45.4837413806571,50.53347710383963,41.6261526075711,0.0,5.115557244498296,1.7750300865691102,8.907324496268533,6723.341518025694,5883.690400177103,1142.8194490173682,119.0,39.0,51.0,69.0,91.0,100.0,112.0,121.0,122.0,356.0882436240004,27.0,4.890349128221754,5.746203190540153,6.645090969505644,7.532088143541722,8.438799123988225,9.339349052539717,10.250935054274718,11.158889891968427,12.07380331331513,0.7380952380952381,0.9946666666666669,1.1101296273507049,0.7065178411852626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7213926575420588,0.9830065359477123,1.013621544757743,0.6805605487869888,7.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.65927726853107,12.0729900245573,4.895483475517775,0.0,0.0,4.794537184071822,4.39041504767482,0.0,0.0,6.06636706846161,93.98348225597826,0.0,6.4208216229260096,287.75409528058873,-571.6531379519864,-62.24332142931906,-13.610788998856817,-28.582656897599318,305.6170094471655,607.1396561415313,26.64039863026469,14.455706098607891,27.597257097342332,0.5,0.6840599214579168,0.30788544575765714,151.46963451596417,0.1547106523037723,24.125664065592574,0.3159400785420833,6.0,0.14814814814814814,0.29052361905351104,0.6379328590461845,0.8255464478592052,0.9403482242591954,0.9491791301361177,0.9491791301361177,4.365500000000003,,1.7083333333333335,1.2227965956474551,0.7862052558816528,1.7409444126464908,-4.820949529846528,1.147087180086479,1.1303405048164357,-1.5860642243033165,97.89220000000003,18.844229500277713,0.0,0.0,0.0,18.24004229813441,6.255769183511404,70.54524932543742,0.0,0.0,4.007333185232471,0.0,5.351858133476067,2.3978952727983707,6.880384082186005,4.948759890378168,8.496786381638575,7.208600337960199,10.164504756278419,31.0,11.809380248723983,0.0,0.0,0.0,0.0,0.0,2.742098831080915,0.0,41.77600000000001,0.0,11.185631313747365,0.0,0.0,0.0,1.9477009322247416,0.0,1.4193395267929314,46.6254443487296,0.0,4.39041504767482,0.0,21.884351739994322,15.97039165745711,5.817220841045895,30.034913297707618,52.93315748481831,0.0,17.222229166972415,0.0,29.67374932978103,30.298491616766473,31.420837283564598,252.9101351956092,,183.9976890827994,196.46038264309357,199.3788949730489,183.8401310559438,214.53388898195277,196.12502017860936,195.14197999189554,205.08864775233405,31.420837283564598,252.9101351956092,,182.5626890827994,195.3354097750979,198.65558613763778,182.37773774932091,217.135047114202,195.06969997292987,194.10206672746443,206.0402862869161,4.851284140460675,185.30506059686928,,134.16779014905546,142.48059165817088,144.20462841392242,134.0873525487933,149.9729639843223,142.20688597344775,141.52889788340912,146.2709189634819,1.2568334913425838,10.116405407824368,,7.359907563311976,7.858415305723742,7.975155798921955,7.353605242237752,8.58135555927811,7.845000807144374,7.805679199675821,8.203545910093363,2.5216240905622085,126.45506759780459,,91.7961222139405,98.27910318537268,99.72089569675971,91.7196951420661,106.1570487921777,98.10839357650813,97.61620361614041,102.22711103130638,41.28627450980392,0.0,3.483906650973843,0.0,13.655534832793407,0.0,9.168852794701323,42.572104879825204,-0.14545533107131225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.58354304905353,405.90139129546486,65.79701405554145,144.4773317567079,186.967556752381,212.967556752381,214.96755675238097,214.96755675238097,876.0,128.0755078678955,187.46971343228938,74.45612203994828,60.36,60.36,1.0,9.002004610924178,5.754887502163468,3.9277503346844087,4.910626024537501,,4.926261935591013,4.906408983583452,4.901536615011499,4.926496439558713,4.872649634948093,4.907093462118662,4.908871729826967,4.8929485336717615,0.15711001338737635,0.19642504098150002,,0.1970504774236405,0.19625635934333807,0.19606146460045995,0.19705985758234854,0.19490598539792373,0.19628373848474648,0.19635486919307868,0.19571794134687046,2.2843575599299326,2.5076921654589666,,2.5108712042536148,2.506833038194993,2.5058394827304387,2.5109188059421603,2.4999285938992832,2.506972535492743,2.507334857015484,2.5040858257673033,257.1,319.622641733667,147.80503042178668,,146.30819252356582,148.15085329778643,148.62586699017626,146.27521618301364,151.53913632746253,148.12456822879096,148.00160174906623,149.83130898695615,12.784905669346681,5.912201216871467,,5.852327700942633,5.926034131911457,5.94503467960705,5.851008647320546,6.061565453098501,5.924982729151639,5.920064069962649,5.993252359478245,6.683431787229634,5.912184775139154,,5.902006036442896,5.914521765565205,5.917722920275496,5.901780621469179,5.9371346490570795,5.914344328848187,5.913513828208532,5.925800786372098,25.147176880286825,11.930884476689922,9.168852794701323,4.743911022227822,-1.327725827296533,11.809380248723983,3.427540703598396,1.8586115485288766,0.0,322.8259203345801,170.7449654065784,-339.20245398765746,-36.933388398439746,-8.076248904468033,-16.96012269938287,181.3443025192571,360.25912848872923,15.80764276562791,8.577598297350699,16.375414931305876,1517.0,40.0,2.1378287139723,1.1308166188995612,0.0,0.0,0.49046817359701056,0.2319761759420206,0.0,0.0,0.0,0.0,0.0,0.0,0.06415002990995841,0.03125,0.39696842963787465,0.1593077136426192,0.7381830988744624,0.2717083383263633,18.137463722575188,14.778940553185704,11.863081100704113,9.480125039208122,11.322833347902064,7.461376282808928,8.851145585291313,5.351180772850997,7.368241771232363,3.6351459856589043,6.348766231581353,2.557663072550268,4.512563851089234,1.584201077853738,3.2153406008056713,0.908884603729894,4.3578296632853935,2.2962236420172615,6.624775839622504,2.8575371931429476,10.683724077673935,3.74164331156774,79.88035359425442,50.46866451321785,29.45998936583505,25.064733199722113,24.90319427482789,24.90319427482789,132.0,156.0,50.598480999999985,23.593518999999997,0.38095238095238093,129.05,9.36111111111111,5.416666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,12.0,12.0,42.0,0.0,0.0,44.0,12.0,3.0,9.0,35.0,15.0,27.0,29.0,0.0,0.0,0.0,20.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,2.0,1.0,0.0,25.0,5.0,0.0,0.0,3.0,0.0,3.0,4.0,1.0,0.0,1.0,0.0,2.0,3.6109179126442243,7.849116600784717,4.23410650459726,4.808111029984782,5.41498867335173,6.0112671744041615,6.3451976681257936,6.780667368183723,7.190110689928193,7.550644812896754 +23675322,Cc1nnc(SCC2=C(C(=O)[O-])N3C(=O)[C@@H](NC(=O)Cn4cnnn4)[C@H]3SC2)s1,0,46.023809523809526,6.968571428571429,4.023809523809524,11.936507936507937,165.06584592536996,183.56851719047623,1.9596996134056428,7.028366666666665,7.672864001567705,8.432351309523808,260.37460728627474,38.91111111111111,6.8623022222222225,4.688888888888889,10.148148148148149,152.09609561109107,152.43942137777782,2.0896125337777787,7.001697777777778,3.772702331961591,8.252964711111106,294.72546231702603,37.24,6.740139999999999,4.173333333333333,7.930370370370371,157.2960889044619,143.5460908666667,1.8881519209212527,6.864010666666666,3.9525971650662997,8.251935,253.32088207933936,30.511904761904763,6.687290476190476,3.7261904761904763,6.222222222222221,157.57399931347524,114.97711042857141,1.763801984210691,6.795904761904762,3.5959729570840686,8.209312690476194,235.61363112106068,29.391752577319586,6.607786597938146,3.2989690721649483,5.949599083619702,160.57465545736602,110.28927335051549,1.5926039782612271,6.706659793814432,3.77711311922843,8.191237845360824,212.3425905878268,33.05681818181818,7.068486363636361,3.2045454545454546,6.681818181818182,161.9592344968987,125.0947175227273,1.5316785813795002,7.135617045454546,5.808431537598205,8.634306295454545,214.33045157104058,31.07792207792208,6.73704935064935,3.4285714285714284,6.274170274170275,161.97695624060637,116.94057875324671,1.6143635254797788,6.825385714285716,3.846485133522171,8.30888822077922,215.24934498736633,32.61333333333334,6.809576,3.4266666666666667,7.4977777777777765,162.71945267065027,125.19991078666668,1.5660112379685467,6.892766666666667,4.273786008230452,8.33538184,220.64669740381632,32.46268656716418,7.013871641791044,3.2388059701492535,8.716417910447761,163.59036132085052,124.1514884328358,1.5204099085066116,7.076626865671643,6.045190713101162,8.504413313432835,217.7801124576732,15.247732426303855,0.1738603174603174,0.0325128466351474,0.6626984126984127,5.0770975056689345,2.0482845855047795,66.9850817596372,0.3819058836417647,0.1539820861678004,3.255082794434647,0.10788983503401357,44.20883614611042,0.40359032501889675,0.011402962962962943,-0.011799946254475991,0.14629629629629634,1.526077097505669,0.158362612949122,2.1785434276643993,0.029277908238226756,0.009119395313681004,0.10743598536808426,0.0003954490929705284,0.5213162465751314,0.55702947845805,0.026409333333333333,0.0028431679909077232,-0.018888888888888844,0.612003023431595,-0.14223245506653437,2.568225199092974,-0.0045375467606999995,0.023735818594104296,0.5826280292638317,0.014535553537414968,1.3273820429063143,-2.575680272108844,-0.006877777777777759,0.00831302489561979,-0.09325396825396821,-0.6267951625094481,0.24659621162476314,-11.519606119047618,-0.010428979852150536,-0.011371541950113353,-0.21247509634855305,-0.004308468537414951,-6.178574659804862,-0.7415959510952149,-0.020491981672394022,-0.009012904038911527,-0.1440435280641466,-0.19622694438600183,-0.01792439713398956,-3.2543203472660553,-0.015176177561396057,-0.016640259952778368,-0.25304134317593635,-0.0188391175573322,-0.1035121294100925,-0.91034065141208,-0.015525252525252541,-0.0003931137116371833,0.0031565656565656405,-1.3198824984539272,-0.03934675035646307,-4.330478943078744,-0.022054877692359712,-0.014805300453514745,-0.21316170968948772,-0.001570970315398914,-5.43198897892999,-0.6107503607503607,-0.02087503607503607,0.003879816372934399,0.07539682539682539,-0.1884147598433312,0.029249108215399378,-3.0210814003298294,0.006145076798136927,-0.0199422593279736,-0.4823287994584292,-0.013100212894248604,-0.24257441948141747,2.1436961451247165,-0.0045982222222222344,-0.005569680060001961,-0.007777777777777785,0.19105064247921383,-0.20522137035739485,9.753388154013606,0.0006598121249003515,0.0014520725623582676,-0.31318129858253324,-0.0009227521768707536,4.023249532445515,0.558948455003892,0.052385737976782726,0.001298328178021807,-0.04933665008291874,1.1124310420685688,-0.1738963275200961,2.7893332524452568,-0.03299629386968157,0.04708962669644969,0.9575822021579347,0.03292279538531827,-1.364884966555472,,,0.4839080459770116,1.1551724137931034,0.4827586206896552,0.017241379310344827,0.6724137931034483,-0.1896551724137931,0.9930562375304534,0.016505269537846517,0.028367338503363756,0.8341790424611749,0.21197761459096387,0.26855896284957226,1.8272352799916283,0.4805365774405361,2.037830580877848,1.0181218178782792,0.566772342998596,0.24184428144085704,0.0,1.0197087629995694,10.786255654188345,1933.0,292.68,169.0,501.33333333333337,6932.765528865538,7709.877722000001,82.307383763037,295.19139999999993,322.2602880658436,354.1587549999999,10935.733506023538,1751.0,308.8036,211.0,456.6666666666667,6844.324302499098,6859.773962000002,94.03256402000004,315.07640000000004,169.7716049382716,371.3834119999998,13262.64580426617,2793.0,505.5105,313.0,594.7777777777778,11797.206667834642,10765.956815000003,141.61139406909396,514.8008,296.44478737997247,618.895125,18999.06615595045,2563.0,561.7324,313.0,522.6666666666666,13236.21594233192,9658.077275999998,148.15936667369803,570.856,302.0617283950618,689.5822660000003,19791.545014169096,2851.0,640.9553000000002,320.0,577.1111111111111,15575.741579364503,10698.059515000003,154.48258589133903,650.5459999999999,366.37997256515774,794.5500709999999,20597.2312870192,2909.0,622.0267999999998,282.0,588.0,14252.412635727085,11008.335142000002,134.78771516139602,627.9343,511.14197530864203,759.818954,18861.07973825157,2393.0,518.7528,264.0,483.11111111111114,12472.225630526691,9004.424563999997,124.30599146194297,525.5547000000001,296.17935528120717,639.784393,16574.199564027207,2446.0,510.71819999999997,257.0,562.3333333333333,12203.958950298771,9389.993309000001,117.450842847641,516.9575,320.5339506172839,625.153638,16548.502305286223,2175.0,469.9294,217.0,584.0,10960.554208496984,8318.149725,101.86746386994298,474.13400000000007,405.0277777777778,569.7956919999999,14591.267534664104,640.4047619047619,7.302133333333331,1.3655395586761907,27.833333333333332,213.23809523809524,86.02795259120074,2813.3734339047624,16.040047112954117,6.467247619047617,136.71347736625518,4.53137307142857,1856.7711181366378,18.161564625850353,0.5131333333333324,-0.5309975814514196,6.583333333333336,68.6734693877551,7.12631758271049,98.03445424489797,1.317505870720204,0.4103727891156452,4.8346193415637915,0.017795209183673777,23.459231095880913,41.77721088435375,1.9807,0.21323759931807926,-1.4166666666666632,45.90022675736962,-10.667434129990077,192.61688993197305,-0.3403160070525,1.7801863945578222,43.69710219478738,1.0901665153061226,99.55365321797358,-216.3571428571429,-0.5777333333333318,0.6982940912320624,-7.83333333333333,-52.650793650793645,20.714081776480104,-967.6469139999999,-0.8760343075806449,-0.9552095238095217,-17.847908093278456,-0.36191135714285594,-519.0002714236084,-71.93480725623584,-1.98772222222222,-0.8742516917744182,-13.972222222222221,-19.034013605442176,-1.7386665219969872,-315.66907368480736,-1.4720892234554175,-1.6141052154195017,-24.545010288065825,-1.8273944030612235,-10.040676552778972,-80.10997732426304,-1.3662222222222236,-0.03459400662407213,0.27777777777777635,-116.1496598639456,-3.46251403136875,-381.0821469909295,-1.9408292369276547,-1.3028664399092975,-18.75823045267492,-0.13824538775510442,-478.0150301458391,-47.02777777777778,-1.6073777777777774,0.2987458607159487,5.805555555555555,-14.507936507936503,2.252181332585752,-232.62326782539685,0.4731709134565434,-1.5355539682539672,-37.13931755829905,-1.0087163928571425,-18.678230300069146,160.77721088435374,-0.3448666666666676,-0.41772600450014713,-0.5833333333333339,14.328798185941038,-15.391602776804614,731.5041115510205,0.049485909367526365,0.10890544217687007,-23.488597393689993,-0.06920641326530652,301.7437149334136,37.44954648526077,3.5098444444444428,0.08698798792746107,-3.3055555555555554,74.53287981859411,-11.651053943846438,186.8853279138322,-2.2107516892686654,3.1550049886621294,64.15800754458162,2.205827290816324,-91.44729275921662,0.7083876247072758,0.5952003544208211,0.43548627330548584,0.34638203026888237,0.2828615648870717,0.20810933667271847,0.1708108097061245,0.1213265748286027,0.110574628276288,0.07354602888130261,0.07099977861989339,0.047647026255568735,0.04266279061644026,0.02946190393168992,0.02770385375551778,0.018477005959043655,16.006536647083575,5.737152102411332,3.55575867389164,2.2180054215875944,0.4264570374327046,-0.6232520942362688,3.270732766222236,0.9725923275417216,7.004123819775183,0.6505315762121618,14.782349625175137,10.305624616386437,32.064142938915914,11.750438830780272,2.942707670955566,0.7413765137649896,3.5018826180230747,2.276557831467568,8.001939333265728,0.5992166912551588,3.7147307113082695,2.475143060229542,24.443631683792006,14.700468314603095,0.3670980706758439,0.727072684019057,0.8717634208575777,0.8967039108644413,0.8967039108644413,0.8967039108644413,1.3016988528273168,990.9137443081793,0.0,4.0,5.0,0.0,1.0,1.0,1.0,0.0,0.0,3.289608874923908,1.2277029240318384,0.39892589290865477,0.25606875005151153,0.25606875005151153,0.25606875005151153,-124.54023155855742,1890.9648055953062,92.7471726128921,45.02297156179301,99.79081725120446,,16.0,756.0,29.199378388771564,19.49013894705617,12.241795718968408,17.078811743562845,9.347279377526311,50.769588517477175,0.0,6.923737199690624,31.03960422021918,0.0,14.033333333333337,33.5,14.0,0.5,19.5,0.0,0.016091954022988388,-5.5,0.301234567901235,0.02020202020202011,-0.2810325476992149,0.02145593869731799,0.20121071863580975,0.0,0.7444444444444446,0.9436781609195402,0.4432098765432096,0.7242424242424245,0.9222222222222222,28.798630888383148,0.478652816597549,0.822652816597549,24.19119223137407,6.147350823137952,7.788209922637595,52.98982311975722,13.935560745775547,0.5127892813641902,0.13064133016627072,0.0,0.37767220902612825,0.42857142857142855,0.595093222880203,-1.9594129899976565,-0.11080424262789765,-0.046652690238039446,-0.11525958764692099,0.40490677711979717,0.9282954310766321,0.03083075268908973,0.02210227216849124,0.03713181724306528,-2.240861264293688,0.6843241501530529,0.5681863138930479,1.2099718662400991,0.8183632734530939,0.38739516649297806,1.0630861033501138,0.6698833714354713,0.7840092548595403,0.5459413317311211,0.49077497377650503,0.6252206903605992,0.8039581889028418,1.0439855745993978,0.6095761056129714,0.7898077535323422,1.1097005988023951,0.7141174135278646,1.1768773044433132,1.0264173970980517,1.1345450778157506,0.5972064512613742,0.4626097237429549,0.5975042216390324,0.9369831600563968,1.1184797561066289,0.873274802927781,0.6534308155107329,1.1486313088109497,0.960730857029428,0.9036728328388446,1.116140462127169,1.0299661642194355,0.9017114257776547,0.8619151211034823,0.8805728712976196,1.1070015678541874,1.129625463154784,1.0735898015587215,1.2599241564242833,1.2604481758133217,1.00684714426697,0.9634100696983572,1.1263272916981093,1.1155007033811402,1.0711567718655526,1.0713519988870865,1.1428534187216943,1.052933332288931,1.088737929542666,1.3425874090759695,1.5120067052933672,1.0127245508982037,1.3483410478162599,0.9418801203993492,1.0886437309380077,1.1037358566508426,1.3306393029224448,1.698353235976791,1.358695282612892,1.0642446472476135,1.1178908090459565,1.1156165119983912,0.8436026957968704,0.8991367913523602,1.019492603570317,0.9624045617323314,1.1178532316245668,1.0573020285400676,1.1249973392402421,1.174797360374417,1.128170614287287,1.0176164641541423,0.8032628174145815,1.0157842456998867,1.1808842575590537,1.001676646706587,0.9495454319884867,1.0630971128707343,0.8001364226417884,0.9442662144484734,0.9799091834165121,1.1108300838775569,1.0054425611948832,0.8771652319832157,0.8958303622608969,0.7764762127717326,0.9890865510014045,1.0663151309321655,0.8207488684314026,1.0494287907917976,0.8915922159319066,1.0254517380532313,0.7630651606332512,0.8716610871990175,0.7951495966791642,0.9596964813338396,6.0,0.14926844199571473,2.88888888888889,3.166666666666667,1.884444444444445,1.2294444444444446,0.6702040816326531,0.6380031179138322,0.41523368606701927,0.22812500000000005,21290.043559538983,21714.71279390933,3188.330112570331,3057.2791330420196,15.53922510717306,0.4451009849070179,8.62270070727847,0.8021297079297107,0.0,0.42857142857142855,2.102708547854853,4.164614498746922,4.993391529870106,5.136248672727249,5.136248672727249,5.136248672727249,0.1875,0.007856233789248143,0.06565656565656569,0.07723577235772358,0.043824289405684766,0.029986449864498648,0.019148688046647228,0.01678955573457453,0.011863819601914837,0.009505208333333334,0.4693665827901907,22.203125,9.646502835538753,4.924037460978147,175.66786055792278,0.0,4.3141580637324,177.64493103008695,,124.39507237080863,144.27916924167445,143.71800955198233,124.40526966296368,181.42741225185898,145.11478082710514,144.8887379505938,178.42209152713724,0.02646887509139807,0.06558692132588335,-0.36293180929042007,0.22075848303393222,0.30058061634658334,0.0773147511189687,0.03252281508712155,0.07666262682061745,0.059223741804246215,0.03300560758447438,0.003665304454732536,0.01179212781924814,0.036531955236643494,0.15189971880363734,0.08744752567541011,-0.028502994011975983,0.12054190859014442,-0.06943979175212246,0.038340256242554806,-0.011881321956684775,0.1541466230574278,0.17899023344658868,0.13472588527763027,0.03002526550392121,-0.16892218463025618,-0.03955921557170498,0.2556843142314445,-0.14071856287425144,-0.12345541164210211,0.12039157711280238,-0.17197271118341634,-0.02730772239668642,-0.07384977196452144,-0.06527486695939984,-0.03993396167541321,-0.13975881743153432,-0.048636474615457455,-0.11786462817814189,-0.27721054818892105,-0.21735909624050867,-0.03864943388755106,-0.008750931028254683,-0.048582762934343264,-0.0397380040775481,-0.10806620670566065,-0.07773729860529872,-0.17461438838416002,-0.0023414352974139466,-0.059703346436067554,-0.08929727468601964,-0.012091027157622523,0.004763200870985278,-0.25996792399204194,-0.019209611122844264,-0.06464840871013365,-0.057749510120267286,-0.09614949908771088,-0.06548580271258823,-0.014560874200091663,-0.12287111474677233,-0.04005515991982884,-0.12006785895695074,0.11933179571979395,0.11377245508982035,-0.037110723131268,0.014279806830744285,-0.04510080932901428,0.016090552833433518,-0.12951025553869772,-0.14817712172577827,-0.12142212368865522,-0.0054870121140422655,0.14059114399375394,-0.026447796077858604,-0.17130705663837395,-0.011736526946107797,0.037629894298049714,-0.10019182481267369,0.14560537806032278,0.0017276825342635162,0.009430139560363445,-0.09621300543199472,-0.008552725811285602,0.09100555190253495,0.03665780847778063,0.30130934270690873,0.03993277465339728,-0.07444811868799714,0.21910767733463102,-0.08489851886340347,0.041641111411257675,-0.08639901945221863,0.3058123699216171,0.2941805977393735,0.3051519670498982,-0.03087357835081929,1.2034259748353637,8.447313027275985,10.105214953929366,27.145899227613025,52.771379393915495,57.10962714570565,57.96748428856279,57.96748428856279,57.96748428856279,59.097086845457596,29.525532718470092,16.436397946959286,7.013484161784854,0.0,29.57155412698751,9625.31080544529,8318.330194034941,2462.3220849748213,164.0,46.0,62.0,83.0,95.0,106.0,127.0,138.0,151.0,453.0227374759105,32.0,5.056245805348308,5.921578419643816,6.825460036255307,7.715569534520208,8.62748154531036,9.531771484474337,10.450018100922895,11.36439065326193,12.288182446063663,0.9246031746031745,1.0426666666666666,1.1338803647707938,0.8989577014720634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7521572426575421,1.0281979458450048,1.0506971178857558,0.7144273792562009,1.0,5.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,15.217853182918859,29.295413819646583,4.339655680673546,5.907179729351506,5.907179729351506,14.48898409899412,4.681802935145185,0.0,27.05793037429423,23.098670827325854,22.923611921069625,11.505707213493578,11.666344601007683,389.6862759073549,-1283.0869545802102,-72.55819929425186,-30.54968939476691,-75.47570321060061,265.1460443487975,607.8778510150961,20.188973318640233,14.473282167026097,24.31511404060384,0.5,0.7832488040874838,0.16497362325170076,40.147387669326484,0.11046526400128565,51.11102289605807,0.21675119591251654,8.0,0.21875,0.3899452467268309,0.7723236916941028,0.926019582744986,0.952512300375753,0.952512300375753,0.952512300375753,-1.970779999999998,,4.017857142857143,2.5544286705978383,2.2338319413650107,4.01313985155109,-7.2022178097077045,2.3592411260709922,2.3301514582512963,-3.6778383126651297,100.24270000000001,19.49013894705617,0.0,40.62131688621484,0.0,29.223862928393444,11.505707213493578,22.60508761474241,0.0,0.0,4.174387269895637,0.0,5.54907608489522,3.044522437723423,7.113956109566034,5.209486152841421,8.781555458546402,7.095893221097532,10.516373251493265,38.83333333333333,1.2819299812851748,18.385812043736628,0.0,0.0,1.4146095866209778,0.0,1.5420037112515121,1.2234809877546655,43.792,0.0,36.418344732433454,0.0,0.0,0.0,0.0,0.0,-1.8850561406230038,47.62297532037334,10.423315998847038,0.0,0.0,76.00961388447365,20.928367958128042,6.923737199690624,5.007623696852765,21.937119598563186,0.0,0.0,0.0,37.756223461826664,31.59060419161677,37.25513366666708,355.2898620601739,,249.0781270191104,288.38217098882495,287.28196172869815,249.10236458127991,364.72875767593166,290.0668553696537,289.6167758006186,357.0978270758376,37.25513366666708,355.2898620601738,,246.3117291309596,286.0204968058595,285.39111206659675,246.33971540662964,370.11133983597216,287.8703205281394,287.4473244429362,360.5220213669394,5.144045232522095,264.93012129648906,,189.26416397571512,217.69340649800034,216.27501967402466,189.2781440631092,273.74517803064174,219.13671848744164,219.1086544258904,270.19231083766647,1.2846597816092096,12.2513745537991,,8.588900931693463,9.944212792718101,9.906274542368902,8.589736709699308,12.57685371296316,10.002305357574265,9.986785372435124,12.313718175028882,2.5722822037221973,177.64493103008695,,124.39507237080863,144.27916924167445,143.71800955198233,124.40526966296368,181.42741225185898,145.11478082710514,144.8887379505938,178.42209152713724,43.1843137254902,0.0,1.8345276668484287,0.0,0.0,0.0,0.0,44.12927895120175,0.6251875290329538,2.613434988065219,0.0,2.757101986129972,-1.3017673841677273,1.187213876291257,0.0,0.0,0.0,30.005949928760437,512.8966317184634,88.31375900990382,174.91380894737074,209.72244425454446,215.72244425454446,215.72244425454446,215.72244425454446,1033.0,138.78069802580083,141.93568853768903,80.48524998605893,237.76,158.91999999999996,1.0,7.92021945430495,6.0,3.826164108022622,5.287245945145813,,5.299714583475018,5.296550343461222,5.296274494092163,5.299703592354943,5.280189541680975,5.297022888356569,5.2975832912291985,5.2899889485960205,0.1319366933800904,0.1823188256946832,,0.18274877874051787,0.1826396670159042,0.18263015496869528,0.18274839973637735,0.182075501437275,0.1826559616674679,0.18267528590445511,0.18241341202055245,2.406573499935004,2.7300082320110994,,2.7323637039258992,2.7317664670448534,2.731714384739453,2.7323616300158236,2.728672732111918,2.731855680549177,2.7319614707717963,2.730526893748171,280.5000000000003,742.5203276843719,186.80957374006653,,184.96873050149281,185.0717251537295,185.31389270345016,184.97062139172587,187.3653380789612,185.04841933304283,184.99685085174008,185.96351186990415,25.604149230495583,6.441709439312639,,6.378232086258373,6.381783625990672,6.390134231153454,6.378297289369858,6.460873726860731,6.380979977001477,6.379201753508278,6.41253489206566,7.67476098464722,6.294800512759021,,6.2848975234682785,6.285454190466831,6.286761841588004,6.284907746172208,6.297771127463735,6.285328253951002,6.285049539502843,6.29026121871879,1.9480164685359145,37.605558608724714,33.05854477458412,0.4531314217989002,-1.5746123213750722,-0.8070871278059226,1.2819299812851748,1.6961399548345508,0.0,335.7265812456352,255.17916822439236,-840.2068075581592,-47.51345399746326,-20.004923989479984,-49.423929856362314,173.6261994276637,398.05806361253894,13.220392241834734,9.47757294315569,15.922322544501558,2468.0,41.0,2.1724363985814947,1.3657293233216972,0.0,0.0,0.44733763046370767,0.17443022370976127,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.5945846787799111,0.2805829774771944,0.9013549105493878,0.5065381198274455,1.1817622708235718,0.6451175647973121,20.543241116511,17.260810278203813,13.935560745775547,11.084224968604236,13.011631984805298,9.57302948694505,10.590270201779719,7.522247639373368,9.177694146931904,6.104320397148117,6.744978968889871,4.5264674942790295,4.522255805342668,3.1229618167591315,3.5183894269507583,2.346579756798544,4.649743493285902,2.7510279502477193,7.6470011528384685,4.111256774543744,11.305694811539965,5.452035811967427,100.09707564830254,42.46971187517677,32.57782676716658,30.82983585891205,30.82983585891205,30.82983585891205,156.0,186.0,52.756308999999995,29.023691,0.5476190476190477,212.15,9.472222222222221,6.2777777777777795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,3.0,10.0,10.0,42.0,0.0,0.0,45.0,10.0,4.0,8.0,37.0,14.0,32.0,31.0,0.0,0.0,0.0,14.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,13.0,1.0,4.0,29.0,15.0,0.0,8.0,4.0,0.0,4.0,7.0,3.0,0.0,0.0,2.0,2.0,3.7376696182833684,6.47678003670388,4.283586561860629,4.747103681876758,5.221031272587963,5.320567975482857,5.433176002994675,5.778039245262693,5.98425109258968,6.2422232654551655 +9805950,Cc1cc(SCc2sc(-c3ccc(C(F)(F)F)cc3F)nc2C)ccc1OC(C)(C)C(=O)O,1,35.666666666666664,6.865038888888886,3.6481481481481484,10.609053497942387,166.59278252883203,144.49919769627928,1.7533736852190553,6.900264814814812,8.467462404105065,8.264149888888888,244.2197106233473,31.428571428571427,6.512500000000001,4.178571428571429,8.702380952380953,144.68531744171696,122.24995225608572,2.0267263247500003,6.6754375,3.545221560846561,7.933344928571428,289.8178207125469,30.589473684210525,6.6652821052631595,3.7473684210526317,8.164912280701754,155.10927844209368,119.88381101710851,1.772343626663548,6.772489473684208,5.478265107212476,8.099204021052634,250.5853571387253,28.495575221238937,6.662500884955754,3.3628318584070795,5.753195673549656,153.5743979041117,107.88237492869376,1.7166181249442294,6.776363716814161,4.271908421039853,8.160129283185839,235.37679578827735,22.738805970149254,6.58383432835821,2.8134328358208953,4.308457711442785,162.91024913662636,83.69572844682986,1.4520276300961645,6.660920149253733,3.853993919292426,8.148752059701494,193.96512820969352,22.55,6.3532666666666655,2.9,5.352777777777777,159.9041984958706,84.45111936106427,1.5233201091319089,6.448790833333333,4.530658436213994,7.879141016666666,202.05175754545152,20.33050847457627,6.067805084745761,2.7457627118644066,3.615819209039548,152.65773877327536,74.41456505233901,1.5244918912316858,6.1923050847457635,3.1836419753086425,7.623908101694913,196.71603133842822,19.82089552238806,6.151873134328359,2.328358208955224,2.962686567164179,167.93641351209723,73.730668323606,1.2329050732138656,6.216087313432835,3.092442878201584,7.807007208955223,154.45635661902892,22.689655172413794,6.074850574712646,2.9195402298850577,4.804597701149425,157.18912908307541,83.9525650901885,1.48717568760723,6.204052873563216,2.82856179934724,7.712547770114941,193.4225857372906,12.839506172839503,0.28201334019204377,0.023317976352004482,0.8082990397805213,5.392623075750651,3.153758583499049,58.92346872572089,0.3510504925227561,0.24673117283950616,3.9744000274724747,0.1669634691358024,50.17460734728987,0.4204144620811288,-0.008078948657652383,-0.013813926978710372,0.21749461101312959,1.7377414157249544,0.012969586616828083,1.956533023995081,0.025314390447486953,-0.00675663580246912,-0.34933005683066004,-0.006918135802469047,2.0806068856965725,2.6213125406107864,0.09983163056818999,0.0004600969581582687,-0.0825680456284744,1.2884252240111018,0.6821929481124906,12.839842912672264,0.04765535630612455,0.08839469460688758,1.4795738800138138,0.053793399870045513,9.609070861817154,-1.1059761826723484,-0.01685557224710776,0.003915340044612694,-0.09066547701421512,-0.9150018950812864,-0.33818332702355086,-5.5149557175559725,-0.01382812128300344,-0.01768243472085645,0.06061249849778108,-0.011707502567464258,-8.542904649554481,-2.1405011977151283,-0.05915069508424948,-0.0037866566141014587,-0.01849804475564564,-1.0824148575822305,-0.01731256652382011,-9.794347649036995,0.014805829408887274,-0.05534575271789195,-0.7062755577998056,-0.035226163994840645,-2.549445351030978,-0.5691358024691353,0.06482616598079545,0.0017255645846042784,-0.07403978052126203,0.9448940710257584,0.5162382643405237,-1.9383206642660726,-0.016794190014192738,0.05463466049382695,0.9599241408030241,0.03422100123456804,0.7922955995671057,-0.6521238752877171,0.012818000046499516,-0.0008923558624118668,-0.012630489874683216,0.09646111201527278,-0.5336460459231647,-3.1934966844575667,-0.06964930709737668,0.01047945176815201,0.13023500021639287,0.006152242728604577,-14.513141920830229,3.3918371107425838,0.0055695647278011335,-0.0003602369975197138,0.16295579714595743,0.37845978156769927,0.2894305754162991,16.072202557845944,0.0659743569748806,0.010320416436336528,-0.29754749790115836,0.007157749769670328,13.291198531271968,-0.9429544487015749,0.029418162575090816,0.0017101001849328808,-0.10970389290951235,1.4627763850127977,-0.5783075848564191,-3.2870595201889685,-0.10248127584632255,0.03181786930608733,0.25668596131182436,0.011373283099191363,1.7632455530051088,,,0.47604617604617616,1.1818181818181819,0.5757575757575758,0.045454545454545456,0.6060606060606061,-0.030303030303030304,1.0489057865390727,0.03453032928335728,0.042348511101539095,0.9991033306040543,0.22532527752848783,0.2375448041691578,2.048009117143127,0.46287008169764565,1.9895868969987043,1.4326732258043866,0.0618262015735278,0.16254337121104095,0.20765458336448409,0.5569136711943181,9.242405526148158,1926.0,370.71209999999985,197.0,572.8888888888889,8996.01025655693,7802.956675599082,94.68217900182898,372.61429999999984,457.2429698216735,446.2640939999999,13187.864373660756,1760.0,364.70000000000005,234.0,487.33333333333337,8102.37777673615,6845.9973263408,113.496674186,373.8245,198.53240740740742,444.26731599999994,16229.797959902626,2906.0,633.2018000000002,356.0,775.6666666666667,14735.381451998901,11388.962046625309,168.37264453303706,643.3864999999997,520.4351851851852,769.4243820000002,23805.608928178903,3220.0,752.8626000000002,380.0,650.1111111111111,17353.90696316462,12190.708366942396,193.97784811869792,765.7291000000001,482.7256515775033,922.0946089999999,26597.57792407534,3047.0,882.2338000000002,377.0,577.3333333333333,21829.973384307934,11215.227611875202,194.57170243288604,892.5633000000003,516.4351851851851,1091.932776,25991.32718009893,2706.0,762.3919999999998,348.0,642.3333333333333,19188.50381950447,10134.134323327713,182.79841309582906,773.8548999999999,543.6790123456792,945.4969219999999,24246.210905454183,2399.0,716.0009999999999,324.0,426.6666666666667,18013.613175246493,8780.918676176003,179.89004316533894,730.6920000000001,375.6697530864198,899.6211559999997,23212.49169793453,2656.0,824.3510000000001,312.0,397.0,22503.47941062103,9879.909555363203,165.209279810658,832.9556999999999,414.38734567901224,1046.138966,20697.151786949875,1974.0,528.5120000000002,254.0,418.0,13675.45423022756,7303.873162846399,129.384284821829,539.7525999999998,246.0848765432099,670.9916559999999,16827.764959144282,693.3333333333331,15.228720370370365,1.259170723008242,43.64814814814815,291.2016460905351,170.30296350894864,3181.867311188928,18.95672659622883,13.323483333333332,214.61760148351362,9.01602733333333,2709.428796753653,23.543209876543212,-0.45242112482853347,-0.7735799108077809,12.179698216735257,97.31351928059745,0.7262968505423727,109.56584934372454,1.4176058650592693,-0.3783716049382707,-19.562483182516964,-0.3874156049382666,116.51398559900807,249.0246913580247,9.484004903978049,0.04370921102503553,-7.843964334705069,122.40039628105467,64.80833007068661,1219.7850767038651,4.527258849081832,8.39749598765432,140.5595186013123,5.110372987654324,912.8617318726295,-124.97530864197536,-1.9046796639231771,0.44243342504123445,-10.245198902606308,-103.39521414418536,-38.21471595366125,-623.1899960838249,-1.5625777049793887,-1.9981151234567789,6.849212330249262,-1.3229477901234612,-965.3482253996565,-286.8271604938272,-7.92619314128943,-0.5074119862895955,-2.478737997256516,-145.0435909160189,-2.319883914191895,-1312.4425849709573,1.9839811407908947,-7.416330864197522,-94.64092474517395,-4.720305975308646,-341.6256770381511,-68.29629629629623,7.7791399176954545,0.2070677501525134,-8.884773662551444,113.387288523091,61.94859172086284,-232.59847971192872,-2.0153028017031285,6.556159259259235,115.1908968963629,4.106520148148165,95.07547194805268,-76.95061728395062,1.5125240054869429,-0.10529799176460028,-1.4903978052126194,11.382411217802188,-62.970233418933425,-376.83260876599286,-8.218618237490448,1.236575308641937,15.367730025534357,0.7259646419753402,-1712.550746657967,454.50617283950623,0.746321673525352,-0.04827175766764165,21.836076817558293,50.7136107300717,38.78369710578408,2153.6751427513564,8.840563834634,1.3829358024690948,-39.871364718755224,0.959138469135824,1781.0206031904438,-82.03703703703701,2.559380144032901,0.14877871608916063,-9.544238683127574,127.2615454961134,-50.31275988250846,-285.97417825644027,-8.915870998630062,2.7681546296295974,22.33167863412872,0.9894756296296486,153.40236311144446,0.7439902207560086,0.6013175697900615,0.4364203627434946,0.33062530342441293,0.29862613566517676,0.18841262423459387,0.1859872798457672,0.11265114037642308,0.11390480517961919,0.06751951359334166,0.07408949156270113,0.03914237482106751,0.04689599625783614,0.02436269743437487,0.03086123683043233,0.015310254929348807,16.00489987797212,5.688766925212152,4.124798321796551,2.181832919449297,0.5040062492154412,-0.5095980019902314,4.024167969524629,0.9725038620031969,7.014440080203132,0.6528025296714202,17.431208579774186,10.311270937589525,32.062827509014,11.700369499124868,2.936723250474422,0.5268582167808236,4.007411654305205,2.235098638772578,8.007933769382856,0.6046767948189065,4.030855370981296,2.4323590536295887,24.44095003436171,13.301651837441767,0.30666062672427064,0.6632266435218612,0.7855889802487727,0.8517306008062339,0.8517306008062339,0.8517306008062339,1.4370864160780008,1188.934996585946,0.0,2.0,6.0,0.0,11.0,0.0,3.0,1.0,0.0,3.9080644142560876,1.7606927114745146,1.0237817132434133,0.6254525464966179,0.6254525464966179,0.6254525464966179,-46.0879624090187,1950.9800416350017,78.67109981758146,36.12926003027782,77.08750018666323,,18.0,966.0,29.1273269491219,27.462724769611803,5.563451491696996,28.27028420019353,27.46881629783929,36.9461452267071,12.990104268152233,19.056471336613843,4.9839785209472085,4.736862953800049,15.709523809523814,39.0,19.0,1.5,20.0,0.0,0.023953823953823814,-1.0,0.24791330177295068,0.0796477850399423,-0.16826551673300838,0.01861896273660979,0.2037927621404264,0.0,0.6868606701940024,0.9330447330447327,0.43894736842105175,0.6072128851540601,0.9144257703081229,34.6138909557894,1.1395008663507902,1.3975008663507902,32.97040990993379,7.435734158440098,7.838978537582207,67.5843008657232,15.274712696022306,0.5102072378595736,0.24249772658381322,0.06365565322825097,0.3182782661412548,0.30434782608695654,0.5318291529261397,-1.4331529276941577,-0.07845496452832869,-0.02653986903137329,-0.06824537750924561,0.46817084707386003,1.2616089517720341,0.0302083104821289,0.02336312873651916,0.038230574296122255,-7.635197610130868,0.6845681662087914,0.5715777821504525,1.6435905047767363,1.0191072186193102,0.3788148501818973,0.8562662791287169,0.6723402710394433,0.8691306835511511,0.5618625313021423,0.6304939798147143,0.6177367585620305,0.8810128765647826,0.757181174089069,0.43482078923780715,0.8865112364343662,1.342071768304937,0.6434017514604178,0.740050911023842,0.7278463717477889,0.9109703939535534,0.42506996780713857,0.38875002656532687,0.4785039555231973,0.775901242105331,1.091163206262764,0.8384577129632333,1.1192830909832672,1.0960535554045376,1.0462124939314208,0.972920193548179,1.0719786518482541,1.1061507508095014,0.8445744714261643,0.6805106119550635,0.8951463673147971,1.1067370406279828,1.2858280711825492,1.172734116263689,1.1987199861159197,0.9106915570640643,1.1779733472767864,0.934607899299471,1.266912998319925,1.0391654932885672,1.187356814697604,1.1472450307381625,1.1946433681908424,1.0303436284879521,1.156189903846154,0.5584725085118772,0.5646324819510892,1.0523546881629189,0.7068682696927727,0.7842148378886729,1.1277727223451381,1.1635634049397625,0.5740463892700731,0.5519656291210423,0.5601920429145402,1.0326203332927724,0.9147164276401567,0.443166178734897,0.6921732825190972,0.8540949066250547,0.7019682593214108,0.8395675857695071,0.9108572748195388,1.1366049460496996,0.4668835860966864,0.46851237681711294,0.46188015306361796,1.3224608619852047,0.9347068742824342,0.7943460750167508,0.7574645616034277,0.5436964519785459,0.8847439303581015,0.6578222197062503,0.9128631280870422,0.8785057297821575,0.7997334056653753,0.8814380912608993,0.7633600403318029,0.8254523472725588,1.503365384615385,0.5263342507773582,0.6097933703632268,1.1235351776805698,0.5843668284847992,1.0051617584959096,1.434061007101283,1.6386308851387674,0.5211396902220137,0.5446792327948727,0.5434181853608341,1.0922830205448217,11.0,0.28558106315682075,5.555555555555557,2.791666666666667,2.4416666666666673,1.510833333333333,0.7853514739229026,0.6041666666666667,0.5210616654069035,0.2359413580246914,7639.034792356249,8277.381969875927,3309.8040790476734,3094.474080361395,17.76291773455086,0.4489900607842683,9.787544221208913,0.814849295501509,0.0,0.30434782608695654,1.8468230879073808,3.9941947906889537,4.731105788920055,5.12943495566685,5.12943495566685,5.12943495566685,0.3142857142857143,0.01019932368417217,0.10482180293501053,0.05267295597484276,0.053079710144927544,0.03284420289855072,0.020137217280074428,0.017769607843137254,0.016283177043965733,0.007864711934156379,0.6299584240245517,27.58530612244898,10.947668209327162,7.03125,196.17969241697273,0.0,4.417418134591239,236.5730961158002,,156.46966497915125,187.00032547285727,193.3024871914335,156.16110001545323,225.81602566140242,186.2700562188123,184.05693131228006,206.42313826991966,0.0327438186813187,-0.028647398921451118,-0.5924153438607843,0.26907691375234866,0.3222441827130782,0.004112422138044097,0.033204647762717816,0.07211039718409169,-0.027384605377222364,-0.08789504187197206,-0.04143502670540507,0.04146732771211122,0.20415991902834013,0.35399612833991195,0.0197314274280374,-0.10215036955987752,0.23892365661617349,0.21631108724739725,0.21790711223128487,0.1357507176920864,0.35826318008218044,0.3722760340646311,0.32218664447066436,0.19151262700088031,-0.086138529611981,-0.059768705393970195,0.16791079918374308,-0.11216823545755251,-0.1696765900802215,-0.10723183720941044,-0.09359523186299824,-0.039390690449201016,-0.07166680447127179,0.015250729186495022,-0.0701201444127983,-0.17026350780233696,-0.1667121125143514,-0.20974431579715125,-0.16239216289349853,-0.022885149981952773,-0.20072140076868972,-0.0054895027838852755,-0.16622150495973145,0.04217578304046253,-0.22431601196129883,-0.17770620796039058,-0.21098126540596063,-0.05081146591511262,-0.04432692307692305,0.22986914710009995,0.0740014724500715,-0.09159949087823507,0.17521975071365983,0.16368984837379813,-0.03289556277293583,-0.04783981328014827,0.22143395933745974,0.24152680509452626,0.20496100980468873,0.015790768308023454,-0.05079041720990875,0.045451750749701376,-0.03826900966623363,-0.01562601123231916,0.017887605096865676,-0.16920954213657416,-0.054197364030328425,-0.19840253348415918,0.04247315670553185,0.03276846802439663,0.03684783719725272,-0.28925272539505265,0.26417192881745133,0.019749295278047498,-0.015448896254187458,0.20160335361799397,0.07018101881986585,0.09177321844818576,0.27276402603959754,0.18793409603492853,0.04182858743613138,-0.07486601646648643,0.04287015481122076,0.2648989047243611,-0.07344164456233422,0.10431479076506738,0.07333827597718941,-0.13572191418079677,0.27125507651194036,-0.1833709111034096,-0.05578523449611721,-0.2919274521162491,0.1289576381448332,0.06458483281439191,0.06811839235288482,0.035142189370822224,4.5515447523307975,17.00451094309424,9.628388151655189,22.963781948039827,45.496468525662074,50.21457211507549,50.616087915156264,50.616087915156264,50.616087915156264,65.65636760095724,47.27821645154476,2.0402646519264174,5.3639312499643514,6.852601251027975,18.3781511494125,16230.620973802774,15612.81890018897,1984.7484767019596,136.0,53.0,64.0,75.0,93.0,100.0,111.0,112.0,131.0,499.08989841200054,35.0,5.176149732573829,6.018593214496234,6.9167150203536085,7.781138509845015,8.674025985443025,9.546169544733285,10.436788698817288,11.312924545158282,12.202320615460444,0.7962962962962961,1.0262962962962965,1.135345175330833,0.7701869163143663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7091001663339987,1.0115468409586055,1.0362547543902243,0.6768866838546264,6.0,1.0,0.0,0.0,1.0,0.0,9.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,4.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,9.843390348640755,16.574356371182564,5.601050810983688,0.0,0.0,0.0,14.16893075269385,13.171245143024459,23.098670827325854,0.0,69.65660270122915,21.08893576766286,11.257379486545457,385.0388677474111,-1037.5880629185483,-56.80059196631946,-19.214593757750894,-49.40895537707373,338.9509053383924,913.3919787164535,21.870507851262005,16.914666272526922,27.678544809589507,0.5,0.8303686430252338,0.17749409173235509,108.04928929595138,0.15437873848870243,1.2241789452893677,0.1696313569747663,9.0,0.2,0.3209138470931176,0.6940526272993855,0.822102219572748,0.8913180238081999,0.8913180238081999,0.8913180238081999,7.119140000000007,,3.4761904761904763,2.5546058914730985,1.9856639266191327,3.6121702123140307,-10.909607420584527,2.3977887448257205,2.282459602088142,-3.3877889732773996,120.32980000000003,32.19958772341185,0.0,4.9839785209472085,0.0,50.12063520945422,0.0,63.913401423759304,0.0,16.320587021833667,4.2626798770413155,0.0,5.645446897643238,2.3978952727983707,7.193685818395112,4.727387818712341,8.812099108957337,6.803505257608338,10.465984899076615,42.999999999999986,7.848789516761578,4.342639147440457,0.0,0.0,1.2346387197491993,0.0,2.082575497687916,0.0,55.420000000000016,0.0,11.27368608432634,0.0,0.0,0.0,0.0,0.0,-1.0682322737825631,61.30863946786498,4.736862953800049,17.56166019069928,5.749511833283905,21.66086201472345,16.723689308262085,19.664695240427143,35.545452571325,41.293685886287435,0.0,10.571075188549761,0.0,41.59009348097578,38.29140898203593,39.797336747411826,473.1461922316005,,313.2024335003417,373.8458263462313,386.48463111458705,312.56254517086944,456.3846700186964,372.3947919076352,367.9755317395851,413.8728792590143,39.797336747411826,473.1461922316006,,310.3582776561858,371.4460450542415,384.61931045624794,309.6071331789762,462.59830553093195,370.14232369279887,365.83140302247216,416.2340655131168,4.825885021652809,367.8497806074705,,235.96282578441142,294.0360186309299,304.2351436304717,235.63134808591235,331.71426721358273,291.97537823868083,287.2585569261817,313.0234909608853,1.205979901436722,14.33776340095759,,9.490982833343688,11.328661404431251,11.711655488320819,9.471592277905135,13.829838485415042,11.284690663867734,11.150773689078337,12.541602401788312,2.4409690685561176,236.5730961158002,,156.46966497915125,187.00032547285727,193.3024871914335,156.16110001545323,225.81602566140242,186.2700562188123,184.05693131228006,206.42313826991966,54.62352941176469,0.0,6.538680463023986,0.0,52.6756565649628,0.0,9.227630639262202,55.95775673707212,0.5337465487738302,0.0,5.601169030262151,1.50940829045627,0.0,0.0,-5.967054895590845,0.0,0.0,36.55188092814982,601.1784054414056,99.72844674699856,215.6865186972035,255.47971260168296,276.9894876060099,276.9894876060099,276.9894876060099,943.0,146.06482586688105,122.811367644398,83.30868495023267,112.96,59.42,1.0,8.71646148351578,6.129283016944966,4.542159440626834,5.658854733213368,,5.63627462419122,5.6640139233902564,5.662269894688298,5.636817356060622,5.580149824866239,5.661971435183289,5.659310074923223,5.629847344038252,0.13764119517051013,0.17148044646101115,,0.17079620073306725,0.17163678555728049,0.1715839362026757,0.17081264715335218,0.1690954492383709,0.17157489197525116,0.1714942446946431,0.17060143466782582,2.707325015156336,2.927143996257991,,2.92314578811225,2.9280552830865125,2.9277473217562555,2.9232420761352294,2.913138094839642,2.9276946101446986,2.92722445836785,2.922004795520766,330.9800000000011,483.23164649243756,216.2798740302613,,219.98248799544464,215.642876241639,215.80161632444936,219.87652152489224,227.551966292453,215.96548349796475,216.40957161724467,220.71411163144785,14.643383227043563,6.5539355766745855,,6.666135999861959,6.534632613383,6.539442918922708,6.662924894693704,6.895514130074333,6.544408590847417,6.557865806583171,6.688306413074177,7.374418606517216,6.570495750547847,,6.58747041163584,6.567546157130737,6.568282011187091,6.586988591460243,6.621301104042348,6.569041064766906,6.571095245599887,6.590790720023825,58.27682559522495,17.41014915685132,9.551848257906574,-0.9018472764805056,-1.0260943572762544,7.848789516761578,-4.609065032883797,6.538680463023986,0.0,411.52233793960966,278.76420248966286,-751.2031462289383,-41.123047688834944,-13.911169374609967,-35.771578391854206,245.39698904317038,661.2864514093184,15.834024016506465,12.24604539646886,20.03898337603995,3771.0,53.0,4.3968286112350405,1.9207164127899286,0.4927992798267444,0.11556080379486673,1.529904813955326,0.30474789678604264,0.34846171252933794,0.023133476872131905,0.0,0.0,0.0,0.0,0.09622504486493763,0.06846531968814577,0.3559047456524247,0.1992227937922802,0.5879641041096192,0.2995130136032623,24.551677284948283,19.84347980307203,15.274712696022311,11.571885619854452,15.827185190254367,9.985869084433475,11.903185910129102,7.209672984091077,8.54286038847144,5.063963519500624,6.890322715331205,3.6402408583592787,4.689599625783614,2.436269743437487,3.425597288177989,1.6994382971577175,8.154296741540099,3.30604406382783,9.241876033940116,3.9794895182630885,13.059250215377725,4.931776274941032,105.4565944707322,49.270049521065395,36.26806089377231,34.07090117034816,34.07090117034816,34.07090117034816,176.0,205.0,63.94665299999998,34.183347000000005,0.35185185185185186,169.1,13.98611111111111,6.902777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,17.0,17.0,54.0,0.0,0.0,56.0,17.0,1.0,9.0,47.0,18.0,35.0,38.0,0.0,0.0,0.0,23.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,5.0,1.0,1.0,33.0,10.0,0.0,1.0,3.0,0.0,3.0,7.0,2.0,0.0,4.0,1.0,3.0,3.817712325956905,7.448443057032041,4.457250055911469,4.965463575449535,5.465155081651152,5.947382034537793,6.212230273636227,6.545708791241494,6.811278794308626,7.218234113156139 +33613,CC1(C)S[C@@H]2[C@H](NC(=O)[C@H](N)c3ccc(O)cc3)C(=O)N2[C@H]1C(=O)O,0,29.954545454545453,6.532688636363634,3.5681818181818183,8.601010101010102,163.87389796689388,118.72279327272732,1.5528651180029769,6.580663636363635,7.073468091407906,8.054691113636363,222.17125485069164,28.456521739130434,6.568739130434785,4.3478260869565215,7.53623188405797,149.2197573589739,108.78699576086957,1.8545407219999999,6.702282608695652,3.5798778851315074,8.000577391304347,269.6882682378295,27.303797468354432,6.415124050632913,4.050632911392405,6.210970464135021,152.78868430409074,103.948839278481,1.7208534127081399,6.536443037974684,3.5779027973120794,7.907613240506326,238.91920300132924,21.99074074074074,6.421218518518516,3.185185185185185,4.861111111111111,155.50271461997997,79.37049472222223,1.5101696003434628,6.522910185185185,3.6316300868770006,7.975364277777777,202.5623946709358,19.28,6.337120000000001,2.616,3.816,163.8705086427148,70.18998741600001,1.1913141935937994,6.400432800000001,3.5525308641975313,7.926370624,166.6075027915966,17.315315315315317,6.504972972972973,2.4684684684684686,3.945945945945946,166.10809699382938,61.358371747747746,1.101528097558378,6.537874774774773,4.7361806250695135,8.09649708108108,152.57143584054336,16.791208791208792,6.40300769230769,2.4945054945054945,3.8205128205128203,169.73700250526602,59.862512208791216,1.114552145269527,6.431161538461538,3.907983991317325,8.004880791208791,151.93685903726126,19.616438356164384,6.3637945205479465,2.8493150684931505,4.397260273972603,161.44803139693147,71.41677571232879,1.3147597216422737,6.432002739726029,4.096651445966515,7.948754849315066,179.8443841086715,19.91304347826087,6.515173913043481,2.8115942028985508,4.2898550724637685,160.90693124984566,71.58452598550726,1.3356239785332173,6.578140579710147,4.7101449275362315,8.091633855072462,182.3461217514217,10.913223140495866,0.17426792355371898,0.036643354326098145,0.8155991735537188,4.354912764003673,1.550212160178116,49.75580814049587,0.2821691225120222,0.15904690082644624,3.0675736655981827,0.11343902221074377,48.42381314906449,0.06701401365433042,-0.02669119430470712,-0.022898722646935866,0.2837091268415379,0.8820217990178464,0.07927143767866383,0.4801439701760636,0.04163853520415225,-0.02307446999640676,-0.33873959895211814,-0.01773592636094142,5.007310509196503,1.438330369285491,0.025466368736269483,0.0011817124936063668,-0.06416073857098029,0.28445560321279534,-0.010975347135731556,6.642918065488022,0.025558334232458547,0.02361069411026257,0.37455317694034646,0.016214857248404633,3.70190797814342,-3.331573308846036,0.0052129897459442945,0.006310427448267275,-0.0994796449341904,-0.0764802911267557,-0.1957590587256403,-15.093765253290487,-0.07865723333762806,-0.0006887779308233739,-0.09433203648699656,0.00024135594582186046,-13.045791523473566,0.9685950413223141,-0.020741378099173546,-0.006262414431701651,-0.13959917355371898,-0.40012488521579437,-0.22245835146948545,4.206365890776859,-0.03496937532879785,-0.013019555371900835,-0.376599993693954,-0.012160794574380168,-0.8396216197754911,-0.5573672846400121,-0.008987149597945035,0.0004026266566875472,0.004630146675601237,-0.47735338644429537,-0.23343015469867173,-2.7602564910282186,-0.017773498807183978,-0.008889939319484773,-0.005103525003041021,-0.0027154546431762145,-5.160872321582475,0.3480156207428933,-0.01139939208518754,0.004818406813325701,0.06926596131141585,-0.1531700622609714,0.4064929401690956,1.7464761202433932,0.05123574698734089,-0.010657040686586136,-0.31806543634458195,-0.007808598634320218,7.3217608062073305,-0.13675987773123519,0.0006163852881240798,-0.002812591666203551,-0.05719319596965924,-0.1542070769966162,0.03516339716300185,-0.38278333476734994,0.011999694614511107,0.0005715300577380224,0.07812145788423264,-0.002097119035152269,2.3656466723199876,-1.8361480416816391,-0.015389399179542433,-0.0007987034778461884,-0.08635016169601151,-0.7417521725822119,-0.05670014785920981,-8.364821014013655,-0.0008138463187372936,-0.01739024733501017,0.0789793974621949,-0.007789508047370918,-4.730551847228076,,,0.46800000000000014,1.09,0.44,0.02,0.65,-0.21,0.9906119337159854,0.03133914888534178,0.041659148885341786,0.8732315578644103,0.20146065694338425,0.2637687366661978,1.8638434915803959,0.46522939360958204,1.9958111285582931,1.3239293528657734,0.24128730096401035,0.34951322614369673,0.0,0.6718817756925196,8.297830493363648,1318.0,287.4382999999999,157.0,378.44444444444446,7210.451510543331,5223.802904000002,68.32606519213098,289.5491999999999,311.23259602194787,354.40640899999994,9775.535213430432,1309.0,302.1620000000001,200.0,346.66666666666663,6864.1088385128,5004.201805000001,85.308873212,308.305,164.67438271604934,368.02655999999996,12405.660338940157,2157.0,506.79480000000007,320.0,490.66666666666663,12070.30606002317,8211.958303,135.94741960394305,516.379,282.6543209876543,624.7014459999998,18874.61703710501,2375.0,693.4915999999997,344.0,525.0,16794.293178957836,8572.01343,163.098316837094,704.4743,392.21604938271605,861.3393419999999,21876.738624461064,2410.0,792.1400000000002,327.0,477.0,20483.813580339352,8773.748427,148.91427419922493,800.0541000000001,444.0663580246914,990.7963279999999,20825.937848949576,1922.0,722.052,274.0,438.0,18437.99876631506,6810.779264,122.26961882897996,725.7040999999998,525.716049382716,898.711176,16935.429378300312,1528.0,582.6736999999998,227.0,347.66666666666663,15446.067227979207,5447.488611000001,101.42424521952697,585.2357,355.62654320987656,728.444152,13826.254172390774,1432.0,464.5570000000001,208.0,321.0,11785.706291975997,5213.424627000001,95.97745967988598,469.53620000000006,299.0555555555556,580.2591039999999,13128.64003993302,1374.0,449.54700000000014,194.0,296.0,11102.57825623935,4939.332293,92.158054518792,453.8917000000001,325.0,558.3227359999998,12581.882400848097,480.18181818181813,7.667788636363635,1.6123075903483184,35.886363636363626,191.61616161616163,68.2093350478371,2189.2555581818183,12.415441390528976,6.998063636363634,134.97324128632005,4.991316977272726,2130.6477785588377,3.0826446280991995,-1.2277949380165274,-1.0533412417590498,13.050619834710742,40.57300275482093,3.6464861332185365,22.086622628098926,1.9153726193910035,-1.061425619834711,-15.582021551797435,-0.8158526126033054,230.33628342303913,113.62809917355378,2.011843130165289,0.09335528699490299,-5.068698347107443,22.471992653810833,-0.8670524237227929,524.7905271735538,2.0191084043642253,1.865244834710743,29.589700978287368,1.280973722623966,292.4507302733302,-359.8099173553719,0.5630028925619838,0.6815261644128657,-10.743801652892563,-8.259871441689615,-21.141978342369153,-1630.1266473553726,-8.49498120046383,-0.07438801652892438,-10.18785994059563,0.02606644214876093,-1408.9454845351452,121.07438016528927,-2.592672262396693,-0.7828018039627064,-17.44989669421487,-50.0156106519743,-27.80729393368568,525.7957363471074,-4.371171916099731,-1.6274444214876045,-47.074999211744256,-1.520099321797521,-104.95270247193639,-61.86776859504134,-0.997573605371899,0.04469155889231774,0.5139462809917373,-52.986225895316785,-25.91074717155256,-306.3884705041323,-1.9728583675974214,-0.9867832644628097,-0.5664912753375533,-0.3014154653925598,-572.8568276956547,31.669421487603287,-1.0373446797520662,0.43847502001263877,6.303202479338843,-13.938475665748397,36.9908575553877,158.92932694214878,4.662452975848021,-0.9697907024793384,-28.94395470735696,-0.7105824757231398,666.2802333648671,-9.98347107438017,0.044996126033057825,-0.20531919163285922,-4.175103305785124,-11.257116620752983,2.566927992899135,-27.943183438016547,0.8759777068593108,0.041721694214875635,5.702866425548982,-0.15308968956611563,172.6922070793591,-126.6942148760331,-1.0618685433884278,-0.055110539971387,-5.958161157024794,-51.18089990817263,-3.9123102022854765,-577.1726499669422,-0.05615539599287326,-1.1999270661157018,5.449578424891448,-0.5374760552685933,-326.4080774587373,0.7406457351606218,0.5794913180795875,0.4307679570459093,0.3181168335038467,0.28139849420618873,0.20058317666115266,0.16613120483473268,0.10664730331234681,0.10389378443516455,0.06279402282468693,0.06556908027021253,0.036713838788030785,0.040327181598245804,0.019907750959541434,0.025929679007830483,0.010698653264358995,16.002003954620054,5.693175173783037,3.5557480452712404,2.1923969192136554,0.4622423543089924,-0.3902682049955746,4.023078419066759,0.972513654785303,6.024480238687582,0.6593573949993514,14.544234965429236,10.337826091416044,32.06099910539681,11.704671039397311,2.9164396155700736,0.7413987507131615,3.5018290346202408,2.2422138503917033,7.01046001668767,0.6173185522656184,3.714709702308889,2.4382090127594966,24.43423464430697,14.700439260447283,0.3155252624880765,0.6837029794908281,0.8241199022128024,0.8799369678979696,0.8799369678979696,0.8799369678979696,1.5886670763429522,735.7906646381692,0.0,3.0,3.0,0.0,5.0,3.0,1.0,1.0,0.0,3.6607988802733726,1.5620239989363762,0.761585795552886,0.4434039773710685,0.4434039773710685,0.4434039773710685,15.96468546837201,1781.1506952874965,94.61242449274198,40.480697620170375,86.79605785228628,,13.0,537.0,46.03008250028504,24.596666341896878,5.749511833283905,5.563451491696996,0.0,40.927262954088036,13.847474399381248,0.0,5.316788604006331,5.733667477162185,11.700000000000003,27.25,11.0,0.5,16.25,0.0,0.03199999999999989,-5.25,0.20688220230473725,0.04172727272727261,-0.16515492957746464,0.10199999999999976,0.2008421052631575,0.0,0.6477272727272728,0.9119999999999996,0.44084507042253557,0.6060000000000002,0.8099999999999998,24.765298342899637,0.7834787221335446,1.0414787221335446,21.83078894661026,5.036516423584606,6.594218416654945,46.596087289509896,11.630734840239551,0.5131578947368425,0.2621082621082621,0.04273504273504272,0.41880341880341876,0.4375,0.4859322506467217,-1.5253539786492134,-0.11089701926467803,-0.034667135878391216,-0.09533462366557584,0.5140677493532786,1.6136720411696763,0.055843988706536674,0.03667436457203809,0.05763114432748843,-1.019199681808022,0.7611700113593336,0.8452835285580281,1.6102095720945162,0.9768152655781042,0.5599333043019871,1.1846712152946666,0.7597490483997998,0.8821137913601345,0.8221617459284757,0.7500608392192476,0.8512433382679152,0.8710616579269036,0.8835919938266577,0.5286841878204696,0.7986735899946549,1.4939915504926211,0.7745354090068928,1.2090962106221312,0.8674402193465713,1.085068076859955,0.5243445938925108,0.4923862022824349,0.5143372586491147,0.9426328978684961,1.5223400227186672,0.7996336427665299,0.7323955144534116,1.1815846879178107,0.9110183720884827,1.274252069568777,1.4909452960380316,1.5577363423860784,0.82805015591374,0.8647530772028789,0.8281003021933256,1.287369867212352,0.8682711094282469,1.096920533269785,1.1173138929913011,1.1359189360354658,1.0935101739588822,1.1156327556741479,0.8754140773111303,1.0555893277254902,1.0620153782799655,1.094853309104042,1.0713963926454517,0.981386152076997,0.9701186419285626,1.2351268848202446,1.0129819089051857,0.8905739178063437,1.187065637065637,1.0541479523197412,0.9825025096218027,0.9144778344907876,1.2302371592038732,1.2664464221136156,1.2224888183775005,1.028675336679324,0.9368246293653337,1.173848400813506,0.9078449894035014,0.7768722727557436,1.1035397127911624,0.6717663360241747,0.9396507514052825,0.6802906498860983,1.1752275286882912,1.2070199278863658,1.15216386068989,0.7806720406948781,1.039631884975077,0.9738689454040627,1.0833603582145988,1.075121240250896,1.0340822928777231,0.965172904497512,1.0298276943484534,0.9886464586566559,0.9727675246796164,0.9850358303023372,1.0021510084897256,0.9393322876779474,1.2063214417024735,1.1644264742267068,0.9287971636362952,1.1548127139723365,1.2159893959188037,1.0404425911921293,1.198190783683819,1.0407017885839804,1.1730315272794358,1.192404350167404,1.1693335975769366,1.056757936039281,7.0,0.1197836955412713,4.222222222222224,3.7222222222222223,2.3144444444444447,0.9550000000000001,0.6996825396825396,0.4462159863945578,0.31697215923406397,0.25063271604938275,5407.170692617348,6009.694691427143,2458.907698023513,2249.314912413981,13.62521180093403,0.46751600206713895,7.25520725244335,0.8779907074805398,1.0,0.4375,1.7986327383639247,3.897407619700921,4.697845823084411,5.016027641266229,5.016027641266229,5.016027641266229,0.25925925925925924,0.00798557970275142,0.1055555555555556,0.09078590785907859,0.05934472934472935,0.03183333333333334,0.027987301587301585,0.017848639455782314,0.013781398227567998,0.013191195581546463,0.6275728999069059,19.753086419753085,7.197278911564626,3.5752539242843953,147.9148923371173,1.0,4.166798272397401,128.32193239349715,,104.86997099467952,108.60896110318009,108.43039888232923,104.88650768523485,138.6610770267316,109.4528004071253,109.83029856407309,132.27533425720662,0.006140625257231338,-0.1531618312791764,-0.6249079285470034,0.34785362227056205,0.2025348949141665,0.0511358636675613,0.00965000847379018,0.1475658811760248,-0.14507965811660728,-0.11042590525240517,-0.15634766604380743,0.10340595222813923,0.13179702740139676,0.14613342614608787,0.03224902619694745,-0.07866699801989732,0.06531832406931662,-0.0070799000405663915,0.1335104043879734,0.09057806894292483,0.14845114232076,0.12210079292987666,0.14293897225490126,0.07644808901661099,-0.3052785841502237,0.02991365042768392,0.17221205766560677,-0.12197124293387755,-0.0175618422850895,-0.1262788821777453,-0.30335685053431555,-0.2787591804424907,-0.004330659241043471,-0.03075135164475394,0.0021276271702472564,-0.2694085962068768,0.08875425975009468,-0.11902005645221284,-0.17090177869555548,-0.17116149461684613,-0.0918789667896679,-0.14350187489428898,0.08454019838044456,-0.12393055277445508,-0.08185984954279568,-0.12276803583150996,-0.10720115827328086,-0.017339023203126497,-0.05107265538920217,-0.051570876697654006,0.010987712890705213,0.005676987944245724,-0.10961261736169481,-0.15057948885644862,-0.055476065894338615,-0.06298881553358736,-0.0558950804655136,-0.001663700878735319,-0.02393757095447738,-0.10657715669139076,0.03188935260120416,-0.06541302525862494,0.1314946980684553,0.08492647314686583,-0.03517178656872912,0.26221761808550803,0.03510094972855942,0.1815781490590202,-0.06700564821577516,-0.10368632379120342,-0.068835207516278,0.15120165740910432,-0.012531575316531207,0.003536997948644725,-0.07675584612624739,-0.07012414654671331,-0.03540991182905957,0.022682957898460587,-0.007693239223177355,0.04252660428498814,0.0035934686860807333,0.02546685634980466,-0.018486751686349175,0.04885296135266642,-0.16824983948767766,-0.08830884574577817,-0.021796680258535598,-0.10587328248478678,-0.1703253802724362,-0.0365757341580233,-0.16811747867492866,-0.002884250096155077,-0.10934037220873989,0.02574653653730391,-0.06866691809895709,-0.09769061004481153,3.3019272488946267,8.820477441561385,10.347087264302305,20.28481164243372,37.96256727845715,43.39023895439799,44.392375318034354,44.392375318034354,44.392375318034354,49.895278213957326,33.098233821644335,6.032182524100259,8.737830653592418,0.0,16.79704439231299,5339.2764381780635,5276.589095006678,1231.8723922287027,94.0,42.0,57.0,76.0,92.0,103.0,100.0,95.0,94.0,365.1045417080005,27.0,4.9344739331306915,5.820082930352362,6.760414691083428,7.674617497364363,8.621733370690162,9.550021739538344,10.501746964063756,11.439677123228389,12.39489386699881,0.7272727272727273,1.0086363636363638,1.131464640858107,0.6914192293427993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6750009118127384,0.9937611408199643,1.0262282328014303,0.6405069342930628,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,4.0,1.0,1.0,0.0,0.0,26.16342060170041,29.248907133696527,0.0,11.814359458703011,0.0,9.589074368143644,4.794537184071822,0.0,11.761884949391115,12.13273413692322,31.54366002800146,4.747022453217559,0.0,275.7283821916085,-865.5185661020262,-62.92534745538318,-19.670876502318777,-54.094910381376636,291.6930676599805,915.6321291854705,31.68707703735879,20.809821117851598,32.70114747090965,0.46153846153846156,0.6032543443668459,0.161823005614328,200.11191234297806,0.10429967213896037,36.46576587751912,0.39674565563315445,7.0,0.14814814814814814,0.32945421135485764,0.7138852342057055,0.8605009003221141,0.9187820256128156,0.9187820256128156,0.9187820256128156,0.023700000000000443,,2.303571428571429,1.9609845219659925,1.4545191904946573,2.2991871333729694,-6.541878845206732,1.7887851897184825,1.7346190845905674,-2.795367399848947,90.69370000000004,24.596666341896878,0.0,10.216698334856808,5.733667477162185,42.09389215301143,0.0,29.828919765543436,0.0,5.749511833283905,4.007333185232471,0.0,5.442417710521793,2.3978952727983707,7.0707241072602764,5.043425116919247,8.784927626058323,7.4127640174265625,10.54888777459834,32.0,5.9045116044836465,0.0,0.0,0.0,0.0,0.0,0.5622371079483597,0.0,44.38000000000001,0.0,36.16054435282305,0.0,0.0,0.0,0.0,0.0,-1.9985896214909558,49.78444419775671,11.050456081168516,0.0,5.749511833283905,55.101206191668965,14.383611552215466,0.0,25.452766720226204,24.26546827384644,0.0,0.0,0.0,30.42244609108317,29.700040119760487,30.669438204806987,256.6438647869943,,209.72931852869073,217.06104344460292,216.74443622941888,209.764141183018,279.34506308442315,218.7624979990731,219.5218276013789,265.40170193232086,30.669438204806987,256.6438647869943,,207.80977292322814,215.2569376843943,215.40627857416385,207.8481999996945,283.8640328986701,217.1168156245322,217.92597804355563,267.3460359142621,5.117092333200407,194.9483073633122,,161.57115683269078,167.32029078859426,166.48298454407234,161.59670333079993,212.50105097190817,168.64781995140493,169.2749723247069,204.79115794872962,1.2267775281922795,10.265754591479771,,8.389172741147629,8.682441737784117,8.669777449176756,8.39056564732072,11.173802523376926,8.750499919962925,8.780873104055155,10.616068077292834,2.631050103227066,128.32193239349715,,104.86997099467952,108.60896110318009,108.43039888232923,104.88650768523485,138.6610770267316,109.4528004071253,109.83029856407309,132.27533425720662,43.725490196078425,0.0,3.533958493288469,0.0,0.0,5.907623469912657,18.664795256919554,45.154042243262936,0.0,2.616276218820862,0.0,1.3530174446832093,-3.11581866993303,1.309548913688524,-0.6481045711443436,0.0,0.0,28.182305108894766,342.2994547099053,79.13984048801268,171.48593526684053,206.7052162157141,220.70521621571407,220.70521621571407,220.70521621571407,805.0,129.69766211645032,225.12199514168367,75.70837481081539,158.26000000000002,132.96,0.8571428571428571,7.395683240769631,5.754887502163468,3.6505618948471805,4.926653585911621,,4.929347234597826,4.93263028811906,4.929457487122181,4.929337807693354,4.925278076293714,4.933282720129151,4.933900119303993,4.933992773887619,0.14602247579388722,0.19706614343646486,,0.19717388938391306,0.19730521152476238,0.19717829948488724,0.19717351230773417,0.19701112305174856,0.19733130880516606,0.19735600477215973,0.19735971095550475,2.2111718314141733,2.5109507036302126,,2.511497304386914,2.5121631046556634,2.511519670693474,2.5114953919808616,2.5106714670958947,2.512295364490206,2.5124205064249803,2.5124392854256508,253.55999999999995,752.4100888026582,146.47998499058752,,145.45755475951148,145.148529065143,145.59121146602783,145.45882687786678,146.33325524756873,145.10999909259843,145.05621353052223,145.24296624156025,30.096403552106327,5.859199399623501,,5.818302190380459,5.805941162605721,5.823648458641113,5.818353075114671,5.853330209902749,5.804399963703937,5.802248541220889,5.80971864966241,7.539572238039759,5.903179529773089,,5.896175056061285,5.894048288398461,5.8970935050047055,5.896183801655797,5.902177322665371,5.893782801123958,5.893412078687283,5.894698701246446,-0.6481045711443436,37.47009326651157,20.864004624308485,6.4092400741160676,-1.9379691177460066,3.205759785982547,0.0,3.533958493288469,0.0,316.9545330247088,156.45419838839547,-491.11379965107994,-35.705191885548516,-11.16167726479727,-30.694612478192496,165.51290336328373,519.5493102731169,17.97992719409711,11.807938869843564,18.55533250975417,1551.0,41.0,2.9392560730539863,2.4315759902184166,0.2041241452319315,0.3535533905932738,0.8365496032857049,0.4290016403289045,0.06804138174397717,0.07905694150420949,0.0,0.0,0.1111111111111111,0.07453559924999299,0.4004373630287239,0.2933041647237546,0.8585861782941266,0.6515695513705317,1.6076928850374217,1.156973430059561,18.516143379015546,14.48728295198969,11.630734840239551,8.58915450460386,11.818736756659927,8.424493419768412,9.469478675579763,6.078896288803769,7.8959276170725055,4.772345734676207,6.032355384859553,3.377673168498832,4.153699704619318,2.0504983488327677,2.5929679007830484,1.0698653264358995,5.958221147521845,3.7809233994948053,9.7831288612612,5.788696401971425,14.916407351658952,7.787004098158495,82.68143439269816,40.79990489061202,28.865205085655326,26.531072999373656,26.531072999373656,26.531072999373656,138.0,168.0,49.599066999999984,25.834933,0.36363636363636365,129.09,10.67361111111111,5.263888888888887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,6.0,6.0,44.0,0.0,1.0,46.0,6.0,3.0,6.0,40.0,9.0,27.0,37.0,0.0,0.0,0.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,6.0,4.0,2.0,25.0,9.0,0.0,3.0,5.0,0.0,3.0,4.0,1.0,0.0,0.0,0.0,1.0,3.5263605246161616,5.589119566336061,4.069026754237811,4.480173695813406,4.904348423578298,5.275880021429101,5.302682824057676,5.383347615732612,5.363344049765109,5.30919548469522 +135398741,CC(C)[C@H](N)C(=O)OCCOCn1cnc2c(=O)[nH]c(N)nc21,0,24.13953488372093,6.595334883720929,3.116279069767442,8.69767441860465,171.0680276680228,95.27449188372096,1.2786226534181397,6.607360465116277,5.556847545219639,8.070062046511625,196.57773857087028,25.613636363636363,6.748750000000001,3.7045454545454546,7.818181818181818,156.65695271306816,96.94666427272729,1.5485424125,6.841170454545455,3.5883838383838382,8.12780909090909,237.90885539122135,21.61842105263158,6.688151315789473,3.3421052631578947,6.644736842105263,165.09387292320443,80.68219832894734,1.3081598142018287,6.730411842105265,3.6136695906432745,8.143256157894736,195.21868685234222,19.0752688172043,6.58368602150538,2.752688172043011,5.354838709677419,165.48515242882354,69.49717166666665,1.191881677365989,6.623436559139784,3.8596176821983263,8.075802365591402,173.37650409521217,15.815533980582524,6.473842718446602,2.3300970873786406,3.8932038834951457,171.73725351910758,56.199028000000006,1.008300029759466,6.487482524271845,3.7742718446601944,8.028950368932037,143.28917596849575,14.151162790697674,6.513626744186046,2.313953488372093,2.883720930232558,171.17700874037365,48.32672795348836,1.0006150805963023,6.521817441860465,3.47577519379845,8.108759534883719,139.69449087319958,14.602739726027398,6.351397260273973,2.3424657534246576,3.315068493150685,167.7243780482012,50.15654593150685,1.0851306137169727,6.385526027397259,3.2431506849315075,7.896001479452056,146.105470781571,12.5,6.125276315789475,2.1973684210526314,2.9342105263157894,171.57897862710027,43.359558736842104,0.9296021618391053,6.144148684210527,2.717470760233918,7.758441368421052,124.17428645711666,15.241379310344827,6.395481034482761,2.5689655172413794,3.913793103448276,170.25211192250842,53.775747448275844,1.0542983911359654,6.421105172413795,3.170977011494253,7.969590482758621,149.50377245113074,8.13953488372093,0.17912806922660887,0.03437207151551833,0.6154678204434827,4.6976744186046515,1.4449297373610268,38.380449546782046,0.19053787413225523,0.16402758247701452,2.008443002223424,0.11005278528934556,43.81300699812762,0.1590909090909091,-0.025186103053247463,-0.02267533484639698,0.23918334234721464,1.5454545454545454,-0.5607070995647712,0.7949543623088705,-0.032031916533143204,-0.017720235753970266,-0.2767951281336895,-0.01849270072274939,-1.4697227608921037,0.9868421052631579,0.02329276920668353,0.004512826488789131,-0.004084711508354396,0.8289473684210527,0.2479235994169208,4.660544584490909,0.022245322180210154,0.020635330619680602,0.15595418259909738,0.01237054029204975,4.791481467658943,0.021505376344086023,0.010113791238507294,-0.001678763875559516,-0.03482265915316036,0.40860215053763443,-0.29558022853743654,-0.011343334478966127,-0.031413730110202,0.009165040678774319,0.0858166738066946,0.005271578801677163,-4.976470234829519,0.3592233009708738,0.004584823074136102,0.0025086659991526298,-0.02075118011835314,-0.14563106796116504,0.04063769565549216,1.6660822813958744,-0.007820252516627593,0.005079687787153374,-0.017129437586310144,0.0002935944803541148,0.3190983236071964,-1.5232558139534884,-0.04425265008112493,-0.003513884271483689,-0.05813953488372094,-1.3488372093023255,0.03745858736672699,-6.979464339102217,0.018088827193619775,-0.04164537587885342,-0.4851496304308635,-0.026042128718226053,-1.020436848779601,-1.3972602739726028,0.007759665720826522,0.002160298093549455,-0.009223793683368285,-0.1095890410958904,-0.053756225474182434,-6.834019914096474,-0.04674533066571911,0.003473118383131961,0.0006982671121746825,0.009847023566978082,-11.691998881252308,1.394736842105263,0.014016667615496274,0.001153726705775421,0.07884062508895276,0.5394736842105263,-0.000899792913296107,6.646088940366055,0.022049990217327342,0.014857790839998877,0.04877004007223758,0.004428558651902871,7.135158969185052,-0.20689655172413793,-0.03598079577031386,-0.006800360014142756,0.05293634956453628,-0.017241379310344827,-0.008112894322431763,-0.7682637576882201,0.015216592340502532,-0.030054527144215894,-0.2742030485568466,-0.02503064254676339,3.7254695335549353,,,0.4449275362318841,1.141304347826087,0.43478260869565216,0.043478260869565216,0.7065217391304348,-0.2717391304347826,0.8176819400321894,0.022498215515555194,0.029976476385120406,0.8648666761189092,0.22805900191426975,0.24571293745596182,1.6825486161510985,0.4737719393702316,1.9853208966294138,1.1439829799186432,0.5141710762394837,0.32716684047128713,0.0,0.841337916710771,7.5384791423255955,1038.0,283.59939999999995,134.0,374.0,7355.925189724981,4096.803151000001,54.980774096980014,284.1164999999999,238.94444444444446,347.0126679999999,8452.842758547422,1127.0,296.94500000000005,163.0,344.0,6892.905919374999,4265.653228000001,68.13586615,301.0115,157.88888888888889,357.6235999999999,10467.98963721374,1643.0,508.29949999999997,254.0,505.0,12547.134342163536,6131.847072999998,99.42014587933899,511.5113000000001,274.63888888888886,618.887468,14836.620200778008,1774.0,612.2828000000003,256.0,498.0,15390.119175880589,6463.236964999998,110.84499599503698,615.9795999999999,358.94444444444434,751.0496200000003,16124.014880854731,1629.0,666.8058,240.0,401.0,17688.93711246808,5788.499884000001,103.85490306522499,668.2107,388.75,826.9818879999998,14758.785124755062,1217.0,560.1718999999999,199.0,248.0,14721.222751672134,4156.098603999999,86.05289693128199,560.8763,298.9166666666667,697.3533199999998,12013.726215095165,1066.0,463.652,171.0,242.0,12243.879597518688,3661.427853,79.21453480133901,466.14339999999993,236.75000000000006,576.4081080000001,10665.699367054684,950.0,465.52100000000013,167.0,223.0,13040.00237565962,3295.3264639999998,70.649764299772,466.9553,206.52777777777777,589.641544,9437.245770740867,884.0,370.9379000000001,149.0,227.0,9874.622491505488,3118.993351999999,61.149306685885996,372.4241000000001,183.91666666666666,462.236248,8671.218802165584,350.0,7.702506976744182,1.4779990751672885,26.465116279069758,202.0,62.13197870652415,1650.359330511628,8.193128587686974,7.053186046511624,86.36304909560722,4.732269767441859,1883.9593009194878,7.0,-1.1081885343428883,-0.9977147332414671,10.524067063277444,68.0,-24.67111238084993,34.977991941590304,-1.409404327458301,-0.7796903731746917,-12.178985637882338,-0.8136788318009731,-64.66780147925256,75.0,1.7702504597079483,0.34297481314797396,-0.3104380746349341,63.0,18.84219355568598,354.20138842130905,1.6906444856959717,1.5682851270957257,11.852517877531401,0.940161062195781,364.1525915420796,2.0,0.9405825851811783,-0.15612504042703498,-3.2385073012439136,38.0,-27.4889612539816,-1.0549301065438499,-2.921476900248786,0.8523487831260117,7.980950664022598,0.4902568285559762,-462.8117318391453,37.0,0.4722367766360185,0.25839259791272084,-2.1373715521903733,-15.0,4.185682652515693,171.60647498377506,-0.8054860092126421,0.5232078420767975,-1.7643320713899446,0.030240231476473825,32.867127331541234,-131.0,-3.805727906976744,-0.30219404734759725,-5.000000000000001,-116.0,3.221438513538521,-600.2339331627907,1.5556391386513007,-3.581502325581394,-41.72286821705426,-2.2396230697674406,-87.75756899504567,-102.0,0.5664555976203361,0.1577017608291102,-0.6733369388858848,-8.0,-3.924204459615318,-498.88345372904257,-3.4124091385974955,0.25353764196863315,0.050973499188751825,0.7188327203894,-853.5159183314186,106.0,1.0652667387777168,0.087683229638932,5.99188750676041,41.0,-0.06838426141050413,505.1027594678202,1.675799256516878,1.1291921038399146,3.706523045490056,0.3365704575446182,542.2720816580639,-12.0,-2.086886154678204,-0.3944208808202798,3.070308274743104,-1.0,-0.4705478707010422,-44.55929794591677,0.8825623557491469,-1.7431625743645218,-15.9037768162971,-1.4517772677122767,216.07723294618626,0.738381008008519,0.564465462515787,0.454031441896472,0.29600700209278563,0.30113416010722915,0.1609813322301984,0.19242291119322738,0.07770412618586114,0.12155728696376887,0.03668847892976445,0.076134695440528,0.018907505370984193,0.05262164779856214,0.009913708838582069,0.034159579918906724,0.005259246879472731,8.029428774584046,5.758956561804106,3.5557389062709164,2.2410171567034074,0.5037533091092764,-0.4916025758705931,3.2696618709568277,0.977124519000664,6.028684107337312,0.9889328124612994,14.565634196897078,11.036108157057521,16.01484694280298,11.7836424680785,1.939972270925977,0.7413489839410725,3.501881574727294,2.285772093862257,7.009364033651376,1.2052928670378071,3.714732992825008,2.4792214121457308,20.800860309984458,14.700620821933514,0.3117862091914422,0.6644373047936033,0.8359255277286396,0.8524933038731985,0.8524933038731985,0.8524933038731985,1.6323221631994853,737.6302383315938,0.0,3.0,4.0,0.0,1.0,1.0,0.0,1.0,0.0,3.6756756566955437,1.695642078680076,0.7327854652169048,0.639762209402952,0.639762209402952,0.639762209402952,210.21050083265226,1725.551331818419,77.5803952092943,40.129100739963235,80.59598467097794,,13.0,504.0,17.570413012151818,9.589074368143644,37.32752672128947,5.647177220767728,0.0,10.894419722555895,0.0,13.847474399381248,14.951935562841626,20.94106086192447,10.233333333333334,26.25,10.0,1.0,16.25,0.0,0.0550724637681159,-6.25,0.20377183848200836,0.015159345391903445,-0.18861249309010492,0.11387163561076596,0.23950231839258096,0.0,0.6410852713178297,0.9376811594202897,0.4373134328358213,0.6259259259259262,0.8238095238095238,18.806684620740356,0.5174589568577694,0.6894589568577694,19.89193355073491,5.2453570440282045,5.651397561487122,38.69861817147527,10.896754605515326,0.474497681607419,0.2410423452768729,0.0,0.38110749185667747,0.5384615384615384,0.30681640334414834,-0.9730883967621748,-0.07607834241943856,-0.022629962715399424,-0.07485295359709039,0.6931835966558516,2.198477354468818,0.06651453202925674,0.05112738033648413,0.07328257848229393,-1.8716119164309803,0.8045454545454545,0.9113809572666521,1.7654467299741674,0.8656334877776005,0.4725472547254726,1.8253798528907579,0.8097725872738866,1.4055906735900485,0.8633854461885341,0.778448275862069,0.9401986862188073,1.1042476419834855,0.8115789473684211,0.8415417991204823,0.9590517134316839,1.284212838775322,0.8248436685773841,0.9947688863620273,0.8121884712000319,0.9578650360596209,0.8339517866783469,0.6192747558176614,0.8774551155890942,0.8914721931669036,0.9438709677419354,0.9249715737370919,1.0979572659886268,1.1006576336527019,0.8965186841264772,1.2959290207816405,0.9471063106734978,1.2152188859867146,0.9172500826163063,0.8814896764059367,0.9557032943403891,1.1096189155209055,0.9704854368932038,1.053115201188012,0.9659043585685032,0.9552783797157339,1.0819955781985966,0.8783869657716122,0.9685305913205686,0.9658913311802273,1.0450798645942754,1.1503518863738529,1.0920104747395498,0.9387088192143831,1.2327906976744185,1.4643065471284191,1.1614949355700122,0.9688049209138844,1.3877504029472716,0.8221721276315486,1.2214838696233385,0.835563167834958,1.4610166278145784,1.5832859600568483,1.5242689579119317,0.9597009049719727,1.1194520547945204,0.8608318088796252,0.8204963929757799,0.7608878830921831,0.9043130340431303,1.050219849423557,1.1276417324957329,1.2617464283364297,0.8853335041256415,0.7508522578814,0.809549941274736,1.2673202463567328,0.855,0.9256041429039572,0.8001203176159896,0.668208306354639,0.9069176654507556,0.7782716515407518,0.8522365121831875,0.8302149430493736,0.9244405681052844,0.6979283377491526,0.9801462403864568,0.8315630042691848,1.0282758620689654,1.2509782846818263,1.2127684540054593,0.8755832979819409,1.0001707067258452,0.9241402451321862,1.0210222540643852,0.8809659149227314,1.2316847544996359,1.09701290427417,1.3002009225199933,0.8828578202800075,5.0,0.17294357718600145,3.1111111111111125,1.8194444444444444,1.1694444444444447,0.5280555555555556,0.2792290249433106,0.20921910430839,0.18090199042579994,0.17031635802469142,4659.5952774474345,5224.946696442866,2324.7633891606692,2114.6130620406675,13.02355480054726,0.4884204151484096,6.662584758155904,0.9547300744811792,0.0,0.5384615384615384,1.7505890980065542,3.730622676022022,4.693479289485193,4.786502545299146,4.786502545299146,4.786502545299146,0.20833333333333331,0.010173151599176556,0.09427609427609432,0.055134680134680134,0.04176587301587302,0.02640277777777778,0.016425236761371212,0.013076194019274375,0.011306374401612496,0.010018609295570082,0.4869123246147633,19.32638888888889,8.909090909090908,5.234979179060083,131.34059646998088,1.0,4.039853737884003,128.89998869480453,,99.02712324693005,95.98762704863883,99.73387449971737,99.07212072636166,180.6335521052875,98.02075260357098,99.1818084970061,143.31549346737222,0.019545454545454546,-0.1406038883910783,-0.6597023061632901,0.3886203866432338,0.32898289828982896,-0.38805146372641525,0.020712481789456328,-0.16811312018160424,-0.1080320485516723,-0.13781577462107047,-0.16803482687084437,-0.033545352432781284,0.1212406015037594,0.13003416665657594,0.13129341031283714,-0.0066367588567199315,0.17645909327774884,0.17158176830779365,0.12143017185898662,0.11675013317703618,0.12580402824977482,0.07764929471558321,0.11240551758436385,0.10936207751875396,0.002642089093701997,0.056461230683576884,-0.04884092815882761,-0.05657917115482736,0.08697966570850633,-0.2045637382183543,-0.00029554980759513257,-0.16486869213412791,0.05587499699971883,0.042727960769457854,0.04790045783773103,-0.11358431150462218,0.044133148404993064,0.025595224098217663,0.07298559232951715,-0.03371610899721878,-0.03100067288282226,0.028124340308554756,0.04340966041487038,-0.041043034369111504,0.03096849755659357,-0.008528714814085934,0.0026677605621903177,0.0072831870138663005,-0.18714285714285714,-0.24704475558848565,-0.10223079717197833,-0.09446397188049215,-0.2871287128712871,0.025924158385126843,-0.1818494681933031,0.09493559889864231,-0.2538925176483002,-0.24155509013389187,-0.2366330724820578,-0.023290728454753405,-0.17166340508806263,0.043319094290074835,0.06285038981645669,-0.014986638418759196,-0.0233283602332836,-0.03720334912087911,-0.17805992360163647,-0.24533353737993566,0.021173989951468408,0.0003476658841708099,0.08947545980857054,-0.2668613656613885,0.1713533834586466,0.07824942051803316,0.03356581826191463,0.12809869577282398,0.11483845752996354,-0.0006227243374058173,0.17316339487543303,0.11572497235915476,0.09058105115998358,0.024282511387302134,0.04024031413888813,0.16285481088960588,-0.02541871921182266,-0.20086631830322338,-0.19784550986612845,0.08600993879158841,-0.0036701946056674636,-0.005614732753198707,-0.02001705990316192,0.07986124758556121,-0.18322849541739417,-0.1365251830663321,-0.22744215406228943,0.08503113090854836,2.406851949670727,6.440236185841492,4.921652852707192,17.437090442246323,36.894702942942416,39.678890316290044,39.7726577581505,39.7726577581505,39.7726577581505,45.66238062247652,26.311608538128795,11.825934753508124,7.524837330839604,0.0,19.35077208434773,5079.9284582911205,4483.2076633399165,871.1945853070579,45.0,33.0,41.0,49.0,53.0,55.0,53.0,55.0,48.0,324.1546031200006,24.0,4.74493212836325,5.572154032177765,6.434546518787453,7.284134806195205,8.153925132007862,9.01371703047137,9.888627689629104,10.755197095695797,11.634124880372074,0.6666666666666667,1.0132093023255815,1.156624890616942,0.6279921699682268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6246185767998887,0.995440036479708,1.027439489151239,0.6005873453912023,1.0,2.0,1.0,0.0,0.0,2.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,2.0,0.0,3.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,20.94106086192447,19.379539541160362,11.16387793838399,5.948339280986494,5.559266895052007,19.140152536882205,4.9839785209472085,4.9839785209472085,0.0,13.847474399381248,5.917906046161393,0.0,12.934202039277459,166.92936389817663,-529.4274534142322,-41.391885075517294,-12.312266358470522,-40.725188724171716,377.1398647308289,1196.1238784041866,36.188510133777,27.81683438149271,39.87079594680622,0.46153846153846156,0.7121514260361668,0.14569111595429968,14.386384119589465,0.10176559716902522,26.231303033955214,0.28784857396383323,7.0,0.2916666666666667,0.32261402219447394,0.6875120998822022,0.8649558216668448,0.8820989689364918,0.8820989689364918,0.8820989689364918,-0.7975999999999985,,1.8571428571428572,2.2568636575151233,2.0440342562590925,1.8520633872879002,-7.4382679664475155,2.0019889840881278,1.8355571595482634,-3.5119256816926754,82.28550000000001,14.268263091671919,0.0,19.51903521063298,11.651573523323577,26.620131976028695,18.94743140618802,16.68112415388837,0.0,0.0,3.8918202981106265,0.0,5.198497031265826,2.3978952727983707,6.683360945766275,4.727387818712341,8.258681496264236,6.842683282238422,9.88730735630709,28.666666666666668,1.4236444423448391,7.9552350286865074,2.3600792223171925,0.0,0.0,0.5020458208918712,0.0007898803149735123,1.530364963886789,43.568000000000005,0.0,23.167372714450185,0.0,0.0,0.0,0.0,0.0,-0.46050487307972765,49.734870296528506,17.026601849376377,5.948339280986494,0.0,44.743945256758636,20.999079839171404,5.917906046161393,13.847474399381248,11.121857258836364,0.0,11.16387793838399,0.0,27.00366330863375,26.858598802395214,28.210047164235768,257.79997738960907,,197.8927558106303,191.77900508358067,199.29000689019483,197.9831924625244,362.26460656529457,195.86741920852563,198.20400332796453,287.03913854508926,28.210047164235768,257.7999773896091,,196.1991070271374,189.73929676474324,197.47577783351238,196.2940831884838,368.7053721770223,194.0478283725102,196.5293692689109,290.1429126164371,4.784259817945903,203.22401326340412,,158.09530342101576,153.11953566730145,160.43093250690933,158.17246589382756,298.57753091945733,156.4997052776735,158.34341267443426,233.02387415491614,1.2265237897493813,11.208694669113438,,8.604032861331751,8.338217612329595,8.664782908269341,8.607964889674975,15.750635068056285,8.515974748196767,8.617565362085415,12.479962545438664,2.448992131617499,128.89998869480453,,99.02712324693005,95.98762704863883,99.73387449971737,99.07212072636166,180.6335521052875,98.02075260357098,99.1818084970061,143.31549346737222,42.803921568627445,0.0,3.680525196034895,0.0,0.0,11.15922813535763,0.0,44.17989803350328,0.3582471970269592,0.0,10.374174094020324,0.0,-0.637176887752597,0.0,0.0,0.0,0.0,25.825255851821698,387.45967703054356,75.27533121428183,160.41677506894695,201.81960944786331,205.8196094478633,205.8196094478633,205.8196094478633,479.0,120.48135931369987,156.609551598462,70.88763350146318,151.14000000000004,151.14000000000004,0.8571428571428571,8.09408865367433,5.584962500721156,3.4618985627543912,4.735769118603778,,4.726426688551319,4.724636604496266,4.727405188777552,4.726454219731378,4.749090647851416,4.7258885555649215,4.726509302797086,4.742249325674289,0.1505173288154083,0.205903005156686,,0.20549681254570953,0.20541898280418547,0.2055393560338066,0.2054980095535382,0.20648220208049634,0.20547341545934442,0.20550040446943854,0.20618475329018646,2.0747262790733783,2.388053269033664,,2.3860785829716393,2.3856997718218342,2.386285589028532,2.3860844079006376,2.390862280096592,2.385964720288671,2.386096062037581,2.3894206873644785,234.16999999999973,1413.5423685093376,122.71167935818805,,123.00780674514951,123.11693167455543,122.85941669986371,123.00585872004737,121.27053628139149,123.03675849285213,123.00312782714735,121.86895246966705,61.45836384823207,5.335290406877741,,5.348165510658674,5.352910072806758,5.341713769559292,5.348080813915103,5.272632012234412,5.349424282297918,5.3479620794411895,5.298650107376829,8.086763273803712,5.642746656415343,,5.64515694576618,5.646043690733444,5.643949870978219,5.645141109043464,5.630933009803901,5.645392283196277,5.645118907473201,5.635855430260259,11.904539057907114,33.48268696545389,0.0,11.24724902174966,-0.4501259398282502,-0.6467659406891009,1.4236444423448391,4.038772393061854,0.0,274.85052561597524,90.82113025161154,-288.04518619410015,-22.520050984537143,-6.698725260327912,-22.15732201493078,205.1901952893496,650.7741958681003,19.689054793717006,15.134283624839542,21.69247319560334,1440.0,33.0,1.7246952720916284,0.7904404517305353,0.0,0.0,0.5483548353823,0.15526619336781028,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.24719387459906544,0.061731540599665534,0.49138527681618005,0.0799617878607432,16.98276318419594,12.9827056378631,10.896754605515328,7.104168050226855,9.937427283538563,5.312383963596547,7.889339358922323,3.185869173620307,5.956307061224675,1.797735467558458,4.035138858347985,1.0020977846621621,2.8941906289209176,0.5452539861220138,1.8104577357020564,0.27874008461205474,3.9487474017981405,1.2923050652968184,5.51076058852073,1.186402622703956,7.181777757361216,1.1984105185202496,77.82072808380977,32.794222044581936,25.53104123406802,25.07964314016996,25.07964314016996,25.07964314016996,114.0,131.0,44.85385999999998,28.69214,0.20930232558139536,70.1,9.138888888888888,5.138888888888888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,43.0,0.0,1.0,44.0,10.0,2.0,5.0,39.0,12.0,24.0,32.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,9.0,3.0,2.0,23.0,10.0,0.0,6.0,4.0,0.0,2.0,7.0,0.0,0.0,0.0,2.0,2.0,3.4657359027997265,6.009954655953052,4.06474409244581,4.6359418446548455,5.226754230473501,5.65730214077366,6.017794537974802,6.237454495610109,6.5341691707575285,6.358119795151175 +3033968,C#C[C@]1(O)C=C[C@H]2[C@@H]3CCC4=CC(=O)CC[C@@H]4[C@H]3CC[C@@]21CC,0,18.571428571428573,5.74673469387755,3.2653061224489797,4.938775510204081,160.02944902296886,72.81428993877552,1.4574131331851836,5.837953061224489,3.6896258503401365,7.341516979591836,206.83293562997602,21.5,6.013461538461538,4.269230769230769,4.9423076923076925,141.59613793285865,80.10521296153844,1.8843395333846151,6.181192307692307,2.533520299145299,7.470233076923076,263.8518016543075,18.15686274509804,5.859313725490196,3.9019607843137254,3.843137254901961,146.95823445995484,66.48971008823528,1.650333224102843,6.004509803921569,2.280773420479303,7.370704588235294,224.73196914275226,14.801242236024844,5.772732919254659,3.1552795031055902,2.527950310559006,152.78755614591256,52.513507956521735,1.4255405383516833,5.890254658385093,2.303140096618357,7.341316248447203,187.5806968464125,11.819095477386934,5.701206030150754,2.5829145728643215,1.5477386934673367,155.43480967029203,39.37842969849246,1.283527332505347,5.804645728643216,2.1986320491345617,7.303761366834171,160.25834866203556,8.774647887323944,5.5282159624413145,2.131455399061033,1.1173708920187793,161.69107395969922,27.57681527230047,1.0732711698055444,5.6074295774647895,2.009259259259259,7.192168807511736,126.02733769330936,8.071005917159763,5.445917159763314,2.0,1.2071005917159763,165.38399011843566,25.730980579881656,0.983875690206071,5.512254437869822,1.9357330703484548,7.140470485207103,114.2831621790391,9.303571428571429,5.5566071428571435,2.0625,1.5892857142857142,164.61570496566213,30.71743073214285,1.025282344277268,5.623133928571428,2.2176339285714284,7.2367826428571425,123.9377370351007,10.373333333333333,5.698800000000001,2.04,1.9466666666666668,162.28682166744568,34.287832599999994,1.0739862916850131,5.769873333333333,2.666666666666667,7.353080159999999,132.86608644992037,6.816326530612246,0.07456059975010411,0.008398327549088837,0.7313619325281133,2.8979591836734695,1.340454681844856,32.67637616576426,0.2424415143838825,0.07501391087047057,1.3364281086584295,0.04424169596001664,53.605026904176526,0.28806907378335994,-0.0026846185884086497,-0.004110723121284032,0.3439912856822478,0.911695447409733,0.14850929939465363,1.4498033004837612,0.025864957673387406,-0.0021460537276134597,-0.049659074121537645,-0.0017943333226540501,4.648067312381496,0.36574629851940804,0.003918792006598569,5.7919570783449347e-05,-0.009473177025912412,0.26770708283313305,-0.00710291407556869,1.7218434836955123,0.0003830092840453867,0.0044489542755878,0.09584757939456962,0.0015198598623122588,1.3158714739204993,-0.04170363797692974,-0.0002431957698784853,0.0007261056320347055,-0.17387682668453364,-0.3380656610470275,-0.04393705348124844,-0.21551759344838495,-0.007232335854295929,-6.391720840952882e-05,0.07494109740909081,-0.0004605500606631369,-1.0575620958663978,-1.425084606707004,-0.009387796960646622,-0.0006368983107555622,-0.13060303600467976,-0.682801763921649,-0.2277631602011455,-6.844135427788675,-0.043279443721788415,-0.010966069623419032,-0.0926083864646943,-0.0038566597586014184,-10.760319747231515,-0.6694452428858867,-0.004464786777027576,-0.0001769839765463033,0.009463975299806615,-0.17514611478394165,-0.11404903890298108,-3.2176418397127153,-0.021450517986114116,-0.005152168990620111,-0.09554497919381102,-0.0019252207276701815,-5.189506556100446,0.6950851346455739,0.003335789574856609,0.0001780016559986695,0.059846858680677927,0.30624320734210847,0.10264542524873363,3.341574271381013,0.019956495027858324,0.004390122458837387,-0.0491204834387163,0.000820638540647536,5.199964737981697,0.732142857142857,0.0010844439816742899,0.00026662617179896547,0.019913577675968346,0.1862244897959184,0.13921069304466058,3.5454981516555635,0.026379398586885323,0.002455549770928759,-0.0951263796334861,-0.000732230945439391,6.327210102476273,-0.18013605442176883,-0.003703456892961263,0.0001468641593076446,-0.01054560599750105,0.00653061224489799,-0.05833645082679992,-0.8633777380091613,-0.009795688620723352,-0.0032496387616270978,-0.12589900812932878,-0.002758855143690138,-1.7050942890427752,,,0.4855072463768116,0.8260869565217391,0.2391304347826087,0.0,0.5869565217391305,-0.34782608695652173,1.311260672900296,0.016106146817314405,0.03106266855644484,0.48179077519468455,0.10844761077187748,0.3717163972965949,1.7930514480949806,0.48016400806847237,2.069452747810142,1.9153102069193042,0.0,0.15414254089083745,0.0,0.15414254089083745,6.330475103510219,910.0,281.59,160.0,242.0,7841.443002125474,3567.900207,71.413243526074,286.05969999999996,180.79166666666669,359.73433199999994,10134.813845868825,1118.0,312.7,222.0,257.0,7362.999172508649,4165.471073999999,97.98565573599998,321.42199999999997,131.74305555555554,388.45212,13720.29368602399,1852.0,597.65,398.0,392.0,14989.739914915393,6781.9504289999995,168.33398885849,612.46,232.63888888888889,751.811868,22922.66085256073,2383.0,929.4100000000001,508.0,407.0,24598.796539491923,8454.674781,229.512026674621,948.3309999999999,370.8055555555555,1181.9519159999998,30200.492192272413,2352.0,1134.54,514.0,308.0,30931.527124388114,7836.30751,255.42193916856402,1155.1245,437.52777777777777,1453.448512,31891.41138374508,1869.0,1177.51,454.0,238.0,34440.198753415934,5873.861653,228.60675916858096,1194.3825000000002,427.97222222222223,1531.931956,26843.822928674894,1364.0,920.3600000000001,338.0,204.0,27949.894330015628,4348.535718,166.274991644826,931.5709999999999,327.13888888888886,1206.7395120000003,19313.854408257608,1042.0,622.34,231.0,178.0,18436.958956154158,3440.3522419999995,114.83162255905401,629.7909999999999,248.375,810.5196559999999,13881.026547931278,778.0,427.4100000000001,153.0,146.0,12171.511625058427,2571.5874449999997,80.54897187637599,432.7405,200.00000000000003,551.481012,9964.956483744028,334.00000000000006,3.653469387755101,0.41151804990535307,35.83673469387755,142.0,65.68227941039794,1601.1424321224488,11.879634204810243,3.675681632653058,65.48497732426304,2.1678431020408153,2626.64631830465,14.979591836734716,-0.13960016659724978,-0.21375760230676963,17.887546855476884,47.408163265306115,7.722483568521988,75.38977162515557,1.3449777990161451,-0.1115947938358999,-2.5822718543199574,-0.0933053327780106,241.69950024383778,37.30612244897962,0.39971678467305405,0.005907796219911833,-0.966264056643066,27.306122448979572,-0.7244972357080064,175.62803533694225,0.03906694697262944,0.4537933361099556,9.776453098246101,0.1550257059558504,134.21889033989092,-6.714285714285689,-0.03915451895043613,0.1169030067575876,-27.994169096209916,-54.42857142857143,-7.073865610480999,-34.69833254518998,-1.1644060725416445,-0.01029067055393414,12.06551668286362,-0.07414855976676504,-170.26749743449005,-283.5918367346938,-1.8681715951686777,-0.12674276384035688,-25.990004164931275,-135.87755102040816,-45.32486888002796,-1361.9829501299464,-8.612609300635894,-2.182247855060387,-18.429068906474164,-0.7674752919616823,-2141.3036296990713,-142.59183673469386,-0.9509995835068737,-0.0376975870043626,2.015826738858809,-37.30612244897957,-24.29244528633497,-685.3577118588083,-4.568960331042307,-1.0974119950020835,-20.35108056828175,-0.4100720149937487,-1105.364896449395,117.46938775510198,0.5637484381507669,0.03008227986377515,10.11411911703457,51.75510204081633,17.347076867035984,564.7260518633911,3.372647659708057,0.7419306955435184,-8.301361701143055,0.1386879133694336,878.7940407189067,81.99999999999999,0.12145772594752047,0.02986213124148413,2.2303206997084546,20.85714285714286,15.591597621001986,397.0957929854231,2.9544926417311563,0.275021574344021,-10.654154518950442,-0.08200986588921179,708.6475314773426,-13.510204081632661,-0.27775926697209474,0.011014811948073345,-0.7909204498125787,0.48979591836734926,-4.375233812009994,-64.7533303506871,-0.7346766465542514,-0.24372290712203235,-9.442425609699658,-0.20691413577676035,-127.88207167820813,0.7061859220952079,0.6053918046863767,0.4247604686759564,0.35278898585264185,0.25256018400123226,0.19612450798045716,0.15944193673396342,0.11960973670791288,0.09954375731769961,0.0733065410431864,0.06169361441214305,0.0441043731527871,0.03840082106307241,0.0261613025401289,0.024356185491982464,0.015775962513814683,8.022044324667114,5.66898030602976,3.543289586245069,2.1686694686281487,0.3588109583770403,-0.38590808752779565,4.116515944516502,0.911421690632972,6.021897566092145,0.9880017137229371,13.63680018014024,10.929334539712492,16.010198705372172,11.680166886197231,2.0085189036544406,0.7527794569113653,3.488369134469649,2.2186031967324085,7.008270475185912,1.080202140379569,3.701459696715059,2.4146148715787916,20.91705763858677,14.702558669197508,0.20527746815164516,0.5546226345449814,0.766751964269145,0.8759822396699934,0.8969750887198605,0.8969750887198605,1.6013031051121174,636.7172353770819,1.0,0.0,1.0,1.0,4.0,7.0,1.0,5.0,1.0,4.417348950000457,2.3796570174480456,1.1423299683885118,0.5052017857584383,0.382752806166601,0.382752806166601,185.22539036819265,748.6927815317854,44.95912587868626,15.279444521056845,29.56097465426392,,11.0,418.0,5.601050810983688,9.901064578912528,5.41499046939678,35.87569075393652,38.524929737556064,5.573104530069267,0.0,12.152040213667762,18.92019162538015,6.423349895620259,11.166666666666666,19.0,5.5,0.0,13.5,0.0,0.014492753623188432,-8.0,0.07301587301587292,0.030743525480367573,-0.04227234753550535,0.019444444444444486,0.0807296786389411,0.0,0.5190476190476193,0.7666666666666664,0.4460317460317464,0.48830409356725174,0.7472222222222219,30.15899547670681,0.3704413767982313,0.7144413767982313,11.081187829477745,2.494295047753182,8.549477137821683,41.240183306184555,11.043772185574865,0.6332703213610589,0.14925373134328357,0.08955223880597016,0.26865671641791045,0.6666666666666666,0.3186879085749154,-0.4671167885332101,-0.053158447591646556,-0.009532995684351227,-0.024585094133326855,0.6813120914250845,0.9986331692296296,0.034860080813172684,0.020380268759788357,0.03328777230765432,-3.1059771765979516,0.9424228466144632,0.7503931662126274,1.3358635419949545,0.9401612055370597,0.6078006500541712,1.0385040023017993,0.9463978857937727,1.0367738055799425,0.7765341487511024,0.7092055245333376,0.7174104202029786,1.0157198855494314,0.9122930609369494,0.6176240577786245,0.6886610189031073,1.5954709902184108,0.8997514498757249,1.0983622270033129,0.9190330829571848,1.091234996899945,0.6534522281810154,0.49213003500676117,0.5787086924684658,1.0439383462431466,0.9814408450180383,0.8515346840042161,0.7130502176928003,1.5681885708626324,1.1012159916017845,1.0684989456069425,0.9844955637252264,1.0647747419501912,0.86677192372941,0.724487754607748,0.8359011578376179,1.0419726891891183,1.1775042879065987,0.9998894034466825,0.9616998996693283,1.1307562871304129,1.1253450350343266,1.1753108896901676,1.1796715945917189,1.184252171939385,1.0341685574970712,0.8606574562020642,0.9418123781258051,1.2001105708106066,1.0481572067133336,0.8866740831538216,0.8532124536561134,0.7514517629696172,0.914897837730609,1.0322541436491617,1.0498971311728678,1.0419934684962013,0.9193826027962315,0.8493986021386923,0.8296607908764367,1.0618081483316182,0.843992488395989,0.7840160664340169,0.8014683054447496,0.7093313205105741,0.7780648387365613,0.8400231653527938,0.8446708228377481,0.8434161874360963,0.7959494583925716,0.841438451393559,0.7634272878529088,0.850023913780945,0.8725406330196747,1.0510557479611213,1.0329447770401283,0.837129840546697,0.9627766599597585,0.8216455533004272,0.8694822222371363,0.8188059036550542,1.022492565588279,1.1461189191060939,1.0933506069683938,0.8234696371909258,1.0404790419161676,1.3506066361300413,1.334638395945941,0.821503416856492,1.1199999999999999,0.9872786777079195,1.0357495096558493,0.9782685611530133,1.297078603774172,1.5177357151204818,1.434746489297102,0.9727062938712098,6.0,0.02887460463218039,5.1111111111111125,2.8888888888888893,2.1433333333333335,0.9272222222222224,0.6212698412698414,0.3646187641723356,0.1970269589317208,0.14156635802469136,4323.590185482282,5116.107218835444,2111.234587606027,1846.9440650537786,11.329073482747473,0.46873098092911175,6.018785756161262,0.8822855542166822,1.0,0.7368421052631579,1.1973608941147518,3.2350528266671628,4.472379875726697,5.10950805835677,5.231957037948607,5.231957037948607,0.23076923076923075,0.007218651158045097,0.12466124661246618,0.058956916099773236,0.05103174603174603,0.03197318007662835,0.028239538239538245,0.0202565980095742,0.01515591991782468,0.01769579475308642,0.5859588216679132,16.467455621301774,5.771564544913741,2.2171831695641218,138.59054388137537,1.0,4.108443834240388,95.03797504763973,,87.85193200087951,87.73917544233912,88.09624080226588,87.85425576846531,92.37386044019269,87.82435384385809,87.85669479467002,89.98144778119782,0.04226163058498393,-0.036005860969551835,-0.48946925411715064,0.4703434378833012,0.314599133261105,0.11079024259907212,0.04436854604467282,0.10668534940939514,-0.028608743401195732,-0.03715805870873803,-0.04055751669817712,0.08670954163851657,0.05365739110015267,0.05255848289488977,0.006896560112106276,-0.012952789316182062,0.09237779618889803,-0.005298884156078304,0.05269383223405062,0.0015798007408868468,0.059308389923436754,0.07171921839535836,0.03435356238797513,0.02454753872752885,-0.006118198385836997,-0.0032617196038333333,0.08645836064270714,-0.23774388432207588,-0.11665646050214329,-0.03277772391437976,-0.0065955169678266635,-0.029831260016154784,-0.0008520714047278129,0.05607566686420587,-0.010409864510604617,-0.019728785842359122,-0.20906929858875206,-0.12590828121166653,-0.07583632658203018,-0.17857510788566977,-0.23561469318423098,-0.16991485298680675,-0.2094520944755013,-0.17851498672483804,-0.1461871471060157,-0.0692954494631657,-0.08717251169771766,-0.20073340820193014,-0.09821202665092348,-0.0598813152253559,-0.02107371682180994,0.012940207684986152,-0.06043774383389536,-0.08508235335939623,-0.09846997180439816,-0.08847708298071967,-0.06868284736569143,-0.07149279379473966,-0.043515979346951277,-0.09681007278248593,0.10197356765758417,0.0447393071680858,0.021194893263954857,0.08182933239880848,0.1056754729560797,0.07657508055957822,0.1022626944441303,0.082314677329804,0.058524111166767215,-0.036755051110101085,0.01854898468153632,0.09700516981881324,0.10741017964071853,0.014544464305664008,0.031747531903288606,0.027228075170842823,0.0642605633802817,0.10385333792341725,0.1085034072832794,0.10880726699766492,0.032734592056783335,-0.07117957113980378,-0.016550697923089195,0.11803389472757267,-0.02642714570858285,-0.04967042788515246,0.01748731023518824,-0.014419134396355364,0.002253521126760574,-0.043519897850266734,-0.02642207733285127,-0.040404336879420875,-0.04332048181354489,-0.09420559722865471,-0.06235871125246756,-0.031808477441691685,14.881247710037634,22.67323969010991,6.631975707865092,9.794855915911054,28.7696487006443,33.52203506283567,35.06246435255943,35.185892923988,35.185892923988,47.59741319963326,44.052134759143996,0.0,3.545278440489261,0.0,3.545278440489261,3532.3197072560242,3281.2460364070894,790.81911532291,240.0,41.0,63.0,87.0,113.0,137.0,173.0,207.0,234.0,310.19328007200073,26.0,4.90527477843843,5.8377304471659395,6.792344427470809,7.742835955430749,8.703008637464448,9.66007751636045,10.622814044879377,11.583467802081742,12.547770490560348,0.5714285714285714,0.9526530612244898,1.118725255987851,0.5274705669462856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6600344372479531,0.9414165666266507,0.9837388706392972,0.601497135878573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,7.0,0.0,0.0,0.0,4.0,0.0,2.0,0.0,1.0,5.106527394840706,5.601050810983688,5.783244946364939,0.0,0.0,4.794537184071822,0.0,0.0,6.423349895620259,24.493296155449418,74.3485941358694,11.83581209232279,0.0,162.78311007129255,-238.5993367115008,-27.15288905758992,-4.869374218602058,-12.5578598269211,348.0085004394852,510.0934448202846,17.806236821096338,10.410070302454788,17.00311482734282,0.45454545454545453,0.8433780846848347,0.25474507549430336,56.606638097709855,0.14502990532668245,120.66052116657978,0.15662191531516528,6.0,0.038461538461538464,0.21325427802288105,0.576174533766483,0.7965469276055662,0.9100217464865186,0.9318303497788465,0.9318303497788465,3.6586000000000025,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,90.39880000000005,9.901064578912528,0.0,0.0,29.086614654042354,57.47053937115638,0.0,23.80116485057091,0.0,12.343784214475903,3.970291913552122,0.0,5.37989735354046,2.3978952727983707,7.027314514039777,4.948759890378168,8.780326390946605,7.247792581767846,10.58615501214069,27.999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.68,0.0,11.739131750534618,0.0,0.0,0.0,6.065974439930293,0.0,1.7190464242464156,54.817537543404704,0.0,0.0,0.0,16.490823152189332,4.794537184071822,41.430398868518246,51.8694885601727,23.80116485057091,0.0,0.0,0.0,25.846057780367996,32.3416874251497,30.366629568493288,190.0759500952796,,175.66038574088947,175.42866144368443,176.16237131133556,175.6651610014352,185.68884632763678,175.60371274332792,175.67017310234544,180.30984728244601,30.366629568493288,190.0759500952796,,175.20386400175903,174.90692231324977,175.84621323277517,175.20998037873332,186.91230940906362,175.13126582725124,175.21639998890225,180.76088451851172,5.18810179155803,140.2205681144732,,131.24155890943672,131.1150258499095,131.5156889605976,131.24416650071365,136.31569447569493,131.2106120934459,131.24690342435053,133.6304389381185,1.320288242108404,8.264171743273026,,7.637408075690846,7.627333106247149,7.659233535275459,7.637615695714573,8.0734281012016,7.6349440323186055,7.637833613145454,7.839558577497653,2.6342935817255984,95.03797504763973,,87.85193200087951,87.73917544233912,88.09624080226588,87.85425576846531,92.37386044019269,87.82435384385809,87.85669479467002,89.98144778119782,46.129411764705885,0.0,2.176657734451295,0.0,0.0,0.0,11.024176879467735,48.203204661325564,6.99786983234652,0.0,0.0,0.0,2.2601289682539685,0.0,-1.2453825612034939,0.0,2.701599363689461,29.473359658050075,430.79045014566185,58.67068381162284,158.51758850669097,219.14661391060812,250.36589485948173,256.3658948594818,256.3658948594818,1344.0,127.39532409985229,80.00116036511592,73.33843292916404,37.3,37.3,0.8333333333333334,7.81923445385907,5.700439718141092,4.100787058495459,4.71711734052418,,4.734180083965981,4.734434476460283,4.7335965476161475,4.734174739988919,4.718407628923558,4.734243195600771,4.734169126597298,4.727859709770772,0.17829508949980255,0.20509205828366,,0.20583391669417309,0.2058449772374036,0.20580854554852815,0.2058336843473443,0.2051481577792851,0.2058366606782944,0.20583344028683903,0.20555911781612055,2.244088043709047,2.384107003019446,,2.387717673853855,2.387771407690572,2.3875944059794048,2.3877165450459126,2.384380498858119,2.3877310048241607,2.387715359328178,2.3863817303843686,253.55000000000007,189.170674458102,135.87712318508528,,134.1050425182333,134.06207301102063,134.19839580669912,134.1059288921745,135.83658045828642,134.09452564233473,134.10685926489865,134.92395512774308,8.224811932960957,5.907701008047186,,5.830654022531882,5.828785783087853,5.834712861160831,5.830692560529326,5.905938280795062,5.830196767058032,5.830733011517332,5.866258918597525,6.075558769960774,5.7446600942715795,,5.731532515187164,5.731212047052988,5.73222839365086,5.731539124715003,5.7443616718765655,5.731454089438934,5.731546062286702,5.737620447313053,0.0,11.739131750534618,11.024176879467735,0.15803095080624852,5.277361244180103,0.0,18.79130810722667,2.176657734451295,0.0,326.7444720220502,83.14824695726874,-121.87453946567084,-13.869467931746831,-2.487235499299405,-6.414449445561626,177.75982241092538,260.5514521907437,9.09527638298411,5.3173765753213,8.685048406358124,1053.0,49.0,2.183456325045712,1.4180578060588123,0.19716878364870322,0.10444364486709837,0.9995378162271848,0.5608020566514683,0.3321713196057226,0.12215066941519762,0.0,0.0,0.0,0.0,0.07216878364870322,0.048112522432468816,0.4386380189713201,0.27928370641519046,1.0423266779230602,0.6142841974678668,16.242276208189782,13.924011507786663,11.043772185574866,9.172513632168688,10.354967544050522,8.041104827198744,10.044842014239697,7.535413412598511,8.660306886639866,6.377669070757217,6.971378428572165,4.983794166264942,5.260912485640921,3.5840984479976594,4.213620090112967,2.72924151488994,6.374995237933959,4.145752213427165,11.433723488681823,7.204712735943791,18.36982767420855,11.1288167939998,81.6360748372741,38.425368184301234,26.115178373551572,21.25403850261879,20.679607922187113,20.679607922187113,134.0,171.0,54.01061799999997,26.951381999999995,0.3469387755102041,170.02,7.541666666666666,5.006944444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,49.0,0.0,0.0,52.0,0.0,3.0,3.0,48.0,4.0,26.0,48.0,1.0,0.0,0.0,21.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,2.0,1.0,0.0,23.0,2.0,0.0,0.0,2.0,0.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4657359027997265,6.3835066348840055,3.9318256327243257,4.454347296253507,4.859812404361672,5.1647859739235145,5.4116460518550396,5.69035945432406,5.963579343618446,6.214608098422191 +5291,Cc1ccc(NC(=O)c2ccc(CN3CCN(C)CC3)cc2)cc1Nc1nccc(-c2cccnc2)n1,0,21.794117647058822,6.022269117647059,3.3088235294117645,7.0,162.8472833063856,85.9484976029412,1.526092706622338,6.104960294117647,3.2904411764705883,7.52515464705882,223.01729731772858,24.61111111111111,6.313305555555555,3.888888888888889,6.972222222222222,147.92746164919035,93.41188595833334,1.8253426331944445,6.457361111111111,3.0231481481481484,7.69870661111111,265.3416037044291,20.650406504065042,6.253647967479674,3.6016260162601625,5.487804878048781,157.11963818962226,76.77475414634146,1.5851626923035693,6.357499186991871,2.8613369467028003,7.694301268292683,224.77023395618076,17.264150943396228,6.083483647798741,3.119496855345912,4.245283018867925,156.76795549849206,61.999337056603764,1.4517912941753837,6.186692452830189,2.6911250873515025,7.57386671698113,197.46187992724452,13.847826086956522,5.88174347826087,2.625,3.3967391304347827,162.35114342470087,48.66642224456521,1.2279059741051956,5.961403260869566,2.513737922705314,7.445519326086956,160.43829876132423,14.5,5.9036647058823535,2.735294117647059,3.664705882352941,164.74450549394734,52.1821660882353,1.2279419432714587,5.975791176470588,2.545751633986928,7.475392117647059,164.64761445724568,16.97887323943662,6.096673239436618,2.9788732394366195,4.225352112676056,158.76554884976994,60.94926065492956,1.42805843558862,6.190228873239436,2.844874804381847,7.591310056338027,193.6659415393522,14.68421052631579,5.895058552631578,2.8026315789473686,3.526315789473684,160.33526868301527,52.208680638157894,1.3100877125846448,5.982975,2.5716374269005846,7.4505435526315775,173.31466347067777,15.888059701492537,5.9835223880597015,2.917910447761194,3.828358208955224,158.26611549673044,56.87551542537313,1.3653551107427389,6.077229104477612,2.820066334991708,7.5158665970149245,183.19506967883558,6.948961937716261,0.08516355968858128,0.01366291262227555,0.5473615916955018,3.566608996539792,1.6106252453355097,33.25477610099479,0.22372227230748332,0.08298864619377155,0.7445393598615918,0.04348163581314877,50.350014403547064,0.44523740868896566,0.0009927311610920437,-0.0072176722806559694,0.16485246059207995,1.063701460976547,-0.3915910750756916,2.0935320303368936,-0.014630177429811986,0.0029372933487122384,-0.01550885877226709,-0.001175270617070391,-0.5105792416705623,0.16127239992123094,0.002514716255942971,0.0014382376005162396,-0.08131663712830905,-0.07234787745801334,0.23479653665292793,0.7947776521137526,0.018966691125253017,0.0018825996216278713,0.07563905025584279,0.0020599667693475925,3.0988583141825075,-1.0405268655741986,-0.00909939024721979,-0.0012010998560754522,-0.05540820656786581,-0.1293170986485605,-0.23348265454573164,-5.010450770436169,-0.038747345662862,-0.009331348746490732,-0.001319377948491034,-0.004208437145002297,-8.461543277255762,0.21472092673386486,0.00323982106589436,0.0011651597207815673,0.039914623138257874,0.46568000601775233,-0.14290959791444685,0.984172608004551,-0.01157999125922543,0.003730663269143938,0.0560831536365612,0.0008231061945238496,-0.9688487150377803,1.3546712802768166,-0.0014781617647059,-0.002286575424897472,0.04225778546712803,0.3730103806228374,0.11679203810137861,6.579932885596883,0.04880462557744269,0.0018884818339099934,0.01392853710111496,-0.003062935121107266,11.828939308552924,-0.7903041083873485,0.0008342551415761711,0.002609554584501253,-0.005625883327647562,-0.196683561577075,0.15849544991788458,-3.8108565480743453,-0.014179335097847993,-0.001660415042155954,-0.027106905659253513,0.0022524109971246006,-4.862504479899287,0.2267346567109816,0.002545737912037859,-0.0009171519845515835,-0.022497040611910407,-0.04977463121471498,0.047666769805534435,1.0909554842412585,0.008913913615155682,0.002447344518302655,-0.020884711598777802,0.0013062925924239703,1.8414456761416302,-0.14782058565304962,0.004112954797810274,0.0002638698883439455,-0.062396710220523684,-0.24681092805866864,-0.1087220424557958,-0.748406719519831,-0.011389528604869652,0.0031402058694417457,0.03543332573005788,0.0029001403062541902,-2.4716497219845373,,,0.47657657657657654,1.385135135135135,0.7162162162162162,0.02702702702702703,0.668918918918919,0.0472972972972973,0.8099117836403423,0.010383886045175832,0.02200550766679745,1.1093024243055127,0.2786916667810892,0.20860589480544026,1.9192142079458552,0.4872975615865295,2.0668843715972494,1.6244540874290485,0.39412836910834115,0.04830191505986021,0.0,0.4424302841682012,7.253808950176484,1482.0,409.5143,225.0,476.0,11073.615264834221,5844.497837000002,103.77430405031899,415.1373,223.75,511.7105159999998,15165.176217605544,1772.0,454.558,280.0,502.0,10650.777238741704,6725.655789,131.42466959,464.93,217.66666666666669,554.3068759999999,19104.595466718893,2540.0,769.1986999999999,443.0,675.0,19325.715497323537,9443.29476,194.97501115333904,781.9724000000001,351.94444444444446,946.399056,27646.738776610233,2745.0,967.2738999999998,496.0,675.0,24926.10492426024,9857.894591999999,230.834815773886,983.6841000000001,427.88888888888886,1204.2448079999997,31396.43890843188,2548.0,1082.2408,483.0,625.0,29872.61039014496,8954.621693,225.934699235356,1096.8982,462.5277777777777,1369.9755559999999,29520.646972083658,2465.0,1003.623,465.0,623.0,28006.565933971047,8870.968235,208.750130356148,1015.8845,432.77777777777777,1270.81666,27990.094457731768,2411.0,865.7275999999998,423.0,600.0,22544.70793666733,8654.795012999997,202.78429785358404,879.0124999999999,403.97222222222223,1077.9660279999998,27500.563698588012,2232.0,896.0488999999999,426.0,536.0,24370.960839818323,7935.719457,199.13333231286603,909.4122,390.88888888888886,1132.4826199999998,26343.82884754302,2129.0,801.792,391.0,513.0,21207.65947656188,7621.319066999999,182.95758483952702,814.3487,377.88888888888886,1007.1261239999999,24548.139336963966,472.52941176470574,5.791122058823527,0.9290780583147373,37.22058823529412,242.52941176470586,109.52251668281465,2261.324774867646,15.213114516908865,5.643227941176466,50.628676470588246,2.9567512352941163,3423.8009794412005,32.05709342560553,0.07147664359862715,-0.5196724042072298,11.869377162629757,76.58650519031139,-28.194557405449792,150.73430618425633,-1.053372774946463,0.21148512110728118,-1.1166378316032304,-0.08461948442906815,-36.76170540028049,19.836505190311406,0.3093100994809854,0.17690322486349747,-10.001946366782013,-8.89878892733564,28.879974008310136,97.75765120999158,2.332903008406121,0.23155975346022817,9.303603181468663,0.2533759126297539,381.1595726444484,-165.44377162629758,-1.4468030493079467,-0.1909748771159969,-8.809904844290664,-20.56141868512112,-37.12374207277133,-796.6616724993509,-6.160827960395058,-1.4836844506920264,-0.20978109381007443,-0.6691415060553653,-1345.3853810836663,39.508650519031136,0.5961270761245623,0.21438938862380838,7.344290657439449,85.68512110726643,-26.29536601625822,181.08775987283738,-2.1307183916974792,0.6864420415224846,10.319300269127261,0.15145153979238832,-178.26816356695156,230.29411764705884,-0.251287500000003,-0.38871782223257023,7.1838235294117645,63.41176470588236,19.854646477234365,1118.5885905514701,8.296786348165258,0.3210419117646989,2.367851307189543,-0.5206989705882352,2010.919682453997,-112.22318339100349,0.1184642301038163,0.37055675099917795,-0.7988754325259537,-27.92906574394465,22.50635388833961,-541.141629826557,-2.013465583894415,-0.23577893598614547,-3.849180603613999,0.31984236159169327,-690.4756361456988,34.463667820069205,0.38695216262975457,-0.1394071016518407,-3.4195501730103817,-7.565743944636677,7.245349010441235,165.8252336046713,1.3549148695036637,0.37199636678200354,-3.174476163014226,0.19855647404844348,279.8997427735278,-19.80795847750865,0.5511359429065767,0.0353585650380887,-8.361159169550174,-33.0726643598616,-14.568753689076637,-100.28650041565734,-1.5261968330525333,0.42078758650519393,4.748065647827755,0.3886188010380615,-331.20106274592797,0.6922786196858506,0.5725784776584196,0.43975633606589243,0.3038261830352126,0.28925600837977067,0.16772071826704532,0.18944210939035094,0.09257739809147449,0.12147374958540977,0.04806550252837777,0.08011331690069412,0.027274279269994265,0.05136913563026381,0.014103444095367188,0.03323110462662032,0.007271967795539083,8.02203665982207,5.689159426459733,3.543837790494037,2.1884384394742074,0.4035737205704702,-0.3777251978262222,3.180835148460859,0.9779526552503008,6.021963719958595,0.9953891748440341,14.560408013894026,10.949790775953774,16.01006938921919,11.700544365001493,1.9995124054896862,0.7518616314215405,3.4890707118304807,2.238187940570922,7.0082736851667455,1.3653589527178023,3.701988466337911,2.4340705662297784,20.90363644852724,14.702704409759509,0.2290629100162742,0.5549476285199589,0.7507789110958263,0.8453535598177904,0.8774755437929546,0.8774755437929546,1.028965693154701,1350.5562649808828,0.0,4.0,6.0,0.0,13.0,0.0,4.0,0.0,0.0,4.619309101986705,2.5305865409834016,1.2754272934294164,0.6692613971224528,0.4633790441812753,0.4633790441812753,321.17439357352515,2329.412034154906,64.03824263479103,34.25605932580744,67.7677361833324,,22.0,1361.0,0.0,4.794537184071822,5.907179729351506,17.19917704736705,55.231999282488886,5.563451491696996,18.59053071483923,67.58740788430673,42.43300421523244,0.0,17.633333333333333,51.25,26.5,1.0,24.75,0.0,0.023423423423423437,1.75,0.12640871882733712,0.05653214774281845,-0.06987657108451867,0.02545622545622539,0.11558371040723958,0.0,0.5700980392156854,0.7963963963963961,0.44368932038834824,0.5135658914728669,0.7709401709401708,29.966735994692666,0.38420378367150576,0.8142037836715057,41.04418969930397,10.3115916709003,7.7184181078012895,71.01092569399664,18.03000977870159,0.5984162895927604,0.07561436672967864,0.0,0.3005671077504726,0.2413793103448276,0.31005471216139346,-0.8542839710996362,-0.036865938702042245,-0.012562999574994647,-0.038831089595438004,0.6899452878386065,1.900984494728271,0.03887959190894219,0.027955654334239285,0.0413257498853972,-7.7054571933112,0.8044619762922391,0.8293194702156641,1.6157118785512263,0.7625334738136001,0.5736131322930984,1.4330779553608601,0.8083087982635876,1.0861435373858355,0.7912948034336375,0.6264519911676978,0.8573507593088077,0.973150222886886,0.9199066047675294,1.0237913745877063,1.1344229487102937,1.397622328653156,1.0746999284205794,0.9943325227671708,0.9184709016563676,0.8767978664430753,1.001123964971283,0.5905512002134277,0.9942517828015529,0.8766179066638875,1.0950834098651243,1.0715732758153604,1.1600683801364322,1.1434464216048048,0.9886112115346187,1.2079872030126484,1.0964906903972005,1.1621948615786517,1.0672455774730765,0.8672127762587204,1.0632123154355648,1.1368919736842233,0.9671010613826664,0.9510168433030851,0.9220993259882491,0.8609073574631096,0.8287654620422024,1.0418199065178535,0.9682764914825508,1.0373885679254127,0.9482365896203251,0.9707441984959639,0.974002662689506,1.0112831618016977,0.8294721772687665,1.1208875248446974,1.2698076609184414,0.9741604109047806,0.9644554935726414,0.875655090311008,0.8247155162477614,0.7511879953800948,1.0726858194165578,1.2128643929675078,1.2029762514982911,0.7466285300037823,1.0754081315980035,1.017470546624532,0.9202007297331384,0.9190544293020072,1.0349840981372105,0.9603727720138191,1.0757928164679071,1.0406601281864587,1.031138571869719,1.0527085734702066,0.9857756770039167,1.0588465955886786,0.9505534735007569,0.9310615565779351,1.022277358924108,1.1072854498949865,1.0241432847824146,0.9297569467643707,0.9507872059218607,0.9658263982013646,0.936813590853609,1.1824875862107034,0.9569001400184384,0.9643203770383477,0.995705215984066,0.9723417919365921,1.0053598127608745,1.2425918609245359,1.095743390734902,1.0500769276979083,0.9965726144453978,1.060033259495223,0.9757491735930236,1.3291215840050343,1.0243634851136596,1.040840884523197,7.5,0.20620344862769105,3.555555555555557,1.875,1.7911111111111113,0.9375,0.7257142857142858,0.6684027777777777,0.3575207860922146,0.26250000000000007,7035.57776512001,7909.780681266911,3579.050560347453,3262.1903682354564,20.169986268748577,0.4175864102423235,11.747274108144902,0.7169929026142191,0.0,0.2413793103448276,1.468153739263634,3.5568763002669375,4.812035547820923,5.418201444127886,5.624083797069064,5.624083797069064,0.1829268292682927,0.005727873572991419,0.06349206349206352,0.033482142857142856,0.03655328798185942,0.01838235294117647,0.014810495626822158,0.014853395061728397,0.008314436885865455,0.006562500000000001,0.38510537768794234,28.52587745389649,14.0625,8.255504860146797,216.95624924983875,1.0,4.541483059145522,298.8680389111029,,232.18178911622022,226.74630610071821,221.8368548826445,232.22746206611072,315.146645405733,229.85974901842744,232.51071052776746,290.0720220924428,0.06407250646638174,0.011656759824532664,-0.5282674697698441,0.30117652223539215,0.29823887676179683,-0.2431298504787308,0.0629543264395717,-0.06539437168644661,0.035393918125304805,-0.020830139557900806,-0.027029126091778526,-0.010140597728102992,0.023208128259547246,0.029528078266556342,0.10526581266218345,-0.1485610944612015,-0.020284779612288,0.1457797444395685,0.023899654284245127,0.08477784053250294,0.02268502630145524,0.1015917415969841,0.04737555822876062,0.061546324283954894,-0.14973846092415957,-0.1068460534117368,-0.0879095028476739,-0.10122779421960153,-0.036257716720285216,-0.14496398539754346,-0.15066860637459786,-0.17319395723644243,-0.11244126967323712,-0.0017720728004712917,-0.09678654140536436,-0.16805443608094903,0.030899712598574363,0.03804233967839599,0.08527901429172068,0.07292185594283065,0.13056659882525387,-0.08872926730058632,0.029594925102355757,-0.05176056518552574,0.044953899602520934,0.07532597557634418,0.01892997305945292,-0.019242272847682176,0.19494584837545134,-0.017356740020157843,-0.16735636742414037,0.07720268668510469,0.10458404074702889,0.07251347788047967,0.19786429671375985,0.21814826514172778,0.022755906024789774,0.01870759002412477,-0.07044203981353066,0.23493417923867757,-0.11372980820313397,0.009795916758608999,0.19099548219657966,-0.010278184317282625,-0.055145815470070025,0.09840616268551557,-0.11459576622921079,-0.06337918416258508,-0.020007737423249725,-0.03640761942295787,0.051801431914929835,-0.09657404347349566,0.03262856506384848,0.029892338006383162,-0.06712712068847532,-0.04110087546008443,-0.013955729731799787,0.02959519599210365,0.03280597893451532,0.039843657599295354,0.029490112570197975,-0.028050513813883824,0.03004239762361815,0.03657289273807842,-0.021272326280956728,0.04829477317352833,0.01931285778068587,-0.11399541211367108,-0.06920044453936963,-0.06750300404806327,-0.022505240066777746,-0.05090922994567083,0.03783898175793382,0.047590936947436664,0.0666980496942848,-0.0490893548147707,22.299342358048904,28.369806023411723,8.143947814924733,12.980423810031622,32.00061640584618,40.638207087984696,42.86731054675624,43.07483995852094,43.07483995852094,76.47472174909822,60.10480123487479,14.582749657008621,1.7871708572148277,0.0,16.369920514223445,19559.74586683832,17647.66059737604,3606.0772174718113,174.0,56.0,71.0,89.0,115.0,113.0,129.0,147.0,158.0,493.25900861200097,41.0,5.272999558563747,6.1070228877422545,6.9650803456014065,7.81156848934518,8.67060073804555,9.521861033907806,10.381366341153338,11.234942866827236,12.09494553497801,0.642156862745098,0.9746470588235293,1.127669755690346,0.6043663406583181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6833619496301514,0.9623414071510957,0.9960905702412065,0.6385128680212165,13.0,3.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,5.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,15.533486938863138,0.0,0.0,5.948339280986494,5.907179729351506,14.678425435869507,9.967957041894417,0.0,0.0,18.19910120538483,67.56288164499307,73.81598827716321,5.693927994848461,262.1324153028275,-722.2451777551856,-31.16791061489181,-10.621252614046846,-32.82932626159934,583.3068088763526,1607.1668563997202,32.870332019899216,23.634806711760596,34.938409921733054,0.5,0.8769621812245871,0.11753627877034452,10.920496009474718,0.09260773134145933,69.12966498462912,0.12303781877541281,11.0,0.17073170731707318,0.24117662440828655,0.5842953613062828,0.7904829439308004,0.8900590583342289,0.9238797745028865,0.9238797745028865,4.590320000000004,,1.2500000000000004,1.585388552815263,1.749881284081836,1.2467668284740065,-4.709566991611878,1.387010403916769,1.230335752003534,-2.634266875762027,146.8938999999998,4.794537184071822,0.0,24.75175502454258,0.0,13.4684936056032,43.86027481434016,95.94455587454632,0.0,11.257379486545457,4.418840607796598,0.0,5.726847747587197,0.0,7.224753405767971,0.0,8.80131894766524,0.0,10.415502468813338,43.666666666666664,24.531552949547557,13.134993624980833,0.0,0.0,0.0,0.0,6.557749753966589,0.0,66.276,0.0,12.929507254117228,0.0,0.0,0.0,0.0,0.0,-0.14280062490789214,76.68154338694353,10.633577208012662,17.323111830353618,0.0,63.88563236022158,6.544756405912575,6.923737199690624,21.48489165916281,79.25420139945533,0.0,11.257379486545457,0.0,41.09691116476563,46.4686125748503,49.16163385183578,597.7360778222057,,464.4205764385426,453.57165852386765,443.7979227735266,464.51178724876604,631.8207179438807,459.7865993380584,465.07702382500094,580.9984010094572,49.16163385183578,597.7360778222056,,463.35778606249437,452.2342048886252,442.33180602199843,463.4516951234037,635.0028578030776,458.61153681415715,464.0304314176634,582.7783110606476,4.744487491253189,459.79713890588516,,358.58632093971795,350.19906027620834,342.57210312475195,358.6566575443777,488.33365665821185,354.9993793890292,359.0944470914656,449.008399941781,1.3286928068063724,16.155029130329886,,12.551907471311962,12.258693473618045,11.994538453338556,12.554372628345028,17.076235620104885,12.426664846974552,12.569649292567593,15.702659486742087,2.3722437456265952,298.8680389111029,,232.18178911622022,226.74630610071821,221.8368548826445,232.22746206611072,315.146645405733,229.85974901842744,232.51071052776746,290.0720220924428,65.43921568627451,0.0,4.157683628868643,0.0,0.0,0.0,0.0,67.73415877640204,5.237443655888485,6.293713638195605,0.0,0.0,0.0,4.80015611934296,0.0,0.0,0.0,43.41887502544272,741.4182261289966,99.83445426992711,241.86758841815174,327.21841725182276,368.4376982006963,382.43769820069633,382.43769820069633,1130.0,156.06038779616455,104.02099805018358,73.58726317763035,86.28000000000002,86.28000000000002,1.0,8.941395203910844,6.357552004618084,5.263529883772996,5.985099499882284,,5.978028055402425,5.978218614211885,5.978693990254542,5.9780273157426835,5.9772792894049305,5.9781247143750535,5.978014798774618,5.977206119901867,0.1422575644262972,0.16175944594276442,,0.16156832582168718,0.16157347605978067,0.16158632406093357,0.16156830583088333,0.16154808890283595,0.1615709382263528,0.16156796753444913,0.16154611134869912,2.9691347018911327,3.097605783397827,,3.096423576609381,3.0964554526344816,3.0965349674822744,3.0964234528796526,3.096298315756292,3.0964397455183086,3.096421359048275,3.0962860744091225,385.0000000000014,446.89168028003377,264.58809625050856,,265.0719065584027,265.06773818200134,265.082340747587,265.0719963419995,265.0975133028965,265.07060403915915,265.0721472255962,265.0536531203477,12.078153521081994,7.1510296283921235,,7.164105582659532,7.163992923837874,7.164387587772622,7.164108009243231,7.164797656835041,7.164070379436734,7.164112087178276,7.163612246495884,7.410649058902609,6.88650708260367,,6.888333954332275,6.88831822875339,6.8883733171752155,6.888334293046334,6.888430552678217,6.888329040486592,6.888334862263588,6.888265089748295,0.0,30.86465699844102,6.293713638195605,6.081945305101588,0.3330038239571089,19.314837924044234,5.216715025503322,7.235456885744247,2.1596703990128807,456.2513205157809,221.61702582583715,-610.6144027484983,-26.350574169540167,-8.979623569830856,-27.755200124931733,493.15045595485697,1358.7619002010713,27.78986800141566,19.98179265001576,29.538302178284166,5324.0,56.0,2.243242902980237,1.1316589206470387,0.0,0.0,0.31903559372884915,0.08019358624825772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4201034543599429,0.14334590541067652,0.5795270652027016,0.19608787195531024,25.61430892837647,21.185403673361527,18.03000977870159,12.456873504443715,16.198336469267158,9.392360222954538,13.450389766714917,6.572995264494689,10.81116371310147,4.277829725025621,9.213031443579824,3.1365421160493403,5.804712326219811,1.5936891827764923,4.286812496834021,0.9380838456245417,4.869167472359623,2.014024339797959,6.944967266221966,2.264908570536376,10.321212990024517,2.819001833177689,124.51193015747621,64.2821991543276,35.61739739302888,28.222532698818267,26.879538758119548,26.879538758119548,194.0,224.0,77.602583,39.94741700000002,0.5,349.08,9.972222222222221,8.083333333333336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,24.0,24.0,68.0,0.0,2.0,72.0,24.0,1.0,13.0,59.0,25.0,41.0,47.0,0.0,0.0,0.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,7.0,2.0,3.0,37.0,8.0,0.0,7.0,1.0,0.0,5.0,7.0,0.0,0.0,0.0,2.0,4.0,4.007333185232471,7.752519799242705,4.574710978503383,5.1029105702054265,5.634789603169249,6.187750644252309,6.320993089126206,6.700615789245544,7.070485123735725,7.413018586710853 +60857,CN(C)CCc1c[nH]c2ccc(C[C@H]3COC(=O)N3)cc12,0,20.761904761904763,6.057492857142858,3.119047619047619,6.476190476190476,164.6810273805769,81.6687483095238,1.4018018809959287,6.120761904761904,3.5099206349206353,7.596293809523809,204.56555082458513,23.5,6.346204545454546,3.727272727272727,6.113636363636363,149.0585355768795,88.36056506818178,1.7217501475000005,6.479056818181818,2.868686868686869,7.757184818181815,250.33883994850538,19.164556962025316,6.264303797468354,3.4556962025316458,4.708860759493671,158.6087680646555,70.45379093670886,1.4786549338036705,6.351313924050633,2.827004219409283,7.7480924556962005,208.03053334215969,14.424242424242424,5.934272727272729,2.797979797979798,2.757575757575758,156.26059828951708,49.843971828282825,1.3597195133468585,6.035287878787878,2.3608305274971944,7.47972577777778,177.86216449436827,11.295652173913043,5.701269565217393,2.4347826086956523,2.2,163.18521729333617,38.44788598260871,1.1347041787775043,5.775808695652175,2.1123188405797104,7.327723547826088,142.42583349809422,13.08421052631579,5.801577894736842,2.642105263157895,2.705263157894737,162.19328522116652,45.853531199999985,1.2019905828728734,5.8808536842105275,2.250292397660819,7.39318037894737,155.71244370997613,14.458823529411765,5.9547647058823525,2.7411764705882353,2.9176470588235293,158.89364306284924,50.48184370588237,1.2741171158810118,6.043858823529411,2.4767973856209156,7.508644470588235,167.9814744258584,12.551724137931034,5.92898735632184,2.4597701149425286,2.5402298850574714,164.55653443612047,42.79247603448275,1.123551822067,5.9933344827586215,2.4201787994891437,7.517496781609195,144.78141742987134,11.84,5.9032,2.2266666666666666,2.3333333333333335,167.3857013203457,40.185058173333346,1.0531937501690403,5.956228000000001,2.3488888888888892,7.508588213333334,134.68575728003515,7.317460317460317,0.11202341269841265,0.02088274899629919,0.5742630385487528,3.6984126984126973,1.467929483936852,34.85611011848073,0.22164798984943815,0.10658956916099768,1.0280454774502394,0.06545108616780042,49.759021382092,0.4444444444444447,-0.0014051767676767789,-0.01310792815397186,0.18114821686250263,1.1262626262626254,-0.30532176255783916,2.091634872320141,-0.015403244566934525,0.0011349979385693273,-0.03204379394855588,-0.002991863224077518,-0.2056413008344449,0.35161744022503527,0.013168178621659627,0.0030583031875533804,-0.03719251413645632,0.03938115330520379,0.3591784654628357,1.696703933960505,0.041379069184563556,0.010453107150032991,0.1938251273317578,0.011592327937081995,6.0188892755313885,-1.6498316498316499,-0.014891161616161604,-0.0011349410756586863,-0.039150003435717735,-0.4579124579124579,-0.17642094566749195,-7.894937038634645,-0.04262828346090963,-0.01600635607778463,-0.10626818067294258,-0.006512186696900977,-10.986127694834288,0.38067632850241523,-1.316425120772662e-05,-0.0002070015737272988,0.05513654737257223,0.13719806763285025,-0.03135505468995487,1.8466011951838701,0.010726225405959107,0.0008526668638469987,-0.047518677358221816,-0.000981892793059246,2.748586114374836,0.5918128654970759,0.00608733918128655,0.0007169967362705292,-0.03541592075426663,-0.025730994152046778,0.012095464881750577,2.8066789790130087,0.005833896551884843,0.006657598758801767,0.00044937078145101483,0.0021851293710466683,2.664677537318116,-0.7398692810457516,-0.005717222222222218,-0.0004055709514084165,-0.1003134587168201,-0.4026143790849672,-0.3438701600877287,-3.606314317640389,-0.04571514646465587,-0.005375003334667198,0.03169619699731743,-0.0034574895291449906,-8.49592791663402,-0.4712643678160921,-0.004710823754789272,0.00038117004147039587,-0.07453671123621863,-0.18007662835249041,-0.13429624714456792,-2.289939849186801,-0.027181640038502233,-0.0043678395496129455,-0.029360626753894396,-0.003144045116897333,-4.980970060363555,0.05777777777777776,0.002270777777777779,-0.002349171540102264,-0.056802721088435364,0.1333333333333334,0.011337179750725396,0.2162597967573701,-0.012483503855891191,0.002781287981859409,0.013550642479213941,0.0012988935147392289,-1.0945894457980387,,,0.46984126984126984,1.119047619047619,0.4523809523809524,0.0,0.6666666666666666,-0.21428571428571427,0.8130571633841367,0.014286667697308056,0.026572381983022343,0.7511448275476431,0.2279498969681502,0.2536783668761177,1.56420199093178,0.48162826384426793,2.0415570915242225,1.5743215615603847,0.2888411612436812,0.17839436872015693,0.0,0.46723552996383805,6.837223259809537,872.0,254.41470000000004,131.0,272.0,6916.603149984229,3430.087429,58.875679001829006,257.072,147.41666666666669,319.04434,8591.753134632576,1034.0,279.233,164.0,269.0,6558.575565382698,3887.8648629999984,75.75700649000002,285.0785,126.22222222222223,341.31613199999987,11014.908957734237,1514.0,494.88,273.0,372.0,12530.092677107785,5565.849483999999,116.81373977048997,501.7538,223.33333333333334,612.0993039999998,16434.412134030616,1428.0,587.4930000000002,277.0,273.0,15469.79923066219,4934.5532109999995,134.61223182133898,597.4934999999999,233.72222222222223,740.4928520000002,17608.35428494246,1299.0,655.6460000000002,280.0,253.0,18766.29998873366,4421.506888000002,130.490980559413,664.2180000000001,242.91666666666669,842.6882080000001,16378.970852280834,1243.0,551.1499,251.0,257.0,15408.362096010818,4356.085463999999,114.18910537292298,558.6811000000001,213.7777777777778,702.3521360000001,14792.682152447731,1229.0,506.155,233.0,248.0,13505.959660342185,4290.956715000001,108.299954849886,513.728,210.52777777777783,638.23478,14278.425326197965,1092.0,515.8219,214.0,221.0,14316.41849594248,3722.9454149999992,97.74900851982899,521.4201,210.55555555555551,654.02222,12595.983316398806,888.0,442.74,167.0,175.0,12553.927599025928,3013.879363000001,78.98953126267801,446.7171000000001,176.16666666666669,563.144116,10101.431796002636,307.3333333333333,4.704983333333331,0.8770754578445659,24.11904761904762,155.3333333333333,61.65303832534778,1463.9566249761906,9.309215573676402,4.4767619047619025,43.17791005291006,2.7489456190476176,2089.878898047864,19.555555555555568,-0.06182777777777827,-0.5767488387747618,7.970521541950116,49.55555555555552,-13.434157552544923,92.0319343820862,-0.6777427609451191,0.0499399092970504,-1.4099269337364588,-0.13164198185941078,-9.048217236715576,27.777777777777786,1.0402861111111106,0.24160595181671704,-2.938208616780049,3.111111111111099,28.375098771564023,134.0396107828799,3.268946465580521,0.8257954648526062,15.312185059208867,0.9157939070294776,475.4922527669797,-163.33333333333334,-1.4742249999999988,-0.11235916649020995,-3.875850340136056,-45.33333333333333,-17.465673621081702,-781.5987668248299,-4.220200062630053,-1.5846292517006784,-10.520549886621316,-0.6447064829931967,-1087.6266417885945,43.77777777777775,-0.0015138888888885614,-0.023805180978639363,6.340702947845807,15.77777777777778,-3.60583128934481,212.35913744614507,1.2335159216852973,0.09805668934240484,-5.464647896195509,-0.11291767120181329,316.0874031531061,56.222222222222214,0.5782972222222222,0.06811468994570027,-3.3645124716553303,-2.4444444444444438,1.1490691637663049,266.63450300623583,0.5542201724290601,0.6324718820861679,0.04269022423784641,0.20758729024943348,253.14436604522103,-62.888888888888886,-0.48596388888888853,-0.034473530869715406,-8.526643990929708,-34.222222222222214,-29.22896360745694,-306.53671699943305,-3.8857874494957487,-0.45687528344671186,2.694176744771982,-0.2938866099773242,-722.1538729138917,-41.000000000000014,-0.40984166666666666,0.03316179360792444,-6.484693877551021,-15.666666666666666,-11.68377350157741,-199.22476687925166,-2.3648026833496942,-0.38000204081632627,-2.5543745275888123,-0.27353192517006797,-433.3443952516293,4.333333333333332,0.17030833333333342,-0.1761878655076698,-4.2602040816326525,10.000000000000004,0.8502884813044047,16.219484756802757,-0.9362627891918394,0.20859659863945565,1.0162981859410456,0.09741701360544217,-82.0942084348529,0.7056964989228289,0.5942327927200954,0.4397475452491143,0.3167496095515969,0.29473722351395065,0.18409288889914527,0.18138353880487668,0.09699695565262023,0.11447899206986732,0.05139964935494876,0.07595042760528425,0.029646338500140024,0.04905890047196133,0.016953609518066716,0.0317475238618582,0.009375236064102642,8.028856049328763,5.672501730982769,3.5556271436680826,2.1719578915775313,0.4971940336674618,-0.4755589739767796,3.241257422257028,0.9778727637097471,6.0281291444152885,0.9949368852990006,14.548526744822746,10.933412135887666,16.01400229672673,11.683927989024324,2.012381136665381,0.740629628302888,3.501844891242646,2.221777556428258,7.008272147507384,1.242762611171225,3.7145755242061163,2.417664047440585,20.914699349727858,14.701457399433123,0.2692068824091893,0.6238675660939375,0.8150896933350549,0.8522153344135408,0.8522153344135408,0.8522153344135408,1.4900254429640303,648.0095493167523,0.0,1.0,2.0,0.0,4.0,3.0,3.0,0.0,0.0,3.8807988900123203,1.8894820580069345,0.815825297773582,0.6073755953411188,0.6073755953411188,0.6073755953411188,210.04569971586946,1009.8053241961245,53.0445031986127,24.042983909431534,46.927287877800744,,12.0,413.0,0.0,4.794537184071822,12.135080900086376,6.606881964512918,19.386399651764595,22.02982791547505,0.0,0.0,53.69196559815631,4.736862953800049,9.866666666666667,23.5,9.5,0.0,14.0,0.0,0.030158730158730135,-4.5,0.1227064837234329,0.042412698412698346,-0.08029378531073456,0.04610075914423728,0.1480344168260037,0.0,0.5650793650793654,0.83015873015873,0.4423728813559325,0.5226666666666671,0.7840579710144927,17.07420043106687,0.3000200216434692,0.5580200216434692,15.774041378500506,4.786947836331154,5.3272457043984724,32.84824180956738,10.114193540729627,0.5659655831739963,0.13513513513513511,0.0,0.34459459459459457,0.4375,0.3012053205645632,-0.5757331721468026,-0.05169873135397273,-0.013707932670161968,-0.04112379801048591,0.6987946794354369,1.3356977782350805,0.048707656622019924,0.0318023280532162,0.0477034920798243,-4.2783105417339415,0.8580408203510156,0.8415209502239566,1.748129811373164,0.8499506416584403,0.5908847054233323,1.4911648691975854,0.8636767887878196,1.2027558301781875,0.8113202303961197,0.6078620315121808,0.8565392001584717,1.0601428678969858,0.9245517449682858,0.9110273194939507,1.0019462300962807,1.3663763479825557,1.064146791981312,0.9132212075715316,0.9241358801216405,0.8349733725248563,0.9127336289415249,0.4769500428016205,0.8424522484820398,0.8672587627795664,1.139338066127654,0.861857302170587,0.8383495108661688,1.0645846420772382,0.981141891013136,1.193016671096365,1.145571612718039,1.2585650629068772,0.8962424687241729,0.782773898129646,0.7989809167887523,1.2546335058353382,0.8862774686409507,0.737938205205489,0.6474335254426903,0.8203871410790162,0.8377495801455498,0.9395153532144324,0.8892886341429267,0.9495425589112972,0.7584632905327532,0.809304620876358,0.713914083169192,0.9525645510728156,0.8566046352323325,0.6934181954519666,0.6533007240108751,1.100462409726191,0.9307657555906937,0.9692358310587548,0.8610321450857807,0.9758255238379455,0.7091738848568043,0.7063390881277637,0.6611273439520128,0.9526608515023776,1.0405639913232105,0.8780187381631033,0.9630570224137571,1.2099297369490738,1.0480308003029541,1.2744042838178538,1.0460418813868404,1.2312771161115124,0.8875464458855065,0.5990604093364387,0.8547807122251201,1.178361104471909,1.0396439524272572,1.0011122958281822,0.9580291975658342,1.123497974605984,1.0148364658872284,1.0687520380609736,1.041044695291947,1.073866076115397,1.001976911971619,0.9762394593466838,0.9804272255376673,1.062153824042397,0.9818655097613884,0.978809843463845,1.1704779512225316,0.9406120434353406,0.900944206008584,0.9380654889052298,0.9826081193059449,0.9732079613707316,0.9738315534187125,0.8707813433407366,0.9449808472020562,0.9651655605255418,5.0,0.049586776859504134,2.000000000000001,1.4236111111111112,0.7333333333333335,0.5594444444444444,0.4964172335600907,0.24046910430839002,0.16654856386999242,0.10938271604938274,3730.851251206071,4295.062547307394,2035.0745089631864,1819.3079857274279,12.291710809221517,0.4799840592399603,6.391885560007676,0.9230179723691354,1.0,0.4375,1.5115185327664404,3.502835364771826,4.576492125005179,4.784941827437642,4.784941827437642,4.784941827437642,0.21739130434782605,0.0070838252656434475,0.06250000000000003,0.05272633744855966,0.030555555555555558,0.023310185185185184,0.02158335798087351,0.01265626864781,0.011103237591332828,0.012153635116598081,0.4510637071393844,15.879017013232515,7.05078125,4.05,123.82069701725219,1.0,3.981970283386367,99.52138297103419,,81.78728604605992,80.74986861643058,80.33636562544001,81.79756657168103,101.01524944038506,81.36718267116787,81.84779620010003,94.12338064396178,0.06073752711496751,-0.012543599001574516,-0.6276916969262442,0.3154446737862336,0.3045259461568473,-0.20799484300771331,0.06000769636113684,-0.0694941766780637,0.010648302150982291,-0.031169626880739716,-0.04571143733821498,-0.004132744075799973,0.04805184107196795,0.11754845085027675,0.14645117786434003,-0.06476564159596145,0.010648122996686007,0.24468373269508295,0.048677374732670226,0.18668822222421994,0.09806876256572675,0.188537503041678,0.17711437068228522,0.12096076466844571,-0.22546506277525805,-0.13292901240432048,-0.05434826017684832,-0.06817433964521824,-0.12381323969306805,-0.120183528976029,-0.22650080607958445,-0.19232425022156224,-0.15016812811775146,-0.10336914368468324,-0.0994969996403931,-0.22078665113755908,0.05202301235499384,-0.00011751339198322028,-0.00991256341605137,0.09601270440791453,0.03709647322261617,-0.021360055120538554,0.05297783341018311,0.04839306421522368,0.007999533824544242,-0.04622234949768734,-0.015001932749319323,0.055237945563053954,0.08087681242150929,0.0543398833748689,0.03433440378934758,-0.061671948875149395,-0.006957307431669303,0.008239813297646732,0.08052186458766396,0.026320547981724146,0.0624601338686887,0.00043711177307597835,0.03338568538716892,0.053551646782931284,-0.10111011866785759,-0.05103595832787221,-0.019421339186727345,-0.17468207421171833,-0.10886139863670792,-0.234255230820421,-0.10346290235433699,-0.20625112140971555,-0.05042710442471675,0.030831512508503422,-0.052825548536823995,-0.17074145914958969,-0.06440272271673277,-0.04205213572158942,0.01825286706927073,-0.12979541818429383,-0.048690247151102574,-0.09148685179644851,-0.0656969421258706,-0.12263427273563941,-0.04097811431262626,-0.028559657522850727,-0.048036561361820294,-0.1001018493132218,0.007895878524945768,0.020270564189033634,-0.11249340498794393,-0.09891411648568606,0.03605150214592277,0.007723245479285642,0.006204358318305548,-0.05632130417411423,0.02609343488065353,0.013180975721835061,0.019845255301175393,-0.021997808947906188,8.140217882713277,16.85955358927513,4.945079426037879,14.030291121756866,32.17198504685444,35.54780313703405,35.75792043708598,35.75792043708598,35.75792043708598,42.872698922008674,33.06075279276808,6.065664386117305,3.7462817431232955,0.0,9.8119461292406,4207.085371083427,3402.2701405806656,996.8452430709767,90.0,32.0,40.0,53.0,61.0,66.0,77.0,87.0,84.0,287.16337691200056,23.0,4.709530201312334,5.541263545158426,6.415096959171596,7.270312886079025,8.149312843635345,9.015905747298426,9.897519780756337,10.77077709797722,11.654086428259095,0.6111111111111112,0.9753333333333335,1.1345601952582673,0.5696425102386306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6505083119475336,0.9617180205415499,0.9993583740852495,0.6045876392079323,4.0,0.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,4.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,19.937539809604065,6.606881964512918,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,6.06636706846161,50.1966243315236,23.64452490960671,6.041840829147961,159.12619617335835,-304.15873638229624,-27.31234113635999,-7.241874675768959,-21.72562402730688,369.1718958892278,705.6465878138282,25.732162062252712,16.801109233662576,25.201663850493865,0.5,0.8304834258239703,0.23404214348684943,82.92808592510707,0.21295596082676688,23.73921638084291,0.16951657417602986,6.0,0.21739130434782608,0.2803096357757676,0.6495973975817526,0.8487059952503367,0.8873627889976612,0.8873627889976612,0.8873627889976612,1.9229,,0.9285714285714287,1.1284318287575617,1.022017128129546,0.9260316936439501,-3.719133983223758,1.0009944920440637,0.9177785797741316,-1.7559628408463377,82.53240000000004,9.53140013787187,0.0,15.200676855804016,0.0,18.88348407499998,27.246982335779872,35.5228477603919,0.0,0.0,3.8501476017100584,0.0,5.1647859739235145,3.044522437723423,6.642486801367256,5.351858133476067,8.20166019080868,7.3796321526095525,9.81230384711351,25.666666666666668,8.541862297388091,0.0,3.32685914798018,0.0,0.0,2.4433383986310577,2.5659820116318137,0.0,40.964000000000006,0.0,11.074862611131689,0.0,0.0,0.0,0.0,0.0,-0.3107458136300125,47.651528200847224,5.316788604006331,4.794537184071822,0.0,49.26595148766393,17.578506199652068,0.0,11.126902983393991,24.395944776997904,0.0,10.902924932081056,0.0,23.92498543002248,27.32134910179641,26.880777618095465,199.04276594206834,,163.48613671797017,161.39226753488424,160.57539628629627,163.50693964872931,203.0931085902626,162.63903253356963,163.60818491641206,188.7484649567368,26.880777618095465,199.04276594206834,,162.64600066354845,160.37130540410357,159.65071412275051,162.6691014497182,205.74963286399378,161.73337085029175,162.77781382042596,190.0027241287699,4.7490299306689465,148.6963288957961,,122.6241070482121,121.3223407239498,120.64069297045853,122.63651912785936,146.21848702024968,122.08936148663224,122.7008230840909,137.9125084287454,1.2800370294331174,9.478226949622302,,7.7850541294271505,7.685346073089725,7.646447442204584,7.786044745177587,9.671100409060124,7.744715834931887,7.790865948400574,8.988022140796991,2.4321740177237774,99.52138297103419,,81.78728604605992,80.74986861643058,80.33636562544001,81.79756657168103,101.01524944038506,81.36718267116787,81.84779620010003,94.12338064396178,40.3921568627451,0.0,4.172713952883367,0.0,0.0,0.0,0.0,41.97305171158048,3.320344016636856,2.8232927287459213,4.937067423617748,0.0,0.08251572079449021,2.188574170855466,0.0,0.0,0.0,25.39268084673316,438.74280935240375,63.4837783761905,147.1190853204167,192.21266925021752,200.96755675238097,200.96755675238097,200.96755675238097,634.0,117.42380548964779,89.55528271018242,70.44739713873206,57.36,57.36,1.0,8.318365848019583,5.523561956057013,3.836703311722096,4.506476070362277,,4.497596749980738,4.499694706305083,4.500075455536447,4.4975749898468615,4.460402941420571,4.498430560369103,4.497475918515024,4.473292541220542,0.1827001577010522,0.21459409858867987,,0.21417127380860657,0.21427117649071822,0.21428930740649746,0.2141702376117553,0.21240014006764624,0.21421097906519537,0.21416551992928684,0.21301393053431153,2.086550830023667,2.2474528337023743,,2.245480543287351,2.245946896160893,2.24603150926206,2.24547570510649,2.237176452290425,2.245665916310795,2.2454536771418123,2.240062068611037,223.89999999999964,187.45382556491484,113.8582726609977,,114.495402976246,114.31739981292317,114.29395731298007,114.49728533232403,117.5367005194157,114.42559219073452,114.50551711882076,116.48800887402415,8.926372645948325,5.421822507666557,,5.452162046487905,5.443685705377294,5.442569395856194,5.45225168249162,5.596985739019796,5.44883772336831,5.452643672324799,5.547048041620197,5.975469896158183,5.4768917974100075,,5.482472018238617,5.480916133278844,5.480711047229577,5.482488458554612,5.5086879743901855,5.481862106617147,5.482560351006688,5.499725684317705,4.937067423617748,16.590295929967333,4.100692577574342,3.731920561434451,0.0,6.528740683001594,3.617936657815356,1.4872988803724734,4.172713952883367,263.8112866436649,84.066065835562,-160.68648011493417,-14.429057712101466,-3.8258685741651,-11.477605722495301,195.0328082414067,372.7917460125195,13.594252122133367,8.875993952679037,13.313990929018555,1005.0,27.0,1.5745878123438266,0.866482770092041,0.0,0.0,0.13608276348795434,0.050296115882772816,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.07775105849101827,0.4733499905069999,0.1377115740223263,0.5468009329249225,0.149804034879582,14.819626477379408,12.478888647122005,10.114193540729628,7.285241019686729,9.43159115244642,5.890972444772649,7.255341552195067,3.8798782261048093,6.067386579702968,2.7241814158122843,4.6329760839223395,1.8084266485085414,3.2378874311494474,1.1189382281924032,2.4445593373630814,0.7218931769359034,2.782570072387267,1.2761712689766906,4.274998242998865,1.5959589422362337,5.624816932040944,1.862383801635362,70.47659711920774,32.23582098094245,23.909568705555177,23.023192957640603,23.023192957640603,23.023192957640603,110.0,127.0,45.626652999999976,26.521346999999995,0.35714285714285715,109.05,6.527777777777777,4.5555555555555545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,9.0,10.0,42.0,0.0,1.0,44.0,10.0,1.0,5.0,39.0,11.0,23.0,33.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,3.0,2.0,2.0,21.0,5.0,0.0,3.0,2.0,0.0,3.0,5.0,0.0,0.0,0.0,1.0,2.0,3.4011973816621555,6.84609178764946,3.9749978045895347,4.517704160206816,5.125079428487124,5.599347456519317,5.933363593628835,6.335871182789728,6.708575225433308,6.648544240991581 +9568512,CC(=O)Nc1ccc(/C=N/NC(N)=S)cc1,0,31.714285714285715,6.302971428571429,3.0,7.587301587301588,165.16774033691385,125.83677767857141,1.6827699592210001,6.377192857142857,4.831839114246521,7.818887035714288,228.37852347436404,27.392857142857142,6.559496428571429,3.392857142857143,7.273809523809524,154.6225569652286,104.3596063928571,1.8118137028571424,6.6787357142857156,3.6962081128747797,7.9496299285714285,260.99022059243157,24.953488372093023,6.338825581395349,3.2093023255813953,5.271317829457364,156.39050410769522,94.3375647906977,1.5839369648696742,6.448793023255816,3.527993109388461,7.807348744186048,221.4911538087212,19.294117647058822,6.385503921568628,2.6666666666666665,4.006535947712418,161.5008041728527,67.8679682352941,1.4367018924254507,6.471986274509806,3.4193899782135087,7.923635647058823,191.3941956862786,16.32,5.985079999999999,2.52,3.5,163.48002978402172,58.94282851999999,1.27887043856376,6.064560000000001,2.9240740740740745,7.546990599999998,168.4136982676538,17.46511627906977,6.158209302325582,2.441860465116279,3.5503875968992245,161.26808780170055,62.020631720930226,1.344329385141721,6.2429651162790725,3.2845248349124314,7.719486186046511,176.46926231782572,16.975609756097562,5.9746804878048785,2.2439024390243905,2.975609756097561,163.54527112263878,61.137906951219534,1.3005167456217073,6.053356097560974,2.878500451671183,7.577502439024391,162.57147325972963,18.08823529411765,5.910526470588234,2.2058823529411766,2.7941176470588234,163.69855936790884,64.73707361764706,1.3424252898129705,6.003488235294119,2.8080065359477118,7.552774352941177,159.90401236847916,17.6,6.25428,2.0,3.266666666666666,167.6550410031363,60.811203879999994,1.2438425074158401,6.318263999999999,3.4701234567901236,7.864170160000001,150.42962955987005,12.102040816326532,0.12064438775510196,0.023582028838476956,0.5306122448979592,3.7755102040816326,1.78568183908455,54.619453891581614,0.3102308495752652,0.1128989795918367,1.5190539178634423,0.0684298915816326,49.74384655433449,-0.28571428571428614,-0.010891071428571446,-0.016306816295640052,0.0816326530612245,0.8588435374149661,0.2307769434428548,-1.2127303928571496,0.022264749642857174,-0.010150000000000044,-0.22568657092466607,-0.006939999999999992,2.5793187229486443,1.5158993830090173,0.020199299952539138,0.0072884727353556035,-0.09539629805410536,-0.4669092443178821,-0.3714539760063829,6.609183518717372,-0.036365540349271926,0.020690887517797796,0.14902835476232798,0.01551597137517797,-2.680849518284799,-4.4241696678671465,-0.042262174869947954,-0.004568407834235887,-0.009603841536614633,-1.0120492641501044,-0.0746738933879379,-20.277127463710485,-0.06484658696996838,-0.04301396558623448,-0.39425948705957015,-0.022443727015806304,-12.676643480855116,1.3008163265306123,-0.00017981632653059937,0.0010057710815799847,-0.039183673469387746,-0.05519274376417231,-0.1100233039332596,5.948348558418371,0.015336083708897545,0.0027830204081632703,0.10445088323395199,-0.0012711951530612292,3.532272552925384,-1.4409112482202182,-0.021061331276696713,-0.0014125584884220382,-0.022306597057427616,-0.41707535727469286,-0.23138797297974403,-6.663201023641432,-0.029269346573647367,-0.01983203607024205,-0.1932053518124639,-0.013171159854057896,-6.725633037232853,1.3753111000497762,0.0014040443006470968,0.001646263827578494,-0.03932304629168742,0.05724240915878544,0.1004680168699681,6.220051368871332,0.04112461245949774,0.0017614733698357594,-0.10180832344982561,-0.0002761677140368389,2.9648305871284513,0.1878751500600241,0.017586284513805533,0.001595413611045006,-0.03901560624249703,0.30852340936374545,-0.04497324165212649,1.2281707092587038,-0.005210723497588832,0.01629639855942378,0.13307977511992444,0.005511509678871542,0.8870307692672715,-3.176326530612245,-0.000508673469387751,-0.009852448381389888,0.006530612244897958,0.2060770975056689,-0.4135290793920868,-14.327305795867346,-0.06648857013888816,-0.0048112653061224515,-0.028331793622798883,-0.002187394438775504,-12.480974971911973,,,0.4854166666666667,1.25,0.65625,0.03125,0.59375,0.0625,0.5913482667407126,0.021176635118980436,0.026551635118980434,0.8216797953681991,0.2754142029843878,0.19804750954495018,1.4130280621089117,0.473461712529338,1.9540447299816222,1.2666666470165404,0.4753330541351009,0.10622556425502708,0.0,0.687378082965082,8.431185071571429,888.0,176.4832,84.0,212.44444444444446,4624.696729433588,3523.4297749999996,47.117558858188005,178.5614,135.2914951989026,218.92883700000004,6394.598657282193,767.0,183.66590000000002,95.0,203.66666666666666,4329.431595026401,2922.0689789999988,50.73078367999999,187.00460000000004,103.49382716049384,222.589638,7307.726176588084,1073.0,272.5695,138.0,226.66666666666666,6724.7916766308945,4056.5152860000007,68.10928948939599,277.2981000000001,151.7037037037038,335.7159960000001,9524.119613775012,984.0,325.6607,136.0,204.33333333333334,8236.541012815487,3461.266379999999,73.27179651369798,330.0713000000001,174.38888888888894,404.105418,9761.103980000209,816.0,299.25399999999996,126.0,175.0,8174.001489201087,2947.1414259999997,63.943521928188,303.22800000000007,146.20370370370372,377.3495299999999,8420.68491338269,751.0,264.803,105.0,152.66666666666666,6934.527775473123,2666.8871639999998,57.806163561094,268.4475000000001,141.23456790123456,331.937906,7588.178279666507,696.0,244.9619,92.0,122.0,6705.35611602819,2506.654185000001,53.32118657049,248.18759999999995,118.0185185185185,310.67760000000004,6665.430403648915,615.0,200.95789999999997,75.0,95.0,5565.7510185089,2201.0605029999997,45.642459853641,204.11860000000004,95.4722222222222,256.794328,5436.736420528291,440.0,156.357,50.0,81.66666666666666,4191.376025078407,1520.2800969999998,31.096062685396003,157.95659999999998,86.75308641975309,196.60425400000003,3760.7407389967516,338.8571428571429,3.3780428571428547,0.6602968074773548,14.857142857142858,105.71428571428571,49.9990914943674,1529.3447089642852,8.686463788107426,3.1611714285714276,42.53350970017639,1.9160369642857127,1392.8277035213657,-8.000000000000012,-0.3049500000000005,-0.4565908562779215,2.285714285714286,24.04761904761905,6.461754416399934,-33.956451000000186,0.6234129900000008,-0.28420000000000123,-6.31922398589065,-0.19431999999999977,72.22092424256203,65.18367346938774,0.8685698979591829,0.31340432762029097,-4.1020408163265305,-20.07709750566893,-15.972520968274466,284.194891304847,-1.5637182350186927,0.8897081632653052,6.408219254780104,0.6671867691326527,-115.27652928624634,-225.6326530612245,-2.1553709183673457,-0.23298879954603022,-0.48979591836734626,-51.614512471655324,-3.8083685627848327,-1034.1335006492347,-3.3071759354683876,-2.1937122448979585,-20.107233840038077,-1.1446300778061216,-646.5088175236109,65.04081632653062,-0.008990816326529968,0.05028855407899924,-1.9591836734693873,-2.7596371882086155,-5.5011651966629795,297.41742792091856,0.7668041854448773,0.13915102040816352,5.222544161697599,-0.06355975765306146,176.6136276462692,-61.95918367346938,-0.9056372448979587,-0.060740015002147645,-0.9591836734693875,-17.934240362811792,-9.949682838128993,-286.5176440165816,-1.2585819026668368,-0.8527775510204081,-8.307830127935947,-0.5663598737244895,-289.2022206010127,56.38775510204083,0.05756581632653097,0.06749681693071825,-1.6122448979591841,2.346938775510203,4.119188691668692,255.02210612372463,1.6861091108394075,0.07222040816326614,-4.17414126144285,-0.011322876275510395,121.5580540722665,6.387755102040819,0.5979336734693881,0.054244062775530205,-1.326530612244899,10.489795918367346,-1.5290902161723006,41.757804114795924,-0.17716459891802028,0.5540775510204085,4.524712354077431,0.18739132908163242,30.159046155087232,-79.40816326530611,-0.012716836734693773,-0.24631120953474722,0.16326530612244894,5.151927437641723,-10.33822698480217,-358.18264489668366,-1.662214253472204,-0.12028163265306129,-0.708294840569972,-0.05468486096938759,-312.02437429779934,0.7478909578906804,0.5965192732808229,0.473461712529338,0.30918873391627566,0.3420525483180625,0.1738637075068386,0.20824555997152516,0.08553516056574985,0.1407522953517524,0.046909458389080755,0.09156334704768332,0.02534478556658212,0.062710655467736,0.013466557085793135,0.04478027437863324,0.0074775009967157436,16.004411688619,5.69317806726308,3.543826219074546,2.192161303238429,0.36817032038732445,-0.36290667772667184,3.0644753231888893,0.971465793550665,6.021914398972139,0.6534601829764443,14.641868400713586,10.313204292135183,32.062200504507445,11.705011221777687,2.9352472884234677,0.7518000397323422,3.4890549818343652,2.241834892077152,7.00826998790455,1.1995012025563603,3.701978881636214,2.4376330710809904,24.44046000644766,14.702709805587308,0.3535800262594067,0.7177406571476578,0.8413613598151033,0.8975218261673384,0.8975218261673384,0.8975218261673384,2.0733089211020155,413.33213547053845,0.0,2.0,1.0,0.0,5.0,0.0,1.0,0.0,0.0,3.008529677054553,1.1558759991642953,0.5269602679344096,0.24124598222012317,0.24124598222012317,0.24124598222012317,47.630738089225474,759.0523838908377,49.27608587281375,27.109013710387064,55.57822882914719,,11.0,264.0,0.0,4.794537184071822,11.019616614076263,0.0,11.250837766380558,6.923737199690624,18.347334716458537,12.13273413692322,28.061860969903133,5.733667477162185,7.7666666666666675,20.0,10.5,0.5,9.5,0.0,0.014583333333333282,1.0,0.189285714285714,0.056932773109243606,-0.1323529411764704,0.11291666666666644,0.15255421686746962,0.0,0.6226190476190477,0.8645833333333331,0.43333333333333374,0.5656862745098041,0.7516666666666667,9.461572267851402,0.338826161903687,0.42482616190368694,13.146876725891186,4.406627247750205,3.168760152719203,22.608448993742588,7.575387400469408,0.5614457831325304,0.26609442060085836,0.0,0.2575107296137339,0.1,0.4487069692907172,-0.7335599436019068,-0.05622436828217542,-0.02619856941435382,-0.06668726760017335,0.5512930307092828,0.90127078960793,0.049905407879292166,0.03218824248599749,0.05301592880046646,-2.124948130258702,0.6445510118043845,0.9099938468174726,1.7676203722765702,1.0060096153846154,0.6070945945945947,1.0336892598936118,0.6564399841769197,0.7045199429391739,0.8839924847027775,0.7767840482657097,0.8837057646982844,0.8225483115010692,0.6207596376328482,0.6479646405175343,0.6085971291619757,1.4369409660107335,1.0648491514770586,1.257338813922666,0.6346770430324601,0.9670442946069623,0.6266414128409858,0.5833952099763788,0.5703169697230799,0.9846132170476333,1.316275667096518,1.4266588405448837,1.156953154609983,0.8730203619909503,1.2397456279809222,1.0767605929930333,1.317373501375793,1.171533469181768,1.4317458638085976,1.3755547519943014,1.4418035730361451,1.1674511042095574,0.6015809443507588,0.8012296215475572,0.7119170700814403,0.981346153846154,0.9665675675675677,0.9419139003678636,0.6231447032797466,0.7212578368069527,0.7978959879249102,0.5816873302510726,0.7715522495418606,0.9038340256251687,0.9413310325895132,1.142244585391156,0.8363721869045202,0.9509168157423973,1.079698302954117,1.0539824525651822,0.9544382851900653,0.9653447136128525,1.1414535130696113,1.2230641329708158,1.1924362487882896,1.0897296851757081,0.7657014765763172,0.8755618240898412,0.7072504005978181,0.9751407129455911,0.9184904416611736,0.8163641126729064,0.775975092290747,0.7751703136236887,0.8899136208713699,1.0091012731390758,0.8960629994465364,0.9417621811382743,1.2186291042555302,0.6297616266790651,0.810242631932437,1.069004524886878,0.8142090620031797,0.9773433240407169,1.1939929996716512,1.205009784928845,0.6615990269536289,0.6073002252546155,0.6486597503022902,1.0340321652644953,1.5107251264755481,1.1255292371322365,1.5511751786968941,0.7632692307692308,0.9194594594594596,1.2175399707535481,1.489864251927268,1.3487517111436105,1.1530706519283087,1.1508311736777717,1.1534174659432368,1.2065647447189982,4.0,0.06611570247933884,1.1111111111111116,0.625,0.5422222222222225,0.37500000000000006,0.3036734693877552,0.12152777777777778,0.1148904006046863,0.04000000000000001,2664.4751280979312,2966.1169532193117,1520.950211470038,1388.2436340913941,12.959171847749232,0.4945667823827615,6.549995924662628,0.9785007497415691,1.0,0.1,1.7988252450030506,3.6514789228933084,4.280394654123194,4.566108939837481,4.566108939837481,4.566108939837481,0.25,0.01652892561983471,0.05555555555555559,0.03676470588235294,0.03614814814814815,0.028846153846153848,0.027606679035250468,0.013503086419753087,0.019148400100781046,0.008000000000000002,0.4921016546078298,14.0625,7.35,6.37,98.71654749465596,1.0,3.646639503117676,70.16793060743213,,50.94900623812387,50.125541995033274,48.9938919347178,50.961467253655556,77.82411350608174,50.93435103251093,51.5901280887031,69.15888123594291,-0.023608768971332243,-0.09027416551426672,-0.6914933573922822,0.15384615384615385,0.2274774774774775,0.12923743658678033,-0.02220326836779423,0.07176832888585928,-0.0899033812058825,-0.14857048079115945,-0.10141766762440364,0.0518520159097727,0.12525981411035722,0.16742842604118505,0.3090689433584091,-0.17978533094812166,-0.12366785390041202,-0.20801800627418207,0.12100420359083876,-0.11722090307607938,0.1832690392118821,0.09810603363700031,0.22674259766535482,-0.053893088371373646,-0.3655721985252785,-0.35030369548342893,-0.19372412210699924,-0.018099547511312195,-0.2680562915857033,-0.04181814013756242,-0.3712436873492021,-0.20902688130064875,-0.3809951670222594,-0.25954278674590975,-0.3279813323835584,-0.2548384244272023,0.10748735244519393,-0.0014904657388258417,0.042649896175978995,-0.07384615384615384,-0.014618618618618613,-0.06161416973903049,0.10890531000594969,0.049434425138228724,0.02465053641959134,0.0687604844078627,-0.018576606270737293,0.07100923626939733,-0.11906349268598768,-0.17457365127874377,-0.05989978632022012,-0.042039355992844356,-0.11046860814302675,-0.12957961934493756,-0.12199318281115984,-0.09434698906868809,-0.17566178314401726,-0.12718794872285263,-0.19247670206148906,-0.1352053269520792,0.11364290708674372,0.011637874971003123,0.06981010153343609,-0.07410881801125706,0.015161502966381009,0.05626311175426087,0.11387977956019103,0.13256132494818343,0.015602208064271336,-0.06702087546241912,-0.0040357759986714,0.05960195667397795,0.015524253546275178,0.14576960305442657,0.0676537893313867,-0.07352941176470595,0.08171701112877582,-0.025185472948071497,0.02248595732386111,-0.01679627769038055,0.14434495881486345,0.08760701220342584,0.08054242892225913,0.017831969795467677,-0.26246205733558176,-0.004216304453550841,-0.41779477282779065,0.012307692307692306,0.05458258258258258,-0.23158049230320177,-0.2623114069266735,-0.21431965979501127,-0.04261566688659723,-0.018650946677816218,-0.031965481578559544,-0.25090490254466313,4.883593419305869,7.804177196399494,1.354350121791732,20.77005279273456,36.261804424349954,40.03946576714396,40.32746576714396,40.32746576714396,40.32746576714396,31.264715679705954,20.266666352264647,7.6053288661616145,1.6996090280804332,0.0,10.998049327441311,3976.569072270363,3651.8546816623193,330.45658241628735,12.0,20.0,20.0,23.0,26.0,24.0,24.0,20.0,16.0,236.073182004,16.0,4.290459441148391,5.030437921392435,5.8377304471659395,6.602587892189336,7.413970290190444,8.19229373114764,9.004913941467132,9.791941277791215,10.604826092122362,0.7380952380952382,0.9945714285714284,1.1351473000592471,0.7026089180156284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7015294268605649,0.9815126050420169,1.0138253043387786,0.649452676572359,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.050456081168516,0.0,5.112436884724758,5.907179729351506,0.0,10.220328581182207,0.0,5.101407525739723,0.0,12.13273413692322,29.914059071666912,12.611123474374185,6.2146005795353165,208.33477606567328,-340.59209470855177,-26.104990510882374,-12.16400338244828,-30.962917700777435,255.96551415489876,418.460289182286,23.171095361931375,14.945010327938784,24.61531112836976,0.45454545454545453,0.8441540087039996,0.22931804916357443,67.1672099755821,0.13502768460157458,61.58319962233847,0.15584599129600032,6.0,0.1875,0.37418190962965814,0.7595609190699057,0.8903845718741181,0.9498173140674068,0.9498173140674068,0.9498173140674068,0.8120999999999998,,1.4464285714285716,1.0037951315518465,0.9872320324391003,1.4446249954603823,-2.7308836060319415,0.9150856793145657,0.8809028768268998,-1.5187141158602728,68.26080000000002,4.794537184071822,0.0,5.425791397110385,10.835075002901908,6.923737199690624,5.316788604006331,29.828919765543436,0.0,0.0,3.4965075614664802,0.0,4.727387818712341,0.0,6.115892125483034,0.0,7.581209826196346,0.0,9.090768236835338,20.66666666666667,7.193528911564625,0.0,0.0,0.0,0.0,0.0,1.6155619593516424,0.0,27.847999999999995,0.0,10.769409869932057,4.584571568602954,0.0,0.0,1.5800666099773242,3.8031670445956163,0.016371076948278107,31.78412440165892,16.4762474782789,5.687386274683562,0.0,17.23421719361158,4.794537184071822,0.0,12.487188691387619,29.36687579958616,0.0,0.0,0.0,19.673049704437595,19.642823952095817,19.090277724573653,140.33586121486425,,101.79571190225087,100.12560959862256,97.86437986538071,101.82190467202246,156.85415061466932,101.75431635510753,103.07014331780285,138.88728026533343,19.090277724573653,140.3358612148642,,100.71089047367943,99.2472888585147,97.00055183699651,100.73843592542717,158.37911061819543,100.95361638570725,102.29935330057933,139.83647658774606,4.492568115299774,109.15028991932982,,79.1666623665334,77.79214926043556,76.06050356871589,79.18517534891708,120.1930591426641,79.00146784847121,79.99430210335603,106.72459609352299,1.1931423577858533,8.770991325929016,,6.3622319938906795,6.25785059991391,6.1165237415862945,6.3638690420014035,9.803384413416833,6.359644772194221,6.441883957362678,8.68045501658334,2.2462840576498864,70.16793060743213,,50.94900623812387,50.125541995033274,48.9938919347178,50.961467253655556,77.82411350608174,50.93435103251093,51.5901280887031,69.15888123594291,27.482352941176472,0.0,1.4598044556053216,0.0,0.0,5.194630391387245,0.0,28.3871085214858,0.0,5.116221445368271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.18467494402605,391.9409512321263,50.367106860085414,102.24140984101264,119.85105031544944,127.85105031544946,127.85105031544946,127.85105031544946,217.0,98.7691610346149,72.3593389884457,47.01176556869354,111.60000000000001,79.51,0.8333333333333334,7.1050167605822425,5.0,3.4371900789353447,3.9286759611450357,,3.9255898937765967,3.9255595847559714,3.9265085472831927,3.9255758424285867,3.904863274620321,3.9247334247402277,3.924149731800541,3.9098881753844053,0.21482437993345904,0.24554224757156473,,0.2453493683610373,0.24534747404724822,0.24540678420519954,0.24534849015178667,0.24405395466377006,0.24529583904626423,0.2452593582375338,0.24436801096152533,1.704657929318699,1.8383060928004173,,1.8375202605955352,1.83751253968264,1.8377542498960218,1.8375166811658092,1.8322263990230927,1.8373020609099893,1.8371533281720644,1.8335124031881003,177.23999999999975,105.64842248511574,69.6856092433971,,69.72350010599463,69.79455335983192,69.76171031591544,69.72434995635646,70.98299041818234,69.84140977591638,69.86985250250368,70.69824034098797,6.603026405319734,4.3553505777123185,,4.3577187566246645,4.362159584989495,4.360106894744715,4.357771872272279,4.436436901136396,4.3650881109947735,4.36686578140648,4.418640021311748,5.130120441678254,4.71399745859878,,4.714541050960964,4.715559603875302,4.715088925689203,4.714553239752136,4.7324439060103005,4.71623072636826,4.716637890780296,4.728424312743587,0.0,10.769409869932057,6.586414453752116,9.259940923007301,-0.1004034591083649,7.193528911564625,1.5800666099773242,1.4598044556053216,0.0,213.72739236880636,96.72989699032999,-158.13700842001316,-12.120554670407964,-5.6477503007147565,-14.37609167454665,118.84486250857742,194.29123371311988,10.758346301273289,6.938972632611423,11.428896100771757,538.0,17.0,1.224744871391589,0.45839714611087357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.11785113019775792,0.02992639636637849,11.966255326250886,9.544308372493166,7.575387400469408,4.947019742660411,6.84105096636125,3.477274150136772,4.164911199430503,1.710703211314997,3.2373027930903056,1.0789175429488573,2.3806470232397663,0.6589644247311351,1.505055731225664,0.32319737005903526,1.0747265850871977,0.17946002392117785,1.3639163616751186,0.4221239487461013,1.7834701020406096,0.44608649045914606,2.0602782915174753,0.42960654746551097,53.467174084800995,29.593149531528745,22.928373081064446,22.010935257325475,22.010935257325475,22.010935257325475,72.0,76.0,32.80351599999998,14.706483999999994,0.21428571428571427,16.06,6.444444444444445,3.6666666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,28.0,0.0,0.0,28.0,6.0,3.0,6.0,22.0,9.0,16.0,19.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,3.0,0.0,16.0,6.0,0.0,4.0,1.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,1.0,3.1354942159291497,5.154013876941603,3.597312260588446,3.8969093676180977,4.3990681005287335,4.854468694779152,4.96109484853612,5.220017930160428,5.323924195261811,5.229101255859354 +73658,CC[C@H]1OC(=O)[C@H](C)C(=O)[C@H](C)[C@@H](O[C@@H]2O[C@H](C)C[C@H](N(C)C)[C@H]2O)[C@](C)(OC)C[C@@H](C)C(=O)[C@H](C)[C@H]2N(CCCCn3cnc(-c4cccnc4)c3)C(=O)O[C@]12C,0,20.308943089430894,6.121743902439028,3.032520325203252,6.455284552845528,165.71152736196083,79.75659852032514,1.3114193399608534,6.168711382113822,4.157294489611563,7.686729170731707,191.9686894226312,22.69291338582677,6.324606299212598,3.763779527559055,5.897637795275591,147.43105200469873,84.76783916535435,1.6582307387874016,6.457078740157476,2.8402230971128613,7.763030173228344,240.46306475330616,18.811715481171547,6.272208786610877,3.4518828451882846,4.615062761506276,158.5085019269657,69.21759256903769,1.3709277752215896,6.3529878661087835,2.6913644816364486,7.789610778242677,195.57541737666253,17.174698795180724,6.275165662650601,3.0451807228915664,3.641566265060241,158.33140078352315,61.66258426807225,1.2890511330926262,6.349609939759036,2.8815679384203485,7.821482036144582,180.91554199121015,15.180555555555555,6.243775231481482,2.7337962962962963,3.0671296296296298,162.16276458092483,53.28170868518519,1.1878744888046713,6.300511111111111,2.9221965020576124,7.824965740740741,163.63550383249802,14.53784860557769,6.135694820717133,2.5796812749003983,2.800796812749004,161.20000799717187,50.77558145418327,1.1673911173916298,6.198921912350596,2.855301018149624,7.724334725099603,157.9599348505749,13.215753424657533,6.102681506849316,2.440068493150685,2.493150684931507,164.24541978396059,45.57045452739726,1.0943875159117191,6.151452568493149,2.861337043378995,7.725893109589042,146.48916432656148,13.327181208053691,6.0513169463087255,2.3942953020134228,2.453020134228188,161.9710067451557,45.80456621644295,1.1275745704252753,6.112319630872483,2.8245479120059658,7.657634610738253,149.00260576326767,11.741538461538461,5.970849230769233,2.170769230769231,2.0815384615384613,165.56625493163696,39.65670398615384,1.0323225667724645,6.018206769230768,2.7423717948717954,7.610759821538464,133.45854324419798,7.628395796153084,0.13914607707052676,0.018888479466999085,0.6714257386476306,4.018639698592109,1.3418887001945075,36.173200257122076,0.21707295271205831,0.1303041840174499,1.5089572271061467,0.08760770705268024,48.66876533260268,0.4927232103125715,0.0022253460137828017,-0.009201919379212277,0.3173073770299831,1.586443202630605,-0.3755021920216137,2.2753193445679596,-0.0288694356933355,0.004575625213713213,-0.08123528584473902,-0.0018549035189755789,-2.060616422348427,1.0526260768271525,0.013465012496435832,-0.00039562885514090874,0.00738502435539712,0.5008350777456136,0.14212304528663344,4.987667438084915,0.0204041080097398,0.013919811628364233,0.07854886762007283,0.007568770002801651,6.151114501408483,-0.1341750105717337,-0.0010120409259484636,0.0009693773291937272,-0.05971058535151912,-0.24562079370426387,-0.12199129492649179,-0.6714811209432178,-0.014882100075493026,-0.0006357052242282859,-0.01353243852091117,-0.0006800956313852428,-2.3640192981647186,-0.5690010355388107,-0.013210041237946226,-0.0008711729263244192,-0.06974326348954546,-0.42576481150990375,0.06568920870260349,-2.6349416378056096,0.0038646066543231213,-0.012797335553131966,-0.09512918836279605,-0.0077183448123911026,-0.8628756745485681,-0.3685247113864589,-0.0009252870598378368,0.0005187793822781245,-0.03935240596211229,-0.20731588814284801,-0.09099459306996112,-1.8042512750665636,-0.020586959469439618,-0.0011868258080112702,0.006937864613695084,-0.00013740873376077978,-3.991704258909683,-0.21345537962563077,-0.008780098119641387,-0.0004297374050979891,-0.016453024536927638,-0.2957306886800911,0.07817199493281926,-0.9346110671788822,0.01502638825362429,-0.008363170263134309,-0.07210698781322836,-0.00475609963537317,1.6223434847126101,-0.49047087663543204,-0.0006597768031617061,0.00046876599124569973,-0.04772846140640159,-0.1520767041031026,-0.11928272575652672,-2.381489700388847,-0.021163522123974373,-0.0015307009051020281,0.0023510354451591934,5.589861109450311e-05,-4.734488646906794,-0.10481856038072575,-0.0018314679398201115,-0.0003807786681084108,-0.030612730517549057,-0.07348647782913105,-0.006303839230020402,-0.48573814131220283,0.0011731493614928188,-0.0018945692582254122,-0.011329021977941299,-0.0008491478031493202,-0.1937021835865832,,,0.4626436781609194,0.9310344827586207,0.27586206896551724,0.0,0.6551724137931034,-0.3793103448275862,1.7820880826933467,0.02681138520712933,0.03422517831057761,1.0348305835883567,0.16578690567804552,0.3059226326040165,2.8169186662817034,0.47170953828206197,2.0019989787545773,1.4957531117288605,0.18159663824882735,0.324649228776889,0.0,0.5062458670257164,6.597342628292697,2498.0,752.9745000000004,373.0,794.0,20382.517865521182,9810.061617999992,161.30457881518495,758.7515000000002,511.34722222222223,945.467688,23612.14879898364,2882.0,803.2249999999999,478.0,749.0,18723.743604596737,10765.515574000003,210.595303826,820.0489999999994,360.70833333333337,985.9048319999997,30538.809223669883,4496.0,1499.0578999999996,825.0,1103.0,37883.5319605448,16543.00462400001,327.6517382779599,1518.3640999999993,643.2361111111112,1861.716976,46742.52475302234,5702.0,2083.3549999999996,1011.0,1209.0,52566.02506012969,20471.977976999988,427.9649761867519,2108.0705,956.6805555555558,2596.7320360000012,60063.95994108177,6558.0,2697.3109000000004,1181.0,1325.0,70054.31429895952,23017.698152,513.161779163618,2721.8208,1262.3888888888885,3380.3852,70690.53765563914,7298.0,3080.118800000001,1295.0,1406.0,80922.40401458027,25489.34189,586.0303409305982,3111.8587999999995,1433.361111111111,3877.616032000001,79295.8872949886,7718.0,3563.9660000000003,1425.0,1456.0,95919.32515383298,26613.145444,639.122309292444,3592.448299999999,1671.020833333333,4511.921576000001,85549.6719667119,7943.0,3606.5849000000003,1427.0,1462.0,96534.7200201128,27299.521464999998,672.0344439734641,3642.9425,1683.4305555555557,4563.950227999999,88805.55303490753,7632.0,3881.0520000000015,1411.0,1353.0,107618.06570556402,25776.857590999996,671.009668402102,3911.8343999999993,1782.541666666667,4946.993884000001,86748.0531087287,938.2926829268293,17.114967479674792,2.3232829744408874,82.58536585365856,494.2926829268294,165.05231012392443,4449.303631626015,26.69997318358317,16.027414634146336,185.60173893405604,10.77574796747967,5986.25813591013,62.57584770969658,0.2826189437504158,-1.1686437611599592,40.29803688280785,201.47828673408682,-47.68877838674494,288.9655567601309,-3.6664183330536084,0.581104402141578,-10.316881302281855,-0.23557274690989852,-261.69828563825024,251.57763236168944,3.2181379866481636,-0.09455529637867718,1.7650208209399116,119.69958358120167,33.96740782350539,1192.0525177022946,4.876581814327812,3.3268349791790515,18.773179361197407,1.8089360306695945,1470.1163658366274,-44.54610350981559,-0.33599758741488994,0.3218332732923174,-19.823914336704348,-81.54610350981561,-40.50110991559527,-222.9317321531483,-4.940857225063684,-0.21105413444379093,-4.492769588942508,-0.22579174961990062,-784.8544069906866,-245.80844735276622,-5.70673781479277,-0.3763467041721491,-30.129089827483636,-183.93039857227842,28.377738159524707,-1138.2947875320233,1.6695100746675884,-5.5284489589530095,-41.09580937272789,-3.334324958952956,-372.7622914049814,-184.99940511600238,-0.4644941040385941,0.26042724990361854,-19.754907792980372,-104.0725758477097,-45.67928572112048,-905.7341400834149,-10.334653653658687,-0.5957865556216576,3.482808036074932,-0.06897918434791145,-2003.8355379726609,-124.65794170136837,-5.12757730187057,-0.2509666445772256,-9.60856632956574,-172.7067221891732,45.65244504076645,-545.8128632324672,8.775410740116586,-4.884091433670436,-42.11048088292536,-2.777562187057931,947.4485950721643,-292.3206424747175,-0.39322697468437684,0.279384530782437,-28.44616299821535,-90.63771564544915,-71.09250455088993,-1419.367861431753,-12.613459185888727,-0.9122977394408087,1.4012171253148793,0.033315572212323855,-2821.755233556449,-68.13206424747173,-1.1904541608830725,-0.24750613427046703,-19.898274836406888,-47.76621058893518,-4.097495499513261,-315.72979185293184,0.7625470849703322,-1.2314700178465179,-7.363864285661844,-0.5519460720470581,-125.90641933127908,0.7360196725435075,0.6227968660638615,0.44127666484450956,0.33492373146667836,0.2798602414231355,0.1883057542584719,0.17825834712235408,0.1025369971410294,0.10994167212138631,0.058579510040847535,0.0698458505507317,0.03085213619371669,0.042635665652449674,0.017541189008541454,0.027076752357447584,0.009673783921397318,8.034506509037751,5.718567075086262,3.5616742337368765,2.214458809651165,0.49939459396651775,-0.4889843307279695,4.02942749395541,0.9772006108515237,6.0333629118719445,0.9875164617378123,14.558633105708777,10.983649290274478,16.02015648476224,11.732890350311365,1.9688050178404322,0.7394952683670332,3.5081474069931287,2.2631355596967384,7.011564516979931,1.1148292769584474,3.7208584389521127,2.458313229331618,20.864338614662046,14.69975554105042,0.2114314813811138,0.483548450440461,0.746648173389854,0.8664800555153962,0.8943142302170095,0.8943142302170095,1.384508295888774,1740.3154469653934,0.0,4.0,11.0,0.0,5.0,11.0,1.0,6.0,0.0,5.444001737580082,3.5153828308982913,1.650673320951209,0.8013693091893384,0.6040956302747835,0.6040956302747835,542.0631747187177,5871.579615085486,79.3276800687134,47.73641963484134,94.12782675869167,,24.0,2214.0,83.36328283359623,24.28467613112799,30.77069540911322,32.35197768060318,11.257379486545457,14.033534740968157,51.31586574760367,62.663142651604375,9.967957041894417,23.684314769000245,26.833333333333325,54.0,16.0,0.0,38.0,0.0,0.0373563218390806,-22.0,0.12744963594214304,0.012428310329615,-0.11502132561252804,0.009604519774011333,0.18018037135278564,0.0,0.5672086720867197,0.8666666666666673,0.4397590361445766,0.5547803617571047,0.8570621468926559,103.36110879621411,1.5550603420135012,1.9850603420135011,60.020173848124685,9.61564052932664,17.743512691032954,163.3812826443388,27.359153220359595,0.5338196286472143,0.26708074534161497,0.03726708074534163,0.3614906832298138,0.7209302325581395,0.24885655612258387,-1.3539604466024753,-0.03930487546173642,-0.011007808508963214,-0.04231126395632735,0.7511434438774163,4.0867660011891225,0.03420178463411167,0.03322573984706603,0.04490951649658375,-6.388542933368288,0.8814971887287159,0.748571516748086,1.5473754995655447,0.9654529303151927,0.4965498243440974,1.6663059313888502,0.8920476725399982,1.4383287927833284,0.7306400397973761,0.6671697473202958,0.7854679408309111,1.2300913334942223,0.864737180414451,0.9143116540843558,1.2256016704774662,1.5174358112533266,0.9619679600229085,1.0817979699147122,0.8663766974842447,1.0056468269813763,0.8940610420572628,0.6302768221347882,0.9237768326060853,0.926336381133494,1.0433202526769412,1.1438769715410928,1.250009600655939,1.4216396003387437,1.1749843051273483,1.2095948369644358,1.042971325997566,1.1614601100822342,1.1230744089267266,0.9693387430449844,1.1899001419521429,1.090419359228422,1.1216022706486053,1.3279666358716853,1.376650463664377,1.350734779374767,1.2549404265856696,0.9954412670606084,1.11574971038109,1.0037944778947665,1.3080576408911606,1.2901179864655388,1.370742326000044,1.0119041900305632,1.064404663643321,1.1110896919206086,1.1774381365212607,1.2079978961884297,1.1060071369510607,1.102670795927481,1.0644222892642652,1.1378087788376219,1.1016458650881706,1.0643964194290891,1.1447953900591106,1.0970699022482158,1.0644552239603176,1.2631637102198334,1.149512652181486,1.1420934508734593,1.1759746907229731,0.8981582163323095,1.0580871139015608,0.9180308607603861,1.2477445234997868,1.3792408496026105,1.3071356758944441,0.943946896334543,1.0673480861056206,1.057144218805041,1.0494573503301643,1.1513203796128548,1.0433829894616367,1.0931254048982717,1.0680750542755253,1.128848623699211,1.0580033509044433,1.1807185160409002,1.0834756372558207,1.1089004702090914,1.0216838295574973,1.0869647926013213,1.0081245669551606,1.0386269253487206,1.0282789666664134,0.9370503611346628,1.0192814894654256,0.9615576686662479,1.083851998662704,1.2743959630768626,1.1064840508075806,0.977002426425684,15.0,0.6925864707682889,9.777777777777779,7.048611111111111,5.550555555555556,3.761388888888888,2.7839455782312923,2.2613024376417235,1.6039619551524313,1.021581790123457,14440.942931115473,16842.546594496485,5607.4586959391945,4968.000361874281,23.220535527408366,0.48649241265921006,11.923921175440567,0.9473908948035636,0.0,0.7209302325581395,1.498512767759157,3.4271316744409486,5.291841184388031,6.1411451961499015,6.338418875064456,6.338418875064456,0.2419354838709677,0.007695405230758766,0.10628019323671502,0.06466615698267074,0.04625462962962963,0.028933760683760683,0.02047018807523009,0.016505857209063675,0.01262962169411363,0.009729350382128162,0.5551006469950381,49.022372528616025,21.119092627599244,11.03872,342.6301213786695,0.0,4.978703262912016,518.4810520192492,,458.53764266318257,451.0236154663439,456.83807461881105,458.63844439612376,631.0493729698081,455.8936665990952,458.9355926431558,558.1854394069619,0.06459067194193652,0.015992876411850807,-0.4871709972890812,0.47258744901423627,0.39477119662815247,-0.2798311007218292,0.06290069245725574,-0.1329941631725536,0.0351149523571742,-0.05383538007934838,-0.021172834918053367,-0.04233960751348755,0.1379878686103283,0.09676889769311309,-0.02094551103661519,0.01099901884945885,0.12462801229009815,0.10591269251021536,0.1378829465635378,0.09399654703552737,0.1068255154915067,0.05205506571628445,0.08639388311179517,0.12638731349299134,-0.017588889480458877,-0.007273226434084135,0.05132108865022037,-0.08893103423736291,-0.06112038205124851,-0.09091014397006926,-0.018562944836792845,-0.0685580579688053,-0.004878624804121059,-0.008968072969744448,-0.007762965773961962,-0.04857364434887539,-0.07458986800681627,-0.09493649778750615,-0.046121919334295,-0.10387338386821549,-0.10594749553165124,0.04895279965699227,-0.07284237001637203,0.01780326201878049,-0.09821124048801219,-0.06304299860456167,-0.08810120789658275,-0.01772955752322192,-0.04830959499667045,-0.006649753117860816,0.027465386146328367,-0.05861021360511879,-0.051588573172031096,-0.06781083487533013,-0.04987812143359718,-0.0948388973026395,-0.009108117417414121,0.004597787458164342,-0.0015684548584082127,-0.0820177835133139,-0.027981686494724614,-0.06309986098415953,-0.022751296939957644,-0.02450460801527645,-0.07358974948256682,0.0582552002423809,-0.025837113126170482,0.06922275698509711,-0.06418190118910029,-0.04778597200631986,-0.05428859851922882,0.03333438754045852,-0.06429541541129409,-0.004741612678216544,0.02481756099344587,-0.07108524243132994,-0.037842831283526404,-0.08889166868998645,-0.06583574810801983,-0.09749497512040221,-0.011747135494106943,0.0015580530732921905,0.0006380558626068157,-0.09727981826847806,-0.013740577073043927,-0.013162196005654003,-0.020159307623130087,-0.04559362079149435,-0.01828640618238961,-0.004697736279548861,-0.013428121865346065,0.0054044013629324485,-0.01453958882833492,-0.007507848316991669,-0.0096926153156675,-0.003980010223452786,12.971948020721777,27.138687814277187,24.77922186107371,14.19715819353831,34.87980568145528,42.71942792996293,44.846209521675036,45.04506139002092,45.04506139002092,116.11594076776548,86.75368048027391,10.532605018431987,18.82965526905956,0.0,29.36226028749155,30531.141639142017,28367.93006243844,5627.336111752607,317.0,92.0,125.0,161.0,194.0,210.0,233.0,254.0,284.0,811.4731432800018,62.0,5.733341276897746,6.610696044717759,7.523481312573497,8.421783006611578,9.338997404184445,10.246190338907978,11.166356426769534,12.078949249200981,13.001521418007474,0.5934959349593495,0.9783739837398376,1.1385728903380172,0.5496438562753792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6264132466773767,0.9636537541846008,1.003878516571036,0.5816846544508598,6.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,11.0,0.0,0.0,0.0,1.0,7.0,0.0,5.0,0.0,11.0,2.0,2.0,0.0,0.0,43.15776127333326,23.90908376802294,17.67432248668384,0.0,0.0,19.367590073162674,9.77851570501903,0.0,0.0,27.694948798762496,86.02713501567015,68.14885152727103,35.872072485241254,268.56360010579783,-1461.1810820097396,-42.4174432861406,-11.879520991949104,-45.66190881280436,810.6267748245156,4410.398533075746,36.9102367825728,35.85689864289224,48.465917945887306,0.5,0.8595028039902788,0.08408833042640569,13.459928470489544,0.07543773228063763,45.40689280083398,0.14049719600972127,12.0,0.1774193548387097,0.21584582453615392,0.4936441503730765,0.762236964765182,0.8845707403890861,0.9129860470856496,0.9129860470856496,4.929200000000005,,3.2142857142857144,3.785481619357841,2.857589786071251,3.205156683397875,-13.41385173430061,3.3931303549571608,3.1862629677498067,-5.586567921797401,214.2507999999992,47.96899090012823,0.0,24.334876151386727,23.671624184645573,148.03043767865933,27.749897912544487,37.050584926526994,0.0,11.257379486545457,4.8283137373023015,0.0,6.20050917404269,3.044522437723423,7.757478766584179,5.476463551931511,9.399720293137584,7.644440761556566,11.091102290249246,72.99999999999999,11.015617862386403,8.688150400429347,0.0,0.0,0.0,0.0,1.7304802476354433,1.9920865152930873,120.34000000000003,0.0,56.829306099966104,0.0,0.0,0.0,0.0,0.0,-1.979632315173083,140.0444655115761,0.0,4.794537184071822,0.0,134.8120122709838,44.61268272712828,23.671624184645573,87.49400571215504,37.050584926526994,0.0,11.257379486545457,0.0,67.60619432187164,77.04882934131734,72.93425109649115,1036.9621040384986,,917.0446856373469,902.0138677057241,913.6043750961977,917.2461882496875,1263.8914110092749,911.7529940377375,917.8410433172595,1116.5635190870892,72.93425109649115,1036.9621040384986,,914.1758268879996,898.6618799744522,911.0751679909404,914.3851895003443,1275.5125976739168,908.7330975948103,914.9960024732466,1121.957446735721,5.05111636814387,754.35187698183,,673.7383759073363,663.0612502767686,669.3741413057711,673.8753561976872,910.4405800354928,669.886831905403,674.3134823829059,812.2622096248415,1.257487087870537,17.878656966181012,,15.811115269609429,15.551963236305589,15.7517995706241,15.814589452580819,21.791231224297842,15.719879207547198,15.824845574435509,19.25109515667395,2.5687612257112984,518.4810520192492,,458.53764266318257,451.0236154663439,456.83807461881105,458.63844439612376,631.0493729698081,455.8936665990952,458.9355926431558,558.1854394069619,118.5294117647059,0.0,19.22297862940256,0.0,0.0,0.0,11.44005107924518,123.47705753823743,3.2253645228695658,0.0,31.21521236690544,0.0,-9.063183958501746,3.5186480674091083,-2.6684128512007286,0.0,0.0,71.54721249745576,927.5671532919246,184.31707043437632,421.5371959562367,650.8964656797278,755.3608591264378,779.6255216329281,779.6255216329281,1990.0,204.121316477871,151.6232216383888,113.44255101252753,171.85,171.85,1.0,8.313124367739595,6.954196310386875,4.738832636108659,7.476375949945319,,7.490351928530075,7.491044394435967,7.49476498792865,7.49035604290107,7.48326474477904,7.490801345734145,7.490294549112193,7.486042551017699,0.08170401096739066,0.12890303361974687,,0.1291439987677599,0.12915593783510287,0.12922008599876983,0.12914406970519085,0.12902180594446622,0.12915174734024387,0.1291430094674516,0.12906969915547759,3.3136487436256608,3.769606093460943,,3.7714737004302865,3.771566143870331,3.772062692768585,3.7714742497195464,3.770527077522155,3.7715336981081657,3.771466039957427,3.7708982110977645,632.3300000000028,5729.929139522734,508.0724311413811,,504.42543542389956,504.2518011806041,503.952196509404,504.4263650125064,508.0651401174727,504.3429406860548,504.43676760271063,506.389100533055,98.7918817159092,8.759869502437606,,8.696990265929303,8.693996572079381,8.68883097430007,8.697006293319076,8.75974379512884,8.695567942863015,8.697185648322597,8.730846560914742,10.411316360609254,7.988481935954123,,7.981277947461147,7.9809336663795305,7.9803393329297405,7.981279790325692,7.988467585487976,7.981114392100012,7.981300412727023,7.985163264716772,33.20729888219853,69.03610456780456,11.44005107924518,-0.9379326035652853,-4.950398125681769,2.7431118752784447,4.453634909719477,14.93365195606367,5.2411441256038795,787.8594708087254,289.8312522908107,-1576.8925597351717,-45.77649652355537,-12.82026471329408,-49.27789249172412,874.8206130514196,4759.6596465021175,39.83317227215138,38.69641989026112,52.303952159363924,14388.0,109.0,5.3138711471514455,3.165700998519297,0.2621886974951644,0.15137471507731048,1.8916069645368712,0.7544365914838552,0.15713484026367722,0.05685191928907697,0.0,0.0,0.0,0.0,0.1858925119417351,0.05968564716806983,0.5717550493010936,0.18333063910373748,0.995836233711436,0.29709701042899905,42.68914100752344,36.12221823170397,27.35915322035959,20.765271350934057,25.747142210928466,17.324129391779415,22.28229339029426,12.817124642628675,17.700609211543195,9.431301116576453,13.55009500684195,5.985314421581038,8.953489787014432,3.6836496917937054,6.308883299285287,2.253991653685575,13.244436716793107,6.544284125975952,21.271277890847838,9.76617191013357,33.83664272631568,13.117200620555339,198.48753055912275,78.6437828090731,43.232569347263414,30.76389621266935,28.707783222288846,28.707783222288846,308.0,371.0,128.67154499999998,84.77045500000017,0.3170731707317073,538.15,23.34722222222222,12.736111111111102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,11.0,11.0,123.0,0.0,1.0,127.0,11.0,4.0,9.0,118.0,15.0,62.0,112.0,0.0,0.0,0.0,43.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,65.0,14.0,1.0,5.0,58.0,15.0,0.0,5.0,10.0,0.0,5.0,11.0,0.0,0.0,0.0,2.0,2.0,4.283586561860629,6.6896770024760634,4.768563732896527,5.190871344399189,5.570965112765335,5.86735293443551,5.995674423131505,6.231711006321854,6.407653201912368,6.581072469180624 +5757,C[C@]12CC[C@@H]3c4ccc(O)cc4CC[C@H]3[C@@H]1CC[C@@H]2O,0,18.181818181818183,5.753636363636364,3.227272727272727,4.590909090909091,161.16419613197675,71.20626627272728,1.4126663117358185,5.838004545454546,3.238794191919192,7.356269454545454,200.04762844906764,21.27659574468085,6.067021276595744,4.148936170212766,4.638297872340425,142.73261144247013,78.98903061702123,1.8470870381276605,6.226648936170215,2.471926713947991,7.530826468085102,259.3095055806365,17.793478260869566,5.861521739130436,3.8260869565217392,3.4565217391304346,147.4334026983456,64.86201569565222,1.6343639390178384,6.003869565217388,2.171950483091787,7.37804852173913,221.77294073727748,13.847222222222221,5.7584027777777775,3.0347222222222223,2.1458333333333335,153.2879906299992,48.15860560416667,1.3793224550720558,5.8723368055555545,2.1206597222222228,7.334901416666668,178.48068485803435,10.295454545454545,5.639659090909093,2.4318181818181817,1.3295454545454546,158.46516181823472,33.281329988636365,1.1769438825435112,5.730085227272728,1.964567550505051,7.271477227272725,142.98849971996248,8.086206896551724,5.4462068965517245,2.0919540229885056,1.0804597701149425,164.2991955555335,25.507611068965524,1.0024614007717185,5.517086206896551,1.7386653895274584,7.133170344827587,115.9265465038737,8.063492063492063,5.486031746031746,2.015873015873016,1.2142857142857142,166.28001627376224,25.67164419047619,0.9554064878376507,5.546396825396826,1.9049823633156968,7.18515123809524,111.37499910289706,9.265822784810126,5.6124050632911375,2.0759493670886076,1.518987341772152,165.37583344333817,30.368741417721512,0.9870423061413672,5.672506329113924,2.2310126582278484,7.295383696202532,119.56835048519724,9.82,5.783,1.98,1.68,163.6639882837587,31.435347179999987,0.9851477791346999,5.842149999999998,2.621111111111111,7.444837680000001,120.58916390819087,6.867768595041324,0.08057851239669417,0.01391382178619953,0.6962809917355371,2.731404958677686,1.3232686965462384,32.88228768595041,0.23903721065677683,0.08018615702479334,1.0843484561524337,0.04858601652892559,52.944557529394,0.24248285563565994,-0.006845436961491181,-0.00690129582201526,0.2824424125197821,0.7241076138561632,0.21787934336519468,1.2828338498329623,0.037353883821292906,-0.006112365922278941,-0.09974510884961811,-0.004182859855811513,6.19534143133771,0.26068990298239286,0.0008839381961911301,0.0004331989973994184,-0.058435141933165576,0.02452389507725494,0.04508416314157,1.2579067399389212,0.008596507753884297,0.0013070247933883957,0.04796311060206814,8.533524973050121e-05,2.1161686897468472,-0.6032483930211203,-0.0029206841138659425,0.00015964981638000485,-0.157139577594123,-0.4264807162534435,-0.14652489609843608,-2.923145049586774,-0.026502160834462416,-0.003474383034894409,0.007604055070911138,-0.001306327134986227,-5.650378090062531,-1.2861570247933884,-0.009039256198347096,-0.000505003135331492,-0.06301652892561983,-0.3672520661157026,-0.19582964952319715,-6.169907201446281,-0.037414112132443174,-0.010418259297520644,-0.08215589847337007,-0.0038283760330578465,-9.463898437799923,0.24299420537665056,0.002744371615845003,0.00010022328993039835,0.023938444001139904,0.18134321269117498,-0.010915960812546715,1.1406873845824983,-0.0007589919924806523,0.0031087750546214764,-0.0027530480484045856,0.0010583972641778395,0.7377560845953708,0.637281910009183,0.0023507805325987396,8.180712560743056e-05,0.03928899383444836,0.20582447855175118,0.08618155006023523,3.064333500196766,0.0171415628289547,0.0034987636101272653,-0.02848100184747911,0.00011758520267611923,4.678076457081577,0.5257872162360079,0.00046866827073962304,0.0003311271406159018,-0.004681452034731682,-0.004707605398054242,0.05247298697797563,2.5286874371796166,0.011396927201644286,0.0018060754262998254,-0.04736869013785732,-0.0012440096244377022,3.630976937856946,-0.7968595041322315,-0.005251239669421504,-0.0003833493516999266,-0.039008264462809944,-0.22413223140495878,-0.2788205126575429,-3.888198796859506,-0.04842323971253506,-0.005193247933884305,-0.09999555211202946,-0.0036715219834710833,-9.022368659297783,,,0.4833333333333333,0.925,0.325,0.025,0.6,-0.275,1.1807629729028768,0.016052070835142197,0.03325207083514219,0.45556778389457336,0.12338220990197821,0.3562763973815344,1.63633075679745,0.4796586072835126,2.088349803559623,1.9110243908496034,0.0,0.17732541271001998,0.0,0.17732541271001998,6.185855227454556,800.0,253.16000000000003,142.0,202.0,7091.224629806977,3133.0757160000003,62.15731771637601,256.8722,142.50694444444446,323.67585599999995,8802.095651758977,1000.0,285.15,195.0,218.0,6708.432737796096,3712.484438999998,86.81309079200004,292.6525000000001,116.18055555555557,353.9488439999998,12187.546762289914,1637.0,539.2600000000001,352.0,318.0,13563.873048247793,5967.305444000004,150.36148238964114,552.3559999999998,199.81944444444437,678.7804639999999,20403.11054782953,1994.0,829.2099999999999,437.0,309.0,22073.470650719886,6934.839207,198.62243353037601,845.6164999999999,305.37500000000006,1056.2258040000002,25701.218619556945,1812.0,992.5800000000004,428.0,234.0,27889.86848000931,5857.514078,207.14212332765797,1008.4950000000001,345.76388888888897,1279.7799919999995,25165.975950713397,1407.0,947.6400000000001,364.0,188.0,28588.060026662824,4438.324326000001,174.42828373427903,959.973,302.52777777777777,1241.17164,20171.219091674022,1016.0,691.24,254.0,153.0,20951.282050494043,3234.627168,120.38121746754399,698.8460000000001,240.0277777777778,905.3290560000003,14033.24988696503,732.0,443.3799999999999,164.0,120.0,13064.690842023714,2399.1305719999996,77.97634218516801,448.128,176.25000000000003,576.335312,9445.899688330583,491.0,289.15000000000003,99.0,84.0,8183.199414187935,1571.7673589999993,49.25738895673499,292.1074999999999,131.05555555555554,372.241884,6029.458195409544,302.18181818181824,3.545454545454543,0.6122081585927793,30.636363636363633,120.18181818181819,58.223822648034485,1446.820658181818,10.51763726889818,3.528190909090907,47.71133207070708,2.137784727272726,2329.5605312933358,11.396694214876018,-0.3217355371900855,-0.3243609036347172,13.274793388429758,34.03305785123967,10.24032913816415,60.29319094214923,1.7556325396007666,-0.28728119834711024,-4.688020115932051,-0.1965944132231411,291.1810472728724,23.98347107438014,0.08132231404958397,0.03985430776074649,-5.376033057851233,2.2561983471074543,4.14774300902444,115.72742007438075,0.7908787133573554,0.1202462809917324,4.412606175390269,0.00785084297520611,194.68751945670996,-86.86776859504133,-0.4205785123966957,0.022989573558720697,-22.628099173553714,-61.413223140495866,-21.099585038174794,-420.9328871404955,-3.816311160162588,-0.5003111570247949,1.0949839302112039,-0.18811110743801668,-813.6544449690044,-226.36363636363637,-1.5909090909090888,-0.08888055181834258,-11.090909090909092,-64.63636363636365,-34.466018316082696,-1085.9036674545455,-6.584883735309999,-1.8336136363636335,-14.459438131313131,-0.673794181818181,-1665.6461250527864,42.2809917355372,0.4775206611570305,0.017438852447889314,4.165289256198343,31.553719008264448,-1.8993771813831284,198.47960491735472,-0.1320646066916335,0.5409268595041369,-0.4790303604223979,0.18416112396694406,128.36955871959452,80.29752066115705,0.2961983471074412,0.01030769782653625,4.950413223140493,25.93388429752065,10.858875307589638,386.10602102479254,2.1598369164482922,0.4408442148760354,-3.588606232782368,0.014815735537191024,589.4376335922786,41.53719008264462,0.03702479338843022,0.026159044108656243,-0.36983471074380286,-0.3719008264462851,4.145365971260075,199.7663075371897,0.9003572489298985,0.1426799586776862,-3.7421265208907286,-0.09827676033057847,286.8471780906987,-39.84297520661158,-0.2625619834710752,-0.01916746758499633,-1.9504132231404974,-11.206611570247938,-13.941025632877144,-194.4099398429753,-2.4211619856267528,-0.25966239669421526,-4.999777605601473,-0.18357609917355416,-451.1184329648891,0.6952706457503156,0.6089259881223292,0.417094441116098,0.35185354663925356,0.2604611851257906,0.20656317645762237,0.1639770497245577,0.12566233682712033,0.10069358208756625,0.07590691067885302,0.06323322540102672,0.04458497164846471,0.04040819772870049,0.02654197750214563,0.02538361540091557,0.015847703570652263,8.007243838995507,5.684758539859746,3.513789593759546,2.184292946620837,0.3599972337279677,-0.3209299130177743,4.028753211705799,0.9929834957898364,5.012503864457241,0.9959491360748016,13.624333676156398,10.945139105566566,16.003109868818353,11.696034870218252,1.9947952083292144,0.7868982596164849,3.455491821645473,2.234192840725148,6.003764319250405,1.0968890300652947,3.6691817871776506,2.4302104972516814,20.903200892082936,14.707201505943155,0.21389808424459475,0.533101629511341,0.7710956707456581,0.8837449896381662,0.8998526096504894,0.8998526096504894,1.5650034351283706,538.2198018097884,0.0,0.0,1.0,0.0,4.0,7.0,2.0,3.0,1.0,4.252221591892486,2.450682687140724,1.107478544390922,0.4717019886855338,0.3807928977764439,0.3807928977764439,196.59606590217504,672.6805632414439,50.74876763057959,15.288194619123722,29.19601286384069,,10.0,336.0,0.0,10.213054789681411,11.518956857145081,17.585323925606694,25.18037091493942,30.38936785217202,0.0,12.13273413692322,12.990104268152233,0.0,9.666666666666666,18.5,6.5,0.5,12.0,0.0,0.016666666666666698,-5.5,0.06851851851851848,0.025999999999999968,-0.04251851851851851,0.043333333333333224,0.09168240343347622,0.0,0.5166666666666669,0.7766666666666664,0.44814814814814846,0.490666666666667,0.7333333333333332,23.615259458057537,0.3210414167028439,0.6650414167028439,9.111355677891467,2.4676441980395643,7.125527947630688,32.726615135949004,9.593172145670252,0.6223175965665237,0.12068965517241378,0.05172413793103449,0.3620689655172414,0.6666666666666666,0.28904579062684077,-0.41727166690713513,-0.06290232786053171,-0.009483446975162162,-0.02318175927261862,0.7109542093731592,1.0263461972458654,0.046007950715420715,0.023326049937406026,0.039474853740225586,-3.2946985577930246,0.9930614230483651,0.9496126568466994,1.3221455018397483,0.9406843866405709,0.749839057520842,1.0322975663926313,0.9942783274140454,1.0301278069158473,0.9535330981784901,0.9715639433495917,0.947161746017704,1.0188643632756385,0.939633691728143,0.6479361761426979,0.505496162467317,1.6552864146561734,1.0364278431888443,1.0986197898167245,0.9461054824375915,1.0960276147679677,0.6849535077321309,0.5598819021248325,0.6030606502979363,1.0610683624752613,1.0598268902928196,0.829181801994302,0.6437800865977084,1.4815364325750084,1.1305208858631703,1.1649985213572196,1.0646101763968332,1.165304007575299,0.8605552259592215,0.7543911638624157,0.7881090479397802,1.1456583142594552,1.1448555956678697,0.9564743589743592,0.7231251835385443,0.9729228486646886,1.0052713691376702,1.136319892553059,1.1472268710047149,1.1473981167454232,0.9917721965416216,0.8891093751550615,0.897226704347134,1.1681201784977502,0.8836405729145053,0.6722789566755084,0.5960581164897457,0.7300129608786111,0.7587641504512493,0.928940907708813,0.8871934167826315,0.9350778869301988,0.7062614670129561,0.6291796129530429,0.620738925895136,0.9369616871561622,0.8526612610547627,0.8884391534391535,0.8326551235798573,0.7296288446140079,0.8675017409888816,0.8342159186493243,0.8518846229016862,0.8344128903795938,0.8837907641698405,0.9151367900917186,0.8942304313161454,0.8382900467429978,0.9105298633642552,1.1629259980525803,1.239499212233784,0.8616797505915939,1.082431681954844,0.870554254736403,0.9065168391204246,0.8616067669444946,1.1208996914185754,1.2574053494944915,1.2283149009081884,0.8538599037216805,1.15546329723225,1.566964102564103,1.829724473140553,0.8000296735905045,1.2093343419062026,1.133224365538515,1.1496186970195852,1.113713166243189,1.4940472712000228,1.7347250239001781,1.6852580309132248,1.0843658623394228,5.0,0.0,4.000000000000002,2.1666666666666665,1.6533333333333335,0.6633333333333334,0.483265306122449,0.23093820861678005,0.13680240614764422,0.06031635802469136,3546.5883384142107,4240.910271609286,1869.0245990970934,1621.8700280081646,11.36674524902711,0.458341634328332,6.156892654594221,0.8461821387360622,1.0,0.6666666666666666,1.2072100267448116,3.0087489314965734,4.351953074246375,4.9877296299517635,5.078638720860853,5.078638720860853,0.21739130434782605,0.0,0.11111111111111116,0.05555555555555556,0.055111111111111104,0.03015151515151516,0.030204081632653063,0.019244850718065,0.019543200878234888,0.01507908950617284,0.553391820012245,13.648393194706994,4.75,1.9608401566393734,120.38168253606061,1.0,3.9798701808335943,74.84480279868576,,66.81001601664745,66.64496386773371,67.16757045998052,66.81341736068279,73.39224217540098,66.76964878289384,66.8169874031728,69.92102702691142,0.035307371277875865,-0.08495362793235214,-0.4960028903676438,0.4056442957257405,0.2651044516689735,0.16465238234219912,0.039012913641683085,0.1562680710616546,-0.07622719617787661,-0.0919862137338593,-0.08609184606277108,0.11701564278628929,0.0379584575943075,0.010969899665551468,0.031134436250224815,-0.08392465488324079,0.008978491087285469,0.034070301261747295,0.038254842605625214,0.035963052489880534,0.016299880701157274,0.04423219337836699,0.0017563746902299973,0.039969522619430396,-0.08783761198021124,-0.036246438746438896,0.011474188676065554,-0.22568414111440813,-0.1561396873424105,-0.11072951130852669,-0.08889725305930414,-0.11087044047094291,-0.043328963050569186,0.007012556736505546,-0.026886895207976307,-0.10672254814719206,-0.1872743682310469,-0.11217948717948711,-0.0362950699736848,-0.09050445103857567,-0.13445537065052954,-0.14798933129327174,-0.1876361906559954,-0.15652003313477614,-0.1299259084619724,-0.0757652192035038,-0.07879584099632103,-0.17875111020704468,0.035381827738357054,0.03405835543766621,0.007203146013398358,0.03438043589481221,0.06639191750569493,-0.008249239811262537,0.03469002508210154,-0.0031752043558208017,0.038769473060795916,-0.0025388960834353534,0.021783989299631608,0.01393450278974907,0.09279315416499534,0.029173789173789506,0.00587955824535364,0.0564269228957656,0.07535480152726745,0.0651277781188137,0.09319100694767238,0.0717108553177,0.043633012728686534,-0.02626554377966058,0.0024201449527378955,0.08835802347548909,0.0765586680680589,0.005816293411230197,0.023798431926469788,-0.006723509747211081,-0.0017235105995902064,0.03965406807773156,0.07690120168433558,0.04767846466384951,0.022523531408811522,-0.04368401123190091,-0.025604272861041888,0.06858074006645695,-0.11602888086642597,-0.06516923076923102,-0.027551693387373476,-0.05602373887240361,-0.08205748865355526,-0.21070589320617258,-0.11824599413503745,-0.2025761578270083,-0.06476489367458484,-0.09221717571014133,-0.07556746252875557,-0.17041163587567437,10.5026299094428,23.178146275349302,7.762009630236172,10.059927305866019,26.234547269790404,32.18088116673977,33.32188029852717,33.41351666216353,33.41351666216353,41.76699607119246,38.22048781699207,0.0,3.5465082542003996,0.0,3.5465082542003996,3115.8904284662563,2776.827947114209,504.8657585574033,176.0,36.0,53.0,73.0,97.0,115.0,141.0,167.0,186.0,272.17763000800045,23.0,4.77912349311153,5.6937321388027,6.63200177739563,7.563719668414366,8.506132244056813,9.44359265743868,10.38779464774131,11.328197013928829,12.273287270206366,0.5606060606060607,0.952727272727273,1.1227783613063755,0.5154139008938775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6487075666848123,0.9409982174688054,0.9844401774481895,0.5893529966878227,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,6.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,10.213054789681411,5.749511833283905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.990104268152233,84.95327546575423,0.0,6.103966387748303,134.68625601658852,-194.43548524143168,-29.31050826199524,-4.418988300941629,-10.80197140230176,331.28232191876356,478.24507800001226,21.438259368584355,10.869206318182094,18.39404146153893,0.5,0.7891631680564981,0.35186322143036636,90.06636564048037,0.2030262522789321,127.7377554252301,0.2108368319435019,5.0,0.0,0.22112375629427475,0.5511102879694229,0.7971439846209935,0.9135987000779995,0.9302504501610569,0.9302504501610569,3.6092000000000026,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,78.73060000000005,10.213054789681411,0.0,0.0,17.250802561719567,57.47053937115639,0.0,29.32600418877882,0.0,5.749511833283905,3.8501476017100584,0.0,5.25227342804663,2.3978952727983707,6.872128101338986,4.844187086458591,8.592486175451668,7.034387929915503,10.36460809372245,24.666666666666668,5.955254314688839,0.0,0.0,0.0,0.0,0.0,3.2315043015663063,0.0,41.92000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.40224789748053,0.0,0.0,5.749511833283905,16.317021177429716,6.4208216229260096,17.250802561719567,56.07265434387607,18.19910120538483,0.0,0.0,0.0,22.678211639330613,28.543132934131744,26.50069386162159,149.68960559737164,,133.5700320332949,133.23278487832457,134.30051408278538,133.57698160554583,147.8667786151412,133.48755337974114,133.5842758463018,140.24104853188095,26.50069386162159,149.6896055973716,,133.12003203329493,132.71849916403897,133.98887254820443,133.12830356316823,148.94907287948035,133.0218557053225,133.13698520590782,140.640043009939,5.096862492703789,111.43324788120145,,100.33967386662339,100.15235747445146,100.74555317962597,100.34353430102053,107.84415014594515,100.29385899978065,100.34758621586171,103.87681519461634,1.3250346930810795,7.484480279868582,,6.6785016016647445,6.661639243916229,6.715025704139269,6.678849080277291,7.393338930757059,6.6743776689870575,6.679213792315091,7.012052426594048,2.5767042469412296,74.84480279868576,,66.81001601664745,66.64496386773371,67.16757045998052,66.81341736068279,73.39224217540098,66.76964878289384,66.8169874031728,69.92102702691142,41.40392156862744,0.0,2.3173531326110695,0.0,0.0,0.0,20.0496733276644,43.315367807720335,6.868613210716386,0.0,0.0,0.0,1.9986441274040472,0.0,0.16229091868228762,0.0,0.0,25.931531854264197,367.72523917824367,53.117241176771714,132.38495298584922,191.4859352668405,219.4601037178776,223.46010371787756,223.46010371787756,1087.0,119.60758091109624,98.24333875710839,69.20811368944226,40.46,40.46,1.0,7.896355044461337,5.523561956057013,4.027595091472273,4.40693635705988,,4.418429981974731,4.419277476786907,4.416559581860229,4.418412407267538,4.380277839452073,4.418638225062619,4.418393956217238,4.4010453028645795,0.20137975457361365,0.220346817852994,,0.22092149909873654,0.22096387383934535,0.22082797909301144,0.2209206203633769,0.21901389197260362,0.22093191125313094,0.2209196978108619,0.22005226514322898,2.0863166268957807,2.1763269249857884,,2.17893160585033,2.1791233964971077,2.178508198413585,2.1789276282514503,2.170259336601327,2.1789787353016474,2.1789234522970293,2.174989262102013,219.8799999999996,131.76074240604652,110.59631685641843,,109.74582653696805,109.67121902548124,109.90674172439482,109.74736190390755,112.51781057289527,109.72759816647417,109.74897332810276,111.10855263337325,6.588037120302326,5.529815842820922,,5.4872913268484025,5.483560951274062,5.495337086219741,5.487368095195377,5.625890528644764,5.486379908323708,5.487448666405138,5.555427631668662,5.574134900946293,5.399033967614636,,5.391314204794169,5.390634152666305,5.392779384259062,5.391328194904298,5.4162587058772464,5.391148094746353,5.391342877830039,5.403654855641113,0.0,0.0,20.0496733276644,2.991817090262031,2.488895646993365,5.955254314688839,6.780339821113632,2.3173531326110695,0.0,269.22943424596184,62.759563183486506,-90.60082655812005,-13.65777585340431,-2.0591096945027285,-5.033379253228892,154.36715243960776,222.84717890024723,9.989555231388492,5.064708611369254,8.5710453423172,724.0,39.0,1.8783314544833196,1.4157692093285776,0.11785113019775792,0.11785113019775792,0.7722742836258341,0.5182758138499538,0.13144585576580214,0.08538032205746532,0.0,0.0,0.0,0.0,0.08333333333333333,0.08333333333333333,0.445414213930016,0.3414746708050475,0.9119685537115545,0.6409376320913814,13.905412915006313,12.178519762446586,9.593172145670254,8.092631572702832,9.37660266452846,7.436274352474405,8.690783635401559,6.660103851837378,7.350631492392337,5.541204479556271,6.133622863899592,4.324742249901076,4.646942738800556,3.0523274127467475,3.5790897715290955,2.234526203461969,5.091901005143082,3.7106959542771696,8.333475527485211,6.1070259131840805,13.124998444984989,9.167453528481735,71.66356562598048,37.905703484191264,24.079242637631914,20.17446452582726,19.727295140620484,19.727295140620484,118.0,148.0,47.66703199999997,24.076967999999997,0.38636363636363635,149.02,6.090277777777778,4.152777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,6.0,6.0,44.0,0.0,0.0,47.0,6.0,0.0,3.0,44.0,6.0,23.0,41.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,2.0,2.0,0.0,20.0,2.0,0.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,1.0,3.295836866004329,6.443286305234876,3.8607297110405954,4.37260741275739,4.8432023497960515,5.304237309059027,5.494089721066114,5.764309052450791,6.062257880124221,6.354152625860088 +78759347,Nc1nc2c(c(=O)[nH]1)N(C=O)C(CNc1ccc(C(=O)N[C@@H](CCC(=O)[O-])C(=O)[O-])cc1)CN2,0,27.854545454545455,6.879350909090907,3.5090909090909093,11.345454545454546,167.1999500835769,110.39578389090914,1.4197690727605268,6.894843636363634,9.191919191919192,8.30493687272727,224.38238762433483,28.0,6.762701754385965,4.228070175438597,9.403508771929825,153.49509132642638,107.55725389473687,1.719839972807018,6.872763157894737,4.05214424951267,8.11530933333333,266.82195915054365,24.63917525773196,6.719717525773196,3.783505154639175,7.907216494845361,158.58789909134117,93.1810250103093,1.5138824036107736,6.794256701030926,4.765750286368842,8.11218342268041,227.2786583954877,20.044444444444444,6.55061185185185,3.185185185185185,5.681481481481481,164.1700773497158,73.76677927407407,1.3113108182254294,6.605364444444444,3.801440329218107,8.023590222222222,192.15450297015028,19.055172413793102,6.605860000000002,2.8482758620689657,5.289655172413793,164.81706666209752,69.12368907586207,1.2167605396995378,6.649928275862069,4.2793103448275875,8.104274041379307,178.6629806382582,18.73758865248227,6.72148865248227,2.652482269503546,5.73758865248227,167.35872385863073,67.68888797163119,1.15551542142539,6.7427269503546094,5.31993695823483,8.236733730496455,170.11762537004586,18.860655737704917,6.591661475409838,2.7049180327868854,6.008196721311475,164.7410276191389,68.57182687704918,1.2215918648629671,6.629392622950819,5.582877959927141,8.102328032786884,177.18945319378648,17.61946902654867,6.354991150442479,2.6814159292035398,5.221238938053097,162.88552688487948,63.82747527433627,1.231868611442301,6.412467256637169,4.609882005899705,7.885234973451328,175.09092375366714,16.737864077669904,6.320465048543691,2.6601941747572817,4.815533980582524,164.49312512586386,60.321247776699025,1.1720959560842525,6.372986407766992,3.935005393743258,7.874888194174757,167.12827148312377,7.849256198347109,0.19571583471074364,0.047666959353051756,0.649917355371901,5.049917355371902,1.568500834733053,36.925950866115706,0.20108743589361514,0.17637963636363638,4.054141414141415,0.1265848251239669,42.94995792010771,-0.09614615050021734,-0.028830316369435914,-0.02135353818234824,0.11595186312889666,0.9526344787588805,-0.3050925186019075,-0.3309062575032537,-0.0021525124576202404,-0.022684421052631486,-0.18161793372319687,-0.018433766750761176,1.5637382089651197,0.1938553293005028,0.033494755729743544,0.009648502167136632,-0.05122944534378461,0.3898202266337222,-0.026572519502101228,0.7285290266678085,-0.015006608640048158,0.0279075051546392,0.7200229095074455,0.02327098443554576,-3.8008439390909916,-0.23794306703397616,-0.008860494643403802,0.0002893443739695995,-0.055439240893786344,-0.4755065809611264,0.06905658804256795,-1.0967895758800117,-0.0012967800843912236,-0.007883555555555624,-0.2477777777777779,-0.00603006148760321,-0.34446548605166,-0.854773439726418,-0.023054819036762632,-0.004154652620865192,-0.07662581932174409,-0.8564377315474492,-0.16239835622190832,-4.026350772071815,-0.028574587284232126,-0.02044965517241382,-0.49371647509578553,-0.01592133973211737,-5.40969239497647,-0.6869093253619366,-0.006757794736533582,-0.00024128773829317586,-0.028769708692339257,-0.4767387609167105,0.055897451121835556,-3.226822917179533,0.0049588088895068955,-0.008017560283687912,-0.11738376674546885,-0.0018872509137800003,-1.7140816874940614,-0.17876439506841893,0.015814165289256138,0.008917982190981331,-0.02145237772659531,0.23130470125999178,0.17122605011064781,-0.9280239237908147,0.003382845073930989,0.01201662295081961,0.6352276867030966,0.013350346858149356,-1.3507881025886834,0.25967380969794485,0.00999560535361642,-0.0012122705157908864,0.018948292254808752,0.3923996196884371,-0.08561112340445769,1.1503723457909731,-0.010524154567658324,0.009676743362831645,0.42356932153392335,0.0072534255598626874,-0.8063465282487383,0.4402407125090267,-0.014128544331220615,0.0006417275391048698,0.036225627858461056,0.10030329776137374,-0.1381952998874294,2.167991237503004,-0.0018439064713011732,-0.009725514563107024,-0.29830636461704435,-0.012625304559094734,2.5233623977233055,,,0.4450980392156864,1.2426470588235294,0.5588235294117647,0.04411764705882353,0.6838235294117647,-0.125,0.8342784090878778,0.021336292910985096,0.028924528205102745,1.1607073269149368,0.25901286699004317,0.21712770958053335,1.9949857360028147,0.47614057657057657,2.006984403124407,1.2339123293135268,0.4167960725857346,0.35627600122514486,0.0,0.7730720738108795,8.566388057669464,1532.0,378.3642999999999,193.0,624.0,9195.99725459673,6071.768114000003,78.08729900182897,379.21639999999985,505.55555555555554,456.7715279999998,12341.031319338415,1596.0,385.474,241.0,536.0,8749.220205606303,6130.7634720000015,98.03087845000002,391.7475,230.97222222222223,462.5726319999999,15208.851671580987,2390.0,651.8126,367.0,767.0,15383.026211860093,9038.559426000002,146.84659315024504,659.0428999999998,462.2777777777777,786.8817919999997,22046.029864362306,2706.0,884.3325999999998,430.0,767.0,22162.96044221163,9958.515201999999,177.02696046043297,891.7241999999999,513.1944444444445,1083.1846799999998,25940.857900970288,2763.0,957.8497000000002,413.0,767.0,23898.47466600414,10022.934916,176.43027825643298,964.2396,620.5000000000002,1175.1197359999996,25906.13219254744,2642.0,947.7299,374.0,809.0,23597.580064066933,9544.133203999998,162.92767442098,950.7244999999999,750.1111111111111,1161.3794560000001,23986.585177176465,2301.0,804.1827000000002,330.0,733.0,20098.405369534943,8365.762879,149.03420751328198,808.7859,681.1111111111112,988.48402,21617.11328964195,1991.0,718.1140000000001,303.0,590.0,18406.06453799138,7212.504705999999,139.20115309298,724.6088000000001,520.9166666666667,891.031552,19785.274384164386,1724.0,651.0079000000002,274.0,496.0,16942.791887963976,6213.088521,120.725883476678,656.4176000000001,405.30555555555554,811.113484,17214.211962761747,431.709090909091,10.7643709090909,2.6216827644178466,35.74545454545456,277.7454545454546,86.2675459103179,2030.9272976363638,11.059808974148833,9.700880000000002,222.97777777777785,6.96216538181818,2362.247685605924,-5.480330578512389,-1.643328033057847,-1.2171516763938497,6.60925619834711,54.30016528925619,-17.390273560308728,-18.86165667768546,-0.1226932100843537,-1.2930119999999947,-10.352222222222222,-1.050724704793387,89.13307791101182,18.803966942148772,3.2489913057851236,0.9359047102122533,-4.969256198347107,37.81256198347105,-2.577534391703819,70.66731558677742,-1.4556410380846714,2.7070280000000024,69.84222222222222,2.2572854902479387,-368.6818620918262,-32.122314049586784,-1.1961667768595134,0.03906149048589593,-7.484297520661157,-64.19338842975206,9.322639385746673,-148.06659274380158,-0.17506531139281517,-1.0642800000000092,-33.45000000000002,-0.8140583008264334,-46.5028406169741,-123.94214876033061,-3.342948760330582,-0.6024246300254528,-11.110743801652893,-124.18347107438014,-23.547761652176707,-583.8208619504132,-4.143315156213658,-2.965200000000004,-71.5888888888889,-2.3085942611570185,-784.4053972715882,-96.85421487603307,-0.952849057851235,-0.034021571099337795,-4.056528925619835,-67.22016528925619,7.881540608178813,-454.9820313223142,0.6991920534204723,-1.1304759999999956,-16.55111111111111,-0.26610237884298005,-241.68551793666265,-21.80925619834711,1.9293281652892487,1.0879938272997225,-2.617190082644628,28.219173553718996,20.889578113499034,-113.21891870247939,0.4127070990195807,1.4660279999999923,77.49777777777778,1.6287423166942214,-164.79614851581937,29.343140495867768,1.1295034049586554,-0.13698656828437017,2.141157024793389,44.3411570247934,-9.674056944703718,129.99207507437995,-1.1892294661453906,1.0934719999999758,47.86333333333334,0.8196370882644837,-91.11715769210743,45.34479338842975,-1.4552400661157234,0.06609793652780159,3.731239669421489,10.331239669421496,-14.23411588840523,223.30309746280943,-0.18992236654402084,-1.0017280000000235,-30.725555555555566,-1.3004063695867576,259.90632696550045,0.7302264166731521,0.518789025517673,0.4496883223166556,0.28028275386329154,0.2969451718503701,0.14755981338335042,0.18308277609363482,0.08065520980703908,0.11831710792137118,0.04211001384964727,0.07579680698155178,0.022367429591494313,0.05058665206771813,0.01204570228183769,0.03253413699143046,0.0067191108963854124,8.032930466738888,5.693277355093958,3.559613731275661,2.192189975119251,0.48863644232216685,-0.6344592396946555,3.257491788277858,0.9573530708790065,7.005230812924494,1.8931664952417473,14.56138354206078,10.954492393484616,16.018315097636897,11.705075553122743,1.9849533347124828,0.7404612065368473,3.505879757156265,2.2418800809834893,8.002995076721543,1.240347704712317,3.718650571406508,2.437759393257458,20.890425670038734,14.699772944274256,0.29971260775766834,0.669209234931895,0.8488916839750882,0.9111000655369736,0.9230892187531308,0.9230892187531308,1.4234914344106129,1148.9497925506862,0.0,5.0,2.0,0.0,6.0,4.0,1.0,0.0,0.0,3.963276303361958,1.7218768073497763,0.6319070454938824,0.25454545454545663,0.18181818181818343,0.18181818181818343,-30.312623040596236,3286.7388369905825,173.90191590666808,59.75888794528332,138.3883208742118,,19.0,1046.0,41.90956048152914,34.18574071004052,35.98261785404067,18.64223798671226,0.0,17.032643867773697,12.13273413692322,0.0,25.91832285391341,5.733667477162185,15.133333333333338,42.25,19.0,1.5,23.25,0.0,0.054901960784313586,-4.25,0.25698206555349384,0.05025493025493044,-0.2067271352985634,0.09602941176470614,0.24059019812304444,0.0,0.6957575757575745,0.9401960784313721,0.4387755102040806,0.645502645502644,0.844166666666666,28.365465908987844,0.7254339589734933,0.9834339589734933,39.464049115107855,8.806437477661468,7.382342125738134,67.8295150240957,16.188779603399603,0.4734098018769555,0.18061674008810566,0.0,0.38986784140969155,0.3,0.5207743932502233,-2.845253724960277,-0.1889976242192948,-0.05173188590836868,-0.1422626862480139,0.4792256067497764,1.659800490834924,0.04936556745660115,0.030178190742453162,0.047422871166712115,-3.939062782410467,0.6945466555539791,0.7674440709398248,1.2877989422518485,0.9408630936445893,0.43148178773721413,1.5166784084965765,0.698992456572375,1.1154874253746265,0.7313216077195817,0.5741662557829692,0.7559763265996726,0.9160255924066001,0.7685587851168476,0.5469487081603941,0.6317144718280815,1.2303489213537346,0.6734639337225969,1.2194070120156935,0.7794227300951271,1.1296781684485115,0.5519390864912073,0.43788747125751815,0.5142467984288194,1.0601947566829493,0.9450808625336925,0.8546825520690821,0.8422477748110776,1.1246185147507626,0.9620319455354803,1.0242795078636717,0.9487881744671953,1.007066792645429,0.8582314181806182,0.7510215268088497,0.8222241911905068,1.0061695885794841,1.070548494283855,1.043905903998304,1.0356989355272506,1.0731048514399968,1.1041864181813255,1.1042618849098509,1.0720877083278526,1.1321220452190923,1.043871384295317,0.9986305183067224,1.0424505618247377,1.115951618044693,1.1102334475540516,1.0968240853373625,0.9237687539802676,0.9856929503690394,1.1120698300212264,0.8986934995962435,1.1081257071019543,0.9358879290078106,1.1073397684298694,1.0854769316239676,1.0867493101055878,1.0128405136282657,1.007338178273165,0.8719749973642142,0.6911245512339649,0.947271650851358,0.9219138346232598,0.857534194705789,1.0107251272162612,0.9926182560130036,0.8880241353125166,0.7951520159327139,0.8488577958934322,1.0435612415249202,0.9353643882832812,0.7767860606953441,0.799220567976061,0.8221851114972224,0.8198440726039109,1.025532017784674,0.9419588749904905,1.10106336265881,0.7853230612852709,0.6738736525900433,0.7521905603279994,1.0852451238459506,0.9533118637636404,0.9476018571102108,0.767338651121457,0.8653418799198014,0.9286983579801552,1.0125202173009857,0.9543543559354021,1.0406787267577375,0.9454060738599387,0.8998349785486623,0.957323250826874,1.0119149657471451,8.0,0.23099683705744312,4.222222222222223,2.5,2.4311111111111114,1.4375,0.6685714285714286,0.5225694444444444,0.4182413706223229,0.2381250000000001,7113.920100389898,8306.857004126052,3278.2416399701638,3049.720420944591,17.623392210771478,0.44990327177114176,9.694570395439335,0.8178621116684177,0.0,0.3,1.8180834101627021,4.059482906174884,5.1494526680307775,5.526814258979203,5.5995415317064765,5.5995415317064765,0.2222222222222222,0.00888449373297858,0.08444444444444449,0.04629629629629629,0.046752136752136755,0.029947916666666668,0.015548172757475083,0.013751827485380116,0.012673980927949179,0.0079375,0.4884589912855493,28.569444444444443,13.5168,7.99798437893676,191.7167722005419,0.0,4.433218885009187,250.9946402819486,,203.61035532912678,198.7915647845984,195.7718387902334,203.6548256025439,285.8372082433404,201.61138255059132,203.89600818936248,258.2550314035433,-0.012249077883387693,-0.1473070199559755,-0.4479735748233987,0.1784101658010744,0.1886435780469765,-0.19451218121527614,-0.008961346959027198,-0.010704360757571259,-0.12861133813579093,-0.04479812497158782,-0.1456238276010465,0.03640837580967759,0.024697286520132283,0.1711397331710375,0.20241488649766187,-0.0788245534918354,0.07719338737673537,-0.01694134865195891,0.01972945881093958,-0.07462728127871385,0.15822407693994314,0.1776018239018265,0.1838370785183457,-0.08849470693687377,-0.030314091045223118,-0.04527224205695511,0.006070124419443905,-0.08530198560717378,-0.09416125997691852,0.04402712865264166,-0.029702405764896814,-0.00644883693816297,-0.044696517795865864,-0.06111720151484953,-0.04763652737757355,-0.008020158871689907,-0.10889865461474114,-0.11779741312621067,-0.08716000930735265,-0.11790086645385339,-0.1695944054681221,-0.10353730940127126,-0.10903851295990614,-0.1421003115249301,-0.11594113466847955,-0.12178077295814917,-0.12577605346079437,-0.12595338056067887,-0.0875126646403242,-0.0345286049364437,-0.005061949441877459,-0.044266718613594214,-0.09440526000085421,0.03563750167295823,-0.0873863188758277,0.024659963798684778,-0.045456269493369166,-0.028954038538472726,-0.014908982272810187,-0.039908809472700014,-0.02277469234678096,0.08080166488638252,0.187089386695071,-0.03300785484382034,0.04580366072999967,0.10916541854425547,-0.025132025094102468,0.016822757020586186,0.06812931015486001,0.1566861196521989,0.10546561837151576,-0.03145027767201351,0.03308260083963456,0.05107203189966377,-0.02543209242301447,0.029154925773548553,0.0777041666377011,-0.05458149687183817,0.031153492836567338,-0.05233621146388332,0.054863155193728856,0.10447818126335061,0.0573009091157591,-0.018774093556707172,0.05608693376599585,-0.0721890712220693,0.013462732840830655,0.05573882211182333,0.01986236421367868,-0.08810661545548314,0.05871185945525411,-0.009169675186850997,-0.055139667841565536,-0.07358065102921911,-0.09973789944197921,0.05875121932405789,7.936949041234675,20.402713192695643,9.825224274996092,18.266433182706983,39.78484830099188,46.882208784449986,49.29808017721692,49.37138926812601,49.37138926812601,68.23746970622983,41.95301919665991,14.171066467914976,12.113384041654925,0.0,26.284450509569904,14613.17867910141,14135.527433900781,1821.5768789701797,131.0,50.0,63.0,80.0,100.0,105.0,108.0,115.0,131.0,471.15134317182054,36.0,5.153291594497779,5.988961416889864,6.863803391452954,7.721791776817535,8.60061479955531,9.467846701917901,10.349486613684583,11.222185388252527,12.106246785370823,0.7454545454545451,1.0341090909090913,1.1429347562998886,0.713633714549542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6610414044637998,1.0164705882352938,1.0414354763954186,0.6545187387820812,4.0,1.0,1.0,0.0,0.0,0.0,5.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,3.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,46.38607217785671,0.0,11.50524905251859,12.358434587102614,11.466446624403513,19.367590073162674,0.0,4.9839785209472085,0.0,0.0,37.107111519698464,30.30965586615756,18.05298694624777,379.93980574184644,-2075.803191475773,-137.88642752457102,-37.74187620865042,-103.79015957378866,349.6271827012502,1210.9356455148095,36.015488382097054,22.0170117366329,34.59816130042313,0.47368421052631576,0.541354593426399,0.10069913076032547,369.24329307707757,0.0802760630778581,97.4056917125385,0.45864540657360087,10.0,0.2777777777777778,0.3144733246591727,0.7021675016481516,0.8906992339508599,0.9559713515230709,0.9685509653736221,0.9685509653736221,-3.4004999999999956,,2.7500000000000004,3.299674267100977,2.788686399351643,2.742360303066169,-11.20333257764679,2.939335985312118,2.7213045533171627,-5.028233744110182,115.52470000000002,29.3912035259687,0.0,15.284745645900749,0.0,24.92532490414794,34.35666722785048,40.182723844667265,0.0,0.0,4.290459441148391,0.0,5.60947179518496,0.0,7.115582126184454,0.0,8.715552125907816,0.0,10.370141828956715,40.999999999999986,6.001374378187149,3.982545248273654,2.3469622330484605,0.0,0.0,0.0,0.9089523761291076,0.0,56.87600000000002,0.0,57.812118395574224,0.0,0.0,0.0,0.5284841738073576,0.0,-3.761068083951974,62.86141159649387,42.356264704765074,23.140974608188646,0.0,59.39703712338681,14.383611552215466,0.0,23.19963192162084,29.060005457918262,0.0,0.0,0.0,39.24985430022481,36.35727724550899,42.43551165905524,501.9892805638973,,407.05894595237123,397.3890310828968,391.37963720403434,407.1483358931427,574.2585897371082,403.0498629843996,407.6319396402945,517.5248762398136,42.43551165905524,501.9892805638975,,404.47071065825355,394.28345530209583,388.7549911811153,404.56729090202174,582.8777490643276,400.2834291158706,405.07071182540767,521.5382965511968,4.927135668377273,390.34656524368455,,318.8377053374767,311.4001983093059,306.10313908537654,318.90443763921104,443.0508058143179,315.7227905437278,319.28167381490823,402.49873971894567,1.2481032840898598,14.764390604820509,,11.972321939775625,11.687912678908729,11.511165800118658,11.974951055680668,16.889958521679652,11.854407734835283,11.98917469530278,15.221319889406281,2.4635678341886367,250.9946402819486,,203.61035532912678,198.7915647845984,195.7718387902334,203.6548256025439,285.8372082433404,201.61138255059132,203.89600818936248,258.2550314035433,55.90588235294116,0.0,0.0,0.0,0.0,5.528071050134554,0.0,57.278951201748015,-0.3707325730738742,8.26716897569047,0.0,0.0,-1.9173660297373054,1.2486541973980227,0.0,0.0,0.0,35.99853063301447,394.95444040593503,99.99458755894862,223.2715598396186,283.21989674169276,303.97478424385616,307.9747842438562,307.9747842438562,953.0,147.4742284684393,334.61254803716173,70.10120731738235,225.49999999999997,225.49999999999997,0.9,8.232697703074747,6.169925001442312,3.962186797428888,5.746038847647826,,5.745881670609882,5.745680469668439,5.743626873889416,5.745878107235419,5.738732953855806,5.745723231298197,5.745900248102526,5.7438685405559,0.116534905806732,0.16900114257787724,,0.16899651972382007,0.16899060204907174,0.1689302021732181,0.1689964149186888,0.16878626334870017,0.16899185974406464,0.16899706612066254,0.16893731001634998,2.6005715260432334,2.972286152972201,,2.972258798616991,2.9722237814558756,2.971866301977003,2.9722581784553213,2.971013877840612,2.972231223824253,2.972262031795757,2.97190837671267,323.73000000000104,3659.925267015952,224.7600988775541,,223.94521442800212,223.92722242197178,224.32174831137993,223.94653966659675,225.794519532023,223.95518020845068,223.94457260449687,224.7202649660534,107.64486079458683,6.610591143457474,,6.586623953764768,6.586094777116817,6.597698479746469,6.586662931370492,6.641015280353618,6.586917064954432,6.586605076602849,6.6094195578251,9.42897343896096,6.638809037791066,,6.63517687511655,6.635096530783836,6.636856829265447,6.635182792790107,6.643400811705759,6.635221375101679,6.63517400912798,6.63863179351163,0.0,65.39028007429435,29.917330500620487,5.751437354732422,-3.6341412121639385,4.084008348449844,-0.38601733139490135,0.5437689321283847,0.0,405.1146510009753,277.1915398647342,-1514.4374830055488,-100.59738567627862,-27.53522696373725,-75.72187415027744,255.07645076119553,883.4586720966371,26.27571139623389,16.062884947211582,25.241676345618203,4127.0,54.0,2.619645965680705,0.8498769902116872,0.0,0.0,0.5320430754584473,0.11257145119689779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19444444444444442,0.06457497586653338,0.43943406881609454,0.10572033022226224,24.827698166887174,17.638826867600883,16.188779603399603,10.090179139078495,14.847258592518505,7.377990669167521,11.534214893898994,5.081278217843462,9.465368633709694,3.3688011079717817,7.579680698155178,2.2367429591494314,5.311598467110404,1.2647987395929574,3.513686795074489,0.7256639768096246,5.30322285883323,1.616902880586165,7.933205075555696,2.013922520658951,12.181616119285966,2.4900391460110027,114.56540103048621,51.23939116694667,32.126551991253514,26.950526624918368,26.545965212042052,26.545965212042052,172.0,199.0,60.71665299999999,31.703346999999997,0.32727272727272727,174.14,12.833333333333334,7.583333333333334,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,12.0,12.0,55.0,0.0,0.0,57.0,12.0,5.0,10.0,47.0,17.0,36.0,40.0,0.0,0.0,0.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,11.0,5.0,2.0,34.0,14.0,0.0,7.0,7.0,0.0,3.0,10.0,0.0,0.0,0.0,1.0,2.0,3.871201010907891,6.713639442305471,4.406719247264253,4.863680881139593,5.367143557477889,5.830415125589567,5.996452088619021,6.109594744718902,6.259402193694847,6.584920872953022 +5361092,Oc1ccc2c(c1)[C@@]13CCCC[C@@]1(O)[C@@H](C2)N(CC1CCC1)CC3,0,18.150943396226417,5.764809433962263,3.2641509433962264,4.60377358490566,162.4044532265702,71.07819713207546,1.3954166460494524,5.8456849056603755,2.957809224318659,7.3602143396226385,197.57319344119438,21.54385964912281,6.108333333333333,4.228070175438597,4.771929824561403,144.18612574088772,80.10986582456142,1.8152563568771931,6.26251754385965,2.3663499025341133,7.5601790877192965,255.6367507199531,17.65765765765766,5.938828828828828,3.864864864864865,3.684684684684685,150.8410680274499,64.12554859459459,1.5644536205706219,6.067211711711711,2.1355105105105103,7.447037693693693,212.8967524641085,14.729411764705882,5.8653529411764715,3.223529411764706,2.8058823529411763,156.39916430644573,52.14832297647058,1.3493424656471587,5.9657888235294125,2.179330065359477,7.431046070588235,178.40661042493537,12.399014778325123,5.788980295566503,2.768472906403941,2.0098522167487687,158.82814412533355,42.13984775369459,1.2359948958490443,5.878359605911329,2.0938013136289,7.387603546798029,157.47662818967015,10.525581395348837,5.653316279069767,2.4465116279069767,1.5534883720930233,161.68340399692232,34.868682413953486,1.126626652522493,5.732858139534883,1.9470284237726097,7.288297990697674,138.51411393130454,9.656410256410256,5.639184615384615,2.2102564102564104,1.3435897435897435,163.34187027863226,31.363387723076926,1.048852590683,5.7082979487179495,2.1316951566951565,7.295625517948718,126.52103580813038,8.062111801242237,5.584627329192547,2.0,0.9130434782608695,165.81916088867044,24.8726308757764,0.9734779898424724,5.641823602484473,1.9883540372670805,7.2751039254658405,113.41109955907493,7.139130434782609,5.400469565217393,1.9304347826086956,0.6608695652173913,165.93238586110908,21.64904146086956,0.9614830988386954,5.465560869565218,1.6512077294685992,7.10184883478261,108.15635587871607,6.871484514061943,0.07973399786400852,0.013432056893527916,0.6920612317550732,2.7582769668921325,1.3581306707587397,32.90258622997508,0.23426820235632032,0.07934353862584545,0.9195591550967133,0.046149228907084366,52.26966052246521,0.41683061337930044,-0.003216089886517595,-0.0060437112792449945,0.30065641140944216,0.8497998288708601,0.054366641042046,2.0720589590351777,0.02529191895761139,-0.002179354580827359,-0.07044508322941372,-0.0028084808104277713,4.944725859307492,0.16302169025558114,0.00014120186402140375,-0.00039472174128212727,0.007411826208550982,0.2186055760281465,-0.00966766978359982,0.7651500443747393,-0.0024206671317380593,0.0008828084759732595,0.041869254444904136,-0.00043421819826241587,0.4688411727060339,0.08922580780265099,0.002230053190375494,0.0006959723727610921,-0.06287144263187658,-0.015435679433752725,-0.031097843401876546,0.4035835003245856,-0.004391710443616961,0.0022433204196594704,0.013643150982951623,0.0009116074969111249,-0.35597348753615515,-0.7243518809175995,-0.007655375315444532,-0.0004334286499154507,-0.09488677316226696,-0.32050393965911816,-0.11486088023511848,-3.465185322641685,-0.021527252025889135,-0.007855853896781466,-0.050162990645245986,-0.003973459411778157,-5.151190872197028,-0.34537657198208416,-0.0033019223923104325,-0.00042165583628172616,-0.06871766001308088,-0.1899575285419789,-0.06866003327483286,-1.6684720491062779,-0.015100283783061691,-0.003238597862352731,-0.022719654341020877,-0.0018331278101120015,-3.0270896744399622,-0.23123294173489972,0.0035377970077863216,0.0008349506029990696,-0.037199112742010564,-0.12005732489890561,-0.0787653513562133,-1.1629109992058488,-0.01672767200227395,0.0027296302178893947,0.07484228553114279,0.0029270238263457322,-3.2802379382100626,-0.41302910564755246,-0.005854119743769483,-0.0007901768505163051,0.009802122282194126,-0.22845158308807775,0.055821225742321554,-1.9127669993410694,0.007874132420793281,-0.006610185760499171,-0.10640564649611664,-0.002781799398119156,-0.4117085238701632,0.13671893138514413,2.4427074465578684e-05,0.0002812051863474619,0.01195845651400006,-0.021607565743650258,0.04442182395310581,0.6704997336016235,0.0077974651862968355,0.00019423003699293534,-0.014215521881873801,-0.00013659035089065382,1.5467998970357184,,,0.48194444444444445,0.90625,0.2708333333333333,0.020833333333333332,0.6354166666666666,-0.3645833333333333,1.2550921654684084,0.012143957935202584,0.030060624601869246,0.5114899388020367,0.12307338273319261,0.3612082244304838,1.7665821042704453,0.4842816071636764,2.100679099983249,1.8561481085912963,0.09478288834547903,0.14974810304647382,0.0,0.24453099139195286,6.173959040905676,962.0,305.53489999999994,173.0,244.0,8607.436021008221,3767.1444479999996,73.95708224062098,309.8212999999999,156.7638888888889,390.09135999999984,10471.379252383302,1228.0,348.175,241.0,272.0,8218.6091672306,4566.262352000002,103.469612342,356.9635,134.88194444444446,430.9302079999999,14571.294791037328,1960.0,659.2099999999999,429.0,409.0,16743.35855104694,7117.935894,173.65435188333902,673.4604999999999,237.04166666666666,826.6211839999999,23631.539523516043,2504.0,997.1100000000001,548.0,477.0,26587.857932095772,8865.214906,229.38821916001697,1014.1841000000001,370.48611111111114,1263.277832,30329.12377223901,2517.0,1175.1630000000002,562.0,408.0,32242.113257442714,8554.389094000002,250.90696385735598,1193.3069999999998,425.04166666666674,1499.68352,31967.75552250304,2263.0,1215.4629999999997,526.0,334.0,34761.9318593383,7496.766719,242.224730292336,1232.5645,418.6111111111111,1566.984068,29780.534495230477,1883.0,1099.6409999999998,431.0,262.0,31851.66470433329,6115.860606,204.526255183185,1113.1181000000001,415.68055555555554,1422.646976,24671.601982585424,1298.0,899.1250000000001,322.0,147.0,26696.88490307594,4004.4935710000004,156.72995636463804,908.3336,320.12499999999994,1171.2917320000004,18259.187029011064,821.0,621.0540000000002,222.0,76.0,19082.224374027544,2489.6397679999995,110.57055636644998,628.5395000000001,189.8888888888889,816.7126160000001,12437.980926052349,364.18867924528297,4.225901886792451,0.7118990153569795,36.67924528301888,146.18867924528303,71.9809255502132,1743.837070188679,12.416214724884977,4.205207547169809,48.736635220125805,2.4459091320754713,2770.292007690656,23.759344962620126,-0.18331712353150292,-0.3444915429169647,17.137415450338203,48.43859024563903,3.0988985393966217,118.10736066500512,1.4416393805838492,-0.12422321110715946,-4.015369744076581,-0.16008340619438297,281.84937398052705,18.095407618369507,0.015673406906375816,-0.043814113282316124,0.822712709149159,24.265218939124264,-1.07311134597958,84.93165492559606,-0.2686940516229246,0.0979917408330318,4.647487243384359,-0.04819822000712816,52.04137017036977,15.168387326450668,0.379109042363834,0.11831530336938566,-10.688145247419019,-2.624065503737963,-5.286633378319013,68.60919505517955,-0.7465907754148834,0.38136447134210993,2.3193356671017757,0.15497327447489123,-60.51549288114638,-147.0434318262727,-1.5540411890352401,-0.08798601593283649,-19.26201495194019,-65.06229975080099,-23.316758687729052,-703.4326204962621,-4.370032161255494,-1.5947383410466376,-10.183087100984935,-0.8066122605909658,-1045.6917470559968,-74.2559629761481,-0.709913314346743,-0.09065600480057112,-14.77429690281239,-40.840868636525464,-14.761907154089066,-358.72149055784973,-3.2465610133582636,-0.6962985404058372,-4.8847256833194885,-0.39412247917408033,-650.8242800045919,-45.090423638305445,0.6898704165183327,0.16281536758481857,-7.2538269846920596,-23.411178355286594,-15.359243514461594,-226.76764484514052,-3.2618960404434207,0.5322778924884319,14.594245678572845,0.5707696461374178,-639.6463979509622,-66.49768600925594,-0.9425132787468868,-0.12721847293312513,1.5781416874332543,-36.78070487718052,8.98721734451377,-307.95548689391217,1.2677353197477184,-1.0642399074403666,-17.13130908587478,-0.4478697030971841,-66.28507234309627,15.722677109291576,0.0028091135635415487,0.03233859642995812,1.375222499110007,-2.4848700605197798,5.108509754607168,77.1074693641867,0.8967084964241361,0.022336454254187565,-1.6347850164154871,-0.01570789035242519,177.8819881591076,0.6818165229895593,0.604440280229168,0.41509852042600837,0.3539922767077407,0.2554338950449076,0.20037967804923584,0.15579026586487835,0.11638401550665921,0.09369024487803214,0.06504787287683,0.05895561413238641,0.03772207704997305,0.03715377366458121,0.022225442563338756,0.023153335202104528,0.013245817179242865,8.007264944069977,5.6831566089779475,3.513905374098823,2.1826021751847593,0.3654068595956442,-0.36850850704342986,4.118710654393785,0.9935036614414078,5.014995192493669,1.8374408026755824,14.543273446076494,10.94360973968907,16.003115242959172,11.694499653364536,1.997174796657349,0.786830049146075,3.4556472258371693,2.232477341528875,6.003747067264538,1.0785392422382212,3.6693261223268663,2.4284849097252237,20.9049866883737,14.707201217696108,0.21867543569862316,0.4920090393282708,0.6965641917269353,0.8498868854013033,0.8802632253992322,0.8802632253992322,1.482932184244999,655.238871793888,0.0,0.0,2.0,0.0,4.0,10.0,2.0,2.0,1.0,4.436228579944406,2.8216768872006543,1.6133919812137156,0.7077316038552253,0.5283018867924527,0.5283018867924527,272.9642187095097,917.6150269624659,47.04821107015481,17.313491074763505,32.13051091653475,,11.0,441.0,5.601050810983688,10.213054789681411,11.45683129854474,5.749511833283905,44.56677056670401,43.35494588101061,0.0,12.13273413692322,10.966276799312087,0.0,11.566666666666666,21.75,6.5,0.5,15.25,0.0,0.018055555555555564,-8.75,0.06761006289308163,0.022129836904381084,-0.04548022598870055,0.036965811965811946,0.09656227758007097,0.0,0.517610062893082,0.7805555555555553,0.45000000000000034,0.4954802259887009,0.7435897435897434,30.122211971241803,0.291454990444862,0.7214549904448619,12.275758531248883,2.9537611855966226,8.668997386331611,42.397970502490686,11.622758571928234,0.617437722419929,0.05763688760806916,0.08645533141210375,0.2507204610951009,0.7142857142857143,0.24132302706433842,-0.41970227709455366,-0.04688942598548156,-0.007918910888576484,-0.0220895935312923,0.7586769729356617,1.319469828444543,0.04228188649791344,0.024895657140463073,0.03880793613072185,-3.903272216136892,0.9819471484638445,0.948213244816319,1.3500486291848912,0.8829506894809037,0.7238902625691747,1.2095908439088645,0.9840376028335232,1.090793082367198,0.9423036584263832,0.9542577104772155,0.9598810207612899,1.0519205054416696,0.9834027375214819,0.8233363745649163,0.7824726544984375,1.5773458643829008,1.0639095471310236,1.1870675438777352,0.9881773716337663,1.1195649756802921,0.8322508100088456,0.5716949346552688,0.7655610767681824,1.0742832769631554,1.0011617205166183,1.012413750030991,0.8452704153905729,1.480240861776809,1.1424397947098304,1.1020469376988167,1.0020881089264282,1.0533208770247735,1.0021135097015168,0.9638154276115295,1.0169615448064866,1.0279852079615677,1.1081518390855642,1.1475473851522222,0.9517676134432073,1.2221512700439898,1.1652395278870633,1.1190718720259578,1.1075769731419005,1.0934357392900396,1.1392604401201414,1.0664116773393846,1.1395900517042215,1.0937256939177247,1.021397469354905,0.9707552113055586,0.874838892581051,1.0154655947937599,1.0340252848447011,1.0297829676826338,1.0224329449687024,1.035524080408865,0.976953024666547,0.893113063402882,0.9457858895285673,1.03305648611442,1.0122957897281804,1.0030994835087115,0.9976276348799971,0.8796982167352535,0.9841163310961968,0.9895656216137058,1.0125455483114336,1.0208277681535842,1.0047225063862115,1.037663392103409,1.0101944103036662,1.0177797724883704,1.0398336734647908,1.2146437269246044,1.28089187949749,0.7484727653809777,1.0074617533035974,0.8363367449288749,1.0346328361223465,0.8880219596490423,1.2041349232545429,1.4405375495042696,1.2687063194525314,0.9383168780600808,0.891463376176382,0.6867778121504813,0.8332274889764584,0.6533726963678652,0.7980157572220601,0.8444317325704425,0.8939264502483322,0.8981152978960932,0.727318906906316,0.6553165305947349,0.6319404019267164,0.9201519316096125,6.0,0.024793388429752067,4.555555555555557,2.8125,2.346666666666667,1.034722222222222,0.5844897959183675,0.2638888888888889,0.07306626354245402,0.0625,4774.108510517285,5657.378257918592,2290.250525809053,1991.423855234052,11.694980731419314,0.46890615299425614,6.2111323073075315,0.8829063933576033,1.0,0.7142857142857143,1.2916918746187924,2.9062435673625444,4.114528473349483,5.0201888507079735,5.199618567770746,5.199618567770746,0.21428571428571427,0.008264462809917356,0.10846560846560849,0.05625000000000001,0.051014492753623186,0.026531339031339026,0.01948299319727891,0.013888888888888888,0.006088855295204502,0.010416666666666666,0.5146890213942413,16.193877551020407,5.75,2.264201381153932,144.2305113959246,1.0,4.173624760745202,99.46759353925732,,89.004475105198,88.03482724873335,87.70842112554013,89.01421457609126,107.07645229466578,88.61943138661852,89.06007399328854,100.36095344196056,0.06066092596531215,-0.04033523932918608,-0.4499468195490661,0.43443614179481627,0.3080908259290457,0.04003049353982506,0.06297556503772583,0.10796138230976202,-0.02746732271551919,-0.07660745134118616,-0.06085650566518223,0.09460030560524256,0.023724377159254354,0.0017709116287161803,-0.029386544772031117,0.010709783857931946,0.07925439636849038,-0.007118364964248128,0.023255012205626212,-0.010332888148670904,0.011126406652169312,0.04553187710963587,-0.009409002242196924,0.008969661712352783,0.012984939079766172,0.027968661425694392,0.05181428118402614,-0.0908466473008957,-0.005596131069877569,-0.02289753414117603,0.012266011477143733,-0.01874650677917099,0.028273511095063875,0.01483662133896837,0.019753471910582326,-0.006810327137731452,-0.10541417643236645,-0.09601143201801156,-0.03226822618092791,-0.13710748241399578,-0.11619715623418467,-0.08457277543916283,-0.10531650303783156,-0.09189148082993497,-0.09901063190320696,-0.0545511296007598,-0.08610023408577888,-0.09855030280870247,-0.050262293580855585,-0.04141172499517803,-0.031391754786632586,-0.09929419083165851,-0.06886818503799931,-0.0505548065095054,-0.05070944993333862,-0.0644572487054571,-0.04081741145457037,-0.02470711559457137,-0.03972174299602649,-0.057912939249699855,-0.0336510896970953,0.04436999401209335,0.06216103829945666,-0.05375118708452039,-0.04352620361913085,-0.05799541461810143,-0.035344060526962706,-0.07140393717125672,0.03440267809028929,0.08138931042807286,0.06342519464927408,-0.06275605973756487,-0.06010769649590587,-0.07342062232667755,-0.058827687879809604,0.014163663318252721,-0.08282401870087898,0.04110151323740904,-0.05813424470561803,0.03361161413112643,-0.08331095228397038,-0.11571375904024965,-0.060278350559658474,-0.007876625173282178,0.019896563996522117,0.0003063570762780594,0.020935377848418542,0.017279477545178064,-0.007833718659513883,0.03270806330313482,0.02037832919622536,0.033284351473517285,0.002447962875828513,-0.015459061880993077,-0.002959753697416293,0.029592690703834062,22.44986725423471,20.808832740862083,3.081339135366178,11.204255454724962,25.746478532203568,32.36212783064595,34.26216607944416,34.44303123424343,34.44303123424343,50.41629839959798,44.54755460619111,2.2747893202914966,3.593954473115372,0.0,5.8687437934068685,3297.810992312138,2615.594027873192,1382.4144794888157,275.0,44.0,67.0,94.0,136.0,167.0,209.0,253.0,283.0,327.21982916800084,28.0,4.976733742420574,5.905361848054571,6.863803391452954,7.819636302367592,8.7879833961978,9.755161543000131,10.728824601278935,11.70171770831114,12.678594975185312,0.559748427672956,0.9537358490566039,1.1270039673529928,0.5144152451447808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6452490904982489,0.9416944136145022,0.9848699308771595,0.5857370741467574,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,11.0,0.0,0.0,0.0,2.0,1.0,2.0,0.0,0.0,10.213054789681411,5.749511833283905,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,25.328831937239638,74.24722930994726,18.001587704457314,5.601050810983688,127.3258898765892,-221.4416359863067,-24.739611308672163,-4.178144075213334,-11.654822946647721,400.2901085860989,696.1733909761592,22.308599761482647,13.135346999550173,20.475687969887034,0.45454545454545453,0.8507444039917024,0.2920674963992794,105.92240947618893,0.16852405121767752,152.79570961174772,0.14925559600829777,6.0,0.07142857142857142,0.225507998036138,0.5073819705452194,0.7183284939076986,0.8764417890455506,0.9077672445029197,0.9077672445029197,3.3656000000000015,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,94.22560000000006,10.213054789681411,0.0,4.899909730850478,5.917906046161393,74.84527671586252,13.08951281182515,29.32600418877882,0.0,5.749511833283905,4.04305126783455,0.0,5.484796933490655,0.0,7.141245122350491,0.0,8.9126079636709,0.0,10.752719256128344,29.666666666666668,5.901341569035021,0.0,0.0,0.0,0.0,0.0,2.9706709982738126,0.0,50.54800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.73121026970862,0.0,0.0,5.749511833283905,39.845368972488686,11.83581209232279,5.917906046161393,62.49347596680208,18.19910120538483,0.0,0.0,0.0,27.26400799267338,34.19820179640719,31.37360435869936,201.10886115299493,,179.21064683992378,177.19804638383602,176.45786570180053,179.2303678522893,215.81495418395224,178.4363131745548,179.32261410198277,201.87624367417942,31.37360435869936,201.10886115299493,,178.68126123967357,176.58330910800743,175.98160073745532,178.70222635399728,216.93277516181067,177.89313461768762,178.79591386779524,202.3417910009959,5.339943203936121,138.7801669428705,,124.86790952519777,123.2866689346499,122.3981501065612,124.88274288035106,152.92714140926392,124.22133699425277,124.96063858401673,143.14017956706397,1.3072335149458068,8.379535881374789,,7.467110284996824,7.383251932659834,7.352411070908356,7.467931993845387,8.992289757664677,7.4348463822731174,7.4717755875826155,8.41151015309081,2.6699716019680597,99.46759353925732,,89.004475105198,88.03482724873335,87.70842112554013,89.01421457609126,107.07645229466578,88.61943138661852,89.06007399328854,100.36095344196056,49.90980392156862,0.0,0.0,0.0,0.0,0.0,22.024439216687597,52.19810633648945,12.751353091811922,0.0,0.0,0.0,1.120461257033677,2.6281684618291763,-0.729767928004535,0.0,0.0,31.04406492977814,448.8663581486265,68.45966935479599,154.03090907021485,218.0700090875226,266.0700090875226,275.57978409184955,275.57978409184955,1580.0,131.217817508269,78.74964031406162,60.33442054347494,43.7,43.7,0.8333333333333334,8.213432548751765,5.807354922057604,4.1195828276016915,4.8109507623094,,4.812010866945554,4.812046397593044,4.8114325524432155,4.8120084469051285,4.797710015955073,4.812038281570021,4.812005767931364,4.806128861370831,0.1716492844834038,0.20045628176289165,,0.2005004527893981,0.20050193323304352,0.20047635635180064,0.20050035195438035,0.19990458399812805,0.20050159506541754,0.2005002403304735,0.20025536922378462,2.2912206401521744,2.446363465620466,,2.44658379376502,2.446591177479916,2.4464636050804023,2.4465832908482352,2.44360746141951,2.44658949087318,2.446582734121342,2.445360686911895,261.27000000000044,250.57260474179097,149.17016893664123,,148.6869031447621,148.66005459460266,148.87715262363218,148.68785360352194,150.67466727512385,148.68438216533082,148.6877143903593,149.59131985003884,10.440525197574624,6.215423705693385,,6.195287631031754,6.194168941441777,6.203214692651341,6.195327233480081,6.278111136463494,6.195182590222117,6.195321432931638,6.232971660418285,6.399217455172114,5.880556465029933,,5.877311511250211,5.8771309238957175,5.87859022419356,5.877317903580012,5.890591728491758,5.877294556153631,5.8773169673015975,5.883375778818125,0.0,2.6281684618291763,22.024439216687597,1.8877585532669865,1.2058346100148045,6.169112733056185,10.464600682514869,2.286752409297052,0.0,319.7576915675118,67.17917651738688,-116.83614987212631,-13.053014722203873,-2.2044556579646475,-6.1492710459013855,211.19946531639238,367.31221878304154,11.77037413745915,6.930419222321538,10.803300552442398,1145.0,50.0,2.1625970665268723,1.4370096633088318,0.17423085626466897,0.10814354645876384,1.0011457921623514,0.540324944165052,0.3276543043815114,0.1489897712289349,0.0,0.0,0.2041241452319315,0.2041241452319315,0.14433756729740643,0.14433756729740643,0.2895620726159657,0.20889636302541126,0.7935935501194238,0.4904569483397431,16.363596551749424,14.506566725500031,11.622758571928234,9.91178374781674,11.239091381975934,8.816705834166378,10.437947812946849,7.797729038946167,8.806883018535022,6.114500050422021,8.017963522004552,5.130202478796336,6.204680201985062,3.711648908077572,4.8390470572398465,2.768375790461759,6.050616683105774,3.8892510768298285,10.923582805470433,6.580692281554546,20.26509141078586,11.229009206915501,84.09459632481041,48.12586334931791,30.18710761079777,23.104791337499222,22.040424528375546,22.040424528375546,144.0,183.0,57.11099699999997,30.803002999999993,0.41509433962264153,232.03,6.291666666666667,4.993055555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,6.0,6.0,53.0,0.0,1.0,57.0,6.0,0.0,3.0,54.0,6.0,28.0,51.0,0.0,0.0,2.0,21.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,3.0,2.0,1.0,24.0,3.0,0.0,1.0,2.0,0.0,5.0,2.0,0.0,0.0,0.0,0.0,1.0,3.4657359027997265,6.759581493549309,4.0163830207523885,4.54595082632812,5.036140584504618,5.564280915045175,5.810766671430125,6.131022664364386,6.452048954437226,6.67021166768796 +10695961,CO/N=C(\C(=O)N[C@@H]1C(=O)N2C(C(=O)[O-])=C(COC(C)=O)CS[C@H]12)c1csc(N)n1,0,39.06521739130435,7.004819565217389,3.739130434782609,11.88888888888889,164.26980562816706,155.49840026086963,1.7197529234257383,7.039913043478258,8.492298860857636,8.480468913043476,243.44502428861668,34.604166666666664,6.843375000000001,4.416666666666667,9.916666666666666,150.32677122278326,134.5465366666667,1.918071102708334,6.973679166666668,3.984182098765432,8.252688999999997,282.06212372968247,31.39240506329114,6.805725316455694,4.0,8.278481012658228,157.3115887649343,120.19313440506333,1.657042938273937,6.901311392405064,4.472300359431159,8.317204911392405,237.951650721556,29.102272727272727,6.932232954545456,3.840909090909091,7.954545454545454,158.79968144375334,109.87761742045451,1.6154047466783865,7.012231818181815,4.303345959595959,8.403747340909094,234.3775066728176,29.00990099009901,6.915016831683168,3.405940594059406,7.636963696369636,159.15188668604338,109.7775635247525,1.4841750474845845,6.989180198019801,4.54116244957829,8.423758693069306,219.67712512316143,29.847619047619048,7.075768571428571,3.066666666666667,7.177777777777779,162.39661503686085,113.41714842857144,1.3427293211665723,7.12228,5.910170487948267,8.609665676190478,204.11005132684764,26.53125,6.961808333333331,3.0416666666666665,6.5243055555555545,163.58486582901062,98.95926394791671,1.4098509073150527,7.008695833333334,4.881655092592592,8.472741625,202.6412469184753,24.867346938775512,6.7405887755102025,2.877551020408163,6.214285714285714,163.50000046436875,91.78907577551018,1.368102363395255,6.798618367346941,5.028533635676491,8.329845122448981,190.1201465128204,27.216867469879517,6.7836554216867455,2.8313253012048194,5.977242302543507,161.95140955948196,101.64530718072291,1.401178265696289,6.845501204819276,5.52488141867883,8.348183674698795,193.62602727547477,12.966446124763701,0.20746375236294884,0.04525277560615571,0.714555765595463,5.382692711615208,1.7312758531809533,57.89602771644612,0.3261886871188656,0.1846230623818525,3.62711320243439,0.13716224952741013,44.81939122781917,0.3564705419029612,-0.012713073015122872,-0.018948811165191707,0.2673282923755513,1.6144892529580608,-0.17115381065137872,1.8265433197857603,0.016911036090685047,-0.009630489918084472,-0.14624568116244555,-0.01227292344045366,1.102576389045154,0.1961845851977698,0.0193750203393075,0.004175099332017931,0.0680529300567108,0.6211597925124761,-0.21197221692930268,1.4758547271422076,0.00034880124957841613,0.018686018520734114,0.5942446976904047,0.009202224330597504,5.07892357631832,-2.155675373775563,-0.021476005327375845,0.0020985468196119705,-0.05151228733459352,-0.5344274503064671,0.17261112279443117,-9.621430201129918,-0.007122665184131552,-0.022649643409520557,-0.33990783217245624,-0.017279938262588095,-3.9111174213159257,-0.4294250313500159,-0.010138763124894737,-0.002849795795182034,-0.12996687192348727,-0.2520187746562935,-0.1364877169756968,-1.9474435442549909,-0.043198259662669033,-0.007166755881637341,-0.45022039909071554,-0.008158227142563052,-3.672759580148286,1.6482536681969575,-0.009952551534791637,-0.001396641801466862,-0.053686200378071834,-0.9968634040467685,-0.3039828682633943,7.042269127032139,-0.024985063201616087,-0.004192420559906429,-0.23961124990291344,0.0020614577189665226,-1.305908173455841,-1.117714240705734,-0.020836306710775052,0.002121614403911987,-0.020715185885318205,-0.8302068017923406,0.20254903640491817,-5.327738314725109,0.007987775888447164,-0.022069801512287338,-0.5320368123029797,-0.01129332153827981,-4.875325653627909,-1.476206550673199,0.010436513830484941,-0.0019092803012512028,-0.04286100073299642,0.3833035419586862,0.09887312762361197,-6.188441889471858,-0.013729353050581403,0.00796016743181205,0.39688399261468127,0.0039205880945951226,1.3527861303746649,0.6899184640262372,-0.014301311294326631,-0.005723899913645891,-0.052952832122440605,-0.3111602047762569,-0.31553777686157997,2.41402018402533,-0.001689393751649435,-0.012271255152936892,0.215817924470799,-0.006558881271778989,-4.992454100591313,,,0.46666666666666673,1.1166666666666667,0.43333333333333335,0.016666666666666666,0.6833333333333333,-0.25,0.9753158318536845,0.022497456725222402,0.031097456725222402,0.9821286281596405,0.22213584703952308,0.2525071483143577,1.957444460013325,0.47464299535388077,2.000397629295053,1.1119187899595349,0.33456021303340916,0.4186303960106327,0.0,0.8884788393355187,9.870644857215446,1797.0,322.2216999999999,172.0,546.8888888888889,7556.411058895685,7152.9264120000025,79.10863447758396,323.83599999999984,390.6457475994513,390.10156999999987,11198.471117276367,1661.0,328.482,212.0,476.0,7215.685018693596,6458.233760000002,92.06741293000003,334.73660000000007,191.24074074074073,396.12907199999984,13538.981939024758,2480.0,537.6522999999999,316.0,654.0,12427.61551242981,9495.257618000003,130.906392123641,545.2036,353.31172839506155,657.0591880000001,18798.180407002925,2561.0,610.0365000000002,338.0,700.0,13974.371967050294,9669.230332999998,142.155617707698,617.0763999999997,378.69444444444446,739.5297660000002,20625.220587207947,2930.0,698.4167,344.0,771.3333333333333,16074.340555290382,11087.533916000002,149.90167979594304,705.9071999999999,458.6574074074073,850.7996279999999,22187.389637439304,3134.0,742.9557,322.0,753.6666666666667,17051.64457887039,11908.800585,140.9865787224901,747.8394,620.567901234568,904.0148960000001,21431.555389319,2547.0,668.3335999999998,292.0,626.3333333333333,15704.14711958502,9500.089339000004,135.34568710224505,672.8348000000001,468.6388888888888,813.383196,19453.55970417363,2437.0,660.5776999999998,282.0,609.0,16023.000045508139,8995.329425999998,134.07403161273498,666.2646000000002,492.7962962962962,816.3248220000002,18631.7743582564,2259.0,563.0433999999999,235.0,496.1111111111111,13441.966993437003,8436.560496000002,116.29779605279198,568.1765999999999,458.5651577503429,692.8992450000001,16070.960263864406,596.4565217391303,9.543332608695646,2.0816276778831626,32.8695652173913,247.60386473429958,79.63868924632385,2663.2172749565216,15.00467960746782,8.492660869565215,166.84720731198195,6.309463478260866,2061.6919964796816,17.110586011342136,-0.6102275047258978,-0.9095429359292019,12.83175803402646,77.49548414198692,-8.215382911266179,87.6740793497165,0.8117297323528823,-0.46226351606805466,-7.019792695797387,-0.5891003251417757,52.92366667416739,15.498582230623814,1.5306266068052923,0.3298328472294166,5.376181474480153,49.07162360848561,-16.745805137414912,116.5925234442344,0.027555298716694876,1.476195463137995,46.94533111754197,0.7269757221172028,401.23496252914725,-189.69943289224955,-1.8898884688090742,0.1846721201258534,-4.53308128544423,-47.029615626969104,15.189778805909942,-846.6858576994327,-0.6267945362035766,-1.9931686200378091,-29.91188923117615,-1.5206345671077524,-344.17833307580145,-43.37192816635161,-1.0240150756143684,-0.2878293753133854,-13.126654064272214,-25.453896240285648,-13.785259414545378,-196.69179796975408,-4.363024225929572,-0.7238423440453714,-45.47226030816227,-0.8239809413988683,-370.94871759497687,173.06663516068053,-1.045017911153122,-0.1466473891540205,-5.637051039697543,-104.6706574249107,-31.918201167656402,739.4382583383746,-2.623431636169689,-0.44020415879017505,-25.15918123980591,0.21645306049148488,-137.12035821286332,-107.30056710775048,-2.000285444234405,0.20367498277555077,-1.9886578449905477,-79.6998529720647,19.444707494872144,-511.4628782136105,0.7668264852909277,-2.1187009451795844,-51.07553398108605,-1.0841588676748617,-468.0312627482793,-144.6682419659735,1.0227783553875243,-0.18710946952261787,-4.200378071833649,37.56374711195125,9.689566507113973,-606.4673051682421,-1.3454765989569775,0.7800964083175809,38.89463127623876,0.384217633270322,132.57304077671716,57.26323251417769,-1.1870088374291103,-0.47508369283260893,-4.39508506616257,-25.82629699642932,-26.189635479511136,200.36367527410238,-0.1402196813869031,-1.018514177693762,17.912887731076317,-0.5443871455576561,-414.3736903490789,0.7333090347380328,0.5780733128069019,0.44497780814426324,0.321971422087735,0.2877823975163875,0.17511276350126295,0.16788240116634007,0.09911962891577505,0.10692155953431533,0.056202553348901334,0.07014206946199114,0.03271089094232522,0.04212356353713975,0.01831966417451118,0.02756455330577189,0.010181998881960332,16.004889321437137,5.736933597770246,3.559601886535152,2.225203811378669,0.4505455081208863,-0.6232313243396412,3.2709678824329074,0.9714969238829761,7.004125896894035,0.6502052777077293,14.55797979592806,10.311866848570679,32.06282392666447,11.750318925060354,2.9363637633265927,0.7403336148095012,3.5058438808062187,2.2787500269802554,8.001940584669084,0.6102199915879349,3.7185924678415407,2.4760143185284558,24.440903851833838,14.696558616030938,0.3474706392586436,0.7423472892466622,0.8930731811353158,0.8930731811353158,0.8930731811353158,0.8930731811353158,1.6205606455966854,972.9401472388082,0.0,5.0,4.0,0.0,3.0,1.0,1.0,0.0,0.0,3.5056766288878274,1.2124877719742901,0.3371690218331951,0.3371690218331951,0.3371690218331951,0.3371690218331951,66.6518687257921,2538.5400664487433,125.77437103044566,55.18565361845096,132.11789479688622,,15.0,717.0,35.16868367672341,24.284676131127995,40.16705089184331,0.0,16.236695608785215,31.17548246082519,0.0,0.0,20.29406843544071,10.470530430962235,14.000000000000002,33.5,13.0,0.5,20.5,0.0,0.03333333333333328,-7.5,0.29307381193124366,0.03460869565217406,-0.2584651162790696,0.06030303030303019,0.22957093425605513,0.0,0.7326086956521735,0.963333333333333,0.4395348837209298,0.6979999999999994,0.9030303030303028,29.259474955610536,0.674923701756672,0.932923701756672,29.463858844789215,6.664075411185692,7.575214449430732,58.72333380039975,14.239289860616424,0.48442906574394484,0.219047619047619,0.0,0.4214285714285714,0.375,0.45109401861731097,-1.9280780915400295,-0.13567406342530322,-0.04191474112043543,-0.13771986368143072,0.5489059813826891,1.7972426114610727,0.04890047786296284,0.03907049155350159,0.05616383160815852,-1.8633650061700486,0.6876549003170903,0.7153603625613423,1.3371443743914078,0.7700892857142858,0.39335344558473473,1.2873134638814596,0.6786353248833242,0.8977954306193865,0.6827917467869958,0.590466669179302,0.7568431755652623,0.8610188846261746,1.0409578122123735,0.7368276290436856,0.8470553614951599,1.0224532851115131,0.7527847162777785,1.2318582910663107,1.0156410006560297,1.1303352048577784,0.7193377748126959,0.5049335776312928,0.757514639055254,0.8627642074981614,1.0356618633762638,0.966193354410897,0.8669356886801692,1.1356872294372298,0.95575134712324,1.006399738566463,1.0308201202594505,0.9875258563767798,0.9694289429952818,0.8999620954808595,0.9877362499881448,0.9869633644341985,0.9501659427159324,1.0053185299408922,1.048183518785329,1.226720886374352,0.9818861758966311,1.10374330833658,0.9474903214930713,1.1102123094859815,0.9838282059364091,1.1006311803618942,1.0323600363148413,1.0136851942241207,0.7925377097662699,1.1823228281616145,1.2722747858401933,1.088718820861678,1.24728801654505,1.1169433143248508,0.7993044838297945,1.0010986302114215,1.1448128321830526,1.4063729396112896,1.1531589509604043,0.940675526113524,0.9682180996464631,1.1102008134292716,0.8896404094553733,0.9840029761904764,1.1164296323213798,0.8867821185046265,0.9770040403230351,0.8731639095606606,1.120960514756475,1.1826588997103997,1.093937519712453,1.0195787275545132,1.2825746255057042,0.9489801985123508,0.9899081841582013,1.0407555879494657,0.939618052707484,0.9279106249710831,1.2653212122628492,1.170605389507275,0.9596473129970522,0.9012105605662027,0.9627680738512461,0.9985725831102942,0.9712480420643834,1.0576920076440282,1.154404549293788,1.1051348250143433,1.0492128501519244,1.1574071733938351,0.9794186783113892,1.024967472675369,1.0546728585102685,1.0993345876184317,1.0399633893918694,1.0963487717022755,6.5,0.1905907560453015,3.7777777777777795,3.3472222222222223,2.169444444444445,1.6705555555555556,0.9494331065759636,0.6440972222222222,0.42102072310405636,0.2771913580246914,7155.202657537029,7652.946676078756,3122.631151961368,2956.663394099095,17.42238146452059,0.4424593816070382,9.713685335606886,0.7935912954330927,0.0,0.375,2.0178853271691857,4.311074184082723,5.186392934223818,5.186392934223818,5.186392934223818,5.186392934223818,0.203125,0.008286554610665284,0.08585858585858588,0.0727657004830918,0.0433888888888889,0.034092970521541956,0.02315690503843814,0.016515313390313386,0.012758203730425952,0.010661206077872746,0.510609328599824,24.638671875,10.744801512287335,5.506763787721124,177.62386669168046,0.0,4.326382142472033,179.17234528935253,,139.31979392758325,141.8286933785251,142.35753310564587,139.3523602768776,215.90442103195474,144.01063936048925,145.40343572843332,191.91740605544683,0.02749176902236637,-0.061278526346529694,-0.4187325730051818,0.3741181657848324,0.2999408176272418,-0.09885993057484739,0.031548681176047366,0.05184433660178575,-0.05216298437389098,-0.04032013146551108,-0.0894774143960148,0.02460043206389628,0.015130173935870576,0.09338990603723267,0.09226172927722018,0.09523809523809529,0.11539945261450416,-0.12243699728141898,0.025491467814863087,0.0010693235644046427,0.10121172447072817,0.16383406431637387,0.06709006568719593,0.11331978050531526,-0.1662502857786599,-0.10351690395440503,0.046373880751007596,-0.07208994708994704,-0.09928626413193464,0.0997016867515854,-0.16618463443212747,-0.02183602762880614,-0.12268046644505719,-0.09371304759507426,-0.12598173566069226,-0.08726395683144207,-0.03311817495850982,-0.048870046017279255,-0.0629750497512992,-0.18188485515218197,-0.04682020471138304,-0.07883649317058378,-0.033636911219416775,-0.13243334722680697,-0.03881831332000371,-0.12412637101829178,-0.05947866246486964,-0.08194577122833885,0.12711684083189717,-0.04797248397098342,-0.03086311906306312,-0.07513227513227515,-0.18519790325307933,-0.1755831502558489,0.12163648189341478,-0.07659696423656576,-0.022708000321407962,-0.06606114464309933,0.015029337343687752,-0.0291371243044745,-0.08620050783005918,-0.10043348041986071,0.04688363035180068,-0.028990299823633155,-0.15423633602580608,0.11699408620109004,-0.09202251907192065,0.024488206378341863,-0.11953978678265433,-0.14668326644613558,-0.08233549374693644,-0.10877715024834651,-0.1138481999207089,0.050305239887046445,-0.042191451809897036,-0.05998272324802939,0.07121037043997755,0.05710997900302704,-0.10688888570698866,-0.04209021830845508,0.04311578049414098,0.10942145184448801,0.028583579724767078,0.03018305455106221,0.05320798446912995,-0.06893402404728083,-0.12648726706759778,-0.07410594759992352,-0.05780753638505321,-0.18225736602392265,0.041695782581981804,-0.005179191732770937,-0.06646653454136991,0.059501292743206806,-0.04781841428219125,-0.1113904933517375,0.552604724796058,8.181091512174444,14.108666765498345,24.693495087173318,50.74179293283701,54.231244667761835,54.231244667761835,54.231244667761835,54.231244667761835,60.01192887885159,33.357563698786045,10.036806391002274,12.55891188031898,0.0,26.65436518006556,10801.911365479491,10126.60254067473,1492.9739809189086,148.0,46.0,62.0,83.0,101.0,114.0,132.0,135.0,144.0,454.0496634319105,32.0,5.056245805348308,5.921578419643816,6.831953565565855,7.7306140660637395,8.650499558724462,9.564301637217232,10.489856546350627,11.412475097004958,12.34224990974728,0.8514492753623186,1.0428695652173916,1.1322131698553093,0.8225286241235392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7068821661025776,1.0267689684569477,1.0518857468570888,0.6848292064531544,1.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,0.0,0.0,1.0,0.0,2.0,1.0,2.0,1.0,2.0,1.0,0.0,0.0,0.0,30.525972197617726,30.826321142755614,10.843243482610035,0.0,11.814359458703011,19.283521283065944,4.9839785209472085,0.0,23.098670827325854,5.15571272675054,0.0,23.629758106972595,11.666344601007683,307.38836499980135,-1313.8475521512557,-92.45218692328471,-28.561903307635998,-93.84625372508971,374.04023372559345,1224.6925142974878,33.32218410716095,26.62375031081496,38.271641071796495,0.4666666666666667,0.6432837730817638,0.1270856498179427,300.6594623513738,0.0923733757927876,84.9050798988748,0.3567162269182364,8.0,0.21875,0.3653231996350504,0.7804880651977293,0.9389580447335323,0.9389580447335323,0.9389580447335323,0.9389580447335323,-1.9571999999999958,,3.7142857142857144,2.879158434346131,2.164386237896763,3.7080773509676703,-9.318693079214189,2.640223378212975,2.5834907754122343,-4.074426737280388,103.7611,33.85912766866468,0.0,15.200676855804016,5.15571272675054,18.339450841807327,25.203200589699428,22.34413460843948,0.0,0.0,4.174387269895637,0.0,5.54907608489522,2.3978952727983707,7.123672785204607,4.59511985013459,8.804625232612809,6.555356891810665,10.551506605478325,39.16666666666666,1.5091899964023328,3.9714687922648366,0.0,0.0,1.100535661156429,0.0,0.3982830214854791,0.0,47.972000000000016,0.0,47.87793565822667,0.0,0.0,0.0,0.0,3.64386618957385,-3.8178640819632452,52.08180581334423,16.156983476009223,5.131558479839333,0.0,70.23379004382903,28.75260027382397,0.0,12.617665194539086,21.805919340341557,0.0,0.0,0.0,37.836316709682805,32.51657964071857,37.410004565747734,358.34469057870507,,278.8922210328291,283.46544286142716,284.57077379543193,278.9598746235334,434.22790550770924,287.8452638290976,290.6346387385058,384.11760868555984,37.410004565747734,358.34469057870535,,275.9207924614006,280.77822832270385,282.56416019100357,275.99341274275935,441.1839957531108,285.38105534276553,288.2233806814544,387.9092388481739,5.1483295501676265,265.3311628096496,,210.5647030198438,214.67584964110776,213.8798161177662,210.60698604282985,315.6944482335156,218.0455722407623,220.3724337044162,287.82566974065554,1.2470001521915912,11.944823019290169,,9.29640736776097,9.448848095380905,9.485692459847732,9.298662487451113,14.47426351692364,9.594842127636586,9.687821291283528,12.803920289518661,2.574473458897361,179.17234528935253,,139.31979392758325,141.8286933785251,142.35753310564587,139.3523602768776,215.90442103195474,144.01063936048925,145.40343572843332,191.91740605544683,47.231372549019596,0.0,2.4358015390126684,0.0,0.0,5.57850540216981,0.0,48.38674435542609,-0.08917409693116674,2.5232855148232134,9.530464938474985,1.218132558578987,-1.6621383692365836,1.0151214884101787,0.0,0.0,0.0,31.5021434968451,438.35196007389106,92.82272504978255,198.30941246780526,238.57407497429563,238.57407497429563,238.57407497429563,238.57407497429563,1027.0,139.9997746056663,243.07663865150377,79.75163999283022,229.88000000000005,176.34000000000003,0.875,7.79144533681021,6.0,3.9316914944331764,5.382310621693146,,5.390100184692237,5.3949081701267225,5.390118043473351,5.390080687505404,5.351417249462895,5.394368030262692,5.3940946951359665,5.377622747416016,0.13105638314777254,0.1794103540564382,,0.1796700061564079,0.1798302723375574,0.1796706014491117,0.17966935625018013,0.1783805749820965,0.17981226767542308,0.1798031565045322,0.17925409158053388,2.467682027659499,2.7817300542262124,,2.7831762605576937,2.7840678659407994,2.7831795738080816,2.783172643329548,2.7759737209361717,2.783967740621093,2.7839170688741093,2.780858696679111,290.86000000000047,593.2458241552488,192.01997170695338,,189.89692760734164,189.43556430212558,190.2581589551374,189.90036096093104,194.9454268492476,189.5043745448693,189.505838379083,191.71312872889547,19.77486080517496,6.400665723565113,,6.329897586911388,6.314518810070853,6.341938631837913,6.330012032031035,6.4981808949749205,6.316812484828977,6.316861279302767,6.390437624296515,7.484221145030004,6.3562116745933075,,6.345093727352528,6.34266122529932,6.346994169931283,6.345111807279336,6.371331945751541,6.343024397593639,6.343032122104292,6.354612422180065,4.850653422504141,57.544337454872526,18.83099006065689,5.464804629623751,-3.3479187953341567,-0.9952183064583859,0.0,0.9191961010939946,1.2478205466391588,368.44638522808924,209.46322282630481,-895.2932964012202,-62.99956418423216,-19.462897747852615,-63.949521171515734,254.8817123345503,834.5405038872176,22.706689222612304,18.142184867113432,26.07939074647555,2584.0,46.0,2.4222129545368185,1.01556908072669,0.0,0.0,0.6116040570726224,0.20027486705419287,0.0,0.0,0.0,0.0,0.1111111111111111,0.07453559924999299,0.4502471114825046,0.27530866464423936,0.7840008863440658,0.43914296185018004,1.1301295466238124,0.5653240615230224,21.999271042140983,17.342199384207056,14.239289860616424,10.30308550680752,13.237990285753826,8.055187121058095,10.408708872313085,6.1454169927780535,8.874489441348173,4.6648119279588105,7.084349015661105,3.3037999851748467,4.802086243233932,2.0884417158942745,3.6385210363618894,1.3440238524187638,5.180000251677911,2.257301905275535,8.316261195901813,3.2630342971139332,13.136950562965733,4.416719334820334,100.97326246683201,39.218506408269604,29.498518475422678,29.498518475422678,29.498518475422678,29.498518475422678,156.0,186.0,54.30268799999999,31.633311999999997,0.34782608695652173,154.14,11.833333333333332,6.666666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,5.0,5.0,46.0,0.0,0.0,48.0,5.0,6.0,8.0,40.0,11.0,32.0,37.0,0.0,0.0,0.0,16.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,12.0,2.0,3.0,30.0,14.0,0.0,5.0,7.0,0.0,3.0,7.0,2.0,0.0,0.0,1.0,1.0,3.7256934272366524,6.092440464447984,4.2520603082138555,4.717382176595019,5.167995104864462,5.429893724336756,5.60947179518496,5.833347679010845,5.820082930352362,5.933570568689079 +123619,Cc1ccc(-c2ncc(Cl)cc2-c2ccc(S(C)(=O)=O)cc2)cn1,0,36.76923076923077,6.2157,3.6666666666666665,8.1551123773346,157.0496185186086,148.7402394358975,1.8907231172496144,6.370189743589744,5.03488001164613,7.805959641025638,259.22355111547967,34.63414634146341,6.239146341463415,4.219512195121951,6.913279132791328,140.69450945852435,134.84975207317078,2.181479625609757,6.45529024390244,2.8528806584362143,7.742148731707313,302.22103654300764,28.147058823529413,6.272823529411764,3.8823529411764706,6.818627450980393,147.9287322381321,107.87016220588234,1.9004048091043235,6.445575,3.882125998547566,7.793604823529413,264.3051999248658,24.285714285714285,6.302822619047619,3.4642857142857144,5.238095238095238,151.63821286852368,90.19522407142856,1.7331106869112733,6.46557619047619,3.4937046835194985,7.862693047619047,236.932291951746,20.873563218390803,6.129964367816092,3.1149425287356323,4.630906768837804,152.8427019002736,76.74542877011493,1.603857540666012,6.267857471264369,3.291270517004872,7.679416022988503,215.84823017617947,19.528089887640448,5.963112359550561,2.932584269662921,4.117353308364544,156.28700478451046,72.64217413483145,1.5043634882745283,6.0966853932584275,2.8320733342581037,7.551307460674158,199.93561621723816,22.545454545454547,5.96003896103896,3.051948051948052,3.909090909090909,154.89624902708272,84.55062663636363,1.627497023872571,6.139870129870131,2.627425044091711,7.587781922077923,211.08481588804133,24.235294117647058,6.0939838235294115,2.9558823529411766,3.573529411764706,155.81270843104093,89.77287272058824,1.6272539286587058,6.290325000000001,2.8849249576373763,7.769825588235293,208.94291348214531,25.491803278688526,6.171708196721311,2.6721311475409837,4.010321797207044,156.34216482412427,96.00363242622949,1.5608401462424912,6.3135901639344265,3.4749019916496144,7.8024846393442635,197.1851274134936,14.023668639053254,0.10466245890861273,0.009161372316971858,0.7153188691650233,3.900471587081272,1.5717487965966066,64.08136658908613,0.3156405154409205,0.10736265614727152,1.7822751834525958,0.07527844707429325,51.89566738266352,2.010102467888584,-0.0022343163194945724,-0.0029823112734800915,0.1733615561007682,0.6812422927355873,-0.14567982997381096,8.681260517230337,-0.017870161293884593,0.002650164365548954,-0.43294126023488555,0.008120264620516017,1.0004526281091266,-0.16620257570483798,0.01924221680782766,-0.0005563624985306113,-0.06335808485129746,0.5205803094608187,-0.03645446470172861,-0.2063374510770712,-0.0017852571565364806,0.017825918513361905,0.47827466383850714,0.008901684147426226,4.392241313977157,-2.818540433925049,-0.02438358222973608,-4.261608755959473e-05,-0.04712595097210478,-0.8397531559924726,-0.026495762377976958,-12.944203680050718,-0.02976221810909561,-0.025735916220531636,-0.2389317104680617,-0.01498833474218089,-6.826968774263961,-1.441882608991362,-0.010711559999093151,0.00038903885021386955,-0.015643066040944013,-0.39782088647399577,-0.0948087918498319,-6.606743864948196,-0.030075350909938403,-0.01176401187966174,-0.11725613911532266,-0.006766315037747394,-6.987503310274476,1.440462735190479,-0.004459318603225246,-0.0003805700659947493,0.01588251372175312,-0.06412741615532991,0.011568353113571954,6.7770230807496485,0.04137844863107951,-0.0017482510766866598,-0.12343007930378144,-0.0030824257547887642,5.6712422650962715,0.5097978944132788,8.219643604260176e-05,-0.0002253815643439614,-0.04299119683735067,-0.19413265852012287,-0.05696293647035158,2.3738736956291557,0.013817643558688957,5.452666991129986e-05,0.03102319766128632,-0.002247362825208982,1.1550230176041227,-1.7634876435781413,-0.006184894806048648,-0.0007100502131464654,-0.05506245890861274,-0.45624593860725915,-0.04969179938690787,-8.307118504998645,-0.0430871661432647,-0.007879586765672743,0.00963145762293127,-0.00490078493251344,-5.908579216972989,2.34329226889126,0.012861038359146799,0.0003603089354637137,-0.20628145848826807,-0.08719284666227826,-0.1139665650194977,9.977295336092523,0.015399452978769752,0.00985314881279572,0.055549951013176384,0.008312151916879531,-4.9500386547641515,,,0.5005952380952382,1.5104166666666667,0.8958333333333334,0.020833333333333332,0.6145833333333334,0.28125,0.6768425181028465,0.023827433493028183,0.034577433493028185,1.093994214608977,0.2882817815438627,0.18431635006198813,1.7708367327118235,0.4725981316058508,2.0247188235510314,1.5519104641430268,0.16910366642257624,0.14089115272267042,0.07400572087342021,0.4728083594080039,9.180878882051292,1434.0,242.41230000000002,143.0,318.04938271604937,6124.9351222257355,5800.869338000002,73.73820157273497,248.43740000000003,196.36032045419904,304.4324259999999,10109.718493503708,1420.0,255.805,173.0,283.44444444444446,5768.474887799498,5528.839835000002,89.44066465000003,264.66690000000006,116.96810699588478,317.4280979999998,12391.062498263314,1914.0,426.55199999999996,264.0,463.6666666666667,10059.153792192983,7335.171029999999,129.227527019094,438.2991,263.98456790123447,529.965128,17972.753594890874,2040.0,529.4371,291.0,440.0,12737.609880955988,7576.398821999999,145.58129770054697,543.1084,293.47119341563786,660.4662159999999,19902.312523946664,1816.0,533.3069,271.0,402.8888888888889,13297.315065323803,6676.852302999999,139.53560603794304,545.3036000000001,286.34053497942386,668.1091939999998,18778.796025327614,1738.0,530.7169999999999,261.0,366.44444444444446,13909.54342582143,6465.153497999999,133.88835045643302,542.605,252.05452674897123,672.066364,17794.269843334198,1736.0,458.92299999999994,235.0,301.0,11927.01117508537,6510.398251,125.31727083818797,472.77000000000004,202.31172839506175,584.2592080000001,16253.530823379182,1648.0,414.3909,201.0,243.0,10595.264173310783,6104.555345000001,110.653267148792,427.74210000000005,196.17489711934158,528.34814,14208.118116785881,1555.0,376.4742,163.0,244.62962962962965,9536.87205427158,5856.221577999999,95.21124892079196,385.129,211.9690214906265,475.9515630000001,12028.29277222311,546.9230769230769,4.081835897435896,0.35729352036190243,27.89743589743591,152.1183918961696,61.29820306726766,2499.1732969743593,12.3099801021959,4.187143589743589,69.50873215465124,2.9358594358974366,2023.931027923877,82.41420118343196,-0.09160696909927747,-0.12227476221268375,7.107823800131496,27.93093400215908,-5.97287302892625,355.9316812064438,-0.7326766130492682,0.10865673898750712,-17.750591669630307,0.3329308494411567,41.01855775247419,-11.301775147928982,1.3084707429322808,-0.037832649900081575,-4.308349769888228,35.39946104333567,-2.4789035997175457,-14.030946673240841,-0.12139748664448068,1.2121624589086095,32.522677141018484,0.6053145220249834,298.6724093504466,-236.7573964497041,-2.048220907297831,-0.003579751355005957,-3.958579881656801,-70.5392651033677,-2.2256440397500645,-1087.3131091242603,-2.5000263211640315,-2.1618169625246573,-20.070263679317183,-1.2590201183431948,-573.4653770381727,-125.44378698224848,-0.9319057199211042,0.03384637996860665,-1.3609467455621291,-34.61041712323763,-8.248364890935376,-574.7867162504931,-2.616555529164641,-1.0234690335305714,-10.201284103033071,-0.5886694082840233,-607.9127879938794,128.20118343195264,-0.3968793556870469,-0.03387073587353269,1.4135437212360278,-5.707340037824362,1.0295834271079038,603.1550541867188,3.6826819281660765,-0.15559434582511272,-10.985277058036548,-0.2743358921762,504.74056159356815,39.25443786982247,0.006329125575280335,-0.01735438045448503,-3.3103221564760017,-14.94821470604946,-4.386146108217072,182.788274563445,1.0639585540190497,0.004198553583170089,2.3887862199190466,-0.17304693754109163,88.93677235551745,-119.9171597633136,-0.4205728468113081,-0.04828341449395965,-3.7442472057856664,-31.024723825293623,-3.379042358309735,-564.8840583399078,-2.9299272977419997,-0.5358119000657465,0.6549391183593264,-0.33325337541091393,-401.7833867541633,142.94082840236686,0.7845233399079548,0.021978845063286536,-12.583168967784353,-5.318763646398974,-6.95196046618936,608.6150155016438,0.9393666317049548,0.601042077580539,3.3885470118037593,0.5070412669296513,-301.95235794061324,0.7216511032241418,0.6152381035438977,0.43624442917463163,0.365554874520909,0.2958845894222458,0.21017559539561678,0.1805398197787621,0.10569720142121189,0.11361042504977073,0.05368319273934807,0.07259788992348111,0.028394447145479108,0.04739327864155589,0.017147695251352502,0.030227428984013267,0.009264471755449548,17.001104084908143,5.682127851315082,3.5800800339280605,2.174880218910388,0.41812452892777224,-0.3933468470721923,4.042875457101953,0.9684609330576983,6.017541288914019,0.6158814526843204,14.549069518669814,10.309668563416148,35.45051764311523,11.694071463908994,2.9584613944070792,0.7613216059511918,3.5359043173141345,2.2270137688425313,7.01420676264798,0.29641538252817967,3.767304724735999,2.4243212165745813,24.443830671123155,14.702149056249393,0.30797749018105514,0.6013265965246871,0.7780300703256152,0.8664239910921148,0.8754201481988816,0.8754201481988816,1.624302956317669,982.5322761552856,0.0,2.0,1.0,0.0,11.0,0.0,3.0,0.0,0.0,3.529795101540754,1.8575762044583195,0.8502887040700049,0.3464044872904344,0.2951224360083833,0.2951224360083833,51.62434173241479,790.7057994939445,50.74720810360355,20.274507679331908,42.92016323872416,,12.0,464.0,9.837253136417502,8.417796984328938,4.895483475517775,5.022633313741326,28.078210464787908,6.255769183511404,36.65915541707259,25.122838405075452,9.967957041894417,11.600939890232516,12.014285714285716,36.25,21.5,0.5,14.75,0.0005952380952381672,0.0,6.75,0.18922645981469494,0.0872762457668117,-0.10195021404788324,0.0,0.11584921763869105,0.0,0.6304029304029306,0.8369047619047617,0.44117647058823567,0.5431266846361189,0.8369047619047617,16.244220434468314,0.5718584038326764,0.8298584038326764,26.25586115061545,6.918762757052704,4.423592401487715,42.50008158508376,11.34235515854042,0.5981507823613089,0.19817677368212447,0.06936187078874355,0.2913198573127229,0.1111111111111111,0.4543898907863703,-0.6348632173922534,-0.06164541543359133,-0.016278544035698804,-0.04534737267087524,0.5456101092136295,0.7623140311894758,0.02802490775965627,0.01954651362024297,0.030492561247579035,-6.594284567836794,0.701574560049398,0.5691192095624116,1.1698994942696956,0.9468480989956954,0.592507484688783,1.138842153107898,0.6862936187068642,1.0723331180321607,0.5147522212264569,0.7708921868560131,0.43418110953511074,0.8467670288029249,0.8613427649540829,0.65515862646019,1.0525287943046535,1.2920225994809684,0.8138858585415932,1.053308978822942,0.840871724120579,0.9752901464712318,0.6357383939965336,0.5840330927998437,0.688007419167181,0.8101048477135224,1.062045408880852,1.2639746022133975,1.1138048952882205,1.0864627100840334,1.2032258069311026,1.0234135865098626,1.0622505295716664,0.9925216826329752,1.2278691130411228,1.2034822854761102,1.227449952047164,1.0145788803770506,0.8193801833260584,0.9985708395114588,0.9184332376136434,0.8924315415821498,1.0261625558152088,1.0440119933919145,0.825085512997842,0.9469393440910634,0.9672863086395104,0.9405862838604477,0.9141679446197628,1.0585422322754667,0.626877795161112,0.8514773985449121,0.8671752595184701,0.8111574686054194,0.9464122417201293,0.9334189881226334,0.6412469061367022,0.6867123640917682,0.8387963294978328,0.7681208821232857,0.790653488799751,0.8762659892694118,0.9488026741191298,0.6401031715991798,0.8601200778866452,0.9464166348357521,0.9092244703991442,0.9914409245438197,0.9610346899533332,0.8563321802459446,0.7434461029807221,0.3861825722056072,0.7217817516477972,0.9706754970821178,1.3768201373376354,0.8904982312841512,1.0975515283384523,1.0416306228373697,1.0267964580190947,1.0216311958845907,1.3797163503902046,1.1771457326449295,1.003759181754449,0.6618017288183432,1.0129369841687017,1.100823515971964,0.8787461667934795,0.9929231067015274,1.0309680435813553,1.350967333654773,1.0613318049134548,1.0531136673589907,0.8834779993379904,0.9876507397812379,0.9964565264962765,1.1642048198836752,1.0032522965157284,1.072943629721234,6.5,0.0743801652892562,3.555555555555557,1.6875,1.2977777777777781,1.0208333333333335,0.6244897959183675,0.4670138888888889,0.46006550768455523,0.16687500000000005,5305.165753791188,5741.454756685136,2614.008552498041,2461.599835046444,11.546325353794238,0.4522543566863576,6.324449408822645,0.8256649088989542,1.0,0.1111111111111111,1.7556071173214947,3.427826014403929,4.435113514792244,4.938997731571814,4.990279782853865,4.990279782853865,0.25,0.009297520661157025,0.09356725146198833,0.0444078947368421,0.03816993464052289,0.03190104166666667,0.021534130893736805,0.018680555555555554,0.021907881318312148,0.009270833333333334,0.5387370442681149,18.781065088757398,7.7091412742382275,4.601177003168854,145.6434363309795,1.0,4.110192732746549,116.9659927117977,,78.5995905262749,86.52436788904957,87.04583702578559,78.57228724975793,86.75275693030015,86.2739181425838,85.79783060425117,88.95706855471377,0.1433364207059792,-0.02134782942034156,-0.32553106350183203,0.24235563127690105,0.17465639154812093,-0.09268645873262918,0.13547246226657195,-0.056615549714591096,0.02468422876864811,-0.24291493494074154,0.10786971485346962,0.019278153236417225,-0.011851576073467351,0.18385022680032034,-0.060729165815030205,-0.08857320501730091,0.13346599195467274,-0.023193569341783783,-0.003219929006823226,-0.005655982262108025,0.16603462649908488,0.26835062748952204,0.11825010336147133,0.0846359924729371,-0.20098452883263007,-0.23297352731820392,-0.004651714403162776,-0.0658810399159663,-0.21529528859377256,-0.016857504478673485,-0.20199637381415142,-0.0942915014174291,-0.23971012961181926,-0.1340599435409334,-0.19910525953582323,-0.13155180612523748,-0.10281778941752749,-0.10234385959196772,0.042465128231188407,-0.021868661257606465,-0.10199302253389458,-0.06032057543490827,-0.10309929729359749,-0.0952835565736101,-0.1095726605676075,-0.0657901429610751,-0.08988382864845275,-0.13464521534621887,0.10271654103257004,-0.04260666766026349,-0.041540726959620015,0.02220340383344346,-0.016440939184822145,0.0073601793992917565,0.10575653175760863,0.13109359098998322,-0.016283604927662638,-0.06925422092489365,-0.04094698913949008,0.10928161349729226,0.036352676859005964,0.0007853478400920483,-0.024601288600227703,-0.06010074484339186,-0.04977158638024911,-0.03624175605777242,0.03704467963130886,0.04377652070231539,0.0005078737045822017,0.01740651384775984,-0.029854000880106243,0.02225663674555565,-0.12575080665177465,-0.05909372730721971,-0.0775047873374893,-0.07697610294117642,-0.11697199387848088,-0.03161561153697603,-0.12963391617827094,-0.13650708332888106,-0.07339224874302808,0.0054040238636288256,-0.065102099245974,-0.11385496159833247,0.16709552465933455,0.1228811026728941,0.039329144477211676,-0.2883769286403085,-0.022354437076549705,-0.07250940179898703,0.1556972934124626,0.048787947761579804,0.09177445087871111,0.03116799893132433,0.1104187485254068,-0.09538443003852345,9.572943414696239,21.14744523882919,6.549229678677922,22.462896281315178,38.43892922694741,46.44235991549533,47.51453161626554,47.56622392395785,47.56622392395785,48.59325176522475,37.245851139432645,4.05848799414183,3.38138766534409,1.776137300962085,11.347400625792094,5218.655074172668,3768.780160274495,1869.1221375292344,92.0,38.0,47.0,59.0,78.0,85.0,95.0,100.0,110.0,358.0542764000004,26.0,4.859812404361672,5.700443573390687,6.591673732008658,7.455298485683291,8.347827345782498,9.220389707829185,10.113545864301683,10.990819793335792,11.884095840669021,0.794871794871795,0.9888205128205132,1.107348519885042,0.7660499243215084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7515107477352989,0.9813976872800396,1.0125310474909897,0.6996703721680313,9.0,2.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.837253136417502,0.0,0.0,9.967957041894417,8.417796984328938,0.0,0.0,23.733674027155736,42.81902403369567,35.470287304980005,15.612044784107562,257.1532869153975,-359.2887218762031,-34.88704639660677,-9.212531330159052,-25.663480134014506,308.77762864781226,431.41707761774137,15.860161706996777,11.061976349172856,17.256683104709655,0.5,0.8024602573123784,0.18673636984452452,83.62901836553283,0.12526580212621383,2.411391345272127,0.19753974268762153,6.0,0.11538461538461539,0.3321614977676026,0.6485459142865031,0.8391250714968216,0.9344601464663927,0.9441627290057194,0.9441627290057194,4.175920000000004,,2.0577731092436977,1.034781686231729,0.8415279599975453,2.070074984872557,-2.542869279879017,1.0444761631780368,1.0586558634835384,-1.1957707076938315,95.76080000000003,8.417796984328938,0.0,9.967957041894417,0.0,11.819220675208399,6.255769183511404,65.5748179310472,0.0,22.384282469939446,3.970291913552122,0.0,5.3230099791384085,0.0,6.8658910748834385,0.0,8.488999457045455,0.0,10.153195134975888,31.000000000000007,15.730686500648623,8.742332698875131,0.0,0.0,0.0,0.0,5.006675982219063,0.0,38.564000000000014,0.0,23.22678669851483,0.0,0.0,-3.2286778278400594,0.0,0.0,0.0,43.18659227551664,0.0,0.0,0.0,24.641523209734757,9.837253136417502,6.923737199690624,5.693927994848461,59.7537400979752,5.022633313741326,22.384282469939446,0.0,29.87594704853883,29.308919161676656,30.30687099527716,233.93198542359548,,157.76772483302108,172.96250397091316,174.0886926011885,157.7114134085689,174.4095174237668,172.46079660490275,171.5074398865454,178.213079786351,30.30687099527716,233.93198542359545,,156.1582899722847,172.1674737323014,173.45754663119027,156.09194137861914,176.10476361035276,171.6276515876597,170.63866399483402,179.10990781712135,4.869235105465009,170.51523716121474,,118.0007020534608,128.0311892525932,128.8253349633053,117.97297213968238,127.04475844307308,127.67662720391691,127.00088409555218,130.05998338415066,1.2627862914698815,9.747166059316479,,6.573655201375878,7.206770998788048,7.253695525049522,6.571308892023704,7.267063225990284,7.185866525204282,7.146143328606058,7.425544991097958,2.4346175527325036,116.9659927117977,,78.5995905262749,86.52436788904957,87.04583702578559,78.57228724975793,86.75275693030015,86.2739181425838,85.79783060425117,88.95706855471377,38.274509803921546,0.0,3.107381780145891,6.109258611880965,0.0,0.0,0.0,39.4887108521486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.28714451455322,454.13706812388324,68.4686775755383,133.68521456175324,172.96942707689752,192.62091153130075,194.62091153130075,194.62091153130075,754.0,125.16390674736249,111.79384743932654,58.80138755959531,68.3,59.92,1.0,8.993690340491332,5.700439718141092,4.396069331149349,4.816647335196193,,4.835281076331395,4.816857820042557,4.814565754196117,4.835321745025025,4.824786676010939,4.818041249864152,4.819680959249311,4.818365054332401,0.18316955546455618,0.20069363896650805,,0.20147004484714146,0.20070240916843987,0.20060690642483822,0.2014717393760427,0.20103277816712248,0.20075171874433964,0.2008200399687213,0.20076521059718336,2.3561795451879566,2.4475468497821002,,2.451407998247102,2.4475905482787543,2.447114592492563,2.451416409034802,2.449235258941748,2.447836203125569,2.4481764721985724,2.4479034075289845,253.48999999999984,152.7128542439245,138.44450388584423,,135.80851803887757,138.1521388074538,138.39304234081922,135.79504851605483,137.56278312524373,138.0135532192818,137.84590630980458,138.25224052493442,6.363035593496854,5.7685209952435095,,5.658688251619899,5.756339116977242,5.766376764200801,5.658127021502285,5.731782630218489,5.750564717470074,5.743579429575191,5.760510021872268,5.904028125760029,5.805938288716992,,5.786714675392651,5.803824270380204,5.805566507169877,5.786615490223586,5.799549154795618,5.802820629422574,5.801605177682021,5.804548583953663,23.22678669851483,9.019915861897509,0.5148244861216094,4.214268333075077,0.0,12.378444017235502,4.539096070909744,1.920528192649266,-3.2286778278400594,299.680753206913,145.53099510411968,-203.33259532293508,-19.743658108527853,-5.213656290331668,-14.523756808781076,174.74680608609322,244.15226172581274,8.975755835821248,6.260314403225968,9.766090469032509,1351.0,38.0,2.6932121005807126,1.6231291942108876,0.28867513459481287,0.10206207261596575,0.6246510209357292,0.25951494917658546,0.14433756729740643,0.034020690871988585,0.0,0.0,0.0,0.0,0.0,0.0,0.2347080484106438,0.06792825173587279,0.3678338467407534,0.11994719715998378,17.319626477379405,14.765714485053547,11.342355158540423,9.504426737543634,11.243614398045342,7.986672625033438,8.485371529601819,4.967768466796959,6.703015077936473,3.1673083716215364,5.662635414031526,2.2147668773473703,4.02842868453225,1.4575540963649627,2.8716057534812602,0.880124816767707,4.449755266244703,2.3249185090126034,6.101516120792616,2.4485563828923995,8.864147264705048,2.888400925580675,74.62039057052908,48.26104736830399,30.625591755417414,27.61839882721192,27.44991666214206,27.44991666214206,128.0,149.0,48.94589499999999,24.494104999999998,0.46153846153846156,124.06,8.590277777777779,5.083333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,18.0,39.0,0.0,0.0,41.0,18.0,2.0,11.0,30.0,20.0,26.0,21.0,0.0,0.0,0.0,18.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,4.0,0.0,2.0,24.0,6.0,0.0,2.0,2.0,0.0,3.0,3.0,1.0,0.0,1.0,2.0,3.0,3.6375861597263857,7.79683859818021,4.324132656254979,4.850075229083814,5.425500526716335,6.035032767296262,6.348045736651908,6.80755503729048,7.1560303709339514,7.580795410914431 +5282379,CC1=C(/C=C/C(C)=C/C=C/C(C)=C\C(=O)O)C(C)(C)CCC1,0,17.52,5.700399999999999,2.64,4.56,161.68967900167945,68.51336428,1.3902713867154397,5.784744,3.5840277777777776,7.312614879999999,195.46928865962713,19.72,5.974,3.08,4.38,143.241336871489,72.25257531999998,1.7811428871200001,6.13264,2.7880555555555553,7.450506399999999,245.11398623535413,15.795454545454545,5.7456818181818194,2.977272727272727,2.965909090909091,151.92051365926116,57.24999906818182,1.4905339623554774,5.868921590909091,2.6892361111111116,7.302852818181818,197.79293389687948,13.412280701754385,5.728859649122808,2.491228070175439,1.956140350877193,150.80247509851836,45.60193134210527,1.4345234379064822,5.8540833333333335,2.352948343079922,7.292369999999999,182.23401047637725,10.006756756756756,5.4897297297297305,2.081081081081081,1.2702702702702702,159.31195858950815,33.09630558108108,1.1562553363371826,5.583601351351351,2.085397897897898,7.132547945945945,139.1518382623727,8.841726618705035,5.560935251798561,1.8273381294964028,1.1798561151079137,161.58690469900722,27.661250323741005,1.08144630350005,5.639140287769785,2.194244604316547,7.223283769784173,127.44448143158104,8.944,5.369280000000002,2.0,1.192,165.70565061561229,30.518837871999988,1.033460650818688,5.440480000000001,1.8742222222222227,7.0652360320000005,123.79550999742315,11.362637362637363,5.706153846153846,2.0,1.5494505494505495,151.17914940405927,35.99706575824176,1.3341299448505053,5.8259890109890105,2.3904151404151404,7.280964747252747,161.9767516173923,7.2439024390243905,5.302520325203252,1.6991869918699187,1.065040650406504,168.61145187907545,23.559724674796747,0.8954616140209836,5.36069512195122,1.8626919602529362,7.026364845528455,101.53748237179126,6.7616,0.07401599999999994,0.011426939104763145,0.5664,2.9215999999999998,1.313540814544232,32.40720613439999,0.23790331670199358,0.07455583999999993,1.2072916666666667,0.043767513599999974,52.84893803061212,-0.09119999999999932,-0.003439999999999967,-0.007494151528976622,0.2,1.1543999999999996,0.04406507054260267,-0.39886699840000206,0.0070601571487999394,-0.003374880000000022,-0.10770833333333339,-0.0018900928000000435,0.7474079029207735,1.0593090909090912,0.01881127272727273,0.002314889857315054,-0.08730909090909088,0.06612727272727269,0.16682170108530486,5.02211227741818,0.029892128209225457,0.017790478181818167,0.3957149621212121,0.012132890036363626,6.814309421272506,-1.6665122807017545,-0.009549333333333314,-0.0012772620519600861,-0.1214877192982456,-0.5486175438596491,-0.26605607674620624,-8.01127098948772,-0.050791913333775036,-0.011663594385964902,-0.09816642300194933,-0.0033851907929824602,-12.714485138596809,-0.0451135135135134,0.0045758918918918775,0.00059053728905495,-0.04856216216216216,-0.14430270270270262,-0.13071009037739034,-0.29305949521081015,-0.02189614809335333,0.004382646486486492,0.10189095345345352,0.002470003156756789,-3.258838775750808,-1.0001611510791368,-0.008862043165467624,-0.0007692356035641463,0.02640575539568344,-0.0640460431654676,-0.10797430691069095,-4.770069006630214,-0.021716691126335754,-0.009867235683453221,-0.12056604716227014,-0.0039733622330935135,-6.30436165206298,2.04288,0.010457599999999968,0.0006128549825722865,-0.039040000000000005,0.1577600000000001,0.3669218835023694,9.843813482879998,0.06898311668014658,0.013029311999999996,0.1408750000000001,0.003577021440000048,16.51493026150876,-3.2899516483516473,-0.013963252747252726,-0.001146317590508859,-0.009037362637362628,-0.23017142857142867,-0.6629122497132065,-15.897690582751643,-0.12306684027143014,-0.0181953125274725,-0.17126449938949942,-0.004220271402197802,-28.301374819759054,2.0289691056910564,0.015775869918699142,0.0010953847310525304,0.08498211382113818,0.6429528455284553,0.20661701185327092,9.683716619746342,0.042418631756764476,0.018303314471544707,0.1909863369467029,0.006207405424390299,12.75393918895201,,,0.4848484848484848,0.8181818181818182,0.29545454545454547,0.0,0.5227272727272727,-0.22727272727272727,1.1761337237990792,0.031552832938932115,0.03546192384802302,0.5379107752688093,0.1513886983078168,0.31315908522475544,1.7140444990678885,0.46454778353257226,1.939026743830975,1.7855472966374144,0.0,0.15347944719356074,0.0,0.15347944719356074,6.004178602720016,876.0,285.02,132.0,228.0,8084.483950083973,3425.6682140000003,69.51356933577199,289.2372,179.20138888888889,365.63074399999994,9773.464432981356,986.0,298.7,154.0,219.0,7162.06684357445,3612.628765999999,89.05714435600001,306.632,139.40277777777777,372.52531999999997,12255.699311767707,1390.0,505.6200000000001,262.0,261.0,13369.005202014983,5037.999918,131.16698868728201,516.4651,236.65277777777783,642.651048,17405.778182925395,1529.0,653.0900000000001,284.0,223.0,17191.48216123109,5198.620173,163.53567192133897,667.3655,268.2361111111111,831.3301799999999,20774.677194307005,1481.0,812.4800000000001,308.0,188.0,23578.169871247206,4898.253226000001,171.125789777903,826.373,308.6388888888889,1055.617096,20594.472062831162,1229.0,772.97,254.0,164.0,22460.579753162005,3844.9137949999995,150.32103618650697,783.8405000000001,305.0,1004.036444,17714.782918989764,1118.0,671.1600000000002,250.0,149.0,20713.206326951535,3814.8547339999986,129.182581352336,680.0600000000001,234.27777777777783,883.1545040000001,15474.438749677895,1034.0,519.26,182.0,141.0,13757.302595769394,3275.732984,121.40582498139598,530.165,217.52777777777777,662.5677919999999,14739.8843971827,891.0,652.21,209.0,131.0,20739.20858112628,2897.846135,110.14177852458099,659.3655000000001,229.11111111111114,864.242876,12489.110331730324,338.08,3.7007999999999974,0.5713469552381573,28.32,146.07999999999998,65.6770407272116,1620.3603067199997,11.895165835099679,3.7277919999999964,60.364583333333336,2.1883756799999987,2642.446901530606,-4.559999999999966,-0.17199999999999835,-0.3747075764488311,10.0,57.719999999999985,2.2032535271301334,-19.943349920000102,0.35300785743999696,-0.1687440000000011,-5.38541666666667,-0.09450464000000218,37.370395146038675,93.21920000000003,1.655392,0.20371030744372476,-7.683199999999998,5.819199999999997,14.680309695506828,441.94588041279985,2.6305072824118403,1.5655620799999985,34.822916666666664,1.0676943231999991,599.6592290719806,-189.9824,-1.0886239999999978,-0.14560787392344982,-13.849599999999999,-62.5424,-30.330392749067514,-913.2848928016001,-5.790278120050354,-1.3296497599999988,-11.190972222222223,-0.3859117504000005,-1449.4513058000362,-6.676799999999983,0.6772319999999978,0.0873995187801326,-7.1872,-21.35679999999999,-19.34509337585377,-43.3728052911999,-3.2406299178162925,0.6486316800000008,15.079861111111121,0.3655604672000048,-482.3081388111196,-139.02240000000003,-1.2318239999999998,-0.10692374889541634,3.670399999999998,-8.902399999999995,-15.008428660586041,-663.0395919215997,-3.0186200665606697,-1.3715457599999978,-16.75868055555555,-0.5522973503999984,-876.3062696367542,255.35999999999996,1.307199999999996,0.0766068728215358,-4.880000000000001,19.720000000000013,45.86523543779617,1230.4766853599997,8.622889585018322,1.6286639999999994,17.609375000000014,0.44712768000000597,2064.3662826885948,-299.3855999999999,-1.270655999999998,-0.10431490073630617,-0.8223999999999991,-20.94560000000001,-60.32501472390179,-1446.6898430303995,-11.199082464700142,-1.6557734399999977,-15.585069444444446,-0.3840446976,-2575.425108598074,249.56319999999994,1.9404319999999946,0.13473232191946125,10.452799999999996,79.0832,25.413892457952322,1191.0971442288,5.217491706082031,2.251307679999999,23.491319444444457,0.7635108672000068,1568.7345202410972,0.7613960171194116,0.6564038111209646,0.4645477835325723,0.35758584235169716,0.3270911049271163,0.22537226503188604,0.2002914916479523,0.1288980732970362,0.1404856951113635,0.07986760104634041,0.08305669860474008,0.04409313272980807,0.06491799684111998,0.0314540040910718,0.038882227378258305,0.013825826192273138,8.02864580468724,5.691657871013948,3.5547525409265273,2.191630526844398,0.4505135656275856,-0.3364592789276834,4.023296811895599,0.9726895962196129,6.022014882736117,0.9920297694816924,13.642549756333823,10.95196216674192,16.01390586665686,11.702672135355716,1.9919840276700036,0.7415842105955032,3.500803331716921,2.2416240163263215,7.0082930612291765,1.1633843793404879,3.713726042787376,2.4376251825895294,20.901176482659956,14.701441272785615,0.2037013771922837,0.5008297944561513,0.6952874404080912,0.7978278840711007,0.821091099744408,0.8417545517996998,2.23127357841912,566.514664398947,0.0,1.0,5.0,0.0,6.0,3.0,4.0,0.0,1.0,4.460889994307204,2.735359817826696,1.6060752504759632,1.0105865002596142,0.8754887502163458,0.7554887502163457,184.0172734599622,937.3930545289694,52.228280863409154,18.747861090579388,36.60535320537929,,13.0,453.0,5.969305287951849,4.794537184071822,5.41499046939678,0.0,11.146209060138535,36.484694035750444,12.999757306524504,12.152040213667762,39.84698901243026,5.106527394840706,10.666666666666666,18.0,6.5,0.0,11.5,0.0,0.015151515151515178,-5.0,0.07333333333333336,0.034444444444444444,-0.03888888888888892,0.020421607378129036,0.08407874015748018,0.0,0.506666666666667,0.7696969696969695,0.4333333333333337,0.4722222222222226,0.7492753623188405,25.87494192357974,0.6941623246565065,0.7801623246565065,11.834037055913804,3.3305513627719696,6.88949987494462,37.708978979493544,10.22005123771659,0.6299212598425198,0.296875,0.046875,0.234375,0.45,0.34300988439303853,-0.5486205609325115,-0.052180364108664966,-0.01097241121865023,-0.02743102804662557,0.6569901156069614,1.0508102015462562,0.03693435535796634,0.02101620403092512,0.035027006718208534,-3.1646760218441012,1.0609323237103645,0.8103112840466926,1.6070185118462061,1.0727401129943501,0.610487404162103,1.1842075669235508,1.0660635740804396,1.182186668146644,0.845099994849498,0.7882841530054644,0.7651250081521654,1.1554005253895507,0.830088628834488,0.4212848327634319,0.4363954115164223,1.9268425783256289,1.1130264861097283,0.9741131895360635,0.8375241056847453,0.9774917938558044,0.4842706425875495,0.28143579888618714,0.3304672739986516,0.9560390361848052,1.226871455733513,0.7816470217914002,0.669315648005684,1.449443701060561,1.16371586825772,1.3065145612315214,1.2337048531514194,1.319227102501582,0.8586881899291271,0.6936035804207096,0.6595825864908489,1.3259590057280881,0.9259262960310051,0.4808584119138593,0.4901382129158226,1.06385516872805,0.8873099893431219,1.089507457874832,0.9341324018626938,1.0923925361384637,0.5486900462431552,0.37057847321005216,0.3840180787991229,1.0663938547037959,1.1078749399912158,1.0349405300662196,0.7977875588543532,0.659726456123237,0.8916716571977905,1.0421917265151108,1.1077049931728324,1.0534846625101595,1.0561708517531454,1.0070030601920534,0.9913336677222776,1.0852747372004394,0.5977165168007572,0.46129485516645047,0.5211774449515422,1.1557909604519774,0.8734665936473166,0.6368332555231414,0.6000513030562743,0.6390072532635743,0.4832920935502839,0.39425481737129703,0.42830542148960465,0.6353350781405307,1.458120972732899,0.8431648874255877,0.7227854719135575,0.7795523685354193,0.8422676720869492,1.5919097751074005,1.4679489503405265,1.6066862969974953,0.9469752934382932,0.7555496559810623,0.6816988008764003,1.6067142412164346,0.5838686374322334,0.40420836277104666,0.49984406826425887,0.49937416747048824,0.548146020890658,0.7140651796487544,0.5882320014378523,0.7077234201915786,0.4245730230386209,0.3744738361965155,0.38435943755710883,0.6722188245133447,6.5,0.08682787470666259,3.1111111111111125,2.0,0.8844444444444446,0.7569444444444444,0.28653061224489795,0.2586805555555556,0.13151927437641722,0.18562500000000004,3339.5433359978933,4070.5330176748894,1878.3878262230573,1594.6816547607095,15.49945521960825,0.45480013244337625,8.450300932930238,0.8341897339073386,0.0,0.45,1.1829661954675212,2.9084963719480283,4.037780939298761,4.63326968951511,4.768367439558379,4.888367439558379,0.2954545454545454,0.005788524980444173,0.10370370370370376,0.0689655172413793,0.03401709401709402,0.03983918128654971,0.013024118738404453,0.016167534722222224,0.00876795162509448,0.014278846153846156,0.6000070179232836,20.045454545454547,9.333333333333334,7.421875,134.17506073915436,0.0,3.9687350602043017,119.89565309974687,,95.64411108770648,95.52196094041543,95.9081580802002,95.64662653215886,100.42509397332769,95.61425226802893,95.64926665988858,97.92080879138041,-0.013487931850449497,-0.04647643752702077,-0.6558319301669158,0.3531073446327684,0.39512595837897035,0.03354678442777754,-0.012307972391875147,0.02967658142254381,-0.04526647409512152,-0.08921484037963766,-0.04318483378503011,0.014142344780662317,0.15666544766166163,0.25415143654443284,0.2025817969354652,-0.15414740626605025,0.022633924126257084,0.12700153603006853,0.1549689984564034,0.12564821972057427,0.23861951232550238,0.32777080555337673,0.2772122297658607,0.1289393822317754,-0.24646714989081794,-0.12901714944516485,-0.11177639438261108,-0.21449102983447316,-0.1877798274437463,-0.20254877031630075,-0.24720646871758004,-0.2134981304081559,-0.15644105660891103,-0.08131127358228762,-0.07734482757966088,-0.24058165806911946,-0.00667201749785752,0.06182300978020807,0.05167939407402579,-0.08573828065353488,-0.04939166987359757,-0.0995097289175165,-0.009043034873028743,-0.09203801105800154,0.05878340967637809,0.08439630311934028,0.056434623619030316,-0.0616632783399198,-0.14791782286428312,-0.11973145219233179,-0.06731773019106248,0.046620330853960876,-0.021921564610305175,-0.08220095311477284,-0.14719161494044447,-0.09128368375603135,-0.13234691854391595,-0.09986488807228587,-0.09078336661768961,-0.11929022392864837,0.30212967345007097,0.14128837008214407,0.05363247121154494,-0.06892655367231638,0.0539978094194962,0.279338014806706,0.3037538454273251,0.2899628203441878,0.17475910673127695,0.11668679896462476,0.081727773542065,0.312493133768226,-0.4865640748272077,-0.1886518151109589,-0.10031711729618249,-0.01595579561681255,-0.07878266312001256,-0.5046757910931161,-0.49056035613870363,-0.5172977072261173,-0.2440494604778448,-0.14185842917508149,-0.09642474646304341,-0.5355145415290241,0.30007233579198067,0.2131413467182657,0.09585985547047643,0.15003904276330896,0.2200687450467057,0.15729774786249195,0.29881368296871336,0.17830197722673877,0.2454980652292929,0.1581940323285891,0.14182677775852232,0.24132820193216453,9.384687130379191,12.520522517770377,2.257951961765231,9.795141781886036,24.769743956092274,29.92738443116009,32.014117635104256,32.59041616714788,32.711376167147876,42.65858836428145,39.28204052602312,0.0,3.376547838258336,0.0,3.376547838258336,7087.533398158549,6538.372977536631,701.2723265415543,26.0,30.0,32.0,36.0,34.0,35.0,25.0,25.0,23.0,300.2089301360008,22.0,4.653960350157523,5.43372200355424,6.289715570908998,7.0909098220799835,7.954723334497908,8.766705997750515,9.636588019266876,10.456136269555778,11.3310318166104,0.5466666666666665,0.9488,1.1246565437865776,0.5002780784281076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6428048383233533,0.9370980392156864,0.9818208302986163,0.580303749236719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,6.0,0.0,5.0,0.0,5.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,5.106527394840706,0.0,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,55.37378399368919,56.594875997385216,6.076020106833881,0.0,201.03094851477664,-321.53508326481904,-30.58182451264725,-6.430701665296381,-16.07675416324095,385.04822197473885,615.8579712641504,21.646456350761905,12.317159425283007,20.528599042138342,0.46153846153846156,0.8250196415921416,0.29889805537110115,104.06280622410341,0.20511597838817844,46.068376228727494,0.17498035840785844,7.0,0.22727272727272727,0.20960246960416254,0.5153384980321623,0.7154294516954958,0.8209404233065776,0.8448775587509626,0.8661396171672295,5.602600000000005,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,93.76180000000005,9.901064578912528,0.0,0.0,5.41499046939678,53.881150867231156,0.0,58.74853876128035,0.0,0.0,3.8066624897703196,0.0,5.10594547390058,0.0,6.57507584059962,0.0,8.137688184977605,0.0,9.756436609824092,27.33333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.44,0.0,10.53400526792031,0.0,0.0,0.0,11.290141811743316,0.0,3.92291257766255,56.23282718932888,0.0,0.0,0.0,11.075832682792555,4.794537184071822,5.41499046939678,53.881150867231156,58.74853876128035,0.0,0.0,0.0,25.01390392140538,32.14024191616767,25.195993682633397,239.79130619949382,,191.24276762995842,190.9919738288828,191.78483721751343,191.24793204993614,201.04696872198974,191.18146436692467,191.2533524470101,195.9141620333168,25.195993682633397,239.7913061994938,,190.78822217541307,190.47249330940235,191.47004778864368,190.79472190612034,203.01477647533378,190.7110626755927,190.80154371933935,196.63960653887688,4.783365277943959,186.73836309033476,,147.11902942913304,146.97493136548235,147.4307882316985,147.1219976675552,152.82628154980412,147.08379838670805,147.12511306859602,149.8197415666575,1.1452724401196999,10.89960482724972,,8.692853074089019,8.68145335585831,8.717492600796065,8.693087820451643,9.13849857827226,8.69006656213294,8.693334202136823,8.905189183332583,2.3916826389719796,119.89565309974687,,95.64411108770648,95.52196094041543,95.9081580802002,95.64662653215886,100.42509397332769,95.61425226802893,95.64926665988858,97.92080879138041,46.85490196078432,0.0,10.701809261025426,0.0,0.0,0.0,8.652828444187502,49.091041514930815,3.721947476409889,0.0,0.0,0.0,0.0,0.0,0.2596884943843366,0.0,0.0,29.01518746183595,483.5268271818797,59.14830977337606,145.4248185974014,201.88904696493805,231.66348447575552,238.41837197791892,244.41837197791892,310.0,115.61349318438225,102.5523433076358,55.381808599072215,37.3,37.3,0.8571428571428571,7.303843225277705,5.459431618637297,3.3517288289763414,4.627267573161113,,4.625498873254755,4.6258878012686155,4.6246437131902125,4.625490818776832,4.6078660910254605,4.625594342945043,4.625482363116202,4.617582741963356,0.15235131040801553,0.21033034423459604,,0.21024994878430706,0.21026762733039162,0.21021107787228238,0.21024958267167418,0.20944845868297549,0.21025428831568374,0.21024919832346373,0.209890124634698,1.997933641434917,2.3204238972665943,,2.3200415899992177,2.3201256699383173,2.319856693375412,2.3200398486767884,2.3162222232282854,2.320062229655107,2.320038020618169,2.3183287125074026,267.74,1179.0888855363992,110.72134047822615,,111.25254685081465,111.21957922720769,111.32374461675053,111.25322556289015,112.51455065211938,111.24448979780607,111.25393790811721,111.86183395036352,53.5949493425636,5.032788203555734,,5.0569339477643025,5.055435419418531,5.060170209852297,5.056964798313189,5.114297756914517,5.056567718082094,5.0569971776416915,5.0846288159256146,7.860954648676026,5.495473959080737,,5.500260174189608,5.499963798868984,5.500899934766935,5.500266274814039,5.511539912775111,5.500187750276612,5.5002726777110595,5.505721844673945,0.0,10.53400526792031,8.652828444187502,5.094925467808539,-0.9123243957616529,0.0,15.012089288153206,10.701809261025426,0.0,343.8814046936764,117.82005154826079,-188.44501488312244,-17.923370342428232,-3.768900297662449,-9.42225074415612,225.66874253341777,360.9415289378491,12.686537182092042,7.218830578756982,12.031384297928302,1278.0,29.0,2.3896287658987125,1.592090221134694,0.2041241452319315,0.1767766952966369,0.36785113019775795,0.22526189257265183,0.08333333333333333,0.05103103630798288,0.0,0.0,0.0,0.0,0.0,0.0,0.05892556509887896,0.04419417382415922,0.21844336196330352,0.15809803962646912,16.750712376627057,14.44088384466122,10.220051237716591,7.866888531737337,9.81273314781349,6.761167950956581,6.409327732734473,4.1247383455051585,5.057485024009086,2.875233637668255,2.8239277525611626,1.4991665128134744,2.2721298894391992,1.1008901431875129,0.9720556844564576,0.34564565480682846,3.5033225583660816,2.224284700081884,5.4323485023367715,3.162140057799751,6.162787490994689,3.4853281522559225,79.54095639385366,44.30867050388911,30.389677285725035,24.532382428303457,23.26588745011436,22.524685722055075,104.0,114.0,53.67420399999997,28.957795999999995,0.12,22.02,9.868055555555555,4.902777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,50.0,0.0,0.0,50.0,0.0,6.0,6.0,44.0,6.0,22.0,44.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,1.0,1.0,0.0,22.0,2.0,0.0,0.0,2.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,0.0,3.367295829986474,5.872117789475416,3.8501476017100584,4.189654742026425,4.51085950651685,4.700480365792417,4.962844630259907,5.075173815233827,5.3706380281276624,5.54907608489522 +2907,O=P1(N(CCCl)CCCl)NCCCO1,0,44.689655172413794,6.205558620689656,2.7241379310344827,4.914431673052364,168.99991355202192,186.2826496356085,1.8130897094046554,6.380524137931036,3.6540992620973465,7.9704741724137955,205.3449494025575,36.6551724137931,6.267151724137932,3.5172413793103448,2.4406130268199235,150.8736923378241,143.72173438427598,1.9109914703448267,6.474634482758623,1.9383780332056193,7.86082606896552,243.3767468238929,25.4,6.480361818181821,2.8363636363636364,3.991919191919192,166.40650648484856,94.14005493861816,1.5470463804716916,6.609683636363639,2.9154882154882147,8.137554545454549,180.29181914338469,21.26086956521739,6.098684057971013,2.608695652173913,2.132045088566828,167.44209240134785,76.3382831436812,1.41444772175771,6.234569565217391,2.2922034353193768,7.84197388405797,157.95573804103856,23.647058823529413,6.400979411764705,2.3529411764705883,1.617283950617284,167.85013090173396,87.23692316729411,1.401463864742499,6.491695588235295,2.897005590073249,8.0988945,162.10394898994292,21.97142857142857,6.283345714285715,1.8285714285714285,0.7428571428571429,169.0959568427563,80.6916944857143,1.1727077729697999,6.46602,2.4986772486772484,8.119666628571428,146.97625995221688,17.0327868852459,5.480736065573771,1.5573770491803278,0.24306820481683872,166.8332461384428,61.930291639344276,1.1640987802684588,5.700567213114757,1.3517868877445212,7.400582967213114,122.12530716269188,9.80952380952381,5.336142857142859,1.2380952380952381,0.07407407407407407,175.37522518247374,29.968831904761903,0.9164079551518094,5.542190476190477,1.2095825984714872,7.364916476190477,85.45675060664288,6.333333333333333,5.3020000000000005,1.0,0.0,182.05829381619597,12.588576000000003,0.7809448498993333,5.5440000000000005,1.1152263374485596,7.481376000000001,62.44286763953247,22.69678953626634,0.15056504161712245,0.015940292375216124,0.5255648038049942,3.2768162534313947,1.319744860285838,105.23127197383833,0.4797898711751366,0.16152009512485127,1.4037799659683274,0.1183039357907253,53.26416033241084,3.1807372175980975,-0.05088109393579081,-0.013734829509417519,0.14268727705112944,-0.545338441890166,-0.8012639429082105,14.211246586335411,-0.12611359504161687,-0.036745303210463785,-0.3860205927143801,-0.02786903567181923,-4.354588236285345,-2.402745649119013,0.04713169819478964,0.006579491498101866,0.020516700897200285,1.1519000281584502,0.18398254697328492,-11.144367511882077,0.02392816256431909,0.027820970705869575,0.38912181806088725,0.022691625337801353,-5.412361999863151,-3.5748505057815914,0.0028634441399989505,-0.0003721493253562047,-0.0922814454841545,0.10161798623889415,-0.13238755059963497,-16.189325781412858,-0.08598457344704426,0.00448615175171033,0.020395672930711633,-0.004884688414413487,-0.7597934006768567,-1.1186962299783176,-0.061338165349374085,-0.004338680566931444,-0.18023011820661683,-1.2721208886954618,-0.009398168549207957,-5.081654626355236,0.022230067409728882,-0.062288604252640434,-0.3760789660991014,-0.04629032321466035,-2.3807311721022626,-0.11846441311364017,-0.018541100730423008,0.0013135916313489874,-0.039850518090708324,-1.2636069850497116,0.13575038288866167,-0.8739338166909927,-0.01753413884573087,-0.004820292169186343,-0.3116799560575463,0.011303292780703295,-5.9432823127555885,2.58472544394846,0.01647492446541016,0.0005957827818960192,0.012592347127736337,0.3422542962967779,-0.17291090003667559,11.868238111452383,0.006118939578062203,0.01804587434942797,0.10641190840901066,0.013161500048731909,-1.3069013691721836,-1.0251967612252992,0.01923495838287768,4.8399915808057964e-05,0.11811335711454624,0.8653313676434303,0.03284194120342067,-4.5425661436191005,0.01800892464319976,0.010678919653473843,0.157639389810922,-0.0012447929335825643,6.426234683197474,-6.064605628220373,0.013214268727705267,-0.00035954953468641436,0.23305588585017845,1.3058430342087368,0.28506723407258033,-27.868563963287414,-0.00805477191338979,-0.007699405469678878,0.1924810075305965,-0.017688303606817352,7.649749757712402,,,0.5282312925170068,0.7857142857142857,0.10714285714285714,0.0,0.6785714285714286,-0.5714285714285714,0.9681932109197635,0.013408678806493832,0.01955153594935097,0.43937733477070157,0.12812171093058936,0.3523420075752807,1.407570545690465,0.4804637185058701,1.9509647187533923,0.9735104693923066,0.29820827193345584,0.2698463928002304,0.2452716829463156,0.9774542493610859,8.96637309344828,1296.0,179.96120000000002,79.0,142.51851851851853,4900.9974930086355,5402.196839432646,52.57960157273501,185.03520000000003,105.96887860082305,231.14375100000007,5955.003532674167,1063.0,181.74740000000003,102.0,70.77777777777779,4375.337077796899,4167.930297144003,55.41875263999997,187.76440000000008,56.21296296296296,227.96395600000008,7057.9256578928935,1397.0,356.41990000000015,156.0,219.55555555555554,9152.357856666671,5177.703021623999,85.08755092594303,363.5326000000001,160.35185185185182,447.56550000000016,9916.050052886158,1467.0,420.8091999999999,180.0,147.11111111111111,11553.504375693,5267.341536914003,97.596892801282,430.1853,158.162037037037,541.096198,10898.94592483166,1608.0,435.2666,160.0,109.97530864197532,11413.808901317909,5932.110775376,95.29954280248994,441.4353000000001,196.99638012498093,550.724826,11023.06853131612,1538.0,439.8342,128.0,52.0,11836.716978992941,5648.418614,82.089544107886,452.6214,174.9074074074074,568.376664,10288.33819665518,1039.0,334.3249,95.0,14.827160493827162,10176.828014445011,3777.747790000001,71.01002559637598,347.73460000000017,82.4590001524158,451.43556099999995,7449.643736924205,412.0,224.11800000000008,52.0,3.111111111111111,7365.759457663898,1258.69094,38.48913411637599,232.77200000000002,50.80246913580246,309.32649200000003,3589.183525479001,76.0,63.62400000000001,12.0,0.0,2184.6995257943518,151.06291200000004,9.371338198792,66.528,13.382716049382715,89.77651200000001,749.3144116743897,658.2068965517238,4.366386206896551,0.46226847888126754,15.241379310344831,95.02767134951044,38.2726009482893,3051.7068872413115,13.913906264078962,4.684082758620687,40.70961901308149,3.430814137931034,1544.6606496399143,92.24137931034483,-1.4755517241379335,-0.3983100557731081,4.137931034482754,-15.814814814814815,-23.236654344338103,412.12615100372693,-3.6572942562068893,-1.0656137931034497,-11.194597188717022,-0.8082020344827576,-126.28305885227499,-132.15101070154572,2.5922434007134303,0.3618720323956026,1.1284185493460157,63.35450154871476,10.11904008353067,-612.9402131535143,1.31604894103755,1.5301533888228267,21.4016999933488,1.2480393935790743,-297.6799099924733,-246.6646848989298,0.19757764565992758,-0.025678303449578124,-6.36741973840666,7.011641050483696,-9.134740991374814,-1117.0634789174871,-5.932935567846053,0.3095444708680128,1.4073014322191026,-0.3370435005945306,-52.425744646703116,-76.0713436385256,-4.170995243757438,-0.2950302785513382,-12.255648038049944,-86.5042204312914,-0.6390754613461411,-345.552514592156,1.511644583861564,-4.23562508917955,-25.573369694738897,-3.147741978596904,-161.88971970295387,-8.292508917954812,-1.2978770511296105,0.09195141419442912,-2.789536266349583,-88.45248895347981,9.502526802206317,-61.17536716836949,-1.2273897192011607,-0.33742045184304403,-21.81759692402824,0.7912304946492307,-416.0297618928912,157.66825208085606,1.0049703923900197,0.03634274969565717,0.7681331747919166,20.87751207410345,-10.54756490223721,723.9625247985954,0.37325531426179437,1.100798335315106,6.49112641294965,0.8028515029726464,-79.72098351950319,-43.058263971462566,0.8078682520808625,0.0020327964639384345,4.960760998810942,36.343917441024075,1.379361530543668,-190.78777803200222,0.75637483501439,0.44851462544590137,6.620854372058723,-0.0522813032104677,269.9018566942939,-72.77526753864447,0.1585712247324632,-0.0043145944162369726,2.7966706302021413,15.670116410504841,3.420806808870964,-334.42276755944897,-0.09665726296067748,-0.09239286563614653,2.309772090367158,-0.21225964328180824,91.79699709254882,0.7458079499906111,0.7373489478063396,0.48046371850587016,0.5174655012111841,0.3049424484596304,0.32687704294358116,0.19343882589468875,0.20887222493715474,0.13223547756001855,0.15682176699671546,0.09567755700117044,0.11036069911011642,0.0658882211922756,0.07595805307173721,0.0410666066522287,0.05200833937630165,17.002123390444318,5.855706963644184,3.541192083430302,2.0045715588770032,0.4560534305762159,-0.37141769952071035,4.034246136811379,0.9849041074496132,6.0114830780528745,0.540508077183922,14.545131410077218,10.464613031522767,35.45152704696845,11.868307404602227,3.6568532121616775,0.7800504142193591,3.4871448858997582,2.1260957270082215,7.006601178436872,0.29161496964353695,3.704820745007542,2.441682666401764,24.43685852925953,14.705106876927555,0.3979386802885697,0.5539261287837218,0.7545453561840809,0.7932648339932153,0.7932648339932153,0.7932648339932153,2.5305240716687374,201.8664756744443,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,2.9053394271907242,2.139926083136894,1.1555094829078252,0.9655172413793105,0.9655172413793105,0.9655172413793105,24.865512146198398,552.0869818651848,43.750443736345616,19.037482133282236,50.435386375102766,,7.0,149.0,7.670279738874966,4.565048284931329,0.0,31.456401666278747,12.965578028838586,0.0,4.6704161899212995,0.0,5.0872950630771525,27.72562694217685,7.395238095238096,11.0,1.5,0.0,9.5,0.028231292517006828,0.0,-8.0,0.18062397372742195,0.0,-0.18062397372742195,0.04335600907029469,0.15816607015032202,0.0,0.6139573070607557,0.9503401360544217,0.43333333333333374,0.6139573070607557,0.906984126984127,13.554704952876689,0.18772150329091364,0.2737215032909136,6.151282686789822,1.7937039530282508,4.9327881060539305,19.70598763966651,6.726492059082181,0.5558339298496779,0.23824855119124275,0.13522215067611074,0.0540888602704443,1.0,0.471234999422908,-0.6019244983541563,-0.07644731093867281,-0.02075601718462608,-0.08598921405059377,0.5287650005770922,0.675409526264761,0.02477574305874287,0.023289983664302107,0.030700433012034598,-2.710848804330619,0.6314962279966474,1.1494963087916146,2.014267921074565,1.171945701357466,1.035794283666338,2.186309656025209,0.635106357636778,1.5725289804102238,0.9530500948185496,0.8755726748447553,0.9428599484931746,1.1604336276390386,0.9807361121694739,0.8607550758961375,0.8873193624909673,1.2358700123406001,0.8975116273387038,1.0558790395131028,0.979679236419707,0.9912137384699253,0.8962624037760378,0.6152496952196136,0.8537692248869961,1.0331625186970057,1.1531989139545908,1.112135153444054,1.4382757703347469,1.7572299822939204,1.1226683495453242,1.2383683263684695,1.145537860327475,1.6128842545809767,0.9981054854438296,1.0584114725070626,1.0361698509429726,0.9916429469012378,0.8664359499038513,1.8726234170282243,1.7679282514124626,1.580449826989619,1.8327689117040955,1.1032129105119841,0.8625820473294528,1.1150020222350625,1.6367138106317338,2.284794824045123,1.6407162051441706,0.938817329127602,0.9255448449287514,1.2430233476432808,0.7866319694455228,0.5773755656108596,1.4674867843383208,0.7292430459998589,0.9307149433894528,0.6189185165753054,1.1561537827300676,1.6404742531690002,1.0750999184771763,1.0189202328545988,0.9135599741662433,0.2616035872589108,0.20523341896669137,0.4216304428454861,0.25505411848341925,0.8710365996514315,0.9190715191483845,0.6422009762921651,0.48791678984421033,0.038405203133721345,0.4932306694756826,1.058709034459264,1.261001676445935,0.31398963239544725,0.2084226376320597,0.2187028657616892,0.13970373025117225,0.4594117983986635,1.262387777620369,0.6441986208432077,0.6473697177430439,0.024593546880622343,0.7277302800317196,0.881719272816379,1.8150321318804141,0.4241951838970441,0.24885740866567624,0.0,0.029707612818445178,0.04851991969479676,1.814014223256863,0.7679879237231598,0.918173358932379,0.013697956032867876,1.0605496306077682,0.8602223077621021,3.0,0.0,2.000000000000001,1.0,0.5422222222222223,0.2361111111111111,0.12081632653061225,0.05555555555555555,0.0,0.0,3094.058049634814,3547.53393997393,1683.4853512784357,1535.0438393261343,8.601822355748885,0.3955752502949607,5.199154324380731,0.6544656725059693,1.0,1.0,1.9526415679368478,2.718054911990678,3.7024715122197467,3.8924637537482614,3.8924637537482614,3.8924637537482614,0.21428571428571425,0.0,0.11111111111111116,0.05263157894736842,0.03189542483660131,0.016865079365079364,0.017259475218658893,0.027777777777777776,0.0,0.0,0.47182616154231116,12.071428571428571,5.777777777777778,3.272727272727273,94.44153500749829,1.0,3.5218785238111314,44.76393359514847,,29.118554655918988,39.65789516364722,37.95726816830938,28.92619685990441,47.94936563800949,39.55299591995252,39.17623116833044,50.10281263747887,0.14014040234702438,-0.33793431323306955,-0.8616422576271158,0.27149321266968285,-0.16642325956455511,-0.6071354903664243,0.1350477507282102,-0.26285172451167044,-0.22749679030377315,-0.27498653782831495,-0.23557150052149053,-0.0817545645910729,-0.10586279814066905,0.3130321466960613,0.4127585205608664,0.03903743315508017,0.3515302473711216,0.1394076631853197,-0.10590357127539703,0.04987217113548578,0.17224464042300502,0.277195734014106,0.19180786493816981,-0.1016135796769478,-0.15750467704119445,0.019017987902401084,-0.02334645542228701,-0.17558528428093648,0.031011194519217397,-0.10031298820209969,-0.15384519713339306,-0.17921298179230946,0.027774573487234756,0.014529109565004155,-0.04128931452504079,-0.01426462739551586,-0.04928874315862142,-0.40738650015023564,-0.27218324888928636,-0.34292653713068943,-0.38821856042838254,-0.007121201098803633,-0.04829034688109246,0.046332923526045615,-0.38563996761203484,-0.2679044972975392,-0.39128303640333645,-0.04469668079332522,-0.005219434798227757,-0.12314346365720057,0.0824069973391048,-0.07582417582417578,-0.38562033611939517,0.10286108093594702,-0.00830488694376195,-0.03654545437315083,-0.029843296993233993,-0.22202906695747682,0.09554452018146162,-0.11158126356756151,0.11388066315803938,0.10942064830231224,0.03737590050872209,0.023959646910466644,0.10444720418435985,-0.1310184303345008,0.11278242568808786,0.01275337381148803,0.1117252583059645,0.07580383748788416,0.11125158229743135,-0.024536224001581494,-0.04516924120863773,0.12775182191222703,0.0030363254743877776,0.2247360482654601,0.2640768662988895,0.024885068464148116,-0.043167454487753734,0.03753502465379475,0.0661151149348896,0.11229636669033266,-0.010521990881051926,0.12064838050750532,-0.2672010338083265,0.08776452080628605,-0.022556018812141736,0.4434389140271494,0.39850969148523135,0.21600177629094067,-0.26483157943976815,-0.016788124129551652,-0.04766840598829152,0.13711622348009725,-0.14951576622190507,0.14361908101004245,6.7755831051411,,,29.046249463773265,36.64127770994139,38.678811959741424,38.870324139202154,38.870324139202154,38.870324139202154,27.313506062547493,13.629146571492292,4.174915807068381,3.777849499203225,3.4338035612484186,13.684359491055202,2381.174142675562,1481.5503905477383,1152.5817726099785,0.0,18.0,22.0,25.0,26.0,17.0,12.0,8.0,4.0,260.0248197100001,14.0,4.174387269895637,4.976733742420574,5.831882477283517,6.670766320845874,7.536363938404511,8.385944904806284,9.253878673990666,10.106958868052818,10.975362222346542,0.7816091954022991,0.9842758620689654,1.1499815953945,0.7495507336665527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6914287631633288,0.9779580797836377,1.0204560865961776,0.5992413933476981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,7.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,4.5237471617118175,0.0,0.0,0.0,0.0,4.565048284931329,9.757711252998451,0.0,23.20187978046503,0.0,6.4208216229260096,31.394276107678404,6.606881964512918,203.67633177097343,-260.1627085806354,-33.04191727017755,-8.971127882090876,-37.166101225805065,228.54184391717183,291.92427328454943,10.70852646616807,10.06635425119136,13.269285149297703,0.42857142857142855,0.864576434339694,0.23953510934750336,61.68856397130892,0.2685152688993678,0.0,0.1354235656603061,4.0,0.35714285714285715,0.4019450816903764,0.559502994086806,0.7621420330654296,0.8012513341761323,0.8012513341761323,0.8012513341761323,1.884,,2.679831932773109,0.9623873910080365,0.9863187119170018,2.7181212249741966,-2.193117353203792,1.0615026692410012,1.1052350254251515,-1.1124820779562221,59.19120000000003,9.088795446643147,0.0,9.757711252998451,0.0,6.4208216229260096,38.00115807219132,0.0,0.0,0.0,3.367295829986474,0.0,4.61512051684126,0.0,6.1070228877422545,0.0,7.716460800176355,0.0,9.381685238056505,22.666666666666675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.543999999999997,0.0,12.188549382716051,0.0,0.0,0.0,0.0,0.0,0.0,33.3494662664405,5.0872950630771525,0.0,0.0,42.671574262112614,9.088795446643147,0.0,6.4208216229260096,0.0,0.0,0.0,0.0,21.736971276330028,20.051434131736535,17.119207238224178,89.52786719029694,,58.32775483268054,79.18960526700329,75.77363366348777,57.9569320083133,96.60069646514927,78.95434860144204,78.194571618743,100.37059462473964,17.119207238224178,89.5278671902969,,56.41358916641404,78.50218570199755,74.9282176247018,56.015416847617445,98.16720886029479,78.15211153409005,77.28351480371423,101.31810735291397,4.735060036588217,61.84892055040167,,38.45440634600763,55.07776336238178,52.20632189821474,38.16492034802606,65.55741381111496,54.94972477812906,54.26771890469091,70.16550578180356,1.2228005170160128,6.394847656449782,,4.166268202334324,5.6564003762145205,5.4124024045348404,4.139780857736665,6.900049747510662,5.639596328674431,5.5853265441959286,7.169328187481403,2.367530018294108,44.76393359514847,,29.118554655917016,39.65789516364722,37.95726816830938,28.926196859902,47.94936563800949,39.55299591995252,39.17623116833044,50.10281263747887,28.360784313725492,0.0,0.0,11.248020754598135,0.0,0.0,0.0,29.59322651128915,4.039903628117915,2.9071604938271607,5.2857716049382715,0.0,0.0,1.7005555555555556,0.0,0.0,0.0,17.378000407083245,373.685649193264,56.626605470168585,78.82359244772967,107.37167385437266,112.88144885869959,112.88144885869959,112.88144885869959,160.0,95.91227841804643,58.53252649488125,45.18758527280285,51.38000000000001,41.57000000000001,0.75,5.187385805840755,4.807354922057604,3.2413350123081086,3.6749484010712674,,3.640179591424196,3.670387004574645,3.6652087766089663,3.6395138265242544,3.6657815807334777,3.6720344574469497,3.6706445584258462,3.6782419302399982,0.23152392945057917,0.26249631436223336,,0.26001282795887115,0.26217050032676037,0.26180062690064043,0.25996527332316105,0.26184154148096267,0.26228817553192496,0.2621888970304176,0.26273156644571416,1.512457522395773,1.6380113286626188,,1.6285052553561188,1.636769343965921,1.6353575353057257,1.6283223452076898,1.6355138045402373,1.6372180931717444,1.6368395122655932,1.638907138301859,175.26999999999978,72.27861502718298,58.32814395733222,,59.54101209356935,58.21883470598886,58.51040515402737,59.56855935252564,58.42475142150122,58.13457820950488,58.19395991760259,57.81344887740742,5.162758216227355,4.166295996952302,,4.252929435254954,4.158488193284919,4.179314653859097,4.254897096608974,4.17319653010723,4.152469872107491,4.156711422685899,4.1295320626719585,4.617000540943939,4.4025569571879295,,4.42313759061273,4.400681159382641,4.405676840923573,4.423600143858669,4.404211862377284,4.3992328733530295,4.400253804488443,4.39369366477378,19.174876543209876,0.0,2.9071604938271607,0.0,0.8450771604938274,0.0,0.8884722222222223,2.3063542454018644,-2.842183641975309,207.0952616734192,88.03261254890354,-112.4470512848088,-14.281317203754758,-3.8774845270623723,-16.0638644692584,98.77993884628484,126.17497683813549,4.628419773515384,4.350861270280535,5.735226219915251,301.0,19.0,0.9469234250586759,0.7567523731533073,0.14433756729740643,0.05,0.2762929288806347,0.17247448713915892,0.07216878364870322,0.025,0.0,0.0,0.0,0.0,0.0,0.0,0.08838834764831845,0.09682458365518543,0.13941938395630132,0.08282974094132667,10.441311299868556,10.322885269288754,6.726492059082182,7.244517016956578,5.4889640722733475,5.883786772984461,4.255654169683153,4.5951889486174045,3.3058869390004637,3.920544174917887,2.487616482030431,2.869378176863027,1.120099760268685,1.2912869022195326,0.49279927982674443,0.6241000725156198,2.180412942602845,1.7956767430037364,3.3668178454666364,2.7987288533924346,4.746471414352528,3.7626065559395157,47.70933405784829,35.15044338926883,31.615751338091577,30.903025617537107,30.903025617537107,30.903025617537107,64.0,72.0,33.48589499999998,28.792104999999996,0.20689655172413793,14.07,5.423611111111111,3.416666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29.0,0.0,0.0,29.0,0.0,1.0,1.0,28.0,1.0,14.0,28.0,0.0,0.0,0.0,7.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,2.0,1.0,1.0,14.0,7.0,0.0,2.0,2.0,1.0,1.0,5.0,0.0,0.0,2.0,0.0,0.0,2.772588722239781,0.0,3.091042453358316,3.295836866004329,3.4011973816621555,3.4339872044851463,2.995732273553991,2.5649493574615367,2.1972245773362196,1.6094379124341003 +4342,CCN(CC)CCNC(=O)c1ccc(NC(C)=O)cc1,0,19.488372093023255,5.996388372093023,2.627906976744186,5.767441860465116,166.50335111494715,76.4617543255814,1.3250233677099306,6.0523139534883725,4.3165374677002575,7.556761674418603,191.40473771500245,21.53488372093023,6.255418604651163,3.13953488372093,5.3023255813953485,150.18345628403483,79.79969320930228,1.6527198862790704,6.3842209302325585,2.959948320413437,7.684569302325578,234.7585787186231,16.733333333333334,6.107893333333333,2.8,3.68,161.14326000119644,60.41505313333329,1.3244708153738263,6.1882893333333335,2.8503703703703716,7.621122186666667,180.8714345784655,14.085106382978724,6.076967021276595,2.4680851063829787,2.74468085106383,165.29150683579073,49.0412540531915,1.20636944167,6.138591489361703,2.777777777777778,7.642420127659574,161.46959227705105,12.707070707070708,5.891515151515152,2.202020202020202,2.3333333333333335,161.13512838663257,43.2588632929293,1.1704695658164541,5.968904040404041,2.7149270482603813,7.481159595959596,150.57233046346423,10.242990654205608,5.76414953271028,1.897196261682243,1.9813084112149533,167.41121029952583,33.94785594392522,1.0011054223388967,5.815907476635514,2.5181723779854623,7.410095028037382,123.590089911734,10.337078651685394,5.696897752808988,2.0,2.044943820224719,168.80069441032035,35.11461128089887,0.988591100352955,5.746805617977528,2.344881398252185,7.346882516853933,122.28293936373647,13.06060606060606,5.962363636363633,2.3181818181818183,2.393939393939394,165.34505931608834,45.56670521212118,1.1045602687421214,6.019969696969696,2.9053030303030307,7.573535515151517,146.5480519993254,15.436363636363636,6.289745454545455,2.4,2.581818181818182,160.42121878124266,53.3875818,1.2669093343680913,6.353667272727275,4.046969696969698,7.83106930909091,170.67349247081688,7.319632233639804,0.11181503515413728,0.01611903437236546,0.4813412655489454,3.552190373174689,1.4064969260591336,34.85385415035153,0.21566384976665218,0.10665548945375875,1.6157382368848028,0.0649561492698756,48.996384315524125,0.11790156841535937,-0.0020531097890752244,-0.009979083077689343,0.17522985397512178,1.3217955651703621,-0.36970539323786006,0.527198762574372,-0.022455584359113063,-0.00034451054624124106,-0.07208100474731084,-0.0026535943753380306,-2.533088784308249,0.48346854155399316,0.013473926086172676,0.0025172921602380316,-0.03482963764196861,0.2394375338020552,-0.07441168381392121,2.2271509867027257,-0.0036406016826476054,0.012637564809807085,0.19365022134086496,0.007914309024698028,0.5142844916779719,-0.5398202593696421,-0.019657984189268507,-0.0004876554994755975,-0.06125220072954902,-0.37603995259081957,0.2782685006066927,-2.443355695378754,0.0199264406484331,-0.018117067880280318,-0.11018543024342593,-0.010821084450479277,2.220922556654948,-0.7408208641307612,-0.0067514692626645025,-0.001133020553806338,-0.01716461532578352,0.008298233825545905,-0.3025576849082718,-3.59727444022704,-0.04227938983379484,-0.006367728119485823,-0.020809622576343313,-0.004203386291252162,-7.974326926886066,0.2100352299550651,0.0016419307228459044,-0.0007567911058004909,0.07288607633325411,0.4408546170448285,-0.06631396610629235,0.9958497422804927,-0.0005140937078115511,0.0020037802702142643,-0.05939782779499119,0.00016979204722937245,0.5601746434415146,1.3012196085342216,0.01742517911291255,0.00357165756908104,0.03107054526892762,0.49745687009680295,0.1573623888108662,6.165658460048246,0.021851388015080714,0.017593295495287455,0.06005219948833562,0.008315451461767981,6.889967717603939,0.4936165330973335,-0.008677403018830826,-0.004527481845153584,-0.10819115984070013,-0.5550092597145059,-0.018798457835021938,2.4295921611354205,0.014143355219969324,-0.0056704647885015775,-0.11263550413090698,-0.0073777081141321345,4.445822065500107,-1.7606470327941395,-0.0015030266974777897,0.0026772058467483015,-0.14180638182801514,-1.3458478784601018,-0.05632742766547551,-8.436745789675001,-0.02355242637730554,-0.006473206155661531,0.25380604312459354,0.005275416057819936,-10.210877069773304,,,0.4683333333333334,1.0875,0.475,0.025,0.6125,-0.1375,0.8043914752520867,0.0176066477229579,0.0219066477229579,0.7645300895495541,0.2245599748324679,0.253544055563229,1.5689215648016408,0.4781040303956969,1.9542222584288471,1.476515741710412,0.30393141955239744,0.1737750971660376,0.0,0.477706516718435,6.446023883162805,838.0,257.8447,113.0,248.0,7159.644097942728,3287.8554360000003,56.97600481152701,260.2495,185.6111111111111,324.9407519999999,8230.403721745106,926.0,268.983,135.0,228.0,6457.888620213497,3431.386807999998,71.06695511000002,274.5215,127.27777777777779,330.43647999999985,10094.618884900794,1255.0,458.092,210.0,276.0,12085.744500089733,4531.128984999997,99.33531115303697,464.12170000000003,213.77777777777786,571.584164,13565.357593384913,1324.0,571.2348999999999,232.0,258.0,15537.40164256433,4609.877881000001,113.39872751697999,577.0276000000001,261.11111111111114,718.387492,15178.1416740428,1258.0,583.26,218.0,231.0,15952.377710276625,4282.627466000001,115.87648701582896,590.9215,268.77777777777777,740.6348,14906.660715882957,1096.0,616.764,203.0,212.0,17912.999502049264,3632.420585999999,107.11828019026194,622.3021,269.44444444444446,792.8801679999999,13224.139620555537,920.0,507.02389999999997,178.0,182.0,15023.261802518511,3125.2004039999993,87.984607931413,511.4657,208.69444444444446,653.8725440000001,10883.181603372546,862.0,393.51599999999974,153.0,158.0,10912.773914861831,3007.4025439999978,72.90097773698001,397.3179999999999,191.75000000000003,499.8533440000001,9672.171431955476,849.0,345.93600000000004,132.0,142.0,8823.167032968346,2936.316999,69.68001339024502,349.45170000000013,222.58333333333337,430.708812,9387.04208589493,314.7441860465116,4.808046511627903,0.6931184780117148,20.697674418604652,152.74418604651163,60.47936782054274,1498.715728465116,9.273545539966044,4.586186046511626,69.47674418604652,2.7931144186046506,2106.8445255675374,5.069767441860453,-0.08828372093023465,-0.42910057234064175,7.534883720930236,56.837209302325576,-15.897331909227983,22.669546790698,-0.9655901274418617,-0.014813953488373366,-3.099483204134366,-0.11410455813953531,-108.9228177252547,36.260140616549485,1.0105444564629507,0.18879691201785237,-2.6122228231476456,17.95781503515414,-5.580876286044091,167.03632400270442,-0.2730451261985704,0.9478173607355314,14.523766600564873,0.5935731768523521,38.57133687584789,-50.74310438074635,-1.8478505137912398,-0.045839616950706166,-5.757706868577608,-35.34775554353704,26.157239057029116,-229.67543536560288,1.8730854209527112,-1.7030043807463497,-10.357430442882038,-1.017181938345052,208.76672032556513,-73.34126554894536,-0.6683954570037858,-0.11216903482682747,-1.6992969172525683,0.8215251487290445,-29.953210805918907,-356.1301695824769,-4.185659593545689,-0.6304050838290964,-2.060152635057988,-0.4161352428339641,-789.4583657617205,22.473769605191965,0.17568658734451179,-0.08097664832065253,7.79881016765819,47.171444023796646,-7.095594373373281,106.55592242401272,-0.05500802673583596,0.2144044889129263,-6.355567574064057,0.01816774905354285,59.93868684824206,115.80854515954572,1.550840941049217,0.31787752364821253,2.7652785289345583,44.27366143861546,14.005252604167092,548.7436029442939,1.9447735333421836,1.5658032990805835,5.344645754461871,0.7400751800973504,613.2071268667506,32.57869118442401,-0.5727085992428346,-0.29881380178013656,-7.140616549486208,-36.63061114115739,-1.240698217111448,160.35308263493775,0.9334614445179754,-0.3742506760411041,-7.43394327263986,-0.48692873553272087,293.42425632300706,-96.83558680367767,-0.08266646836127843,0.14724632157115658,-7.799351000540833,-74.02163331530559,-3.098008521601153,-464.02101843212506,-1.2953834507518047,-0.3560263385613842,13.959332371852645,0.2901478831800965,-561.5982388375317,0.7478909578906804,0.620076918896619,0.4781040303956968,0.3473032873263332,0.3200425694700072,0.18165280202398734,0.21169379167412292,0.10983832027675249,0.14402545839929062,0.06258807678170876,0.08904437430237308,0.029947006963039213,0.05829716818334586,0.015466516910484897,0.0407986975302737,0.009115040897734072,8.023280753886397,5.693275412656526,3.5454103294543184,2.1921809016744613,0.3955156903631049,-0.37125276504222926,3.136316707366993,0.9726344336005941,6.023166738215744,0.9872569003884836,14.544307138067255,10.954492267279905,16.011182404674056,11.70507536366888,1.9837416342527132,0.7511711182218828,3.490724785877167,2.241867765922562,7.009355529056785,1.3833200190809865,3.703614917071969,2.4377458836748147,20.889976918101485,14.70177786505712,0.26620158759298296,0.5573209586046421,0.7372984564826777,0.8205785642738597,0.8205785642738597,0.8205785642738597,2.168993877200297,438.93677733377945,0.0,2.0,7.0,0.0,5.0,0.0,1.0,0.0,0.0,3.93953887036285,2.3136481000292037,1.3084805234067538,0.8433642443369864,0.8433642443369864,0.8433642443369864,245.12511094560375,989.7743910130912,42.84815203344861,23.018009093327702,44.904875005297924,,13.0,393.0,0.0,9.589074368143644,11.814359458703011,17.795594172293132,19.634269217737724,6.923737199690624,24.26546827384644,0.0,29.380961338244386,0.0,9.366666666666667,21.75,9.5,0.5,12.25,0.0,0.03166666666666664,-2.75,0.11627906976744173,0.030564784053156102,-0.08571428571428563,0.04878787878787871,0.15423904382470088,0.0,0.5496124031007754,0.8366666666666663,0.4333333333333337,0.5190476190476193,0.7878787878787876,16.087829505041732,0.35213295445915804,0.438132954459158,15.290601790991083,4.491199496649358,5.07088111126458,31.378431296032815,9.562080607913938,0.5597609561752991,0.23131672597864766,0.0,0.2562277580071174,0.4666666666666667,0.2761077325879418,-0.4992247054296942,-0.04030196503930341,-0.011609876870458002,-0.038401900417668784,0.7238922674120579,1.3088547016571326,0.03797128796344,0.030438481433886805,0.04362849005523776,-3.9083715004784736,0.9496083936751886,0.7798946533427493,1.7320264830971017,0.8966292134831461,0.521163215590743,1.6367936730788217,0.958039517440408,1.3319189795218624,0.7718862509254282,0.5713249651324964,0.7477749269132931,1.1986922574133534,0.9171893010196543,0.79399731070976,1.0348496614655551,1.420449438202247,0.9697259439707674,1.2226169323744764,0.9218628732581278,1.0559031422917338,0.7950492987028792,0.49581738726173874,0.7282665065386708,1.0102243847195553,1.085988322554072,1.2876798202995932,1.277422770995845,1.252067893856084,1.1861718324824422,0.8746442135838498,1.0805228092308417,0.8770390865054514,1.2642482447882015,1.0596943529481586,1.2688422772687362,0.9214595354030445,1.0628159830908466,0.9584141893918144,1.0144367255924753,0.9531154239019407,0.9026778134573507,1.2395795540231611,1.0667966635034087,1.2358696553606066,0.9637571725489943,0.9608016003831903,0.9693984282338768,1.1818259116973846,0.9372097134389128,0.9388793744023438,0.9047355572854423,0.6258321957366375,0.7889313237788428,0.9396825914857706,0.9370227458223042,0.9409301696261284,0.9403360507030883,1.0302871518137617,0.9524537087330968,0.9419423371443335,0.7714129873493807,0.7006001230191052,0.727380761278314,0.8208054538568362,0.770841601773666,0.769665832016012,0.7734623729295003,0.8228891263377989,0.7076975402553445,0.7379129644429818,0.6910724750568253,0.8093857053841691,0.9442011365315638,1.235338223538238,1.4267751746896011,1.5372829417773237,1.3560998228324659,0.9649506941197863,0.9386945004785504,0.9020379837226736,1.1941185866555786,1.4087629432399305,1.3314041040458964,0.8734879219666775,1.2992369386192353,1.3958464272805549,1.0011062905562504,1.438896833503575,1.6223203410475031,1.1283474754013392,1.2948998249116523,1.146165078193453,1.397243002932789,1.5647267655635853,1.4282061534710937,1.2034231156225008,4.5,0.05774920926436078,2.000000000000001,1.125,0.6622222222222225,0.49305555555555564,0.38530612244897955,0.2309027777777778,0.09448223733938017,0.11125000000000002,3273.695767287515,3850.999969440341,1834.3059019019256,1601.7083981078881,14.746136855896728,0.48548538111677886,7.587102984411525,0.9435793722840148,1.0,0.4666666666666667,1.486725884339248,3.112616654672894,4.117784231295344,4.5829005103651115,4.5829005103651115,4.5829005103651115,0.22500000000000003,0.008249887037765826,0.08000000000000004,0.045,0.03010101010101011,0.027391975308641976,0.024081632653061222,0.014431423611111112,0.006298815822625345,0.011125000000000003,0.4716797445342157,18.05,9.8496,7.025510204081633,119.89848438657344,1.0,3.8650678810003063,104.22155752977737,,85.98780719348633,83.8808111367342,82.19434418363997,86.00616004487416,120.05121297285405,85.09742958649643,86.11433437717184,109.26119452808486,0.01610758090734443,-0.018361661168777597,-0.6190869035429023,0.3640449438202249,0.3721071863580998,-0.262855457689295,0.015125981772350267,-0.10412308035588698,-0.00323012484407196,-0.04461180846118083,-0.04085208875780257,-0.05169950435517462,0.06605093345155412,0.12050191700605235,0.15616891819237558,-0.07235955056179769,0.06740560292326432,-0.052905685348645204,0.06389970466667208,-0.01688090835152358,0.11848958618568049,0.11985247171858053,0.12184079742498544,0.0104963763931255,-0.07374964235070698,-0.17580805803235613,-0.030253394106016435,-0.12725316758307428,-0.1058614300152901,0.19784508266674553,-0.0701028840265033,0.0923958311510875,-0.1698653109471229,-0.06819509975568018,-0.16659060877393667,0.04532829488708345,-0.10121012101210121,-0.060380692572851107,-0.07029084544597741,-0.03565997049143115,0.0023360892727518844,-0.21511435915897006,-0.10321023393020534,-0.19604300804024896,-0.05970370725499879,-0.012879327914195408,-0.06471113725951035,-0.16275337534160583,0.02869477908873322,0.014684346524441004,-0.046950151499021354,0.15142287094403017,0.12410782383006817,-0.04714831925875415,0.02857215554941572,-0.002383773211726487,0.018787408697636867,-0.03676203634910082,0.0026139487814145425,0.01143297921401983,0.17777117305894607,0.15583932061454794,0.2215801199111719,0.06454993056432266,0.14004228879552202,0.11188249749807856,0.1769003345641779,0.1013215151205168,0.1649544302444475,0.037167034930186624,0.1280163857500155,0.14062196249491224,0.06743734074900028,-0.07760497509900173,-0.2808779819289621,-0.22477017364657811,-0.1562442328276677,-0.013365445374767632,0.06970799127851735,0.065580556200181,-0.0531661784831061,-0.06971148021357222,-0.11357982572950424,0.09073775805312807,-0.24053763585313762,-0.013442080444779757,0.166089716350386,-0.2946067415730337,-0.37887830805004996,-0.04004802756540637,-0.24206062701934813,-0.10920896757982022,-0.06069266747369845,0.1570836397447275,0.08121503686898032,-0.20840062409540017,7.5346307552594425,9.280702439026378,2.0041451295984074,13.900309039357516,27.366359051966178,32.65919587617835,33.12803308548067,33.12803308548067,33.12803308548067,39.08444516857694,29.53031483420824,6.078628391047949,3.4755019433207517,0.0,9.5541303343687,4771.1253292437705,4666.10277981873,544.2383750375175,20.0,25.0,28.0,30.0,32.0,32.0,34.0,30.0,20.0,277.1790269760006,20.0,4.51085950651685,5.2832037287379885,6.093569770045136,6.884486652042782,7.700295203420117,8.50045386741194,9.319463798994537,10.125390334414204,10.946816139580935,0.5813953488372093,0.970325581395349,1.1410887871342184,0.5370425946758107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6306954323910321,0.9562243502051984,0.9967648503531565,0.579872294198117,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,0.0,4.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,15.533486938863138,0.0,0.0,5.907179729351506,5.907179729351506,9.589074368143644,0.0,0.0,0.0,13.847474399381248,37.35498108567159,31.264087777896332,0.0,151.14621725411422,-273.28436287623566,-22.062002778781636,-6.35545029944734,-21.02187406740274,396.27132819971797,716.4900281368555,20.786149254666974,16.66255879388036,23.883000937895186,0.46153846153846156,0.8599145011057198,0.19399191207987004,20.07015909515425,0.13872490661988698,35.931092365720424,0.14008549889428,7.0,0.35,0.2739869784368583,0.573620491328897,0.758861651143561,0.8445773874917964,0.8445773874917964,0.8445773874917964,1.7165999999999995,,0.9285714285714287,1.1284318287575617,1.022017128129546,0.9260316936439501,-3.719133983223758,1.0009944920440637,0.9177785797741316,-1.7559628408463377,80.86690000000004,9.589074368143644,0.0,10.216698334856808,0.0,20.771211599071872,31.49581422765663,29.828919765543436,0.0,0.0,3.713572066704308,0.0,4.948759890378168,0.0,6.364750756851911,0.0,7.859026979751538,0.0,9.394410399304254,25.0,6.858571743512219,0.0,0.0,0.0,0.0,0.0,1.28781489936297,0.0,41.724000000000004,0.0,22.81836958151061,0.0,0.0,0.0,0.0,0.0,-0.21485621941662347,49.06681784677139,10.633577208012662,5.687386274683562,0.0,42.893294813203795,4.794537184071822,0.0,31.129200274840688,24.26546827384644,0.0,0.0,0.0,23.09283157105986,27.119903592814378,24.461864304860562,208.4431150595548,,171.8827572441155,167.64877909059263,164.28648665446698,171.91971692038396,241.21816614067524,170.09475972378846,172.1368908963663,219.0491779084236,24.461864304860562,208.44311505955477,,171.04704295840122,166.6331904447109,163.36667123915043,171.08628839610444,243.821559928932,169.19386468094888,171.31089017456978,220.27835189701614,4.568731013507882,160.7621355029909,,133.35242989941486,130.13402375560995,127.44216156083709,133.38011964648123,185.0645626056393,131.9864711978779,133.5463733882677,168.87843994621582,1.223093215243028,10.42215575297774,,8.594137862205775,8.382438954529631,8.214324332723349,8.595985846019198,12.060908307033761,8.504737986189422,8.606844544818316,10.952458895421179,2.284365506753941,104.22155752977737,,85.98780719348633,83.8808111367342,82.19434418363997,86.00616004487416,120.05121297285405,85.09742958649643,86.11433437717184,109.26119452808486,41.11764705882353,0.0,5.658698660084566,0.0,0.0,0.0,0.0,42.86088856518573,3.4506377078573283,5.5572732094444754,0.0,0.0,0.0,2.2501570843111245,0.0,0.0,0.0,24.93450865051903,470.7322854954499,63.92921302658766,133.84251615093444,177.0647219456998,197.0647219456998,197.0647219456998,197.0647219456998,291.0,109.36453900116447,76.68525995838229,52.28052009299019,61.440000000000005,61.440000000000005,0.8571428571428571,6.907942761406209,5.321928094887363,3.6664302733930474,4.395086829789855,,4.389070306379705,4.389710393251759,4.390518424281215,4.389065652743972,4.381136864509866,4.3893517264177895,4.389031134255443,4.383295055565665,0.18332151366965238,0.21975434148949274,,0.21945351531898524,0.21948551966258795,0.21952592121406073,0.2194532826371986,0.2190568432254933,0.21946758632088947,0.21945155671277217,0.21916475277828326,1.9923656917190635,2.1736344679956385,,2.1722646099073275,2.1724104358244083,2.172594492766096,2.1722635496285267,2.1704554293761977,2.172328726222795,2.172255684942282,2.1709479179069096,231.52999999999957,194.4580753773874,97.24678483026582,,97.34069776210836,97.28340288602556,97.28166285440994,97.34131762417154,98.23025172283043,97.31871863519541,97.34387501279824,97.92260300839155,9.722903768869369,4.8623392415132916,,4.867034888105418,4.864170144301278,4.864083142720498,4.8670658812085765,4.911512586141521,4.86593593175977,4.867193750639911,4.8961301504195776,5.963363769625109,5.270399101640676,,5.271364353237367,5.2707755784911035,5.2707576921186545,5.271370721181134,5.280461410829518,5.2711385318780595,5.271396993221572,5.277324581981174,0.0,25.068526665821732,5.5572732094444754,1.28781489936297,-0.21485621941662347,6.858571743512219,0.0,9.109336367941895,0.0,282.1282193152912,82.74009125387889,-149.60065513662335,-12.07712740895627,-3.4790850031772864,-11.507742702817179,216.92587781681962,392.2192125448247,11.378702804426801,9.121377035926157,13.073973751494156,1001.0,25.0,1.2188655079899084,0.4778736585990342,0.0,0.0,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333333333333333,0.027777777777777776,0.10703808753134778,0.027777777777777776,14.957819157813608,12.40153837793238,9.562080607913936,6.946065746526664,8.00106423675018,4.541320050599683,5.927426166875442,3.0754729677490698,4.320763751978719,1.8776423034512626,2.8494199776759386,0.9583042228172548,1.8655093818670676,0.4949285411355167,1.3871557160293058,0.30991139052295846,2.2150344402092963,0.8838762720582378,2.8936663603264505,0.9731799709908688,3.208827932020914,0.8049033659823444,67.72854440490345,38.18353976133784,26.25996021569142,23.97703539605167,23.97703539605167,23.97703539605167,90.0,98.0,45.29023899999997,27.659760999999992,0.13953488372093023,20.05,8.055555555555555,4.777777777777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,43.0,0.0,1.0,43.0,6.0,2.0,5.0,38.0,8.0,20.0,35.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,3.0,2.0,0.0,20.0,5.0,0.0,3.0,2.0,0.0,1.0,7.0,0.0,0.0,0.0,0.0,1.0,3.258096538021482,4.504659004391702,3.676300671907076,4.029806041084529,4.429327595291846,4.856415167413176,4.951415934436285,5.151845462647779,5.1232196548434015,4.4135555822825445 +84003,O=C(c1ccccc1)c1ccc2n1CCC2C(=O)O,0,24.8125,6.338903125,3.59375,8.8125,158.54496055883553,98.16470934375002,1.5860337425949063,6.4124968749999995,6.223958333333334,7.834517375000001,239.04152212364977,26.176470588235293,6.374264705882353,4.382352941176471,8.147058823529411,143.39926925105738,100.19353120588234,1.9194064619411766,6.529338235294118,3.4681372549019605,7.776597529411765,284.7890059686843,23.20689655172414,6.307120689655172,4.051724137931035,6.913793103448276,148.15624245488277,87.44719162068967,1.7249103077534138,6.438406896551724,3.6178160919540225,7.7408445517241375,249.87029926672528,18.233766233766232,6.177987012987013,3.2857142857142856,4.974025974025974,156.18370591741285,66.59738806493505,1.420465875342065,6.27255974025974,3.2922077922077926,7.699240155844156,199.838456790112,18.52054794520548,6.376164383561644,2.9315068493150687,5.123287671232877,156.53613860623074,67.09624501369862,1.3244090008327671,6.453639726027397,4.042617960426179,7.904451726027398,189.39121867470556,16.70769230769231,6.373876923076923,2.6769230769230767,4.230769230769231,161.47115750974447,59.59629207692307,1.2407250552206002,6.432,3.9025641025641025,7.944958953846154,177.35839167921398,15.452830188679245,6.104018867924529,2.7547169811320753,3.6226415094339623,156.88166263015177,54.233357433962254,1.3510875032064718,6.1921132075471705,3.184486373165618,7.667177811320754,183.3812757183669,14.875,5.959666666666667,2.5208333333333335,3.9791666666666665,156.43129426441752,52.5121229375,1.2841413373675208,6.04649375,4.118055555555555,7.52753475,168.43808245554763,11.487804878048781,5.734634146341463,2.1463414634146343,2.5609756097560976,161.43885116040212,39.14836429268293,1.0728057960740733,5.809170731707317,2.8821138211382116,7.374239219512195,135.88008864800045,7.27734375,0.14035927734374995,0.02494946805163889,0.6396484375,4.02734375,1.4559395866137712,34.527693202148434,0.23286071473603806,0.12964130859374995,2.5103081597222223,0.09186330859374998,49.20415375698183,0.11236213235294118,-0.008168192784926469,-0.012732331792301724,0.20869715073529413,0.8366268382352942,-0.07598585660639418,0.613261339211855,0.010788841697580497,-0.006661713005514734,-0.14868642769607837,-0.00597403285845588,2.1443327932773517,-0.04997306034482758,0.014730647225215518,-0.00017267466749609257,-0.017342403017241378,0.23343211206896552,-0.18402675037111463,-0.3584250383553336,-0.019111343552109198,0.01255842200969826,0.3264075969827586,0.011491613820043102,-3.8097098042463764,-0.06955154220779221,-0.002712727019074675,-0.0010676685166602366,-0.12179129464285714,-0.3260450487012987,0.07118623611671213,-0.339496511401684,-0.004327688953767792,-0.0021372907366071425,-0.039258376172438623,-0.002050396256087662,-0.3327772944900821,-0.7139875856164384,-0.0026473338505993167,0.005545473626838836,-0.0946998073630137,-0.5496040239726028,-0.2512268533496626,-3.482747430744327,-0.043164626831068045,-0.003366137360873298,-0.3216428248668189,-0.003169226401969179,-8.410347717208474,-0.9321514423076923,-0.042634277343749985,-0.0029305606998299852,-0.0011868990384615384,-0.9792668269230769,0.1615623689033272,-4.161296068494591,0.026680393324162867,-0.03853443359375001,-0.6653028178418803,-0.027186954747596147,2.6996195123686113,-1.5391362028301887,-0.02890644715507074,-0.005699110165776388,-0.06358711674528301,-0.8787588443396226,0.03892384137930481,-7.1944315671248535,-0.0032129742929313675,-0.02852167415978771,-0.44659615762578614,-0.015854603405070746,-4.63439996223489,0.21875,0.05366110026041666,0.0044437718126985595,-0.0751953125,0.7890625,-0.15373967189361595,0.6700157041015643,-0.03820446139055631,0.04562646484375003,1.1203703703703702,0.039369212239583326,-7.778626435146063,1.2424733231707317,0.01911244521722559,0.00045144161917768153,-0.01388624237804878,0.7836318597560976,-0.217145692811601,5.7536226659918075,-0.02686702582902665,0.020788112137957344,0.2504896045054201,0.00771464567454268,0.42568817204988973,,,0.46842105263157907,1.3157894736842106,0.6842105263157895,0.0,0.631578947368421,0.05263157894736842,0.6549760677931613,0.012245948001107291,0.025824895369528342,0.8973537293301561,0.2653934213048875,0.2178455550294313,1.5523297971233174,0.4832389763343188,2.0432670234332106,1.6497483424855133,0.1186582255719414,0.27486045537575593,0.0,0.39351868094769726,7.971548227375,794.0,202.8449,115.0,282.0,5073.438737882737,3141.2706990000006,50.753079763037,205.19989999999999,199.16666666666669,250.70455600000003,7649.328707956793,890.0,216.725,149.0,277.0,4875.575154535951,3406.5800609999997,65.259819706,221.9975,117.91666666666666,264.404316,9682.826202935266,1346.0,365.813,235.0,401.0,8593.0620623832,5071.937114,100.044797849698,373.4276,209.83333333333331,448.968984,14492.477357470067,1404.0,475.70500000000004,253.0,383.0,12026.14535564079,5127.998880999999,109.375872401339,482.9871,253.50000000000003,592.841492,15387.561172838623,1352.0,465.46000000000004,214.0,374.0,11427.138118254843,4898.025885999999,96.681857060792,471.1157,295.1111111111111,577.024976,13825.558963253505,1086.0,414.302,174.0,275.0,10495.62523813339,3873.7589849999995,80.647128589339,418.08000000000004,253.66666666666666,516.422332,11528.295459148909,819.0,323.51300000000003,146.0,192.0,8314.728119398043,2874.3679439999996,71.607637669943,328.182,168.77777777777777,406.36042399999997,9719.207613073446,714.0,286.064,121.0,191.0,7508.702124692041,2520.581901,61.638784193641,290.2317,197.66666666666666,361.321668,8085.027957866287,471.0,235.12,88.0,105.0,6618.992897576487,1605.082936,43.985037639037,238.176,118.16666666666667,302.343808,5571.083634568018,232.875,4.491496874999998,0.7983829776524445,20.46875,128.875,46.59006677164068,1104.88618246875,7.451542871553218,4.148521874999998,80.32986111111111,2.9396258749999995,1574.5329202234186,3.8203125,-0.27771855468749995,-0.4328992809382586,7.095703125,28.4453125,-2.583519124617402,20.85088553320307,0.3668206177177369,-0.22649824218750098,-5.055338541666664,-0.20311711718749992,72.90731497142995,-2.8984375,0.8543775390625,-0.01001513071477337,-1.005859375,13.5390625,-10.673551521524649,-20.78865222460935,-1.1084579260223335,0.728388476562499,18.931640625,0.6665136015625,-220.96316864628983,-5.35546875,-0.20887998046874998,-0.08221047578283822,-9.3779296875,-25.10546875,5.481340180986834,-26.14123137792967,-0.33323204944011997,-0.16457138671874996,-3.022894965277774,-0.15788051171874995,-25.62385167573632,-52.12109375,-0.1932553710937501,0.40481957475923497,-6.9130859375,-40.12109375,-18.33956029452537,-254.24056244433586,-3.151017758667967,-0.24572802734375077,-23.47992621527778,-0.23135352734375006,-613.9553833562186,-60.58984375,-2.771228027343749,-0.19048644548894905,-0.0771484375,-63.65234375,10.501553978716268,-270.48424445214846,1.7342255660705863,-2.5047381835937506,-43.24468315972222,-1.7671520585937497,175.47526830395972,-81.57421875,-1.532041699218749,-0.3020528387861485,-3.3701171875,-46.57421875,2.062963593103155,-381.3048730576172,-0.17028763752536247,-1.5116487304687487,-23.669596354166664,-0.8402939804687496,-245.62319799844917,10.5,2.5757328124999996,0.21330104700953087,-3.609375,37.875,-7.379504250893566,32.160753796875085,-1.833814146746703,2.1900703125000014,53.77777777777777,1.8897221874999997,-373.37406888701105,50.94140625,0.7836102539062493,0.018509106386284942,-0.5693359375,32.12890625,-8.902973405275642,235.8985293056641,-1.1015480589900926,0.8523125976562511,10.270073784722225,0.3163004726562499,17.45321505404548,0.705548048158227,0.5391547098851446,0.4372162166834313,0.2953458197347641,0.27704475896903347,0.15565751575987546,0.1724177968554992,0.08522732684319538,0.11034529470201253,0.04694465890756118,0.07052658410227945,0.02514723786382274,0.04331194801873136,0.013265300587440009,0.028356483572238102,0.007266352484066439,8.02902708630061,5.693007329429445,3.555074409652194,2.1923610188489304,0.4419390470938838,-0.4559866838835499,3.258259236772353,0.9727916884773767,6.023229977613614,1.8939171474297654,14.55089792224727,10.95346683260704,16.014423904213594,11.704364166164494,1.987430795129983,0.7415418357914748,3.5011237910866244,2.24220078745675,7.0093701267156545,1.2393067299714926,3.714042493176248,2.4382068982201965,20.89302660968663,14.70068867024966,0.2831052618926846,0.6246287397470075,0.7675708743121081,0.8821957792445763,0.9099305047898489,0.9099305047898489,1.6334790267848887,642.6652275716834,0.0,1.0,1.0,0.0,10.0,1.0,1.0,1.0,0.0,3.48324883662892,1.6535190432263525,0.8876991236427099,0.273590234442608,0.125,0.125,55.32714426952029,789.0935890453052,57.960461072495946,24.659174657665787,51.00556020588952,,10.0,315.0,11.887211334113243,9.589074368143644,5.783244946364939,24.222957515384042,5.693927994848461,0.0,24.26546827384644,22.766200853176187,0.0,5.106527394840706,8.900000000000002,25.0,13.0,0.0,12.0,0.0,0.03157894736842094,1.0,0.1784787735849055,0.07663690476190466,-0.10184186882300084,0.027105263157894743,0.15774999999999972,0.0,0.6218750000000002,0.8421052631578946,0.4433962264150947,0.5452380952380955,0.8149999999999998,12.444545288070065,0.23267301202103852,0.4906730120210385,17.049720857272966,5.042475004792863,4.139065545559195,29.49426614534303,9.181540550352057,0.5562500000000002,0.11235955056179772,0.0,0.38202247191011224,0.2,0.43914489665031625,-0.7622985621134839,-0.07803365669918927,-0.023821830066046372,-0.06352488017612368,0.5608551033496837,0.9735716892047037,0.04946939430159007,0.03042411528764699,0.04867858446023517,-2.166072617973431,0.712576173786745,0.6845801725916492,1.4271962923543708,0.7349797934440951,0.49523592172077363,1.1197291274336765,0.71677314706953,0.9379042132106057,0.6707924274410458,0.6239489441767628,0.6959976316914217,0.8578206749462518,0.7952690321505914,0.5532432920241939,0.8472663968597105,1.188102132140037,0.7423659654169036,1.1975745608559205,0.8047258523602937,1.046067994441491,0.5617353896016609,0.4342398068309697,0.5086748877759709,0.9955929797319564,0.936152414413284,0.8649463651477874,0.9450490213144246,1.3276494497868543,1.0418330457127742,0.968282381748117,0.9388663357705278,0.9777055461329398,0.8675037880952337,0.798338380875662,0.8400546248723951,0.9681715404198179,1.078625578129251,1.169054688355328,0.8511548860836201,1.1618111471295618,1.1845926949497099,1.1306346664603946,1.0773699664359644,1.1381248725263635,1.1573379448124321,1.3649247567138683,1.220583811001003,1.0989681889523601,1.179635823114084,1.6044599659388439,1.2616609621282096,0.9669524368761009,1.3673953592479295,0.8539887652697666,1.16512959859161,0.8259597281967898,1.5739930539439702,1.6460494422370366,1.6318650020779886,0.876511276643516,1.166671730521881,1.104224259606271,1.0695464475745609,0.9715684862451389,1.159599582746189,0.9379318259316112,1.165029000519213,0.9894840548521047,1.124279048526192,1.097251163188993,1.0632829125795304,1.0740519604075296,0.9276704240472357,0.35997163158069273,0.4542098381660164,0.899236641221374,0.6589880375040414,1.0304086349661223,0.9432571117722137,1.1637813925456382,0.41661751512398587,0.2803868597363302,0.2860737904841943,1.1890033753108635,0.8766348533050548,0.6228571573056602,0.6758279449786847,0.8126605846211135,0.7304298455205697,1.023283557121536,0.8857178248066294,1.123969535379454,0.6409526519758256,0.6196503028354252,0.6271140814773936,1.080138731121655,3.0,0.024691358024691357,2.666666666666668,1.4375,1.0461111111111112,0.5805555555555555,0.2834467120181404,0.17191043083900226,0.08641975308641973,0.04437500000000001,3466.0856034009234,3816.8521166467185,1823.056048937547,1685.8178274748714,11.864823752261433,0.4616415137032267,6.387528555445467,0.8574983499911695,1.0,0.2,1.51675116337108,3.3464809567736475,4.11230087635729,4.726409765557392,4.875,4.875,0.14285714285714285,0.012345679012345678,0.08888888888888892,0.049568965517241374,0.04023504273504274,0.027645502645502647,0.017715419501133776,0.013223879295307866,0.010802469135802467,0.008875000000000003,0.4121579895884083,13.959183673469388,5.78,2.6122448979591835,109.84378660390799,1.0,3.8940214776831987,75.56166948516312,,59.26655129281765,58.63507184616971,58.65902136504112,59.273638616146314,72.40020157503015,59.023369999693735,59.30211387491204,67.24131040302024,0.01543999242208961,-0.0581948905658867,-0.5103247799090994,0.32626852267624606,0.2077366349061448,-0.05219025384365179,0.017761433861839798,0.04633173830892992,-0.05138572788084227,-0.05923034872042612,-0.06503176240772074,0.04358032055318259,-0.00686693690191941,0.10494958013455075,-0.006920975915747024,-0.027112397999473542,0.05796180474263354,-0.12639724344546782,-0.010380798863592519,-0.08207199558660241,0.09687052796614323,0.1300269035570825,0.1250947086051824,-0.07742658928883209,-0.009557270426835645,-0.019327023267803035,-0.042793237693502774,-0.19040348964013085,-0.08095783944474536,0.04889367441562414,-0.009832585959740842,-0.018584882205972326,-0.016486186075957136,-0.015638867292206367,-0.022320078467401975,-0.006763195158962826,-0.09811101552217297,-0.01886112482693827,0.22226821090378168,-0.14804977517515425,-0.1364681184645842,-0.172553075456906,-0.10086823380739546,-0.18536671967187682,-0.02596500604156645,-0.12812882100594783,-0.03449937140827955,-0.17092759604701233,-0.1280895164953136,-0.30375104624780574,-0.11745984699010371,-0.00185554903112155,-0.24315451764530327,0.11096776980910963,-0.12052053533178582,0.11457661870705299,-0.2972388508858955,-0.2650283453309172,-0.2959500932829001,0.05486568320434834,-0.2114969768784371,-0.20594610988397136,-0.2284261193056588,-0.09940947717125162,-0.21819812235785002,0.02673451682829368,-0.20836699182316618,-0.013797837460790548,-0.22000452224039607,-0.17790491414217613,-0.1725890744386865,-0.09418716934192352,0.030059044551798177,0.38231245754419757,0.178110884107874,-0.11755725190839694,0.1959262851600388,-0.10559481540795533,0.0194051684883447,-0.16406572243782477,0.3519438776009832,0.4463079028888408,0.42856296863513854,-0.15808881651668105,0.17073170731707316,0.13616802237031927,0.01809423825162585,-0.021709178923850308,0.19457784296562658,-0.14914471370109467,0.16663791097500244,-0.11537809569760221,0.16035098969187314,0.09978440437095101,0.08397961920421788,0.008651468210435113,10.462329970939534,16.608973233917883,6.120463943040977,13.997376519642408,30.52568144655912,37.35666718379612,39.610627293681844,39.76040624999999,39.76040624999999,38.822073445231,31.34521850722475,2.2545062858668867,5.222348652139362,0.0,7.476854938006248,2998.712119493898,2618.1722333545317,528.1933802036579,60.0,30.0,42.0,56.0,63.0,70.0,78.0,72.0,69.0,255.089543276,21.0,4.634728988229636,5.5093883366279774,6.405228458030842,7.300472814267799,8.204945165019208,9.10886120302633,10.017931686926996,10.926531829352124,11.83838730907139,0.6979166666666666,0.9958750000000001,1.1130712242347007,0.6641646199317293,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6965626684131737,0.9829656862745098,1.0133148215586307,0.669507550122125,7.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,9.67362704263206,0.0,0.0,5.783244946364939,0.0,9.589074368143644,0.0,0.0,0.0,30.33183534230805,18.553555759849232,17.802135892458033,11.611834041009853,199.6269147106945,-346.5264226087276,-35.472615642979605,-10.828950706522738,-28.877201884060646,254.9540589802148,442.56716643657757,22.487845429516337,13.830223951143049,22.128358321828873,0.5,0.7061355133211212,0.2769439445203693,77.72545835206007,0.1797796357462736,35.47853468490828,0.29386448667887877,5.0,0.14285714285714285,0.303350232674216,0.6692961913547295,0.822460175271458,0.9452819531114784,0.975,0.975,2.291,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,69.30030000000002,14.69560176298435,0.0,4.567099647791355,0.0,18.883484074999977,0.0,59.415876960625184,0.0,0.0,3.7612001156935624,0.0,5.093750200806762,3.044522437723423,6.621405651764134,5.41610040220442,8.239329427901795,7.5352967024440884,9.908126774684552,22.333333333333332,12.515476510405712,0.0,0.0,0.0,0.0,0.0,1.9295427059712782,1.8275,31.868000000000002,0.0,23.49054488270668,0.0,0.0,0.0,0.0,0.0,-0.881065864617451,35.61827917551042,0.0,0.0,0.0,21.42617727694885,11.339293589984397,0.0,34.084572334553144,42.46456947923127,0.0,0.0,0.0,21.253267837815336,22.29000538922156,24.59565325085067,151.12333897032633,,118.43911762322931,117.16037415448827,117.23965829396724,118.45356176747387,146.018869935738,117.94807189399546,118.51099118205892,134.96145493101443,24.59565325085067,151.12333897032636,,117.64024544277821,116.22733308275352,116.57339058698972,117.65698031651439,148.56546776125964,117.10939299816349,117.71848035605515,135.998928868458,4.8062036336080665,113.05668951688523,,89.3353319681114,88.30580151303882,88.03717756973188,89.34597438370506,109.40622911212178,88.92461746979627,89.39479257694256,101.97551190291912,1.2945080658342458,7.953859945806649,,6.233637769643647,6.166335481815172,6.170508331261433,6.234397987761783,7.685203680828316,6.207793257578708,6.2374205885294165,7.103234470053391,2.502834373487935,75.56166948516312,,59.26655129281765,58.63507184616971,58.65902136504112,59.273638616146314,72.40020157503015,59.023369999693735,59.30211387491204,67.24131040302024,31.454901960784312,0.0,0.0,0.0,0.0,0.0,9.126647546376983,32.42607428987618,1.146610371000252,0.0,0.0,0.0,-0.48858948517678713,0.0,0.0,0.0,0.0,21.424241603908,320.99576920324535,48.53603722787456,107.08739061675672,131.59362804343328,151.24511249783654,156.0,156.0,580.0,113.94647579055231,133.58520448766396,68.61973171322273,59.3,59.3,1.0,8.034352518768989,5.392317422778761,3.723084499716463,4.292471733841149,,4.2940202916128545,4.293738824746303,4.291602525843829,4.294017065759476,4.281673112081064,4.293824147359614,4.294044166293519,4.290786465953849,0.19595181577455068,0.22591956493900783,,0.2260010679796239,0.22598625393401592,0.22587381714967522,0.22600089819786717,0.22535121642531916,0.22599074459787444,0.22600232454176417,0.22583086662914992,1.9564063774791838,2.0987166149294088,,2.0990773111913756,2.0990117604783576,2.098514098507953,2.0990765599479326,2.096197733416746,2.099031631683632,2.099082871159115,2.098323927707441,187.1199999999997,148.60549669873166,99.16032990385196,,98.7264674242553,98.74937146227805,99.0041081547267,98.72697102545325,99.74031814450906,98.74628893316996,98.72412588437369,99.00335550011637,7.821341931512192,5.218964731781682,,5.196129864434489,5.197335340119897,5.2107425344593,5.196156369760698,5.249490428658372,5.197173101745787,5.196006625493352,5.210702921058757,5.643149007669196,5.238591920319045,,5.234206956990079,5.234438924994413,5.237015231958419,5.234212057951621,5.244423876023695,5.234407708823869,5.234183239260569,5.237007629673168,1.8275,23.49054488270668,9.126647546376983,1.9295427059712782,-1.369655349794238,12.515476510405712,0.5561273305618544,0.5904830404383976,0.0,228.03908928037484,90.74659726409962,-157.52431859910294,-16.12517615834905,-4.922634956221967,-13.127026549925251,115.89726437767557,201.18261344236615,10.2225466715602,6.286956670073942,10.059130672118306,693.0,29.0,1.2367811436816927,0.5072733331177478,0.0,0.0,0.4775418951513972,0.12434680306471568,0.0,0.0,0.0,0.0,0.0,0.0,0.19245008972987526,0.10181752206178679,0.46036705832614233,0.20039532480959749,0.7178946118008953,0.25402042542343406,13.405412915006313,10.243939487817746,9.181540550352057,6.202262214430046,8.311342769071004,4.669725472796264,7.241547467930967,3.579547727414206,6.179336503312702,2.628900898823426,4.443174798443605,1.5842759854208326,3.031836361311195,0.9285710411208006,2.211805718634572,0.5667754937571823,3.3665764036635943,1.239942939874114,5.526663742998665,1.8069812884857086,8.02514972116889,2.1230842113048918,61.75644010971039,39.594658105064305,26.526613555632345,21.804229296672176,21.3125,21.3125,102.0,123.0,37.224308999999984,16.487690999999998,0.46875,99.04,6.027777777777778,4.166666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,11.0,11.0,32.0,0.0,0.0,34.0,11.0,2.0,7.0,27.0,13.0,21.0,21.0,0.0,0.0,0.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,3.0,1.0,2.0,19.0,4.0,0.0,1.0,3.0,0.0,3.0,3.0,0.0,0.0,0.0,1.0,2.0,3.3843902633457743,6.548733834162281,3.965563772356176,4.55519181618185,5.111611211436258,5.469904430947844,5.708977291533305,6.0390635259072605,6.164892506176259,6.39562672343573 +12560,CC[C@H]1OC(=O)[C@H](C)[C@@H](O[C@H]2C[C@@](C)(OC)[C@@H](O)[C@H](C)O2)[C@H](C)[C@@H](O[C@@H]2O[C@H](C)C[C@H](N(C)C)[C@H]2O)[C@](C)(O)C[C@@H](C)C(=O)[C@H](C)[C@@H](O)[C@]1(C)O,0,19.322033898305083,6.1373296610169525,2.8559322033898304,5.779661016949152,166.9744121965862,75.67482056779656,1.2080509883464663,6.169075423728816,4.410251883239171,7.736526474576271,176.34856368945637,21.383333333333333,6.354375000000001,3.575,4.991666666666666,147.9553549920462,78.82743490833336,1.5760662262499998,6.476345833333331,2.8186342592592597,7.828008233333333,228.06378337637895,18.06086956521739,6.274991304347825,3.3,3.9260869565217393,158.021019895749,66.01187150434782,1.2922251762108996,6.350768695652174,2.6843599033816417,7.826844939130435,185.2813834417356,16.948795180722893,6.415111445783133,2.8644578313253013,3.3644578313253013,159.10654114195242,60.204347822289144,1.2125831661848074,6.473546084337348,3.258617804551539,7.980678060240964,172.0505052414725,13.98434004474273,6.258897091722596,2.48993288590604,2.615212527964206,163.47470247922897,48.21686942058165,1.092600060981879,6.301570246085012,2.9899328859060414,7.877502451901566,149.3570808537054,13.238188976377952,6.093301181102361,2.3877952755905514,2.3326771653543306,162.4444142016826,45.451100789370074,1.0807215611521186,6.147616338582678,2.9176782589676296,7.715841661417324,144.26383682574092,12.414802065404475,6.096977624784854,2.359724612736661,2.3390705679862305,166.10446567351912,42.51298442685026,1.0241651013802309,6.133424268502581,2.7926348250143427,7.750221012048193,136.56767336402973,13.68411867364747,6.0619528795811535,2.432809773123909,2.4554973821989527,160.81306871807362,47.34387450436301,1.1256618009221115,6.125777835951134,2.8133241225518715,7.671098827225132,150.19325320587438,11.71976401179941,6.046216814159292,2.144542772861357,2.0693215339233038,166.19375049878417,39.42927248230088,0.9923795179532298,6.083899410029499,2.792895771878073,7.698377775811211,129.2698349083039,7.8310830221200805,0.1609621732260843,0.020981925771703606,0.7064780235564495,3.848032174662455,1.1988512574472583,36.98884527556735,0.2082013047311861,0.14953792731973564,1.7327760421654066,0.10572889887963227,47.041271666047045,0.21891697787991984,-0.006850499497270777,-0.009758968170715369,0.3243129368955281,1.3060638705352863,-0.16401503050043373,1.0403553811416804,-0.015915362484378113,-0.00416072392990508,-0.25820957951631607,-0.007308413851383606,-0.6360846252965807,1.2246281053670234,0.00860270886676751,-0.001521667757542899,-0.03886564330589668,0.31047924759252105,0.05866186472851818,5.808273347387686,0.01143992668216199,0.01098135049898212,0.009476577993441256,0.00255182875485564,6.1288206520590975,-0.3431822665554488,-0.0005961225828333418,0.0017139473125009509,-0.0644522935176501,-0.25486288734368673,-0.10356645763387597,-1.680009626113615,-0.019453829489192394,-0.0009400995680508778,0.025044080131692195,-0.00017049118104114973,-3.8215795230440452,-0.5816612650200158,-0.012213663386475664,-0.0007214675907036967,-0.04098680147325818,-0.33155699171019154,0.05762088234367077,-2.6914855810123264,0.006018386767854381,-0.012185115732127076,-0.13407200668298908,-0.006912739095003948,-0.8040333587429845,-0.28754238419134676,-0.0024331694892633844,3.798127908022402e-05,0.017731238421396678,-0.09396170889440313,-0.12014937666352767,-1.411433131049147,-0.0213958892596983,-0.002128360056957078,0.04741185542790344,-0.0019055719745208121,-3.67495237472397,0.13609805084004095,-0.0060994555272017165,5.6957850819569776e-05,0.014984096108651772,-0.09494719552070473,0.1807749845050966,0.7594623780106263,0.03192373382208436,-0.005672785396108963,-0.05369075428263991,-0.0034007690041982916,4.994664620221562,-0.1924578853140935,0.0026526151313563356,-7.36401177940405e-05,-0.061670735125059356,0.013889912479262925,-0.17237418315812272,-0.9975109818560025,-0.027580468784014118,0.0025001742568608815,-0.0011311535328741382,0.0011685803998068975,-4.483505561212592,-0.1581166704376647,0.0008014948405122362,-3.7260294977150066e-05,-0.032949199997627236,-0.0578466839369896,0.02208054787703762,-0.7570271759348473,0.0005655262819750416,9.942706254519719e-05,0.02810726783576075,0.0014727489879743608,-0.622569729908977,,,0.4555555555555555,0.6862745098039216,0.058823529411764705,0.0,0.6274509803921569,-0.5686274509803921,2.0974735868200454,0.03899401503433694,0.044052838563748704,0.8135974539527145,0.11206499700736516,0.34725890094600564,2.91107104077276,0.4593238979533708,1.9599456373805828,1.4441309518562182,0.03948201450636419,0.47633267101800125,0.0,0.5158146855243654,6.215773230542389,2280.0,724.2049000000004,337.0,682.0,19702.980639197172,8929.628826999993,142.55001662488303,727.9509000000003,520.4097222222222,912.910124,20809.130515355853,2566.0,762.5250000000001,429.0,599.0,17754.642599045546,9459.292189000003,189.12794714999998,777.1614999999997,338.23611111111114,939.3609879999999,27367.654005165474,4154.0,1443.2479999999998,759.0,903.0,36344.834576022266,15182.730446,297.2117905285069,1460.6768,617.4027777777776,1800.174336,42614.71819159919,5627.0,2129.817,951.0,1117.0,52823.3716591282,19987.843476999995,402.57761117335605,2149.2172999999993,1081.8611111111109,2649.585116,57120.76774016887,6251.0,2797.7270000000003,1113.0,1169.0,73073.19200821535,21552.940630999998,488.3922272588999,2816.8019000000004,1336.5000000000005,3521.243596,66762.61514160632,6725.0,3095.3969999999995,1213.0,1185.0,82521.76241445476,23089.159201,549.0065530652762,3122.9891000000002,1482.1805555555559,3919.6475640000003,73286.0291074764,7213.0,3542.344,1371.0,1359.0,96506.6945563146,24700.043952,595.0399239019141,3563.5194999999994,1622.520833333333,4502.8784080000005,79345.81822450127,7841.0,3473.4990000000007,1394.0,1407.0,92145.88837545618,27128.040091000003,645.00421192837,3510.0707,1612.0347222222224,4395.539628,86060.73408696603,7946.0,4099.335,1454.0,1403.0,112679.36283817566,26733.046742999995,672.8333131722898,4124.8838000000005,1893.5833333333335,5219.500132000001,87644.94806783005,924.0677966101695,18.993536440677946,2.4758672410610254,83.36440677966104,454.0677966101697,141.46444837877647,4364.683742516947,24.56775395827996,17.645475423728804,204.46757297551798,12.476010067796608,5550.870056593551,26.27003734559038,-0.8220599396724932,-1.1710761804858443,38.91755242746337,156.72766446423435,-19.681803660052047,124.84264573700163,-1.9098434981253734,-0.4992868715886096,-30.98514954195793,-0.8770096621660327,-76.33015503558968,281.6644642344154,1.9786230393565274,-0.3499835842348668,-8.939097960356237,71.41022694627983,13.49222888755918,1335.9028698991679,2.6311831368972576,2.5257106147658877,2.179612938491489,0.5869206136167973,1409.6287499735924,-113.93651249640901,-0.19791269750066948,0.5690305077503157,-21.39816144785983,-84.614478598104,-34.38406393444682,-557.7631958697202,-6.458671390411875,-0.31211305659289146,8.314634603721808,-0.05660307210566171,-1268.764401650623,-260.00258546394707,-5.459507533754621,-0.32249601304455244,-18.321100258546405,-148.2059752944556,25.756534407620833,-1203.09405471251,2.6902188852309084,-5.446746732260803,-59.93018698729611,-3.0899943754667647,-359.40291135811407,-146.07153116920415,-1.2360501005457993,0.019294489772753803,9.007469118069512,-47.73254811835679,-61.03588334507205,-717.0080305729667,-10.869111743926736,-1.0812069089341956,24.085222557374948,-0.9680305630565725,-1866.8758063597768,79.07296753806379,-3.543783661304197,0.03309251132617004,8.70575983912668,-55.164320597529446,105.03026599746113,441.2476416241739,18.547689350631014,-3.2958883151393077,-31.19432823821379,-1.9758467914392075,2901.9001443487277,-110.27836828497557,1.5199484702671804,-0.04219578749598521,-35.33733122665901,7.958919850617656,-98.77040694960432,-571.5737926034894,-15.80360861324009,1.432599849181285,-0.6481509743368812,0.6695965690893523,-2569.0486865748153,-107.20310255673667,0.5434135018672962,-0.025262479994507744,-22.339557598391266,-39.22005170927895,14.970611460631504,-513.2644252838264,0.3834268191790782,0.0674115484056437,19.05672759264579,0.9985238138466166,-422.1022768782864,0.7639876991623281,0.6458421384176712,0.4419909206721116,0.3489456125616403,0.28609082040838446,0.20087626817556994,0.1837657260917492,0.11048180410408977,0.11306997037836794,0.0657057309270869,0.06934179571300002,0.032723756446399396,0.041379624480039595,0.018647910906133526,0.02590553314586634,0.00993078069666831,8.03284526084737,5.773123266858296,3.5579590822640785,2.2695174287774966,0.43635178173358874,-0.49037888632176385,4.029162692717843,0.977235264893461,6.029875458639935,0.9874854620857779,14.544562712809185,11.034004478460465,16.020287947842323,11.786066616804469,1.9276952186467686,0.7412588190470861,3.504014614693171,2.3186851371547657,7.009378210283507,1.1176931475158605,3.716927737667473,2.5148334097493534,20.82645283878806,14.70027211101151,0.20159326119600413,0.4003704070287131,0.6725766024405051,0.844988151348759,0.8979140295680625,0.8979140295680625,2.1730119263557075,1167.2981664566057,0.0,1.0,12.0,0.0,1.0,13.0,0.0,7.0,0.0,5.485453106989628,4.107780920512689,2.221191278456243,1.026252119010758,0.6594367587129248,0.6594367587129248,456.1273073845799,5092.405188214191,78.63894875450254,43.155976171306705,87.15393328853963,,14.0,1197.0,107.53514502482197,35.12171134234717,31.40827208567429,6.4208216229260096,0.0,27.881009140349406,41.54242319814374,25.918990895895483,0.0,28.421177722800294,23.23333333333333,35.0,3.0,0.0,32.0,0.0,0.044444444444444495,-29.0,0.12382171159898425,0.0,-0.12382171159898425,0.0538632119514475,0.2096584659913172,0.0,0.5607344632768347,0.9032679738562096,0.4369127516778505,0.5607344632768347,0.8494047619047621,106.97115292782232,1.988694766751184,2.246694766751184,41.49347015158844,5.715314847375623,17.71020394824629,148.46462307941076,23.42551879562191,0.5043415340086828,0.3802008608321377,0.06456241032998566,0.38307030129124825,0.9459459459459459,0.2528751101029481,-1.3953702134277826,-0.046164652927698065,-0.011825171300235447,-0.04811621425613043,0.7471248898970516,4.1226509665124365,0.03904682745486549,0.034937720055190136,0.046321920972049846,-2.411123958127022,0.9886449926632429,0.8727859238733895,1.4644357813079576,1.1578682525160107,0.6173362262038071,1.642838241626462,0.9989586208021968,1.543384466393246,0.8579216278662882,0.9384638056502101,0.9134381254962117,1.3265028046406495,0.8796926536731635,0.9610669542453962,1.155366334557516,1.7604479096224985,1.082217245240761,1.19523130781879,0.8819809160370132,1.1453831695640433,0.9339077653628197,0.7660497685629408,0.9996056398092887,1.0001391372777024,1.1362851534531377,1.2400264544816768,1.238734075333996,1.4584320814823795,1.293010564092877,1.2683664809553348,1.1355380971715818,1.245531490146775,1.2207154952661807,1.1107308138397705,1.2764417646900326,1.1696416379133605,1.1449085859754686,1.3001810193483028,1.3050843322559234,1.2260797304792954,1.2736545240009913,1.0084491358782977,1.1395668029902348,1.0129553639016566,1.287567343689173,1.274617804456216,1.320551718649137,1.0326530896501518,1.0504233619389838,1.0435338822131521,1.1052568909215517,1.049844752937447,1.0578196779853801,1.1717754213631741,1.0522934354103166,1.1752751319675516,1.0381508134782385,1.004103445355472,1.059963200034001,1.1214810200100627,1.01727118094009,1.180611969847585,1.0750222001373038,1.0713285766251515,1.1697188690773326,0.8237938414543521,1.0108707012693505,0.8263782144991912,1.1702172665432318,1.1470484285041127,1.1951306383250673,0.8714277302770884,1.018215900404482,0.9227697701944603,1.002284039013567,1.2773352238343638,0.9742473455556008,1.263013138338565,1.0235162933942428,1.2513480734981268,0.9233277025119451,1.0231085272237996,0.9342880955146965,1.17287230332424,1.034388533232913,1.065704213503317,1.047698743575371,1.02362715807485,1.0831293541705889,0.9651732670790415,1.0329139950672033,0.9746422433072198,1.0645121891874199,1.0171765847977443,1.0636726124077762,0.9923178529685647,17.0,1.036628915416794,10.222222222222225,7.0625,5.200000000000001,3.3680555555555554,2.755102040816326,2.4913194444444446,1.7011841773746532,1.1993750000000003,13044.4765635061,15579.070939625526,4907.991491105122,4221.701756478989,16.006733735487234,0.47520717016173036,8.400219093514043,0.9055138392576351,0.0,0.9459459459459459,1.3971899423722132,2.7748621288491524,4.6614517709055985,5.8563909303510835,6.223206290648917,6.223206290648917,0.32075471698113206,0.0100643584021048,0.12466124661246618,0.06992574257425743,0.04859813084112151,0.02980580137659783,0.02221856484529295,0.018454218106995886,0.013395151002950027,0.010805180180180186,0.6686831109230988,45.38981844072624,17.853955978584175,10.062014149707398,303.594991693832,0.0,4.83879059255852,356.91335811795244,,317.01403903174463,311.3541675302353,327.18127239853834,317.1243468638467,499.893555235918,315.5378855042628,317.26216868200464,410.1494652972884,0.027954878943507008,-0.042559685670053055,-0.4651130824166956,0.45905594524075755,0.33941084981958414,-0.13681015845925268,0.028126192461295295,-0.07644218418768718,-0.027823870535591932,-0.14901497552657644,-0.06912408933440152,-0.013521841624780886,0.15638042680787265,0.05344553129687381,-0.07252278814154574,-0.05501323751055254,0.08068520051284549,0.04893172890641016,0.15702770130064833,0.05494646970119792,0.07343521938419184,0.005469014900274484,0.0241355843283754,0.1302860325623955,-0.043823091338206804,-0.003703494870164556,0.08168684472291833,-0.09123042949474024,-0.06623200528879232,-0.08638807941395701,-0.04541935855519476,-0.09343759643730244,-0.006286696525094914,0.01445315466180802,-0.0016125315107579667,-0.08123886510071421,-0.07427596711425807,-0.0758790909794725,-0.03438519412153644,-0.058015677921484876,-0.08616273894312625,0.04806341235889785,-0.07276479059999647,0.02890657566063225,-0.08148511852831408,-0.07737411149535671,-0.06538173733251303,-0.017092083829088136,-0.03671808655062649,-0.015116405553532148,0.001810190327307605,0.025098075000460227,-0.024418119347623526,-0.10022042010396229,-0.0381583453209732,-0.10276539470933224,-0.014232911309559006,0.02736179071858244,-0.018023189446910087,-0.0781218756332312,0.017379211847915722,-0.03789372002721746,0.0027146150186263453,0.021209571436095073,-0.024674220799370886,0.15079016965793152,0.020532200244495938,0.15333109397802236,-0.03793542880917197,-0.03098539740631682,-0.03216499027451254,0.10617622447963196,-0.024576151826058674,0.01647974227851984,-0.0035096929898280438,-0.08729321092623017,0.0036096144337673924,-0.1437827938097701,-0.02696788651888248,-0.13247020146979363,0.016719332022805927,-0.0006527984605907664,0.011052611085425898,-0.09531004163836519,-0.020190907182447208,0.004979398727342432,-0.0017758281762391705,-0.046638676503706566,-0.015032796325842531,0.018418087931987695,-0.020466364123967254,0.002716247540836532,0.0006648952832722262,0.01622094670736318,0.013929483836306865,-0.013234542941965763,0.7220329629736978,13.184668863039423,28.25890456366055,13.194797412174996,28.12298690298636,37.43551223201052,41.333659827761586,41.957494456704524,41.957494456704524,99.95722750640972,73.65067854466713,2.0135827398245736,24.292966221918064,0.0,26.306548961742635,18380.232610717598,10344.186068581996,9756.170959332398,261.0,82.0,107.0,128.0,150.0,165.0,187.0,209.0,240.0,733.4612412040019,53.0,5.602118820879701,6.47543271670409,7.394493107219038,8.284756593190435,9.202005735186125,10.097861190354225,11.014275417134371,11.913009454125913,12.828987794303929,0.5649717514124296,0.9778644067796611,1.1434318673509771,0.5178424015274135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5987573886126053,0.9621468926553673,1.005968619995803,0.5525557911041963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,13.0,0.0,0.0,0.0,5.0,4.0,0.0,6.0,0.0,15.0,1.0,3.0,0.0,0.0,58.85372442785429,29.696194920593534,12.580053458670426,0.0,0.0,9.589074368143644,0.0,0.0,0.0,27.694948798762496,74.90023203227615,37.32617813183568,47.639839606870275,233.37034793194448,-1287.7425226584878,-42.60388106804331,-10.91307222591939,-44.40491457443061,689.4976553165244,3804.6626655557034,36.03506768645922,32.24290394538731,42.74901871410903,0.42857142857142855,0.8074806911081491,0.08317050011316873,0.0,0.056394930381092306,8.377845312562224,0.19251930889185065,8.0,0.1320754716981132,0.20300194741346647,0.4031681011129057,0.6772764092913126,0.8508927294862528,0.9041884412741602,0.9041884412741602,1.785600000000004,,3.392857142857143,3.899953466728711,2.4759940018755637,3.382952706765206,-14.588007254590794,3.5245563035495717,3.3706953959582804,-5.506252842997762,186.25799999999953,63.542889065147456,0.0,4.899909730850478,23.671624184645573,179.17743631136617,21.205141506631914,0.0,0.0,0.0,4.672828834461906,0.0,6.075346031088684,0.0,7.6577552711348655,0.0,9.319643106866632,0.0,11.023323027655763,66.6666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.38800000000002,0.0,27.875865360640084,0.0,0.0,0.0,0.0,0.0,-1.172478335598408,134.9249603474153,0.0,0.0,0.0,147.64701626875856,38.010252090943936,23.671624184645573,94.92065848861026,0.0,0.0,0.0,0.0,61.10540338023478,70.65337185628742,61.428715419622456,713.8267162359049,,633.9501244389221,622.6262087365088,654.2880541417874,634.1708114157855,1002.2074620473452,630.995945721986,634.4466771252585,820.5148620786159,61.428715419622456,713.8267162359047,,630.9668361872402,619.2241333543459,652.0717912423447,631.195739548351,1014.3751177264267,627.9023822563157,631.4819470095388,825.8051834375747,4.9738934067160825,460.30472052676043,,409.82997446262505,402.7164409409627,422.89929580698714,409.96952677957813,657.6966682613721,407.984224394696,410.14110967064147,532.1756861152016,1.2044846160710285,13.99660227913539,,12.43039459684161,12.208357034049193,12.82917753219191,12.434721792466382,19.65112670681069,12.37246952396051,12.440130924024675,16.088526707423842,2.486946703358041,356.91335811795244,,317.01403903174463,311.3541675302353,327.18127239853834,317.1243468638467,499.893555235918,315.5378855042628,317.26216868200464,410.1494652972884,113.53333333333335,0.0,21.507560723584067,0.0,0.0,0.0,57.610189695505454,118.70429715950473,0.6291158107582999,0.0,37.053620667495466,0.0,-14.464832661951212,1.8833461962276552,-4.839054123328079,0.0,0.0,65.20158335029517,745.1980930646714,164.86841319992115,327.4337312042,550.0513089668606,691.0541297814278,734.3383422965721,734.3383422965721,1633.0,186.81294082909784,177.66991018379744,89.74889627120785,193.91,193.91,0.75,7.4673710669175595,6.727920454563199,6.29492610819608,7.046450208832706,,7.05112945171492,7.052190660208192,7.05186043529406,7.05111741895603,7.020551725736612,7.051550772556408,7.051067679312752,7.035065027506323,0.12342992369011921,0.13816569036926873,,0.13825744022970432,0.13827824823937632,0.13827177324106,0.1382572042932555,0.1376578769752277,0.13826570142267466,0.13825622900613238,0.13794245151973183,3.4689844689839218,3.5817645132698375,,3.58242834963987,3.58257884023171,3.582532013272284,3.5824266431374947,3.5780823480894735,3.5824881001035993,3.5824195889621406,3.5801474736805394,577.3000000000028,446.60693530673785,408.9707474164327,,407.61405523933917,407.42378636414304,407.45080117153225,407.6161566864374,412.6547361424485,407.5385892300158,407.6250583742559,410.34699462778156,8.756998731504664,8.019034263067308,,7.992432455673317,7.988701693414569,7.98923139552024,7.992473660518381,8.091269336126441,7.99095273000031,7.992648203416782,8.046019502505521,7.7309194081396715,7.642884171006036,,7.6395613234071424,7.639094427592149,7.63916073180095,7.6395664788762785,7.651851793086966,7.639376165424644,7.639588317045533,7.646243669855169,37.053620667495466,29.75921155686774,57.610189695505454,-4.839054123328079,-4.976776577237158,-0.32375479730260404,-9.707663812251559,16.331179639911554,5.176381083672508,731.4353284588497,215.3700270133541,-1188.4163705839853,-39.317758651900384,-10.071325174440553,-40.97987484772362,636.315324406462,3511.20143719539,33.25561096272605,29.755944383011773,39.45170154152124,8842.0,101.0,6.293590343403253,3.7327675130590787,0.5151283791960046,0.24915602550085397,2.4070786445959884,0.8609861201071598,0.34622504486493766,0.0837947314097778,0.0,0.0,0.0,0.0,0.0,0.0,0.10366807798802437,0.05985279273275698,0.3948487851733933,0.16451696651629477,38.96337265727873,32.93794905930123,23.425518795621915,18.494117465766937,23.459447273487527,16.471853990396735,19.662932691817165,11.821553039137605,14.472956208431096,8.410333558667123,10.401269356950003,4.90856346695991,6.8276380392065334,3.0769052995120316,4.844334698277006,1.8570559902769739,14.477264545776809,7.013990188507063,21.59268060627122,9.83211692547891,32.325625146515925,12.092319265496291,184.4034554233756,92.84602234807814,51.77226700360384,31.789292123419035,27.639609117570792,27.639609117570792,270.0,324.0,117.99113099999995,81.07686900000014,0.23728813559322035,259.14,24.6875,11.01388888888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,118.0,0.0,1.0,120.0,0.0,2.0,2.0,118.0,2.0,53.0,118.0,0.0,0.0,0.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,67.0,14.0,5.0,3.0,51.0,14.0,0.0,1.0,13.0,0.0,3.0,7.0,0.0,0.0,0.0,0.0,0.0,4.02535169073515,5.652489180268651,4.465908118654584,4.74493212836325,4.912654885736052,5.099866427824199,5.170483995038151,5.303304908059076,5.424950017481403,5.564520407322694 +2450,O=[N+]([O-])C(Br)(CO)CO,0,109.6,7.581500000000002,2.933333333333333,11.671147690900776,172.1666704583663,536.2404010666668,1.6079795619395996,7.592340000000002,13.398273891175126,9.126852866666667,217.95592770947076,40.857142857142854,7.386785714285713,3.7142857142857144,7.502645502645502,159.69082661670717,166.40711164285713,1.605363800857143,7.45287142857143,4.8688822751322745,8.82239385714286,242.9428475189844,48.30434782608695,7.149643478260872,2.869565217391304,6.785829307568438,161.7391356514347,203.6180900869565,1.5528272875520865,7.244978260869567,5.911701556629095,8.719862695652177,220.73061783759638,57.6,7.194600000000002,1.9333333333333333,3.9320987654320994,168.36678025043983,239.00240799999992,1.3037773759798668,7.3365599999999995,4.505864197530864,8.888786399999999,186.2649606634191,19.11111111111111,7.762,1.2222222222222223,5.7407407407407405,181.9246031677221,62.62840433333336,0.7101169619035554,7.665333333333335,11.572702331961592,9.435804000000003,107.0219061531787,5.2,6.556000000000002,1.0,0.0,185.07762682738962,10.0826208,0.4987059535396,6.4768,4.6,8.370086400000002,61.641676147652184,1.0,4.840000000000001,1.0,0.0,184.91765202424898,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,,,,,,,,,,,,,,,,,,,,,,,66.91555555555556,0.28789955555555546,0.045337620828442705,0.7822222222222224,6.145746075293401,1.0948185970819815,358.48395598222226,0.4171518354393154,0.26268622222222204,6.293745618046031,0.19910726222222225,46.9540225957162,-1.3917460317460315,-0.009311460317460354,-0.01104916529942268,0.20825396825396833,0.05612210682169505,0.19033096601540983,-6.38588523460318,0.05226092433569396,-0.014985269841269827,-0.9853138948766519,-0.012910781269841281,1.106652654253247,1.2264734299516906,-0.026458396135265648,-0.011911903057539124,-0.3358454106280191,0.37645427857630387,-0.2981097696025142,5.738523959806753,0.06178337473841197,-0.021425932367149757,0.2459772502866077,-0.02056114048309181,4.6659703754342505,-11.21777777777778,0.018028444444444475,-0.0012112068218936855,-0.21777777777777782,-0.18583447645176066,-0.374451611983555,-63.910082826666674,-0.24565033503111106,0.028564888888888862,-0.7410882487425695,0.014425204444444423,-14.06944216436898,-10.313086419753088,-0.03012350617283965,0.015197551100256659,0.114074074074074,-0.9673857304950126,0.15519566139192736,-50.97050771802466,0.016693790002743705,-0.043748197530864195,0.467100882318075,-0.01755227703703694,-9.656442040361313,7.377777777777777,-0.13985288888888867,-0.03296631703171492,0.21777777777777768,-2.9368206066148446,0.2754657100051089,41.039874364444465,0.14573041977777776,-0.12006888888888881,-3.2218914799573226,-0.09552551555555559,15.156922386318133,30.617777777777775,0.25066711111111195,0.044295423569026764,0.21777777777777768,5.525401615607378,0.2693601004007487,151.89412188444447,0.18016419760341779,0.2573871111111112,2.7736640755982314,0.15676320444444403,56.27235089523877,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5074074074074074,0.75,0.16666666666666666,0.0,0.5833333333333334,-0.4166666666666667,0.8591824167836193,0.03883528287104316,0.03883528287104316,0.4298368385436151,0.15088182836968056,0.30075106235628685,1.2890192553272344,0.4516328907259674,1.806780849182875,0.6483662268995385,0.21867638626671163,0.7500405902078838,0.1896976458087415,1.158414622283337,13.263201318133333,1644.0,113.72250000000003,44.0,175.06721536351165,2582.5000568754945,8043.6060160000025,24.119693429093992,113.88510000000002,200.97410836762688,136.902793,3269.3389156420612,572.0,103.41499999999998,52.0,105.03703703703704,2235.6715726339003,2329.6995629999997,22.475093212,104.34020000000002,68.16435185185185,123.51351400000003,3401.1998652657817,1111.0,164.44180000000006,66.0,156.07407407407408,3720.0001199829985,4683.216071999999,35.71502761369799,166.63450000000006,135.96913580246917,200.55684200000005,5076.804210264717,1728.0,215.83800000000005,58.0,117.96296296296298,5051.003407513195,7170.072239999998,39.113321279396004,220.09679999999997,135.17592592592592,266.663592,5587.948819902573,516.0,209.57399999999998,33.0,155.0,4911.9642855284965,1690.9669170000006,19.173157971395998,206.96400000000003,312.462962962963,254.76670800000005,2889.591466135825,52.0,65.56000000000002,10.0,0.0,1850.7762682738962,100.82620800000001,4.987059535396,64.768,46.0,83.70086400000001,616.4167614765219,1.0,4.840000000000001,1.0,0.0,184.91765202424898,1.016064,0.44461290484899996,4.840000000000001,1.0,6.718464,31.083744430930263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1003.7333333333333,4.318493333333332,0.6800643124266406,11.733333333333336,92.18619112940101,16.42227895622972,5377.259339733334,6.257277531589731,3.9402933333333308,94.40618427069046,2.9866089333333337,704.310338935743,-19.484444444444442,-0.13036044444444495,-0.15468831419191753,2.9155555555555566,0.7857094955037307,2.6646335242157377,-89.40239328444451,0.7316529406997154,-0.20979377777777758,-13.794394528273127,-0.18075093777777793,15.493137159545459,28.208888888888882,-0.6085431111111099,-0.27397377032339987,-7.72444444444444,8.658448407254989,-6.856524700857826,131.9860510755553,1.4210176189834753,-0.4927964444444444,5.657476756591977,-0.4729062311111117,107.31731863498777,-336.5333333333334,0.5408533333333343,-0.03633620465681057,-6.533333333333335,-5.57503429355282,-11.23354835950665,-1917.3024848000002,-7.369510050933331,0.8569466666666659,-22.232647462277086,0.4327561333333327,-422.0832649310694,-278.4533333333334,-0.8133346666666705,0.4103338797069298,3.079999999999998,-26.11941472336534,4.190282857582039,-1376.203708386666,0.45073233007408,-1.1812013333333333,12.611723822588026,-0.4739114799999974,-260.72393508975546,73.77777777777777,-1.3985288888888867,-0.32966317031714915,2.1777777777777767,-29.368206066148446,2.754657100051089,410.39874364444466,1.4573041977777776,-1.200688888888888,-32.21891479957323,-0.955255155555556,151.56922386318132,30.617777777777775,0.25066711111111195,0.044295423569026764,0.21777777777777768,5.525401615607378,0.2693601004007487,151.89412188444447,0.18016419760341779,0.2573871111111112,2.7736640755982314,0.15676320444444403,56.27235089523877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8323959812847469,0.6732016143300038,0.5080870020667134,0.3705811501273418,0.31962159325554756,0.2793824022862946,0.2507668268139802,0.1388975563411647,0.2132993161855452,0.034862230580701994,,,,,,,35.00041758582222,5.851722647474486,3.607520289958118,2.331393761328191,0.4756073161800279,-0.39502615814470204,4.023923270536865,0.9728167907026428,7.004113540993594,0.2560212099038358,14.59473267569045,11.106981124827875,79.90417834451404,11.866244391876636,3.0588756822726744,0.6692877932042555,3.5530012148275536,2.3844061977867512,8.001934361633642,1.002443728139996,3.756880199364812,2.5809325014725326,26.52388818911993,14.651560651299198,0.517695520861511,0.761105843510839,0.761105843510839,0.761105843510839,0.761105843510839,0.761105843510839,3.9192108505307974,112.38037532843026,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.8843108337660275,0.9333333333333331,0.9333333333333331,0.9333333333333331,0.9333333333333331,0.9333333333333331,49.382623633681746,385.00809057305503,53.19434387875144,25.66720603820367,60.51473448432898,,4.0,48.0,22.585268254362273,10.114318268765572,0.0,0.0,0.0,0.0,0.0,0.0,15.929943897949348,10.213054789681411,4.566666666666666,6.75,1.5,0.0,5.25,0.007407407407407381,0.0,-3.75,0.3514176245210728,0.0,-0.3514176245210728,0.14410774410774385,0.249593220338983,0.0,0.7755555555555559,1.0925925925925926,0.4241379310344831,0.7755555555555559,0.9484848484848487,7.732641751052574,0.34951754583938843,0.34951754583938843,3.8685315468925356,1.357936455327125,2.7067595612065816,11.60117329794511,4.0646960165337065,0.46440677966101696,0.5839416058394161,0.10948905109489052,0.08759124087591241,1.0,0.41654633184733014,-0.5420438693343288,-0.1283526305328456,-0.03613625795562192,-0.1355109673335822,0.58345366815267,0.7592372316909355,0.05143786235739043,0.05061581544606237,0.06902156651735777,-0.45279405022347885,0.5230472901168969,0.7516857731245775,1.246164734336288,1.363636363636363,0.6453956923028086,1.3910619154767834,0.5194943860822848,0.6373390795619389,0.7458327975582194,0.849459500235692,0.8114743356422913,0.8504782160636737,0.8581007716120685,0.8579612642680936,1.2591709388856278,2.1269762845849796,0.7132891771713166,1.565769829313596,0.863601735470668,0.8456605821677143,0.8401073943439217,0.7295376318842689,0.8968603053800098,0.8909962327079629,1.8271785334750266,0.7247851874264791,0.7196623993623505,1.0340909090909087,0.854532387089606,1.3795811774787599,1.8545726983220452,2.0293203847415078,0.7024350132985026,0.8848548909852489,0.7258977818633724,1.4159443505657192,0.7805673633250678,1.3542017226172502,0.7237630161376021,0.22095959595959588,1.3784265071693547,0.30088920715338174,0.7582135241728104,0.5786941838368888,1.3990140985931487,1.2396320024046967,1.3101491103724356,0.9313284090502593,0.20503453772582358,1.6436287964629641,1.7461288708336795,0.0,1.6705321926559635,9.831916082436277e-05,0.17552925766954133,0.012270499043422369,1.6389439703304662,1.6312490668877841,1.5860612841310722,0.4976194061496819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,3.5,0.0,2.000000000000001,0.625,0.0,0.0,0.0,0.0,0.0,0.0,2288.881994966866,2476.3714545622797,997.9396330468294,925.9499970036647,5.660526725117041,0.4337955232303589,3.2050155726354643,0.7661464029837537,0.0,1.0,2.022579761842491,2.9735572622751856,2.9735572622751856,2.9735572622751856,2.9735572622751856,2.9735572622751856,0.4375,0.0,0.1818181818181819,0.052083333333333336,0.0,0.0,0.0,0.0,0.0,0.0,0.6714015151515152,9.0,3.239669421487603,2.0,59.57812608915594,1.0,3.0409706749043055,19.856285722555928,,15.247461138233486,15.916512905979747,16.40550734194314,15.226055439879053,30.58739427106253,16.12874810307268,16.29608013393657,23.709828235171656,-0.02079854258387733,-0.032342739465131054,-0.24370853824096017,0.26623376623376627,0.009131862288829718,0.17384703413213723,-0.017813587269495165,0.12528034134299415,-0.05704627260044452,-0.15655445178010777,-0.06484334687617596,0.02356885721553091,0.01832867439818879,-0.09190148308568688,-0.2627377184747673,-0.4293478260869561,0.061254447216700494,-0.27229147403694615,0.01600775673233012,0.1481076420851559,-0.08156473600288132,0.03908280779275828,-0.10326665262537568,0.09937317651374017,-0.1676408076514347,0.0626206053345767,-0.02671527088897949,-0.27840909090909094,-0.030237903449808385,-0.3420216033793912,-0.17827878140754524,-0.5888751149144751,0.10874148117568232,-0.11774995268598881,0.07244941386590184,-0.29964295680286596,-0.15412091155980637,-0.10463199956912324,0.3352083947625771,0.1458333333333332,-0.15740737066635627,0.14175468137422048,-0.1421835116117508,0.040018498264937426,-0.166541652473326,0.07421667646985264,-0.08815488114866933,-0.20565739646004919,0.11025504782146651,-0.48576972833117665,-0.727129400028715,0.2784090909090907,-0.47786234098105645,0.2516085411220702,0.11448176042355349,0.3493462269542805,-0.45708102950034174,-0.5119195587948783,-0.47976911785839443,0.3228034904873296,0.45755844845908605,0.870675575123426,0.977012528660037,0.2784090909090907,0.8990611632687074,0.24603171805692178,0.4237124684374358,0.4318911779776334,0.9798272209852407,0.4407016495304983,0.7873304202710681,1.198456442800552,,,,,,,,,,,,,,,,,,,,,,,,,0.4999999999999999,,,38.706295296113964,47.68208242897043,47.68208242897043,47.68208242897043,47.68208242897043,47.68208242897043,16.261027642645875,5.835296042095846,1.9680874764004046,6.750365311870954,1.7072788122786735,10.425731600550032,601.4456890409377,530.4019738270349,377.8041734507546,0.0,11.0,12.0,5.0,0.0,0.0,0.0,0.0,0.0,198.948019772,8.0,3.6635616461296463,4.442651256490317,5.262690188904886,6.07073772800249,6.890609120147166,7.7039102096163115,8.523374050491318,9.337941716569905,10.15716030888516,1.0888888888888888,1.080266666666667,1.1615537655894308,1.11002691976799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6534434331337324,1.0616993464052291,1.0881039087157076,0.6354261754528802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,10.213054789681411,13.213763929025836,0.0,0.0,0.0,10.114318268765572,0.0,0.0,0.0,0.0,0.0,20.85325494676702,0.0,123.24293938749601,-160.3737078597507,-37.97550057596684,-10.69158052398338,-40.09342696493768,172.62556302117775,224.63438271330435,15.218843302784599,14.97562551422029,20.421307519391306,0.5,0.41811540854789003,0.29799284551126815,73.07930897180331,0.24516977095655476,0.0,0.58188459145211,2.0,0.375,0.517695520861511,0.761105843510839,0.761105843510839,0.761105843510839,0.761105843510839,0.761105843510839,-0.6611,,1.9714285714285715,1.416116136176052,0.9646383156305218,1.9892446134192132,-4.394899859144983,1.334581444970062,1.2811822374796051,-1.6912486838431502,32.82399999999999,15.136365838499083,0.0,0.0,0.0,4.448193276518764,13.213763929025836,10.114318268765572,0.0,0.0,2.833213344056216,0.0,4.110873864173311,0.0,5.638354669333745,0.0,7.242082359256962,0.0,8.867427438524983,16.333333333333332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.204000000000004,0.0,9.92201388888889,0.0,-0.7847222222222228,0.0,0.0,0.0,0.0,17.42330648384146,0.0,0.0,0.0,32.798323044043684,0.0,10.114318268765572,0.0,0.0,0.0,0.0,0.0,16.65040379651985,9.801651497005986,10.06290355392354,39.712571430277194,,30.18479000289789,31.518332281472553,32.596650007676516,30.219827859969897,62.567902272954726,31.96092171760823,32.30745240848728,47.795489510921854,10.06290355392354,39.71257143027719,,29.089551907659796,30.416908620002296,31.8463757621861,29.114691963625887,65.56968840126977,30.922913927075946,31.31097733489203,49.11090515391098,4.527641955704791,26.421537748671952,,20.56166049411643,21.006746302880224,21.562395634309723,20.54301611081692,42.40938700887647,21.358847062179855,21.623785251610045,32.46342680808176,1.1181003948803934,4.412507936697466,,3.3538655558775434,3.502036920163617,3.6218500008529464,3.3577586511077664,6.951989141439414,3.551213524178692,3.5897169342763644,5.310609945657983,2.263820977852396,19.856285715138597,,15.24745991217975,15.916512378089172,16.405507038908315,15.226054173114242,30.587394271062394,16.12874768602301,16.296079786185818,23.70982823503391,15.925490196078435,2.548611111111111,0.0,0.0,0.0,0.0,16.614305555555553,16.321558630735613,-1.4513888888888893,0.0,0.0,0.0,0.0,0.0,-1.770833333333333,0.0,0.0,9.531392631793203,123.70717976105502,30.33869642763737,44.60335893412778,44.60335893412778,44.60335893412778,44.60335893412778,44.60335893412778,45.0,79.0526362252372,172.16132264761876,37.691951675345216,83.60000000000001,83.60000000000001,1.0,3.9889840465642745,4.0,2.6986501294014644,2.948115677044702,,2.9393774056689024,2.9513829621074135,2.947787440428274,2.9386170007251744,2.918671306867373,2.9511064170162995,2.9512467676167917,2.9373125587392552,0.2998500143779405,0.32756840856052244,,0.32659748951876694,0.32793144023415705,0.3275319378253638,0.32651300008057493,0.32429681187415255,0.32790071300181106,0.32791630751297685,0.3263680620821395,0.8873911802612171,0.9758056970597748,,0.9728372764877286,0.976913345555556,0.9756943530942356,0.9725785470996425,0.9657679651692,0.9768196409934456,0.9768671985001309,0.9721345519856279,99.79000000000006,24.419904416393923,28.090681667236495,,27.72421530351517,27.766088145987535,27.887786991820374,27.728192910893092,28.58650457609981,27.769037673947217,27.767478778710885,28.17763672989867,2.713322712932658,3.121186851915166,,3.0804683670572413,3.085120905109726,3.098642999091153,3.080910323432566,3.176278286233312,3.0854486304385795,3.085275419856765,3.1308485255442964,3.0900380388644892,3.2300773924204313,,3.2169457143292046,3.2184549095513275,3.222828335103735,3.217089174550783,3.2475742228347184,3.218561131619574,3.218504992151839,3.2331681239140995,-1.770833333333333,9.137291666666666,26.53631944444444,0.0,0.0,0.0,0.0,-1.4513888888888893,0.0,123.24924338176342,36.4637039090214,-47.44952877019059,-11.235754483631037,-3.1633019180127055,-11.862382192547647,51.07446680852999,66.46223840288222,4.502776376387153,4.430815893525482,6.042021672989294,86.0,12.0,1.0912609923560823,1.3489311653509195,0.14433756729740643,0.24549512651549144,0.5525858577612694,0.12643077588811863,0.14433756729740643,0.037880720420707906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.491563831562722,6.058814528970034,4.064696016533707,2.964649201018734,3.515837525811023,3.0732064251492406,3.0092019217677626,1.6667706760939764,1.066496580927726,0.17431115290350996,0.0,0.0,0.0,0.0,0.0,0.0,2.9990185656398913,1.6359991265812714,2.773782977068248,0.8922279875501102,1.7072863961405211,0.3065563717244327,38.742995319554055,30.330978892346174,30.330978892346174,30.330978892346174,30.330978892346174,30.330978892346174,38.0,42.0,16.368758,8.565242,0.0,8.06,5.673611111111111,2.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,0.0,0.0,14.0,0.0,1.0,1.0,13.0,1.0,8.0,13.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,4.0,2.0,0.0,9.0,6.0,0.0,1.0,4.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,2.302585092994046,0.0,2.6390573296152584,2.772588722239781,2.0794415416798357,0.0,0.0,0.0,0.0,0.0 +5334,CC(=O)Nc1ccc(S(=O)(=O)Nc2ccc([N+](=O)[O-])cc2)cc1,0,34.44444444444444,6.830508333333333,3.5833333333333335,10.956790123456791,162.42658017271768,136.92161883333335,1.6689052156399167,6.875116666666667,9.396435852004267,8.305960916666665,242.83330398183867,36.21621621621622,6.67212972972973,4.162162162162162,7.819819819819819,148.14006106687836,140.81499718918923,1.9758911354054056,6.823954054054055,3.535994327660995,8.12192497297297,286.21484819470066,29.65,6.705383333333333,3.716666666666667,8.377777777777778,151.7215037872496,113.72211171666665,1.7312653539091163,6.813358333333334,5.7600823045267475,8.147426433333335,249.50790545588185,24.82894736842105,6.6135789473684214,3.1710526315789473,5.7631578947368425,158.03442852974024,92.12535464473684,1.5347819007288948,6.705013157894737,4.382553606237816,8.138827000000001,214.99924711757066,22.0875,6.5502375,2.7625,5.183333333333334,161.237117462227,80.66578573749999,1.3588095616417375,6.6238375000000005,4.698881172839506,8.135103824999998,189.47704161245292,20.43661971830986,6.568798591549296,2.6338028169014085,4.948356807511737,161.2014698124824,73.99793818309858,1.302286231443521,6.629905633802816,4.663515040862459,8.163473352112677,184.57348102943453,21.137931034482758,6.440305172413795,2.8275862068965516,5.195402298850575,159.81869177968142,77.51202149999999,1.3842212700826202,6.511029310344829,4.276607066836952,7.991128137931034,189.40000834083136,23.555555555555557,6.31375925925926,2.740740740740741,4.469135802469136,160.0425778292461,87.92868583333332,1.3573179163424074,6.399588888888889,3.2572016460905355,7.915599851851852,184.98460164461446,24.74468085106383,6.926255319148935,2.6808510638297873,9.191489361702128,161.84861900366235,92.90779134042552,1.2472450975242764,6.95633404255319,9.622340425531915,8.437863063829788,186.2982826343969,11.083333333333336,0.19272862654320985,0.021874488667894914,0.7121913580246912,4.890603566529494,1.6466323344789886,50.15549880555558,0.2910003703162431,0.1727709876543209,4.167073836453622,0.1281086010802469,45.768049196602774,2.361111111111112,0.01086852060393726,-0.012008920643353058,0.07234317650984316,0.19548251955659374,0.04104313039063088,10.098640302552559,-0.008731580914675402,0.012999432766099448,-0.5854901308344236,0.021314464235068383,1.795039526451848,0.6500000000000005,0.06059012345679011,0.005002505417517334,-0.10524691358024693,0.5419067215363511,-0.21577330723179725,2.976350497222224,-0.012094962523724957,0.05175586419753085,1.0751244596648548,0.03827033317901232,-3.717807681065951,-1.9239766081871341,-0.04518100227420402,-0.002218612252756263,-0.08901884340480831,-0.7447296224099342,-0.15074870208219246,-8.698605627923977,-0.016099357569046763,-0.04089701104613385,-0.38104479924010465,-0.03144127213287847,-5.663766338690638,-1.7972222222222225,-0.038197202932098745,-0.0008182446560789515,-0.021566358024691354,-0.2853566529492456,-0.11628916453908811,-7.757287893055559,-0.023404256826692012,-0.032807098765432106,-0.3699416050388237,-0.03173469517746912,-1.3509942154455714,-1.5402973395931148,-0.05202694422709092,-0.001194642304573163,0.03976482350895496,-0.8377431944202941,0.06791722303302684,-6.80821911776213,0.007991073464349659,-0.046834759172317844,-1.0513386972615129,-0.036748576432359584,0.6943067752553598,-0.08429118773946367,0.02378890219242232,0.00585245708561959,0.06031822051936994,0.13579064377276379,0.20119997118818084,-0.5141081848659007,0.0011348706598072284,0.017629778629203945,-0.17889398483565067,0.01530611300021283,-2.5889093334413156,2.8796296296296298,0.009955889917695502,-0.012393626577712124,-0.09902263374485595,-0.031092821216278137,-0.06814537607149881,12.532354870370375,-0.016734075481380395,0.014142386831275743,-0.7577987181902599,0.01529676929012341,1.628953315895551,0.9036643026004726,0.14817509686104538,0.011076479650650409,-0.03606842658261096,2.7856507019233576,-0.39247841218481694,4.5058940916075665,-0.056748038093122476,0.1298073811400052,3.5326828657875367,0.09696422161478853,-2.2963605925653763,,,0.46521739130434786,1.4673913043478262,0.8478260869565217,0.06521739130434782,0.6195652173913043,0.22826086956521738,0.5975153853420412,0.027761714434377246,0.03523997530394246,1.1357904781990682,0.29600669310887046,0.17250174734253906,1.7333058635411092,0.46850844045140955,1.9826452702918433,1.249383054617067,0.2613775027322397,0.37433129953216193,0.0,0.7332622156747762,9.3071553198889,1240.0,245.8983,129.0,394.44444444444446,5847.356886217836,4929.178278000001,60.080587763037,247.5042,338.27169067215357,299.01459299999993,8741.998943346192,1340.0,246.86880000000002,154.0,289.3333333333333,5481.182259474499,5210.154896000001,73.10797201000001,252.48630000000003,130.8317901234568,300.51122399999986,10589.949383203924,1779.0,402.323,223.0,502.6666666666667,9103.290227234975,6823.326702999999,103.87592123454698,408.80150000000003,345.60493827160485,488.8455860000001,14970.474327352911,1887.0,502.632,241.0,438.0,12010.616568260259,7001.5269530000005,116.643424455396,509.5810000000001,333.074074074074,618.5508520000001,16339.94278093537,1767.0,524.019,221.0,414.6666666666667,12898.96939697816,6453.2628589999995,108.704764931339,529.907,375.9104938271605,650.8083059999999,15158.163328996234,1451.0,466.3847,187.0,351.3333333333333,11445.30435668625,5253.853611,92.46232243249,470.7233,331.1095679012346,579.606608,13104.717153089852,1226.0,373.5377000000001,164.0,301.33333333333337,9269.484123221522,4495.697246999999,80.28483366479198,377.63970000000006,248.04320987654324,463.485432,10985.20048376822,1272.0,340.94300000000004,148.0,241.33333333333334,8642.29920277929,4748.1490349999995,73.29516748249,345.5778,175.8888888888889,427.44239200000004,9989.16848880918,1163.0,325.53399999999993,126.0,432.0,7606.885093172131,4366.666192999999,58.62051958364099,326.94769999999994,452.25,396.579564,8756.019283816655,399.0000000000001,6.938230555555554,0.7874815920442169,25.638888888888886,176.06172839506178,59.27876404124359,1805.5979570000009,10.47601333138475,6.219755555555552,150.0146581123304,4.611909638888888,1647.6497710776998,87.36111111111114,0.4021352623456786,-0.44433006380406315,2.676697530864197,7.232853223593969,1.5185958244533424,373.64969119444464,-0.3230684938429899,0.4809790123456796,-21.66313484087367,0.7886351766975301,66.41646247871837,39.00000000000003,3.6354074074074063,0.30015032505104006,-6.314814814814816,32.514403292181065,-12.946398433907834,178.58102983333345,-0.7256977514234974,3.105351851851851,64.50746757989128,2.2962199907407395,-223.06846086395706,-146.2222222222222,-3.433756172839505,-0.16861453120947598,-6.765432098765432,-56.599451303155,-11.456901358246627,-661.0940277222222,-1.2235511752475539,-3.1081728395061727,-28.95940474224795,-2.389536682098764,-430.44624174048846,-143.7777777777778,-3.0557762345678996,-0.06545957248631612,-1.7253086419753083,-22.828532235939647,-9.303133163127049,-620.5830314444447,-1.8723405461353608,-2.6245679012345686,-29.595328403105892,-2.53877561419753,-108.07953723564572,-109.36111111111114,-3.6939130401234554,-0.08481960362469457,2.823302469135802,-59.47976680384088,4.8221228353449055,-483.38355736111123,0.5673662159688257,-3.325267901234567,-74.64504750556742,-2.6091489266975305,49.295781043130546,-4.888888888888893,1.3797563271604945,0.3394425109659362,3.4984567901234565,7.875857338820299,11.66959832891449,-29.81827472222224,0.06582249826881925,1.0225271604938289,-10.375851120467738,0.8877545540123442,-150.1567413395963,155.5,0.5376180555555571,-0.6692558351964547,-5.347222222222221,-1.6790123456790194,-3.679850307860936,676.7471630000002,-0.9036400759945413,0.7636888888888901,-40.921130782274034,0.8260255416666641,87.96347905835975,42.472222222222214,6.964229552469132,0.5205945435805692,-1.695216049382715,130.9255829903978,-18.446485372686396,211.77702230555562,-2.6671577903767565,6.100946913580245,166.03609469201422,4.557318415895061,-107.92894785057268,0.7406595403044883,0.5588915069466642,0.4489872554326007,0.33186290868549595,0.310727245646503,0.18660352498811564,0.18988866779136906,0.1088784825881529,0.1264347466057514,0.062232361352340296,0.07930142573013409,0.03536101778336427,0.05161764117646861,0.021005246721875044,0.03317486830683442,0.012633306122320758,16.013122641786083,5.698434243016424,3.6078924657499902,2.18781473666415,0.4663938997569414,-0.3876009506232133,4.0438144050299405,0.970461359122158,7.004120708883428,0.6442348869411347,14.594818446638978,10.31976968288944,32.06654392728704,11.71056338728632,2.954573967331249,0.6692154168369027,3.5536234964972886,2.2415148367739652,8.001939142458335,0.2989412584431779,3.7690149353489217,2.4405337919115535,24.441830567771806,14.651531811488788,0.3417799061463314,0.6231460568257172,0.7293901064911669,0.849410990928962,0.896968141213285,0.896968141213285,1.7656294689183891,829.7213898552284,0.0,1.0,1.0,0.0,12.0,0.0,0.0,0.0,0.0,3.2714781450344703,1.7086048612313038,1.1184628474025118,0.4517961807358448,0.18763576394898607,0.18763576394898607,4.437694313444638,1128.6927246218338,74.55662805150502,31.352575683939826,67.79846298571539,,14.0,498.0,14.946602202225254,23.32665243716633,22.177435754236402,5.687386274683562,0.0,55.4546737473835,0.0,0.0,10.038883468458419,0.0,10.700000000000001,33.75,19.5,1.5,14.25,0.0,0.034782608695652126,5.25,0.26546434494195653,0.10069444444444431,-0.16476990049751222,0.050434782608695605,0.21399999999999975,0.0,0.7027777777777778,0.9304347826086953,0.4373134328358213,0.6020833333333335,0.8799999999999997,13.742853862866946,0.6385194319906766,0.8105194319906766,26.12318099857857,6.80815394150402,3.9675401888783983,39.86603486144551,10.77569413038242,0.5000000000000002,0.2024922118380062,0.0778816199376947,0.27102803738317754,0.07142857142857142,0.4960371313211847,-0.9999360052980293,-0.09714635000956169,-0.027776000147167475,-0.07691815425369455,0.5039628686788155,1.0159130958261546,0.036012044974186024,0.02821980821739319,0.04417013460113717,-4.045574280222187,0.789473684210526,0.5331437597389169,1.526529474407126,1.106848994172938,0.5913074212983054,1.2084559211424308,0.7735943511218936,1.2295089136406028,0.49602518585311767,0.6660590610499612,0.4213430809291344,0.8882492161450805,0.8084795321637425,0.42888036214805003,0.7965047021235103,1.2854821235102927,0.663382651987939,1.2263520092694074,0.8007052428366254,1.0663242857753643,0.4315804658275245,0.46146706025256806,0.4522624386245593,1.0135828887997274,1.1945983379501381,1.083936590671859,1.1081389242653583,1.1226264469407539,0.9843786329297051,1.1624547451313345,1.182908097798621,1.117749173314037,1.0809206953470845,0.8767202653409918,1.0819246275655978,1.0768343867523928,1.3245614035087714,1.171301430520029,0.997757202613032,0.9982394366197184,1.0284823995512236,1.0578821159261436,1.303010387468277,1.199190428574746,1.1656562400630255,1.0621668839834675,1.2135392591079424,1.0384027571109942,1.1613540894489742,1.336952474087898,0.9436904554789589,0.91328033204645,1.2237180886313601,0.8551963286805565,1.157959134768875,0.9724885870949616,1.3396375846984414,1.3682911850700394,1.3763964198184695,0.9865000805422934,0.965668481548699,0.7386124966689157,0.5424221000551338,0.8120073224492846,0.8648677729713782,0.8369734895746626,0.9717856469123685,0.9731387536869386,0.770198108708366,0.8350366975640784,0.7315063637744612,1.0774257248566372,0.8512020792722544,0.7801574181911305,1.3392887376201448,1.1123149151318166,0.916865343711287,1.0017003226572512,0.8551732422168313,1.1429625702994026,0.7676636988234621,0.9619933063726623,0.6930610235427082,1.033644537201151,0.9770436730123176,0.3886529581563199,0.5528262396928428,1.0891865102233698,0.5399863039654345,1.1599013064002812,0.9640751154382186,1.2005646270476313,0.3997189653375507,0.38287627838602467,0.4234264489507798,1.0125858098450313,7.0,0.09907152331394756,3.111111111111112,1.75,1.3644444444444448,0.8819444444444445,0.40326530612244904,0.45486111111111116,0.1803980851599899,0.12000000000000005,4855.203536193623,5230.288013471314,2559.6116875365537,2422.391268222497,13.027533784774809,0.4019828924998947,7.79068807183093,0.6721929648138435,1.0,0.07142857142857142,1.8984468564078418,3.4613201402110083,4.0514621540398,4.718128820706467,4.982289237493326,4.982289237493326,0.29166666666666663,0.008255960276162296,0.09150326797385623,0.053030303030303025,0.04548148148148148,0.03527777777777778,0.019203109815354717,0.023940058479532164,0.008590385007618566,0.009230769230769232,0.5861797797395222,19.32638888888889,8.392733564013842,5.7856673241288625,131.89337963652895,1.0,4.041856253031958,123.026812553739,,78.63078473856444,90.43075564953193,90.57004833959593,78.63998138985673,119.64854153175298,90.893683397366,90.5856703622521,113.01490286193976,0.2130325814536341,0.0563928711519175,-0.5489920621997668,0.10157828467687621,0.03997104179419586,0.024925497654348778,0.20134662286389146,-0.03000539451268191,0.07524083147633925,-0.14050390125381207,0.16637808902243073,0.039220363506013024,0.058646616541353405,0.31438050767827047,0.2286913076445754,-0.14777898158179853,0.1108056938503611,-0.1310391534975354,0.05934245632290556,-0.04156339220661754,0.299563398347202,0.25800465791118227,0.2987335187201044,-0.08123150858136012,-0.17359187442289925,-0.23442808203728063,-0.10142464523125105,-0.1249928722130353,-0.15227765086230755,-0.09154970355291298,-0.17343274087746602,-0.055324182411008185,-0.2367122605559235,-0.09144181605488225,-0.2454267072449237,-0.12374934999657015,-0.16215538847117794,-0.19819164188115518,-0.03740634437228631,-0.03028169014084507,-0.05834794193955543,-0.07062242256762388,-0.15466475417041026,-0.08042689705603316,-0.18988777694014428,-0.08877730982411906,-0.24771713147964666,-0.02951828271382499,-0.13897419605351408,-0.26994922944374566,-0.054613496238041626,0.05583446507866265,-0.1712964837619786,0.04124613710717429,-0.1357422272711602,0.02746069860895848,-0.2710799990680411,-0.2522966327268758,-0.28685487252600916,0.015170119492593451,-0.007605219946417773,0.12343211602293465,0.2675471493059042,0.08469383942914784,0.027765620730760755,0.12218876489622839,-0.010250285554112651,0.0038998942117287137,0.10204131416136543,-0.04293036117351305,0.1194776374977752,-0.05656586590178466,0.25981620718462817,0.05165755651490302,-0.5665790302976176,-0.13903936439147707,-0.006357665427856884,-0.04138469447283186,0.24987000765272424,-0.057505340846112085,0.08185625968389867,-0.18185392146427207,0.11940470164482987,0.03559149547532962,0.08153362128726066,0.7688276491080813,0.5063651918367952,-0.05064429127959243,0.5695924161565464,-0.23835218340286093,0.08983848628594361,-0.1950101920195217,0.751326266651453,0.8477610439449321,0.7568908004393116,-0.050173879657860285,7.817780798032604,12.16917123378912,2.048145734495446,22.017526419032027,36.81427609772223,43.29119404804208,46.869751113947885,47.13602481406904,47.13602481406904,45.600841216712396,28.73581025619254,6.0116825628415125,8.609619889239724,0.0,16.865030960519853,5520.164550572269,4123.891016090475,1712.3497896131666,44.0,34.0,39.0,46.0,54.0,56.0,60.0,62.0,44.0,335.05759151600034,24.0,4.762173934797756,5.572154032177765,6.444131256700441,7.275864600546533,8.149312843635345,8.990316947998217,9.865629909979887,10.711457836917562,11.588598640125822,0.8055555555555557,1.030555555555556,1.126071534999561,0.7755252129991951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7028993512974053,1.015250544662309,1.041403657845756,0.6821339360426985,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,4.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,5.907179729351506,15.710677428091145,19.630950317289482,8.417796984328938,0.0,0.0,0.0,36.39820241076966,30.431243885980965,9.818794524335445,277.73581909096276,-559.8735012645064,-54.393147988215276,-15.552041701791843,-43.06719240496203,282.1735134044074,568.8192233573272,20.163480063289743,15.80053398214798,24.731270580753364,0.5,0.5900459447065726,0.1618859664258034,5.814421681223682,0.13348028250786567,50.262447146610235,0.4099540552934276,7.0,0.20833333333333334,0.36720974789348215,0.6695107064890429,0.7836597538473998,0.912610689592247,0.9637062889893685,0.9637062889893685,2.354,,2.303571428571429,1.9609845219659925,1.4545191904946573,2.2991871333729694,-6.541878845206732,1.7887851897184825,1.7346190845905674,-2.795367399848947,84.65060000000001,18.13564521721843,0.0,0.0,0.0,11.819220675208399,10.038883468458419,58.64525481645845,0.0,0.0,3.8918202981106265,0.0,5.220355825078324,0.0,6.727431724850855,0.0,8.312135107648412,0.0,9.937357437043744,29.000000000000004,10.646598391320612,0.0,0.0,0.0,0.0,0.0,0.5610057954703944,0.0,37.10000000000001,0.0,45.92926151385918,0.0,-0.5704102641309188,-3.8242205215419474,0.0,0.0,-0.25961850805288567,40.53857525998419,10.038883468458419,17.062158824050687,0.0,19.248287762498112,14.817828337479405,10.114318268765572,6.923737199690624,53.42642002321065,0.0,0.0,0.0,27.918907667971023,25.304376646706594,27.69158905167806,246.05362510747824,,157.78265345675908,180.69099090584945,181.0136167495836,157.8021623707448,242.65000829788409,181.63182025649564,181.0205042823659,227.24518285424867,27.69158905167806,246.05362510747824,,155.8797031462001,178.90052677709787,179.68557748869722,155.90283386926274,245.83896190871272,179.9985816050136,179.43672163991369,228.82517312372852,4.771772242156079,187.9418253523384,,119.11087728304682,140.30295685811416,140.55543501154025,119.121498893759,177.86529724790813,140.7666971346289,139.96703510937132,171.82309380712024,1.2039821326816549,10.69798370032514,,6.860115367685177,7.856130039384759,7.8701572499818955,6.860963581336731,10.550000360777569,7.897035663325897,7.870456707928952,9.880225341489073,2.3858861210780398,123.026812553739,,78.63078473856444,90.43075564953193,90.57004833959593,78.63998138985673,119.64854153175298,90.893683397366,90.5856703622521,113.01490286193976,36.54901960784313,0.0,1.3480170058243548,0.0,0.0,0.0,0.0,37.49053168244721,0.0,4.855151416437005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.556821697537146,330.3722310422571,68.3440868306823,124.6075250475963,145.8526375454328,169.85263754543283,179.36241254975974,179.36241254975974,486.0,120.35964000287933,229.53710145311308,57.089100392731964,126.78999999999999,118.41,1.0,7.944713770581266,5.584962500721156,4.130330140597477,4.709448164106286,,4.682666436179689,4.712455737810026,4.714946276679725,4.682627975363306,4.652604173746798,4.710462395033551,4.707714648677444,4.685720945508527,0.17957957133032507,0.2047586158307081,,0.2035941928773778,0.20488937990478373,0.2049976642034663,0.20359252066796982,0.2022871379889912,0.20480271282754572,0.2046832455946715,0.20372699763080554,2.251266463903911,2.3824798614892253,,2.376776821938446,2.383118283157967,2.383646644826179,2.376768608461177,2.3703362231368725,2.3826951991879897,2.382111700614685,2.3774289105664304,227.6399999999998,169.68711014581868,125.10149497892552,,126.12379492026867,124.01367457322866,123.9759297355195,126.12708039898034,129.01085152437412,124.1848556507345,124.38857804099733,126.47637192473172,7.377700441122551,5.439195433866327,,5.483643257402986,5.391898894488202,5.390257814587804,5.483786104303493,5.609167457581483,5.399341550031935,5.408199045260753,5.49897269237964,5.9668653355775145,5.662034490607753,,5.670173046917195,5.65330096127624,5.652996554661246,5.6701990962120306,5.692805644102844,5.654680349820513,5.656319482634103,5.672964630452822,26.76630976001512,20.920334673344616,13.096161198614283,0.5564180004758532,-0.25961850805288567,10.646598391320612,0.0,1.3480170058243548,-3.8242205215419474,278.54610362925246,155.50687707727582,-313.4783983748556,-30.455231182403498,-8.70773328819043,-24.11372295191196,157.9915835381351,318.4871916605359,11.289720663020264,8.846866435014888,13.847269202632,1356.0,33.0,2.511310963877082,1.0488862005703519,0.2041241452319315,0.05103103630798288,0.5151283791960046,0.1302126367021629,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.2076303192968934,0.07568735753865524,17.035169427003233,12.854504659773276,10.775694130382417,7.964709808451903,10.564726351981102,6.344519849595931,7.405658043863394,4.246260820937963,5.815998343864565,2.8626886222076537,4.282276989427241,1.9094949603016707,2.890587905882242,1.1762938164250025,1.9904920984100654,0.7579983673392455,4.093692164642393,1.680484481572292,5.565023795353988,1.9609466830706472,7.0867601514258745,2.1959231842866127,75.80267347538397,48.792233704373736,35.155974663414824,27.793067021681374,26.86223993822785,26.86223993822785,116.0,131.0,42.25830899999999,22.871690999999995,0.3888888888888889,70.09,9.229166666666666,4.986111111111112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,36.0,0.0,0.0,37.0,12.0,4.0,10.0,27.0,16.0,24.0,21.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,5.0,2.0,0.0,23.0,9.0,0.0,3.0,5.0,0.0,2.0,5.0,1.0,0.0,0.0,0.0,2.0,3.5553480614894135,6.305818978475576,4.174387269895637,4.579852378003801,5.079850363117729,5.5726292044366454,5.762837237437516,6.0390635259072605,6.23232521922735,5.968227905327517 +6321299,CN1[C@@H]2CC[C@@H]1CC(OC(=O)C(CO)c1ccccc1)C2,0,19.90909090909091,5.994202272727272,3.022727272727273,5.818181818181818,163.09554477966424,78.18089956818181,1.381295654807432,6.059202272727271,3.9128787878787885,7.56750518181818,200.16363535828995,22.47826086956522,6.2331521739130435,3.8260869565217392,5.239130434782608,145.36822426456405,84.00171849999997,1.7505109305652184,6.377652173913043,2.7433574879227054,7.677283391304343,251.22692979273052,18.127906976744185,6.148720930232558,3.4186046511627906,3.8372093023255816,153.93062300211207,65.70610497674417,1.4789180985673487,6.25349534883721,2.5726744186046515,7.657219255813951,204.89517202632103,13.934959349593496,5.9676178861788625,2.7642276422764227,2.682926829268293,159.4393432985465,48.38471661788618,1.2474229929949265,6.049715447154473,2.338979223125565,7.551674731707317,165.40720706904267,12.161538461538461,5.92906923076923,2.3076923076923075,2.6307692307692307,161.44658279026015,41.04097003846155,1.0777973023628311,5.992836923076921,2.870512820512821,7.549333015384614,137.5796831059459,11.198275862068966,5.901163793103449,2.1551724137931036,2.353448275862069,168.36179823920517,38.51607664655174,0.9501617309793188,5.9381896551724145,2.69300766283525,7.583042034482759,124.81426765844651,14.814814814814815,6.188395061728396,2.617283950617284,2.888888888888889,160.6297171191566,51.82738545679013,1.1901379743158516,6.250766666666668,3.1001371742112482,7.78396948148148,163.13127329916497,12.619047619047619,5.962309523809525,2.5,1.9285714285714286,160.15651903697128,42.58702427380952,1.2023637462908687,6.036083333333333,2.619047619047619,7.572865,156.27980773127896,11.32183908045977,5.769229885057471,2.2873563218390807,1.7586206896551724,161.5249796809434,37.845949896551716,1.1449463648451377,5.844501149425287,2.2873563218390807,7.389767494252874,143.0750781610361,7.338842975206614,0.11688362603305782,0.017384027353565226,0.5635330578512396,3.4297520661157033,1.3563804442838145,34.927856889979346,0.22897933200106763,0.11114643595041317,1.4059343434343432,0.07310119628099171,50.76157677524142,0.3647143370463526,-0.0011066003413583003,-0.007228965840499173,0.18300844412504497,0.7738052461372618,-0.14465000088993243,1.7439308298823313,-0.002894465911580937,0.0004334553539345841,-0.06189613526570049,-0.002540980865971978,1.0083864533010016,-0.2627330386315585,0.0022670874975975045,-0.0005318147862711152,-0.04846963290409375,-0.13588314433980384,-0.020992905957099236,-1.2809504555184434,-0.005372586226887929,0.001277639102440892,0.03811369509043924,0.0033231081587545615,-1.8605300866619823,-0.6477860646375059,-0.013132960844587796,-0.0024637707781650403,-0.1313453268830209,-0.3063226500033595,0.020244603583887567,-3.0632037258995135,-0.012780775435517026,-0.012145013186185577,-0.05211156278229446,-0.007688866643149901,-3.022610650470559,-0.3863954227590591,0.01972584949141766,0.0043890263369582615,-0.034162428480610296,0.3115066751430387,-0.2756711865969179,-2.072131404839479,-0.053256642855490206,0.016538022091544823,0.2803418803418802,0.013646924698029236,-9.75621407514156,1.3037902536335133,-0.008092775719578237,-0.0022876921150442255,0.085565688230265,0.23874323168994016,0.21101387734187838,6.374572155867052,0.04951725520989274,-0.0038454759190652754,-0.10512452107279695,-0.009039881233969795,12.23665189284624,-0.5846342209978573,-0.01517259909703096,-4.476436772024772e-05,-0.034632945617794106,-0.5992245689215387,-0.005548283884009805,-2.702096240708853,-0.0005970660300076157,-0.01446461776859504,-0.19521604938271606,-0.010159229951025403,-1.5251977551457097,-1.3594057457693822,-0.02538906434474616,-0.001034932311147795,-0.044052538370720186,-0.8713105076741441,-0.026129613105053188,-6.345130897013969,-0.0022677739772294573,-0.02523185261707987,-0.30886243386243384,-0.0141193326446281,-4.2441395092353185,-0.5593236439631426,6.825484468511419e-05,0.0018123735390451839,-0.08417046641968272,-0.2939108957917736,-0.08199186952305897,-2.698730942748409,-0.01607748223878292,-0.0014511642680725657,-0.09219348659003831,0.00092810361451506,-4.469494027619435,,,0.47142857142857136,0.9880952380952381,0.35714285714285715,0.0,0.6309523809523809,-0.27380952380952384,0.9519581224351137,0.010873414970069953,0.023159129255784238,0.6517574229686935,0.183283203693699,0.301758312877807,1.6037155454038072,0.485041516571506,2.040918042683101,1.673873432411669,0.10237917615823995,0.2646654341131927,0.0,0.36704461027143265,6.571995309000015,876.0,263.7449,133.0,256.0,7176.203970305227,3439.959581,60.77700881152701,266.60489999999993,172.16666666666669,332.9702279999999,8807.199955764758,1034.0,286.725,176.0,241.0,6686.938316169946,3864.0790509999983,80.52350280600005,293.372,126.19444444444446,353.15503599999977,11556.438770465604,1559.0,528.79,294.0,330.0,13238.03357818164,5650.725027999999,127.18695647679199,537.8006,221.25000000000003,658.5208559999998,17620.984794263608,1714.0,734.017,340.0,330.0,19611.03922572122,5951.320143999999,153.43302813837596,744.1150000000002,287.69444444444446,928.855992,20345.08646949225,1581.0,770.7789999999999,300.0,342.0,20988.05576273382,5335.326105000002,140.11364930716803,779.0687999999998,373.16666666666674,981.4132919999998,17885.358803772964,1299.0,684.5350000000001,250.0,273.0,19529.9685957478,4467.864891000002,110.21876079360098,688.83,312.38888888888897,879.632876,14478.455048379796,1200.0,501.26000000000005,212.0,234.0,13011.007086651685,4198.018222000001,96.40117591958398,506.3121000000001,251.11111111111111,630.5015279999999,13213.633137232362,1060.0,500.83400000000006,210.0,162.0,13453.147599105587,3577.3100389999995,100.99855468843298,507.03099999999995,220.0,636.12066,13127.503849427434,985.0,501.923,199.0,153.0,14052.673232242076,3292.5976409999994,99.61033374152697,508.4716,199.00000000000003,642.9097720000001,12447.53180001014,322.909090909091,5.142879545454544,0.76489720355687,24.795454545454543,150.90909090909093,59.680739548487836,1536.825703159091,10.075090608046976,4.8904431818181795,61.8611111111111,3.2164526363636354,2233.5093781106225,16.77685950413222,-0.05090361570248181,-0.33253242866296195,8.418388429752069,35.59504132231404,-6.653900040936892,80.22081817458724,-0.1331454319327231,0.01993894628099087,-2.8472222222222223,-0.11688511983471099,46.385776851846074,-22.59504132231403,0.1949695247933854,-0.04573607161931591,-4.168388429752063,-11.685950413223129,-1.8053899123105344,-110.16173917458615,-0.4620424155123619,0.10987696280991671,3.277777777777775,0.2857873016528923,-160.00558745293048,-79.67768595041322,-1.6153541838842989,-0.30304380571429995,-16.15547520661157,-37.67768595041322,2.4900862408181705,-376.77405828564014,-1.5720353785685943,-1.493836621900826,-6.409722222222219,-0.9457305971074379,-371.78111000787874,-50.23140495867768,2.564360433884296,0.570573423804574,-4.441115702479339,40.49586776859503,-35.83725425759933,-269.37708262913225,-6.923363571213727,2.149942871900827,36.44444444444442,1.7741002107438006,-1268.3078297684028,151.23966942148755,-0.9387619834710754,-0.26537228534513013,9.92561983471074,27.694214876033058,24.477609771657892,739.4503700805781,5.744001604347558,-0.44607520661157196,-12.194444444444446,-1.0486262231404961,1419.4516195701638,-47.35537190082644,-1.2289805268595078,-0.0036259137853400653,-2.8052685950413228,-48.537190082644635,-0.44941099460479417,-218.8697954974171,-0.048362348430616875,-1.1716340392561984,-15.8125,-0.8228976260330577,-123.54101816680247,-114.1900826446281,-2.1326814049586775,-0.08693431413641478,-3.7004132231404956,-73.1900826446281,-2.1948875008244677,-532.9909953491734,-0.19049301408727443,-2.119475619834709,-25.944444444444443,-1.1860239421487604,-356.50771877576676,-48.66115702479341,0.005938171487604935,0.157676497896931,-7.322830578512396,-25.570247933884303,-7.1332926485061305,-234.78959201911158,-1.398740954774114,-0.12625129132231322,-8.020833333333334,0.08074501446281022,-388.84598040289086,0.7056964989228289,0.5925052428841436,0.44286399339137505,0.3378070259491358,0.2805386063394255,0.1945815505774641,0.18210017083329774,0.11643806629452921,0.12021875131990745,0.06737398968988705,0.07653568221789127,0.04065145037708602,0.04854623590499154,0.02370930895530332,0.03172223190594587,0.012194224683502388,8.028896278925261,5.693143214650508,3.5550981428439425,2.193042513431228,0.4406311498511691,-0.4934341632403504,3.1669498184439693,0.9779536008908797,6.028305575916688,0.996965211057576,14.543911378741917,10.953459479893002,16.014175136208173,11.704197721315392,1.9833057648610195,0.7415011732732327,3.501179390562651,2.2430192189771243,7.008271880346831,1.2070320820004872,3.714094920215557,2.439023373056556,20.892237242794636,14.701236036509624,0.2493915038070908,0.553735043696493,0.7453623000006823,0.840436079348132,0.8917987996443277,0.9079064196566511,1.5337949942008169,476.06840462966727,0.0,1.0,1.0,0.0,5.0,7.0,1.0,1.0,0.0,4.051901836198422,2.334230664775668,1.2527139881537215,0.716131250098341,0.42624744323098884,0.3353383523218989,,,,,,,11.0,393.0,5.917906046161393,9.901064578912528,18.68015364021307,12.083681658295921,18.405094737549014,12.841643245852019,0.0,30.33183534230805,11.947581713527669,4.736862953800049,9.899999999999999,20.75,7.5,0.0,13.25,0.0,0.02857142857142864,-5.75,0.10989984591679508,0.03027272727272723,-0.07962711864406785,0.02402597402597395,0.14503448275862063,0.0,0.5522727272727276,0.8285714285714283,0.4423728813559325,0.5220000000000004,0.8045454545454543,19.991120571137387,0.228341714371469,0.486341714371469,13.686905882342565,3.848947277567679,6.336924570433948,33.67802645347995,10.185871848001627,0.5689655172413793,0.11784511784511785,0.0,0.3434343434343435,0.5882352941176471,,,,,,,,,,,-2.172753268955991,0.8945174794359575,0.7856411127238528,1.407527295115764,0.9613438010600568,0.6504059717129386,1.3678677890497506,0.9013588186791404,1.2130266154517053,0.7761719866437091,0.7118955116065678,0.8064219342754515,1.0983128451856263,1.0072494369369367,0.9029037057856246,1.1128951699142628,1.4417965169569205,1.0469879518072287,1.184582743044774,1.0110166301266996,1.0993456255288754,0.9056796767350048,0.6370678042209251,0.8566810432238181,1.0721911499338859,1.0653153153153152,1.0838841787154956,1.2557819942210648,1.409909607803686,1.1189097854833967,1.0310607975537722,1.0654434684528429,1.059511924994503,1.0775296563237986,0.7612724106585478,1.0677758826656778,1.050993160210324,1.047389336451836,0.9204192598286902,0.8825095169582713,0.9738137206514843,0.9381093605189988,1.1435352807120482,1.0518647910405807,1.204157548537676,0.9304087553378957,0.8832147421505304,0.9386463009273559,1.1598091956354373,0.8753264309568187,1.4374164995419374,1.391789806439965,0.7699200353993491,1.127477149979227,0.6813304579990839,0.8621327011796723,0.6683670278815359,1.3716813572886344,1.6016056857067653,1.5647733967354374,0.6645350355189814,1.145049563452341,1.5782715543087376,1.4336695876792704,1.1133064014212808,1.3930388219544845,0.9782293208779912,1.1345768757068968,0.9775768646804912,1.53022120865557,1.8677981229246015,1.6878376323945272,0.980087070512789,1.1802488872801369,1.3057560018625336,1.0290598280138894,1.094190563484789,1.2449153757888693,1.0112782602095165,1.1749932546351836,1.0042415340748956,1.3024492729713255,1.6621389013620718,1.3127860028972063,1.0629902369118953,1.0163353008180591,0.7879832373567759,0.5783225958285565,1.0564598543991068,0.9334233485666804,1.0510279201469284,1.0207757806442188,1.053967350663808,0.8198194541296222,0.9588772071081658,0.7356358192141706,1.0779658630637388,4.0,0.02948474645444342,2.4444444444444455,1.8819444444444446,0.8183333333333335,0.5241666666666667,0.42448979591836733,0.2309027777777778,0.22048217435122194,0.06938271604938272,,,,,,,,,1.0,0.5882352941176471,1.4075297824388762,3.125200953861629,4.206717630483576,4.743300368538956,5.0331841754063085,5.124093266315398,0.17391304347826086,0.005896949290888683,0.07638888888888892,0.058810763888888895,0.032733333333333337,0.02278985507246376,0.01929499072356215,0.012152777777777776,0.012969539667718938,0.006307519640852974,0.42125766176263635,15.879017013232515,7.05078125,3.504597079502434,125.26323882275126,1.0,3.981013616996755,94.00075578004898,,80.73473447472465,79.61042714867673,81.94582519365414,80.75422648168893,116.4080463378405,80.40516902568409,80.78768224642012,99.02587985203147,0.04969643556600073,-0.009467539457112017,-0.41583953438825044,0.3247519228470092,0.22561550550026183,-0.10664412149226275,0.04992951143196701,-0.012640730000764617,0.003899858328592432,-0.04402491165732806,-0.03475977132035939,0.019865152293551975,-0.035800335218939834,0.019396108544376536,-0.030592150797671594,-0.0860102743376036,-0.03961894087979822,-0.01547715174276473,-0.03667417842306674,-0.023463192856475266,0.011495097359765071,0.027109157172544127,0.04545901199729968,-0.0366523304604959,-0.08826814619497544,-0.11235928667094432,-0.1417261218045515,-0.2330747505458556,-0.08931335096483492,0.014925461119116154,-0.08770087828601741,-0.055816284045485096,-0.10927037904844694,-0.03706543127398044,-0.10518113292694792,-0.0595452474586017,-0.052650727650727626,0.16876486605436644,0.2524746566311708,-0.06062187125431855,0.09082483781278958,-0.20324031340814241,-0.05932603913737304,-0.2325827505481669,0.14879489342261132,0.19939898449103652,0.18668538125658285,-0.19219682868283322,0.1776561043802422,-0.06923789066305475,-0.13159736052618734,0.15183792155251427,0.0696094723722476,0.15557130614139478,0.18250682187420125,0.21625207295854046,-0.034598283662293006,-0.07477199882321975,-0.1236625622270481,0.24106130404551532,-0.07966299632966298,-0.12980944903899322,-0.002575028605846456,-0.061456812755315664,-0.17471366949278597,-0.0040905071341834085,-0.07736221117775116,-0.0026075105765651888,-0.13014018528716728,-0.13885146934091705,-0.13897487958985805,-0.03004630376039882,-0.18523434148434145,-0.21721660429635758,-0.05953351833259423,-0.07817205709048056,-0.25404475043029257,-0.01926422134377641,-0.1816639056040785,-0.009903836985684297,-0.22701450029703876,-0.21968482049308274,-0.19314776450928622,-0.08360929228079782,-0.07621414517966243,0.000583955571893448,0.10425510166224461,-0.14936207423327752,-0.0856945021465171,-0.06044902067749265,-0.07726586120783906,-0.0702136830354102,-0.013056327498616219,-0.06557453199758452,0.012696148103343585,-0.08804876269720993,10.911551287899034,17.392628023954032,5.328173333247939,12.824285089555584,28.1482807286093,31.952877878506122,34.68307207815468,35.47541131911334,35.5670476827497,42.859278896345124,35.15134208064505,2.149962699323039,5.557974116377046,0.0,7.707936815700085,,,,62.0,32.0,43.0,55.0,62.0,63.0,64.0,64.0,62.0,289.16779359600065,23.0,4.709530201312334,5.564520407322694,6.440946540632921,7.30854279753919,8.189522110748094,9.061492275239766,9.944293546928382,10.818757763856276,11.702776934016953,0.5909090909090909,0.9697272727272729,1.1294256228438933,0.5475567850682328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6427904055525314,0.9564171122994651,0.9969376944977821,0.5939404687008494,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,0.0,4.0,1.0,0.0,0.0,0.0,14.743300079491233,12.021872433909696,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,30.33183534230805,38.29440996607822,12.083681658295921,6.606881964512918,,,,,,,,,,,0.45454545454545453,,0.25272159106854997,,0.17271421926378874,,,6.0,0.17391304347826086,0.25781617588795863,0.5724407176734079,0.7705413171808524,0.8688267753636428,0.9219245751195282,0.9385763252025856,1.9308999999999996,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,79.95580000000005,14.637927532712576,0.0,4.899909730850478,0.0,49.78884058390966,13.654553947190108,35.89528683400505,0.0,0.0,3.8501476017100584,0.0,5.1647859739235145,2.3978952727983707,6.680854678790215,4.844187086458591,8.28576542051433,6.968850378341948,9.93532530938488,26.0,9.376038881219255,0.0,0.0,0.0,0.0,0.0,0.8202772528764596,0.0,42.668000000000006,0.0,12.362390873015872,0.0,0.0,0.0,0.0,0.0,-0.2938397581254719,49.6947274051313,0.0,0.0,0.0,47.81794440687736,9.53140013787187,0.0,37.164644029562425,30.33183534230805,0.0,0.0,0.0,24.092498543002243,28.282777844311383,27.341896559198464,188.32858294415848,,161.48131299180446,159.18559540838538,163.90707677723154,161.5209893355605,234.8303149245751,160.80420756407213,161.59008664248307,199.02379075513556,27.341896559198464,188.32858294415848,,160.75852387615828,158.34141539110166,163.30426313758522,160.80027278469245,237.16106920769846,160.04540284879556,160.87305303800346,199.96245765091777,4.7778929153566905,142.2509882366783,,123.1365328952825,121.35898604569658,125.67295890185818,123.16921432973834,184.13551722317044,122.6429514708039,123.21751782595791,153.64057127574705,1.301995074247546,8.968027759245642,,7.68958633294307,7.580266448018351,7.805098894153883,7.691475682645738,11.18239594878929,7.657343217336768,7.694766030594432,9.47732336929217,2.4358739712371693,94.00075578004898,,80.73473447472465,79.61042714867673,81.94582519365414,80.75422648168893,116.4080463378405,80.40516902568409,80.78768224642012,99.02587985203147,42.08235294117647,0.0,2.1675306017468716,0.0,0.0,0.0,9.528670319979845,43.865258557902415,4.04994549246849,0.0,5.702325207860922,0.0,0.5316435710086489,2.421684224615772,0.0,0.0,0.0,26.13338062283737,,61.93131042731055,137.50884196991169,185.09557574127734,208.70521621571407,221.4601037178776,225.46010371787753,551.0,117.74038257759662,,69.1278117219219,49.769999999999996,49.769999999999996,0.8333333333333334,6.979203467044153,5.523561956057013,3.7463515354434938,4.523435490746558,,4.525223184837805,4.525141201817094,4.528258875347216,4.525233649150348,4.531822341418271,4.525345853798806,4.525211448096759,4.527657996903997,0.17839769216397589,0.21540169003555037,,0.21548681832560976,0.2154829143722426,0.2156313750165341,0.21548731662620704,0.2158010638770605,0.21549265970470502,0.215486259433179,0.2156027617573332,2.062719787232314,2.2512091141953676,,2.251604243281036,2.251586126215864,2.252274856113314,2.251606555719565,2.2530614862040492,2.251631350739249,2.2516016496506697,2.252142152058589,228.19999999999982,227.1439659945584,112.25172583632323,,111.70320517101686,111.70219280348148,111.4774813614422,111.70252884113393,111.18309518941041,111.69206720208854,111.70436756892653,111.52134696397579,10.81637933307421,5.345320277920154,,5.319200246238898,5.319152038261023,5.30845149340201,5.319168040053997,5.294433104257639,5.318669866766121,5.319255598520311,5.3105403316178945,6.167521372613475,5.462681246167385,,5.457782744851376,5.457773681797891,5.455759954348779,5.45777669012869,5.453115693311429,5.457683029500919,5.457793150925758,5.456153369896553,5.702325207860922,14.784075097631645,9.528670319979845,0.8202772528764596,-0.8600349584278157,10.470208907254364,4.259639448754708,-0.20602521101033,2.1675306017468716,281.44043657131476,,,,,,,,,,,959.0,32.0,1.2683592588452772,0.7715208583582773,0.0,0.0,0.35671651633879004,0.20010223480796888,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.07453559924999299,0.38992543652441325,0.2550530178351117,0.543207479336923,0.3916255773193179,14.819626477379408,12.442610100567016,10.185871848001627,7.7695615968301235,8.977235402861616,6.226609618478851,7.830307345831803,5.006836850664756,6.61203132259491,3.7055694329437876,4.7452122975092585,2.520389923379333,3.058412862014467,1.4936864641841092,2.0302228419805357,0.7804303797441529,3.3012715084051973,1.9155085776682186,5.425249370862368,2.69660276895637,7.3109824985719145,3.26736719917621,72.52833430259952,39.90761903692912,29.190015643965783,22.978010265081302,21.009841564732348,20.562672179525567,110.0,130.0,47.23223899999998,27.387760999999994,0.38636363636363635,109.04,6.527777777777779,4.6944444444444455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,6.0,6.0,44.0,0.0,1.0,46.0,6.0,1.0,4.0,42.0,7.0,23.0,39.0,0.0,0.0,2.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,4.0,1.0,2.0,21.0,4.0,0.0,1.0,3.0,0.0,3.0,4.0,0.0,0.0,0.0,0.0,1.0,3.332204510175204,4.994675274517526,3.7727609380946383,4.185859671057874,4.596381679955012,4.906662703713278,4.811676096149278,4.9672057361689195,5.026344587801436,4.819777406280015 +3019,CC1=NS(=O)(=O)c2cc(Cl)ccc2N1,0,50.76190476190476,6.723442857142858,3.9523809523809526,9.811875367430922,160.84049262532113,207.14760076190487,2.0139189682830008,6.8901142857142865,7.1084279581364616,8.346645428571431,267.89902478871255,44.86363636363637,6.557945454545456,4.545454545454546,6.641414141414142,145.0149001089864,176.68670781818176,2.2169653709090906,6.788731818181819,2.7077254021698467,8.127141363636364,307.61540339648894,36.32432432432432,6.763781081081081,4.081081081081081,8.702702702702704,153.68088057119317,142.66895367567565,1.9026110844472153,6.91607837837838,5.378378378378378,8.256592270270271,267.06240866002327,33.41860465116279,6.67053023255814,3.558139534883721,6.359173126614987,157.34304391240372,127.30463376744186,1.820763890112767,6.855004651162792,3.840738348167289,8.281518604651163,246.52896464762142,31.0,6.616818604651162,2.813953488372093,5.386735572782084,159.4839142927694,116.65840718604652,1.5792944982847679,6.763372093023255,4.491312299954275,8.295742953488372,206.15507265499747,26.34285714285714,6.850091428571429,2.0285714285714285,2.552380952380952,167.34867763351363,98.4173813142857,1.1902638192727713,6.983460000000001,4.724074074074076,8.60115497142857,166.90740767035837,13.470588235294118,5.8955882352941185,1.6470588235294117,0.4183006535947712,164.52331524433163,44.23915335294117,1.1722535415615885,6.043323529411766,2.5248123940934404,7.67104105882353,133.69479553375754,12.6,5.261500000000001,1.6,0.07777777777777778,171.4892959373194,46.820759800000005,0.9648910359094,5.392800000000001,1.369135802469136,7.120603,99.27082235564525,17.0,6.226,1.0,0.0,176.33957740008998,35.7336,1.45360874,6.952000000000001,1.345679012345679,9.0072,125.16111405673689,19.18820861678004,0.15764671201814057,0.01835774885695052,0.8480725623582765,4.490187844685198,1.7161546352066244,86.49725256235826,0.3716704938485306,0.15485351473922898,2.947523519899247,0.11794338775510205,48.3527040735163,2.6234796949082675,-0.018943248814677387,-0.01216303870074416,0.12162440733869313,-0.24704210153945622,-0.3339370877110967,11.224341809936085,-0.061108929798433076,-0.007814770150484433,-0.8402544743585963,0.008246001855287545,1.091778287025656,2.291842863271435,0.06683192376049513,0.004595647796568762,0.04253232824661399,0.8966593199397433,0.057174670636638884,10.780108979469258,0.05025504703737291,0.0572014402157259,1.0493517602407798,0.03698326861555432,4.830451518938029,-3.6123503665031893,-0.042170078574065316,-0.0045982005507686705,-0.13932394663291672,-0.1992645847696914,-0.025847578369713523,-16.367563062911994,-0.027485716541075417,-0.04378773400833205,-0.1657279909987316,-0.034832112007593716,-4.799495930360391,-2.372040288983811,0.005421726520065367,0.0027165342020918156,-0.30986658229183145,0.4615915463706777,-0.3079002396697662,-10.309535227917523,-0.06934900535195918,-0.00022649369825452083,0.1384321920892596,-0.010801251542477448,-6.312292145427905,-0.8426303854875284,-0.06516467120181414,0.0010446327445127095,0.048526077097505636,-3.0524789339604155,0.03926878677545366,-3.848834380045344,-0.0105266205844654,-0.042714603174603176,-1.520490428046441,-0.015951640816326478,-7.12319162648115,-1.5607576363878897,-0.023439989329064725,-0.003497536933678062,0.08750166733360006,-0.7132400285216967,-0.12871058926737025,-7.735246962918482,-0.007537751513673578,-0.028152394291049588,-0.39665418954250414,-0.014753707082833176,-9.906201988936326,12.707029478458049,0.08390424036281222,0.001648777202086085,0.12335600907029472,2.221099633268946,0.13337764400779867,59.152551218594134,0.18998308534794064,0.09653696145124739,0.7679197378794018,0.048631897959183545,39.66810202093576,-52.56916099773242,-0.09698004535147381,-0.0026295390892756825,0.5804988662131518,3.5274488396181525,0.34752722081432713,-244.07419599092972,-0.5523149287056736,-0.2232154195011338,0.7217981753998145,-0.1677208163265305,-70.53540449963181,,,0.5010204081632653,1.4285714285714286,0.7857142857142857,0.03571428571428571,0.6428571428571429,0.14285714285714285,0.5785449220092619,0.030443795158955882,0.04272950944467017,0.8911773614779924,0.2717643152686275,0.19166428688478052,1.4697222834872543,0.46342860215340803,1.9979231125145973,1.1779219805484853,0.28598212368024384,0.24851870641435614,0.12626730974287012,0.820001131966112,10.951984578285714,1066.0,141.19230000000002,83.0,206.04938271604937,3377.6503451317435,4350.099616000002,42.292298333943016,144.69240000000002,149.2769871208657,175.27955400000005,5625.879520562964,987.0,144.27480000000003,100.0,146.11111111111111,3190.327802397701,3887.107571999999,48.77323815999999,149.3521,59.56995884773663,178.79711,6767.538874722756,1344.0,250.25990000000002,151.0,322.0,5686.192581134147,5278.751285999999,70.39661012454697,255.89490000000006,199.0,305.4939140000001,9881.309120420861,1437.0,286.8328,153.0,273.44444444444446,6765.75088823336,5474.099252,78.29284727484898,294.76520000000005,165.15174897119343,356.1053,10600.745479847721,1333.0,284.5232,121.0,231.62962962962962,6857.808314589085,5016.311509,67.90966342624502,290.825,193.12642889803385,356.716947,8864.668124164891,922.0,239.75320000000002,71.0,89.33333333333333,5857.203717172977,3444.6083459999995,41.659233674546996,244.42110000000002,165.34259259259264,301.040424,5841.759268462543,229.0,100.22500000000001,28.0,7.111111111111111,2796.8963591536376,752.065607,19.928310206547003,102.73650000000002,42.921810699588484,130.407698,2272.8115240738784,126.0,52.61500000000001,16.0,0.7777777777777778,1714.8929593731941,468.207598,9.648910359094,53.92800000000001,13.69135802469136,71.20603,992.7082235564525,51.0,18.678,3.0,0.0,529.0187322002699,107.2008,4.36082622,20.856,4.037037037037037,27.0216,375.4833421702107,402.95238095238085,3.3105809523809517,0.3855127259959609,17.809523809523807,94.29394473838916,36.03924733933911,1816.4423038095233,7.805080370819143,3.2519238095238086,61.897993917884186,2.476811142857143,1015.4067855438423,57.71655328798188,-0.4167514739229025,-0.2675868514163715,2.675736961451249,-5.434926233868037,-7.346615929644127,246.9355198185939,-1.3443964555655277,-0.17192494331065752,-18.48559843588912,0.181412040816326,24.019122314564434,84.7981859410431,2.4727811791383196,0.1700389684730442,1.5736961451247176,33.1763948377705,2.115462813555639,398.8640322403626,1.8594367403827976,2.1164532879818583,38.82601512890886,1.36838093877551,178.72670620070704,-155.33106575963714,-1.8133133786848086,-0.19772262368305282,-5.990929705215419,-8.56837714509673,-1.1114458698976815,-703.8052117052158,-1.181885811266243,-1.8828725623582783,-7.126303612945458,-1.4977808163265298,-206.3783250054968,-101.99773242630386,0.23313424036281077,0.11681097068994807,-13.324263038548752,19.84843649393914,-13.239710305799946,-443.31001480045353,-2.9820072301342444,-0.009739229024944396,5.952584259838163,-0.46445381632653027,-271.4285622533999,-29.492063492063494,-2.280763492063495,0.03656214605794483,1.6984126984126973,-106.83676268861454,1.3744075371408782,-134.70920330158705,-0.368431720456289,-1.495011111111111,-53.21716498162544,-0.5583074285714267,-249.31170692684026,-26.532879818594125,-0.3984798185941003,-0.05945812787252705,1.4875283446712009,-12.125080484868842,-2.1880800175452944,-131.4991983696142,-0.12814177573245084,-0.478590702947843,-6.7431212222225705,-0.250813020408164,-168.40543381191753,127.07029478458048,0.8390424036281221,0.01648777202086085,1.2335600907029471,22.210996332689458,1.3337764400779868,591.5255121859414,1.8998308534794064,0.9653696145124739,7.679197378794018,0.48631897959183545,396.6810202093576,-157.70748299319726,-0.2909401360544214,-0.007888617267827048,1.7414965986394555,10.582346518854457,1.0425816624429813,-732.2225879727891,-1.6569447861170208,-0.6696462585034014,2.1653945261994436,-0.5031624489795915,-211.60621349889544,0.7389239273350887,0.6324570910297023,0.43253336200984754,0.37924549147849107,0.29645114302372744,0.21418321926959996,0.17282303516317415,0.12275503313745388,0.11401152124949408,0.07037425555120003,0.07298634954778237,0.04022769333338517,0.04826118293035829,0.023034438596278198,0.034028463564790404,0.014045302372800734,17.00110312436482,5.699333798342652,3.5808297707911767,2.1847025643825426,0.4823185765828938,-0.3640855381132749,4.04401224242736,0.9716291794174539,6.017568179508072,0.6449094442800514,14.552816355781172,10.319757391027412,35.45051720552444,11.711101848205843,2.954644077008163,0.7609967300510511,3.536922176406277,2.239153983210671,7.014202875758359,0.29973640446161054,3.7682649623645936,2.4385190557349263,24.441830341891848,14.702151164000853,0.4416564097825072,0.7525572259653319,0.7996565598110271,0.8467558936567222,0.8467558936567222,0.8467558936567222,2.1261015848465954,522.1428588468092,0.0,1.0,1.0,0.0,6.0,0.0,0.0,0.0,0.0,2.2691183073525347,0.774507738404306,0.548084524015569,0.32166130962683237,0.32166130962683237,0.32166130962683237,-88.4924538918765,412.58046949331083,38.786115689984584,19.646689023490996,41.43204946097863,,7.0,148.0,10.023291153407584,8.417796984328938,4.895483475517775,16.54563937418216,0.0,6.06636706846161,19.056471336613843,0.0,9.714499597087755,11.600939890232516,7.014285714285715,20.0,11.0,0.5,9.0,0.0010204081632653658,0.0,2.0,0.28312925170068004,0.09402872260015116,-0.18910052910052888,0.042312925170068016,0.17797379912663736,0.0,0.7231292517006804,0.9346938775510203,0.4400000000000004,0.6291005291005293,0.8923809523809523,8.099628908129667,0.4262131322253824,0.5982131322253823,12.476483060691894,3.804700413760785,2.6833000163869274,20.57611196882156,6.4880004301477125,0.5360262008733626,0.26816021724372024,0.11880515953835709,0.285132382892057,0.125,0.6151827119373937,-0.6607297245756832,-0.07654930138537028,-0.03146332021788968,-0.0734144138417426,0.38481728806260634,0.4133084623799423,0.02441953367820409,0.019681355351425827,0.03444237186499519,-3.2362359592873204,0.6982553017769281,0.6903759453160938,1.7590172681527374,1.0719494409333985,0.7575946504460043,1.3647798377062244,0.6757699002996647,1.2239767978279492,0.5905175810682295,0.8090610541818231,0.49744332965044513,0.8106304857780624,0.5580432713498185,0.4255724031996934,0.727421756633138,0.9712386182974421,0.6923238686895684,1.010779836800348,0.549939167058905,0.6731070855521581,0.4321018094110653,0.46644163244416736,0.4946387455861907,0.7246135019614055,1.0971346594625497,1.0987813629951093,1.417897485530679,1.1491108071135434,0.9094595836821598,1.0931149092842394,1.0908171896868257,1.0203554885125026,1.1017735749026936,0.796482242392678,1.1086548171305368,0.9596701061364545,1.190630616765513,1.0364723384660197,1.0680677404502728,1.4363885088919293,0.906780135312143,1.1768513359537742,1.1691030462371137,1.3362644246328228,1.0326910330138679,1.1056299158401732,1.109692066084641,1.11340966206807,0.9728196643819431,1.89456605228258,0.7902392407532917,0.6898395721925136,1.885282491863786,0.7422492016959675,0.9914578932329994,0.8560083899823836,1.709836228811077,2.262411050532238,1.6245387646488754,1.0830384534364457,1.0379273430005425,0.9528627927059097,0.497006836011532,0.4954388172381253,1.07915141317447,0.7822260567398212,1.0759883605284823,0.8158728116339814,1.0951888164799324,0.8014479841747519,0.9782383980681366,1.3652065060373615,0.48640983219097156,0.11445121126776765,0.03450920014917422,0.6737967914438504,0.5095701834233202,0.5359632961358397,0.5024022761890575,0.42015875541879005,0.22743460281386543,0.028457615129742007,0.24329226785732205,0.6685776522537793,6.353108012290241,1.1988832344200844,0.34597624932658577,0.0,0.06415451949574176,0.11041435944047576,6.53063057115627,2.9337243385857494,2.8340147370640687,0.019304984218843756,3.1479549914354155,2.804122237355814,5.0,0.0,2.2222222222222228,1.625,1.3066666666666669,0.2361111111111111,0.12081632653061226,0.0,0.0,0.0,3163.0906265099593,3345.081520217519,1717.9879190564857,1644.485037669577,8.84790385397547,0.4786704254534358,4.612673951821938,0.9181723977001842,1.0,0.125,2.123199115426226,3.6178096843744547,3.8442328987631917,4.070656113151928,4.070656113151928,4.070656113151928,0.33333333333333337,0.0,0.09661835748792275,0.07386363636363635,0.0725925925925926,0.02361111111111111,0.06040816326530613,0.0,0.0,0.0,0.6604271941539024,10.515555555555556,3.5387523629489603,2.020408163265306,86.66468298352589,1.0,3.583311877966545,39.37757430039082,,21.893776001933084,28.484915814218255,28.68966819021654,21.863638425112875,30.43079920547562,28.269298383635544,27.91326696574724,32.13897236501097,0.13672353408822338,-0.12016266354161302,-0.6625561116192659,0.14341273699562482,-0.055018210837630574,-0.194584497725574,0.129765298635863,-0.16441695213862528,-0.0504655652385055,-0.2850713382559601,0.0699149143689985,0.022579467021445112,0.11944016812842155,0.4239347773571371,0.25033830849193583,0.05015175603410901,0.1996930531539059,0.03331557044086244,0.12462949585245589,0.13521398084899816,0.369390648394725,0.35601132718922257,0.313567969510478,0.0999003388020187,-0.18825886452705115,-0.267497355537696,-0.2504773644415406,-0.1642830493719687,-0.04437778366122266,-0.01506133412424195,-0.18922639249278084,-0.07395183905095479,-0.28276874491399145,-0.056226181022771465,-0.29532907838732936,-0.09926013492571487,-0.12361968416944705,0.03439162447892655,0.14797752291198246,-0.36537744061683874,0.10280005254502651,-0.17941287652828275,-0.11918916407761154,-0.18658733071294448,-0.0014626319501751888,0.04696559371101864,-0.09157996686431624,-0.13054682807047535,-0.04391396832900025,-0.41335889830874223,0.05690418540164285,0.05721925133689836,-0.6798109654974627,0.02288184640816223,-0.04449660845898676,-0.028322454320937798,-0.2758387708960558,-0.5158535352750688,-0.13524828411278558,-0.1473173375298913,-0.08133941357209401,-0.14868682656931953,-0.1905210143646693,0.10317709971689207,-0.15884414042185827,-0.07499941242292163,-0.0894276608073988,-0.020280736938847476,-0.18180016345420255,-0.13457201846384678,-0.12509143041971807,-0.20487379514235157,0.6622311510281259,0.5322295612049128,0.08981369202367279,0.14545454545454542,0.4946562839008943,0.07771889622973284,0.6838662439127696,0.5111599884637755,0.6234082682192535,0.2605304869308222,0.4123325511063235,0.8203905610040689,-2.7396596549279133,-0.6151732827787377,-0.14323864596720962,0.6844919786096256,0.7855904834345429,0.2025034421053118,-2.821756631113455,-1.4860338333200112,-1.4414617574358919,0.2448829230799445,-1.4220450973884726,-1.458768560128272,1.6509636244473134,6.294690380529889,2.525064635825322,30.719881785089278,43.547971753526966,46.267540981550084,46.49577558165393,46.49577558165393,46.49577558165393,27.970923575204363,16.490907727678795,4.003749731523413,3.479261889800986,1.7677423364001816,11.480015847525568,1750.380753231333,1360.8960212482873,490.6025416769453,12.0,23.0,28.0,38.0,46.0,42.0,37.0,28.0,29.0,229.991676144,15.0,4.343805421853684,5.187385805840755,6.111467339502679,6.980075940561763,7.902857191280582,8.780941113572387,9.700820421076743,10.58347350281825,11.501126125754185,0.936507936507937,1.0249523809523806,1.1202587472295207,0.9145029754471098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7673667236954662,1.0177404295051358,1.0446363541775048,0.7199920618766539,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,10.731103261275045,0.0,0.0,10.023291153407584,0.0,0.0,8.417796984328938,4.397710993081425,11.600939890232516,25.122838405075452,5.022633313741326,5.687386274683562,236.3159664133846,-253.81237211529813,-29.405608747006198,-12.086303434061817,-28.201374679477574,147.8235125215081,158.76809737801273,9.380506942978382,7.5603855894291785,13.23067478150106,0.42857142857142855,0.9812062394241392,0.3185708516069531,21.555695833153923,0.2658718768325425,1.3254843667123632,0.018793760575860824,4.0,0.0,0.4833892706422394,0.8236676305797771,0.8752174601104243,0.9267672896410715,0.9267672896410715,0.9267672896410715,1.8726,,2.0577731092436973,1.034781686231729,0.8415279599975453,2.070074984872557,-2.542869279879017,1.0444761631780368,1.0586558634835384,-1.1957707076938315,55.369500000000016,8.417796984328938,0.0,0.0,4.397710993081425,11.819220675208399,5.316788604006331,23.221734519126155,0.0,0.0,3.4339872044851463,0.0,4.812184355372417,0.0,6.38856140554563,0.0,8.066835314417336,0.0,9.799847777776368,19.666666666666675,4.6290354938271605,0.0,0.0,0.0,0.0,0.0,1.0151648715041584,0.0,21.523999999999994,0.0,23.09901234567901,0.0,0.0,-3.57273148148148,0.0,3.516172839506173,0.3609467120181409,23.525433691819934,5.316788604006331,5.687386274683562,0.0,14.253416770086208,10.023291153407584,0.0,6.923737199690624,27.492295673984028,5.022633313741326,0.0,0.0,19.204562484389307,16.11470119760479,16.942023429964696,78.75514860078168,,44.129309663638004,56.822005673254026,57.259118100428296,44.06589954329687,62.41600559985602,56.389385886808974,55.675297379556596,64.79041789046201,16.9420234299647,78.7551486007817,,42.65947172846395,55.93504994219824,56.53780842043042,42.587274554102194,63.50580671980417,55.49412060408493,54.7678780679993,65.47371543771567,4.9256022025462185,55.226138185982634,,31.05470913630251,40.93284652353341,41.157798123941,31.01667254531919,42.93145405398329,40.58472547570264,40.002905585106625,45.70642658375604,1.210144530711764,5.625367757198691,,3.1520935474027145,4.058714690946716,4.089937007173449,3.1475642530926335,4.45828611427543,4.027813277629212,3.976806955682614,4.627886992175858,2.4628011012731092,39.37757430039082,,21.893775998966934,28.48491581421499,28.689668190213972,21.863638422047426,30.430799205475232,28.26929838363149,27.91326696574141,32.1389723650109,21.37254901960785,0.0,1.5923582766439908,5.699631991685562,0.0,0.0,0.0,21.9373634377276,0.0,2.8548533950617285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.119833299409732,376.92005354005437,44.587181423950746,75.97400337186355,80.72889087402703,85.4837783761905,85.4837783761905,85.4837783761905,312.0,100.09195286226102,7.219425394838305,46.5014160575969,66.91,58.53,0.75,7.569830951237419,4.906890595608519,3.4536428745410914,3.69421538900192,,3.670189172118158,3.687443448707514,3.6892035544870163,3.670392225239294,3.6777276533493897,3.689083798865233,3.688687812666659,3.6859367673353485,0.2466887767529351,0.2638725277858514,,0.2621563694370113,0.2633888177648224,0.26351453960621546,0.26217087323137817,0.2626948323820993,0.26350598563323097,0.26347770090476136,0.26328119766681063,1.5759018162522922,1.643240424495374,,1.6367154428955493,1.6414056222258293,1.6418828324846753,1.6367707663393465,1.63876731257648,1.6418503708533894,1.6417430251073282,1.640996940902206,144.94999999999993,59.951229900877706,61.133763331986486,,61.172365895992996,60.868894223442005,60.930210045728,61.15580521145212,61.54697829559072,60.7936761930103,60.79443601718814,61.189131116174515,4.28223070720555,4.366697380856178,,4.369454706856643,4.347778158817286,4.352157860409143,4.368271800818008,4.396212735399337,4.342405442357879,4.342459715513439,4.370652222583894,4.430003633328463,4.449536541534588,,4.450167786518499,4.4451945127626304,4.446201348204215,4.44989702820515,4.456272994554929,4.443958010200538,4.4439705085305805,4.450441814226492,26.615185185185183,0.12092592592592633,3.2334441924918123,0.5156481481481485,0.3609467120181409,4.6290354938271605,0.0,1.5923582766439908,-3.57273148148148,174.05965465479056,90.77829220203316,-97.49935237159971,-11.295855221838282,-4.64282630340951,-10.833261374622191,56.784847074337705,60.9890941982741,3.6034230492208583,2.904242580870196,5.082424516522842,268.0,22.0,1.912344881706,0.9666870776084155,0.2041241452319315,0.04564354645876384,0.34344336196330355,0.14504354129421265,0.08333333333333333,0.013176156917368247,0.0,0.0,0.0,0.0,0.0,0.0,0.11615390417644599,0.058288921060307294,0.36255354408981816,0.1704801297519807,10.344934982691242,8.854399274415831,6.488000430147713,5.688682372177366,6.818376289545731,4.926214043200799,4.8390449845688766,3.437140927848709,4.332437807480775,2.674221710945601,3.357372079197989,1.8504738933357177,2.0269696830750483,0.9674464210436843,1.259053151897245,0.5196761877936271,2.9857939391123254,1.6147781421934968,5.227156817622064,2.3871343855787113,7.94998893562096,3.2342041853119765,45.75231300956215,31.10878432827672,27.654715176796103,27.07903698488267,27.07903698488267,27.07903698488267,76.0,89.0,26.911550999999996,15.898448999999998,0.47619047619047616,43.06,5.756944444444445,2.9027777777777772,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,21.0,0.0,2.0,22.0,6.0,3.0,6.0,16.0,9.0,15.0,13.0,0.0,0.0,0.0,8.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,3.0,1.0,1.0,14.0,6.0,0.0,2.0,2.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,3.091042453358316,5.547737640940466,3.7954891891721947,4.26619481914876,4.8432023497960515,5.302993914431939,5.467532575836691,5.6866575092216065,5.678037224904343,5.959554545462138 +24857286,Cc1cc(OCCCS(C)(=O)=O)cc(C)c1-c1cccc(COc2ccc3c(c2)OC[C@H]3CC(=O)O)c1,1,25.797101449275363,6.200486956521739,3.2753623188405796,7.513687600644123,159.41869564063146,101.96801686956523,1.5654803036980867,6.274552173913042,4.969718544362935,7.766256130434782,223.01713982663006,28.25,6.2844444444444445,3.861111111111111,6.291666666666667,142.0062744889313,107.83548916666668,1.9193911332777778,6.453227777777777,2.8808513374485596,7.769067777777776,272.82425686498243,21.69291338582677,6.245984251968504,3.543307086614173,5.349081364829397,150.07363600923927,80.40997165354332,1.60258943014752,6.36733622047244,3.5203047535724696,7.7835766456692905,225.8375063286097,17.466257668711656,6.214944785276074,3.0306748466257667,3.781186094069529,153.75665068585425,62.08595132515337,1.4337854584707668,6.312779141104294,3.0093444671665526,7.780103226993864,196.98578972816344,16.089887640449437,6.0236292134831455,2.8258426966292136,3.331460674157303,155.7333984541816,57.215123421348316,1.336567953478472,6.118852808988763,2.7155378693300043,7.61251066292135,180.01603007285823,15.335195530726256,6.089273743016761,2.5754189944134076,3.4841713221601487,156.4627877662761,53.755568670391064,1.293974565234207,6.172211731843574,3.1327505345196234,7.669875631284917,172.11144108025738,13.713483146067416,5.808258426966293,2.5224719101123596,2.808988764044944,159.77100417467528,48.42111358988765,1.224251083533691,5.892221910112361,2.442363712026633,7.438955235955057,158.43227762256905,15.483660130718954,5.937228758169935,2.679738562091503,3.270152505446623,155.90844469419005,54.601524627451,1.3118503780955624,6.035794117647058,2.7104615508754946,7.540290169934641,171.40726719430478,14.8,5.926580645161291,2.52258064516129,3.270967741935484,161.2094966744716,52.90257154838709,1.2214417227919485,5.999159354838708,2.664356829948227,7.564613612903226,159.18908580653658,9.564377231674019,0.14175442134005464,0.02206875237876552,0.6406217181264443,4.143713972321407,1.3936698832746246,44.15777986389414,0.2783612471021247,0.13205687880697328,1.9034600113116134,0.0947209972694812,51.89440675929332,1.6187950710635022,-0.0037260799551913893,-0.009428080737530565,0.16090807253378134,1.0013253907131245,-0.03333562306509177,7.079658810018888,-0.003993335170820258,0.0002582781978577067,-0.29424225912422675,0.0019962152909052495,1.6958311591721495,-0.4290354537440856,0.01413849204577223,0.0010273113953199933,-0.020742681266921074,0.291956206587388,0.024928442162502364,-1.6047379029218787,-0.009886252006863815,0.012811796304290005,0.458571904977522,0.006429286537434218,2.643587182609354,-2.0180982239386216,-0.03236098308985446,-0.0019385141082975225,-0.05059771172473693,-0.9576692986800417,-0.019313304818504327,-9.309607860159815,-0.011667026667570184,-0.032089545295814696,-0.3948345439868724,-0.019610646598191096,-5.697191373292013,-0.45250620089727156,-0.003907328032775679,3.6562454365085026e-05,-0.08379058313214344,-0.4662365437448097,-0.07418768654098622,-2.1519393648711795,-0.020120877027846294,-0.0036973933811469155,-0.09091292817903862,-0.001461990023104379,-2.738460732825014,-0.9115555977982183,0.007973438752245621,0.0015772178380962136,-0.0039931050586762265,-0.1675087167865433,-0.12609244874847747,-4.484235639458871,-0.025157752020157062,0.0039531365763964665,0.0214295973781516,0.009029535966694011,-8.299117054227501,1.109535811804243,0.0011460508957374903,-0.001232257299395032,0.00495717781884177,0.18355809701221507,0.1116449506952196,5.20274308017035,0.02849867894244849,0.0030317142560456253,0.062113137210686,-0.000943069896089203,6.021596639216851,-0.462833232431809,-0.001753815107223367,-0.001077002504801558,0.03116003805428913,0.2250039925886573,-0.22306934426754715,-2.2274820770228687,-0.037304538101837446,-0.0013742132769932565,0.035606554693063765,-0.0027028935468326977,-6.062903070076201,1.5041594677182215,0.00805980960898693,0.0016147123101923262,0.03642363016715112,0.49414380130074187,0.2777665399165116,7.075600739191417,0.059722694120288654,0.008499147373484771,0.06347611386001385,0.004844707078344905,9.92975938253896,,,0.47747747747747743,1.2432432432432432,0.6351351351351351,0.02702702702702703,0.6081081081081081,0.02702702702702703,0.9704514764908381,0.022374997555169036,0.03167229485246633,1.030049849125506,0.23910285784651758,0.2362035922300187,2.000501325616344,0.47530645007653627,2.02912352453261,1.623205835041644,0.0,0.34902216521478896,0.0,0.405917689490966,7.596911222666678,1780.0,427.8336,226.0,518.4444444444445,10999.889999203571,7035.7931640000015,108.01814095516798,432.94409999999993,342.9105795610425,535.871673,15388.182648037475,2034.0,452.48,278.0,453.0,10224.451763203053,7764.155220000001,138.196161596,464.63239999999996,207.42129629629628,559.3728799999999,19643.346494278736,2755.0,793.24,450.0,679.3333333333334,19059.35177317339,10212.066400000002,203.52885762873504,808.6516999999999,447.07870370370364,988.5142339999999,28681.36330373343,2847.0,1013.0360000000001,494.0,616.3333333333333,25062.33406179424,10120.010065999999,233.707029730735,1028.983,490.5231481481481,1268.156826,32108.68372569064,2864.0,1072.206,503.0,593.0,27720.54492484433,10184.291969,237.90909571916802,1089.1557999999998,483.36574074074076,1355.0268980000003,32042.853352968763,2745.0,1089.9800000000002,461.0,623.6666666666666,28006.83901016342,9622.246792,231.62144717692303,1104.8258999999998,560.7623456790126,1372.907738,30807.94795336607,2441.0,1033.8700000000001,449.0,500.0,28439.2387430922,8618.958219000002,217.91669286899702,1048.8155000000002,434.74074074074065,1324.1340320000002,28200.94541681729,2369.0,908.3960000000001,410.0,500.3333333333333,23853.992038211076,8354.033268000003,200.71310784862104,923.4764999999999,414.70061728395063,1153.6643960000001,26225.31188072863,2294.0,918.6200000000001,391.0,507.0,24987.4719845431,8199.898589999999,189.32346703275203,929.8696999999999,412.97530864197523,1172.51511,24674.30830001317,659.9420289855072,9.78105507246377,1.522743914134821,44.202898550724655,285.9162640901771,96.1632219459491,3046.8868106086957,19.2069260500466,9.111924637681156,131.33874078050133,6.535748811594203,3580.714066391239,116.55324511657216,-0.26827775677378,-0.6788218131022007,11.585381222432256,72.09542813134496,-2.400164860686607,509.73543432135995,-0.28752013229905854,0.01859603024575488,-21.185442656944325,0.14372750094517797,122.09984346039477,-54.48750262549887,1.7955884898130732,0.13046854720563913,-2.6343205208989766,37.07843823659828,3.1659121546378004,-203.8017136710786,-1.2555540048717044,1.6270981306448307,58.23863193214529,0.8165193902541457,335.735572191388,-328.95001050199534,-5.274840243646277,-0.31597779965249617,-8.24742701113212,-156.1000956848468,-3.148068685416205,-1517.46608120605,-1.90172534681394,-5.230595883217796,-64.3580306698602,-3.1965353955051485,-928.6421938465982,-80.54610375971434,-0.6955043898340708,0.006508116876985135,-14.914723797521532,-82.99010478657613,-13.205408204295546,-383.04520694706997,-3.5815161109566405,-0.658136021844151,-16.182501215868875,-0.26023422411257946,-487.44601044285247,-163.16845200588108,1.4272455366519663,0.28232199301922223,-0.7147658055030446,-29.98406030479125,-22.57054832597747,-802.6781794631379,-4.503237611608114,0.7076114471749675,3.835897930689136,1.6162869380382279,-1485.5419527067227,197.49737450115526,0.20399705944127328,-0.2193417992923157,0.882377651753835,32.67334126817428,19.87280122374909,926.0882682703224,5.0727648517558315,0.5396451375761213,11.056138423502109,-0.16786644150387814,1071.8442017805994,-70.81348456206678,-0.26833371140517515,-0.16478138323463837,4.767485822306237,34.42561086606457,-34.12960967293471,-340.8047577844989,-5.707594329581129,-0.21025463137996825,5.447802868038756,-0.41354271266540277,-927.6241697216587,233.14471749632432,1.249270489392974,0.25028040807981056,5.645662675908423,76.59228920161499,43.053813687059304,1096.7181145746697,9.257017588644741,1.3173678428901394,9.838797648302148,0.7509295971434603,1539.1127042935386,0.7183452708768576,0.598313286180818,0.439658466320796,0.35683197923712534,0.30027793916867906,0.20733664849743427,0.17829148887156024,0.1068364067078466,0.117735502335985,0.057887738166456607,0.07478009254956718,0.02841378670886529,0.049158137988535126,0.015799004064096962,0.03214692535388072,0.008784854040583951,16.013221947250635,5.668559017378781,3.5806271993373904,2.1683539666205363,0.4332358097948372,-0.5251254246080812,4.03801620574117,0.9677939861914729,6.023205425105179,0.6119720367496606,13.647900235854948,10.310065033050856,32.06659406378891,11.679679126304613,2.958276230955575,0.7414614318354884,3.536321112088135,2.218309427023224,7.014587629450952,0.29549165573808367,3.767580674533306,2.4143173000343894,24.443825006216585,14.699972432340875,0.2288871983953306,0.5459730208107062,0.7905644848613027,0.8779187224170066,0.8915220083597954,0.8915220083597954,1.1802524220101605,1372.109252401068,0.0,1.0,6.0,0.0,12.0,2.0,6.0,1.0,0.0,4.6454048306246785,2.618491603482741,1.054985326369148,0.49658931168826737,0.40963278994913654,0.40963278994913654,254.2603097765869,2717.6937849842193,102.78219742474585,39.38686644904666,79.80333260343613,,22.0,1309.0,15.806558424369351,13.212334168400758,18.09158127583419,37.740491183032574,39.13022078346588,6.255769183511404,0.0,56.31204387861251,12.13273413692322,19.31711625624085,17.666666666666664,46.0,23.5,1.0,22.5,0.0,0.022522522522522587,1.0,0.15518288474810193,0.06126936531734162,-0.09391351943076032,0.014532954006638232,0.15374630021141622,0.0,0.5961352657004816,0.8522522522522518,0.44095238095237965,0.53486590038314,0.8377192982456135,35.90670463016101,0.8278749095412543,1.1718749095412542,38.11184441764372,8.84680574032115,8.739532912510692,74.01854904780473,17.58633865283184,0.5602536997885837,0.16037735849056606,0.04716981132075473,0.3113207547169812,0.3448275862068966,0.35076045728212074,-1.119042246124219,-0.07865301753160746,-0.016218003567017667,-0.048654010701053,0.6492395427178793,2.0712895683429977,0.04200417947004854,0.03001868939627533,0.04502803409441299,-7.888630339477179,0.8472124619348793,0.7113661112796972,1.346143792921977,0.9721584699453547,0.5562256177463383,1.1628242290992825,0.8407705560940538,1.206531163405551,0.6816443192453017,0.756921693178556,0.6877984479627511,0.9965507202087778,1.0867812124766907,0.804475311153994,0.977611926155607,1.3142687491932357,0.9185553752794205,1.0500589960697126,1.0664197663955968,1.1449491754420151,0.7997480646791958,0.5143489505616954,0.8556188029874908,0.9506645055815908,1.0850739278893204,1.2605432495207884,1.1021773560165773,1.1230976566428639,1.2655184621617923,1.0224553478041256,1.0922303094224708,0.9871016084549197,1.2607443343480789,1.2092930375949271,1.2576638038895909,1.0739594025499528,0.9134612347706619,0.8932190499261173,0.9630951039019257,1.1494492540062622,1.0771467784511959,1.042633463916946,0.9250819686830657,1.0110810090210895,0.90043927684949,0.7181617400625127,0.8734653810004998,1.0437167199547797,0.8931036699552837,0.8908467608551595,0.9356174078050332,0.8379338767286377,0.9998977413937113,1.0618558586397064,0.9167362422206412,0.9657151362310838,0.9166485385199803,0.7838445084513523,0.849271845127728,1.1306846145249327,0.7340106753416978,0.7500424736618009,0.8931630210412875,0.903138699576349,0.867744872172454,0.874148134583556,0.7475245144134577,0.80278442676222,0.7607014114142425,0.48543573147386027,0.7344227658483563,0.8936824399841699,0.9771902084797377,0.7979689021229243,0.8772222790443215,0.8747540983606553,0.8247256233784279,1.1545220156376088,0.983556477607524,1.1212434830262457,0.8119494526575676,0.6255936730709948,0.7974179708850083,1.125414669504279,0.7797752363248929,0.8735301445819099,0.8452309952257366,0.8783543098889472,0.8794664558206193,0.7556738742072474,0.7843175079185305,0.7186004989627554,0.8773086521724114,0.674605285400329,0.8619108735863232,0.8017536395349079,9.5,0.2931333537394143,3.555555555555557,2.979166666666667,1.9950000000000003,1.3511111111111112,0.8653514739229025,0.5503472222222222,0.5558232552280171,0.24406635802469137,7586.298501177007,8539.293604802133,3839.0694989475573,3516.8587138380735,19.60053999001264,0.41525834809474144,11.46125213199507,0.7101569500679639,0.0,0.3448275862068966,1.4631196261534904,3.4900328532954283,5.053539130409021,5.611935145089902,5.698891666829033,5.698891666829033,0.23750000000000002,0.008375238678268983,0.06237816764132556,0.05416666666666667,0.03694444444444445,0.02757369614512472,0.01923003275384227,0.01310350529100529,0.013556664761658954,0.005675961814527707,0.47850437819686453,29.97,13.573407202216066,8.74102079395085,217.4759135590055,0.0,4.533220683139355,304.36047528464945,,230.8968994883317,236.8542781806691,245.7182328035739,230.9434056652592,325.14873906795873,238.29001320534607,238.21915165594237,282.863033370508,0.16925253279456548,-0.02628545847083596,-0.4272140343829419,0.2511748633879779,0.2416492541236282,-0.023919310781664448,0.16032642111628467,-0.014345873257836032,0.001955810255331192,-0.15458284249505921,0.021074686167270998,0.03267849591263432,-0.044857646593367696,0.0997393373138987,0.04655049717755993,-0.032378985413708594,0.07045761568910298,0.017886905975129104,-0.036341000563617595,-0.035515906433760035,0.09701725816961743,0.24091491402623938,0.06787604356764636,0.05094165918248862,-0.21100152943103867,-0.22828905641132496,-0.08783976887441786,-0.0789821985316303,-0.2311137556976532,-0.013857876280661947,-0.21082599462324572,-0.041913257642827724,-0.24299790806596136,-0.2074299127066003,-0.20703589661750302,-0.10978430488121445,-0.04731162206763682,-0.02756406463966574,0.0016567522140610584,-0.13079572665315894,-0.11251658460480392,-0.05323189331369617,-0.048732961020776434,-0.0722833269261234,-0.027998491366370795,-0.04776193229107736,-0.015434698379969731,-0.05276986295511715,-0.0953073656253803,0.056248254388610155,0.07146837351865017,-0.00623317153585492,-0.04042477784553766,-0.09047511915246774,-0.10155029653393946,-0.09037806908131588,0.02993510532817258,0.011258233559309263,0.0953277121967475,-0.1599231511157276,0.11600711524947298,0.008084762964734829,-0.055837198145406074,0.007738073310001855,0.04429796511977429,0.08010860536994167,0.11782166350316002,0.10238019565989712,0.022957639794569606,0.03263170060919001,-0.009956291881156713,0.11603556173495509,-0.04839136111225937,-0.012372207446116551,-0.04880214732201383,0.048640308582449346,0.05430007816456615,-0.16005895437979484,-0.05044370627075349,-0.13401484039246034,-0.010406222602019358,0.018706226808793545,-0.028535315555673114,-0.11683153250403903,0.15726684877473762,0.05685755359723317,0.07316735819402265,0.056856689582231605,0.11925142628121861,0.19930583508331243,0.16023452177623682,0.21455103661889294,0.0643597474835667,0.03334775276748498,0.05114712912662559,0.19134546481275122,17.943785671700915,32.85130089236563,11.505761391240425,15.028036903680821,34.79845929749736,43.87526650669837,45.51050650109089,45.598158675003944,45.598158675003944,75.07757040770657,60.05861589654083,0.0,12.91382011294719,0.0,15.018954511165743,21906.15610488858,19737.653560566345,3614.486990303103,172.0,57.0,69.0,92.0,110.0,122.0,136.0,152.0,161.0,524.1868743640008,40.0,5.272999558563747,6.102558594613569,6.99117688712121,7.839525581704678,8.730851903519232,9.589256144850811,10.481812933648735,11.34674100207642,12.239986030469176,0.6714975845410627,0.9845797101449272,1.1163823807304545,0.6330284196008731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6793489195521999,0.9719238420005684,1.0086502633606722,0.6356506281766507,9.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,1.0,6.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,19.31711625624085,33.69267060078214,0.0,0.0,0.0,4.794537184071822,8.417796984328938,0.0,0.0,24.26546827384644,72.35102175463868,23.8034937898314,25.387439158698633,298.7963541757916,-953.2595147738424,-67.00081036918768,-13.815355286577425,-41.44606585973228,553.0566639523785,1764.434270210377,35.78138705555816,25.571511162469232,38.357266743703846,0.5,0.7486639171985597,0.15470021162252953,74.65268163216614,0.09516216904278761,41.456682481576806,0.25133608280144015,11.0,0.275,0.23952095739421603,0.5713381157740642,0.8272929356616538,0.9187055212429837,0.9329407956295243,0.9329407956295243,5.313640000000005,,2.375,1.9754098360655736,1.125038805878316,2.3702177561237945,-7.151921919339582,1.8226744186046515,1.8108197056921882,-2.635382471234712,142.4375999999999,32.52945042464161,0.0,0.0,0.0,39.21390565590758,25.222386719284028,76.85110958294248,0.0,28.375438483245706,4.394449154672439,0.0,5.733341276897746,2.3978952727983707,7.240649694255466,4.727387818712341,8.832441791585824,6.823286122355687,10.472799042021169,46.33333333333332,17.71986446762485,0.0,0.0,0.0,0.0,0.0,8.35786571346595,0.0,67.93599999999998,0.0,33.67354206420385,0.0,0.0,-2.9893792984784024,0.0,0.0,-0.8343533601166186,77.03038427040136,14.210588861400147,0.0,17.248535499851716,44.716016386405514,21.23867228500224,13.847474399381248,41.0133552588014,54.59730361615449,0.0,11.126902983393991,0.0,43.678960952460244,46.87507544910179,46.19121955847612,608.7209505692988,,462.44377147003473,473.60177745128055,491.375652698722,462.53762265555997,653.450932618475,476.48150346914593,476.340421165631,566.7232384868885,46.19121955847612,608.7209505692992,,460.32552822679145,471.73314652527273,490.3114268012696,460.4236446568551,657.510131545668,474.7573519920874,474.62748360619264,568.3614492122506,4.851301606423256,466.92690970249805,,354.88203935942437,360.8219227306273,374.25988948635234,354.9566359742795,501.8953573999919,363.2311538040681,363.42377524671025,433.5856009146212,1.2484113394182734,16.45191758295402,,12.49848031000094,12.8000480392238,13.280423045911405,12.501016828528648,17.660836016715542,12.877878472139079,12.874065436908946,15.316844283429418,2.432862761166666,304.36047528464945,,230.8968994883317,236.8542781806691,245.7182328035739,230.9434056652592,325.14873906795873,238.29001320534607,238.21915165594237,282.863033370508,67.06274509803922,0.0,5.308112167505749,0.0,0.0,0.0,9.080112614003498,69.59686817188638,1.7261185932150869,0.0,17.505353151855793,0.0,-0.1305694466130931,0.0,0.0,0.0,0.0,43.859893344188905,637.7516174292515,100.95525420459084,240.81226687738456,348.6941999982225,387.2235250112032,393.22352501120326,393.22352501120326,1148.0,155.59490863656757,214.10140069891844,87.62225017329904,107.51,99.13000000000001,1.0,8.855031681787597,6.321928094887363,4.996815003342033,5.972228383405063,,5.974039691442166,5.960338104497384,5.958935690391401,5.974045875455523,5.965373663228291,5.96119740698289,5.962563887757747,5.962907177518949,0.13504905414437926,0.16141157792986655,,0.16146053220113962,0.16109021904046986,0.16105231595652436,0.16146069933663573,0.16122631522238626,0.16111344343197,0.16115037534480398,0.16115965344645808,2.9171335297824124,3.095452940961117,,3.095756183453188,3.0934600280609255,3.0932247093432608,3.0957572186003373,3.0943045158580897,3.0936041877601803,3.093833390735158,3.093890963263642,390.47000000000145,882.2334657186088,262.2867959873083,,261.9874854267582,263.8488726207197,264.06605094046336,261.9867599498794,263.24677977186013,263.7502505623656,263.5787812102427,263.6485698002764,23.844147722124564,7.088832323981306,,7.080742849371844,7.131050611370803,7.136920295688199,7.080723241888633,7.114777831671896,7.128385150334205,7.123750843520074,7.125637021629092,8.090789540991246,6.877771365901415,,6.876629556723741,6.883709306688936,6.8845320844597575,6.876626787591918,6.881424738003918,6.883335454439494,6.882685122871024,6.882949860997025,40.12030181072816,11.058593405331486,9.080112614003498,6.271381820446376,1.2342924447782624,17.71986446762485,1.7396964139742894,5.1818029882581484,-2.9893792984784024,481.69021830596654,254.53057611034168,-812.0369947194926,-57.074842530025705,-11.76865209738395,-35.305956292151855,471.12298838373067,1503.0386583674847,30.480482556089452,21.783168961847604,32.674753442771404,5393.0,55.0,3.7998792933295755,2.095157043496153,0.3535533905932738,0.14433756729740643,0.3487731593071871,0.15431063868166287,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.041666666666666664,0.4110544158647976,0.15024267730925384,0.6960341884559282,0.21620798442763084,26.578775022443732,22.137591588690267,17.58633865283184,14.273279169485013,17.115842532614707,11.818188964353753,12.302112732137656,7.371712062841415,10.83166621491062,5.325671911314008,8.22581018045239,3.125516537975182,5.997292834601286,1.9274784958198294,4.371981848127779,1.1947401495194174,5.275739290718927,2.6013071233095912,8.88425959624512,3.5606307303033473,12.168246483052755,3.856268355425306,128.07487246592274,64.03130227409845,33.30508784611934,27.91002973457509,27.25170922429935,27.25170922429935,194.0,223.0,78.28137599999998,44.83462400000004,0.3333333333333333,268.08,12.784722222222221,7.930555555555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,18.0,18.0,69.0,0.0,0.0,72.0,18.0,3.0,12.0,60.0,21.0,40.0,51.0,0.0,0.0,0.0,29.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,6.0,1.0,1.0,37.0,8.0,0.0,0.0,7.0,0.0,4.0,11.0,1.0,0.0,0.0,0.0,3.0,3.970291913552122,7.617110244648357,4.590056548178043,5.015622835607295,5.5820855396786815,6.091451274796209,6.339697709261014,6.655158779198675,7.019156885450599,7.29824421868031 +135400182,Cc1nc2ccc(CN(C)c3ccc(C(=O)N[C@@H](CCC(=O)O)C(=O)O)s3)cc2c(=O)[nH]1,0,29.88888888888889,6.571911111111109,3.4444444444444446,9.34156378600823,162.88643695701072,118.52473612962967,1.5825482945681104,6.623275925925924,7.041215769953767,8.070698759259257,230.48288714177616,28.714285714285715,6.570232142857144,4.035714285714286,8.148809523809524,148.27962989880535,110.14610149999999,1.8615467527142857,6.707008928571428,3.6690365961199296,7.9854615,273.46342821859974,26.19148936170213,6.476486170212765,3.723404255319149,6.6063829787234045,154.76975288501,99.82158046808512,1.653752888868522,6.582039361702126,4.026562910428158,7.938079914893614,235.63869325113805,22.09917355371901,6.458560330578512,3.15702479338843,4.8732782369146,158.18651498172977,81.16517980165285,1.4671336149887684,6.547409917355373,3.575068870523417,7.982666016528927,205.04936201011054,18.748148148148147,6.318577777777778,2.8,4.338271604938272,160.32923268353971,67.21717419259258,1.3461742526654,6.397941481481481,3.5337448559670777,7.897888029629629,183.9546875722432,19.6796875,6.366757031250001,2.7890625,4.609375,158.93805923781574,71.49578417968749,1.360769121956508,6.44036796875,4.151379243827161,7.92707153125,184.33691052076338,21.141666666666666,6.367915,2.7,4.58611111111111,160.16296866735001,77.28363713333334,1.3626031273748331,6.443617499999999,4.412551440329218,7.95603095,182.98617346572084,19.31192660550459,6.353394495412842,2.761467889908257,4.532110091743119,161.01786581257485,69.59221534862384,1.3312992225989175,6.42588256880734,4.108053007135576,7.942278330275229,179.4899402166746,22.172043010752688,6.340146236559138,2.870967741935484,4.164874551971326,160.7724058668611,82.05037612903224,1.3506277946654408,6.422889247311828,3.3518518518518503,7.907824924731182,186.94750320408554,10.135802469135804,0.17101111111111095,0.03369543111577388,0.6666666666666666,4.512421886907482,1.5791475603702578,46.43551695233197,0.2706136675822001,0.15567342249657054,2.955715686219165,0.11129944204389573,47.77724408220318,0.1340388007054671,-0.019966071428571337,-0.022428827257603423,0.17658730158730154,1.074659241840312,-0.14321162421236688,0.7312910357632781,0.01923259311457624,-0.01660718572408381,-0.2449552675112168,-0.014192742969821695,2.203423953470787,1.5946939847649064,0.03279148936170215,0.005747552733046796,-0.059101654846335755,0.17512736447155489,0.04953104300502862,7.260227951332344,0.025214026291530262,0.029805537314304076,0.5590098680716623,0.02271774235326739,3.6234917982237493,-1.1596775839200082,-0.026603305785123915,0.0013236000498412996,-0.029384756657483947,-0.81303747035135,-0.12607616213561373,-5.49380353007913,-0.022052793446746315,-0.024611898162319002,-0.3864295883447159,-0.014172814709950252,-5.3896830702003475,-1.7950617283950618,-0.022726666666666683,-0.005649203005500463,-0.05185185185185185,-0.3606462429507698,-0.05851614334015567,-7.902411992524006,-0.01916133469417338,-0.021058635116598095,-0.2938987582817284,-0.017813403223593934,-1.6702371625260446,-0.39361496913580224,0.008748437499999982,0.0019866334326587506,-0.058159722222222224,-0.37025367703094036,-0.006291871521985424,-1.9716560172914515,-0.000732710453003221,0.004871238961762693,0.024332729609213427,0.006434069964206129,-4.904662881649082,0.0799382716049381,0.0279458333333333,0.004467001754013656,0.005555555555555555,0.07574683737235184,0.1161491154794054,0.26402599149519906,-0.011747926541589463,0.023604833676268852,0.4438839047984631,0.02194704391289438,-1.6283937439201919,-1.1388605731113375,-0.00781467889908258,-0.006747565549181793,-0.026503567787971458,-0.18826286550075577,-0.07490998092570235,-5.003887539997609,-0.004799971006693646,-0.008208794565887679,0.12327135004880012,-0.0060565083028152064,-1.4352058725888919,1.4950219036240542,-0.011241935483870985,0.007474355989147477,-0.032258064516129045,-0.5128643843631233,-0.16106398601792835,6.257720625923716,-0.02708480374693025,-0.006003928271162441,-0.30880666752009805,0.0013247140692066305,-1.4296303439410372,,,0.4666666666666668,1.2421875,0.59375,0.03125,0.6484375,-0.0546875,0.8983084291416863,0.024383609807496376,0.032446109807496376,1.0582594834885455,0.24961014261197545,0.22332542140468742,1.9565679126302318,0.47293556401666287,2.002642920810755,1.359029657144917,0.2559495256186014,0.3236471582863436,0.0,0.6436132636658379,8.483814915259268,1614.0,354.8831999999999,186.0,504.44444444444446,8795.86759567858,6400.335751000002,85.45760790667796,357.6568999999999,380.2256515775034,435.81773299999986,12446.075905655913,1608.0,367.93300000000005,226.0,456.33333333333337,8303.6592743331,6168.181683999999,104.246618152,375.5925,205.46604938271605,447.18584400000003,15313.951980241585,2462.0,608.7896999999999,350.0,621.0,14548.356771190942,9383.228564000001,155.45277155364107,618.7116999999998,378.4969135802469,746.1795119999997,22150.037165606976,2674.0,781.4858,382.0,589.6666666666666,19140.568312789303,9820.986755999995,177.52316741364098,792.2366000000002,432.5833333333334,965.9025880000002,24810.972803223376,2531.0,853.008,378.0,585.6666666666666,21644.446412277863,9074.318515999998,181.73352410982898,863.7221,477.0555555555555,1066.214884,24833.882822252832,2519.0,814.9449000000001,357.0,590.0,20344.071582440414,9151.460374999999,174.178447610433,824.3671,531.3765432098766,1014.665156,23595.124546657713,2537.0,764.1498,324.0,550.3333333333333,19219.556240082,9274.036456000002,163.51237528497998,773.2340999999999,529.5061728395061,954.723714,21958.340815886502,2105.0,692.5199999999998,301.0,494.0,17550.94737357066,7585.551472999999,145.111615263282,700.4212000000001,447.7777777777777,865.708338,19564.40348361753,2062.0,589.6335999999999,267.0,387.3333333333333,14951.833745618083,7630.684979999999,125.60838490388599,597.3287,311.72222222222206,735.4277179999999,17386.117797979954,547.3333333333334,9.234599999999991,1.8195532802517898,36.0,243.67078189300406,85.27396825999392,2507.5179154259267,14.613138049438808,8.40636481481481,159.60864705583492,6.01016987037037,2579.9711804389717,7.506172839506156,-1.1180999999999948,-1.2560143264257917,9.888888888888886,60.18091754305747,-8.019850955892545,40.952298002743575,1.0770252144162695,-0.9300024005486933,-13.71749498062814,-0.7947936063100149,123.39174139436408,149.9012345679012,3.0824000000000016,0.5402699569063989,-5.555555555555561,16.46197226032616,4.65591804247269,682.4614274252403,2.3701184714038446,2.8017205075445832,52.54692759873626,2.1354677812071348,340.60822903303244,-140.320987654321,-3.2189999999999936,0.16015560603079726,-3.5555555555555576,-98.37753391251334,-15.255215618409261,-664.7502271395747,-2.668388007056304,-2.978039677640599,-46.75798018971062,-1.7149105799039805,-652.1516514942421,-242.33333333333334,-3.068100000000002,-0.7626424057425625,-7.0,-48.68724279835392,-7.899679350921015,-1066.8256189907408,-2.5867801837134063,-2.8429157407407426,-39.676332368033336,-2.404809435185181,-225.482016941016,-50.38271604938269,1.1197999999999977,0.2542890793803201,-7.444444444444445,-47.39247065996037,-0.8053595548141342,-252.3719702133058,-0.09378693798441229,0.6235185871056247,3.1145893899793187,0.8235609554183845,-627.7968488510825,9.592592592592572,3.3534999999999964,0.5360402104816387,0.6666666666666666,9.089620484682222,13.937893857528648,31.683118979423888,-1.4097511849907356,2.832580041152262,53.266068575815574,2.633645269547326,-195.40724927042302,-124.1358024691358,-0.8518000000000012,-0.7354846448608154,-2.888888888888889,-20.52065233958238,-8.165187920901555,-545.4237418597394,-0.5231968397296074,-0.8947586076817571,13.436577155319213,-0.6601594050068575,-156.43744011218922,139.03703703703704,-1.0455000000000017,0.6951151069907153,-3.0000000000000013,-47.69638774577047,-14.978950699667335,581.9680182109056,-2.518886748464513,-0.558365329218107,-28.71902007936912,0.12319840843621663,-132.95562198651646,0.7316713938910651,0.5697504491857586,0.4451158249568592,0.3092394005194585,0.299819794997188,0.17407731731571852,0.18520966165599603,0.10081925141355019,0.11798079072041491,0.054484926481955145,0.07557169343604307,0.028929021180523855,0.05054614544334091,0.01673110544352889,0.03135836371522826,0.00905745547082121,16.00450489052737,5.676433457855614,3.558804631176493,2.1727435782020312,0.4672595975240774,-0.4271299362055003,3.2453161354407154,0.9714977002655382,6.025791668037746,0.6531802108295544,14.556315760849193,10.3113492197242,32.06224654623176,11.689958144240023,2.9364922769862623,0.7404612118578027,3.50504474526273,2.2215955267519174,7.011567322172487,0.6049451530302978,3.717866712532494,2.4170619384087666,24.440723018412587,14.699772944274285,0.2969019469098969,0.6784337362526647,0.8445061416349576,0.8984576952217583,0.9045851972187603,0.9045851972187603,1.4410042137186805,1234.498076726982,0.0,6.0,2.0,0.0,7.0,3.0,2.0,0.0,0.0,3.9602951202352115,1.6541666163834776,0.6503595459030329,0.3242550926727228,0.2872180556356865,0.2872180556356865,64.71121156511333,2559.616368919251,109.86363951187815,47.40030312813428,101.12206696088057,,18.0,925.0,23.887631134403165,24.284676131127995,18.400910140904024,28.149233029694862,10.564533468384862,11.336785877934737,31.18920547353706,18.013948781989278,15.284745645900749,5.106527394840706,14.933333333333337,39.75,19.0,1.0,20.75,0.0,0.033333333333333215,-1.75,0.21765968867418145,0.055748456790123746,-0.1619112318840577,0.06689814814814798,0.19667898383371785,0.0,0.6567901234567893,0.9020833333333329,0.4391304347826079,0.6010416666666656,0.8351851851851849,28.74586973253396,0.780275513839884,1.038275513839884,33.864303471633455,7.987524563583214,7.146413484949997,62.61017320416742,15.133938048533212,0.5173210161662821,0.2008928571428571,0.0,0.39508928571428564,0.2857142857142857,0.45449837096532797,-1.636004974314583,-0.10286934741427049,-0.03029638841323302,-0.08610552496392543,0.545501629034672,1.963578828020735,0.051631687215204024,0.036362570889272874,0.05610225222916387,-4.253674167928132,0.7374880372368192,0.7914627557539816,1.6560475231577219,0.8807043650793651,0.5053575650688569,1.2851770817398187,0.7363411042557145,0.9390356922937354,0.765953532028626,0.678511422595813,0.8070040770722547,0.8950345179289969,0.7252183377821546,0.5299038975066485,0.7398722798539484,1.2842789598108748,0.8084508998319779,1.1134292971664044,0.724247897706035,0.9269943690444071,0.5271505948631114,0.4257106239278027,0.49140814473350514,0.8917078716071598,1.102377165520782,1.0317076023643033,0.8786614970739867,1.0524563820018364,1.096820403838177,1.1660437537171913,1.0988208978282588,1.1193057209058066,1.0288695137399146,0.9696483608825647,0.9906411257414405,1.075303946849871,1.2853701448098525,1.052431796360067,1.0732261539136392,1.0578189300411525,1.0425994730797814,1.049874394123162,1.2657336272628021,1.1702896413934247,1.0579995272541511,1.0146682701076566,1.072423430886388,1.0426472811951701,1.017126122868453,0.8985993826884764,0.8348832567272819,1.0926649305555556,1.0520370659663585,0.9743164713025642,1.0196529867249906,1.0177748398464113,0.9188798753430216,0.9992675062406956,0.9069333177508586,1.1008812524914517,1.2120280146163216,0.7907371461676741,0.780623303729098,0.9078703703703704,0.954612240762008,0.9383079395297862,1.1915010260691097,1.2292853438201086,0.8044988012830666,0.8293740502381451,0.7617344550281753,1.0568889020764893,1.2703795997273406,1.0188204731427901,1.1099325890361842,1.0265035677879715,1.0377569603731456,1.0454607946300718,1.2495543527233681,1.1412063237108403,1.0274220846523643,0.9529383267025309,1.028191933370141,1.0389426561323085,0.918352913441515,0.9429398179683753,0.695065081004224,1.0368876941457588,1.060117227763335,1.1442011885303534,0.9217458535483043,1.1581727443960064,0.9204082626503344,0.9295667610412269,0.8412890878316223,1.0238839048707224,8.5,0.24425874910723394,4.000000000000002,2.1875,2.4777777777777783,1.0138888888888886,0.714421768707483,0.6215986394557822,0.33433327034517507,0.29033179012345683,6810.443256722175,7482.500004751893,3181.651659225594,2947.0985066469466,18.233104339418762,0.46104672125498913,9.826791365429628,0.8554484023709208,1.0,0.2857142857142857,1.7945923819282565,4.100720885779991,5.104527956260435,5.430632409490745,5.467669446527782,5.467669446527782,0.24999999999999997,0.010177447879468081,0.08333333333333337,0.04557291666666666,0.053864734299516916,0.02357881136950904,0.017424921187987392,0.017266628873771728,0.01013131122258106,0.009365541616885706,0.52071564644972,26.602076124567475,12.109375,7.497845446710715,186.0785518775487,1.0,4.378352257046754,222.0353315868483,,165.3299088791852,174.33094424010196,173.75777902983558,165.35347699342256,226.33713618456494,175.5759816698142,175.99486920749555,211.54694774050404,0.013224290934400529,-0.11675306533502838,-0.6656340790103079,0.26488095238095233,0.23815575510755554,-0.09068919701132204,0.01574852793205639,0.07107029473570196,-0.1066796467743212,-0.08287511165343305,-0.1275185455487205,0.04611869093327535,0.15733278047010646,0.1917506362519132,0.17057365176005085,-0.08865248226950363,0.03881006006545537,0.03136568377018246,0.15635075105948051,0.09317351380218586,0.19146195179823125,0.18912843027426826,0.20411371284599672,0.07584137318572304,-0.11441398818212016,-0.15556477945949937,0.03928129143958871,-0.044077134986225924,-0.180177627608431,-0.07983811348576762,-0.11831037728553236,-0.08149179471893332,-0.15809955076218096,-0.130739769777729,-0.12733949469720243,-0.11280858018782171,-0.17710109622411693,-0.1328958482229877,-0.16765486650372294,-0.07777777777777778,-0.0799229885833953,-0.03705552591072336,-0.17018033848177389,-0.0708069731487344,-0.13527444042069553,-0.09943404220237168,-0.16004934882394511,-0.03495884274221252,-0.03883411997563944,0.051157129166395886,0.058958540279033425,-0.08723958333333333,-0.08205209670337095,-0.003984346795628262,-0.04246008544096623,-0.002707588495250916,0.03129139761714949,0.008232432409741985,0.057808645273069524,-0.1026568814477947,0.007886723507917156,0.16341530764732634,0.13256995402924265,0.008333333333333333,0.01678629331892186,0.07355178096983685,0.005685863081189188,-0.043412170000692876,0.15163046650939319,0.15017814699432808,0.19718916384359428,-0.0340830404767269,-0.11236017834594195,-0.045696907343085756,-0.2002516461652585,-0.039755351681957186,-0.04172102481086465,-0.04743697346949543,-0.10775991888136643,-0.017737356171175767,-0.05273086718491409,0.04170609190306933,-0.05441634020435216,-0.03003952823481294,0.1474991159482928,-0.06573804129350852,0.22182105233989713,-0.04838709677419357,-0.11365612463036048,-0.10199425947260063,0.1347615152502239,-0.10008660681819818,-0.03856745856085169,-0.10447779837549644,0.011902252561914661,-0.029922829820014013,6.028250920714118,19.23181083090977,10.491026644619577,19.844908119590826,41.23871164423569,46.54160239609902,48.53598235162185,48.57331568495518,48.57331568495518,64.08457346594416,43.48894902863734,8.190384819795245,10.356709065162995,0.0,20.595624437306814,13738.473613508859,13312.63684285516,1556.2331410795814,117.0,48.0,59.0,74.0,90.0,96.0,98.0,109.0,122.0,458.1260054240005,34.0,5.10594547390058,5.937536205082426,6.812345094177479,7.666221925662725,8.54188580400661,9.404837504700271,10.281410157637891,11.149326605958672,12.026808410361907,0.7407407407407406,1.0120000000000002,1.1279167221714046,0.706896764385733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6858665557773344,0.9973129992737834,1.0274001240862132,0.6568112867599946,5.0,1.0,1.0,0.0,1.0,2.0,4.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,2.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25.413731645485427,11.866245327147887,0.0,0.0,11.466446624403513,14.383611552215466,9.77851570501903,0.0,11.336785877934737,6.06636706846161,43.173478588160066,20.013250011515773,20.78115410247022,323.1877722127879,-1163.3414699699874,-73.14903054369279,-21.54336055499977,-61.22849841947303,387.8989837779012,1396.2748989492636,36.71460896818537,25.856942573134514,39.89356854140754,0.5,0.6008720564111614,0.13369024926471945,182.6463148399615,0.0904886874669745,45.425254166341,0.39912794358883874,9.0,0.2647058823529412,0.3118379605602377,0.7125631707376352,0.8869900505164454,0.9436557026439137,0.9500914560835966,0.9500914560835966,1.9772200000000002,,2.6964285714285716,2.432366560123275,1.8529029618306063,2.690952890953851,-8.142354927727702,2.2086903304773564,2.1233768779215905,-3.5136865061504015,119.28650000000007,24.596666341896878,0.0,15.284745645900749,0.0,32.351977680603184,11.947581713527669,56.950642604830094,0.0,0.0,4.23410650459726,0.0,5.564520407322694,2.3978952727983707,7.062191632286556,4.59511985013459,8.642768014324304,6.6052979209482015,10.27190824430491,39.99999999999999,8.770242760038347,4.310448606095788,2.6827232162909462,0.0,1.1795414555348716,1.1087374386338795,2.5061833175246764,0.0,54.64800000000002,0.0,46.588967704179794,0.0,0.0,0.0,0.0,0.0,-2.9974766148476366,60.90750299725585,15.775965229908815,5.001081976687867,0.0,51.11631494865618,16.133830774056218,6.923737199690624,33.90118361332206,35.126372526379875,0.0,10.902924932081056,0.0,38.172425276829586,37.036794011976056,39.62939811166442,444.07066317369663,,330.85548449003954,348.5098655701962,347.39975162455676,330.90419396661906,455.2980655272232,351.0139201939736,351.85702736012104,423.75271170091133,39.62939811166442,444.0706631736967,,328.49610949003943,346.22952192008063,345.66265509784034,328.54961018703455,460.8718232030134,348.9432730091512,349.86636153706957,426.6075819871585,4.835238265494133,341.5856736746059,,252.51513578358367,270.40188191563334,269.2720261669193,252.54888295391447,347.2171944745425,272.1196497223167,272.44984825286093,327.35679528778775,1.2384186909895132,13.87720822417802,,10.339233890313736,10.890933299068632,10.856242238267399,10.340756061456846,14.228064547725724,10.969185006061675,10.995532105003782,13.24227224065348,2.4213375275306257,222.0353315868483,,165.3299088791852,174.33094424010196,173.75777902983558,165.35347699342256,226.33713618456494,175.5759816698142,175.99486920749555,211.54694774050404,53.854901960784304,0.0,3.5556903421683907,0.0,0.0,0.0,17.942913076617664,55.47960670065551,-0.09269332778137152,2.3658922562118323,0.0,0.0,-1.2825765769919195,1.900326073687816,0.0,0.0,0.0,35.46780948503971,427.27216135886704,96.90798862412585,221.4389278321195,275.6445096380635,293.25415011250027,295.2541501125002,295.2541501125002,879.0,142.92631718148854,283.8145946318221,81.37380784671689,180.93,152.69,1.0,8.862518976598075,6.087462841250339,4.469359139827716,5.571958969846644,,5.562454744446195,5.570190847890829,5.56866749101974,5.562446995748628,5.561061273033207,5.569955027132703,5.56962009024895,5.568527339389455,0.13966747311961614,0.17412371780770763,,0.1738267107639436,0.1740684639965884,0.17402085909436688,0.17382646861714462,0.17378316478228772,0.17406109459789698,0.1740506278202797,0.17401647935592046,2.660395838986758,2.880897502064873,,2.879190321435046,2.88058012669305,2.880306605505467,2.8791889283984604,2.8789397762984024,2.8805377895888853,2.880477655000209,2.8802814372952623,322.66000000000093,788.0020952645149,206.43625862471274,,207.21234034111274,205.95618851160933,206.2251079457496,207.21420159738346,208.20721009673792,206.03146637184958,206.11012509085904,206.8130780376204,24.62506547701609,6.451133082022273,,6.475385635659773,6.4361308909877915,6.444534623304675,6.475443799918233,6.50647531552306,6.438483324120299,6.440941409089345,6.462908688675637,7.8326515586251455,6.4931424996159945,,6.496894876048377,6.490814278848164,6.492119138989118,6.496903858370127,6.501684596014867,6.491179716308174,6.491561423573803,6.494966190467567,0.0,55.79085089881821,21.57030367418548,1.2932869057462526,-2.4513127983849263,7.487666183046427,-0.5660974008941384,2.19352714683465,1.8355672684465072,390.8756109022386,229.81454451864911,-827.236711990398,-52.015306833178336,-15.319198370192556,-43.53877431528411,275.82983002671267,992.8725883650591,26.107272188653596,18.38652941416776,28.367788239001694,3432.0,48.0,2.7442371149651095,1.1807559918099106,0.0,0.0,0.5666353536710973,0.19988698159905732,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.10206207261596575,0.25967970078748703,0.13470626884235481,0.5967788045926179,0.2227040942866923,23.413484604514082,18.232014373944274,15.133938048533212,10.514139617661588,14.391350159865025,8.355711231154489,10.927370037703765,5.948335833399462,8.730578513310704,4.031884559664681,6.801452409243876,2.603611906247147,4.852429962560728,1.6061861225787735,3.0731196440923694,0.8876306361404787,5.327192324287517,2.2830885357127806,7.332715031896385,2.7068599430476112,10.829954008871935,3.3161859670292975,104.77639034020211,46.56652263872911,31.27825135786023,26.88410047313928,26.74503056565175,26.74503056565175,164.0,189.0,61.85144599999998,31.992554,0.3148148148148148,164.11,12.333333333333336,6.9722222222222205,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,15.0,16.0,54.0,0.0,0.0,56.0,16.0,4.0,10.0,46.0,20.0,34.0,36.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,7.0,4.0,2.0,32.0,11.0,0.0,4.0,6.0,0.0,3.0,9.0,1.0,0.0,0.0,2.0,3.0,3.8501476017100584,7.524008759888465,4.4630304188269685,4.991282565580441,5.569059896661526,6.063930546962698,6.392806583693233,6.670013502695139,7.02223425111622,7.442446954318843 +1520267,COc1ccc(S(=O)(=O)N2CCCN(S(=O)(=O)c3ccc(OC)c(OC)c3)CC2)cc1OC,0,31.24590163934426,6.484049180327868,3.278688524590164,8.408014571948998,163.2971436231012,123.8331088360656,1.5639621858323276,6.533398360655736,5.723388765207224,8.052008622950819,215.9919478113686,34.73015873015873,6.504628571428571,3.9682539682539684,5.492063492063492,145.54793063747948,133.8604828412699,1.8483279473015881,6.668995238095238,2.7421614736429554,8.033398031746028,261.5281206658051,26.294642857142858,6.667785714285719,3.4910714285714284,6.458333333333333,160.25808746111642,99.63967352678571,1.5197398665574366,6.73833125,4.01645171957672,8.210436821428573,213.75132280460716,26.64963503649635,6.505714598540146,3.4817518248175183,5.384428223844282,153.87407251219742,99.26442650364966,1.629823288845884,6.622217518248172,3.505587095611425,8.084500642335767,222.12261454839594,21.147727272727273,6.520645454545454,2.8181818181818183,3.242424242424242,158.72791475341987,75.40232290909094,1.3507484410675343,6.601038636363637,3.6829054433221105,8.145327318181819,182.49821787744125,18.92896174863388,6.461112568306013,2.4918032786885247,3.791135397692775,162.69295710750703,67.49645367213111,1.2315405753522948,6.509840437158471,3.753913306648079,8.078877644808744,163.86301933346192,18.759036144578314,6.087156626506028,2.5060240963855422,2.895582329317269,158.7412433218605,67.30374821686746,1.281752986704012,6.175267469879517,2.9903316971590046,7.728196626506027,162.15471402402088,16.419161676646706,6.268071856287425,2.437125748502994,3.18562874251497,166.57801403152413,58.16965494011979,1.114775022471569,6.311753892215567,3.9180527833222434,7.918984455089823,147.06933400315668,18.03076923076923,6.529107692307693,2.6307692307692307,3.117948717948718,163.22209059254234,63.115821784615385,1.2354640851198775,6.57930923076923,3.4397910731244057,8.149627630769228,166.71980199040254,12.515452835259337,0.18312620263370052,0.02597006842540475,0.6976619188390214,4.833228821404043,1.484011442519353,56.490637037893045,0.315569779573361,0.1672902983069067,2.3433277243421378,0.12215262295081963,49.95612824179027,3.587071234477846,-0.005847045725035422,-0.010092185076693377,0.327058351782888,0.38358674513829955,-0.5575719766273377,15.516972176262597,-0.06606455094155753,0.004617325944979953,-0.4903040645570257,0.007887428571428523,-2.6436326214212853,1.9009698813682958,0.005953188467002136,-0.003948816576974482,0.01881934579798056,0.7258721413854448,0.43859716424581846,8.999748889653803,0.09821020745776636,0.0058692889296273944,0.46507336285183126,0.0010928214285713146,12.458311967727406,-1.4998970137923062,0.008099536267819167,0.006043150266412938,-0.15237054633692768,0.3567117473806085,-0.08973029536219825,-6.10055495197703,-0.0333418517023696,0.007728931081629912,0.19171996244959674,-0.003873547445255536,-0.08914471274078441,-3.105430480564853,-0.05300533825218034,-0.004701816758683735,-0.09594805892844054,-1.5191039662955814,-0.2631934678801111,-14.182126636253686,-0.06059065390053393,-0.04897153899245054,-0.5852391606031485,-0.034800681818181904,-10.524534381296833,-0.5109737525754728,-0.003313983696138945,-0.0002525035841800889,-0.018991310579593294,-0.431106731563598,0.09092505823777976,-2.7966792207291946,0.014413189865757771,-0.0071030099435634595,-0.31283891111226636,0.0015740382513660626,-3.8368934688516836,0.46795621076080696,0.03504875292624394,0.004075479234196543,-0.04231923663479502,0.16800013815002002,-0.33286409865328564,1.7901638509080682,-0.0582537684658608,0.0315901875710311,0.010933718650368584,0.02711518072289165,-7.896103213795645,0.21567507285885115,0.00434671382845701,-0.001207089639805178,-0.0227821701396991,-0.13067763961461645,0.07683181916776435,1.334624084321544,0.020041863802609607,0.004875992063172725,0.48092502159956285,-0.0001134131736526892,4.981385612579915,-2.8554276145783786,-0.05599243214189715,-0.00114409587292355,-0.02805283939387675,-1.2676410394228186,0.10290243823069199,-12.983476029570209,0.0029429048029397005,-0.05405809149732275,-0.3963686932452796,-0.0374808000000001,-5.536489381225622,,,0.4737373737373738,1.2575757575757576,0.6060606060606061,0.06060606060606061,0.6515151515151515,-0.045454545454545456,0.9264965410135156,0.022195351065429567,0.030013532883611384,1.1749084059143178,0.2506413210127364,0.22456373890283693,2.1014049469278335,0.4752050599155733,2.0020292940253555,1.2880721638150872,0.13433613213622442,0.4426283074631164,0.0,0.7139571302102682,8.19883127632788,1906.0,395.52699999999993,200.0,512.8888888888889,9961.125761009172,7553.819639000002,95.40169333577198,398.5372999999999,349.1267146776406,491.1725259999999,13175.508816493484,2188.0,409.7916,250.0,346.0,9169.519630161207,8433.210419000005,116.44466068000006,420.1467,172.75617283950618,506.10407599999974,16476.271601945722,2945.0,746.7920000000005,391.0,723.3333333333333,17948.905795645038,11159.643435,170.2108650544329,754.6931,449.8425925925926,919.5689240000002,23940.148154116003,3651.0,891.2828999999999,477.0,737.6666666666667,21080.747934171046,13599.226431000003,223.28579057188608,907.2437999999996,480.2654320987652,1107.5765880000001,30430.798193130246,3722.0,1147.6336,496.0,570.6666666666666,27936.112996601896,13270.808832000006,237.73172562788605,1161.7828000000002,648.1913580246915,1433.577608,32119.68634642966,3464.0,1182.3836000000003,456.0,693.7777777777778,29772.811150673784,12351.851021999993,225.37192528946994,1191.3008000000002,686.9661351165985,1478.4346090000001,29986.93253802353,3114.0,1010.4680000000006,416.0,480.6666666666667,26351.046391428845,11172.422203999999,212.77099579286602,1025.0944,496.39506172839475,1282.8806400000005,26917.682527987465,2742.0,1046.768,407.0,532.0,27818.52834326453,9714.332375000005,186.167428752752,1054.0628999999997,654.3148148148147,1322.4704040000004,24560.578778527164,2344.0,848.7840000000001,342.0,405.3333333333333,21218.871777030505,8205.056832,160.61033106558406,855.3101999999999,447.17283950617275,1059.4515919999997,21673.57425875233,763.4426229508196,11.170698360655733,1.5841741739496897,42.5573770491803,294.8269581056466,90.52469799368053,3445.9288593114757,19.249756553975022,10.204708196721308,142.9429911848704,7.451309999999998,3047.323822749206,225.9854877721043,-0.3683638806772316,-0.6358076598316827,20.604676162321944,24.165964943712872,-35.12703452752228,977.5692471045436,-4.1620667093181245,0.29089153453373706,-30.889156067092618,0.4969079999999969,-166.54885514954097,212.90862671324913,0.6667571083042392,-0.442267456621142,2.107766729373823,81.29767983516982,49.12288239553167,1007.9718756412259,10.999543235269833,0.6573603601182681,52.088216639405104,0.12239599999998724,1395.3309403854694,-205.48589088954594,1.109636468691226,0.8279115864985725,-20.874764848159092,48.86950939114337,-12.29305046462116,-835.7760284208532,-4.567833683224635,1.058863558183298,26.265634855594755,-0.5306760000000085,-12.212825645487463,-546.5557645794141,-9.328939532383739,-0.8275197495283373,-16.886858371405534,-267.3622980680223,-46.32205034689955,-2496.054287980649,-10.663955086493973,-8.618990862671295,-103.00209226615414,-6.1249200000000155,-1852.3180511082426,-93.50819672131152,-0.6064590163934269,-0.04620815590495627,-3.4754098360655727,-78.89253187613843,16.639285657513696,-511.79229739344265,2.637613745433672,-1.299850819672113,-57.24952073354474,0.28804899999998945,-702.1515047998581,77.68073098629395,5.818092985756493,0.6765295528766262,-7.024993281375973,27.888022932903322,-55.25544037644542,297.1671992507393,-9.670125565332892,5.2439711367911634,1.8149972959611849,4.5011200000000136,-1310.753133490077,36.017737167428145,0.7259012093523207,-0.20158396984746474,-3.8046224133297497,-21.823165815640948,12.830913801016647,222.88222208169785,3.3469912550358045,0.814290674549845,80.314478607127,-0.018939999999999096,831.8913973008458,-371.20558989518923,-7.279016178446629,-0.1487324634800615,-3.6468691212039777,-164.7933351249664,13.377316969989959,-1687.851883844127,0.3825776243821611,-7.027551894651957,-51.52793012188635,-4.872504000000013,-719.7436195593309,0.7341031476156126,0.6245314781383179,0.44805048506325484,0.371733101047932,0.27917840944839584,0.2170818414291217,0.1819532307545332,0.13316913797395855,0.11773140994370913,0.08116212948803816,0.07338063968558514,0.048984863420264084,0.04654007625386241,0.03214443550559107,0.030150775608273814,0.021477896031417826,16.014278686943396,5.699375209057073,3.5844937813011573,2.1873993299211127,0.46432708276149626,-0.5282826244222412,4.05030632445369,0.9700637540898174,6.021755909851418,0.644155680859815,14.544017269083772,10.31918872322384,32.067620344395834,11.711144732838102,2.956456217355957,0.7593455713137944,3.5406802201331944,2.241047469709543,7.016350265867711,0.2969215762047826,3.772006484696365,2.4402245585116478,24.443011764186206,14.700234610493897,0.28319977932001217,0.49432776880511364,0.6071457141241136,0.6641132838850596,0.6853008861726658,0.7170822896040748,1.6214663206289202,1105.2405269330893,0.0,0.0,4.0,0.0,12.0,1.0,0.0,0.0,0.0,4.177780388458474,2.8709351740766307,2.172611885458702,1.8199926230926877,1.6888450821090801,1.492123770633671,248.42070039044367,2481.263141791018,93.2969392955012,40.67644494739373,91.13540695592862,,17.0,886.0,20.046582306815168,16.835593968657875,35.969992574685854,29.418868956061626,0.0,73.44782455847225,0.0,0.0,0.0,18.947451815200196,15.633333333333335,41.5,20.0,2.0,21.5,0.0,0.026262626262626224,-1.5,0.19985044578659716,0.055692791376600326,-0.14415765440999684,0.0,0.20254961832061036,0.0,0.6387978142076489,0.9262626262626257,0.43894736842105175,0.5831050228310486,0.9262626262626257,30.574385853446017,0.7324465851591757,0.9904465851591757,38.771977395172485,8.271163593420301,7.410603383793618,69.3463632486185,15.68176697721392,0.5114503816793896,0.2132196162046908,0.10660980810234541,0.2430703624733475,0.42857142857142855,0.3336552887697094,-1.1087204264078165,-0.08045360782704286,-0.01817574469521011,-0.07391469509385444,0.6663447112302906,2.2142313256714408,0.04449131344069468,0.03629887419133509,0.04813546360155304,-4.249658030133196,0.8445453337014429,0.7295873307890111,1.400586111539819,0.8503925453078001,0.7099492212552883,1.6798514712403465,0.8319806353975633,1.549038463846896,0.6584542354177456,0.773961051715499,0.6523104821900606,1.1316425640815813,0.8188939844780516,1.0361850567063606,1.4140065356879332,1.1832764692934192,0.9329524191982491,0.825749400540187,0.8084433193765282,0.6863324896063625,1.0139489902075784,0.6541683563772847,1.053370768744978,0.693708888287561,1.4301334307196296,0.8375261351402492,0.8082554283994291,1.6259714552427664,0.8612417147016302,1.2914243655016748,1.3853931106864803,1.4764097889328376,0.8239262549418775,0.815942413543551,0.9172132932251651,1.0492761031118985,1.3949967790423021,1.3871446976472115,1.0844575839357435,1.2897026894523052,1.3590406411826157,1.2513694749694928,1.3816208919188744,1.3371872354230319,1.373005942933445,1.7392859728013665,1.4021555666660688,1.1885979745817918,0.9787416791926135,1.1365742283016194,0.9409702491644454,0.9244992295839759,1.1414802916100335,0.9016484805091353,0.990885796647894,0.8774466683679762,1.1502308802494252,1.465047321893591,1.1177170716884175,1.0229887026827675,1.0150595941852014,0.5719610907927204,0.48890217791610485,1.0616425640930447,0.7974182656735926,1.2450255956835314,1.0143363716926692,1.2801664782539424,0.5895861107327437,0.8912787216874706,0.531681604688481,1.2052593679767736,0.9788625454695078,1.0176066776224095,0.9111097902422732,1.021516289454989,1.0616870793196753,0.8867581125720324,0.9747801797641555,0.8630174135619388,1.0155967288513825,0.9786832980116718,1.0246795730818605,0.85895303389509,1.2000297319172133,1.4886391096288007,1.292426856187642,0.9977480146971679,1.3516837913106294,0.9199917990312309,1.201957570587056,0.9306787037645095,1.4885301070633072,1.2965453260324742,1.5007632627943686,1.03821480574211,9.0,0.31242118151209064,6.222222222222224,3.5,2.336666666666667,1.778333333333333,0.9944671201814057,0.5677437641723355,0.4026203073822121,0.32751543209876544,8154.760224902501,9044.698280679171,3958.3430401493015,3680.5042842898615,17.790705244005245,0.48149881799297095,9.22450169775537,0.9286359119359606,0.0,0.42857142857142855,1.7529569491044128,3.059802163486256,3.7581254521041845,4.110744714470199,4.2418922554538065,4.438613566929216,0.2571428571428571,0.011157899339717522,0.12200435729847499,0.05555555555555555,0.04172619047619048,0.03486928104575164,0.02260152545866831,0.013203343352845015,0.011183897427283668,0.01023485725308642,0.5796797643504308,27.58530612244898,11.82314494425221,6.049149338374291,194.26254524486572,0.0,4.411861806398713,210.83568955209634,,132.6730692977291,166.10502573629674,170.5362773190536,132.68980698992564,218.0530483696331,166.44083940937284,164.62358132881786,206.43016714386846,0.28661138208056836,-0.031929050244824966,-0.3886083360034924,0.4687920365886467,0.07936449096711055,-0.37571945919821736,0.2746821949600967,-0.20935005573370943,0.027600679726860908,-0.209234098783461,0.06457027594572498,-0.05291908549489595,0.15188982023988468,0.03250866550708771,-0.1520526058033649,0.026974878934624698,0.15018369049090055,0.2955483709082645,0.15931399186765963,0.311215502290945,0.03508445492074944,0.19846705948157348,0.008946360726214613,0.24938505857436605,-0.11984360722184179,0.04422925911929884,0.23269674024044293,-0.21840169603994922,0.07380402636864697,-0.06046469238125708,-0.10799231999959343,-0.1056560350850027,0.046200713130719655,0.08181525804437785,-0.031710718539503496,-0.0017844600027712187,-0.24812769633201245,-0.28944704520633036,-0.18104753062892465,-0.13752801512816928,-0.3143041685856464,-0.1773527213734262,-0.2510526943914712,-0.19200398080719364,-0.2927338852765302,-0.2497470390179622,-0.2848950843420951,-0.21067554175450784,-0.0408274282442202,-0.018096720450037202,-0.009722869421979722,-0.02722136620441706,-0.08919642489394128,0.06126978245088161,-0.04950695137060015,0.045673542901490394,-0.04245918630937253,-0.13350198858765788,0.012885832603036225,-0.07680526101384237,0.03739027400130906,0.19139125052655873,0.15692986123247096,-0.06065865929047471,0.03475940088042766,-0.22430022378277234,0.03168956741817682,-0.1845986917524796,0.18883454623935525,0.00466589394935704,0.22197788363340018,-0.1580607523380934,0.017232702299930968,0.023736165365431373,-0.04648003309164809,-0.03265502892520047,-0.02703733765633196,0.051773063850053425,0.023625580349293972,0.06351008588244883,0.02914689083898547,0.20523165266376772,-0.0009284546734485672,0.09971520587964201,-0.22815216134520394,-0.3057587135899738,-0.044054403484141726,-0.040209790209790236,-0.26227623112091175,0.06934073099598087,-0.22983412314612586,0.009325686404187378,-0.32313942915057214,-0.1691477846345865,-0.30683581813130933,-0.11082703115879448,13.058527602935307,14.77423515378462,2.936650884930376,20.478886169052945,32.912546576082946,36.053309801380465,37.130258214566716,38.96697952604214,39.88678280473066,66.06696670283674,42.506381405897876,4.433092360495406,14.606734146282841,0.0,23.56058529693885,12022.075845674955,11971.801729701809,2020.6132334590166,122.0,51.0,69.0,81.0,98.0,114.0,125.0,119.0,112.0,500.1287078560007,35.0,5.153291594497779,6.023447592961033,6.920671504248683,7.809135398120538,8.70930004894499,9.603125426926972,10.504766124286546,11.401088466544943,12.30359401521491,0.721311475409836,1.0040655737704918,1.1296838522923205,0.6832275332311502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6690507902228331,0.9894567663130825,1.0254916241806264,0.6261314545217943,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,5.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,18.947451815200196,0.0,22.99804733313562,20.046582306815168,0.0,0.0,16.835593968657875,8.610431982592468,0.0,0.0,30.68628989677245,38.31175976057352,38.23015711614568,249.1419171433616,-827.8865700879187,-60.07507379559131,-13.571910985047849,-55.19243800586125,497.5626175338053,1653.3765717030994,33.2218654999099,27.104533962345887,35.94296895006737,0.47058823529411764,0.7331023176249996,0.14832259395834482,96.37442154145769,0.07305376481520728,6.202244440169701,0.26689768237500033,9.0,0.22857142857142856,0.2955715030577891,0.515922724162257,0.6336691777431688,0.6931254042283087,0.715238597499063,0.7484083874051943,1.8062999999999996,,3.5357142857142856,2.607869462731427,1.6617716674021208,3.529842394619801,-8.846441889007886,2.4153916768665855,2.411196596294918,-3.515447330608127,121.22660000000006,35.78304578385807,0.0,8.610431982592468,0.0,16.21178857396156,54.61821578876042,36.39820241076966,0.0,22.99804733313562,4.2626798770413155,0.0,5.616771097666572,0.0,7.180069874302796,2.70805020110221,8.832149906002899,5.093750200806762,10.527579359655915,43.99999999999999,8.738668865713905,0.0,0.0,0.0,0.0,0.0,1.531308925630196,0.0,61.248000000000005,0.0,52.877342750705225,0.0,0.0,-7.712834529153973,0.0,0.0,0.0,68.91071498983155,18.947451815200196,0.0,22.99804733313562,80.06424174001077,20.046582306815168,0.0,6.4208216229260096,46.18916936180521,0.0,0.0,0.0,41.67687952710016,40.81209820359282,41.81579124097626,421.67137910419274,,266.5510517151715,332.05199877788243,340.97184120371924,266.586317634536,439.75905744592933,332.73529144439016,329.10102953058754,413.9256213576182,41.81579124097626,421.67137910419274,,263.65819457231447,329.602182009862,339.4107829707051,263.69826476621074,444.95253862827406,330.4662871418791,326.83596606134097,416.37578161834506,4.905734502639287,319.3061270984155,,201.38747760773833,257.3162088409538,262.3009038961967,201.4049940611011,324.2490498653418,257.578559458741,254.52649675250646,316.0886019056977,1.2671451891204928,12.777920578914932,,8.07730459742944,10.062181781147952,10.33248003647634,8.078373261652606,13.32603204381604,10.082887619526975,9.972758470623864,12.543200647200552,2.467125353242758,210.83568955209634,,132.6730692977291,166.10502573629674,170.5362773190536,132.68980698992564,218.0530483696331,166.44083940937284,164.62358132881786,206.43016714386846,60.356862745098034,0.0,5.788378400480428,0.0,0.0,0.0,0.0,62.55498907501822,0.7586287512658378,0.0,20.771732353960893,0.0,0.0,2.5801078147308307,0.0,0.0,0.0,38.19401872582945,547.4108249529279,106.93037389536919,186.6479319726616,229.24565257835525,250.75542758268213,258.7554275826822,270.75542758268216,959.0,146.42842017174638,199.2937097242389,77.22105051657847,128.44000000000003,111.68000000000002,0.8888888888888888,8.071101382216815,6.129283016944966,5.077478908800075,5.652414063990728,,5.636959217778636,5.663637448129832,5.657215779389069,5.636898400696454,5.5962555917764485,5.662291511240528,5.66090778962613,5.642599756920342,0.15386299723636593,0.17128527466638568,,0.170816945993292,0.17162537721605553,0.17143078119360813,0.1708151030514077,0.1695835027811045,0.17158459124971295,0.1715426602917009,0.17098787142182856,2.818737329080981,2.926005190340781,,2.923267242807124,2.9279888129510514,2.9268543278905246,2.9232564537614856,2.91602019824559,2.9277511393967726,2.927506734686669,2.9242673775862458,347.9900000000014,267.28038586691747,217.29554106650374,,217.20220606363807,214.47191026381336,215.5849628546864,217.2098081485188,222.98796564714004,214.65966756997102,214.79915837598097,217.61129550524316,8.099405632330832,6.584713365651629,,6.581885032231456,6.499148795873132,6.532877662263225,6.582115398439964,6.757211080216365,6.504838411211243,6.509065405332756,6.5942816819770655,6.782220710200369,6.575180835811924,,6.574751213311381,6.562101243784163,6.567277559502986,6.5747862127342,6.60104027276846,6.562976300889428,6.563625912924333,6.576632891597979,76.22918291939695,0.10434798051403704,0.0,0.0,1.426960945116159,8.738668865713905,0.3462690539178639,0.41235969734797395,-1.9244561286735458,426.41740387506127,186.03539930911109,-618.186656082975,-44.85833002423347,-10.134207476770083,-41.212443738865005,371.5322627983332,1234.5837836196922,24.80691761921765,20.239078419994954,26.83877790477591,3353.0,63.0,3.0653841409022102,2.02558503493149,0.3333333333333333,0.09128709291752768,1.410683602522959,0.5597842486892475,0.3333333333333333,0.07607257743127308,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.048112522432468816,0.3194170365727314,0.13356461422412563,24.225403871315216,20.60953877856449,15.68176697721392,13.01065853667762,14.238098881868188,11.071173912885207,12.554772922062792,9.18867052020314,9.53624420544044,6.574132488531092,7.191302689187344,4.80051661518588,5.305568692940315,3.664465647637382,3.768846951034227,2.6847370039272285,7.8233122774687525,4.6891369455518,11.104606202099408,6.085902553105676,15.962494761282292,7.923401371911833,113.20584033053969,70.51013596165546,59.43833397547835,55.114759662681976,50.4933680937388,47.41849613301708,172.0,206.0,68.15620399999997,51.76579600000005,0.3442622950819672,169.12,12.76388888888889,7.472222222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,61.0,0.0,0.0,63.0,12.0,4.0,10.0,53.0,16.0,35.0,47.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,8.0,0.0,1.0,33.0,12.0,0.0,2.0,8.0,0.0,3.0,8.0,2.0,0.0,0.0,0.0,2.0,3.828641396489095,6.18826412308259,4.465908118654584,4.973279507552487,5.387929525237724,5.866113886573653,6.121395716700013,6.336051094910062,6.046189446797229,5.986294957777244 +2754,O=C1CCc2cc(OCCCCc3nnnn3C3CCCCC3)ccc2N1,0,20.74074074074074,6.061194444444442,3.0925925925925926,6.444444444444445,165.8475298538838,81.58578509259263,1.3910917857578329,6.122318518518516,3.2947530864197536,7.591119629629627,202.94354730849713,23.649122807017545,6.340415789473685,3.807017543859649,6.368421052631579,149.12213932415267,89.05600249122807,1.7457499010526318,6.471864912280703,2.781189083820663,7.739776561403507,251.9319695670906,18.42452830188679,6.128902830188679,3.292452830188679,4.462264150943396,155.0524060001051,67.21369667924527,1.4546548523145193,6.232352830188678,2.519916142557652,7.615576075471696,200.5378564799491,13.612244897959183,5.945938775510204,2.687074829931973,2.673469387755102,163.6434942877181,47.58357152380951,1.1861855062000883,6.0158367346938775,2.258314436885866,7.526946721088436,156.5030559513611,12.881118881118882,5.992993006993008,2.5384615384615383,2.3216783216783217,166.59830428986658,44.10454884615385,1.1318450383557064,6.051398601398601,2.3321678321678316,7.57166855944056,147.86229388602197,12.976190476190476,6.043793650793652,2.507936507936508,2.253968253968254,167.46668499155933,44.34896121428571,1.1267093768303253,6.096802380952381,2.4248236331569664,7.619043904761905,147.70775205002167,12.53211009174312,6.038871559633028,2.458715596330275,2.2018348623853212,165.70675043287918,41.91849610091743,1.14975857575211,6.096405504587156,2.3603465851172274,7.611311229357798,147.97680820252674,11.314285714285715,5.781000000000002,2.3142857142857145,2.323809523809524,164.65146604722352,38.02825923809523,1.1075833151949523,5.84608857142857,2.142857142857143,7.387638780952382,137.25817933017646,10.871287128712872,5.61983168316832,2.3168316831683167,2.1782178217821784,164.4140698287249,37.26790863366335,1.0713346076263563,5.691772277227722,1.863036303630363,7.256808475247525,132.84181302245503,7.296296296296294,0.10849811385459525,0.012606759245490252,0.4969135802469135,3.6666666666666656,1.4996116003670503,34.77256768484226,0.21718330087342974,0.10347407407407398,0.9227728242645941,0.06097383950617281,49.21285187280801,0.6198830409356729,0.019559488484586007,-0.006181647499443662,0.12784275503573742,1.485380116959064,0.13488215130056927,2.8592995802649686,-0.004750555416090486,0.017446198830409387,0.1049869042748618,0.00948718193632218,0.2927627188647897,0.07966457023060822,0.0169450727282139,0.0014412125406249264,-0.009142790589331491,0.5419287211740039,-0.20677838805350826,0.23349581218780163,-0.033677808115380584,0.01461865828092245,0.11170190203403185,0.0087389955741905,-5.623476260152595,0.043083900226757336,-0.009154954368578702,-0.0007953237458591493,-0.021856890904509953,-0.18367346938775506,-0.09452018095448818,0.2584335664805019,0.0026552924121869565,-0.007180045351473925,-0.04944550979971321,-0.0063227510707986895,1.1232602467059802,-0.5975135975135976,-0.017592843199324658,-0.0007797140165619563,-0.07098765432098765,-0.6814296814296813,-0.04060491905090986,-2.7871701358912,-0.005889226656408072,-0.0155975135975136,-0.08674876601831333,-0.009832833031166388,-1.6219495589527049,-0.7592592592592592,-0.017467984518910414,0.0010373414203560677,-0.0749559082892416,-0.9206349206349206,0.07204709969052321,-3.547974004948069,0.0002557565606581835,-0.016281216931216917,-0.08229091819626802,-0.008844509700176409,-1.3899683780398304,-1.6411824668705401,-0.016126214432237163,-0.0014377535919169958,-0.07455544229244535,-0.7696228338430173,0.07315500976221155,-7.801760831801133,-0.018796897037261,-0.017721304791029534,-0.12589133523223833,-0.0059356125269000295,-7.527900360163963,-0.03492063492063493,0.021423402900254712,0.0010572020646671164,0.0152557319223986,0.5619047619047619,0.02494219731794016,-0.3152632668528316,-0.013827145105149275,0.017669523809523795,0.16093283907069922,0.01569317425044099,-3.2942136506404682,1.299229922992299,0.015294332056662375,0.0006841337938709532,0.07917736218066253,0.8965896589658966,-0.20168450972804583,6.1240476972626245,-0.0006129781778789086,0.01671837183718367,0.1026061025169733,0.005976366581102688,3.823862713729962,,,0.46913580246913583,1.0740740740740742,0.4444444444444444,0.018518518518518517,0.6296296296296297,-0.18518518518518517,0.9701489654425157,0.00449582321071806,0.0172365639514588,0.6652060305687597,0.18579794702488428,0.30652895429673455,1.6353549960112754,0.4923269013216188,2.0737971440104825,1.547383557962274,0.3850142779272695,0.1413993081209398,0.0,0.5264135860482093,6.83734213155557,1120.0,327.30449999999985,167.0,348.0,8955.766612109725,4405.632395000002,75.11895643092298,330.60519999999985,177.91666666666669,409.9204599999998,10958.951554658845,1348.0,361.4037,217.0,363.0,8499.961941476702,5076.192142,99.50774436000002,368.89630000000005,158.5277777777778,441.1672639999999,14360.122265324164,1953.0,649.6637,349.0,473.0,16435.55503601114,7124.6518479999995,154.19341434533905,660.6293999999999,267.11111111111114,807.2510639999998,21257.012786874606,2001.0,874.053,395.0,393.0,24055.593660294562,6994.785013999998,174.36926941141297,884.328,331.9722222222223,1106.461168,23005.94922485008,1842.0,856.9980000000002,363.0,332.0,23823.55751345092,6306.950485,161.853840484866,865.3499999999999,333.49999999999994,1082.7486040000001,21144.308025701142,1635.0,761.5180000000001,316.0,284.0,21100.802308936476,5587.969112999999,141.965381480621,768.1971,305.52777777777777,959.999532,18611.17675830273,1366.0,658.2370000000001,268.0,240.0,18062.03579718383,4569.116075,125.32368475698,664.5082,257.27777777777777,829.632924,16129.472094075414,1188.0,607.0050000000002,243.0,244.0,17288.40393495847,3992.967219999999,116.29624809546999,613.8392999999999,224.99999999999997,775.702072,14412.108829668528,1098.0,567.6030000000003,234.0,220.0,16605.821052701216,3764.0587719999985,108.20479537026199,574.8689999999999,188.16666666666666,732.9376560000001,13417.023115267959,393.9999999999999,5.8588981481481435,0.6807649992564736,26.83333333333333,197.99999999999994,80.97902641982071,1877.718654981482,11.727898247165205,5.587599999999995,49.82973251028808,3.2925873333333318,2657.4940011316326,35.33333333333336,1.1148908436214024,-0.3523539074682887,7.287037037037033,84.66666666666664,7.688282624132448,162.9800760751032,-0.2707816587171577,0.9944333333333351,5.984253543667123,0.5407693703703643,16.687474975293014,8.444444444444471,1.7961777091906737,0.1527685293062422,-0.9691358024691381,57.444444444444414,-21.918509133671876,24.750556091906972,-3.5698476602303417,1.5495777777777797,11.840401615607377,0.926333530864193,-596.088483576175,6.333333333333329,-1.3457782921810693,-0.11691259064129494,-3.2129629629629632,-26.999999999999993,-13.894466600309762,37.98973427263378,0.3903279845914826,-1.055466666666667,-7.268489940557842,-0.9294444074074073,165.1192562657791,-85.44444444444446,-2.515776577503426,-0.11149910436835975,-10.151234567901234,-97.44444444444443,-5.806503424280111,-398.5653294324416,-0.8421594118663543,-2.2304444444444447,-12.405073540618806,-1.4060951234567935,-231.9387869302368,-95.66666666666666,-2.200966049382712,0.13070501896486453,-9.444444444444443,-116.0,9.077934561005925,-447.0447246234567,0.032225326642931124,-2.0514333333333314,-10.36865569272977,-1.1144082222222276,-175.13601563301864,-178.88888888888889,-1.7577573731138507,-0.15671514151895255,-8.126543209876543,-83.88888888888889,7.9738960640810586,-850.3919306663234,-2.048861777061449,-1.931622222222219,-13.722155540313977,-0.6469817654321032,-820.541139257872,-3.6666666666666674,2.2494573045267447,0.11100621679004721,1.601851851851853,59.0,2.6189307183837167,-33.10264301954732,-1.451850236040674,1.8552999999999984,16.897948102423417,1.6477832962963042,-345.8924333172492,131.2222222222222,1.5447275377229,0.06909751318096627,7.996913580246916,90.55555555555556,-20.37013548253263,618.5288174235251,-0.06191079596576976,1.6885555555555505,10.363216354214304,0.6036130246913715,386.21013408672616,0.6843141009952514,0.5812195049162255,0.443094211189457,0.3372508844908643,0.28770999880658354,0.18760537123005763,0.1854676495806582,0.10609969212722792,0.12099134016885144,0.05986339185167416,0.08091979576927419,0.03605929566851221,0.05398281276848185,0.018724852164812053,0.036733042625677004,0.011116816973053988,8.022155472188016,5.692064953578335,3.5438961650676832,2.1907914261277037,0.3806888432613684,-0.5248816306453998,3.204194370813022,0.9779989989004865,6.022024375396675,1.8245408966375545,14.782234983282198,10.953383681177014,16.010265896877293,11.704006188060328,1.9861708815836938,0.7518848998432647,3.489108838501542,2.240440335340975,7.008271112121539,1.229280633016683,3.7020259360453536,2.436312442193618,20.89191495526822,14.702507808608551,0.25508245928278156,0.5353787061892709,0.7077460760148465,0.8403864410522798,0.8574565585231635,0.8574565585231635,1.0980864869718836,782.4293018024434,0.0,2.0,1.0,0.0,5.0,11.0,1.0,0.0,0.0,4.230188239455513,2.554779110188979,1.52449109106408,0.7316625000801302,0.6296296296296315,0.6296296296296315,201.1972184121625,1212.3966434765584,48.38622835991845,22.451789694010344,44.66264886721057,,17.0,796.0,0.0,4.794537184071822,5.907179729351506,19.06954441658689,48.50804058936843,32.10410811463005,0.0,18.19910120538483,25.52404353876229,4.736862953800049,12.666666666666668,29.0,12.0,0.5,17.0,0.0,0.030864197530864154,-5.0,0.12143209876543215,0.02654320987654324,-0.09488888888888891,0.01895943562610225,0.14936404160475458,0.0,0.5654320987654323,0.8308641975308639,0.4440000000000002,0.5388888888888891,0.8119047619047617,26.194022066947923,0.12138722668938762,0.4653872266893876,17.96056282535651,5.016544569671876,8.276281766011833,44.154584892304435,13.292826335683708,0.5646359583952454,0.026315789473684206,0.0,0.2684210526315789,0.6,0.34359244695738056,-0.6476704440365503,-0.04394039100368252,-0.011993897111787968,-0.034087918107186865,0.6564075530426192,1.2373257186319722,0.03128899475485088,0.02291343923392541,0.03535216338948492,-5.241315258801262,0.8295262267343488,0.6127045723341623,1.5129667967396685,0.8316443282118341,0.44143186248449423,1.2244768452439714,0.8379387416556894,1.198740086591353,0.6213197016451216,0.48490174739515257,0.6291761763763685,1.0813588237460983,0.9270304568527922,0.6934238993869725,0.9678178153688285,1.192546583850932,0.7676767676767678,1.2824568697232381,0.9348167538801553,1.2557619392062491,0.7105107738563965,0.5170384746410098,0.7112810573893157,1.1628128314999002,0.9759401222417904,1.0740361426723037,1.1626861695028337,1.1286601597160606,1.0388407888407891,1.0404626261048477,0.9743266483467412,0.9793203313675835,1.0583743376368377,0.9627266447154273,1.1077297774577701,0.9643645491197667,1.0789641830250971,1.2149124411725936,1.09671609555879,1.132606523910872,1.2335593699230067,1.0150294660717034,1.0757996123805527,0.967045413015784,1.1957898032957097,0.9858337989009304,1.1990940735488336,0.9852340542177228,1.1145757795503992,1.2887346542714053,0.9570231151393371,1.0894705708370307,1.357503607503608,0.9426229114781249,1.1097897092888214,0.9237353382332509,1.2693349048403104,0.9924559382848408,1.2711496698100142,0.9670730741559073,1.2236180319470966,1.2423199657583368,1.0406565595971495,0.987577639751553,1.2401538318969516,0.9523810008387664,1.2210462328358969,1.0376322953630155,1.2514054712236338,1.0729734216862057,1.200458825471533,1.1070182776981203,0.9569978245105151,0.6014990087658915,0.6416549159853907,0.761845607808341,0.6781144781144783,0.916773427158629,0.9641782315809828,1.0560045482283613,0.6504604583618829,0.3729711554485217,0.5013786205533486,1.068012793736235,0.7591596723124091,0.5408877839334361,0.6959470512619543,0.733349732488777,0.5486048604860488,1.011314507637469,0.7658564283390397,1.0108812570752432,0.5590591684982803,0.3627313768344284,0.5322778981756804,0.9445065455821885,4.0,0.1072339557188042,2.4444444444444455,1.1875,1.1927777777777777,0.3719444444444445,0.2604081632653061,0.17102465986394555,0.1163942428823381,0.11625771604938273,4903.005490959994,5662.185838369009,2632.857172367904,2363.729831151957,15.823895906670161,0.491806058109407,8.041608036877129,0.9677526974835247,1.0,0.6,1.5246992627079552,3.200108391974489,4.230396411099388,5.023225002083338,5.125257872533837,5.125257872533837,0.13333333333333333,0.005106378843752581,0.061111111111111144,0.03125,0.036144781144781146,0.012825670498084293,0.011322094055013308,0.008551232993197279,0.005819712144116906,0.005536081716637272,0.31100039584002726,20.28,10.15625,5.538461538461538,159.02944857448045,1.0,4.230403571495587,175.26429870323292,,145.67005921949828,143.27171882062873,144.98434771894557,145.70181348963752,203.0076932241046,144.82292295066625,145.79746914160793,178.39903337542623,0.08495858936681813,0.18027491713633692,-0.4903439003687637,0.2572736188296828,0.405103668261563,0.08994472386553627,0.08222860060781098,-0.021873483812915335,0.16860454163542626,0.11377329448180418,0.15559430098479737,0.005948907810127386,0.010918494397088438,0.15617850049377813,0.11432062059410578,-0.018399156217039775,0.14779874213836475,-0.1378879624583435,0.0067149430638561965,-0.15506628723267893,0.1412784643084353,0.1210502727180473,0.14332368840420145,-0.11426844911745057,0.005904900031078418,-0.08437892644703297,-0.06308708926472568,-0.04398529598174675,-0.05009276437847866,-0.06302977446383656,0.007432110531002171,0.012226043169563989,-0.06938980044734633,-0.053583621558338505,-0.1036961280773305,0.02282453066546677,-0.08189272656277735,-0.16214883903790134,-0.06184888609187006,-0.14285714285714288,-0.18584445857173132,-0.027076957154086603,-0.08015428026921803,-0.02711638801290805,-0.15073837323103573,-0.09400880014801904,-0.16126314351863869,-0.03295784530318785,-0.10406091370558376,-0.16099804778468585,0.08228454277233463,-0.15084294587400177,-0.25108225108225113,0.04804383993354593,-0.1020337076371461,0.0011776069321611127,-0.15734585766442022,-0.08917787350516086,-0.14505417030989196,-0.028244011983541262,-0.22493363759139387,-0.1486312882254235,-0.114046248042003,-0.1500370391475298,-0.20989713650264114,0.04878263794725639,-0.2243653935053524,-0.0865485373952184,-0.17126323622227713,-0.13642722447160027,-0.09734687162515206,-0.1529661475343886,-0.004786076867295144,0.19745415048380918,0.08385993926593813,0.030700976042590977,0.1532467532467533,0.016632438233896842,-0.009066436212309346,-0.06366578392326522,0.17076281153165684,0.17440136384483906,0.25737552985903506,-0.06693807664620728,0.17806704528320855,0.14096403627033752,0.05426722130159539,0.15933829407785507,0.2445244524452446,-0.1344911640311937,0.17611721264783572,-0.0028224001358011434,0.16157063483569314,0.11119324260415392,0.09801525751872094,0.07770049018115921,17.746177728312784,17.661765203150782,3.090183447510406,14.14843909627176,30.857952892344812,36.46198896818018,37.82249402467542,37.925343158089525,37.925343158089525,55.99252288828303,41.77935606498139,10.395385504036277,3.8177813192653742,0.0,14.21316682330165,9545.01485031033,8750.968987647038,1325.8905553331806,73.0,40.0,52.0,67.0,80.0,77.0,81.0,83.0,83.0,369.2164751040008,30.0,4.948759890378168,5.783825182329737,6.639875833826536,7.490529402060711,8.351610750626559,9.208238163884312,10.070991535979658,10.930371087745765,11.793741520179669,0.6111111111111108,0.9759259259259262,1.1384976602491677,0.5696460343450601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6487847748946552,0.9620915032679735,0.9993121307760786,0.6024831738923944,3.0,3.0,0.0,0.0,0.0,0.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,10.05365155780638,5.749511833283905,5.824404497999927,5.907179729351506,0.0,4.794537184071822,4.681802935145185,0.0,5.098681808301038,19.26246486877803,66.29343100302161,18.52902952053558,12.648722793660879,220.9926670754076,-416.5703294150257,-28.261692846363836,-7.714265359537513,-21.9247541797382,422.1898854875701,795.8263140615328,20.124535513554612,14.73752433447283,22.73789468747237,0.47058823529411764,0.8835900800861897,0.2618510973524433,47.06603891814702,0.11894614917778575,47.466796332766435,0.11640991991381033,9.0,0.23333333333333334,0.26493989016027963,0.5560679319572196,0.7350962828567944,0.8728624148074011,0.8905921915253893,0.8905921915253893,3.4647000000000014,,1.2142857142857144,1.4997673336435549,1.4725162990448415,1.2110320506083252,-4.755497619587395,1.3233629130966955,1.1983045659983018,-2.3946120973331952,101.76470000000005,9.53140013787187,0.0,20.20725493475596,0.0,70.25005705840807,11.923670568519249,29.58695719508175,0.0,5.749511833283905,4.110873864173311,0.0,5.3981627015177525,2.3978952727983707,6.880384082186005,4.59511985013459,8.45553053102413,6.580639137284949,10.080838442676662,32.999999999999986,5.8953361876113775,12.34694422429597,0.0,0.0,0.0,0.0,3.9400625147382566,2.053361989949777,52.70000000000002,0.0,11.418943786641766,0.0,0.0,0.0,0.0,0.0,0.08956964740910789,61.478873653455054,10.05365155780638,5.687386274683562,5.749511833283905,32.72131662862038,17.63618042992384,0.0,68.79626980225297,18.19910120538483,0.0,0.0,0.0,30.760885854633244,35.034377844311386,36.08288307033849,350.5285974064659,,291.25017134904954,286.43234376469127,289.88473226632914,291.3139209014522,407.77668186287116,289.5478190188809,291.5061749820308,357.68496012023513,36.08288307033849,350.52859740646596,,290.1258327247108,285.0602545869043,288.67253544470543,290.19259492866684,410.7708840677965,288.32248298823566,290.3966337172176,359.19267884818566,4.740356681479252,277.8520619257476,,232.75003042158787,229.0892564391012,232.81387594904805,232.80184938865358,326.2114947213971,231.49990719458015,232.94035046950836,284.56210093766765,1.3364030766792032,12.982540644683922,,10.787043383298132,10.608605324618194,10.736471565419597,10.789404477831564,15.102840068995228,10.72399329699559,10.796524999334475,13.247591115564264,2.371330145806183,175.26429870323292,,145.67005921949828,143.27171882062873,144.98434771894557,145.70181348963752,203.0076932241046,144.82292295066625,145.79746914160793,178.39903337542623,51.952941176470574,0.0,0.0,0.0,0.0,0.0,0.0,53.96285506190824,11.150571183047623,2.8957327899161585,5.893749415667705,0.0,0.4823949273889262,0.0,0.0,0.0,0.0,32.534091390189296,568.3097231291615,82.33376018622958,172.8058531666224,228.44140619936695,271.25415011250027,276.7639251168272,276.7639251168272,693.0,132.21794336701115,74.87282943381636,75.49944388179577,81.93,81.93,0.8888888888888888,7.722760514351605,5.906890595608519,4.689302415800025,5.132381068861131,,5.131356709588496,5.131323130940743,5.133476699640589,5.131363500015459,5.139864132608624,5.131442098164948,5.131348256251182,5.134631775145654,0.17367786725185277,0.19008818773559744,,0.19005024850327762,0.19004900484965714,0.19012876665335515,0.19005050000057255,0.19036533824476384,0.19005341104314621,0.19004993541671045,0.1901715472276168,2.5385356057703943,2.6288214704873654,,2.628621863034769,2.6286153191986026,2.629034921873177,2.628623186353894,2.6302784187833645,2.6286385034421382,2.628620215645052,2.6292599049872094,285.0600000000005,204.54890566324892,162.9587034957327,,162.89423063308146,162.88060242389636,162.65706223888662,162.89370464366272,162.25557241057726,162.87897757459416,162.89602588702056,162.72402889092567,7.5758853949351455,6.035507536878988,,6.033119653077091,6.032614904588754,6.024335638477282,6.033100171987508,6.009465644836195,6.032554724984969,6.033186143963724,6.026815884849099,6.314058867399485,6.086748588930891,,6.086352871374043,6.086269204940604,6.084895844838776,6.086349642344593,6.082424472599958,6.086259229183009,6.086363892292583,6.085307464658182,7.947111405617482,11.418943786641766,15.242677014212129,2.061951054378974,1.96768110776839,6.377731115000303,10.473844913836235,0.6767262692113882,0.0,339.99583083905026,142.13862770726104,-267.9307677951568,-18.177427744675143,-4.961680885095496,-14.101619357639835,271.54516821416667,511.8616000748828,12.943750120752355,9.478918519905237,14.624617144996654,2301.0,38.0,1.2955487099813654,0.5719861715685473,0.0,0.0,0.21941609682128765,0.0765877145924263,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.02,0.3895195511812306,0.18305747483972362,0.5707926914014856,0.16783999834853425,18.476480726871788,15.69292663273809,13.29282633568371,10.117526534725929,11.508399952263343,7.504214849202305,9.644317778194226,5.517183990615852,8.106419791313046,4.010847254062169,6.473583661541935,2.8847436534809767,4.156676583173103,1.441813616690528,2.9753764526798374,0.900462174817373,3.0575560428487014,1.2451811168610805,4.964909319927615,1.774086884418018,7.269157405769222,2.2966010113865343,91.13012729268898,47.16271190395474,31.75230969839799,25.76463519576214,25.1161250104167,25.1161250104167,140.0,162.0,58.50741099999998,31.970588999999993,0.48148148148148145,198.07,6.527777777777778,6.000000000000001,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,11.0,11.0,54.0,0.0,0.0,57.0,11.0,1.0,6.0,51.0,12.0,30.0,45.0,0.0,0.0,0.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,6.0,1.0,2.0,27.0,7.0,0.0,5.0,2.0,0.0,4.0,7.0,0.0,0.0,0.0,1.0,2.0,3.624340932976365,5.796437617816474,4.123093975508087,4.611400735738727,5.113116669003238,5.459319521324397,5.569059896661526,5.742903022536699,5.868943743432063,5.9481165785414385 +5070,Nc1nc2ccc(OC(F)(F)F)cc2s1,0,47.7,8.08417,4.25,16.22222222222222,178.24331034919226,195.91074797246551,1.8469107762122505,8.035720000000001,12.967185356652948,9.220764250000002,268.72411566850496,39.23809523809524,7.189666666666667,4.666666666666667,12.492063492063494,154.04519913034764,155.9000520716952,2.0098679776190473,7.3155238095238095,4.435552616108172,8.510736761904761,307.366177467151,44.75757575757576,8.12201515151515,4.090909090909091,14.848484848484848,168.27898965652875,181.09722814665787,1.8288677692378488,8.120342424242423,10.989805462027682,9.282187151515153,276.88901665926335,30.060606060606062,6.8032121212121215,3.727272727272727,8.171717171717173,156.37384422461028,114.15342725774545,1.7643175980863333,6.921287878787878,3.9979423868312765,8.282511757575758,249.51818111207766,30.34375,7.025968749999999,3.53125,7.8125,161.78011359774467,117.2484326566,1.4807778937765312,7.111131250000001,5.200231481481483,8.438835749999999,223.44420574670073,27.321428571428573,7.840392857142857,2.7142857142857144,8.595238095238097,184.30378242478855,103.58319173445713,1.1379830453874644,7.814182142857142,6.802083333333335,9.166612214285712,186.36282790830904,37.61904761904762,7.647904761904762,2.619047619047619,7.238095238095238,184.71469435643317,151.07137659801904,1.0107086791617144,7.653347619047618,5.462962962962963,9.10215942857143,174.44790828248253,37.36363636363637,9.206000000000001,2.272727272727273,18.272727272727273,204.73583642098166,153.22050476116362,0.7658574346998183,9.028418181818184,11.454545454545455,10.220908,181.03071488271596,40.2,9.752199999999998,2.2,12.6,213.18384957316002,164.50921537344,0.8130377240000002,9.503519999999998,19.7,10.5126528,170.4250994981043,12.889999999999997,0.4168089999999999,0.043437916999713486,0.8275,5.767777777777779,4.808534886628186,58.79108649494772,0.3746968004341874,0.351736,5.659674854252401,0.2426509275,39.555552828083115,-0.40428571428571464,-0.046785190476190355,-0.03730502974308292,-0.10369047619047625,0.7237566137566138,-0.1228123486767112,-1.6566688350020127,0.03507715437038404,-0.039252190476190406,-0.9102013011137243,-0.03294861559523815,4.132420436204055,2.8675757575757572,0.3014361515151514,0.016787876228742185,0.11340909090909088,2.0163973063973066,2.5585219030882738,13.870175898056035,0.09008686361068378,0.2492064242424242,3.633524370505465,0.18649887098484852,1.947969609728226,-4.856666666666667,-0.019687787878787687,-0.00843142255659172,-0.19416666666666665,-0.022659932659932516,-0.19568914935589182,-21.178436392451765,-0.0548663073127556,-0.02164812121212104,0.21336742554142202,-0.0235021002272728,-6.318657392903909,-0.8525,-0.03169306249999987,0.0038891753700720476,-0.21500000000000005,-0.9309722222222222,-1.4805642481006942,-3.858263695669455,-0.13283638826597652,-0.02122474999999989,0.08034357853223567,-0.022463379062500073,-14.50389972497676,-4.454285714285715,-0.19939864285714282,-0.003970914793384995,0.05821428571428573,-1.5435714285714286,-1.3923192581929817,-21.708913572284537,-0.03245297705798221,-0.1735338571428572,-2.468316064079953,-0.12059601321428567,-6.801547695698885,6.686190476190477,-0.12916138095238094,0.007716894229012763,0.1391666666666667,-0.7836507936507937,-2.620883118766365,30.89659787354308,-0.12772252426717565,-0.08290838095238097,-2.798190800754457,-0.04607523226190477,7.465000781552801,3.519090909090909,-0.012504454545454931,-0.027877765030468925,-0.3593181818181818,2.8605050505050507,-0.8000522677290728,17.70552522373663,0.029032158434835042,-0.0002378181818185761,-0.9593139925489453,-0.03754567749999986,14.650133295769178,1.8499999999999996,0.30160299999999945,0.06609684178629815,-0.2975,-1.5188888888888887,3.1549574446725623,8.756658022518504,-0.05519660923683769,0.2450399999999997,5.111260502400549,0.15951446250000015,-21.319814518643927,,,0.45492063492063484,1.2666666666666666,0.6,0.06666666666666667,0.6666666666666666,-0.06666666666666667,0.6186063612496334,0.0317161303388063,0.043182797005472964,0.8356677137851848,0.25665740929003095,0.20590736452936909,1.4542740750348182,0.46256477381940003,1.995272712053039,1.1377871521738423,0.2531436474323932,0.1322789276162503,0.33684882551448764,0.8574855598791963,11.700373422,954.0,161.6834,85.0,324.44444444444446,3564.866206983845,3918.2149594493103,36.93821552424501,160.7144,259.34370713305896,184.41528500000004,5374.482313370099,824.0,150.983,98.0,262.33333333333337,3234.9491817373005,3273.901093505599,42.20722753,153.626,93.14660493827161,178.725472,6454.68972681017,1477.0,268.02649999999994,135.0,490.0,5553.206658665449,5976.208528839709,60.352636384849006,267.9713,362.6635802469135,306.312176,9137.33754975569,992.0,224.506,123.0,269.6666666666667,5160.336859412139,3767.0630995056,58.222480736849,228.40249999999997,131.93209876543213,273.32288800000003,8234.099976698562,971.0,224.83099999999996,113.0,250.0,5176.96363512783,3751.9498450112,47.384892600849,227.55620000000002,166.40740740740745,270.04274399999997,7150.214583894423,765.0,219.53099999999998,76.0,240.66666666666669,5160.505907894079,2900.3293685647996,31.863525270849006,218.79709999999997,190.45833333333337,256.66514199999995,5218.159181432653,790.0,160.606,55.0,152.0,3879.008581485097,3172.4989085583998,21.224882262396,160.72029999999998,114.72222222222221,191.145348,3663.406073932133,411.0,101.266,25.0,201.0,2252.0942006307982,1685.4255523727998,8.424431781698,99.31260000000002,126.0,112.429988,1991.3378637098754,201.0,48.760999999999996,11.0,63.0,1065.9192478658001,822.5460768671999,4.065188620000001,47.517599999999995,98.5,52.563264,852.1254974905214,257.79999999999995,8.336179999999997,0.8687583399942697,16.55,115.35555555555557,96.17069773256372,1175.8217298989543,7.4939360086837485,7.03472,113.19349708504802,4.85301855,791.1110565616623,-8.490000000000007,-0.9824889999999974,-0.7834056246047413,-2.177500000000001,15.19888888888889,-2.5790593222109353,-34.79004553504227,0.7366202417780648,-0.8242959999999986,-19.11422732338821,-0.6919209275000011,86.78082916028515,94.63,9.947392999999996,0.5539999155484922,3.742499999999999,66.54111111111112,84.43122280191304,457.71580463584917,2.972866499152565,8.223811999999999,119.90630422668035,6.154462742500002,64.28299712103146,-160.27,-0.6496969999999936,-0.2782369443675268,-6.4075,-0.747777777777773,-6.45774192874443,-698.8884009509082,-1.8105881413209348,-0.7143879999999942,7.041125042866927,-0.7755693075000024,-208.515693965829,-27.28,-1.0141779999999958,0.12445361184230552,-6.880000000000002,-29.79111111111111,-47.378055939222214,-123.46443826142256,-4.250764424511249,-0.6791919999999965,2.5709945130315415,-0.7188281300000023,-464.1247911992563,-124.72,-5.583161999999999,-0.11118561421477985,1.6300000000000006,-43.22,-38.98493922940349,-607.8495800239671,-0.9086833576235018,-4.858948000000002,-69.11284979423868,-3.3766883699999988,-190.4433354795688,140.41000000000003,-2.712389,0.16205477880926802,2.9225000000000003,-16.456666666666667,-55.03854549409366,648.8285553444047,-2.6821730096106884,-1.7410760000000003,-58.7620068158436,-0.9675798775000002,156.76501641260882,38.71,-0.13754900000000425,-0.30665541533515817,-3.9524999999999997,31.465555555555557,-8.8005749450198,194.76077746110292,0.31935374278318546,-0.002616000000004337,-10.552453918038399,-0.41300245249999845,161.15146625346097,9.249999999999998,1.5080149999999972,0.3304842089314908,-1.4874999999999998,-7.594444444444444,15.774787223362813,43.783290112592525,-0.27598304618418845,1.2251999999999985,25.55630251200275,0.7975723125000007,-106.59907259321963,0.7368027842585193,0.534900083542773,0.4336544754556875,0.29211640457354054,0.3141915748944414,0.15798599821935913,0.1753745955349217,0.0945135009844764,0.11678354681840293,0.052292323431037596,0.0767710687192251,0.02835347025905468,0.04923950949564656,0.01514826456871371,0.03272928061418721,0.007534256164879282,16.004503622576657,5.696794130436912,4.124675282086781,2.1712232835401735,0.6305080061284718,-0.438033092395167,4.017058154777464,0.989341894941846,7.014119520493254,0.653185025894083,17.430695589055432,10.311289938023384,32.06224577026647,11.709734236015692,2.9365330107070986,0.5263620602135525,4.00734859093161,2.2297085755628063,8.007382177653032,0.6048868517137329,4.031069333419402,2.4320260639460964,24.440717499638513,13.302793990471477,0.4745413307392387,0.7555563364103767,0.8067518009968258,0.8579472655832746,0.8579472655832746,0.8579472655832746,1.870766804658996,494.08270571066373,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,2.1182263988300143,0.8132331253245209,0.5754887502163468,0.3377443751081737,0.3377443751081737,0.3377443751081737,-104.47245769719748,600.8768131537422,52.8632887571592,30.04384065768711,62.32367875699255,,8.0,195.0,6.362358859030383,13.171245143024459,5.749511833283905,15.348179113924695,11.336785877934737,18.19910120538483,0.0,0.0,9.720841474747257,5.733667477162185,6.823809523809523,19.0,9.0,1.0,10.0,0.0,0.045079365079365157,-1.0,0.4192746400885934,0.12895604395604388,-0.2903185961325495,0.08765639589168983,0.2787023086269745,0.0,0.858809523809524,1.045079365079365,0.43953488372093064,0.7298534798534801,0.9574229691876752,9.279095418744502,0.4757419550820945,0.6477419550820944,12.535015706777772,3.8498611393504643,3.088610467940536,21.814111125522274,6.938471607291,0.4352976913730255,0.18422889043963714,0.07327285415212842,0.2930914166085137,0.125,0.6342006064091349,-0.979027207108322,-0.09733145842010434,-0.048951360355416106,-0.10878080078981356,0.3657993935908652,0.5646912901848407,0.03848013373280565,0.02823456450924203,0.05133557183498551,-2.7910964735700396,0.6755883113524697,0.6753930000369016,2.1070179593835996,1.2847072363688679,0.4283283338378695,0.8324707723927545,0.6522439372006182,0.7617175392364328,0.6571971050798924,0.7099044853924192,0.7320830690593,0.6907709264871548,0.6420880645085457,0.1813293306279302,0.369442696479949,0.6609905703561293,0.47110967116746344,0.46752430509858406,0.6098863270397015,0.7642228043771918,0.1777758077511301,0.23892133382597572,0.16612980601589297,0.7681926348042737,1.4181771163927877,0.5991693237590039,0.9487342779784718,1.0262748329213585,0.7533872728440248,0.7077338067596468,1.3645953747420208,1.1965590768647116,0.6155285799749262,0.4369440446649151,0.6610097026076374,1.1797168374858182,0.9742290535298683,0.8088849973848932,0.8472383659765097,1.2197885196374623,0.9916803120785975,1.078493483241208,0.9693701134402227,1.2489432763116997,0.8002650603009076,0.6807445919319403,0.8343272025253231,1.3704019605424855,1.3055524770032143,1.667482459420433,1.0305951814931407,0.9020284851100561,1.389888405757217,1.3734204993231258,1.3542449138245927,0.9920123881580466,1.6882294431862859,1.674211826888349,1.664765935066478,1.1505980103551223,0.8844065166795968,1.5413777510745186,0.6957632766062818,0.847360092073083,1.424856207171753,1.607595879141968,0.8812152236014659,1.500010432422161,1.4864923042931546,1.7778853852949599,1.3794218906930664,0.9925582225306864,0.4623034064461528,1.509217542196676,1.858128166429849,1.3567701180994232,0.8385142116600408,1.34417659645412,0.4955335370597292,0.571880574440506,1.4855873309941134,1.643413084964194,1.6234892143009165,0.39976779588248423,0.45694336695112503,0.7664337862186276,1.1364683571043275,2.066465256797583,1.3176651897514928,0.7105950113738906,0.5120344543301382,0.734600826060846,0.7821235244615279,0.8077981717562659,0.7815848962703841,1.1192451141072255,5.5,0.0,1.333333333333334,1.4791666666666667,0.7283333333333335,0.4725000000000001,0.30934240362811793,0.2161989795918367,0.0,0.0,3229.4024182197254,3362.004796937106,1592.637804287936,1536.4125756886328,10.430648811940506,0.444490680693288,5.794322621448434,0.8001498179148863,1.0,0.125,2.2037016960573483,3.5086949695628418,3.746439344671016,3.984183719779189,3.984183719779189,3.984183719779189,0.34375,0.0,0.05555555555555558,0.08217592592592592,0.045520833333333344,0.039375,0.034371378180901996,0.030885568513119528,0.0,0.0,0.6316342615088364,11.484375,4.107638888888889,2.9822485207100593,86.28806315228509,1.0,3.646165720504336,50.790779527837046,,32.35925562054231,34.28676065014647,36.07562363985522,32.14870921645116,69.16938115595966,34.782256491799785,35.03681105930909,50.800368564554084,-0.03136429125567996,-0.11224611387035877,-0.8588125840225944,-0.1253057114084305,0.12548274944730348,-0.02554049238952886,-0.028178911698534103,0.09361476887376056,-0.11159560146300182,-0.16082218935772324,-0.1357860690445461,0.10447131036606762,0.22246514798880976,0.7231997186124856,0.3864797713217445,0.13705026091733036,0.34959691307215873,0.5320793055288294,0.23592310884147355,0.24042602847500655,0.7085041742739561,0.6420023171075656,0.7685891535891555,0.04924642611353502,-0.3767778639772435,-0.047234555584902665,-0.19410282856443906,-0.2346424974823766,-0.003928711114224478,-0.04069621079386863,-0.3602320973311449,-0.1464285450240786,-0.061546504230789674,0.03769959070724853,-0.0968555961001748,-0.15974134959928749,-0.0661365399534523,-0.07603737563248365,0.0895341130215268,-0.25981873111782483,-0.16140916971681754,-0.30790340155749335,-0.06562667788085562,-0.35451700711628625,-0.06034284235904169,0.014195794034328572,-0.09257487409562888,-0.366671647543742,-0.34556134323395776,-0.47839332369776777,-0.09141586585312521,0.07034958998705224,-0.26761978148994137,-0.2895516599172053,-0.3692551858885975,-0.08661130017757471,-0.49336393528912936,-0.4361232981830011,-0.49699382753971005,-0.1719492513544145,0.5187114411319222,-0.3098814587793953,0.17765341346970354,0.16817724068479356,-0.13586702259405015,-0.5450481655139172,0.5255320103022456,-0.34086900160122696,-0.2357119571280192,-0.4944084020395684,-0.18988277826345737,0.18872194288365252,0.27300938006911635,-0.030000442757845767,-0.6417841129594867,-0.434221367756111,0.49594578028405806,-0.1663817122246317,0.3011600274687588,0.07748173563583528,-0.0006761269299092958,-0.16949984182009395,-0.15473123423358795,0.370368563914194,0.143522110162917,0.7236000182337703,1.5216393038997273,-0.35951661631419934,-0.2633403968406857,0.656116159923478,0.1489453341412736,-0.14731006289052245,0.6966588577796976,0.9031014385146524,0.6573824552968179,-0.5389841120740847,1.6509636244473134,6.447419590941252,2.8039657955522017,29.694516665723807,42.89754852610212,45.75309621552639,45.99274254563543,45.99274254563543,45.99274254563543,29.929090680795582,17.066807282607634,3.7971547114858977,1.9841839142437545,5.0527323827173145,12.862283398187945,2348.825439571903,2174.358047288768,305.42534066952794,14.0,24.0,26.0,36.0,40.0,40.0,45.0,46.0,26.0,234.00746844,16.0,4.394449154672439,5.198497031265826,6.1070228877422545,6.934397209928558,7.839525581704678,8.679482094459956,9.580040123637605,10.428245666832275,11.324968056557644,0.9833333333333336,1.1075999999999997,1.169548213635516,0.9749238597951877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7265558383233532,1.0870588235294119,1.0911689730517116,0.7356007225727662,3.0,1.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,10.470530430962235,5.749511833283905,5.131558479839333,0.0,0.0,0.0,4.9839785209472085,0.0,13.171245143024459,11.336785877934737,12.13273413692322,6.06636706846161,10.216620634085363,246.8561722538735,-381.07643927929166,-37.885285858547114,-19.053821963964584,-42.34182658658796,142.383714556676,219.80037387445051,14.978002898612079,10.990018693722526,19.98185217040459,0.5,0.8709720866536608,0.2628350532886038,51.0365619673414,0.37092068524683564,0.3821312927029899,0.12902791334633942,4.0,0.0625,0.50988856077088,0.8118355725800859,0.8668444412813987,0.9218533099827113,0.9218533099827113,0.9218533099827113,2.7771,,2.160714285714286,1.803191333982926,1.597842442073429,2.262991557248421,-7.689133973258969,1.6706067054981153,1.5408768906027293,-2.5200438552755378,50.7154,17.908108096824506,0.0,4.9839785209472085,0.0,6.362358859030383,5.733667477162185,18.19910120538483,0.0,5.749511833283905,3.4965075614664802,0.0,4.859812404361672,2.3978952727983707,6.371611847231857,4.727387818712341,7.954723334497908,6.803505257608338,9.578657284448841,19.66666666666667,3.8979166666666667,3.9102281746031746,0.0,0.0,1.1116156462585032,1.1261800831443691,0.048896919879063416,0.0,22.151999999999994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.39096427271032,10.470530430962235,18.30280362286379,5.749511833283905,11.34633737997759,0.0,0.0,0.0,18.19910120538483,0.0,10.216620634085363,0.0,19.498477195903753,14.531116766467065,17.788648510596158,101.58155905567412,,64.7063921894173,68.3330957890952,71.93820162076733,64.25884259726547,142.95422796227257,69.34176542286647,69.86817186653779,102.6532741210456,17.788648510596158,101.58155905567412,,63.1218683798935,66.77032996631,70.553404837637,62.5993154552833,146.08698355728632,67.89390627810144,68.53274522801543,104.1207809843837,4.711326099854677,77.11119820745809,,49.02743043362204,52.22225918775001,55.33206820345499,48.7655819042585,107.68253563697375,52.913952539456574,53.170608891432785,77.27947757523603,1.1859099007064104,6.772103937044942,,4.313759479294487,4.555539719273013,4.795880108051155,4.283922839817698,9.530281864151505,4.622784361524432,4.657878124435853,6.843551608069706,2.4057563599211007,50.790779527837046,,32.35925562054223,34.28676065014646,36.07562363985522,32.14870921645107,69.16938115595966,34.78225649179978,35.03681105930908,50.800368564554084,21.741176470588236,0.0,0.0,0.0,35.662482048374905,5.412246905706727,0.0,21.823379461034232,0.0,0.0,3.757110733182162,0.0,0.0,0.0,-4.67667717781557,0.0,0.0,14.712014451455325,339.017076424219,44.07403392114696,70.17389939125684,74.92878689342032,79.68367439558378,79.68367439558378,79.68367439558378,328.0,101.48662780680124,50.22281038633054,61.19010078112581,76.38,48.14,1.0,7.824422502474428,5.0,3.508369114325834,3.8193990152183326,,3.8169607262378333,3.815998811828531,3.8149898872562216,3.8181772536287086,3.760069240972655,3.8151512188636523,3.814057268816263,3.7888630067953466,0.23389127428838893,0.25462660101455553,,0.25446404841585557,0.2543999207885687,0.25433265915041475,0.25454515024191393,0.25067128273151035,0.25434341459091014,0.25427048458775087,0.25259086711968975,1.6606163978142117,1.7455581924905619,,1.7449195926482506,1.744667550328467,1.7444031220563327,1.7452382581142523,1.7299024804927126,1.7444454100311448,1.7441586305948105,1.7375310839870028,132.12,73.95363524172033,66.97033157194333,,67.24794963977676,67.13564810183163,67.17881635298427,67.154090258858,70.53886388069276,67.21687572779764,67.33078975756473,69.01182355539696,4.930242349448022,4.464688771462889,,4.483196642651785,4.475709873455442,4.478587756865618,4.476939350590533,4.702590925379517,4.481125048519843,4.488719317170982,4.600788237026464,4.708903454159801,4.60971481706973,,4.61385163749747,4.6121802792964,4.612823073098456,4.612454941491254,4.661628926757061,4.613389451011937,4.615082740249981,4.639742953901001,39.98371315192744,3.9102281746031746,0.314035808767952,5.974306618480726,-0.2651388888888886,3.8979166666666667,-4.67667717781557,0.0,0.0,157.36103653481732,96.08626854658321,-148.33015009123872,-14.74646437936619,-7.416507504561936,-16.481127787915415,55.42142093770616,85.55507264780758,5.830036152903848,4.277753632390379,7.777733877073415,369.0,18.0,2.3867927849398987,0.5819609213715958,0.3535533905932738,0.011021667854435136,0.08333333333333333,0.04564354645876384,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.06846531968814577,0.3003491900968691,0.14264167347254864,0.4159290857162178,0.16109332543229776,11.05204176387779,8.023501253141594,6.938471607291,4.673862473176649,7.540597797466593,3.7916639572646194,4.559739483907965,2.4573510255963864,4.204207685462506,1.8825236435173536,3.0708427487690035,1.1341388103621872,1.9695803798258624,0.6059305827485484,1.4728176276384244,0.33904152741956767,2.1878873247238606,0.8529429744717107,3.8684752637912445,1.2194369173676334,4.811374802812427,1.2868783141265008,48.802743124917626,35.06509341959119,31.565021600741062,30.98167629759937,30.98167629759937,30.98167629759937,80.0,90.0,24.266964999999992,13.121034999999997,0.45,46.07,6.006944444444445,3.069444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,20.0,0.0,0.0,21.0,10.0,0.0,4.0,17.0,10.0,16.0,11.0,0.0,0.0,0.0,8.0,0.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,4.0,1.0,1.0,15.0,7.0,0.0,2.0,1.0,0.0,2.0,1.0,1.0,0.0,3.0,1.0,2.0,3.091042453358316,5.481484919552927,3.7669972333778885,4.295583278148261,4.972846888034599,5.447545234912078,5.731873776697638,6.122475676692182,6.440204888084941,5.853391607252185 +4409,COc1ccc2cc(CCC(C)=O)ccc2c1,0,20.727272727272727,5.93,3.0303030303030303,6.545454545454546,158.53031349524193,81.58044972727272,1.5222337720480004,6.019536363636363,3.867845117845118,7.494139272727274,220.69318154738008,22.941176470588236,6.117647058823529,3.5588235294117645,6.117647058823529,141.52664970592355,86.29903499999999,1.8725949694117647,6.28275,3.015522875816994,7.561514823529412,267.5508204234032,18.655172413793103,6.005517241379311,3.3275862068965516,4.344827586206897,150.10298412308867,68.77432565517242,1.5846221780481378,6.130896551724137,2.7854406130268203,7.531251862068966,220.94670805406295,16.142857142857142,6.017,2.9571428571428573,3.4,151.5411368328878,57.03429581428571,1.4866797124441997,6.130314285714286,2.857142857142857,7.564577428571428,200.573848268222,12.826666666666666,5.744800000000001,2.466666666666667,2.6,155.08329591385248,43.831242319999994,1.3096290270118134,5.849566666666667,2.4088888888888893,7.338488959999999,167.08826668263438,11.774647887323944,5.617746478873239,2.3661971830985915,2.3098591549295775,159.88436540007223,40.89507853521127,1.1751544648221972,5.7062816901408455,2.294209702660407,7.251619605633803,148.77806785040272,12.648148148148149,5.858518518518519,2.314814814814815,2.3518518518518516,156.42090830985077,42.58568799999999,1.2509535755118704,5.95112037037037,2.702674897119342,7.457934666666667,160.27797627956875,10.56,5.6178,2.06,1.94,160.79207951957468,35.30061642,1.10250115807168,5.69958,2.375,7.26269016,135.64644502272483,11.054054054054054,5.7910810810810815,2.108108108108108,1.945945945945946,164.06501037808883,37.42263489189188,1.0310138394874862,5.851081081081082,2.6674174174174174,7.4503810810810815,131.31617059163614,7.059687786960514,0.09704315886134063,0.013169273326530583,0.5472910927456383,3.66574839302112,1.3579806235125131,33.72298353719009,0.24309415814042973,0.09400018365472904,1.2066625854504645,0.0610805950413223,53.01593368860797,0.29147085831577846,0.0027072867714579133,-0.0037594736945928235,0.20226327445578784,1.2112569545724623,-0.0405943530238211,1.360318280991735,-0.005215559248707858,0.003424237022632761,-0.03289055138431255,0.0005357472046669828,0.39526041038162985,0.4523289319527566,-0.004096450397390824,-0.0007079740068011434,-0.030572179475000752,-0.29479750482885286,0.1441477351699471,2.2398711524650885,0.026354044341012236,-0.0027202985972578355,0.032351114770132514,-0.0036138489598176167,5.519997159178858,-1.613800341073068,-0.022237964056145847,-0.0009870581031894785,-0.029975075429620864,-0.9202938475665748,-0.04041322609594219,-7.599468277449822,-0.01237863207158561,-0.02320819231273773,-0.27283622662410545,-0.011307296340023615,-6.755556729134397,-0.9619100091827363,-0.005309825528007349,-0.0004611800955710881,-0.029715335169880622,-0.15423324150596876,-0.19577341654183747,-4.642253192947658,-0.03609910566908672,-0.006305921028466477,-0.09575349454137332,-0.002217041101928368,-8.19573852798666,1.1255448208073047,0.0110490306392995,0.00138630323302723,-0.05561375599787893,0.1464581797488329,0.022173426183979682,5.3220739122337335,0.008381317557280882,0.012595932435753148,0.15718717980775176,0.004323686648818537,5.020183558724545,-1.5484644424038365,-0.013064483215998356,-0.0013264677933282525,-0.07534945413733293,-0.58213447607387,-0.2600101255251935,-7.426171141567187,-0.048574532528249614,-0.014166906438118541,-0.13930693013184595,-0.006564399755127027,-11.665848894426981,0.3451606978879705,0.00776896235078051,0.0008405913515148919,-0.05820018365472913,0.17000918273645552,-0.15415481218006963,1.5432199609917365,-0.02386756573001519,0.008424483011937534,0.028051219263340515,0.003157092231404966,-2.074756700245248,0.6413769141041867,-0.00132653314471497,0.0004841068899049749,-0.09356463901918448,-0.3569850842578113,0.04052895592545965,3.0854316446280996,0.010449273265562891,0.0008050579505124799,0.05989943111155231,-0.0032425508152780906,4.145327688989075,,,0.48039215686274506,1.2794117647058822,0.7058823529411765,0.029411764705882353,0.5735294117647058,0.1323529411764706,0.6644636253120149,0.013431865551262986,0.023549512610086514,0.7857400522904063,0.25973532127556587,0.22178655213629442,1.4502036776024212,0.4815218734118603,2.0156540814259976,1.8041702842267606,0.0,0.21148379719923652,0.0,0.21148379719923652,6.912576659151515,684.0,195.69,100.0,216.0,5231.500345342984,2692.154841,50.23371447758401,198.6447,127.6388888888889,247.30659600000004,7282.874991063542,780.0,208.0,121.0,208.0,4811.9060900014,2934.1671899999997,63.66822896,213.6135,102.52777777777779,257.091504,9096.727894395708,1082.0,348.32000000000005,193.0,252.0,8705.973079139143,3988.910888,91.90808632679199,355.592,161.55555555555557,436.812608,12814.909067135652,1130.0,421.19000000000005,207.0,238.0,10607.879578302145,3992.400707,104.06757987109398,429.122,200.0,529.52042,14040.169378775541,962.0,430.86,185.0,195.0,11631.247193538937,3287.3431739999996,98.222177025886,438.71750000000003,180.66666666666669,550.386672,12531.620001197578,836.0,398.86,168.0,164.0,11351.789943405129,2903.550576,83.435967002376,405.146,162.8888888888889,514.864992,10563.242817378594,683.0,316.36,125.0,127.0,8446.729048731942,2299.6271519999996,67.551493077641,321.3605,145.94444444444446,402.728472,8655.010719096712,528.0,280.89,103.0,97.0,8039.6039759787345,1765.0308209999998,55.12505790358399,284.979,118.75,363.134508,6782.322251136241,409.0,214.27,78.0,72.0,6070.405383989287,1384.6374909999997,38.14751206103699,216.49000000000004,98.69444444444444,275.6641,4858.698311890537,232.96969696969697,3.202424242424241,0.4345860197755092,18.060606060606062,120.96969696969695,44.81336057591293,1112.8584567272728,8.022107218634181,3.102006060606058,39.81986531986533,2.015659636363636,1749.525811724063,9.910009182736468,0.09204775022956906,-0.127822105616156,6.8769513314967865,41.18273645546372,-1.3802080028099173,46.250821553718986,-0.17732901445606716,0.11642405876951387,-1.1182787470666267,0.018215404958677416,13.438853952975414,26.235078053259883,-0.23759412304866778,-0.04106249239446632,-1.7731864095500436,-17.098255280073467,8.360568639856933,129.91252684297513,1.5285345717787098,-0.15777731864095446,1.876364656667686,-0.20960323966942176,320.1598352323737,-112.96602387511476,-1.5566574839302092,-0.0690940672232635,-2.0982552800734604,-64.42056932966024,-2.8289258267159534,-531.9627794214875,-0.8665042450109927,-1.6245734618916412,-19.09853586368738,-0.791510743801653,-472.88897103940775,-72.14325068870522,-0.39823691460055116,-0.03458850716783161,-2.2286501377410466,-11.567493112947657,-14.68300624063781,-348.1689894710744,-2.707432925181504,-0.4729440771349858,-7.1815120906029986,-0.1662780826446276,-614.6803895989995,79.91368227731863,0.7844811753902645,0.09842752954493333,-3.948576675849404,10.398530762167136,1.5743132590625575,377.86724776859506,0.5950735465669427,0.8943112029384734,11.160289766350376,0.30698175206611616,356.4330326694427,-83.61707988980717,-0.7054820936639112,-0.07162926083972564,-4.0688705234159785,-31.435261707988982,-14.040546778360447,-401.0132416446281,-2.623024756525479,-0.7650129476584012,-7.522574227119682,-0.3544775867768595,-629.955840299057,17.258034894398524,0.3884481175390255,0.042029567575744595,-2.9100091827364563,8.500459136822776,-7.707740609003482,77.16099804958682,-1.1933782865007596,0.42122415059687673,1.4025609631670257,0.1578546115702483,-103.7378350122624,23.73094582185491,-0.04908172635445389,0.01791195492648407,-3.461891643709826,-13.208448117539017,1.4995713692420072,114.16097085123968,0.386623110825827,0.029787144168961756,2.2162789511274354,-0.11997438016528934,153.37712449259575,0.7206301398015917,0.5996948093199164,0.4547706582223127,0.31942617252996913,0.30240669113673707,0.17706035568048725,0.1917192836969177,0.09922611600069076,0.11904405264810082,0.052114795711592665,0.07905479111702322,0.029020229911970844,0.053211153262126124,0.016555267573567907,0.035249844300016056,0.009384084351696262,8.0221006988988,5.653775649618031,3.543378114009403,2.1536079518726683,0.37753073337515713,-0.5293237480587857,3.1929050210014007,0.9728861835315687,6.021978763706594,0.9955199115459641,13.636857367534885,10.914104660922012,16.01026967648066,11.664875155000606,2.0249768454453956,0.7526999739233806,3.488469612542696,2.2035718788038903,7.008269089792494,1.3602160405969148,3.7015580721333574,2.3995782419234555,20.93394534993082,14.702500561480425,0.2383599956821788,0.559299318581292,0.7484497278484995,0.8709262724665416,0.8709262724665416,0.8709262724665416,1.7656586480509389,543.6131589013072,0.0,0.0,1.0,0.0,8.0,2.0,3.0,0.0,0.0,3.7758593616402356,2.067843362349318,1.0611984851107232,0.4093871213432392,0.4093871213432392,0.4093871213432392,122.63579292970996,529.1147489643924,41.34159623789155,16.033780271648254,31.68235291576918,,11.0,286.0,0.0,4.794537184071822,5.783244946364939,6.4208216229260096,17.55655767067471,10.949675706161791,14.033534740968157,18.19910120538483,18.19910120538483,4.736862953800049,8.166666666666666,21.75,12.0,0.5,9.75,0.0,0.019607843137254936,2.25,0.11374974232117074,0.05872680291284932,-0.055022939408321425,0.0,0.10605955334987582,0.0,0.5525252525252528,0.7901960784313724,0.438775510204082,0.49379844961240343,0.7901960784313724,11.295881630304253,0.22834171437147077,0.40034171437147076,13.357580888936907,4.41550046168462,3.770371386317005,24.65346251924116,8.185871848001625,0.6079404466501241,0.163265306122449,0.0,0.30612244897959184,0.26666666666666666,0.3668985452244593,-0.42139697315494895,-0.05428678948258302,-0.012769605247119667,-0.032415151781149926,0.6331014547755408,0.7271411680828392,0.035452534911238606,0.02203458085099513,0.03635705840414197,-4.445283500610477,0.8322213380669645,0.6524468985171662,1.1350320177082986,0.7816818002368732,0.5212778498172818,1.0936607965780525,0.8392879939051903,1.077203286727416,0.6578361630625551,0.5685735673375593,0.6660433545736565,0.9966760173145871,0.8738741971366034,0.9596178443707745,1.1774462061156041,1.3288590604026844,1.1105659595052173,0.910911133373089,0.8731351802806196,0.9015189937635777,0.9425446801911113,0.6371605555612248,0.9890635364770496,0.8776473859150797,1.1822506317823696,1.276889802097978,1.0750575659630583,1.1263662511984658,1.267849985685657,1.033134124200229,1.1783436265297231,1.0430224013183986,1.2750827072663775,1.4450791503342975,1.2671803794538798,1.0898376947274189,1.0613111342351718,0.7774110522331568,0.722009788157656,0.9095302013422818,0.887054108216433,1.120402132479199,1.0667147353351654,1.13212710910984,0.8176455118974816,0.7817426964867034,0.7202871095601036,1.1411895990220602,0.7883513359030353,0.5903977993624121,0.6058997683282622,1.1105019378013044,0.8662395212961134,0.9365602563864828,0.7938601266313503,0.9333280357045247,0.608856339877371,0.4604460143518702,0.574340203728886,0.8984408686043454,1.1866111689212626,1.144503322398856,1.0502572533883006,1.000745712155108,1.109552438209753,1.1585100623002949,1.1868128095892971,1.164179200486315,1.153776669773161,1.2312650027950411,1.1278406204115161,1.1797194598666803,0.9079292403746099,0.6844814534443603,0.5486687570527818,0.9922147651006712,0.838557114228457,1.0559939606883166,0.9138345915712689,1.0543957112046818,0.7070418165370992,0.908759142603475,0.6620832088534426,1.022421260693643,0.944792867789746,1.2598563741637174,1.212434331096055,1.197170324687103,1.2118290635324704,0.8994893359860903,0.9391259831891178,0.8843159972988189,1.2133874214287481,1.2075400983361915,1.3277548399322203,0.8664516964019869,4.0,0.03305785123966942,1.5555555555555562,0.625,1.0666666666666667,0.3194444444444444,0.283265306122449,0.2204861111111111,0.06979087931468882,0.07125000000000001,2679.494905071506,3064.097850183128,1568.6182065847206,1408.306288402925,13.39078844280883,0.4457266029212795,7.42215779975812,0.8041638030446109,1.0,0.26666666666666666,1.2685347577182178,2.9765507570091354,3.98319563424773,4.635006998015214,4.635006998015214,4.635006998015214,0.2222222222222222,0.011019283746556474,0.06481481481481485,0.027173913043478257,0.05925925925925926,0.019965277777777776,0.02360544217687075,0.024498456790123455,0.009970125616384117,0.017812500000000002,0.48034129544748716,13.432098765432098,6.25,3.728894173602854,101.21284555276587,1.0,3.7467281940799753,69.60420458877165,,53.73824640070002,53.47194635572416,54.31598814311765,53.74373699302748,64.43588176629808,53.67309227050547,53.74950002227301,58.78816064424913,0.04128664993572876,0.027897760163868936,-0.28547313138524166,0.36957165416502175,0.33042555699634557,-0.029893175440766546,0.040338016934105506,-0.021454893398528126,0.03642798226022925,-0.027257455216475476,0.008771152348868551,0.007455502202473954,0.06407208726542038,-0.04221266543109963,-0.05375953473263188,-0.05586091182596613,-0.08041945960887295,0.10614859496087566,0.06641972084097877,0.10841085011096041,-0.02893929023851413,0.02681040678662907,-0.059165254650397105,0.10411958773754448,-0.22859372677270692,-0.22915540175191937,-0.0749515997364083,-0.054769894534995166,-0.2510521042084169,-0.029759795829347343,-0.225349820221839,-0.050921141693724976,-0.2468951805241516,-0.22610813487869252,-0.18512092641491118,-0.12742502600847386,-0.1362539021852237,-0.0547161241483725,-0.035019403435267986,-0.054295302013422815,-0.042074148296593186,-0.1441651030597592,-0.13765843665131614,-0.1484984499225733,-0.06708413519306176,-0.07935399315097448,-0.03629697943231387,-0.15459010070679474,0.15943266257273087,0.11385687326076042,0.10526801279417661,-0.10161640986860764,0.039953145728075914,0.016328234586018276,0.15781740979010622,0.03447765927982191,0.13399901942765471,0.13026605921411868,0.07078658362600222,0.09469197672176957,-0.21933894091802522,-0.1346254941542602,-0.100724448527921,-0.13767710663683816,-0.15880371854820755,-0.1914682146588063,-0.22021097668827322,-0.19981776978856589,-0.15071147616216196,-0.11544812262480207,-0.10747111665637954,-0.22004420337000932,0.048891779396462005,0.0800567751703253,0.06382974448722631,-0.10634228187919466,0.046377755511022065,-0.11351768170398285,0.045761667537211115,-0.0981823911878107,0.08962198460038551,0.023246945419185754,0.05168731950415884,-0.039134587583262166,0.09085060606912843,-0.01366951735990351,0.03676033429496082,-0.17095955015418102,-0.09738395710339592,0.029845017832897083,0.09149343625617973,0.042984468839134315,0.008564429549090338,0.04964058041891718,-0.0530864313467221,0.07819022321358872,9.724057993467298,16.199884626697823,3.081339135366178,10.642267689231877,26.30724187650496,33.16012337859811,34.483997718124215,34.483997718124215,34.483997718124215,34.26611938424196,30.67089483185493,0.0,3.595224552387021,0.0,3.595224552387021,3230.7948750300484,3113.483769069248,282.0424802990942,33.0,24.0,29.0,36.0,48.0,47.0,50.0,52.0,49.0,228.115029752,18.0,4.442651256490317,5.25227342804663,6.102558594613569,6.940222469119639,7.796880342783522,8.646992628951082,9.506957408485542,10.363598661757617,11.225603327733996,0.6161616161616161,0.9660606060606061,1.113366342841934,0.5759644568236691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6772398475775722,0.9546048722519311,0.9928491028272529,0.6292188072460819,6.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9.53140013787187,11.532756779648844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.26546827384644,41.81319288016644,6.4208216229260096,7.109797541277533,169.02480177334263,-194.1314316518405,-25.009131136214357,-5.88277065611638,-14.933187050141582,291.6605947030526,334.9833173125519,16.332465101677197,10.151009615531876,16.749165865627596,0.45454545454545453,0.8672405135413119,0.43250205318459845,37.41225179477919,0.11290075759721678,46.86985054704477,0.13275948645868813,6.0,0.2222222222222222,0.2514741567971597,0.5900710147897194,0.789628157514844,0.9188431530811266,0.9188431530811266,0.9188431530811266,3.370000000000002,,0.5,0.5714285714285714,0.3462683717566024,0.49853115819738747,-2.164588528678304,0.5174418604651163,0.4969896004378762,-0.7979889561160514,69.50200000000004,9.53140013787187,0.0,0.0,0.0,19.765380445542643,7.109797541277533,41.96165390246666,0.0,5.749511833283905,3.6109179126442243,0.0,4.890349128221754,0.0,6.368187186350492,0.0,7.9420068084898565,0.0,9.570598887246268,20.333333333333332,12.30789383345931,0.0,0.0,0.0,0.0,2.349793556311414,2.0757896352985643,0.0,31.88,0.0,10.947641763699664,0.0,0.0,0.0,0.0,0.0,0.23595171723418495,36.741089313783824,4.736862953800049,0.0,5.749511833283905,12.893042487642472,11.21535880699783,0.0,18.90801031431363,36.39820241076966,0.0,10.772448428929591,0.0,19.006827075181082,22.34891497005988,21.79310761022087,139.20840917754333,,107.41766927198827,106.87666582069201,108.59123883073453,107.42882326156115,130.14505090240692,107.28530902801505,107.44053067978862,118.04572655680181,21.79310761022087,139.20840917754333,,106.97649280140004,106.37246414001973,108.28570791447878,106.98894282785761,131.03635206127456,106.82874268054584,107.00201044410818,118.37431024461432,4.753060934082649,106.03441613169649,,82.48914518476388,82.19329050631063,83.13256053448997,82.49524983789216,94.85613391020453,82.4167188599209,82.50165760240257,88.1942876395071,1.2819475064835806,8.188729951620196,,6.318686427764016,6.286862695334825,6.387719931219678,6.319342544797714,7.655591229553348,6.310900531059708,6.320031216458155,6.943866268047166,2.376530467041324,69.60420458877165,,53.73824640070002,53.47194635572416,54.31598814311765,53.74373699302748,64.43588176629808,53.67309227050547,53.74950002227301,58.78816064424913,31.501960784313727,0.0,3.299907761390445,0.0,0.0,0.0,0.0,32.76402039329935,1.4295276675485007,0.0,5.186827398391252,0.0,0.0,0.0,0.0,0.0,0.0,20.764220639120705,399.52503982117184,41.86164700470118,98.22617498130147,131.4454559301751,152.95523093450208,152.95523093450208,152.95523093450208,403.0,105.27773811798191,61.16035665522335,49.3820599229526,26.3,26.3,0.8333333333333334,8.265887245242215,5.169925001442312,3.575772804096132,4.046391285161591,,4.036299272654602,4.037410176853089,4.033833881948663,4.036276186329882,3.987981083230854,4.036572680545615,4.03625194686838,4.013474990944913,0.2103395767115372,0.23802301677421123,,0.23742936897968245,0.23749471628547583,0.23728434599698017,0.2374280109605813,0.2345871225429914,0.23744545179680088,0.23742658510990472,0.23608676417323018,1.8048095728249336,1.9284536942670387,,1.9259565016108908,1.9262316921444231,1.925345510259099,1.9259507819183745,1.9139133597279583,1.9260242365861766,1.925944776498238,1.9202856983988916,186.42999999999964,127.80809920253992,80.82768089056036,,81.405663008993,81.32268514324073,81.58385360931781,81.40736839532549,84.2423448588033,81.38540903337096,81.40915816050222,82.86733441613706,7.518123482502348,4.7545694641506095,,4.7885684122937064,4.783687361367102,4.799050212312813,4.788668729136794,4.9554320505178415,4.787377001962998,4.7887740094413065,4.874549083302179,5.381158165039339,4.922947743199495,,4.930073091785824,4.929053258746452,4.932259621018068,4.930094040800997,4.964325953956371,4.929824257799139,4.93011602585638,4.947869199557317,5.186827398391252,10.947641763699664,2.349793556311414,1.2063581821617537,1.1053831703709953,12.30789383345931,1.4295276675485007,1.6308643602068926,1.6690434011835527,223.24501962664817,77.86725781929646,-89.43351555905835,-11.52134149301707,-2.7101065320926776,-6.8795011968506445,134.363776707317,154.32192234911105,7.5241281608030475,4.676421889367003,7.716096117455553,566.0,23.0,1.1498299142610593,0.4968967459058082,0.0,0.0,0.08333333333333333,0.027777777777777776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13608276348795434,0.048112522432468816,0.2886751345948129,0.08238682850802967,12.25071237662706,10.194811758438577,8.185871848001629,5.749671105539444,7.25776058728169,4.249448536331694,5.559859227210613,2.877557364020032,4.2855858953316295,1.876132645617336,3.794629973617115,1.3929710357746006,2.500924203319928,0.7780975759576916,1.7624922150008029,0.46920421758481307,2.0610711130309025,0.8257166034021866,2.7862462113480984,0.9650569879588844,4.320508131118972,1.258515577716744,58.5580382859893,36.915042956466756,23.35630664849839,19.9877898017723,19.9877898017723,19.9877898017723,84.0,95.0,37.32268799999998,18.655312,0.30303030303030304,52.02,5.805555555555555,3.8611111111111107,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,11.0,33.0,0.0,0.0,34.0,11.0,1.0,6.0,28.0,12.0,18.0,22.0,0.0,0.0,0.0,15.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,2.0,0.0,0.0,17.0,2.0,0.0,0.0,2.0,0.0,2.0,4.0,0.0,0.0,0.0,0.0,2.0,3.2386784521643803,6.459708817088444,3.8394523125933104,4.391357962102766,4.994675274517526,5.6447841338942455,5.917296476994568,6.2824419651892445,6.626293404260537,6.905432270385757 +387447,CC(C)C[C@H](NC(=O)[C@H](Cc1ccccc1)NC(=O)c1cnccn1)B(O)O,0,22.37735849056604,6.235654716981131,3.0,7.283018867924528,163.9180489940873,88.52702262264155,1.5226063890797163,6.283205660377357,5.4381551362683425,7.747555415094337,217.76841270941486,23.59259259259259,6.340796296296297,3.5925925925925926,6.462962962962963,147.13576254470001,89.42475488888888,1.8118187237407408,6.465911111111111,3.387860082304527,7.754166111111111,262.58573786357863,19.967032967032967,6.205403296703295,3.2857142857142856,5.175824175824176,153.03293258375686,74.03130857142857,1.5604804019647471,6.302218681318682,3.3766788766788767,7.664882241758244,215.82844770076537,16.184,6.1827016000000015,2.712,3.984,160.14762560879817,57.750215071999996,1.3159792269130473,6.2464016,3.267111111111111,7.706565599999999,176.0473053973011,14.417266187050359,6.089733093525179,2.4892086330935252,3.618705035971223,164.80345633984948,51.43437425899278,1.1712603238209423,6.136685611510792,3.132294164668265,7.676364748201438,157.52016404310035,17.434108527131784,6.296687596899225,2.6589147286821704,4.511627906976744,161.63276119720612,63.6521522248062,1.2629436100226588,6.3421821705426344,4.2842377260981905,7.826848434108527,174.78420881276386,16.392592592592592,6.411154814814814,2.5703703703703704,3.859259259259259,163.3255579629634,58.17972606666667,1.2360636901320667,6.451843703703704,3.8950617283950613,7.9588945777777775,171.57368172275278,15.427536231884059,6.237463043478261,2.5217391304347827,3.753623188405797,163.79112883850198,54.99296684782609,1.2346375506048548,6.285694202898551,3.5362318840579707,7.808245797101449,169.62616201384898,15.915384615384616,6.122866923076923,2.4923076923076923,3.8076923076923075,159.76891099433533,57.12353990769231,1.3296750544028921,6.189167692307692,3.6811965811965814,7.66739643076923,178.5442902508406,7.562121751512993,0.14593449626201493,0.02817443333999974,0.5475258098967604,3.8640085439658245,1.8058674093859368,35.9664376995372,0.28178589042160906,0.13561288714845135,2.08856453463075,0.09231053043787826,52.53639629424142,-0.225294358081827,-0.0329204850810226,-0.018590022957989668,0.12892422504384052,0.8078992128475929,-0.2333705763606699,-0.6488302488034463,-0.009650388111502463,-0.029772705457326236,-0.24438020354914464,-0.02493853358253239,1.8033450857083477,0.2676522480723263,0.023968033283910832,0.0006366405951133808,-0.07852311447897072,0.3248780411471761,-0.3620240073300601,0.9822752117213525,-0.04275265144198518,0.021580602380887208,0.27368118610553643,0.015981575720114702,-5.830709152585399,-0.47065005339978655,0.015473986756852975,0.00520338678175143,0.027870416518333913,0.1842933428266287,0.03148030864844635,-2.4467438287447476,-0.028335705333576204,0.011701165681737308,-0.052505834421106776,0.010191073184763247,-6.858456776984254,0.6553344721872911,-0.008676290750952107,-0.00575393778333567,0.006973986492543236,0.34652491605860913,0.06781257533820215,3.3177123485149216,0.02549241387561607,-0.005865500152387885,-0.18930658250188748,-0.00872692109893432,6.445722719083985,0.9198147703533217,0.02152083502363667,0.0023329614770871824,-0.023758075510333626,0.305071461884695,-0.2463952366392438,4.02063761214921,-0.030532830833702264,0.02225840142840981,0.46440704159663976,0.013966528213577006,-1.1205675476102135,-1.0387115488575083,-0.02352418179660609,0.0025176279654447135,0.023124085281436647,-0.6521287396331896,0.07328325360766477,-4.888101052157747,0.0039031957362437135,-0.022351685191777652,-0.392431294472353,-0.013856117020687583,-2.3759626021916995,-0.32654614309079,-0.02776873197434743,-0.0032142550083928277,0.0037457241475381832,-0.2905877072143885,0.20828900776338052,-1.2164793771417959,0.03927430040548753,-0.02515000773909943,-0.357569183249837,-0.01850280388605987,5.502920743842566,-0.12104773119369065,0.001850510994879106,0.0009818082552675608,-0.054492428184133426,0.01538187693403075,-0.02408073281461802,-0.5698589096968524,-0.0009693368309664317,0.0015765032724484572,0.21685394625942875,0.003232695686940325,-0.6650481635948589,,,0.4678571428571429,1.1696428571428572,0.5357142857142857,0.0,0.6339285714285714,-0.09821428571428571,0.9262824587464633,0.019683302202463743,0.02582615934532088,0.961955688381832,0.2305087731660837,0.24674412328763456,1.8882381471282952,0.47725289645371827,1.9856127970625166,1.3768664730779767,0.2880316171770675,0.24898849066806178,0.0,0.6087463239845398,7.2489978430188815,1186.0,330.4896999999999,159.0,386.0,8687.656596686626,4691.932199000003,80.69813862122497,333.0098999999999,288.2222222222222,410.62043699999987,11541.725873598987,1274.0,342.403,194.0,349.0,7945.3311774138,4828.936764,97.838211082,349.1592,182.94444444444446,418.72497,14179.629844633246,1817.0,564.6916999999999,299.0,471.0,13925.996865121875,6736.84908,142.003716578792,573.5019000000001,307.27777777777777,697.5042840000002,19640.38874076965,2023.0,772.8377000000002,339.0,498.0,20018.453201099772,7218.776884,164.49740336413092,780.8002,408.38888888888886,963.3206999999999,22005.913174662637,2004.0,846.4729,346.0,503.0,22907.680431239078,7149.378021999997,162.80518501111098,852.9993000000001,435.38888888888886,1067.0147,21895.302801990947,2249.0,812.2727,343.0,582.0,20850.62619443959,8211.127637,162.91972569292298,818.1414999999998,552.6666666666666,1009.663448,22547.16293684654,2213.0,865.5058999999999,347.0,521.0,22048.950325000056,7854.263019,166.86859816782902,870.9989,525.8333333333333,1074.450768,23162.447032571625,2129.0,860.7699,348.0,518.0,22603.175779713274,7589.029425000001,170.37998198346997,867.4258,487.99999999999994,1077.53792,23408.410357911158,2069.0,795.9726999999999,324.0,495.0,20769.958429263592,7426.060188,172.857757072376,804.5918,478.5555555555556,996.761536,23210.757732609276,400.7924528301886,7.734528301886791,1.493244967019986,29.0188679245283,204.7924528301887,95.71097269745465,1906.2211980754716,14.934652192345279,7.187483018867921,110.69392033542975,4.892458113207548,2784.429003594795,-12.165895336418657,-1.7777061943752204,-1.0038612397314421,6.961908152367388,43.626557493770015,-12.602011123476174,-35.0368334353861,-0.521120958021133,-1.6077260946956167,-13.19653099165381,-1.346680813456749,97.38063462825077,24.356354574581694,2.1810910288358856,0.05793429415531766,-7.145603417586336,29.563901744393025,-32.94418466703547,89.38704426664307,-3.8904912812206516,1.9638348166607358,24.904987935603813,1.4543233905304378,-530.5945328852713,-58.83125667497332,1.9342483446066219,0.6504233477189287,3.483802064791739,23.036667853328588,3.9350385810557937,-305.84297859309345,-3.5419631666970255,1.4626457102171635,-6.563229302638347,1.2738841480954057,-857.3070971230318,91.09149163403346,-1.206004414382343,-0.7997973518836582,0.9693841224635098,48.16696333214667,9.425947972010098,461.1620164435741,3.5434455287106337,-0.8153045211819161,-26.31361496776236,-1.2130420327518705,895.9554579526739,118.6561053755785,2.7761877180491306,0.3009520305442465,-3.0647917408330376,39.35421858312566,-31.78498552646245,518.6622519672482,-3.938735177547592,2.871333784264866,59.908508365966526,1.8016821395514337,-144.55321364171755,-140.22605909576362,-3.1757645425418217,0.3398797753350363,3.1217515129939475,-88.0373798504806,9.893239237034745,-659.8936420412958,0.5269314243929013,-3.0174775008899832,-52.978224753767655,-1.8705757977928237,-320.75495129587944,-45.06336774652902,-3.8320850124599453,-0.44356719115821025,0.5169099323602693,-40.10110359558561,28.743883071346513,-167.87415404556782,5.419853455957279,-3.470701067995721,-49.34454728847751,-2.553386936276262,759.4030626502741,-15.736205055179784,0.2405664293342838,0.1276350731847829,-7.084015663937345,1.9996440014239973,-3.1304952659003424,-74.08165826059081,-0.12601378802563612,0.20494542541829944,28.191013013725737,0.42025043930224226,-86.45626126733166,0.7327963246474526,0.5695631341277203,0.46079590002427984,0.3150999705131945,0.3146717328374211,0.18328068796111951,0.19741284449984617,0.09348096097467314,0.12886685102435938,0.05296090250537663,0.08886437812063208,0.02867276738354342,0.05322864039950716,0.015286812659175055,0.03375164415372575,0.008611863827019874,8.023671526776553,4.982042860118389,3.545805980945646,1.9741545456790448,0.5333947937708764,-0.38017958767578813,3.141031984315859,0.9772327389328855,6.023191649591025,0.9889102346592027,14.55034016372486,8.290106620105284,16.011843839742745,10.79704629088159,3.04816491601524,0.751032440849695,3.4911522681731078,2.0039565354608855,7.009362224741424,1.1997643498561132,3.7040128744565433,2.2371471270976797,29.650513790123156,14.701777849138535,0.28764478551321,0.646014747824864,0.8102910061358937,0.8597555355253291,0.8811607262419431,0.8811607262419431,1.9938996053542855,759.0436469670761,0.0,5.0,3.0,0.0,6.0,3.0,1.0,1.0,0.0,4.01522693395842,1.8814218266088858,0.9032887354891921,0.6087672171035923,0.4813165095156018,0.4813165095156018,194.4143699222392,2115.2909475573338,85.77087895569139,39.911149953911966,80.72799123960291,,12.0,537.0,30.91578521994113,19.63711951827565,18.032655663935863,6.4208216229260096,5.563451491696996,18.59053071483923,0.0,44.179309741689295,20.60153424990708,0.0,13.100000000000001,32.75,15.0,0.0,17.75,0.0,0.03214285714285709,-2.75,0.15398067188219094,0.03810702134240673,-0.11587365053978421,0.06874999999999987,0.16357983193277292,0.0,0.5905660377358493,0.8499999999999998,0.4365853658536583,0.5524590163934425,0.7812499999999999,25.935908844900972,0.5511324616689848,0.7231324616689847,26.934759274691295,6.4542456486503434,6.908835452053768,52.87066811959227,13.363081100704111,0.550420168067227,0.17811704834605593,0.0,0.31806615776081426,0.3684210526315789,0.35548989384901103,-1.117885242974483,-0.08034754847308632,-0.021092174395744966,-0.06210473572080462,0.644510106150989,2.0267477334253683,0.047161121050757794,0.03824052327217677,0.057907078097867666,-3.5152588255745534,0.8769663176027926,0.9999551594626364,1.7312898275681041,1.028704907768627,0.5948208204519242,1.4025124070188946,0.8711046872572072,1.206727547989536,0.987684137037599,0.7855978457198134,1.0587482154037922,1.018732547148062,0.8454678736196485,0.5986254796115014,0.9604369582242771,1.476871632918447,0.7826739319276632,1.4021147649008898,0.8596822760864256,1.2807239963238466,0.6076754729564673,0.5002353851523376,0.5714613200021004,1.153105363495729,1.0192607099143207,0.8427485356036394,0.8581626150633731,1.0178205461638492,0.8998769117376082,1.0268088020270523,1.0257533967653343,1.098926138972572,0.8601627000398491,0.9253825495729251,0.8299576307129323,1.1116312635072323,0.9287355916980004,1.1312605714223538,1.2783641554229408,1.095789168405198,0.9398530926502578,0.9032336036675446,0.9210489177739521,0.8618172820142015,1.1114890445128058,1.2160912583544652,1.1727644885096316,0.8416331336727391,0.8931143434573454,1.0666561487052904,1.2747593658551317,1.2154615376861122,0.9959790481985706,1.2844807174202169,0.9003004565185652,1.2502030636684471,1.0313347183895467,1.0645552431838197,1.1085229041262759,1.0291103886163233,1.1845051906251418,1.5017759888544655,1.2672017600802545,1.028704907768627,1.2912078837636236,0.9410305039480132,1.1744750311599292,0.9331889217498992,1.4748782284972821,1.6557725127259797,1.553504674394689,0.9673296892003549,1.068969187376936,1.3695513055074444,1.1969957913252682,1.051789449878442,1.1821795477790862,0.8134008926206587,1.0542666946582984,0.7750602201763418,1.3489310256633904,1.5217681565648875,1.4115528608683758,0.8299550225444506,0.9770643065624707,0.9451953260312733,0.9316097244914991,1.0544863459037712,0.9736686935691911,1.0624569471345795,0.9781484698011302,1.046633453547615,0.9452237983958487,0.8707694930020267,0.9297172698772247,1.0162869771967855,6.0,0.16916641159065401,2.666666666666668,1.625,1.6222222222222227,0.8819444444444444,0.633469387755102,0.5277777777777778,0.382716049382716,0.2568750000000001,5212.076812782407,5936.891778536926,2553.4809714121684,2286.347228730387,14.526649485655792,0.4497710818435934,7.992982630929707,0.8174253787870572,1.0,0.3684210526315789,1.712693520604779,3.846498627954313,4.824631719074007,5.1191532374596065,5.246603945047597,5.246603945047597,0.20689655172413793,0.007355061373506696,0.07017543859649125,0.042763157894736836,0.04269005847953216,0.020510335917312657,0.015450472872075658,0.012872628726287264,0.0095679012345679,0.007339285714285716,0.43562089253293407,24.271105826397147,12.6398891966759,8.729338842975206,164.11611240521268,1.0,4.221055026977367,156.6368114992011,,135.7559936543771,133.56563860847203,133.29625690852205,134.97494523993328,171.80326467602254,135.1496966660614,135.9724363315687,159.68512690300886,-0.029792479608881088,-0.22558398407677527,-0.6598188766975869,0.23546693637720936,0.20908318489855246,-0.12922907581571824,-0.01803988079730774,-0.03424723678344405,-0.21954185979931945,-0.11700869161428622,-0.2701591407203011,0.03432563352096563,0.03539380307104626,0.16423829798869452,0.022596393951587693,-0.14341445290730087,0.08407798208793235,-0.2004709789037956,0.027310884106100726,-0.15172034120664635,0.15913386135097599,0.13103793613632445,0.17312841389065292,-0.11098418551453844,-0.062237830712738945,0.10603378332886106,0.1846847004501805,0.050902470741222346,0.04769485903814262,0.017432236987515514,-0.06802852840708856,-0.10055757330922503,0.08628358209738869,-0.025139675384935903,0.11039989843435555,-0.13054676873099533,0.08666013239686005,-0.0594533230537518,-0.20422550167732048,0.012737274419735989,0.08968016300061112,0.037551248217753144,0.092244674777942,0.09046731842206233,-0.04325179026656294,-0.09063956577016001,-0.09453873851160709,0.12269061400754107,0.12163448309587051,0.14746914249114587,0.08280420226855233,-0.04339169968044679,0.07895206711204242,-0.13644148809520157,0.11178859707312482,-0.10835471849927948,0.164131904396698,0.22235704662041725,0.15129940373353165,-0.021329356915427415,-0.13735715755299602,-0.16119685474755815,0.0893586016464932,0.04223378124548475,-0.1687700045724737,0.04058063910272563,-0.1359072892620846,0.01385163654008275,-0.16481977238129247,-0.18789522083967267,-0.15010331925253384,-0.0452250776563472,-0.043181815080596424,-0.19028216553055874,-0.11408410489056733,0.006841182789619478,-0.07520369168649504,0.11534014439864478,-0.03382262617455298,0.13937639087154147,-0.18545440826407947,-0.17120332042459668,-0.20044087926145768,0.10474492222538963,-0.016007112179788962,0.012680421985742468,0.034847488977663675,-0.0995248574572372,0.003980808209663937,-0.013334718091405382,-0.01584418547250747,-0.0034399764641022536,0.011625025508989471,0.10382918155687618,0.03501979320892123,-0.012658808188329347,9.926275832282377,15.849861403803683,6.227441563171788,16.498798663506907,34.27733662752179,38.23312208438787,39.93233991051122,40.06081022375991,40.06081022375991,55.59715831775046,38.55226124618335,8.06488528095789,6.97167773870573,0.0,17.044897071567114,7152.717974877126,5994.6041251483275,2178.4462256833604,58.0,38.0,44.0,52.0,62.0,54.0,58.0,62.0,64.0,384.1968856800007,29.0,4.90527477843843,5.700443573390687,6.53813982376767,7.356918242356021,8.196161139282902,9.02485381183907,9.865214390314636,10.699168757989717,11.540608723070166,0.641509433962264,0.9870943396226417,1.130727263709419,0.6036023582156607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6670186984521524,0.972327044025157,1.007578776676882,0.6246140197934631,8.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,2.0,2.0,2.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,20.68162235814467,11.735768823996422,0.0,5.907179729351506,5.907179729351506,14.573052889090853,4.9839785209472085,0.0,0.0,44.179309741689295,17.9021791607844,18.814508766152162,12.138036169478873,239.12633367720417,-751.9645544069307,-54.04714738383281,-14.18801046050813,-41.775808578162824,433.54070359944336,1363.3263931504032,31.72373157185858,25.72313949340384,38.95218266144009,0.5,0.7580125409142858,0.1353849872088865,154.04134225959908,0.15103979250776411,52.56194485858788,0.24198745908571423,6.0,0.3103448275862069,0.2990079094482443,0.6715349241433627,0.8423007542345357,0.893719331137252,0.9159701128300137,0.9159701128300137,0.36059999999999964,,1.3714285714285717,1.6417470581017666,1.2365487199216836,1.455962197761083,-5.953059445595432,1.429620563035496,1.347998206291126,-2.567410042465656,105.00950000000005,19.63711951827565,0.0,20.60153424990708,5.917906046161393,38.67215107224702,0.0,60.17974554369273,0.0,0.0,4.07753744390572,0.0,5.351858133476067,0.0,6.80128303447162,0.0,8.326274787396764,0.0,9.890351653142988,33.99999999999999,13.388485211360841,7.796512341557886,0.0,0.0,0.0,0.0,0.9456827653901069,0.0,52.31600000000001,0.0,25.281465603216596,0.0,0.0,0.0,0.0,0.0,-1.033350917527505,59.928544976599206,10.633577208012662,0.0,0.0,50.931787411967555,11.21535880699783,5.917906046161393,36.320212692924535,48.92236605714727,0.0,0.0,0.0,31.990924985430016,35.35199101796408,34.6972159508549,313.2736229984022,,271.5072167176159,267.1454156444121,266.71781261101955,269.93256405893476,345.4428299761066,270.3109231488228,271.9399669380126,320.1037995324365,34.6972159508549,313.27362299840206,,270.3317065135343,265.7382038803248,265.65791370822956,268.6845964608538,349.5595887976406,269.08553409479214,270.78453990404887,321.93766384848334,4.650372447481233,212.94924472475088,,186.51470873206614,183.02216064526777,181.81535987114734,185.59292874241686,244.01555408365778,185.40936636212606,186.82699799001588,225.1490801124762,1.2391862839591035,11.188343678514363,,9.696686311343425,9.540907701586146,9.52563616467927,9.640448716390527,12.337243927718093,9.653961541029386,9.712141676357593,11.432278554729875,2.3251862237406153,156.6368114992011,,135.7559936543771,133.56563860847203,133.29625690852205,134.97494523993328,171.80326467602254,135.1496966660614,135.9724363315687,159.68512690300886,51.533333333333324,0.0,3.8310241943936028,0.0,0.0,0.0,19.15309159241699,53.40167516387474,0.6331039269472709,5.297702743134291,0.0,0.0,-1.5987330352761466,0.0,0.0,0.0,0.0,33.10454304905355,509.8900501153562,90.7727565920533,203.8644272815786,255.70548111092236,271.3151215853591,278.07000908752264,278.07000908752264,549.0,130.8267832404493,162.77698716129134,62.447305052393155,124.44000000000001,124.44000000000001,1.0,7.478981970166376,5.857980995127572,4.656540003214918,5.207781857873698,,5.20859295941738,5.207118237642517,5.203954269446825,5.209399167149602,5.2225334916948025,5.20762960799087,5.208584226586844,5.219740847346271,0.1663050001148185,0.18599220920977494,,0.18602117712204927,0.18596850848723273,0.1858555096231009,0.18604997025534292,0.18651905327481438,0.18598677171395964,0.18602086523524441,0.18641931597665254,2.567892100957059,2.679773435241233,,2.67992917110127,2.6796459985445784,2.679038190215332,2.68008394329231,2.682602044571324,2.679744199740871,2.679927494479978,2.6820671717410502,299.7500000000005,199.572105419316,166.27244914394421,,165.49043950156644,165.65112698622332,166.2160632087554,165.34824747382933,164.19450751518403,165.6213052530459,165.49568280354785,164.26408955217224,7.127575193547,5.938301755140865,,5.910372839341659,5.916111678079404,5.936287971741264,5.905294552636762,5.864089554113716,5.915046616180211,5.910560100126709,5.866574626863295,6.3257950188840075,6.143247120045839,,6.138532842967542,6.139503349322111,6.142907944804382,6.1376732576645505,6.130671163671595,6.139323305766682,6.138564525878869,6.131094852006443,0.0,33.07797794477448,24.450794335551283,0.9456827653901069,-1.7203417003471129,8.326027304542365,4.78381958130921,3.8310241943936028,-1.6949844256139357,384.6005488509283,160.85240240947195,-505.8217689499645,-36.35573450393713,-9.543806961320088,-28.101209386109144,291.62854062907076,917.0647257215397,21.339508527801755,17.303108032481884,26.201849306329706,2118.0,38.0,1.9171102898201595,0.9871856139856634,0.0,0.0,0.4023689270621825,0.05757971629025316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2041241452319315,0.05132002392796673,0.1310943487475822,0.03230296506781949,20.518297090128673,15.947767755576168,13.363081100704115,9.13789914488264,11.957525847822001,6.964666142522542,8.686165157993232,4.113162282885618,6.701076253266688,2.7539669302795846,5.509591443479189,1.7777115777796921,2.8743465815733864,0.825487883595453,1.9575953609160934,0.49948810196715265,3.575436606539142,1.2590961353662664,4.606869904698742,1.5029546420958106,7.200400957910005,1.7338173205508125,90.68953560992195,42.12375164242429,30.392417492724523,26.44495722503757,25.92498173201841,25.92498173201841,134.0,149.0,59.03782499999998,34.316175,0.3018867924528302,85.09,10.38888888888889,6.333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,53.0,1.0,0.0,54.0,12.0,2.0,8.0,46.0,14.0,29.0,40.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,6.0,4.0,1.0,28.0,9.0,0.0,4.0,4.0,0.0,2.0,9.0,0.0,0.0,0.0,1.0,2.0,3.6375861597263857,5.818969551131763,4.0943445622221,4.483002552013883,4.8846940707384086,5.317507060941178,5.088367642636608,5.31135698005584,5.437263759061491,5.695834304807027 +2955,Nc1ccc(S(=O)(=O)c2ccc(N)cc2)cc1,0,31.93103448275862,6.28908275862069,3.4482758620689653,7.8084291187739465,160.04333109641684,126.74254896551722,1.7558125123513104,6.376441379310345,6.386763279882692,7.8261487241379335,240.39292728627044,34.666666666666664,6.354866666666668,4.066666666666666,5.644444444444444,145.99579128118,133.89932446666663,2.1106881226666663,6.535813333333334,3.120576131687243,7.864456266666667,290.4723234800702,29.125,6.3183333333333325,3.75,6.75,145.84787654731247,111.61404929166662,1.9195078335353737,6.472043750000002,4.452160493827162,7.8097106666666685,262.1858511059471,24.774193548387096,6.249161290322581,3.129032258064516,4.903225806451613,151.36527535873418,91.50923519354838,1.6854181138612252,6.386790322580648,4.001792114695342,7.817893677419358,221.3333970355933,18.176470588235293,6.260558823529412,2.5,3.784313725490197,160.5699015486339,64.22263179411765,1.3079263668557064,6.340264705882354,4.113380537400145,7.895494294117647,171.67607475404517,18.23076923076923,6.156953846153845,2.5,3.923076923076923,160.24827920208827,66.23746380769228,1.289549378965154,6.234296153846154,3.5413105413105423,7.782750692307693,174.48270505914408,20.0,6.241105263157895,2.6842105263157894,4.7368421052631575,154.90861306739782,71.42170205263163,1.4958936678788421,6.3468,5.051656920077973,7.788505894736843,196.12902975688266,12.0,6.100499999999999,2.2,2.1,164.31467306123977,39.5216662,1.1038839021697997,6.15105,3.4666666666666672,7.716103200000001,142.9668498476253,12.32,5.973040000000001,2.12,2.08,165.9653345314799,40.92167859999999,1.1284709015758403,6.0377,3.0977777777777775,7.520969759999998,142.26390000199956,11.835909631391203,0.12841640903686083,0.021076356181033654,0.7086801426872769,3.7159466243889563,1.6574381986295776,53.43352399524377,0.32031800330701066,0.11954292508917952,2.5247602713472257,0.08067585731272289,51.18416245828478,2.4629409433214433,-0.025534110186286225,-0.012175719302338607,0.18557273087594142,-0.5578367904170519,0.4785821751862599,10.631237253032099,0.034668352416419274,-0.017685453824811775,-0.8321154500678809,0.0006229955608402861,8.105678715980751,1.4040328973444316,0.02521864843440343,0.0016971186961480783,-0.13109393579072529,0.2779869643722203,-0.10252439138483159,6.351850411365437,0.018358690886778165,0.022977549048751423,0.5094768646286806,0.01614988694015062,-0.17837114212792068,-1.9827394422922016,-0.0037198573127229712,0.0004870473982430997,-0.11134977561274981,0.07715682388690723,-0.3413417582606043,-8.8409369440758,-0.0731958975969884,-0.0036077749223275258,0.08987584697354105,-0.007455435733190117,-10.034447784224234,-2.205077988389173,-0.027810729523676324,-0.00144687009311042,0.03067077009162759,-0.2746574650470573,-0.050710045598809525,-9.70999141005106,-0.02282223712397015,-0.025973959571938186,-0.40400218558134676,-0.021899412079457187,-2.7942324121530104,1.2569285648952708,-0.026854340071343633,-0.00286680850748148,-0.0442239092655264,-0.36168785633708345,0.050384600732917346,5.690724984862344,0.04240287236421208,-0.021474357449922248,-0.7339217212095069,-0.014467325482484212,7.27735002042884,-3.5527880342950113,0.07111426246949118,0.010429736745338938,-0.15151135865823892,0.7018795502430273,-0.24898096107117323,-15.892785499780963,-0.1225031813466078,0.05598992427561174,1.2961235998534075,0.04048735321359285,-14.999838147622432,-1.5255648038049938,-0.04244951248513671,-0.003651745726453926,-0.025921521997621877,-1.697172678028802,-0.20498768825219066,-7.176979864209274,0.015903839469685783,-0.041416373365041594,-0.7286419467646622,-0.02453288489892983,-4.593719134973542,-1.2952199762187875,-0.014531995243757366,-0.002675057634021033,-0.03971462544589774,-0.6247588849253537,-0.5070409524101938,-6.4759747745540945,-0.06533714960677349,-0.014188856123662252,-0.11493185736491768,-0.005703982829964363,-14.625673886760547,,,0.4882352941176471,1.5294117647058822,0.9411764705882353,0.058823529411764705,0.5882352941176471,0.35294117647058826,0.5112889830221804,0.024480966534900877,0.0345986135937244,1.0406486065394305,0.30063910121671167,0.16983367121151072,1.551937589561611,0.4704727724282224,1.9926198045842327,1.447849652374385,0.2068193748042277,0.2057400945851631,0.0,0.544770152209848,8.55386029737931,926.0,182.38340000000002,100.0,226.44444444444446,4641.256601796088,3675.5339199999994,50.918562858188004,184.9168,185.21613511659808,226.95831300000006,6971.394891301843,1040.0,190.64600000000004,122.0,169.33333333333331,4379.8737384354,4016.9797339999986,63.32064367999998,196.07440000000003,93.61728395061729,235.93368800000002,8714.169704402106,1398.0,303.28,180.0,324.0,7000.698074270998,5357.474365999998,92.13637600969794,310.6581000000001,213.7037037037038,374.8661120000001,12584.920853085461,1536.0,387.44800000000004,194.0,304.0,9384.64707224152,5673.572582,104.49592305939596,395.98100000000017,248.1111111111112,484.70940800000017,13722.670616206784,1236.0,425.718,170.0,257.33333333333337,10918.753305307106,4367.138962,88.93899294618804,431.13800000000003,279.7098765432099,536.893612,11673.973083275072,948.0,320.16159999999996,130.0,204.0,8332.91051850859,3444.3481179999985,67.056567706188,324.1834,184.1481481481482,404.70303600000005,9073.100663075493,760.0,237.162,102.0,180.0,5886.5272965611175,2714.024678000002,56.843959379396004,241.1784,191.962962962963,295.963224,7452.903130761541,480.0,244.01999999999998,88.0,84.0,6572.586922449591,1580.866648,44.15535608679199,246.04199999999997,138.66666666666669,308.644128,5718.673993905012,308.0,149.32600000000002,53.0,52.0,4149.133363286997,1023.0419649999999,28.21177253939601,150.9425,77.44444444444444,188.02424399999995,3556.5975000499893,343.2413793103449,3.7240758620689642,0.611214329249976,20.55172413793103,107.76245210727973,48.06570776025775,1549.5721958620693,9.289222095903309,3.466744827586206,73.21804786906955,2.339599862068964,1484.3407112902587,73.8882282996433,-0.7660233055885868,-0.3652715790701582,5.567181926278242,-16.735103712511556,14.357465255587798,318.93711759096294,1.0400505724925782,-0.5305636147443532,-24.963463502036426,0.01868986682520858,243.17036147942255,67.39357907253272,1.2104951248513647,0.08146169741510775,-6.292508917954813,13.343374289866576,-4.921170786471916,304.88881974554096,0.881217162565352,1.1029223543400684,24.45488950217667,0.7751945731272297,-8.561814822140192,-122.9298454221165,-0.23063115338882423,0.03019693869107218,-6.903686087990488,4.783723080988248,-21.163189012157467,-548.1380905326996,-4.538145651013281,-0.2236820451843066,5.572302512359545,-0.4622370154577872,-622.1357626219025,-149.94530321046375,-1.89112960760999,-0.09838716633150857,2.0856123662306763,-18.676707623199896,-3.4482831007190478,-660.2794158834721,-1.55191212442997,-1.7662292508917967,-27.47214861953158,-1.4891600214030887,-190.0078040264047,65.36028537455408,-1.396425683709869,-0.14907404238903696,-2.2996432818073727,-18.80776852952834,2.619999238111702,295.9176992128419,2.204949362939028,-1.116666587395957,-38.16392950289436,-0.752300925089179,378.4222010622997,-135.00594530321044,2.7023419738406647,0.39632999632287963,-5.7574316290130785,26.671422909235037,-9.461276520704583,-603.9258489916766,-4.655120891171096,2.127617122473246,49.25269679442949,1.5385194221165284,-569.9938496096524,-61.02259215219975,-1.6979804994054684,-0.14606982905815705,-1.036860879904875,-67.88690712115208,-8.199507530087626,-287.07919456837095,0.6361535787874313,-1.6566549346016637,-29.14567787058649,-0.9813153959571932,-183.74876539894169,-32.380499405469685,-0.36329988109393413,-0.06687644085052583,-0.9928656361474434,-15.618972123133842,-12.676023810254843,-161.89936936385237,-1.6334287401693373,-0.3547214030915563,-2.873296434122942,-0.14259957074910906,-365.64184716901366,0.7333091368382875,0.5773378908362103,0.4443353961822101,0.35804608614850286,0.2974984062679559,0.21504579200459978,0.1917533849605463,0.13019805538144094,0.12059795877271134,0.07474955637416957,0.07661275890244218,0.04374343101344936,0.054669005325411454,0.02710500584401476,0.0301840023509425,0.016316688425526416,16.013011790121226,5.699121801624655,3.5799664954414303,2.176221391912868,0.4373108607510351,-0.3840235598580891,4.048589535634887,0.9716490252164758,6.017544420618063,0.6442280212327738,14.53890127558945,10.31130569019536,32.06648857407963,11.710964638159682,2.9571309779247654,0.7613479112016153,3.5357447988812414,2.233834058367973,7.014202748695475,0.2961061052797468,3.767096476453051,2.436247543070511,24.443297673236668,14.702151049899859,0.3340717718214463,0.5051678851531708,0.6102996989058733,0.715431512658576,0.715431512658576,0.715431512658576,1.9275899862556667,565.0601341830188,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,3.1047965523209564,2.206896551724138,1.6551724137931032,1.1034482758620685,1.1034482758620685,1.1034482758620685,39.43504704473878,688.5728442261127,55.94380657869971,23.74389118021078,48.193447079915146,,10.0,262.0,9.837253136417502,8.417796984328938,9.79096695103555,11.374772549367124,0.0,24.26546827384644,24.26546827384644,0.0,0.0,11.46733495432437,8.3,26.0,16.0,1.0,10.0,0.0,0.0117647058823529,6.0,0.18536242083040078,0.09486963835155571,-0.09049278247884507,0.10532212885154035,0.14158620689655133,0.0,0.6241379310344828,0.8529411764705879,0.438775510204082,0.5292682926829271,0.7476190476190475,8.691912711377066,0.4161764310933149,0.5881764310933149,17.69102631117032,5.1108647206840985,2.887172410595682,26.382939022547387,7.998037131279781,0.5724137931034486,0.17670682730923695,0.10040160642570281,0.24096385542168672,0.0,0.4556058481662238,-0.7063380086117365,-0.07175725032711312,-0.024356483055577118,-0.05886150071764471,0.5443941518337763,0.8439889054405944,0.054200649030613106,0.029103065704848084,0.0496464062023879,-2.916432133684069,0.9163619315518048,0.8335419170566422,1.6451096778390268,0.9991051454138705,0.8535921685747467,0.8885938816291761,0.8951115032290262,1.0690965432797102,0.7758517380907857,0.9466081660061226,0.6186209973187872,0.7768812358739309,0.7817627754336615,0.5571628354299731,0.6319942959498378,1.419183445190157,0.8384353741496595,1.078221437873082,0.7733601421519936,0.9574432501592193,0.5537952062088785,0.6183837224808431,0.5925431334687216,0.9429554337967138,1.3683589673789753,0.8932633942943254,0.88174582794423,1.2745182940030313,0.8539957288973808,1.2554707791345088,1.3390967741388773,1.4155361304843168,0.8884936152932633,0.8791402410611351,0.9775339068134087,1.1654171772745718,1.3016050301977329,1.5056637109529165,0.9602906167156471,0.9015988945913939,1.2112698738031795,0.9522808310360165,1.2875968875408008,1.1231889879144556,1.482889643071708,1.570573096689167,1.633766677835859,1.0192846666687576,0.7608460456561721,1.4280941007136445,0.7975634893964535,0.9694114610221997,1.2863843473599568,0.809700656847895,0.7732244517647735,0.7461050529735902,1.3864347171931746,1.6192452453936346,1.474394362078384,0.8277066687281526,1.4018062032718928,0.30270455774652766,0.46743113031983696,1.1472977746379374,0.6419795132430377,1.1820306286095408,1.3832212544567157,1.4697089830547752,0.38872504131032054,0.32787850494721615,0.34016496053006795,1.2600558718947237,0.8116736990154709,1.528126765075714,1.0139450007879633,0.8174496644295304,1.597959183673469,0.9491311501188832,0.8471960861879418,0.6611988112374154,1.5367211216723227,1.5105565255956817,1.5266535350371444,1.030154512250989,0.7309142053445851,0.8130962182703041,1.5503919661406746,0.7629530201342285,0.8938178198108508,1.3045988506658108,0.7750458750919035,0.8516670303895584,0.848510099904909,0.4725003815646689,0.6072548827830802,1.2082631548946252,5.0,0.0,3.111111111111112,1.5,0.8444444444444448,0.5972222222222222,0.2416326530612245,0.1736111111111111,0.0493827160493827,0.051250000000000004,3395.2651348930435,3709.5730434774905,1912.77492513067,1778.047739389435,11.388007808853885,0.4128539600943278,6.68642368738343,0.7031537846370467,1.0,0.0,1.7531844428066155,2.651084443403434,3.2028085813344687,3.7545327192655034,3.7545327192655034,3.7545327192655034,0.2777777777777778,0.0,0.11965811965811969,0.057692307692307696,0.04222222222222223,0.03732638888888889,0.017259475218658893,0.021701388888888888,0.00987654320987654,0.025625000000000002,0.6091392235567407,13.432098765432098,5.325443786982248,3.0625,99.79367710137302,1.0,3.7574440117831265,62.98354308981424,,36.66810984049603,47.52865050460632,48.607455378785616,36.66416918644326,44.49946584222725,47.061478295376745,46.14547779640216,47.739766493817626,0.20809054986270178,-0.19883837570132393,-0.5776956508874803,0.26185682326621945,-0.15011969944772327,0.2887481268272728,0.19896193359768688,0.10823104558126002,-0.14794228777335297,-0.32958196447849664,0.0077222056460506585,0.15836302337831354,0.11862484093496753,0.1963818224130892,0.0805223958814709,-0.18498322147651006,0.07480919196947076,-0.06185714283018335,0.11887388172134836,0.057313952688391887,0.1922117016260902,0.2017921742553486,0.20018240249432984,-0.003484889340004217,-0.16751897437891713,-0.02896714945249106,0.023108709781693073,-0.15712275384282318,0.020763706179335865,-0.205945391232588,-0.16545674481179176,-0.22851009572144892,-0.030179744385843917,0.03559777456636816,-0.09241222816251828,-0.19604595058876528,-0.1863040574879741,-0.21656679027439157,-0.06864896762432018,0.04327872088432687,-0.07391318896896736,-0.030595436765448146,-0.18172096249753933,-0.07124868689349328,-0.21727726297948208,-0.16001605782784636,-0.2714493878208043,-0.054591738497827655,0.1061961948037897,-0.2091192260611751,-0.13602012050172527,-0.06240320082601965,-0.09733397513387555,0.030399082617123784,0.10650102331579117,0.13237742470432046,-0.179637209261044,-0.2906896664758917,-0.17932657878557998,0.14217972261165548,-0.3001702568657931,0.5537786253552569,0.4948548342869877,-0.21379371246909223,0.18888310871753794,-0.15022035891114285,-0.29743098174089383,-0.38244238563510874,0.46836669116004165,0.5133650170920144,0.5018521595209356,-0.29305623902407973,-0.12889290737391998,-0.3305614352831805,-0.17326266908224325,-0.0365771812080537,-0.4567268719334423,-0.1236774248485892,-0.13431604969285035,0.04965015798516531,-0.3464560812289377,-0.2885984681531189,-0.3040920259927737,-0.089748838592747,-0.10943138436809324,-0.11316307123637198,-0.12692220662071954,-0.05604026845637585,-0.16812913318637562,-0.30591846672137235,-0.12119684966184402,-0.2039758893731325,-0.11869256263452903,-0.04552188921429337,-0.07070247556036596,-0.2857460820753003,8.691901917570458,12.361997810859819,1.5326188647871062,20.213350530844043,26.817058170935933,33.443816791625586,33.999954722660064,33.999954722660064,33.999954722660064,33.87453667793196,24.613444090364542,3.515929371671871,3.497581607947773,0.0,9.261092587567417,2325.6976770010165,2116.231812276233,657.2158146147754,24.0,26.0,32.0,36.0,44.0,44.0,36.0,28.0,24.0,248.061948624,18.0,4.48863636973214,5.3230099791384085,6.20050917404269,7.060476365999801,7.943427767876373,8.811205187562887,9.697999717710333,10.569186452136844,11.458268625464836,0.7471264367816094,0.9928275862068964,1.117656343448925,0.7128522991855166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7174378690894077,0.9809330628803246,1.0134992591104302,0.6683981695291169,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.46733495432437,0.0,0.0,9.837253136417502,0.0,0.0,8.417796984328938,0.0,0.0,0.0,48.53093654769288,11.374772549367124,9.79096695103555,202.3559107916498,-313.71781471786716,-31.870758034145577,-10.817855679926453,-26.143151226488932,241.79095783638857,374.85502950824554,24.073048544554133,12.92603550028433,22.05029585342621,0.5,0.7707355014878144,0.25718945193699666,62.63323939937784,0.1329344176565068,1.5148566058903685,0.2292644985121856,5.0,0.1111111111111111,0.36088746427065355,0.5457173352597309,0.6592880014447982,0.7728586676298655,0.7728586676298655,0.7728586676298655,1.6838000000000002,,1.4107142857142856,0.9181739123801387,0.7098670474021058,1.408890217594701,-2.7768142340074573,0.8514381884944923,0.8488716908216677,-1.279059337431441,67.16060000000002,8.417796984328938,0.0,0.0,0.0,9.79096695103555,11.46733495432437,48.53093654769288,0.0,0.0,3.6109179126442243,0.0,4.948759890378168,0.0,6.493753839851686,0.0,8.12355783506165,0.0,9.795735290041899,21.66666666666667,12.187334341143865,0.0,0.0,0.0,0.0,0.0,1.495791761148906,0.0,28.791999999999994,0.0,24.349527588813302,0.0,0.0,-3.48361111111111,0.0,0.0,0.0,32.412033960018825,11.46733495432437,11.374772549367124,0.0,8.417796984328938,9.837253136417502,0.0,0.0,58.32190349872843,0.0,0.0,0.0,20.67271667637998,20.805698203592822,21.019314069080295,125.96708617962852,,73.92009570245054,94.94928054893262,97.13139698728864,73.91301968364908,91.01137473474212,94.02278739210706,92.1910883350606,96.23192083318315,21.019314069080295,125.96708617962858,,72.8413141898455,94.13912709683254,96.50504371016913,72.83563304666492,91.82808480356785,93.27151840225902,91.44208390198264,96.75859232506667,4.839740698275471,93.92180074673713,,53.81024915168722,72.77347784689022,74.63808564113745,53.802431448464745,64.69760718753031,71.85313613429139,70.1787041486823,71.05384762642313,1.2364302393576645,7.409828598801678,,4.348240923673561,5.585251796996037,5.713611587487567,4.347824687273476,5.3536102785142425,5.530752199535709,5.423005196180036,5.660701225481362,2.419870349137735,62.98354308981424,,36.66810984049603,47.52865050460632,48.607455378785616,36.66416918644326,44.49946584222725,47.061478295376745,46.14547779640216,47.739766493817626,28.447058823529414,0.0,0.0,0.0,0.0,11.034290753338372,0.0,29.391478514202475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38354691634439,342.3197595262736,50.842348841391846,76.88144885869959,92.88144885869959,108.8814488586996,108.8814488586996,108.8814488586996,329.0,106.55271963966433,101.8271091017648,49.97272476797763,94.56,86.18,1.0,7.746239862717816,5.169925001442312,3.6831781735814926,4.057433631337877,,4.019630239220784,4.058981016882281,4.063771126826675,4.019588491032927,4.015455905891432,4.056929658048978,4.053698515752587,4.0375462754464015,0.21665753962244075,0.23867256654928687,,0.2364488376012226,0.23876358922836946,0.23904536040156915,0.2364463818254663,0.23620328858184897,0.2386429210617046,0.23845285386779924,0.23750272208508244,1.8344042646510432,1.931178914301823,,1.9218181691693161,1.931560212111316,1.9327396425346315,1.9218077830387088,1.9207791426723986,1.9310546967208317,1.9302579292206852,1.9262654009561375,180.46999999999977,89.74060305401099,80.61509423905402,,81.7196933329824,79.72456134817064,79.56242054668934,81.7220593416817,82.60660105288828,79.85727408652065,80.03376050120738,81.33815147950335,5.278859003177117,4.742064367003177,,4.807040784293083,4.689680079304155,4.680142385099373,4.807179961275394,4.859211826640487,4.697486710971803,4.707868264776905,4.784597145853138,5.027551571600923,4.920314156478667,,4.933923268348926,4.909205961881953,4.907170128751669,4.933952220665709,4.944717844290529,4.910869218462296,4.913076802981545,4.929243425434763,24.349527588813302,0.4379100529100539,0.0,12.092172461577224,0.0,12.187334341143865,0.0,0.0,-3.48361111111111,211.85960962483006,89.87574412648594,-139.33678503977183,-14.155297381667653,-4.804716725509373,-11.611398753314319,107.39069678560604,166.4906875455582,10.691969129394474,5.741058191226144,9.79356985562107,516.0,26.0,1.7767090063073974,1.0548225254256698,0.16666666666666666,0.05103103630798288,0.6220084679281461,0.23470804841064383,0.16666666666666666,0.034020690871988585,0.0,0.0,0.0,0.0,0.0,0.0,0.16666666666666666,0.05555555555555555,0.25,0.10011639669895639,12.466255326250886,9.814744144215576,7.998037131279782,6.4448295506730515,7.734958562966853,5.591190592119594,6.136108318737482,4.16633777220611,4.341526515817608,2.6909840294701044,3.3709613917074557,1.924710964591772,2.405436234318104,1.1926202571366493,1.08662408463393,0.587400783318951,3.728067429757671,2.04413675116366,4.8101087081115175,2.3239514255077025,6.671333492752573,2.823512398840246,54.91066199970217,47.32733879775904,35.49635512200937,33.52452450938443,33.52452450938443,33.52452450938443,88.0,102.0,34.74551599999999,17.554483999999995,0.4482758620689655,52.05,6.506944444444445,3.666666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,29.0,0.0,0.0,30.0,12.0,2.0,8.0,22.0,14.0,18.0,16.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,4.0,2.0,0.0,17.0,5.0,0.0,2.0,2.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,2.0,3.295836866004329,6.196030345660822,3.970291913552122,4.4942386252808095,4.96109484853612,5.483239705042049,5.674182004879911,5.752175734672774,5.668371163176867,5.901266279189834 +3033817,O=C(OC1C[C@@H]2CC3C[C@H](C1)N2CC3=O)c1c[nH]c2ccccc12,0,22.59090909090909,6.162495454545453,3.6363636363636362,7.5,161.05181339142,89.12808363636363,1.5052493203859085,6.2348068181818155,4.380681818181818,7.68403418181818,222.8249249816434,25.145833333333332,6.3203958333333325,4.5,7.020833333333333,144.7443176556541,95.7295493333334,1.8629640456250007,6.472364583333334,2.8171296296296298,7.724433666666662,273.5365194404438,21.274725274725274,6.2590109890109895,4.032967032967033,5.43956043956044,151.152312994523,79.14131597802196,1.619949690002693,6.378429670329669,2.750915750915752,7.716950417582415,231.51716302275355,15.931818181818182,6.09360606060606,3.1893939393939394,3.643939393939394,158.2432895526835,56.60456812878787,1.3266248617346967,6.179913636363637,2.5614478114478114,7.640376636363635,180.75374682006026,13.318518518518518,6.0050074074074065,2.651851851851852,3.051851851851852,161.4192736928142,45.817003281481476,1.1429606750331112,6.071565185185184,2.6594650205761314,7.60293585185185,150.02888768307574,12.327272727272728,5.986218181818181,2.481818181818182,2.790909090909091,165.6420269179838,42.5310709090909,1.0278691647583,6.033763636363635,2.737626262626263,7.634766690909092,136.70744643830446,16.426666666666666,6.322986666666666,2.96,3.8933333333333335,161.75439456598386,58.75814266666667,1.2310195268097999,6.379634666666667,3.2822222222222224,7.900299626666668,174.42277083907294,16.92753623188406,6.230521739130436,3.289855072463768,3.8260869565217392,156.70137970014994,60.116540971014516,1.4047827756680291,6.317153623188406,3.0692431561996782,7.757772695652173,193.01429259340406,14.933333333333334,5.937558666666667,3.026666666666667,3.28,157.35003441946446,52.58822856,1.3491240875491732,6.033721333333333,2.462222222222223,7.4859836799999995,178.41725534478772,7.309917355371898,0.12207210743801652,0.018729554091705104,0.6528925619834709,3.8553719008264467,1.467789363347633,34.77767847107437,0.23082076880553723,0.11480552685950408,1.6155159550045917,0.07596574380165286,50.353810055958206,0.5215220385674928,-0.0005249483471074123,-0.008132911212965093,0.1425619834710744,0.9609159779614321,-0.125393683569207,2.492583703168043,0.0008248969309400863,0.0014307420798897665,0.010496776476890143,-0.002115122589531676,2.1765549847104597,-0.08664063209517768,0.005126294160385095,-0.000588590333660338,-0.06348197257288168,0.02125147579693023,-0.13995280978511215,-0.47948724829715833,-0.015281489213369352,0.004604038575061277,0.1102027707141344,0.004420322132413043,-2.6484369271142847,-0.7114325068870522,-0.010308574380165277,-0.000928036474387885,-0.12121212121212122,-0.3333333333333333,-0.04113677067088669,-3.3882506487603306,-0.017820341494294078,-0.009993044077134987,-0.029451714110805,-0.0057643236914600516,-4.249718628626429,-0.4146311600857056,0.005115872359963261,0.0028530401920167847,-0.07107438016528925,0.007591062136516709,-0.11445214007610881,-2.076293802387511,-0.031201518852395773,0.0036649613559840938,-0.038233874944733535,0.002828327578818486,-6.008444660278815,0.7421487603305786,-0.011976942148760336,-0.0020219311339029575,0.09504132231404958,-0.03801652892561978,0.07696357478670099,3.6724245495867764,0.02946591792699008,-0.008198502066115705,-0.19130796602387512,-0.010764105785123964,7.5811513334338025,-0.3468870523415979,-0.025173925619834666,-0.000993834918381205,0.047713498622589536,-0.8365840220385676,0.15118664895720205,-1.4262948831955926,0.03572800742996584,-0.02306176928374657,-0.3861051805938171,-0.01651481531680439,4.6773597205535244,-1.67025991136663,-0.01626650796502572,0.0014815430493732202,-0.0349742484129836,-1.0786920589292135,-0.012617009603235177,-7.8911985409031,-0.007015964141243386,-0.018569229099293327,-0.2387135102673641,-0.005013401245658153,-6.67671386303051,-0.7456749311294766,-0.0036022892561983566,-0.0005225413883312148,-0.046831955922864994,-0.32991735537190076,-0.10811355977008215,-3.5824488262258942,-0.022927108817030528,-0.0048223753443526005,-0.11969103917967557,-0.0014964177410468351,-5.8827861423977845,,,0.47083333333333327,1.1354166666666667,0.4583333333333333,0.0,0.6770833333333334,-0.21875,0.9103808138459168,0.0094808490238348,0.0309808490238348,0.7406757834786877,0.20489118566059095,0.28205353041445325,1.6510565973246045,0.4869447160750442,2.1129740130290924,1.6973460002064744,0.18057681818242735,0.23505119464019053,0.0,0.4156280128226179,7.366986193181831,994.0,271.1497999999999,160.0,330.0,7086.279789222481,3921.63568,66.23097009697997,274.3314999999999,192.75,338.0975039999999,9804.29669919231,1207.0,303.37899999999996,216.0,337.0,6947.727247471396,4595.018368000003,89.42227419000004,310.67350000000005,135.22222222222223,370.77281599999975,13129.752933141302,1936.0,569.57,367.0,495.0,13754.860482501592,7201.859753999999,147.41542179024506,580.4370999999999,250.33333333333343,702.2424879999998,21068.061835070574,2103.0,804.3559999999999,421.0,481.0,20888.114220954223,7471.802992999998,175.11448174897996,815.7486000000001,338.1111111111111,1008.5297159999999,23859.494580247952,1798.0,810.6759999999999,358.0,412.0,21791.601948529915,6185.295442999999,154.29969112947,819.6612999999999,359.0277777777777,1026.3963399999998,20253.899837215224,1356.0,658.4839999999999,273.0,307.0,18220.622960978217,4678.417799999999,113.06560812341301,663.7139999999998,301.1388888888889,839.8243360000001,15037.819108213489,1232.0,474.224,222.0,292.0,12131.579592448788,4406.8607,92.326464510735,478.4726,246.16666666666669,592.5224720000001,13081.70781293047,1168.0,429.9060000000001,227.0,264.0,10812.395199310346,4148.041327000002,96.930011521094,435.8836,211.7777777777778,535.2863159999999,13317.98618894488,1120.0,445.31690000000003,227.0,246.0,11801.252581459834,3944.117142,101.18430656618798,452.5291,184.6666666666667,561.448776,13381.29415085908,321.6363636363635,5.371172727272727,0.8241003800350246,28.72727272727272,169.63636363636365,64.58273198729586,1530.2178527272722,10.156113827443638,5.05144318181818,71.08270202020203,3.3424927272727256,2215.567642462161,25.033057851239654,-0.02519752066115579,-0.39037973822232447,6.842975206611571,46.12396694214874,-6.018896811321936,119.64401775206608,0.039595052685124144,0.0686756198347088,0.5038452708907268,-0.10152588429752046,104.47463926610207,-7.8842975206611685,0.4664927685950436,-0.05356172036309076,-5.776859504132234,1.9338842975206507,-12.735705690445206,-43.633339595041406,-1.3906155184166111,0.4189675103305762,10.02845213498623,0.4022493140495869,-241.00776036739992,-93.90909090909089,-1.3607318181818167,-0.12250081461920083,-16.0,-44.0,-5.430053728557043,-447.24908563636365,-2.3522850772468185,-1.3190818181818182,-3.8876262626262603,-0.7608907272727268,-560.9628589786886,-55.97520661157026,0.6906427685950403,0.38516042592226596,-9.595041322314048,1.0247933884297558,-15.451038910274688,-280.29966332231396,-4.212205045073429,0.4947697830578527,-5.161573117539027,0.38182422314049563,-811.14002913764,81.63636363636365,-1.317463636363637,-0.22241242472932532,10.454545454545453,-4.181818181818176,8.465993226537108,403.9667004545454,3.241250971968909,-0.9018352272727276,-21.043876262626263,-1.184051636363636,833.9266466777183,-26.01652892561984,-1.8880444214876,-0.07453761887859037,3.578512396694215,-62.74380165289257,11.338998671790154,-106.97211623966945,2.6796005572474377,-1.7296326962809927,-28.95788854453628,-1.2386111487603293,350.8019790415143,-115.24793388429748,-1.1223890495867745,0.1022264704067522,-2.413223140495868,-74.42975206611573,-0.8705736626232272,-544.4926993223139,-0.4841015257457937,-1.2812768078512395,-16.47123220844812,-0.3459246859504126,-460.6932565491052,-55.925619834710744,-0.27017169421487675,-0.03919060412484111,-3.5123966942148748,-24.743801652892557,-8.10851698275616,-268.68366196694205,-1.7195331612772895,-0.36167815082644506,-8.976827938475667,-0.11223133057851263,-441.2089606798338,0.6774493360889514,0.5584851998137884,0.4173811852071808,0.31227198674573975,0.2649642025527347,0.17526849768904057,0.166124582055846,0.09996288447485241,0.1053274162573739,0.05729421319676961,0.06701640713355815,0.033839947723837326,0.04334323213745379,0.01974471271067142,0.027750054990356172,0.011434843145825711,8.02918538545885,5.676253977727189,3.5553978354261275,2.1754624597739705,0.46232843374583243,-0.48993691675045065,3.2511646764449584,0.9772379709020604,6.028739986539115,1.9633481116717553,14.548161775862237,10.93722419836846,16.01452134391245,11.68782757497154,2.0093591416922765,0.7414246100352637,3.5015010130688826,2.2252260509438835,7.009356858932328,1.1862276793282345,3.7144079755208965,2.42111824116318,20.910262491587794,14.700696108404134,0.26187589971359754,0.6054236577927179,0.7748946642242505,0.8380820616320471,0.8459804863080216,0.8459804863080216,1.2023634716415887,810.8811616230481,0.0,2.0,1.0,0.0,6.0,7.0,2.0,1.0,0.0,3.952365276257701,1.9752865768918926,1.0000000000000009,0.6363636363636358,0.5909090909090908,0.5909090909090908,221.24488042665595,1034.3873232943397,50.636875226361525,23.508802802144082,49.82194376489903,,13.0,556.0,0.0,9.589074368143644,17.991177721861547,29.97513450227043,36.586211423785095,0.0,6.196843571613076,24.26546827384644,9.883888251797686,4.736862953800049,11.299999999999999,27.25,11.0,0.0,16.25,0.0,0.029166666666666712,-5.25,0.1386363636363634,0.04440559440559433,-0.09423076923076906,0.021166666666666556,0.14616080402010023,0.0,0.5886363636363637,0.8291666666666663,0.45000000000000034,0.5442307692307694,0.8079999999999997,21.849139532302004,0.22754037657203519,0.7435403765720352,17.776218803488504,4.917388455854183,6.769284729946878,39.62535833579051,11.68667318580106,0.5678391959798997,0.058997050147492625,0.0,0.43362831858407086,0.47368421052631576,0.29473332049614903,-0.565701915297349,-0.053626971588678775,-0.012856861711303387,-0.05142744684521355,0.705266679503851,1.353666801972406,0.040332836368204,0.030765154590281958,0.04102020612037594,-3.264374184823772,0.7408729037120787,0.6747637993959896,1.4197192560479062,0.8731540084388189,0.5069667738478028,1.2523628552700037,0.7472308014860531,1.0561790900516717,0.6563429592953108,0.4909798392468581,0.6853620995616955,0.9380050325029966,0.8895616819585167,0.7695017704588997,1.0316857890727207,1.2747774377521217,0.8718714297492433,1.2116926105708838,0.8951121977329048,1.07756293884825,0.7667724950859607,0.48093346326838027,0.7346625731317399,1.017944245472566,1.0553514226493315,1.0432125172145121,1.1056519178290125,1.241693037974684,1.049459628438728,1.0416457857401484,1.05585059593725,1.053094133966381,1.042787427235391,0.8037079799280605,1.0280132292846949,1.0516559257039122,1.0665598894541803,1.0261291745565535,0.9347924010956611,1.0422409751523678,1.001728792028899,1.0007213708805145,1.067657676381312,1.1044627371156728,1.0332941456124525,1.0744961045240808,1.054283438576468,1.0967257757515039,0.9808083663086493,1.3874133632573886,1.2995715176144704,0.8028481012658231,1.1694801714898175,0.7983131547755639,0.9705489815081223,0.8245731292480647,1.3464402387256567,1.4677170389448906,1.4972471769844067,0.8219485314831235,1.1149858677218771,1.7007576924400567,1.5000499548787876,0.9380168776371312,1.454994640943194,0.8322608784898435,1.0987815682780004,0.794582282557276,1.6469998177838465,1.9603065855499797,1.8273484427245645,0.8306668523293432,1.1857841571017775,1.2047534977934828,0.9855964494941659,1.084663364520272,1.2876221321279337,1.0423056346212394,1.1825994582960029,1.0085092945524212,1.21411149183387,1.4341497131890555,1.163787722935142,1.0805015428722757,1.0178368192952707,0.7360067408110746,0.6962053843461651,1.0078691983122365,0.9345087531261164,1.1006260210138685,1.0240161854082168,1.0909115386701025,0.7696191352456279,0.7963780511271962,0.6648921253290732,1.1126463026106603,5.0,0.09121314151617181,2.88888888888889,1.9444444444444444,1.3738888888888892,0.4930555555555555,0.5135600907029477,0.2517361111111111,0.2519605064247922,0.128125,4726.267638214376,5309.006753604361,2393.4380035681743,2192.4933140526678,14.42864267984583,0.4697225791470335,7.651183426677681,0.8858053552260837,1.0,0.47368421052631576,1.5070663423795962,3.4841450417454047,4.459431618637296,4.8230679822736615,4.8685225277282065,4.8685225277282065,0.17857142857142855,0.00760109512634765,0.06878306878306881,0.047425474254742556,0.044318996415770605,0.020543981481481483,0.021398337112622824,0.010945048309178742,0.011452750292036006,0.007118055555555556,0.41815823590223283,16.193877551020407,6.3106575963718825,2.8233333333333333,139.51552096981928,1.0,4.160873194230564,117.37759234002803,,96.47177979120406,94.95203936640341,97.23816709278753,96.49552205237092,135.94925551235002,95.98720749040982,96.54726373142088,117.15463629287856,0.07134445072545692,-0.0043003136271237115,-0.4342287687760263,0.21835443037974692,0.24924080028581624,-0.08543029858399961,0.07167194053051008,0.0035737552353230766,0.012462310125893765,0.006497476205278523,-0.027843110376886162,0.043225229278413164,-0.011852477652364617,0.041993984276776974,-0.031425752624885575,-0.09723188204200868,0.0055121727147450315,-0.09534938273834972,-0.013787212642613917,-0.06620500092972031,0.04010293494576768,0.06821521655217647,0.05818836111122058,-0.052596554742750865,-0.09732428867533448,-0.08444659960834681,-0.049549309601497206,-0.18565400843881863,-0.08645944980350123,-0.028026344718199054,-0.09742601570080187,-0.07720423767112321,-0.0870432317197081,-0.018230531255088278,-0.07588056672637532,-0.08439716128538666,-0.056721730209576486,0.04190861014307386,0.1523282496768213,-0.10886075949367091,0.001968957167242276,-0.0779758614785668,-0.05970190920346872,-0.13517639254846495,0.03192321359640791,-0.02366666502196499,0.03723161832263857,-0.11932452884104754,0.10152628603730927,-0.09811366740630542,-0.10795404546221553,0.14556962025316458,-0.00986066452304393,0.05243502692454982,0.1055971735618075,0.12765713449215066,-0.07141208520517318,-0.11841911274923395,-0.141696839212542,0.1505576504540345,-0.047454305634068245,-0.20622176636556394,-0.05306239078170857,0.07308016877637133,-0.21699178277956413,0.10300295991543768,-0.041011791065406644,0.15478679676379603,-0.20087682113047522,-0.2389980608967243,-0.21739819147857886,0.09288988688950396,-0.22849231122143845,-0.13325327387573135,0.07910188582809678,-0.05356815263254451,-0.27978936576727725,-0.008595926580677194,-0.2269041203387525,-0.030395722956603713,-0.16174507976447727,-0.14776301622269378,-0.06599555266316069,-0.13259600128790008,-0.10200866779724896,-0.029509519674897552,-0.027899296789058985,-0.07172995780590716,-0.0855734190782422,-0.07365740784733865,-0.10301000479964538,-0.09932862166465725,-0.04200473162110125,-0.07408842903030033,-0.01969858604891691,-0.11682901722551366,9.741124125621987,23.820766510720308,10.049071789674553,13.87040052268356,32.57455723171039,37.23987337394468,38.106555192126514,38.15237337394469,38.15237337394469,50.711376312698214,40.736304004955386,4.333843636378257,5.641228671364573,0.0,9.97507230774283,5770.390589346601,5508.896741920266,549.3059625729657,185.0,42.0,60.0,85.0,114.0,125.0,144.0,162.0,177.0,324.1473925000006,28.0,4.948759890378168,5.84354441703136,6.760414691083428,7.668093709082406,8.586905803827538,9.498597279178806,10.417896747633472,11.331415578682627,12.250974306881373,0.6515151515151515,0.9830909090909092,1.1218757089468794,0.6137934166408064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6759915623298859,0.9701426024955434,1.0044693107329672,0.6381500564365413,5.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,0.0,4.0,1.0,0.0,0.0,0.0,9.720841474747257,11.887211334113243,0.0,0.0,0.0,9.694446914922299,4.794537184071822,0.0,0.0,18.19910120538483,18.90801031431363,47.94299945400346,12.10820789760957,158.83785524405678,-304.8684104736642,-28.900679217540322,-6.928827510765096,-27.715310043060384,380.08273567071274,729.5189128206754,21.736196008821203,16.579975291378986,22.106633721838648,0.46153846153846156,0.828222897095539,0.23893384728857436,8.684448423311045,0.17718632993197897,32.26469468753777,0.17177710290446124,7.0,0.07142857142857142,0.27604821301082033,0.6381882373709565,0.8168307490863662,0.8834377494185969,0.8917636244601256,0.8917636244601256,2.519000000000001,,1.0357142857142858,1.2284783620288504,0.9699017285501993,1.0327970942604563,-4.283246429381093,1.098531211750306,1.0260103868809844,-1.8356326906609346,88.74920000000004,14.325937321943691,0.0,9.883888251797686,5.917906046161393,43.870934537748255,6.544756405912575,36.02576333715651,0.0,0.0,4.04305126783455,0.0,5.41610040220442,2.3978952727983707,7.00397413672268,4.727387818712341,8.695674048824253,6.842683282238422,10.439308182191418,28.666666666666668,9.507200743891207,0.0,3.126507391217889,0.0,0.0,1.8600038677852537,0.6095717592592598,0.0,43.25600000000001,0.0,24.50519914358673,0.0,0.0,0.0,0.0,0.0,0.15777465001893387,49.36253119366269,0.0,0.0,0.0,46.368842938071275,9.53140013787187,5.917906046161393,36.041275167472854,30.462311845459514,0.0,10.902924932081056,0.0,27.006910332195485,29.74362874251498,32.18918700925769,236.49794067172294,,194.28651703962146,191.15410371535316,195.70803817416788,194.334982445895,275.12674320995427,193.2796610536035,194.44301647845236,236.56493965536148,32.18918700925769,236.49794067172292,,193.42342180152633,190.1303717469958,194.89978673370942,193.47431820067797,277.62530362709333,192.36421837714485,193.5880078227182,237.6357253915803,5.037405908609742,181.69865551048494,,151.5829634812776,149.12851817254304,153.54718951311787,151.62344526382856,220.86772512823705,150.83208306799642,151.70173362116185,187.00384880489204,1.3412161253857369,9.854080861321789,,8.09527154331756,7.964754321473048,8.154501590590328,8.097290935245626,11.463614300414761,8.053319210566812,8.101792353268849,9.856872485640062,2.520070642519673,117.37759234002803,,96.47177979120406,94.95203936640341,97.23816709278753,96.49552205237092,135.94925551235002,95.98720749040982,96.54726373142088,117.15463629287856,42.68627450980391,0.0,0.0,0.0,0.0,0.0,0.0,44.19664967225056,4.193257701994174,0.0,5.844173044217687,0.0,1.0173805545838364,2.3455978101116988,0.0,0.0,0.0,28.078602483207817,446.3463731118702,66.31091906470223,153.30238183679782,196.21499122004104,212.2149912200411,214.2149912200411,214.2149912200411,1146.0,129.30660242377917,92.57421780289943,73.56607441152644,62.4,62.4,0.8571428571428571,8.26903126644947,5.807354922057604,4.100139811853497,4.8359247347313,,4.844167373971091,4.843858744450159,4.846581069451338,4.844178890008392,4.859538556607025,4.844183059144424,4.844170159475619,4.852947801628693,0.17083915882722903,0.2014968639471375,,0.20184030724879545,0.2018274476854233,0.20194087789380574,0.201840787083683,0.20248077319195937,0.20184096079768432,0.2018404233114841,0.20220615840119552,2.2864898109348273,2.451541106447554,,2.4532441152907274,2.4531804016885417,2.4537422595866505,2.453246492587531,2.456412223558331,2.4532473532358123,2.4532446903129164,2.4550550518214815,236.03999999999996,267.9631194931922,144.62812934327874,,143.26336108267213,143.27699092734736,143.06254138701348,143.26256769461514,142.11509366002647,143.25818748145917,143.2637009843664,142.6281089523383,11.165129978883009,6.026172055969948,,5.969306711778006,5.9698746219728065,5.960939224458895,5.969273653942298,5.921462235834436,5.969091145060799,5.9693208743486,5.942837873014096,6.466318094563732,5.849634560270841,,5.840153359682498,5.840248493541236,5.8387506243598795,5.840147821698132,5.832105985394813,5.8401172465088855,5.840155732245088,5.835709343386826,5.844173044217687,29.977304344916316,0.9091733689190402,1.5604022581254733,0.40339400320863317,8.577661484916522,5.294246105058695,0.600312057304301,0.0,282.3433318257822,85.6009908077617,-164.29986392371362,-15.575171121755028,-3.734087816448037,-14.936351265792148,204.83441250416263,393.1527635808186,11.714083597313175,8.93529008138224,11.913720108509654,1368.0,41.0,1.750443623153493,0.9673031935273813,0.0,0.0,0.4737558758501826,0.20077071928039653,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.03608439182435161,0.49719387459906544,0.24808853618900034,1.0642393072832288,0.499957298016641,16.258784066134833,13.403644795530921,11.686673185801062,8.743615628880713,11.128496507214857,7.3612769029397045,9.967474923350759,5.997773068491145,8.952830381876781,4.870008121725417,7.63987041322563,3.857754040517455,5.417904017181724,2.4680890888339273,3.996007918611289,1.6466174129989024,4.431861050092574,2.2583764154486623,7.501721984571183,3.493704668872677,12.074218623015815,5.174692106700837,79.15784461730362,40.410751729639486,28.776228014592977,26.16692557353811,26.009678681781867,26.009678681781867,140.0,172.0,49.67185999999999,25.816139999999994,0.5,232.05,6.111111111111111,4.999999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0,9.0,10.0,44.0,0.0,1.0,48.0,10.0,2.0,6.0,42.0,12.0,28.0,36.0,0.0,0.0,4.0,19.0,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,4.0,1.0,5.0,24.0,5.0,0.0,2.0,3.0,0.0,6.0,2.0,0.0,0.0,0.0,1.0,2.0,3.58351893845611,6.705079536561668,4.162781723775329,4.737294338915133,5.308577055485652,5.753960564100481,6.009235393597484,6.309222013162971,6.6064654140613275,6.4631817951606045 +38853,C[C@](N)(Cc1ccc(O)c(O)c1)C(=O)O,0,24.214285714285715,6.565889285714285,3.107142857142857,8.285714285714286,165.17565154411562,95.56850339285714,1.3375637058227505,6.5900357142857136,7.747271825396825,8.08406042857143,205.29053486337503,24.285714285714285,6.6351071428571435,3.607142857142857,7.321428571428571,150.74252404979467,91.17896553571427,1.6808201084999994,6.7437499999999995,4.169146825396825,8.079417000000001,253.7486992703727,22.733333333333334,6.3549999999999995,3.488888888888889,6.222222222222222,151.08472504479872,85.95207826666666,1.5538645800943331,6.465146666666668,4.2820987654321,7.823623999999999,228.859546014031,18.793650793650794,6.521825396825398,2.6031746031746033,4.174603174603175,157.05679133083171,67.10503633333333,1.309883564965857,6.592274603174605,4.925485008818339,8.015999555555556,186.15982551377664,11.333333333333334,6.188769230769229,2.0,2.217948717948718,168.80020094008685,37.24737397435898,0.9538152737888073,6.211429487179489,3.52457264957265,7.855390564102565,126.79367701750394,13.773584905660377,6.018264150943394,2.2264150943396226,3.169811320754717,162.95479480398936,48.22402877358489,1.1006565987903019,6.081103773584905,3.348008385744236,7.621647169811321,147.9357903954198,14.25531914893617,6.298808510638299,1.9787234042553192,3.595744680851064,167.0470950664859,49.8684145319149,0.9619390838092977,6.327544680851063,4.206264775413713,7.916762127659572,134.79853468695717,14.941176470588236,6.7487941176470585,1.7058823529411764,4.088235294117647,172.69462936460565,51.82098255882352,0.7982286895776767,6.721670588235295,6.428921568627453,8.37439305882353,116.50996905988687,11.15,6.919700000000001,1.2,2.75,180.9445735432347,34.87443209999999,0.6153167273547001,6.838460000000003,7.116666666666667,8.620765200000003,85.32845447651052,8.214285714285714,0.19567385204081628,0.04929544080441415,0.7487244897959181,4.285714285714286,1.345654591430044,38.664649963010206,0.2142431498744324,0.17828826530612238,3.2442867772108848,0.13045181122448973,46.608520540094915,-0.8571428571428571,-0.047895153061224445,-0.031975132267600626,0.20663265306122444,0.75,0.38859981013168976,-3.724281005102044,0.052559766734693994,-0.04329719387755112,-0.8011887046485262,-0.029504846938775513,6.913765069807215,1.488888888888889,0.03209821145124714,0.000534929595971369,-0.2614229024943311,0.26666666666666666,-0.12018433448537663,6.939803786989794,0.0026383116211938767,0.03105205215419498,0.532768998803225,0.0193793030612245,3.996294036956533,-1.9682539682539681,0.005582667233560107,0.009834201648804105,-0.08432539682539683,-0.8095238095238095,-0.3010392186325631,-9.6235800582483,-0.08527986314058202,0.0008655895691609613,0.2021575412572436,0.0072848463718820835,-19.058801979670264,-0.9743589743589743,-0.04803854984301414,-0.00778460729595762,0.046605180533752004,-0.782051282051282,0.09755717167592036,-4.315642849914965,0.02942986686889311,-0.04338075614861323,-0.8051396974388044,-0.031710582286760824,2.977099903224786,0.49056603773584906,0.00313349297266073,0.0029798753914259115,-0.022309395456295705,0.33962264150943394,-0.24920260277915451,2.240722526881981,-0.030838841832807724,0.005564834424335861,-0.02651948161339998,-0.0010537707932229182,-1.9951479481880616,0.46808510638297873,-0.004856526812852819,-0.003071209335627925,-0.10662722535822841,0.14893617021276595,-0.2425647792953452,2.17378967984694,-0.03359402759558592,-0.0011577181936604302,-0.26043947055772654,-0.008875792987407729,-1.9180017157039715,0.11764705882352941,0.028728248799519834,0.007544381787297842,-0.09116146458583431,-0.029411764705882353,-0.08444742339760977,0.35631552648559484,-0.024136432164480786,0.02436551620648251,0.51422600290116,0.019863726590636212,-4.675726075904392,-1.85,-0.007402244897959115,-0.00020788738041192106,0.17984693877551028,-0.65,0.40477503197796993,-8.632767577295917,0.05678376834786034,-0.014422908163265403,0.23145727040816294,0.00730701734693871,-0.15946386904646878,,,0.44888888888888884,1.15,0.5666666666666667,0.06666666666666667,0.5833333333333334,-0.016666666666666666,0.7093432969421367,0.03920061165159048,0.044933944984923806,0.8378544572640129,0.23669588810472156,0.21838440440189427,1.5471977542061495,0.45508029250661586,1.9222453386670815,1.3496850598137482,0.11416084872978761,0.4583994301235458,0.0,0.5725602788533333,7.538730639142857,678.0,183.8449,87.0,232.0,4624.918243235237,2675.918095,37.451783763037014,184.521,216.92361111111111,226.35369200000005,5748.1349761745005,680.0,185.78300000000002,101.0,205.0,4220.790673394251,2553.0110349999995,47.062963037999985,188.825,116.73611111111111,226.223676,7104.963579570435,1023.0,285.97499999999997,157.0,280.0,6798.812627015943,3867.8435219999997,69.92390610424499,290.93160000000006,192.6944444444445,352.06307999999996,10298.679570631395,1184.0,410.87500000000006,164.0,263.0,9894.577853842398,4227.617289,82.52266459284898,415.31330000000014,310.3055555555554,505.007972,11728.069007367929,884.0,482.7239999999999,156.0,173.0,13166.415673326776,2905.2951700000003,74.39759135552697,484.4915000000001,274.9166666666667,612.7204640000001,9889.906807365307,730.0,318.9679999999999,118.0,168.0,8636.604124611436,2555.873524999999,58.334799735886,322.2985,177.4444444444445,403.9473,7840.596890957248,670.0,296.04400000000004,93.0,169.0,7851.213468124837,2343.8154830000003,45.21113693903699,297.39459999999997,197.69444444444449,372.0878199999999,6335.531130286987,508.0,229.459,58.0,139.0,5871.617398396592,1761.9134069999998,27.139775445641007,228.53680000000003,218.5833333333334,284.72936400000003,3961.3389480361534,223.0,138.394,24.0,55.0,3618.891470864694,697.4886419999998,12.306334547094002,136.76920000000007,142.33333333333334,172.41530400000005,1706.5690895302102,230.0,5.4788678571428555,1.380272342523596,20.964285714285708,120.0,37.67832856004123,1082.6101989642857,5.998808196484108,4.9920714285714265,90.84002976190477,3.6526507142857128,1305.0385751226577,-24.0,-1.3410642857142845,-0.8953037034928175,5.785714285714285,21.0,10.880794683687313,-104.27986814285724,1.4716734685714319,-1.2123214285714314,-22.433283730158735,-0.8261357142857144,193.58542195460203,67.0,1.4444195153061212,0.024071831818711604,-11.7640306122449,12.0,-5.408295051841948,312.2911704145407,0.11872402295372446,1.397342346938774,23.974604946145124,0.8720686377551026,179.833231663044,-124.0,0.35170803571428677,0.6195547038746586,-5.3125,-51.0,-18.965470773851475,-606.285543669643,-5.372631377856667,0.05453214285714056,12.735925099206348,0.45894532142857125,-1200.7045247192266,-76.0,-3.7470068877551026,-0.6071993690846944,3.635204081632656,-61.0,7.609459390721788,-336.6201422933672,2.2955296157736624,-3.383698979591832,-62.80089640022675,-2.473425418367344,232.21379245153332,26.0,0.1660751275510187,0.1579333957455733,-1.1823979591836724,18.0,-13.20773794729519,118.75829392474499,-1.6344586171388094,0.2949362244898006,-1.405532525510199,-0.05584985204081466,-105.74284125396727,22.0,-0.22825676020408248,-0.14434683877451246,-5.011479591836736,7.0,-11.400544626881224,102.16811495280618,-1.5789192969925383,-0.05441275510204022,-12.240655116213148,-0.4171622704081632,-90.14608063808666,4.0,0.9767604591836744,0.2565089807681266,-3.0994897959183665,-1.0,-2.8712123955187323,12.114727900510225,-0.8206386935923468,0.8284275510204053,17.483684098639444,0.6753667040816312,-158.97468658074934,-37.0,-0.1480448979591823,-0.004157747608238421,3.5969387755102056,-13.0,8.095500639559399,-172.65535154591834,1.1356753669572068,-0.28845816326530804,4.629145408163259,0.1461403469387742,-3.1892773809293757,0.7758552134336463,0.5510931289939193,0.4550802925066159,0.290584021731721,0.3173205264079224,0.16920285784420022,0.211854292520808,0.08748928650806048,0.12278994489593521,0.05124446901240827,0.08104049010251348,0.026898771480242875,0.054843392947268366,0.014705402812341395,0.037328986112692746,0.007907617994787427,8.028871140356634,5.6924312804821495,3.554912010451156,2.191214280378351,0.44832039030332493,-0.3309318541432155,4.023011520082882,0.9726990051210642,6.022035560770627,0.9959547939932287,14.537818488966504,10.952967046310691,16.0142918083393,11.704155997455,1.9851156861578525,0.7415236726363228,3.5009585838691413,2.2409493743669096,7.008292909281488,1.1772036069424687,3.713876622919251,2.4369901915455783,20.891618260138664,14.701054440458307,0.3234352895207507,0.7141196238180159,0.8024376807937322,0.870364645110353,0.8846503593960673,0.8989360736817817,2.4627728730829967,387.0088201517134,0.0,1.0,1.0,0.0,5.0,1.0,1.0,1.0,0.0,3.1901784744538504,1.2367568029675242,0.7951665180889425,0.45553169650583847,0.3841031250772673,0.31267455364869523,78.5650353641521,889.4824140913508,84.16173216961266,31.7672290746911,65.31293554691258,,8.0,183.0,11.508230540335195,9.901064578912528,17.919845289493818,5.563451491696996,0.0,25.122838405075452,0.0,0.0,0.0,15.946722266843596,6.7333333333333325,17.25,8.5,1.0,8.75,0.0,0.05111111111111117,-0.25,0.20476190476190465,0.059663865546218386,-0.14509803921568626,0.15777777777777757,0.23189976133651552,0.0,0.6380952380952384,0.9311111111111111,0.43333333333333374,0.57843137254902,0.7733333333333335,10.64014945413205,0.5880091747738572,0.6740091747738571,12.567816858960192,3.5504383215708235,3.2757660660284142,23.207966313092243,6.826204387599238,0.48210023866348445,0.33168316831683176,0.07425742574257427,0.29702970297029707,0.3,0.40213052728731,-0.8911531432258367,-0.1257283657868722,-0.03182689797235131,-0.08911531432258367,0.5978694727126901,1.324926171213116,0.08395433369511585,0.047318791829039863,0.0736070095118398,-0.6557285587512687,0.913975155279503,1.0233308758391821,1.5617768009853823,1.1269165247018744,0.6428571428571428,1.0037547532697288,0.9122002181775188,0.9500237710819944,1.00565718496473,1.0249572033516532,1.0291398751317784,0.8921770395095333,0.6221739130434782,0.47060999958933125,0.6600873725126593,2.0749574105621815,0.7899999999999999,1.3050868577613668,0.6336255864356858,1.180778599045072,0.4614056575426749,0.49478003751361704,0.49080389564447424,0.9961582385390472,1.1059006211180125,0.8025328486137971,0.6708739279873491,1.0528109028960821,1.0160714285714285,1.3743471579633473,1.1190002735469136,1.4551135250028415,0.8190215913806179,0.7759421405695844,0.77425939792061,1.3930379918127336,1.139297658862876,1.2764438730849936,0.9536276814714266,0.7347660857030536,1.2158653846153846,0.7575592486855647,1.1300765428893464,0.7526543876180851,1.2804874102560435,1.3048614598303758,1.270514814899666,0.8800141982505589,0.8527481542247743,0.703108349442459,0.7633270199882053,0.8626530809038606,0.7662735849056603,1.158355703322905,0.8606363217524416,1.1352203069884201,0.7056304376994571,0.683148096261975,0.6941801195271982,1.0608524292242913,0.9491211840888066,1.0404791685034769,0.975794444564298,0.9864801188879629,0.9837765957446808,1.0582556756088703,0.9481583678680058,1.0576054493779619,1.0262486136831566,1.0975132720584198,1.0767372907189272,0.9838141756082612,1.1152173913043477,1.2806923438569993,1.3032761624997768,0.9469886762200626,1.1911764705882353,0.8285320203485527,1.1077379456452507,0.8923934298217279,1.2743719663028683,1.2552265391736883,1.30487853951396,0.9354046944881174,1.4761956521739128,1.7921873197212927,1.979392708376211,0.257580919931857,1.42875,0.30955475071461414,1.4527468499785339,0.37730866629532794,1.8083440169411495,1.6562081760027518,1.7474994734743519,0.7465775294818656,5.5,0.0,2.666666666666667,1.0625,0.9333333333333338,0.42361111111111116,0.3648979591836735,0.11805555555555555,0.0,0.0,2564.9940632040075,2913.641960310867,1363.7191617434157,1210.1741725317095,9.309451091577223,0.47928309927503465,4.847588519856737,0.9204293131407014,1.0,0.3,1.6171764476037533,3.5705981190900795,4.012188403968661,4.351823225551765,4.423251796980336,4.4946803684089085,0.36666666666666664,0.0,0.12121212121212127,0.050595238095238096,0.06666666666666667,0.03258547008547008,0.033172541743970316,0.016865079365079364,0.0,0.0,0.6877637838352124,13.066666666666666,4.8884297520661155,3.5,86.77528563072794,1.0,3.6040284162379193,51.39499150539135,,41.86249632488166,41.52475578129547,42.2630451339364,41.86845887757525,53.09334015534495,41.76500689611661,41.8782545298387,47.52247953501102,-0.10434782608695652,-0.24477032859369394,-0.6486427902017547,0.2759795570698467,0.175,0.288781246396016,-0.09632263601674912,0.245327641819583,-0.2428493754381955,-0.2469537250148116,-0.22617429886045587,0.14833693474264342,0.181256038647343,0.16403934974690265,0.010851502435971095,-0.34915767556312716,0.06222222222222222,-0.08931291525387303,0.17948704549579483,0.012314566989610575,0.1741676722294558,0.16421760324814655,0.14855526250896867,0.08574170539308851,-0.23961352657004828,0.02853047137026566,0.19949515590747094,-0.11262540223357945,-0.1888888888888889,-0.22371210305361125,-0.24889867275288954,-0.39805176123747443,0.004855000230524073,0.06231185932059883,0.05584319836959456,-0.40891239968183407,-0.11861761426978817,-0.2455031642807012,-0.15791738888884324,0.06224610142838429,-0.18247863247863247,0.07249792948147647,-0.11161727454001691,0.13736666440043432,-0.24331806736763142,-0.24817155594703114,-0.24308272908676787,0.06387458491980538,0.05972108285479902,0.016013856424756764,0.060449310175538166,-0.029796534987624936,0.07924528301886792,-0.18519061605127346,0.05795274311355828,-0.1439431872192055,0.031212566989650137,-0.008174210060492492,-0.008077854828780588,-0.04280650673028204,0.05698427382053654,-0.02481949817106774,-0.06230209701974942,-0.14241183080213135,0.034751773049645385,-0.18025783201732964,0.05622163091936863,-0.15680327522852108,-0.006493518749944753,-0.08027634066974391,-0.06803886357801274,-0.041151310822106296,0.014322250639386188,0.14681700441777634,0.15304420985362774,-0.12175568694257942,-0.006862745098039216,-0.06275564616315576,0.009215537366211142,-0.11265906134514506,0.1366636001794438,0.1585020185371037,0.15226869143620744,-0.10031912666874086,-0.22521739130434784,-0.037829504661742216,-0.004217172562402684,0.2402044293015334,-0.15166666666666667,0.30080158352360725,-0.22327287549621516,0.26504356559890585,-0.08089656455236217,0.07134303663720717,0.05601315365690348,-0.0034213458654901996,2.94168275343288,7.8313399841789195,2.102578844744821,15.711276393885676,29.817296958358863,33.60586802734638,34.73414849893072,35.87693421321643,35.94893421321643,28.83368008000622,20.245275897206223,1.7124127309468142,6.875991451853187,0.0,8.5884041828,1622.9331843854968,1420.4395811019344,449.39368565380823,0.0,22.0,24.0,23.0,27.0,24.0,22.0,17.0,6.0,211.084457896,15.0,4.31748811353631,5.117993812416755,5.983936280687191,6.812345094177479,7.674617497364363,8.51057131510735,9.371693622333941,10.21005271198941,11.070739316920926,0.6666666666666669,1.0095714285714286,1.1367023303109154,0.6280463146877266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6346516039349874,0.9929971988795518,1.0270263240037458,0.6121085967258875,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,21.0532496616843,5.538925252383345,11.49902366656781,0.0,0.0,4.794537184071822,0.0,0.0,0.0,6.06636706846161,24.619922828310838,6.4208216229260096,0.0,161.40578988342781,-357.6880321913444,-50.464425885487955,-12.7745725782623,-35.76880321913444,239.9708252475799,531.7943819000064,33.6973062841247,18.992656496428804,29.54413232777814,0.5,0.5120769800195438,0.2275459591139893,116.88996171591023,0.14585600501761864,0.32392770053480857,0.48792301998045623,4.0,0.2,0.33639630812022153,0.7427365312070243,0.8345937566538978,0.9052427574224402,0.9201009429707623,0.9349591285190845,0.4423000000000001,,1.1428571428571428,1.3285248953001396,0.9177863289708527,1.1395624948769625,-4.847358875538426,1.1960679314565485,1.1342421939878375,-1.9153025404755315,53.703800000000015,20.11411936859394,0.0,0.0,5.733667477162185,18.883484074999977,0.0,23.762552697081826,0.0,11.49902366656781,3.4339872044851463,0.0,4.77912349311153,0.0,6.304448802421981,0.0,7.902117546276448,0.0,9.531046110875145,18.66666666666667,4.106233938019653,0.0,0.0,0.0,0.0,0.0,0.027026171579744185,0.0,28.267999999999997,0.0,10.74038281053162,0.0,0.0,0.0,0.0,0.0,-1.11568074452003,31.827665248705628,5.733667477162185,0.0,11.49902366656781,26.82781272485731,11.21535880699783,0.0,12.487188691387619,18.19910120538483,0.0,0.0,0.0,17.585296811256345,17.77024491017965,17.26055938433049,102.78998301078272,,83.57261169738237,82.87237490988424,84.40371875734336,83.58497608916693,108.12562386090525,83.370538068039,83.60527676714568,95.81108008621223,17.260559384330495,102.78998301078272,,82.58213550690618,81.72098666729077,83.60830393890194,82.59735526027359,111.03403918622828,82.3339458607767,82.62226686568958,96.96026161049761,4.679964473171475,77.39882692037183,,64.04869863834632,63.66101998470994,64.5160580741174,64.05556474575269,77.07554633502826,63.937099734783835,64.06675774411268,70.57902122446302,1.150703958955366,6.852665534052181,,5.571507446492158,5.524824993992283,5.626914583822891,5.572331739277796,7.20837492406035,5.5580358712026,5.573685117809712,6.387405339080815,2.339982236585738,51.39499150539135,,41.86249632488166,41.52475578129547,42.2630451339364,41.86845887757525,53.09334015534495,41.76500689611661,41.8782545298387,47.52247953501102,27.80392156862745,0.0,1.3881330309901738,0.0,0.0,5.5360156840513985,27.04052232930209,28.756737072104883,0.07953703703703718,0.0,0.0,0.0,0.0,0.0,-1.385503590325019,0.0,0.0,17.13904070832485,205.53572492675315,45.28094053290509,99.97674733452223,112.34127531112252,121.85105031544943,123.85105031544941,125.85105031544944,195.0,99.06943776453372,195.84089020425455,46.95072315717025,103.78000000000002,103.78000000000002,1.0,6.535105194992312,4.906890595608519,3.601952739371866,3.8204869445846326,,3.824592791294802,3.8257503396434513,3.822304056849945,3.8245698028967734,3.78158865601159,3.82489193990418,3.824541948534181,3.8030031791305796,0.24013018262479108,0.2546991296389755,,0.2549728527529868,0.2550500226428968,0.254820270456663,0.25497132019311824,0.2521059104007727,0.25499279599361196,0.25496946323561204,0.253533545275372,1.68694123411285,1.7458429950070857,,1.7469171099272092,1.747219723375435,1.7463185051444716,1.746911099230549,1.7356093088151703,1.7469953239821532,1.7469038161986106,1.7412561730072849,157.15999999999988,58.686489714857444,63.65791430433659,,63.368265190123026,63.263147227166975,63.50614730934414,63.37015364962343,66.33793005764392,63.338661994186246,63.373082983801176,64.99477816809852,3.912432647657163,4.243860953622439,,4.224551012674868,4.217543148477798,4.233743153956277,4.224676909974895,4.422528670509594,4.222577466279083,4.224872198920078,4.332985211206568,4.4776746502721565,4.558988766376955,,4.554428295183161,4.55276807541471,4.556601817342384,4.554458096083596,4.600226939115013,4.553961024811552,4.5545043207856954,4.579772038901295,0.0,10.74038281053162,27.04052232930209,4.7039380196523055,-1.642080498866212,4.106233938019653,0.07953703703703718,1.3881330309901738,0.0,193.87168485128774,64.7845096059569,-143.5676116338327,-20.25524044644676,-5.127414701208311,-14.356761163383274,96.31867756806818,213.449828952711,13.525310735354806,7.623208176882536,11.858323830706167,374.0,21.0,2.014680616269726,0.9198946019720429,0.2041241452319315,0.10206207261596575,0.8635900917253425,0.09392774153229655,0.2041241452319315,0.018633899812498248,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.18419528592042317,0.03852691958159105,11.637828201504695,8.266396934908789,6.826204387599239,4.3587603259758145,6.9810515809742935,3.7224628725724047,5.084503020499392,2.0997428761934516,2.82416873260651,1.1786227872853903,2.188093232767864,0.7262668299665577,1.3162414307344408,0.3529296674961935,0.8212376944792403,0.17396759588532337,4.086885724556472,1.0954692028522575,3.5036436921401752,1.033825351331249,4.517314630310753,1.0407520992980908,52.54706000863615,30.32489602363963,23.999911066209307,21.955893806484795,20.35169099388045,20.151165642304903,74.0,83.0,29.676308999999982,13.339690999999997,0.21428571428571427,15.05,7.506944444444444,3.236111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,28.0,0.0,1.0,28.0,6.0,1.0,4.0,24.0,7.0,15.0,21.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,4.0,4.0,0.0,15.0,5.0,0.0,1.0,4.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,1.0,2.995732273553991,0.0,3.56953269648137,3.9367156180185177,4.253838086459854,4.746561235430042,4.6913478822291435,4.66785151486124,4.721841492791785,4.123093975508087 +2750,CC1(COc2ccc(CC3SC(=O)NC3=O)cc2)CCCCC1,0,25.391304347826086,5.998880434782607,3.108695652173913,6.053140096618358,161.094089860768,100.26233265217397,1.5646936698158038,6.081821739130432,4.133075758931233,7.592491152173911,213.64117596262463,25.395833333333332,6.178208333333334,3.7708333333333335,5.347222222222221,143.66343418637697,96.0050516458334,1.903335565000001,6.341677083333335,2.681423611111112,7.645257333333327,263.9452778645016,21.685393258426966,6.034424719101124,3.337078651685393,3.692883895131086,150.32997886646763,80.34481252808992,1.6202117014661814,6.16756853932584,2.473279927867943,7.587912449438198,215.9146451097947,15.169354838709678,5.886879032258062,2.556451612903226,2.440860215053763,155.28209376491472,52.609768104838665,1.3178747198949998,5.99272338709677,2.3574646555157304,7.498357516129032,167.9430635485011,11.181159420289855,5.74777536231884,2.1594202898550723,1.9420289855072463,164.77365000272468,37.740172449275384,1.0663576563739199,5.80871811594203,2.3740606548577565,7.420689304347825,130.01481540704629,13.074074074074074,5.676074074074073,2.3703703703703702,2.314814814814815,162.67136818361962,46.104359805555525,1.1775538106449817,5.756777777777779,2.192386831275721,7.35011488888889,146.23813781843978,15.48235294117647,5.948047058823529,2.635294117647059,2.807843137254902,157.00610996277464,54.35568027058823,1.346669520512753,6.045988235294118,2.7429920116194633,7.550651552941175,175.13187483130088,13.44578313253012,5.863409638554216,2.3734939759036147,2.289156626506024,158.4419292502847,45.95926767469881,1.2169929159949882,5.952062650602409,2.579373047746542,7.476467879518071,155.10561453052077,11.546666666666667,5.656866666666663,2.3066666666666666,2.2311111111111113,163.23642476962223,39.78489633333333,1.0958100655702931,5.726702666666666,2.2585185185185193,7.317077946666668,132.7587305823167,10.417769376181479,0.11192764650283551,0.016043219833833625,0.5902646502835538,3.557655954631378,1.4575399164263882,47.71685301323252,0.296512211681059,0.10698544423440447,1.5870983716072715,0.0709464220226843,53.111645788244665,0.7063248267170769,-0.00014272802457467403,-0.009124194171477243,0.10674621928166345,0.9534148988307777,0.008964977603748911,3.2681996951008343,0.015422466988404299,0.0010742477945809455,0.004111218535071067,-0.0012917336168872065,2.1893022497491494,1.0067543170281008,0.013948147341815162,0.002842619988050336,-0.11786601813895194,0.005607357532762909,-0.05128225277165957,4.375365786474381,-0.010618451794220982,0.013495992013763513,0.07870364770835794,0.011570441191775867,-0.7216401983466857,-1.2193121531800726,-0.004310430514055733,-0.0016934166168970388,-0.05713000792731265,-0.0618245692488025,-0.35642518908896453,-5.883088672068416,-0.07296445620176788,-0.004422295566802849,-0.07307517031133173,-0.00164978545185682,-11.72663422129633,0.86231884057971,0.0009504410838059247,-0.00026786547122232076,0.06647763074984245,0.30126724077574724,0.13895557562058683,3.961325744486446,0.03611866045622367,0.0012665091367359885,0.15868240853107776,0.001095646975425327,4.5050934518613275,1.7130679829167534,0.006629116782188609,0.0011116992694937078,0.03976755583560876,0.45634476106015687,0.19534598026778507,8.237043868409994,0.05216396443816576,0.009155618567527822,0.07574105725321009,0.0006239109080725271,12.245833986616192,-1.0014010897364618,-0.011074321694651394,-0.0004410443316171642,-0.03655621038585566,-0.4022140677316924,-0.06075721072565899,-4.529329744690313,-0.015206472764670319,-0.010830610474813741,-0.0052292238766106485,-0.0077596951684643575,-2.7407549197765295,-0.6723529277791694,-0.01136714362174596,-0.002255701887280351,-0.0027842940761154296,-0.36686380050763856,-0.24044578699154232,-3.546497055139272,-0.04931235062712559,-0.010647937686473664,-0.14654136814162924,-0.003270661415036326,-9.674752572675064,1.754984247006931,0.03310812161310647,0.002199573691569337,0.0007498424700693024,0.5421186025344817,0.094643673156502,8.017443385608058,0.024653807295211643,0.030592874606175192,0.18647983757345993,0.021245339716446113,4.524134394489482,,,0.4884057971014492,1.0217391304347827,0.41304347826086957,0.021739130434782608,0.6086956521739131,-0.1956521739130435,1.0109696968030695,0.016295144512095475,0.027512535816443303,0.610361195652539,0.16180932511947627,0.31816568525421507,1.6213308924556085,0.4799750103736913,2.033493082086864,1.6181465191566682,0.0860566784353047,0.24190570491352953,0.0,0.4153465629301957,7.242170969478274,1168.0,275.9484999999999,143.0,278.44444444444446,7410.328133595328,4612.067302000002,71.97590881152698,279.7637999999999,190.12148491083673,349.2545929999999,9827.494094280733,1219.0,296.55400000000003,181.0,256.66666666666663,6895.844840946095,4608.242479000003,91.36010712000005,304.4005000000001,128.70833333333337,366.9723519999997,12669.373337496076,1930.0,537.0638,297.0,328.66666666666663,13379.36811911562,7150.688315000003,144.19884143049015,548.9135999999997,220.12191358024694,675.3242079999997,19216.40341477173,1881.0,729.9729999999997,317.0,302.66666666666663,19254.979626849425,6523.611244999995,163.41646526697997,743.0976999999996,292.3256172839506,929.796332,20824.939880014135,1543.0,793.1929999999999,298.0,268.0,22738.763700376006,5208.143798000003,147.15735657960096,801.6031000000002,327.6203703703704,1024.0551239999998,17942.044526172387,1412.0,613.0159999999998,256.0,250.0,17568.50776383092,4979.270858999997,127.17581154965801,621.7320000000001,236.77777777777786,793.8124080000001,15793.718884391496,1316.0,505.58399999999995,224.0,238.66666666666669,13345.519346835845,4620.232822999999,114.466909243584,513.909,233.1543209876544,641.8053819999999,14886.209360660574,1116.0,486.6629999999999,197.0,190.0,13150.680127773629,3814.619217000001,101.01041202758401,494.02119999999996,214.087962962963,620.5468339999999,12873.766006033224,866.0,424.26499999999976,173.0,167.33333333333334,12242.731857721668,2983.8672249999995,82.18575491777199,429.50269999999995,169.38888888888894,548.7808460000001,9956.904793673752,479.217391304348,5.1486717391304335,0.7379881123563468,27.152173913043477,163.65217391304338,67.04683615561386,2194.975238608696,13.639561737328714,4.921330434782606,73.00652509393448,3.2635354130434773,2443.1357062592547,33.90359168241969,-0.006850945179584353,-0.43796132023090767,5.123818525519845,45.76391514387733,0.4303189249799477,156.87358536484004,0.7402784154434063,0.05156389413988538,0.19733848968341122,-0.06200321361058591,105.08650798795918,89.60113421550098,1.2413851134215494,0.25299317893647993,-10.490075614366722,0.4990548204158989,-4.564120496677702,389.4075549962199,-0.9450422096856674,1.2011432892249527,7.004624646043856,1.0297692660680522,-64.22597765285502,-151.194706994329,-0.5344933837429109,-0.20998366049523282,-7.084120982986768,-7.666246586851511,-44.1967234470316,-729.5029953364835,-9.047592569019217,-0.5483646502835533,-9.061321118605134,-0.20457339603024569,-1454.102643440745,118.99999999999997,0.1311608695652176,-0.036965435028680264,9.173913043478258,41.57487922705312,19.175869435640983,546.6629527391295,4.984375142958866,0.1747782608695664,21.89817237728873,0.1511992826086951,621.7028963568632,185.01134215500937,0.7159446124763698,0.12006352110532045,4.294896030245746,49.285234194496944,21.09736586892079,889.6007377882794,5.633708159321902,0.9888068052930049,8.18003418334669,0.06738237807183292,1322.5500705545487,-85.11909262759926,-0.9413173440453685,-0.03748876818745896,-3.107277882797731,-34.18819575719385,-5.164362911681014,-384.99302829867656,-1.2925501849969772,-0.920601890359168,-0.44448402951190513,-0.6595740893194704,-232.964168181005,-55.80529300567106,-0.9434729206049146,-0.18722325664426914,-0.23109640831758066,-30.449695442134,-19.95700032029801,-294.3592555765596,-4.092925102051424,-0.8837788279773141,-12.162933555755227,-0.27146489744801505,-803.0044635320303,131.62381852551982,2.4831091209829856,0.1649680268677003,0.05623818525519768,40.65889519008613,7.09827548673765,601.3082539206043,1.8490355471408733,2.2944655954631394,13.985987818009495,1.5934004787334584,339.31007958671114,0.7080976644591217,0.6211299372624844,0.441577009543796,0.3661212391860255,0.2956111102968636,0.2304800046068354,0.19293378193090302,0.13668566974448892,0.12535192160277853,0.08098795807909555,0.08404381527770911,0.04684163982003059,0.05471110526266962,0.026169601604348978,0.03406073792286046,0.013079486539906997,16.00200405495261,5.693520014045954,3.5463885144422362,2.1928148215320724,0.4184011939073661,-0.5243341954198188,4.0189668581331714,0.9773104184834555,6.023383709787616,0.6593771147030494,14.540338126972673,10.337950111137394,32.0609990238537,11.704815650876608,2.91643208019384,0.7512062300680858,3.4919802516372216,2.24277492915003,7.009358733244938,0.6240089808150833,3.7048174590141802,2.4388485453121582,24.43423166542777,14.701792366891437,0.26653723412428254,0.5670756712229575,0.749019062551817,0.8266874104165863,0.8475986151785077,0.8475986151785077,1.3518251637442014,578.4344237193736,0.0,1.0,2.0,0.0,5.0,7.0,1.0,0.0,1.0,3.9968578808138346,2.275397619573879,1.2332403468087083,0.788362228401966,0.668584510916598,0.668584510916598,116.50356360774558,1063.015034480442,50.55613468958218,23.109022488705257,46.93956318901564,,14.0,538.0,0.0,9.589074368143644,16.396329472505965,11.83581209232279,29.68173023888493,32.10410811463005,0.0,24.26546827384644,12.240525803696954,4.736862953800049,11.233333333333333,23.5,9.5,0.5,14.0,0.0,0.011594202898550761,-4.5,0.12295429208472669,0.030518394648829328,-0.09243589743589736,0.0220410628019323,0.12483916083916069,0.0,0.5644927536231886,0.8289855072463767,0.44153846153846193,0.5339743589743593,0.8069444444444444,23.252303026470596,0.37478832377819593,0.6327883237781959,14.038307500008397,3.721614477747954,7.317810760846946,37.29061052647899,11.0394252385949,0.5891608391608393,0.10385756676557863,0.04451038575667656,0.2225519287833828,0.5555555555555556,0.39745040455418595,-0.7437844382189365,-0.056937294200850676,-0.016169226917802964,-0.0437520257775845,0.6025495954458141,1.1276048714818003,0.03206446676118149,0.024513149380039137,0.03888292660282069,-4.895411515986955,0.7864384866630373,0.6731620892936083,1.5564695707660958,1.0876200960768616,0.5601310662415873,1.1636458650297836,0.7918516738350343,0.9972701262223456,0.6715981163630196,0.5224359850689334,0.6711177558381288,1.0111853730694997,0.9031579333671775,0.6555088712200571,0.7965952807329154,1.6666366801306212,0.9297946841156317,1.1271270686636479,0.9030647748917789,1.120824612670856,0.6638859736178909,0.5430713116408195,0.6130599094229735,1.0470693465021914,1.0439147365093855,0.9019167704564223,0.9941728805891443,1.0358286629303444,0.9024105704295368,1.2297509043420365,1.0532222268598483,1.2328475145055233,0.9135130543155211,0.8194744231540484,0.8935058069501903,1.2207286472380003,0.7335329341317363,1.0043504255424256,1.05061056360561,0.6785428342674139,0.8756199078993983,0.7798777787864412,0.7499716897915615,0.7057495146190776,1.0042452730173708,0.6081685548006902,0.9932139211337687,0.8615856868787942,0.7786132280892757,0.7640400992686026,0.7971331336698894,0.9053909794502268,0.8259104282284415,0.7837705908913499,0.7748213587835332,0.7749948731237931,0.7619636701280846,0.5893922236549924,0.7934207351688909,0.7582738882001162,1.001448973710333,1.0576777021401964,1.085833560914835,0.9943955164131305,1.1306260548852916,1.0427299590826387,1.0059592279284828,1.0016862142764167,1.057176463728385,0.8499451054708439,1.0671364569012758,1.0324022309909413,0.8191065842028973,1.0104998320575664,0.9847618439314031,0.7388079138009203,1.0343712789521535,1.1116061619462132,0.8486983228364325,1.0032184050452275,1.0131131253842678,1.031951013408935,0.9423240358154535,1.1462556546984892,0.6147523135547086,0.4870285244526974,0.5540679040129659,0.9722978382706166,0.7621856181367345,0.8154420661972916,0.6342092310263955,0.7553967060838263,0.525333552432799,0.5599811626972084,0.45005790166384574,0.8878364048528226,6.0,0.11631262116110601,2.4444444444444455,1.4166666666666665,1.0444444444444447,0.6252777777777778,0.27437641723356004,0.29078089569161,0.15798217435122194,0.11469135802469138,4327.320313810667,4975.069514491576,2223.2278713365704,1993.1156261762967,14.026949981613255,0.48972196400240453,7.157644487654119,0.9597159380865694,1.0,0.5555555555555556,1.5267040752431782,3.248164336483134,4.290321609248305,4.735199727655047,4.854977445140415,4.854977445140415,0.24,0.008947124704700462,0.06984126984126987,0.0456989247311828,0.043518518518518526,0.02501111111111111,0.011432350718065004,0.016154494205089444,0.011284441025087282,0.00955761316872428,0.4814458480237488,17.8112,7.92,4.988662131519274,140.90860782376555,1.0,4.065926026122274,126.1582369618738,,100.91780693973129,105.71736743576139,108.7741747524708,100.93210386411045,135.91412387157516,106.11078481427037,105.90282531525725,121.75905637255349,0.06780000604850908,-0.0012751811463404463,-0.5687258708650981,0.18084467574059238,0.2679896288424451,0.0061507595796959965,0.06849151795895925,0.05201292351828447,0.01004106495297879,0.0025903993152658787,-0.018207170707977206,0.04122075709116348,0.0966381843055462,0.12461753443070751,0.1771851297615159,-0.19968334217936135,0.0015761382225460046,-0.03518411550429022,0.09169434927448031,-0.03581117868306427,0.12614792704130737,0.049589646814805766,0.1630870290833885,-0.013587230966704633,-0.11704157667070553,-0.0385108652663981,-0.10555341349407829,-0.09678710710503889,-0.017377894331889767,-0.24453888711525074,-0.1232916317938435,-0.24607572075396178,-0.04133548819139944,-0.046043252024339065,-0.02325396270624219,-0.22079214543737252,0.0827738462469001,0.008491566771055503,-0.016696490729212473,0.1126234320789965,0.08468138701932539,0.0953356913622507,0.08301733023734648,0.12181171308746776,0.011838144392437858,0.09998271775074559,0.015443301355986727,0.08482308136002915,0.16443711902793728,0.05922680400521663,0.06929402457910848,0.06737241645167985,0.12827118947971472,0.13402444630589355,0.1726233678093933,0.17592518076211822,0.08557817031135485,0.0477229758458553,0.008794113787345594,0.23056777482362623,-0.09612432888234225,-0.09894178999261673,-0.02749101091833471,-0.061931898459944415,-0.1130559202072611,-0.041684766256435815,-0.09492096520770699,-0.051284473844966094,-0.10123443008830191,-0.003294832866166297,-0.10937401700093186,-0.05160365262834969,-0.06453904895575767,-0.10155796156634089,-0.14060156942581378,-0.004717026633354883,-0.10311952734779006,-0.1649668625069767,-0.07432378355202471,-0.16630799233377958,-0.09952697549345213,-0.0923328829285013,-0.04610044202074871,-0.1821587794746214,0.16846065444867833,0.2957993190026356,0.137103007647545,0.0012703496130237342,0.1523808399260048,0.0649338464695707,0.16802121010337193,0.08314600992464458,0.2859536157007152,0.11749734037255032,0.29945611224274515,0.08518158922295757,15.035561588626255,11.539727686933837,3.3253611738025457,16.508068563802496,32.40425639061846,37.18133455099887,38.28872880709862,38.40946474632388,38.40946474632388,46.770340887997875,37.21736994060337,1.9793036040120082,5.563831213011179,0.0,9.5529709473945,6567.088543285234,6328.587741733402,703.2070413331385,68.0,35.0,42.0,51.0,59.0,52.0,55.0,64.0,68.0,333.1398645960006,25.0,4.795790545596741,5.616771097666572,6.484635235635252,7.32052696227274,8.186742787113518,9.028458718410613,9.892881506748903,10.737417892981517,11.600524169449297,0.6449275362318841,0.9705217391304352,1.1220603223560728,0.603515617929941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6743327128351994,0.958567774936061,0.9987412520979134,0.6156616385985716,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,7.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,4.736862953800049,5.749511833283905,0.0,5.907179729351506,5.239211713172287,14.905862972149976,0.0,0.0,0.0,50.080821154782996,36.958650497398246,5.41499046939678,11.856819994495092,225.76582719124164,-422.49575550143345,-32.342388323154005,-9.184690336987682,-24.85269150008432,342.2693907989872,640.5192789790084,18.213746366428175,13.924332151717573,22.086871688931318,0.5,0.8085653056471135,0.26345789867059005,0.47733661450420833,0.15279861073211626,45.299209285460066,0.1914346943528865,7.0,0.2,0.2763984702966949,0.5880561062452229,0.7767309651598341,0.8572728549668089,0.878957723976746,0.878957723976746,3.9299000000000026,,1.5178571428571428,1.0182204456514277,0.6577516478227592,1.515655618211207,-3.340926680164791,0.9489749082007346,0.9571034979285207,-1.3587291872460379,91.75070000000005,14.325937321943691,0.0,5.316788604006331,5.41499046939678,50.69860496722886,6.606881964512918,29.828919765543436,0.0,5.749511833283905,3.9318256327243257,0.0,5.25227342804663,2.3978952727983707,6.75110146893676,4.727387818712341,8.323365694436081,6.762729506931879,9.931151356518601,29.66666666666667,7.881026234567901,0.0,0.0,0.0,0.0,0.0,1.9201199137062237,0.0,44.64400000000002,0.0,22.776338031013008,0.0,0.0,0.0,0.0,0.0,-0.4386768128607885,51.614774828379346,10.05365155780638,4.794537184071822,5.749511833283905,23.003211437018884,11.21535880699783,5.41499046939678,44.59129680601767,24.26546827384644,0.0,0.0,0.0,27.761718424777285,31.01930479041917,29.3035290988123,252.3164739237476,,201.92505542111965,211.34619396320525,217.49115370947874,201.9550526958033,273.3790507406303,212.13905007130597,211.7224242393903,244.10886456564873,29.3035290988123,252.31647392374754,,200.67117343354207,210.41651442587147,216.89059785711888,200.70298935902008,275.1691744233151,211.27259472034007,210.84854713258602,244.87684193235293,4.675166575772073,198.3315938109977,,157.85711196823243,164.5181962542219,169.6763076327581,157.8819152468944,217.80058206290346,165.18830579681332,164.9072794553802,191.28025854056273,1.2740664825570567,10.970281474945548,,8.779350235700855,9.188964954921968,9.456137117803424,8.780654465034926,11.886045684375231,9.223436959622,9.20532279301697,10.613428894158641,2.354449149615214,126.1582369618738,,100.91780693973129,105.71736743576139,108.7741747524708,100.93210386411045,135.91412387157516,106.11078481427037,105.90282531525725,121.75905637255349,44.09411764705881,0.0,2.3129646424649337,0.0,0.0,0.0,0.0,45.94209759650402,7.776825850234612,2.319692849034237,5.973035845511044,1.070357315985507,-0.30979786809377385,0.0,0.3014473317704287,0.0,0.0,28.320435375534295,459.2935696525941,70.2283874611862,149.41555947822417,197.35479402542202,217.81918747213217,223.32896247645908,223.32896247645908,542.0,121.66374891587516,108.7416483376347,71.07773017910498,80.7,55.4,1.0,7.435843542298956,5.643856189774724,4.38710442591724,4.729042189977939,,4.7234037062058905,4.720410575738496,4.721337518487257,4.72341040727754,4.730770264379229,4.720918154919109,4.721404327407521,4.7252653512335945,0.19074367069205392,0.2056105299990408,,0.2053653785306909,0.20523524242341287,0.20527554428205463,0.20536566988163218,0.20568566366866214,0.2052573110834395,0.20527844901771833,0.20544631961885193,2.311578548327389,2.386631808100277,,2.3854387868436104,2.3848049051347466,2.385001254951007,2.385440205538118,2.386997158772682,2.3849124279624294,2.3850154052733084,2.38583284129519,254.34000000000003,147.32596529316916,127.17921554226413,,127.42524459556947,127.73955919252383,127.6630858083425,127.42471546343778,126.97047256610053,127.70585162365603,127.67143499662144,127.42986672151045,6.40547675187692,5.529531110533223,,5.540228025894325,5.553893877935819,5.550568948188804,5.540205020149469,5.520455328960892,5.552428331463306,5.550931956374845,5.540428987891759,5.825556705771803,5.678506360664953,,5.680438998685124,5.682902620244712,5.682303774555652,5.680434846185891,5.676863682881978,5.682638708131703,5.68236917259314,5.680475271263041,5.973035845511044,22.776338031013008,1.7605238986541019,1.346427070579533,0.6858344443226924,7.881026234567901,7.011219438899035,3.0785710538005118,0.0,314.60898732174456,128.24294086332128,-239.99246857620315,-18.371615601467415,-5.217227577743546,-14.117204033894302,194.42106801388553,363.8375082617852,10.346049387672767,7.909511049169244,12.546120974544314,1405.0,31.0,2.0260690474174954,1.5465947723372508,0.1767766952966369,0.1767766952966369,0.11785113019775792,0.05103103630798288,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.08838834764831845,0.4322131524555042,0.25083490907479944,0.5403309962648877,0.27888286055464356,16.286246282559798,14.285988557037143,11.0394252385949,9.153030979650637,10.346388860390226,8.06680016123924,8.103218841097927,5.740798129268534,6.392948001741704,4.130385862033873,4.958585101384838,2.7636567493818047,2.8449774736588203,1.3608192834261468,1.8733405857573255,0.7193717596948849,3.5549164552135317,2.3192328869928995,5.042906356198221,2.9983808334176625,6.300610855122893,3.1470504554322796,77.63242012053198,42.027015268776594,29.802575958980462,26.253509224044116,25.57267571815388,25.57267571815388,120.0,137.0,51.80223899999998,29.575760999999996,0.43478260869565216,119.05,7.118055555555555,4.986111111111112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,6.0,6.0,46.0,0.0,0.0,48.0,6.0,2.0,5.0,43.0,8.0,25.0,40.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,4.0,1.0,1.0,23.0,5.0,0.0,1.0,3.0,0.0,3.0,5.0,1.0,0.0,0.0,0.0,1.0,3.4339872044851463,5.821195071338169,3.901972669574645,4.237723145067448,4.633514658997234,5.047047580127811,5.003107027675465,5.231108616854587,5.585139694525429,5.810579458099989 +135398745,Cc1cc2c(s1)Nc1ccccc1N=C2N1CCN(C)CC1,0,25.80952380952381,5.873885714285715,3.380952380952381,5.962962962962964,162.05112267750192,102.03426507142856,1.6560370975471428,5.975364285714286,2.3175419687765366,7.4311534523809515,223.60705114310926,26.68888888888889,6.254533333333334,4.0,6.162962962962964,147.22651265838658,101.60251980000005,1.9156114264444455,6.410855555555557,2.6183813443072705,7.677503288888885,266.40579826978563,23.2,6.172933750000001,3.75,4.9125,157.41200260498113,87.25391244999997,1.6629980434811245,6.289272500000003,2.354359567901235,7.665648099999997,225.5055512149235,19.349514563106798,6.073978640776699,3.378640776699029,4.343042071197411,156.98623611942702,69.79882535922327,1.5429533159547477,6.1894097087378634,2.3377681889008755,7.600441980582521,202.17370315017877,16.895652173913042,5.8862565217391305,2.982608695652174,3.115942028985507,161.67010968703283,61.11560307826087,1.3558887691832524,5.980252173913045,2.1237251744498127,7.457586643478263,173.48493786452138,17.721153846153847,5.881095192307693,3.0384615384615383,2.8621794871794872,160.63105693890878,64.59281171153842,1.4633624540997692,5.983217307692308,2.1006054131054133,7.456018153846155,187.26230530880304,17.24,5.9025099999999995,2.98,2.206666666666667,154.9150097206567,59.90177842000002,1.54447362988792,6.0303049999999985,2.096296296296296,7.483992300000002,190.74710719922888,12.594059405940595,5.740858415841584,2.4257425742574257,1.4587458745874589,158.10439954372214,40.85479154455445,1.302785372355307,5.847998019801981,1.9690135680234688,7.354145207920795,154.56710246235554,8.698924731182796,5.44116129032258,1.8279569892473118,0.7060931899641577,163.72452453959264,27.46678552688171,1.0473134734410428,5.520086021505377,1.7379530067702107,7.1101250107526885,117.42147926375848,10.188208616780045,0.06578571428571423,0.012768620449827205,0.6031746031746031,3.2899974804736707,1.6727974514605772,46.69660678061224,0.29348894066528347,0.06699234693877545,0.26663509482439524,0.03081046768707482,53.25440381196241,0.9419501133786841,0.0045999999999999834,-0.005517191115312814,0.2592592592592592,1.1941882926009906,-0.38531839578343274,4.362132567006812,-0.0012777250015268125,0.006309240362811799,-0.002418330539043886,0.0004179402494331016,0.24985211001873,1.5207199546485255,-0.00299250000000001,-0.0008376390053792204,0.027777777777777714,0.23513479465860382,0.2151205130885412,7.045551428316332,0.05339980815556773,-0.0005913647959183531,0.008855833714372785,-0.000978986734693881,8.645545700144154,-1.6366598419303002,0.0019485436893203819,8.806715779065497e-05,0.02373247033441205,0.3863779240570731,-0.18174019296988916,-7.339206367297399,-0.04586740263507124,0.00014024668119676716,0.05015219382553272,-0.0006112933921141282,-5.9208592441653805,1.1728679877748198,-0.0004304347826086995,0.0007125710780288543,0.021256038647342983,-0.06363447150196627,-0.04165945792671969,5.238238968456078,0.015550409094747196,0.0013744232475598958,-0.029419560909988547,0.001420578482697424,2.359853841136531,1.0013518227803941,-0.004171153846153846,1.778974298711343e-05,-0.08119658119658121,-0.491004806480997,0.42320271561783984,4.758760486558085,0.06373280276365245,-0.003017621664050235,-0.014987308454386646,-0.0023080475863422297,9.376279373944516,-3.263446712018141,-0.016208999999999984,-0.001164406085941216,-0.25888888888888884,-1.284018644494835,-0.15221302696818795,-15.04060226061224,-0.06939241744246344,-0.01873584693877549,-0.04168571864045118,-0.008123876020408162,-13.565609863597551,-3.364540535686221,-0.009258415841584145,0.00028842242770118554,-0.143014301430143,-0.7892378807041698,-0.3439973891067745,-15.772116190088902,-0.1068133605860491,-0.012859815114164454,-0.05502285482320523,-0.002614346282077183,-19.475054139218642,0.6484529295589208,0.006222580645161296,0.0005811656900911234,5.730183352904034e-17,0.06233795788327312,-0.2664963924585296,2.7578929190805317,-0.01333118009765569,0.006191754443712948,-0.0015536577331346716,0.0035053802391924534,-3.6159180892511764,,,0.496969696969697,1.2045454545454546,0.5227272727272727,0.0,0.6818181818181818,-0.1590909090909091,0.8946112546678261,0.009577437462110422,0.025213801098474056,0.7562538154782239,0.23215731535459375,0.2543658636548002,1.65086507014605,0.48652317900939396,2.0891900302243163,1.6073228702170388,0.38897269710436416,0.0,0.0,0.48186716000727786,7.431925420000014,1084.0,246.7032,142.0,250.44444444444446,6806.147152455081,4285.439133,69.55355809698,250.9653,97.33676268861454,312.10844499999996,9391.496148010589,1201.0,281.454,180.0,277.33333333333337,6625.193069627397,4572.113391000003,86.20251419000004,288.48850000000004,117.82716049382717,345.4876479999998,11988.260922140355,1856.0,493.8347000000001,300.0,393.0,12592.96020839849,6980.312995999998,133.03984347848996,503.1418000000002,188.3487654320988,613.2518479999998,18040.444097193882,1993.0,625.6197999999999,348.0,447.33333333333337,16169.582320300984,7189.279011999997,158.92419154333902,637.5092,240.79012345679016,782.8455239999996,20823.891424468413,1943.0,676.9195,343.0,358.3333333333333,18592.062614008777,7028.294354,155.92720845607403,687.7290000000002,244.22839506172846,857.6224640000003,19950.76785441996,1843.0,611.6339,316.0,297.6666666666667,16705.629921646512,6717.652417999995,152.189695226376,622.2546,218.462962962963,775.4258880000001,19475.279752115515,1724.0,590.251,298.0,220.66666666666669,15491.500972065673,5990.177842000002,154.447362988792,603.0304999999998,209.62962962962962,748.3992300000002,19074.71071992289,1272.0,579.8267,245.0,147.33333333333334,15968.544353915935,4126.333946,131.581322607886,590.6478000000001,198.87037037037035,742.7686660000003,15611.277348697908,809.0,506.02799999999996,170.0,65.66666666666667,15226.380782182116,2554.4110539999992,97.40015303001697,513.368,161.6296296296296,661.241626,10920.19757152954,427.9047619047619,2.7629999999999977,0.5362820588927426,25.333333333333332,138.17989417989418,70.25749296134424,1961.2574847857143,12.326535507941905,2.8136785714285693,11.1986739826246,1.2940396428571423,2236.6849601024214,42.387755102040785,0.20699999999999927,-0.24827360018907663,11.666666666666664,53.738473167044575,-17.339327810254474,196.29596551530653,-0.057497625068706565,0.28391581632653096,-0.10882487425697487,0.018807311224489573,11.24334495084285,121.65759637188204,-0.23940000000000078,-0.06701112043033763,2.222222222222217,18.810783572688305,17.209641047083295,563.6441142653066,4.271984652445418,-0.047309183673468244,0.7084666971498228,-0.0783189387755105,691.6436560115324,-168.57596371882093,0.20069999999999932,0.009070917252437461,2.444444444444441,39.79692617787853,-18.719239875898584,-755.9382558316321,-4.724342471412338,0.014445408163267018,5.16567596402987,-0.0629632193877552,-609.8485021490342,134.87981859410428,-0.049500000000000446,0.08194567397331824,2.444444444444443,-7.317964222726121,-4.790837661572764,602.397481372449,1.7882970458959275,0.158058673469388,-3.383249504648683,0.16336652551020375,271.38319173070107,104.14058956916098,-0.4338,0.001850133270659797,-8.444444444444446,-51.06449987402369,44.013082424255344,494.9110906020409,6.628211487419855,-0.31383265306122443,-1.5586800792562112,-0.24003694897959188,975.1330548902298,-326.3446712018141,-1.6208999999999982,-0.1164406085941216,-25.888888888888886,-128.4018644494835,-15.221302696818796,-1504.0602260612238,-6.9392417442463445,-1.8735846938775487,-4.168571864045118,-0.8123876020408162,-1356.5609863597551,-339.8185941043083,-0.9350999999999987,0.02913066519781974,-14.444444444444443,-79.71302595112115,-34.743736299784224,-1592.983735198979,-10.788149419190958,-1.2988413265306098,-5.557308337143728,-0.2640489744897955,-1966.9804680610828,60.30612244897963,0.5787000000000005,0.05404840917847448,5.329070518200751e-15,5.7974300831444,-24.78416449864325,256.48404147448946,-1.2397997490819792,0.5758331632653042,-0.14449016918152446,0.32600036224489815,-336.2803823003594,0.6865492512616174,0.6264347331175357,0.4281403975282667,0.34049561850352356,0.2766760528879933,0.200668212664695,0.1724085255465017,0.10701058999720026,0.10756852499920369,0.05773336441240244,0.06961509237859055,0.031903797057971854,0.043285030503656084,0.01655500114421745,0.02782028297671347,0.009302694170526628,16.004503691428297,5.698220790447975,3.1705979910592053,2.1965133297234747,0.3819074201943704,-0.4236593076635208,3.223380279889148,0.9929800632839366,5.058064880933214,0.6531450629631605,14.554638426796728,10.31129777176831,32.062245957131836,11.710496056393868,2.9365030037261324,1.0036654664077354,3.153490455716507,2.2460415755875394,3.03725169786921,0.6049170831533949,3.315792098805757,2.441727977756303,24.440721943339017,15.5864399091274,0.2625562964133321,0.5958444049231155,0.7360499664781971,0.8183597675993578,0.8267545978083521,0.8267545978083521,1.536899961512601,726.0102103648205,0.0,2.0,5.0,0.0,8.0,0.0,1.0,0.0,0.0,3.902986433309596,2.012434520420955,1.217128939970566,0.7502327381982603,0.7026136905792129,0.7026136905792129,220.7713861207461,868.283617445034,32.91569189517514,20.673419462977,41.69959372558053,,10.0,377.0,0.0,0.0,0.0,0.0,43.38941795877469,15.441680662086164,11.336785877934737,0.0,59.419852590383144,4.992404732635669,10.933333333333334,26.5,11.5,0.0,15.0,0.0,0.0030303030303030195,-3.5,0.10730158730158723,0.04884004884004878,-0.058461538461538454,0.021080368906455815,0.08079536679536659,0.0,0.5539682539682542,0.7848484848484847,0.446666666666667,0.5051282051282054,0.7637681159420289,19.681447602692174,0.2107036241664293,0.5547036241664293,16.637583940520926,5.107460937801062,5.596049000405604,36.3190315432131,10.703509938206667,0.6332046332046334,0.09146341463414634,0.0,0.3475609756097561,0.35294117647058826,0.29383962155016197,-0.4765016150700542,-0.024666067662885614,-0.011345276549287003,-0.039708467922504515,0.7061603784498379,1.1451367894318707,0.03680848859447433,0.02726516165313978,0.0381712263143957,-4.323307443464386,0.7675903256918168,0.943608396670286,1.6090776077391593,0.6473684210526317,0.6238334099147395,1.384647195061108,0.7695330365436496,0.9455353161751808,0.8801127710856969,0.9736973371713997,1.0241201793362786,0.9482321836347426,0.8162301079456934,1.3334181596091204,1.513687012567979,1.173355263157895,1.1067044627814369,0.9961463680080881,0.8125304575761065,0.7601249278100136,1.2235195092849984,0.9301493630443216,1.3721802765481625,0.7651232524054014,1.2437437740260469,1.1469782739318808,1.3172265331532298,1.0449029126213594,0.9671233421612611,1.2069967954800302,1.227115689640215,1.1889834427975063,1.1260294561107944,0.9231736629847209,1.2479677509359943,1.062373035754276,0.7831893089733789,1.1179337204361988,1.035040721611436,0.9991990846681923,1.0992776375635125,1.014761277685966,0.7937608786212885,0.8475622856659981,1.0644162584181425,1.2955729095009894,1.071427964763384,0.9041475316829386,0.8803068662363677,1.1224019669255825,1.1473061873838266,1.2293775303643726,1.225215974292211,0.7588751622914978,0.8762640364614975,0.7538164177629901,1.0861920133101732,1.0924203589471386,1.1462638109176937,0.7908531968492881,1.5397585132428222,1.1695684039087946,1.138506320206321,1.4484868421052635,1.367360047480472,1.1580816556539812,1.5150650967711448,1.401599472738586,1.2043122247185305,1.1221304840454853,1.228363716501288,1.254482564297265,1.3675084234441695,0.9793482116941333,0.7651153739366706,1.073606044815008,1.0928500263106415,1.1703303007604928,1.3678595400958422,1.40269490173653,1.0545922670405723,1.1393631110247786,0.9201936478366424,1.3603554646671443,0.6959517672652082,0.5622044762004832,0.4223087360352869,0.7570033955857386,0.7451543732923581,0.9486971179405161,0.7244745873287151,0.9028868805715063,0.6369230630646119,0.7659049584681454,0.45767604947964124,1.0738221813176376,4.5,0.012345679012345678,2.4444444444444455,1.4444444444444444,1.4244444444444446,0.7855555555555556,0.4981859410430839,0.26906179138321995,0.2096403376165281,0.030000000000000006,4392.382324587128,4930.476451464821,2216.5457489336536,2014.3867792890794,10.75918223729325,0.4153904842974748,6.289920317099218,0.7105434878156237,1.0,0.35294117647058826,1.4893309894691646,3.3798829023578056,4.175188482808195,4.6420846845805,4.689703732199548,4.689703732199548,0.18,0.012345679012345678,0.06790123456790126,0.03801169590643274,0.04189542483660131,0.023104575163398693,0.01717882555320979,0.014161146914906313,0.019058212510593458,0.0075000000000000015,0.4211567944653893,15.5232,6.481481481481482,3.1653477717617657,134.63664509956521,1.0,4.052781068043024,90.22130865555694,,68.98975213496374,69.62361813551168,68.13639107512725,69.00259869311519,98.11769489130556,70.5520577585915,71.2750818078596,90.38530546365811,0.09245492989094138,0.06992399565689449,-0.43208983593740363,0.42982456140350866,0.3629754428957981,-0.230343724786882,0.09341433709521495,-0.004353571206568989,0.09417852413168679,-0.009069813336599928,0.013564878458772314,0.004691670399708921,0.14926274204317821,-0.045488599348534386,-0.06560137085056485,0.04605263157894727,0.07146959718180415,0.1285992592233519,0.15087930181774026,0.18194828068996585,-0.008827348539659366,0.033213308698936274,-0.03177448471853519,0.16234423974909143,-0.16064255292483023,0.029619556623762616,0.006897155267219707,0.03934593765968313,0.11744018843486928,-0.10864447026219792,-0.15716787307005206,-0.156283240285302,0.002093473174255846,0.18809299600475604,-0.019840445082583723,-0.11118065024390322,0.11512013857304597,-0.006542982580371117,0.05580642645216205,0.035240274599542314,-0.01934179946326422,-0.02490406587500799,0.1121760086994355,0.052984651004216315,0.020516123264288474,-0.11033641662724161,0.04610700808327442,0.044312839356328355,0.09828536698111591,-0.06340516161363072,0.0013932392349679543,-0.13461538461538466,-0.14924169680832264,0.252991009310976,0.1019080574508436,0.2171557218448584,-0.04504427448717463,-0.0562090615425446,-0.07491115064476836,0.1760658030658179,-0.3203160471845093,-0.24639087947882732,-0.09119278707645927,-0.42921052631578943,-0.3902795221320264,-0.09099310071000258,-0.322091974075874,-0.2364396330749774,-0.2796714519629868,-0.15633995467815376,-0.2636725966940183,-0.2547321703477664,-0.33023867710608135,-0.14073596284709897,0.02258837819124686,-0.23710265763418442,-0.23989011705581634,-0.20564198540978082,-0.3377572221508235,-0.36394339201989545,-0.19195946554786453,-0.20636013747343743,-0.08485253481478042,-0.3656984727119226,0.06364739415434766,0.09458863087107298,0.045515151176647915,9.500040821919845e-17,0.018947722073725762,-0.15931181161583094,0.0590598141753111,-0.045423108848450806,0.09242480263262927,-0.005826906372388467,0.11377238004936166,-0.06789894976608378,9.315539282148405,15.511032055582705,6.760396619039104,15.499847491631645,32.94816995740646,37.31523974774399,38.30982350008285,38.357823500082844,38.357823500082844,45.96218066493496,35.36110314477485,8.557399336296012,0.0,0.0,10.601077520160112,3765.54543867076,2207.3549317576408,1758.871064637352,156.0,36.0,49.0,68.0,91.0,107.0,127.0,148.0,162.0,312.1408676400006,25.0,4.812184355372417,5.680172609017068,6.577861357721047,7.467942332285852,8.37216741936598,9.271529540288606,10.178578184473086,11.082496332442835,11.990928265368716,0.6587301587301587,0.9640000000000002,1.1246642121942956,0.6193429832177647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6989714856002281,0.9532212885154061,0.9906617417542402,0.6342187393988739,5.0,0.0,0.0,0.0,1.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,15.116608065707286,10.836701762445136,0.0,0.0,0.0,0.0,4.992404732635669,0.0,11.336785877934737,12.13273413692322,32.17051038775264,31.0561728173516,16.93822404106412,157.3323182529201,-255.13612954825447,-13.207101163253732,-6.074669751148915,-21.261344129021204,378.1037043736662,613.1474878967796,19.708590731921404,14.598749711828086,20.438249596559324,0.5,0.9761477256479932,0.2179552497185843,0.0,0.10323704809199291,134.08748626445913,0.023852274352006597,5.0,0.0,0.2761949775393016,0.6267959835005577,0.7742846267118754,0.8608700713668945,0.8697009772438168,0.8697009772438168,3.4392200000000033,,1.1964285714285716,0.7180808458375607,0.8140978465607991,1.1953594163616885,-1.6485893416927895,0.6563647490820076,0.6324080766079617,-1.1197196378022471,94.04770000000003,0.0,0.0,9.799819461700956,4.992404732635669,6.923737199690624,38.543486210333825,40.772434027706346,0.0,0.0,3.9318256327243257,0.0,5.272999558563747,2.3978952727983707,6.799055862058796,4.844187086458591,8.40804774415544,7.018401799069201,10.062241904896988,27.666666666666668,10.55659549004787,0.0,0.0,0.0,1.8063756351305953,0.0,5.883609588897289,0.0,40.48800000000001,0.0,0.0,0.0,0.0,0.0,0.0,5.01073223733938,1.1156481481481482,47.23589691216041,5.316788604006331,16.37585452605499,0.0,48.862136853785714,0.0,6.923737199690624,10.440598685398296,35.32424007494372,0.0,0.0,0.0,26.012405295146117,29.356802395209584,29.211101601570657,180.44261731111393,,138.38381213844667,139.36713874874772,136.42951637229334,138.4102092022336,197.099163388718,141.2018371030845,142.62379916100184,181.17778170469893,29.211101601570657,180.44261731111393,,137.51368226831673,138.77961805669878,135.7634363160164,137.5408568994251,197.94254831325875,140.66481139929022,142.10637437104992,181.89033056511857,4.830655063273433,125.66474738630254,,98.36051687642139,97.43054648719247,95.07505247712764,98.38076114243964,141.6641982872705,98.89803884419709,100.10885675562079,129.25341283878515,1.327777345525939,8.201937150505179,,6.290173279020303,6.334869943124897,6.201341653286061,6.291373145556073,8.959052881305364,6.4182653228674775,6.48289996186372,8.235353713849952,2.485782975140811,90.22130865555694,,68.98975213496374,69.62361813551168,68.13639107512725,69.00259869311519,98.11769489130556,70.5520577585915,71.2750818078596,90.38530546365811,40.035294117647055,0.0,4.34496603888469,0.0,0.0,0.0,0.0,41.60779315367809,4.246790753338372,3.568505369740489,0.0,0.0,0.0,4.8001100718065,0.0,0.0,0.0,26.6371870547527,522.6646557169497,62.551901557704916,141.95508189902785,175.35791627794418,194.96755675238103,196.967556752381,196.967556752381,991.0,122.4338603963356,12.77136690963655,70.73465486072546,59.11,30.870000000000005,1.0,8.762320812479372,5.643856189774724,4.192615440086489,4.616894733917865,,4.610784410982381,4.610004503044001,4.609546586548474,4.6107837459933725,4.607739477607604,4.610216999720839,4.610372457355091,4.609703849175202,0.1905734290948404,0.20985885154172115,,0.20958110959010823,0.2095456592292728,0.20952484484311243,0.20958107936333512,0.20944270352761835,0.20955531816912903,0.2095623844252314,0.20953199314432736,2.221782109604769,2.3181797039579615,,2.316855357124352,2.3166861941714827,2.3165868582078435,2.3168552128996396,2.316194745182069,2.3167322877879566,2.3167660074617347,2.3166209743494623,237.4199999999998,156.37587457008755,126.23123452553797,,126.47394726479362,126.72766730104264,126.79950149245774,126.4736219030571,126.35365608869024,126.68851112009058,126.65065126392476,126.38549501789237,7.107994298640343,5.737783387524453,,5.748815784763346,5.760348513683756,5.7636137042026245,5.748800995593505,5.7433480040313745,5.758568687276845,5.756847784723853,5.744795228086017,5.840719921910047,5.626572780050622,,5.628493696845194,5.630497792447855,5.6310644709121735,5.628491124282527,5.627542129978407,5.63018876575897,5.6298898790326435,5.627794080886932,0.0,11.129091028386664,4.776957278281683,3.356908961115311,1.1156481481481482,10.55659549004787,0.0,6.407959971025447,2.183796821197615,278.0396851410918,84.2413907159638,-136.60907443365886,-7.07155771727954,-3.2525970103252098,-11.384089536138235,202.45034361021445,328.3012522029346,10.552689433075198,7.816696481022254,10.943375073431158,958.0,38.0,1.5161824628322011,1.1009439858763876,0.0,0.0,0.27497165237684323,0.1022618303663981,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.08838834764831845,0.386488648831137,0.25455447307441464,0.5548950833708092,0.280410193418157,15.104083527755582,13.781564128585785,10.703509938206668,8.512390462588089,9.960337903967758,7.22405565592902,8.448017751778584,5.2435189098628125,7.314659699945851,3.925868780043366,6.33497340645174,2.9032455322754385,4.631498263891201,1.7713851224312671,3.5331759380426107,1.1814421596568818,3.389063144681381,1.9172877034650786,5.55856145070032,2.669220450448321,8.849333563025196,3.5446516346612653,75.1664334676791,39.883780367322075,28.885583933825608,25.831405890013723,25.669866965119496,25.669866965119496,122.0,146.0,49.02585999999999,27.654139999999995,0.47619047619047616,163.05,5.888888888888888,4.694444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,11.0,11.0,42.0,0.0,3.0,45.0,11.0,1.0,6.0,39.0,12.0,25.0,33.0,0.0,0.0,0.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,5.0,1.0,3.0,22.0,5.0,0.0,4.0,0.0,0.0,4.0,0.0,1.0,0.0,0.0,1.0,2.0,3.481240089335692,7.555978639546946,4.073291153024268,4.650382528809639,5.246695070677012,5.735563724524307,6.103816192767159,6.545753673537679,6.978999780313639,7.346393201078941 +392622,CC(C)c1nc(CN(C)C(=O)N[C@H](C(=O)N[C@@H](Cc2ccccc2)C[C@H](O)[C@H](Cc2ccccc2)NC(=O)OCc2cncs2)C(C)C)cs1,1,25.571428571428573,6.053842857142858,3.020408163265306,6.294784580498867,163.02851931394545,101.01272497959181,1.5492524431913468,6.131050000000001,4.091623274824333,7.621851612244897,213.24018872545952,25.653465346534652,6.278584158415842,3.623762376237624,5.696369636963696,146.8670885532144,97.02464591089107,1.8483878665940592,6.428425742574257,2.919172472802835,7.726746574257425,258.3890425698789,21.361581920903955,6.175466101694915,3.288135593220339,4.291902071563088,155.03113126334856,79.04976542937852,1.5667327370902822,6.286037288135593,2.799644277045407,7.692739299435029,211.22534720370726,16.720338983050848,6.0508169491525425,2.7584745762711864,2.9985875706214693,158.3564522330694,59.24282417372881,1.3452799780629918,6.1444072033898305,2.6368094789704957,7.614860610169491,175.98932669402313,14.640569395017794,6.067437010676157,2.530249110320285,2.8718861209964412,165.37262251211732,51.03333955160142,1.1669985359684267,6.129866192170818,2.7464632485391682,7.677518249110322,153.21131131329327,17.045112781954888,6.235422932330827,2.706766917293233,3.5601503759398496,162.4256029308457,61.13513177443608,1.2480822399383495,6.299474812030075,3.3735612178594634,7.797568285714287,169.61603139186607,16.243150684931507,6.1383654109589045,2.660958904109589,3.224885844748859,161.95301975153706,57.668654678082184,1.2497641560081951,6.211464726027397,3.0159923050904784,7.715835897260273,168.21621975150748,14.920489296636086,6.046553516819572,2.529051987767584,2.945973496432212,161.48522615639249,52.379446373088676,1.231810306631746,6.119751987767584,2.8462358893041872,7.635437180428134,162.4405820828515,14.8268156424581,5.9674882681564245,2.463687150837989,2.7905027932960893,162.68705640203734,52.410925589385464,1.2085416319706817,6.04061592178771,2.74916373543003,7.580170530726258,157.6871698030455,10.217825905872553,0.11119291961682627,0.018547003006933575,0.5510204081632654,3.5846175204775794,1.538566119996786,46.89298125780925,0.2846359768885464,0.10602891503540184,1.421746318834916,0.06687015077051224,51.83190898515616,0.5819316209005327,-0.003262974173302311,-0.012630441146444847,0.1497272176197212,0.9304584769180789,-0.16680316056046254,2.6918877688628142,0.00757087528642389,-0.001540998284543061,-0.09091893022555883,-0.003608647234444301,0.7351994597205274,0.564371718940084,0.02037759808177858,0.003058434192312169,-0.07540643375994463,0.08840347699862437,0.04155412567787647,2.5120856547930868,0.005395842738248915,0.017436241196582467,0.12431075689812285,0.014270611710751467,0.1911010482611884,-0.9001157709711349,-0.0008046889008110794,0.0010367854430492218,-0.025769629885852643,-0.2577698322497453,-0.22388385664853644,-4.330042230569535,-0.04609158390639544,-0.0018109454746962404,-0.09156243789605811,-7.118207455929752e-05,-8.48231080461963,-0.5579377513224767,-0.010388031825410792,-0.0035372406133546783,-0.00544701866511729,-0.15739372467218662,0.02020763932868847,-2.3473112135068286,-0.002870620005601276,-0.00870717416823652,-0.1251142102264947,-0.008071672377019584,1.6699343250691545,0.15320370898090713,0.0057934468094434895,0.003494190691435066,-0.03437164339419978,-0.18268582047928375,0.011047295286978695,0.5460693745369263,-0.0010816380099132503,0.0044749901356891525,0.09974308852492123,0.005652327670488299,-1.6078307587189797,-0.38088153908474204,-0.007828899488226893,-0.0014931826711444397,-0.030612244897959183,-0.13505550389012194,-0.056280444388759454,-1.767739140951543,-0.015619372744306501,-0.006547527000735947,-0.008072200870463344,-0.0046238925233777275,-1.6369315313773722,-0.377845877163822,-0.006415374837446655,0.0007443592941935078,0.005429694813705302,-0.04451197775080411,-0.038196166410037556,-1.776013854950855,-0.004827322808084794,-0.006357286751060627,-0.10240246709983743,-0.004367294002116808,-2.029869419553812,0.4424180799899483,-0.004151527529265037,-0.0008463629077377243,0.012484323338273857,0.03766677499107426,0.014929134646112579,2.1298820151926914,0.012094100341697774,-0.0024528917769365177,-0.05340902713960961,-0.004094006260194178,3.1182037961046993,,,0.4846666666666665,1.115,0.49,0.0,0.625,-0.135,1.2892474491648147,0.018738778418787162,0.02561877841878716,1.0591635554940364,0.21113635508348957,0.2684091377451852,2.348411004658851,0.47954549282867476,2.0072874921642545,1.5010897472574194,0.24387057922108532,0.18203717462107033,0.0,0.5061977449068357,7.350130210571441,2506.0,593.2766000000001,296.0,616.8888888888889,15976.794892766655,9899.247047999997,151.826739432752,600.8429000000001,400.97908093278465,746.9414579999999,20897.538495095032,2591.0,634.1370000000001,366.0,575.3333333333333,14833.575943874654,9799.489236999998,186.68717452599998,649.271,294.8364197530864,780.401404,26097.293299557765,3781.0,1093.0575,582.0,759.6666666666666,27440.510233612695,13991.808480999998,277.31169446497995,1112.6286,495.537037037037,1361.6148560000001,37386.886455056185,3946.0,1427.9928,651.0,707.6666666666667,37372.12272700438,13981.306505,317.48607482286604,1450.0801,622.287037037037,1797.107104,41533.48109978946,4114.0,1704.9498,711.0,807.0,46469.70692590497,14340.368413999999,327.92658860712794,1722.4923999999999,771.7561728395062,2157.3826280000003,43052.37847903541,4534.0,1658.6225,720.0,947.0,43205.210379604956,16261.945051999997,331.989875823601,1675.6603,897.3672839506173,2074.1531640000003,45117.86435023638,4743.0,1792.4027,777.0,941.6666666666667,47290.28176744882,16839.247165999997,364.931133554393,1813.7477,880.6697530864197,2253.024082,49119.136167440185,4879.0,1977.2230000000002,827.0,963.3333333333334,52805.668953140346,17128.078963999997,402.80197026858093,2001.1589,930.7191358024692,2496.787958,53118.07034109245,5308.0,2136.3608,882.0,999.0,58241.96619192937,18763.111360999996,432.657904245504,2162.5405,984.2006172839507,2713.7010500000006,56452.00678949028,1001.3469387755102,10.896906122448975,1.8176062946794904,54.00000000000001,351.29251700680277,150.77947975968502,4595.512163265306,27.89432573507755,10.39083367346938,139.33113924582176,6.5532747755102,5079.527080545304,58.77509371095381,-0.3295603915035334,-1.2756745557909295,15.122448979591839,93.97630616872597,-16.847119216606718,271.88066465514424,0.7646584039288129,-0.15564082673884916,-9.182811952781442,-0.3644733706788744,74.25514543177326,99.89379425239485,3.606834860474809,0.5413428520392539,-13.3469387755102,15.647415428756513,7.355080244984135,444.63916089837636,0.955064164670058,3.0862146917950968,22.003003970967743,2.5258982728030097,33.82488554223035,-212.42732194918784,-0.18990658059141474,0.24468136455961637,-6.081632653061224,-60.8336804109399,-52.8365901690546,-1021.8899664144102,-10.877613801909325,-0.42738313202831274,-21.608735343469714,-0.016798969595994216,-2001.8253498902325,-156.78050812161595,-2.9190369429404326,-0.9939646123526646,-1.5306122448979584,-44.22763663288444,5.678346651361459,-659.5944509954188,-0.8066442215739585,-2.446715941274462,-35.15709307364501,-2.2681399379425033,469.25154534443243,40.7521865889213,1.5410568513119682,0.9294547239217276,-9.14285714285714,-48.594428247489475,2.9385805463363326,145.2544536268224,-0.2877157106369246,1.1903473760933145,26.531661547629046,1.5035191603498874,-427.6829818192486,-111.21740941274467,-2.286038650562253,-0.4360093399741764,-8.938775510204081,-39.43620713591561,-16.43388976151776,-516.1798291578506,-4.560856841337499,-1.9118778842148965,-2.3570826541752963,-1.3501766168262965,-477.9840071621927,-123.55560183256979,-2.0978275718450563,0.24340548920127703,1.7755102040816337,-14.555416724512943,-12.49014641608228,-580.7565305689296,-1.5785345582437276,-2.078832767596825,-33.48560674164684,-1.4281051386921964,-663.7673001940965,158.3856726364015,-1.486246855476883,-0.3029979209701053,4.469387755102041,13.484705446804584,5.344630203308303,762.4977614389835,4.329687922327803,-0.8781352561432734,-19.120431715980242,-1.4656542411495155,1116.3169590054824,0.720900606973892,0.6175305261434818,0.45240140832893844,0.3503463431728068,0.30446871293069283,0.20989176016292335,0.19584786694774814,0.1185540102874281,0.12727399362704683,0.0658668251887605,0.08382772016860568,0.036616806007315775,0.05366345675963305,0.02237504500193587,0.033579082574302005,0.011902872837634406,16.005573003335563,5.6940414761197475,3.556790605810795,2.1940208204708793,0.497863217753327,-0.47208143767468014,3.161476704112613,0.9772012767176835,6.029118159016732,0.6495408854642896,14.551695436790181,10.311218033158081,32.063280082452344,11.705057822864255,2.937962943202545,0.7403820813631319,3.5030513422792464,2.2440144005305585,7.010464224867349,0.609493206324811,3.7157463979889225,2.4400108470535495,24.441895855690273,14.700432932567978,0.2363928992090395,0.5690839372627016,0.7720508597139016,0.8407076311378844,0.8638695743156836,0.869843082808576,1.3866038630225346,1617.4968237573792,0.0,4.0,6.0,0.0,12.0,7.0,2.0,2.0,0.0,4.99946316369031,2.7262218919713406,1.3393712343487865,0.8702470664810633,0.7119840562328283,0.6711677297022147,305.9654575493376,5081.252691042355,99.71610547234852,51.84951725553424,105.55460452455983,,22.0,1775.0,30.3227289461306,19.49013894705617,30.883903875289903,25.304305697925987,26.705601868796514,16.236695608785215,30.091840705842383,79.89120785446326,39.76579725329466,4.736862953800049,24.233333333333327,55.75,24.5,0.0,31.25,0.0,0.015333333333333456,-6.75,0.13424036281179197,0.038333930063253585,-0.09590643274853838,0.039654320987654534,0.13379249800478876,0.0,0.573129251700679,0.8353333333333336,0.438888888888887,0.5347953216374254,0.7956790123456791,64.46237245824074,0.9369389209393582,1.280938920939358,52.958177774701824,10.556817754174478,13.42045688725926,117.42055023294256,23.977274641433738,0.5802075019952112,0.15818431911966993,0.0,0.30536451169188455,0.43243243243243246,0.3612131414237856,-1.6650998340816876,-0.053732002648828894,-0.01699081463348661,-0.05045757072974811,0.6387868585762144,2.944643398178362,0.03673105248693001,0.030047381614064925,0.045302206125820955,-8.053492769998122,0.8123612446843673,0.8002106014308304,1.7705680078248518,0.995966263292996,0.6166446815092043,1.3347304703813694,0.8164675086669952,1.0270374454040496,0.7820222252267073,0.6827106117877256,0.8054927237663229,1.0284521679155971,0.9104093275954146,0.7235876734689617,0.918598520188499,1.4969135802469136,0.9705044411476816,1.1103954768549,0.9110236914937712,1.0142464041519716,0.7365671370249213,0.5939911743763081,0.6695322719488661,1.0036147669617297,1.0048160658041365,0.9685158283212003,1.0902705943025628,1.1531308851224105,1.0274017590270756,1.1937045515342795,1.0142772843003252,1.1249194493912775,0.9738856588709403,0.9634517236145189,0.9498576603295397,1.152094038825153,1.0436743057829145,1.3332044666019163,1.4979178586788864,1.0771385264267825,1.1464734065475646,0.9725481092658573,1.0406709128679177,0.9320893434721869,1.295665786779703,1.3462497953352917,1.372503830168957,0.9071346416998523,0.8275789108976738,1.3145802793717618,1.262578516935917,1.2155388471177944,1.1957263171484094,0.9814005126895807,0.8452328651123556,0.8394275004415183,1.278831442173717,1.4729207453321131,1.3396799138157085,0.9568708906717145,0.9287199614832466,1.3070473647712693,1.3636271526408839,1.1718987823439877,1.1072244534518918,1.0347007244283095,0.9385566302709892,0.9416486633761226,1.2677198819946038,1.3529492204116103,1.339143177173414,0.9776257185727504,0.8650122514877608,1.2161898456316262,1.1416564830265536,1.0739324951863178,1.0464626805509165,0.9813700992116622,0.8813107009547031,0.8769885452888029,1.1983179177476333,1.3451983993162913,1.260656953565616,0.9972416503828855,0.8570788075439147,1.1416923011923372,1.0994082771065532,1.0210790399337886,1.0173364482948126,0.9359042317686316,0.864157410701837,0.864029575815589,1.116692650695767,1.2273596223214942,1.1907046929406537,0.908453812486018,11.0,0.4995429037853281,4.666666666666668,3.1944444444444446,2.837222222222223,1.5694444444444444,1.506303854875283,1.07203089569161,0.7981859410430836,0.8215817901234572,10959.091171728322,12565.470829825903,4846.31577114369,4356.155519386588,22.1087201147448,0.4658057857745904,11.810350369225604,0.8719783430264525,0.0,0.43243243243243246,1.6152466804248982,3.8884879521438678,5.275338609766422,5.744462777634145,5.90272578788238,5.943542114412994,0.20754716981132076,0.005550476708725867,0.06572769953051644,0.04629629629629629,0.03940586419753087,0.019618055555555552,0.017721221822062153,0.012322194203351837,0.008491339798330682,0.00883421279702642,0.43151453072071694,42.7376290494838,22.39555643721484,14.98795847750865,302.0583739168022,0.0,4.812016002442165,447.6476838451361,,384.17326571395193,380.22297702187785,377.18835991722136,384.25210211621214,534.4807828904027,384.94628398505427,388.4321565153752,485.9524983959318,0.05695258720018665,-0.029345161405479825,-0.6809963389623168,0.27172717271727176,0.2595698067095632,-0.10841468455110075,0.057404918532760696,0.0265984481975319,-0.01453375509905519,-0.06394877132515772,-0.05396499324233029,0.014184302182099389,0.05523403159724215,0.18326345015492282,0.16490180063964027,-0.1368487131198995,0.024661899489585252,0.027008345717350956,0.053570610940304436,0.018956994815738766,0.1644479828050745,0.08743525849252226,0.21340779923954328,0.0036869382587455288,-0.0880926900950432,-0.007236871768310954,0.05590042998653917,-0.04676710608913998,-0.07190999619267681,-0.14551461502935223,-0.09233881306807376,-0.16193168695763047,-0.017079732204102874,-0.06440138911074596,-0.0010644820407775528,-0.16365036462478796,-0.05460435091204771,-0.09342350089563457,-0.19071763842558945,-0.009885330170027672,-0.04390809445444462,0.013134072735678518,-0.050056770769205956,-0.010085232502865618,-0.08212075135663978,-0.08800037571331468,-0.12070665736526127,0.03221826781543773,0.014993767792897648,0.05210265931866759,0.188396512909865,-0.06237816764132552,-0.0509638251321565,0.007180253837255803,0.011645012961209147,-0.0038000748244723195,0.042205375148797894,0.07015533446688162,0.08452691679859062,-0.03102009534666063,-0.03727618209523766,-0.0704082554465292,-0.08050802981949327,-0.055555555555555546,-0.03767640567469203,-0.03657980223097401,-0.037697307646806,-0.05487490694271057,-0.0617522776551076,-0.005677666095227384,-0.06914733210705915,-0.031581540472417555,-0.03697908739535877,-0.05769589340359265,0.04013366978563803,0.009853890587835545,-0.012417497123897829,-0.024825820556946456,-0.03787376718888159,-0.016959636869709572,-0.05995804775459601,-0.0720258359337646,-0.06531006662605965,-0.03916254406402694,0.04329865120677723,-0.03733625795213679,-0.04563340543058744,0.022656734947237737,0.010507892341623077,0.009703277910567644,0.045420059848252765,0.0424897108015035,-0.023134177843067857,-0.03756579245682656,-0.06122322460800422,0.060159925751484544,22.358747836572867,36.10570362516141,15.291797073435465,17.515224639825608,38.356002916229386,43.59018302292314,45.98918318793596,46.373263322674326,46.86350822063351,100.36437460821273,75.05448736287097,12.193528961054266,9.101858731053516,0.0,25.309887245341784,32310.029486426538,29672.68343656108,6658.038968553319,152.0,71.0,85.0,102.0,113.0,114.0,122.0,137.0,141.0,720.3127606360013,53.0,5.517452896464707,6.329720905522696,7.1770187659099,8.005367067316664,8.85352256068954,9.688374172917182,10.537388847885364,11.375787576751595,12.225625241571144,0.6530612244897959,0.9751020408163266,1.1285551659097783,0.6124895716341653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6733842356104116,0.9625850340136057,1.0009587228919246,0.6173444256595374,13.0,2.0,0.0,0.0,2.0,0.0,5.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,5.0,0.0,0.0,0.0,1.0,5.0,3.0,1.0,0.0,6.0,1.0,0.0,0.0,0.0,30.693665891510225,12.648722793660879,0.0,5.907179729351506,0.0,9.77851570501903,14.573052889090853,0.0,22.673571755869474,88.35861948337859,36.30727389833341,30.584325200065535,39.77980178182875,398.15997430286626,-1835.415246899473,-59.22800236328966,-18.728727009178296,-55.61864384543858,704.1254318522039,3245.837444142882,40.48810310905885,33.120790246355945,49.93596067912126,0.5,0.8568949213414423,0.09626679432335478,81.42913358669101,0.08835939181744853,34.48890443456787,0.14310507865855768,11.0,0.32075471698113206,0.2441901033439745,0.5878546517959922,0.7975162530310591,0.8684376054294686,0.8923635241738915,0.8985340633951887,5.905200000000005,,3.357142857142857,2.493397615360557,2.043367451597809,3.3520463712524706,-7.672286368717702,2.283965728274174,2.2267641680864436,-3.595762409407765,196.89689999999945,24.22700190085622,0.0,30.818232584763884,5.917906046161393,90.25644695931959,7.04767198267719,104.45671816910901,0.0,0.0,4.672828834461906,0.0,5.968707559985366,3.044522437723423,7.422373700986824,5.209486152841421,8.945202263959297,7.1252830915107115,10.505533184565781,64.0,24.48877287516343,8.636781598064815,0.0,0.0,2.9499528922081164,0.0,4.494728293226254,0.0,95.56,0.0,40.02748226606877,0.0,0.0,0.0,0.0,0.0,-1.4069087251459844,110.59840625915828,15.950365812018994,9.589074368143644,0.0,69.28308933808296,35.524681754149384,5.917906046161393,66.73927833664641,77.75111630031248,0.0,0.0,0.0,60.0239780201482,65.99165508982034,62.887928785717065,895.2953676902722,,768.9909766518449,760.3462181391412,754.2949851363788,769.1510198980166,1071.2228246831678,769.8012093409776,776.7752424640269,972.6241492737453,62.887928785717065,895.2953676902722,,766.0366909375596,757.9525564283954,752.3333523828453,766.2012190913143,1076.7468708686447,767.6086022418342,774.6375488626638,975.5007592012719,4.680547878817663,634.7826897591465,,553.0338024423404,544.7551760775959,538.5238391644475,553.1511522489955,775.0340483346068,551.9913875779805,557.5686349264249,704.4966861046962,1.2577585757143412,17.905907353805443,,15.379819533036898,15.206924362782825,15.085899702727577,15.383020397960331,21.424456493663357,15.396024186819552,15.535504849280537,19.452482985474905,2.345555221272282,447.6476838451361,,384.17326571395193,380.22297702187785,377.18835991722136,384.25210211621214,534.4807828904027,384.94628398505427,388.4321565153752,485.9524983959318,94.33333333333336,0.0,9.579335123683977,0.0,0.0,0.0,11.663745795361784,98.0939548434086,1.2865278648110912,8.868147818011085,5.424978507101565,0.0,-3.0283451901894,1.5148008816344953,0.0,0.0,0.0,60.499753714634664,944.5427664030686,158.29417468164002,381.07181931009904,516.9831837571094,562.9573522081462,578.4671272124732,582.4671272124734,1140.0,182.71025803502877,157.7426397520015,102.89393722603472,202.26,145.77999999999997,1.0,8.003195876484611,6.727920454563199,5.967333711946901,6.950658455247943,,6.966698608118549,6.962597584475451,6.961170173585507,6.966698387694119,6.952940189256436,6.962806708826237,6.963212281489092,6.956761371008368,0.11934667423893802,0.13901316910495887,,0.13933397216237098,0.13925195168950902,0.13922340347171014,0.13933396775388238,0.13905880378512872,0.13925613417652474,0.13926424562978185,0.13913522742016737,3.395738125662435,3.548274309285378,,3.550579367623645,3.549990533312867,3.549785501037157,3.550579335983919,3.5486025313647573,3.5500205682542445,3.550078815002759,3.5491519582279434,554.7800000000022,728.3010581665147,401.2928583520601,,397.5624898990639,398.2833575867532,398.735099418576,397.5628650589234,400.02183455135133,398.24106505732385,398.1506347676728,399.07187194414934,14.566021163330294,8.025857167041202,,7.951249797981278,7.965667151735064,7.97470198837152,7.951257301178469,8.000436691027026,7.964821301146477,7.963012695353456,7.9814374388829865,8.200152416583613,7.604129393266683,,7.5947900414659575,7.596601618135265,7.597735197605669,7.594790985115552,7.600957044430679,7.596495425460523,7.59626832542907,7.598579443288307,5.424978507101565,50.97752074868347,23.4906276799991,4.35270225484641,-0.2767656664093323,16.786174487031726,0.8361452993284635,8.282283762480287,1.6763800347301996,668.1578574112519,438.8859289891272,-2023.151440891794,-65.2861626407722,-20.64440245807953,-61.307619420963455,776.1471876333206,3577.839245430371,44.62944518001729,36.508563728881356,55.04368069892879,10769.0,69.0,3.3881876658244887,2.1123926516497806,0.0,0.0,0.6834922718839832,0.3280002226211382,0.0,0.0,0.0,0.0,0.0,0.0,0.2621886974951644,0.17034403442173718,0.45756093292520783,0.23024499824300731,0.44881415929900165,0.22027518913331076,36.0450303486946,30.876526307174093,23.977274641433738,18.56835618815876,21.61727861807919,14.902314971567558,16.64706869055859,10.077090874431388,12.981947349958777,6.718416169253571,9.472532379052442,4.1376990788266825,6.117634070598168,2.5507551302206894,4.096648074064845,1.4521504861913976,6.842575954593686,3.6989175794551024,9.180206993458734,4.010096677174887,12.579526854056251,4.409391407555657,164.78274187622722,71.28056963282117,44.97401879094786,34.87914157343386,33.2261968477695,32.09606382472088,248.0,280.0,110.20606399999998,63.1139360000001,0.3979591836734694,359.13,17.166666666666668,11.138888888888886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,22.0,98.0,0.0,0.0,101.0,22.0,3.0,13.0,88.0,25.0,53.0,76.0,0.0,0.0,0.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.0,9.0,4.0,2.0,50.0,13.0,0.0,6.0,5.0,0.0,4.0,17.0,2.0,0.0,0.0,2.0,4.0,4.219507705176107,6.310486298690526,4.705015520957808,5.104429173382616,5.522959793985982,5.745803749751938,5.662960480135946,5.802873377300432,6.040849772288725,6.116305947131812 +110635,CN1CC(=O)N2[C@H](Cc3c([nH]c4ccccc34)[C@H]2c2ccc3c(c2)OCO3)C1=O,0,25.291666666666668,6.390306250000002,3.9791666666666665,9.333333333333334,159.96742821001524,100.11616727083333,1.5834637748360627,6.459879166666667,4.6469907407407405,7.865707083333333,239.65559604573764,27.528301886792452,6.502905660377358,4.773584905660377,8.81132075471698,145.64265455412266,105.96637,1.8733454694339624,6.648415094339622,3.1656184486373165,7.878785660377359,283.15138426543245,24.431578947368422,6.534557894736842,4.494736842105263,7.631578947368421,153.40991171602207,92.72042812631578,1.6714594898220418,6.639166315789473,3.1242690058479536,7.956600757894737,249.28222045009633,21.357723577235774,6.370388617886179,3.991869918699187,5.943089430894309,153.39358863217436,79.21971450406502,1.5738654849519838,6.475901626016259,3.095980126467931,7.825336260162603,226.73749908508006,18.40972222222222,6.28851388888889,3.548611111111111,5.055555555555555,156.89493272690618,66.70526873611111,1.414726557290875,6.377857638888888,3.080825617283951,7.799092444444444,200.16471190743528,18.09090909090909,6.222769230769231,3.370629370629371,5.328671328671328,158.31982822678168,65.98748865034965,1.385935400732014,6.306648951048951,3.2806915306915307,7.7416273286713295,194.64336893873917,18.574468085106382,6.188864539007092,3.3049645390070923,5.574468085106383,157.6284729507165,68.44302591489361,1.3775268403916667,6.27667659574468,3.1018518518518516,7.705511716312056,194.7450480419058,18.204545454545453,6.2787651515151515,3.0757575757575757,5.015151515151516,159.16286623967486,66.55071384848483,1.3137901013145985,6.354588636363636,3.3232323232323235,7.811612121212121,187.60160121293532,16.946902654867255,6.4127168141592925,2.7079646017699117,4.265486725663717,159.14543546516984,59.71613715044248,1.255473364598593,6.476613274336282,3.5486725663716814,7.950355539823009,175.8053280941853,7.229166666666667,0.13926453993055551,0.026820950897338807,0.6940104166666666,4.270833333333333,1.5372103480007795,34.299792739149304,0.22638114381067664,0.1283651041666666,1.5356867283950617,0.08881291493055553,48.1120750728476,0.5247641509433962,-0.0032477160311844637,-0.013149114963109188,0.26157134433962265,1.0955188679245282,-0.29924233361848496,2.486771492768926,-0.014279876761756054,-0.00012272995283018747,-0.05199962147682272,-0.004759062729297703,0.4021548421239457,0.30723684210526314,0.002955525858918158,-0.0018370169618813163,0.014761513157894738,-0.07171052631578947,0.14718182088098278,1.5174915516401628,0.02924314311575711,0.0024576151315789606,-0.006118014944769345,0.003242507876461976,4.778975386826826,-0.7992886178861789,-0.0029956036161923978,0.004625530765460401,-0.1055957825203252,-0.720020325203252,-0.0031983826664195776,-3.8431102733634006,-0.021441662982922247,-0.0045928480691056735,-0.10256229298404096,-0.001159507071476967,-5.776954421255078,-1.1579861111111112,-0.026942910879629613,-0.0038009026777558203,-0.051215277777777776,-0.6788194444444444,-0.14392673090223906,-5.422696410445602,-0.016702393168059753,-0.0249501736111111,-0.25708912037037035,-0.01606899942129629,-4.927401518938644,-0.016171328671328672,0.0012681523771367505,6.72171383325473e-05,0.01417722902097902,0.24256993006993008,0.03331875598310684,-0.06974080194068137,0.006382550166975593,0.0007812827797202794,0.10942626046792711,0.0016802954424048205,0.6741347734037461,0.8284574468085106,0.015821349549349863,0.0031085560777024106,-0.04285793439716312,0.5997340425531915,-0.04247803325864867,3.853550634816416,-0.006952901041971122,0.015697839095744667,0.06873440372997114,0.007250222776300238,1.3446821270596645,0.3996212121212121,0.001300785195707073,-0.0022366400452697452,-0.1201467803030303,-0.23484848484848486,-0.030948469288909,1.8736553541272096,-0.0057230958775057175,0.0028683238636363555,0.027076318742985384,-0.0005000531881313173,1.053771143219416,-1.9618362831858407,-0.011412696272738417,-0.0002840610418546453,-0.11805171460176991,-0.8667035398230089,-0.17280441460777873,-9.428984088891195,-0.05302815513220265,-0.013836490597345106,-0.07558143504861799,-0.0029408832196411113,-13.73506488379182,,,0.46666666666666673,1.293103448275862,0.5862068965517241,0.0,0.7068965517241379,-0.1206896551724138,0.863237851429052,0.010345517987705773,0.028138621435981635,1.0425130540419623,0.260847882677497,0.22584844631317985,1.9057509054710142,0.48669632899067683,2.1174226820964615,1.6283943314855456,0.22504110168919114,0.2639872489217246,0.0,0.48902835061091565,8.10703241850001,1214.0,306.7347000000001,191.0,448.0,7678.436554080732,4805.576029,76.006261192131,310.0742,223.05555555555554,377.55393999999995,11503.468610195407,1459.0,344.654,253.0,467.0,7719.060691368501,5616.21761,99.28730988000001,352.366,167.77777777777777,417.57564,15007.02336606792,2321.0,620.783,427.0,725.0,14573.941613022096,8808.440671999999,158.78865153309397,630.7207999999999,296.8055555555556,755.877072,23681.81094275915,2627.0,783.5578,491.0,731.0,18867.411401757447,9744.024883999999,193.585454649094,796.5358999999999,380.80555555555554,962.5163600000001,27888.712387464846,2651.0,905.546,511.0,728.0,22592.870312674488,9605.558697999999,203.720624249886,918.4114999999999,443.6388888888889,1123.0693119999999,28823.71851467068,2587.0,889.856,482.0,762.0,22639.73543642978,9436.210877,198.188762304678,901.8507999999999,469.1388888888889,1107.0527080000002,27834.0017582397,2619.0,872.6299,466.0,786.0,22225.614686051027,9650.466654,194.231284495225,885.0114,437.3611111111111,1086.477152,27459.051773908715,2403.0,828.797,406.0,662.0,21009.498343637082,8784.694227999998,173.420293373527,838.8057,438.6666666666667,1031.1327999999999,24763.411360107464,1915.0,724.6370000000001,306.0,482.0,17983.43420756419,6747.923498,141.868490199641,731.8572999999999,401.0,898.390176,19866.00207464294,347.0,6.684697916666664,1.2874056430722627,33.3125,205.0,73.78609670403742,1646.3900514791667,10.866294902912479,6.1615249999999975,73.71296296296296,4.263019916666665,2309.379603496685,27.8125,-0.17212894965277659,-0.6969030930447869,13.86328125,58.0625,-15.859843681779703,131.7988891167531,-0.7568334683730709,-0.006504687499999936,-2.7559799382716044,-0.2522303246527782,21.31420663256912,29.1875,0.280774956597225,-0.17451661137872504,1.40234375,-6.8125,13.982272983693363,144.16169740581546,2.7780985959969255,0.23347343750000127,-0.5812114197530878,0.3080382482638877,454.00266174854846,-98.3125,-0.3684592447916649,0.5689402841516293,-12.98828125,-88.5625,-0.39340106796960805,-472.70256362369827,-2.6373245468994364,-0.5649203124999979,-12.615162037037038,-0.14261936979166695,-710.5653938143746,-166.75,-3.879779166666664,-0.5473299855968381,-7.375,-97.75,-20.725449249922423,-780.8682831041667,-2.4051446162006043,-3.592824999999998,-37.02083333333333,-2.313935916666666,-709.5458187271647,-2.3125,0.1813457899305553,0.009612050781554263,2.02734375,34.6875,4.764582105584278,-9.972934677517436,0.9127046738775098,0.11172343749999997,15.647955246913577,0.24028224826388933,96.40127259673568,116.8125,2.230810286458331,0.4383064069560399,-6.04296875,84.5625,-5.989402689469463,543.3506395091147,-0.9803590469179282,2.213395312499998,9.691550925925931,1.0222814114583336,189.6001799154127,52.75,0.17170364583333364,-0.29523648597560637,-15.859375,-31.0,-4.085197946135988,247.32250674479167,-0.7554486558307547,0.3786187499999989,3.574074074074071,-0.06600702083333387,139.0977909049629,-221.6875,-1.289634678819441,-0.032098897729574916,-13.33984375,-97.9375,-19.526898850678997,-1065.475202044705,-5.992181529938899,-1.563523437499997,-8.540702160493833,-0.3323198038194456,-1552.0623318684757,0.6792393674100089,0.5463756247972982,0.41512333943322444,0.2843430647931026,0.25768542591767296,0.1498707311591627,0.15985062911489537,0.07904571358319847,0.09798238019778639,0.04205524363280977,0.06034171479347354,0.02260791593578368,0.03693798690810655,0.012102598284958096,0.0230249834630048,0.0064772911639037825,8.024117125091827,5.674936732794062,3.5463565422222723,2.174475307389776,0.49233290736279184,-0.48689884628593494,3.2813208621120107,0.977245134670534,6.023732623051025,0.9969640937902267,14.548771630067481,10.935740404053321,16.012273300450254,11.686295487153629,2.0157052746526882,0.7508176346658838,3.491777765894063,2.224323766049992,7.009358433089752,1.2387274163158093,3.7045995514337626,2.4202309024765563,20.91632665983405,14.701777588325283,0.2676865405045755,0.6253344770233228,0.8036063143029156,0.8933591370644276,0.9003570028543044,0.9003570028543044,1.3392014592725807,1184.014141782871,0.0,2.0,1.0,0.0,11.0,3.0,3.0,0.0,0.0,3.991104288908586,1.8615982648711817,0.8001327490951402,0.26572682296173866,0.2240601562950717,0.2240601562950717,187.82634294969603,1643.981521687303,75.27293310904169,34.249615035152146,68.90400279763234,,10.0,533.0,6.041840829147961,9.589074368143644,31.193898999863375,17.919845289493818,27.72375591032351,4.899909730850478,11.947581713527669,36.39820241076966,11.050345589408819,9.473725907600098,13.533333333333335,37.5,17.0,0.0,20.5,0.0,0.03333333333333328,-3.5,0.17990620490620501,0.07464157706093222,-0.1052646278452728,0.01823754789272025,0.1631180461329711,0.0,0.6305555555555555,0.8471264367816087,0.4506493506493505,0.5559139784946233,0.8288888888888885,25.033897691442508,0.3000200216434674,0.8160200216434674,30.232878567216904,7.564588597647413,6.549604943082215,55.26677625865941,14.114193540729628,0.5508819538670289,0.08620689655172412,0.0,0.4655172413793103,0.2727272727272727,0.341212209770584,-0.948444872479436,-0.07540902492080616,-0.019759268176654916,-0.05927780452996475,0.658787790229416,1.8311885794334608,0.05186196938985337,0.03814976207153044,0.05722464310729565,-4.461396556543503,0.6618998423141753,0.7280450637299006,1.5211844611247467,0.6388898722078657,0.4866543948458352,1.3122670137543861,0.6666763122053446,1.037380660371176,0.68968468584681,0.5378567213277937,0.7636102308400372,0.8751140510446757,0.8091157288032762,0.9007799874172561,1.2364663597520007,1.1212797472104277,0.942413350449294,1.0097653891431055,0.8078346198254361,0.8155671046647962,0.882770264282232,0.5972451226042748,0.8844727693712467,0.7896005062612661,0.9734542302195356,0.8610753894259546,0.7900877789585197,1.2789700880123247,1.0559389252429108,1.0654080074806331,0.9772982560924428,1.059830642357553,0.8682069555489295,0.9640442278056746,0.8419883080527328,1.0475244123257763,1.1019152257444764,1.1459746113766256,1.0367218648478176,1.1512403585574316,1.1105182926829267,1.102159173211788,1.10015281863555,1.0430011488430375,1.1424332855908235,1.3998725557928233,1.1322761237392767,1.057460731903948,0.9637552649080027,0.8983162966797853,0.8356263346636537,0.996496936459413,0.8874125874125874,0.9800138660804226,0.9650169683049611,0.9469823958081727,0.9056628003641932,1.0543822463179329,0.8681206207915707,0.9662499357802,0.8453410182516811,0.7596553696174878,0.7410240555790243,1.0606629143214508,0.797560975609756,1.0144019796680843,0.8498304969770838,1.016271767341764,0.7594683675442903,0.9206757944981787,0.7707503282248722,0.9657791224649351,0.9481268011527377,1.0429158861664072,1.0887680639429693,1.14366933879129,1.0898928307464892,0.9820410157561017,0.9472918725782179,1.0037385087574908,1.0264576250492887,1.0983045186191775,1.0719295202149777,0.956695645996104,1.290339445563745,1.308817557512416,1.1972673930589408,0.9551544936824453,1.2417008417871789,1.056374320578257,1.2885413997025874,1.2020848270197666,1.314689397985134,1.2790567512197184,1.318205886144833,1.2307370167931944,5.0,0.020000000000000004,3.7777777777777795,2.770833333333333,2.336666666666667,1.4725000000000001,1.111065759637188,0.6536635487528344,0.3716380070546737,0.14313271604938269,6391.568276098917,6967.835067556336,2937.074900544338,2744.7378976827763,12.164914107657856,0.4207746352812064,7.046226810780919,0.7264437314230655,1.0,0.2727272727272727,1.5938582118125701,3.7233642358499743,4.784829751626016,5.319235677759417,5.360902344426084,5.360902344426084,0.14705882352941174,0.003333333333333334,0.07264957264957268,0.04947916666666666,0.0432716049382716,0.027783018867924524,0.020575291845133112,0.013617990599017384,0.010930529619255107,0.00954218106995885,0.39824151311854505,19.66782006920415,7.548816568047338,3.111111111111111,166.35116773240372,1.0,4.354240304428613,136.47551409222953,,107.19016142291079,105.47853366336224,105.41092766093719,107.2087415741684,142.4767688720807,106.54665548726442,107.28422744526142,128.46290476956793,0.07258985373280409,-0.02332048081158307,-0.4902553609467237,0.3768982972848597,0.25651173492867,-0.19466583347403618,0.07250106470557648,-0.06307891426548479,-0.0009561005977982725,-0.03386082624492514,-0.05358525539916016,0.008358709149730786,0.04249962080994994,0.02122238626136945,-0.06849186551635596,0.02126987261775452,-0.01679075738125802,0.09574605132758848,0.044242003535727464,0.1291765852204248,0.019145508022087088,-0.003983895173179788,0.03650941846686772,0.09933006172755734,-0.11056441976523512,-0.02151016775473613,0.17245961126304993,-0.15215302246831097,-0.16859012492563952,-0.0020806408638734688,-0.11204470833367247,-0.09471488049752937,-0.03577956874589853,-0.06678594734697504,-0.01305561327858237,-0.12007285930835572,-0.1601825168107589,-0.19346569408885236,-0.1417139419219081,-0.07379612257661038,-0.15894308943089427,-0.09362852070923353,-0.1580970605765851,-0.07377996632982835,-0.1943688183255498,-0.16740987313151612,-0.18093088639035146,-0.10241506963642602,-0.002236956127446041,0.009106068046963834,0.002506142999546546,0.020427977276007293,0.05679686167491046,0.021674818951381365,-0.0020332718180270572,0.028193824183136658,0.006086410982114562,0.07125558777361313,0.018919494351904508,0.014011758428274464,0.11459930099944816,0.11360644681868913,0.11590029337889149,-0.06175402179553711,0.14042553191489363,-0.027633194971588317,0.11234909388878105,-0.030713251664572637,0.1222905492707965,0.04475808930237035,0.0816347800538843,0.027948953043984284,0.0552790149331936,0.009340390571467164,-0.08339152678929315,-0.17311956336346582,-0.054988913525498895,-0.02013287858044871,0.054625850610130526,-0.025280797601641074,0.022345043711507317,0.017631407657786237,-0.005630410718106912,0.021902425568298117,-0.27137792966259466,-0.08194976465961383,-0.010591013083090578,-0.17010078201530826,-0.20293546298294843,-0.11241429309431834,-0.2748991564059535,-0.2342428094477263,-0.10779012479419711,-0.0492167013304906,-0.03311323833859797,-0.28548061714227124,9.720536260321003,29.149256258302657,17.963528105782135,15.010972617001961,35.76185371810416,42.33658769658555,45.041435536794694,45.083435536794696,45.083435536794696,61.40525778079738,47.223435613080824,6.526191948986543,7.655630218730013,0.0,14.181822167716554,5673.157017706521,3406.8825288114213,2778.337844403909,467.0,52.0,78.0,115.0,160.0,204.0,272.0,351.0,407.0,389.13755608800045,34.0,5.153291594497779,6.07073772800249,7.007600613951853,7.943427767876373,8.888066854754783,9.831937843696052,10.780808739711565,11.729012175249165,12.68036394456819,0.7083333333333334,1.0000833333333332,1.1178127229440304,0.6754416090805649,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6975682010978043,0.9867647058823531,1.0155529254673463,0.6725094010787708,7.0,0.0,1.0,0.0,0.0,2.0,5.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,24.25752389024826,6.041840829147961,11.49902366656781,18.607301764802838,0.0,9.589074368143644,0.0,0.0,0.0,24.26546827384644,29.32600418877882,30.065346532532722,12.586597235060536,201.80594943225265,-560.946567836932,-44.599781116084884,-11.686386829936083,-35.05916048980825,389.6322923819487,1083.034953850371,30.673151992956807,22.563228205216067,33.844842307824095,0.5,0.7723037898729893,0.16318535378782179,156.82641269015443,0.08831081135125445,47.883023193311665,0.22769621012701063,5.0,0.029411764705882353,0.2853838699197647,0.6666766760509487,0.8567344455774191,0.9524210193125868,0.9598815289688802,0.9598815289688802,2.2112999999999996,,1.4285714285714288,1.6998604001861328,1.3682854998861487,1.4245628518413376,-5.883722511902063,1.51843635250918,1.414768180212008,-2.553951796962389,104.68170000000005,19.06280027574374,0.0,14.783797982648164,0.0,18.504503281221933,20.38537069468959,59.28540045747372,0.0,11.49902366656781,4.23410650459726,0.0,5.6240175061873385,3.044522437723423,7.21890970761906,5.41610040220442,8.913146539151807,7.544861068658458,10.662633125602696,34.0,13.80882008126687,0.0,3.5211118197278912,0.0,0.0,2.108992294448644,4.318881592760562,0.0,48.004,0.0,26.103258666120766,0.0,0.0,0.0,0.0,0.0,-0.07375238830099895,53.65501070131346,9.473725907600098,0.0,11.49902366656781,53.025368965188726,16.00989599106965,0.0,22.862671807390413,42.46456947923127,0.0,10.902924932081056,0.0,32.42119723586712,33.483273652694606,39.19209350454583,272.9510281844591,,214.38319729267076,210.9857079670255,210.95098498488028,214.42037582923197,287.42204288195506,213.11109749645806,214.5694018089186,257.9826171792582,39.19209350454583,272.9510281844592,,213.1516701990747,209.52031107031328,209.7714285194611,213.19230440523086,290.83726025606353,211.80210064084667,213.34977406735646,259.47976133609825,5.142525444854732,184.19964221572445,,144.95081719845507,142.69891037216433,142.47270372358213,144.9747992607916,191.72497172975756,144.09902631078813,145.07528371368466,173.33921888303962,1.3514515001567529,9.412104420153764,,7.392524044574854,7.2753692402422585,7.274171896030355,7.393806063076965,9.911104926963969,7.348658534360623,7.39894488996271,8.895952316526145,2.6019753596739226,136.47551409222953,,107.19016142291079,105.47853366336224,105.41092766093719,107.2087415741684,142.4767688720807,106.54665548726442,107.28422744526142,128.46290476956793,47.36470588235295,0.0,1.6923584638298743,0.0,0.0,0.0,0.0,48.74654042243262,0.7885915112524959,0.0,11.01263218078018,0.0,-0.8896489984882847,3.2754214432686655,0.0,0.0,0.0,32.280451251780995,456.7699956289252,76.50519416700337,178.72148332079877,229.67182807804875,255.32331253245204,257.32331253245206,257.32331253245206,2169.0,143.08524726230823,134.6682461852761,81.65829729174446,74.87,74.87,1.0,9.472093271713721,6.087462841250339,4.665475859445923,5.304177753438846,,5.31297430776306,5.313492951496416,5.3099072665290015,5.312957345344531,5.271378419271287,5.313122250715503,5.312945186390139,5.29345927832128,0.16087847791192839,0.18290268115306366,,0.18320601061251932,0.18322389487918675,0.18310025056996557,0.18320542570153553,0.1817716696300444,0.18321111209363805,0.18320500642724616,0.18253307856280276,2.6049005724015406,2.733205502406227,,2.734862548718893,2.7349601622947155,2.7342851081632715,2.7348593560729992,2.7270026249789625,2.7348903939302818,2.734857067523042,2.7311826969939994,270.4000000000005,266.48393334849095,197.21651004839083,,195.48281985147324,195.39521914905635,195.8611646746342,195.48524431266705,200.20161520137796,195.45915265022686,195.48723248592,197.84336619725332,9.189101149947964,6.800569312013477,,6.740786891430112,6.7377661775536675,6.753833264642559,6.7408704935402435,6.903503972461309,6.739970781042305,6.7409390512386205,6.822185041284597,6.650024691158032,6.349012898011366,,6.340183234558772,6.339735009306171,6.342116801732393,6.340195636907793,6.364035671779954,6.340062156736793,6.340205807307864,6.352186374806358,11.01263218078018,32.89979192911733,1.0984896751910642,3.9738770523641564,1.2817547713529864,12.919171082778586,0.5092379220206602,0.27935358923183573,1.6923584638298743,326.6524392555973,119.35575591985713,-331.7652518331857,-26.37801612859546,-6.9117760798580345,-20.735328239574105,230.44343796041653,640.5482889285881,18.14127508561414,13.344756019345589,20.01713402901838,1914.0,56.0,2.0970745533616135,1.0247115213761167,0.0,0.0,0.7390178648579487,0.2438445173694941,0.0,0.0,0.0,0.0,0.0,0.0,0.19641855032959654,0.06071278254943948,0.6207908118985982,0.20884313287253742,1.116785878947481,0.33883846787880356,19.697941654890258,15.844893119121647,14.11419354072963,9.667664202965488,13.399642147718994,7.7932780202764596,12.468349070961839,6.165565659489481,11.267973722745435,4.836353017773123,9.654674366955767,3.6172665497253886,7.5353493292537355,2.4689300501314517,6.262795501937306,1.761823196581829,5.889019887174029,2.4203215989886724,10.388508159377313,3.7520230660074336,17.681155914612578,5.519766037274429,92.96013566814662,48.08562836201514,30.788607740398543,24.734524221890034,24.585150784359985,24.585150784359985,172.0,216.0,55.91706699999999,28.258932999999995,0.5416666666666666,344.07,7.694444444444445,6.0555555555555545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,15.0,16.0,48.0,0.0,0.0,53.0,16.0,2.0,9.0,44.0,18.0,34.0,35.0,0.0,0.0,0.0,22.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,4.0,1.0,4.0,29.0,7.0,0.0,3.0,4.0,0.0,6.0,1.0,0.0,0.0,0.0,1.0,3.0,3.8066624897703196,8.402700829299931,4.45143608604605,5.0899084749907635,5.7184658115667615,6.290642784698189,6.695625076238298,7.209681128602997,7.702875407929989,8.006324597977063 +5394,Cn1nnc2c(C(N)=O)ncn2c1=O,0,32.2,7.37947,4.0,14.0,175.43074985752475,128.03967029999995,1.3973742714546997,7.358590000000001,8.705555555555556,8.673356400000001,231.0135235170187,32.476190476190474,7.3063238095238106,4.571428571428571,13.19047619047619,164.9263277316286,126.47892738095234,1.5776477066666665,7.36267619047619,4.788359788359789,8.54841961904762,260.0520666459756,30.757575757575758,7.324684848484847,4.363636363636363,12.454545454545455,172.61321160922108,119.9880369090909,1.452370961799879,7.338248484848484,5.087542087542088,8.598948606060604,238.2479860093323,30.571428571428573,7.467191428571429,3.7714285714285714,11.342857142857143,168.14423800355428,117.6015724,1.3918533529142856,7.488142857142857,6.174603174603176,8.753175085714286,232.0212316205704,26.823529411764707,7.719694117647061,2.9705882352941178,9.676470588235293,181.02599227253825,100.39025320588236,1.164017878647059,7.671714705882353,6.738562091503269,9.037891411764704,193.91369938826674,19.458333333333332,6.861204166666666,2.5416666666666665,5.583333333333333,170.11483931146043,69.30856216666668,1.1678450239999998,6.882820833333333,4.861111111111112,8.291496333333333,170.88414095101686,16.55,6.744244999999999,2.05,5.15,179.88722782148722,59.041759850000005,0.8932325787122499,6.709145000000001,6.533333333333334,8.250516999999999,125.30351981645728,15.333333333333334,6.870333333333334,2.111111111111111,1.0,171.3355679987333,50.80171399999999,1.005939278,6.874,5.0,8.406392888888888,145.10103815240151,7.125,6.795250000000001,1.0,0.0,181.84016459164374,14.36904,0.75397618475,6.7485,4.625,8.435664,92.05158116491369,7.2,0.19170899999999985,0.038692449522694725,0.7600000000000001,5.0,1.727367496492289,33.800231010000005,0.16252460105828995,0.17082899999999995,3.025277777777777,0.11773139999999997,35.096847030045105,0.09523809523809523,-0.027998523809523827,-0.02721412217040366,0.3542857142857143,1.9047619047619047,-0.7677929667660753,0.5107489566666563,-0.03622754802874225,-0.020159476190476245,-0.426600529100529,-0.02029823809523809,-2.507837731564026,2.272727272727273,0.03667069696969693,0.008835081541534045,0.0218181818181818,1.1818181818181819,0.3489186503445461,10.796150899090904,0.05998838134718276,0.034798272727272685,0.2955976430976432,0.020278151515151513,14.184405058157912,-0.5714285714285714,-0.02467157142857148,-0.003962249319846178,-0.13714285714285715,-1.0,-0.6361301733783353,-2.712194364285724,-0.05215211803533563,-0.01980614285714292,-0.3568650793650795,-0.018732771428571413,-7.559631699928469,-2.4411764705882355,-0.052524882352941255,0.005083147676437212,-0.1952941176470588,-1.9705882352941178,0.37290117678579504,-11.365702860000008,0.01279527272200114,-0.05082694117647065,-0.6894934640522878,-0.0285762352941176,-3.7892885840819504,-3.0416666666666665,-0.030753166666666592,-0.01692403347084464,-0.2933333333333333,-1.4166666666666667,-0.29237035656447297,-14.58182174333333,-0.08817691394005667,-0.03147816666666659,-0.3160185185185184,-0.014528666666666676,-20.741883999685864,2.3,0.10742950000000007,0.021217890698711623,-0.19999999999999998,0.65,0.3296101208959598,10.43433518000002,0.009292723843959887,0.09377750000000011,1.8461111111111113,0.07163199999999996,2.9348956265763846,-5.222222222222222,-0.12439566666666657,-0.013994188134652743,-0.24888888888888885,-5.0,-0.4834290506623563,-24.443423743333327,-0.07102432869057893,-0.11477122222222214,-1.236388888888889,-0.07383211111111108,-21.117740328112003,-8.5,-0.19612774999999988,-0.009930124619901098,0.6400000000000001,-1.875,0.08060497112708484,-39.56014580999999,-0.008672053333290151,-0.18590649999999984,-3.100972222222223,-0.10972349999999995,-21.16924966449938,,,0.4333333333333334,1.4107142857142858,0.6785714285714286,0.03571428571428571,0.7321428571428571,-0.05357142857142857,0.5007106659037691,0.0217966183637481,0.03408233264946239,0.9289339691616627,0.2954155604694482,0.17666021847916763,1.4296446350654317,0.4720757789486158,1.999531579534827,0.8847752109519371,0.8657709856436185,0.24898538293927117,0.0,1.1147563685828898,9.702761171599999,644.0,147.5894,80.0,280.0,3508.6149971504947,2560.7934059999993,27.947485429093994,147.17180000000002,174.11111111111111,173.46712800000003,4620.270470340374,682.0,153.43280000000001,96.0,277.0,3463.4528823642004,2656.057474999999,33.13060184,154.6162,100.55555555555556,179.51681200000002,5461.093399565487,1015.0,241.71459999999996,144.0,411.0,5696.235983104296,3959.6052179999997,47.92824173939601,242.16219999999998,167.8888888888889,283.76530399999996,7862.183538307966,1070.0,261.3517,132.0,397.0,5885.048330124399,4116.055034,48.714867352,262.085,216.11111111111114,306.361128,8120.743106719964,912.0,262.46960000000007,101.0,329.0,6154.8837372663,3413.268609,39.576607874000004,260.8383,229.11111111111114,307.288308,6593.065779201069,467.0,164.66889999999998,61.0,134.0,4082.75614347505,1663.405492,28.028280575999997,165.18769999999998,116.66666666666667,198.995912,4101.219382824404,331.0,134.8849,41.0,103.0,3597.744556429744,1180.835197,17.864651574245,134.18290000000002,130.66666666666669,165.01033999999999,2506.0703963291458,138.0,61.833000000000006,19.0,9.0,1542.0201119885996,457.2154259999999,9.053453502,61.866,45.0,75.657536,1305.9093433716137,57.0,54.36200000000001,8.0,0.0,1454.72131673315,114.95232,6.031809478,53.988,37.0,67.485312,736.4126493193095,144.0,3.8341799999999973,0.7738489904538944,15.200000000000003,100.0,34.54734992984578,676.0046202000001,3.250492021165799,3.416579999999999,60.50555555555554,2.3546279999999995,701.9369406009021,2.0,-0.5879690000000004,-0.5714965655784768,7.44,40.0,-16.12365230208758,10.725728089999784,-0.7607785086035872,-0.42334900000000114,-8.958611111111109,-0.42626299999999995,-52.664592362844544,75.0,1.2101329999999986,0.2915576908706235,0.7199999999999994,39.0,11.514315461370021,356.2729796699998,1.9796165844570313,1.1483429999999986,9.754722222222226,0.669179,468.0853669192111,-20.0,-0.8635050000000019,-0.13867872619461624,-4.800000000000001,-35.0,-22.264556068241735,-94.92680275000033,-1.825324131236747,-0.6932150000000022,-12.490277777777782,-0.6556469999999994,-264.58710949749644,-83.0,-1.7858460000000027,0.1728270209988652,-6.64,-67.0,12.67864001071703,-386.43389724000025,0.43503927254803876,-1.7281160000000022,-23.44277777777779,-0.9715919999999985,-128.83581185878631,-73.0,-0.7380759999999982,-0.40617680330027134,-7.039999999999999,-34.0,-7.016888557547351,-349.96372183999995,-2.11624593456136,-0.7554759999999981,-7.584444444444442,-0.3486880000000002,-497.8052159924607,46.0,2.1485900000000013,0.42435781397423245,-3.9999999999999996,13.0,6.5922024179191965,208.68670360000038,0.18585447687919776,1.8755500000000023,36.922222222222224,1.4326399999999992,58.69791253152769,-47.0,-1.1195609999999991,-0.12594769321187468,-2.2399999999999998,-45.0,-4.350861455961207,-219.99081368999992,-0.6392189582152104,-1.0329409999999992,-11.127500000000001,-0.6644889999999998,-190.05966295300803,-68.0,-1.569021999999999,-0.07944099695920878,5.120000000000001,-15.0,0.6448397690166787,-316.4811664799999,-0.06937642666632121,-1.4872519999999987,-24.807777777777783,-0.8777879999999996,-169.35399731599503,0.7351806242774248,0.514804649771912,0.4406040603520414,0.24523791925352342,0.283030997563069,0.12030272071044414,0.17725937053413673,0.0577403580820678,0.1099857569958411,0.02776160669372953,0.0700830665834235,0.013415556612072487,0.04772964384151764,0.006786940540107119,0.0334511300025037,0.00346504872611445,8.023515002048406,5.792453911073852,3.5483402022491033,2.2754835321941016,0.5023489862746493,-0.4118828976499267,3.2871593018175638,0.9727578141669297,6.023456925049631,0.9969686159697004,14.75148469078174,11.069480152718986,16.01121314030321,11.816320753668442,1.9087424590175233,0.7445777367968465,3.4948124915386463,2.320140288028154,7.009361079664621,1.449660410363108,3.7067045929861364,2.513209063041713,20.7675997668156,14.701752275103845,0.40325202702268254,0.8263447576592448,0.8476193630145811,0.8476193630145811,0.8476193630145811,0.8476193630145811,2.0741884419770735,567.1956839082804,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.4264662506490406,0.4377443751081733,0.33774437510817323,0.33774437510817323,0.33774437510817323,0.33774437510817323,18.176345310070303,599.7246921011883,58.47893299604881,29.986234605059416,61.824971316594926,,7.0,153.0,11.59692312755498,9.589074368143644,11.341105215616189,0.0,9.082497541406978,13.37499205744173,0.0,0.0,15.296045424903113,5.733667477162185,6.066666666666667,19.75,9.5,0.5,10.25,0.0,0.06666666666666662,-0.75,0.33666666666666645,0.043333333333333335,-0.2933333333333331,0.08511904761904754,0.2722524271844659,0.0,0.7766666666666668,0.9809523809523809,0.4400000000000004,0.7333333333333335,0.8958333333333334,7.009949322652767,0.3051526570924734,0.4771526570924734,13.005075568263278,4.135817846572275,2.4732430587083467,20.015024890916045,6.6090609052806215,0.44174757281553406,0.2582417582417582,0.0,0.46153846153846145,0.16666666666666666,0.47413410043141013,-0.8092899357807963,-0.10462889883579266,-0.040464496789039815,-0.10116124197259954,0.5258658995685898,0.8975899006292635,0.061808322943445244,0.04487949503146318,0.07479915838577197,0.12009230612534455,0.59375,0.8020594954306989,1.751592129529475,0.6249999999999999,0.3076190476190476,1.7179541893204942,0.5955035704946797,1.229174010903544,0.7476126920571368,0.6745630949101707,0.8213185348376131,0.8981605914934577,0.48979377104377103,0.6095475829291145,0.7729175570577926,1.0795454545454544,0.5959090909090908,0.9093638971117126,0.4883185034175212,0.5818899759475573,0.5869421610162353,0.5482146782302876,0.6020549035063429,0.48717448828801757,0.8199404761904763,1.013342394685994,1.1347416362868774,1.1249999999999998,1.007,1.4784139462640156,0.8192136576042715,1.2873090078777452,0.9772868106201441,1.0915959442265568,1.090661406266419,1.03693360013053,1.2554125816993467,1.3582388810491886,0.7829527533726967,1.0845588235294117,1.3579411764705882,0.6672625554923358,1.246380804713183,0.6989173984968734,1.3705290257577842,1.4443928338023302,1.3652053592779334,0.8698057188665537,1.3799189814814816,1.0531315257325773,1.2956069451312278,1.223958333333333,1.2033333333333331,1.129337139313102,1.3912021161755164,1.5553848181924572,1.0818920772624476,0.9609616502922905,1.005012681408698,1.610828174632902,1.0126736111111112,0.5704068405760815,0.3473875110846233,1.1562499999999998,1.083,0.45908908182725383,1.024570933176589,0.8984282014897437,0.6201340229118005,0.47364796621063276,0.47483296724578133,1.1027101095292478,1.832561728395062,1.7863489281497833,1.3464367749173456,1.3888888888888886,2.1005555555555553,1.0519445927098556,1.8276825010144273,1.4644007175768947,1.8185160469111081,1.8201573164386498,1.8275929597182887,1.6578626603988422,2.5151909722222223,2.329267600895107,1.2874776499369294,0.0,1.6268749999999998,0.466145512394368,2.5001346336952146,0.961070451941945,2.424160271382493,2.688802681112846,2.278633397717176,1.6951195867171547,3.0,0.0,2.4444444444444455,1.3472222222222223,1.0544444444444445,0.3647222222222222,0.1616326530612245,0.0,0.0,0.0,2772.4604734434824,2917.7127728961405,1484.7178903050165,1418.4937406246222,8.25583998268321,0.4599673229843318,4.4584233668614015,0.8517397975363379,0.0,0.16666666666666666,1.8954618442383218,3.8841837197791893,3.9841837197791894,3.9841837197791894,3.9841837197791894,3.9841837197791894,0.19999999999999998,0.0,0.11111111111111119,0.06123737373737373,0.06202614379084968,0.04559027777777778,0.0323265306122449,0.0,0.0,0.0,0.5122914370293573,10.515555555555556,3.8677685950413223,1.76,76.96785318779364,1.0,3.5800719899531224,40.91294760810753,,26.219197206941185,25.235898763591152,24.613842215366102,26.228272074067586,42.93520422861403,25.80828238394712,26.278115532493594,37.300555696501796,0.013227513227513227,-0.14604699732158558,-0.7033445156901077,0.46616541353383456,0.38095238095238093,-0.44448733018608283,0.015110812601119447,-0.22290501125887477,-0.11800968331182791,-0.1410120195355711,-0.17241142206104826,-0.07145478707580655,0.3156565656565657,0.19128312687300522,0.22834123066702988,0.028708133971291835,0.23636363636363636,0.20199445170358032,0.3194105654454491,0.3691033908501504,0.20370237329301638,0.09770925673964886,0.17224080844321496,0.4041504083262856,-0.07936507936507936,-0.128692817909287,-0.10240368259761262,-0.18045112781954883,-0.2,-0.3682656844418486,-0.0802418883907422,-0.32088753146135157,-0.11594133816356081,-0.11796109500636182,-0.1591144879664339,-0.21539347091369634,-0.33905228758169936,-0.2739823500875874,0.1313731164385376,-0.2569659442724458,-0.3941176470588236,0.21587831051761353,-0.3362611000095649,0.07872822107351043,-0.29753110523664406,-0.22791079520597163,-0.24272399117072938,-0.10796663816661597,-0.42245370370370366,-0.16041587336362204,-0.43739886410959833,-0.3859649122807016,-0.2833333333333334,-0.16925776197490128,-0.4314118959429363,-0.5425450262045667,-0.18426711311701527,-0.10445933951580816,-0.12340519748059293,-0.5909899536539425,0.3194444444444444,0.5603779686921331,0.5483728986004479,-0.26315789473684204,0.13,0.190816442688246,0.3087060315331264,0.05717733674440477,0.5489553881366755,0.6102286291433295,0.6084358123661145,0.0836227716998034,-0.7253086419753086,-0.6488775522623699,-0.36167749282568873,-0.32748538011695894,-1.0,-0.27986462153771013,-0.7231732746471937,-0.43700663301493564,-0.6718485867283785,-0.4086860710678544,-0.6271233597078698,-0.6016990731399289,-1.1805555555555556,-1.0230492569467267,-0.25664243909077583,0.8421052631578947,-0.375,0.04666347565921371,-1.1704105157830393,-0.053358404062040385,-1.0882607753952778,-1.02502065925994,-0.9319816123820831,-0.6031667074360604,,1.8072040072196898,3.1473451902649443,19.397722403391057,40.01563503662901,41.61553503662901,41.61553503662901,41.61553503662901,41.61553503662901,27.99344211348758,12.38685295332712,12.12079379901066,3.4857953611497963,0.0,15.606589160160457,1342.1629737083051,1046.869284126073,300.77053146487606,10.0,22.0,30.0,38.0,43.0,45.0,41.0,32.0,15.0,194.055223432,15.0,4.31748811353631,5.187385805840755,6.0844994130751715,6.976348070447749,7.878155336503324,8.776012719182917,9.678780279245736,10.578750763997512,11.481568947807082,0.8333333333333336,1.0723999999999998,1.1704535314334432,0.8082341187245026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6654119161676647,1.051372549019608,1.0651857246904588,0.6801431508243437,1.0,3.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.733667477162185,6.3273200747645415,11.341105215616189,0.0,5.907179729351506,4.794537184071822,14.179210311280823,4.681802935145185,5.098681808301038,5.213385095654868,0.0,7.04767198267719,0.0,166.5904777420953,-284.3499273959014,-36.7621274800199,-14.217496369795068,-35.54374092448767,184.7668230521656,315.3747647052869,21.71680551602891,15.768738235264346,26.28123039210725,0.42857142857142855,0.6059167595842307,0.21333355854979555,88.44483136399121,0.2063384644640005,44.078107706078235,0.3940832404157691,4.0,0.06666666666666667,0.43856857463236465,0.8987154886667355,0.9218533099827114,0.9218533099827114,0.9218533099827114,0.9218533099827114,-2.078099999999999,,1.3571428571428574,1.6854350860865517,1.6977658845024899,1.3535322290905127,-5.273679437769212,1.4845471236230112,1.3385675591103872,-2.713936725576624,44.5409,4.794537184071822,0.0,24.378542966310093,12.781339459839375,0.0,0.0,22.505528651888298,0.0,0.0,3.4339872044851463,0.0,4.77912349311153,2.3978952727983707,6.326149473155099,4.727387818712341,7.967973179662935,6.86171134048073,9.658928824466434,16.66666666666667,1.1869444444444444,10.812407407407408,0.0,0.0,0.0,0.0700000000000005,-0.05999999999999961,2.131494708994709,21.447999999999997,0.0,22.23750141723356,0.0,0.0,0.0,0.0,0.0,-0.740691609977324,23.409070628668864,11.423410875365658,0.0,0.0,30.285722695661597,7.04767198267719,0.0,10.488465178920283,11.121857258836364,0.0,5.647177220767728,0.0,16.164682374490052,13.308238323353294,17.530513791200104,81.82589521621507,,52.24659106196631,50.2533194433164,49.06975148696568,52.26522658928881,86.67054051451285,51.416571009254554,52.365796333212174,74.98881663951454,17.530513791200104,81.82589521621505,,51.29390088880066,49.09617639158297,47.94134395424885,51.31491319493499,91.14408789499728,50.384332617693175,51.42492299919014,77.31504811858025,4.814714265590924,59.17359990550899,,38.16796243916725,36.83606107014076,35.98573386151716,38.18024489551068,60.75277840544139,37.608696425320844,38.24831472084743,53.184654727191905,1.252179556514293,5.844706801158219,,3.7318993615690226,3.5895228173797427,3.504982249068977,3.7332304706634862,6.190752893893775,3.6726122149467537,3.7404140238008696,5.35634404567961,2.464563467518842,40.91294760810753,,26.219197206909456,25.235898763503045,24.613842215200826,26.228272074036155,42.93520422861403,25.80828238389856,26.27811553246374,37.300555696501796,21.02745098039216,0.0,1.443168461829176,0.0,0.0,5.021027021919879,0.0,21.303714493809174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.602863016486875,212.89327715352044,37.909236884766436,77.68367439558378,79.6836743955838,79.6836743955838,79.6836743955838,79.6836743955838,305.0,99.95898944963655,138.46402364074044,60.153156606872585,108.17000000000002,108.17000000000002,0.75,8.066083688669485,4.906890595608519,3.4218787693002746,3.686502527330167,,3.6709026484667215,3.6704908561585188,3.669299784434502,3.670904218899741,3.673024248413224,3.6707179770793603,3.670926071860887,3.673631176305631,0.24441991209287675,0.26332160909501195,,0.26220733203333724,0.26217791829703707,0.26209284174532155,0.2622074442071244,0.2623588748866589,0.2621941412199543,0.2622090051329205,0.26240222687897363,1.5666619846081091,1.6411504206321343,,1.6369098217068343,1.6367976380162652,1.636473086052103,1.636910249512427,1.637487605237448,1.63685951363541,1.6369162025133221,1.637652830869712,123.80000000000001,61.30296561432802,61.598580931356395,,62.14290851768013,62.14537640994899,62.270270169701305,62.14322662744222,62.551032524864766,62.14883245874545,62.14231677872748,62.294237273825686,4.378783258166288,4.399898637954029,,4.438779179834294,4.438955457853499,4.4478764406929505,4.438801901960159,4.467930894633198,4.439202318481818,4.438736912766249,4.4495883767018345,4.452300457093461,4.457111070066706,,4.465908945375531,4.465948657763077,4.467956344177731,4.4659140643658635,4.472454980589974,4.4660042685405825,4.465899423102048,4.468341158518702,2.131494708994709,25.90685326908541,7.143055555555556,4.595841836734695,-0.740691609977324,0.0,1.1869444444444444,0.0,1.443168461829176,136.19817514599296,58.53278059748901,-99.90842297086797,-12.916641882834318,-4.995421148543399,-12.488552871358497,64.91917222393973,110.80922606547476,7.630358167985834,5.540461303273738,9.234102172122899,277.0,22.0,1.1697339739225874,0.3702018160195503,0.0,0.0,0.4618440582188584,0.06883278513788917,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.23470804841064383,0.05177745794683934,0.5399664752729422,0.07732972973744767,10.292528739883947,7.207265096806768,6.6090609052806215,3.6785687888028513,6.226681946387518,2.646659855629771,5.317781116024102,1.732210742462034,4.179458765841962,1.0549410543617221,3.0135718630872104,0.5768689343191169,2.147833972868294,0.30541232430482035,1.3714963301026517,0.14206699777069245,3.016991473670042,0.6953376168304153,4.44920067142589,0.7967410730965788,6.510688204877216,0.8560340596152967,49.08661792480817,24.28272106297713,22.425178587067236,22.425178587067236,22.425178587067236,22.425178587067236,74.0,89.0,22.224757999999987,11.745241999999998,0.45,43.08,5.666666666666666,3.055555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,10.0,20.0,0.0,0.0,21.0,10.0,2.0,5.0,16.0,12.0,15.0,9.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,7.0,1.0,2.0,14.0,8.0,0.0,6.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,2.0,2.0,3.1354942159291497,5.954368918113037,3.855452653939752,4.55519181618185,5.182836366672891,5.674182004879911,6.087165275638224,6.349889911291933,6.541001815170804,6.117606645471386 +11272107,COc1cc(Br)c(S(=O)(=O)Nc2ccc(Cl)c(O[C@@H]3CCN(C)C3)c2)cc1OC,0,56.745098039215684,6.407841176470587,3.411764705882353,7.904247021167863,161.60927000652896,256.95684560784315,1.7817941942485882,6.531025490196078,4.510233898467176,8.02782939215686,237.3216156841568,35.943396226415096,6.486788679245283,4.037735849056604,6.216631726065689,145.62766218247546,141.580675754717,1.9387574115094344,6.668945283018868,2.760783057690815,7.994323018867924,274.7154304099842,29.64516129032258,6.568720430107529,3.6344086021505375,5.941855834328953,157.3357187056233,116.01084819354838,1.6375523770987952,6.683718279569893,3.562148767644586,8.116408150537636,230.1434623905186,32.3716814159292,6.480421238938054,3.2123893805309733,4.97334207363706,155.62565685313194,127.55502776991149,1.6344054629879734,6.621016814159291,3.1377090996273225,8.089675690265485,216.24770124628535,30.620967741935484,6.292006451612904,2.814516129032258,3.826762246117085,158.82264278180926,121.5547846935484,1.4454287616389114,6.429184677419355,3.0936753285543603,7.957657822580645,192.19837171972347,27.423728813559322,6.416772033898305,2.830508474576271,4.011927181418707,159.80360982189194,106.15166408474575,1.4432501025337283,6.532673728813559,3.337819104415149,8.069451118644068,193.36841487623596,29.463636363636365,6.3367663636363645,2.8545454545454545,4.522222222222222,156.32094247670074,112.48289265454542,1.608830174419891,6.508610909090911,3.4008500644303115,8.009562263636363,203.51019366177283,25.027272727272727,6.243326363636363,2.6,3.1336700336700334,161.20295055837258,92.77494161818181,1.4460996603102818,6.396426363636364,2.8877852600074814,7.949647709090908,182.45347342097185,23.711340206185568,6.298678350515463,2.670103092783505,2.9969453990072545,162.68822440353168,89.02973128865979,1.3480027003931032,6.421614432989691,2.938961011412328,8.003723670103094,175.08077650285296,31.153402537485587,0.15293825451749324,0.025037435664145152,0.698961937716263,4.382832602634104,1.457100595800453,158.59401098116112,0.36338577426130797,0.14995324875048055,1.5844861718562169,0.11000584390618989,53.312113114164134,1.5928053796435337,-0.006230152408725238,-0.009602088005637716,0.2244564862571,0.684479183741549,-0.3775699804681359,6.686492821650602,-0.04485988695053554,0.00020102427948613744,-0.3337234021562498,0.0012924043365033489,-1.3864143446164896,1.2760724783271942,-0.0007586846250201454,-0.0027083647928927254,0.006920415224913533,0.24720857855067357,0.2972919604739373,6.58843893576912,0.07316378006042129,-0.0004673959147226144,0.37337278620913217,-0.004906974625144232,10.766017184447087,1.644792846862847,-0.009052205584645786,0.0018409867744294186,-0.08001347337477413,0.022941948467277276,-0.06358453506912588,7.592066348701825,0.019021703488956973,-0.008332599782928938,-0.03806489057868053,-0.005471502070340591,-3.4019475530926786,2.5238586895858908,0.007719778373082307,-0.0007799839288813007,0.0017021989061279134,0.06396054889351052,-0.16511758980462346,12.321266943253834,-0.03318152284985398,0.013428787935161399,0.0068941711198018075,0.00404740419627685,1.9765205125108736,0.9266905166852385,-0.006388104966147302,-0.0023099515011589015,-0.03993900650988211,-0.4575754522744828,0.09845280969137428,4.352959720400888,0.029329830438408894,-0.004576312891391164,-0.09897599570884681,0.00026578803133080057,3.7606162470464772,-3.673010380622836,0.03561090769284541,0.004478934526523388,-0.07757156338471215,0.643611699990301,-0.1897717954041938,-18.62394464176715,-0.04896019259525236,0.023906412568592505,0.3824338351206776,0.021284808678480285,-9.612048684522696,-5.625951557093425,-0.011447274125336405,-0.0006970305088760345,0.01226800880780119,-0.10868492884953793,0.017905199790813182,-28.049837867079102,-0.04970054225509568,-0.010199345007165074,-0.15198799418939507,-0.008060964227045546,-4.429549707442159,-2.0153390646737774,-0.029701929472011154,-0.003138929202644165,0.00024970570399171325,-0.6137941004090085,0.0633938366233683,-8.892122932040419,-0.015116522113044152,-0.02822923419620527,-0.27834149168336014,-0.02359764681704502,0.613498237260819,,,0.5119868637110017,1.2672413793103448,0.6206896551724138,0.10344827586206896,0.646551724137931,-0.02586206896551724,0.9180158257731024,0.023637921701978065,0.032534473426116,1.028345221056815,0.24333286241574245,0.2300710628606621,1.946361046829917,0.47340392527640457,2.005333664342717,1.3408792097277085,0.14220976770382904,0.3221594410741641,0.1226626722540517,0.6644544546150088,9.882590834980403,2894.0,326.7998999999999,174.0,403.116598079561,8242.072770332978,13104.799126000002,90.871503906678,333.0823,230.02192882182595,409.41929899999985,12103.402399891997,1905.0,343.7998,214.0,329.4814814814815,7718.2660956712,7503.775815000001,102.75414281000002,353.4541,146.32150205761317,423.69911999999994,14559.917811729163,2757.0,610.8910000000002,338.0,552.5925925925926,14632.221839622967,10789.008882,152.29237107018795,621.5858000000001,331.2798353909465,754.8259580000001,21403.34200231823,3658.0,732.2876000000001,363.0,561.9876543209878,17585.69922440391,14413.718137999998,184.687817317641,748.1748999999999,354.56112825788745,914.1333529999999,24435.990240830244,3797.0,780.2088000000001,349.0,474.51851851851853,19694.00770494435,15072.793302000002,179.23316644322503,797.2189,383.6157407407407,986.74957,23832.59809324571,3236.0,757.1791000000001,334.0,473.4074074074074,18856.82595898325,12525.896361999998,170.30351209897995,770.8554999999999,393.8626543209876,952.195232,22817.472955395842,3241.0,697.0443000000001,314.0,497.44444444444446,17195.30367243708,12373.118191999996,176.971319186188,715.9472000000002,374.0935070873343,881.051849,22386.12130279501,2753.0,686.7659,286.0,344.7037037037037,17732.324561420985,10205.243578,159.070962634131,703.6069,317.65637860082296,874.461248,20069.8820763069,2300.0,610.9717999999999,259.0,290.7037037037037,15780.757767142572,8635.883935,130.75626193813102,622.8966,285.0792181069958,776.3611960000001,16982.835320776736,1588.8235294117649,7.799850980392155,1.2769092188714029,35.64705882352941,223.5244627343393,74.31213038582311,8088.294560039217,18.532674487326705,7.6476156862745075,80.80879476466706,5.610298039215684,2718.917768822371,84.41868512110729,-0.3301980776624376,-0.5089106642987989,11.896193771626299,36.2773967383021,-20.011208964811203,354.38411954748193,-2.377574008378384,0.010654286812765285,-17.68734031428124,0.06849742983467749,-73.47996026467395,118.67474048442907,-0.07055767012687351,-0.25187792573902346,0.6435986159169585,22.99039780521264,27.648152324076168,612.7248210265282,6.80423154561918,-0.04346782006920314,34.72366911744929,-0.4563486401384136,1001.239598153579,185.86159169550172,-1.0228992310649738,0.2080315055105243,-9.041522491349477,2.592440176802332,-7.185052462811226,857.9034974033062,2.149452494252138,-0.94158377547097,-4.3013326353909,-0.6182797339484868,-384.42007349947266,312.95847750865045,0.9572525182622061,-0.09671800718128129,0.21107266435986127,7.931108062795305,-20.47458113577331,1527.8371009634755,-4.114508833381893,1.6651697039600135,0.8548772188554241,0.5018781203383293,245.08854355134832,109.34948096885815,-0.7537963860053817,-0.27257427713675036,-4.712802768166089,-53.99390336838897,11.617431543582166,513.6492470073048,3.4609199917322493,-0.5400049211841573,-11.679167493643924,0.03136298769703447,443.7527171514843,-404.03114186851195,3.9171998462129953,0.49268279791757263,-8.532871972318336,70.7972869989331,-20.87489749446132,-2048.6339105943866,-5.38562118547776,2.6297053825451755,42.067721863274535,2.3413289546328313,-1057.3253552974966,-618.8546712802768,-1.2592001537870046,-0.0766733559763638,1.3494809688581308,-11.955342173449171,1.96957197698945,-3085.482165378701,-5.467059648060525,-1.121927950788158,-16.71867936083346,-0.88670606497501,-487.25046781863745,-195.48788927335642,-2.881087158785082,-0.304476132656484,0.024221453287196187,-59.53802773967382,6.149202152466724,-862.5359244079206,-1.4663026449652827,-2.738235717031911,-26.999124693285935,-2.2889717412533668,59.509329014299446,0.7303942688601794,0.6688440106572372,0.4428617365488946,0.37023043492063323,0.28935413537895754,0.21314338949534534,0.18180083283940746,0.1263992584522306,0.11730894531928276,0.07298520430131993,0.07493144991257504,0.03851428262735869,0.047507299624299004,0.022799624105915274,0.030783999688725916,0.0131827106812924,35.00041834005178,5.698820016452738,3.581014075389416,2.183783422452244,0.47220643008701413,-0.5282117595766544,4.043949053216693,0.9714319297697793,6.018506963603193,0.25600672662543594,14.544215470086503,10.319762311887652,79.90417865751523,11.710812270862533,3.0590393611791113,0.7608781187953058,3.537030003693852,2.2382099128994293,7.014208783731034,0.298918968046054,3.768339431433415,2.4376020916656524,26.523893643406716,14.701393878688124,0.3202522592521349,0.6168086561570926,0.7915538263359773,0.8497737488301508,0.8563860272101314,0.8629983055901116,1.5828489334556446,1002.3342841979562,0.0,0.0,2.0,0.0,12.0,2.0,0.0,0.0,0.0,3.773093310585989,2.0142952147686377,0.9779275094299456,0.6326404413037334,0.5934247550292229,0.5542090687547141,161.43883634079884,1855.1220493916799,66.05924132816693,36.3749421449349,81.73187369614537,,15.0,701.0,10.023291153407584,8.417796984328938,10.999449863266078,32.43127460410902,19.51033443475116,20.285962151016676,24.26546827384644,7.04767198267719,25.551948493251913,25.811528751632665,14.847619047619048,36.75,18.0,3.0,18.75,0.01198686371100166,0.0,-0.75,0.19852294331387205,0.06443466275399101,-0.13408828055988103,0.019830322933771183,0.14188990825688041,0.0,0.63828197945845,0.894909688013136,0.43975903614457795,0.573847316704459,0.8750793650793648,26.622458947419968,0.6854997293573639,0.9434997293573639,29.82201141064763,7.0566530100565314,6.6720608229592,56.4444703580676,13.728713833015732,0.5721100917431196,0.2838357921744708,0.056125721616420786,0.29634381013470174,0.3684210526315789,0.3835538543369043,-1.0264692268555897,-0.0564379889316174,-0.020126847585403715,-0.07331923048968496,0.6164461456630957,1.649737035313696,0.03885932877023608,0.0323477850061509,0.04458748744091071,-6.015819363552226,0.5522063805858066,0.7717068093145694,1.4173961145345313,0.9262718724702658,0.678425952057328,1.4890667603622514,0.5380097215144556,1.0909678490195291,0.6922246281320628,0.7904532564829072,0.7094028326008706,0.9463025838880278,0.6118004880709255,1.0826647428447926,1.4165480363169214,1.1613258100003547,1.0173490169910986,0.9085287297744405,0.5973393516557585,0.6638640522701437,1.017391380366313,0.6426767563705948,1.072253425446104,0.6883981122575915,0.8502422898107223,1.100582633252033,1.1422937746113604,1.2040363328368233,1.0148955217525677,1.1039087013853688,0.8486478320504627,0.9407905526883894,1.0633483662905128,0.9604623429678193,1.0948013642001313,1.0017941314526682,1.0420573025522206,0.9524582298738999,1.0105048293474586,1.040668582987331,0.976743348153341,1.1077160677642264,1.0501783778063931,1.1666297170818816,0.906035603908546,1.140796567321537,0.9676911364664049,0.9596021827413639,0.8655535614555813,1.1976027368777094,1.2010916602759543,1.069810370867595,1.1972071697306208,0.9076491579951447,0.8617355104435966,0.8798802151926892,1.1484442380197641,1.4079662582642853,1.1507380209723053,0.8779364711927893,1.3828127629497489,0.6324101008922789,0.6237999601673874,1.192244224422442,0.7778491473832356,1.1525700675663393,1.3871583991912022,1.2639517976225167,0.7514255255631267,0.8032261423522051,0.7446848744408519,1.1898455658947842,1.5624768604220656,1.0014789235426682,0.8024987669355047,0.9435943594359435,0.9490108284263112,0.9977723466571853,1.5753304569236932,1.2835238742054482,1.028321096151413,1.2997772089644588,1.0238076651568804,1.1003229765878884,1.009629881258182,1.2969253858436463,1.1457603068982785,1.0339049368854412,1.1835757940992175,0.9438203098511776,0.9802439625805499,1.0743158024447224,1.2842288450007346,1.5499079718702942,1.3219222549696037,0.9628822850050918,8.5,0.17682073257830835,4.000000000000002,3.0069444444444446,2.177777777777778,1.3508333333333333,0.8000907029478457,0.49567743764172334,0.3628039178634416,0.2806327160493828,8225.527373275556,8916.027083569916,3390.723135982214,3168.6485129046746,15.836311302061281,0.4625741439615079,8.51084315800233,0.8607217884365745,0.0,0.3684210526315789,1.8993320313855058,3.6581301272028575,4.69449783254155,5.039784900667762,5.079000586942272,5.118216273216781,0.2741935483870967,0.007687857938187318,0.08888888888888892,0.0653683574879227,0.048395061728395077,0.032162698412698414,0.020002267573696143,0.014578748165933039,0.01251047992632557,0.010393804298125288,0.5741817128072693,23.658688865764827,10.08,5.825792551554325,183.61918224007823,0.0,4.289068926421958,168.57628113751207,,111.60233503401155,128.32695708249716,132.6796691473116,111.56692614715118,186.86123784002135,128.98220334727188,128.45573110826646,165.37636551578134,0.051127814296591766,-0.04073639017511231,-0.38350924329636443,0.3211283392490193,0.15617278728148862,-0.25912416861014265,0.04216106762344809,-0.12344976090967484,0.0013405796884110072,-0.21061932131934902,0.01174850617577624,-0.026005616052914297,0.04096093442094326,-0.004960725015554341,-0.10817261117404438,0.009900990099009957,0.05640383764648004,0.2040298118954656,0.04154279783334151,0.20133914215312615,-0.003116944238402948,0.23564281774180965,-0.0446064904454419,0.20194317117748492,0.05279657157460526,-0.059188628856820025,0.07352936615093544,-0.11447472180846396,0.0052345025574303365,-0.04363771125506674,0.047871078496171345,0.05234575714369768,-0.05556798437087703,-0.024023491813808463,-0.04973828549514646,-0.06381190604483539,0.08101390166127238,0.0504764383341338,-0.031152708262303246,0.0024353241775790443,0.014593427286059231,-0.11331927958887196,0.07769061938106502,-0.09131211291169972,0.08955316438329826,0.0043510453055739355,0.03679262894186213,0.037074510782911456,0.02974604509315445,-0.041769176628183795,-0.09225990760974241,-0.057140459808692715,-0.10440176337090258,0.06756761336528695,0.02744718853802091,0.0807126544731441,-0.030518264389230172,-0.062465673394231626,0.002416126470130602,0.07053962087365366,-0.11790077748981853,0.23284499882122167,0.1788895071605693,-0.11098109810981094,0.1468483417786678,-0.13023932318135065,-0.11743157592489056,-0.13473337720712605,0.15942577281784898,0.24136142171102598,0.19348798138971068,-0.1802976495030158,-0.18058867086264346,-0.07484899158455514,-0.02783953269919797,0.017551755175517544,-0.024797873590749905,0.012288238603716323,-0.17686568170856753,-0.13677074276263881,-0.0680168325271605,-0.09592257533642089,-0.07327759999659406,-0.08308711564211664,-0.06469081707042447,-0.1942086338419262,-0.12536943658089023,0.0003572522200673521,-0.14004507040495118,0.04350683597692383,-0.05606846612320491,-0.0415991026169725,-0.18825356857174996,-0.17566672188579888,-0.21451266568318383,0.011507670610374339,5.934688055234024,16.264588814929393,7.103446844561606,31.12059918008775,47.84961830104012,53.234618514128684,54.014158074878345,54.641569839584236,55.11258944742736,58.15467626593879,38.88549708210355,4.124083263411042,9.342623791150759,3.557217495367499,19.269179183835256,8379.804676628988,8137.650399634773,2459.6688933181176,102.0,45.0,57.0,73.0,85.0,90.0,95.0,95.0,94.0,504.0121325840006,31.0,5.030437921392435,5.877735781779639,6.774223886357614,7.639642287858013,8.537583881063972,9.40943710213184,10.307785312892285,11.18310108232048,12.081874703286728,0.8431372549019607,1.0003921568627454,1.1238709657197514,0.825726743948766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7131554068333921,0.9906189926951173,1.0247133084843552,0.6591507525053583,5.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,3.0,1.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,19.110498592250625,16.748961696549983,11.49902366656781,0.0,10.023291153407584,4.722094864452088,8.417796984328938,0.0,0.0,11.600939890232516,47.59753870893738,29.694966464580784,24.929614670979955,265.876073293691,-711.539212309556,-39.122305021997654,-13.951749260971685,-50.82422945068256,427.3149096344898,1143.582837082124,26.936936306169287,22.423192883963214,30.907644245462812,0.4666666666666667,0.8447606463942591,0.18415107794396002,85.02194937481306,0.09814778484426757,4.1035379668868845,0.1552393536057408,8.0,0.22580645161290322,0.33483596819370004,0.6448970073057755,0.8275997566342479,0.8884709091501495,0.8953842987340274,0.9022976883179049,4.003400000000003,,3.636344537815126,1.9795157842504985,1.407782504292118,3.667553840710889,-5.3372930565030305,1.9591524673892249,1.9510803076321204,-2.168700285235527,116.03650000000003,22.628385845729085,0.0,4.899909730850478,0.0,17.420271486192085,39.078874741509495,39.827188171881794,0.0,17.248535499851716,4.143134726391533,0.0,5.493061443340548,2.3978952727983707,7.025538314638521,4.59511985013459,8.643825842349603,6.529418838262226,10.309385900115851,42.99999999999999,7.721658547361485,0.0,0.0,0.0,0.0,0.0,2.3068860061285306,0.0,51.02000000000001,0.0,25.912010337345833,0.0,0.0,-3.9065084351641874,0.0,0.0,0.0,57.31741925170733,18.932683725852236,5.687386274683562,17.248535499851716,53.77845297998512,10.023291153407584,0.0,6.4208216229260096,39.70003833365824,5.022633313741326,0.0,0.0,42.11206394138706,36.370925748503,36.17987237075321,337.15256227502414,,223.99387733909634,256.51739583504605,265.26224984605136,224.0054030105372,375.87453187660594,257.8292927312756,256.77690495393756,331.5005587161267,36.17987237075321,337.1525622750243,,221.10987994703618,254.67439838074378,263.95155579033116,221.096653412732,379.0597687365456,256.0052542271546,254.96038190890079,332.92143131679836,4.898995386745749,252.50677821345047,,165.97436664128153,193.4441696968679,199.3363257444256,165.94814710069843,277.34343307671827,194.31334421018772,193.24145287600362,247.56598118497467,1.2475818058880417,11.625950423276695,,7.723926804796426,8.845427442587795,9.14697413262246,7.7243242417426625,12.961190754365722,8.89066526659571,8.854376032894399,11.431053748831955,2.4500262271506683,168.57628113751207,,111.60233503401155,128.32695708249716,132.6796691473116,111.56692614715118,186.86123784002135,128.98220334727188,128.45573110826646,165.37636551578134,50.52156862745098,3.2853525279390734,4.947835202237432,6.243706223634744,0.0,0.0,0.0,52.260378732702115,2.6331168206338873,2.5622634794658605,16.387148285156144,0.0,0.017917532888602983,2.166391250150373,0.0,0.0,0.0,33.61668837777327,585.5804628130818,96.8659336006608,186.56463648734572,239.41938945961903,257.02902993405587,259.02902993405587,261.0290299340558,796.0,136.84182195908298,107.61052011509888,78.13738018803126,85.48,77.10000000000001,0.875,8.240335655047604,5.954196310386875,4.44730029660257,5.303244424146448,,5.270336218463385,5.297268785725619,5.294929955828809,5.270155699377207,5.24176086150833,5.295638374870773,5.293574381998877,5.273017998932452,0.15335518264146794,0.1828704973843603,,0.1817357316711512,0.1826644408870903,0.18258379158030374,0.1817295068750761,0.18075037453477,0.1826082198231301,0.1825370476551337,0.18182820685973972,2.5570079741481133,2.733029525759087,,2.7268048960805595,2.7319021012777465,2.73146048759736,2.7267706435831234,2.7213682211484027,2.7315942706052025,2.731204441267475,2.727313610949017,315.59000000000077,309.2074710824039,179.95039237619827,,181.57233824970098,179.895414499975,180.3297779749825,181.55784828554513,185.1907462730272,179.99373555025423,180.17235198387965,182.29693691402164,10.66232658904841,6.205185944006836,,6.261115112058654,6.203290155171552,6.21826820603388,6.260615458122246,6.385887802518179,6.206680536215663,6.212839723582057,6.286101272897298,6.7987232160347535,6.257391951988546,,6.266364869143843,6.257086388463278,6.259498011495759,6.2662850632521785,6.286097091827796,6.25763278477843,6.258624640782928,6.270347616089485,45.210570073977614,2.184896874749973,0.4257391560593222,0.3448485397245322,1.1686447137353009,7.721658547361485,0.9081688586938714,1.7428654948286186,1.0413267670732447,381.44041543497696,184.30289658353868,-493.2325659728046,-27.119229072614658,-9.671226783780483,-35.23089756948603,296.2108422293988,792.7213108967551,18.672441355147285,15.54355511562265,21.424900294506898,2361.0,46.0,2.8366558916994147,1.67960556954019,0.2041241452319315,0.05103103630798288,0.5690355937288492,0.35454222401187285,0.08333333333333333,0.01473139127471974,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.324781400830624,0.17344448709209193,0.4576130358398889,0.18846971185082512,21.181433796945203,19.396476309059878,13.728713833015732,11.47714348253963,13.02093609205309,9.59145252729054,10.362647471846225,7.2047577317771445,8.563553008307641,5.327919913996355,6.369173242568879,3.2737140233254887,4.275656966186911,2.0519661695323745,2.924479970428962,1.252357514722778,5.433093852023863,3.3653324470332406,8.740529095548329,4.841269938699344,12.292389864192243,5.800747452212874,95.27850080257444,51.22245919384561,36.56548659632192,34.195902060896906,33.0437686202784,32.179668539814514,152.0,178.0,60.73944599999999,38.104554000000014,0.39215686274509803,149.1,11.0625,6.375000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,51.0,0.0,1.0,53.0,12.0,2.0,8.0,45.0,14.0,31.0,39.0,0.0,1.0,0.0,19.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,6.0,1.0,1.0,29.0,10.0,0.0,2.0,5.0,0.0,3.0,7.0,1.0,0.0,2.0,0.0,2.0,3.6888794541139363,6.79062437439206,4.31748811353631,4.791649752930709,5.319344733740112,5.796817340623391,6.012797865044375,6.225115204940088,6.332168887161337,6.45529682895215 +68873,C[C@]12CC[C@H]3[C@H]([C@@H]1[C@@H]1C[C@@H]1[C@@]21CCC(=O)O1)[C@H]1C[C@H]1C1=CC(=O)CC[C@@]13C,0,19.05263157894737,5.8236842105263165,3.719298245614035,5.43859649122807,160.47277130342056,74.74955836842106,1.4421333183415792,5.908084210526316,3.433601364522417,7.4137096842105255,206.07175975096297,22.476190476190474,6.051587301587301,4.857142857142857,5.4603174603174605,141.0172392326509,84.37346198412702,1.899076020634921,6.221595238095238,2.2452601410934743,7.497451746031743,268.80962936745067,18.614173228346456,5.919370078740157,4.4015748031496065,4.039370078740157,147.7726676495582,68.51570481889763,1.6289839966762687,6.057618897637793,2.1447944006999125,7.42996579527559,223.65627550472658,15.525773195876289,5.87381443298969,3.6237113402061856,2.6752577319587627,152.18168730493852,55.171444835051545,1.455339001730784,5.990311855670102,2.0748138602520045,7.432156618556699,194.0550742296203,12.48015873015873,5.738253968253969,3.0357142857142856,1.8412698412698412,154.5219940357943,42.06753994444446,1.3259371282413055,5.845182539682541,1.8804839065255725,7.330796920634919,167.63092426623763,9.644827586206896,5.540068965517242,2.4793103448275864,1.4,160.70253125356658,31.39935128965517,1.0998087908308862,5.624481034482757,1.794995210727969,7.191855337931034,131.74316710124188,8.336065573770492,5.5564754098360645,2.2254098360655736,1.2008196721311475,166.08792654813888,26.473473065573767,0.9693454777155656,5.614715163934427,1.9237249544626598,7.251379442622953,114.38354527690569,9.723270440251572,5.616477987421383,2.3710691823899372,1.5974842767295598,163.39916051156095,32.00823062893082,1.0469110994669306,5.685808176100628,1.9834032145352913,7.2841643270440235,127.54417723802139,9.825,5.711416666666667,2.183333333333333,1.8166666666666667,164.56766388507003,32.18681892499999,1.0063195137375582,5.770950000000001,2.188194444444444,7.383127900000002,123.87836865076889,6.986149584487536,0.08891966759002769,0.009637306625436022,0.8827331486611264,3.266851338873499,1.334705650749057,33.40668886980609,0.2402330861950416,0.0872930747922437,1.2833478677199823,0.05476850969529084,52.96469549329004,0.6880358791716134,0.0027261135294376834,-0.004967795857787671,0.3954623400606781,1.246097700391329,0.12408160054431686,3.3198983866684153,0.023440408107523156,0.003737752275425467,0.011908018910173445,0.0005847868794793925,5.6485119078061485,0.6756821602285864,0.014205073396296402,0.0011512480954320072,-0.0026392130346586714,0.20034026217636935,0.03554843481820421,3.1627363676576388,0.007383531297065339,0.013581852683927004,0.14898049255077345,0.008763206840142205,2.7287348438604724,-0.4478967358711484,-0.007129108718622356,2.3852384203969235e-05,-0.1463432047291315,-0.5843590256161292,-0.016765014572978895,-2.106206154667736,-0.004170745384317745,-0.007185234314761366,-0.050597822503849095,-0.0039452128965930845,-1.8932586135269203,-1.464637470870158,-0.0112651145407378,-0.0008634041883128002,-0.13607483621334032,-0.530844655498395,-0.18556760235054062,-7.005698542947282,-0.03646430089978237,-0.012886474959328122,-0.06386058856530538,-0.004748315041990937,-9.941096736499452,-0.1729009456490591,0.0038806953863787966,0.00042736642387793984,-0.038752507402808306,0.06539306524023306,-0.17361318479137144,-0.9166535418569083,-0.029395439063071852,0.003658086732257104,0.04081653034414366,0.0020146576368325606,-4.683879220797777,0.3576813042096183,-0.00328118614050228,-0.00010632973437320938,0.030050860542209686,0.020537214477090063,0.12379815832252533,1.775381597407024,0.02241556448896666,-0.0022460730666182664,-0.09326891635705759,-0.002792511420916392,4.563712115581395,0.2703879858534121,-0.0004125507413021355,0.00029692681403211633,0.017299952960852943,0.09892158399972123,0.015100502120725957,1.2991387203958276,0.004064285890995527,0.00047100994790847224,-0.05411760302960496,-0.0012716464049896303,1.6940940680215315,0.06516620498614972,-0.004652123730378583,-0.000525164879416042,0.009372114496768199,0.1322714681440443,0.00011990058847379803,0.33643813063250405,0.0011407333373588985,-0.0035672853185595653,-0.11159063900003424,-0.003916276361957527,0.7751043782860197,,,0.48148148148148145,0.7962962962962963,0.14814814814814814,0.0,0.6481481481481481,-0.5,1.532092758366514,0.019436395750723402,0.041732692047019695,0.3530654996211761,0.07702022389206906,0.40036610488954444,1.8851582579876902,0.47738632878161347,2.10227666290243,1.8960690860001383,0.0,0.20620757690229172,0.0,0.20620757690229172,6.424903417894751,1086.0,331.95000000000005,212.0,310.0,9146.947964294972,4260.724827000001,82.20159914547001,336.7608,195.71527777777777,422.58145199999996,11746.09030580489,1416.0,381.25,306.0,344.0,8884.086071657006,5315.528105000002,119.64178930000003,391.9605,141.45138888888889,472.3394599999998,16935.006650149393,2364.0,751.76,559.0,513.0,18767.12879149389,8701.494512,206.8809675778861,769.3175999999997,272.38888888888886,943.605656,28404.346989100275,3012.0,1139.5199999999998,703.0,519.0,29523.24733715807,10703.260298,282.33576633577206,1162.1204999999998,402.51388888888886,1441.8383839999997,37646.684400546335,3145.0,1446.0400000000002,765.0,464.0,38939.542497020164,10601.020066000005,334.136156316809,1472.9860000000003,473.8819444444443,1847.3608239999996,42242.99291509188,2797.0,1606.6200000000001,719.0,406.0,46603.734063534306,9105.811873999999,318.944549340957,1631.0994999999996,520.548611111111,2085.638048,38205.518459360144,2034.0,1355.7799999999997,543.0,293.0,40525.45407774589,6459.527427999999,236.520296562598,1369.9905000000003,469.38888888888897,1769.3365840000006,27909.58504756499,1546.0,893.0199999999999,377.0,254.0,25980.466521338192,5089.30867,166.45886481524198,904.0434999999999,315.3611111111113,1158.1821279999997,20279.5241808454,1179.0,685.37,262.0,218.0,19748.119666208404,3862.418270999999,120.75834164850698,692.5140000000001,262.5833333333333,885.9753480000002,14865.404238092267,398.21052631578954,5.068421052631578,0.5493264776498533,50.315789473684205,186.21052631578945,76.07822209269624,1904.181265578947,13.693285913117371,4.975705263157891,73.150828460039,3.121805052631578,3018.987643117532,43.34626038781164,0.17174515235457405,-0.3129711390406233,24.91412742382272,78.50415512465372,7.817140834291962,209.15359836011015,1.4767457107739588,0.23547839335180443,0.750205191340927,0.036841573407201726,355.85625019178735,85.81163434903047,1.804044321329643,0.1462085081198649,-0.33518005540165124,25.44321329639891,4.514651221911935,401.6675186925201,0.937708474727298,1.7248952908587294,18.920522553948228,1.11292726869806,346.54932517028,-86.8919667590028,-1.383047091412737,0.004627362535570031,-28.39058171745151,-113.36565096952907,-3.2524128271579054,-408.6039940055408,-0.8091246045576426,-1.393935457063705,-9.815977565746724,-0.7653713019390583,-367.2921710242225,-369.0886426592798,-2.8388088642659257,-0.21757785545482564,-34.29085872576176,-133.77285318559555,-46.76303579233624,-1765.4360328227149,-9.189003826745157,-3.2473916897506867,-16.092868318456958,-1.1965753905817162,-2505.1563775978616,-50.14127423822714,1.125401662049851,0.12393626292460255,-11.23822714681441,18.963988919667585,-50.34782358949772,-265.8295271385034,-8.524677328290837,1.0608451523545601,11.836793799801661,0.5842507146814426,-1358.3249740313552,87.27423822714687,-0.8006094182825564,-0.02594445518706309,7.332409972299163,5.011080332409976,30.20675063069618,433.19310976731384,5.469397735307865,-0.548041828254857,-22.75761559112205,-0.6813727867035997,1113.5457562018603,42.99168975069252,-0.06559556786703954,0.0472113634311065,2.750692520775618,15.728531855955676,2.400979837195427,206.56305654293658,0.6462214566682888,0.07489058171744709,-8.604698881707188,-0.20219177839335123,269.3609568154235,7.819944598337967,-0.55825484764543,-0.06301978552992504,1.1246537396121838,15.872576177285318,0.014388070616855764,40.372575675900485,0.13688800048306782,-0.42807423822714785,-13.390876680004109,-0.46995316343490323,93.01252539432237,0.6794285371763606,0.6111259731259622,0.39058881445768373,0.3441683573873421,0.23674485000392984,0.1987049582992784,0.13878956703043055,0.11555804474735433,0.0812884567282534,0.06654019806423644,0.050071019020784424,0.03902457217216741,0.029821216005211,0.023084710715160772,0.017273198906534417,0.013168745343362064,8.029192472600755,5.714878392278764,3.5554149399121773,2.214042877276874,0.4246353181101841,-0.4923178775885989,4.118797940498562,0.9771860281789,6.029124770290982,0.9950210648920018,13.643102355476243,10.975312825994564,16.014523260594043,11.72632804679688,1.9794098749632363,0.7414620198898711,3.501518898435342,2.2638491680395267,7.009357917848,1.069061132610065,3.7144315556930754,2.459883719108093,20.88722246742707,14.700696591544233,0.20455092544536435,0.44865040317473,0.7268896552673968,0.8909660745913974,0.8909660745913974,0.8909660745913974,1.2912001640015573,827.4829214489886,0.0,1.0,2.0,0.0,2.0,8.0,1.0,8.0,2.0,4.596503603293452,3.121070155567604,1.439282456443995,0.4475399123566133,0.4475399123566133,0.4475399123566133,210.33119354610102,851.8286917527785,47.09741191851958,14.94436301320664,28.996149320434625,,12.0,571.0,0.0,9.589074368143644,22.4003370377291,24.039878661613734,48.851995099585,31.256391021773304,0.0,0.0,19.92349450621513,4.736862953800049,13.0,21.5,4.0,0.0,17.5,0.0,0.018518518518518517,-13.5,0.07330282227307389,0.007790663098424022,-0.06551215917464986,0.0,0.10079245283018845,0.0,0.529824561403509,0.7851851851851849,0.4565217391304351,0.522033898305085,0.7851851851851849,41.36650447589588,0.5247826852695319,1.1267826852695317,9.532768489771755,2.0795460450858645,10.8098848320177,50.899272965667635,12.889430877103564,0.6132075471698115,0.1282051282051282,0.11538461538461539,0.38461538461538464,0.8333333333333334,0.30526551149966596,-0.481503212176694,-0.06192289188093983,-0.008447424775029718,-0.0240751606088347,0.6947344885003341,1.0958227353606873,0.025287095995938876,0.019224960269485742,0.029616830685423978,-4.3134937401015865,0.8549358240079888,0.5875158647744314,1.407874724560259,0.892143189214319,0.494064443188242,1.088022393446254,0.8625688724081264,1.077784470633165,0.6112723624591817,0.48074187821232395,0.570800252119845,1.014558950232629,0.8598308637272838,0.5433054513045681,0.7753233863644917,1.542384607781768,0.94009249409115,1.0791884649650534,0.8679529820602562,1.0733714780222487,0.5767893608003373,0.39409400165453184,0.5097542274438909,1.020495298428044,1.0423953061852944,0.9784457933219854,1.009980051763108,1.488741750420567,1.2006142441707996,1.0698352706981082,1.043763802078981,1.070541290587764,0.9868126024565941,0.7546624166432494,0.9675570655945578,1.0664147810416125,1.1610274032954444,0.8893850236529361,0.9343872102165203,1.1549279404927943,1.0161736071854783,1.1665284353027847,1.1650476499573452,1.181906040425626,0.9354653770319783,0.5882695837261127,0.8160875452727656,1.2075182584811313,0.955065766086029,0.620828588820854,0.6233758642927003,0.8788630789207907,0.7736145494239879,1.090572654112168,0.962090622734386,1.0951444093955567,0.6653091157703622,0.550526313734053,0.5619914864927393,1.0766496470565432,0.9250399760793541,1.0346934953951956,0.7756332365619348,0.8278860004115509,0.9484241351509143,0.817349106547023,0.921714522281764,0.822897497073677,1.0261021698806958,1.1825739120862042,1.038597235797125,0.8535289475451011,0.9370853054961205,0.9780625273483674,0.9383490266052493,0.8749769742901504,0.9438157506461741,0.9252734758686434,0.9363015693801835,0.9241778332237961,0.9721535801870695,0.9565090163314695,0.9864451034763342,0.9245802295523917,1.0066701912062734,1.2991554170993422,1.4046727624988835,0.7466178521617852,1.0325230827209346,0.9241803080092799,1.0011054581790282,0.9161570212746059,1.2568060879670766,1.2726242542744932,1.3594313744081752,0.918322232607051,8.0,0.04601367207427813,5.944444444444446,4.527777777777778,3.122777777777778,1.65,0.9495691609977324,0.4679350907029478,0.29378464348702443,0.16564043209876544,5609.573792017516,6584.168565518028,2626.060594242005,2334.0624769841797,11.783447491430769,0.47683867233961547,6.164644034033349,0.9114562700421162,1.0,0.8333333333333334,1.2363864108712896,2.711819858597137,4.393607557720746,5.385350101808128,5.385350101808128,5.385350101808128,0.24242424242424243,0.007668945345713022,0.11431623931623935,0.07302867383512543,0.05384099616858238,0.0358695652173913,0.029674036281179136,0.017997503488574918,0.015462349657211808,0.012741571699905032,0.6030241234341649,16.760330578512395,4.830558858501783,1.8488888888888888,160.8390879816571,1.0,4.372384098685078,117.68657987848755,,109.21905243894248,108.80969810205022,110.10936914558678,109.22749938668208,121.03291527250961,109.11883776859034,109.23636575866081,117.09459698652417,0.09848570673312941,0.03065816149928361,-0.5154755421681846,0.44799760908547537,0.38143691620232034,0.09296551675995408,0.0993782532476313,0.09757360436393947,0.04281842842999019,0.009278870686347447,0.010677429105391089,0.10664673619282385,0.09671739089711326,0.1597517600019627,0.11945745218829966,-0.002989819787170859,0.06132518483239345,0.026633913476168992,0.0946737457274974,0.03073486426874091,0.15558911994166347,0.11608738074693242,0.16000447864835168,0.05151988165788981,-0.06411210216077896,-0.08017471175771561,0.0024750052199247192,-0.16578419531553287,-0.1788753037711328,-0.012560832842484871,-0.0630474382802836,-0.017361244657747018,-0.0823116190128727,-0.039426428154466064,-0.07203432991955787,-0.03574567163832316,-0.2096487418652367,-0.12668867131483946,-0.0895897808246541,-0.1541517234508866,-0.1624942797921882,-0.13903260411492024,-0.2097094557994112,-0.1517871725220129,-0.14762310744578255,-0.0497609340160912,-0.08669790484365163,-0.1876928894599019,-0.024749104432716232,0.043642711354602674,0.0443450063890236,-0.043900591545231585,0.020017153661721993,-0.13007600941371392,-0.027439221690881362,-0.1223621588876652,0.04190580685768372,0.03180472837552534,0.036784963623097945,-0.08843398753026278,0.05119863236307382,-0.036900566876053684,-0.011033138044250893,0.034042972769051355,0.006286546997933449,0.09275315366578987,0.0531444946347755,0.09330756576455836,-0.025730254913850715,-0.07267625458618693,-0.050987537116725684,0.08616517234880657,0.038703434929850025,-0.0046395893336470696,0.03081014494738901,0.019598168469250773,0.03028040572970551,0.011313732066880312,0.03888858083059007,0.01691809382033162,0.005395730978997697,-0.04216908321650248,-0.02321856870060078,0.03198534518594848,0.009327914353687568,-0.05231827622014545,-0.05449290967145935,0.01061715481171544,0.04048897682306388,8.983298183124348e-05,0.010070981052437866,0.004748443919305747,-0.040865616511385976,-0.08695275989220917,-0.07150598735927007,0.01463435919091078,8.508372683340566,25.65915120418283,14.78880000868628,10.379343438863046,27.07252118382248,36.05376509234993,37.053441576790014,37.053441576790014,37.053441576790014,56.76146989836561,51.19386532200374,0.0,5.567604576361877,0.0,5.567604576361877,4658.978085870608,4089.101092988667,1115.961887352309,736.0,58.0,90.0,142.0,212.0,277.0,358.0,483.0,634.0,366.2194948200008,33.0,5.209486152841421,6.19644412779452,7.214504414151143,8.225503097566918,9.248310303227811,10.267957039940773,11.293537353157436,12.317314333143134,13.34462173705197,0.5789473684210527,0.9578947368421052,1.1203070685692678,0.5353294567698907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6564743145288371,0.9461300309597525,0.9878866868555218,0.6012599012287488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,0.0,7.0,0.0,3.0,0.0,0.0,4.736862953800049,5.601050810983688,5.783244946364939,0.0,0.0,9.589074368143644,0.0,0.0,0.0,19.420578929450514,85.52337659075508,24.17453976141019,0.0,164.85744224520255,-260.03392129800324,-33.44121490098016,-4.561998619263214,-13.00169606490016,375.18863579130357,591.7947704547753,13.656197017539426,10.382364393943426,15.994453255534465,0.5,0.7978374577379593,0.29045285737158816,45.24562683554406,0.1940109774661618,23.865589933608458,0.20216254226204083,6.0,0.0,0.2119680652076101,0.4649187370260169,0.7532471119892876,0.9232730411048733,0.9232730411048733,0.9232730411048733,4.305900000000004,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,99.49300000000007,14.325937321943691,0.0,0.0,52.2553232619233,70.81509819377303,0.0,11.64912463690315,0.0,0.0,4.204692619390966,2.5649493574615367,5.700443573390687,4.795790545596741,7.416378479192928,6.9440872082295275,9.242904362849446,9.06357899058078,11.133522762564656,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.6,0.0,24.30068033566095,0.0,0.0,0.0,2.0625063030453994,0.0,1.9524877867175856,63.85750290844826,0.0,0.0,0.0,17.353601045300476,14.325937321943691,52.2553232619233,65.21404738278933,11.64912463690315,0.0,0.0,0.0,30.513779035883772,37.419035928143714,36.63087145499071,235.3731597569751,,218.3825493223294,217.5559041406084,220.18026402764508,218.39960642245336,243.2683797276183,218.180181997129,218.4175104506063,234.63252117089058,36.63087145499071,235.37315975697516,,217.68810487788494,216.76225334695766,219.69933573353867,217.70720203606803,245.3127133380367,217.46151274648298,217.72724711666484,235.3861774072224,5.399583383986508,172.31038929854043,,161.93332094046212,161.41261298545592,163.0690596118624,161.94407534958316,176.89076667004136,161.8057606427222,161.95536418302353,172.15623946296256,1.3566989427774336,8.717524435443522,,8.088242567493682,8.057626079281793,8.154824593616484,8.088874311942718,9.00993998991179,8.080747481375148,8.08953742409653,8.690093376699652,2.8036136295227703,117.68657987848755,,109.21905243894248,108.80969810205022,110.10936914558678,109.22749938668208,121.03291527250961,109.11883776859034,109.23636575866081,117.09459698652417,53.92941176470589,0.0,4.9850743522717735,0.0,0.0,0.0,0.0,56.309541150764744,8.518145991064012,0.0,6.215653304327548,0.0,5.22784774712354,0.0,0.32093751312253305,0.0,0.0,34.27181437003868,430.8689899620016,70.4740254196635,154.57373194003682,250.43563079008254,306.9649558030633,306.9649558030633,306.9649558030633,3050.0,143.31767855887512,109.17708807450455,88.06634789925727,43.370000000000005,43.370000000000005,1.0,8.295548516225763,6.044394119358453,4.4821339611964754,5.114374082236167,,5.135720884157308,5.136381018004223,5.134144265622468,5.135706814065198,5.106832293813341,5.135886449426321,5.135692026242302,5.11717233843242,0.16600496152579539,0.18942126230504322,,0.19021188459841884,0.1902363340001564,0.19015349131935066,0.19021136348389622,0.1891419368079015,0.1902180166454193,0.19021081578675195,0.18952490142342296,2.493351036651971,2.6253067958618805,,2.6294719929362538,2.629600522394803,2.6291649551077656,2.629469253279699,2.6238310816430257,2.629504230396984,2.629466373862177,2.625853781850307,277.7100000000007,260.26206843882153,185.60544726553618,,183.16590543930485,183.07095658856278,183.37686116052575,183.16787928258262,186.30126339663136,183.14253160249197,183.16995174711943,185.1385686061881,9.639335868104501,6.874275824649488,,6.783922423677957,6.780405799576399,6.791735598537991,6.7839955289845415,6.900046792467828,6.783056726018221,6.784072286930349,6.856984022451411,6.554940851913655,6.216874942422732,,6.203644102249852,6.2031255916207275,6.20479515889991,6.203654878451011,6.220616832111908,6.2035164839125105,6.20366619295015,6.214356337206412,6.215653304327548,24.30068033566095,0.0,1.8495989622700937,5.651674084693565,0.0,10.580652294109411,4.9850743522717735,0.0,355.62619569737086,89.03061511965144,-140.43029935344012,-18.0597969520503,-2.4636894623410543,-7.0215149676720054,202.6191512829606,319.5964447866158,7.3749756402159985,5.606955171695014,8.637741750989614,1533.0,62.0,3.340016386522377,2.6297380208915393,0.2920819864624269,0.24579081189859817,1.4526340456156457,1.159591724120225,0.4162333734517709,0.29243349348064684,0.4714045207910317,0.4714045207910317,0.526099420661621,0.5078677873714246,0.9903856974382038,0.8563083320754363,2.168298032856783,1.8135267863058049,4.3995267689300315,3.561595643919424,18.344570503761737,16.50040127440098,12.889430877103564,11.35755579378229,13.73120130022793,11.524887581358147,12.49106103273875,10.40022402726189,11.542960855411982,9.448708125121575,10.615056032406297,8.273209300499492,8.260476833443446,6.394464868099534,6.183805208539321,4.714410832923619,8.535287019977497,6.849865373670975,15.834144550604178,12.612332897989619,29.13651716147126,22.33095077842294,95.65066217771177,51.615949171201024,28.253857641025547,22.064979266460533,22.064979266460533,22.064979266460533,182.0,245.0,62.48978999999997,33.56821,0.40350877192982454,387.03,7.798611111111112,5.256944444444442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,7.0,0.0,0.0,0.0,57.0,0.0,0.0,63.0,0.0,3.0,3.0,60.0,3.0,33.0,60.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,3.0,0.0,1.0,27.0,3.0,0.0,0.0,3.0,0.0,7.0,0.0,0.0,1.0,0.0,0.0,0.0,3.6109179126442243,6.97166860472579,4.189654742026425,4.653960350157523,5.123963979403259,5.564520407322694,5.834810737062605,6.100318952020064,6.440946540632921,6.76849321164863 +5284627,CC1(C)O[C@@H]2CO[C@@]3(COS(N)(=O)=O)OC(C)(C)O[C@H]3[C@@H]2O1,0,29.53488372093023,6.744616279069766,3.511627906976744,8.940568475452197,167.6042586516123,116.84396402325585,1.3388210000425351,6.749693023255813,5.561066449740006,8.310073232558137,193.16695534289948,32.8,6.747084444444445,4.111111111111111,6.5777777777777775,149.0302068581155,125.74004426666671,1.613878366444445,6.876651111111112,2.640329218106996,8.264208088888886,243.43846845931103,25.735632183908045,7.055413793103451,3.7586206896551726,7.17624521072797,160.97997816175229,97.49975351724137,1.2366835367210918,7.083550574712643,4.72049276287782,8.573084252873564,195.85846672384994,19.509090909090908,7.129281818181821,3.1454545454545455,4.369696969696969,164.01765428873824,68.4026064181818,1.1653047861581451,7.134536363636365,3.4921506734006735,8.720233545454548,174.73815347014764,17.926829268292682,6.399861788617886,3.065040650406504,3.902439024390244,161.80311117917614,64.31921703252033,1.141465108874203,6.450079674796747,2.6992936364548843,8.006355203252033,158.2894082260436,18.838709677419356,6.470750000000001,2.5725806451612905,3.8306451612903225,164.0549582570976,68.43616905645156,1.105904615237661,6.506266129032256,3.380127439267225,8.090133419354839,151.9153373148687,15.717557251908397,6.45792366412214,2.213740458015267,2.5674300254452924,169.6909593309329,54.69556396946567,0.9839709771165037,6.471706870229007,3.107836207708982,8.146832152671758,131.11585158467597,15.744897959183673,6.434163265306121,2.2448979591836733,1.914965986394558,166.53082650104682,53.097442183673465,1.0532847071120408,6.469969387755104,3.632393235071805,8.118562285714289,135.63398269144312,11.023529411764706,6.369623529411766,1.3529411764705883,1.7803921568627452,172.37909958069278,34.04558091764706,0.8785747221091996,6.368362352941178,3.734858387799564,8.04978338823529,105.98651015563641,12.011898323418064,0.23499805300162246,0.025599431045077652,0.9367225527312059,5.421308815575988,1.296595113416212,54.559198809086,0.2698259613327409,0.2127521903731746,2.179395713843763,0.15878264899945913,45.942840960036165,3.2532179556517047,-0.020191748092061805,-0.016567819732495246,0.1960939847364943,1.273035140783474,-0.40193320295547086,14.058512562490238,-0.08093041958499105,-0.00647420587705073,-0.7328587423809623,-0.004571716182921725,-1.7521537993977767,2.071769145173222,0.06815062382275594,0.004997211028576587,0.04403125641073458,0.9922169796659278,-0.01440648314779211,9.893068328310429,-0.010644258571137346,0.06416352734935928,1.0006686078809133,0.036365442954563745,6.176808163160947,-4.295619253650623,-0.08505553714538572,-0.002507919724156558,-0.027208810659324435,-1.8831363936826342,0.20962320796994816,-19.588111668705444,0.02690752313718019,-0.08334166183194855,-0.528808463940192,-0.052542717709818616,-5.338502861046962,0.4980279386352548,0.008753922797205266,-0.0017662774476919327,-0.12636142586412344,-0.021170163026670803,-0.1591672292043727,1.8684079825570417,-0.030451114322761735,0.008529715469139566,-0.08701607001430796,0.010222281611242303,-5.20422411613017,1.522985397512169,0.04417653439522669,0.0038981478243262867,-0.015867338927755218,0.582296252357663,-0.09786842122842761,6.797108953292101,-0.00879704243432477,0.04010088539576756,0.42385437851471686,0.02924960775222876,-1.2787395279804266,-0.18392033655493592,-0.025682377517866062,-0.002178933313862983,-0.20904635887358136,-0.6677533783706298,0.05728846729017095,-0.687298318938648,0.026858894369189826,-0.02274562193717255,-0.09090075334618644,-0.018598843212134463,2.965254408453544,-3.082377677950575,-0.022774156466264156,0.0008492914705908659,-0.19063807242745665,-1.112523285860225,-0.2389707631499431,-13.940388533101174,-0.057119653714767536,-0.023614791227469872,-0.01015570829038926,-0.016468625031732523,-9.758803255810713,-2.577972194827092,-0.04312544014252532,-0.0010182168709343049,0.1521967359144847,-0.22526078396024013,-0.010540714146860579,-12.329434536035377,-0.007800072110624408,-0.044756513218591865,-0.7273770386351409,-0.021501839970731376,-13.125543394784486,,,0.44999999999999996,0.8409090909090909,0.13636363636363635,0.0,0.7045454545454546,-0.5681818181818182,1.1991901657390354,0.045338703386816934,0.05706597611408966,0.6628651652805758,0.148471952709876,0.30228996037481143,1.8620553310196113,0.45076191308468744,2.0027344507631137,1.1237796507769189,0.07644401139044411,0.7064409476330442,0.0,0.878954799986195,7.886018317023269,1270.0,290.01849999999996,151.0,384.44444444444446,7206.983122019329,5024.290453000001,57.569303001829006,290.23679999999996,239.12585733882028,357.33314899999993,8306.179079744677,1476.0,303.6188,185.0,296.0,6706.359308615197,5658.301992000002,72.62452649000002,309.44930000000005,118.81481481481482,371.8893639999999,10954.731080668997,2239.0,613.8210000000003,327.0,624.3333333333334,14005.258100072448,8482.478556,107.59146769473499,616.2688999999999,410.6828703703703,745.85833,17039.686604974944,2146.0,784.2210000000002,346.0,480.66666666666663,18041.941971761207,7524.286705999998,128.18352647739596,784.7990000000002,384.1365740740741,959.2256900000002,19221.19688171624,2205.0,787.183,377.0,480.0,19901.782675038667,7911.263695,140.40020839152697,793.3597999999998,332.01311728395075,984.78169,19469.597211803364,2336.0,802.373,319.0,475.0,20342.814823880104,8486.084962999994,137.13217228946996,806.7769999999997,419.1358024691359,1003.176544,18837.50182704372,2059.0,845.9880000000003,290.0,336.3333333333333,22229.515672352212,7165.118880000003,128.900198002262,847.7936,407.1265432098766,1067.2350120000003,17176.176557592553,1543.0,630.5479999999999,220.0,187.66666666666669,16320.020997102587,5203.549333999999,103.22190129698001,634.0570000000002,355.9745370370369,795.6191040000002,13292.130303761427,937.0,541.4180000000001,115.0,151.33333333333334,14652.223464358885,2893.874378,74.67885137928197,541.3108000000001,317.46296296296293,684.2315879999998,9008.853363229095,516.5116279069767,10.104916279069766,1.100775534938339,40.279069767441854,233.11627906976747,55.75358987689712,2346.045548790698,11.60251633730786,9.148344186046508,93.71401569528182,6.827653906976742,1975.542161281555,146.3948080043267,-0.9086286641427812,-0.745551887962286,8.824229313142244,57.28658133525633,-18.08699413299619,632.6330653120607,-3.641868881324597,-0.29133926446728287,-32.9786434071433,-0.2057272282314776,-78.84692097289995,180.24391563007032,5.929104272579767,0.43475735948616306,3.830719307733909,86.32287723093572,-1.2533640338579135,860.6969445630074,-0.9260504956889491,5.582226879394256,87.05816888563946,3.163793537047046,537.3823101950024,-472.51811790156853,-9.35610908599243,-0.27587116965722136,-2.992969172525688,-207.14500330508977,23.058552876694296,-2154.692283557599,2.959827545089821,-9.16758280151434,-58.16893103342112,-5.779698948080048,-587.2353147151658,61.25743645213634,1.0767325040562477,-0.21725212606610772,-15.542455381287184,-2.603930052280509,-19.577569192137844,229.81418185451614,-3.7454870616996936,1.0491550027041665,-10.70297661175988,1.2573406381828032,-640.119566284011,188.85018929150897,5.477890265008109,0.48337033021645953,-1.9675500270416468,72.20473529235022,-12.135684232325023,842.8415102082205,-1.0908332618562715,4.972509789075177,52.55794293582489,3.626951361276366,-158.5637014695729,-24.093564088696606,-3.364391454840454,-0.2854402641160508,-27.385073012439157,-87.4756925665525,7.504789215012395,-90.0360797809629,3.518515162363867,-2.979676473769604,-11.907998688350423,-2.436448460789615,388.44832750741426,-302.07301243915634,-2.2318673336938875,0.08323056411790486,-18.682531097890752,-109.02728201430205,-23.41913478869442,-1366.158076243915,-5.597726064047219,-2.3142495402920473,-0.9952594124581475,-1.6139252531097874,-956.3627190694499,-219.12763656030282,-3.6656624121146524,-0.08654843402941592,12.9367225527312,-19.147166636620412,-0.8959607024831492,-1048.001935563007,-0.6630061294030747,-3.8043036235803087,-61.827048283986976,-1.827656397512167,-1115.6711885566813,0.7449502298664208,0.6233793561015497,0.41319842032763016,0.3513938410530386,0.2953588130734126,0.18970905034707905,0.15627037604555982,0.08636279643896666,0.0942353570396831,0.04713058475837333,0.06286928946205367,0.026329031477361813,0.03806568407831856,0.014293584974527958,0.025012916802953596,0.008133892231678756,16.01360343659975,5.814408108995809,3.5909812502738943,2.3090137894835356,0.505287328048759,-0.3961356779872499,4.038698021706765,0.9682586719291633,6.024507502540714,0.6432046376627213,14.537118373854762,10.327303591481824,32.06678374327447,11.828374735928474,2.952317318153982,0.7551973053898237,3.547999930644376,2.357915452543491,7.014214769258612,0.3044973521231009,3.780162992770051,2.5541505403734472,24.440493512140883,14.700204076166985,0.3101193196232858,0.4919433297888438,0.6648601249768027,0.7297960638181,0.746543163972211,0.7967844644345439,1.8424617966880703,561.473564578839,0.0,0.0,6.0,0.0,0.0,6.0,0.0,0.0,0.0,3.7036794392327406,2.6937218193998107,1.7332401165809488,1.3725476746198577,1.279524418805904,1.000454651364043,98.55528637073783,1330.5942464226014,56.16115831973559,30.944052242386082,67.89209351242715,,9.0,323.0,46.480313073744945,8.417796984328938,12.71084835226122,0.0,0.0,0.0,27.694948798762496,0.0,0.0,33.0063739392579,9.899999999999999,18.5,3.0,0.0,15.5,0.0,0.050000000000000065,-12.5,0.22085521380345086,0.0,-0.22085521380345086,0.05909090909090897,0.268054054054054,0.0,0.6627906976744189,1.0090909090909088,0.44193548387096804,0.6627906976744189,0.9499999999999998,26.382183646258778,0.9974514745099725,1.2554514745099725,14.583033636172669,3.266382959617272,6.650379128245851,40.965217282431446,9.916762087863123,0.44594594594594594,0.3097643097643098,0.23569023569023573,0.15151515151515155,1.0,0.4058421659448677,-1.0318328245672752,-0.07553956487577156,-0.02399611219923897,-0.07937175573594428,0.5941578340551322,1.510615721076073,0.03177102636986951,0.03513059816455984,0.05035385736920244,-1.0175856863718913,0.7806213417379558,0.8308859867274675,1.766204261733751,1.3439568899153198,0.5780933167804675,1.8082783019457176,0.7783446522630052,1.778976842332358,0.759156687311738,0.9903297016646424,0.803660965844563,1.2327556257834655,0.7131394680867581,0.8237181999732621,1.1011841441056944,1.3483515170821059,0.940875232774674,1.107274505051135,0.7096131667015523,1.0213023494331241,0.7933951299305685,0.4218552191629318,0.9139403164588447,0.8496688898459475,1.240419139617699,1.6522359911301834,1.5567144353051863,0.9858492546714257,1.5715528186896899,0.8264796134952281,1.247993845473337,0.7866122453781145,1.6556128689099763,1.0580995861469296,1.6642242216583416,1.0248748967111667,0.7658789163308112,0.8084606149770446,1.0118146748948371,1.314003267053456,0.9047440614070945,1.1643279025645736,0.7849175648963359,1.0470247488546853,0.807852709063866,0.7122700467398349,0.789283855541267,1.1403220549839272,0.7980646613702053,0.7291569724879112,0.7973298091380197,0.895566378603889,0.815274523938247,1.076223173538608,0.8038620968589172,1.0146907781782106,0.7303495117584605,0.5035598475695723,0.7379839276307587,1.03530240394386,1.0676436925805377,1.1503641659915231,1.0901043437254319,1.1223225146765863,1.1507651356845352,0.8413309606769189,1.060639347461675,0.8597125344577368,1.150294758527214,0.9494839310325723,1.153918109483995,0.8777656276458476,1.4781855020261143,1.0450507167360854,0.9074693027046103,1.2768063345430554,1.151479306806521,1.2222508988054683,1.4563135397793023,1.4225559077381884,1.0603136576900287,1.2812289908376944,1.041368030200629,1.2172685638467842,1.0953571523161267,1.1661199737289774,0.6397457801610811,0.3925553593261786,0.9742003505312737,0.8616145451875828,1.1165394261182826,0.7847726868729683,1.1998024625149513,1.9753239324120173,1.093191201276865,1.17768509561919,10.5,0.0,3.5555555555555567,3.1180555555555554,2.160555555555556,1.3791666666666664,1.1187301587301588,0.23958333333333331,0.24189814814814814,0.0,5458.782261648114,6106.808227258422,2660.8926209913616,2448.167220598795,11.69083508251001,0.45463647293198073,6.375755054968197,0.8336393073005727,1.0,1.0,1.7225853154693573,2.732542935302287,3.693024638121149,4.05371708008224,4.146740335896194,4.425810103338055,0.4375,0.0,0.08672086720867213,0.08908730158730158,0.06354575163398694,0.0394047619047619,0.039954648526077094,0.01197916666666667,0.030237268518518517,0.0,0.7984297660459848,16.84375,4.997025580011898,3.298611111111111,128.7270626681316,1.0,4.055191331332935,89.48990698213377,,68.77699975212411,72.52977776153182,78.7567538408658,68.80717966083853,130.2541529426863,73.6365226072497,73.66251460187986,104.49931045729521,0.2708329581269699,-0.0859230441876146,-0.6471948420775924,0.20934051834744688,0.23482062802360762,-0.30999129859164354,0.25767446863880644,-0.299935629563792,-0.030430736650441773,-0.33626694671635915,-0.028792290667334172,-0.038137689415460946,0.1724764137517014,0.2900050572856679,0.1952078942605042,0.04700565421677151,0.1830216675381385,-0.011111011447385867,0.1813272288496819,-0.03944860797887117,0.3015880928737526,0.459149571380982,0.22902655412108422,0.1344454986693989,-0.3576136875281405,-0.361941454658769,-0.09796779153960102,-0.029046819231576725,-0.3473582593694324,0.16167206385472338,-0.3590249141533095,0.09972177252432235,-0.3917311576711123,-0.24263994857893037,-0.3309096934766317,-0.116198797233517,0.04146121830421369,0.03725104393586115,-0.06899674623946608,-0.13489738823485237,-0.003904991164835825,-0.12275785058683883,0.03424551722423547,-0.11285464961323856,0.04009225688430353,-0.0399266959467582,0.06437908471521422,-0.11327606232834221,0.12678973435389468,0.187986810235069,0.15227478366460945,-0.016939208820680948,0.10740879595065031,-0.07548109677088646,0.12458227213116896,-0.03260265391392985,0.18848635741624675,0.19448252367495578,0.18421161214112503,-0.027833270674156845,-0.015311512935167785,-0.10928761830077267,-0.08511647426953092,-0.22316785078363277,-0.12317198689218818,0.04418377541099149,-0.012597294937259765,0.0995415498068708,-0.10691134082932802,-0.041709154867459255,-0.11713397735414918,0.06454225177395756,-0.25661037039759627,-0.09691210703820989,0.03317618540409595,-0.20351604845171328,-0.2052130442493571,-0.18430638884664108,-0.25550940698160723,-0.21169072624679494,-0.11099670083795012,-0.004659873480469414,-0.10371803931668012,-0.21241183722833998,-0.2146182164896575,-0.1835140316767968,-0.03977498051192396,0.16247792419508214,-0.041550996562498395,-0.00812953406795462,-0.22598269045662928,-0.02890778956960929,-0.21036922411979597,-0.3337517065004585,-0.13541681100687908,-0.2856928984039509,0.33333333333333337,2.6207413942088964,2.381101577952299,19.7169621949979,30.37313747626221,36.164457827586396,38.69748972873277,39.81479205431417,40.09609437989557,44.0601579167885,24.723152317092215,1.6817682505897706,15.541700847926974,0.0,19.33700559969629,3843.0269523490047,3241.6033692603405,1067.5034415700943,111.0,41.0,48.0,73.0,100.0,111.0,138.0,156.0,129.0,339.09878763200055,24.0,4.875197323201151,5.733341276897746,6.720220155135295,7.619233416226805,8.599510233905452,9.521568058002977,10.495404564687007,11.431465920724287,12.400557429449934,0.6976744186046513,1.020558139534884,1.1452654778704934,0.6570701663010456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6191150675393401,1.0026447788417692,1.0397110384660988,0.5895954207868067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,2.0,0.0,6.0,0.0,3.0,0.0,3.0,0.0,0.0,23.684314769000245,24.918781127757825,11.574222305141193,5.7871111525705965,0.0,4.183085432649707,5.138973737607942,8.417796984328938,0.0,0.0,27.694948798762496,0.0,6.606881964512918,212.3981041375536,-540.0112509619275,-39.53374418263182,-12.55840118516111,-41.53932699707136,310.9533905082914,790.5829954606737,16.627414137103766,18.385651057224973,26.352766515355796,0.4444444444444444,0.8419308202100241,0.13477575345031098,100.61835992137895,0.13096304631956987,3.075319128508341,0.15806917978997595,5.0,0.125,0.3174532377869438,0.503577149075599,0.6805832013487695,0.7470547906033363,0.7641979378729835,0.8156273796819249,-0.3953999999999982,,2.767857142857143,2.446791874222856,1.5234225772142653,2.761983513704676,-8.752398001860552,2.2425795593635254,2.1995774990232113,-3.3537015775361665,71.60420000000005,36.28519718597889,0.0,0.0,5.138973737607942,63.36818141971918,13.213763929025836,0.0,0.0,0.0,3.8918202981106265,0.0,5.3612921657094255,3.044522437723423,6.974478911025045,5.58724865840025,8.660947155060933,7.83241092718792,10.39662770624607,30.000000000000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.88400000000001,0.0,22.198001543209877,0.0,0.0,-4.137208509175276,0.0,0.0,0.0,49.246415548431216,5.138973737607942,0.0,0.0,57.304793534311464,38.171565077673584,0.0,27.694948798762496,0.0,0.0,0.0,0.0,28.254017150944964,26.62194790419162,25.8705875197555,178.97981396426758,,137.9850481438105,144.83711989813426,157.3750147201667,138.04677411538432,262.0828762672027,147.06917434546637,147.1250676129394,209.3035028761846,25.8705875197555,178.97981396426763,,135.8298495525076,142.76346129447475,156.03838555425418,135.89563576663497,269.2607038872331,145.14903611572305,145.2333592228186,212.35232249212658,5.045479690641753,125.29829071816013,,97.97664554554429,102.75289888874386,111.25304146195083,98.01772943462564,179.2624133878932,104.25167673340874,104.2899684027811,145.3607102715814,1.1759357963525228,8.13544608928489,,6.2720476429004774,6.583505449915194,7.153409760007577,6.2748533688811055,11.912858012145579,6.684962470248471,6.687503073315427,9.513795585281118,2.6106673657802717,89.48990698213377,,68.77699975212411,72.52977776153182,78.7567538408658,68.80717966083853,130.2541529426863,73.6365226072497,73.66251460187986,104.49931045729521,43.113725490196074,0.0,6.968506813219115,0.0,0.0,4.8916954050138575,0.0,44.70757465404225,-0.2589739229024939,0.0,33.69567188681028,0.0,-1.5004747732426318,0.0,-3.1905517762660627,0.0,0.0,25.352603093832688,440.62575314531836,74.07116856518236,117.49934621799835,158.8000594392094,174.30983444353632,178.30983444353635,190.30983444353635,953.0,123.39649837823066,82.72574150052671,73.74934825946369,123.92,115.54,0.8,6.959398512133975,5.584962500721156,4.0180371764228795,4.612572326766693,,4.627200125986265,4.61777828933288,4.617920330835683,4.627210941610764,4.617745461678622,4.618529035958716,4.619581487037112,4.617871015472937,0.18263805347376724,0.20966237848939515,,0.21032727845392116,0.20989901315149453,0.20990546958344014,0.21032777007321657,0.2098975209853919,0.20993313799812344,0.2099809766835051,0.20990322797604258,2.1792508791838157,2.3172430502078014,,2.320409321133846,2.318371060038569,2.318401819271553,2.3204116585326107,2.318363951041799,2.3185336242757795,2.318761474133243,2.3183911400864354,220.6499999999997,172.58324812123408,124.4995291068755,,122.51735070705821,123.82773518207586,123.82856261306709,122.5159840381673,123.74476045014342,123.75070791473829,123.63678174479848,123.8570175552941,7.844693096419731,5.659069504857977,,5.5689704866844645,5.628533417367084,5.628571027866686,5.568908365371241,5.624761838642883,5.625032177942649,5.619853715672658,5.629864434331551,5.939337078227072,5.6127592939877875,,5.5967100187442425,5.607348727688702,5.60735540977996,5.5966988637812465,5.606678421119894,5.6067264823198455,5.605805448049678,5.607585176424695,55.89367343002016,0.0,4.8916954050138575,0.0,-3.1905517762660627,0.0,-1.5004747732426318,6.709532890316621,-4.137208509175276,278.8665054747621,111.15886526033252,-282.6156953164973,-20.690044106926845,-6.572458030616218,-21.739668870499802,162.73792168770746,413.75279231593294,8.70198204074871,9.622157960835649,13.791759743864434,948.0,35.0,5.005263691694153,2.103255239126434,0.9556154632092395,0.24879987997112407,0.2929305994730829,0.08934190841539749,0.041666666666666664,0.008018753738744801,0.0,0.0,0.0,0.0,0.15550211698203653,0.051834038994012184,0.6098835832105223,0.20784538011761444,1.181601318934426,0.3535741315516076,16.388905057061258,13.714345834234093,9.916762087863123,8.433452185272927,12.109711336009916,7.778071064230241,7.5009780501868715,4.1454142290704,6.8791810638968665,3.4405326873612534,6.286928946205366,2.6329031477361813,4.22529093269336,1.5865879321726033,3.451782518807596,1.1224771279716683,5.402653774887098,2.1720572587735956,9.618690629546226,3.5688278401013935,15.771660867735939,5.004899351031903,79.39319917635694,51.71672624689545,38.97652371150574,33.74020675128384,31.031818187895457,29.62312604169481,130.0,154.0,44.45865299999997,37.56934700000001,0.27906976744186046,114.1,9.583333333333332,4.2222222222222205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,0.0,0.0,43.0,0.0,0.0,45.0,0.0,2.0,2.0,43.0,2.0,24.0,43.0,0.0,0.0,0.0,12.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,8.0,1.0,3.0,22.0,10.0,0.0,1.0,8.0,0.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,3.295836866004329,4.897839799950911,3.8918202981106265,3.9318256327243257,4.330733340286331,4.672828834461906,4.787491742782046,5.030437921392435,5.1647859739235145,4.997212273764115 +5311309,CC(C)C1CCC(C(=O)N[C@H](Cc2ccccc2)C(=O)O)CC1,0,19.04,5.912097999999999,2.78,5.28,163.38926581164446,74.65104158,1.3626652086184599,5.979397999999999,4.438888888888888,7.498502319999999,195.57137473974274,21.11764705882353,6.123607843137256,3.4705882352941178,4.7254901960784315,145.24173535960685,78.17469937254899,1.7605483928627452,6.272029411764707,2.8017429193899783,7.580465098039215,247.73383561799795,16.72340425531915,5.928340425531914,3.074468085106383,3.3191489361702127,151.75861260341,60.151715489361706,1.4818026995036069,6.046289361702127,2.7183806146572103,7.451833531914894,198.37438493277014,12.818840579710145,5.824108695652175,2.5,2.1884057971014492,158.8530959105748,43.944180115942025,1.226533022141087,5.910653623188405,2.43317230273752,7.416376637681158,156.94590784127766,10.883116883116884,5.7996753246753245,2.1493506493506493,2.0194805194805197,164.11150958715294,36.21418116883117,1.0602923857396298,5.862480519480519,2.4848484848484844,7.439986597402599,133.171893507167,11.411347517730496,5.8050992907801415,2.106382978723404,2.595744680851064,166.22701992258226,39.25100612765958,1.0210615642056524,5.8579624113475175,2.994877856579984,7.451201702127659,130.06437669469602,12.453781512605042,5.877327731092437,2.235294117647059,2.5126050420168067,164.45493694607825,43.422630042016806,1.0647126242588991,5.936798319327733,2.8524743230625584,7.514702420168066,140.1864508889349,13.368932038834952,6.129689320388349,2.2524271844660193,2.233009708737864,163.5320794847415,45.94944023300971,1.0906711308856798,6.181747572815534,3.4142394822006468,7.7505405825242715,147.35926048232986,11.358695652173912,6.096021739130435,2.1630434782608696,1.565217391304348,164.86599618203294,36.71654222826087,1.0996776158709891,6.14329347826087,3.0356280193236707,7.730848130434784,142.3655478198315,7.206400000000001,0.10688963999999998,0.0170706019465087,0.53,3.2064,1.34048470427169,34.346573563599996,0.22889125516769152,0.10265235999999994,1.7928444444444442,0.0658996816,50.95979965695053,0.0351686274509806,-0.005272698823529366,-0.011071287445329123,0.1323529411764706,0.8414431372549023,0.04392469812184008,0.22366980110587512,0.011639759027662068,-0.004547614901960765,-0.06480522875816995,-0.003389416501960808,1.9715813375244722,0.01232340425531944,0.02104527489361703,0.0014479692959571174,-0.10106382978723404,0.16891914893617027,-0.1234633889308218,-0.09161346296170499,-0.019976829805918656,0.017634065531914902,0.31714373522458633,0.014782996697872336,-4.155694585462967,-0.4745159420289854,0.00553340347826087,0.0017270044303213823,-0.043478260869565216,-0.11016811594202898,-0.14036714073380044,-2.3520556224405804,-0.02781121678459799,0.0036792631884058047,-0.012957165861513659,0.0039500517333333355,-5.971069002669736,-0.2910753246753248,-0.0076420425974025935,-0.003161880645460704,0.016233766233766232,0.15645714285714282,-0.09823737830384591,-1.3794580284051943,-0.012833009311118474,-0.006652502857142856,-0.1346481962481962,-0.005287223937662338,-2.2701603572395626,1.1167205673758867,0.019043097588652472,0.0020256563516976504,0.03723404255319149,0.8293446808510638,0.05903831895748169,5.247731589733334,0.01277131692915593,0.018944888226950337,0.3744447596532703,0.011386216272340419,4.9778126293620755,0.9878857142857144,0.0009955028571428603,-2.915209578477669e-05,-0.0273109243697479,0.24200336134453776,0.011109237135287608,4.718166367828571,0.009036210266850933,0.004023102184873936,-0.01711148459383757,-0.0027438846252100992,5.287962976056619,-0.5139728155339806,-0.02040476621359218,0.0008265681086121743,-0.02669902912621359,-0.8382446601941747,-0.059230336500414614,-2.357352469425244,-0.005474433754424215,-0.018023893980582507,-0.27529320388349526,-0.013935561211650535,-1.3433652353498653,-2.308573913043478,-0.04677498782608689,-0.002000695700072388,-0.005434782608695652,-1.3229217391304349,0.2510513320050806,-10.718159519252174,0.019033012280287528,-0.04641638173913039,-0.6128202898550726,-0.02501071290434787,-3.606554765418923,,,0.47391304347826096,0.967391304347826,0.391304347826087,0.0,0.5760869565217391,-0.18478260869565216,1.0499688304171957,0.019346926599405966,0.026825187468971178,0.6516951015347864,0.16492695633531856,0.3119962719510622,1.7016639319519822,0.4769232282863808,1.9914076450051927,1.6773077371686893,0.08789939193205072,0.2262005159044528,0.0,0.3140999078365035,6.343981874480015,952.0,295.6049,139.0,264.0,8169.463290582224,3732.552079,68.13326043092299,298.96989999999994,221.94444444444443,374.92511599999995,9778.568736987138,1077.0,312.30400000000003,177.0,241.0,7407.32850333995,3986.9096679999984,89.78796803600001,319.87350000000004,142.88888888888889,386.60371999999995,12634.425616517896,1572.0,557.2639999999999,289.0,312.0,14265.30958472054,5654.261256000001,139.28945375333905,568.3512,255.52777777777777,700.472352,18647.192183680392,1769.0,803.7270000000001,345.0,302.0,21921.727235659324,6064.296855999999,169.26155705547,815.6701999999999,335.7777777777777,1023.4599759999999,21658.535282096316,1676.0,893.15,331.0,311.0,25273.17247642155,5576.9839,163.285027403903,902.8219999999999,382.66666666666663,1145.7579360000002,20508.471600103716,1609.0,818.519,297.0,366.0,23438.0098090841,5534.391864,143.969680552997,825.9726999999999,422.27777777777777,1050.61944,18339.07711395214,1482.0,699.4019999999999,266.0,299.0,19570.137496583313,5167.292975,126.700802286809,706.4790000000002,339.44444444444446,894.2495879999999,16682.187655783255,1377.0,631.358,232.0,230.0,16843.804186928373,4732.792344,112.33912648122501,636.72,351.66666666666663,798.3056799999999,15178.003829679976,1045.0,560.8340000000001,199.0,144.0,15167.671648747031,3377.9218849999997,101.170340660131,565.183,279.2777777777777,711.2380280000001,13097.630399424497,360.32000000000005,5.344481999999999,0.8535300973254349,26.5,160.32,67.0242352135845,1717.3286781799998,11.444562758384576,5.132617999999997,89.64222222222222,3.29498408,2547.9899828475263,1.7936000000000107,-0.26890763999999767,-0.5646356597117853,6.75,42.91360000000002,2.240159604213844,11.40715985639963,0.5936277104107655,-0.23192835999999903,-3.3050666666666673,-0.1728602416000012,100.55064821374808,1.1584000000000274,1.9782558400000008,0.13610911381996904,-9.5,15.878400000000006,-11.605558559497249,-8.611665518400269,-1.8778220017563536,1.6576021600000008,29.811511111111113,1.3896016895999996,-390.6352910335189,-65.48319999999998,0.7636096800000001,0.23832661138435077,-6.0,-15.203199999999999,-19.370665421264462,-324.5836758968001,-3.8379479162745227,0.5077383200000011,-1.7880888888888848,0.5451071392000003,-824.0075223684237,-44.82560000000002,-1.1768745599999995,-0.4869296194009484,2.5,24.094399999999993,-15.128556258792269,-212.4365363743999,-1.976283433912245,-1.0244854399999999,-20.735822222222218,-0.8142324864000001,-349.6046950148926,157.4576,2.6850767599999985,0.2856175455893687,5.25,116.9376,8.324402973004918,739.9301541524001,1.8007556870109862,2.6712292399999975,52.79671111111111,1.605456494399999,701.8715807400527,117.5584,0.11846484000000038,-0.003469099398388426,-3.25,28.798399999999994,1.3219992190992254,561.4617977716,1.075309021755261,0.47874915999999845,-2.0362666666666707,-0.3265222704000018,629.2675941507376,-52.9392,-2.1016909199999945,0.08513651518705395,-2.75,-86.33919999999999,-6.100724659542705,-242.80730435080017,-0.5638666767056941,-1.856461079999998,-28.355200000000014,-1.435362804800005,-138.36661924103612,-212.3888,-4.303298879999994,-0.18406400440665968,-0.5,-121.70880000000001,23.09672254446742,-986.0706757712001,1.7510371297864524,-4.270307119999996,-56.37946666666669,-2.300985587200004,-331.8030384185409,0.731288107712148,0.6084955002203069,0.4570514271077817,0.35589136704776725,0.3086155508120938,0.21702672258512995,0.19847933176668034,0.13112302031205836,0.12888894083345412,0.07877904826474502,0.08399928648477727,0.04554963696523722,0.054445586680500486,0.027979640500341647,0.03817376318992873,0.016687065201915006,8.029041549562683,5.6941074347319045,3.555142518815156,2.1940807368095405,0.45652654385640523,-0.362638651159412,3.1325806004310692,0.9726698414396996,6.023214829052287,0.9889285090881802,14.540284940817775,10.954428188285865,16.01442908863408,11.705125987981624,1.9822525915501703,0.7414722413078657,3.5012072209716187,2.244072950520272,7.009372020090273,1.1790124199508394,3.7141097336420383,2.440070127660094,20.891409257592795,14.700682824695757,0.23537509792329186,0.5459799470494385,0.7449811813160725,0.8194028096286753,0.8357782079502188,0.8357782079502188,1.7928633245895353,518.6760796740494,0.0,2.0,2.0,0.0,5.0,6.0,1.0,3.0,0.0,4.276949456320105,2.4731568569324174,1.3174860596185427,0.8852932501298074,0.7901955000865373,0.7901955000865373,188.8262130712831,1171.8805347421214,55.067364732652464,23.437610694842427,46.075655719194216,,13.0,475.0,12.011146117099809,14.69560176298435,11.8250857755129,18.256633715248796,31.246737983401033,0.0,0.0,30.33183534230805,19.16426300338758,0.0,10.900000000000002,22.25,9.0,0.0,13.25,0.0,0.02608695652173904,-4.25,0.10068656716417895,0.025499999999999967,-0.07518656716417899,0.04139130434782601,0.13421276595744647,0.0,0.5380000000000003,0.8173913043478258,0.4373134328358213,0.5125000000000003,0.7759999999999998,24.1492830995955,0.4449793117863372,0.6169793117863371,14.988987335300088,3.793319995712327,7.1759142548744315,39.13827043489559,10.969234250586759,0.5797872340425535,0.18348623853211005,0.0,0.3211009174311926,0.5789473684210527,0.3319285241267632,-0.6924519481673748,-0.05817767497841284,-0.013849038963347495,-0.038469552675965274,0.6680714758732366,1.3936958150870054,0.0398516516974635,0.027873916301740104,0.04355299422146892,-3.477276748672817,0.965263991920036,0.7502484273847816,1.6406358710294093,1.1239363669996298,0.5962951547884623,1.2590406357765467,0.9723589096178619,1.186927868974059,0.7639487027371017,0.645312228860408,0.7228439578176452,1.1246395671372753,0.9418046842522957,0.4592214047900044,0.6982392208628566,1.6130068245684464,0.820997632394785,1.2595185291714857,0.9540096316896868,1.2259841454783016,0.5122357904480463,0.38831804710398526,0.3824802840347897,1.179976231192006,1.023868477617319,0.77017998067507,0.745806944907144,1.199207000273448,0.9490303812664527,1.1549055487757989,1.0299131387122527,1.1481066697316726,0.8002557849379811,0.7685432086257374,0.7266763882011782,1.134031046772357,1.0287572662683673,1.111633796910873,1.1403226682437106,0.8885077186963979,0.943709172563963,1.0352359865554732,1.0271052433074377,0.999081172944916,1.0990054198461683,1.1047212938527795,1.115859854031663,0.9976378753163736,0.8414998330876887,0.9095540765355596,0.9359689920701817,0.8655158570855078,0.7716835831882336,0.8925695377119796,0.8410644744162852,0.8585208193669079,0.8936163055095416,0.8784538184278312,0.911127337198541,0.836038007708904,0.8833651133632848,1.1957550191899957,1.2872291505716482,1.1032186459489455,1.0389148174239757,0.9334780562597079,0.878796734804428,0.8977440969747532,1.1436446617438876,1.2526649148466746,1.2827323602371856,0.8405517343811177,1.1711003379951368,1.817804839218926,1.5665152399601714,1.0860963546437075,1.5905083037807881,0.9974535435743225,1.1572845022087264,0.957546822027778,1.733663696605832,1.9604076928612535,1.9611073316303251,0.9500094953168211,1.411637722990192,2.035041448601444,1.5568718076017791,0.9144790812141098,1.6760297340102406,0.7822456360684835,1.3926447682307461,0.8358463525626308,1.9823431874507234,2.1004830528660907,2.0777432313315507,0.9837274609927853,5.0,0.08244056728905214,2.666666666666668,1.3125,1.1733333333333338,0.8402777777777778,0.5502040816326531,0.28645833333333337,0.15998992189468378,0.14250000000000002,4019.392329275678,4780.286683980792,2063.6991069481496,1784.9867596496163,13.561211539460764,0.4839673691045389,6.998027668837824,0.9378619492816183,1.0,0.5789473684210527,1.3669067334546194,3.170699332842307,4.326370130156182,4.758562939644917,4.853660689688187,4.853660689688187,0.20833333333333331,0.006870047274087678,0.08333333333333337,0.041015625,0.041904761904761924,0.030009920634920636,0.02037792894935752,0.011935763888888888,0.00941117187615787,0.009500000000000003,0.4626918861948412,19.32638888888889,9.474609375,6.094182825484765,137.83695958901527,1.0,4.034139594268796,118.9357982979176,,107.31064864440596,106.23177923593673,105.75443253727067,107.32120649588163,127.1198447186467,106.8720555296973,107.37370633713877,120.00835985159907,0.004880193640511296,-0.04932843654005539,-0.6485587022661164,0.24972253052164264,0.2624261281358852,0.032767772718231176,0.006512143072778508,0.05085279041846526,-0.04430112373413302,-0.036146598752046996,-0.051432972355374904,0.03868895385768189,0.001710063867578741,0.19688788262002785,0.08482239234998143,-0.19068647129666796,0.05268187030194931,-0.09210354175425055,-0.00266732466899684,-0.08727650949916425,0.171784316813709,0.17689417294809473,0.2243257681820474,-0.08154848750266157,-0.06584646176023887,0.05176744423744781,0.101168338160131,-0.08203445447087776,-0.03435881859469467,-0.10471372055682238,-0.06848006593977267,-0.12150405992672281,0.035841973710159285,-0.007227155652942743,0.05994037660621013,-0.11717214437391,-0.040391225115914295,-0.07149469862002149,-0.18522373466199743,0.030629747610879682,0.04879526660963786,-0.07328496773651742,-0.04016290084514061,-0.056065965917818435,-0.06480613652859865,-0.07510311151948275,-0.08023140338909222,-0.04454806283623076,0.1549623345048688,0.1781566257370918,0.11866344010862137,0.0702529104777198,0.25865290695205334,0.04404251594169312,0.15278763047545463,0.05579643888011074,0.18455384977949213,0.20885513007755727,0.17278105137825764,0.09768116560252489,0.13708449632073078,0.009313370848127661,-0.0017077368376420326,-0.051530045980656414,0.07547510021972859,0.008287477730917833,0.13736934658392871,0.03947818041467236,0.03919152160626349,-0.0095443219554611,-0.04163729715516712,0.10376734232971777,-0.0713217161875528,-0.19089563977942278,0.04842056016549698,-0.05037552665323319,-0.2614285991124547,-0.044185760801049606,-0.06863428356427181,-0.02391718176569702,-0.17558187635026137,-0.15355108176649504,-0.21146629047826138,-0.026361273874565567,-0.320350509691868,-0.4376007611784163,-0.11720123908586438,-0.01025430680885972,-0.41258786774277534,0.18728399600910134,-0.31205906171121317,0.0831530775011193,-0.45217062461233637,-0.34181453486053537,-0.3795270674623088,-0.0707725460009146,11.212566260276526,17.80119383562511,5.921528558687806,12.33251746285119,27.542352934687578,32.13572603745843,33.61773693314917,33.71359546519279,33.71359546519279,45.802375835119435,38.57807795487985,2.0216860144371664,5.202611865802415,0.0,7.224297880239581,4887.061302215928,4324.788746370056,994.7672875048615,42.0,32.0,38.0,43.0,52.0,50.0,50.0,42.0,46.0,317.19909372400076,24.0,4.727387818712341,5.53338948872752,6.371611847231857,7.198183577101943,8.038189179973203,8.871365005136852,9.71214543252109,10.548310710265884,11.389548059970034,0.5733333333333333,0.9637600000000001,1.1305061339395932,0.5285638165015403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6375977365269462,0.9506666666666668,0.9928186453022579,0.5843407246081824,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,5.0,1.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,10.423315998847038,6.041840829147961,0.0,5.907179729351506,0.0,4.794537184071822,4.794537184071822,0.0,0.0,44.179309741689295,43.082550075723816,12.338727669087403,0.0,186.45878456041228,-388.9805763498345,-32.680947181516785,-7.77961152699669,-21.610032019435256,375.2849976316954,782.8999583922869,22.38641755113568,15.657999167845736,24.465623699758964,0.46153846153846156,0.7943503555681255,0.22994950017633847,93.06320260686263,0.15629098744784645,25.090918485727077,0.20564964443187447,7.0,0.25,0.2421937568025063,0.5617966202942648,0.7665627869814432,0.8431403600017767,0.8599901426407397,0.8599901426407397,3.2609000000000012,,0.8928571428571429,1.0428106095858538,0.7446521430925515,0.8902969157782687,-3.765064611199274,0.9373470012239903,0.8857473937688994,-1.5163080624175058,89.99850000000006,14.69560176298435,0.0,5.316788604006331,17.75371813848418,51.993423343159265,0.0,35.89528683400505,0.0,0.0,3.8918202981106265,0.0,5.176149732573829,0.0,6.645090969505644,0.0,8.188966863648876,0.0,9.769327390849192,28.666666666666664,9.420054156884133,0.0,0.0,0.0,0.0,0.0,0.9201073796266799,0.0,48.188,0.0,23.854020079514306,0.0,0.0,0.0,0.0,0.0,-1.0753641765348105,56.525306696979655,5.316788604006331,0.0,0.0,23.02485324129202,16.00989599106965,17.75371813848418,45.09421238278229,30.33183534230805,0.0,0.0,0.0,26.428190825077014,31.87988682634731,28.74878799416388,237.8715965958353,,214.54365753725912,212.37287928843122,211.44411271427242,214.5649958686521,255.87667405085836,213.66260262450555,214.6703911617759,240.67598407816246,28.74878799416388,237.87159659583523,,213.72844014595478,211.4207478622877,210.76421293144878,213.75211607598504,258.0047540484927,212.80676405817078,213.8616652805088,241.5330277656158,4.647105603146422,178.4172159947229,,163.08437021720943,161.23485104540927,160.05119507401008,163.10138457694396,195.48445375679688,162.31520274017964,163.19430906484016,184.450147131189,1.2499473040940818,10.342243330253709,,9.327985110315614,9.233603447323096,9.193222291924888,9.32891286385444,11.12507278481993,9.289678374978502,9.3334952679033,10.464173220789672,2.323552801573211,118.9357982979176,,107.31064864440596,106.23177923593673,105.75443253727067,107.32120649588163,127.1198447186467,106.8720555296973,107.37370633713877,120.00835985159907,47.53333333333334,0.0,4.455125844006616,0.0,0.0,0.0,9.381940794861972,49.640932265112895,4.180870893493097,2.740240457294029,0.0,0.0,0.45633790418731035,0.0,0.0,0.0,0.0,29.21703623040912,446.22137312248447,68.34533667273097,158.53496664211534,216.31850650780908,237.92814698224583,242.68303448440935,242.68303448440935,442.0,119.39013111964073,115.52240906962331,56.67135525468817,66.4,66.4,0.8571428571428571,6.895809207963737,5.584962500721156,4.297928182167889,4.721238814648317,,4.720792656437672,4.71951731520388,4.718783361580363,4.720804526103828,4.734323140297017,4.720273540103976,4.720866536796264,4.732206203871905,0.18686644270295172,0.20527125281079642,,0.20525185462772486,0.20519640500886432,0.20516449398175493,0.20525237070016644,0.20584013653465294,0.2052292843523468,0.20525506681722888,0.2057480958205176,2.291042211422491,2.384980348826352,,2.3848858441188967,2.384615653575285,2.384460126929095,2.3848883584532676,2.387747891160151,2.3847758742651934,2.384901493986591,2.3873006445751703,262.9400000000001,147.19671480674887,123.94309798507605,,123.23949469544812,123.32121411046386,123.5173108364337,123.23917263948124,122.89099679554491,123.27944320948372,123.23409150349548,122.70732123702608,6.399857165510821,5.38883034717722,,5.358238899802092,5.361791917846254,5.370317862453639,5.35822489736875,5.343086817197604,5.359975791716684,5.358003978412847,5.33510092334896,5.824679011091898,5.652731696002052,,5.647038696488402,5.647701571107833,5.649290437896481,5.647036083232088,5.644206880481527,5.6473627974659975,5.646994852504657,5.642711140655342,0.0,23.854020079514306,12.122181252156,0.9201073796266799,0.23493463300229456,8.566093251534339,4.180870893493097,4.455125844006616,0.0,325.75240701902936,104.74206286190939,-218.507420158022,-18.358318875365747,-4.37014840316044,-12.139301119890114,210.81401396958478,439.78918370532705,12.57543086490674,8.79578367410654,13.74341199079147,1320.0,32.0,1.606493072294114,0.9758809628794821,0.0,0.0,0.4511844635310912,0.2147633490286044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.11540834828831253,0.16839382851364085,0.11245964968046121,16.819626477379405,13.995396505067058,10.96923425058676,8.541392809146414,9.875697625987002,6.944855122724158,7.542214607133853,4.982674771858218,5.542224455838527,3.387499075384036,4.367962897208418,2.3685811221923356,2.7222793340250244,1.3989820250170824,1.9086881594964367,0.8343532600957503,3.433790477247919,1.9501291771377776,3.9416373971868035,2.1076580326561705,5.5287354199539624,2.466546667075334,80.06774050284265,42.61103444037291,29.784605274863285,25.53035717413447,25.13838768149131,25.13838768149131,112.0,126.0,53.23941099999997,29.392588999999994,0.32,70.04,8.527777777777779,5.166666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,6.0,6.0,50.0,0.0,0.0,51.0,6.0,2.0,5.0,46.0,8.0,24.0,43.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,2.0,2.0,0.0,23.0,4.0,0.0,1.0,3.0,0.0,2.0,6.0,0.0,0.0,0.0,0.0,1.0,3.4011973816621555,4.830810617500888,3.817712325956905,4.123093975508087,4.426342518448393,4.823803581824415,4.6521730395834275,4.795273883224101,4.860780927439802,5.001426355010946 +48229,O=C1OC(OC(=O)c2cccnc2Nc2cccc(C(F)(F)F)c2)c2ccccc21,0,31.767441860465116,7.26627441860465,4.069767441860465,13.581395348837209,166.08274657105204,128.87994063835606,1.634196064256674,7.274681395348835,9.588662790697674,8.546534976744184,260.0294671089595,30.804347826086957,6.776173913043478,4.739130434782608,11.347826086956522,146.39673836284993,120.765048619687,1.9141003047826097,6.916195652173912,4.048913043478261,8.10302069565217,301.21831763113335,30.44,7.215118666666667,4.226666666666667,11.96,155.62084945647592,119.43648299939886,1.7054712094933326,7.2817880000000015,6.844814814814816,8.492053226666663,268.08208644357137,24.83695652173913,6.6608260869565195,3.717391304347826,8.445652173913043,155.51204585663743,95.14939546751309,1.4956417583037278,6.755760869565219,4.302838164251207,8.06935852173913,231.21037281936665,23.5979381443299,7.117536082474225,3.268041237113402,8.31958762886598,166.86570341902515,88.83619172747215,1.265774963893206,7.140887628865977,5.3581042382588775,8.53906713402062,201.4194732482176,24.670731707317074,7.090451219512196,3.451219512195122,8.463414634146341,164.66781768959686,93.7923182640195,1.3716606556944269,7.1282207317073185,5.227981029810298,8.499992341463418,219.1025559652501,24.417721518987342,6.995341772151898,3.5569620253164556,8.316455696202532,161.62538541146452,92.06374443112912,1.472195934701215,7.050668354430379,5.259142053445848,8.404921974683546,229.58462103098,24.469135802469136,6.82969135802469,3.506172839506173,8.617283950617283,158.8005432199814,93.32094718978766,1.4691435971246174,6.898476543209877,4.866598079561041,8.238511061728396,226.70483541579318,23.9,6.8279749999999995,3.2125,7.975,159.86919419934924,91.17881935646,1.3822892118636747,6.895677500000001,5.036284722222222,8.235021750000001,215.0080072542186,7.460248783126014,0.29421838831800967,0.03181282548165992,0.6944294213088156,4.995132504056245,3.0425961159358064,36.03093615410947,0.23754982628940513,0.25464629529475385,4.0260125593413845,0.18152580638182797,42.22402236120327,0.12872998330472432,-0.01375943988524938,-0.020260873214005895,0.046723258165400836,0.6964751804735809,-0.16189418627760904,0.6115108410413629,-0.00859766486259972,-0.01011449549697839,-0.3779954826084343,-0.010150760881322439,0.45819822274341404,0.3174256354786372,0.10962294501532353,0.005561553788309661,-0.01628988642509461,0.8551000540832884,0.83293167610626,1.677884127064995,0.002901171717967319,0.08971798377501347,1.4167286120625768,0.0696191151685596,-4.938340892331168,0.5384873139417311,-0.003972180026806509,-0.005600692221264984,-0.11632022009546873,0.21492816328450157,-0.7225925474127888,2.552937953586152,-0.06794155425526298,0.0019584822583299834,0.05965548357514037,-0.008037275542596466,-5.89576239865648,-0.6347872631068339,-0.03852953672366783,0.006655057490437383,-0.004666774461536757,-0.6453362921166639,-0.14232495024145236,-3.226449057755941,0.000973794812694651,-0.033755549670203444,-0.5010818206429652,-0.021626427815536958,-0.3235389206341767,-0.6851495205054807,-0.05013478083077207,-0.003446946726106019,-0.006964872244720277,-0.9247978472213061,0.35154770110157285,-3.0478354483897743,0.025050427610993947,-0.04420395269690934,-0.6161071739503223,-0.03487766344365444,3.977157230945836,-1.5135310910447655,-0.05815127027267559,0.0011939691880843424,0.048579115635547114,-1.1237754242799733,0.27000096359679626,-7.4674264591478785,0.02727499787525785,-0.054000549048065644,-0.552876540632067,-0.030937953570523917,0.8241334616653071,-0.16079428987307118,-0.0036473863082480485,-0.0019778554068849534,-0.08173921171938117,-0.08844286868444069,0.01889117609901384,-0.5180209879600968,-0.012230558073689606,-0.0033222068652391298,-0.15743263143759903,-0.0074640136743918915,-1.9640691084377888,-0.0474580854515955,-0.014882458085451609,-0.0009479845406980509,-0.14094104921579237,-0.10443482963764199,-0.8638787834248267,-0.05276672592800953,-0.062063290651839395,-0.009249173201730673,-0.20852426799771645,-0.01403748080043266,-7.173489808085239,,,0.4496825396825398,1.375,0.7166666666666667,0.016666666666666666,0.6583333333333333,0.058333333333333334,0.7005297044367126,0.01962317187460935,0.031089838541276015,1.2050191938319834,0.29005317978180756,0.18746410042268633,1.905548898268696,0.47751728020449385,2.0441813227382193,1.481860354670099,0.13750983707420114,0.25572556336415897,0.16908556762976043,0.5623209680681206,9.629831198976753,1366.0,312.4497999999999,175.0,584.0,7141.558102555238,5541.837447449311,70.27043076303698,312.8112999999999,412.3125,367.5010039999999,11181.267085685258,1417.0,311.704,218.0,522.0,6734.2499646910965,5555.192236505602,88.04861402000004,318.145,186.25,372.7389519999998,13856.042611032133,2283.0,541.1339,317.0,897.0,11671.563709235694,8957.736224954915,127.91034071199995,546.1341000000001,513.3611111111112,636.9039919999997,20106.156483267852,2285.0,612.7959999999998,342.0,777.0,14307.108218810643,8753.744383011204,137.59904176394295,621.5300000000002,395.86111111111103,742.3809839999999,21271.354299381732,2289.0,690.4009999999998,317.0,807.0,16185.973231645441,8617.110597564799,122.78017149764099,692.6660999999998,519.7361111111111,828.2895120000001,19537.688905077106,2023.0,581.417,283.0,694.0,13502.761050546942,7690.970097649599,112.476173766943,584.5141000000001,428.6944444444444,696.9993720000002,17966.40958915051,1929.0,552.632,281.0,657.0,12768.405447505696,7273.035810059201,116.30347884139599,557.0028,415.47222222222206,663.9888360000001,18137.18506144742,1982.0,553.2049999999999,284.0,698.0,12862.844000818493,7558.996722372801,119.000631367094,558.7766,394.19444444444434,667.3193960000001,18363.091668679248,1912.0,546.2379999999999,257.0,638.0,12789.53553594794,7294.3055485168,110.58313694909398,551.6542000000001,402.9027777777777,658.8017400000001,17200.640580337487,320.7906976744186,12.651390697674415,1.3679514957113768,29.86046511627907,214.79069767441854,130.83163298523968,1549.3302546267073,10.21464253044442,10.949790697674416,173.11854005167953,7.805609674418602,1815.6329615317404,5.921579232017319,-0.6329342347214715,-0.9320001678442712,2.1492698756084385,32.03785830178472,-7.447132568770016,28.129498687902693,-0.3954925836795872,-0.4652667928610059,-17.387792199987977,-0.46693500054083215,21.077118246197045,23.80692266089779,8.221720876149265,0.4171165341232246,-1.2217414818820957,64.13250405624663,62.46987570796949,125.84130952987462,0.21758787884754893,6.72884878312601,106.25464590469326,5.2214336376419705,-370.37556692483764,49.540832882639265,-0.3654405624661988,-0.5152636843563785,-10.701460248783123,19.773391022174145,-66.47851436197656,234.87029172992598,-6.250622991484194,0.18018036776635846,5.488304488912914,-0.7394293499188749,-542.4101406763962,-61.57436452136288,-3.7373650621957792,0.6455405765724261,-0.4526771227690654,-62.59762033531639,-13.805520173420879,-312.96555860232627,0.09445809683138115,-3.2742883180097344,-48.60493660236763,-2.097763498107085,-31.38327530151514,-56.18226068144942,-4.11105202812331,-0.28264963154069356,-0.5711195240670627,-75.8334234721471,28.826911490328975,-249.9225067679615,2.0541350641015037,-3.6247241211465657,-50.520788263926434,-2.8599684023796645,326.1268929375585,-119.56895619253648,-4.5939503515413715,0.09432356585866306,3.837750135208222,-88.7782585181179,21.330076124146906,-589.9266902726824,2.1547248321453703,-4.266043374797186,-43.67724670993329,-2.4440983320713894,65.10654347155926,-13.024337479718765,-0.29543829096809193,-0.16020628795768121,-6.620876149269875,-7.163872363439696,1.5301852640201212,-41.95970002476784,-0.9906752039688581,-0.2690987560843695,-12.752043146445521,-0.6045851076257432,-159.0895977834609,-3.79664683612764,-1.1905966468361286,-0.07583876325584407,-11.275283937263389,-8.35478637101136,-69.11030267398614,-4.221338074240762,-4.965063252147152,-0.7399338561384539,-16.681941439817315,-1.1229984640346127,-573.8791846468191,0.7100918046834949,0.5047434468886202,0.43410661836772174,0.26452690632792647,0.2882894155305146,0.13193599928077054,0.1758506120220817,0.07004925111368518,0.11393105276618619,0.036302289749296626,0.07534313727234279,0.019112538506025067,0.048035248937147966,0.00943930659048815,0.031052427508855923,0.004804473328284408,9.014107515070929,5.688653054535992,4.1245548396029434,2.188224603046957,0.50473270122814,-0.456682911425004,4.022113499013574,0.9772382813944147,7.014102581576096,2.75193406581016,17.43070272644544,10.949024046116701,19.005610356920354,11.699892902152888,1.996572783921879,0.5269594504800987,4.007179750787271,2.2381280253566915,8.0073947648013,1.2189590148761742,4.030637593591954,2.4341451069937343,20.90211315170129,13.302782316811728,0.3119045600789083,0.5872930110333521,0.7280300600741668,0.876423853052889,0.9113297118020857,0.9113297118020857,1.347994558958903,1130.9843821613435,0.0,4.0,2.0,0.0,11.0,0.0,4.0,0.0,0.0,3.606959760845387,2.0006492152569155,1.1797454872837339,0.31418081405411513,0.11057877912008074,0.11057877912008074,-69.2069287349878,1814.0386126383337,78.54337206507871,42.18694447996124,86.62392370482696,,14.0,714.0,29.96838731437938,22.760319511168106,17.068700544215584,11.126902983393991,12.13273413692322,30.462311845459517,24.26546827384644,0.0,10.30076712495354,9.473725907600098,13.490476190476194,41.25,21.5,0.5,19.75,0.0,0.0503174603174602,1.75,0.3038759689922483,0.12114796253542881,-0.18272800645681947,0.02065540194572446,0.23577582714382134,0.0,0.7467331118493907,0.9403174603174598,0.44285714285714245,0.6255851493139619,0.9196620583717353,21.015891133101377,0.5886951562382805,0.9326951562382805,36.1505758149595,8.701595393454227,5.6239230126805895,57.16646694806088,14.325518406134815,0.47822417285617863,0.11295446523120363,0.037063183903988696,0.33356865513589823,0.09523809523809523,0.5549799804924381,-1.599590605511222,-0.08528426907015378,-0.03719978152351678,-0.08418897923743271,0.445020019507562,1.2826585957877017,0.03950997170548684,0.02982926966948143,0.0534441081578209,-5.880402997585783,0.5564375815571988,0.6068184920965377,1.742262226726666,1.0090410402275498,0.42083435328676083,0.8954895595931079,0.5538377305476778,0.974358780032306,0.5846633493832453,0.6019792454628604,0.6500258864409602,0.8213645569308807,0.6895461794983326,0.4780811963313895,0.8151088815366265,0.9845794392523364,0.5970463404071028,0.7125734252453166,0.6841883595812653,0.9385677367919913,0.480959695523542,0.41641024301506613,0.4970061278767385,0.9499537576754228,0.7734624695046997,0.6848300223236067,1.2208991418403952,1.1542817960178788,0.7566516655054892,1.0037844818123038,0.7688419775053685,1.2188288757747512,0.6700887463810132,0.5980969261626011,0.7256832637829455,1.110013919481198,1.1290722546333458,1.1682882528272223,1.01518994453157,0.978779265825224,1.1883541766195036,0.9494885226800671,1.1250241915230503,0.9343165530936488,1.1734343769211213,1.1307045402852403,1.1791439155359411,0.9623156996389427,1.0713618858676626,1.1426950643437563,1.3467629527469793,1.0034476863460222,1.1815813518680882,0.761181752812147,1.0546329504660055,0.827874701188245,1.1468993028095398,1.1226285467901558,1.1956233290752365,0.8364207108188526,1.1195043524702541,1.118226092920673,1.0053320441945668,0.8724121613628297,1.158384088678863,0.8181453470529282,1.1179895558193527,0.8352152782254022,1.1301859863520807,1.0894129177808576,1.115743781582941,0.9074827939713532,0.916485428447151,0.7856638829886001,1.0371831871554456,1.0679300796123228,0.9004459201514207,0.7745217570968933,0.9005573440899655,0.9854377598303494,0.791380930906376,0.805106477810429,0.8392937490684057,1.0037790131617443,0.9467621792083515,0.9188191462727323,1.0085382354887493,1.151606308411215,0.9349217734950198,1.1748312647066024,0.9398390831920126,1.2220398196137314,0.9081211252843319,0.9375064018844165,0.948413584432968,1.151559470129577,7.0,0.13509233751657995,3.7777777777777795,2.888888888888889,1.3644444444444446,1.1669444444444443,0.6213151927437641,0.6189767573696145,0.3834876543209875,0.24438271604938272,6628.923373903104,7024.417162010342,2954.308972038725,2818.9290420534653,15.571134795726215,0.4914392396544773,7.91886815115715,0.9663333823092979,1.0,0.09523809523809523,1.819304993856711,3.4256155394451824,4.246519267418364,5.112083940647983,5.315685975582017,5.315685975582017,0.21212121212121213,0.006432968453170475,0.07870370370370375,0.06018518518518518,0.031010101010101012,0.028462059620596208,0.015532879818594102,0.015096994082185719,0.010091780376868094,0.008146090534979425,0.4657829749065961,23.168044077134986,9.868055555555555,5.506763787721124,167.81577986811675,1.0,4.339863852600904,176.7856593538937,,135.15524107413168,132.09848925520942,135.23856062686485,134.9534617342002,216.81365804720318,134.07542883561797,135.430894431611,178.97452243701778,0.0172554544824152,-0.046766077279905824,-0.6368775142492853,0.06728294731139109,0.13943077183798738,-0.053209226630401944,0.016971827721207228,-0.036193101030203456,-0.039719782631319374,-0.09388830189597584,-0.05591910639951082,0.010851600513655012,0.04254893431926927,0.3725903932858071,0.17482112022762308,-0.02345794392523359,0.17118666089216117,0.27375689850641793,0.04656787489196629,0.012212897661448271,0.3523239310085569,0.35189373882488323,0.3835218614708712,-0.11695571895274165,0.07218087889504574,-0.013500787797508863,-0.17605139236984088,-0.16750474062034398,0.04302751991262923,-0.23749210209930938,0.07085405560007853,-0.28600969875048576,0.007690990579945545,0.014817510550662417,-0.04427621451073777,-0.1396305247335623,-0.0850892887838579,-0.130955569921832,0.20919416586477113,-0.00672030060699491,-0.1291930277310212,-0.04677747056075423,-0.08954663414672205,0.004099328666771089,-0.13255857357410716,-0.12446106743515406,-0.11913693290554593,-0.0076624372227373175,-0.09184003649518876,-0.17039988940658346,-0.1083508513914673,-0.01002963300661043,-0.1851398028921823,0.1155420199415616,-0.08458940493118873,0.10545336110023168,-0.17358961631757935,-0.15303160754449097,-0.19213611628470886,0.09419181329820843,-0.20287943941871622,-0.19764662095090418,0.03753106396577899,0.06995543988327618,-0.22497409695687218,0.088740323496322,-0.207250414677227,0.11481800808403425,-0.21206100401170117,-0.1373260844279413,-0.1704328116601113,0.01951811825541629,-0.021553475567298,-0.012396867269579783,-0.062171636028531506,-0.11770701126879735,-0.01770581032887948,0.006208900353244391,-0.01437711709028172,-0.05148628506589271,-0.013046358524060463,-0.03910385998978439,-0.04111819593679047,-0.046515443072577475,-0.00636146150500218,-0.05058303177626586,-0.02979881624298236,-0.20295950155763245,-0.020907319185794727,-0.28392818189052504,-0.0014644839007878865,-0.26126430661426026,-0.0363216483908581,-0.05179424180232287,-0.0773304968600757,-0.16989119953376264,10.58464128249619,21.925260108032536,10.297839857403824,19.6652228256042,36.850297631814875,45.47311094063862,49.28308913558675,50.18557580075374,50.18557580075374,61.32543968214658,44.45581064010297,4.125295112226034,7.671766900924769,5.072567028892813,16.869629042043616,9046.809196197326,8519.015898351372,1264.684553657141,137.0,48.0,62.0,81.0,99.0,100.0,116.0,124.0,132.0,414.08274155600037,33.0,5.093750200806762,5.948034989180646,6.844815479208263,7.717351272185329,8.613775289262481,9.493035027916918,10.388410581979008,11.271274197600277,12.165922300402958,0.8217054263565888,1.056186046511628,1.1339589221568511,0.802249506944216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7076634034257069,1.039033287733698,1.0532529345009234,0.7171318192361036,11.0,1.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,14.790514511606428,11.381314269532023,0.0,0.0,6.290026729335213,0.0,14.573052889090853,13.171245143024459,0.0,24.26546827384644,36.39820241076966,17.447681337993632,11.126902983393991,349.294958049028,-1006.755113854552,-53.67646804244911,-23.41290962452446,-52.987111255502725,280.0880293140402,807.2834987837819,24.866904022629605,18.774034855436785,33.63681244932424,0.5,0.822914581396905,0.1446522848011438,129.24813299367662,0.14432669853081487,0.9820802553270452,0.17708541860309493,7.0,0.12121212121212122,0.3352775944594673,0.6313026905804283,0.7825860807360289,0.9420999843802564,0.9796215658249519,0.9796215658249519,4.870000000000003,,2.285714285714286,2.684924355060209,2.2041454949781247,2.3854295921115636,-11.360154697310909,2.4351415892190453,2.215005187099923,-3.8746061646210825,98.9777,32.234045418768204,0.0,4.9839785209472085,0.0,12.466325246778688,5.316788604006331,89.11432022301717,0.0,0.0,4.204692619390966,0.0,5.556828061699537,2.3978952727983707,7.095893221097532,4.844187086458591,8.715880102296456,7.018401799069201,10.377140763947736,35.33333333333332,15.20914078598991,4.019780486268582,0.0,0.0,0.0,0.0,-0.0806008541016916,0.0,45.416000000000004,0.0,24.565693973357767,0.0,0.0,0.0,0.0,0.0,-1.468537193573216,48.760233652744596,5.316788604006331,24.67649419554305,0.0,16.922589096850906,15.650024425043572,0.0,38.13290706426684,66.86051425622918,0.0,0.0,0.0,34.49672879860129,30.429526347305394,38.33327626070774,353.5713187077874,,270.1581011958824,264.01798355341487,270.33017822073117,269.7478948289263,438.00332118522874,267.98851489862136,270.7141218507487,359.2405802622426,38.33327626070774,353.5713187077874,,268.07692831523616,261.5888042973328,268.3766793604509,267.5734681255858,444.9874707917171,265.7778454644083,268.6975987719271,361.8236510386566,4.840109889611859,264.8464790863261,,205.28981759642966,200.51955795341428,205.65183175250564,205.0912896432734,331.31621948305644,203.6295724273464,205.66407967303974,274.14843295921395,1.2777758753569246,11.785710623592912,,9.005270039862747,8.800599451780496,9.011005940691039,8.991596494297543,14.600110706174291,8.932950496620712,9.023804061691624,11.97468600874142,2.4580265740761362,176.7856593538937,,135.15524107413168,132.09848925520942,135.23856062686485,134.9534617342002,216.81365804720318,134.07542883561797,135.430894431611,178.97452243701778,44.678431372549014,0.0,0.0,0.0,38.80628613138936,0.0,0.0,45.289876183539704,0.0,2.6990484851347945,10.396079604017917,0.0,-1.219617172550073,0.0,-4.51060757926668,0.0,0.0,30.836668227152455,517.9284375842128,78.23011473583857,147.30146819614285,182.60032849898965,219.81960944786326,228.57449695002674,228.57449695002674,962.0,140.53636933854264,111.45454977885534,80.21091892675838,77.52000000000001,77.52000000000001,1.0,8.55273527168871,6.044394119358453,4.268396923817306,5.405111691063791,,5.40612720103996,5.405652437495183,5.406056367230793,5.406789681684571,5.38894299081638,5.406086924146331,5.4058319768355245,5.404087338991205,0.14227989746057687,0.18017038970212637,,0.18020424003466534,0.18018841458317278,0.1802018789076931,0.18022632272281902,0.17963143302721268,0.18020289747154436,0.18019439922785083,0.18013624463304018,2.5498506177405833,2.7859574039424064,,2.786145265849685,2.7860574424642746,2.7861321632587566,2.786267800897836,2.7829615487578683,2.7861378155914562,2.7860906551728126,2.785767870550931,264.7300000000005,419.03601838717077,192.80100958655387,,191.78809103998776,191.78559759182548,191.81447422327588,191.69295271690973,194.2815934097716,191.7719018530861,191.83378338038,192.40916418565828,13.967867279572358,6.426700319551796,,6.392936367999592,6.392853253060849,6.39381580744253,6.389765090563658,6.476053113659053,6.392396728436203,6.394459446012666,6.41363880618861,7.1365691676335405,6.360270907275626,,6.355003358678739,6.3549903575358755,6.355140913459227,6.354507176003852,6.367920907727069,6.354918943269357,6.355241574190706,6.35823645666799,49.20236573540728,28.585474459626347,2.6990484851347945,-0.08007595278314006,-1.4690620948917676,13.836503327457116,-4.357587293283958,0.0,0.0,336.00237029544365,219.84030416775482,-633.6345411008238,-33.78305580765488,-14.735687002344735,-33.34918637372756,176.28264061430525,508.09050011344647,15.650806340233318,11.816058142173171,21.17043750472693,2574.0,48.0,2.927473260902004,0.7158254420013623,0.28867513459481287,0.013498731178900972,0.8171011106656044,0.11385312764484098,0.14433756729740643,0.004499577059633658,0.0,0.0,0.0,0.0,0.07856742013183861,0.02946278254943948,0.4952340867985052,0.13514908178937532,0.6990155961130733,0.14738583767926883,21.302754140504845,15.142303406658604,14.325518406134817,8.729387908821574,13.837891945464703,6.332927965476986,10.902737945369065,4.3430535690484815,9.228415274061081,2.9404854696930265,7.458970589961936,1.8921413120964816,4.803524893714797,0.943930659048815,3.602081591027287,0.5573189060809913,5.423311669883042,1.3565339159587158,8.209002821846978,1.6962185211216463,12.072335602937862,1.9477130390456343,90.72399664544058,61.937545890253965,41.22799681442901,32.441166367411725,30.5814991207522,30.5814991207522,162.0,191.0,50.817308999999995,23.298690999999998,0.5581395348837209,219.09,9.8125,6.3888888888888875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,18.0,18.0,43.0,0.0,0.0,46.0,18.0,2.0,11.0,35.0,20.0,33.0,26.0,0.0,0.0,0.0,21.0,0.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,6.0,1.0,2.0,30.0,9.0,0.0,2.0,4.0,0.0,4.0,4.0,0.0,0.0,3.0,1.0,3.0,3.8066624897703196,7.2346956239779905,4.400603020246817,4.9469852670198,5.48427812673453,5.973014130163166,6.065092493353415,6.418364935936212,6.648620170174999,6.9632786763552845 +62978,COc1cc2nc(N3CCN(C(=O)C4COc5ccccc5O4)CC3)nc(N)c2cc1OC,0,24.448275862068964,6.43318103448276,3.5344827586206895,8.931034482758621,164.1839350644608,96.6258040172414,1.4573455624349139,6.481612068965518,4.0522030651341,7.916555655172411,220.97426037824212,26.741935483870968,6.603758064516129,4.193548387096774,8.435483870967742,149.2409105807146,102.2465474354839,1.7217874795161292,6.728524193548387,3.2970430107526885,7.987660064516126,262.39260592252873,22.90740740740741,6.626681481481483,3.8425925925925926,7.074074074074074,159.51263371821426,86.19626341666665,1.4684794184461847,6.699810185185185,3.182355967078189,8.079312703703705,221.75488390553272,21.55223880597015,6.58479776119403,3.5671641791044775,6.2611940298507465,159.49408006182335,80.09716023134328,1.4072972557540078,6.654115671641789,3.3378938640132656,8.051381761194026,208.41447936682192,18.889655172413793,6.5095986206896574,3.1241379310344826,4.8068965517241375,160.82504759826824,68.11618584827585,1.311507853520621,6.573217241379311,3.351724137931034,7.9995217655172395,188.02051256412952,16.155844155844157,6.347985714285714,2.8376623376623376,3.883116883116883,164.8043468581164,57.188800662337634,1.2010864871248375,6.397354545454545,2.952741702741702,7.888028,166.97324753363387,15.32876712328767,6.1975,2.767123287671233,3.5136986301369864,163.17826089602272,53.97562551369862,1.198689838027904,6.2577493150684935,2.7732115677321154,7.747325726027396,162.7764432945687,14.141843971631205,6.129630496453899,2.645390070921986,3.219858156028369,166.52596957199623,49.32507097872341,1.1436473249870072,6.17995035460993,2.761623325453113,7.693854070921986,152.63143972239155,14.487603305785123,6.116033057851239,2.743801652892562,3.396694214876033,164.9843330162432,50.765732132231385,1.163533432116314,6.174402479338842,2.5798898071625347,7.678754314049586,156.65513711970024,7.609988109393578,0.15297220570749098,0.033795201546174235,0.6209869203329368,4.50653983353151,1.529655087907379,36.032195429548146,0.21720124212259956,0.14076709274673002,1.0894520412207689,0.09604697384066584,47.34598004474218,0.5602009896053076,-0.006346927620727954,-0.01495301597614604,0.2794580184879751,1.4945725135207708,-0.4671677635317603,2.62031472534617,-0.03366067253824883,-0.001618455371869025,-0.0792709758394811,-0.007940458823980675,-1.614599947389091,0.5729620821773016,-0.011253367904170456,-0.004365653620212968,0.023329810190690116,0.2412251728541859,0.27202444689619293,2.8683498490278314,0.03192888831276586,-0.008483328378913881,-0.006819360647475354,-0.010342011516272521,7.245301674073821,0.05084565282978636,0.0038132034536000727,0.003282496359837947,-0.10490354411060042,-0.31817133121550406,-0.059912429403899604,0.212867388259357,-0.001487406016514131,0.0036139546027296066,0.049286736156711454,0.004117702433137515,-0.18679635399960498,-1.457788347205708,-0.015337437574316232,0.0005188848055818892,-0.10719381688466113,-0.9812128418549343,-0.23059112116240665,-6.972013349881091,-0.04312061830335225,-0.015791171224732368,-0.15312623860483557,-0.00798713079667063,-10.38358123384524,-0.8992850193801442,-0.014423963432524648,-0.0012430639472993897,-0.05672359744892444,-0.6798492827030284,0.07227233788623041,-4.213079066471579,-0.00163757414624771,-0.014849851367419703,-0.12756096295038039,-0.008144444060101612,-2.86961724113177,-0.6043197107162056,-0.002514541560112729,0.0004909609881456132,-0.059697359633834476,-0.3603423843109149,-0.1887234217771873,-2.9111957163927484,-0.021817609212979015,-0.0034786302998713373,-0.01926952403187477,-0.001143244506702715,-5.282845202238917,-0.18861369022018676,0.0015917096752430552,0.0013450717852392124,-0.009712770173973914,-0.2473077474468929,0.09979417615093453,-0.9022890314068014,0.003551226862316518,0.00046352598645647017,-0.009104360451224614,0.0018634463109604437,-0.31430033152617687,-0.21300891304134187,-0.004486597272039409,-0.002853307840670992,-0.027655486876111683,-0.2275429683277482,-0.026902428684639244,-1.0320704608961186,-0.011024497562946984,-0.0036807291103664965,-0.055024695664896706,-0.002548536679081371,-1.6482210903586578,,,0.4595959595959596,1.2878787878787878,0.5757575757575758,0.045454545454545456,0.7121212121212122,-0.13636363636363635,0.8564839569803223,0.010515161182125954,0.023545464212428983,1.0583391890152145,0.2648168179745545,0.22206843182432243,1.914823145995537,0.48688524979887693,2.0755033564818586,1.4639591520695645,0.3163231951491646,0.2952210092631294,0.0,0.6115442044122941,7.779061532758633,1418.0,373.12450000000007,205.0,518.0,9522.668233738726,5604.296633000002,84.526042621225,375.93350000000004,235.0277777777778,459.16022799999985,12816.507101938043,1658.0,409.433,260.0,523.0,9252.936456004305,6339.285941000002,106.75082373000001,417.1685,204.41666666666669,495.2349239999998,16268.34156719678,2474.0,715.6816000000001,415.0,764.0,17227.36444156714,9309.196449,158.59577719218794,723.5794999999999,343.6944444444444,872.565772,23949.527461797534,2888.0,882.3629,478.0,839.0,21372.20672828433,10733.019471,188.57783227103704,891.6514999999997,447.2777777777776,1078.8851559999996,27927.540235154138,2739.0,943.8918000000003,453.0,697.0,23319.631901748897,9876.846947999999,190.16863876049004,953.1165000000001,485.99999999999994,1159.9306559999998,27262.97432179878,2488.0,977.5898,437.0,598.0,25379.869416149926,8807.075301999996,184.96731901722495,985.1925999999999,454.72222222222206,1214.756312,25713.880120179616,2238.0,904.8349999999999,404.0,513.0,23824.026090819316,7880.441324999998,175.008716352074,913.6314000000001,404.88888888888886,1131.1095559999999,23765.360721007033,1994.0,864.2778999999998,373.0,454.0,23480.161709651467,6954.835008000001,161.254272823168,871.373,389.38888888888897,1084.833424,21521.03300085721,1753.0,740.04,332.0,411.0,19963.104294965426,6142.653587999997,140.787545286074,747.1026999999999,312.1666666666667,929.1292719999999,18955.271591483728,441.37931034482756,8.872387931034478,1.9601216896781057,36.017241379310335,261.37931034482756,88.71999509862798,2089.8673349137925,12.597672043110775,8.164491379310341,63.1882183908046,5.570724482758618,2746.066842595046,34.732461355529075,-0.39350951248513316,-0.9270869905210545,17.326397146254454,92.66349583828779,-28.96440133896914,162.45951297146252,-2.0869616973714273,-0.10034423305587954,-4.914800502047829,-0.49230844708680177,-100.10519673812365,61.879904875148576,-1.2153637336504093,-0.47149059098300056,2.5196195005945325,26.052318668252077,29.378640264788835,309.7817836950058,3.4483199377787126,-0.9161994649226991,-0.7364909499273382,-1.1169372437574323,782.4925807999726,6.813317479191372,0.5109692627824097,0.43985451221828487,-14.057074910820456,-42.63495838287754,-8.028265540122547,28.524230026753838,-0.19931240621289353,0.4842699167657673,6.604422644999335,0.551772126040427,-25.03071143594707,-211.37931034482767,-2.2239284482758537,0.07523829680937394,-15.543103448275865,-142.27586206896547,-33.435712568548965,-1010.9419357327582,-6.252489653986077,-2.289719827586193,-22.20330459770116,-1.1581339655172416,-1505.6192789075596,-138.4898929845422,-2.2212903686087957,-0.19143184788410603,-8.735434007134364,-104.69678953626637,11.129940034479484,-648.8141762366232,-0.25218641852214735,-2.286877110582634,-19.644388294358578,-1.2542443852556482,-441.9210551342926,-88.23067776456601,-0.3671230677764585,0.07168030426925953,-8.715814506539834,-52.609988109393576,-27.553619579469345,-425.0345745933413,-3.1853709450949363,-0.5078800237812152,-2.8133505086537163,-0.1669136979785964,-771.2953995268819,-26.59453032104633,0.22443106420927078,0.18965512171872895,-1.3695005945303218,-34.8703923900119,14.070978837281768,-127.222753428359,0.500722987586629,0.0653571640903623,-1.2837148236226705,0.26274592984542255,-44.31634674519094,-25.774078478002366,-0.5428782699167686,-0.34525024872119003,-3.3463139120095136,-27.532699167657533,-3.2551938708413486,-124.88052576843036,-1.333964205116585,-0.4453682223543461,-6.657988175452501,-0.3083729381688459,-199.4347519333976,0.6954248033468733,0.5601342998111787,0.43424900657737686,0.2888025924288461,0.270801658310059,0.14735385029271003,0.17652454464665926,0.07941828442020661,0.11232108799363386,0.04205899052685748,0.07073139227985771,0.0222037808315836,0.04559384800411138,0.011295468511130809,0.02930694115398682,0.006117891664101886,8.022983955291778,5.680050337775073,3.544965522346218,2.1763452040298126,0.46551945533734407,-0.5282092944688279,3.246456028014836,0.9779357148728329,6.022631333587274,0.9966232906142257,14.561126755108301,10.943757355554592,16.01149554695763,11.693809445019095,2.00334461720274,0.751459938234122,3.4903276871362885,2.225202575010886,7.008272378800058,1.2604605035406782,3.7032082190238076,2.420602002381867,20.902823442845058,14.702217149935567,0.270281052048255,0.5810625228243547,0.7198034906532482,0.7857152981591008,0.8193583972497838,0.8361799467951252,1.1212403393916264,1195.3208218040518,0.0,2.0,5.0,0.0,11.0,1.0,1.0,0.0,0.0,4.195820873837121,2.284593419136373,1.431371551873343,1.0260306035228792,0.8191340517987413,0.7156857759366719,388.21132445934387,2764.2931855005327,85.33284621879166,47.66022733621608,92.0139006812525,,18.0,1009.0,6.103966387748303,4.794537184071822,12.514061693864424,71.84619994768849,0.0,0.0,37.318606018790376,23.099010936235306,9.967957041894417,24.681119292362382,15.166666666666668,42.5,19.0,1.5,23.5,0.0,0.040404040404040366,-4.5,0.18310597448528487,0.05625615763546832,-0.12684981684981655,0.03295815295815285,0.189806451612903,0.0,0.6281609195402291,0.8767676767676764,0.44505494505494425,0.5719047619047608,0.8438095238095236,28.263970580350637,0.3470003190101565,0.7770003190101564,34.92519323750208,8.738954993160299,7.32825825020264,63.189163817852716,16.06721324336294,0.524193548387097,0.11428571428571428,0.0,0.3824175824175824,0.34782608695652173,0.23106614753546198,-0.8849682617723319,-0.05722106896435517,-0.015258073478833312,-0.05899788411815547,0.7689338524645379,2.944966461298752,0.06100779057416655,0.05077528381549573,0.06848759212322678,-4.239608530168149,0.7227709173387097,0.837128617058078,1.4903829028359419,0.6381352398894363,0.48011426504383353,1.530614993730656,0.7279261944186046,1.2361700443296357,0.7881551944104247,0.7440435281061561,0.8992824233918042,0.9979767584499705,0.8591438802083333,1.1514653441253504,1.3786405899365395,1.0990106909206958,0.9793132512459689,0.931444808623646,0.8526744410036685,0.8355281215363682,1.1149087036906034,0.769587420932381,1.2116442481885787,0.7731514677480926,0.9338601912313432,1.0413611051850467,1.0887363455833905,1.3050341876067248,1.1107121056984208,1.1229628937611804,0.9327131130807118,0.9905509076798611,1.0206387034272644,0.9501247712188278,1.0492979895328416,0.9383109579339187,1.144453125,1.1576837864859695,1.0156088605274702,1.1787458113930114,1.2212137203166227,1.21161405436546,1.144569228391112,1.1670303230963297,1.1535187381015986,1.5463880488414923,1.1554303027879556,1.15431002278583,1.1194982751623377,1.148514248953815,1.0275243196218358,1.0481992875482586,1.166836857074324,0.9437301703095019,1.1165410047686335,0.9559516788548644,1.1545099291209708,1.259216396963958,1.1349598849754807,1.0159867524141413,1.0570071703767123,0.9315923781568718,0.9080695541846403,1.1002150861984172,1.024648498210865,1.1042601411071093,1.0598451781263707,1.0776999253503592,0.9465246228161791,0.923262721591594,0.904352697377344,1.102702700391049,1.0225922539893617,0.8741547919025243,0.820136013124414,0.9877066294572382,0.9952520630999832,0.9098251992710972,1.0249114861256348,0.9296058458129577,0.8948462989539168,1.0159803865126473,0.808136263428301,0.9970592871420867,1.0128467200413225,0.8931146810700219,0.9528467684844252,1.000553865386974,0.9903437711245339,0.9943543385828184,1.0160565393892014,1.0139964158922763,0.9036940743223714,0.8642736888511212,0.8411917104681182,1.0332077105027682,6.5,0.20212223242526273,4.4444444444444455,2.1875,2.5066666666666673,1.3541666666666667,0.8081632653061224,0.4965277777777778,0.26203073822121437,0.25500000000000006,7060.1855948618995,7787.273833573871,3345.4636480571994,3090.852721114268,18.707241104940845,0.4538237742144364,10.217450341557146,0.8309108906410255,1.0,0.34782608695652173,1.662160121290451,3.573387575991199,4.426609443254229,4.831950391604693,5.0388469433288305,5.1422952191909,0.17567567567567566,0.007486008608343064,0.08385744234800842,0.03707627118644067,0.04820512820512821,0.02943840579710145,0.019711299153807867,0.013792438271604937,0.008188460569412949,0.008499999999999999,0.43193112981552323,24.68371073776479,10.947668209327162,5.259313367421475,190.357535597191,1.0,4.442518924986388,223.0413861568356,,171.83283682815903,166.76633730746852,167.69235578026007,171.89185860158224,280.3032610474749,169.91596725381478,172.11459049733466,236.62597334643408,0.07361391129032246,-0.04149072435331399,-0.4424597366497667,0.4500223907101716,0.33164524640394943,-0.30540725633179305,0.07272148405360236,-0.1549745858232662,-0.011497398577243979,-0.07276224454144417,-0.0826726601210076,-0.03410215494247424,0.07529079861111104,-0.07356478813993712,-0.12917968884571362,0.03756892363881358,0.053527802208540996,0.1778338457124552,0.07960519237958077,0.14700140754601923,-0.060264996693347894,-0.0062594408835418055,-0.10767659930055769,0.15302886680615707,0.006681436567164115,0.02492742675680293,0.09712906595195435,-0.16893036016661556,-0.07060213444650103,-0.03916728017808373,0.005907699648098473,-0.0068480548360518225,0.025673291478938765,0.045239931903274924,0.04287175606353252,-0.003945347711106234,-0.19156250000000008,-0.10026290399214112,0.015353801186033444,-0.17261847774054578,-0.217730870712401,-0.15074713442614263,-0.19349399243554563,-0.19852841485599218,-0.11217942287935183,-0.14055344596284597,-0.08315858873305718,-0.21931283762703205,-0.11817167207792208,-0.09429139996912728,-0.036782261694785184,-0.09134427085599899,-0.15085837645204406,0.04724747327523453,-0.11692540563366977,-0.007539432694972245,-0.10549234965119118,-0.11708726784103675,-0.08479646712880914,-0.060609522464630965,-0.0794113869863014,-0.01643789829977978,0.01452753543945626,-0.09613303868272821,-0.07995988000144577,-0.1233764547767219,-0.08079429192941784,-0.10044882340343171,-0.02471195669381433,-0.017687354103520334,-0.011902972691250692,-0.11157959339412984,-0.02478501773049642,0.010405221444519643,0.039800673577917466,-0.015640861113091556,-0.05487752390576173,0.06523965888771462,-0.02504118943212882,0.016349938092490385,0.0032928575664374353,-0.008356825364265564,0.01940140575435256,-0.0066383741814861905,-0.027990702479338832,-0.029329493232375495,-0.08442937784444131,-0.044534733294035296,-0.050491724634204815,-0.017587251464277934,-0.028643007970859606,-0.05075706499286127,-0.02614765310944449,-0.05050676265036836,-0.02653427356606974,-0.03481227104816673,10.600760194422355,21.407614792103104,9.443098241301994,16.030124560660166,33.97552257921006,39.46632977955962,42.15139621411758,43.256292765841714,44.119396214117586,68.49161076390133,48.31065201829563,10.438665439922433,9.742293305683269,0.0,20.180958745605704,13913.790964166028,13252.385492159354,1444.9063071992223,230.0,53.0,74.0,97.0,130.0,146.0,170.0,191.0,221.0,451.1855689000007,37.0,5.198497031265826,6.075346031088684,6.966967138613983,7.8567067930958405,8.751949058058614,9.64517008871425,10.541993736136895,11.43674611823141,12.334470257826283,0.6839080459770116,1.0024137931034482,1.1326162452951125,0.6480883902399812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6668369295890977,0.9874915483434754,1.018396664741191,0.6402872568905861,6.0,2.0,0.0,0.0,0.0,2.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,5.0,0.0,4.0,0.0,1.0,2.0,0.0,0.0,0.0,34.48093875406334,12.424744742347947,22.99804733313562,12.052305668734796,5.907179729351506,4.794537184071822,4.9839785209472085,4.9839785209472085,0.0,12.13273413692322,18.19910120538483,37.63161690657671,19.736295800171327,166.77427246591827,-638.7345770321383,-41.29987126213672,-11.012665121243765,-42.58230513547589,554.9855969252621,2125.558608468394,44.03297495665494,36.64756221497232,49.4315955457766,0.5,0.8642602380981238,0.12868158542837776,121.50863614749325,0.06968564732867177,56.27391832369814,0.13573976190187614,9.0,0.10810810810810811,0.283742832671012,0.6100032722815926,0.7556544561916642,0.8248491068208843,0.8601678543375161,0.877827228095832,1.7177999999999993,,1.9642857142857144,2.356910190786412,1.9919188566797452,1.9588287879044064,-8.00238041260485,2.0995257037943698,1.943788966655116,-3.5915955315072723,122.20040000000006,23.741988999272017,0.0,14.867866772744893,0.0,6.103966387748303,57.63907987873095,36.39820241076966,0.0,22.99804733313562,4.31748811353631,0.0,5.659482215759621,0.0,7.214504414151143,0.0,8.861491864286915,0.0,10.554118595992994,39.66666666666667,10.919660076752763,9.168391073158597,0.0,0.0,0.0,1.3611277104498472,3.2669642429210946,0.0,58.14,0.0,12.991396627675694,0.0,0.0,0.0,0.0,0.0,-0.08339983186442268,65.69174222711652,29.58102902321286,11.766202058821523,22.99804733313562,73.88451556056297,4.794537184071822,0.0,0.0,36.39820241076966,0.0,10.902924932081056,0.0,37.58912663391891,38.676541916167665,44.26574122473957,446.08277231367134,,343.619737975665,333.49749673673125,335.4480938597379,343.7379581050616,563.7112344330361,339.7945353453792,344.1822068085444,474.5579814315981,44.26574122473957,446.08277231367134,,341.8996457592819,331.4819255896389,333.6976197129589,342.02164453968726,568.6089025075546,337.96767429339246,342.4780433992547,476.8435422243755,4.935677758176579,346.02100822953565,,271.10548992032176,262.78060098177264,262.54120653732684,271.19711320366605,440.4108585375394,267.8748167467387,271.57664735635655,374.6752641957928,1.341386097719381,13.51765976708095,,10.412719332595909,10.105984749597917,10.165093753325392,10.416301760759442,17.082158619182913,10.296804101375127,10.429763842683164,14.380544891866608,2.46783887908829,223.0413861568356,,171.83283682815903,166.76633730746852,167.69235578026007,171.89185860158224,280.3032610474749,169.91596725381478,172.11459049733466,236.62597334643408,57.274509803921575,0.0,3.1430275276609914,0.0,0.0,6.221738163965798,0.0,59.06700655498908,2.3979243978490907,0.0,22.29180629950053,0.0,-0.651427246076486,3.8061242913398394,0.0,0.0,0.0,37.13666089965399,623.7883565696924,96.40528703484617,207.25647940748954,256.74334770874526,280.2531227130722,292.2531227130722,298.2531227130722,1382.0,148.8078462530318,97.97151282148806,69.60708520372698,112.27000000000001,112.27000000000001,1.0,9.022063068001938,6.20945336562895,4.720839454754576,5.6588952588954085,,5.667584898115434,5.666652489052211,5.659365020668622,5.667574162840979,5.651600548593029,5.666918805940639,5.667666415829408,5.6650754142151465,0.14305574105316898,0.17148167451198207,,0.1717449969125889,0.17171674209249124,0.17149590971723097,0.1717446716012418,0.17126062268463724,0.17172481230123146,0.1717474671463457,0.17166895194591353,2.745909102839955,2.9271511576959215,,2.928685551577242,2.9285210219254485,2.927234167233055,2.92868365742218,2.9258612564505686,2.9285680180366556,2.9286999346220846,2.9282426751700887,321.18000000000114,419.53448516570586,226.10425886797208,,224.7655904048032,224.85829755737197,225.84060569407688,224.767416381493,227.0944683849687,224.8434084897276,224.75633594465273,225.31426665626194,12.713166217142602,6.851644208120366,,6.811078497115248,6.813887804768847,6.8436547180023295,6.811133829742213,6.881650557120264,6.813436620900837,6.810798058928871,6.827705050189755,7.233068196401984,6.614918683792901,,6.608980507181639,6.609392883642786,6.613751934375093,6.608988631064256,6.619288559669369,6.609326666114813,6.608939332504235,6.611418636836412,22.29180629950053,25.96591199217413,0.6943909803843622,6.888474894031282,3.183564411056672,10.919660076752763,-0.651427246076486,2.3979243978490907,3.1430275276609914,387.08863157412657,120.37097711281032,-461.012984894347,-29.808589688032367,-7.948499739557708,-30.734198992956472,400.5663319507635,1534.1429036314476,31.78123425362039,26.45073971778358,35.67774194491738,3556.0,59.0,2.0642351136133454,0.8413366072205806,0.0,0.0,0.6067165163387901,0.12897308649876327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3458191595217549,0.1281214565471054,0.6657090657886628,0.16481225537955307,22.94901851044682,18.484431893768896,16.067213243362943,10.685695919867305,14.352487890433126,7.809754065513632,13.062816303852784,5.876953047095289,10.895145535382484,4.079722081105175,9.195080996381503,2.886491508105868,6.656701808600261,1.6491384026250981,4.982179996177759,1.0400415828973206,5.686504460142897,1.887374364590589,8.939637992484007,2.477070978598808,13.855529530582384,3.1422852420316385,108.97058398182006,57.120855962323226,40.88283053877157,33.396510275622205,30.508943728938515,28.779503972502013,180.0,217.0,64.58982499999999,38.022175000000026,0.46551724137931033,313.1,9.583333333333334,7.277777777777779,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,16.0,17.0,58.0,0.0,0.0,62.0,17.0,1.0,9.0,53.0,18.0,37.0,44.0,0.0,0.0,0.0,23.0,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,9.0,1.0,3.0,33.0,10.0,0.0,5.0,5.0,0.0,5.0,4.0,0.0,0.0,0.0,1.0,3.0,3.8607297110405954,7.607943046031188,4.465908118654584,5.070475294452272,5.6325549653678335,6.22715406759071,6.552061995913812,6.919436783755975,7.262913448199455,7.6145279593738655 +441314,OCCN1C[C@H](O)[C@@H](O)[C@H](O)[C@H]1CO,0,21.741935483870968,6.546932258064516,2.6774193548387095,6.516129032258065,170.8532717727333,85.40071322580644,1.1063109478204196,6.539019354838709,7.00358422939068,8.112846193548389,169.0911912052877,22.387096774193548,6.7346774193548375,3.5483870967741935,4.612903225806452,154.2532165593726,82.48512638709677,1.450886182258064,6.815838709677421,3.53494623655914,8.209422967741936,219.50605205950998,18.303571428571427,6.553214285714288,3.1964285714285716,3.6785714285714284,160.86928792575787,65.3912570535714,1.252832848774929,6.612276785714288,3.151289682539681,8.074537928571427,182.37903685296607,15.642857142857142,6.458916666666666,2.5,3.5238095238095237,167.15610829704744,55.13332078571427,1.0561801741343093,6.481096428571429,3.811838624338625,8.033766952380953,147.78236677162104,12.861702127659575,6.2640957446808505,2.0531914893617023,2.3191489361702127,167.48897369817848,43.52390734042553,0.9493175095571913,6.28854574468085,3.58599290780142,7.891747234042554,127.53090316696263,9.73913043478261,6.178521739130433,1.608695652173913,1.4782608695652173,172.41647060857144,30.76965555434783,0.7725450209349675,6.179131521739132,3.414855072463769,7.881938130434782,99.81131747049662,8.954545454545455,6.264242424242424,1.303030303030303,1.893939393939394,178.28094377547075,28.168816454545457,0.6286073262472576,6.225672727272726,4.7146464646464645,8.002552363636362,78.87408040071317,5.6875,6.0959375,1.09375,0.78125,183.03878629132603,14.87088253125,0.5236178985400625,6.0444249999999995,3.8385416666666665,7.896943125000001,59.61004207319606,2.5555555555555554,5.475555555555557,1.0,0.0,184.97690195133814,4.374048,0.46464736732699996,5.4462222222222225,2.111111111111111,7.330175999999999,42.40149691860505,8.688865764828305,0.22089594172736718,0.037099984811479365,0.5702393340270553,3.9146722164412076,1.1141652372089084,40.71536975442249,0.1818919076108866,0.20161914672216438,3.2157474852584103,0.1466130863683662,42.662471279009054,-0.688865764828304,-0.051390010405827295,-0.017158567991977482,0.22372528616024956,-0.3298647242455774,-0.1566660243814864,-2.965517419354859,0.01519865313215416,-0.044535067637877304,-0.734217828650711,-0.03595970863683659,2.3664105330580067,-1.288520142708488,-0.04822929426192955,-0.006443484838645484,-0.036253158911847806,-0.718819681878995,-0.18442503278649441,-5.938087734261198,-0.016241159293046026,-0.0424545729894456,-0.5214470500305567,-0.031578872082652,-3.7898353829511104,0.007754818889054023,0.02140770650611959,0.006857548502481833,-0.11056191467221649,0.1536841583667807,0.11433189828654752,-0.07604556471433865,-0.0018709197163112653,0.017119524552797166,0.17385611603873827,0.015246953570189781,-1.7188437438898863,-0.5286049549449818,0.0030876547036553354,-0.001706310672876997,-0.1326964376646667,-0.19264064471848918,-0.13153151606470734,-2.633109147009985,-0.03675284600105196,0.002159130559922079,0.07199178111846646,0.0026482231717847014,-6.826947836034804,-0.7309415011536892,-0.026686299371126064,-0.004137162171801356,-0.03938379405510564,-0.3732977423879111,-0.14645700569728395,-3.4023412421503845,-0.02289581929426634,-0.02322661516536214,-0.434171203506814,-0.01928358426457947,-3.9391836598190006,0.6039006085832308,0.025904840286317912,0.007548238438299221,0.0671018194431306,0.36538643458518577,0.045433882651317245,2.7806778975814423,0.01304500489012212,0.022510276542742753,0.4521410777914418,0.018769290953236845,2.119369554129488,0.11153746097814811,-0.020214691727367295,-0.00969243822873417,0.16161550468262223,-0.14551899063475549,0.24620284182328625,0.7723513796501158,0.05274211014554574,-0.018038501560874023,-0.27007096196092034,-0.013290493626430805,8.389507781504646,2.7627471383975024,0.008280043935715213,0.005597855992817757,0.20395421436004166,0.8093421204763553,0.3274371557377008,13.314020589663567,0.07797906344001648,0.013288380159556181,-0.15601032874706144,-0.0012786347554631225,20.627443586486834,,,0.4333333333333333,0.6428571428571429,0.0,0.0,0.6428571428571429,-0.6428571428571429,0.9579550142756961,0.021544478374452565,0.027687335517309706,0.5150229360993029,0.14344984232734895,0.3288780766105624,1.472977950374999,0.4723279189379114,1.936350226339739,1.1568505343009108,0.15639292239782293,0.6231067696410056,0.0,0.7794996920388285,6.680989440129032,674.0,202.9549,83.0,202.0,5296.451424954733,2647.4221099999995,34.29563938243301,202.7096,217.1111111111111,251.49823200000006,5241.826927363919,694.0,208.77499999999998,110.0,143.0,4781.84971334055,2557.0389179999997,44.977471649999984,211.29100000000005,109.58333333333334,254.49211200000005,6804.68761384481,1025.0,366.98000000000013,179.0,206.0,9008.680123842441,3661.910394999998,70.15863953139602,370.28750000000014,176.47222222222214,452.17412399999995,10213.2260637661,1314.0,542.549,210.0,296.0,14041.113096951985,4631.198945999999,88.71913462728199,544.4121,320.1944444444445,674.8364240000001,12413.718808816167,1209.0,588.8249999999999,193.0,218.0,15743.963527628777,4091.24729,89.23584589837598,591.1233,337.0833333333335,741.82424,11987.904897694487,896.0,568.4239999999999,148.0,136.0,15862.315295988572,2830.8083110000002,71.074141926017,568.4801000000001,314.16666666666674,725.1383079999999,9182.64120728569,591.0,413.43999999999994,86.0,125.0,11766.542289181069,1859.141886,41.488083532319,410.8943999999999,311.1666666666667,528.1684559999999,5205.689306447069,182.0,195.07,35.0,25.0,5857.241161322433,475.868241,16.755772753282,193.42159999999998,122.83333333333333,252.70218000000003,1907.521346342274,23.0,49.280000000000015,9.0,0.0,1664.7921175620431,39.366432,4.181826305943,49.016000000000005,19.0,65.971584,381.61347226744545,269.3548387096775,6.847774193548383,1.1500995291558602,17.677419354838715,121.35483870967744,34.53912235347616,1262.1764623870972,5.638649135937485,6.250193548387096,99.68817204301072,4.545005677419352,1322.5366096492808,-21.354838709677423,-1.593090322580646,-0.531915607751302,6.935483870967737,-10.225806451612899,-4.856646755826079,-91.93104000000064,0.47115824709677895,-1.3805870967741964,-22.76075268817204,-1.1147509677419343,73.35872652479821,-72.15712799167532,-2.700840478668055,-0.3608351509641471,-2.030176899063477,-40.25390218522372,-10.327801836043687,-332.5329131186271,-0.9095049204105775,-2.3774560874089534,-29.201034801711177,-1.7684168366285118,-212.23078144526218,0.6514047866805379,1.7982473465140454,0.576034074208474,-9.287200832466185,12.90946930280958,9.603879456069992,-6.3878274360044465,-0.15715725617014628,1.438040062434962,14.603913747254014,1.2807440998959416,-144.38287448675044,-49.68886576482829,0.29023954214360154,-0.1603932032504377,-12.47346514047867,-18.108220603537983,-12.36396251008249,-247.51225981893862,-3.4547675240988847,0.20295827263267543,6.7672274251358475,0.24893297814776194,-641.7330965872716,-67.24661810613941,-2.455139542143598,-0.38061891980572476,-3.623309053069719,-34.34339229968782,-13.474044524150123,-313.01539427783536,-2.106415375072503,-2.136848595213317,-39.94375072262689,-1.774089752341311,-362.4048967033481,39.857440166493234,1.7097194588969822,0.4981837369277486,4.42872008324662,24.115504682622262,2.998636254986938,183.5247412403752,0.86097032274806,1.4856782518210216,29.84131113423516,1.2387732029136318,139.8783905725462,3.5691987513007395,-0.6468701352757534,-0.31015802331949344,5.171696149843911,-4.6566077003121755,7.87849093834516,24.715244148803706,1.6877475246574636,-0.5772320499479687,-8.642270782749451,-0.42529579604578577,268.46424900814867,24.864724245577523,0.07452039542143692,0.050380703935359816,1.835587929240375,7.284079084287198,2.9469344016393073,119.8261853069721,0.7018115709601483,0.11959542143600563,-1.404092958723553,-0.011507712799168103,185.6469922783815,0.7653698907638801,0.5586506981788888,0.4723279189379112,0.3295859431416945,0.2922145972814073,0.1851051262900509,0.19252652308828425,0.10412870361909907,0.1245601411891396,0.06082393794795936,0.07706748231203553,0.035364240905581205,0.05821809334036044,0.01952126992161074,0.03845721412207353,0.0118190325434345,8.010824432354863,5.812556862985033,3.518466728354495,2.3066135427960455,0.36697764027148244,-0.35795892996707346,3.1855297828543434,0.9871718308244225,5.013955844398953,1.8964452825239348,14.543272867641646,11.076071878083894,16.006339526879295,11.8274029263152,1.8698739232344748,0.7849453550274582,3.4605140957589455,2.35499177181472,6.006884319337131,1.15770393262237,3.6741296622250124,2.5505440647544533,20.765190191677515,14.70715492515647,0.3156892161502843,0.5116963364360071,0.7452832812253509,0.9039270785505374,0.9479099131401035,0.9479099131401035,2.659759423062189,179.11457394522589,0.0,0.0,4.0,0.0,0.0,4.0,0.0,0.0,0.0,3.390209960506212,2.4191522083771275,1.2619166283472176,0.4759641129730152,0.25806451612903114,0.25806451612903114,127.11218979640688,841.8959067782829,76.62917992390184,27.1579324767188,68.91930976997537,,7.0,144.0,24.35373999239287,15.319582184522117,26.303276740850986,0.0,0.0,0.0,4.899909730850478,0.0,0.0,10.213054789681411,6.066666666666666,9.0,0.0,0.0,9.0,0.0,0.06666666666666668,-9.0,0.1838709677419354,0.0,-0.1838709677419354,0.18483709273182924,0.28169596199524927,0.0,0.6172043010752691,1.0023809523809522,0.43333333333333374,0.6172043010752691,0.8175438596491229,13.411370199859745,0.3016226972423359,0.3876226972423359,7.210321105390241,2.0082977925828853,4.604293072547874,20.621691305249986,6.612590865130759,0.4323040380047507,0.2747252747252747,0.0,0.3956043956043956,1.0,0.3304897273343792,-0.7420876097151434,-0.12915378450574758,-0.023938309990811077,-0.12368126828585722,0.6695102726656208,1.5033304724158094,0.07522367455381923,0.04849453136825191,0.06013321889663238,1.9712365244945154,1.0203592814371256,1.0955785020797908,1.3780593808847836,1.14963503649635,0.9848484848484846,1.7589184498202675,1.0227783414923588,1.451129660733618,1.0713577902103675,1.137148096214001,1.133634695910384,1.2312993766269185,1.0779726261762188,1.0484676392544385,1.0218386301585582,1.6970802919708023,1.1499629756208702,1.6016625790199581,1.0830645365406963,1.4027015661470328,1.0354350777708632,0.9568527821008679,1.037451085012916,1.2534688773979072,0.9513473053892213,0.8090715507141142,0.7108525735109937,1.464741918665276,0.9491057188425608,1.0637956992974098,0.9572855196722272,1.098583768440277,0.8191832031745373,0.8109115855381093,0.7901451704573824,1.0768662583637352,0.9976557523251368,0.8715225112599149,0.8992433337456556,1.1735129678521505,0.9520173741898265,1.1649732328645441,1.0040850955443572,1.2453641130582787,0.8769353964824368,0.855949230843376,0.8648415571321999,1.1738118044681387,1.0598997656860192,1.1330300147691854,1.0486131139090349,0.7563075214217706,1.042576797725539,0.911320656047846,1.0565547767486363,0.9692254169662186,1.129767622343476,1.1740414241698052,1.150949918287819,0.9882452886790488,0.9627381600435492,1.0557511463150688,0.9563014210285868,0.4114134041141339,0.9569982117829006,0.5048784507633898,0.9552424164077501,0.5600436841280158,1.0615453081570259,1.0700032358968832,1.0554476264745158,0.7198683235419521,1.02501871257485,1.2848609272615075,1.5906452102861424,0.13258439781021894,1.1124401913875597,0.14844653066387384,1.0079920688645825,0.18404830696670954,1.286855149001837,1.294792734063208,1.2844162998525943,0.48492561985763694,0.6063872255489021,0.8226517367702874,1.1475282697347706,0.0,0.6866914761651602,3.710135278537097e-05,0.5934988429298235,0.010806922254060188,0.8200279389197408,0.8359400280444398,0.8271672835697372,0.21032123555980506,3.0,0.0,2.222222222222223,1.4375,1.1155555555555556,0.4305555555555556,0.08081632653061226,0.0,0.0,0.0,2454.48606329281,2960.3106248315935,1335.292415938023,1134.586197670424,7.977401980962802,0.43337111922672666,4.520226355951446,0.7648235625323386,0.0,1.0,1.563986349880663,2.5350441020097474,3.6922796820396573,4.47823219741386,4.696131794257844,4.696131794257844,0.21428571428571425,0.0,0.11695906432748542,0.06534090909090909,0.06197530864197531,0.039141414141414144,0.013469387755102043,0.0,0.0,0.0,0.5111717982426003,12.071428571428571,5.185595567867036,2.5344,82.01901710626,1.0,3.5281750308027826,42.80040030933025,,38.354901046872634,37.42097988289603,38.028319447903165,38.367082984971674,59.7832528077541,38.021012648881694,38.404899750331765,50.48963772489564,-0.07928143712574849,-0.2326435243851313,-0.46249528346621677,0.39233576642335727,-0.08426368952684737,-0.1406129173209083,-0.07283533066853079,0.08355870985018185,-0.22088709510931323,-0.22831949088555714,-0.24526943349714103,0.055468201023374304,-0.14829555175363554,-0.21833490413986334,-0.17367890772428998,-0.06357533889468199,-0.18362193362193358,-0.16552754172127732,-0.1458438857384122,-0.08929016967478304,-0.2105681612071741,-0.16215422772495905,-0.21538917749340536,-0.08883300168351473,0.0008925007128599897,0.09691308196391075,0.1848396579494014,-0.19388686131386865,0.03925849978481559,0.1026166447025039,-0.0018677360705063623,-0.01028588759602017,0.08491021230433163,0.05406398258436874,0.10399449290550862,-0.04028936187612737,-0.060837049305644,0.013977869758540703,-0.04599222025419901,-0.23270305948128592,-0.049209904193106876,-0.118053868198407,-0.06467113433800949,-0.20205871983967374,0.01070895594502941,0.022387261888096092,0.01806266573729323,-0.16002232480596648,-0.08412392606092156,-0.12080936916470227,-0.11151385082295905,-0.06906537607108852,-0.09535862053024521,-0.1314499867759049,-0.08356405118440127,-0.12587596443953053,-0.11520044372258417,-0.13501408474923363,-0.13152703310623554,-0.09233369614378556,0.06950281255670475,0.1172716894830509,0.20345664497317176,0.1176730811767308,0.09333768305060167,0.04077840623095863,0.06829553346447029,0.0717184456497577,0.11164751418059718,0.14060217099263586,0.12801920632158917,0.04967760869427805,0.012836826347305425,-0.09151228206952097,-0.2612518112334959,0.28341697080291955,-0.03717271398192451,0.220975160237496,0.018969528812058087,0.28996402774759295,-0.0894681971138955,-0.08398388343580343,-0.09065011831916808,0.19664842495030246,0.31796407185628733,0.03748391152398154,0.1508856680471116,0.3576642335766423,0.2067458207809084,0.29388563276122537,0.32700232541096846,0.42871101009525764,0.06590832455941231,-0.048514483634751186,-0.008721150254285933,0.4835032516420591,2.449489742783178,6.103254338801572,3.965406456500188,15.567383336066134,21.957240931299197,28.57881920221626,32.637592194001606,32.85723498762034,32.85723498762034,27.108903168756346,16.19590748021275,2.189500913569521,8.723494774974078,0.0,10.9129956885436,1292.640387888481,920.0707848317622,566.5588851363641,1.0,19.0,25.0,29.0,31.0,27.0,15.0,7.0,2.0,207.110672644,14.0,4.204692619390966,5.043425116919247,5.910796644040527,6.774223886357614,7.649216319820633,8.517393171418904,9.3940775929113,10.263501914406909,11.140629140128539,0.6021505376344088,1.006064516129032,1.1570203423790062,0.5565489698958748,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.5757288197797954,0.9872232764073373,1.0278410826304538,0.5463708200101114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,4.0,0.0,0.0,0.0,4.0,1.0,0.0,0.0,0.0,25.532636974203527,12.207932775496605,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,13.08951281182515,25.3595711459221,123.91364926171366,-278.2379486750847,-48.42485387715513,-8.97541769919628,-46.37299144584745,251.02583905812054,563.6579581031982,28.204326046746715,18.18251477752252,22.54631832412793,0.42857142857142855,0.4241412994639068,0.17593352378712449,153.32559806129382,0.09384369024191089,196.2967648037881,0.5758587005360932,4.0,0.21428571428571427,0.3156892161502843,0.5116963364360071,0.7452832812253509,0.9039270785505374,0.9479099131401035,0.9479099131401035,-3.262099999999999,,1.3928571428571428,1.6142391810144252,1.0909205148491539,1.3888280739756562,-5.929653139877578,1.4547888616891067,1.3827369942067755,-2.314297018533557,47.553000000000026,25.532636974203527,0.0,4.899909730850478,0.0,24.35373999239287,26.303276740850986,0.0,0.0,0.0,3.367295829986474,0.0,4.653960350157523,0.0,6.171700597410915,0.0,7.803435056952168,0.0,9.49243184611472,18.666666666666675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.18799999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.86763061374919,0.0,0.0,0.0,81.08956343829786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.253018066772118,17.84759341317366,16.84398836212962,85.60080061866049,,76.51082250190855,74.61135416850428,75.90079310797074,76.53576195937539,120.87047305486266,75.8341983175221,76.61226564434828,101.32375323380441,16.843988362129615,85.60080061866049,,75.3469775002901,73.2800013866064,75.04453217024536,75.37521287814336,125.49615875538575,74.62596230101335,75.45596153880604,103.29357246832484,4.792057167632916,58.14627542427516,,52.23935770166665,50.93069271558546,51.39949285552511,52.255280479086345,81.14330129614176,51.75347710883614,52.31130821604779,69.08184882610666,1.2031420258664014,6.114342901332892,,5.465058750136325,5.329382440607448,5.42148522199791,5.466840139955385,8.633605218204476,5.416728451251578,5.47230468888202,7.237410945271743,2.3960285838164586,42.80040030933025,,38.354901046872634,37.42097988289603,38.028319447903165,38.367082984971674,59.7832528077541,38.021012648881694,38.404899750331765,50.48963772489564,30.603921568627456,0.0,0.0,0.0,0.0,0.0,45.89624149659864,31.863073561544066,-0.03466080876795119,0.0,0.0,0.0,-4.085839947089949,1.5575925925925926,0.0,0.0,0.0,16.937495420313454,159.02732179630678,48.48357684630055,78.58636716230217,114.46067014322938,138.82519811982965,145.58008562199316,145.58008562199316,184.0,96.89795640539464,215.91216652352742,45.4888236806218,104.39000000000001,104.39000000000001,0.75,5.220355825078324,4.807354922057604,3.319667819361089,3.675858581534164,,3.6805455299407397,3.680622379312875,3.675433041322001,3.680529805769634,3.65384011595349,3.6803556190099846,3.680562376449313,3.6686888094501073,0.23711912995436352,0.26256132725244025,,0.2628961092814814,0.26290159852234823,0.26253093152300006,0.26289498612640244,0.26098857971096356,0.2628825442149989,0.2628973126035224,0.26204920067500764,1.5363369601345234,1.6382589696276726,,1.639533219647041,1.639554099315345,1.6381431967174223,1.6395289473986563,1.6322509377230194,1.639481619733673,1.6395377968136269,1.6363065622212223,152.0499999999998,65.45186024101713,58.74450060553001,,58.32554164394278,58.30491275357778,58.72234788835591,58.32699218231686,60.38182401232852,58.336000733760784,58.32489089825933,59.29694549314738,4.675132874358367,4.1960357575378575,,4.166110117424484,4.164636625255556,4.194453420596851,4.166213727308347,4.312987429452037,4.166857195268627,4.1660636355899525,4.235496106653384,4.5177871508958605,4.409669778549716,,4.402512341136984,4.402158593212624,4.409292604602841,4.402537210521755,4.437160369326179,4.402691647695646,4.402501183944177,4.419030031907806,0.0,1.5575925925925926,45.89624149659864,0.0,0.0,-0.6244907407407412,-3.4613492063492073,-0.03466080876795119,0.0,189.51577714603067,46.46012025003032,-104.32239410739653,-18.15638993466328,-3.3652385195934365,-17.38706568456609,94.11949965150878,211.3376263986157,10.574915576372986,6.817342787052119,8.453505055944628,288.0,22.0,0.9233518700098874,0.5120505487162467,0.0,0.0,0.3938026764748812,0.12935995528687697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.045360921162651446,0.03513641844631533,0.20023279339791275,0.0968308515790985,10.71517847069432,7.821109774504443,6.612590865130757,4.614203203983723,5.552077348346739,3.5169973995109673,4.813163077207106,2.6032175904774766,3.6122440944850487,1.7638942004908214,2.3890919516731013,1.0962914680730174,1.571888520189732,0.52707428788349,0.576858211831103,0.1772854881515175,2.662052303833306,1.1660515097154047,4.056859794648221,1.5242298142967634,5.881816205318488,1.9188261230524668,50.38807654972999,39.53466508821943,27.007038748930196,19.35072468461386,18.66140507246532,18.66140507246532,66.0,77.0,29.805480999999972,18.764518999999996,0.1935483870967742,14.06,6.555555555555555,3.361111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31.0,0.0,1.0,31.0,0.0,0.0,0.0,31.0,0.0,14.0,31.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,6.0,5.0,1.0,14.0,6.0,0.0,1.0,5.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,2.70805020110221,0.6931471805599453,2.995732273553991,3.258096538021482,3.4011973816621555,3.4657359027997265,3.332204510175204,2.772588722239781,2.0794415416798357,1.0986122886681098 +5361,CC1=CCC(C(=O)N=C2CC=C(S(=O)(=O)O)c3cc(S(=O)(=O)O)cc(S(=O)(=O)O)c32)=CC1=NC(=O)C1=CC=C/C(=N\C(=O)/N=C2\C=CC=C(C(=O)N=C3CC(C(=O)N=C4CC=C(S(=O)(=O)O)c5cc(S(=O)(=O)O)cc(S(=O)(=O)O)c54)=CC=C3C)C2)C1,0,41.095238095238095,7.0346904761904785,4.095238095238095,12.037037037037038,159.0477542466512,163.72710038095232,1.845492922174286,7.08562142857143,10.35023923835652,8.524343285714286,260.79561981399365,43.21804511278196,6.649398496240602,4.7443609022556394,7.81203007518797,141.9596443217856,169.4206991353382,2.1485339432781934,6.845034586466162,3.149262043998886,8.19217121804511,310.2753467493657,32.964444444444446,6.896368444444445,4.208888888888889,10.545185185185186,149.16614597292607,127.74985115111112,1.850020676791947,7.004831111111108,7.130672153635116,8.332497831111112,272.4187291469415,28.26896551724138,6.572537931034482,3.9689655172413794,7.357471264367817,150.47358740660994,107.28577190344828,1.749097528225307,6.6996,4.342943805874838,8.066655779310343,250.01434624742893,28.11764705882353,6.747861176470588,3.5558823529411763,7.150653594771241,156.40129906080927,106.18467066176471,1.579047175801994,6.839719705882351,4.658052428790445,8.276137864705882,226.6279679532108,32.54597701149425,6.8824988505747156,3.456896551724138,7.722541507024266,157.52246868577686,124.69107429885051,1.5744424072118248,6.969111494252874,5.0660308563139544,8.431579643678157,229.2160016812646,34.67246376811594,7.088132173913044,3.301449275362319,7.943961352657005,154.291097762457,132.77012985507247,1.5624436437388007,7.176660869565213,6.658006799069598,8.637199663768117,235.36851242039117,26.569553805774277,7.154162204724409,2.8766404199475066,8.604549431321086,160.2167505603361,99.44250405249345,1.3798596730200028,7.181124409448817,9.012815527688671,8.657296241469815,205.06544867209124,21.01396648044693,6.370206703910615,3.0139664804469275,5.221601489757914,157.7415529891389,77.26339660893855,1.4104709427370001,6.454041899441341,4.284097179115802,7.941226480446925,195.06873041819924,12.988410178886376,0.21430224237843273,0.024004867537199392,0.8780549256739736,4.925925925925925,1.6462695288754492,57.725367727891154,0.3460786778559182,0.18916186067019394,4.492900223646846,0.14772913378684807,44.96976942660096,3.3210539576454368,-0.02799606025646127,-0.016942524043403212,0.08566389518770459,-0.3550543024227235,-0.12156397132372611,14.113642293233074,-0.04950408304661671,-0.015181576626752026,-1.1432518215815193,0.007476242869077327,2.925468990272069,0.4682388510959941,0.09007449130763419,0.005760005048004849,-0.01159989921894687,1.3125925925925928,0.13882303603506413,2.3637790803628076,0.018164643731113917,0.07557433333333331,1.8067148720484996,0.06153163891156454,1.514482622781342,-1.3566641471403378,-0.018835395087792476,0.00040692090169214967,-0.019379501481307737,-0.4831417624521072,-0.24786080120467852,-6.0190557735397645,-0.030668020208493307,-0.016794876543209863,-0.1393237833739363,-0.015783070075846603,-5.019019914557039,-0.45573044032427773,-0.04933489410579044,-0.002012872300729925,0.015222385250396455,-0.6062091503267973,-0.13638639392008223,-2.200801033913566,0.008207025939546324,-0.04263953340595499,-0.7841199934477681,-0.0365995606776044,-1.5867194681153782,2.1525312551585136,-0.028583792278086204,3.1088828706739764e-05,-0.09334410648039546,-0.27234993614303943,0.09440418553114398,9.269477350105557,0.016185026875980224,-0.020746067475521497,-0.8726289141549436,-0.020170640081319833,4.05657742528296,0.6508352777503918,0.007154748649862537,-0.003686412592388241,-0.20885777821595636,-0.5069243156199676,-0.3138796545802673,2.4086732534752997,-0.08531767952919293,0.010181258722490599,-0.10421864626648265,0.016448439021985745,-6.724654120134308,-0.8998379170857617,0.08447036521228499,0.006017783449576283,0.0632024171581727,0.7748614756488772,0.24486597972798946,-4.2135815321656205,0.011940650203791814,0.06635068776125205,1.918222950856892,0.0637846093702574,-4.43785327443177,0.4439299825040709,0.00098482421729293,-0.0037641988118290843,0.02852483844769027,0.042209807572936055,-0.04409254996557409,2.00373009200776,0.010096764038942791,0.001421191116628765,0.04940747427503504,0.0017593131405259658,1.19413981487594,,,0.47170542635658924,1.2994186046511629,0.6569767441860465,0.0,0.6424418604651163,0.014534883720930232,1.2357976731610651,0.036559448665763515,0.044559448665763515,1.7946652308166147,0.24966383570568243,0.2127791989119621,3.03046290397768,0.4624430346176445,2.0130794791722506,1.2620094767892074,0.14251719049463324,0.45901172833048165,0.0,0.7510700023830432,10.286086567777783,5178.0,886.3710000000003,516.0,1516.6666666666667,20040.017035078054,20629.61464799999,232.53210819396003,892.7883000000002,1304.1301440329216,1074.067254,32860.2480965632,5748.0,884.3700000000001,631.0,1039.0,18880.632694797485,22532.95298499998,285.75501445599974,910.3895999999995,418.85185185185185,1089.5587719999996,41266.62111766564,7417.0,1551.6829,947.0,2372.666666666667,33562.382843908366,28743.716509,416.2546522781881,1576.0869999999993,1604.4012345679012,1874.812012,61294.214058061836,8198.0,1906.0359999999998,1151.0,2133.666666666667,43637.340347916885,31112.873852,507.238283185339,1942.884,1259.453703703703,2339.3301759999995,72504.16041175439,9560.0,2294.2727999999997,1209.0,2431.222222222222,53176.44168067515,36102.788025,536.8760397726779,2325.5046999999995,1583.7378257887513,2813.8868740000003,77053.50910409167,11326.0,2395.109600000001,1203.0,2687.4444444444443,54817.81910265035,43392.49385599998,547.905957709715,2425.2508000000003,1762.978737997256,2934.189715999999,79767.16858508009,11962.0,2445.4056,1139.0,2740.6666666666665,53230.42872804767,45805.6948,539.0430570898862,2475.9479999999985,2297.0123456790116,2979.8338840000006,81202.13678503495,10123.0,2725.7358,1096.0,3278.3333333333335,61042.58196348805,37887.594044000005,525.7265354206211,2736.0083999999993,3433.882716049384,3298.4298679999997,78129.93594406676,7523.0,2280.534,1079.0,1869.3333333333333,56471.47597011173,27660.295986,504.9485974998461,2310.547,1533.7067901234573,2842.959079999999,69834.60548971532,1636.5396825396833,27.002082539682526,3.0246133096871235,110.63492063492068,620.6666666666665,207.4299606383066,7273.396333714285,43.6059134098457,23.834394444444438,566.1054281795025,18.613870857142857,5666.190947751721,441.7001763668431,-3.7234760141093486,-2.2533556977726272,11.39329805996471,-47.22222222222223,-16.168008186055573,1877.1144249999988,-6.584043045200022,-2.0191496913580194,-152.05249227034207,0.9943403015872845,389.0873757061852,105.35374149659867,20.266760544217693,1.296001135801091,-2.6099773242630455,295.33333333333337,31.23518310788943,531.8502930816317,4.087044839500631,17.004224999999995,406.5108462109124,13.84461875510202,340.75859012580196,-393.432602670698,-5.462264575459818,0.1180070614907234,-5.620055429579244,-140.1111111111111,-71.87963234935677,-1745.5261743265316,-8.893725860463059,-4.87051419753086,-40.403897178441525,-4.577090321995515,-1455.5157752215414,-154.94834971025443,-16.77386399596875,-0.6843765822481745,5.175610985134795,-206.1111111111111,-46.37137393282796,-748.2723515306125,2.79038881944575,-14.497441358024696,-266.60079777224115,-12.443850630385496,-539.4846191592286,749.0808767951627,-9.947159712773999,0.010818912389945437,-32.48374905517762,-94.77777777777771,32.85265656483811,3225.7781178367336,5.632389352841118,-7.219631481481481,-303.67486212592036,-7.019382748299302,1411.68894399847,224.5381708238852,2.4683882842025753,-1.271812344373943,-72.05593348450495,-174.88888888888883,-108.28848083019221,830.9922724489784,-29.43459943757156,3.5125342592592568,-35.955432961936516,5.6747114625850825,-2320.0056714463362,-342.8382464096752,32.18320914588058,2.2927754942885636,24.080120937263796,295.22222222222223,93.29393827636399,-1605.3745637551015,4.549387727644681,25.279612037037033,730.8429442764758,24.301936170068068,-1690.8220975585043,158.92693373645739,0.35256706979086894,-1.3475831746348121,10.211892164273117,15.111111111111107,-15.785132887675523,717.335372938778,3.614641525941519,0.5087864197530979,17.687875790462545,0.6298341043082958,427.50205372558645,0.7370633388528275,0.5655290500742786,0.4276354943776068,0.35185690181789586,0.29483437541115454,0.18829685599039112,0.17037666135634555,0.10192415983112042,0.10510987905234272,0.05513765159426421,0.0659085321435096,0.0319724848587821,0.04261492518329873,0.018508256056843485,0.027360285755303245,0.009630658201833488,16.019359714097288,5.679999926479357,3.6136880608930557,2.164192444037081,0.5307043037063568,-0.37603405524751576,4.051795013349892,0.9662228280455633,6.037513819075219,0.6436808506662682,14.557080628884366,10.317649872203518,32.07215305815262,11.691612216484234,2.9643448154020406,0.7500066876110486,3.5713412754603158,2.2186875600075036,7.029465484113864,0.30054230109329955,3.80355701361623,2.4189400633361693,24.447905094610466,14.699024459966495,0.2585257663358256,0.5283806939675568,0.64837300769597,0.7358789763506667,0.7987125762801308,0.8203695815345667,0.8008446743195429,4826.094687853575,0.0,4.0,2.0,0.0,28.0,6.0,10.0,0.0,0.0,5.057399136777825,3.0533849988236144,2.162290308547143,1.5124478177007026,1.0458288691334703,0.8849982143200545,-364.6766388963051,11855.70484562905,241.44218402038868,94.09289560023056,205.8429556186282,,36.0,5333.0,166.2796207319781,101.79596706847488,70.8224446230639,35.411677333984976,12.152040213667762,60.76020106833881,13.847474399381248,0.0,29.954428395814016,0.0,40.56666666666668,111.75,56.5,0.0,55.25,0.0,0.02829457364341073,1.25,0.30372538815161904,0.09006764449802485,-0.2136577436535942,0.04249241658240677,0.21827698574338134,0.0,0.7447089947089947,0.9515503875969005,0.4409836065573756,0.6546413502109698,0.9090579710144937,106.2785998918516,3.1441125852556624,3.832112585255662,154.34120985022886,21.47108987068869,18.29901110642874,260.61980974208046,39.77010097711743,0.49572301425661863,0.21364009860312233,0.12325390304026292,0.3327855382087099,0.1568627450980392,0.614498029999745,-4.5747560529221,-0.11635560890340815,-0.03630758772160397,-0.09149512105844201,0.3855019700002548,2.8699481276982954,0.03525626573071741,0.022777366092843622,0.037762475364451265,-5.574674590134327,0.8407616780112486,0.7369453863838866,1.7011923689761006,1.121347126783961,0.7394627815510851,1.2193069271467716,0.8171020031917834,1.4041982093513843,0.6614899506997955,0.8971874148036018,0.5835818959141612,0.8636907913985084,0.7145836162247091,0.3526127202887115,0.5419927791212208,1.0720946915351504,0.529746986513904,0.9513470358190992,0.7085351628954079,0.8458520129911705,0.3577929281004039,0.3813576428360764,0.3793924881061389,0.8543891653874476,0.9128807160501915,0.7756864986723805,0.8195636194234259,1.0149099589373172,0.9004963146783217,1.201991487426769,0.9136202665591346,1.00557755443574,0.7746176705467636,0.6994024948468682,0.7942660875202651,1.0656522004304858,0.922521258217162,1.1197393413346162,1.0678689284397218,0.9719965819900411,1.0641427623681055,1.1202028371955162,0.9283441229960951,0.8979614654985412,1.1133417829320011,1.0398557737848897,1.1284797969800988,0.9899654666349007,0.8555513154365375,1.1164641466422363,1.0726747200554445,1.1801656112402905,1.052701025963925,0.989260043904017,0.8550279785987015,0.977751761958081,1.0865993495394495,1.1846182688809128,1.1140719525939853,0.8695167382382629,1.0078927748207132,1.0306129392529848,1.309138667692021,1.3132368535961572,1.0770975056689345,1.2132238430305038,1.0021660566100294,1.3375646421028007,0.990742603301345,1.1529025607896912,0.9753059414621024,1.0691534401626013,0.9099524100970565,0.7535872526478705,0.7245960194979157,0.7814000384098326,0.8851689591432653,0.79771689423504,0.9242641314599417,0.8127831883132212,0.7902014519820479,0.7331303799243569,0.7281247542961253,1.0230534538680294,0.8262127113042794,0.8061716541861207,0.9473249399199157,0.8205557737470242,0.9342240277469415,0.9621128472802497,0.8440914273513215,0.8251646769803835,0.8291596207390534,0.7325722681685186,0.7799316943055177,1.0645949939640031,28.5,1.131721252933374,13.111111111111118,8.5,7.964444444444446,6.986111111111111,4.718367346938775,1.9930555555555554,1.6674225245653813,1.3250000000000002,25297.13188021323,26846.508899307395,10503.976013443065,10064.905392795306,36.756528046073484,0.4935628671410413,18.614870677503358,0.9745787485107202,0.0,0.1568627450980392,1.9198807867220917,3.9238949246763024,4.814989614952774,5.464832105799214,5.9314510543664465,6.092281709179862,0.3064516129032258,0.008573645855555867,0.09042145593869735,0.054487179487179474,0.04826936026936028,0.03881172839506174,0.025367566381391263,0.011454342273307789,0.012443451675861056,0.009742647058823533,0.6060229902384642,71.84067522256909,28.52604042806183,18.075555555555557,487.7415840196339,0.0,5.382605415070481,1288.4550616136612,,980.3148917725326,1011.2616161532483,1005.7410057200626,980.4257526145742,1254.7050616945094,1018.1096659561701,1021.4127556194203,1194.9871266178259,0.25569364625118296,-0.13063820492845565,-0.7057953565937432,0.09756097560975592,-0.07207869297303411,-0.07384208308026285,0.24449636007106437,-0.14304285763373892,-0.08025706964905199,-0.2544574249756102,0.05060777571379029,0.06505412475033877,0.03605051308413027,0.42031520672832323,0.23995154478893904,-0.01321090387374465,0.2664661654135339,0.08432582490298099,0.04094870545485847,0.052487035155272824,0.3995220445896232,0.4021266402800296,0.41651661614929564,0.0336777938177615,-0.10445190199996117,-0.0878917312238449,0.01695159954794837,-0.022070944441695946,-0.09808141042260826,-0.15055906512100106,-0.10427054881508427,-0.08861574598727871,-0.08878574403796936,-0.03100976572785952,-0.10683789765273591,-0.11160875358164811,-0.03508746906261872,-0.23021174934171143,-0.08385267269692935,0.017336484091484507,-0.12306501547987618,-0.08284572576232184,-0.03812537053532195,0.023714335683411063,-0.22541295192849445,-0.17452423922543847,-0.2477477511674326,-0.035284136172972824,0.16572707710275525,-0.13338074282774215,0.0012951051972506257,-0.10630782169890658,-0.05528908478091779,0.05734430715949081,0.16057892249037722,0.046766899874480225,-0.10967362766478873,-0.19422396908842077,-0.13653799737581332,0.09020676505589048,0.05010892547945344,0.03338625191437841,-0.1535693786552062,-0.2378641382321752,-0.10290944753187316,-0.19066115789355312,0.04172642545699197,-0.24652683042412962,0.05382299944829655,-0.023196296618821718,0.11134187685496405,-0.14953721590923869,-0.069280066204601,0.3941646353056828,0.2506901335843975,0.07198002688688301,0.1573027055828548,0.14873990888676353,-0.0729935849352718,0.034502704060731026,0.350761445918188,0.4269453705561902,0.4317673009732084,-0.09868525747447235,0.03417893155435698,0.004595491892025308,-0.15680981392610704,0.03248639420340965,0.008568908304280254,-0.02678331171912857,0.034711430535237946,0.029174764829477135,0.007513095460118303,0.01099678867004339,0.011909046614084953,0.026554279243637183,23.029351556054607,0.0,0.0,23.67609831090221,43.72753743917174,52.26723022898745,57.056579851139304,62.137778156829,63.4212487786661,173.12483520881355,108.53281500387183,12.25647838253846,39.47500863642142,0.0,64.59202020494172,189213.61845390595,184211.61714259838,12584.503793056327,561.0,145.0,180.0,239.0,332.0,402.0,468.0,488.0,554.0,1296.0469075400006,93.0,6.1675164908883415,7.027314514039777,7.955425088912672,8.842026529498812,9.768869855811184,10.667722076311636,11.594680551839147,12.501079079240501,13.428451514176738,0.8835978835978837,1.0446349206349206,1.1141776721108538,0.8571904325796593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7332369546621043,1.0298474945533773,1.0539832830437341,0.7138654396014463,4.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,17.0,0.0,0.0,6.0,12.0,6.0,19.0,0.0,2.0,0.0,0.0,0.0,6.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.79096695103555,0.0,0.0,84.33748007160735,46.49464797842948,24.7641561146145,60.49159137124495,0.0,54.68418096150493,73.90803367679386,76.6503322016951,53.87134999543986,978.5892219683026,-7285.3072718974845,-185.29651720524072,-57.819898983313365,-145.7061454379497,613.9125830719975,4570.397573731566,56.14566681514796,36.2729966169172,60.13681018067851,0.5,0.7030534290374905,0.03785121051523922,938.0335128807242,0.0492988983571074,180.65356744445043,0.29694657096250937,18.0,0.10752688172043011,0.27516178335569036,0.5623817544513842,0.6900955197075563,0.7832324581665867,0.8501093720475434,0.873159995868974,4.5324000000000035,,10.357142857142858,7.537894102479994,4.812180816328061,10.340261604760713,-25.457031402684507,6.987454100367199,6.985094988665814,-10.147347513766356,305.2596000000007,101.79596706847488,0.0,0.0,29.954428395814016,71.95433803900842,0.0,152.87014270305662,0.0,0.0,5.231108616854587,0.0,6.642486801367256,0.0,8.220133957151859,0.0,9.876270506242575,0.0,11.579340349636206,111.33333333333334,1.5841908841003058,0.0,0.0,0.0,0.0,0.0,-8.14876465490086,0.0,131.624,0.0,214.75174235360276,0.0,0.0,-31.836499622214703,15.32769583778095,24.112169328916213,-7.256903531405261,140.38638668596758,0.0,4.794537184071822,0.0,141.75322459448415,79.88690989048861,0.0,74.62621010372528,180.15269903415367,0.0,9.810273027780093,0.0,108.00599450503708,92.38785628742514,104.30059037517752,2576.9101232273224,,1964.5363707897554,2022.3479324436478,2011.3701002583498,1964.7627171475274,2519.720973516236,2036.0568329797736,2042.6630671693365,2392.4814933891575,104.30059037517752,2576.9101232273224,,1955.8652744442406,2014.985338204016,2006.6698306237968,1956.1057539435412,2534.8671547917033,2029.2318778119738,2035.8404162501745,2400.1216007494195,5.113172149318501,2035.8372240203055,,1585.362026374103,1607.940382122797,1592.6670967936843,1585.5630582693666,2030.6367198902265,1620.916773642309,1629.3313073123227,1920.6340943905134,1.2127975625020642,29.9640712003177,,22.843446171973902,23.51567363306567,23.38802442160872,22.846078106366598,29.299081087398093,23.675079453253183,23.751896129876005,27.819552248711133,2.556586074659251,1288.4550616136612,,980.3148917725326,1011.2616161532483,1005.7410057200626,980.4257526145742,1254.7050616945094,1018.1096659561701,1021.4127556194203,1194.9871266178259,129.76078431372554,0.0,3.113311095559559,0.0,0.0,0.0,59.123766047663,132.8018936635105,-2.2707077391020123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.94704538978223,1119.6138547819762,241.90497912698356,494.41076050921413,606.6886914840495,688.568845330701,747.3628328501723,767.6274953566626,3548.0,266.95308570071876,472.8879502583238,127.54934023125249,536.01,485.73,1.0,10.172765363272687,7.539158811108031,6.5526577472989365,9.170312135643996,,9.192738858655295,9.171431751719899,9.166580336146804,9.192754070118294,9.191861930546334,9.173034102858304,9.17550604625313,9.182633610748072,0.07619369473603414,0.1066315364609767,,0.10689231230994528,0.10664455525255696,0.1065881434435675,0.10689248918742203,0.106882115471469,0.10666318724253843,0.10669193077038523,0.10677480942730316,4.031632933553503,4.367733527731954,,4.37017612119516,4.36785561166074,4.367326501344635,4.370177775919682,4.370080723082394,4.368030307523262,4.368299750584093,4.369076252450431,819.4600000000013,10584.35651042984,906.4153447343068,,894.7387126408242,903.9116874553469,906.2472413923471,894.7335085132086,898.0427503926238,903.3408730854236,902.3513754502802,900.9207614065942,123.07391291197487,10.539713310864032,,10.403938519079352,10.510601016922637,10.537758620841245,10.403878005967542,10.442357562704927,10.503963640528182,10.492457854073026,10.47582280705342,11.418894592390009,8.961259842148479,,8.948293937727758,8.958493868011596,8.961074365442855,8.94828812134508,8.951979876656388,8.957862175019295,8.956766198963585,8.955179511835684,206.1989376143547,84.8196152303411,0.0,-3.556403042027394,-3.829025999823352,0.5330766251311092,13.056988098678932,3.113311095559559,-31.836499622214703,1078.0255725099885,1558.4051023775048,-11601.86498076997,-295.0850381170269,-92.07829349817436,-232.03729961539938,977.6568966791092,7278.3663859193275,89.41207574831441,57.76481258666134,95.76797876209643,54019.0,156.0,12.895090148055715,5.2910455913732415,1.7320508075688772,0.27386127875258304,3.363971165777271,1.0166728283633764,0.7600796553858447,0.08313365864198222,0.0,0.0,0.0,0.0,0.0,0.0,0.5249716523768432,0.2196646498175057,1.0412030002076451,0.463219196542998,63.387447141343166,48.63549830638795,39.77010097711743,32.72269186906431,42.75098443461741,27.30304411860671,30.6677990441422,18.346348769601676,25.121261093509908,13.177898731029146,21.88163267164519,10.614864973115658,17.13119992368609,7.4403189348510805,12.804613733481919,4.507148038458072,19.790545644823496,8.757483864299708,28.158915639383558,11.40535689453216,45.31248755622256,17.682388856547863,293.9134665824746,158.03160126064935,114.49775756451102,92.05629573660755,65.31447027700011,61.375384233292934,476.0,563.0,154.28772000000063,91.24428000000005,0.4365079365079365,1339.35,35.375,17.55555555555555,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,12.0,12.0,126.0,0.0,0.0,133.0,12.0,33.0,39.0,94.0,45.0,93.0,88.0,0.0,0.0,0.0,51.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,17.0,6.0,0.0,86.0,35.0,0.0,6.0,23.0,0.0,8.0,10.0,6.0,0.0,0.0,0.0,2.0,4.890349128221754,8.922099810264971,5.58724865840025,6.046189446797229,6.578209002431658,7.185860388370321,7.653672787578179,8.085833185762706,8.355850041007475,8.721551397827032 +5329,Cc1cc(NS(=O)(=O)c2ccc(N)cc2)no1,0,34.5,6.668510714285715,3.5357142857142856,9.587301587301587,164.26577093586926,137.07691657142854,1.6696197840478217,6.719535714285714,6.704147682735646,8.168291750000003,234.03508191279622,37.48275862068966,6.679406896551725,4.0344827586206895,7.218390804597701,150.0239274361069,145.4675908275863,1.952621082068965,6.831886206896552,3.306460195828012,8.166672827586208,278.9024064800661,29.97872340425532,6.680700000000001,3.702127659574468,7.929078014184397,153.9584433313686,115.10709648936168,1.695858814455233,6.785434042553193,4.959679537693723,8.144537744680854,241.5106077843743,25.472727272727273,6.649487272727273,3.036363636363636,4.915151515151515,158.9375305089629,93.89205996363634,1.5141842219217814,6.737350909090909,4.100673400673402,8.202003054545456,205.5543350192658,21.879310344827587,6.536844827586207,2.706896551724138,4.712643678160919,165.75733012496087,79.55713089655171,1.2587747330774144,6.594343103448276,4.414138995317157,8.141342103448277,170.00525644563012,23.204545454545453,6.79104090909091,2.659090909090909,6.787878787878788,166.66884374703616,86.48341615909088,1.2457462530634547,6.821952272727272,4.8611111111111125,8.349140909090911,181.9162479721596,23.352941176470587,6.523908823529412,2.9411764705882355,5.529411764705882,158.96108084489103,85.13997997058824,1.4674258174777943,6.61734705882353,4.894063180827888,8.081165529411765,203.22855398743934,14.783783783783784,6.741891891891893,2.3513513513513513,2.972972972972973,168.27919717810536,49.114590297297305,1.1160238359918375,6.756391891891892,4.162162162162162,8.32042345945946,158.88799333426078,13.8,6.034396,2.4,2.8,160.37028269927987,47.32403448,1.20308414485584,6.107964000000002,2.8777777777777773,7.598928,156.70172053875783,12.27551020408163,0.17511466836734682,0.024393000510921935,0.7181122448979588,4.578231292517006,1.7011462324982174,55.25455410204082,0.3106697866463813,0.158619387755102,2.561361292202066,0.11222321811224488,47.44081000416202,2.9732582688247713,-0.009373165904292784,-0.014760356356719025,0.13779908515130185,0.2909531628743451,0.06325235595830703,12.778593695988732,-0.013309560946748322,-0.001702392681210439,-0.7481763713982112,0.011619583611893027,3.583704532717139,1.3491098567086415,0.05567203376031256,0.00525872716129572,-0.08741315675206257,0.7635451343658032,-0.13430245570527552,6.393734846287447,-0.0035928291444466964,0.049811159357359934,0.7748759832220691,0.030024810003256613,0.247982759417744,-2.359925788497217,-0.04065077226345084,-0.0019965836228397456,-0.09733302411873843,-1.0627911770768916,-0.32766232265063844,-10.82022673320965,-0.03642072361500214,-0.0383927643784787,-0.364773667720923,-0.02687501876159552,-10.358606162826623,-0.8444757213230119,-0.014858880190007048,-0.0022679440035425972,0.025730119634060536,-0.11818750488701232,-0.1473991103309195,-3.6552418089373684,-0.031537382655143095,-0.011808304011259693,-0.10320291089154551,-0.012340916388106955,-2.141373442601833,1.2861781076066787,-0.007396243042671655,-0.002074987611604716,-0.054962894248608535,0.5895176252319109,0.11577776097168316,5.949078449907236,0.05708371373042624,-0.004670686456400791,-0.4397341410610261,-0.0010625038265305719,8.173347621043753,-4.061224489795917,0.046894155162064806,0.013469959348601419,-0.16559123649459787,0.7084167000133389,-0.09562698791536199,-17.359000513805523,-0.1176333499297322,0.038888175270108016,0.9878830068550054,0.015651827055822333,-5.307179530750874,-4.910645339216769,-0.12493069153337011,-0.01068827907306513,-0.002861279646993923,-3.389900104185818,0.26118119556956054,-22.72236936458908,0.03820554795488981,-0.11911533370104796,-1.5235704424899204,-0.07288478085355758,-7.358115849843738,-0.5583673469387753,0.009944188775510282,0.003826800726019129,-0.08668367346938773,-0.4271201814058956,-0.2475434753901098,-3.075615204897955,-0.05445735789814422,0.0062020408163266216,0.19524450340835936,0.007216963316326471,-12.588229417493976,,,0.47254901960784323,1.4558823529411764,0.8235294117647058,0.058823529411764705,0.6323529411764706,0.19117647058823528,0.5536673218082967,0.02606175791947,0.03617940497829353,0.9759803754892395,0.2890030106833373,0.179888970360316,1.5296476972975361,0.46889198104365326,1.987534691420215,1.1952205919374814,0.33921719273418105,0.3216455520786616,0.0,0.7923140994827336,9.037575436142857,966.0,186.71830000000003,99.0,268.44444444444446,4599.441586204339,3838.1536639999995,46.74935395333901,188.147,187.71613511659808,228.71216900000007,6552.982293558294,1087.0,193.70280000000002,117.0,209.33333333333331,4350.6938956471,4218.560134000002,56.62601137999998,198.12470000000002,95.88734567901234,236.83351200000004,8088.1697879219155,1409.0,313.9929,174.0,372.6666666666667,7236.0468365743245,5410.033534999999,79.70536427939595,318.9154000000001,233.104938271605,382.7932740000001,11350.998565865591,1401.0,365.72180000000003,167.0,270.3333333333333,8741.56417799296,5164.063297999999,83.28013220569798,370.5543,225.5370370370371,451.11016800000004,11305.488426059619,1269.0,379.137,157.0,273.3333333333333,9613.92514724773,4614.3135919999995,73.00893451849004,382.4719,256.0200617283951,472.1978420000001,9860.304873846548,1021.0,298.80580000000003,117.0,298.6666666666667,7333.429124869592,3805.270310999999,54.812835134792,300.16589999999997,213.88888888888894,367.3622000000001,8004.314910775022,794.0,221.8129,100.0,188.0,5404.676748726295,2894.7593190000002,49.892477794245,224.9898,166.39814814814818,274.759628,6909.770835572937,547.0,249.45000000000002,87.0,110.0,6226.330295589898,1817.2398410000003,41.29288193169799,249.9865,154.0,307.85566800000004,5878.855753367649,345.0,150.8599,60.0,70.0,4009.2570674819967,1183.100862,30.077103621396002,152.69910000000004,71.94444444444443,189.9732,3917.543013468946,343.71428571428567,4.903210714285711,0.6830040143058141,20.107142857142847,128.19047619047618,47.632094509950086,1547.127514857143,8.698754026098676,4.441342857142856,71.71811618165785,3.1422501071428566,1328.3426801165365,86.22448979591837,-0.27182181122449073,-0.42805033434485174,3.9961734693877533,8.437641723356007,1.834318322790904,370.5792171836732,-0.3859772674557013,-0.04936938775510273,-21.697114770548126,0.3369679247448978,103.92743144879702,63.40816326530615,2.6165855867346903,0.24716017658089887,-4.108418367346941,35.88662131519275,-6.312215418147949,300.50553777551,-0.16886296978899473,2.341124489795917,36.419171211437245,1.4111660701530608,11.655189692633968,-129.79591836734693,-2.2357924744897963,-0.10981209925618601,-5.353316326530614,-58.453514739229036,-18.021427745785115,-595.1124703265307,-2.0031397988251176,-2.1116020408163285,-20.062551724650767,-1.4781260318877536,-569.7233389554643,-48.979591836734684,-0.8618150510204088,-0.13154075220547065,1.492346938775511,-6.854875283446715,-8.549148399193331,-212.00402491836738,-1.8291681939982993,-0.6848816326530622,-5.98576883170964,-0.7157731505102034,-124.19965967090631,56.591836734693864,-0.3254346938775528,-0.09129945491060751,-2.4183673469387754,25.938775510204078,5.094221482754059,261.7594517959184,2.5116834041387546,-0.20551020408163478,-19.348302206685148,-0.04675016836734516,359.6272953259251,-138.08163265306118,1.5944012755102035,0.45797861785244826,-5.630102040816327,24.086167800453524,-3.2513175891223076,-590.2060174693878,-3.999533897610895,1.3221979591836726,33.588022233070184,0.5321621198979594,-180.4441040455297,-181.69387755102045,-4.622435586734694,-0.39546632570340984,-0.10586734693877514,-125.42630385487527,9.663704236073741,-840.727666489796,1.413605274330923,-4.407267346938775,-56.37210637212705,-2.6967368915816303,-272.2502864442183,-13.959183673469383,0.24860471938775705,0.09567001815047822,-2.167091836734693,-10.67800453514739,-6.188586884752745,-76.89038012244887,-1.3614339474536055,0.15505102040816554,4.881112585208984,0.18042408290816178,-314.7057354373494,0.7333091368382875,0.580047350201229,0.44284242654122813,0.34846903383549516,0.3051442564881779,0.19922074114040572,0.1913072695392421,0.11426448031185708,0.12396086082399907,0.06227326174697756,0.07958398241066537,0.03826563068978666,0.054396961853124606,0.023953013341551813,0.032603839548971926,0.012611266437890475,16.013121869830037,5.699276172581043,3.5813637628115527,2.187716659685765,0.46253199054069977,-0.46129962357664667,4.043806917375553,0.971617506867882,6.033420477574308,0.6442361488484124,14.566204689827554,10.319772297805763,32.066543573594984,11.711043610776233,2.9545637414762655,0.7156614316003841,3.537144816740241,2.2413698550048116,7.014203832539089,0.29894326636889385,3.768277189962103,2.4403550508081384,24.44182897549691,14.681717417181796,0.3718148304471565,0.6899580736978679,0.7891894660612057,0.8693898590704849,0.8693898590704849,0.8693898590704849,1.8478748274873458,616.5006093542685,0.0,1.0,1.0,0.0,8.0,0.0,0.0,0.0,0.0,2.885100134221815,1.2403234269000194,0.7273045705928673,0.31267455364869523,0.31267455364869523,0.31267455364869523,26.788122356590378,737.9703979249479,54.13494416223233,26.35608564017671,54.54417632795322,,10.0,267.0,10.023291153407584,8.417796984328938,10.713346253352803,11.447633693558004,0.0,30.33183534230805,6.923737199690624,0.0,9.878758121577533,10.256762414135533,8.033333333333335,24.75,14.0,1.0,10.75,0.0,0.027450980392156765,3.25,0.2386054421768704,0.08386243386243364,-0.15474300831443677,0.09323529411764697,0.20123404255319122,0.0,0.6773809523809524,0.9215686274509801,0.438775510204082,0.5935185185185188,0.8283333333333331,9.412344470741044,0.44304988463099004,0.61504988463099,16.591666383317072,4.9130511816167335,3.0581124961253723,26.004010854058116,7.971163677742106,0.5127659574468088,0.19502074688796672,0.10373443983402487,0.2489626556016597,0.1,0.47022811981061186,-0.771332307399076,-0.07189335256242928,-0.027547582407109857,-0.07012111885446146,0.5297718801893881,0.8690041057225728,0.04843602701879329,0.031035860918663314,0.05111788857191606,-3.009112586504024,0.8464829306045234,0.7403523241820714,1.6813950197633736,1.0649843816990268,0.6649587539068506,1.2155524544803429,0.8277697709720996,1.283697024362956,0.6771961637662065,0.884251144417075,0.5907278406865737,0.8739482122463254,0.7963999575529264,0.5171279355086682,0.6978417975817762,1.2999508710933079,0.7157732920236477,1.1708927105409366,0.783197053697072,1.0408881414952187,0.5062715498981728,0.5401875469846674,0.5846592176687543,0.9351384375401459,1.2754250736794381,1.2115361992132243,1.1419770251776793,1.1352817697400297,1.1488585708496555,1.247641411921557,1.2622315728879543,1.2267583029736404,1.2056187814964117,1.1128814708977988,1.2361395914369753,1.1539686312357922,1.2304475879267351,1.1538312171091474,1.0226939073368189,0.9492252097752194,1.0585675308705231,1.0505495395551592,1.2154857314837868,1.182869981006011,1.1419490077891057,1.3043379405664062,1.1745228117408713,1.0154426472724987,0.783750850147359,1.3153067473876947,1.0845217798122646,1.0223639593088976,1.0305155004727813,0.8135293989698534,0.7895156550002611,0.655843427661218,1.2867891029213696,1.6827910723984778,1.3273501380922195,0.7260802185713924,1.6080387267126304,0.6034095391876436,0.5052410865985523,1.3823007000313452,0.7502622148413601,1.1487466710462078,1.5619433537407699,1.6522513496839266,0.6221657637045954,0.5132283195079387,0.7176575317019569,1.1188715004607626,1.0647199568645955,2.0481783437820265,1.37402719862536,0.7258412942249536,1.90700172683828,0.6598194830152572,1.101579714794831,0.5189448406397097,2.0658005187828854,2.0974571514769873,2.0447907648708012,1.0021196133841057,0.6724189526184541,0.6470140046718659,0.6904548434400959,0.8862522202486683,0.9435958395245173,0.9902480367226725,0.7131483775349171,0.8814063283216609,0.6930214799899641,0.23404128403881336,0.6168027667798517,1.2816853376081492,5.5,0.0,2.444444444444445,1.5694444444444446,0.7772222222222224,0.7086111111111111,0.15111111111111108,0.16843820861678002,0.07129472159234061,0.06031635802469136,3592.821250203104,3881.603325539534,2026.4197134471142,1907.0803503231946,10.046447219348723,0.40045861303847347,6.023260899924105,0.6679415662494899,1.0,0.1,1.9222547878357887,3.5670314951575843,4.080050351464736,4.4946803684089085,4.4946803684089085,4.4946803684089085,0.3055555555555555,0.0,0.09401709401709404,0.07133838383838383,0.040906432748538016,0.04168300653594771,0.010074074074074072,0.01871535651297556,0.011882453598723435,0.02010545267489712,0.6142778095561893,13.432098765432098,5.325443786982248,3.4844444444444442,98.46930176378612,1.0,3.7589379560379124,65.1303650165558,,38.65805796324871,48.04936942239786,48.52078659267465,38.65939965639406,57.00384758203127,48.06337388049867,47.5620999222781,57.47403116438936,0.2422105655401726,-0.053525875311771276,-0.6051062209468694,0.19189073314142222,0.06355143379276186,0.037182197949801064,0.2312677009824382,-0.0428415041270102,-0.010732563687856508,-0.29210106894173665,0.10353992522537717,0.07554054267628942,0.10990254859305643,0.31791759239452483,0.21558344816748282,-0.12172631419825415,0.1667773176103612,-0.07894821335144464,0.1157141696316991,-0.011564784536116543,0.31402945164726725,0.3025250618025421,0.26754543764041777,0.005227203317059475,-0.1922466560870551,-0.23213801929016978,-0.08185067769525844,-0.1355401259486518,-0.23214012337340725,-0.1926126727914802,-0.1958250665316654,-0.11723291153657595,-0.24204332724921765,-0.14241398463834753,-0.2394782400083672,-0.2183480037949996,-0.06879353340785965,-0.08485228752417719,-0.09297519600047269,0.03583021988117846,-0.025815101364622308,-0.08664693693878193,-0.0661527699995024,-0.10151416072860796,-0.07444426673422133,-0.04029221149149927,-0.10996758599244282,-0.04513779259700602,0.10477593894052746,-0.042236570537633,-0.08506487796266159,-0.07653802680445668,0.1287653653924085,0.06805867641470058,0.10766675338508445,0.18374401433314003,-0.02944587368860625,-0.17167985726955987,-0.009467771860435004,0.17228516166411786,-0.33083956774729834,0.26779113137280186,0.5522059224559218,-0.23059241458572785,0.1547358913847858,-0.05621326731854735,-0.3141641588808762,-0.37864431942211335,0.24516659546151334,0.38568670880697886,0.13947048854157335,-0.11186949654285565,-0.40003594617060967,-0.7134221975699758,-0.4381699196160582,-0.003984446257980882,-0.7404388043318206,0.1535324774437545,-0.4112307072938597,0.12297799656449093,-0.750950658597638,-0.594828401260046,-0.6494625807349308,-0.15510097422869054,-0.0454862842892768,0.05678672648170088,0.15688109891629298,-0.12071047957371227,-0.09329370975730558,-0.1455156944541916,-0.05566265541149951,-0.17529016415146317,0.03910014345725611,0.07622685015299142,0.06430900341057869,-0.2653460051881408,3.539529195983115,7.5168895050778355,1.4867477590984401,22.77111289532956,36.60326836365934,41.68256544725367,42.100512504333395,42.100512504333395,42.100512504333395,33.788089754143655,20.318750062937184,5.766692276481078,5.4679743853372464,0.0,13.469339691206471,2307.3881968767328,1825.46561142383,844.2150207583597,22.0,26.0,30.0,36.0,38.0,38.0,33.0,26.0,24.0,253.052112212,18.0,4.48863636973214,5.303304908059076,6.184148890937483,7.020190708311925,7.902857191280582,8.74623928838306,9.629774129311743,10.476752620919227,11.360671318918662,0.7857142857142858,1.0192857142857141,1.1323040524167713,0.7531072707161292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6980479683490165,1.004481792717087,1.0336203308708771,0.6637641316041988,5.0,1.0,0.0,1.0,0.0,0.0,4.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.256762414135533,5.760247418874442,5.817862777835028,0.0,10.023291153407584,4.722094864452088,8.417796984328938,0.0,0.0,5.156663257125445,31.18920547353706,11.753753343145172,4.895483475517775,211.5507708761705,-347.0144326921373,-32.34407623597629,-12.39337259614776,-31.546766608376117,238.33889323276088,390.95596523281057,21.790867926256038,13.962713044028948,22.9974097195771,0.5,0.7496031028984173,0.2430767944538327,39.25133289043985,0.16011207418572942,1.88658396090309,0.25039689710158275,5.0,0.16666666666666666,0.3998570563234057,0.741994621364643,0.8487100323598382,0.9349591285190845,0.9349591285190845,0.9349591285190845,1.3660199999999998,,1.8035714285714288,1.3895559505374209,1.1082508187380549,1.8006559751755822,-4.377290316528427,1.2713433292533662,1.237629484152691,-1.9973784437328954,62.90290000000002,12.940891921302285,0.0,5.156663257125445,0.0,11.819220675208399,10.455762341614273,36.09208276118249,0.0,0.0,3.6109179126442243,0.0,4.948759890378168,2.3978952727983707,6.456769655572163,4.59511985013459,8.03947991910045,6.529418838262226,9.663769906600864,22.000000000000004,7.370322341899723,3.55404935122197,0.0,4.7684184198370705,0.0,0.0,1.298995128915765,0.0,28.539999999999996,0.0,23.777086167800455,0.0,0.0,-3.6448148148148136,0.0,0.0,0.0,31.7045134676696,10.455762341614273,11.50524905251859,0.0,13.574460241454382,10.023291153407584,6.923737199690624,5.760247418874442,39.750413754799176,0.0,0.0,0.0,21.087003580051615,19.54534311377246,20.7127054114043,130.2607300331116,,77.81175295134234,95.93526167414427,96.91119073608601,77.81547595663727,115.99993091969381,95.97717795755578,94.97859637583235,115.6530194265668,20.7127054114043,130.2607300331116,,76.43255127067007,94.70918289425833,95.93332236661124,76.43850374032655,118.38498548059097,94.85540443174403,93.88657036040351,116.94544077251163,4.742568195033367,98.14411554725537,,57.85850966349352,74.20029785594971,74.79366357233614,57.85935639396881,86.87340074520594,74.12531996151881,73.20100390218907,88.5299036212326,1.2183944359649588,7.6623958843006825,,4.577161938314255,5.643250686714369,5.700658278593295,4.577380938625722,6.823525348217283,5.645716350444458,5.586976257401903,6.803118789798047,2.3834977002630895,65.1303650165558,,38.65805796324871,48.04936942239786,48.52078659267465,38.65939965639406,57.00384758203127,48.06337388049867,47.5620999222781,57.47403116438936,28.125490196078434,0.0,1.6746180887414654,0.0,0.0,5.48328015388892,0.0,28.94136926438456,0.0,2.3013784958427816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.585395684917565,337.23868817798166,53.823134059402086,99.87688186441235,114.24140984101263,125.85105031544944,125.85105031544944,125.85105031544944,308.0,106.1125754258539,112.65097593094971,63.24213124549106,106.6,98.22,1.0,7.404640434373648,5.169925001442312,3.7727828789413107,4.06182394452714,,4.025936214459753,4.058123921821242,4.060583599165768,4.025923551041822,4.043362189274059,4.057479777745654,4.055618422946705,4.057450003070807,0.22192840464360652,0.23893082026630233,,0.23681977732116194,0.23871317187183774,0.23885785877445695,0.2368190324142248,0.23784483466317993,0.23867528104386201,0.2385657895851003,0.2386735295924004,1.8584411443883266,1.9322603712148798,,1.9233857347513195,1.93134902965878,1.9319549579825737,1.9233825892872156,1.9277048219957966,1.9311902875366198,1.9307314357427519,1.931182949290781,172.43999999999974,84.273276197898,80.17340891675022,,81.1027524588484,79.59843827242194,79.60216489008906,81.10363847108594,80.64724247929472,79.64331599565888,79.73157994174248,79.8918490815511,4.957251541052823,4.716082877455896,,4.770750144638141,4.682261074848349,4.6824802876522975,4.770802263005056,4.743955439958513,4.684900940921111,4.690092937749558,4.699520534208888,4.964693057483606,4.91482015131507,,4.926345150680967,4.907622724026847,4.907669540654345,4.926356075185637,4.920712863843582,4.908186366705005,4.909293993531529,4.911302084632509,30.846883083480307,0.11791950113378746,3.55404935122197,5.984419557181102,0.679936224489796,7.370322341899723,0.0,1.6746180887414654,-3.6448148148148136,199.69108567406758,95.17450525146585,-156.11820656481703,-14.551265593717043,-5.5756502344577505,-14.192564233165184,107.22620462058126,175.88704787997222,9.803486251985413,6.281680281427578,10.346296934116015,535.0,22.0,1.9762887973709133,0.936874187963349,0.2041241452319315,0.05103103630798288,0.34846171252933794,0.11735402420532191,0.10206207261596575,0.017010345435994292,0.0,0.0,0.0,0.0,0.11785113019775792,0.026352313834736494,0.2845177968644246,0.06730624852988251,0.25,0.07937178587604402,12.466255326250886,9.860804953420892,7.971163677742107,6.2724426090389125,7.933750668692625,5.179739269650549,5.739218086177263,3.4279344093557125,4.462590989663966,2.241837422891192,3.024191331605284,1.454093966211893,2.067084550418735,0.9102145069789689,1.0759267051160735,0.41617179245038566,3.1635761901972383,1.4474137212155063,4.473762365579442,1.6349016576973694,5.3744686902922165,1.766107971230572,55.939123987476584,34.83356196425043,26.349342907266564,24.988668047660568,24.988668047660568,24.988668047660568,88.0,100.0,32.64072299999999,19.427276999999997,0.4642857142857143,52.07,6.506944444444445,3.6249999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,11.0,28.0,0.0,0.0,29.0,11.0,2.0,7.0,22.0,13.0,18.0,16.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,5.0,2.0,1.0,17.0,7.0,0.0,3.0,3.0,0.0,2.0,3.0,1.0,0.0,0.0,1.0,2.0,3.2771447329921766,5.744104344134774,3.9464244321454784,4.3710288804643405,4.874720110116457,5.1701288183340095,5.337538079701318,5.432902890880455,5.182836366672891,5.497168225293202 +3748,CC(C)NNC(=O)c1ccncc1,0,21.076923076923077,6.142103846153846,2.730769230769231,6.615384615384615,167.8557752060668,82.9285411153846,1.3520489139629617,6.192342307692308,4.416666666666667,7.660050000000002,198.54131115290258,22.96153846153846,6.408957692307693,3.1923076923076925,6.230769230769231,153.32336440113465,85.86835665384608,1.659060461923076,6.524042307692309,3.327991452991453,7.805910615384617,239.64379392107645,18.302325581395348,6.227441860465117,2.883720930232558,4.5813953488372094,161.2118728544975,66.84145209302325,1.3663857648626512,6.30816511627907,3.1162790697674425,7.708618046511629,190.72087484195853,14.69811320754717,6.168509433962265,2.358490566037736,3.4339622641509435,166.84894098689506,51.369223509433965,1.155978672160189,6.222190566037737,3.158280922431867,7.706905962264149,155.36049231533138,12.153846153846153,6.0312884615384625,2.0576923076923075,2.730769230769231,172.3341320575987,41.83427590384615,0.9693724301015768,6.0621442307692295,2.940170940170941,7.645481615384613,128.11361931577088,14.657894736842104,6.237786842105263,2.210526315789474,2.9473684210526314,169.21023141481683,51.74606489473684,1.0745734109602634,6.271663157894737,3.662280701754385,7.806612631578947,146.87277093264117,12.8125,6.210840624999999,2.25,1.5625,164.1617634811749,42.19528771875,1.2029190048561251,6.26276875,3.2343749999999996,7.793553875000001,157.45532082319616,10.566666666666666,5.626299999999999,1.9333333333333333,0.9,155.68661477837654,33.52065443333333,1.2591803373132002,5.733666666666667,2.1888888888888887,7.214604400000002,150.70371560546968,6.090909090909091,5.389818181818182,1.4545454545454546,0.30303030303030304,168.59895983673294,16.925258,0.8620836947844241,5.445818181818183,1.8484848484848484,7.083663757575758,90.90743094321378,7.443786982248521,0.11885517751479281,0.01704157833411001,0.4807692307692308,3.7514792899408276,1.502521436820533,35.412440924556215,0.20876906115899554,0.1123244082840236,1.4653188691650232,0.0666338520710059,47.8182879697065,0.09763313609467414,0.00435931952662716,-0.007209884906066717,0.1346153846153846,1.2840236686390532,-0.02989429305355129,0.4282984911242585,-0.00936932525147922,0.003979437869822499,-0.0858809993425378,0.001583905325443792,-1.2497490333665788,0.3361772395761656,0.007503498692720484,-0.0015952520640867519,-0.06395348837209303,0.3612219622953072,-0.22479618234561125,1.538276851830191,-0.010966243660950805,0.0077277384064951184,0.1213935140589881,0.004267428787670291,-0.6563654647445049,-0.5802165903762421,-0.006231882884894511,0.0021343178967128625,0.02358490566037736,0.13531316288936024,-0.18711023981876465,-2.80968229465781,-0.0262606646547227,-0.005701911912470687,0.03197995360549785,-0.0027019681813107025,-5.02052582702845,0.6508875739644969,-0.014142677514792897,-0.0036587467472479224,0.009615384615384616,0.15976331360946747,-0.060327624509643844,3.206284386834319,0.017907492009697466,-0.00933831360946747,-0.121301775147929,-0.010783760355029582,6.134979517758996,0.404391155403301,0.007319620056057266,0.0032353226362370215,-0.07894736842105263,-0.601681719090626,0.1382205464501544,1.9204941118810335,0.010144792730417384,0.00661273746496419,0.050763002180006185,0.0031003341638119013,2.3556853942424962,-3.0928254437869813,-0.048568759245562136,0.00016853802329262654,-0.140625,-2.3428254437869818,0.4196593776095823,-14.445824920950447,0.016285801337887845,-0.05078594674556208,-0.6771244247205784,-0.024325693417159747,-7.126134530360068,-2.5078895463510853,-0.0031390236686389874,-0.0011466377822833094,-0.11666666666666667,-0.8053254437869823,-0.39299338778401777,-12.151163318145954,-0.09126306168036348,-0.008035049309664678,-0.07087442472057853,0.002099086390532537,-21.737445554428767,0.25551371705217896,0.018742724583109282,0.0009705981793408519,0.022727272727272728,0.24385870539716678,-0.47565638730370124,1.0283755369822516,-0.04776654914431957,0.017418598708983293,0.11451796067180693,0.009690744665590804,-6.92703714862864,,,0.4641025641025641,1.1730769230769231,0.5769230769230769,0.0,0.5961538461538461,-0.019230769230769232,0.636503423274196,0.016602789201187056,0.02321817381657167,0.6723276192702894,0.23928889243352028,0.2375093616247615,1.3088310425444853,0.4767982540582818,1.9507135209928292,1.3609346848602717,0.4539530445744162,0.1358257915581413,0.0,0.5897788361325575,6.888687001384615,548.0,159.6947,71.0,172.0,4364.250155357737,2156.1420689999995,35.153271763037004,161.0009,114.83333333333334,199.16130000000004,5162.074089975467,597.0,166.6329,83.0,162.0,3986.4074744295012,2232.577272999998,43.135572009999976,169.62510000000003,86.52777777777779,202.95367600000003,6230.738641947988,787.0,267.78000000000003,124.0,197.0,6932.1105327433925,2874.18244,58.754587889094,271.2511,134.00000000000003,331.47057600000005,8200.997618204217,779.0,326.93100000000004,125.0,182.0,8842.993872305438,2722.568846,61.26686962449001,329.77610000000004,167.38888888888894,408.4660159999999,8234.106092712564,632.0,313.62700000000007,107.0,142.0,8961.374866995133,2175.3823469999998,50.407366365281995,315.2314999999999,152.8888888888889,397.5650439999999,6661.908204420085,557.0,237.03589999999997,84.0,112.0,6429.98879376304,1966.3504659999999,40.83378961649001,238.32319999999999,139.16666666666663,296.65128,5581.165295440364,410.0,198.74689999999995,72.0,50.0,5253.176431397596,1350.249207,38.493408155396004,200.4086,103.49999999999999,249.39372400000002,5038.570266342277,317.0,168.78899999999996,58.0,27.0,4670.598443351296,1005.6196329999998,37.77541011939601,172.01000000000002,65.66666666666666,216.43813200000005,4521.11146816409,201.0,177.864,48.0,10.0,5563.7656746121875,558.533514,28.448761927885997,179.71200000000002,61.0,233.760904,2999.945221126055,193.53846153846155,3.090234615384613,0.4430810366868602,12.5,97.53846153846152,39.06555735733386,920.7234640384615,5.427995590133884,2.9204346153846137,38.0982905982906,1.7324801538461534,1243.2754872123692,2.5384615384615277,0.11334230769230615,-0.18745700755773465,3.5,33.38461538461538,-0.7772516193923336,11.135760769230721,-0.24360245653845974,0.10346538461538499,-2.232905982905983,0.04118153846153859,-32.49347486753105,14.45562130177512,0.3226504437869808,-0.06859583875573033,-2.75,15.532544378698208,-9.666235840861283,66.14590462869822,-0.4715484774208846,0.3322927514792901,5.219921104536488,0.18349943786982253,-28.22371498401371,-30.75147928994083,-0.3302897928994091,0.1131188485257817,1.25,7.171597633136092,-9.916842710394526,-148.91316161686393,-1.391815226700303,-0.3022013313609464,1.6949375410913863,-0.14320431360946723,-266.08786883250787,33.84615384615384,-0.7354192307692307,-0.19025483085689196,0.5,8.307692307692308,-3.13703647450148,166.72678811538458,0.9311895845042681,-0.48559230769230843,-6.307692307692308,-0.5607555384615382,319.0189349234678,15.366863905325438,0.2781455621301761,0.12294226017700682,-3.0,-22.86390532544379,5.252380765105868,72.97877625147927,0.3855021237558606,0.2512840236686392,1.928994082840235,0.11781269822485226,89.51604498121486,-98.9704142011834,-1.5542002958579884,0.005393216745364049,-4.5,-74.97041420118342,13.429100083506633,-462.2663974704143,0.521145642812411,-1.6251502958579866,-21.66798159105851,-0.7784221893491119,-228.03630497152218,-75.23668639053255,-0.09417071005916962,-0.03439913346849928,-3.5,-24.15976331360947,-11.789801633520533,-364.5348995443786,-2.737891850410904,-0.24105147928994033,-2.126232741617356,0.0629725917159761,-652.123366632863,8.431952662721905,0.6185099112426063,0.03202973991824811,0.75,8.047337278106504,-15.69666078102214,33.936392720414304,-1.5762961217625457,0.5748137573964487,3.7790927021696286,0.3197945739644965,-228.59222590474513,0.744753713528824,0.5955548639932271,0.4767982540582818,0.31983957950435465,0.3341606937409364,0.18681568631271,0.2149368532648939,0.08334612941811559,0.14084053839824934,0.04363013265930718,0.10049704413212365,0.02371144297348004,0.06347218779291333,0.01356810553434415,0.04541743902818976,0.00768289223143618,8.02201688879035,5.721406749492336,3.5438025846331818,2.21734637270057,0.4067626230315581,-0.374563228107805,3.1358128589536927,0.9779153699350567,6.021947070310064,0.9889474952836498,14.637199979891546,10.985550697650034,16.01006088996072,11.735459102277941,1.9574164253880828,0.7517725075602494,3.489030139513355,2.2661116985782828,7.008268180933822,1.2909764361450424,3.701936537769017,2.461488487499775,20.856738227369064,14.702710544381247,0.31997001128626074,0.6941568775873208,0.8050034292534192,0.8206799713373042,0.8206799713373042,0.8206799713373042,2.16665114327521,271.44812008925527,0.0,3.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,3.1303818788837874,1.2942878636308937,0.750375961704882,0.6734528847818053,0.6734528847818053,0.6734528847818053,135.7684422570462,465.4576049095509,35.558392162045685,17.902215573444266,36.31608694480891,,8.0,159.0,0.0,4.794537184071822,11.949020558499466,5.563451491696996,0.0,0.0,24.52642128014937,13.847474399381248,15.835561315167979,0.0,6.033333333333333,15.25,7.5,0.0,7.75,0.0,0.03589743589743591,-0.25,0.1423076923076922,0.03675213675213673,-0.10555555555555546,0.07350427350427335,0.16881927710843359,0.0,0.5756410256410259,0.8512820512820511,0.43333333333333374,0.5388888888888892,0.7777777777777778,8.274544502564547,0.21583625961543174,0.3018362596154317,8.740259050513762,3.1107556016357636,3.0876217011218996,17.01480355307831,6.198377302757663,0.5451807228915664,0.22099447513812154,0.0,0.24861878453038674,0.3333333333333333,0.32352155489406986,-0.3914769362885602,-0.05226645683702486,-0.0150568052418677,-0.04893461703607002,0.67647844510593,0.8185720708533005,0.040174609067582086,0.0314835411866654,0.045476226158516694,-2.2929015245897304,0.881856120826709,0.7472982509418629,1.4397930890634196,1.0,0.5224763406940064,1.3576414127419392,0.8884705966900364,1.195637888127379,0.7426449962005129,0.6085249579360628,0.7251065413469937,1.0870102332648846,0.8891928864569083,0.8168737036280513,1.0866807811304582,1.4651162790697674,0.8523769349277385,1.2893530072122596,0.8934097022618411,1.0795484684556544,0.8083377939648568,0.5894331476868093,0.777294719035603,1.0085129419109833,1.0516655667876533,1.0949281613814466,1.0280905057092165,0.9433962264150944,0.9502782572465928,1.1350932144454666,1.0516316760548678,1.059079966696125,1.0821841709992617,0.9198113207547167,1.0761151341726154,1.0402388220162206,0.9340222575516692,1.3091565738722857,1.4663947083880664,0.8653846153846154,1.0030559936908519,0.8791528832359625,0.9259041232027083,0.7758057794926156,1.2597242507371802,1.3944195176668532,1.3936595433083436,0.7701030217353682,0.9806972219897916,1.2690975601016632,1.2589168994674886,1.236842105263158,1.3220156068404452,0.8170447634279686,0.9737611224583032,0.8557992805410274,1.239800596758275,1.6575220651179268,1.3966819064787974,0.8593367542972855,1.4168695349761526,1.7053089306761626,0.8805980634699158,1.40625,1.762125394321767,0.6822628097474414,1.4034881290905654,0.9175364061444659,1.7137325121524327,2.384126998037016,1.8350832507039043,1.100799756660632,1.1561009538950715,0.38856273048722945,0.35740209982120635,0.9333333333333333,0.8244610935856994,1.289834771890246,1.1740216155769059,1.5844594979150701,0.48447412331936857,0.27341559169938306,0.24950454162896682,1.5509515646846819,0.8572409307703426,0.3489364364689987,0.2421764176108066,0.45454545454545453,0.6563067584360961,1.0644654367577142,0.8697040061464346,1.1821608651831144,0.40801834864362413,0.2187324733595064,0.24996307152186653,1.1431572581450005,2.5,0.0,1.333333333333334,0.5625,0.35111111111111115,0.2638888888888889,0.1420408163265306,0.06597222222222222,0.04081632653061224,0.0,1972.3460160212362,2278.362506024258,1203.883721603475,1066.5041903989545,9.683718890771157,0.452746590362045,5.299448180949991,0.8273070252071475,1.0,0.3333333333333333,1.5700578392573044,3.406151854510198,3.9500637564362098,4.026986833359286,4.026986833359286,4.026986833359286,0.1923076923076923,0.0,0.08333333333333337,0.040178571428571425,0.031919191919191924,0.02638888888888889,0.020291545189504375,0.013194444444444446,0.02040816326530612,0.0,0.42802183077693284,11.076923076923077,5.671875,4.1522491349480966,77.34220204552473,1.0,3.4437252969111523,43.584571236379745,,34.45315868959168,33.456520708929375,32.66407001110167,34.46188744990056,53.05834604317035,34.028720267084445,34.51376424212301,46.6980046110602,0.013116057233704237,0.03667757364700915,-0.42307612386087423,0.28,0.34227129337539436,-0.01989608422280499,0.012094576932347566,-0.04487889728231175,0.03542807774922873,-0.05860908581043185,0.023770280063592327,-0.026135378041102407,0.04516212518948488,0.06313144155446314,-0.0936094082843098,-0.1330232558139535,0.0962878732301371,-0.14961262903596215,0.04343888225912991,-0.05252810737410497,0.06879838963366494,0.08284443516936438,0.06404295497013836,-0.01372624350667512,-0.07794642589315175,-0.05243257395428891,0.12524179714274844,0.049056603773584916,0.03606928159038152,-0.12453082880115594,-0.07934167262413926,-0.12578810533004675,-0.050762892941780095,0.02182456957216477,-0.04054948194247348,-0.10499175190481552,0.0874403815580286,-0.11899084087466605,-0.21469529849384103,0.02,0.042586750788643546,-0.040150924327111356,0.0905411856151088,0.08577656052234375,-0.08313699357182101,-0.08278182837913628,-0.16183606410054557,0.12829776594355666,0.054325997824449815,0.0615843601356471,0.1898487671039999,-0.16421052631578945,-0.16038519010459906,0.09199239562441199,0.054232186817410155,0.04859337238045657,0.05887177654426824,0.03464297310859872,0.04652791437763714,0.049263273409847985,-0.4154908585055643,-0.4086381448508394,0.009889813020152302,-0.2925,-0.6245070977917981,0.2793034211196469,-0.4079307877061141,0.07800869174520458,-0.4521363390327834,-0.4621003925967469,-0.36506509320874875,-0.1490252962396848,-0.3369104398516164,-0.02641049161066881,-0.06728471740133524,-0.24266666666666667,-0.21466876971608842,-0.2615559273587645,-0.34313261105138665,-0.4371484029947274,-0.07153431237623122,-0.04836791923724058,0.031501801641239696,-0.45458435417427984,0.034325769619887314,0.15769379992534652,0.056954711606619565,0.04727272727272727,0.06500334576044352,-0.31657211381305267,0.029039950653871487,-0.2288009002825435,0.15507403043636434,0.07815224595931276,0.14543275473950118,-0.1448616720242474,3.3019272488946267,4.499153694556564,1.3103706971044482,14.794958214006302,29.4036235105524,30.79827132307843,30.87580978461689,30.87580978461689,30.87580978461689,25.35927577290678,17.69215090318353,5.901389579467411,1.765735290255837,0.0,7.6671248697232475,1542.1651050360517,1401.3266549507862,231.80790157082333,4.0,16.0,17.0,18.0,20.0,14.0,12.0,8.0,6.0,179.105862036,13.0,4.07753744390572,4.8283137373023015,5.6240175061873385,6.401917196727186,7.201170883281678,7.989899374942939,8.790421306897867,9.584452402426324,10.385574137962314,0.6153846153846154,0.9816923076923076,1.1454224439982812,0.5739066112473823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6402650621833258,0.9669683257918553,1.003501596728108,0.5965604048912619,4.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.907179729351506,15.204307102129416,5.425791397110385,0.0,0.0,0.0,25.980208536304467,23.99897946407111,0.0,124.44584243186242,-150.58556807760755,-20.104821931082277,-5.791752618369522,-18.823196009700943,260.2142846889086,314.8720368319434,15.453570230963408,12.110462955074745,17.492890935107965,0.5,0.8072282041498365,0.2373556483506345,16.13305114945215,0.21899229520698718,29.98875023212694,0.1927717958501634,4.0,0.23076923076923078,0.3340236091525121,0.7246453648505139,0.8403604754659768,0.8567255565085431,0.8567255565085431,0.8567255565085431,0.7243999999999996,,0.6785714285714287,0.8427175430432758,0.8488829422512447,0.6767661145452564,-2.636839718884606,0.7422735618115056,0.6692837795551935,-1.356968362788312,49.97490000000003,4.794537184071822,0.0,15.835561315167979,0.0,19.88931522852921,0.0,30.08987277184637,0.0,0.0,3.295836866004329,0.0,4.51085950651685,0.0,5.910796644040527,0.0,7.389563953677635,0.0,8.91018077801329,16.0,6.503229402872259,3.8226037729906777,0.0,0.0,0.0,0.0,0.600138888888889,0.0,25.523999999999997,0.0,11.347731481481482,0.0,0.0,0.0,0.0,0.0,-0.1424999999999994,29.78098354395531,10.85158279422077,0.0,0.0,16.932999079446674,0.0,0.0,24.205463075150064,24.52642128014937,0.0,0.0,0.0,14.92157189243194,16.64689161676647,16.109449862862625,87.16914247275952,,68.80192177478776,66.7833925650828,65.1975426464723,68.81965703602492,106.5719843466093,67.94324460158248,68.92456174892982,93.6047735856263,16.109449862862625,87.16914247275952,,68.27938395499274,66.14611114980777,64.58139848556759,68.29846364693233,108.75353180522531,67.37660647276003,68.40855859212564,94.75297758490868,4.4600216930709475,66.42920430515501,,53.538343392613214,51.88865374466877,50.51832525194688,53.552637171599955,85.85741979245823,52.83076245423507,53.63945455593288,74.71503967602845,1.2391884509894326,6.705318651750732,,5.29245552113752,5.137184043467908,5.015195588190177,5.293819772001917,8.197844949739176,5.22640343089096,5.301889365302293,7.200367198894331,2.2300108465354733,43.584571236379745,,34.453158689591675,33.456520708929354,32.66407001110163,34.46188744990055,53.05834604317035,34.02872026708444,34.513764242123,46.6980046110602,25.14117647058824,0.0,3.902438271604938,0.0,0.0,0.0,0.0,26.091041514930808,0.0,5.405444066515495,0.0,0.0,0.22758078231292456,0.0,0.0,0.0,0.0,15.51057052717281,310.50850362374786,40.82150382068991,88.55994821726514,102.70165766734145,104.70165766734145,104.70165766734145,104.70165766734145,141.0,90.88330398963365,74.15162349702318,43.01723774825263,54.019999999999996,54.019999999999996,1.0,6.182472228392121,4.700439718141093,3.2348531935686484,3.553825713983885,,3.5489732027096608,3.5487247782572564,3.5492072690377094,3.5489773421496222,3.5517316658744735,3.548902298464837,3.5489843606714095,3.5509387876181044,0.2488348610437422,0.27337120876799115,,0.2729979386699739,0.272978829096712,0.2730159437721315,0.2729982570884325,0.27321012814419027,0.27299248449729513,0.2729987969747238,0.273149137509085,1.4363478107317804,1.5303889536007118,,1.5290225874439078,1.528952586028471,1.5290885385222341,1.5290237538200147,1.5297995422264623,1.5290026084389747,1.5290257314361477,1.529576280211181,145.4199999999999,60.64772302669236,50.68843574547671,,50.591611900154525,50.60996042897702,50.645712906489486,50.59151198155837,50.4664683427384,50.60014597301851,50.59044591559598,50.46039194893369,4.6652094635917205,3.899110441959747,,3.89166245385804,3.8930738791520785,3.8958240697299606,3.8916547678121822,3.8820360263644926,3.892318921001424,3.8915727627381522,3.8815686114564376,4.367446356311784,4.1880620572425435,,4.186150054294875,4.186512667811667,4.187218850049571,4.18614807928971,4.18367338699458,4.186318725599013,4.1861270070356325,4.183552975167748,0.0,15.17033525447216,0.0,6.005582955404384,-0.1424999999999994,3.5556363378684797,3.1751738473167044,3.902438271604938,0.0,172.1985399683986,47.86935356949164,-57.92426375928604,-7.733523359750575,-2.227856298434079,-7.240532969910755,100.0940598270761,121.11871771455144,5.944372289512147,4.65841221979044,6.728817650808414,274.0,14.0,0.8106172175260454,0.42303950423612907,0.0,0.0,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.024845199749997663,0.05892556509887896,0.012422599874998832,9.681798275874712,7.742213231911952,6.198377302757663,4.15791453355661,5.346571099854982,2.98905098100336,3.6539265055031964,1.4168842001079651,2.535129691168488,0.7853423878675293,2.009940882642473,0.4742288594696008,0.8886106291007867,0.1899534774808181,0.5450092683382771,0.09219470677723417,1.3088951918547531,0.40069105295386975,1.4699984927181515,0.32942414024554384,2.003200506405146,0.32248088490508375,44.10418210608429,23.29680766200037,20.653958096684278,20.446231964519576,20.446231964519576,20.446231964519576,58.0,62.0,27.800308999999977,15.049690999999996,0.23076923076923078,13.04,5.083333333333334,3.0277777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,26.0,0.0,0.0,26.0,6.0,1.0,4.0,22.0,7.0,13.0,19.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,3.0,2.0,1.0,13.0,4.0,0.0,3.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,1.0,2.8903717578961645,3.446011397451948,3.3141860046725258,3.7074558396868715,4.088074949208505,4.504659004391702,4.155949095924885,4.28272412109997,3.684180933332382,3.595598464110711 +5656,COc1ccc(C(CN(C)C)C2(O)CCCCC2)cc1,0,17.361702127659573,5.762870212765956,2.702127659574468,4.382978723404255,164.477091331909,67.83097523404255,1.3172820517217665,5.8325808510638275,2.758421985815603,7.372178042553189,185.42859907498135,20.291666666666668,6.119270833333334,3.3333333333333335,4.125,146.2352254690947,74.50165193749996,1.6843633342916677,6.261197916666668,2.5549768518518516,7.584399249999994,235.19039233588603,15.831460674157304,5.976483146067416,3.1235955056179776,2.865168539325843,156.89054420579984,56.57694585393263,1.400900926637472,6.075477528089886,2.240168539325843,7.5257612134831415,189.7148095043677,13.368852459016393,5.859049180327868,2.680327868852459,2.278688524590164,155.97524277311416,45.78240706557375,1.2926375585162297,5.9565163934426195,2.2867714025500914,7.443531606557378,167.2266355640573,10.821192052980132,5.675794701986756,2.2582781456953644,1.7417218543046358,162.4438391343858,36.461334072847684,1.1068952647049672,5.749586754966886,2.1063281824871227,7.3173550993377505,137.40526632465725,11.267123287671232,5.69121917808219,2.267123287671233,1.4794520547945205,162.66232022390594,38.27203623287671,1.1372348353222876,5.768071917808219,2.15296803652968,7.318009534246577,142.6553036173485,9.972222222222221,5.729541666666668,2.0,1.1180555555555556,161.08966602209455,31.499035347222218,1.1254201519386666,5.807170138888888,2.158275462962963,7.358046666666665,136.17946092251242,7.227586206896552,5.435606896551726,1.703448275862069,0.896551724137931,166.93178381866923,22.03656495172413,0.9188833242230068,5.493532413793101,1.7655172413793108,7.133710786206897,102.3600194312096,6.91919191919192,5.479949494949497,1.6666666666666667,0.5858585858585859,170.4408716720308,21.272177787878785,0.809191965831303,5.520601010101011,1.7617845117845123,7.207663474747475,90.92517850971272,6.902670891806244,0.08732430964237206,0.013498540114844103,0.5468537799909459,2.8601177003168843,1.3154625436183143,32.993855060208226,0.2260390608195834,0.08584979628791299,0.7009267642472711,0.05135403893164325,50.76813651793451,0.2967971933001361,0.0017353091519540901,-0.004183113714999951,0.22796891504451458,0.891655349328504,-0.19251197682548218,1.3863588489229892,-0.01118124351045969,0.0027806558397464446,-0.05927979813222007,-0.000602505243700017,-0.5447601044643976,0.200126143814121,-0.008858137038977433,-0.001677082213380075,-0.0326295390155696,-0.11830560373548464,0.28184842128874027,1.0491561047451539,0.027936584605103846,-0.007198684645551173,0.007902956580417517,-0.005408976536233285,5.444770431232281,-0.9045892733897837,-0.008234825861416419,-0.00023377915432673603,-0.025925980897817436,-0.09276506690216628,-0.18503553014911625,-4.3435668380247625,-0.031832083869585207,-0.008616311809364086,-0.0627814904418998,-0.00443114112906218,-7.214660573042861,0.2268204425603868,0.003669406012129783,0.001111189169704827,-0.039315383485380405,0.08549312115697662,-0.05812917460055956,1.0716633434834617,0.0005888070558239785,0.0035650409672651584,0.0031216991097027342,0.0014415428634814227,0.5489597890457184,0.21755644716198355,-0.001078098625175963,-0.0004437638285117975,-0.08241192630397437,-0.33636369273891986,0.011279231618206872,1.0455760814414277,0.0030066222006394565,-0.00013013729636543488,0.03744822360855307,-0.0013129663580495727,1.4411854918680214,-1.802789095115939,-0.016249486947336658,-0.002288151451317632,-0.04508073034555607,-0.5555964237211409,-0.18817825741668812,-8.611960649156229,-0.04299385217601583,-0.0177472992429958,-0.15133780804816427,-0.007304686685780389,-11.690851547636932,0.24509139726198464,0.01749708434148703,0.0031110168206631827,-0.008922745508187516,0.24068934296998173,-0.05688161193146452,1.0457220042084816,-0.013484067534236243,0.01542172242081768,0.07626814893443579,0.011496832381636256,-1.9651990329081381,0.9140065206158461,0.007345408818835716,-0.0003849499434690309,-0.03363650081622013,-0.08513381895002527,-0.06499901799621466,4.32223833394606,0.0015605300147785385,0.009049279577120234,0.07270195796301125,0.0018187278854639635,3.4068684167700476,,,0.47833333333333333,0.925,0.325,0.025,0.6,-0.275,1.050022522085101,0.018277648022278114,0.02687764802227811,0.6051209508956988,0.16672542322174647,0.3107076068746302,1.6551434729807997,0.47743303009637666,1.9962053423655106,1.71214834460601,0.10031696685258888,0.18374003090691196,0.0,0.28405699775950083,5.897961257531928,816.0,270.85489999999993,127.0,206.0,7730.423292599723,3188.055836,61.91225643092302,274.1312999999999,129.64583333333334,346.4923679999999,8715.144156524124,974.0,293.725,160.0,198.0,7019.290822516546,3576.079292999998,80.84944004600005,300.5375000000001,122.63888888888889,364.05116399999974,11289.13883212253,1409.0,531.907,278.0,255.0,13963.258434316185,5035.348181000004,124.68018247073499,540.7174999999999,199.37500000000003,669.7927479999996,16884.618045888725,1631.0,714.8039999999999,327.0,278.0,19028.97961831993,5585.453661999997,157.70178213898004,726.6949999999996,278.98611111111114,908.1108560000001,20401.64953881499,1634.0,857.0450000000001,341.0,263.0,24529.019709292254,5505.661445000001,167.14118497045004,868.1875999999999,318.05555555555554,1104.9206200000003,20748.195215023246,1645.0,830.9179999999998,331.0,216.0,23748.698752690267,5587.71729,166.036285957054,842.1384999999999,314.3333333333333,1068.4293920000002,20827.67432813288,1436.0,825.0540000000002,288.0,161.0,23196.911907181613,4535.861089999999,162.060501879168,836.2324999999998,310.79166666666663,1059.5587199999998,19609.842372841787,1048.0,788.1630000000002,247.0,130.0,24205.108653707037,3195.3019179999988,133.23808201233598,796.5621999999996,256.00000000000006,1034.388064,14842.20281752539,685.0,542.5150000000002,165.0,58.0,16873.64629553105,2105.945601,80.110004617299,546.5395000000001,174.4166666666667,713.5586840000001,9001.59267246156,324.42553191489344,4.104242553191487,0.6344313853976729,25.702127659574455,134.42553191489355,61.82673955006077,1550.7111878297867,10.623835858520419,4.034940425531911,32.94355791962174,2.413639829787233,2386.102416342922,14.246265278406533,0.08329483929379633,-0.20078945831999764,10.9425079221367,42.79945676776819,-9.240574887623145,66.54522474830348,-0.5366996885020652,0.13347148030782935,-2.8454303103465635,-0.028920251697600815,-26.148485014291083,17.81122679945677,-0.7883741964689915,-0.14926031699082667,-2.9040289723856945,-10.529198732458132,25.084509494697883,93.37489332231868,2.4863560298542424,-0.6406829334540544,0.703363135657159,-0.48139891172476235,484.584568379673,-110.3598913535536,-1.0046487550928032,-0.028521056827861796,-3.162969669533727,-11.317338162064287,-22.574334678192184,-529.915154239021,-3.883514232089395,-1.0511900407424184,-7.659341833911776,-0.540599217745586,-880.188589911229,34.24988682661841,0.5540803078315972,0.16778956462542888,-5.936622906292441,12.909461294703469,-8.777505364684494,161.82116486600273,0.08890986542942075,0.5383211860570389,0.47137656556511287,0.21767297238569483,82.89292814590348,31.7632412856496,-0.1574023992756906,-0.06478951896272243,-12.032141240380259,-49.109099139882304,1.6467678162582033,152.65410789044844,0.43896684129336067,-0.01900004526935349,5.467440646848749,-0.19169308827523762,210.41308181273112,-259.6016296966952,-2.3399261204164787,-0.329493808989739,-6.4916251697600735,-80.0058850158443,-27.09766906800309,-1240.122333478497,-6.19111471334628,-2.5556110909913956,-21.792644358935654,-1.051874882752376,-1683.482622859718,35.538252602987775,2.537077229515619,0.4510974389961615,-1.2937980986871898,34.89995473064735,-8.247833730062355,151.62969061022983,-1.9551897924642552,2.2361497510185635,11.058881595493188,1.6670406953372572,-284.95385977168,90.48664554096877,0.7271954730647359,-0.03811004440343406,-3.330013580805793,-8.428248076052501,-6.434902781625251,427.90159506065993,0.15449247146307532,0.8958786781349032,7.197493838338114,0.18005406066093238,337.2799732602347,0.7293787834905265,0.6466033757265598,0.45469812390131115,0.36003365411183247,0.2979236706498422,0.21559395114568425,0.18483572050343777,0.1231643959172087,0.1173992340833843,0.07332031990959123,0.07927927620366922,0.045829471644220514,0.05090004629639739,0.026121141615881673,0.03237815675671767,0.01510317641582958,8.011350208259103,5.692235429822453,3.522417220599538,2.1917181188656567,0.360271106594912,-0.5293673853892136,4.023924170337228,0.9871782593972466,6.007456730112356,0.9943772785802352,14.544533161839313,10.952641802978704,16.004959058029822,11.703541104220031,1.9854003432134548,0.7766099927489232,3.4651786433808884,2.241603465146259,6.002557572141468,1.1270666404792706,3.678679020968948,2.4376190980031076,20.89343508413412,14.70604064629467,0.2295421194669998,0.5001745825629773,0.7082671355053293,0.7850266519865842,0.8056931655753673,0.8056931655753673,2.0294795287241216,407.50311001590353,0.0,0.0,1.0,0.0,5.0,5.0,1.0,2.0,0.0,4.252528316163179,2.717385874137391,1.5369964033516492,1.1015837768259003,0.984354521414688,0.984354521414688,290.2718199930532,815.0981955603022,36.39605174258724,17.342514799155367,31.615241258263858,,10.0,317.0,5.601050810983688,5.106527394840706,5.917906046161393,0.0,37.97755473090052,11.984273114623004,7.109797541277533,12.13273413692322,31.127987833128078,4.736862953800049,9.566666666666666,18.5,6.5,0.5,12.0,0.0,0.021666666666666678,-5.5,0.07341648324773775,0.023926134082697614,-0.04949034916504014,0.02365079365079359,0.1135815899581587,0.0,0.5113475177304967,0.7966666666666663,0.43793103448275894,0.4874213836477991,0.7730158730158727,21.000450441702018,0.3655529604455623,0.5375529604455622,12.102419017913977,3.334508464434929,6.214152137492604,33.102869459615995,9.548660601927534,0.6004184100418413,0.1916376306620209,0.05226480836236934,0.1986062717770035,0.6470588235294118,0.21281036600497602,-0.34323897013489274,-0.032733626722666075,-0.0073029568113806955,-0.02288259800899285,0.7871896339950241,1.2696475474648516,0.03928555019273506,0.027013777605635142,0.039676485858276614,-3.56256601586922,1.0545563352570835,0.9345416034644658,1.3096297215694772,1.006725993377484,0.7592493668882561,1.4800495018155027,1.0605153958890166,1.3269425249789757,0.9285638955886405,1.0217918299979372,0.9568809955944941,1.2278946111929416,1.0403176839548682,1.2284692948119096,1.327112728990004,1.7294069499218703,1.3130364110389086,0.9671877324404062,1.0375219213138225,0.9697639963967176,1.1927653375494978,0.8427429917266099,1.2218901160349884,0.964505523750642,1.1651111459928103,1.1482003224410682,0.9710062595752106,1.4083161437411797,1.086895884254719,1.2366194330923637,1.166335007730935,1.2403550412696653,1.146657594419697,1.4560180879164741,1.1812529682053203,1.2127207491263798,0.9451040805264663,0.919067552673563,0.7879527048639883,1.161549932020526,0.9325432014909576,1.0244530895226571,0.9458615717709273,0.9886979899196955,0.9222106173157971,1.240666377919298,0.9373205990411825,0.9775475776820687,0.9454224403110586,0.9084513759113081,0.9057491842841177,1.287138256373039,1.1285466182726462,1.0175255336265554,0.9468128636203664,0.9761899598605166,0.9072701045976953,1.00968753444441,0.8728062568437077,0.9633241464426369,1.253454915763088,1.1733752584680581,1.1146281900060713,0.8078665378955119,1.1252099380957412,1.1712731329174626,1.2537126392355076,1.1979717321370154,1.1921351834606906,1.437841706210027,1.123550792863531,1.2310896208001314,0.8575795129717414,0.4927115198477763,0.501358490739045,0.6665220369947481,0.712713538767179,0.918792142556005,0.8643771052713938,0.9766473400430551,0.5483246363142148,0.3714512353891139,0.4163351111856377,0.9719281054378721,0.7991748545263766,0.952950107882161,1.1359863756429298,0.8677503511940603,1.0265906932573603,0.8431776943564413,0.7975368825484341,0.8397759640782919,0.924331922926118,0.5476687652260173,1.0365229894046404,0.8050756693307325,5.0,0.012345679012345678,2.666666666666668,1.5,1.3644444444444448,0.6180555555555557,0.4448979591836736,0.31597222222222227,0.08641975308641972,0.025625000000000002,3478.3165554663833,4221.109070041383,1850.3558910291567,1577.6694124306382,11.191262414030348,0.4578645835860506,6.067179709028124,0.844557595249314,1.0,0.6470588235294118,1.302060535514458,2.8372029775402465,4.017592448325988,4.453005074851737,4.57023433026295,4.57023433026295,0.23809523809523808,0.012345679012345678,0.09195402298850579,0.05,0.04704980842911878,0.020601851851851857,0.020222634508348793,0.022569444444444444,0.00960219478737997,0.005125000000000001,0.5175658741172333,16.3718820861678,7.319857312722949,4.25,122.10754787623671,1.0,3.9057650093841625,82.44065374465896,,71.23428111294251,70.51465330982603,71.0757861437755,71.24394617080146,89.84850382596,70.98058472937451,71.27249972102229,81.52578589881607,0.042997442287513184,0.01987200539071966,-0.3098937869881096,0.41687362030905045,0.3117547747177376,-0.1463454643839256,0.04201869852410753,-0.049465979330820954,0.032389777960812,-0.08457345496841022,-0.011732382812226405,-0.010730354545748473,0.02899256634872728,-0.10143953127433865,-0.12424174756022821,-0.059667758017709675,-0.04136389342381857,0.2142580361988015,0.03179853044849172,0.1235918451607878,-0.08385208767891618,0.011275010434085141,-0.10532718845022314,0.10724778974916373,-0.13104916742641876,-0.09430164286601658,-0.0173188472485001,-0.04740934751927049,-0.03243400329010532,-0.14066195274565332,-0.13164775168280532,-0.1408255889675302,-0.10036496511264521,-0.08956925836513202,-0.08628612707484251,-0.14211001364003556,0.032859808343120064,0.04202044112524298,0.08231921083694616,-0.07189377658874616,0.029891469552985352,-0.04418915223588907,0.03248069501208199,0.002604890737419689,0.0415264930310276,0.004453673720185508,0.02807068136160124,0.010813077388644966,0.031517719817734914,-0.012345916384466225,-0.032874949789851594,-0.15070194139526447,-0.11760484287120518,0.008574346470696301,0.03169002468894366,0.013301339112531703,-0.0015158719297247445,0.0534267280387972,-0.02556695413572526,0.028387598811291877,-0.26117268567098056,-0.18608205451477142,-0.169511030959666,-0.08243653421633561,-0.19425648939537843,-0.14305101907279288,-0.261017108593126,-0.19020540972045558,-0.20672500122745763,-0.2159110134861047,-0.1422417172581804,-0.23027931197567167,0.035506748199876995,0.2003689970541374,0.2304706134289332,-0.016316510618862776,0.08415364967089109,-0.043240768965572995,0.03169444741453265,-0.059653705361122356,0.17963609801819577,0.10881043901403958,0.22387396630943773,-0.038709300118075156,0.13241345776760266,0.08411642587176583,-0.02851789454221856,-0.061509131045554895,-0.029765844580659367,-0.04941153080453983,0.13100131300385187,0.006903806842588592,0.10540828247013913,0.10372261650057873,0.035415478963297324,0.0671064303407419,13.80744504838282,11.124087255214844,1.3103706971044482,11.593055122147362,24.986758230911253,29.185970539887187,30.26980321606992,30.38797030552442,30.38797030552442,39.92410684731021,34.2429668921202,2.0063393370517777,3.674800618138239,0.0,5.681139955190017,2891.634275473652,2082.749187254234,1168.2360270564527,20.0,29.0,36.0,45.0,56.0,50.0,52.0,50.0,36.0,277.2041791040006,21.0,4.61512051684126,5.442417710521793,6.322565239927284,7.181591944611865,8.069342366811636,8.941545475242885,9.831830420771897,10.710119656197318,11.60127511274258,0.5390070921985817,0.9529361702127663,1.134381289867754,0.4914076989709786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6255244107529624,0.940091781393408,0.9853248826145578,0.5638773856594098,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,14.743300079491233,5.749511833283905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.395199005701247,44.63317283982662,12.462662452073968,12.710848352261221,107.54714819324306,-173.4613453271834,-16.54246581185126,-3.6906669218549655,-11.564089688478894,397.8189681862963,641.6368502331188,19.853585930735978,13.651847877300401,20.051151569784963,0.5,0.9159226808579134,0.3079994843577633,52.67150078665668,0.13075109670825777,69.21002254199578,0.0840773191420867,5.0,0.23809523809523808,0.23441168559599154,0.5107854160408891,0.7232924984380376,0.8016804112345431,0.8227853496091999,0.8227853496091999,3.0356000000000014,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,82.32380000000005,9.843390348640755,0.0,4.899909730850478,0.0,43.623064971775136,27.74989791254449,29.828919765543436,0.0,5.749511833283905,3.7612001156935624,0.0,5.0689042022202315,0.0,6.588926477533519,0.0,8.206037762778815,0.0,9.875242387095826,25.33333333333334,8.174118008314437,0.0,0.0,0.0,0.0,0.0,2.080450942722768,0.0,44.78800000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.31592062378444,4.736862953800049,0.0,5.749511833283905,43.357385849219355,0.0,0.0,43.58546565248844,24.26546827384644,0.0,0.0,0.0,23.096161851635994,29.399647305389234,25.183738195306766,164.88130748931798,,142.40427651159928,140.95359698726492,142.09442049182957,142.42378920793493,181.03839282534994,141.89330685164987,142.48127418268956,163.6102285898118,25.183738195306766,164.88130748931798,,141.82570508302797,140.2722102957805,141.58005433033682,141.8468610049234,182.3797779987801,141.28254338775756,141.90774684849467,164.16888538199163,4.864209461657775,115.78829758312605,,99.24137429345376,98.46419469090016,99.1818645073132,99.25214555581078,120.71459269825608,98.97217698831601,99.2821811875979,110.72408766465496,1.2591869097653383,8.2440653744659,,7.120213825579964,7.047679849363246,7.104721024591479,7.121189460396747,9.051919641267498,7.094665342582493,7.124063709134478,8.18051142949059,2.4321047308288883,82.44065374465896,,71.23428111294251,70.51465330982603,71.0757861437755,71.24394617080146,89.84850382596,70.98058472937451,71.27249972102229,81.52578589881607,44.18431372549018,0.0,5.825793583445774,0.0,0.0,0.0,11.101926886495338,46.310269482884216,6.226859018490062,0.0,5.227714632149156,0.0,0.17009826152683227,2.1681294879062736,-0.5584241543839756,0.0,0.0,26.502237125992263,462.87628812909986,61.19684516917953,133.34853994439158,188.82684507132146,209.29123851803166,214.80101352235863,214.80101352235863,415.0,113.71580844366854,42.48982825043945,53.50031094532195,32.7,32.7,1.0,7.030304715060645,5.392317422778761,3.850895573801432,4.392532697684402,,4.396717500129118,4.398275318945625,4.396373102470103,4.396695007697416,4.347587128641422,4.397251757298992,4.396635432821119,4.3709867443072845,0.1925447786900716,0.2196266348842201,,0.2198358750064559,0.21991376594728126,0.21981865512350515,0.21983475038487083,0.2173793564320711,0.2198625878649496,0.21983177164105597,0.21854933721536424,2.041452918380399,2.173053165591867,,2.174005420372823,2.1743596716757736,2.1739270866731593,2.174000304626989,2.162768188696035,2.17412692572607,2.173986754612759,2.168135963791199,237.48999999999978,131.51790212880596,103.21928802945196,,102.87277908620729,102.70020334887737,102.88005095040378,102.87520999335628,106.95533603606782,102.81398225979402,102.8817158951389,105.22801657071628,6.5758951064402975,5.160964401472598,,5.143638954310364,5.135010167443868,5.14400254752019,5.143760499667814,5.347766801803391,5.140699112989701,5.144085794756945,5.261400828535814,5.572290160773489,5.330002915654063,,5.326640250854714,5.324961277520515,5.326710936290226,5.326663880802787,5.3655585076541135,5.326068538532248,5.3267271195176615,5.349276762619553,5.227714632149156,2.1681294879062736,11.101926886495338,0.6535202900604691,1.038604759805156,8.174118008314437,5.349052659835489,0.8778063586545729,5.825793583445774,287.6431275153079,54.35068461011403,-87.66148642996882,-8.360001702676575,-1.8651380091482723,-5.844099095331255,201.04422697442402,324.2615231283113,10.033329618023501,6.899181343155561,10.133172597759728,792.0,30.0,1.6994760903214887,1.0212714172491697,0.14433756729740643,0.06454972243679029,0.2845177968644246,0.14960144961676175,0.05892556509887896,0.02282177322938192,0.0,0.0,0.0,0.0,0.0,0.0,0.17172168098165178,0.11616612542609622,0.24645747148764907,0.11793724482824008,14.58757566981053,12.932067514531196,9.548660601927534,7.560706736348482,8.639786448845424,6.2522245832248435,6.65408593812376,4.433918253019513,5.282965533752294,3.2994143959316053,4.439639467405476,2.5664504120763487,2.5450023148198695,1.3060570807940837,1.6836641513493191,0.7853651736231382,3.2407395807835817,1.7958786605808292,5.114049180993116,2.6223365760057216,8.132429351429911,3.8431065292812945,70.45973938494026,39.48201338806134,28.640663377242507,25.111656376408366,24.43474634234708,24.43474634234708,100.0,115.0,49.097410999999965,30.532588999999994,0.2765957446808511,61.03,7.256944444444445,4.527777777777779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,6.0,47.0,0.0,1.0,48.0,6.0,0.0,3.0,45.0,6.0,21.0,42.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,3.0,1.0,0.0,20.0,3.0,0.0,1.0,2.0,0.0,2.0,5.0,0.0,0.0,0.0,0.0,1.0,3.2188758248682006,4.523146350509501,3.676300671907076,4.081765780015241,4.514971918069943,4.982321549781648,4.990432586778736,5.190523336739508,5.250963670164566,5.003946305945459 +5329102,CCN(CC)CCNC(=O)c1c(C)[nH]c(/C=C2\C(=O)Nc3ccc(F)cc32)c1C,0,21.857142857142858,6.199814285714287,3.1607142857142856,7.321428571428571,166.10123609499507,86.76614128838877,1.4249465255521965,6.253732142857144,5.009424603174604,7.692854571428571,209.63777126103508,23.74137931034483,6.342017241379311,3.793103448275862,6.948275862068965,149.18542844445693,89.66562191095176,1.7595939713793107,6.477801724137931,3.1053639846743297,7.739962068965514,255.68582254730288,19.92156862745098,6.2015882352941185,3.5098039215686274,5.598039215686274,157.85727488722532,74.50468764382742,1.4872642295841578,6.29931568627451,3.0239651416122,7.670640392156861,211.46771373474016,17.738095238095237,6.212578571428571,3.0317460317460316,4.380952380952381,160.82054513269946,64.64497830572698,1.3865988419534203,6.296096031746031,3.050264550264551,7.711635809523807,194.31614232546687,15.713286713286713,6.0917335664335654,2.7482517482517483,3.7062937062937062,159.21049781895755,55.71979801465733,1.288218416475384,6.176571328671328,3.0355477855477857,7.61869046153846,173.6064101928382,13.55483870967742,6.0630316129032265,2.3548387096774195,3.3806451612903228,166.9719065497668,47.57872984705031,1.1088520655774647,6.112529032258065,3.058781362007169,7.644008025806452,147.359264597585,13.992857142857142,5.981521428571428,2.5214285714285714,3.4642857142857144,166.68861036287186,50.106680503451436,1.1443641148443213,6.039033571428573,3.0117063492063494,7.561589257142857,153.5365607162795,15.491803278688524,6.106523770491802,2.680327868852459,3.4754098360655736,161.65766628684366,55.29212688899672,1.2446936115440659,6.179010655737707,3.114754098360655,7.652286098360655,169.0161432601509,15.383333333333333,6.247699166666666,2.5083333333333333,3.25,165.0321141821423,54.56000319942666,1.2024776892210585,6.301395000000001,3.6085648148148137,7.789332233333334,164.36456942115518,7.525510204081633,0.14645701530612237,0.016547212252504613,0.6348852040816327,4.13265306122449,1.858767062795014,36.13214075903691,0.22653108930955582,0.13517653061224486,1.9987864937641722,0.08313824489795915,49.61414247695269,0.21586910626319528,-0.0056738872273046324,-0.009486247748712276,0.3180088845883184,1.7010907811400426,-0.22300703245997228,1.0380702960741899,-0.004239569008874491,-0.003503747361013336,-0.09153587800062549,-0.004339929627023218,0.5859985959535805,1.2209883953581435,0.012497816626650685,0.0018725891105963073,0.06802095838335337,0.7861144457783112,-0.03993094247762151,5.854822054173346,0.021806795124363645,0.013638105242096844,0.18566436991463253,0.005876270508203281,6.834886962243463,-0.07879818594104288,-0.015346896258503344,-0.0011900544813414383,-0.1058319160997732,-0.1400226757369614,0.151281412892295,-0.3367492726800067,0.01436022627253843,-0.012885317460317439,-0.07168741339128246,-0.008992603174603164,2.945025428967854,-0.7173183958898245,-0.0001266956258027586,0.00013579286670487725,-0.03835673255316111,0.014449835878407345,-0.36869012410719754,-3.5440062647342394,-0.054536205734482625,-0.0005987833594976356,-0.004485655713334296,-0.00029642871414300005,-9.975893615919972,0.33624094799209997,0.004288768104015795,0.0009471610969264555,0.11281064845292955,0.5671165240289666,0.055545008903271235,1.732785641587267,0.013000206712653532,0.004141280447662933,-0.08932028792699877,0.0011735873601053347,2.7331320605454024,1.3377551020408165,0.009531683673469356,-0.0015397697017338423,0.05235969387755102,0.594387755102041,0.14214950613265281,6.437349480654612,0.03583692806340581,0.011293367346938749,0.19523632369614516,0.004167563265306119,9.574713049990391,-0.058882569421211145,0.0014817142020742819,6.26092917607398e-05,-0.06975054366008697,-0.303027768484443,-0.09578141196334279,-0.2330847201383756,-0.014875069896480277,0.0014832469053195124,-0.07315466316307946,-0.0008567320173971206,-2.2889533445026746,-0.47610544217687073,-0.002779574829931914,0.0025880757673913857,-0.17074829931972788,-0.8231292517006806,0.036614841436891976,-2.194786948308263,0.005474015108697913,-0.003974149659863918,0.054669194066515485,0.000472964625850351,-1.0203996031329192,,,0.4673234811165846,1.1379310344827587,0.5,0.017241379310344827,0.6379310344827587,-0.13793103448275862,0.9777612304327132,0.019463422559463962,0.028359974283601895,0.9236307610903013,0.2303929274071461,0.24718549701177256,1.9013919915230146,0.4775784244189186,2.0092590345889683,1.5433010162124516,0.2819602044345801,0.12287592312597038,0.06112189081596597,0.46595801837651646,7.110925077214299,1224.0,347.18960000000004,177.0,410.0,9301.669221319724,4858.903912149771,79.79700543092301,350.20900000000006,280.5277777777778,430.799856,11739.715190617964,1377.0,367.83700000000005,220.0,403.0,8652.754849778503,5200.6060708352015,102.05645034000003,375.71250000000003,180.11111111111111,448.91779999999983,14829.777707743568,2032.0,632.5620000000001,358.0,571.0,16101.442038496984,7599.478139670397,151.7009514175841,642.5302,308.4444444444444,782.4053199999998,21569.706800943495,2235.0,782.7848999999999,382.0,552.0,20263.388686720133,8145.267266521599,174.71145408613097,793.3081,384.3333333333334,971.6661119999998,24483.833933008827,2247.0,871.1178999999998,393.0,530.0,22767.10118811093,7967.931116095998,184.21523355597992,883.2497,434.08333333333337,1089.4727359999997,24825.716657575864,2101.0,939.7699000000001,365.0,524.0,25880.645515213855,7374.7031262927985,171.87207016450705,947.4420000000001,474.11111111111114,1184.821244,22840.686012625672,1959.0,837.4129999999999,353.0,485.0,23336.40545080206,7014.935270483201,160.210976078205,845.4647000000002,421.6388888888889,1058.622496,21495.118500279128,1890.0,744.9958999999999,327.0,424.0,19722.235286994928,6745.639480457599,151.85262060837604,753.8393000000002,379.99999999999994,933.5789039999999,20619.96947773841,1846.0,749.7239,301.0,390.0,19803.853701857075,6547.200383931199,144.297322706527,756.1674000000002,433.02777777777766,934.719868,19723.748330538623,421.42857142857144,8.201592857142852,0.9266438861402584,35.55357142857143,231.42857142857144,104.09095551652078,2023.399882506067,12.685741001335126,7.569885714285712,111.93204365079364,4.655741714285712,2778.391978709351,12.520408163265326,-0.32908545918366866,-0.550202369425312,18.444515306122465,98.66326530612247,-12.934407882678393,60.20807717230301,-0.24589500251472046,-0.2032173469387735,-5.309080924036278,-0.25171591836734664,33.987918565307666,124.54081632653063,1.2747772959183699,0.19100408928082335,6.938137755102044,80.18367346938774,-4.072956132717394,597.1918495256813,2.224293102685092,1.391086734693878,18.93776573129252,0.5993795918367346,697.1584701488332,-9.928571428571402,-1.9337089285714213,-0.14994686464902124,-13.334821428571423,-17.642857142857135,19.061458024429168,-42.43040835768085,1.8093885103398422,-1.6235499999999974,-9.032614087301589,-1.1330679999999986,371.0732040499496,-102.5765306122449,-0.018117474489794477,0.019418379938797446,-5.485012755102039,2.0663265306122502,-52.722687747329246,-506.7928958569962,-7.798677420031016,-0.08562602040816189,-0.6414487670068043,-0.042389306122449004,-1426.5527870765561,52.1173469387755,0.6647590561224482,0.1468099700236006,17.48565051020408,87.90306122448982,8.609476380007042,268.5817744460264,2.0150320404612976,0.6418984693877547,-13.844644628684808,0.18190604081632689,423.6354693845374,187.2857142857143,1.3344357142857097,-0.21556775824273794,7.330357142857142,83.21428571428574,19.900930858571392,901.2289272916457,5.017169928876814,1.581071428571425,27.333085317460323,0.5834588571428566,1340.4598269986548,-7.1836734693877595,0.18076913265306238,0.007638333594810256,-8.50956632653061,-36.96938775510205,-11.68533225952782,-28.436335856881826,-1.8147585273705937,0.18095612244898052,-8.924868905895694,-0.10452130612244871,-279.2523080293263,-57.13265306122449,-0.33354897959182966,0.31056909208696626,-20.489795918367346,-98.77551020408167,4.393780972427037,-263.3744337969916,0.6568818130437496,-0.47689795918367006,6.560303287981858,0.05675575510204212,-122.44795237595031,0.7285871570392383,0.5958449258945381,0.44676691316608524,0.3186795135125023,0.28306690638107057,0.16246593800009432,0.17977087806556674,0.09092439546029882,0.1146133011746153,0.04756855559675158,0.07178731444772245,0.023236917697394447,0.04539940544478214,0.011994694028503883,0.028967931254457006,0.006371131397332609,9.004069243865732,5.683594493543529,4.107720136918231,2.1828067385008723,0.41872571193443736,-0.3712446305202299,3.2758373367932796,0.9772374619086112,7.00405960494071,0.9872569003884841,17.424772798758358,10.94452452149536,19.000142272733985,11.695191496506354,2.003829396348952,0.5458574467573989,3.9886724072672406,2.232599107270816,8.00192066417083,1.38321722754822,4.009952171273785,2.4284617201193472,20.906211121880823,13.304119496762812,0.26211541670676564,0.5709645254901332,0.7509683488979456,0.8395982884974412,0.8395982884974412,0.8395982884974412,1.539586442055684,973.43215139086,0.0,2.0,8.0,0.0,8.0,0.0,4.0,0.0,0.0,4.223026038722039,2.3562203018227525,1.2682062501545337,0.7324919644402481,0.7324919644402481,0.7324919644402481,224.95164830265787,1612.719652966476,59.8387729200612,28.798565231544206,58.23856536303953,,15.0,707.0,5.817220841045895,13.979489415818463,11.814359458703011,34.626078188907854,30.89164870428318,12.13273413692322,12.142387175295491,13.847474399381248,34.364939859191594,0.0,13.552380952380954,33.0,14.5,0.5,18.5,0.0,0.03267651888341538,-4.0,0.14323416113433357,0.04993997599039668,-0.09329418514393689,0.05123152709359591,0.16191464597478145,0.0,0.5829931972789115,0.8464696223316909,0.43975903614457795,0.5330532212885148,0.795238095238095,28.355075682548684,0.564439254224455,0.822439254224455,26.785292071618738,6.681394894807236,7.1683794133414045,55.14036775416742,13.84977430814864,0.5520853540252185,0.21784961349262116,0.0,0.39845397048489106,0.36363636363636365,0.3350311052217054,-0.7924774061404926,-0.04794977653193753,-0.014151382252508794,-0.044026522563360704,0.6649688947782946,1.5729071620060202,0.039816072778313595,0.02808762789296464,0.041392293737000534,-6.899891224034161,0.8258036236119227,0.688800178098289,1.6697143831018013,0.6801295484854257,0.4138463175819498,1.2726154334413429,0.8269399162001754,1.1357305929254098,0.6793866518538456,0.5437305499163736,0.6807124565320885,1.0323676844514977,0.7536224659355267,0.6740136203302586,0.9658647335326116,1.175387281984617,0.7723765432098765,1.0625723829519715,0.7532652939712411,0.930460743498162,0.6654819820479883,0.48876017137040273,0.6561738743060982,0.8667445962533453,0.9663841807909604,1.049882441535021,1.226796089688912,1.3198281154082259,1.0392661179698215,0.9792784277059884,0.9644310943428233,0.9418316806495995,1.0351852620701747,0.9051772740589741,1.0477426085055832,0.9237753136692872,1.0358539765319426,0.8401791959602596,1.0693947224473745,1.0926090484101532,0.9231956315289649,1.1571267775856966,1.036723124031755,1.257007699341665,0.8508130684394903,0.8672462898604575,0.8549354121868702,1.2021430472216115,0.9657627118644068,0.9823813588194471,1.0776171756017676,0.7335590803778292,0.8655217045001992,0.8237268469926778,0.9557595323254178,0.8719213396985539,0.984631347885132,1.1422581288449898,1.0321838387411457,0.8974397592006772,0.8156779661016949,0.8817666515999071,1.1853935867454661,0.9281767955801105,0.8479166666666667,0.8316403645794829,0.8136077978740024,0.7948254508755935,0.8710142821556092,0.830502315481598,0.8898547605979127,0.782309673104616,0.97827868852459,0.9070021926825406,1.1488959111378771,1.223621048818042,1.092820279295689,0.9496862379941113,0.9714462574680842,1.052303545681942,0.9112173863328537,1.061893046508325,0.9685987433395128,1.0288455347542294,1.0837641242937852,1.1903231486102148,0.9516065889007688,1.347145488029466,1.3189814814814813,0.9558991549289251,1.0754827890196494,0.9309930951062385,1.1852909020454483,1.288366459122702,1.2260689274245455,0.9670580472546936,6.5,0.08601367207427814,3.7777777777777795,3.368055555555556,1.5033333333333334,1.0702777777777779,0.7536507936507936,0.6068239795918366,0.46338813303099013,0.1940740740740741,5517.594554374989,6251.827194688929,2769.9773679402397,2497.397806777379,17.49582947621216,0.49293280251160915,8.87156122023768,0.9721252034310397,1.0,0.36363636363636365,1.5843288833355649,3.451134620234851,4.53914867190307,5.074862957617356,5.074862957617356,5.074862957617356,0.2096774193548387,0.005375854504642384,0.08585858585858591,0.07321859903381643,0.0357936507936508,0.028165204678362574,0.019832915622389306,0.016856221655328796,0.01362906273620559,0.007762962962962964,0.49617047720078344,23.658688865764827,10.543388429752065,5.437517954610744,169.72966657405433,1.0,4.2876220577908075,175.87269012450722,,142.4319903718229,140.15235025160237,138.4955287345523,142.37521188391963,182.6075445680958,141.46342866313086,142.60513142684044,168.2799763989484,0.02868497954412629,-0.03874097267000255,-0.5732837413308952,0.5008919447860203,0.4116219667943807,-0.1199757822933651,0.028729830955686205,-0.01871517513024934,-0.025919790551984713,-0.045795725699668145,-0.05220136210897752,0.011811120110073351,0.16224659355267534,0.08533436654111738,0.11316644048684811,0.10713898819196191,0.1902202856451222,-0.021482488729694646,0.162039168761652,0.09626402800087433,0.10089107317909998,0.09288854537183912,0.0706807139772508,0.13776086053323364,-0.010470809792843662,-0.1047877169040041,-0.07191872946219746,-0.16669457000948706,-0.03388203017832646,0.08138804260110692,-0.009319936920587338,0.06339185635096255,-0.09532214950300132,-0.035865468180285055,-0.10816445771305801,0.05935858773203446,-0.09531824108095294,-0.0008650703794416485,0.008206389368355592,-0.06041522515656114,0.0034965034965035056,-0.19835197830157428,-0.0980845914547108,-0.24074490570236315,-0.004429639944046584,-0.0022441895256590312,-0.0035654916038560334,-0.2010695563377737,0.04468015308911972,0.029283459689871963,0.05723991947846633,0.17768668686508643,0.13722819593787342,0.02988271635271427,0.04795690499334404,0.05738817904543198,0.030636090665340683,-0.04468725809668057,0.014116094963825048,0.05508776175694313,0.17776271186440679,0.06508178289408921,-0.09305311844904753,0.0824711200401808,0.1438271604938272,0.07647515871026017,0.178161308613982,0.15819871865108315,0.08354532621741771,0.09767742793202014,0.05012811216331586,0.19298354404569507,-0.007824395665462633,0.01011705857160358,0.0037836761144623113,-0.10986323702563171,-0.07332523780611214,-0.051529540134693914,-0.006450897047390679,-0.06566458467938334,0.010972665880693596,-0.03659953846561795,-0.010304908630782886,-0.04613509838582748,-0.06326553672316383,-0.01897877560949939,0.15640554601574355,-0.268943579440817,-0.19917695473251038,0.019698456127060116,-0.06074334103105505,0.024164520311018525,-0.029399701574408677,0.027351192454558207,0.005688893558323856,-0.02056670844622431,5.086754246699816,16.71414059231935,14.81929943210033,15.398111714652153,32.299150951210045,38.724012457904195,39.799405315047046,39.799405315047046,39.799405315047046,58.268512003080076,44.7557294701611,8.176845928602823,3.563401770653141,1.7725348336630131,13.512782532918978,10702.71824669788,10149.864900459772,1227.626786841336,130.0,44.0,59.0,77.0,88.0,95.0,111.0,127.0,126.0,398.21180432400075,31.0,5.017279836814924,5.877735781779639,6.769641976852503,7.6511201757027,8.550821372396221,9.44311737225863,10.347564213938401,11.246652571755947,12.154352944454738,0.630952380952381,0.9841428571428571,1.1381323591353187,0.5924366996919489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6555219311377245,0.970028011204482,1.004578087607949,0.6146907584833243,3.0,0.0,1.0,0.0,0.0,0.0,7.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,4.0,0.0,1.0,0.0,0.0,4.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,20.517465459810346,5.817220841045895,0.0,0.0,11.814359458703011,9.589074368143644,4.39041504767482,0.0,0.0,13.847474399381248,56.775560015122096,35.72820656790263,11.136556021766264,228.4242719015898,-540.3112477461236,-32.692166850906986,-9.648415138323635,-30.017291541451314,453.3759202042477,1072.4084052203523,27.146606069154213,19.15015009322057,28.221273821588216,0.4666666666666667,0.8108393650621907,0.15143662393546004,45.204545811043666,0.10820401407954704,63.750249051326875,0.18916063493780932,8.0,0.22580645161290322,0.27281419933848666,0.5942696230131703,0.7816206746142536,0.8738682284325203,0.8738682284325203,0.8738682284325203,3.3349400000000013,,1.404761904761905,1.7043434836395825,1.6009699071037353,1.436320845043609,-6.235520469269131,1.52147518498244,1.3715415728862168,-2.621947134390474,113.28860000000003,13.979489415818463,0.0,15.200676855804016,0.0,27.694948798762496,31.49581422765663,52.09453251121863,0.0,0.0,4.143134726391533,0.0,5.476463551931511,3.044522437723423,6.9930151229329605,5.53338948872752,8.595449689382004,7.703007682479236,10.24718363424666,35.333333333333336,4.197185704241461,0.0,3.18685901675485,0.0,0.0,0.0,3.427878550289647,0.0,55.111999999999995,0.0,25.049453121420804,0.0,0.0,0.0,1.6762110260770975,0.0,-0.06000651731764295,63.735412111577844,10.633577208012662,10.077801322358383,0.0,47.877273334151006,4.794537184071822,19.664695240427143,46.72022204824098,18.19910120538483,0.0,11.64912463690315,0.0,33.17645518274914,36.70922814371257,36.668581860876145,351.74538024901443,,284.7671006122829,280.1871595732986,276.8806457513733,284.65136715783626,366.57408733054353,282.82192800315954,285.11567377968873,337.10242461880523,36.668581860876145,351.7453802490145,,283.459218838884,278.60035701956525,275.39008756200093,283.31410292279566,371.45060960546084,281.40538214127935,283.8387212807947,339.18189993228737,4.810198631478661,264.617326789099,,215.50007488524616,212.20597280467425,209.63216250058815,215.45298962879963,273.0589907599154,214.09544505967338,215.73466681510996,253.21188168598428,1.2644338572715912,12.129151043069463,,9.819555193526996,9.661626192182709,9.547608474185287,9.815564384752975,12.640485770018742,9.752480275971019,9.831574957920301,11.62422153857949,2.4951499173272644,175.87269012450722,,142.4319903718229,140.15235025160237,138.4955287345523,142.37521188391963,182.6075445680958,141.46342866313086,142.60513142684044,168.2799763989484,54.32156862745099,0.0,7.855818836894463,0.0,13.650463200837027,0.0,0.0,56.256372906045144,3.2396882085911107,5.70478149684159,0.0,0.0,0.0,2.2383340220362573,0.0,0.0,0.0,34.42268247506616,552.8304348663769,88.72241746679163,193.26353873315168,254.19232562657191,284.1923256265719,284.1923256265719,284.1923256265719,917.0,137.0582862459537,128.9697572394606,80.73616633381485,77.23,77.23,0.875,8.793787458210602,5.954196310386875,4.385964471394932,5.295562001300383,,5.28558272208655,5.287002087835002,5.288353989616827,5.285718508083023,5.258825676865293,5.286216012645648,5.285424664450964,5.270547873894676,0.15124015418603215,0.18260558625173734,,0.1822614731753983,0.1823104168218966,0.18235703412471815,0.18226615545113872,0.18133881644363078,0.1822833107808844,0.18225602291210222,0.18174303013429918,2.5431202864981644,2.7315798485250458,,2.7296936098555102,2.729962109145418,2.7302177793619644,2.7297192994075385,2.724618483468058,2.729813417387936,2.729663705868157,2.726845055032971,307.28000000000094,877.6361653102389,181.12351230053224,,181.78583793214477,181.62660836462365,181.60728835035053,181.7603446533651,185.18116550127846,181.71929089679278,181.80785427748177,183.6164147575665,30.26331604518065,6.245638355190767,,6.268477170073957,6.26298649533185,6.262320287943122,6.267598091495349,6.385557431078568,6.266182444716993,6.269236354395923,6.331600508881603,7.84194285443691,6.263889923937885,,6.26754001653839,6.266663714257974,6.266557336442104,6.26739976872371,6.286045355875656,6.267173875701204,6.267661120649025,6.277559616180069,13.650463200837027,30.47464616021191,5.70478149684159,4.204299098794467,-0.8364270658224617,4.197185704241461,1.6762110260770975,11.095507045485572,0.0,376.742140695111,155.73971246413998,-368.38431251025185,-22.289525639304475,-6.578291294825926,-20.46579513945844,309.1117894914169,731.168256695151,18.508561232970834,13.056576012413407,19.24126991303029,2452.0,46.0,2.1089661221635203,0.9243451690540687,0.0,0.0,0.5373318972030436,0.16774020884273375,0.0,0.0,0.0,0.0,0.0,0.0,0.15713484026367722,0.0625,0.5713267855243667,0.18710780394193335,0.9653754906785095,0.24577259007534805,21.12902755413791,17.279502850941604,13.849774308148643,9.87906491888757,12.454943880767106,7.14850127200415,10.606481805868437,5.36453933215763,8.825224190445377,3.6627787809498713,6.317283671399575,2.0448487573707115,4.312943517254303,1.1394959327078689,3.2154403692447278,0.7071955851039196,5.07326711984085,2.0618346110737247,8.395121400107378,2.774314142757552,11.974669941759833,3.047745842342311,94.89541652339659,47.14571780081469,30.79093357453717,26.745970929392733,26.745970929392733,26.745970929392733,150.0,178.0,61.30441099999998,33.355588999999995,0.26785714285714285,149.07,10.972222222222221,6.527777777777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,56.0,0.0,1.0,58.0,11.0,3.0,8.0,50.0,14.0,31.0,44.0,0.0,0.0,0.0,22.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,3.0,3.0,2.0,29.0,7.0,0.0,4.0,2.0,0.0,3.0,7.0,0.0,0.0,1.0,1.0,2.0,3.7013019741124933,7.594475601461727,4.287028906051602,4.864645666549691,5.431262649944098,5.8694734512223254,6.182730359524169,6.595481630502286,7.003860597125623,7.274912590435251 +5488548,C[C@H]1CN(C[C@H](Cc2ccccc2)C(=O)NCC(=O)O)CC[C@@]1(C)c1cccc(O)c1,0,20.41269841269841,6.015552380952379,3.015873015873016,6.095238095238095,162.72236564850746,80.24414563492068,1.4117925230979043,6.083493650793649,4.5834435626102294,7.576410857142855,205.31418761625096,22.50769230769231,6.231215384615385,3.6923076923076925,5.553846153846154,145.89681628373395,84.14867441538466,1.7780269732615392,6.375723076923078,3.0104700854700854,7.670677723076919,254.74970564375494,18.637931034482758,6.075275862068966,3.4224137931034484,4.0,152.89363810154217,68.25479356896551,1.544052178949897,6.190346551724135,2.903496168582375,7.570320068965514,213.5317925545236,14.946107784431138,5.968562874251497,2.874251497005988,2.682634730538922,155.58532997787236,52.22610522155687,1.367960876741491,6.067704790419162,2.6121091151031273,7.518905149700596,180.75033043465152,11.951690821256038,5.796472946859903,2.4154589371980677,2.1884057971014492,160.83070342921283,40.33321806763286,1.1905382447420336,5.876914009661836,2.326154052603328,7.400309140096618,150.51496597137864,11.870967741935484,5.694797235023041,2.3179723502304146,2.2672811059907834,162.10867170141466,41.11707313824887,1.1254109454614194,5.771800460829493,2.494495647721454,7.317025714285716,142.02677466241786,12.028985507246377,5.895038647342996,2.3333333333333335,2.0966183574879227,164.65988675240672,40.979331188405766,1.0933752137243478,5.955826086956522,2.5813875469672567,7.515667594202899,141.2672930589911,12.118279569892474,5.962537634408603,2.28494623655914,2.3225806451612905,163.6796364860782,40.81301134946237,1.125504120285237,6.021998924731184,2.7409647550776586,7.577310258064517,144.94698876845186,11.909090909090908,5.728136363636363,2.3181818181818183,2.1875,162.59685902028832,41.18587615340909,1.1325000431547847,5.803562499999999,2.444207702020202,7.355882386363638,144.87204048924022,7.31519274376417,0.11450889392794154,0.021022446586726168,0.5961199294532625,3.473922902494331,1.3928214726188461,34.83344755454774,0.2297273849317732,0.10896099773242628,1.7658415217939019,0.07072438599143357,50.8704137461107,0.08285365428222533,-0.007045841424888805,-0.011869284504401018,0.1770180436847103,0.8022675736961449,-0.04361882818284286,0.4617935560749701,0.010034303367749098,-0.005796577708006001,-0.1157923425780568,-0.0050102682869159814,1.9332577696200006,0.16236609586363285,0.010802764528544605,0.0011652026230680804,-0.11185610898254578,-0.21776526702635074,0.09917246491019592,0.7244567131041456,0.005675315062418864,0.009193490499648273,0.27177041793728984,0.008399528622687872,0.7831329474938816,-1.1904897687617961,-0.006012534266312368,0.0005915132343729497,-0.08057958157758556,-0.6002416934837811,-0.13451168480910447,-5.704489960117555,-0.028286941400287362,-0.008091127948185178,-0.08176588998873001,-0.0017531836342432345,-8.185961534909218,-0.7037365670906044,-0.003630226647825058,-0.0016959007619671072,-0.026838432635534083,-0.0004929508035098232,-0.031559467054184775,-3.3787021311139593,-0.017839103199925765,-0.004756028788326978,-0.06224804736709495,-0.0011458134893248249,-4.855527860886636,1.0360617365225662,0.022855395443720918,0.00199423477040942,-0.007794276611480912,0.5164216224124057,-0.15113398443400305,4.798644530888578,-0.00948187333438724,0.022434957208689755,0.3556707629288274,0.013043753281479949,1.3271250938566015,-0.0844589043346808,-0.01044748759407144,-0.0015979099195121526,-0.003757380568974769,-0.3191034868053505,-0.030777095617561114,-0.350621336926398,0.0005238812980045331,-0.008619037760031556,-0.14827001654123803,-0.007258446262885193,0.525496945242621,-0.8374661692634046,-0.011058646445435949,0.0007034551102823207,0.012943050577459182,-0.21790651744568798,0.06163482964749661,-3.9201701684750376,0.003364181702313286,-0.012139005924950574,-0.23746815034257432,-0.005438535846357693,-2.326405573598308,0.8042156256441971,0.004875377356329608,0.00037105407075414696,-0.008277216610549936,0.14485415378272523,0.06068464690940352,3.8146400484464817,0.007327134936738123,0.006637360853432147,0.05919204803133377,0.0011114372408896926,4.139422421318487,,,0.47204301075268823,1.1048387096774193,0.5,0.016129032258064516,0.6048387096774194,-0.10483870967741936,1.0659559136472327,0.02062906020486414,0.028951640850025433,0.8910279801164244,0.21249156217336407,0.2641120731821942,1.9569838937636572,0.47660363535555833,2.011195456735491,1.6521876038363967,0.13574079012017623,0.22326706277891814,0.0,0.35900785289909437,6.733908055619062,1286.0,378.9797999999999,190.0,384.0,10251.50903585597,5055.381175000003,88.94292895516797,383.2600999999999,288.75694444444446,477.31388399999986,12934.79381982381,1463.0,405.029,240.0,361.0,9483.293058442707,5469.663837000003,115.57175326200004,414.4220000000001,195.68055555555554,498.5940519999997,16558.73086684407,2162.0,704.7320000000001,397.0,464.0,17735.66201977889,7917.556053999999,179.11005275818806,718.0801999999996,336.8055555555555,878.1571279999996,24769.68793632474,2496.0,996.75,480.0,448.0,25982.750106304684,8721.759571999997,228.449466415829,1013.3067000000001,436.22222222222223,1255.6571599999995,30185.305182586802,2474.0,1199.8699,500.0,453.0,33291.95560984706,8348.976140000002,246.44141666160098,1216.5212000000001,481.51388888888897,1531.8639919999998,31156.59795607538,2576.0,1235.771,503.0,492.0,35177.58175920698,8922.404871000004,244.214175165128,1252.4806999999998,541.3055555555555,1587.7945800000005,30819.81010174468,2490.0,1220.2730000000001,483.0,434.0,34084.59655774819,8482.721555999993,226.32866924094,1232.856,534.3472222222222,1555.7431920000001,29242.32966321116,2254.0,1109.0320000000002,425.0,432.0,30444.41238641055,7591.220111000001,209.34376637305405,1120.0918000000001,509.81944444444446,1409.3797080000002,26960.139910932045,2096.0,1008.1519999999998,408.0,385.0,28617.047187570744,7248.714203,199.3200075952421,1021.4269999999998,430.18055555555554,1294.6353000000004,25497.47912610628,460.8571428571427,7.2140603174603175,1.3244141349637486,37.55555555555554,218.85714285714286,87.7477527749873,2194.5071959365077,14.47282525070171,6.8645428571428555,111.24801587301582,4.455636317460315,3204.836066004974,5.385487528344646,-0.4579796926177723,-0.7715034927860662,11.506172839506169,52.147392290249414,-2.8352238318847856,30.016581144873054,0.6522297189036914,-0.37677755102039007,-7.526502267573692,-0.3256674386495388,125.66175502530004,18.83446712018141,1.2531206853111743,0.13516350427589732,-12.97530864197531,-25.260770975056687,11.504005929582727,84.0369787200809,0.6583365472405882,1.0664448979591996,31.525368480725625,0.9743453202317931,90.84342190929027,-198.81179138321997,-1.0040932224741654,0.09878271014028259,-13.45679012345679,-100.24036281179144,-22.46345136312045,-952.6498233396317,-4.7239192138479895,-1.3512183673469247,-13.654903628117912,-0.2927816669186202,-1367.0555763298394,-145.67346938775512,-0.751456916099787,-0.3510514577271912,-5.555555555555555,-0.10204081632653339,-6.532809680216248,-699.3913411405896,-3.6926943623846333,-0.9844979591836845,-12.885345804988654,-0.23718339229023877,-1005.0942672035336,224.82539682539687,4.959620811287439,0.43274894517884416,-1.691358024691358,112.06349206349205,-32.796074622178665,1041.3058632028215,-2.057566513562031,4.868385714285677,77.18055555555554,2.8304944620811487,287.9861453668825,-17.482993197278926,-2.162629931972788,-0.3307673533390156,-0.7777777777777772,-66.05442176870756,-6.3708587928351506,-72.57861674376439,0.10844342868693835,-1.784140816326532,-30.691893424036273,-1.5024983764172348,108.77786766522254,-155.76870748299325,-2.0569082388510864,0.13084265051251165,2.407407407407408,-40.530612244897966,11.464078314434369,-729.151651336357,0.6257377966302712,-2.2578551020408066,-44.169075963718825,-1.011567667422531,-432.7114366892852,141.5419501133787,0.8580664147140111,0.06530551645272986,-1.4567901234567888,25.49433106575964,10.68049785605502,671.3766485265808,1.2895757488659096,1.1681755102040579,10.417800453514744,0.1956129543965859,728.5383461520538,0.7236293758871538,0.5887622908268636,0.44771856654613057,0.328177423143247,0.2978254580688889,0.19296972278005367,0.189016757672168,0.11685714903747761,0.11846615446011946,0.06565472011090741,0.07839402297467901,0.03765163541136261,0.04886980207656571,0.023012631292371268,0.03078497980749598,0.013350195399830605,8.029198944197606,5.690226232050874,3.555269976651569,2.1896694780959014,0.4561520083405327,-0.3714173027836914,4.028833076318645,0.972605926501223,6.023219983227568,0.9934422575819868,14.54368590738619,10.950638051300643,16.014680528156262,11.701559890897688,1.9943115860420915,0.7414629952863004,3.5013327376528274,2.2395480922187034,7.0093775729869305,1.1269274988337579,3.7142331314440913,2.435565607490919,20.902369452552122,14.700632193684582,0.23200449966220507,0.5598449203868832,0.7667980496374175,0.8848594516048938,0.9105031765958458,0.9105031765958458,1.58117172524572,901.4048216278088,0.0,2.0,6.0,0.0,10.0,2.0,2.0,2.0,1.0,4.5412127737201295,2.511938086124959,1.2309345241529313,0.5001551587988411,0.34142500006868115,0.34142500006868115,170.45030116065635,1969.46438537609,86.44853221434349,31.261339450414134,62.333862671424384,,14.0,725.0,5.969305287951849,14.69560176298435,29.53434448410616,18.883484074999977,30.63723741814515,0.0,6.06636706846161,42.46456947923127,30.130539802699666,5.106527394840706,14.633333333333335,34.25,15.5,0.5,18.75,0.0,0.027956989247311787,-3.25,0.11887521550442909,0.04131216931216963,-0.07756304619225945,0.046299810246679174,0.14164015645371542,0.0,0.5582010582010577,0.8247311827956985,0.4393258426966286,0.5168888888888881,0.7784313725490193,33.04463332306422,0.6395008663507884,0.8975008663507884,27.621867383609157,6.587238427374286,8.187474268648021,60.666500706673375,14.774712696022307,0.5723598435462846,0.15945330296127558,0.03416856492027334,0.2665148063781321,0.44,0.3749699763949351,-1.083405817011632,-0.07441273212133308,-0.017196917730343368,-0.04514190904215134,0.625030023605065,1.8059076886396601,0.052412060205610136,0.028665201406978737,0.046305325349734874,-4.771049482747202,0.910677667032286,0.8178759109576306,1.5288544902122456,1.0159308147473831,0.6450291223137176,1.2785749942482756,0.9155687066314157,1.1220079701970918,0.8130256226693819,0.726769900273976,0.8142640542923992,1.0503114525063,0.9069307565683993,0.6432632180716359,0.7585045709777085,1.7647418894103248,1.0354731250562708,1.1042366807497206,0.9143657644688273,1.0581022294919362,0.6653566101294992,0.42357346336195384,0.5651436146001227,1.030427003205572,1.1072702703706043,0.8716218133234269,0.7301602766688071,1.4086914927541372,1.1102585950813777,1.1791296160969107,1.1121909370878298,1.1740507249474652,0.9025835342911995,0.8223893933939186,0.8209202993223816,1.1866215872512802,1.041485095435337,0.8057390017083228,0.7330254198865498,1.0248263442243377,0.8888731221856435,1.0328543246142452,1.0460817612006459,1.0715983300862428,0.8378501779068409,0.7344838997980666,0.7390677442010353,1.0957696266643149,0.7944823310601367,0.49529666273401696,0.521046284930992,0.9433643279797128,0.7049608355091384,1.0719295175206622,0.8032235069740908,1.027258493471669,0.5211521732796687,0.3983038755818726,0.44917618308364976,0.9786767521973186,1.0138638058528087,1.1458460356163223,1.0570688318101564,0.9610239259068694,1.1139995711456718,0.9960349602250852,1.01070128397399,0.9336216310417464,1.1282307601500816,1.0787194746156032,1.1409044895204568,0.9424848118334406,1.1286939450299653,1.2384241707881738,1.0785203981115457,0.8653846153846156,1.0775674499564838,0.9306926805207473,1.1236810785580482,0.9327131881848941,1.2377687551073353,1.274190432027205,1.2324472365816186,0.9987839586001502,0.8427355154145301,0.7445569031479686,0.8414325093597372,0.9520743679397528,0.8796470745312128,0.9150748037712699,0.8463706610674443,0.9485697399707347,0.7491361595005992,0.7263280714184961,0.7301437121698083,0.9150549527156874,8.0,0.23528211406999286,4.000000000000002,2.3125,1.8755555555555559,1.1874999999999998,0.6677551020408163,0.623263888888889,0.45149911816578475,0.3656250000000001,6037.498362799926,7049.641850337368,2870.528201753985,2537.333367930696,14.359658732338552,0.4473902360845472,7.935287621984077,0.8095952429696777,1.0,0.44,1.4360671497797877,3.465341837374958,4.7463453993469855,5.477124764701076,5.635854923431236,5.635854923431236,0.24242424242424243,0.00784273713566643,0.08695652173913045,0.04817708333333333,0.04262626262626263,0.02526595744680852,0.015176252319109459,0.015981125356125357,0.011576900465789354,0.010446428571428572,0.5064735114178964,25.619834710743802,11.9234404536862,7.239150507848569,183.44812121747864,1.0,4.345744898746117,191.71312565577307,,168.0529566692514,165.79807690892284,164.68167621293932,168.07467019765338,208.62049790712118,167.130713880207,168.18534007402434,194.32956931056506,0.011326243502312889,-0.061530953476178284,-0.5646005309341792,0.29695038689121533,0.23093994778067878,-0.03131688377895895,0.013257187803527642,0.043679178129891603,-0.05319864748522734,-0.06557346236848278,-0.0708421602631212,0.038003578647280184,0.022195737221283977,0.09433996048676008,0.05542659453366402,-0.18764027749438897,-0.06268569370667146,0.07120256749325335,0.020797732178811076,0.024704564778397567,0.08437414020587969,0.1539041950158703,0.11876424948680724,0.015394664399672906,-0.16274209176191948,-0.05250713774334377,0.02813722141867343,-0.13517344010204446,-0.1727849783461798,-0.09657496488490337,-0.16376472501564937,-0.12313264876404836,-0.07425710223445665,-0.0463042062266521,-0.02478895517672769,-0.16091792718188924,-0.09620205396371874,-0.03170257368924982,-0.08067095116502376,-0.04502186776434269,-0.00014190032920876762,-0.022658659185405317,-0.09699591537194391,-0.07765335946005655,-0.043648910043998304,-0.0352512083325902,-0.016201109041280477,-0.09544895555833505,0.14163150210987346,0.19959493677498466,0.09486216374399564,-0.013075014315709108,0.14865661585109066,-0.10850922921932994,0.137759678348636,-0.0412744581461338,0.2058989700496586,0.20141714788057807,0.18443077445818845,0.026088348730170626,-0.011545684070549983,-0.09123734616322346,-0.0760097029106542,-0.006303061487007973,-0.09185681310780651,-0.02209694223028643,-0.01006565130762149,0.00228044774966694,-0.07910204512992057,-0.08396564171319967,-0.10263003575265207,0.010330109518379885,-0.11448313101213933,-0.09657456347796846,0.03346209525995375,0.021712158808933017,-0.06272635391223787,0.044251780188029416,-0.11254040135809736,0.014644234527426565,-0.11140689033299907,-0.13447874422011136,-0.0768976042721167,-0.04573199630750346,0.10993772191850311,0.042576407727749066,0.017650375241692138,-0.013885153308230223,0.04169757298836933,0.043569580238665834,0.10951083846848386,0.03189491291564656,0.06091501538680294,0.03352058907936491,0.01571504970045713,0.0813719039514391,20.877722674391258,22.89861242150967,4.385247934947411,13.109213946317023,30.283810944082003,37.2920814282662,39.775214965051056,39.93521496505106,39.93521496505106,62.34705915880023,51.2178157189283,4.207964493725463,6.9212789461464626,0.0,11.129243439871926,8446.259357011957,7166.048916872069,2296.7007412828434,114.0,46.0,57.0,69.0,88.0,87.0,95.0,108.0,110.0,424.2362075040009,33.0,5.0689042022202315,5.8998973535824915,6.771935555839602,7.629975707027789,8.507748732588238,9.378985497953893,10.26140672210502,11.140425970684525,12.026664839638125,0.603174603174603,0.9716825396825399,1.1279945260698885,0.561047875426362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6510348445965214,0.9585434173669467,0.9976878345414399,0.6038788636561896,9.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,2.0,6.0,1.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,20.42975312453822,12.29426823919648,0.0,5.907179729351506,0.0,9.589074368143644,0.0,0.0,0.0,56.31204387861251,53.978933287639975,13.08951281182515,5.917906046161393,255.59359088264523,-738.4900140951378,-50.72250742082822,-11.722063715795839,-30.770417253964073,426.0438920433016,1230.9743712809523,35.72602479351527,19.539275734618293,31.563445417460315,0.5,0.7396329397801809,0.1758050860288744,179.54704365142518,0.1116076388376651,48.68288669807148,0.26036706021981926,7.0,0.24242424242424243,0.24025429094157558,0.5797523090312078,0.794064434005598,0.9163239525001229,0.942879536438246,0.942879536438246,3.051400000000001,,1.2857142857142858,1.514192647743136,1.1430359144285005,1.28206267335915,-5.365540693720245,1.3572521419828643,1.2745051870999227,-2.2346271687189603,119.96130000000004,19.802129157825057,0.0,10.216698334856808,11.835812092322787,32.10410811463005,26.1790256236503,65.72420659954848,0.0,5.749511833283905,4.204692619390966,0.0,5.5254529391317835,0.0,7.039660349862076,0.0,8.645234541297121,0.0,10.302498544237826,37.99999999999999,17.33323533601034,0.0,0.0,0.0,0.0,0.0,2.484907498098492,0.0,61.216000000000015,0.0,23.669599664744325,0.0,0.0,0.0,0.0,0.0,-1.2634174225656345,71.06365514240298,5.316788604006331,0.0,5.749511833283905,53.16847516148554,21.424886460466432,11.835812092322787,31.395199005701247,54.59730361615449,0.0,0.0,0.0,35.34601615186081,41.015195209580845,39.119980210748885,383.42625131154614,,336.022964029747,331.49846396960413,329.2946897869218,336.0666266744448,418.97181539286174,334.1738631060925,336.28845400694547,389.37998609491035,39.119980210748885,383.4262513115462,,334.8502153418885,330.1341569509823,328.299142377581,334.89713686172536,422.6065365079627,332.94286963891443,335.12505941548864,390.89376578984906,4.932929034124319,278.4466965999502,,247.86835944732607,244.32825930077968,242.09212900912308,247.90100696434155,309.4261203664284,246.3979608090259,248.0785449832634,288.54753718546704,1.2619348455080286,12.36858875198536,,10.839450452572484,10.693498837729166,10.62240934796522,10.840858924982092,13.515219851382637,10.779802035680403,10.848014645385337,12.560644712739043,2.466464517062159,191.71312565577307,,168.0529566692514,165.79807690892284,164.68167621293932,168.07467019765338,208.62049790712118,167.130713880207,168.18534007402434,194.32956931056506,60.38823529411764,0.0,4.4560605232042825,0.0,0.0,0.0,18.841960853823785,62.85433357611072,3.390850388756614,2.5586511783253756,0.0,0.0,0.015353652263373818,2.3086980347694634,-0.04589970743041638,0.0,0.0,38.04436841033994,504.16153536088086,90.47223043612662,218.31653575462235,299.0197601588601,345.05886017616774,355.05886017616785,355.05886017616785,838.0,140.68594458163992,177.475947565066,66.71753899391977,89.87,89.87,1.0,7.684841413135742,6.044394119358453,4.087464586631406,5.475733877047077,,5.489147394369271,5.488932798802593,5.487040837053641,5.489144123963042,5.477228419952313,5.488988454892174,5.489166232352287,5.4853996831337755,0.13185369634294858,0.17663657667893795,,0.17706927078610551,0.17706234834847073,0.17700131732431099,0.1770691652891304,0.1766847877403972,0.17706414370619916,0.177069878462977,0.1769483768752831,2.5393269838558785,2.8317284196806956,,2.83417505337992,2.8341359580986087,2.833791212050475,2.834174457584805,2.8320013217274638,2.8341460977394926,2.8341784852336014,2.833492070956188,339.5700000000013,799.674483575875,198.48831219522035,,196.50084712927065,196.52204046964405,196.8382615245501,196.5015452765925,197.90215060220535,196.5225302978617,196.49836657277578,196.95332042325992,25.795951083092742,6.402848780490979,,6.338737004170021,6.339420660311099,6.349621339501616,6.338759525051371,6.383940342006624,6.339436461221345,6.338656986218574,6.353332916879352,7.815606860824423,6.4221323292562005,,6.41206885388156,6.412176701750285,6.413784495528265,6.412072406772511,6.419174831156316,6.412179194232075,6.412056230159128,6.414368859985296,0.0,25.97829769951379,21.40061203214916,2.1553214133449528,-0.9643773929791379,17.33323533601034,1.4934730269263097,6.353437885034587,0.0,418.1494701204166,174.2221719412505,-503.3824743737567,-34.57436228602601,-7.990198005932646,-20.974269765573194,290.4074861883699,839.0782719862981,24.352197615201717,13.318702729941242,21.51482748682816,2864.0,48.0,2.5487684424423467,1.533071426296451,0.11785113019775792,0.10206207261596575,0.7076941320744337,0.4890899845148512,0.1422588984322123,0.1061894745206918,0.0,0.0,0.0,0.0,0.0,0.0,0.24432097104817802,0.10549633919152082,0.3907072713851164,0.1953756767105182,22.43251065250177,18.25163101563277,14.77471269602231,10.82985496372715,13.699971071168887,8.876607247882468,10.773955187313575,6.660857495136224,8.174164657748243,4.530175687652611,6.898674021771753,3.31334391619991,4.251672780661217,2.0020989224363004,2.924573081712118,1.2682685629839074,5.419508780204058,3.425092383686132,7.475969992904198,4.34690878628187,11.659609365252603,5.898634380567669,105.54808430475191,55.25226823697176,32.172211115130345,23.832176740285668,23.075320884269807,23.075320884269807,158.0,182.0,68.49537599999998,36.118624000000004,0.3333333333333333,159.06,10.95138888888889,6.8194444444444455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,12.0,12.0,63.0,0.0,1.0,65.0,12.0,2.0,8.0,57.0,14.0,33.0,51.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,4.0,3.0,1.0,31.0,6.0,0.0,2.0,4.0,0.0,3.0,8.0,0.0,0.0,0.0,0.0,2.0,3.7376696182833684,5.986294957777244,4.23410650459726,4.624972813284271,5.032070574816321,5.492032107171434,5.391921546507262,5.576185817551493,5.75138145345548,5.851843219846055 +6000,COc1cc2c3cc1Oc1cc(ccc1O)C[C@@H]1c4c(cc(OC)c(O)c4Oc4ccc(cc4)C[C@@H]3N(C)CC2)CC[N+]1(C)C,0,21.569767441860463,6.070230232558141,3.453488372093023,6.930232558139535,160.5604970785955,84.97245587209304,1.4848564313814996,6.145550000000001,3.296592377260982,7.615926558139536,217.7852545886377,24.434782608695652,6.34375,4.130434782608695,6.923913043478261,144.91519118495006,92.48605390217392,1.799703957195652,6.489076086956518,2.944897342995169,7.767841695652173,264.2684526941409,20.90909090909091,6.254242424242425,3.9454545454545453,5.618181818181818,154.01068666996377,78.21448560606058,1.5794638889565398,6.36320909090909,2.6496632996633,7.7418388606060615,229.032613997419,19.26991150442478,6.199477876106194,3.5442477876106193,4.95575221238938,151.33101741313976,70.4122193893805,1.5326563749324553,6.3113623893805295,2.8271878072763026,7.696613522123891,214.68032767906502,15.315436241610739,5.934325503355705,3.0033557046979866,3.6006711409395975,155.90014137708056,54.56857181879193,1.3305534982831984,6.031748993288589,2.3749533929903066,7.5013944697986545,178.37614811926017,15.563467492260061,5.9699040247678035,3.0371517027863777,3.5356037151702786,158.64231065770184,56.17970020743037,1.3014875103491301,6.055946439628483,2.4410044719642245,7.54946512693498,177.65807342551435,17.341772151898734,6.211063291139239,3.1202531645569622,3.8607594936708862,154.16404313958762,61.9936858006329,1.4242069423094055,6.30613734177215,2.862605485232068,7.746714772151897,197.43265745804777,15.126373626373626,6.01278296703297,2.8434065934065935,3.25,156.578202362499,53.34462992857144,1.3085520433204336,6.10315576923077,2.5905830280830284,7.584660769230773,176.07263761406497,14.27882037533512,5.999772117962467,2.7560321715817695,3.0938337801608577,159.63299382670684,50.08004007774799,1.2346258309748475,6.07721367292225,2.5323949955317255,7.591362991957101,165.3491089780539,7.288399134667384,0.11663023255813951,0.025691835889151665,0.6886154678204437,3.8063818280151422,1.4064991239442663,34.70386121971337,0.23512708580238037,0.11052932666306103,0.8232875503275041,0.0734946224986479,51.349043625113566,0.5146847884873138,-0.0005152173913041183,-0.009668339416807123,0.3164401439085758,1.4218790415500744,-0.2099073232778368,2.439081991484813,-0.009547276564101951,0.001703029252004791,-0.06336591230930413,-0.0030689688080513733,0.7418259609065266,0.8352795122670731,-0.01093818181818163,-0.004754841308500727,-0.011377976629463955,0.32258223118147417,0.3448230578069812,4.130099034691145,0.046711736699423564,-0.007294506367077899,0.0506959865920791,-0.008364912562072878,10.623286411805287,-0.4770696430024366,0.010515044247787757,0.005372228368574771,-0.033027898361707164,0.18085834485993402,-0.10477594419952897,-2.393376053784159,-0.02525630823344206,0.007915049751839189,0.12609225175797278,0.009374564782685675,-5.842762246131503,0.03636284441798752,0.005616778523489913,-0.0002455642661892935,0.004259512669645465,0.21226964693413097,-0.16740387447522312,0.09734211332082231,-0.02089103819810007,0.005386140794407275,-0.006538454286715636,0.002811098899822508,-2.99716367988882,0.8758675511991251,0.001120123839009292,-0.0007271125188675712,-0.035760690658660804,-0.13671518534828464,0.13484414487971466,4.233193591576149,0.027278527483166934,0.0029127354004423746,-9.538586482007292e-05,-0.0014749732798416692,7.019801372608281,-1.276292864428942,-0.014797468354430203,0.0003496022929637631,-0.08197725763498576,-0.8178625462959794,-0.03977750951424044,-6.035108639605914,-0.014355501836089479,-0.015991322541777497,-0.109972544031099,-0.007373183140390643,-6.115262228078628,-0.6067929501542266,-0.00751483516483512,-0.00013623877244932543,-0.04246801062647467,-0.39486892231619125,-0.13497884984123,-2.899590352475945,-0.02107471934236041,-0.007486415214044974,-0.08222832289473041,-0.0048668729458751095,-4.722154830198116,-0.24382029558764462,-0.00779571045576404,-0.0009618801760745256,-0.006870970033798428,-0.2645151280961958,0.013954191535114065,-1.123564362957951,2.6770595603293725e-05,-0.007108041046750847,-0.036626044691935485,-0.004963406961519671,-0.38949964862155034,,,0.4733333333333333,1.238888888888889,0.5777777777777777,0.044444444444444446,0.6611111111111111,-0.08333333333333333,1.1919876984248874,0.01710407758634231,0.0323929664752312,1.2321801053465866,0.2455824686266716,0.2354070885063882,2.424167803771474,0.4809895571330598,2.0835805653703656,1.7280464330847034,0.09817447054219942,0.2573596617434626,0.0,0.355534132285662,7.0848362029312915,1855.0,522.0398000000001,297.0,596.0,13808.202748759211,7307.6312050000015,127.69765309880897,528.5173000000001,283.50694444444446,654.9696840000001,18729.531894622844,2248.0,583.625,380.0,637.0,13332.197589015406,8508.716959000001,165.57276406199998,596.9949999999997,270.93055555555554,714.6414359999999,24312.69764786096,3450.0,1031.95,651.0,927.0,25411.763300544022,12905.390124999994,260.61154167782905,1049.9295,437.19444444444446,1277.4034120000001,37790.381309574135,4355.0,1401.0819999999999,801.0,1120.0,34200.80993536959,15913.161581999993,346.3803407347349,1426.3678999999997,638.9444444444443,1739.4346559999994,48517.75405546869,4564.0,1768.429,895.0,1073.0,46458.24213037,16261.434401999995,396.5049424883931,1797.4611999999995,707.7361111111113,2235.415551999999,53156.09213953953,5027.0,1928.2790000000005,981.0,1142.0,51241.46634243769,18146.04316700001,420.380465842769,1956.0707,788.4444444444446,2438.477235999999,57383.55771644114,5480.0,1962.6959999999995,986.0,1220.0,48715.83763210969,19590.004713,450.0493937697721,1992.7393999999993,904.5833333333336,2447.9618679999994,62388.7197567431,5506.0,2188.653000000001,1035.0,1183.0,56994.46565994964,19417.445294000005,476.31294376863787,2221.5487000000003,942.9722222222223,2760.816520000001,64090.44009151965,5326.0,2237.915,1028.0,1154.0,59543.106697361654,18679.854949,460.51543495361807,2266.8006999999993,944.5833333333336,2831.5783959999985,61675.2176488141,626.802325581395,10.030199999999997,2.209497886467043,59.22093023255816,327.34883720930225,120.9589246592069,2984.5320648953493,20.220929379004712,9.505522093023249,70.80272932816536,6.320537534883719,4416.017751759767,47.35100054083287,-0.04739999999997889,-0.8894872263462553,29.11249323958897,130.81287182260684,-19.311473741560985,224.39554321660282,-0.8783494438973796,0.15667869118444078,-5.829663932455981,-0.28234513034072634,68.24798840340046,137.82111952406706,-1.8047999999999689,-0.7845488159026199,-1.8773661438615525,53.226068144943234,56.89580453815189,681.4663407240389,7.707436555404889,-1.2035935505678534,8.364837787693052,-1.3802105727420249,1752.8422579478722,-107.81773931855066,2.376400000000033,1.2141236112978984,-7.464305029745819,40.873985938345086,-23.67936338909355,-540.9029881552199,-5.707925660757906,1.7888012439156564,28.496848897301852,2.1186516408869625,-1320.4642676257197,10.836127636560281,1.6737999999999942,-0.07317815132440947,1.2693347755543485,63.25635478637103,-49.88635459361649,29.007949769605048,-6.225529383033821,1.605069956733368,-1.9484593774412593,0.8377074721471074,-893.1547766068684,282.9052190373174,0.3618000000000013,-0.2348573435942255,-11.55070308274744,-44.15900486749594,43.554658796147834,1367.3215300790962,8.81096437706292,0.9408135343428871,-0.03080963433688355,-0.4764163693888592,2267.395843352475,-403.30854515954564,-4.675999999999944,0.11047432457654913,-25.9048134126555,-258.4445646295295,-12.569693006499978,-1907.094330115469,-4.5363385802042755,-5.053257923201689,-34.751323913827285,-2.329925872363443,-1932.4228640728466,-220.8726338561385,-2.7353999999999834,-0.04959091317155446,-15.45835586803678,-143.7322877230936,-49.13230134220772,-1055.450888301244,-7.67119784061919,-2.7250551379123706,-29.931109533681866,-1.77154175229854,-1718.8643581921142,-90.94497025419145,-2.907799999999987,-0.3587813056757981,-2.5628718226068137,-98.66414277988105,5.2049134425975465,-419.0895073833158,0.009985432160028559,-2.6512993104380658,-13.661514670091936,-1.8513507966468372,-145.28336893583827,0.6990464488878797,0.5921217303500026,0.42440255041152336,0.3088595317860617,0.26865477808506605,0.17373000638067723,0.16951048147072964,0.09445745186043043,0.10288158703305157,0.049888055157259144,0.0658800202931449,0.027928520158788068,0.041938749403642984,0.015260653651761292,0.026516970902777867,0.008188206489336481,8.016271096667355,5.684685657857791,3.5295912939672776,2.182962234223466,0.469050693140572,-0.524912650085126,4.023023743217979,0.9871996256403999,6.0129719526725784,0.9921661341423462,14.547985819396608,10.945492152706604,16.00936907340214,11.696742562414572,2.0160931259560413,0.7746568356994911,3.473208629946506,2.2325664040635456,6.003879808182321,1.1286280278882188,3.6865333716319943,2.428582137625042,20.92013489360738,14.705529579146852,0.21300161812624388,0.4960260769532461,0.7352260453191869,0.8345240771107899,0.8622903908833317,0.8727027585480349,1.2080115086953553,1766.4304335749716,0.0,0.0,2.0,0.0,18.0,6.0,6.0,0.0,0.0,4.999060252580692,3.1026719274508583,1.4999269588336155,0.834586482683922,0.6485399710560147,0.5787725291955494,465.6197780632983,3834.485362028076,91.62305171120411,44.58703909334973,78.55826775103668,,15.0,1194.0,0.0,10.213054789681411,23.58270532486373,45.40092348032406,49.04233215569416,16.690354475090988,20.285962151016676,30.33183534230805,50.30839395272848,18.947451815200196,21.299999999999997,55.75,26.0,2.0,29.75,0.0,0.02666666666666673,-3.75,0.12575155984118036,0.05936575052854154,-0.06638580931263882,0.02212765957446816,0.13676422764227647,0.0,0.5720930232558126,0.82,0.4463414634146322,0.512727272727271,0.7978723404255318,53.639446429119936,0.769683491385404,1.457683491385404,55.4481047405964,11.051211088200223,10.59331898278747,109.08755116971633,21.64453007098769,0.5772357723577235,0.1486697965571205,0.0187793427230047,0.3943661971830987,0.35135135135135137,0.21004332057377736,-0.8371827821040551,-0.050769582317008725,-0.009734683512837851,-0.03219933777323289,0.7899566794262226,3.9385363572619303,0.0633437654603541,0.045796934386766644,0.06564227262103219,-9.009434547619646,0.8254457318228934,0.8826417588448102,1.3673867105649928,0.7332528022264146,0.5404917559336274,1.3131069678930685,0.8293247950604415,1.1216128995770418,0.8482620769417376,0.9413487448704891,0.9377343767638894,0.9901293777700155,0.8440629277657388,1.1192098347838013,1.2672282681352072,1.4048575287530711,0.9851412677499636,0.8898164402672435,0.8397679788413078,0.8053574257473455,1.07194405305381,0.6477546140943804,1.1284162898785357,0.7619667335403902,1.0065663700397214,0.8694629387391668,0.7743831304552223,1.2193727639359242,0.94788059510068,1.1587202508346537,1.011435289657956,1.1445220165363335,0.8763980025185197,0.68722538630174,0.8487896105847664,1.106589682021968,0.9472148055645999,0.7996797657651074,0.8387013394336178,0.9994142506427426,0.8896467593943523,1.1237296133720278,0.952211156970154,1.107668234181611,0.8099656071290692,0.7768596965323077,0.8004818433541397,1.067613298506408,0.8652942066696288,0.9727924300192365,0.9918239273774376,1.1553525478727247,1.0909012727898177,0.9002412940327514,0.8636866670970311,0.8784425789195776,0.9557754585106176,0.8886192278697708,1.0034542101831976,0.8545060699373938,1.1653356995840087,1.3054448981796494,1.203793567033367,1.126440609722453,1.289681174708005,1.059362250667809,1.1612314958099133,1.0757954186072403,1.2943508933284775,1.340386612258187,1.3387960767147082,1.0923401707748044,1.063077239058132,1.0758062163255977,1.051516105233434,1.0074725490492225,1.0907223814832514,1.0912450574337444,1.0631821924535292,1.0970530115443133,1.0734817833080117,1.1928116074814779,1.0992350121331842,1.0834867708444627,1.0388808332005,1.1530567097553055,1.1279719321630794,0.9581515711255891,1.1026926215176598,0.9730813471128776,1.0359984039976955,0.9806131474214747,1.1407776333798594,1.0733077868464713,1.1712713117651679,0.9851323031006826,11.0,0.5328027752270177,6.222222222222225,3.8125,4.835555555555556,2.645833333333333,2.024489795918367,1.6059027777777777,1.0098261526832955,0.7131250000000002,10859.570905799446,12270.092948895699,4429.083749146328,4012.4641840162694,16.86231671271712,0.46133547018303217,9.083131903680567,0.8564430079325787,0.0,0.35135135135135137,1.427204502121406,3.3235928272512396,4.926337795868482,5.591678272018176,5.777724783646083,5.8474922255065485,0.21568627450980393,0.007721779351116197,0.08080808080808083,0.042361111111111106,0.0537283950617284,0.02568770226537216,0.018573300879985016,0.015150026205450732,0.009998278739438567,0.0082921511627907,0.4780071000948776,33.49480968858131,13.721706864564007,6.654320987654321,264.1017270136789,0.0,4.763372720427801,284.24723496073176,,222.84251703193797,219.6041726560235,225.5547488287364,222.89567548785863,320.7091714604698,221.91876832532873,222.99021307361093,273.2604801361564,0.07061698721180178,-0.004417528628756574,-0.376319522611055,0.45953098455680846,0.3735513424021154,-0.1492409911278086,0.07028272664078383,-0.04060475011426904,0.015407940167737803,-0.076966926420905,-0.04175773279341402,0.014446733737095693,0.11460397500653512,-0.09378513253610302,-0.1850720722729064,-0.01652297568260659,0.08474773308532906,0.2451640757798617,0.11900978420075808,0.19866591099029676,-0.0659961169338755,0.06157749691697903,-0.11381666137854875,0.20688382220637302,-0.06545602596505004,0.0901571060706414,0.20910254883121007,-0.047962759922086415,0.04751450407019297,-0.07449414110241623,-0.06896569919501098,-0.10741556272538283,0.0716104041415861,0.15315700050099534,0.12755443138520972,-0.11378522039841751,0.004989140104172819,0.048158855558227416,-0.009558066120645844,0.00618561863434083,0.055766777093095805,-0.11902166992167755,0.0028049361050789235,-0.08884998564418296,0.048730422567636315,-0.007941884076972421,0.03824904196050839,-0.05836844210323287,0.12017283013948116,0.009604060752008847,-0.028301306376263803,-0.05193129159855787,-0.03591735971994577,0.09587218547393704,0.12198047833281167,0.11601609993199165,0.026352602412223078,-0.00011585971970805145,-0.020069131994913024,0.1367075387782893,-0.1751129213489743,-0.12687506515134273,0.013607524758920872,-0.1190464946923924,-0.21486613357505913,-0.028281218834101923,-0.17390308822978176,-0.06105422430215034,-0.1446794531783012,-0.13357731935500772,-0.10032275681838204,-0.11909203748222884,-0.08325462683128954,-0.06443299477336648,-0.005302804090650914,-0.061671589749343524,-0.1037386526516962,-0.09596795870210484,-0.08355238439084256,-0.08963118506930882,-0.06773238777493555,-0.09987801086269305,-0.06622080337870498,-0.09196188471733532,-0.03345320297126835,-0.0668412493465442,-0.03743913748416391,-0.009977949022182046,-0.06949253649472381,0.00992122305485845,-0.032375773861143604,0.00011385585591697366,-0.06430909570650951,-0.04448754833881021,-0.06753428744546561,-0.007585334041763059,21.921876352882542,53.83992180294317,26.08671052192624,12.856751266583416,30.548671204958083,39.93402653626689,43.349015317621124,44.39694555017927,44.72315485250484,93.76112544166645,77.76208948881165,4.417851174398974,11.581184778455816,0.0,15.99903595285479,13413.972175446279,10792.946255010589,3957.048099183794,524.0,77.0,108.0,149.0,215.0,254.0,313.0,393.0,464.0,609.2959134520911,51.0,5.54907608489522,6.440946540632921,7.362010551259734,8.27308133366583,9.19634286233233,10.114679972730583,11.039122627865256,11.960804899165572,12.886096591898704,0.6298449612403101,0.9759999999999998,1.1203631476215374,0.5902951364350121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6694089472218354,0.9633834929320565,1.0001270346719966,0.6268859504210474,10.0,0.0,0.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,2.0,6.0,0.0,4.0,0.0,2.0,1.0,0.0,0.0,0.0,33.64353746257623,11.791352662431866,34.49707099970343,5.749511833283905,0.0,4.899909730850478,0.0,0.0,0.0,18.19910120538483,90.17114216624547,25.428240480912557,40.423146945519015,168.6464414318226,-672.1846552613885,-40.763540432298974,-7.816100642574285,-25.853255971591864,634.2662194951209,3162.3007067666877,50.85951127890513,36.770938450775446,52.70501177944481,0.4,0.844557079145536,0.12650996582181367,88.30538582369708,0.05885369991982076,268.88247085019964,0.15544292085446412,9.0,0.0392156862745098,0.2220892783910156,0.5171889043039142,0.7665942789337898,0.8701288361838415,0.8990797927238404,0.90993640142634,6.701000000000008,,1.7857142857142856,2.0856212191717076,1.489304286185103,1.7805938315565375,-7.530129222398548,1.8746940024479808,1.7714947875377989,-3.0326161248350116,172.2529999999995,33.64353746257623,0.0,4.899909730850478,0.0,37.76696814999996,48.45212384241178,94.0443796347981,0.0,45.99609466627124,4.634728988229636,0.0,6.018593214496234,0.0,7.6004023345004,0.0,9.275659838096825,0.0,11.001649739923852,54.166666666666664,19.83395549486188,0.0,0.0,0.0,0.0,0.0,9.805581978526812,0.0,83.93599999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.35123069545222,18.947451815200196,0.0,45.99609466627124,68.04811922063828,25.683286491704038,0.0,45.46439060847789,60.6636706846161,0.0,0.0,0.0,50.76538173341104,57.56916946107784,59.27540515576773,575.3768186981752,,450.0012835098942,443.65941756617997,455.41146369368096,450.10465640442544,649.8888522114609,448.182630313083,450.2915221073456,552.6245371131022,59.27540515576773,575.3768186981753,,448.69175970037054,442.1299620054541,454.1984597250689,448.79888759461755,653.402912515247,446.80785471128786,448.99242592981795,554.0397579713585,5.090679808589178,399.6239736987854,,314.1337540151592,309.9216645103956,318.11550222246876,314.2042209092836,456.37987615128475,312.9528251139683,314.3238933624599,384.10394412843027,1.3172312256837273,12.786151526626115,,10.000028522442094,9.859098168137333,10.120254748748465,10.00232569787612,14.441974493588019,9.9596140069574,10.006478269052124,12.280545269180049,2.5453399042945897,284.24723496073176,,222.84251703193797,219.6041726560235,225.5547488287364,222.89567548785863,320.7091714604698,221.91876832532873,222.99021307361093,273.2604801361564,82.85098039215686,0.0,9.801640601197642,0.0,0.0,0.0,22.44423680075351,86.0109249817917,4.998165835005974,0.0,24.47085202142457,0.0,0.07729404260428674,2.375133631478155,0.0,0.0,0.0,53.912191736210076,678.1055717214296,122.73958718244091,285.8289831436066,423.6650504446895,480.8843313935631,496.8843313935632,502.8843313935632,2593.0,178.82216146444614,124.80708920551407,83.53103411524695,80.62,80.62,0.6666666666666666,9.560457925648361,6.672425341971495,5.02344052218921,6.656403143305359,,6.658188810358226,6.659980479069316,6.658932600354844,6.658167366487901,6.620270933741907,6.658800259506753,6.65809706196002,6.635398699990179,0.11163201160420466,0.14792006985123018,,0.1479597513412939,0.14799956620154034,0.14797628000788543,0.14795927481084226,0.14711713186093126,0.14797333910015006,0.14795771248800044,0.1474533044442262,3.118192458711854,3.399656666866242,,3.3999248939466944,3.400193950253603,3.400036598266938,3.3999216732652946,3.3942136924348385,3.400016723885992,3.3999111140685683,3.3964961531831475,461.9000000000019,819.7679727458667,357.42684546559775,,357.11093092328616,356.6940458133047,356.9065011096055,357.1159572851754,364.49150522627787,356.96836872689056,357.1322010989088,361.858445808713,18.21706606101926,7.942818788124394,,7.935798464961914,7.9265343514067705,7.931255580213455,7.935910161892787,8.099811227250619,7.932630416153123,7.936271135531307,8.041298795749178,8.213098736927805,7.383008109902899,,7.382123861166625,7.380955796580451,7.38155124259992,7.38213793613908,7.402580642675713,7.3817245716245266,7.382183421209068,7.395330498450852,25.16399161557173,2.375133631478155,22.44423680075351,6.661754187404441,3.1438277911223707,19.91124953746617,3.1604524757867942,1.8377133592191799,9.801640601197642,559.0283046016219,135.4083630458846,-539.7055701901816,-32.72956271730022,-6.275646165002112,-20.757906545776216,509.26037803090037,2539.0512751211954,40.835745534389616,29.52385203629298,42.31752125201994,6292.0,90.0,3.9639143936413834,2.496954789951743,0.2041241452319315,0.2041241452319315,1.0205168943408889,0.4947225069422409,0.08333333333333333,0.07216878364870322,0.0,0.0,0.0,0.0,0.0,0.0,0.35595926978354187,0.15906882128226807,0.9652696981709511,0.3872403101116847,31.457090199954585,26.645477865750117,21.64453007098769,15.751836121089145,20.686417912550084,13.377210491312146,18.307131998838802,10.201404800926486,15.329356467924685,7.4333202184316125,14.164204363026153,6.004631834139435,10.652442348525318,3.876206027547368,8.299811892569473,2.5629086311623186,9.218852561095,4.797381175587908,14.498868130146759,6.592832163320783,25.09201426910339,9.92745642292446,151.73982959321205,83.11783146153704,42.56930438106677,31.632051668280276,28.94579240369989,28.122301286546012,256.0,313.0,96.14051299999997,52.06548700000007,0.4186046511627907,621.08,13.95138888888889,9.569444444444443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,6.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0,24.0,24.0,86.0,0.0,2.0,92.0,24.0,0.0,12.0,80.0,24.0,51.0,68.0,0.0,0.0,6.0,37.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,41.0,7.0,2.0,4.0,45.0,8.0,0.0,2.0,6.0,0.0,8.0,2.0,0.0,0.0,0.0,0.0,4.0,4.1588830833596715,8.462737005620179,4.804021044733257,5.3867860145356445,5.960360802056648,6.571233041110882,6.864390993075973,7.248392935327408,7.697575346802343,8.116249098101996 +33741,COc1cccc([C@@]2(O)CCCC[C@@H]2CN(C)C)c1,0,17.681818181818183,5.793747727272727,2.75,4.590909090909091,164.40440073775514,69.13089970454546,1.3235029686642048,5.862472727272728,2.8499053030303028,7.398066454545452,187.0331764980211,20.57777777777778,6.143888888888889,3.4,4.355555555555555,146.36114157779434,75.72446657777773,1.685187809466668,6.284777777777779,2.608333333333334,7.606119644444439,236.35885994738135,16.240963855421686,6.009843373493976,3.1927710843373496,3.180722891566265,157.09706307651007,58.33300775903616,1.4095481003118797,6.10765060240964,2.301706827309236,7.554978795180722,192.4225413762216,14.11504424778761,5.882513274336284,2.7787610619469025,2.52212389380531,155.30718579327115,49.01355732743362,1.316156980595416,5.98317256637168,2.367625368731563,7.456962831858405,172.39809121394774,11.26950354609929,5.756723404255323,2.297872340425532,1.8865248226950355,162.4988694337714,38.028655687943264,1.1147257139894111,5.8277950354609915,2.2240937746256906,7.390459007092198,140.2203838423779,11.323529411764707,5.728198529411763,2.2058823529411766,1.5955882352941178,162.28116266955078,38.303944257352946,1.1234248590647726,5.802474999999999,2.2340686274509802,7.354697205882353,140.61141872618592,9.541353383458647,5.739819548872183,1.9774436090225564,0.9699248120300752,163.55006950127725,30.09528303007519,1.0495776071083687,5.804695488721803,2.152882205513784,7.3900622857142855,126.86046532863072,7.288135593220339,5.556813559322036,1.6440677966101696,0.7033898305084746,167.29524792649443,21.618512025423726,0.9194080186601947,5.608318644067797,1.8792372881355932,7.2539693220339005,103.93380243604827,5.9411764705882355,5.3534000000000015,1.4823529411764707,0.29411764705882354,170.05924648245116,17.221942235294122,0.8221385177100705,5.4012647058823555,1.6352941176470588,7.083033694117648,88.08552947647965,6.9710743801652875,0.09142081611570242,0.014315254102809826,0.5676652892561982,2.9710743801652892,1.3221697974629505,33.29951997262397,0.22606458894797257,0.08937438016528917,0.7397088785583104,0.05421281611570247,50.741667529489696,0.30670339761248816,0.0014305980257115559,-0.004638733912558867,0.2641528925619833,0.9693296602387509,-0.20477695442507293,1.4339888576790722,-0.01181951734772001,0.0025924885215794086,-0.06984005139781664,-0.0009061656106519549,-0.5751292156498368,0.29672408642835757,-0.009809479861595211,-0.001679233158210708,-0.017829582793985894,0.01632978193766802,0.32505116058043054,1.5276211856454798,0.03411692401153836,-0.007829801852036262,0.014569598988239429,-0.006113466718112099,6.736333645107913,-0.603013237767864,-0.004347002760915713,7.717566061786229e-05,-0.03287043808966577,-0.03664155635193444,-0.20234009572602332,-2.9325022582233182,-0.03358711595056551,-0.004334878958531414,-0.008685983680327039,-0.002777881280626041,-6.433271344262881,-0.023621124201395012,-8.305015825568486e-05,-7.006939767993775e-05,-0.04590513451732022,-0.013949944317449125,-0.0327805062822326,-0.11207222520294793,-0.0018827132903431883,-0.00018959615497333166,-0.05027911997961563,-0.00045978000996424185,-0.43113741016797785,0.08774914924647514,0.007674638429752062,0.001462416650172622,-0.09791261545940685,-0.21906903257170643,-0.06013611255885833,0.35087980177442996,-0.010273158341948883,0.006971542294603789,0.0842220669259439,0.005336707948468643,-1.4441818423747919,-1.3282172373081462,-0.015008085425340212,-0.002024509520522269,-0.0721082147517554,-0.6829677499533959,-0.1458362870809163,-6.321688996205649,-0.02925325891821834,-0.015636239358727384,-0.11398975119444621,-0.007625535186105754,-8.131772712305212,-0.6112900966521917,-0.0028983777489844167,0.0007694837723266299,-0.0044911752346266905,-0.15751505813139097,-0.05696586848342919,-2.9162014995885297,-0.010572756293575111,-0.004252346266984157,-0.06896275203887876,-0.0008399701989074153,-3.810014051496229,0.673310646572679,0.008206376397666582,0.0007588052018917492,-0.0024246475449683953,0.057267865824015426,-0.06307368713177185,3.162692944488327,-0.0017411521182630386,0.009030753524550314,0.06259170076432785,0.003361496183762739,1.9375084783655583,,,0.47719298245614034,0.9473684210526315,0.34210526315789475,0.02631578947368421,0.6052631578947368,-0.2631578947368421,1.0102405673102441,0.018711382069131213,0.027764013648078577,0.6228527762516161,0.17419336512618483,0.30258017714011004,1.6330933435618602,0.47677354226629487,1.9974933414675313,1.6980068831300268,0.10537674352181368,0.1941097148156902,0.0,0.2994864583375039,5.9815574781818235,778.0,254.9249,121.0,202.0,7233.793632461226,3041.759587,58.23413062122501,257.9488,125.39583333333333,325.5149239999999,8229.459765912929,926.0,276.475,153.0,196.0,6586.251371000745,3407.600995999998,75.83345142600005,282.81500000000005,117.37500000000001,342.27538399999975,10636.148697632161,1348.0,498.817,265.0,264.0,13039.056235350336,4841.639644000001,116.99249232588602,506.9350000000001,191.0416666666666,627.06324,15971.070934226393,1595.0,664.724,314.0,285.0,17549.711994639638,5538.531977999999,148.72573880728203,676.0984999999998,267.54166666666663,842.6367999999998,19480.984307176095,1589.0,811.6980000000004,324.0,266.0,22912.340590161766,5362.040452,157.17632567250698,821.7190999999998,313.59722222222234,1042.0547199999999,19771.074121775287,1540.0,779.0349999999997,300.0,217.0,22070.238123058905,5209.336419,152.78578083280908,789.1365999999999,303.8333333333333,1000.2388199999999,19123.152946761285,1269.0,763.3960000000003,263.0,129.0,21752.159243669874,4002.6726430000003,139.59382174541304,772.0244999999999,286.3333333333333,982.878284,16872.441888707886,860.0,655.7040000000002,194.0,83.0,19740.839255326344,2550.984419,108.49014620190297,661.7816,221.75,855.9683800000003,12264.188687453696,505.0,455.0390000000001,126.0,25.0,14455.035951008349,1463.8650900000005,69.881774005356,459.1075000000002,139.0,602.0578640000001,7487.270005500771,306.72727272727263,4.022515909090907,0.6298711805236323,24.97727272727272,130.72727272727272,58.175471088369825,1465.1788787954547,9.946841913710793,3.9324727272727236,32.547190656565654,2.3853639090909087,2232.6333712975465,13.801652892561968,0.06437691115702002,-0.20874302606514902,11.886880165289249,43.61983471074379,-9.214962949128282,64.52949859555825,-0.5318782806474005,0.11666198347107339,-3.142802312901749,-0.04077745247933797,-25.880814704242653,24.62809917355368,-0.8141868285124025,-0.13937635213148877,-1.4798553719008292,1.3553719008264458,26.979246328175737,126.79255840857482,2.831704692957684,-0.6498735537190097,1.2092767160238727,-0.5074177376033042,559.1156925439568,-68.14049586776864,-0.4912113119834756,0.008720849649818438,-3.714359504132232,-4.140495867768592,-22.864430817040635,-331.37275517923496,-3.7953441024139027,-0.4898413223140498,-0.9815161558769555,-0.3139005847107426,-726.9596619017055,-3.3305785123966967,-0.011710072314051564,-0.009879785072871223,-6.472623966942152,-1.9669421487603267,-4.622051385794796,-15.802183753615658,-0.26546257393838957,-0.026733057851239764,-7.089355917125804,-0.0648289814049581,-60.79037483368488,11.93388429752062,1.0437508264462805,0.19888866442347658,-13.316115702479332,-29.793388429752074,-8.178511308004733,47.71965304132247,-1.3971495345050482,0.9481297520661153,11.454201101928371,0.7257922809917354,-196.4087305629717,-176.65289256198344,-1.9960753615702482,-0.26925976622946174,-9.590392561983467,-90.83471074380166,-19.396226181761868,-840.7846364953513,-3.890683436123039,-2.079619834710742,-15.160636908861346,-1.0141961797520653,-1081.5257707365931,-72.13223140495862,-0.3420085743801612,0.09079908513454232,-0.5299586776859495,-18.586776859504134,-6.721972481044644,-344.11177695144653,-1.2475852426418632,-0.5017768595041305,-8.137604740587694,-0.099116483471075,-449.581658076555,57.231404958677714,0.6975419938016595,0.06449844216079868,-0.2060950413223136,4.867768595041311,-5.361263406200607,268.8289002815078,-0.14799793005235828,0.7676140495867766,5.320294564967868,0.2857271756198328,164.68822066107245,0.7305509941381043,0.6434189859655078,0.4529348651529802,0.353836325081213,0.29342414670541883,0.20932713045385357,0.18053808525169462,0.11641778670756464,0.11521804303486534,0.07074711908148856,0.07730957474740206,0.043272489904301804,0.049917010905601966,0.025347590163036626,0.03293953905694696,0.015172765698573475,8.011350093695818,5.691888079915422,3.522423421182326,2.191232982840958,0.3654734229280858,-0.529334679173911,4.028829004321275,0.9871782666693858,6.007456617411149,0.9943779646827242,14.544532763009164,10.952303915718762,16.004958673682708,11.703273196658634,1.9860133164954659,0.7766056831888244,3.465188795128333,2.2410905283043645,6.002557473881648,1.1297182151308875,3.6786883523016645,2.437114775531255,20.893745148069435,14.706040673535648,0.23650596851557124,0.5199694280758164,0.7404230096362916,0.8299491255118119,0.8462266011255432,0.8462266011255432,2.07307007076749,418.9648895501135,0.0,0.0,1.0,0.0,5.0,4.0,1.0,2.0,0.0,4.138554653281093,2.555421861312437,1.3241968751475097,0.8241968751475115,0.7332877842384198,0.7332877842384198,263.9299544815587,750.2103696996386,34.5260686498852,17.050235674991786,31.51931944636257,,9.0,271.0,5.601050810983688,5.106527394840706,0.0,5.917906046161393,37.120184599671504,6.4208216229260096,7.109797541277533,24.26546827384644,18.99525369620486,4.736862953800049,9.066666666666666,18.0,6.5,0.5,11.5,0.0,0.02280701754385966,-5.0,0.07848484848484844,0.025999999999999968,-0.05248484848484847,0.025087719298245603,0.11881400437636735,0.0,0.5166666666666669,0.801754385964912,0.4381818181818185,0.490666666666667,0.7766666666666664,19.19457077889464,0.35551625931349307,0.527516259313493,11.834202748780704,3.3096739373975117,5.749023365662091,31.028773527675344,9.058697303059603,0.5951859956236326,0.20220588235294118,0.05514705882352941,0.20955882352941177,0.625,0.22786683426980098,-0.35252260300196353,-0.031593996019248505,-0.008011877340953717,-0.02518018592871168,0.772133165730199,1.1945327380336102,0.03960435189368559,0.027148471318945683,0.039817757934453676,-3.2877667957748242,1.0342883488111707,0.9293854548415381,1.3236036969842235,0.9564250328581542,0.7346082522021327,1.47858638780434,1.0402149480112077,1.3164644487169068,0.9202312884072225,1.0243056599483504,0.9559169251463807,1.2121417562298558,1.0184865127373754,1.2332003612660036,1.3278021970186367,1.6697106898933316,1.2562712602845318,0.9329449399173736,1.0150620951474485,0.9333714581844091,1.1944530941795166,0.8341803195888896,1.2289870986589964,0.9287550059124517,1.107870703086067,1.0484875784008871,0.9136756217404911,1.4930387238599858,1.0668363139562076,1.2551489405960503,1.1109129740189365,1.2544652104118494,1.047302044105973,1.2708194445916614,1.0826746982294735,1.2008363390285677,1.0002186095591237,1.0687325331157862,0.9604355086817161,1.1599197207003145,1.0124483374268833,1.0093486716120748,0.9989599755149469,0.9925918317317363,1.0592560149704593,1.504880561631116,1.1001774346034485,0.989073570872329,0.9658657031277245,0.8579057942525992,0.8835275798679812,1.2215516779960396,1.0653915773541685,1.0513084997515083,0.9687152307094425,1.0351680776992565,0.8678008839466915,0.9049234637191816,0.8249205245201982,1.0171783297001726,1.1863420406380507,1.2798616652178627,1.2555172123177054,0.9513912168957429,1.2415217459504115,1.0729415751303837,1.1833628477417175,1.0890913943184581,1.2734940070648593,1.3532700672585942,1.2893461634050674,1.119752544295414,1.0294437523233504,0.9954539218200615,0.9664914513141495,0.5689918415817155,0.9338240494094906,0.9124673359526017,1.0282604036332212,0.9496000849299094,1.0128957076137575,0.8813943971527392,0.9880690866498836,0.9930131898824813,0.777640433766868,0.5874248693492337,0.6602454027272531,0.5772306374779212,0.7507322261310644,0.8593763535700506,0.781749825037549,0.8712471935173075,0.6126654059902167,0.3063274537092635,0.5542263190052923,0.8570760860330119,5.0,0.0,2.6666666666666674,1.6875,1.1733333333333333,0.7430555555555555,0.32244897959183677,0.171875,0.11060720584530107,0.0,3307.2068140489127,3987.8889250908856,1758.1432569265803,1503.699963081809,9.606591660519504,0.439496183002942,5.3845312940532875,0.7841091704916059,1.0,0.625,1.3208769653562038,2.9040097573248604,4.135234743489788,4.635234743489786,4.7261438343988775,4.7261438343988775,0.25,0.0,0.09523809523809526,0.05625,0.04190476190476192,0.02752057613168724,0.016970998925886147,0.015625,0.01843453430755018,0.0,0.5219439665079808,15.39,6.635204081632653,3.5555555555555554,115.74260576184008,1.0,3.859038420701929,73.1707881693598,,63.018021113506414,62.28907153452447,62.787454509602696,63.02759962491335,81.4875296112279,62.757924397562554,63.05703785777139,73.29908481654158,0.04399657511690703,0.015648493269858663,-0.3240413253753119,0.46533212010919006,0.32625560191624164,-0.1548794676886507,0.04306334922719534,-0.05228380704259791,0.029007065747307614,-0.09441559162292959,-0.016714970288907175,-0.011334456348238597,0.04256504381485628,-0.10730028759730506,-0.11730376185785657,-0.03140861900742193,0.005496254838547513,0.24584675977635845,0.04587517138088956,0.1509167100000353,-0.08760678213998027,0.019696395988426582,-0.11276792382569782,0.13275743532064524,-0.08650219534073689,-0.04754937601316241,0.005391148495416095,-0.057904611593806145,-0.012332763055866669,-0.15303639223516088,-0.08806440034673688,-0.14857309632998464,-0.04850247856840495,-0.01174243534463989,-0.05124030588445011,-0.1267847837386116,-0.0033884481664123263,-0.0009084381630391086,-0.004894736563997449,-0.08086655179757232,-0.004695252468459928,-0.02479296255680138,-0.0033655808040201234,-0.008328209646210817,-0.002121370292277184,-0.06797149721605267,-0.008481020594520801,-0.008496713473545433,0.012587607657170713,0.08394847864887817,0.10215792466342431,-0.17248300594122995,-0.07373394420355071,-0.04548289688226935,0.010537082878759017,-0.045443465470450965,0.07800381140222291,0.113858396684507,0.0984399691961933,-0.028461458061768904,-0.19053264459310698,-0.16416485941610867,-0.14142323328545695,-0.12702593608680482,-0.22987231639599698,-0.11030072488477251,-0.18984324703187322,-0.12940221666008384,-0.17495214321833272,-0.15410082871603728,-0.14065927086006988,-0.1602582868917196,-0.08768951001175486,-0.03170369585539711,0.05375271488723306,-0.007911660831881051,-0.05301619480917471,-0.04308513822713112,-0.08757488101888503,-0.04676874137067247,-0.04757902946146153,-0.09322958536510592,-0.01549394145315617,-0.07508649669981679,0.09658635238327705,0.08976485603979481,0.0530067574380541,-0.004271262645185455,0.019275137036733985,-0.04770468002884424,0.09497713321658761,-0.007702011740829318,0.10104409684127395,0.0846166682307759,0.06200556297589379,0.0381837762276837,11.651673868975163,10.838798061331492,1.1905507889761497,11.822349617408793,25.602692926258648,30.344722257767447,31.348858621403807,31.440494985040168,31.440494985040168,37.952373487883094,32.26213077947051,2.00215812691446,3.688084581498114,0.0,5.690242708412574,2254.059595368143,1772.2987045036998,1050.399743387804,30.0,28.0,36.0,45.0,56.0,51.0,50.0,45.0,38.0,263.1885290400002,20.0,4.574710978503383,5.41610040220442,6.304448802421981,7.180069874302796,8.076204527239026,8.965079015408355,9.863966794373844,10.758859869440865,11.658885550413762,0.5454545454545454,0.9551818181818184,1.1341052494968242,0.498370811604514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6272975639629833,0.9422459893048127,0.9868734688472492,0.5672820300501452,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,14.743300079491233,5.749511833283905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.97437738277524,44.633172839826614,12.462662452073968,12.710848352261221,110.49899602518667,-170.94806197983368,-15.320811612352212,-3.885183226814402,-12.210575855702405,374.42895050674537,579.2623077198049,19.205257037532984,13.165052448177383,19.308743590660164,0.4444444444444444,0.9214784455112057,0.3210977798612565,47.650809084390836,0.13662616302088212,69.04520692041126,0.07852155448879425,5.0,0.2,0.24194404429336944,0.5319252918950776,0.7574478503170562,0.8490324757738728,0.8656842258569305,0.8656842258569305,2.6346000000000007,,0.6428571428571429,0.7570963238715681,0.5715179572142502,0.641031336679575,-2.682770346860122,0.6786260709914321,0.6372525935499613,-1.1173135843594801,77.40280000000006,9.843390348640755,0.0,4.899909730850478,5.917906046161393,31.284337302687725,27.74989791254449,29.828919765543436,0.0,5.749511833283905,3.713572066704308,0.0,5.030437921392435,0.0,6.569481420414296,0.0,8.215276958936633,0.0,9.918425424900335,24.0,7.89740197467876,0.0,0.0,0.0,0.0,0.0,1.8180569727891158,0.0,42.028000000000006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.90063097786027,4.736862953800049,0.0,5.749511833283905,37.75633503823567,5.601050810983688,5.917906046161393,31.246737983401033,24.26546827384644,0.0,0.0,0.0,21.928315710598618,27.601092814371263,24.017665707961793,146.3415763387196,,125.9683730540805,124.49844871916773,125.51474923423548,125.98772226701833,164.38704361553997,125.44441447186284,126.04699649516911,147.18622941432494,24.017665707961793,146.34157633871956,,125.3931850841557,123.82104674517747,125.00339106199118,125.41416791314722,165.6578295693159,124.83722272413374,125.47682312199288,147.71548321744268,4.9251024507183745,103.44778663547336,,89.51915790685426,88.63900598375545,89.12738893577826,89.53035944573848,111.41200726600617,89.19931416788684,89.56689655502467,101.81465556925718,1.2640876688400944,7.702188228353663,,6.629914371267395,6.552549932587775,6.606039433380815,6.630932750895702,8.651949663975788,6.602337603782255,6.634052447114164,7.746643653385523,2.4625512253591872,73.1707881693598,,63.018021113506414,62.28907153452447,62.787454509602696,63.02759962491335,81.4875296112279,62.757924397562554,63.05703785777139,73.29908481654158,41.45882352941176,0.0,5.808075003149408,0.0,0.0,0.0,11.188993764172334,43.422432629278966,5.167358434114386,0.0,5.285469812925171,0.0,0.29477418745275874,2.1677865173847315,-0.7112499999999997,0.0,0.0,24.96040932220639,446.8506503551858,58.11858647567297,127.77642932229386,181.95032871355065,203.95032871355056,207.95032871355062,207.95032871355062,418.0,111.79832581430843,38.0772961767462,52.44719379234801,32.7,32.7,0.8,7.061280763415477,5.321928094887363,3.738528423335491,4.287930959110994,,4.291680776693258,4.293678468000619,4.292987039218396,4.291657152091067,4.2395332586293035,4.2924394098232765,4.2915687642746505,4.263015225748215,0.1967646538597627,0.2256805767953155,,0.22587793561543462,0.22598307726319045,0.22594668627465242,0.2258766922153193,0.2231333294015423,0.2259178636749093,0.2258720402249816,0.2243692224078008,1.9605459504729301,2.0976582088576814,,2.0985323318218665,2.0989977034589704,2.098836656360272,2.098526827063138,2.086307068845,2.0987090845036813,2.0985062315860343,2.091830595553175,223.39999999999958,122.40560474774293,95.92878143165186,,95.50939585892935,95.32837415422574,95.47847609943983,95.511828250654,99.58691405352461,95.44606134757713,95.51892166105331,97.89195674546866,6.4424002498812065,5.048883233244834,,5.026810308364703,5.017282850222408,5.025182952602097,5.02693832898179,5.2414165291328745,5.023476913030375,5.027311666371227,5.152208249761508,5.449194045625007,5.205459942238905,,5.201078514776874,5.199181387609816,5.200754727099231,5.2011039820173455,5.2428846571264085,5.200415171454812,5.201178246609887,5.225718274473336,5.285469812925171,2.1677865173847315,11.188993764172334,0.28726851851851887,1.114312641723356,7.89740197467876,4.243043194129504,0.9243152399848829,5.808075003149408,270.3471422914506,53.58405123633389,-82.89749265949419,-7.429489714380537,-1.8840339240794135,-5.921249475678156,181.57106209134244,280.9004813859131,9.313165857828807,6.384101849679842,9.363349379530437,670.0,30.0,1.5938136576188953,0.9488958778660481,0.11785113019775792,0.04564354645876384,0.48864194209635603,0.21083902283746372,0.11785113019775792,0.03803628871563654,0.0,0.0,0.0,0.0,0.0,0.0,0.15550211698203653,0.09994656142648099,0.2654587183888984,0.14461940853028138,13.880468888623982,12.224960733344648,9.058697303059605,7.07672650162426,8.215876107751727,5.8611596527079,6.499371069061007,4.191040321472327,5.1848119365689405,3.1836203586669853,4.329336185854515,2.423259434640901,2.5457675561857003,1.292727098314868,1.646976952847348,0.7586382849286737,3.486368452756758,1.8044155515034177,5.428481743951692,2.6711379905404433,8.742874290828874,3.883550378218669,66.64407823620117,36.57171459413782,25.285476158503805,22.071757440485925,21.624588055279144,21.624588055279144,96.0,112.0,46.093824999999974,28.526174999999995,0.2727272727272727,58.03,7.006944444444445,4.291666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,6.0,44.0,0.0,1.0,45.0,6.0,0.0,3.0,42.0,6.0,20.0,39.0,0.0,0.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,3.0,1.0,0.0,19.0,3.0,0.0,1.0,2.0,0.0,2.0,4.0,0.0,0.0,0.0,0.0,1.0,3.1780538303479458,4.9518579233937565,3.6506582412937387,4.098502572370764,4.544623686120057,4.99255618069635,4.998478363825624,5.182485551022915,5.124335934029084,5.049455285945838 +5878,C[C@]12COC(=O)C[C@@H]1CC[C@@H]1[C@@H]2CC[C@@]2(C)[C@H]1CC[C@]2(C)O,0,17.423076923076923,5.782692307692306,3.1538461538461537,4.461538461538462,163.71108045855712,68.0654658076923,1.3126365220282692,5.8509288461538445,3.3043536324786325,7.401516769230767,185.16357302035087,20.545454545454547,6.062727272727273,4.090909090909091,4.290909090909091,143.66896276218637,75.73518256363636,1.759123872290909,6.216336363636363,2.2922979797979797,7.533979418181818,245.7117900074494,17.31858407079646,5.904247787610621,3.7876106194690267,3.0973451327433628,150.6164144983879,63.16187449557522,1.5294071103932125,6.028222123893804,2.149582104228122,7.440231575221239,208.09393202203137,14.033333333333333,5.846999999999998,3.0388888888888888,1.8055555555555556,153.27157892038574,48.46614886666664,1.3696981571131999,5.956708333333333,2.1205246913580242,7.419523866666665,178.24879027532842,9.612903225806452,5.661693548387095,2.2661290322580645,1.0685483870967742,159.8109421897691,30.219222225806444,1.1166474525279835,5.743647177419354,1.913054435483871,7.304663838709677,133.80048083675453,7.162162162162162,5.42181467181467,1.9305019305019304,0.8494208494208494,167.7809876107101,22.16600643629344,0.8982313167417951,5.477117760617761,1.6627788502788505,7.136953127413129,101.55873860195014,7.857142857142857,5.546228571428571,1.977142857142857,1.0057142857142858,168.15494465492208,24.796245788571422,0.9089660079243942,5.5951514285714286,1.8838888888888892,7.257390102857143,106.31180018409916,9.109243697478991,5.654285714285713,2.008403361344538,1.226890756302521,165.00958473151934,29.231842151260494,0.9599711582803022,5.713042016806724,2.1176470588235294,7.332963495798319,115.27777690090235,7.708333333333333,5.769062500000001,1.625,1.1666666666666667,170.95752355923912,23.390132760416662,0.8107972022672705,5.792433333333334,2.451388888888889,7.490289041666666,95.1241624438192,6.9852071005917145,0.09630177514792893,0.012319507432765024,0.78698224852071,2.9467455621301784,1.2696142677806348,33.335750232248515,0.22864359997053998,0.09369774408284016,1.2102106960881,0.059918094674556194,50.960226894743066,0.43786982248520645,-0.0005325443786982043,-0.006558018263912762,0.3598708983324367,1.0616460462614306,0.09319483150633981,2.130879691527705,0.017553771550002064,0.0004463118612156324,-0.068920389172793,-0.001265991178052803,4.094581302870097,0.995391946379012,0.013647169712520293,0.0007953802787161872,-0.08105985233282721,0.08116458082421318,0.1605866984707538,4.742540804170813,0.02934190964199684,0.013416466264334664,0.14356478420839808,0.008275603079017604,6.865595887676533,-0.9441814595660748,-0.008147928994082827,0.00010181048685351204,-0.19253780407626564,-0.6454635108481261,-0.14956487506828187,-4.523517298915186,-0.02815387010485273,-0.008841910749506925,-0.04628322695229746,-0.0040557151873767605,-6.917703180621606,-1.6005917159763312,-0.011531303683909137,-0.0005861630099004864,-0.0506298912006108,-0.3198845199465547,-0.24935159859603584,-7.6790493532162625,-0.04741908957866648,-0.013159709033212426,-0.0929628845358529,-0.00504229070433287,-11.862581687257466,0.6478490324644169,0.00547280162664776,0.00037532555229521334,0.038381576843115335,0.2495716341870188,0.02730716501674936,3.074015796560507,0.007291283868667057,0.006438489953393835,0.03343989131248746,0.0019376481231866754,3.263244144464287,0.47962806424344906,-0.002325950972104826,-0.00020589462171208189,-0.00764158918005071,0.03786982248520714,0.11393088241620303,2.348357448630599,0.021399845524381803,-0.001001919907016042,-0.06700022600262981,-0.0026365764327979345,4.88733223163454,-0.08184575605390085,0.0007279598229824433,-7.036371010456197e-06,-0.046193625379145745,0.0008950325692407208,-0.17955768189240034,-0.4672280945626772,-0.029311399710463665,0.001434075568097065,-0.035311249129829456,-0.0008901373377753443,-4.043204434650049,-0.2624506903353056,-0.003120685404339243,0.0008099669165645201,0.08160749506903357,0.0532544378698225,0.06376025005216733,-1.210172158931213,0.009156148432045375,-0.0038076198841222875,-0.092271994165023,-0.0007467581360947403,0.249524170227689,,,0.4772727272727273,0.6818181818181818,0.06818181818181818,0.0,0.6136363636363636,-0.5454545454545454,1.5554979026603208,0.028898773532068326,0.044535137168431965,0.26686823807850857,0.05867998529826442,0.4085218576411716,1.8223661407388294,0.467201842939436,2.058929609916072,1.8082041397702595,0.0,0.25072547014581237,0.0,0.25072547014581237,5.88883643884617,906.0,300.69999999999993,164.0,232.0,8512.97618384497,3539.404222,68.25709914547,304.2482999999999,171.82638888888889,384.8788719999999,9628.505797058246,1130.0,333.45000000000005,225.0,236.0,7901.79295192025,4165.435041,96.751812976,341.89849999999996,126.07638888888889,414.36886799999996,13514.148450409717,1957.0,667.1800000000002,428.0,350.0,17019.654838317834,7137.291818,172.82300347443302,681.1890999999998,242.90277777777774,840.746168,23514.614318489545,2526.0,1052.4599999999996,547.0,325.0,27588.88420566943,8723.906795999996,246.545668280376,1072.2075,381.6944444444444,1335.5142959999998,32084.782249559117,2384.0,1404.0999999999997,562.0,265.0,39633.11366306274,7494.367111999998,276.9285682269399,1424.4244999999999,474.4375,1811.556632,33182.51924751513,1855.0,1404.2499999999995,500.0,220.0,43455.27579117392,5740.995667000001,232.64191103612495,1418.5735,430.6597222222223,1848.4708600000004,26303.713297905088,1375.0,970.59,346.0,176.0,29427.115314611365,4339.343012999999,159.069051386769,979.1515,329.6805555555556,1270.0432680000001,18604.565032217353,1084.0,672.8599999999999,239.0,146.0,19636.1405830508,3478.589215999999,114.23656783535597,679.8520000000001,252.0,872.622656,13718.05545120738,740.0,553.8300000000002,156.0,112.0,16411.922261686956,2245.4527449999996,77.83653141765797,556.0736,235.33333333333331,719.0677479999999,9131.919594606643,363.23076923076917,5.007692307692304,0.6406143865037812,40.92307692307692,153.23076923076928,66.01994192459301,1733.4590120769228,11.889467198468079,4.872282692307689,62.93095619658121,3.115740923076922,2649.9317985266393,24.082840236686355,-0.029289940828401237,-0.3606910045152019,19.79289940828402,58.39053254437869,5.12571573284869,117.19838303402378,0.9654574352501135,0.02454715236685978,-3.7906214045036153,-0.06962951479290416,225.20197165785532,112.47928994082835,1.542130177514793,0.08987797149492915,-9.159763313609474,9.17159763313609,18.14629692719518,535.9071108713018,3.315635789545643,1.516060687869817,16.222820615548983,0.9351431479289893,775.8123353074483,-169.95266272189346,-1.466627218934909,0.018325887633632167,-34.65680473372782,-116.18343195266272,-26.921677512290735,-814.2331138047334,-5.067696618873492,-1.5915439349112463,-8.330980851413543,-0.730028733727817,-1245.1865725118892,-396.94674556213016,-2.859763313609466,-0.1453684264553206,-12.556213017751478,-79.33136094674556,-61.83919645181689,-1904.404239597633,-11.759934215509286,-3.2636078402366815,-23.05479536489152,-1.2504880946745518,-2941.9202584398513,167.792899408284,1.4174556213017697,0.09720931804446026,9.940828402366872,64.63905325443787,7.0725557393380845,796.1700913091713,1.8884425219847676,1.667568897929003,8.660931849934252,0.5018508639053489,845.1802334162503,83.93491124260359,-0.40704142011834454,-0.03603155879961433,-1.3372781065088744,6.62721893491125,19.93790442283553,410.96255351035484,3.7449729667668157,-0.17533598372780734,-11.725039550460217,-0.4614008757396385,855.2831405360445,-9.7396449704142,0.08662721893491075,-0.0008373281502442875,-5.497041420118344,0.10650887573964578,-21.36736414519564,-55.60014325295859,-3.4880565655451763,0.17065499260355074,-4.202038646449705,-0.10592634319526598,-481.14132772335574,-25.19526627218934,-0.29958579881656733,0.07775682399019393,7.8343195266272225,5.11242603550296,6.120984005008063,-116.17652725739646,0.878990249476356,-0.3655315088757396,-8.858111439842208,-0.07168878106509508,23.954320341858143,0.7159414716648663,0.6468166137581168,0.41113762178670377,0.3663470923180869,0.25988530608263344,0.22120029004173192,0.16038639317394043,0.13846102955069894,0.09599234264707862,0.08234523035508601,0.06030438780121951,0.04834868239405319,0.03753306668825279,0.03034148280619095,0.023090410580902016,0.01825295849763249,8.028885056326283,5.744835459141777,3.5550322642975734,2.2444749726601527,0.42306711077952436,-0.49537209983553426,4.115601713067283,0.9778431756381633,6.028087800078882,0.9948908482549113,13.642788976924779,11.005193201263765,16.01417315233667,11.756028557210202,1.9458547747104253,0.7415152102955344,3.501091764850557,2.294390675631124,7.00827203600285,1.0772075265869134,3.7140131362314888,2.490405739069489,20.853908561908383,14.70123597251238,0.2111070890445347,0.41484778837660563,0.6651843057960953,0.8018949381594225,0.8813697537566988,0.8813697537566988,1.6361086084007206,498.90876402209955,0.0,1.0,4.0,0.0,0.0,7.0,0.0,5.0,2.0,4.474465925497061,3.2912713724075,1.8374783658006675,1.043551202047892,0.5820127405094286,0.5820127405094286,213.89204968424684,784.5894248091079,44.95198314000821,15.08825816940592,28.99836932880217,,10.0,368.0,5.601050810983688,9.901064578912528,16.79928622674541,36.699327772084494,12.841643245852019,25.683286491704038,0.0,0.0,20.771211599071872,4.736862953800049,10.5,15.0,1.5,0.0,13.5,0.0,0.022727272727272728,-12.0,0.06679487179487176,0.0,-0.06679487179487176,0.021936758893280617,0.12077966101694881,0.0,0.5134615384615387,0.8045454545454542,0.446666666666667,0.5134615384615387,0.7826086956521736,34.22095385852706,0.6357730177055032,0.9797730177055032,5.8711012377271885,1.2909596765618172,8.987480868105775,40.09205509625425,10.278440544667593,0.5932203389830512,0.20634920634920634,0.14285714285714285,0.23809523809523808,0.9473684210526315,0.2772865374661995,-0.4530572224946898,-0.0609224539286268,-0.008712638894128651,-0.026650424852628817,0.7227134625338004,1.1808382656694856,0.03268936406695893,0.022708428185951646,0.03373823616198529,-3.5621155711234764,1.008374725655539,0.7684541265186428,1.4729797488744303,1.064969241285031,0.6354052573932091,1.269536027001917,1.0161621960802998,1.2563697334628192,0.7858618128081934,0.7284498476607586,0.760906607152755,1.1809799116889463,0.8834433437159147,0.6335916153501082,0.7815885189948968,1.9300186306474152,1.1015833244482351,1.085709837270599,0.8904805127382254,1.0798021781327745,0.6575825995569587,0.48384662364498204,0.6109725954698938,1.028730458778396,1.1513341804320205,0.9369585253456224,0.8395438529434539,1.6512687969924813,1.2166834002677371,1.268732509031565,1.1565081141999554,1.2699496228338274,0.9622655941951077,0.8755388238223474,0.9056624634930642,1.2482318571650979,1.192323851293192,0.9502638620484616,0.8763875447400188,0.8869413958282805,0.9266936698406526,1.2185766310579966,1.1965300592171875,1.2318521239615878,0.9877802378030983,0.8297463923455286,0.8924173914790305,1.249176154713476,0.7987997527387618,0.6611951319324592,0.6861262419545431,0.666425958719192,0.6984317579197095,0.8571494312155505,0.8018591211931011,0.8598346022060488,0.6788697568836557,0.5516716062206876,0.6375057360235055,0.8525887642924854,0.8765383917226358,1.0175602369980252,0.9044096650886816,0.8866111707841031,0.9633089500860582,0.785531664079694,0.8729228064304172,0.7862736099697687,1.0020715181395277,1.056172611986519,1.0352300710411872,0.8059841126189434,0.9881557451443095,1.048815009874918,1.0701139181724642,0.9844253490870033,1.0026893287435452,1.0670608058178692,0.9884171471969989,1.0541639268800007,1.032223709479316,1.1025641569774225,1.0814111122613617,1.0161727065148263,1.0801070785684033,1.6151713709677427,1.593033314588046,0.5062852443609023,1.1493081701807226,0.7713496699470868,1.0669511345192695,0.7700740526678432,1.5533308852232037,1.6802682146820958,1.6899509434501219,0.8304760000412754,7.5,0.0,6.000000000000002,3.263888888888889,2.195555555555556,1.0105555555555557,0.6980498866213151,0.3212159863945578,0.16427311665406902,0.09594135802469136,4185.889007377317,5112.083821283734,2067.6472487227675,1766.4124230601778,11.2921585355786,0.475602736087694,5.92157703972141,0.9069512158385864,1.0,0.9473684210526315,1.2259737926440315,2.4091683457335917,3.8629613523404243,4.6568885160932,5.118426977631663,5.118426977631663,0.30000000000000004,0.0,0.1428571428571429,0.06799768518518517,0.060987654320987655,0.037427983539094656,0.03324047079149119,0.02007599914965986,0.018252568517118775,0.019188271604938273,0.7000277759656185,15.5232,4.761904761904762,1.9771071800208118,133.35418555459825,1.0,4.07754265218507,85.20971020740248,,80.9567184725019,80.53765584267822,81.86579552809823,80.96535842411825,90.51753571960434,80.85419156040564,80.9744270678658,86.3145168951176,0.06268530283778051,-0.005529953917050482,-0.5323279603266462,0.4572795625427203,0.36027747353048534,0.0734040518221729,0.06392175597315111,0.07677350930559093,0.004763314907785171,-0.05694908282960323,-0.021128695512248948,0.08034856892076522,0.14249999062943924,0.14171254570912017,0.06456266884508628,-0.10300086499434437,0.027543803532714906,0.12648463596070747,0.14226590885550097,0.12833033439719044,0.14318878640741747,0.11862792542857094,0.1381152575689591,0.13472459417924554,-0.1351687138218269,-0.08460829493087549,0.008264168629237267,-0.24465329991645787,-0.21904283801874155,-0.11780339813739697,-0.1356956800851958,-0.12313430206872299,-0.09436631410986378,-0.03824394140780934,-0.06768765277676614,-0.1357471032244407,-0.22914019483269804,-0.11974134086517024,-0.04758006869183132,-0.06433422265340771,-0.10855518849591914,-0.19639949307746676,-0.23035477827007664,-0.20739303258335806,-0.1404485151913332,-0.0768154543967817,-0.08415305479454847,-0.23278117877613258,0.09274585894662132,0.05682970659929168,0.030465954450175144,0.048770575086364606,0.08469398830844611,0.02150823735187223,0.09221378775470754,0.031889297883721725,0.06871552796085921,0.027631462373104924,0.032338280008918315,0.06403511803831696,0.06866339928601686,-0.02415273206056626,-0.016712893988316734,-0.00970998925886143,0.012851405622489969,0.08973661158940922,0.07044561566095586,0.09359477163209075,-0.010693105974144086,-0.055362447397963144,-0.044003008558907646,0.09590483656458573,-0.011717012090732101,0.007559152693335361,-0.0005711568460718023,-0.058697163075756634,0.00030373595221221236,-0.14142695655608725,-0.014015826591797764,-0.12819689558002212,0.01530533720031902,-0.029177769824684223,-0.014855901920949014,-0.0793403931069847,-0.03757235634618099,-0.032405273937531946,0.0657466965286557,0.10369674185463665,0.018072289156626505,0.05022017448151731,-0.036302532581387964,0.04004550502714756,-0.04063726316351747,-0.0762445700267599,-0.01246298201153993,0.004896449357320842,8.33585508209257,15.211714525320547,3.925136389583283,10.634689292148135,23.87229977020076,29.202455458531865,32.541887885748515,33.00711865497928,33.00711865497928,45.29645141815358,39.78049107494571,0.0,5.515960343207872,0.0,5.515960343207872,3368.081825012274,3151.3313246649727,654.20400744269,217.0,42.0,62.0,83.0,112.0,136.0,168.0,196.0,219.0,306.2194948200008,25.0,4.90527477843843,5.8377304471659395,6.805722553416985,7.76004068088038,8.728264161496178,9.689489552881621,10.658082545409984,11.622416438529939,12.591263615198248,0.5384615384615384,0.953846153846154,1.1318750559316975,0.4906495968439187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6234429986181483,0.9409502262443438,0.9867219452070146,0.5629195071161284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,1.0,8.0,0.0,1.0,0.0,4.0,0.0,3.0,0.0,0.0,9.843390348640755,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,13.847474399381248,74.53528159128902,11.83581209232279,12.207932775496605,133.1517753209282,-217.55608493791453,-29.25469433759632,-4.183770864190665,-12.797416761053798,347.04382500517505,567.0333398711933,15.697288802411894,10.904487305215255,16.200952567748374,0.5,0.7796782197714822,0.2846345922145078,64.21160523826101,0.18704031134487237,35.238011509332914,0.22032178022851784,5.0,0.0,0.21506653052438918,0.4226285102299476,0.677660240848952,0.8169349640297234,0.8979003779906258,0.8979003779906258,3.543100000000003,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,84.07580000000006,14.637927532712576,0.0,0.0,34.501605123439134,71.31801377053763,6.606881964512918,0.0,0.0,0.0,3.9318256327243257,0.0,5.389071729816501,2.3978952727983707,7.062191632286556,4.948759890378168,8.83331693749932,7.221835825288449,10.653747312552309,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.60000000000001,0.0,11.683670062951718,0.0,0.0,0.0,0.0,0.0,0.004974529163517483,58.85750290844827,0.0,0.0,0.0,23.28376545828916,9.53140013787187,34.501605123439134,65.71696295955394,0.0,0.0,0.0,0.0,25.513779035883772,32.419035928143714,28.083080739474546,170.41942041480502,,161.8631954876161,161.0335438038933,163.68437264186605,161.88034641876635,182.51092725421654,161.65981090727104,161.8983502787113,173.17311716940512,28.083080739474543,170.41942041480502,,161.2495591239797,160.33224510259458,163.2523143478431,161.26851272461516,184.28195423222616,161.02476862397302,161.28840849635577,173.8260172244092,5.217180978160901,125.9337486631749,,120.45040321602364,119.8840188152569,121.68452573965467,120.46209717309824,131.43320707729768,120.31168698851098,120.4743720784506,126.98733201038803,1.2765036699761156,7.746337291582046,,7.357417976709823,7.319706536540605,7.440198756448456,7.358197564489379,8.295951238828025,7.348173223057774,7.359015921759604,7.871505325882051,2.6360980623145474,85.20971020740248,,80.9567184725019,80.53765584267822,81.86579552809823,80.96535842411825,90.51753571960434,80.85419156040564,80.9744270678658,86.3145168951176,48.929411764705875,0.0,6.759872072655712,0.0,0.0,0.0,10.901178485665769,51.30954115076476,8.102248532900814,0.0,5.488445727828169,0.0,2.5509486016628857,0.0,-0.24133801282858802,0.0,0.0,29.271814370038676,374.3980508043544,63.75063721748964,125.27675397814677,200.87399032170205,242.15820283684639,266.1582028368465,266.1582028368465,1282.0,125.5982847734177,105.79754952174892,72.43864423334401,46.53,46.53,1.0,7.232010331664759,5.643856189774724,4.225849378260543,4.622058685594017,,4.63680660296154,4.637855656889304,4.63442354178275,4.636784629373844,4.606592626224365,4.637066309561257,4.636761550881619,4.621473551426662,0.19208406264820652,0.21009357661790987,,0.21076393649825184,0.21081162076769563,0.21065561553557954,0.2107629376988111,0.2093905739192893,0.2107757413436935,0.21076188867643725,0.2100669796103028,2.2296776372430083,2.319297569148838,,2.322483257541631,2.3227094768696985,2.321969180942503,2.322478518581902,2.3159458174516074,2.3225392657708217,2.3224735413074535,2.3191709651292634,248.44000000000017,141.96266156762127,127.1190281201375,,125.90237198006756,125.80855483834449,126.1079582059659,125.90431311839586,128.60588573104502,125.87935784477618,125.90635085784245,127.31226283139647,6.452848253073694,5.778137641824432,,5.722835090003071,5.718570674470204,5.732179918452996,5.722923323563449,5.845722078683864,5.721788992944372,5.723015948083748,5.786921037790749,5.744021436682091,5.633581237190137,,5.623964141428262,5.623218705802934,5.625595711621061,5.623979559115267,5.645209938857998,5.623781331219027,5.62399574381066,5.635100191464113,5.488445727828169,11.683670062951718,10.901178485665769,-0.24133801282858802,2.555923130826404,0.0,7.4797348329764,7.382385772580127,0.0,311.4885643167932,63.938896684719545,-104.4694748113586,-14.04797550979872,-2.0090283617568963,-6.145263224197565,166.64891788782717,272.28691504436307,7.537769019966398,5.236286827776212,7.779626144124655,907.0,48.0,3.081971074732466,2.4208656427342388,0.3966898981103606,0.2989701443179332,1.7455968662611212,1.3462599923008605,0.6943352503760556,0.43261205263853036,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.4643546638845758,0.39499795890482825,1.1494229651810635,0.9041891945781492,15.75071237662706,14.22996550267857,10.278440544667594,9.158677307952171,10.915182855470604,9.29041218175274,9.943956376784307,8.584583832143334,7.967364439707525,6.834654119472138,6.754091433736585,5.415052428133957,5.104497069602379,4.1264416616419695,3.879188977591539,3.0664970276022583,7.944681305366099,6.501022215704563,12.27128607407116,10.099275099772775,19.91235586136994,15.731935043218277,79.9355770251606,45.212710521607654,32.80796727614644,23.4576040647239,20.705669914327483,20.705669914327483,134.0,171.0,54.13978999999997,32.70021,0.3269230769230769,163.03,7.993055555555555,4.409722222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,52.0,0.0,0.0,55.0,0.0,1.0,1.0,54.0,1.0,25.0,54.0,0.0,0.0,0.0,19.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,3.0,1.0,1.0,22.0,3.0,0.0,0.0,3.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,3.295836866004329,5.517452896464707,3.8066624897703196,4.174387269895637,4.465908118654584,4.787491742782046,4.976733742420574,5.181783550292085,5.3471075307174685,5.497168225293202 +11561383,CNC(=O)c1c(-c2ccc(F)cc2)oc2cc(N(CCO)S(C)(=O)=O)c(C3CC3)cc12,0,29.074074074074073,6.512655555555553,3.574074074074074,8.97119341563786,163.02226207796903,115.89250298425505,1.5914475150282772,6.565240740740738,6.673755588578977,8.005957870370368,229.16113766871476,31.140350877192983,6.4530666666666665,4.315789473684211,7.2631578947368425,145.1696398366377,120.06723652342458,1.921749487649123,6.614668421052632,3.0682261208577,7.9113665263157875,277.95785402709635,24.357142857142858,6.459020408163265,3.9081632653061225,7.091836734693878,154.05579780153144,91.85298458847348,1.616598560413164,6.566019387755102,3.926288107835728,7.94219,231.42987756185548,22.28688524590164,6.429754098360656,3.622950819672131,5.860655737704918,158.00483459653927,83.39647855345571,1.5088828741322209,6.519804098360657,3.5609314916008903,7.955138245901642,215.84266695177604,24.248062015503876,6.548341085271318,3.6744186046511627,6.054263565891473,153.20911427828713,90.2131990983442,1.6009493360949227,6.653426356589147,3.758039046798736,8.051180930232558,228.03742114987762,21.72077922077922,6.361714285714287,3.279220779220779,5.015151515151515,154.58978371994792,80.18326401191688,1.4845616553089869,6.461768831168832,3.828513307679975,7.901081766233766,207.88837389898612,18.491329479768787,6.3637803468208105,2.878612716763006,4.244701348747591,157.6217993690026,66.33347765683234,1.3362165273467053,6.4418,3.626293441804039,7.924442358381505,184.13839445933758,15.188235294117646,6.210511176470589,2.511764705882353,3.378431372549019,162.39424514798037,53.27206306179763,1.1747611838068708,6.2694576470588235,3.2455700798838043,7.79909517647059,157.1190892974978,16.14388489208633,6.070976978417267,2.4964028776978417,3.105515587529976,164.54240331471595,58.30940834596834,1.177427723368791,6.134225179856116,3.220723421262989,7.673498446043165,154.31598720725427,10.296296296296294,0.19022469135802453,0.02031014463103239,0.7342249657064472,4.618046029568664,1.9052888967830084,47.526124691690626,0.2840992426650674,0.17183484224965692,2.9175234468642817,0.11994982887517144,49.66861644718102,1.8713450292397678,-0.01199642625081216,-0.010594225269099776,0.2670745794527471,0.9767846685758753,-0.16695605773250363,8.086776450630886,-0.012868391416231284,-0.005811255505017589,-0.38832181258374077,0.0002926665764204561,1.9074295178538685,0.02267573696145141,0.021672020660115927,0.0015692866820722446,0.0932504689118446,1.0270786869846247,0.037669515912367675,0.42300130561043925,-0.00012499498205811242,0.01934474958707768,0.4188564040015346,0.011047990663755183,2.8132338571001165,0.25318761384335176,-0.022841631248735023,-0.0014219094858672536,0.06738402032876842,-0.15558903705702595,0.27375482146844615,1.4885746552649581,0.050578360063153284,-0.018918691672850693,-0.2915268490470745,-0.017309442870314197,9.726922852906421,-1.281653746770025,-0.016243123743898837,0.001345568234047231,-0.06971161514658496,-0.5368580370972944,-0.025329639511590535,-6.053693704919567,-0.01946711470616891,-0.016396053848853034,-0.3047637246469812,-0.008814801886943025,-4.800228354966832,-0.47113997113997097,-0.003186379669712986,-0.0006855151426547609,-0.10736108884257031,-0.36832661318258025,-0.14027473569169696,-2.2125601289039265,-0.02547537854977438,-0.0026703160351308217,0.1393972011700508,-0.0017802250993177017,-3.677655419928794,-1.630700064226076,-0.004756740169842267,-1.4392082655225897e-05,-0.10662916181006522,-0.5438054434462531,-0.2128530897249469,-7.4945189876533265,-0.03858376226906895,-0.0067450327870152,-0.15266335699769848,-0.0032426485069419857,-8.32483409074623,-0.5732026143790855,-0.013396194625998574,0.0008145183661248042,-0.07071734043411607,-0.4463684696558093,-0.20136739973039305,-2.721119647551481,-0.011571416002118862,-0.01304599693375296,-0.28106295617509197,-0.008559699027676866,-5.183773272001243,1.7513988808952838,0.015286259880983989,-0.0020697640058478274,-0.11938350554124603,0.033610423047021915,0.011641634155074115,8.091956261341704,0.015031522263801875,0.01637592247189891,0.15926358030410842,0.009290608774708753,4.036502241880589,,,0.47050691244239634,1.2661290322580645,0.6290322580645161,0.03225806451612903,0.6370967741935484,-0.008064516129032258,0.9208933734448844,0.021757470769844724,0.032854244963393106,1.1169154606444494,0.24109715748233937,0.23437806730823835,2.0378088340893337,0.47547522479057774,2.0164097250446402,1.4703211607679227,0.1308910418786545,0.28946115563920044,0.05688616361985659,0.5460885642767175,8.261688352888898,1570.0,351.6833999999999,193.0,484.44444444444446,8803.202152210328,6258.1951611497725,85.93816581152697,354.52299999999985,360.38280178326477,432.3217249999999,12374.701434110597,1775.0,367.8248,246.0,414.0,8274.66947068835,6843.832481835201,109.53972079600001,377.03610000000003,174.88888888888889,450.9478919999999,15843.597679544493,2387.0,632.9839999999999,383.0,695.0,15097.46818455008,9001.5924896704,158.42665892049007,643.4698999999999,384.7762345679013,778.33462,22680.128001061836,2719.0,784.43,442.0,715.0,19276.58982077779,10174.370383521597,184.08371064413095,795.4161000000001,434.4336419753086,970.5268660000003,26332.80536811668,3128.0,844.736,474.0,781.0,19763.97574189904,11637.502683686402,206.52246435624502,858.292,484.78703703703695,1038.60234,29416.827328334213,3345.0,979.7040000000002,505.0,772.3333333333333,23806.82669287198,12348.222657835198,228.622494917584,995.1124000000001,589.5910493827162,1216.766592,32014.809580443864,3199.0,1100.9340000000002,498.0,734.3333333333333,27268.571290837448,11475.691634631996,231.16545923098002,1114.4314,627.3487654320987,1370.9285280000004,31855.9422414654,2582.0,1055.7869,427.0,574.3333333333333,27607.021675156662,9056.250720505597,199.70940124716802,1065.8078,551.7469135802468,1325.8461800000002,26710.245180574624,2244.0,843.8658000000001,347.0,431.66666666666663,22871.39406074552,8105.0077600896,163.66245354826196,852.6573000000001,447.6805555555555,1066.616284,21449.922221808345,555.9999999999999,10.272133333333324,1.096747810075749,39.64814814814815,249.3744855967078,102.88560042628245,2566.410733351294,15.341359103913641,9.279081481481473,157.5462661306712,6.477290759259258,2682.1052881477754,106.66666666666676,-0.6837962962962931,-0.6038708403386872,15.223251028806583,55.676726108824894,-9.516495290752706,460.9462576859605,-0.7334983107251831,-0.33124156378600256,-22.134343317273224,0.016681994855965998,108.7234825176705,2.2222222222222383,2.1238580246913608,0.15379009484307998,9.13854595336077,100.65371132449322,3.691612559412032,41.45412794982305,-0.012249508241695017,1.8957854595336125,41.047927592150394,1.082703085048008,275.6969179958114,30.888888888888914,-2.786679012345673,-0.17347295727580495,8.220850480109746,-18.981862520957165,33.39808821915043,181.60610794232488,6.1705599277047005,-2.3080803840877846,-35.566275583743085,-2.111752030178332,1186.6845880545834,-165.33333333333323,-2.09536296296295,0.17357830219209278,-8.992798353909459,-69.25468678555097,-3.267523496995179,-780.9264879346242,-2.511257797095789,-2.1150909465020415,-39.314520479460576,-1.1371094434156501,-619.2294577907213,-72.55555555555553,-0.49070246913579985,-0.10556933196883318,-16.53360768175583,-56.72229843011736,-21.60230929652133,-340.7342598512047,-3.9232082966652544,-0.4112286694101466,21.467168980187825,-0.27415466529492605,-566.3589346690343,-282.11111111111114,-0.8229160493827121,-0.0024898302993540803,-18.446844993141283,-94.07834171620179,-36.823584522415814,-1296.5517848640254,-6.6749908725489275,-1.1668906721536296,-26.410760760601836,-0.5609781917009635,-1440.1962976990976,-97.44444444444453,-2.2773530864197578,0.1384681222412167,-12.02194787379973,-75.88263984148757,-34.23245795416682,-462.5903400837518,-1.9671407203602065,-2.217819478738003,-47.780702549765635,-1.4551488347050674,-881.2414562402114,243.44444444444446,2.1247901234567745,-0.287697196812848,-16.594307270233198,4.671848803536046,1.618187147555302,1124.781920326497,2.0893815946684606,2.2762532235939483,22.13763766227107,1.2913946196845165,561.0738116214019,0.7205204624298212,0.5806454421396696,0.4335215284855268,0.3459154085243685,0.2785110346478176,0.18704328870364517,0.1637778637190289,0.09370715146215236,0.09912097926648981,0.04938650827555928,0.06355399253645681,0.02519805522792387,0.03860714019200941,0.013196121772208393,0.023863657564179373,0.007036375585507084,16.013332419850173,5.669800802536545,4.107726529471478,2.1689967615196273,0.44850846386824944,-0.5287872603727855,4.042821776822934,0.9682225523050362,7.004062079750146,0.6165074541283021,17.424773063746322,10.31810164111416,32.06664894891453,11.681314126454689,2.955945592974201,0.5458506951903919,3.9886804245323586,2.218811488014905,8.001922316445128,0.29790524760607207,4.0099701921382325,2.4147724997137967,24.442364933216027,13.304118233349254,0.2900302450050109,0.6422654361855267,0.8234739135660402,0.8769276433896619,0.8891388179616736,0.8891388179616736,1.578553608656212,1247.137052213801,0.0,1.0,2.0,0.0,10.0,2.0,4.0,1.0,0.0,3.9955381680327524,1.858848082313799,0.7596212964565545,0.4353662037838326,0.3612921297097591,0.3612921297097591,149.1950706646311,1815.8197289634363,78.03590417031133,33.62629127710067,71.5890964946441,,13.0,661.0,15.840511994453479,22.709276610916287,30.736971564812833,27.78353361418459,24.660863921060418,35.61835624781986,12.13273413692322,0.0,5.316788604006331,4.417150937053347,14.585714285714287,39.25,19.5,1.0,19.75,0.0,0.029493087557603638,-0.25,0.19847655537310716,0.0702069716775604,-0.12826958369554675,0.03600055858120366,0.18771134020618518,0.0,0.6410052910052905,0.8940092165898613,0.4425287356321833,0.5707983193277301,0.8580086580086577,28.547694576791418,0.6744815938651865,1.0184815938651863,34.62437927997793,7.474011881952521,7.265720086555389,63.172073856769345,14.73973196850791,0.5262886597938148,0.17956252040483184,0.057133529219719224,0.3702252693437806,0.3181818181818182,0.38992324174262405,-1.0447755611643748,-0.07551648674110904,-0.01934769557711805,-0.061457385950845565,0.6100767582573758,1.6346634907247088,0.039633957847774876,0.030271546124531645,0.044180094343911055,-5.9244163778991785,0.792692162059826,0.671842026699386,1.506706630034376,0.8325425895425158,0.5178649286670917,1.166860953684354,0.7804514462931863,1.2257878649461862,0.6353645169053673,0.6905340932889056,0.6268734459917495,0.9504566078754377,0.9537237556893263,0.6671587239924464,0.956525667794453,1.0844112516561972,0.6768727128463188,0.9934745475235569,0.9355953070080814,1.0496497271271819,0.6650222245034162,0.5702656772969058,0.6949628291411263,0.9100859445741972,0.9301878169595473,1.0642035718260305,1.1136499632207622,1.101182226782337,1.0550131097763873,0.8730772512031733,0.9196728236667198,0.8249443677762707,1.047452415508225,1.0199385943159929,1.0985684393815025,0.7681450035481397,1.1117408398862307,0.9960629163631692,1.0484898427123905,1.2745837089818928,1.0915821920594508,1.0174187983980965,1.0994534781783258,1.139976418402157,0.9932594812652985,1.0113570451819356,1.0269984918580388,1.0487562251177662,1.003375221900402,0.8161718094278358,1.0499728596750917,1.2542961475703185,0.9994820025349086,0.9412199096997194,0.9932537449692848,1.1148414318738469,0.8184839804038428,0.775971268123021,0.8574994368797817,1.0513464277500117,1.0945700087328982,0.9362971413089635,1.1421353544073827,1.1049506875129929,1.0700298775575303,0.9530750581553595,1.0901282751736943,1.1022243228121122,0.9529811342882942,0.9361867602497486,0.9864007133383947,1.1357588184425438,0.8996878967414305,0.9901451156259813,0.9921401780167801,0.9632524658625711,1.0746745184756632,0.9255568471289828,0.9146710008770145,0.8881106749303511,1.0069014489075907,0.9640645306087774,1.0065897158292,1.0783381740704945,0.794821696599555,0.7662641255487715,0.9754062435637342,1.1444191680751614,0.9299751327358194,0.8972743347983614,0.8011140768661524,0.8806584154534806,0.7705386208485454,0.764454199741286,0.7349172022381285,0.9340807671142934,7.5,0.15345168860320374,4.055555555555557,2.916666666666667,2.7166666666666672,1.760833333333333,1.2352834467120182,1.018388605442177,0.5500362181909798,0.28532407407407406,7107.001830187339,7818.65617286706,3394.6988055204565,3155.8123806304848,13.26740721843878,0.44522066521971326,7.360483350904641,0.8025184741173483,1.0,0.3181818181818182,1.7593493341307158,3.8960394198496693,4.995266205706914,5.319521298379636,5.393595372453709,5.393595372453709,0.2205882352941176,0.00697507675469108,0.08449074074074078,0.054012345679012336,0.04604519774011301,0.028400537634408602,0.021671639416000317,0.023683455940515737,0.015278783838638335,0.00864618406285073,0.5097921971010886,24.134948096885815,9.700115340253749,5.23947427043885,179.0699598844092,1.0,4.392361133644018,166.26989526679597,,119.04546977078786,123.1251318586957,124.10716753722545,118.97496568588848,159.84540710541611,124.01381923890574,124.34914927676978,149.09050062125047,0.1817493373722077,-0.06306450632233394,-0.5216223449690549,0.36375033801224216,0.2115147104038522,-0.08762768628652651,0.17015434149304334,-0.04529540908140396,-0.03381884272675318,-0.13309980867543816,0.002439908244679751,0.038403113561302465,0.002202319776831612,0.11392853632931761,0.07726615002408654,0.12700530936335303,0.2224054676823038,0.019771025788252322,0.00890039548468373,-0.0004399694307016246,0.11257757352244029,0.14356573704719197,0.09210509733409065,0.05664006888719735,0.024590163934426253,-0.12007711031447792,-0.07000981586781424,0.09177571381536137,-0.03369153015383832,0.14368152878582793,0.031321187345309004,0.1780306050403011,-0.11009811179832749,-0.0999227099135755,-0.1443056904093433,0.19583639627349594,-0.12447716245608159,-0.0853891449524154,0.06625104146187628,-0.0949458522967967,-0.11625220572940852,-0.013294382575974937,-0.12737612721825778,-0.06852223372210547,-0.09541751622777057,-0.10445973449657707,-0.07348740694008285,-0.09664509902488479,-0.04575819863589647,-0.016750610275486567,-0.033752351601048905,-0.1462236969009505,-0.07975810782834117,-0.07362386666323639,-0.046554608507576596,-0.0896707020785973,-0.015540015052658236,0.047779290795374144,-0.014841414248038103,-0.07404384665797394,-0.1583773443672808,-0.025005902945004866,-0.0007086154686085231,-0.14522682664089218,-0.1177566096059562,-0.11171696328275436,-0.15769261719257435,-0.13581085928678954,-0.03925299839490887,-0.05232635136549774,-0.0270333733474228,-0.16760752938626924,-0.05567075751163781,-0.07042300623732076,0.04010401604330679,-0.09631563040909968,-0.09665743190903213,-0.10568864389562786,-0.05725523941208773,-0.040730189540704724,-0.07592172089754985,-0.09633614306585093,-0.07136066060239832,-0.10436717675665097,0.17009989130997366,0.08035896797547437,-0.10190789102926338,-0.1625979926007816,0.007278061507360335,0.006110167426436208,0.17026333019650738,0.05290940631447919,0.09530036084362051,0.054588620521724675,0.07745412279309909,0.08126866682854185,9.456252691866643,26.618044629092125,15.143308322259815,19.862171140820216,40.21130313593648,45.85595487606047,46.590322527993095,46.66498919465976,46.66498919465976,62.50870147638385,45.579955983805604,4.0576222982382895,8.973295824815214,1.7634710722155544,16.92874549257824,8685.222612806298,7336.518481861781,2361.488907668904,259.0,51.0,67.0,94.0,127.0,155.0,193.0,236.0,261.0,446.13117105600054,34.0,5.14166355650266,6.023447592961033,6.951772164398911,7.8636512654486515,8.799510901368867,9.723942138688924,10.663755853950228,11.594827980589862,12.536947100910524,0.722222222222222,1.005777777777778,1.1272511471801454,0.6884019944680341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6846666555777335,0.9915758896151051,1.0226524776779695,0.651010218543396,6.0,0.0,0.0,1.0,0.0,2.0,6.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,4.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14.840466935900384,17.16048840156258,0.0,10.023291153407584,5.907179729351506,9.099753175368056,12.808212032003757,0.0,0.0,0.0,54.65483612601846,24.06371475730059,30.658245320317455,264.2457251037129,-708.0303151376362,-51.17650516806301,-13.111672502548817,-41.64884206691977,413.440795768344,1107.7894138258,26.859399002248317,20.514618774551852,29.94025442772433,0.46153846153846156,0.696328934186223,0.16986113048599624,70.33404052074823,0.09520387461838127,55.0859390538143,0.30367106581377695,7.0,0.20588235294117646,0.3057139402758635,0.676996625630824,0.868004144968779,0.9243484423248651,0.9372199492042309,0.9372199492042309,3.234200000000002,,2.494047619047619,2.16556067196202,1.582972798553551,2.524475927808253,-8.021901694888468,1.986897461604227,1.907856091478482,-3.022702436906225,116.24880000000005,27.126427547969634,0.0,5.316788604006331,0.0,18.75954929201341,30.760295527910323,53.34232623520955,0.0,11.323698910571437,4.23410650459726,1.9459101490553132,5.60947179518496,3.9318256327243257,7.1785454837637,5.8998973535824915,8.837681215593197,7.855932199718614,10.547418228056287,38.999999999999986,9.027153186419962,0.0,0.0,6.017591883975812,0.0,0.8941567460317463,1.942441413646546,0.0,54.31200000000001,0.0,37.57797366896823,0.0,0.0,-3.6475268985897578,0.0,0.0,-0.3584265689300412,60.871561947727855,9.622004595302565,10.077801322358383,0.0,45.88658364513523,10.023291153407584,5.817220841045895,34.68098945947923,40.815353347823006,0.0,22.292943266678478,0.0,37.17370770127384,36.971999401197614,39.457740631125866,332.53979053359194,,238.68612320748213,246.1105501256519,248.11220779712488,238.54151638460533,322.7413084078431,247.89945154480478,248.57521106376674,299.15606654472873,39.457740631125866,332.5397905335919,,236.51388818444076,244.08470304542936,246.6313622758974,236.34277928619167,327.71271590572076,246.0407410162073,246.79044246206115,301.2037036794071,5.019008971669982,233.59398582584032,,164.63441811909695,168.8819108748241,170.70446638342537,164.56238229099083,220.52385410209084,170.21226195784112,170.7562797892103,206.84470036421249,1.272830342939544,10.727090017212642,,7.699552361531682,7.939050004053287,8.003619606358868,7.69488762530985,10.411009948640102,7.996756501445315,8.018555195605378,9.650195694991249,2.5706888318870633,166.26989526679597,,119.04546977078786,123.1251318586957,124.10716753722545,118.97496568588848,159.84540710541611,124.01381923890574,124.34914927676978,149.09050062125047,53.545098039215674,0.0,2.601183844776294,0.0,13.414243664969609,0.0,9.430615347772184,55.22323379461035,1.3988128658925918,2.61494804691594,0.0,0.0,0.1704182995001895,1.1664144986507,0.0,0.0,0.0,35.15455180134339,471.892732791209,95.00486404305866,210.38612867188215,269.74437510817336,287.2541501125003,291.25415011250027,291.25415011250027,1508.0,144.29951855481966,205.79378808084795,87.04078856227613,108.22999999999999,99.85,0.8571428571428571,9.685768956770527,6.087462841250339,4.629021966681145,5.471356790780623,,5.45441256042167,5.459430643109052,5.459989214533803,5.454742736417237,5.420368067322086,5.4590220334468995,5.458447699158203,5.4422923845155,0.14932328924777885,0.17649538034776205,,0.1759487922716668,0.1761106659067436,0.1761286843398001,0.17595944311023345,0.1748505828168415,0.1760974849499,0.17607895803736137,0.1755578188553387,2.6637477189774827,2.830928739357854,,2.8278270366953318,2.8287466179917495,2.828848925885854,2.827887568603932,2.821565833736953,2.828671770451636,2.828566556642339,2.8256024778097535,310.42000000000087,316.55880663593103,208.11550294941142,,208.81465319606284,209.56521827364406,209.6219141220107,208.775949549242,214.09658618044,209.61543495771116,209.62398555799754,212.09024508057945,10.211574407610678,6.713403320948755,,6.735956554711704,6.760168331407873,6.761997229742281,6.7347080499755485,6.906341489691613,6.761788224442295,6.762064050257985,6.84162080905095,6.888911138773228,6.469495339710362,,6.472849143179277,6.476437106816932,6.476707610581626,6.47266377671424,6.497829361982689,6.476676701292107,6.476717492304923,6.488413979927594,45.43382198156161,12.742401735002744,12.602761996351012,2.410169451268163,-0.3187781626826096,9.027153186419962,2.9087278696814303,-0.42105183320100337,-2.1352062244012986,376.37186588071535,179.0757661008492,-479.82260093757077,-34.68162773773546,-8.885603721066126,-28.22485887868063,280.1832544708237,750.7339537145018,18.20225266254806,13.902480624342626,20.2901068571487,2480.0,54.0,3.1636960940354535,1.6704784575590708,0.28867513459481287,0.09128709291752768,0.8306348762703712,0.38705208941472813,0.11785113019775792,0.032274861218395144,0.28867513459481287,0.28867513459481287,0.16666666666666666,0.14433756729740643,0.2926435951945342,0.18101763513602798,0.6004015431127898,0.2608642730329372,1.017339787235671,0.35705929031032024,22.336134335324456,18.00000870632976,14.739731968507911,11.761123889828529,14.2040627670387,9.539207723885903,10.973116869174936,6.278379147964208,9.317372051050043,4.642331777902572,8.071357052130015,3.2001530139463314,5.984106729761459,2.045398874692301,4.605685909886619,1.3580204880028672,5.881985246021824,2.944103671890461,9.636162286008942,4.127588269595651,16.048952583088525,5.758552948846369,99.57362997630003,46.389240136050766,30.073630104691993,27.765359270156733,27.357227788354734,27.357227788354734,170.0,206.0,61.74323899999998,35.726761,0.3333333333333333,226.09,11.284722222222221,6.722222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,15.0,16.0,54.0,0.0,0.0,57.0,16.0,3.0,10.0,47.0,19.0,34.0,38.0,0.0,0.0,0.0,22.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,5.0,2.0,1.0,31.0,9.0,0.0,2.0,5.0,0.0,4.0,7.0,1.0,0.0,1.0,1.0,3.0,3.828641396489095,8.593303900057327,4.5081084731449605,5.068117729509618,5.745204289248424,6.376088989344295,6.87288882228012,7.41198576505901,7.942063741191947,8.3037727251492 +123631,COc1cc2ncnc(Nc3ccc(F)c(Cl)c3)c2cc1OCCCN1CCOCC1,0,28.618181818181817,6.416881818181816,3.3454545454545452,8.35645342312009,165.4641268884796,115.79138583908679,1.5247049221159268,6.500149090909088,4.014237713208907,7.928578272727269,224.85137623095687,27.224137931034484,6.524206896551724,3.9827586206896552,7.553639846743295,148.45093184175866,104.58928508336554,1.7740710591379314,6.670129310344827,3.131101887327941,7.928264241379307,264.94808369371975,22.712871287128714,6.530265346534654,3.5445544554455446,5.915291529152915,159.21464370626174,85.43797663040002,1.4921744554701972,6.625992079207919,3.041152263374485,8.015363287128713,218.69499179729567,20.761904761904763,6.4068571428571435,3.1587301587301586,4.943562610229277,161.58868428173272,77.31975305187301,1.382596503344706,6.505142857142859,2.946567378666144,7.939171492063493,196.06442719984923,17.265151515151516,6.157136363636363,2.8333333333333335,4.033670033670034,161.55994384572665,62.40820463398786,1.295980407102477,6.249868939393941,2.6179386457164235,7.7147380909090915,175.66358398696138,15.874074074074073,6.060325925925923,2.7333333333333334,3.8748971193415636,162.97108348526547,57.15626229349926,1.2315050726793701,6.142674074074074,2.5346974546563024,7.652480222222225,165.65782152286494,17.524193548387096,6.199105645161293,2.8548387096774195,3.9596774193548385,161.7596942790559,63.88845971178064,1.2806159275985889,6.281912096774194,2.6810201778839775,7.766287612903228,176.53966846985648,18.352941176470587,6.270151260504204,2.899159663865546,4.140989729225024,163.11150386524605,67.3153331298958,1.3065357693838486,6.352852100840336,2.829252688729812,7.83086805042017,179.34652335013342,19.272727272727273,6.259100909090909,2.918181818181818,4.003030303030303,162.68968701190101,70.78847665005091,1.329399261949391,6.368289999999999,2.7815282454171335,7.822739909090908,183.47187160752526,10.517024793388424,0.165972694214876,0.02258769224367037,0.5474380165289257,4.372598714416898,1.8706263359754478,49.76618681926282,0.24220912631261363,0.15707788429752054,1.205321905927966,0.10557268958677685,49.24734892235575,0.4325049871758331,-0.0029683995440295,-0.00789441929975936,0.1763864348817328,1.186799869119618,-0.4517142664981298,2.005931038135347,-0.031024620098574606,0.00013669250498726367,-0.008148884382871743,-0.005810609022513621,-1.9344844233457161,0.03779068815972464,-0.024954836429097287,-0.002898015396536155,-0.0005433270599786825,-0.09163061760721533,0.03836345196098728,0.4073626247226573,0.026824175660291237,-0.021644040913182127,-0.02181009795704597,-0.018033374915309864,4.300067780930395,0.09942542306178655,-0.008432622064803792,0.00018523310464852428,-0.03055489964580872,-0.07200191752380306,-0.08091125017439983,0.6371249915580824,0.003552314758305793,-0.0047629059425422495,-0.0002654516031080072,-0.0012879981004854614,0.35642862121377256,-0.08823691460055108,0.0020296611570247438,0.00017833501153544573,-0.007768595041322313,0.25545964697479845,-0.09455389394421582,-0.5675392172028123,-0.020115943848047015,0.0021208622589531417,-0.012092882938374893,0.002030344986225979,-3.7385992152399248,0.7582614018977656,0.019415238445056503,0.0014595023081912656,0.042326293235384144,0.579659671915564,0.11377209340295714,3.6673827417037104,0.01507612096929957,0.01726625038261394,0.11450330857031613,0.00854623351086637,4.5099945338890635,0.5596614236203681,-0.004721609170887787,-0.000846325793764719,0.0006558251133031247,-0.17802031392451728,-0.048003741181559687,2.6579023488690345,0.011115661707476625,-0.002272415089309535,-0.05420393498887519,-0.00269638108237799,1.9294244531217526,0.37984304465587904,-0.0006485383707201796,0.0009486295638170106,-0.023832210570178477,-0.3006768817107497,0.05740071514007655,1.942804037666377,0.027654005804373757,-0.0011437055351065997,0.015830355117782774,-0.00026176124453087613,2.500377127002752,-0.29818181818181816,-0.013400694214876014,-0.0016532157814731336,-0.06231404958677685,-0.37598408325681054,-0.21610129390402277,-1.3295548057527546,-0.02337414173024412,-0.010269801652892555,-0.019957562909302527,-0.009495654049586784,-2.5997991790492216,,,0.4709677419354839,1.282258064516129,0.5967741935483871,0.08064516129032258,0.6854838709677419,-0.08870967741935484,0.8395921255429603,0.008995224889944847,0.020091999083493232,0.9891524666244372,0.2574731057439252,0.23076436492655245,1.8287445921673975,0.4882374706704776,2.058714264178775,1.481326599964532,0.2714453869434179,0.19246577221990951,0.11347650505091526,0.5773876642142427,8.111856300509103,1574.0,352.9284999999999,184.0,459.60493827160496,9100.526978866377,6368.526221149773,83.85877071637597,357.5081999999998,220.78307422648987,436.0718049999998,12366.825692702629,1579.0,378.404,231.0,438.1111111111111,8610.154046822003,6066.178534835201,102.89612143000002,386.8675,181.6039094650206,459.8393259999998,15366.988854235746,2294.0,659.5568000000001,358.0,597.4444444444445,16080.679014332436,8629.235639670402,150.7096200024899,669.2251999999999,307.156378600823,809.551692,22088.194171526862,2616.0,807.2640000000001,398.0,622.8888888888889,20360.174219498324,9742.288884536,174.20715942143298,819.6480000000003,371.26748971193416,1000.3356080000001,24704.117827181002,2279.0,812.742,374.0,532.4444444444445,21325.912587635918,8237.883011686397,171.06941373752696,824.9827000000001,345.5679012345679,1018.3454280000001,23187.593086278903,2143.0,818.1439999999997,369.0,523.1111111111111,22001.09627051084,7716.0954096224,166.25318481171496,829.2610000000001,342.18415637860085,1033.0848300000005,22363.805905586767,2173.0,768.6891000000003,354.0,491.0,20058.202090602932,7922.1690042608,158.79637502222502,778.9571000000001,332.4465020576132,963.0196640000003,21890.918890262205,2184.0,746.1480000000003,345.0,492.7777777777778,19410.26895996428,8010.524642457601,155.47775655667797,755.9893999999999,336.6810699588477,931.8732980000002,21342.236278665878,2120.0,688.5011000000001,321.0,440.33333333333337,17895.86557130911,7786.7324315056,146.23391881443303,700.5118999999999,305.9681069958847,860.5013899999999,20181.90587682778,578.4363636363634,9.12849818181818,1.2423230734018704,30.10909090909091,240.49292929292938,102.88444847864963,2737.1402750594552,13.321501947193749,8.63928363636363,66.29270482603813,5.806497927272726,2708.604190729566,25.08528925619832,-0.172167173553711,-0.4578763193860429,10.230413223140502,68.83439240893784,-26.199427456891527,116.3440002118501,-1.799427965717327,0.007928165289261293,-0.47263529420656114,-0.33701532330579,-112.20009655405154,3.816859504132189,-2.520438479338826,-0.29269955505015166,-0.05487603305784694,-9.254692378328748,3.8747086480597153,41.14362509698839,2.709241741689415,-2.1860481322313947,-2.202819893661643,-1.8213708664462962,434.3068458739699,12.527603305785105,-1.0625103801652778,0.02333937118571406,-3.8499173553718986,-9.072241607999185,-10.194817521974379,80.27774893631839,0.44759165954652996,-0.6001261487603234,-0.03344690199160891,-0.16228776066116812,44.91000627293534,-11.647272727272743,0.2679152727272662,0.023540221522678838,-1.0254545454545454,33.7206734006734,-12.481114000636488,-74.91517667077123,-2.655304587942206,0.2799538181818147,-1.5962605478654859,0.2680055381818292,-493.4950964116701,102.36528925619835,2.621057190082628,0.19703281160582087,5.714049586776859,78.25405570860114,15.359232609399214,495.0966701300009,2.035276330855442,2.330943801652882,15.457946656992677,1.15374152396696,608.8492620750236,69.39801652892564,-0.5854795371900856,-0.10494439842682515,0.08132231404958745,-22.074518926640142,-5.952463906513401,329.5798912597603,1.3783420517271014,-0.28177947107438234,-6.721287938620524,-0.3343512542148708,239.24863218709731,45.201322314049605,-0.07717606611570138,0.11288691809422427,-2.836033057851239,-35.78054892357921,6.8306851016691095,231.19368048229887,3.2908266907204773,-0.13610095867768537,1.8838122590161501,-0.031149588099174258,297.5448781133275,-32.8,-1.4740763636363616,-0.18185373596204468,-6.854545454545454,-41.35824915824916,-23.771142329442505,-146.251028632803,-2.5711555903268533,-1.129678181818181,-2.195331920023278,-1.0445219454545462,-285.9779096954144,0.6977800408145494,0.5803900849474826,0.4451576938466119,0.3086317651137427,0.2863602295735361,0.16433931570242144,0.1872863363013671,0.08954454527509968,0.11867121036815358,0.047660107020644916,0.07660689583488438,0.024694344264852428,0.04967029398886855,0.012775329441058919,0.03236950242228307,0.006766557667437844,17.00110375603821,5.680124840473157,4.107725354299275,2.1764597884522745,0.4421767656655844,-0.5265275272509444,3.2445593300814064,0.9877907412807796,7.004064741561454,0.7740000317115823,17.42477336255851,10.943787205099207,35.450517711849294,11.693853529263185,2.2079122473897006,0.5458522899690842,3.988680543525318,2.2253411662119693,8.001919249133586,1.3000325825642631,4.009967665658507,2.4207558251424475,22.45586738804077,13.304118747666928,0.29200099734025886,0.619232605209883,0.7898850377969525,0.8639707864238886,0.8639707864238886,0.8639707864238886,1.2712457408594116,1046.6849035998564,0.0,1.0,6.0,0.0,11.0,1.0,1.0,0.0,0.0,4.016390602354396,2.0384737960790282,1.0069832360955306,0.5591797727666092,0.5591797727666092,0.5591797727666092,245.61010918367344,2024.9091489034586,74.4866329398082,36.81652998006288,80.69705091381863,,17.0,866.0,5.817220841045895,4.39041504767482,5.022633313741326,35.12785540121558,44.655078984154365,18.460054211687762,13.176164609739143,12.13273413692322,20.184655376751227,25.811528751632665,14.600000000000001,39.75,18.5,2.5,21.25,0.0,0.029032258064516082,-2.75,0.1865621734587254,0.05894165535956619,-0.1276205180991592,0.01824596774193543,0.18115328467153258,0.0,0.6290909090909087,0.8838709677419352,0.4425287356321833,0.5701492537313425,0.8656249999999998,26.027355891831768,0.2788519715882902,0.6228519715882902,30.663726465357556,7.98166627806168,7.1536953127231255,56.69108235718932,15.135361590784806,0.5328467153284674,0.10273972602739725,0.0,0.3013698630136986,0.36363636363636365,0.32870938193495874,-0.9283996676180906,-0.05825387315528793,-0.016879993956692558,-0.06631426197272075,0.6712906180650416,1.895978700145663,0.045641373145850456,0.034472340002648406,0.046243382930382014,-7.030902105433448,0.6229040348751258,0.7353577702776627,1.3537956734806067,0.7266679160419789,0.5311170080260093,1.3452705329554528,0.6263809153425901,1.1279811462816491,0.6926005286604591,0.5935099128755764,0.7828732874145301,0.9907709912948712,0.797677963559228,1.143488606281046,1.407342134176388,1.1275828669823504,1.045240448576963,0.9801804212760101,0.7918616003181428,0.8235937958568198,1.0970216498306782,0.7608159942915,1.1739717161727126,0.83255060370999,0.9091011145138264,1.0521281604820385,1.1446507035917293,1.1173654244306417,1.0136698155623929,1.0555598651803035,0.9049773198266722,0.9486505460693359,1.016388834788551,0.9080852159028059,1.0188293115421658,0.9425611885019529,0.8649493933488407,0.8118339788641921,0.967999201790612,0.9578804347826085,0.8385554920869591,0.9843361882830147,0.8703093297505371,1.0442655219528016,0.8141726186893444,0.7462327963142298,0.7831671497649344,1.0654132448940163,0.8104608034198785,0.6692689069236518,0.9223763032571874,0.8834541062801932,0.8013479609780135,0.7363777172990131,0.8088031007957408,0.8941577495244243,0.693075983151802,0.4477878968921316,0.7069607621349955,0.9158421059176546,0.7762027064570887,0.9348724490749839,1.1516816855794052,0.9762885694249648,1.030533505637926,0.8947923497298887,0.776973644996281,0.9021022891421173,0.911910286142575,0.7515453639659013,0.9342134733736223,0.9414989524821645,0.8578473194772349,0.9265699864870999,1.127498664392264,1.077594081110705,1.0814273459795527,0.8603622909842765,0.853725012730843,0.8296157173472035,0.9256518531123299,0.7013904368522114,0.9289298506017525,0.9142890751196163,1.047274784685988,0.9524046970586016,1.0964241090094404,1.1739130434782608,1.0424296898625713,1.0901497152005277,1.0431392490603812,1.0767607750771202,0.9537864671439515,0.8338278299597521,0.9648883132453996,1.026291199273114,5.5,0.17743087440057137,3.1111111111111125,1.5625,1.7822222222222224,0.7361111111111112,0.6253061224489795,0.53125,0.3199798437893675,0.28375000000000006,6427.941175593205,7137.242682533397,3136.544366013083,2894.084434049364,15.78914152499047,0.4329303310698832,8.953543257267105,0.7634517499175849,1.0,0.36363636363636365,1.764969111170264,3.7428859174456317,4.774376477429129,5.222179940758051,5.222179940758051,5.222179940758051,0.16176470588235292,0.0061183060138128055,0.06763285024154593,0.03255208333333333,0.04346883468834689,0.01840277777777778,0.015632653061224487,0.013621794871794872,0.008648103886199122,0.008345588235294119,0.3761876979916823,24.134948096885815,11.9234404536862,6.533333333333333,184.64229675297287,1.0,4.359596337957702,202.75377595891715,,155.98549324238124,153.51692092679005,155.56848762623352,155.92017588339692,244.0913128268315,155.64720111266837,157.16064009115632,206.1219805468932,0.041124271899380636,-0.017884866893746215,-0.34950092353819684,0.32220348159253726,0.2714175131613654,-0.24147755102709012,0.040307107422562626,-0.1280902192699868,0.0008702212001299622,-0.006760753573625623,-0.05503894089709172,-0.03928098599572657,0.0035932869706156753,-0.1503550722433269,-0.12830064113115627,-0.0009924905534030885,-0.020955642992141026,0.020508345907031433,0.008185530191454831,0.11074799727269527,-0.13779177769027143,-0.018094832467393497,-0.1708147721337259,0.0873157210494713,0.009453759500908545,-0.05080728552786234,0.008200621057267644,-0.05581435472739817,-0.01646661910373927,-0.043253560916113286,0.012802367074494699,0.014666312588572341,-0.030321938469204553,-0.0002202329533732638,-0.012200106917109228,0.007237518953065358,-0.008389912197984132,0.012228886002157978,0.007895229384729181,-0.014190821256038646,0.05842284272108536,-0.05054664960381315,-0.011404112982655461,-0.08305196486313997,0.01350197876956393,-0.010032907291322059,0.019231725498071263,-0.0759147303773502,0.0720984705079758,0.11697850985006382,0.0646149368623638,0.07731705135086776,0.1325664003889421,0.060820320560509,0.07369225926476226,0.06224423166384398,0.1099215873694225,0.09499811461748976,0.08095117728190189,0.09157842264767595,0.05321480500570863,-0.028448108245895984,-0.03746844895152494,0.0011979897148200194,-0.04071270325757687,-0.025661854673145017,0.053407795910138924,0.04589282772578066,-0.01446680479223519,-0.04497050515907125,-0.025540517087628656,0.03917823995284939,0.03611696768982318,-0.003907500410161154,0.04199763099228697,-0.043534080298786165,-0.06876388650058095,0.03068529189189708,0.03903863570504427,0.11417408677112101,-0.007281136617172105,0.013133715599066568,-0.0024794409004396736,0.05077181171609647,-0.028352297730558886,-0.08074035478105121,-0.07319099993211592,-0.11382850241545892,-0.08598641398698517,-0.11552349592647836,-0.026716027301455385,-0.09650396781529887,-0.06538031562381225,-0.016557869570898893,-0.08994422787516186,-0.05279064225666465,14.380508693633756,20.22792362624105,8.442719658568311,20.115081487905265,39.279482796433584,44.761860344766724,45.61335532671137,45.61335532671137,45.61335532671137,63.820142189542025,45.92112459890049,8.414806995245955,5.966438938817195,3.517771656578373,17.899017590641524,12738.046108837965,9542.954780765805,3434.5886901202302,157.0,46.0,60.0,76.0,99.0,103.0,116.0,133.0,151.0,446.15209652800064,34.0,5.081404364984463,5.921578419643816,6.78332520060396,7.641564441260972,8.51057131510735,9.377125189621008,10.251076342113603,11.123033464099866,12.000922487796197,0.7090909090909089,1.0000727272727274,1.1358815920454242,0.6765122928224886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6781277299945565,0.9876648841354723,1.0185592266437136,0.6439199230242588,6.0,2.0,0.0,0.0,0.0,2.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,7.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,19.527377465406477,17.962403693645463,11.49902366656781,0.0,0.0,4.899909730850478,14.358372089569237,0.0,0.0,11.600939890232516,30.68628989677245,36.77424677534769,37.46977746617387,235.66482536739716,-665.6066348104989,-41.76451783427299,-12.101938814736345,-47.54333105789278,481.2749345510706,1359.3025140929597,32.72211510553522,24.714591165326535,33.15371985592584,0.47058823529411764,0.8370667434891389,0.17447590191101242,85.77238406318331,0.05951127878268199,80.03159043457232,0.16293325651086113,9.0,0.23529411764705882,0.3052861608042434,0.6474058185118093,0.825822421369174,0.9032788478014111,0.9032788478014111,0.9032788478014111,4.275600000000003,,2.3018207282913163,2.1066655432054584,1.905765005577476,2.3467711914201588,-7.083869779479842,1.9732340898985428,1.8298205457670251,-2.93765298271089,118.15370000000003,18.60100390907497,0.0,14.867866772744895,0.0,6.4208216229260096,51.881501256560334,47.49900957185981,0.0,11.49902366656781,4.23410650459726,0.0,5.53338948872752,0.0,7.036148493750536,0.0,8.634264863002075,0.0,10.282574461584227,38.999999999999986,9.546442220118164,8.66584053896288,0.0,0.0,0.0,1.4538445136880385,1.9681413270889452,0.0,55.00400000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.47348756249833,14.790514511606428,15.89566410019341,11.49902366656781,61.4325794252989,4.736862953800049,5.817220841045895,6.4208216229260096,36.65915541707259,5.022633313741326,10.902924932081056,0.0,37.20817610523687,37.29702514970061,40.9507051399987,405.50755191783435,,311.878449094344,307.0227574266892,311.13026688351124,311.7414369765908,490.52182554084527,311.26670814141346,314.2864058731822,413.22418234484917,40.9507051399987,405.50755191783446,,309.8736374922838,305.18791969551035,309.47040703994367,309.6974749711603,495.2664954331431,309.5480849018245,312.6926912042884,415.18161407649734,4.891617347922202,300.1034749524689,,233.29386857867422,229.1352786566191,232.82312745691257,233.25388957045942,365.61916521215693,232.36221681342892,234.53698398559794,307.5641946934812,1.320990488387055,13.080888771543043,,10.060595132075612,9.903959916989974,10.036460222048749,10.05617538634164,15.823284694865977,10.04086155294882,10.138271157199426,13.329812333704812,2.445808673961101,202.75377595891715,,155.98549324238124,153.51692092679005,155.56848762623352,155.92017588339692,244.0913128268315,155.64720111266837,157.16064009115632,206.1219805468932,54.32156862745097,0.0,1.5998250826202733,5.895463515763117,13.468244022471676,0.0,0.0,56.020757465404245,5.89914974891123,3.172830130054052,16.905443165670313,0.0,0.0,2.369220179095755,0.0,0.0,0.0,35.415595766334235,600.1264301128367,97.07330111436451,205.85872545950974,262.5907062586021,287.21989674169276,287.21989674169276,287.21989674169276,1006.0,141.69060122523126,116.81332980563087,66.72048381166162,68.74000000000001,68.74000000000001,0.8888888888888888,9.062450812084462,6.087462841250339,4.2479366669261385,5.473649544517965,,5.462190416110737,5.4608266077964425,5.460756684734912,5.462421330606653,5.445905181468068,5.460967697660527,5.460751133191179,5.454350805654782,0.1370302150621335,0.1765693401457408,,0.17619969084228182,0.1761556970256917,0.1761534414430617,0.1762071396969888,0.17567436069251832,0.1761602483116299,0.17615326236100579,0.17594680018241232,2.577835486403907,2.8313476982329138,,2.829251995910551,2.8290022831584065,2.8289894785934164,2.8292942700894974,2.826266094916857,2.829028119547583,2.828988461967539,2.8278157146481266,314.53000000000105,1016.366834159326,203.2412941524858,,203.99269011017643,204.30438811642827,204.4006580519969,203.95330164235412,206.78970613881003,204.29902572139343,204.34054362619395,205.6313750371166,32.78602690836536,6.5561707791124455,,6.580409358392788,6.590464132788009,6.593569614580546,6.5791387626565845,6.670635681897098,6.590291152303014,6.591630439554644,6.633270162487633,8.055391731707477,6.445796025803551,,6.449486271900055,6.451013091872206,6.451484189247938,6.449293165612747,6.46310447599483,6.450986844440816,6.451190045051123,6.457487235750167,30.373687188141986,11.035060718058636,3.9656523368373766,1.3179841601243467,1.3111794738693126,8.089993046623432,2.350959873566399,5.004639048839564,1.5998250826202733,377.4869767287659,168.9574833201293,-477.1998609611782,-29.942643389214233,-8.67636110838506,-34.08570435436987,345.04513603182073,974.5380181103759,23.459785347786877,17.718873056552287,23.769219953911605,3020.0,48.0,1.6824022414095159,0.7701364422984909,0.0,0.0,0.38608276348795434,0.08437450502487043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29370039165947565,0.10496689773807222,0.55062778201927,0.1413001472396248,21.63118126525103,17.99209263337196,15.135361590784806,10.49348001386725,13.17257056038266,7.559608522311386,11.237180178082026,5.372672716505981,9.019011987979672,3.622168133569014,7.584082687653554,2.4447400822203904,5.11604028085346,1.3158589324290686,3.7548622809848364,0.7849206894227899,4.188684521091829,1.5434844904968936,6.144486275418735,1.8951390805125763,9.381071091886003,2.225504137516102,98.25404039847223,46.79720734464888,31.550847500204185,28.390092604904716,28.390092604904716,28.390092604904716,160.0,186.0,62.28603199999998,35.467968000000006,0.4909090909090909,226.09,8.75,6.944444444444445,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,16.0,17.0,55.0,0.0,1.0,58.0,17.0,0.0,8.0,50.0,17.0,34.0,41.0,0.0,0.0,0.0,22.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,7.0,1.0,2.0,31.0,9.0,0.0,4.0,3.0,0.0,4.0,8.0,0.0,0.0,2.0,1.0,3.0,3.7727609380946383,7.84621486217032,4.356708826689592,4.9362708788073935,5.514436302925282,6.1255036233393705,6.427903313681587,6.813581952714875,7.248826299966081,7.67107874510163 +135413536,C[C@@H](O[C@H]1OCCN(Cc2n[nH]c(=O)[nH]2)[C@H]1c1ccc(F)cc1)c1cc(C(F)(F)F)cc(C(F)(F)F)c1,0,31.103448275862068,7.543268965517241,3.810344827586207,13.448275862068966,178.029874312185,127.90819991462743,1.4210849310660172,7.492198275862069,10.942289272030651,8.747953517241378,228.54111097998208,29.65573770491803,6.912424590163935,4.508196721311475,10.278688524590164,153.0715485497165,115.99289316141642,1.7324478113114756,7.023354098360656,3.853369763205828,8.217330295081965,274.50964271075065,28.24074074074074,7.353368518518518,3.8518518518518516,10.268518518518519,166.56382675732826,110.93144401463171,1.4618031737879078,7.37342962962963,7.244084362139917,8.615043555555554,231.76129804609556,22.014598540145986,6.77474306569343,3.5182481751824817,6.532846715328467,162.72936290268564,82.7807109309781,1.3599692984999265,6.833948905109491,4.188767234387672,8.192956759124083,206.24695033527036,19.36024844720497,6.693757142857143,3.2049689440993787,5.726708074534161,167.61985976947255,71.61325619140374,1.2223909136989257,6.737609316770187,3.7540113871635614,8.148915826086954,183.23435053116765,20.705882352941178,6.68664705882353,3.135294117647059,6.141176470588236,165.55297206480185,78.11639414628704,1.2257413253868943,6.734868235294117,3.646568627450979,8.147105529411764,187.62971163050418,22.243386243386244,7.295661375661375,2.8412698412698414,7.439153439153439,175.80975251350043,84.77447024936684,1.1675293003535927,7.269872486772486,7.1865079365079385,8.624446899470898,177.1964418680057,16.657754010695186,6.566877005347594,2.748663101604278,4.545454545454546,170.72148714425919,60.01100509284277,1.14300519865623,6.59613155080214,3.704545454545455,8.058246032085561,163.65219269827384,18.666666666666668,6.692072727272726,2.824242424242424,5.957575757575758,170.65771721732526,69.40843031244606,1.1604945690961577,6.7116842424242416,4.432828282828283,8.153027806060605,169.42531479847042,8.785969084423304,0.38487645659928643,0.025056574602749206,0.7779429250891793,6.027348394768134,3.8334074685617305,43.00315253242781,0.2368286527579289,0.33288314506539823,5.14360384462941,0.2247752818073722,42.982554044875435,0.16258942320812397,-0.016000481472096116,-0.01583612689385669,0.03268454805949197,1.131498411337012,-0.2665131323747448,0.7361144854124134,-0.013889802915882635,-0.011645072708134377,-0.37489035301456086,-0.01157283522738346,-0.07795922651390441,0.9547716563174347,0.11351453956929572,0.0018178152377254586,-0.049015722024045465,0.8401484123838472,0.9981985124452452,5.088814396348829,0.018829244558836347,0.09492158034967196,1.9390022288770468,0.06561265688994583,0.12332618468739819,-0.8403360615186997,-0.022518591006535593,0.0022642309705484948,-0.033543227127941194,-0.46228421153128446,-0.2536967221285095,-3.839197968519715,-0.026216487385409337,-0.019732830441688335,0.08575509208228348,-0.014818187420259135,-5.011962778865666,-0.48740408121062595,-0.044752789861227125,-3.652532688583451e-05,-0.0034730171859882752,-0.1854122199983753,-0.3292562668181146,-2.5051235757236294,-0.01979414435544341,-0.037269555431643835,-0.39108724578597387,-0.028165536679935863,-1.8091577370202265,0.7006434916416034,-0.01949077708610212,-0.005520527965285112,-0.17297335105266842,0.197803735049311,-0.708306880650091,3.7913743835205755,-0.024193512975278244,-0.011218378331118498,-0.09485750701390337,-0.018965556046723054,1.3694640907715057,0.06898439121982529,0.11214897671580193,0.004948828894526521,0.004578512604671931,0.4898929845422118,0.9793331501211181,0.5639928832723522,0.008652242793022695,0.09074719611321871,1.565024700445496,0.0704900836368898,-4.94157213470067,-0.3336364272224939,-0.01816148333725463,-0.0023112975725745845,0.06338106532203198,-0.13927906045133454,-0.005630563734006538,-1.822557412510029,0.005044900088547079,-0.016342282074434007,-0.44873809791274993,-0.008691830581113611,0.23140506747244968,1.01507584765611,0.0431747450726046,-0.0005260889097936454,0.07315425359420603,0.6988794004251792,-0.08123342630306944,4.839815830235889,0.01795583997273625,0.03817034500774684,0.04474951656877931,0.02983045779555366,3.4106249190349844,,,0.43513513513513535,1.114864864864865,0.44594594594594594,0.02702702702702703,0.668918918918919,-0.22297297297297297,1.0330733055774395,0.029905766027135038,0.03920306332443233,1.1710378977860827,0.23591388613035727,0.23186179547421298,2.204111203363522,0.4677756816045703,2.0161386853520225,1.3110728619470535,0.22412232888551253,0.15886949270415643,0.3220740018153004,0.7050658234049694,9.20948600124139,1804.0,437.5096,221.0,780.0,10325.73271010673,7418.675595048391,82.422926001829,434.5475,634.6527777777777,507.3813039999999,13255.38443683896,1809.0,421.65790000000004,275.0,627.0,9337.364461532707,7075.566482846401,105.67931649000002,428.4246,235.05555555555551,501.25714799999986,16745.08820535579,3050.0,794.1637999999999,416.0,1109.0,17988.893289791453,11980.595953580225,157.87474276909404,796.3304,782.3611111111111,930.4247039999998,25030.22018897832,3016.0,928.1397999999999,482.0,895.0,22293.92271766793,11340.957397544,186.31579389448993,936.2510000000002,573.8611111111111,1122.4350759999995,28255.83219593204,3117.0,1077.6949,516.0,922.0,26986.79742288508,11529.734246816,196.80493710552705,1084.7551,604.3958333333334,1311.9754479999997,29500.73043551799,3520.0,1136.73,533.0,1044.0,28144.005251016315,13279.787004868796,208.376025315772,1144.9276,619.9166666666664,1385.00794,31897.05097718571,4204.0,1378.8799999999999,537.0,1406.0,33228.04322505158,16022.374877130334,220.663037766829,1374.0058999999999,1358.2500000000005,1630.0204639999997,33490.12751305308,3115.0,1228.006,514.0,850.0,31924.918095976467,11222.057952361598,213.741972148715,1233.4766000000002,692.7500000000001,1506.8920079999998,30602.96003457721,3080.0,1104.1919999999998,466.0,983.0,28158.52334085867,11452.391001553598,191.48160390086602,1107.4279,731.4166666666667,1345.2495879999997,27955.17694174762,509.58620689655163,22.322834482758612,1.453281326959454,45.1206896551724,349.58620689655174,222.33763317658037,2494.182846880813,13.736061859959875,19.3072224137931,298.32902298850576,13.036966344827587,2492.988134602775,9.917954815695563,-0.9760293697978631,-0.966003740525258,1.99375743162901,69.02140309155773,-16.25730107485943,44.90298361015722,-0.8472779778688407,-0.710349435196197,-22.868311533888214,-0.705942948870391,-4.755512817348169,103.11533888228294,12.259570273483938,0.19632404567434952,-5.29369797859691,90.7360285374555,107.80543934408648,549.5919548056735,2.0335584123543256,10.251530677764572,209.41224071872105,7.08616694411415,13.319227946239003,-115.12604042806186,-3.085046967895376,0.3101996429651438,-4.595422116527944,-63.33293697978597,-34.756450931605805,-525.970121687201,-3.5916587718010793,-2.7033977705113017,11.748447615272836,-2.0300916765755015,-686.6389007045963,-78.47205707491078,-7.205199167657567,-0.005880577628619356,-0.5591557669441123,-29.851367419738423,-53.01025895771645,-403.32489569150437,-3.1868572412263894,-6.000398424494657,-62.96504657154179,-4.534651405469674,-291.27439566025646,119.10939357907259,-3.3134321046373603,-0.938489754098469,-29.405469678953633,33.62663495838287,-120.41216971051547,644.5336451984979,-4.112897205797301,-1.9071243162901446,-16.125776192363574,-3.224144527942919,232.80889543115597,13.03804994054698,21.196156599286564,0.9353286610655125,0.865338882282995,92.58977407847803,185.09396537289132,106.59465493847456,1.6352738878812896,17.151220065398338,295.78966838419876,13.322625807372173,-933.9571334584266,-62.39001189060637,-3.3961973840666158,-0.4322126460714473,11.85225921521998,-26.04518430439956,-1.0529154182592226,-340.8182361393754,0.9433963165583038,-3.056006747919159,-83.91402430968424,-1.6253723186682454,43.27274761734809,167.48751486325813,7.12383293697976,-0.0868046701159515,12.070451843043996,115.31510107015457,-13.403515340006457,798.5696119889217,2.9627135955014814,6.298106926278228,7.383670233848586,4.922025536266354,562.7531116407724,0.7285798561860567,0.5178309840246488,0.4326925054842275,0.27514137521867604,0.29790645495277235,0.14079994031443235,0.1774680541432034,0.08005588238421547,0.10937864169393027,0.04333392545250333,0.07100032204058869,0.02360508032720054,0.046415641628624764,0.01242222527750612,0.028725194209279204,0.006735910177844082,9.01788899928868,5.6838794981773795,4.128466634805968,2.183516332326056,0.5116719879613837,-0.3965280238259339,4.023744633472061,0.9774095963051039,7.017871499012949,0.9939466503256682,17.43450101899933,10.94437617573837,19.009417438989992,11.695129742231941,1.9987847079627137,0.5246150800766934,4.01114026104072,2.233431667618157,8.011208440715697,1.2085924978695874,4.034681425775434,2.4293477416969766,20.905933857870444,13.299890587005883,0.31351308148062135,0.6433367050066277,0.8046750057956871,0.8601415427453345,0.8792072890556853,0.8848523116572448,1.4857075507850535,1238.5746842143203,0.0,1.0,7.0,0.0,8.0,2.0,4.0,0.0,0.0,3.9428786693833096,1.9281429986515044,0.9426040424665025,0.6037853449767914,0.4873217673532846,0.4528390087325933,-109.91482744155559,2417.6964403876664,88.45817766486351,41.68442138599424,88.25634126395724,,14.0,879.0,53.42229820376179,35.52744251779556,30.605861428584024,24.24094203453279,0.0,31.18920547353706,4.899909730850478,0.0,15.181342137549283,9.473725907600098,16.10000000000001,41.25,16.5,1.0,24.75,0.0,0.06486486486486463,-8.25,0.3159441707717572,0.07832512315270967,-0.2376190476190475,0.036729036729036824,0.28580851063829754,0.0,0.7568965517241368,1.016216216216216,0.44095238095237965,0.6785714285714272,0.9794871794871792,38.22371230636526,1.1065133430039964,1.4505133430039963,43.32840221808506,8.728813786823219,8.57888643254588,81.55211452445032,17.3077002193691,0.4281914893617024,0.17598343685300194,0.06211180124223599,0.3354037267080744,0.391304347826087,0.578751726988583,-2.005062297338597,-0.09385836161008285,-0.034570039609286146,-0.08354426238910818,0.4212482730114167,1.4593978568825066,0.032898590468562486,0.025162032015215628,0.042923466378897254,-6.884023164088223,0.5840322011674421,0.5947859814419344,1.8093783685784575,1.1907953669888565,0.4049518286983885,0.9966290596616402,0.5783310235002509,1.1636125942591853,0.5733730490253205,0.6006863965067661,0.634693004906405,0.9735280339738476,0.6928824378580775,0.5228686849838039,0.9232935754945477,1.0995202309684544,0.6854135157054865,0.7047187105816095,0.6771798245072658,0.9388732340463216,0.5232011572982421,0.38760776240729233,0.5521929231957958,0.9309237361652173,0.9242363623970531,0.7324680051910245,0.8481140476816771,1.014311255156487,0.8586898609409133,0.8422751863008476,0.9064904889456965,1.1089758145312896,0.7365820973503829,0.5845821116294724,0.7639767122727128,1.1277548898433045,0.9966252083632798,0.916729863405871,0.8139432729751023,0.9925760139745623,0.9307010460612493,0.9203430915216521,0.9947339400051578,1.0863365263565297,0.9197931505150228,0.8015565686377476,0.9294557822004598,1.096191762379514,0.8379289962026224,0.7564773830495145,1.2616028828274042,1.2447009373103468,0.8296363129982709,0.8882916733623923,0.8162156890072694,1.0612473109239817,0.7510018933576198,0.604248378604176,0.8110403720946285,1.0050454558700952,0.988944312330427,0.7058935305287964,0.7339327478809781,0.858895742732197,0.9200673561987431,0.7122645879980783,0.9821673348533799,0.9340087162751864,0.7254374267748483,0.6308713418332609,0.6885886250462242,1.09000634612403,1.0401959698728347,0.8352675037614635,0.8553830549600834,0.7768825388911256,0.9525776899113094,0.7651771035951197,1.0390621362179944,0.9419773366705146,0.8521754756446024,0.8294136653902806,0.81723919675304,1.0754932286468057,0.882641272653453,0.680793309441692,0.8520919416214802,0.7809358390940357,0.8132731935651645,0.7772197139168732,0.8783995168433704,0.8799033527395526,0.6926277584218793,0.7395214346249084,0.6575334720301383,0.9864925506428038,11.5,0.46444852566064687,4.88888888888889,3.1944444444444446,2.364444444444445,2.427222222222222,0.9886167800453514,0.7491850907029478,0.7533541194255479,0.6781250000000001,9467.594813345057,10245.125525869063,3745.9927965759325,3530.588563400957,12.481676354979069,0.43875196827588847,7.005316286849385,0.7817434422497227,0.0,0.391304347826087,1.9151023257442623,3.9298379964760675,4.915376952661069,5.2541956501507805,5.370659227774287,5.405141986394979,0.28750000000000003,0.009288970513212938,0.08148148148148152,0.05414312617702447,0.04007532956685501,0.03569444444444443,0.013924180000638752,0.013378305191124066,0.013452752132599069,0.01232954545454546,0.5612681349619257,29.97,12.25,7.8093450928879715,204.7483434087219,0.0,4.540354551715303,238.7483968457354,,190.10154869446217,186.09325178625795,189.86540500879948,189.61199111045485,308.72595921899745,188.63910178622396,190.57137247097185,249.30115021548892,0.018505576521590513,-0.04157303258680485,-0.6320148362226315,0.042014069419996566,0.18772739473948055,-0.06952382040272352,0.017117686543034822,-0.0586491657750547,-0.034982464209314605,-0.07288476413400209,-0.051486244992459365,-0.0018137411386143316,0.10867004506197898,0.29493760302278305,0.0725484335566765,-0.06300683564726366,0.13938938938938952,0.2603945760088381,0.11833584508743762,0.0795057706893363,0.28514985440618706,0.37697347763312233,0.29190334614361435,0.002869214904229305,-0.09564523314890061,-0.05850862171593102,0.09036474484026494,-0.04311785099671159,-0.07669777508341097,-0.06618047369321135,-0.08927712835994184,-0.11069812322162789,-0.05927855084946286,0.016672180570792387,-0.06592445264047324,-0.11660458272519089,-0.05547527842713987,-0.11627832540513496,-0.0014577142911556215,-0.004464359882944044,-0.030761822256585834,-0.08589127806485164,-0.05825441690198332,-0.08358002346817267,-0.11195987536203388,-0.0760337027499347,-0.12530531139128168,-0.042090512702697855,0.07974572695501267,-0.05064164552521568,-0.22032253222191833,-0.2223470970352223,0.0328177039211818,-0.18477213457191993,0.08816503349752268,-0.10215619053496583,-0.033700649904982526,-0.018441837645204136,-0.08437563015926346,0.03186092872335443,0.007851654217874282,0.2913895479779,0.1975062023834469,0.005885409400885129,0.08127835865062144,0.25547327231784145,0.013115152030936722,0.03653376689123197,0.2726097654941061,0.3042661814011173,0.31360247029875093,-0.11496692657075425,-0.037973776599555746,-0.047187826186425925,-0.09224315810194539,0.08147264185835525,-0.023107849642843233,-0.0014688143069015015,-0.0423819488846934,0.02130189919926477,-0.049093149703399376,-0.08724196331358038,-0.03866897868495314,0.005383697470160892,0.1155337377018255,0.11217819207256921,-0.020996042680786982,0.09403550213638104,0.1159513860243787,-0.021190918776382437,0.11254560526896908,0.07581785296515436,0.11466589875028935,0.008700031713271156,0.13271235856404243,0.07934905207061826,9.67245390666343,23.96717895557886,10.205907788512516,21.14827614007162,41.08116226095201,46.555745119570865,47.79930931812851,48.29611839747645,48.71029081126956,74.59713135802482,48.50969589204098,8.292526168763963,5.878171230053788,11.916738067166115,26.087435465983866,8150.641260221414,7378.265525255952,3893.7987457780982,202.0,60.0,73.0,94.0,124.0,139.0,153.0,170.0,178.0,534.1501880720006,40.0,5.303304908059076,6.1463292576688975,7.051855622955894,7.9211727215870145,8.825118970345061,9.704731689278749,10.608242106137789,11.492712553519015,12.396267294702282,0.7873563218390806,1.0702068965517242,1.1721136127628133,0.7671628914874008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6516379620070204,1.0492900608519269,1.0631639751864783,0.6619194150634842,7.0,1.0,2.0,0.0,0.0,0.0,6.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,7.0,0.0,0.0,3.0,0.0,2.0,0.0,3.0,1.0,2.0,0.0,0.0,9.473725907600098,11.641625339045822,6.290026729335213,0.0,0.0,9.883888251797686,14.283634040047678,31.44117209434996,0.0,12.13273413692322,48.382475525392664,6.544756405912575,36.42434857071575,403.8857218501036,-1399.245990208512,-65.49967864079336,-24.124930865663995,-58.30191625868799,293.970894408548,1018.4504501791542,22.95849902407015,17.559490520330243,29.954425005269243,0.5,0.8372260259721858,0.1008134481430793,80.04366801072705,0.12005814592324163,1.5741305998431006,0.16277397402781404,7.0,0.15,0.32692190830546664,0.6708519538975537,0.8390906281105176,0.8969294462581912,0.9168106267742044,0.9226970846936434,4.952100000000003,,3.6547619047619055,4.331521183988014,3.8963232540812847,3.8923202616471295,-19.30704274078961,3.9359750096873594,3.5010363731051544,-6.300899604252743,114.44540000000003,40.20663124132384,0.0,20.08125186839976,0.0,44.25692458672163,13.151638370425493,86.84428136734039,0.0,0.0,4.394449154672439,0.0,5.771441123130016,2.3978952727983707,7.315218389752975,4.59511985013459,8.934982049213234,6.529418838262226,10.598657685547298,45.66666666666667,6.553264294385361,3.8616114646079818,4.744402725191901,0.0,0.0,0.0,-3.00158761232996,0.0,62.072,0.0,11.440412383528123,0.0,0.0,0.0,0.0,0.0,0.0,67.98258954024317,5.689743398203474,30.732905333723743,0.0,39.522916968160466,28.371079348399622,5.817220841045895,47.147754881374794,47.25910666330309,0.0,0.0,0.0,44.495447706269246,37.795001796407185,45.649272665139485,477.4967936914709,,380.0149274559378,371.9828774297414,379.5511677818997,379.01358653109094,623.0463709608696,377.0825573686283,380.96789526668346,500.49150451117333,45.649272665139485,477.49679369147077,,376.7552749462852,368.1196288061843,376.076068663395,375.53800398818316,636.7589611787848,373.57209317079923,377.8453493122925,504.9032000352307,4.911555020213514,340.86946879372044,,274.3828880615052,268.691083046963,275.9868691910681,273.8922451502131,448.3726183265562,272.4229347888516,274.94670936840953,361.64910891254874,1.2337641260848509,12.905318748418132,,10.270673715025346,10.053591281884902,10.258139669781073,10.243610446786242,16.83909110705053,10.191420469422386,10.296429601802256,13.526797419220902,2.457190387893156,238.7483968457354,,190.10154869446217,186.09325178625795,189.86540500879948,189.61199111045485,308.72595921899745,188.63910178622396,190.57137247097185,249.30115021548892,60.858823529411765,0.0,1.3103821980021475,0.0,93.5650855043533,0.0,0.0,61.66351056081574,0.5071907363853625,0.0,11.62395345175107,0.0,-3.171175149071976,1.7852362055933484,-10.017877254291118,0.0,0.0,38.39132607368208,584.2637215286277,111.07593489316722,227.93060379561192,285.091863254342,304.74334770874526,311.49823521090866,313.4982352109088,1270.0,156.44973512425378,113.59289473002397,87.53718236351115,83.24000000000001,83.24000000000001,1.0,8.374332703503196,6.321928094887363,5.396678558252254,5.992390025831687,,6.00447278158488,6.005203188545337,6.008735767754787,6.005341992468369,5.977667229170195,6.005084178691102,6.0039934376822774,5.996109284391813,0.14585617725006092,0.1619564871846402,,0.16228304815094272,0.16230278887960373,0.16239826399337262,0.16230654033698294,0.16155857376135663,0.1622995723970568,0.16227009291033181,0.16205700768626521,2.994116502174853,3.0988231548401695,,3.1008374747557377,3.1009591111701047,3.101547191286727,3.1009822248457866,3.096363216049204,3.1009392931839734,3.1007576404298374,3.0994436259405473,326.9400000000012,316.15138284777424,262.843972568459,,260.8097078568186,260.6317109615154,260.1780969304382,260.60959965390174,266.32774096738797,260.68558120425536,260.91775959898155,262.78479114338825,8.544631968858763,7.1038911504988915,,7.04891102315726,7.044100296257173,7.031840457579411,7.043502693348696,7.1980470531726475,7.045556248763658,7.051831340513015,7.1022916525240065,7.064553978169509,6.879893415583508,,6.8721238723872755,6.871441161364357,6.869699204362366,6.871356320400387,6.893060478908572,6.871647831059536,6.872538079997371,6.879668232224428,105.18903895610438,15.73365695176565,6.0980058271557045,-3.296605795850857,-0.23921409791799753,5.793900710989037,-12.429688819966772,1.81757293438751,0.0,415.9772476455635,281.85432320549637,-976.4730720403988,-45.70938410229314,-16.835742621386185,-40.68637800168327,205.14953365047876,710.7323849891252,16.021740443315156,12.254006637743537,20.903893676150744,4275.0,59.0,4.815680394758543,1.197521181921811,0.5773502691896257,0.026997462357801944,1.1505432006488632,0.18524788074448378,0.28867513459481287,0.008999154119267315,0.0,0.0,0.0,0.0,0.11785113019775792,0.02795084971874737,0.4206005603523789,0.11343819195726473,0.5057255582723577,0.13054291029803894,26.957454678884098,19.159746408912003,17.3077002193691,11.005655008747041,17.87438729716634,8.44799641886594,12.955167952453849,5.844079414047729,10.281592319229446,4.073388992535313,8.804039933032998,2.927029960572867,6.4517741863788425,1.7266893135733508,4.394954714019718,1.0305942572101445,7.466920793873486,2.15536881495793,9.881060458122976,2.7558222037843403,15.136405021076511,3.722589748570217,120.11863735674461,63.98397307195686,46.889838204035044,43.21930496376072,42.06104642228131,41.262843457772156,200.0,233.0,63.117653,36.04834700000001,0.4482758620689655,268.14,14.097222222222221,7.6944444444444455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,17.0,17.0,58.0,0.0,1.0,61.0,17.0,1.0,8.0,53.0,18.0,40.0,43.0,0.0,0.0,0.0,23.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,5.0,2.0,2.0,37.0,14.0,0.0,4.0,3.0,0.0,4.0,6.0,0.0,0.0,7.0,1.0,3.0,3.9219733362813143,6.9261475985362075,4.524502282920636,4.992980358857535,5.504569050192028,5.950316978760987,6.062039499777585,6.329720905522696,6.444925853484402,6.617737146732808 +5039,CNC(=C[N+](=O)[O-])NCCSCc1ccc(CN(C)C)o1,0,26.372093023255815,6.235655813953488,2.697674418604651,6.708010335917313,168.0269509197925,104.14694837209305,1.4236464164343725,6.282234883720929,4.843749003094394,7.800894348837208,195.5527525760047,26.093023255813954,6.508093023255814,3.13953488372093,5.666666666666667,153.26541433922316,98.34424695348845,1.676400251162792,6.621551162790698,3.0762273901808785,7.942072186046506,234.2143351322433,19.945945945945947,6.296593243243242,2.864864864864865,4.081081081081081,163.5216641003913,72.28852772972972,1.3804294058518516,6.37538783783784,3.3304137470804145,7.860778648648649,184.6246956388582,17.523809523809526,6.1935785714285725,2.4404761904761907,2.555555555555556,161.09271904288386,61.47478203571427,1.3048652535296423,6.273210714285716,2.567239858906526,7.785239690476185,167.596101305363,14.8,5.881580000000001,2.23,2.3033333333333332,166.74348596613427,52.59044715999998,1.14219098794866,5.944588999999999,2.5058641975308653,7.514223819999997,140.36196431864687,15.409090909090908,6.177770454545456,2.159090909090909,1.5340909090909092,165.73928457600013,53.356050875,1.1811155362418406,6.234110227272731,2.781670875420876,7.80961584090909,151.3895815260081,13.48314606741573,5.960388764044944,2.0898876404494384,1.3558052434456929,165.6774102192775,44.997940404494386,1.1139676724536627,6.02270224719101,2.6175267027326963,7.654748561797751,132.2622333426678,17.215384615384615,5.934015384615385,2.1538461538461537,1.9384615384615382,162.60616403203883,60.51047326153844,1.238950243808984,6.022498461538464,2.2873219373219373,7.621596553846154,148.56336652680474,13.258064516129032,5.798274193548386,2.2580645161290325,2.564516129032258,166.18811091236145,45.104675129032266,1.130111239540758,5.873429032258065,2.130824372759857,7.478250709677422,137.67823991001728,11.107625743645213,0.14509096809085986,0.023085463626088043,0.48242293131422387,4.157923201730665,1.4968056418896245,50.68568541049216,0.27498858354150246,0.13529486208761488,1.9762545431074965,0.08839035262303946,48.66746994961124,0.8339643050297472,0.022663061114115795,-0.006743813496037533,0.1281773931855057,1.371131542575566,-0.34223474849797636,3.720715795024344,-0.008796706626284397,0.02026457544618714,-0.053804711106956525,0.012305459707950247,-3.4012819151234326,-0.6915352345314485,0.00393458187771334,-0.003659139107013773,-0.028620291465072407,0.3083104738053357,0.22254788643256934,-2.7545939208629906,0.0027825449510824455,0.0038613604139564038,0.5864026446573568,0.0005852897402540489,3.61641287745865,-1.4907929640217357,-0.015728675732055903,-0.0016491748577749394,-0.039731901413891685,-0.5088522038224583,-0.05941790465634019,-7.245684208664914,-0.041025149458112045,-0.01709228733678433,-0.20123866857252926,-0.005009604284169045,-10.318134931053711,1.6607463493780423,0.035865962141698154,0.0048788817040670545,-0.049632233639805276,0.32887266390240966,0.007655660812718434,7.712280767182261,0.013820275205888258,0.03344216116819901,0.32869058720800404,0.019639379702541905,3.7767134395572124,-1.0262303948080045,-0.04147252200206496,-0.00359278576634503,-0.05694724421062985,-1.2630148155432088,0.09084402308406662,-4.820533958325138,0.01785022743114081,-0.038282229952308344,-0.23450375573332433,-0.023676111079699084,-1.6193609126978865,-1.4107352288816917,-0.019884435558850527,0.0013208200522605497,-0.026190895777249767,-0.9685378404090621,-0.12356026936413154,-6.516652804273188,-0.018233340913839515,-0.01988940089085505,-0.36319326060926976,-0.010767568719198352,-5.026011013721704,0.08199858551399951,-0.012730968090859945,-0.0021126164111527285,0.04136955526896033,-0.023715290778568186,-0.2788481549455482,0.083921061779758,-0.036059841072537804,-0.00965740233806215,-0.33873886868398423,-0.0036992993135582675,-4.782035222643707,-0.9058252935326856,0.0253713724942863,0.0014692403583835556,0.03220572585006715,1.0708423229838473,-0.10793449185809574,-3.3685323624801575,-0.03864610185374586,0.024144785324238,0.23534259486012274,0.008401624121146556,3.785147758406293,,,0.473015873015873,0.9523809523809523,0.30952380952380953,0.0,0.6428571428571429,-0.3333333333333333,0.8966946780717276,0.019379738539311932,0.023474976634550025,0.6611937649922162,0.19789988531803415,0.2786353076842299,1.5578884430639437,0.47653519300226405,1.9530179610910419,1.2233583178892982,0.3750630153512035,0.258616129738572,0.0,0.729659643201744,7.305610734046525,1134.0,268.1332,116.0,288.44444444444446,7225.158889551078,4478.318780000001,61.216795906678016,270.13609999999994,208.28120713305896,335.4384569999999,8408.768360768203,1122.0,279.848,135.0,243.66666666666669,6590.412816586596,4228.802619000004,72.08521080000006,284.72670000000005,132.27777777777777,341.50910399999975,10071.216410686462,1476.0,465.94789999999995,212.0,302.0,12100.603143428956,5349.351051999999,102.15177603303701,471.7787000000002,246.45061728395066,581.69762,13662.227477275508,1472.0,520.2606000000001,205.0,214.66666666666669,13531.788399602245,5163.881690999999,109.60868129648995,526.9497000000001,215.64814814814818,653.9601339999996,14078.07250965049,1480.0,588.1580000000001,223.0,230.33333333333334,16674.34859661343,5259.0447159999985,114.219098794866,594.4588999999999,250.58641975308652,751.4223819999997,14036.196431864688,1356.0,543.6438000000002,190.0,135.0,14585.057042688011,4695.332477,103.93816718928198,548.6017000000003,244.78703703703707,687.246194,13322.283174288714,1200.0,530.4746,186.0,120.66666666666667,14745.289509515698,4004.8166960000003,99.14312284837598,536.0204999999999,232.95987654320996,681.2726219999998,11771.338767497435,1119.0,385.71100000000007,140.0,125.99999999999999,10569.400662082524,3933.180761999999,80.53176584758397,391.4624000000002,148.67592592592592,495.403776,9656.618824242309,822.0,359.49299999999994,140.0,159.0,10303.66287656641,2796.4898580000004,70.06689685152699,364.15260000000006,132.11111111111111,463.6515440000002,8536.050874421071,477.6279069767442,6.238911627906974,0.9926749359217859,20.744186046511626,178.7906976744186,64.36264260125385,2179.484472651163,11.824509092284606,5.81767906976744,84.97894535362235,3.800785162790697,2092.701207833283,35.86046511627913,0.9745116279069792,-0.2899839803296139,5.511627906976745,58.958656330749335,-14.716094185412985,159.99077918604678,-0.37825838493022906,0.8713767441860469,-2.3136025775991307,0.5291347674418606,-146.2551223503076,-51.17360735532719,0.29115905895078714,-0.2707762939190192,-2.117901568415358,22.814975061594843,16.468543596010132,-203.8399501438613,0.20590832638010098,0.28574067063277386,43.393795704644404,0.04331144077879962,267.6145529319401,-125.2266089778258,-1.3212087614926957,-0.1385306880530949,-3.3374797187669016,-42.7435851210865,-4.991103991132576,-608.6374735278528,-3.4461125544814117,-1.4357521362898837,-16.904048160092458,-0.4208067598701998,-866.7233342085117,166.07463493780423,3.5865962141698158,0.48788817040670546,-4.963223363980528,32.88726639024097,0.7655660812718434,771.228076718226,1.3820275205888257,3.3442161168199007,32.8690587208004,1.9639379702541904,377.6713439557212,-90.30827474310439,-3.649581936181716,-0.3161651474383626,-5.011357490535427,-111.14530376780237,7.994274031397863,-424.2069883326121,1.5708200139403912,-3.3688362358031343,-20.63633050453254,-2.0834977750135195,-142.50376031741402,-125.55543537047056,-1.769714764737697,0.11755298465118892,-2.3309897241752293,-86.19986779640652,-10.996863973407708,-579.9820995803137,-1.622767341331717,-1.7701566792860994,-32.32420019422501,-0.9583136160086534,-447.3149802212317,5.329908058409968,-0.8275129259058964,-0.13732006672492736,2.689021092482421,-1.5414939006069321,-18.125130071460635,5.45486901568427,-2.343889669714957,-0.6277311519740397,-22.018026464458973,-0.2404544553812874,-310.8322894718409,-56.161168199026505,1.5730250946457505,0.09109290221978045,1.9967550027041634,66.39222402499853,-6.691938495201936,-208.84900647376978,-2.3960583149322434,1.496976690102756,14.591240881327609,0.5209006955110865,234.67916102119017,0.7459488542381026,0.6393760691973129,0.47653519300226405,0.37108354667992605,0.3352494497460579,0.2231716470275003,0.2059778060404076,0.1297829282031389,0.14123604840769388,0.07497867136767614,0.09977301717340248,0.05228261490321433,0.06520744902258506,0.036589057232004105,0.0459227888983912,0.024590542123595568,16.002002462891454,5.746013580383817,3.6075573877026375,2.243737089849544,0.5590398412773723,-0.5375822406674918,3.0797226057210776,0.97273435186525,7.004116098350139,0.6517896498093381,14.5948801706254,10.338114933865327,32.06099867088236,11.757123730295119,2.9162207283786685,0.6692449200184295,3.553030062428429,2.294682103156195,8.001936003368044,0.62506701689897,3.7569035064629435,2.491221113927881,24.43422485903241,14.651573070380525,0.31133397188831413,0.6126622679519568,0.7904633761326348,0.8418127589707759,0.8501863090478312,0.8501863090478312,2.0167086945945,473.7363586621033,0.0,2.0,4.0,0.0,4.0,0.0,0.0,0.0,0.0,3.696932545302749,2.023177751292621,1.0355656979762973,0.7503409885230319,0.7038293606160559,0.7038293606160559,214.18391642445854,1327.5555145674289,61.16697531921442,30.873384059707654,66.80057818042175,,14.0,458.0,4.923311048817671,10.114318268765572,0.0,12.365730501954975,35.77091334697548,0.0,18.809556932068304,26.2280781022776,15.53348693886314,4.417150937053347,9.933333333333334,20.0,6.5,0.0,13.5,0.0,0.02698412698412697,-7.0,0.15891472868217038,0.03578547698149015,-0.12312925170068023,0.05203588681849547,0.18749823321554748,0.0,0.5922480620155041,0.8984126984126981,0.4333333333333337,0.5564625850340139,0.8463768115942026,18.83058823950628,0.40697450932555057,0.49297450932555054,13.88506906483654,4.155897591678717,5.851341461368828,32.71565730434282,10.007239053047545,0.5265017667844525,0.2181208053691275,0.0,0.2315436241610738,0.5384615384615384,0.31962407818583055,-0.714683710160643,-0.058109491174476176,-0.016620551399084724,-0.0649712463782403,0.6803759218141696,1.5213296534668728,0.04491458030550492,0.035379759382950536,0.047541551670839774,-3.7192435846774554,0.8077709611451943,0.6489280330648011,1.390018435465961,0.9652466367713006,0.5205081512313562,1.6029161970821433,0.8144767990803449,1.1487351258695038,0.6453784414946901,0.5667552607425009,0.6380843757362693,1.1673303765997143,1.2227657104957717,0.9092080890432345,1.4064548592264148,1.3680159980608413,0.9454660826278932,1.0392667216861402,1.1978944198595947,1.1725320890207924,0.9020997831076334,0.3595760055140985,0.8996382758714495,0.9514039602138497,1.1593753043139545,1.045867514906446,1.315291514582336,1.048486547085202,1.0387689328246041,1.1497288338350538,1.1622096697797497,1.2516970914838517,1.0592626245102137,0.7252573122959943,1.010747802219715,1.2444746481748765,0.8287832310838446,0.4995169327387155,0.6727357309951533,1.1135650224215248,0.7488458203260493,0.9630315454617104,0.8256300788466366,0.9553196762779045,0.5210835736460075,0.36830461627690914,0.47549035596451594,0.9275916228415528,1.0751998512734708,1.4043522441099052,1.2410230456310887,0.9663167549938851,1.3130725175795415,0.9115176664020583,1.0774920058827793,0.9135024749219598,1.3886342495365336,1.1105445816156716,1.4316082894460047,1.0028281550396336,1.3116081891500653,1.1296843975268744,0.6710350991385657,1.0123318385650226,1.2653256984960266,1.0210349965054693,1.2947115020758042,1.224223147321487,1.1427173691817383,1.5035258915279766,1.1576120806034123,1.1127424620241297,1.3291647003303444,0.9286146303899847,0.9165540914249516,0.700845119006554,0.8639524800554976,1.2413306662854722,1.3021741439588594,1.4747991841189056,0.9247240399121474,1.1417365463990539,0.8996628347537188,1.1679253449440619,1.3452569430701233,0.536090712630788,0.698783624333895,0.9306921741646175,0.5373917458292772,1.0747428627816524,1.3043051074441787,1.3921399180573955,0.5592744105061348,0.36024396399878744,0.5731211477470884,0.969542356937028,5.0,0.08611570247933885,1.1111111111111116,1.3194444444444444,0.6850000000000003,0.4622222222222222,0.17800453514739226,0.19706632653061223,0.09876543209876541,0.14938271604938277,3781.4133890400044,4358.257666290363,2086.21885782279,1863.2480888245038,16.142956015166664,0.4979195216876193,8.105063077470602,0.9917125703856333,1.0,0.5384615384615384,1.7293322093993488,3.403087003409477,4.390699056725801,4.675923766179066,4.722435394086042,4.722435394086042,0.23809523809523814,0.006624284806102987,0.04273504273504276,0.05997474747474747,0.029782608695652173,0.023111111111111114,0.011866969009826152,0.014076166180758014,0.007054673721340387,0.010670194003527337,0.4439910358333464,19.047619047619047,10.680473372781066,8.88888888888889,128.4562521662435,1.0,3.913049859773765,120.8315141496841,,87.35037340950714,98.23600445503575,99.15243391097013,87.3681705405785,135.9742472870163,98.90921009276326,98.74162963473576,126.66106969893659,0.07508033888401999,0.1561989792495118,-0.2921238059267995,0.26569506726457404,0.3297635564805179,-0.22864341162285182,0.07340762514881843,-0.03198935211416426,0.1497808204502556,-0.027225597681538066,0.13921722612002294,-0.06988820085870526,-0.06225770029451008,0.027118034495775083,-0.1585040338058757,-0.0593261422857835,0.07415011265167348,0.14868188641486974,-0.054346585205549525,0.010118765351080446,0.02854033297625039,0.2967242487575954,0.006621647305222875,0.07430862712203798,-0.13421346725465913,-0.10840561572520616,-0.07143780538638464,-0.08235906470211406,-0.12238133778196221,-0.039696472937748126,-0.14295326481202175,-0.14918855513840032,-0.12633360257032988,-0.10182831420900777,-0.05667591694688253,-0.212012971739373,0.14951407147726167,0.24719638040624226,0.2113399922604806,-0.10288116591928247,0.079095415654989,0.005114665924864925,0.15215895187610082,0.050257632618419014,0.24717983116418993,0.16631996538824664,0.2221891769829051,0.07760241992171572,-0.09238971662284547,-0.285838067991205,-0.15562978610856024,-0.11804423155320022,-0.3037609773594424,0.0606919298950408,-0.09510641750791568,0.06491261273923678,-0.28295405576833627,-0.11866070418468797,-0.26785854312258695,-0.03327399008772229,-0.12700601023479638,-0.13704805902458628,0.05721436110851761,-0.054290320955308106,-0.2329378859152388,-0.0825493076096001,-0.12856988618179388,-0.06630581051408507,-0.14700780638643157,-0.1837785835210167,-0.12181837044048315,-0.1032724943155146,0.007382188363783479,-0.08774473186289218,-0.09151284311939646,0.0857537081752328,-0.005703638481994353,-0.1862954996572031,0.0016557152399163566,-0.13113213868056997,-0.07138040712742044,-0.17140447310564833,-0.041851844729421564,-0.0982593758745806,-0.0815498572276724,0.17486527816395894,0.06364352833370088,0.06675828149862575,0.2575425930277229,-0.07210989111574641,-0.06645924456183552,-0.1405371137813553,0.17846047478582155,0.11908516323512962,0.09505137010797063,0.0777757249827311,5.601275682958293,6.944992838659704,0.6551853485522243,19.56413414323076,34.79201591051882,37.60883181808271,38.40810576707207,38.454989488002305,38.454989488002305,41.01337718291188,25.690524675675263,7.876323322375273,5.430938724510012,0.0,15.322852507236625,6685.327222902129,6303.304546097947,736.0722067383194,23.0,26.0,27.0,32.0,29.0,27.0,26.0,22.0,22.0,314.14126156400056,21.0,4.553876891600541,5.303304908059076,6.115892125483034,6.88653164253051,7.703007682479236,8.484049972822984,9.301733800405394,10.089593605747774,10.907953983314009,0.6511627906976745,0.9871627906976744,1.1460312738993075,0.6087520548024776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6417691964907396,0.9722754217966254,1.011339961720219,0.5889165621346311,2.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,4.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,19.950637875916488,11.520494837748885,5.8209740960423995,0.0,6.199954889820448,10.114318268765572,0.0,11.761884949391115,0.0,0.0,26.2280781022776,19.345281995336553,17.220921061477036,189.76572970733602,-424.3187075841304,-34.50049839247476,-9.867876920561173,-38.57442796219368,403.94964613179457,903.2368069832985,26.666476926739662,21.00550713914648,28.226150218228078,0.5,0.8180955594340642,0.20744105778425934,46.983239305796666,0.12234729726238172,67.00041633935616,0.1819044405659361,7.0,0.47619047619047616,0.31869661499668,0.6271509329618596,0.8091568058711227,0.8617205347614437,0.8702921083962671,0.8702921083962671,1.4589999999999999,,1.9464285714285716,1.5752237029804177,1.3335004041957026,1.9431561536577697,-4.8954721347102454,1.432527539779682,1.3778924772647763,-2.316703071976324,84.40080000000003,9.340461985871018,0.0,15.53348693886314,0.0,12.297610012659364,33.44062596069093,45.78847622930053,0.0,0.0,3.7612001156935624,0.0,4.990432586778736,2.3978952727983707,6.3578422665081,4.59511985013459,7.794411205726601,6.555356891810665,9.273596821611198,28.0,3.9841287772506204,0.0,0.0,5.699983621126749,0.0,0.0,1.9089205252553019,0.0,42.448,0.0,10.349270408450499,0.0,-0.4850179440335465,0.0,0.9213502019265003,0.0,0.4091368971703573,49.27934477767022,10.633577208012662,0.0,0.0,43.26384674035908,12.297610012659364,10.114318268765572,11.520494837748885,28.570814059839414,0.0,0.0,0.0,26.176338356506538,27.596075449101804,25.114621364426107,241.6630282993682,,174.67175204750637,196.32198760502575,198.17786778344544,174.70897236910477,272.682336049397,197.6819889912618,197.35203141449392,253.5427777856804,25.114621364426107,241.6630282993682,,173.09607177539752,194.89678520709103,196.9713674177445,173.13594119709612,276.843966708743,196.3858926457469,196.10536679220672,255.63884246984964,4.400420528643165,189.72598057932385,,135.83890299262467,157.30585461371612,159.4358213601179,135.86250854749946,206.83401622181822,157.95077845153912,157.15004186941923,196.8902550585417,1.1959343506869575,11.507763252350866,,8.317702478452684,9.348666076429797,9.43704132302121,8.319474874719274,12.98487314520938,9.413428047202942,9.397715781642567,12.073465608841925,2.2782357224224437,120.8315141496841,,87.35037340950714,98.23600445503575,99.15243391097013,87.3681705405785,135.9742472870163,98.90921009276326,98.74162963473576,126.66106969893659,41.80784313725489,0.0,5.644271868263466,0.0,0.0,0.0,0.0,43.48761835396942,3.0726928836116523,5.7079549509664185,0.0,1.7152125850340134,0.0,2.0561581498608015,0.0,0.0,0.0,25.323412171789133,485.71591254171915,74.361285004172,146.3327411466075,188.80005943920943,201.06472194569983,203.0647219456998,203.0647219456998,276.0,111.34594461244257,107.99946329741152,66.72585501106182,108.88,83.58,1.0,6.515175546701205,5.392317422778761,3.3369378853793865,4.5157421557542525,,4.5084007167311695,4.526450125680391,4.528601150773469,4.508370860223313,4.4779177296486115,4.524534189499362,4.522343893363099,4.4976540857372305,0.15890180406568508,0.2150353407502025,,0.21468574841576998,0.21554524408001863,0.2156476738463557,0.21468432667730064,0.21323417760231483,0.21545400902377915,0.21534970920776664,0.21417400408272527,1.9469909304144912,2.2495068936724776,,2.2478798270919875,2.2518753403054226,2.2523504397980414,2.247873204653435,2.2410954906176115,2.25145197503532,2.250967764646057,2.2454932912935024,239.84999999999974,447.8340705779055,103.22855884975388,,103.827448646473,102.27735264672044,102.06322518263767,103.82990004413706,106.26493960241383,102.44395601802944,102.63513237502833,104.65997601381017,21.325431932281212,4.91564565951209,,4.944164221260619,4.870350126034307,4.860153580125603,4.944280954482717,5.060235219162563,4.878283619906163,4.887387255953731,4.983808381610008,6.846360130363108,5.378882892533565,,5.384667718330939,5.369625611425913,5.367529820714796,5.384691328356586,5.40787275067224,5.3712532232185,5.373117639662664,5.392654116491396,5.699983621126749,11.920410614277754,16.05722535941692,0.0,3.946424533158841,3.9841287772506204,0.9213502019265003,1.4443257728784702,5.644271868263466,288.46871983884284,112.66683153457785,-251.92454094888606,-20.483476369725473,-5.858710254625258,-22.902230995353285,239.83111597322218,536.2655803298253,15.83229737086474,12.471292565809891,16.75829938530704,1227.0,22.0,1.4288690166235205,0.5996067566509452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.034020690871988585,0.16666666666666666,0.048112522432468816,0.16596365263022672,0.05723141505823215,15.664925939000156,13.426897453143571,10.007239053047545,7.792754480278447,8.716485693397505,5.802462822715008,5.561400763091005,3.50413906148475,4.519553549046204,2.3993174837656364,2.893417498028672,1.5161958321932154,1.7606011236097967,0.9879045452641108,1.1939925113581713,0.6393540952134847,1.7242834560036207,0.6585581153880586,2.691154151211403,0.8552685236987718,2.7889857397837403,0.8324113674005108,68.95510408876092,34.218158215993355,27.183375515836087,25.00029121000516,24.84093005862367,24.84093005862367,94.0,100.0,46.085445999999976,30.282553999999994,0.11627906976744186,21.08,8.305555555555555,4.916666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,43.0,0.0,1.0,43.0,5.0,2.0,4.0,39.0,7.0,21.0,36.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,7.0,2.0,1.0,21.0,8.0,0.0,4.0,3.0,0.0,1.0,10.0,1.0,0.0,0.0,1.0,1.0,3.2771447329921766,4.498419816041211,3.6951100038645723,4.005057871395335,4.419593336473464,4.3710288804643405,4.353498551059343,4.383587915240834,4.141148628419903,4.232293267473079 +9797240,Fc1ccc(-c2ncn(C3CCNCC3)c2-c2ccncc2)cc1,0,22.790697674418606,6.167897674418604,3.4186046511627906,7.5813953488372094,164.44284570350538,90.8383031430179,1.548534748654209,6.239867441860464,3.998062015503876,7.621561953488371,227.62123199985635,25.195652173913043,6.333239130434783,4.1521739130434785,7.282608695652174,147.35786812344557,96.23628719206963,1.8619947800000005,6.481032608695652,3.0543478260869565,7.706641565217387,272.06375765367187,21.1,6.27276125,3.7875,5.825,154.94221242613366,78.64554705837999,1.6270001452424498,6.387145000000001,2.8930555555555557,7.697021349999997,231.43257893268418,16.444444444444443,6.035231481481481,3.25,4.231481481481482,160.7043301400174,59.641911532607395,1.3833240424905555,6.126037037037038,2.57253086419753,7.545368111111111,188.49634390321341,16.256880733944953,6.016696330275229,3.165137614678899,4.091743119266055,161.06458179005625,58.8105388778569,1.3772790779250368,6.105913761467888,2.51223241590214,7.530604183486239,186.7722590516314,17.00925925925926,6.016267592592594,3.2314814814814814,4.12037037037037,158.8163984710855,61.80458476699258,1.4475210867817865,6.115667592592593,2.5272633744855963,7.517716370370369,197.1843807576864,16.513761467889907,6.022227522935779,3.0091743119266057,3.81651376146789,156.39503012895221,59.06424822438164,1.4557345182430272,6.126976146788989,2.72579001019368,7.512728733944955,194.4478711800875,13.525862068965518,5.810034482758621,2.456896551724138,2.7413793103448274,157.95872643207613,47.134622149075845,1.2932048226881805,5.90812672413793,2.4803639846743297,7.359861862068965,165.44105336479237,10.580357142857142,5.756803571428572,2.0892857142857144,2.0089285714285716,166.72820422768095,35.32670054402857,1.0431339854095178,5.819669642857143,2.3660714285714284,7.360268571428571,128.0472299294201,7.160627366143861,0.12773412655489444,0.011768721349419654,0.5365062195781503,3.765278528934559,2.102465509968059,34.627574239805696,0.23105429992057538,0.11827084910762568,1.2589087194279185,0.0657116538669551,50.27240797941806,0.43138476732428815,-0.0004537423284030906,-0.004145321053806014,0.1697627389658336,0.9490794083758552,-0.3229596826924605,2.0263340049443785,-0.008608979142245312,0.00149209325840054,0.006861980493438164,-0.0016623919862675312,0.3460443042647561,-0.4327203893996754,-0.008318690508382869,-0.0010613773635365577,0.02744726879394268,0.16669821525148726,-0.07347139980432485,-2.018713524870215,-0.00903912568820597,-0.007547070037858298,0.03266104801394147,-0.004222398053001604,-2.1180164569621995,0.08054403781823995,-0.009763799250846299,5.176382464172894e-05,0.017326683091961646,0.08894197063477757,-0.017168336510811098,0.4090287468234303,0.011874876142165073,-0.007834587264387158,0.006876283921683848,-0.005575324840253988,2.568750432916753,0.1502324589041437,-0.006262972298440516,0.0005434102134059572,-0.027011873514570215,-0.0853126659091698,0.08282546406636279,0.7041383956702166,0.016740094484959642,-0.005183245096531229,-0.027529964953367642,-0.0034481531202087937,3.143581741621368,-0.08676862368046784,-0.005516318630691264,-0.0011259094986282117,-0.11122628848426572,-0.4743655229052741,0.11026654460911434,-0.34650036502710574,0.01150692592707765,-0.0049167362738617455,-0.015404556350112501,-0.002684946717945639,1.7721437654753098,-1.188790370197627,0.006257936598508488,9.886881808517633e-05,-0.1518251869346684,-0.5756049637542733,0.014787063589519244,-5.717889281695565,-0.04017371977560511,0.0022597674914781774,0.039250491628667776,0.0053573198902456525,-10.2268298431856,-0.5633940060797076,0.013741414744223301,0.0008102100760274467,-0.061365882769810386,0.006573916935528988,-0.36484123353754805,-2.7261936117991215,-0.05585485382580901,0.011151304059976504,0.03325358120471043,0.007551026967046467,-10.504883522650056,0.19506200262690263,0.004079743876999103,4.542363477007185e-05,0.029938963146102098,0.2262081820288959,-0.4167783444212843,0.9684847438150536,-0.028283886011257954,0.00530674640732441,0.012039970125421724,0.0007387755350382195,-3.217105328195968,,,0.47440476190476194,1.3541666666666667,0.6875,0.020833333333333332,0.6666666666666666,0.020833333333333332,0.7407430098748492,0.0036547384115905115,0.017988071744923843,0.9254129340451325,0.2631230569488189,0.2296477697384696,1.6661559439199818,0.4927708266872885,2.0826071846971312,1.6597394993665828,0.34939554375861315,0.0,0.07347214157193536,0.4228676853305486,7.492078484372105,980.0,265.21959999999996,147.0,326.0,7071.042365250732,3906.0470351497697,66.58699419213099,268.31429999999995,171.91666666666666,327.72716399999996,9787.712975993823,1159.0,291.329,191.0,335.0,6778.461933678496,4426.8692108352025,85.65175988000003,298.1275,140.5,354.5055119999998,12514.932852068907,1688.0,501.82090000000005,303.0,466.0,12395.376994090693,6291.643764670399,130.160011619396,510.9716000000001,231.44444444444446,615.7617079999998,18514.606314614735,1776.0,651.805,351.0,457.0,17356.06765512188,6441.3264455215985,149.39899658898,661.6120000000001,277.83333333333326,814.899756,20357.60514154705,1772.0,655.8199,345.0,446.0,17556.03941511613,6410.348737686402,150.123419493829,665.5445999999998,273.83333333333326,820.835856,20358.176236627824,1837.0,649.7569000000001,349.0,445.0,17152.171034877236,6674.895154835199,156.33227737243294,660.4921,272.9444444444444,811.9133679999999,21295.91312183013,1800.0,656.4227999999999,328.0,416.0,17047.05828405579,6438.003056457599,158.67506248848997,667.8403999999998,297.11111111111114,818.8874320000001,21194.817958629537,1569.0,673.964,285.0,318.0,18323.21226612083,5467.616169292798,150.01175943182895,685.3426999999999,287.72222222222223,853.743976,19191.162190315914,1185.0,644.7620000000001,234.0,225.0,18673.558873500268,3956.5904609311997,116.83100636586599,651.803,265.0,824.3500799999999,14341.28975209505,307.906976744186,5.492567441860461,0.5060550180250452,23.06976744186046,161.90697674418604,90.40601692862654,1488.985692311645,9.935334896584742,5.085646511627904,54.133074935400494,2.8256011162790693,2161.713543114977,19.843699296917254,-0.020872147106542168,-0.19068476847507662,7.809085992428345,43.65765278528934,-14.856145403853183,93.21136422744142,-0.39601304054328434,0.06863628988642484,0.31565110269815555,-0.07647003136830643,15.918037996178779,-34.61763115197403,-0.6654952406706295,-0.08491018908292461,2.1957815035154145,13.33585722011898,-5.8777119843459875,-161.4970819896172,-0.7231300550564775,-0.6037656030286638,2.6128838411153175,-0.33779184424012826,-169.44131655697595,8.698756084369915,-1.0544903190914003,0.0055904930613067255,1.8712817739318577,9.605732828555977,-1.8541803431675987,44.17510465693047,1.282486623353828,-0.8461354245538132,0.7426386635418556,-0.6021350827474308,277.42504675500936,16.375338020551663,-0.6826639805300162,0.05923171326124934,-2.9442942130881535,-9.299080584099508,9.027975583233545,76.75108512805362,1.8246702988606012,-0.5649737155219039,-3.000766179917073,-0.3758486901027585,342.6504098367291,-9.371011357490527,-0.5957624121146565,-0.12159822585184686,-12.012439156300697,-51.231476473769604,11.908786817784348,-37.42203942292742,1.2427480001243862,-0.5310075175770685,-1.6636920858121502,-0.289974245538129,191.39152667133345,-129.57815035154135,0.6821150892374251,0.01077670117128422,-16.548945375878855,-62.740941049215785,1.6117899312575976,-623.2499317048166,-4.378935455540957,0.24631465657112134,4.278303587524787,0.5839478680367761,-1114.7244529072304,-65.35370470524607,1.594004110329903,0.09398436881918382,-7.1184424012980045,0.7625743645213625,-42.321583090355574,-316.23845896869807,-6.479163043793845,1.2935512709572745,3.8574154197464106,0.8759191281773901,-1218.5664886274064,21.846944294213095,0.45693131422389954,0.005087447094248047,3.353163872363435,25.33531638723634,-46.67917457518384,108.470291307286,-3.167795233260891,0.5943555976203339,1.348476654047233,0.08274285992428058,-360.3157967579484,0.6814650159713395,0.5550639615063148,0.4380185126109231,0.30615473273173566,0.27833896922754814,0.16413537061726324,0.17524727356090264,0.08955339409369578,0.10974036511869825,0.04767704994618821,0.07140569199122798,0.026142438869684044,0.04383741298814297,0.012646495284411256,0.028453469492153025,0.007013389070833956,9.004065576491278,5.689917670617109,4.107712297684932,2.188684472241417,0.38384327538902213,-0.43685962090691116,3.268655626835132,0.9938433376324398,7.004056477772551,1.8864371190453835,17.424771709524126,10.9514105394353,19.000141088930903,11.701845516559759,1.9934184917454434,0.5458650348503212,3.988663103486091,2.238296632174993,8.00191796547918,1.2319875183253566,4.009937163070574,2.434007310619942,20.896935783619675,13.304121205863273,0.25825627152131453,0.6173153602631831,0.7993998200558678,0.8620756659043738,0.8620756659043738,0.8620756659043738,1.489508438130539,805.1430068456183,0.0,2.0,2.0,0.0,9.0,3.0,2.0,0.0,0.0,3.9400289653687497,1.8736843030299664,0.8258087210308585,0.4651162790697674,0.4651162790697674,0.4651162790697674,175.04405052476312,888.6726986000248,48.96637721665006,20.66680694418662,41.114326072771846,,11.0,444.0,0.0,4.39041504767482,5.817220841045895,6.041840829147961,48.445915030768084,12.13273413692322,24.52642128014937,18.460054211687762,19.8518452936921,0.0,11.385714285714286,32.5,16.5,0.5,16.0,0.0,0.025595238095238077,0.5,0.14092419208698254,0.06248263364542428,-0.07844155844155826,0.0205238095238095,0.13054465592972153,0.0,0.5863787375415284,0.8130952380952378,0.4454545454545458,0.5238961038961041,0.7925714285714283,17.77783223699638,0.08771372187817228,0.43171372187817225,22.20991041708318,6.314953366771653,5.5115464737232704,39.98774265407956,11.826499840494924,0.5834553440702784,0.02509410288582183,0.0,0.29861982434127976,0.2631578947368421,0.34086500166678474,-0.550772941140742,-0.0487995769806175,-0.012808673049784697,-0.03671819607604947,0.6591349983332153,1.0650366563466358,0.04023246190782038,0.024768294333642697,0.03803702344095127,-5.17539831523976,0.7472612636280048,0.6533770280094662,1.3829407156938942,0.7123948106591868,0.5216360865818168,1.1801926863411458,0.7459073092781212,1.0323051140319124,0.6388157920374009,0.5188836612267391,0.6734313406316451,0.9353302666322127,0.9394882930513596,0.8545709815463093,1.2984852754577771,1.1037172379032258,0.852804510198219,1.0308157675777758,0.932639208176835,0.9936427851853472,0.8524978073264109,0.583515716365546,0.8477353141601118,0.9729002601375558,0.9422037596508896,0.9555857984452185,1.0317629470218246,1.1547099014336921,0.9487615308500112,0.9572391815069687,0.9402498285714872,0.9238055764891847,0.952071676418996,0.7957213908579099,0.9542382114805396,0.9249365097594016,0.9279282962388093,0.8570228792144408,1.004313421670801,1.2025747262503703,1.0090741614373178,0.8675272106809973,0.925306348741213,0.8913087687737764,0.8658697236194631,0.6874835093828741,0.8382634329017533,0.911735547042508,0.9232586438402148,0.6782443396845987,1.111537489073189,1.3485663082437278,1.0700588911232405,0.7952432759566973,0.9150207745375434,0.9037497417876319,0.7033597165493685,0.41866419511470726,0.6341828924702008,0.9343054045206345,1.0593274481000028,0.6048046401600741,0.843371478679005,1.2192771530038475,1.0066942695471355,0.8816616271625325,1.0553050708034026,1.1541586325267819,0.6566862844853093,0.5079508586725924,0.5433355386725176,1.182505764487646,1.0065736014168143,0.5404072516689317,0.5217164548083952,0.8239623887652949,0.7860516201250137,1.0139731885444536,1.007253248084481,1.2575308526953923,0.586939921737061,0.6135767992158486,0.4985183844007069,1.2368560770604629,0.9968513972809668,0.8344594852070705,0.7777117772049807,0.650201612903226,0.8581316432059753,1.02588509896886,0.9956976053268372,1.0974112119023793,0.8477425122140378,0.8364802859256789,0.8222150453633049,1.0822196158272668,3.0,0.037139067442097745,2.4444444444444455,1.2777777777777777,1.3544444444444446,0.7994444444444446,0.2546031746031746,0.23178854875283444,0.19551524313429072,0.0925,4581.989884504149,5126.233371780554,2339.643212302361,2144.3830839779957,12.212145438398116,0.45613840323318294,6.6417169180758,0.8387030927443002,1.0,0.2631578947368421,1.4862357893333482,3.5525804516721315,4.6004560336712395,4.9611484756323305,4.9611484756323305,4.9611484756323305,0.1111111111111111,0.009284766860524436,0.06606606606606609,0.03453453453453453,0.03660660660660661,0.0204985754985755,0.007072310405643739,0.007992708577683947,0.010290275954436354,0.009250000000000003,0.31270695561518236,17.415637860082306,8.131482834185537,3.9077277970011535,139.93829640611577,1.0,4.126002595163791,109.74817143125118,,85.16623554312494,84.04581231565454,83.22535234393577,85.09226070219327,106.2752186204237,84.68244020756495,85.27343968838461,97.87248268100512,0.06024399054249312,-0.003552240428152866,-0.35223206759079484,0.3164226858345024,0.2520608770593158,-0.15360997893248055,0.05851793114098739,-0.03725954957429763,0.012615900449338493,0.005450737124575982,-0.02529828254868366,0.006883384309071279,-0.06043051359516616,-0.06512504318732602,-0.0901862939926687,0.05115927419354841,0.04427247917265153,-0.034945353184624196,-0.05829786143522661,-0.03912121822148801,-0.06381175154150212,0.025943936609465635,-0.06425645687674514,-0.04213079385076069,0.011248181716459643,-0.07643845473551074,0.004398423847827916,0.03229540023894868,0.023621617883324293,-0.008165811248467006,0.011812226406354404,0.05139430924352867,-0.06624275824094014,0.005462098892133033,-0.08484529778450292,0.051096626084997175,0.02098034867928714,-0.04903131580697011,0.04617410823757452,-0.05034773601657293,-0.022657730431780376,0.03939444603189761,0.020334615147854715,0.0724509108495883,-0.043825212515507604,-0.021868118417575175,-0.052473996883265046,0.06253095620381613,-0.01211746111670582,-0.04318594239042763,-0.09566965392410562,-0.20731593488649938,-0.1259841786630066,0.052446303678384494,-0.01000648681387536,0.04980182550609593,-0.041571835418105,-0.012236436297869746,-0.04085952125602849,0.03525082319909641,-0.1660176279830372,0.04899189251369802,0.00840098215852921,-0.2829886800828648,-0.15287181528032912,0.007033201505285996,-0.16512532013064424,-0.17387133582631778,0.01910671571675117,0.031178187125834065,0.08152769828457669,-0.20342828709085406,-0.07867941973122201,0.1075782573916756,0.06884435887059219,-0.11438056173526151,0.001745931113730695,-0.17353018720534957,-0.07872898034726497,-0.24173907970987357,0.09428615879665235,0.026414608693648374,0.11491153429701922,-0.20895922723556112,0.02724090958135521,0.03193934140416117,0.0038596915859777582,0.05580357142857136,0.06007741002175072,-0.19823314220627383,0.027968599160542527,-0.12241229018884524,0.04486943695225614,0.009563815024565884,0.011242686670677952,-0.06399345998132966,17.658957822066018,23.41610055072511,5.669746481494515,13.640223670261081,32.68544624816291,38.826775866739155,39.19035384823594,39.19035384823594,39.19035384823594,49.982572432731146,39.83374798479799,8.385493050206716,0.0,1.7633313977264486,10.148824447933166,4491.319509178656,3733.100598714311,1230.8006994383059,130.0,37.0,51.0,70.0,91.0,98.0,114.0,130.0,138.0,322.1593748280005,27.0,4.859812404361672,5.720311776607412,6.602587892189336,7.488293515159428,8.384118837190895,9.281637253858216,10.184711314926863,11.088537442504965,11.995703404181025,0.6589147286821706,0.9830697674418606,1.1315228228253658,0.6242095970166881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6873146776215013,0.9702690378476971,1.001016277375972,0.647111001188115,9.0,2.0,0.0,0.0,0.0,0.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,4.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,9.883888251797686,5.817220841045895,0.0,0.0,0.0,4.9839785209472085,9.374393568622029,0.0,0.0,0.0,62.32935846844683,29.562430955768104,17.715176064461463,187.47098752264333,-302.91742088952367,-26.839085393069507,-7.044591183477293,-20.19449472596824,362.51503804740645,585.7552777105011,22.12729182358055,13.622215760709329,20.91983134680361,0.45454545454545453,0.8138936772986362,0.20228953651315265,0.0,0.07596973359263826,111.63393966783204,0.18610632270136393,6.0,0.1111111111111111,0.27389665940008906,0.6547009061055606,0.8478126743971977,0.9142842636517646,0.9142842636517646,0.9142842636517646,3.6757000000000017,,0.904761904761905,1.1329149122110111,1.2547015353471327,0.9377896868462214,-4.070931940590826,1.0040333245173236,0.8745519724483405,-1.8239581782744225,91.99270000000003,4.39041504767482,0.0,19.8518452936921,0.0,18.88348407499998,13.08951281182515,60.93643046980625,0.0,22.514758973090913,4.007333185232471,0.0,5.313205979041787,2.3978952727983707,6.829793737512425,4.727387818712341,8.437933510430605,6.86171134048073,10.095140436758967,28.333333333333336,16.051005553455948,8.789530703083193,0.0,0.0,0.0,0.0,3.744346124571144,2.272682350718065,42.272000000000006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.65548138149072,5.316788604006331,4.39041504767482,0.0,27.624569501510923,0.0,5.817220841045895,18.88348407499998,55.11920962876035,0.0,22.514758973090913,0.0,26.84101267171759,29.554531137724556,32.524757974551264,219.49634286250236,,170.25707426085302,167.99721505529152,166.3461462265926,170.106372263816,213.56817022599512,169.28121097142014,170.47400004573188,196.2009549065789,32.524757974551264,219.49634286250233,,169.50103261921134,167.07206039073685,165.35480377234134,169.31975941099515,216.6213691814383,168.45018844727704,169.74351526131608,197.5689235402847,4.8778533134567,150.04557831292738,,116.41744119365028,114.95085008727352,113.86225536603595,116.33487893429482,145.35276304511794,115.78243711014963,116.55172470880277,134.18501267545972,1.355198248939636,9.145680952604264,,7.094044760868876,6.999883960637146,6.9310894261080245,7.087765510992334,8.898673759416463,7.053383790475839,7.1030833352388285,8.17503978777412,2.490369096584085,109.74817143125118,,85.16623554312494,84.04581231565454,83.22535234393577,85.09226070219327,106.2752186204237,84.68244020756495,85.27343968838461,97.87248268100512,41.72156862745098,0.0,0.0,0.0,13.281084226186138,0.0,0.0,43.0436999271668,4.198045365095329,3.403015248990628,0.0,0.0,0.42695709456622166,0.0,0.0,0.0,0.0,27.825773051088948,447.6301488140695,63.90813894133397,152.76095942190165,197.8196094478633,213.32938445219023,213.32938445219023,213.32938445219023,910.0,126.6057138409798,102.35587675598026,72.6704012809677,42.74,42.74,0.8333333333333334,8.862616320438722,5.754887502163468,4.161703810918989,4.81457058723414,,4.810740365955153,4.810921801825782,4.810074919741403,4.8111092805178,4.785325865068577,4.810841222213108,4.810551234014871,4.803710624961827,0.17340432545495787,0.20060710780142252,,0.2004475152481314,0.20045507507607427,0.20041978832255847,0.20046288668824166,0.1993885777111907,0.20045171759221284,0.20043963475061963,0.20015460937340945,2.3013932977086506,2.4471155963288056,,2.4463197318627565,2.446357445901659,2.4461813971800814,2.4463964145332167,2.441022861312768,2.4463406964530443,2.446280416571594,2.4448574034879655,242.40999999999997,198.68472696381517,143.4696497022788,,143.7660620952915,143.76168271586184,143.8566939535481,143.72948447988549,145.44548208708036,143.76200905448422,143.78368074762292,144.18163516551584,8.278530290158965,5.977902070928283,,5.990252587303812,5.99007011316091,5.994028914731171,5.988728519995228,6.060228420295015,5.99008371060351,5.990986697817622,6.007568131896494,6.167188019155283,5.841592249851674,,5.843656147104394,5.843625684795911,5.844286360530489,5.843401690184702,5.855270060190691,5.84362795479057,5.843778690440231,5.84654259740568,15.553766576904202,8.789530703083193,3.403015248990628,3.9786066232048385,-0.2342604986336947,10.966533656672548,7.672741297136138,2.0367330593088164,0.0,284.0172721728164,103.10642333727098,-166.60034839095908,-14.761121905269475,-3.8744267067664895,-11.106689892730603,199.37820498506844,322.15721714467924,12.169701286679723,7.492028305690216,11.505614898024257,1267.0,37.0,1.1719517726818327,0.5450991885001009,0.0,0.0,0.2823601613688128,0.10566949906249123,0.0,0.0,0.0,0.0,0.0,0.0,0.09622504486493763,0.028867513459481287,0.45412414523193156,0.1703259413026266,0.5812242912240134,0.14987246752584996,16.355160383312146,13.321535076151553,11.826499840494924,8.266177783756863,10.298541861419281,6.07300871283874,8.937610951606034,4.567223098778485,7.681825558308877,3.3373934962331746,6.497917971201747,2.378961937141248,4.296066472838011,1.239356537872303,3.243695522105445,0.799526354075071,3.0701472015699283,1.2898217424689045,5.350013331339092,1.9183790339670759,8.839264197956414,2.668067006588542,79.30781962742361,41.395541306244574,26.5268606776781,24.90524922151296,24.90524922151296,24.90524922151296,128.0,152.0,49.35606699999999,24.733932999999997,0.5348837209302325,177.05,5.777777777777779,5.305555555555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,17.0,17.0,43.0,0.0,1.0,46.0,17.0,0.0,8.0,38.0,17.0,27.0,29.0,0.0,0.0,0.0,19.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,4.0,1.0,3.0,24.0,5.0,0.0,4.0,0.0,0.0,4.0,3.0,0.0,0.0,1.0,2.0,3.0,3.597312260588446,7.622319897525479,4.178226046202803,4.79061187011829,5.408572135783628,5.934894195619588,6.238446687902034,6.670132406403093,7.088095707971037,7.428342478164347 +9886273,CCCC[C@](C)(O)C/C=C/[C@H]1[C@H](O)CC(=O)[C@@H]1CCCCCCC(=O)OC,0,17.692307692307693,5.8872307692307695,2.4923076923076923,4.584615384615384,165.286200614061,69.11170921538465,1.2533401597578768,5.940661538461539,4.268482905982905,7.506947138461537,178.16166171819057,19.630769230769232,6.11,3.1384615384615384,3.769230769230769,145.62341106825696,71.54830195384613,1.6578472481846152,6.25046923076923,2.647863247863248,7.595865046153846,230.84272922739166,14.894308943089431,5.909349593495936,2.772357723577236,2.4390243902439024,154.26287272099742,52.45308786178862,1.3391701616339835,6.011838211382114,2.444557362240289,7.479284325203253,177.41261543263138,11.491428571428571,5.846857142857143,2.177142857142857,1.6571428571428573,160.96660066788488,38.33268776,1.1196918684011714,5.91826,2.5092857142857143,7.482504320000001,142.44632100779648,9.978947368421053,5.71521052631579,1.9947368421052631,1.3736842105263158,163.99801779860334,32.76014972105263,1.0334598703475473,5.776645263157896,2.47719298245614,7.381732189473684,127.1266490264999,9.842696629213483,5.677696629213484,2.056179775280899,1.202247191011236,163.62274375000695,32.2440996235955,1.0428264412058317,5.743205056179775,2.221441947565543,7.34466384269663,127.90363444867735,9.959302325581396,5.711511627906977,2.0697674418604652,1.3313953488372092,163.4042296527514,32.52398369767441,1.0466998005022847,5.776430232558139,2.2175387596899228,7.375412,128.80923443148566,10.573099415204679,5.724619883040936,2.0701754385964914,1.5029239766081872,164.39506313031484,35.65085346783625,1.0289700677329592,5.784909941520469,2.4299057829759585,7.389854011695907,128.83444731875727,10.425925925925926,5.855555555555556,2.04320987654321,1.4012345679012346,163.16247531048987,33.763061938271605,1.0439048566185494,5.913975925925926,2.6674382716049383,7.509655160493828,129.97579002013956,7.2544378698224845,0.11984378698224848,0.015193030890548093,0.48899408284023665,3.0698224852071005,1.2264853034233536,34.475586924023666,0.21957886849114178,0.11400828402366858,1.7777514792899407,0.07687762745562127,49.19546775489756,-0.05207100591716018,-0.004686390532544309,-0.007435845776226012,0.13349112426035495,0.7775147928994082,0.0011406699631970915,-0.22263706130178823,0.000622764216804566,-0.003991834319526485,-0.10590236686390533,-0.0034566324260355084,0.21119538566263182,-0.041179583393467216,0.008774099196613294,0.00024721524030779185,-0.05734930485399533,-0.008659258190215059,-0.1132308280387846,-0.29004429112811453,-0.01974537154709808,0.007701597152066252,0.08733346963647153,0.005924979173521909,-3.294909981014512,-0.7045477599323754,-0.011946644125105644,-0.0006733178617095897,-0.04952155536770922,-0.25311918850380394,-0.0932489551424847,-3.33613036147422,-0.017139691862355606,-0.01148305325443783,-0.15019226073072225,-0.007449258224852072,-4.235033705417496,-0.10706944876985365,-0.0005482404235440752,0.0008305596435058585,-0.0022734350669573336,-0.09775770787916535,0.0031969187482476487,-0.5068617862099034,-2.8646725551491554e-05,-0.0008222111491747261,0.0304958216547285,3.652120834631158e-05,-0.4204795263733313,-0.13862110232032446,-0.005397805996941708,-0.00040011344390754837,0.012129512665381285,-0.2077654411275846,-0.007458191051602455,-0.6354211515085431,-0.0011462195209754845,-0.004805215743634092,-0.08746169728667565,-0.003749474646632533,-0.324899405557834,-0.3586418054217696,-0.007994949772946201,-0.0004635402353437194,0.007964772258153292,-0.11624466767579468,-0.02896423181894978,-1.6803368199986235,-0.005461261124599116,-0.007516513003990654,-0.15327448664434348,-0.005109599190862801,-1.6050661860518785,0.6061109380947438,0.006754503616042063,0.0009927833905770927,-0.0402311498667774,0.001972386587771195,0.031575034168079594,2.8695193181715637,0.007525528901498264,0.007315422678985406,0.052966519410514036,0.0031562330931866147,3.01586812080504,-1.0136971290817447,-0.00969468916648401,-0.0003571805424139078,-0.016154576667397183,-0.3584264738110892,-0.1015261763474622,-4.827555095438674,-0.020632313728525736,-0.010629509094893666,-0.0692288719247409,-0.004507696591423771,-6.1643664553599296,,,0.46913580246913583,0.7037037037037037,0.14814814814814814,0.0,0.5555555555555556,-0.4074074074074074,1.3189722246178253,0.02264269142449617,0.025827876609681354,0.4771451377421085,0.10504050548047811,0.3691395276273626,1.7961173623599338,0.47418003310784074,1.950257645160377,1.6227695133364406,0.0,0.32748813182393627,0.0,0.32748813182393627,5.881106527938477,1150.0,382.67,162.0,298.0,10743.603039913964,4492.261099000002,81.467110384262,386.14300000000003,277.45138888888886,487.9515639999999,11580.508011682386,1276.0,397.15000000000003,204.0,245.0,9465.521719436701,4650.639626999999,107.76007113199998,406.28049999999996,172.11111111111111,493.731228,15004.777399780458,1832.0,726.8500000000001,341.0,300.0,18974.333344682684,6451.729807,164.71792988097997,739.4561,300.68055555555554,919.9519720000001,21821.75169821366,2011.0,1023.2,381.0,290.0,28169.155116879854,6708.220358,195.94607697020498,1035.6955,439.125,1309.4382560000001,24928.106176364385,1896.0,1085.89,379.0,261.0,31159.623381734636,6224.428446999999,196.35737536603398,1097.5626000000002,470.66666666666663,1402.529116,24154.063315034982,1752.0,1010.6300000000001,366.0,214.0,29124.84838750124,5739.4497329999995,185.62310653463803,1022.2905,395.41666666666663,1307.3501640000002,22766.84693186457,1713.0,982.38,356.0,229.0,28105.527500273245,5594.125195999999,180.03236568639298,993.5459999999999,381.4166666666667,1268.570864,22155.188322215534,1808.0,978.9100000000001,354.0,257.0,28111.555795283835,6096.295942999999,175.953881582336,989.2196000000001,415.5138888888889,1263.665036,22030.690491507496,1689.0,948.6,331.0,227.0,26432.32100029936,5469.616034,169.112586772205,958.0641,432.125,1216.5641360000002,21056.077983262607,471.5384615384615,7.789846153846152,0.9875470078856261,31.784615384615382,199.53846153846155,79.72154472251799,2240.913150061538,14.272626451924216,7.410538461538458,115.55384615384615,4.997045784615382,3197.705404068341,-3.3846153846154117,-0.3046153846153801,-0.4833299754546908,8.676923076923071,50.53846153846153,0.07414354760781094,-14.471408984616234,0.04047967409229679,-0.2594692307692215,-6.883653846153846,-0.22468110769230804,13.72770006807107,-5.065088757396468,1.0792142011834351,0.030407474557858395,-7.0539644970414255,-1.0650887573964523,-13.927391848770506,-35.675447808758086,-2.428680700293064,0.9472964497041491,10.742016765285998,0.7287724383431948,-405.273927664785,-123.2958579881657,-2.0906627218934877,-0.1178306257991782,-8.666272189349113,-44.29585798816569,-16.31856714993482,-583.8228132579885,-2.999446075912231,-2.00953431952662,-26.283645627876393,-1.3036201893491126,-741.1308984480618,-20.343195266272193,-0.1041656804733743,0.15780633226611313,-0.43195266272189337,-18.573964497041416,0.6074145621670533,-96.30373937988165,-0.005442877854783396,-0.15622011834319796,5.794206114398415,0.0069390295857992,-79.89111001093295,-24.674556213017752,-0.960809467455624,-0.07122019301554361,2.1590532544378687,-36.98224852071006,-1.327558007185237,-113.10496496852066,-0.20402707473363624,-0.8553284023668684,-15.568182117028265,-0.6674064871005909,-57.83209418929445,-61.68639053254437,-1.3751313609467466,-0.07972892047911974,1.3699408284023662,-19.994082840236686,-4.981847872859362,-289.01793303976325,-0.939336913431048,-1.2928402366863925,-26.36321170282708,-0.8788510608284017,-276.0713840009231,103.64497041420118,1.1550201183431927,0.16976595978868286,-6.879526627218936,0.33727810650887435,5.399330842741611,490.6878034073374,1.2868654421562031,1.2509372781065045,9.0572748191979,0.5397158589349111,515.7134486576618,-164.21893491124263,-1.5705396449704097,-0.05786324787105306,-2.6170414201183436,-58.06508875739645,-16.447240568288876,-782.0639254610652,-3.3424348240211694,-1.721980473372774,-11.215077251808026,-0.730246847810651,-998.6273657683086,0.751342454909622,0.6401517778293209,0.47418003310784074,0.3877962998717102,0.31951310187218085,0.23381201472015065,0.20601894595149625,0.14336705276505046,0.13191693666777904,0.08682162890464756,0.09157096761191283,0.05723487700665759,0.057927063113974636,0.035257899837966594,0.039642404143336044,0.022147342382235705,8.029748544246415,5.743295525105662,3.5559740540020113,2.2429587183324524,0.4214967626519004,-0.5005275871457263,4.018008887922495,0.9771380355760451,6.028479066754046,0.9877834288068706,13.643667605696407,11.003650839659985,16.015188028548327,11.754481973697054,1.94071520022308,0.7409297800407609,3.5020639198026706,2.2928820835276804,7.009361311449978,1.1661570113563546,3.714979894987951,2.488895718671926,20.84774997926357,14.700533350831885,0.20803292678530413,0.4441038860075377,0.7017688588380974,0.8572201947252552,0.8976563916389906,0.8976563916389906,2.3060378875929333,483.09480891403854,0.0,1.0,2.0,0.0,3.0,12.0,0.0,3.0,0.0,4.755975101466364,3.318901909302692,1.750375961704882,0.804071730869083,0.5579178847152377,0.5579178847152377,331.7420731088296,1629.725550764857,73.65431331021335,25.072700780997806,48.66350657304173,,18.0,704.0,11.70501719873199,19.802129157825053,30.009183949565582,12.841643245852019,51.36657298340809,7.109797541277533,0.0,19.075777413358384,11.660600153490673,0.0,12.666666666666668,19.0,4.0,0.0,15.0,0.0,0.030864197530864154,-11.0,0.09179487179487178,0.006720244929200203,-0.08507462686567158,0.037377607492549925,0.15681524926686186,0.0,0.525128205128205,0.8419753086419749,0.43333333333333324,0.5184079601990048,0.804597701149425,35.612250064681284,0.6113526684613966,0.6973526684613965,12.88291871903693,2.836093647972909,9.96676724593879,48.49516878371821,12.8028608939117,0.5571847507331381,0.22368421052631574,0.039473684210526314,0.19736842105263155,0.8181818181818182,0.2503968597968866,-0.6140770104331349,-0.07132361474663956,-0.00944733862204823,-0.03411538946850751,0.7496031402031132,1.8383379716527162,0.03951157549287007,0.028282122640811026,0.03911357386495141,-4.289196975626947,1.067014681892333,0.7975668523126751,1.4269849580462861,1.2700871248789933,0.651349267540478,1.4213382300825865,1.0772007295033774,1.4069192770940853,0.8129993668061076,0.7478217133389546,0.7936995241767093,1.3052703359004632,1.010772026154193,0.7187175557026335,0.8652271982723087,1.7352568491803022,0.9778663707994057,1.3050785600711794,1.0205226762471407,1.2990259580223995,0.7414376244097721,0.6167383291016597,0.7002186494226447,1.2246164641527486,1.1059725005826149,1.0995119033512204,1.0120155720893964,1.202378647489974,1.078603370415244,1.1308882117234798,1.106452757546843,1.1287904065129497,1.098785471833252,1.139852026551534,1.102036858848565,1.1198089432529856,0.9790126212758651,0.907416069501874,0.7811819887596786,0.9272940337290467,0.9748813050359127,0.9832757600296239,0.980427175414105,0.9890356158050885,0.9175189507447264,0.9626154544484854,0.8920587888648727,0.9978500666277337,0.9695254504463223,0.8822778849580576,0.8221884167271789,0.9671840499472466,0.9649233754645551,1.000249850145654,0.9716161892802472,1.0045447344469747,0.8928845171672053,0.9031464630069822,0.8676333902381095,1.0051113004777832,1.0128153571835048,0.9512681523858864,0.8849526038106922,1.05360318782503,0.9510318982983987,1.0223850262926342,1.0141162415566807,1.026706348390244,0.9595586809965309,0.9791513360077916,0.9390077922997688,1.031930193544416,0.8842028944029461,0.8657844265705011,0.8258200466210817,1.242279626138596,0.9594069986067714,0.9517968308649306,0.8855226358671329,0.9461830695164736,0.8639430284539038,0.918445885173048,0.8724347047539094,0.9219481299525484,1.1574406380279139,1.1814049701635116,1.121556856850366,1.0129910484863698,1.1334799204241506,1.0854990232462067,1.155953577703209,1.0910953042071196,1.1827320682526885,1.1906515163220146,1.175303802831234,1.116248635090781,6.0,0.1922314049586777,3.111111111111112,2.263888888888889,0.9700000000000002,0.6044444444444445,0.6122448979591837,0.44451530612244894,0.2353395061728395,0.24469135802469139,4553.772109060732,5655.387173522873,2400.3157657986367,2018.6909287287592,15.577860826823496,0.45242199002530586,8.530094031214754,0.8262238106424583,1.0,0.8181818181818182,1.2663927115620912,2.7034659037257622,4.271991851323572,5.218296082159371,5.464449928313217,5.464449928313217,0.2222222222222222,0.008009641873278238,0.08888888888888892,0.06658496732026144,0.03129032258064516,0.02084291187739464,0.021865889212827987,0.014339203423304801,0.009051519468186133,0.010195473251028809,0.4932910401180383,25.037037037037038,13.26530612244898,9.846153846153847,163.7326581784313,1.0,4.165507618767065,180.48555733314518,,169.26581752665987,168.8117485880551,170.24780362508773,169.27516960926098,187.0885358949675,169.1548107793661,169.2849853078229,177.74663184244082,-0.007177814029363843,-0.03910415926057533,-0.48942477836018944,0.2729912875121005,0.2532767925983037,0.0009300314973308401,-0.006457817869567516,0.0028361755440491736,-0.03501354619720234,-0.05957096258820397,-0.044962787490169354,0.004292984604086963,-0.005676467857663916,0.07321279990854204,0.01627162098785633,-0.11728016118496142,-0.0028207683773059846,-0.09232139000992172,-0.008413034178861294,-0.08992382410375088,0.06755296089245032,0.049125803383583036,0.07707026568870365,-0.06697588479960116,-0.09711955255185273,-0.0996851353410186,-0.04431754707538146,-0.10127229982021851,-0.08245401475933474,-0.07602941093726043,-0.09676790619478913,-0.07805710986732338,-0.10072121822352753,-0.08448439643020923,-0.09689760820405476,-0.08608585096735634,-0.01475916545033056,-0.004574625329766003,0.05466714637054857,-0.004649207724053599,-0.03184474292902649,0.0026065691446317705,-0.01470204952063358,-0.00013046212392085085,-0.007211854438612826,0.01715415344045106,0.000475056392282579,-0.00854711918724406,-0.019108455376945218,-0.045040349048225944,-0.02633532747942133,0.024805029531091934,-0.06767995287309521,-0.006080946123679775,-0.01843104666815003,-0.005220081189286779,-0.04214795253506762,-0.04919793250382168,-0.048771986997087964,-0.006604254830476518,-0.04943757350430593,-0.06671142471599659,-0.030510056794006625,0.01628807492289335,-0.03786690215344892,-0.023615637087623556,-0.048739904666502215,-0.02487152412309399,-0.06592953370327191,-0.08621817415422064,-0.06646405931052426,-0.03262630196034856,0.08355036585482195,0.05636089935177494,0.06534465688440905,-0.08227328566657045,0.0006425083526085812,0.025744323295148887,0.08323337103717278,0.03427255524728172,0.06416571165536264,0.029794107909655414,0.041055287443783256,0.06130377976749294,-0.13973475922904965,-0.08089438268435231,-0.023509498860830817,-0.0330363438624168,-0.11675804563237101,-0.0827781434185011,-0.1400282207255095,-0.09396311161589796,-0.09323453278787125,-0.03894181652004132,-0.05863469959483212,-0.12530354393766788,16.964765453107194,15.315321612662483,3.5411061774895236,11.36421880563544,25.291940388921553,32.32452265465868,34.632612703956546,34.88073578087962,34.88073578087962,52.65695641933018,43.814776860083896,0.0,8.84217955924628,0.0,8.84217955924628,8183.516392429577,6657.508337391723,2137.103248713489,45.0,35.0,39.0,44.0,44.0,41.0,45.0,45.0,46.0,382.271924316001,27.0,4.8283137373023015,5.60947179518496,6.450470422144176,7.259116128097101,8.110427237575024,8.934982049213234,9.79305865876674,10.629126124296002,11.492243050775025,0.5384615384615383,0.9606153846153845,1.1374989790543908,0.4899880237986973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6088266605251037,0.9466063348416291,0.9926494481483554,0.5518265199079367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,2.0,11.0,0.0,1.0,0.0,3.0,0.0,1.0,0.0,0.0,14.94991774348146,5.783244946364939,0.0,0.0,0.0,9.589074368143644,0.0,0.0,0.0,51.17988552798843,32.60702369139466,24.677455338174806,18.814814740009524,166.39849422840712,-408.0781602422716,-47.39732801120138,-6.2781255421887945,-22.67100890234843,498.1405673372367,1221.6473905225853,26.256985299011973,18.79457523880901,25.992497670693304,0.5,0.7492519086904363,0.19123820040509504,85.26870563713243,0.1243679561103324,53.565235392641405,0.2507480913095635,9.0,0.48148148148148145,0.21028152893990432,0.448904149938706,0.7093541915659458,0.8664857817004137,0.9073590484612598,0.9073590484612598,3.9536000000000033,,1.25,1.4285714285714284,0.865670929391506,1.2463278954934687,-5.41147132169576,1.2936046511627908,1.2424740010946906,-1.9949723902901284,106.23460000000006,24.538992111625102,0.0,0.0,11.835812092322787,96.18152945029937,7.109797541277533,12.152040213667762,0.0,0.0,4.007333185232471,0.0,5.272999558563747,2.3978952727983707,6.705639094860003,4.844187086458591,8.220133957151859,6.985641817639208,9.784422445377189,34.99999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.44,0.0,23.324847285307094,0.0,0.0,0.0,3.87838262547137,0.0,-0.03373312322953592,73.9374336385354,0.0,0.0,0.0,40.78041976400772,14.325937321943693,11.835812092322787,84.47651225156739,12.152040213667762,0.0,0.0,0.0,31.849221546915327,39.57373293413174,32.58587901372069,360.97111466629036,,338.43904246072714,337.5176770702901,340.4314834776279,338.4580186336706,374.577921517468,338.2137989919794,338.4779355044536,355.64103941749573,32.58587901372069,360.97111466629036,,337.28163505332,336.1949257475386,339.6299363207838,337.3040113230285,379.58854311163066,337.01601690756945,337.32749661455125,357.488236075172,4.645635429669229,269.9185421298922,,254.67604510789974,254.1614970457252,255.78943104389145,254.68664467208635,275.03395985604254,254.55023678527658,254.69776977471585,264.32128261941267,1.2068844079155812,13.369300543195939,,12.5347793503973,12.500654706307042,12.608573462134368,12.53548217161743,13.873256352498814,12.52643699970294,12.536219833498283,13.171890348796138,2.4053089251449675,180.48555733314518,,169.26581752665987,168.8117485880551,170.24780362508773,169.27516960926098,187.0885358949675,169.1548107793661,169.2849853078229,177.74663184244082,61.5294117647059,0.0,5.344927105253658,0.0,0.0,0.0,20.614075032957818,64.5222141296431,8.441338745510047,0.0,4.624120312252309,0.0,-0.883650527946614,0.0,-0.7269741222428119,0.0,0.0,35.868723794015885,497.9071602774101,82.31552625153593,175.72528374217455,277.6794703360322,339.18924534035915,355.1892453403591,355.1892453403591,438.0,127.10720920335459,166.6319012882337,75.21825241808145,83.83,83.83,1.0,6.51471269087253,5.754887502163468,3.5197636969655317,5.099518187452123,,5.100374137752089,5.100832211804578,5.099337497334646,5.100364558299348,5.075208990343037,5.100487400604209,5.1003544977454585,5.089758076827687,0.1303616184061308,0.18887104397970825,,0.18890274584266997,0.1889197115483177,0.188864351753135,0.188902391048124,0.1879707033460384,0.18890694076311884,0.18890201843501697,0.18850955840102546,2.2516456288229834,2.622397835229101,,2.622565670393372,2.622655478213565,2.6223624018191023,2.6225637922053258,2.6176194774534065,2.622587876920085,2.622561819686754,2.620482073332697,326.430000000001,1338.1786240751198,153.2546595039516,,152.64489530184312,152.56249108470945,152.8232828807201,152.64659315980873,155.83098855528607,152.6247440557657,152.64837521248484,154.18228617752078,49.562171262041474,5.676098500146355,,5.6535146408090045,5.650462632767017,5.660121588174818,5.6535775244373605,5.771518094640225,5.652768298361692,5.653643526388327,5.710455043611881,8.192316505591545,6.025352751957879,,6.0213660510938185,6.0208260627264885,6.022534013008654,6.021377173958555,6.042023786253666,6.021234028491446,6.021388848259547,6.0313873519086405,4.624120312252309,23.324847285307094,20.614075032957818,-0.7269741222428119,-0.30503665210205866,0.0,11.707374371907326,3.9459338457116795,1.3989932595419792,412.75343283908785,110.57829920048188,-271.18387765283364,-31.497375877282774,-4.17205965619744,-15.065770980712985,331.0338651460647,811.8324104619966,17.448792370148322,12.489729391723028,17.27303000982971,2331.0,34.0,2.239351963548301,1.1546615599718546,0.25,0.11180339887498948,0.24800564528543081,0.10844081938422322,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.06804138174397717,0.2682459513747883,0.14560304124867512,0.41864077255181875,0.1716656749852946,20.286246282559794,17.284098001391662,12.8028608939117,10.470500096536176,11.182958565526329,8.183420515205272,8.034738892108354,5.591315057836968,5.804345213382278,3.820151671804493,4.029122574924164,2.5183345882929338,2.37500958767296,1.4455738933566302,1.7839081864501218,0.9966304072006068,3.5842210847276537,1.7753677894327085,4.993769103209413,2.299709557685295,6.052586164202027,2.4989880792741626,98.41763761139522,52.815849483295395,33.060069513545976,23.56725570404629,21.827661011348344,21.827661011348344,124.0,136.0,66.08813399999995,41.59386600000003,0.07692307692307693,27.05,11.118055555555555,6.333333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,65.0,0.0,0.0,65.0,0.0,3.0,3.0,62.0,3.0,27.0,62.0,0.0,0.0,0.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,5.0,2.0,0.0,27.0,5.0,0.0,0.0,5.0,0.0,1.0,13.0,0.0,0.0,0.0,0.0,0.0,3.4339872044851463,4.442651256490317,3.7376696182833684,3.8918202981106265,4.110873864173311,4.204692619390966,4.23410650459726,4.382026634673881,4.442651256490317,4.477336814478207 +65335,Clc1ccccc1CN1CCc2sccc2C1,0,35.87096774193548,5.762819354838711,3.3548387096774195,5.162883313420947,156.4741100460157,145.63434641935493,1.9239219570285815,5.957374193548388,2.075550294752472,7.440220322580648,248.66036822338887,29.454545454545453,6.077272727272728,4.03030303030303,5.1447811447811445,141.28334306471507,113.50249412121205,2.1419066769696986,6.289227272727274,2.391663549070957,7.568724909090912,289.1677244036991,25.06896551724138,6.012534482758624,3.6551724137931036,3.7835249042145596,149.95264752184698,94.54500360344825,1.879634752230965,6.19186206896552,2.1669149992904773,7.571856655172417,245.0058631118817,19.986486486486488,5.806527027027026,3.0,2.457957957957958,151.8954524301388,72.39428502702708,1.6281093939025943,5.98677027027027,1.9117450784117451,7.44831943243243,200.0858856359783,15.3625,5.681661249999999,2.525,1.7319444444444443,159.03432563689574,52.56872182499999,1.3426345187160247,5.84561375,1.7449845679012348,7.407976875,157.62007870930273,14.859375,5.595671875,2.546875,1.8663194444444444,159.8590073377519,53.187128749999985,1.338951920189547,5.731414062500001,1.787663966049382,7.27303146875,161.97232305847027,17.21818181818182,5.644981818181819,2.5636363636363635,2.1151515151515152,155.92547037602378,60.43260020000002,1.5100133879670543,5.846736363636365,1.8387579498690605,7.399936472727274,178.95698003677086,18.755555555555556,5.586266666666668,2.488888888888889,2.0246913580246915,156.01614852756146,68.65628506666667,1.5261847606263996,5.774844444444445,1.881527206218564,7.3226588444444465,180.46500898168438,25.9375,5.55731875,2.25,1.4328703703703702,156.02896304630505,98.25329856250004,1.6459093941762808,5.7655249999999985,1.7703117855509836,7.371467781249998,179.45759148963887,16.054110301768993,0.04300707596253899,0.0056532707795060476,0.5411030176899064,2.7207769684356573,1.5245043778823104,73.22906953173776,0.3496982737919481,0.060310301768990604,0.18177533785632355,0.03515043288241414,57.468071931838146,0.7083530413395147,0.004259199697284966,-0.0007362170518082724,0.13436130293570459,0.43097954532802496,-0.11775563345176428,3.2943842571185535,0.011586635210822455,0.0046184372339418646,0.00512828694278342,0.0008682591996973029,1.5125347624571008,-0.16756970110158212,-0.009235552047077435,-0.0014518512767282986,-0.0961641967777818,-0.5162355712728286,0.21997130871561624,-0.6217580506476593,0.026967443952639402,-0.009047342925831602,-0.02702884905668005,-0.005110556352936934,1.980038190187428,-1.8854093427454508,-0.0031740332423995364,-0.00014167529613176919,-0.12523553730629694,-0.4099123403667281,-0.38962253749504033,-8.643952088843259,-0.06561486092758785,-0.004761478752425687,-0.005969886181364285,-0.002333955114323473,-11.834152494135187,-2.5480619146722168,0.0003558675858480817,0.0006090824310393337,-0.029006243496357942,-0.1039061998175769,-0.277735306352006,-11.74302836157649,-0.08120500807910283,-0.0013059066077002993,0.0008948331443599675,0.0010405316337148808,-9.482166328210443,1.6369179240374603,-0.00020808402705513405,-0.0003275911020275561,0.013836498439125922,-0.03790037544481703,0.18291340884019247,7.587538307979953,0.050505427913957714,0.001815857505202928,-0.010181431292119528,0.00023454998048905683,6.7437970495446375,-2.7866616214170836,-0.004933644877495022,-0.00044728652363467845,0.04012865386434587,0.1626885107287465,0.046760102792080996,-12.718974715315486,-0.03444358708250516,-0.00915176804465045,-0.00020238455232009966,-0.0060319800964903966,-3.5150163321596635,1.079939877442479,0.0017219562955255118,0.00033833143891634813,0.009434616718695815,0.04100895129530423,0.1361677160182815,4.970523139229962,0.0430112732860649,0.0021592322811885877,-0.001828776252756378,-2.910385015609957e-05,5.344984012409549,5.13338969823101,0.0029183272632674504,0.0007158634741085254,-0.020941727367325684,-0.08066844593466174,0.03890407208118103,22.78108110132675,0.07464191196912563,0.006330827263267444,-0.01120781796852114,0.0059791084482309995,6.407434746194404,,,0.5263305322128852,1.2352941176470589,0.6176470588235294,0.029411764705882353,0.6176470588235294,0.0,0.7702557398294613,0.005159630698716017,0.020336101286951312,0.6345831068617971,0.23146951411024996,0.2583245941541573,1.4048388466912582,0.4897941082644073,2.0706425331158287,1.714493026506104,0.13210801444792578,0.0,0.10426453251224882,0.35614950660972466,8.485598326709683,1112.0,178.64740000000003,104.0,160.04938271604937,4850.697411426487,4514.664739000003,59.641580667886025,184.67860000000002,64.34205913732663,230.64683000000008,7708.471414925055,972.0,200.55,133.0,169.77777777777777,4662.350321135597,3745.5823059999975,70.68292034000005,207.54450000000006,78.92489711934158,249.7679220000001,9542.534905322069,1454.0,348.7270000000002,212.0,219.44444444444446,8697.253556267126,5483.610208999999,109.01881562939597,359.12800000000016,125.68106995884769,439.1676860000002,14210.340060489138,1479.0,429.68299999999994,222.0,181.88888888888889,11240.26347983027,5357.1770920000035,120.48009514879199,443.021,141.46913580246914,551.1756379999998,14806.355537062393,1229.0,454.5329,202.0,138.55555555555554,12722.74605095166,4205.497745999999,107.41076149728197,467.64910000000003,139.5987654320988,592.63815,12609.606296744218,951.0,358.123,163.0,119.44444444444444,10230.976469616122,3403.976239999999,85.69292289213101,366.81050000000005,114.41049382716045,465.474014,10366.228675742097,947.0,310.47400000000005,141.0,116.33333333333333,8575.900870681307,3323.793011000001,83.05073633818799,321.5705000000001,101.13168724279832,406.99650600000007,9842.633902022397,844.0,251.38200000000003,112.0,91.11111111111111,7020.726683740266,3089.532828,68.67831422818799,259.868,84.66872427983537,329.5196480000001,8120.925404175797,830.0,177.8342,72.0,45.85185185185185,4992.926817481762,3144.105554000001,52.669100613640985,184.49679999999995,56.649977137631474,235.88696899999994,5742.642927668444,497.6774193548388,1.3332193548387088,0.17525139416468746,16.7741935483871,84.34408602150538,47.259635714351624,2270.1011554838706,10.840646487550393,1.8696193548387088,5.63503547354603,1.0896634193548382,1781.5102298869826,23.375650364203985,0.14055359001040388,-0.02429516270967299,4.433922996878251,14.222324995824824,-3.885935903908221,108.71468048491226,0.382358961957141,0.15240842872008153,0.16923346911185286,0.028652553590010996,49.91364716108433,-9.719042663891763,-0.5356620187304912,-0.08420737405024131,-5.5775234131113445,-29.941663133824058,12.758335905505742,-36.06196693756424,1.5641117492530854,-0.5247458896982329,-1.567673245287443,-0.29641226847034213,114.84221503087082,-139.52029136316335,-0.23487845993756568,-0.01048397191375092,-9.267429760665973,-30.33351318713788,-28.832067774632986,-639.6524545744012,-4.855499708641501,-0.35234942767950084,-0.44177157742095713,-0.172712678459937,-875.7272845660038,-203.84495317377733,0.028469406867846533,0.0487265944831467,-2.3204994797086353,-8.312495985406152,-22.21882450816048,-939.4422689261193,-6.496400646328226,-0.10447252861602394,0.0715866515487974,0.08324253069719047,-758.5733062568354,104.76274713839746,-0.013317377731528579,-0.020965830529763592,0.885535900104059,-2.42562402846829,11.706458165772318,485.602451710717,3.2323473864932937,0.1162148803329874,-0.6516116026956498,0.015011198751299637,431.6030111708568,-153.2663891779396,-0.2713504682622262,-0.024600758799907314,2.207075962539023,8.947868090081057,2.571805653564455,-699.5436093423517,-1.8943972895377839,-0.5033472424557747,-0.011131150377605481,-0.33175890530697183,-193.3258982687815,48.59729448491156,0.07748803329864803,0.015224914751235667,0.42455775234131166,1.8454028082886902,6.1275472208226685,223.67354126534826,1.9355072978729204,0.09716545265348644,-0.08229493137403701,-0.0013096732570244806,240.52428055842972,164.26847034339232,0.09338647242455841,0.022907631171472813,-0.6701352757544219,-2.5813902699091757,1.244930306597793,728.994595242456,2.3885411830120202,0.2025864724245582,-0.3586501749926765,0.19133147034339199,205.03791187822094,0.6861721140588327,0.6528459191648928,0.4382368337102591,0.3734277964918048,0.2841409136259391,0.2241902694473331,0.18598490102003148,0.13618351777953228,0.1205861078581251,0.07894329820411754,0.07958653926740637,0.04712970300851201,0.05190772993640926,0.029910632931058886,0.03327518664317911,0.017564353256943444,17.001103275146626,5.6946761662810195,3.1205247469950876,2.1914334049788833,0.3378945676988133,-0.36409318257873136,3.181911215133742,0.9938753749235723,5.010032567676765,0.6503200655935775,14.543264074202968,10.311399942640657,35.45051730475536,11.705850014649961,2.936379815775777,1.0503643450064772,3.1822745554049505,2.2424522527742967,2.261644369623889,0.6099597936153034,3.4929687996101477,2.4387018768741373,24.44071758292863,15.592515617228836,0.2887416197312473,0.6052199923960966,0.7743176208676207,0.8579736278038954,0.8948545463381098,0.8948545463381098,1.5114090582797535,520.445691001938,0.0,1.0,3.0,0.0,7.0,1.0,2.0,0.0,0.0,3.438901219922997,1.7780456606052821,0.8906335636915097,0.45161290322580605,0.25806451612903114,0.25806451612903114,44.545798823155394,378.98888503735543,28.726458417770104,12.225447904430819,25.1869093137458,,9.0,271.0,0.0,0.0,0.0,0.0,24.65690253147905,17.54772460632,4.877147193701299,23.469520014857956,28.479073706701225,11.600939890232516,8.947619047619048,21.0,10.5,0.5,10.5,0.026330532212885165,0.0,0.0,0.11829917965813619,0.06414147090779648,-0.054157708750339706,0.0,0.038829320876751394,0.0,0.5629800307219663,0.7795518207282911,0.44468085106383015,0.49883855981416986,0.7795518207282911,13.09434757710084,0.08771372187817228,0.3457137218781723,10.78791281665055,3.9349817398742495,4.391518100620674,23.88226039375139,8.326499840494924,0.6751706791232486,0.07982969664715274,0.0,0.2682277807344332,0.2857142857142857,0.45035195725670973,-0.38045553273499544,-0.035254054465645945,-0.012272759120483725,-0.03170462772791629,0.5496480427432903,0.464340468713552,0.028779478350806312,0.01497872479721135,0.024438972037555365,-4.464682451119675,0.6155867725740685,0.8014776043172016,1.1884996743699494,0.7587412587412586,0.8349902217826747,1.089014057844503,0.6127455617416234,0.769433312812785,0.6829781086745587,0.9788260670697907,0.64849841469248,0.831610064924894,0.7851991006052587,1.4921685046157724,1.8074347072777006,1.40301724137931,1.3862512479949043,0.935551718870452,0.7789113929271386,0.7939881475638305,1.1644035314868415,1.1522713701945453,1.0927706851757248,0.8436969536841622,1.0162069315880569,1.0714260491055922,1.071812514839444,1.2567567567567568,1.1244100423728165,1.2400902419214752,1.0147490575666005,1.1213460170612675,1.0166471791832823,0.8919044578392388,0.9799415121700049,1.1402186992791434,1.1965582058594764,1.1278948543181915,0.9997561597926636,1.0060096153846152,0.9997901793302736,1.1568255012260351,1.199634516911883,1.2167647654650193,1.131356628570245,0.8971496001057481,1.1141984680176178,1.1413082995260333,0.6390622974462017,0.9763549469753057,0.9187235255257759,0.9501201923076922,0.9902805222675504,0.8059976215575348,0.6551479935573589,0.6783893676258341,0.903668236332391,0.944079476364947,0.8155379534775551,0.8533046749200823,1.3162962264595657,0.9534883260548519,0.729038677688948,0.8291958041958041,0.8287361117549796,0.8676706945574568,1.3223224411762085,1.0942582369529088,1.184621299174546,0.9545702616597298,1.345727890373402,1.060122506915609,0.9571126091089793,0.6822583220823716,0.4727377306919304,0.8743589743589743,0.8856041576167362,0.790795958635382,0.9655157329466296,0.8378237187582471,0.8765955464455414,1.0382488355958301,0.9672424052655582,0.9137406911886555,1.0624351827845475,0.6654592297809329,0.5816671667490521,0.8103966346153846,0.8774819926058133,0.9253166593468698,1.050849332963546,1.0448880110243404,0.8446237978405122,1.2437705681168254,0.9076895453970608,0.9482575640162234,3.0,0.0,1.7777777777777786,0.8819444444444446,0.7505555555555556,0.20500000000000007,0.2473015873015873,0.16145833333333331,0.06477544721592339,0.006558641975308643,3363.866327612305,3756.494397840791,1714.5779504278582,1576.2255431135072,9.280774993588073,0.4692221952952523,4.9260293770553965,0.8840275368263816,1.0,0.2857142857142857,1.5152950904638778,3.176150649781593,4.063562746695365,4.502583407161069,4.696131794257844,4.696131794257844,0.15789473684210525,0.0,0.0683760683760684,0.03834541062801933,0.04415032679738563,0.013666666666666667,0.01766439909297052,0.013454861111111112,0.008096930901990424,0.0032793209876543217,0.36492872140397165,12.055401662049862,5.325443786982248,2.71280276816609,110.64589779711473,1.0,3.7839520812950274,64.38839666614986,,49.82672750305001,51.66147456495456,51.0599176280125,49.804176284767166,62.469207467886406,51.857191011965426,52.06185832543917,59.90294921993589,0.044122846300704795,0.09903485884497033,-0.13022851381489975,0.24831002331002325,0.15840311437795715,-0.07724191229633506,0.04498738381061574,0.0331332353608239,0.07657791618473545,0.028212226164788384,0.02470123775151843,0.026319566876214173,-0.010437806764235181,-0.21474494232349106,-0.2568161571158907,-0.1777188328912467,-0.1897382906654213,0.1442903752242276,-0.00849059061686134,0.07711631990692523,-0.15001322594083621,-0.14869370826335,-0.14539099333521321,0.03445457840548254,-0.11744091122494024,-0.07380258181617033,-0.025060765998572602,-0.23144490644490642,-0.15066003024952537,-0.2555732493443313,-0.11803990060391162,-0.18763278473208936,-0.07894967547441238,-0.03284211297179886,-0.06639904328151695,-0.20592569223779533,-0.15871710526315788,0.008274628718261562,0.10773982970130296,-0.053605769230769186,-0.03818989980546586,-0.1821807207518867,-0.16036020171589122,-0.2322144950804518,-0.021653126736164825,0.004922742297787666,0.02960224237339227,-0.1649988595312032,0.10196254375162037,-0.004838367231391973,-0.05794718045615697,0.025570913461538478,-0.01392998245887398,0.11998221290402428,0.10361374733419881,0.1444257284038118,0.03010857932958606,-0.05601107065561886,0.006672747993564622,0.11734858718669619,-0.17357932448676544,-0.1147170498592473,-0.07911995393112232,0.07416083916083918,0.059794872059022966,0.03067233093619283,-0.17368750957299867,-0.09849515900955595,-0.15174468998190224,-0.0011133773960033335,-0.17160471726390072,-0.06116468177893216,0.06726874657909142,0.04003890655168953,0.05984702521995766,0.017435897435897452,0.01507251486287125,0.08931933420055646,0.067876366189191,0.12299538347636887,0.035802047375905977,-0.010060640097403395,-0.0008279798503039293,0.09300788825400544,0.31975547705470575,0.06785690954226785,0.12662819490331823,-0.03870192307692304,-0.02964904763253822,0.02551916061744781,0.31109341204251323,0.21344661258903896,0.10497091006967119,-0.06165752791712523,0.17010056371801796,0.11149555798207651,12.73799103885578,13.512130932031313,2.065979662384912,19.771966292972053,34.8248084633246,39.83999321637589,41.70226797760918,41.89736475180273,41.89736475180273,35.20092306296909,29.14638145060377,2.245836245614738,0.0,1.77249705270823,6.05454161236532,2376.004639435192,2238.893559852288,716.1056554860227,50.0,26.0,34.0,43.0,50.0,48.0,53.0,60.0,53.0,263.05354812800016,19.0,4.51085950651685,5.351858133476067,6.212606095751519,7.067319848653476,7.930565854233965,8.789812386190972,9.653935855445614,10.51528909364212,11.379999603260565,0.741935483870968,0.9566451612903223,1.1054657112498865,0.7084446783996389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7513058141780958,0.9523086654016447,0.990978079552663,0.6718925431541071,6.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,11.336785877934737,29.800041095617345,35.06052151370914,29.53404972518035,0.0,202.03503077956555,-170.67838615511113,-15.815527976069745,-5.50575439210036,-14.223198846259262,246.58082960272094,208.3104988822443,12.91093044170036,6.719693512330459,10.96371046748654,0.4444444444444444,0.9992370283344055,0.3484598920192514,0.9822685423695897,0.0875501928833676,271.6519865681365,0.0007629716655945712,5.0,0.10526315789473684,0.3058609299124741,0.6411031075055574,0.8202264286895083,0.9088423479951808,0.9479099131401035,0.9479099131401035,3.959800000000002,,1.4149159663865545,0.2776853623601607,0.270010002783295,1.429043648192982,0.13990106698110505,0.3658500921866046,0.4214032699335769,-0.0784571233343514,73.58900000000004,0.0,0.0,4.899909730850478,0.0,19.51033443475116,6.544756405912575,56.73858160361058,0.0,0.0,3.6635616461296463,0.0,4.962844630259907,2.3978952727983707,6.459904454377535,4.59511985013459,8.045267716607803,6.580639137284949,9.672752760526098,23.000000000000007,12.574350679572241,0.0,0.0,0.0,1.8841283838638334,0.0,5.157568525867138,0.0,29.65599999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.26943704874648,0.0,0.0,0.0,11.444666136763054,19.51033443475116,0.0,16.00405017709529,35.711898112773966,5.022633313741326,0.0,0.0,21.961785030388803,23.29048023952097,22.657398563629236,128.77679333229986,,99.85816198023569,103.29028026374911,102.08806937334461,99.81060728722534,124.9605699787354,103.67134083661477,104.07413979559203,119.8335891892839,22.657398563629236,128.77679333229986,,98.77616741770478,103.04526376754899,101.84982525324172,98.71780920331307,124.85358680986751,103.34853193174425,103.70231338094479,119.88435556320613,4.704207411297842,98.90478976332801,,79.33664498410329,80.58987858195147,79.4142026077292,79.31622248915329,101.89076567294256,81.12504776772096,81.64308722836505,96.290792520459,1.3327881508017199,7.575105490135286,,5.874009528249158,6.075898839044065,6.005180551373212,5.871212193366197,7.350621763455024,6.0983141668596925,6.12200822327012,7.049034658193171,2.3816568457026093,64.38839666614986,,49.82672750305001,51.66147456495456,51.0599176280125,49.804176284767166,62.469207467886406,51.857191011965426,52.06185832543917,59.90294921993589,29.521568627450986,0.0,0.0,6.197967984518909,0.0,0.0,0.0,30.720320466132556,4.3285770187704715,0.0,0.0,0.0,0.0,2.4685185185185183,0.0,0.0,0.0,20.828668837777318,448.2735791920785,46.97414780438021,98.46067014322938,125.97044514755632,139.58008562199313,145.58008562199316,145.58008562199316,453.0,107.41224637717116,0.34228119020801473,63.377985468118894,31.479999999999997,3.24,0.8,7.47965248348707,5.247927513443585,3.760200374700042,4.0747368976428255,,4.091384732610118,4.083122717214058,4.081723452085176,4.091431459323967,4.098362347380252,4.084592578776409,4.085556824547675,4.093622619883747,0.22118825733529657,0.23969040574369563,,0.24066969015353634,0.24018368924788577,0.2401013795344221,0.2406724387837628,0.24108013808119133,0.24027015169272992,0.24032687203221617,0.24080133058139688,1.8551004981876793,1.9354344306749618,,1.939511729246885,1.9374903185967491,1.9371475650130154,1.939523149939408,1.941215717511802,1.9378502384825316,1.9380862796436273,1.9400585552259018,192.6099999999997,101.7549051161399,82.58206846924648,,81.2172017406452,82.02821224566996,82.11821884894849,81.20572368520128,80.878993679787,81.90420827232401,81.83047103888838,81.2718783767254,5.985582653890582,4.857768733485087,,4.77748245533207,4.825188955627645,4.830483461702852,4.776807275600075,4.757587863516882,4.817894604254354,4.81355711993461,4.780698728042671,5.153195281752559,4.944420819271887,,4.927755319890626,4.9376914909306455,4.938788153364291,4.927613984479595,4.92358238355785,4.9361786236575895,4.935277931895396,4.928428308353658,0.0,4.024452422944487,3.076425325788752,2.7232868795666416,0.0,10.376273095658018,1.1780283919123204,3.150548626858151,0.0,223.36543360175008,90.63611916053654,-76.5690310536353,-7.0950966903846515,-2.4699687436656554,-6.3807525878029425,110.62007102600262,93.45139368272136,5.792048168439262,3.014561086539398,4.918494404353755,533.0,23.0,0.9398264056274472,0.7424077968634545,0.0,0.0,0.20118446353109126,0.15520365812642456,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.10206207261596575,0.3180413817439771,0.21164381582728894,0.45256011835984555,0.28466074306047817,11.664925939000156,11.098380625803177,8.326499840494924,7.095128133344291,7.387663754274415,5.828947005630661,6.32348663468107,4.630239604504097,5.185202637899379,3.394561822777054,3.9793269633703185,2.3564851504256006,2.4915710369476445,1.4357103806908265,1.7635848920884931,0.9309107226180026,2.299816755869285,1.7117733330419251,3.400951751801014,2.212835758331703,4.6046692847894946,2.7045679453879456,57.149491522685,36.83214122462272,26.931698938207006,23.511439497430725,22.816537461822055,22.816537461822055,90.0,105.0,38.89510199999999,18.724897999999996,0.5161290322580645,89.03,4.305555555555555,3.722222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,11.0,11.0,31.0,0.0,1.0,33.0,11.0,0.0,5.0,28.0,11.0,19.0,22.0,0.0,0.0,0.0,14.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,2.0,0.0,2.0,17.0,3.0,0.0,1.0,0.0,0.0,3.0,2.0,1.0,0.0,1.0,1.0,2.0,3.2386784521643803,6.043078102706436,3.8010914447208646,4.319153392855371,4.801456283132419,5.067724261080383,5.030846334712386,5.248503240808848,5.57583072492777,5.734150011272598 +119373,COc1cc2c(cc1OC)CN(CCc1ccc(NC(=O)c3cccc4c(=O)c5cccc(OC)c5[nH]c34)cc1)CC2,0,22.986666666666668,6.156596,3.48,7.8933333333333335,159.65689655070292,90.75917837333334,1.55121127813356,6.235970666666666,3.9251851851851853,7.672671253333334,229.82979506912991,25.375,6.3466625,4.15,7.575,144.64819432153132,96.68735203750002,1.8600667276250005,6.497574999999998,3.13125,7.752086749999998,274.40271247246017,21.594202898550726,6.294050724637683,3.891304347826087,6.304347826086956,152.510387389525,80.93440729710147,1.627476430158594,6.406978985507246,2.950684380032206,7.768115681159419,236.11196869413692,20.32,6.2177371428571435,3.577142857142857,5.674285714285714,151.9437147716679,75.20828262857142,1.5598019066393487,6.3321897142857155,3.0117460317460325,7.696376685714283,221.5631354131647,17.20873786407767,6.1295480582524275,3.004854368932039,4.364077669902913,156.0883801857011,61.97358191262137,1.3719756275634662,6.224130097087378,2.99190938511327,7.654521165048541,189.21064164890535,15.096774193548388,6.068889400921661,2.7649769585253456,3.695852534562212,161.00092768612075,53.65136237788019,1.2487262609935523,6.1412336405529935,2.86815156169995,7.646845714285716,169.93009786977166,15.735449735449736,6.041243386243386,2.814814814814815,3.708994708994709,156.65801757338238,55.85330561904763,1.3454823187651903,6.132625925925927,2.9569370958259853,7.592605883597884,181.32202330911764,14.015544041450777,5.912916580310882,2.616580310880829,3.134715025906736,159.41668205230937,49.14425398963729,1.2657125076606583,5.996452331606218,2.616724237190559,7.494299937823833,166.5420369696633,13.288135593220339,5.868881355932205,2.615819209039548,2.9322033898305087,160.60592351792008,46.244934853107345,1.2255319083240455,5.949771186440678,2.5400188323917137,7.465765717514124,160.40698228240123,7.199288888888888,0.11745358222222216,0.02148423560852008,0.6126222222222222,3.9992888888888887,1.4704775587217076,34.27814162382222,0.23348577843568255,0.11067566222222217,1.132572839506173,0.07331311928888885,50.61450841886267,0.43571111111111166,-0.0007486322222221354,-0.007940603407842407,0.28637777777777773,1.2323777777777771,-0.140028254566918,2.0594212926777784,-0.007981431226216093,0.0013287377777778861,-0.029470987654320997,-0.0024410572888889067,0.831627747010552,0.35472077294686016,-0.010946847922705233,-0.003240359772726648,0.02216038647342992,0.10293333333333322,0.1819839639373824,1.8397746562743962,0.03825181993150112,-0.009002319227053048,-0.0066979066022544295,-0.007563754651207749,7.078467844428688,-0.10671746031745985,0.0046528939682540195,0.002353037777032986,-0.08690793650793653,0.028673015873015725,-0.1998733671243565,-0.5896884629841261,-0.024273175077015575,0.004327309206349269,0.05255308641975309,0.002891914158730148,-3.9220909268643105,-0.4878973031283709,0.001367408069039938,0.000410758497674816,-0.06265458468176915,-0.09501704422869474,-0.23795038311828193,-2.4353374856992445,-0.043091994260388136,0.0009494769363538629,0.034331151863837936,0.0001583453065803601,-7.576560200188158,0.08624106502816173,-0.007165600655401932,-0.002091728545450204,-0.03289871991807479,-0.1943119303635433,0.12507841045165058,0.49502925212247734,0.020814155794629658,-0.006175330424987193,-0.035389019741707904,-0.004382632530056327,3.5796897521575026,-0.6422518518518517,0.001352026243386246,0.0007150116100855454,-0.06080564373897711,-0.22764867724867724,-0.11276431579989477,-3.1136874329227506,-0.020955585114690044,-0.0004631542857142744,0.0848659220066628,0.0022628660373897737,-5.504004191646868,-0.06913344847438116,0.004059792561888273,0.0016890049031331653,-0.00840805987334485,0.004510765687967849,0.04749192751007517,-0.34532160461669537,0.0013866726439843967,0.0029092704202647855,0.023683157423399232,0.0032616642689695,-0.42243997705078445,0.027528436911487517,-0.00694088165725052,-0.0019371182683134247,0.02052278719397364,-0.0971419962335215,0.03219172536484581,0.18153518258079085,0.00737672882440921,-0.005684664105461448,-0.030030466624816888,-0.004737405842561189,1.6143253022550346,,,0.473015873015873,1.3511904761904763,0.7023809523809523,0.05952380952380952,0.6488095238095238,0.05357142857142857,0.9001193064941,0.010285367115181592,0.02257108140089588,1.1775548519115127,0.2735030849715231,0.21416901368408334,2.0776741584056126,0.4876720986556064,2.076524433370992,1.70228859434566,0.1524099166059884,0.2218259224193436,0.0,0.374235839025332,7.509893615413345,1724.0,461.7447,261.0,592.0,11974.26724130272,6806.938378000001,116.340845860017,467.6978,294.3888888888889,575.4503440000001,17237.234630184743,2030.0,507.733,332.0,606.0,11571.855545722507,7734.988163000002,148.80533821000003,519.8059999999998,250.5,620.1669399999998,21952.216997796815,2980.0,868.5790000000002,537.0,870.0,21046.433459754448,11168.948207000003,224.59174736188598,884.1631,407.1944444444444,1071.9999639999999,32583.451679790895,3556.0,1088.104,626.0,993.0,26590.150085041885,13161.44946,272.965333661886,1108.1332000000002,527.0555555555557,1346.8659199999995,38773.54869730382,3545.0,1262.6869000000002,619.0,899.0,32154.20631825443,12766.557874000002,282.62697927807403,1282.1707999999999,616.3333333333336,1576.8313599999994,38977.392179674505,3276.0,1316.9490000000003,600.0,802.0,34937.2013078882,11642.345636000002,270.97359863560087,1332.6476999999995,622.3888888888891,1659.3655200000003,36874.83123774045,2974.0,1141.795,532.0,701.0,29608.36532136927,10556.274762000003,254.29615824662096,1159.0663000000002,558.8611111111112,1435.002512,34269.862405423235,2705.0,1141.1929000000002,505.0,605.0,30767.41963609571,9484.841019999998,244.28251397850704,1157.3153,505.0277777777778,1446.3998879999997,32142.613135145013,2352.0,1038.7920000000001,463.0,519.0,28427.248462671854,8185.353469000001,216.91914777335603,1053.1095,449.5833333333333,1321.4405319999998,28392.035863985016,539.9466666666666,8.809018666666661,1.611317670639006,45.946666666666665,299.94666666666666,110.28581690412807,2570.860621786667,17.51143338267619,8.300674666666662,84.94296296296297,5.498483946666664,3796.0881314147005,34.85688888888893,-0.059890577777770834,-0.6352482726273926,22.91022222222222,98.59022222222217,-11.20226036535344,164.7537034142223,-0.6385144980972874,0.1062990222222309,-2.3576790123456797,-0.19528458311111252,66.53021976084416,48.951466666666704,-1.5106650133333221,-0.4471696486362774,3.058133333333329,14.204799999999985,25.11378702335877,253.88890256586666,5.278751150547154,-1.2423200533333207,-0.9243111111111113,-1.0437981418666693,976.8285625311589,-18.675555555555473,0.8142564444444534,0.41178161098077254,-15.208888888888893,5.017777777777752,-34.977839246762386,-103.19548102222208,-4.247805638477725,0.757279111111122,9.196790123456791,0.506084977777776,-686.3659122012543,-100.5068444444444,0.2816860622222272,0.0846162505210121,-12.906844444444447,-19.573511111111117,-49.01777892236608,-501.67952205404436,-8.876950817639957,0.19559224888889576,7.072217283950615,0.032619133155554175,-1560.7714012387605,18.714311111111094,-1.5549353422222192,-0.4539050943626943,-7.139022222222229,-42.165688888888894,27.142015068008178,107.42134771057758,4.516671807434636,-1.3400467022222209,-7.679417283950616,-0.951031259022223,776.792676218178,-121.38559999999998,0.2555329600000005,0.13513719430616808,-11.492266666666673,-43.0256,-21.31245568618011,-588.4869248223998,-3.9606055866764187,-0.08753615999999786,16.03965925925927,0.42768168106666726,-1040.2567922212581,-13.342755555555563,0.7835399644444367,0.3259779463047009,-1.622755555555556,0.870577777777795,9.165942009444509,-66.64706969102221,0.26762782028898857,0.5614891911111036,4.570849382716052,0.6295012039111135,-81.5309155708014,4.8725333333332905,-1.228536053333342,-0.34286993349147615,3.6325333333333343,-17.194133333333305,5.697935389577709,32.13172731679998,1.3056810019204301,-1.0061855466666763,-5.315392592592589,-0.8385208341333305,285.7355784991411,0.6956334100940101,0.5702902900958934,0.4357920881603291,0.2972087379259434,0.27057630971895236,0.15624161990250235,0.17470639704805563,0.08532013041893209,0.11088545163777215,0.04545840674536981,0.07022169197840218,0.024971229977826588,0.04491314006499492,0.013620047985816383,0.02917560577893938,0.007432393579073033,8.02427545669195,5.656229073298041,3.5466462942886268,2.1512675692356598,0.4656067825411899,-0.5283746870964124,3.3079782246140685,0.9771950340566702,6.023939290413801,0.9966232906142004,14.548456019950669,10.920422253241878,16.01253401290257,11.670932835799634,2.0369204039367124,0.7508632257886801,3.492221891425992,2.1999390285135543,7.009370301426535,1.3487988526932286,3.705138065447112,2.39547959606573,20.93452651732153,14.701781300705179,0.22652451849973443,0.5327206326794923,0.7203152066928854,0.821566281600663,0.8556490448500571,0.8846661967096827,0.9432034538714342,1845.4887161081447,0.0,1.0,3.0,0.0,19.0,2.0,6.0,0.0,0.0,4.744043606905876,2.737053970476222,1.5074486670128202,0.8437895002019236,0.6203910001730772,0.43019550008653784,339.1958477954695,3214.0156583085427,87.68314104850448,42.853542110780566,84.05777810107762,,22.0,1617.0,0.0,9.589074368143644,11.335970121252046,38.80619946382657,43.97493613015756,16.690354475090988,57.72759503460226,24.26546827384644,27.333410992727238,14.210588861400147,19.866666666666667,56.75,29.5,2.5,27.25,0.0,0.02698412698412697,2.25,0.14628352490421487,0.07057239057239095,-0.07571113433182391,0.023629148629148777,0.13703969022265228,0.0,0.5911111111111097,0.8198412698412696,0.44482758620689483,0.5205387205387187,0.7962121212121208,37.8050108727522,0.43198541883762687,0.9479854188376269,49.45730378028353,11.487129568803969,8.9950985747315,87.26231465303573,20.48222814353547,0.5769603097773477,0.10906040268456375,0.0,0.3724832214765101,0.23529411764705882,0.3076753046267848,-1.1213860498534052,-0.05291170979399495,-0.014951813998045405,-0.044855441994136214,0.6923246953732152,2.5233200184924605,0.046521308039931056,0.03364426691323281,0.05046640036984922,-9.605835604490728,0.7589175474120902,0.7653941381136062,1.3654416276566888,0.6039611143354614,0.5165501644736843,1.219183690123076,0.7638797774255462,1.0531824273307626,0.7369422059829355,0.5807818754196715,0.7957735063776222,0.9295038211877767,0.8709663219555771,1.0946588552869916,1.333311220699325,1.1612392439879886,0.9904176201373,0.955214028036012,0.866458021302796,0.8218738860276475,1.0629093232847608,0.6836286658585716,1.119566306281703,0.8029236522035036,0.9213714229271321,0.8510888018919486,0.9056283733630609,1.2746455517784596,0.9389097744360904,1.2033800374600585,0.9256343964771164,1.0961507591025867,0.8443745318510196,0.7909696017620289,0.846073744686913,1.0355244933945862,1.026548708634294,0.9594084110551416,0.992342476227447,1.0711025587567407,0.9712729943791518,1.1884259351668878,1.030103171622163,1.163887061541508,0.9571051469473254,1.0441504246900788,0.9634179507123456,1.1171182358261236,1.0149321227834758,1.186132529609433,1.1640069574070706,1.0687606815890194,1.1084919961193307,0.894392769374972,1.0098589029202445,0.8798034898226493,1.170938077587552,1.2826714921422928,1.1970280708606051,0.9045654356431821,1.05652214132064,0.9280221021778612,0.8459302813495507,1.0779693963095007,1.0129490392648288,1.0673072054083965,1.0590383342091896,1.0835586897591454,0.9458843554497788,1.007661675386423,0.9081183404071184,1.096729498481554,0.9945042867407874,0.8334692423540827,0.741355536420964,0.8929027873422365,0.9171751431688029,0.9426676629945604,0.9971303733113851,0.9853377922137798,0.8578410637013553,0.8654051174755123,0.7922460610884356,1.0170604147479807,0.9934230792411388,0.9303319898069744,0.8969093073208824,0.8962737440609108,0.9708128902765389,0.9448169654643367,0.9940162615115313,0.9563062727335381,0.9411857649994463,0.9618174419909108,0.8986513419570199,0.9813819533550858,8.0,0.2143658810325477,5.1111111111111125,2.75,3.422222222222223,1.7777777777777781,0.8906122448979592,0.6614583333333333,0.47896195515243123,0.29375000000000007,8839.39978499584,9837.459578546597,4113.893148807715,3776.3528864871732,20.925744779242024,0.4418380874312683,11.67995372790688,0.7915948356237235,0.0,0.23529411764705882,1.484775083590004,3.4917647200196584,4.72137002348306,5.385029190293957,5.608427690322803,5.798623190409343,0.17021276595744683,0.005359147025813692,0.07628524046434498,0.03618421052631579,0.0488888888888889,0.027777777777777783,0.015355383532723435,0.012720352564102564,0.010643599003387362,0.007164634146341465,0.41059199988714273,31.9610683567225,14.613499665849854,7.062019013128112,243.38059219450176,0.0,4.679346747403693,362.74411703300257,,280.99497071281144,276.06464996757813,274.86546008991104,281.0460707019916,372.95817740664893,279.04052284198235,281.27788751241513,338.4462269208107,0.06052140952192818,-0.006373856020889371,-0.3696013929717552,0.46746227510156696,0.3081492265291606,-0.09522637984944507,0.060079724136694324,-0.034183800314050855,0.012005690782404857,-0.026021273534310614,-0.03329632284871102,0.016430619855642547,0.04927164035524715,-0.09320148194368222,-0.15082499707095035,0.03617300461783033,0.025737908961593146,0.1237584095438912,0.053671948627337804,0.16382933550720824,-0.08133964637119204,-0.005913885949423674,-0.10317054743507675,0.13985056983761462,-0.014823333521476485,0.03961474720669434,0.1095239234902001,-0.14186220048088885,0.007169528551107462,-0.1359241193031924,-0.017203046461956133,-0.10395997237879744,0.03909901345483347,0.046401506893514605,0.039446066226354645,-0.07748946002610295,-0.06777020767722951,0.011642114639405397,0.019119065027937046,-0.10227279130439684,-0.02375848478780263,-0.161818438987354,-0.07104636862830283,-0.18455939607584507,0.008578913532475082,0.030312533257293266,0.002159849534657005,-0.1496914706251415,0.011979108820214584,-0.061007936240246946,-0.09736108761629293,-0.05370147984305592,-0.0485866202122569,0.08505972070759228,0.014441542880447394,0.08914528299788184,-0.05579664310106355,-0.031246572853661503,-0.05977964888912518,0.0707245780702564,-0.08921045699986829,0.011511153749471962,0.03328075632358038,-0.0992547144607505,-0.05692228883018356,-0.07668550610042718,-0.09083594633259921,-0.08975101291003298,-0.004184788926623466,0.07493197704058156,0.030865772174731725,-0.10874360659789938,-0.009602816269962318,0.03456508081811542,0.07861601100964237,-0.01372470597433685,0.0011278919361139383,0.032296941376895344,-0.010074105195268456,0.005939002594825612,0.02628645143702283,0.020910935347633462,0.04448950338774944,-0.008346223054363448,0.0038237716719458047,-0.059094678305497514,-0.09016463529869384,0.033499906548491505,-0.024289817248113372,0.02189202084309958,0.005295945870491113,0.031593910660564065,-0.051363271665340396,-0.026515262928175853,-0.0646188006800466,0.03189451706012063,22.045433052918373,39.58930901673756,16.084995051237705,13.508932622137884,31.970273690441175,41.88401206953811,44.27728075694926,45.493453474129076,46.084930538216305,87.21402620158166,71.49612096251772,6.401216497451513,9.316688741612431,0.0,15.717905239063944,24139.67534529616,22444.456006479882,2655.020220843213,291.0,67.0,94.0,126.0,170.0,190.0,224.0,255.0,284.0,563.2420211560009,47.0,5.43372200355424,6.311734809152915,7.207118856207756,8.100161446936607,9.000483164987708,9.899429329075273,10.80248969427274,11.704693925589194,12.609779542223446,0.6622222222222222,0.9829866666666666,1.1169523239463721,0.6257086559542641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6873785948103792,0.970562091503268,1.003894149065307,0.6505072664359863,12.0,0.0,1.0,0.0,0.0,4.0,8.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,24.511355986353685,5.749511833283905,16.92781405846835,0.0,5.907179729351506,14.48898409899412,0.0,0.0,0.0,24.26546827384644,78.0629342686359,36.09410392135088,37.92624555076212,271.3176942672178,-988.873246745337,-46.65919846396772,-13.184976623271162,-39.554929869813485,610.5135420626873,2225.1424115632058,41.02394258453676,29.668565487509408,44.502848231264124,0.5,0.8723469519192513,0.13569119755895287,92.83409721310544,0.07059445869276132,52.87238253492313,0.12765304808074865,11.0,0.1702127659574468,0.2383718578701799,0.5605821735263379,0.7579880324156921,0.8645345863912521,0.9003998942657155,0.9309346568807753,5.5602000000000045,,1.6785714285714288,1.9855746859004186,1.5414196857644495,1.6738284309400313,-6.966016776241214,1.7771572827417383,1.6632629804309458,-2.9529462750204147,165.25289999999964,19.005126045471968,0.0,9.883888251797686,0.0,19.386399651764595,39.735694039664075,105.2735383642997,0.0,17.248535499851716,4.553876891600541,0.0,5.8944028342648505,0.0,7.44716835960004,0.0,9.098179005087852,0.0,10.80151247560339,49.666666666666664,22.597952439860585,0.0,3.2764972166813644,0.0,0.0,2.019753820384437,6.9476809618968005,0.0,73.72399999999999,0.0,26.542827445766854,0.0,0.0,0.0,0.0,0.0,-0.2941772045355089,83.77142429597791,24.95616785730702,5.687386274683562,17.248535499851716,50.209973416806946,19.386399651764595,0.0,27.048343150859804,77.59094200561115,0.0,21.805849864162113,0.0,46.928149196569805,51.55339461077844,55.99774365111146,725.4882340660052,,561.9100094528337,552.0347487596371,549.6956857113162,562.0124352882242,748.9017905745443,557.9964191466912,562.4765720257622,678.1580022452017,55.99774365111146,725.4882340660051,,560.3673505922199,550.2266222556893,548.3010679003864,560.4740899715239,752.8823715895396,556.370715184259,560.9470312254293,679.8454001166419,5.036721460569945,571.7593570428425,,450.0000874567877,442.0927645629439,438.4307135198967,450.0769345432674,588.9217780355787,446.777777085142,450.4630193423709,539.7722636457289,1.3332796107407492,17.273529382523936,,13.378809748876993,13.143684494277073,13.087992516936099,13.381248459243434,17.830995013679626,13.285629027302171,13.392299333946719,16.146619101076233,2.5183607302849733,362.74411703300257,,280.99497071281144,276.06464996757813,274.86546008991104,281.0460707019916,372.95817740664893,279.04052284198235,281.27788751241513,338.4462269208107,72.7921568627451,0.0,4.888958014300962,0.0,0.0,0.0,0.0,75.29206117989803,4.66892971345066,2.9855647892432984,16.396650848658464,0.0,0.0,2.4483339531026913,0.0,0.0,0.0,48.78804498269898,769.2627911195777,111.3581312692503,261.88235400147437,354.1027517612295,403.8771892720468,420.63207677421025,434.8967392807007,1790.0,170.06961277199986,112.56844521032741,79.79513956615668,92.89000000000001,92.89000000000001,1.0,9.906454436043909,6.554588851677638,4.2836694711710885,6.39492456621593,,6.401585178613696,6.401983421472344,6.397180935698699,6.401567004473228,6.367357269632084,6.401532651374022,6.401583174374515,6.3880863996118435,0.1019921302659783,0.1522601087194269,,0.15241869472889752,0.15242817670172246,0.15231383180234997,0.15241826201126735,0.15160374451504963,0.15241744408033386,0.15241864700891702,0.15209729522885343,2.8898945206431677,3.2905891645063723,,3.2916301691446814,3.2916923772479403,3.2909419398185884,3.2916273301343804,3.286269037461132,3.2916219637621533,3.291629856059807,3.2895192808499094,423.8500000000016,8651.803499414418,321.51255072109444,,319.8409640227571,319.75314083076853,320.6849212619585,319.84462722084794,325.6105465839434,319.8487537782987,319.8417205138573,322.3056479822409,205.99532141462902,7.65506073145463,,7.615261048160883,7.6131700197802035,7.635355268141869,7.615348267163046,7.752632061522462,7.615446518530922,7.615279059853745,7.673943999577164,10.500607600524889,7.208121106217769,,7.202908410115025,7.202633788470223,7.205543612678984,7.202919863235562,7.220786550121451,7.202932764908686,7.202910775322396,7.21058483794799,16.396650848658464,32.26765861555091,3.958143274920844,5.762147039855952,1.7928933867349637,22.597952439860585,1.8739900491489239,2.7949396643017352,4.888958014300962,508.0121941546666,239.2564177738399,-872.019317751008,-41.145538667643066,-11.626924236680107,-34.88077271004032,538.3699115932891,1962.2000837988885,36.1761940084491,26.162667783985178,39.24400167597778,7388.0,76.0,2.5542719365942905,1.1837676106301542,0.0,0.0,0.6547346002059253,0.1686077083909619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38837395528347185,0.15187710429568468,0.8434014664145083,0.26360592409253303,29.216603223948425,23.952192184027524,20.48222814353547,13.968810682519338,18.128612751169808,10.468188533467657,16.422401322517228,8.020092259379616,13.97156690635929,5.727759249916596,11.93768763632837,4.24510909623052,8.533496612349035,2.5878091173051128,6.535335694482421,1.6648561617123594,6.901620905844533,2.641538448151671,11.417016268222273,3.584623804255794,18.478451152875664,4.841747861057213,137.06964783217663,76.12874308946256,41.123544284915134,33.00031245201682,29.79232866839279,27.548481883787765,228.0,275.0,86.094169,42.899831000000034,0.4533333333333333,487.08,12.166666666666668,9.33333333333333,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,6.0,1.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,26.0,28.0,75.0,0.0,1.0,80.0,28.0,2.0,14.0,66.0,30.0,47.0,50.0,0.0,0.0,0.0,34.0,0.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,33.0,6.0,2.0,2.0,42.0,8.0,0.0,3.0,5.0,0.0,6.0,8.0,0.0,0.0,0.0,1.0,5.0,4.1588830833596715,8.79184879443887,4.824305715904762,5.502278098445473,6.147933965154199,6.789323595499231,7.189450717245962,7.666192651229549,8.092593045624351,8.502233412327705 +3397,CC(C)C(=O)Nc1ccc([N+](=O)[O-])c(C(F)(F)F)c1,0,31.333333333333332,7.60066,3.5,13.933333333333334,177.27759839347465,128.03987028164366,1.3616333651113004,7.542423333333334,13.61597222222222,8.843573333333334,222.25132674552466,29.166666666666668,6.9423,4.1,10.5,154.1846180356766,113.58249381685329,1.7054408466666657,7.040106666666669,4.312037037037038,8.250004533333335,267.18861117233496,27.823529411764707,7.183137254901957,3.4705882352941178,10.92156862745098,164.60863221739785,109.96513946970406,1.4414602293939995,7.211282352941176,8.452614379084968,8.465227137254907,226.09665436141464,22.61904761904762,6.726523809523813,3.126984126984127,7.158730158730159,162.45293411342925,85.84547534938417,1.2974668305705235,6.789999999999999,4.818783068783067,8.151353396825394,200.80887403019372,21.239436619718308,7.167633802816902,2.5211267605633805,7.197183098591549,177.48398206484842,79.98973559373518,1.0308425473808025,7.151761971830983,5.631651017214396,8.600222760563376,168.20627081765372,26.410714285714285,7.821712500000002,2.4642857142857144,10.625,179.56641096147663,102.81142715054284,1.0653010106748577,7.75316785714286,11.555059523809529,9.124336928571429,179.11610679371074,18.906976744186046,6.922534883720931,2.511627906976744,5.534883720930233,169.74530276810347,68.09607953626049,1.1941227951557676,6.947330232558142,4.9980620155038755,8.348960279069768,176.84211842980784,18.68888888888889,6.689777777777777,2.1777777777777776,6.511111111111111,171.11241889286532,70.87405726435556,1.007786771000822,6.691115555555553,6.8327160493827135,8.169686933333333,148.05712658530217,21.88235294117647,7.28541176470588,2.176470588235294,4.911764705882353,177.57082597478808,83.0832566555294,0.9146506044733527,7.262505882352942,8.142156862745097,8.685937176470588,152.8259050748715,8.928888888888887,0.37531599999999976,0.026198740768361848,0.8322222222222221,6.46222222222222,3.356959681354711,43.2678235990082,0.22515491394604562,0.32603655555555544,6.430594135802467,0.22582597333333337,41.843470740982646,0.13555555555555532,0.01801200000000006,-0.011310676421883733,0.12555555555555553,2.026666666666667,-0.0716685818528971,0.5447952517262353,0.006145297933333472,0.01444955555555564,-0.4608410493827161,0.01349375999999999,-0.306972637855547,2.709019607843137,0.1715683137254901,0.004270177039918479,-0.01065359477124183,2.582222222222222,0.9168864997264117,13.333185060546286,0.015178479709038179,0.14796390196078435,2.6294140341321706,0.09978020705882346,2.655005625699638,0.47005291005291,-0.011652190476190365,-0.0026057495441118607,0.01328042328042332,0.5726984126984128,-0.9030012516373832,2.399182917880417,-0.06241105264635818,-0.0043339629629627905,-0.029973177542622156,-0.012839103492063495,-5.01314426986081,0.31054773082942116,-0.05596867605633801,-0.007106719026060966,-0.056165884194053196,-0.0378090766823159,-0.21402626059982502,1.8871606619542896,0.002725899402713101,-0.04346204851330205,-1.3565657059641805,-0.04211748507042252,5.986875635488099,1.5663492063492055,0.11185649999999983,0.010608726623088986,-0.00126984126984127,1.1103968253968255,0.5055149949478336,7.597360606759019,0.02241679647093239,0.09446350396825376,1.8553309634038804,0.06956260285714286,1.710599298905286,-2.9397416020671834,-0.06601506976744177,-0.005804233755662692,-0.02447028423772608,-0.7242377260981913,-0.20531991864517266,-14.716058490630097,-0.04654773953441142,-0.06322926873385001,-1.208947925638817,-0.03246445395348837,-14.453445632711578,3.6474074074074077,0.14419911111111114,-0.002477727191552066,-0.19962962962962966,2.3200000000000003,-0.3989735372980099,17.604295819639415,-0.02094224672645373,0.1307910740740743,1.8215663580246906,0.08400076444444439,2.700436869006442,1.1299346405228758,-0.013140705882352957,0.007796683542587596,-0.34398692810457526,-1.685751633986927,-1.7109950209744598,4.978606336794895,-0.09776693463246319,-0.002024202614379163,0.7290191539578794,-0.007203298823529418,-7.9551133503571485,,,0.42932330827067666,1.144736842105263,0.5263157894736842,0.05263157894736842,0.618421052631579,-0.09210526315789473,0.7622476524547587,0.041541965212998674,0.04606828100247236,0.9874612553318443,0.2359293313077945,0.2180136278146329,1.7497089077866028,0.45394295912242744,1.9243380750716563,1.1732446099598368,0.21202831965599225,0.271791322597058,0.267273822858769,0.7510934651118192,9.202405895733344,940.0,228.0198,105.0,418.0,5318.327951804239,3841.1961084493096,40.849000953339015,226.27270000000001,408.47916666666663,265.3072,6667.53980236574,875.0,208.269,123.0,315.0,4625.538541070298,3407.4748145055987,51.16322539999997,211.20320000000007,129.36111111111111,247.50013600000005,8015.658335170048,1419.0,366.3399999999998,177.0,557.0,8395.040243087291,5608.222112954907,73.51447169909397,367.77539999999993,431.08333333333337,431.72658400000023,11530.929372432147,1425.0,423.7710000000002,197.0,451.0,10234.534849146043,5408.264947011203,81.74041032594297,427.7699999999999,303.5833333333332,513.5352639999999,12650.959063902204,1508.0,508.90200000000004,179.0,511.0,12601.362726604239,5679.271227155197,73.18982086403697,507.7750999999998,399.8472222222221,610.6158159999998,11942.645228053414,1479.0,438.0159000000001,138.0,595.0,10055.719013842692,5757.439920430399,59.65685659779203,434.17740000000015,647.0833333333336,510.962868,10030.501980447802,813.0,297.66900000000004,108.0,238.0,7299.048019028449,2928.131420059201,51.347280191698005,298.7352000000001,214.91666666666666,359.00529200000005,7604.211092481737,841.0,301.03999999999996,98.0,293.0,7700.058850178939,3189.3325768960003,45.350404695036985,301.10019999999986,307.4722222222221,367.63591199999996,6662.570696338598,744.0,247.70399999999992,74.0,167.0,6037.408083142795,2824.8307262879994,31.09812055209399,246.92520000000002,276.8333333333333,295.321864,5196.080772545632,267.8666666666666,11.259479999999993,0.7859622230508554,24.96666666666666,193.8666666666666,100.70879044064134,1298.034707970246,6.754647418381368,9.781096666666663,192.91782407407402,6.774779200000001,1255.3041222294794,4.066666666666659,0.5403600000000017,-0.339320292656512,3.766666666666666,60.80000000000001,-2.150057455586913,16.34385755178706,0.18435893800000416,0.43348666666666924,-13.825231481481483,0.4048127999999997,-9.20917913566641,138.15999999999997,8.749983999999996,0.21777902903584245,-0.5433333333333333,131.69333333333333,46.761211486046996,679.9924380878606,0.7741024651609472,7.546159000000001,134.1001157407407,5.088790559999996,135.40528691068153,29.61333333333333,-0.734087999999993,-0.16416222127904723,0.8366666666666691,36.080000000000005,-56.88907885315514,151.1485238264663,-3.931896316720565,-0.2730396666666558,-1.8883101851851958,-0.8088635200000002,-315.82808900123104,22.048888888888904,-3.973775999999999,-0.5045770508503286,-3.9877777777777768,-2.684444444444429,-15.195864502587575,133.98840699875456,0.19353885759263018,-3.0858054444444454,-96.31616512345681,-2.9903414399999986,425.068170119655,87.71555555555551,6.263963999999991,0.5940886908929832,-0.07111111111111112,62.18222222222222,28.30883971707868,425.4521939785051,1.2553406023722138,5.2899562222222105,103.8985339506173,3.89550576,95.79356073869602,-126.40888888888888,-2.838647999999996,-0.24958205149349574,-1.0522222222222215,-31.142222222222223,-8.828756501742424,-632.7905150970942,-2.001552799979691,-2.7188585555555504,-51.984760802469125,-1.3959715199999998,-621.4981622065978,164.13333333333335,6.488960000000001,-0.11149772361984298,-8.983333333333334,104.4,-17.953809178410445,792.1933118837737,-0.942401102690418,5.885598333333344,81.97048611111107,3.7800343999999977,121.51965910528989,38.41777777777778,-0.4467840000000005,0.26508724044797827,-11.69555555555556,-57.31555555555552,-58.17383071313163,169.27261545102644,-3.3240757775037486,-0.06882288888889154,24.786651234567902,-0.2449121600000002,-270.47385391214306,0.7785541442044183,0.5335660815643757,0.4539429591224273,0.28134667269310354,0.32201682272392335,0.14913493623086357,0.1878776710748808,0.07511743462904334,0.11352369878249575,0.036514798246095014,0.0788586583368043,0.01970745715972033,0.050122634183810605,0.010682866258382993,0.0332514079370286,0.005417367833448186,9.014091649745955,5.692329386494718,4.124520797516735,2.1908336931537553,0.530015290750652,-0.38730191531792335,4.022234008844881,0.9725512031111714,7.014428770045559,0.988945333071064,17.430696522235092,10.954331061471226,19.00560457893482,11.704550277838702,1.9852216667740514,0.5269820189770262,4.00714006005126,2.2403740346413707,8.007930912069487,1.2172419425926972,4.030587221443524,2.436071956985703,20.890158050176638,13.302788290352732,0.3872500117271097,0.7102394268770925,0.7680551548768227,0.7989554287647154,0.8119526968909679,0.8119526968909679,2.686802293332845,512.3971412886738,0.0,1.0,3.0,0.0,5.0,0.0,1.0,1.0,0.0,2.9205756871449156,1.2638715653631216,0.9673183336217961,0.8088220835496802,0.7421554168830129,0.7421554168830129,-44.42769337595695,812.0431597018184,57.5213665249275,27.068105323393944,59.78829980607114,,9.0,263.0,34.1755331081546,28.080100595861857,5.687386274683562,6.06636706846161,12.13273413692322,0.0,13.847474399381248,0.0,5.316788604006331,0.0,8.157142857142857,21.75,10.0,1.0,11.75,0.0,0.07067669172932334,-1.75,0.3347619047619046,0.07801587301587298,-0.2567460317460316,0.036954887218045185,0.3008306801736613,0.0,0.7680952380952383,1.0390977443609022,0.4333333333333337,0.6900793650793653,1.002142857142857,14.482705396640414,0.7892973390469749,0.8752973390469748,18.76176385130504,4.482657294848096,4.142258928478025,33.24446924794545,8.624916223326121,0.41316931982633864,0.3502626970227671,0.061295971978984246,0.3555166374781086,0.36363636363636365,0.5485053134456089,-0.9725803628531828,-0.09953338003208025,-0.03241934542843943,-0.08841639662301662,0.4514946865543912,0.8005662940927875,0.026068095133465256,0.026685543136426248,0.0421350681101467,-3.659075357576697,0.5810104529616725,0.5014450045650423,1.5653462311013675,1.2002670226969296,0.2867090784044018,1.0024062069728357,0.5815848187466631,1.1358711662583083,0.48909529231384774,0.6214745531884261,0.5113075665501639,1.0091400362070861,0.49885807981729285,0.3540046115040175,0.7308715656000664,1.1159978009895548,0.3915668743425845,0.7847493806097314,0.498563891819628,1.0438329184382713,0.3474749703775349,0.373453765329123,0.3696925751657633,0.9544453775253792,0.7569804925454504,0.6750115077631093,1.120675412227184,0.9863945578231293,0.6600838409641714,1.0640092376839523,0.7484335350398258,1.2917315506941494,0.6609238756929083,0.6360892963205166,0.707937922332747,1.146630851702513,0.9789398411374169,1.0822901810640746,1.3049360123806735,0.965230636153369,0.9691574481275553,0.8951320326571711,0.9641707102592095,0.8544758815011761,1.0749066853631377,1.1382811782412068,1.1176083125034943,0.7989192013781485,0.8670691708739247,0.9026745050139338,0.6643524274271742,0.89190349036811,0.9429345156219301,0.9473640998338698,0.8683404751308671,0.8514034642380965,0.9040120720225017,0.9664651339984764,0.9069135208336908,0.8572215093179023,1.2362103094215569,1.0838994506004285,0.9923317394060807,0.8509019778309064,0.9879722337737121,1.1047735862765278,1.2537422883197142,1.2543543178979926,1.0983964742559464,1.01499633822189,1.0365985544711764,1.3629910342637186,0.6471710635473703,0.4604556436985643,0.8667157735596276,1.2002670226969296,0.6216185236130218,0.8558903567670167,0.6453549652765628,1.047397787094036,0.4621624455426324,0.5527968594700858,0.4648271013434323,1.033959281268389,0.9425233508037363,1.1619284633142601,0.957147219997907,1.6739967014843322,1.3528855489926377,1.5700855775127496,0.9611591884487339,1.3820884487454517,1.1342758529843675,0.9821045978281165,1.1381199656792111,1.160955048269382,6.5,0.0,2.88888888888889,1.8125,1.6311111111111116,0.763888888888889,0.44734693877551024,0.3680555555555556,0.09876543209876541,0.0,3974.5730922803523,4257.299443761724,1812.499671026571,1700.5406288890608,10.290940199758984,0.460224153458215,5.554800958035791,0.8526208729174551,1.0,0.36363636363636365,1.986314908463603,3.643019030245397,3.9395722619867226,4.0980685120588385,4.164735178725506,4.164735178725506,0.3421052631578947,0.0,0.10317460317460321,0.06473214285714285,0.060411522633744864,0.030555555555555558,0.031953352769679304,0.026289682539682536,0.008230452674897118,0.0,0.6674525753632001,17.05263157894737,6.635204081632653,4.795005202913631,106.11707990641031,1.0,3.835179675660042,77.05750473062261,,59.925289130734654,58.46033938606521,58.0992968120067,59.73539251791482,98.04260378365605,59.30951843439875,60.10809429442594,79.53377857435146,0.015181682429069164,0.047991559112854416,-0.43172595667432784,0.15086782376502003,0.31361760660247606,-0.02134925309081312,0.01259123307830818,0.027293643410359163,0.04431882041856957,-0.07166383691002576,0.05975291416139431,-0.007336213569752701,0.30339940854390535,0.4571302948062172,0.16299169023708326,-0.012801382235137047,0.3995873452544706,0.27313003037212513,0.30815474298207857,0.06741349519324918,0.45382611072141527,0.4088913059359248,0.44184557509486116,0.06345089397900382,0.052644054137334376,-0.03104634621543012,-0.0994608697857196,0.01595778498315219,0.08862251915897038,-0.26899377333986163,0.05544958628183489,-0.2771916080024524,-0.013292874339130047,-0.004661027723044418,-0.05685397167805924,-0.11980708533699137,0.034780109226789334,-0.14912414087419149,-0.2712618552508138,-0.06748904642810132,-0.005850785593893453,-0.06375598187507991,0.043615798183977705,0.012106772865576074,-0.13330421933590902,-0.21095495646529341,-0.18650416711922882,0.143077893144853,0.17542487378226546,0.29803285764529064,0.4049326918757984,-0.0015258439824527947,0.1718289447828651,0.15058715115214952,0.17558915551585932,0.09956165769628364,0.2897328608054121,0.288516259030295,0.30803632474314224,0.04088091328499378,-0.3292393531434128,-0.17589196774835555,-0.22154628754798808,-0.029403545813022,-0.11207255046223734,-0.061162461910270895,-0.34011552388244976,-0.20673650296420254,-0.1939330656530506,-0.18799941344579252,-0.14375872480163648,-0.3454169880452932,0.40849510535921696,0.384207204358757,-0.09457428559101673,-0.23987538940809977,0.3590096286107292,-0.11884966611722989,0.40686806858579655,-0.09301261233619876,0.40115463080883884,0.2832656391550326,0.3719712272443257,0.06453663668873337,0.12654818024770886,-0.03501237858858393,0.2975976445403451,-0.4133354276289957,-0.2608625293308519,-0.5096859013462988,0.11506486628342953,-0.4342207457035173,-0.006208514290460434,0.11336730923493524,-0.03189756571046367,-0.190116001600357,1.6509636244473134,6.813689581179447,3.6859940079665585,22.183644612958926,37.8420649829535,39.88492488009224,40.77822243349827,40.84542243349827,40.84542243349827,36.56242342636147,22.2916475892369,4.028538073463853,5.164035129344102,5.078202634316611,14.270775837124564,3061.099325190312,2699.3152642170235,681.2246887964247,6.0,28.0,31.0,36.0,44.0,38.0,41.0,36.0,26.0,276.07217687200034,19.0,4.553876891600541,5.3612921657094255,6.251903883165888,7.095893221097532,7.983098940710892,8.842315546841863,9.72728722274711,10.59460768001144,11.478365075619006,0.7888888888888891,1.0751999999999997,1.1711852644541738,0.7665617894707627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6383577445109784,1.0534640522875818,1.0690458849235251,0.6526680439649906,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,5.316788604006331,5.563451491696996,0.0,5.907179729351506,5.687386274683562,14.908855452837393,0.0,13.171245143024459,0.0,13.847474399381248,12.13273413692322,17.671659389306566,4.923311048817671,251.19748899438085,-445.40998784360846,-45.58303178162615,-14.846999594786949,-40.491817076691675,206.7697956184239,366.6331718582099,11.938334743301352,12.221105728606997,19.296482729379466,0.4444444444444444,0.7614071635533468,0.1837696202263223,7.915862570715042,0.23831938869633135,0.5947497671885145,0.2385928364466532,5.0,0.15789473684210525,0.40480114030691444,0.7424292348204709,0.8028653146480361,0.8351660653951516,0.8487524018678522,0.8487524018678522,3.2081000000000017,,2.035714285714286,2.3992100693459233,2.0310113090998234,2.13616401301287,-10.277860432971755,2.176420658986487,1.9665103868809846,-3.475611686563057,61.56610000000001,22.88909337591395,0.0,0.0,5.917906046161393,20.023772916824722,5.316788604006331,33.8768709658474,0.0,0.0,3.6635616461296463,0.0,5.017279836814924,0.0,6.541029999189903,0.0,8.145259566516865,0.0,9.798071479779479,23.66666666666667,2.338125,0.0,0.0,0.0,0.0,0.0,-2.5641416288737715,0.0,32.25599999999999,0.0,21.894143466028385,0.0,-1.1142157974300835,0.0,0.0,0.0,-0.47039115646258467,35.135557933625215,5.316788604006331,24.546017692391587,0.0,10.830490778169176,10.970835701515297,16.032224314926967,19.410925891078243,18.19910120538483,0.0,0.0,0.0,22.996853684122883,19.15073233532935,21.5664277700706,154.11500946124522,,119.63629254718359,116.66813034377822,115.98480295989762,119.2459256660388,199.44849654703057,118.38993995732523,120.00918749549598,160.1651187339333,21.566427770070597,154.11500946124522,,117.81486397575506,114.52146870278457,114.16758231491363,117.33462102281679,206.36306800028393,116.442616209811,118.24967820197088,162.543168835266,4.833220156956263,111.95698045159313,,87.31607996786596,85.22533925425202,84.32952805848242,87.1319334255638,136.06827338679335,86.43388708242298,87.53662092979349,113.96524229179732,1.1350751457931896,8.11131628743396,,6.296646976167557,6.140427912830432,6.1044633136788224,6.276101350844147,10.497289291948977,6.23104947143817,6.316273026078735,8.429743091259647,2.4166100784781297,77.05750473062261,,59.925289130734654,58.46033938606521,58.0992968120067,59.73539251791482,98.04260378365605,59.30951843439875,60.10809429442594,79.53377857435146,31.603921568627456,0.0,3.149589238473167,0.0,38.00268565759637,0.0,0.0,32.07137654770575,0.0,2.2584561602418742,0.0,0.0,-0.4124734399932817,0.0,-4.860147156084656,0.0,0.0,19.580041318949718,348.6995711772639,59.58944725390809,109.29057090736191,118.18716785960167,122.94205536176516,124.94205536176517,124.94205536176517,324.0,109.88864062750369,109.26771343554078,52.16520252843082,72.24,72.24,0.8,7.183396399254101,5.247927513443585,3.706397466661602,4.289000871608666,,4.278380986650912,4.278799619246965,4.278139699133099,4.27856832280173,4.239815842398367,4.278554622404125,4.278255675144375,4.264382302814806,0.19507355087692643,0.22573688797940347,,0.2251779466658375,0.2251999799603666,0.2251652473227947,0.22518780646324896,0.223148202231493,0.22518708538969082,0.22517135132338814,0.22444117383235818,1.951914257788686,2.0979076949266715,,2.0954285500554044,2.0955263936362907,2.0953721515432666,2.0954723357888647,2.0863737210763924,2.095469133685145,2.095399260157633,2.0921512272755085,176.33999999999983,123.39845386791296,91.90682971241436,,92.12601797874734,91.98071643187767,92.15989539633591,92.06363657110703,96.96930473751617,92.06775118693915,92.16420508700261,94.35690136445899,6.494655466732262,4.837201563811282,,4.848737788355123,4.841090338519877,4.850520810333469,4.845454556374054,5.103647617764008,4.845671115102061,4.850747636158032,4.966152703392578,5.457272468131744,5.162629229556297,,5.165011286593679,5.163432837250117,5.165378948096935,5.1643339259658205,5.216248368591187,5.164378618137893,5.165425710193223,5.188938301729045,38.00268565759637,20.7799276685983,12.78682581674645,-2.5641416288737715,-0.8828645964558663,2.338125,-4.860147156084656,3.149589238473167,0.0,228.94042163505603,115.04023193631149,-203.9832026721597,-20.875537289450502,-6.79944008907199,-18.543927515650882,94.6938018393142,167.90599816488412,5.467366745188425,5.596866605496139,8.837157798151797,706.0,28.0,2.7264523697642646,0.7479877573156136,0.28867513459481287,0.013498731178900972,0.7734509369092128,0.12182426221848375,0.11785113019775792,0.0038967480399284353,0.0,0.0,0.0,0.0,0.0,0.0,0.06804138174397717,0.024056261216234408,0.12141692337037671,0.03608439182435161,14.792528739883947,10.137755549723138,8.62491622332612,5.345586781168967,9.016471036269854,4.17577821446418,5.824207803321305,2.3286404735003434,4.086853156169847,1.3145327368594204,3.4697809668193895,0.8671281150276944,1.904660098984803,0.40594891781855375,1.3633077254181725,0.2221120811713756,4.2027139773862645,1.0697634440378874,4.986396423303041,0.9582908726636036,8.33626537960381,1.1718722512647124,61.454856289647644,35.92999165934402,32.415290579497174,30.940437678722304,30.746644972348406,30.746644972348406,94.0,106.0,31.981722999999974,16.978276999999995,0.2,19.08,9.729166666666668,4.083333333333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,30.0,0.0,0.0,30.0,6.0,2.0,5.0,25.0,8.0,19.0,22.0,0.0,0.0,0.0,11.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,3.0,1.0,0.0,19.0,8.0,0.0,2.0,3.0,0.0,1.0,3.0,0.0,0.0,3.0,0.0,1.0,3.2188758248682006,3.446011397451948,3.7727609380946383,4.193435464866331,4.657525416322019,5.152930257547145,5.258796608385754,5.498320225420604,5.440250862436703,5.277636228474242 +4509,O=C1CN(/N=C/c2ccc([N+](=O)[O-])o2)C(=O)N1,0,35.21739130434783,7.738678260869566,4.0,16.08695652173913,169.3946713529563,140.21015447826085,1.4362998882214784,7.704104347826088,12.027777777777779,9.052175478260873,244.7760112299451,34.25,7.394537499999999,4.583333333333333,13.291666666666666,158.3183826783667,134.1021480833333,1.6499772437499993,7.458637500000002,4.89351851851852,8.661369,275.726837487524,31.86842105263158,7.446892105263159,4.078947368421052,12.105263157894736,162.38879247188814,123.60863802631576,1.4651940156539216,7.479226315789473,6.41154970760234,8.75505315789474,244.91314708672698,25.88095238095238,7.566735714285712,3.0714285714285716,9.738095238095237,171.53952307730236,96.59478238095238,1.1737479304011669,7.543180952380952,6.4708994708994725,8.973685714285713,195.10322015998594,25.21212121212121,7.233242424242424,2.9696969696969697,9.545454545454545,166.87776110224385,94.95847345454546,1.2158830826832425,7.242493939393939,6.983164983164984,8.66782084848485,198.48234421894844,24.074074074074073,7.049477777777777,3.4074074074074074,8.222222222222221,167.25994736659248,90.48223411111113,1.238887004168407,7.076040740740741,4.945473251028806,8.499758370370373,201.4583823916491,27.884615384615383,7.564573076923076,3.3846153846153846,10.653846153846153,166.23933255878072,105.64669992307692,1.2968834878788078,7.555634615384615,6.6869658119658135,8.964701846153845,215.25628074726177,25.32,7.160959999999999,3.28,9.64,164.49523434831198,95.49593504,1.23808050246792,7.178472,5.755555555555557,8.58232864,197.82497332318712,24.65,7.351344999999999,2.7,8.8,173.51485019288234,92.77483304999998,0.99548322582735,7.331659999999999,5.997222222222222,8.806685400000003,173.62731840537623,7.081285444234405,0.2406056710775046,0.04604485279166465,0.6654064272211722,5.168241965973533,1.6361911516608656,32.98953201890359,0.18085193378941017,0.2107931947069943,4.800252047889098,0.165036809073724,33.853243767488365,0.2810333963453062,0.006739437618147462,-0.024395533227198826,0.004883427851291829,0.942265280403277,-0.2536798036442156,1.2679903868935036,-0.020058084481997064,0.006932711090107124,-0.2568241090807254,0.0020707851291745555,-2.167387256725816,0.5399960202964883,0.034413665306934633,0.002984153411999313,-0.13108148442940995,-0.019500547209232888,-0.197804365883083,2.320332368968258,-0.03155415071414356,0.030703143965774553,0.6922790988182491,0.021828138294697052,-4.264948158401279,-2.0574759204248814,-0.0471318615536952,0.0006509783676220322,-0.11571698622738322,-1.214825816905212,0.04564058651388966,-9.580729612071293,0.000869140109464509,-0.04457870195337114,-0.5970659425290806,-0.025248432262129798,-4.561241269390529,-0.0167268144583837,-0.013804880563670678,0.0037467768348898073,0.051326115598327296,0.03729163086440967,-0.2875767020316129,-0.04268370401557794,-0.013114676283740906,-0.010438912757060164,-0.23609599460261085,-0.01022235321074639,-0.7880171332800389,-0.04746901911363192,-0.059550115521949075,-0.016513588143418353,0.04634880627319191,-0.6851501785339215,-0.05330241799674197,0.042775345025557306,-0.0032075928465422504,-0.04730382272631793,-0.6716064941227723,-0.04388302485472236,4.349935510853468,-1.1030245746691874,-0.007267711211284009,0.01174747820192885,0.046968154718627315,-0.6682419659735348,0.4802547208658043,-5.11945101388687,0.03023143502622356,-0.01197061945615819,-0.42367270935323875,-0.003984200378071833,-0.5300351710883985,0.41262759924385606,0.03781485066162577,0.005799939921724244,-0.10540642722117204,0.7326275992438563,-0.4735752438526156,1.6817824193572821,-0.0454467340050728,0.033309413988657915,0.024965343415248798,0.024130495274102094,-7.325084769990453,1.068714555765595,-0.045352410207939495,-0.01605219671124338,-0.17410207939508512,0.22306238185255206,-0.19897111528576644,5.190712774574672,-0.043400300156486334,-0.03085145557655955,-1.4718704053770213,-0.042709565595463135,3.003670824170986,,,0.4274509803921568,1.3235294117647058,0.6176470588235294,0.029411764705882353,0.7058823529411765,-0.08823529411764706,0.5271074050253107,0.020921347900546797,0.03103899495937032,0.9374790921604088,0.2932216127548295,0.18081077830774703,1.4645864971857194,0.4740323910625765,1.9913592989258884,0.9805282705488731,0.4833715612149811,0.5274594671620337,0.0,1.0108310283770148,10.349296490956522,810.0,177.98960000000002,92.0,370.0,3896.0774411179946,3224.8335529999995,33.034897429094,177.19440000000003,276.6388888888889,208.20003600000007,5629.848258288737,822.0,177.4689,110.0,319.0,3799.6411842808006,3218.4515539999993,39.59945384999998,179.00730000000004,117.44444444444447,207.872856,6617.444099700576,1211.0,282.98190000000005,155.0,460.0,6170.7741139317495,4697.128244999999,55.67737259484902,284.2106,243.6388888888889,332.69202000000007,9306.699589295626,1087.0,317.8028999999999,129.0,409.0,7204.6599692467,4056.98086,49.297413076849004,316.8136,271.7777777777778,376.8947999999999,8194.335246719409,832.0,238.697,98.0,315.0,5506.9661163740475,3133.629624,40.124141728547,239.0023,230.44444444444446,286.038088,6549.917359225298,650.0,190.33589999999998,92.0,222.0,4516.018578897997,2443.0203210000004,33.44994911254699,191.0531,133.52777777777777,229.49347600000004,5439.376324574526,725.0,196.67889999999997,88.0,277.0,4322.222646528298,2746.814198,33.718970684849005,196.4465,173.86111111111114,233.08224799999996,5596.663299428806,633.0,179.02399999999997,82.0,241.0,4112.380858707799,2387.398376,30.952012561697998,179.4618,143.88888888888894,214.55821600000002,4945.624333079678,493.0,147.02689999999998,54.0,176.0,3470.297003857647,1855.4966609999997,19.909664516547,146.6332,119.94444444444443,176.13370800000004,3472.5463681075244,162.8695652173913,5.533930434782606,1.059031614208287,15.30434782608696,118.86956521739127,37.63239648819991,758.7592364347826,4.159594477156434,4.848243478260869,110.40579710144927,3.795846608695652,778.6246066522324,6.744801512287349,0.1617465028355391,-0.5854927974527718,0.11720226843100388,22.614366729678647,-6.088315287461175,30.431769285444087,-0.48139402756792954,0.16638506616257098,-6.163778617937409,0.04969884310018933,-52.01729416141958,20.519848771266556,1.3077192816635161,0.11339782965597389,-4.981096408317578,-0.7410207939508497,-7.516565903557154,88.1726300207938,-1.1990577271374554,1.166719470699433,26.306605755093468,0.8294692551984879,-162.0680300192486,-86.41398865784501,-1.9795381852551983,0.02734109144012535,-4.860113421550095,-51.0226843100189,1.9169046335833657,-402.3906437069943,0.036503884597509376,-1.8723054820415879,-25.076769586221385,-1.0604341550094516,-191.57213331440224,-0.551984877126662,-0.4555610586011324,0.12364363555136364,1.6937618147448008,1.230623818525519,-9.490031167043226,-1.4085622325140719,-0.4327843173634499,-0.3444841209829854,-7.791167821886158,-0.3373376559546309,-26.004565398241283,-1.2816635160680618,-1.607853119092625,-0.4458668798722955,1.2514177693761817,-18.49905482041588,-1.4391652859120332,1.1549343156900473,-0.08660500685664076,-1.2772032136105842,-18.133375341314853,-1.1848416710775038,117.44825879304364,-28.678638941398873,-0.18896049149338423,0.30543443325015013,1.2211720226843101,-17.374291115311905,12.486622742510912,-133.10572636105863,0.7860173106818126,-0.3112361058601129,-11.015490443184207,-0.10358920982986765,-13.780914448298361,10.315689981096401,0.9453712665406443,0.1449984980431061,-2.635160680529301,18.31568998109641,-11.83938109631539,42.04456048393205,-1.13616835012682,0.8327353497164479,0.62413358538122,0.6032623818525523,-183.12711924976134,21.3742911153119,-0.90704820415879,-0.3210439342248676,-3.4820415879017026,4.461247637051041,-3.979422305715329,103.81425549149345,-0.8680060031297266,-0.617029111531191,-29.437408107540428,-0.8541913119092627,60.07341648341972,0.7302264166731524,0.49085543615411886,0.44769725822576667,0.25058603021607195,0.3029785827877388,0.12525069958224302,0.19181045018050316,0.06396741945141458,0.12516536805233372,0.03274628448475711,0.08505287293115754,0.01610309257283805,0.056661808301797525,0.008043885963042181,0.0351184048342587,0.004154059681128357,8.055006710202047,5.749432216566168,3.608523546658212,2.2480894280426966,0.5520750599705637,-0.4660965427811762,3.1390306675568715,0.9726206848340925,7.004120073439257,1.991660651114039,14.64341445873509,11.011079023975066,16.02825781708113,11.761410552599042,1.9384348692506612,0.6685724635533989,3.5542118502661495,2.297632410378508,8.001937227187206,1.4348814814084596,3.758133573451423,2.4933634339452566,20.8333204978018,14.651504811752357,0.3980428235272065,0.8265841825055266,0.8864369049661558,0.9041582134088084,0.9041582134088084,0.9041582134088084,1.6921962173509815,519.7401440929854,0.0,3.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,2.5704093686419025,0.46760380444188954,0.17391304347826075,0.08695652173913082,0.08695652173913082,0.08695652173913082,-59.79192855116597,901.3387162882193,84.27009765128975,39.18863983861823,84.74331532903047,,10.0,280.0,22.745787492368255,19.703392636909214,12.305003824787018,0.0,17.28988017195146,6.06636706846161,0.0,5.316788604006331,5.101407525739723,4.417150937053347,7.266666666666666,22.5,10.5,0.5,12.0,0.0,0.0725490196078432,-1.5,0.3931085477669326,0.07879763821792796,-0.31431090954900465,0.039978213507625204,0.2947692307692308,0.0,0.8318840579710146,1.0196078431372548,0.438775510204082,0.7530864197530867,0.9796296296296296,8.960825885430282,0.35566291430929553,0.5276629143092955,15.93714456672695,4.984767416832101,3.0737832312316993,24.89797045215723,8.0585506480638,0.4192307692307692,0.1834862385321101,0.0,0.3853211009174312,0.125,0.5692886011663264,-1.1892406403010372,-0.14013949356235728,-0.051706114795697276,-0.1321378489223375,0.43071139883367354,0.8997536551487366,0.05516971715865183,0.03911972413690158,0.06426811822490976,-1.411905657590987,0.5206108738209645,0.6233295739171154,1.5283243474348303,0.958333333333333,0.38943245549865896,1.418037257195655,0.5253845602237546,1.1415919633302671,0.5905755722676195,0.5896073079840145,0.6527848080909301,0.8914068376280322,0.6540590665130525,0.632654938892481,1.012106658610696,1.1916118421052628,0.7378720209448275,1.2581529908468958,0.6621861461514676,1.167116038488275,0.6145394420607828,0.5087955350439632,0.6481214700759211,1.0079076321731981,1.283235451147891,1.1802190282242986,0.9334615010439709,1.026785714285714,1.2118124499251057,0.8929141943486366,1.282234078656919,0.8906037200237318,1.1993047491618913,0.9662766130342922,1.1286914767501417,1.0635782015985482,1.0355935219789998,1.0032049972606416,0.6532117505802847,0.8058712121212118,1.009509875640088,1.097975440551198,1.0370796622708425,1.0618283995915019,1.0041918662907348,1.0466439135381114,0.9935104660694429,1.0740951509112677,1.045599256490874,1.13612438888208,1.1112518861444767,0.9317129629629627,1.117315559890542,0.983841171449753,1.0425890116665515,1.0114147331619625,1.1258686181213031,0.9438432043665265,1.124484302434087,0.9595363998797889,1.0962051829643926,1.0348848502385892,0.840830909557572,0.8016826923076921,1.0926650160373645,0.6534520626325544,1.0937444349878236,0.8302451561993395,1.056112071206287,0.9563012029538678,1.050947265952724,0.9638538169181529,0.9509450080085424,0.7574312777144008,0.9767118170703754,1.1499999999999997,0.7995318215069498,1.2374617135234343,0.9617815282077623,1.2707406904056173,0.7639261552368584,0.8062479215892187,0.7542929457267662,1.2842128549716716,1.0367191671115856,1.2354284320288125,1.2303078927873088,1.3656249999999996,1.0734455010972936,0.9344682948960582,1.0314555490320794,1.1309271192107806,1.2152256846047336,1.4978078235757415,1.2711854027362992,0.9719455219275648,4.5,0.0,2.000000000000001,1.388888888888889,0.7400000000000001,0.2777777777777778,0.2482993197278911,0.19706632653061223,0.15470679012345676,0.08938271604938272,3253.4078259680755,3415.682431643366,1756.8419190947989,1693.3010985425476,10.911570848177677,0.4611969643729293,5.879187496457983,0.8559657868968354,1.0,0.125,1.9531525874151108,4.0559581516151235,4.349648912578752,4.436605434317882,4.436605434317882,4.436605434317882,0.25,0.0,0.08000000000000004,0.06944444444444445,0.046250000000000006,0.02136752136752136,0.017735665694849363,0.01642219387755102,0.01718964334705075,0.012768959435626103,0.5311784281670431,13.432098765432098,5.76,3.4844444444444442,93.83084397012485,1.0,3.7557681048339076,70.37793902718552,,48.673867864264516,46.65562266946745,46.58022132695348,48.69626100603632,93.16325302191228,47.884981687944155,48.78943422173477,76.97698775686064,0.03968677700658489,0.028010302450338066,-0.5298210711538005,0.007339015151515275,0.18231833699097794,-0.15504288932665977,0.038436143506580284,-0.11090887480005243,0.03288868551825734,-0.053502213325165554,0.012547413760584221,-0.06402303045498138,0.07625677916092961,0.14302931910465735,0.0648097068634678,-0.19699461722488024,-0.003773149039387052,-0.12089318884428367,0.07033541329530428,-0.17447505289540466,0.14565529028796392,0.14421723940989253,0.13226224147939114,-0.1259834415778262,-0.2905511911117892,-0.19588840671387558,0.014137918315592414,-0.17390422077922077,-0.23505590970843354,0.027894409811201334,-0.2904172634695565,0.004805810428748657,-0.21148074545450196,-0.12438220672009072,-0.15298667251165168,-0.1347357228370242,-0.0023621155495154767,-0.057375541074523584,0.0813723273661562,0.07713498622589526,0.007215535013633036,-0.175759844282069,-0.0012938560022954983,-0.07251609650473552,-0.04952205772852586,-0.04918408288715456,-0.061939837955664406,-0.02327744835006998,-0.0067034466393783455,-0.24750088081991473,-0.3586413495149181,0.06965488215488214,-0.1325692920425913,-0.032577133755206863,0.0012966338837739884,-0.01773601630534554,-0.22440868070751027,-0.13991067290270934,-0.2658984083673071,0.12849390565730706,-0.15576615056059798,-0.030205901543122447,0.25513119251530014,0.07058566433566432,-0.1292977322604243,0.2935199352339164,-0.15518410539905,0.1671612483913278,-0.056788453122490645,-0.08826051322441454,-0.024141283392676603,-0.01565685033696618,0.05827015483182057,0.15716525089487496,0.1259628290694457,-0.1584090909090909,0.14175566934893932,-0.289437602306979,0.05097927483159175,-0.2512924968664833,0.158019399226614,0.005200840115515863,0.14621280797620548,-0.21637763341973285,0.15092098238120658,-0.18849269015496495,-0.34862087156350424,-0.2616477272727273,0.043160204828090735,-0.12160627753291219,0.1573442379115988,-0.23997697590020267,-0.14635887851808277,-0.3066235669904611,-0.2587881202694863,0.08872623388177711,2.102578844744821,5.893476966204652,1.5503438738188353,20.679586988595915,44.10861153436528,46.66499964750358,46.75265182141663,46.75265182141663,46.75265182141663,33.8531080817401,16.668980599330844,8.217316540654679,8.966810941754574,0.0,17.184127482409252,3111.694839639798,2966.724641916539,392.7852245907079,32.0,25.0,30.0,36.0,34.0,31.0,29.0,34.0,36.0,238.033819292,18.0,4.465908118654584,5.2832037287379885,6.142037405587356,6.9782137426306985,7.834788107388194,8.677439540558334,9.532061486651386,10.377763293304536,11.231053149814608,0.884057971014493,1.0953043478260869,1.1502501014530078,0.8621046649267154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.670938765946368,1.0734867860187556,1.0856265239557934,0.705710139027779,2.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,3.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,4.417150937053347,11.468067454730246,5.760247418874442,5.907179729351506,0.0,20.225644056843723,9.803449708026353,5.101407525739723,0.0,0.0,6.06636706846161,0.0,12.280967647996928,245.63104748081386,-513.1218569727727,-60.46601060802813,-22.309645955337945,-57.01353966364142,185.8391189296479,388.21685931544664,23.804087043261614,16.878993883280284,27.729775665389045,0.5,0.4384447421875506,0.19128450914386266,81.85128893261962,0.207306280626769,43.18860302996167,0.5615552578124493,5.0,0.16666666666666666,0.4317731483261449,0.8966292914777542,0.9615539600943472,0.9807769800471735,0.9807769800471735,0.9807769800471735,0.07349999999999995,,1.8214285714285716,2.1712424383434152,1.7666692712220975,1.8163286094222189,-7.484198594423033,1.9383414932680543,1.803525973543031,-3.2722709032638435,53.20110000000001,18.92953635401466,0.0,10.325701127960862,5.101407525739723,0.0,6.544756405912575,28.007299824563233,0.0,0.0,3.6109179126442243,0.0,4.919980925828125,3.044522437723423,6.3784261836515865,5.351858133476067,7.902857191280582,7.368339686311381,9.464750005164392,20.33333333333334,2.4940376196775005,0.0,0.0,4.775271872637944,0.0,0.0,-0.3081029278995544,0.0,25.191999999999997,0.0,32.18707186423953,0.0,-0.6910429526748967,0.0,1.11625,3.6566421012849584,-1.1065913958175857,26.45575233341918,5.316788604006331,10.67871938593283,0.0,34.62987479990967,4.794537184071822,10.114318268765572,5.760247418874442,21.65129259971629,0.0,0.0,0.0,19.828407293314456,15.431591616766465,20.94655014232298,140.75587805437104,,97.13345001424332,93.05580505207098,92.95259921023376,97.17883629331709,187.56276139466095,95.54192320020971,97.36668891717036,154.3389485611641,20.946550142322977,140.75587805437095,,95.52630715710046,91.1400029005915,91.39377338268481,95.57619340265049,193.81070463824756,93.83162188262025,95.7753424699265,157.2262464169852,4.481646703456576,109.33605981895735,,75.69677095253023,72.54191426237946,72.38703333183173,75.73155056002793,143.46575939892173,74.4594567650531,75.87798792752537,119.89734264207164,1.23215000837194,8.279757532610061,,5.713732353779019,5.47387088541594,5.467799953543162,5.7164021349010055,11.033103611450644,5.620113129424101,5.727452289245315,9.078761680068476,2.3415731371795077,70.37793902718552,,48.673867864264516,46.65562266946745,46.58022132695348,48.69626100603632,93.16325302191228,47.884981687944155,48.78943422173477,76.97698775686064,24.690196078431377,0.0,0.0,0.0,0.0,0.0,0.0,24.969410050983246,-0.1824055964978586,2.0220335726883345,0.0,0.0,0.0,0.8856018518518516,0.0,0.0,0.0,16.231333197638918,189.17582587345447,44.92250951054755,93.28703748714784,100.0419249893113,102.0419249893113,102.0419249893113,102.0419249893113,322.0,105.5224685733277,242.2943405370073,65.04165247607978,118.05000000000001,118.05000000000001,1.0,7.372942641111037,5.169925001442312,3.8762688022269045,4.066955741006388,,4.071868370723047,4.0724801505797,4.070851809041381,4.0718560345488415,4.04442050582744,4.0720391325713985,4.071839445746498,4.056960195802751,0.22801581189570028,0.23923269064743458,,0.2395216688660616,0.23955765591645295,0.23946187112008122,0.2395209432087554,0.2379070885780847,0.2395317136806705,0.23951996739685283,0.23864471740016183,1.885501293105799,1.933522995460964,,1.9347302043269718,1.9348804385307767,1.934480518309399,1.9347271747121195,1.9279665294623096,1.934772140424185,1.9347231006888745,1.931062223999196,145.32999999999987,79.34133735847291,79.66447993357954,,79.06956095507896,79.02218453293364,79.15144673671506,79.07050886880157,80.88313615888227,79.05716822177807,79.07165173127441,79.98877540035643,4.667137491674877,4.686145878445855,,4.6511506444164095,4.64836379605492,4.655967455100885,4.6512064040471515,4.75783153875778,4.650421660104592,4.651273631251436,4.705222082373908,4.904387522049562,4.9084520654163795,,4.900956234518979,4.900356880980092,4.901991315639264,4.900968222799036,4.9236336004786505,4.900799490198891,4.900982676407972,4.91251456839649,4.775271872637944,31.496028911564625,16.882178183001596,0.0,-0.7686812116822026,1.848024507642563,1.11625,-0.1824055964978586,0.0,183.43084630499771,105.9824689321228,-221.3967730168874,-26.089279659222644,-9.62594665290815,-24.599641446320827,80.18403557014877,167.5039928921826,10.270753397805205,7.282782299660111,11.964570920870184,580.0,20.0,1.3951682068889268,0.3540657925595009,0.0,0.0,0.2845177968644246,0.023526168822906993,0.0,0.0,0.0,0.0,0.0,0.0,0.21407617506269555,0.07354916162409333,0.4118661865511629,0.08660473121701277,0.5235411818046629,0.06320682527094494,12.41384908344359,8.34454241462002,8.0585506480638,4.510548543889295,7.57446456969347,3.131267489556076,5.7543135054150945,1.9190225835424375,4.505953249884014,1.178866241451256,2.8917976796593563,0.5475051474764937,1.7565160573557232,0.24936046485430763,1.0184337401935024,0.12046773075272235,2.726683696061372,0.5358365492137741,3.5357058948680833,0.5781151168937751,4.0315858242815406,0.4464979572752731,59.90448186218693,27.846005502196423,24.433426367964508,24.213986197872597,24.213986197872597,24.213986197872597,86.0,98.0,25.770757999999987,12.937242,0.5217391304347826,52.09,6.416666666666667,3.7222222222222223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,5.0,5.0,23.0,0.0,0.0,24.0,5.0,4.0,6.0,18.0,9.0,18.0,15.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,1.0,2.0,17.0,9.0,0.0,4.0,5.0,0.0,2.0,3.0,0.0,0.0,0.0,1.0,1.0,3.2386784521643803,5.811140992976701,3.7436043538031827,4.172462341486053,4.640175295186782,4.809130917885527,5.075173815233827,5.1343267664388055,5.473320542534312,5.7791991139409555 +472335,CC[C@@]1(O)C(=O)OCc2c1cc1n(c2=O)Cc2cc3c([N+](=O)[O-])cccc3nc2-1,1,28.772727272727273,6.8039704545454525,4.204545454545454,11.772727272727273,160.3654501229258,114.20271665909095,1.5894640357439769,6.849463636363634,7.9572285353535355,8.234147363636362,249.20184961140322,29.5,6.687291666666667,5.020833333333333,10.541666666666666,146.0272055612864,114.36152160416674,1.9038643401250008,6.8217750000000015,3.730613425925926,8.042996916666661,292.86020745529527,27.19047619047619,6.633250000000001,4.654761904761905,9.892857142857142,150.3950636771332,104.8661751428572,1.7376404859654049,6.745711904761904,4.291170634920634,8.035722666666661,266.08432746598123,25.243243243243242,6.598936036036037,4.09009009009009,8.144144144144144,152.26323346740983,96.25373208108105,1.596100752980108,6.701529729729729,4.285910910910912,8.027509153153156,243.04476625658825,21.841269841269842,6.771110317460318,3.492063492063492,6.761904761904762,158.8388141791479,80.38580703968252,1.3932477702559127,6.833284126984126,4.489858906525572,8.249088793650792,210.94550523436936,20.5,6.6053275862068945,3.293103448275862,6.543103448275862,158.90498462658917,75.38502068103448,1.3419092728292064,6.667025862068966,4.51544540229885,8.107336517241379,198.4399811927404,19.884615384615383,6.501095192307693,3.2884615384615383,6.125,160.6521402157869,73.28231581730769,1.3072842480839906,6.563225000000001,4.102564102564101,8.006201423076922,191.9899899794298,19.134831460674157,6.562752808988765,3.067415730337079,5.865168539325842,162.65869210230883,69.61086113483147,1.286468414464483,6.614257303370786,4.141697877652932,8.072808224719104,188.0682400291364,19.0,6.394680000000001,3.066666666666667,5.8,158.6477091831465,69.56206469333334,1.299308632711187,6.467467999999999,3.96,7.922613866666666,189.43593501774697,7.27685950413223,0.18387536157024786,0.0276013350482205,0.8155991735537189,4.822314049586776,1.552041677352434,34.28114846435951,0.2187608445915882,0.16488842975206602,3.3363571797520652,0.12382007231404958,44.01141075690958,0.2856404958677678,0.010572081611570236,-0.011622596589882996,0.3174500688705234,1.399276859504133,-0.00290231977584735,1.3523334234245858,0.011828280614024944,0.008661570247933886,-0.20221629170492803,0.006293372761707997,1.5381169535180692,1.0532270759543478,0.02070112652499015,-0.001902610705710035,0.02260428964974425,0.9309327036599765,0.026994275884562553,4.9800217602075945,0.02614950959562657,0.019472825659189275,0.43298054271065645,0.013987358421881157,5.978923335178931,0.6260888988161712,0.013052177332290967,0.0034479778473675508,-0.11678672474127016,-0.10609783337056064,-0.23066412394110197,2.8600589899811997,-0.023090303731268236,0.013714764351127973,0.17757720918232284,0.00681842809545083,-1.336183917314961,-1.959399186671914,-0.04880644021382658,-0.0022812906461638326,-0.04431490226944772,-1.3735406008133275,-0.0008465265270241474,-9.124189188385477,-0.012208178283953038,-0.045517289780926125,-0.6436025000182196,-0.029541896267873548,-5.891852218953804,-0.6506839555428897,-0.009323167212881161,0.00042475907295625695,-0.015050584212026218,-0.32466514676546016,-0.09598654167207735,-3.0571014132231404,-0.007977560187200205,-0.009849715018523787,-0.14936740049396785,-0.006173417925334848,-3.3432459386824065,0.23275588048315338,0.0018434976954863395,-0.00062191407456473,-0.06669183089637638,-0.030356007628734957,-0.04157220657458348,1.0798549932453905,-0.007893168113124611,0.002566290527654162,0.042272870752984436,-0.0002983363000635611,-0.1404425987708057,-0.7319156839075126,-0.016987108250533928,0.0015961756752684078,-0.05921510818088961,-0.4847246726715573,0.2576638517936539,-3.392362773348269,0.009663499864766598,-0.016548899619277538,-0.39747396558795306,-0.010073108064815667,-0.11213381010008369,0.1285950413223143,-0.0074624524793388235,-0.0012602784962523399,-0.07347796143250689,0.13101928374655644,-0.11453689628725021,0.5770712638223138,-0.025881920808130468,-0.004473157024793396,-0.15853310567799195,-0.00804947473829199,-1.9070960141268904,,,0.4551724137931035,1.353448275862069,0.6724137931034483,0.034482758620689655,0.6810344827586207,-0.008620689655172414,0.8423861538858486,0.019580088244096145,0.034407674450992694,1.1416782975052553,0.26088992125443317,0.2165718374798533,1.9840644513911039,0.4774617587342865,2.0757689727912108,1.4816609097010152,0.22176514343134207,0.3723429196588529,0.0,0.5941080630901949,8.934001936363645,1266.0,299.3746999999999,185.0,518.0,7056.079805408735,5024.919533000002,69.93641757273498,301.3763999999999,350.11805555555554,362.30248399999994,10964.881382901742,1416.0,320.99,241.0,506.0,7009.305866941747,5489.3530370000035,91.38548832600004,327.44520000000006,179.06944444444446,386.06385199999977,14057.289957854173,2284.0,557.1930000000001,391.0,831.0,12633.18534887919,8808.758712000004,145.96180082109402,566.6397999999999,360.45833333333326,675.0007039999996,22351.083507142423,2802.0,732.4819000000001,454.0,904.0,16901.21891488249,10684.164260999996,177.16718358079197,743.8697999999999,475.73611111111126,891.0535160000004,26977.969054481295,2752.0,853.1599,440.0,852.0,20013.690586572637,10128.611686999997,175.549219052245,860.9937999999999,565.7222222222221,1039.3851879999997,26579.13365953054,2378.0,766.2179999999997,382.0,759.0,18432.978216684343,8744.662398999999,155.66147564818795,773.3750000000001,523.7916666666666,940.4510359999999,23019.037818357887,2068.0,676.1139000000001,342.0,637.0,16707.822582441837,7621.360844999999,135.95756180073502,682.5754000000001,426.6666666666666,832.6449479999999,19966.958957860697,1703.0,584.085,273.0,522.0,14476.623597105487,6195.3666410000005,114.49568888733899,588.6688999999999,368.611111111111,718.4799320000002,16738.07336259314,1425.0,479.60100000000006,230.0,435.0,11898.578188735988,5217.154852000001,97.44814745333902,485.0600999999999,297.0,594.1960399999999,14207.695126331024,320.18181818181813,8.090515909090906,1.2144587421217021,35.88636363636363,212.18181818181813,68.2898338035071,1508.3705324318184,9.625477162029881,7.255090909090905,146.79971590909088,5.448083181818181,1936.5020733040215,13.710743801652853,0.5074599173553713,-0.5578846363143838,15.237603305785123,67.16528925619838,-0.1393113492406728,64.91200432438012,0.5677574694731973,0.4157553719008265,-9.706382001836545,0.30208189256198387,73.82961376886732,88.47107438016522,1.7388946280991726,-0.15981929927964295,1.898760330578517,78.19834710743802,2.2675191743032546,418.32182785743794,2.1965588060326318,1.635717355371899,36.37036558769514,1.1749381074380172,502.2295601550302,69.495867768595,1.4487916838842974,0.38272554105779816,-12.963326446280988,-11.776859504132231,-25.60371775746232,317.4665478879132,-2.5630237141707743,1.522338842975205,19.711070219237836,0.7568455185950421,-148.31641482196068,-246.88429752066116,-6.149611466942149,-0.2874426214166429,-5.583677685950413,-173.06611570247927,-0.10666234240504258,-1149.6478377365702,-1.5382304637780828,-5.735178512396692,-81.09391500229567,-3.722278929752067,-742.3733795881792,-75.47933884297521,-1.0814873966942147,0.049272052462925806,-1.7458677685950412,-37.661157024793376,-11.134438833960973,-354.6237639338843,-0.9253969817152237,-1.1425669421487592,-17.32661845730027,-0.7161164793388424,-387.81652888715917,24.20661157024795,0.1917237603305793,-0.06467906375473192,-6.935950413223144,-3.1570247933884357,-4.323509483756681,112.3049192975206,-0.8208894837649595,0.2668942148760328,4.396378558310381,-0.031026975206610352,-14.606030272163792,-65.14049586776862,-1.5118526342975196,0.1420596350988883,-5.2701446280991755,-43.1404958677686,22.932082809635197,-301.92028682799594,0.8600514879642271,-1.472852066115701,-35.37518293732782,-0.8965066177685944,-9.979909098907449,9.644628099173573,-0.5596839359504118,-0.09452088721892549,-5.510847107438017,9.826446280991734,-8.590267221543765,43.28034478667353,-1.9411440606097852,-0.3354867768595047,-11.889982925849395,-0.6037106053718992,-143.03220105951678,0.7068714152462408,0.5296782796852526,0.41958760616043367,0.27711818587866066,0.25816146705376897,0.13932941022772505,0.16173738428425483,0.07389408154234063,0.09781204263536324,0.03829243192156811,0.05991874606584874,0.019549493494981987,0.03733035135730823,0.010044342201376634,0.023169840782824275,0.005251550593646638,8.054864094226321,5.671058094168069,3.607816277766031,2.1679326348138472,0.48462339999100973,-0.48735441936168616,4.029081030459349,0.9725621149828794,7.004124179173245,0.9880033345249197,14.594849985258596,10.935098558518932,16.028348611651968,11.684642820891554,2.0158540644772662,0.6692104774444039,3.5533194598577458,2.216941239840175,8.001939690065223,1.1712418579211508,3.757227454507883,2.412336353703019,20.914292577413573,14.651515098615864,0.29062296666866416,0.6972286569596242,0.8451968171311142,0.8902388658416804,0.8902388658416804,0.8902388658416804,1.394852010357312,1311.7948815580414,0.0,2.0,3.0,0.0,9.0,1.0,4.0,1.0,0.0,3.756967803144669,1.3750793969094977,0.508284726740917,0.24442926141280896,0.24442926141280896,0.24442926141280896,33.34857976411956,1536.8567345067345,84.30915177968211,34.92856214788032,78.82339471142117,,12.0,598.0,16.493667147753207,24.80992003174992,41.946016146481064,27.85423241347498,0.0,10.633466716252965,31.18920547353706,0.0,4.9839785209472085,4.736862953800049,13.200000000000003,39.25,19.5,1.0,19.75,0.0,0.044827586206896454,-0.25,0.24861910241657098,0.08474025974026,-0.16387884267631098,0.020000000000000018,0.2082528735632181,0.0,0.6954545454545454,0.8999999999999997,0.44683544303797446,0.6107142857142854,0.8799999999999997,24.42919846268961,0.5678225590787882,0.9978225590787881,33.1086706276524,7.565807716378561,6.280583286915746,57.537869090342014,13.846391003294308,0.5057471264367819,0.1641414141414141,0.03787878787878787,0.43939393939393934,0.25,0.47132855796991624,-1.245544728658142,-0.10576151543825076,-0.028307834742230493,-0.0889674806184387,0.528671442030084,1.3970804795891427,0.039208073968821,0.031751829081571425,0.04656934931963809,-5.042342358621429,0.5973493990157109,0.5685355402570593,1.3632865087133954,0.6864840616423897,0.36098168380462736,1.117118174996323,0.6031180779690405,0.9307990973602608,0.5540205963001947,0.5958333826099703,0.5927415693242568,0.8229524821290539,0.6131374895216464,0.6108203532683711,1.0758443720687265,1.1411683102626737,0.5898748316807444,1.049716279568556,0.617292009437054,0.8687817090717497,0.5952026596043026,0.4707095830592401,0.6173706433617863,0.7771162006330179,0.7319883767924655,0.7075617555126813,0.8866358803673269,1.209021561143157,0.8215799346904749,1.183610832600659,0.7383745695124107,1.091057670311603,0.6896343509135782,0.6436219183371981,0.7268388514583944,0.9658714916090804,1.2113529019406366,1.3116981415999878,1.1648474187531173,1.0175417433175509,1.247301791324928,1.0073385529038557,1.205633769330941,1.005136087459889,1.3106479243912523,1.2122906803126516,1.2992869063527777,1.0468853815502843,1.0807571618790266,1.0492872265983713,0.9720708606556543,0.9503177480290887,1.0656930532163227,1.0211488743801531,1.0801098125543345,1.018662942336121,1.058692739375745,1.0447674013600057,1.052472698926605,1.0597864729400122,0.9781851985323026,0.9138884849870946,0.9175855851729323,1.07725191211575,0.9967186573067038,1.0127419987299888,0.9805790653186279,1.0090899321304014,0.9176765013330406,0.84999651410868,0.9002674867767535,1.0155938944174965,1.1272036445073985,1.06993906025663,0.9092776755631744,0.9895467903878861,1.1168871494179837,0.8363933400113029,1.1260477469064578,0.9115064934477938,1.0844378939152166,1.093030042287388,1.031367195055878,0.9975551102154159,0.998286958167708,0.9475447655180996,0.8587605509882269,1.0384631623390332,0.936272493573265,1.0078605022549976,1.0017782659922363,1.125620179549638,0.946849518415491,0.9201769371721089,0.959526455857466,1.0897218703761753,7.0,0.17345168860320376,5.333333333333336,3.326388888888889,2.923888888888889,1.660277777777778,0.8964625850340135,0.612953514739229,0.39961262282690846,0.2653240740740741,6454.574381440335,6913.96646167295,2927.250312937423,2769.6652738078883,13.60790022228031,0.45356390900217974,7.435847804151222,0.8300401757393969,1.0,0.25,1.7024638154926284,4.0843522217278,4.95114689189638,5.215002357224488,5.215002357224488,5.215002357224488,0.21212121212121213,0.010203040506070809,0.10256410256410262,0.05453096539162113,0.05316161616161617,0.03532505910165485,0.021864941098390572,0.018574348931491787,0.014271879386675302,0.011535829307568442,0.5341529945704038,20.877869605142333,7.548816568047338,3.111111111111111,162.8812185893959,1.0,4.339617691407781,144.87874069505366,,106.87966257280733,105.17684329612366,105.23727920041223,106.89892341015869,139.25879743129036,106.22325654188136,106.97583017816086,125.84777659863488,0.03925326519023272,0.05749591202044365,-0.42108820350819665,0.38922313700654426,0.29016709511568145,-0.0018700011850186278,0.03944831150655711,0.05406945944146243,0.05252988497105485,-0.06060990499822784,0.05082675727846351,0.03494814019967748,0.14473648630377753,0.11258238378545066,-0.06893183617336289,0.02771494918423361,0.19304688456359415,0.01739275193344744,0.14526998024541352,0.11953468932909793,0.11809698041560303,0.12977643561018024,0.11296519344944723,0.1358493907001213,0.08603833816781004,0.07098382959429018,0.12492069102251077,-0.14319132305199433,-0.02200143588318396,-0.14861980016837092,0.08342949749640588,-0.10555044150783145,0.08317602618782978,0.0532248795962305,0.055067227534458155,-0.030359942895154444,-0.26926439703271055,-0.26543219165978654,-0.08265146023474364,-0.054334167697055596,-0.2848301845731151,-0.0005454277029906847,-0.2661576288166502,-0.05580604841211364,-0.2760490220530819,-0.19290575479273103,-0.23858729619334504,-0.13387101475789007,-0.08941823807006209,-0.05070373286156303,0.015389077094067657,-0.018453407874909917,-0.06732559170286322,-0.06184533770756527,-0.08917733361242156,-0.03646703870655543,-0.05973563477640172,-0.04476960722324934,-0.04985797383219881,-0.07596316230689182,0.031985759839252205,0.010025800519130717,-0.022532028739849875,-0.08177035124470215,-0.006294904752488313,-0.026785496279648782,0.03149996548009658,-0.03608126549273763,0.015563799907082364,0.01267036725250318,-0.0024094340641869385,-0.0031910496926926364,-0.10058125809518345,-0.09238381969975984,0.057829654706188414,-0.07260319787093242,-0.10051702723780367,0.16601606487345907,-0.09895709231781274,0.044173809453001985,-0.1003642259445447,-0.11913411669475106,-0.081352787771492,-0.0025478349403394037,0.017671777399205037,-0.04058429805718078,-0.04566005572015227,-0.09009077475195272,0.02716938017709226,-0.07379756481967296,0.016833486906725644,-0.1183114869411401,-0.027128386336866962,-0.04751682662758938,-0.06500944950085152,-0.04333185374721226,6.390985893382702,22.783207033703324,14.088979397713741,16.715144819377286,42.14682503660934,48.294347276105924,48.56031358515665,48.56031358515665,48.56031358515665,60.19730021094511,42.96816638132944,6.43118915950892,10.797944670106734,0.0,17.22913382961565,7719.66220921568,6784.072534253071,1172.2746505473415,464.0,52.0,78.0,109.0,152.0,193.0,254.0,325.0,392.0,393.0960852000004,33.0,5.14166355650266,6.066108090103747,7.011213987350367,7.953318346560431,8.902591637374087,9.850561346726723,10.802082635874594,11.753051985804756,12.706141623458421,0.7727272727272726,1.0291818181818184,1.1191637171785347,0.7443082477425998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7010600843767013,1.0139037433155078,1.037095279083626,0.696054405750976,5.0,1.0,0.0,0.0,0.0,2.0,6.0,1.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,14.410489996432108,6.606881964512918,5.601050810983688,0.0,11.24665316973557,14.908855452837393,9.77851570501903,0.0,0.0,12.990104268152233,24.619922828310838,17.193270051855603,39.32229986820522,274.1079083862394,-724.3644684814134,-61.50713190264241,-16.462828829123026,-51.740319177243805,307.45648815035895,812.492266025321,22.80201987703969,18.465733318757295,27.083075534177368,0.5,0.5909984943360692,0.1733873296507672,122.45508076321549,0.12967269711711704,25.686975718315185,0.40900150566393084,6.0,0.06060606060606061,0.3118390217913513,0.7481277369213163,0.9068978673520253,0.955228075285643,0.955228075285643,0.955228075285643,1.9878,,1.9285714285714288,2.2712889716147044,1.7145538716427509,1.923094010038725,-8.048311040580366,2.0358782129742963,1.9117577806498842,-3.3519407530784404,101.1792,19.561238581530247,0.0,9.551078168738563,0.0,32.097248004025815,0.0,67.49031216528844,0.0,11.387855989696922,4.204692619390966,0.0,5.616771097666572,2.3978952727983707,7.243512974665482,4.844187086458591,8.968396191198256,7.065613363597717,10.74391184398016,33.99999999999999,7.923995793176212,4.560810421390778,0.0,0.0,0.0,0.8260883172713536,2.064477987807715,1.4964777021919877,45.284000000000006,0.0,36.60560377876898,0.0,-0.46459141811504745,0.0,0.0,0.0,-0.7804019846128429,49.24320355585553,5.559266895052008,5.687386274683562,0.0,25.550221900348788,28.284089319281055,10.114318268765572,30.034913297707618,35.126372526379875,0.0,22.29078092177798,0.0,32.74956290067439,30.84664371257486,38.07879901190085,289.7574813901074,,213.62632021950628,210.1970459735153,210.3938950164752,213.66521964721125,280.90025097390674,212.30610768976447,213.81981499213896,252.44581310090098,38.07879901190085,289.7574813901074,,211.9551613550633,208.26952974370886,209.01917647309554,211.99869088437444,286.565905903161,210.56035093962186,212.16090923378255,255.04749395034827,5.144854201291633,214.88109121476037,,158.53369642402333,156.1388222633152,155.42888672510395,158.558329560145,198.93849744942224,157.57383784351663,158.6726471224579,183.28700933783094,1.3130620348931328,9.991637289314047,,7.366424835155389,7.248173999086734,7.254961897119834,7.367766194731423,9.68621555082437,7.320900265164292,7.373097068694447,8.705028037962103,2.6053664514194605,144.87874069505366,,106.87966257280733,105.17684329612366,105.23727920041223,106.89892341015869,139.25879743129036,106.22325654188136,106.97583017816086,125.84777659863488,44.611764705882344,0.0,1.6389302618102637,0.0,0.0,0.0,10.855562403999453,45.63219227967954,0.05853882135447841,0.0,5.040806022847869,0.0,0.0,0.0,-1.8881731197861233,0.0,0.0,30.626393853042945,343.7036827125943,74.90840788167564,179.7114977560232,217.85046324344074,229.46010371787747,229.46010371787747,229.46010371787747,2081.0,142.1867332097558,237.860713824004,80.08498044975612,124.56000000000002,124.56000000000002,1.0,10.045880626235487,6.044394119358453,4.704587076663998,5.307325251963528,,5.300426173601368,5.300575591788854,5.298309974004274,5.30041697117985,5.25460952267656,5.300400234507807,5.300423721807067,5.282817789632501,0.16222714057462062,0.18301121558494923,,0.18277331633108165,0.18277846868237427,0.18270034393118187,0.18277299900620173,0.1811934318164331,0.18277242187957954,0.18277323178645058,0.1821661306769828,2.6132487435140033,2.733798726309643,,2.7324979644312504,2.732526153878022,2.7320986338703714,2.7324962282634018,2.72381643269498,2.7324930706441886,2.73249750186564,2.729170364637075,260.5200000000003,253.1429874160889,192.22258548816762,,192.59454491708314,192.5124922344387,192.99781556008506,192.59696986105376,198.627994626116,192.5836201407144,192.59725641835252,195.34316816046652,8.729068531589274,6.628365016833366,,6.64119120403735,6.638361801187541,6.655097088278795,6.641274822794958,6.849241194004,6.640814487610841,6.641284704081121,6.735971315878156,6.598665233725385,6.3233647369690855,,6.325297912575708,6.324871783339053,6.327389607491733,6.32531050342404,6.356144438519121,6.32524118674147,6.325311991282784,6.339468585578234,6.537283725039857,40.70182278204471,22.59522620347731,0.24127106437667778,-0.7804019846128429,7.923995793176212,0.061435923517453084,1.636033159647289,0.0,319.36092271086363,159.41140032655244,-421.2645849849469,-35.77035804765718,-9.574195113294245,-30.090327498924772,178.80574699242527,472.51657438166905,13.260842929606106,10.739013054128842,15.750552479388968,2033.0,61.0,2.6903547000822443,1.0993048377358645,0.11785113019775792,0.03952847075210474,1.1890888246769982,0.270170020877315,0.13144585576580214,0.017998965073375083,0.0,0.0,0.0,0.0,0.07856742013183861,0.03952847075210474,0.42909796872397105,0.15745876971128525,1.0105022421914593,0.28157841106052856,20.499271042140983,15.360670110872327,13.846391003294311,9.144900133995801,13.424396286795988,7.245129331841702,12.615515974171876,5.763738360302569,10.661512647254593,4.173875079450924,9.107649402009008,2.971523011237262,7.204757811960489,1.9385580448656903,5.885139558837365,1.333893850786246,7.650521108106038,2.590383267188285,12.481573477988405,3.683173875131917,20.53410643586145,4.995193221709141,94.34701926295192,41.26904227692829,27.366204479993815,26.203921979981047,26.203921979981047,26.203921979981047,170.0,215.0,51.513895,22.536105,0.4772727272727273,277.09,9.895833333333332,6.124999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,16.0,17.0,44.0,0.0,0.0,48.0,17.0,3.0,10.0,38.0,20.0,33.0,28.0,0.0,0.0,0.0,20.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,8.0,1.0,4.0,29.0,9.0,0.0,3.0,6.0,0.0,5.0,2.0,0.0,0.0,0.0,2.0,3.0,3.817712325956905,9.111311117008517,4.532599493153256,5.232444622397328,5.890953365511593,6.557843129994222,7.062941137113119,7.623535024862127,8.172614435575987,8.671618163978946 +11683,CC(=O)O[C@]1(C(C)=O)CC[C@H]2[C@@H]3C=C(C)C4=CC(=O)CC[C@]4(C)[C@H]3CC[C@@]21C,0,19.2,5.898,3.2666666666666666,5.766666666666667,161.70390923576616,75.31208260000002,1.3955671492527997,5.971239999999998,4.277662037037036,7.489501599999998,200.41080952718514,21.714285714285715,6.067460317460317,4.142857142857143,5.507936507936508,142.27446709885405,80.93831598412703,1.8228812368253975,6.229285714285715,2.5896164021164023,7.5236041269841225,257.08982031298854,18.588709677419356,5.926532258064516,3.935483870967742,4.080645161290323,150.07865334522205,68.96111921774191,1.566801121950235,6.054387903225804,2.438844086021506,7.451793838709678,217.13074154585303,16.54891304347826,6.020434782608696,3.3967391304347827,3.005434782608696,151.73542793042083,59.00919564130433,1.4745127423159294,6.132516847826083,2.536835748792271,7.565072217391301,199.96406856988466,13.34412955465587,5.838744939271255,2.736842105263158,2.080971659919028,154.7488953950179,45.609991145748985,1.3188112688431664,5.9411194331983825,2.288770805218174,7.42472105263158,170.2689835451957,10.491408934707904,5.67979381443299,2.223367697594502,1.4948453608247423,160.57866144397119,34.51896924398625,1.1076434497266912,5.758704810996564,2.404567583046964,7.321506831615121,135.94719150129168,8.631578947368421,5.6490601503759414,1.9774436090225564,1.199248120300752,165.66421006433293,27.175246296992484,0.9801641140860904,5.70496052631579,2.2553780284043445,7.337092736842107,116.96294336974823,8.883838383838384,5.551212121212123,1.994949494949495,1.5101010101010102,165.0427378083246,28.840329878787877,0.9802145368220655,5.614944444444446,2.073723344556677,7.235157818181817,116.758371324077,9.79054054054054,5.69006756756757,1.9797297297297298,1.7432432432432432,167.67903013398202,32.99955184459459,0.9449348227897497,5.7375101351351345,2.3588588588588584,7.383561000000001,117.9899400400936,7.182222222222221,0.1059555555555555,0.011335280435113167,0.812222222222222,3.6155555555555545,1.314527977316194,34.24192863999999,0.23544514282464005,0.10192622222222214,1.739836033950617,0.06714624,51.912826549376796,0.38603174603174595,0.001896296296296447,-0.005691850881967707,0.43010582010582005,1.6061375661375654,0.04134186497624018,1.8492544203174635,0.00857114285848373,0.0025709206349207527,-0.031023203262786566,0.0003335314285713906,2.572870651339473,1.5312186379928312,0.01907132616487462,0.000531870390315908,0.034820788530465954,0.3532616487455199,0.159861763698694,7.270715916451613,0.03150169645449707,0.019616412186379977,0.21035064466348072,0.01035010193548386,9.01589466983347,-0.7304106280193239,-0.007654830917874256,0.000479615812586081,-0.16004830917874396,-0.7101207729468596,0.002181921723721412,-3.4443737236956493,-0.0027117021702846105,-0.008671041062801832,-0.09122492283950606,-0.003020774782608747,-2.882460528924203,-1.2766891587944214,-0.010851641925326094,-0.0010630617105480324,-0.16836257309941519,-0.577633828160144,-0.19177866575970517,-6.1132175128744946,-0.0364225516138044,-0.011885871345029197,-0.06275082627330433,-0.005249391417004052,-9.162238386838233,-0.4827949599083617,0.0025415807560136812,0.0007010151778751537,-0.03833906071019473,-0.17947308132875145,-0.1890354100647133,-2.3949939960137456,-0.033463982595345824,0.001632930126002256,0.085672668480336,0.002068256219931309,-6.414310625117737,-0.29400167084377593,-0.01046683375104435,-0.0005176601878239326,0.04404344193817877,-0.08472848788638263,0.0654399706833082,-1.320169575338347,0.010408317299675812,-0.009897625730994196,-0.20306137160029705,-0.006369734736842071,0.8293387952368194,0.6443771043771046,0.006397979797979654,0.0005360572754768573,0.034242424242424234,0.5056565656565656,-0.032057550786091474,3.0284246054545427,-0.0023702544692329047,0.0075478518518517545,-0.007373094369622114,0.0020849640404041084,1.9790359493664695,1.3830930930930934,0.0016615615615614954,-1.4961331224130567e-06,-0.02235735735735737,0.19795795795795793,0.2014424188811606,6.675049547837836,0.040052861031207324,0.004705984984984922,-0.011648471388054698,-0.002302126486486475,10.768612107335702,,,0.4761904761904762,0.8303571428571429,0.23214285714285715,0.0,0.5982142857142857,-0.36607142857142855,1.5248479037730955,0.030900411527574674,0.043186125813288956,0.568233591322895,0.11890208797091738,0.34713369915768993,2.0930814950959906,0.4660357871286073,2.030229456982647,1.7742236591402132,0.0,0.25600579784243405,0.0,0.25600579784243405,6.403834325066682,1152.0,353.88,196.0,346.0,9702.234554145969,4518.724956000002,83.73402895516799,358.2743999999999,256.6597222222222,449.3700959999999,12024.648571631109,1368.0,382.25,261.0,347.0,8963.291427227805,5099.113907000003,114.84151792000004,392.44500000000005,163.14583333333334,473.9870599999997,16196.658679718279,2305.0,734.89,488.0,506.0,18609.753014807535,8551.178782999998,194.28333912182913,750.7440999999997,302.41666666666674,924.0224360000001,26924.211951685775,3045.0,1107.76,625.0,553.0,27919.31873919743,10857.691997999997,271.310344586131,1128.3830999999993,466.7777777777778,1391.9732879999995,36793.38861685878,3296.0,1442.1699999999998,676.0,514.0,38222.97716256943,11265.667813,325.7463834042621,1467.4565000000005,565.3263888888889,1833.9061000000002,42056.43893566334,3053.0,1652.82,647.0,435.0,46728.390480195616,10045.02005,322.3242438704671,1675.7831,699.7291666666665,2130.558488,39560.63272687588,2296.0,1502.6500000000003,526.0,319.0,44066.67987711256,7228.615515,260.72365434690005,1517.5195,599.9305555555557,1951.6666680000003,31112.14293635303,1759.0,1099.1400000000003,395.0,299.0,32678.462086048272,5710.385316,194.08247829076896,1111.7590000000002,410.5972222222221,1432.5612479999998,23118.157522167246,1449.0,842.1300000000003,293.0,258.0,24816.49645982934,4883.9336729999995,139.85035377288295,849.1514999999999,349.11111111111103,1092.7670280000002,17462.511125933852,430.9333333333333,6.3573333333333295,0.68011682610679,48.73333333333332,216.93333333333328,78.87167863897164,2054.5157183999995,14.126708569478403,6.115573333333328,104.39016203703702,4.0287744,3114.769592962608,24.319999999999993,0.11946666666667616,-0.35858660556396554,27.096666666666664,101.18666666666662,2.6045374935031314,116.5030284800002,0.5399820000844751,0.1619680000000074,-1.9544618055555536,0.021012479999997606,162.0908510343868,189.87111111111108,2.364844444444453,0.06595192839917259,4.317777777777779,43.80444444444447,19.822858698638058,901.56877364,3.906210360357637,2.432435111111117,26.08347993827161,1.2834126399999986,1117.9709390593503,-134.3955555555556,-1.4084888888888631,0.08824930951583891,-29.448888888888888,-130.66222222222217,0.40147359716473985,-633.7647651599995,-0.4989531993323683,-1.595471555555537,-16.785385802469115,-0.5558225600000094,-530.3727373220534,-315.34222222222206,-2.680355555555545,-0.262576242505364,-41.58555555555555,-142.67555555555555,-47.369330442647176,-1509.9647256800001,-8.996370248609686,-2.9358102222222118,-15.49945408950617,-1.2965996800000008,-2263.0728815490434,-140.49333333333325,0.7395999999999813,0.2039954167616697,-11.156666666666666,-52.226666666666674,-55.00930432883157,-696.94325284,-9.738018935245636,0.47518266666665654,24.930746527777778,0.6018625600000109,-1866.5643919092613,-78.20444444444439,-2.784177777777797,-0.13769760996116606,11.715555555555554,-22.537777777777777,17.407032201759982,-351.1651070400003,2.768612401713766,-2.632768444444456,-54.01432484567901,-1.694349439999991,220.60411953299396,127.5866666666667,1.2667999999999715,0.10613934054441775,6.7799999999999985,100.11999999999999,-6.347395055646112,599.6280718799994,-0.46931038490811516,1.4944746666666473,-1.4598726851851787,0.4128228800000135,391.84911797456095,204.69777777777782,0.24591111111110134,-0.0002214277021171324,-3.308888888888891,29.297777777777775,29.81347799441177,987.9073330799997,5.927823432618684,0.6964857777777684,-1.7239737654320952,-0.3407147199999983,1593.754591885684,0.7315272565784262,0.634370899818674,0.42093554966454855,0.34499053362692084,0.26441795458244194,0.1971268721481858,0.15263560907272775,0.1162621548416648,0.09496898069274295,0.06859765621115231,0.06019713241308914,0.03941912520250566,0.03536967694095508,0.02411378329727822,0.02119232954880395,0.013508199251529296,8.029824099120523,5.69409307732679,3.556282089507018,2.193689643493903,0.4258680153958166,-0.4843804721653212,4.118710918818438,0.9715038916863817,6.029734750941829,0.9950153408455764,13.643734836862146,10.954458637333763,16.01522146355047,11.705313124678446,1.9889696914779003,0.740989524578411,3.502488907354774,2.243597028250411,7.010445515939683,1.0783068025567042,3.71538202445321,2.4396135239599888,20.897070220332886,14.70046257168839,0.20910281155138954,0.48757943726222247,0.7423866117449013,0.8614398872756767,0.8723913572731468,0.8723913572731468,1.6733961979504195,820.4617842103511,0.0,1.0,5.0,0.0,4.0,6.0,2.0,4.0,2.0,4.633985000288463,2.9387688891169885,1.3876396827696897,0.6629072918469561,0.5962406251802888,0.5962406251802888,234.48794960695642,1099.7020298278749,44.974439896892875,18.328367163797914,35.462599515158836,,12.0,544.0,5.601050810983688,14.383611552215466,28.36577611947529,30.5953613843362,25.683286491704038,18.06994625982916,6.923737199690624,6.076020106833881,26.847231705905752,4.736862953800049,13.333333333333334,23.25,6.5,0.0,16.75,0.0,0.023809523809523787,-10.25,0.0941880341880344,0.014861111111111325,-0.07932692307692307,0.0,0.12576470588235256,0.0,0.5377777777777779,0.8095238095238091,0.4435897435897435,0.5229166666666666,0.8095238095238091,42.69574130564668,0.8652115227720909,1.2092115227720908,15.91054055704106,3.3292584631856865,9.719743576415318,58.60628186268774,13.049002039601005,0.5882352941176474,0.2625,0.11249999999999999,0.3,0.7083333333333334,0.3005928583451031,-0.5622168527058307,-0.05359967036961087,-0.009370280878430512,-0.026772231081230037,0.6994071416548968,1.3081431279040996,0.022892315870208322,0.021802385465068328,0.03354213148472051,-4.7693254564290415,0.8910154408297973,0.5804070789389582,1.4180991843947748,0.9224154778190348,0.42306904322884664,1.203625935797546,0.9010903778617076,1.1923767019140417,0.6033899351206204,0.5246299328884361,0.5673328975601746,1.1089075099516248,0.7375588869370808,0.5119310186187487,0.8894038139839889,1.654908212347205,0.9069420762535442,1.0083911766103746,0.7455559978038884,0.9955341184678189,0.5251235950903556,0.41920594669623,0.5109925433946747,0.9178216691111503,1.0979013364991392,1.0508789917384012,1.11055429596992,1.6778311425682513,1.271177948210898,1.1020541671070032,1.0987569035986902,1.1049748698313502,1.0578144065130373,0.8852596841376039,1.0404539907158645,1.1091931145676495,1.138532438770193,0.9265591459935331,1.1075272184811598,1.271939055256789,1.0713752491483546,1.2020490008075895,1.1430841081915544,1.2104177632983844,0.9542374510503907,0.6676243898959443,0.8883272915485526,1.2119451036655495,1.0157844875982445,0.7816770307202657,0.7423396581142823,0.8820003666774792,0.911716903541399,1.1189050806168557,1.0213228684107893,1.1246165072350793,0.8096060194112957,0.7776046872719493,0.7459031678787637,1.1134312871267869,1.01783358845753,1.0988464370868447,0.7919504387112012,0.7578067946884998,0.9585513029654655,0.8620033301671868,1.014053440841098,0.8728942232795727,1.0987995903928678,1.230423091481841,1.087722295108434,0.9236692989637076,0.8494775258775878,0.7220604217510679,0.6635625559247601,0.788770053475936,0.7060308059078805,0.9415100836451014,0.8530488511447252,0.940773021663362,0.734386780654179,0.750024954875437,0.7096143159316615,0.9206671339135649,0.8103717888680761,1.1237076002176676,1.244489342313971,0.8384709949347434,1.0097914832472303,0.734585845154954,0.8039243807991093,0.7202764353088769,1.0813447153614502,0.9413159399411121,1.1837628618553355,0.710951262024577,9.5,0.10315273951637588,6.888888888888891,4.479166666666666,3.6366666666666676,1.5975000000000001,1.0768707482993198,0.6423965419501133,0.42302847064751825,0.19719135802469137,5775.989408177972,6787.0175117757335,2588.8602407135268,2272.542760209532,12.264235955269443,0.43384738221803315,6.943429291171516,0.7663081801471308,1.0,0.7083333333333334,1.272905595320056,2.96812170649153,4.519250912838829,5.243983303761563,5.31064997042823,5.31064997042823,0.30645161290322576,0.011461415501819542,0.13507625272331159,0.07224462365591398,0.05961748633879782,0.03195,0.03076773566569485,0.022942733641075484,0.01692113882590073,0.010378492527615336,0.6978114917833551,21.240374609781476,7.017301038062284,2.9259002770083105,167.32850051010428,1.0,4.295540526308287,130.42838184837845,,116.03325976188208,115.43664460537046,117.3273056179401,116.04555983320677,139.93132458272675,115.88729790859018,116.05847017747855,127.3301605229608,0.053748231966053744,0.01789709172259651,-0.5021358681463343,0.5295420493778907,0.44422981239207415,0.03144996963902267,0.054005556747678096,0.03640399099193791,0.025223348603223675,-0.017831107447718906,0.0049672390973998035,0.04956136705236598,0.21319566432449694,0.1799936403983554,0.04692167903216044,0.04287101187061473,0.09770604913059865,0.12161153391735015,0.21233371498701936,0.13379633181882875,0.19245697288389416,0.12090256814939106,0.1541426881904908,0.1736737386329372,-0.10169702432199745,-0.07224567770644752,0.04231177299331569,-0.19704990186165472,-0.19640709761898395,0.00165985187183017,-0.10058936106981065,-0.01151734173723979,-0.08507173986981494,-0.05243305751770363,-0.04498799609045491,-0.055525016080227405,-0.1777568445103619,-0.10241692253348879,-0.09378345040807269,-0.20728634170926635,-0.1597635050227811,-0.14589165774261423,-0.178530175012785,-0.15469655129361484,-0.11661249760748828,-0.03606709198384463,-0.07817848649461313,-0.17649276673701414,-0.06722083290803303,0.02398723448418954,0.06184365546913397,-0.04720267392500036,-0.04963914357586857,-0.14380478264955412,-0.06994331485219012,-0.14213069844583653,0.016020706844624342,0.049241806014214164,0.030802264131711755,-0.12355926370175155,-0.0409346385766396,-0.09878513397588004,-0.04566805301264384,0.05422585190747046,-0.02343443119168543,0.04978210567789794,-0.03855418277451171,0.04420697396772354,-0.09710578411721314,-0.11671293595363061,-0.09486361018639422,0.01597560468891046,0.08971834683468351,0.06038361805979124,0.04729104661727811,0.04215893545578909,0.13985584176118904,-0.024387119437002603,0.08844199861794184,-0.010067119842851352,0.07405211031363192,-0.0042378099003273035,0.031051091474431164,0.0381222923295096,0.192571748728927,0.015681684200978888,-0.00013198906996411862,-0.02752615816911305,0.05475174006212728,0.15324315827224574,0.1949378966942978,0.17011546957687196,0.046170503354130144,-0.006695154693172268,-0.03428526283059893,0.207436443421033,7.971116459067144,19.89354341811453,7.856519282378958,11.005705232552028,29.603329699595733,36.089391604118234,37.18668852083501,37.25388852083501,37.25388852083501,56.846424795514125,49.67826245592597,0.0,7.168162339588154,0.0,7.168162339588154,5386.772969739848,5273.538050768976,1240.4896155335364,338.0,51.0,76.0,109.0,145.0,175.0,221.0,278.0,323.0,384.2300595040009,31.0,5.10594547390058,6.037870919922137,7.014814351275545,7.9748769005588755,8.954802752850968,9.924808634239811,10.906341227535142,11.88086176118598,12.863419058251528,0.5777777777777776,0.9626666666666668,1.1247029771261277,0.533560902506036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6449638323353294,0.9500653594771241,0.9921340131099783,0.5921406879706903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,2.0,0.0,5.0,0.0,5.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,0.0,3.0,0.0,3.0,0.0,0.0,4.736862953800049,0.0,17.167540703713566,0.0,0.0,14.383611552215466,0.0,0.0,0.0,25.496599036284397,80.7694157587954,18.759549292013414,0.0,176.7374087880533,-330.5625764738728,-31.514610510616443,-5.509376274564547,-15.74107507018442,411.2253583950097,769.1394533540021,13.459829386276436,12.818990889233367,19.721524444974413,0.5,0.8285405023764328,0.24093786354925753,6.263429063241552,0.16207677251696623,3.2065964504917197,0.17145949762356708,6.0,0.06451612903225806,0.2154950349455259,0.5024846251085439,0.765081194528754,0.8877739004782321,0.899060154318151,0.899060154318151,4.575300000000005,,1.0,1.1428571428571428,0.6925367435132048,0.9970623163947749,-4.329177057356608,1.0348837209302326,0.9939792008757524,-1.5959779122321027,106.41100000000007,19.120474506015512,0.0,0.0,28.58369907727774,78.74466654699287,0.0,23.2982492738063,0.0,0.0,4.143134726391533,0.0,5.58724865840025,2.3978952727983707,7.249215057114389,4.948759890378168,9.021960500598263,7.260522598089852,10.853851154743419,34.66666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.760000000000005,0.0,36.75323073732329,0.0,0.0,0.0,4.245674974835103,0.0,2.3047987385189774,67.48217862756766,0.0,0.0,0.0,23.136845991665414,19.120474506015512,28.58369907727774,73.14361573600918,23.2982492738063,0.0,0.0,0.0,32.013654150362164,38.69782994011976,34.7532950337267,260.8567636967569,,231.9950909523356,230.7916565576797,234.60514432562928,232.01990092952818,280.82691617934637,231.70067555139963,232.04594184060886,255.0023163128285,34.7532950337267,260.8567636967569,,231.0665195237641,229.73043206788373,233.96207449236707,231.09405735001877,284.1918262228101,230.73971209625006,231.12296115408134,256.2562989581538,5.280479206844988,190.032351357418,,170.85397387715983,170.13699324726943,172.4158031343735,170.86877572996138,201.55923664444927,170.67838684521337,170.88431286948807,184.8379422365671,1.2411891083473823,9.316312989169889,,8.285538962583415,8.242559162774274,8.37875515448676,8.286425033197435,10.029532720690941,8.275024126835701,8.287355065736032,9.107225582601018,2.6712145287039184,130.42838184837845,,116.03325976188208,115.43664460537046,117.3273056179401,116.04555983320677,139.93132458272675,115.88729790859018,116.05847017747855,127.3301605229608,57.00392156862745,0.0,9.631210757913204,0.0,0.0,0.0,0.0,59.528040786598694,4.951516578834625,0.0,5.819943978930722,0.0,1.1667124905517763,0.0,-1.2897549235743677,0.0,0.0,35.52844127824142,487.1509665004927,76.37433571920337,178.0873023894918,271.15505477032974,314.63899822569374,318.6389982256938,318.6389982256938,1775.0,139.66374107972058,100.81180068257032,79.46258785851425,60.440000000000005,60.440000000000005,1.0,8.114623886420098,5.954196310386875,4.520824176322626,5.20352486593315,,5.223524709462277,5.224419626886626,5.221469084880344,5.223505888698835,5.175974280222662,5.223746929871628,5.223486118462272,5.202368315519455,0.16145800629723664,0.1858401737833268,,0.18655445390936704,0.18658641524595093,0.18648103874572655,0.1865537817392441,0.1848562242936665,0.18656239035255814,0.18655307565936688,0.1857988684114091,2.538313734297786,2.67895567195931,,2.6827918229071064,2.6829631326686685,2.682398213365742,2.6827882198232893,2.6736470053223313,2.682834364235992,2.6827844349564973,2.6787333843770162,307.56000000000085,226.97453182299517,180.36222742339118,,177.95256808830348,177.82694220008787,178.22724405620588,177.95516585183591,182.79930915521717,177.9217639148072,177.95789281965716,180.350044714193,8.106233279392685,6.44150812226397,,6.355448860296553,6.350962221431709,6.365258716293067,6.355541637565568,6.528546755543471,6.354348711243114,6.35563902927347,6.441073025506893,6.454457233755918,6.2245866205324285,,6.211136460549403,6.210430259715437,6.21267880524715,6.211151058509968,6.238008296955648,6.21096334228375,6.21116638229624,6.224519072460772,5.819943978930722,36.75323073732329,0.0,1.153095474300832,1.028660831195554,0.0,9.197191553669729,9.631210757913204,0.0,396.2128815966032,103.91501593578803,-194.3584871907412,-18.52941760251849,-3.239308119845686,-9.255166056701961,241.78519965777676,452.2253613436875,7.913878531767002,7.537089355728125,11.595522085735578,1759.0,62.0,3.5044652544297987,2.370406373872958,0.2920819864624269,0.24020853705628312,1.6680303292795482,1.0547826315910247,0.4665853503457128,0.27498825762666146,0.0,0.0,0.0,0.0,0.07216878364870322,0.07216878364870322,0.4038859871952694,0.3386668364701987,1.100526893257589,0.7940014870013834,20.482763184195935,17.76238519492287,13.049002039601005,10.694706542434545,13.485315683704538,10.053470479557475,11.600306289527309,8.835923767966525,10.351618895508983,7.477144527015602,8.728584199897925,5.715773154363321,6.1896934646671395,4.219912077023689,4.683504830285673,2.9853120345879742,8.808500724861167,6.167038837172502,15.985453555970595,10.704878149855672,28.0453990682709,16.94307914032539,99.95535770119561,45.948326013860125,29.054185052360307,23.41090768557576,23.02332227282796,23.02332227282796,164.0,209.0,64.62537599999997,36.44262400000001,0.2833333333333333,205.04,11.32638888888889,5.812499999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,60.0,0.0,0.0,63.0,0.0,5.0,5.0,58.0,5.0,31.0,58.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,4.0,0.0,0.0,28.0,4.0,0.0,0.0,4.0,0.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,3.6109179126442243,6.699500340161678,4.1588830833596715,4.605170185988092,5.030437921392435,5.442417710521793,5.648974238161206,5.958424693029782,6.289715570908998,6.57507584059962 +60877,Nc1nc(=O)n([C@@H]2CS[C@H](CO)O2)cc1F,0,37.46153846153846,7.161088461538461,3.5384615384615383,11.094017094017094,171.711122378465,150.36725700576037,1.5783534634034617,7.159323076923077,8.502268650416799,8.573564346153846,225.07341351195586,33.25925925925926,6.970666666666667,4.2592592592592595,9.012345679012347,154.97498751648334,128.98484306797033,1.7758397317037034,7.078925925925927,3.9486739826246002,8.370299111111112,265.5352785860432,30.76086956521739,7.020799999999997,3.739130434782609,7.898550724637681,161.51931983018991,116.8966672319652,1.558771683881457,7.094015217391306,4.148416532474504,8.50357595652174,225.9899203562162,25.636363636363637,6.991305454545454,3.1636363636363636,6.684848484848485,167.67932066130606,95.79681704168725,1.2976943525471634,7.028774545454546,4.676599326599326,8.484345018181818,190.52833462874167,22.96153846153846,6.901709615384617,2.8076923076923075,5.743589743589743,167.17574865228988,84.68730479849228,1.2614051930816346,6.934661538461537,4.656457739791073,8.403241384615384,180.53676725408286,22.8125,6.893495833333332,2.5208333333333335,4.854166666666667,174.0048305754348,84.60858020530002,1.1328478048227086,6.899174999999999,5.036779835390947,8.461606625,158.6343872011636,24.548387096774192,6.824548387096773,2.6129032258064515,4.172043010752687,169.51787956783377,92.57631355736774,1.2236257099160004,6.8671935483871,4.23078454798885,8.33615541935484,177.13849330227833,19.107142857142858,6.9931,1.9642857142857142,3.857142857142857,176.38821689704096,68.10935243788572,0.9701153078712857,6.974567857142858,5.610449735449736,8.547603071428572,139.5570305005728,13.45,6.62295,1.8,3.05,179.02698343545777,43.863606182400005,0.90128797311225,6.61366,5.398148148148148,8.234752,111.26415563076246,13.224852071005916,0.27046346153846146,0.03815198610009368,0.6745562130177514,5.284681130834977,2.404893782180827,59.938566304984995,0.3178351286920709,0.23837633136094669,3.727234356863986,0.16601801331360944,44.842690444752364,0.06004821389436747,-0.04537499999999996,-0.025086785759661306,0.16589962743808895,0.9552682202254855,-0.42453534347608834,0.5010135283956657,0.017677838516376363,-0.03674271312732857,-0.4186988772036782,-0.03368677257286873,2.003622444862593,-1.5108052482634424,0.0017782608695652066,0.004008740442134534,-0.019037818368922033,0.5562701883772118,-0.07488690272961616,-6.433926698659001,-0.03038482644665959,0.00039674556213014706,0.061310908331842294,-0.00526161699253923,-1.6206181740216719,-1.3269499731038195,0.008566818181818175,0.0007882728641123145,-0.09553523399677244,-0.009933656087502223,0.07173454979439778,-5.877966754054727,-0.05492944053488637,0.006644367939752542,0.19145155256266366,0.0029101657073695546,-4.5806700547517805,-1.2751479289940828,-0.015165384615384605,-0.00017277534146308511,-0.08875739644970414,-0.4520052596975673,-0.13721499295718226,-6.098537026136346,-0.021749369207433436,-0.0156284023668639,-0.2874459217051811,-0.01038290754437869,-7.504128745325858,0.9979043392504935,0.005058333333333335,-0.0004307088660085189,-0.009492110453648927,-0.517409051062897,0.1346249730631069,4.684963247923573,0.03876914491705557,0.005294822485207113,-0.11678383630544124,0.007025808801775148,5.856742055221015,1.1423935865623212,-0.044907258064516134,-0.0009192937069017162,-0.1460202328688681,-1.5515683654641472,-0.5460098938996789,4.911236999577536,-0.04058282303980549,-0.0335817904180187,-0.9071419089340237,-0.019781322246611954,-4.326491605807844,-0.9638630600169057,-0.05033749999999996,0.0006695640662084876,-0.06741335587489435,-1.4953038414576876,-0.3217866802176864,-4.965497962515174,-0.0004606138009089568,-0.04568319949281487,-0.3829120125416422,-0.023219712489433636,-5.748769284307864,-3.6671597633136086,0.02238750000000001,-0.002613662546427078,-0.07455621301775145,0.021729125575279486,-0.013227599105075937,-16.615326148482502,-0.057627591474013376,0.013768284023668689,0.5442043895747597,0.012644763609467456,-8.160954187342963,,,0.4574404761904761,1.140625,0.4375,0.09375,0.703125,-0.265625,0.7404391408721337,0.018801334965181382,0.02955133496518138,0.7425494775623148,0.20824158787035646,0.2675954248127806,1.4829886184344485,0.47583701268313705,1.9956966552859972,1.0406805392320009,0.372510254620805,0.3463848829415097,0.1100361966114497,0.9550161160539961,9.501641938461539,974.0,186.1883,92.0,288.44444444444446,4464.48918184009,3909.54868214977,41.037190048490004,186.1424,221.05898491083676,222.912673,5851.9087513108525,898.0,188.20800000000003,115.0,243.33333333333334,4184.3246629450505,3482.590762835199,47.94767275599999,191.13100000000003,106.6141975308642,225.99807600000003,7169.4525218231665,1415.0,322.9567999999999,172.0,363.3333333333333,7429.8887121887365,5377.246692670399,71.70349745854702,326.32470000000006,190.82716049382717,391.164494,10395.536336385945,1410.0,384.5218,174.0,367.66666666666663,9222.362636371834,5268.8249372927985,71.37318939009398,386.5826,257.21296296296293,466.638976,10479.058404580792,1194.0,358.8889000000001,146.0,298.66666666666663,8693.138929919074,4403.739849521598,65.593070040245,360.60239999999993,242.13580246913583,436.968552,9387.911897212309,1095.0,330.8877999999999,121.0,233.0,8352.23186762087,4061.2118498544005,54.37669463149001,331.1603999999999,241.76543209876544,406.157118,7614.450585655853,761.0,211.56099999999998,81.0,129.33333333333331,5255.054266602847,2869.8657202783997,37.93239700739601,212.8830000000001,131.15432098765433,258.42081800000005,5491.2932923706285,535.0,195.8068,55.0,108.0,4938.870073117147,1907.0618682608,27.163228620396,195.28790000000004,157.0925925925926,239.33288600000003,3907.5968540160384,269.0,132.459,36.0,61.0,3580.539668709155,877.2721236480002,18.025759462245,132.2732,107.96296296296296,164.69504,2225.283112615249,343.8461538461538,7.032049999999997,0.9919516386024357,17.538461538461537,137.40170940170938,62.5272383367015,1558.40272392961,8.263713345993844,6.197784615384614,96.90809327846364,4.316468346153846,1165.9099515635614,1.6213017751479217,-1.225124999999999,-0.6773432155108553,4.4792899408284015,25.792241946088108,-11.462454273854386,13.527365266682974,0.4773016399421618,-0.9920532544378713,-11.304869684499312,-0.9095428594674557,54.09780601129001,-69.49704142011835,0.0817999999999995,0.18440206033818857,-0.8757396449704135,25.588428665351742,-3.4447975255623438,-295.96062813831406,-1.3977020165463412,0.018250295857986765,2.8203017832647457,-0.24203438165680458,-74.5484360049969,-72.98224852071007,0.4711749999999997,0.0433550075261773,-5.2544378698224845,-0.5463510848126223,3.945400238691878,-323.28817147301,-3.0211192294187503,0.3654402366863898,10.529835390946502,0.1600591139053255,-251.93685301134792,-66.3076923076923,-0.7885999999999994,-0.008984317756080426,-4.615384615384615,-23.5042735042735,-7.135179633773477,-317.12392535909,-1.1309671987865386,-0.8126769230769229,-14.947187928669415,-0.5399111923076919,-390.2146947569446,47.899408284023686,0.24280000000000007,-0.020674025568408905,-0.4556213017751485,-24.835634451019057,6.461998707029131,224.8782359003315,1.8609189560186674,0.2541514792899414,-5.6056241426611795,0.3372388224852071,281.1236186506087,35.414201183431956,-1.392125,-0.0284981049139532,-4.526627218934911,-48.09861932938856,-16.926306710890046,152.2483469869036,-1.2580675142339701,-1.0410355029585798,-28.121399176954736,-0.6132209896449705,-134.12123978004317,-26.988165680473358,-1.4094499999999988,0.018747793853837652,-1.8875739644970415,-41.86850756081525,-9.01002704609522,-139.0339429504249,-0.01289718642545079,-1.2791295857988165,-10.721536351165982,-0.6501519497041418,-160.9655399606202,-73.34319526627218,0.4477500000000002,-0.05227325092854156,-1.491124260355029,0.4345825115055897,-0.26455198210151876,-332.3065229696501,-1.1525518294802675,0.2753656804733738,10.884087791495194,0.2528952721893491,-163.21908374685924,0.7316713938910652,0.561528834435001,0.4478466001723642,0.32852563978688304,0.2881048609628901,0.1830239174154007,0.18885369553913914,0.10440514299873853,0.1162581491887144,0.05999119049765545,0.0749567080201601,0.030353082297956593,0.04944382669115126,0.01761336810722611,0.03171405151237078,0.010162497210315497,16.00200233988626,5.772435692805715,4.107713808828887,2.260586542850665,0.49507867690943097,-0.4029441378962542,3.216795487740036,0.9777325461305147,7.004059543673854,0.6549438181767275,17.424770452468138,10.33810024359008,32.060998512259054,11.791464751790265,2.9162559504078907,0.5458385036520661,3.9886664785174126,2.3065699619214945,8.001917798293565,0.622308144835567,4.009950471105483,2.499971726893612,24.434224553109388,13.304120844421336,0.4348859067705137,0.8206799713373042,0.9108967074529941,0.9108967074529941,0.9108967074529941,0.9108967074529941,1.9364739696145048,452.6449427603453,0.0,2.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,2.566502152046175,0.6734528847818053,0.23076923076923084,0.23076923076923084,0.23076923076923084,0.23076923076923084,27.712979701852817,858.4706181272393,70.26611014269474,33.018100697201504,75.45502544555791,,9.0,227.0,28.988726559388347,9.184952231746642,6.606881964512918,5.752853606746789,10.763943219404432,11.761884949391115,0.0,0.0,4.9839785209472085,15.577057825802939,7.319047619047618,18.25,7.0,1.5,11.25,0.0,0.04255952380952388,-4.25,0.294752349100175,0.030991627420198786,-0.2637607216799762,0.11132518796992463,0.2588623038199585,0.0,0.733882783882784,1.0050595238095237,0.43913043478260905,0.7028911564625853,0.893734335839599,11.847026253954139,0.3008213594429021,0.4728213594429021,11.880791640997037,3.3318654059257033,4.2815267970044895,23.727817894951176,7.613392202930193,0.45513769618004146,0.18477553675992198,0.0,0.39622641509433965,0.5,0.4656838143003159,-0.9900619281256897,-0.11146796240921793,-0.038079304927911145,-0.12375774101571121,0.534316185699684,1.135977023030999,0.06254904406157696,0.04369142396273072,0.06310983461283326,-0.5594540598625579,0.7095658298119148,0.8131025487272954,1.6847110734699848,0.923895386614685,0.4994217282721886,1.230276204012826,0.6982485940002942,0.9337034493727893,0.7814919070429726,0.7373061671075714,0.8775930862908182,0.8852850801630295,1.1806974029763644,0.7903139445699396,0.8563251594318175,1.1155606407322656,0.7693246481387325,1.0349318437904416,1.1465350912134467,1.289213090234501,0.7834014187613485,0.6624809675676275,0.8501257200552113,0.9992304266043547,1.0813504169208867,0.9076300652014705,0.9641571275832546,1.1533094098883574,0.9674500667284943,0.966250871483132,1.0721602661910616,1.1865114880662064,0.9060275541723005,0.7800062025000452,0.9265104325643801,1.0489689477724118,0.9507829977628636,1.0167048344037986,0.9437922450865659,1.0279605263157896,1.0514509206270217,1.0174886448891776,0.9627509938536527,0.9611703356778488,1.0235046766090117,1.063573302369997,1.0382485652422206,1.1126783987211515,0.995933538404176,1.0516507158889183,0.8242693627668769,0.9651407163742692,1.1860330098697853,0.8466041530508662,0.9925617372993379,0.852856781825086,1.0544006160596673,1.2242220823424776,1.0277458180874963,0.8412998029995813,0.8302662914050661,1.21761630103276,0.9449220744174603,1.1725382003395588,1.2478780229394248,1.3811326187473727,0.8462607728507822,1.0690847064985913,1.1865907461050678,1.3570500989485972,1.1404587355874958,1.0724171177560184,0.9399968040907639,1.28139706263262,1.075643449479257,0.8908991228070177,1.3108215885259307,0.9204072043938629,0.965174912302582,0.7317381993095206,1.2954657761440456,1.2768880226764432,1.2517223934006214,1.0130362178037717,1.508668903803132,1.1264407249664037,0.9524505094345928,0.9978070175438597,1.0957327693456085,1.1001709258109764,1.5130296842655686,1.2526620364785352,1.1607675881704627,1.1469045487359513,1.063875228945401,1.2338516165776803,4.0,0.0,2.222222222222223,1.2222222222222223,1.0944444444444448,0.5072222222222222,0.2636734693877551,0.14671910430839002,0.045099521289997474,0.0,3433.8136539388893,3731.745419400355,1715.7647660712214,1604.3551465575665,9.762269277172436,0.4436421515952986,5.431315130594976,0.7974043196611615,0.0,0.5,2.1339375660949167,4.026986833359286,4.469670487371861,4.469670487371861,4.469670487371861,4.469670487371861,0.23529411764705882,0.0,0.09259259259259264,0.05314009661835749,0.05760233918128655,0.03381481481481482,0.023970315398886832,0.020959872044055715,0.01503317376333249,0.0,0.5324073220603853,12.456747404844291,5.104166666666667,2.651404786680541,94.23244507909337,1.0,3.6993446264230916,56.111457793883204,,39.80468305443686,40.13083794647605,41.04283411198944,39.75167726414413,66.89334582181901,40.94066147736128,41.425303712535786,59.588764649923256,0.00454055845554725,-0.167767578444408,-0.6575486186707251,0.24593892137751786,0.1807617520481418,-0.17652976884954455,0.008358783989699754,0.0556195238365336,-0.15413742177151463,-0.11233500153608862,-0.2029103462961825,0.04468113810724895,-0.11423985993580393,0.0065748654529895825,0.105072916298968,-0.028222730739893193,0.10526088038339626,-0.03113938057659518,-0.10734201859152412,-0.09559933343962557,0.001664366423734408,0.016449437427762916,-0.03169304876935246,-0.0361400745126639,-0.1003376042302217,0.031674586034978795,0.02066138475843015,-0.1416267942583732,-0.001879707751815238,0.029828573023024253,-0.09806652238136476,-0.1728236924625906,0.027873438196729848,0.051365579470496955,0.017529216554785697,-0.10214975973387042,-0.096420581655481,-0.05607184249258749,-0.004528606741725063,-0.13157894736842105,-0.0855312266733018,-0.057056571052693954,-0.10174646145363574,-0.06842972108506273,-0.06556188811883154,-0.07712043144693263,-0.06254084925570871,-0.167343410283805,0.07545674869500377,0.018702464667723743,-0.011289290808571072,-0.014071637426900605,-0.0979073359873932,0.05597959213858713,0.07816275124241556,0.12197879157220656,0.02221203109796062,-0.03133257131802697,0.042319557146508764,0.13060639308510513,0.0863823338384932,-0.16603816947795025,-0.02409556620433605,-0.2164685908319185,-0.2935973480804887,-0.2270411682816783,0.08193784573671187,-0.12768514042739262,-0.14087720129885523,-0.24338204203968358,-0.11915166223104276,-0.09648153495915283,-0.07288271013103224,-0.1861157130566477,0.017549913769937222,-0.09993734335839602,-0.2829506273771017,-0.13380494498425663,-0.08284312202679767,-0.0014492224405918785,-0.19164318551258303,-0.10273354876021695,-0.13986260903852285,-0.12819858102382445,-0.2772930648769575,0.08277458209199318,-0.0685065920177786,-0.11052631578947365,0.004111719333167467,-0.005500284130254089,-0.27720593221964723,-0.1813128451570401,0.05775860357050681,0.1460075588143702,0.07616500979072308,-0.1819907348645265,0.8434326653017493,5.630061524710363,3.5167591542759684,26.83708581398929,44.02071413637468,44.466939259619345,44.466939259619345,44.466939259619345,44.466939259619345,31.931146484575955,16.650888627712014,5.96016407393288,5.542158127064155,1.7605791457831952,15.280257856863937,2186.775363629903,1698.9856660842324,587.2475949978993,19.0,24.0,31.0,38.0,44.0,44.0,39.0,35.0,30.0,247.0426904,17.0,4.418840607796598,5.262690188904886,6.137727054086234,7.00397413672268,7.88193748927207,8.754791763700032,9.633841842570446,10.509032272359951,11.388506711556236,0.8205128205128206,1.0499999999999998,1.155544052317229,0.7917242630153128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6722922616305851,1.0316742081447965,1.0559275029413413,0.6523475551519516,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,15.577057825802939,11.663899542303952,11.635083618880923,0.0,0.0,4.567099647791355,9.184952231746642,4.9839785209472085,11.761884949391115,0.0,0.0,5.752853606746789,12.803725536125995,188.03788693369958,-399.77587191424266,-45.00950960412235,-15.375995073624718,-49.97198398928033,215.7508666355524,458.69474621299656,25.256600538572386,17.64210562357679,25.483041456277583,0.4444444444444444,0.6075418118518009,0.18473715038144956,144.20357660371238,0.1652607890691165,37.73779416551369,0.39245818814819894,5.0,0.11764705882352941,0.4539867957159626,0.8567255565085431,0.9509047568723008,0.9509047568723008,0.9509047568723008,0.9509047568723008,-0.4550000000000003,,2.136904761904762,1.7797998529764452,1.4619540122545964,2.1684449480930534,-6.375494984391982,1.6306398116654264,1.5511294841526908,-2.544038109033603,56.32120000000001,14.233805396315574,0.0,9.551078168738563,0.0,11.663899542303952,18.09340304842189,22.498344994934268,0.0,0.0,3.5553480614894135,0.0,4.875197323201151,2.3978952727983707,6.385194398997726,4.59511985013459,7.983098940710892,6.580639137284949,9.628721705350893,21.333333333333336,0.9679043839758126,3.3269779856387,0.0,0.0,0.0,0.0,-1.1886512398169136,1.0360648148148148,27.299999999999997,0.0,11.427684712773999,0.0,0.0,0.0,0.0,0.0,0.0,30.044145360247953,11.423410875365658,10.208277825509848,0.0,32.453339506408064,4.736862953800049,5.817220841045895,6.22790117073487,10.991380755684897,0.0,0.0,0.0,20.584830838398133,17.479598802395213,20.147226875095797,112.22291558776644,,79.44295319213568,80.03920091133003,81.90292397244706,79.32951888122425,135.67776634944266,81.67749297826438,82.6567162395525,119.60851271980688,20.147226875095797,112.22291558776648,,77.84027462070708,78.48519295703002,80.64278212529814,77.70318517015448,140.16218662802999,80.25068314305719,81.2994779409189,121.72156740888016,4.7669887119047045,83.08223707276414,,60.01561770164456,59.244159807033476,60.76100091531346,59.971258796344756,98.25524967556841,60.60856040239646,61.456940665985,90.21733847310554,1.2592016796934873,7.013932224235402,,4.96518457450848,5.002450056958127,5.118932748277941,4.958094930076515,8.479860396840166,5.104843311141524,5.166044764972031,7.47553204498793,2.406956539057178,56.111457793883204,,39.80468305443686,40.13083794647605,41.04283411198944,39.75167726414413,66.89334582181901,40.94066147736128,41.425303712535786,59.588764649923256,26.82352941176471,0.0,0.0,0.0,13.13269565696649,5.156220631771227,8.855795907869322,27.454115076474874,0.3025513353489544,0.0,5.300768140589569,1.3506412981859408,-1.0048478835978842,0.0,0.0,0.0,0.0,16.961036433950742,245.31855094884372,55.48237671846783,104.70165766734145,116.21143267166838,116.21143267166838,116.21143267166838,116.21143267166838,337.0,103.99134206696912,158.47020262040826,62.00121468996799,115.67,90.37,0.8,7.110313396687238,5.087462841250339,3.673300236177751,3.9368141269966186,,3.926716388340859,3.9263303536498277,3.9231043630058577,3.926925502113506,3.9117029064659543,3.9270190351332417,3.9276481261400535,3.9238839223054787,0.22958126476110943,0.24605088293728866,,0.24541977427130368,0.24539564710311423,0.2451940226878661,0.24543284388209413,0.24448143165412214,0.2454386896958276,0.24547800788375335,0.24524274514409242,1.7710941341468531,1.8403754282555398,,1.8378071812864807,1.8377088666567516,1.8368868989757525,1.8378604339750075,1.8339764343794835,1.837884252075402,1.8380444348037697,1.8370855890397213,154.61999999999986,77.34726799799584,74.24977086012292,,74.48284925495956,74.67661239734745,74.83945221638271,74.45324400527961,75.83865457918706,74.6262568898917,74.59042045717501,74.74001135713779,4.83420424987474,4.640610678757683,,4.6551780784349726,4.667288274834216,4.677465763523919,4.653327750329976,4.7399159111991915,4.664141055618232,4.661901278573438,4.671250709821112,4.818308885640991,4.7774383208648326,,4.780572516785726,4.7831705853122894,4.785348811228562,4.780174960365092,4.798611746781806,4.782496043562282,4.7820157161077,4.784019205258344,19.469528612370873,14.754662698412698,8.855795907869322,4.10122441106072,-0.7341160924246233,0.0,0.35424697656840487,-0.1519838120433359,0.0,187.33959207564428,75.9275839887545,-161.42500102731302,-18.174333781811843,-6.208653885665885,-20.178125128414127,87.11777352025564,185.21577984211027,10.198331250866644,7.1236838400811635,10.289765546783903,433.0,23.0,1.2139803565731,0.5131243677740922,0.0,0.0,0.33093309327558146,0.04921075473986747,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.11785113019775792,0.20693027063286606,0.15047171773254697,0.4175837698858361,0.15933161448969307,11.706742302257043,8.984461350960016,7.613392202930192,5.584935876377012,6.914516663109363,4.392574017969617,5.854464561713313,3.2365594329608944,4.417809669171147,2.279665238910907,3.298095152887045,1.3355356211100902,2.1755283744106553,0.7749881967179488,1.2368480089824603,0.3963373912023044,2.9135260858099414,0.9940458744446882,3.9434913546412114,1.3049049527049112,5.842189070586693,1.4238126608590478,51.112324284491194,25.19275787986974,23.763804701188704,23.763804701188704,23.763804701188704,23.763804701188704,82.0,96.0,29.190929999999984,18.489069999999998,0.4230769230769231,49.08,6.166666666666667,3.583333333333333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,26.0,0.0,0.0,27.0,6.0,1.0,3.0,24.0,7.0,17.0,20.0,0.0,0.0,0.0,8.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,7.0,2.0,2.0,16.0,8.0,0.0,3.0,3.0,0.0,2.0,2.0,1.0,0.0,1.0,1.0,1.0,3.091042453358316,4.972846888034599,3.676300671907076,4.178226046202803,4.652769164787371,5.120610147304827,5.200566711204352,5.062792798280256,5.111987788356544,5.1276773145279195 +1986,CC(=O)Nc1nnc(S(N)(=O)=O)s1,0,55.26315789473684,7.389305263157896,3.6842105263157894,12.25730994152047,170.13984523964177,220.60675089473693,1.9690994436365268,7.412105263157895,10.847813334777273,8.885380947368423,247.1870300471575,52.421052631578945,7.092510526315791,4.052631578947368,7.526315789473684,156.89538095282109,206.02069363157892,2.136731043684211,7.2499315789473675,3.5456465237166994,8.655923789473684,287.7207166118291,47.833333333333336,7.22909,3.533333333333333,9.037037037037036,161.84628342089857,187.19214940000003,1.7942398856465334,7.318940000000001,7.140952217649748,8.771504833333333,242.62542551672882,39.2,7.5145133333333325,2.8333333333333335,5.9222222222222225,170.48999332138433,148.7250764,1.5063535239333334,7.552456666666667,5.746913580246915,9.116732133333334,209.48319685533076,35.64,7.123348000000001,2.84,8.533333333333333,167.1885712452643,136.293122,1.4819924901818797,7.183611999999998,5.8153703703703705,8.6518292,210.09358720960824,28.94736842105263,7.19352105263158,2.8421052631578947,6.614035087719298,169.6548402620011,104.33180268421053,1.489162574736842,7.241257894736842,5.691682910981156,8.735104736842104,194.25164202111236,27.375,7.014937499999999,2.4375,4.041666666666666,171.47924480076878,100.2410149375,1.280967668875,7.0527625,4.369791666666667,8.608225749999999,176.16236189622668,29.53846153846154,7.47723076923077,2.0,8.076923076923077,164.45339007981448,108.59967646153845,1.2001308868998461,7.488369230769231,12.946581196581198,9.067586461538461,176.0727331592292,7.461538461538462,7.143230769230769,1.0,0.0,183.12636155491538,15.045175384615387,0.669665339076923,7.063692307692308,5.538461538461538,8.833934769230769,88.1908309574341,19.263157894736842,0.22382160664819936,0.03320988624222144,0.8476454293628809,5.515543244075101,2.0384828215387856,83.7943293739612,0.46695789751308026,0.1958127423822714,4.605121138887939,0.13997556232686978,43.52012400107604,1.894736842105263,-0.047613573407202195,-0.024847584207823424,0.0637119113573408,0.19236688211757466,-0.04544936535490327,8.789357628808846,-0.006811804903046986,-0.03281191135734072,-1.270005443270294,-0.014460498614958456,4.908499332772098,5.033333333333333,0.07971435826408123,0.010218066891531596,-0.030101569713758033,1.3827023699599876,-0.6305922067849549,22.285092704986138,0.002003981779786405,0.07569006463527234,1.538723469202933,0.04677953767313017,4.457892907271752,-2.8,-0.11044792243767318,-0.0056084799208716615,0.11200369344413665,-2.713009131014671,0.10380438316273252,-12.627747852908593,0.005945923141860013,-0.09911326869806096,-2.14564167892115,-0.0637074149584487,-3.3856821323036344,-0.12,0.043748709141274225,-0.0022267675448947376,-0.18448753462603878,1.1155678670360112,-0.26361281980379075,0.04411128919667817,-0.08255525805764241,0.042083889196675904,0.2566346910160391,0.024023275567867017,-1.9149990468785147,-11.473684210526315,0.03508171745152356,0.01423681018965992,-0.26038781163434904,-0.218836565096953,0.27913891040808886,-50.37285198891968,-0.15871195388218837,0.015068421052631582,0.569192942557824,0.006353412742382282,-21.169736818293202,-1.875,-0.13566502770083091,-0.02428665312815106,-0.5154085872576176,-3.0645198522622343,0.08675347284016058,-9.548487795013838,-0.015493591245086962,-0.1178449792243767,-1.9814201200084354,-0.0713027070637119,-9.938077278723942,-6.923076923076923,0.17541240144896647,0.022981578117899384,-0.21606648199445994,2.635154011885313,-0.7176966125225189,-29.29262840634989,-0.20764244938903983,0.14689656935861914,4.523709464845199,0.09329848625612615,-16.045370683167846,-7.3076923076923075,-0.2718386106967824,-0.010296679234789063,0.4681440443213295,-5.04230887610389,0.31736446403356133,-34.514670070317464,0.1236743896529114,-0.25504998934583417,-4.5554409575069785,-0.16469375665885352,-13.452556948291885,,,0.482051282051282,1.3269230769230769,0.6923076923076923,0.038461538461538464,0.6346153846153846,0.057692307692307696,0.6127832947550004,0.04010370358583474,0.04671908820121935,0.802734965698597,0.24777292176489335,0.20552441790874074,1.4155182604535974,0.4532973396736341,1.9177715165983626,0.6178535235544254,0.5907371275999729,0.3902102838903002,0.0,1.299917993043937,11.683585897473684,1050.0,140.3968,70.0,232.8888888888889,3232.657059553194,4191.5282670000015,37.41288942909401,140.83,206.10845336076818,168.82223800000003,4696.553570895992,996.0,134.75770000000003,77.0,143.0,2981.012238103601,3914.3931789999997,40.59788983000001,137.74869999999999,67.36728395061729,164.462552,5466.693615624753,1435.0,216.8727,106.0,271.1111111111111,4855.388502626957,5615.764482000001,53.827196569396,219.56820000000005,214.22856652949244,263.145145,7278.762765501865,1176.0,225.4354,85.0,177.66666666666669,5114.69979964153,4461.752292,45.190605718,226.5737,172.40740740740745,273.50196400000004,6284.495905659923,891.0,178.08370000000002,71.0,213.33333333333331,4179.714281131608,3407.32805,37.04981225454699,179.59029999999996,145.38425925925927,216.29573,5252.339680240206,550.0,136.67690000000002,54.0,125.66666666666666,3223.4419649780207,1982.304251,28.294088919999997,137.5839,108.14197530864197,165.96698999999995,3690.781198401135,438.0,112.23899999999999,39.0,64.66666666666666,2743.6679168123005,1603.856239,20.495482702,112.8442,69.91666666666667,137.73161199999998,2818.597790339627,384.0,97.20400000000001,26.0,105.0,2137.894071037588,1411.795794,15.601701529698,97.3488,168.30555555555557,117.87862399999999,2288.9455310699796,97.0,92.862,13.0,0.0,2380.6427002139,195.58728000000002,8.705649408,91.828,72.0,114.841152,1146.4808024466433,366.0,4.252610526315788,0.6309878386022073,16.105263157894736,104.79532163742691,38.731173609236926,1592.092258105263,8.872200052748525,3.7204421052631567,87.49730163887084,2.659535684210526,826.8823560204448,36.0,-0.9046578947368417,-0.47210409994864505,1.2105263157894752,3.6549707602339185,-0.8635379417431621,166.99779494736808,-0.12942429315789272,-0.6234263157894736,-24.130103422135587,-0.27474947368421065,93.26148732266986,151.0,2.391430747922437,0.3065420067459479,-0.903047091412741,41.48107109879963,-18.917766203548645,668.5527811495841,0.06011945339359215,2.27070193905817,46.16170407608799,1.4033861301939052,133.73678721815256,-84.0,-3.3134376731301955,-0.16825439762614985,3.3601108033240994,-81.39027393044013,3.114131494881976,-378.8324355872578,0.17837769425580038,-2.973398060941829,-64.36925036763449,-1.911222448753461,-101.57046396910903,-3.0,1.0937177285318556,-0.05566918862236844,-4.61218836565097,27.88919667590028,-6.590320495094769,1.1027822299169543,-2.0638814514410604,1.0520972299168976,6.415867275400977,0.6005818891966754,-47.87497617196287,-218.0,0.6665526315789476,0.2704993936035385,-4.947368421052632,-4.157894736842107,5.303639297753689,-957.0841877894738,-3.015527123761579,0.28630000000000005,10.814665908598657,0.12071484210526336,-402.22499954757086,-30.0,-2.1706404432132946,-0.388586450050417,-8.246537396121882,-49.03231763619575,1.3880555654425693,-152.7758047202214,-0.2478974599213914,-1.8855196675900272,-31.702721920134966,-1.1408433130193905,-159.00923645958306,-90.0,2.280361218836564,0.298760515532692,-2.808864265927979,34.257002154509074,-9.330055962792747,-380.80416928254857,-2.699351842057518,1.9096554016620488,58.80822304298759,1.21288032132964,-208.589818881182,-95.0,-3.533901939058171,-0.13385683005225782,6.085872576177284,-65.55001538935058,4.125738032436297,-448.69071091412707,1.6077670654878482,-3.315649861495844,-59.22073244759072,-2.1410188365650957,-174.8832403277945,0.7738829178703899,0.6266163134126391,0.4532973396736341,0.4150432176158324,0.33534609856450337,0.2532617733521717,0.18793213291439895,0.16218471116367614,0.12464849298177999,0.08660728465379855,0.08122814276233892,0.05265705397189622,0.05587161717928996,0.02981858273753261,0.04341524524564207,0.01800246643683985,16.014049809928363,5.873931220510793,3.581122399099649,2.223269873656769,0.49271047969389237,-0.36114906590600737,4.042861600303675,0.9679145625986113,6.022457522195666,0.6410364134012717,14.690948923477928,10.301101519193494,32.06729297018946,11.892978724124731,2.9618565395151824,0.7516777616230049,3.5372453166407727,2.315615234130087,7.0145736957032385,0.2999718726593461,3.7686361650536835,2.5723163319221554,24.44639443576894,14.701063103346014,0.4872445319863462,0.7714101747148117,0.8259923521953493,0.8259923521953493,0.8259923521953493,0.8259923521953493,2.363798679421267,422.35246826398924,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.013929605604758,0.7110407897014186,0.4607835527454469,0.4607835527454469,0.4607835527454469,0.4607835527454469,-66.22032402300641,588.5759230412016,57.39117065032879,30.977680160063244,65.2454240558834,,7.0,140.0,10.023291153407584,13.212334168400758,15.378393889864384,11.336785877934737,0.0,6.923737199690624,0.0,0.0,15.514152220608405,5.138973737607942,6.266666666666666,17.25,9.0,0.5,8.25,0.0,0.01794871794871802,0.75,0.37368421052631556,0.0,-0.37368421052631556,0.13894230769230753,0.25094581280788175,0.0,0.8070175438596493,1.0410256410256409,0.43333333333333374,0.8070175438596493,0.9020833333333333,7.966182831815004,0.5213481466158516,0.6073481466158516,10.435554554081762,3.2210479829436136,2.6718174328136297,18.401737385896766,5.892865415757243,0.4630541871921182,0.30319148936170215,0.13297872340425534,0.23936170212765961,0.25,0.5850221934839018,-0.8841904778852828,-0.10638124129956573,-0.046536340941330676,-0.11052380973566035,0.4149778065160982,0.6271888983735656,0.0409911337919432,0.033009942019661356,0.05701717257941505,-0.8836993393282091,0.9059534081104401,0.8348655191362333,1.8135740044244864,1.2647058823529411,0.6674665178571427,1.3274667315292197,0.877594845559536,1.1861704432950226,0.7550418456210639,0.8839258943492898,0.702989944148937,0.8144932578386983,0.7524590163934427,0.4943151946296764,0.7466813936561251,1.1549019607843138,0.6193024553571427,1.3947449792046511,0.7373277566822933,1.075026450426821,0.44868861086118805,0.5298411483960281,0.5099439755788001,0.8538443496989563,1.0934426229508198,1.5479668216179288,1.2000473764227202,0.6519607843137255,1.4851171875,0.9044082192511522,1.0937734643420811,0.973600015905777,1.5426876262583393,1.6010822966476583,1.5226880857596472,0.9289482166717364,0.9019672131147541,0.6602495061856741,0.8909167438798584,1.0058823529411764,0.7301852678571428,1.116365821857145,0.8956816659965932,1.0738727087154887,0.6417495374064204,0.72020598425996,0.666097999931844,0.9777460996299611,1.6022433132010356,0.6770194406903004,0.48429607352734405,1.147058823529412,0.9441964285714283,0.9400702343127102,1.5999790967416494,1.375195137275631,0.7465623779856384,0.6053885754699574,0.7296795851464216,1.4040017174600317,0.8637295081967213,1.5401054739132372,1.7430590124103684,1.6415441176470589,1.468338448660714,0.7975452702840397,0.8911195893892085,0.7562447047082342,1.5483694106812436,1.3406773672899142,1.4553996767104853,1.121113489794275,1.3902900378310215,0.46601963376056327,0.38072668800472736,1.5045248868778283,0.6364053914835164,1.1631248767095625,1.38043568076225,1.4744011870021196,0.4954436001467764,0.5163549549063362,0.6529494584055077,1.348930033789866,1.0403530895334174,2.599964984594364,0.9923615440101076,0.0,2.0941921359890108,0.24243910977936162,1.1074953488842196,0.21240858114870387,2.7284474484552574,2.508209217323363,2.6440868706384064,1.188250747036744,5.0,0.0,1.5555555555555562,1.0,0.7750000000000001,0.32666666666666666,0.24489795918367344,0.0,0.0,0.0,3040.6341342374417,3188.2529411706864,1729.754143208204,1661.1744605579324,10.35157875716111,0.4684273155222208,5.502616508527285,0.8812102826209122,0.0,0.25,2.2339979078388272,3.5368867237421666,3.7871439606981383,3.7871439606981383,3.7871439606981383,3.7871439606981383,0.38461538461538464,0.0,0.08187134502923979,0.07142857142857141,0.059615384615384626,0.04083333333333333,0.04897959183673469,0.0,0.0,0.0,0.6873436108586485,11.076923076923077,4.022160664819944,3.3240997229916895,78.02145102207903,1.0,3.4669429359033086,40.991194571143275,,21.03767967812058,29.806270617130036,30.37208856441773,21.039336726638755,36.21997471979787,29.724581580810906,29.18224663453894,37.033255302373696,0.09836065573770492,-0.21273001351491835,-0.7481984137673261,0.07516339869281055,0.034877232142857144,-0.022295682296010224,0.10489203379841247,-0.014587621152410588,-0.1675678046185796,-0.275781115190594,-0.10330730860855852,0.11278688757069567,0.2612932604735883,0.3561513093299142,0.30768147825031816,-0.035511982570806046,0.2506919642857143,-0.30934389052586714,0.26594989030261457,0.004291568448588601,0.38654310089538485,0.3341331145904469,0.33419789065673466,0.10243290913329038,-0.14535519125683058,-0.4934640765548349,-0.16887982933652185,0.1321350762527233,-0.491884300595238,0.05092237327973846,-0.15069931279660817,0.012733317443664089,-0.5061635289524168,-0.4659251329573682,-0.45513240953931416,-0.07779578321559752,-0.006229508196721311,0.19546240327922415,-0.06705134515226774,-0.21764705882352944,0.20225892857142858,-0.12931814632845315,0.0005264233215569549,-0.17679379339618065,0.2149190531968471,0.05572810861562095,0.17162478341589413,-0.044002610075999926,-0.5956284153005464,0.15673963732493737,0.4286919288377426,-0.30718954248366015,-0.0396763392857143,0.13693463955579266,-0.6011486978326824,-0.33988493336862896,0.07695322004741942,0.12359999344018881,0.04538944253387491,-0.486435581336344,-0.09733606557377049,-0.6061301664859724,-0.7313079289405752,-0.6080473856209149,-0.5556152343749999,0.042557863094805554,-0.11395147937040472,-0.03317984625081314,-0.6018248750855869,-0.4302644947331214,-0.5093939676213367,-0.22835590446567247,-0.35939470365699877,0.7837152278362383,0.6920101427111099,-0.2549019607843139,0.4777687156593405,-0.3520739075842457,-0.3495776936840367,-0.44467060198553215,0.7501890202418151,0.9823214913164261,0.6665341057052251,-0.3686885332121554,-0.37936107608238756,-1.2145324786451726,-0.31004861503254305,0.5522875816993462,-0.9141998626373625,0.155686602153455,-0.41189744375521875,0.2648512645606279,-1.3025198781390748,-0.9892119707858635,-1.1765893554637916,-0.30911118148374916,,,1.1905507889761497,30.532675759940812,46.0267518203152,47.64732690464051,47.64732690464051,47.64732690464051,47.64732690464051,24.931029715778713,8.03209580620753,7.679582658799647,5.072733690573902,0.0,16.89893390957118,1830.787632020119,1799.290509260831,270.9098643459997,0.0,19.0,19.0,22.0,21.0,21.0,15.0,6.0,0.0,221.988132052,13.0,4.174387269895637,4.948759890378168,5.831882477283517,6.642486801367256,7.522400231387125,8.34924780056679,9.225524507301223,10.061217533302013,10.934374023807974,1.0000000000000002,1.070736842105263,1.1514250017644663,0.9738310057885534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7339034982666246,1.0534571723426214,1.0769348717752136,0.6934654996946877,0.0,2.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.316788604006331,0.0,0.0,15.378393889864384,10.023291153407584,4.794537184071822,13.556770721936878,0.0,10.197363616602075,11.336785877934737,0.0,6.923737199690624,0.0,227.8249809003638,-344.3299775293759,-41.42800826563424,-18.122630396282943,-43.04124719117199,161.6046568773574,244.24594551182565,15.963162384694547,12.8550497637803,22.20417686471142,0.42857142857142855,0.5662173532732723,0.19898793041655513,23.22148915331281,0.17656304622875654,2.851340994596392,0.43378264672672767,4.0,0.15384615384615385,0.5259030199476816,0.8326146603370327,0.8915274445509753,0.8915274445509753,0.8915274445509753,0.8915274445509753,-0.8561000000000003,,2.5714285714285716,1.5506335390459915,1.2465999089259103,2.568514856090708,-4.471334203675763,1.4441554467564264,1.4492485814243974,-2.1591241968048562,45.58590000000001,13.212334168400758,0.0,10.197363616602075,5.138973737607942,11.263392880364169,5.316788604006331,0.0,0.0,0.0,3.295836866004329,0.0,4.634728988229636,2.3978952727983707,6.115892125483034,4.59511985013459,7.666221925662725,6.6052979209482015,9.256937657352966,19.000000000000004,0.0,6.681550925925926,0.0,0.0,0.7010185185185183,0.0,-0.2150231481481475,0.0,20.343999999999998,0.0,31.929128401360543,0.0,0.0,-3.824175170068027,0.0,0.0,-0.34988945578231223,21.87707503352486,10.455762341614273,5.131558479839333,0.0,24.522340330282518,14.817828337479405,0.0,6.923737199690624,4.339655680673546,0.0,0.0,0.0,18.502789109982515,13.944166467065868,14.562938903985515,81.98238914228655,,42.35401191706036,59.373982228251435,60.55239252746139,42.36005590956806,74.49252418454012,59.226985400580695,58.14153194885587,74.42377583768992,14.562938903985513,81.98238914228654,,41.117938104869296,58.061907695212525,59.49757721990871,41.125904147733124,76.96579638631704,58.005007714863694,56.91524468765061,76.22563480155227,4.584174295724646,62.0660600276272,,32.64771760151551,45.967821079761066,46.841155855258606,32.651528710999706,56.38587647160141,45.759406146933756,44.85098491512163,56.65252756173252,1.1202260695373474,6.306337626329735,,3.258000916696951,4.567229402173187,4.657876348266261,3.258465839197543,5.730194168041548,4.555921953890823,4.472425534527375,5.724905833668455,2.3590036371733745,40.991194571143275,,21.037679671444536,29.806270617129258,30.372088564417304,21.039336719974397,36.21997471979787,29.724581580810074,29.182246634537503,37.033255302373696,20.015686274509807,0.0,1.2758125472411188,0.0,0.0,4.768336640211641,0.0,20.46176256372906,0.0,2.283240740740741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.175844494199067,220.50181878867045,42.445960248937716,67.20084775110116,71.95573525326463,71.95573525326463,71.95573525326463,71.95573525326463,149.0,93.69028053528969,168.92781898905076,57.56793060661385,151.66,115.03999999999999,0.75,6.300441698771794,4.700439718141093,3.2152089185544375,3.5496530748443424,,3.5244120024282077,3.5413302534452313,3.5397033091886323,3.5243841985997095,3.5346937382620984,3.5418983208608648,3.5422756240751525,3.544132015894287,0.24732376296572595,0.27305023652648786,,0.2711086155714006,0.272410019495787,0.2722848699375871,0.27110647681536226,0.27189951832785375,0.27245371698929727,0.27248274031347325,0.2726255396841759,1.4302566024888663,1.529214137783418,,1.5220778789959661,1.5268666988357633,1.5264071771371759,1.5220699900379921,1.524990923078979,1.5270270967139037,1.5271336167450542,1.5276575470510472,133.69000000000005,58.765062631754596,51.8380517331353,,52.09307793791004,51.780494014627195,51.9330560367704,52.09385566493536,52.22874632168832,51.76859438993862,51.749239355833936,51.930881608385526,4.520389433211892,3.9875424410104077,,4.007159841377695,3.983114924202092,3.9948504643669542,4.007219666533489,4.017595870899101,3.9821995684568168,3.9807107196795335,3.9946832006450403,4.33591176985204,4.2104887334969305,,4.215396343323415,4.209377779390933,4.212319769750088,4.2154112727775885,4.217997303596572,4.2091479439587856,4.208773998066955,4.212277899040494,21.087038926681785,10.519172808012094,13.841021825396826,0.0,-0.34988945578231223,0.0,0.0,1.2758125472411188,-3.824175170068027,153.95033624618304,88.72179978874493,-134.09229842527574,-16.13329425273838,-7.057489390803987,-16.761537303159468,62.93364299094222,95.11661008934729,6.216528545258543,5.006137373123543,8.646964553577027,257.0,14.0,2.1227354067776396,1.0829912460257622,0.28867513459481287,0.05892556509887896,0.4330127018922193,0.21401558244591373,0.14433756729740643,0.032274861218395144,0.0,0.0,0.0,0.0,0.11785113019775792,0.06123724356957946,0.1422588984322123,0.10561862178478974,0.2665558843957724,0.15734782465119626,10.060477932315068,8.14601207436431,5.892865415757243,5.395561829005821,6.371575872725564,4.811973693691263,3.57071052537358,3.0815095121098466,2.74226684559916,1.9053602623835681,1.7057909980091173,1.1057981334098206,1.1733039607650892,0.6261902374881848,0.651228678684631,0.2700369965525978,2.458895067321546,1.6877108455549108,3.016038735097808,1.5899276727033032,3.5076474096160393,1.541692843387979,48.79139500161462,30.218282478116762,28.20785970256444,28.20785970256444,28.20785970256444,28.20785970256444,64.0,70.0,23.28675799999999,17.143241999999997,0.2631578947368421,13.09,6.395833333333334,2.7499999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,19.0,0.0,0.0,19.0,5.0,3.0,5.0,14.0,8.0,13.0,11.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,2.0,1.0,13.0,9.0,0.0,4.0,3.0,0.0,1.0,2.0,2.0,0.0,0.0,1.0,1.0,2.970414465569701,0.0,3.6176519448255684,3.86859344750081,4.357509787885796,4.523146350509501,4.78957290898587,4.523146350509501,3.944006051281197,0.0 +10238338,O=C(O)c1cccc(C2=C(c3cc(Cl)ccc3OCc3ccc(F)cc3F)CCC2)n1,1,32.12244897959184,6.631097959183674,3.7142857142857144,10.073570168808265,161.51925612879353,131.08794400611308,1.7030437201486122,6.726302040816327,6.726865460404555,8.086472346938775,254.58078603332243,28.76923076923077,6.449519230769231,4.384615384615385,8.905982905982906,143.0232263452779,111.84331182058462,1.9946127164615386,6.624009615384614,3.570374327318772,7.849445115384615,297.75090338899867,26.0,6.415057471264368,3.9885057471264367,7.57088122605364,148.32283323253444,100.07337302690574,1.7762024577171953,6.564593103448276,3.857847310912445,7.857693011494254,260.4665557822761,22.02654867256637,6.38641592920354,3.47787610619469,6.057030481809243,156.3664597056192,82.66122826064425,1.5223504366653804,6.508895575221239,3.607797079281839,7.888579362831859,218.20529433606066,22.00900900900901,6.537990990990991,3.3423423423423424,5.938938938938938,158.1633434056557,82.39356296684116,1.500409806555324,6.638379279279279,4.09382530678827,8.01982263063063,216.01612933813513,20.74576271186441,6.216618644067796,3.2966101694915255,4.757062146892655,154.33703033528423,77.28808952623729,1.5182534843223474,6.343647457627117,3.00093290088582,7.7545637118644075,212.9586184763669,20.015625,6.173601562500001,3.0859375,4.545138888888889,155.91765501153213,74.069832807175,1.4963716164877578,6.3066,3.0767425411522638,7.7401273125,204.0331015727036,19.28125,6.15256328125,2.875,4.416666666666666,157.3210715113322,70.36708175598748,1.421416388149461,6.29876484375,3.1136349022633745,7.760467734375,193.33881248983374,19.247863247863247,6.228316239316239,2.7606837606837606,4.452041785375119,161.18152187515653,71.56973654724104,1.3522660548066323,6.336760683760684,3.3622278498821707,7.816830940170941,187.15778947494874,10.471470220741358,0.20642490628904614,0.021483393062893097,0.6339025406080799,4.490690607308684,2.3369250033508946,49.77215692021858,0.2590111539632411,0.18940974593919196,2.7936041357558112,0.13280617409412743,48.71465559925548,0.04187357831672723,-0.00741446672860667,-0.01105708102368544,0.14082273411719476,0.9582308416127662,0.0037603882319115637,0.24718461584901058,0.008630944159046187,-0.00628176320763783,-0.1374142750906419,-0.005602854235414724,1.930208570928517,0.3181145786956585,0.007769933025990126,5.6278108424118986e-05,-0.03221358916543392,0.23826338382374296,-0.25821007777270044,1.5062309613576486,-0.01073602908291927,0.007477235060104266,0.29828631808535444,0.004487164634467441,-1.636233243827774,-0.5059654347561672,-0.003919506252925585,0.001290858325383685,-0.05832009524055241,-0.2182919067599614,-0.1499169165426887,-2.468429968354869,-0.019462650124764346,-0.0048720540482763515,0.010880462830903229,-0.005020154047170609,-2.6252079990121344,-0.9423288344571145,0.004212858005860913,-0.0007255104928454734,-0.044272093834776045,-0.5334885072494401,0.2972103110799372,-4.473097512738256,-0.00030885589206537954,-0.0006648847514736435,0.15002335416797496,0.0024050731939769844,-3.4638458272666486,0.04599778340945496,-0.010912038769156902,-0.001189650756128505,-0.06333872186024185,-0.5797195647799328,-0.023223993775458928,0.15376642176730387,-0.007303367794890917,-0.007353156523764839,-0.09182209808586117,-0.0032168477364657245,-2.1653621784967285,-0.3927074656393168,0.006786732741566027,0.0016158040447787389,-0.05880687734277385,-0.11083264560548349,0.018660507638398306,-1.8519368844871542,0.0006398661540542944,0.0030912744689712305,0.05200402706235674,0.003562668380362361,-2.2220486952492426,-1.4178987921699289,-0.004152377590066626,-3.7448802261943304e-05,0.004490316534777168,0.2714070558306465,-0.2351234837300769,-6.632705068253227,-0.04158805541708856,-0.0063418409647022465,-0.061453793908967325,-0.007317676166831517,-5.1356760986923415,0.7711601647461703,-0.01679720700420408,-0.0030106973652119086,0.020728542594431798,0.04065380763361528,-0.03665649723982757,3.8896379537633283,0.034335915818188456,-0.013163975836279084,-0.2769204223414165,-0.014202938440891787,6.651002705985168,,,0.47373271889400925,1.346774193548387,0.7258064516129032,0.06451612903225806,0.6209677419354839,0.10483870967741936,0.8226759968747596,0.015983534483972796,0.027080308677521182,1.0945521740285722,0.26632984119389724,0.21491931988255242,1.9172281709033316,0.48124916107644966,2.0441142597141466,1.6296982179814763,0.06639491893000181,0.17689667410910004,0.17112444869356883,0.4144160417326706,9.001925052163276,1574.0,324.9238,182.0,493.60493827160496,7914.4435503108825,6423.309256299541,83.449142287282,329.5888,329.6164075598232,396.23714499999994,12474.4585156328,1496.0,335.375,228.0,463.1111111111111,7437.207769954451,5815.8522146704,103.719861256,344.44849999999997,185.65946502057614,408.17114599999996,15483.046976227932,2262.0,558.11,347.0,658.6666666666666,12904.086491230497,8706.383453340799,154.529613821396,571.1196,335.63271604938274,683.6192920000001,22660.59035305802,2489.0,721.6650000000001,393.0,684.4444444444445,17669.40994673497,9340.718793452801,172.025599343188,735.5052000000001,407.6810699588478,891.4094680000001,24657.198259974855,2443.0,725.717,371.0,659.2222222222222,17556.13111802778,9145.685489319369,166.54548852764097,736.8601,454.41460905349794,890.2003119999999,23977.790356532998,2448.0,733.5609999999999,389.0,561.3333333333333,18211.769579563537,9119.994564096,179.153911150037,748.5503999999999,354.11008230452677,915.0385180000001,25129.116980211293,2562.0,790.2210000000001,395.0,581.7777777777778,19957.459841476113,9480.9385993184,191.535566910433,807.2448,393.82304526748976,990.736296,26116.23700130606,2468.0,787.5281,368.0,565.3333333333333,20137.097153450522,9006.986464766398,181.941297683131,806.2419,398.54526748971193,993.33987,24747.36799869872,2252.0,728.713,323.0,520.8888888888889,18858.238059393316,8373.6591760272,158.21512841237598,741.401,393.380658436214,914.5692200000001,21897.461368569002,513.1020408163265,10.114820408163261,1.0526862600817617,31.061224489795915,220.0438397581255,114.50932516419384,2438.8356890907103,12.691546544198815,9.281077551020406,136.88660265203475,6.5075025306122445,2387.0181243635184,2.177426072469816,-0.3855522698875469,-0.5749682132316429,7.322782174094128,49.82800376386384,0.19554018805940132,12.85360002414855,0.4488090962704017,-0.32665168679716716,-7.145542304713379,-0.29134842024156565,100.37084568828288,27.675968346522293,0.675984173261141,0.004896195432898352,-2.802582257392751,20.728914392665637,-22.464276766224938,131.04209363811543,-0.9340345302139764,0.6505194502290711,25.950909673425837,0.3903833231986674,-142.35229221301634,-57.174094127446885,-0.4429042065805911,0.1458669907683564,-6.590170762182422,-24.66698546387564,-16.940611569323824,-278.93258642410024,-2.199279464098371,-0.5505421074552277,1.2294922998920648,-0.5672774073302789,-296.6485038883712,-104.5985006247397,0.4676272386505614,-0.08053166470584755,-4.914202415660141,-59.217224304687846,32.99034452987303,-496.51382391394645,-0.03428300401925713,-0.07380220741357443,16.652592312645222,0.2669631245314453,-384.486886826598,5.427738442315686,-1.2876205747605145,-0.1403787892231636,-7.473969179508539,-68.40690864403207,-2.7404312655041534,18.144437768541856,-0.8617973997971282,-0.8676724698042511,-10.835007574131618,-0.3795880329029555,-255.51273706261395,-50.26655560183255,0.8687017909204514,0.20682291773167857,-7.527280299875053,-14.186578637501887,2.388544977714983,-237.04792121435574,0.08190286771894968,0.3956831320283175,6.656515463981663,0.4560215526863822,-284.42223299190306,-181.4910453977509,-0.5315043315285282,-0.004793446689528743,0.5747605164514775,34.74010314632275,-30.095805917449844,-848.986248736413,-5.323271093387335,-0.8117556434818876,-7.8660856203478176,-0.9366625493544342,-657.3665406326197,90.22573927530193,-1.9652732194918772,-0.3522515917297933,2.4252394835485203,4.756495493132988,-4.288810177059826,455.08764059030943,4.0173021507280495,-1.5401851728446527,-32.39968941394573,-1.661743797584339,778.1673166002647,0.7083049896414224,0.5524298607879549,0.4387859998049983,0.2968647015262636,0.2867602419275294,0.15885841986566002,0.1794623042819801,0.08564036468871546,0.11403565569526163,0.04726519118197153,0.07296726365938914,0.02539035125531671,0.04768524291973041,0.014239883243859384,0.029868206581270092,0.007795472836036959,17.00110376309791,5.681696890979941,4.108987680063348,2.179336342897817,0.47912137268264704,-0.5190618579818598,3.2674782456086304,0.9728289303702183,7.005160418815804,0.7740022826836337,17.425816612411687,10.942021082294026,35.450517718585175,11.69327276865704,2.2079324489175662,0.5452375057330114,3.9899994312701033,2.2296406972001277,8.002964051847327,1.304224038981672,4.011378051382821,2.425703905755696,22.45586882967829,13.303154698637462,0.2843015411621184,0.625863976282618,0.7873059601332694,0.898370488526044,0.9120276459799358,0.9120276459799358,1.3926688621131302,1193.1919731245346,0.0,1.0,1.0,0.0,15.0,3.0,4.0,0.0,0.0,3.915359949906793,1.8737456638392875,0.9087617349587918,0.24489795918367374,0.16326530612244827,0.16326530612244827,8.871297181808757,1600.8652228626806,80.13036195449192,32.67071883393227,67.45877147292316,,15.0,765.0,17.603746970043638,18.681894674262168,17.864261451058375,16.466073141873693,42.03849248907517,18.19910120538483,30.33183534230805,0.0,4.9839785209472085,16.337802844032566,14.685714285714287,41.75,22.5,2.0,19.25,0.0,0.026267281105990747,3.25,0.22510974833283115,0.09876854793090017,-0.12634120040193098,0.01815956221198156,0.17634309623430933,0.0,0.6676384839650145,0.8811059907834098,0.4425287356321833,0.5688699360341143,0.8629464285714282,25.502955903117545,0.49548956900315666,0.8394895690031566,33.93111739488574,8.256225077010814,6.662498916359125,59.434073298003284,14.91872399336994,0.5376569037656906,0.13294422827496755,0.0,0.37451361867704275,0.16666666666666666,0.493398673522714,-1.1755113512694126,-0.07644133377015504,-0.02399002757692679,-0.05877556756347064,0.506601326477286,1.2069663778996285,0.042812179930046705,0.024631966895910788,0.04161953027240099,-7.631704608494378,0.5675884055487906,0.5976926531759994,1.4077403413656424,0.7875265339128676,0.45176182853688196,0.8684969322052136,0.5680146441728073,0.8556377765071098,0.5833506990066926,0.5922653728085784,0.6317030316292969,0.8135040254132971,0.6586039571098231,0.6302094268791195,0.8489770719293741,1.1367982237527754,0.7445244188614751,0.9848568909290386,0.6599151107385013,0.9518268115022565,0.6230667724403376,0.49109786776312647,0.6492833804525298,0.9345036797369254,0.9392118255037054,0.8766577200988855,0.7838010737052384,1.1897712604514321,0.9975783927777484,1.0200506921167545,0.9414754573099303,1.028251314387097,0.8846089097599068,0.7788771756050288,0.8886921759716472,1.0130665103594736,0.9380147787593496,0.9763997490392906,1.0742921921405508,1.065028234542032,1.1038295421397806,0.8779947482097361,0.9401588019961211,0.9413674545474325,0.9808483637472528,0.8322673295098815,0.967553651837836,1.0029336431677103,0.8133975291530549,0.7127135431596345,1.014776230513364,1.0673288937392815,0.9910026582499424,0.7516604006060149,0.8129467261243382,0.9575011102261871,0.7166752575337003,0.5579960333782316,0.7048199841540363,1.0259907932650667,1.030862202688728,0.6567899608616331,0.7659821191421605,1.05034494086728,0.8981796041467721,0.7742216177919725,1.0263078115121895,0.9798632640536914,0.7085828626953942,0.576735158883125,0.6925629846164626,1.0656323112566897,1.3129698313578873,0.7237554355479996,0.7946134450808903,0.9175427069645204,0.8169773511084852,0.864995454590261,1.3006943100370234,1.1772033242120015,0.7922733065829795,0.722977405126081,0.8161103530143906,1.1455123908920142,0.9742651483165365,0.9750221913001038,1.0525970811620922,0.9245594528117524,0.9753272426964882,0.8699512349322548,0.9676442873597652,0.8625204045357422,0.985168542204495,1.0254311268637974,1.0093112301867115,0.9041677220947508,6.5,0.16977655341291706,4.000000000000002,1.8055555555555556,1.6988888888888891,1.1355555555555552,0.675873015873016,0.5668579931972789,0.5008818342151675,0.32094907407407414,6789.503852056428,7363.015605579763,3012.935973023486,2825.062810707929,13.577901463884883,0.48521520184594213,6.989697264441666,0.9425593055308783,0.0,0.16666666666666666,1.6993498942084158,3.740964180275921,4.705948109156417,5.369811884931535,5.45144453799276,5.45144453799276,0.19117647058823528,0.006791062136516682,0.08333333333333337,0.036848072562358274,0.0361465721040189,0.024160756501182035,0.014380276933468423,0.012883136209029065,0.012522045855379187,0.00891525205761317,0.4271569782811344,24.134948096885815,10.950520833333334,5.925925925925926,182.3280382421151,0.0,4.366241041177371,184.9436975812572,,138.4634146249945,137.64404031840672,140.70208535600602,138.30303102114368,198.80179822521904,138.74686073898826,139.49252450524207,168.53899249626363,0.003998825134772973,-0.03591846963575498,-0.514680385510594,0.22215202668553524,0.2133816210925837,0.0016091180617775831,0.004966323164278995,0.03332267366474531,-0.03316494183807482,-0.04918888590257058,-0.04218820603508732,0.039622748989690426,0.030379170449776314,0.037640482273540624,0.002619609866065552,-0.05081788934704786,0.05305718087903113,-0.11049138393506658,0.030262521348472713,-0.04145006467344232,0.03947650646500922,0.10677472669357031,0.03378731949078759,-0.033588110676344006,-0.048318471436224544,-0.018987564647055245,0.06008633373716477,-0.09200167455490561,-0.048609874482264975,-0.06415135972601785,-0.04959459507273508,-0.07514213124399456,-0.02572229862892311,0.003894776175207628,-0.037800607399566644,-0.05388949109294855,-0.08999011739446075,0.020408671034888907,-0.03377075914970814,-0.06984053698902581,-0.11879876702732035,0.12718008094130967,-0.0898714821603639,-0.001192442438634177,-0.003510298523324655,0.05370243845496959,0.018109648970629704,-0.07110479966771206,0.004392676714903404,-0.05286202602837729,-0.05537536610933742,-0.09991870642998732,-0.12909363291170145,-0.009937842995456964,0.0030894064328733256,-0.02819711693160292,-0.03882142646516982,-0.03286868633626884,-0.024222124900501674,-0.04444991249265493,-0.03750261017421047,0.03287748975437545,0.07521177125272706,-0.09276958771353484,-0.024680534754521113,0.007985069102192488,-0.03720829072076753,0.002470419301498901,0.016320567105156523,0.01861538877206989,0.02682607495218778,-0.045613556493730056,-0.1354058945191313,-0.020115681119662304,-0.0017431511936830057,0.0070836070959264,0.060437709823278944,-0.10061233603685851,-0.1332613549154602,-0.1605647277375195,-0.03348212592364824,-0.02199803226320073,-0.05510042147321445,-0.10542363556750325,0.07364392472975717,-0.08137199772145623,-0.1401406824516978,0.032699888810269875,0.009052907712557717,-0.015685782465105283,0.07814887267188675,0.13256539455077448,-0.06949999204637147,-0.09912657945951082,-0.10694486561163445,0.13652981067337808,15.757311264168107,33.56702767815319,13.096521287517765,19.785981872437223,39.635817761185876,48.53162748607153,50.3841899271549,50.46647564144061,50.46647564144061,63.36754205113854,50.520644757425764,2.058242486830056,5.483796897382101,5.304857909500633,12.84689729371279,7334.96866946826,6796.201179488236,2857.159868754048,162.0,48.0,63.0,82.0,103.0,111.0,122.0,138.0,155.0,441.09432755600056,34.0,5.10594547390058,5.958424693029782,6.840546529288687,7.71289096149013,8.59877317840866,9.479068956510876,10.367441670330306,11.252170904234243,12.142530960719474,0.7755102040816326,1.013877551020408,1.1204628687349651,0.7507723471171833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.719568300134425,1.0026410564225692,1.027030039983947,0.6971995164847947,9.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,2.0,0.0,1.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9.843390348640755,29.684763474737075,0.0,0.0,0.0,0.0,18.55934580036867,0.0,0.0,17.667306958694127,72.87324340814784,22.215903365596926,5.693927994848461,331.5308125564637,-789.8647774490905,-51.36344878428758,-16.11968933569573,-39.49323887245453,340.40210973827243,811.0004454135902,28.766913170204337,16.551029498236538,27.965532600468634,0.4666666666666667,0.7170831927038188,0.20489671958675074,1.636702323908351,0.14858617827150375,63.91312417950505,0.2829168072961811,8.0,0.17647058823529413,0.3026603228641474,0.6662791638639769,0.8381462693194615,0.9563827934153442,0.9709218622768963,0.9709218622768963,6.385100000000004,,2.2065826330532214,1.9399061883154927,1.583719442721074,2.2870596288910674,-7.527528992797942,1.8489779407316553,1.72253156643077,-2.526338763281311,114.00330000000005,23.418757628062217,0.0,4.9839785209472085,0.0,25.869346833290948,0.0,93.76913758507852,0.0,5.749511833283905,4.23410650459726,0.0,5.564520407322694,2.3978952727983707,7.0825485693553,4.59511985013459,8.688285266258644,6.6052979209482015,10.340419027440413,38.0,13.424187138318205,4.279207332238017,0.0,0.0,0.0,0.0,1.2701622012283824,0.0,49.68,0.0,11.316658342506054,0.0,0.0,0.0,0.0,0.0,0.8105514504853372,54.90268056801329,4.736862953800049,8.78083009534964,5.749511833283905,16.059811203739763,6.606881964512918,11.63444168209179,46.57176102594077,54.59730361615449,5.022633313741326,11.146209060138535,0.0,36.78784500874198,35.25884670658682,39.949443260845094,369.8873951625144,,276.7844690801146,275.16292539885757,281.3035006113736,276.45850980816533,400.23367928387347,277.37443257857444,278.8739179416821,337.8929329806825,39.949443260845094,369.8873951625143,,274.77242247978967,273.4249251264886,279.9241320644875,274.3709996837243,405.1311254432361,275.70687748663346,277.3133380567816,339.6043237558085,4.8666723227575215,269.898545430722,,203.54759617499073,201.78228731902004,206.9705940834728,203.38483121493476,298.14770134836226,203.55604883476096,204.6295404911139,249.8891907164254,1.2886917180917772,11.931851456855304,,8.928531260648858,8.876223399963147,9.074306471334632,8.918016445424689,12.910763847866885,8.947562341244337,8.995932836828455,10.89977203163492,2.4599470216143966,184.9436975812572,,138.4634146249945,137.64404031840672,140.70208535600602,138.30303102114368,198.80179822521904,138.74686073898826,139.49252450524207,168.53899249626363,49.12941176470589,0.0,0.0,6.242417266153135,27.16055717141751,0.0,9.263157799767614,50.324471959213405,2.2898521587239116,0.0,5.887693583606282,0.0,0.0,0.0,0.0,0.0,0.0,34.16277630775494,481.8318052019164,83.26814481621237,183.30724483352012,230.59145734866442,263.1207823616452,267.12078236164524,267.12078236164524,1049.0,142.45779332791275,190.10111709281972,80.50819281885548,59.42,59.42,0.875,8.884783347095475,6.087462841250339,4.515830650328638,5.4807905035391995,,5.487345331214617,5.487617522847252,5.487535626864827,5.487749092763211,5.449970715337701,5.487309366237081,5.486664056497681,5.471851631260648,0.14567195646221415,0.17679969366255482,,0.17701113971660054,0.17701992009184683,0.17701727828596217,0.17702416428268425,0.17580550694637745,0.17700997955603487,0.17698916311282845,0.17651134294389187,2.6389912571481484,2.8326514545182944,,2.8338467038395168,2.8338963061272526,2.8338813822384816,2.8339202816208418,2.8270123468192847,2.8338401496510657,2.833722542342339,2.831019177273551,301.6300000000008,388.00667941002223,204.27468990065003,,203.23003832923865,203.52165502198417,203.51819674314257,203.15864541862285,207.152846821534,203.5192398150239,203.5966693232618,205.19854030967383,12.51634449709749,6.589506125827421,,6.555807688039956,6.565214678128521,6.565103120746534,6.553504690923318,6.682349897468839,6.565136768226577,6.567634494298768,6.619307751924962,7.092424665940482,6.450867718712256,,6.445740642693597,6.447174523596744,6.447157531261341,6.4453892898424705,6.464859022722561,6.447162656450268,6.447543037110584,6.455380111261799,33.04825075502379,15.595865674744072,9.778258357846166,3.4653725030169547,-1.8997594093817876,13.424187138318205,2.3631573226423512,-0.07330516391843966,0.0,377.24684749390354,222.76646771181305,-530.7361481290487,-34.512792240762366,-10.831349961817324,-26.536807406452443,228.72738435173088,544.9378992690863,19.329436031854332,11.121181617736458,18.790962043761603,2766.0,49.0,2.2213008200490045,0.8912068958910122,0.0,0.0,0.53171167146349,0.13065451999851213,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.08838834764831845,0.355498860309242,0.15801744422638403,0.658762932456971,0.22082748368021432,21.957454678884094,17.1253256844266,14.918723993369941,10.093399851892963,13.764491612521411,7.625204153551681,11.306125169764746,5.395342975389074,9.350923767011453,3.8757456769216656,7.515628156917082,2.6152061792976213,5.293061964090076,1.5806270400683917,3.6439212029149513,0.951047685996509,4.983050141957658,1.743571948692323,7.4050063830617665,2.394268682528314,11.349439240109776,3.150110891727197,94.24370422790095,55.17149539075586,32.36583022340887,27.142636774777763,26.715745371656915,26.715745371656915,164.0,193.0,58.882274,24.537726,0.5102040816326531,226.07,9.972222222222223,6.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,18.0,18.0,49.0,0.0,0.0,52.0,18.0,2.0,11.0,41.0,20.0,34.0,32.0,0.0,0.0,0.0,24.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,3.0,1.0,1.0,31.0,7.0,0.0,1.0,3.0,0.0,4.0,6.0,0.0,0.0,3.0,1.0,3.0,3.828641396489095,7.6999980791563205,4.448516375942715,5.015622835607295,5.564041365397364,6.101859244980198,6.305933075115553,6.636028573320483,6.9904003667560515,7.380917975615912 +2140,CC(=O)Nc1c(I)c(NC(C)=O)c(I)c(C(=O)O)c1I,0,316.7586206896552,6.717658620689655,3.689655172413793,10.726641123882505,156.9299503724497,1769.8809492049215,4.328956280815206,6.9700655172413795,8.298316955300129,8.288753103448277,326.2866520156018,58.48275862068966,6.64596551724138,4.310344827586207,9.581609195402299,146.9451936589707,256.1979914658621,2.5273082222758623,6.881775862068966,3.9966283524904216,8.093203310344828,319.2554885256515,64.34782608695652,6.521304347826085,4.086956521739131,8.03768115942029,150.9680476871281,287.16655439173917,2.504339757371608,6.75699565217391,4.688985507246378,8.0268167826087,293.71575830728597,91.56363636363636,6.756596363636361,3.618181818181818,6.535757575757575,153.50668208693546,418.7572511185456,2.874299924436362,7.077947272727271,4.1681346801346795,8.354322399999997,312.8014363148549,233.86206896551724,6.295348275862071,3.1551724137931036,6.342247765006386,146.0346384602381,1232.2975297464247,4.142141368087828,6.793543103448277,3.6550652464878683,8.01894372413793,341.69328827911363,96.98113207547169,6.701818867924529,3.0377358490566038,6.532494758909853,150.01301463972004,440.3716672843396,2.6377503260377346,7.070486792452832,4.658292103424178,8.307918113207549,295.0834742005575,54.78947368421053,6.391684210526318,2.263157894736842,4.823781676413255,152.831136709324,214.36381422877193,2.232361575418404,6.7638684210526305,4.196480831708903,8.125414526315794,223.28592038684795,53.69767441860465,6.953162790697677,1.9767441860465116,4.9343669250646,161.7117744417484,232.9117709572094,1.6367605370162324,7.10219069767442,7.948981912144705,8.543828837209299,199.7424852032142,17.894736842105264,6.473999999999997,1.3157894736842106,1.2894736842105263,168.38746438543092,49.4949818568421,1.2257269213972102,6.601686842105262,5.240771929824562,8.263464421052632,120.67461300786073,223.53626634958383,0.1940380499405469,0.03611048080825663,0.8347205707491079,4.988688950543883,1.8471872847206892,1321.7318903853159,1.8315605636157193,0.16156504161712243,3.5677419551680085,0.12256001902497025,70.13725457858025,-1.4458977407847822,-0.028261117717003573,-0.02576615216750868,0.29013079667063013,1.404201347602061,0.08233801007585917,-6.808616471486248,0.05972798252080853,-0.028397740784780044,-0.3533486590038313,-0.01997534363852556,4.121930060889337,1.6181564390218668,0.05657829188853847,0.010052830835432718,0.1098071653828258,0.5002443605783314,0.1555129044891507,3.965452586752186,0.1528396667616936,0.05097026572920435,0.7755887972335671,0.032969867032001235,16.48196136231729,-18.499275753972537,-0.08953416279321157,-0.005628849945957138,0.021705761539293034,-1.7444748555711693,0.3012794997032171,-112.90799086334917,0.06214025800694716,-0.07715795697762406,-1.065321298764898,-0.051182732504594104,10.502249944045198,65.22948870392393,0.007324910820451856,-0.0016028614396873674,-0.16587395957193818,0.5464755361782708,-0.03776603559096845,381.8831267494216,0.39799542162385076,0.018783709869203313,-0.14641466367199538,0.0009545493460166495,13.552491484402728,-23.84986426760595,0.005125125075718447,0.009216519721650464,-0.29210508603863333,-0.7018868589272197,-0.421709375220775,-150.18713931614292,-0.37918287619290125,0.025518627868889213,-0.3092652921158881,0.013154716173468226,-14.824389664919014,-86.25314475248763,0.00570587020464361,-0.010678071845028015,-0.2769468260425142,0.1480375400120065,-0.7926655421984388,-491.0444028797768,-0.8760178587291849,-0.01939135740659615,-0.2733236167037136,-0.00895883572188497,-48.98637152490626,1.418825871747366,0.036671974117191544,0.009946786419230807,-0.19799242319497826,-1.0694849349806073,-0.10495864188269503,5.562572998945046,-0.051216216901833485,0.03522830240853908,1.4948330749190146,0.03713250382988132,-12.657903484556078,-34.72682896301396,-0.05940138932348704,-0.0042344452437448905,0.2578384129169536,-1.3522797282544448,0.048955903345688674,-189.73110002596286,-0.1547925472632297,-0.0813204862632204,-0.7976698427797594,-0.04487496639339133,-14.801699243363968,,,0.6280952380952382,1.25,0.65,0.125,0.6,0.05,1.0254301921620286,0.03758673222388396,0.041886732223883956,0.8134816066239449,0.23097486204011344,0.2271490838546574,1.8389117987859733,0.45812394589477085,1.9235577376459652,1.1187023618730074,0.1972939624631112,0.3406086369718386,0.26695277633800796,0.8048553757729578,21.164470716137938,9186.0,194.81210000000002,107.0,311.0725925925926,4550.968560801041,51326.547526942726,125.53973214364096,202.1319,240.65119170370372,240.37384000000006,9462.312908452453,1696.0,192.733,125.0,277.8666666666667,4261.410616110151,7429.741752510002,73.291938446,199.57150000000001,115.90222222222222,234.702896,9258.409167243894,2960.0,299.9799999999999,188.0,369.7333333333333,6944.530193607892,13209.661502020002,115.19962883909398,310.8217999999999,215.69333333333338,369.23357200000015,13510.924882135156,5036.0,371.6127999999999,199.0,359.46666666666664,8442.86751478145,23031.648811520008,158.0864958439999,389.2870999999999,229.2474074074074,459.4877319999999,17204.07899731702,13564.0,365.1302000000001,183.0,367.8503703703704,8470.009030693811,71473.25672529264,240.24419934909403,394.0255000000001,211.99378429629635,465.0987359999999,19818.210720188592,5140.0,355.19640000000004,161.0,346.22222222222223,7950.689775905162,23339.69836607,139.80076727999995,374.7358000000001,246.88948148148143,440.31966000000006,15639.424132629545,3123.0,364.32600000000014,129.0,274.9555555555555,8711.374792431468,12218.73741104,127.24460979884903,385.54049999999995,239.19940740740748,463.1486280000002,12727.297462050334,2309.0,298.9860000000001,85.0,212.17777777777778,6953.60630099518,10015.206151160004,70.380703091698,305.39420000000007,341.80622222222235,367.3846399999999,8588.92686373821,680.0,246.0119999999999,50.0,49.0,6398.723646646375,1880.8093105599999,46.577623013093984,250.86409999999995,199.14933333333335,314.01164800000004,4585.635294298708,6482.551724137931,5.62710344827586,1.0472039434394422,24.206896551724128,144.67197956577263,53.568431256899984,38330.22482117416,53.11525634485586,4.685386206896551,103.46451669987225,3.5542405517241376,2033.9803827788273,-41.93103448275868,-0.8195724137931036,-0.7472184128577517,8.413793103448274,40.721839080459766,2.387802292199916,-197.44987767310118,1.7321114931034474,-0.8235344827586213,-10.247111111111106,-0.5792849655172412,119.53597176579078,74.43519619500587,2.6026014268727695,0.462430218429905,5.051129607609987,23.011240586603247,7.153593606500932,182.41081899060055,7.030624671037907,2.3446322235434,35.67708467274409,1.5166138834720568,758.1702226665952,-1017.4601664684894,-4.924378953626636,-0.3095867470276426,1.1938168846611168,-95.94611705641431,16.57037248367694,-6209.939497484204,3.417714190382094,-4.243687633769324,-58.59267143206939,-2.8150502877526757,577.6237469224859,3783.3103448275883,0.4248448275862077,-0.09296596350186731,-9.620689655172415,31.69558109833971,-2.1904300642761703,22149.22135146645,23.083734454183343,1.0894551724137922,-8.492050492975732,0.05536386206896567,786.0445060953582,-1264.0428061831153,0.2716316290130777,0.48847554524747466,-15.481569560047566,-37.20000352314264,-22.350596886701076,-7959.918383755575,-20.096692438223766,1.3524872770511283,-16.39106048214207,0.697199957193816,-785.6926522407077,-4916.429250891795,0.32523460166468576,-0.6086500951665968,-15.785969084423309,8.43813978068437,-45.18193590531101,-27989.530964147278,-49.93301794756354,-1.1053073721759805,-15.579446152111673,-0.5106536361474433,-2792.223176919657,61.00951248513674,1.5768948870392365,0.4277118160269247,-8.513674197384065,-45.98785220416611,-4.5132216009558865,239.190638954637,-2.2022973267788397,1.5148170035671804,64.27782222151762,1.596697664684897,-544.2898498359114,-1319.6195005945303,-2.2572527942925076,-0.16090891926230583,9.797859690844236,-51.3866296736689,1.8603243271361696,-7209.781800986589,-5.8821167960027285,-3.0901784780023753,-30.31145402563086,-1.7052487229488704,-562.4645712478308,0.7805182992539865,0.8389173379724099,0.4581239458947709,0.41945866898620493,0.3098456867690722,0.24036962573733106,0.1714602821309764,0.14914226917736795,0.11429904971955579,0.11646606794170834,0.0710099608565442,0.04355183186469307,0.04213944258493438,0.026786891225288382,0.03058319956615474,0.010073033383001027,53.002267910300816,5.692033804114985,3.55554902204908,2.1208461418246576,0.4673706308689561,-0.3628427141722352,3.315867590075597,0.9714661181415114,6.024435167015033,0.1514629650083125,14.541457176014775,10.43534736603146,126.90657956689955,11.704397536831289,5.355455616337582,0.7414355383395367,3.5016238364465866,2.226842611414241,7.010455151509961,1.0035902644737984,3.714519090643784,2.4198146261891282,32.51808769727417,14.700469549406575,0.40029449260753847,0.679714622034037,0.7302007733956227,0.7756120237550832,0.7890574735408615,0.8159483731124182,3.005128824698491,573.1711797623659,0.0,3.0,2.0,0.0,5.0,0.0,1.0,0.0,0.0,2.8047572524191224,1.371532327959219,1.1125745691893245,0.8796474139423078,0.8106818967009284,0.6727508622181704,-63.82535347907614,1068.3573154496457,60.064566280226565,36.83990742929813,90.0494572599802,,8.0,246.0,5.969305287951849,19.490138947056174,17.377810950400008,22.08531936256331,0.0,13.847474399381248,0.0,67.77261188120417,10.633577208012662,0.0,12.561904761904763,25.0,13.0,2.5,12.0,0.12809523809523818,0.0,1.0,0.2507389162561573,0.06584095707248405,-0.18489795918367324,0.0726397515527949,0.0,0.01898138371769975,0.684072249589491,0.8569047619047616,0.4333333333333337,0.6182312925170069,0.7842650103519667,20.50860384324057,0.7517346444776791,0.8377346444776791,16.269632132478897,4.619497240802269,4.542981677093148,36.77823597571947,9.162478917895417,0.7329813837176997,0.5780894617134191,0.0,0.35822592873388925,0.18181818181818182,0.5610726241626461,-1.1471466874144993,-0.07465963272433773,-0.0395567823246379,-0.12746074304605548,0.43892737583735364,0.8974133891469247,0.040288439850840754,0.030945289280928438,0.04487066945734625,-5.075709083831031,0.5151866548932413,0.7974936575441521,1.6920981832996949,0.837606837606838,0.46162684845869684,0.9158300318144008,0.5160078154735305,0.4669203507267599,0.8087111650163901,0.6711794488830698,0.8283615290199828,0.5457901553062575,0.6362966718179257,0.42261761585472757,0.5834227564862748,1.0561129691564477,0.729310912720242,0.8651989297257136,0.6402163893071718,0.5584741108981475,0.41241739683367784,0.43935294737393443,0.44461403059079063,0.5415728792148362,1.0600315097096908,1.4164264536953375,1.1491755288115748,1.030510230510231,1.2586465098592066,0.9107465185101277,1.0664061708789319,0.9332801974359987,1.3754046163145035,1.2499254952488206,1.3565085431227957,0.6908042542941094,1.2926210410970562,0.7560434105866926,0.8751889842657078,1.2763532763532768,0.7888599179223958,1.0690978737289105,1.3010306628787196,1.2936569365861064,0.6250049677574144,0.794540399094196,0.7401283533328852,0.9784143390296887,1.1954237399387093,0.8956415980005688,0.7800128772338422,1.3749395258829227,1.0423295659632181,1.2566251784994942,1.206214890323961,1.265449756438811,0.715719578585312,1.0000572791000353,0.8053469194302996,1.1060753058134507,1.7808722525485603,0.9664278475901251,1.2647503529037647,1.237866746638677,0.9668990311803686,1.4276691716056993,1.7691793485366216,1.839990164023196,1.0871915474553369,1.0542935181996804,1.0388748409074717,1.8497134057227664,0.5981709955612141,1.091108676388393,1.0333171746380632,1.0490956072351425,1.2912476247739169,0.9563449613082461,0.5975336753812459,0.6875808225309521,1.0752681399480504,0.9696512887514991,1.0376630243023155,0.9961387763042795,0.9728625157689803,1.7272062812405864,1.1854367296654684,0.3652721547458391,1.4926748549996893,0.7860192362943701,0.9539298835655244,0.980847335133001,1.994121971246426,1.7543226126680855,1.8488269106489528,1.3390585509213844,5.5,0.0,2.666666666666668,2.5,2.1066666666666674,0.9722222222222222,0.7314285714285714,0.125,0.0,0.0,10322.589586598506,10668.9632978058,2577.343673353636,2476.923269544668,10.804583149292409,0.438070940324553,6.071409249267063,0.7795840645393377,0.0,0.18181818181818182,2.0532237427084494,3.4864486671683528,3.7454064259382474,3.978333581185264,4.0472990984266435,4.1852301329094015,0.2750000000000001,0.0,0.0919540229885058,0.07575757575757576,0.058518518518518525,0.031362007168458786,0.03482993197278912,0.0078125,0.0,0.0,0.575234556405848,18.05,7.319857312722949,4.25,155.42015247415432,0.0,3.8837113797337217,77.54390428705427,,55.486388729754935,59.57414255725242,58.8594155007364,55.41471152675158,80.30317759154214,59.32120243980352,60.058896721152564,73.08043129508364,-0.00646829154121941,-0.14564729817508865,-0.7135366683242077,0.34757834757834766,0.28147702964101823,0.04457480340890794,-0.0051512841000616065,0.032610432713673615,-0.17576661696456056,-0.09903985866802738,-0.1629841754059764,0.05876948115029533,0.007238898928781716,0.2915834904848508,0.2783909438595497,0.1315496098104794,0.10027571683413798,0.08418902932880767,0.0030001943779961026,0.08344778207059113,0.31547830656333387,0.21738926384799145,0.26900996992570625,0.23499581586632048,-0.0827573800711241,-0.46142580190145577,-0.1558785654460216,0.026003626003625994,-0.3496860343198949,0.16310176136188226,-0.08542427680278929,0.03392749289396954,-0.4775659152830433,-0.29859819240058544,-0.4176136142257467,0.14973853777351245,0.2918071853357024,0.037749868248501794,-0.044387706942990206,-0.19871794871794882,0.1095429163044315,-0.020445157837191915,0.2889263166965682,0.21729853193506213,0.1162609787438859,-0.04103846789140908,0.0077884236116361125,0.19322814338589217,-0.10669348941485686,0.026412990015560252,0.2552311549267191,-0.34994355749072753,-0.14069565488758276,-0.2282981150363111,-0.11362905019440805,-0.20702721150773684,0.15794646919575195,-0.08668376132637778,0.10733285028935984,-0.2113625597978046,-0.38585749937148045,0.029405934590622223,-0.29570561249869826,-0.33178387564352496,0.02967463826259742,-0.42912028940167635,-0.3715158924830253,-0.4782904131763031,-0.12002198750735865,-0.07660969322845618,-0.07309753860318596,-0.6984358287081653,0.006347184261942056,0.18899372637700598,0.27545427799888184,-0.2371960511495396,-0.21438196399557208,-0.056820790588413835,0.004208548677238487,-0.027963157713292625,0.21804408958729618,0.41898576009783794,0.3029740377432218,-0.1804733242071008,-0.15535210250271148,-0.30613268553094397,-0.11726360737840656,0.3088918878392565,-0.27106916098808176,0.02650294518083543,-0.14354734224552287,-0.08451402063257506,-0.5033297144560149,-0.22357834529605053,-0.3661468621692083,-0.21103904525918488,,,14.808281250389877,59.901587398280256,73.38134161755966,76.87052778775272,98.50626032480626,99.47226032480626,100.37012239377178,38.471154752919304,22.374047237460147,3.945879249262224,6.812172739436772,5.339055526760159,16.097107515459157,7099.453008640747,3948.073073224218,3513.4164019685236,4.0,29.0,36.0,48.0,56.0,55.0,50.0,33.0,20.0,613.7696507680002,20.0,4.59511985013459,5.43372200355424,6.340359303727752,7.215975002651466,8.127109185346375,9.01881660441743,9.93037288131751,10.829669207558254,11.740754024474697,1.60919540229885,1.021655172413793,1.1059406054900847,1.7625119789618142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.9462964484823458,1.0232589587559162,1.0406610241856493,0.7776985618731443,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.740104602853368,0.0,0.0,11.814359458703011,0.0,9.589074368143644,4.794537184071822,0.0,0.0,0.0,67.77261188120417,13.847474399381248,27.648770854260306,293.18093872341365,-599.4260425226929,-39.01238496448441,-20.66986353526527,-66.60289361363255,229.3555852443375,468.9312729269529,21.052181315742153,16.170043894032858,23.446563646347652,0.375,0.7219616100412086,0.23358705469244645,46.031308050050285,0.16508056440983435,55.95297965279069,0.27803838995879127,5.0,0.15,0.4226496037690924,0.7176744146725089,0.7709800490563451,0.8189273661579634,0.8331236994310968,0.8615163659773635,3.1154,,3.9460916442048517,1.1205274893720956,0.9108036285605763,3.998124684413607,-3.3019892918510854,1.4813122923588042,1.3090624225210892,-1.1333975477464555,100.15970000000003,19.490138947056174,0.0,0.0,0.0,13.847474399381248,10.633577208012662,16.273998304893183,0.0,0.0,3.713572066704308,0.0,5.056245805348308,0.0,6.586171654854675,0.0,8.227108234348146,0.0,9.936970683352676,46.66666666666665,0.0,0.0,0.0,0.0,0.0,0.0,2.27115933484505,0.0,29.627999999999997,0.0,33.91796109851348,0.0,0.0,0.0,0.0,0.0,-1.742859297052153,32.07227755921245,10.633577208012662,11.374772549367124,0.0,22.890192141495568,9.589074368143644,10.710546813196189,24.205463075150064,0.0,0.0,0.0,0.0,51.112847389892615,27.44259700598803,22.945570658755976,155.08780857410858,,112.01000920877101,119.03623236556763,117.62775063861673,112.08665045782978,162.78183857793778,118.49427365037116,119.98688720005302,146.5008818544912,22.945570658755976,155.08780857410858,,109.64235422224812,118.02775762513275,116.80802737291218,109.68777564718164,164.1026342946782,117.1610925872483,118.80873101978409,147.29426013791374,4.960058434550002,102.19321513196505,,74.01687505826753,77.68379476827945,76.55477274261862,73.94830873203642,107.81739038619448,77.71164011395321,78.70553124624578,97.68376043134845,1.1472785329377988,7.754390428705429,,5.600500460438551,5.951811618278382,5.881387531930836,5.604332522891489,8.139091928896889,5.924713682518558,5.999344360002651,7.325044092724561,2.4800292172750016,77.54390428705427,,55.486388729754935,59.57414255725242,58.8594155007364,55.41471152675158,80.30317759154214,59.32120243980352,60.058896721152564,73.08043129508364,29.67450980392157,0.0,2.6719107457797935,0.0,0.0,0.0,9.317056273620558,30.17916970138383,0.0,5.211179138321995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.553258294321186,377.2513101490943,59.543488538545034,101.10701134788223,108.61678635220917,115.37167385437266,117.37167385437266,121.37167385437264,371.0,113.2318980631823,145.2852138186569,53.520068444608114,95.50000000000001,95.50000000000001,0.6,7.437574379240662,5.321928094887363,3.7649616941802964,4.394459116145662,,4.37060497246316,4.387534231036724,4.387164336046046,4.369835838673708,4.3443278787756645,4.387156976520413,4.3866775838747305,4.364827829227574,0.18824808470901483,0.21972295580728313,,0.218530248623158,0.2193767115518362,0.21935821680230233,0.21849179193368543,0.21721639393878323,0.21935784882602066,0.21933387919373654,0.2182413914613787,2.0188848675715443,2.1734916361248864,,2.1680486177204292,2.1719145712671866,2.1718302618204133,2.1678726234409518,2.1620182388827356,2.171828584305909,2.1717193065111524,2.1667259255976683,250.11999999999992,124.38583547170573,100.72106804762308,,100.53130031365438,101.7949277496089,101.86313013280844,100.52158052803995,103.33476914422494,101.55320663402873,101.633161195451,102.50204593590374,6.219291773585287,5.036053402381154,,5.026565015682719,5.089746387480445,5.093156506640422,5.026079026401997,5.166738457211247,5.077660331701436,5.08165805977255,5.125102296795187,5.516535491614529,5.3055021743663335,,5.303616305476876,5.316107457792681,5.316777231298903,5.303519616629829,5.331121084218606,5.313730044986162,5.314517052169796,5.3230299392894835,1.4381519274376422,33.91796109851348,14.528235411942553,0.8330074074074076,-1.742859297052153,0.0,0.0,2.6719107457797935,0.0,,153.19774861413484,-313.2220006355534,-20.385396031033448,-10.80075864260529,-34.802444515061495,119.84667026616538,245.0337173350228,11.000533646666746,8.44943852879389,12.251685866751144,746.0,33.0,2.110456821537705,1.3880662282602765,0.0,0.0,0.5536808514583824,0.48681015489948154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037037037037037035,0.015625,0.184872734502323,0.14228731707119766,15.61036598507973,16.778346759448198,9.162478917895418,8.389173379724099,8.985524916303094,6.970719146382601,6.17257015671515,5.369121690385247,5.486354386538678,5.590371261202001,3.9765578079664747,2.438902584422812,2.3176693421713908,1.473279017390861,1.529159978307737,0.5036516691500513,3.8780047220986984,3.3035675966562126,6.862819564010385,7.372750376610931,11.252329948498812,10.350298800424584,109.9018703411106,88.23125663160849,82.6230693013392,54.240082558301026,52.860367595136,51.480652631970955,98.0,114.0,45.829136999999996,23.812863,0.20689655172413793,20.09,10.5,4.444444444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,6.0,29.0,0.0,0.0,29.0,6.0,3.0,6.0,23.0,9.0,20.0,20.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,3.0,3.0,0.0,20.0,9.0,3.0,2.0,4.0,0.0,1.0,3.0,0.0,0.0,3.0,0.0,1.0,3.295836866004329,3.840795496139778,3.901972669574645,4.359908829420263,4.94787297235994,5.432902890880455,5.670311864594601,5.794156248005704,5.6507332535663855,5.364222141435755 +5311010,CCOc1ccc(C[C@H]2NC(=O)CCSSC[C@@H](C(=O)N3CCC[C@H]3C(=O)N[C@@H](CCCN)C(=O)NCC(N)=O)NC(=O)[C@H](CC(N)=O)NC(=O)[C@H]([C@@H](C)O)NC(=O)[C@H]([C@@H](C)CC)NC2=O)cc1,0,25.437037037037037,6.337859999999999,2.925925925925926,7.073251028806585,167.44707949951766,100.42143142222221,1.3893349083324664,6.376748888888888,6.034618706497993,7.8837449037037,198.2262026269452,25.934306569343065,6.459164963503649,3.6204379562043796,6.037307380373074,151.73938211841494,97.86286726277373,1.7237793891678834,6.582608759124085,3.1962942937530663,7.8945028978102165,245.6287089049614,20.234817813765183,6.2856639676113355,3.1983805668016196,4.493927125506073,157.72778530927079,74.24288548178139,1.4228256078486676,6.376611336032387,3.1426500724746336,7.792760129554656,195.80092251647704,17.30857142857143,6.3146200000000015,2.7514285714285713,3.6466666666666665,164.6916735800787,61.791350254285724,1.2322400806939513,6.370456857142857,3.2273456790123456,7.8832885885714274,167.02413587737178,18.31151832460733,6.37107670157068,2.693717277486911,3.855148342059337,164.85368320050392,66.05677069371725,1.2207047555242907,6.427600523560211,3.4714223385689364,7.94109219895288,169.81649227653529,19.138755980861244,6.415493779904304,2.6985645933014353,4.179425837320574,164.3781864068247,69.71854524880382,1.2338548282158421,6.466803110047848,4.314386555614625,7.970409799043059,170.7399467551457,17.916844349680172,6.292643923240938,2.6844349680170576,3.383084577114428,163.8809989033843,64.38260027718549,1.2558507220971449,6.353386567164179,3.3625194135144376,7.8681900127931765,168.7202196073236,17.959692898272554,6.310630134357006,2.5719769673704413,3.317978246960972,163.8534541656263,64.03408229558539,1.2459237691644054,6.374102879078694,3.3654178810928648,7.907332875239924,167.40345803068487,17.892226148409893,6.297445406360425,2.489399293286219,3.4705535924617195,163.95547951421665,64.1012554416961,1.2214886250882282,6.354884275618375,3.9092232692056,7.887784307420493,162.8316575738709,10.0241426611797,0.15987358024691353,0.0271859115531795,0.5748148148148149,4.085901539399482,1.4572009229091132,46.18704406222221,0.25141283363424105,0.14784217283950615,2.651845002549672,0.1001408958024691,47.85902425922777,0.9416859411452546,-0.01686637830044144,-0.01742523427649669,0.16278994322789933,1.1186161981271772,-0.07701826582412583,3.9648213410218993,0.024942475030793405,-0.013503178516716148,-0.14812501891119143,-0.011090595667297486,1.9547394576703303,0.04417342818902273,0.02158318088668968,0.001623791569116285,-0.03134502923976614,0.3694324270455959,-0.23372796917858035,0.1893055802429146,-0.028058086251088212,0.01891664857299948,0.22076653814359606,0.011506524500424848,-3.977331755951062,-0.5030844601214972,-0.0022813580246913044,0.0045764734416605625,0.011873015873015848,-0.1857369303459838,0.1391421094161219,-2.2110720600000007,0.0032048448030423562,-0.003387201410934704,-0.22540028956312053,-0.0032409971781305227,-0.10489064421127982,0.035446247100309476,-0.023683708228298014,-0.007190887549611405,-0.004735311227457846,-0.2249186251297728,-0.0781332669744832,0.17139358041884764,-0.0014230575170447346,-0.01897315015189705,-0.33314530740785164,-0.01495980152284921,1.1959370946835908,0.8243776294458556,0.019482778073129033,0.0029004575940746687,-0.005188729399255737,0.12501267092993332,-0.01671833994510202,3.6323787906220097,0.004118058950575233,0.017576668202492814,0.46587958041568844,0.015577926029889515,0.4367638820218637,-0.02807537854525151,-0.0033077522440706055,0.003183431078329839,-0.022165363657901,-0.3478264825847898,0.11797268070107655,-0.13331856665245226,0.010347444045574678,-0.0036639401932137892,-0.14561701929222656,-0.0028671661333544013,0.13655817420031496,-0.7249459596797336,-0.023746444397052133,-0.005435565710553487,-0.0359650245254852,-0.374924706307059,-0.04565645055944963,-3.262732168598849,-0.005451378139643468,-0.020835600009478403,-0.3191943125293564,-0.01554511370251891,-0.9155847402950779,0.10122051117994042,0.014059525367534829,0.0025818446841538475,-0.01414212799371811,0.06854159631573876,-0.021089684852836705,0.34293975293286316,-0.00664214925207061,0.011685243729005833,0.298414844829881,0.011676398713955403,-1.7938335617939853,,,0.46421568627450954,0.9522058823529411,0.3161764705882353,0.007352941176470588,0.6360294117647058,-0.31985294117647056,1.6441947665903338,0.02392311898309362,0.027717236630152443,1.246027053081043,0.17348494582667134,0.3013303699310158,2.890221819671377,0.47481531575768715,1.9774833719753602,1.2897357376356566,0.31537158430839657,0.3131659981314715,0.0,0.6877476343397039,7.358823767288903,3434.0,855.6110999999999,395.0,954.8888888888889,22605.355732434884,13556.893241999998,187.56021262488298,860.8610999999999,814.673525377229,1064.3055619999996,26760.5373546376,3553.0,884.9055999999999,496.0,827.1111111111111,20788.295350222845,13407.212815,236.15777631600002,901.8173999999997,437.8923182441701,1081.5468969999997,33651.13311997971,4998.0,1552.559,790.0,1110.0,38958.762971389886,18337.992714000004,351.4379251386209,1575.0229999999997,776.2345679012345,1924.811752,48362.82786156983,6058.0,2210.1170000000006,963.0,1276.3333333333333,57642.08575302755,21626.972589000005,431.284028242883,2229.6599,1129.570987654321,2759.1510059999996,58458.44755708012,6995.0,2433.7513,1029.0,1472.6666666666667,62974.10698259249,25233.686404999993,466.309216610279,2455.3434000000007,1326.0833333333337,3033.49722,64869.900049636475,8000.0,2681.6763999999994,1128.0,1747.0,68710.08191805273,29142.351914,515.751318194222,2703.1237000000006,1803.4135802469134,3331.6312959999987,71369.2977436509,8403.0,2951.25,1259.0,1586.6666666666667,76860.18848568723,30195.439529999996,588.9939886635609,2979.7383,1577.0216049382711,3690.1811159999997,79129.78299583477,9357.0,3287.8383000000003,1340.0,1728.6666666666665,85367.6496202913,33361.75687599999,649.1262837346552,3320.9075999999995,1753.3827160493825,4119.7204280000005,87217.20163398681,10127.0,3564.3541000000005,1409.0,1964.3333333333333,92798.80140504663,36281.31057999999,691.3625617999371,3596.8645000000006,2212.6203703703695,4464.485917999999,92162.71818681093,1353.2592592592596,21.582933333333326,3.6700980596792325,77.60000000000001,551.5967078189301,196.72212459273027,6235.250948399998,33.94073254062254,19.95869333333333,357.9990753442057,13.519020933333328,6460.968274995749,129.0109739368999,-2.310693827160477,-2.3872570958800465,22.30222222222221,153.25041914342327,-10.551502417905239,543.1805237200002,3.4171190792186965,-1.8499354567901123,-20.293127590833226,-1.5194116064197556,267.79930570083525,10.910836762688614,5.331045679012351,0.4010765175717224,-7.742222222222237,91.24980948026219,-57.73080838710935,46.75847831999991,-6.930347304018788,4.672412197530871,54.52933492146823,2.8421115516049373,-982.4009437199123,-176.07956104252403,-0.7984753086419566,1.6017657045811968,4.155555555555547,-65.00792562109433,48.69973829564267,-773.8752210000002,1.1216956810648246,-1.1855204938271464,-78.89010134709218,-1.134349012345683,-36.711725473947936,13.54046639231822,-9.047176543209842,-2.7469190439515567,-1.808888888888897,-85.9189147995732,-29.84690798425258,65.4723477199998,-0.5436079715110886,-7.247743358024674,-127.26150742979932,-5.714644181728398,456.8479701691317,344.5898491083676,8.143801234567936,1.2123912743232115,-2.1688888888888984,52.25529644871213,-6.9882660970526445,1518.33433448,1.7213486413404473,7.347047308641996,194.73766461375777,6.511573080493817,182.56730268513903,-13.167352537722957,-1.551335802469114,1.4930291757366945,-10.39555555555557,-163.13062033226643,55.32918724880491,-62.526407760000104,4.852951257374524,-1.7183879506172672,-68.29438204805426,-1.3447009165432142,64.04578369994772,-377.6968449931412,-12.37189753086416,-2.8319297351983668,-18.73777777777779,-195.33577198597774,-23.787010741473257,-1699.8834598400003,-2.8401680107542466,-10.855347604938249,-166.3002368277947,-8.099004239012352,-477.0196496937356,57.29080932784628,7.9576913580247135,1.4613240912310776,-8.00444444444445,38.79454351470814,-11.936761626705575,194.10390016000053,-3.759456476671965,6.613847950617301,168.90280217371264,6.608841672098758,-1015.3097959753957,0.7426572911087509,0.5951727554784007,0.4612491638788961,0.35835576943680825,0.30628201181156456,0.20364013326692174,0.19185636308544401,0.11917120119510746,0.12300782701166257,0.0683840460906311,0.08248050173315061,0.03947020991705065,0.05017347494822894,0.02503682784990042,0.0319006245335925,0.015604767989685865,16.101024725783063,5.693494197671734,3.5605290075937894,2.1929737783336956,0.4441598623848778,-0.5253393039459664,3.1951522062473767,0.9714658053366365,6.033786016331143,0.5598307114980612,14.551956773406996,10.250201921558341,32.16051334890632,11.70480095283335,3.007825188124146,0.7508463600999268,3.5068046742674017,2.2428582245714015,7.018139809062037,0.5378285630334149,3.719289708192876,2.4388740256752635,24.53163955613656,14.701775157071612,0.23828435879138335,0.4898475154215217,0.7296717027503873,0.8764620469568918,0.9225938096265921,0.9246432198344167,1.9380132433841164,1945.7003400776323,0.0,10.0,10.0,0.0,5.0,16.0,1.0,1.0,0.0,5.354301170566853,3.5357967220787656,1.8021511542828765,0.7410303704985735,0.4075522222863235,0.3927374074715084,394.9107349032551,10548.152910123361,153.709864182623,78.13446600091378,162.54976963281229,,27.0,2801.0,126.35213356029908,53.05189923555892,50.27850651702277,37.18231015827185,10.793897976386724,22.617544906927826,38.11294267322769,6.923737199690624,37.217520228044314,21.937865385286607,31.56666666666665,64.75,21.5,0.5,43.25,0.0,0.03578431372549046,-21.75,0.17017283950617357,0.013028631468347873,-0.1571442080378257,0.1037780966044961,0.20266090712743057,0.0,0.606172839506172,0.907843137254903,0.4359999999999984,0.5931442080378241,0.8040650406504068,111.8052441281427,1.6267720908503662,1.8847720908503662,84.72983960951092,11.796976316213652,20.490465155309074,196.53508373765362,32.287441471522726,0.5113390928725694,0.21752903907074983,0.0,0.34530095036958836,0.627906976744186,0.3470026163567061,-2.836117545685897,-0.07406683878863628,-0.021008278116191832,-0.06917359867526579,0.652997383643294,5.33707024022541,0.04503454277228078,0.039533853631299326,0.05677734298112139,-6.334936031138641,0.7639733536088613,0.8113088835983951,1.7432944079350414,1.0524682067875684,0.5049735868562385,1.4651755831202105,0.7787050369408818,1.0823554732529086,0.791550143363246,0.6402019775021276,0.7928554687272954,1.082028313444581,0.9244557770591227,0.6301084872777971,0.9671192583807595,1.3947264076130053,0.7861110810741748,1.387545660204337,0.9271583722080964,1.2317687827229968,0.6397336113300711,0.533736936876922,0.6255008817480274,1.16064963067237,1.0646085875370452,1.029893862346263,0.9673733875632943,1.144624447717231,1.0854393317033764,0.9786183301195615,1.0594387864786676,1.0195077790209779,1.0317764336896182,1.0376853118153524,1.0462234481987334,0.9994868885559068,1.0018666645268397,1.233697795672827,1.4297377374303286,1.1617504183084146,1.1447015611498466,1.1218464392363856,1.00001492837937,1.0114081627582605,1.2016652030737602,1.2450010502335032,1.2432830873371064,0.9570090755283525,0.9029078594455373,0.9655063234734941,1.0005061291787296,1.1525797859221623,1.040981112190494,1.0789598067590487,0.9066880724559951,0.9820514860746671,0.9557566234771361,0.9928136782364358,0.9455040357366294,0.9763406352427492,1.0422456464111725,1.02144926679281,0.948963924145307,1.1874079528718702,1.109419929955897,0.9979804056265598,1.036847096303379,1.027876337915038,1.0198477541329642,1.0814258962184131,1.0334389332130263,1.0078635829872968,1.2293899265497943,1.2057923583658527,1.2607518126499881,1.1683271662346397,1.1424082791544574,1.1144438765726432,1.2110265321332028,1.174473974845301,1.1889458381851428,1.2454493492957368,1.230360380458582,1.0332201343682719,1.0912340741339621,0.9449541703718436,0.9090155330817938,1.0800152999890713,0.9957361782906666,1.0732065249849143,1.0827035957387416,1.1362742031520596,0.9474190683379506,0.9852130446557684,0.9327703036831428,1.0508308687787897,15.5,1.2870176512600755,8.222222222222225,4.805555555555555,4.792222222222224,3.0661111111111112,2.3853061224489793,2.355973639455782,1.538462144116906,1.252183641975309,18025.37149264226,20603.555068782814,6585.028312786704,5875.986862035768,25.645474332684767,0.47214677536274985,13.537046323859485,0.8944660245037194,0.0,0.627906976744186,1.7225144264839782,3.5410188749720652,5.274664442767954,6.335785226552257,6.669263374764507,6.684078189579322,0.2214285714285714,0.008303339685548876,0.08747044917257688,0.04533542976939203,0.03960514233241507,0.022544934640522873,0.016797930439781544,0.01529853012633625,0.009438418062066908,0.007826147762345682,0.47404889341955747,62.29632653061225,33.02987777274785,21.786703601108034,402.7203222108315,0.0,5.099695712589659,697.3505882061265,,591.4196682109383,616.2199164303313,611.7623508463863,591.5215014040675,818.7457761980625,621.5179181952474,623.9826302634314,764.3446245188259,0.09394179362511501,-0.10549822099681826,-0.6409656061158906,0.2832041538114228,0.2737746339065194,-0.05285356645970881,0.08584271675148936,0.09920923554395823,-0.09133509239866808,-0.055857344139183675,-0.11074991469193582,0.04084369641726312,0.004406703863073726,0.1350015484319296,0.05972915662364009,-0.054530656538252946,0.09041638019987447,-0.16039515588006403,0.004098672779056528,-0.11160164676361554,0.12795164065624856,0.0832501665562412,0.114903351005785,-0.08310515764817722,-0.05018728056113791,-0.014269762528417185,0.16833989298862873,0.020655375552282723,-0.04545800444650023,0.09548587791060596,-0.04787212745247977,0.012747339730893809,-0.022910928227575275,-0.08499753543152208,-0.032364371740028035,-0.002191658644002875,0.003536087653419125,-0.14814022549391956,-0.26450786965686285,-0.008237977006531045,-0.05504749024442468,-0.05361873283644389,0.0037108583997700704,-0.005660242146250254,-0.12833381563252483,-0.1256277448672687,-0.14938753446302164,0.024988747957037597,0.0822392155928114,0.12186365028567728,0.10668973112786607,-0.00902678439303511,0.030596104611054043,-0.011472913365801347,0.078644972077636,0.016379668814227057,0.11888805382733124,0.17568130111969543,0.1555600826720927,0.009126050703753129,-0.002800776035837805,-0.020689799020964027,0.11709855938075119,-0.03856087749763705,-0.08512845432783263,0.08095841750193197,-0.0028864927245148726,0.0411571831715969,-0.024782781007901402,-0.054911587650190725,-0.028631321004057842,0.002853342213176964,-0.07231999625137195,-0.1485326366018539,-0.19994053537328513,-0.06256801947088275,-0.09176058274819877,-0.03133160969202684,-0.07064171857812258,-0.021682974814142584,-0.14093137032081518,-0.12036688125529976,-0.15523242105984464,-0.019130869349442338,0.010097672649047096,0.08794151820345099,0.0949699508550005,-0.024602928855050832,0.016775146355047153,-0.014472736409426559,0.007425020585228662,-0.026419292746740618,0.07903863630096299,0.11253102822486374,0.11659970305226196,-0.03748161584067635,17.766779679219173,0.0,30.57458566777313,18.80152162072198,35.04639735545255,42.712593271699845,49.4849943052252,51.48433314595549,51.72135536817771,134.4688692943245,87.70203015922465,21.445267732970965,21.29528787294006,0.0,46.766839135099865,51414.41171205438,43189.800859354844,12058.646755336216,227.0,94.0,114.0,138.0,161.0,170.0,189.0,211.0,215.0,993.4412085840019,70.0,5.796057750765372,6.61338421837956,7.471363088187097,8.313116702819253,9.174816815907135,10.027606032372521,10.892005918407165,11.750831512451475,12.61731105601018,0.654320987654321,0.9942222222222225,1.1441707532955014,0.6131379568728668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6387630561100023,0.9787363834422658,1.0159909363114026,0.5958557734204794,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,4.0,0.0,0.0,3.0,1.0,14.0,7.0,1.0,2.0,9.0,1.0,0.0,0.0,0.0,69.16182273902211,48.042397637319624,0.0,59.071797293515054,0.0,47.94537184071822,0.0,0.0,0.0,53.98882611200393,69.68960897177948,30.892106865258175,25.6764263810998,447.8346458468523,-3660.236657543409,-95.58918277379094,-27.11286412995118,-89.27406481813193,842.7453807501074,6887.916252579952,58.12068140883205,51.0216018709626,73.27570481468034,0.48148148148148145,0.7384451864410965,0.060428045621581085,244.53176938558275,0.030125774071007135,116.05554815076222,0.2615548135589036,14.0,0.2571428571428571,0.24340247429957243,0.5003689620579824,0.7453443389094525,0.895287596471019,0.9424102243873409,0.9445036539266084,-3.0446000000000133,,5.821428571428571,5.42173637757554,4.3815546800341565,5.809406317354265,-17.839255310000855,4.90093329253366,4.6675427351794365,-7.985346897031089,252.6068999999995,57.78876218935896,0.0,42.117429958894796,23.11890847764795,127.4583739739546,37.74685839574422,29.828919765543436,0.0,5.749511833283905,4.948759890378168,0.0,6.248042874508429,2.3978952727983707,7.709308333385869,4.59511985013459,9.250041738827735,6.6052979209482015,10.837834289209853,88.33333333333334,6.924543141881701,0.0,0.0,0.0,0.0,0.0,1.2689757955396064,0.0,134.22000000000003,0.0,134.0161348000768,0.0,0.0,0.0,0.0,0.0,-8.151059558614554,154.4630516948927,59.15538561333093,0.0,5.749511833283905,155.2219450067345,54.36619346364422,5.917906046161393,78.20415165094155,24.26546827384644,0.0,0.0,0.0,82.77362417783701,86.2330125748503,83.64504849778189,1394.701176412253,,1183.5046140490413,1232.280370026028,1223.3958324374776,1183.7100828900352,1640.4302816118939,1242.8916912936556,1247.8279798581812,1529.3938384697426,83.64504849778189,1394.7011764122537,,1178.2386215918214,1227.1037371953587,1219.1431470127386,1178.455993565341,1655.666474722782,1238.2538640641303,1243.3670420339863,1536.6745959346827,4.783054138476126,989.1016853287737,,830.1356845868543,884.3927014744909,879.3953350171753,830.2700065604307,1151.7224430232827,890.4019578723992,891.7817465704519,1086.0037024816675,1.2300742426144395,20.51031141782725,,17.404479618368253,18.12177014744159,17.991115182904082,17.407501218971106,24.123974729586674,18.277818989612584,18.350411468502664,22.491085859849157,2.4151033963779454,697.3505882061265,,591.4196682109383,616.2199164303313,611.7623508463863,591.5215014040675,818.7457761980625,621.5179181952474,623.9826302634314,764.3446245188259,132.12941176470588,0.0,6.494680141062874,0.0,0.0,16.30924664564546,10.772051317459596,137.15877640203934,0.7666184775397873,17.87901786955057,5.53346488036817,2.266327349933431,-11.65211027161306,1.2387760778362868,0.0,0.0,0.0,80.44052941176471,953.0226083575471,232.53944757533705,478.0375481212288,712.0796997736738,855.3310055845548,900.3505555932085,902.3505555932086,1657.0,220.65649309529977,337.55741823941264,120.59230017019121,416.27,365.66999999999996,0.9285714285714286,7.975392763350817,7.129283016944966,5.092642646805551,8.114808182497976,,8.104496724043422,8.118079071364576,8.115886556964675,8.104487906899447,8.106352378784955,8.118253301887451,8.118060991825374,8.117508098147082,0.0748918036294934,0.11933541444849964,,0.11918377535357973,0.11938351575536142,0.11935127289653934,0.11918364568969775,0.1192110643938964,0.11938607796893311,0.11938324987978491,0.11937511909039827,3.544719492063327,4.010613175469122,,4.009341670937553,4.011016170803188,4.010746056345214,4.009340583004635,4.009570610796022,4.01103763261105,4.011013943729619,4.010945834792329,741.1700000000025,4435.3337399924185,618.632606054797,,619.6495827807308,615.4651879171734,616.2484849757951,619.6536671104942,620.6090811010052,615.5129465610667,615.6427921667789,616.6482326520407,65.2254961763591,9.097538324335249,,9.112493864422513,9.050958645840785,9.06247772023228,9.112553928095503,9.126604133838313,9.051660978839216,9.053570473040866,9.068356362530011,10.31428075550203,8.344434180476199,,8.346076741378315,8.339300997177272,8.340572879078811,8.346083332710604,8.347623996865638,8.33937859180317,8.339589524672359,8.341221348142827,5.53346488036817,135.2549108779131,28.651069187010165,16.977559515929563,-8.06673690066408,-2.6150515215574397,-1.0547306413428326,6.719853919076606,2.266327349933431,933.5056193511704,577.9664491480706,-4723.828322843539,-123.36549004658075,-34.99132090995215,-115.2153249474034,1087.6303559029386,8889.407140452266,75.0093905584439,65.8474602996464,94.56816106864112,22869.0,106.0,4.900116972436705,1.9732485823809383,0.0,0.0,1.1048843540933104,0.28377329058485246,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.21941609682128765,0.11906487069530546,0.3806138362500197,0.14024574524211936,50.50069579539506,40.47174737253125,32.287441471522726,25.084903860576578,28.79050911028707,19.142172527090644,21.87162539174062,13.58551693624225,16.975080127609434,9.436998360507092,13.279360779037248,6.354703796645155,8.52949074119892,4.256260734483071,6.029218036848982,2.9493011500506285,10.020713826098918,3.773914198627552,14.452568241432243,4.86981167460624,21.886417497981935,5.975297947215897,224.62086725268432,114.43173373804544,70.80239090921314,39.09807610887355,30.498799782168444,29.897103118814268,328.0,372.0,144.0091310000003,84.08086900000015,0.24444444444444444,344.25,27.444444444444446,15.555555555555552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,6.0,6.0,135.0,0.0,1.0,137.0,6.0,10.0,13.0,124.0,16.0,70.0,121.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,67.0,15.0,11.0,2.0,68.0,25.0,0.0,11.0,12.0,0.0,3.0,18.0,2.0,0.0,0.0,0.0,1.0,4.430816798843313,6.123314839975801,4.824305715904762,5.0891383555842,5.383921503840185,5.728678318626197,5.684854464770682,5.822305976840308,6.053999108533887,6.0844994130751715 +5281070,CN(C)CC[C@@H](c1ccc(Cl)cc1)c1ccccn1,0,25.842105263157894,5.758386842105264,2.9210526315789473,4.989603638726446,161.38906945625345,104.64804605263156,1.5853275050560793,5.907073684210527,2.326893766194178,7.388893921052631,219.93318097456344,23.846153846153847,6.088461538461539,3.4871794871794872,5.054131054131054,144.84001094984868,90.1721205384615,1.8725010741025647,6.267769230769231,2.6906985332911257,7.543543641025638,260.93026023205283,19.507462686567163,5.990388059701493,3.2388059701492535,3.5472636815920398,155.45689208743718,72.17290680597013,1.601349513116298,6.130238805970151,2.3431914501566244,7.523260119402986,215.87187608476043,16.209302325581394,5.80886046511628,2.7906976744186047,2.670542635658915,154.82573732047814,57.43481947674419,1.4763491425969648,5.959133720930232,2.149440137812231,7.404736279069767,188.5535263810842,12.62,5.61868,2.45,2.181111111111111,160.8861278215075,43.74286344000002,1.2507171053547,5.732265,1.938230452674897,7.260913659999999,155.01735675093335,13.851063829787234,5.695647872340426,2.5,2.5354609929078014,159.53465147251515,49.21374368085107,1.3066679172470745,5.800602127659574,2.126652657385518,7.288395382978723,166.4690338662309,14.368421052631579,5.725694736842105,2.389473684210526,2.0280701754385966,159.87748066388545,50.85688738947369,1.3062066112792314,5.844731578947368,2.178319254927442,7.341622778947367,164.39656850437888,13.919540229885058,5.765748275862069,2.0689655172413794,1.2503192848020432,161.47448804705706,47.737771678160925,1.2752253790526895,5.897705747126436,2.183198524194693,7.418969402298849,154.42130161347453,10.723684210526315,5.452106578947368,1.644736842105263,0.45467836257309946,164.04814537024,35.22704630263158,1.0867449713957102,5.589459210526315,1.755847953216374,7.21495997368421,118.71540374527915,11.080332409972296,0.052574584487534576,0.006517146658080005,0.5103878116343488,2.8350603604527875,1.4524134904111967,52.35535681163436,0.25864383050587886,0.06594792243767306,0.2563990355162568,0.035234496537396125,54.439110111815985,0.2853895873286456,0.005198492435542276,-0.0007709803804801332,0.1650507848568791,0.8187774629756776,-0.2998365371066124,1.3196233826976518,-0.015835357339468496,0.005473670004971821,0.013527066479731838,0.0012099096704311456,-1.429842835644917,0.20639186339769303,-0.010847954479679168,-0.001618411421777208,-0.051236201265142396,-0.3131572056614434,0.28102358024309193,1.0840959778393442,0.035890536592492764,-0.009679265721255301,-0.0074110200907730895,-0.005398562916029261,4.757247391133555,-1.4187657025059588,-0.007951053275784319,-0.0003587123006728042,0.0018520904464343424,-0.10942305444012584,-0.13978732716571612,-6.76445506194034,-0.03524781669721416,-0.009948595632287598,-0.044671978989773466,-0.004064542437028921,-8.254637721692013,0.2180886426592798,0.0016513628808864278,0.0001641237537463155,0.03198060941828255,0.26485516911186346,0.00019341675683517856,1.076115123102487,0.008192817739632503,0.0017924459833795266,0.010389022305480949,-0.00023039627423823144,2.601123750885536,0.8188837154476337,0.006928215064537038,0.001283682020298845,-0.04454234690870513,0.1650433266609766,0.017896477064664792,3.869035006954674,0.012371856074902262,0.007461372075204818,0.03071973512835962,0.003466855926209696,2.738485613825321,0.21329639889196683,0.0002701246537396109,-0.00047377009057748457,-0.11925207756232689,-0.45780924045005306,-0.16498040623449722,0.9911215102493064,-0.0064516476692702196,0.0008073684210526277,0.02741696189309699,-0.00039033642659279876,-1.2739096825768423,-1.4372592097303154,-0.01224472967809723,-0.00154011033392842,-0.07118635972872289,-0.8955414909077043,-0.055206719081864426,-6.927213251440759,-0.03858896969513379,-0.012577081542331323,-0.09165736737199602,-0.002708851044353163,-10.578007078591403,-0.2970914127423823,0.0027635734072022264,0.00040772797287910137,-0.01004155124653743,-0.20413118566396501,-0.19142427328931455,-1.5417979300554079,-0.03355533692123408,0.0033738919667590794,-0.0437387403362689,0.004096288088642653,-6.754837372393666,,,0.5007518796992482,1.263157894736842,0.6578947368421053,0.02631578947368421,0.6052631578947368,0.05263157894736842,0.740092832680082,0.01313209286456042,0.022184724443507785,0.8041614404804583,0.2531750391217953,0.2291777923490704,1.5442542731605404,0.48235283147086566,2.008172087547469,1.7032662623174515,0.21215084209166699,0.0,0.09275498313835011,0.30490582523001714,7.213780954947381,982.0,218.81870000000004,111.0,189.60493827160494,6132.784639337631,3976.6257499999992,60.242445192131015,224.46880000000002,88.42196311537876,280.777969,8357.46087703341,930.0,237.45000000000002,136.0,197.11111111111111,5648.760427044098,3516.7127009999986,73.02754189000002,244.443,104.9372427983539,294.19820199999987,10176.28014905006,1307.0,401.35600000000005,217.0,237.66666666666666,10415.611769858291,4835.584755999998,107.29041737879197,410.7260000000001,156.99382716049385,504.05842800000005,14463.415697678949,1394.0,499.56200000000007,240.0,229.66666666666669,13315.013409561121,4939.394475,126.96602626333897,512.4855,184.85185185185188,636.80732,16215.60326877324,1262.0,561.868,245.0,218.11111111111111,16088.612782150749,4374.286344000002,125.07171053546999,573.2265,193.8230452674897,726.0913659999999,15501.735675093334,1302.0,535.3909,235.0,238.33333333333334,14996.257238416425,4626.091906000001,122.82678422122501,545.2565999999999,199.9053497942387,685.109166,15648.089183425704,1365.0,543.941,227.0,192.66666666666669,15188.360663069117,4831.404302000001,124.08962807152699,555.2494999999999,206.940329218107,697.4541639999999,15617.674007915994,1211.0,501.6201,180.0,108.77777777777777,14048.280460093963,4153.186136,110.94460797758398,513.1003999999999,189.93827160493828,645.4503379999999,13434.653240372283,815.0,414.36009999999993,125.0,34.55555555555556,12467.65904813824,2677.255519,82.59261782607398,424.79889999999995,133.44444444444443,548.336958,9022.370684641215,421.0526315789473,1.9978342105263138,0.2476515730070402,19.394736842105253,107.73229369720593,55.19171263562547,1989.5035588421056,9.828465559223396,2.506021052631576,9.743163349617758,1.3389108684210527,2068.6861842490075,11.13019390581718,0.20274120498614875,-0.030068234838725193,6.436980609418285,31.932321056051425,-11.693624947157884,51.46531192520842,-0.6175789362392714,0.213473130193901,0.5275555927095417,0.047186477146814676,-55.76387059015177,13.828254847645432,-0.7268129501385042,-0.10843356525907293,-3.4328254847645407,-20.98153277931671,18.828579876287158,72.63443051523606,2.404665951697015,-0.6485108033241052,-0.496538346081797,-0.3617037153739605,318.7355752059482,-122.01385041551245,-0.6837905817174513,-0.030849257857861162,0.15927977839335344,-9.410382681850823,-12.021710136251587,-581.7431353268693,-3.031312235960418,-0.8555792243767334,-3.8417901931205183,-0.34955064958448717,-709.8988440655132,21.80886426592798,0.16513628808864278,0.01641237537463155,3.198060941828255,26.485516911186348,0.019341675683517856,107.61151231024871,0.8192817739632503,0.17924459833795267,1.0389022305480948,-0.023039627423823143,260.11237508855356,76.97506925207757,0.6512522160664815,0.12066610990809143,-4.186980609418282,15.5140727061318,1.6822688440784903,363.68929065373936,1.1629544710408126,0.7013689750692529,2.8876551020658043,0.32588445706371144,257.4176476995802,20.26315789473685,0.025661842105263035,-0.045008158604861036,-11.328947368421055,-43.49187784275504,-15.673138592277235,94.15654347368411,-0.6129065285806709,0.07669999999999963,2.604611379844214,-0.037081960526315884,-121.02141984480002,-125.04155124653744,-1.065291481994459,-0.13398959905177255,-6.193213296398892,-77.91210970897028,-4.802984560122205,-602.667552875346,-3.35724036347664,-1.094206094182825,-7.974190961363654,-0.2356700408587252,-920.2866158374521,-22.578947368421055,0.2100315789473692,0.030987325938811705,-0.7631578947368447,-15.51397011046134,-14.548244769987907,-117.176642684211,-2.55020560601379,0.25641578947369004,-3.3241442655564364,0.3113178947368416,-513.3676403019186,0.7192066283684293,0.638878241847754,0.45823518989732237,0.34275241266609774,0.30973437444118507,0.2071971910613391,0.1935061748662319,0.1107783769098325,0.12259007089981604,0.05988890987562844,0.08183224196771467,0.034567606239561635,0.054558645540341656,0.0220507422025999,0.03657806779435179,0.0123625161822778,17.001102486017572,5.691976322947444,3.146324780984256,2.1893922478434593,0.342559762475273,-0.382934716741603,3.1680901048978796,0.9886008491231986,5.033414621403859,0.773998217024146,14.54823824746911,10.951851960940184,35.4505171337712,11.703200975113608,2.207785224279157,1.0250364320713365,3.1822629672463147,2.2401149862824252,3.0390611610214373,1.236502241510288,3.4929495656238765,2.4362676846150673,22.455861998692832,15.58919547242044,0.25257806921049625,0.554486471150178,0.7583481207535092,0.8525138456329809,0.8525138456329809,0.8525138456329809,1.9155576903946374,493.91719964890143,0.0,1.0,1.0,0.0,9.0,1.0,1.0,1.0,0.0,3.86080586198495,2.2027692699845653,1.0831910383876355,0.5660467106401805,0.5660467106401805,0.5660467106401805,127.2170491778667,547.8883982502945,27.977291769045824,14.4181157434288,28.561665989941403,,9.0,279.0,0.0,0.0,0.0,5.917906046161393,23.682139337428374,5.563451491696996,0.0,30.462311845459517,42.1783334225369,11.600939890232516,9.514285714285714,24.0,12.5,0.5,11.5,0.0007518796992481176,0.0,1.0,0.10091592617908401,0.04981203007518792,-0.051103896103896096,0.0,0.07052173913043447,0.0,0.5390977443609025,0.7781954887218042,0.4381818181818185,0.4892857142857146,0.7781954887218042,14.061763820921557,0.24950976442664796,0.42150976442664795,15.27906736912871,4.8103257433141104,4.354378054632337,29.340831190050267,9.164703797946448,0.6434782608695655,0.1801801801801802,0.0,0.25225225225225223,0.3125,0.37312543895760647,-0.40776147739557006,-0.024301146144795137,-0.010730565194620264,-0.027184098493038,0.6268745610423936,0.6850653170860008,0.031502798928476086,0.018028034660157913,0.02978544856895655,-4.914833096991583,0.6770881410256412,0.8175892092053937,1.18681243771628,0.8804926416866721,0.7370073613559744,1.37838431829484,0.6841917891972424,1.0138610449536005,0.7382409792426513,0.92735198781583,0.7034602520134916,1.0100789275123154,0.7672667910447764,1.4497471623778613,1.779953725077181,1.4521557747220486,1.3145098842338374,0.9394772860628442,0.7690331077964079,0.7771600084006811,1.2114554395434376,0.9933306593186225,1.174775099935247,0.8560441217376467,1.0284440406976747,1.0730541558605187,0.9574683430678729,1.1535136158530819,1.0245139843465094,1.1262224594445662,1.0312934530873803,1.1077914710428058,1.059546073906116,1.144675398554749,1.0052630360962114,1.1291423462357022,0.7939506250000001,0.8560710348179674,0.7916507256840123,0.9252510176390778,0.8561929433051874,0.955121755288388,0.7979685157205566,0.9125003286953275,0.8312897043751473,0.9057714758602406,0.7621997543447181,0.9237182946462756,0.5936236702127661,0.823649904870389,0.780801136199887,1.0553422442911176,0.940704322049124,0.9937545445389722,0.6022303106612741,0.8588887786625328,0.7299759530998313,0.9409702087141002,0.5781494482153999,0.9070839365966781,0.8024375000000001,1.018944198783683,1.1970977806400858,1.214925373134329,1.2191924004825097,1.1122831474502348,0.8067988534430794,0.9568452471065992,0.9340063090157603,0.9060053203883176,0.8807506879167478,0.9811816370225819,1.1443951149425289,1.3909200130649648,1.4976326355251346,0.8880830954943157,1.3036442604994252,1.035946106194834,1.145094989950302,1.1047621264402407,1.296810068662702,1.5570848578154581,1.226513347868135,1.1443813238623843,1.21175,0.6875570519127951,0.5192376504494248,0.7154002713704211,0.8439648673100124,0.9619031580709237,1.2096777631713602,1.1637436350054748,0.8629427232097855,0.9959812008006107,0.8625791056843468,1.1253230018007037,3.5,0.0,2.000000000000001,0.9375,0.5733333333333335,0.5277777777777777,0.4848979591836735,0.2673611111111111,0.16805240614764422,0.015625,3359.469721504761,3868.6298250758714,1784.9089308805262,1596.5685422877468,10.139100886513829,0.41960477936633334,5.8846856960551985,0.7229638778007429,1.0,0.3125,1.3871216514586349,3.04515824345902,4.16473647505595,4.681880802803405,4.681880802803405,4.681880802803405,0.17500000000000002,0.0,0.07692307692307696,0.037500000000000006,0.024927536231884057,0.021111111111111115,0.02020408163265306,0.015727124183006536,0.021006550768455527,0.005208333333333333,0.3976078141835206,15.39,7.695266272189349,4.795005202913631,119.5959557755756,1.0,3.8488792063656687,78.56058966247673,,63.184478633917834,63.675027450508544,63.015747867361256,63.16026011723121,73.70356276966564,63.88873236629124,64.18335895296624,71.18039149424641,0.025756410256410272,0.09887843120804574,-0.11830029626911437,0.32338308457711473,0.2888042436052087,-0.20644020389932133,0.025205126333976324,-0.06122457012988202,0.08299988540419828,0.05275786803368909,0.03433878128915531,-0.026264992809545765,0.0186268656716418,-0.20633457373783365,-0.24833128770712715,-0.10038680410700904,-0.11045874367607081,0.19348731067179128,0.02070649583651462,0.13876432514278353,-0.1467713517496038,-0.02890424324666853,-0.1532181085743484,0.08738657522803622,-0.12804360465116282,-0.15123378250701175,-0.05504131171086508,0.0036287905083462572,-0.03859637557157685,-0.09624485595086325,-0.12920273060649162,-0.13627936389695947,-0.15085533045699734,-0.17422834255139416,-0.11535690407027727,-0.15163065128613018,0.019682500000000006,0.031409908361291296,0.025183375847900202,0.06265943012211672,0.09342135102533176,0.0001331692098098179,0.020554059577402285,0.031676060950722285,0.027179718740549492,0.040518960161307786,-0.006538940438490456,0.04778042377149297,0.07390425531914896,0.1317787887830044,0.1969699452301456,-0.08727157250497998,0.05821510150655752,0.012321888486176257,0.07389950604051466,0.04783356344013416,0.11314036590396782,0.11981221016103182,0.09839379775244268,0.05030364398316889,0.01925000000000001,0.005137932260856144,-0.07269593818179633,-0.233649932157395,-0.1614813027744271,-0.11359052179265368,0.018930660979261254,-0.024944139037267995,0.012242514869451214,0.10693083083519882,-0.011078246177819379,-0.02340063384504775,-0.129712643678161,-0.23290207231215404,-0.2363166604543079,-0.13947503860010302,-0.3158809256409191,-0.03801033207577458,-0.1323114514597559,-0.1491973329487814,-0.1907123238676372,-0.35747937657973194,-0.07688065136614411,-0.19430896384721488,-0.026812500000000006,0.052564816900406874,0.0625623442697269,-0.019674355495251095,-0.07200241254523528,-0.13179736662671726,-0.029448714017985475,-0.12973569427735251,0.05115994321045856,-0.1705885525201037,0.11625788619670098,-0.1240805986453392,12.970631738280169,15.084293208129944,2.701599969404812,14.84289298208575,29.46047588124848,36.279149776903424,36.800431259272855,36.800431259272855,36.800431259272855,38.15526966340191,32.36205898403158,4.030865999741673,0.0,1.7623446796286522,5.7932106793703255,3040.155931380661,1970.3090998150024,1537.0112802354706,24.0,26.0,31.0,38.0,48.0,46.0,46.0,42.0,36.0,274.12367628800047,20.0,4.532599493153256,5.332718793265369,6.171700597410915,7.00033446027523,7.848933726364071,8.689632748355741,9.542445945729886,10.388964598613677,11.243489253126375,0.6403508771929826,0.9554736842105265,1.1231145262559612,0.6020621447883299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6897111093602272,0.9477812177502576,0.9875321041131603,0.6251091358051141,8.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,29.800041095617345,56.8898417597364,22.831310926364257,0.0,187.06633121482136,-204.431099096921,-12.18337261142498,-5.379765765708447,-13.628739939794732,314.28338039268806,343.45729915337347,15.793919157620843,9.038349977720353,14.932926050146671,0.4444444444444444,0.9858762417560304,0.2830867009703135,8.1614502764875,0.07685651523910726,294.45646491953596,0.014123758243969524,5.0,0.25,0.2643179898932014,0.5802592043541486,0.7935964177072127,0.8921389997879845,0.8921389997879845,0.8921389997879845,3.8186000000000027,,0.9327731092436975,0.4879432787375836,0.5821600835107351,0.9461851242422312,-0.8024186822351957,0.5154063957361761,0.4903101588860408,-0.5553606267492481,80.70300000000005,0.0,0.0,9.883888251797686,0.0,12.338727669087403,20.640100371266954,64.94142585113113,0.0,0.0,3.713572066704308,0.0,4.976733742420574,0.0,6.434546518787453,0.0,7.979681302387741,0.0,9.57227147806062,24.33333333333334,16.025577618907647,4.504323507180651,0.0,0.0,0.0,0.0,3.159956380700429,0.0,36.30800000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.67835199772652,0.0,0.0,0.0,30.523988623064643,0.0,0.0,23.59610715563286,48.661413050844345,5.022633313741326,0.0,0.0,22.878361501956533,26.209022155688633,24.221082779743824,157.12117932495346,,126.27077062475739,127.32373739176504,126.01206588911127,126.22092180033167,147.6605209126687,127.73084469850669,128.31510631026026,142.53616002851896,24.221082779743824,157.12117932495346,,125.48819347229816,126.9385190138143,125.55246582318176,125.42618118603013,148.2095442215665,127.3239449123992,127.92704803370324,142.91614361524216,4.699256169583747,106.45154818705362,,86.60518506338789,87.07628736468942,86.28320631015998,86.57950231922753,100.63400466764642,87.35100514223231,87.71505188885733,96.87488367727344,1.2747938305128328,8.269535753944918,,6.6458300328819675,6.7012493364086865,6.6322139941637515,6.643206410543772,7.7716063638246675,6.722676036763509,6.753426647908435,7.501903159395735,2.3496280847918736,78.56058966247673,,63.184478633917834,63.675027450508544,63.015747867361256,63.16026011723121,73.70356276966564,63.88873236629124,64.18335895296624,71.18039149424641,36.01568627450979,0.0,4.189173385403544,5.966028255437977,0.0,0.0,0.0,37.52621995630009,2.0788820389266816,0.0,0.0,0.0,0.3202469135802468,2.2002563443072702,0.0,0.0,0.0,23.754147160594336,494.26876948508107,52.710622755428126,115.71601325144276,158.2599860521261,177.91147050652938,177.91147050652938,177.91147050652938,376.0,109.75081961629452,7.080942122428304,51.676805108360696,16.130000000000003,16.130000000000003,0.8,7.658500446894326,5.321928094887363,3.8424139382057287,4.283408342154291,,4.2920534173210845,4.288526433311126,4.289963288280911,4.292141472305588,4.264781652560755,4.288574419019964,4.28804395224949,4.271117216401071,0.2022323125371436,0.22544254432391006,,0.22589754828005706,0.22571191754269082,0.22578754148846902,0.2259021827529257,0.22446219224003974,0.22571444310631392,0.22568652380260473,0.2247956429684774,1.9879546850081973,2.0966029204791785,,2.098619156651163,2.097797071367886,2.098132061565428,2.0986396722581917,2.0922448706263292,2.097808260628608,2.0976845599465475,2.0937293223755815,220.97999999999962,117.99071673395548,95.15914568711885,,94.29300561902295,94.62834727640072,94.51657834425964,94.28261359933661,96.17504867637825,94.62364691161437,94.66218682741534,95.83519065504363,6.210037722839762,5.008376088795729,,4.962789769422261,4.98043933033688,4.974556754961034,4.962242821017717,5.061844667177803,4.980191942716546,4.982220359337649,5.043957402897033,5.412459835797136,5.19740459391993,,5.188260901470533,5.191810971427484,5.190629137500048,5.188150685529152,5.208023840933612,5.191761298346812,5.192168512300146,5.204483838302167,0.0,6.704579851487921,0.7741948538674731,2.385761526832956,0.3202469135802468,14.17050645978556,2.90233873281823,1.0316144652305366,4.189173385403544,260.16514017287034,93.78565120602552,-102.49147257584752,-6.108130345144742,-2.697144015153882,-6.832764838389834,157.5658821229073,172.19221788003787,7.918276814825528,4.531374154737838,7.486618168697298,718.0,25.0,1.1663395218799635,0.778032719252348,0.0,0.0,0.13608276348795434,0.060373004706725075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1853954059492991,0.052622977527775436,0.19037142086468112,0.06187892965865638,13.664925939000156,12.138686595107327,9.164703797946448,6.8550482533219546,8.053093735470812,5.387126967594817,5.998691420853189,3.4341296842048075,4.65842269419301,2.275778575273881,3.9279476144503045,1.6592450994989585,2.509697694855716,1.0143341413195954,1.6825911185401825,0.5686757443847787,2.0776055202997865,1.1397174525544889,2.932505781615976,1.317800765083558,4.480400211784982,1.7045247013660392,65.4203525987976,41.127701968512014,25.405157814184598,23.22482717250544,23.22482717250544,23.22482717250544,92.0,103.0,43.76906699999998,22.420932999999994,0.34210526315789475,58.03,6.305555555555555,4.305555555555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,38.0,0.0,1.0,39.0,12.0,0.0,6.0,33.0,12.0,20.0,27.0,0.0,0.0,0.0,16.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,2.0,0.0,1.0,19.0,3.0,0.0,2.0,0.0,0.0,2.0,5.0,0.0,0.0,1.0,1.0,2.0,3.295836866004329,6.081398082722002,3.8066624897703196,4.276666119016055,4.77912349311153,5.309504555938601,5.27715756871241,5.568344503761097,5.839369045620879,6.002188093804204 +2145,CCC1(c2ccc(N)cc2)CCC(=O)NC1=O,0,21.515151515151516,6.1224181818181815,3.1515151515151514,6.848484848484849,163.64823511463587,84.72783930303031,1.4265428629570909,6.185542424242424,5.323442760942761,7.655419272727273,209.77180406085606,23.205882352941178,6.2805,3.8823529411764706,6.470588235294118,147.92661106401764,87.18309099999999,1.797702145,6.421367647058823,3.200980392156863,7.6991884705882345,259.6083649355208,19.883333333333333,6.076166666666667,3.5833333333333335,5.066666666666666,151.13671541330075,73.93723789999999,1.5861544450657166,6.197703333333333,2.9884259259259256,7.557116933333334,221.4532579845287,17.0,6.0925119047619045,3.0,3.6904761904761907,156.31253135609867,61.283970678571436,1.3905191291927141,6.189178571428571,3.064814814814815,7.62529719047619,191.77903426008112,14.404255319148936,6.085148936170213,2.4361702127659575,2.7872340425531914,158.9523795718786,49.57481970212767,1.2542589237679576,6.163963829787234,3.4745862884160754,7.6457871489361695,166.04345272057301,10.690721649484535,5.8114948453608255,2.0103092783505154,1.9175257731958764,164.52972791081982,35.17761786597938,1.0634951663687835,5.8732474226804126,2.679839633447881,7.447088206185567,132.76138099959718,10.013513513513514,5.7279459459459465,1.945945945945946,1.9189189189189189,167.67735280390164,33.34821702702703,0.9517087453327162,5.778162162162162,2.695945945945946,7.389653837837839,117.43690868422864,11.547619047619047,6.187283333333333,1.8571428571428572,2.1666666666666665,172.59945776363185,38.19441616666667,0.899202007814,6.201469047619048,4.010582010582011,7.803854571428571,116.21474260516011,8.076923076923077,6.229884615384616,1.3076923076923077,1.3846153846153846,181.94996968175354,22.862282538461535,0.738241185492,6.21,3.474358974358975,7.889934769230769,90.58231637862504,7.395775941230487,0.12140293847566572,0.0190878825752334,0.6685032139577596,3.7594123048668497,1.4616132224678853,35.18202471258035,0.2243510255784463,0.11454508723599628,2.1359555147433937,0.07357358310376491,49.82148989662488,-0.02946578080267984,-0.011640549883865378,-0.013105477113169351,0.2940636309620267,1.2370226327445575,0.17130994824219636,-0.04313408512936909,0.021668941500441453,-0.009953376006049794,-0.14907692492362723,-0.0064819610003781164,3.79665604243728,0.8734159779614323,0.027939081726354443,0.004670500241235354,-0.05284664830119371,0.4516988062442607,-0.0007017204827770388,4.042078058631772,0.003804954966106775,0.024975165289256196,0.1850601979389858,0.0163820593204775,1.7771529113123066,-0.28322182867637435,-0.010017296340023607,-0.002030668520894162,-0.16345270890725433,-0.5646071100616555,-0.09857644555553662,-1.3306422032008396,-0.011804686391169208,-0.008482316673225762,-0.18240963932251814,-0.006749490751672572,-1.8719111988141754,-1.616923587910048,-0.008563093214543878,0.0005029459302571636,-0.09306801086298185,-0.7052536975167536,-0.23003173312178257,-7.7824121800207084,-0.04802842302292984,-0.010555499873004689,0.055632349716811344,-0.0017665373268468056,-12.047221227290695,-0.5244857194248008,-0.010687162155765716,-0.0007973503808999733,0.009722340556454875,-0.12117425425766565,-0.08638216814329949,-2.4749236254200855,-0.01226972878961405,-0.009925530847367775,-0.17127867764387603,-0.006507848645783032,-2.9393730666291384,1.0288759834214383,0.006168068895341606,-0.00044944353325241884,-0.042786588241133704,0.1865336410790957,-0.18558437128514066,4.873291852939716,-0.002009217669533514,0.00859885215794304,0.016697137909259134,0.0003399713597895494,3.3298666456183335,-0.6360356814902266,-0.003609937032664298,0.007264935936573317,-0.011937557392102874,-0.6446936901482355,0.00539933830356658,-3.0363343460579832,-0.014621725765831574,-0.0049916240325331065,-0.07087013715801603,-0.002646962613144442,-4.389987342534451,-2.5169880624426075,-0.06752112029384752,-0.01590847566769654,0.15434060888606338,-0.46104400649855193,0.47626735065079795,-11.619872031927668,0.031464092350029206,-0.0633390266299357,-0.9144617307496096,-0.03644049219467402,-0.378984949056893,,,0.46862745098039216,1.161764705882353,0.5588235294117647,0.029411764705882353,0.6029411764705882,-0.04411764705882353,0.7887412300095304,0.019580052352615115,0.02969769941143864,0.78291307160701,0.21729144922752575,0.2580822373829824,1.5716543016165405,0.47537368661050816,1.996170012282169,1.5679255137410428,0.22046545573216825,0.20777904280895787,0.0,0.4282444985411262,7.03397508339394,710.0,202.03979999999999,104.0,226.0,5400.391758782984,2796.018697,47.075914477584,204.1229,175.67361111111111,252.628836,6922.46953400825,789.0,213.537,132.0,220.0,5029.5047761766,2964.2250939999994,61.121872929999995,218.32649999999998,108.83333333333334,261.772408,8826.684407807707,1193.0,364.57000000000005,215.0,304.0,9068.202924798044,4436.2342739999995,95.169266703943,371.8622,179.30555555555554,453.42701600000004,13287.195479071723,1428.0,511.771,252.0,310.0,13130.252633912289,5147.853537000001,116.80360685218798,519.891,257.44444444444446,640.524964,16109.438877846815,1354.0,572.004,229.0,262.0,14941.523679756589,4660.033052000001,117.900338834188,579.4126,326.6111111111111,718.703992,15608.084555733863,1037.0,563.715,195.0,186.0,15959.383607349522,3412.2289329999994,103.15903113777199,569.705,259.94444444444446,722.367556,12877.853956960927,741.0,423.86800000000005,144.0,142.0,12408.124107488722,2467.7680600000003,70.426447154621,427.584,199.5,546.8343840000001,8690.33124263292,485.0,259.8659,78.0,91.0,7249.177226072537,1604.165479,37.766484328188,260.4617,168.44444444444446,327.761892,4881.019189416725,210.0,161.97700000000003,34.0,36.0,4730.699211725592,594.4193459999999,19.194270822792,161.46,90.33333333333334,205.138304,2355.140225844251,244.06060606060606,4.006296969696969,0.6299001249827022,22.060606060606066,124.06060606060605,48.23323634144021,1161.0068155151516,7.403583844088728,3.7799878787878773,70.48653198653199,2.427928242424242,1644.109166588621,-1.0018365472911146,-0.39577869605142285,-0.4455862218477579,9.998163452708908,42.05876951331496,5.824538240234676,-1.466558894398549,0.7367440110150094,-0.338414784205693,-5.068615447403325,-0.22038667401285597,129.0863054428675,52.40495867768594,1.6763449035812665,0.2802300144741212,-3.170798898071623,27.10192837465564,-0.04210322896662233,242.52468351790634,0.2282972979664065,1.4985099173553718,11.103611876339148,0.9829235592286499,106.6291746787384,-23.790633608815448,-0.841452892561983,-0.1705761557551096,-13.730027548209364,-47.42699724517907,-8.280421426665075,-111.77394506887052,-0.9915936568582135,-0.7125146005509639,-15.322409703091523,-0.566957223140496,-157.24054070039074,-151.99081726354453,-0.8049307621671246,0.04727691744417338,-8.748393021120293,-66.29384756657484,-21.62298291344756,-731.5467449219466,-4.514671764155405,-0.9922169880624407,5.229440873380266,-0.16605450872359973,-1132.4387953653254,-50.87511478420568,-1.0366547291092745,-0.07734298694729741,0.9430670339761229,-11.753902662993568,-8.379070309900051,-240.0675916657483,-1.190163692592563,-0.9627764921946742,-16.614031731455974,-0.6312613186409541,-285.11918746302644,76.13682277318644,0.45643709825527884,-0.033258821460678996,-3.166207529843894,13.803489439853083,-13.733243475100409,360.623597117539,-0.14868210754548003,0.6363150596877849,1.2355882052851759,0.025157880624426657,246.41013177575667,-26.71349862258952,-0.15161735537190052,0.30512730933607934,-0.5013774104683207,-27.077134986225893,0.22677220874979637,-127.52604253443529,-0.6141124821649261,-0.20964820936639048,-2.9765457606366734,-0.11117242975206656,-184.37946838644694,-65.4416896235078,-1.7555491276400357,-0.41362036736011004,4.012855831037648,-11.98714416896235,12.382951116920747,-302.1166728301194,0.8180664011007593,-1.646814692378328,-23.77600499948985,-0.9474527970615244,-9.853608675479219,0.7333091368382875,0.5779157806138528,0.4489640373543689,0.3214476435039424,0.28169649992121576,0.1705757353903811,0.18077452441967604,0.10095020965589756,0.11840575751291257,0.05638717251636007,0.0736181106204545,0.029979049160895322,0.050730855357784946,0.01667838186428676,0.033116240862449145,0.009548414411561653,8.023370970424718,5.690189462944481,3.5461771014406276,2.1894551692961106,0.3936289832091765,-0.3640158243504342,4.029854059732415,0.9773236066791395,6.023216198650102,0.9880052458352644,14.540763504482602,10.951300533171148,16.01119239027456,11.701787542023494,1.9878147140511415,0.7510532364267661,3.4917212562554663,2.2392345287957074,7.009356766292292,1.1486098356030563,3.7044578552922225,2.4351170457842035,20.895005242500453,14.7017919712715,0.28872714236062985,0.6374377602161212,0.8010062011018667,0.8812730202908421,0.8812730202908421,0.8812730202908421,2.0776950794819076,452.9921961003295,0.0,2.0,1.0,0.0,5.0,3.0,1.0,0.0,1.0,3.518355040479824,1.6752791671255842,0.8107541667322264,0.3865117424898008,0.3865117424898008,0.3865117424898008,112.24438919064659,675.9466662258772,51.507441079670286,20.483232309875063,41.06788413936437,,9.0,237.0,5.41499046939678,9.589074368143644,11.814359458703011,24.94985114346159,5.563451491696996,0.0,12.13273413692322,19.056471336613843,5.316788604006331,5.733667477162185,7.966666666666667,19.75,9.5,0.5,10.25,0.0,0.031372549019607836,-0.75,0.13799216656359503,0.04257964257964253,-0.0954125239839525,0.08058823529411752,0.15428103044496477,0.0,0.576767676767677,0.8372549019607841,0.438775510204082,0.5341880341880345,0.7566666666666666,13.408600910162018,0.33286088999445695,0.5048608899944569,13.30952221731917,3.6939546368679377,4.387398035510701,26.71812312748119,8.081352672378639,0.5597189695550352,0.19665271966527195,0.06276150627615062,0.2510460251046025,0.38461538461538464,0.3678375035947191,-0.585520392214089,-0.07328802825077749,-0.01774304218830573,-0.04879336601784076,0.6321624964052808,1.0062705113562314,0.0480071571143436,0.03049304579867368,0.04791764339791577,-3.4383120059710306,0.8561036532815262,0.7535666445950548,1.7096575296787442,0.8745959922430508,0.46656513118193055,1.141194991688528,0.8611351205172596,1.025135867882573,0.7486858741777932,0.6253454401894986,0.7067870480309971,0.964979965770866,0.7528184752917805,0.40598754385142155,0.54622141748189,1.6318681318681314,0.7759648265754764,1.1238390183297866,0.7635815577935603,1.0862311127874202,0.4354229130123872,0.48861448804604835,0.38609334368026843,1.0134212591053733,0.9708751640710916,0.9776086260741476,1.0136627371079099,1.5800627943485082,1.1376927908437435,1.1127993173691269,0.9724681991178927,1.0855409593402428,0.9681764480336866,1.0060648348761272,0.9995867711303161,1.0364106593474653,1.1744554047414,1.0672985367683423,0.8676957878454645,0.979892447977554,1.1415148270951783,1.1553753080052955,1.1767801888124556,1.20925753904897,1.0813993924910326,1.0065803013756687,1.0486173417680438,1.214478821692875,1.0421612875973776,0.9959249561877618,0.7401988342130881,0.6280729579698651,0.9559677476216139,0.948811317850043,1.0422790861070383,1.0095233542250448,1.007144450329235,0.9613593503349795,0.9888731934852846,1.0337468760951751,0.8531332425049832,0.8636889927948395,0.7928840713525912,0.8820908820908819,0.9324126275762818,0.9613919975239956,0.853909964337754,0.9326443591421487,0.8578834888298764,0.8882492562064561,0.888506422942666,0.9008668961133546,1.170669410053567,1.4807451386594217,1.1827648932104984,0.8288854003139715,1.3050457114941727,0.8959099188991967,1.1609676874430848,0.8838689726625829,1.4562707317598305,1.5832511609339335,1.5192723269255706,0.947727455952251,1.4851292238925713,2.2272783393322415,2.9231621002041113,0.334742180896027,1.2152869114276053,0.5760416304280355,1.4601992213523534,0.5551150486638011,2.1680818403976088,2.0856260460741103,2.16218277116088,0.7850057899148287,5.0,0.0,3.111111111111112,1.625,0.9866666666666667,0.6527777777777778,0.40326530612244904,0.0625,0.06550768455530359,0.0,2979.301020969133,3414.5797015984162,1557.3916608538266,1387.6860488342172,9.450280614940434,0.47083269208454004,5.000779552053687,0.8897614894980634,1.0,0.38461538461538464,1.5260390788786293,3.369114952232869,4.233639952626227,4.657882376868653,4.657882376868653,4.657882376868653,0.2777777777777778,0.0,0.11965811965811969,0.05603448275862069,0.04111111111111111,0.038398692810457526,0.03360544217687075,0.008928571428571428,0.032753842277651796,0.0,0.6082680399991808,13.432098765432098,5.325443786982248,2.56,100.1929638474523,1.0,3.7581923727383977,59.12389519134473,,48.6315250154201,48.10193780190991,47.884208004476434,48.636764068747674,55.52169358380875,48.41664728721041,48.662480959527315,53.09765121519445,-0.003984136490454227,-0.0958835925227513,-0.686586218325429,0.43988364576599864,0.329046811689991,0.1172060744996171,-0.001226026230205712,0.09658498972568644,-0.08689483107680504,-0.06979402140851086,-0.08810174422572634,0.07620518877125113,0.11809659796374469,0.23013513574842023,0.2446840409263281,-0.07905219780219772,0.12015144113336589,-0.00048009998266997555,0.11489043315879459,0.01695982871616666,0.21803785646258292,0.08664047385894097,0.222662246819935,0.03567040879346923,-0.038295079640994746,-0.08251279965543418,-0.1063852165315058,-0.2445054945054944,-0.1501849396329123,-0.06744359180679385,-0.03782164938122592,-0.052617037790369255,-0.07405220841771865,-0.08539954978623804,-0.09173796445598402,-0.037572364911170324,-0.21862798450882076,-0.07053448064817874,0.02634896397098219,-0.13921849427168573,-0.18759679447868705,-0.15738208274647492,-0.22120421560723538,-0.21407712712298824,-0.09215148486689159,0.026045649983255773,-0.024010483822099023,-0.24180772699266118,-0.07091692928403377,-0.0880305064272219,-0.0417725946163635,0.014543446244477138,-0.032232233240497773,-0.05910056560479529,-0.07034625339613002,-0.05468987163298628,-0.08665173764212417,-0.08018831687346863,-0.0884536048299381,-0.05899809645853775,0.13911670548124488,0.05080658650266482,-0.02354601310443797,-0.06400356400356401,0.04961776627629097,-0.1269722854393638,0.13851652634412281,-0.008955687473917846,0.07506958495938719,0.0078171749336573,0.004620834618181758,0.06683595076196051,-0.08599985810067752,-0.029735170153133334,0.38060460126675333,-0.017857142857142894,-0.1714878916881848,0.0036940951412918785,-0.08630357038468721,-0.06517342957596135,-0.04357780986493908,-0.033179594176393754,-0.035977079020485976,-0.08811433282391355,-0.34032778743481495,-0.5561736902058726,-0.8334332320515134,0.23087489433643268,-0.12263725527037692,0.3258504666827223,-0.33027866152833,0.14024492319081247,-0.5529615294581672,-0.42812770417621265,-0.4952931562851841,-0.0076068569977183085,7.613579363891523,10.826936183997189,1.7402021601905782,14.224401221734396,28.908561000353764,33.78109310984118,35.117274928023,35.117274928023,35.117274928023,33.93489020879687,26.654733733597727,3.7479127474468603,3.532243727752284,0.0,7.280156475199145,1768.6546022788505,1580.4072720551442,630.7800161021371,18.0,26.0,35.0,42.0,50.0,49.0,42.0,31.0,26.0,232.121177752,18.0,4.48863636973214,5.351858133476067,6.248042874508429,7.136483208590247,8.038834757787749,8.935771938669784,9.840387995592812,10.741102974755142,11.646608096157623,0.6262626262626263,0.9798787878787878,1.1309868432914887,0.5860360326266579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6565539466521503,0.9662507427213309,1.002736763115496,0.6145499324611884,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,5.733667477162185,0.0,0.0,11.814359458703011,0.0,14.905862972149976,0.0,0.0,0.0,19.056471336613843,30.537828874472233,12.10820789760957,5.41499046939678,156.20049951913512,-248.63853426769953,-31.121423209083236,-7.534501038415137,-20.71987785564163,268.4448887097817,427.30813195817757,20.386017870587047,12.948731271459927,20.34800628372274,0.4444444444444444,0.7593347070461737,0.2504905351644174,52.86428701779395,0.14870294743017407,0.3177260513732334,0.24066529295382655,5.0,0.1111111111111111,0.30252177818982773,0.6678928871365336,0.8392762049220416,0.9233779650550069,0.9233779650550069,0.9233779650550069,1.3532,,0.7857142857142858,0.9427640763145648,0.7967675426718981,0.7835315151617626,-3.20095216504194,0.839810281517748,0.7775155866620465,-1.436638212602909,65.20710000000003,9.589074368143644,0.0,5.316788604006331,0.0,31.601192537865433,5.733667477162185,29.828919765543436,0.0,0.0,3.6109179126442243,0.0,4.948759890378168,0.0,6.520621127558696,0.0,8.19671240721307,0.0,9.9241231661362,20.666666666666668,7.314801587301588,0.0,0.0,0.0,0.0,0.0,1.6032380112538847,0.0,32.336,0.0,23.290554978164103,0.0,0.0,0.0,0.0,0.0,-0.3791282963802798,37.322565828619126,11.050456081168516,5.687386274683562,0.0,11.814359458703011,15.004064837540422,0.0,31.749653560165648,24.26546827384644,0.0,0.0,0.0,19.339189076679713,21.666280239520958,21.36627569226852,118.24779038268954,,97.17061305605029,96.09296218307693,95.67467865099147,97.18134795924104,112.17313499057353,96.7344933648305,97.23348949709438,106.7023512113076,21.36627569226852,118.24779038268954,,96.49900628553269,95.29886642700825,95.02850798662082,96.51155331268554,114.24433933265951,96.0214269491854,96.56829934301865,107.6319406429918,4.947872115217497,85.00682257150176,,70.33448457502314,69.62005783291657,69.27929099971108,70.34142471218034,78.28468513275868,70.0417922126809,70.37661891479385,75.59536770567492,1.2568397466040306,6.9557523754523265,,5.715918415061782,5.652527187239819,5.627922273587734,5.716549879955355,6.598419705327855,5.690264315578265,5.719617029240846,6.2766088947828,2.4739360576087486,59.12389519134473,,48.6315250154201,48.10193780190991,47.884208004476434,48.636764068747674,55.52169358380875,48.41664728721041,48.662480959527315,53.09765121519445,31.886274509803922,0.0,1.964021164021164,0.0,0.0,5.642841448307718,0.0,33.090313182811364,1.6369768046107327,2.4250970804988663,0.0,0.0,0.0,0.0,-0.5817361111111112,0.0,0.0,20.280147771219216,322.4479814693133,50.35928960299477,111.18079342368468,139.71011843666548,153.71011843666554,153.71011843666554,153.71011843666554,354.0,107.42772634926999,102.1974067596037,50.20113450393036,72.19,72.19,0.8,7.08783474082532,5.169925001442312,3.633253986663839,4.054371889143005,,4.06359764667764,4.064759304990531,4.065582941854629,4.063587080473671,4.046924739363739,4.064093774594976,4.063526234737348,4.05343629665913,0.2137208227449317,0.2384924640672356,,0.23903515568692,0.23910348852885477,0.23915193775615465,0.23903453414551007,0.23805439643316112,0.23906433968205743,0.2390309549845499,0.2384374292152429,1.8207569128578063,1.930424028763077,,1.9326969521747142,1.9329827807444255,1.9331853889107016,1.9326943519621378,1.9285855201345332,1.9328190355295654,1.9326793784447363,1.9301932407457514,182.50999999999962,90.94559431570664,81.61250356849126,,80.7842372350705,80.71113226020942,80.728283089818,80.78509762594223,82.19970084922596,80.75648680739837,80.78833736676997,81.622582541556,5.349740842100391,4.800735504028898,,4.752013955004148,4.7477136623652605,4.748722534695177,4.752064566231896,4.8352765205427035,4.750381576905787,4.752255139221763,4.8013283847974115,5.040889714124113,4.932610731299734,,4.92241011383354,4.921504763047533,4.921717236929899,4.9224207642564375,4.9397799138138625,4.922066541918661,4.922460866651096,4.932734221577685,0.0,23.290554978164103,2.4250970804988663,6.664343348450491,-0.3791282963802798,7.314801587301588,1.6369768046107327,1.964021164021164,0.0,224.18302932211495,66.32982175985387,-105.58320691277612,-13.215568840857575,-3.1994911185689734,-8.798600576064679,113.99388398423365,181.45442758875356,8.656828473097073,5.498619017841017,8.640687028035883,484.0,29.0,1.4501893767092926,0.729534893451594,0.08333333333333333,0.0625,0.4587486531290936,0.16219214174388868,0.10059223176554563,0.03359109241032905,0.0,0.0,0.0,0.0,0.0,0.0,0.1422588984322123,0.059027777777777776,0.3185384877364132,0.09316400143244954,12.466255326250886,9.824568270435499,8.08135267237864,5.7860575830709635,7.32410899795161,4.434969120149908,6.3271083546886615,3.5332573379564147,4.973041815542328,2.368261245687123,3.6809055310227246,1.4989524580447662,2.4858119125314624,0.8172407113500512,1.390882116222864,0.4010334052855894,3.6752079100486417,1.777384124008792,5.885683906209373,2.4838721404923234,8.69535700153673,3.0012232232981733,56.7514637742932,32.40739076628903,23.013936795814562,20.177628059544734,20.177628059544734,20.177628059544734,88.0,105.0,36.18268799999998,17.787311999999996,0.36363636363636365,52.04,6.506944444444445,3.8333333333333335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,6.0,6.0,33.0,0.0,0.0,34.0,6.0,2.0,5.0,29.0,8.0,18.0,26.0,0.0,0.0,0.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,3.0,2.0,1.0,17.0,4.0,0.0,2.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,3.1780538303479458,4.937168142214383,3.7013019741124933,4.162781723775329,4.598900572974496,5.01271646030008,5.104429173382616,5.211874010022416,5.125079428487124,5.044231243524771 +119057475,O=c1ccc2ccc(F)c3c2n1C[C@H]3CN1CCC(NCc2cc3c(nn2)OCCO3)CC1,0,23.864406779661017,6.381771186440678,3.593220338983051,8.474576271186441,165.54290898454195,94.89118881609781,1.470905025865661,6.431342372881355,4.436911487758945,7.842640271186438,220.5994949130803,26.1875,6.4949828125,4.359375,7.796875,148.42362848662196,100.21764659117504,1.7866542195312507,6.6290796875,3.010416666666667,7.869262187499996,267.03326309988563,21.779661016949152,6.442957627118644,3.889830508474576,6.135593220338983,156.93065616614618,81.44231303957969,1.529829080318991,6.537205084745761,2.9206685499058382,7.883857796610167,223.58282608203453,17.685185185185187,6.260129012345681,3.259259259259259,4.6234567901234565,161.3693562744465,64.3615382156247,1.332974288445833,6.33449938271605,2.7913237311385455,7.762737185185185,186.46459127273684,15.180232558139535,6.129149418604651,2.872093023255814,3.5988372093023258,164.20514039872342,53.9247785231349,1.236045355034983,6.195192441860465,2.6396963824289403,7.659047651162788,166.6938076020502,13.58433734939759,5.9879156626506,2.6867469879518073,2.933734939759036,164.35623818667716,47.52844213852529,1.168758162987711,6.054525903614458,2.519076305220883,7.549632674698796,153.34323516665182,14.225165562913908,6.114596026490066,2.7086092715231787,3.0993377483443707,166.9931541040802,50.264266786278135,1.1416159868636628,6.166496026490067,2.87821927888153,7.667898145695363,152.67986014855794,14.544776119402986,6.178521641791045,2.8208955223880596,2.6641791044776117,166.3882638812043,50.84566707312237,1.2037963362255593,6.236970895522387,2.616500829187397,7.7152838208955234,162.668709092608,13.8515625,6.178592187499999,2.7265625,2.5703125,164.57175853056938,47.415784347949995,1.1790812430455389,6.23674375,2.6660156250000004,7.736140562500003,157.20699714525233,7.59207124389543,0.1613970123527721,0.020568442505594964,0.6044240160873313,4.33783395575984,1.8962976333864514,36.32916063586931,0.22410121436726282,0.14739810399310538,1.5641737687126938,0.09462648664176959,48.369448235726416,0.6081406205113472,0.00301548764722784,-0.00790045746466722,0.16278996696351627,1.2556512137316862,-0.2694152605703732,2.8337336137697546,-0.016503403037598556,0.005067123761131987,0.02598630661687258,-0.000998195328210318,-0.11134431183374283,-0.03073829359379479,-0.009068945705257075,-0.003349801918057361,-0.007325481183567973,0.20626256822752098,-0.1077717395664547,-0.08324887485596333,0.001332425168534804,-0.007189342143062236,0.05750662325640779,-0.005785535765584636,0.7672017474587793,-0.10650941087597228,0.00031109603810456775,0.001514922972645753,-0.037569025503527094,0.04707920598948079,-0.09163749606908035,-0.5010546857204422,-0.0046155575033119105,0.00021232705941603928,0.033525075768949926,0.0010847667585233392,-1.0461849340861835,-0.3261075071985464,0.0008429166972869214,0.00027244463229313365,-0.05929197036403602,-0.045263991234809564,0.09139398778693976,-1.5450646646469757,-0.008811131748797447,-0.00010796800571878167,-0.06994666320750445,0.0007660805635910782,-2.28986082331067,0.06414684881438977,0.004786058915351112,-0.00013316300475623856,-0.03162434281798265,-0.011409614326308493,-0.1492427615473355,0.20431377523682268,-0.016991764916301666,0.004510197007507095,-0.023065834149583117,0.0023419381080772876,-2.458506779071518,0.20319197307616935,0.0066774628969752375,0.0010014038601419864,-0.0271426152567105,-0.25297594700464776,-0.0962098290754904,1.0535979440540084,0.0025175409614513504,0.006354427155171541,0.17607017935480299,0.004324318611345242,0.8146931578629335,-1.0025190050894621,-0.028448416349736508,-0.0010448813047574624,-0.07343489390164945,-1.1828883448314307,0.12882227079729214,-4.826343122931893,0.00040050367714505625,-0.026265331415316402,-0.236370693692316,-0.014848647026287682,-1.7553691830854097,-1.6745659472852628,-0.029674925488365395,-0.00025907570630050115,-0.06536151608733123,-1.2696400998276356,0.04773731477219409,-8.04250804646516,-0.019272681397367347,-0.029269343399885073,-0.31841473504979406,-0.01568951206549841,-7.245089610615573,,,0.4632034632034633,1.196969696969697,0.5,0.030303030303030304,0.696969696969697,-0.19696969696969696,0.9458962135859443,0.00791557216312875,0.023551935799492385,0.8916903740781311,0.22840953783824242,0.2610753009796317,1.8375865876640753,0.48948483881787413,2.1091606180084974,1.5523315861252898,0.32425385482891883,0.1782029881219542,0.05437218893233446,0.5568290318832075,7.647490981559335,1408.0,376.5245,212.0,500.0,9767.031630087975,5598.580140149771,86.783396526074,379.44919999999996,261.7777777777777,462.71577599999983,13015.370199871737,1676.0,415.6789,279.0,499.0,9499.112223143806,6413.929381835203,114.34587005000004,424.2611,192.66666666666669,503.63277999999974,17090.12883839268,2570.0,760.269,459.0,724.0,18517.81742760525,9610.192938670403,180.51983147764093,771.3901999999998,344.6388888888889,930.2952199999997,26382.773477680075,2865.0,1014.1409000000003,528.0,749.0,26141.83571646033,10426.569190931203,215.94183472822496,1026.1889,452.1944444444444,1257.563424,30207.26378618337,2611.0,1054.2137,494.0,619.0,28243.284148580427,9275.061905979202,212.59980106601708,1065.5731,454.0277777777777,1317.3561959999995,28671.33490755264,2255.0,993.9939999999997,446.0,487.0,27283.13553898841,7889.721394995198,194.01385505596005,1005.0513,418.1666666666666,1253.2390240000002,25454.9770376642,2148.0,923.304,409.0,468.0,25215.966269716107,7589.904284727998,172.3840140164131,931.1409000000001,434.61111111111103,1157.85262,23054.658882432246,1949.0,827.9219,378.0,357.0,22296.027360081374,6813.319387798398,161.30870905422495,835.7540999999999,350.6111111111112,1033.848032,21797.60701840947,1773.0,790.8597999999998,349.0,329.0,21065.18509191288,6069.220396537599,150.92239910982897,798.3032,341.25000000000006,990.2259920000004,20122.4956345923,447.93220338983036,9.522423728813553,1.2135381078301029,35.66101694915255,255.93220338983053,111.88156036980064,2143.4204775162893,13.221971647668507,8.696488135593217,92.28625235404893,5.582962711864406,2853.7974459078587,38.92099971272622,0.19299120942258177,-0.505629277738702,10.418557885665042,80.36167767882792,-17.242576676503884,181.3589512812643,-1.0562177944063076,0.32429592071244717,1.6631236234798452,-0.06388450100546035,-7.126035957359541,-3.627118644067785,-1.070135593220335,-0.3952766263307686,-0.8644067796610209,24.338983050847474,-12.717065268841655,-9.823367233003673,0.1572261698871069,-0.8483423728813438,6.785781544256119,-0.682693220338987,90.52980620013597,-17.25452456190751,0.05039755817293998,0.24541752156861196,-6.086182131571389,7.626831370295887,-14.845274363191017,-81.17085908671163,-0.7477203155365295,0.034396983625398364,5.4310622745698875,0.17573221488078095,-169.48195932196174,-56.09049123814998,0.1449816719333505,0.046860476754418984,-10.198218902614196,-7.785406492387245,15.71976589935364,-265.75112231927983,-1.515514660793161,-0.018570496983630447,-12.030826071690765,0.13176585693766546,-393.8560616094352,10.648376903188701,0.7944857799482845,-0.0221050587895356,-5.249640907785119,-1.8939959781672098,-24.774298416857697,33.916086689312564,-2.8206329761060767,0.7486927032461779,-3.8289284688307976,0.38876172594082975,-408.11212532587194,30.68198793450157,1.008296897443261,0.15121198288143994,-4.098534903763285,-38.19936799770181,-14.52768419039905,159.09328955215528,0.3801486851791539,0.9595185004309026,26.58659708257525,0.6529721103131316,123.01866683730296,-134.33754668198793,-3.812087790864692,-0.14001409483749996,-9.840275782821026,-158.5070382074117,17.262184286837147,-646.7299784728737,0.05366749273743754,-3.519554409652398,-31.673672954770343,-1.9897187015225493,-235.2194705334449,-214.34444125251363,-3.7983904625107705,-0.03316169040646415,-8.366274059178398,-162.51393277793736,6.110376290840843,-1029.4410299475405,-2.4669032188630204,-3.7464759551852893,-40.75708608637364,-2.0082575443837967,-927.3714701587934,0.6776736991763609,0.5544538376183926,0.42507893897341703,0.3040581811295913,0.27031242176150466,0.16428689061939122,0.1715562717501537,0.0901709524506081,0.1066756838776361,0.049424053687674295,0.06939117654780329,0.0274362518276797,0.0451003513416917,0.015374211907450088,0.028772318685648078,0.008960554539230349,9.004072200561865,5.670148185892264,4.107728159820092,2.1673568175228546,0.4629372552530921,-0.5147574759882145,3.311821270635131,0.9778010592992415,7.004066024792371,1.8877331071894445,17.424773891192945,10.933218113467175,19.000143193163538,11.683224419677565,2.0145765320688986,0.5458506077634595,3.988682457426704,2.2164672676100228,8.001920455290612,1.227268694132755,4.00996746040449,2.4119335118651875,20.914750755211344,13.304118236730998,0.27047791689843637,0.6082487391551211,0.7896870964923611,0.8600383086797198,0.8710265476216262,0.8710265476216262,0.9641276923324383,1254.8136530631218,0.0,2.0,7.0,0.0,9.0,3.0,2.0,1.0,0.0,4.213814587552143,2.1297939465528963,1.010332889397235,0.5762711864406782,0.5084745762711869,0.5084745762711869,224.4135841890549,1955.2061599251915,78.71410240255781,33.13908745635918,69.8573652079891,,17.0,1040.0,0.0,9.184952231746642,17.294393782259295,49.538069231415214,49.07276539051926,6.06636706846161,22.766200853176187,6.06636706846161,20.414061951458883,9.473725907600098,15.285714285714288,39.5,16.5,1.0,23.0,0.0,0.036796536796536716,-6.5,0.16718176129716777,0.05332332980936494,-0.11385843148780284,0.016590272472625345,0.17792785571142244,0.0,0.6154963680387401,0.8640692640692637,0.4483146067415723,0.5621730382293751,0.8474789915966383,31.21457504833616,0.26121388138324875,0.7772138813832488,29.425782344578327,7.537514748662,8.615484932327847,60.64035739291449,16.152999680989847,0.5360721442885775,0.040498442367601244,0.0,0.37943925233644854,0.4583333333333333,0.34041738167217356,-0.9466092061520243,-0.06858391881825433,-0.016044223833085156,-0.055682894479530835,0.6595826183278267,1.8341219113430909,0.0433647638438667,0.031086812056662555,0.04366956931769264,-5.658484889290935,0.7081149727561679,0.657430278864518,1.4158996578361245,0.762387119771863,0.467408940397351,1.2575269216202338,0.7111184800632548,1.151600856990926,0.6343446028427997,0.5072297191300712,0.7026349431214458,0.9847363399285622,0.8921219918268506,0.9022564045971775,1.3574890325495776,1.1577946768060834,0.8642384105960265,1.086438448326901,0.8874590339398132,0.9932614086000646,0.8888729290296026,0.5614592686311325,0.9221476477467161,0.939124668330197,0.9591398572781957,0.888348243679312,0.936174988371138,1.1093830681124723,0.9302714414193443,1.0286240449239168,0.9579641425579115,1.006459391376264,0.8908225546896953,0.7544014736514331,0.8751992875163935,0.999213669809891,1.0091461751278596,0.8807757969705678,0.7180737799322621,1.0827079096294985,0.9302063760973356,0.9520568667025173,1.0116560440224551,1.0206666140873992,0.8936262273404243,1.007525815405672,0.8356560150721516,1.0416408676586533,0.9719091288720801,0.8462992943217615,0.6190348656562638,1.0189655962252049,0.9174116332881193,1.0683166152435448,0.9807601196907106,1.0811713591512147,0.8575590158866114,0.9793171543409788,0.8006005791914463,1.0773698083797454,0.9792754423614531,0.9045369489174628,0.7288443094608238,1.0232480547931406,1.0415630893381869,1.0002983924869224,0.9779136095340585,0.9415015014403739,0.9113016331987439,0.8957795579331006,0.863403588473075,0.9693113581655142,1.1281524683228328,1.212915911185817,0.8923998508009253,1.1045130809829178,1.2582623307304537,1.0147685341862098,1.1337906420024069,0.970855319118136,1.210540888858905,1.2422367744576444,1.1476488572103893,1.01545002949852,1.2235215136408357,1.2336090865139022,1.024350377913213,1.0419290636882128,1.2782926324503312,0.9542072326008806,1.224403800663129,1.0707650736787202,1.245773705555798,1.364023775482614,1.2289385601070508,1.1341089613565585,6.0,0.11407407407407408,3.555555555555557,2.0069444444444446,2.271666666666667,0.9344444444444445,0.6220861678004536,0.4279691043083901,0.2527321113630637,0.19375000000000003,6806.620150651817,7604.731409297454,3349.484209965801,3089.515345375555,19.507598854938742,0.48733596586252664,10.000844325308451,0.9505951918051757,1.0,0.4583333333333333,1.6688284618096985,3.7528491028089452,4.872310159964607,5.306371862921163,5.374168473090655,5.374168473090655,0.15789473684210523,0.004959742351046699,0.06464646464646467,0.03520955165692008,0.04636054421768708,0.022791327913279136,0.015950927379498808,0.011888030675233056,0.008152648753647216,0.007750000000000001,0.375603974435882,23.401662049861496,10.16595041322314,4.8574801821555065,189.868244468706,1.0,4.4611232680187545,230.7110828554069,,190.28655035186063,185.8200765815654,183.94476245339655,190.25938580913336,267.2732061223556,188.46122382473638,190.58188413098637,238.89241497499575,0.08010206977448163,0.018683664606112812,-0.3841057708923834,0.2693307390684411,0.28946502483443703,-0.14207435363890913,0.07800162635664888,-0.07364263100579345,0.03437712985350887,0.016613439719206625,-0.010548794144595232,-0.002301955384959347,-0.004048736188890559,-0.056190294808151145,-0.16286123352053314,-0.012119771863117924,0.04754966887417222,-0.05683271321390275,-0.0022915166053621453,0.005945640108630521,-0.04877499742736529,0.03676485593012816,-0.06114076482081721,0.01586128797086654,-0.014029032059151642,0.0019275204266147898,0.0736527800893854,-0.06215673848753698,0.010853160003270372,-0.04832442674382925,-0.01379207988707919,-0.020595861188631565,0.001440500614756693,0.021433089110387573,0.011463669391319306,-0.021629044205500266,-0.042953694284779034,0.005222628876453572,0.013245758993128628,-0.09809664868688658,-0.010434698906514708,0.0481960142637136,-0.0425295998477176,-0.03931764392118616,-0.0007324925002008977,-0.04471796203632169,0.008095836491227377,-0.04734105735817229,0.008449189523342322,0.02965394988161259,-0.0064741413804188614,-0.052321453112831554,-0.002630256123833103,-0.07870218204133621,0.005623960797902252,-0.07582183329205493,0.030598745067426797,-0.014746337402503668,0.02474928734217128,-0.05082767880853408,0.02676370736635938,0.041372902754730254,0.04868642143757786,-0.044906579709415036,-0.05831849480285952,-0.050735616277533764,0.029001439218877705,0.011233946092436338,0.04311064378052497,0.11256433452384754,0.045698818214776886,0.016843135234715964,-0.13204815561966168,-0.17626358713230475,-0.050800215158402835,-0.12149565858918333,-0.2726910151230602,0.06793357146538141,-0.1328503890113729,0.001787155318528085,-0.1781931429494166,-0.15111536737177722,-0.15691850720930456,-0.03629086638596111,-0.22056773355910406,-0.18386291701300944,-0.012595786298842422,-0.10813851592205323,-0.2926898799668874,0.025173956836587782,-0.22137885670070928,-0.08599989719726722,-0.19857340499613318,-0.2035673666307853,-0.16580465599335503,-0.14978648454509844,16.129976508514137,27.909088252800053,9.114220708147991,16.482485904398224,37.518730887175394,42.880009906351496,43.690527153779165,43.758866136830015,43.758866136830015,69.60230039428042,51.22694234213456,10.700377209354322,5.880698608024488,1.7942822347670373,18.37535805214585,15239.696159760011,14691.959741577684,1240.524113429161,257.0,55.0,77.0,107.0,146.0,161.0,186.0,224.0,246.0,451.2019679120007,38.0,5.231108616854587,6.111467339502679,7.01301578963963,7.910957382845589,8.818630229100354,9.724659884996429,10.63660036103912,11.54780020960665,12.463335458152937,0.6723163841807909,0.997627118644068,1.1360659596479428,0.637131221803742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6686249670151223,0.9830508474576272,1.0136654856987668,0.6377039193837176,5.0,2.0,0.0,0.0,0.0,2.0,5.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,9.0,1.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,24.25752389024826,19.030984770071733,5.749511833283905,0.0,11.439255231487378,4.794537184071822,4.39041504767482,5.098681808301038,5.098681808301038,0.0,49.51648147752679,49.290201721667295,11.210628712464722,239.35653375598545,-665.5861615910387,-48.22318119921413,-11.28112138289896,-39.15212715241404,463.77011794504034,1289.6199983341528,30.49092120334369,21.857966073460215,30.705238055575066,0.47058823529411764,0.7976138086354776,0.17415097399091714,103.26332428895333,0.0992556249395748,84.73001365020727,0.2023861913645225,9.0,0.13157894736842105,0.2836868475286352,0.6379528846673878,0.828251879143536,0.9020387295973715,0.9135635849388573,0.9135635849388573,2.0531999999999995,,1.797619047619048,2.175725521796865,1.9993536784396844,1.8280866026244902,-7.835996551790101,1.941380325741314,1.76029936621724,-3.3402662406919283,120.23070000000004,13.864140955274918,0.0,24.98116159925024,0.0,37.89090293298652,32.84803314676356,57.76023974902323,0.0,11.629500169719275,4.343805421853684,0.0,5.6937321388027,2.3978952727983707,7.246368080102461,4.844187086458591,8.894121641382213,7.095893221097532,10.59355499556915,39.666666666666664,8.549894192110981,8.320645944717707,0.0,0.0,0.0,1.6974434716068596,2.4370694688369294,1.7371942637159972,58.86000000000001,0.0,12.352158477925402,0.0,0.0,0.0,0.0,0.0,0.0,67.02789161922863,20.349781406658437,4.39041504767482,11.629500169719275,58.55424697115542,13.08951281182515,5.817220841045895,30.01692877855887,35.126372526379875,0.0,10.902924932081056,0.0,37.59074208642078,39.448873053892214,44.6951729555281,461.42216571081394,,380.4641540947746,371.50829101029456,367.79031943842233,380.4079784908349,536.502581571375,376.8047882357915,381.05708345189896,478.40797238746666,44.6951729555281,461.42216571081394,,378.89847444058285,369.7313560541203,366.2121761391119,378.81201205559023,542.3824087965014,375.1528991310146,379.51962651088456,481.1250961906835,4.989655375317818,364.05800735219395,,308.2829800879401,301.08801861759855,297.11746043112,308.2793612408277,426.66540610306345,305.3061861989413,308.7424717985508,385.2819752606661,1.3543991804705484,13.982489870024665,,11.529216790750745,11.257827000311956,11.145161195103707,11.52751449972227,16.257653987011363,11.418326916236106,11.54718434702724,14.497211284468687,2.5597751218867515,230.7110828554069,,190.28655035186063,185.8200765815654,183.94476245339655,190.25938580913336,267.2732061223556,188.46122382473638,190.58188413098637,238.89241497499575,58.0,0.0,0.0,0.0,14.746609712374601,0.0,0.0,59.806263656227244,6.84915154825263,3.5746655695361502,11.008164870998074,0.0,0.38991813180822044,2.3907901374252383,0.0,0.0,0.0,37.62453124363934,560.8235266163659,98.46087924677221,221.41809706572778,287.4662994379118,313.07593991234864,317.07593991234864,317.07593991234864,1530.0,150.45757527173797,142.3031250846597,84.1095578580647,81.51,81.51,0.8888888888888888,9.137556702834472,6.247927513443585,3.9386023752849746,5.670536423653277,,5.687887856437838,5.688532333236224,5.6850465833318236,5.687922838647882,5.6613094681591605,5.688005931987489,5.687837932604283,5.677285547654154,0.11935158712984771,0.17183443708040233,,0.17236023807387388,0.17237976767382496,0.17227413888884313,0.17236129814084492,0.17155483236845942,0.172363816120833,0.1723587252304328,0.17203895598951982,2.5647484017667104,2.92920618908336,,2.9322614449628825,2.9323747454191476,2.93176178971908,2.9322675952428026,2.92757768872757,2.932282203867959,2.932252667706032,2.930395690436787,318.7300000000012,5880.911733426756,229.13060779302853,,226.61861484351357,226.5195710604849,226.96228906475864,226.5964812587269,230.34275422207608,226.59502596911227,226.63415109991521,228.19954772223485,178.20944646747745,6.9433517513038945,,6.867230752833745,6.8642294260753,6.877645123174504,6.8665600381432395,6.980083461275033,6.8665159384579475,6.867701548482279,6.915137809764692,9.87338955405029,6.628214649152347,,6.617190962163273,6.616753816110759,6.618706344685117,6.6170932885200315,6.633490903844436,6.617086866115413,6.617259516654609,6.6241429239625775,27.491968847088675,14.74294861535064,12.824614984204327,2.244103105324853,0.9086023538424173,8.938610545936461,2.008491591080877,4.840659957171753,0.0,383.1517218488108,168.29795814260956,-467.9913692180448,-33.907003930975286,-7.932057105390589,-27.52890407164969,326.089130189686,906.766191395375,21.438979332986854,15.368918498226694,21.589671223699405,3694.0,57.0,2.1087486088636695,1.0403650802306141,0.0,0.0,0.4516348676409091,0.13576066421611424,0.0,0.0,0.0,0.0,0.0,0.0,0.07856742013183861,0.04564354645876384,0.5374574785652648,0.24002422655223676,1.1311164959637041,0.37108703655819103,22.36323207281991,18.296976641406957,16.152999680989847,11.55421088292447,14.867183196882758,9.035778984066518,13.209832924761834,6.943163338696824,11.414298174907062,5.28837374458115,10.13111177597928,4.0056927668412365,7.261156566012364,2.475248117099464,5.351651275530543,1.6666631442968447,5.259824857975954,2.239559405099214,8.800854813151506,3.31390487516392,14.651875633505819,4.624382188934179,106.26195477943821,46.86691188263788,30.878399731997767,27.666499779762706,27.27563292561195,27.27563292561195,186.0,225.0,65.879618,36.66638200000001,0.5254237288135594,388.09,8.083333333333334,7.027777777777777,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0,16.0,17.0,59.0,0.0,2.0,64.0,17.0,1.0,8.0,56.0,18.0,38.0,46.0,0.0,0.0,0.0,24.0,0.0,1.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,8.0,1.0,5.0,33.0,9.0,0.0,5.0,3.0,0.0,6.0,5.0,0.0,0.0,1.0,2.0,3.0,3.8815637979434374,7.737118721240311,4.51085950651685,5.126935749792416,5.741800541843722,6.358600211430964,6.680109419974416,7.01211529430638,7.430896935595648,7.692282697115836 +60164,COc1ccc(-c2ccc3cc(C(=O)O)ccc3c2)cc1C12CC3CC(CC(C3)C1)C2,0,20.8135593220339,5.885932203389832,3.559322033898305,6.338983050847458,157.36084889163513,81.96185055932204,1.5672537853520676,5.984589830508473,3.5231873822975524,7.445874372881353,226.74560040576864,23.65625,6.1125,4.359375,6.296875,140.47321521069463,89.50197181250005,1.9562910055625005,6.284468750000001,2.739366319444444,7.548113749999996,280.3650177642389,20.176470588235293,5.9866386554621815,4.084033613445378,4.974789915966387,145.55232422974782,74.9993624789916,1.7559301531230347,6.134710924369744,2.653361344537815,7.474870554621847,244.49792030046947,15.619318181818182,5.788579545454546,3.340909090909091,3.4545454545454546,149.80980073718712,55.535373573863644,1.5120854587149375,5.9196874999999975,2.2703598484848477,7.33287352272727,199.58211743106529,12.541871921182265,5.666206896551723,2.8029556650246303,2.6502463054187193,157.40273693846675,43.60498294581281,1.2674284866874088,5.764724137931032,2.15024630541872,7.279498758620688,161.98694311172665,13.770114942528735,5.771264367816091,2.8908045977011496,3.0114942528735633,155.86356256934118,48.40165581609199,1.3286772198963226,5.873563218390802,2.27713920817369,7.365373057471265,173.62889072253537,13.963190184049079,5.774907975460123,2.8404907975460123,2.852760736196319,154.93551899754183,49.04678125766872,1.3387431851832265,5.881153374233128,2.3483299250170404,7.360982061349693,174.8606266178417,12.347826086956522,5.747329192546582,2.658385093167702,2.3229813664596275,157.4621708138942,42.171352981366454,1.2719329245109439,5.841236024844719,2.205314009661835,7.360595428571428,162.43236968142423,11.650684931506849,5.580684931506848,2.6301369863013697,2.287671232876712,156.35661857502572,39.6021328219178,1.2675436508589923,5.686068493150687,1.984208523592084,7.193591452054794,157.68141284940964,6.9095087618500415,0.08518241884515942,0.014565296012336195,0.6865843148520541,3.3501867279517388,1.3654256206514583,33.0735495420856,0.24529154084485263,0.08380775639184136,1.087295317437518,0.05245251824188451,53.54873618261649,0.38869039069233036,-0.0011728849468542705,-0.007332587565071999,0.21410424446998005,0.9387433567940251,0.1136483987891784,1.9078499865160923,0.020638655285388913,-0.0003651716460785245,-0.019061001288742083,-0.0013645584961218152,4.315463988470083,0.20785343726689207,0.006102298431581812,0.000603278411688756,-0.050777449733125014,0.1476056093221546,0.12809509036915545,1.0108389784955105,0.02073285872733525,0.004859869302504232,0.24638617775943092,0.005226802082855541,2.998245978844119,-0.7732414274894883,-0.0014545683058682203,0.00017699044500362512,-0.055613590660990815,-0.010240657073463765,-0.20834384690464616,-3.7676174905640334,-0.03761755822238506,-0.0024642856676503444,0.07873334845873271,-8.221354234676084e-05,-7.869576067328305,0.38096464551407133,0.0023804099099544933,-0.0004631116662257564,-0.03525259572372471,0.10343270930300029,0.023085654599213135,1.8150561130868048,0.005544797198602658,0.0030610922346926916,0.025667143019097997,0.0005518020386531879,2.1387591634349232,0.029513252566477532,-0.0025056216505364164,-1.6937081308260696e-05,-0.03228858136286642,-0.040621171746789676,0.012756207769221563,0.15967025608310464,0.0026114267789361894,-0.0020187051547481205,-0.012525851887806926,-0.001959780271886462,0.6413452383139527,-0.13317518589080427,0.00020387625726334856,0.0010459819913184532,-0.026607191008859686,-0.12974376236995572,-0.10861498823009794,-0.6807537340373592,-0.01818298824917976,0.00039659007795163917,0.02541813559126211,-0.00038416761279020203,-2.8423026456342146,-0.5909489134449479,-0.011103042068656654,-0.0014440577626919778,-0.016829603829841153,-0.32565783017302447,0.05005306288369177,-2.740511665467018,0.0063094620905572,-0.01130823012591871,-0.08381249468424565,-0.005816488344000525,-0.9029345130533099,-0.16386214007154307,0.0038668033512649276,0.00016318691180096042,0.00020463337176767021,0.2084387654311272,-0.13759403852546645,-0.8588745856193912,-0.023579829333068677,0.003453306993345371,0.025635344533949726,0.002326950994242732,-3.9224652331991665,,,0.4838709677419355,1.1935483870967742,0.5806451612903226,0.016129032258064516,0.6129032258064516,-0.03225806451612903,1.0392131268701212,0.012525006867559429,0.0319443617062691,0.8513469204938329,0.2035228805752642,0.28118480811759883,1.890560047363954,0.484707688692863,2.110028088531651,1.9378048638093763,0.0,0.17222322472227466,0.0,0.17222322472227466,6.986505843322047,1228.0,347.27000000000004,210.0,374.0,9284.290084606473,4835.749183000001,92.46797333577199,353.09079999999994,207.8680555555556,439.30658799999986,13377.99042394035,1514.0,391.2,279.0,403.0,8990.285773484457,5728.126196000003,125.20262435600003,402.2060000000001,175.31944444444443,483.07927999999976,17943.36113691129,2401.0,712.4099999999996,486.0,592.0,17320.72658333999,8924.924135000001,208.95568822164114,730.0305999999996,315.75,889.5095959999999,29095.252515755867,2749.0,1018.7900000000001,588.0,608.0,26366.524929744934,9774.225749000001,266.127040733829,1041.8649999999996,399.5833333333332,1290.5857399999995,35126.45266786749,2546.0,1150.2399999999998,569.0,538.0,31952.75559850875,8851.811538,257.287982797544,1170.2389999999996,436.50000000000017,1477.7382479999997,32883.34945168051,2396.0,1004.1999999999998,503.0,524.0,27120.259887065364,8421.888112000006,231.18983626196012,1021.9999999999995,396.22222222222206,1281.574912,30211.426985721155,2276.0,941.3100000000001,463.0,465.0,25254.48959659932,7994.625345000001,218.21513918486593,958.6279999999999,382.7777777777776,1199.840076,28502.282138708193,1988.0,925.3199999999997,428.0,374.0,25351.409501036967,6789.587829999999,204.78120084626195,940.4389999999997,355.05555555555543,1185.055864,26151.611518709302,1701.0,814.7799999999999,384.0,334.0,22828.066311953757,5781.911391999998,185.06137302541288,830.1660000000003,289.6944444444443,1050.264352,23021.486276013806,407.66101694915244,5.025762711864406,0.8593524647278354,40.50847457627119,197.66101694915258,80.56011161843604,1951.3394229830506,14.472200909846306,4.94465762711864,64.15042372881356,3.094698576271186,3159.375434774373,24.876185004309143,-0.07506463659867331,-0.46928560416460796,13.702671646078723,60.079574834817606,7.273497522507418,122.1023991370299,1.3208739382648904,-0.02337098534902557,-1.2199040824794933,-0.08733174375179617,276.1896952620853,24.734559034760156,0.7261735133582357,0.07179013099096196,-6.042516518241877,17.565067509336398,15.243315753929497,120.28983844096575,2.4672101885528948,0.5783244469980036,29.31995515337228,0.6219894478598094,356.79127148245016,-136.09049123814995,-0.2560040218328068,0.03115031832063802,-9.787991956334384,-1.8023556449296227,-36.66851705521773,-663.1006783392698,-6.62069024713977,-0.43371427750646063,13.857069328736957,-0.014469583453029906,-1385.0453878497817,77.33582303935648,0.4832232117207621,-0.09401166824382855,-7.156276931916116,20.99683998850906,4.686387883640267,368.45639095662136,1.1255938313163396,0.6214017236426164,5.210430032876894,0.11201581384659715,434.1681101772894,5.13530594656709,-0.4359781671933365,-0.002947052147637361,-5.618213157138757,-7.068083883941403,2.219580151844552,27.78262455846021,0.454388259534897,-0.35125469692617295,-2.1794982284784052,-0.3410017673082444,111.59407146662778,-21.707555300201093,0.033231829933925816,0.17049506458490787,-4.336972134444129,-21.148233266302782,-17.704243081505965,-110.96285864808954,-2.963827084616301,0.06464418270611719,4.143156101375724,-0.06261932088480293,-463.295331238377,-95.14277506463662,-1.7875897730537211,-0.23249329979340844,-2.7095662166044256,-52.43091065785694,8.058543124274374,-441.2223781401899,1.0158233965797092,-1.8206250502729124,-13.493811644163548,-0.9364546233840846,-145.37245660158288,-23.923872450445288,0.5645532892846794,0.023825289122940223,0.029876472278079852,30.432059752944568,-20.088729624718102,-125.39568950043112,-3.442655082628027,0.5041828210284242,3.7427603019566598,0.33973484515943886,-572.6799240470783,0.6827277890345369,0.5785340030265317,0.41738717637440986,0.31914166054916804,0.2643331215202949,0.18536017884857356,0.1632583534632386,0.10550759240290401,0.10229875779927035,0.06460911737766604,0.06321679758285732,0.03699181163250523,0.040643595886438046,0.022104434630409946,0.02537139646387099,0.012434764946774252,8.028812322851122,5.650116803265703,3.554914235329915,2.150007834940103,0.4572449836064669,-0.5291398429914882,4.0251528185491825,0.9729245698730441,6.022142342522309,0.9975679393008987,13.64272866213963,10.91043498597519,16.014148181807837,11.661178391767791,2.0348895581251725,0.741547361207208,3.5009760237712784,2.1999834894694534,7.008294842608802,1.1237244832316793,3.7138964467771713,2.3959878082013137,20.943780205521097,14.701154331393818,0.20018961403815608,0.5013267055264126,0.6434774527795736,0.7654089090065774,0.7893817893934056,0.7948582459168971,1.1451154483444155,1156.7976717268523,0.0,1.0,0.0,0.0,10.0,6.0,6.0,3.0,1.0,4.643504459955751,2.7795186954720426,1.8996305090612804,1.144896186807368,0.9965082630418856,0.962609957957139,214.39469467598047,1369.7663024615545,59.5348846007671,23.21637800782296,45.270807758478526,,14.0,792.0,5.969305287951849,9.901064578912528,5.41499046939678,5.563451491696996,34.27567840069767,55.21528421264705,19.242531678200752,12.13273413692322,30.33183534230805,4.736862953800049,15.0,37.0,18.0,0.5,19.0,0.0,0.016129032258064516,-1.0,0.09975495201143614,0.05315254237288197,-0.046602409638554165,0.01481854838709673,0.08899999999999963,0.0,0.5491525423728815,0.7741935483870964,0.44939759036144533,0.4959999999999995,0.7593749999999997,32.215606932973756,0.3882752128943423,0.9902752128943423,26.39175453530882,6.30920929783319,8.716729051645563,58.607361468282576,15.025938349478754,0.6250000000000003,0.07777777777777777,0.03333333333333333,0.36666666666666664,0.39285714285714285,0.33670281533973706,-0.7025672225062463,-0.04563390146648615,-0.011907919025529599,-0.02702181625024024,0.6632971846602629,1.3840420676398657,0.04505751288097987,0.02345834012948925,0.04194066871635957,-6.705777881609571,0.8225277523698655,0.7321028092540129,1.3940416591445604,0.8613166841004183,0.575401142599897,0.9553126603137916,0.8260090550256364,0.9457329084157967,0.7343515893972883,0.6718150826939095,0.741767152252324,0.9035151156057407,0.874573228592951,0.6667326987452202,0.7209365855160389,1.431799163179916,0.8950898486645557,0.9272245261406835,0.8783621461233823,0.9329247449098277,0.6974419716730642,0.3492562585323439,0.6232506635591165,0.9329258468250811,1.0209853083470666,0.6235824197049407,0.5488827982904447,1.1429987637885126,0.8577874331550801,1.1530337734126797,1.0287533166632397,1.1604891970358766,0.6791272435382469,0.44310828069992836,0.5486040383323141,1.1484356679446694,0.9114715734955219,0.7484294000886471,0.6830975308246596,1.0861924686192466,0.9120954504250679,0.9610627231687574,0.9145820784768802,0.9646246041645568,0.771681335240088,0.6489274089591143,0.7164755937787012,0.961440820879488,0.9705776373413163,0.9464566752102159,0.9283588717943867,1.0244769874476987,1.015206082432973,0.9742086503573693,0.9709760014159213,0.9751423229552311,0.9502713880323272,0.6663663729782161,0.9407653965580297,0.9760951232244606,0.9845784032347096,0.8694343132897849,0.806308087759826,0.9750288779936851,1.0036082794204446,1.0643005441866755,0.9875207442098206,1.06190997131783,0.8813349103489916,0.6430411668191116,0.8584953361369675,1.0424865854092584,1.0732489027397165,1.1056694509310065,1.0266475754752864,0.9026559941786428,1.070752169545724,0.9420402896252241,1.0706062010581605,0.954650608270312,1.1133176347680427,0.7792345199308269,1.080457844804418,1.0019089039653928,0.9574332667348601,0.4952155044174522,0.5049289924816486,0.8924227660915917,0.7798046811679661,1.0792527133161713,0.9659383283786547,1.0914105465308273,0.5630319043185794,0.350980591307537,0.3997454045224498,1.0895963943992653,8.5,0.2144679114376084,3.777777777777779,2.375,1.8311111111111114,1.4444444444444446,0.6073469387755102,0.5173611111111112,0.39682539682539675,0.166875,6096.353528674763,6941.130553032237,2951.398244847838,2666.737163069996,16.467136197701745,0.49050996117591034,8.389841860688634,0.9627469112212957,0.0,0.39285714285714285,1.2391385894060905,3.103124353889799,3.983012540300561,4.737746862554474,4.886134786319956,4.920033091404703,0.2361111111111111,0.008936162976567016,0.06868686868686871,0.04166666666666667,0.03662222222222223,0.030092592592592594,0.01349659863945578,0.013614766081871343,0.012400793650793648,0.005562500000000001,0.46719028262814916,21.52777777777778,8.340495867768595,3.8658777120315584,182.6012748512145,0.0,4.4117756821289245,178.03857055250964,,141.26800148573582,140.9221594618834,142.01918511286758,141.27513465402905,155.44042990602006,141.18336377844804,141.28262187609576,147.88438534289864,0.05625441751205731,-0.013769096519626723,-0.5034286676262264,0.3118396966527199,0.28020627894014755,0.08323294734645129,0.0576850689729683,0.0841392867210325,-0.004357253574134265,-0.017530657019349697,-0.026015118851475557,0.08058946477752749,0.030082230796858952,0.07163800364338423,0.04141889125890778,-0.07395661193347622,0.04405892008664209,0.09381330512023056,0.030563365362681526,0.08452333356431897,0.05798829979151355,0.22660465267164145,0.09964825823523231,0.05599097555952102,-0.11190975424459129,-0.017075921599646823,0.012151517199082095,-0.08100038037276527,-0.0030567421773904442,-0.15258527725973328,-0.11391633322482657,-0.15335856300963202,-0.029404028621511234,0.07241211030347067,-0.0015673898051497457,-0.14696100465360754,0.05513628517522379,0.02794484991417642,-0.03179555470987478,-0.051344889420203224,0.030873714721638135,0.016907295608089394,0.05487938664633418,0.02260492628284215,0.03652516624333219,0.023606413646284255,0.010520029488547255,0.03994042279804968,0.004271396648258287,-0.02941477460379491,-0.0011628381114888223,-0.04702784590968117,-0.012125047063160251,0.009342294136194286,0.004827732683482509,0.010646216212518808,-0.024087330834985106,-0.01152019298430091,-0.03736293961805505,0.01197685107127052,-0.01927419017486653,0.0023934077011119534,0.07181330131791007,-0.03875298405934752,-0.03872732265561789,-0.07954661651820817,-0.020583026117928775,-0.07412806893606061,0.004732140496607388,0.023377398194969028,-0.007324102362800107,-0.05307879976739601,-0.08552690702236257,-0.13034429192295233,-0.09914372914006839,-0.024512071519530144,-0.09720587436394254,0.036657480368510256,-0.08286112931361533,0.025722297918736408,-0.13493059130526444,-0.0770834688056697,-0.11089054518179317,-0.01686192013895613,-0.023715454414977615,0.045394383062704755,0.01120381704997605,0.0002980455092565941,0.062217059034964294,-0.10077007230889584,-0.02596862439958209,-0.09612981047716995,0.04120510012461744,0.02357716815553459,0.04436299861737829,-0.07325037923999625,22.805420350444926,40.71754337433544,12.13892754921294,10.139876354501274,27.065020336205222,33.43182915474713,36.57127977846558,37.09383785646865,37.50099039884154,65.41087074448119,60.07195077809067,0.0,5.338919966390515,0.0,5.338919966390515,10011.606268322132,8869.216269633938,1529.1229817528738,335.0,55.0,78.0,113.0,161.0,195.0,238.0,277.0,300.0,412.20384475600076,36.0,5.209486152841421,6.1070228877422545,7.039660349862076,7.954021087278037,8.892748769118258,9.81328928461798,10.755623689563581,11.679464801788836,12.624325638981613,0.6214689265536723,0.9633898305084747,1.1091900552970184,0.5821344558448541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6884827362224702,0.952608840146228,0.9901983779179577,0.6394912977330985,9.0,0.0,0.0,0.0,0.0,2.0,5.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,0.0,3.0,0.0,1.0,0.0,0.0,9.843390348640755,5.749511833283905,0.0,0.0,0.0,0.0,4.794537184071822,0.0,0.0,24.26546827384644,113.92482510006866,5.563451491696996,12.673249032974528,221.03044042519912,-461.2041703963073,-29.95662905069623,-7.817019837225548,-17.73862193831951,435.4251351011796,908.5621320652473,29.578255550070867,15.399358170597413,27.53218582015901,0.5,0.8399142594943556,0.23792422699871618,2.4666304366878276,0.16064388432125054,62.93931020177876,0.16008574050564445,7.0,0.1111111111111111,0.21064317161662804,0.5275051244570127,0.6770787394167397,0.8053772467238909,0.8306019497222447,0.8363643773929876,6.681400000000005,,0.75,0.8571428571428571,0.5194025576349036,0.7477967372960812,-3.246882793017456,0.7761627906976745,0.7454844006568143,-1.196983434174077,122.74530000000007,14.637927532712576,0.0,0.0,17.75371813848418,43.939920206952834,7.109797541277533,65.72420659954848,0.0,16.876414816677897,4.290459441148391,0.0,5.680172609017068,0.0,7.289610521451167,0.0,9.004668301573977,0.0,10.774425206686043,36.666666666666664,18.35916440861494,0.0,0.0,0.0,0.0,2.021427690483652,5.165994568547607,0.0,56.84000000000001,0.0,11.281954462980172,0.0,0.0,0.0,0.0,0.0,-0.8876429847722453,65.44221326252409,4.736862953800049,0.0,5.749511833283905,18.18563022407009,5.41499046939678,17.75371813848418,54.44636990502188,54.59730361615449,0.0,21.899351412323583,0.0,34.34593289484639,40.62048143712575,41.4246272265223,356.0771411050194,,282.48761587469744,281.78901938459626,284.004860383307,282.50202435726476,313.39457552276343,282.3166525381414,282.5171479844073,296.69546753806117,41.4246272265223,356.07714110501956,,281.7860029714716,280.98717606662404,283.51896766810023,281.802472570762,314.12774260505773,281.5905647661983,281.81975935153474,296.96575411997145,5.16813240491428,268.42891111016525,,210.92781827800383,210.5636036634536,211.71876245336057,210.93532993028094,225.83311928106525,210.83868831474027,210.9432144026606,217.88943546619063,1.3362782976297516,11.486359390484497,,9.112503737893466,9.08996836724504,9.161447109138935,9.112968527653702,10.109502436218175,9.106988791552949,9.113456386593784,9.570821533485844,2.584066202457139,178.03857055250964,,141.26800148573582,140.9221594618834,142.01918511286758,141.27513465402905,155.44042990602006,141.18336377844804,141.28262187609576,147.88438534289864,56.20392156862746,0.0,1.8006702376417731,0.0,0.0,0.0,9.261450618387709,58.42170429715951,8.24631153658366,0.0,5.875932622667207,0.0,2.6769783147717705,0.0,0.2810918574270844,0.0,0.0,37.72998656625281,551.3663986091794,73.10917677495934,183.08433687949815,234.9977398777331,279.527064890714,288.28195239287743,290.28195239287743,1819.0,147.07564266179406,105.08917691719935,68.03933607987665,46.53,46.53,1.0,9.550272575822822,6.169925001442312,4.315031264445265,5.482768270447319,,5.479308778210137,5.479923754525153,5.477883358546724,5.479295811253176,5.440447419118129,5.479461773521173,5.479282188579908,5.463566658196961,0.1391945569175892,0.1768634925950748,,0.17675189607129474,0.1767717340169404,0.17670591479182982,0.17675147778236053,0.1754983038425203,0.1767568314039088,0.17675103834128733,0.17624408574828906,2.5935066815263763,2.8330122437420027,,2.832381069132177,2.8324932989464138,2.832120889397504,2.8323787025978517,2.825263415138343,2.8324089911167327,2.8323762163859967,2.8295039220853955,319.1300000000013,756.3141244186857,213.99917323829203,,214.24400829046837,214.11801938491587,214.51964978425121,214.2466134316918,219.4976430313487,214.21311699714036,214.2493481532321,216.71374731281674,24.3972298199576,6.903199136719098,,6.911097041628012,6.907032883384383,6.919988702717781,6.911181078441671,7.080569130043506,6.91010054829485,6.9112692952655514,6.990766042348927,7.759858909861211,6.497374263133022,,6.498517702605792,6.497929466949755,6.4998034530492586,6.4985298622241885,6.522743606050492,6.498373504778012,6.498542626505701,6.509979457397395,5.875932622667207,11.281954462980172,11.282878308871362,4.4076520071454315,2.828769748828785,18.35916440861494,8.24631153658366,0.0,1.8006702376417731,384.8478418540912,145.09666497817307,-302.760049112674,-19.66519616430503,-5.1315262561470165,-11.644617273564384,285.83725766149604,596.4306773063657,19.41681077018808,10.108994530616368,18.07365688807169,2664.0,57.0,2.673346296415742,1.7575536928654443,0.10206207261596575,0.08838834764831845,0.5690355937288492,0.1960335919508593,0.041666666666666664,0.02551551815399144,0.0,0.0,0.0,0.0,0.0,0.0,0.4489422222725456,0.3169868606893173,1.0138340731454623,0.7212149204502291,21.164561460070644,17.93455409382248,15.025938349478755,11.489099779770049,14.53832168361622,10.194809836671546,12.734151570132612,8.229592207426514,11.559759631317549,7.300830263676263,10.177904410840029,5.955681672833341,7.925501197855419,4.31036475292994,6.038392358401296,2.959474057332272,6.1640035145563035,3.531024192199259,10.677260991572028,6.362271829734606,17.520462201091807,9.686130840919125,105.26464817199633,66.01793457144676,43.94554154202,34.09138763957317,32.81362156362832,32.02393145189371,182.0,224.0,67.83620399999998,30.693795999999992,0.4406779661016949,366.03,8.284722222222221,6.4861111111111125,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1.0,16.0,17.0,59.0,0.0,0.0,64.0,17.0,1.0,9.0,55.0,18.0,36.0,46.0,0.0,0.0,4.0,28.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,2.0,1.0,0.0,31.0,3.0,0.0,0.0,3.0,0.0,7.0,4.0,0.0,0.0,0.0,0.0,3.0,3.8394523125933104,8.500561905098131,4.477336814478207,5.093750200806762,5.707110264748875,6.342121418721152,6.744463992469929,7.2277759636057235,7.682212392792169,8.173738509160263 +3730,CC(=O)N(CC(O)CO)c1c(I)c(C(=O)NCC(O)CO)c(I)c(C(=O)NCC(O)CO)c1I,0,164.33333333333334,6.629449999999999,3.1333333333333333,8.517876543209876,164.12366642926293,899.5661606157119,2.6639228587679002,6.747358333333334,7.608075417283951,8.197867866666664,245.06899726360626,39.833333333333336,6.6918000000000015,3.9,6.914444444444444,150.72100549084504,166.4463445085001,1.9711568349333333,6.847708333333333,3.7196666666666665,8.153250133333332,267.7182796848117,38.6764705882353,6.550676470588235,3.4901960784313726,5.654248366013072,156.81502274357146,163.53666415705877,1.8133040728200094,6.68731176470588,3.6475925925925936,8.069715803921568,231.6067383991561,44.659574468085104,6.517045390070924,2.9574468085106385,4.920409771473602,161.45451567710796,194.60248402326238,1.7936491515689716,6.654623404255318,4.151796164959285,8.110755092198584,213.01255148695716,107.58,6.421747333333336,2.84,4.640187654320988,160.90883808601217,550.4509902560849,2.3057852643374734,6.633232000000002,3.6077121422222223,8.070432400000003,230.91807231420506,51.520833333333336,6.366961805555555,3.0625,5.7179012345679014,154.7874542985113,220.94022102868055,2.0489233420265895,6.594152083333333,4.196728395061729,7.973670583333334,234.83970423834705,55.98684210526316,6.520225657894737,2.901315789473684,5.20453216374269,152.76236551958775,235.49690740276304,2.1181128018174,6.794286842105265,4.717729532163744,8.154612868421049,236.0155826962391,55.81528662420382,6.482821656050955,2.7261146496815285,4.242604387827318,155.99387598498384,237.45044357140117,1.9810552769786054,6.741494904458596,4.236398207124321,8.132237375796175,221.58434765076007,42.29299363057325,6.473375796178343,2.4522292993630574,3.8670912951167726,158.80868004126978,166.39174324764332,1.7673640925655536,6.711497452229297,4.05791318707242,8.138075261146493,194.6012504459206,121.6488888888889,0.208294,0.035070077738391665,0.6788888888888887,4.553353086419754,1.5510733726052592,712.2675890877648,1.0748685698773655,0.1843683055555555,3.4004716464197533,0.13529691555555554,61.60151907745653,-1.3266666666666658,-0.04103799999999989,-0.019495126728879698,0.2444444444444445,0.4765185185185191,-0.032725482644000464,-6.122207235733334,0.04726426840666673,-0.038499666666666564,-0.5537592592592594,-0.028957013333333347,3.664994022310962,1.2315032679738562,-0.014917529411764661,-0.0006885766883035703,0.06196078431372551,-0.0036305010893243096,0.11161577920745745,6.672337161846019,0.08984940599016251,-0.01472051143790845,-0.2555850517937546,-0.011695843660130724,5.533396655999572,3.4300709219858163,-0.005326836879432593,0.0044557981060295605,0.10078014184397159,-0.009637825059101393,0.26293594861646513,16.372652657958234,0.16751304759094027,-0.0034451613475177,-0.07783884410822171,-0.002571829030732873,14.453137859397243,49.65111111111112,-0.03353319999999999,-0.005419636925347373,0.07222222222222222,-0.1331693827160492,0.30716653104192376,286.5643913322405,0.4149917260514985,-0.015664838888888855,-0.5654671885432101,-0.018488801777777775,22.963820924839464,-9.919722222222225,0.032067388888888854,0.002019701756578128,-0.08606481481481482,0.5666386831275722,0.06735013976056331,-60.41862659301132,-0.05004425342262056,0.028813708333333316,0.3414790379423869,0.017784704814814842,3.1426637344247297,-24.946257309941522,0.009979552631578965,0.0017086663836294992,-0.1481871345029239,-0.38915100714749806,-0.36680063073038505,-143.47658111515867,-0.2703924175059683,0.0033835365497076803,0.20196646871994803,0.0060708370760233655,-17.688357092083468,-19.266723283793354,-0.0160329171974522,-0.002153790268868594,-0.15808209483368715,-0.8925176692616181,-0.3553685729889078,-112.51885262385042,-0.25314221022977434,-0.012153178167020457,-0.11663516561453177,-0.008490648888888907,-15.515417498261272,-32.83062986553433,-0.009177248407643286,0.0006090445892784198,-0.15256192498230708,-0.5978450263426909,-0.43722623474197125,-184.69746828499726,-0.39752518689343475,-0.018816734430290093,-0.20834369032948033,-0.007789123623496126,-28.86455462656937,,,0.5478991596638655,0.9852941176470589,0.36764705882352944,0.058823529411764705,0.6176470588235294,-0.25,1.3498347341544175,0.029759487629679223,0.03228889939438511,0.9333790143746872,0.1932635438883069,0.27445383796357553,2.2832137485291044,0.46771738185188244,1.935223934842298,1.138930563377432,0.18106200969950328,0.4571295980319048,0.15810176373345777,0.7962933714648657,13.681338723533345,9860.0,397.76699999999994,188.0,511.0725925925926,9847.419985755776,53973.96963694271,159.83537152607403,404.8415,456.48452503703703,491.8720719999999,14704.139835816375,2390.0,401.5080000000001,234.0,414.8666666666667,9043.260329450703,9986.780670510005,118.269410096,410.8625,223.17999999999998,489.1950079999999,16063.096781088703,3945.0,668.169,356.0,576.7333333333333,15995.13231984429,16680.739744019993,184.95701542764095,682.1057999999998,372.0544444444445,823.1110119999998,23623.88731671392,6297.0,918.9034000000004,417.0,693.7777777777778,22765.086710472224,27438.950247279994,252.904530371225,938.3018999999998,585.4032592592592,1143.6164680000004,30034.76975966096,16137.0,963.2621000000004,426.0,696.0281481481481,24136.325712901824,82567.64853841273,345.86778965062103,994.9848000000003,541.1568213333334,1210.5648600000004,34637.71084713076,7419.0,916.8424999999999,441.0,823.3777777777779,22289.39341898563,31815.39182813,295.0449612518289,949.5579,604.328888888889,1148.208564,33816.91741032198,8510.0,991.0743,441.0,791.0888888888888,23219.879558977336,35795.529925219984,321.95314587624483,1032.7316000000003,717.094888888889,1239.5011559999996,35874.368569828344,8763.0,1017.803,428.0,666.088888888889,24491.038529642465,37279.719640709984,311.02567848564104,1058.4146999999996,665.1145185185184,1276.7612679999995,34788.74258116933,6640.0,1016.3199999999998,385.0,607.1333333333333,24932.962766479355,26123.50368988,277.47616253279193,1053.7050999999997,637.09237037037,1277.6778159999994,30552.396320009535,7298.933333333334,12.49764,2.1042046643035,40.73333333333332,273.20118518518524,93.06440235631555,42736.055345265886,64.49211419264192,11.06209833333333,204.0282987851852,8.117814933333332,3696.091144647392,-79.59999999999995,-2.462279999999993,-1.1697076037327818,14.66666666666667,28.591111111111147,-1.963528958640028,-367.33243414400005,2.835856104400004,-2.3099799999999937,-33.225555555555566,-1.7374208000000009,219.89964133865772,125.61333333333333,-1.5215879999999955,-0.07023482220696417,6.320000000000002,-0.37031111111107956,11.38480947916066,680.578390508294,9.164639410996577,-1.5014921666666619,-26.069675282962972,-1.1929760533333338,564.4064589119563,483.6400000000001,-0.7510839999999956,0.628267532950168,14.209999999999994,-1.3589333333332965,37.07396875492159,2308.5440247721112,23.619339710322578,-0.48576774999999567,-10.975277019259261,-0.3626278933333351,2037.8924381750112,7447.666666666668,-5.029979999999998,-0.8129455388021058,10.833333333333332,-19.97540740740738,46.07497965628856,42984.65869983608,62.24875890772477,-2.3497258333333284,-84.82007828148151,-2.773320266666666,3444.5731387259198,-1428.4400000000003,4.6177039999999945,0.29083705294725043,-12.393333333333333,81.5959703703704,9.698420125521118,-8700.28222939363,-7.20637249285736,4.149173999999998,49.17298146370371,2.5609974933333373,452.5435777571611,-3791.8311111111116,1.5168920000000028,0.2597172903116839,-22.524444444444434,-59.150953086419705,-55.75369587101853,-21808.44032950412,-41.099647460907185,0.5142975555555674,30.6989032454321,0.9227672355555515,-2688.6302779966873,-3024.8755555555567,-2.5171679999999954,-0.3381450722123693,-24.818888888888882,-140.12527407407404,-55.79286595925852,-17665.459861944517,-39.74332700607457,-1.9080489722222118,-18.311721001481487,-1.3330318755555584,-2435.9205472270196,-5154.408888888889,-1.440827999999996,0.0956200005167119,-23.95222222222221,-93.86166913580247,-68.64451885448949,-28997.50252074457,-62.41145434226926,-2.954227305555545,-32.70995938172841,-1.2228924088888917,-4531.735076371391,0.7694825808516916,0.7187152890334148,0.4677173818518825,0.38408483631625406,0.30005325975010866,0.21990781656330982,0.1883746416189328,0.12665481445785634,0.11269240204536883,0.09850048373211744,0.06800817913558344,0.037587391814932605,0.04256867245237906,0.024810911620868143,0.025825912903938538,0.010971568969086888,53.00226882861786,5.687500481108402,3.548411248345672,2.119419727276895,0.4326846541184314,-0.3968875006259244,3.3261255050620617,0.972379718720789,6.0244768553113675,0.15146296500626397,14.544345852414985,10.435345500772003,126.90657993912644,11.69957209471075,5.355467628897142,0.75110627063189,3.493831048961308,2.223161714962402,7.0104648602518465,1.0035100261174386,3.7066632231340364,2.4163427508155335,32.51809084688581,14.701777772643977,0.3128305833244501,0.584028513325434,0.7240866303080022,0.7820454309023532,0.8103489639055361,0.8517635091079813,3.310801844212536,850.4986796486622,0.0,3.0,7.0,0.0,4.0,3.0,2.0,0.0,0.0,4.016019257406738,2.3767920841266053,1.5302256254687512,1.179899791991187,1.0088220835496804,0.758496250072116,139.37684018073224,3268.78113770275,111.58376387205294,54.47968562837917,131.986184848476,,14.0,696.0,55.85408424483817,34.809721131578286,47.15910528901147,0.0,4.899909730850478,6.923737199690624,22.590870627068057,45.181741254136114,10.633577208012662,10.213054789681411,18.628571428571426,33.5,12.5,2.0,21.0,0.04789915966386548,0.0,-8.5,0.21619047619047593,0.0317748917748919,-0.18441558441558403,0.11748699479791946,0.11638313473877149,0.0,0.6495238095238082,0.9168067226890751,0.43333333333333224,0.6177489177489163,0.7993197278911557,45.89438096125019,1.0118225794090936,1.0978225794090937,31.734886488739363,6.570960492202435,9.331430490761567,77.62926744998956,15.902390982964002,0.5976168652612285,0.45245398773006135,0.0,0.343558282208589,0.5263157894736842,0.40850045750623815,-1.7532211225485168,-0.08734913456735281,-0.029220352042475285,-0.11688140816990114,0.5914995424937618,2.538625043919348,0.05915818086303716,0.04231041739865579,0.05641388986487438,-3.4117548012558623,0.5042677468853896,0.9756666058551853,1.5391590492236105,0.9414893617021279,0.7006746170325526,1.200191641554077,0.502044104022313,0.5205669451664022,0.9639327770695707,0.9099982334902683,1.0143012950677104,0.7535759517833028,0.584261439221847,0.884007724187738,0.9518826548914888,1.2141378646384908,0.8836056856352719,1.036804872152637,0.583541048765086,0.563482531482409,0.8849497785686746,0.8281496106637609,0.8978203459452323,0.7669770275768006,0.8140415154414867,0.9728116384685482,0.8754392323405475,0.9759027753595434,0.9991773377621133,0.867053058984202,0.818662212858434,0.7063438513988587,0.960638189361769,0.9428039978173368,0.9634055461112442,0.6963881964634131,0.9192950568119542,1.0898114630708942,1.1246583402908863,1.0235679214402622,1.0635588226575303,0.9036396174360137,0.931237928230954,0.8945926024543336,0.9993038391299781,1.0950867162718967,1.0425396673245997,0.6989376266984229,1.4417874415439698,0.6405938052215367,0.7730785288461475,1.4434158483360615,0.8816432562216768,1.099232706717139,1.453314749508101,1.3604364827315183,0.623411524245174,0.7462955557955862,0.6506769390039912,1.0556314069303954,2.00244291884034,0.8634727604992872,0.7950488633972408,1.4770329055043503,1.1306173107169313,1.4373749227586694,2.0142787393245545,1.9462560357698082,0.8501291128255141,0.9580948196145606,0.8591808366653482,1.4845136995657557,1.8538211790013464,1.0032781068046537,0.9834253909982948,1.3977034620075686,1.2197668952125378,1.40263906506194,1.8664301972437078,1.837544244876858,0.95737488857093,1.0057541071908251,0.9704238643372068,1.4163860794970675,2.0268413998543715,1.0062805335354317,0.9566004684339402,1.231639684343303,1.13650289269019,1.4381772838412419,2.0293202512681123,2.02160247086209,1.0308161963294065,1.0442650324490075,0.9881917719788306,1.6431830587479166,8.0,0.23140495867768596,4.666666666666669,3.5,3.0666666666666678,2.1805555555555554,1.5061224489795917,0.9079861111111112,0.7193247669438144,0.4112500000000001,15982.690813942845,17074.742895900068,3897.3314564399957,3596.2455314715976,15.033678298737248,0.43042708436792554,8.56277598128642,0.7557014607870987,0.0,0.5263157894736842,1.8908713382017808,3.5300985114819134,4.3766649701397675,4.726990803617332,4.898068512058838,5.148394345536403,0.23529411764705882,0.007012271475081393,0.09929078014184403,0.06140350877192982,0.04867724867724867,0.03354700854700855,0.023171114599686026,0.01488501821493625,0.014386495338876289,0.009563953488372095,0.547231516902042,32.029411764705884,15.29741964689905,8.817777777777778,236.07069182051058,0.0,4.399756226563152,204.11179428855888,,168.09193258993224,169.3923500225636,168.32723470054063,168.05020089136204,236.9660417791303,170.61885882837154,172.3576354883227,212.9183357845178,-0.010905703116437097,-0.19701959729996968,-0.5558906049283755,0.36006546644844534,0.1046522221041285,-0.021098603858457795,-0.008595375290871144,0.04397213736751019,-0.2088193334025381,-0.16284778020198895,-0.21402567245846074,0.05949518903426181,0.01012342389003389,-0.07161766259116759,-0.01963430744123434,0.09126793106768082,-0.0007973247451756324,0.07196034770423664,0.00936773940590446,0.08359106267328449,-0.07984296104230743,-0.07516164766815564,-0.08644575238175467,0.08982565266031814,0.028196483776508297,-0.025573645325513903,0.12705412686187864,0.1484486541073232,-0.0021166434660746898,0.16951870444067063,0.022986659661051647,0.1558451444999013,-0.018686299345955497,-0.022890602305176026,-0.019008777991519184,0.23462307546708636,0.4081509626977458,-0.1609897548657186,-0.15453735135050545,0.10638297872340428,-0.029246443266880202,0.19803481670631204,0.4023268722633544,0.38608601803181014,-0.08496492302018031,-0.16629081119925593,-0.13665353494467444,0.3727801078406071,-0.08154387855759747,0.15395253290487895,0.05759045564838125,-0.1267730496453901,0.12444426609865945,0.043421633657109784,-0.08482574178391628,-0.04655848614899052,0.15628341458424325,0.10042108079387138,0.1314494476225668,0.05101601034340089,-0.20506769554407372,0.047910898209160925,0.04872148834044357,-0.21827892152640188,-0.08546471133726262,-0.23648180492860157,-0.20143634683548636,-0.25155858593652813,0.018352051018270723,0.059393663503294315,0.04487047654482975,-0.28714157308105465,-0.15837977197959535,-0.07697253496237146,-0.061413900617357686,-0.2328541495095229,-0.1960132790763639,-0.22911138780753693,-0.15797272590763076,-0.23550991937428778,-0.06591793600532035,-0.034299702436082116,-0.06275567224888053,-0.2518674495470232,-0.26988022796920913,-0.044059110716791104,0.0173665024018949,-0.22472296642238365,-0.13129775244659736,-0.2818862359861059,-0.25930910112244215,-0.36983608790309075,-0.10206057040872499,-0.06126905676418113,-0.05757059273311934,-0.46856887717777945,2.2100583759172694,14.864201767986746,19.624431525194254,43.855483547000816,58.74917806613682,63.1670932717563,74.36921078121296,76.10193287350928,77.97556995607022,65.79761378463813,38.72363915483269,6.156108329783112,15.542406333084763,5.375459966937564,27.073974629805434,14689.586020694001,9056.892150199685,6835.674876165206,90.0,47.0,60.0,75.0,92.0,106.0,110.0,111.0,106.0,820.8803234120007,34.0,5.093750200806762,5.932245187448011,6.816735880594968,7.691200097522863,8.592115117933497,9.485013189834323,10.39674983992153,11.300734217613963,12.219516865637598,1.0888888888888892,1.0136,1.132331802882694,1.1394310909444123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.754836506986028,1.004640522875817,1.034037387715465,0.6581792285772443,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,6.0,6.0,2.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,46.17265130790737,0.0,0.0,5.907179729351506,11.814359458703011,14.383611552215466,0.0,0.0,0.0,0.0,67.77261188120417,23.58343228258117,68.63195526290457,311.12452274548065,-1335.298590239335,-66.52736197751604,-22.25497650398892,-89.01990601595568,450.5013629262129,1933.4825474634154,45.05640189453691,32.22470912439025,42.96627883252033,0.42857142857142855,0.6173537934258374,0.09171221171571094,87.98695422584525,0.058980427282491095,101.73448915873146,0.38264620657416254,8.0,0.35294117647058826,0.32011280852358265,0.5976238182075637,0.7409422773791683,0.8002502716288017,0.8292126682861386,0.871591281775894,-1.6274999999999986,,5.3389487870619945,2.7347666703865205,2.00172414340973,5.386952758389263,-9.231642431728664,2.9361011540479107,2.6917994167278647,-3.4476945662800125,146.56419999999997,45.022775921259694,0.0,10.633577208012662,0.0,25.23563636293553,44.35482484212696,21.837449796590178,0.0,0.0,4.23410650459726,0.0,5.54907608489522,0.0,7.057036981697891,0.0,8.668539943910762,0.0,10.349742654652538,65.33333333333336,0.0,0.0,0.0,0.0,0.0,0.0,0.9432481009070306,0.0,60.816,0.0,38.48673301252752,0.0,0.0,0.0,0.0,0.0,-1.8908655769888807,67.93990817296165,15.533486938863138,5.687386274683562,0.0,106.12751783162017,4.794537184071822,10.710546813196189,27.639714551228256,0.0,0.0,0.0,0.0,68.36586545666474,45.29019041916168,40.72430389115091,408.22358857711777,,337.55003040778706,338.6238314174574,336.53672092205716,337.6942031951255,477.4071368263817,341.0650058241521,344.55692983448495,426.4450882572027,40.72430389115091,408.22358857711765,,333.4673048647395,336.0499333747406,334.6527452576713,333.5747687328277,483.3805525175003,338.3016165026952,342.02347155991765,429.28436613531574,5.048153910688314,262.8019277786677,,217.92492878885918,218.38853983782968,216.70750173277122,217.89054796190993,301.3466394881888,220.10854165649647,222.2582298939055,272.51097522813063,1.1977736438573796,12.006576134621112,,9.927942070817267,9.959524453454629,9.89813885064874,9.932182446915457,14.041386377246521,10.031323700710356,10.134027348073086,12.54250259580008,2.5240769553441567,204.11179428855888,,168.09193258993224,169.3923500225636,168.32723470054063,168.05020089136204,236.9660417791303,170.61885882837154,172.3576354883227,212.9183357845178,60.27843137254902,0.0,1.225121801398858,0.0,0.0,0.0,56.40644133243013,62.0422432629279,-2.6376322684381073,4.930050097779138,0.0,0.0,-3.7071929677152236,1.1381087805492567,0.0,0.0,0.0,39.49075371463466,470.19262969073316,113.45228029210685,211.80591068891482,262.59989820838604,283.6194482170399,293.8841107235303,308.90366073218416,865.0,145.5280605973135,291.4332559809604,69.85850216975368,199.89,199.89,0.75,8.095007825625977,6.087462841250339,4.292850357079698,5.711012293329104,,5.675149597861177,5.694090031776919,5.690729315471035,5.674658513798622,5.651524460183379,5.691440378885447,5.6915681666608195,5.671437705033535,0.1262603046199911,0.16797094980379718,,0.1669161646429758,0.16747323622873292,0.16737439163150103,0.16690172099407713,0.16622130765245233,0.16739530526133667,0.1673990637253182,0.16680699132451574,2.680726362833222,2.966171723872846,,2.959872355498736,2.9632042320454275,2.962613846497621,2.959785819399089,2.955700756348345,2.9627387898844146,2.9627612422571534,2.9592180807179638,402.17000000000115,656.0430708566137,222.40350522735983,,224.07999527421714,224.32936630741855,224.83206236734694,224.08690562106796,228.96490508887067,224.30384750461758,224.3646729628804,226.69131009298354,19.295384436959225,6.5412795655105835,,6.590588096300504,6.597922538453487,6.612707716686675,6.590791341796116,6.734261914378549,6.597171985429929,6.598960969496482,6.667391473323045,7.71000187520451,6.628268754788729,,6.635778541484256,6.636890788820171,6.639129165660769,6.63580937975829,6.657344170544904,6.636777026387775,6.6370481640132635,6.647364656212916,0.7617381319811882,39.62484179307678,61.33649143020927,0.18150996892584237,-1.8908655769888807,0.0,-3.7071929677152236,-1.4125104670392494,0.0,,236.96049019020967,-1016.9979714271973,-50.668960987527,-16.949966190453292,-67.79986476181317,343.11349953498194,1472.590357642586,34.316121998106446,24.543172627376432,32.72423016983524,3312.0,57.0,2.7175296239197166,1.7914046776655206,0.0,0.0,0.7234787043740335,0.5362241376500929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037037037037037035,0.015625,0.17526114102106952,0.14146252950088448,26.162407748957516,24.436319827136103,15.902390982964006,13.058884434752638,14.102503208255108,10.335667378475561,11.302478497135969,7.5992888674713805,8.451930153402662,7.387536279908808,6.2567524804736765,3.4580400469738,4.51227927995218,2.629956631812023,2.8408504194332393,1.2068725865995578,6.16159957768438,4.027884652787758,9.812495454316437,8.997364267538643,16.01754671304734,13.198251360625617,141.93782842326837,91.42633433968471,76.52130676801899,54.37679863178184,50.25469554367422,45.67262193941549,162.0,188.0,75.63461799999999,42.577382000000036,0.1,34.15,16.444444444444443,7.944444444444442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,60.0,0.0,0.0,60.0,6.0,3.0,6.0,54.0,9.0,34.0,51.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,9.0,8.0,0.0,34.0,15.0,3.0,3.0,9.0,0.0,1.0,12.0,0.0,0.0,3.0,0.0,1.0,3.713572066704308,6.136105870267234,4.212127597878484,4.693638833975699,5.211533236463146,5.692257988804247,6.055026028597727,6.244773512753918,6.378744469156369,6.332168887161337 +54676228,CN1C(C(=O)Nc2ccccn2)=C(O)c2ccccc2S1(=O)=O,0,33.666666666666664,6.663841666666666,3.8055555555555554,10.234567901234568,160.79722101403715,133.81873327777782,1.7285078823065836,6.727030555555555,7.445046963115378,8.144538694444442,248.58680744808785,35.81578947368421,6.590126315789473,4.526315789473684,8.0,146.14561014814075,139.27913128947372,2.004163360421053,6.755976315789472,3.4123619233268356,8.050976947368419,291.3376641417181,30.870967741935484,6.7148532258064515,4.225806451612903,9.129032258064516,153.22024019668783,119.17601756451612,1.8122811208797898,6.825483870967743,4.6825965750696925,8.139460838709677,261.32895785717136,28.367088607594937,6.617315189873419,3.759493670886076,7.637130801687764,153.57186357715648,107.57929546835442,1.681258585254354,6.73157341772152,4.2912173777152685,8.11531392405063,239.66926208329215,26.54022988505747,6.863744827586205,3.1264367816091956,6.528735632183908,159.28612160708226,99.2342470689655,1.3981175363016667,6.9330218390804585,5.241858237547893,8.385935218390804,207.96176622456974,22.5,7.027096341463415,2.7560975609756095,6.642276422764227,164.34465484331565,81.75187949999999,1.2733989233444514,7.052410975609756,6.641749473050287,8.549982804878049,188.46121231835818,19.083333333333332,6.3933027777777784,2.6944444444444446,4.449074074074074,162.85704387928388,69.47522797222223,1.2624913797644026,6.4531986111111115,3.961548353909465,7.963943166666667,176.06490369860902,20.833333333333332,6.446833333333332,2.7666666666666666,4.95,162.2805946138954,76.23694253333335,1.3837151092131998,6.516761666666667,4.16033950617284,7.9871002,190.54845866494745,17.454545454545453,6.163781818181818,2.5272727272727273,3.7454545454545456,158.6551160061791,61.955457890909095,1.349351168429836,6.2522090909090915,3.6387205387205395,7.762147090909091,179.51220944992016,10.839506172839505,0.1684230709876543,0.02849175253060217,0.7430555555555556,4.438957475994513,1.6738750587320752,49.10409460802469,0.29341642554463815,0.15207986111111108,3.0088662461472677,0.1103059158950617,46.91757276412897,2.189733593242365,-0.02102307098765434,-0.017001717225307342,0.26644736842105265,0.13251750776117274,-0.317339392639735,9.417927308641985,-0.02529813055931267,-0.01218658625730995,-0.6204907578150972,-0.001315231684535417,1.5046660829001157,1.2966945440063724,0.03641877489048184,0.0021083751848899233,0.034274193548387094,0.8037745032966064,0.21783885033765849,5.960113657208289,0.03782061269682701,0.03120042562724012,0.4120437099225685,0.022505156685583425,2.895965727882783,-0.8170026566651039,0.00932397542584776,0.000646967080277561,-0.15585443037974683,0.4103939851712944,-0.15753013695548546,-3.292129910415687,-0.03963596495296574,0.009210188115330486,-0.046561510791241566,-0.0027111954309267084,-2.408585099712365,-0.7718177948063004,-0.024267291932737394,-0.0011462239019148608,-0.20761494252873564,-1.0409157561137128,-0.3679293341573769,-3.7966032146658097,-0.06525941132494525,-0.019627658045977048,-0.4038621959604267,-0.013515504975521503,-8.043127773475419,-3.091538693164709,-0.009366837925323775,0.0013844622729428052,-0.007621951219512195,-0.5875572953260395,0.12798323100288325,-14.064858100572113,-0.006766797099238772,-0.01525580962059624,0.3123082104532654,-0.0026319267351701315,-6.77515173023644,0.5030864197530862,-0.026011458333333317,-1.3958716968719846e-05,0.020833333333333332,-0.5997942386831279,-0.10805873608960721,2.2908636149691315,0.02351253715317781,-0.021678356481481465,-0.4800496065767413,-0.01722199305555555,2.7238664294047705,-0.6135802469135805,-0.01318788580246912,-0.0008112483845795362,-0.03333333333333333,-0.2883401920438959,0.1867804221784377,-2.7488362904321004,0.015307414909542415,-0.012888749999999989,-0.043874843350437766,-0.008977433024691355,0.12725317327157795,-1.415263748597082,-0.017591252805836073,-0.00034467071271121626,-0.042045454545454546,-0.17610674647711713,-0.052235024165787465,-6.297290457519643,-0.018969391126773476,-0.016517941919191887,-0.1638396773038262,-0.013533148218294043,-2.633347056591097,,,0.47246376811594215,1.434782608695652,0.782608695652174,0.021739130434782608,0.6521739130434783,0.13043478260869565,0.6635115477931712,0.021245916354989045,0.032463307659336874,1.1495814464280758,0.28897605661629344,0.18604818191450426,1.813092994221247,0.4750242385307977,2.0226957137943993,1.3503829271886085,0.2681975261431029,0.30692351373609533,0.0,0.672312786605791,9.196185469333342,1212.0,239.8983,137.0,368.44444444444446,5788.6999565053375,4817.474398000001,62.22628376303701,242.1731,268.0216906721536,293.2033929999999,8949.125068131163,1361.0,250.4248,172.0,304.0,5553.533185629349,5292.606989000002,76.15820769600002,256.72709999999995,129.66975308641975,305.9371239999999,11070.831237385288,1914.0,416.3209,262.0,566.0,9499.654892194645,7388.913088999999,112.36142949454697,423.18000000000006,290.32098765432096,504.64657200000005,16202.395387144625,2241.0,522.7679,297.0,603.3333333333334,12132.177222595363,8498.764341999999,132.81942823509397,531.7943,339.00617283950623,641.1097999999998,18933.87170458008,2309.0,597.1457999999999,272.0,568.0,13857.892579816156,8633.379495,121.636225658245,603.1728999999999,456.0416666666667,729.5763639999999,18092.673661537567,1845.0,576.2219,226.0,544.6666666666666,13476.261697151884,6703.654118999999,104.418711714245,578.2977,544.6234567901236,701.09859,15453.81941010537,1374.0,460.31780000000003,194.0,320.33333333333337,11725.70715930844,5002.216414,90.89937934303698,464.63030000000003,285.23148148148147,573.403908,12676.673066299849,1250.0,386.80999999999995,166.0,297.0,9736.835676833723,4574.216552000001,83.022906552792,391.0057,249.62037037037038,479.226012,11432.907519896848,960.0,339.008,139.0,206.0,8726.031380339851,3407.550184,74.21431426364099,343.8715,200.12962962962968,426.91809,9873.171519745609,390.2222222222222,6.063230555555554,1.025703091101678,26.75,159.80246913580248,60.25950211435471,1767.7474058888888,10.562991319606974,5.474874999999999,108.31918486130164,3.971012972222221,1689.032619508643,83.20987654320987,-0.798876697530865,-0.646065254561679,10.125,5.035665294924565,-12.05889692030993,357.88123772839543,-0.9613289612538816,-0.4630902777777781,-23.578648796973695,-0.04997880401234585,57.177311150204396,80.39506172839509,2.257964043209874,0.13071926146317525,2.125,49.8340192043896,13.506008720934826,369.5270467469139,2.3448779872032746,1.9344263888888875,25.546710015199245,1.3953197145061724,179.54987512873254,-64.5432098765432,0.736594058641973,0.05111039934192732,-12.3125,32.42112482853226,-12.444880819483352,-260.07826292283926,-3.131241231284293,0.7276048611111083,-3.6783593525080835,-0.21418443904320997,-190.27822287727685,-67.14814814814814,-2.1112543981481533,-0.09972147946659288,-18.0625,-90.559670781893,-32.00985207169179,-330.30447967592545,-5.677568785270237,-1.707606250000003,-35.13601104855712,-1.1758489328703707,-699.7521162923615,-253.50617283950615,-0.7680807098765495,0.11352590638131002,-0.625,-48.17969821673524,10.494624942236426,-1153.3183642469132,-0.5548773621375793,-1.2509763888888916,25.60927325716776,-0.2158179922839508,-555.5624418793881,36.22222222222221,-1.8728249999999989,-0.001005027621747829,1.5,-43.185185185185205,-7.78022899845172,164.94218027777748,1.6929026750288023,-1.5608416666666656,-34.563571673525374,-1.2399834999999997,196.1183829171435,-36.81481481481483,-0.7912731481481472,-0.04867490307477217,-2.0,-17.300411522633752,11.206825330706263,-164.93017742592602,0.918444894572545,-0.7733249999999994,-2.632490601026266,-0.5386459814814812,7.635190396294677,-77.8395061728395,-0.9675189043209841,-0.018956889199116894,-2.3125,-9.685871056241442,-2.8729263291183105,-346.35097516358036,-1.0433165119725412,-0.9084868055555537,-9.01118225171044,-0.7443231520061724,-144.83408811251033,0.7222834650518636,0.561301420991307,0.437022299448334,0.3242590968285755,0.27887394831784346,0.18304570588909527,0.17441945895163036,0.10307551027865443,0.11050542456700556,0.055109146444774944,0.0692320089958196,0.030164681325917642,0.0413145554900566,0.017045709502875525,0.026986594937298585,0.009018448347993018,16.013123020042705,5.688103725477448,3.581014983864067,2.1770002012700047,0.47532858652050664,-0.38204372054874114,4.048657821433874,0.9714083318974062,6.02251283055221,0.6449111745193726,14.55122196880862,10.319758721483742,32.06654399448229,11.699594289722802,2.954618605372521,0.7517058778301782,3.5370500886142904,2.2302980458712764,7.014575374504513,0.29757893010987413,3.768345319509217,2.4293013572892206,24.441831917885967,14.70103029033643,0.3315119109334078,0.674981793013297,0.7707006914310051,0.868440751119388,0.8920900072023742,0.8920900072023742,1.7356715530769884,907.329049686318,0.0,3.0,0.0,0.0,10.0,0.0,1.0,0.0,0.0,3.3184434103368177,1.4001769987935195,0.865590540520282,0.3197159723424159,0.18763576394898607,0.18763576394898607,78.27144763096956,1191.4947919965703,60.95576640625502,33.09707755546029,67.2832059761457,,11.0,418.0,21.689635754415264,18.318861563241466,21.97383705810563,0.0,4.305215991296234,25.377249691213486,30.33183534230805,0.0,10.30076712495354,0.0,10.866666666666669,33.0,18.0,0.5,15.0,0.0,0.027536231884057873,3.0,0.23994301994301964,0.09537037037037022,-0.14457264957264943,0.0477681159420289,0.18734410339256835,0.0,0.6814814814814816,0.897101449275362,0.44153846153846193,0.5861111111111114,0.849333333333333,15.260765599242937,0.48865607616474804,0.746656076164748,26.440373267845743,6.64644930217475,4.279108184033598,41.70113886708868,10.925557486208348,0.5266558966074316,0.16871165644171773,0.07668711656441717,0.312883435582822,0.06666666666666667,0.4240786845915692,-0.9802321578998926,-0.06801547419012707,-0.027228671052774798,-0.07001658270713519,0.5759213154084307,1.3312071893617026,0.050235614996597594,0.03697797748226951,0.06050941769825922,-2.8993298673319137,0.806052181992567,0.7621219431277552,1.5755460514463249,0.8091490408263651,0.6708300126862272,1.3442928143050148,0.7880416524078193,1.2333453497516098,0.6987710606226288,0.7815681440090039,0.6583247987544422,0.8615356386185229,0.7406863105297966,0.581486297043494,0.8552904378525243,1.1079288513717216,0.6725653185932453,0.9859209794037266,0.7316521053296753,0.8343959898454788,0.5749534714667958,0.5952812848179592,0.5840353054539866,0.8124518771905969,1.1943859750295553,0.8251935270728784,1.0189325548940302,1.4657518040932214,0.8274103831891224,1.1687580501727224,1.1618141659631542,1.2825413069199378,0.8065579209513194,0.9136183239742754,0.9124229618655495,0.9891864667377069,1.0984751786976674,1.3767214084736354,1.3233796599272172,1.413685680524224,1.3011154149439494,1.2095851790151186,1.0940600471302357,1.2185127020282132,1.3346927303489058,1.483061331149039,1.4006467413270114,1.0548287677883303,1.258429287738208,1.5001109077649994,1.4483441246423925,0.9972646455436518,1.2653027864873827,0.8764878751051135,1.258556177785143,0.9297963470517211,1.5102928622381955,1.4572778925219563,1.526059377734697,1.003237257500859,0.8470956719817769,1.189996921333191,1.044568857807858,0.8904465212876429,1.1943033451792335,0.9665651970952756,0.8619317774923372,0.7869179509379216,1.1877142045353646,1.2103189081599615,1.18440701601838,0.940805657772621,1.0165148063781324,1.0140070177110387,0.9255048240440036,0.8831775700934581,1.0336545889987638,0.8925067176135784,1.0197217698467396,0.8819596522470098,1.0263065366789195,0.8560918438861745,0.9830686533404607,0.970967619545294,1.1415406916545872,0.9550496736975526,0.726055182998892,0.8683092608326255,0.9623623440836048,0.9373161619156929,1.1427259406764458,1.0747860510305463,0.9800049399218328,0.8902918538481939,0.9624535876747328,1.1196739222791785,5.0,0.01632486480971329,3.555555555555557,2.875,2.2488888888888896,0.9583333333333333,0.5297959183673469,0.3524305555555555,0.15621063240110855,0.058124999999999996,5357.991027636695,5729.872523077368,2590.8937866755787,2451.0908534270416,12.629207376959533,0.4836184258290641,6.52148998584556,0.9365524449735182,1.0,0.06666666666666667,1.8514815911054945,3.7697480026487926,4.30433446092203,4.850209029099896,4.982289237493326,4.982289237493326,0.19999999999999998,0.004081216202428323,0.09609609609609614,0.06845238095238095,0.05766381766381767,0.029947916666666664,0.022074829931972788,0.016019570707070704,0.009188860729476974,0.0058125,0.5093371889499101,17.8112,7.086924762600439,3.3833141099577086,132.49870717684678,1.0,4.073006230524813,100.33613892275541,,69.41779689664352,74.03467949581523,73.4845169194671,69.4294249593393,99.49325783847819,74.82134786494403,75.23814009810526,93.2278937311215,0.20201414698477402,-0.12482298811185655,-0.5967241645471366,0.35858337432365966,0.029853295166222163,-0.18958367948926416,0.1917951523965761,-0.08621920368757272,-0.08013280764641353,-0.2062207845262682,-0.011923491807879535,0.03207041614161495,0.11962671761334417,0.21623388456769918,0.07399949099745193,0.046126017485679835,0.1810728099206508,0.13014044817817333,0.1213771214963869,0.1288973942976252,0.20515816755280156,0.13694317932881658,0.204024929243083,0.06172454279427059,-0.07537268244860298,0.055360440652048336,0.022707170420024965,-0.2097480184549864,0.09245278590539975,-0.09411104857181586,-0.0670438980027071,-0.13508434260077173,0.06056152371549991,-0.015474769226070353,-0.02457887601881638,-0.05133652398902142,-0.07120414735684549,-0.14408531913372027,-0.04023002448458496,-0.279407025459233,-0.2344955457994118,-0.2198069277859218,-0.07731744664008856,-0.2224122634028107,-0.1290615200630469,-0.13422404418194261,-0.1225274715852895,-0.17143102892195708,-0.28521028946052557,-0.055614933692845335,0.04859168531159304,-0.010257579211306133,-0.1323638035515089,0.07645924965261613,-0.28642943552559885,-0.023062093700713163,-0.10031446313230252,0.10379597659190185,-0.023860250049271933,-0.14440541850486371,0.04641230068337129,-0.1544411830326975,-0.000489921318589553,0.028037383177570093,-0.13512051915945616,-0.06455603452951823,0.046653209538960815,0.08013367727977039,-0.14254587243239944,-0.15954501373779095,-0.1561293690896824,0.058056422549789585,-0.05660592255125287,-0.07830213358023745,-0.028473095282861162,-0.044859813084112146,-0.06495673671199013,0.11158564147548737,-0.0559797774986952,0.052169590987037835,-0.08474988013424958,-0.014581852352731777,-0.08138668675968327,0.002712271027133567,-0.13056533443777182,-0.10444681184518684,-0.012097209967727167,-0.056584536958368736,-0.03967299696595129,-0.03120604724545832,-0.12824369347990233,-0.0646500654881968,-0.10861360471077569,-0.054452296612923994,-0.12268741987663338,-0.05612709484844522,6.7042230055001895,12.022190161676484,6.631975707865092,21.28058176488281,39.334812572747126,44.42665506339471,46.43017516107091,46.56331201113148,46.56331201113148,46.522001417271184,31.058807325337998,6.168543101291366,7.059240815930193,0.0,15.463194091933193,4313.667850700034,3686.469062330525,907.0490101961896,82.0,37.0,51.0,67.0,84.0,83.0,89.0,87.0,91.0,331.0626768960003,25.0,4.8283137373023015,5.707110264748875,6.621405651764134,7.523481312573497,8.444837529224097,9.357984213888745,10.283395507779986,11.203338557130397,12.131526885253521,0.7962962962962964,1.0194444444444448,1.1202552551885827,0.766302185959167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7173371423819029,1.0055555555555553,1.0322185805616253,0.6900561831422303,8.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,10.423315998847038,5.817862777835028,11.456204184712009,0.0,15.930470882759089,9.099753175368056,13.401775505276145,0.0,0.0,18.19910120538483,24.26546827384644,18.80796704598726,4.895483475517775,218.60298635403709,-505.28754408761085,-35.06044117866352,-14.035765113544748,-36.09196743482935,296.87443398500665,686.2072479089594,25.89532522759151,19.061312441915536,31.19123854131634,0.45454545454545453,0.7155730376393734,0.2184186876903647,66.78888110945167,0.12686983538940852,162.03050041106184,0.2844269623606266,6.0,0.08,0.3581254255311181,0.7291687986957458,0.8325719347420324,0.9381584892908077,0.9637062889893685,0.9637062889893685,1.5809999999999997,,2.053571428571429,1.675270236251707,1.2813850046163564,2.0499215542742757,-5.459584580867579,1.5300642594859242,1.4861242843716291,-2.3963729217909213,83.80630000000004,18.318861563241466,0.0,9.289194512243443,0.0,4.895483475517775,12.36446058668352,59.92190385559717,0.0,0.0,3.9318256327243257,0.0,5.293304824724492,0.0,6.876264611890766,0.0,8.565411763686711,0.0,10.315299145703156,28.66666666666667,12.364373530276307,3.9401538485764673,0.0,0.0,0.0,0.0,0.2996421747711442,0.0,36.70000000000001,0.0,37.41463514109347,0.0,0.0,-3.9059285766775846,0.0,0.0,-1.5115858843537404,40.32918918678898,5.316788604006331,5.817862777835028,0.0,35.76837060344178,14.817828337479405,0.0,5.563451491696996,59.25393583941795,0.0,5.759164871656176,0.0,27.58687869453001,25.824137125748507,29.23233861217556,200.67227784551085,,139.40589455158118,147.9236833189129,146.85760905592406,139.43015463885993,200.99304660925625,149.50964666384579,150.3470519975695,187.08092822444934,29.23233861217556,200.6722778455109,,137.76143186372445,146.47054265480995,145.7908869888702,137.78852199966013,204.45109790514022,148.17454602196338,149.0408180894909,188.8521603840339,5.095840272269893,147.0810737068477,,106.00566249928717,110.58011341770128,109.11512644878476,106.02566963776277,152.51538555936907,111.94048801831559,112.86463992209636,141.44352082332642,1.270971244007633,8.724881645456993,,6.0611258500687475,6.431464492126648,6.385113437214089,6.062180636472171,8.738828113445924,6.500419420167208,6.536828347720413,8.133953401063014,2.5479201361349464,100.33613892275541,,69.41779689664352,74.03467949581523,73.4845169194671,69.4294249593393,99.49325783847819,74.82134786494403,75.23814009810526,93.2278937311215,36.19999999999999,0.0,1.217091836734694,0.0,0.0,0.0,10.364462081128748,37.15986890021851,0.0,2.4670169595616023,0.0,0.0,0.0,0.7668055555555555,0.0,0.0,0.0,24.84202259312029,368.86174350651766,66.6533372797978,135.71092809535654,154.95604059319308,174.60752504759625,179.36241254975974,179.36241254975974,719.0,124.10139365966555,146.61567683252608,57.98210597872946,107.97999999999999,99.6,0.8333333333333334,8.376975207569973,5.643856189774724,3.900713556531965,4.726888466873285,,4.724604744397933,4.736239200878737,4.737352336252628,4.724600553531125,4.728802131645221,4.736160175612802,4.735620666190087,4.734441867168975,0.1695962415883463,0.20551688986405586,,0.20541759758251882,0.20592344351646683,0.205971840706636,0.20541741537091845,0.205600092680227,0.2059200076353392,0.20589655070391683,0.20584529857256414,2.194068622548302,2.3861762795605586,,2.385693028402515,2.388152526183677,2.3883875237291488,2.3856921413719814,2.386581044242339,2.3881358408090856,2.388021921487617,2.3877729687435254,224.99999999999983,315.39023196072105,129.55161116315176,,128.34091341815736,127.82335895276776,128.02541715571684,128.34202933758903,129.52700411255066,127.85170523832097,127.85943254995524,128.7545882889495,13.712618780900915,5.63267874622399,,5.580039713832929,5.557537345772511,5.566322485031167,5.580088232069088,5.631608874458724,5.558769792970478,5.559105763041532,5.598025577780413,6.586719826663339,5.696988466478407,,5.687599232406506,5.683558425584982,5.685137938671042,5.687607927331223,5.696798508301821,5.683780162387975,5.683840600206237,5.690817299039684,25.770619173595364,16.304110659695976,12.83147904069035,-0.2582185899050973,-0.9068604077433429,10.877786215566472,1.4865873147098345,0.0,-2.6888367399428907,274.69540295387736,112.68490348419022,-260.4643197557325,-18.072865774726253,-7.235119993214793,-18.604594268266606,153.03206739520496,353.7243419700651,13.348455447159433,9.825676165835139,16.078379180457507,1116.0,42.0,2.0746717693437717,1.1671468786011583,0.16666666666666666,0.04564354645876384,0.9380035982439142,0.41100412354000027,0.1642664266089148,0.035997930146750165,0.0,0.0,0.0,0.0,0.0,0.0,0.21747042090427826,0.08685563737184833,0.3541274722489255,0.1944698007652326,16.612519696192862,12.909932682800061,10.92555748620835,8.106477420714388,10.318336087760208,6.7726911178965254,8.895392406533148,5.256851024211376,7.403863445989373,3.6923128117999213,5.815488755648847,2.533833231377082,3.4291081056746977,1.4147938887386686,2.401806949419574,0.8026419029713786,5.231467190929015,2.73551725519597,8.665368261079124,3.7905687850154868,14.833037126527202,5.3618063205853606,74.10448051407373,42.54653725368374,31.577960324057038,27.040435424318925,26.575021882592168,26.575021882592168,124.0,150.0,43.126308999999985,23.985690999999996,0.5,119.08,8.340277777777779,4.972222222222222,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,36.0,0.0,0.0,38.0,12.0,4.0,10.0,28.0,16.0,25.0,22.0,0.0,0.0,0.0,15.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,5.0,2.0,2.0,23.0,8.0,0.0,3.0,4.0,0.0,3.0,2.0,1.0,0.0,0.0,1.0,2.0,3.58351893845611,6.935218440299403,4.23410650459726,4.783316371371566,5.32544603393629,5.8413681376087645,5.96854770066123,6.3232943277585765,6.489489845140816,6.827866205339622 +3357,CN1CCN(c2c(F)cc3c(=O)c(C(=O)O)cn(CCF)c3c2F)CC1,0,27.545454545454547,7.01874318181818,3.5454545454545454,11.136363636363637,172.38085716645412,111.59293935112072,1.4069248019836822,7.009302272727271,9.17550505050505,8.35866318181818,219.7623090249981,27.434782608695652,6.707065217391305,4.326086956521739,8.869565217391305,151.26319571348796,105.92576485881746,1.7187458968695661,6.826119565217391,3.736111111111111,8.054082347826082,264.28300512602334,23.451219512195124,6.715317073170734,3.9390243902439024,7.524390243902439,163.83000581178217,89.22348684179511,1.4685129110444028,6.78296463414634,3.9607046070460705,8.115286439024386,224.16871515232333,21.98148148148148,6.670860185185185,3.5,7.314814814814815,163.74982522620314,83.01244212136291,1.3983365137702588,6.731674999999999,3.975308641975307,8.079950518518515,208.82334331986436,20.774193548387096,6.600466935483872,3.0161290322580645,6.758064516129032,163.6464214600563,78.86447382396915,1.261296613069984,6.652088709677419,4.929659498207886,8.045264193548384,187.24368542769793,19.552845528455286,6.827707317073171,2.8292682926829267,5.813008130081301,172.50559341792257,73.04163611464067,1.136925478784772,6.846338211382114,5.028455284552847,8.264452390243902,172.77757488414713,20.96039603960396,7.187990099009901,2.801980198019802,6.297029702970297,174.08751888900835,77.64767806269475,1.1445123193261686,7.1876673267326705,5.496149614961497,8.580567841584157,178.56885925729415,20.88888888888889,7.149221111111111,2.566666666666667,6.266666666666667,172.5763455132949,77.99923425825777,1.1305069465960111,7.137057777777778,7.516666666666669,8.544308755555555,170.16747780787554,14.0,6.559176470588237,2.235294117647059,2.9411764705882355,172.88296532739625,48.02471279413848,1.038209248269247,6.572365882352941,4.237254901960783,8.06712014117647,140.90551937239707,8.504132231404956,0.2929724690082643,0.028623889693248958,0.7169421487603306,5.549586776859505,2.835644873137101,41.13057098074428,0.22825561888085336,0.2575724690082644,4.382059228650136,0.17360227066115697,45.37190342354376,0.18361480416816447,-0.01511777533237514,-0.010750367522481796,0.28108156665468903,1.4049586776859504,-0.5874516740968874,0.8700331306898801,-0.020694552149679354,-0.010700433435141954,-0.13282778376651888,-0.01145172718289616,-1.453089884729293,0.39941544043539656,-0.028193477877444053,-0.0038729304760940267,0.08128401531949203,0.39941544043539595,-0.0011181950066909941,1.9982121456834003,0.03839916759842277,-0.021712796059262268,0.18347415395641564,-0.014839069995968556,8.966266805262075,0.25512702785430075,0.008396596648301193,-0.001224813531217656,-0.009450566268748102,0.8207835935108659,0.3442167652137437,1.2271606372949242,0.0046413898852291965,0.007285359274563822,-0.06990995816753388,0.0033987739516375894,1.4156535285984855,1.5985070647827244,0.05446662556651559,0.005341263471743598,-0.041722207411356974,1.1938149826712876,-0.4185471317816783,7.774005534101398,-0.028845201064239292,0.05113902292721941,0.5918023712195266,0.029616257931218342,-0.8460580247072581,0.35026540348048096,-0.021648060286904525,-0.0016453978388496883,-0.057666465094403006,-0.4568299402002285,-0.3018272835597362,1.4243788974920657,-0.0072603057880761416,-0.016116851861183928,-0.2795709310398889,-0.013209986108311499,1.5997289581872272,-1.9496767858604043,-0.055213580619425606,-0.005903047676739959,-0.19759021356681125,-1.4555273709189103,-0.10347702772321901,-9.341279615344684,-0.02678195783698472,-0.050591775938957556,-0.8596944921764903,-0.03304654968905981,-7.665523037259366,-0.5061524334251606,0.07113970270890722,0.0054476140914635485,-0.11744719926538111,-0.2536271808999082,0.1312850348234543,-2.3840242417694912,-0.018706528762568467,0.05687856634527086,1.5172112539536777,0.05051328085399445,-8.781953585897694,-1.9704423918327667,-0.02137720162858529,0.001635185674165274,-0.021220223626640708,-1.010014584346135,0.11760952824625535,-9.827249706494435,-0.025738688530288607,-0.024390356708799174,-0.4094507913358179,-0.008407518789499262,-10.531950210293624,,,0.4445054945054945,1.1634615384615385,0.4807692307692308,0.057692307692307696,0.6826923076923077,-0.20192307692307693,0.8682564455639064,0.02187579045669325,0.031798867379770175,1.0610147790073428,0.24200111527608315,0.23282361589695807,1.929271224571249,0.4748247311730412,2.015862722283774,1.3573936338168808,0.2530297839418139,0.20065178850351062,0.20478751602156864,0.6584690884668932,8.389318774909102,1212.0,308.8246999999999,156.0,490.0,7584.757715323982,4910.089331449311,61.90469128728202,308.4092999999999,403.7222222222222,367.7811799999999,9669.541597099917,1262.0,308.52500000000003,199.0,408.0,6958.107002820447,4872.585183505603,79.06231125600004,314.0015,171.86111111111111,370.4877879999998,12157.018235797073,1923.0,550.6560000000002,323.0,617.0,13434.06047656614,7316.325921027199,120.41805870564103,556.2030999999998,324.77777777777777,665.4534879999997,18381.834642490514,2374.0,720.4529,378.0,790.0,17684.981124429938,8965.343749107195,151.02034348718794,727.0208999999999,429.3333333333332,872.6346559999997,22552.92107854535,2576.0,818.4579000000001,374.0,838.0,20292.15626104698,9779.194754172175,156.400780020678,824.8589999999999,611.2777777777778,997.6127599999996,23218.216993034544,2405.0,839.808,348.0,715.0,21218.187990404476,8984.121242100802,139.84183389052697,842.0996,618.5000000000002,1016.5276439999999,21251.641710750097,2117.0,725.987,283.0,636.0,17582.839407789845,7842.415484332169,115.59574425194302,725.9543999999997,555.1111111111112,866.637352,18035.45478498671,1880.0,643.4299,231.0,564.0,15531.87109619654,7019.931083243199,101.745625193641,642.3352,676.5000000000002,768.987788,15315.0730027088,1190.0,557.5300000000001,190.0,250.0,14695.052052828682,4082.100587501771,88.247786102886,558.6511,360.1666666666665,685.7052120000001,11976.96914665375,374.1818181818181,12.890788636363629,1.259451146502954,31.545454545454547,244.18181818181822,124.76837441803245,1809.7451231527484,10.043247230757547,11.333188636363635,192.810606060606,7.638499909090907,1996.3637506359257,8.446280991735566,-0.6954176652892564,-0.49451690603416265,12.929752066115695,64.62809917355372,-27.022777008456817,40.021524011734485,-0.9519493988852503,-0.4922199380165299,-6.110078053259868,-0.5267794504132234,-66.84213469754748,32.75206611570252,-2.3118651859504125,-0.3175802990397102,6.665289256198347,32.75206611570247,-0.09169199054866152,163.85339594603883,3.148731743070667,-1.780449276859506,15.044880624426082,-1.2168037396694216,735.2338780314901,27.553719008264483,0.9068324380165288,-0.13227986137150685,-1.020661157024795,88.64462809917352,37.17541064308432,132.53334882785182,0.5012701076047532,0.7868188016528928,-7.550275482093659,0.36706758677685963,152.89058108863642,198.21487603305783,6.753861570247933,0.6623166704962061,-5.1735537190082646,148.03305785123968,-51.899844340928105,963.9766862285733,-3.5768049319656723,6.341238842975207,73.3834940312213,3.6724159834710743,-104.9111950637,43.08264462809916,-2.6627114152892566,-0.20238393417851167,-7.09297520661157,-56.190082644628106,-37.124755877847555,175.19860439152407,-0.8930176119333654,-1.982372778925623,-34.38722451790633,-1.6248282913223144,196.76666185702894,-196.91735537190084,-5.576571642561986,-0.5962078153507359,-19.956611570247937,-147.00826446280993,-10.45117980004512,-943.4692411498131,-2.7049777415354566,-5.109769369834713,-86.82914370982552,-3.337701518595041,-774.217826763196,-45.55371900826445,6.40257324380165,0.49028526823171936,-10.5702479338843,-22.82644628099174,11.815653134110887,-214.5621817592542,-1.683587588631162,5.119070971074377,136.549012855831,4.546195276859501,-790.3758227307925,-167.48760330578517,-1.8170621384297496,0.1389907823040483,-1.8037190082644603,-85.85123966942147,9.996809900931705,-835.3162250520269,-2.1877885250745317,-2.0731803202479298,-34.80331726354452,-0.7146390971074372,-895.2157678749581,0.7310656619453179,0.5437148310559146,0.44090867894639546,0.2902453970625429,0.2795623246907922,0.1528511728340328,0.16842460505032283,0.08078847529123448,0.10653531279313118,0.04071291732144426,0.06507549457799187,0.02221325544587179,0.040526050340251155,0.01116561974448593,0.02682201810228534,0.005708460664502983,9.006250625139275,5.669338263424483,4.110103554986407,2.164130792278595,0.49727100034940946,-0.45335280736872924,3.3235385298674185,0.9726459264870461,7.005839884025792,0.9969624202531788,17.426855292847833,10.933569413566628,19.002214758652872,11.684129983897977,2.0159753075752347,0.54514856879881,3.9911182991731193,2.2127230247440743,8.003986904304119,1.3522137525757416,4.012503600151437,2.408139614826637,20.91166706681584,13.303154496141202,0.324555546315897,0.6299433968091755,0.7744251973741747,0.8430773213580768,0.8430773213580768,0.8430773213580768,1.8167888683747975,921.0797704773661,0.0,2.0,6.0,0.0,6.0,0.0,2.0,0.0,0.0,3.6093222916751775,1.8684772592855587,1.0448674647962974,0.6535201705037155,0.6535201705037155,0.6535201705037155,140.0861110152941,1500.8429351476361,79.84876847988264,34.11006670790082,79.4988953432844,,12.0,494.0,40.65680404038088,18.369904463493285,17.7488433982124,26.1790256236503,16.83031028786604,0.0,4.899909730850478,11.947581713527669,0.0,5.106527394840706,11.557142857142857,30.25,12.5,1.5,17.75,0.0,0.055494505494505506,-5.25,0.25134257634257634,0.06028971028971042,-0.19105286605286592,0.024562474562474512,0.25250541928123205,0.0,0.6918831168831171,0.963186813186813,0.44054054054054076,0.6315934065934067,0.9386243386243385,22.574667584661565,0.5687705518740245,0.8267705518740245,27.586384254190914,6.2920289971781616,6.05341401332091,50.16105183885248,12.345443010499071,0.4614945807187679,0.20395550061804693,0.0,0.449938195302843,0.4117647058823529,0.37399670041766175,-1.0097639242228098,-0.09021840920153976,-0.022949180095972948,-0.09179672038389179,0.6260032995823381,1.6901634363532412,0.053424786017905915,0.038412805371664575,0.051217073828886094,-3.6170253789238345,0.6520313094181773,0.6100044198456783,1.3757222568618404,0.7111890740508708,0.4134481530641976,1.1987578950502005,0.6489886103685006,1.2112956440993652,0.5894154536796327,0.5646795575926233,0.644214464750898,1.0291911885626688,0.7728895565194721,0.7994651744032473,1.180766190937887,1.0805159204329797,0.7655980422425221,0.9420276474820942,0.7675107742112419,0.8148079967494068,0.7858805322004169,0.5762777701644449,0.7752585183516747,0.758928686416477,0.8198504931072961,0.7348148247402065,0.9650383316506068,1.1296162877574982,0.7158069275530183,0.8497408628486505,0.8192630670839612,0.9962540412853466,0.7334544623308137,0.7330644069868464,0.7347944176725909,0.9551844321614427,0.7293547603373148,0.6601232487971347,0.5905232921368504,1.0772985033001765,0.6894816011337159,1.0867771138935696,0.7285499907068254,1.1600634991749992,0.6497004557883359,0.7277770841967891,0.679985681263731,1.0413488568304028,0.9856735958030137,1.2573042937589456,0.913277245883917,1.0971392422857946,1.1503656417800214,1.3140204771801176,1.0040068842017096,1.0490342984963403,1.235995873685416,1.2213794848254564,1.2326407312796215,0.9460224437358847,1.2510066968796008,1.4785210981221604,1.3554989298044495,1.3091277427454562,1.3686847091261618,1.2828210110539122,1.2551690442233068,1.0936450399584616,1.4672472273695287,1.4994750152788259,1.4828561924323125,1.0659842730950815,1.0802235179786204,0.9510309442438567,0.9227904001935224,1.0829170669228305,1.104527591627368,1.0536291282489147,1.079212300581002,1.0469935445938343,0.961903310396543,0.9004646546668476,0.9223845221891769,1.1116957338847855,1.2722031669810785,1.1513986373742249,0.6591265433890677,0.7938125105950162,1.1902172484779465,1.014144003547565,1.287659937371883,1.1059183410428683,1.17423191227988,1.1641694420882576,1.1006977571133723,1.2443972027565215,5.5,0.08662381389654117,3.555555555555557,2.875,2.6933333333333342,1.5416666666666665,1.0930612244897961,0.35416666666666663,0.2705971277399849,0.16125000000000006,5762.566085848592,6306.413611085134,2586.308347111628,2403.6319078445213,14.009681410163159,0.4712310381184877,7.407884695542695,0.8911851339415081,1.0,0.4117647058823529,1.8501093269621198,3.5909543593517386,4.414564153841,4.805911448133582,4.805911448133582,4.805911448133582,0.1964285714285714,0.009624868210726795,0.08672086720867213,0.05989583333333333,0.05496598639455784,0.03503787878787878,0.02954219525648097,0.011424731182795697,0.015033173763332488,0.011517857142857142,0.5101919627092066,20.727040816326532,8.566329565734682,4.077562326869806,146.58994438188668,1.0,4.186399965427057,123.16026471618696,,92.24793224199972,89.83417331713453,88.74106007024774,92.06694737834005,139.98839137725903,91.23244364485211,92.48721213837092,119.57509351621117,0.021591245193729746,-0.05160135142919757,-0.3755732584805659,0.39205613331662675,0.2531645569620253,-0.20716687045757742,0.02115295533089476,-0.0906639330551668,-0.04154338961901484,-0.03031172716655306,-0.06596530759236464,-0.03202620509800511,0.04696721894332653,-0.09623251622543673,-0.135304129438686,0.11337597525831165,0.07197210468009367,-0.0003943353475902376,0.04858216402147407,0.16822879448355077,-0.08429781390403798,0.041869391622288414,-0.08547739577054252,0.19761716235623966,0.030000359932332746,0.028660019409756682,-0.042789905367282506,-0.013181769665919543,0.14789994760210687,0.1213892361750269,0.029835730650795794,0.020334175815632145,0.028284697128597488,-0.015953677145771752,0.019577934889293217,0.031201105128507656,0.18796827486755074,0.18591038861395257,0.1866015949957826,-0.05819466393976016,0.21511781519467726,-0.14760209776149988,0.18900796533412778,-0.1263723592245768,0.19854227093493665,0.1350512031764179,0.17059833272010824,-0.018647179440751283,0.04118767135193218,-0.07389110778970111,-0.05748337687444908,-0.08043391673109813,-0.08231782987971353,-0.1064404384410174,0.03463066190252754,-0.03180778560314843,-0.0625721061076089,-0.06379898500961358,-0.07609339473499868,0.035258140776106776,-0.22926228482906605,-0.18845996282970914,-0.20622800534800179,-0.2756013353496733,-0.262276711662231,-0.036491532738632884,-0.22711281153178992,-0.11733318096745113,-0.19641763785451105,-0.19618504618918933,-0.19035781941793395,-0.1689486765785911,-0.059518410538818706,0.24282043616494384,0.19031704460307458,-0.16381684277937883,-0.045701993877719865,0.04629812289513263,-0.05796234248451348,-0.08195429691627021,0.22082548870332044,0.3462324844981715,0.2909713142668972,-0.19355488580496016,-0.2317041102155149,-0.07296658863868288,0.05712660619115431,-0.029598236989320178,-0.18199816039595285,0.041475408066928635,-0.238928112889441,-0.11276256267638207,-0.0946931820885585,-0.0934379865654957,-0.048429774319653646,-0.23212493670319612,7.016542182067442,16.967160961760378,12.04955293596763,19.843828426676914,38.04116533587032,42.956111148266125,44.16831649364033,44.16831649364033,44.16831649364033,52.41243077937813,35.2922344792389,6.578774382487162,5.216946501091276,5.324475416560785,17.120196300139224,5783.053380618139,4490.737316515809,1400.2042581018914,149.0,41.0,57.0,79.0,105.0,123.0,143.0,146.0,159.0,369.1300260960005,28.0,4.9344739331306915,5.814130531825066,6.729824070489475,7.635786861395585,8.560444233410552,9.477079667408038,10.405383424480956,11.327475018301639,12.257625656188534,0.7272727272727273,1.0373636363636365,1.156359317085852,0.6988749131477963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6500989929232446,1.0189839572192512,1.0418625438654574,0.6416909590511259,2.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,3.0,0.0,1.0,6.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,19.473446504333015,23.742649579701357,5.817220841045895,5.428790391900541,0.0,4.794537184071822,17.96578232709628,0.0,0.0,0.0,13.1140390511388,32.37586919526338,17.447681337993632,207.89829896409307,-561.3103055903747,-50.15085370352333,-12.757052399781243,-51.02820959912497,347.9844099793872,939.5326295572613,29.697914776359312,21.353014308119576,28.470685744159432,0.5,0.6017849084044683,0.17685550765046928,127.04597716401493,0.12619706097791666,81.24242822145919,0.39821509159553165,6.0,0.14285714285714285,0.3388831395279783,0.657752420067505,0.8086124091692347,0.8802951999118843,0.8802951999118843,0.8802951999118843,1.6991999999999998,,2.178571428571429,2.58487782178892,2.2562608945574714,2.2786641914950576,-10.796042251153574,2.337604869512803,2.10677337999307,-3.7949363148064856,90.76830000000005,23.07230972193699,0.0,9.467009378641833,0.0,6.544756405912575,44.80119830945287,39.68443138983584,0.0,0.0,4.04305126783455,0.0,5.3981627015177525,0.0,6.9650803456014065,0.0,8.63994165667529,0.0,10.375582742942056,32.0,1.7469222411186693,0.0,0.0,0.0,0.0,-0.6951800411522631,-2.85109943964832,1.0223526077097502,45.644000000000005,0.0,23.5492370513439,0.0,0.0,0.0,0.0,0.0,-1.5338252521955618,50.87980995177748,10.32870012275102,18.858631417708022,0.0,60.444130640036775,6.544756405912575,11.63444168209179,10.357988675768818,17.05774782414651,0.0,10.902924932081056,0.0,30.750496178503035,28.60435568862276,32.674927724646906,246.32052943237392,,184.35284898529036,179.52115027877974,177.4397699237648,183.9749956521802,284.1233848561112,182.32232775073862,184.8389324067011,240.34921649717836,32.674927724646906,246.32052943237386,,182.5705411680358,177.42628942325018,175.65666168556712,182.10776210391757,290.7728250056716,180.41797690410272,183.11569732549373,242.9451233472288,5.078978452626606,175.36035413998502,,130.69739925951708,127.29873413326965,125.31461390728725,130.5252129070243,191.77443729059652,129.2601102158395,130.99623760981794,167.50925661795912,1.2567279894094965,9.473866516629766,,7.0904941917419375,6.9046596261069135,6.824606535529416,7.0759613712377005,10.927822494465817,7.012397221182255,7.109189707950042,9.24420063450686,2.5394892263133038,123.16026471618696,,92.24793224199972,89.83417331713453,88.74106007024774,92.06694737834005,139.98839137725903,91.23244364485211,92.48721213837092,119.57509351621117,44.83529411764705,0.0,1.899591154121693,0.0,42.70143854997616,0.0,9.132226966348053,45.84195193008013,0.7962170286056462,0.0,0.0,0.0,0.0,3.560512043405261,0.0,0.0,0.0,28.23440219824954,334.52182508518,81.40481038633327,158.0019918114765,194.24082276900398,211.4601037178776,211.4601037178776,211.4601037178776,1056.0,131.14222339663053,221.36088385830027,61.42181871457106,65.78,65.78,1.0,9.181569895642852,5.807354922057604,4.293227694419333,5.0069541395146295,,4.9865834325827345,4.987983000507639,4.987991607653057,4.9865494772109775,4.948812167234156,4.987129545954677,4.986501948263496,4.969476364099503,0.16512414209305126,0.19257515921210114,,0.19179167048395132,0.19184550001952458,0.1918458310635791,0.1917903645081145,0.190338929509006,0.19181267484441067,0.1917885364716729,0.19113370631151932,2.412550271395706,2.5663392190592074,,2.5622624374393643,2.56254306476156,2.5625447903364047,2.5622556280702193,2.554659026596214,2.562371947984467,2.5622460965947553,2.558825920249173,244.84000000000003,223.67070763219908,157.3003193475319,,158.84776779402688,158.61954961152824,158.84975419173225,158.77963096523766,165.08874985484397,158.75865016762373,158.89378959911096,161.8089403567497,8.602719524315349,6.050012282597381,,6.109529530539495,6.100751908135702,6.10960593045124,6.106908883278371,6.349567302109383,6.106101929523989,6.111299599965806,6.223420782951911,6.365686360077785,6.013668285270993,,6.023457753356074,6.0220200102606505,6.023470258317983,6.023028717132496,6.061994652231691,6.0228965705606266,6.023747434100283,6.041927703729432,43.72379115768591,27.109749094749162,8.721326498136078,-2.2119498322745073,-3.452314008809317,0.8428287981859408,0.9040934429327285,0.7962170286056462,1.899591154121693,305.46371673269437,115.56706961290162,-312.0226932294703,-27.877992412542724,-7.091424846124324,-28.365699384497297,193.43851648944042,522.2699432590819,16.508557315855228,11.869771437706406,15.826361916941872,1537.0,48.0,2.0703319903148767,0.8813128701667904,0.0,0.0,0.6565571159771495,0.14287660030420418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1740551756586362,0.08417962652137338,0.4626243493834459,0.15725049229385682,19.007707210578264,14.136585607453778,12.345443010499073,8.1268711177512,11.46205531232248,6.2668980861953445,9.600202487868401,4.604943091600365,8.416289710657363,3.216320468394097,6.832926930689147,2.332391821816538,4.984704191850892,1.3733712285717694,3.8355485886268035,0.8163098750239266,5.031083258210743,1.8074109572028907,8.773459695550958,2.4260921348996667,14.677930927524372,3.3344240201797093,82.58362121431924,42.5355178005803,31.319859668008096,27.968028230746224,27.968028230746228,27.968028230746228,138.0,167.0,47.76927399999998,28.262725999999997,0.36363636363636365,134.09,10.222222222222221,5.749999999999999,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,10.0,11.0,44.0,0.0,1.0,46.0,11.0,2.0,6.0,40.0,13.0,28.0,33.0,0.0,0.0,0.0,17.0,0.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,5.0,1.0,2.0,26.0,9.0,0.0,3.0,3.0,0.0,3.0,4.0,0.0,0.0,3.0,1.0,2.0,3.597312260588446,7.829506077525653,4.255612709818223,4.92180408038964,5.586311890181863,6.216356568956309,6.68050173068953,7.127768937287419,7.429358552169981,7.802329083706762 +25124566,O=C(NNc1cc(C(F)(F)F)cc(C(F)(F)F)c1)[C@@H](c1cccnc1)N1CCN2CCC[C@@H]2C1,0,28.24561403508772,7.176394736842106,3.6315789473684212,11.473684210526315,177.29047700754788,115.78533903330914,1.4059051721320528,7.1484035087719295,9.60648148148148,8.434665263157893,219.7811164484616,27.75,6.736381666666667,4.383333333333334,8.9,153.30384851764174,107.72308320018671,1.7390159185000007,6.852685,3.4879629629629627,8.052408866666664,267.1555141478091,25.577981651376145,7.064917431192659,3.7247706422018347,8.752293577981652,166.82463696203945,99.45760837531947,1.4727281666889356,7.100211009174307,6.531600407747196,8.343460366972476,223.5695544843747,18.952380952380953,6.402617687074831,3.258503401360544,5.27891156462585,163.25991889508728,70.24465967362177,1.315617083905653,6.472662585034014,3.499244142101286,7.854416217687074,188.27107064807808,16.91715976331361,6.449910059171597,2.8579881656804735,4.982248520710059,170.5851047036601,61.88634840313374,1.1358495517006688,6.489459763313609,3.499876725838264,7.935251857988167,163.1088812637782,19.5,6.639606962025317,2.8227848101265822,6.044303797468355,171.25789166244218,73.50695477694177,1.1302051990561137,6.666356962025317,4.165611814345992,8.083374253164557,168.28581680654005,20.628205128205128,7.2287166666666645,2.6474358974358974,7.032051282051282,181.71795043585365,78.20402573839444,1.0977668888722694,7.186141666666665,7.374643874643878,8.565262076923075,163.87026472002978,16.891304347826086,6.3651362318840565,2.9057971014492754,4.536231884057971,167.86708200398752,61.35928256931015,1.2217658558327755,6.416671739130435,3.2936795491143323,7.863402811594203,173.18320276423697,18.755725190839694,6.530068702290075,2.931297709923664,5.679389312977099,164.74263020036136,69.47407217398472,1.2707908063914657,6.577222900763361,5.218829516539442,7.9804709923664126,179.83466793637305,8.699907663896582,0.3386285010772544,0.021436801599474004,0.7356109572176053,5.61218836565097,3.552114212267039,42.65271016958007,0.23342505449058726,0.2950306555863342,4.681196778495947,0.19152057125269312,45.02263095973153,0.2114958448753456,-0.009449758387196071,-0.009887132697407968,0.04684518313327183,1.0825484764542936,-0.32495601556823867,0.9683464017899623,-0.008489174775821416,-0.006474778393351805,-0.26667436134195127,-0.006578214527546912,0.11417030325916003,0.6698010114615358,0.11082063782504703,-0.0023096385462428558,-0.06137950703250963,1.1092022668936954,0.8940398868584664,3.7637689030610186,0.012709656932747861,0.09267183918269846,2.0299577004639393,0.06557611440640874,-1.169780217421523,-0.05830365387152081,0.00857201211047665,0.0029725342761837844,-0.050565009013762464,0.38566340663689297,-0.40808239699731097,-0.1153883643731274,-0.0361406245885808,0.008787103096086008,0.3550396458983717,0.0038447143422466437,-5.130878083396275,0.4666032880394699,-0.019442100163728153,-0.0016712033219017867,-0.005827919742260245,0.55785212017899,-0.4648897276984359,2.149461827395407,-0.01439218553169874,-0.013387501843990306,-0.22441122074885106,-0.013892616929014077,1.0410365876086605,1.6066657316175181,0.02993854311550578,-0.0008826108176302475,-0.07582858990692365,0.9804165643956662,-0.4456839747245325,7.9958103599165815,-0.024721811959554266,0.031275717942424286,0.07558265250067203,0.010636236653147429,1.5145086314232739,0.46945805810071706,0.11307630099202119,0.0041697122641686365,0.08906290692994294,0.7106861282761563,1.6009992257122776,2.6507630329454557,0.04365742777582906,0.09116998543930685,1.5543520294212816,0.066947042332552,1.39332149744072,0.011381428399374083,-0.018131920858591964,-0.003843246274562458,-0.018728170540768405,-0.14613192018948978,0.029566379424625124,0.1231087334686698,0.011236176788092762,-0.014632982054679104,-0.23473945160383805,-0.011489292839268219,3.0099098446425003,0.09813706624939221,0.06292171989502342,-0.0011965056673444603,0.0594874758880595,0.6923516102429638,-0.12686963739428006,0.6736442274508988,-0.01795459318560492,0.052753970100018976,1.218921147787105,0.041902297904933786,-5.663345386839253,,,0.44257703081232497,1.0808823529411764,0.4117647058823529,0.014705882352941176,0.6691176470588235,-0.25735294117647056,1.0118577866037453,0.02630020715407945,0.03641785421290297,1.0713935604473175,0.22116659899669996,0.25001006333078224,2.0832513470510627,0.4711766623274822,2.0263008733925605,1.363494173725373,0.3114317603774927,0.05274205932716014,0.29863287996253446,0.6628066996671872,8.547029468000012,1610.0,409.0545,207.0,654.0,10105.557189430228,6599.764324898621,80.136594811527,407.459,547.5694444444443,480.77591999999987,12527.523637562312,1665.0,404.1829,263.0,534.0,9198.230911058505,6463.3849920112025,104.34095511000004,411.16110000000003,209.27777777777777,483.1445319999998,16029.330848868545,2788.0,770.0759999999998,406.0,954.0,18183.8854288623,10840.879312909821,160.52737016909398,773.9229999999995,711.9444444444443,909.4371799999998,24369.081438796842,2786.0,941.1848000000002,479.0,776.0,23999.20807757783,10325.9649720224,193.395711334131,951.4814,514.388888888889,1154.599184,27675.847385267476,2859.0,1090.0348,483.0,842.0,28828.88269491856,10458.792880129602,191.95857423741302,1096.7187,591.4791666666666,1341.0575640000002,27565.400933578516,3081.0,1049.0579,446.0,955.0,27058.746882665862,11614.0988547568,178.57242145086596,1053.2844,658.1666666666666,1277.1731320000001,26589.159055433327,3218.0,1127.6797999999997,413.0,1097.0,28348.00026799317,12199.828015189532,171.25163466407403,1121.0380999999998,1150.444444444445,1336.1808839999997,25563.761296324647,2331.0,878.3887999999998,401.0,626.0,23165.657316550278,8467.580994564802,168.60368810492304,885.5007,454.5277777777778,1085.149588,23899.2819814647,2457.0,855.4389999999999,384.0,744.0,21581.284556247338,9101.103454791999,166.47359563728202,861.6162000000003,683.6666666666669,1045.4417,23558.341499664868,495.8947368421052,19.3018245614035,1.2218976911700181,41.9298245614035,319.89473684210526,202.47051009922123,2431.204479666064,13.305228105963474,16.816747368421048,266.82821637426895,10.916672561403507,2566.289964704697,12.689750692520736,-0.5669855032317642,-0.5932279618444781,2.81071098799631,64.95290858725762,-19.49736093409432,58.10078410739774,-0.5093504865492849,-0.38848670360110826,-16.000461680517077,-0.39469287165281475,6.850218195549601,73.0083102493074,12.079449522930126,-0.2517506015404713,-6.690366266543549,120.90304709141279,97.45034766757283,410.25081043365105,1.385352605669517,10.101230470914132,221.2653893505694,7.147796470298553,-127.50604369894602,-8.57063711911356,1.2600857802400676,0.4369625385990163,-7.433056325023082,56.692520775623265,-59.98811235860471,-16.962089562849727,-5.312671814521377,1.291704155124643,52.19082794706064,0.5651730083102566,-754.2390782592524,78.85595567867041,-3.2857149276700577,-0.28243336140140196,-0.9849184364419813,94.2770083102493,-78.56636398103566,363.25904882982377,-2.432279354857087,-2.2624878116343616,-37.92549630655583,-2.347852261003379,175.93518330586363,253.85318559556785,4.7302898122499135,-0.1394525091855791,-11.980917205293936,154.90581717451525,-70.41806800647613,1263.33803686682,-3.906046289609574,4.9415634349030375,11.942059095106181,1.6805253911972937,239.29236376487728,73.23545706371186,17.639902954755307,0.6504751132103073,13.8938134810711,110.86703601108039,249.7558792111153,413.51903313949106,6.810558733029334,14.22251772853187,242.47891658971992,10.443738603878112,217.35815360075233,1.5706371191136235,-2.5022050784856913,-0.5303679858896192,-2.5844875346260396,-20.16620498614959,4.080160360598267,16.989005218676432,1.5505923967568012,-2.0193515235457165,-32.39404432132965,-1.5855224118190143,415.36755856066503,12.85595567867038,8.242745306248068,-0.1567422424221243,7.792859341335794,90.69806094182826,-16.619922498650688,88.24739379606774,-2.352051707314245,6.910770083102486,159.67867036011074,5.4892010255463255,-741.8982456759421,0.7208782624026878,0.5281314419072065,0.43297314916579444,0.2906929400231928,0.29551453667472827,0.15317561851938008,0.17662185022942256,0.09044280008411072,0.11148788234016319,0.05223695407524366,0.07321571512948244,0.027782320779136106,0.04669955193937566,0.015423420959090528,0.030103562391698386,0.008985700808997263,9.017357710098878,5.688329505956509,4.1280330052231955,2.1874737718921193,0.5104980429976252,-0.3765588038109991,4.023734994543423,0.9777465468687391,7.01734265213899,1.856055008126878,17.433828082299765,10.949503890104673,19.00871725970224,11.700018128057533,1.9911696378588444,0.5246150800766941,4.010716147290186,2.2372305068821303,8.010506017245554,1.2175550334347534,4.034245143664951,2.433030613044284,20.897063889237508,13.299890587005889,0.29848386254212855,0.6063213771687627,0.7674394924158439,0.8646426156848739,0.8819953374451012,0.8993480592053286,1.4124825280989257,980.8301083438979,0.0,3.0,6.0,0.0,6.0,4.0,3.0,0.0,0.0,4.022260282071851,2.1548904621778404,1.1775336048905913,0.5878907895495944,0.4826276316548581,0.37736447376012094,10.045923925724708,2117.0124353209562,77.89099030029597,37.14056904071853,79.51448638986258,,13.0,783.0,41.11590685146397,31.137027470120742,6.06636706846161,36.82753926959333,25.931156057677168,6.196843571613076,18.3295777085363,4.899909730850478,20.735471046018457,0.0,15.04761904761905,36.75,14.0,0.5,22.75,0.0,0.057422969187675026,-8.75,0.2627610693400166,0.06036234865771428,-0.2023987206823023,0.037667289137877535,0.26147243305169693,0.0,0.7044277360066823,0.9780112044817928,0.4416666666666657,0.644065387348968,0.9403439153439153,34.40316474452734,0.8942070432387013,1.2382070432387011,36.42738105520879,7.519664365887799,8.500342153246596,70.83054579973613,16.020006519134395,0.45252756694830304,0.13607594936708858,0.06645569620253164,0.28575949367088604,0.45454545454545453,0.49301208022498016,-1.4520079391076497,-0.07773628310190268,-0.025473823493116665,-0.06914323519560236,0.5069879197750198,1.4931692631325941,0.030625276360344095,0.02619595198478235,0.04147692397590539,-5.572841105279711,0.6258048538880635,0.5563881607410989,1.6824126044015357,1.168619246861925,0.41284413732587477,1.0536705250472902,0.6198066130095917,1.1555206735479928,0.5396342785272744,0.5654907525868376,0.576647676410415,1.00534795067978,0.7397249069618442,0.46680000196127086,1.0779205309828002,1.1517715250854097,0.6327769576544675,0.7525537992356411,0.7242408432488026,0.9652241323214785,0.47149328657501244,0.32745834982624733,0.4556015412261533,0.9795285194293211,0.8404241339923786,0.5479590538274199,0.7911320235779579,1.0539151225343697,0.6734358106520002,0.8519488197014216,0.8256446639744777,1.13937211163102,0.55425133991175,0.45252347516600827,0.5473351024893163,1.1467336484431507,0.9087631993106905,0.8430235928919388,0.928654971623501,0.964135574756753,0.8089939270742672,0.9285094358981748,0.9065788517116994,1.0199070998149014,0.843096428480249,0.8067203525892628,0.8479692028966914,1.00660190309044,0.7654748246092501,0.6650477731885763,1.2436829980432147,1.0819765902229757,0.7118639125961654,0.8534756363870136,0.7498190506869257,1.0086325532967366,0.6603543726345765,0.7316769948973634,0.7023977994833533,0.9477534532260301,0.9957137958623843,0.7824296850681957,0.9054669496336205,0.68490505310589,0.9364458619147662,0.536833452182274,0.9840617206512005,0.7170405468541827,0.8061963293483752,0.8087915419548396,0.7777661190737821,0.8811774797144607,0.9062816288735277,0.6918344234341993,1.1727492748570074,0.9194105875932328,0.8606997915981135,0.6794527304755381,0.8922886270133575,0.8923584879829225,0.7037199822388381,0.659168904675685,0.6953603042434062,0.9613710709288129,0.8672118689246056,0.4711789660882043,0.9068920292150022,0.7442460634322402,0.6781811011557136,0.7669617697469717,0.8500143438440764,1.0579446433535753,0.48907606935539655,0.4228052465286376,0.4546312300651327,1.1519671064098824,9.5,0.3704764819916334,4.444444444444445,2.8819444444444446,2.248333333333334,1.6908333333333332,0.821950113378685,0.57125141723356,0.3943294910556815,0.5468672839506173,7772.420616203306,8528.203738046297,3351.6710426519658,3115.8635053374055,14.437319898309346,0.4584213872644901,7.818943682145148,0.8464540077552302,0.0,0.45454545454545453,1.8106297320928895,3.677999551986901,4.65535640927415,5.244999224615147,5.350262382509883,5.45552554040462,0.25675675675675674,0.008053836565035513,0.08080808080808083,0.053369341563786,0.04242138364779875,0.02966374269005848,0.015221298395901573,0.01269447593852356,0.008762877579015147,0.013020649617871841,0.5207724435628285,27.04601899196494,11.170909090909092,6.865051903114187,191.45510850327074,1.0,4.459667218610244,211.39208734445162,,173.3912506228496,168.45132444401077,165.20647184541252,172.98109113168093,276.80664834682364,171.25278632765642,173.9046603819841,233.6770833642854,0.024310125238802726,-0.02790597471014471,-0.46122238205771193,0.06368200836820093,0.1928923988153998,-0.09148242318504855,0.02270304508060516,-0.03636788173552183,-0.021946120753058847,-0.0569671333978045,-0.03434730005513395,0.0025358425490788076,0.07698943912256881,0.32726317327839016,-0.10774175128343436,-0.08344017504126519,0.19764166749685294,0.2516923255932894,0.0882421981650615,0.054448555063999655,0.3141091863776851,0.4336407539603918,0.3423972368998802,-0.025982049304665928,-0.0067016405373441995,0.025313912098973147,0.1386650085083925,-0.06873879258816498,0.0687188992082519,-0.11488436818501499,-0.002705299708139588,-0.15482752983586923,0.02978369511677629,0.07584377728561217,0.020074680840283785,-0.11396220020960922,0.05363313107055253,-0.05741424629609854,-0.07795954607065977,-0.007922557005273447,0.09940010631027413,-0.1308769087697022,0.05039449589133973,-0.06165655851771086,-0.04537664676704333,-0.04793885652911042,-0.07253851029237009,0.023122517840855835,0.18467618205707623,0.08841117336628328,-0.04117269143601648,-0.10308246385255021,0.17469416571906984,-0.12547005757455273,0.18746312551128805,-0.10590899084721499,0.10600836675859314,0.01614601053471555,0.05553574001778603,0.03363883005366475,0.053961269042992636,0.3339243466875934,0.19451186525283462,0.12107338268426138,0.12663262206697554,0.4507172714726658,0.062147587396122396,0.18702974224898178,0.3090186857298562,0.33204159170610426,0.3495553605268949,0.030947136312111878,0.0013082240454810163,-0.053545170595239895,-0.1792826348990775,-0.02545934145897764,-0.026038313518462888,0.008323600441258109,0.0028863050666466444,0.04813612151709214,-0.04959817489337845,-0.05014517925889436,-0.059989863042488496,0.06685326424692016,0.011280242278506875,0.1858134200011372,-0.055815493826925154,0.08086812098757547,0.12336571140064656,-0.035716654874480794,0.01579370278635523,-0.07691802075311899,0.1788084360087174,0.26038665013751894,0.21878745260031468,-0.12578885920515345,15.569607868879354,20.72835363875581,5.595778652943333,19.345898979048297,36.426446167987905,42.64097102621297,44.00747133495389,44.49964677355039,46.499436247234605,68.89422969534705,46.35880190666268,10.588679852834751,1.7932300171234448,10.153517918726171,22.535427788684366,10626.163768317643,10482.341137084582,2863.8648493733817,156.0,55.0,68.0,87.0,111.0,119.0,136.0,145.0,135.0,487.1806796760007,37.0,5.220355825078324,6.066108090103747,6.968850378341948,7.837948916025283,8.738254576526122,9.616405300156314,10.515072120952707,11.397278895443902,12.295040024965816,0.736842105263158,1.0459649122807018,1.1705713786255108,0.7119941503913809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6483899464229436,1.0266253869969042,1.045552701856608,0.642367799715042,7.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,6.0,0.0,0.0,6.0,2.0,0.0,0.0,2.0,2.0,2.0,0.0,0.0,0.0,6.041840829147961,0.0,0.0,5.907179729351506,30.429917960940756,0.0,26.34249028604892,0.0,6.06636706846161,49.21531941730804,38.06979719011184,16.814289258077554,354.3802742347176,-1043.7127045997358,-55.87734343359015,-18.31074920350414,-49.7006049809398,364.4261981604423,1073.2997307212204,22.013646866705823,18.82981983721439,29.813881408922786,0.46153846153846156,0.9189851729734991,0.10136341552426907,25.5368417447255,0.14124854056247868,1.0034822333683222,0.08101482702650081,7.0,0.13513513513513514,0.3104172593167211,0.630562130102771,0.7981217540479868,0.8992110620769558,0.917257546347894,0.9353040306188323,4.083600000000003,,2.964285714285715,3.555516462563415,3.421601274265789,3.1685003090144592,-15.662431362429569,3.2204208773364993,2.830809765779364,-5.2755756110794145,111.35740000000003,31.137027470120742,0.0,20.209589379758548,0.0,37.27792193903489,31.604817020760688,59.415876960625184,0.0,0.0,4.31748811353631,0.0,5.68697535633982,2.3978952727983707,7.232010331664759,4.59511985013459,8.854664928370534,6.580639137284949,10.519888668850758,42.00000000000001,7.523934022402602,4.057347946716183,0.0,0.0,0.0,0.0,-2.8937074532777087,0.0,59.62,0.0,13.170969623960694,0.0,0.0,0.0,0.0,0.0,-0.6060950491307626,66.72256858165412,10.85158279422077,32.02987656073248,0.0,52.91184416479793,17.147134218958772,0.0,35.57383855009097,42.7255224855342,0.0,0.0,0.0,40.583666572308715,36.958226946107786,42.58390996063356,422.78417468890336,,346.6264212144866,336.73573118296844,330.31655725317864,345.78158949732114,558.8693232837397,342.34443326886,347.66540194609547,468.63567235926223,42.583909960633555,422.78417468890336,,344.0629547802904,333.67506017199594,327.40079011653006,343.0377481156071,569.2757280560769,339.5648926249119,345.21836797189974,472.62974233965025,4.867320122603976,308.82078268130516,,254.38564715692877,246.58397485234934,240.80711827761036,253.97725096359994,410.92870770010893,251.01359890897572,255.08510372605178,349.5639405865263,1.2524679400186343,12.434828667320687,,10.194894741602546,9.903992093616719,9.715192860387607,10.17004674992121,16.43733303775705,10.068953919672353,10.225452998414573,13.783402128213595,2.4401474063282356,211.39208734445162,,173.3912506228496,168.45132444401077,165.20647184541252,172.98109113168093,276.80664834682364,171.25278632765642,173.9046603819841,233.6770833642854,58.517647058823535,0.0,0.0,0.0,78.80538729454523,0.0,0.0,59.59650400582666,5.048728892426584,4.553200428319476,0.0,0.0,-0.5108084775206905,4.321480274327808,-9.97043750276941,0.0,0.0,36.61496458375739,660.5724903685368,103.2058947292947,209.64597446325334,265.35531532862655,298.9649558030634,304.96495580306333,310.96495580306333,1083.0,149.65531412759418,58.23398202662312,84.1846816589801,60.50000000000001,60.50000000000001,0.8571428571428571,8.036795732986485,6.20945336562895,5.313011630803803,5.755620549405504,,5.753084625782724,5.752489348972151,5.750705658821854,5.753708865365999,5.735733225172178,5.752886157276401,5.752821937586364,5.7543645487195425,0.15626504796481774,0.16928295733545598,,0.1692083713465507,0.16919086320506327,0.16913840173005454,0.16922673133429408,0.16869803603447583,0.1692025340375412,0.16920064522312836,0.16924601613881007,2.893934268210266,2.973952295855327,,2.9735115992478076,2.973408123000137,2.973098002174856,2.973620098558996,2.9704910249766683,2.9734771008973278,2.973465937796455,2.9737340504483627,313.6300000000011,247.40578703709372,230.29663727420638,,229.65286161915088,229.6829957379299,230.14085046510803,229.49553610048667,233.6579682799408,229.65874669263562,229.72470542306388,230.16073185458976,7.276640795208639,6.7734305080648936,,6.754495929975026,6.755382227586174,6.768848543091413,6.749868708837844,6.872293184704141,6.754669020371636,6.756608983031291,6.769433289840875,6.734805282726062,6.66314363684066,,6.660344303100742,6.660475510444299,6.662466946435594,6.659659010391009,6.67763380367491,6.660369928725605,6.660657090705767,6.66255333062482,78.80538729454523,21.549797845004687,0.0,1.659492975041767,-0.6060950491307626,3.939488877247367,-4.825883247147923,2.9778113044396415,0.0,399.5664691103794,254.73083480908676,-750.2274473873479,-40.16499612031179,-13.161885041883297,-35.72511654225465,261.95190994808706,771.4947932623955,15.82355184880958,13.534996373024482,21.43041092395543,3494.0,54.0,4.238330125568916,1.1252793060226667,0.5773502691896257,0.026997462357801944,1.1390372683607215,0.20294588614672188,0.28867513459481287,0.008999154119267315,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.40481150277058675,0.21882573488619894,0.47655187683640865,0.2518886339236059,24.509860921691384,17.95646902484502,16.020006519134395,10.755638780858133,16.253299517110054,8.424659018565904,12.010285815600735,6.150110405719529,9.699445763594197,4.544615004546198,8.126944379372551,3.0838376064841078,5.5572466807857035,1.8353870941317727,4.09408448527098,1.2220553100236278,6.727530284173962,2.2192136679314145,9.159795001687627,3.0322424257443874,13.997295063693915,3.790880609668303,112.18539813496962,62.122876125465616,45.33573116794586,40.73496873006337,39.53044591807574,33.141599300920284,184.0,215.0,61.720238999999985,35.179761000000006,0.43859649122807015,247.12,12.125,7.1111111111111125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,12.0,12.0,57.0,0.0,2.0,60.0,12.0,1.0,7.0,53.0,13.0,37.0,47.0,0.0,0.0,0.0,22.0,0.0,6.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,5.0,2.0,3.0,34.0,12.0,0.0,5.0,1.0,0.0,4.0,5.0,0.0,0.0,6.0,1.0,2.0,3.8066624897703196,6.437951629739068,4.343805421853684,4.783316371371566,5.262690188904886,5.739390902123569,5.81655296848904,6.0931464298849995,6.130002915134306,6.129322504139831 +5362119,NCCCC[C@H](N[C@@H](CCc1ccccc1)C(=O)O)C(=O)N1CCC[C@H]1C(=O)O,0,20.9,6.180245,2.816666666666667,6.333333333333333,165.93508846807035,82.15787795000003,1.31993200083865,6.224755,5.549074074074074,7.733111799999998,194.48912364302666,22.442622950819672,6.347737704918034,3.557377049180328,5.459016393442623,149.21700902150172,83.61741222950823,1.687375490688525,6.475073770491804,3.1393442622950816,7.7852603278688495,244.17391380319663,17.972727272727273,6.1658909090909075,3.109090909090909,4.109090909090909,155.44752812561987,64.97803708181819,1.4224175989862733,6.263307272727269,3.1810606060606057,7.662366363636361,195.43391107768136,13.836477987421384,6.0134836477987434,2.5723270440251573,2.842767295597484,163.8534668052151,48.42914789937107,1.1573042157607543,6.074547798742139,2.765024458420685,7.594890465408804,152.878285102816,13.975460122699387,6.122570552147239,2.4723926380368098,2.723926380368098,164.28529409828724,48.663248987730064,1.1181660596632579,6.177714723926378,2.9955691888207228,7.720163411042946,151.78649629305903,14.313253012048193,6.224277108433734,2.4457831325301207,3.066265060240964,164.7810663817495,49.73300398795182,1.116995114160024,6.271353614457833,3.499999999999999,7.815096,152.23301774755816,14.413793103448276,6.13501091954023,2.442528735632184,3.1264367816091956,165.0865286224047,50.74490175287355,1.1244544049962988,6.184705172413792,3.4150702426564488,7.717291609195402,151.53156143517873,13.540983606557377,6.095622404371585,2.33879781420765,2.568306010928962,164.07241309558256,46.79342629508196,1.1191204098216174,6.150629508196718,3.0889496053430476,7.6991439562841535,150.17269479517026,12.861702127659575,6.064021276595745,2.122340425531915,2.398936170212766,163.91620112513914,43.961323749999984,1.0631402072061273,6.117279255319147,3.1328309692671397,7.68605065957447,141.46243593080317,7.69888888888889,0.14421497222222218,0.02606067327501186,0.516388888888889,3.6655555555555566,1.3644269174592358,36.48393488750001,0.21566088510534756,0.13455363888888883,2.3885802469135795,0.09065154999999997,48.340990576548556,-0.0939708561020034,-0.014379890255008987,-0.016608469223040018,0.13907559198542818,0.7634061930783244,-0.02869327949727847,-0.34838756454918357,0.010623498631693509,-0.012179048724954284,-0.15553531673750243,-0.009338061475409856,1.951080218082397,-0.27101010101010076,0.020717921717171763,0.00046641580784962544,-0.0368434343434343,0.33262626262626277,-0.2149632532310094,-1.4728553943181828,-0.03135208841615793,0.01703414898989906,0.39677328843995513,0.016086077272727258,-6.672105390626609,0.23318658280922433,0.015047805555555537,0.004402346032128017,-0.020791404612159316,0.014737945492662543,0.09810972467053292,1.030299664701258,-0.0021526636206934107,0.012765323375262042,0.0070463545306312285,0.009128545597484279,-0.35290129371813933,-0.2628970688479891,-0.019455002897068797,-0.003883319869341901,-0.01925187457396045,-0.42015678254942074,-0.06683460518320389,-1.176325966641105,-0.00648263508885486,-0.016140683878663888,-0.36245550253730213,-0.013661019938650319,-0.3368700840578554,-0.5892503346720216,-0.014979409973226158,-0.002194841174361117,-0.014079651941097707,-0.23844712182061578,-0.08420684558831727,-2.736685148343375,-0.0024625029969384633,-0.013885867804551444,-0.11148296891268776,-0.008322424698795204,-1.722301491452231,0.36490421455938715,0.017058207854406156,0.005230280941815416,-0.025105363984674323,0.17141762452107281,0.09505452922750489,1.6532262162356324,0.0017041079365757758,0.0148807289272031,0.2579821200510856,0.011216083333333321,0.5787244594050278,-0.41856102003642986,-0.015441729963570098,-0.001627410678250399,-0.05181693989071038,-0.33331511839708566,0.056163093056789064,-1.9261424415983608,-0.0021167260159704513,-0.013782163479052789,-0.21888281724347294,-0.010434728142076506,-0.704706737812748,-0.4334633569739956,-0.016841603427895965,-0.003143889324785711,-0.06284278959810877,-0.25030732860520105,-0.19993756006216742,-2.0336002393617023,-0.023007489087361065,-0.01420143144208036,-0.30084384029419486,-0.012493648936170216,-3.525804043710839,,,0.4609195402298852,0.9741379310344828,0.3620689655172414,0.0,0.6120689655172413,-0.25,1.0703998858804724,0.016532901875758028,0.022463936358516647,0.8323194877572152,0.18800298757121325,0.29250595753141134,1.9027193736376875,0.4805089451026246,1.9853725388922845,1.4816979932773695,0.20593013454149087,0.297744411073424,0.0,0.5036745456149148,6.753772851533347,1254.0,370.8147,169.0,380.0,9956.105308084221,4929.472677000002,79.19592005031899,373.4853,332.94444444444446,463.98670799999985,11669.3474185816,1369.0,387.21200000000005,217.0,333.0,9102.237550311605,5100.662146000002,102.92990493200003,394.97950000000003,191.49999999999997,474.9008799999998,14894.608741994994,1977.0,678.2479999999998,342.0,452.0,17099.228093818187,7147.584079000001,156.46593588849007,688.9637999999997,349.91666666666663,842.8602999999997,21497.730218544948,2200.0,956.1439000000003,409.0,452.0,26052.7012220292,7700.2345159999995,184.01137030595993,965.8531000000002,439.6388888888889,1207.5875839999999,24307.647331347744,2278.0,997.9789999999999,403.0,444.0,26778.50293802082,7932.109585,182.26106772511105,1006.9674999999996,488.2777777777778,1258.3866360000002,24741.198895768623,2376.0,1033.2299999999998,406.0,509.0,27353.657019370417,8255.678662000002,185.421188950564,1041.0447000000001,580.9999999999999,1297.305936,25270.680946094653,2508.0,1067.4919,425.0,544.0,28725.055980298417,8829.612904999998,195.65506646935597,1076.1386999999997,594.2222222222221,1342.80874,26366.491689721097,2478.0,1115.4989,428.0,470.0,30025.25159649161,8563.197011999999,204.799034997356,1125.5651999999993,565.2777777777777,1408.943344,27481.603147516158,2418.0,1140.036,399.0,451.0,30816.245811526158,8264.728864999997,199.87035895475194,1150.0484999999996,588.9722222222223,1444.9775240000004,26594.937954990997,461.9333333333334,8.652898333333331,1.5636403965007115,30.983333333333338,219.9333333333334,81.86561504755414,2189.0360932500007,12.939653106320854,8.07321833333333,143.31481481481478,5.439092999999998,2900.4594345929136,-5.732222222222207,-0.8771733055555482,-1.013116622605441,8.483611111111118,46.567777777777785,-1.7502900493339868,-21.251641437500197,0.648033416533304,-0.7429219722222113,-9.487654320987648,-0.5696217500000011,119.01589330302622,-29.811111111111085,2.278971388888894,0.0513057388634588,-4.052777777777774,36.5888888888889,-23.645957855411034,-162.0140933750001,-3.448729725777372,1.8737563888888968,43.64506172839506,1.7694684999999986,-733.9315929689269,37.07666666666667,2.3926010833333304,0.6999730191083546,-3.305833333333331,2.3433333333333444,15.599446222614734,163.8176466875,-0.34227351569025233,2.0296864166666646,1.1203703703703654,1.4514387500000003,-56.11130570118416,-42.852222222222224,-3.171165472222214,-0.6329811387027299,-3.1380555555555536,-68.48555555555558,-10.894040644862233,-191.74113256250013,-1.0566695194833422,-2.6309314722222137,-59.08024691358025,-2.226746250000002,-54.90982370143043,-97.81555555555558,-2.4865820555555422,-0.3643436349439454,-2.3372222222222194,-39.58222222222222,-13.978336367660667,-454.2897346250002,-0.40877549749178493,-2.30505405555554,-18.506172839506167,-1.3815225000000038,-285.90204758107035,63.49333333333336,2.9681281666666712,0.9100688838758824,-4.368333333333332,29.826666666666668,16.53948808558585,287.66136162500004,0.296514780964185,2.5892468333333394,44.8888888888889,1.9515984999999978,100.69805593647484,-76.59666666666666,-2.825836583333328,-0.297816154119823,-9.4825,-60.99666666666668,10.277846029392398,-352.48406681250003,-0.3873608609225926,-2.5221359166666604,-40.05555555555555,-1.9095552500000006,-128.96133301973288,-81.49111111111117,-3.1662214444444414,-0.5910511930597137,-11.814444444444447,-47.057777777777794,-37.58826129168747,-382.31684500000006,-4.32540794842388,-2.6698691111111077,-56.55864197530864,-2.3488060000000006,-662.8511602176377,0.7319104783212146,0.5733275555612767,0.4644919802658705,0.3399408437551827,0.3061229002519467,0.1909410959839992,0.19369387759712964,0.11106113830576779,0.12521488082370827,0.06552489960500618,0.08299163202043656,0.03681123266925611,0.0543771120138249,0.02208635284763595,0.034512606280977104,0.013557262701685533,8.031457251328318,5.694126753334373,3.5579499847699623,2.1941230982599467,0.4573239408741528,-0.4007981763776166,3.1905334030231614,0.9715293625547471,6.0245176763751385,1.8361462431620754,14.544138433028062,10.95442974753347,16.016666603955553,11.705129341657596,1.9821737907407735,0.7404423381453599,3.504112942396203,2.244122023054602,7.010474517964277,1.2446240197792697,3.7169838906572124,2.440121602404275,20.891300690099932,14.699772941011098,0.2534036712501301,0.5527478113217023,0.7315929090633746,0.8672763684684265,0.9133106611186774,0.9188056896760828,1.9872888191927842,682.1539555768753,0.0,3.0,2.0,0.0,5.0,10.0,1.0,0.0,0.0,4.3697213246157895,2.553873072300749,1.4689827581236266,0.645914791702725,0.36666666666666803,0.3333333333333348,205.33260055855405,2126.467778042187,83.56326625059862,35.44112963403646,69.89178097246645,,13.0,612.0,30.064133063347583,24.596666341896878,5.907179729351506,51.61444254938121,11.984273114623004,4.899909730850478,0.0,30.33183534230805,5.316788604006331,5.733667477162185,13.36666666666667,28.25,10.5,0.0,17.75,0.0,0.0390804597701148,-7.25,0.14075163398692825,0.025202020202020448,-0.1155496137849078,0.08434753211629464,0.18636842105263118,0.0,0.577222222222222,0.8735632183908043,0.4364705882352937,0.5520202020202015,0.7892156862745097,31.041596690533698,0.4794541543969828,0.6514541543969827,24.13726514495924,5.452086639565184,8.482672768410929,55.17886183549294,13.934759407976113,0.5276315789473688,0.15461346633416453,0.0,0.2917705735660847,0.5714285714285714,0.3423293635201853,-1.117958977523921,-0.07295781739977969,-0.018632649625398685,-0.05081631716017822,0.6576706364798147,2.147781845956448,0.05537517346697648,0.03579636409927415,0.056520574893590754,-2.687485826257681,0.9233821264393649,0.8349954026427967,1.658212187873408,1.0301678145309923,0.5958959247461971,1.3992578453272266,0.9295350695059461,1.2140239641574224,0.8253436526899398,0.7201607146261538,0.8256522747812405,1.1075685804621636,0.947480287067529,0.5661637914316637,0.8277050403711179,1.3762531175118589,0.7657692413679074,1.396950722415341,0.9604557733409295,1.2941179429974496,0.5924754464541674,0.41973798588025246,0.49098019902148465,1.2257171154409565,0.9241920067967005,0.7476790949970964,0.6967238503317681,1.20362946197489,0.9591671575720484,0.9724692189620557,0.929264344660469,1.0123203171765978,0.7653387923747864,0.7577693963678209,0.7149762103036171,1.0085311240573236,1.0370723384512675,1.2064228885034851,1.1676635096619834,1.1857750555249373,1.1882574567121098,1.0483045451533919,1.0334996543329922,1.0111221334686369,1.183318163231956,1.2576338313553297,1.2355361973418344,0.9820012664962653,1.1033512024718877,1.2823344515455282,1.1770220080348845,1.1414026196231941,1.1708230314407062,1.0608586587454785,1.0979588816422436,0.9773456223427465,1.264440200394545,1.2814056328687282,1.298313160686237,0.9935740069813623,0.9472867657670658,0.9068598508462027,0.8587132311045498,1.1327001910556287,0.9782353064146917,0.9472603785884115,0.9486470034036394,0.9636355792280805,0.9097425922928271,0.8794228515668515,0.893313424334434,0.9602897079377376,1.0525020760926396,1.1633502099658137,1.1216886352024282,1.155036640534749,1.118495917789295,0.9478570961441708,1.0495538812671292,0.9990584132537843,1.1521321605375037,1.1774591752651573,1.1895887205936926,0.995729966049967,1.0615363888436817,1.2100523666212393,1.2012915592342375,1.0432856832202166,1.0873217544968492,1.0867196785385962,1.058599314770256,1.0930113653258375,1.1912711746596774,1.2992772170795612,1.2704733084584883,1.051755174676269,5.0,0.11019691868176718,3.1111111111111125,1.6180555555555554,1.6011111111111114,1.0280555555555555,0.6946938775510205,0.5876913265306123,0.491087175610985,0.19000000000000006,5691.455256587905,6651.962010757639,2649.9688146731937,2318.6339966553587,14.119201790724233,0.4584821696674202,7.645799519740862,0.8466612620785502,1.0,0.5714285714285714,1.537169270992729,3.35301752330777,4.437907837484892,5.260975803905794,5.540223928941851,5.573557262275184,0.16666666666666666,0.005008950849171236,0.07977207977207981,0.04045138888888889,0.039051490514905154,0.02447751322751323,0.015437641723356009,0.013356621057513913,0.011977735990511829,0.005937500000000002,0.4021375886906068,25.26222222222222,13.420118343195266,8.215277777777779,170.62232403726435,1.0,4.255624393598209,169.02568681544776,,150.7367703579144,148.23851919293963,146.90771216765555,150.7605440031847,195.2914302335471,149.71079437267065,150.88385510597246,179.75322406681073,-0.012205768580141874,-0.0997114934283722,-0.6373000823031292,0.2693233626398824,0.20826479956668437,-0.021029546639778695,-0.00954906770948511,0.049260201387488815,-0.09051445078353808,-0.06511621995471094,-0.10301049982498764,0.04036078273970901,-0.03520119655204079,0.14365999173267063,0.01789730460635665,-0.07134823218739295,0.09074375155005651,-0.15754838202056487,-0.040369971025872184,-0.1453767956152217,0.12659746054111143,0.1661126055750685,0.1774495557188737,-0.13802169361964658,0.03028834240558549,0.10434288010240873,0.16892679577657663,-0.0402630750961665,0.004020658061047676,0.07190544500047515,0.028239817549237413,-0.00998170632399038,0.09487163246326873,0.0029500179195303252,0.1006992775907779,-0.00730024952962674,-0.03414740394908214,-0.13490279543992423,-0.14901072694332124,-0.03728173666823971,-0.11462294764912961,-0.04898364604801244,-0.032242299803142485,-0.03005939202043141,-0.11995724539261608,-0.15174516452007483,-0.15069813961978945,-0.006968621868110408,-0.07653706179893482,-0.1038686187876821,-0.08422043249610243,-0.027265598164578665,-0.065050745570947,-0.061715907617186885,-0.07501069050753645,-0.011418403461228318,-0.10319949664102404,-0.04667331945692059,-0.0918067556351238,-0.0356281795410242,0.04739699712851037,0.11828319620046805,0.20069630920972573,-0.04861716532804064,0.0467644322731026,0.06966626648242212,0.045313813362879735,0.007901794225426372,0.11059328495375179,0.10800646969447183,0.1237274302903075,0.011971712877679046,-0.05436641911282823,-0.10707438850229638,-0.062446992872238385,-0.1003448002186968,-0.09093167825322128,0.04116240477091513,-0.052794262667601906,-0.009815066904396956,-0.10242876813189548,-0.09163720478987628,-0.11510810506909712,-0.01457782989979976,-0.05630206686052763,-0.11678124100696412,-0.12063730248290297,-0.12169663397159308,-0.06828632790078232,-0.14653592471957433,-0.05573960828601431,-0.10668364398171788,-0.10554475939374307,-0.1259509035473823,-0.1378205771017729,-0.0729361149132367,18.134242624711348,21.278553230206153,6.130850101614126,14.669715211684657,29.079481406824204,35.467841627810905,38.26976125773492,39.55064336777127,39.584243367771265,57.57580362787625,42.969241805043715,5.971973901703235,8.634587921129295,0.0,14.606561822832528,7049.677393641977,5801.957531113461,1996.0463001554972,54.0,39.0,48.0,57.0,63.0,63.0,62.0,66.0,64.0,405.2263710920008,30.0,4.9344739331306915,5.746203190540153,6.588926477533519,7.427144133408616,8.278682162970906,9.128153700988236,9.985205778820985,10.840737105801496,11.701419598819943,0.6055555555555555,0.9827333333333335,1.139268910834229,0.5626717175922074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6292473353293414,0.9677777777777778,1.0067370721048798,0.587436952981885,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,2.0,9.0,1.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,20.846631997694075,12.083681658295921,0.0,5.907179729351506,0.0,14.905862972149976,4.794537184071822,0.0,0.0,36.75265696523406,50.63313763516564,6.544756405912575,6.041840829147961,222.9057357428537,-727.9523610033648,-47.50605030915422,-12.132539350056081,-33.088743681971124,428.23833630140774,1398.5154170388223,36.057215941444404,23.30859028398038,36.80303729049533,0.46153846153846156,0.7244335382114694,0.14700505405898587,110.6405120143159,0.0997983346981777,38.820664067292306,0.2755664617885308,7.0,0.4,0.26023323881020216,0.5676451034662082,0.7513103155802915,0.8906506255282719,0.9379256038804465,0.9435687308004059,1.2352000000000007,,1.6785714285714288,1.9855746859004184,1.5414196857644495,1.6738284309400313,-6.966016776241215,1.7771572827417383,1.6632629804309462,-2.9529462750204147,108.38670000000006,24.596666341896878,0.0,10.216698334856808,5.733667477162185,63.07127384792595,13.08951281182515,35.89528683400505,0.0,0.0,4.110873864173311,0.0,5.37989735354046,2.3978952727983707,6.829793737512425,4.59511985013459,8.365672383774996,6.6052979209482015,9.949941656908011,36.33333333333333,9.570092292736073,0.0,0.0,0.0,0.0,0.0,1.0250392780186253,0.0,58.964000000000006,0.0,36.32819508618629,0.0,0.0,0.0,0.0,0.0,-2.373087580867196,68.35613465005375,11.050456081168516,0.0,0.0,64.17379012505612,20.804433175141472,0.0,44.08838122925306,30.33183534230805,0.0,0.0,0.0,33.76030305553244,37.75484011976049,36.286056407763624,338.0513736308955,,301.3577771690307,296.34010220064476,293.70911952939633,301.4056515628563,392.0395842139767,299.2990261741178,301.65300242019106,360.1174025353498,36.286056407763624,338.05137363089557,,299.7949692872573,294.49146369997885,292.27400464954667,299.84725957542923,397.54887724333526,297.64443146259964,300.1044472315141,362.4593944086421,4.726309314196408,237.3146349633701,,212.54073894621052,208.69699457099324,206.16734829566334,212.57590484969143,279.7222696318863,210.93819127194945,212.76973563618344,257.012417086285,1.2512433244056422,11.656943918306741,,10.391647488587266,10.218624213815337,10.12790067342746,10.393298329753666,13.518606352206094,10.320656074969579,10.40182766966176,12.417841466736201,2.3969616378809655,169.02568681544776,,150.7367703579144,148.23851919293963,146.90771216765555,150.7605440031847,195.2914302335471,149.71079437267065,150.88385510597246,179.75322406681073,58.06666666666667,0.0,0.0,0.0,0.0,5.548776865462887,19.041485717466436,60.40422432629279,4.630302546428156,2.9943431122448976,0.0,0.0,-2.4720440485907664,1.373563397581255,0.0,0.0,0.0,35.2462171789131,471.7106039964482,92.23015625956374,201.1810513984662,266.27447024909355,315.6585482343476,332.413435736511,334.413435736511,575.0,133.63094608201456,179.43346804781328,77.23449203979037,132.95999999999998,132.95999999999998,0.8571428571428571,7.022868086082641,5.906890595608519,4.041171654418731,5.295938111698216,,5.2980786198814505,5.296714635209177,5.295471787308716,5.298089898246187,5.307077678642778,5.297510329565323,5.298158110073775,5.307565036455228,0.13935074670409417,0.18261855557580053,,0.18269236620280863,0.18264533224859233,0.18260247542443847,0.18269275511193747,0.1830026785738889,0.18267276998501114,0.18269510724392327,0.1830194840156975,2.461245400389693,2.7316508697012676,,2.732054967271924,2.7317974851961595,2.7315628126070286,2.7320570960347346,2.7337520777468525,2.7319476980451953,2.732069970748036,2.733843905201789,318.5200000000009,538.5688337892711,175.47857823481542,,174.44020807131292,174.56479675155558,174.9244840065549,174.43989097810157,174.2998542040153,174.50315242564525,174.4318357637053,173.83900429421405,18.571339096181763,6.0509854563729455,,6.015179588665963,6.01947575005364,6.031878758846721,6.0151686544172955,6.010339800138459,6.01735008364294,6.014890888403631,5.994448423938415,7.353626050469661,6.232227711108174,,6.226292772762161,6.227006737798841,6.229065097821867,6.226290954984579,6.225487853052278,6.226653543948209,6.2262447763247435,6.22284034521029,0.0,37.70175848376755,22.035828829711335,6.573816143481513,-2.373087580867196,7.098048244145306,3.763869689957699,0.8664328564704578,0.0,397.28189361742307,145.14374845362383,-474.00186459796515,-30.933283045042224,-7.900031076632754,-21.545539299907503,278.8448541047585,910.6350234673372,23.478442414691365,15.177250391122293,23.964079564929932,2362.0,40.0,1.6687397619377153,0.6626633442731638,0.0,0.0,0.5330974507069528,0.10772590165565507,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.09128709291752768,0.2381448361039201,0.12336210787250688,0.3548603490124733,0.12953476179363377,21.225403871315223,16.626499111277024,13.934759407976115,10.198225312655481,11.938793109825923,7.446702743375968,9.297306124662223,5.330934638676854,7.137248206951372,3.734919277485352,5.2284728172875035,2.319107658163135,3.4257580568709685,1.3914402294010648,2.1397815894205805,0.840550287504503,3.905157099693074,1.4295513423793746,5.378705566785217,1.9483304811154833,7.855784671767861,2.3233186227477676,98.53956322546125,53.98065852349063,34.79160127652631,26.10601954337357,22.89422904910074,22.763999362580456,138.0,156.0,63.05058299999997,35.41341700000001,0.2833333333333333,88.08,10.63888888888889,6.7222222222222205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,6.0,6.0,60.0,0.0,2.0,61.0,6.0,3.0,6.0,55.0,9.0,30.0,52.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,5.0,4.0,1.0,29.0,8.0,0.0,3.0,5.0,0.0,2.0,12.0,0.0,0.0,0.0,0.0,1.0,3.6109179126442243,5.1029105702054265,3.9982007016691985,4.314149212270796,4.611400735738727,4.912195221283003,4.745475458993297,4.7605700852157815,4.944762549945548,5.0899084749907635 +9797017,CC(N)=NCCSCC[C@H](N)C(=O)O,0,26.967741935483872,6.1615580645161305,2.3548387096774195,5.240143369175628,169.99701614088173,106.44367112903224,1.3934202381430005,6.204787096774194,5.282368688880039,7.760974354838712,183.09871547357605,24.8,6.412200000000001,2.7666666666666666,4.255555555555556,154.727491809405,92.22114943333328,1.6829456301999994,6.5287500000000005,3.2833333333333337,7.903041066666668,227.30927554129127,19.0,6.079292156862746,2.4313725490196076,2.797385620915033,159.7120379943404,67.60379688235291,1.3875706283066862,6.177945098039215,3.250726216412491,7.690003607843135,171.5674138079977,15.67741935483871,6.159367741935484,2.0483870967741935,1.586021505376344,167.69421988127354,53.25247940322581,1.1873306902610967,6.219708064516128,3.2726005575467947,7.796369806451611,144.84626439211334,13.587301587301587,5.9572825396825415,1.8095238095238095,0.91005291005291,167.0020546867962,45.84703103174604,1.103666337943381,6.014550793650796,2.6399666862629827,7.643574380952379,129.9100103673763,14.4,5.694380000000001,1.7,0.8,169.58091731162722,50.38171021666665,1.0321460120012331,5.759168333333335,2.0046296296296298,7.4518504666666665,116.54370366697728,11.688888888888888,5.669311111111111,1.9555555555555555,1.488888888888889,167.12244275676358,37.76583599999999,1.0914977439395999,5.749455555555557,2.0716049382716046,7.402115199999998,124.36076386923627,12.722222222222221,6.260691666666667,1.9722222222222223,2.138888888888889,168.91656731172756,42.117424638888906,1.0334503114748332,6.294072222222224,3.371913580246913,7.836900777777779,135.93133988649788,10.205128205128204,6.002461538461539,1.6666666666666667,2.4358974358974357,175.50883476574063,33.83090743589743,0.8519196515790768,6.009697435897436,3.259259259259259,7.654318153846153,106.50920799948962,12.478668054110305,0.14324120707596244,0.03079799975814587,0.43080124869927144,3.3458203260492545,1.4543557977555057,56.398087560874096,0.294339837238358,0.13412695109261177,2.2125465157607613,0.08646588345473459,48.193459459960344,0.08262226847034357,-0.02696378772112386,-0.02133791859664142,0.06704821366631974,0.7668439511311517,0.08222240595717471,0.3944344885882568,0.04083525543651208,-0.023822112382934614,-0.34156181142281006,-0.01659937377731528,2.1757465511732907,-1.2168084715676075,0.031586243904429614,0.004092066345864747,-0.13225602415784213,0.23883073867771154,-0.2596149023338912,-5.275846291424383,-0.050069853766207956,0.026355907857419727,0.5871270772925503,0.017103692130338088,-6.384258402277892,-2.3725286160249737,-0.01049516129032258,0.001451538379079268,-0.054630593132154015,-0.8040813966932595,0.021868306920919057,-10.840248614984395,-0.03857629741095885,-0.012693288241415232,0.05310754543806536,-0.004678377731529646,-7.6111327392848676,-0.5626414284062567,-0.03040981946715556,-0.004477711944756001,0.012619130204978287,-0.7275123098917754,-0.06769897421557798,-2.835282819450638,0.00823284657443876,-0.02843022810234046,-0.4621853184328831,-0.016309567530515493,-4.277372265501415,2.6245577523413113,-0.002682981269510899,0.003661080099130461,0.040704127644814445,0.03339114348479609,-0.053692402802752136,11.729488005792579,0.011158396990100627,0.0032478338536248014,-0.24671285055433498,0.0046368692334373685,6.1369743765625095,-2.2435426060816277,0.01408925887385828,-0.0016979203401977204,-0.03510232396808881,0.4470112151693837,-0.21989283787487474,-9.35270036087409,-0.06406146800006977,0.013246023817782488,0.16202831793394606,0.0008268599144409578,0.27624958271086847,-2.182969129379119,-0.03005195976413459,-0.0022283268985378566,0.004682622268470344,-0.5546016880564228,-0.1506691967062259,-10.331471575211012,-0.04545156505525133,-0.029907417042432723,-0.4855121337084569,-0.017760964099895922,-11.963767804475959,0.9770804984124445,0.015068718482350118,0.0021974350260008367,0.03404573227674167,0.7305513309675639,0.11471201229801445,4.498055999092834,0.033426992343754444,0.013075695722938202,0.024549577667471848,0.008837009018383623,4.670247550211007,,,0.47857142857142854,0.7857142857142857,0.21428571428571427,0.0,0.5714285714285714,-0.35714285714285715,0.9163676448228006,0.026973735868850466,0.026973735868850466,0.44358659343524387,0.13625852712526468,0.3306401343182488,1.3599542382580445,0.46689866144351344,1.8800144335868156,1.1145404240465735,0.3829234035828807,0.24079172595523238,0.0,0.7654740095402423,7.067875734967742,836.0,191.00830000000005,73.0,162.44444444444446,5269.907500367333,3299.7538049999994,43.196027382433016,192.3484,163.7534293552812,240.59020500000008,5676.060179680858,744.0,192.36600000000004,83.0,127.66666666666669,4641.82475428215,2766.6344829999985,50.488368905999984,195.8625,98.50000000000001,237.09123200000002,6819.278266238738,969.0,310.0439,124.0,142.66666666666669,8145.313937711359,3447.7936409999984,70.766102043641,315.0752,165.78703703703704,392.1901839999999,8749.938104207882,972.0,381.8808,127.0,98.33333333333333,10397.041632638959,3301.6537230000004,73.61450279618799,385.6218999999999,202.90123456790127,483.37492799999984,8980.468392311028,856.0,375.30880000000013,114.0,57.33333333333333,10521.129445268161,2888.3629550000005,69.53097929043301,378.9167000000001,166.3179012345679,481.5451859999999,8184.330653144707,864.0,341.66280000000006,102.0,48.0,10174.855038697633,3022.902612999999,61.92876072007399,345.5501000000001,120.27777777777779,447.111028,6992.622220018637,526.0,255.119,88.0,67.0,7520.50992405436,1699.4626199999998,49.117398477281995,258.72550000000007,93.22222222222221,333.0951839999999,5596.234374115632,458.0,225.38490000000002,71.0,77.0,6080.996423222192,1516.2272870000006,37.204211213094,226.58660000000006,121.38888888888887,282.12842800000004,4893.528235913924,398.0,234.096,65.0,95.0,6844.844555863884,1319.40539,33.224866411583996,234.37820000000002,127.1111111111111,298.51840799999997,4153.859111980095,386.83870967741944,4.440477419354836,0.9547379925025219,13.354838709677415,103.7204301075269,45.08502973042068,1748.340714387097,9.124534954389098,4.157935483870965,68.5889419885836,2.680442387096772,1493.9972432587706,2.478668054110307,-0.8089136316337159,-0.6401375578992426,2.0114464099895923,23.00531853393455,2.4666721787152412,11.833034657647705,1.2250576630953622,-0.7146633714880384,-10.246854342684301,-0.4979812133194583,65.27239653519872,-62.057232049947984,1.6108984391259105,0.20869538363910206,-6.745057232049949,12.180367672563289,-13.24036001902845,-269.06816086264354,-2.5535625420766057,1.344151300728406,29.94348094192007,0.8722882986472426,-325.5971785161725,-147.09677419354836,-0.6507,0.08999537950291461,-3.387096774193549,-49.85304659498209,1.3558350290969816,-672.0954141290325,-2.3917304394794487,-0.7869838709677444,3.2926678171600523,-0.29005941935483803,-471.8902298356618,-35.44640998959417,-1.9158186264308001,-0.2820958525196281,0.7950052029136321,-45.83327552318185,-4.265035375581413,-178.62281762539018,0.5186693341896419,-1.791104370447449,-29.117675061271633,-1.027502754422476,-269.47445272658916,157.47346514047868,-0.16097887617065393,0.21966480594782767,2.4422476586888666,2.0034686090877654,-3.2215441681651282,703.7692803475547,0.6695038194060376,0.19487003121748808,-14.802771033260099,0.2782121540062421,368.2184625937506,-100.95941727367324,0.6340166493236226,-0.07640641530889741,-1.5796045785639963,20.115504682622266,-9.895177704369363,-420.871516239334,-2.88276606000314,0.596071071800212,7.291274307027573,0.0372086961498431,12.43123122198908,-78.58688865764829,-1.0818705515088451,-0.08021976834736284,0.1685744016649324,-19.96566077003122,-5.424091081424132,-371.9329767075964,-1.636256341989048,-1.076667013527578,-17.478436813504448,-0.6393947075962532,-430.69564096113453,38.106139438085336,0.5876800208116546,0.08569996601403262,1.3277835587929252,28.49150190773499,4.473768479622564,175.42418396462054,1.3036527014064234,0.5099521331945899,0.9574335290314021,0.3446433517169613,182.13965445822927,0.7839065353348689,0.6491355917978884,0.5028139430930144,0.4245037082541867,0.37378076678193844,0.2729083493294631,0.25607781141328206,0.1909881607030874,0.17057854244149726,0.1567495273910577,0.1201302712058889,0.11634253240654822,0.08451450211385618,0.07470396253684966,0.059670116353885846,0.04404387728281145,16.0020016640277,5.830745036036992,3.554741580513689,2.2955195955911365,0.44657566569350976,-0.3875891188527006,3.1211909216604545,0.9727265018193297,6.022011019220514,0.6517761924420991,14.55333742842289,10.338122293672793,32.060998289155634,11.845715931713954,2.916208880996234,0.7415736107069529,3.500786224498014,2.362348316510196,7.008290994772196,0.6250503530250757,3.713704119626293,2.564535208215181,24.434223026759746,14.701438913197169,0.3441182568940251,0.6487776491183178,0.8569367620634173,0.8827432136763205,0.8827432136763205,0.8827432136763205,3.1340777135074473,204.76307262668405,0.0,2.0,4.0,0.0,0.0,2.0,0.0,0.0,0.0,3.2336050259167495,1.710308064795286,0.6695125000697884,0.5404802420052723,0.5404802420052723,0.5404802420052723,174.6135033636822,837.384859618326,60.314787206509735,27.012414826397617,54.66654100626526,,10.0,205.0,12.011146117099809,4.794537184071822,0.0,18.801197814595852,11.505707213493578,0.0,18.685622149081738,0.0,4.992404732635669,16.573862349165076,6.699999999999999,11.0,3.0,0.0,8.0,0.0,0.02142857142857148,-5.0,0.1501466275659823,0.0,-0.1501466275659823,0.16165413533834572,0.19056249999999997,0.0,0.57741935483871,0.9142857142857143,0.4272727272727277,0.57741935483871,0.7526315789473685,12.829147027519209,0.37763230216390653,0.37763230216390653,6.210212308093414,1.9076193797537053,4.628961880455483,19.039359335612623,6.536581260209188,0.5234375,0.2935323383084577,0.0,0.2238805970149254,0.75,0.3019943435451038,-0.5735267511830608,-0.07687043667517193,-0.01850086294138906,-0.06372519457589564,0.6980056564548962,1.325604022097144,0.0599193167482885,0.04276142006764982,0.060254728277142906,-0.8025975296585284,0.9112324883255501,1.0251600380081187,1.7447289368992285,1.272946859903382,0.6534660308245213,1.3831113518317428,0.9166083363000515,1.023520303434661,1.007278736345581,0.9594693109829634,1.0078258025631162,1.1327378215723467,1.3084948789389,0.5254336978313527,0.6619259307071683,1.6957942597328792,0.8686624141674086,1.4367770047083264,1.2853871886041692,1.5084569777705703,0.5610038097289561,0.42739149811377897,0.5306325578370467,1.2694696068613107,1.3271347565043359,1.058261317440438,0.9261597451817704,1.1231884057971018,1.2712523325730871,1.0910897874623824,1.3164868007068697,1.2583542659534288,1.0740926793694143,0.915522261823312,1.0168994853208755,1.1567208135448313,1.008172114743162,1.2008575765161082,1.025053757947282,0.7309638831377965,1.1113003498448242,0.9861654144617352,1.0132057845824933,0.9559674349926993,1.199427667044971,1.2826204207773662,1.2156216545482386,1.0684512552909682,0.9538859239492994,0.8191855641793822,0.6082709370061518,0.580314009661836,0.7873730043541364,0.928138859607796,0.9396069800535922,1.0986997264429297,0.7979320537487589,0.8888237024621595,0.7514522638860507,0.8625880739281271,1.4907160329108289,0.5373221033096315,0.7549114356656355,1.0732689210950084,0.657751053977469,1.1748170841532843,1.4479654113381035,1.5421177087615294,0.5688560286329032,0.46448756372006794,0.5861532437941095,1.0495600396325646,0.7927507227040246,1.3563012332297895,1.1540551778322885,0.96719001610306,1.2614036906489734,1.048658216557679,0.8289981147971466,0.7880791244793571,1.3486059820837473,1.3830379702736983,1.353283454550285,1.1452549698050765,0.5657297172473955,1.0062327592700673,0.9117546918456048,0.7487922705314012,0.8825499609244165,0.6468068529346225,0.5896391992492983,0.4514043968758745,1.0060003652318388,1.0651214822312818,1.0042894460103207,0.7241792857403136,3.0,0.0,1.333333333333334,0.5,0.32000000000000006,0.2222222222222222,0.163265306122449,0.09375,0.09876543209876541,0.08000000000000002,2303.3065769247914,2780.894712112527,1307.9018131383386,1121.772713270909,11.290471276192449,0.4539921690835636,6.164685731538168,0.8314755638606303,1.0,0.75,1.7205912844701254,3.243888245591589,4.284683810317087,4.413716068381603,4.413716068381603,4.413716068381603,0.23076923076923078,0.0,0.08888888888888892,0.038461538461538464,0.03200000000000001,0.024691358024691357,0.020408163265306124,0.01339285714285714,0.016460905349794237,0.013333333333333336,0.4784062752356404,14.0,8.32,9.372781065088757,87.9478155860964,1.0,3.467619022533416,59.914758713968,,45.33727769098319,53.47272227752854,54.1640811577352,45.3391118249167,60.39456448484515,53.36513343909375,52.8459421378512,59.36606001651633,0.006621080720480333,-0.18824043912744087,-0.6928345595235509,0.15563607085346207,0.22919459994931682,0.056535275676053834,0.0069937564489667885,0.13873506155214546,-0.17760869227904807,-0.1543749742614417,-0.19197599231152426,0.045146096079301486,-0.09751108582192049,0.22051087497244468,0.13286792577438156,-0.30700009472388007,0.07138181832965398,-0.178508520909775,-0.0935465459840251,-0.170108994541779,0.19649971644566452,0.2653625915253008,0.1978085627181728,-0.13247146965205941,-0.19012675116744487,-0.07326914862394923,0.0471309302707344,-0.12681159420289861,-0.2403241412675375,0.015036421592754826,-0.1922095071625224,-0.13106040206076336,-0.09463637351042736,0.024002905728653066,-0.05410663194089499,-0.1579287485184225,-0.04508825989813314,-0.21229798385480572,-0.14538969997789147,0.029292232190782943,-0.2174391446628642,-0.0465491142676759,-0.0502726766468869,0.02797054809734014,-0.21196506645938745,-0.20889292728562836,-0.18862430913637343,-0.08875420676233263,0.2103235490326884,-0.018730512848080673,0.1188739570063192,0.09448470209339782,0.009979957149768518,-0.03691834067400504,0.2079766976696184,0.03790991085268725,0.02421462522757445,-0.11150628870259269,0.053626575571448336,0.12734039940961647,-0.179790230524053,0.09836037521232689,-0.05513086413180556,-0.08148148148148154,0.13360287511230903,-0.15119604034599604,-0.16583364375217716,-0.2176445723457829,0.09875736166280552,0.07323159842279488,0.009562845846290625,0.005732096965157267,-0.17493606849010448,-0.20979968249079117,-0.07235297473981175,0.01086956521739131,-0.16575955491049832,-0.10359858085535348,-0.18318833176851232,-0.1544186661299415,-0.22297843050038688,-0.21943589897431764,-0.20541008071922257,-0.248244636067589,0.07830006329005662,0.10519820929991887,0.07134992672436884,0.0790288616375574,0.21834744839098966,0.07887479286365033,0.07975547032934037,0.11356598093341026,0.09748745957782726,0.011095621037838713,0.10220226365939868,0.09690625247791354,2.94168275343288,3.713620289651056,0.7841369378620653,20.309623236789548,32.61468020716846,34.3736731041537,34.503737620282735,34.503737620282735,34.503737620282735,26.32020207021542,15.60356593665203,5.360927650160329,3.3710841633732533,0.0,10.71663613356339,2420.7737110801772,2322.495586136363,346.11566482519174,4.0,15.0,13.0,10.0,9.0,8.0,7.0,6.0,6.0,219.104147784,13.0,4.04305126783455,4.727387818712341,5.4680601411351315,6.175867270105761,6.914730892718563,7.630946580890459,8.368925174747135,9.089640586738398,9.82720028436401,0.6344086021505378,0.981290322580645,1.1529353655563521,0.588984291281379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6277666795441379,0.9662239089184061,1.0088457110635998,0.5643896771567204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,2.0,1.0,4.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,16.573862349165076,6.041840829147961,0.0,0.0,0.0,9.786941916707491,0.0,11.761884949391115,0.0,0.0,19.097412429363423,12.297610012659364,5.835619785757269,133.1585452318578,-252.88549097504526,-33.89452729095494,-8.157596483065976,-28.098387886116136,307.77204859554,584.4993686432807,26.420259915554794,18.85481834333164,26.568153120149123,0.5,0.7129461778494726,0.25279252807927116,96.92481925269065,0.16849771679232575,31.82542729828694,0.2870538221505273,5.0,0.5384615384615384,0.34729977915141674,0.6547758793470727,0.8648595134056152,0.8909045568355635,0.8909045568355635,0.8909045568355635,-0.1012999999999995,,1.5535714285714288,1.1038416648231353,0.9351166328597537,1.5513903960768884,-3.2949960521892754,1.012622399020808,0.9891346839337528,-1.5983839656748697,59.716600000000014,9.901064578912528,0.0,0.0,16.459739686960038,19.386399651764595,18.050463619406152,0.0,0.0,0.0,3.295836866004329,0.0,4.465908118654584,0.0,5.771441123130016,0.0,7.134890851565884,0.0,8.528528701079983,19.666666666666675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.419999999999995,0.0,10.335856742413831,0.0,0.0,0.0,0.0,4.002385519022424,-0.3664251595700001,35.740996332246915,11.46733495432437,0.0,0.0,41.003756917103935,4.794537184071822,0.0,13.344558822616634,4.992404732635669,0.0,0.0,0.0,18.25851302972275,19.460767065868275,15.971054660605976,119.829517427936,,90.57237069677089,106.78775288865376,108.19457422506184,90.57766440910163,121.5319169514075,106.58560653547025,105.55057932085471,118.96046059955765,15.971054660605978,119.82951742793598,,89.46267681921988,105.8416028902339,107.39304568261062,89.46952841190387,124.08412502187954,105.7176444791667,104.70274959176865,120.33050399870751,4.1896955579988955,95.21121929015203,,71.34029582717172,86.66228307262956,87.94319731522256,71.34053333644837,93.16901149981464,86.269873679677,85.16518703875025,93.59053464045718,1.1407896186147126,8.559251244852572,,6.4694550497693495,7.62769663490384,7.728183873218703,6.469833172078688,8.68085121081482,7.613257609676446,7.539327094346765,8.497175757111261,2.0948477789994473,59.914758713968,,45.33727769098319,53.47272227752854,54.1640811577352,45.3391118249167,60.39456448484515,53.36513343909375,52.8459421378512,59.36606001651633,29.952941176470592,0.0,1.7410798319812568,0.0,0.0,10.657134397338673,8.484837863405234,31.274217042971596,2.7580513038548755,0.0,0.0,1.6349999999999998,-0.7479204984462926,0.0,0.0,0.0,0.0,17.49607999185833,314.3597815661415,53.33832981857389,100.56053561333925,132.82519811982968,136.82519811982968,136.82519811982968,136.82519811982968,105.0,89.24581001724636,126.57081226125625,43.1966056604348,127.0,101.7,1.0,5.043425116919247,4.700439718141093,3.1609189816699104,3.689217479416825,,3.685420901895814,3.7003128562504624,3.700966280994654,3.6853987629819076,3.6700340956093576,3.699127642012555,3.697680954794851,3.684354603674375,0.22577992726213644,0.26351553424405894,,0.2632443501354153,0.2643080611607473,0.264354734356761,0.263242768784422,0.26214529254352553,0.2642234030008968,0.2641200681996322,0.2631681859767411,1.4873350389251203,1.6418866069859526,,1.640856976064377,1.6448896084401246,1.6450661792014138,1.6408509688860948,1.63667318900131,1.644569256043664,1.6441780907952417,1.6405676054511,173.00999999999974,81.55126934432037,52.428273580056185,,52.632179007186195,51.75865074415531,51.72978502618608,52.63356422701017,53.590699757842046,51.83352388890569,51.92100892065244,52.75391049579832,5.825090667451455,3.7448766842897276,,3.759441357656157,3.6970464817253794,3.694984644727577,3.759540301929298,3.827907125560146,3.7023945634932636,3.708643494332317,3.7681364639855945,4.737704130794817,4.295918254569982,,4.299799937508455,4.283063818934591,4.2825059649385775,4.29982625603871,4.3178477776624655,4.284509355878927,4.2861957410442,4.302110138851471,0.0,14.338242261436255,8.484837863405234,10.657134397338673,1.224333532795835,-0.7479204984462926,0.49139030612244894,2.4169821373478477,0.0,210.73118301357133,58.713676422275476,-111.50494970595976,-14.945134045899703,-3.596933861482573,-12.38943885621775,135.70611215070622,257.7236537076209,11.649500893639772,8.313666248632932,11.714711532164586,406.0,13.0,0.9772838841927121,0.2996552027408115,0.0,0.0,0.23570226039551584,0.02151657414559676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.974691494688164,9.087898285170438,6.5365812602091875,5.518548207304427,5.606711501729077,4.093625239941947,3.3290115483726668,2.4828460891401365,1.7057854244149726,1.5674952739105772,1.0811724408530001,1.047082791658934,0.6761160169108494,0.5976317002947973,0.4176908144772009,0.30830714097968015,1.4957819157813603,0.3431344069503085,0.8219752754296893,0.2642525993844776,0.7478909578906802,0.286025314982993,45.772919634726755,25.329522223940558,21.004503425458694,20.500194700197564,20.500194700197564,20.500194700197564,56.0,56.0,32.499480999999975,20.382519,0.0,13.06,6.833333333333333,3.361111111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,31.0,0.0,3.0,30.0,0.0,2.0,2.0,28.0,2.0,13.0,28.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,4.0,3.0,0.0,14.0,6.0,0.0,3.0,2.0,0.0,0.0,7.0,1.0,0.0,0.0,0.0,0.0,2.772588722239781,2.5649493574615367,3.044522437723423,2.9444389791664403,2.70805020110221,2.6390573296152584,2.5649493574615367,2.4849066497880004,2.4849066497880004,2.70805020110221 +3062316,Cc1nc(Nc2ncc(C(=O)Nc3c(C)cccc3Cl)s2)cc(N2CCN(CCO)CC2)n1,0,31.084745762711865,6.2335050847457625,3.3559322033898304,7.356769198577108,164.78655987970296,124.91665713559323,1.6243142970521014,6.3372101694915255,3.851372000444331,7.788233457627117,226.47929076863852,28.419354838709676,6.468274193548387,3.9516129032258065,7.055555555555555,150.14118383968477,109.01391004838713,1.8523227696129039,6.617798387096774,3.040106863135537,7.88747880645161,265.43126121694297,25.11214953271028,6.389487850467292,3.5981308411214954,5.430944963655244,159.66147071996625,95.30494605607477,1.5959381686933447,6.500629906542053,2.8861678396984733,7.874829121495324,222.40667423050553,21.529850746268657,6.290700000000001,3.156716417910448,4.185737976782753,162.30209850649615,79.38689920895524,1.4544765789222684,6.399914179104478,2.686237024752779,7.836663552238805,197.29309750907774,19.28767123287671,6.110776027397259,2.8424657534246576,3.7960426179604267,161.00105874460337,70.33750040410958,1.38897813820224,6.223252054794522,2.6610152770731155,7.683263479452053,181.67047936643934,18.032894736842106,6.074406578947369,2.6710526315789473,3.33187134502924,165.4225987260865,65.35133138815787,1.2893091540675137,6.174132894736842,2.6556137643491446,7.699935500000002,167.02324696976558,21.541984732824428,6.205172519083971,2.83206106870229,3.6782584110828385,164.14983085118067,80.05010129007634,1.392967109664687,6.292736641221373,2.795933290749991,7.79620351908397,180.792169829018,19.858333333333334,6.132823333333334,2.7583333333333333,3.8222222222222224,163.10125361092378,71.69801395,1.4083600106889835,6.24234,2.657373113854595,7.73603415,179.35450794910687,17.71818181818182,6.127446363636361,2.8363636363636364,3.5707070707070705,165.7356096400802,63.402113090909104,1.298428563522973,6.210236363636364,2.657772166105499,7.712871363636364,168.42998493834398,12.257971847170353,0.11333226084458482,0.019770075899158062,0.596954898017811,3.852610822064044,1.6450158554227519,56.5021693306521,0.2779034332365533,0.11260804366561329,1.1487570888557785,0.07094945762711864,50.26700997378812,0.4271019636552342,-0.007286498132720264,-0.011590189504833051,0.2004753917580227,1.1664679432330545,-0.46748562382283665,2.034706490561676,-0.0035055600373558576,-0.004803423654678221,-0.08120271687675087,-0.007552387096774224,-0.28027807267624466,1.4412202960262248,0.00583878303312792,0.002775353459248024,-0.007536238109684893,0.061370322077087126,0.05165733457565109,6.640934242609413,0.02880136846848459,0.006527137706159328,0.04564697614795039,0.0032233271028037106,4.822947071519458,-0.44276820436741876,-0.015850677237197977,-0.002591737404970578,-0.05900903411697616,-0.3907987274835882,-0.017207619628809897,-2.0937345043176787,-0.007100227246928693,-0.01353277172025528,-0.10685303160759038,-0.006314582089552258,-1.0896530184650288,-0.07454951143782475,0.010738449626740842,0.0014729615826208021,-0.041463836954425785,0.2027856470774911,-0.07456942560685413,-0.5014947395213929,-0.024516059456210933,0.008138369150732152,0.06217563792145337,0.005080780821917812,-5.1666982566262964,0.5492315426601548,0.002004157531864678,-0.0001986916808290283,0.04265259529173407,0.1487713213044208,0.13610552341590093,2.5940215111186276,0.02549112582499621,0.002945546878543641,0.017351245357922443,0.0002150394736842123,5.07388663121097,2.1459613912822277,-0.014308325018475372,-0.0003898957877863456,0.03740918530474045,-0.23706954654088247,0.09417415755601609,9.590702656538985,0.063130251434895,-0.01170664633089987,-0.20799175827551336,-0.006562297709923676,5.74877736721969,-1.52280235564493,0.008230338025471608,0.0016470084323775567,0.008271090682753997,0.3742044112483641,-0.07885832057869606,-6.564963776838552,-0.03526695326744876,0.006711617351335823,0.09245602781463384,0.001943249999999999,-2.7129671707691956,-0.7702985035648069,-0.006273817084954672,-0.0030907038467961325,-0.06721683946619308,-0.2843158193057647,-0.06104131348259342,-3.2088453158601244,-0.012458932899907222,-0.003901726254211186,0.021750443983483303,-0.004059072727272725,0.44588486260646254,,,0.4852813852813853,1.2651515151515151,0.5757575757575758,0.045454545454545456,0.6893939393939394,-0.11363636363636363,0.9378229298986672,0.014883583980411678,0.0253078264046541,0.9650391272673221,0.2464121894158224,0.2361046375847688,1.9028620571659893,0.48251682700059123,2.0404077004798533,1.373645532910794,0.4446211277403144,0.10615571529209603,0.053620794290289674,0.6667621675690591,8.25687663986442,1834.0,367.7768,198.0,434.0493827160494,9722.407032902474,7370.082771,95.83454352607399,373.8954,227.23094802621551,459.50577399999986,13362.278155349673,1762.0,401.033,245.0,437.44444444444446,9308.753398060457,6758.862423000002,114.84401171600004,410.3035,188.4866255144033,489.0236859999998,16456.738195450464,2687.0,683.6752000000002,385.0,581.1111111111111,17083.77736703639,10197.629228,170.7653840501879,695.5673999999997,308.81995884773664,842.6067159999997,23797.51414266409,2885.0,842.9538000000001,423.0,560.8888888888889,21748.481199870483,10637.844494000003,194.89986157558397,857.5885000000001,359.9557613168724,1050.1129159999998,26437.275066216418,2816.0,892.1732999999998,415.0,554.2222222222223,23506.15457671209,10269.275058999998,202.79080817752703,908.5948000000003,388.50823045267487,1121.7564679999998,26523.889987500144,2741.0,923.3098000000001,406.0,506.44444444444446,25144.23500636515,9933.402370999996,195.97499141826208,938.4682,403.65329218107,1170.3901960000003,25387.53353940437,2822.0,812.8776000000001,371.0,481.85185185185185,21503.62784150467,10486.563269,182.478691366074,824.3485,366.2672610882488,1021.3026610000001,23683.77424760136,2383.0,735.9388000000001,331.0,458.6666666666667,19572.150433310853,8603.761674000001,169.00320128267802,749.0808000000001,318.88477366255137,928.324098,21522.540953892825,1949.0,674.0190999999998,312.0,392.77777777777777,18230.917060408825,6974.232440000002,142.82714198752703,683.126,292.3549382716049,848.4158500000001,18527.298343217837,723.2203389830509,6.686603389830505,1.1664344780503257,35.22033898305085,227.3040385017786,97.05593546994236,3333.627990508474,16.396302560956645,6.643874576271184,67.77666824249093,4.186018,2965.753588453499,26.48032174662452,-0.4517628842286564,-0.7185917492996492,12.429474288997408,72.32101248044938,-28.984108677015872,126.15180241482392,-0.21734472231606317,-0.29781226659004967,-5.034568446358554,-0.4682480000000019,-17.37724050592717,154.21057167480606,0.6247497845446874,0.29696282013953856,-0.8063774777362835,6.566624462248322,5.527334799594667,710.5799639592072,3.081746426127851,0.698403734559048,4.884226447830692,0.34489599999999704,516.055336652582,-59.33093938523412,-2.1239907497845287,-0.34729281226605746,-7.907210571674805,-52.36702948280082,-2.305821030260526,-280.56042357856893,-0.9514304510884449,-1.8133914105142075,-14.318306235417111,-0.8461540000000026,-146.01350447431386,-10.884228669922413,1.567813645504163,0.21505239106263713,-6.053720195346164,29.6067044733137,-10.887136138600702,-73.21823197012336,-3.579344680606796,1.188201896006894,9.077643136532192,0.7417940000000005,-754.3379454674392,83.48319448434353,0.30463194484343104,-0.0302011354860123,6.483194484343579,22.613240838271963,20.688039559216943,394.2912696900314,3.874651125399424,0.4477231255386334,2.6373892944042114,0.03268600000000027,771.2307679440673,281.1209422579718,-1.8743905774202738,-0.05107634820001128,4.900603274920999,-31.056110596855603,12.336814639838108,1256.382048006607,8.270062937971245,-1.533570669347883,-27.246920334092252,-0.8596610000000016,753.0898351057793,-182.73628267739159,0.987640563056593,0.1976410118853068,0.9925308819304798,44.904529349803695,-9.462998469443527,-787.7956532206263,-4.232034392093851,0.8053940821602987,11.094723337756061,0.23318999999999987,-325.55606049230346,-84.73283539212876,-0.690119879345014,-0.33997742314757456,-7.39385234128124,-31.274740123634118,-6.714544483085277,-352.9729847446137,-1.3704826189897945,-0.42918988796323043,2.3925488381831634,-0.4464979999999998,49.04733488671088,0.7082323709471875,0.6084715208166754,0.44230709141720864,0.32925178717017084,0.2889007264090425,0.1837852842252378,0.18452787607184698,0.10294387057975879,0.12060608558165369,0.056332466970949034,0.07676462463261674,0.029155209099339,0.05017692351456157,0.016882715245368576,0.031248420226812144,0.008722117431002532,17.001104907970586,5.692144899333034,3.5438977219522076,2.1886799771728627,0.4286213331486764,-0.4204530638747017,3.23069357948236,0.9778722287263477,6.02196200982401,0.6531783933612739,14.560550421967914,10.311652573645764,35.450518046173336,11.703819916669154,2.936380729380842,0.7518637796396573,3.4891369008975226,2.2393758429971937,7.008273526208419,0.6050786641662702,3.702066247857802,2.435477022386767,24.44071655096503,14.702547701491627,0.28967851499239733,0.6340156563779802,0.7781686487415592,0.8642112688335987,0.8642112688335987,0.8642112688335987,1.2250566005138779,1111.4321707155357,0.0,5.0,8.0,0.0,7.0,0.0,1.0,0.0,0.0,4.1011934362049525,1.9836070928304874,1.097102643274587,0.5679622882089319,0.5679622882089319,0.5679622882089319,289.68281561828906,2260.45260955333,68.9816556297588,38.31275609412425,78.1293932387938,,19.0,1026.0,0.0,4.794537184071822,12.514061693864424,38.90574894371304,37.560339893182324,17.533629449547814,6.06636706846161,32.046575604766076,35.38533223255524,16.70746728507322,16.014285714285716,41.75,19.0,1.5,22.75,0.0,0.014718614718614666,-3.75,0.1713817074123254,0.04540828859178192,-0.12597341882054347,0.046681096681096546,0.1498329139406137,0.0,0.6133171912832923,0.8601731601731598,0.4419354838709669,0.5679089026915104,0.8134920634920633,30.94815668665602,0.49115827135358536,0.8351582713535853,31.84629119982163,8.131602250722139,7.7914530402973705,62.79444788647765,15.92305529101951,0.5641670860593863,0.1486767766874814,0.0,0.33095450490633366,0.36363636363636365,0.30713658559772894,-0.9244513738367609,-0.04340152546378061,-0.015668667353165442,-0.054379492578633004,0.6928634144022708,2.085451767586963,0.04845092085742239,0.035346640128592594,0.04965361351397529,-6.121126864915737,0.6732655714901306,0.8805779950111358,1.6665981626506456,0.7569856251358316,0.5753657341947553,1.5162901714077202,0.6729360805908265,0.956591747627923,0.8142693188592237,0.7534603506331132,0.8803695594669311,0.9401833485358753,0.7202727298612039,0.9186032363397564,1.0328559209092258,1.2004533474854504,1.0156102588153366,1.1158597024784003,0.7180802934710597,0.8397423362062181,0.8677507434283052,0.6834503865388017,0.8505293298098929,0.8325728794824293,0.9749304800114729,1.1438625529238202,1.2488347417064543,1.1674902676224268,1.1243098179718538,1.0939569005116656,0.9735914894793671,0.9855148092115497,1.1004491708451374,0.9339441779297742,1.0522041044485524,0.9627951993896073,0.931876522917195,0.7779592255212859,0.8369092651063214,1.0264150197107336,0.8715435166686722,1.050709893939746,0.9387085633845601,1.0463576872072466,0.8129997686052358,0.7613890171524176,0.7911362105485973,1.0890635369985415,0.994018970557399,1.002176371226721,1.0436306526015433,0.9154773061141787,0.9702668142450032,0.8582264859221481,0.9933953851779177,0.8957064486802186,1.0033521819391256,1.0117265603124612,1.031364034859306,0.8900049684314921,0.8111514427248349,1.2711272328561996,1.1363084599543416,0.9679521559926235,1.1410516944119973,0.9559073526861496,0.8049487287198586,0.812568446993099,1.1965286472947865,1.5507326801272718,1.2064553859615652,0.8517337274067683,1.3459706272947427,0.8386768049074934,0.8887051323574477,0.878280397818415,0.8902811736504016,1.1396666908618962,1.3073762678981171,1.3584647242123364,0.846616799995374,0.6673898999802964,0.8250691986194673,1.060111928355277,1.0607857340690712,1.055372898403486,1.1938593483591715,1.1302869892379035,1.1495877948097715,1.0845003299377862,1.039041502348001,1.1061754271446662,0.9972817020235235,0.8327911296344009,0.9466091858441815,0.9623932356455629,7.5,0.13284154678094073,3.555555555555557,2.2222222222222223,1.898888888888889,1.1808333333333332,0.6881632653061225,0.5183177437641723,0.28043902746283694,0.31313271604938275,7290.466240091169,8042.784895895649,3350.2813067165353,3080.2271294110024,21.009083560364854,0.48190706649495246,10.884657732042095,0.930155644537965,0.0,0.36363636363636365,1.7814496131568893,3.899035956531354,4.785540406087255,5.31468076115291,5.31468076115291,5.31468076115291,0.20833333333333331,0.0044280515593646905,0.07111111111111114,0.04444444444444444,0.040401891252955076,0.026240740740740738,0.01600379686758424,0.0132901985580557,0.008498152347358696,0.010101055356431701,0.4428527755713797,26.074074074074073,12.3008,7.03125,201.00196040766053,1.0,4.422390457547738,234.08741055977188,,172.79370671586125,181.190626848163,178.32672659282014,172.79995186566717,254.6315783618327,183.16510177528548,184.38018069685117,236.03757503427627,0.034842792019776664,-0.06429323899849143,-0.5862491152766204,0.3358300475022507,0.30277336515607794,-0.2841830504440322,0.03601112160233217,-0.012614309929636244,-0.04265613270879534,-0.0706874566124619,-0.10644742538366515,-0.005575785645941473,0.11757412351692731,0.05151916135454829,0.14038152778999782,-0.012624468171228639,0.01592954100778024,0.031402332327292795,0.11753414641031747,0.10363804481669957,0.05796333453355692,0.03973596906672162,0.04543131421446801,0.09594656762028213,-0.03612083710810838,-0.13986024031528305,-0.1310939532144614,-0.09885007110740808,-0.10143737468769737,-0.010460458221168768,-0.03705582509699924,-0.025549260634304332,-0.12017588868198882,-0.09301621086318738,-0.0890011326476817,-0.021677299267118366,-0.006081716646708881,0.0947519227686345,0.07450459928095321,-0.06945891070180758,0.0526359023642176,-0.045330520895004126,-0.008875672305369961,-0.0882179078203136,0.07227165028191797,0.05412426919896836,0.07161127078124148,-0.10278507234308319,0.044806069838293855,0.017683910273465966,-0.010050122308204687,0.071450281140773,0.038615714946446694,0.0827381225337328,0.04591012242270468,0.09172655957545507,0.026157517550792084,0.015104364122101028,0.003030882558882577,0.10093869983229084,0.17506659486884074,-0.1262511213651399,-0.01972151193425362,0.06266668625880727,-0.06153477667227025,0.057248176207890904,0.16974043244984022,0.22716614436770233,-0.10395923727848837,-0.18105808468410317,-0.09249257047759873,0.11436481641174612,-0.12422955237872044,0.07262131686191334,0.08330814918356974,0.01385547000320821,0.09713008360597486,-0.047937726751229585,-0.11618958802130624,-0.12690362568291588,0.05960158025003791,0.08048353190727628,0.027389215717658153,-0.05397112683216846,-0.06284061614504553,-0.05535773343089047,-0.15633242191689078,-0.11259952751771805,-0.07379821955476987,-0.0371068237922281,-0.05679154188013352,-0.04483187830681492,-0.03464873491450808,0.018933893156775097,-0.057210764719380275,0.008870327931559297,9.332446550359686,16.31888444235838,8.935564027580474,21.39008841292531,41.140391105334785,46.80628685795918,47.33966033586537,47.33966033586537,47.33966033586536,67.33345411583515,45.3303025860562,14.672497215430376,3.503138604639169,1.7694862115795593,22.00315152977895,17325.656094193393,16403.504380253737,1316.282727994536,152.0,50.0,64.0,82.0,98.0,104.0,112.0,129.0,142.0,487.1557217520008,36.0,5.153291594497779,5.993961427306569,6.8658910748834385,7.720905251936779,8.595079730073309,9.455401958591324,10.330485815856711,11.193422433528612,12.06898637036277,0.7231638418079096,0.9895593220338984,1.1343114680540316,0.6886441665761188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6948200345072566,0.9783981389165836,1.0116533139111434,0.6450341570444379,5.0,3.0,0.0,0.0,1.0,0.0,8.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,1.0,6.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,20.640014333703846,22.337277247371283,5.131558479839333,0.0,5.907179729351506,9.694446914922299,14.951935562841626,0.0,0.0,35.07045990509047,25.477292959539852,38.790149098024486,23.513745124550884,230.66114216395965,-694.2676964036864,-32.594766968744466,-11.767249091587907,-40.83927625904038,520.3439577822487,1566.184913149644,36.38688866101434,26.545507002536343,37.29011697975342,0.47368421052631576,0.8522396466638327,0.1312482593750021,155.22348659232463,0.08870702251415107,93.20784105595905,0.14776035333616722,10.0,0.19444444444444445,0.30283149907423734,0.6628034242115587,0.8135017484371073,0.9034511726373495,0.9034511726373495,0.9034511726373495,3.3135400000000015,,2.7720588235294117,1.9631204484467126,1.9677758872857845,2.7825758772834943,-5.133778370788107,1.850397215809616,1.759970829043964,-2.7923938489109754,132.04670000000002,9.901064578912528,0.0,19.851845293692104,0.0,13.847474399381248,54.86415093293893,51.74994834259906,0.0,0.0,4.290459441148391,0.0,5.60947179518496,2.3978952727983707,7.110696122978827,4.59511985013459,8.695674048824253,6.580639137284949,10.323282824952447,42.666666666666664,8.898671142450992,13.380428943725786,0.0,0.0,1.238137650259105,0.0,5.122789147574167,0.0,58.38400000000001,0.0,12.693081800261481,0.0,0.0,0.0,0.0,0.0,-0.2666136091002893,66.92437661518787,15.53348693886314,22.454670310192952,0.0,70.1962164119601,0.0,13.847474399381248,21.059540367470042,30.462311845459514,5.022633313741326,0.0,0.0,40.63000582799101,40.99438203592814,42.312869714421396,468.1748211195438,,345.8087721122742,362.3937728895912,356.7196974085573,345.8197655949839,510.8785315861006,366.3229819494841,368.7356565288137,472.7520940319249,42.31286971442139,468.17482111954394,,343.54072398393197,360.6686064348957,354.99043981063966,343.5431126044791,514.4535165991082,364.69687530528785,367.18901549722966,474.86754391746354,4.762938320785564,358.2562178596975,,261.5597008351201,277.6146859940818,273.45750632805914,261.58144709439426,386.29086268491994,280.4499505601793,281.94449305152045,359.87133501836416,1.2822081731642847,14.187115791501327,,10.479053700371946,10.981629481502765,10.809687800259312,10.479386836211633,15.48116762382123,11.10069642271164,11.173807773600416,14.325821031270452,2.3947669842871893,234.08741055977188,,172.79370671586125,181.190626848163,178.32672659282014,172.79995186566717,254.6315783618327,183.16510177528548,184.38018069685117,236.03757503427627,57.72549019607843,0.0,3.742093016397679,6.219692863598819,0.0,0.0,9.128461641547673,59.68754552075747,4.2859788708178925,6.060883626117077,0.0,0.0,0.0,4.440839350794066,0.0,0.0,0.0,38.057015265621835,640.0363210208931,105.10552717625647,230.0431214353499,282.34688395914804,313.5661649080217,313.5661649080217,313.5661649080217,1002.0,146.3774256570373,110.96877892531535,82.60323849330679,134.75,106.50999999999999,0.9,8.552886054402059,6.169925001442312,5.187444763764984,5.653499289870564,,5.633116027909968,5.639280025146198,5.637931695200406,5.633133469652198,5.635521249904649,5.639589775774262,5.639464085427797,5.641272860606121,0.15719529587166617,0.171318160299108,,0.17070048569424146,0.17088727348927873,0.1708464150060729,0.17070101423188477,0.17077337120923178,0.17089665987194733,0.1708928510735696,0.17094766244260973,2.8401637060236427,2.926197165256774,,2.9225852260620964,2.9236788707178722,2.923439746014771,2.922588322344002,2.923012113887467,2.9237337965453016,2.9237115091534656,2.9240321930241167,348.8900000000012,289.7249782520424,221.41697938165962,,223.51613920970686,222.76683291931639,222.9345826097279,223.50704005918197,223.10682367372144,222.71525524257316,222.74115562060953,222.48186409301871,8.779544795516436,6.709605435807867,,6.773216339688087,6.750510088464133,6.755593412415997,6.772940607853999,6.760812838597619,6.748947128562823,6.749731988503319,6.741874669485416,6.862854590628748,6.593970176780441,,6.6034060911480665,6.600048100629539,6.600800845370694,6.603365381176198,6.601573155161348,6.599816541703404,6.599932828628157,6.598768057062336,0.0,30.975300560948945,16.24512659009515,1.4880803972808272,1.851363352595038,7.367072949316626,1.5315981931343652,8.028071887215573,0.0,411.49203814319964,173.2276941245511,-521.3985807270744,-24.478836225085313,-8.837264080119906,-30.670504748651442,390.7809660206634,1176.2128572341924,27.326738955596632,19.93581113956258,28.005068029385523,3723.0,50.0,2.2442371149651095,1.2274413871944734,0.0,0.0,0.39363455326096647,0.14195215152743307,0.0,0.0,0.0,0.0,0.0,0.0,0.11785113019775792,0.07905694150420949,0.37079081189859814,0.16754695945018455,0.6590499367355198,0.22725271123882274,23.371668241257186,20.07956018695029,15.92305529101951,11.853064338126151,14.445036320452125,9.18926421126189,11.809784068598207,6.5884077171045625,9.889699017695602,4.6192622916178205,7.52293321399644,2.857210491735222,5.218400045514404,1.755802385518332,3.49982306540296,0.9768771522722836,4.849521423656777,2.3283639316685547,7.521266331059394,2.9873340532122774,10.565675046660207,3.3390755913026697,107.41306902717245,48.46957591598922,32.77844150881065,29.388414420047603,29.388414420047603,29.388414420047603,172.0,200.0,68.46061799999998,37.90138200000002,0.4406779661016949,240.11,10.472222222222221,7.2777777777777795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,17.0,17.0,59.0,0.0,1.0,62.0,17.0,1.0,9.0,53.0,18.0,36.0,44.0,0.0,0.0,0.0,22.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,9.0,3.0,3.0,33.0,11.0,0.0,7.0,2.0,0.0,4.0,7.0,1.0,0.0,1.0,2.0,3.0,3.8394523125933104,7.2960530344057855,4.409763389645481,4.922714412723786,5.448083448057471,5.849324779946859,6.035182344740263,6.260656411914028,6.661694881221176,7.016133112953223 +65957,C[C@H]1COc2c(C3(N)CC3)c(F)cc3c(=O)c(C(=O)O)cn1c23,0,27.0,6.769994736842106,3.973684210526316,10.526315789473685,165.00825543351934,107.9123768986782,1.4893331203351319,6.797315789473684,7.620065789473684,8.190403999999997,230.83584353779412,27.609756097560975,6.63190243902439,4.804878048780488,9.439024390243903,147.9068953497207,106.33751633744393,1.8283301050243908,6.763926829268292,3.640921409214092,8.007927317073168,280.0139429839363,24.830985915492956,6.548422535211268,4.450704225352113,8.43661971830986,153.5045417248316,95.13802978409015,1.6080995129006055,6.652198591549295,3.88262910798122,7.972860338028167,243.80427729972885,23.074468085106382,6.593734042553191,3.9148936170212765,7.670212765957447,157.83242282724407,87.24377148862978,1.4873388604961804,6.67930425531915,3.804521276595744,8.032855531914892,225.24158536732074,22.66355140186916,6.727766355140187,3.4205607476635516,7.317757009345795,160.4573933461447,85.8856118108411,1.349306345184439,6.781509345794393,4.9656022845275185,8.178723289719626,204.26667501837196,19.92156862745098,6.75274411764706,3.2058823529411766,5.46078431372549,162.68997450325728,72.67477118277645,1.3136806943048431,6.801383333333334,4.478485838779956,8.21285207843137,193.27380799133704,17.06382978723404,6.458159574468087,2.702127659574468,3.904255319148936,162.0436536709643,60.622492088902135,1.2019828117105529,6.519127659574468,3.8469267139479904,7.970260127659578,171.15897501190102,13.804597701149426,6.560954022988507,2.0,3.2988505747126435,170.97074400608253,47.28463495724138,0.9342577115417354,6.559180459770115,5.270114942528736,8.146507218390804,127.7323975512062,8.254545454545454,6.0854,1.709090909090909,1.309090909090909,174.79576954710697,24.004540558225454,0.8407027068805998,6.095181818181818,3.0378787878787885,7.745002545454547,102.06637210930367,7.916897506925208,0.2217831024930747,0.03334347869228298,0.8649584487534625,4.91689750692521,2.039753632566414,37.74776949112404,0.22744184281364616,0.1978252077562327,3.3071570098491834,0.1397444432132963,46.27262500759207,0.025336125937437105,-0.02155781366123912,-0.015197795704452503,0.3449260185122626,1.4733463955138169,0.019672759536602625,0.2398544302811163,0.017452782404011265,-0.01766551584352411,-0.2687664450224834,-0.014205578001486382,3.9716549811228883,1.152783738441731,0.006356927158518977,-0.00042155599396072595,0.034967422262104524,0.9363271038976243,-0.18421461807887096,5.531310356558608,0.013529858601607481,0.008946400842729485,0.37114636301960735,0.0022991238734345076,5.840862513008183,0.2857900630635941,-0.01812173631166382,-0.005226478762082138,0.027258796487298887,0.48007897683739037,-0.05907580780712229,1.4104729869832855,-0.0015793540430545211,-0.013048164083220392,-0.18222311038420982,-0.013238181175222494,2.6937984698631903,1.246899836901649,0.04837248038936492,0.0076681184488033615,-0.07843606803531206,0.3546224143733658,-0.06272899203323055,5.922924501155459,-0.003607573738342364,0.043361314624485434,0.495974992664889,0.02848647660962539,1.1355181496938545,-1.8957416761718533,-0.023884598881103704,-0.0004948242708016565,-0.23673347455325616,-1.5381565368529682,0.08102447388818694,-9.219137725181492,-0.023169081522858702,-0.025653948726304915,-0.19599752412507013,-0.01085474249090217,-9.36092119199171,-1.8676253904638411,-0.03527683149643423,-0.007036196024485406,-0.3039282135910886,-1.2450050097247598,-0.5002634702086763,-8.986585320504107,-0.08313871331762258,-0.03138607001827075,-0.4288694802983568,-0.021863215889668178,-15.375992436123525,-0.8043748208998,0.015884955583150256,0.006741696051481669,0.02191390454357305,-0.4837456617951412,-0.009657097837766589,-3.7925789997770383,-0.0029049748458579347,0.010089734772502967,0.13418911168069395,0.013860931257363011,-4.944535177294127,-1.1762276504658784,-0.04853152354570629,-0.0064785489460367045,0.16949131201208756,-0.100629564341476,0.2211407759299906,-5.713648696998923,0.02051247474742267,-0.04450405943087377,-0.8303660741766697,-0.02767093125157391,0.9357570530316076,,,0.45300207039337476,1.1956521739130435,0.5217391304347826,0.043478260869565216,0.6739130434782609,-0.15217391304347827,0.8808711154179384,0.025312632950453346,0.04026915468958378,0.9560653848541262,0.2221044656024653,0.2488530563328681,1.8369365002720646,0.4709575219353334,2.033311106487532,1.4661063115490054,0.17284015789791798,0.31659032022865896,0.07777431681194914,0.5672047949385262,8.371094346842117,1026.0,257.25980000000004,151.0,400.0,6270.313706473735,4100.670322149772,56.594658572735014,258.298,289.5625,311.2353519999999,8771.762054436176,1132.0,271.908,197.0,387.0,6064.182709338549,4359.838169835201,74.96153430600002,277.32099999999997,149.27777777777777,328.3250199999999,11480.57166234139,1763.0,464.938,316.0,599.0,10898.822462463044,6754.800114670401,114.175065415943,472.30609999999996,275.66666666666663,566.0730839999999,17310.10368828075,2169.0,619.8109999999999,368.0,721.0,14836.247745760944,8200.914519931199,139.80985288664095,627.8546000000001,357.62499999999994,755.0884199999999,21172.70902452815,2425.0,719.8710000000001,366.0,783.0,17168.94108803748,9189.760463759998,144.37577893473497,725.6215000000001,531.3194444444445,875.123392,21856.5342269658,2032.0,688.7799000000001,327.0,557.0,16594.377399332243,7412.826660643199,133.995430819094,693.7411000000001,456.8055555555555,837.7109119999998,19713.928415116377,1604.0,607.0670000000001,254.0,367.0,15232.103445070643,5698.514256356801,112.98638430079197,612.798,361.6111111111111,749.2044520000003,16088.943651118696,1201.0,570.8030000000001,174.0,287.0,14874.454728529181,4113.76324128,81.28042090413098,570.6487,458.50000000000006,708.746128,11112.71858695494,454.0,334.697,94.0,72.0,9613.767325090883,1320.2497307024,46.23864887843299,335.23499999999996,167.08333333333337,425.97514000000007,5613.650466011702,300.8421052631579,8.427757894736839,1.267052190306753,32.868421052631575,186.84210526315798,77.51063803752373,1434.4152406627134,8.642790026918554,7.5173578947368425,125.67196637426898,5.310288842105259,1758.3597502884986,1.0387811634349213,-0.883870360110804,-0.6231096238825526,14.141966759002768,60.407202216066494,0.8065831410007076,9.834031641525769,0.7155640785644619,-0.7242861495844886,-11.01942424592182,-0.5824286980609417,162.83785422603842,81.8476454293629,0.45134182825484737,-0.02993047557121154,2.482686980609421,66.47922437673132,-13.079237883599838,392.72303531566115,0.9606199607141311,0.6351944598337934,26.351391774392123,0.16323779501385005,414.701238423581,26.864265927977847,-1.703443213296399,-0.49128900363572103,2.5623268698060953,45.1274238227147,-5.553125933869495,132.58446077642884,-0.148459280047125,-1.2265274238227168,-17.128972376115723,-1.2443890304709144,253.2170561671399,133.41828254847644,5.175855401662046,0.8204886740219597,-8.39265927977839,37.94459833795014,-6.71200214755567,633.7529216236342,-0.38601039000263293,4.639660664819941,53.06932421514312,3.0480529972299166,121.50044201724242,-193.36565096952904,-2.436229085872578,-0.05047207562176897,-24.146814404432128,-156.89196675900274,8.264496336595068,-940.3520479685122,-2.3632463153315877,-2.6167027700831014,-19.991747460757153,-1.1071837340720214,-954.8139615831544,-175.55678670360106,-3.3160221606648173,-0.6614024263016282,-28.56925207756233,-117.03047091412742,-47.02476619961558,-844.739020127386,-7.815039051856523,-2.95029058171745,-40.31373114804554,-2.055142293628809,-1445.3432889956114,-69.9806094182826,1.3819911357340722,0.5865275564789052,1.9065096952908553,-42.08587257617729,-0.8401675118856933,-329.95437298060233,-0.25273281158964034,0.8778069252077582,11.674452716220374,1.205901019390582,-430.17456042458906,-64.69252077562331,-2.669233795013846,-0.35632019203201876,9.322022160664815,-5.53462603878118,12.162742676149483,-314.25067833494074,1.128186111108247,-2.4477232686980575,-45.67013407971684,-1.521901218836565,51.46663791673842,0.7180931903919803,0.5403416502486469,0.41661626940433344,0.2846556561926458,0.26235806169525255,0.1514087500300593,0.15648168257813502,0.07514401304679237,0.09506111019475293,0.036807777659026035,0.05771847432432959,0.019567442661158875,0.03621065326903562,0.010353153973767478,0.02309131061762064,0.005568995112366227,9.004068281052664,5.666891456113373,4.1077188263281785,2.1620919325762706,0.49605855644203656,-0.5197514465477773,4.02474544986813,0.972694778407386,7.004062791969506,0.9939366076934701,17.424771565565138,10.930536923894548,19.00014165017406,11.681273468987614,2.019490741667875,0.5458554929737531,3.988671677753998,2.2107945514699736,8.001919945742992,1.173710698277776,4.009956085583201,2.406335329724337,20.91670654741456,13.304119737353144,0.3165608622317064,0.7400328133283005,0.855936950382578,0.8654122833645091,0.8843629493283711,0.8843629493283711,1.6803872089670628,930.0477597738718,0.0,2.0,2.0,0.0,5.0,3.0,3.0,1.0,0.0,3.4895620772138884,1.1373494986545687,0.4935496711095624,0.44091809216219424,0.33565493426745974,0.33565493426745974,97.57881447725242,1219.0082344625741,74.03938935093042,32.07916406480459,71.47676987904855,,9.0,347.0,22.754241773281628,19.086016810659167,34.91136182480357,18.35834396346828,6.06636706846161,6.196843571613076,4.567099647791355,6.923737199690624,0.0,10.470530430962235,10.41904761904762,27.5,12.0,1.0,15.5,0.0,0.046997929606625244,-3.5,0.2271512113617375,0.06490138389451883,-0.16224982746721867,0.0711419015766841,0.2197601084255702,0.0,0.6731829573934839,0.9165631469979294,0.4460317460317464,0.6082815734989651,0.8454212454212453,20.260035654612583,0.582190557860427,0.9261905578604269,21.9895038516449,5.108402708856702,5.723620295655967,42.249539506257484,10.832023004512669,0.49423989157442977,0.20978062157221203,0.0479890310786106,0.4702925045703839,0.375,0.4009155687962036,-0.992520395209953,-0.09576471466700798,-0.026118957768682973,-0.09022912683726846,0.5990844312037963,1.4831140586729745,0.05459888259156622,0.03902931733349934,0.05493015032122128,-3.0210311912529537,0.6809341343938281,0.703693510261966,1.401687109282235,0.7687711144525378,0.38881140501545847,1.024544772042589,0.679386041853723,0.980260640179235,0.6833456289387446,0.6533630348365835,0.7337140552661445,0.8494687218703924,0.6487189406558315,0.6648143475616695,0.9063884445655876,1.2129027165394288,0.6345268795873832,1.066195608187332,0.6486119280443821,0.9616482829818199,0.6451972809004093,0.4821140747231336,0.6869688490689065,0.8359052554911934,0.8131607060435061,0.888475370635068,1.1026365706351806,1.0239084884929222,0.7900059934072517,1.0560056736498602,0.8133297391808199,0.9952628388582018,0.8676755518240232,0.774672448739619,0.8956731406762343,0.8877003936954064,0.7839054825608393,0.7903893732559375,0.7755290820254958,1.067837447528116,0.9235145452152163,1.0454313422057961,0.7840332342129704,1.0060907039605014,0.7811375045781891,0.7877496932344584,0.8217834061558091,0.9263030943174142,1.196722478354533,1.2678860615323284,1.0357385564718975,1.2415815004945134,1.33669014084507,1.1824510240863406,1.2083936842104603,1.1077868934245685,1.2699768618066434,1.1072820268133752,1.2254761920708743,1.1411412474235971,1.186704361032116,1.0800469175621037,1.1215225097521755,1.2933580907279016,1.1723688942163615,1.229248454083514,1.190643604239442,1.3349784196349104,1.0811857330982508,1.1212152606652699,1.0650206544377339,1.3059118862870425,1.2475517402250589,1.1373912451807948,0.7479111885543122,0.8216320182582849,1.2029642221142947,0.8707278601938825,1.2412023760627582,0.9346992059836335,1.1645399774344392,1.3559927952676396,1.124792637595108,1.0909720989600413,1.3316257395508622,1.3001378788503288,0.9899411323270081,0.6037848460586652,1.1359615877080662,0.8108026517309963,1.339131734061304,0.8442570003612568,1.329165978731965,1.3837240977430343,1.2169374742235526,1.0512941580190942,6.0,0.0,3.88888888888889,2.6805555555555554,2.685555555555556,1.42,0.8170975056689342,0.32901077097505665,0.11689814814814814,0.04938271604938271,4993.259731597119,5429.118580457278,2306.457351896937,2146.0760532482636,11.831994475662706,0.4836618407899668,6.109310247346963,0.9367152749855653,1.0,0.375,1.7583654362296968,4.1105780147890165,4.754377842334023,4.807009421281391,4.9122725791761255,4.9122725791761255,0.23076923076923078,0.0,0.09971509971509976,0.05827294685990338,0.05594907407407408,0.03736842105263158,0.02918205377389051,0.019353574763238627,0.02337962962962963,0.008230452674897118,0.5622204833125954,16.467455621301774,5.5,2.528009192760701,129.8218688942212,1.0,4.133771591673896,90.3459191290164,,66.5497639077963,65.51117322428217,65.90989830978938,66.4952346747242,90.17749421320232,66.1553593225426,66.63892857208869,79.18809753247321,0.0032002594343648683,-0.09720223686523763,-0.45579514497297746,0.39877755863227166,0.29964960494675363,0.00964467434817135,0.006354135185060812,0.07673514331446547,-0.08929860882690031,-0.08126812371534184,-0.10165397403175429,0.08583163329228131,0.14561054218945588,0.02866281103952667,-0.012642831836808047,0.04042670756323374,0.19043047014481254,-0.09031219022617573,0.14653343577980768,0.059487112987794126,0.04522376568790748,0.11222520186198622,0.016452345585758164,0.12622717021240654,0.03609874484463173,-0.08170927409688337,-0.1567466553299898,0.03151457336081633,0.09763859754270302,-0.02896222703758258,0.03736573063780477,-0.006943990707763304,-0.0659580456465326,-0.055099624796017696,-0.09473136012296852,0.05821581268452377,0.1574985448290746,0.21810714993887045,0.22997355853509288,-0.09068189130743845,0.07212320652889295,-0.03075321991426242,0.15690793339585718,-0.01586152175744645,0.2191900370852475,0.14997019832678185,0.20384693626884037,0.024539739198014963,-0.23945512424703955,-0.10769350150041081,-0.01484021134591991,-0.27369346457558197,-0.31283070974868804,0.039722676599056775,-0.24422999953280067,-0.1018681577507364,-0.12967987759131602,-0.05926465648330625,-0.07767566452953152,-0.20229933336299463,-0.2359036969760135,-0.15906005056239922,-0.21102165402177622,-0.3513789755208423,-0.2532094695834581,-0.24525681053904821,-0.23806930691937178,-0.3655383384566667,-0.15865556454739474,-0.12967920150785783,-0.15645141507557242,-0.33229133712644887,-0.10160227793730853,0.07162383159305957,0.20218934304062186,0.02533521069729342,-0.09838432896227939,-0.004734443260000987,-0.10047160536647921,-0.012772385282852803,0.05100328156832217,0.04057536768924478,0.09918770964085234,-0.10685659558935472,-0.1485717920987341,-0.21882426118203355,-0.19429733189584988,0.1959531261372734,-0.020466069142125533,0.10841543429524463,-0.15136387590642733,0.09018777940622609,-0.22496657496608455,-0.2510815397344975,-0.1980109592575277,0.02022269220469069,2.548875517071593,14.084049632008123,14.248881202557778,18.069845616672268,40.86519168533375,42.882247174657,43.514405069393845,43.620510332551746,43.620510332551746,46.76615544921324,33.720445165627126,3.9753236316521137,7.281577365259157,1.7888092866748304,13.045710283586102,3627.5823798409606,2711.3007085577274,1047.124834892481,185.0,42.0,59.0,84.0,117.0,145.0,179.0,196.0,214.0,318.1015851800004,26.0,4.919980925828125,5.84354441703136,6.805722553416985,7.751475318021456,8.716863386544805,9.670104253491726,10.6357833282643,11.592558858116771,12.557929501099872,0.7280701754385966,1.0235789473684214,1.1337097333575763,0.6973966916291644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6726582886857865,1.007430340557275,1.0332732778778706,0.6601417560285814,2.0,0.0,0.0,0.0,0.0,2.0,4.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,3.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,20.144157473594294,17.98755429725581,5.749511833283905,5.428790391900541,0.0,4.794537184071822,9.184952231746642,0.0,0.0,0.0,25.831747514004253,11.735768823996422,22.508217252926016,197.4117701101967,-488.71937968681897,-47.15477099898291,-12.861036307547867,-44.42903451698354,294.9905845874491,730.2888547757552,26.884618351947513,19.21812775725672,27.04773536206501,0.4444444444444444,0.6142681000471137,0.19742341277597886,40.13080453728312,0.13763063341026996,71.91861594062657,0.38573189995288626,5.0,0.07692307692307693,0.33505901743598826,0.7832764466084893,0.9059534130673034,0.9159824347739757,0.9360404781873197,0.9360404781873197,1.7400000000000002,,1.619047619047619,1.9044365501821603,1.496739107945042,1.6498516462766213,-7.363745361583799,1.7165486243949246,1.5880051870999228,-2.7812868340196677,80.43070000000003,19.028342580387395,0.0,4.567099647791355,5.733667477162185,31.346146527073948,6.606881964512918,39.430662040486936,0.0,5.749511833283905,3.970291913552122,1.9459101490553132,5.3981627015177525,3.9318256327243257,7.037905963447182,5.860786223465865,8.77971129020447,7.776115477098742,10.577528363356336,27.66666666666667,2.398045634920635,0.0,0.0,0.0,0.0,0.4340972222222228,-0.4382043650793639,1.6743055555555555,38.896000000000015,0.0,23.70823892983119,0.0,0.0,0.0,0.0,0.0,-1.3306809413580247,43.080969867587896,15.899320822862776,4.39041504767482,5.749511833283905,22.24981429509683,5.538925252383345,5.817220841045895,41.728661442156415,17.05774782414651,0.0,10.902924932081056,0.0,26.501074281908245,25.561014970059887,29.53088640992707,180.6918382580328,,132.9587410661102,130.8567432702876,131.70394900232128,132.84700398890266,182.57816378725823,132.16145354731168,133.13976973660345,159.10174815208205,29.530886409927074,180.69183825803273,,131.54890382164302,129.22199480361186,130.46751234793197,131.40876633794625,187.71873378798847,130.67684252813933,131.7563563850626,161.15748189896613,5.197434309359888,125.96794120616464,,91.27129675641504,89.93155298348606,90.11290504243378,91.21653841236578,117.84905060172152,90.74955759654611,91.3799612116794,105.69422709705964,1.2839515830403074,7.856166880784034,,5.780814828961313,5.689423620447287,5.726258652274838,5.775956695169681,7.938181034228619,5.746150154230943,5.788685640721889,6.917467310960089,2.621010684832161,90.3459191290164,,66.5497639077963,65.51117322428217,65.90989830978938,66.4952346747242,90.17749421320232,66.1553593225426,66.63892857208869,79.18809753247321,38.282352941176455,0.0,1.8441028911564625,0.0,14.613218065003778,6.159626690182245,9.223484426177878,39.26438455935909,1.5636176723775925,0.0,5.71447515117158,0.0,-0.17135298563870016,0.0,-0.7633613236961452,0.0,0.0,25.085386729086093,302.4670588788479,66.81788657672848,156.20196456198263,180.66635800869287,182.66635800869287,186.66635800869278,186.66635800869278,1270.0,127.49396254181542,189.93529581879795,78.2782377144221,94.55000000000001,94.55000000000001,0.8,9.375452849381617,5.700439718141092,4.281230746285303,4.723692574528515,,4.703349192483864,4.703465272522439,4.703092106969764,4.703330808710478,4.6752320994412475,4.703401902888886,4.703342001948024,4.695744692569189,0.18614046722979577,0.20537793802297893,,0.20449344315147233,0.20449849010967125,0.20448226552042453,0.20449264385697732,0.20327096084527163,0.20449573490821243,0.20449313051947932,0.20416281272039952,2.2871496487353586,2.3854999417877605,,2.381183972021964,2.3812086520109252,2.3811293104329567,2.3811800633584643,2.3751879313826905,2.3811951789529195,2.3811824432089748,2.3795658369832138,212.25999999999976,154.20377965400243,136.2389072729207,,137.99399344075135,137.90595133677,138.15228759280626,137.96601688245661,142.34554156452919,137.96479946624262,138.01235977112464,139.82689794466623,6.704512158869671,5.923430750996552,,5.999738845250059,5.995910927685651,6.0066211996872285,5.998522473150287,6.188936589762139,5.9984695420105485,6.000537381353245,6.0794303454202705,5.871184095138788,5.747319138653443,,5.7601192813533775,5.759481063705013,5.761265732928248,5.759916523291745,5.791166615933531,5.759907699223233,5.760252367640607,5.7733143372653934,22.001998771730914,23.70823892983119,9.234549240992694,5.015017256130847,-1.67755074483497,0.9196886810279663,2.6101426156882503,2.1045819160997734,0.0,261.4696210072502,97.2060204472912,-240.6465733441625,-23.21912027512745,-6.332804561688486,-21.87696121310568,145.25405846449502,359.59595170102904,13.2380493816465,9.463051360553397,13.318368581519593,1005.0,46.0,2.551441011543376,1.1955708559830154,0.14433756729740643,0.07216878364870322,0.8170457898348431,0.25020319769739563,0.048112522432468816,0.018042195912175804,0.25,0.25,0.39433756729740643,0.26933756729740643,0.31100423396407306,0.19716878364870322,0.610353572943554,0.2727049995239946,1.1330176879830822,0.3652866847455188,16.516143379015546,12.42785795571888,10.832023004512669,7.401047061008791,11.019038591200607,6.35916750126249,9.232419272109967,4.43349676976075,7.985133256359246,3.091853323358187,6.753061495946562,2.289390791355588,5.250544724010165,1.5012073261962844,4.133344600554095,0.9968501251135545,5.540757028253404,2.106196386592508,9.760420056122992,2.9237921349796494,16.652615867770216,4.1877135605687785,73.69626333895866,30.373301172219456,25.561074741637544,24.535413421602726,24.062165524035656,24.062165524035656,136.0,172.0,42.686894999999986,20.773104999999997,0.42105263157894735,170.07,8.67361111111111,4.749999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,10.0,11.0,38.0,0.0,1.0,41.0,11.0,2.0,6.0,35.0,13.0,26.0,28.0,0.0,0.0,0.0,16.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,5.0,2.0,2.0,23.0,7.0,0.0,2.0,4.0,0.0,4.0,2.0,0.0,0.0,1.0,1.0,2.0,3.5409593240373143,8.05869437725607,4.269697449699962,4.95758607300644,5.6498541326306455,6.311280985682452,6.817864761241664,7.2996073149156695,7.644115343606707,8.024461986380073 +3767,NNC(=O)c1ccncc1,0,25.529411764705884,6.582629411764706,3.0,9.058823529411764,169.0800691142496,101.01490129411764,1.4187584902319412,6.614905882352942,6.40032679738562,8.013468705882353,217.94240694952342,26.352941176470587,6.747758823529413,3.5294117647058822,8.235294117647058,158.5261019079706,100.30472905882353,1.6858490670588235,6.840358823529412,4.339869281045751,8.091608470588236,255.6767245661332,22.64,6.5922,3.24,6.88,160.46600033704198,84.44639904000002,1.5283889829939599,6.672104000000001,4.093333333333333,7.9986752,225.05605214277617,19.17241379310345,6.379758620689655,2.7586206896551726,5.241379310344827,161.0658157607809,70.34627899999998,1.3135735039791725,6.449434482758621,4.448275862068965,7.868285379310344,188.11757954638023,16.56,6.59452,2.24,3.92,166.48233747018793,57.65469804,1.09977461814792,6.629280000000001,4.506666666666666,8.11908016,156.88125738728317,13.65,6.514795000000001,1.7,3.4,177.7910892583448,46.1103594,0.9114671325697999,6.50556,4.375,8.0525668,121.97197526138805,7.142857142857143,5.766207142857143,1.4285714285714286,1.0714285714285714,180.43996835899958,20.934139499999997,0.752305112078143,5.7704,2.642857142857143,7.415678,82.1186878565151,3.0,5.4780000000000015,1.3333333333333333,0.0,189.15881148493267,5.3837280000000005,0.5408993698993333,5.456,1.6666666666666667,7.238592,49.71122125416147,,,,,,,,,,,,7.591695501730104,0.15193010380622832,0.027093478287195154,0.47750865051903113,4.062283737024221,1.6497879152703452,35.93556508650519,0.19714178856550174,0.13937785467128025,2.2018454440599773,0.08891252595155706,44.307626433705636,-0.30449826989619383,-0.017080276816608952,-0.012193303124138829,0.16608996539792392,0.47750865051903113,0.3644128857591702,-1.3260346574394466,0.0253468783391003,-0.015378200692041547,-0.320645905420992,-0.009468456747404815,3.8035402572875134,-0.7587543252595157,-0.011535986159169518,-0.0043274953566374485,-0.08221453287197228,-0.2834602076124568,0.1637015330329627,-3.57120368885813,0.008097261123453537,-0.011551031141868522,-0.12282583621683968,-0.003245420069204138,-0.5045260230427812,0.1608399952272997,0.00949869943920772,0.006822171998056822,-0.14079465457582627,-0.4760768404724973,-0.2936138671904609,0.6492451629877106,-0.030839166193629523,0.009263930318577735,0.28581513741399195,0.00443854098556257,-4.104001886945772,-2.6034602076124567,-0.05891928027681656,-0.0071742079772711305,-0.1292733564013841,-1.7234602076124568,-0.8789464349292136,-12.275004293564013,-0.07650288395236995,-0.05335714878892734,-0.7476624375240294,-0.03643006948096881,-16.730261749949765,-1.2358131487889272,-0.0039889273356401266,0.0017677692357596392,0.013667820069204107,-0.09757785467128026,-0.07676043914598803,-5.908597733564013,-0.022290982130995823,-0.007090795847750848,-0.2885284505959248,-0.0005878906574394273,-7.899870508179734,1.483934750370737,0.03372787938704884,0.004219951117920026,0.09391992090954024,1.1183885318833418,0.2767463847923964,6.937283262234304,0.012145294001233601,0.031339792387543294,0.2552040424012745,0.017869003460207533,5.162516575963433,3.996539792387544,0.015411072664359746,-0.004623919548800883,0.14994232987312567,1.271049596309112,0.6397446256753373,19.24456079584775,0.12894329706155716,0.02230449826989622,0.40109573241061175,0.004994768166089863,32.38881968099368,,,,,,,,,,,,,,,0.4533333333333333,1.35,0.75,0.0,0.6,0.15,0.4350808267689613,0.0071678307271999305,0.01576783072719993,0.7216638327051008,0.2940365674409334,0.1902169580691761,1.1567446594740622,0.4842535255101096,1.952724104193718,1.224033964894959,0.5548592373491313,0.17383090194962794,0.0,0.7286901392987593,8.062288932,434.0,111.90469999999999,51.0,154.0,2874.361174942243,1717.2533219999998,24.118894333943,112.45340000000002,108.80555555555554,136.228968,3705.020918141898,448.0,114.71190000000001,60.0,140.0,2694.9437324355004,1705.180394,28.65943414,116.2861,73.77777777777777,137.557344,4346.504317624264,566.0,164.805,81.0,172.0,4011.6500084260497,2111.1599760000004,38.209724574849,166.8026,102.33333333333333,199.96688,5626.401303569404,556.0,185.013,80.0,152.0,4670.908657062646,2040.0420909999996,38.093631615396,187.0336,129.0,228.180276,5455.409806845027,414.0,164.863,56.0,98.0,4162.058436754698,1441.367451,27.494365453698002,165.73200000000003,112.66666666666666,202.977004,3922.031434682079,273.0,130.29590000000002,34.0,68.0,3555.821785166896,922.207188,18.229342651396,130.1112,87.5,161.051336,2439.439505227761,100.0,80.7269,20.0,15.0,2526.159557025994,293.077953,10.532271569094002,80.7856,37.0,103.819492,1149.6616299912114,18.0,32.86800000000001,8.0,0.0,1134.952868909596,32.302368,3.2453962193959995,32.736000000000004,10.0,43.431551999999996,298.26732752496883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129.05882352941177,2.5828117647058813,0.4605891308823176,8.117647058823529,69.05882352941175,28.046394559595868,610.9046064705883,3.3514104056135294,2.369423529411764,37.43137254901961,1.51151294117647,753.2296493729958,-5.176470588235295,-0.2903647058823522,-0.20728615311036008,2.8235294117647065,8.117647058823529,6.195019057905894,-22.542589176470592,0.4308969317647051,-0.2614294117647063,-5.450980392156864,-0.16096376470588186,64.66018437388773,-18.96885813148789,-0.28839965397923795,-0.10818738391593621,-2.055363321799307,-7.086505190311421,4.0925383258240675,-89.28009222145326,0.2024315280863384,-0.28877577854671305,-3.070645905420992,-0.08113550173010345,-12.613150576069529,4.6643598615916915,0.27546228373702386,0.19784298794364785,-4.083044982698961,-13.806228373702423,-8.514802148523366,18.828109726643607,-0.8943358196152562,0.26865397923875434,8.288638985005766,0.12871768858131455,-119.0160547214274,-65.08650519031141,-1.472982006920414,-0.17935519943177827,-3.2318339100346023,-43.08650519031142,-21.97366087323034,-306.87510733910034,-1.9125720988092487,-1.3339287197231835,-18.691560938100736,-0.9107517370242202,-418.25654374874415,-24.716262975778545,-0.07977854671280253,0.035355384715192784,0.2733564013840821,-1.9515570934256052,-1.5352087829197605,-118.17195467128028,-0.44581964261991647,-0.14181591695501697,-5.770569011918496,-0.011757813148788546,-157.99741016359468,20.775086505190316,0.4721903114186838,0.059079315650880364,1.3148788927335633,15.657439446366784,3.8744493870935495,97.12196567128026,0.17003411601727042,0.4387570934256061,3.5728565936178427,0.25016604844290546,72.27523206348806,23.979238754325262,0.09246643598615847,-0.0277435172928053,0.899653979238754,7.626297577854672,3.838467754052024,115.4673647750865,0.773659782369343,0.1338269896193773,2.4065743944636706,0.02996860899653918,194.33291808596206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7397341225498538,0.5242213231911951,0.4842535255101096,0.2753213995177359,0.31530185591765564,0.14244587021867575,0.22132273708891453,0.07668597102171777,0.14546683708866912,0.04190158542006871,0.10122216355858284,0.021993835701511002,0.07112944921610613,0.010680819658043605,0.05317259895480819,0.0058313683456945676,8.022015085898161,5.721406352681346,3.5438042393190354,2.2173450240452732,0.4066972307221319,-0.37456018845427763,3.1357300342169134,0.9777044891151864,6.021945666212753,2.8205738954472586,14.645682554358858,10.985550687774284,16.010060021505353,11.73545904084648,1.9572380257304087,0.7517434391924342,3.489033342127472,2.2661099278896164,7.008267683582414,1.500640960471797,3.7019364522805702,2.4614864715148834,20.856602222055432,14.702710879327007,0.39602196951226715,0.7329908047180117,0.8770242113253829,0.9038089464662007,0.9038089464662007,0.9038089464662007,2.239538805558814,221.69435494406167,0.0,3.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,2.348008644758449,0.8679345589507919,0.235294117647058,0.11764705882352944,0.11764705882352944,0.11764705882352944,66.30178222651229,345.88810140680573,43.19931810538891,20.34635890628269,41.7020101770722,,6.0,90.0,0.0,4.794537184071822,5.907179729351506,5.563451491696996,0.0,12.393687143226153,12.13273413692322,5.425791397110385,4.9839785209472085,5.842670270266239,4.533333333333333,13.5,7.5,0.0,6.0,0.0,0.046666666666666676,1.5,0.21764705882352936,0.0668534080298786,-0.15079365079365076,0.13769230769230756,0.20842379182156134,0.0,0.6509803921568631,0.8966666666666667,0.43333333333333374,0.5841269841269845,0.7589743589743592,4.350808267689613,0.07167830727199931,0.1576783072719993,7.216638327051008,2.9403656744093345,1.9021695806917611,11.567446594740622,4.842535255101096,0.5055762081784386,0.16176470588235295,0.0,0.22058823529411764,0.0,0.39145842860300856,-0.44332494481560186,-0.08094849019063045,-0.026077937930329524,-0.0738874908026003,0.6085415713969914,0.6891706471114605,0.06049331462898242,0.040539449830085915,0.06265187701013276,-1.030729148097026,0.7839562443026435,0.8391037583299549,1.4174830280514499,0.7536231884057971,0.5792163543441228,1.0437545389982616,0.7849822707132561,0.8869770232872314,0.8181091454362194,0.7274314649903962,0.8121670068011326,0.8189274771394285,0.9025341841385597,0.8547583800600347,1.111101796630609,1.340289855072464,0.9082112436115845,1.048717841085238,0.9052230134503398,0.9667704797935716,0.8505697588393305,0.7190640824166229,0.8080723669155797,0.9400368112925233,0.8742338037909031,0.8200952748792886,0.6765140857087085,1.4612693653173414,1.0665570111026261,1.148004372837465,0.8787947340486466,1.181965506271968,0.8150854984968228,0.8700469042587139,0.8718137683146696,1.0729731740889077,1.3166089334548767,1.5856579468795975,1.2294676738759347,1.1431884057971013,1.4596252129471894,1.3820343258247803,1.3091441158064083,1.3027638672225212,1.5627497380847164,1.8513287934346074,1.7202984964032921,1.265565996053698,1.2242479489516864,1.2052446262395289,0.9342783683209152,0.5420289855072464,1.0310051107325386,0.8354548595430165,1.2202810692603452,0.90283001825355,1.227775433091196,1.3331063383970663,1.180435278715677,1.0461250343428492,0.9209532491209793,0.5820234998923067,0.646489759864657,0.422360248447205,0.6867851058651742,0.49905091094065757,0.9271366041221412,0.7823916327895926,0.6286761237531092,0.41218289306293493,0.4468846951943746,0.9118117340718679,0.7438468550592525,0.7814739066862832,1.0055365450642881,0.3285024154589372,0.965360590573538,0.0832386513271783,0.7375903393547151,0.149324837117062,0.7941172089512962,0.28496595075955994,0.6393664522081238,0.3556792820887871,,,,,,,,,,,,,1.5,0.0,1.1111111111111116,0.4375,0.19111111111111112,0.1527777777777778,0.04,0.0,0.0,0.0,1477.144588475356,1641.0548748991098,938.4820366892909,858.1554903159827,7.431936119361031,0.42617950675676686,4.264597249763947,0.7427052741668401,0.0,0.0,1.7394541964918901,3.2195282822995472,3.852168723603281,3.9698157824268097,3.9698157824268097,3.9698157824268097,0.15,0.0,0.09259259259259263,0.03977272727272727,0.0273015873015873,0.03819444444444445,0.04,0.0,0.0,0.0,0.3878613516113517,8.1,4.0,2.2857142857142856,58.03740421573959,1.0,3.1888842878226584,24.960276865643102,,18.30801946348676,17.89208720875894,17.632176911003622,18.31187189831341,26.418160888132373,18.133907114594457,18.33302601930063,23.5110306069233,-0.04010938924339107,-0.11242193869881864,-0.450045689774044,0.34782608695652184,0.11754684838160137,0.2208846860776375,-0.03690034243923465,0.1285718189103201,-0.11033460608437913,-0.14562598218962808,-0.10649182042768184,0.08584391815658375,-0.09994530537830447,-0.0759295614902134,-0.1597246138264461,-0.1721739130434782,-0.06977853492333905,0.09922580443083043,-0.09937797500224135,0.04107328630004372,-0.08287565602951336,-0.05578313253012047,-0.036501269472114274,-0.011386888977175694,0.02118630748436172,0.06252019317595126,0.2518012610171614,-0.2948525737131434,-0.11719438406861307,-0.1779706739713555,0.01806692510399733,-0.15643140106433087,0.06646630011938784,0.1298070844096024,0.04992031143036985,-0.09262518029681187,-0.3429352780309936,-0.3878051735682497,-0.2647946454576039,-0.27072463768115945,-0.4242589437819422,-0.5327632884164893,-0.34158372809820153,-0.38806021041526334,-0.3828237198425034,-0.33956172516151567,-0.4097293276856998,-0.3775932744892591,-0.1627848678213309,-0.026255016193022587,0.06524703904832764,0.028623188405797008,-0.024020442930153322,-0.04652745873302724,-0.16442200698223766,-0.11307081209517124,-0.05087462326403533,-0.13103937489086787,-0.006612011650189002,-0.1782959536322658,0.19546815991665586,0.22199602673914698,0.1557552364885703,0.196687370600414,0.27531029447554156,0.16774664320840713,0.19304784119950982,0.06160689770346809,0.2248548914851469,0.11590461223777106,0.200972846839862,0.11651530428261014,0.5264357338195078,0.10143528029188364,-0.17066540884070347,0.3140096618357487,0.31289040318001143,0.3877738585389653,0.5355296556356259,0.6540637477209195,0.1600289968768777,0.18216343635411228,0.056176203663488355,0.7309987532158776,,,,,,,,,,,,,3.3019272488946267,4.298279727294167,1.0,16.933206813231827,30.80493543368077,32.73710758675023,32.85569582204435,32.85569582204435,32.85569582204435,19.52724104193718,12.24033964894959,5.548592373491314,1.7383090194962794,0.0,7.286901392987593,771.2983192104582,633.788200980113,140.48864508606266,0.0,12.0,14.0,14.0,14.0,8.0,6.0,2.0,0.0,137.058911844,10.0,3.8066624897703196,4.574710978503383,5.3612921657094255,6.150602768446279,6.9440872082295275,7.737616282857904,8.532475814947395,9.326967183907902,10.122020491292654,0.7058823529411766,1.0143529411764707,1.149124388598987,0.6716490276070467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6618369496301515,0.9979238754325259,1.025148879653828,0.6402992421067757,4.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.907179729351506,15.204307102129416,5.842670270266239,0.0,0.0,0.0,12.13273413692322,17.957138634923147,0.0,119.5596818339816,-135.40081264918624,-24.723380632450063,-7.96475368524625,-22.566802108197706,185.8614640604939,210.48728875761947,18.47593747293885,12.38160522103644,19.135208068874494,0.5,0.6742864957534135,0.25619784269012874,28.056071506667912,0.23380466344603523,39.20314986847312,0.3257135042465864,3.0,0.1,0.4255584121615642,0.7876593396295454,0.9424351665604176,0.9712175832802087,0.9712175832802087,0.9712175832802087,-0.3149000000000006,,0.6785714285714287,0.8427175430432758,0.8488829422512447,0.6767661145452564,-2.636839718884606,0.7422735618115056,0.6692837795551935,-1.356968362788312,35.89060000000001,4.794537184071822,0.0,10.409769918057593,5.842670270266239,0.0,0.0,30.08987277184637,0.0,0.0,3.044522437723423,0.0,4.23410650459726,0.0,5.652489180268651,0.0,7.158513997329321,0.0,8.703008637464448,12.000000000000002,6.235648148148147,3.741258503401361,0.0,0.0,0.0,0.0,0.5115740740740744,0.0,17.244,0.0,10.749537037037037,0.0,0.0,0.0,0.0,0.0,-0.3033333333333328,19.53511460618278,11.268461667376624,0.0,0.0,10.891158250298714,0.0,0.0,10.357988675768818,24.52642128014937,0.0,0.0,0.0,11.418033469319793,11.251228143712575,12.857278973510143,49.9205537311563,,36.48032452157916,35.61563072319494,35.094576992276096,36.488390454528144,53.53430167430301,36.119359373130024,36.53219516611214,47.301003010407825,12.857278973510143,49.92055373115632,,35.98872351010664,35.01658371064625,34.51661138133592,35.99805251538178,55.47316149512346,35.586488189329586,36.04671451524876,48.37902957611908,4.428639486755071,37.10029833365091,,28.027345153970998,27.479153242182676,27.131576742753758,28.03240954057236,39.78255939785771,27.796787421879028,28.06051223485376,35.43216696240782,1.2857278973510142,4.9920553731156305,,3.648032452157916,3.561563072319494,3.5094576992276094,3.6488390454528146,5.353430167430301,3.611935937313002,3.653219516611214,4.730100301040783,2.214319743377535,24.96027686557815,,18.308019403646725,17.892087115901795,17.63217679036317,18.311871838718595,26.418160888119417,18.133907042746166,18.33302596101159,23.51103060666539,16.96470588235294,0.0,0.0,0.0,0.0,4.884111866969009,0.0,17.427530954115074,0.0,2.0145370370370372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.885087115815187,205.94135419417793,29.570721340362134,54.731980799092305,65.48686830125578,67.48686830125577,67.48686830125577,67.48686830125577,90.0,82.55643538366479,99.47979170029754,38.792640757383104,68.00999999999999,68.00999999999999,1.0,5.833347679010845,4.321928094887362,2.9630101542382956,3.1194484071355912,,3.1190824398284662,3.1214600714319163,3.1238540621691677,3.119063485035367,3.0778746833210286,3.12012416656461,3.1189346953900685,3.0900245682185776,0.2963010154238296,0.3119448407135591,,0.3119082439828466,0.31214600714319163,0.3123854062169168,0.3119063485035367,0.30778746833210285,0.31201241665646096,0.3118934695390069,0.3090024568218578,1.0862056955981432,1.1376561936069933,,1.1375388687699373,1.138300863969619,1.1390675158315735,1.1375327917100777,1.1242393209169825,1.137872798005349,1.1374914997309549,1.1281790417578446,103.15000000000005,33.96831842298378,34.31356181887111,,34.082062444241906,33.99406502342958,33.941574262553395,34.08287427103385,35.47623979021194,34.04560936539324,34.087272441342066,35.05441604734579,3.396831842298378,3.431356181887111,,3.4082062444241905,3.399406502342958,3.3941574262553393,3.408287427103385,3.547623979021194,3.404560936539324,3.4087272441342065,3.505441604734579,3.5254282791216194,3.5355406643318164,,3.528771217860094,3.5261859512446927,3.524640642423772,3.5287950373435732,3.568863170714836,3.5277010775966966,3.528924072427886,3.55690159833578,0.0,14.490795540438398,0.0,2.5261111111111116,4.5807785336356766,3.1710185185185185,3.0646296296296294,0.0,0.0,120.31058429682666,36.51605502851357,-41.35427135435766,-7.551043243148181,-2.432604197315156,-6.892378559059609,56.76602133098092,64.28726892857348,5.642941994459663,3.7816040546219702,5.844297175324862,121.0,11.0,0.4023689270621825,0.1343643696413162,0.0,0.0,0.11785113019775792,0.017010345435994292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10206207261596575,0.024845199749997663,0.05892556509887896,0.012422599874998832,7.397341225498538,5.2422132319119505,4.842535255101096,2.753213995177359,3.7836222710118674,1.7093504426241088,3.0985183192448034,1.0736035943040487,2.0365357192413676,0.5866221958809619,1.4171102898201597,0.307913699821154,0.569035593728849,0.08544655726434884,0.31903559372884915,0.03498821007416741,1.0892556509887894,0.26030075005191133,1.3392556509887894,0.250304801527571,1.5160323462854262,0.206101232894733,33.97779916341699,20.391561605943775,17.802775055001515,17.557191191325003,17.557191191325003,17.557191191325003,44.0,48.0,18.789550999999992,7.890448999999999,0.35294117647058826,10.04,3.7222222222222223,2.444444444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,17.0,0.0,0.0,17.0,6.0,1.0,4.0,13.0,7.0,10.0,10.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,3.0,2.0,1.0,10.0,4.0,0.0,3.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,2.70805020110221,0.0,3.1570004211501135,3.6309854756950335,4.000491653415755,4.399835854885064,3.9761708252518977,4.0375537278753555,2.7842393394597567,0.0 +132971,C[C@]12CC[C@H]3[C@@H](CC=C4C[C@@H](O)CC[C@@]43C)[C@@H]1CC=C2c1cccnc1,0,17.68421052631579,5.644121052631579,3.245614035087719,4.385964912280702,160.91584399165296,69.22808663157895,1.4485930535143685,5.7399157894736845,2.4968323586744643,7.242072280701753,203.29309946541736,21.18032786885246,5.992622950819673,4.147540983606557,4.639344262295082,142.34374267849432,78.73952527868856,1.873028480098361,6.1592049180327875,2.348360655737705,7.445399868852456,260.71833989037475,17.638655462184875,5.829647058823528,3.8739495798319328,3.403361344537815,148.28083451181837,64.36749747058822,1.650550770664177,5.972096638655461,2.0643090569561156,7.342921781512604,223.05875391945193,14.19672131147541,5.717672131147543,3.19672131147541,2.240437158469945,151.82563538475316,49.63006249726775,1.4590886068575026,5.842024590163933,1.9779143897996352,7.279696633879779,188.51518116656482,11.132478632478632,5.567324786324787,2.623931623931624,1.5299145299145298,155.63450555427207,36.9388349017094,1.2800169703181623,5.676151709401709,1.8043387939221271,7.174181521367521,156.57518714950635,9.0390625,5.444703124999999,2.23828125,1.203125,161.60004040138168,29.257355199218754,1.0953840979189806,5.530234375,1.70556640625,7.102334640625,128.7879369742941,8.48165137614679,5.479779816513761,2.1376146788990824,1.110091743119266,165.45711314306908,27.215939848623847,1.0267781508603713,5.54829128440367,1.7770132517838941,7.156354697247705,120.52557947743946,8.861635220125786,5.490578616352201,2.1949685534591197,1.2578616352201257,162.7549015120748,28.335752647798753,1.071994355154365,5.569455974842766,1.8130677847658982,7.151369937106916,125.99018626277837,8.926829268292684,5.490260162601627,2.1463414634146343,1.4878048780487805,165.13784445276707,29.23867065853658,1.0325426144333252,5.559865853658538,1.862240289069557,7.163718471544716,122.64280198882754,6.573099415204678,0.053800061557402225,0.006417900757116822,0.6968297937827024,2.6081871345029244,1.3807372163766047,31.62795356786704,0.24042249131926557,0.05712896275777156,0.5596893061112822,0.027287788242536155,53.74549031868463,0.43351548269580975,-0.00022166063706856713,-0.002106500375896944,0.31036031263087227,0.8652094717668488,0.08700616123106437,2.123870765178683,0.022185632207789248,0.0004620352289986273,-0.034440049088944776,-0.0007235478053777086,4.530914823472833,0.37441643323996204,-0.00021484852482077062,-0.000334414960729024,-0.0303105545080452,-0.028944911297852344,0.12924808831817564,1.8316768120533473,0.020249847094114128,0.0004139975842599541,0.009249380474463326,-0.00046847112621596014,4.192379807980438,-0.6666666666666669,-0.005012313498730976,2.8174786487211672e-05,-0.1431915999374335,-0.4553734061930783,-0.08150683447453959,-3.189149370282915,-0.016383834319849955,-0.005774413817113941,-0.01953921929740466,-0.0020355642946884057,-4.50069396558941,-1.0327635327635327,-0.003569524745286519,-0.00012755655443823135,-0.09434066497778412,-0.264957264957265,-0.2320449717557526,-5.0021100287307325,-0.041862344064302885,-0.004940786119594973,-0.012645875478670203,-0.0009045082905193674,-9.363187744943728,0.03298611111111121,0.0032240543965450547,9.233110744278914e-05,0.00382810095413975,0.10069444444444442,-0.12040889864627291,0.10989783529908453,-0.013844867697063378,0.00320056026854415,0.02091517275080363,0.0014754401017620868,-1.9288209379326349,0.29612640163098897,-0.002383740939343392,-0.00021317356004296287,0.02142225836601807,-0.011213047910295704,0.161469572491249,1.476638100167732,0.023549166909325663,-0.0017122960911049722,-0.03405533075495043,-0.0015634969178942816,4.472552733277724,-0.2159329140461214,-0.0012302061011516103,3.9951772138948195e-05,0.014524062556258259,-0.016771488469601713,-0.06001467948148545,-1.0460785559504497,-0.009798093589873465,-0.0013738816587977826,-0.03934253597139713,-0.0005856962200270582,-2.053775931294897,0.6341463414634145,0.0016067563002499573,-4.9777784691302964e-05,0.022468451831332746,0.21951219512195116,0.11439074479234003,3.0690427183974087,0.023316506813930087,0.0026575298966285865,-0.02338722525421624,4.275657050201698e-06,5.474298467718796,,,0.4897435897435897,0.9134615384615384,0.3076923076923077,0.0,0.6057692307692307,-0.2980769230769231,1.3611763270898969,0.015098964191501533,0.03163742572996307,0.476770874144987,0.12508294599321107,0.35651861144502184,1.8379472012348839,0.4816015574382329,2.0945393511395602,1.9490278062060769,0.07738565661858801,0.06812588831489545,0.0,0.14551154493348348,6.127027449333349,1008.0,321.7149,185.0,250.0,9172.20310752422,3946.000938,82.56980405031901,327.1752,142.31944444444446,412.7981199999999,11587.706669528789,1292.0,365.55,253.0,283.0,8682.968303388154,4803.111042000002,114.25473728600002,375.71150000000006,143.25,454.1693919999998,15903.81873331286,2099.0,693.7279999999998,461.0,405.0,17645.419306906388,7659.732198999998,196.4155417090371,710.6794999999998,245.65277777777777,873.807692,26543.99171641478,2598.0,1046.3340000000003,585.0,410.0,27784.091275409828,9082.301436999998,267.01321505492297,1069.0904999999998,361.95833333333326,1332.1844839999997,34498.27815348136,2605.0,1302.7540000000001,614.0,358.0,36418.474299699665,8643.687366999999,299.52397105445,1328.2195,422.21527777777777,1678.7584759999997,36638.59379298449,2314.0,1393.8439999999998,573.0,308.0,41369.61034275371,7489.882931000001,280.41832906725904,1415.74,436.625,1818.197668,32969.71186541929,1849.0,1194.5919999999999,466.0,242.0,36069.65066518906,5933.074886999999,223.83763688756096,1209.5275000000001,387.3888888888889,1560.0853239999997,26274.576326081802,1409.0,873.002,349.0,200.0,25878.029340419896,4505.384671000002,170.447102469544,885.5434999999999,288.2777777777778,1137.0678199999998,20032.43961578176,1098.0,675.3020000000001,264.0,183.0,20311.95486769035,3596.3564909999996,127.00274157529898,683.8635000000002,229.05555555555551,881.1373720000001,15085.064644625787,374.66666666666663,3.066603508771927,0.36582034315565887,39.719298245614034,148.66666666666669,78.70202133346648,1802.793353368421,13.704082005198138,3.256350877192979,31.902290448343084,1.5554039298245608,3063.492948165024,26.444444444444393,-0.013521298861182595,-0.12849652292971359,18.93197907048321,52.77777777777778,5.307375835094927,129.55611667589966,1.353323564675144,0.028184148968916266,-2.1008429944256313,-0.04413641612804022,276.3858042318428,44.555555555555486,-0.025566974453671704,-0.03979538032675386,-3.6069559864573786,-3.444444444444429,15.3805225098629,217.96954063434833,2.409731804199581,0.04926571252693454,1.1006762764611357,-0.055748064019699256,498.8931971496721,-122.00000000000003,-0.9172533702677685,0.005155985927159736,-26.20406278855033,-83.33333333333333,-14.915750708840745,-583.6143347617734,-2.9982416805325416,-1.0567177285318512,-3.575677131425053,-0.37250826592797825,-823.626995702862,-241.66666666666666,-0.8352687903970454,-0.02984823373854614,-22.075715604801484,-62.00000000000001,-54.29852339084611,-1170.4937467229913,-9.795788511046876,-1.1561439519852237,-2.9591348620088276,-0.21165493998153198,-2190.9859323168325,8.44444444444447,0.825357925515534,0.02363676350535402,0.979993844259776,25.77777777777777,-30.824678053445865,28.13384583656564,-3.5442861304482247,0.8193434287473024,5.354284224205729,0.3777126660510942,-493.7781601107545,64.5555555555556,-0.5196555247768595,-0.046471836089365906,4.670052323791939,-2.4444444444444633,35.20036680309228,321.90710583656556,5.133718386232995,-0.37328054786088394,-7.4240621045791935,-0.3408423281009534,975.0164958545439,-34.3333333333333,-0.19560277008310603,0.006352331770092763,2.309325946445063,-2.6666666666666723,-9.542334037556186,-166.3264903961215,-1.557896880789881,-0.21844718374884742,-6.255463219452143,-0.09312569898430226,-326.5503730758887,77.99999999999999,0.19763102493074475,-0.006122667517030265,2.763619575253928,26.999999999999993,14.070061609457824,377.4922543628813,2.8679303381134007,0.32687617728531615,-2.8766287062685976,0.0005259058171748088,673.338711529412,0.6900364161899634,0.6199106673539235,0.4173880164464686,0.35027930050568534,0.25878530566236185,0.20653913393682954,0.16028802779820173,0.12330350686347046,0.09923214315337688,0.07251208070299116,0.06250432785129723,0.04261618423963696,0.03770100656553223,0.025519116444701874,0.02340841740019765,0.014756221072421244,8.006089964348373,5.701858655136469,3.5122908655694873,2.2002144593127584,0.34259882720381624,-0.37660501906559946,4.030794598658228,0.9934309886825116,5.022604786092114,0.9950210500470088,14.54784038407896,10.963931985330982,16.002045598894455,11.714106073386391,1.9907368301282304,0.7879509973173343,3.4538503668007285,2.2496585900061477,6.002602366630347,1.0984186002247618,3.6675673863196954,2.445306318863677,20.897592560801233,14.708161561133622,0.1998532849841717,0.5265603460783465,0.7624878497942228,0.856136063240017,0.8967710764832942,0.8967710764832942,1.3773899037405535,765.6751390980412,0.0,2.0,2.0,0.0,4.0,8.0,3.0,3.0,2.0,4.6248979936719445,2.6501517548414317,1.224112938786269,0.6580662281460858,0.41245219305836756,0.41245219305836756,265.3338021991277,815.8683911738555,42.346208932665135,14.313480546909744,27.018971401481345,,13.0,567.0,0.0,5.106527394840706,6.103966387748303,10.82998093879356,30.5953613843362,37.667559606327046,11.146209060138535,12.393687143226153,43.11622727091944,0.0,12.733333333333333,23.75,8.0,0.0,15.75,0.0,0.010256410256410288,-7.75,0.05435254803675854,0.024975258659469146,-0.029377289377289395,0.016476733143399813,0.05651290877796877,0.0,0.5029239766081874,0.7448717948717947,0.4485714285714289,0.4779487179487183,0.7283950617283949,35.39058450433732,0.3925730689790399,0.8225730689790398,12.396042727769661,3.2521565958234877,9.269483897570568,47.78662723210698,12.521640493394056,0.6574870912220312,0.10471204188481675,0.07853403141361257,0.274869109947644,0.625,0.26339616274704,-0.3832558127852718,-0.04003446315862279,-0.006723786189215294,-0.0166632962080553,0.73660383725296,1.071798842484488,0.035487580723783704,0.018803488464640142,0.03152349536719081,-4.851646078245994,0.9862318417828598,0.9040514057929169,1.2037883493994286,0.9245206511035161,0.7163125781077702,1.11398891172632,0.988050567566066,1.058914521028598,0.9141138415655007,0.9704038553833091,0.9045722375624001,1.0370541412962642,0.9614821017374923,0.8358433011206182,0.7972901619891858,1.7001662855955102,1.1664468477974148,1.0178433726950626,0.9634918393472851,1.0114637714470882,0.8579217114512119,0.7272000248005287,0.7913335375566894,0.9992462654741656,1.099352429846567,0.9473245707014788,0.7772159073932451,1.5832416150147715,1.2288465779607438,1.1065645251621237,1.1009626976551905,1.1281854717605206,0.9832173089430691,0.8962646810943453,0.9097559559532836,1.1295140160270507,1.1158864859932478,0.7353936292415575,0.6286137084977096,1.162861284769412,0.9714844199149131,1.1646161382064975,1.1204586359360418,1.198335475826523,0.8179750204037424,0.6064784976086692,0.6036259145648544,1.1933791864355596,0.9344556272241994,0.638662100234902,0.5680053998036543,0.8288634606890459,0.7879414237668161,1.0260710155994308,0.9385327952978507,1.0260823056811879,0.6976237813961378,0.5515022207031399,0.5419681401313432,1.01046878378996,0.9228508929445951,1.1059362190798594,1.0154233977688991,0.8245939637566051,0.9607109063232812,0.814000694964988,0.9197394079923599,0.8276529998964803,1.0738287840057796,1.0991408967095118,1.1320276273071312,0.8525101216347275,0.9940911837776137,0.9561599709989279,0.9590759960393797,0.8113540902726848,0.9428885692528978,0.9839287300772219,0.994381560803298,0.9926790207717134,0.965799218414229,0.9949415856250586,0.9370042389156653,0.9961728290705195,0.8749240517316206,1.0556261944558665,1.1189135031516921,0.8138412479531156,0.9294542272776986,0.844961884136919,0.8726644782296702,0.8318334735948266,1.0172541935104071,1.1606266534302208,1.117533125192891,0.8360583956695912,6.5,0.06591164166921742,5.333333333333334,3.1319444444444446,2.436666666666667,1.0836111111111109,0.7396371882086169,0.36461876417233563,0.2721009700176366,0.11156635802469136,4830.113240337225,5773.539867605603,2420.7382579784985,2105.924191061559,14.536042391216169,0.4423707013514617,8.105723123739294,0.7933060591033945,1.0,0.625,1.2079920204927965,3.1827382593233096,4.608777075378472,5.1748237860186554,5.420437821106374,5.420437821106374,0.2166666666666667,0.006591164166921742,0.1134751773049646,0.059093291404612155,0.051843971631205674,0.02778490028490028,0.023859264135761834,0.01585298974662329,0.01432110368513877,0.00697289737654321,0.5364614264033383,18.055555555555557,6.518786781349027,2.703673469387755,156.9766543476896,0.0,4.239940635637572,121.91792743063952,,110.92302341882109,110.65196875814462,110.76594211383814,110.92637651351654,115.88909754774627,110.82321246928537,110.93783966276307,113.70925370342108,0.06595297823930914,-0.004120081476711049,-0.3282226471889647,0.44538898221630036,0.33172829522899355,0.06301427976236493,0.06715169733069501,0.09227769035272226,0.008087583017350936,-0.06153422749531168,-0.02651544342644244,0.0843031628627204,0.05696193067974512,-0.003993462434825228,-0.05210659581455675,-0.04349778780770268,-0.011097712627651907,0.09360802822231049,0.05791322565726386,0.08422609292083093,0.007246719777065019,0.016525919601230125,-0.017167793961612037,0.078004308512615,-0.10142348754448402,-0.09316557181599253,0.004390031499936891,-0.20549006545791584,-0.17459383959420713,-0.05903138809311857,-0.10083325066984372,-0.06814601341973983,-0.10107681880375845,-0.03491083192774047,-0.0745961628181859,-0.08374086716676103,-0.15711971895245916,-0.06634796767802947,-0.01987512105056839,-0.13538552142792432,-0.10158675405312177,-0.1680587507916212,-0.15815471645983165,-0.17411991629648488,-0.08648478601902938,-0.022594456139485082,-0.0331469990341475,-0.17421345845808786,0.005018349644128129,0.05992659307843235,0.014386496603332953,0.005493595406360446,0.03860706278026905,-0.08720623824586664,0.003474705850420153,-0.05758557621249455,0.05602342689319631,0.03736925562527203,0.054069611235921765,-0.03588805175086625,0.045051258611120214,-0.044307401708082596,-0.03321546532276528,0.0307424546957565,-0.0042991730777142715,0.11694446312889646,0.046687753508907005,0.09794910110158489,-0.02997246945240642,-0.060846849105562976,-0.05729657911435656,0.08321726542557638,-0.03285100382730139,-0.02286625824468688,0.00622505296527772,0.020843056203746945,-0.0064303240544885485,-0.04346567816791292,-0.033074493855752694,-0.040753648030633825,-0.024048776530795426,-0.07029352810892318,-0.02146367506304802,-0.03821299087824866,0.09647600034719209,0.029865324569110785,-0.00775608513984955,0.032243816254417,0.08416274745707095,0.08284758564886777,0.09703576653519105,0.09698138758144416,0.046518084144054735,-0.041786085599366786,0.0001566875633964651,0.1018559591745999,17.936672592317507,26.183566439460414,6.496457355542058,9.863363076420697,28.171032953895672,33.3745512098233,35.1033368204644,35.35091576783282,35.35091576783282,54.45802312962857,50.674722961358,2.0120270720832885,1.7712730961872818,0.0,3.7833001682705705,5762.621615655248,5365.899179952389,871.3729608520671,320.0,47.0,70.0,99.0,134.0,161.0,204.0,254.0,297.0,349.2405646120009,30.0,5.043425116919247,5.963579343618446,6.912742820493176,7.853604813097837,8.81001204797317,9.75967491717028,10.720156824378703,11.674508456614783,12.637436143052609,0.5555555555555555,0.9457543859649123,1.121703751621712,0.5105232484257851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6581845046748608,0.9348469212246304,0.9781628141730874,0.5942297127920556,4.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,7.0,0.0,0.0,0.0,4.0,0.0,2.0,0.0,0.0,5.106527394840706,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,37.63898621157989,90.7323735279877,12.393687143226153,6.103966387748303,147.68971238537688,-214.89660354179452,-22.447853027678217,-3.77011585161043,-9.343330588773677,413.0235145845046,600.9717876320609,19.89835590498692,10.543364695299315,17.67564081270767,0.46153846153846156,0.8682358065193354,0.2699532168255982,107.4564044875028,0.14464111196710697,145.62795103966243,0.13176419348066457,7.0,0.03333333333333333,0.2071000854738007,0.5456537413862195,0.7901361184912451,0.8871800725629969,0.9292885358618527,0.9292885358618527,5.398600000000005,,0.3928571428571429,0.4713820381572824,0.39838377133594904,0.3917657575808813,-1.60047608252097,0.419905140758874,0.3887577933310232,-0.7183191063014545,105.30680000000005,5.106527394840706,0.0,4.9839785209472085,28.583699077277743,64.89719214761162,0.0,47.81501751558339,0.0,0.0,4.110873864173311,0.0,5.517452896464707,2.3978952727983707,7.149131598557407,4.844187086458591,8.886409166849282,7.065613363597717,10.679158974600682,31.666666666666664,8.235661759383003,4.377504950837972,0.0,0.0,0.0,0.0,1.3286953640628787,0.0,53.908,0.0,0.0,0.0,0.0,0.0,5.049208186360964,0.0,3.118137038893713,63.93711384243759,0.0,0.0,0.0,16.194472303536216,0.0,28.583699077277743,64.35667725156031,42.2515660238864,0.0,5.573104530069267,0.0,29.099825160269752,37.51651676646706,34.733495817376436,243.83585486127907,,221.83761429487527,221.307856324133,221.5737424692325,221.84430328317222,232.3937628195391,221.64374289447238,221.86653905251492,227.6947839861889,34.733495817376436,243.83585486127896,,221.5051967124577,220.90899459953846,221.23664850887135,221.51280918060382,233.37867117801352,221.2884385445994,221.5375901504657,228.13682651314366,5.199063031414429,181.62785668787566,,167.6784101106117,167.36470881406888,167.47841568079343,167.68223462500313,173.12458859573235,167.56202898227932,167.69564786642778,170.74353418375236,1.3359036852837092,9.378302110049194,,8.532215934418279,8.511840627851269,8.522067018047405,8.532473203198931,8.93822164690535,8.524759342095091,8.533328425096729,8.757491691776496,2.622612234253297,121.91792743063952,,110.92302341882109,110.65196875814462,110.76594211383814,110.92637651351654,115.88909754774627,110.82321246928537,110.93783966276307,113.70925370342108,53.28627450980393,0.0,5.028289976484421,0.0,0.0,0.0,10.155522110877275,55.75528040786598,8.14999807348202,0.0,0.0,0.0,2.2508154084134167,0.0,0.6395004645376668,0.0,0.0,33.87109362914717,486.8313008442542,68.8555451680894,181.41608078142863,262.7002932965729,294.96495580306333,308.9649558030633,308.9649558030633,1642.0,135.37514048331823,73.88192612562725,76.65072222350007,33.120000000000005,33.120000000000005,0.8571428571428571,8.262736330862834,5.906890595608519,4.429245063912065,5.012823246702535,,5.029262039352165,5.030084137334214,5.02927295529956,5.02925050226282,5.008808390458327,5.029546649200685,5.0292186912857,5.018954278766195,0.17035557938123327,0.19280089410394366,,0.19343315535969866,0.19346477451285438,0.19343357520382923,0.19343271162549308,0.19264647655608952,0.19344410189233405,0.19343148812637306,0.19303670302946904,2.443740600095483,2.567510723701061,,2.5707847065174305,2.5709481561034053,2.570786877001979,2.57078241252231,2.56670948561841,2.5708412956936257,2.5707760873098926,2.5687330460285738,289.07000000000073,240.0737844206948,165.2727977929274,,163.64213006631402,163.56379257386251,163.64530303113162,163.6432430743506,165.43346916798083,163.61541480186662,163.64620293835782,164.60194138075357,9.233607093103647,6.356646068958747,,6.293928079473616,6.290915098994712,6.294050116581985,6.293970887475023,6.362825737230032,6.292900569302562,6.294084728398378,6.330843899259753,6.436457756207173,6.063108873656279,,6.053193354786574,6.052714527916228,6.053212744255871,6.053200156239543,6.064080560036291,6.0530300872627185,6.053218243373384,6.059041527737628,0.0,4.377504950837972,10.155522110877275,5.086332867494258,2.3572395964558654,4.309279940203721,17.01916389097982,5.028289976484421,0.0,357.58250239210975,82.81157522185833,-120.49536803678687,-12.586808109695077,-2.113953825206787,-5.238929045077691,231.58774767711947,336.9728303610312,11.157271350880414,5.9118040414216,9.910965598853856,1524.0,53.0,2.474847697296689,2.0130496192389344,0.23570226039551584,0.2041241452319315,0.9979332935413325,0.7830539372172677,0.2032631323962854,0.15446278254943946,0.0,0.0,0.0,0.0,0.08333333333333333,0.05892556509887896,0.4956966258769323,0.32208515454941156,1.0208806553779441,0.7095304004180878,17.940946820939047,16.117677351202012,12.521640493394058,10.50837901517056,12.162909366131007,9.70733929503099,11.220161945874121,8.631245480442931,9.82398217218431,7.178695989596125,8.375579932073828,5.710568688111352,6.069862057050688,4.108577747597002,4.775317149640321,3.010269098773934,6.592637206169269,5.215753000970599,11.68933507303144,8.850399654641791,19.670972850844986,14.048677301213003,92.01325414042161,42.626894265536464,27.733251270659217,22.616909710793394,21.111840667484266,21.111840667484266,154.0,194.0,62.65258299999997,32.239416999999996,0.40350877192982454,250.02,7.402777777777779,5.416666666666665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,6.0,6.0,57.0,0.0,0.0,61.0,6.0,2.0,5.0,56.0,8.0,30.0,53.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,2.0,1.0,1.0,26.0,2.0,0.0,1.0,1.0,0.0,5.0,1.0,0.0,0.0,0.0,1.0,1.0,3.58351893845611,6.95213095170169,4.135166556742356,4.661077817926388,5.1276773145279195,5.546884970202405,5.7359672757807925,6.11132874896819,6.42658958503021,6.692316345725355 +249332,CC[C@]1(O)C[C@H]2CN(CCc3c([nH]c4ccccc34)[C@@](C(=O)OC)(c3cc4c(cc3OC)N(C=O)[C@H]3[C@@](O)(C(=O)OC)[C@H](OC(C)=O)[C@]5(CC)C=CCN6CC[C@]43[C@@H]65)C2)C1,0,21.96551724137931,6.19603103448276,3.5344827586206895,7.344827586206897,162.8224310583012,86.53028755172407,1.4177565747546894,6.253943103448277,4.495510057471265,7.736391586206896,209.99682440630664,24.379032258064516,6.365556451612902,4.467741935483871,6.911290322580645,145.8283081515508,92.19613387096776,1.7717848121129032,6.506786290322578,2.945340501792115,7.787501677419354,260.58538790745416,21.153846153846153,6.2990683760683766,4.337606837606837,5.901709401709402,154.01379290441906,79.17890068803418,1.5669290782334229,6.402766666666666,2.790924738841406,7.78179505982906,226.80719624462276,19.899705014749262,6.245802359882006,3.967551622418879,5.241887905604719,152.9016469090352,73.40298510324483,1.5129365639090502,6.351912979351032,2.8715994755817764,7.739220625368731,215.13044311881285,18.27777777777778,6.22576047008547,3.547008547008547,4.767094017094017,157.30488593847463,66.81843994017093,1.39568759040166,6.312082264957265,2.8170405982905993,7.751273094017094,197.13214525011196,17.73913043478261,6.214575905797101,3.2282608695652173,4.440217391304348,156.2704425120689,64.22815415942028,1.3436254178943388,6.302276630434783,3.0622483896940413,7.747817057971014,188.57104237006206,15.94267515923567,6.229555732484077,2.8471337579617835,3.805732484076433,160.92004770510246,56.72486212261147,1.2292090215348408,6.293087261146497,3.1931395966029723,7.79943594267516,170.43174659105873,14.915064102564102,6.115688942307693,2.769230769230769,3.2596153846153846,160.40506244084006,52.46336284134615,1.2181334208001215,6.1852939102564095,2.879295762108262,7.696225916666665,165.35829718385764,14.023102310231023,6.067105445544555,2.6864686468646863,2.9257425742574257,160.69608588913027,48.586356199669964,1.1959027807819802,6.136003795379538,2.8441396222955624,7.655852693069307,159.28528720604717,7.577883472057074,0.13934030915576687,0.022893912368163304,0.7948870392390011,4.129607609988111,1.4002565493010872,35.95219593579074,0.22701640758417363,0.13002488109393576,1.6720478885916237,0.08906885612366229,49.762635337968,0.468557017375628,-0.002801432626289699,-0.009860588725488298,0.4531663534195084,1.421282267653715,-0.18468402079136503,2.2399241075908156,-0.005324534316585131,-0.00041445284032063035,-0.06939235312011219,-0.004199076368378604,1.2760579003503858,0.9334634186001607,0.005047032429850544,-0.001802470355381125,0.16650406008313268,0.5039025580048173,0.24931120442235755,4.535275332850598,0.04818389244926129,0.005669998069046843,0.09471609853874272,0.003548368161630994,9.640403308364437,0.11584046243585579,0.004798150817786132,0.0006695681916615371,0.04251505617346961,0.195079603927057,-0.09409415082879313,0.5196029707294685,-0.004892915501238784,0.0044451168716831925,0.047745614669037,0.0031216526750357234,-0.6175627274482399,0.29435348638678016,0.0013106781710824787,0.0007528931764558605,-0.05114993343292986,0.12024502779556298,0.14611430445947646,1.4330008544391615,0.016525934720983418,0.0014398956523064908,-0.05958659675712788,0.00043202038680045107,3.313997247796312,-0.08712884936841918,0.0029651506143480223,-0.00048599389346604176,-0.09811042754484825,0.0022639542297817005,-0.2117299406446389,-0.5095004371025672,-0.03206435452662505,0.003336225852590961,0.045698923766086336,0.0008643172896310837,-4.614491493617877,-0.2440376561115445,-0.0041519113960480445,-1.197870852073324e-05,-0.0350583548550785,-0.21427705870324226,0.03815987333673494,-1.1332897587645878,0.003388512033806521,-0.004344889879351977,-0.01077411000851609,-0.002068072244900989,-0.2700240535315914,-0.4099458062745816,-0.006073134089453933,0.0004948881747761829,-0.05881276868197199,-0.40447498399341447,-0.025052815385090042,-1.9427403208481953,-0.00855964382934281,-0.006044169887039226,-0.07445064104152056,-0.003694951393335141,-2.325653038674985,-0.7510938965477999,-0.006342272283114154,-0.0004523430920104477,-0.02835693795301052,-0.38048959473830857,-0.08469436769896053,-3.583634293364414,-0.01617067149285928,-0.007139684212178638,-0.08456938499413756,-0.002596699756301427,-4.742847983342569,,,0.46555555555555544,1.0291666666666666,0.35833333333333334,0.008333333333333333,0.6708333333333333,-0.3125,1.7150657085582304,0.019258237274399015,0.03215823727439902,1.2779173341892585,0.19046121317343367,0.2888507755917189,2.992983042747489,0.4793119887651526,2.07333109687408,1.6212781918875203,0.14859877235258528,0.3034541326339745,0.0,0.45205290498655987,7.106893482689668,2548.0,718.7396000000002,410.0,852.0,18887.402002762938,10037.513355999992,164.45976267154398,725.4574000000001,521.4791666666667,897.4214239999999,24359.63163113157,3023.0,789.329,554.0,857.0,18082.7102107923,11432.320600000001,219.70131670199999,806.8414999999998,365.22222222222223,965.6502079999999,32312.588100524317,4950.0,1473.9820000000002,1015.0,1381.0,36039.22753963406,18527.862760999997,366.66140430662097,1498.2473999999997,653.0763888888889,1820.940044,53072.88392124172,6746.0,2117.327,1345.0,1777.0,51833.658302162934,24883.61195,512.885495165168,2153.2985,973.4722222222222,2623.5957919999996,72929.22021727756,8554.0,2913.6559,1660.0,2231.0,73618.68661920613,31271.029891999995,653.1817923079768,2954.0545,1318.3750000000005,3627.595808,92257.8439770524,9792.0,3430.4458999999997,1782.0,2451.0,86261.28426666204,35453.941095999995,741.681230677675,3478.8567,1690.3611111111109,4276.795016,104091.21538827426,10012.0,3912.1610000000005,1788.0,2390.0,101057.78995880435,35623.213413000005,771.9432655238801,3952.0588000000002,2005.2916666666667,4898.045772,107031.13685918489,9307.0,3816.1899000000003,1728.0,2034.0,100092.7589630842,32737.138412999993,760.1152545792759,3859.6233999999995,1796.6805555555557,4802.444971999999,103183.57744272717,8498.0,3676.6659,1628.0,1773.0,97381.82804881295,29443.331856999997,724.71708515388,3718.4183,1723.5486111111109,4639.446732,96526.88404686458,879.0344827586206,16.163475862068957,2.6556938347069434,92.20689655172413,479.03448275862087,162.4297597189261,4170.454728551726,26.33390327976414,15.082886206896546,193.95755507662835,10.331987310344825,5772.465699204288,58.10107015457787,-0.3473776456599227,-1.222713001960549,56.19262782401904,176.23900118906064,-22.900818578129265,277.75058934126116,-0.6602422552565562,-0.051392152199758165,-8.60465178689391,-0.5206854696789469,158.23117964344783,218.4304399524376,1.1810055885850272,-0.42177806315918326,38.961950059453045,117.91319857312726,58.33882183483166,1061.25442788704,11.275030833127142,1.3267795481569613,22.163567058065794,0.8303181498216525,2255.8543741572785,39.26991676575511,1.6265731272294988,0.22698361697326108,14.412604042806198,66.13198573127232,-31.89791713096087,176.1454070772898,-1.6586983549199479,1.5068946195006023,16.185763372803542,1.0582402568371103,-209.35376460495334,137.75743162901313,0.6133973840666,0.3523540065813427,-23.938168846611173,56.274673008323475,68.38149448703498,670.6443998775276,7.734137449420239,0.6738711652794377,-27.886527282335848,0.2021855410226111,1550.950711968674,-48.09512485136739,1.6367631391201083,-0.26826862919325506,-54.15695600475623,1.2497027348394987,-116.87492723584067,-281.2442412806171,-17.69952369869703,1.8415966706302105,25.225805918879658,0.4771031438763582,-2547.1993044770684,-153.25564803804994,-2.607400356718172,-0.007522628951020475,-22.0166468489893,-134.56599286563613,23.964400455469544,-711.7059685041611,2.1279855572304953,-2.7285908442330413,-6.766141085348105,-1.2987493697978212,-169.57510561783943,-255.8061831153389,-3.789635671819254,0.3088102210603381,-36.69916765755052,-252.39239001189063,-15.632956800296187,-1212.269960209274,-5.341217749509913,-3.771562009512477,-46.45720000990883,-2.305649669441128,-1451.2074961331905,-455.16290130796676,-3.8434170035671773,-0.27411991375833133,-17.184304399524375,-230.576694411415,-51.32478682557009,-2171.682381778835,-9.799426924672723,-4.3266486325802544,-51.249047306447366,-1.5736000523186646,-2874.165877905597,0.709499572917949,0.5880963732287974,0.4229223430280757,0.3126436006298398,0.24999399483511925,0.1661075399318262,0.14847101843692687,0.09012426167610181,0.08655578131418495,0.04913598044128271,0.053102974884380975,0.02696165165685853,0.031953860405814806,0.01458045089457003,0.019418326013445168,0.007984834877118622,8.03580885827123,5.6741776971737865,3.563349437526409,2.1737985860425426,0.48875422564970694,-0.5288727710047194,4.055471716360788,0.9573362335422069,6.033554431366859,0.9872192120284045,14.549223689342039,10.934818140948247,16.02088030368991,11.685454991951854,2.026368374374138,0.7398228011879494,3.5098419978199966,2.223680820502193,7.011722506708444,1.0651928486315252,3.7226404182325754,2.419620224290615,20.926574819769563,14.69967889020806,0.21287077350050856,0.5417499682341305,0.7887810946075904,0.8766473108666438,0.8988631574469611,0.9061611340416305,1.2334997643557735,2310.1764691569483,0.0,3.0,8.0,0.0,12.0,9.0,4.0,3.0,3.0,5.3492672979544995,3.018348226019621,1.2675242972155072,0.6447757544781991,0.4873217673532819,0.4355976294222481,456.9995182249717,5384.021270894369,88.39470733252062,46.41397647322732,90.32302346236796,,16.0,1665.0,63.54263694005748,24.596666341896878,12.338727669087403,99.49571453651899,16.466376423778055,33.153039554373706,6.06636706846161,50.264982886895446,20.850165051109773,18.947451815200196,27.933333333333326,61.75,21.5,0.5,40.25,0.0,0.03444444444444456,-18.75,0.1404401457807687,0.03476140717520049,-0.1056787386055682,0.026402116402116538,0.16913654096228925,0.0,0.5867816091954012,0.8544444444444451,0.44634146341463254,0.5520202020202007,0.8280423280423286,102.90394251349382,1.155494236463941,1.929494236463941,76.67504005135551,11.427672790406021,17.331046535503134,179.57898256484933,28.758719325909155,0.5448634590377107,0.17899761336515518,0.08949880668257759,0.31145584725537007,0.5652173913043478,0.2589962253708918,-1.4707481125794455,-0.05092542862643068,-0.012678863039477977,-0.04456812462361956,0.7410037746291083,4.207898788445005,0.04230643388019681,0.0362749895555604,0.05069757576439765,-7.092327963354801,0.8049979626751974,0.7597006566281135,1.4543915807049848,0.7543519434458467,0.5091727195043793,1.3884298968951472,0.8118387410543545,1.1918821698353987,0.7379750932384033,0.6518857798194962,0.7910397736399305,1.0406364009989881,0.8070359093719365,0.8508593821545566,1.1656713495211968,1.3457982535207667,0.898709458312107,0.9917305633856227,0.8074293319047859,0.8595925357837089,0.8364424890093853,0.5784845462647051,0.8380842063119402,0.8240142120643228,0.907673273169858,0.8224831522388528,0.9882222766642625,1.3189365307351688,0.9014876242942818,1.2114864359622914,0.9124588830121294,1.1080491646003063,0.8192731984630766,0.772259276424848,0.8221958434021199,1.0424237795342424,0.9233251155717028,0.954784962608023,1.0559652827304404,1.4017621412909373,0.996172242033169,0.9920828949076799,0.9235680926699145,0.9601663887688171,0.9459726873038363,0.932097213951531,0.9577406468060647,0.9339446879573378,0.9766871306030652,0.9639744084932798,1.1422504146469281,1.2460655073547746,1.000710840771667,1.2191871543775339,0.9801722859384827,1.1853839653580187,0.9516442323952296,0.9482300250802476,0.9925757851443199,1.0995316964834765,1.049102703383402,1.1842419493037328,1.1742933297064988,1.0456182798260198,1.1479599907200402,0.983213430525585,1.0452575490060163,0.9712202741389208,1.1711820595985774,1.1917141507100357,1.2051012335642028,0.9755789938092726,1.0480704479434475,1.0777169955819774,1.0379838070309875,1.046324830274438,1.1449312277126844,1.0210767855286889,1.0472789951893104,1.0377569361767007,1.0751175324273425,1.042187392774662,1.0881691227060228,1.0361887822051121,1.0868651149988686,1.0374831689369894,0.9626856387060189,1.0280099158008547,1.0969362664743292,1.0580339274520645,1.0874852516038054,1.0695400810879698,1.0458037984305817,1.1006237155554672,1.0249606579508777,1.0885035559055007,17.0,1.0727640036730945,10.444444444444448,9.520833333333334,8.238333333333333,6.074999999999999,4.1185034013605435,3.0646258503401356,2.013723544973545,1.5343981481481483,17153.273643949025,19405.618327034903,5921.108040260854,5355.022291390836,18.00871999743781,0.47939035963596544,9.375513241282697,0.9208249760814136,0.0,0.5652173913043478,1.508713697173072,3.839632769107951,5.590456697912065,6.213205240649373,6.37065922777429,6.422383365705324,0.24999999999999997,0.008065894764459357,0.0958205912334353,0.06704812206572769,0.04680871212121213,0.031640625,0.021791023287621926,0.017714600290983443,0.013161591797212713,0.010805620761606679,0.5628567813222592,45.168685121107266,16.705327834357377,6.481476473769606,349.30111781884705,0.0,5.061312007093276,415.7188933053614,,358.86700380553486,355.8622362889529,359.24307887982917,358.9105010029094,439.20534500547444,357.85558217928246,359.02169323622917,402.40862233122516,0.061832175053021056,-0.02010496921718475,-0.4307078915528922,0.5701015755060682,0.3441688416633382,-0.13189298838384061,0.06230284546710959,-0.023454403024199426,-0.0031874887085742553,-0.04150141487787278,-0.04714415959882374,0.025642892336467084,0.12318260396088737,0.036220907362911954,-0.0787314254721999,0.20946883250548182,0.12202189786410918,0.17804680474217155,0.12614738028660136,0.21224850204448575,0.04360702368149512,0.056646761845154256,0.03983848357392707,0.19372774859873593,0.015286651327248506,0.03443476512185958,0.029246560434670433,0.053485657803871274,0.04723925911392309,-0.06719779377269011,0.014452607336070924,-0.021553135975092806,0.03418666361611084,0.028555171771577324,0.035047634054058724,-0.012410169261615664,0.03884375993272904,0.009406310198560613,0.032886173597084595,-0.06434868214972926,0.029117785308398626,0.10434823856557342,0.03985850702968038,0.07279621282376207,0.011074000915765086,-0.03563689602653548,0.004850409061059888,0.06659609615304661,-0.01149778162856434,0.021279919876116507,-0.021228083939985452,-0.12342688042665279,0.0005482250236816612,-0.15120796310527532,-0.014171608265946139,-0.1412424540932627,0.025658364956940228,0.02733110940056796,0.009703922641951013,-0.09273004659576585,-0.032203933593254186,-0.02979691534491051,-0.000523226800561666,-0.04410482637714439,-0.05188799492353201,0.027252058457274676,-0.03152212901789366,0.014926286914086248,-0.03341583428338639,-0.006443661142738674,-0.023218803237235908,-0.005426241027986069,-0.05409766563265701,-0.04358490465716456,0.02161658378077761,-0.07398883838674412,-0.09794513721234133,-0.01789158950736185,-0.054036763827106864,-0.03770495674930036,-0.04648471766471103,-0.044526620050476425,-0.04148421293527233,-0.04673492516785085,-0.099116580416868,-0.04551642178448308,-0.019758225887135147,-0.03567417325128175,-0.0921369850777188,-0.0604848931013636,-0.0996777582032722,-0.07123128968932999,-0.054910138368214415,-0.05057832707493257,-0.029153846465662426,-0.09530942143901815,31.5280589346222,56.41499000384036,24.014909679976117,14.090485593774233,37.54718850059146,45.79172992031321,47.93313756976514,48.28155808533879,48.333696016373274,124.3998658124448,97.27669151325122,8.915926341155117,18.207247958038472,0.0,27.123174299193593,18138.81526139021,17690.356656362736,6172.760466702941,1698.0,109.0,172.0,272.0,405.0,561.0,772.0,1035.0,1332.0,824.3996439920015,68.0,5.872117789475416,6.821107472256465,7.81156848934518,8.7937637591133,9.797960356321203,10.793372705530512,11.803809904367139,12.806383334195493,13.82045332235343,0.632183908045977,0.9844137931034485,1.1283183090301692,0.5921095317797768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6534194094569481,0.970453008789723,1.0070572870884296,0.6150950328825004,6.0,0.0,1.0,0.0,0.0,2.0,6.0,0.0,0.0,4.0,0.0,0.0,0.0,3.0,0.0,3.0,0.0,6.0,0.0,0.0,0.0,2.0,11.0,0.0,4.0,0.0,4.0,3.0,5.0,0.0,0.0,39.0443948566793,11.164502302680685,6.103966387748303,12.011146117099809,0.0,24.18343101391642,4.794537184071822,0.0,0.0,44.19861581843384,74.24722930994723,78.20125607837056,38.659670538647816,245.55870628734993,-1394.4411864782337,-48.28326108894919,-12.021044711019254,-42.25579352964344,702.5582245123217,3989.580084416135,40.111446243571436,34.392931762208065,48.067229932724516,0.5,0.8145865889463739,0.08740517620548789,0.0,0.06051275035743621,6.246194401738305,0.1854134110536262,8.0,0.11764705882352941,0.2199938579947912,0.5598780124698386,0.8151752974941091,0.9059816941842946,0.9289409277016789,0.9364831092807446,3.5175000000000027,,3.071428571428571,3.599813866914844,2.6323402006136036,3.0626565049156875,-12.895669916118791,3.231946144430845,3.0459999746377218,-5.267243293553972,220.56829999999934,48.338655341168895,0.0,14.783797982648164,11.332896515558172,99.51587194343308,58.95308438424595,70.93452509437687,0.0,5.749511833283905,4.919980925828125,0.0,6.35088571671474,3.4339872044851463,8.0040315078527,6.008813185442595,9.769556079890267,8.328692583545568,11.603378412954656,73.33333333333333,11.715301804367495,0.0,3.70689281448439,0.0,0.0,1.8497843961590115,3.54118607402121,0.0,114.19200000000002,0.0,56.43653270259581,0.0,0.0,0.0,4.581595412073111,0.0,-2.21671866433615,130.88492384749964,9.636772684650527,5.687386274683562,5.749511833283905,132.75778826370833,50.639540159407,11.332896515558172,75.25960218364138,48.55024262443742,0.0,10.902924932081056,0.0,68.68470568645411,75.79665149700598,78.75049119180593,832.6259939617842,,718.5703372128773,712.4730929686943,719.2620884040509,718.6584121935002,883.096527167377,716.5113322042794,718.8852963105627,807.760788604309,78.75049119180593,832.6259939617842,,715.7036705462104,709.1132666929072,716.805237550145,715.7999327889127,892.166092661538,713.494849136144,716.0423630009009,811.4755997567333,5.4842274825674,580.1556375191583,,502.6325744099723,499.5756794305639,503.23454757711767,502.6774963479462,586.6707186355312,501.61241481372355,502.78918229605887,547.4825425699727,1.312508186530099,13.877099899363069,,11.976172286881289,11.87455154947824,11.987701473400849,11.977640203225004,14.718275452789616,11.94185553673799,11.981421605176045,13.462679810071817,2.7984220752928706,415.7188933053614,,358.86700380553486,355.8622362889529,359.24307887982917,358.9105010029094,439.20534500547444,357.85558217928246,359.02169323622917,402.40862233122516,112.57254901960786,0.0,9.281613277384405,0.0,0.0,0.0,25.271486972032953,116.81864530225783,5.642724655364949,0.0,23.687232057572555,0.0,-3.318562416036454,5.990426510183523,-7.252828929200146,0.0,0.0,71.35102381437005,772.3233365824096,175.01078887207635,445.3974012165223,648.4929769577996,720.7318079153272,738.9964704218177,744.9964704218175,6484.0,216.32053713295812,175.79359421726195,118.4193256167138,171.17,171.17,1.0,10.099350794496273,7.087462841250339,5.183103466159668,7.63877108325987,,7.6351498914202,7.635598245863818,7.631972069663241,7.635134340657638,7.583294868839671,7.635185613347194,7.635136669498104,7.61568631386187,0.0863850577693278,0.12731285138766452,,0.12725249819033665,0.12725997076439696,0.12719953449438734,0.12725223901096064,0.12638824781399452,0.12725309355578657,0.1272522778249684,0.12692810523103118,3.437163470837121,3.8249962064918,,3.8245220398500424,3.8245807605413558,3.8241057437320243,3.824520003114861,3.8177072537031185,3.824526718454122,3.82452030813112,3.8219695780881375,608.2800000000024,3155.435378431286,571.1047074242882,,570.1272025186383,569.6974204644463,571.2550406802206,570.1365722438992,587.8986098334937,570.0282325340347,570.1449244373188,578.5706451441148,52.590589640521436,9.518411790404803,,9.502120041977305,9.494957007740771,9.520917344670345,9.502276204064987,9.79831016389156,9.500470542233911,9.502415407288646,9.642844085735247,9.848641231015963,8.139332037596976,,8.137618967473045,8.136864847820085,8.139595235345409,8.137635401784946,8.168313970002568,8.137445359591508,8.137650051138538,8.15232012620051,23.687232057572555,66.13385202726373,26.253140325577732,-3.150558560276134,-2.064961279668168,9.97370523848882,5.832904069265398,8.161264678568111,4.0900881098746265,760.515453248385,232.8183669363002,-1322.0932979043953,-45.77817731265371,-11.3973560164172,-40.063433269830156,666.107347532689,3782.5884248161206,38.030341302390966,32.60852090358725,45.57335451585687,12104.0,142.0,5.83829406128764,3.4655108753265536,0.4924178369828622,0.2874858617962213,2.0665537965081993,0.8364015575166642,0.3540884599911388,0.12578995283022973,0.0,0.0,0.0,0.0,0.2174563090207275,0.12807458365518543,0.9005515666623845,0.48350230010417283,2.075022360612121,1.0341818610483202,42.56997437507694,35.28578239372784,28.758719325909148,21.259764842829107,27.249345437027998,18.105721852569054,25.53701517115142,15.50137300828951,23.54317251745831,13.364986680028897,21.506704828174296,10.919468921027704,17.926115687662108,8.179632951853787,14.99094768237967,6.1642925251355765,15.652610770501257,8.305609384686614,31.06228346143069,15.314151694318898,58.639432639641754,25.5463825520311,203.53003169684223,76.27978632982597,39.6819286341777,30.767014340562262,28.832766322706064,28.324884142539553,354.0,458.0,126.58040799999996,72.29559200000013,0.3275862068965517,1084.14,20.5625,13.097222222222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,1.0,1.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,5.0,6.0,0.0,15.0,16.0,116.0,0.0,2.0,124.0,16.0,5.0,12.0,112.0,21.0,68.0,103.0,0.0,0.0,2.0,46.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,12.0,3.0,6.0,60.0,14.0,0.0,4.0,10.0,0.0,9.0,8.0,0.0,1.0,0.0,1.0,3.0,4.406719247264253,9.079106338400344,5.002267044425739,5.614495783829436,6.239178752356397,6.822061215771774,7.296656883165321,7.801439268200887,8.273094297903981,8.654189764767583 +4927,CC(CN1c2ccccc2Sc2ccccc21)N(C)C,0,24.65,5.696335,3.15,5.061111111111112,159.591675670877,97.326175875,1.6783389524245003,5.8120525,2.188974622770919,7.292629325,222.62169503918048,25.428571428571427,6.0892857142857135,3.761904761904762,5.317460317460317,144.115131859619,96.22412466666663,1.9529401476190484,6.2596428571428575,2.580540858318636,7.542477428571425,265.6073033531276,22.041095890410958,6.011109589041094,3.589041095890411,4.0867579908675795,154.7655887550396,82.45116119178081,1.707779436691644,6.140438356164386,2.2393877896161003,7.535409369863015,225.49091646745072,20.21505376344086,5.910738709677418,3.236559139784946,3.283154121863799,153.8168905262591,73.7794698924731,1.6383542778853657,6.0441053763440875,2.1176821983273593,7.472275032258062,207.98410471149006,15.08108108108108,5.694594594594592,2.7027027027027026,2.4624624624624625,157.4900357755896,52.79599839639636,1.4102384304614863,5.809720720720718,1.9303470136803471,7.313308234234236,172.19053465037317,13.274336283185841,5.615433628318583,2.6194690265486726,2.230088495575221,160.42876926839364,46.32757267256638,1.3169985569430442,5.717300884955749,1.9066972577297063,7.2492355575221215,163.1968308736482,15.195876288659793,5.713884536082475,2.597938144329897,1.8144329896907216,152.4514168160249,53.02181542268039,1.4665307269916292,5.843012371134022,2.1743031691485295,7.287515422680411,182.9542335532385,11.300970873786408,5.557961165048544,2.0194174757281553,0.7702265372168284,157.09779619440263,36.29090436893204,1.2744340290968932,5.668660194174759,1.9728514922689677,7.201977747572818,145.55370478795422,6.25,5.31359090909091,1.5454545454545454,0.13636363636363635,163.6647350238949,15.504765863636367,0.9937307431269091,5.399568181818183,1.6351010101010102,7.055382727272724,99.18503151723961,10.209999999999999,0.04620599999999995,0.007510680572148399,0.5900000000000001,2.9099999999999993,1.5728415186839362,46.766610099375,0.30792572446225,0.050852437499999945,0.21859053497942388,0.020573269374999988,55.57664984536696,0.9638095238095246,0.0072218571428571895,-0.0016514159079975453,0.3028571428571428,1.066455026455026,-0.29868810134717316,4.414388717291668,-0.0006098414065596112,0.008163157738095277,-0.015444509765497504,0.0024681877678571496,-0.13935833734096142,1.5002739726027399,-0.004947164383561596,-0.0019411877367024888,0.033972602739725986,0.05643835616438355,0.3515839461227477,7.0100810694606155,0.0721450668857568,-0.002943978595890378,-0.009529285754552148,-0.0028214375256849214,10.093411698285468,0.046451612903225845,-0.0020871290322580288,0.00154656909356832,0.01591397849462361,-0.01710872162485063,0.0720944930304423,0.08742810035618238,0.001813399192889738,-0.0023760127688171677,-0.022979925365429168,0.0005649886895161367,-1.5546428367624936,-0.605045045045045,-0.0025604594594594516,-0.0006549869347390474,0.04468468468468468,0.25761761761761764,-0.026228467050241427,-2.688115209059685,-0.0098832743165473,-0.0028252302927927867,-0.007344875739937467,-0.00182538243806306,-1.3907284654290892,0.20637168141592907,0.00026546017699114485,-0.00069334753866091,-0.07362831858407079,0.015811209439528042,0.269175345239668,1.3466636731913708,0.03175192343679869,0.0012701288716814023,0.04806657198004299,-0.0013055658351769919,8.849749534982342,-1.1558762886597933,-0.004172752577319574,0.0010227378321371373,-0.2688659793814433,-1.0846277205040087,-0.39564178573660386,-5.7157447511791215,-0.0644951766335799,-0.005326664304123687,-0.012558935414987375,7.471198453615349e-07,-12.922850895721458,-2.187184466019417,-0.008118961165048545,-0.00040605388948928585,-0.15844660194174753,-0.9138295577130525,-0.36088862944282774,-10.43021016757888,-0.0761313079813568,-0.01070998604368931,-0.0485626007165022,-0.0026863052973300976,-16.575462083821478,-2.541818181818182,-0.0023535000000000374,-0.0007175491107507374,0.03272727272727278,-0.07919191919191926,-0.3202127378348474,-11.656453859034093,-0.08075108452722722,-0.004758346590909119,-0.029611235814939473,-0.0015276938068181879,-12.036218647941125,,,0.5066666666666667,1.225,0.6,0.0,0.625,-0.025,0.8583091477993807,0.012475488221332398,0.0253754882213324,0.7594301913689812,0.23653935407027865,0.24669583582704374,1.6177393391683619,0.4832351898973224,2.053449447697372,1.7353884961991835,0.21336264232736304,0.0,0.0,0.31806095149818836,7.103367991000013,986.0,227.85340000000002,126.0,202.44444444444446,6383.667026835081,3893.047035,67.13355809698001,232.4821,87.55898491083676,291.705173,8904.86780156722,1068.0,255.74999999999997,158.0,223.33333333333331,6052.835538103997,4041.4132359999985,82.02348620000004,262.90500000000003,108.38271604938272,316.78405199999986,11155.506740831359,1609.0,438.8109999999999,262.0,298.3333333333333,11297.887979117892,6018.934766999999,124.66789887849,448.2520000000002,163.47530864197532,550.0848840000001,16460.8369021239,1880.0,549.6986999999999,301.0,305.3333333333333,14304.970818942096,6861.4906999999985,152.366947843339,562.1018000000001,196.94444444444443,694.9215779999997,19342.521738168576,1674.0,632.0999999999997,300.0,273.3333333333333,17481.393971090445,5860.355821999996,156.536465781225,644.8789999999997,214.26851851851853,811.7772140000002,19113.14934619142,1500.0,634.5439999999999,296.0,252.0,18128.450927328482,5235.015712000001,148.820836934564,646.0549999999997,215.4567901234568,819.1636179999997,18441.241888722245,1474.0,554.2468,252.0,176.0,14787.787431154415,5143.116095999998,142.25348051818804,566.7722000000001,210.90740740740736,706.8889959999998,17746.560654664136,1164.0,572.47,208.0,79.33333333333333,16181.073008023472,3737.96315,131.26670499698,583.8720000000002,203.20370370370367,741.8037080000003,14992.031593159283,550.0,467.59600000000006,136.0,12.0,14402.496682102752,1364.4193960000002,87.448305395168,475.16200000000015,143.88888888888889,620.8736799999997,8728.282773517085,408.4,1.8482399999999979,0.30042722288593593,23.6,116.39999999999998,62.91366074735745,1870.664403975,12.317028978489999,2.034097499999998,8.743621399176956,0.8229307749999994,2223.065993814678,40.48000000000003,0.303318000000002,-0.0693594681358969,12.719999999999999,44.79111111111109,-12.544900256581272,185.40432612625006,-0.02561333907550367,0.34285262500000163,-0.6486694101508952,0.10366388625000028,-5.8530501683203795,109.52000000000001,-0.3611429999999965,-0.14170670477928168,2.479999999999997,4.119999999999999,25.665628066960583,511.73591807062496,5.266589882660246,-0.2149104374999976,-0.6956378600823068,-0.20596493937499927,736.8190539748392,4.320000000000004,-0.1941029999999967,0.14383092570185377,1.4799999999999958,-1.5911111111111085,6.704787851831133,8.130813333124962,0.16864612493874565,-0.2209691874999966,-2.1371330589849125,0.05254394812500071,-144.5817838189119,-67.16,-0.2842109999999991,-0.07270354975603427,4.959999999999999,28.595555555555556,-2.9113598425767986,-298.38078820562504,-1.0970434491367502,-0.31360056249999935,-0.8152812071330588,-0.20261745062499967,-154.3708596626289,23.319999999999986,0.02999699999999937,-0.07834827186868283,-8.319999999999999,1.7866666666666688,30.416814012082487,152.1729950706249,3.5879673483582515,0.14352456249999845,5.431522633744858,-0.14752893937500008,1000.0216974530047,-112.11999999999995,-0.4047569999999987,0.09920556971730232,-26.080000000000002,-105.20888888888885,-38.377253216450576,-554.4272408643748,-6.25603213345725,-0.5166864374999977,-1.2182167352537754,7.247062500006889e-05,-1253.5165368849814,-225.27999999999994,-0.8362530000000001,-0.04182355061739644,-16.319999999999997,-94.1244444444444,-37.17152883261126,-1074.3116472606246,-7.8415247220797495,-1.103128562499999,-5.001947873799727,-0.27668944562500003,-1707.2725946336122,-223.68,-0.2071080000000033,-0.0631443217460649,2.880000000000005,-6.968888888888895,-28.178720929466568,-1025.7679395950001,-7.106095438395995,-0.41873450000000245,-2.6057887517146736,-0.13443705500000053,-1059.187241018819,0.705625984809643,0.6511215633142344,0.439304718088475,0.3536868823494638,0.2830110510944127,0.21111375834743282,0.17674166190818494,0.11882454063870929,0.10612013992314408,0.06251994396788459,0.06864992974009525,0.03573892700996486,0.04482439854978409,0.021942867125875513,0.03005985635757756,0.012858386782004771,16.00200377079951,5.697955607310763,3.130310495037425,2.1803650787780846,0.3556660738208341,-0.41513915255258005,3.2310766080733457,0.9884208779526029,5.023870418514257,0.660649526540567,14.545354126470567,10.337231687222314,32.06099885672502,11.71034913645306,2.9166732526034282,1.042917845158494,3.1098777100527664,2.234715608883793,2.2689375350811285,0.6282326666337203,3.2706285256140024,2.434812598864239,24.43424362609045,15.59108377722591,0.24598058442378024,0.518613928794869,0.6652348214952857,0.7368557141957022,0.7547609373708064,0.7547609373708064,1.759640521672823,563.943928696335,0.0,0.0,2.0,0.0,12.0,1.0,0.0,0.0,0.0,3.9481357549750755,2.4254887502163474,1.6066165626622602,1.2066165626622603,1.1066165626622597,1.1066165626622597,111.21400850134552,584.4527798300993,25.756216078440954,14.61131949575248,29.890713674955933,,8.0,276.0,0.0,0.0,0.0,6.041840829147961,6.544756405912575,21.165739500402672,0.0,11.761884949391115,79.34983717443883,0.0,10.133333333333335,24.5,12.0,0.0,12.5,0.006666666666666732,0.0,-0.5,0.08380952380952367,0.052307692307692166,-0.0315018315018315,0.0,0.04143362831858366,0.0,0.5266666666666668,0.7533333333333331,0.44285714285714317,0.47435897435897467,0.7533333333333331,17.166182955987615,0.24950976442664796,0.507509764426648,15.188603827379623,4.730787081405573,4.933916716540875,32.35478678336724,9.664703797946448,0.6725663716814163,0.14802631578947367,0.0,0.32565789473684204,0.29411764705882354,0.38467334361994215,-0.46627456243369214,-0.02333788309669566,-0.011656864060842305,-0.03330532588812087,0.6153266563800578,0.7458566397074475,0.030079457422829678,0.018646415992686183,0.028686793834901823,-4.0903811583233125,0.8026094864978313,0.943673827146753,1.4464540490249795,0.6688861985472154,0.7028991436207933,1.2934146736276193,0.8064158901481725,0.9462738672922489,0.8884459640138755,1.142668320681687,0.9972466135701741,0.9776333451265381,0.8542189365784283,1.6144985618306116,1.9791851198414208,1.2790225214766657,1.24866622730625,0.8996343874139632,0.8483538293830434,0.7192093429383392,1.425140801985035,1.0177367505871902,1.7496313791999278,0.7588175781642327,1.1289927648415532,1.3291686039936168,1.278888666216895,1.2260798250410059,1.1446593750384906,1.0512991728313572,1.1158835323255143,1.0493621219756173,1.2500463370277277,1.0623840127208344,1.3576363796389999,0.9956245430587886,1.12184662625407,1.105329862390634,1.2074448602811083,0.9825927622537791,0.9167801822440999,1.0228139047080929,1.1117684772129648,1.0561075503285449,1.0877810442728053,0.9552180551615765,1.1737853583062252,1.001573912502851,0.9262132387993726,1.011062808760614,1.1127245193066602,1.1918779061046947,1.039582256282375,0.7939178527385695,0.9211009008717503,0.847544139337304,0.9835726868367086,0.6889754555666577,1.0764276795964642,0.8107371546134773,0.9263961953613296,0.9040322451094183,0.6203216039169487,1.473658920146776,1.3563255039501187,1.212602197921799,0.9484516478231646,1.106178525294092,0.9476365078598202,1.0538109928436228,0.754756304649865,1.2077383799359958,1.168650095565931,0.9482613530206014,0.7193834255039465,1.0188003949317095,1.1540664375715923,1.161661708782124,1.1784732250589196,1.2261662752350035,1.0319607284626606,1.2900924676516294,0.8656329744906024,1.282124775878212,1.3683943994301486,0.6977049173070795,0.5754563159257723,0.4882511556240369,0.7322906904092472,1.0750276239698127,1.356343242968497,1.3417631015496392,0.8352945001630716,1.184609752392851,0.691395405425422,1.219991639672891,3.5,0.0,2.4444444444444455,1.1875,1.2800000000000002,0.7430555555555557,0.5289795918367347,0.24305555555555552,0.08163265306122448,0.0,3886.312891159846,4434.824492444326,1981.1759690799306,1780.0223754347342,9.907732536497482,0.45732278789559955,5.376700671182514,0.8427160339425117,1.0,0.29411764705882354,1.373792339912287,2.8964393446710153,3.7153115322251025,4.115311532225102,4.215311532225103,4.215311532225103,0.1590909090909091,0.0,0.0788530465949821,0.03598484848484848,0.044137931034482755,0.025622605363984675,0.020345368916797488,0.01519097222222222,0.02040816326530612,0.0,0.39963384497353294,14.917355371900827,6.40582726326743,3.122448979591837,124.95015410978681,1.0,3.935784452257158,76.89415734325344,,58.487186034210154,60.82054582015141,59.73996256440112,58.495746804427604,79.68398576988491,61.50139580292387,61.984557199830235,75.60235707507442,0.09439858215568313,0.15629695586844128,-0.2198756680082275,0.5133171912832929,0.3664793905343733,-0.18990349491606648,0.09439189002391822,-0.001980482168628865,0.16052638063013763,-0.07065497948916823,0.11997061443507936,-0.002507497982132847,0.1469416231736278,-0.10706757528376405,-0.25845696911954014,0.05758068260970506,0.019394624111472015,0.22353424801306937,0.14989500103951944,0.23429373109943397,-0.05789257586502872,-0.04359422861309685,-0.13714094120176382,0.18161245282629943,0.0045496192853306415,-0.04517008683413477,0.20591597242244727,0.026972844906141713,-0.0058792857817356135,0.04583709939877913,0.001869455583169386,0.005889079894369303,-0.04672367512013894,-0.10512772370309761,0.027462270542313212,-0.027972949810541586,-0.05926004358913271,-0.055414003797330524,-0.0872074013063361,0.07573675370285538,0.08852839093388924,-0.01667584860818521,-0.05747936836447356,-0.03209629313629799,-0.055557421269979236,-0.03360106941789061,-0.08872592900966966,-0.02502361098228422,0.020212701411942122,0.005745145154117326,-0.09231487506365631,-0.12479376031198439,0.005433405305679741,0.17113952171411304,0.02879540916756265,0.10311552726635317,0.024976754982126544,0.21989319887326106,-0.06345932731350303,0.15923503053180318,-0.11321021436432843,-0.09030759159675322,0.13617112621321179,-0.45570504979905646,-0.3727243025786972,-0.25154586844048615,-0.12221849603881185,-0.20945043401687818,-0.10474747260883399,-0.057454159285394296,3.6315076215811007e-05,-0.23252302777654288,-0.2142198301684052,-0.17571227037719245,-0.054063528010369885,-0.2685535626131314,-0.31403077584640987,-0.2294500909060429,-0.22302685923601445,-0.24723919417356144,-0.21060909899725694,-0.2221624130297931,-0.13057260119261427,-0.29824507468406286,-0.24895378862078182,-0.050934943513830246,-0.09553716255908956,0.055469953775038605,-0.02721371793536745,-0.20358868584724485,-0.2492473547743815,-0.2622420866858328,-0.09357165211420049,-0.135464400678313,-0.07425624867745109,-0.2165697047488461,10.902585094763843,15.404693805070204,4.251415002085969,14.098862965332762,27.14549144409749,31.27181460915201,32.775314609152005,32.87611460915201,32.87611460915201,41.06898895394744,34.70776992398367,4.267252846547261,0.0,0.0,6.361219029963767,2806.902934702176,1662.7074479255907,1314.3664416483368,78.0,31.0,42.0,56.0,78.0,86.0,96.0,102.0,104.0,284.1347196400005,22.0,4.672828834461906,5.53338948872752,6.421622267806518,7.311218384419629,8.210396255104774,9.109967397829395,10.014178834378756,10.917793892150982,11.824409509607499,0.6333333333333332,0.9507999999999999,1.1163605099331277,0.5920010823411873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.7009859281437126,0.9412745098039217,0.9820375091041514,0.6280314980663547,8.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,9.799819461700956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.027353223237554,45.28454943889144,22.377564186096084,11.374772549367124,185.47778046475526,-224.82340500521417,-11.2528170441614,-5.620585125130354,-16.058814643229585,296.6917889661008,359.62937482488513,14.503399034279553,8.990734370622127,13.83189903172635,0.5,0.9906384942517291,0.2789014006563103,3.2982290390775306,0.05322707900258281,39.83322679679863,0.009361505748270755,4.0,0.13636363636363635,0.25813808744091327,0.5442462380229355,0.698113816267887,0.77327454615153,0.7920647286224409,0.7920647286224409,4.239400000000003,,0.9107142857142858,0.3467453409515673,0.3635986756455034,0.9103590593973134,-0.6122257053291534,0.33399632802937596,0.3518820903837915,-0.4810703813153896,87.16200000000006,0.0,0.0,4.899909730850478,0.0,22.756544979874135,25.540010102117435,48.53093654769288,0.0,0.0,3.8066624897703196,0.0,5.1298987149230735,0.0,6.670766320845874,0.0,8.316055720364643,0.0,10.01971382150426,25.33333333333333,17.356933106575962,0.0,0.0,0.0,0.0,0.0,5.337140967498112,0.0,38.032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.65442039732511,4.899909730850478,11.374772549367124,0.0,31.581850931265393,0.0,0.0,6.923737199690624,58.32190349872843,0.0,0.0,0.0,23.680043293647493,28.039437125748506,26.046476914462893,153.78831468650696,,117.41465373292907,121.61204836777999,119.44356526123768,117.43251116439615,159.80913336200535,122.99163586884133,124.00945780652685,151.44524934080664,26.046476914462893,153.78831468650702,,116.68608230435777,121.33465209501881,119.1525647271678,116.70422391687828,160.05402364413703,122.72443880641794,123.7279521342198,151.68578453146432,4.963075284398183,104.96330205504638,,84.37993651559339,84.09571865650953,82.22225790821795,84.39712560190965,118.91331084560461,85.26764496070656,86.21005778791893,109.42476094771462,1.3023238457231447,7.689415734325348,,5.870732686646454,6.080602418389,5.972178263061884,5.871625558219807,7.990456668100268,6.149581793442066,6.200472890326343,7.572262467040332,2.4815376421990916,76.89415734325344,,58.487186034210154,60.82054582015141,59.73996256440112,58.495746804427604,79.68398576988491,61.50139580292387,61.984557199830235,75.60235707507442,37.65098039215687,0.0,6.550913170823885,0.0,0.0,0.0,0.0,39.28150036416606,1.0015740740740742,0.0,0.0,1.8664611678004532,0.4992705971277396,4.7210402494331065,0.0,0.0,0.0,25.12125992265419,477.65573623498784,54.95169359649148,115.85757378684062,148.6124612890041,164.6124612890041,168.6124612890041,168.6124612890041,715.0,116.01580486448697,4.5138331958681945,53.94309706740817,31.78,6.48,1.0,8.381781460634874,5.459431618637297,3.9018670058893306,4.406246214239942,,4.393324740208658,4.40534230220268,4.4054369830374425,4.393307632965467,4.381897886764106,4.405181453755885,4.404829714107021,4.394594417127818,0.19509335029446653,0.22031231071199708,,0.2196662370104329,0.220267115110134,0.22027184915187212,0.21966538164827334,0.2190948943382053,0.22025907268779427,0.22024148570535104,0.21972972085639092,2.054602338604745,2.1761703089584303,,2.173233465017848,2.175965144580011,2.1759866366255385,2.173229571092971,2.170629118578113,2.175928631779803,2.175848781790433,2.1735224246464613,228.31999999999965,140.2920323909354,106.86271836645383,,107.74050640913596,106.91374504696827,106.95361587485561,107.74139281273418,107.8912001560437,106.89571244093526,106.89114226296138,107.18081800865427,7.014601619546769,5.343135918322692,,5.387025320456798,5.345687252348414,5.34768079374278,5.3870696406367085,5.394560007802185,5.344785622046762,5.344557113148069,5.3590409004327135,5.63687337625487,5.364692185344097,,5.372872798090278,5.3651695688751815,5.365542424538406,5.3728810252648245,5.374270493947168,5.365000889656894,5.364958135129438,5.3676644766991695,0.0,7.410218253968255,0.0,2.6479629629629633,0.0,17.856203703703702,0.0,3.2723828420256993,4.28010440287226,268.4026228933939,89.43174154568189,-108.40300438934308,-5.425765949067501,-2.7100751097335776,-7.743071742095935,143.05575213945522,173.40234081400283,6.993097667642466,4.33505852035007,6.66932080053857,744.0,33.0,1.3106172175260455,1.0024828525532803,0.0,0.0,0.4828961349945813,0.3195048252113469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21202758782931808,0.08978821539962845,0.37445124983759165,0.19614966891198068,14.11251969619286,13.022431266284688,9.66470379794645,7.781111411688204,8.773342583926794,6.544526508770417,7.423149800143768,4.99063070682579,5.942727835696068,3.501116862201537,5.354694519727429,2.787636306777259,3.8548982752814314,1.8870865728252941,2.885746210327446,1.234405131072458,3.3879151275671857,2.309719451857243,4.697677829367112,2.6797639146010046,8.132922761512663,4.083770417929488,68.66818964954106,46.42445508639888,34.909137683374276,30.600895874622083,30.13651025564461,30.13651025564461,106.0,126.0,46.82585999999998,25.944139999999997,0.35,104.03,6.277777777777777,4.3888888888888875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,12.0,12.0,40.0,0.0,1.0,42.0,12.0,0.0,6.0,36.0,12.0,22.0,30.0,0.0,0.0,0.0,17.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,3.0,0.0,1.0,20.0,3.0,0.0,2.0,0.0,0.0,3.0,3.0,1.0,0.0,0.0,0.0,2.0,3.367295829986474,6.99728171971243,3.9318256327243257,4.483002552013883,5.041810911564705,5.631659710160322,5.833347679010845,6.236002595276348,6.632084119196492,6.954996625304576 +23666879,CCN1CCN(C(=O)N[C@@H](C(=O)N[C@@H]2C(=O)N3[C@@H](C(=O)[O-])C(C)(C)S[C@H]23)c2ccccc2)C(=O)C1=O,0,29.080645161290324,6.587388709677418,3.5806451612903225,9.620071684587813,164.28739136400122,115.24342417741939,1.5268881213882899,6.630598387096772,7.674002444798442,8.085902790322578,223.82499414619892,28.369230769230768,6.5382,4.4,8.179487179487179,148.6154252392801,108.8259465384616,1.823779816000001,6.67533076923077,3.431315289648623,7.939478153846149,268.07869913565816,25.801724137931036,6.513350862068967,3.9310344827586206,6.824712643678161,157.47966052248557,97.88227589655175,1.6037872130878286,6.60815948275862,3.6644050659855254,7.978861327586207,226.85584895596693,21.89171974522293,6.450977707006369,3.267515923566879,5.662420382165605,158.52580923247882,80.21334331210191,1.4499175052129485,6.537029936305732,3.708205551623811,7.977637388535034,200.81653886750675,20.55367231638418,6.506124293785311,2.7966101694915255,4.939736346516007,162.56136128824863,75.4711772372881,1.228281665026961,6.565922598870055,4.171540419892586,8.057291887005649,178.09087255691492,19.023952095808383,6.725058682634731,2.694610778443114,5.203592814371257,167.30286986951117,68.74978275449102,1.1292693748198985,6.743436526946105,5.468803134471797,8.273238323353294,164.31042918332304,19.43971631205674,6.561884397163124,3.021276595744681,5.037825059101654,165.93818153441035,70.8456225319149,1.2562089590806804,6.606312765957445,3.931748533403381,8.104684765957446,181.55625687727212,22.355555555555554,6.596948148148147,3.237037037037037,5.849382716049383,159.42372905110653,82.90773088888889,1.4044235821176743,6.66927925925926,4.43108139003201,8.108922237037035,204.1989449014268,21.972602739726028,6.655284931506849,3.0273972602739727,5.598173515981735,161.14578071176692,80.61687438356161,1.3659139799718212,6.71285890410959,5.022450532724504,8.18359328767123,194.04349917799345,9.975286160249741,0.17587463579604565,0.03347277164030494,0.7669094693028096,4.90230084402821,1.5589847169810869,45.8306069555151,0.2608777614138043,0.16013946409989596,3.5177870818220627,0.11393270057232044,47.32963494505952,0.4698751300728408,-0.007999003041703291,-0.016533778256857135,0.2718002081165452,1.4578314967492902,-0.39400947351871957,2.2139893201672853,-0.0061725141897631805,-0.004798000080044744,-0.05374329754978287,-0.007436637296886246,-0.4024137542152949,1.3104479888047647,0.033436376439771834,0.002498794361702934,-0.008288779647637204,0.7758909740412485,0.11150706619381211,6.028883161142302,0.02582728175707798,0.02960704591122757,0.4294297426941282,0.02131322211955936,3.5729834843483568,-1.4597735241289265,0.020084014296413624,0.0057230438731933255,-0.09421581818302326,0.38694875074840207,0.002716317208717391,-6.506426294841165,-0.042375888572397956,0.015289157227410435,0.06619410865392736,0.01008901054335651,-5.248241370846572,0.5425742370529757,-0.017513627959340795,-0.0068725337549558636,-0.11372922508921382,-0.3600697118572214,-0.32352649552554297,2.305691370346038,-0.04029675941503873,-0.011268286771665552,-0.3355669264629552,-0.011400626214748093,-2.7055282049659426,-0.26715403739866783,-0.0022802954444906707,0.004750759021729028,0.06426688766068278,-0.5790119379693613,0.04254753635744397,-1.3543215267918898,0.013467223084285647,-0.004103478007564338,0.00990099582590789,0.0016125168315812577,-1.0741391222598018,-0.35963756725042617,-0.036011927033748704,-7.634802100145835e-05,0.04137238839565759,-0.6424823433037395,0.27176032663066046,-1.4560279761053438,0.03986487756575523,-0.031631777071755844,-0.5985150054357034,-0.023378971219769635,6.165298544929119,-0.3708656106679,-0.02414609338266455,-0.007746082792752253,-0.03763826261224807,-0.5129473328109008,-0.11720371203781557,-1.6188298956584606,0.0005862746696023187,-0.02047357401626382,-0.2395715798250871,-0.017475008935522465,-0.38097112519174237,-0.7755512950265849,0.0029139634085500097,0.0069665568028341,-0.006856442347440604,-0.30623858645468555,0.13843423136508476,-3.737221882161136,0.002827044846915907,-0.0007642762960955543,0.21095714752618802,0.0066816109610422095,-3.2289100950431178,,,0.462962962962963,1.0972222222222223,0.4166666666666667,0.0,0.6805555555555556,-0.2638888888888889,1.1019984577275068,0.02613731852867919,0.035692874084234744,1.0749996434195888,0.2105192030888242,0.2609605217817493,2.176998101147096,0.4714797248705735,2.0098832053460955,1.3145421925048213,0.2966993818057666,0.34230634836491786,0.0,0.6953410128412753,8.325094237934042,1803.0,408.4180999999999,222.0,596.4444444444445,10185.818264568075,7145.092299000002,94.66706352607397,411.0970999999999,475.7881515775034,501.3259729999998,13877.149637064333,1844.0,424.983,286.0,531.6666666666666,9660.002640553208,7073.686525000004,118.54568804000006,433.89650000000006,223.03549382716048,516.0660799999997,17425.11544381778,2993.0,755.5487000000002,456.0,791.6666666666667,18267.640620608327,11354.344004000002,186.0393167181881,766.5464999999999,425.07098765432096,925.547914,26315.278478892164,3437.0,1012.8034999999999,513.0,889.0,24888.552049499176,12593.4949,227.6370483184329,1026.3137,582.1882716049383,1252.4890700000003,31528.19660219856,3638.0,1151.584,495.0,874.3333333333333,28773.360948020007,13358.398370999994,217.4058547097721,1162.1682999999998,738.3626543209876,1426.1406639999998,31522.08444257394,3177.0,1123.0848,450.0,869.0,27939.579268208367,11481.21372,188.58798559492305,1126.1538999999996,913.2901234567901,1381.6308,27439.84167361495,2741.0,925.2257000000004,426.0,710.3333333333333,23397.28359635186,9989.232777000001,177.12546323037594,931.4900999999998,554.3765432098767,1142.7605519999997,25599.43221969537,3018.0,890.5879999999999,437.0,789.6666666666666,21522.203421899383,11192.543670000001,189.59718358588603,900.3527,598.1959876543214,1094.7045019999998,27566.85756169262,3208.0,971.6716,442.0,817.3333333333333,23527.28398391797,11770.063659999994,199.4234410758859,980.0774000000001,733.2777777777776,1194.8046199999994,28330.350879987043,618.4677419354839,10.90422741935483,2.0753118416989063,47.54838709677419,303.942652329749,96.65705245282739,2841.4976312419362,16.174421207655868,9.928646774193549,218.10279907296788,7.0638274354838675,2934.43736659369,30.541883454734652,-0.519935197710714,-1.0746955866957137,17.66701352757544,94.75904728870387,-25.61061577871677,143.90930581087355,-0.4012134223346067,-0.3118700052029083,-3.4933143407358864,-0.483381424297606,-26.15689402399417,152.0119667013527,3.8786196670135324,0.28986014595754034,-0.9614984391259156,90.00335298878483,12.934819678482205,699.350446692507,2.995964683821046,3.434417325702398,49.813850152518874,2.4723337658688855,414.4660841844094,-229.18444328824145,3.1531902445369386,0.8985178880913521,-14.791883454734652,60.75095386749913,0.42646180176863036,-1021.508928290063,-6.653014505866479,2.4003976847034383,10.392475058666596,1.583974655306972,-823.9738952229118,96.03563995837669,-3.0999121488033206,-1.216438474627188,-20.130072840790845,-63.732338998728196,-57.26418970802111,408.1073725512488,-7.132526416461855,-1.9944867585848027,-59.39534598394307,-2.0179108400104124,-478.87849227897186,-44.61472424557753,-0.380809339229942,0.7933767566287476,10.732570239334025,-96.69499364088334,7.105438571693142,-226.17169497424558,2.249026255075703,-0.6852808272632445,1.6534663029266177,0.26929031087407,-179.3812334173869,-50.708896982310094,-5.077681711758568,-0.010765070961205627,5.833506763787721,-90.59001040582727,38.318206054923124,-205.29994463085347,5.6209477367714875,-4.460080567117574,-84.39061576643417,-3.2964349419875183,869.3070948350057,-50.0668574401665,-3.259722606659714,-1.0457211770215542,-5.081165452653489,-69.2478899294716,-15.822501125105102,-218.54203591389216,0.07914708039631302,-2.763932492195616,-32.342163276386756,-2.359126206295533,-51.43110190088522,-113.2304890738814,0.4254386576483014,1.0171172932137786,-1.0010405827263282,-44.71083362238409,20.211397779302374,-545.6343947955258,0.41274854764972246,-0.11158433922995092,30.79974353882345,0.9755152003121625,-471.4208738762952,0.7322521767140773,0.5753142399986152,0.4352120537266832,0.31575805775717514,0.27698924204734743,0.1856942887030268,0.167955349431175,0.09907207445954448,0.10794268807098864,0.056955495917217304,0.06723559776052572,0.03252858392868484,0.040293481882346806,0.017641833071756253,0.027222117619412765,0.009275124038749926,16.00200521931845,5.69394410340517,3.5585542034319197,2.1937481104659557,0.49343179616380933,-0.6294681083660998,4.023092725285347,0.9723095517830949,7.004125718492534,0.6593520684552786,14.548818135442742,10.337821272660548,32.060999712267616,11.705084684037377,2.9164535313356463,0.7412748080078232,3.5049168362573324,2.2436893508660996,8.001943237699201,0.6173146431471487,3.717589432513414,2.4396642506219055,24.43423730232426,14.700207191608897,0.2899992652726017,0.5927764986638587,0.7760190212653736,0.8731240262082827,0.8854748289907584,0.8854748289907584,1.4410611710585135,1127.109136648965,0.0,5.0,7.0,0.0,5.0,3.0,1.0,1.0,0.0,4.153459396609995,2.273378285692832,1.1355423869985168,0.5325733872363543,0.4558816533304917,0.4558816533304917,59.33211148106619,3091.466771903237,118.2211849768101,49.86236728876189,110.36503860087839,,16.0,936.0,63.87555647132612,33.87375049927164,13.08951281182515,12.10820789760957,4.899909730850478,21.561704411092073,51.10304694137992,0.0,10.633577208012662,0.0,16.666666666666668,39.5,15.0,0.0,24.5,0.0,0.03703703703703701,-9.5,0.21419987349778585,0.031356736242884375,-0.18284313725490148,0.03221247563352836,0.20638578680203012,0.0,0.65537634408602,0.9120370370370365,0.4411764705882341,0.6240196078431356,0.8798245614035082,39.67194447819025,0.9409434670324508,1.2849434670324507,38.6999871631052,7.578691311197671,9.394578784142974,78.37193164129545,16.973270095340645,0.5076142131979698,0.22999999999999998,0.03,0.4019999999999999,0.4782608695652174,0.4613715132113566,-2.1057273884226095,-0.11969281026309597,-0.033963344974558225,-0.0957148812919368,0.5386284867886436,1.9197043845256014,0.03424425241743234,0.030962973943961317,0.047992609613140044,-2.6332026698161526,0.6926920569325055,0.6413791254701876,1.4413714667513697,0.8980325644504749,0.40533681059506543,1.518622497324999,0.6953139227925662,1.0749319297675886,0.6152817723854999,0.516979783228258,0.6485582622163857,0.9909785105373063,0.8540921578590025,0.545213648986918,0.8875325686058239,1.3216119636925092,0.675041324414444,1.1273674294560196,0.8436312276573804,1.0024060038862919,0.5471061495525672,0.4629641071941164,0.5088580528003385,0.9081971576509769,1.2994771737983926,0.7254486158145556,0.8391587383162282,1.217532776188542,0.814216853443096,1.1253212470702323,1.2722335274011063,1.3644030241635587,0.7416415010305754,0.7558970022464732,0.7367994165565998,1.1198048004604988,0.9049519932400824,1.151654367337701,1.2801957757395868,1.1451908408650124,1.0820310667839252,1.190168256424569,0.9104915356603202,1.105339194877634,1.1162243382398322,1.1651607170518894,1.1632180897648667,1.0155902746941863,0.9393555046641623,1.302392621061234,1.1624541856750534,0.8527084230453612,1.2563848011524124,0.8901375461015014,0.9512264223029251,0.7706926147468046,1.2975400132625088,1.3860219693109606,1.3059852785158867,0.9208480274975761,0.9614759245336063,1.2932251300037687,1.0791027944281755,0.9235086655696373,1.145578959253312,0.8253592248532654,0.9628323679721352,0.7306110507067846,1.277576309158155,1.1936395292826558,1.286434052286528,0.7975372416686094,0.9527009654066637,1.1523142184281159,1.3024696619415768,1.073837881300568,1.0692210866526906,1.1233224907725685,0.9514117352250565,0.974573248824547,1.129351248427346,1.0915219915789391,1.1885882320379535,0.9576080333177356,1.0923704578296896,1.0687490666259278,0.7209214691463174,0.9709647590193492,1.0405937419229778,0.9494232594646568,1.0886005009006852,1.014573074342135,1.0743132427727184,1.04854439099012,1.052387317216558,1.0153498378478087,8.5,0.3986389143964902,5.77777777777778,4.909722222222221,3.2477777777777788,1.4758333333333333,1.087437641723356,0.8489937641723355,0.7100261400856638,0.6037654320987655,8366.81201462396,9198.448038247254,3545.5552499030605,3279.8395845551963,17.93225054284847,0.4652360978731024,9.589520274210827,0.869984110787462,0.0,0.4782608695652174,1.8007369137768794,3.6808180246940427,4.818653923388358,5.421622923150521,5.498314657056383,5.498314657056383,0.21794871794871798,0.008666063356445439,0.10136452241715402,0.07793209876543208,0.05155202821869488,0.02733024691358025,0.021322306700457958,0.01489462744161992,0.012679038215815425,0.01183853788428952,0.5455281878622076,28.994082840236686,11.623096811261131,5.673408685306366,210.88362735930164,0.0,4.52190740932315,233.87153927394968,,196.15989710069593,197.6241908736607,194.36161670870345,196.2058668771938,285.2030007010324,200.43423318220317,202.42698809601887,263.40968051462926,0.04710392489242404,-0.04548127707840371,-0.49394709331296094,0.3544097693351424,0.29737699564586356,-0.2527346607231042,0.04830809511897292,-0.02366056100877199,-0.02996138464065124,-0.015277586818002113,-0.06527219366810086,-0.008502363364568917,0.1313694632668018,0.19011482973898852,0.07465155226925123,-0.01080802882141025,0.15827077911515944,0.0715254389470483,0.13154709399755848,0.09900146956608825,0.18488288366419486,0.12207383013974286,0.18706852389609147,0.07549146509361195,-0.14633901230281895,0.11419505834658389,0.17097609766805638,-0.12285129073797198,0.07893206946280495,0.0017423629488667685,-0.1419668367289254,-0.16243580266384347,0.09547401268854608,0.018816974169920953,0.08855236900974152,-0.11088700297263558,0.0543918468439598,-0.09958018039423608,-0.2053171404151238,-0.1482955024568989,-0.07344912589276201,-0.20752384035684415,0.050308986145089205,-0.15446605796007273,-0.07036545822731322,-0.09539148295727608,-0.10006456581366979,-0.05716351305279522,-0.026781591335519075,-0.012965459369223841,0.14192906021587365,0.08379983587776955,-0.11811024178058979,0.02729182389923335,-0.029550591117120592,0.051622733234527936,-0.025624402021256695,0.0028145523295229112,0.014153239794028135,-0.022694853309277962,-0.036052857178527534,-0.20475907097547716,-0.002280899287991044,0.05394689992975162,-0.13105730630268972,0.17431878816420582,-0.03176977292748095,0.15281056288474337,-0.19752643266012027,-0.17013963367154622,-0.20519983378195703,0.13026296425243566,-0.03717844327571802,-0.13729150467532877,-0.23141444263985325,-0.04907784310769389,-0.10463399720475193,-0.07517951315441757,-0.03532202611302437,0.002247315625621188,-0.1278483984653045,-0.06810292216463519,-0.15338009937217234,-0.008049314676396208,-0.07774727286692378,0.016568411899537405,0.20812608163124416,-0.008940354268508035,-0.0624683380718532,0.08879768342640154,-0.0815442371467745,0.010836664772018065,-0.004772566839731611,0.05996870834403124,0.058645243441771654,-0.06822174096189952,7.216904182348298,15.84491741678357,13.78721547656913,19.771271132534018,37.914529263916776,46.29711201780707,48.715905208056114,48.79321047583322,48.79321047583322,72.35579539245944,47.32351893017356,10.681177745007597,12.323028541137043,0.0,25.03227646228591,13760.624406505944,13040.575995971127,2052.4451369458875,195.0,59.0,82.0,109.0,131.0,146.0,154.0,157.0,173.0,516.1558427519107,39.0,5.2832037287379885,6.171700597410915,7.10085190894405,8.011355109161286,8.946765374867635,9.868223003435817,10.80764497258701,11.736796751420977,12.67956704992467,0.7284946236559138,1.0128387096774194,1.1328743003180175,0.6936504440821722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6737552443500097,0.9975332068311195,1.0282111223363017,0.6455520606947995,5.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,3.0,0.0,0.0,0.0,0.0,3.0,2.0,0.0,1.0,4.0,3.0,1.0,0.0,0.0,30.33446124862614,17.45755447126466,0.0,11.814359458703011,0.0,24.07805846713776,4.794537184071822,0.0,11.761884949391115,30.33183534230805,26.334663090768867,24.381291670955285,12.011146117099809,354.3258917417936,-1617.1647214945428,-91.92215062511767,-26.083301959589406,-73.50748734066104,413.6580032228598,1474.3020504086937,26.299034351692434,23.779065329172482,36.85755126021735,0.5,0.6419419307677628,0.12003173470933373,282.88091865449786,0.09118459607356581,90.675293975923,0.3580580692322373,8.0,0.15384615384615385,0.302431565891699,0.6181888928104355,0.8092870426496344,0.9105549499086384,0.9234352329742265,0.9234352329742265,-1.5749999999999922,,3.0892857142857144,2.903748598280557,2.2512867331665554,3.0827186485347324,-9.742831010248672,2.6285954712362303,2.5121346712526136,-4.2320056124518555,124.71140000000003,33.87375049927164,0.0,25.333306400564094,0.0,49.01762935270206,19.634269217737724,35.89528683400505,0.0,0.0,4.3694478524670215,0.0,5.777652323222656,2.3978952727983707,7.387090235656757,5.043425116919247,9.086476384753796,7.4127640174265625,10.835435074686321,45.16666666666666,8.23419638526046,0.0,0.0,0.0,0.0,0.0,0.3934866701310158,0.0,62.79600000000001,0.0,75.29688177065353,0.0,0.0,0.0,0.0,0.0,-5.351200194686792,70.23820661971709,15.740104602853368,4.794537184071822,0.0,92.16771405246733,23.97268592035911,0.0,32.37650391991683,30.33183534230805,0.0,0.0,0.0,43.00632753309468,41.7728251497006,45.27781677489416,467.74307854789936,,392.359475647882,395.1836542561832,388.78550722816607,392.45304726643724,573.0602080826545,400.7988843686079,404.7676119191483,527.9514355207984,45.27781677489416,467.7430785478995,,389.80052709386257,392.60254439104506,386.7843634653514,389.8994927465418,580.1488324123133,398.46235506084224,402.5346033224794,531.0513666417104,5.121590025925929,339.88998786031743,,288.26769259850124,290.3413815446016,284.7959942651924,288.3380925993314,424.1115986646197,294.6469185005873,297.7409253543133,391.6406047156041,1.2577171326359489,12.992863292997205,,10.898874323552278,10.977323729338423,10.799597423004613,10.901473535178813,15.91833911340707,11.133302343572442,11.243544775531896,14.665317653355512,2.6315278940079625,233.87153927394968,,196.15989710069593,197.6241908736607,194.36161670870345,196.2058668771938,285.2030007010324,200.43423318220317,202.42698809601887,263.40968051462926,61.84705882352941,0.0,5.094132464736511,0.0,0.0,0.0,0.0,63.74908958485071,0.4816912480971516,5.12571789267564,0.0,1.242009679525046,-4.008830272372668,3.2722368893291027,-0.8202200229490999,0.0,0.0,40.02422776307757,493.00106433215626,111.64568865416652,228.21071753103064,298.7565432500782,336.1406212353323,340.8955087374958,340.8955087374958,1281.0,155.60610849649032,274.9828306324971,88.31018627793073,184.56,159.26,1.0,7.821542880638174,6.285402218862249,3.755208638107759,5.912216024152382,,5.908895633865327,5.908733763517764,5.9075411291783,5.908893589116925,5.9086995199000905,5.909340100477119,5.909870462048278,5.90956119474779,0.10431135105854887,0.16422822289312172,,0.1641359898295924,0.16413149343104902,0.16409836469939723,0.1641359330310257,0.16413054221944695,0.1641483361243644,0.16416306839022993,0.16415447763188307,2.604077691879686,3.057954568384982,,3.0573927954366438,3.0573654007126887,3.057163537713673,3.0573924493908033,3.0573596052718592,3.0574680125201397,3.057557758204711,3.0575054261959416,357.98000000000116,3052.5969697903197,252.5040457622497,,250.87458356976023,251.02085899150228,251.5074370238472,250.8751229419887,251.32034951071108,250.94126214762537,250.84239384131195,250.78701652349986,84.79436027195332,7.014001271173602,,6.96873843249334,6.972801638652841,6.986317695106866,6.968753415055242,6.9811208197419745,6.970590615211815,6.967844273369776,6.966306014541662,9.304681818277428,6.812361116869906,,6.805886992665919,6.806469884692741,6.808406405236015,6.805889142631217,6.807662263695792,6.806152741859878,6.805758674391108,6.8055378846332,-0.8202200229490999,78.56911865998262,16.14505563219934,0.3934866701310158,-4.437365888811091,3.9154248904218383,0.0,5.575823712833662,0.0,456.0163394252927,272.1165784266867,-1241.9564616128077,-70.59473127060541,-20.031555832464644,-56.45256643694581,317.682684498393,1132.2402310272432,20.19723483522197,18.261939210116825,28.306005775681083,4075.0,63.0,3.5175654822271394,2.6655057336885473,0.2041241452319315,0.3535533905932738,1.1506368425145528,0.48460626277854113,0.06804138174397717,0.07905694150420949,0.0,0.0,0.1111111111111111,0.07453559924999299,0.4004373630287239,0.29330416472375465,0.9328704731323147,0.6808667885477332,1.7176424305025084,1.1929711458602243,26.36107836170678,20.711312639950147,16.973270095340645,12.31456425252983,16.342365280793498,10.95596303347858,13.772338653356348,8.123910105682647,11.765752999737762,6.208149054976686,8.80786330662887,4.2612444946577135,5.882848354822634,2.575707628476413,4.192206113389566,1.4283691019674887,7.990655207014266,4.454810237558636,13.648425109826455,6.706726580825837,20.958516155040712,8.862442668661977,118.59433548233567,60.430832706508944,36.301498185493934,29.245983930630853,28.899846586181976,28.899846586181976,196.0,239.0,69.76061799999998,40.889382000000026,0.3870967741935484,261.13,14.368055555555555,7.791666666666664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,1.0,6.0,6.0,62.0,0.0,0.0,65.0,6.0,6.0,9.0,56.0,12.0,39.0,53.0,0.0,0.0,0.0,23.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,8.0,2.0,3.0,36.0,13.0,0.0,5.0,7.0,0.0,4.0,6.0,1.0,0.0,0.0,0.0,1.0,3.8918202981106265,6.166730018177728,4.388257184424518,4.81014976667463,5.1936510543196865,5.506093440731124,5.535117244309732,5.755346565708359,5.87983441843656,5.951943788945699 +216235,Cc1cc2c(cc1CC(=O)c1sccc1S(=O)(=O)Nc1onc(C)c1Cl)OCO2,0,44.22727272727273,6.758315909090907,3.977272727272727,10.556677890011223,158.50159255990536,178.4678395909091,1.9254776721076132,6.87336818181818,6.195767041124552,8.331434977272725,263.00133723017683,39.42553191489362,6.644570212765958,4.595744680851064,8.42789598108747,143.4914632953595,154.4963943617022,2.1180623965957457,6.8351106382978735,3.1348940548113124,8.147789574468081,302.71029761347853,33.325,6.7202,4.1625,8.386111111111111,151.27896043444565,129.3694445,1.8529472520349006,6.856050000000001,4.2045653292181075,8.245023999999997,263.4829937556536,34.93258426966292,6.687951685393258,3.7191011235955056,6.017478152309613,151.49692585501862,134.38140461797752,1.804643982099428,6.853647191011233,3.7274779981812873,8.277150707865166,249.04191091492106,30.584158415841586,6.623245544554456,3.237623762376238,5.833516685001834,153.75470101825485,114.98689016831686,1.604613091546981,6.76822277227723,3.9087763200188332,8.2601610990099,219.10420589218444,26.67,6.6262,3.05,5.891111111111111,160.0011251695882,100.98656951999997,1.4523105898243298,6.724193000000001,4.746069958847737,8.241668759999998,202.43536243124726,28.348837209302324,6.622267441860467,3.313953488372093,5.501291989664082,155.46597455605416,106.4976724767442,1.650972236265023,6.7409569767441875,3.826071872906498,8.255647558139534,223.6842132844953,32.0,6.480423529411766,3.1882352941176473,5.528976034858388,154.56711189719266,122.21391756470587,1.7208501705904466,6.633134117647059,3.7611205250275677,8.149989188235296,226.25984489912045,28.946666666666665,6.631880000000002,3.12,5.145185185185185,153.84999134716674,108.19053073333332,1.580867020609306,6.774611999999999,3.9912962962962935,8.253084879999998,217.13460112891823,15.944214876033055,0.1802567665289256,0.027323712235069384,0.7536157024793386,4.849887766554432,1.6110539157018147,71.58231747520664,0.3599139558519188,0.16762252066115696,2.3768900177970624,0.12985022469008262,48.22802241201965,1.7405046597503093,-0.0006839909002989361,-0.012822578817288674,0.21737075786882373,0.8800236406619386,-0.08162864799665702,7.626937645683135,-0.021061627738998227,0.0035942104800422135,-0.3822872125726502,0.005921721151309994,0.9209271446669934,0.9807851239669422,0.033895790289256184,0.001114343917828485,-0.020092975206611546,0.5691358024691355,0.18245602954237083,5.107576588429754,0.05359626067996972,0.029154808884297518,0.45304880588211544,0.01539313269628099,8.561317974864616,0.5925573405144396,-0.02527543353607577,-0.0014921903301873122,-0.1583654471167239,-1.2610278818143985,-0.10871105043630992,1.9986005396044235,-0.029115742835976368,-0.017099333735722876,-0.360150394622919,-0.0093298148330857,-7.806989318392706,-1.2650969642418792,-0.01159180253252598,0.00034448788317473965,-0.0983501759266836,-0.1413335778022247,-0.45706260472952814,-6.542190535062597,-0.0915455368421428,-0.013461134522543149,-0.14514055041205262,-0.006445215239137548,-12.635364227499903,1.292603305785124,0.017736642561983467,0.0003887321208178171,0.025475206611570256,0.16308641975308635,0.25778488539067007,6.345306341157026,0.038814518569769044,0.02075438842975206,0.4076315568312505,0.013255025082644636,6.833095453242915,-1.8062656159907744,-0.04254934052469728,-0.0017335255742843808,0.023868441283874692,-0.5666092449038187,0.1480274125150785,-7.667529868441288,0.0381860190880647,-0.04061364116855657,-0.3922590169690871,-0.030865516709110107,2.8453367393319597,0.7194214876033058,0.006505131866796307,0.0026484043891357475,-0.05174404472532815,0.14070442992011625,-0.0825514761975973,3.620263624793389,0.01709582973474339,0.005462559552746699,-0.030150449822473016,0.0006258854703451568,4.369371562178444,-2.830275482093664,-0.022236311983471074,-0.002458987539117474,-0.1199793388429752,-0.784567901234568,-0.5138614690152088,-13.060218583691466,-0.11906076541774861,-0.018770157024793364,-0.24352153357209702,-0.012797440144628091,-16.318835415442653,,,0.4889983579638753,1.3275862068965518,0.6724137931034483,0.034482758620689655,0.6551724137931034,0.017241379310344827,0.872629660854725,0.02259848911711331,0.03446055808263055,1.0509086896667927,0.25617284823562964,0.21827050962563965,1.9235383505215178,0.4744433578612693,2.031066377536269,1.2938839764588177,0.1377638745225807,0.391504511629579,0.060664674517839724,0.7371824010774515,10.318318315454555,1946.0,297.3658999999999,175.0,464.4938271604938,6974.0700726358355,7852.584942000001,84.72101757273498,302.42819999999995,272.6137498094803,366.5831389999999,11572.05883812778,1853.0,312.2948,216.0,396.1111111111111,6744.098774881896,7261.330535000003,99.54893264000005,321.25020000000006,147.34002057613168,382.9461099999998,14227.383987833491,2666.0,537.616,333.0,670.8888888888889,12102.316834755653,10349.555559999999,148.23578016279205,548.484,336.3652263374486,659.6019199999998,21078.639500452286,3109.0,595.2276999999999,331.0,535.5555555555555,13483.226401096657,11959.945011,160.6133144068491,609.9745999999998,331.74554183813456,736.6664129999998,22164.730071427974,3089.0,668.9478,327.0,589.1851851851852,15529.22480284374,11613.675907000003,162.06592224624507,683.5905000000002,394.7864083219022,834.276271,22129.52479511063,2667.0,662.62,305.0,589.1111111111111,16000.11251695882,10098.656951999998,145.23105898243298,672.4193000000001,474.60699588477365,824.1668759999998,20243.536243124727,2438.0,569.5150000000002,285.0,473.1111111111111,13370.07381182066,9158.799833000001,141.98361231879198,579.7223000000001,329.0421810699588,709.98569,19236.842342466596,2720.0,550.8360000000001,271.0,469.962962962963,13138.204511261376,10388.182992999999,146.27226450018796,563.8164,319.69524462734324,692.749081,19232.08681642524,2171.0,497.3910000000002,234.0,385.8888888888889,11538.749351037504,8114.2898049999985,118.56502654569796,508.0959,299.347222222222,618.9813659999999,16285.095084668868,701.5454545454544,7.931297727272726,1.2022433383430529,33.1590909090909,213.39506172839504,70.88637229087985,3149.6219689090917,15.836214057484428,7.375390909090906,104.58316078307074,5.713409886363635,2122.0329861288646,81.80371900826454,-0.032147572314049994,-0.6026612044125677,10.216425619834716,41.361111111111114,-3.8365464558428797,358.46606934710735,-0.9898965037329166,0.16892789256198404,-17.96749899091456,0.2783208941115697,43.28357579934869,78.46280991735537,2.7116632231404947,0.0891475134262788,-1.6074380165289237,45.530864197530846,14.596482363389667,408.6061270743803,4.287700854397578,2.3323847107438014,36.243904470569234,1.2314506157024792,684.9054379891693,52.73760330578513,-2.2495135847107437,-0.1328049393866708,-14.094524793388427,-112.23148148148147,-9.675283488831584,177.87544802479368,-2.5913011124018968,-1.5218407024793361,-32.05338512143979,-0.8303535201446273,-694.8220493369508,-127.7747933884298,-1.170772055785124,0.034793276200648704,-9.933367768595044,-14.274691358024693,-46.16332307768234,-660.7612440413222,-9.246099221056422,-1.359574586776858,-14.659195591617316,-0.6509667391528924,-1276.1717869774902,129.2603305785124,1.7736642561983467,0.03887321208178171,2.5475206611570256,16.308641975308635,25.77848853906701,634.5306341157026,3.8814518569769043,2.0754388429752058,40.76315568312505,1.3255025082644636,683.3095453242915,-155.3388429752066,-3.659243285123966,-0.14908319938845674,2.0526859504132235,-48.728395061728406,12.730357476296751,-659.4075686859508,3.2839976415735643,-3.4927731404958653,-33.73427545934149,-2.654434436983469,244.69895958254853,61.150826446280995,0.5529362086776861,0.22511437307653853,-4.398243801652892,11.959876543209882,-7.016875476795771,307.72240810743807,1.4531455274531884,0.4643175619834694,-2.5627882349102062,0.05320026497933833,371.39658278516777,-212.2706611570248,-1.6677233987603306,-0.18442406543381054,-8.99845041322314,-58.8425925925926,-38.539610176140656,-979.5163937768599,-8.929557406331146,-1.4077617768595023,-18.264115017907276,-0.9598080108471069,-1223.912656158199,0.7158201402115458,0.6104724530767446,0.4299642930617754,0.3482817005932533,0.2800125921690644,0.1939036845234621,0.17659549469821292,0.11367357743034161,0.11119039764819835,0.06504995363822885,0.07313416935424716,0.03911305120182331,0.04518645087566777,0.02267943952877499,0.02800287169579757,0.012648816657069406,17.00110564563823,5.68581391806787,3.5820964828046415,2.184617372902026,0.4934789328302783,-0.48689464814963607,4.04395466940166,0.97138624538427,6.033941384140445,0.6440877269102333,14.565086837928805,10.310634241998379,35.45051816019029,11.697341271660106,2.9551308418395563,0.7154398174228085,3.5377476778850165,2.234608360453214,7.014577428475299,0.2989139097807888,3.768672608392267,2.4307122434292867,24.442715987152614,14.681655417027448,0.3391551538861633,0.71787594424029,0.8102576635118761,0.8599558073416742,0.875541407393848,0.875541407393848,1.3658129654951585,1215.1645268355699,0.0,2.0,2.0,0.0,10.0,1.0,2.0,0.0,0.0,3.4811769082821895,1.272140192069025,0.7332877842384198,0.4434039773710676,0.3524948864619777,0.3524948864619777,-25.647664243008137,1625.6742388476423,79.7042977493348,36.94714179199187,77.00704361621862,,14.0,687.0,10.023291153407584,13.212334168400758,39.676455060212184,17.19295166141627,22.463688861328727,6.06636706846161,24.43653410707976,6.923737199690624,9.878758121577533,25.597760734805963,14.180952380952384,38.5,19.5,1.0,19.0,0.0,0.011001642036124694,0.5,0.2708593875260545,0.08872912801484278,-0.1821302595112117,0.020941434044882246,0.18720007075888878,0.0,0.7140692640692641,0.9282430213464693,0.4432098765432096,0.6253401360544213,0.907301587301587,25.306260164787027,0.6553561843962861,0.999356184396286,30.476352000336988,7.42901259883326,6.32984477914355,55.782612165124014,13.75885737797681,0.5267999292411112,0.19140362659503016,0.058764271323035584,0.3525856279382135,0.2222222222222222,0.5211037942891269,-1.3941210351252527,-0.09117595344471739,-0.03168456898011938,-0.0774511686180696,0.47889620571087316,1.2812020970485747,0.03999100879589544,0.0291182294783767,0.049277003732637485,-6.28103182449481,0.6800942379218031,0.6699316861228906,1.4713978343951906,0.8415265483499339,0.5596015485078073,1.14248196327507,0.6635017012751219,1.0508414172014457,0.6127291525261843,0.7084762646188778,0.6362811160854216,0.8243810798589906,0.7608024491382663,0.7086587773237842,1.0493887445404626,1.1346812885538042,0.7971854208851609,0.9166177480240314,0.7430315213584442,0.8007735493845966,0.6921649222290839,0.5847340329272434,0.7722624711436952,0.7173080980171042,0.9076910308919607,1.03025462676523,0.9928015470524962,1.296778615490062,1.1544074390668013,1.106708704675485,0.9073702289674291,1.0826696180995934,0.9768368157823584,1.1462876032395,0.9788777431546142,1.0562088335196176,1.1324079408070395,1.0372462607982238,0.9278245417742367,1.1106074281177263,0.971597017960402,1.2704953705777762,1.1354972930090221,1.315619409678706,1.0473260609671204,1.1914455500399053,1.0407197519634663,1.2212148024146015,0.8412498380199562,0.989152629212633,0.9466060526525748,0.9596161754626459,1.009685276251085,0.8026846471169581,0.8360793516569501,0.8367043625544882,0.9494596403518829,1.18118771330815,0.957508072028392,0.8478823289103018,1.115750939484256,1.2968211954308748,1.1321500434597833,0.9801233721727213,1.1280445472953429,0.9050712396398701,1.095810655792901,0.9823782661700925,1.271485147782614,1.4035872672154883,1.2815700948528048,0.9143581083275315,1.149428686856368,0.8699944124093631,0.6938389417870926,1.0526791113978151,0.9260559138321226,1.0728822731967451,1.127032928216337,1.1499292765599758,0.8809774317409517,1.1310110132335862,0.9073985367235513,0.9435574942348436,1.1854114293119091,1.0879768099396778,0.9891749470388276,1.158455563171122,1.0922024877061036,1.3306186461787881,1.179907928971924,1.3772071144772324,1.0623361884465086,1.2544544567711657,1.0647345737471254,1.281670590579754,7.5,0.15846138149168457,4.888888888888891,2.916666666666667,2.2994444444444446,1.0002777777777776,0.733061224489796,0.62156320861678,0.348726064499874,0.21218364197530867,7864.421155907697,8338.710356313306,3347.958679584216,3196.1170018628354,14.350037633608773,0.4854851476563774,7.383307494181645,0.9435784903875671,1.0,0.2222222222222222,1.978254710355108,4.187291426568272,4.7261438343988775,5.01602764126623,5.10693673217532,5.10693673217532,0.234375,0.007545780071032598,0.10185185185185189,0.06340579710144927,0.052260101010101014,0.02381613756613756,0.019291084854994624,0.015937518169661023,0.010897689515621062,0.008840985082304529,0.5382219452231536,22.203125,8.859375,4.62109375,174.97268463324534,1.0,4.3150584631059825,164.3122414148494,,113.99366021457739,131.410397646153,133.6709130068605,113.96995988835779,151.98281303444105,131.2527548784286,130.24104153474775,148.53352379658435,0.10916214271337954,-0.0037945366127999243,-0.469283921122225,0.288437139982209,0.18145237230657504,-0.05066785611647117,0.10654778882123805,-0.05851850809492843,0.02144228869644422,-0.16083504483180075,0.04560424262217136,0.019095270728693096,0.06151354153168331,0.18804170818085195,0.04078303519820594,-0.026662097326936234,0.11735030373155911,0.11325259059557202,0.0713524899525476,0.14891409407314313,0.17393133553475754,0.19060570850560765,0.11854529118467245,0.1775175001314364,0.03716441010871956,-0.14021905542181046,-0.05461155194981591,-0.21014085374775707,-0.2600117657383001,-0.06747821992596238,0.027920310631136834,-0.08089639860465873,-0.10201095693035532,-0.15152169091808118,-0.07185058674602562,-0.16187662126587643,-0.07934520288882592,-0.06430717002052656,0.012607653023537446,-0.13050441438934854,-0.029141618240504995,-0.28370410218730663,-0.09139394707818116,-0.25435395142001055,-0.08030624088844458,-0.061063216777093914,-0.0496357650094217,-0.26199216960533817,0.08107036413113906,0.09839654235191936,0.014226914610778544,0.03380397532556548,0.03362684408446629,0.16001009207588973,0.0886434885732052,0.10784388306892632,0.12381622915518808,0.1714978622397723,0.10207933882502551,0.14168309442312804,-0.11328658262790398,-0.23604850649459216,-0.06344399909392395,0.03167190015461372,-0.11682935197206885,0.0918823455083402,-0.10711485935192062,0.1060976338016072,-0.2422922708020578,-0.16503036069487081,-0.2377009110517733,0.05899758267141448,0.04512116107295582,0.03608814244292148,0.09692696096164338,-0.06866104906664519,0.029011894025761896,-0.051240666369403186,0.050574831222072535,0.0474997689219287,0.03258845846727882,-0.012684831690452767,0.004820056891229693,0.0905981905053085,-0.17751112262969207,-0.12335909720150692,-0.08999463608613976,-0.15920493488690887,-0.16177032108764827,-0.31895982127411177,-0.18245034590022913,-0.33080341421029635,-0.11197873024912075,-0.10245385009349169,-0.09855539468778063,-0.3383683302630212,3.6161964788749787,15.14349374360874,10.976521885900246,26.87899759926128,51.11010061236815,53.34244627551377,54.816194607381526,55.40796733465425,55.40796733465425,58.9009249485518,37.52263531730571,3.9951523611548403,11.353630837257791,1.759275561017352,21.378289631246094,6673.4828589197705,6265.019738034669,2111.1108246005106,124.0,48.0,64.0,83.0,92.0,96.0,106.0,118.0,113.0,454.0060058800004,32.0,5.081404364984463,5.953243334287785,6.86171134048073,7.7488913372555315,8.655388690167637,9.547740749170218,10.453081864230466,11.347991857777501,12.252798776285521,0.886363636363636,1.0259090909090913,1.1123678179896708,0.8607564278199532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.749236458900381,1.0155080213903742,1.0429136595378403,0.7121226292026719,4.0,1.0,0.0,1.0,1.0,0.0,9.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,13.996820844573445,15.612044784107564,17.28226861293275,6.792942306099827,15.907473355268593,4.794537184071822,13.139891848781026,0.0,11.336785877934737,16.757603147357962,48.55354135862598,6.4208216229260096,4.877147193701299,316.6514743410637,-847.1450141415947,-55.403549924457636,-19.253295775945332,-47.06361189675526,291.00381009805557,778.5292247060477,24.300747824877163,17.69384601604654,29.94343171946337,0.5,0.7375919999725139,0.1695439819575015,149.70850931640356,0.09918790103194357,2.791598527973746,0.262408000027486,7.0,0.1875,0.36235543341211235,0.7669830339615907,0.8656842258569305,0.9187820256128157,0.9354337756958733,0.9354337756958733,3.9612400000000028,,3.6827731092436973,2.1530486651544454,1.4471642082409581,3.6924960037002705,-6.447908406201142,2.0909877910850136,2.123991168518912,-2.6341697447544665,106.71400000000004,27.209155012974204,0.0,5.156663257125445,0.0,25.163779497825033,11.515037170551915,50.299775461535816,0.0,11.49902366656781,4.174387269895637,0.0,5.54907608489522,3.4339872044851463,7.094234845924755,5.733341276897746,8.71948076085107,7.75833346749091,10.389764303380707,38.999999999999986,6.449296481161335,3.6129350298563376,0.0,4.903872765771874,1.051171579743008,0.0,2.96728268431307,0.0,45.140000000000015,0.0,38.467999022454435,0.0,0.0,-4.0900892201016195,0.0,0.0,-0.33130768665490873,48.944183991545515,14.195820772052187,5.884182201861009,11.49902366656781,26.15064749391915,16.444112776333593,13.847474399381248,26.492515356015577,32.99774238834187,5.022633313741326,0.0,0.0,37.87328282407794,32.96640419161677,36.90669239901411,328.6244828296988,,228.66784774795116,262.6723091774678,267.2420215855665,228.6196422523521,306.531081568845,262.3613037022996,260.3356009199424,297.61204823001447,36.90669239901411,328.62448282969876,,225.74702769579238,260.6677466271516,265.89466180548004,225.69111093907264,310.4686109196054,260.4145219657722,258.3580919009766,299.70121733792325,4.861501771067543,247.16625373570298,,176.58063298733396,202.68961834411022,205.67545193032583,176.55580774775245,225.64193329225182,202.31086492528595,200.64152153246684,224.2970521176964,1.2726445654832452,11.331878718265477,,7.885098198205212,9.057665833705787,9.215242123640223,7.883435939736279,10.570037295477414,9.046941506975848,8.977089686894566,10.262484421724636,2.470191884685965,164.3122414148494,,113.99366021457739,131.410397646153,133.6709130068605,113.96995988835779,151.98281303444105,131.2527548784286,130.24104153474775,148.53352379658435,44.68235294117646,0.0,3.4338540338556465,5.980117141215567,0.0,0.0,0.0,45.888201019664976,0.15526558989506922,2.2432979549844627,10.684082401283497,0.0,0.0,0.0,0.0,0.0,0.0,31.333395684917562,448.20167654331675,87.04320725562475,184.24082276900398,207.95032871355062,220.7052162157141,224.70521621571407,224.70521621571407,905.0,138.90225231463987,159.4536078958024,81.85260521382119,144.35,107.73,1.0,8.448713581045403,6.0,4.800639960962616,5.312335939898749,,5.301127039037751,5.315280340515407,5.315359479836236,5.30113895179778,5.271068454208728,5.314604308406219,5.31334140291585,5.2955386030295974,0.1655393089987109,0.18318399792754309,,0.18279748410475002,0.18328552898328992,0.18328825792538744,0.18279789488957862,0.18176098117961131,0.18326221753124894,0.1832186690660638,0.1826047794148137,2.633459971219804,2.734742388864696,,2.732630183818985,2.735296492553483,2.735311381463683,2.732632431029164,2.7269438217302726,2.7351692979258027,2.734931640427239,2.731575430047371,286.7600000000003,211.56688985736704,183.83736191217957,,183.06145950976094,182.3665335517419,182.56044273758602,183.05193510409993,187.04205066249523,182.42121410300382,182.5147162459252,184.7572800810083,7.295409995081622,6.339219376282054,,6.312464121026239,6.288501156956617,6.295187680606414,6.312135693244825,6.4497258849136285,6.2903866932070285,6.293610905031904,6.3709406924485625,6.419251949578839,6.278762201077922,,6.2745326777664046,6.270729319463702,6.271792048265315,6.274480647953766,6.296044198420495,6.2710291132589875,6.271541543727963,6.283753701083668,43.396386069566354,12.873183351529912,5.218784926657541,1.9377172872298587,0.6652869236044232,4.906100094582012,0.02150647553259999,3.5676131482181157,-4.0900892201016195,343.6306854871893,192.4149417087855,-514.7721445293924,-33.66625988828325,-11.699366921122554,-28.598452473855133,176.8300029980014,473.0773974829204,14.76647783160904,10.751759033702736,18.19528451857386,2310.0,46.0,2.870634246920751,1.5249846157737832,0.2041241452319315,0.05103103630798288,0.8623476360458143,0.4192118167056556,0.08333333333333333,0.01473139127471974,0.0,0.0,0.0,0.0,0.33192730526045344,0.15434662839478716,0.6096806405389308,0.290995178832716,0.9045781868548696,0.4275886399572443,20.75878406613483,17.703701139225593,13.758857377976813,11.145014418984106,13.44060442411509,9.307376857126181,11.302111660685627,7.275108955541863,9.228803004800463,5.399146151972995,6.728343580590739,3.5984007105677445,4.337899284064106,2.177226194762399,2.9683043997545426,1.340774565649357,6.269536828263771,3.4004963689053613,9.579526945965311,4.780660586140508,14.00699767241557,6.196440494306502,95.1601760545418,41.28111653801664,35.77929821858764,32.54798927739688,31.447261035103192,31.447261035103192,160.0,192.0,55.05389499999998,31.320104999999995,0.5227272727272727,212.11,10.17361111111111,6.124999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,16.0,16.0,44.0,0.0,0.0,47.0,16.0,3.0,10.0,37.0,19.0,32.0,28.0,0.0,0.0,0.0,18.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,8.0,1.0,3.0,29.0,11.0,0.0,2.0,6.0,0.0,4.0,6.0,2.0,0.0,1.0,2.0,3.0,3.784189633918261,7.087939135856211,4.465908118654584,5.003946305945459,5.554895693948484,5.8779108364846815,6.06072821525954,6.277348128243378,6.613258371535003,6.74534663752006 +5396,COc1cc([C@@H]2c3cc4c(cc3[C@@H](O[C@@H]3O[C@@H]5CO[C@@H](c6cccs6)O[C@H]5[C@H](O)[C@H]3O)[C@H]3COC(=O)[C@H]23)OCO4)cc(OC)c1O,1,29.128205128205128,6.6677384615384625,3.8205128205128207,9.774928774928775,160.16642028575092,115.44094273076917,1.5415905763483073,6.710938461538462,4.974046815096198,8.187224576923079,230.21894891117432,29.294117647058822,6.688823529411765,4.670588235294118,8.349019607843136,144.47070478480654,112.71646017647065,1.8109019876235302,6.824805882352933,3.2926652142338426,8.123353976470588,276.71667606068337,25.733766233766232,6.7862207792207805,4.285714285714286,7.461038961038961,152.1658215494287,97.14506234415585,1.5843768326729932,6.874090259740259,3.3542167708834385,8.284604532467533,239.70733843593294,23.054455445544555,6.641257425742575,3.8465346534653464,6.445544554455446,153.41500117382932,85.63427324257424,1.4448784536769055,6.723807920792077,3.5510634396773013,8.160569346534652,214.27542572549325,20.206751054852322,6.544008438818565,3.4936708860759493,5.541490857946555,156.53192626887682,74.03088835864982,1.3433494780798436,6.6132890295358635,3.2964265249778624,8.08891706329114,196.51498851636615,19.543307086614174,6.444779527559054,3.4291338582677167,5.244094488188976,157.03865895812686,71.3646309015748,1.3442049871033943,6.517466535433074,3.164285019928064,8.009375244094487,193.3572921600817,20.40449438202247,6.491370786516853,3.411985018726592,5.563046192259676,156.1262882976335,74.75332354307119,1.328847980925723,6.567948314606742,3.171394553104915,8.046751513108616,193.98088345443227,19.809859154929576,6.539457746478875,3.091549295774648,5.740610328638497,159.4891080696852,72.77681224295773,1.2242901952610843,6.593703169014085,3.5091723178577645,8.10652187323944,180.21623812309306,18.443636363636365,6.5366763636363645,2.861818181818182,4.963636363636364,160.09264412649074,66.55068904363637,1.1649704008412944,6.584579272727273,3.705286195286195,8.109680356363638,168.98606477445858,9.677843523997367,0.2018023011176857,0.03873672354363839,0.690335305719921,4.760391555263352,1.3823708212015453,44.56721014940828,0.2657515128050177,0.18225831689677843,1.6761839167070258,0.1394557365220249,48.10192800155556,0.49108558610820985,-0.016452255868816854,-0.01633054681668809,0.24510964148973194,0.7092246672940492,-0.089463610317398,2.3839179976505385,-0.003619422332633975,-0.011638105735390683,-0.21690732963450493,-0.01612799006651972,1.6920214888067222,-0.3789757251295718,-0.0210359008512853,-0.004714410807368316,0.017290401905786578,-0.27204656691836177,0.2017986759571754,-1.5365561971105846,0.037843323385702045,-0.019616708505169885,-0.12560803511262514,-0.014602780145068633,4.506638950659222,-0.5497653315627423,0.011667945137709114,0.00584108123334446,-0.07393520417130467,-0.20579506997379554,-0.11914536593605218,-2.67444336589724,-0.03336574472785587,0.00933447315145724,0.13564612273883125,0.010449241454618815,-4.975831417770783,-0.5562379846703123,-0.015090194658743781,-0.0019014396236118273,-0.02009836966020022,-0.4263850398222355,-0.02998303356510376,-2.6108325791388913,-0.0029291555038846702,-0.014245799315906376,-0.1343395862108221,-0.009853547784602073,-2.3758687667000222,-0.4729172167088582,-0.009615626375105484,-3.980696829263563e-05,0.0047989563434748285,-0.22677556495444645,0.056430234580669654,-2.048149322939478,0.007723716428326293,-0.009150109749594907,-0.08385309546471383,-0.007128294618128349,0.9984258941198113,-0.4155752055492766,-0.016791871846582287,-0.0027867566368488562,-0.037785608226403374,-0.05986763751096797,-0.18786622126450958,-2.014092490520356,-0.03417961313932599,-0.01376307057007141,-0.15024454736588966,-0.01207053408276637,-4.354243501240343,0.6704771693937456,0.014983451861729242,0.0011565907427980686,-0.06402616884740392,0.523154450113641,-0.08592913007947987,3.0965834612363534,-0.013731340670171602,0.015115437166060144,0.08169432730949902,0.008187993795779266,0.4476335595013087,-0.1625055286593748,0.015549736178351582,0.002762067379141627,-0.07485745024206565,0.05189541702362215,-0.22494348288315513,-0.9266948309467438,-0.04217443642239958,0.0138139628235013,0.16324214191656417,0.010553391403382932,-6.307635551725926,,,0.4601449275362318,1.108695652173913,0.41304347826086957,0.03260869565217391,0.6956521739130435,-0.2826086956521739,1.2215472087957837,0.012158839538596852,0.027115361277727287,1.1042299223280239,0.22111545431770968,0.2648607835865868,2.325777131123808,0.48597623790429656,2.096696015915817,1.49975279518363,0.0,0.5530863848129325,0.0,0.5969432207321869,8.412261052358986,2272.0,520.0836,298.0,762.4444444444445,12492.98078228857,9004.393532999995,120.24406495516797,523.4532,387.97565157750347,638.6035170000001,17957.0780150716,2490.0,568.5500000000001,397.0,709.6666666666666,12280.009906708556,9580.899115000006,153.92666894800007,580.1084999999994,279.8765432098766,690.4850879999999,23520.917465158087,3963.0,1045.0780000000002,660.0,1149.0,23433.53651861202,14960.339601,243.99403223164097,1058.6099,516.5493827160495,1275.8290980000002,36914.93011913367,4657.0,1341.534,777.0,1302.0,30989.830237113525,17298.123194999996,291.8654476427349,1358.2091999999996,717.3148148148149,1648.4350079999997,43283.63599654964,4789.0,1550.93,828.0,1313.3333333333335,37098.06652572381,17545.32054100001,318.37382630492294,1567.3494999999996,781.2530864197533,1917.0733440000001,46574.052278378775,4964.0,1636.9739999999997,871.0,1332.0,39887.81937536422,18126.616249,341.4280667242622,1655.4365000000007,803.7283950617283,2034.3813119999998,49112.75220866075,5448.0,1733.196,911.0,1485.3333333333335,41685.718975468146,19959.13738600001,354.80241090716805,1753.6422,846.7623456790124,2148.4826540000004,51792.89588233342,5626.0,1857.2060000000004,878.0,1630.3333333333333,45294.906691790595,20668.614676999998,347.69841545414795,1872.6117000000002,996.6049382716051,2302.2522120000012,51181.411626958434,5072.0,1797.5860000000002,787.0,1365.0,44025.47713478495,18301.439487,320.366860231356,1810.7593000000002,1018.9537037037036,2230.1620980000007,46471.16781297611,754.8717948717947,15.740579487179485,3.021464436403795,53.84615384615384,371.31054131054145,107.82492405372054,3476.242391653846,20.72861799879138,14.216148717948718,130.74234550314802,10.87754744871794,3751.9503841213336,41.74227481919784,-1.3984417488494327,-1.3880964794184876,20.834319526627215,60.28409671999418,-7.60440687697883,202.63302980029576,-0.30765089827388786,-0.9892389875082082,-18.43712301893292,-1.3708791556541762,143.82182654857138,-58.36226166995406,-3.239528731097936,-0.7260192643347206,2.662721893491133,-41.89517130542771,31.07699609740501,-236.62965435503003,5.827871801398115,-3.0209731097961625,-19.34363740734427,-2.2488281423405696,694.0223984015201,-111.05259697567395,2.356924917817241,1.1798984091355809,-14.934911242603544,-41.5706041347067,-24.067363919082542,-540.2375599112426,-6.739880435026886,1.8855635765943626,27.400516793243913,2.1107467738330006,-1005.1179463896981,-131.828402366864,-3.576376134122276,-0.45064119079600307,-4.763313609467452,-101.05325443786982,-7.105978954929592,-618.7673212559173,-0.6942098544206668,-3.376254437869811,-31.838481931964836,-2.3352908249506914,-563.0808977079053,-120.12097304404999,-2.442369099276793,-0.01011096994632945,1.2189349112426064,-57.600993498429396,14.333279583490093,-520.2299280266274,1.9618239727948785,-2.3241278763971063,-21.298686248037313,-1.8105868330046007,253.60017710643208,-110.95857988165686,-4.4834297830374705,-0.7440640220386446,-10.0887573964497,-15.984659215428447,-50.160281077624056,-537.7626949689351,-9.12595670820004,-3.6747398422090667,-40.11529414669254,-3.2228326000986205,-1162.5830148311716,190.41551610782375,4.255300328731105,0.32847177095465147,-18.183431952662712,148.57586383227405,-24.403872942572285,879.4297029911244,-3.899700750328735,4.292784155161081,23.201188955897724,2.3253902380013116,127.12793089837166,-44.68902038132806,4.276177449046685,0.7595685292639475,-20.585798816568055,14.271239681496091,-61.85945779286766,-254.84107851035455,-11.597970016159886,3.798839776462857,44.89158902705515,2.902182635930306,-1734.5997767246295,0.6888943697287709,0.5561987713546386,0.42179069704901206,0.297420567412244,0.25882247868841735,0.15934014117930853,0.16417513380453153,0.0862519349993631,0.10011153238928311,0.046408287651374155,0.06048753356345642,0.02405899086292237,0.037490525774814466,0.012836714604387903,0.023387883564213726,0.006837228966454169,16.00450597254664,5.679844071769612,3.55778925837093,2.1789048958161388,0.49370876922897966,-0.524494732365924,3.2602155468421605,0.9778347841287095,6.029827186433281,0.6503168256383571,13.647209526467291,10.311401087249576,32.062247230080715,11.691396559236905,2.9364135822804487,0.7413569173666772,3.5038242133824054,2.228701559304429,7.008280020306135,0.6099946647664513,3.7167525362585803,2.424737461204515,24.440724264422666,14.700310849454038,0.23893156362870718,0.5912154004038149,0.8209790461432084,0.8958231908085896,0.9168593192713795,0.928595078548392,1.0553779146217692,1601.098625016832,0.0,2.0,4.0,0.0,12.0,5.0,3.0,3.0,0.0,4.719304055587618,2.410228346435273,0.9042221155510344,0.413649519313978,0.2757663462093163,0.19884326928623874,221.24467541192428,5014.523321754676,152.61683511996756,64.28876053531636,136.52314741940575,,18.0,1454.0,66.82290882384797,20.11411936859394,37.25524173497738,28.189378141658796,4.877147193701299,25.556380960489804,18.19910120538483,23.579163975850747,0.0,42.63176658420044,21.166666666666664,51.0,19.0,1.5,32.0,0.0,0.03985507246376817,-13.0,0.21870692031982436,0.062484088016003136,-0.15622283230382122,0.038110026619343595,0.21517831893165756,0.0,0.667094017094016,0.9224637681159421,0.4483870967741916,0.6046099290780128,0.8843537414965985,56.191171604606055,0.5593066187754552,1.2473066187754551,50.7945764270891,10.171310898614646,12.183596044982995,106.98574803169515,22.35490694359764,0.4988216810683424,0.11023622047244094,0.0,0.4724409448818898,0.46875,0.3761436910526876,-2.111828949240006,-0.10688498841765055,-0.02707473011846162,-0.08799287288500025,0.6238563089473124,3.5025918146169523,0.06398970355842548,0.04490502326431991,0.06486281138179542,-3.4296394959651444,0.6960278132992328,0.8542604994352149,1.3704559265548022,0.7991176470588236,0.6106000153456608,1.1865338036126867,0.6956410537948672,1.067252892985414,0.8154289633400359,0.8869906001408082,0.9285116618832984,0.9134448461151787,0.9236667798913045,1.121756668131659,1.1771444600284302,1.1235714285714287,1.0259456763600088,0.9105567705312325,0.9167893615248655,0.8720509327177639,1.1028514340318645,0.8623799037464497,1.1552362386137949,0.8338325497197068,0.9548995439625486,0.8956622331306338,0.7814655475839531,1.2424009900990098,0.9707661929010359,1.1225245376452815,0.9581767462503386,1.1306616165648973,0.8903100237682777,0.8558790047131815,0.8982588661813129,1.0605089980558982,0.8907064787424327,1.0538785490865326,0.953056265651533,1.0860759493670886,1.0549025501963365,1.0124303872858575,0.9030153398166635,0.9174619024787778,1.0512842088770948,1.0585066139434556,1.0596811536680024,1.007830363287255,0.9648220188933586,0.9802888752093103,0.8951938575504492,1.0556102362204725,1.0018521125356528,0.9578987112716688,0.9665612913668427,0.9398580884056068,0.982432428705365,0.9891478326529095,0.9864048718545209,0.9658561994825293,0.9424871000244261,1.0300842868403812,1.0535429729767416,1.0899063670411986,0.9594156837828258,1.1380340122292125,0.9495527258907991,1.0916464302305087,1.018875008911372,1.0458095232062339,1.0405441290939308,1.0652104772302877,0.8528474601002757,0.9634842679443735,0.9950485404288162,1.1203345070422537,0.9076651171511533,1.0291892752260547,0.8596678743296489,0.9695329721109958,0.9525459233516086,1.0293840030073698,0.9810007609023449,0.958608871035005,0.927866168478261,0.9759508544467622,1.020029509355145,1.0634000000000001,0.9947648277449546,1.1180081789369412,0.9408467208996854,1.054091011726444,0.9755335481606506,1.068003573315945,0.9779607756391633,1.0953202920720406,8.5,0.41128864401591675,6.222222222222225,3.7222222222222223,4.044444444444444,2.312777777777778,2.0307936507936506,1.6589427437641726,1.0080861048122953,0.6196990740740742,11720.143053318623,12903.335847643753,4797.6266334803595,4459.591419780056,19.58117629195557,0.4781035876709133,10.21934565595498,0.9160890482792601,0.0,0.46875,1.5660981632746303,3.8751738724269758,5.381180103311214,5.871752699548271,6.009635872652932,6.08655894957601,0.16037735849056606,0.007344440071712799,0.0777777777777778,0.041822721598002495,0.044444444444444446,0.02434502923976608,0.020106867829640107,0.016106240230720117,0.011455523918321536,0.009389379910213241,0.4131697835111647,33.16126735493058,13.6125,5.878680884118353,266.56200328692984,0.0,4.797851903586282,330.55122725075233,,263.382526968916,262.07765787574493,277.45303425451465,263.47788980724806,417.7882562348603,265.5117635574108,266.5919630378804,343.62951090321224,0.050743286445012734,-0.0815266019153188,-0.4215779065126948,0.35505882352941176,0.14898452344952406,-0.06471751931195782,0.05349040224098904,-0.013619573768107018,-0.06385500499262207,-0.1294054473811166,-0.11564952771930291,0.03517575197301872,-0.03915910855448905,-0.10424014361965935,-0.12170391236257637,0.025046382189239418,-0.057147939147478746,0.14598013272717494,-0.03447728031347247,0.1424011588354259,-0.10763134895116891,-0.07493690510966747,-0.10471265298406959,0.09368936210859329,-0.056806594382264354,0.05781869222048504,0.15078924335880547,-0.10710042432814705,-0.0432307022615098,-0.08618914990732515,-0.0600092165727082,-0.1255524169013343,0.051215622476881516,0.08092556036769344,0.07492873161921539,-0.1034434922776873,-0.0574754058888278,-0.07477711886914304,-0.049086227477906925,-0.029113924050632893,-0.08956932110989918,-0.021689573524882967,-0.05858191639966396,-0.011022159283186457,-0.07816268447148259,-0.08014608950236267,-0.07065717072919304,-0.04939238124973264,-0.0488659705580281,-0.04764874494418132,-0.0010276286854202206,0.006951631046119252,-0.04763800673154939,0.040821343821204906,-0.0459564176459152,0.02906367812097159,-0.050204072469170496,-0.05002619022228108,-0.05111510502117311,0.02075646311074108,-0.04294088910600882,-0.0832095162125516,-0.07194094858615156,-0.05473515248796146,-0.012576200259152003,-0.13590146607783418,-0.0451922497227953,-0.1286149334713426,-0.07551408794072259,-0.08963488186967873,-0.08655458989211258,-0.09052118453754145,0.0692796042559706,0.07424817149627691,0.02985773284348959,-0.0927464788732394,0.1098973569800603,-0.06216069433872381,0.06948120492297556,-0.05166984949676019,0.08293414217481629,0.048738283726044176,0.05871392600967762,0.009305937996639816,-0.016791501976284585,0.077054305586354,0.07130358808044394,-0.10843636363636368,0.010901501782189264,-0.16272296798599678,-0.020793198134683947,-0.1586987632817091,0.07579331938703683,0.09738915896369185,0.07567556320435902,-0.13113061812245747,6.549718716441611,36.01833649603115,41.90420114506361,16.34232610494244,40.143383618986796,48.84257920329267,51.93397451328179,52.6372171620277,52.71475562356617,96.44801673212757,68.98862857844698,0.0,25.441973701394897,0.0,27.459388153680596,19049.506662573876,18124.22151853734,4312.113663340257,774.0,80.0,119.0,170.0,233.0,304.0,405.0,529.0,654.0,656.1563620840009,53.0,5.58724865840025,6.499787040655854,7.428333194190806,8.35772841676521,9.293669979563187,10.230594644192365,11.171181356419915,12.112657169640217,13.056537628144003,0.7350427350427349,1.017128205128205,1.1190602655073412,0.7009119845270042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.6763655458314142,1.0020110608345902,1.0330877546828021,0.6557524098806413,7.0,0.0,0.0,0.0,1.0,0.0,9.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,3.0,3.0,0.0,9.0,0.0,10.0,0.0,0.0,0.0,0.0,57.95134876872255,24.41586555099321,35.57810079180605,12.542454139383732,0.0,4.794537184071822,0.0,0.0,11.336785877934737,6.06636706846161,52.40225258786495,11.835812092322787,44.3323786391919,335.9529665565768,-1886.1813111145875,-95.4643924474205,-24.18181168095625,-78.5908879631078,557.1976419685011,3128.342010640088,57.15244267254706,40.106948854360105,57.93225945629793,0.5,0.6706697206261669,0.0893590808588704,277.4794170236025,0.05520433876026053,76.59884572689214,0.329330279373833,9.0,0.11320754716981132,0.24916435078328486,0.616535543389368,0.8561393393667793,0.9341888546014395,0.9561259030676268,0.9683642729037264,2.752900000000001,,3.875,3.6896955503512876,2.1638439211481235,3.865811230715957,-13.645687505374493,3.375,3.301788507005817,-5.029349339582865,155.94339999999977,62.745885952794374,0.0,0.0,11.835812092322787,49.01779144357333,34.226301317680736,63.34576685002786,0.0,28.747559166419524,4.672828834461906,0.0,6.056784013228625,3.4339872044851463,7.640603826393634,5.68697535633982,9.323222529032856,7.69484807238461,11.062834260914231,57.33333333333332,12.593854624799977,0.0,0.0,0.0,1.4641830106325573,0.0,4.020235835604469,0.0,79.33599999999998,0.0,13.483401667032272,0.0,0.0,0.0,0.0,0.0,-0.43348643930111064,87.28670070957261,18.947451815200196,0.0,28.747559166419524,86.22108107048312,28.478851953072066,11.835812092322787,39.87940083203719,41.778265181235575,0.0,0.0,0.0,54.671134793106326,52.756512574850305,61.75002807253868,661.1024545015046,,526.9804886084128,524.0667486158253,554.8475568461236,527.1725903378933,840.3696090678247,530.9358206850882,533.0928966253808,688.3523586193771,61.75002807253868,661.1024545015046,,523.6109233910213,520.7284723569587,552.8718732659449,523.8110153546621,849.2773099342605,527.8542989459578,530.0782201624622,692.288371146007,5.169357200087533,479.2492846366811,,384.4785925255427,381.2133708997015,405.40328791379125,384.62972535752516,622.8143293825627,386.6833481392595,388.4863333702687,508.42492212935963,1.3423919146204062,14.371792489163143,,11.456097578443757,11.392755404691854,12.061903409698338,11.46027370299768,18.26890454495271,11.542083058371482,11.588976013595236,14.964181709116895,2.6070602389601936,330.55122725075233,,263.382526968916,262.07765787574493,277.45303425451465,263.47788980724806,417.7882562348603,265.5117635574108,266.5919630378804,343.62951090321224,78.15686274509804,0.0,2.8627944598667243,0.0,0.0,0.0,33.09804506952632,80.58084486525857,0.17107684235585818,0.0,52.56951362771084,0.0,-8.996285364894568,0.0,0.0,0.0,0.0,51.14868797069003,599.009069096605,122.15565673542116,302.2635620493041,419.7320480582747,457.9967105647651,468.75159806692875,474.75159806692875,3367.0,182.73773808797182,294.14153942847287,101.57208409724083,189.07000000000002,160.83,1.0,9.343660414142771,6.727920454563199,5.186403858940545,6.664514303322011,,6.682343288187989,6.676733045923944,6.673560520077377,6.6823293966550095,6.657926351084303,6.676478599085306,6.676812989488482,6.666810532806412,0.11274790997696836,0.14488074572439152,,0.1452683323519128,0.145146370563564,0.14507740261037777,0.14526803036206543,0.1447375293713979,0.14514083911055015,0.1451481084671409,0.14493066375666114,3.1720968624233494,3.4228533817504974,,3.4255250211755084,3.4246851064308736,3.4242098321021706,3.4255229423317823,3.421864380869114,3.4246469962225685,3.424697079814472,3.4231978680690496,428.8200000000013,1162.292297470195,388.067175580415,,384.7002473118405,385.44948963793547,386.07666999586104,384.70346459788226,390.65863736233234,385.53242562494825,385.50404574703236,388.2349888994972,25.267223858047718,8.436242947400325,,8.363048854605228,8.379336731259468,8.392971086866543,8.363118795606136,8.49257907309418,8.381139687498875,8.380522733631139,8.439891063032547,8.584205756150538,7.487234761071759,,7.478520756122446,7.480466462331304,7.4820922801684455,7.478529119185925,7.493890431925891,7.480681606125707,7.480607991247598,7.487667101285079,52.56951362771084,14.32268078917269,35.000003964840836,2.000043371516066,-1.0847244519152293,10.691895729485463,-7.164134010332464,0.17107684235585818,2.8627944598667243,539.5301588432563,300.05659651581175,-1684.6439858106232,-85.26408020689047,-21.597999818084915,-70.19349940877595,497.66141299290524,2794.0805704777604,51.045738951680036,35.8215457753559,51.742232786625195,7305.0,89.0,3.215688569247135,1.6410079986087924,0.0,0.0,1.1416102359648073,0.36020390815340325,0.0,0.0,0.0,0.0,0.0,0.0,0.35841374236010204,0.19542643517966624,0.7188866070308255,0.29557352827419736,1.3217621383796636,0.44138880454108675,31.689141007523464,25.585143482313374,22.35490694359764,15.763290072848932,20.705798295073386,12.747211294344682,19.536840922739252,10.263980264924209,17.01896050617813,7.889408900733606,14.093595320285347,5.605744871060913,11.397119835543599,3.9023612397339225,9.472092843506559,2.7690777314139385,9.319813915470071,3.9006654533686707,15.870356315209728,5.843300225317472,26.27917269799709,8.345443747545884,164.2204979651461,70.48528194197857,39.28512867705508,31.00336412357429,29.2742845274576,28.6511061309635,266.0,332.0,88.10337599999998,51.05462400000006,0.48717948717948717,739.14,13.222222222222221,9.861111111111105,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,1.0,1.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,0.0,17.0,17.0,78.0,0.0,0.0,85.0,17.0,1.0,9.0,76.0,18.0,53.0,67.0,0.0,0.0,0.0,32.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,14.0,3.0,5.0,46.0,14.0,0.0,0.0,13.0,0.0,8.0,6.0,1.0,0.0,0.0,1.0,3.0,4.151039905898646,8.18350208386788,4.7295977643631435,5.297692171154118,5.840823326916999,6.3216671707156,6.69216128292461,7.116191201424073,7.52631360255101,7.877219411735479 diff --git a/atomsci/ddm/test/test_datasets/scaled_descriptors/MRP3_dataset_with_rdkit_raw_descriptors.csv b/atomsci/ddm/test/test_datasets/scaled_descriptors/MRP3_dataset_with_rdkit_raw_descriptors.csv new file mode 100644 index 00000000..f296d3d9 --- /dev/null +++ b/atomsci/ddm/test/test_datasets/scaled_descriptors/MRP3_dataset_with_rdkit_raw_descriptors.csv @@ -0,0 +1,729 @@ +compound_id,rdkit_smiles,active,MaxEStateIndex,MinEStateIndex,MaxAbsEStateIndex,MinAbsEStateIndex,qed,MolWt,HeavyAtomMolWt,ExactMolWt,NumValenceElectrons,NumRadicalElectrons,MaxPartialCharge,MinPartialCharge,MaxAbsPartialCharge,MinAbsPartialCharge,FpDensityMorgan1,FpDensityMorgan2,FpDensityMorgan3,BalabanJ,BertzCT,Chi0,Chi0n,Chi0v,Chi1,Chi1n,Chi1v,Chi2n,Chi2v,Chi3n,Chi3v,Chi4n,Chi4v,HallKierAlpha,Ipc,Kappa1,Kappa2,Kappa3,LabuteASA,PEOE_VSA1,PEOE_VSA10,PEOE_VSA11,PEOE_VSA12,PEOE_VSA13,PEOE_VSA14,PEOE_VSA2,PEOE_VSA3,PEOE_VSA4,PEOE_VSA5,PEOE_VSA6,PEOE_VSA7,PEOE_VSA8,PEOE_VSA9,SMR_VSA1,SMR_VSA10,SMR_VSA2,SMR_VSA3,SMR_VSA4,SMR_VSA5,SMR_VSA6,SMR_VSA7,SMR_VSA8,SMR_VSA9,SlogP_VSA1,SlogP_VSA10,SlogP_VSA11,SlogP_VSA12,SlogP_VSA2,SlogP_VSA3,SlogP_VSA4,SlogP_VSA5,SlogP_VSA6,SlogP_VSA7,SlogP_VSA8,SlogP_VSA9,TPSA,EState_VSA1,EState_VSA10,EState_VSA11,EState_VSA2,EState_VSA3,EState_VSA4,EState_VSA5,EState_VSA6,EState_VSA7,EState_VSA8,EState_VSA9,VSA_EState1,VSA_EState10,VSA_EState2,VSA_EState3,VSA_EState4,VSA_EState5,VSA_EState6,VSA_EState7,VSA_EState8,VSA_EState9,FractionCSP3,HeavyAtomCount,NHOHCount,NOCount,NumAliphaticCarbocycles,NumAliphaticHeterocycles,NumAliphaticRings,NumAromaticCarbocycles,NumAromaticHeterocycles,NumAromaticRings,NumHAcceptors,NumHDonors,NumHeteroatoms,NumRotatableBonds,NumSaturatedCarbocycles,NumSaturatedHeterocycles,NumSaturatedRings,RingCount,MolLogP,MolMR,fr_Al_COO,fr_Al_OH,fr_Al_OH_noTert,fr_ArN,fr_Ar_COO,fr_Ar_N,fr_Ar_NH,fr_Ar_OH,fr_COO,fr_COO2,fr_C_O,fr_C_O_noCOO,fr_C_S,fr_HOCCN,fr_Imine,fr_NH0,fr_NH1,fr_NH2,fr_N_O,fr_Ndealkylation1,fr_Ndealkylation2,fr_Nhpyrrole,fr_SH,fr_aldehyde,fr_alkyl_carbamate,fr_alkyl_halide,fr_allylic_oxid,fr_amide,fr_amidine,fr_aniline,fr_aryl_methyl,fr_azide,fr_azo,fr_barbitur,fr_benzene,fr_benzodiazepine,fr_bicyclic,fr_diazo,fr_dihydropyridine,fr_epoxide,fr_ester,fr_ether,fr_furan,fr_guanido,fr_halogen,fr_hdrzine,fr_hdrzone,fr_imidazole,fr_imide,fr_isocyan,fr_isothiocyan,fr_ketone,fr_ketone_Topliss,fr_lactam,fr_lactone,fr_methoxy,fr_morpholine,fr_nitrile,fr_nitro,fr_nitro_arom,fr_nitro_arom_nonortho,fr_nitroso,fr_oxazole,fr_oxime,fr_para_hydroxylation,fr_phenol,fr_phenol_noOrthoHbond,fr_phos_acid,fr_phos_ester,fr_piperdine,fr_piperzine,fr_priamide,fr_prisulfonamd,fr_pyridine,fr_quatN,fr_sulfide,fr_sulfonamd,fr_sulfone,fr_term_acetylene,fr_tetrazole,fr_thiazole,fr_thiocyan,fr_thiophene,fr_unbrch_alkane,fr_urea +44259,CN[C@@H]1C[C@H]2O[C@@](C)([C@@H]1OC)n1c3ccccc3c3c4c(c5c6ccccc6n2c5c31)C(=O)NC4,0,14.271124816674961,-4.808715776434033,14.271124816674961,0.0605602796674225,0.4058424794083466,466.54099999999977,440.33300000000025,466.20049069200076,176,0,0.25213344334664906,-0.37479134115424917,0.37479134115424917,0.25213344334664906,1.2571428571428571,2.057142857142857,2.857142857142857,1.9227337113106175,2897.352339706236,46.1932697537345,43.01359925339142,17.01359925339142,27.413783997694534,22.901115894659362,10.006688703659448,7.9118360338050655,7.9118360338050655,6.385278158308112,6.385278158308112,5.15995467727981,5.15995467727981,-3.3899999999999992,4250119600744.744,7.09498812574709,6.428959091661394,2.1240239909656484,237.76193594014876,29.227551909759562,13.695812915214743,7.1368276722984545,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,36.25451224597977,31.47600792460151,59.80735337626875,48.191632704715374,49.99015259641363,49.51887945767573,0.0,19.75382600215946,0.0,43.748525602147446,14.013779359164834,59.46625264470035,0.0,0.0,10.619626706576751,0.0,0.0,0.0,41.15306887939868,21.695571185886294,0.0,68.24841534411276,48.33934966130636,2.8236841566564013,43.611699728324226,0.0,69.45,172.05725041697673,11.648329964922922,0.0,14.444012648871084,0.0,0.0,0.0,0.0,0.0,0.0,38.341822631490686,242.24634473232464,0.0,14.271124816674961,-4.949285454871674,-11.004735882779041,-1.5917060829599168,-14.072325397866525,-13.70619541026288,-12.069293710354776,-4.2072609432381265,0.32142857142857145,35,2,7,0,3,3,3,2,5,6,2,7,5,0,1,1,8,4.354000000000003,135.6479,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,13,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4497,COCCOC(=O)C1=C(C)NC(C)=C(C(=O)OC(C)C)C1c1cccc([N+](=O)[O-])c1,0,14.165359340610285,-4.625316043083901,14.165359340610285,0.873469781431091,0.2963419520142686,418.4459999999997,392.23800000000017,418.1740011720007,162,0,0.33650582946275304,-0.45980471186544175,0.45980471186544175,0.33650582946275304,1.3666666666666667,2.1,2.7333333333333334,3.5310974415792984,1855.880123694767,44.704224112214405,40.25216522424696,14.252165224246959,24.453571572314857,20.116175522275462,7.168961926775501,4.829083042652264,4.829083042652264,3.081025688521762,3.081025688521762,2.065798443208769,2.065798443208769,-3.1999999999999997,38076424185.62966,6.16324815853844,10.017444003939296,5.235354273192112,210.97430504886577,19.520402214688524,6.558985242916289,1.4118420783282006,0.0,5.687386274683562,11.938610575903699,10.114318268765572,9.589074368143644,0.0,0.0,12.08483741532659,32.971019960879715,48.33672973053374,51.05158373822824,64.40378026094523,17.62599685058726,0.0,5.309813353288376,0.0,39.381544181495784,20.155922944715165,62.38773227736595,0.0,0.0,5.309813353288376,5.687386274683562,0.0,0.0,43.09786259638652,23.79966322954379,10.114318268765572,73.13394155049832,46.70996251690338,1.4118420783282006,0.0,0.0,117.0,139.67000238750467,21.074151193079437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.210588861400147,34.31004742641348,218.54724093993076,0.0,38.67800629555228,11.155859928969633,-13.057535721269938,-10.333165343329709,-7.123766425654643,-4.516107202633109,-25.765860654338532,-3.8346718172267815,0.42857142857142855,30,1,9,0,1,1,1,0,1,8,1,9,13,0,0,0,2,2.9708000000000014,108.43610000000007,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +135398744,CCCc1nn(C)c2c(=O)[nH]c(-c3cc(S(=O)(=O)N4CCN(C)CC4)ccc3OCC)nc12,0,14.620521919338605,-6.7411074304032885,14.620521919338605,0.31425274697270034,0.5534046105187581,474.5869999999997,444.34700000000026,474.20492444000087,178,0,0.2768584114184537,-0.4931125653923465,0.4931125653923465,0.2768584114184537,1.303030303030303,2.1515151515151514,2.878787878787879,2.352847164121861,2504.824863583414,49.78157438140403,45.724523025319066,16.54101960624679,27.462955733547375,23.162899268595822,9.6557490018965,5.7244301043922885,7.447959446182578,3.8259046506709855,5.209227083741392,2.4926230754894037,3.4082520793428883,-2.7599999999999993,1413469595176.8489,6.464765868886578,9.238628240496574,4.397669312114405,234.98790558062865,14.61377595487978,17.090617048900093,6.9285427959444625,10.023291153407584,5.559266895052007,0.0,9.476340119217006,13.401775505276145,9.40389779959727,0.0,13.224817018625059,38.32790004189719,65.86147098563137,29.56564098583062,54.318500145393614,21.056692588640107,0.0,28.946592256769396,6.975826900282246,31.345117512767892,39.52225088046231,34.174988196962175,0.0,17.137367822980828,10.296129848852056,0.0,5.749511833283905,0.0,76.88664012156063,23.37204295501921,0.0,65.52263525970564,27.81727678257948,1.4118420783282006,22.421257424929443,0.0,113.41999999999999,159.59983571039976,13.212334168400758,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,10.082660329248245,45.900703161064655,275.1494979665441,0.0,13.785290042902187,3.366926214973827,-8.500902122169,-3.591572928617934,-6.024917066350824,-8.129910055955888,-37.81330462092334,-6.7411074304032885,0.5,33,1,10,0,1,1,1,2,3,8,1,11,11,0,1,1,4,1.6109,125.98550000000004,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,5,1,0,0,1,0,1,0,0,0,0,0,0,0,0,2,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +5339,O=C(O)c1cc(N=Nc2ccc(S(=O)(=O)Nc3ccccn3)cc2)ccc1O,1,13.174465089979435,-5.37918859000293,13.174465089979435,0.4923705208444784,0.5405882217196541,398.4,384.28800000000024,398.0684905480004,142,0,0.3390510901299124,-0.5070501087087479,0.5070501087087479,0.3390510901299124,1.1071428571428572,1.8571428571428572,2.607142857142857,2.224011547405114,1760.7168169488536,32.00518902053563,27.238344124783012,14.054840705710737,19.44660707381104,13.664148265273694,8.34050141764665,4.581486392774731,6.122441548729961,2.726995902507399,3.8603226093355336,1.5786900935191595,2.3441320355638093,-3.789999999999999,620389256.6060623,8.066347436342195,7.841843705096445,4.482929351927807,179.5385713027583,10.217616382214425,17.130826102815927,1.4118420783282006,0.0,12.885690467872852,5.969305287951849,4.715119613734132,18.196312689347966,10.228500251258795,0.0,6.042418707663295,54.38176836896965,6.172895210814761,31.348600142757316,39.92013674681582,33.185231768561586,2.8623993144652684,4.9839785209472085,10.228500251258795,4.895483475517775,4.715119613734132,72.16053377914471,0.0,5.749511833283905,4.715119613734132,17.192635327202154,5.749511833283905,0.0,31.019896832675055,10.023291153407584,0.0,25.436332793641235,81.72106601422428,1.4118420783282006,1.4311996572326342,0.0,141.31,120.70588047024212,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.430095154420428,19.35258551066589,134.65328289120237,0.0,13.865045720790866,14.748094399817479,-2.785779032301555,-3.6089448480119284,-10.625467343325381,-0.9503765315022308,0.0,-5.37918859000293,0.0,28,3,9,0,0,0,2,1,3,8,3,10,7,0,0,0,3,3.7016000000000013,100.7296,0,0,0,0,1,1,0,1,1,1,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0 +53469059,Cc1cccc(CC(=O)N2CCc3c2ccc(-c2cn(C)c4ncnc(N)c24)c3F)n1,0,16.956259007480142,-3.8614009223600663,16.956259007480142,0.15282853425483411,0.553992862124269,416.4599999999997,395.2920000000001,416.17608751200066,156,0,0.23251829301214408,-0.3830136902342233,0.3830136902342233,0.23251829301214408,1.3870967741935485,2.3225806451612905,3.161290322580645,1.8788186974090504,2212.282603088448,39.74567599654179,35.96949433647284,14.96949433647284,23.44906017810461,18.694421943486187,8.299994752486274,6.017006177287872,6.017006177287872,4.206261545479933,4.206261545479933,2.8943134593362188,2.8943134593362188,-3.8099999999999996,44892984500.45991,6.847083289017121,7.15612603471224,3.110690123632229,207.53642908484647,15.186726354368107,24.9563911097851,2.8236841566564013,5.907179729351506,0.0,0.0,9.77851570501903,14.358372089569237,0.0,0.0,6.042418707663295,37.39449184927824,67.11876409658663,22.725217565155933,38.05304895563722,28.44583021710262,0.0,19.51903521063298,6.975826900282246,19.597741919954437,17.116486390892696,65.45688878553727,0.0,11.126902983393991,10.619626706576751,15.89566410019341,0.0,0.0,31.92307462430043,24.516213887012828,12.669112958341575,42.99572004862812,42.68836046309746,2.8236841566564013,22.160304418626517,0.0,89.93,138.1000504905865,4.794537184071822,4.39041504767482,15.186726354368107,0.0,0.0,0.0,0.0,0.0,14.951935562841626,28.868096723890574,188.39648148600156,0.0,24.232392462732225,-0.7890202442849106,-8.885349150344501,-5.0942693359316165,-6.362212785366699,-9.775671085228566,-10.472351347577515,0.0,0.21739130434782608,31,2,7,0,1,1,1,3,4,6,1,8,6,0,0,0,5,3.1918200000000008,117.05040000000004,0,0,0,1,0,4,0,0,0,0,1,1,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,1,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +6918537,N#C[C@@H]1CCCN1C(=O)CNC12CC3CC(CC(O)(C3)C1)C2,0,13.884691476127486,-4.832029124149661,13.884691476127486,0.8220665578559252,0.8205033024916378,303.4059999999995,278.20599999999996,303.19467704000067,120,0,0.23711504321306437,-0.3897993565246716,0.3897993565246716,0.23711504321306437,1.5909090909090908,2.3636363636363638,3.0454545454545454,2.1978551355395175,1442.6819232781045,37.646264369941974,35.6581373674276,10.6581373674276,20.30272988824629,18.35535096292756,5.999889076963737,4.577979568756255,4.577979568756255,3.0212543381751464,3.0212543381751464,2.2192723683207953,2.2192723683207953,-1.12,1369271357.3166356,3.4538292247154585,4.938560964486305,2.3315396938412243,166.48202102613908,15.318531275246066,7.429734546677846,0.0,7.33837938658414,0.0,0.0,4.794537184071822,0.0,5.261891554738487,0.0,0.0,62.77131458136118,39.4509560601037,22.279407476602568,42.84263424542231,5.907179729351506,6.693091211971121,10.209723084138854,11.787915370726157,68.1412677423517,12.99371936863189,0.0,0.0,6.069221312792274,5.309813353288376,0.0,0.0,0.0,47.49868520889039,4.794537184071822,23.119028238256917,82.51084600255007,0.0,1.4118420783282006,0.0,0.0,76.36,109.03980529520014,10.056428738810308,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,5.1088081911072125,34.3704885274759,211.94065719651422,0.0,12.916694617661877,12.539417966968696,-9.331202247102546,-11.85586561476443,-3.2383153865885177,-35.552651413641684,-9.002068452380957,0.0,0.8823529411764706,22,2,5,4,1,5,0,0,0,4,2,5,4,4,1,5,5,1.1742799999999989,80.71350000000005,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2446,CCN(CC)CCNC(=O)c1cc(Br)c(N)cc1OC,0,13.37519061791383,-4.54804374527589,13.37519061791383,0.284589198720536,0.7437763293597593,344.25299999999964,322.07700000000006,343.0895390440006,112,0,0.25463333879046196,-0.4958423010294001,0.4958423010294001,0.25463333879046196,1.7,2.5,3.15,4.090108276862454,1164.9964289603915,33.98060947308281,31.536101840436828,11.122098379551531,18.207954103763768,15.484636245200155,5.4359937282576345,2.918355007510889,3.711353277068241,1.7604300248533138,2.334248963308984,0.9432841159761232,1.2406584670601302,-1.27,84564906.31094265,3.5491669476203653,8.114324746894443,4.383573226136674,159.22666242109275,20.66630301366518,5.749511833283905,4.235526234984602,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,13.703784234591359,34.96608197424453,45.64534654085383,22.19671384377112,39.81133894009066,27.524509901984416,0.0,10.209723084138854,0.0,13.703784234591359,38.74510817187264,22.121008422855997,0.0,5.749511833283905,15.766393282814697,5.687386274683562,5.749511833283905,15.929943897949348,43.832480656348345,0.0,0.0,50.106185477594394,16.557556931159002,4.235526234984602,0.0,0.0,67.59,96.40398477505154,4.794537184071822,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,20.6668068517494,30.279938802218773,173.60977009587853,2.705181151145031,12.232595342901979,-1.0181963340891906,-2.5891446295361122,-3.6036702412446466,-2.4358530264595366,0.0,-25.734046057036903,-3.4999696348925244,0.5,20,3,5,0,0,0,1,0,1,4,2,6,11,0,0,0,1,2.1115,85.22760000000004,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5453,S=P(N1CC1)(N1CC1)N1CC1,0,7.659652777777778,-4.247685185185184,7.659652777777778,0.38259259259259215,0.46137951425618995,189.2240000000001,177.128,189.04895501399997,62,0,0.14536019373248318,-0.2491167483671626,0.2491167483671626,0.14536019373248318,0.9090909090909091,1.1818181818181819,1.3636363636363635,2.145922376273905,519.1193059229371,18.232050807568875,17.197102672463693,6.9080264443913375,9.848076211353316,8.87421497233493,5.534808459015373,2.1195077214531985,5.815755830279686,1.417015485503236,5.049919908929674,0.726212841064102,2.9134854460272566,0.5299999999999999,60310.67386218912,1.961482419935901,2.06312771321797,1.0109135336823056,88.97416060795405,0.0,6.489981155977373,0.0,0.0,0.0,0.0,0.0,14.011248569763898,0.0,0.0,0.0,11.806856088638648,55.430260779938344,0.0,16.44910267404264,18.29683724461602,0.0,14.011248569763898,0.0,0.0,38.981158105895666,0.0,0.0,0.0,0.0,0.0,0.0,6.489981155977373,52.99240667565956,11.806856088638648,0.0,16.44910267404264,0.0,0.0,0.0,0.0,9.03,45.471139261873034,0.0,0.0,0.0,14.011248569763898,0.0,0.0,0.0,0.0,0.0,28.255958762681285,93.06361111111113,5.203750000000001,0.0,0.0,0.0,0.0,0.0,0.0,-20.29513888888888,0.0,1.0,11,0,3,0,3,3,0,0,0,1,0,5,3,0,3,3,3,0.15770000000000017,49.00400000000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2153,Cn1c(=O)c2[nH]cnc2n(C)c1=O,0,12.051864134542704,-3.234308390022677,12.051864134542704,0.013078703703703898,0.5624722357827983,180.16700000000006,172.10299999999998,180.064725496,68,0,0.3317032473983393,-0.33872132070702005,0.33872132070702005,0.3317032473983393,1.6153846153846154,2.3846153846153846,3.076923076923077,3.2106588475634954,837.878706697762,16.325908934703556,14.105350962927558,6.105350962927558,9.369914593542521,7.091529863463611,3.1443162679636534,2.254367536743413,2.254367536743413,1.529552855894278,1.529552855894278,0.9080432031495274,0.9080432031495274,-1.8500000000000003,23283.64135850519,2.8291557118140016,2.317238170551303,0.8507940839640471,83.75186405073823,4.977003270229252,6.887459273786482,7.059019299095929,0.0,5.559266895052008,5.689743398203474,13.928736479654532,9.77851570501903,0.0,0.0,0.0,0.0,22.17620513758581,6.303371713966227,11.007151971519741,11.16387793838399,0.0,19.09518108675917,13.951653800564491,0.0,0.0,27.14145637536535,0.0,0.0,11.24901029325548,0.0,0.0,0.0,19.09518108675917,13.951653800564491,0.0,9.59530989319154,15.89244608210987,1.4118420783282006,11.16387793838399,0.0,72.68,42.66791374617019,9.589074368143644,0.0,14.111202565811961,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,11.007151971519741,57.86995181405894,0.0,27.643206727135297,0.0,-4.514398148148148,0.0,0.0,-0.8029705215419496,-6.362456538170825,0.0,0.2857142857142857,13,1,6,0,0,0,0,2,2,5,1,6,2,0,0,0,2,-1.0397000000000005,46.57570000000001,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1983,CC(=O)Nc1ccc(O)cc1,0,11.465040233686066,-3.1571375425170087,11.465040233686066,0.20687263794406663,0.5950261967780849,151.16500000000008,142.093,151.063328528,58,0,0.2930920966378401,-0.5079643157925783,0.5079643157925783,0.2930920966378401,1.8181818181818181,2.5454545454545454,3.090909090909091,3.5145147197531204,526.854133465458,15.825908934703556,14.263710176427683,5.263710176427684,9.034798488049647,6.960923771927643,2.605461885963821,1.594686906265383,1.594686906265383,0.8022141162622034,0.8022141162622034,0.45187968107923093,0.45187968107923093,-1.5099999999999998,13543.798200680048,2.0008188514043375,3.0531381005525,2.292303972882069,77.45636677601388,10.418621544395588,5.749511833283905,1.4118420783282006,5.907179729351506,1.4311996572326342,0.0,4.794537184071822,0.0,0.0,0.0,0.0,24.16967483065318,16.6515540604899,5.483034224680881,20.910497346698772,11.594566004035068,1.4311996572326342,0.0,0.0,6.851892117295679,5.309813353288376,24.16967483065318,0.0,5.749511833283905,5.309813353288376,5.687386274683562,5.749511833283905,0.0,12.447187577691352,4.794537184071822,0.0,16.447202010487217,24.16967483065318,1.4118420783282006,0.0,0.0,49.33,48.36564478526783,4.794537184071822,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,12.438351628752375,64.78879739858905,0.0,11.465040233686066,3.7522506849962203,-0.8176620370370362,-2.3506254724111857,-3.2639965986394532,0.0,-3.1571375425170087,0.0,0.125,11,2,3,0,0,0,1,0,1,2,2,3,3,0,0,0,1,1.3505999999999998,42.41050000000002,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5281006,C/C=C/C1=C(C(=O)O)N2C(=O)[C@@H](NC(=O)[C@H](N)c3ccc(O)cc3)[C@H]2SC1,0,13.671671757558752,-3.840884288237284,13.671671757558752,0.11589573889447591,0.5450750848987173,389.43299999999977,370.2810000000001,389.1045417080005,142,0,0.35246495754196355,-0.5079666252286738,0.5079666252286738,0.35246495754196355,1.7407407407407407,2.5555555555555554,3.2222222222222223,2.308468736195165,1572.9528267819755,35.858924650593664,31.791130529283052,13.60762711021078,20.758754564854716,15.928647170550997,7.587006384051121,4.729197451004473,5.524144072535322,3.157151000309119,4.032609735059057,2.016208719493678,2.8577648682208774,-2.7799999999999994,1800967579.9089897,6.3861255670591515,7.453069069184643,3.428942242947475,186.30752041769983,21.247146711229075,31.655944691865855,1.4118420783282006,5.907179729351506,8.769579043816774,5.969305287951849,14.48898409899412,4.794537184071822,0.0,11.761884949391115,24.18898090739772,30.07328555438853,12.558749666001258,12.33682700553198,48.02737395579759,29.545549696045974,2.8623993144652684,10.209723084138854,5.719716975726273,24.237601506165397,5.704956885150159,53.10741365754641,0.0,5.749511833283905,11.029530329014648,0.0,5.749511833283905,11.761884949391115,51.40516432262263,14.383611552215466,0.0,37.62385586372541,47.54396216584941,4.235526234984602,1.4311996572326342,0.0,132.96,129.3745639072065,14.383611552215466,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,10.217616382214425,26.28854533583295,150.57463137276952,-0.46009780082832097,39.705242911056246,3.635892742950321,-8.454247406869925,-7.262813881469221,-15.618487473091553,0.0,-3.3701204645170657,0.0,0.2777777777777778,27,5,8,0,2,2,1,0,1,7,4,9,8,0,1,1,3,0.7067000000000008,99.53370000000001,1,0,0,0,0,0,0,1,1,1,3,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +65348,COc1cccc2c1C(=O)c1c(O)c3c(c(O)c1C2=O)C[C@@](O)(C(=O)CO)C[C@@H]3O[C@H]1C[C@H](N)[C@@H](O)[C@H](C)O1,0,14.779065499124776,-5.160821523487471,14.779065499124776,1.2746937864466696,0.23526258168565614,543.5250000000015,514.2930000000003,543.1740607480007,208,0,0.2931482616936033,-0.5068479547044316,0.5068479547044316,0.2931482616936033,1.358974358974359,2.230769230769231,2.948717948717949,2.14600340663746,2503.987618914383,52.89445855652639,47.43794479060245,18.43794479060245,30.484217061894913,24.01701347431625,10.08134483099702,7.687616091714387,7.687616091714387,5.52055276729438,5.52055276729438,3.8320507041844,3.8320507041844,-3.39,32624766205746.83,9.061504983045493,9.662462759118538,4.111772825118512,263.3750060875467,45.47434679266248,32.2322557104081,17.832568261266776,10.076843918062842,2.8623993144652684,0.0,14.383611552215466,0.0,0.0,0.0,12.08483741532659,12.894310824958975,55.534607209131,58.41746368886621,87.1186137615529,17.34973483909482,7.155998286163171,0.0,5.719716975726273,62.095742550004,13.596937701798877,51.50796507317185,0.0,17.248535499851716,10.456579929526322,0.0,17.248535499851716,0.0,93.69176948436316,20.6411879930013,0.0,98.8042315009748,18.127256122989884,2.8236841566564013,0.0,0.0,206.07,167.51863263964762,21.237404333066564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.54404095553606,47.493166759113485,256.6570832889214,0.0,43.676867733444695,21.002370896513156,-16.95651495939894,-12.468303229563775,-8.895563157306263,-34.39295226587954,-8.947322339748425,-3.6756659669822787,0.4444444444444444,39,7,12,2,1,3,2,0,2,12,6,12,13,0,1,1,5,0.0012999999999993017,131.75439999999995,0,3,0,0,0,0,0,2,0,0,3,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,1,0,0,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5215,Nc1ccc(S(=O)(=O)Nc2ncccn2)cc1,0,12.642470710506423,-5.096064814814811,12.642470710506423,0.20393827993395064,0.7871395577774678,250.28300000000007,240.20299999999997,250.05244656,88,0,0.2637233954888739,-0.3987277171274398,0.3987277171274398,0.2637233954888739,1.2941176470588236,1.9411764705882353,2.5294117647058822,2.7396722139425953,979.1173846974036,20.842416792648606,18.013599253391423,8.830095834319149,12.31717945627467,8.90331323740007,5.5017357797008355,2.6162979712275543,4.157253127182787,1.4722548326266585,2.5959441046300356,0.8232711861932731,1.5712067608298383,-2.15,437138.62970778765,4.262897650109057,4.380095906611953,2.6977263506132765,112.80219695888297,5.719716975726273,0.0,4.235526234984602,5.948339280986494,10.023291153407584,0.0,0.0,23.100873639957484,0.0,0.0,0.0,30.212093538316473,18.033176696313085,14.490793368709314,22.24863311250508,21.65901670907764,0.0,9.967957041894417,0.0,4.895483475517775,10.434836589460405,42.557883959946,0.0,0.0,10.434836589460405,11.635725555670057,0.0,0.0,18.385754026223353,10.023291153407584,0.0,9.59530989319154,47.45336743546377,4.235526234984602,0.0,0.0,97.97,69.11238414454141,8.417796984328938,0.0,10.434836589460405,0.0,0.0,0.0,0.0,0.0,9.967957041894417,13.830836128176141,99.8861527271096,0.0,5.369122574955909,0.0,-0.9982174038883989,-0.9957895040732343,-4.927068354992235,-1.654801890963507,0.0,-5.096064814814811,0.0,17,3,6,0,0,0,1,1,2,5,2,7,4,0,0,0,2,0.8596000000000001,63.69490000000001,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +46846503,CN(C(=O)CN1C(=O)COc2cc(Cl)c(Cl)cc21)[C@@H](CN1CCCC1)c1ccc(-c2cccc(C(N)=O)c2)cc1,0,15.135108260313412,-5.158079954935419,15.135108260313412,0.6905140778699219,0.4133521164949404,581.5000000000015,551.2600000000003,580.164410800001,208,0,0.26500770275600355,-0.48150995095228066,0.48150995095228066,0.26500770275600355,1.175,1.925,2.65,2.0443509756032223,2749.5166551857837,54.640863510927204,49.177776489873736,20.689634381910647,31.174832468634108,25.279080367668584,11.140582122687128,7.227328237573359,7.983257183591813,4.72673455194014,5.390413310663654,2.9631273143504213,3.232943101081985,-3.5899999999999985,67338976248929.48,9.208817024823123,11.878898383903596,5.940424761135498,285.00249855786177,20.256399391227276,12.24637151759985,9.38266939957269,11.814359458703011,5.907179729351506,0.0,19.28352128306594,0.0,0.0,0.0,59.4563920264448,60.557179769371515,42.89841801417136,42.31192371306918,60.32539823543813,46.61080524320311,0.0,9.799819461700956,5.719716975726273,18.763742271008404,44.42216061131279,81.5963566875096,0.0,16.876414816677897,15.3564896603768,5.687386274683562,5.749511833283905,23.20187978046503,67.04360953021778,9.589074368143644,0.0,73.06642201124042,60.42418707663295,12.868950784139054,11.126902983393991,0.0,96.18,200.58713628667408,13.701350036654302,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.03139079517705,262.13006523494465,12.011724571865528,38.60079627453602,-1.9122854114268386,-8.373001781932915,-8.594170678666202,-20.628838962859312,-8.60277963789314,-27.659287386345568,0.0,0.3,40,2,8,0,2,2,3,0,3,5,1,10,9,0,1,1,5,4.780200000000003,155.8908999999997,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,3,0,1,0,1,1,0,0,0,0,0,0,3,0,1,0,0,0,0,3,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +54897,CCCN(CCC)C(=O)Cc1c(-c2ccc(Cl)cc2)nc2ccc(Cl)cn12,0,14.39920057529184,-4.660769170256531,14.39920057529184,0.21903793461829202,0.5216260598644259,404.3409999999997,381.15700000000015,403.1218177160007,142,0,0.2281049142524282,-0.3423870824728181,0.3423870824728181,0.2281049142524282,1.1481481481481481,1.8148148148148149,2.4814814814814814,2.6831379833939306,1829.8305395571901,39.444711088220565,36.00581802298219,14.517675915019101,22.078033144536573,18.37094300024099,7.626871946259446,4.571971419417543,5.327900365435997,2.966560103590249,3.334548883820021,1.9537883288614446,2.1800404317127575,-2.0399999999999996,8203304709.339188,5.740812319992103,8.76552986283604,4.449309804346808,201.58805234476284,9.300604337112272,5.647177220767728,0.0,5.907179729351506,0.0,0.0,4.794537184071822,4.9839785209472085,0.0,0.0,48.990501430382984,36.91552463331194,51.68483628360854,32.378724097959164,36.32198397598689,34.75623673058426,0.0,14.28458285805948,0.0,32.8225589385795,12.99371936863189,58.16660207912564,0.0,11.257379486545457,0.0,0.0,0.0,23.20187978046503,33.18548195604287,11.167462085401201,0.0,63.67100882401371,42.427407456794526,10.045266627482652,16.904556707313183,0.0,37.61,131.69452655385223,4.794537184071822,0.0,4.400694606261793,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,54.72932657238014,187.04319563705076,11.89868174223686,17.06933203682707,-1.6620759444495072,-4.540303839128244,-2.7379428767391705,-5.953596469184039,-14.248356334892312,-17.56337839616587,0.0,0.3333333333333333,27,0,4,0,0,0,1,2,3,3,0,6,9,0,0,0,3,5.4992000000000045,111.51400000000004,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +82146,C=C(c1ccc(C(=O)O)cc1)c1cc2c(cc1C)C(C)(C)CCC2(C)C,0,12.188968173039656,-4.759843253107194,12.188968173039656,1.2150363443191299,0.7270145310201614,348.48599999999954,320.26200000000006,348.2089301360008,136,0,0.33517896364753424,-0.4776392465898037,0.4776392465898037,0.33517896364753424,1.1538461538461537,1.7692307692307692,2.3076923076923075,3.1287786856741153,1872.6709019424657,42.867360819030935,40.816496580927726,12.816496580927726,23.760866231474818,20.816496580927726,6.908248290463863,5.4124574785652655,5.4124574785652655,3.5166241452319316,3.5166241452319316,2.227062072615966,2.227062072615966,-2.349999999999999,25551714435.31832,4.215296279343265,6.120036273813249,3.091132918539254,195.55396862767248,5.1088081911072125,0.0,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,0.0,58.10828226183775,75.90292226262883,26.044412567234176,16.529519941058755,46.913826391775004,11.542409818021117,1.4311996572326342,0.0,0.0,57.835291327930705,0.0,76.16626015816361,0.0,0.0,0.0,0.0,0.0,0.0,11.078113479059063,10.82998093879356,6.851892117295679,115.33914542269109,42.785551207981634,0.0,7.004304187301901,0.0,37.3,145.54396130411544,6.165295740242042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,37.07092211765836,236.17038179714598,0.0,12.188968173039656,3.7230480271297095,-20.829862106499746,-1.768566719457844,-9.569141895879357,-9.494000800273783,-23.670826475204606,0.0,0.375,26,1,2,1,0,1,2,0,2,2,1,2,8,0,0,0,3,6.103720000000005,108.00230000000006,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3519,NC(N)=NC(=O)Cc1c(Cl)cccc1Cl,0,12.0607385361552,-3.0925231481481488,12.0607385361552,0.3512608129671624,0.6097254058343433,246.09700000000004,237.02499999999995,245.012267268,80,0,0.252884830617383,-0.36975767690897127,0.36975767690897127,0.252884830617383,1.5333333333333334,2.1333333333333333,2.6666666666666665,3.5637772877271505,670.9896678838076,18.980609473082808,16.00581802298219,8.5176759150191,10.834016208680278,7.7653701912409065,4.232444755259529,2.2199204362926994,2.9758493823111545,1.2169513363986564,1.7838980459124978,0.6978022347462143,1.1241327323602777,-1.2599999999999993,79270.2767542628,4.312654511362819,4.999959064613898,3.416335285841418,109.74634892684313,11.439433951452546,0.0,11.606922882056638,0.0,5.907179729351506,0.0,4.794537184071822,0.0,4.992404732635669,0.0,29.24429848812833,17.648288907023584,12.786783739823091,10.485200569840039,17.295698278235722,35.06861407856037,0.0,0.0,16.431838684088216,6.372924901329379,0.0,33.73597424216953,0.0,0.0,11.439433951452546,0.0,0.0,23.20187978046503,11.866734298095341,11.167462085401201,0.0,12.417244272548094,23.119660855625554,15.692634940795456,0.0,0.0,81.47,51.975633441594255,4.794537184071822,0.0,11.439433951452546,0.0,0.0,0.0,0.0,0.0,4.992404732635669,35.70304087462893,65.96360656196636,11.562058907925307,15.066301335348953,-1.336470143612999,-1.4729329386075423,-2.7942073465188537,-2.090277672797513,-3.0925231481481488,0.0,0.0,0.1111111111111111,15,4,4,0,0,0,1,0,1,1,2,6,2,0,0,0,1,1.3359,60.98280000000001,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +42884,CC(C)N1CCC(N(C(=O)Cc2ccccc2)c2ccc(Cl)cc2)CC1,0,14.652792068216167,-4.88495075113379,14.652792068216167,0.894738441672966,0.7550844098925956,370.9239999999996,343.7080000000001,370.1811911640007,138,0,0.23116220353812983,-0.30898970902929346,0.30898970902929346,0.23116220353812983,1.3461538461538463,2.0,2.6153846153846154,2.732828829941506,1766.4976333571892,42.16025403784439,39.68063995447301,13.436568900491462,23.24957043532143,20.234747168236417,7.112711641245647,4.434382385162951,4.8123468581721776,2.759351733415187,2.9483339699198003,1.6931917290703273,1.787682847322634,-1.8399999999999994,20208952713.520264,4.585683697751326,8.698036455478109,4.656605882936001,199.0507464878609,9.799819461700956,0.0,0.0,5.907179729351506,0.0,0.0,4.794537184071822,0.0,0.0,0.0,41.81303342854899,56.18276035960029,59.042419348649865,20.080510463031576,41.80501820066778,23.195505894267583,0.0,4.899909730850478,0.0,44.858343875278784,17.893629099482368,64.96785317440796,0.0,0.0,4.899909730850478,5.687386274683562,0.0,11.600939890232516,35.83659376553316,11.167462085401201,0.0,69.0235665455431,54.38176836896965,5.022633313741326,0.0,0.0,23.55,144.21430188405472,6.165295740242042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.24066235065827,225.71759915179146,5.848706272965259,12.608771431265335,-1.0234697146254688,-3.386020487476867,-2.675247622197027,-21.91418220152728,-13.928219259154286,-18.220159793263377,0.0,0.4090909090909091,26,0,3,0,1,1,2,0,2,2,0,4,7,0,1,1,3,4.788500000000004,108.81500000000005,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2187,CC(C)(C#N)c1cc(Cn2cncn2)cc(C(C)(C)C#N)c1,0,10.001343848885336,-3.9852647733476125,10.001343848885336,0.03235260770975046,0.8678513137549793,293.3739999999996,274.222,293.16404560800055,112,0,0.13726623264569135,-0.24855561647130914,0.24855561647130914,0.13726623264569135,1.1818181818181819,1.7727272727272727,2.1818181818181817,3.5736815593285516,1338.4745773043794,32.524579547452824,29.736067977499793,10.736067977499792,18.12909872307581,15.015247584249854,5.515247584249854,4.059016994374948,4.059016994374948,2.392558014037444,2.392558014037444,1.3265208763999663,1.3265208763999663,-2.66,110770065.98948894,4.203261610161978,5.614350648689528,3.1495534314097644,157.07945665916364,0.0,15.348260540272893,0.0,0.0,0.0,0.0,0.0,9.665781456092393,15.62246491777801,0.0,18.127256122989884,44.0979229442737,16.44910267404264,36.319076029545165,26.044412567234176,0.0,10.523783109476973,14.76446326439343,0.0,44.73440909229222,0.0,47.424354026013326,0.0,12.138442625584547,0.0,0.0,0.0,0.0,14.76446326439343,17.326840623109504,22.66222573506152,70.14233551150791,30.733999550922338,0.0,0.0,0.0,78.28999999999999,92.15876311830556,10.523783109476973,0.0,4.681802935145185,0.0,12.138442625584547,0.0,0.0,0.0,10.082660329248245,26.044412567234176,153.02014642816366,0.0,3.2324997637944066,23.306373449849282,-12.83128377739985,0.0,-3.0087445935164188,-2.101451168430335,-19.534206769127408,0.0,0.4117647058823529,22,0,5,0,0,0,1,1,2,5,0,5,8,0,0,0,2,2.9287600000000014,82.84400000000004,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23685176,CC1(C)S[C@@H]2[C@H](NC(=O)[C@H](NC(=O)N3CCNC3=O)c3ccccc3)C(=O)N2[C@H]1C(=O)[O-],0,14.340151053476944,-4.531000015747042,14.340151053476944,0.6362201396220168,0.4650533503478492,460.49199999999985,438.31600000000026,460.12962800391057,170,0,0.32601894311230983,-0.5478320702941469,0.5478320702941469,0.32601894311230983,1.46875,2.1875,2.78125,2.0303585804169186,1873.1476082072438,42.444711088220565,37.09380601074683,15.910302591674558,23.926761895789443,18.90791552135508,8.882771315782927,5.826969614799507,7.030164526794216,3.8676332863999536,4.936441186683385,2.550566822344818,3.6069994539324233,-3.28,52291204716.01009,7.6471371536257875,8.005784463793704,3.636332817541784,218.5008283298796,30.73041436962813,17.385709388869714,4.235526234984602,11.814359458703011,0.0,12.062229024676144,9.589074368143644,14.48898409899412,0.0,11.761884949391115,30.212093538316473,19.267235726288355,25.965293158870765,29.80705898651435,59.359152117418645,41.607778720722116,0.0,25.72925952156608,0.0,41.85440854502827,12.99371936863189,35.77554503001347,0.0,0.0,21.035967454705833,9.589074368143644,0.0,11.761884949391115,74.77216444375112,14.383611552215466,0.0,51.329540761872224,30.212093538316473,4.235526234984602,0.0,0.0,150.98,157.96071118596188,29.079213315199816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.279938802218776,174.78750740306265,-0.9104602890028579,65.30720749392411,5.461982499233661,-1.8136247323003276,-8.097662724649677,-25.261956082662934,0.0,-16.056326900937975,0.0,0.45,32,3,11,0,3,3,1,0,1,7,3,12,7,0,3,3,4,-1.2404999999999977,110.84910000000004,1,0,0,0,0,0,0,0,1,1,5,5,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2 +2083,CC(C)(C)NCC(O)c1ccc(O)c(CO)c1,0,8.482520786092214,-4.4152184901738485,8.482520786092214,1.1515462018140599,0.6389509580864461,239.31500000000017,218.14699999999996,239.152143532,96,0,0.29310996265754763,-0.5075837293484645,0.5075837293484645,0.29310996265754763,1.7058823529411764,2.588235294117647,3.235294117647059,4.355367013431198,995.3535785740778,30.662772227887025,29.171958466891546,8.171958466891548,16.70077703034781,14.2315444980873,4.059586031195753,2.8193273574547764,2.8193273574547764,1.4323692978021179,1.4323692978021179,0.7707033137991481,0.7707033137991481,-1.1,20184949.260042515,2.5924890387115256,5.489653133998208,4.340801106423208,131.74100927061338,20.63623792661001,7.161353911612106,0.0,2.8623993144652684,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,6.042418707663295,38.20396525891062,32.6775805462687,20.863554606887593,40.04116210654359,0.0,4.293598971697903,5.309813353288376,0.0,38.73360487413666,6.496859684315945,29.254159106383874,0.0,5.749511833283905,5.309813353288376,0.0,5.749511833283905,0.0,31.655808481718832,6.558985242916289,0.0,61.065492817124806,18.127256122989884,1.4118420783282006,0.0,0.0,72.72,85.54394885140877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,29.008336504919846,163.14234983766235,0.0,0.0,10.752097126959137,-7.401113355064248,-1.2236640605316202,-4.3819530659486,-4.125862150415724,-20.511854332661297,0.0,0.5384615384615384,17,4,4,0,0,0,1,0,1,4,4,4,7,0,0,0,1,1.3059999999999998,66.74510000000004,0,2,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5280723,CCCCC[C@H](O)/C=C/[C@H]1[C@H](O)CC(=O)[C@@H]1CCCCCCC(=O)O,1,13.865799639312169,-5.371963511701744,13.865799639312169,2.5898636259336536,0.34761269542578893,354.4869999999994,320.21500000000003,354.2406241880009,144,0,0.30283955653220485,-0.4812303897852169,0.4812303897852169,0.30283955653220485,1.52,2.4,3.16,4.668624059895137,1697.644136298671,48.43072142031815,46.04124145231931,12.041241452319316,25.322785498275955,22.745365597551245,6.020620726159658,3.6498299142610597,3.6498299142610597,2.072810363079829,2.072810363079829,1.2020195511812306,1.2020195511812306,-1.2,107990441759.6178,3.703317728475474,12.201558488356381,8.634319526627221,198.71247025241445,15.326424573321638,5.783244946364939,0.0,2.8623993144652684,1.4311996572326342,5.969305287951849,9.589074368143644,0.0,0.0,0.0,57.19358501734308,19.118774703988137,61.544246189980925,17.643070278580854,67.40901418274215,11.75255023431679,4.293598971697903,0.0,11.787915370726157,89.11410208581883,0.0,12.104143492071133,0.0,0.0,0.0,0.0,0.0,0.0,42.10141017600367,9.589074368143644,11.787915370726157,119.44758127319555,12.104143492071133,0.0,1.4311996572326342,0.0,94.83,124.75871118293294,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,46.78711421297475,273.9050539384978,0.0,25.783040202392517,10.936588445855278,0.0,-16.0879295635818,-5.606990284899401,-63.589825190954485,-4.1732708806433525,0.0,0.8,25,3,5,1,0,1,0,0,0,5,3,5,16,1,0,1,1,3.475100000000002,97.23740000000005,1,2,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4171,COCCc1ccc(OCC(O)CNC(C)C)cc1,0,8.205974264131731,-4.429685651759674,8.205974264131731,1.164254740243682,0.7135696186852984,267.36899999999986,242.16899999999995,267.1834436600003,108,0,0.210690406965623,-0.4908491126928612,0.4908491126928612,0.210690406965623,1.5789473684210527,2.4210526315789473,3.1052631578947367,3.9066813110180516,1176.1065591266843,35.662772227887025,34.171958466891546,9.171958466891548,19.032345383756073,16.823296207623436,4.467834321659616,2.6387101764276846,2.6387101764276846,1.3441653013392727,1.3441653013392727,0.7179846104882539,0.7179846104882539,-1.1,193153445.40703702,2.7778696051423317,8.908256708575717,7.1546480807002135,150.55605793844506,19.892347451995686,19.800357181478383,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,0.0,25.78862164991795,24.021213808352964,34.6310487294206,23.008087916958925,47.521822968950595,0.0,1.4311996572326342,5.309813353288376,0.0,32.174619631220374,26.65278262903111,29.733126322350174,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,45.290700972670585,11.10978785512943,0.0,50.79468251820345,24.16967483065318,1.4118420783282006,0.0,0.0,50.72,99.61985376917391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,39.107351481275956,201.79956315755996,0.0,0.0,2.6600320881437334,-1.4531973883383078,-1.5632999102418743,-10.329183938422757,-8.153204030136166,-20.65725544246567,-3.5534545360988474,0.6,19,2,4,0,0,0,1,0,1,4,2,4,13,0,0,0,1,1.6132,76.66250000000005,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4495,CS(=O)(=O)Nc1ccc([N+](=O)[O-])cc1Oc1ccccc1,0,12.259395464210577,-5.611032559628787,12.259395464210577,0.7849390589569163,0.6760870934103842,308.3149999999998,296.21900000000005,308.04669248400035,110,0,0.2728146458076149,-0.45489878610205553,0.45489878610205553,0.2728146458076149,1.3333333333333333,2.0476190476190474,2.6666666666666665,3.010314782452348,1251.2355762303341,25.790010549841313,21.843916933783095,10.660413514710822,14.872691343275092,10.887855517534211,6.380705250834893,3.280987176410521,4.413694041901891,1.821539059133946,2.2444715363865155,1.1143768480791976,1.483290032039235,-2.6099999999999994,5276671.130554872,5.644146292402328,5.7959776764561335,4.180172369295591,137.84830110223947,4.736862953800049,5.749511833283905,7.161353911612106,10.023291153407584,5.687386274683562,0.0,14.829437882499704,8.417796984328938,0.0,0.0,18.127256122989884,18.127256122989884,10.154694376173955,33.803108581642746,34.56815718314728,21.398063702774706,0.0,0.0,0.0,0.0,10.89904371485059,58.45366793007193,0.0,11.49902366656781,9.45198256753418,11.374772549367124,11.49902366656781,0.0,19.525032134263068,10.023291153407584,10.114318268765572,15.078344117872419,48.33934966130636,1.4118420783282006,0.0,0.0,98.54,97.05879179431716,18.53211525309451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.227049150000667,119.9608991483671,0.0,10.024846748119206,11.322624827715241,-2.815430891492399,-2.411189058956915,-8.930386975037948,-3.873664572418858,0.0,-5.611032559628787,0.07692307692307693,21,1,7,0,0,0,2,0,2,5,1,8,6,0,0,0,2,2.7586000000000013,78.07890000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +60795,O=C1CCc2ccc(OCCCCN3CCN(c4cccc(Cl)c4Cl)CC3)cc2N1,0,12.601520202262574,-4.769205028530054,12.601520202262574,0.4086101232232995,0.6149801508040519,448.39399999999966,421.17800000000017,447.1480324640008,160,0,0.22421509242340937,-0.49351975013808286,0.49351975013808286,0.22421509242340937,1.1666666666666667,2.0,2.8333333333333335,1.9235279447478544,2000.0952873952751,44.944711088220565,41.41406631344606,15.925924205482966,25.056030315117088,21.22640488620481,8.53512023672331,5.130219709881407,5.886148655899861,3.2364558220698423,3.984650006266207,1.9731556128371914,2.2889109875510827,-1.949999999999999,146258334228.45285,6.090640363938243,9.90458795852269,5.203217187725054,225.43458772096324,14.946586037938904,5.749511833283905,1.4118420783282006,5.907179729351506,0.0,0.0,9.694446914922299,0.0,0.0,0.0,35.286717195791624,49.30634200299097,63.280788407323136,38.74074081912516,46.582964676625814,40.48383205918366,0.0,4.899909730850478,0.0,25.491699605317518,49.25300674863487,51.86323036515941,0.0,5.749511833283905,14.946586037938904,11.374772549367124,5.749511833283905,23.20187978046503,49.850373124697995,11.167462085401201,0.0,60.32194865611092,36.25451224597977,11.457108705810853,0.0,0.0,44.81,154.53931056196487,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.99030727301908,231.26616869167742,12.043570748031375,11.092379687085579,-2.354478138484183,-3.813639444959694,-3.547121886782629,-7.763430926634598,-16.499488194273653,-26.535071646770707,0.0,0.43478260869565216,30,1,5,0,2,2,2,0,2,4,1,7,7,0,1,1,4,4.859300000000005,123.23670000000006,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,2,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +150311,O=C1[C@H](CC[C@H](O)c2ccc(F)cc2)[C@@H](c2ccc(O)cc2)N1c1ccc(F)cc1,0,14.537378580586918,-4.595598899281939,14.537378580586918,0.26355350861393445,0.5702138618789355,409.43199999999973,388.2640000000001,409.1489499720006,154,0,0.2930920706136358,-0.5079666233885607,0.5079666233885607,0.2930920706136358,1.0666666666666667,1.7,2.3,2.205974872637756,1945.9176422017197,39.461218946165616,35.42788741291,14.427887412910001,23.157636486320545,18.227653882882684,7.911157301954959,5.4989891200065,5.4989891200065,3.6437171734529263,3.6437171734529263,2.350734103039578,2.350734103039578,-3.2499999999999987,26424905231.24857,6.886620641122085,8.24084081632653,3.910448871693423,202.2480281647456,15.117526113064903,17.383953515375694,0.0,7.33837938658414,1.4311996572326342,0.0,4.794537184071822,8.78083009534964,0.0,0.0,24.16967483065318,72.21210244735911,12.541179055534661,37.1824879670458,49.837396228870105,11.594566004035068,2.8623993144652684,0.0,5.893957685363079,24.84376029795839,4.899909730850478,95.27036915744534,0.0,5.749511833283905,4.899909730850478,14.468216370033202,5.749511833283905,0.0,18.987195426031203,4.794537184071822,17.528399367454867,62.01507584858662,72.50902449195954,0.0,0.0,0.0,60.77,143.3521649780858,16.316884391761903,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,10.217616382214425,26.165294769359008,203.48219606475686,0.0,13.894202699190068,8.260159966036433,-4.539463003827181,-11.227395950925967,-21.604110294998787,-13.34892281356478,0.0,0.0,0.20833333333333334,30,2,4,0,1,1,3,0,3,3,2,6,8,0,1,1,4,4.888300000000004,108.81760000000004,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9651,COc1ccc2c3c1O[C@H]1C[C@@H](O)C=C[C@@]31CCN(C)C2,0,9.208663076341647,-4.228842474489798,9.208663076341647,0.6449576010959936,0.8005242690101381,287.3589999999996,266.191,287.1521435320006,112,0,0.21091307696358197,-0.49285727245768285,0.49285727245768285,0.21091307696358197,1.7142857142857142,2.7142857142857144,3.5714285714285716,2.4597097389084555,1399.7518297672211,32.81747276626628,31.171958466891546,10.171958466891548,18.497723886149622,16.09968940987346,5.691441119409595,4.329637720534604,4.329637720534604,3.1755061799648385,3.1755061799648385,2.3220610728094675,2.3220610728094675,-1.52,249793003.9143576,3.518955829071346,4.485569614461171,1.7548240767209549,154.1108785281521,19.482443829557788,6.080018026949988,11.49902366656781,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,0.0,18.146562199734426,31.451481685287863,33.51158019521474,30.869787960761332,41.997705222111726,0.0,1.4311996572326342,4.899909730850478,0.0,36.81773601027146,20.51063904348078,35.31588389079171,0.0,11.49902366656781,9.473725907600098,0.0,11.49902366656781,0.0,44.11059267657108,11.911850153712724,0.0,51.28792390945719,24.18898090739772,0.0,0.0,0.0,41.93,109.04319234196225,1.3707585561702202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,36.94933813206692,185.47710190171745,0.0,-0.6449576010959936,4.1028629298941794,-6.60723544973545,-2.6714162887377175,-6.15551129325187,-15.92860083616781,-12.000073932350718,-3.4888360969387753,0.5294117647058824,21,1,4,1,2,3,1,0,1,4,1,4,4,0,0,0,4,1.8503,79.80280000000003,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +72734347,NCCCC[C@H](NC(=O)[C@@H]1CCCN1C(=O)[C@@H]1CSSC[C@H](NC(=O)CNC(=O)CNC(=O)CN)C(=O)N[C@@H](Cc2ccc(O)cc2)C(=O)N[C@@H](Cc2ccccc2)C(=O)N[C@@H](CCC(N)=O)C(=O)N[C@@H](CC(N)=O)C(=O)N1)C(=O)NCC(N)=O,0,16.93616406074738,-7.0009844742709415,16.93616406074738,1.3333241078572833,0.03244495277112882,1227.3950000000023,1152.8029999999994,1226.4960976680018,464,0,0.29309207049653996,-0.5079666451556014,0.5079666451556014,0.29309207049653996,0.7411764705882353,1.3647058823529412,2.0470588235294116,2.929867395703737,6123.783274577322,127.37003164952387,114.09563846588499,41.72863162774044,69.9754441325018,56.250287673071966,22.54759738686997,13.01016981947392,14.751751443271113,7.463956786426836,8.850655117493835,4.355027024620643,5.585743607455677,-8.559999999999999,9.777421570358172e+57,18.477655176088227,35.549655037382706,24.284547053314,600.9497737909159,91.70543633347282,59.540019893393854,22.589473253251203,82.7005162109211,1.4311996572326342,0.0,67.12352057700551,0.0,0.0,0.0,63.88472690641651,67.9461494910128,75.40678773137058,66.62932754284873,173.11937381169815,104.28831216369456,1.4311996572326342,57.99804326373424,28.598584878631364,111.87238876009096,50.39107187619598,65.50867135236365,0.0,5.749511833283905,81.69671841151512,0.0,5.749511833283905,21.587795952773448,192.6746454131046,79.86937037966428,0.0,134.76050567105048,54.38176836896965,28.236841566564,0.0,0.0,512.8499999999998,424.4065841279946,57.1173924013923,43.150834656646396,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,69.17353821978517,646.7032345703883,0.0,212.34322787400902,-20.176410959032843,-26.408866653419373,-58.38841136602327,-74.42565623895287,-60.22461529145075,-31.764322172467107,-4.6581797630512725,0.5,85,21,31,0,2,2,2,0,2,19,16,33,28,0,2,2,4,-6.980500000000019,307.5458,0,0,0,0,0,0,0,1,0,0,14,14,0,0,0,1,10,5,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +135401907,O=c1[nH]cnc2[nH]ncc12,0,11.342037037037038,-0.8578703703703703,11.342037037037038,0.17268518518518494,0.5192368565638923,136.11400000000003,132.082,136.038510748,50,0,0.26132560108201247,-0.31245759205418255,0.31245759205418255,0.26132560108201247,1.8,2.7,3.6,3.0942013889478575,573.0958184381703,10.455665446700477,8.697102672463695,4.697102672463695,6.519744507803583,4.390192122731721,2.495764931731805,1.6391695587834307,1.6391695587834307,1.0514439729996732,1.0514439729996732,0.6177631724113223,0.6177631724113223,-1.65,1648.5918322568257,2.531037747759121,1.6629234524260401,0.5397705083562873,60.847142948682425,4.977003270229252,6.756982770635016,8.470861377424129,0.0,5.559266895052008,0.0,9.886243741654903,4.9839785209472085,5.098681808301038,0.0,0.0,0.0,0.0,13.847025480951206,5.565201268996842,11.033401435232523,0.0,20.15137015706058,0.0,0.0,0.0,22.830071003904816,0.0,0.0,5.559266895052008,0.0,0.0,0.0,20.15137015706058,0.0,0.0,2.7415171123404405,17.27080410885281,2.8236841566564013,11.033401435232523,0.0,74.43,18.035533819832995,4.794537184071822,0.0,16.010404705461777,5.091706557583081,0.0,0.0,0.0,0.0,10.082660329248245,5.565201268996842,28.653055555555554,0.0,15.085555555555556,3.6212037037037037,-1.0305555555555552,0.0,0.0,-0.995925925925925,0.0,0.0,0.0,10,2,5,0,0,0,0,2,2,3,2,5,0,0,0,0,2,-0.35380000000000006,34.5094,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +62280,C/C=C/C[C@@H](C)[C@@H](O)[C@H]1C(=O)N[C@@H](CC)C(=O)N(C)CC(=O)N(C)[C@@H](CC(C)C)C(=O)N[C@@H](C(C)C)C(=O)N(C)[C@@H](CC(C)C)C(=O)N[C@@H](C)C(=O)N[C@H](C)C(=O)N(C)[C@@H](CC(C)C)C(=O)N(C)[C@@H](CC(C)C)C(=O)N(C)[C@@H](C(C)C)C(=O)N1C,1,18.02532699884621,-8.388333088647514,18.02532699884621,3.1467137363230036,0.14792471467331686,1202.6350000000036,1090.7469999999994,1201.841367992003,486,0,0.24564364922042153,-0.3901264861786781,0.3901264861786781,0.24564364922042153,0.5647058823529412,1.0823529411764705,1.588235294117647,8.516208569106272,6899.875158315542,161.06351324173755,151.8183290360659,40.81832903606589,83.32454392044264,75.13118954999626,19.934086877532565,13.703758701974763,13.703758701974763,8.107632225266315,8.107632225266315,4.665881387848588,4.665881387848588,-6.130000000000002,4.200275924561178e+74,13.265984619059322,34.871505276546664,21.65558178074552,664.6651694045528,60.64742972021408,60.17892468349644,5.6473683133128025,66.4101766800992,0.0,0.0,52.73990902479004,0.0,0.0,0.0,108.03063313421062,100.05092955740486,173.56981691346547,33.13825605381923,208.796492483253,64.97897702286656,1.4311996572326342,55.53862152910686,41.257703797541545,220.97865811244927,55.32764798629166,12.104143492071133,0.0,0.0,21.239253413153502,0.0,0.0,0.0,227.4049436838979,52.73990902479004,41.257703797541545,300.0201223560466,12.104143492071133,5.6473683133128025,0.0,0.0,278.8,450.18575194032724,44.02860788607898,52.73990902479004,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,108.35036703850973,992.9384944520558,0.0,165.65574110388198,-9.339386784692632,0.0,-108.59749793982795,-85.82308578646669,-51.24993927592825,-163.16765910235483,0.0,0.7903225806451613,85,5,23,0,1,1,0,0,0,12,5,23,40,0,1,1,1,3.2690000000000046,328.4446000000004,0,1,0,0,0,0,0,0,0,0,11,11,0,0,0,7,4,0,0,7,0,0,0,0,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +55245,CC#C[C@]1(O)CC[C@H]2[C@@H]3CCC4=CC(=O)CCC4=C3[C@@H](c3ccc(N(C)C)cc3)C[C@@]21C,0,13.50325278761617,-5.336738433799446,13.50325278761617,0.6563508747789393,0.6395257442251707,429.60399999999953,394.3240000000002,429.266779360001,168,0,0.21221290876108181,-0.37766120681062115,0.37766120681062115,0.21221290876108181,1.28125,2.15625,2.90625,2.4310598589763077,2449.8041944970905,53.04952357383516,50.763710176427686,15.763710176427685,29.2079363115293,26.237316974177663,8.8290686837138,6.819327357454775,6.819327357454775,5.005127450780851,5.005127450780851,3.5280792435444157,3.5280792435444157,-2.3099999999999996,8111558906025.316,5.1794573511088,7.631144053139787,3.1060786587995866,241.39799375043654,10.00871792195769,5.601050810983688,5.783244946364939,1.4311996572326342,0.0,0.0,4.794537184071822,0.0,0.0,5.920434318855644,30.430268381547183,91.72392660919579,77.0729112602737,6.853792780851101,56.509136284966566,11.470631221048501,1.4311996572326342,0.0,17.202905840122938,69.80926704024377,18.85156353141497,52.50451165859354,0.0,11.840868637711289,4.899909730850478,5.687386274683562,0.0,0.0,31.87595740625297,4.794537184071822,29.043774477834223,116.37745863074443,46.94106016689655,0.0,0.0,0.0,40.54,169.83887929142378,17.1313641896038,0.0,0.0,0.0,0.0,11.840868637711289,0.0,0.0,5.1088081911072125,35.70016356148814,310.15702331752084,0.0,12.84690191283723,4.539481144698721,-20.91036609437674,-15.327966584361743,-10.075287226543768,-33.62912262907284,-16.767330507368495,0.0,0.5517241379310345,32,1,3,4,0,4,1,0,1,3,1,3,6,2,0,2,5,5.406500000000006,129.4318,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4583,CC1COc2c(N3CCN(C)CC3)c(F)cc3c(=O)c(C(=O)O)cn1c23,0,16.373716458805745,-4.214838054929147,16.373716458805745,0.2401653439153444,0.8747398264671755,361.3729999999997,341.2130000000001,361.14378434000054,138,0,0.34072313809849797,-0.48691699060409394,0.48691699060409394,0.34072313809849797,1.5384615384615385,2.3461538461538463,3.0384615384615383,2.3745414401139597,1707.963776412873,35.919767061838236,32.352598421364554,12.352598421364554,20.329292239557887,16.630312432877947,6.722064142414083,4.9498801282654625,4.9498801282654625,3.4592632623641313,3.4592632623641313,2.389778797104856,2.389778797104856,-2.61,1321567023.3380227,5.4486594409999745,5.979774542196717,2.4384574228435856,176.91761002789184,24.212590254399572,17.809823009296846,11.5667326743298,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,9.184952231746642,0.0,0.0,0.0,19.87013772524122,45.86791950978077,29.257644405962676,45.07503594388811,22.559616494716465,1.4311996572326342,9.467009378641833,0.0,12.869784585645323,44.42216061131279,33.819313827193305,0.0,5.749511833283905,15.065563076551069,10.077801322358383,5.749511833283905,0.0,60.067373738163205,0.0,5.817220841045895,49.272185828648354,17.009851102549877,0.0,12.33412458931369,0.0,75.00999999999999,119.52575989893046,9.589074368143644,4.39041504767482,4.567099647791355,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,32.212475178266864,183.77944047816098,0.0,24.28074349930586,2.234865511666454,-6.707612816151102,-5.932875691325506,-5.715749716878643,-1.6711485281159704,-28.600996069995382,0.0,0.4444444444444444,26,1,7,0,2,2,1,1,2,7,1,8,4,0,1,1,4,1.5439999999999998,95.04130000000004,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +13342,CC[C@]1(O)C[C@@H]2CN(CCc3c([nH]c4ccccc34)[C@@](C(=O)OC)(c3cc4c(cc3OC)N(C)[C@H]3[C@@](O)(C(=O)OC)[C@H](OC(C)=O)[C@]5(CC)C=CCN6CC[C@]43[C@@H]65)C2)C1,0,17.363549119001835,-6.684073247222307,17.363549119001835,1.1589700469892166,0.179801053533736,810.9890000000021,752.5249999999999,810.4203794360016,316,0,0.3436112263225902,-0.4963433590476223,0.4963433590476223,0.3436112263225902,1.0847457627118644,1.9661016949152543,2.76271186440678,1.930270826682296,4795.137029961112,92.02169687848068,86.4630889961746,28.463088996174598,51.25420758617549,44.626998839692554,15.863288663264877,12.586326424194048,12.586326424194048,9.770780614911242,9.770780614911242,7.621409825329805,7.621409825329805,-4.43,1.195803517142196e+41,10.77255511459491,13.801606719760814,5.196998741043846,426.85928187703075,39.04198119849435,11.164502302680685,7.491860105278189,8.463450125448956,0.0,17.90791586385555,19.388893829844598,4.794537184071822,0.0,0.0,43.935183849652375,73.84010717637588,139.90044858508608,58.777213223215334,120.35224241732027,34.49822707062016,2.8623993144652684,14.776822731930208,11.308948154759857,98.94111128427353,65.4738924293602,70.74293820799035,0.0,5.749511833283905,9.636772684650527,5.687386274683562,5.749511833283905,0.0,135.65664157659188,45.79710625373855,11.308948154759857,150.19630391783528,48.3586557380509,1.4118420783282006,10.902924932081056,0.0,154.10000000000002,301.49145171221835,51.44141161601732,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,52.33848460271751,567.4720720819396,0.0,42.45067013713544,6.894101014550121,-49.72514002234153,-21.03674230956217,-33.31532421411396,-42.71769893061022,-49.43749297585904,-15.16777811447152,0.5869565217391305,59,3,13,1,5,6,2,1,3,12,3,13,16,1,2,3,9,3.9909000000000034,220.4282999999993,0,2,0,0,0,1,1,0,0,0,3,3,0,0,0,3,1,0,0,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,2,0,6,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5284594,C=C1CC[C@@]2(O)[C@H]3Cc4ccc(O)c5c4[C@@]2(CCN3CC2CC2)[C@H]1O5,0,9.897686366213154,-4.688892786281181,9.897686366213154,0.8961491402116408,0.813193738638947,339.4349999999996,314.23500000000007,339.1834436600007,132,0,0.29329392426041034,-0.5042464497141359,0.5042464497141359,0.29329392426041034,1.56,2.52,3.32,2.020895414103054,1790.6337433879505,38.81747276626628,37.171958466891546,12.171958466891548,22.1012772767429,19.55381355510539,7.237316974177664,5.9282445182845835,5.9282445182845835,4.652023695102032,4.652023695102032,3.524446104332072,3.524446104332072,-1.5199999999999998,12224371129.668612,4.1486606223312235,4.413058033526125,1.570641207323408,182.9462254601677,14.954479336014474,6.080018026949988,11.49902366656781,1.4311996572326342,1.4311996572326342,0.0,4.899909730850478,0.0,0.0,0.0,12.573457669665162,67.80734150708484,41.381099099256346,19.240592617401784,46.48192612792956,0.0,2.8623993144652684,4.899909730850478,5.893957685363079,61.35150118365637,12.99371936863189,35.31588389079172,0.0,11.49902366656781,4.736862953800049,0.0,11.49902366656781,0.0,48.67260610244538,11.787915370726159,5.893957685363079,74.51897428195596,24.188980907397724,0.0,0.0,0.0,52.93000000000001,131.9539955258614,10.96606844936176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,33.269448801925826,225.65633711952026,0.0,-0.8961491402116408,9.229228620856055,-13.367765508209459,-6.487445176009389,-7.422941835684893,-28.770350658265315,-10.857580088662342,0.0,0.6190476190476191,25,2,4,3,2,5,1,0,1,4,2,4,4,2,1,3,6,2.512500000000001,93.93060000000004,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2794,CC(C)N=c1cc2n(-c3ccc(Cl)cc3)c3ccccc3nc-2cc1Nc1ccc(Cl)cc1,1,9.402048724839728,-3.9137890413792302,9.402048724839728,0.02413134514595594,0.2749298454816666,473.4069999999998,451.2310000000002,472.12215206400066,164,0,0.16658106474693257,-0.3537102689764508,0.3537102689764508,0.16658106474693257,1.0,1.696969696969697,2.4242424242424243,2.2544372578076532,2456.6870675602254,41.92532056130337,38.04478332801828,17.556641220055194,25.05991950487518,19.837639248258995,9.646354598777494,6.186246046008974,6.942174992027428,4.075050214004403,4.453014687013629,2.827443800814644,3.0164260373192575,-3.3399999999999985,218135529214.98328,7.863884293647238,8.891337736154783,4.4497180080647025,233.0265937003997,9.87691300107973,0.0,1.4118420783282006,0.0,0.0,0.0,4.992404732635669,4.9839785209472085,0.0,0.0,35.286717195791624,86.21280872655092,35.66248298222075,54.02725249047266,30.197771757902814,45.61005376506468,0.0,9.551078168738563,4.992404732635669,19.721676702941004,5.309813353288376,99.99635898307511,0.0,17.075242264380485,10.66704380159468,11.374772549367124,0.0,23.20187978046503,15.568970637088206,0.0,0.0,42.489713914165996,89.58626663992183,11.457108705810853,28.10864369961301,0.0,42.21,159.20145193499627,2.7415171123404405,0.0,5.309813353288376,4.567099647791355,0.0,0.0,0.0,0.0,9.976383253582878,50.658134426027445,186.231984436564,11.971937093106801,7.824711715447496,-2.7169131212896023,-6.190827555984556,0.0,-17.438232378156073,0.0,-7.71043796746584,0.0,0.1111111111111111,33,1,4,1,1,2,3,0,3,4,1,6,6,0,0,0,5,7.489800000000005,138.13569999999993,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +135398743,CO[C@H]1/C=C/O[C@@]2(C)Oc3c(C)c(O)c4c(O)c(c5c(c4c3C2=O)=NC2(CCN(CC(C)C)CC2)N=5)NC(=O)/C(C)=C\C=C\[C@H](C)[C@H](O)[C@@H](C)[C@@H](O)[C@@H](C)[C@H](OC(C)=O)[C@@H]1C,0,16.344312631647703,-6.868367289661684,16.344312631647703,1.3294563525029939,0.2088057005449271,847.0190000000023,784.5229999999999,846.441508804002,332,0,0.3121080514340379,-0.5067367410114519,0.5067367410114519,0.3121080514340379,1.1147540983606556,1.9344262295081966,2.6065573770491803,2.2859737734028793,4824.1631646420155,97.69542346484762,91.27958557710232,29.279585577102324,53.74570764072595,46.15453011558418,15.574323358228783,11.57675977033101,11.57675977033101,7.810205877292892,7.810205877292892,5.214953787116974,5.214953787116974,-4.83,1.9556363224750877e+41,11.26939259892042,17.504165990091828,8.536418080692114,443.88778178646794,49.5924076637679,29.994416972677886,12.824213946982018,2.8623993144652684,14.552823990181713,11.756416440522447,24.368421017486803,0.0,0.0,0.0,59.26756794188076,25.649813665990006,154.76091155442364,55.86343644081299,133.3113759118751,34.119564667281445,5.724798628930537,4.899909730850478,39.454597892086724,117.03481427135598,31.8383448651188,57.86088748184061,0.0,17.248535499851716,20.761137203701033,5.687386274683562,17.248535499851716,0.0,111.01824589544907,23.79966322954379,36.32168054411107,168.467556727488,46.00433306710534,1.4118420783282006,10.772448428929591,0.0,209.03999999999996,292.47184494311455,33.62155038580442,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,34.78495994619307,71.02539930593602,569.3291234550159,0.0,52.15001966224867,7.31668810891844,-14.913180563117823,-53.14623153362653,-12.70180868967487,-40.03783376769697,-68.39903383554557,-5.1810761698547205,0.5869565217391305,61,5,15,0,4,4,2,0,2,14,5,15,19,0,1,1,6,4.749420000000004,227.70539999999937,0,2,0,0,0,0,0,2,0,0,3,3,0,0,0,3,1,0,0,0,1,0,0,0,0,0,2,1,0,1,0,0,0,0,2,0,1,0,0,0,1,4,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +65015,c1cc(CN2CCCNCCNCCCNCC2)ccc1CN1CCCNCCNCCCNCC1,0,9.240550490748106,-5.5384454077437555,9.240550490748106,1.4812884273959974,0.35377837598173745,502.79599999999925,448.36400000000026,502.4471437280016,206,0,0.12224522945829298,-0.31542041102218643,0.31542041102218643,0.12224522945829298,0.5277777777777778,0.8611111111111112,1.25,2.860431099012583,2657.5467681963255,73.08290376865476,71.57770876399967,17.577708763999663,38.54700538379251,35.708203932499366,9.024922359499621,5.104101966249684,5.104101966249684,2.837461179749809,2.837461179749809,1.612828890437409,1.612828890437409,-1.1,2.8076108773158368e+20,4.8539696543911806,19.937785058764078,14.001015803714436,296.48405457371143,31.858880119730255,8.471052469969203,0.0,0.0,0.0,0.0,9.799819461700956,0.0,0.0,0.0,24.16967483065318,88.59348006323907,125.28197331464895,5.483034224680881,74.2674631661398,0.0,0.0,41.658699581431215,0.0,38.4854189739494,103.94975494905515,35.29657781404717,0.0,0.0,31.858880119730255,0.0,0.0,0.0,113.74957441075611,12.99371936863189,0.0,102.41501328488202,24.16967483065318,8.471052469969203,0.0,0.0,78.66,219.39045131848297,5.483034224680881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.78442894145893,465.66304407112057,0.0,-3.4426917949336153,-9.512366154255258,-5.0474764591576955,0.0,-10.033568366699267,-20.78949195484615,-93.33744934122873,0.0,0.7857142857142857,36,6,8,0,2,2,1,0,1,8,6,8,4,0,2,2,3,0.41580000000000644,152.68219999999985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5282415,CCCCC[C@H](O)/C=C/[C@H]1[C@H](O)C[C@H](O)[C@@H]1C/C=C\CCCC(=O)O,0,11.88860686212522,-5.141089301786678,11.88860686212522,2.4782220729753623,0.3189173783556326,354.4869999999994,320.21500000000003,354.2406241880009,144,0,0.3028511139961321,-0.481230253795681,0.481230253795681,0.3028511139961321,1.48,2.4,3.16,4.786788589500879,1701.644136298671,48.21517847069432,46.04124145231931,12.041241452319316,25.544129272578733,22.65361388801511,6.020620726159658,3.6498299142610597,3.6498299142610597,2.072810363079829,2.072810363079829,1.2020195511812306,1.2020195511812306,-1.17,136003961109.58533,3.713893799403517,12.226632993151828,8.655266724154759,198.74224913050966,20.43523276442885,0.0,0.0,4.293598971697903,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,0.0,50.17895380542608,31.385657290680598,50.167254279936934,27.835363974041503,66.35252663360734,5.969305287951849,5.724798628930537,0.0,11.787915370726157,82.44827031011006,0.0,24.208286984142266,0.0,0.0,0.0,0.0,0.0,0.0,48.93819110492856,4.794537184071822,11.787915370726157,105.33097291436657,24.208286984142266,0.0,1.4311996572326342,0.0,97.99,124.41377795293035,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.43523276442885,46.847555314037166,275.11987045135777,0.0,11.88860686212522,15.064295069342908,0.0,-12.692217740348784,-10.621719557984552,-56.51771193688362,-4.157789814275674,0.0,0.75,25,4,5,1,0,1,0,0,0,5,4,5,16,1,0,1,1,3.0429000000000013,98.14320000000005,1,3,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2800,CCN(CC)CCOc1ccc(C(=C(Cl)c2ccccc2)c2ccccc2)cc1,0,8.826219188292601,-4.520435015899572,8.826219188292601,0.9043128759986552,0.3734283215865669,405.96899999999965,377.7450000000002,405.1859421960008,150,0,0.11890334730404349,-0.49226405413092245,0.49226405413092245,0.11890334730404349,0.8620689655172413,1.4137931034482758,2.0,2.5586429474418053,2057.18524408471,44.8314624341687,42.23342635897305,14.989355304991502,25.371414456019302,21.518050920218414,7.896015393227641,4.768050920218413,5.146015393227641,3.075191161128261,3.453155634137488,1.884647655146797,2.168121009903717,-2.549999999999999,163932287307.2385,5.376174507174962,10.847804995000011,5.723225909677843,218.29134454590428,9.636772684650527,12.308497076200194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.81374861678344,41.76891125904947,28.519066888427847,26.964423250837115,43.11810252656623,22.206330772415377,0.0,4.899909730850478,0.0,13.703784234591359,26.049564295864126,101.28421638237714,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,11.600939890232516,30.9494740267146,0.0,0.0,68.77537828244856,84.59386190728614,0.0,10.605390882182864,0.0,12.47,162.29237735914992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.71904241679877,233.25080028992647,6.662444603584424,-1.1002313808931494,-1.0684280265855455,-4.042509715112527,-1.564067221292149,-15.95699956379107,0.0,-25.736564541392024,0.0,0.23076923076923078,29,0,2,0,0,0,3,0,3,2,0,3,11,0,0,0,3,6.562600000000006,124.37800000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1349907,Cn1cc[nH]c1=S,0,7.220578703703703,-2.600925925925926,7.220578703703703,0.36574074074074026,0.5004564356679512,114.17299999999997,108.125,114.02516919199999,38,0,0.17634249559001908,-0.3374092412870166,0.3374092412870166,0.17634249559001908,2.4285714285714284,3.2857142857142856,3.5714285714285716,3.5691694914327705,386.5641195834528,10.386751345948129,9.30267548146378,4.119172062391504,5.764742878019984,4.519371729481785,1.9804064244456892,0.9533945790849923,1.318542950755103,0.5046357376887758,0.7784970164413587,0.22064354645876383,0.3119306393762915,-0.5700000000000001,532.6496950093098,1.227067277477931,1.4995195518462698,0.7183972880486792,55.28178500289982,9.544102918020606,0.0,6.182907848918359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.217873443046695,23.433892990422425,2.7415171123404405,8.265634859179302,12.217873443046695,0.0,9.544102918020606,6.975826900282246,0.0,0.0,17.11685619221968,0.0,0.0,0.0,0.0,0.0,12.217873443046695,9.544102918020606,6.975826900282246,4.771065770590158,6.853792780851101,12.345790421629522,1.4118420783282006,0.0,0.0,20.72,19.321617321911766,0.0,0.0,4.771065770590158,9.544102918020606,0.0,0.0,0.0,0.0,12.217873443046695,8.265634859179302,42.59113425925926,4.588078703703704,0.43456018518518524,0.0,0.0,0.0,0.0,-1.0961805555555553,-2.600925925925926,0.0,0.25,7,1,2,0,0,0,0,1,1,2,1,3,1,0,0,0,1,1.08269,30.597699999999996,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4201,N=c1nc(N2CCCCC2)cc(N)n1O,0,8.0998046579743,-3.707333475056691,8.0998046579743,0.12150710978835999,0.574966146791026,209.25300000000013,194.13299999999998,209.12766009999999,82,0,0.32761200979285104,-0.42349440933498583,0.42349440933498583,0.32761200979285104,1.7333333333333334,2.6,3.2666666666666666,3.0396159507520477,880.4991590643932,23.662772227887025,22.144316267963653,7.144316267963653,13.356607800987051,10.944924442548604,3.695035365584867,2.4124115734599405,2.4124115734599405,1.4757418257228498,1.4757418257228498,0.8522879531962828,0.8522879531962828,-1.72,1122807.7890678528,2.3358914867568448,3.7990994713070263,1.8790306939202912,108.7682952619534,15.829160527620548,11.635725555670057,4.235526234984602,0.0,5.618183454609236,1.4311996572326342,5.402308355073566,0.0,4.9839785209472085,4.7304076419062255,0.0,19.118774703988137,32.743723637997384,1.3707585561702202,25.95460383113345,11.635725555670057,5.402308355073566,9.714386162853433,0.0,19.118774703988137,23.61334607520864,11.66060216227253,0.0,0.0,16.237810161185987,11.635725555670057,0.0,0.0,27.91763935252912,0.0,5.402308355073566,34.197118821860556,6.042418707663295,5.666725892217236,0.0,0.0,91.16000000000001,55.40882179056261,0.0,0.0,15.350034348482977,0.0,0.0,0.0,0.0,0.0,15.595820697064571,20.745070010089655,116.5214982914462,0.0,3.2072585978835977,6.870217978395061,-1.3140890731292514,-2.2274480347694623,-1.1792025699168553,-11.116045800264555,-7.345522722978082,0.0,0.5555555555555556,15,4,6,0,1,1,0,1,1,6,3,6,3,0,1,1,2,0.1723700000000003,55.74260000000002,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5379,COc1c(N2CCNC(C)C2)c(F)cc2c(=O)c(C(=O)O)cn(C3CC3)c12,0,16.624897486772483,-4.408498296803674,16.624897486772483,0.2814790013227513,0.8502925222174252,375.3999999999997,353.2240000000001,375.1594344040006,144,0,0.34072311785880255,-0.4922383334796482,0.4922383334796482,0.34072311785880255,1.6666666666666667,2.5185185185185186,3.2222222222222223,2.4518044934888312,1825.0749001650208,38.41976706183823,34.852598421364554,12.852598421364553,21.6179673741527,17.853919230627923,6.998457344664104,5.111014656774506,5.111014656774506,3.54836104216439,3.54836104216439,2.4183737207047153,2.4183737207047153,-2.61,5750237442.240074,5.47008646979278,6.525466670851624,2.9344163360412665,185.9405782882671,24.62249387683747,12.662679844708759,11.5667326743298,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,9.184952231746642,0.0,0.0,0.0,25.640160627617735,51.40684476216412,31.64846295266584,47.85763657838653,22.559616494716465,1.4311996572326342,9.87691300107973,0.0,31.63352685665373,31.428441242680897,33.819313827193305,0.0,5.749511833283905,20.375376429839445,10.077801322358383,5.749511833283905,0.0,48.19163710703048,0.0,5.817220841045895,63.388794187477366,17.009851102549877,1.4118420783282006,12.33412458931369,0.0,83.80000000000001,125.70568642374487,9.589074368143644,4.39041504767482,4.567099647791355,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,34.995075812765286,199.77252810807482,0.0,25.22495754254225,1.141938202866199,-7.37562879425569,-6.447940572125953,-9.782537095882379,-8.677204271464733,-16.989110608101697,-3.9503358449861468,0.47368421052631576,27,2,7,1,1,2,1,1,2,7,2,8,6,1,1,2,4,1.9804,99.62600000000003,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4748,OCCN1CCN(CCCN2c3ccccc3Sc3ccc(Cl)cc32)CC1,0,9.108865893005504,-4.685368362622829,9.108865893005504,0.0010145557304648278,0.7886610933771961,403.9789999999997,377.7710000000002,403.1485111320007,144,0,0.21010335117369147,-0.3950445544207227,0.3950445544207227,0.21010335117369147,1.037037037037037,1.7777777777777777,2.5925925925925926,2.103795660636288,1772.8057073259135,41.57446760021749,39.03610184043683,14.608527367383008,23.433351515054913,19.972064142414084,8.258276905887174,4.6624226497002,6.061007848869084,3.0549176323423155,4.242970635609709,1.9956603107397402,3.018642856176849,-1.2399999999999998,31337872429.911686,5.266477831947204,8.842005109125582,4.437891045741215,206.87732832561537,14.908627652808168,0.0,0.0,1.4311996572326342,0.0,0.0,4.899909730850478,0.0,0.0,0.0,35.447662254950224,43.08187812396179,75.72689526939605,30.27058479781539,39.37777209536272,34.73759738899076,1.4311996572326342,9.799819461700956,0.0,16.16389185236493,56.93691276397837,47.319564267384386,0.0,0.0,4.899909730850478,11.374772549367124,0.0,23.36282483962363,68.3768303431687,0.0,0.0,40.64188880558489,52.08789790467861,5.022633313741326,0.0,0.0,29.950000000000003,136.69505116394532,0.0,0.0,4.899909730850478,11.761884949391115,0.0,0.0,0.0,0.0,5.1088081911072125,47.30110345172068,219.11632211408238,6.435625188095199,-3.238093048851514,2.7960771629264602,-1.9280376459631228,0.0,-6.696650109609151,-4.58265069916856,-35.20814851706724,0.0,0.42857142857142855,27,1,4,0,2,2,2,0,2,5,1,6,7,0,1,1,4,3.942700000000003,113.60580000000004,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +206044,COc1ccc(OC(=O)N(CC(=O)O)Cc2ccc(OCCc3nc(-c4ccccc4)oc3C)cc2)cc1,0,13.719109392293248,-4.302887319409237,13.719109392293248,0.8899680229988391,0.2834065841950362,516.5500000000001,488.32600000000036,516.1896512360007,196,0,0.41557001290905965,-0.49676380023578265,0.49676380023578265,0.41557001290905965,1.0526315789473684,1.7894736842105263,2.5,1.9029383411498177,2553.8810945474747,51.099047147670305,46.25216522424696,18.25216522424696,29.73075302196114,23.521647876765005,9.613399586301142,6.204751697149606,6.204751697149606,3.745444950101393,3.745444950101393,2.2484873127313088,2.2484873127313088,-4.789999999999998,16552298555994.906,8.356895767496665,12.445083630627487,7.128918316214468,259.1797914717188,23.736547989560705,29.5056426030421,0.0,5.890723922025908,1.4311996572326342,12.062545358890265,9.694446914922299,9.77851570501903,0.0,0.0,30.212093538316473,60.75469327029903,25.287028858193416,49.44755393239221,70.33610337430034,12.062545358890265,1.4311996572326342,9.883888251797686,0.0,19.721676702941004,20.093797386114822,95.56907010504275,0.0,28.70271091357462,14.210588861400147,4.794537184071822,17.248535499851716,0.0,47.149039187909985,17.664321769717148,6.851892117295679,54.028107922015884,82.96859413667619,0.0,12.885375070955538,0.0,111.33000000000001,181.04971019741402,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.829649665854468,52.33255751848206,246.2323229807494,0.0,28.926391747208907,3.5693925301124296,-4.104009653662314,-9.282664938858534,-16.983288177716055,-6.471494098744107,-16.20320600800712,-3.3501110477492997,0.20689655172413793,38,1,9,0,0,0,3,1,4,8,1,9,13,0,0,0,4,5.365720000000005,139.38079999999985,1,0,0,0,0,1,0,0,1,1,2,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2995,CNCCCN1c2ccccc2CCc2ccccc21,0,8.810799792139077,-4.262527163643239,8.810799792139077,0.1932336545729405,0.8516371541172786,266.38799999999986,244.21199999999993,266.17829870400027,104,0,0.12186743513340695,-0.3409909711776165,0.3409909711776165,0.12186743513340695,1.2,1.8,2.4,2.7432280371554674,1377.700820850907,33.08290376865477,31.894427190999917,9.894427190999917,18.556194762347367,16.315247584249853,5.368033988749895,3.493033988749895,3.493033988749895,2.374632289312401,2.374632289312401,1.5855746418436738,1.5855746418436738,-1.7999999999999994,231979739.5639242,3.0234541003122115,6.101275951557094,2.5649296894273723,151.949422348153,10.209723084138854,1.4118420783282006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.25451224597977,55.8032016873069,35.69149346389593,10.96606844936176,30.197771757902817,11.374772549367124,0.0,5.309813353288376,0.0,19.118774703988137,24.869455999764615,59.46625264470035,0.0,0.0,10.209723084138854,11.374772549367124,0.0,0.0,19.969546268914137,12.745849802658759,0.0,46.28575756429802,48.33934966130636,1.4118420783282006,0.0,0.0,15.27,115.23915952025816,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,0.0,30.197771757902817,181.2625317923185,0.0,-0.1932336545729405,-0.87827394074914,-5.335012361426051,0.0,-9.81010779781252,-11.535541855631148,-12.010362182126707,0.0,0.3333333333333333,20,1,2,0,1,1,2,0,2,2,1,2,5,0,0,0,3,3.5328000000000026,85.84170000000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2788,Oc1c(I)cc(Cl)c2cccnc12,0,7.774331065759638,-0.39315066767447715,7.774331065759638,0.025925925925925686,0.7583081059543383,305.50199999999995,300.46200000000005,304.9104394600002,66,0,0.2932713861371512,-0.5045907597486406,0.5045907597486406,0.2932713861371512,1.6923076923076923,2.5384615384615383,3.3076923076923075,3.105388645030183,657.4236580469735,13.61036598507973,11.111390831982277,9.024818069177053,8.395953267715893,5.68755050420498,4.736015832338505,2.2793022137411167,3.7360158323385058,1.501321148258483,2.544367823072343,0.9321055782877824,1.8479060007652783,-0.55,9648.659290229838,4.794988653138564,3.305208464125931,1.461563709392119,100.80357649126628,5.1088081911072125,5.516700717616262,5.749511833283905,0.0,1.4311996572326342,0.0,4.9839785209472085,0.0,0.0,0.0,11.600939890232516,40.71812675005794,11.559119425279556,14.0758498094876,10.591842415788093,45.09473544938163,1.4311996572326342,4.9839785209472085,0.0,0.0,0.0,32.892966918611364,0.0,5.749511833283905,0.0,0.0,5.749511833283905,34.191810517300574,11.523986369287055,0.0,3.5701822710653963,5.483034224680881,24.300151333804646,5.022633313741326,10.902924932081056,0.0,33.120000000000005,6.172895210814761,0.0,0.0,43.37250847316157,0.0,0.0,0.0,22.590870627068057,0.0,10.092786712054421,18.515173772146028,37.82156558327034,7.760668266565885,3.811172222222222,4.4512389896699425,0.05685185185185215,-0.025925925925925686,-0.7513092088687319,-0.39315066767447715,0.0,0.0,0.0,13,1,2,0,0,0,1,1,2,2,1,4,1,0,0,0,2,3.1984000000000004,61.134800000000006,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +5324346,COCCCC/C(=N\OCCN)c1ccc(C(F)(F)F)cc1,0,13.481293999254945,-5.556395672889338,13.481293999254945,0.9134861452540819,0.432027738820179,318.3389999999996,297.171,318.1555125720006,124,0,0.4159102316664015,-0.3942247432230937,0.4159102316664015,0.3942247432230937,1.3636363636363635,2.1363636363636362,2.772727272727273,4.271962194883343,1214.5906842032387,34.740122497076655,31.344817190955325,10.344817190955323,18.632368814499213,15.453534117544566,5.059106926544649,3.0719296693505562,3.0719296693505562,1.7189582579791898,1.7189582579791898,0.9339633167421698,0.9339633167421698,-1.6,131335341.46290636,4.4795351116712165,9.423875114784204,6.444981257809245,157.24932426721037,15.294168513262955,9.38266939957269,0.0,0.0,0.0,6.176298517443475,0.0,0.0,13.171245143024459,0.0,17.24055014207713,36.76706361101172,31.05986583547658,26.353480612340114,51.613793404451755,5.711685002770702,0.0,0.0,10.875429702476813,25.29507322143161,26.65278262903111,35.29657781404717,0.0,0.0,5.719716975726273,13.171245143024459,0.0,0.0,32.364467631801816,15.750750054980156,0.0,56.29009025461636,29.32538755740372,2.8236841566564013,0.0,0.0,56.84,98.67583564300688,13.171245143024459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.730164264287222,28.868096723890574,204.9889663900841,0.0,4.228957270408163,2.7825407454648516,-6.949174019864441,0.0,-7.523495983333645,-18.989494335965688,-12.103828778903413,-3.767804621223255,0.5333333333333333,22,2,4,0,0,0,1,0,1,4,1,7,11,0,0,0,1,3.201500000000001,78.71440000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +146571,CN(C)CCC[C@@]1(c2ccc(F)cc2)OCc2cc(C#N)ccc21,0,14.663832579774589,-4.608275856638955,14.663832579774589,0.9763272879233822,0.8388667572429985,324.3989999999996,303.231,324.1637915120006,124,0,0.12273124998647017,-0.3608398495431719,0.3608398495431719,0.12273124998647017,1.4166666666666667,2.2083333333333335,2.9166666666666665,2.7539011371861406,1581.7050473350032,35.419767061838236,32.68063995447301,11.680639954473007,19.923314813922843,16.741657717968394,6.241657717968393,4.38330959395939,4.38330959395939,2.935341014827592,2.935341014827592,1.9530446526457275,1.9530446526457275,-2.2199999999999998,821475885.675735,4.690085752967064,6.721078415843811,3.0558017290424,171.33807757483385,9.636772684650527,11.418271652029583,0.0,0.0,0.0,0.0,0.0,4.39041504767482,5.261891554738487,0.0,18.127256122989884,74.05439259328337,16.44910267404264,30.528485052937533,37.9132076810495,0.0,5.261891554738487,4.899909730850478,0.0,24.905885856558736,20.448513484880436,70.36795776147694,0.0,6.069221312792274,0.0,4.39041504767482,0.0,0.0,25.348423215730918,16.896899007700025,17.148333708576654,63.785585449021426,42.29693095364306,0.0,0.0,0.0,36.26,120.6222668337666,9.652306602413306,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,33.52279263337467,192.45432260955423,0.0,-0.9911066880583475,9.489620552287345,-9.242522094549736,-1.8395393365169255,-8.778825614746204,-9.14795898683548,-16.193990441134883,0.0,0.35,24,0,3,0,1,1,2,0,2,3,0,4,7,0,0,0,3,3.812980000000003,90.91400000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12947,CCN(CCO)CCCC(C)Nc1ccnc2cc(Cl)ccc12,0,8.853348039318607,-4.9418693966784275,8.853348039318607,0.7436657776531443,0.7317801043771165,335.8789999999995,309.671,335.1764401320007,126,0,0.210103351087788,-0.3950445723161837,0.3950445723161837,0.210103351087788,1.608695652173913,2.5652173913043477,3.391304347826087,3.1926742717816596,1604.8379189965337,39.265066523458984,37.12785354997297,11.88378249599142,21.406642508747517,18.563815851950217,6.086318438995626,3.5930952922454225,3.97105976525465,2.1824720523359558,2.3714542888405696,1.3249409043593094,1.461689735348042,-1.3599999999999994,2718971438.915423,3.896633050554017,9.062254640025788,5.341836349421254,179.6983503893658,15.318531275246066,0.0,1.4118420783282006,1.4311996572326342,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,18.452832007528194,56.76113611923951,56.7160280650936,23.041754409894306,39.418855617520705,28.191251096997135,1.4311996572326342,9.883888251797686,0.0,32.46752650559976,31.3593776491525,35.36520335520927,0.0,0.0,5.309813353288376,5.687386274683562,0.0,11.600939890232516,48.4913528643513,0.0,0.0,59.347839385335455,30.34257004146794,6.434475392069527,10.902924932081056,0.0,48.39,120.6823284475766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,47.34218697387866,210.8687364204402,5.87361259133655,2.2479766430486023,1.037260711167135,-2.261215418632116,0.0,-8.979855406585795,-11.018272435358224,-26.907131994305296,0.0,0.5,23,2,4,0,0,0,1,1,2,4,2,5,12,0,0,0,2,3.783000000000002,98.27150000000005,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2247,COc1ccc(CCN2CCC(Nc3nc4ccccc4n3Cc3ccc(F)cc3)CC2)cc1,0,14.690161169336502,-4.711691287358227,14.690161169336502,0.17134268937809072,0.3864771407563315,458.5809999999997,427.33300000000025,458.2481898320009,176,0,0.20392162980396877,-0.49676821879697586,0.49676821879697586,0.20392162980396877,1.1470588235294117,1.8823529411764706,2.6470588235294117,1.861687855297689,2571.6704845443696,50.61591948454487,47.57506714547292,16.57506714547292,28.931927972803326,24.530512099968224,9.083298504468267,6.057629634102323,6.057629634102323,3.882961148296595,3.882961148296595,2.452935672460781,2.452935672460781,-3.379999999999999,9376704998268.09,6.238825558216143,10.263474414616766,5.228571731545638,243.34560245164158,19.51368568573026,11.5667326743298,1.4118420783282006,5.948339280986494,0.0,0.0,0.0,9.374393568622029,0.0,0.0,36.25451224597977,66.5001899333619,41.95757419534014,49.24186758949505,51.66187676490971,16.981740716219015,0.0,14.450987899589041,0.0,31.633526856653727,31.8383448651188,89.45314831639945,0.0,5.749511833283905,10.046676307088426,10.338754328661313,5.749511833283905,0.0,46.9974118797691,12.869784585645323,5.817220841045895,64.99550947115942,72.50902449195954,1.4118420783282006,11.033401435232523,0.0,42.32,180.5561823185254,5.76117360384504,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,9.720841474747257,41.16384020726459,283.34248754978137,0.0,2.6836544744837485,-0.8468738564035627,-5.400940778799948,-4.8627755673767545,-21.399930559445654,-13.750445825909694,-17.92493696092714,-3.423571808735777,0.32142857142857145,34,1,5,0,1,1,3,1,4,5,1,6,9,0,1,1,5,5.351300000000005,135.01769999999996,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23727689,CNC(=O)[C@@H](c1ccccc1)N1CCc2cc(OC)c(OC)cc2[C@@H]1CCc1ccc(C(F)(F)F)cc1,0,14.757781887255327,-5.778017761606921,14.757781887255327,1.2379841033635675,0.41821270308955394,512.5719999999997,481.32400000000024,512.2286775120008,196,0,0.41590983687142646,-0.4928592208510446,0.4928592208510446,0.41590983687142646,1.2432432432432432,1.945945945945946,2.5945945945945947,2.596920854328727,2534.389986446195,53.53856921535524,48.753065481419185,17.75306548141919,29.999241540860883,24.902815019923352,9.455601424423392,6.546514659021819,6.546514659021819,4.369437030987867,4.369437030987867,2.820459449632956,2.820459449632956,-3.5199999999999987,14673525618139.959,7.75652760799573,11.253890126758746,5.743935792289814,258.3611803955466,14.783539260888475,6.017892468349645,12.910865744896011,5.907179729351506,0.0,6.176298517443475,9.694446914922299,0.0,13.171245143024459,0.0,42.29693095364306,65.5422555014293,34.568923170820256,45.68376897669638,69.97410699813123,5.907179729351506,0.0,10.209723084138854,0.0,37.33085815813091,27.54859150236337,94.28386324278122,0.0,11.49902366656781,14.783539260888475,13.171245143024459,11.49902366656781,0.0,38.35568096256535,23.716685504174055,0.0,87.34872398162021,66.46660578429623,1.4118420783282006,0.0,0.0,50.80000000000001,186.77923938333373,27.56109222028782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,37.676151824043316,315.72351221385344,0.0,13.51979778389176,-1.2649762905598747,-11.00008168774845,-6.764942821716983,-31.46580719158884,-20.48968273546684,-9.233133979042334,-7.8580186249552355,0.3448275862068966,37,1,5,0,1,1,3,0,3,4,1,8,11,0,0,0,4,5.7419000000000056,135.71169999999995,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,3,0,1,0,0,0,0,0,0,3,0,1,0,0,0,0,2,0,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6436,CC1(C)O[C@@H]2C[C@H]3[C@@H]4CCC5=CC(=O)C=C[C@]5(C)[C@@]4(F)[C@@H](O)C[C@]3(C)[C@]2(C(=O)CO)O1,0,20.139099348072556,-6.232653651738476,20.139099348072556,2.185557081782055,0.6935078414535659,434.5039999999996,403.2560000000002,434.21046693200077,170,0,0.21067790933675196,-0.3897124003667539,0.3897124003667539,0.21067790933675196,1.4838709677419355,2.3548387096774195,3.064516129032258,2.37109232012233,2091.4208817760164,49.29252873988395,45.82745421579241,14.827454215792406,26.94899425818826,23.638471979287793,8.321975398360067,7.078923995177639,7.078923995177639,5.431158433280347,5.431158433280347,4.042724440537816,4.042724440537816,-1.4100000000000004,1079045075219.0403,5.79752602413293,6.128734183503367,2.3077668757550227,224.75612141481298,19.69134228981452,6.558985242916289,28.623411675029843,2.8623993144652684,0.0,0.0,9.589074368143644,4.39041504767482,0.0,0.0,18.477068393400515,64.04547713463876,46.880626859901504,21.755345947091513,73.42282983456941,11.566489892729878,2.8623993144652684,0.0,22.61789630951972,82.11622591070017,6.558985242916289,23.729319768175966,0.0,0.0,0.0,4.39041504767482,0.0,0.0,60.422448668525796,19.06280027574374,22.61789630951972,92.65126620343655,23.729319768175966,0.0,0.0,0.0,93.06,146.58891712404204,20.555142817505402,4.39041504767482,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,41.12205490163999,300.80249763273457,0.0,28.12272511755032,7.794576063886439,-25.669986608400894,-22.55570989080545,-6.9920293880101765,-33.269147914567085,-24.7329250123878,0.0,0.75,31,2,6,4,1,5,0,0,0,6,2,7,8,3,1,4,5,2.4188000000000005,108.59860000000005,0,2,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,2,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3002977,Cc1nnc(C(C)C)n1C1C[C@@H]2CC[C@H](C1)N2CC[C@H](NC(=O)C1CCC(F)(F)CC1)c1ccccc1,0,15.640542915573223,-5.969486770723059,15.640542915573223,0.9547340431666345,0.473786196640125,513.6769999999996,472.3490000000003,513.3279173720011,202,0,0.24775638655326854,-0.34901299802056673,0.34901299802056673,0.24775638655326854,1.2432432432432432,1.945945945945946,2.5945945945945947,2.068917754310647,2719.6949321042293,62.342416792648606,58.9002452139821,17.900245213982107,33.70602467660842,30.215370191240904,9.768156595740948,6.890613586346072,6.890613586346072,4.469493453866638,4.469493453866638,2.886032095662659,2.886032095662659,-2.3499999999999996,899708231323097.6,6.184460439564335,10.793264412983513,5.737308182796479,276.42580560403604,9.87691300107973,11.648808995999854,1.4118420783282006,11.829708897446082,0.0,0.0,9.694446914922299,8.78083009534964,0.0,10.197363616602075,43.915877772907834,57.02581791829832,94.31933461636699,15.613202361541184,69.8175516045585,5.907179729351506,0.0,24.974186348532285,5.893957685363079,113.80005719070769,6.496859684315945,47.42435402601332,0.0,0.0,5.309813353288376,8.78083009534964,0.0,0.0,50.02672651370523,4.794537184071822,12.745849802658757,161.03245370312365,30.212093538316473,1.4118420783282006,0.0,0.0,63.050000000000004,194.29923104768181,21.24363985811446,8.78083009534964,0.0,0.0,0.0,0.0,0.0,0.0,10.197363616602075,39.79308165109437,386.0024914360625,0.0,13.370158846434542,4.344006547316382,-2.3940081951326615,-23.913426374610495,-30.832542774860194,-47.8849914682638,-18.69168801694631,0.0,0.6896551724137931,37,1,6,1,2,3,1,1,2,5,1,8,11,1,2,3,5,5.950920000000006,139.4826999999999,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,2,0,1,0,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3325,NC(N)=Nc1nc(CSCC/C(N)=N/S(N)(=O)=O)cs1,0,11.65080707384988,-5.27211542752014,11.65080707384988,0.23762037804713776,0.28661243847385526,337.4559999999998,322.33600000000007,337.04493572000035,112,0,0.3183666112666898,-0.3864017949147059,0.3864017949147059,0.3183666112666898,1.6,2.45,3.15,3.4879468420946584,1062.6103996089964,27.73168632863937,24.171736620819022,11.6212263636022,15.56390936485127,11.38154143193067,7.333789239793342,2.6528254719190723,5.116835629257339,1.2054830981519895,2.7692356989560074,0.6893956125926751,1.9537441186780322,-1.3699999999999999,8374518.160218035,5.119926717336136,7.422318703285096,7.275833665396974,145.82460669144177,17.15915092717882,8.65930394241367,14.43060703871304,5.131558479839333,0.0,10.209329170397666,0.0,10.109001757119238,25.17208666635572,15.734496871016162,0.0,0.0,31.363504418318612,7.064686551018681,29.307843504146074,50.23473283206396,0.0,4.9839785209472085,31.674289889067946,12.077881786479537,5.704956885150159,11.05004240451606,0.0,0.0,22.28417416335085,5.131558479839333,0.0,23.098670827325854,30.901906744927413,15.914286055547825,0.0,21.66216278936938,14.746230135384694,11.294736626625605,0.0,0.0,175.82999999999998,78.57556824217326,8.417796984328938,0.0,11.439433951452546,11.336785877934737,0.0,0.0,0.0,0.0,14.374094246664303,20.89004651981714,138.0408464562924,-0.12107682486064508,7.105897231225324,-2.153771385458084,-8.572289920155647,-2.664235517831314,0.0,-3.69658794502522,0.0,-5.27211542752014,0.375,20,8,9,0,0,0,0,1,1,6,4,12,8,0,0,0,1,-0.7679999999999998,83.0924,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,3,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +6918092,COc1cc([C@@H]2c3cc4c(cc3[C@@H](O[C@@H]3O[C@@H]5CO[C@@H](C)O[C@H]5[C@H](O)[C@H]3O)[C@H]3COC(=O)[C@H]23)OCO4)cc(OC)c1OP(=O)(O)O,0,14.76640408476088,-5.919113779242593,14.76640408476088,1.5057403434114407,0.24067931132058681,668.5410000000018,635.2770000000005,668.1506216060009,250,0,0.5245623988440508,-0.49268698062067884,0.5245623988440508,0.49268698062067884,1.0217391304347827,1.7826086956521738,2.4782608695652173,1.7250616397149843,2918.319378605219,60.9050484360768,54.47918624292177,22.373613433921683,35.18332978253567,27.854021100298166,13.181621425123158,8.648130708541549,9.725132085376519,6.04630897385832,6.452489957443354,4.310504461276173,4.699933951193671,-3.180000000000001,4689059924210454.0,11.186539734843127,11.808138096197045,5.366765669861059,308.39758511907644,57.37313012812668,27.06158922014039,35.530204070209415,18.219356046717643,0.0,13.79200241108402,14.585921982109781,4.565048284931329,0.0,0.0,0.0,47.71192142303984,20.012466707747475,67.95378079548549,116.27609852410407,13.79200241108402,5.724798628930537,0.0,11.787915370726157,55.67809667448248,33.938920988100946,40.86002930574416,0.0,28.747559166419524,23.471198976912014,0.0,28.747559166419524,7.822697123132171,102.4942549301095,33.043900238003395,11.787915370726157,75.26822043363615,24.16967483065318,0.0,0.0,0.0,207.35999999999999,184.80452391655734,23.067171030705346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.745864134052432,74.18786198827695,346.2629773277909,0.0,22.219116444960378,8.408365366948576,-6.371699305765982,-26.65614669126152,-8.069432448180624,-34.148536443655594,-17.14893548356276,-14.023486545051137,0.5517241379310345,46,4,16,1,4,5,2,0,2,16,4,17,14,0,3,3,7,1.1044999999999991,149.3526999999999,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3229,CCn1cc(C(=O)O)c(=O)c2cc(F)c(N3CCNCC3)nc21,0,15.677604284769462,-3.8980789137726823,15.677604284769462,0.2925264550264548,0.8639190651701679,320.32399999999967,303.188,320.1284686240005,122,0,0.3407248926033413,-0.4774970128323774,0.4774970128323774,0.3407248926033413,1.7391304347826086,2.5217391304347827,3.217391304347826,2.6695579884821856,1445.2004685389131,31.342416792648606,27.891563726400648,10.89156372640065,17.755995607356624,14.14288453566402,5.787422649700199,4.018025040051621,4.018025040051621,2.71915006156274,2.71915006156274,1.766688687406265,1.766688687406265,-2.4800000000000004,100247683.96894737,5.006141388975398,5.958730697592291,2.653353739414346,154.93283334920707,19.88563092303742,12.622470790792924,11.635083618880923,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,14.16893075269385,0.0,0.0,0.0,12.894310824958975,50.99402063792649,13.610775551486114,36.26698084373536,22.8205695010194,1.4311996572326342,14.86089152202694,0.0,13.348751801611623,30.887348468114254,33.81931382719331,0.0,0.0,15.638513476039396,10.208277825509848,0.0,0.0,46.6166303850614,6.496859684315945,5.817220841045895,37.771259135617804,17.009851102549877,1.4118420783282006,12.464601092465157,0.0,87.46000000000001,101.39125976715518,9.589074368143644,4.39041504767482,4.567099647791355,0.0,0.0,0.0,0.0,0.0,10.092786712054421,23.404420078114132,149.24661316044305,0.0,27.97396400576751,1.5405382005054897,-4.7178218404237535,-5.832537526756953,-1.6943074452003024,-1.6037122333501308,-22.912736320984884,0.0,0.4,23,2,7,0,1,1,0,2,2,7,2,8,4,0,1,1,3,0.6633000000000002,83.67700000000002,0,0,0,0,1,2,0,0,1,1,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +3386,CNCCC(Oc1ccc(C(F)(F)F)cc1)c1ccccc1,0,13.39996737658411,-5.443662817144512,13.39996737658411,0.9407165328124929,0.8517964099245681,309.3309999999996,291.18699999999995,309.1340488560005,118,0,0.41591405457582453,-0.4856952913159904,0.4856952913159904,0.41591405457582453,1.2727272727272727,1.9545454545454546,2.5454545454545454,3.1311208570791815,1284.8414028279014,31.712660280651686,28.489355304991502,10.489355304991502,17.690004911332647,14.36962219097762,5.422408595477661,3.481676229872443,3.481676229872443,2.0420560804037557,2.0420560804037557,1.1771618860472255,1.1771618860472255,-2.0099999999999993,76677267.3662504,4.741942169426651,7.312920644092164,4.4948540227076474,152.82074715469656,10.046676307088426,13.241371938562095,0.0,0.0,0.0,6.176298517443475,0.0,0.0,13.171245143024459,0.0,30.212093538316473,43.20581290694837,15.968234794520917,19.271037053399194,42.62284563004646,0.0,0.0,5.309813353288376,0.0,18.62924144572284,13.47268658459819,65.50867135236365,0.0,5.749511833283905,10.046676307088426,13.171245143024459,5.749511833283905,0.0,13.47268658459819,6.176298517443475,0.0,46.882741366567124,54.38176836896965,1.4118420783282006,0.0,0.0,21.259999999999998,108.66992456925698,13.171245143024459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.451600487021985,187.1695876684326,0.0,0.0,-0.9407165328124929,-3.644082382481102,-1.6297217498110357,-13.34218653847622,-13.934854120054572,-7.928026344797183,0.0,0.29411764705882354,22,1,2,0,0,0,2,0,2,2,1,5,7,0,0,0,2,4.435000000000003,79.79870000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2378,c1ccc(-c2ccc(C(c3ccccc3)n3ccnc3)cc2)cc1,0,9.481257663559251,-3.188470280087344,9.481257663559251,0.31720973998210655,0.5071355444295608,310.3999999999997,292.25600000000003,310.1469985760005,116,0,0.10433275096221681,-0.32585382812485075,0.32585382812485075,0.10433275096221681,0.75,1.3333333333333333,1.9583333333333333,2.281262937142034,1742.7016405692407,31.908812703358322,29.894427190999917,11.894427190999917,19.330809894269144,15.618033988749897,6.618033988749896,4.369427190999915,4.369427190999915,2.939918693812441,2.939918693812441,1.9288118960624616,1.9288118960624616,-3.129999999999999,765030429.3126451,4.700155880145586,6.548506444939078,2.863937426311997,166.89587674366237,4.567099647791355,1.3707585561702202,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,84.59386190728614,22.253805966787983,12.345790421629522,35.624159637209615,24.673654011063956,0.0,0.0,9.551078168738563,0.0,6.017892468349645,0.0,114.36992702627589,0.0,11.126902983393991,0.0,0.0,0.0,0.0,9.551078168738563,0.0,0.0,41.818449462807614,103.2430240428819,0.0,11.126902983393991,0.0,17.82,131.51472247801954,1.3707585561702202,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,4.9839785209472085,23.302895454893736,150.32914371526348,0.0,3.4799802864555467,0.0,-3.393195226156986,0.0,-16.32031185949924,-2.8456169160627898,0.0,0.0,0.045454545454545456,24,0,2,0,0,0,3,1,4,2,0,2,4,0,0,0,4,5.187800000000005,97.78800000000003,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +44555928,O=C(NCc1cc(C(F)(F)F)ccc1F)[C@](O)(c1ccccc1)C(F)(F)F,0,14.747621861155185,-6.333010151591504,14.747621861155185,1.2783596122763032,0.7717508072960467,395.27399999999983,383.17800000000005,395.07562616400037,146,0,0.43022835554915784,-0.3685063824921954,0.43022835554915784,0.3685063824921954,1.1111111111111112,1.7407407407407407,2.259259259259259,2.998592700332822,1322.4874686331027,30.790010549841313,24.409461487492273,12.409461487492273,17.438222139173106,12.283799427459936,6.4283375414961155,4.644445954596241,4.644445954596241,2.871899000804965,2.871899000804965,1.5911113621351667,1.5911113621351667,-2.619999999999999,59127425.56145953,9.537710165663709,7.181779086788439,4.21059608428898,164.98194664625484,10.418621544395588,5.817220841045895,1.4118420783282006,1.4311996572326342,11.508230540335195,12.35259703488695,4.794537184071822,4.39041504767482,26.34249028604892,0.0,30.212093538316473,18.127256122989884,17.623762667709936,19.271037053399194,55.7556783489332,5.907179729351506,1.4311996572326342,5.309813353288376,0.0,24.45050753018658,0.0,70.84692497744325,0.0,0.0,5.309813353288376,30.732905333723743,0.0,0.0,18.62348609513483,23.068746196814928,5.817220841045895,30.397940036793184,48.33934966130636,1.4118420783282006,0.0,0.0,49.33,106.51442559026974,35.52744251779556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,16.550627297263034,188.32675634783766,0.0,13.039217647707229,1.982286522633744,-11.959339445418767,-5.56700976559382,-14.096831320419174,-12.048605709536051,-4.509807610544221,0.0,0.23529411764705882,27,2,3,0,0,0,2,0,2,2,2,10,5,0,0,0,2,3.910800000000001,79.64250000000003,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6216,CC(=O)OCC(=O)[C@@]1(O)[C@H](OC(C)=O)C[C@H]2[C@@H]3CCC4=CC(=O)C=C[C@]4(C)[C@@]3(F)[C@@H](O)C[C@@]21C,0,20.178359197195096,-6.377965469692113,20.178359197195096,2.258098260679377,0.5855060519155003,478.5129999999997,447.26500000000027,478.20029617200083,186,0,0.30256569469468375,-0.4589531200440186,0.4589531200440186,0.30256569469468375,1.3823529411764706,2.2058823529411766,2.8823529411764706,2.6964547022976992,2211.10828155003,51.947229278263194,47.143950796720134,16.143950796720134,28.290434865498323,24.046720269751656,8.73022368882393,7.037257328510972,7.037257328510972,5.227034288048417,5.227034288048417,3.6787204075105784,3.6787204075105784,-2.3899999999999997,2810535962843.692,6.880358687715146,7.812620009868033,3.086801125193764,240.4499388828264,19.69134228981452,6.080018026949988,23.61204081901059,8.645644260830208,0.0,11.938610575903699,19.178148736287287,4.39041504767482,0.0,0.0,18.477068393400515,50.341692900047406,60.5844110944929,15.675327920141527,83.01190420271301,23.50510046863358,2.8623993144652684,0.0,22.61789630951972,76.32911475812956,6.558985242916289,23.729319768175966,0.0,0.0,0.0,4.39041504767482,0.0,0.0,66.57394809185891,28.651874643887382,22.61789630951972,92.65126620343655,23.729319768175966,0.0,0.0,0.0,127.2,152.74041654737513,25.349680001577223,9.184952231746642,0.0,0.0,0.0,0.0,0.0,0.0,19.69134228981452,31.648328994039886,294.7729451769279,0.0,54.04512020579216,8.23054809035261,-26.575201530911684,-24.455968813827013,-7.224030320787207,-34.45266141377097,-24.75741806044255,0.0,0.68,34,2,8,4,0,4,0,0,0,8,2,9,10,3,0,3,4,1.7620999999999991,115.88160000000005,0,2,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,5,0,0,0,2,2,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +41684,CC(=O)Oc1ccccc1C(=O)Nc1ncc([N+](=O)[O-])s1,0,12.718288926681783,-3.325926159637156,12.718288926681783,0.09895455404384013,0.40102665606831556,307.2869999999998,298.215,307.02629138800023,108,0,0.34518081377713905,-0.4258727084165106,0.4258727084165106,0.34518081377713905,1.5714285714285714,2.3333333333333335,3.0,2.6379346549876623,1070.8217806476314,23.126873843024782,18.791130529283052,10.60762711021078,13.67833423594092,9.405140827311554,5.774423812739323,3.181105065391167,4.137075913360196,1.85988030856736,2.658736137188477,1.1173027933788109,1.675904222016683,-2.81,2018979.0761170299,6.763855184521091,6.094683522610224,3.6006169333194515,134.78555338955965,4.736862953800049,11.922407044098666,6.543400558167534,0.0,5.907179729351506,10.970387264639715,25.01320599019759,4.9839785209472085,0.0,0.0,12.08483741532659,23.421623293261327,10.964167785806339,17.340555321365766,31.627158898451317,33.345911351765295,0.0,4.9839785209472085,0.0,6.851892117295679,5.309813353288376,46.020339801930504,0.0,5.749511833283905,10.046676307088426,10.132640456527199,5.749511833283905,11.336785877934737,21.783774587068233,4.794537184071822,10.114318268765572,28.175949242426253,30.34257004146794,1.4118420783282006,0.0,0.0,111.43,75.43986200639274,19.703392636909218,0.0,16.646599231223114,0.0,0.0,0.0,0.0,0.0,9.720841474747257,12.377910527689961,71.67426516248676,0.17026203073822033,37.65780734781338,9.253322034270303,-1.0713114134542703,-4.586148438318801,-4.002888538679934,-0.8527153585518483,-3.325926159637156,0.0,0.08333333333333333,21,1,8,0,0,0,1,1,2,7,1,9,5,0,0,0,2,2.2289000000000003,74.47260000000001,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +9864311,CC(C)CNc1nc(-c2ccc(S(C)(=O)=O)cc2)cc(C(F)(F)F)n1,0,13.897668056158544,-5.674905898641474,13.897668056158544,0.9158445874778849,0.8664569606466747,373.3999999999997,355.25600000000003,373.10718247600056,136,0,0.43306169465027283,-0.3539380812384425,0.43306169465027283,0.3539380812384425,1.36,2.04,2.6,3.1128985862030967,1509.4567066578804,34.265066523458984,29.700279076919145,12.51677565784687,18.796453514110983,14.84738271531087,7.383332367405304,4.149747192967759,5.564869058818174,2.3042193212987785,3.0458009450959747,1.3554088109306415,1.72619962282924,-2.16,206225478.09208465,6.223261007059579,6.988899899910519,5.154238407737224,169.13683838326588,5.309813353288376,0.0,16.943023209594163,5.948339280986494,0.0,6.176298517443475,0.0,18.385754026223353,13.171245143024459,0.0,25.78862164991795,24.02121380835296,34.69333795117204,17.443204251217335,46.30377966057536,15.785592417403997,0.0,9.967957041894417,5.893957685363079,24.775566227552606,17.99059713872078,35.90602153316493,0.0,11.257379486545457,5.309813353288376,19.119584424010952,0.0,0.0,31.06653781165576,16.013551653860976,5.893957685363079,42.700607684333576,35.107577013834245,1.4118420783282006,11.257379486545457,0.0,71.95,111.60911448875086,21.589042127353395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,24.71473753322194,204.75327696684926,0.0,4.407089740382939,-0.9158445874778849,-5.273253771415975,-6.1154244766106,-8.160452181771852,-9.594828351874543,-12.41880851197875,-5.598421492769278,0.375,25,1,5,0,0,0,1,1,2,5,1,9,8,0,0,0,2,3.6338000000000017,88.90750000000006,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +6509979,CC[C@@H]1/C=C(\C)C[C@H](C)C[C@H](OC)[C@H]2O[C@@](O)(C(=O)C(=O)N3CCCC[C@H]3C(=O)O[C@H](/C(C)=C/[C@@H]3CC[C@H](Cl)[C@H](OC)C3)[C@H](C)[C@@H](O)CC1=O)[C@H](C)C[C@@H]2OC,0,16.483221047918065,-7.257640490597067,16.483221047918065,2.5121069284799153,0.1464409750467884,810.4660000000026,741.922,809.4480896760019,318,0,0.32897930018737237,-0.45593099482279714,0.45593099482279714,0.32897930018737237,1.1071428571428572,1.9285714285714286,2.625,3.1109574984111794,4292.812017673442,100.64589989101246,94.81590926361167,27.571838209630133,52.9730857129718,47.69228553439318,14.253753426474683,9.712297821460766,10.090262294469992,6.235142537143047,6.501276448628706,3.7851026725907206,3.91816962833355,-2.19,2.4249784422664117e+41,9.633776367303685,20.671775641403574,10.893164758319791,434.2410056308556,38.80184088206515,23.96117346861456,0.0,8.649510467035865,11.690424675716445,5.969305287951849,14.383611552215466,4.794537184071822,0.0,11.600939890232516,45.08481649132312,94.79405314868059,117.46192571455275,54.34686562627137,143.55014459473628,35.043914800265746,2.8623993144652684,4.899909730850478,29.46978842681539,164.85177790842485,27.61071706096371,23.25035255220967,0.0,0.0,0.0,0.0,0.0,11.600939890232516,122.6718686885547,42.86246350528753,29.46978842681539,201.6835913256315,23.25035255220967,0.0,0.0,0.0,158.12999999999997,273.5255205892974,31.527446791915054,19.178148736287287,0.0,0.0,0.0,0.0,0.0,0.0,29.16506819741462,78.14282007381732,629.3787200832421,5.975697196573683,62.79047506257298,2.8635955598090366,-8.063387706719674,-58.02583405963933,-14.698117987040897,-107.32515200627047,-41.705599589169125,-15.495952108914064,0.813953488372093,56,2,12,1,3,4,0,0,0,11,2,13,17,1,2,3,4,5.7194000000000065,211.7035999999992,0,2,0,0,0,0,0,0,0,0,4,4,0,0,0,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0,0,3,0,0,0,1,5,0,0,1,0,0,0,0,0,0,2,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4754,CCOc1ccc(NC(C)=O)cc1,0,11.658423306841867,-3.353018313807004,11.658423306841867,0.3234843868102799,0.7706788668096719,179.2190000000001,166.11499999999998,179.094628656,70,0,0.22074743631883423,-0.4938874337901201,0.4938874337901201,0.22074743631883423,1.7692307692307692,2.5384615384615383,3.1538461538461537,3.5499028233837158,694.1007603199397,20.825908934703556,19.263710176427686,6.263710176427685,11.431245097456372,9.506799626695711,3.0595860311957526,1.798811051497315,1.798811051497315,0.9553072251861522,0.9553072251861522,0.5539417536951968,0.5539417536951968,-1.5100000000000002,134198.67882427547,2.1081108079713875,4.499571342364573,3.15128754635011,96.03877422466195,10.046676307088426,5.749511833283905,1.4118420783282006,5.907179729351506,0.0,0.0,4.794537184071822,0.0,0.0,0.0,0.0,31.02156694794886,20.76382972900056,14.783536579937607,27.392344890242704,11.594566004035068,0.0,0.0,0.0,13.703784234591359,11.868798596204664,24.16967483065318,0.0,5.749511833283905,10.046676307088426,5.687386274683562,5.749511833283905,0.0,12.466164972267794,4.794537184071822,0.0,30.152886908633995,24.16967483065318,1.4118420783282006,0.0,0.0,38.33,61.776522145479795,4.794537184071822,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,4.736862953800049,17.86094475237084,99.67208582184277,0.0,11.658423306841867,-0.3234843868102799,-0.9972963907785333,-2.84315054957168,-4.306187641723354,0.0,-9.94372349313412,0.0,0.3,13,1,3,0,0,0,1,0,1,2,1,3,5,0,0,0,1,2.0437,51.914700000000025,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5719,CCN(C(C)=O)c1cccc(-c2ccnc3c(C#N)cnn23)c1,0,12.87053002279373,-3.8439430422204612,12.87053002279373,0.4550221902032423,0.745264084409057,305.34099999999967,290.22099999999995,305.12766010000047,114,0,0.22334535305381503,-0.31293310289727005,0.31293310289727005,0.22334535305381503,1.565217391304348,2.4782608695652173,3.260869565217391,2.605770122944617,1532.6836252617402,29.281574381404035,26.144316267963653,11.144316267963655,17.194500656212497,13.416585324981742,5.916585324981743,4.007203547533326,4.007203547533326,2.7328543372798797,2.7328543372798797,1.7649087719255714,1.7649087719255714,-3.2,69341768.62893045,5.167556710775048,5.890384082908113,2.5295627467058224,154.22761077728714,4.899909730850478,11.63267280448927,5.647177220767728,5.907179729351506,0.0,0.0,4.794537184071822,9.499376414562832,10.360573363039524,0.0,12.08483741532659,24.979148240285564,41.738553228168726,21.46213309885476,25.355915526625118,17.241743224802796,5.261891554738487,14.598058222863868,0.0,13.703784234591359,11.396769415166423,48.12133545164299,0.0,17.32660079933773,4.899909730850478,5.687386274683562,0.0,0.0,27.002097636531317,4.794537184071822,11.33111286753076,39.82861406884167,42.557883959946,0.0,16.904556707313183,0.0,74.28999999999999,101.72101181274903,10.056428738810308,0.0,0.0,4.5153978936156225,0.0,0.0,6.069221312792274,0.0,10.082660329248245,20.561378342553297,119.2171822362574,0.0,16.113528353260495,13.063036880327592,-3.7780420617958947,-2.1433715136141176,-3.7989580465897186,-1.5095731726970452,-11.247136008482062,0.0,0.17647058823529413,23,0,6,0,0,0,1,2,3,5,0,6,5,0,0,0,3,2.6407800000000003,86.83900000000004,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5578,COc1cc(Cc2cnc(N)nc2N)cc(OC)c1OC,0,8.630250968442933,-3.4634899744065075,8.630250968442933,0.22050820666129,0.8533555071280713,290.32299999999964,272.179,290.1378904360005,112,0,0.22143163563823992,-0.4927044563207831,0.4927044563207831,0.22143163563823992,1.2380952380952381,2.0,2.619047619047619,3.124812513959972,1182.7294919496758,30.463737136208252,28.013599253391423,10.013599253391423,17.370533691877206,13.855240039891298,5.066385657891464,3.3775756479186403,3.3775756479186403,2.142919364529086,2.142919364529086,1.3142612284037736,1.3142612284037736,-2.7,45974862.92461024,3.9366393778435853,6.167313394785921,3.07337613550987,147.92967435956038,25.650022812852693,5.817862777835028,17.14639197988061,11.6978511142704,0.0,0.0,0.0,4.9839785209472085,4.9839785209472085,0.0,0.0,17.648288907023584,20.850788716181576,37.562960050690414,39.04857696109604,11.766202058821523,0.0,9.967957041894417,0.0,6.372924901329379,32.553291328100315,29.38463560953534,0.0,17.248535499851716,25.650022812852693,11.766202058821523,17.248535499851716,0.0,31.081814418542184,6.372924901329379,0.0,30.317522769777067,18.25773262614135,5.6473683133128025,0.0,0.0,105.51,85.88615544618573,0.0,0.0,11.439433951452546,0.0,0.0,0.0,0.0,0.0,24.178545903294562,24.83798809969588,151.92234330326406,0.0,6.885756529425359,0.0,-2.939447651680956,-6.031921572628643,-2.7281219030822204,-4.570158034664483,0.0,-10.371784003966425,0.2857142857142857,21,4,7,0,0,0,1,1,2,7,2,7,10,0,0,0,2,1.2575999999999998,79.76080000000003,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +115366,COC(=O)[C@H](c1ccccc1Cl)N1CCc2sccc2C1,0,13.32122724552784,-3.906275982615269,13.32122724552784,0.25058211780358786,0.807761185070717,321.8289999999998,305.7010000000001,321.05902743200045,110,0,0.32730142953770475,-0.4675861660323905,0.4675861660323905,0.32730142953770475,1.619047619047619,2.4761904761904763,3.3333333333333335,2.5715928386217963,1277.917336055632,28.842416792648606,26.049922939900775,11.622348466846955,16.46782635766556,13.380423355914209,6.574884409851162,3.644373870274634,4.838834924211588,2.4492228927299156,3.447130755798596,1.5742338561939435,2.308794665998202,-1.3599999999999999,31620848.888265595,4.816527785463494,6.178250993598703,2.838691255205235,155.13037735814353,4.736862953800049,6.017892468349645,0.0,0.0,0.0,5.969305287951849,4.899909730850478,4.794537184071822,0.0,11.336785877934737,29.7281960132224,34.94077970971756,31.118051213095832,20.745538020584785,31.463537036595383,28.907031056119102,0.0,4.899909730850478,0.0,18.88767705399497,13.534812143198533,56.59489143882068,0.0,0.0,0.0,0.0,0.0,22.937725768167255,24.404027162000858,22.401184723517197,0.0,43.95407954416848,35.56820794798407,5.022633313741326,0.0,0.0,29.54,99.88659565481653,4.794537184071822,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,4.736862953800049,33.53307678895604,134.1600745849708,6.32863961549402,12.17898409286554,-1.7548558505298515,-2.2433647224321818,-2.264548374905517,-9.145738703928416,-3.335434382086169,-7.282594560972537,-3.6133839206979124,0.3125,21,0,3,0,1,1,1,1,2,4,0,5,4,0,0,0,3,3.6739000000000024,84.64200000000004,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +5462501,C[C@H](N[C@@H](CCc1ccccc1)C(=O)O)C(=O)N1CCC[C@H]1C(=O)O,0,14.047292089190538,-5.037084225665579,14.047292089190538,1.1501836319993861,0.6499831585979154,348.3989999999996,324.20700000000005,348.16852186800065,136,0,0.32591549414003096,-0.48008040708619093,0.48008040708619093,0.32591549414003096,1.6,2.4,3.08,3.145089080508263,1536.2760609126165,39.265066523458984,35.93566864331923,11.935668643319232,21.56959697609929,17.90236489133724,6.138654714909553,3.9849049091638977,3.9849049091638977,2.3940871977511775,2.3940871977511775,1.3738459495659843,1.3738459495659843,-2.41,3552446722.512141,4.649327145642053,8.617804043675026,5.029020566379821,180.13829614958203,15.117526113064901,13.447627015027491,0.0,5.907179729351506,2.8623993144652684,11.938610575903699,14.898887721432018,4.794537184071822,0.0,0.0,30.212093538316473,37.90704321431019,24.3167209145288,16.983960917711403,54.79899969233276,17.845790305255207,2.8623993144652684,10.209723084138854,0.0,50.39726912766213,6.496859684315945,35.77554503001347,0.0,0.0,5.309813353288376,0.0,0.0,0.0,57.513853507684985,20.756536453544843,0.0,60.3200479925555,30.212093538316473,1.4118420783282006,2.8623993144652684,0.0,106.94000000000001,120.72518723138563,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,33.060171072368085,192.6263904156827,0.0,38.412726295766916,5.485271313873701,-1.6780270347604398,-8.529614109531153,-21.269898096680546,-17.706865431828533,-9.089983352522642,0.0,0.5,25,3,7,0,1,1,1,0,1,6,3,7,9,0,1,1,2,1.1261000000000003,91.15530000000005,2,0,0,0,0,0,0,0,2,2,3,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +656583,C[C@]12CC[C@H]3[C@@H](CC[C@@]45O[C@@H]4C(O)=C(C#N)C[C@]35C)[C@@H]1CC[C@@H]2O,0,10.096958101747738,-5.363163855820109,10.096958101747738,1.0515390193420502,0.6672313604458664,329.43999999999954,302.22400000000005,329.19909372400076,130,0,0.29276840212106303,-0.5083767090650234,0.5083767090650234,0.29276840212106303,1.3333333333333333,2.2916666666666665,3.0416666666666665,2.30732256277908,1696.2888658345864,40.483127663125444,38.671958466891546,11.671958466891548,22.15916069879015,20.106599959605433,6.790103378677705,5.757424125034647,5.757424125034647,4.549090791701313,4.549090791701313,3.2098246476453007,3.2098246476453007,-1.05,12696081127.841782,3.7989960411976544,4.370502630650738,1.484316629142577,181.1565288376877,14.954479336014472,17.44023370958985,0.0,1.4311996572326342,1.4311996572326342,0.0,0.0,0.0,5.261891554738487,0.0,13.703784234591359,67.70733783479166,36.942437261311845,20.46386098215197,49.22344324027001,0.0,8.124290869203755,0.0,28.5118539948828,76.07534540878066,0.0,11.332269401725444,0.0,6.069221312792274,0.0,0.0,0.0,0.0,29.40990290433072,4.736862953800049,39.842966862413554,92.58322244815244,11.332269401725444,0.0,1.4311996572326342,0.0,76.78,115.91946880538893,12.115684335589586,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,10.217616382214425,35.01443339166972,245.3483869697889,0.0,0.0,18.403529761818,-16.23570016586882,-17.58961893194555,1.0515390193420502,-42.80927452098202,-9.585528798819297,0.0,0.85,24,2,4,4,1,5,0,0,0,4,2,4,4,3,1,4,5,3.466880000000002,87.88160000000005,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11292933,Cc1ccc2c(N3CCN(CCc4cccc(N5CCNC5=O)c4)CC3)cccc2n1,0,13.00930762227851,-4.612776413034353,13.00930762227851,0.35111608436400354,0.6936819584759024,415.54099999999966,386.3090000000002,415.2372105480008,160,0,0.3214965890473327,-0.3684186521352788,0.3684186521352788,0.3214965890473327,1.1612903225806452,2.032258064516129,2.838709677419355,1.8332553321237672,2330.5764292112526,46.75411216497906,44.14431626796365,15.144316267963655,26.598759086700266,22.808226111481613,8.361012515981658,5.689462556584779,5.689462556584779,3.768490119688605,3.768490119688605,2.4339727811049157,2.4339727811049157,-3.119999999999999,820685943350.9698,5.435030813940438,8.552852648469266,4.208283122584155,223.8206551065171,10.209723084138854,0.0,1.4118420783282006,0.0,0.0,6.031114512338072,14.783797982648164,4.794537184071822,0.0,0.0,18.127256122989884,55.04278075630182,83.01128666676436,28.819596172509996,44.587618835166204,28.30881199378625,0.0,15.193701605086062,0.0,13.224817018625059,55.277837251912565,65.63914785551512,0.0,0.0,15.109632814989332,16.169309733438947,0.0,0.0,61.393020554347366,6.372924901329379,6.851892117295679,49.63861905931165,54.38176836896965,1.4118420783282006,10.902924932081056,0.0,51.71,167.76042747312744,4.794537184071822,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,39.79308165109437,246.20272087888344,0.0,14.85748696959949,-1.6717869017379943,-6.865353808549479,0.0,-14.451772952200516,-4.386743210052352,-32.76788430927595,0.0,0.36,31,1,6,0,2,2,2,1,3,4,1,6,6,0,2,2,5,3.437520000000002,126.02370000000005,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,2,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +6398764,CC(C)OC(=O)OCOP(=O)(CO[C@H](C)Cn1cnc2c(N)ncnc21)OCOC(=O)OC(C)C,0,14.437395112786971,-7.474156136611194,14.437395112786971,0.34734046268709573,0.2310328956549481,519.4480000000002,489.2080000000003,519.1730287900009,196,0,0.5101648858156085,-0.43151440632966664,0.5101648858156085,0.43151440632966664,1.1428571428571428,1.8,2.3714285714285714,2.915147229058663,2050.537524197399,51.76722023457211,46.265764477638385,17.160191668638298,28.2874602269706,22.759562557001892,9.407794076512268,4.914123006072299,6.456781716582583,2.617559359662019,3.562241031664535,1.5004186286504453,2.0860998417079735,-3.0000000000000004,1671452047537.1865,7.748047367094986,13.185255198487713,9.64164201183432,243.48625329274103,33.971131392517876,26.344697416062004,14.288724155259157,13.490091169006394,0.0,19.906493585865405,13.612542608354964,24.54100993098527,0.0,0.0,0.0,34.2594605864784,20.561378342553297,40.6355953723237,88.0908554749214,36.88823430208442,0.0,19.51903521063298,0.0,58.99637435164429,25.509881792190868,12.606743427932454,0.0,0.0,5.719716975726273,15.40693714597867,0.0,7.595762326787885,69.85998536702506,43.79371706167115,0.0,72.6407001592446,12.606743427932454,2.8236841566564013,11.16387793838399,0.0,185.43999999999997,128.28151689812577,14.154122653074971,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,47.68374465526551,41.204923729422575,274.37001727518816,0.0,35.271650933084885,0.0,-2.493612206856664,-0.9885521565966371,0.0,-27.3792604365988,-35.33386504938761,-7.474156136611194,0.631578947368421,35,2,15,0,0,0,0,2,2,15,1,16,19,0,0,0,2,3.0356000000000014,120.06390000000003,0,0,0,1,0,4,0,0,0,0,2,2,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4011,CNCCCC12CCC(c3ccccc31)c1ccccc12,0,9.344962325207861,-4.46567696523054,9.344962325207861,0.9289411034475519,0.8254375445230729,277.41099999999955,254.22699999999992,277.1830497360006,108,0,0.12186618358485522,-0.31975136809052407,0.31975136809052407,0.12186618358485522,1.3333333333333333,2.0,2.6666666666666665,2.4696771747498834,1531.0779229993934,34.50555349946514,33.44721359549996,10.447213595499958,19.42820323027551,17.394427190999917,5.947213595499958,4.348606797749979,4.348606797749979,3.3618033988749896,3.3618033988749896,2.524651699437495,2.524651699437495,-1.5999999999999996,672860517.3491954,3.1865861941819165,4.993710782028756,1.8023658294971152,159.31861225338142,5.309813353288376,1.4118420783282006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.33934966130636,61.21819215670369,30.49956794114293,10.96606844936176,31.568530314073037,0.0,0.0,5.309813353288376,0.0,36.800647760077375,13.47268658459819,70.59315562809434,0.0,0.0,5.309813353288376,0.0,0.0,0.0,13.47268658459819,5.41499046939678,0.0,83.79615149321339,48.33934966130636,1.4118420783282006,0.0,0.0,12.03,126.17630332605832,4.1122756685106605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.456254645562378,195.09705750460955,0.0,0.0,-0.9289411034475519,-8.964568294910556,-3.446782289304612,-9.799809128962266,-16.92833640400606,-8.028620283978558,0.0,0.4,21,1,1,3,0,3,2,0,2,1,1,1,5,0,0,0,5,4.211400000000004,87.90170000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18283,Cc1cn([C@H]2C=C[C@@H](CO)O2)c(=O)[nH]c1=O,0,12.308608355379185,-3.4233622291509205,12.308608355379185,0.2397893046107331,0.6498890462135971,224.2160000000001,212.11999999999998,224.079706864,86,0,0.33022519570566533,-0.3933303909580823,0.3933303909580823,0.33022519570566533,1.9375,2.8125,3.5625,2.925404677947467,980.3333415883537,22.0330157158901,19.52742035285537,7.527420352855369,12.46990243981671,9.744116600873374,3.888654714909553,2.6101445994908326,2.6101445994908326,1.6034367767168247,1.6034367767168247,0.9436890453345678,0.9436890453345678,-1.66,511225.07467743667,3.4140021480299825,4.070238064132969,1.8434062253001617,107.81008514282121,9.84567114490726,6.080018026949988,7.615794888264755,1.4311996572326342,5.559266895052008,5.689743398203474,14.338640102092427,4.794537184071822,0.0,0.0,6.052071746035566,12.903963863331246,15.848622371022415,16.154295136107827,24.965098784937656,0.0,1.4311996572326342,9.544102918020606,0.0,19.135862954182222,6.558985242916289,44.678574855982006,0.0,0.0,11.24901029325548,0.0,0.0,0.0,28.72311403622673,4.736862953800049,6.851892117295679,25.474989863335747,27.866113071029535,1.4118420783282006,0.0,0.0,84.32,65.76135195516613,9.589074368143644,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,21.287490251063083,95.00043221068653,0.0,23.75416966478587,3.6873479360880155,-4.844950724888721,0.0,-2.7237221277399843,-8.138433956916103,-6.734843002015623,0.0,0.4,16,2,6,0,1,1,0,1,1,5,2,6,4,0,0,0,2,-0.7090799999999999,56.19550000000001,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34359,C[C@@](Cc1ccc(O)c(O)c1)(NN)C(=O)O,0,12.374593647644243,-4.008010322184429,12.374593647644243,0.7822446617535905,0.27902660017928355,226.2320000000001,212.11999999999998,226.095356928,88,0,0.32475423945938264,-0.5042598930766079,0.5042598930766079,0.32475423945938264,1.875,2.75,3.375,4.2396590946720565,817.1381217274625,23.817472766266278,21.52742035285537,7.527420352855369,13.586875836396386,10.30648903656917,3.7401033786777056,2.6311159656540966,2.6311159656540966,1.4971037494855524,1.4971037494855524,0.7378351555618212,0.7378351555618212,-1.79,1094846.5286190847,3.115971959682038,4.3777686661371735,2.4142442058702147,112.39905150801705,15.326424573321638,9.774451487367948,11.49902366656781,0.0,4.293598971697903,5.969305287951849,10.62325695290215,5.418816146392429,0.0,0.0,6.042418707663295,24.500181024319264,13.226717682180478,4.1122756685106605,35.32255644173981,5.969305287951849,4.293598971697903,5.418816146392429,5.828719768830327,18.763742271008404,0.0,23.69070761468688,0.0,11.49902366656781,11.247535915222755,0.0,11.49902366656781,0.0,29.697054428122104,11.167462085401201,0.0,23.38141205835443,18.127256122989884,4.235526234984602,1.4311996572326342,0.0,115.81000000000002,71.1703147554377,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,19.495193656044265,105.79308804694718,0.0,12.374593647644243,11.64713108623079,-6.1826855394935745,-5.146565544427649,-3.708449074074074,-3.9064611678004555,-3.953984788359791,0.0,0.3,16,6,6,0,0,0,1,0,1,6,5,6,8,0,0,0,1,-0.05310000000000015,56.839500000000015,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +156391,COc1ccc2cc([C@H](C)C(=O)O)ccc2c1,0,12.073727251817981,-3.5724790567627425,12.073727251817981,0.6748771730914582,0.8810778082204155,230.2630000000001,216.15099999999995,230.094294308,88,0,0.31018572532324495,-0.49674510424610224,0.49674510424610224,0.31018572532324495,1.4705882352941178,2.2941176470588234,3.0588235294117645,3.1368941047639702,1073.563182871799,24.26506652345898,22.22474487139159,8.22474487139159,13.912625572891221,11.22474487139159,4.316496580927726,2.9686436964131624,2.9686436964131624,1.9082482904638631,1.9082482904638631,1.135889663385923,1.135889663385923,-2.03,1913799.3146014826,3.2526784074698663,4.454042614687935,2.228492726961196,119.39839445104184,9.84567114490726,5.749511833283905,0.0,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,0.0,24.16967483065318,35.272629453248854,5.483034224680881,25.268737149777643,32.460069559191936,16.74175371688144,1.4311996572326342,0.0,0.0,12.745849802658757,7.037952458882589,41.81796373767676,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,18.11606593794165,4.794537184071822,0.0,36.12916252456862,36.25451224597977,0.0,12.203648086162225,0.0,46.53,84.09303154938345,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,19.251060887445494,112.14988326726085,0.0,12.073727251817981,2.2334720306983122,-1.1814446727765178,-6.395534761004188,-6.096228374065674,0.0,-3.5724790567627425,-3.128062351834675,0.21428571428571427,17,1,3,0,0,0,2,0,2,3,1,3,5,0,0,0,2,3.036500000000001,66.55080000000004,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +31098,CC(C)[N+]1(C)C2CCC1CC(OC(=O)C(CO)c1ccccc1)C2,0,14.125216600529093,-5.3184145094307,14.125216600529093,1.2192337561262903,0.6661029067869589,332.4639999999995,302.22400000000005,332.22202024009084,132,0,0.31555586610443015,-0.4613457760423656,0.4613457760423656,0.31555586610443015,1.5416666666666667,2.25,2.8333333333333335,2.740873658277908,1661.510224012696,43.45566544670048,41.671958466891546,11.671958466891548,23.36391373716434,21.119172062391506,6.210923771927642,4.412346555529002,4.412346555529002,3.0203454536793632,3.0203454536793632,1.8625679260729038,1.8625679260729038,-1.3899999999999997,21359662100.37222,3.5405093288391005,6.848749672552722,2.9755377262907485,186.8038219156979,14.328702002601887,11.973975712313067,0.0,1.4311996572326342,0.0,5.969305287951849,4.794537184071822,0.0,0.0,0.0,30.212093538316473,19.267235726288355,46.05307794787085,50.77910933463059,58.87523731561014,5.969305287951849,1.4311996572326342,0.0,0.0,69.22313695727087,13.534812143198534,35.77554503001347,0.0,0.0,0.0,0.0,0.0,0.0,54.66085156918377,9.53140013787187,0.0,90.40489114590528,30.212093538316473,0.0,0.0,0.0,46.53,128.98583027612938,7.536054296412263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,38.441680673828586,252.3258680645736,0.0,14.125216600529093,3.771121666833246,-1.7975132105949203,-7.50013896762409,-23.091487278594172,-25.496418329020475,-18.91998187943571,0.0,0.65,24,1,4,0,2,2,1,0,1,3,1,4,9,0,2,2,3,2.8541000000000016,93.51320000000007,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2725,CN(C)CCC(c1ccc(Cl)cc1)c1ccccn1,0,9.14427484882842,-4.243765825774757,9.14427484882842,0.7877737360376249,0.8240069237957237,274.7949999999996,255.64299999999994,274.12367628800047,100,0,0.08399085918377759,-0.30936473198175074,0.30936473198175074,0.08399085918377759,1.368421052631579,2.1578947368421053,2.8947368421052633,3.2769228039131235,1226.3464151119624,30.13531001146206,28.27239166400914,10.028320610027597,16.789358009941758,14.30701622525451,5.184980698263736,3.0834094275045296,3.4613739005137574,1.8410081126272546,2.0299903491318685,1.1227583049073637,1.2172494231596704,-1.3800000000000001,30183290.497422542,3.4389856255834608,6.68985926125854,4.049073463055102,146.29039527876398,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,29.7281960132224,56.554564708559994,37.86175832264006,10.96606844936176,26.044412567234176,11.600939890232516,0.0,9.883888251797686,0.0,12.266882586692457,20.448513484880436,64.7498389647446,0.0,0.0,0.0,0.0,0.0,11.600939890232516,30.332401736678126,0.0,0.0,49.56867464047213,48.46982616445782,5.022633313741326,0.0,0.0,16.130000000000003,102.36514476716799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,37.64535245746671,152.8369906768633,5.794600718954298,2.625731117549901,-0.7877737360376249,-2.698268140589568,-3.827391975308644,-7.904784729220905,-5.353250495156913,-11.991408992609397,0.0,0.3125,19,0,2,0,0,0,1,1,2,2,0,3,7,0,0,0,2,3.8186000000000027,80.70300000000005,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3383,O=C(O)c1ccccc1-c1c2ccc(=O)cc-2oc2cc(O)ccc12,0,12.5907299470778,-1.566576383639876,12.5907299470778,0.5710090702947841,0.5423525515473746,332.31099999999986,320.2150000000001,332.0684734840003,122,0,0.33581655088125206,-0.5078220140241356,0.5078220140241356,0.33581655088125206,1.04,1.92,2.76,2.513494160480777,1697.4056490685837,27.668325727352165,24.041241452319316,12.041241452319316,17.308743287837398,12.541241452319316,6.724744871391589,4.831016132108957,4.831016132108957,3.356058653543692,3.356058653543692,2.3811011749784257,2.3811011749784257,-3.599999999999999,101498800.66910459,6.721579519381721,5.488964511424407,2.4220510878256123,158.3205381046492,14.634767319267773,17.09277939380059,5.428790391900541,0.0,2.8623993144652684,5.969305287951849,4.794537184071822,4.794537184071822,0.0,0.0,18.127256122989884,35.77554503001347,28.597964613185376,19.271037053399194,33.13689006504179,16.938549644058888,2.8623993144652684,0.0,0.0,0.0,0.0,76.21096614430232,0.0,28.200113727249335,5.428790391900541,0.0,5.749511833283905,0.0,17.61812132739891,0.0,0.0,24.065574237471015,69.63587519775811,0.0,34.8510459073051,0.0,87.74,116.55509233153867,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,20.987135813220814,102.01891707847562,0.0,25.004016970233145,7.6711141974007235,-4.798002383051985,-3.055414357100865,-9.007298172623301,0.0,0.0,0.0,0.0,25,2,5,1,1,2,2,0,2,5,2,5,3,0,0,0,4,3.9686000000000012,93.16610000000003,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5035,O=C(c1ccc(OCCN2CCCCC2)cc1)c1c(-c2ccc(O)cc2)sc2cc(O)ccc12,0,14.674680369651695,-4.427170165753378,14.674680369651695,0.3403661076430142,0.31866432981090165,473.5939999999997,446.3780000000002,473.1660793440007,174,0,0.29309334222636046,-0.5079662370651968,0.5079662370651968,0.29309334222636046,1.0294117647058822,1.7647058823529411,2.5,1.7731041187312613,2448.071010538895,47.03013304691796,43.48845504781927,17.304951628747,27.519903706012304,22.416185990801182,9.916185990801184,6.201751482489424,7.222372208649082,4.0926020133503105,5.215284812125931,2.6922327692132364,3.7961868287062255,-3.3499999999999988,2533626011214.4385,7.089469074629892,9.872688730478913,4.786072749560392,240.51223762034678,14.954479336014472,23.807520742768002,5.783244946364939,0.0,2.8623993144652684,0.0,9.694446914922299,0.0,0.0,11.336785877934737,6.372924901329379,97.76962644728391,49.03615666638781,17.819861230212858,54.01798042434184,27.20617495523357,2.8623993144652684,4.899909730850478,0.0,19.118774703988137,26.049564295864123,77.59350876769025,0.0,27.68913418525001,4.736862953800049,0.0,17.248535499851716,11.336785877934737,49.81273466975924,0.0,0.0,69.30917877570951,66.46660578429623,0.0,20.52674281633219,0.0,70.0,171.22028076094185,4.794537184071822,0.0,0.0,11.336785877934737,0.0,0.0,0.0,0.0,10.217616382214425,41.86822617252083,228.23752440840374,0.3403661076430142,13.137403792450604,7.91810778212798,-2.883577817480253,-4.819992727815769,-12.314576594934916,-12.29614314237582,-17.235778474685254,0.0,0.25,34,2,5,0,1,1,3,1,4,6,2,6,9,0,1,1,5,6.075200000000007,136.25109999999998,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +6509849,CN(C)C(=O)CCS[C@H](SCCC(=O)O)c1cccc(/C=C/c2ccc3ccc(Cl)cc3n2)c1,1,13.33339186265961,-4.402918375682146,13.33339186265961,0.5471537217369138,0.29530986578080354,515.1,487.88400000000036,514.1151624040008,178,0,0.3036806131796202,-0.481208460260121,0.481208460260121,0.3036806131796202,1.2352941176470589,2.0294117647058822,2.823529411764706,2.53867181652584,2338.104549148206,47.87543250853871,43.31363311632846,18.702555224202364,27.2056779899134,21.89413353234189,10.496842876742708,5.4967252395074055,7.766101250574887,3.2283354097568813,5.10460503908782,1.9070960020716026,3.326860815214896,-2.479999999999999,892701505496.0121,8.015994834806865,12.835498160680253,8.077997253695157,251.16204172717835,10.00871792195769,0.0,0.0,5.907179729351506,1.4311996572326342,5.969305287951849,9.589074368143644,4.9839785209472085,0.0,23.52376989878223,47.865105174584556,41.34864956008274,61.333969786783435,38.59067794084139,50.337605019676616,70.00826323047029,1.4311996572326342,9.883888251797686,0.0,17.303871455663398,25.361567570864807,76.22523266095342,0.0,0.0,0.0,0.0,0.0,35.124709789014744,52.23074903107307,9.589074368143644,0.0,69.76442489433161,54.38176836896965,5.022633313741326,24.438268081384823,0.0,70.5,182.19790475856993,10.959832924313863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,47.30110345172068,217.25872391547554,4.126358490916458,28.47884321914051,2.357743318862597,-12.626778441120276,-4.898293278267749,-12.597098341522983,-8.436810312735581,-7.9682441263041035,0.0,0.2692307692307692,34,1,5,0,0,0,2,1,3,6,1,8,13,0,0,0,3,6.476600000000006,145.34379999999982,1,0,0,0,0,1,0,0,1,1,2,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0 +3158,CN(C)CCC=C1c2ccccc2COc2ccccc21,0,8.785336829176115,-4.128595049130766,8.785336829176115,0.7945644500083988,0.8428637069733037,279.3829999999995,258.2149999999999,279.1623142920006,108,0,0.127143343491757,-0.4882394427370874,0.4882394427370874,0.127143343491757,1.2857142857142858,2.0476190476190474,2.9047619047619047,2.720508631881899,1487.3303048199555,32.867360819030935,31.35546188596382,10.355461885963821,18.651329776737835,16.0790686837138,5.5790686837138,3.730461885963821,3.730461885963821,2.4509533887763473,2.4509533887763473,1.6285698033121223,1.6285698033121223,-2.0599999999999996,231006623.6304267,3.465516730420119,6.146844081766772,3.006125990520758,155.725417343858,9.636772684650527,12.308497076200194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.34900269967863,43.06700492302042,25.767896737715137,15.078344117872419,33.52279263337467,5.573104530069267,0.0,4.899909730850478,0.0,12.931910144245668,20.448513484880436,71.08177588243291,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,25.348423215730918,6.558985242916289,0.0,51.849209055995026,54.39142140734192,0.0,5.573104530069267,0.0,12.47,120.6847256057627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.52279263337467,175.7032627531933,0.0,-0.7945644500083988,0.0,-4.339929689468378,-1.0706746819098012,-10.257378897674261,-4.038053902116405,-15.119327798682738,0.0,0.2631578947368421,21,0,2,0,1,1,2,0,2,2,0,2,5,0,0,0,3,3.9624000000000033,87.46600000000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54459,c1ccc2c(c1)OCC(C1=NCCN1)O2,0,8.325666099773242,-3.2015306122448983,8.325666099773242,0.14099867724867732,0.7363733909281086,204.22900000000007,192.13299999999995,204.089877624,78,0,0.18907650703083798,-0.4853263116880222,0.4853263116880222,0.18907650703083798,1.6,2.466666666666667,3.2666666666666666,2.224386609713039,871.6383279463862,20.740122497076648,19.210923771927643,7.210923771927643,12.0828399916425,9.908137367427601,3.960923771927643,2.5643790467936296,2.5643790467936296,1.6474030585716246,1.6474030585716246,1.0273001438944862,1.0273001438944862,-1.7099999999999997,466706.2524723623,2.695390388456922,3.456117060671693,1.5168543768470162,104.83442914715553,14.783539260888475,12.394605028673558,18.990883771845997,0.0,0.0,0.0,4.992404732635669,0.0,0.0,0.0,12.08483741532659,12.08483741532659,6.496859684315945,21.575203802188362,25.963912103800713,5.835619785757269,0.0,5.309813353288376,4.992404732635669,6.080018026949988,19.55270461154818,24.16967483065318,0.0,11.49902366656781,14.783539260888475,0.0,11.49902366656781,0.0,31.468342424255432,0.0,0.0,15.078344117872419,29.16207956328885,1.4118420783282006,0.0,0.0,42.849999999999994,67.13704092147641,0.0,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,4.992404732635669,25.963912103800713,103.40611355190225,0.0,3.2991687137818086,-0.14099867724867732,0.0,-2.5223781179138323,-2.9902948895607624,-3.1278037603930455,-9.257140153901066,0.0,0.36363636363636365,15,1,4,0,2,2,1,0,1,4,1,4,1,0,0,0,3,0.8280999999999994,56.65770000000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2581,CC(C(=O)O)c1ccc2c(c1)[nH]c1ccc(Cl)cc12,0,12.146268815326355,-3.519300017846647,12.146268815326355,0.2758496840094058,0.7364039910992084,273.71899999999977,261.623,273.0556563040003,96,0,0.3101866893132586,-0.4807884945623711,0.4807884945623711,0.3101866893132586,1.4736842105263157,2.3684210526315788,3.1578947368421053,2.693193802988158,1283.9288694252016,23.790010549841313,21.14167464943691,9.897603595455367,14.13885776354667,10.899906008432255,5.422408595477663,3.6604567094448264,4.038421182454054,2.4826322578591866,2.6716144943638,1.6414965559613954,1.7832332333398555,-1.9999999999999996,3822332.7351963655,4.528616024973985,4.280618311533888,1.96,131.36211391867224,10.085811461336466,0.0,1.4118420783282006,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,0.0,23.685777305559107,36.58501843964585,32.31151740258432,14.118509022384398,25.02277301520943,39.37609504234648,1.4311996572326342,4.977003270229252,0.0,12.745849802658757,0.0,46.84059705141809,0.0,0.0,0.0,0.0,0.0,11.600939890232516,16.055116749288317,4.794537184071822,0.0,32.01688685605795,36.25451224597977,6.434475392069527,23.23704952139475,0.0,53.089999999999996,71.07245285964495,4.794537184071822,0.0,16.289149146545853,4.977003270229252,0.0,0.0,0.0,0.0,5.1088081911072125,28.151567187495548,95.16069502617394,5.920682727143164,12.557666050146208,2.5996371210776434,-2.0392445882674046,-5.352244233084182,-4.550114307564928,0.0,-3.519300017846647,0.0,0.13333333333333333,19,2,3,0,0,0,2,1,3,2,2,4,3,0,0,0,3,4.162600000000002,76.86550000000003,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9875401,O=C(NC[C@H]1CN(c2ccc(N3CCOCC3=O)cc2)C(=O)O1)c1ccc(Cl)s1,0,13.069102507674838,-3.97775089621478,13.069102507674838,0.29133946843315495,0.7792136827945353,435.8889999999998,417.7450000000001,435.0655693560004,152,0,0.41431489878227823,-0.4420457797826124,0.4420457797826124,0.41431489878227823,1.3448275862068966,2.0689655172413794,2.7586206896551726,1.8690072241777007,1709.5560301385046,36.35892465059366,31.66909500229228,15.24152052923846,21.040958542636552,16.26216752109179,8.509414979528783,4.883723751628219,6.506415968908926,3.100236950722813,4.188265558229992,1.9083652157808593,2.703357452263286,-2.6199999999999997,3667962549.940149,7.569512560313217,8.399184390047482,4.364459706287882,200.83365546378394,19.683448991738953,12.639003269866276,1.4118420783282006,0.0,11.814359458703011,6.093240070938415,14.48898409899412,4.794537184071822,0.0,11.336785877934737,11.600939890232516,36.25451224597977,17.87163223368307,52.06907627588889,48.57207499303754,52.2200978471758,0.0,5.309813353288376,0.0,6.080018026949988,42.408369000481365,45.4679884554267,0.0,0.0,15.109632814989332,16.169309733438947,0.0,22.937725768167255,56.59616709537182,14.268263091671919,0.0,32.974579832666855,36.25451224597977,5.7481710940738315,0.0,0.0,88.18,118.74874145345407,14.383611552215466,0.0,9.799819461700956,11.336785877934737,0.0,0.0,0.0,0.0,9.473725907600098,36.31567742345446,154.9761505125467,6.022477648007222,37.37926480324657,-0.652335906666091,-2.746254621819769,-3.7072524215894562,-7.329098324640218,-6.004387957687925,-18.827452620285914,0.0,0.3157894736842105,29,1,8,0,2,2,1,1,2,6,1,10,5,0,2,2,4,2.5199000000000007,108.89120000000001,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +219025,CCCCc1oc2ccc(NS(C)(=O)=O)cc2c1C(=O)c1ccc(OCCCN(CCCC)CCCC)cc1,0,14.96456750963582,-6.079381917042551,14.96456750963582,1.0562755916499142,0.13340703621721298,556.769000000002,512.4170000000004,556.2970935080011,214,0,0.22931921523658527,-0.493549659421198,0.493549659421198,0.22931921523658527,1.0256410256410255,1.7179487179487178,2.41025641025641,2.6409468921545667,3080.9532583494597,66.72916813859673,62.84391693378309,19.66041351471082,35.88449302433222,31.582293177059853,11.075142910360533,6.208463422521223,7.341170288012593,3.784505658598383,4.2074381358509525,2.4600052394124425,2.791650623747483,-2.8399999999999994,4315882251346693.5,6.622245752226404,15.080280684256092,9.391807871219712,295.3908047815153,14.053923621703873,17.09277939380059,7.19508702469314,10.023291153407584,0.0,0.0,9.509656797805953,8.417796984328938,0.0,0.0,39.674451055875174,80.78234992759246,76.1126374762782,30.64318784126172,82.72080805290183,32.463166730563124,0.0,4.899909730850478,0.0,71.53907556252206,36.94860801071471,59.184081355911495,0.0,5.749511833283905,9.45198256753418,5.687386274683562,5.749511833283905,0.0,51.33444005852493,16.396216054736964,0.0,145.79045616285225,46.714081890696406,1.4118420783282006,10.969244356107037,0.0,88.85,210.7843532238458,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.5084738845011,395.83188694942686,0.0,13.206651633457621,-1.616686181379819,-7.1419045698491175,-6.506631694623355,-13.085494052876122,-42.61385669976848,-34.077916800678146,-6.079381917042551,0.5161290322580645,39,1,7,0,0,0,2,1,3,6,1,8,22,0,0,0,3,7.0490000000000075,159.53499999999966,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +3403,CC(C)n1c(/C=C/C(O)CC(O)CC(=O)O)c(-c2ccc(F)cc2)c2ccccc21,1,14.853015037640777,-4.6554652097358185,14.853015037640777,0.33981329531225857,0.5047877346321323,411.4729999999997,385.26500000000016,411.1845865320007,158,0,0.30547265422898356,-0.4811594271156158,0.4811594271156158,0.30547265422898356,1.3333333333333333,2.1333333333333333,2.8333333333333335,2.996554655728704,2100.664638333726,44.01362518897291,40.458171230364634,14.458171230364636,25.11423738260334,20.401044082073867,7.676299210682277,5.265918595408648,5.265918595408648,3.40690792597511,3.40690792597511,2.378451190614774,2.378451190614774,-2.959999999999999,162716790767.6463,6.052458169956734,9.238133081538038,4.776902759937804,211.0481144149905,19.89352422111299,5.817220841045895,0.0,2.8623993144652684,1.4311996572326342,5.969305287951849,4.794537184071822,4.39041504767482,0.0,0.0,36.26416528435204,43.446563595313805,48.25870735000777,36.35282218544222,56.03882359698339,22.924301966068477,4.293598971697903,4.567099647791355,0.0,44.62756255949973,0.0,65.90257024323628,0.0,11.126902983393991,0.0,4.39041504767482,0.0,0.0,40.88526487743008,4.794537184071822,5.817220841045895,69.68890129236333,54.39142140734192,0.0,29.513099318743254,0.0,82.69,144.58133775219852,9.184952231746642,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,15.326424573321638,35.82104576361297,228.74883207073725,0.0,12.162473999052072,10.137741677925744,-5.803271023100343,-4.292093926526143,-19.8736863988477,-18.06676725464168,-8.429895811265874,0.0,0.2916666666666667,30,3,5,0,0,0,2,1,3,5,3,6,12,0,0,0,3,4.628100000000003,115.63440000000003,1,2,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11977753,Cn1c(=O)n(-c2ccc(C(C)(C)C#N)cc2)c2c3cc(-c4cnc5ccccc5c4)ccc3ncc21,0,14.363054094031112,-3.8295232154634524,14.363054094031112,0.0429619260017855,0.3236299364019045,469.54799999999983,446.36400000000026,469.1902603560007,174,0,0.33302647294881815,-0.2931592366657142,0.33302647294881815,0.2931592366657142,0.9444444444444444,1.75,2.5277777777777777,1.9137398261239433,2945.6460017570316,44.70977761167954,40.644316267963646,17.64431626796365,26.931257640669298,21.4137989204817,9.9137989204817,7.380445562209832,7.380445562209832,5.182535365584868,5.182535365584868,3.45687057615742,3.45687057615742,-4.759999999999999,1644584809310.6704,8.140376636586499,7.89109502524953,3.286018746240337,239.57176632123029,0.0,0.0,0.0,0.0,0.0,5.689743398203474,19.102156337477126,4.794537184071822,5.261891554738487,0.0,36.25451224597977,61.08519946396512,41.8214490372556,64.60191592453553,31.527446791915054,32.83925129939463,5.261891554738487,19.102156337477126,6.975826900282246,19.118774703988137,0.0,100.90254698756137,0.0,22.883510570869827,5.689743398203474,0.0,0.0,0.0,19.102156337477126,12.390817369679025,11.33111286753076,50.79468251820345,89.6493520976609,0.0,49.65354055747219,0.0,76.5,171.85615196523213,11.427187294980527,0.0,9.13419929558271,0.0,6.069221312792274,0.0,0.0,0.0,9.967957041894417,30.156688235744834,193.9299467295932,0.0,22.161440292083686,8.69747649209259,-12.85539290633758,0.0,-11.5222090987124,-2.0304246824506427,-11.214170159602258,0.0,0.13333333333333333,36,0,6,0,0,0,3,3,6,6,0,6,6,0,0,0,6,5.893780000000005,143.1929999999998,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +65016,CC(C)CN(C[C@@H](O)[C@H](Cc1ccccc1)NC(=O)O[C@H]1CCOC1)S(=O)(=O)c1ccc(N)cc1,0,15.063818139191026,-7.410066222808372,15.063818139191026,0.6573305470377249,0.39974037477190066,505.63699999999966,470.3570000000003,505.22465684000093,192,0,0.40731069925118296,-0.4436915137280932,0.4436915137280932,0.40731069925118296,1.457142857142857,2.2285714285714286,2.857142857142857,2.855313061475302,2480.87146234002,55.858924650593664,51.69937881974692,17.51587540067464,30.683839607724195,25.81269960150554,10.002873853342445,5.5885959619911745,7.312125303781463,3.2138792664386586,4.597201699509062,1.8929539739422732,2.850100722396289,-2.6599999999999993,24083751853504.734,6.606483051830983,12.345732221204479,7.9265893890495,256.2549300743961,25.61206442772196,6.080018026949988,4.235526234984602,11.454490810640218,0.0,6.093240070938415,0.0,13.212334168400758,4.305215991296234,0.0,43.915877772907834,42.00000890904263,45.61540888719816,52.04350135537355,74.52390974336954,21.80391749902956,1.4311996572326342,9.61502934458461,5.893957685363079,49.5230460350175,31.831406830190744,59.94521986066665,0.0,0.0,11.029530329014648,10.481923458755384,0.0,0.0,69.64587927161752,25.869941962337062,5.893957685363079,68.13367586889461,59.277251844487424,4.235526234984602,0.0,0.0,131.19,178.61257725485225,10.277571408752703,8.417796984328938,0.0,0.0,0.0,0.0,0.0,0.0,14.58253409870731,42.67720690881318,327.4335799093714,0.0,11.624811753914212,2.299733885442759,-4.245071309910491,-5.264027043840013,-21.8433337570168,-23.021884229923103,-29.490409651896336,-7.410066222808372,0.48,35,4,9,0,1,1,2,0,2,7,3,10,15,0,1,1,3,2.4028,133.23270000000002,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +598,O=S(=O)([O-])CCS,0,10.191319444444444,-5.404652777777776,10.191319444444444,0.40993055555555613,0.41487401500285953,141.19300000000004,136.153,140.96855959991,44,0,0.10224353050416761,-0.7479215963891982,0.7479215963891982,0.10224353050416761,2.0,2.5714285714285716,2.7142857142857144,5.129936338249771,257.8668976672794,10.207106781186548,8.041241452319316,4.674234614174767,5.060660171779822,3.5664965809277263,2.9747448713915894,0.6582482904638632,1.974744871391589,0.1666666666666667,0.75,0.0510310363079829,0.45927932677184585,0.2599999999999999,182.9850209866663,2.243925872877158,2.5385500296067867,6.26,54.59364418431185,4.552749873690364,1.1237991730321881,0.0,0.0,0.0,0.0,0.0,8.417796984328938,12.53269603815698,0.0,0.0,0.0,16.892947994981196,10.118126859033554,18.45358108270018,22.650822897190533,1.1237991730321881,0.0,0.0,0.0,11.409913770300317,0.0,0.0,0.0,0.0,0.0,0.0,12.53269603815698,25.504259801351807,10.118126859033554,0.0,5.483034224680881,0.0,0.0,0.0,0.0,57.2,34.06073666749085,12.9705468580193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.6068333977130695,63.71736111111111,-0.40993055555555613,0.0,0.0,-6.652777777777779,0.0,0.0,0.0,0.0,-5.404652777777776,1.0,7,0,3,0,0,0,0,0,0,4,1,5,3,0,0,0,0,-0.5385999999999997,28.417199999999994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4909,CCC1(c2ccccc2)C(=O)NCNC1=O,0,13.066216931216928,-4.016576908541197,13.066216931216928,0.6610166288737718,0.7116448391760646,218.2560000000001,204.14399999999998,218.105527688,84,0,0.24107687820318055,-0.33746571961989924,0.33746571961989924,0.24107687820318055,1.5,2.125,2.6875,3.1951834316278873,888.825804283546,23.77350269189626,21.710923771927643,7.710923771927643,13.306194762347367,10.947102672463696,4.05267548146378,2.8089119265669455,2.8089119265669455,2.0071869062653835,2.0071869062653835,1.1958050143874004,1.1958050143874004,-1.84,1136331.3921810824,2.884031454103089,3.9626300355797675,1.3773138680608406,113.82369348647703,10.619626706576751,0.0,8.23867462605318,11.814359458703011,0.0,0.0,9.589074368143644,0.0,0.0,0.0,37.06398565561216,11.936376393026375,6.853792780851101,16.21610436049405,28.86186119884268,11.814359458703011,0.0,10.619626706576751,0.0,18.639807488021837,6.620794467302512,35.77554503001347,0.0,0.0,10.619626706576751,0.0,0.0,0.0,18.435153926005523,15.004064837540422,0.0,35.2373711843647,30.212093538316473,2.8236841566564013,0.0,0.0,58.2,83.47013315061758,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.27278683069904,108.23606527410348,0.0,26.132433862433857,-1.3220332577475435,-5.254166666666666,-4.276563681027966,-5.863021056416394,-4.016576908541197,-7.302804232804235,0.0,0.3333333333333333,16,2,4,0,1,1,1,0,1,2,2,4,3,0,1,1,2,0.5378999999999999,59.56340000000003,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3702,CC1Cc2ccccc2N1NC(=O)c1ccc(Cl)c(S(N)(=O)=O)c1,0,13.516237087427559,-5.303429547419671,13.516237087427559,0.22016014739229028,0.8705249450646535,365.84199999999976,349.71400000000006,365.0600900520005,126,0,0.2693460358964807,-0.2819109464594856,0.2819109464594856,0.2693460358964807,1.5833333333333333,2.375,3.125,2.4510355992441917,1566.3326460358,31.23760430703402,27.352598421364554,12.925023948310736,17.9162371019881,13.825599225886679,7.801986241196671,4.282342280348133,6.01868772347754,2.732486683980289,3.950107284809407,1.7376362829167986,2.633163696885205,-2.0899999999999994,133829243.2945546,6.014326315266729,6.084269777305813,3.1017156119752642,167.4414193194178,0.0,7.719167632174177,1.4118420783282006,10.023291153407584,5.907179729351506,0.0,15.222265854418783,13.542820220500968,0.0,0.0,29.7281960132224,42.957943340975234,12.417244272548094,27.693980506136292,35.267721633598214,33.21879704767517,0.0,5.418816146392429,5.12502323617203,24.13819296249248,5.008912523954532,58.446467250778376,0.0,0.0,15.552751906518992,5.687386274683562,0.0,11.600939890232516,20.34286918203009,16.396216054736964,0.0,40.59319351497437,47.19241442916084,9.258159548725928,0.0,0.0,92.5,114.74635675327798,13.212334168400758,0.0,5.008912523954532,0.0,0.0,0.0,0.0,0.0,0.0,33.65632735542997,152.81968976275041,5.775247346984266,12.047666816458749,-2.2669304897051985,-4.211377182324227,-2.0045702632905016,-12.09352113227844,-3.524648710009463,-3.7936821567214816,-5.303429547419671,0.1875,24,3,6,0,1,1,2,0,2,4,2,8,5,0,0,0,3,2.0834,92.37840000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +9880,CC(=O)O[C@]1(C(C)=O)CC[C@H]2[C@@H]3C=C(Cl)C4=CC(=O)[C@@H]5C[C@@H]5[C@]4(C)[C@H]3CC[C@@]21C,0,14.449331470027639,-5.625094600340138,14.449331470027639,1.924833650312998,0.6166116116190477,416.94499999999965,387.7130000000002,416.1754370880008,156,0,0.3031419091021931,-0.4506405377719287,0.4506405377719287,0.3031419091021931,1.2758620689655173,2.103448275862069,2.8275862068965516,2.321084403567536,2042.5264511427026,46.248558665513926,43.01095763486468,14.766886580883135,25.0412874370971,22.45960296266427,8.337567435673499,6.667936295997604,7.045900769006832,5.189504519023554,5.472977873780474,3.760895891945613,4.044369246702532,-1.4200000000000002,172449219883.9243,5.309402831068135,5.83833477566321,2.2448295577144397,217.3700800883232,4.736862953800049,0.0,17.167540703713566,0.0,0.0,5.969305287951849,14.383611552215466,0.0,0.0,0.0,31.356795870859443,73.91752364149971,65.61859811016193,2.7415171123404405,58.87247263495195,29.13673507091424,0.0,0.0,40.29976936560895,64.87324378681329,0.0,22.709534374253998,0.0,0.0,0.0,0.0,0.0,11.600939890232516,23.136845991665414,19.120474506015512,40.29976936560895,99.02419110476589,22.709534374253998,0.0,0.0,0.0,60.440000000000005,145.41834270735797,25.349680001577223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,40.38686956980715,260.15605936045506,6.4116683118635684,41.331323883983416,-1.9411588115184342,-17.91055481223456,-32.70572662162128,-4.30001403308492,-25.487588386875014,-19.026231113190107,0.0,0.7083333333333334,29,0,4,5,0,5,0,0,0,4,0,5,6,3,0,3,5,4.607600000000004,108.95300000000003,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,1,1,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +644077,NC(=O)CC[C@@H]1NC(=O)[C@H](Cc2ccccc2)NC(=O)[C@H](Cc2ccc(O)cc2)NC(=O)[C@@H](N)CSSC[C@@H](C(=O)N2CCC[C@H]2C(=O)N[C@@H](CCCN=C(N)N)C(=O)NCC(N)=O)NC(=O)[C@H](CC(N)=O)NC1=O,0,16.62907420156965,-6.735978055016111,16.62907420156965,1.121294205308696,0.027022811595146724,1084.2530000000017,1018.7329999999993,1083.4378545200018,408,0,0.29309207049653996,-0.5079666451556014,0.5079666451556014,0.29309207049653996,0.84,1.4666666666666666,2.1333333333333333,2.7703025478015926,5312.91027044316,111.76773735395193,100.42367999899344,37.05667316084889,61.82378546130342,49.519881248626255,20.264404557924237,11.710695131873523,13.452276755670727,6.7421853110492895,8.128883642116278,3.957350289629345,5.142423326005617,-7.660000000000001,6.7797790833889e+48,16.17974609786377,29.89172950810018,20.289879200551795,531.1583903027057,81.49571324933396,50.69844326838781,29.96086990032323,64.97897702286656,1.4311996572326342,0.0,57.7323137574257,0.0,0.0,0.0,63.88472690641651,55.07636490536747,76.42061319100563,47.67360673356962,146.35785173179278,92.52632754438388,1.4311996572326342,42.06860320386911,39.310706586993305,105.49946385876157,30.90049282324815,65.50867135236365,0.0,5.749511833283905,71.48699532737626,0.0,5.749511833283905,21.587795952773448,161.42208174084604,65.48575882744879,0.0,117.42151232035941,59.37417310160532,26.8249994882358,0.0,0.0,463.9299999999998,376.571372470268,45.42797891431138,33.561760288502754,0.0,0.0,0.0,0.0,0.0,0.0,10.101212923742882,63.69050399510428,567.100951761525,0.0,169.4458984893506,-12.636591139396717,-25.805613387079237,-47.56471270794232,-70.06644153046916,-52.79864993133209,-16.12200268656019,-3.88617220142965,0.4782608695652174,75,20,27,0,2,2,2,0,2,16,14,29,21,0,2,2,4,-5.404500000000021,275.52209999999957,0,0,0,0,0,0,0,1,0,0,11,11,0,0,1,2,7,6,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +2801,CN(C)CCCN1c2ccccc2CCc2ccc(Cl)cc21,0,8.933107048374906,-4.460011574074078,8.933107048374906,0.23718490173847373,0.8178744322781548,314.85999999999956,291.676,314.15497641600064,116,0,0.06606758932398533,-0.3409480331776309,0.3409480331776309,0.06606758932398533,1.2272727272727273,2.0,2.8181818181818183,2.7463301854173405,1462.336363830402,35.58290376865477,33.77239166400914,11.528320610027599,19.767519627752552,17.280623023004487,6.158587496013715,3.9056230230044875,4.283587496013715,2.5250251070022025,2.714007343506816,1.6818999070567877,1.8186487380455203,-1.5099999999999993,653177196.08511,3.7612635298566923,6.719552325532733,3.2857132602320616,170.17451604395606,9.799819461700956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.770614720885696,68.82144729525244,44.826402446147945,9.59530989319154,31.527446791915054,22.97571243959964,0.0,4.899909730850478,0.0,19.118774703988137,31.845282900046858,58.446467250778376,0.0,0.0,4.899909730850478,11.374772549367124,0.0,11.600939890232516,31.84528290004686,12.745849802658759,0.0,49.02727467663846,42.29693095364306,5.022633313741326,0.0,0.0,6.48,120.78529740418053,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,0.0,43.1283866821476,190.67502821839847,6.045637174348618,-1.1669849055877504,-1.0042792579994957,-5.490234158478205,0.0,-8.708457744850993,-11.82260172587554,-16.666996488843985,0.0,0.3684210526315789,22,0,2,0,1,1,2,0,2,2,0,3,6,0,0,0,3,4.528400000000004,95.47900000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13109,C#C[C@]1(O)CC[C@H]2[C@@H]3CCC4=CC(=O)CC[C@@H]4[C@H]3CC[C@@]21CC,0,13.076155940316053,-5.346840513983375,13.076155940316053,1.11008189024513,0.7460501574652693,312.45299999999946,284.229,312.2089301360008,124,0,0.21221293552118367,-0.3770227702903542,0.3770227702903542,0.21221293552118367,1.565217391304348,2.5217391304347827,3.347826086956522,2.6529553825172116,1696.533219547216,40.85337115112852,39.316496580927726,11.316496580927726,22.058712952390003,20.316496580927726,6.408248290463863,5.010310363079829,5.010310363079829,3.8572172541558802,3.8572172541558802,2.672874145231931,2.672874145231931,-1.07,7565187742.032544,3.429045915046158,5.214170225517998,1.9555471707233982,178.70599117638548,5.1088081911072125,6.9718093671539085,5.783244946364939,1.4311996572326342,0.0,0.0,4.794537184071822,0.0,0.0,6.399401534821945,18.34543096622059,80.61130169812292,46.05687927498169,1.3707585561702202,46.913826391775004,5.783244946364939,1.4311996572326342,0.0,28.990821210849095,69.80926704024377,0.0,11.625176276104835,0.0,12.319835853677588,0.0,0.0,0.0,0.0,17.924303605688475,4.794537184071822,41.31065706452667,101.21869724585592,11.625176276104835,0.0,0.0,0.0,37.3,116.20850947356266,13.019088521093142,0.0,0.0,0.0,6.399401534821945,5.920434318855644,0.0,0.0,5.1088081911072125,30.21712933680725,246.12523837229998,0.0,13.076155940316053,4.352382893539774,-12.096800017846647,-21.718927369361182,-2.105186953907417,-42.528635907167455,-4.604226957873242,0.0,0.7619047619047619,23,1,2,4,0,4,0,0,0,2,1,2,3,3,0,3,4,3.8826000000000036,90.49280000000006,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +214350,COc1ccc(Cl)cc1[C@]1(F)C(=O)Nc2cc(C(F)(F)F)ccc21,0,16.652807382212142,-5.39773313535444,16.652807382212142,0.4909958427815573,0.7998531036451688,359.70599999999985,349.62600000000003,359.03361912000025,126,0,0.41598589742990905,-0.49632127967834705,0.49632127967834705,0.41598589742990905,1.2916666666666667,2.0416666666666665,2.7083333333333335,2.563602234996248,1252.7448554816626,26.290010549841313,21.15353254147382,11.909461487492274,15.279321308809692,10.95171080921878,6.382461686728047,4.541963639185516,4.919928112194745,3.1228546558553916,3.3118368923600054,2.0796696074543113,2.2214062848327716,-2.28,9727724.831819013,8.200950511433915,5.374435745509186,2.3946750615003247,152.84053361527992,10.046676307088426,5.749511833283905,1.4118420783282006,5.668759818745678,5.907179729351506,6.176298517443475,4.794537184071822,4.39041504767482,13.171245143024459,0.0,17.643358597895812,30.212093538316473,21.836922571818878,24.93823095611156,40.84172941243135,23.195505894267583,0.0,0.0,0.0,11.845058336189153,12.347765812170964,57.967500034812076,0.0,5.749511833283905,10.046676307088426,23.24904646538284,5.749511833283905,11.600939890232516,12.945132188234094,16.639595520260976,0.0,29.027181480622964,36.25451224597977,6.434475392069527,0.0,0.0,38.33,99.50440202049118,17.96578232709628,4.39041504767482,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,25.349608974092693,137.9975821107615,5.770953821177486,12.862344576719572,-1.4601313828000337,-10.348528692855743,-3.463728938334593,-8.492361845647604,-5.39773313535444,0.0,-3.4406187358883997,0.1875,24,1,3,0,1,1,2,0,2,2,1,8,3,0,0,0,3,4.532600000000002,79.96570000000001,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5475,CCN(CC)CCOc1ccc2c(c1)C(=O)c1cc(OCCN(CC)CC)ccc1-2,0,14.029254006124955,-4.586718945390419,14.029254006124955,0.9677500420571763,0.44432097625892203,410.5579999999995,376.2860000000001,410.256942948001,162,0,0.19404730334558676,-0.4922388816097425,0.4922388816097425,0.19404730334558676,0.7666666666666667,1.2,1.6,2.3358693552010545,1993.8200323441458,51.07446760021749,48.619172062391506,14.619172062391506,27.797106054010538,24.612261512659533,7.612261512659532,4.987261512659529,4.987261512659529,3.351541994479224,3.351541994479224,2.1274461007686045,2.1274461007686045,-2.3699999999999997,1553241550179.885,4.839487487443429,10.596799913423629,5.0241119726458505,227.90419056435746,19.273545369301054,24.616994152400387,5.783244946364939,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,27.407568469182717,73.36885396663753,57.01882770011122,13.7075855617022,60.87405400145946,5.783244946364939,0.0,9.799819461700956,0.0,27.407568469182717,52.099128591728245,47.38141522937376,0.0,22.6259266499618,9.473725907600098,0.0,11.49902366656781,0.0,67.68219299979414,0.0,0.0,89.93479954643598,36.25451224597977,0.0,11.126902983393991,0.0,42.01,165.0971033483125,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.07951681738763,283.09644761955207,0.0,11.725451403686785,0.0,-4.362034415133262,-4.942689609149194,-8.672656420949728,0.0,-52.17785191133994,0.0,0.48,30,0,5,1,0,1,2,0,2,5,0,5,16,0,0,0,3,4.339200000000004,121.87650000000006,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +656635,CCOC(=O)CN[C@@H](C(=O)N1CC[C@H]1C(=O)NCc1ccc(C(N)=NO)cc1)C1CCCCC1,0,15.109348137982504,-5.723120160153928,15.109348137982504,0.5067825757631881,0.13080898105232214,473.5739999999996,438.29400000000027,473.26381922000104,186,0,0.3296511411006223,-0.46503197653275646,0.46503197653275646,0.3296511411006223,1.4705882352941178,2.264705882352941,2.9705882352941178,2.5671667930161495,2258.427697312032,55.204224112214405,51.277309429819105,16.277309429819105,30.15941925848008,25.662758764208217,8.465656091744526,5.483421429781542,5.483421429781542,3.4618064985524635,3.4618064985524635,2.010282176264302,2.010282176264302,-3.1399999999999997,15061037167182.85,5.975136318953509,12.358447540463231,6.465737001672622,248.92271816613587,25.875836834708977,7.429734546677846,10.071146020741871,11.814359458703011,0.0,7.400504945184483,19.69342490550384,0.0,0.0,0.0,48.44416226139185,37.42807599834389,43.23082487139287,35.52284006962452,72.53133298271136,23.61928453241213,0.0,15.51953643742723,16.769387387839892,63.622086146287174,19.55270461154818,35.29657781404717,0.0,0.0,16.339343682303024,0.0,0.0,0.0,65.31721763255386,25.617334190331455,5.893957685363079,97.33910119377246,29.32538755740372,7.0785679705454365,0.0,0.0,146.35,169.22386420281128,12.330591480484083,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,15.102109501594386,45.45980754331162,291.64618959804693,0.0,41.336483687387485,3.4666666670886013,-3.4323405024287275,-16.367010444444162,-16.850577246220066,-29.157509523976806,-22.475235568786623,0.0,0.5833333333333334,34,5,10,1,1,2,1,0,1,7,4,10,12,1,1,2,3,1.099800000000003,125.91630000000004,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,2,2,1,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +20279,Nc1nc(Cl)nc2c1ncn2[C@H]1C[C@H](O)[C@@H](CO)O1,0,8.58994992441421,-3.6584130527210883,8.58994992441421,0.045155019193168666,0.6481668237451135,285.6909999999998,273.595,285.0628669240003,102,0,0.22595282697379504,-0.3935688360285742,0.3935688360285742,0.22595282697379504,1.894736842105263,2.8421052631578947,3.6315789473684212,2.4035670338164254,1042.0989614766281,23.78409257144667,20.838777321900608,9.594706267919062,14.042659745549352,10.452470566859773,5.119511267941358,3.3281966375498557,3.6662583394412627,2.2147497813337718,2.3837806322794752,1.4416904259462722,1.6017987460209686,-1.4800000000000002,3451519.4479339723,4.8126222010358415,4.566261411123596,2.0203591834007146,129.50429236067333,20.674196311740747,19.171430110673025,14.288724155259157,8.145985634509527,0.0,0.0,4.567099647791355,4.9839785209472085,9.967957041894417,0.0,0.0,11.600939890232516,9.11444201366982,25.796167764683602,28.74423194203263,28.582680606451532,2.8623993144652684,19.519035210632982,0.0,24.73691376516591,12.278702218642561,11.586958034010486,0.0,0.0,5.719716975726273,5.817862777835028,0.0,11.600939890232516,51.31807220412894,4.736862953800049,0.0,23.54294616062769,6.303371713966227,8.10727047670066,11.16387793838399,0.0,119.31000000000002,59.86459775831169,0.0,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,25.16955194505605,32.98995476451599,98.95834097187661,5.759445815188809,10.944658479897928,7.2033140492469645,-1.1541008861201862,-0.5692180151381543,0.0,-15.338344513731421,-3.6096514567761258,0.0,0.5,19,4,8,0,1,1,0,2,2,8,3,9,5,0,1,1,3,-0.29740000000000044,66.36500000000001,0,2,0,1,0,4,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +468595,CC[C@@H]([C@H](C)O)n1ncn(-c2ccc(N3CCN(c4ccc(OC[C@@H]5CO[C@@](Cn6cncn6)(c6ccc(F)cc6F)C5)cc4)CC3)cc2)c1=O,0,16.472577104519182,-4.897627990970878,16.472577104519182,0.40735264754003,0.1999514521531543,700.7910000000016,658.455,700.3297082640012,268,0,0.35020506423096553,-0.49321523700732484,0.49321523700732484,0.35020506423096553,1.0980392156862746,1.8235294117647058,2.4901960784313726,1.4084648356100071,3884.8011954069075,72.33109795523919,66.46663087187358,24.466630871873576,41.39807222852732,34.21227319661432,13.304024906150458,9.228306429494642,9.228306429494642,6.1214394938439884,6.1214394938439884,3.9130533175605713,3.9130533175605713,-5.079999999999999,3.471882921909821e+24,10.504253806929816,14.644881413353259,7.238378251204456,353.11499943774294,24.382353560408266,46.007395136768736,0.0,1.4311996572326342,0.0,5.689743398203474,0.0,32.49005131845039,10.197363616602075,0.0,12.894310824958975,73.9795102889241,69.94038328922669,74.41060795672769,79.564464997036,11.374772549367124,1.4311996572326342,29.11204765563101,5.893957685363079,50.64545502784937,48.90522868479731,113.05889468225904,0.0,11.436898107967467,20.22642581370448,20.155602644716765,5.749511833283905,0.0,80.83748275401722,16.834773449099682,17.528399367454867,94.23207880027574,90.17125811026676,0.0,5.687386274683562,0.0,115.69999999999999,250.45137507161334,13.297227900257301,4.39041504767482,0.0,0.0,0.0,0.0,0.0,0.0,20.290150328656495,62.99375069930116,402.34183260227917,0.0,15.968859392736778,10.317050868967474,-14.516744834045888,-11.529772193879673,-25.519506758806518,-18.54405182897843,-40.6010005816062,0.0,0.40540540540540543,51,1,12,0,2,2,3,2,5,12,1,14,15,0,2,2,7,4.573200000000004,187.31279999999944,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5991,C#C[C@]1(O)CC[C@H]2[C@@H]3CCc4cc(O)ccc4[C@H]3CC[C@@]21C,0,9.648369236583523,-4.83387365362812,9.648369236583523,1.221125575179056,0.7180018360911579,296.4099999999995,272.21799999999996,296.1776300080007,116,0,0.29309232468190016,-0.5079560321952997,0.5079560321952997,0.29309232468190016,1.5454545454545454,2.5454545454545454,3.3636363636363638,2.583134684934273,1588.2018581158816,36.29252873988395,34.816496580927726,10.816496580927726,20.296076491968556,17.97474487139159,6.158248290463863,4.885310363079829,4.885310363079829,3.6697172541558802,3.6697172541558802,2.4911086270779395,2.4911086270779395,-1.46,1409731089.1569602,3.4700138103041542,4.521896298442718,1.664422092346401,166.003424676995,10.217616382214425,12.721321200437814,0.0,1.4311996572326342,1.4311996572326342,0.0,0.0,0.0,0.0,6.399401534821945,18.81474514381462,79.1311628627861,30.088644480460733,4.1122756685106605,40.37430461795928,0.0,2.8623993144652684,0.0,17.202905840122938,56.584450021618714,0.0,29.254159106383874,0.0,18.069347686961493,0.0,0.0,5.749511833283905,0.0,18.681066507663385,6.372924901329379,29.522741693800523,85.89406552844443,18.127256122989884,0.0,0.0,0.0,40.46,108.79102680140944,4.1122756685106605,0.0,0.0,0.0,0.0,12.319835853677588,0.0,0.0,10.217616382214425,28.906811881699443,209.0043254884168,0.0,0.0,8.531530451553067,-12.203570103304049,-13.787905735162909,-4.354246209822057,-25.634607179344332,-4.555526712336551,0.0,0.6,22,2,2,3,0,3,1,0,1,2,2,2,3,2,0,2,4,3.6126000000000023,86.50660000000005,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +11591924,COc1cc2c(cc1N1C[C@H](C)N[C@H](C)C1)N(C(=O)c1ccc(-c3ccc(-c4noc(C)n4)cc3C)cc1)CC2,1,15.009032720746974,-4.583897645620868,15.009032720746974,0.5025670306928287,0.3640345184929257,537.6640000000012,502.3840000000004,537.2739899800009,206,0,0.25778667377052167,-0.49457280073879006,0.49457280073879006,0.25778667377052167,1.125,1.95,2.675,1.7367131499159447,2991.780545414217,58.18483358529721,54.46081284889138,19.46081284889138,33.305048880756985,28.155959137512507,10.708745542012549,7.671936908874697,7.671936908874697,5.182301880901826,5.182301880901826,3.4730026911544734,3.4730026911544734,-4.17,712177106089288.9,7.559127055286826,10.426990480306968,4.8361989809361265,283.7319313268068,24.36959070576273,7.161353911612106,0.0,11.715128420025835,5.907179729351506,0.0,4.794537184071822,0.0,4.9839785209472085,0.0,29.326338087778623,79.39450075832087,77.12468226374385,37.398992744630114,62.07212806296096,17.28195227871863,0.0,15.450455131361029,0.0,45.816278307211384,36.32835097353138,76.96284676608656,0.0,28.264270806374817,19.84649576878938,11.374772549367124,5.749511833283905,0.0,54.61213795595387,6.372924901329379,13.703784234591359,87.68519072556754,58.904863305943,1.4118420783282006,22.514758973090913,0.0,83.73,209.9635124852112,1.3707585561702202,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,14.663736715046003,51.38373738574555,307.2712236322578,0.0,17.247736288397263,2.3129766693011424,-11.611086606817372,-6.090942178768839,-22.798830260556805,-3.9758851927744683,-28.646159554217295,-3.9590327968214085,0.34375,40,1,8,0,2,2,3,1,4,7,1,8,10,0,1,1,6,5.4185400000000055,157.29119999999966,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27991,NC(=O)CC[C@@H]1NC(=O)[C@H](Cc2ccccc2)NC(=O)[C@H](Cc2ccc(O)cc2)NC(=O)CCSSC[C@@H](C(=O)N2CCC[C@H]2C(=O)N[C@H](CCCN=C(N)N)C(=O)NCC(N)=O)NC(=O)[C@H](CC(N)=O)NC1=O,0,16.552037164532614,-6.708688110112529,16.552037164532614,1.1146044546161757,0.02737585989686799,1069.2380000000016,1004.7259999999993,1068.4269554880016,402,0,0.29309207049653996,-0.5079666451556014,0.5079666451556014,0.29309207049653996,0.8648648648648649,1.5135135135135136,2.2027027027027026,2.7314780049807097,5248.035148855141,110.1903870847623,98.97646640349348,36.60945956534893,60.88040978832937,48.90184725987636,20.040797760174257,11.487088334123545,13.228669957920749,6.6008982181317615,7.896309456281223,3.9137163898168468,4.949718227693132,-7.620000000000001,2.0629181534055095e+47,15.94944790420968,29.78737444215039,20.11789498213632,524.2974158410485,75.77599627360767,47.874759111731414,29.96086990032323,64.97897702286656,1.4311996572326342,0.0,57.7323137574257,0.0,0.0,0.0,63.88472690641651,55.07636490536747,85.53505520467542,40.28495570904974,144.90492613130658,92.52632754438388,1.4311996572326342,42.06860320386911,33.59098961126703,105.85449629174131,30.90049282324815,65.50867135236365,0.0,5.749511833283905,65.76727835164999,0.0,5.749511833283905,21.587795952773448,155.40418927249644,65.48575882744879,0.0,125.16519577785897,59.37417310160532,24.001315331579402,0.0,0.0,437.90999999999985,371.20668792752144,42.64537827981296,33.561760288502754,0.0,0.0,0.0,0.0,0.0,0.0,10.101212923742882,65.02017902911653,557.1546224928328,0.0,168.59737176334332,-12.467092763205345,-23.60442959688713,-47.20209089208669,-63.81342547568408,-58.17232231817706,-16.06155360129896,-3.76441294217039,0.4782608695652174,74,18,26,0,2,2,2,0,2,15,13,28,20,0,2,2,4,-4.341700000000018,272.16369999999944,0,0,0,0,0,0,0,1,0,0,11,11,0,0,1,2,7,5,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +11319053,O=C(N[C@@H]1CC[C@@H](c2cccc(F)c2F)CN(CC(F)(F)F)C1=O)N1CCC(n2c(=O)[nH]c3ncccc32)CC1,0,15.872086718634492,-6.804809493045903,15.872086718634492,0.43905635589348746,0.4706035640838627,566.5310000000012,539.3150000000002,566.2064798240008,214,0,0.4055214419277105,-0.3311937508771642,0.4055214419277105,0.3311937508771642,1.225,1.975,2.7,1.9037073310842934,2673.2253960509956,52.67676189578944,45.797848809437475,18.797848809437475,29.54811782381804,23.555812775468464,10.161385584468547,7.141109450005186,7.141109450005186,4.6170976543035005,4.6170976543035005,2.996066475105474,2.996066475105474,-3.970000000000001,15817635770916.262,9.840249224525085,10.891239180189531,5.654411598485128,262.5582066290778,15.109632814989332,12.51475215266559,20.105303059515915,5.907179729351506,0.0,17.89715642798502,14.338640102092429,23.353882984440492,13.171245143024459,0.0,12.08483741532659,49.18240722000439,55.39518564768822,21.9658033916589,68.63379766742969,23.102172180073566,0.0,29.637714253957146,0.0,49.597740744823355,25.98743873726378,64.06716250519531,0.0,0.0,10.999556751491848,26.74661242244592,0.0,0.0,74.44782486541526,4.794537184071822,11.63444168209179,77.23596515498275,41.17952593320306,2.8236841566564013,11.16387793838399,0.0,103.33,182.6137127162942,27.554856695239923,8.78083009534964,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,37.092648060911905,302.4345624833085,0.0,41.78349504966791,-1.8984243069740918,-7.5021890010056085,-14.787674614412293,-22.5261448085515,-28.696312367636526,-21.473979101063055,0.0,0.46153846153846156,40,2,9,0,2,2,1,2,3,5,2,14,4,0,2,2,5,3.6864000000000017,133.48539999999994,0,0,0,0,0,3,1,0,0,0,2,2,0,0,0,4,2,0,0,0,2,1,0,0,0,3,0,3,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +6167,COc1cc2c(c(OC)c1OC)-c1ccc(OC)c(=O)cc1[C@@H](NC(C)=O)CC2,0,13.730244025213135,-4.54599466175359,13.730244025213135,1.0823712679516255,0.8325220081385356,399.4429999999997,374.24300000000017,399.1681875200007,154,0,0.22021569346160347,-0.4927038391377624,0.4927038391377624,0.22021569346160347,1.1724137931034482,1.9310344827586208,2.689655172413793,3.08372569562761,1927.7016694675015,42.48868116259058,38.89670333828314,13.896703338283137,23.743359146935184,19.685668643319232,7.238455047819274,5.069431777656971,5.069431777656971,3.538143432935406,3.538143432935406,2.435089147777276,2.435089147777276,-3.22,26855512390.153725,5.682595529413422,8.426176651903862,3.721770404485165,204.28703919969007,24.257265168488573,0.0,18.660377578179915,17.08548195453595,0.0,0.0,9.589074368143644,0.0,0.0,0.0,6.042418707663295,47.56346040073962,22.010653502184212,57.472597758773794,58.05203642568555,5.907179729351506,0.0,5.309813353288376,0.0,25.615634388304084,28.151809835530354,45.51990539001953,0.0,34.12495031652961,29.686055560389114,0.0,22.99804733313562,0.0,34.05898956488186,11.167462085401201,0.0,63.26781781845405,28.964212014725,1.4118420783282006,11.126902983393991,0.0,83.09,139.83475582895164,10.959832924313863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,47.149877731643436,221.20871876789028,0.0,26.86030414983946,-1.0823712679516255,-9.257348413162584,-9.534441786101238,-11.813158895502646,-8.885843253968254,-4.005133273095486,-15.157392694614567,0.36363636363636365,29,1,7,1,0,1,2,0,2,6,1,7,10,0,0,0,3,2.871600000000001,109.23470000000006,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9926791,C[C@@H]1CCN(C(=O)CC#N)C[C@@H]1N(C)c1ncnc2[nH]ccc12,0,13.19466467915602,-4.653495370370371,13.19466467915602,0.09484892971319736,0.9284511020269033,312.37699999999967,292.21700000000004,312.1698592600006,120,0,0.23636046628260954,-0.35397915931185986,0.35397915931185986,0.23636046628260954,1.8695652173913044,2.782608695652174,3.5652173913043477,2.7306628212070434,1539.0622925859866,33.8948230354559,31.091529863463613,11.091529863463613,18.940447019224134,15.808226111481618,5.86101251598166,3.979417143033285,3.979417143033285,2.6502708117878466,2.6502708117878466,1.65656896855054,1.65656896855054,-2.62,325586320.533368,4.261768159315444,6.244405505804488,2.8426561734889986,162.63634978209006,14.776822731930208,25.512095170068584,1.4118420783282006,5.907179729351506,0.0,0.0,4.794537184071822,9.967957041894417,5.261891554738487,0.0,6.851892117295679,18.309301294355752,41.220785597601335,27.068647888798253,32.250791829634196,22.758443942419056,5.261891554738487,19.844870042974144,5.893957685363079,25.61563438830408,24.869455999764615,18.51868563244428,0.0,6.069221312792274,4.899909730850478,5.817862777835028,0.0,0.0,51.739488509589435,4.794537184071822,17.22507055289384,45.64215448718864,18.51868563244428,1.4118420783282006,11.033401435232523,0.0,88.91,102.5560873791456,6.165295740242042,0.0,4.977003270229252,0.0,6.069221312792274,0.0,0.0,0.0,9.967957041894417,31.34738764413064,164.84387102551315,0.0,18.59618772815855,8.185501996129458,-0.8650265143489804,-8.585906780150333,-4.944834692198734,-10.617251715819991,-17.445874380616452,0.0,0.5,23,1,7,0,1,1,0,2,2,5,1,7,5,0,1,1,3,1.5447799999999996,86.67070000000005,0,0,0,0,0,3,1,0,0,0,1,1,0,0,0,5,1,0,0,1,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4594,COc1ccc2nc([S+]([O-])Cc3ncc(C)c(OC)c3C)[nH]c2c1,0,13.641692019400349,-3.605131330309905,13.641692019400349,0.0582666446208111,0.7189882148938235,345.4239999999997,326.27200000000005,345.11471246800056,126,0,0.3215041097266822,-0.6086940395866233,0.6086940395866233,0.3215041097266822,1.4166666666666667,2.3333333333333335,3.125,2.390540699444035,1574.2647727562935,33.41133089340096,30.474633948355326,12.291130529283054,19.10873201082007,15.430265920058089,7.13288223881919,4.133771422179343,5.24050141764665,2.6953179254686948,3.588282067121583,1.6455678981006476,2.408566537153891,-2.25,374582988.87216026,5.124166410177491,6.7025904456291086,3.0452495819741783,169.7173064222098,14.026475781290461,11.49902366656781,7.1167989634783595,0.0,0.0,5.156436481820707,9.960981791176462,0.0,4.9839785209472085,0.0,0.0,25.78862164991795,42.742622712278674,47.25233702188884,40.11197187068263,22.209255908617813,0.0,14.94496031212367,0.0,24.565177601562226,14.075904917765177,41.1209823120471,0.0,11.49902366656781,9.473725907600098,0.0,11.49902366656781,0.0,33.57361510357921,16.880811358535446,13.703784234591359,41.49448498930643,29.45658781562535,1.4118420783282006,11.033401435232523,0.0,83.09,113.47034440656012,4.552749873690364,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,19.441682949494513,26.085496089392155,171.18372661512328,-3.3650682765390094,7.1913193333909415,-1.1153298217435121,-9.173392456474689,-2.4114815415721456,-2.8261432869895255,-1.33824603870433,-6.9708796617958475,-6.702282642472922,0.29411764705882354,24,1,6,0,0,0,1,2,3,5,1,7,9,0,0,0,3,2.8997400000000004,93.02110000000005,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +5533,O=c1n(CCCN2CCN(c3cccc(Cl)c3)CC2)nc2ccccn12,0,13.188142709851935,-4.530614257019683,13.188142709851935,0.13042447944764413,0.6904010628546758,371.8719999999997,349.6960000000001,371.15128800400066,136,0,0.34982791449840644,-0.3689238300897974,0.3689238300897974,0.34982791449840644,1.1538461538461537,2.0,2.8461538461538463,2.009077429458252,1862.6539205843828,37.444711088220565,34.52228074097288,13.278209686991335,21.322050080392867,17.776387954736293,7.154352427745521,4.469427798714449,4.847392271723676,2.8651334911498396,3.054115727654453,1.7740712453975649,1.9108200763862977,-2.3099999999999996,4889402084.799276,5.144634234778262,7.514521390199096,3.613565663833185,187.66694905593744,4.899909730850478,0.0,5.647177220767728,0.0,0.0,5.689743398203474,9.300604337112272,9.476340119217006,0.0,5.098681808301038,23.685777305559107,36.58501843964585,66.83014135449707,19.190619786383078,30.156688235744834,22.935503385683806,0.0,19.081089080558495,0.0,12.869784585645323,37.384208152430205,63.97674006047444,0.0,0.0,10.589653129053952,5.687386274683562,0.0,11.600939890232516,51.565387502138215,6.496859684315945,0.0,36.52961313707422,53.26436334852964,5.022633313741326,5.647177220767728,0.0,45.78,130.35247177592518,4.794537184071822,0.0,4.400694606261793,0.0,0.0,0.0,0.0,0.0,5.098681808301038,41.75762812597738,183.20247956004425,5.877146271624533,11.833961940386448,2.4908086963606966,-4.046098987992288,0.0,-7.407655809781897,-5.537775294040179,-25.55175526549047,0.0,0.3684210526315789,26,0,6,0,1,1,1,2,3,6,0,7,5,0,1,1,4,2.3617,104.17400000000002,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +47812,CCCN1C[C@H](CSC)C[C@@H]2c3cccc4[nH]cc(c34)C[C@H]21,0,9.677829743008314,-4.704673918178385,9.677829743008314,0.0015267754765413422,0.9085285470025662,314.49799999999954,288.29,314.1816698320007,118,0,0.16593678936643605,-0.3608804645839768,0.3608804645839768,0.16593678936643605,1.6818181818181819,2.6818181818181817,3.590909090909091,2.4592693657094267,1703.5791513897743,37.98060947308281,36.80267548146378,11.619172062391504,20.870567133442076,18.973495874713716,6.842778860141484,4.3089615328568165,4.717209823320679,3.132930496548832,3.439116714396729,2.3177506170037567,2.51648727238647,-0.93,2464621398.3883247,3.385354070508598,5.934405613799897,2.296634279562432,173.79516235572066,4.977003270229252,0.0,1.4118420783282006,0.0,0.0,0.0,4.899909730850478,0.0,11.761884949391115,0.0,18.93672953262227,60.56779475099106,64.27045966049917,5.483034224680881,35.6808059825837,22.664809881472173,0.0,9.87691300107973,5.893957685363079,37.88251697499654,24.882600354898507,35.42705431719864,0.0,0.0,0.0,0.0,0.0,11.761884949391115,40.777405824327886,6.372924901329379,5.893957685363079,70.88756649296704,24.300151333804646,1.4118420783282006,10.902924932081056,0.0,19.03,131.65084894477943,4.1122756685106605,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,0.0,31.568530314073033,222.2427454532918,-0.8784254141471395,-0.981911318182513,-1.013018786218191,-7.796881167590494,-8.949071593915345,-8.241524703309288,-17.931506274934993,-13.533739528327153,0.0,0.5789473684210527,22,1,2,1,1,2,1,1,2,2,1,3,6,0,1,1,4,4.271100000000003,96.88470000000005,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3793,CCC(C)n1ncn(-c2ccc(N3CCN(c4ccc(OCC5COC(Cn6cncn6)(c6ccc(Cl)cc6Cl)O5)cc4)CC3)cc2)c1=O,0,13.948454273089382,-4.465859872992133,13.948454273089382,0.15941247061470687,0.17439428838158272,705.6470000000015,667.3430000000001,704.2393070560013,256,0,0.3501012080231817,-0.49079080635828953,0.49079080635828953,0.3501012080231817,1.0612244897959184,1.7755102040816326,2.4489795918367347,1.3727129689703435,3656.3053307292007,67.33109795523919,61.466630871873576,24.978488763910484,38.79451883793405,31.75814905138239,13.514077997400845,8.765763908059908,9.521692854078358,5.789833797943649,6.26228938920518,3.657588829328572,4.113825442797527,-4.359999999999999,8.253992716958887e+20,10.820172262117321,14.242160394904474,7.044519489054606,347.27333607537287,24.010408323101103,47.90776559787548,0.0,5.7871111525705965,0.0,5.689743398203474,0.0,23.70922122310075,10.197363616602075,0.0,36.096190605424006,73.64900409525802,58.914364541431006,60.297378316286824,66.29941399586858,34.57665232983216,0.0,29.11204765563101,0.0,44.45859046810691,48.90522868479731,111.4697196276499,0.0,11.436898107967467,20.22642581370448,11.374772549367124,5.749511833283905,23.20187978046503,74.29747490567736,21.757696744486637,0.0,83.74687823043575,90.17125811026676,10.045266627482652,5.687386274683562,0.0,104.70000000000002,227.5324751889621,6.165295740242042,0.0,9.24890258293654,0.0,0.0,0.0,0.0,0.0,15.181342137549283,88.13053522016331,342.1143498214745,12.350672644190016,15.964971098281167,4.518685192727107,-8.523170577701125,-5.794414489568549,-21.798574082010283,-12.66867081613198,-38.52495990237194,0.0,0.37142857142857144,49,0,12,0,2,2,3,2,5,12,0,14,13,0,2,2,7,5.5773000000000055,188.17599999999942,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23894,CC(O)(P(=O)([O-])O)P(=O)([O-])O,0,11.182222222222222,-6.050300925925925,11.182222222222222,3.018194444444444,0.4307167055648212,204.01100000000002,197.96299999999997,203.95997295182002,68,0,0.2176640826159908,-0.7762401958586247,0.7762401958586247,0.2176640826159908,1.4545454545454546,1.9090909090909092,2.090909090909091,6.216180509292527,341.8656450243463,14.121320343559644,10.752165224246959,6.54101960624679,7.431980515339465,4.721527727133811,5.0821002767628025,1.6031792092061241,5.205413482386442,0.7424170507808798,3.696944998012547,0.15,1.3500000000000005,0.26000000000000006,1965.7647856659478,4.48324042428616,2.638564941834449,2.0994518030301026,70.69107651129052,33.817112764512785,0.0,20.274752273643283,4.293598971697903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.851892117295679,4.1122756685106605,0.0,37.929388433023455,15.19152465357577,4.293598971697903,0.0,0.0,11.935119737363191,0.0,0.0,0.0,0.0,9.78682320550495,0.0,0.0,15.19152465357577,24.277019580910594,9.130096569862658,0.0,10.964167785806339,0.0,0.0,0.0,0.0,140.95,27.12664439093896,18.91691977536761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.900192989145172,8.405874640208562,61.298973765432095,0.0,28.400833333333335,-1.0212345679012347,0.0,0.0,0.0,0.0,-3.966859567901235,-12.100601851851849,1.0,11,3,7,0,0,0,0,0,0,7,3,9,6,0,0,0,0,-2.2562,30.274399999999993,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2764,O=C(O)c1cn(C2CC2)c2cc(N3CCNCC3)c(F)cc2c1=O,0,15.976568405139833,-3.9524481267356455,15.976568405139833,0.10271164021164036,0.8932298763507215,331.34699999999975,313.2030000000001,331.13321965600045,126,0,0.3407230786793809,-0.4774970228339016,0.4774970228339016,0.3407230786793809,1.5,2.25,2.9166666666666665,2.3202675955945686,1582.327642768043,32.71266028065169,29.44435013090069,11.444350130900691,18.683515962285192,15.195670940164062,6.3402090542002405,4.568025040051622,4.568025040051622,3.141146405139942,3.141146405139942,2.050725022656962,2.050725022656962,-2.41,377724255.5057874,5.046032640242357,5.592172599010578,2.4478616810646066,162.47726682929576,19.88563092303742,12.79251441107109,0.0,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,9.184952231746642,0.0,0.0,0.0,24.83068721798535,54.53051908025476,22.17015544166158,37.637739399905584,22.55961649471647,1.4311996572326342,9.87691300107973,0.0,18.763742271008404,30.887348468114254,39.8617325348566,0.0,0.0,15.638513476039396,10.077801322358383,0.0,0.0,41.632651864114194,0.0,5.817220841045895,51.05386784550078,23.052269810213172,1.4118420783282006,12.33412458931369,0.0,74.57,112.58771593791231,9.589074368143644,4.39041504767482,4.567099647791355,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,24.77517863428435,161.30267181048706,0.0,24.921012380673034,1.583146078137718,-6.416112473034822,-4.0974408661791415,-6.725535714285716,-8.111813429292237,-15.539261119839225,0.0,0.4117647058823529,24,2,6,1,1,2,1,1,2,6,2,7,3,1,1,2,4,1.5833,88.47900000000006,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +71771,O=C(O)COC(=O)Cc1ccccc1Nc1c(Cl)cccc1Cl,0,12.583531546627082,-3.67799685846561,12.583531546627082,0.03292957923910311,0.7696621138235622,354.1889999999998,341.08500000000004,353.0221632560004,120,0,0.34134370624569926,-0.4787217657456807,0.4787217657456807,0.34134370624569926,1.2608695652173914,1.9565217391304348,2.652173913043478,2.899443672343988,1244.8268355906794,28.07446760021749,23.836135703373863,12.347993595410776,16.338052053434165,11.951260680632664,6.3517277406872985,3.591020569746636,4.3469495157650915,2.10573710214685,2.652732426101781,1.261510978832288,1.6778657836668958,-2.239999999999999,22908692.588703543,6.708751325876206,7.852116863221183,4.873913787667224,160.7448269948563,15.155484498195637,0.0,7.97082732124449,0.0,1.4311996572326342,11.938610575903699,4.794537184071822,4.794537184071822,0.0,0.0,47.37155461111821,23.69070761468688,8.428903387024002,34.44240480902758,35.92493170925153,46.51526290573585,1.4311996572326342,0.0,0.0,6.372924901329379,11.868798596204664,57.905649072822705,0.0,0.0,5.309813353288376,11.374772549367124,0.0,23.20187978046503,23.606404009927203,20.69886222327307,0.0,20.641795609569414,42.29693095364306,11.457108705810853,1.4311996572326342,0.0,75.63,94.15094234233922,9.589074368143644,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.84567114490726,41.1232656338983,105.50320600209668,12.035473223624791,23.937676365534777,1.9877888170462261,-3.1217682191295557,-4.233708100705201,-6.703444805424282,-3.67799685846561,-3.6716708690222877,0.0,0.125,23,2,5,0,0,0,2,0,2,5,2,7,6,0,0,0,2,3.907300000000002,88.48550000000004,1,0,0,0,0,0,0,0,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,1,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +49659,Oc1ccc(C2CNCCc3c2cc(O)c(O)c3Cl)cc1,0,9.261841773746536,-3.7870208963214935,9.261841773746536,0.5910335569412948,0.6113669325066001,305.76099999999974,289.63300000000004,305.08187105200045,110,0,0.2933464602010761,-0.507966639121706,0.507966639121706,0.2933464602010761,1.380952380952381,2.238095238095238,2.9523809523809526,2.7950807136198983,1260.8953418891324,28.626873843024782,26.049922939900775,10.80585188591923,16.830892772252678,13.170526734591915,5.876532740709594,3.886764868825377,4.264729341834604,2.6201738965710213,2.9807989263089874,1.6911616794169737,1.91871975341211,-1.9099999999999997,44696992.90090021,4.541187099562749,5.466146261266822,2.522305383805159,149.97585970600093,20.63623792661001,7.161353911612106,11.49902366656781,0.0,4.293598971697903,0.0,0.0,0.0,0.0,0.0,23.685777305559107,47.687395183726196,21.98612726287056,11.876426094592427,33.18736932569247,11.600939890232516,4.293598971697903,5.309813353288376,0.0,12.266882586692457,12.99371936863189,51.92508132714878,0.0,17.248535499851716,5.309813353288376,0.0,17.248535499851716,11.600939890232516,32.61374291365143,6.372924901329379,0.0,39.03341483449672,30.212093538316473,6.434475392069527,0.0,0.0,72.72,99.74403213561322,1.3707585561702202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,32.38472505813104,131.18167036704023,6.215965675705032,0.0,11.053795571845715,-3.5894658341731738,-6.486500048600368,-5.739358124422608,-3.55242618575208,-7.472570310531624,0.0,0.25,21,4,4,0,1,1,2,0,2,4,4,5,4,0,0,0,3,2.734400000000001,81.30510000000002,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54120,CC(SC(=O)c1cccs1)C(=O)NCC(=O)O,0,12.393882905013857,-3.632735628201898,12.393882905013857,0.34410258283116235,0.8421977645286292,273.33499999999975,262.24699999999996,273.0129498320003,92,0,0.322470002886724,-0.4799304434933802,0.4799304434933802,0.322470002886724,1.9411764705882353,2.764705882352941,3.3529411764705883,3.35968831666814,810.02726047275,22.24012249707665,18.89670333828314,9.52969650013859,12.51779728841376,9.185668643319232,5.4631999192108625,2.3181088276007524,4.117768656122871,1.2032873502020183,2.79646642999657,0.6069312652783103,1.7085287212756664,-1.34,478635.8601730342,4.7352117886936105,6.408770721092617,4.57595316311038,121.81259372980021,10.418621544395588,6.496859684315945,1.4118420783282006,11.022456659537227,1.4311996572326342,5.969305287951849,14.383611552215466,0.0,0.0,11.336785877934737,17.80430365705441,18.250425234626576,4.1122756685106605,18.327688199906476,33.24108882718286,40.09043277481493,1.4311996572326342,5.309813353288376,0.0,12.077881786479539,6.496859684315945,22.318099018695484,0.0,0.0,5.309813353288376,0.0,0.0,23.098670827325854,33.82341949209609,9.589074368143644,0.0,28.86040350060078,17.440951824994187,1.4118420783282006,1.4311996572326342,0.0,83.47,74.95630073965954,14.383611552215466,0.0,0.0,11.336785877934737,0.0,0.0,0.0,0.0,5.1088081911072125,15.179868741092815,80.86006612422669,-0.12862866244472593,35.38458157469701,-2.7968001054748,0.0,-4.161114727290773,-1.3425299747934574,0.0,-7.2322408955866315,0.0,0.3,17,2,5,0,0,0,0,1,1,6,2,7,6,0,0,0,1,1.2108,66.34800000000003,1,0,0,0,0,0,0,0,1,1,3,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0 +64139,O=C1Nc2ccc(Cl)cc2[C@@](C#CC2CC2)(C(F)(F)F)O1,0,14.157638416477702,-5.633470962459061,14.157638416477702,0.27591687137818166,0.7328090954055055,315.67799999999977,306.60599999999994,315.0273908680002,110,0,0.44472937022026343,-0.4149148311825577,0.44472937022026343,0.4149148311825577,1.619047619047619,2.3333333333333335,2.9523809523809526,2.417065949228566,1038.0543866010075,23.240122497076648,18.775568068464594,10.531497014483046,13.38835187864292,9.762728572714165,5.693479450223434,3.9463073118044685,4.324271784813695,2.5704840065591252,2.75946624306374,1.6142321270123232,1.7559688043907833,-1.87,1799453.4189850795,6.926475699009348,4.567094032752005,2.422136888883137,135.66609620203835,4.736862953800049,0.0,1.4118420783282006,0.0,5.601050810983688,12.26953858838189,5.309813353288376,4.794537184071822,13.171245143024459,0.0,17.521374209088158,36.793540244504285,23.3338352716525,9.799661943194222,35.0805558085863,23.381566235854493,0.0,0.0,5.893957685363079,24.52319913108592,5.309813353288376,28.713340928428206,0.0,11.840868637711289,5.309813353288376,23.653168601779846,0.0,11.600939890232516,12.26953858838189,10.337913764783737,17.734826323074365,29.275369743717512,18.127256122989884,6.434475392069527,0.0,0.0,38.33,70.91112409049917,17.96578232709628,0.0,5.309813353288376,0.0,0.0,5.920434318855644,5.920434318855644,0.0,4.736862953800049,23.978850417922473,115.35784681104955,5.686600699693456,11.988336246535653,-1.1942572646342493,-6.559379251700683,-0.015560673343411047,-3.237171529877382,-13.498637259945133,0.0,0.0,0.35714285714285715,21,1,3,1,1,2,1,0,1,2,1,7,0,1,0,1,3,4.073100000000001,69.7887,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3822,O=C(c1ccc(F)cc1)C1CCN(CCn2c(=O)[nH]c3ccccc3c2=O)CC1,0,14.24290343748218,-4.708707472690385,14.24290343748218,0.44968657231925313,0.6735760490733903,395.4339999999998,373.2580000000002,395.16451978400056,150,0,0.32837629035386284,-0.306647700781896,0.32837629035386284,0.306647700781896,1.206896551724138,1.896551724137931,2.6206896551724137,2.0914441860215125,2122.50422981107,39.89230484541327,35.94435013090069,13.944350130900691,22.698929172439204,18.537422649700197,7.590209054200241,5.184277317354948,5.184277317354948,3.391027357706421,3.391027357706421,2.075435165293272,2.075435165293272,-3.0599999999999996,16191688552.377213,6.2179179767447,8.126207150619834,4.048073139800842,197.11047807661924,9.87691300107973,5.817220841045895,7.19508702469314,0.0,5.559266895052007,5.689743398203474,14.156174015934997,9.184952231746642,0.0,0.0,12.08483741532659,61.994081417270415,39.5294726635644,24.610510493783252,39.38272398964947,16.686169878445998,0.0,14.444012648871086,5.893957685363079,19.242709486974704,19.490579052947837,80.55810665544838,0.0,0.0,11.24901029325548,4.39041504767482,0.0,0.0,39.717836648183855,6.496859684315945,11.711178526408974,51.88976815800224,57.92842402945,1.4118420783282006,10.902924932081056,0.0,75.17,146.72646103990746,18.774026599890284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.197771757902814,195.6169577289428,0.0,39.0970095210003,-1.2772304863351664,-7.072547492391851,-8.887024560141448,-10.931658601873956,-9.257241964801942,-18.53826414439871,0.0,0.3181818181818182,29,1,6,0,1,1,2,1,3,5,1,7,5,0,1,1,4,2.423800000000001,108.72320000000005,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,2,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3698,Nc1cc(-c2ccncc2)c[nH]c1=O,0,11.812748803224995,-1.2517951625094483,11.812748803224995,0.019179894179894186,0.6996440987416697,187.20200000000006,178.12999999999997,187.074561908,70,0,0.2705982133427507,-0.3942500763123972,0.3942500763123972,0.2705982133427507,1.5,2.2857142857142856,3.0,3.051508532047201,837.8710763664536,17.63531001146206,15.749889076963736,6.749889076963737,10.589999272823986,7.913798920481701,3.5721581339818265,2.3377763565334098,2.3377763565334098,1.4388351236004584,1.4388351236004584,0.829751736602079,0.829751736602079,-2.1,80218.93947084478,2.947893079794,3.3341936893355397,1.495354779657139,93.2481104827358,10.696720245955525,0.0,4.235526234984602,0.0,5.559266895052008,0.0,9.77851570501903,0.0,0.0,0.0,0.0,23.69070761468688,24.08213712414128,13.91193761170488,12.460077572005922,5.687386274683562,0.0,9.960981791176462,0.0,0.0,5.719716975726273,46.99974583455799,0.0,11.126902983393991,11.27898387077828,5.687386274683562,0.0,0.0,9.960981791176462,0.0,0.0,8.224551337021321,41.44047893950599,4.235526234984602,11.126902983393991,0.0,71.77,59.019497908563714,4.794537184071822,0.0,10.696720245955525,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,12.460077572005922,68.12837679516251,0.0,15.18361725245654,0.0,-3.3459641912320484,0.0,-2.112295918367346,-2.1870672713529853,0.0,0.0,0.0,14,3,4,0,0,0,0,2,2,3,2,4,2,0,0,0,2,1.0191,54.706100000000006,0,0,0,1,0,2,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +56801,OCc1cc(C(O)CNCCCCCCOCCCCc2ccccc2)ccc1O,0,8.655433767133866,-5.095488417422754,8.655433767133866,1.1303235348803524,0.3103203848328889,415.5739999999995,378.2780000000002,415.272258664001,166,0,0.29310996265754763,-0.5075837293484645,0.5075837293484645,0.29310996265754763,1.0666666666666667,1.9,2.7,2.825537739302938,2178.115797067208,53.83398062421133,51.58020675735541,14.58020675735541,29.3333102920773,25.639792788551166,7.467834321659616,4.401906777552695,4.401906777552695,2.5180917435965546,2.5180917435965546,1.3670309045691056,1.3670309045691056,-1.9199999999999997,6011023108780.687,4.715788888954031,14.9673413952666,9.720794934054153,232.5808293952489,25.37310088041006,7.161353911612106,0.0,2.8623993144652684,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,49.00036204863853,61.57322458968341,49.85193567290952,33.20038161241957,66.71016195906721,0.0,4.293598971697903,5.309813353288376,0.0,57.24947757917192,26.11168985446447,65.02970413639734,0.0,5.749511833283905,5.309813353288376,0.0,5.749511833283905,0.0,45.73171339948401,17.66877309804572,0.0,106.24295426363439,48.33934966130636,1.4118420783282006,0.0,0.0,81.95,159.4501967566061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.063287527121688,50.940473403643395,305.781213720659,0.0,0.0,10.509037164035428,-4.9473982349633365,-1.3713002311745084,-11.499787682755702,-38.1842929353377,-23.03747180046323,0.0,0.52,30,4,5,0,0,0,2,0,2,5,4,5,19,0,0,0,2,4.107400000000005,120.52610000000004,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +288216,O=c1[nH]c(=O)n([C@H]2CCCO2)cc1F,0,13.643144368858655,-3.5764210128495844,13.643144368858655,0.4172685185185192,0.6927125296086032,200.16900000000004,191.09699999999995,200.059720368,76,0,0.33012120675905715,-0.35786484861360124,0.35786484861360124,0.33012120675905715,1.9285714285714286,2.7142857142857144,3.357142857142857,2.9335792054192544,803.2113661910539,18.171208396324303,15.497136535400731,6.497136535400732,10.13253326172949,7.820726401682192,3.3735128061822346,2.2200026907635144,2.2200026907635144,1.3574648652145944,1.3574648652145944,0.7972869224122661,0.7972869224122661,-1.43,51075.95737886401,3.3032304812929754,3.3752168636413606,1.4805988468778108,90.83952383831178,4.736862953800049,6.203952809936554,1.4118420783282006,5.817220841045895,5.559266895052008,5.689743398203474,14.33864010209243,4.794537184071822,4.39041504767482,0.0,0.0,12.745849802658759,12.042019467597168,11.65592943549564,21.505188529164826,0.0,0.0,9.544102918020606,0.0,18.949802612595313,6.558985242916289,32.828200713259776,0.0,0.0,11.24901029325548,4.39041504767482,0.0,0.0,16.103088160936895,4.736862953800049,5.817220841045895,29.91587106195707,15.761969578958404,1.4118420783282006,0.0,0.0,64.09,58.29201711864834,13.979489415818463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,12.377910527689961,84.94867646132529,0.0,22.52118063429075,0.0,-3.682218915343915,-1.9734745842781558,0.0,-12.234401100718065,-3.4130958286092214,0.0,0.5,14,1,5,0,1,1,0,1,1,4,1,6,1,0,1,1,2,-0.015300000000000313,45.503700000000016,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5467,CCN(CC)CCNC(=O)c1cc(S(C)(=O)=O)ccc1OC,0,13.513488992819347,-5.874600924142994,13.513488992819347,1.2641454081632646,0.7751498496172248,328.43399999999957,304.242,328.14567824800065,124,0,0.25463405954687396,-0.4959230067525303,0.4959230067525303,0.25463405954687396,1.5,2.272727272727273,2.909090909090909,4.309268735111374,1430.0507427838158,37.403259203893185,34.43566864331923,11.252165224246957,19.758595366646,16.919201643742845,6.455151295837278,3.213326906181505,4.62844877203192,1.8826686068881902,2.6242502306853863,1.004603228723307,1.426425076929888,-1.5999999999999999,367203216.1320816,3.8946432919405884,8.143304899821462,4.993710782028756,165.7033923504808,14.946586037938904,5.749511833283905,11.249095214745703,0.0,5.907179729351506,0.0,4.794537184071822,8.417796984328938,0.0,0.0,13.703784234591359,31.120975491621774,39.73902181230166,28.462955875459116,50.8884859924441,15.744432865769006,0.0,10.209723084138854,0.0,18.59926771010913,39.209315297262826,23.69070761468688,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,58.43420174179374,9.837253136417502,0.0,55.58921970227529,23.02273959850766,1.4118420783282006,0.0,0.0,75.71000000000001,113.20295840525061,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,32.93928887024325,214.0137645725321,0.0,10.296984490077019,-1.2641454081632646,-1.945520203451751,-4.302723529226507,-5.3966938093789185,-4.104421643616358,-26.62790704465747,-9.58600409078155,0.5333333333333333,22,1,6,0,0,0,1,0,1,5,1,7,12,0,0,0,1,1.1702999999999997,86.22500000000005,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3947,CN(CCCN1c2ccccc2CCc2ccccc21)CC(=O)c1ccc(Cl)cc1,0,13.794251029212663,-4.79934600357633,13.794251029212663,0.38422524348480325,0.45406396462781595,418.9679999999997,391.7520000000002,418.1811911640007,154,0,0.17630451935048283,-0.3409908081897621,0.3409908081897621,0.17630451935048283,1.0666666666666667,1.6666666666666667,2.2666666666666666,2.2195074029918236,2122.1616828732167,44.624355652982146,41.68063995447301,15.436568900491462,25.35362971081846,21.484747168236417,8.362711641245646,5.34655056711141,5.724515040120637,3.4654358243894166,3.65441806089403,2.2096998820490583,2.3041910003013646,-2.6199999999999988,202247605589.34448,5.78711267827224,9.460979947044216,4.745793937932701,221.37795646513175,4.899909730850478,0.0,5.783244946364939,0.0,0.0,0.0,9.694446914922299,0.0,0.0,0.0,47.855452136212286,73.47601683364414,52.774437953650235,25.68747947069902,41.80501820066778,28.758957385964578,0.0,4.899909730850478,0.0,19.118774703988137,31.36631568408056,94.22201228079186,0.0,0.0,4.899909730850478,11.374772549367124,0.0,11.600939890232516,37.14956063044549,12.745849802658759,0.0,64.8682975770882,72.50902449195954,5.022633313741326,0.0,0.0,23.55,161.8651201645927,7.536054296412263,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,0.0,45.869903794488046,229.96743658399532,5.750135829173511,12.27784169758643,-0.863552849016864,-7.60434374078272,-2.330912570874693,-15.950026066479094,-12.446769621823671,-18.27203148400044,0.0,0.2692307692307692,30,0,3,0,1,1,3,0,3,3,0,4,8,0,0,0,4,5.7815000000000065,125.19450000000006,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4474,COC(=O)C1=C(C)NC(C)=C(C(=O)OCCN(C)Cc2ccccc2)C1c1cccc([N+](=O)[O-])c1,0,14.565197378621122,-4.890504364554468,14.565197378621122,0.8496150029331422,0.329448552641207,479.5329999999998,450.30100000000033,479.2056356480008,184,0,0.3362968776036888,-0.4655800563752146,0.4655800563752146,0.3362968776036888,1.2,1.9428571428571428,2.6,2.6765811935515864,2351.553411565557,50.53856921535524,45.79113052928305,16.791130529283052,28.287916675455694,23.128747625061536,8.681534029561575,5.854851746563348,5.854851746563348,3.767319656014878,3.767319656014878,2.4455553412868305,2.4455553412868305,-3.979999999999999,1987232488718.0283,7.267744405508993,11.435107574340066,6.127501496692924,244.52765708173314,14.783539260888475,6.558985242916289,1.4118420783282006,0.0,5.687386274683562,11.938610575903699,15.01422799961605,9.589074368143644,0.0,0.0,42.29693095364306,31.806514118267593,55.66325519645327,48.192050039584984,63.77919297565584,17.62599685058726,0.0,10.209723084138854,0.0,26.09460160427038,27.06962428639707,98.16327730737945,0.0,0.0,5.309813353288376,5.687386274683562,0.0,0.0,48.83145564196892,25.559659960059683,10.114318268765572,69.10588447611465,76.92205605521985,1.4118420783282006,0.0,0.0,111.00999999999999,173.9722159128252,21.074151193079437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,38.42232309492415,246.4309372201109,0.0,37.801849717324885,11.269624470614477,-14.564839370063122,-10.204520497313451,-13.913090444904222,0.0,-26.809217410460946,-4.01074368530849,0.3076923076923077,35,1,9,0,1,1,2,0,2,8,1,9,13,0,0,0,3,3.677800000000002,130.1241,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,1,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +89594,CN1CCC[C@H]1c1cccnc1,0,8.483587962962963,-3.5544009826152703,8.483587962962963,0.34409486016628854,0.6261518225795569,162.2360000000001,148.12399999999997,162.115698448,64,0,0.08434037947562308,-0.29930714879016557,0.29930714879016557,0.08434037947562308,2.0,3.0,3.9166666666666665,3.0314213254330027,755.0748803522547,20.671208396324303,19.894427190999917,5.894427190999917,11.363931529398815,10.118033988749895,3.1180339887498953,2.0062305898749058,2.0062305898749058,1.2760254915624214,1.2760254915624214,0.7715169943749477,0.7715169943749477,-0.89,151618.2239749087,1.665722401805636,3.2329339260923793,1.344570624512911,92.89935119144997,0.0,0.0,0.0,0.0,0.0,0.0,9.883888251797686,0.0,0.0,0.0,6.042418707663295,37.82440658661724,30.700509895511143,6.853792780851101,19.190619786383078,0.0,0.0,9.883888251797686,0.0,18.763742271008404,13.47268658459819,29.994079328653108,0.0,0.0,0.0,0.0,0.0,0.0,23.356574836395875,0.0,0.0,43.5178135490885,24.430627836956113,0.0,0.0,0.0,16.130000000000003,62.2305081842597,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,19.190619786383078,109.17476792800453,0.0,2.9411399281934996,0.0,-1.0927083333333327,0.0,-5.398898809523809,-8.992716482426307,-7.048250897581257,0.0,0.5,12,0,2,0,1,1,0,1,1,2,0,2,2,0,1,1,2,1.8483,48.842000000000034,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +39186,COc1ccc([C@@H]2Sc3ccccc3N(CCN(C)C)C(=O)[C@@H]2OC(C)=O)cc1,0,14.87330024372773,-4.642342044070719,14.87330024372773,0.5636634306500385,0.6757916364888925,414.5269999999997,388.3190000000002,414.16132831200065,154,0,0.30296730597444044,-0.49676820733809485,0.49676820733809485,0.30296730597444044,1.3103448275862069,2.103448275862069,2.8275862068965516,2.74451737980312,1880.4104990978296,43.358924650593664,39.93566864331923,14.752165224246959,24.24630034389803,20.224633948355326,8.041130529283054,4.833326830499266,5.85394755665892,3.065354932066177,4.158534011860729,1.993886545898084,2.9648642037369184,-2.51,46149490796.74312,5.796795952161692,9.325064666284545,4.9157600211884604,211.8542323452342,19.273545369301054,5.749511833283905,6.080018026949988,0.0,5.907179729351506,5.969305287951849,9.589074368143644,0.0,0.0,11.761884949391115,24.16967483065318,43.68478012291467,39.81943907931778,38.51270674530332,54.702522736169506,29.32575624137803,0.0,4.899909730850478,0.0,23.053383288947305,38.88323535892945,53.90280115300335,0.0,5.749511833283905,9.636772684650527,5.687386274683562,5.749511833283905,11.761884949391115,56.839738403182785,14.325937321943691,0.0,53.2810557386023,53.23483313682413,0.0,0.0,0.0,59.080000000000005,155.81459760639257,12.330591480484083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,37.63506830188534,220.85584615423863,-0.5636634306500385,24.742042577983426,-4.026257912887379,-3.1651131340200602,-6.599484058955386,-11.565753881424115,-4.600657832577476,-21.462510420038786,-3.4477813950021634,0.36363636363636365,29,0,6,0,1,1,2,0,2,6,0,7,10,0,0,0,3,3.368500000000002,114.49500000000005,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +5281037,CCCCc1ncc(/C=C(\Cc2cccs2)C(=O)O)n1Cc1ccc(C(=O)O)cc1,1,13.046769081960646,-4.333103850923345,13.046769081960646,0.09786279860339397,0.458535897261046,424.52199999999976,400.3300000000002,424.14567824800065,156,0,0.33517859283022394,-0.4778641558454528,0.4778641558454528,0.33517859283022394,1.3666666666666667,2.2333333333333334,2.933333333333333,2.7400734092061123,2035.9012611236735,42.22073197015946,38.43566864331923,15.252165224246959,24.24126527254956,19.40927544106921,8.40927544106921,4.951197236344288,5.767693817272013,3.0588616993116764,3.671234135007471,1.8641333521490442,2.323412678920889,-3.19,69303553006.5252,6.403840229472872,10.02437207292287,5.4481262787092355,212.588697027136,14.784716030005779,5.824404497999927,0.0,0.0,2.8623993144652684,11.938610575903699,0.0,14.573052889090853,0.0,11.336785877934737,31.352073141614945,41.471818671719426,44.771305328617714,32.50861881523264,49.963378986102946,29.327468199873998,2.8623993144652684,9.551078168738563,0.0,38.84045140692914,0.0,80.87900906647508,0.0,0.0,0.0,0.0,0.0,11.336785877934737,31.707305126856685,24.037246671046525,0.0,82.07135000971475,53.3566263965314,0.0,8.914471060500835,0.0,92.42,137.7101427953435,9.589074368143644,0.0,15.903885525726093,0.0,0.0,0.0,0.0,0.0,15.201594903161634,33.01908755021011,196.13510710365756,0.09786279860339397,27.66605233620684,6.845503868305302,-6.040154329098354,-5.718431154130057,-9.383820712361304,-17.934723731426466,-8.000729513090246,0.0,0.2608695652173913,30,2,6,0,0,0,1,2,3,7,2,7,11,0,0,0,3,4.744400000000003,116.97810000000005,1,0,0,0,1,2,0,0,2,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +135398513,Nc1nc2c(ncn2COCCO)c(=O)[nH]1,0,12.07767464085037,-3.5363065712396082,12.07767464085037,0.015253025969340861,0.554385971786765,225.20800000000008,214.11999999999998,225.086189212,86,0,0.2799857321708006,-0.39397867396015385,0.39397867396015385,0.2799857321708006,2.0,2.9375,3.75,2.7032460725753147,924.8432496683122,20.947229278263197,18.46081284889138,7.460812848891379,12.159519928698096,9.052453635391254,3.8025645584275165,2.4456598639238036,2.4456598639238036,1.5250617665139052,1.5250617665139052,0.9661208422317631,0.9661208422317631,-1.9300000000000002,407924.31502443424,3.536414888127609,4.289049481140565,1.8772308667996151,105.41067728031871,15.565388120633536,8.053678582073074,15.399404173368593,7.379538938219128,5.559266895052007,0.0,14.338640102092429,4.9839785209472085,4.9839785209472085,0.0,0.0,0.0,0.0,27.64589353682012,23.6765072730834,17.112217219370486,1.4311996572326342,19.51205995991502,0.0,6.682920025902854,18.83768746155885,16.657175793090055,0.0,0.0,11.27898387077828,5.948339280986494,0.0,0.0,39.17003829408745,11.419782979702903,0.0,9.59530989319154,11.09790889803805,4.235526234984602,11.16387793838399,0.0,119.04999999999998,48.775746340124144,4.794537184071822,0.0,15.263819893746879,0.0,0.0,0.0,0.0,0.0,19.81362818680168,15.262035785408775,85.59644741213238,0.0,19.050700563015226,3.563740672373428,-2.915024607460575,-0.8914059350592087,0.0,-0.998690476190476,-10.322434295477452,0.0,0.375,16,4,8,0,0,0,0,2,2,7,3,8,6,0,0,0,2,-1.3318000000000003,55.59890000000001,0,1,0,1,0,4,1,0,0,0,0,0,0,0,0,3,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2578,O=NN(CCCl)C(=O)NCCCl,0,11.700910493827159,-3.5398848891408434,11.700910493827159,0.7564891975308647,0.4236058600444414,214.05200000000008,204.98,213.007181888,70,0,0.33998860727352215,-0.3352164224800899,0.33998860727352215,0.3352164224800899,1.6666666666666667,2.3333333333333335,2.75,5.646211648992907,422.5866359513744,17.439157588755425,14.414066313446053,6.925924205482963,9.014072545885954,6.806303590576088,3.1150189410945845,1.2004196759323995,1.578384148941627,0.6048017639545236,0.7738326149002269,0.25949666239401425,0.3818085351677887,-0.55,9458.326995791702,3.305208464125931,7.118179477889437,4.353178980984177,92.64442903124858,5.309813353288376,0.0,1.4118420783282006,0.0,0.0,6.031114512338072,0.0,4.794537184071822,5.008912523954532,28.108945024453313,0.0,0.0,23.64410735574424,17.26577862995953,17.172447711761784,29.232994292803106,0.0,10.318725877242908,5.2858847209627084,0.0,24.657932815379308,4.907065243988282,0.0,0.0,5.309813353288376,4.794537184071822,0.0,23.20187978046503,35.69795985167191,0.0,4.907065243988282,10.96606844936176,5.2858847209627084,1.4118420783282006,0.0,0.0,61.77,41.00777320496029,9.701602428060104,0.0,0.0,0.0,0.0,0.0,0.0,5.2858847209627084,0.0,35.579790308155,63.888185556115445,10.082307562428262,22.252428665910806,0.3507919186192987,0.0,-6.559754109977324,-2.1027314814814817,0.0,-7.02233922272613,0.0,0.8,12,1,5,0,0,0,0,0,0,3,1,7,5,0,0,0,0,1.157,47.339700000000015,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +11467403,COc1cc2c(cc1S(=O)(=O)c1ccc(OCc3ccc(Cl)cc3)cc1)CCN(C)CC2,0,14.553493501831792,-6.185468631571849,14.553493501831792,0.7303025356874737,0.5169787709281733,472.00599999999974,445.79800000000023,471.1271069920008,168,0,0.20976195107021986,-0.49536808330380516,0.49536808330380516,0.20976195107021986,1.09375,1.78125,2.4375,2.1754241315870546,2300.598718590394,45.38386867697599,41.3664195208285,16.938845047774684,25.68385739995867,21.167880834479472,10.029008555083092,5.624118817348461,7.825453446671966,3.5869910047289504,5.342469822161288,2.1930917391119626,3.435694377778687,-2.539999999999999,231870082076.92047,6.982081468607709,9.527533704164831,4.928063018545126,230.53917692112051,14.373635638450576,22.953492385001873,0.0,9.837253136417502,0.0,0.0,0.0,8.417796984328938,0.0,0.0,23.685777305559107,84.75138083933835,33.094696800245636,32.49481427695366,53.5312453523548,21.43819302665002,0.0,4.899909730850478,0.0,29.0958019966106,27.007498727796722,82.13717486546528,0.0,11.49902366656781,9.473725907600098,0.0,11.49902366656781,11.600939890232516,40.32520544297614,29.142088181992552,0.0,52.33007693551675,70.21515402766849,5.022633313741326,0.0,0.0,55.84000000000001,164.47666212370842,8.417796984328938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,51.977525304458325,253.62516618739275,5.758834639518806,-4.730033337573155,-0.7303025356874737,-4.788621068246425,-3.3283594047626557,-14.52872427457941,-8.351456767128647,-16.1026325864571,-10.046093074698918,0.28,32,0,5,0,1,1,3,0,3,5,0,7,8,0,0,0,4,4.790800000000004,125.57680000000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +8249,NC(N)=NC(N)=NCCc1ccccc1,0,8.05946239606954,-3.490986394557824,8.05946239606954,0.3762304715019358,0.47065752285845447,205.26500000000013,190.14499999999998,205.13274547999998,80,0,0.21804883985935575,-0.3697523937247289,0.3697523937247289,0.21804883985935575,1.3333333333333333,2.1333333333333333,2.8,3.7473918814763754,824.8541007124542,23.76506652345898,22.23606797749979,7.23606797749979,13.467826357665562,10.748529157249603,3.5652475842498528,2.0604101966249684,2.0604101966249684,1.0368033988749894,1.0368033988749894,0.5607952682562336,0.5607952682562336,-2.0399999999999996,1004889.6565106293,2.3713356296855723,5.6400962305513165,4.657834812595399,110.12438593578904,17.15915092717882,0.0,14.43060703871304,5.959554568743835,0.0,0.0,4.992404732635669,0.0,4.992404732635669,0.0,30.212093538316473,11.936376393026375,9.238376796656386,9.59530989319154,20.80787947550118,11.91910913748767,0.0,0.0,27.14396039245016,6.372924901329379,6.496859684315945,35.77554503001347,0.0,0.0,17.15915092717882,0.0,0.0,0.0,18.415968821803617,6.372924901329379,0.0,17.900278497228975,40.19690300358781,8.471052469969203,0.0,0.0,102.78,66.28415572887275,0.0,0.0,11.439433951452546,0.0,0.0,0.0,0.0,0.0,9.984809465271338,20.80787947550118,112.85532104135908,0.0,6.316314300411522,0.0,-2.2657972682747207,-2.446609213397633,-4.7327691095313735,-3.402140022675738,-3.490986394557824,0.0,0.2,15,6,5,0,0,0,1,0,1,1,3,5,3,0,0,0,1,-0.18279999999999919,62.445200000000014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54477,CCN1CCC[C@H]1CNC(=O)c1c(OC)ccc(Br)c1OC,0,13.795365764361295,-4.549413619614513,13.795365764361295,0.8577411443291221,0.835602403925724,371.2749999999996,348.091,370.08920469600065,122,0,0.2584485370500484,-0.49577499245190343,0.49577499245190343,0.2584485370500484,1.7272727272727273,2.590909090909091,3.3636363636363638,3.0722631954621287,1310.5358679694868,36.11036598507973,33.497136535400735,12.083133074515437,19.48172191310832,16.774850546914124,6.1206352209715185,3.4877378264837966,4.2807360960411485,2.30460842945981,2.8629776581822814,1.386673089907988,1.7649824879638925,-1.2699999999999998,382752120.7757315,4.033254957121821,7.830920618790326,3.5491669476203653,172.01322726454202,14.783539260888475,17.062475158264807,1.4118420783282006,0.0,5.907179729351506,0.0,9.694446914922299,0.0,0.0,0.0,6.851892117295679,53.754350484566594,28.963854826708225,32.25620999529979,45.836793405744984,21.837123627300855,0.0,10.209723084138854,0.0,25.61563438830408,33.566483970713016,22.121008422855997,0.0,11.49902366656781,14.783539260888475,0.0,11.49902366656781,15.929943897949348,50.39146589926463,0.0,0.0,60.112418831468155,16.557556931159002,1.4118420783282006,0.0,0.0,50.80000000000001,108.91905326193127,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.40366980554945,31.568530314073033,190.49858532240557,2.6775156705818235,12.844220692134876,-1.0679624905517753,-1.5902220726253458,-5.172275630931385,-6.861520965122608,-8.471909631123648,-17.08000885705906,-7.1097553710418975,0.5625,22,1,5,0,1,1,1,0,1,4,1,6,9,0,1,1,2,2.6804000000000006,89.84820000000006,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +30751,Nc1nc(F)nc2c1ncn2[C@@H]1O[C@H](COP(=O)(O)O)[C@@H](O)[C@@H]1O,0,14.11799736382591,-5.514994176234331,14.11799736382591,0.029882842025698686,0.30617189529250766,365.2139999999999,352.1100000000001,365.0536626060002,132,0,0.46917068506123866,-0.3874194759670717,0.46917068506123866,0.3874194759670717,1.625,2.4583333333333335,3.1666666666666665,2.386038167140539,1256.4928907515737,28.405412915006313,23.918984079256017,11.813411270255934,16.871086870295542,11.703388036359652,7.136561170184725,4.070821471199274,5.147822848034245,2.552204642767605,2.8670985334351125,1.6518735297050686,1.846588274663819,-1.7300000000000002,53680232.5654983,7.253312874549268,5.9670278225437245,3.1006450553152125,151.19649596151416,30.465581109778704,19.610812637020185,26.009377682811966,5.724798628930537,0.0,13.900870970480998,9.090846809503173,9.549026805878537,14.358372089569237,0.0,0.0,0.0,0.0,21.086908293903832,50.64406867821837,24.804437839351188,5.724798628930537,19.519035210632982,0.0,24.44400689078652,12.278702218642561,12.381545561315054,0.0,0.0,5.719716975726273,10.208277825509848,0.0,7.822697123132171,70.05187434358218,13.825658400443196,6.078173847348826,15.799262703128093,6.303371713966227,2.8236841566564013,11.16387793838399,0.0,186.07,68.18897553436905,8.955463332606149,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,39.484683904805834,22.880655632578527,135.89533196825485,0.0,16.88071345534054,8.11668886999244,-2.0427666479701174,-0.9124766762701919,0.0,-18.857203189560696,-4.1764047146636445,-5.514994176234331,0.5,24,6,12,0,1,1,0,2,2,12,5,14,9,0,1,1,3,-1.7239000000000007,73.6131,0,2,0,1,0,4,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4499,COC(=O)C1=C(C)NC(C)=C(C(=O)OCC(C)C)C1c1ccccc1[N+](=O)[O-],0,14.105789832136555,-4.684014655244815,14.105789832136555,0.8114562074829941,0.45278603663958333,388.4199999999997,364.2280000000001,388.1634364880006,150,0,0.336263930389696,-0.46558003067235826,0.46558003067235826,0.336263930389696,1.3928571428571428,2.0714285714285716,2.6785714285714284,3.541214674435001,1734.658006273591,41.49711733102786,37.34391693378309,13.343916933783095,22.746464791128307,18.707927231811595,6.760713636311638,4.670834752188401,4.670834752188401,3.0442296849846073,3.0442296849846073,2.056059506052947,2.056059506052947,-3.1599999999999997,7672225840.318007,5.683397427144067,8.685527401454435,4.214929198899866,196.68587670462662,14.783539260888475,0.0,1.4118420783282006,0.0,5.687386274683562,11.938610575903699,10.114318268765572,9.589074368143644,0.0,0.0,31.831040357581244,19.597741919954437,42.190568611855056,47.897242501650176,56.92540019480472,17.62599685058726,0.0,5.309813353288376,5.893957685363079,33.3015261545458,13.596937701798877,62.38773227736595,0.0,0.0,5.309813353288376,5.687386274683562,0.0,0.0,30.458859326520248,19.06280027574374,16.008275954128653,70.39242443815789,46.70996251690338,1.4118420783282006,0.0,0.0,107.77000000000001,132.92495680300146,21.074151193079437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,31.568530314073037,198.4182437700937,0.0,38.40287010813661,11.556177201826552,-12.848360024565384,-14.532556807879,-6.543519486440888,0.0,-21.504515037056308,-3.9483397241153426,0.4,28,1,8,0,1,1,1,0,1,7,1,8,11,0,0,0,2,3.201800000000002,102.18610000000007,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4829,CCc1ccc(CCOc2ccc(CC3SC(=O)NC3=O)cc2)nc1,0,12.390339308905798,-3.8369923349658226,12.390339308905798,0.2609282918513809,0.8252539098127764,356.4469999999997,336.2870000000001,356.11946350000056,130,0,0.2859456866612067,-0.493193236605904,0.493193236605904,0.2859456866612067,1.36,2.16,2.88,2.1646554957812008,1581.9269558019578,35.204224112214405,32.02742035285537,12.843916933783095,20.018303173317513,16.316385657891466,7.185668643319232,4.09451158626358,5.056124874461095,2.4499767236444328,3.1966908869115804,1.4272375502141692,2.016459737515698,-2.34,1017469662.0016032,5.330149283364844,8.160013239239413,4.823773952272115,178.88887934231337,4.736862953800049,5.749511833283905,1.4118420783282006,5.907179729351506,5.239211713172287,0.0,19.882866242379226,0.0,0.0,0.0,36.74103318967668,42.000008909042634,30.576575112524576,25.492560473802346,41.78219196750609,22.908276391914907,0.0,10.293791874235584,0.0,31.196656490467678,6.558985242916289,59.24823843503698,0.0,5.749511833283905,10.046676307088426,4.794537184071822,5.749511833283905,11.761884949391115,27.915344875571147,23.913311888059958,0.0,49.71713566277235,42.427407456794526,1.4118420783282006,0.0,0.0,68.28999999999999,113.89978344422865,9.589074368143644,0.0,17.07169830267949,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,32.193117599362424,165.09232378693426,-0.2609282918513809,27.55999724120886,-4.852874993900871,-3.8130422805460613,-3.024506661269568,-8.000766399862373,-11.908121443027628,-7.292080957685247,0.0,0.3157894736842105,25,1,5,0,1,1,1,1,2,5,1,6,8,0,1,1,3,3.159600000000001,97.87770000000003,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +64737,CCCCN1CCCCC1C(=O)Nc1c(C)cccc1C,0,14.301825514928186,-4.975137589758128,14.301825514928186,1.0477573459939542,0.8910127130247419,288.43499999999943,260.21099999999996,288.22016351600075,116,0,0.2412445175266546,-0.32423494936901764,0.32423494936901764,0.2412445175266546,1.619047619047619,2.4285714285714284,3.142857142857143,3.3350435569710015,1459.2606745804865,39.69615242270663,38.30267548146378,10.30267548146378,21.035468820183674,19.269371729481783,5.322158133981827,3.423186553158378,3.423186553158378,2.1294504185379113,2.1294504185379113,1.2688730043214567,1.2688730043214567,-1.35,1688557915.9912024,2.887716389801094,7.599376898652427,4.068068371596222,167.6733259295192,5.309813353288376,0.0,1.4118420783282006,5.907179729351506,0.0,0.0,9.694446914922299,0.0,0.0,0.0,37.72499804294432,56.943181290605374,37.21483306659863,11.500926693030525,43.21686027899598,11.594566004035068,0.0,4.899909730850478,0.0,58.43819332688357,18.303532721920266,29.254159106383874,0.0,0.0,5.309813353288376,5.687386274683562,0.0,0.0,29.818701297183516,4.794537184071822,13.703784234591359,86.85390062393247,18.127256122989884,1.4118420783282006,0.0,0.0,32.34,122.49036089007326,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.422323094924145,226.22207175639846,0.0,12.990186720521535,-1.0477573459939542,-5.198780939136953,-2.9005550831443676,-9.382926539730882,-22.924511662070973,-21.34106024017624,0.0,0.6111111111111112,21,1,3,0,1,1,1,0,1,2,1,3,8,0,1,1,2,3.8965400000000026,88.66570000000006,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33625,O=C(NC1CCN(CCc2c[nH]c3ccccc23)CC1)c1ccccc1,0,13.52391804495154,-4.513996992423898,13.52391804495154,0.008135720810389824,0.7406983864015038,347.4619999999996,322.26200000000006,347.1997624200007,134,0,0.25099427271143926,-0.3608892263300167,0.3608892263300167,0.25099427271143926,1.3076923076923077,2.0384615384615383,2.8461538461538463,2.026820476136892,1944.979894461005,39.89230484541327,37.74988907696374,12.749889076963736,22.698929172439204,19.413798920481703,7.019371729481785,4.633596749783347,4.633596749783347,2.989346405574603,2.989346405574603,1.843704322922904,1.843704322922904,-2.589999999999999,18423769905.088978,4.448257493478687,7.748788965519113,3.8056821341293063,189.0046217624812,15.186726354368107,0.0,2.8236841566564013,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,36.25451224597977,42.809482318675016,64.59684582993297,15.078344117872419,39.145668132643294,16.810104661432565,0.0,15.186726354368107,0.0,25.136667172337784,19.490579052947837,71.6815665631784,0.0,0.0,5.309813353288376,0.0,0.0,0.0,41.29256425172872,6.372924901329379,0.0,60.194736762039696,60.55466357978442,2.8236841566564013,10.902924932081056,0.0,48.13,143.3286405340355,4.794537184071822,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,0.0,34.35113094857146,209.36115289018846,0.0,12.572221089066566,-1.9585019834743556,-3.6394821035272784,-2.190390866093897,-14.483716135904249,-14.474915755380977,-13.43636713487431,0.0,0.3181818181818182,26,2,4,0,1,1,2,1,3,2,2,4,5,0,1,1,4,3.604800000000002,105.37290000000003,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,2,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2249,CC(C)NCC(O)COc1ccc(CC(N)=O)cc1,0,11.946269498002241,-4.392508100290162,11.946269498002241,0.7413199425103145,0.6376739781676249,266.3409999999999,244.16499999999996,266.1630425640003,106,0,0.22133904270124447,-0.49084910947086335,0.49084910947086335,0.22133904270124447,1.7894736842105263,2.5789473684210527,3.210526315789474,3.8862882025697107,1120.6525380718601,33.11036598507973,31.119172062391506,9.119172062391504,17.92929787806655,15.237206051141401,4.487316974177663,2.7397385956042357,2.7397385956042357,1.3490359644687844,1.3490359644687844,0.748370791771757,0.748370791771757,-1.5899999999999999,74484947.94917265,3.0185825942806104,7.759435821524982,6.785046519560318,144.48018515557132,20.875201473921912,19.80035718147838,2.8236841566564013,7.33837938658414,0.0,0.0,4.794537184071822,0.0,0.0,0.0,25.78862164991795,17.648288907023584,27.593096270538005,15.968234794520917,43.549388575027656,5.907179729351506,1.4311996572326342,5.309813353288376,5.719716975726273,32.17461963122037,13.055844927232233,29.733126322350174,0.0,5.749511833283905,15.766393282814699,0.0,5.749511833283905,0.0,37.60094300022322,11.167462085401201,0.0,43.940889737352336,24.16967483065318,4.235526234984602,0.0,0.0,84.57999999999998,97.64981277245286,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,30.34037990328119,173.8456605879128,0.0,11.946269498002241,2.6741938937734453,-2.069285849367139,-3.461490652487936,-9.964425485896447,-7.871512089687911,-16.682743235582414,0.0,0.5,19,4,5,0,0,0,1,0,1,4,3,5,11,0,0,0,1,0.45210000000000006,73.98090000000003,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +3690,O=P1(NCCCl)OCCCN1CCCl,0,13.434938271604938,-6.129135802469133,13.434938271604938,0.866280864197531,0.605720669080109,261.089,245.969,260.0248197100001,84,0,0.34298354140885867,-0.305966177865779,0.34298354140885867,0.305966177865779,1.7142857142857142,2.5,3.142857142857143,3.9706006860689698,705.7589352862118,23.8618073195658,21.414066313446057,8.82035139648288,12.227832723350238,10.465270978661165,5.304283072519883,1.74512194825914,3.886814508545574,0.996925617198157,2.553304582353536,0.5404444080080066,1.690664962495802,0.69,250067.3744461912,3.123261134110519,6.311144001092418,3.36838444118429,115.57414914225376,4.5237471617118175,1.4118420783282006,0.0,0.0,0.0,7.670279738874966,4.565048284931329,9.750736002280497,0.0,23.20187978046503,0.0,6.372924901329379,47.603895173737925,9.300502355256729,29.691257311354423,30.872159519339995,0.0,9.750736002280497,0.0,6.372924901329379,37.71377774261154,0.0,0.0,0.0,5.080319812359198,0.0,0.0,30.872159519339995,42.38419393253284,9.088795446643147,0.0,25.563544687712454,0.0,1.4118420783282006,0.0,0.0,41.57,61.50771838509638,4.565048284931329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5237471617118175,43.804341645176336,130.8274784790459,10.466262269568318,0.0,-0.9877391975308654,0.0,-7.211486678004537,0.0,-3.8641511164651066,-15.823450176366848,-6.129135802469133,1.0,14,1,4,0,1,1,0,0,0,2,1,7,5,0,1,1,1,1.884,59.19120000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +53708,CSc1ccc(C(=O)c2[nH]c(=O)[nH]c2C)cc1,0,12.89186000094482,-3.173387241024101,12.89186000094482,0.07301062400268665,0.6443400679154861,248.30700000000007,236.21099999999996,248.061948624,88,0,0.3231441394965081,-0.30954777054240845,0.3231441394965081,0.30954777054240845,1.411764705882353,2.176470588235294,2.823529411764706,2.8389541128136098,1036.0292376861476,22.63531001146206,20.119172062391506,8.935668643319232,13.00261230250229,10.10535096292756,5.027420352855369,2.838704942164822,3.4510773778606163,1.7854597895946356,2.1937080800584976,1.0644943647667162,1.2686185099986467,-1.75,861569.7270586945,3.880276450779231,4.628078390565383,2.336879311522437,119.43404556265479,9.954006540458504,5.693927994848461,2.8236841566564013,5.783244946364939,0.0,5.689743398203474,4.794537184071822,4.794537184071822,0.0,11.761884949391115,0.0,37.205491049065316,24.37741429908455,5.483034224680881,21.325806902430422,17.545129895756055,0.0,9.954006540458504,0.0,11.747375592813455,6.1839241011164585,51.60526289432239,0.0,0.0,5.689743398203474,0.0,0.0,11.761884949391115,21.921175587939906,0.0,6.851892117295679,35.45343022716794,33.85969549024277,2.8236841566564013,0.0,0.0,65.72,70.52527035054541,9.589074368143644,0.0,21.715891489849618,0.0,0.0,0.0,0.0,0.0,0.0,16.5312697183586,90.78083084048589,0.07301062400268665,23.816345543318846,0.0,-4.667936696315347,-1.489204931972789,-3.6397893046107326,-2.6998688338844357,-3.173387241024101,0.0,0.16666666666666666,17,2,4,0,0,0,1,1,2,3,2,5,5,0,0,0,2,1.9643199999999998,67.80590000000001,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +9803964,CS(=O)(=O)Nc1cccc(CC(=O)NC[C@H]2CN(Cc3ccc(F)c(F)c3)CCO2)c1,0,14.5824804629016,-5.889415676169836,14.5824804629016,1.0208793747440748,0.6376092475678033,453.51099999999974,428.3110000000002,453.1533837200007,168,0,0.22931900563932614,-0.37371843343135663,0.37371843343135663,0.22931900563932614,1.3870967741935485,2.225806451612903,3.032258064516129,2.3458460134513657,2071.146944533583,44.444711088220565,39.63881118483764,15.45530776576537,24.611377754887233,19.946436550605135,8.992072688405857,5.025752749377156,6.158459614868524,2.786386583474593,3.2093190607271604,1.709960766319507,2.0416061506545473,-2.559999999999999,73431839536.80812,6.96708907254362,10.16546795139207,7.568504126432558,213.86542465014224,10.046676307088426,0.0,14.458125838748192,15.930470882759089,0.0,0.0,14.40956652865643,17.198627079678577,0.0,0.0,18.127256122989884,35.29657781404717,46.753169129819796,41.64495494635477,61.08115816612197,21.61785715744265,0.0,10.209723084138854,0.0,18.949802612595313,36.94860801071471,65.05827561912884,0.0,0.0,10.024932967022508,14.468216370033202,0.0,0.0,57.538392868461486,32.42447587692478,11.63444168209179,42.65434977530907,42.29693095364306,2.8236841566564013,0.0,0.0,87.74,152.7842664840204,21.9931642637504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,34.35113094857146,259.5116572641705,0.0,12.576745494628288,-1.3449632229626372,-5.474969255764971,-7.30742245123538,-12.1206509848554,-13.218336296659292,-22.64931153781795,-5.889415676169836,0.38095238095238093,31,2,7,0,1,1,2,0,2,5,2,10,9,0,1,1,3,1.8959999999999997,112.99720000000005,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +68911,CO[C@H]1O[C@@H]2O[C@@]3(C)CC[C@H]4[C@H](C)CC[C@@H]([C@H]1C)[C@]42OO3,0,9.486322278911565,-5.137925170068026,9.486322278911565,4.126120795540443,0.6966147525766675,298.3789999999995,272.171,298.1780239320007,120,0,0.20128179653039754,-0.3554747239200555,0.3554747239200555,0.20128179653039754,1.2380952380952381,2.238095238095238,3.0476190476190474,2.506470347330006,1354.164222381298,37.53553390593274,36.04124145231931,10.041241452319316,20.07842712474619,18.54965982852212,5.5496598285221195,4.345535683290187,4.345535683290187,3.1588080836983132,3.1588080836983132,2.2206419868770246,2.2206419868770246,-0.2,944045944.9597235,3.2880243867034413,4.648549261345521,1.8144731361932536,162.21631259729747,14.210588861400147,0.0,18.133207548057484,5.7871111525705965,0.0,0.0,0.0,9.775141906512223,0.0,0.0,13.703784234591359,37.758582192009975,53.984722410512795,6.853792780851101,59.62545322833815,0.0,0.0,0.0,23.575830741452314,69.96769465783264,7.037952458882589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.958271159510666,23.985730767912372,23.575830741452314,81.68709841763027,0.0,0.0,0.0,0.0,46.150000000000006,100.58147785816753,2.7415171123404405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.624433907056162,47.25950220894152,234.53993846844293,0.0,9.589279691043084,0.0,-5.000841836734695,-24.75646967120182,0.0,-29.16212195294786,-13.583663903061227,-4.126120795540443,1.0,21,0,5,1,4,5,0,0,0,5,0,5,5,1,4,5,5,2.8408000000000015,73.83700000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3883,Cc1c(OCC(F)(F)F)ccnc1C[S+]([O-])c1nc2ccccc2[nH]1,0,13.370895337301583,-5.773485838039605,13.370895337301583,0.0935501538004242,0.6986390031308142,369.3679999999999,355.25600000000014,369.07588234800045,132,0,0.4220666871121063,-0.6086940396422965,0.6086940396422965,0.4220666871121063,1.44,2.24,3.0,2.3390311895978178,1477.2584912070677,30.20422411221441,25.700279076919145,12.516775657846871,17.46295573354737,13.088964339108067,7.291580657869169,4.177406345990047,5.2841363414573514,2.488519593270838,3.381483734923725,1.5136124769263286,2.2766111159795717,-2.26,91574727.4237181,7.161274269590182,6.927854211900839,4.232158038627393,163.710572786246,9.289612827490412,5.749511833283905,13.675784206394647,0.0,0.0,11.332734999264183,9.960981791176462,0.0,18.155223663971668,0.0,12.08483741532659,24.979148240285564,27.024476844407705,30.43491499178318,41.692561279055944,22.209255908617813,0.0,14.94496031212367,0.0,23.88958400171002,6.558985242916289,47.64236823567669,0.0,5.749511833283905,4.736862953800049,13.171245143024459,5.749511833283905,0.0,32.23299394617379,16.880811358535446,6.851892117295679,29.07724071675831,41.541425230951944,1.4118420783282006,11.033401435232523,0.0,73.86,106.04970522220472,17.723995016714824,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,14.704819995694464,19.231703308541057,165.90381588990394,-3.347211133681867,7.030193120738755,-1.08809055335097,-7.985373043354419,-1.7155915056564404,-4.6370841225694015,-7.14310559388501,-8.295330835922348,0.0,0.25,25,1,5,0,0,0,1,2,3,4,1,9,6,0,0,0,3,3.515220000000001,86.73010000000004,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +6918331,COc1ccc(-n2nnnc2C(F)(F)F)cc1CN[C@H]1CCCN[C@H]1c1ccccc1,0,13.851143868237713,-5.486719038802896,13.851143868237713,0.41049342821470036,0.6227755038474087,432.44999999999976,409.2660000000002,432.18854401600066,164,0,0.4531328739802734,-0.4964233496968985,0.4964233496968985,0.4531328739802734,1.4516129032258065,2.2903225806451615,3.064516129032258,2.2621053164935456,1993.7372097601246,42.0660314317802,37.72542328249129,14.725423282491292,24.039193562711485,19.284869775227474,7.890442584227557,5.336274910465379,5.336274910465379,3.4469405450208472,3.4469405450208472,2.1791024660066602,2.1791024660066602,-2.9799999999999995,70611957214.38869,7.010187927983669,9.02586737598828,4.695350024944478,209.58304442277003,15.356489660376802,8.573195989940306,0.0,0.0,5.824404497999927,6.176298517443475,0.0,0.0,17.853048078169643,5.098681808301038,30.212093538316473,53.36018729297131,36.43292311824422,29.174441407608786,49.517721933055554,0.0,0.0,30.82688164133271,0.0,37.45479294111747,13.534812143198533,65.29065714270027,0.0,11.436898107967467,15.356489660376802,13.171245143024459,5.749511833283905,0.0,39.75995954630414,12.67315820175942,0.0,64.500979431977,48.33934966130636,2.8236841566564013,5.687386274683562,0.0,76.89,143.01858997670573,15.912762255364898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.262314953410822,28.868096723890577,239.4483685186086,0.0,0.0,6.487831795529947,-5.137757621241793,-3.84082684327275,-21.01699467573654,-14.376929244971123,-8.629097987450908,-3.7679272747987236,0.38095238095238093,31,2,7,0,1,1,2,1,3,7,2,10,7,0,1,1,4,3.2726000000000015,107.75540000000001,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +33624,CC(C)(C)NC[C@H](O)COc1nsnc1N1CCOCC1,0,8.35417824074074,-4.587045540438397,8.35417824074074,0.016936524507772832,0.7909853075121279,316.4269999999996,292.23500000000007,316.15691162800067,120,0,0.27045924102168106,-0.4715971466666149,0.4715971466666149,0.27045924102168106,1.7142857142857142,2.5238095238095237,3.238095238095238,2.802300202821294,1179.9092892818267,36.05204176387779,33.921847543855286,10.738344124783012,19.494782689186778,16.806478568043445,5.681313425419844,3.225451703147946,3.753899391003602,1.6366312004532904,2.138689959816656,0.9252100888692187,1.3961924909906454,-0.9600000000000002,421561852.2178926,3.5812516681442026,7.347621671258034,5.385438987782126,162.99681339394,24.792257182846164,14.050845348194477,0.0,7.249062435067662,5.879988336435371,0.0,0.0,0.0,4.3735399814164495,4.3735399814164495,0.0,20.555676351887037,40.10784842320361,39.924501948903625,46.15106441278038,17.54605012303364,1.4311996572326342,14.056893316121275,0.0,32.174619631220374,44.067444512547176,0.0,0.0,5.879988336435371,14.946586037938904,5.817862777835028,5.879988336435371,11.728187345198613,66.07356587220278,4.736862953800049,0.0,50.71236458763192,0.0,1.4118420783282006,0.0,0.0,79.74,88.34981888047587,0.0,0.0,16.62809707604909,0.0,0.0,0.0,0.0,0.0,18.59275110774016,37.73659292510573,205.39519261226542,-0.016936524507772832,-0.3333979599645187,2.6207181118544756,-4.512098687130708,-2.7422677311665407,0.0,-4.484236111111113,-36.51030704357265,0.0,0.8461538461538461,21,2,7,0,1,1,0,1,1,8,2,8,7,0,1,1,2,0.5024999999999997,82.19850000000004,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2554,NC(=O)N1c2ccccc2C=Cc2ccccc21,0,12.739529478458046,-1.5323507180650033,12.739529478458046,0.35759259259259224,0.7483634501218209,236.27400000000006,224.17799999999994,236.094963004,88,0,0.32342219617413165,-0.3508838374482669,0.3508838374482669,0.32342219617413165,1.0,1.5,2.0,2.689906206852581,1080.276958169385,22.81495457622364,20.80267548146378,8.80267548146378,13.83888683279847,10.742978527231763,4.848551336231847,3.315197977959982,3.315197977959982,2.2864108850424545,2.2864108850424545,1.55620578672997,1.55620578672997,-2.549999999999999,2694271.7126180683,3.7195772236330464,4.035866968245452,1.5691552778201157,122.12489521678758,5.719716975726273,0.0,2.8236841566564013,0.0,0.0,6.031114512338072,4.899909730850478,4.794537184071822,0.0,0.0,48.3586557380509,23.21174039872058,0.0,25.082358111069322,21.325806902430422,29.51003055377633,0.0,0.0,5.719716975726273,0.0,4.899909730850478,59.46625264470035,0.0,0.0,10.619626706576751,16.169309733438947,0.0,0.0,6.031114512338072,0.0,0.0,24.83448854509619,48.33934966130636,2.8236841566564013,12.104143492071133,0.0,46.330000000000005,94.69600017420298,4.794537184071822,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,16.5312697183586,95.40807476694381,0.0,13.097122071050638,0.0,-3.0130621693121675,0.0,-9.492134668682285,0.0,0.0,0.0,0.0,18,2,3,0,1,1,2,0,2,1,1,3,0,0,0,0,3,3.3872000000000018,73.53440000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +3000226,CC(=O)O[C@H]1C[C@@]2(C)[C@@H](C[C@@H](O)[C@H]3[C@@]4(C)CC[C@@H](O)[C@@H](C)[C@@H]4CC[C@@]32C)/C1=C(\CCC=C(C)C)C(=O)O,0,14.565373040975565,-6.908128176303688,14.565373040975565,2.507534494126043,0.24722169401317395,516.7189999999997,468.3350000000004,516.3450892560013,208,0,0.3311714085847432,-0.47787300926695153,0.47787300926695153,0.3311714085847432,1.2162162162162162,2.081081081081081,2.7567567567567566,3.032622039747206,2809.5871521112745,68.79252873988395,65.94948974278319,17.94948974278318,36.50125384599975,33.40361388801511,9.678869016623521,7.66434946544229,7.66434946544229,5.54566324759439,5.54566324759439,4.031616693132416,4.031616693132416,-1.6599999999999997,1.4840729242489294e+20,5.590401993637323,9.82195377600086,4.400683647621715,289.80286924986194,20.063287527121684,6.080018026949988,0.0,2.8623993144652684,1.4311996572326342,11.938610575903699,4.794537184071822,4.794537184071822,0.0,0.0,39.03274474528755,110.08109012493833,68.62609745034402,17.643070278580854,91.33649692292522,11.938610575903699,4.293598971697903,0.0,39.82080214964265,117.18669811255475,0.0,22.77138533624337,0.0,0.0,0.0,0.0,0.0,0.0,48.36748854454057,14.325937321943691,39.82080214964265,160.6307790593645,22.77138533624337,0.0,1.4311996572326342,0.0,104.06000000000002,191.71749617434446,42.48727971622894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.063287527121684,33.07952865127252,437.5152549244515,0.0,28.480744506704923,11.930539499993568,-29.910896655773158,-32.37691748103456,-2.793547300833157,-66.34881223525993,-37.246365258249284,0.0,0.8064516129032258,37,3,6,4,0,4,0,0,0,6,3,6,14,4,0,4,4,5.6661000000000055,142.55139999999994,1,2,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +62960,NC1[C@@H]2CN(c3nc4c(cc3F)c(=O)c(C(=O)O)cn4-c3ccc(F)cc3F)C[C@H]12,0,15.934117877089106,-3.7196462456845305,15.934117877089106,0.04548363095238139,0.6764188399093582,416.3589999999998,401.2390000000001,416.10962500000045,154,0,0.34073926677904565,-0.47749684962258565,0.47749684962258565,0.34073926677904565,1.3333333333333333,2.1,2.8,1.9828498746257601,1888.4053230546447,34.30651840778636,29.1474926724191,14.147492672419101,20.47608028663809,15.244455806423225,7.9417803249594465,6.020989513060848,6.020989513060848,4.221907005178728,4.221907005178728,2.7983650545020793,2.7983650545020793,-3.399999999999999,2972215347.9312677,8.383625730994153,6.2971904266389185,2.672594488311851,187.98836923850516,15.728434897683965,20.021577330445183,17.28226083964865,5.428790391900541,1.4311996572326342,5.969305287951849,9.361636831863176,22.94976084804349,0.0,0.0,0.0,29.915171493716038,40.82223564865115,17.927403269999456,42.347377348902555,22.8205695010194,1.4311996572326342,9.551078168738563,17.507632346452432,6.017892468349645,17.893629099482368,63.58101163227498,0.0,5.687386274683562,16.04841709847729,18.98910792085949,0.0,0.0,39.640803484779155,0.0,29.23957789386384,26.807091349811454,35.137107225539765,2.8236841566564013,18.15198736714872,0.0,101.44999999999999,123.81367440734012,13.979489415818463,8.78083009534964,9.467009378641833,0.0,0.0,0.0,0.0,0.0,10.092786712054421,20.703986487931672,166.76871515031416,0.0,28.858858954108598,2.3500254235519833,-6.601228321990097,-16.210846203147966,-9.44887946323124,-1.5273530482364357,-7.43929249136906,0.0,0.25,30,3,7,1,1,2,1,2,3,7,2,10,4,1,1,2,5,1.8944999999999996,101.34170000000003,0,0,0,0,1,2,0,0,1,1,1,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +9887803,NS(=O)(=O)c1c(Cl)ccc(NC(=O)Nc2cccc(Cl)c2Cl)c1O,0,12.822756519274375,-5.1827310891069,12.822756519274375,0.22036611866968991,0.5769312239369595,410.666,400.5860000000002,408.9457598400002,128,0,0.3233345211648473,-0.5044052298049116,0.5044052298049116,0.3233345211648473,1.2083333333333333,1.9166666666666667,2.5833333333333335,2.799593721518713,1271.1542164282341,26.444711088220565,21.01677565784687,14.101059076829962,15.531592173638508,10.286756527841638,8.163610603206262,3.903655918890854,6.3959303080387135,2.337909997057198,4.387058115416011,1.3962619674799626,2.703784572436109,-1.7099999999999993,10715553.966007082,9.116618912185722,7.037792187165389,4.02875938948704,166.287986718245,15.728434897683965,7.719167632174177,8.573195989940306,10.023291153407584,1.4311996572326342,6.031114512338072,0.0,18.33735740457279,0.0,0.0,40.84523837836085,24.16967483065318,0.0,33.2964652714422,30.822303453671864,62.23199788581033,1.4311996572326342,0.0,5.12502323617203,4.895483475517775,10.619626706576751,45.27999347954045,0.0,5.749511833283905,15.744649942748783,16.169309733438947,5.749511833283905,34.802819670697545,20.988919345006856,10.023291153407584,0.0,6.853792780851101,35.107577013834245,20.715268254536774,0.0,0.0,121.52,88.47919023962693,13.212334168400758,0.0,10.619626706576751,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,48.73518042209409,100.9385986996183,17.463934483252984,11.476467793125138,0.41938390350396126,-2.0322039600305137,-1.2868861454046636,-6.379897018291619,0.0,0.0,-5.1827310891069,0.0,24,5,7,0,0,0,2,0,2,4,4,11,5,0,0,0,2,3.643800000000001,93.5934,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1 +3365,OC(Cn1cncn1)(Cn1cncn1)c1ccc(F)cc1F,0,15.30302484882842,-3.9242592592592604,15.30302484882842,0.09788359788359724,0.7515159753061997,306.2759999999998,294.18,306.1040654440003,114,0,0.21154775600786352,-0.38113798436276414,0.38113798436276414,0.21154775600786352,1.1818181818181819,1.8181818181818181,2.3181818181818183,2.595684645972768,1192.5360615557875,25.963737136208252,22.347458809482063,10.347458809482065,15.555490988648465,11.376404886204813,5.4681565957409495,3.729971084107062,3.729971084107062,2.293872595989213,2.293872595989213,1.4583161058439518,1.4583161058439518,-2.6799999999999993,16339804.21439962,5.840473735712772,5.6024467573223475,2.8375736961451246,140.36580156881902,5.1088081911072125,47.93201357362128,0.0,1.4311996572326342,0.0,0.0,0.0,28.11239300753443,10.197363616602075,0.0,6.042418707663295,6.042418707663295,11.60587019936029,22.589029261823427,28.96798240432927,0.0,1.4311996572326342,29.52892652878686,0.0,18.59477017961558,0.0,60.538636152643576,0.0,0.0,0.0,8.78083009534964,0.0,0.0,36.0689343771267,18.59477017961558,11.63444168209179,20.641795609569414,43.34074297885479,0.0,0.0,0.0,81.64999999999999,79.13340633225917,4.39041504767482,4.39041504767482,9.36360587029037,0.0,0.0,0.0,0.0,0.0,25.274128849603706,16.509543775105055,124.6395466952213,0.0,6.437642563198118,10.940770660115897,-5.593924792139079,-3.952777357856723,-4.714438040648357,-4.22023904006047,-7.619914021164024,0.0,0.23076923076923078,22,1,7,0,0,0,1,2,3,7,1,9,6,0,0,0,3,0.7357999999999993,70.29880000000001,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5486971,CC(C)C[C@H](CN)CC(=O)O,0,11.7009623015873,-4.599166666666668,11.7009623015873,1.0770436507936507,0.6306196110552211,159.22900000000016,142.093,159.125928784,66,0,0.3031719403349951,-0.48122220770897245,0.48122220770897245,0.3031719403349951,2.090909090909091,2.909090909090909,3.4545454545454546,7.509301292312136,578.9452501943771,23.3618073195658,22.263710176427686,5.263710176427685,11.924756148408916,10.684530569677621,2.381855088213842,1.3992608774402544,1.3992608774402544,0.5888654714909554,0.5888654714909554,0.3142137720534605,0.3142137720534605,-0.5700000000000001,165871.92816482077,1.327741004193145,5.129492287873465,5.854178154825026,91.67677440331498,10.828525166833487,2.8236841566564013,0.0,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,0.0,13.703784234591359,24.65769995637148,25.563544687712454,0.0,31.91764931821851,5.969305287951849,1.4311996572326342,0.0,17.507632346452432,26.449634037250117,6.496859684315945,0.0,0.0,0.0,5.719716975726273,0.0,0.0,0.0,17.574973163375006,4.794537184071822,11.787915370726157,45.64025382363322,0.0,2.8236841566564013,1.4311996572326342,0.0,63.32000000000001,56.42343135597034,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,23.44550360027211,126.79512967687074,0.0,11.7009623015873,3.3144444444444447,-1.0770436507936507,-11.413906840513986,0.0,-8.92763888888889,-12.475280376039311,0.0,0.875,11,3,3,0,0,0,0,0,0,3,2,3,8,0,0,0,0,1.0821,44.2522,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +134018,Cc1nc(-c2ccc(OCC(C)C)c(C#N)c2)sc1C(=O)O,0,11.908492380529998,-3.9537125369318353,11.908492380529998,0.266336923983703,0.9084929504991408,316.3819999999997,300.254,316.0881633720004,114,0,0.3473241593912338,-0.49193943064867457,0.49193943064867457,0.3473241593912338,1.7727272727272727,2.6363636363636362,3.3181818181818183,2.862530872529487,1290.464482033105,29.809036597829,26.52742035285537,11.343916933783095,16.973581197566727,13.303813555105389,6.212061845569252,3.6292581467854665,4.6283289135482475,2.171474149137309,3.2243745302523528,1.3244713732010582,2.0845267859016183,-2.3900000000000006,44596463.197859235,5.067233091204522,6.5824606305476765,3.43472486449568,154.93118240172282,9.84567114490726,21.703504036630243,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,9.77851570501903,5.261891554738487,11.336785877934737,13.703784234591359,30.873105925648645,19.271037053399194,24.670157510312844,35.20158667153238,17.306091165886585,6.693091211971121,4.9839785209472085,5.893957685363079,20.555676351887037,6.558985242916289,34.26178280323664,0.0,22.38980833462594,4.736862953800049,0.0,5.749511833283905,11.336785877934737,22.621077242922556,0.0,24.076962670189516,55.19422644146328,18.127256122989884,0.0,12.002274845782395,0.0,83.21,89.56029439318857,10.056428738810308,0.0,11.336785877934737,0.0,0.0,6.069221312792274,0.0,0.0,10.092786712054421,26.729440953585982,127.69007283835859,0.266336923983703,14.931013886192511,12.880544297334156,-2.536181465456809,-6.607811529039087,-1.7737460763626445,0.0,-14.600228875010433,0.0,0.3125,22,1,5,0,0,0,1,1,2,6,1,6,8,0,0,0,2,3.723200000000002,84.29430000000006,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +6918155,CC(C)C(=O)OCC(=O)[C@@]12O[C@H](C3CCCCC3)O[C@@H]1C[C@H]1[C@@H]3CCC4=CC(=O)C=C[C@]4(C)[C@H]3[C@@H](O)C[C@@]12C,0,16.200846196018446,-6.450641849332331,16.200846196018446,2.2521050717079163,0.5046539264256359,540.6970000000013,496.3450000000004,540.3087037480012,214,0,0.3083039227812379,-0.45734847919900784,0.45734847919900784,0.3083039227812379,1.358974358974359,2.2051282051282053,2.948717948717949,2.066305901672702,2903.9888798786487,66.36987900907357,62.857738033247045,18.857738033247042,35.766161171250026,32.44948974278318,10.541241452319316,8.230846046370015,8.230846046370015,6.059024198163433,6.059024198163433,4.3476402773408855,4.3476402773408855,-1.83,3.987996029060887e+17,6.549036225879982,9.627347708398156,3.967634018761414,293.16307159494005,19.31939705250736,0.0,24.209359368801813,7.214444603597573,0.0,5.969305287951849,14.383611552215466,0.0,0.0,0.0,58.15151944927568,62.12960827077355,70.59444577547747,29.020062188624813,92.64562652004227,17.535795180681728,1.4311996572326342,0.0,40.29976936560895,108.7910578145677,6.558985242916289,23.729319768175966,0.0,0.0,0.0,0.0,0.0,0.0,54.66195350535842,28.59420041361561,40.29976936560895,143.70651049646642,23.729319768175966,0.0,0.0,0.0,99.13000000000001,196.91492737195068,34.2627283792076,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,45.17388946908825,408.4741032770905,0.0,43.62435735751338,4.31806887752933,-20.633606248464094,-38.510969402553826,-7.151175434849155,-66.13177381042935,-26.072337949170162,0.0,0.78125,39,1,7,5,1,6,0,0,0,7,1,7,10,4,1,5,6,4.703900000000005,143.24479999999994,0,1,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,1,3,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2157,CCCCc1oc2ccccc2c1C(=O)c1cc(I)c(OCCN(CC)CC)c(I)c1,0,14.597359833956045,-4.424744847476997,14.597359833956045,0.7559569260121652,0.1676472462674973,645.3190000000013,616.0870000000002,645.0236897880009,166,0,0.19675040898984847,-0.49003067645577386,0.49003067645577386,0.19675040898984847,1.1935483870967742,1.935483870967742,2.6451612903225805,2.459198489805747,2163.558388733167,47.65181786940711,43.92788741291,19.24288399526265,26.262484556404086,22.31940559241882,9.976903883595146,5.171467665034786,7.328965956211108,3.4292773444210662,4.948423984534947,2.2050208863695993,4.019995778537864,-1.13,430508516245.3062,6.7192714573032,11.651596931772385,5.815185868306782,252.28157612644347,14.053923621703873,23.65176463671688,5.783244946364939,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,45.0558573762063,82.67564164708728,52.60538997138178,23.669884483189545,53.70054920386164,61.934230556608085,0.0,4.899909730850478,0.0,39.674451055875174,26.049564295864123,60.282027190379,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,45.181741254136114,36.73271897307954,6.372924901329379,7.140364542130793,94.73521186982235,40.67166318303311,0.0,10.969244356107037,0.0,42.68,153.4079534087247,4.794537184071822,0.0,0.0,0.0,0.0,45.181741254136114,0.0,0.0,0.0,48.906012019789806,243.99496172901053,2.3781861891869287,13.558115009524759,-0.9898711085509364,-3.522540690672873,-4.4100169117870385,-6.67788906960008,-12.351118180517318,-29.239826966594052,0.0,0.4,31,0,4,0,0,0,2,1,3,4,0,6,14,0,0,0,3,6.936200000000007,143.41749999999985,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,1,0,0,0,0,1,1,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +216237,Cc1ccccc1C(=O)Nc1ccc(C(=O)N2CCCC(O)c3cc(Cl)ccc32)c(C)c1,0,14.72291987401676,-4.2983643505304,14.72291987401676,0.5437123931422696,0.540891219756549,448.94999999999976,423.7500000000002,448.1553703400007,164,0,0.2580477847196837,-0.38833843261935896,0.38833843261935896,0.2580477847196837,1.21875,2.0625,2.875,2.195698052683265,2256.384140012515,44.40881270335832,40.497136535400735,16.25306548141919,25.54826447881384,20.774850546914127,8.79735313395953,5.884642100428419,6.262606573437646,3.8875746999718666,4.0765569364764795,2.474919231326348,2.6166559087048076,-3.149999999999999,245129373931.96585,6.923652756215535,9.14733509953085,4.400921091119371,227.45852672080613,15.318531275246066,0.0,1.4118420783282006,1.4311996572326342,11.814359458703011,0.0,9.589074368143644,0.0,0.0,0.0,29.7281960132224,79.87346797428717,56.03372269655806,21.158362144822405,47.637171429494146,34.79007189830265,1.4311996572326342,0.0,0.0,32.5296520642001,16.7065827684548,93.26407784885924,0.0,0.0,10.209723084138854,11.374772549367124,0.0,11.600939890232516,24.851226991358804,0.0,13.703784234591359,87.75964644815237,60.42418707663295,6.434475392069527,0.0,0.0,69.64,165.68944468958435,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,45.97142841770843,207.6872251050407,5.989591282607724,27.9405416070904,2.6356782170170128,-10.692723674551925,-4.290435669963087,-13.83266368510526,-12.354761373527138,-11.638007364164066,0.0,0.23076923076923078,32,2,5,0,1,1,3,0,3,3,2,6,6,0,0,0,4,5.683140000000005,127.63350000000003,0,1,0,0,0,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +214348,O=C(O)c1ccc(-n2nc(-c3ccccc3O)nc2-c2ccccc2O)cc1,0,12.043186368680182,-1.52533465840409,12.043186368680182,0.5270757747543464,0.5031628713401722,373.3679999999999,358.24800000000016,373.1062559600004,138,0,0.33518086034180833,-0.5071885457254398,0.5071885457254398,0.33518086034180833,0.8928571428571429,1.5357142857142858,2.2142857142857144,2.261794418434238,1817.3778140882232,32.237239828104514,28.474633948355326,13.474633948355326,20.151278542938492,14.609275441069212,7.384530569677621,5.090132960029045,5.090132960029045,3.388278573742242,3.388278573742242,2.1665431608931396,2.1665431608931396,-4.129999999999999,1911838139.338957,7.121620489432158,6.8813121595524045,3.0516613581946297,180.67330092352373,15.326424573321638,11.49902366656781,11.648808995999854,0.0,4.293598971697903,5.969305287951849,0.0,14.460318640164214,0.0,5.098681808301038,24.16967483065318,48.33934966130636,0.0,38.8268434238172,36.57006443143611,5.969305287951849,4.293598971697903,14.76446326439343,0.0,0.0,0.0,78.07247598365655,0.0,39.96212192064522,0.0,0.0,11.49902366656781,0.0,38.922592440132185,0.0,0.0,26.807091349811454,72.50902449195954,0.0,29.894297911310044,0.0,108.47,124.0039031922536,4.794537184071822,0.0,0.0,4.681802935145185,0.0,0.0,0.0,0.0,25.40908490256988,20.742701645740542,120.59959953961598,0.0,16.166854169133696,16.798794833032154,-3.002234832000344,-4.5245762707846815,-10.53843743899681,0.0,0.0,0.0,0.0,28,3,7,0,0,0,3,1,4,7,3,7,6,0,0,0,4,3.710700000000001,102.5199,0,0,0,0,1,3,0,2,1,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36462,COc1cc([C@@H]2c3cc4c(cc3[C@@H](O[C@@H]3O[C@@H]5CO[C@@H](C)O[C@H]5[C@H](O)[C@H]3O)[C@H]3COC(=O)[C@H]23)OCO4)cc(OC)c1O,0,14.638830622869236,-5.1399044601515795,14.638830622869236,1.4270083262703321,0.4298292584463983,588.5620000000016,556.3060000000004,588.1842910840007,226,0,0.3099403857906003,-0.5016994790132149,0.5016994790132149,0.3099403857906003,1.0238095238095237,1.8095238095238095,2.5238095238095237,1.7084474461455648,2700.3428454233317,56.990834873703704,51.80722777603022,19.80722777603022,32.9155628295693,26.715476066494084,10.990731195102494,8.109630020124065,8.109630020124065,5.8432184820658035,5.8432184820658035,4.11578971631742,4.11578971631742,-3.330000000000001,522830383696279.5,9.335003518285738,10.435801723225586,4.258657173456175,285.4485547046031,57.95819115752208,27.06158922014039,35.530204070209415,15.356956732252371,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,0.0,0.0,47.71192142303984,20.012466707747475,67.95378079548549,102.50472647053017,5.969305287951849,4.293598971697903,0.0,11.787915370726157,55.67809667448248,33.938920988100946,40.86002930574416,0.0,28.747559166419524,18.947451815200196,0.0,28.747559166419524,0.0,96.38047866594611,28.478851953072066,11.787915370726157,75.26822043363615,24.16967483065318,0.0,0.0,0.0,160.83,176.98182679342517,18.50212274577402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.063287527121684,68.23291516933251,320.1487939310738,0.0,14.638830622869236,12.724822737060538,-5.994818778070685,-25.071783362409008,-7.460833989071101,-33.730937820861534,-16.90275156369678,-7.684655110227794,0.5517241379310345,42,3,13,1,4,5,2,0,2,13,3,13,11,0,3,3,7,1.3385999999999993,138.34539999999996,0,2,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3033,O=C(O)Cc1ccccc1Nc1c(Cl)cccc1Cl,0,11.837784664540916,-3.296952357331823,11.837784664540916,0.15518754724111883,0.8807285394160607,296.15299999999974,285.06499999999994,295.01668395200034,98,0,0.30739587692442316,-0.4809852135804913,0.4809852135804913,0.30739587692442316,1.3157894736842106,2.0,2.6842105263157894,3.014606909791554,1034.3996616794564,23.290010549841313,20.019639122446137,10.531497014483048,13.71022496859259,10.08888824493687,5.489355304991504,3.09943894594944,3.855367891967895,1.878675029530884,2.425670353485815,1.1479799425243051,1.564334747358913,-1.7099999999999995,1826684.1874512841,5.348086445792717,5.9544053534163845,3.397616957868233,135.92993443617686,10.418621544395588,0.0,1.4118420783282006,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,0.0,47.37155461111821,23.69070761468688,8.428903387024002,31.700887696687133,23.65201445903921,40.545957617784005,1.4311996572326342,0.0,0.0,6.372924901329379,5.309813353288376,57.905649072822705,0.0,0.0,5.309813353288376,11.374772549367124,0.0,23.20187978046503,11.078113479059063,11.167462085401201,0.0,17.900278497228975,42.29693095364306,11.457108705810853,1.4311996572326342,0.0,49.33,81.62265181147106,4.794537184071822,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,38.38174852155785,85.77864516737384,11.99160913748215,11.837784664540916,2.572252662955976,-2.5802963592844543,-1.8164428487444353,-5.847711178103269,-3.296952357331823,0.0,0.0,0.07142857142857142,19,2,3,0,0,0,2,0,2,3,2,5,4,0,0,0,2,4.364100000000001,77.52650000000003,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54676478,CN(C(=O)c1c(O)c2ccccc2n(C)c1=O)c1ccccc1,0,13.753041225749556,-3.6739967823549193,13.753041225749556,0.17104539346602854,0.7910337931744735,308.33699999999976,292.20900000000006,308.1160923720005,116,0,0.29317144778616405,-0.5061881007354768,0.5061881007354768,0.29317144778616405,1.2173913043478262,1.9565217391304348,2.652173913043478,2.6456100796761186,1579.3199908072886,30.099411626599817,27.119172062391506,11.119172062391506,17.71022496859259,13.862261512659533,5.95401322219567,4.182463262798793,4.182463262798793,2.8897581644863077,2.8897581644863077,1.8305326735240763,1.8305326735240763,-3.079999999999999,100324531.66097449,4.959009507023449,5.606314922290351,2.35878431219534,155.13791755132695,14.575817569749045,11.3129633249809,0.0,0.0,12.897646281636147,0.0,9.589074368143644,0.0,0.0,0.0,30.212093538316473,24.16967483065318,33.24981562673417,17.85352772314824,30.46472371773233,22.497490936116122,1.4311996572326342,4.567099647791355,6.975826900282246,0.0,11.875736631132725,70.29902393979049,0.0,5.749511833283905,10.459176625902487,5.687386274683562,5.749511833283905,0.0,23.990114125764954,6.975826900282246,0.0,30.919367018322113,59.17630555304147,0.0,10.902924932081056,0.0,62.540000000000006,107.70314332568321,9.589074368143644,0.0,9.467009378641833,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,21.992577999785933,125.7158876166511,0.0,26.902633587385566,3.4317686549928608,-5.562169125634133,-3.234066095574032,-9.390263196753788,0.0,-7.197124774400886,0.0,0.1111111111111111,23,1,5,0,0,0,2,1,3,4,1,5,5,0,0,0,3,2.5207000000000006,90.0293,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +441401,CC(=O)NC[C@H]1CN(c2ccc(N3CCOCC3)c(F)c2)C(=O)O1,0,15.882891825061062,-4.156644923063352,15.882891825061062,0.5394905045351481,0.8915973887511961,337.3509999999997,317.1910000000001,337.1437843400005,130,0,0.41431651014850107,-0.44204599687429924,0.44204599687429924,0.41431651014850107,1.6666666666666667,2.4583333333333335,3.2083333333333335,2.3010283308165076,1363.036236516743,34.765066523458984,31.352598421364554,11.352598421364553,19.287069352878465,15.899795085395994,5.952581489896035,3.924465738902123,3.924465738902123,2.443812495099853,2.443812495099853,1.5352628676290407,1.5352628676290407,-2.3500000000000005,445983181.84435385,4.84539867922622,7.041659619940431,3.587168117208504,167.0118281780414,19.683448991738953,11.897238867995883,1.4118420783282006,5.907179729351506,0.0,6.093240070938415,9.694446914922299,9.184952231746642,0.0,0.0,0.0,18.127256122989884,23.95788715443823,59.41859930255516,50.90946996898098,23.375192349657045,0.0,5.309813353288376,0.0,12.931910144245666,48.90522868479731,23.94447696403578,0.0,0.0,15.109632814989332,20.559724781113765,0.0,0.0,57.18584705033626,14.268263091671919,5.817220841045895,32.89630468452985,18.127256122989884,1.4118420783282006,0.0,0.0,71.11,114.46662149602422,9.589074368143644,4.39041504767482,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,27.456254645562378,182.15665247168985,0.0,23.767405954259342,-1.0050189237051685,-3.369208186794768,-4.5458838503352315,-5.159041967899291,-6.288684156877475,-27.222888007003988,0.0,0.5,24,1,7,0,2,2,1,0,1,5,1,8,5,0,2,2,3,1.1235999999999997,85.73070000000004,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6047,N[C@@H](Cc1ccc(O)c(O)c1)C(=O)O,0,11.66910753653313,-3.560093655517764,11.66910753653313,0.7197446617535905,0.5125069246930146,197.19000000000005,186.10199999999995,197.068807832,76,0,0.32031552163797705,-0.5042598930844389,0.5042598930844389,0.32031552163797705,1.7857142857142858,2.642857142857143,3.2857142857142856,3.9068742965558236,684.250868050857,19.740122497076648,17.580206757355413,6.580206757355411,11.426192233873428,8.40927544106921,3.290103378677705,2.169312566779107,2.169312566779107,1.1825416768695864,1.1825416768695864,0.6095103265154349,0.6095103265154349,-1.75,145715.48776209215,2.868106139438085,3.972117202268431,2.366714454376792,96.24114305703564,21.04614154904791,8.841576625006047,11.49902366656781,0.0,4.293598971697903,5.969305287951849,4.794537184071822,0.0,0.0,0.0,6.042418707663295,24.021213808352964,2.7415171123404405,5.483034224680881,31.169197251071175,5.969305287951849,4.293598971697903,0.0,5.719716975726273,12.390817369679024,0.0,23.69070761468688,0.0,11.49902366656781,5.719716975726273,0.0,11.49902366656781,0.0,30.176021644088404,11.167462085401201,0.0,13.788002828718314,18.127256122989884,2.8236841566564013,1.4311996572326342,0.0,103.78000000000002,59.26957091461183,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,15.341834465375623,81.41581481743931,0.0,11.66910753653313,11.529958112874779,-1.8813650321239603,-3.7946580792810947,-6.764687854308391,-3.5075028344671217,0.0,0.0,0.2222222222222222,14,5,5,0,0,0,1,0,1,5,4,5,6,0,0,0,1,0.052200000000000135,49.08680000000002,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5284513,COc1cc(C)c(/C=C/C(C)=C/C=C/C(C)=C/C(=O)O)c(C)c1C,0,11.725524096824333,-3.842186293170398,11.725524096824333,1.5743424797765424,0.5794537711852106,326.4359999999995,300.228,326.1881946920007,128,0,0.32806880570998265,-0.49646770758271974,0.49646770758271974,0.32806880570998265,1.2916666666666667,2.1666666666666665,2.8333333333333335,4.881006158695277,1633.7036290185642,40.07446760021749,37.72474487139159,11.72474487139159,21.93933457919862,18.72474487139159,5.816496580927726,3.8436436964131624,3.8436436964131624,2.2322172541558802,2.2322172541558802,1.249420699693906,1.249420699693906,-2.55,2862455400.9289103,3.9842032709268587,8.919939842211916,5.57871139047988,180.832327050946,9.84567114490726,5.749511833283905,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,0.0,35.8334632602471,68.12878979099894,26.613450088588863,20.745538020584785,48.909172233234614,12.021377033987417,1.4311996572326342,0.0,0.0,34.2594605864784,7.037952458882589,69.70279246476764,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,18.11606593794165,4.794537184071822,20.555676351887037,70.22655410563489,47.448986497979654,0.0,7.4832714032682,0.0,46.53,128.77109437739995,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,35.70016356148814,209.246468027793,0.0,11.725524096824333,3.504351272768767,-9.879459943700494,-3.5268259995057507,-12.159052869356437,0.0,-18.79594867714778,-3.6150559076756643,0.2857142857142857,24,1,3,0,0,0,1,0,1,3,1,3,12,0,0,0,1,5.167060000000005,100.52880000000005,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5734,N=S(=O)(O)Cc1noc2ccccc12,0,12.022268833459309,-4.4935989465230515,12.022268833459309,0.44297571806500335,0.7946909133096838,212.23000000000005,204.16599999999997,212.025563116,74,0,0.23198194456463678,-0.3559791199878904,0.3559791199878904,0.23198194456463678,1.8571428571428572,2.7142857142857144,3.5,2.9340623142603626,872.1334551348407,16.86987900907357,14.52742035285537,7.343916933783094,10.119226469174018,7.185798679181107,4.770400122017927,2.3124335412610897,3.466690366149336,1.3437657026516017,1.7950686277692893,0.864999576358008,1.2486667566874465,-1.4,69110.77711827168,3.6339506172839497,3.07139221415779,1.7539787417408788,91.89955136125369,9.078125606930218,11.398884879998619,15.592906050590223,2.843041735560835,0.0,0.0,0.0,8.981501405684536,0.0,0.0,17.241500672452034,12.08483741532659,5.386224214464796,8.224551337021321,22.923417514444207,20.97913026505502,6.203802570752702,5.156663257125445,0.0,5.704956885150159,0.0,29.86360282550164,0.0,0.0,0.0,0.0,0.0,0.0,13.920592419246784,15.71484279409814,4.772602913520068,13.91847933186978,28.692769767626526,1.4118420783282006,12.400444013339671,0.0,87.18,56.54768997570682,4.208898492164469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.484296840602383,15.590688009555501,82.36015824462501,0.0,0.0,2.8361574074074083,-4.343233182161755,0.0,-2.5261501900142767,0.0,0.0,-4.4935989465230515,0.125,14,2,5,0,0,0,1,1,2,5,2,6,3,0,0,0,2,1.84757,51.20390000000001,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5090,CS(=O)(=O)c1ccc(C2=C(c3ccccc3)C(=O)OC2)cc1,0,12.693629094403805,-5.41112887869539,12.693629094403805,0.8391208422784484,0.8169951703125135,314.3619999999998,300.25000000000006,314.0612799280004,112,0,0.3390094471847749,-0.4571463911245985,0.4571463911245985,0.3390094471847749,1.0909090909090908,1.7727272727272727,2.409090909090909,2.581092300900738,1432.1394995432179,27.86736081903094,24.541241452319316,11.357738033247042,16.195987975476356,12.603954059492992,7.087117307087384,3.9491425567224048,5.36426442257282,2.570705769029128,3.312287392826324,1.639992547900487,2.0107833597990847,-2.3999999999999995,25166064.84056233,5.350347178386568,5.421295494749522,2.672450351561639,148.18782642551713,4.736862953800049,6.558985242916289,9.837253136417502,0.0,0.0,5.969305287951849,0.0,13.212334168400758,0.0,0.0,42.29693095364306,23.21174039872058,15.869304299696385,25.54693212345946,37.139816908583896,26.952767484507888,0.0,0.0,0.0,4.895483475517775,12.742909344032746,65.50867135236365,0.0,0.0,0.0,0.0,0.0,0.0,27.130011616313535,19.368653274289372,0.0,30.317522769777067,59.277251844487424,0.0,11.146209060138535,0.0,60.44,110.09983165642208,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,19.190619786383078,139.4408205122522,0.0,11.204751414977785,0.0,-3.9206762566137554,-1.551313499937012,-9.861636343785653,-3.76610712676961,-3.2180431547619053,-5.41112887869539,0.11764705882352941,22,0,4,0,1,1,2,0,2,4,0,5,4,0,0,0,3,2.5577000000000005,83.76680000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +60149,O=C1NCCN1CCN1CCC(c2cn(-c3ccc(F)cc3)c3ccc(Cl)cc23)CC1,0,14.658175323642713,-4.716408655508725,14.658175323642713,0.16577569383008717,0.6281222024796651,440.9499999999997,414.7420000000002,440.17791735200075,162,0,0.31706401578844134,-0.3362061589203053,0.3362061589203053,0.31706401578844134,1.2258064516129032,2.0,2.7096774193548385,1.943936494071821,2218.7794236577424,44.469655114602894,40.95303161848215,15.708960564500606,25.282262505772536,21.238976988990885,8.669727866500155,5.758410035219065,6.1363745082282914,3.8779638590057464,4.066946095510359,2.560166605128413,2.7019032825068727,-2.569999999999999,275141948083.47565,6.265513964599794,8.517534171000428,4.143474661527969,222.5141954922813,19.676732462780688,5.817220841045895,1.4118420783282006,0.0,0.0,6.031114512338072,0.0,9.184952231746642,0.0,0.0,11.600939890232516,79.4939093019938,63.334921868840674,24.707320503999338,44.86575821433037,28.534979334651645,0.0,19.676732462780688,0.0,18.639807488021837,38.981158105895666,64.87313181094204,0.0,5.687386274683562,5.309813353288376,9.184952231746642,0.0,11.600939890232516,59.37919172772605,0.0,5.817220841045895,58.47222288397439,48.46982616445783,6.434475392069527,16.59031120676462,0.0,40.510000000000005,160.2251559389516,10.555710787916862,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,0.0,45.91098731664602,237.38398359646519,6.12260684446169,10.971359624093001,-2.942442563791602,-3.846080252542106,-6.134850030598294,-11.098904238378823,-10.762109987583699,-26.332451881014286,0.0,0.375,31,1,5,0,2,2,2,1,3,3,1,7,5,0,2,2,5,4.627600000000004,121.62970000000003,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,3,1,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +104741,C[C@]12CC[C@@H]3c4ccc(O)cc4C[C@@H](CCCCCCCCC[S+]([O-])CCCC(F)(F)C(F)(F)F)[C@H]3[C@@H]1CC[C@@H]2O,0,14.437625680386006,-7.182229462942184,14.437625680386006,1.8195155370267841,0.1265427129787013,606.7820000000019,559.4060000000001,606.3166074640013,234,0,0.4527318597141327,-0.6163437338250591,0.6163437338250591,0.4527318597141327,1.0975609756097562,1.829268292682927,2.5365853658536586,2.303974003567897,2979.1750225519254,71.45566544670048,66.52281552690158,20.33931210782932,37.640116858567986,33.74457101104518,11.577904344378524,7.453253288458861,8.398959057487989,4.8566572063296425,5.431572163460172,3.0909667823299465,3.429455297203194,-1.0600000000000003,4.453376015049728e+20,7.486764776695692,13.710248812985352,7.724345079597983,310.6198941919697,14.77036625590479,17.159425603584225,0.0,1.4311996572326342,1.4311996572326342,12.098827685538051,0.0,0.0,21.9520752383741,0.0,55.934789804991155,109.5588857215341,57.09099147962757,17.046086476311746,98.40657652193876,11.175854473385288,2.8623993144652684,0.0,23.096863525486015,126.5185690350875,11.409913770300317,29.254159106383874,0.0,5.749511833283905,0.0,21.9520752383741,5.749511833283905,0.0,47.221525053158416,17.548779374714666,23.096863525486015,174.7778364323238,18.127256122989884,0.0,0.0,0.0,63.519999999999996,207.204871743927,45.695444898447576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,45.35591455574211,493.9755886504336,-5.404290638435153,0.0,8.169394186214106,-21.541696858466945,-32.59738713441124,-6.1770264072681105,-98.40914956110292,-5.293210014741048,0.0,0.8125,41,2,3,3,0,3,1,0,1,3,2,9,17,2,0,2,4,8.682600000000003,152.6519999999998,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +208902,CCC(=O)NCC[C@@H]1CCc2ccc3c(c21)CCO3,0,12.615856053860426,-4.403304043839761,12.615856053860426,1.1067376464474683,0.9021804790562545,259.34900000000005,238.18099999999995,259.1572289120001,102,0,0.21921594720590237,-0.49294808815079905,0.49294808815079905,0.21921594720590237,1.7894736842105263,2.736842105263158,3.6315789473684212,2.47030813129893,1282.4445526273257,31.825908934703556,30.263710176427686,9.263710176427685,17.34791176412304,15.506799626695711,5.059586031195753,3.437007652622325,3.437007652622325,2.364998634672606,2.364998634672606,1.593762239671016,1.593762239671016,-1.51,75413328.30544485,2.9009187642781207,5.235691048605127,2.337015562342011,143.45652860532562,10.046676307088426,5.749511833283905,1.4118420783282006,5.907179729351506,0.0,0.0,4.794537184071822,0.0,0.0,0.0,12.894310824958975,42.182054080408506,46.73829787739525,12.042019467597168,38.358413339604475,5.907179729351506,0.0,5.309813353288376,0.0,44.61047430930565,13.055844927232233,28.775191890417574,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,18.96302465658374,17.54038698673058,0.0,75.97015010514228,12.08483741532659,1.4118420783282006,0.0,0.0,38.33,103.40801604287925,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.56387615553265,174.1692675049818,0.0,12.615856053860426,-1.1067376464474683,-4.019154974489795,-7.702100384167034,-2.408501980222758,-19.56771850394709,-11.564243402901418,0.0,0.5625,19,1,3,1,1,2,1,0,1,2,1,3,5,0,0,0,3,2.5676000000000005,74.62070000000004,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2333,CCc1oc2ccccc2c1C(=O)c1cc(Br)c(O)c(Br)c1,0,13.688983371126223,-3.3833842095020854,13.688983371126223,0.21869487223901896,0.568938382393165,424.0879999999998,411.992,421.91531844400026,112,0,0.29321630786382574,-0.5055807816002578,0.5055807816002578,0.29321630786382574,1.4090909090909092,2.1363636363636362,2.8181818181818183,2.560090790076662,1333.9906986377787,26.07446760021749,22.480673817410043,13.652666895639452,15.500012543212918,11.602709344400816,7.280457593051658,4.046523126552919,5.6325196656676235,2.7701304924133865,3.8868689498583286,1.8240495892647317,2.8830840057184597,-1.5899999999999999,15300561.045487015,6.494186106966433,5.8935932727369975,2.482626690271749,160.69648478822631,9.52595912816056,17.09277939380059,5.783244946364939,0.0,1.4311996572326342,0.0,4.794537184071822,0.0,0.0,0.0,24.979148240285564,49.987143918888584,24.17639338834227,22.73344186038314,29.398840430104798,48.61237709837067,1.4311996572326342,0.0,0.0,13.224817018625059,0.0,62.08710167991303,0.0,5.749511833283905,0.0,0.0,5.749511833283905,31.859887795898697,12.323252794704786,6.372924901329379,0.0,43.61192382150838,49.617102214697944,0.0,10.969244356107037,0.0,50.44,83.11896896934525,4.794537184071822,0.0,14.694950864948733,0.0,0.0,0.0,0.0,0.0,36.96869598700591,20.9266947121584,99.56472058439998,5.974314993151122,13.688983371126223,3.7794802186383167,-2.193982242588393,-2.685404551749022,-4.414718124738416,-3.3300100387377185,-3.3833842095020854,0.0,0.11764705882352941,22,1,3,0,0,0,2,1,3,3,1,5,5,0,0,0,3,5.456800000000003,92.53130000000002,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,1,0,0,0,0,0,1,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +80274,CN1Cc2cc(C(=O)N3CCC(C4CCNCC4)CC3)ccc2N[C@@H](CC(=O)O)C1=O,0,14.621191664376184,-5.186353086822551,14.621191664376184,0.8908539508854818,0.675610936933735,428.53299999999956,396.27700000000016,428.24235550400084,168,0,0.305479761626604,-0.4811623153673494,0.4811623153673494,0.305479761626604,1.3548387096774193,2.096774193548387,2.806451612903226,2.199018428917783,2098.8593498408864,50.21266028065169,46.921847543855286,14.921847543855284,27.45424190444888,23.855240039891292,8.052564558427516,5.548420388257051,5.548420388257051,3.59202219752108,3.59202219752108,2.250595617771131,2.250595617771131,-2.6100000000000003,1394294126051.6196,5.300391556651643,9.258709271064447,4.841582925917782,227.6779568915756,25.52825435938492,7.429734546677846,1.4118420783282006,5.907179729351506,7.33837938658414,5.969305287951849,14.383611552215466,0.0,0.0,0.0,0.0,73.96404195936245,69.24469051152575,14.597476238350698,62.06810202891551,23.471051021338422,1.4311996572326342,15.109632814989332,11.787915370726157,44.379376659312484,38.2730789908344,29.254159106383874,0.0,0.0,10.619626706576751,5.687386274683562,0.0,0.0,71.6734505053587,16.08593405245959,11.787915370726157,87.53806280304906,18.127256122989884,2.8236841566564013,1.4311996572326342,0.0,101.98000000000002,162.27521396358472,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,44.00688194282542,270.5234266500524,0.0,38.66424769786478,1.5886284257129377,-5.875390637017814,-18.215698976240486,-10.458975190289454,-23.987639430407143,-27.238598539675262,0.0,0.6086956521739131,31,3,8,0,3,3,1,0,1,6,3,8,5,0,2,2,4,1.7655999999999998,116.80070000000008,1,0,0,0,0,0,0,0,1,1,3,2,0,0,0,2,2,0,0,1,1,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5487,Clc1ccc2nsnc2c1NC1=NCCN1,0,8.138240740740741,-2.798900462962963,8.138240740740741,0.01863189720332592,0.8124044266873097,253.71800000000007,245.654,253.01889393599998,82,0,0.1955222435671746,-0.3542537133391691,0.3542537133391691,0.1955222435671746,1.6875,2.625,3.4375,2.2104478301938904,869.2307598210094,18.024579547452824,15.522280740972882,9.094706267919062,11.003724742527805,7.987412181174474,5.201246206524006,2.733043468057327,3.63945562892221,1.784989669291509,2.5869350191246276,1.1301964787156313,1.8183758406469337,-1.4,206830.52067621934,4.462317403661841,3.8766446423441536,1.5953329067710489,112.21809239686515,10.619626706576751,11.033401435232523,8.783238725400237,0.0,0.0,0.0,4.992404732635669,0.0,8.747079962832899,0.0,11.600939890232516,12.08483741532659,6.496859684315945,37.15961795496078,11.048235493677723,46.009469514091045,0.0,14.056893316121275,4.992404732635669,0.0,18.303532721920263,17.107470729067916,0.0,0.0,10.619626706576751,5.687386274683562,0.0,23.32912723543113,27.700353900208626,0.0,0.0,8.224551337021321,17.07724214796226,7.846317470397728,11.033401435232523,0.0,62.2,24.99569264503902,0.0,0.0,33.09565308460908,5.309813353288376,11.728187345198613,0.0,0.0,0.0,13.739484695468569,22.649175383910233,69.71702656525572,6.781454291593178,3.4552195137314183,0.23488079491055647,-0.16774344923154372,-0.6682123960695383,-0.687116060930544,0.0,-5.554398148148148,0.0,0.2222222222222222,16,2,5,0,1,1,1,1,2,6,2,7,1,0,0,0,3,1.7157999999999993,66.3524,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24988201,CC(C)Oc1ncc(-c2nc(-c3cccc4c3ccn4CCCC(=O)O)no2)cc1Cl,1,11.96075806318135,-3.9961627708113427,11.96075806318135,0.0011222026720418832,0.4080659335982796,440.8869999999998,419.71900000000016,440.12513283200053,160,0,0.30290880119877056,-0.4812295608242797,0.4812295608242797,0.30290880119877056,1.5161290322580645,2.4193548387096775,3.2580645161290325,1.9662004112701665,2094.2915105239485,40.05759526334293,35.799812016864514,15.555740962882968,23.433482520720318,18.339279820963025,8.308996003508387,5.39214603406967,5.770110507078897,3.4577825220371827,3.713940740743387,2.27897830143601,2.4543029699152665,-3.3899999999999997,43235250106.9608,7.339871176596446,8.769999831160199,4.535548948554802,212.56923035471138,18.935865729671963,5.022633313741326,0.0,11.704392834435298,7.321923579258542,5.969305287951849,4.794537184071822,4.9839785209472085,4.9839785209472085,0.0,28.84244056268455,38.20396525891062,58.13105410509558,22.60953796800874,46.578474389356856,28.47317011026542,1.4311996572326342,19.691719946811215,0.0,39.02651174851604,0.0,47.58051727368732,0.0,28.7220197398552,4.736862953800049,0.0,5.879988336435371,11.600939890232516,36.84985145282027,11.291396868387768,0.0,53.86480516065456,47.08097889691935,5.022633313741326,35.17615599273351,0.0,103.27000000000001,132.2012789820915,4.794537184071822,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.233428490127075,49.70726856164298,177.80347055873082,6.118024110185757,19.45757596491954,5.484473810524227,-2.351709843810868,-4.831258236543571,-4.992359415358437,-13.82336175671561,-11.087077414154068,0.0,0.2727272727272727,31,1,8,0,0,0,1,3,4,8,1,9,10,0,0,0,4,5.0587000000000035,116.10480000000005,1,0,0,0,0,4,0,0,1,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +10120230,Cc1c(C(=O)N[C@@H](CC(C)C)C(=O)N[C@H]2CC[C@@H](C)N(S(=O)(=O)c3ccccn3)CC2=O)oc2cccnc12,0,15.013485815569128,-6.936148121814457,15.013485815569128,1.1486878963093308,0.43038285415755706,555.6570000000016,522.3930000000004,555.2151547760009,208,0,0.2875296926324335,-0.44891529685259574,0.44891529685259574,0.2875296926324335,1.3333333333333333,2.1538461538461537,2.923076923076923,2.2672255094470697,2881.327480015157,57.01362518897291,51.59380601074683,19.410302591674558,31.59777765234016,26.121147559059683,11.166783696860406,6.70138710920025,8.403366491593665,4.200159597727209,5.636761241025268,2.601493128473095,3.604534100007414,-3.6399999999999997,90838739626426.36,8.198018309236058,11.622162777262302,6.170755537237661,273.4571276456665,15.0367776436301,11.534593185965907,24.976156642207265,5.907179729351506,15.930470882759089,0.0,19.367590073162674,13.401775505276145,4.305215991296234,0.0,19.746202942254655,62.88619145459575,51.34230550508061,27.593096270538005,72.535758871531,38.720616417734036,0.0,24.8927997397674,5.893957685363079,69.60598055688902,6.496859684315945,53.88158287051743,0.0,0.0,10.619626706576751,0.0,0.0,0.0,64.83911151195242,19.612365521551226,12.745849802658757,98.28620239179516,52.00099487566858,2.8236841566564013,11.099720859258504,0.0,151.57,189.52383991269255,19.3776299086428,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,48.36359177881638,306.5238762016395,0.0,50.54607486902777,-5.781542690906282,-4.065201721530818,-17.107813082389164,-23.818884696523583,-19.191764064688062,-23.75193002614824,-6.936148121814457,0.4444444444444444,39,2,11,0,1,1,0,3,3,8,2,12,12,0,1,1,4,2.6028200000000004,143.21769999999984,0,0,0,0,0,2,0,0,0,0,3,3,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0 +24360,CC[C@@]1(O)C(=O)OCc2c1cc1n(c2=O)Cc2cc3ccccc3nc2-1,0,13.896591500797847,-3.956159602015484,13.896591500797847,0.14861866969009796,0.5327639891125654,348.3579999999998,332.2300000000001,348.11100699200045,130,0,0.3426763382231084,-0.45819772812579923,0.45819772812579923,0.3426763382231084,1.5,2.3846153846153846,3.230769230769231,2.068803300378997,1832.4217087068143,31.85892465059366,28.52742035285537,12.52742035285537,19.03446959358909,15.046903005373416,7.138654714909554,5.457757793678461,5.457757793678461,4.021331351421177,4.021331351421177,2.7686004084392675,2.7686004084392675,-2.9899999999999993,616482772.022894,6.025843089972049,5.016137241019722,1.8187570089948242,170.79444112770832,14.412770792698616,6.558985242916289,5.601050810983688,1.4311996572326342,5.559266895052008,5.969305287951849,4.794537184071822,9.77851570501903,0.0,0.0,24.979148240285564,24.500181024319264,23.366919978709884,42.672453445028346,35.20158667153239,16.872230220032904,1.4311996572326342,9.551078168738563,0.0,31.881712756840983,0.0,63.298670800194586,0.0,11.387855989696922,5.559266895052008,0.0,0.0,0.0,22.06039130503026,28.188295876087793,0.0,50.476549836269385,41.04904943005159,0.0,22.29078092177798,0.0,81.42,118.64593258269359,9.589074368143644,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,14.829649665854468,21.992577999785933,135.4992797435711,0.0,31.092943147100094,3.805194208499131,-11.3428094950484,-2.1139144984337994,-5.239269473292428,-3.956159602015484,-10.495264030380206,0.0,0.25,26,1,6,0,2,2,1,2,3,6,1,6,3,0,0,0,5,2.0796,94.52480000000003,0,1,0,0,0,2,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +31593,O=C(Cn1ccnc1[N+](=O)[O-])NCc1ccccc1,0,12.63531352355757,-3.672400203136813,12.63531352355757,0.2249645166708656,0.6436381792760206,260.253,248.15699999999998,260.09094024400014,98,0,0.4345051939961885,-0.3898173565441232,0.4345051939961885,0.3898173565441232,1.5789473684210527,2.3157894736842106,3.0,2.66149687443873,1072.2191690842237,24.212660280651686,21.013599253391423,9.013599253391423,13.988716747059529,10.555340494401833,4.608126898901875,2.868492939368437,2.868492939368437,1.6577017040405262,1.6577017040405262,0.9586449051397893,0.9586449051397893,-2.6999999999999993,2623299.5287707234,4.444626029423756,5.7630403949234665,3.379261821223889,125.50416619771065,15.424131622053949,15.08730753396996,7.908701762644146,0.0,5.907179729351506,5.948339280986494,4.794537184071822,4.567099647791355,0.0,0.0,35.196072059263685,10.486762540514666,6.496859684315945,12.33682700553198,26.20803442909011,11.855519010338,0.0,14.86089152202694,0.0,12.99371936863189,0.0,58.235653720408564,0.0,0.0,5.309813353288376,5.948339280986494,0.0,0.0,20.381568946907738,17.788256552703714,10.114318268765572,20.641795609569414,42.557883959946,1.4118420783282006,0.0,0.0,90.06,83.20369823271895,14.908855452837393,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,16.49018619620062,92.45509095308455,0.0,25.46439423690369,10.388210065602273,-1.148094135802469,-3.552378246319444,-4.999218871681668,-2.2681894231776987,-7.173147911942558,0.0,0.16666666666666666,19,1,7,0,0,0,1,1,2,5,1,7,5,0,0,0,2,1.1077,67.17010000000002,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54454,CCC(C)(C)C(=O)O[C@H]1C[C@@H](C)C=C2C=C[C@H](C)[C@H](CC[C@@H]3C[C@@H](O)CC(=O)O3)[C@H]21,0,14.743837823019994,-5.88110138731419,14.743837823019994,2.3924763709815107,0.6390622750209786,418.57399999999944,380.27000000000015,418.271924316001,168,0,0.3112869097537336,-0.46218776669279094,0.46218776669279094,0.3112869097537336,1.5,2.4,3.1333333333333333,3.006114449384185,2161.269538729902,55.085421958697395,52.54124145231931,14.541241452319316,29.16439055281629,26.587117307087386,7.678869016623521,5.5164115380582555,5.5164115380582555,3.4049850958009737,3.4049850958009737,2.1217368053371106,2.1217368053371106,-1.62,4956790522022.396,4.550101511938729,9.25239239827976,5.161036599818663,233.92107992419326,14.58253409870731,12.160036053899976,0.0,1.4311996572326342,0.0,11.938610575903699,9.589074368143644,0.0,0.0,0.0,38.71189158999373,62.45046142606737,54.76039782796932,26.092484734697464,74.88967504514913,11.938610575903699,1.4311996572326342,0.0,28.99082121084909,90.73706407530463,0.0,23.729319768175966,0.0,0.0,0.0,0.0,0.0,0.0,36.71867250509351,19.06280027574374,28.99082121084909,123.21507657275266,23.729319768175966,0.0,0.0,0.0,72.83,155.39581563023341,17.813625705164963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,48.661577852309534,331.76479264763395,0.0,27.83000147766562,3.7739861546818476,-8.043905094868009,-28.187756661867784,-7.486267978737764,-47.015895255637595,-24.384955288870277,0.0,0.76,30,1,5,2,1,3,0,0,0,5,1,5,12,0,1,1,3,4.585600000000005,115.45480000000006,0,1,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +657298,CCCc1cc(=O)[nH]c(=S)[nH]1,0,11.580599962207103,-3.485095427059714,11.580599962207103,0.004804894179894159,0.6587322532597096,170.23700000000008,160.15699999999998,170.05138394,60,0,0.25136138513677664,-0.3358743916003891,0.3358743916003891,0.25136138513677664,2.0,2.8181818181818183,3.5454545454545454,3.850271283046744,649.1124558610481,16.964101615137757,15.210923771927643,6.027420352855369,9.175426480542944,7.447102672463696,2.960923771927642,1.5349403457434967,1.900088717413607,0.8108718723092432,0.9934460581442983,0.48310317400094754,0.6573016130022356,-0.9000000000000001,15077.674828040886,2.0701987574564984,3.4791154361633936,2.3073839344097378,83.65164603798324,4.977003270229252,0.0,7.59474992724656,0.0,5.559266895052007,0.0,9.771540454301075,0.0,0.0,0.0,13.224817018625059,18.590798344376076,21.331656595703294,1.3707585561702202,13.789752606018162,12.217873443046695,0.0,9.954006540458504,0.0,19.597741919954437,0.0,26.861216552225745,0.0,0.0,5.559266895052007,0.0,0.0,12.217873443046695,9.954006540458504,6.372924901329379,4.771065770590158,29.884813462835275,10.836955891735116,2.8236841566564013,0.0,0.0,48.65,41.66442128810836,4.794537184071822,0.0,9.954006540458504,0.0,0.0,0.0,0.0,0.0,12.217873443046695,13.789752606018162,72.94168946050642,4.552120181405896,11.585355253212393,0.0,-2.5223686696900973,0.0,-1.2021064814814812,-6.86201672335601,-3.4093396872637944,0.0,0.42857142857142855,11,2,3,0,0,0,0,1,1,2,2,4,3,0,0,0,1,1.38499,46.2424,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2659,CON=C(C(=O)NC1C(=O)N2C(C(=O)O)=C(COC(N)=O)CSC12)c1ccco1,0,13.400590304022838,-3.8115047948327527,13.400590304022838,0.16644358360628253,0.29500804859666163,424.39099999999985,408.26300000000015,424.06888447200043,154,0,0.4043169046366358,-0.4765594507471282,0.4765594507471282,0.4043169046366358,1.793103448275862,2.6551724137931036,3.3448275862068964,2.208369743499896,1530.5154064291924,34.82554445577405,29.463088996174598,14.279585577102326,20.296106827415947,14.697200589831825,7.763808093795814,4.71092744647178,5.505874068002629,3.1033509539879907,3.978809688737929,2.0216319060152474,2.8538236851011285,-3.48,1182957031.6259131,8.101096926362455,8.261449020580429,3.8927178975532515,189.93361074752994,30.12994099471189,32.032552491545005,9.995773653859045,5.711685002770702,13.245559115935645,12.062545358890265,14.488984098994122,9.589074368143644,0.0,11.761884949391115,5.15571272675054,12.08483741532659,14.019578527559865,18.576041640372722,58.963188311011805,41.350474769755095,1.4311996572326342,10.209723084138854,10.875429702476813,11.36781692052007,19.301894586949036,35.35444331216688,0.0,0.0,11.029530329014648,4.794537184071822,0.0,11.761884949391115,70.26701924979078,23.958063089752148,0.0,22.20935009291708,39.16705955709632,4.235526234984602,1.4311996572326342,0.0,173.76,118.40415991840572,19.178148736287287,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,19.838972455394433,26.532979503313218,132.3746331568037,-0.5092826436130011,55.11147031145036,2.656902160180513,-9.00768201368927,-7.211496932823507,-5.684414155517479,-3.1136187807012465,-3.8115047948327527,-3.3883396405906643,0.3125,29,4,12,0,2,2,0,1,1,10,3,13,8,0,1,1,3,-0.5359999999999987,97.4739,1,0,0,0,0,0,0,0,1,1,4,3,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 +14720269,COCCCOc1ccnc(C[S+]([O-])c2nc3ccccc3[n-]2)c1C,0,13.4933123225114,-4.099226902619867,13.4933123225114,0.5140393143991451,0.4547179234091861,358.4429999999997,338.2830000000001,358.1230860799106,132,0,0.15220666742382094,-0.6116374801056561,0.6116374801056561,0.15220666742382094,1.36,2.28,3.16,2.2619887127206124,1590.5136106143402,35.041087405397874,31.974633948355326,12.791130529283054,19.992542159805353,16.23305232455813,7.382882238819191,4.008771422179344,5.11550141764665,2.5258851897232177,3.4188493313761046,1.5276130903318605,2.2906117293851036,-2.09,1046159840.4302955,5.452852299517267,8.330956439152647,4.306245520556936,177.4291624045359,23.994432823184876,10.905948315104613,5.704956885150159,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,24.16967483065318,35.10356673357678,38.560002086491124,32.81429158031805,41.44164690469488,22.209255908617813,0.0,14.951935562841626,0.0,24.086210385595923,20.155922944715165,47.64236823567669,0.0,5.749511833283905,9.720841474747257,0.0,5.749511833283905,0.0,34.67662986029995,21.617674312335495,6.851892117295679,45.045475511279264,41.541425230951944,0.0,11.033401435232523,0.0,81.4,119.84326930788951,4.552749873690364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.688798516641672,32.15203407720445,179.1843980324198,-3.242070331722884,10.841163361022131,-0.9667461959795152,-7.5134243028869765,-1.5577740453389806,-4.277995347123039,-5.403736407058659,-11.739653530223183,-3.601939010886529,0.3333333333333333,25,0,6,0,0,0,1,2,3,5,0,7,10,0,0,0,3,2.618520000000001,96.13740000000006,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +11080,S=C=Nc1cccc2ccccc12,0,7.868321995464852,-0.4949877173091457,7.868321995464852,0.08393518518518506,0.48837238667997585,185.25100000000003,178.19499999999996,185.029920224,62,0,0.08173634123977898,-0.1940768586711214,0.1940768586711214,0.08173634123977898,1.1538461538461537,1.9230769230769231,2.769230769230769,3.2625987566563945,787.678938772695,15.187716254269356,13.355461885963821,7.171958466891547,9.32347362264446,6.90133774073189,3.809586031195752,2.176697289542496,2.359271475377551,1.4501520436462376,1.5414391365637652,0.9287994944899954,1.0200865874075231,-1.5,24375.374098020955,3.334319526627219,3.4807162534435263,1.4985185185185186,91.56690599986844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.992404732635669,0.0,36.25451224597977,23.646516365174787,5.386224214464796,20.443958020000647,9.59530989319154,33.838969998785394,0.0,0.0,4.992404732635669,0.0,0.0,42.29693095364306,0.0,0.0,0.0,5.687386274683562,0.0,12.217873443046695,5.1612618521255476,0.0,0.0,9.59530989319154,47.28933568627873,0.0,10.772448428929591,0.0,12.36,42.29693095364306,0.0,0.0,16.459834703613154,0.0,0.0,0.0,0.0,5.1612618521255476,17.210278175682365,9.59530989319154,54.211394531578065,4.467353342571596,3.6351095993953138,1.813633078231293,-0.16388888888888853,0.0,-3.1302683295540428,0.0,0.0,0.0,0.0,13,0,1,0,0,0,2,0,2,2,0,2,1,0,0,0,2,3.5741000000000014,58.63400000000003,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5639,COc1ccccc1N1CCN(CCCNc2cc(=O)n(C)c(=O)n2C)CC1,0,13.067329770993451,-4.884345658016293,13.067329770993451,0.6866676018529723,0.7061199941406974,387.4839999999996,358.2520000000001,387.2270397880008,152,0,0.33152135236641994,-0.49458625454931054,0.49458625454931054,0.33152135236641994,1.25,2.0357142857142856,2.7857142857142856,2.447989748635614,2033.270860525197,45.367360819030935,42.46081284889138,13.460812848891381,24.856671577999318,21.394205344927393,6.9469917494274345,4.565391142216194,4.565391142216194,2.9090058915636177,2.9090058915636177,1.6740034373867099,1.6740034373867099,-2.7400000000000007,79915535564.1681,4.69694509608214,8.9664449392811,4.386345397580654,205.2996463417955,14.946586037938904,11.567374611118932,1.4118420783282006,0.0,5.559266895052007,5.689743398203474,18.82864621050501,4.794537184071822,0.0,0.0,12.08483741532659,24.954622000971913,74.41050782853102,29.174441407608786,44.52994460489443,11.50524905251859,0.0,14.034109026433189,13.951653800564491,6.372924901329379,56.2288336489171,51.050178199715596,0.0,5.749511833283905,26.195596331194388,11.50524905251859,5.749511833283905,0.0,60.05321959121144,13.951653800564491,0.0,44.75416447409556,39.801167906460115,1.4118420783282006,0.0,0.0,71.74000000000001,149.30338609461865,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,39.79308165109437,240.18190123181807,0.0,24.05350178177337,-1.1015534634152817,-6.208593848674723,-3.6278600985085996,-7.560397272170434,-4.857732190532069,-35.5554604733956,-3.6571390002280237,0.5,28,1,8,0,1,1,1,1,2,8,1,8,10,0,1,1,3,0.7168000000000008,111.67770000000007,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2771,CN(C)CCCC1(c2ccc(F)cc2)OCc2cc(C#N)ccc21,0,14.663832579774589,-4.608275856638955,14.663832579774589,0.9763272879233822,0.8388667572429985,324.3989999999996,303.231,324.1637915120006,124,0,0.12273124998647017,-0.3608398495431719,0.3608398495431719,0.12273124998647017,1.4166666666666667,2.2083333333333335,2.9166666666666665,2.7539011371861406,1581.7050473350032,35.419767061838236,32.68063995447301,11.680639954473007,19.923314813922843,16.741657717968394,6.241657717968393,4.38330959395939,4.38330959395939,2.935341014827592,2.935341014827592,1.9530446526457275,1.9530446526457275,-2.2199999999999998,821475885.675735,4.690085752967064,6.721078415843811,3.0558017290424,171.33807757483385,9.636772684650527,11.418271652029583,0.0,0.0,0.0,0.0,0.0,4.39041504767482,5.261891554738487,0.0,18.127256122989884,74.05439259328337,16.44910267404264,30.528485052937533,37.9132076810495,0.0,5.261891554738487,4.899909730850478,0.0,24.905885856558736,20.448513484880436,70.36795776147694,0.0,6.069221312792274,0.0,4.39041504767482,0.0,0.0,25.348423215730918,16.896899007700025,17.148333708576654,63.785585449021426,42.29693095364306,0.0,0.0,0.0,36.26,120.6222668337666,9.652306602413306,0.0,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,33.52279263337467,192.45432260955423,0.0,-0.9911066880583475,9.489620552287345,-9.242522094549736,-1.8395393365169255,-8.778825614746204,-9.14795898683548,-16.193990441134883,0.0,0.35,24,0,3,0,1,1,2,0,2,3,0,4,7,0,0,0,3,3.812980000000003,90.91400000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5281025,OCCOCCN1CCN(C2=Nc3ccccc3Sc3ccccc32)CC1,0,8.897625359557404,-4.50755476358358,8.897625359557404,0.2940636449645837,0.8048695029648197,383.5169999999997,358.3170000000002,383.1667480400007,142,0,0.2101556301226801,-0.393980332664247,0.393980332664247,0.2101556301226801,1.1111111111111112,1.8888888888888888,2.740740740740741,2.114984452036502,1837.2638165047,40.48868116259058,38.066385657891466,13.88288223881919,23.129604607979562,19.467723398623352,7.8759716890872165,4.557413035543524,5.578033761703182,2.9932308471593965,4.003076593620617,1.940221693907329,2.7861993517461605,-1.859999999999999,23934806409.598213,5.1879610246911705,8.885924063609108,4.352616912155156,199.41812564372955,14.745580875757739,5.835619785757269,0.0,1.4311996572326342,0.0,0.0,4.899909730850478,4.992404732635669,0.0,0.0,41.97397848770759,18.127256122989884,56.06326820133361,50.03799601449643,42.743876492992555,23.284891009831945,1.4311996572326342,9.799819461700956,4.992404732635669,9.79096695103555,52.16125415032858,53.90280115300335,0.0,0.0,0.0,5.687386274683562,0.0,11.761884949391115,74.33670124612667,4.736862953800049,0.0,38.461656839782286,63.12272134497758,0.0,0.0,0.0,48.300000000000004,137.1778477765093,0.0,0.0,0.0,11.761884949391115,0.0,0.0,0.0,0.0,14.83807587754293,34.329405005317916,211.7419484329981,0.2940636449645837,1.5094728422532728,3.5530174399518413,-1.7298632392870439,-1.3494205581809295,-7.493680471985459,0.0,-34.02553809071443,0.0,0.38095238095238093,27,1,5,0,2,2,2,0,2,6,1,6,6,0,1,1,4,2.8560000000000016,109.12180000000004,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5403,CC(C)(C)NCC(O)c1cc(O)cc(O)c1,0,8.400462962962962,-4.342677980914591,8.400462962962962,1.0637103568279163,0.6290731330689312,225.28800000000015,206.13599999999997,225.136493468,90,0,0.29309579915370876,-0.5078109740560278,0.5078109740560278,0.29309579915370876,1.5625,2.25,2.75,4.237329783558887,871.9228006336175,28.162772227887025,26.671958466891546,7.671958466891548,15.466796795623587,12.9815444980873,3.8095860311957526,2.671389430070742,2.671389430070742,1.256338261494135,1.256338261494135,0.7279843501071311,0.7279843501071311,-1.2600000000000002,6070253.295985327,2.4444479402270365,4.718527703418083,4.082142092621231,122.56612615588115,20.63623792661001,12.910865744896011,0.0,1.4311996572326342,2.8623993144652684,0.0,0.0,0.0,0.0,0.0,0.0,38.20396525891062,33.156547762235,11.563052251630868,37.29964499420314,0.0,4.293598971697903,5.309813353288376,0.0,32.174619631220374,6.496859684315945,23.69070761468688,0.0,11.49902366656781,5.309813353288376,0.0,11.49902366656781,0.0,31.655808481718832,0.0,0.0,52.760524213087365,18.127256122989884,1.4118420783282006,0.0,0.0,72.72,79.17102395007939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,26.266819392579407,146.59889857331825,0.0,0.0,11.009057775888135,-5.809552508503403,-2.2907721560846555,-3.7626436523683537,-3.9819675925925946,-16.763020439657346,0.0,0.5,16,4,4,0,0,0,1,0,1,4,4,4,6,0,0,0,1,1.5192999999999997,62.48710000000004,0,1,0,0,0,0,0,2,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15032,CC(=O)[C@H]1[C@H](C#N)C[C@H]2[C@@H]3CC=C4C[C@@H](O)CC[C@]4(C)[C@H]3CC[C@@]21C,0,14.036773133927245,-5.603981835789873,14.036773133927245,0.6194422782504503,0.7247440803713315,341.4949999999995,310.24700000000007,341.2354792320009,136,0,0.21046072331113358,-0.3927966848471336,0.3927966848471336,0.21046072331113358,1.52,2.44,3.16,2.7142203001392193,1853.2052418965363,45.146264369941974,43.263710176427686,12.263710176427685,24.05272988824629,22.290103378677706,6.881855088213842,5.520051689338853,5.520051689338853,4.128427544106922,4.128427544106922,2.975476694388173,2.975476694388173,-1.1400000000000001,47669380111.42591,3.7244833130591983,5.678573960300246,2.2933026953805795,194.67919908089493,5.1088081911072125,5.783244946364939,0.0,1.4311996572326342,0.0,0.0,4.794537184071822,0.0,5.261891554738487,0.0,25.328960510696195,79.97422042148413,44.27519725812926,20.784714137445782,51.02610206028567,5.783244946364939,6.693091211971121,0.0,40.29976936560895,71.24616868814267,0.0,11.625176276104835,0.0,6.069221312792274,0.0,0.0,0.0,0.0,18.403270821654775,4.794537184071822,51.6308822331397,106.28890734629917,11.625176276104835,0.0,0.0,0.0,61.09,128.95435927622142,21.022497188172064,0.0,0.0,6.069221312792274,0.0,0.0,0.0,0.0,5.1088081911072125,31.58788789297747,273.6694250663636,0.0,14.036773133927245,14.329980324987623,-13.340867031997988,-30.09929618585014,-1.9760717444882732,-40.43115372355454,-14.688789839387614,0.0,0.8181818181818182,25,1,3,4,0,4,0,0,0,3,1,3,5,3,0,3,4,4.264980000000004,96.36680000000005,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +57363,CC(C)(C)NC(=O)[C@H]1CC[C@H]2[C@@H]3CC[C@H]4NC(=O)C=C[C@]4(C)[C@H]3CC[C@]12C,0,15.058041989459282,-5.869669036596123,15.058041989459282,1.1962221771582042,0.7351466700288801,372.55299999999943,336.2650000000001,372.277678392001,150,0,0.2434237067969698,-0.3512502958328486,0.3512502958328486,0.2434237067969698,1.3703703703703705,2.2222222222222223,2.962962962962963,2.613418280714557,2004.5446374189366,50.96410161513776,49.21092377192764,13.210923771927643,26.95213548685034,25.197102672463696,7.302675481463779,5.892928920941891,5.892928920941891,4.027003993966401,4.027003993966401,2.8286543010105625,2.8286543010105625,-1.3199999999999998,704871945658.36,3.7389125513588795,6.087459123462907,2.9428285964800356,214.1728697360752,10.619626706576751,0.0,2.8236841566564013,11.814359458703011,0.0,0.0,9.589074368143644,0.0,0.0,0.0,19.755855980626926,87.9421610313849,65.35928111676974,4.1122756685106605,59.01854943458758,11.814359458703011,0.0,10.619626706576751,34.405811680245876,84.05382771518767,0.0,12.104143492071133,0.0,0.0,10.619626706576751,0.0,0.0,0.0,23.371177179436003,9.589074368143644,34.405811680245876,119.102800904242,12.104143492071133,2.8236841566564013,0.0,0.0,58.2,152.99776905278443,17.1313641896038,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.092648060911905,315.8583169963272,0.0,28.265929404677383,-2.9737709645667505,-16.230790895119494,-29.028954634360247,-9.740837377468385,-32.930503735648955,-24.80272212717413,0.0,0.8260869565217391,27,2,4,3,1,4,0,0,0,2,2,4,3,3,0,3,4,3.8145000000000024,106.84240000000007,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10316203,CC(C)(C)NCc1ccc(Nc2ccnc3cc(Cl)ccc23)cc1O,0,8.729858749055177,-4.3044812814543985,8.729858749055177,0.0236627220332577,0.5997410932457807,355.8689999999997,333.6930000000001,355.14514000400055,130,0,0.29311094787018105,-0.50754303502271,0.50754303502271,0.29311094787018105,1.32,2.2,3.0,2.491944498619799,1716.2080485917438,36.72916813859674,34.12785354997297,12.88378249599142,21.065396684115125,17.2874226497002,6.862711641245648,4.583353965986399,4.961318438995626,2.66492161480114,2.8539038513057533,1.6785744898235337,1.8153233208122663,-2.2999999999999994,2352928957.6438355,4.901303137709833,6.9034835806933,4.409905796228705,183.52387928281522,15.728434897683965,7.161353911612106,1.4118420783282006,0.0,1.4311996572326342,0.0,4.9839785209472085,0.0,0.0,0.0,17.643358597895812,50.76776989020351,66.67652454232002,16.48276916697802,33.97690491499779,33.878637371680696,1.4311996572326342,10.293791874235584,0.0,32.59146128858633,5.309813353288376,59.05591096989614,0.0,5.749511833283905,10.619626706576751,11.374772549367124,5.749511833283905,11.600939890232516,17.062911621670402,6.496859684315945,0.0,52.16354041081826,48.46982616445783,7.846317470397728,10.902924932081056,0.0,57.18000000000001,124.98439492650293,0.0,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,10.092786712054421,41.900236271355745,178.41105257700139,5.929595258467195,3.71308770141944,2.2330974959974412,-8.307288057761545,-1.4134099689258417,-7.306496995016871,-0.9021221478427119,-16.49640475222737,0.0,0.25,25,3,4,0,0,0,2,1,3,4,3,5,5,0,0,0,3,5.225500000000004,104.73520000000003,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +6252,Nc1ccn([C@@H]2O[C@H](CO)[C@@H](O)[C@@H]2O)c(=O)n1,0,12.425950570042831,-3.821752763605443,12.425950570042831,0.28918745275888114,0.4489304892314893,243.21900000000008,230.11499999999995,243.085520516,94,0,0.3512126938330889,-0.39356685388765933,0.39356685388765933,0.3512126938330889,1.8235294117647058,2.7058823529411766,3.411764705882353,2.9668133457831027,901.7318143617266,23.499635521070495,20.88288223881919,7.88288223881919,13.547677024663349,10.185557720282969,4.0663856578914634,2.7868471232961913,2.7868471232961913,1.773566113587313,1.773566113587313,1.0638890074202472,1.0638890074202472,-1.48,1530426.2504962906,3.7548469826161677,4.414475063137193,2.025663273733915,114.53794981063047,25.78300450284796,24.05791685868499,9.027636966592956,4.293598971697903,0.0,5.689743398203474,4.567099647791355,4.794537184071822,4.9839785209472085,0.0,0.0,6.042418707663295,6.172895210814761,17.525053692278046,33.85304013313984,5.817862777835028,4.293598971697903,9.551078168738563,0.0,24.44400689078652,12.278702218642561,22.69959450075335,0.0,0.0,11.409460373929747,5.817862777835028,0.0,0.0,53.97014103752436,4.736862953800049,0.0,17.170021259298313,17.009851102549877,2.8236841566564013,0.0,0.0,130.82999999999998,54.72591222821936,4.794537184071822,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,20.310403094268846,22.820214531516115,103.2527203721186,0.0,15.53083664021164,11.608213325058111,-2.056431710425217,-0.9851335480179728,-1.1326292569496939,-16.570302343159486,-3.730606812169314,0.0,0.5555555555555556,17,5,8,0,1,1,0,1,1,8,4,8,6,0,1,1,2,-2.563,55.91880000000002,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3002820,N#C/C(=C1/SCC(c2ccccc2Cl)S1)n1ccnc1,0,9.600206632681981,-2.508213458994708,9.600206632681981,0.11076121189216392,0.7689388614433412,319.84199999999987,309.76200000000006,319.0004670000003,100,0,0.14526363001569348,-0.2957595557889,0.2957595557889,0.14526363001569348,1.65,2.5,3.25,2.2845188377896086,1129.0524872702422,22.756630355021706,19.536101840436828,11.925023948310734,13.779598969470898,10.097119603932214,7.108077238796894,3.342980668024613,5.816480824324026,2.190547728875774,4.677215995627408,1.3473183605549388,3.620879195261396,-1.35,2734618.917662536,6.184538506369604,5.961066034374057,2.593919764522166,144.2483245611456,0.0,13.137019182018326,0.0,0.0,0.0,0.0,4.567099647791355,4.9839785209472085,5.261891554738487,23.52376989878223,29.7281960132224,11.60587019936029,32.41164595821553,18.765091548698372,13.7075855617022,40.821749102070584,5.261891554738487,9.551078168738563,0.0,5.22598966918386,5.704956885150159,57.64209026939807,0.0,6.069221312792274,0.0,0.0,0.0,35.124709789014744,15.25603505388872,0.0,11.33111286753076,24.49702672258305,47.05600546395975,5.022633313741326,5.697039313055833,0.0,41.61,64.33586832602126,5.261891554738487,0.0,9.93420781076666,23.52376989878223,4.567099647791355,0.0,6.069221312792274,0.0,4.9839785209472085,25.308525451934713,80.81418034511785,7.020497726179541,3.4856914442646767,6.714374755949809,-3.374027685920046,0.0,-0.8483264762133804,-1.7012789982673333,0.0,0.0,0.14285714285714285,20,0,3,0,1,1,1,1,2,5,0,6,2,0,1,1,3,4.407480000000002,85.29800000000002,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 +4528,CN1Cc2c(N)cccc2C(c2ccccc2)C1,0,9.217592592592592,-3.7770715230536647,9.217592592592592,0.34976752120601295,0.7740399810607017,238.33400000000012,220.18999999999994,238.146998576,92,0,0.15622611269565836,-0.39845707551570525,0.39845707551570525,0.15622611269565836,1.3888888888888888,2.2777777777777777,3.0555555555555554,2.7949727121144154,1238.4493298846598,28.082903768654763,26.894427190999917,8.894427190999917,16.088886832798472,13.788854381999831,4.894427190999916,3.4076237921249266,3.4076237921249266,2.3024186938124425,2.3024186938124425,1.5560661446562,1.5560661446562,-1.7999999999999994,18980276.833658874,2.8561765513873194,4.4649612493444435,1.8880742346082224,133.44774126433154,10.619626706576751,0.0,2.8236841566564013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.29693095364306,29.708600083036526,35.541131778040295,10.96606844936176,24.75582105537992,5.687386274683562,0.0,4.899909730850478,0.0,12.390817369679024,19.192403560324465,65.02970413639734,0.0,0.0,5.719716975726273,5.687386274683562,0.0,0.0,18.372596315448668,6.496859684315945,0.0,44.51644905917761,48.33934966130636,2.8236841566564013,0.0,0.0,29.259999999999998,101.48050409620862,1.3707585561702202,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,0.0,23.3850624992097,147.35734411743096,0.0,-0.4180976001511718,0.0,-4.881318027210884,-3.484976851851852,-8.57112399743848,0.0,-11.001827640778533,0.0,0.25,18,2,2,0,1,1,2,0,2,2,1,2,3,0,0,0,3,2.8461000000000016,75.47340000000004,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5281034,C[C@]12C/C(=C/O)C(=O)C[C@@H]1CC[C@@H]1[C@@H]2CC[C@@]2(C)[C@H]1CC[C@]2(C)O,0,13.828956665578689,-5.767375283446715,13.828956665578689,2.2118184306040547,0.5104218936123291,332.4839999999994,300.228,332.2351448840009,134,0,0.2921345456133457,-0.5151761395192137,0.5151761395192137,0.2921345456133457,1.2916666666666667,2.2083333333333335,2.9583333333333335,2.745990510190624,1770.8149076818572,45.146264369941974,43.72474487139159,11.72474487139159,24.074732717665775,22.42886901662352,6.612372435695795,5.487372435695795,5.487372435695795,4.084279326771846,4.084279326771846,2.750472996719256,2.750472996719256,-0.8300000000000001,45652425752.70095,3.3655751503901494,5.092752969019969,1.9670272896080183,190.2075517955207,10.217616382214425,1.3707585561702202,5.783244946364939,1.4311996572326342,1.4311996572326342,0.0,4.794537184071822,0.0,0.0,0.0,13.703784234591359,85.86817810684721,51.69802756033506,11.839182898606165,56.134910251392895,5.783244946364939,2.8623993144652684,0.0,34.405811680245876,77.14012637350575,0.0,11.811236617691744,0.0,0.0,0.0,0.0,0.0,0.0,23.033111796795687,4.794537184071822,34.405811680245876,112.66183224762854,11.811236617691744,0.0,1.4311996572326342,0.0,57.53,129.14041961780833,15.760605633433581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,33.0190875502101,283.2826141605057,0.0,13.828956665578689,7.972200211938667,-18.73065264928541,-25.216110050029613,0.0,-44.44194397398539,-15.195064364722787,0.0,0.8571428571428571,24,2,3,4,0,4,0,0,0,3,2,3,5,4,0,4,4,4.401000000000005,93.45260000000006,0,2,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +312145,COC[C@H]1OC(=O)c2coc3c2[C@@]1(C)C1=C(C3=O)[C@@H]2CCC(=O)[C@@]2(C)C[C@H]1OC(C)=O,0,14.763020321554542,-5.120319113756614,14.763020321554542,1.5729907958553786,0.6759236684837596,428.4369999999998,404.24500000000023,428.14711772800064,164,0,0.3416582432149303,-0.4595988039550366,0.4595988039550366,0.3416582432149303,1.4516129032258065,2.3225806451612905,3.064516129032258,2.2847493315204925,1999.8258510568778,43.10192981664245,38.765986323710905,14.765986323710905,24.0380173456737,20.19948974278318,8.199489742783179,6.582908118985982,6.582908118985982,5.038190864830099,5.038190864830099,3.8236500529314994,3.8236500529314994,-2.74,62724217472.53056,6.634747582102241,6.384923764012375,2.392775136796449,212.15272100353133,18.627739798453494,31.116705682972874,5.760247418874442,5.783244946364939,0.0,11.938610575903699,14.383611552215466,4.794537184071822,0.0,0.0,6.851892117295679,18.797921548694326,71.01333545408667,21.569285605504607,70.7040938828261,23.50510046863358,0.0,0.0,11.308948154759857,57.24947757917192,13.596937701798877,34.272574097247706,0.0,0.0,0.0,0.0,0.0,0.0,49.26207422433242,29.21465369894057,11.308948154759857,99.04888117437243,21.802574632032623,0.0,0.0,0.0,109.11000000000001,139.93303800161198,26.031941517138385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,39.93528941188764,222.00890479751993,0.0,55.70439953469017,0.0,-17.88100544847569,-16.742470164023416,0.0,-25.797491155738143,-18.29938452760964,-4.076286369696593,0.5652173913043478,31,0,8,3,1,4,0,1,1,8,0,8,7,1,0,1,5,2.5364000000000004,104.50500000000004,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,2,3,1,0,0,0,0,0,0,0,0,2,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3117,CCN(CC)C(=S)SSC(=S)N(CC)CC,0,7.851499433106576,-3.724764739229026,7.851499433106576,0.029097694633409388,0.5731348904238733,296.5519999999997,276.39200000000005,296.05093264000055,94,0,0.14695129980273047,-0.35739410172993036,0.35739410172993036,0.14695129980273047,0.9375,1.25,1.5,6.543316624947143,702.3153035980408,29.723614639131597,27.52742035285537,10.793406676566272,15.292564324352895,13.324804034094267,6.291130529283053,1.8165156937533398,5.213479103760225,0.9966056148307059,4.425596410847611,0.38429997501952834,2.5284135003612582,0.4799999999999999,3786916.6481314306,3.1371255349410063,9.503950075898128,5.702690372404801,146.00655003265186,9.799819461700956,8.641068171117942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.43574688609339,48.99536442195616,53.40260986066823,0.0,27.415171123404395,54.66461100998478,0.0,9.799819461700956,0.0,27.407568469182717,25.98743873726378,0.0,0.0,0.0,0.0,0.0,0.0,46.023542838866845,44.42832637008268,0.0,0.0,54.82273959258717,0.0,0.0,0.0,0.0,6.48,62.03607537756443,0.0,0.0,31.387615414474404,0.0,0.0,0.0,0.0,0.0,0.0,51.85091800949783,148.94168965994726,9.69671563995969,-0.7564375472411191,0.0,0.0,0.0,0.0,0.0,-29.490439030065655,-0.058195389266818776,0.8,16,0,2,0,0,0,0,0,0,4,0,6,8,0,0,0,0,3.6212000000000026,86.22000000000004,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +18381,Cc1onc(-c2c(Cl)cccc2Cl)c1C(=O)N[C@@H]1C(=O)N2[C@@H](C(=O)O)C(C)(C)S[C@H]12,0,13.946564074703954,-3.9604937346514175,13.946564074703954,0.3325944407007273,0.660289548252613,470.33399999999995,453.19800000000026,469.02659700400045,158,0,0.32739938471432256,-0.479672802365529,0.479672802365529,0.32739938471432256,1.5,2.2333333333333334,2.8666666666666667,1.9943793067230722,1690.3533743523933,36.41133089340095,31.04705947530151,16.375413948266143,21.067161664040192,15.9365103479315,9.153473988913857,5.743860255080684,7.702984113093851,3.9511092582883047,5.5868638680855796,2.7079502107759628,4.275228765450486,-2.23,3696056772.445848,8.720916726486978,7.176983153246343,3.069591186676107,209.43895349174693,19.841626212219413,34.403336294289616,1.4118420783282006,5.907179729351506,7.33837938658414,5.969305287951849,9.589074368143644,4.794537184071822,0.0,11.761884949391115,34.400961745253774,32.640513767213626,22.64730095044653,18.26981796450397,45.988735101177554,52.74742947651101,1.4311996572326342,15.366386341264299,0.0,42.68840819397432,0.0,39.496221661043975,0.0,11.257379486545457,5.309813353288376,0.0,0.0,34.963764729856145,55.08177776782527,9.589074368143644,6.851892117295679,50.38339867178796,22.65035105996323,11.457108705810853,12.68857914377809,0.0,112.74,128.2973723908981,14.383611552215466,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,10.265471448232658,51.12939479555254,137.83895963269532,11.642634776696216,40.015823476179925,1.4703996206268286,-2.97498480323922,-7.659186325548551,-10.200840217764252,0.0,-11.327250604090729,0.0,0.3684210526315789,30,2,8,0,2,2,1,1,2,7,2,11,7,0,2,2,4,3.2021200000000007,111.67800000000003,1,0,0,0,0,1,0,0,1,1,3,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +23623618,COCC(=O)O[C@]1(CCN(C)CCCc2nc3ccccc3[nH]2)CCc2cc(F)ccc2[C@@H]1C(C)C,0,15.706540699261975,-6.162648065066327,15.706540699261975,0.3444082595067548,0.3671828919918632,495.63899999999956,457.33500000000026,495.2897202960011,194,0,0.33213724371044523,-0.45663824738809883,0.45663824738809883,0.33213724371044523,1.4722222222222223,2.361111111111111,3.1944444444444446,2.4467208885962246,2757.1418966234946,58.858924650593664,55.44435013090069,17.44435013090069,32.246300343898035,28.22206414241408,9.274850546914124,6.392256336140538,6.392256336140538,4.147501034899058,4.147501034899058,2.808196723016444,2.808196723016444,-2.769999999999999,140974628741455.97,6.26458103220002,11.522964457234897,5.954696283037811,266.193130206876,19.350638908679826,23.801661392945796,1.4118420783282006,0.0,0.0,5.969305287951849,0.0,14.16893075269385,0.0,0.0,31.831040357581244,73.78199678799658,66.44358353547594,27.48250410927516,70.78858679597313,17.002706723184374,0.0,14.860891522026938,5.893957685363079,57.063417237585014,33.566483970713016,65.06545927608288,0.0,0.0,0.0,4.39041504767482,0.0,0.0,59.99773159167548,27.01411289433068,11.711178526408974,106.38589068363453,42.29693095364306,1.4118420783282006,11.033401435232523,0.0,67.45,183.49193462377892,15.760605633433581,4.39041504767482,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.720841474747257,45.900703161064655,350.4755327432971,0.0,15.661080133558867,0.0,-13.112948429194603,-18.918790235153956,-11.212922467294357,-26.28915652879028,-31.303776827784638,-4.215685055304869,0.5172413793103449,36,1,6,1,0,1,2,1,3,5,1,7,15,0,0,0,4,5.270900000000005,139.52769999999992,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,2,0,2,0,0,0,1,2,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4449,CCc1nn(CCCN2CCN(c3cccc(Cl)c3)CC2)c(=O)n1CCOc1ccccc1,0,14.195500192203102,-4.927352612726724,14.195500192203102,0.5668502478960318,0.4542179585941736,470.0169999999997,437.7610000000003,469.22445294400086,176,0,0.34553531197498566,-0.49173377956566083,0.49173377956566083,0.34553531197498566,1.121212121212121,1.9393939393939394,2.727272727272727,2.048046725001582,2406.7312809280193,51.30651840778636,47.93052903143675,16.6864579774552,28.57188563316259,24.434636245200156,8.812600718209383,5.377676089178312,5.755640562187539,3.3600305197110236,3.549012756215637,2.0121254254159227,2.1488742564046555,-2.769999999999999,5046131956226.265,6.070172331872346,11.386687349679425,6.177896565208828,244.64803346317018,9.636772684650527,18.13290157420012,0.0,0.0,0.0,5.689743398203474,9.467009378641833,9.476340119217006,5.098681808301038,0.0,42.62250683818137,36.58501843964585,73.88396382586278,32.54127225155012,48.601136751247125,17.28832616491608,0.0,19.247494122088057,0.0,32.59146128858633,43.94319339534649,75.71308676298622,0.0,5.749511833283905,15.326516082854,5.687386274683562,5.749511833283905,11.600939890232516,58.29077778658406,19.36664426996127,0.0,62.913495314072094,59.17630555304147,5.022633313741326,0.0,0.0,55.53,173.03891468460176,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.098681808301038,60.202076641479664,270.5117605549348,5.898588246639811,12.482976067745644,2.0700409516805705,-4.083482254000792,-3.58315966078575,-10.961436201183686,-9.15930094677635,-40.481542313809875,0.0,0.44,33,0,7,0,1,1,2,1,3,7,0,8,11,0,1,1,4,3.5519000000000025,132.52399999999997,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12004215,CC[C@H](C)[C@@H]1NC(=O)[C@H](Cc2ccc(O)cc2)NC(=O)[C@@H](N)CSSC[C@@H](C(=O)N2CCC[C@H]2C(=O)N[C@@H](CC(C)C)C(=O)NCC(N)=O)NC(=O)[C@H](CC(N)=O)NC(=O)[C@H](CCC(N)=O)NC1=O,0,16.534135910380044,-6.884478044411884,16.534135910380044,1.4684468321829054,0.06710971949761857,1007.207000000002,940.6789999999995,1006.4364575520019,382,0,0.29309207049653996,-0.5079666451556014,0.5079666451556014,0.29309207049653996,0.9420289855072463,1.6376811594202898,2.318840579710145,3.4245141258640883,4864.5166788349015,108.86447815005877,98.58203921249357,34.21503237434902,58.910489556278215,48.58659967562651,18.619977366924317,10.81208833412354,12.553669957920741,6.211283611611792,7.597981942678786,3.620365807783334,4.805438844159607,-6.150000000000001,7.233675771754562e+45,14.04226730838559,27.746678741016556,18.698688495776516,500.7937625311607,70.05627929788142,50.69844326838781,18.353947018266606,64.97897702286656,1.4311996572326342,0.0,52.73990902479004,0.0,0.0,0.0,67.45312673861213,54.92790388306725,79.99993127940297,38.07829684037806,147.5642761993311,86.56677297564002,1.4311996572326342,42.06860320386911,34.666783273631246,126.53410742661491,24.403633138932207,29.733126322350174,0.0,5.749511833283905,60.04756137592372,0.0,5.749511833283905,21.587795952773448,148.9656674877863,59.112833926119414,11.787915370726157,146.11942207869618,24.16967483065318,21.177631174923004,0.0,0.0,399.5299999999999,349.72253817432164,42.64537827981296,33.561760288502754,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,67.67952909714103,571.4464383502271,0.0,165.8732521087751,-13.428287952070358,-21.232644408719423,-58.44699788126645,-60.8265848420163,-47.77408777277394,-32.65061699434428,-3.9604706078115823,0.6046511627906976,69,16,24,0,2,2,1,0,1,15,12,26,23,0,2,2,3,-3.6086000000000125,254.37529999999958,0,0,0,0,0,0,0,1,0,0,11,11,0,0,0,1,7,4,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0 +154068,O=C1Cc2cc(CCN3CCN(c4nsc5ccccc45)CC3)c(Cl)cc2N1,0,12.447206917692274,-4.295209671940149,12.447206917692274,0.09940515249080217,0.7074872979003035,412.9459999999998,391.7780000000002,412.1124599720006,144,0,0.22838392954830866,-0.3526920160297928,0.3526920160297928,0.22838392954830866,1.3214285714285714,2.142857142857143,3.0,1.7766837804891673,1936.6010685085512,37.729168138596734,34.48331543593679,15.055740962882968,21.9053834137262,17.989479488053302,8.693627027696545,5.269687513979917,6.421048649123117,3.531544170450469,4.56800177281817,2.308482431839243,3.1734488462968944,-2.1499999999999995,11128510456.099194,6.173499524794328,7.351296921582725,3.363098807701631,202.1758926924166,10.209723084138854,5.817862777835028,1.4118420783282006,5.907179729351506,0.0,0.0,9.694446914922299,0.0,4.3735399814164495,0.0,29.7281960132224,47.15957061927993,62.288127786171636,24.780430379500675,33.62155038580442,50.631999414603186,0.0,9.273449712266927,0.0,12.745849802658759,42.69402150571858,52.40404854311508,0.0,0.0,10.209723084138854,11.50524905251859,0.0,23.133426501799192,47.66492786319815,17.54038698673058,0.0,38.5420741067984,36.25451224597977,6.434475392069527,10.086144130933896,0.0,48.470000000000006,125.33275949453896,4.794537184071822,0.0,14.909643000607954,11.532486611566675,0.0,0.0,0.0,0.0,4.3735399814164495,40.42795309196513,182.12760456497804,6.5226247696361535,11.517955726585624,-1.867578067145343,-3.351762897754095,-2.579008699467633,-5.583163608055446,-7.274237703477293,-20.48465630752225,0.0,0.3333333333333333,28,1,5,0,2,2,2,1,3,5,1,7,4,0,1,1,5,3.809000000000002,115.76270000000004,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +383414,C[C@@H](O)[C@@H]1NC(=O)[C@H](CCCCN)NC(=O)[C@@H](Cc2c[nH]c3ccccc23)NC(=O)[C@H](Cc2ccccc2)NC(=O)[C@@H](NC(=O)[C@H](N)Cc2ccccc2)CSSC[C@@H](C(=O)N[C@H](CO)[C@@H](C)O)NC1=O,0,16.80810704931496,-6.867103167659591,16.80810704931496,0.7239653357508051,0.045517553484694905,1019.2610000000022,952.7329999999997,1018.440480312002,384,0,0.24544439295345072,-0.3941370662897746,0.3941370662897746,0.24544439295345072,0.8732394366197183,1.5633802816901408,2.267605633802817,2.515987769913639,5465.699372874949,108.89749386594889,99.87111544056593,35.50410860242138,60.6704906729413,49.73238678634054,19.79090868321052,11.52266429433751,13.264245918134707,6.983372894224579,8.37007122529157,4.1149322607319165,5.345648843566947,-6.010000000000001,1.4349568845403805e+45,14.603856694194159,28.138409879659868,17.079111594369117,513.3870047939221,68.91155526802207,41.75472312341066,11.294736626625605,45.64385707715844,0.0,0.0,33.561760288502754,0.0,0.0,0.0,100.13923915239627,68.4251167069791,74.1297890639402,67.76528725011157,135.73897616644393,73.84097899031505,4.293598971697903,42.14569674324788,11.439433951452546,112.24450944326476,24.465758697532554,107.45711159319188,0.0,0.0,48.60812742447118,0.0,0.0,21.587795952773448,150.71621941893903,52.680534992490884,0.0,119.42159977835158,90.76675711810091,16.942104939938407,10.902924932081056,0.0,332.21999999999997,371.5934894190047,31.773947924862934,33.561760288502754,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,59.370442351454614,585.034927682522,0.0,113.71537979569223,-7.704138609960733,-24.29614838020462,-29.55536643580364,-77.43306601642837,-49.00933221252217,-21.04773016284038,-4.0378589937879195,0.4489795918367347,71,15,20,0,1,1,3,1,4,14,13,22,24,0,1,1,5,-0.8053999999999897,272.0537999999996,0,3,0,0,0,1,1,0,0,0,7,7,0,0,0,0,8,2,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2391,CC(=O)Oc1ccc(C(c2ccc(OC(C)=O)cc2)c2ccccn2)cc1,0,12.004490324859315,-3.418393717001342,12.004490324859315,0.9360541006160663,0.5053017377899989,361.39699999999976,342.2450000000001,361.13140808800057,136,0,0.3075239402287338,-0.42673357579074495,0.42673357579074495,0.3075239402287338,0.8888888888888888,1.4074074074074074,1.8888888888888888,2.592583330694702,1646.6314906030111,35.59097545816254,32.08020675735541,13.08020675735541,20.809102517745345,16.421958466891546,6.921958466891548,4.509500988326281,4.509500988326281,2.797455592475625,2.797455592475625,1.8499297478061985,1.8499297478061985,-3.4699999999999993,2111749835.878698,6.023361384208518,8.2729202232068,4.788877194748414,183.83452424684424,9.473725907600098,11.49902366656781,0.0,0.0,0.0,11.938610575903699,14.573052889090853,0.0,0.0,0.0,30.212093538316473,47.38141522937376,29.471989338597655,28.036988354254174,45.107212842977944,11.938610575903699,0.0,4.9839785209472085,0.0,19.597741919954437,0.0,89.46033197335345,0.0,11.49902366656781,9.473725907600098,0.0,11.49902366656781,0.0,16.922589096850906,9.589074368143644,0.0,62.46298546543113,72.639500995111,0.0,0.0,0.0,65.49000000000001,132.4957081357794,10.959832924313863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.457704428547306,24.673654011063956,161.55716578210817,0.0,27.642704813728688,0.0,-3.5666003191400018,-9.777254606109048,-13.537367093112321,-1.065194476806129,-6.836787434002682,0.0,0.13636363636363635,27,0,5,0,0,0,2,1,3,5,0,5,7,0,0,0,3,4.112400000000003,100.68400000000003,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +5184,CN1C2CC(OC(=O)C(CO)c3ccccc3)CC1C1OC12,0,13.730689602229777,-4.417703963529859,13.730689602229777,0.4654924471255186,0.6618093940597772,303.35799999999955,282.18999999999994,303.14705815200057,118,0,0.3155498818388703,-0.46172004898840946,0.46172004898840946,0.3155498818388703,1.6818181818181819,2.409090909090909,3.0454545454545454,2.0325195913302245,1365.939277044048,33.740122497076655,31.580206757355413,10.58020675735541,18.937045922135326,16.30381355510539,5.895565264641527,4.238639924233883,4.238639924233883,2.9608638426858063,2.9608638426858063,1.9393715786689134,1.9393715786689134,-1.4299999999999997,533611856.75902987,3.965798780046101,5.333924974919479,2.2416588494484997,158.96200366038013,14.58253409870731,24.134011766213042,0.0,1.4311996572326342,0.0,5.969305287951849,9.694446914922299,0.0,0.0,0.0,30.212093538316473,12.539278391979241,38.48922030106026,20.266570804618485,46.79224240618356,5.969305287951849,1.4311996572326342,4.899909730850478,0.0,48.91564650557109,13.534812143198534,35.77554503001347,0.0,0.0,0.0,0.0,0.0,0.0,61.21987402788995,14.268263091671919,0.0,51.61843010312327,30.212093538316473,0.0,0.0,0.0,62.3,109.09521869758542,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,38.32009668823714,181.80432631221657,0.0,13.265197155104259,3.810155438897321,-1.5605097054253798,-6.794792257180651,-14.176591110414526,-19.805706877773304,-7.87541228875763,0.0,0.5882352941176471,22,1,5,0,3,3,1,0,1,5,1,5,6,0,3,3,4,0.9180999999999995,79.38280000000005,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3899,Cc1oncc1C(=O)Nc1ccc(C(F)(F)F)cc1,0,12.97920449773624,-5.229744045319896,12.97920449773624,0.3326247165532883,0.9108229912132475,270.2099999999998,261.138,270.06161218800025,100,0,0.4159120645565454,-0.3608676197160436,0.4159120645565454,0.3608676197160436,1.4736842105263157,2.1578947368421053,2.736842105263158,2.683738869841961,926.2780734493581,21.76506652345898,17.84481719095532,8.844817190955322,12.6019654011114,9.025803174562654,4.578589579062696,3.136823560018063,3.136823560018063,1.843930527220124,1.843930527220124,1.016455304805842,1.016455304805842,-2.3099999999999996,645546.2432293653,5.767732050023858,4.753017218495077,2.9280963381750933,118.45943884572263,9.832908290261724,11.323698910571437,1.4118420783282006,0.0,5.907179729351506,6.176298517443475,4.794537184071822,0.0,13.171245143024459,0.0,5.156663257125445,31.02156694794886,9.799661943194222,18.590139483362854,34.86678779175959,11.594566004035068,0.0,5.156663257125445,0.0,13.028190634739154,5.309813353288376,47.229720443736376,0.0,0.0,5.309813353288376,18.858631417708022,0.0,0.0,11.063842986476951,6.176298517443475,6.851892117295679,32.64775603570201,34.86566497844129,1.4118420783282006,0.0,0.0,55.13,71.8524770825106,17.96578232709628,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.679758194098794,12.377910527689961,110.39493530200825,0.0,12.460505125661372,2.658172188194735,-4.071028845951961,-2.708471802301167,-5.784992992567396,-6.219983137870496,-3.062469170506689,0.0,0.16666666666666666,19,1,4,0,0,0,1,1,2,3,1,7,3,0,0,0,2,3.2541200000000012,60.63720000000001,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,3,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5282408,CN1CCC(=C2c3ccccc3CC(=O)c3sccc32)CC1,0,13.510864097973133,-3.904274730725624,13.510864097973133,0.21032499265138105,0.7325276241844827,309.4339999999996,290.282,309.11873522800056,112,0,0.17729496902076006,-0.3057312648500038,0.3057312648500038,0.17729496902076006,1.2272727272727273,2.0454545454545454,2.8636363636363638,2.439495418419821,1518.4519840850069,31.790010549841313,29.763710176427686,11.58020675735541,18.21200774075213,15.533192828945731,6.8496894098734575,4.296389430070742,5.112886010998468,3.0238561900634813,3.8216240317085752,2.1181392712659224,2.7721783736283827,-1.71,202563181.26075757,4.221542171209041,5.488133515608595,2.2505364732662927,161.32786955973475,4.899909730850478,0.0,5.783244946364939,0.0,0.0,0.0,4.794537184071822,0.0,0.0,11.336785877934737,29.742779360722444,47.82021733373515,42.749956991871144,13.101698530722619,30.838949751305996,22.693135354368945,0.0,4.899909730850478,0.0,19.118774703988137,19.969546268914137,62.708814146845626,0.0,0.0,0.0,0.0,0.0,11.336785877934737,30.65270094612955,6.372924901329379,0.0,65.1523012227571,41.14131247805334,0.0,5.573104530069267,0.0,20.310000000000002,118.05339432703262,4.794537184071822,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,0.0,26.044412567234176,158.5261902393342,0.21032499265138105,12.119585333380877,-0.7142532228940961,-5.7120606969639685,-1.515323181741833,-5.281481814208185,-11.065114205404388,-11.56786744415397,0.0,0.3157894736842105,22,0,2,1,1,2,1,1,2,3,0,3,1,0,1,1,4,4.014400000000004,91.54850000000005,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3647,NS(=O)(=O)c1cc2c(cc1C(F)(F)F)NCNS2(=O)=O,0,13.46279195011338,-5.769754109977322,13.46279195011338,0.581789965986395,0.6699841555806898,331.29699999999985,323.233,330.9908323960002,112,0,0.41729938656373755,-0.3704318163338527,0.41729938656373755,0.3704318163338527,1.5,2.15,2.7,3.2508975680703847,1062.1183876514951,22.196152422706632,16.925023948310734,10.558017110166185,12.31816089063478,8.216684813564251,7.307957089165699,3.3828373287053104,6.28217345478072,2.03479037442911,3.990210818273529,1.284995983853578,2.817006099616341,-1.3700000000000003,388853.4881431696,7.58500217508939,4.3110501611482945,2.586795284466095,123.08521978289448,5.309813353288376,9.131009710502378,1.4118420783282006,20.046582306815168,0.0,6.176298517443475,0.0,21.960617204829905,17.88636475675859,0.0,0.0,12.08483741532659,0.0,28.250149933881723,41.13724164967602,25.73396858149873,0.0,4.715119613734132,5.12502323617203,15.967265468479024,11.930607820590888,17.648288907023584,0.0,0.0,15.149956203194538,18.858631417708022,0.0,0.0,23.45638843596039,26.22288082425864,0.0,11.046485716377875,21.87580436636214,5.6473683133128025,0.0,0.0,118.35999999999999,81.12027362749839,30.006839111682332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.130402537993684,146.7282356623205,0.0,-3.9512627551020403,-1.8108658116024197,-4.075262188208615,0.0,-3.9562037037037023,-5.726446641156464,-3.6029614276266058,-11.271899801587296,0.25,20,4,7,0,1,1,1,0,1,5,3,12,2,0,0,0,2,0.014100000000000557,61.6284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 +5634,C=CCCCCCCCCC(=O)O,0,11.477242707856625,-4.5667150888133055,11.477242707856625,1.6277667525495223,0.44033516945280404,184.27900000000017,164.11899999999997,184.14632988,76,0,0.3028395565321837,-0.481230389785217,0.481230389785217,0.3028395565321837,1.4615384615384615,2.1538461538461537,2.8461538461538463,7.019124789887043,789.8327199913872,27.439157588755425,26.316496580927726,6.316496580927726,14.085439750931874,12.816496580927726,2.908248290463863,1.4124574785652648,1.4124574785652648,0.6020620726159658,0.6020620726159658,0.2697810363079829,0.2697810363079829,-0.79,1520407.7009830433,1.5752132339134564,9.29920606601249,11.21,108.84090525333457,5.1088081911072125,0.0,0.0,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,6.531038962001867,31.543771351353087,19.118774703988137,28.305061800052894,4.1122756685106605,35.94775794241322,5.969305287951849,1.4311996572326342,0.0,0.0,50.98339921063503,0.0,12.583110708037434,0.0,0.0,0.0,0.0,0.0,0.0,11.078113479059063,4.794537184071822,0.0,77.0278117778692,12.583110708037434,0.0,1.4311996572326342,0.0,37.3,69.5358152066243,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,27.47561222446681,151.321724877209,0.0,11.477242707856625,3.2778734416495094,0.0,-2.342763195823937,-1.763332525484176,-34.84297855285749,-1.6277667525495223,0.0,0.7272727272727273,13,1,2,0,0,0,0,0,0,2,1,2,9,0,0,0,0,3.3778000000000015,54.76880000000004,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +60846,CCCCC(=O)N(Cc1ccc(-c2ccccc2-c2nn[nH]n2)cc1)[C@H](C(=O)O)C(C)C,0,14.552171450870734,-5.3161086601538505,14.552171450870734,0.05869120389365334,0.49443162692459075,435.5279999999996,406.29600000000016,435.2270397880008,168,0,0.3261964828202927,-0.47970434179517524,0.47970434179517524,0.3261964828202927,1.28125,2.0625,2.71875,2.7579090683781806,2220.3726050107653,48.14338170096983,44.46081284889138,15.460812848891381,27.042576867565813,22.43586831040951,8.080406424445691,5.3409226721736465,5.3409226721736465,3.4173816233963983,3.4173816233963983,2.171621756175562,2.171621756175562,-3.5500000000000003,964476261176.5455,6.065453119816427,10.65708212114023,5.3761745071749605,228.0994028767747,10.00871792195769,6.017892468349645,0.0,13.143426305679634,1.4311996572326342,5.969305287951849,4.794537184071822,4.794537184071822,5.206409844936912,10.197363616602075,75.26795091452277,34.17062215743831,40.365372976065856,15.078344117872419,53.12020565417504,11.876485017303356,1.4311996572326342,25.517068288044335,5.893957685363079,52.18920320854076,0.0,53.90280115300335,0.0,22.514758973090913,0.0,0.0,0.0,0.0,48.520253964804546,16.08593405245959,5.893957685363079,82.2483835641681,48.33934966130636,1.4118420783282006,23.94595863032355,0.0,112.07000000000001,151.27711576815196,9.589074368143644,0.0,5.206409844936912,0.0,0.0,0.0,0.0,0.0,20.519556903364155,39.853522752156785,237.97159815610675,0.0,26.56742536523472,13.85991550317474,-5.041049158706987,-12.199155747111737,-16.447524361132498,-14.447744954744138,-18.513464802820838,0.0,0.375,32,2,8,0,0,0,2,1,3,6,2,8,13,0,0,0,3,4.161700000000002,121.38650000000004,1,0,0,0,0,4,1,0,1,1,2,1,0,0,0,4,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +71616,C[C@@H](c1ncncc1F)[C@](O)(Cn1cncn1)c1ccc(F)cc1F,0,15.6728480095742,-4.393125000000001,15.6728480095742,0.2810638699924408,0.7639757614487599,349.3159999999998,335.20400000000006,349.1150447280004,130,0,0.21148332686047785,-0.382403297261057,0.382403297261057,0.21148332686047785,1.4,2.28,3.0,2.785883355672994,1440.468996560932,30.041087405397878,25.77820968699133,11.778209686991334,17.716174591171423,13.141780324959447,6.233532034495584,4.367560118361656,4.367560118361656,2.853716185395407,2.853716185395407,1.7835126512810788,1.7835126512810788,-2.809999999999999,120269411.62688881,6.831560187376401,6.5951765875062565,3.2249817480260945,160.31863461046314,5.1088081911072125,40.25788330348483,5.817220841045895,1.4311996572326342,0.0,0.0,0.0,32.80498364101127,5.098681808301038,0.0,12.894310824958975,6.042418707663295,22.98286210940425,26.588234227000484,36.09991456434454,0.0,1.4311996572326342,24.732420306287846,0.0,24.84376029795839,0.0,71.91930848538647,0.0,0.0,0.0,13.171245143024459,0.0,0.0,31.272428154627697,12.097910495299633,17.451662523137685,41.82309051941709,43.21026647570333,0.0,0.0,0.0,76.72,96.76306878334486,4.39041504767482,8.78083009534964,4.681802935145185,0.0,0.0,0.0,0.0,0.0,25.159425562249876,19.251060887445494,157.4134321217136,0.0,9.356702331759148,7.612648809523809,-8.207862811791385,-10.768840650457717,-5.284433841437809,-5.235823255228017,-8.385822704081637,0.0,0.25,25,1,6,0,0,0,1,2,3,6,1,9,7,0,0,0,3,2.1769,80.68180000000002,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +657181,CCNC(=O)[C@@H]1CCCN1C(=O)[C@H](CCCN=C(N)N)NC(=O)[C@H](CC(C)C)NC(=O)[C@@H](CC(C)C)NC(=O)[C@H](Cc1ccc(O)cc1)NC(=O)[C@H](CO)NC(=O)[C@H](Cc1c[nH]c2ccccc12)NC(=O)[C@H](Cc1cnc[nH]1)NC(=O)[C@@H]1CCC(=O)N1,0,17.02465408180392,-7.393611580577183,17.02465408180392,0.7435112374450523,0.015134658747881936,1209.4210000000023,1124.7489999999991,1208.645462128002,472,0,0.29309207049653996,-0.5079666451556014,0.5079666451556014,0.29309207049653996,0.8275862068965517,1.4597701149425288,2.0804597701149423,2.067070587556751,6980.252330857492,136.57713843071042,125.55439701356568,41.554397013565676,75.05045975985036,62.656000986459645,21.63130047303253,14.315258013557278,14.315258013557278,8.623233509387463,8.623233509387463,5.285573852179741,5.285573852179741,-9.079999999999998,1.0475435290113822e+63,16.546675232223585,32.432024620054776,20.001979306243474,622.7302291052523,84.29928678457134,61.281302604600924,27.137185743666834,60.502996950747686,1.4311996572326342,0.0,52.93777657335388,4.9839785209472085,0.0,0.0,57.61966200749919,92.50444090371136,132.8675399221437,44.3898037487976,171.18144266126015,75.93427679433997,2.8623993144652684,67.62621497185158,28.219754054814366,158.5226667162484,26.049564295864126,83.80934277514456,0.0,5.749511833283905,59.22775413104793,0.0,5.749511833283905,0.0,178.15985886220577,67.06414654470635,11.787915370726157,193.90451403876037,71.98091652953778,21.177631174923004,10.902924932081056,0.0,431.53999999999985,435.9349481879641,46.84605651768748,38.356297472574575,0.0,0.0,0.0,0.0,0.0,0.0,20.1939996357973,78.62387160324923,740.4462609964552,0.0,161.76499081293701,-16.204809298978574,-12.331189888391368,-59.312488901132284,-76.34808969363502,-71.13722163870267,-50.46078572188564,0.0,0.5254237288135594,87,17,28,0,2,2,2,2,4,14,15,28,39,0,2,2,6,-1.438100000000009,320.11010000000033,0,1,0,0,0,3,2,1,0,0,10,10,0,0,1,3,11,2,0,1,1,2,0,0,0,0,0,10,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5280343,O=c1c(O)c(-c2ccc(O)c(O)c2)oc2cc(O)cc(O)c12,0,13.007549996850589,-1.2393322992777354,13.007549996850589,0.6848762282690857,0.43419044029909815,302.23799999999983,292.158,302.0426526600003,112,0,0.29343434782464395,-0.5076781655726544,0.5076781655726544,0.29343434782464395,0.9545454545454546,1.8181818181818181,2.5454545454545454,2.603480266579981,1293.0003858469347,23.90289472496368,20.357738033247042,10.357738033247042,15.19070688765087,10.174234614174768,5.6329931618554525,4.110055234471418,4.110055234471418,2.7247448713915894,2.7247448713915894,1.7690954324150507,1.7690954324150507,-3.35,9607464.799664656,6.184538506369604,4.589937946900745,1.9568672179507631,136.59072583464337,29.961191892589408,22.46826802267485,17.25927108544225,11.178302225184446,7.155998286163171,0.0,4.794537184071822,0.0,0.0,0.0,0.0,18.127256122989884,17.648288907023584,6.853792780851101,36.81498467344052,10.969244356107037,7.155998286163171,0.0,0.0,0.0,0.0,40.435421114288836,0.0,40.07125807699096,5.428790391900541,0.0,28.747559166419524,0.0,32.70003924169924,0.0,0.0,6.853792780851101,39.42378165944164,0.0,22.292943266678478,0.0,131.36,86.68138636331501,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.54404095553606,18.42694200406762,81.10710313165671,0.0,13.007549996850589,20.463587072799736,-2.6271802826068695,-4.832519853416316,-4.118540065283841,0.0,0.0,0.0,0.0,22,5,7,0,0,0,2,1,3,7,5,7,6,0,0,0,3,1.988,76.244,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5401,COc1cc2nc(N3CCN(C(=O)C4CCCO4)CC3)nc(N)c2cc1OC,0,13.80950546037369,-4.341166882201564,13.80950546037369,0.4643897723534578,0.8306226664509899,387.43999999999966,362.2400000000001,387.19065428000073,150,0,0.25132157055612514,-0.4928420722519821,0.4928420722519821,0.25132157055612514,1.3571428571428572,2.142857142857143,2.8214285714285716,2.0650835260579155,1817.9549022950948,41.46373713620825,38.36906113935524,13.369061139355242,23.2771636574118,19.532970982873202,7.138543791873291,4.889627672567973,4.889627672567973,3.2836341692087734,3.2836341692087734,2.061765584327601,2.061765584327601,-2.81,23301525224.241127,5.210026395670458,7.667499948279405,3.3722412674068383,198.15715615908525,29.730125298827375,11.897880804785016,14.322707823224212,5.948339280986494,5.907179729351506,0.0,4.794537184071822,4.9839785209472085,4.9839785209472085,0.0,0.0,18.788268510322055,49.45810112698905,45.63701820261564,53.35625699404346,28.576306720254085,0.0,14.867866772744893,0.0,18.825867829608747,57.24195560452199,12.08483741532659,0.0,11.49902366656781,20.09335261417685,11.766202058821523,11.49902366656781,0.0,73.47739342699163,9.53140013787187,0.0,44.27329659457384,12.08483741532659,2.8236841566564013,10.902924932081056,0.0,103.04,133.12790096712973,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.178545903294562,34.35113094857146,215.63033714488984,0.0,19.600225003535932,-0.9702288538458619,-1.584764146723143,-8.026403550869711,-2.5599890425521394,-12.191440224253,-20.960754928426844,-6.936981401755073,0.5263157894736842,28,2,9,0,2,2,1,1,2,8,1,9,7,0,2,2,4,1.0567999999999995,104.82140000000004,0,0,0,1,0,2,0,0,0,0,1,1,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,1,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9832383,Cc1cc(F)ccc1[C@H]1CNCCN1C(=O)N(C)[C@H](C)c1cc(C(F)(F)F)cc(C(F)(F)F)c1,0,15.010201289917564,-6.313305296963049,15.010201289917564,1.1711299133149335,0.5405530710484014,491.4509999999997,467.2590000000001,491.18075992800067,186,0,0.4159363418060373,-0.3209379550071795,0.4159363418060373,0.3209379550071795,1.2647058823529411,1.9411764705882353,2.5,2.860601707298466,1989.3208304942789,46.23760430703402,39.895640388028326,15.895640388028326,25.28824556991625,20.263067778264016,8.315854182764058,6.032322144674794,6.032322144674794,3.7818409040386154,3.7818409040386154,2.3120167042492596,2.3120167042492596,-2.8199999999999985,112099976626.3654,8.68612909583587,9.438036683761624,5.45429411375358,225.66417751120247,15.109632814989332,7.229062919374096,0.0,0.0,0.0,18.383711547225023,0.0,9.184952231746642,26.34249028604892,0.0,6.042418707663295,60.60623224799882,44.286267183442966,36.870273481795486,68.46673138803887,6.031114512338072,0.0,15.109632814989332,0.0,38.0921662061776,26.466405953230083,69.88899054551064,0.0,0.0,5.309813353288376,35.52744251779556,0.0,0.0,42.29733992726911,12.35259703488695,12.669112958341575,78.232381304395,36.25451224597977,1.4118420783282006,0.0,0.0,35.580000000000005,155.58831003224577,32.507786026290965,4.39041504767482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.568530314073037,297.02800127632565,0.0,11.690870811287471,-1.1711299133149335,-13.30263485163757,-2.2220226159213388,-27.989910796258393,-12.626610593926099,-28.239896649888074,0.0,0.43478260869565216,34,1,4,0,1,1,2,0,2,2,1,11,6,0,1,1,3,5.931020000000005,111.47370000000005,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +4463,Cc1ccnc2c1NC(=O)c1cccnc1N2C1CC1,0,13.213574263038545,-3.211460104875284,13.213574263038545,0.06943263416477707,0.861716125086419,266.3039999999998,252.19199999999998,266.1167610680003,100,0,0.259040848923194,-0.3184743028957275,0.3184743028957275,0.259040848923194,1.5,2.35,3.15,2.256150993978392,1261.217863622602,25.919767061838233,23.697102672463693,9.697102672463695,15.335128648705794,12.413798920481701,5.466585324981743,3.919006946408316,3.919006946408316,2.7313549027620763,2.7313549027620763,1.82594727959641,1.82594727959641,-2.43,14887019.312605951,4.0366214090731125,4.030422454929436,1.5916576426488964,135.93970314082145,10.209723084138854,5.817862777835028,7.229704856163229,0.0,5.907179729351506,0.0,4.794537184071822,9.967957041894417,0.0,0.0,0.0,43.288449534641316,27.958992783170704,19.475389103401877,24.02624049261288,23.230291559705122,0.0,9.967957041894417,0.0,25.615634388304084,10.209723084138854,41.5999495280134,0.0,0.0,10.209723084138854,17.323111830353618,0.0,0.0,21.89302923959557,0.0,6.851892117295679,46.487151200337465,30.473046544619407,1.4118420783282006,0.0,0.0,58.120000000000005,90.44587547602262,4.794537184071822,0.0,5.309813353288376,4.899909730850478,0.0,0.0,0.0,0.0,9.967957041894417,19.23170330854106,112.41565243921644,0.0,20.970520597127738,-0.06943263416477707,-2.8629469009826147,-3.2301563681027954,-5.802795033908625,-7.876048660976736,-3.211460104875284,0.0,0.26666666666666666,20,1,5,1,1,2,0,2,2,4,1,5,2,1,0,1,4,2.6512200000000004,76.32520000000002,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +6918182,N#Cc1c(N(CC(=O)[O-])CC(=O)[O-])sc(C(=O)[O-])c1CC(=O)[O-],0,11.308759448223732,-4.0608302626606205,11.308759448223732,0.3921990740740744,0.44205912168174216,338.253,332.2050000000001,337.9866804716401,122,0,0.11059199090340928,-0.5498044794385336,0.5498044794385336,0.11059199090340928,1.0869565217391304,1.608695652173913,1.9565217391304348,4.167774077507233,926.9222720038991,23.11036598507973,16.568661805174685,11.38515838610241,12.949371280330688,8.185668643319232,6.002165224246958,3.4319890897673777,4.431059856530158,2.02319655230744,3.1781590060384497,1.357497456939454,2.3216770148719434,-3.1300000000000003,706184.8549124496,10.571796873517478,7.229819210346441,4.416702739307269,140.3965630667194,44.50416804650058,11.07030328948014,0.0,0.0,0.0,0.0,0.0,0.0,5.261891554738487,11.336785877934737,0.0,5.563451491696996,15.083747301621667,46.82526814256662,47.828809652671445,40.21508900643,5.261891554738487,0.0,0.0,6.372924901329379,17.893629099482368,16.00405017709529,0.0,6.069221312792274,25.326019310213297,5.001081976687867,0.0,11.336785877934737,36.870940520439284,20.756536453544843,11.33111286753076,29.02313869818843,0.0,0.0,0.0,0.0,187.54999999999998,80.48569318433704,44.86614987038859,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,0.0,8.224551337021321,44.6227519526329,-0.3921990740740744,42.55668246619635,52.55673584866045,-2.854679705215419,-10.307571439069454,1.0894817649281932,-3.7328746220710505,-8.121660525321241,0.0,0.25,23,0,10,0,0,0,0,1,1,11,0,11,8,0,0,0,1,-5.418119999999998,64.30250000000001,3,0,0,0,1,0,0,0,4,4,4,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +5510,Cc1cccc(N(C)C(=S)Oc2ccc3ccccc3c2)c1,0,8.440982720248593,-3.389779305349067,8.440982720248593,0.04837117871840113,0.6216585639540908,307.41799999999967,290.282,307.1030851640005,110,0,0.26864945603022583,-0.431533102045648,0.431533102045648,0.26864945603022583,1.0454545454545454,1.9090909090909092,2.727272727272727,2.3314299076764073,1545.400072219763,30.099411626599817,27.763710176427686,11.58020675735541,17.655383413726195,14.283192828945731,6.191441119409594,3.881110731391234,4.230351583892956,2.434418740817386,2.7003262599857747,1.4849743913029112,1.659594817553772,-2.3899999999999992,92962631.82016353,4.555863847702749,6.1594002436145106,3.096627284542339,159.38164585025393,9.636772684650527,5.749511833283905,0.0,0.0,5.1745624433251,0.0,0.0,0.0,0.0,0.0,42.29693095364306,59.57534031162214,20.887764511987125,15.078344117872419,28.039758408693785,33.85227058998495,0.0,0.0,0.0,6.851892117295679,11.875736631132725,72.03005727599324,0.0,5.749511833283905,9.636772684650527,5.687386274683562,5.749511833283905,12.217873443046695,12.150389343607346,0.0,6.851892117295679,28.86634694659073,66.46660578429623,0.0,10.772448428929591,0.0,12.47,113.24168527379334,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,0.0,40.2576318517405,141.03033811222923,5.059602597211725,0.04837117871840113,-2.122656088625379,-2.0351416816878434,-0.8804673065213742,-9.557121432055991,0.0,-6.54292537926876,0.0,0.10526315789473684,22,0,2,0,0,0,3,0,3,2,0,3,4,0,0,0,3,4.948320000000003,96.75600000000003,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +71399,CN1CCN(C2=Nc3ccccc3Oc3ccc(Cl)cc32)CC1,0,8.622831685143193,-3.8678913401780486,8.622831685143193,0.23785068657092445,0.7369928778519519,327.8149999999997,309.67100000000005,327.1138398760005,118,0,0.15264513990785067,-0.45432313146929804,0.45432313146929804,0.15264513990785067,1.173913043478261,2.0,2.8260869565217392,2.2464486601440807,1492.0994813366112,31.57446760021749,29.12785354997296,11.883782495991419,18.361837655013193,15.136084908968309,6.514049381977536,4.226343582709285,4.604308055718513,2.7865462807953176,2.975528517299931,1.8403741619835943,1.9821108393620543,-2.0399999999999996,237963744.6921695,4.742871880341803,5.870760385193409,2.799077045717136,165.7877579905581,14.536682415501005,17.272517893724736,5.749511833283905,0.0,0.0,0.0,0.0,4.992404732635669,0.0,0.0,23.685777305559107,37.187920438598724,40.605381944196665,20.641795609569414,29.410516964864005,23.123945950673345,0.0,9.799819461700956,4.992404732635669,0.0,32.96326563754602,52.88301575908138,0.0,11.49902366656781,4.736862953800049,5.687386274683562,11.49902366656781,11.600939890232516,48.598704885004246,0.0,0.0,30.23710550276095,47.28933568627873,5.022633313741326,0.0,0.0,28.07,113.76822085448656,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.992404732635669,41.01145685509654,154.03585171702593,6.062525265756235,3.134295706570387,-0.7603412383471906,-1.7079894573570162,-2.870213621714118,-6.188239172724578,0.0,-19.178111421431908,0.0,0.2777777777777778,23,0,4,0,2,2,2,0,2,4,0,5,1,0,1,1,4,3.7714000000000025,93.23500000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2763,CC(C)(Oc1ccc(C2CC2(Cl)Cl)cc1)C(=O)O,0,12.1451895370943,-3.9133819873113866,12.1451895370943,0.8969579606533966,0.8615348244596426,289.15799999999973,275.046,288.03199966800037,98,0,0.3469527260260042,-0.47830431383737004,0.47830431383737004,0.3469527260260042,1.7222222222222223,2.3333333333333335,2.7777777777777777,2.8557279701337968,913.0872538407763,25.45566544670048,22.480673817410043,9.992531709446952,14.091258367845304,11.352709344400816,5.200389999955408,3.349222958698858,4.676580476145885,1.9281480874780652,2.4950947969919066,1.0170540847111944,1.3950185577204224,-0.9300000000000002,2603170.655628305,4.286149891942994,4.318692851874454,2.7279289663210857,135.41225756273056,9.84567114490726,10.082865946769346,5.601050810983688,0.0,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,23.20187978046503,12.08483741532659,37.72499804294432,18.230784690895057,5.483034224680881,32.460069559191936,29.171185068416882,1.4311996572326342,0.0,0.0,35.90507174575294,0.0,29.733126322350174,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,23.20187978046503,21.01251840352819,4.794537184071822,0.0,49.35397954319371,24.16967483065318,0.0,1.4311996572326342,0.0,46.53,77.35701518933887,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,47.18980362171061,110.24562151970905,11.60269254580552,12.1451895370943,3.5591392843868492,-4.810339947964783,-6.2059715923406396,-4.745576971529351,-2.7161436419787788,-7.685721844293274,0.0,0.46153846153846156,18,1,3,1,0,1,1,0,1,3,1,5,6,1,0,1,2,3.589800000000003,70.57980000000003,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +135413539,CCCCCN=C(N)N/N=C/c1c[nH]c2ccc(OC)cc12,0,8.329271252198117,-4.1822608729903195,8.329271252198117,0.17160043084805787,0.3177703188659663,301.39399999999955,278.21,301.19026035600064,118,0,0.20894577602389156,-0.4967427587631596,0.4967427587631596,0.20894577602389156,1.7727272727272727,2.772727272727273,3.6363636363636362,2.7973331902672105,1518.62459118323,35.62687384302478,33.64431626796365,10.644316267963653,19.869585699081966,16.71235025671355,5.4234958747137165,3.338810009972824,3.338810009972824,2.0393872575818603,2.0393872575818603,1.2260740753136565,1.2260740753136565,-2.4999999999999996,665831442.6829544,3.526952041220769,8.067817728729086,4.245377589663622,162.55239212231513,15.433583199755574,5.749511833283905,5.6473683133128025,5.959554568743835,0.0,0.0,4.992404732635669,5.418816146392429,5.101407525739723,0.0,19.597741919954437,24.500181024319264,41.47295832444076,26.936190239321785,36.428643834347035,23.053131719561897,0.0,10.39581941662168,15.813529234101665,25.970666821283817,13.534812143198533,29.86360282550164,0.0,5.749511833283905,15.87539607591875,0.0,5.749511833283905,0.0,30.662022200908627,0.0,0.0,57.57853088021505,34.393963592180036,5.6473683133128025,10.902924932081056,0.0,87.79,109.31025846494848,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,14.830675212175441,31.691780880546972,182.8051334161636,0.0,3.167499902615134,2.572920510119821,-2.6458276112691665,-2.6301855598932127,-2.8497624243818658,-14.669677421149494,-7.856096477985465,-3.227337667552672,0.375,22,4,6,0,0,0,1,1,2,3,3,6,9,0,0,0,2,2.6048999999999998,91.59480000000005,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,2,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5484727,CCOC(=O)[C@H](CCc1ccccc1)N[C@@H](C)C(=O)N1[C@H](C(=O)O)C[C@H]2CCCC[C@@H]21,0,15.154368454458863,-5.639236649134967,15.154368454458863,1.3077957960082778,0.5851031637925748,430.54499999999956,396.2730000000002,430.24677218800093,170,0,0.3259401545385409,-0.4797118379349922,0.4797118379349922,0.3259401545385409,1.4838709677419355,2.2903225806451615,3.032258064516129,2.760676725815834,2143.7328543251074,52.265066523458984,48.93566864331923,14.935668643319232,28.216043585506018,24.69824074610531,7.842778860141485,5.175832453270819,5.175832453270819,3.3239227347837876,3.3239227347837876,2.1146123628535367,2.1146123628535367,-2.41,2552110490521.56,5.216593395893796,10.754075842651565,5.641737617465946,231.6044639032942,14.745580875757739,13.447627015027491,0.0,5.907179729351506,1.4311996572326342,11.938610575903699,14.898887721432018,4.794537184071822,0.0,0.0,42.95794334097523,57.025817918298316,34.803822147924265,27.65522182913835,69.50539857289802,17.845790305255207,1.4311996572326342,10.209723084138854,5.893957685363079,82.38582841729558,6.558985242916289,35.77554503001347,0.0,0.0,5.309813353288376,0.0,0.0,0.0,58.48506334352776,25.493399407344892,5.893957685363079,101.36905893171156,30.212093538316473,1.4118420783282006,1.4311996572326342,0.0,95.94000000000001,158.66982976498252,10.959832924313863,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,45.33655697683768,287.58153198055646,0.0,41.10907924505473,1.6794297883802822,-1.934917425493292,-15.037978226482515,-29.382126803497826,-34.31288763237954,-13.952130926138338,0.0,0.625,31,2,7,1,1,2,1,0,1,6,2,7,11,1,1,2,3,2.7733000000000008,116.41450000000007,1,0,0,0,0,0,0,0,1,1,3,2,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4843,NC(=O)CN1CCCC1=O,0,11.769757653061225,-3.5820601851851865,11.769757653061225,0.5293518518518514,0.5423834786401206,142.1580000000001,132.078,142.07422756,56,0,0.23654727958606828,-0.36813401903911147,0.36813401903911147,0.23654727958606828,2.1,2.9,3.4,3.4686246147636837,460.66416945796243,16.309401076758505,14.710923771927643,4.710923771927642,8.630768281804421,7.197102672463695,2.302675481463779,1.4193221231919133,1.4193221231919133,0.7476752711842325,0.7476752711842325,0.4183602585402456,0.4183602585402456,-1.06,8764.082290557619,1.571153344803631,2.682444775524748,1.4623920173718192,73.14671727974176,10.619626706576751,0.0,2.8236841566564013,11.814359458703011,0.0,0.0,9.589074368143644,0.0,0.0,0.0,0.0,6.372924901329379,21.09433592266664,9.238376796656386,23.378826974161804,11.814359458703011,0.0,4.899909730850478,5.719716975726273,12.745849802658759,12.99371936863189,0.0,0.0,0.0,5.719716975726273,0.0,0.0,0.0,29.707988558185377,9.589074368143644,0.0,23.711918252020517,0.0,2.8236841566564013,0.0,0.0,63.400000000000006,48.17355533657041,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.78975260601816,72.2098724489796,0.0,22.617837773998488,0.0,-0.7293424036281175,-3.8648842592592585,0.0,-6.834710411942555,-7.065439814814816,0.0,0.6666666666666666,10,2,4,0,1,1,0,0,0,2,1,4,2,0,1,1,1,-0.9059000000000004,35.0084,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +444020,OCC(CO)N[C@H]1C[C@](O)(CO)[C@@H](O)[C@H](O)[C@H]1O,0,8.787708333333333,-4.902708333333336,8.787708333333333,1.3707823129251708,0.24788620199052747,267.27799999999985,246.10999999999996,267.1318020120003,108,0,0.21111509798448014,-0.39466280065146053,0.39466280065146053,0.21111509798448014,1.4444444444444444,2.2777777777777777,2.8333333333333335,4.682190176080385,885.1208776262926,31.52709773749546,29.304951628747,8.304951628747,17.329321740838,13.93103424087048,4.126082612123479,2.908761865766537,2.908761865766537,1.8024109746717045,1.8024109746717045,0.9796705466428753,0.9796705466428753,-0.32,45699412.70499076,3.287769955587115,6.218678778350365,2.9788868264114963,134.29652629550299,41.07147069103886,19.172928943211865,0.0,10.01839760062844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.372924901329379,10.130168136860306,45.48245178575073,54.993360646291585,0.0,10.01839760062844,5.309813353288376,0.0,42.249814729862315,19.676955728748865,0.0,0.0,0.0,5.309813353288376,0.0,0.0,0.0,101.33390049566077,0.0,0.0,24.192786131542235,0.0,1.4118420783282006,0.0,0.0,153.64,67.23658381189955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.761657337750485,29.250100909169504,164.8088492063492,0.0,0.0,25.187720143613,-4.7009800170068035,0.0,-9.529177295918373,-18.691402116402116,-13.07500992063493,0.0,1.0,18,8,8,1,0,1,0,0,0,8,8,8,12,1,0,1,1,-4.492399999999994,59.55630000000005,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +51353551,CC(C)N(C(=O)CN1C(=O)[C@H](NC(=O)Nc2cccc(C(=O)O)c2)C(=O)N(c2ccccc2)c2ccccc21)c1ccccc1,1,15.592518424253177,-5.137925476686354,15.592518424253177,0.5417985785975961,0.2409684104887559,605.6510000000014,574.4030000000002,605.2274337120008,228,0,0.3352567440932377,-0.4776383259761984,0.4776383259761984,0.3352567440932377,0.9777777777777777,1.6444444444444444,2.3333333333333335,2.0802911561374615,3169.3956483079246,58.837015933633836,52.68555772028297,21.685557720282972,34.447829275626596,26.934308723605092,11.631633242141316,7.892377728375495,7.892377728375495,5.1929400041440665,5.1929400041440665,3.423998528578676,3.423998528578676,-5.969999999999998,1907812731413766.2,10.299963918413937,13.126203568638784,6.518037918196972,302.98421438617396,20.628344628534443,6.496859684315945,8.841576625006047,5.907179729351506,13.245559115935645,12.000419800289922,24.18343101391642,9.589074368143644,0.0,0.0,54.38176836896965,68.08555260356101,31.304602629421648,47.09491227680899,70.28641784088893,58.158890361762246,1.4311996572326342,5.309813353288376,0.0,25.739569171290647,26.506402230155754,114.32698822963636,0.0,0.0,25.319355899128187,33.231468557489634,0.0,0.0,53.363411800466885,14.383611552215466,0.0,62.4430124831264,108.76353673793935,2.8236841566564013,1.4311996572326342,0.0,139.36,230.0416633461335,13.701350036654302,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,38.523847718144545,262.35674548644147,0.0,70.6122684064795,1.4917061572628731,-10.622362653518724,-10.84893600886393,-40.64449151277157,0.0,-14.261596541696257,0.0,0.14705882352941177,45,3,11,0,1,1,4,0,4,6,3,11,10,0,0,0,5,5.028000000000004,170.79069999999965,0,0,0,0,1,0,0,0,1,1,5,4,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +4893,COc1cc2nc(N3CCN(C(=O)c4ccco4)CC3)nc(N)c2cc1OC,0,13.387723052966283,-3.999795472526581,13.387723052966283,0.38294654667422456,0.7265621787893097,383.40799999999973,362.2400000000001,383.1593541520006,146,0,0.2891676512662314,-0.4928420722519821,0.4928420722519821,0.2891676512662314,1.2857142857142858,2.0714285714285716,2.75,2.076571294848826,1809.9465458635577,37.77313821296676,34.36906113935524,13.369061139355242,21.91326246346038,17.53297098287321,7.138543791873291,4.889627672567973,4.889627672567973,3.2836341692087734,3.2836341692087734,2.061765584327601,2.061765584327601,-3.49,7212206364.720206,5.7568646685450275,7.2590390510378,3.148977667080556,190.82121509499078,29.410413282080675,7.188621334005249,20.08295524209865,5.948339280986494,5.907179729351506,0.0,4.794537184071822,4.9839785209472085,4.9839785209472085,0.0,0.0,18.127256122989884,37.41608165939187,50.50547428128618,47.55351075261587,28.576306720254085,0.0,14.867866772744893,0.0,0.0,50.6829703616057,36.16913688436836,0.0,11.49902366656781,20.09335261417685,11.766202058821523,11.49902366656781,0.0,60.83839015712535,0.0,0.0,36.599197170180446,34.826040402547264,2.8236841566564013,10.902924932081056,0.0,106.95,126.92743763279596,4.794537184071822,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,9.967957041894417,42.758973568544036,182.88002812574956,0.0,19.811536074286035,-0.8934819944504009,-1.4260516091887327,-8.336757338745857,-4.514362049742173,-1.0687128212917172,-15.955385226379102,-6.8301464935709655,0.3157894736842105,28,2,9,0,1,1,1,2,3,8,1,9,7,0,1,1,4,1.7845999999999997,103.87890000000003,0,0,0,1,0,2,0,0,0,0,1,1,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,1,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +656684,COc1cc(N)c(Cl)cc1C(=O)NC1CCN(CCCOc2ccc(F)cc2)CC1OC,0,14.20158477658749,-5.060932844645867,14.20158477658749,0.47133366285421374,0.43603493823663086,465.95299999999975,436.7210000000003,465.1830623080008,174,0,0.2549087827502481,-0.4958418378607584,0.4958418378607584,0.2549087827502481,1.53125,2.375,3.125,2.4750556784683946,2070.346934700669,48.35892465059366,44.23056289437378,15.986491840392237,26.81361391195559,22.240115062632498,8.27643874914185,5.183575151202254,5.561539624211481,3.190897759419962,3.4643954213974273,1.8811310980000933,2.022867775378553,-2.5499999999999994,562131080760.5936,6.523147971410998,11.35500701174981,6.245836345142334,233.03588980117243,30.140028921265273,17.316244507613703,4.235526234984602,0.0,5.907179729351506,0.0,4.794537184071822,4.39041504767482,0.0,0.0,11.600939890232516,42.957943340975234,46.27853578119595,63.90045617594396,63.270789788557174,23.195505894267583,0.0,10.209723084138854,0.0,24.84376029795839,45.845186189355566,52.65781789246398,0.0,11.49902366656781,20.503256236614746,10.077801322358383,11.49902366656781,11.600939890232516,63.03046916913091,4.736862953800049,5.817220841045895,58.743560938853356,36.25451224597977,9.258159548725928,0.0,0.0,86.05,156.65007713451973,9.184952231746642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.210588861400147,51.47618858564287,265.92525909775725,5.965163161655537,12.873872312648219,-2.5277904372849926,-3.420093074937569,-7.647241812932479,-14.14539806148503,-14.802116783389232,-19.384264193856374,-8.059612430397697,0.43478260869565216,32,3,7,0,1,1,2,0,2,6,2,9,12,0,1,1,3,3.358100000000002,122.03660000000002,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54677972,Cc1cc(NC(=O)C2=C(O)c3ccccc3S(=O)(=O)N2C)no1,0,13.315017668351903,-5.486805253737294,13.315017668351903,0.3746329365079375,0.859388856248687,335.3409999999998,322.237,335.0575915160004,120,0,0.29325192949976703,-0.50486154887111,0.50486154887111,0.29325192949976703,1.565217391304348,2.391304347826087,3.0869565217391304,2.415750449709287,1413.0400405404198,27.70422411221441,23.791130529283052,11.60762711021078,16.29467074195144,11.988474160644888,7.073075603481706,4.028560104852484,5.752089446642772,2.6553906841407895,4.140775189827158,1.6940277178441234,2.8596545848187436,-2.8100000000000005,29416446.24837352,6.00409748128961,5.12745478307545,2.343543844515755,150.01867825363658,14.941716481368935,5.760247418874442,18.685909040875234,0.0,17.361670539991724,0.0,9.099753175368056,8.417796984328938,0.0,0.0,17.241500672452034,18.93672953262227,26.806248436663854,11.749276256368875,39.33442349268196,27.507498532250292,1.4311996572326342,9.46187924842168,0.0,11.747375592813455,12.285640253570621,47.23283176194374,0.0,0.0,5.309813353288376,5.817862777835028,0.0,0.0,35.87149105349158,14.817828337479405,6.851892117295679,26.402043028443853,45.327711263863435,1.4118420783282006,7.19036452888881,0.0,112.74,97.76874877858597,13.212334168400758,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,14.788566385206007,17.921385853433254,130.1252137816378,0.0,11.94638477687269,7.04454496998779,-2.6129216794742587,-5.32529733783499,-5.470866512666794,0.0,-6.803586078118282,-5.486805253737294,0.14285714285714285,23,2,8,0,1,1,1,1,2,6,2,9,5,0,0,0,3,1.48242,80.80930000000004,0,1,1,0,0,1,0,0,0,0,1,1,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +5362129,CCOC(=O)[C@H](CCc1ccccc1)N[C@@H](C)C(=O)N1[C@H](C(=O)O)C[C@@H]2CCC[C@@H]21,0,14.974521515683353,-5.522049149134967,14.974521515683353,1.2836059811934624,0.6003163359035135,416.5179999999996,384.26200000000017,416.2311221240009,164,0,0.32594015453863584,-0.4797118379349922,0.4797118379349922,0.32594015453863584,1.5333333333333334,2.3666666666666667,3.1,2.7047206448890058,2040.7322945391354,49.765066523458984,46.43566864331923,14.435668643319232,26.966043585506018,23.44824074610531,7.592778860141485,5.050832453270819,5.050832453270819,3.2614227347837876,3.2614227347837876,2.0833623628535367,2.0833623628535367,-2.41,777669072367.2345,5.142425006421142,10.066559581820979,5.007189124717851,222.429580788562,14.745580875757739,13.447627015027491,0.0,5.907179729351506,1.4311996572326342,11.938610575903699,14.898887721432018,4.794537184071822,0.0,0.0,36.58501843964585,57.025817918298316,32.06230503558382,27.65522182913835,66.76388146055758,17.845790305255207,1.4311996572326342,10.209723084138854,5.893957685363079,76.0129035159662,6.558985242916289,35.77554503001347,0.0,0.0,5.309813353288376,0.0,0.0,0.0,58.48506334352776,25.493399407344892,5.893957685363079,92.25461691804179,30.212093538316473,1.4118420783282006,1.4311996572326342,0.0,95.94000000000001,152.29690486365314,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,43.965798420667454,269.07633038679717,0.0,40.81075359523558,1.742741745107418,-1.8983632122563863,-14.438087779027136,-28.539312352355765,-28.47716805430244,-13.776894329198443,0.0,0.6086956521739131,30,2,7,1,1,2,1,0,1,6,2,7,11,1,1,2,3,2.3831999999999995,111.79750000000007,1,0,0,0,0,0,0,0,1,1,3,2,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35370,Cc1cn([C@H]2C[C@H](N=[N+]=[N-])[C@@H](CO)O2)c(=O)[nH]c1=O,0,12.548882983749053,-3.955457294028724,12.548882983749053,0.5043617724867726,0.4454004294146897,267.2449999999998,254.14099999999996,267.09675389600034,102,0,0.32995848935617655,-0.3936655723867071,0.3936655723867071,0.32995848935617655,2.1052631578947367,2.9473684210526314,3.6315789473684212,3.12391380317766,1125.816261236577,25.29252873988395,21.869061139355242,8.869061139355242,14.215178470694319,10.867723398623353,4.512261512659532,3.0231941163408034,3.0231941163408034,1.905605081600574,1.905605081600574,1.1522881390959023,1.1522881390959023,-2.09,2611676.115703514,4.480081934998562,5.268544354094518,2.525949955530779,125.03838069394806,9.84567114490726,6.203952809936554,1.4118420783282006,1.4311996572326342,5.559266895052008,5.689743398203474,14.338640102092427,4.794537184071822,0.0,0.0,5.114250125629398,12.383021116080931,31.245534588114918,25.51068851906702,26.335857341107875,0.0,1.4311996572326342,9.544102918020606,5.114250125629398,31.526680323861243,6.558985242916289,43.01727200994859,0.0,0.0,11.24901029325548,0.0,0.0,0.0,34.741006504576376,4.736862953800049,6.851892117295679,33.21867332083535,20.8762197045878,1.4118420783282006,10.442840646037716,0.0,133.07999999999998,70.61512548056537,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.134769963989072,28.189377806018552,104.82761731967427,0.0,26.132951745908542,6.371750296569244,3.4200338360716698,0.0,-3.8372330876795173,-13.471727135298568,-7.276726308578989,0.0,0.6,19,2,9,0,1,1,0,1,1,6,2,9,5,0,1,1,2,-0.19628000000000012,64.60650000000003,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,4,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23716436,O=C([O-])CCC/C=C\CC1C(O)CC(O)C1/C=C/C(O)COc1cccc(Cl)c1,0,11.38250802959984,-4.999216537063761,11.38250802959984,0.9430448152254447,0.3699130557409266,423.9129999999996,395.68900000000014,423.15798987591074,160,0,0.2110890673409633,-0.5501716638720137,0.5501716638720137,0.2110890673409633,1.5862068965517242,2.4482758620689653,3.206896551724138,3.2607346775451447,1843.3392306727612,45.679280085832076,41.82745421579241,14.583383161810861,25.154677497123217,20.842596124519723,7.495815726137362,4.497060441229538,4.8750249142387645,2.589123329538717,2.7781055660433305,1.530494989463919,1.6635619452067487,-1.8599999999999994,124089889928.1741,5.884047814709245,11.97711807830129,8.185021664002594,215.23989307624174,29.964352106034212,18.38851510315018,0.0,4.293598971697903,0.0,0.0,0.0,0.0,0.0,0.0,41.851645582038074,49.51291341367048,39.70792386242829,29.97989728411283,64.23331601028978,17.570245178184365,4.293598971697903,0.0,11.787915370726157,50.104678587496856,6.558985242916289,53.400595128536764,0.0,5.749511833283905,9.843390348640755,0.0,5.749511833283905,11.600939890232516,50.388368156737634,4.794537184071822,11.787915370726157,66.13358841090246,48.37796181479544,5.022633313741326,0.0,0.0,110.05000000000001,133.57099145091183,11.271823135082748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,53.529607163815776,234.34933966823607,5.769414214089172,11.38250802959984,22.423465646032696,0.0,-14.213723095470362,-14.534787448157203,-36.681861809726065,-4.299910760159714,0.0,0.5,29,3,6,1,0,1,1,0,1,6,3,7,14,1,0,1,2,1.8602999999999985,108.31940000000004,1,3,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +53232,CC[C@H](C)C(=O)O[C@H]1C[C@@H](C)C=C2C=C[C@H](C)[C@H](CC[C@@H]3C[C@@H](O)CC(=O)O3)[C@H]21,0,14.269462823019992,-5.774112811791385,14.269462823019992,2.327613330858055,0.671999391844661,404.54699999999946,368.2590000000001,404.25627425200094,162,0,0.3084308049809095,-0.46218776669279094,0.46218776669279094,0.3084308049809095,1.5862068965517242,2.5172413793103448,3.2758620689655173,2.942917011478074,2079.822403390205,52.585421958697395,50.04124145231931,14.041241452319316,27.91439055281629,25.337117307087386,7.428869016623521,5.1414115380582555,5.1414115380582555,3.240423023185008,3.240423023185008,2.0962212871831194,2.0962212871831194,-1.62,1667138627009.3972,4.457518904704791,9.460979947044212,5.302293787293074,224.74619680946103,14.58253409870731,12.160036053899976,0.0,1.4311996572326342,0.0,11.938610575903699,9.589074368143644,0.0,0.0,0.0,45.56378370728941,48.74667719147601,52.018880715628875,26.571451950663764,72.1481579328087,11.938610575903699,1.4311996572326342,0.0,29.46978842681539,83.88517195800895,0.0,23.729319768175966,0.0,0.0,0.0,0.0,0.0,0.0,36.71867250509351,19.06280027574374,29.46978842681539,113.62166734311654,23.729319768175966,0.0,0.0,0.0,72.83,149.02289072890403,17.813625705164963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.58253409870731,41.183197786169025,313.2369132500768,0.0,27.30282488365523,3.774755989242892,-2.51389925568993,-32.67985826452383,-7.302838194787149,-46.116669447827405,-18.70122896014667,0.0,0.75,29,1,5,2,1,3,0,0,0,5,1,5,11,0,1,1,3,4.195500000000004,110.83780000000007,0,1,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2202,O=C1c2c(O)cccc2Cc2cccc(O)c21,0,13.037558578987147,-2.7774768518518522,13.037558578987147,0.6761007180650036,0.6176487107650026,226.23100000000005,216.15099999999995,226.06299418,84,0,0.2931294155854412,-0.5071737823608236,0.5071737823608236,0.2931294155854412,1.0588235294117647,1.588235294117647,2.0588235294117645,2.6006766388685767,940.1685580200866,20.419767061838236,18.22474487139159,8.22474487139159,12.516178963484496,9.428869016623521,4.612372435695795,3.3623724356957947,3.3623724356957947,2.385310363079829,2.385310363079829,1.648883920822547,1.648883920822547,-2.2899999999999996,680350.1941139637,3.8756076659030727,3.350614029474251,1.322020471095095,112.18558552319335,10.217616382214425,11.49902366656781,0.0,5.783244946364939,2.8623993144652684,0.0,4.794537184071822,0.0,0.0,0.0,24.16967483065318,29.58466530004996,2.7415171123404405,19.35145432041531,25.978222015648004,5.783244946364939,2.8623993144652684,0.0,0.0,6.372924901329379,0.0,58.50831821276775,0.0,11.49902366656781,0.0,0.0,11.49902366656781,0.0,18.863260643044637,6.372924901329379,0.0,38.01441160022158,36.25451224597977,0.0,0.0,0.0,57.53,82.16351172702988,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,13.828467763827028,78.15068389392795,0.0,13.037558578987147,8.537808012093725,-2.707144746787603,-2.6318901171579734,-4.6928721025447215,-2.7774768518518522,0.0,0.0,0.07142857142857142,17,2,3,1,0,1,2,0,2,3,2,3,2,0,0,0,3,2.233000000000001,62.45210000000003,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3676,CCN(CC)CC(=O)Nc1c(C)cccc1C,0,13.304207294028716,-4.4726290863567675,13.304207294028716,0.8500784202569927,0.8489671904749567,234.34300000000016,212.16699999999994,234.173213324,94,0,0.23806613187559775,-0.324484604945174,0.324484604945174,0.23806613187559775,1.4705882352941178,2.1176470588235294,2.6470588235294117,4.234941169700242,1041.2015710038688,31.696152422706632,30.30267548146378,8.30267548146378,16.785468820183674,15.019371729481785,4.0721581339818265,2.5613831542833885,2.5613831542833885,1.4930091856049597,1.4930091856049597,0.817496439823749,0.817496439823749,-1.35,20709705.016803384,2.3695159159731154,6.4012209135305955,3.858200815473424,134.78956562445515,5.309813353288376,0.0,1.4118420783282006,5.907179729351506,0.0,0.0,9.694446914922299,0.0,0.0,0.0,31.831040357581244,37.824406586617236,27.619523173407078,13.350652465167045,34.99230894197464,11.594566004035068,0.0,4.899909730850478,0.0,27.407568469182717,24.800392406236213,29.254159106383874,0.0,0.0,5.309813353288376,5.687386274683562,0.0,0.0,30.297668513149816,4.794537184071822,13.703784234591359,53.616616897560014,18.127256122989884,1.4118420783282006,0.0,0.0,32.34,97.95659571668837,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.197771757902814,169.51954524816384,0.0,12.182151832955398,-0.8500784202569927,-4.602137818090198,-2.572888321995464,-3.971132772617259,0.0,-28.288793081492635,0.0,0.5,17,1,3,0,0,0,1,0,1,2,1,3,9,0,0,0,1,2.5837400000000006,72.33370000000005,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11476710,CCCCc1nc(Cl)c(CO)n1Cc1ccc(-c2ccccc2-c2nn[n-]n2)cc1,0,9.054820535480033,-4.18289909353126,9.054820535480033,0.22573164259582024,0.4636827559467827,421.91199999999975,399.73600000000016,421.15491058391075,154,0,0.21060679024870332,-0.39002109695724424,0.39002109695724424,0.21060679024870332,1.2333333333333334,2.066666666666667,2.8,2.1779196883723744,2031.4811377134638,40.05759526334293,36.46949433647284,15.225423282491295,23.461172961387824,18.716602256450262,8.186318438995626,5.201594841040981,5.559607928491298,3.4969532948781357,3.7604752640761454,2.27932978398844,2.482475206989163,-3.03,47391575835.97781,6.734717948133144,9.192446181505572,4.12564974432926,210.29810462258962,14.774589647199605,5.824404497999927,5.153109816892792,1.4311996572326342,0.0,0.0,10.426770191309735,10.082660329248245,0.0,0.0,73.16510657016394,23.063279376420365,30.770063082874294,34.526420409807315,33.89473787068183,11.600939890232516,1.4311996572326342,30.175211976650374,0.0,39.02651174851605,0.0,70.57424346274453,0.0,22.514758973090913,5.213385095654868,0.0,0.0,11.600939890232516,31.501834729335354,19.428769828561613,0.0,65.4654555840745,48.33934966130636,5.153109816892792,22.514758973090913,0.0,90.82000000000001,132.11551418435153,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,30.716920519966234,41.81806922703979,181.9732743908151,6.083194824630836,3.49236756107767,16.44244161137391,-4.903212351907862,-2.183368464619349,-8.504957433439575,-12.33560373432667,-11.286358625826294,0.0,0.2727272727272727,30,1,7,0,0,0,2,2,4,6,1,8,10,0,0,0,4,3.895900000000003,114.89280000000001,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2284,NCC(CC(=O)O)c1ccc(Cl)cc1,0,11.72756674995101,-3.7947326152683303,11.72756674995101,0.6908392909632985,0.8026316327602355,213.66400000000007,201.56799999999996,213.055656304,76,0,0.3035124956383034,-0.48121368109919593,0.48121368109919593,0.3035124956383034,1.8571428571428572,2.5714285714285716,3.142857142857143,4.1376601917997275,712.206476655774,20.825908934703556,18.64167464943691,7.397603595455366,11.600182628951858,9.123512806182234,3.698801797727683,2.0882431139448676,2.466207586954095,1.1833565897432619,1.3723388262478757,0.6706601808983612,0.7651512991506682,-1.06,177306.65425443416,2.965855798905343,4.97980295758765,3.0132151439158164,104.55251387783522,10.828525166833487,2.8236841566564013,0.0,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,0.0,23.685777305559107,24.14514859133953,17.770383779955502,11.855959126010259,25.063856537367414,17.570245178184365,1.4311996572326342,0.0,5.719716975726273,12.266882586692457,6.496859684315945,34.7557596360915,0.0,0.0,5.719716975726273,0.0,0.0,11.600939890232516,17.574973163375006,4.794537184071822,0.0,30.167161083921428,24.16967483065318,7.846317470397728,1.4311996572326342,0.0,63.32000000000001,65.20852417077802,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,28.19265070965353,91.35084106687943,5.621325498306318,11.72756674995101,2.796855876095295,-2.016407785336356,-5.808839915595868,-4.1573623708742735,-3.7947326152683303,-3.6914687263794423,0.0,0.3,14,3,3,0,0,0,1,0,1,3,2,4,5,0,0,0,1,1.857,55.50020000000002,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3476,CCC1=C(C)CN(C(=O)NCCc2ccc(S(=O)(=O)NC(=O)NC3CCC(C)CC3)cc2)C1=O,1,13.743543771657894,-6.529962417473078,13.743543771657894,0.9733862069488826,0.5417624275928407,490.62599999999964,456.35400000000027,490.22499118800096,186,0,0.32840989347473404,-0.3372681493763244,0.3372681493763244,0.32840989347473404,1.2941176470588236,2.0294117647058822,2.676470588235294,2.230640501434077,2399.807877743874,54.660254037844396,50.23834412478301,17.054840705710735,29.45491223658291,25.21289926859582,9.811321810896587,5.647009103931115,7.187964259886348,3.4168347500737735,4.533409963234374,1.988363907991222,2.6861090194383657,-2.88,7995973836382.766,6.266797012732963,11.03027833574833,6.370654601199023,248.89702515538764,10.619626706576751,0.0,4.235526234984602,0.0,15.930470882759089,12.062229024676144,9.694446914922299,22.72199096620671,0.0,0.0,25.78862164991795,74.20479264772788,50.98606203082018,20.98765305302526,69.53045001280586,27.99269990743523,0.0,20.234656051161362,5.893957685363079,69.70660170373073,12.99371936863189,40.87933538248871,0.0,0.0,15.334746320310884,9.589074368143644,0.0,0.0,50.298727306188596,21.190753238808785,5.893957685363079,100.47726759150764,40.21136736630949,4.235526234984602,0.0,0.0,124.68,177.70097009881107,22.8014085365444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.72904147626145,300.54743795019994,0.0,37.35476834778306,-2.778965697211218,-5.971614491343024,-6.948384406412629,-18.878721925252922,-27.313631770504553,-20.98092558978571,-6.529962417473078,0.5416666666666666,34,3,9,1,1,2,1,0,1,5,3,10,10,1,0,1,3,3.0740000000000016,128.52190000000004,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2 +155774,O=C(NCCNCC(O)COc1ccc(O)cc1)N1CCOCC1,0,13.207333115180736,-4.5738619667653335,13.207333115180736,0.975647185329378,0.48774191921086135,339.3919999999996,314.19200000000006,339.1794209000007,134,0,0.31710025933914276,-0.5079622349319175,0.5079622349319175,0.31710025933914276,1.5416666666666667,2.3333333333333335,3.0416666666666665,2.651836074171271,1402.853068910577,39.10192981664245,36.38288223881919,11.38288223881919,21.54641792964203,17.955040372801015,5.744116600873374,3.398290973360574,3.398290973360574,1.8480519039990368,1.8480519039990368,0.9733805695526913,0.9733805695526913,-2.03,3142754400.156345,4.1984354550862575,9.964547226017558,6.61111683593204,176.32534749572923,35.21087872724175,25.549869014762283,1.4118420783282006,1.4311996572326342,1.4311996572326342,6.031114512338072,0.0,4.794537184071822,0.0,0.0,0.0,24.16967483065318,37.967332646260616,36.42086594072632,56.09549331011742,6.031114512338072,2.8623993144652684,15.519536437427229,0.0,6.080018026949988,52.16125415032859,24.16967483065318,0.0,11.49902366656781,15.3564896603768,4.794537184071822,11.49902366656781,0.0,82.25231211714684,4.736862953800049,0.0,28.785929679574615,24.16967483065318,2.8236841566564013,0.0,0.0,103.29,115.46062162426489,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.954479336014474,39.208876104496355,205.66365944780608,0.0,12.23168592985136,5.2686518390304045,0.0,-2.391905083160491,-7.516646074978399,-4.44324048403797,-33.895538907844355,0.0,0.5625,24,4,8,0,1,1,1,0,1,6,4,8,10,0,1,1,2,-0.23669999999999924,88.26900000000003,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +57393422,CCOC(=O)[C@@H]1CC(=O)O[C@H](C)C/C=C/C=C/[C@H](O)[C@H](C)C[C@H](CC=O)[C@H](O[C@@H]2O[C@H](C)[C@@H](O[C@H]3C[C@@](C)(O)[C@@H](OC(=O)CC)[C@H](C)O3)[C@H](N(C)C)[C@H]2O)[C@H]1OC,0,15.710472760986292,-8.005084821691392,15.710472760986292,2.3663649185959876,0.1471626192482552,813.9790000000027,746.4430000000001,813.4510704440019,326,0,0.31177077054939206,-0.46568136620696476,0.46568136620696476,0.31177077054939206,1.1578947368421053,2.0526315789473686,2.736842105263158,3.623029297346165,4142.324889358957,100.47432701575865,94.07093795245791,27.070937952457903,53.29714809850354,46.84042060497595,13.61567573358436,9.160228638296209,9.160228638296209,5.587570953148214,5.587570953148214,3.463633668900205,3.463633668900205,-2.8,3.857882415398623e+40,10.10650826446281,22.537404618130488,13.352105728761762,431.0302555273859,62.91577511864434,31.47407561033511,18.612174764023784,4.293598971697903,0.0,17.90791586385555,14.383611552215466,0.0,0.0,0.0,37.91207121873362,66.37195465909842,90.10151142334934,84.02978011228291,160.12802453490315,24.170128026186788,4.293598971697903,4.899909730850478,17.681873056089238,165.07205648800308,27.54859150236337,24.208286984142266,0.0,0.0,0.0,0.0,0.0,0.0,155.10991506337723,57.073052366687676,17.681873056089238,173.92934182393986,24.208286984142266,0.0,0.0,0.0,206.04999999999998,263.58084578763527,39.745762603888494,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,39.010739342321884,76.07604719224733,625.1539679146899,0.0,56.7748619009604,11.937223970788672,-6.101784884852584,-33.85722494849482,-19.093913220333476,-115.49320262182067,-55.29792886478832,-5.938665912816112,0.8048780487804879,57,3,16,0,3,3,0,0,0,16,3,16,25,0,2,2,3,2.6249000000000065,205.25639999999922,0,3,0,0,0,0,0,0,0,0,4,4,0,0,0,1,0,0,0,1,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +443879,Cc1ccc(O)c([C@H](CCN(C(C)C)C(C)C)c2ccccc2)c1,0,9.67975670823885,-5.305102631330316,9.67975670823885,1.2868653867143218,0.7423399651919789,325.4959999999994,294.248,325.24056461200087,130,0,0.2931083005994741,-0.5076519060056355,0.5076519060056355,0.2931083005994741,1.1666666666666667,1.9166666666666667,2.5416666666666665,3.7745067241345027,1716.4450658559342,44.21266028065168,42.85546188596382,11.855461885963821,23.966208032736297,21.533192828945733,6.124944538481869,4.098551336231848,4.098551336231848,2.518011802736391,2.518011802736391,1.5312222692409339,1.5312222692409339,-1.7999999999999994,28049542835.40474,3.396457019920752,8.343088615408353,4.607885943417241,190.33274165525577,5.1088081911072125,5.749511833283905,0.0,0.0,1.4311996572326342,0.0,4.899909730850478,0.0,0.0,0.0,47.86038244534006,58.735115371484,53.64988234950425,10.96606844936176,46.23156487621384,0.0,1.4311996572326342,4.899909730850478,0.0,58.56212810987014,6.496859684315945,65.02970413639734,0.0,5.749511833283905,0.0,0.0,5.749511833283905,0.0,29.972562200205562,0.0,6.851892117295679,97.48756221607267,48.33934966130636,0.0,0.0,0.0,23.47,140.73811349471782,4.1122756685106605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,38.441680673828586,257.5106379927174,0.0,-1.5262125614134536,4.285762944066516,-5.409007595322079,-6.377654163517263,-22.655057277795827,-5.13422713529857,-27.694242203436847,0.0,0.45454545454545453,24,1,2,0,0,0,2,0,2,2,1,2,13,0,0,0,2,5.341420000000006,102.72380000000005,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11679357,CS(=O)(=O)CCNCc1ccc(-c2ccc3ncnc(Nc4ccc(OCc5cccc(F)c5)c(Cl)c4)c3c2)o1,0,14.568457081342654,-6.1823820895929975,14.568457081342654,0.003500225752487207,0.17947949298055937,581.0690000000012,554.8610000000002,580.1347322120008,206,0,0.16808236211279823,-0.48734392314725267,0.48734392314725267,0.16808236211279823,1.15,2.05,2.925,1.706068723842233,2930.2371577738218,50.83953412367647,45.08602478033761,20.658450307283786,29.76427987177655,23.1193242507339,12.086024780337604,6.943662773362036,8.532624966989742,4.237405671048627,4.863555414734445,2.679456338446631,3.0206036990934058,-3.989999999999999,22444903201539.203,10.12949693574268,12.033712839100877,7.14680707641382,272.29550194453475,19.77364059743015,54.387301017712154,1.4118420783282006,0.0,0.0,0.0,0.0,22.776169073898174,0.0,0.0,23.685777305559107,65.98763856832994,38.91315565946931,44.673287499547236,57.68411542759888,43.84636701124967,0.0,15.277770395182792,0.0,13.055844927232233,23.69555402387094,100.97594927128443,0.0,17.07321074385534,15.3564896603768,15.89566410019341,5.749511833283905,11.600939890232516,36.77149469680592,22.893098063649735,5.817220841045895,44.221904258656735,83.22954714297913,7.846317470397728,22.226623842652494,0.0,106.35000000000001,187.04598608726013,12.808212032003757,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,56.47684328582764,262.6686628114626,6.302300429678432,7.432248149625609,-2.9326948983803716,-8.688026305716134,-6.633916793096708,-14.4777043499503,-5.268670711546079,-11.942038464706277,-6.1823820895929975,0.1724137931034483,40,2,8,0,0,0,3,2,5,8,2,11,12,0,0,0,5,6.139100000000005,154.12419999999975,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,1,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +11856170,CC[C@](O)(c1nnc(NCc2ccc3c(-c4ccc(F)cc4)cc(=O)oc3c2)o1)C(F)(F)F,1,14.26894809722964,-6.125745470889921,14.26894809722964,0.5867288653039013,0.3142375804479159,463.3869999999999,446.2510000000002,463.1155189040004,172,0,0.42583397447374083,-0.4226780141754974,0.42583397447374083,0.4226780141754974,1.2121212121212122,2.0,2.696969696969697,2.0106123522378088,2074.7100736234624,38.427838751346,32.48649184039223,15.486491840392233,22.64369494609999,16.68056289437378,8.325101008409959,5.949966840417791,5.949966840417791,3.848495001633986,3.848495001633986,2.342293152651265,2.342293152651265,-3.7299999999999986,19434942160.362503,9.636275653771781,8.319137719770572,4.311248921137647,207.25584729449804,19.25292341850228,11.400240982688137,1.4118420783282006,7.032250468216322,5.890723922025908,17.816543541533935,0.0,9.184952231746642,13.171245143024459,5.098681808301038,36.12024875624989,41.19053549941025,24.779295387295132,13.7075855617022,53.47799067679473,16.983903061119513,1.4311996572326342,10.197363616602075,0.0,31.499026031368164,5.309813353288376,76.03086941922498,0.0,11.126902983393991,10.935399672366362,23.57631889571175,0.0,0.0,22.913669982385397,12.097910495299633,5.817220841045895,45.24037077490129,61.96818871948488,1.4118420783282006,22.09614733950103,0.0,101.39000000000001,136.15597766432322,22.3561973747711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.723322744762633,27.82157101516748,201.33877983803927,0.0,12.708986256027409,7.9073572978936575,-10.910872952704826,-3.7486878442873195,-11.64527652845335,-10.66086594177984,-7.9060867914015835,0.0,0.22727272727272727,33,2,7,0,0,0,2,2,4,7,2,11,8,0,0,0,4,4.754100000000002,109.74550000000004,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26248,CC(=O)Oc1cccc2c1C(=O)c1c(OC(C)=O)cc(C(=O)O)cc1C2=O,0,13.66456593285462,-3.51597119194071,13.66456593285462,1.0774433500251959,0.5498381537815612,368.2969999999999,356.20100000000014,368.0532173440003,136,0,0.3353435080841356,-0.47763733137640185,0.47763733137640185,0.3353435080841356,0.9629629629629629,1.6296296296296295,2.2962962962962963,2.5021387643537745,1506.2027754685755,29.936274919783287,24.765986323710905,12.765986323710905,17.765867861258418,12.699489742783179,6.791241452319316,4.8829931618554525,4.8829931618554525,3.3080782047249224,3.3080782047249224,2.361793135389699,2.361793135389699,-3.81,107663398.0484079,8.255872863064255,6.487370307022906,3.0802902280668167,168.81251194437758,14.58253409870731,11.49902366656781,5.783244946364939,5.783244946364939,1.4311996572326342,17.90791586385555,19.178148736287287,4.794537184071822,0.0,0.0,12.08483741532659,18.127256122989884,33.05523855500667,23.544147255942086,53.63356413693887,29.474405756585426,1.4311996572326342,0.0,0.0,13.703784234591359,0.0,58.02935099680145,0.0,11.49902366656781,9.473725907600098,0.0,11.49902366656781,0.0,34.58321394769264,9.589074368143644,0.0,70.98299736316422,30.212093538316473,0.0,1.4311996572326342,0.0,124.04000000000002,112.70656465454607,23.97268592035911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.58253409870731,16.509543775105055,99.51283564644373,0.0,63.50029978720335,3.7216963719479783,-5.797166259282513,-11.622537532830192,-6.002924686377967,0.0,-6.978869993771068,0.0,0.10526315789473684,27,1,8,1,0,1,2,0,2,8,1,8,5,0,0,0,3,2.0107999999999997,89.32630000000005,0,0,0,0,1,0,0,0,1,1,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,2,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6321416,CO/N=C(\C(=O)N[C@@H]1C(=O)N2C(C(=O)OC(C)OC(C)=O)=C(COC(N)=O)CS[C@H]12)c1ccco1,0,13.899906638600493,-4.48595839087804,13.899906638600493,0.4749983596833798,0.14747154295004614,510.4809999999999,488.3050000000003,510.10566390400055,188,0,0.40431690463915587,-0.4623749188216791,0.4623749188216791,0.40431690463915587,1.6,2.4571428571428573,3.142857142857143,2.337225353521178,1946.574654364714,44.610001506150226,38.279585577102324,17.096082158030054,25.32038052166425,19.105448880295686,9.08030467472354,5.48996654883424,6.28491317036509,3.4741417658865883,4.349600500636525,2.259187591245258,3.0913793703311403,-4.01,136206049025.15393,9.217371003426999,10.943881871184095,5.737966948949698,233.33091075485748,34.49485871120478,33.40331104771523,9.995773653859045,11.9777633713076,11.814359458703011,18.031850646842113,19.283521283065944,9.589074368143644,0.0,11.761884949391115,5.15571272675054,12.08483741532659,35.94791409917255,18.576041640372722,77.71795310476804,47.31978005770694,0.0,10.209723084138854,10.875429702476813,31.337679523648326,19.301894586949036,35.35444331216688,0.0,0.0,11.029530329014648,4.794537184071822,0.0,11.761884949391115,77.3935947151723,38.22632618142407,0.0,45.50844422070001,39.16705955709632,4.235526234984602,0.0,0.0,189.06,149.24323754033634,23.97268592035911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.20389017188732,34.69708973927213,187.95153837294188,-0.7387303488442118,69.21332302111723,-1.6707220548730612,-10.5649534732614,-10.958080924846904,-6.210438868419845,-7.910001044648603,-12.268598684463589,-3.510002661368186,0.4,35,3,14,0,2,2,0,1,1,12,2,15,12,0,1,1,3,-0.16829999999999856,117.15809999999999,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 +14957,CCCCCC[C@H]1C(=O)O[C@H](C)[C@H](NC(=O)c2cccc(NC=O)c2O)C(=O)O[C@@H](C)[C@@H]1OC(=O)CC(C)C,0,15.116930440453821,-6.410663157917488,15.116930440453821,0.7705824076096688,0.11690172594745143,548.6330000000017,508.3130000000004,548.273380860001,216,0,0.3324484880149327,-0.5049264598010224,0.5049264598010224,0.3324484880149327,1.3076923076923077,2.1025641025641026,2.7948717948717947,3.7465531163947094,2610.56731829319,63.83398062421133,58.568661805174685,18.568661805174685,34.23964694762029,29.14659241524687,9.343916933783095,6.0523152850473645,6.0523152850473645,3.6273829201097345,3.6273829201097345,2.173779616409226,2.173779616409226,-3.6300000000000003,588170848918207.0,7.163883965214933,15.085094798392626,8.968039587505904,284.8981063201615,29.93902375908411,13.530794610070195,20.67110648523994,6.386146945317806,7.33837938658414,17.90791586385555,19.178148736287287,4.794537184071822,0.0,0.0,52.089794664867846,38.0555042366104,46.12492303026578,26.740105344935174,96.83383370782099,35.88862881320842,1.4311996572326342,5.309813353288376,11.787915370726157,96.75495654365427,5.309813353288376,23.69070761468688,0.0,5.749511833283905,10.619626706576751,5.687386274683562,5.749511833283905,0.0,60.99919693606431,33.38873759768743,11.787915370726157,133.5730652485215,18.127256122989884,2.8236841566564013,0.0,0.0,157.32999999999998,184.49134688213644,21.919665848627726,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,19.31939705250736,52.23143327984677,341.4448380132622,0.0,70.41076370064431,1.579285845480856,-3.8157726088171184,-27.918497892440747,-10.901646473471947,-53.4910050442968,-24.724632207027575,0.0,0.6071428571428571,39,3,11,0,1,1,1,0,1,9,3,11,17,0,1,1,2,3.480400000000002,141.73969999999989,0,0,0,0,0,0,0,1,0,0,5,5,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5943,ClC(Cl)(Cl)Cl,0,4.826388888888888,-1.6111111111111107,4.826388888888888,1.6111111111111107,0.4697955363527546,153.823,153.823,151.87541072,32,0,0.26568521128753525,-0.06642130282188381,0.26568521128753525,0.06642130282188381,0.8,0.8,0.8,3.0237157840738176,19.11941547876375,4.5,2.011857892036909,5.035573676110727,2.0,0.7559289460184544,2.2677868380553634,0.42857142857142844,3.857142857142857,0.0,0.0,0.0,0.0,1.16,3.6096404744368114,6.16,1.7418482569208207,38.291985731272305,49.952315935356246,0.0,0.0,0.0,0.0,3.2517177575741014,0.0,0.0,0.0,0.0,0.0,46.40375956093006,0.0,0.0,0.0,0.0,46.40375956093006,0.0,0.0,0.0,3.2517177575741014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.40375956093006,3.2517177575741014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2517177575741014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.40375956093006,-1.6111111111111107,19.305555555555554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,2.5529,26.143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2159,CCN1CCCC1CNC(=O)c1cc(S(=O)(=O)CC)c(N)cc1OC,0,13.971609741118666,-6.381098475413275,13.971609741118666,0.8690216599905347,0.7023165228263907,369.48699999999957,342.2710000000001,369.17222734400076,140,0,0.2546468350256778,-0.4958422275250794,0.4958422275250794,0.2546468350256778,1.72,2.6,3.32,3.2581368905550816,1715.372897141095,41.98060947308281,38.88288223881919,12.699378819746915,22.419278969168957,19.287235632492738,7.428758093587258,4.025799175422439,5.6450451865047855,2.5789884190507326,3.6805858750480893,1.5052058077400186,2.149268874271322,-1.8,6442697892.14891,4.361682128906248,8.052660123966941,4.243964693315342,187.0983608877376,15.766393282814697,5.749511833283905,14.072779371402104,0.0,5.907179729351506,0.0,9.694446914922299,8.417796984328938,0.0,0.0,13.703784234591359,31.781987878953945,41.860066315222646,38.48454047912263,55.082928705270724,21.431819140452568,0.0,10.209723084138854,0.0,37.363009981117536,37.953205372706854,17.648288907023584,0.0,5.749511833283905,15.766393282814697,5.687386274683562,5.749511833283905,0.0,57.476267309861136,9.837253136417502,0.0,69.70582806110426,16.980320890844364,4.235526234984602,0.0,0.0,101.73,130.3555583187233,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,37.13373158306988,245.00527216273846,0.0,10.677463081326035,-1.3286398100907033,-9.342543160445365,-4.614543191504999,-8.83292291798109,-8.795497954878304,-21.94425946414059,-10.240995411690081,0.5882352941176471,25,3,7,0,1,1,1,0,1,6,2,8,11,0,1,1,2,1.2851000000000006,97.73540000000006,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +5280453,C=C1/C(=C\C=C2/CCC[C@@]3(C)[C@H]2CC[C@@H]3[C@H](C)CCCC(C)(C)O)C[C@@H](O)C[C@@H]1O,0,9.92425394463341,-6.123813356022955,9.92425394463341,2.118217127458511,0.5199919050350968,416.64599999999933,372.29400000000015,416.32904526800115,170,0,0.21094160432655182,-0.39266957014162285,0.39266957014162285,0.21094160432655182,1.5333333333333334,2.5,3.2333333333333334,3.1340238346206672,2342.2200086932353,60.085421958697395,58.72474487139159,14.72474487139159,31.812748797143882,29.587117307087386,7.862372435695795,5.8394345083117605,5.8394345083117605,3.6811862178478973,3.6811862178478973,2.355691960411273,2.355691960411273,-0.9000000000000001,61379564244192.836,4.074044372261752,9.302573014005528,5.285369373083563,245.60285748335428,15.326424573321638,0.0,0.0,4.293598971697903,0.0,0.0,0.0,0.0,0.0,0.0,50.65792102139238,92.55733112952156,54.34947436728712,25.985638201904983,71.5275253763007,0.0,4.293598971697903,0.0,23.096863525486015,108.89790434736017,0.0,35.3544960442808,0.0,0.0,0.0,0.0,0.0,0.0,37.3811104099032,0.0,23.096863525486015,147.33791828545537,35.3544960442808,0.0,0.0,0.0,60.69,167.34926391712702,13.7075855617022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,46.787114212974735,381.062369258688,0.0,0.0,11.808392847647124,-18.423831284625063,-17.872936361961898,-5.287667074301222,-61.870574393561526,-22.665752991885263,0.0,0.7777777777777778,30,3,3,3,0,3,0,0,0,3,3,3,13,3,0,3,3,5.704700000000008,124.03840000000008,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4091,CN(C)C(=N)N=C(N)N,0,7.088583238851095,-3.232627078609223,7.088583238851095,0.2638888888888893,0.2818737771329878,129.16699999999997,118.07900000000001,129.10144535199998,52,0,0.21997431940482037,-0.36975230108605195,0.36975230108605195,0.21997431940482037,1.8888888888888888,2.6666666666666665,3.111111111111111,5.825884729050673,355.2551726661886,16.300964908321227,15.23606797749979,4.23606797749979,8.818602998526268,7.024922359499623,1.7888543819998317,1.047213595499958,1.047213595499958,0.39999999999999997,0.39999999999999997,0.13944271909999156,0.13944271909999156,-1.26,7008.195260465968,1.1172581278621807,2.9071056558917943,3.33347181008902,69.59932458341075,16.339343682303024,0.0,13.01876496038484,5.959554568743835,0.0,0.0,5.402308355073566,0.0,4.992404732635669,0.0,0.0,0.0,22.17620513758581,0.0,15.283761728662325,11.91910913748767,5.402308355073566,4.899909730850478,16.431838684088213,0.0,13.951653800564491,0.0,0.0,0.0,11.439433951452546,0.0,0.0,0.0,30.77067266890264,0.0,5.402308355073566,8.224551337021321,4.992404732635669,7.059210391641003,0.0,0.0,91.49,25.87076293805216,0.0,0.0,16.339343682303024,0.0,0.0,0.0,0.0,0.0,10.394713087709235,15.283761728662325,76.74698507180648,0.0,2.8498611111111107,2.624305555555556,-0.6619160997732427,-2.260648148148147,0.0,0.0,-6.465254157218446,0.0,0.5,9,5,5,0,0,0,0,0,0,1,3,5,2,0,0,0,0,-1.243829999999999,37.22349999999998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5282230,COc1ccc(/C=C/C(=O)Nc2ccccc2C(=O)O)cc1OC,0,12.988724075297394,-3.3762580275287366,12.988724075297394,0.4010130545560737,0.7966277714413199,327.33599999999973,310.20000000000005,327.11067264400043,124,0,0.33731126841744763,-0.49286956489759315,0.49286956489759315,0.33731126841744763,1.2916666666666667,2.0833333333333335,2.875,2.8565460869576675,1449.4625845013363,31.936274919783287,28.488455047819272,11.488455047819274,18.567161664040196,14.2315444980873,5.876082612123479,3.7903926752945116,3.7903926752945116,2.3295255811916715,2.3295255811916715,1.3667286612088012,1.3667286612088012,-3.28,181829526.44327125,5.374435745509186,7.8238585342967735,4.131330234838611,162.91200296788008,19.892347451995686,0.0,12.910865744896011,5.907179729351506,1.4311996572326342,5.969305287951849,4.794537184071822,4.794537184071822,0.0,0.0,18.127256122989884,35.78519806838574,6.052071746035566,45.88812102669907,46.14482888773248,23.615943038022486,1.4311996572326342,0.0,0.0,0.0,19.385718271053552,59.47590568307262,0.0,11.49902366656781,14.783539260888475,5.687386274683562,11.49902366656781,0.0,31.061198126175746,4.794537184071822,0.0,36.48281851001912,48.34900269967863,1.4118420783282006,7.4832714032682,0.0,84.86,113.97659065871649,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.58253409870731,23.404420078114136,139.3711263485698,0.0,25.06407300654071,3.320843129093386,-3.4391777008039215,-6.03223941767074,-10.921091653295303,0.0,0.0,-6.696867045767245,0.1111111111111111,24,2,6,0,0,0,2,0,2,5,2,6,8,0,0,0,2,3.0539000000000014,90.61100000000003,0,0,0,0,1,0,0,0,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9703,CNNCc1ccc(C(=O)NC(C)C)cc1,0,12.823260876128842,-3.905727657683827,12.823260876128842,0.5965640909715595,0.6513892787333422,221.30400000000014,202.15199999999996,221.152812228,88,0,0.25097381657328194,-0.3498662192708533,0.3498662192708533,0.25097381657328194,1.625,2.375,3.0,3.8273847498063516,938.2463050507697,28.273502691896258,26.749889076963736,7.749889076963737,15.27350269189626,13.140192122731722,3.798551336231848,2.327366159908441,2.327366159908441,1.264017515137193,1.264017515137193,0.7077813805167259,0.7077813805167259,-1.3900000000000001,5566640.325669849,2.3956834981937924,6.24878456545033,4.001506645563586,123.2709098768829,5.309813353288376,2.8236841566564013,1.4118420783282006,0.0,5.907179729351506,0.0,15.632169476856681,0.0,0.0,0.0,12.08483741532659,38.32790004189719,33.15654776223501,6.853792780851101,30.96220031777994,5.907179729351506,0.0,16.147445646073233,0.0,26.21853638725695,6.975826900282246,35.29657781404717,0.0,0.0,16.147445646073233,0.0,0.0,0.0,18.900899097983398,6.496859684315945,0.0,51.55736130078074,24.16967483065318,4.235526234984602,0.0,0.0,53.16,90.5455664770111,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.167663133708118,143.78624364371882,0.0,12.823260876128842,-0.83078700580324,-3.8875005228407575,-2.0382403733098178,-9.448944777865234,0.0,-14.487365173361919,0.0,0.4166666666666667,16,3,4,0,0,0,1,0,1,3,3,4,8,0,0,0,1,1.0487999999999995,64.94360000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5388961,CCOC(=O)[C@H](CCc1ccccc1)N[C@@H](C)C(=O)N1CCC[C@H]1C(=O)O,0,14.286256209560905,-5.324503613945582,14.286256209560905,1.233780969005814,0.6358354158694681,376.4529999999996,348.2290000000001,376.19982199600076,148,0,0.32591549414003096,-0.479712131669052,0.479712131669052,0.32591549414003096,1.6296296296296295,2.4444444444444446,3.1481481481481484,3.2855430985298906,1729.9768852224215,44.265066523458984,40.93566864331923,12.935668643319232,23.966043585506018,20.44824074610531,6.592778860141485,4.189029054395829,4.189029054395829,2.5378159370338094,2.5378159370338094,1.468532092436682,1.468532092436682,-2.41,33362470910.339222,4.764824360322394,10.061420006935409,5.787080019605405,198.72070359823013,14.745580875757739,13.447627015027491,0.0,5.907179729351506,1.4311996572326342,11.938610575903699,14.898887721432018,4.794537184071822,0.0,0.0,30.212093538316473,44.75893533160586,28.42899658303946,26.28446327296813,61.280847235876706,17.845790305255207,1.4311996572326342,10.209723084138854,0.0,57.249161244957804,13.055844927232233,35.77554503001347,0.0,0.0,5.309813353288376,0.0,0.0,0.0,58.96403055949406,25.493399407344892,0.0,74.02573289070224,30.212093538316473,1.4118420783282006,1.4311996572326342,0.0,95.94000000000001,134.1360645915976,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,38.482764195986555,229.32687436456428,0.0,39.48071404543954,1.7717596022502748,-1.8226094626389993,-9.131752207749475,-22.51280530308545,-18.42468335186845,-17.937497686911808,0.0,0.55,27,2,7,0,1,1,1,0,1,6,2,7,11,0,1,1,2,1.6046,100.15250000000007,1,0,0,0,0,0,0,0,1,1,3,2,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +107751,CC(=O)SCC(Cc1ccccc1)C(=O)NCC(=O)OCc1ccccc1,0,13.824402192491117,-4.624114888296664,13.824402192491117,1.0060905718592135,0.6720580391598658,385.48499999999973,362.30100000000016,385.1347792160006,142,0,0.32524283680014615,-0.45950340946396656,0.45950340946396656,0.32524283680014615,1.1851851851851851,1.8148148148148149,2.4444444444444446,2.851065993547911,1702.3208616962552,39.65181786940711,35.98845504781927,13.804951628747,22.171891271671253,18.073296207623436,7.442579193051205,4.0119226097528555,4.790961712115316,2.204181133539433,2.695762757336629,1.2310674465618137,1.564168471585842,-2.599999999999999,6008335693.189723,5.7033604262003985,11.184636488340194,8.087990580847727,195.41643822983994,10.046676307088426,13.055844927232233,6.527119008513921,5.907179729351506,0.0,5.969305287951849,14.383611552215466,0.0,0.0,0.0,72.18607202602408,17.49982788472337,23.522917451807594,25.084577471746154,50.68900482008859,28.75364689688019,0.0,5.309813353288376,5.893957685363079,19.783802261541346,12.201816569466104,71.55109006002695,0.0,0.0,5.309813353288376,0.0,0.0,11.761884949391115,29.193578516955178,32.05238465026118,5.893957685363079,48.13548333643454,60.42418707663295,1.4118420783282006,0.0,0.0,72.47,143.4941268265661,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,31.568530314073033,187.1953521850095,-1.0311479321800945,39.16190775613258,-3.4021608360513214,-7.269564307696076,-10.063339865860385,-12.476734084691076,-4.329107344603658,-11.951872236726109,0.0,0.2857142857142857,27,1,5,0,0,0,2,0,2,5,1,6,10,0,0,0,2,2.9846000000000013,106.02270000000001,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +28417,C#C[C@]1(O)CC[C@H]2[C@@H]3CCC4=Cc5oncc5C[C@]4(C)[C@H]3CC[C@@]21C,0,9.97418390967498,-5.260689247921395,9.97418390967498,1.1777876663112956,0.7210430866196731,337.46299999999957,310.24700000000007,337.2041791040008,132,0,0.21221268931777573,-0.3770338698968007,0.3770338698968007,0.21221268931777573,1.52,2.48,3.32,2.3290672585732084,1861.7058628470802,40.922285251880865,39.263710176427686,12.263710176427685,22.791876199984394,20.47267756451276,7.064429274048898,5.804687947789873,5.804687947789873,4.452625875173907,4.452625875173907,3.0649062855798714,3.0649062855798714,-1.5299999999999998,21052051863.970192,3.99396710743908,4.796470926146428,1.7927603361670434,187.43204210423735,9.63190312808056,6.9718093671539085,5.760247418874442,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,6.399401534821945,30.35398634064172,73.75940958082724,42.505888753008854,8.9144123231552,45.2716255885063,6.052071746035566,1.4311996572326342,5.156663257125445,28.511853994882795,63.91530935488069,0.0,23.069698651455464,0.0,12.319835853677588,0.0,0.0,0.0,0.0,17.29772191644898,6.372924901329379,40.83168984856038,98.90475501356468,16.269094677857378,0.0,6.052071746035566,0.0,46.260000000000005,121.54893374725454,15.078344117872419,0.0,0.0,0.0,0.0,12.319835853677588,0.0,0.0,10.265471448232658,26.515672936759277,247.18185201542508,0.0,0.0,7.535976538963794,-17.692242178775146,-15.428007411259586,-1.6745156576111209,-33.453654791793795,-9.386075181615858,0.0,0.6818181818181818,25,1,3,4,0,4,0,1,1,3,1,3,3,3,0,3,5,4.221000000000004,96.35280000000006,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +60726,Nc1c(CC(=O)O)cccc1C(=O)c1ccc(Br)cc1,0,13.276387550390522,-3.401271206013271,13.276387550390522,0.2677034443764241,0.6654785528464892,334.16899999999976,322.073,333.0000553440003,102,0,0.3073959523791919,-0.4809852132130286,0.4809852132130286,0.3073959523791919,1.35,2.1,2.75,3.081844754701846,1124.6962713672076,24.86736081903094,21.549922939900775,11.13591947901548,14.620908571115548,10.827636951414167,5.81795973950774,3.4041706580517888,4.197168927609141,2.124284133850183,2.520783268628859,1.2922448764624566,1.4904944438517944,-2.1399999999999992,4300316.31763552,5.33095174872493,5.878302341530973,3.0546882493460967,140.97046944830606,10.828525166833487,0.0,8.60692910302134,0.0,1.4311996572326342,5.969305287951849,9.589074368143644,0.0,0.0,0.0,28.01478131327594,35.77554503001347,24.028525886250407,15.968234794520917,29.85839372143923,33.3698804069497,1.4311996572326342,0.0,0.0,6.372924901329379,5.719716975726273,63.460004944566464,0.0,0.0,5.719716975726273,5.687386274683562,0.0,15.929943897949348,16.861358425424,11.167462085401201,0.0,33.82171866469479,46.76965046947548,2.8236841566564013,1.4311996572326342,0.0,80.39000000000001,82.80014683906379,9.589074368143644,0.0,10.192436491558688,0.0,0.0,0.0,0.0,0.0,21.038752089056562,16.591710819421014,93.01884605114526,2.850090981388885,25.10296157457728,3.6010609433422385,-4.668924779016544,-3.359896205752987,-6.30953402633755,-3.401271206013271,0.0,0.0,0.06666666666666667,20,3,4,0,0,0,2,0,2,4,2,5,5,0,0,0,2,2.889400000000001,79.76870000000002,1,0,0,1,0,0,0,0,1,1,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +57469,CC(C)Cn1cnc2c(N)nc3ccccc3c21,0,8.487539682539683,-3.8760450916477716,8.487539682539683,0.1142127267573696,0.7489707109733231,240.31000000000012,224.18199999999996,240.13749651199998,92,0,0.15782307522410938,-0.3818164701097039,0.3818164701097039,0.15782307522410938,1.6111111111111112,2.5,3.3333333333333335,2.6983843469138753,1289.9813509514936,26.342416792648606,24.788854381999833,8.788854381999833,15.213120180777647,12.68328157299975,4.788854381999832,3.3902475842498534,3.3902475842498534,2.2673373876248855,2.2673373876248855,1.6076237921249261,1.6076237921249261,-2.099999999999999,10145530.701636773,3.0716396481060912,3.978426224070977,1.6103334006307395,128.0484604742308,10.286816623517627,6.887459273786482,8.64154693449143,0.0,0.0,0.0,0.0,9.967957041894417,0.0,0.0,31.831040357581244,11.936376393026373,21.478393791972277,25.561324486220066,22.01430394303948,27.754189145148608,0.0,14.53505668968577,5.893957685363079,20.200643918907303,5.719716975726273,30.473046544619407,0.0,0.0,5.719716975726273,5.817862777835028,0.0,0.0,14.53505668968577,6.496859684315945,5.893957685363079,32.894404020974434,30.473046544619407,2.8236841566564013,21.936326367313583,0.0,56.730000000000004,84.3218372940384,0.0,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,9.967957041894417,22.01430394303948,126.73940296411773,0.0,7.54410218253968,-0.5556401171579737,-1.9894328703703692,-4.576111229213909,-3.0936481560216658,-1.1157997921390777,-11.286206315087767,0.0,0.2857142857142857,18,2,4,0,0,0,1,2,3,4,1,4,5,0,0,0,3,2.8227,74.28440000000003,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +39764,CC(=O)O[C@H]1C[C@@H]2CC[C@@H]3[C@H](CC[C@@]4(C)[C@H]3C[C@H]([N+]3(C)CCCCC3)[C@@H]4OC(C)=O)[C@@]2(C)C[C@@H]1N1CCCCC1,0,14.369706991984193,-7.130473001700686,14.369706991984193,2.040473992940589,0.3151098082587802,557.840000000002,500.3840000000004,557.4312847240915,226,0,0.30265038490977136,-0.4608819548993317,0.4608819548993317,0.30265038490977136,0.9,1.65,2.375,2.267253808388848,3270.9171285840844,78.64626436994197,76.52742035285537,19.52742035285537,41.12167957346759,39.28999245564144,10.78999245564144,8.21294517370114,8.21294517370114,5.852240446196513,5.852240446196513,4.191236092463001,4.191236092463001,-1.1400000000000001,3.301375744379529e+29,5.475529055712778,10.848188792052536,4.849921274898807,323.1104458774121,13.956756765294722,13.468669051469853,6.080018026949988,0.0,0.0,11.938610575903699,14.488984098994122,0.0,0.0,0.0,20.076709135920737,112.08671449410419,94.56448565749727,33.67713183061634,101.67906883514087,11.938610575903699,0.0,4.899909730850478,34.405811680245876,134.45141317706393,32.96326563754602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.4806377925941,19.06280027574374,34.405811680245876,188.38882988816698,0.0,0.0,0.0,0.0,55.84,223.14204165930465,53.453348165590725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,34.2689639042555,533.7172791631707,0.0,26.24287396245351,0.0,-13.985796597181889,-35.13392977141168,-13.7043790571209,-92.16418723773594,-52.138527128840565,0.0,0.9411764705882353,40,0,6,4,2,6,0,0,0,5,0,6,9,4,2,6,6,5.965900000000007,156.37039999999976,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3696,CN(C)CCCN1c2ccccc2CCc2ccccc21,0,8.914966458805745,-4.478152163643239,8.914966458805745,0.2727404572940286,0.8384623265941306,280.4149999999995,256.22299999999996,280.19394876800067,110,0,0.06448635553418769,-0.34099081171219864,0.34099081171219864,0.06448635553418769,1.0952380952380953,1.6666666666666667,2.238095238095238,2.7463301854173396,1456.3391888024055,35.58290376865477,34.39442719099992,10.394427190999917,19.767519627752552,17.591640786499873,5.591640786499874,3.716640786499874,3.716640786499874,2.4305339887498953,2.4305339887498953,1.613525491562421,1.613525491562421,-1.7999999999999994,653177196.08511,3.1129140888088336,6.314843310189529,3.108345481049562,161.2762203172422,9.799819461700956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.25451224597977,62.779028587589146,39.8037691324066,10.96606844936176,32.89820534808528,11.374772549367124,0.0,4.899909730850478,0.0,19.118774703988137,31.845282900046858,59.46625264470035,0.0,0.0,4.899909730850478,11.374772549367124,0.0,0.0,31.84528290004686,12.745849802658759,0.0,50.398033232808686,48.33934966130636,0.0,0.0,0.0,6.48,121.8050827981025,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,0.0,32.89820534808528,198.43955834087285,0.0,-1.2135143980431686,0.0,-5.624177217183168,0.0,-10.244937949072598,-11.883574263038554,-16.723354513535345,0.0,0.3684210526315789,21,0,2,0,1,1,2,0,2,2,0,2,6,0,0,0,3,3.8750000000000027,90.46900000000007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6918493,COC(c1ccccc1)(c1ccccc1)[C@H](Oc1nc(C)cc(C)n1)C(=O)O,0,13.65945838057445,-4.4794005102040835,13.65945838057445,1.1609557869546163,0.6774712956679046,378.4279999999997,356.2520000000001,378.1579571840006,144,0,0.34839964152509995,-0.47839923417300045,0.47839923417300045,0.34839964152509995,1.1071428571428572,1.6785714285714286,2.142857142857143,2.8479116210856503,1710.256801421901,38.85048848215638,35.52742035285537,13.52742035285537,22.505502265665793,18.02742035285537,7.119172062391506,4.830286565962017,4.830286565962017,3.2074188907717818,3.2074188907717818,2.1310659760946447,2.1310659760946447,-3.25,9924598928.857323,5.874260355029586,8.186212278876171,3.7251433207138995,194.35340775297024,14.58253409870731,0.0,5.601050810983688,6.080018026949988,1.4311996572326342,11.979770127538686,0.0,14.76249422596624,0.0,0.0,60.42418707663295,30.873105925648645,26.650359785600827,20.561378342553297,48.163000962353784,5.969305287951849,1.4311996572326342,9.967957041894417,0.0,25.384853072525036,7.037952458882589,88.98136475738717,0.0,6.010464839586836,4.736862953800049,0.0,6.010464839586836,0.0,34.16404100678606,15.13245094885556,13.703784234591359,51.30068865266558,66.46660578429623,0.0,1.4311996572326342,0.0,81.54,133.38394041633347,6.165295740242042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.07676523300163,38.320096688237136,188.61901614242907,0.0,20.440948575417817,3.9113383408919127,-10.280084353485554,-2.4955650037792907,-16.659696610074498,-4.4794005102040835,-6.9071065203068285,-4.066116727555221,0.22727272727272727,28,1,6,0,0,0,2,1,3,6,1,6,10,0,0,0,3,3.515640000000001,104.23080000000007,1,0,0,0,0,2,0,0,1,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6279,CC(=O)O[C@]1(C(C)=O)CC[C@H]2[C@@H]3C[C@H](C)C4=CC(=O)CC[C@]4(C)[C@H]3CC[C@@]21C,0,14.561580079856139,-6.060854001322756,14.561580079856139,2.5451196563527434,0.6479725905950843,386.5319999999995,352.26000000000016,386.24570956800096,154,0,0.3031419075601983,-0.4506407530497846,0.4506407530497846,0.3031419075601983,1.25,2.107142857142857,2.8214285714285716,2.7945485224784274,2047.5368600179183,50.09385812713468,47.63299316185545,13.632993161855453,26.469920232051184,24.520620726159656,7.520620726159658,6.103954059492991,6.103954059492991,4.559236805337111,4.559236805337111,3.25562817825917,3.25562817825917,-1.45,447212406924.87885,4.2915603541076415,6.272007655173047,2.4498417061726503,215.78710054799404,4.736862953800049,0.0,17.167540703713566,0.0,0.0,5.969305287951849,14.383611552215466,0.0,0.0,0.0,26.128780881956306,80.13233448215661,63.874839841639165,1.3707585561702202,65.72626541580306,17.535795180681728,0.0,0.0,34.405811680245876,84.47098570676773,0.0,11.625176276104835,0.0,0.0,0.0,0.0,0.0,0.0,23.136845991665414,19.120474506015512,34.405811680245876,125.47572580557139,11.625176276104835,0.0,0.0,0.0,60.440000000000005,148.03776884380017,30.8327142262581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,30.156688235744834,303.92533923781656,0.0,41.545397476030345,0.0,-20.17410218720307,-32.55583602880583,-2.5451196563527434,-38.519138473284194,-25.09320703486766,0.0,0.7916666666666666,28,0,4,4,0,4,0,0,0,4,0,4,7,3,0,3,4,4.655200000000004,106.43500000000007,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11718722,CN1CCN(c2cccc3nc(CN(C)[C@H]4CCCc5cccnc54)c(CO)n23)CC1,0,9.517803641342429,-4.535737512922988,9.517803641342429,0.17922532710028216,0.6844199192398984,420.5609999999996,388.3050000000002,420.2637596440009,164,0,0.2106060540756964,-0.3900547987924535,0.3900547987924535,0.2106060540756964,1.3548387096774193,2.2903225806451615,3.129032258064516,2.07256729549093,2356.0498628895493,49.358924650593664,47.09152986346361,15.091529863463613,27.705189897244118,24.19008119969546,8.281832909231596,5.754770836615629,5.754770836615629,3.975447658579018,3.975447658579018,2.68628145439826,2.68628145439826,-2.48,2407905208399.802,5.188689264880933,8.571219263340472,3.8174649745822697,228.53305777467048,14.908627652808168,11.465039998602755,0.0,1.4311996572326342,0.0,0.0,14.28458285805948,4.9839785209472085,0.0,0.0,12.08483741532659,56.7611361192395,63.330847643458505,47.47852292602421,47.60232343238406,11.465039998602755,1.4311996572326342,24.168471109857165,0.0,38.19251209957002,44.83900226867875,59.03022422537361,0.0,0.0,4.899909730850478,5.817862777835028,0.0,0.0,70.6475714960253,19.428769828561613,0.0,83.9024929885276,36.38498874913123,0.0,5.647177220767728,0.0,60.14,163.32659805392612,4.1122756685106605,0.0,4.400694606261793,0.0,0.0,0.0,0.0,0.0,15.07676523300163,39.8124392299988,273.35279431415665,0.0,4.8477009426270214,4.141379676328494,-8.428644196818263,-1.7818092054633816,-11.633808129578682,-13.850228137717597,-34.147385263534204,0.0,0.5,31,1,7,1,1,2,0,3,3,7,1,7,8,0,1,1,5,2.482800000000001,122.20780000000006,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +3278,C=C(CC)C(=O)c1ccc(OCC(=O)O)c(Cl)c1Cl,0,12.828760609188322,-3.5159537048099008,12.828760609188322,0.8907607394809778,0.6438970754146427,303.14099999999974,291.04499999999996,302.01126422400034,102,0,0.34122362129823147,-0.48029184030473615,0.48029184030473615,0.34122362129823147,1.631578947368421,2.4210526315789473,3.0526315789473686,3.7641770436195,923.7871248784262,24.687716254269354,20.888922107873906,10.400779999910817,13.82330917541418,10.306833489632748,5.15451414518734,2.9027943872702866,3.658723333288742,1.728130578940755,2.563452130897621,0.9396567636668343,1.3388576308953235,-1.5199999999999996,1385626.2159178262,5.462618669327594,6.589861591695502,3.7193273675436243,137.08006678378368,9.84567114490726,10.772145147025231,12.342230189281228,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,4.794537184071822,0.0,0.0,36.58481085976258,24.030866846725235,12.417244272548094,13.247184650762646,34.513089630923325,34.95443001478182,1.4311996572326342,0.0,0.0,13.224817018625059,6.558985242916289,39.79769902657737,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,23.20187978046503,23.42034366834029,4.794537184071822,0.0,38.66114981226631,24.188980907397724,10.045266627482652,1.4311996572326342,0.0,63.60000000000001,77.0835633557194,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,39.71142355557009,93.3679540410746,11.775255053924859,24.112197710178357,1.6371150595931716,-2.534333569343715,-4.549517837686804,-2.2692181594860164,-3.5159537048099008,-8.384609704555647,0.0,0.23076923076923078,19,1,4,0,0,0,1,0,1,4,1,6,7,0,0,0,1,3.6057000000000023,73.35430000000004,1,0,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6918686,CCCCN1C(=O)[C@@H]([C@H](O)C2CCCCC2)NC(=O)C12CCN(Cc1ccc(Oc3ccc(C(=O)O)cc3)cc1)CC2,1,15.813848205674919,-5.858308282001027,15.813848205674919,1.18108141704397,0.378225602855961,577.722000000002,534.3780000000004,577.3151860960012,226,0,0.3351828675829449,-0.47763922500809114,0.47763922500809114,0.3351828675829449,1.2142857142857142,1.9047619047619047,2.5476190476190474,1.9818083006999838,3042.161219244892,67.51362518897291,63.29113052928305,20.291130529283052,37.26879126598678,32.23143357505103,10.96772339862335,7.526051497693821,7.526051497693821,4.969470915421112,4.969470915421112,3.115835257996488,3.115835257996488,-3.4299999999999993,1.6015849510245038e+19,7.435136824737519,13.254178299258303,6.469340792221299,308.0360254810568,25.164202420153327,23.0558413873008,1.4118420783282006,13.245559115935645,1.4311996572326342,5.969305287951849,14.488984098994122,4.794537184071822,0.0,0.0,44.42842913793979,79.57654592968674,67.11019542237044,25.35105508034918,85.58027521336695,17.78366474665486,2.8623993144652684,15.109632814989332,5.893957685363079,88.34191166125902,19.490579052947837,59.46625264470035,0.0,11.49902366656781,10.046676307088426,0.0,11.49902366656781,0.0,76.35971504843369,16.08593405245959,5.893957685363079,134.95999864353456,48.33934966130636,1.4118420783282006,1.4311996572326342,0.0,119.41000000000001,217.58502227248243,19.87288130194424,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,48.76310247552993,376.9488875324106,0.0,40.27317555616721,5.902353805759683,-9.08250710415685,-17.476638002449583,-18.31536258999948,-52.23236878630123,-26.017540411430403,0.0,0.5454545454545454,42,3,9,1,2,3,2,0,2,7,3,9,12,1,2,3,5,4.580000000000004,158.2927999999997,0,1,0,0,1,0,0,0,1,1,3,2,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3950,O=NN(CCCl)C(=O)NC1CCCCC1,0,12.544331380700426,-4.297886432350719,12.544331380700426,0.996189058956916,0.4599613459771248,233.69900000000013,217.57099999999997,233.093104432,86,0,0.3401649649788478,-0.3336851098880215,0.3401649649788478,0.3336851098880215,1.7333333333333334,2.4,2.933333333333333,3.8466719198058557,735.9233684635113,25.439157588755425,23.036101840436828,7.792030786455282,13.264072545885954,11.367321354071475,3.798072231580744,1.9677319565550824,2.1567141930596962,1.105249149530582,1.1897645750034338,0.5854929781301729,0.6655471381675215,-0.8400000000000001,804726.485888373,2.6959532537342836,6.608280546182645,4.032767857142857,116.6298936095988,5.309813353288376,0.0,1.4118420783282006,0.0,0.0,6.031114512338072,0.0,4.794537184071822,5.008912523954532,16.5080051342208,19.118774703988137,12.745849802658759,28.29910186576599,15.895020073789311,26.76775760495332,17.63205440257059,0.0,10.318725877242908,5.2858847209627084,37.88251697499654,12.328966407689654,4.907065243988282,0.0,0.0,5.309813353288376,4.794537184071822,0.0,11.600939890232516,29.3868859123319,0.0,4.907065243988282,52.426002849200245,5.2858847209627084,1.4118420783282006,0.0,0.0,61.77,66.56132377226716,9.701602428060104,0.0,0.0,0.0,0.0,0.0,0.0,5.2858847209627084,0.0,33.574160311114014,123.01550706016853,5.128845377823101,23.579181862559835,-0.2686141424162267,0.0,-3.5576185752078624,-6.7966491874527595,-20.46551760081605,-3.8573570168808295,0.0,0.8888888888888888,15,1,5,1,0,1,0,0,0,3,1,6,4,1,0,1,1,2.2509000000000006,58.62570000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +3658,OCCOCCN1CCN(C(c2ccccc2)c2ccc(Cl)cc2)CC1,0,9.666201131795694,-4.649008292659991,9.666201131795694,0.797666475164446,0.720292463198365,374.9119999999995,347.696,374.17610578400075,140,0,0.2101556301226801,-0.39398033266424715,0.39398033266424715,0.2101556301226801,1.1153846153846154,1.8076923076923077,2.5,2.6259968580609567,1660.0335458477502,41.99711733102786,39.58888824493687,13.344817190955325,23.35067072162113,20.051243749164147,7.020959931709511,4.175674712343341,4.553639185352568,2.6400939938686094,2.829076230373223,1.6710767246765714,1.7655678429288781,-1.4299999999999997,21241991375.92364,4.75642911430908,10.046711738220441,5.286236403307169,198.51873151325066,9.84567114490726,0.0,0.0,1.4311996572326342,0.0,0.0,9.799819461700956,0.0,0.0,0.0,53.89787084387558,23.21174039872058,51.214517297023285,47.626985095822064,45.485393605333,11.600939890232516,1.4311996572326342,9.799819461700956,0.0,6.017892468349645,52.16125415032858,70.53130466610497,0.0,0.0,0.0,0.0,0.0,11.600939890232516,68.50108146036939,4.736862953800049,0.0,52.7845179121694,54.38176836896965,5.022633313741326,0.0,0.0,35.940000000000005,138.5102707464842,1.3707585561702202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,47.30110345172068,229.7808066762994,5.892725475184092,-1.8849854366996768,2.586628307854876,-3.136442182160317,0.0,-16.238800055871938,0.0,-35.63882167349536,0.0,0.42857142857142855,26,1,4,0,1,1,2,0,2,4,1,5,9,0,1,1,3,3.055900000000001,105.65480000000005,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3488,COc1ccc(Cl)cc1C(=O)NCCc1ccc(S(=O)(=O)NC(=O)NC2CCCCC2)cc1,1,13.630129552734495,-6.369757668587634,13.630129552734495,0.9667886227925662,0.51917970894521,494.01299999999975,465.78900000000027,493.14381967600076,178,0,0.32840989085221617,-0.4959226267188044,0.4959226267188044,0.32840989085221617,1.2727272727272727,2.0,2.696969696969697,2.2329225550483467,2244.4673280395277,48.522061357410195,43.66909500229228,17.24152052923846,26.794064186829676,21.93518525708243,9.911572272392423,5.287389776948613,7.206309405913073,3.1543983668434654,4.45995581650868,1.8458801443665696,2.6853619331921736,-2.78,658123990449.6979,7.114975039490427,11.379760303013173,7.1000866469258455,238.16059143152344,15.356489660376802,5.749511833283905,4.235526234984602,0.0,15.930470882759089,6.031114512338072,4.794537184071822,17.92745378213489,0.0,0.0,42.804552009547244,54.894319734001606,36.728005252790005,32.57523154396978,61.24822444551278,33.56252528532968,0.0,15.334746320310884,0.0,49.15092535184369,13.534812143198533,58.44646725077838,0.0,5.749511833283905,20.071609274110934,4.794537184071822,5.749511833283905,11.600939890232516,39.90879583756669,16.396216054736964,0.0,82.0550285783682,47.192414429160834,9.258159548725928,0.0,0.0,113.6,164.17804829451262,18.00687135247258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,50.10543002947265,255.96472099932367,5.802653847544537,24.780559236212994,-3.3699390022904914,-3.295400651078541,-3.6338478088173076,-18.925204219655953,-26.008281780977164,-4.303479120124128,-9.90067038902645,0.391304347826087,33,3,8,1,0,1,2,0,2,5,3,10,9,1,0,1,3,3.641700000000003,126.20940000000004,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1 +9568614,COc1ccc2nc([S@@+]([O-])Cc3ncc(C)c(OC)c3C)[nH]c2c1,0,13.641692019400349,-3.605131330309905,13.641692019400349,0.0582666446208111,0.7189882148938235,345.4239999999997,326.27200000000005,345.11471246800056,126,0,0.3215041097266822,-0.6086940395866233,0.6086940395866233,0.3215041097266822,1.4166666666666667,2.3333333333333335,3.125,2.390540699444035,1574.2647727562935,33.41133089340096,30.474633948355326,12.291130529283054,19.10873201082007,15.430265920058089,7.13288223881919,4.133771422179343,5.24050141764665,2.6953179254686948,3.588282067121583,1.6455678981006476,2.408566537153891,-2.25,374582988.87216026,5.124166410177491,6.7025904456291086,3.0452495819741783,169.7173064222098,14.026475781290461,11.49902366656781,7.1167989634783595,0.0,0.0,5.156436481820707,9.960981791176462,0.0,4.9839785209472085,0.0,0.0,25.78862164991795,42.742622712278674,47.25233702188884,40.11197187068263,22.209255908617813,0.0,14.94496031212367,0.0,24.565177601562226,14.075904917765177,41.1209823120471,0.0,11.49902366656781,9.473725907600098,0.0,11.49902366656781,0.0,33.57361510357921,16.880811358535446,13.703784234591359,41.49448498930643,29.45658781562535,1.4118420783282006,11.033401435232523,0.0,83.09,113.47034440656012,4.552749873690364,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,19.441682949494513,26.085496089392155,171.18372661512328,-3.3650682765390094,7.1913193333909415,-1.1153298217435121,-9.173392456474689,-2.4114815415721456,-2.8261432869895255,-1.33824603870433,-6.9708796617958475,-6.702282642472922,0.29411764705882354,24,1,6,0,0,0,1,2,3,5,1,7,9,0,0,0,3,2.8997400000000004,93.02110000000005,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3011155,COc1nc(N)nc2c1ncn2[C@@H]1O[C@H](CO)[C@@H](O)[C@@H]1O,0,8.754765329743007,-3.8176144416099778,8.754765329743007,0.1007501889644753,0.5056130599451503,297.27099999999973,282.151,297.10731858000037,114,0,0.24646852433062807,-0.4792780303106493,0.4792780303106493,0.24646852433062807,1.7142857142857142,2.6666666666666665,3.4285714285714284,2.4475003813793594,1165.478222393058,27.698306133819763,24.777309429819105,9.777309429819105,16.287771329196683,12.284109056514819,5.164936994123312,3.6468977711105537,3.6468977711105537,2.4933332845157627,2.4933332845157627,1.6299112105356326,1.6299112105356326,-2.01,29656749.170842353,4.744862133680584,5.074455413104342,2.0831339685908015,139.77532898852186,30.519867456648008,19.610812637020185,20.19151490497694,16.12192658911977,0.0,0.0,4.567099647791355,4.9839785209472085,9.967957041894417,0.0,0.0,0.0,0.0,32.23713642129708,41.33142019928035,17.112217219370486,4.293598971697903,19.519035210632982,0.0,24.44400689078652,19.31665467752515,6.303371713966227,0.0,5.879988336435371,10.456579929526322,5.948339280986494,5.879988336435371,0.0,70.97605053830138,4.736862953800049,0.0,19.911538371638752,6.303371713966227,2.8236841566564013,11.16387793838399,0.0,148.76999999999998,67.33652186235747,0.0,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,35.01522308996331,25.561731643856557,125.42583327748123,0.0,10.790815336158952,11.999137972784256,-1.8547228154474729,-1.8664245034433522,0.0,-16.240131212207107,-3.739248748435708,-3.181925973557468,0.5454545454545454,21,5,10,0,1,1,0,2,2,10,4,10,8,0,1,1,3,-1.9713999999999994,69.2968,0,3,0,1,0,4,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10253143,O=C(NCC1CCOCC1)c1cnc(Nc2ccc(Cl)cc2Cl)nc1C(F)(F)F,0,14.221428432141742,-5.794453958280846,14.221428432141742,0.2178473826207865,0.6923406863851137,449.2599999999997,432.124,448.0680658040005,156,0,0.4338482097311503,-0.38142830310566556,0.4338482097311503,0.38142830310566556,1.4482758620689655,2.1724137931034484,2.8620689655172415,2.270832137243376,1558.6098595355402,36.12687384302478,30.495173327973696,15.007031220010605,20.36360263493826,15.490565191218613,7.852066946237151,4.780096313058138,5.536025259076593,2.8519084195728492,3.314388318054928,1.7051042740995432,2.0792013661977253,-2.0999999999999996,1301512577.4970202,8.564981654729186,9.146825889576842,5.71031414885692,198.3200411757358,15.356489660376802,0.0,8.517612151504862,5.948339280986494,5.907179729351506,6.176298517443475,4.794537184071822,9.967957041894417,13.171245143024459,0.0,23.20187978046503,36.76706361101172,40.40566858789617,27.23953952948364,46.08770778010605,40.744785065486596,0.0,15.277770395182792,5.893957685363079,18.922148320102234,24.9246435234369,45.60279744783275,0.0,0.0,10.619626706576751,24.80697069869452,0.0,23.20187978046503,35.48996694139445,10.913161471243523,5.893957685363079,49.359144815829374,24.300151333804646,12.868950784139054,0.0,0.0,76.14,112.88645226175652,17.96578232709628,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,14.704819995694464,46.58694227967476,182.22236132533644,11.613467589875135,19.44607019765614,-2.9475196614371075,-5.480484024364196,-8.54488135249104,-2.7272060428853973,-16.151490308562796,-12.62476216757161,0.0,0.3888888888888889,29,2,6,0,1,1,1,1,2,5,2,11,5,0,1,1,3,4.702200000000003,102.65490000000004,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,2,0,0,0,0,0,0,0,0,3,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54718859,Cn1c(=O)c(C(=O)NCCO)c(O)c2ncc(Cc3ccc(F)cc3)cc21,0,14.159998006240599,-3.864752789532475,14.159998006240599,0.3420726515915007,0.6228441104676441,371.36799999999977,353.2240000000001,371.12813427600054,140,0,0.29325698303493564,-0.5046591260881979,0.5046591260881979,0.29325698303493564,1.4814814814814814,2.2962962962962963,3.0,2.5664139014161442,1764.8939128147204,34.93627491978329,30.852598421364554,12.852598421364553,20.33738172130014,15.584436578109878,6.820726401682193,4.710310970794362,4.710310970794362,3.0913617928893964,3.0913617928893964,1.9813344877256205,1.9813344877256205,-3.259999999999999,1287270436.6448762,6.4165868647695605,7.545807958898767,3.6538870290317518,178.7919153202948,20.094529383294155,16.897373050359153,7.161353911612106,1.4311996572326342,12.897646281636147,0.0,14.573052889090853,4.39041504767482,0.0,0.0,12.08483741532659,35.62708400771325,26.49937457626405,25.783271522234745,41.37578903484258,16.94058116458403,2.8623993144652684,14.86089152202694,6.975826900282246,6.372924901329379,13.055844927232233,69.24636814439194,0.0,5.749511833283905,10.869080248340383,4.39041504767482,5.749511833283905,0.0,41.594118522002,13.348751801611625,5.817220841045895,42.04627000171613,41.17952593320306,1.4118420783282006,11.033401435232523,0.0,104.45,118.85633404032032,13.979489415818463,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,15.201594903161634,24.835619735346768,155.13980878902925,0.0,30.288536192249953,6.9920880640726635,-8.531292407759741,-5.2059450017352455,-6.589711972529311,-4.784032655592504,-11.30945100773508,0.0,0.21052631578947367,27,3,7,0,0,0,1,2,3,6,3,8,8,0,0,0,3,1.0911000000000004,97.27380000000001,0,1,0,0,0,2,0,1,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +5282481,CN(C/C=C/C#CC(C)(C)C)Cc1cccc2ccccc12,0,8.74723048941799,-4.046771660052912,8.74723048941799,0.7011537462207098,0.7258618266744273,291.4379999999995,266.23799999999994,291.19869980000067,114,0,0.07172351601307972,-0.2984093955571226,0.2984093955571226,0.07172351601307972,1.2727272727272727,2.090909090909091,2.909090909090909,3.1099127214905047,1628.2243713155556,37.419767061838236,35.94721359549996,10.947213595499958,20.651329776737835,18.170820393249937,5.670820393249937,3.8090169943749475,3.8090169943749475,2.0788118960624633,2.0788118960624633,1.2762093469062212,1.2762093469062212,-2.039999999999999,1115895436.2701812,3.3968562059868157,7.292121272244438,5.057600097744207,169.3211494436685,0.0,0.0,0.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,60.18987133738992,49.91947491883144,40.340846736752205,12.33682700553198,34.2689639042555,10.772448428929591,0.0,4.899909730850478,5.41499046939678,27.05253603620298,13.47268658459819,59.964525937411196,0.0,11.840868637711289,0.0,0.0,0.0,0.0,18.372596315448668,6.496859684315945,17.25585910710807,60.388091747839596,54.401074445714194,0.0,10.772448428929591,0.0,3.24,121.57709718738923,0.0,0.0,0.0,0.0,0.0,11.840868637711289,0.0,0.0,0.0,34.2689639042555,200.0301160602833,0.0,-0.7011537462207098,-1.77572725599147,-5.173937168450469,2.9421174932560765,-10.943717472541149,0.0,-23.627697910335588,0.0,0.3333333333333333,22,0,1,0,0,0,2,0,2,1,0,1,5,0,0,0,2,4.877300000000004,96.65300000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54677470,Cc1cnc(NC(=O)C2=C(O)c3ccccc3S(=O)(=O)N2C)s1,0,13.330355888516511,-5.44817022024859,13.330355888516511,0.1957016290854663,0.8613672076779287,351.4089999999998,338.30500000000006,351.03474789600034,120,0,0.29325192951151136,-0.5048615466844338,0.5048615466844338,0.29325192951151136,1.565217391304348,2.391304347826087,3.0869565217391304,2.401642591716391,1414.6496810148567,27.704224112214405,23.791130529283052,12.424123691138506,16.277833989545833,11.983630917791743,7.884728941556287,4.0056221774684495,6.706672326624643,2.642838738423656,4.788782853929594,1.683627785912757,3.342957917100012,-2.3899999999999997,28813830.95081045,6.250132607601729,5.355825178237105,2.470915259971133,154.91335595420193,5.1088081911072125,0.0,17.99960474287954,0.0,17.361670539991724,0.0,14.40956652865643,13.401775505276145,0.0,11.336785877934737,12.08483741532659,18.93672953262227,31.813872133516618,11.749276256368875,34.8113285557086,38.157980112189335,1.4311996572326342,9.289194512243443,0.0,11.747375592813455,12.285640253570621,46.48020803992206,0.0,0.0,5.309813353288376,5.131558479839333,0.0,11.336785877934737,35.69880631731334,14.817828337479405,6.851892117295679,25.51894280327071,40.935092830041555,1.4118420783282006,7.19036452888881,0.0,99.59999999999998,96.32982075856862,13.212334168400758,0.0,16.646599231223114,0.0,0.0,0.0,0.0,0.0,10.092786712054421,17.921385853433254,126.05528414314125,0.1957016290854663,14.847011390401992,3.3427053938859483,-2.5079214957587976,-3.0372676130637437,-4.291853639700549,-0.8246306213026993,-6.580858966440276,-5.44817022024859,0.14285714285714285,23,2,7,0,1,1,1,1,2,6,2,9,5,0,0,0,3,1.95092,86.42030000000003,0,1,1,0,0,1,0,0,0,0,1,1,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0 +2240,C[C@@H]1CC[C@H]2[C@@H](C)C(=O)O[C@@H]3O[C@@]4(C)CC[C@@H]1[C@]32OO4,0,13.328919241307633,-4.970138888888888,13.328919241307633,2.620853174603173,0.5042031477298718,282.33599999999956,260.15999999999997,282.1467238040006,112,0,0.31097180359286625,-0.4320284473802694,0.4320284473802694,0.31097180359286625,1.3,2.25,3.05,2.477393908449171,1241.8902158405385,33.40577739393582,31.541241452319316,9.541241452319316,18.04204064721467,16.345535683290187,5.345535683290188,4.243473610674222,4.243473610674222,3.0661103807236625,3.0661103807236625,2.148777617235708,2.148777617235708,-0.6500000000000001,148893472.88085243,3.312576054725085,3.95962278386191,1.460653327339192,149.27946535276658,9.473725907600098,1.3707585561702202,5.601050810983688,12.053189521107495,0.0,5.969305287951849,4.794537184071822,9.775141906512223,0.0,0.0,13.703784234591359,31.864624506646898,46.94676995163019,5.893957685363079,54.20009323392903,5.969305287951849,0.0,0.0,23.575830741452314,63.70161628929573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.623545620043032,24.043404998184144,23.575830741452314,76.2040641929494,0.0,0.0,0.0,0.0,53.99000000000001,93.2467523186999,7.536054296412263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.624433907056162,37.039605030460564,194.87247472600149,0.0,22.838379747732425,0.0,-4.787291666666668,-26.25734811980348,0.0,-23.43803252551021,-13.06151549508693,0.0,0.9333333333333333,20,0,5,1,4,5,0,0,0,5,0,5,3,1,4,5,5,2.3949000000000007,68.04700000000005,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9800961,CC(C)[C@@H]1C(=O)N(S(C)(=O)=O)[C@@H]2CCN(C(=O)/C=C/CN3CCCCC3)[C@@H]12,0,14.317758448286721,-6.887382335879284,14.317758448286721,1.1406469644089148,0.6487606737046842,397.5409999999996,366.2930000000002,397.20352747200087,152,0,0.24612571432203306,-0.33317213885119434,0.33317213885119434,0.24612571432203306,1.4444444444444444,2.185185185185185,2.8518518518518516,2.657944400122819,1889.048767556019,47.04145188432739,43.88288223881919,13.699378819746917,24.740810621445153,22.167134336864017,8.107197665664657,4.694996637605022,6.010277688931444,3.0632297624063884,3.8923432232439903,2.0944104066872558,2.7764727202649873,-1.4100000000000001,77971189902.63365,4.50754786728607,7.9110944540936785,4.060669490905925,205.5185192025114,4.899909730850478,0.0,0.0,21.837650612110593,0.0,0.0,14.488984098994122,12.72301297562517,0.0,0.0,26.128780881956306,38.00645175798311,56.05627213126345,29.596700947859702,60.50038659374946,21.837650612110593,0.0,14.105035452997189,11.787915370726157,51.23126877660816,32.17136283838023,12.104143492071133,0.0,0.0,0.0,0.0,0.0,0.0,78.54433967110867,19.612365521551226,11.787915370726157,81.6889990811857,12.104143492071133,0.0,0.0,0.0,78.0,143.23737654289354,19.3776299086428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.122756685106616,279.14009706507323,0.0,25.9847358019422,0.0,0.0,-16.752240161928015,-15.65076164558646,-22.514102372513847,-27.987013017774487,-6.887382335879284,0.7894736842105263,27,0,7,0,3,3,0,0,0,5,0,8,8,0,3,3,3,1.0720000000000016,103.35480000000005,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +4485,COC(=O)C1=C(C)NC(C)=C(C(=O)OC)C1c1ccccc1[N+](=O)[O-],0,13.335891872952883,-4.213819444444444,13.335891872952883,0.6423270975056687,0.5055052971214055,346.3389999999997,328.19500000000005,346.11648629600046,132,0,0.33597830173148835,-0.4655800306723669,0.4655800306723669,0.33597830173148835,1.24,1.8,2.28,3.542998779654025,1387.455083929363,33.99711733102786,29.843916933783095,11.843916933783095,18.996464791128304,14.957927231811597,6.010713636311638,4.193772679572436,4.193772679572436,2.8911365760606587,2.8911365760606587,1.9586796182576394,1.9586796182576394,-3.1599999999999997,209655311.7158861,5.686913158634396,7.163418786222467,3.232043293699175,169.16122736042993,14.783539260888475,0.0,1.4118420783282006,0.0,5.687386274683562,11.938610575903699,10.114318268765572,9.589074368143644,0.0,0.0,18.127256122989884,13.703784234591359,32.595258718663494,49.7469682737867,48.700848857783384,17.62599685058726,0.0,5.309813353288376,0.0,19.597741919954437,14.075904917765177,62.38773227736595,0.0,0.0,5.309813353288376,5.687386274683562,0.0,0.0,30.937826542486548,19.06280027574374,10.114318268765572,48.46408886654521,46.70996251690338,1.4118420783282006,0.0,0.0,107.77000000000001,113.80618209901331,21.074151193079437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,23.34397897705172,148.5186339968086,0.0,37.23756275195262,11.492902730536656,-11.497966742252455,-9.095560752078608,-5.961213073192239,0.0,-7.847162934618297,-7.597195977156298,0.29411764705882354,25,1,8,0,1,1,1,0,1,7,1,8,8,0,0,0,2,2.1756,88.40510000000003,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24802841,COC[C@]12CNCC[C@@]1(c1ccc(Cl)c(Cl)c1)C2,0,8.668366874527589,-4.012318712207107,8.668366874527589,0.656589366199154,0.92053724643436,286.2019999999997,269.06600000000003,285.06871952400047,98,0,0.12221615657821691,-0.3840267879070104,0.3840267879070104,0.12221615657821691,1.6666666666666667,2.5555555555555554,3.388888888888889,2.674110932693416,1074.219922618247,27.74855866551393,25.611390831982277,10.123248724019184,15.287233800108742,13.180639954473007,5.489355304991503,3.667498814866127,4.423427760884582,2.7017308640758,3.365409622799313,1.7799544947476744,2.016182290378441,-0.28000000000000014,10532641.170900723,3.6739303496755755,4.378233642578125,1.7031957783033205,141.55177272958073,10.046676307088426,1.4118420783282006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.24429848812833,36.89099839399829,35.33086153135386,27.570320319760697,28.080841930851765,23.20187978046503,0.0,5.309813353288376,5.41499046939678,18.160840272055538,26.590657070430765,33.73597424216953,0.0,0.0,5.309813353288376,0.0,0.0,23.20187978046503,26.590657070430765,10.15185342319683,5.41499046939678,40.24143819307929,18.127256122989884,11.457108705810853,0.0,0.0,21.259999999999998,89.212275407341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,46.545858757516775,143.6426792664167,11.806075072767516,0.0,-2.1463514940441186,-8.489755605946081,0.0,-3.2852653769841247,-7.516271573444194,-11.636695719954655,-3.6521923465888433,0.5714285714285714,18,1,2,1,1,2,1,0,1,2,1,4,4,1,1,2,3,3.261000000000001,74.55270000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5281004,CCCC1O[C@@H]2C[C@H]3[C@@H]4CCC5=CC(=O)C=C[C@]5(C)[C@H]4[C@@H](O)C[C@]3(C)[C@]2(C(=O)CO)O1,1,15.080227061790685,-5.8894350749559115,15.080227061790685,2.089065362892109,0.7124527920741569,430.54099999999954,396.2690000000002,430.23553880800085,170,0,0.21067790932795719,-0.392760680919268,0.392760680919268,0.21067790932795719,1.5483870967741935,2.4838709677419355,3.2580645161290325,2.3213682231514547,2209.7146305695123,51.79252873988395,48.94948974278318,14.949489742783179,28.19899425818826,25.19948974278318,8.382993161855453,6.7163264951887856,6.7163264951887856,5.171609241032903,5.171609241032903,3.851849465442288,3.851849465442288,-1.34,3645004426608.396,5.3218120422494675,7.077732320442025,2.6509012112996055,231.1704396267868,19.69134228981452,6.558985242916289,23.433619072250465,2.8623993144652684,0.0,0.0,9.589074368143644,0.0,0.0,0.0,38.55377752932125,55.75668336944418,49.62214397224195,23.126104503261733,73.14469045540525,11.566489892729878,2.8623993144652684,0.0,28.511853994882795,82.82039099328387,6.558985242916289,23.729319768175966,0.0,0.0,0.0,0.0,0.0,0.0,55.23265606574642,19.06280027574374,28.511853994882795,102.65749955731025,23.729319768175966,0.0,0.0,0.0,93.06,153.18703989198877,19.87288130194424,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,41.12205490163999,310.4080312597559,0.0,28.34025928979088,8.015797498626544,-18.91048504703214,-22.60401271570057,-6.637983962004837,-47.334410976294656,-19.527195347141237,0.0,0.76,31,2,6,4,1,5,0,0,0,6,2,6,9,3,1,4,5,2.7168000000000014,112.86660000000005,0,2,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4888,CC(C(=O)O)c1ccc2c(c1)Cc1cccnc1O2,0,12.164936680199578,-3.58912416289085,12.164936680199578,0.6462258939069454,0.764394638736214,255.27300000000008,242.16899999999995,255.089543276,96,0,0.31018556180095774,-0.48078850087329844,0.48078850087329844,0.31018556180095774,1.6842105263157894,2.6315789473684212,3.473684210526316,2.4845075887355517,1162.974298969622,24.549523573835156,22.171958466891546,9.171958466891548,14.527833989545831,11.421958466891548,5.013710176427685,3.4974030585716247,3.4974030585716247,2.2956680258007958,2.2956680258007958,1.445191331412622,1.445191331412622,-2.36,4575012.99600082,4.065873568160133,4.387759596716938,2.053838354521441,128.58267045262014,9.84567114490726,5.749511833283905,0.0,5.879988336435371,1.4311996572326342,5.969305287951849,4.794537184071822,4.9839785209472085,0.0,0.0,18.127256122989884,30.06363251601626,26.333822940862454,14.118509022384398,31.08931100302172,5.969305287951849,1.4311996572326342,4.9839785209472085,0.0,19.118774703988137,0.0,53.075343224222216,0.0,11.629500169719275,4.736862953800049,0.0,11.629500169719275,0.0,16.06209200000627,11.167462085401201,0.0,45.885306951792415,36.38498874913123,0.0,1.4311996572326342,0.0,59.42,89.7929233858815,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,22.61716528507532,108.08106664589617,0.0,15.751116258506004,3.67151886204691,-2.7645161197194916,-6.908540351593653,-4.8442258202255495,-3.647295312019563,-3.58912416289085,0.0,0.2,19,1,4,0,1,1,1,1,2,4,1,4,3,0,0,0,3,2.9662000000000006,69.60980000000004,1,0,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2708,O=C(O)CCCc1ccc(N(CCCl)CCCl)cc1,0,11.668808750590788,-4.047296863189723,11.668808750590788,0.5362411581240494,0.7110607782360152,304.2169999999997,285.06500000000005,303.07928420800056,106,0,0.3028514950889796,-0.4812302517004031,0.4812302517004031,0.3028514950889796,1.3157894736842106,1.9473684210526316,2.473684210526316,4.265784018814886,1041.3827330775305,30.825908934703556,28.019639122446137,10.531497014483048,16.490140289311125,13.865281447186891,5.212962102741482,2.6340635071948055,3.0120279802040333,1.4955944924637654,1.6646253434094684,0.849255808687056,1.018286659632759,-0.9299999999999999,17996148.754261572,3.831598748465363,9.050250670878938,6.168099314738836,150.45417177219196,10.00871792195769,0.0,0.0,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,23.20187978046503,12.08483741532659,30.394138709682345,50.42582955309449,10.96606844936176,34.576999386242996,34.858571343100444,1.4311996572326342,0.0,0.0,19.118774703988137,29.557842546229782,29.733126322350174,0.0,0.0,4.899909730850478,5.687386274683562,0.0,23.20187978046503,35.73604629443837,11.167462085401201,0.0,42.982955305419736,24.16967483065318,0.0,1.4311996572326342,0.0,40.54,90.0664351352035,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,49.30673344876166,149.1219386677372,10.850125591116727,11.132567592466739,3.4050437167383416,-3.0375141198454694,-9.424669167769474,-6.239498561770384,-11.909797807542148,-7.759307022242631,0.0,0.5,19,1,3,0,0,0,1,0,1,3,1,5,9,0,0,0,1,3.377900000000002,80.66880000000005,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4659569,Cc1ccc(C(=O)c2cc(O)c(O)c([N+](=O)[O-])c2)cc1,0,13.023295540438395,-3.054921597745822,13.023295540438395,0.9626305138931397,0.38710486030618185,273.24399999999974,262.15599999999995,273.0637224520003,102,0,0.31489202437808306,-0.5040605297266924,0.5040605297266924,0.31489202437808306,1.3,2.05,2.6,2.9773878747342684,1086.5369416819212,23.99711733102786,20.488455047819272,9.488455047819274,14.215537700602269,10.26762418604361,4.951127605115885,3.4680890185308226,3.4680890185308226,2.1649360882993385,2.1649360882993385,1.2773688783140709,1.2773688783140709,-2.8900000000000006,2587346.372919139,5.240306383550188,5.004554624716358,2.4403764926133196,129.2493628993902,10.217616382214425,0.0,11.532756779648844,5.749511833283905,2.8623993144652684,5.687386274683562,14.908855452837393,0.0,0.0,0.0,29.733126322350174,12.894310824958975,21.281597359567943,13.147862385838991,32.2722916206359,11.470631221048501,2.8623993144652684,0.0,0.0,6.851892117295679,0.0,63.059184989836325,0.0,11.49902366656781,0.0,5.687386274683562,11.49902366656781,0.0,23.786571691862306,0.0,16.966210386061253,33.82171866469479,36.25451224597977,0.0,0.0,0.0,100.67,87.68972477480042,14.908855452837393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,15.199226319997248,83.41607713134229,0.0,23.110656557848113,19.35740692284974,-4.4506667530801725,-3.734912831676902,-6.726972762870579,0.0,-3.054921597745822,0.0,0.07142857142857142,20,2,6,0,0,0,2,0,2,5,2,6,6,0,0,0,2,2.545420000000002,71.03750000000001,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2265,Cn1cnc([N+](=O)[O-])c1Sc1ncnc2nc[nH]c12,0,11.20106045813387,-2.9321335270219206,11.20106045813387,0.12951814058956912,0.43328794180573177,277.2689999999999,270.213,277.0381934640002,96,0,0.3958381246344442,-0.3577269778122726,0.3958381246344442,0.3577269778122726,1.5789473684210527,2.473684210526316,3.263157894736842,2.2760277713280477,1045.6191377803725,19.386386867018626,15.855240039891296,9.671736620819022,12.001926321037866,8.101105426133639,5.470388411561407,3.159724570767834,4.137245378133739,2.0560969254168024,3.0925798866049172,1.28098160482915,2.1277763213394323,-2.49,468811.72225460585,6.103089680820934,4.314847409507476,1.9088660706621567,119.7109241053808,19.65842118678618,20.95830807876239,12.08497927776517,6.303371713966227,0.0,5.817862777835028,0.0,14.951935562841626,0.0,0.0,0.0,21.669174519155995,11.088102568792905,6.303371713966227,14.559704464167192,28.743625665610132,0.0,29.480017001809436,6.975826900282246,10.051919957338482,0.0,29.02443341066426,0.0,0.0,0.0,5.817862777835028,0.0,11.761884949391115,34.40332805062711,6.975826900282246,10.114318268765572,8.224551337021321,28.962035099237163,1.4118420783282006,11.16387793838399,0.0,115.41999999999999,41.65307584750287,10.114318268765572,0.0,16.189837917053232,21.305987867411723,0.0,0.0,0.0,0.0,19.935914083788834,9.636393415349522,53.285491491349624,0.4315509259259256,25.223079149869825,10.480348062064333,-0.29507464096749736,-0.878184523809524,0.0,-1.898410270744099,-2.9321335270219206,0.0,0.1111111111111111,19,1,9,0,0,0,0,3,3,8,1,10,4,0,0,0,3,1.1457999999999997,65.66910000000001,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,6,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +137654606,CC[C@H]1OC(=O)[C@H](C)[C@@H](O[C@H]2C[C@@](C)(OC)[C@@H](O)[C@H](C)O2)C[C@@H](O[C@@H]2O[C@H](C)C[C@H](N(C)C)[C@H]2O)[C@](C)(O)C[C@@H](C)[C@@H]2N[C@@H](COCCOC)O[C@H]([C@H]2C)[C@]1(C)O,0,16.961606150333143,-8.231461338610279,16.961606150333143,2.0561923933875415,0.14150799367729816,821.0590000000029,744.451,820.5296551120022,334,0,0.3111772313613253,-0.4589367635825207,0.4589367635825207,0.3111772313613253,1.0526315789473684,2.017543859649123,2.7017543859649122,3.2737020821988367,4281.340127954346,107.92443896299399,103.109903257494,27.109903257494,56.798047963616916,51.393096086439726,13.812889329084319,9.963248877894914,9.963248877894914,6.213898681410842,6.213898681410842,3.7420062238731466,3.7420062238731466,-1.0900000000000005,3.7859771961246696e+45,9.261985464785294,20.187795041841994,11.441557700592373,447.1661666952809,67.96690907947978,31.456899780098404,12.532156737073795,5.724798628930537,0.0,5.969305287951849,10.104350537360197,0.0,0.0,0.0,20.555676351887037,80.07573889368977,110.54790803865677,98.70055196274421,166.59723609911467,5.969305287951849,5.724798628930537,10.209723084138854,17.681873056089238,189.74684469456864,47.70451444707853,0.0,0.0,0.0,5.309813353288376,0.0,0.0,0.0,180.9489519915009,47.42630376827226,17.681873056089238,190.85551105039335,0.0,1.4118420783282006,0.0,0.0,196.32999999999998,271.3122605698272,42.534598763434815,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,48.85641048722915,76.13648829330974,729.7273229691465,0.0,14.905413756945602,13.491475393123284,-21.696022794691682,-27.788392958329915,-14.014549680994612,-112.07177474758667,-84.6111676597263,-9.775637611219913,0.975609756097561,57,5,16,0,4,4,0,0,0,16,5,16,29,0,4,4,4,1.9557000000000087,208.97689999999918,0,4,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +27350,CC(=O)O[C@H]1C[C@@H]2CC[C@@H]3[C@H](CC[C@@]4(C)[C@H]3C[C@H]([N+]3(C)CCCCC3)[C@@H]4OC(C)=O)[C@@]2(C)C[C@@H]1[N+]1(C)CCCCC1,0,14.437815127743429,-7.372532964019712,14.437815127743429,3.61243412397135,0.30133279842362654,572.8750000000027,512.3950000000004,572.4542112401816,232,0,0.30265038490977136,-0.45620630343491164,0.45620630343491164,0.30265038490977136,0.7804878048780488,1.4390243902439024,2.073170731707317,2.329190694468591,3429.1773734841913,82.06891410075235,80.02742035285537,20.02742035285537,42.755654169683154,41.01359925339142,11.013599253391419,8.548355370326108,8.548355370326108,6.075847243946493,6.075847243946493,4.325861264567373,4.325861264567373,-1.1400000000000001,1.662200130802446e+30,5.474231761891799,10.786724576322717,4.99022833752274,333.90027097890766,18.439787622989346,14.77730204903973,12.160036053899976,0.0,0.0,11.938610575903699,9.589074368143644,0.0,0.0,0.0,13.703784234591359,99.09299512547229,89.43648386579613,61.87122943655184,110.27437536134613,11.938610575903699,0.0,0.0,34.405811680245876,134.45141317706393,39.93909253782827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.03958581972049,19.06280027574374,34.405811680245876,192.50110555667763,0.0,0.0,0.0,0.0,52.6,229.70098968643103,58.93638239027162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,32.89820534808528,560.2180465400456,0.0,28.576441918817736,0.0,-14.371734097181887,-36.06834401953706,-14.369306424226297,-95.23200211339505,-60.169768471189606,0.0,0.9428571428571428,41,0,6,4,2,6,0,0,0,4,0,6,10,4,2,6,6,6.110500000000007,160.71579999999972,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0 +5287792,Cc1ccc2c(c1)C(=O)[C@]1(O)CCN(c3ccccc3)C1=N2,0,13.84763705173427,-3.6044979450113397,13.84763705173427,0.17352619520030244,0.8790197909352631,292.3379999999997,276.21,292.1211777520005,110,0,0.21216064407497381,-0.3740829945419736,0.3740829945419736,0.21216064407497381,1.4090909090909092,2.272727272727273,3.0454545454545454,2.2278435973903674,1437.0022302150758,29.074467600217485,26.710923771927643,10.710923771927643,17.228009713793433,13.934530569677623,6.026282279213759,4.465147750704714,4.465147750704714,3.1380756656194797,3.1380756656194797,2.1347080440942916,2.1347080440942916,-2.4599999999999995,84170681.28917281,4.521896298442718,4.515793362888329,1.738282918635487,150.84359797399765,10.00871792195769,5.835619785757269,5.601050810983688,7.214444603597573,0.0,0.0,4.794537184071822,4.992404732635669,0.0,0.0,29.733126322350174,31.02156694794886,33.715932245217424,16.65345472404532,30.46472371773233,22.993637281489335,1.4311996572326342,0.0,4.992404732635669,18.825867829608747,11.396769415166423,59.46625264470035,0.0,0.0,4.899909730850478,11.374772549367124,0.0,0.0,30.25678307576169,0.0,6.851892117295679,42.85574341134851,53.33175439394203,0.0,0.0,0.0,52.9,107.7826174401144,4.794537184071822,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,10.101212923742882,21.992577999785933,129.5027627145872,0.0,17.92896842456118,4.516731623204837,-7.189069252465042,-2.784531420592929,-7.870888673262998,-3.6044979450113397,-6.666142137687558,0.0,0.2222222222222222,22,1,4,0,2,2,2,0,2,4,1,4,3,0,1,1,4,2.8627200000000013,85.95930000000004,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +135398739,O=c1[nH]cnc2c1ncn2[C@H]1CC[C@@H](CO)O1,0,12.100129250008848,-3.635380645313681,12.100129250008848,0.014382017843868722,0.7521450742487874,236.23100000000008,224.13499999999996,236.090940244,90,0,0.27839097089829556,-0.39367648020894125,0.39367648020894125,0.27839097089829556,1.9411764705882353,2.8823529411764706,3.764705882352941,2.40241966185328,1068.353816742967,22.36987900907357,20.01359925339142,8.01359925339142,12.99883632617514,10.18441964664136,4.328957760677537,2.9365874080307246,2.9365874080307246,1.972922046366304,1.972922046366304,1.2678315471158834,1.2678315471158834,-1.7300000000000002,1260437.1788393029,3.629456021824305,3.935096028973356,1.6331195862845582,113.0836968942611,14.822674415136515,8.945469922276995,12.575720016712191,1.4311996572326342,5.559266895052008,0.0,9.361636831863176,9.967957041894417,0.0,0.0,0.0,12.745849802658759,5.483034224680881,30.72878092247961,24.96509878493766,11.16387793838399,1.4311996572326342,19.512059959915025,0.0,25.0298206395453,6.558985242916289,22.960547507056283,0.0,0.0,5.559266895052008,0.0,0.0,0.0,38.69107107812115,4.736862953800049,0.0,32.65738817429751,17.40128061200428,1.4118420783282006,11.16387793838399,0.0,93.03,60.91869414383003,4.794537184071822,0.0,9.544102918020606,0.0,0.0,0.0,0.0,0.0,15.07676523300163,21.287490251063083,98.40694192936459,0.0,19.080617497381564,3.721242394136514,-2.7416915601116987,0.0,0.0,-16.30751881771227,-3.576258109725372,0.0,0.5,17,2,7,0,1,1,0,2,2,6,2,7,3,0,1,1,3,-0.21050000000000008,58.378500000000024,0,1,0,0,0,4,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17755052,CS(=O)(=O)N1CCN(Cc2cc3nc(-c4cccc5[nH]ncc45)nc(N4CCOCC4)c3s2)CC1,0,13.116371092759527,-6.35416144861807,13.116371092759527,0.20389798280423377,0.4326446499729263,513.6489999999999,486.4330000000003,513.1616797240008,184,0,0.2107895621217177,-0.37777586534916013,0.37777586534916013,0.2107895621217177,1.2571428571428571,2.085714285714286,2.8857142857142857,1.7647464774345112,2624.38764149807,47.85048848215638,43.67173662081902,18.304729782674475,27.451937598055192,22.56423700932771,11.373583323556119,6.419222078465673,8.755123855951753,4.283511034988811,5.924322611024802,2.8601559024092063,4.092491153429762,-2.6399999999999992,2498843916981.4556,7.682959610735294,9.099920948218415,4.5170534997203475,245.11258869791033,9.636772684650527,0.0,13.054109354163156,10.023291153407584,0.0,0.0,9.991616288433558,18.385754026223353,9.40389779959727,11.336785877934737,12.08483741532659,12.08483741532659,79.12470192028752,59.02797237967832,50.206224476882944,48.29748537534377,0.0,29.363471129925244,0.0,6.496859684315945,63.18296242369517,35.219717235169234,0.0,11.387855989696924,4.899909730850478,5.817862777835028,0.0,11.336785877934737,96.06432080709891,21.257013791523576,0.0,40.516869654127035,30.34257004146794,1.4118420783282006,32.50740155586334,0.0,107.55000000000001,157.55331082158258,8.417796984328938,0.0,21.328402166368296,0.0,0.0,0.0,0.0,0.0,19.803501803995502,37.05156453875392,255.9577280482625,-0.20389798280423377,5.674030033981348,3.1196370951098116,-2.4503973467378817,-2.3633010683174414,-4.169170653617024,-5.218781202523236,-37.57501880806915,-6.35416144861807,0.43478260869565216,35,1,10,0,2,2,1,3,4,9,1,12,6,0,2,2,6,2.1483999999999996,137.2284999999999,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,6,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0 +3440,NS(=O)(=O)c1cc(C(=O)O)c(NCc2ccco2)cc1Cl,0,12.221556004129283,-5.177456199262428,12.221556004129283,0.294822373393802,0.768936392874182,330.74899999999985,319.66100000000006,330.0077201320003,112,0,0.33734453280057997,-0.4775829717041931,0.4775829717041931,0.33734453280057997,1.7142857142857142,2.5238095238095237,3.142857142857143,2.9463811211954933,1202.937890489137,24.919767061838236,20.72188140679232,11.294306933738504,14.526721549520314,10.172613154296357,6.740751879142486,3.386092086093789,5.122437529223195,2.014317557236063,3.2319381580651796,1.201896450075601,2.13968157678043,-2.03,4312567.351913822,6.386767025574657,5.761535947024768,3.5422322582320587,140.63777732727652,14.835772481448934,14.850173607218839,1.4118420783282006,10.023291153407584,1.4311996572326342,5.969305287951849,0.0,18.33735740457279,0.0,0.0,11.600939890232516,24.16967483065318,0.0,37.234096736299904,36.56912942473746,33.28092260627551,1.4311996572326342,0.0,5.12502323617203,11.39234315983372,5.309813353288376,46.75522168980668,0.0,0.0,10.434836589460406,5.687386274683562,0.0,11.600939890232516,19.495910463388,16.520150837723527,0.0,25.713545987834795,39.72152387806504,9.258159548725928,1.4311996572326342,0.0,122.63000000000001,84.95257080185544,13.212334168400758,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,31.280126612694634,112.78408509230223,5.820966632023178,10.768323307718147,1.3940070041573913,-2.485599017384732,-2.8712830556605358,-4.411115415229622,-0.9251846396059358,-3.285632597946587,-5.177456199262428,0.08333333333333333,21,4,7,0,0,0,1,1,2,6,3,9,6,0,0,0,2,1.8907,75.81920000000002,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +16759177,O=C(/C=C/c1c(C(=O)[O-])[nH]c2cc(Cl)cc(Cl)c12)Nc1ccccc1,1,12.859320252792472,-2.062344781040668,12.859320252792472,0.1387095322773535,0.685921530794742,374.2029999999999,363.1150000000001,373.01522115191034,126,0,0.24788181646256144,-0.5431799901106976,0.5431799901106976,0.24788181646256144,1.32,2.04,2.72,2.3500436364750263,1508.4243306067553,27.54700538379252,22.87510100840996,13.386958900446869,16.57093764036735,11.779191290704855,7.140693045723393,4.365001706982891,5.120930653001346,2.8022770354934288,3.2747326267549632,1.8727866099094501,2.3836325329963652,-2.759999999999999,43839660.43827517,8.079267883853996,7.00654199322048,3.6772994516349193,167.99394905969018,20.187881202430155,0.0,2.8236841566564013,5.907179729351506,0.0,0.0,4.794537184071822,0.0,0.0,0.0,41.32913590345492,30.221746576688744,33.22846775823851,29.022693602073613,29.856112925172724,57.72074775056858,0.0,4.977003270229252,0.0,0.0,5.309813353288376,69.65164881370674,0.0,0.0,10.41634074812908,5.687386274683562,0.0,23.20187978046503,16.853488287532606,4.794537184071822,0.0,28.388743676149254,48.34900269967863,12.868950784139054,16.954996678116625,0.0,85.02000000000001,104.17051678381029,14.69560176298435,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,0.0,38.36239094265342,87.137902243001,11.965673985568696,24.806486016267968,9.925207723699302,-3.451592991488673,-3.7605030772809744,-8.400951677545084,0.0,0.0,0.0,0.0,25,2,5,0,0,0,2,1,3,3,2,7,4,0,0,0,3,3.490100000000001,96.75489999999998,0,0,0,0,1,1,1,0,1,1,2,2,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +130313,CC1(C)[C@H](C(=O)O)N2C(=O)C[C@H]2S1(=O)=O,0,12.958316326530612,-6.10793981481481,12.958316326530612,0.5923148148148152,0.5988163606060163,233.2450000000001,222.15699999999998,233.035793452,84,0,0.32760265106703207,-0.47967039298211034,0.47967039298211034,0.32760265106703207,1.8666666666666667,2.533333333333333,3.066666666666667,3.17484687034128,788.384445904909,20.939157588755425,17.89670333828314,7.713199919210863,11.258089481742248,8.933022743206791,5.007937700337321,2.8914026072983527,4.8973469494476864,2.028117024275221,3.8213756968077766,1.2977559566193508,2.6531749597060728,-1.11,124383.06491533479,3.443055153119066,2.520200086547386,0.9606841030180705,102.32603928579398,10.00871792195769,11.36781692052007,9.837253136417502,5.907179729351506,1.4311996572326342,5.969305287951849,4.794537184071822,13.212334168400758,0.0,0.0,0.0,13.703784234591359,10.96606844936176,13.861464466887377,36.823265105282005,21.713738153720858,1.4311996572326342,4.899909730850478,0.0,36.19154850965837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.4178392973276,19.426327504561144,0.0,33.78429469762294,0.0,0.0,1.4311996572326342,0.0,91.75,62.8051963942297,18.00687135247258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,15.138785218934833,103.8208479780801,0.0,23.513157123960692,-0.4433541194255466,0.0,-4.335046296296295,-4.130439814814816,-3.6401880196523058,-8.42703703703704,-6.10793981481481,0.75,15,1,6,0,2,2,0,0,0,5,1,7,3,0,2,2,2,-0.794999999999999,49.67360000000002,1,0,0,0,0,0,0,0,1,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +71360,COc1cc(C(C)=O)ccc1OCCCN1CCC(c2noc3cc(F)ccc23)CC1,0,14.477845094722767,-4.789856639472442,14.477845094722767,1.0922530233656238,0.3798624175213931,426.48799999999966,399.27200000000016,426.19548556400076,164,0,0.16956490169881766,-0.49284479341672527,0.49284479341672527,0.16956490169881766,1.3870967741935485,2.2580645161290325,3.064516129032258,1.984665784670817,2165.9056818728627,45.48868116259058,41.905384825864594,14.905384825864596,25.568944436199743,21.490728484731175,7.990728484731175,5.388666412115209,5.388666412115209,3.481563154519967,3.481563154519967,2.157561450356605,2.157561450356605,-2.9299999999999993,280745034395.21423,6.099795456271504,9.472927578394605,4.875991972693159,218.39221264964036,18.896730575423923,5.817220841045895,22.86528875457499,0.0,0.0,0.0,4.794537184071822,4.39041504767482,0.0,0.0,5.156663257125445,69.17647972823218,51.315048682227676,34.369209814519756,60.19225409291609,16.75248930247198,0.0,10.056572987975922,0.0,31.864624506646894,33.08751675474671,53.32911257357112,0.0,11.49902366656781,9.473725907600098,4.39041504767482,11.49902366656781,0.0,48.92733468908757,0.0,5.817220841045895,84.92702219386008,40.77760718295311,0.0,10.969244356107037,0.0,64.80000000000001,151.43267653485503,9.184952231746642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.893526210925494,46.27043890736936,251.5238127648678,0.0,11.495231427629804,2.113440624046529,-4.096212104611103,-11.359611180093975,-8.844212094620964,-13.646869192581299,-22.142782900096634,-3.709464011206766,0.4166666666666667,31,0,6,0,1,1,2,1,3,6,0,7,10,0,1,1,4,4.826600000000004,115.49250000000005,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +135398508,C=C1[C@@H](n2cnc3c(=O)[nH]c(N)nc32)C[C@H](O)[C@H]1CO,0,12.539889895007587,-3.8451028675359034,12.539889895007587,0.07021690505862566,0.5301148369563783,277.2839999999997,262.164,277.1174893400004,106,0,0.2799847972923358,-0.3956489038981603,0.3956489038981603,0.2799847972923358,2.05,3.0,3.75,2.639008219970021,1290.5773574373993,27.10192981664245,24.46081284889138,9.46081284889138,15.828457460193583,12.256577780623186,5.098440413195585,3.7029795687562554,3.7029795687562554,2.566900501765341,2.566900501765341,1.6986331493273987,1.6986331493273987,-2.19,19358529.528416317,4.153280851333882,4.426373494992552,1.72699905191206,134.56225233367928,20.50443300573205,1.3707585561702202,15.399404173368593,8.810738595451763,5.559266895052007,0.0,9.771540454301075,4.9839785209472085,4.9839785209472085,0.0,6.531038962001867,11.946029431398646,10.00623335387374,33.18481878920347,28.16072817890122,17.112217219370482,2.8623993144652684,19.512059959915025,5.893957685363079,18.470835396629013,12.278702218642561,28.761319285161186,0.0,0.0,11.27898387077828,5.948339280986494,0.0,0.0,45.231078926460995,0.0,5.893957685363079,26.09840293138122,23.20205239010918,4.235526234984602,11.16387793838399,0.0,130.05,72.00277764536824,4.794537184071822,0.0,15.263819893746879,0.0,0.0,0.0,0.0,0.0,20.185573424108842,20.80551111115207,119.24955633702949,0.0,19.57701315749746,7.948297235739515,-5.0887568264284075,-4.828765327118502,-3.617161281179139,-8.881533210506426,-5.441983418367347,0.0,0.4166666666666667,20,5,8,1,0,1,0,2,2,7,4,8,5,1,0,1,3,-0.827800000000001,71.9377,0,2,0,1,0,4,1,0,0,0,0,0,0,0,0,3,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3657,NC(=O)NO,0,10.118194444444445,-1.3564814814814812,10.118194444444445,0.3055555555555558,0.25664360627911675,76.05499999999998,72.023,76.027277368,30,0,0.33539090853305475,-0.3498912803677604,0.3498912803677604,0.33539090853305475,2.8,3.6,3.8,3.7292088557923253,106.74075768464921,7.439157588755425,6.210923771927642,2.210923771927642,4.09142281507558,2.5838010035306818,0.8339119265669448,0.37386127875258307,0.37386127875258307,0.07809262867138281,0.07809262867138281,0.0,0.0,-0.77,75.58143215472592,0.844245622492726,1.5395975232198151,3.2300000000000026,34.41952041568157,5.719716975726273,0.0,2.8236841566564013,2.843041735560835,0.0,6.031114512338072,5.209533821043797,10.267658531475067,0.0,0.0,0.0,0.0,0.0,0.0,15.670796897332856,6.031114512338072,0.0,5.4731213474032465,5.719716975726273,0.0,0.0,0.0,0.0,0.0,11.19283832312952,4.794537184071822,0.0,0.0,11.24064833338187,0.0,0.0,0.0,0.0,5.666725892217236,0.0,0.0,75.35000000000001,6.031114512338072,4.794537184071822,0.0,11.19283832312952,0.0,0.0,0.0,0.0,0.0,5.209533821043797,5.666725892217236,24.791944444444447,0.0,10.118194444444445,3.292037037037037,-0.6790277777777782,0.0,-1.3564814814814812,0.0,0.0,0.0,0.0,5,4,4,0,0,0,0,0,0,2,3,4,1,0,0,0,0,-0.9561000000000002,14.5056,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +1935,Nc1c2c(nc3ccccc13)CCCC2,0,8.232234977324262,-3.470476072373394,8.232234977324262,0.20013180272108855,0.7064882384087371,198.2690000000001,184.15699999999995,198.115698448,76,0,0.1562476378577553,-0.39790227593023253,0.39790227593023253,0.1562476378577553,1.3333333333333333,2.2,3.1333333333333333,2.72308046745238,1044.2084297452918,22.480609473082808,21.394427190999917,7.394427190999916,12.941281798588442,11.065247584249853,4.170820393249937,2.9076237921249266,2.9076237921249266,2.0326237921249266,2.0326237921249266,1.3590169943749477,1.3590169943749477,-1.5699999999999998,1012364.7416833107,2.39572930763219,3.227788294250364,1.2857183673861365,108.91224390007464,5.719716975726273,0.0,2.8236841566564013,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,18.127256122989884,37.09756980467781,27.733606933358576,10.999734942297142,19.27278683069904,16.59031120676462,0.0,4.9839785209472085,0.0,25.491699605317518,5.719716975726273,35.42705431719864,0.0,0.0,5.719716975726273,5.687386274683562,0.0,0.0,4.9839785209472085,12.745849802658759,0.0,40.45233196324688,24.16967483065318,2.8236841566564013,10.902924932081056,0.0,38.91,77.50906512928078,0.0,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,19.27278683069904,111.68948599038383,0.0,3.8048611111111104,-0.5576979402872257,-3.5036063869992438,0.0,-2.9963746903082233,-13.436668083900228,0.0,0.0,0.3076923076923077,15,2,2,1,0,1,1,1,2,2,1,2,1,0,0,0,3,2.695800000000001,62.797400000000025,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2717,CN1C(=O)CCS(=O)(=O)C1c1ccc(Cl)cc1,0,13.018508597883596,-5.9982714474678716,13.018508597883596,0.7550977891156472,0.7812058854471292,273.74099999999976,261.645,273.02264192400037,92,0,0.2241525307307547,-0.3249777378373235,0.3249777378373235,0.2241525307307547,1.588235294117647,2.235294117647059,2.823529411764706,3.1842374234850492,993.893516348407,23.11880215351701,19.958171230364638,9.530596757310818,12.702135486850342,10.05550839878368,5.916636119387299,2.8651964222557895,4.840856946950488,1.7614092303731463,3.2169676405434915,1.0778297872909448,2.184730520476617,-1.07,586075.0104036245,4.242662876612308,4.308806656920966,2.3018307955044373,121.95994891887986,4.899909730850478,0.0,15.187177588587927,5.907179729351506,0.0,0.0,4.794537184071822,8.417796984328938,0.0,0.0,23.685777305559107,17.648288907023584,27.966695008544487,12.558749666001258,29.661436842443393,27.345372756001524,0.0,4.899909730850478,0.0,11.722849353499804,12.680783785432403,34.7557596360915,0.0,0.0,0.0,0.0,0.0,11.600939890232516,31.905670229963327,14.631790320489323,0.0,33.73540351923944,24.16967483065318,5.022633313741326,0.0,0.0,54.45,79.8037353716432,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.050042564275152,118.44281928872373,5.620490564023962,11.814586307774137,-4.847153394536827,-5.620852820294785,-2.2369109032501893,-4.710252582514484,-3.935338303273986,-3.8346722647392317,-5.9982714474678716,0.36363636363636365,17,0,4,0,1,1,1,0,1,3,0,6,2,0,1,1,2,1.6155000000000002,65.36680000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +104865,COc1ccccc1Oc1c(NS(=O)(=O)c2ccc(C(C)(C)C)cc2)nc(-c2ncccn2)nc1OCCO,0,14.638104697164039,-6.371768536890061,14.638104697164039,0.9597166203836618,0.29391506545829377,551.6250000000015,522.3930000000004,551.1838546480009,204,0,0.26349405860444425,-0.4928452483507326,0.4928452483507326,0.26349405860444425,1.0512820512820513,1.794871794871795,2.4871794871794872,2.311426152788909,2691.986611644862,52.781209902474515,47.59380601074683,19.410302591674558,30.46097507259268,24.016823746737476,11.10142518957429,6.5899537276615945,8.130908883616826,4.010006650399093,5.14333335722723,2.432336415999357,3.235046157669001,-4.29,25012037450172.242,8.863193633552074,11.621268193001807,6.591614365768974,267.37025137422336,19.31939705250736,6.558985242916289,24.553133020730968,13.005115988516467,15.903279489842955,0.0,4.715119613734132,23.36973254717056,4.9839785209472085,0.0,44.725351182540216,41.19053549941025,24.6826174271615,43.16607518838064,66.1595171317605,15.841153931242612,1.4311996572326342,19.935914083788834,0.0,30.866150296801596,24.8710425584493,72.29101028229617,0.0,34.777332832286945,18.92570847513428,5.817862777835028,23.128523836287087,0.0,55.04964186117278,15.438281622804364,0.0,63.12960886018004,71.62304226611694,1.4118420783282006,11.648808995999854,0.0,145.65,178.64668990107666,8.417796984328938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.044722274896046,54.06411161355696,277.62286976575604,0.0,12.405528776747333,3.7598432195866263,-6.156040567796834,-10.808438260537075,-13.938230119457279,-2.175396633368522,-20.718667636288377,-9.991468544641918,0.25925925925925924,39,2,11,0,0,0,2,2,4,10,2,12,12,0,0,0,4,4.203900000000004,144.65729999999982,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +5743,C[C@@H]1C[C@H]2[C@@H]3CCC4=CC(=O)C=C[C@]4(C)[C@@]3(F)[C@@H](O)C[C@]2(C)[C@@]1(O)C(=O)CO,0,19.92038229875283,-6.1984983229402895,19.92038229875283,2.163277467456986,0.667213496992105,392.4669999999996,363.2350000000001,392.19990224800074,154,0,0.21154618878244555,-0.3897124158559765,0.3897124158559765,0.21154618878244555,1.5714285714285714,2.4642857142857144,3.142857142857143,2.7647301106462776,1886.0519486945689,45.585421958697395,42.41920592532854,13.419205925328543,24.845440867594988,21.68434783405586,7.459602962664271,6.304094080916578,6.304094080916578,4.932317033892536,4.932317033892536,3.4350341896626797,3.4350341896626797,-1.3700000000000003,108754063538.31697,5.088954764176015,5.832747547893353,2.0142638085946416,204.87594089052288,15.326424573321638,12.160036053899976,17.235249711475557,4.293598971697903,0.0,0.0,9.589074368143644,4.39041504767482,0.0,0.0,25.32896051069619,56.23565058541048,44.13910974756106,14.304569363971307,64.9456364495659,11.566489892729878,4.293598971697903,0.0,28.5118539948828,63.3972046138839,6.558985242916289,23.729319768175966,0.0,0.0,0.0,4.39041504767482,0.0,0.0,55.095327337345054,9.589074368143644,28.5118539948828,81.68709841763027,23.729319768175966,0.0,0.0,0.0,94.83,133.76385351258884,20.555142817505402,4.39041504767482,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,28.967252982761863,271.1671466470868,0.0,27.56999759483716,11.856525808858146,-25.465470492477174,-22.99768401313554,-6.925111072914779,-27.53030915375411,-20.17509531850058,0.0,0.7272727272727273,28,3,5,4,0,4,0,0,0,5,3,6,8,3,0,3,4,1.8957000000000002,99.94440000000004,0,3,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +159269,Cc1cn([C@@H]2C[C@@H](O)[C@H](CO)O2)c(=O)[nH]c1=O,0,12.495083223104054,-3.946012849584279,12.495083223104054,0.4982846749811034,0.5842742137821719,242.2310000000001,228.11899999999997,242.090271548,94,0,0.32996003103185106,-0.3935688359788986,0.3935688359788986,0.32996003103185106,2.0588235294117645,2.9411764705882355,3.6470588235294117,3.0686185494202505,1020.4547094052164,24.5854219586974,21.935668643319232,7.935668643319232,13.71517847069432,10.856489036569169,4.092778860141484,2.814268744722764,2.814268744722764,1.7471655159994572,1.7471655159994572,1.0290108185639497,1.0290108185639497,-1.4400000000000002,1652073.718082892,3.532040240124997,4.438375367377904,2.1665656901037735,116.19053318566434,14.954479336014474,12.283970836886542,1.4118420783282006,2.8623993144652684,5.559266895052008,5.689743398203474,14.338640102092427,4.794537184071822,0.0,0.0,0.0,6.851892117295679,24.963064384692235,20.863554606887593,31.44466553221509,0.0,2.8623993144652684,9.544102918020606,0.0,31.588805882461585,6.558985242916289,32.57443136391088,0.0,0.0,11.24901029325548,0.0,0.0,0.0,41.34313991151656,4.736862953800049,6.851892117295679,33.21867332083535,15.761969578958404,1.4118420783282006,0.0,0.0,104.54999999999998,70.67725103916571,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,24.089448464465935,111.1076848378176,0.0,23.917538389590604,7.5153270003989245,-5.326126845028136,0.0,0.0,-17.306720993953142,-7.2410357221592365,0.0,0.6,17,3,7,0,1,1,0,1,1,6,3,7,5,0,1,1,2,-1.5142799999999992,57.67930000000002,0,2,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +135398740,Nc1nc2c(ncn2COC(CO)CO)c(=O)[nH]1,0,12.2154998627665,-3.9165149045729413,12.2154998627665,0.0382440661641148,0.4854930576221492,255.2340000000001,242.12999999999997,255.096753896,98,0,0.2799857321793509,-0.39358128705804707,0.39358128705804707,0.2799857321793509,1.8888888888888888,2.7222222222222223,3.4444444444444446,2.7961705991522567,1022.5306918732342,24.154336059449747,21.369061139355242,8.369061139355242,13.970180100477918,10.414826071087049,4.256688703659448,2.774784009155735,2.774784009155735,1.7198215421045207,1.7198215421045207,1.0306092821278117,1.0306092821278117,-1.9700000000000002,2469567.822282008,4.015510992504,5.123500477711226,2.321841797939783,119.46646440537421,20.674196311740747,14.133696609023062,15.399404173368593,8.810738595451763,5.559266895052007,0.0,14.338640102092429,4.9839785209472085,4.9839785209472085,0.0,0.0,0.0,0.0,29.01665209299034,30.156074020360826,17.112217219370486,2.8623993144652684,19.51205995991502,0.0,12.762938052852842,18.83768746155885,16.657175793090055,0.0,0.0,11.27898387077828,5.948339280986494,0.0,0.0,51.79006416937728,11.419782979702903,0.0,10.96606844936176,11.09790889803805,4.235526234984602,11.16387793838399,0.0,139.28,54.85576436707413,4.794537184071822,0.0,15.263819893746879,0.0,0.0,0.0,0.0,0.0,24.92243637790889,18.06399399881163,101.88052190287398,0.0,19.098082201238313,7.272898011413523,-3.2670197600836586,-0.9710837899974798,0.0,-5.036591435185187,-11.14347379692618,0.0,0.4444444444444444,18,5,9,0,0,0,0,2,2,8,4,9,8,0,0,0,2,-1.970899999999999,61.60570000000001,0,2,0,1,0,4,1,0,0,0,0,0,0,0,0,3,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5073,Cc1nc2n(c(=O)c1CCN1CCC(c3noc4cc(F)ccc34)CC1)CCCC2,0,14.509430188727368,-4.815487518041859,14.509430188727368,0.6272337232711234,0.6577452185749303,410.49299999999965,383.27700000000016,410.21180432400075,158,0,0.25648037354974157,-0.35589095870673193,0.35589095870673193,0.25648037354974157,1.4,2.2666666666666666,3.1,1.877562239791648,2247.335286432548,44.62687384302478,41.48331543593679,14.483315435936785,24.995812251228752,21.542265892553345,8.042265892553344,5.631490912854906,5.631490912854906,3.815300408690915,3.815300408690915,2.4715849200739344,2.4715849200739344,-2.539999999999999,208767541634.37823,5.625518931629699,7.945993904374621,3.5548338156190753,212.1735005999823,9.423004667823825,11.641625339045822,5.583020141642242,0.0,5.559266895052008,0.0,9.361636831863176,9.374393568622029,0.0,0.0,5.156663257125445,63.79507340790105,80.84482971208315,9.80620366335912,45.92399100124413,10.969244356107037,0.0,19.607651156714486,0.0,57.48025889495097,19.490579052947837,57.07399302255345,0.0,0.0,5.559266895052008,4.39041504767482,0.0,0.0,39.09823020966232,19.242709486974704,12.669112958341575,91.17185028667032,27.444888244035056,0.0,10.969244356107037,0.0,64.16,149.68654752112934,9.184952231746642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.140641778072654,41.533575953569304,246.99030306851137,0.0,16.43821640539898,2.1107594301346726,-9.237764011579731,-7.688811907342045,-4.03432427471206,-25.615058906739037,-22.12998647033884,0.0,0.5217391304347826,30,0,6,0,2,2,1,2,3,6,0,7,5,0,1,1,5,3.5904200000000026,112.25800000000005,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2712,CN=C1CN(O)C(c2ccccc2)=c2cc(Cl)ccc2=N1,0,8.451738473167044,-3.2490604922524575,8.451738473167044,0.026038674729151,0.8734531270112921,299.76099999999974,285.649,299.08253974800044,106,0,0.24587341122558434,-0.2879425170969116,0.2879425170969116,0.24587341122558434,1.4285714285714286,2.2857142857142856,3.0476190476190474,2.800612165101254,1375.4116919634046,26.781574381404035,24.127853549972965,10.883782495991419,15.967156025531533,12.371445499303405,5.841161681848771,3.714590411089564,4.092554884098791,2.464045549753525,2.6530277862581384,1.6560955555905972,1.7978322329690573,-2.1699999999999995,19311533.83881835,4.934532997276713,5.675616837124532,2.680121070328044,146.6111059783898,0.0,12.332479470073213,0.0,1.4311996572326342,0.0,0.0,10.201938553679465,10.055622457601018,0.0,0.0,41.81303342854899,18.127256122989884,26.892837349836096,24.761855323064335,24.46059470848929,23.133598989045616,0.0,5.063217724965349,9.984809465271338,0.0,13.47268658459819,69.50131489065585,0.0,0.0,10.575880423911173,0.0,0.0,11.600939890232516,29.581057916364607,0.0,0.0,23.383312721909853,58.3241591265777,6.45383297097396,5.697039313055833,0.0,48.19,94.50666057406717,0.0,0.0,5.063217724965349,0.0,0.0,0.0,0.0,0.0,15.194343286315135,30.852000777678008,111.61884417644255,6.030108304638727,7.028362675317039,2.4789618632947006,-1.5858353804484748,-1.1500099731250522,-6.563714945629477,0.0,-6.412272276045576,0.0,0.125,21,1,4,0,1,1,2,0,2,3,1,5,3,0,0,0,3,1.8492000000000002,83.03650000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2662,Cc1ccc(-c2cc(C(F)(F)F)nn2-c2ccc(S(N)(=O)=O)cc2)cc1,0,13.79008497501643,-5.42472883619574,13.79008497501643,0.04090513983371169,0.7541053298167572,381.37899999999985,367.2670000000001,381.07588234800033,136,0,0.43469853500899064,-0.23250484922259315,0.43469853500899064,0.23250484922259315,1.1538461538461537,1.8076923076923077,2.3461538461538463,2.617330054324743,1610.822306545838,31.022061357410188,26.200279076919145,13.016775657846871,17.988716747059534,13.302225958164016,7.8478620959647385,4.63457334622765,5.99295431634783,2.8375426421628447,3.5575743065631658,1.7580836715219035,2.118099503722064,-2.649999999999999,144604124.85127753,7.53273113442875,6.257288917142293,3.630382561957936,167.2656822824116,0.0,2.8236841566564013,5.693927994848461,10.023291153407584,0.0,6.176298517443475,0.0,18.224623155646153,18.269926951325495,0.0,29.733126322350174,37.06398565561216,9.675727160207655,28.613624750581774,40.86182895805245,10.023291153407584,0.0,9.780484743446223,5.12502323617203,17.92367411025693,0.0,65.63914785551512,0.0,16.944765761229018,5.12502323617203,13.171245143024459,0.0,0.0,18.19828172777516,16.199589670851058,6.851892117295679,27.70648216058809,59.277251844487424,2.8236841566564013,16.944765761229018,0.0,77.98,115.6559021165807,21.589042127353398,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,5.098681808301038,19.27278683069904,175.39517701880038,0.0,-1.487612929590518,2.214662691672712,-6.675872933295841,0.0,-12.13185693070591,-5.42472883619574,-3.20108528530655,-5.272016128711914,0.11764705882352941,26,2,5,0,0,0,2,1,3,4,1,9,5,0,0,0,3,3.5139200000000006,90.1122,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +62884,CC(NC(C)(C)C)C(=O)c1cccc(Cl)c1,0,13.336303697404883,-4.410571499433108,13.336303697404883,0.9146000645628616,0.8204937720146613,239.74600000000012,221.60199999999995,239.107691876,88,0,0.17900807689284562,-0.30264536022536415,0.30264536022536415,0.17900807689284562,1.6875,2.4375,3.0625,4.265942187627526,909.4669549430221,27.61880215351701,25.73342635897305,8.489355304991502,14.740810621445155,12.78753357273646,4.21828445024573,2.6889267749864816,3.0668912479957093,1.3161379702599878,1.5051202067646017,0.7712787956953213,0.9130154730737817,-0.86,2988495.1792928185,2.756256848562945,4.980637186859673,3.950731413547198,127.34817406606558,5.309813353288376,1.4118420783282006,5.783244946364939,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,23.685777305559107,39.4924058845093,32.574112731864304,12.871685249200745,29.50927471729376,17.384184836597456,0.0,5.309813353288376,0.0,38.96438618991571,0.0,34.7557596360915,0.0,0.0,5.309813353288376,0.0,0.0,11.600939890232516,17.34006266709793,0.0,0.0,61.06845259984533,24.16967483065318,6.434475392069527,0.0,0.0,29.1,84.81320412566052,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.31567742345446,139.02386652809273,5.692863297325101,13.336303697404883,-2.073732638888889,-5.822700656651551,-2.2546064814814812,-8.866098041068282,0.0,-16.758117926954736,0.0,0.46153846153846156,16,1,2,0,0,0,1,0,1,2,1,3,4,0,0,0,1,3.2993000000000023,68.13320000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4238,CCO/C([O-])=N/c1c[n+](N2CCOCC2)no1,0,11.712399612622825,-3.490089719083226,11.712399612622825,0.06677142384731694,0.3570654840059863,242.2350000000001,228.12299999999996,242.101504928,94,0,0.3261597292744057,-0.60032259133279,0.60032259133279,0.3261597292744057,1.9411764705882353,2.764705882352941,3.5294117647058822,2.5230293129753583,853.6274120524215,24.42228525188087,21.921847543855286,7.921847543855285,13.583952431668015,10.92535304597654,3.9253530459765402,2.30276691114194,2.30276691114194,1.3260452889793723,1.3260452889793723,0.7653258108088763,0.7653258108088763,-1.8299999999999998,1445022.4092321396,3.3463754150192324,5.4840282603277455,3.064386648305975,117.6597767433408,14.580253302440804,0.0,7.45456424211474,5.2713665444792746,6.172895210814761,5.884182201861009,4.523094936973348,0.0,4.992404732635669,5.008912523954532,6.851892117295679,6.558985242916289,6.853792780851101,41.86856403207549,43.084773754046495,11.967987887805528,0.0,5.2713665444792746,4.992404732635669,6.851892117295679,37.67958762133529,6.172895210814761,0.0,0.0,14.906245647044475,5.884182201861009,0.0,0.0,44.025847327804556,9.473725907600098,0.0,26.042511903678754,15.688394880423779,0.0,0.0,0.0,87.03,57.66345031329672,5.106527394840706,0.0,9.799718252203771,0.0,0.0,0.0,0.0,0.0,24.26059212168839,19.190619786383078,117.62024453254547,0.0,2.89526915627362,14.500865929705213,0.0,-1.1337443310657596,0.0,-3.1071967382632075,-20.775438549195318,0.0,0.6666666666666666,17,0,8,0,1,1,0,1,1,7,0,8,4,0,1,1,2,-1.6853999999999976,54.18900000000003,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5358,CNS(=O)(=O)Cc1ccc2[nH]cc(CCN(C)C)c2c1,0,12.8049934119462,-5.989760297522741,12.8049934119462,0.11201955782312956,0.8445712183265351,295.4079999999996,274.24,295.1354479120006,110,0,0.21502528197965493,-0.36088894817480094,0.36088894817480094,0.21502528197965493,1.6,2.45,3.2,3.1762725017594944,1453.9959790317243,32.85085296108589,30.566385657891466,10.382882238819189,17.818160890634783,15.206099641900112,6.2517357797008355,3.312842696361568,4.649673707084868,1.9661367919292625,2.6685729881629,1.2371949842669143,1.6428543629258374,-1.37,81934375.36812378,3.5077112435818107,5.948317132030925,3.592166601280715,149.2028462728533,9.87691300107973,1.4118420783282006,1.4118420783282006,10.023291153407584,0.0,0.0,0.0,13.132916598063069,0.0,0.0,6.042418707663295,50.51214600089669,44.13405816976509,11.187991109831039,37.285893708219525,20.92621608548864,0.0,14.592032614813862,0.0,12.077881786479537,27.424340385162683,35.42705431719864,0.0,0.0,4.715119613734132,0.0,0.0,0.0,45.719050370571345,22.10117293988712,0.0,37.17131555062818,24.300151333804646,2.8236841566564013,10.902924932081056,0.0,65.2,105.4705219189141,8.417796984328938,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,0.0,28.868096723890577,188.6325711401929,0.0,-0.9427908268896279,-1.240372260015117,-8.342366347001764,0.0,-4.328836634962626,-5.399855901465527,-15.63858887233544,-5.989760297522741,0.42857142857142855,20,2,5,0,0,0,1,1,2,3,2,6,9,0,0,0,2,1.3211999999999997,82.24020000000004,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,2,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +6915944,C=CC1=C(C(=O)O)N2C(=O)[C@@H](NC(=O)/C(=N\O)c3csc(N)n3)[C@H]2SC1,0,13.20556958278414,-3.3903060043461837,13.20556958278414,0.029609225935174344,0.23141750586057275,395.4219999999998,382.31800000000004,395.0358105160004,136,0,0.35246478492452044,-0.47655248843754777,0.47655248843754777,0.35246478492452044,1.8846153846153846,2.769230769230769,3.4615384615384617,2.16926356432802,1350.5226979703893,29.82554445577405,25.09380601074683,13.726799172602286,17.915679983285,12.486165894867922,7.961021689295773,4.438468926382024,6.006812210046847,3.0178156779366905,4.462546929588672,1.947467963054895,3.2562345560681725,-2.86,138414222.0604261,7.797532800113512,6.8018367623600735,2.8202680787875463,173.22212753899248,21.347872341165658,22.758784228424368,15.078769717594637,0.0,13.245559115935645,7.400504945184483,14.48898409899412,9.77851570501903,0.0,23.098670827325854,17.738823434787975,5.573104530069267,13.802588407158197,8.224551337021321,41.33474790594548,51.72557905659075,1.4311996572326342,15.193701605086062,5.15571272675054,11.36781692052007,11.424673860876432,34.9032969556786,0.0,0.0,11.029530329014648,5.131558479839333,0.0,23.098670827325854,60.770353819044495,14.383611552215466,0.0,16.65999644421022,34.36508168758068,5.6667258922172365,1.4311996572326342,0.0,158.21000000000004,85.91279234390208,14.383611552215466,0.0,22.381511655967866,11.336785877934737,0.0,0.0,0.0,0.0,20.458033259848758,18.06399399881163,100.6359636514749,0.15379896114590164,42.497143857398285,6.007231021384644,-7.347973553235305,-5.277928731108537,-4.606793756053578,0.0,-1.3114414510063301,0.0,0.21428571428571427,26,5,10,0,2,2,0,1,1,10,4,12,7,0,1,1,3,-0.17179999999999884,94.7314,1,0,0,1,0,1,0,0,1,1,3,2,0,0,0,3,1,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +51039,N[C@@H](C(=O)N[C@@H]1C(=O)N2C(C(=O)O)=C(Cl)CS[C@H]12)c1ccccc1,0,13.414314986282577,-3.6854152669298186,13.414314986282577,0.0926032585006249,0.672381193775388,367.81399999999985,353.7020000000001,367.0393546080004,126,0,0.3533985962472298,-0.476529198598894,0.476529198598894,0.3533985962472298,1.7083333333333333,2.4583333333333335,3.125,2.21993953922661,1288.8258998802712,29.49711733102786,25.260846711828417,12.833272238774597,17.188057691942827,12.755256971359815,7.19982894833303,4.214055542277155,5.386966636817232,2.826235301300779,4.087245207084093,1.7856345303856982,2.841099056912921,-2.029999999999999,60486734.34182304,6.7010942083173,6.4635882765802215,2.7661992514918268,166.29980682241364,16.13833852012186,25.906432858581944,1.4118420783282006,5.907179729351506,7.33837938658414,5.969305287951849,14.488984098994122,4.794537184071822,0.0,11.761884949391115,41.81303342854899,5.563451491696996,8.4464739974906,15.998354801475356,37.435531540009485,41.14648958627849,1.4311996572326342,10.209723084138854,5.719716975726273,17.385709388869714,5.704956885150159,46.5048706951829,0.0,0.0,11.029530329014648,0.0,0.0,23.36282483962363,44.865156474282784,14.383611552215466,0.0,25.288929521748837,40.9414192034859,4.235526234984602,1.4311996572326342,0.0,112.73,98.40873204487232,14.383611552215466,0.0,16.66179468024159,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,30.97525134415195,110.99560323695127,5.6133115090886925,38.647433934582864,-1.0426787198013026,-6.101606943416333,-5.62877380197423,-12.705511437653207,0.0,0.0,0.0,0.26666666666666666,24,4,7,0,2,2,1,0,1,6,3,9,5,0,1,1,3,0.6213000000000004,88.90790000000001,1,0,0,0,0,0,0,0,1,1,3,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +16204922,CC(=O)CC(c1ccccc1)c1c([O-])c2ccccc2oc1=O,0,13.584466017888634,-4.167724277210888,13.584466017888634,0.9227169407389006,0.6947493605223517,307.3249999999997,292.205,307.0975825399104,116,0,0.3389682056827153,-0.871590646491349,0.871590646491349,0.3389682056827153,1.3043478260869565,2.0,2.739130434782609,2.7302540664367974,1561.7027834918238,29.444711088220565,26.132993161855453,11.132993161855453,17.14940034958249,13.520620726159658,6.020620726159658,4.126891986877025,4.126891986877025,2.74463221128641,2.74463221128641,1.853008066054478,1.853008066054478,-2.88,61931489.3432518,5.338113666765756,6.084896581778482,2.8788855581374135,153.62658259369235,9.523678331894054,11.366265088007182,0.0,0.0,0.0,5.625586319077987,4.794537184071822,4.794537184071822,0.0,0.0,54.08886149459026,18.45776231665597,31.441109629875566,12.33682700553198,34.87959385851918,16.75248930247198,0.0,0.0,0.0,19.118774703988137,0.0,75.92879485551346,0.0,5.749511833283905,10.732113713918693,0.0,5.749511833283905,0.0,5.783244946364939,4.794537184071822,0.0,50.80705602993547,63.59345649009482,0.0,10.969244356107037,0.0,70.34,112.75503351118566,14.69560176298435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.978529279606644,123.88034992774146,0.0,25.878700862295737,12.507359011505834,-6.1488182240488785,-8.137218193604603,-10.083105770717376,-4.167724277210888,-3.8128766692946456,0.0,0.15789473684210525,23,0,4,0,0,0,2,1,3,4,0,4,5,0,0,0,3,2.9776000000000007,85.51300000000006,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +46861584,COc1cccc2c1c(NS(=O)(=O)c1ccc(Cl)s1)nn2Cc1cccc(CNC(=O)C(C)(C)O)c1,0,13.778243829343754,-5.494473978742658,13.778243829343754,0.08799629163276323,0.29048583028017033,549.0740000000012,523.8740000000003,548.0954895800007,190,0,0.272166145373927,-0.49590697908664877,0.49590697908664877,0.272166145373927,1.3333333333333333,2.138888888888889,2.861111111111111,2.1830497969586498,2557.090318982436,47.45278277772833,42.0245568882561,19.41347899613001,27.315067789654577,21.228075040260173,11.55992394153399,6.316530040880429,9.73859579031917,3.8521997903632097,6.612663557916661,2.413997159929232,4.598261387691794,-3.1199999999999997,1572021113569.2478,9.016108861533256,10.093567476136647,5.645893547496095,252.58956118656747,15.155484498195637,15.559741821789673,8.64154693449143,1.4311996572326342,15.930470882759089,0.0,14.191459732951138,8.417796984328938,5.098681808301038,11.336785877934737,41.81303342854899,49.00036204863852,14.721411021337264,50.70620298974878,56.03837770570931,55.588984360842424,1.4311996572326342,15.0902980967346,0.0,36.507733591729014,11.753072072616721,69.84500036810928,0.0,5.749511833283905,14.761795920822557,5.817862777835028,5.749511833283905,22.937725768167255,43.28447257533279,27.81154770611129,0.0,54.98737545373024,58.59094754649173,7.160013172402032,10.902924932081056,0.0,122.55,161.81638981170246,13.212334168400758,0.0,16.018588813079923,0.0,0.0,0.0,0.0,0.0,10.20748999940825,50.74937489366647,233.52204425035177,5.923302126892548,13.485495321330971,5.270590685822041,-8.8740214172105,-5.426604902635823,-12.05324807439637,0.0,-16.41568349740305,-9.070763381640484,0.25,36,3,9,0,0,0,2,2,4,8,3,12,13,0,0,0,4,3.996000000000002,140.11099999999993,0,1,0,0,0,2,0,0,0,0,1,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0 +50088,CC(C)COCC(CN(Cc1ccccc1)c1ccccc1)N1CCCC1,0,9.592016775846142,-5.466742252456543,9.592016775846142,0.963346324640967,0.5988605961954666,366.54899999999947,332.2770000000001,366.267113708001,146,0,0.06446347722314387,-0.37948776244391225,0.37948776244391225,0.06446347722314387,1.1111111111111112,1.7777777777777777,2.4444444444444446,2.863355082394304,1987.0273929904322,48.79001054984131,47.30267548146378,13.30267548146378,26.54599361398502,23.999889076963736,6.999889076963737,4.371433802097751,4.371433802097751,2.5740378150610574,2.5740378150610574,1.5693746570959144,1.5693746570959144,-1.8399999999999994,450371259873.0554,3.9261740041345834,10.482776036995189,6.369034040203015,212.26418112041026,9.636772684650527,0.0,0.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,62.04313389589772,49.28181576367731,45.80146922878507,38.62129027850012,51.34265386358757,5.687386274683562,0.0,4.899909730850478,5.893957685363079,38.9643861899157,37.50845926963089,65.98763856832994,0.0,0.0,4.899909730850478,5.687386274683562,0.0,0.0,43.526351737980534,11.233722638115994,5.893957685363079,78.61887643873463,60.42418707663295,0.0,0.0,0.0,15.71,158.9417377187737,6.853792780851101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,39.75199812893639,290.9437442718273,0.0,-2.2552897717729063,0.0,-3.684412513525971,-4.72746802844076,-20.52864917697707,-8.851170142771425,-38.3967546383392,0.0,0.5,27,0,3,0,1,1,2,0,2,3,0,3,12,0,1,1,3,4.830200000000005,114.18600000000008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34312,NC(=O)N1c2ccccc2CC(=O)c2ccccc21,0,13.134490740740738,-3.247415910808769,13.134490740740738,0.18363425925925903,0.7829578147216556,252.27300000000005,240.17699999999994,252.089877624,94,0,0.32341358029949524,-0.3508839789272856,0.3508839789272856,0.32341358029949524,1.2105263157894737,1.894736842105263,2.6842105263157894,2.707407086206869,1180.0512907670422,23.737604307034015,21.210923771927643,9.210923771927643,14.172220166131803,10.947102672463696,5.052675481463779,3.5193221231919134,3.5193221231919134,2.439503993966403,2.439503993966403,1.6810896325753177,1.6810896325753177,-2.619999999999999,3584166.420433394,4.198083082794588,4.2423570760462965,1.775485536222831,126.97602034901561,5.719716975726273,0.0,8.60692910302134,0.0,0.0,6.031114512338072,9.694446914922299,4.794537184071822,0.0,0.0,30.212093538316473,23.69070761468688,14.677893505366814,22.340840998728883,26.120344086502243,23.189132008070136,0.0,0.0,5.719716975726273,6.372924901329379,4.899909730850478,59.46625264470035,0.0,0.0,10.619626706576751,16.169309733438947,0.0,0.0,11.814359458703011,6.372924901329379,0.0,29.62902572916801,48.33934966130636,2.8236841566564013,0.0,0.0,63.400000000000006,94.74802652982616,9.589074368143644,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,0.0,16.5312697183586,95.03981654698917,0.0,26.069228552532117,0.0,-4.3533205782312905,-1.5716742252456537,-9.35330105190224,-3.247415910808769,0.0,0.0,0.06666666666666667,19,2,4,0,1,1,2,0,2,2,1,4,0,0,0,0,3,2.6422000000000008,72.64090000000003,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +3152,COc1cc2c(cc1OC)C(=O)C(CC1CCN(Cc3ccccc3)CC1)C2,0,14.275109607594569,-4.986512844335268,14.275109607594569,0.9296156512526252,0.7474614915624848,379.4999999999996,350.26800000000014,379.2147437880008,148,0,0.16620209627378937,-0.49285879087511075,0.49285879087511075,0.16620209627378937,1.2142857142857142,1.9285714285714286,2.642857142857143,2.1165316876511486,1993.8043103451123,44.99711733102786,42.671958466891546,13.671958466891548,24.957789656533496,21.941441119409596,7.441441119409595,5.112316974177663,5.112316974177663,3.400556096737407,3.400556096737407,2.2120638841952425,2.2120638841952425,-2.3299999999999996,124199826562.24152,4.6974727001139485,8.356363444273022,3.925173476821331,207.74873112538924,9.473725907600098,0.0,17.28226861293275,0.0,0.0,0.0,9.694446914922299,0.0,0.0,0.0,30.212093538316473,67.59111705803306,39.88640576009956,31.895766147978033,54.02026122060835,5.783244946364939,0.0,4.899909730850478,11.787915370726157,31.988559289633464,27.069624286397065,58.98728542873405,0.0,11.49902366656781,9.473725907600098,0.0,11.49902366656781,0.0,37.752778963612485,12.869784585645323,11.787915370726157,80.35566449208734,42.29693095364306,0.0,0.0,0.0,38.77,152.01556271927402,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,39.75199812893639,252.4194641150746,0.0,13.345493956341944,0.0,-4.786945265883951,-15.102800763443703,-9.812672563333946,-18.883042767404294,-13.505936849946595,-7.25689319473739,0.4583333333333333,28,0,4,1,1,2,2,0,2,4,0,4,8,0,1,1,4,4.361100000000004,110.13050000000005,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5311221,CC(C)OC(=O)CCC/C=C\C[C@H]1[C@@H](O)C[C@@H](O)[C@@H]1CC[C@@H](O)CCc1ccccc1,0,13.05932820883579,-5.613954297835835,13.05932820883579,1.243195650902411,0.2471860765188795,432.6009999999995,392.28100000000023,432.2875743800011,174,0,0.3055452817625647,-0.46295317224866916,0.46295317224866916,0.3055452817625647,1.3870967741935485,2.193548387096774,2.935483870967742,3.3004040344603025,2240.6676522589437,57.524579547452824,55.04124145231931,15.041241452319316,30.80061822162619,27.44948974278318,7.724744871391589,4.831016132108957,4.831016132108957,2.767570138670444,2.767570138670444,1.6327327723098717,1.6327327723098717,-1.6899999999999995,25565752993507.836,4.7518351012757964,13.663978877949386,9.545384811495746,243.1514105889485,20.063287527121684,0.0,0.0,4.293598971697903,0.0,5.969305287951849,4.794537184071822,0.0,0.0,0.0,42.316237030387605,82.03855030764954,42.012647361755114,39.398416225672385,75.57589128949168,5.969305287951849,4.293598971697903,0.0,11.787915370726157,95.38018045435572,0.0,47.87968852208461,0.0,0.0,0.0,0.0,0.0,0.0,49.90940094077134,15.90432503920125,11.787915370726157,120.96870151522137,42.316237030387605,0.0,0.0,0.0,86.99000000000001,161.01708963511837,7.536054296412263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.063287527121684,52.27014843765564,335.37240174255396,0.0,13.05932820883579,11.828537498837067,-1.7991550136787373,-14.186571710755544,-12.969302710330236,-65.61523925627257,-8.439998759189876,0.0,0.6538461538461539,31,3,5,1,0,1,1,0,1,5,3,5,18,1,0,1,2,4.1864000000000035,122.45040000000004,0,3,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9803963,Cc1cc(SCc2sc(-c3ccc(C(F)(F)F)cc3)nc2C)ccc1OCC(=O)O,1,13.464714052881757,-5.314577758846847,13.464714052881757,0.08842740491156231,0.4316896933526925,453.5069999999999,435.3630000000002,453.06802009600045,158,0,0.41591024248470704,-0.4816386000376881,0.4816386000376881,0.41591024248470704,1.3333333333333333,2.1333333333333333,2.8,2.3124110147571364,1759.9974687417475,37.27313821296676,32.12234846684696,15.755341628702407,21.50079608877788,16.305401757333115,9.030146628724703,5.048462107416973,6.864029455107482,2.9868728443018733,4.818812327779377,1.7526570621198838,3.2676353480510545,-2.5200000000000005,4352646435.839893,8.547345697456793,9.093639999018256,5.54414522605592,204.66041204640112,9.84567114490726,10.75713553013667,6.558985242916289,0.0,1.4311996572326342,12.145603805395325,0.0,9.77851570501903,13.171245143024459,23.098670827325854,12.08483741532659,49.47932926460483,32.00710749542799,23.594206492077433,51.11434892689732,29.067976115277702,1.4311996572326342,4.9839785209472085,0.0,30.48052311270277,6.558985242916289,63.99490912558681,0.0,16.320587021833667,4.736862953800049,13.171245143024459,5.749511833283905,23.098670827325854,22.621077242922556,16.675792586665455,13.703784234591359,45.00087362683752,47.192414429160834,0.0,12.002274845782395,0.0,59.42,123.3243097909914,17.96578232709628,0.0,23.098670827325854,0.0,0.0,0.0,0.0,0.0,10.092786712054421,29.47095806592642,187.96206376579244,-0.09686492716513206,13.558779845736163,2.7395187718270764,-8.306715217393092,-3.3208835014242517,-9.297187702161342,-5.314577758846847,-10.340799943031715,0.0,0.23809523809523808,30,1,4,0,0,0,2,1,3,6,1,9,9,0,0,0,3,6.201440000000006,111.15980000000003,1,0,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +9810927,CC(C)(C)c1nnc([C@H]2O[C@@H](n3cnc4c(Nc5ccc(Cl)cc5F)ncnc43)[C@H](O)[C@@H]2O)o1,0,15.232000693987757,-4.012235139774405,15.232000693987757,0.02784786522633742,0.3907846034592973,489.89499999999987,468.72700000000026,489.13275805200055,178,0,0.24761113324314118,-0.4217394503237761,0.4217394503237761,0.24761113324314118,1.2941176470588236,2.1470588235294117,2.9411764705882355,1.79341157303906,2138.133819997725,42.02421506852332,37.019417276373616,16.775346222392066,24.895737586686266,18.97330789157823,9.08756218815977,6.386969730287245,6.764934203296471,4.093332995148467,4.282315231653081,2.631218416575962,2.7614238205425536,-3.19,208582223826.0437,8.79005526018554,8.236238012319081,3.8769682349501515,226.8775706691593,24.681443626356195,27.022145721252535,30.67755363143376,14.643847158517085,0.0,0.0,4.567099647791355,19.342350610516444,0.0,10.197363616602075,32.156616242119554,18.127256122989884,22.774450788670084,21.586067881841327,49.84754141013483,34.2700668811351,2.8623993144652684,29.716398827235054,0.0,50.41467371207033,5.309813353288376,53.35530154976138,0.0,0.0,5.309813353288376,15.89566410019341,0.0,11.600939890232516,54.95645057781472,10.15185342319683,5.817220841045895,69.29474904388938,35.15115048797569,6.434475392069527,11.16387793838399,0.0,144.24,126.43910225273429,1.3707585561702202,4.39041504767482,9.87691300107973,0.0,0.0,0.0,0.0,0.0,35.366915561658125,48.33209062877314,197.09456278121496,5.734601306713,11.020450773174346,14.284595998820267,-7.031415390741396,-5.968361902299165,-3.0993370341046766,-18.25354382659769,-12.003774928401885,0.0,0.38095238095238093,34,3,11,0,1,1,1,3,4,11,3,13,6,0,1,1,5,3.034800000000002,117.89030000000004,0,2,0,0,0,6,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4168,CCN(CC)CCNC(=O)c1cc(Cl)c(N)cc1OC,0,13.337381975938522,-4.569311106387,13.337381975938522,0.3696586431649802,0.7558132464087878,299.80199999999957,277.626,299.1400546240006,112,0,0.2546465849307497,-0.4958418391220392,0.4958418391220392,0.2546465849307497,1.7,2.5,3.15,4.090108276862454,1164.9964289603915,33.98060947308281,31.536101840436828,10.292030786455282,18.207954103763768,15.484636245200155,5.020959931709509,2.918355007510889,3.2963194805201166,1.7604300248533138,2.033927686830779,0.9432841159761232,1.0850207933545832,-1.4600000000000002,84564906.31094265,3.4705748809425008,7.968039579443504,4.28252067886105,155.66238104233307,20.66630301366518,5.749511833283905,4.235526234984602,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,25.304724124823874,19.036138076295185,35.48524075033783,32.90673343219601,39.81133894009066,23.195505894267583,0.0,10.209723084138854,0.0,13.703784234591359,38.74510817187264,22.67092222076491,0.0,5.749511833283905,15.766393282814697,5.687386274683562,5.749511833283905,11.600939890232516,43.832480656348345,0.0,0.0,50.106185477594394,12.08483741532659,9.258159548725928,0.0,0.0,67.59,96.95389857296045,4.794537184071822,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,4.736862953800049,41.880878692451304,173.78115540137603,5.847742422528903,12.177982860048756,-2.1233101157767464,-2.9105180863262348,-3.7125591301335366,-2.672157038805216,0.0,-25.8328111224639,-3.527747412670302,0.5,20,3,5,0,0,0,1,0,1,4,2,6,11,0,0,0,1,2.0023999999999997,82.53760000000004,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5497,CCN(CC)C(=O)c1cccnc1,0,12.75808484504913,-3.8584425784202594,12.75808484504913,0.7121504157218443,0.703412369622264,178.2350000000001,164.12299999999996,178.110613068,70,0,0.25489628722114044,-0.33915768400458074,0.33915768400458074,0.25489628722114044,1.7692307692307692,2.5384615384615383,3.230769230769231,3.8415402357031185,725.735635234673,21.74855866551393,20.30267548146378,6.30267548146378,11.780598196065483,10.072158133981826,3.0721581339818265,1.8245797554083991,1.8245797554083991,1.1075712582209254,1.1075712582209254,0.5727927339046006,0.5727927339046006,-1.38,175313.23922252544,1.996626866817676,4.5981159178907145,2.2760389772959333,98.06670444502296,4.899909730850478,0.0,0.0,0.0,5.907179729351506,0.0,9.77851570501903,0.0,0.0,0.0,0.0,25.78862164991795,39.04709535196363,11.046485716377875,23.9851569704549,5.907179729351506,0.0,9.883888251797686,0.0,13.703784234591359,12.99371936863189,29.994079328653108,0.0,0.0,0.0,0.0,0.0,0.0,28.78478734978108,0.0,0.0,43.25239269674328,24.430627836956113,0.0,0.0,0.0,33.2,67.49867239207833,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,19.190619786383078,104.11600702317963,0.0,15.224005102040815,0.0,-1.1969907407407405,-1.9645833333333333,-2.073265306122449,-1.9958825428319478,-15.109290202191993,0.0,0.4,13,0,3,0,0,0,0,1,1,2,0,3,5,0,0,0,1,1.5636,51.48850000000004,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3333,CCOC(=O)C1=C(C)NC(C)=C(C(=O)OC)C1c1cccc(Cl)c1Cl,0,13.62336352828168,-3.9911348541474228,13.62336352828168,0.5793664965986389,0.7964461277127532,384.25899999999973,365.1070000000001,383.0691134480005,134,0,0.3362403267959521,-0.46558005120817775,0.46558005120817775,0.3362403267959521,1.36,2.08,2.72,3.432431853749332,1427.376711247369,34.919767061838236,30.836135703373863,13.347993595410776,19.33578118860535,15.497136535400733,6.80585188591923,4.193082642362603,4.949011588381057,2.8638304095661566,3.6220002865419763,1.921653888435221,2.252372802318294,-1.979999999999999,303978232.10217136,6.031136204042489,7.933237471220653,3.672813254850142,182.88469670625793,14.783539260888475,0.0,1.4118420783282006,0.0,0.0,11.938610575903699,0.0,9.589074368143644,0.0,0.0,35.286717195791624,32.161546551247326,25.101664187813864,51.648439524144926,45.14829636513593,35.14049035636873,0.0,5.309813353288376,0.0,26.449634037250114,13.596937701798877,56.27626192841973,0.0,0.0,5.309813353288376,0.0,0.0,23.20187978046503,25.535548277702578,19.06280027574374,0.0,56.686739540011125,40.66754380924009,11.457108705810853,0.0,0.0,64.63,113.57125759666079,10.959832924313863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,47.916617313687,157.52757742348675,12.18148981917019,27.03635668619299,-2.6981296847442677,-8.79464699074074,-8.73349147297808,-3.563263526121345,0.0,-15.499559971284292,-3.734110060758991,0.3333333333333333,25,1,5,0,1,1,1,0,1,5,1,7,8,0,0,0,2,3.9643000000000033,96.38770000000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +91610,COc1ccc2c(c1)C(=O)N(CCc1ccc(S(=O)(=O)NC(=O)NC3CCCCC3)cc1)C(=O)C2(C)C,1,14.536882243100127,-6.538537483878371,14.536882243100127,1.1174309445360793,0.5316095393639422,527.6430000000006,494.37900000000036,527.2090067760008,198,0,0.32840989085221617,-0.4967419858710027,0.4967419858710027,0.32840989085221617,1.2432432432432432,1.972972972972973,2.6486486486486487,2.022409413286752,2637.6696174763792,55.59941162659982,50.69937881974691,18.51587540067464,30.62739752016301,25.72672036805977,10.772356505860493,6.627166902602458,8.168122058557694,4.2527118566458775,5.369287069806479,2.630064369139705,3.3278094805868474,-3.4,28381868643654.258,7.371502179944513,10.530334868795611,5.635141481569,263.64955196393885,10.046676307088426,5.749511833283905,2.8236841566564013,5.907179729351506,15.930470882759089,6.031114512338072,14.48898409899412,17.92745378213489,0.0,0.0,37.24603082697803,68.11913675262666,42.75185765542657,35.16828763401001,72.85547088827771,27.868765124448664,0.0,14.924842697872986,0.0,68.26970005583182,13.534812143198533,58.98728542873405,0.0,5.749511833283905,14.761795920822557,4.794537184071822,5.749511833283905,0.0,50.71588529776867,26.605743708205566,0.0,109.54681564167775,47.192414429160834,2.8236841566564013,0.0,0.0,121.88,189.33491728337,22.8014085365444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,45.317199397933244,301.6872503872965,0.0,39.02133638167686,-1.4317450388196327,-10.175706487972565,-6.823321245176104,-21.242921104136908,-26.745515366589917,-13.678373310295552,-10.194337549316034,0.4444444444444444,37,2,9,1,1,2,2,0,2,6,2,10,10,1,0,1,4,3.518500000000002,137.9356999999999,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1 +2732,NS(=O)(=O)c1cc(C2(O)NC(=O)c3ccccc32)ccc1Cl,0,12.790799420333972,-5.194588634836648,12.790799420333972,0.17267479213907855,0.7560395435859315,338.7719999999999,327.6840000000001,338.0128055120003,114,0,0.25398536824033263,-0.3631152569719317,0.3631152569719317,0.25398536824033263,1.4090909090909092,2.1818181818181817,2.909090909090909,2.639242198801116,1339.892524095454,25.36736081903094,21.31363311632846,11.886058643274641,15.098905741696063,10.764364863832494,7.332503588678623,4.179146720747614,5.915492163877018,2.831171393645868,4.048791994474984,1.8837046320137518,2.779232045982158,-1.9299999999999993,9398602.399698881,6.673910353540781,4.786022252575603,2.186719505317761,146.83761690967043,10.418621544395588,7.719167632174177,7.1368276722984545,11.454490810640218,5.907179729351506,0.0,4.794537184071822,13.542820220500968,0.0,0.0,35.770614720885696,18.127256122989884,16.690354475090988,14.617943206932866,32.151978487684104,27.531410772991606,1.4311996572326342,5.309813353288376,5.12502323617203,10.620469069488028,0.0,64.00991874247538,0.0,0.0,10.434836589460406,0.0,0.0,11.600939890232516,20.86498456202029,15.748276747377837,0.0,31.080201552354346,47.192414429160834,9.258159548725928,0.0,0.0,109.49000000000001,95.68588193089451,13.212334168400758,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,26.862975675641287,111.30033584917956,5.830463100189229,11.45443535927745,2.5271176722908306,-5.879225035693289,-1.4198635781473083,-7.174230287815393,0.0,0.0,-5.194588634836648,0.07142857142857142,22,4,6,0,1,1,2,0,2,4,3,8,4,0,0,0,3,0.9242000000000001,79.7322,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +1046,NC(=O)c1cnccn1,0,11.012668178382464,-1.156481481481481,11.012668178382464,0.2588170823885112,0.5507568071868295,123.11499999999998,118.075,123.04326178,46,0,0.26840075469440844,-0.36420935692148526,0.36420935692148526,0.26840075469440844,1.8888888888888888,2.7777777777777777,3.5555555555555554,3.2243704024842073,381.87501464849447,10.878315177510851,9.249889076963736,4.249889076963737,6.430428110326542,4.466585324981742,2.0721581339818265,1.2127763565334093,1.2127763565334093,0.63798647882921,0.63798647882921,0.3074469453337534,0.3074469453337534,-1.45,1021.318748948001,2.056563387882732,2.212180313039664,1.2183138294288087,58.87801975815882,5.719716975726273,5.693927994848461,2.8236841566564013,0.0,5.907179729351506,0.0,9.77851570501903,4.9839785209472085,0.0,0.0,0.0,0.0,12.345790421629522,10.28517087932542,11.730497009238883,5.907179729351506,0.0,9.967957041894417,5.719716975726273,0.0,0.0,24.212613627292743,0.0,0.0,5.719716975726273,0.0,0.0,0.0,15.875136771245923,0.0,0.0,14.600740847430941,18.51868563244428,2.8236841566564013,0.0,0.0,68.87,30.11979335664425,4.794537184071822,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,9.967957041894417,6.935959825167062,34.4666477702192,0.0,17.549797808012094,0.0,-0.8319652305366592,-1.156481481481481,0.0,-1.6946655328798184,0.0,0.0,0.0,9,2,4,0,0,0,0,1,1,3,1,4,1,0,0,0,1,-0.4245000000000001,30.549899999999997,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +9795056,C[C@@H]1NC(C)(C)CO[C@@]1(O)c1cccc(Cl)c1,0,8.722394652305367,-4.182029832766442,8.722394652305367,0.9066954837490555,0.8090348285000858,255.74500000000012,237.60099999999994,255.102606496,94,0,0.214088456244058,-0.3605806429243795,0.3605806429243795,0.214088456244058,1.8823529411764706,2.764705882352941,3.4705882352941178,3.2614286005732156,976.6072783422915,27.95566544670048,26.14167464943691,8.897603595455367,15.347893971888565,13.104030153664187,4.626532740709593,3.1805083987836786,3.5584728717929064,1.8573400203080455,2.046322256812659,1.1130388853321054,1.2547755627105657,-0.6100000000000001,6777522.542308207,3.0995244600571956,4.247918180738487,2.4749528846782574,132.17527005232276,15.155484498195637,1.4118420783282006,0.0,7.2183108098032305,0.0,0.0,0.0,0.0,0.0,0.0,23.685777305559107,32.640513767213626,28.461837063353645,22.17218760445747,33.18965012195898,11.600939890232516,1.4311996572326342,5.309813353288376,0.0,37.899605225190626,6.558985242916289,34.7557596360915,0.0,0.0,5.309813353288376,0.0,0.0,11.600939890232516,24.655810811989127,10.523974106370645,0.0,48.05126474230759,24.16967483065318,6.434475392069527,0.0,0.0,41.489999999999995,84.5241634574868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,41.11298147831693,148.14604564279415,5.827543457454997,0.0,2.4689306972789105,-5.5612579128873785,-3.925787037037037,-8.727991845658018,0.0,-16.36637189083453,0.0,0.5384615384615384,17,2,3,0,1,1,1,0,1,3,2,4,5,0,1,1,2,2.2720000000000002,67.97750000000003,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +64143,Cc1c(O)cccc1C(=O)N[C@@H](CSc1ccccc1)[C@H](O)CN1C[C@H]2CCCC[C@H]2C[C@H]1C(=O)NC(C)(C)C,0,15.589271004872796,-6.159531668619649,15.589271004872796,1.1354977236851809,0.326500977362608,567.7960000000021,522.4360000000004,567.3130779200012,218,0,0.29310803971797766,-0.5076609476452876,0.5076609476452876,0.29310803971797766,1.275,2.075,2.8,2.5561413491434157,2981.760525934656,67.93627491978329,64.38288223881919,20.199378819746915,37.13674609692657,32.50091622756908,11.106489036569167,7.117049293994542,7.933545874922267,4.273003837818739,4.976663366432061,2.640604575395703,3.181806625443762,-2.55,4.259793147837286e+19,6.814323594394597,13.407906745472761,8.015265495682277,306.1829833619825,20.837243088791176,5.749511833283905,2.8236841566564013,7.33837938658414,7.33837938658414,0.0,14.48898409899412,0.0,0.0,11.761884949391115,43.288449534641316,76.1110084732208,81.38274465018377,33.1941470815217,78.83147570999353,23.576244408094126,2.8623993144652684,15.51953643742723,11.787915370726157,87.82240466738,18.698676253782047,59.46625264470035,0.0,5.749511833283905,10.619626706576751,0.0,5.749511833283905,11.761884949391115,72.14768935604786,4.794537184071822,18.639807488021837,124.5428418289786,53.23483313682413,2.8236841566564013,0.0,0.0,101.9,222.6205416153939,19.23170330854106,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,42.65548096555965,391.1622572341375,-1.1354977236851809,27.064989566075035,4.798615720211664,-14.46449718570318,-19.81403949877238,-24.304227938960516,-32.49037455720007,-31.15055894943651,0.0,0.5625,40,4,7,1,1,2,2,0,2,6,4,8,12,1,1,2,4,4.747620000000004,160.5924999999997,0,1,0,0,0,0,0,1,0,0,2,2,0,1,0,1,2,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +60613,Nc1ccn(C[C@@H](CO)OCP(=O)(O)O)c(=O)n1,0,12.309241110796169,-5.644660435552992,12.309241110796169,0.3706486059184919,0.45197128428898714,279.1889999999997,265.07699999999994,279.06202179800044,102,0,0.35049595660518407,-0.39360351967442,0.39360351967442,0.35049595660518407,1.8888888888888888,2.7222222222222223,3.388888888888889,3.9447303478612255,951.1337489217806,25.499635521070495,22.238344124783012,9.132771315782927,14.297677024663349,10.548638785074253,5.472125433193035,2.5240048367189254,3.701515175559104,1.2378962016968775,1.552790092364384,0.6676091844459411,0.8706996762384582,-1.2500000000000002,2306854.946059917,4.394259369422962,6.074875346260388,4.943905817174516,122.04674976627875,25.356772918671496,12.117936425293228,2.8236841566564013,4.293598971697903,0.0,13.28550572499136,9.132147932722685,4.794537184071822,4.9839785209472085,0.0,0.0,6.042418707663295,6.172895210814761,31.4726899597142,39.362615390064946,13.413625104622913,4.293598971697903,9.551078168738563,0.0,12.576877711265933,18.578775866100763,22.69959450075335,0.0,0.0,11.409460373929747,5.817862777835028,0.0,7.595762326787885,47.68394704690611,15.798770923047323,0.0,12.33682700553198,17.009851102549877,2.8236841566564013,0.0,0.0,147.89999999999998,61.32171867073622,9.35958546900315,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,24.62103446389243,19.454110133886285,119.97312085949744,0.0,22.22299179587915,3.5954073759133283,-2.2514518099161407,-1.0617186218835901,-1.2307009400982614,-9.95668141639372,-8.174084585222982,-5.644660435552992,0.5,18,5,9,0,0,0,0,1,1,9,4,10,10,0,0,0,1,-1.6618000000000002,61.77930000000002,0,1,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6603857,CN(C)c1cc2c(Nc3ccc4c(cnn4Cc4ccccc4)c3)ncnc2cn1,0,8.899259712908478,-3.4406489772907918,8.899259712908478,0.14030297521008195,0.4800934858542697,395.46999999999974,374.30200000000013,395.18584367200066,148,0,0.1680819017856402,-0.3627254454651267,0.3627254454651267,0.1680819017856402,1.1,2.0,2.8666666666666667,1.8247026501731352,2236.78404114026,38.60748331610759,35.630495168499706,14.630495168499708,23.25957369488863,18.527708763999666,8.080495168499708,5.572871376374779,5.572871376374779,3.6829526825623344,3.6829526825623344,2.402546367962386,2.402546367962386,-3.999999999999999,39257139951.890366,6.247597078046905,7.43801652892562,3.4119860252620264,203.1420573276594,10.209723084138854,19.309855825806505,1.4118420783282006,0.0,0.0,0.0,4.681802935145185,14.951935562841626,5.098681808301038,0.0,30.212093538316473,29.733126322350174,38.63603984119898,47.69591277139089,28.827013201732598,39.12896169451573,0.0,24.732420306287846,0.0,6.496859684315945,24.161376884703348,78.5943819962624,0.0,0.0,10.209723084138854,17.323111830353618,0.0,0.0,38.68407410685234,6.496859684315945,0.0,32.97862261510139,73.0309305045654,1.4118420783282006,21.805849864162113,0.0,71.76,138.17185717565863,0.0,0.0,10.209723084138854,4.681802935145185,0.0,0.0,0.0,0.0,20.05061737114266,28.827013201732598,173.11257383534954,0.0,10.893496357265944,2.5164649404519936,-3.1548855098317086,-1.9451629372630768,-8.537940794125989,-2.735690906736875,-10.06552165177651,0.0,0.13043478260869565,30,1,7,0,0,0,2,3,5,7,1,7,7,0,0,0,5,4.232400000000002,120.2197,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3034034,C=C[C@H]1CN2CC[C@H]1C[C@H]2[C@H](O)c1ccnc2ccc(OC)cc12,0,9.413127125850341,-4.4495639910451,9.413127125850341,0.7553975340136048,0.8776016184783941,324.4239999999996,300.232,324.1837780080007,126,0,0.21102301563596135,-0.4967429396078586,0.4967429396078586,0.21102301563596135,1.7916666666666667,2.7916666666666665,3.6666666666666665,2.333505302166257,1755.594917430569,37.54952357383516,35.71092377192764,11.710923771927643,21.28446959358909,18.388654714909553,6.4804064244456905,4.615147750704714,4.615147750704714,3.2708947893645384,3.2708947893645384,2.187763799719591,2.187763799719591,-1.9099999999999997,3768152280.4334393,4.077207469279656,6.187607918654215,2.5024063339993896,176.11938846535955,9.84567114490726,5.749511833283905,0.0,1.4311996572326342,0.0,0.0,9.883888251797686,0.0,0.0,6.531038962001867,6.052071746035566,60.76375118005104,39.15221569581758,35.08377387749148,41.37311793682233,10.902924932081056,1.4311996572326342,9.883888251797686,11.787915370726157,24.84376029795839,20.03167182751448,48.48913224120237,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,42.47346039600165,0.0,11.787915370726157,55.91676611322085,42.925680749505375,0.0,10.902924932081056,0.0,45.59,126.70482623361681,2.7415171123404405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.82964966585447,30.21712933680725,206.61099735469062,0.0,2.8378867977210778,3.3176654095280087,-2.5033574993996175,-9.77843138251373,-11.256080456216345,-14.108871377898934,-10.127330398236305,-3.409145114341481,0.45,24,1,4,0,3,3,1,1,2,4,1,4,6,0,3,3,5,3.1732000000000014,95.02680000000007,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3034010,CCCCCCCCCCC[C@@H](C[C@@H]1OC(=O)[C@H]1CCCCCC)OC(=O)[C@H](CC(C)C)NC=O,0,14.737983911530986,-6.484480948379242,14.737983911530986,1.8758264123285096,0.0948674729834446,495.74499999999927,442.32100000000025,495.39237379600144,204,0,0.3284108437869222,-0.4609863609210806,0.4609863609210806,0.3284108437869222,1.1428571428571428,1.7714285714285714,2.3714285714285714,5.182864915873088,2657.526057258392,72.7236146391316,69.98845504781927,16.988455047819272,37.10971344518017,34.82329620762344,8.37608261212348,4.8639846823688195,4.8639846823688195,2.6929966882578174,2.6929966882578174,1.5150372965369714,1.5150372965369714,-1.59,6731389955959561.0,4.700093823525318,19.58110530205703,13.915176986678182,288.7348111612913,14.783539260888475,19.548687078419842,1.4118420783282006,6.386146945317806,0.0,11.938610575903699,9.589074368143644,4.794537184071822,0.0,0.0,103.88266728513527,31.385657290680598,72.16933559749998,10.00623335387374,96.54862445899519,18.324757521221507,0.0,5.309813353288376,11.787915370726157,153.9252203140318,0.0,0.0,0.0,0.0,5.309813353288376,0.0,0.0,0.0,36.50268604347112,23.85733745981556,11.787915370726157,207.02673671263344,0.0,1.4118420783282006,0.0,0.0,81.69999999999999,189.34770655926786,15.754370108385686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,71.32052844300948,445.0223990841447,0.0,40.839017188779195,-1.8758264123285096,0.0,-17.933119871629636,-5.81295114517758,-109.11489037895393,-18.62462846483459,0.0,0.896551724137931,35,1,6,0,1,1,0,0,0,5,1,6,26,0,1,1,1,6.881900000000007,140.91269999999997,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5311027,CCNC(=O)CCC/C=C\C[C@H]1[C@@H](O)C[C@@H](O)[C@@H]1/C=C/[C@@H](O)CCc1ccccc1,0,13.002267955730957,-5.193711934893845,13.002267955730957,1.1723849567984137,0.31184363018252953,415.57399999999944,378.27800000000013,415.272258664001,166,0,0.21949591561762744,-0.3927030328211237,0.3927030328211237,0.21949591561762744,1.5333333333333334,2.4,3.1666666666666665,3.2922862351294495,2174.7077896732308,54.04952357383516,51.58020675735541,14.58020675735541,29.30355941858904,25.685668643319232,7.513710176427685,4.641131797854257,4.641131797854257,2.735127971543094,2.735127971543094,1.5956783554128633,1.5956783554128633,-1.9499999999999993,6623424528006.866,4.704589777546775,13.372305816446026,8.424252249211184,232.37632752820363,20.63623792661001,0.0,1.4118420783282006,10.200778701049408,0.0,0.0,4.794537184071822,0.0,0.0,0.0,54.420380522458736,50.173925801002646,53.922596851912445,34.68915675489261,66.76783618933898,5.907179729351506,4.293598971697903,5.309813353288376,11.787915370726157,69.7024205074513,6.496859684315945,59.98383201415574,0.0,0.0,5.309813353288376,0.0,0.0,0.0,50.264117039536956,11.167462085401201,11.787915370726157,95.88792537058615,54.420380522458736,1.4118420783282006,0.0,0.0,89.79,159.18802065928907,7.536054296412263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,48.198956291302956,304.54122921861995,0.0,13.002267955730957,10.752414066814044,-1.6563238443665311,-13.10792874759335,-17.543110946297016,-47.52549545947336,-8.129718910101463,0.0,0.56,30,4,5,1,0,1,1,0,1,4,4,5,16,1,0,1,2,3.1469000000000014,119.81210000000003,0,3,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +71236597,CN1CCCn2c1cc(OCc1cc(F)c(Oc3ccc(C(F)(F)F)nc3)c(F)c1)nc2=O,0,15.362901424878958,-5.332391104272584,15.362901424878958,0.3449761225749768,0.524535620958643,468.3819999999998,451.2460000000001,468.1220815040005,174,0,0.43283571798626297,-0.47257654456315956,0.47257654456315956,0.43283571798626297,1.2424242424242424,2.0,2.696969696969697,1.88909271376743,1958.6555277995783,38.64338170096983,32.403421618437555,15.403421618437555,22.350819519521018,16.701599886182514,8.201599886182516,5.704935783732002,5.704935783732002,3.520509730834175,3.520509730834175,2.165552668900883,2.165552668900883,-3.6999999999999993,10057570695.34804,9.654874942912747,8.67796493711145,4.885291834814533,207.4589502406551,14.373635638450576,23.820287848883684,17.383953515375694,5.879988336435371,0.0,11.86604191564695,4.567099647791355,18.55934580036867,18.155223663971668,0.0,0.0,36.10605122367956,35.60727486976898,19.880480772516957,54.72869660086799,5.817862777835028,0.0,14.53505668968577,0.0,25.605068346005087,18.372596315448668,69.76109050004378,0.0,17.37901200300318,20.063379036654048,27.76993801620913,17.37901200300318,0.0,28.00774327428396,19.232143444675707,11.63444168209179,40.933199842768595,41.17952593320306,0.0,0.0,0.0,69.47999999999999,132.1410927582639,17.96578232709628,8.78083009534964,4.567099647791355,0.0,0.0,0.0,0.0,0.0,14.704819995694464,28.039758408693785,214.2652716035618,0.0,18.307694915565268,0.0,-5.700447507975727,-10.90696083760816,-8.410672369262581,-10.72698203143308,-15.327903772847538,0.0,0.2857142857142857,33,0,7,0,1,1,1,2,3,7,0,12,6,0,0,0,4,4.146500000000003,106.38700000000006,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,2,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +25019940,O=C(CN1C(=O)C2(CCCC2)NC[C@H]1c1cc(F)cc(F)c1)Nc1ccc2c(c1)C[C@@]1(C2)C(=O)Nc2ncccc21,1,15.460599145366345,-5.1040361327383925,15.460599145366345,0.2548109728144481,0.4533644138920071,557.6010000000014,528.3690000000003,557.2238462280009,210,0,0.24352360321087158,-0.3245415255760477,0.3245415255760477,0.24352360321087158,1.1951219512195121,1.951219512195122,2.731707317073171,1.5449612413515241,2900.5981530501895,54.06351324173757,48.71674179490983,19.71674179490983,31.30687763769432,25.541652470454657,11.200011683954788,8.392686744859475,8.392686744859475,5.917959876546925,5.917959876546925,4.1504437367157845,4.1504437367157845,-4.18,142629122910784.7,9.158917469111376,9.442077139506013,4.195493851122665,275.9944762286003,20.829349790715607,25.36100622257096,2.8236841566564013,17.721539188054518,0.0,0.0,14.383611552215466,13.764808616296847,0.0,0.0,24.83068721798535,72.39414761872499,49.153631155557676,33.42091086417241,63.03969034297548,29.226788240573107,0.0,15.193701605086062,0.0,55.20935759810604,23.613346075208643,88.40049252100088,0.0,0.0,15.929440059865126,20.28607914786823,0.0,0.0,46.13807206086744,32.54445182427101,11.63444168209179,89.40312050088082,54.512244872121116,4.235526234984602,0.0,0.0,103.43,201.34989416573922,13.701350036654302,13.575367279421462,5.309813353288376,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,35.762973026899665,282.6543349953144,0.0,46.25420252270379,-2.5231550210549227,-16.75591066389083,-13.813265563087457,-18.721392691978505,-27.025194038103578,-9.9862862065696,0.0,0.3548387096774194,41,3,8,2,2,4,2,1,3,5,3,10,4,1,1,2,7,3.7729000000000017,147.03809999999982,0,0,0,0,0,1,0,0,0,0,3,3,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,2,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2789,CN1C(=O)CC(=O)N(c2ccccc2)c2cc(Cl)ccc21,0,13.334134542705966,-3.690611418178385,13.334134542705966,0.08814814814814831,0.7576569223589451,300.7449999999998,287.641,300.06655533600036,106,0,0.24056804266417567,-0.3130382635209842,0.3130382635209842,0.24056804266417567,1.1428571428571428,1.9047619047619047,2.619047619047619,2.668448433871354,1248.258700125375,26.23760430703402,23.088888244936868,10.844817190955325,15.38354503153699,11.93887131346835,5.816835786477578,3.765928151821454,4.1438926248306815,2.520768163203203,2.7097503997078163,1.666209125662671,1.8029579566514033,-2.3299999999999987,11200577.347325223,5.141989484760499,5.2201165206274105,2.3830286117828967,145.35302889917565,4.899909730850478,6.372924901329379,0.0,11.814359458703011,0.0,0.0,14.488984098994122,0.0,0.0,0.0,29.7281960132224,30.212093538316473,24.539639269558233,22.340840998728883,27.4089355983565,40.47745817298621,0.0,0.0,0.0,6.372924901329379,16.775646361983203,53.36198297504768,0.0,0.0,9.799819461700956,17.062158824050687,0.0,11.600939890232516,18.790186358985256,9.589074368143644,0.0,24.192786131542235,48.33934966130636,5.022633313741326,0.0,0.0,40.620000000000005,95.58725305941302,9.589074368143644,0.0,9.799819461700956,0.0,0.0,0.0,0.0,0.0,0.0,29.420801120445372,103.55482201033705,5.941839989082052,26.17860344755185,-0.7830381288317796,-3.0746935626102276,-3.8528082220542528,-7.813573256977686,-3.690611418178385,-3.5160964138741937,0.0,0.125,21,0,4,0,1,1,2,0,2,2,0,5,2,0,0,0,3,3.3712000000000018,83.06700000000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10219,CC[C@H]1CN2CCc3cc(OC)c(OC)cc3[C@@H]2C[C@@H]1C[C@H]1NCCc2cc(OC)c(OC)cc21,0,10.141211734693877,-5.801997118291764,10.141211734693877,1.1706377234588259,0.6056838132410554,480.64899999999955,440.3290000000003,480.2988077600011,190,0,0.16056747415769082,-0.4928592208645374,0.4928592208645374,0.16056747415769082,1.0,1.6571428571428573,2.342857142857143,2.240396258583252,2665.709569935688,59.41133089340096,57.02742035285537,17.02742035285537,32.532034281529995,29.198240746105302,9.251027150605347,6.5795822590164725,6.5795822590164725,4.698765602448446,4.698765602448446,3.180427685163057,3.180427685163057,-2.44,178578604484710.44,5.532921846286889,10.274544031778312,4.468305973925776,265.6957732205055,24.257265168488573,1.4118420783282006,22.99804733313562,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,13.224817018625059,90.19995545780078,53.815433984905845,52.82546384659436,73.81887758416701,0.0,0.0,10.209723084138854,11.787915370726157,50.75230156064186,47.64238888847819,46.42348079744116,0.0,22.99804733313562,24.257265168488573,0.0,22.99804733313562,0.0,52.54229861932866,12.745849802658759,11.787915370726157,113.71984141540952,24.16967483065318,1.4118420783282006,0.0,0.0,52.19000000000001,189.81385703456192,13.7075855617022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,50.63756611486471,367.91158180451686,0.0,-1.1706377234588259,-1.2591878935268541,-8.466756171939046,-18.95424722243767,-18.42068475827927,-25.146285469351206,-19.58722029419943,-15.656562271324638,0.5862068965517241,35,1,6,0,3,3,2,0,2,6,1,6,12,0,1,1,5,4.943400000000005,138.06269999999995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +135398735,CO[C@H]1/C=C/O[C@@]2(C)Oc3c(C)c(O)c4c(O)c(c(/C=N/N5CCN(C)CC5)c(O)c4c3C2=O)NC(=O)/C(C)=C\C=C\[C@H](C)[C@H](O)[C@@H](C)[C@@H](O)[C@@H](C)[C@H](OC(C)=O)[C@@H]1C,0,16.060889744205813,-6.828197033817174,16.060889744205813,1.058707667231333,0.10948484473140657,822.9530000000021,764.4889999999999,822.4051232960019,322,0,0.3121091952257162,-0.5067356780024597,0.5067356780024597,0.3121091952257162,1.0847457627118644,1.9152542372881356,2.5762711864406778,2.575480364176596,4403.217927658519,92.85012400322687,86.18783386756618,28.187833867566187,51.39198980290241,43.243295753530006,14.754840705710738,10.698260123438017,10.698260123438017,7.158099432649913,7.158099432649913,4.5507119881016305,4.5507119881016305,-5.16,4.903165671674368e+37,11.202464372653463,17.991844748290085,8.905370775160415,425.89445581103746,54.701215854875116,24.699312082971925,7.161353911612106,2.8623993144652684,15.984023647414347,11.756416440522447,19.392524076169995,0.0,5.101407525739723,0.0,45.56378370728942,26.731682880909172,134.80433587437867,74.8014887584753,131.5663913221312,40.310216886018445,7.155998286163171,9.90882225480501,28.67723826719203,84.92232019873597,45.31103144971699,52.709878076924994,0.0,22.99804733313562,10.046676307088426,5.687386274683562,22.99804733313562,0.0,136.56764503570875,23.79966322954379,30.42772285874799,140.7275814010838,41.120931127573726,1.4118420783282006,10.772448428929591,0.0,220.14999999999995,279.73614694078947,22.655481936442662,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,40.119174388875884,71.4600664405721,527.72974499936,0.0,44.73202571477269,18.50930013597123,-12.114634996172176,-49.990450300726735,-12.599234340859262,-31.86453927547644,-65.6779726895258,-5.14090591401021,0.5348837209302325,59,6,16,0,4,4,2,0,2,15,6,16,19,0,1,1,6,4.335420000000004,220.47919999999948,0,2,0,0,0,0,0,3,0,0,3,3,0,0,0,3,1,0,0,1,0,0,0,0,0,0,2,1,0,1,0,0,0,0,2,0,14,0,0,0,1,4,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,3,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +68553,Clc1ccc(COC(Cn2ccnc2)c2ccc(Cl)cc2Cl)c(Cl)c1,0,9.093286389658743,-3.7089469560972557,9.093286389658743,0.062437064331905656,0.4616906207935435,416.1349999999998,402.0230000000001,413.98602378800035,130,0,0.10430230875767818,-0.36686655566542276,0.36686655566542276,0.10430230875767818,1.12,1.84,2.56,2.48390397123653,1456.1238788322912,30.15181786940711,25.814533373500687,14.83824915757451,17.645182265363854,13.282211225232214,7.794069117269124,4.171801028607245,5.683658920644154,2.5357265885011477,3.480637771024214,1.5127698890942958,2.300845881925007,-1.229999999999999,108462640.6424143,7.79191239304148,8.434163357217534,4.9007419466901245,185.27539490275387,9.303962601591405,7.450776583120208,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,58.48859697625666,29.733126322350174,37.99977516829182,37.17907787141132,23.927482740183127,46.40375956093006,0.0,9.551078168738563,0.0,19.135862954182222,0.0,86.1211106199348,0.0,0.0,0.0,0.0,0.0,46.40375956093006,9.551078168738563,17.792707881032285,0.0,36.397540796727064,54.90367438157552,20.090533254965305,0.0,0.0,27.05,105.25697357411704,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,70.3312423011132,121.09193454347633,23.93383236247449,3.3396638449533467,-3.021665459718985,-2.167508853335573,0.0,-5.505735708773526,-6.763423560218821,-7.2126527244128145,0.0,0.16666666666666666,25,0,3,0,0,0,2,1,3,3,0,7,6,0,0,0,3,6.454800000000002,102.68100000000003,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36314,CC(=O)O[C@H]1C(=O)[C@]2(C)[C@@H](O)C[C@H]3OC[C@@]3(OC(C)=O)[C@H]2[C@H](OC(=O)c2ccccc2)[C@]2(O)C[C@H](OC(=O)[C@H](O)[C@@H](NC(=O)c3ccccc3)c3ccccc3)C(C)=C1C2(C)C,0,17.708305572078636,-7.386650423761063,17.708305572078636,1.4274772848989385,0.12978619445124503,853.9180000000017,802.5099999999998,853.3309553120014,328,0,0.338014232853755,-0.4557369238936237,0.4557369238936237,0.338014232853755,0.9516129032258065,1.6451612903225807,2.2419354838709675,2.0584455415880014,4545.836195894223,88.74531151761227,80.66268966199404,29.66268966199404,50.146759756802524,41.2475308217982,16.075572354906654,12.069006563309618,12.069006563309618,8.500405388331187,8.500405388331187,5.839334959117045,5.839334959117045,-5.739999999999998,3.926797048926766e+37,13.392707209130252,16.512845507693868,7.294407711419631,429.85697030599806,44.32055269561026,23.841104891833652,24.956173889576803,4.293598971697903,5.907179729351506,23.877221151807397,19.178148736287287,9.589074368143644,0.0,0.0,80.17039001888759,54.583119617080065,68.955522790259,68.4275007327581,133.61545666508118,35.56764582752384,4.293598971697903,5.309813353288376,16.723938624156638,107.55730475844976,6.558985242916289,118.47284415017899,0.0,0.0,5.309813353288376,0.0,0.0,0.0,109.42886439912701,42.86246350528753,16.723938624156638,150.58017595801726,101.78248967508799,1.4118420783282006,0.0,0.0,221.29,290.190531956514,48.75410007969139,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,64.55372762265806,488.55215098368404,0.0,94.19965985677844,11.62684270328758,-42.541367376685685,-29.560993462231608,-33.5221770881556,-51.70656789370834,-40.46421438963566,0.0,0.44680851063829785,62,4,15,3,1,4,3,0,3,14,4,15,19,2,1,3,7,3.735700000000003,217.69009999999938,0,3,0,0,0,0,0,0,0,0,6,6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,5,0,0,0,4,5,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +84029,CC[C@H]1OC(=O)[C@H](C)[C@@H](O[C@H]2C[C@@](C)(OC)[C@@H](O)[C@H](C)O2)[C@H](C)[C@@H](O[C@@H]2O[C@H](C)C[C@H](N(C)C)[C@H]2O)[C@](C)(OC)C[C@@H](C)C(=O)[C@H](C)[C@@H](O)[C@]1(C)O,0,16.736704066713422,-8.388645360922146,16.736704066713422,2.055469287980216,0.2658294280815995,747.9640000000028,678.4120000000001,747.476891268002,304,0,0.3111884202896951,-0.4589365811706784,0.4589365811706784,0.3111884202896951,0.9615384615384616,1.8076923076923077,2.423076923076923,4.030308393982116,3829.760259126167,98.5102254006209,93.75444137153018,24.75444137153018,51.633834401243824,46.63629645974401,12.503303297888568,9.26649989901357,9.26649989901357,5.8804159215627,5.8804159215627,3.3983252402881123,3.3983252402881123,-1.3000000000000005,2.2342782381959187e+39,8.455505577315071,17.659166368284723,9.37792232192957,407.56889082962914,58.493183171879686,29.62434983819859,12.532156737073795,5.724798628930537,0.0,5.969305287951849,9.589074368143644,0.0,0.0,0.0,27.407568469182717,74.1817812083267,111.31576459587411,69.42828634080394,152.2816539602369,11.75255023431679,5.724798628930537,4.899909730850478,23.575830741452314,178.0039666322487,28.02755871832967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,154.83339593083076,42.747115044743985,23.575830741452314,183.10992692933834,0.0,0.0,0.0,0.0,182.91,246.25981605719798,32.89820534808528,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,44.1195475334291,71.39962533950971,650.3663263127717,0.0,31.357370083400607,15.660941603483565,-21.399151178335917,-40.24310482042242,-6.408465293927821,-96.56004955043107,-73.5102344396129,-11.430299383592423,0.9473684210526315,52,4,14,0,3,3,0,0,0,14,4,14,26,0,3,3,3,2.439700000000004,191.0481999999994,0,4,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,1,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +60919,Cc1nc(C)c2c(n1)N(Cc1ccc(-c3ccccc3-c3nn[nH]n3)cc1)C(=O)CC2,0,13.795033790250933,-3.846734923912365,13.795033790250933,0.18097122538843968,0.5522261019745442,411.4689999999997,390.3010000000001,411.1807582920007,154,0,0.22830386111067458,-0.2919742513711115,0.2919742513711115,0.22830386111067458,1.1612903225806452,2.0,2.7419354838709675,1.900410635377658,2163.581411531409,39.58253928972526,36.038743458963566,15.03874345896357,23.521539823176045,18.7637989204817,8.316585324981743,5.799285586858319,5.799285586858319,3.927844353925368,3.927844353925368,2.6152324088983527,2.6152324088983527,-3.9399999999999995,53687635168.40824,6.780602531816698,7.714160623054112,3.5639987208478097,208.48306120750996,0.0,11.642267275834955,0.0,13.143426305679634,0.0,0.0,9.694446914922299,9.967957041894417,5.206409844936912,10.197363616602075,48.33934966130636,41.980448706666586,36.90134144127404,20.204445246018143,33.62155038580442,11.725042507186533,0.0,30.585115599088276,0.0,32.946493721566064,4.899909730850478,70.98458513754875,0.0,22.514758973090913,4.899909730850478,5.817862777835028,0.0,0.0,36.49229532843978,17.664321769717148,13.703784234591359,56.43333150097621,48.33934966130636,1.4118420783282006,22.514758973090913,0.0,100.55000000000001,138.17088033939226,4.794537184071822,0.0,10.10631957578739,0.0,0.0,0.0,0.0,0.0,25.378705754151362,28.827013201732594,174.58270877444687,0.0,20.545211637569036,10.63479247704484,-6.310160118545049,-5.419293087340233,-8.594916808575098,-7.496126088809204,-10.692216785791175,0.0,0.21739130434782608,31,1,8,0,1,1,2,2,4,6,1,8,6,0,0,0,5,3.4199400000000013,116.06670000000003,0,0,0,0,0,6,1,0,0,0,1,1,0,0,0,6,1,0,0,0,0,1,0,0,0,0,0,1,0,1,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2585,COc1ccccc1OCCNCC(O)COc1cccc2[nH]c3ccccc3c12,0,8.619486394471062,-4.472456407053945,8.619486394471062,0.2667704897209182,0.3499607634429391,406.4819999999997,380.27400000000017,406.18925731200073,156,0,0.2106904052934236,-0.49287002121803875,0.49287002121803875,0.2106904052934236,1.1333333333333333,1.9333333333333333,2.8333333333333335,1.897649045430948,2255.157953441243,43.37543250853871,40.52742035285537,14.52742035285537,25.178968983606,20.625971689087216,7.823296207623438,5.096234135007472,5.096234135007472,3.342839099866018,3.342839099866018,2.183436223601685,2.183436223601685,-3.2199999999999993,206424739668.43723,5.720307546897412,9.518994463287138,4.503684746753271,211.667387647717,29.606213676024986,26.35934242439467,12.910865744896011,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,0.0,36.25451224597977,30.212093538316473,34.76590273985863,38.599065743733036,53.67052800107886,21.805849864162116,1.4311996572326342,10.286816623517627,0.0,6.080018026949988,33.14964231334705,66.46660578429623,0.0,17.248535499851716,19.520402214688524,0.0,17.248535499851716,0.0,50.74667145886614,0.0,0.0,31.527446791915054,66.46660578429623,2.8236841566564013,21.805849864162116,0.0,75.74000000000001,150.0604648418955,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.84567114490726,45.25605651340421,226.1920530352646,0.0,0.2667704897209182,1.4791028733846676,-1.4062160682360791,-4.1176652098460504,-11.660529831209018,-4.4205445199391376,-17.36518608524503,-3.467784683894876,0.25,30,3,6,0,0,0,3,1,4,5,3,6,12,0,0,0,4,3.738000000000002,118.66520000000004,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5282375,CCOC(=O)/C=C(C)/C=C/C=C(C)/C=C/c1c(C)cc(OC)c(C)c1C,0,12.516565763490998,-3.933892878681166,12.516565763490998,1.6166919517344434,0.36070174388342935,354.4899999999995,324.25000000000006,354.2194948200008,140,0,0.3304984363184988,-0.49646770758271974,0.49646770758271974,0.3304984363184988,1.2692307692307692,2.1538461538461537,2.8461538461538463,4.787299612500515,1828.9586263308088,45.07446760021749,42.72474487139159,12.72474487139159,24.33578118860535,21.270620726159656,6.270620726159658,4.0477678416450935,4.0477678416450935,2.3759459934385125,2.3759459934385125,1.321285069335222,1.321285069335222,-2.5499999999999994,26943026067.047768,4.136948539545889,10.443104860214182,6.396026834176765,199.41473449959406,9.473725907600098,5.749511833283905,0.0,0.0,0.0,5.969305287951849,0.0,4.794537184071822,0.0,0.0,35.8334632602471,74.98068190829461,30.72572575709952,30.046040375841514,55.39101977677857,12.021377033987417,0.0,0.0,0.0,41.111352703774074,13.596937701798877,69.70279246476764,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,19.566242989750727,9.53140013787187,20.555676351887037,83.9322390037816,47.44898649797966,0.0,6.052071746035566,0.0,35.53,142.18197173761192,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,41.122756685106616,244.45235357483156,0.0,12.516565763490998,0.0,-10.423955334869524,-3.943133804796987,-13.098126774178139,0.0,-26.847311712297824,-3.6563917121801452,0.34782608695652173,26,0,3,0,0,0,1,0,1,3,0,3,14,0,0,0,1,5.645560000000007,109.52600000000007,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +53469448,Cn1cc(-c2ccc3c(c2)CCN3C(=O)Cc2cccc(C(F)(F)F)c2)c2c(N)ncnc21,0,14.024342862837837,-5.590907628683176,14.024342862837837,0.1876696475574855,0.5019859365318956,451.4519999999997,431.2920000000001,451.1619949200006,168,0,0.4159196955753653,-0.38301370201001383,0.4159196955753653,0.38301370201001383,1.3333333333333333,2.212121212121212,3.0,1.8952283013576485,2269.0012604846756,40.61591948454486,35.77820968699133,15.778209686991335,23.87658053303318,18.625172820995452,8.73074562999554,6.391766015450949,6.391766015450949,4.346940767669778,4.346940767669778,2.9321443297057104,2.9321443297057104,-3.8799999999999994,64898738042.41504,8.160295217012631,7.613526657003234,3.688503717074734,215.24288140958467,15.186726354368107,19.139170268739203,2.8236841566564013,5.907179729351506,0.0,6.176298517443475,4.794537184071822,9.967957041894417,13.171245143024459,0.0,24.16967483065318,41.19053549941025,40.49172945498507,31.030186169193367,45.46312049481666,28.445830217102618,0.0,14.53505668968577,6.975826900282246,18.922148320102234,17.116486390892696,71.46355235351504,0.0,11.126902983393991,10.619626706576751,24.67649419554305,0.0,0.0,26.93909610335322,30.692512404456302,0.0,41.364008486154965,54.77319787842406,2.8236841566564013,22.160304418626513,0.0,77.04,148.33103018956254,17.96578232709628,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,9.967957041894417,27.497338167720354,207.10013466492228,0.0,20.833023775202566,-0.7270674760334408,-9.553176643163445,-3.2369597978702584,-10.7848409852405,-15.50579013560095,-7.2086567355496385,0.0,0.20833333333333334,33,2,6,0,1,1,2,2,4,5,1,9,5,0,0,0,5,4.368100000000003,119.56240000000003,0,0,0,1,0,3,0,0,0,0,1,1,0,0,0,4,0,1,0,0,0,0,0,0,0,3,0,1,0,2,1,0,0,0,2,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1548992,CNC(=S)NCCSCc1nc[nH]c1C,0,8.046129062736206,-3.527657903439154,8.046129062736206,0.03289121676116613,0.5337458854483663,244.38900000000015,228.261,244.08163851199998,84,0,0.1671715085376504,-0.36581094127146835,0.36581094127146835,0.1671715085376504,2.066666666666667,3.0,3.8,3.374179903518226,828.2810168158856,24.95566544670048,23.10535096292756,8.73834412478301,13.481721913108322,11.242867604195501,4.625971689087216,1.9449909935578586,2.922511800923764,1.0394791908214676,1.7108137803394756,0.4943788932757608,0.9213332809522924,-0.7500000000000001,1077427.95250452,2.7339833344716893,6.6820520898970805,4.52542587282847,122.28517674702361,15.596629976806003,1.3707585561702202,9.34796311970936,0.0,0.0,0.0,0.0,4.9839785209472085,11.761884949391115,0.0,0.0,19.069765560342375,47.02563102378964,11.997299708814687,22.05538746519746,29.092195277162567,0.0,20.58060849775321,0.0,12.556849002445837,19.177643469748347,17.69122770366315,0.0,0.0,10.619626706576751,0.0,0.0,23.97975839243781,34.25106214564957,5.704956885150159,6.851892117295679,29.207717219909778,6.303371713966227,4.235526234984602,0.0,0.0,52.74,71.60985536326159,0.0,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,17.201851963993903,22.05538746519746,121.32641320982275,4.0958476425337,3.3862183245913404,-2.041835987143303,-8.556933294954806,0.0,0.0,-0.9583403743856482,-9.834702853797374,0.0,0.5555555555555556,15,3,4,0,0,0,0,1,1,3,3,6,7,0,0,0,1,1.0452199999999996,69.14710000000002,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +9849808,CC(C)C(=O)Oc1ccc(CO)cc1[C@H](CCN(C(C)C)C(C)C)c1ccccc1,0,13.842215429088178,-5.621074263038555,13.842215429088178,1.466978045286577,0.4210996938628835,411.5859999999995,374.2900000000002,411.27734404400104,164,0,0.3132707340054307,-0.4260203487022549,0.4260203487022549,0.3132707340054307,1.1666666666666667,1.9,2.533333333333333,3.955993731544039,2133.900173804366,53.99711733102786,51.671958466891546,14.671958466891548,29.094035117577874,25.895565264641526,7.487316974177664,4.965132960029045,4.965132960029045,3.0189577961749015,3.0189577961749015,1.802528599293523,1.802528599293523,-2.1699999999999995,3845923250247.3496,4.622818488158858,11.283630919103912,6.413514352168838,233.49740044339975,9.84567114490726,5.749511833283905,0.0,1.4311996572326342,0.0,5.969305287951849,9.694446914922299,0.0,0.0,0.0,49.95829648057113,63.48909345354861,59.132916574185145,26.160528489981562,63.98751635110707,5.969305287951849,1.4311996572326342,4.899909730850478,5.893957685363079,71.9730054700821,6.496859684315945,65.02970413639734,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,35.941867488157406,11.35352242698811,5.893957685363079,119.41589778768528,48.33934966130636,0.0,0.0,0.0,49.77,166.01225382824475,11.648329964922922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,48.66157785230954,313.30734761577855,0.0,12.140375253145594,3.8878258874779883,-6.5581262335181,-15.001098440600618,-25.527744937608762,-5.523334514361307,-37.80857796364677,0.0,0.5,30,1,4,0,0,0,2,0,2,4,1,4,17,0,0,0,2,5.381100000000005,122.71780000000005,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +111065,CC(=O)OC[C@H]1O[C@@H](O[C@H]2[C@H](OC(C)=O)[C@@H](OC(C)=O)[C@@H](OC(C)=O)O[C@@H]2COC(C)=O)[C@H](OC(C)=O)[C@@H](OC(C)=O)[C@@H]1OC(C)=O,0,13.64534305314813,-6.622110063932985,13.64534305314813,3.1503525856001806,0.18068184148273383,678.5930000000018,640.2890000000003,678.2007289960011,264,0,0.3045805147862134,-0.46299672171655687,0.46299672171655687,0.3045805147862134,0.46808510638297873,0.8085106382978723,1.2765957446808511,4.066203920856834,2693.1882717137946,68.39697674656902,59.7567175188134,21.7567175188134,36.64393702229224,29.623724356957947,10.623724356957947,6.834374891515655,6.834374891515655,3.8244897427831765,3.8244897427831765,2.609968437956224,2.609968437956224,-4.360000000000001,4529366024830605.0,11.092581942784385,17.527283901684747,12.065642488775643,321.5110791407832,52.10549249180054,32.72878312285276,30.586150476336847,12.346096395486885,0.0,47.75444230361479,38.356297472574575,0.0,0.0,0.0,0.0,0.0,87.71334228645065,17.819861230212858,142.55061509884334,47.75444230361479,0.0,0.0,0.0,115.98743789103911,13.117970485832577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.04471374212108,90.46178996437513,0.0,106.90396207283368,0.0,0.0,0.0,0.0,238.08999999999995,176.8598506804865,50.69312447810658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.36862953800049,44.488861082736456,354.7227403528324,0.0,106.5316783967018,0.0,0.0,-26.690413020822195,0.0,-62.74968359635484,-48.98098879902378,0.0,0.7142857142857143,47,0,19,0,2,2,0,0,0,19,0,19,20,0,2,2,2,-0.8307999999999915,144.99699999999984,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2733,O=c1[nH]c2cc(Cl)ccc2o1,0,11.003291761148905,-1.0058641975308638,11.003291761148905,0.18888888888888866,0.6535135154314028,169.567,165.53499999999997,168.993056048,56,0,0.41678332576252186,-0.40786211212678364,0.41678332576252186,0.40786211212678364,1.7272727272727273,2.5454545454545454,3.3636363636363638,3.144664303603686,617.7033147824009,11.325908934703556,9.141674649436911,5.897603595455366,6.947264862732148,4.695781863200324,3.1265327407095933,1.846486170145868,2.2244506431550954,1.1214629137359393,1.310445150240553,0.7168025127164257,0.8535513437051584,-1.22,2670.7362806266165,3.4512706524744514,2.134222588474927,1.0315762364778995,72.26977185609053,4.417150937053347,0.0,6.994862219970443,0.0,0.0,5.756062822229453,4.977003270229252,4.794537184071822,0.0,0.0,11.600939890232516,18.127256122989884,5.022633313741326,9.628976386126922,9.941268683892208,22.70066074949102,0.0,4.977003270229252,0.0,0.0,0.0,33.70048944303248,0.0,0.0,5.756062822229453,0.0,0.0,11.600939890232516,4.977003270229252,0.0,0.0,4.1122756685106605,27.33894424411505,6.434475392069527,11.099720859258504,0.0,46.0,11.798481529892747,4.794537184071822,0.0,28.207191588326417,4.977003270229252,0.0,0.0,0.0,0.0,4.417150937053347,17.125057637071375,34.17078861174099,5.607771478961954,11.351532501889645,-0.2691666666666661,-0.4440740740740734,-1.0058641975308638,-1.1332098765432093,0.0,0.0,0.0,0.0,11,1,3,0,0,0,1,1,2,2,1,4,0,0,0,0,2,1.7745,41.8447,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4022878,CC(=O)[N-]S(=O)(=O)c1ccc(N)cc1,0,11.965003779289493,-5.13196759259259,11.965003779289493,0.2342505983875034,0.7378797374208954,213.23800000000006,204.16599999999997,213.03393672791,76,0,0.15621575502414695,-0.5420126404845031,0.5420126404845031,0.15621575502414695,1.5714285714285714,2.2142857142857144,2.7142857142857144,3.591960108275178,730.0351325661743,18.325908934703556,15.52742035285537,7.3439169337830945,10.213937167907478,7.515796596132127,4.56143273393285,2.049236940136079,3.5901920960913123,1.0499097228676668,2.176122370853021,0.5782056656357245,1.247813598032184,-1.56,38557.80416576441,3.54179048785921,3.6669516894800975,2.461795458009449,94.73418598735675,15.236349024250183,10.023291153407584,2.8236841566564013,0.0,0.0,0.0,0.0,8.417796984328938,0.0,0.0,0.0,31.02156694794886,9.799661943194222,16.285697429550158,25.631328218248694,21.61785715744265,0.0,0.0,0.0,11.747375592813455,5.719716975726273,28.891769695105268,0.0,0.0,5.719716975726273,5.687386274683562,0.0,0.0,14.324976713680442,14.817828337479405,0.0,16.447202010487217,29.065158306170954,2.8236841566564013,4.722094864452088,0.0,91.33,57.534907580909284,13.212334168400758,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,4.722094864452088,12.418994049847942,90.84646450092382,0.0,9.91884904887881,0.0,-1.0526784533257747,-1.9990302448139745,-4.391297241118669,0.0,-3.357006684618292,-5.13196759259259,0.125,14,2,5,0,0,0,1,0,1,4,1,6,4,0,0,0,1,0.8777000000000003,52.08020000000002,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +6917733,CC(C)NCC(O)COc1ccc(COCCOC(C)C)cc1,0,8.263411031493574,-4.519372024718008,8.263411031493574,1.2182177909456096,0.5778484804828311,325.44899999999944,294.201,325.22530847200085,132,0,0.210690406965623,-0.49084908877218847,0.49084908877218847,0.210690406965623,1.3478260869565217,2.1739130434782608,2.869565217391304,3.87921813566843,1468.9264183365783,43.86987900907357,42.08020675735541,11.080206757355409,23.239452164942623,20.731544498087302,5.376082612123478,3.149020539507513,3.149020539507513,1.5159871495458537,1.5159871495458537,0.7992133497708862,0.7992133497708862,-1.1400000000000001,10692207237.06827,3.4042735320234963,11.404093667892145,10.28455876947233,183.1942525121486,24.629210405795735,19.80035718147838,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,0.0,25.78862164991795,31.352073141614945,33.076130495218884,44.94759354208196,60.483237259772,0.0,1.4311996572326342,5.309813353288376,0.0,52.144482234348615,26.173815413064812,29.733126322350174,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,50.89175178365427,16.032711150516388,0.0,72.72301808981614,24.16967483065318,1.4118420783282006,0.0,0.0,59.95,119.11074915633591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.58253409870731,47.331902818297294,254.38679086244827,0.0,0.0,2.6046565486755764,-1.6483784005580089,-1.6848586485213934,-11.00705952186702,-8.70702836439397,-37.94412247578345,0.0,0.6666666666666666,23,2,5,0,0,0,1,0,1,5,2,5,17,0,0,0,1,2.3659,91.82650000000007,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2756,CN=C(NC#N)NCCSCc1nc[nH]c1C,0,8.822801852493928,-3.6679356812169317,8.822801852493928,0.007647874245096498,0.2346588097545297,252.34700000000015,236.219,252.11571551199998,92,0,0.20394285225588685,-0.3547517477349958,0.3547517477349958,0.20394285225588685,2.0588235294117645,3.0,3.764705882352941,3.5215997780933788,941.286548135155,26.36987900907357,24.091529863463613,8.908026444391338,14.492853262031431,11.709563852213508,4.684419646641358,2.1742202065977927,2.7865926422935874,1.19819209790394,1.6869525015868925,0.5912784795963747,0.9725893208141424,-1.6800000000000002,2793406.564970636,3.202589640329544,7.570081043458362,4.7817848631942805,127.57924078154417,10.286816623517627,1.3707585561702202,10.428682330763442,5.959554568743835,0.0,0.0,10.302218085924045,4.9839785209472085,17.0237765041296,0.0,0.0,6.851892117295679,47.02563102378964,11.997299708814687,22.05538746519746,17.72143951813495,5.261891554738487,20.58060849775321,4.992404732635669,12.556849002445837,19.177643469748347,17.69122770366315,0.0,6.19315609577884,10.619626706576751,0.0,0.0,11.761884949391115,35.098179829668645,5.704956885150159,18.306939767813006,29.207717219909778,11.295776446601895,4.235526234984602,0.0,0.0,88.88999999999999,72.45697304728067,0.0,0.0,10.286816623517627,0.0,6.19315609577884,0.0,0.0,0.0,9.976383253582878,27.317279019935945,121.85091883024911,-0.5212107898715039,6.246419461137174,7.915852591646081,-8.80561569449737,-1.4448172818510117,0.0,0.08119464883060701,-10.072741765643105,0.0,0.5,17,3,6,0,0,0,0,1,1,4,3,7,7,0,0,0,1,0.5973999999999997,69.59710000000001,0,0,0,0,0,2,1,0,0,0,0,0,0,0,1,3,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +4891,O=C(C1CCCCC1)N1CC(=O)N2CCc3ccccc3C2C1,0,14.309684284979422,-4.764656622679939,14.309684284979422,0.7037696050642479,0.7993674496203518,312.41299999999956,288.221,312.1837780080007,122,0,0.24228438420799156,-0.3319773237323323,0.3319773237323323,0.24228438420799156,1.2608695652173914,2.0434782608695654,2.869565217391304,2.2013877453733555,1587.3183303808491,37.27350269189626,35.21092377192764,11.210923771927643,20.440169358562926,18.24988907696374,6.249889076963738,4.340142516441851,4.340142516441851,2.9858137936596805,2.9858137936596805,1.971358090757329,1.971358090757329,-1.8399999999999994,1667759267.88672,3.707863710113574,5.986649116471944,2.642452324809413,170.72016069058688,9.799819461700956,0.0,0.0,11.814359458703011,0.0,0.0,9.589074368143644,0.0,0.0,0.0,43.288449534641316,30.245677687382127,39.44905539654828,24.851579158197566,42.48727971622894,11.814359458703011,0.0,9.799819461700956,5.893957685363079,44.25544187632592,19.490579052947837,35.29657781404717,0.0,0.0,0.0,0.0,0.0,0.0,41.1047579733518,15.961999269473022,5.893957685363079,81.9076253064758,24.16967483065318,0.0,0.0,0.0,40.620000000000005,126.550735349088,10.959832924313863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.527446791915054,200.29180512433763,0.0,26.345159530633236,0.0,-2.9981260966533325,-10.202897875199465,-9.53308381634817,-25.756419030616204,-13.063104502820416,0.0,0.5789473684210527,23,0,4,1,2,3,1,0,1,2,0,4,1,1,1,2,4,2.5349000000000004,87.75500000000005,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3478,Cc1cnc(C(=O)NCCc2ccc(S(=O)(=O)NC(=O)NC3CCCCC3)cc2)cn1,0,13.561632224233735,-6.324033763441277,13.561632224233735,0.8860675658512713,0.5981616815314104,445.54499999999973,418.32900000000024,445.1783753440008,166,0,0.32840989085221617,-0.35031779946173125,0.35031779946173125,0.32840989085221617,1.2580645161290323,2.0,2.7096774193548385,2.181612094628905,2118.685389480349,46.07446760021749,41.777309429819105,15.593806010746832,25.46589693051022,20.98238192111387,9.080804463414633,4.93664851359602,6.47760366955125,2.8406764732644896,3.957251686425089,1.6072441676516904,2.3049892790988333,-3.01,185230427527.3951,6.277856056361541,10.34007512930902,6.744800730100012,219.77810543686007,10.619626706576751,5.693927994848461,4.235526234984602,0.0,15.930470882759089,6.031114512338072,9.77851570501903,22.911432303082098,0.0,0.0,31.20361211931473,43.618955728307405,41.99054281837411,26.357616574372535,55.140602935542496,21.96158539509716,0.0,25.3027033622053,0.0,56.002817469139366,6.496859684315945,53.46677273367661,0.0,0.0,15.334746320310884,4.794537184071822,0.0,0.0,42.83880042057852,16.396216054736964,6.851892117295679,86.50867452019787,41.41094872780047,4.235526234984602,0.0,0.0,130.14999999999998,153.26278160254003,18.00687135247258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,37.13373158306989,241.95431519651206,0.0,30.742086765933365,-2.2399545342264506,-4.200954481741753,-2.063976158017983,-15.014095903842547,-28.378717094091872,-7.308003360416915,-6.324033763441277,0.42857142857142855,31,3,9,1,0,1,1,1,2,6,3,10,8,1,0,1,3,2.0781199999999993,114.97440000000005,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1 +27200,CS(=O)(=O)c1ccc([C@@H](O)[C@@H](CO)NC(=O)C(Cl)Cl)cc1,0,12.38152962740422,-5.570234552262643,12.38152962740422,0.9630092986268579,0.6406363565705827,356.2269999999997,341.10699999999997,355.0047989400004,118,0,0.2532010575770425,-0.39412320755251795,0.39412320755251795,0.2532010575770425,1.619047619047619,2.2857142857142856,2.761904761904762,4.318782818086364,1130.0430085382134,29.0330157158901,24.65263228430159,11.980986757266228,15.823455830409983,11.942842304429861,6.918224321615024,3.1647207197397424,5.529235630027956,1.7846194947106984,2.849535319415688,0.9310743479922975,1.3863805853637463,-0.8600000000000001,9937768.168675635,5.975026266184956,7.417155841041921,5.119865598261104,153.45879308048035,15.5274297355028,6.080018026949988,16.061416544197442,2.8623993144652684,5.907179729351506,0.0,4.794537184071822,8.417796984328938,0.0,0.0,35.286717195791624,17.648288907023584,10.296199769627119,29.809188192315684,41.29089530298604,38.94631264623404,2.8623993144652684,5.309813353288376,0.0,21.80571530026915,12.742909344032746,29.733126322350174,0.0,0.0,5.309813353288376,0.0,0.0,23.20187978046503,50.97811555219427,14.631790320489323,0.0,28.09257219268962,29.065158306170954,1.4118420783282006,0.0,0.0,103.70000000000002,85.33599718570946,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,43.925223847301154,139.85133235167305,10.536453594538052,7.309785991442287,6.743859273826354,-1.654914493575207,-2.1876959634481272,-10.88596615086364,-8.002675795850177,-4.084388699924415,-5.570234552262643,0.4166666666666667,21,3,6,0,0,0,1,0,1,5,3,9,9,0,0,0,1,0.40430000000000005,79.02210000000002,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3114,CC(C)N(CCC(C(N)=O)(c1ccccc1)c1ccccn1)C(C)C,0,14.399396258503398,-5.380154714663648,14.399396258503398,1.1757265684051408,0.8020711980677477,339.4829999999995,310.25100000000003,339.2310625480008,134,0,0.23371632803038367,-0.3685549165356388,0.3685549165356388,0.23371632803038367,1.28,1.96,2.6,3.8217208361841624,1711.3592191490561,43.29001054984131,41.24988907696374,12.249889076963738,23.64341728543878,20.690192122731723,6.295764931731806,4.271793350908356,4.271793350908356,2.8204304965488327,2.8204304965488327,1.710458487689021,1.710458487689021,-2.1999999999999997,22202675017.948044,3.8866907713498633,8.25562130177515,4.07432733929559,191.4790706870766,5.719716975726273,5.41499046939678,2.8236841566564013,5.907179729351506,0.0,0.0,14.678425435869507,0.0,0.0,0.0,36.25451224597977,51.428782277535674,49.37919384289399,18.030755000380438,44.62870235732419,5.907179729351506,0.0,9.883888251797686,5.719716975726273,51.23126877660816,6.496859684315945,65.76962435866658,0.0,0.0,5.719716975726273,0.0,0.0,0.0,34.32371260216443,10.209527653468601,0.0,82.04835387365348,54.512244872121116,2.8236841566564013,0.0,0.0,59.22,140.02455925551897,7.536054296412263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,37.092648060911905,240.01151616314323,0.0,16.204227607709747,0.0,-9.777794784580506,-2.7045535714285682,-22.578930918301413,-6.743187961913166,-24.161276534629273,0.0,0.42857142857142855,25,2,4,0,0,0,1,1,2,3,1,4,12,0,0,0,2,3.361900000000002,102.24840000000006,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 +60822,CC(C)c1c(C(=O)Nc2ccccc2)c(-c2ccccc2)c(-c2ccc(F)cc2)n1CC[C@@H](O)C[C@@H](O)CC(=O)[O-],1,15.544328677783982,-5.464354584483779,15.544328677783982,0.8356081739152663,0.22738481528786572,557.6420000000016,523.3700000000003,557.2457239879109,214,0,0.2576600388758924,-0.5500681033741586,0.5500681033741586,0.2576600388758924,1.048780487804878,1.7073170731707317,2.317073170731707,2.7728252299864677,2943.0005389140747,58.92532056130337,53.81363311632846,19.81363311632846,33.540334195280316,27.34134712784185,10.577636951414167,7.169677957567108,7.169677957567108,4.6268271405497945,4.6268271405497945,3.2216303661840002,3.2216303661840002,-4.269999999999999,686661355138633.0,8.625782296942363,13.391123510541881,7.279067288565614,286.4577181010702,29.995593962206684,5.817220841045895,1.4118420783282006,2.8623993144652684,5.907179729351506,0.0,4.794537184071822,4.39041504767482,0.0,0.0,62.04313389589772,66.02122271739559,56.34523397737954,45.34955243916898,73.20899051247865,17.563871291986917,2.8623993144652684,4.567099647791355,0.0,57.37341236215848,5.309813353288376,101.66846223487752,0.0,22.384282469939446,10.41634074812908,10.077801322358383,0.0,0.0,41.68363641567438,11.291396868387768,5.817220841045895,97.2619485358366,84.59386190728614,1.4118420783282006,22.384282469939446,0.0,114.62,208.8669413600422,16.754857359763626,9.184952231746642,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,39.9139638532192,305.8237659908799,0.0,27.553302131563466,18.884996303985552,-14.446760972602336,-13.035550991689668,-22.54175803623734,-25.98391461044619,-15.004079815453387,0.0,0.2727272727272727,41,3,7,0,0,0,3,1,4,6,3,8,16,0,0,0,4,4.978900000000007,154.61779999999976,1,2,0,0,0,1,0,0,1,1,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +104762,NC(=O)c1ncn([C@@H]2O[C@H](CO)[C@@H](O)[C@H]2O)c1O,0,11.93399884877428,-3.8143742913832206,11.93399884877428,0.10029856386999203,0.3957886051129175,259.218,246.11399999999998,259.0804351360001,100,0,0.29485436386444724,-0.4926875792987839,0.4926875792987839,0.29485436386444724,1.8333333333333333,2.7222222222222223,3.388888888888889,2.9301148404397215,872.016877212904,24.20674230225704,21.291130529283052,8.291130529283052,14.085681827124134,10.297930155978763,4.270509803123395,3.0027746674031124,3.0027746674031124,1.9712717326620428,1.9712717326620428,1.180054357718599,1.180054357718599,-1.6800000000000004,2968870.427818587,4.166575838374838,4.534955515932041,1.8241821321119507,119.77330837541813,30.89181269395517,25.914184350986407,14.721564961441416,10.173587308133273,7.33837938658414,0.0,9.361636831863176,4.9839785209472085,0.0,0.0,0.0,0.0,0.0,14.783536579937607,42.38562695214868,5.907179729351506,5.724798628930537,9.551078168738563,5.719716975726273,24.44400689078652,6.558985242916289,11.997299708814687,0.0,5.879988336435371,5.719716975726273,0.0,5.879988336435371,0.0,66.41732861521571,4.736862953800049,0.0,26.287727882048376,6.303371713966227,2.8236841566564013,0.0,0.0,151.06,60.50717688403064,4.794537184071822,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,25.419211285376058,22.88065563257853,103.03601389862776,0.0,15.211060844869014,15.808650226670608,-1.6566615909576774,-2.859801442953724,0.0,-16.39242937452759,-3.73016589506173,0.0,0.5555555555555556,18,6,9,0,1,1,0,1,1,8,5,9,7,0,1,1,2,-2.7009,55.41910000000003,0,3,0,0,0,2,0,1,0,0,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +6913185,O=C(O)c1[nH]c2cc(Cl)cc(Cl)c2c1/C=C1\CCN(c2ccccc2)C1=O,1,13.727449110817165,-3.4965881939195445,13.727449110817165,0.03796503632317094,0.6074312701658949,401.2489999999999,387.13700000000017,400.0381476680004,136,0,0.3524636649298705,-0.4765506196240372,0.4765506196240372,0.3524636649298705,1.4074074074074074,2.185185185185185,2.925925925925926,2.193537580465811,1724.4865385668597,31.25411216497907,26.87510100840996,14.386958900446869,18.78159217363851,13.963832783418738,7.864299843473371,5.075411903607859,5.831340849626312,3.477763514322636,3.9502191055841704,2.3782349476365394,2.889080870723457,-2.759999999999999,457258676.2826585,7.69781642035785,6.758781027714093,3.091024276204565,184.17149874794185,14.985721192186944,5.693927994848461,1.4118420783282006,0.0,7.33837938658414,5.969305287951849,4.794537184071822,4.794537184071822,0.0,0.0,41.32913590345492,36.59467147801813,41.9878773389286,18.730218875443526,32.55882731162169,57.72074775056857,1.4311996572326342,4.977003270229252,0.0,6.372924901329379,11.396769415166423,69.17268159774045,0.0,0.0,4.899909730850478,5.687386274683562,0.0,23.20187978046503,28.459156162955765,4.794537184071822,0.0,38.873944245989314,47.87003548371233,11.457108705810853,18.386196335349258,0.0,73.4,116.56133415348934,9.589074368143644,0.0,9.87691300107973,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,42.49402419006853,114.15407462890457,12.19919443035214,26.453003256651776,2.1434877504865852,-4.839730116709133,-3.311995896630938,-7.588295528272669,-3.490928108640577,-3.4965881939195445,0.0,0.1,27,2,5,0,1,1,2,1,3,3,2,7,3,0,1,1,4,4.9932000000000025,106.66700000000002,0,0,0,0,1,1,1,0,1,1,2,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3385,O=c1[nH]cc(F)c(=O)[nH]1,0,12.511851851851851,-1.5837037037037038,12.511851851851851,0.17685185185185182,0.482564502908463,130.078,127.05399999999999,130.017855556,48,0,0.3253471361874118,-0.3111557027192775,0.3253471361874118,0.3111557027192775,1.7777777777777777,2.4444444444444446,3.111111111111111,3.85837635403996,399.90471776467217,9.464101615137755,7.08888824493687,4.08888824493687,5.464101615137755,3.3860849089683085,1.9916577179683925,1.2371191833731205,1.2371191833731205,0.6346597363976281,0.6346597363976281,0.30567104619775776,0.30567104619775776,-1.3900000000000001,416.3143647971509,2.95363487933511,1.8479763724759504,1.042170728106469,52.69030344938387,4.977003270229252,0.0,2.8236841566564013,5.817220841045895,5.559266895052007,5.689743398203474,9.771540454301075,4.794537184071822,4.39041504767482,0.0,0.0,0.0,6.172895210814761,1.3707585561702202,8.584857760501441,0.0,0.0,9.954006540458504,0.0,0.0,0.0,32.82820071325978,0.0,0.0,11.24901029325548,4.39041504767482,0.0,0.0,9.954006540458504,0.0,5.817220841045895,1.3707585561702202,15.761969578958404,2.8236841566564013,0.0,0.0,65.72,23.239126345116134,13.979489415818463,0.0,9.954006540458504,0.0,0.0,0.0,0.0,0.0,0.0,4.194442712826621,32.60731481481481,0.0,20.676944444444445,0.0,-2.888981481481481,-1.5837037037037038,0.0,-1.144907407407407,0.0,0.0,0.0,9,2,4,0,0,0,0,1,1,2,2,5,0,0,0,0,1,-0.7977000000000001,27.641399999999994,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +688272,CCN1CCC[C@H]1CNC(=O)c1cc(S(N)(=O)=O)ccc1OC,0,13.668661304799695,-5.626769771709572,13.668661304799695,1.0207948634892174,0.7869434425499668,341.43299999999965,318.2490000000001,341.14092721600065,128,0,0.2546449706698973,-0.49592299207453583,0.49592299207453583,0.2546449706698973,1.826086956521739,2.6956521739130435,3.4347826086956523,3.110299980966497,1521.7544574293795,36.98060947308281,33.88288223881919,11.699378819746915,19.951971039620062,16.792078875345887,6.89050141764665,3.6717598571913763,5.030140827311554,2.2764021243772254,2.996433788777546,1.3099742360615616,1.7210211045697048,-1.64,623386750.1739653,4.303389976017842,7.287380626786722,4.2132847582854405,168.88397216890166,10.046676307088426,8.573195989940306,1.4118420783282006,10.023291153407584,5.907179729351506,0.0,9.694446914922299,13.542820220500968,0.0,0.0,6.851892117295679,43.86682529428054,28.963854826708225,28.462955875459116,49.59989448058983,15.930470882759089,0.0,10.209723084138854,5.12502323617203,30.511117863821855,26.528531511830426,23.69070761468688,0.0,5.749511833283905,15.171699543260456,0.0,5.749511833283905,0.0,51.771310424710975,10.023291153407584,0.0,57.37090171912771,23.02273959850766,4.235526234984602,0.0,0.0,101.73,117.74508602669304,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,31.650697358388992,210.7893070965037,0.0,10.816861408092464,-2.3103046106708076,-1.8935322578105314,-4.228828905790713,-9.804066250983865,-8.6052298386705,-17.364715740506576,-9.316157566829917,0.5333333333333333,23,3,7,0,1,1,1,0,1,5,2,8,9,0,1,1,2,0.5567000000000012,86.96940000000005,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +54686904,CN(C)c1cc(NC(=O)CNC(C)(C)C)c(O)c2c1C[C@H]1C[C@H]3[C@H](N(C)C)C(=O)C(C(N)=O)=C(O)[C@@]3(O)C(=O)C1=C2O,0,15.82951118842318,-5.470301114766808,15.82951118842318,1.0588028389978184,0.17916991125161194,585.6580000000018,546.3460000000003,585.2798632080011,228,0,0.29324897245244624,-0.5077369129906836,0.5077369129906836,0.29324897245244624,1.3333333333333333,2.142857142857143,2.761904761904762,2.5839046480472234,2783.1847160734196,64.29808223934909,59.00205430121069,20.002054301210695,35.68898789250358,29.514515480960505,10.592667937105222,8.324573252574329,8.324573252574329,5.688194876497343,5.688194876497343,4.025005062556832,4.025005062556832,-3.9400000000000004,2796708286644954.5,8.155459631856173,10.403344263574803,4.803572847648963,298.58343510726496,41.67448617758235,24.252788184993722,15.61982199233323,13.121624332949079,10.200778701049408,0.0,24.07805846713776,0.0,0.0,0.0,0.0,64.75300783983366,73.65550855965971,29.248624143727028,87.75426505530575,40.51478677245619,5.724798628930537,10.209723084138854,17.507632346452432,50.45939468626247,44.60989036958378,34.07469562285199,0.0,5.749511833283905,21.239253413153506,11.374772549367124,5.749511833283905,0.0,103.13642697833913,25.551073637616664,11.787915370726157,80.54901947788723,22.947792639458008,5.6473683133128025,8.621564186121445,0.0,205.75999999999996,203.12563471502958,25.349680001577223,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,20.43523276442885,42.89961373415839,328.0646174483087,0.0,56.21765845522788,14.913049571798922,-25.26342968378906,-29.38234586250669,-7.741507494158929,-10.497190371448808,-37.227518730098566,0.0,0.5172413793103449,42,8,13,3,0,3,1,0,1,11,7,13,14,1,0,1,4,0.35660000000000386,154.9569999999999,0,3,2,0,0,0,0,1,0,0,4,4,0,0,0,2,2,1,0,1,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +62878,Fc1ccc([C@@H]2CCNC[C@H]2COc2ccc3c(c2)OCO3)cc1,0,14.477423364268242,-4.446224844104312,14.477423364268242,0.7933763532471423,0.9339413767145556,329.3709999999997,309.21100000000007,329.1427217200005,126,0,0.2308037389803867,-0.49308836831085356,0.49308836831085356,0.2308037389803867,1.3333333333333333,2.1666666666666665,3.0416666666666665,2.126411078339938,1555.5359913136615,34.12687384302478,31.549922939900775,11.549922939900775,19.59758286966248,16.30815429889612,6.360940703396161,4.253346492622573,4.253346492622573,2.7644651600595234,2.7644651600595234,1.7321201235440264,1.7321201235440264,-2.2699999999999996,932104806.5546345,4.6672443019395145,6.690274020416143,3.1696483131854296,168.24492972992823,19.520402214688524,15.72009186499844,11.49902366656781,6.745045584503197,0.0,0.0,0.0,4.39041504767482,0.0,0.0,12.08483741532659,48.49686859335858,29.399304526704075,18.895812248448266,46.05725855463738,0.0,0.0,5.309813353288376,5.893957685363079,12.266882586692457,26.297750196051375,53.67760328638595,0.0,17.248535499851716,19.520402214688524,4.39041504767482,17.248535499851716,0.0,26.297750196051375,0.0,11.711178526408974,43.87474664562366,42.29693095364306,1.4118420783282006,0.0,0.0,39.72,120.69454260763297,5.76117360384504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.29608495079232,195.0407558825112,0.0,0.0,-0.8390198309453365,-1.6810352047410129,-13.654348388783385,-9.83778577494738,-4.228949593943284,-15.54961708915086,0.0,0.3684210526315789,24,1,4,0,2,2,2,0,2,4,1,5,4,0,1,1,4,3.326500000000002,88.17770000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +73303,C[C@@H](O)[C@H]1C(=O)N2C(C(=O)O)=C(S[C@@H]3CN[C@H](CNS(N)(=O)=O)C3)[C@H](C)[C@H]12,0,13.570808131528349,-5.976086501151036,13.570808131528349,0.47523993705609024,0.307507906873262,420.5129999999997,396.32100000000014,420.1137264880006,152,0,0.35296245114863845,-0.4765391372053746,0.4765391372053746,0.35296245114863845,1.8888888888888888,2.740740740740741,3.4074074074074074,2.508826027211008,1661.0885361434198,40.740122497076655,36.55484070571074,14.18783386756619,22.294652949716966,18.120218325822467,8.72832735382952,4.812805867539631,6.911667653207787,3.1725388488818647,4.493617565154932,2.2135179827769194,3.3284953082029594,-1.18,8347512164.06821,5.923316992093731,7.333993910193582,3.866133822675868,195.39642705316592,20.427339466353278,11.344407626368636,0.0,7.33837938658414,11.6405288276303,5.969305287951849,4.794537184071822,14.634680033977983,8.417796984328938,11.761884949391115,6.851892117295679,13.224817018625059,56.96883260414209,20.733385293003153,58.54551005906381,33.847699137092135,2.8623993144652684,14.924842697872986,16.912938606898187,43.41850176875388,12.99371936863189,10.60217582694588,0.0,0.0,15.149956203194538,0.0,0.0,11.761884949391115,73.17851977339485,19.798403538541308,11.787915370726157,44.750363146984725,10.60217582694588,5.6473683133128025,1.4311996572326342,0.0,162.06,132.69987740619496,18.00687135247258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,33.18342163884203,217.8974673405579,-1.045298380154531,24.203198861231453,0.9766170418211759,-1.841788175682476,-13.13061938161405,-8.738651630781636,-8.839938212924137,-17.33823429463606,-5.976086501151036,0.7333333333333333,27,6,10,0,3,3,0,0,0,8,5,12,11,0,2,2,3,-1.6030999999999969,98.52720000000002,1,1,0,0,0,0,0,0,1,1,2,1,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +4740,CC(=O)CCCCn1c(=O)c2c(ncn2C)n(C)c1=O,0,13.264383818342147,-4.5116335978836,13.264383818342147,0.16610571276133124,0.7314900236053014,278.31199999999967,260.168,278.1378904360005,108,0,0.3319688564518087,-0.3278633112499939,0.3319688564518087,0.3278633112499939,1.45,2.3,3.0,3.137046975933304,1402.693586036562,30.403259203893185,27.513599253391423,9.513599253391423,16.48593999732696,13.822047210945565,4.8220472109455645,3.293901878600314,3.293901878600314,2.097592389389735,2.097592389389735,1.3013274398666534,1.3013274398666534,-2.18,24163900.284006234,3.71870831011061,5.439070630183458,2.42918078649709,140.30465869319667,9.361636831863176,7.15400350253516,11.16387793838399,0.0,5.559266895052008,5.689743398203474,13.928736479654532,9.77851570501903,0.0,0.0,0.0,19.597741919954437,47.38281672876315,9.044888826306668,29.468191195135777,16.94712288474893,0.0,18.685277464321274,13.951653800564491,32.467526505599764,0.0,27.14145637536535,0.0,0.0,11.24901029325548,0.0,0.0,0.0,24.468522410686212,25.24305066895226,0.0,50.644320832347816,15.89244608210987,0.0,11.16387793838399,0.0,78.89,90.05288449371758,14.383611552215466,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,24.673654011063956,136.37770539562118,0.0,41.801087210857446,0.0,-6.956221738727376,-2.4891640308812013,0.0,-14.583529043223763,-15.39987779364629,0.0,0.5384615384615384,20,0,7,0,0,0,0,2,2,7,0,7,8,0,0,0,2,0.19300000000000006,74.74700000000003,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +68844,CCN[C@H]1CN(CCCOC)S(=O)(=O)c2sc(S(N)(=O)=O)cc21,0,13.806563917233559,-6.227945719954642,13.806563917233559,0.659888064793819,0.6441091760572242,383.5169999999997,362.3490000000001,383.06433377200057,132,0,0.25249937052226124,-0.3846389158792601,0.3846389158792601,0.25249937052226124,1.8695652173913044,2.6956521739130435,3.391304347826087,3.241675102878212,1516.7161623027243,35.45566544670048,31.607627110210778,13.057116852993957,18.931080650226097,15.492627887228156,8.84761033925729,3.5464318325947257,8.165799623070455,2.196976498007799,6.54428493534424,1.3875235188117625,4.858089155721278,-0.56,247662120.81188405,5.223051572483983,7.1317997034379825,3.9241053362428095,169.94870611695228,10.046676307088426,12.653884590028762,0.0,10.023291153407584,10.023291153407584,0.0,0.0,21.960617204829905,4.305215991296234,11.336785877934737,6.851892117295679,18.912203293308618,53.250345148349865,9.59530989319154,50.481637168506516,31.383368184749905,0.0,9.61502934458461,5.12502323617203,27.661067842018866,33.087516754746716,11.60587019936029,0.0,0.0,10.434836589460406,0.0,0.0,11.336785877934737,54.22832671470081,24.783445260615217,0.0,49.479814989735694,14.460777062707454,4.235526234984602,0.0,0.0,118.79999999999998,118.47787556163239,16.835593968657875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,28.909180246048557,215.89740343190303,-0.659888064793819,0.0,-2.153962398740121,-1.8005435615604262,0.0,-6.1501394709437225,-4.612844899533888,-22.087940051562676,-15.598751651435052,0.6666666666666666,23,3,8,0,1,1,0,1,1,7,2,11,10,0,0,0,2,0.08690000000000164,87.36170000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0 +2082,CCCSc1ccc2nc(NC(=O)OC)[nH]c2c1,0,11.823958875024616,-3.4404023580932614,11.823958875024616,0.14511848974872144,0.8327124144827058,265.33799999999985,250.21799999999996,265.08849772000025,96,0,0.4131899633782197,-0.45257185717285847,0.45257185717285847,0.4131899633782197,1.8888888888888888,2.8333333333333335,3.6666666666666665,2.659552801566086,1092.9419566111183,25.894823035455904,23.566385657891466,9.38288223881919,14.637534891513088,11.75668870365945,5.178758093587258,2.7338416743731453,3.550338255300871,1.6569971193908142,2.2693695550866075,1.042008629379456,1.4448694299940987,-1.69,4439341.780466388,3.662101915050163,5.769921587334713,2.9509653347357694,130.50529693069376,9.713866224029301,0.0,2.8236841566564013,5.948339280986494,0.0,6.093240070938415,5.309813353288376,9.77851570501903,0.0,11.761884949391115,6.851892117295679,30.20513790946942,14.490793368709314,26.29590523113643,30.174945524741123,34.836865736548546,0.0,9.960981791176462,0.0,18.120300494142832,18.052722697321123,18.127256122989884,0.0,0.0,5.309813353288376,10.742876465058316,0.0,11.761884949391115,28.797131206147625,4.736862953800049,0.0,31.044678248837915,23.02273959850766,2.8236841566564013,11.033401435232523,0.0,67.00999999999999,72.0654467483229,4.794537184071822,0.0,22.04870157290874,0.0,0.0,0.0,0.0,0.0,9.720841474747257,20.64354538686926,117.65697909904608,-0.14511848974872144,14.962529306283539,-0.23490584083725352,-4.360800841941717,-0.9133040832073565,-2.458236384059796,-5.204504991353994,-3.415681469295964,-3.2202896382181345,0.3333333333333333,18,2,5,0,0,0,1,1,2,4,2,6,6,0,0,0,2,3.2433000000000005,73.13640000000002,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,1,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +2749,Cc1cc(C2CCCCC2)n(O)c(=O)c1,0,12.504639353426553,-4.086631708238852,12.504639353426553,0.46268046107331884,0.7185665096760774,207.2730000000001,190.13699999999994,207.125928784,82,0,0.327520627469865,-0.4251098762095432,0.4251098762095432,0.327520627469865,1.6666666666666667,2.466666666666667,3.1333333333333333,3.273247070561346,976.254983307594,25.671208396324303,24.263710176427686,7.263710176427685,13.924756148408914,12.242160217030808,3.8339119265669455,2.5731369468685075,2.5731369468685075,1.5996849178304984,1.5996849178304984,0.9921218723092432,0.9921218723092432,-1.25,1888509.9415239068,2.2173569347138695,4.0883655102337055,2.05910996593589,113.29074934698357,5.209533821043797,0.0,0.0,0.0,5.559266895052008,1.4311996572326342,4.794537184071822,0.0,4.7304076419062255,0.0,19.118774703988137,31.20361211931473,31.12699617940945,8.435445107188901,28.572870376999948,0.0,0.0,4.7304076419062255,0.0,44.61047430930565,0.0,33.696020980995876,0.0,0.0,5.559266895052008,0.0,0.0,0.0,9.939941462950022,0.0,6.851892117295679,70.94809857727896,16.87937459939841,1.4311996572326342,0.0,0.0,42.230000000000004,78.24236574813591,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.209533821043797,23.363336555956153,133.58799468012515,0.0,12.504639353426553,3.9373733938019653,-4.915127551020408,-4.06587962962963,-2.9800524245191897,-20.069234575774757,-3.4163799130763435,0.0,0.5833333333333334,15,1,3,1,0,1,0,1,1,3,1,3,3,1,0,1,2,2.4417199999999992,58.44950000000003,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2244,CC(=O)Oc1ccccc1C(=O)O,0,11.412468820861678,-3.1958368764172347,11.412468820861678,0.8249234693877547,0.5501217966938848,180.15900000000005,172.09499999999997,180.042258736,68,0,0.33900378687731025,-0.4775395271554559,0.4775395271554559,0.33900378687731025,1.6153846153846154,2.3846153846153846,3.076923076923077,3.5574681481720223,608.9908190328388,16.5330157158901,14.132993161855453,6.1329931618554525,9.51796173564404,6.928869016623521,3.020620726159658,1.881101174978427,1.881101174978427,1.0519770297464954,1.0519770297464954,0.6140040330272392,0.6140040330272392,-1.8399999999999999,22150.353577662732,3.138055360637375,3.7092512583454584,2.297415032519928,86.08348690394692,9.84567114490726,11.3129633249809,0.0,0.0,1.4311996572326342,11.938610575903699,4.794537184071822,4.794537184071822,0.0,0.0,12.08483741532659,12.08483741532659,10.964167785806339,5.483034224680881,29.03005540624244,11.938610575903699,1.4311996572326342,0.0,0.0,6.851892117295679,0.0,29.733126322350174,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,17.04741876701091,4.794537184071822,0.0,26.805190686256033,24.16967483065318,0.0,1.4311996572326342,0.0,63.60000000000001,54.27314084883345,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,11.026509550424175,61.19528250188964,0.0,22.73298469387755,3.606065051020408,-0.9364814814814812,-4.304372165532879,-3.5143083900226753,0.0,-3.1958368764172347,0.0,0.1111111111111111,13,1,4,0,0,0,1,0,1,4,1,4,3,0,0,0,1,1.3101,44.71030000000002,0,0,0,0,1,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54685920,C[C@H]1c2cccc(O)c2C(O)=C2C(=O)[C@]3(O)C(O)=C(C(N)=O)C(=O)[C@@H](N(C)C)[C@@H]3[C@@H](O)[C@@H]21,0,15.312742189468377,-5.202324853552533,15.312742189468377,1.0624187058441175,0.3274702019724617,444.43999999999977,420.2480000000002,444.1532657280007,170,0,0.29314860288595956,-0.5077354226977496,0.5077354226977496,0.29314860288595956,1.34375,2.21875,2.84375,2.629860847204233,1970.1819260792404,43.69578794377713,39.160413514710825,15.160413514710822,25.228922122119712,19.7130889961746,8.27742035285537,6.645100648022915,6.645100648022915,5.060961191353069,5.060961191353069,3.709464708905013,3.709464708905013,-3.2100000000000004,158741696189.76648,7.143417536590318,6.893358820274297,2.4784840440451297,216.69799341235435,31.263757931262337,22.840946106665527,14.20797991400503,8.645644260830208,10.200778701049408,0.0,19.283521283065944,0.0,0.0,0.0,18.93672953262227,31.451481685287863,27.91616488947498,30.409112453210806,66.05423211930172,23.23283449373756,7.155998286163171,4.899909730850478,17.507632346452432,30.444811108942076,13.951653800564491,46.15953303817858,0.0,5.749511833283905,5.719716975726273,0.0,5.749511833283905,0.0,83.86183438701364,14.383611552215466,11.787915370726157,47.17564824094652,35.03263005478459,2.8236841566564013,8.621564186121445,0.0,181.62,141.94588635200958,16.442867148994743,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,25.54404095553606,26.428785116862212,200.89492353930706,0.0,41.94952301352529,21.97371838337161,-13.399487399094046,-27.955559416291514,-9.47759202155353,-5.092957294028722,-13.475902138569445,0.0,0.4090909090909091,32,7,10,3,0,3,1,0,1,9,6,10,10,1,0,1,4,-0.5041999999999991,110.34540000000001,0,4,2,0,0,0,0,1,0,0,3,3,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +5479530,CO/N=C(\C(=O)N[C@@H]1C(=O)N2C(C(=O)O)=C(CSc3nc(=O)c(=O)[nH]n3C)CS[C@H]12)c1csc(N)n1,0,13.763825534384246,-3.704630006712666,13.763825534384246,0.1331178547322014,0.09529800454941457,554.5920000000009,536.4480000000002,554.0460579160004,190,0,0.3521585021831157,-0.4765606782787246,0.4765606782787246,0.3521585021831157,1.6666666666666667,2.5277777777777777,3.25,1.8988575456951493,2119.096444903508,41.471808825716025,34.66019166863829,19.109681411421473,24.384441790532883,17.363785914813562,11.116172985133048,6.025366276933479,8.367106222732277,3.934996542277678,6.132712041540444,2.498717868318551,4.468991937084813,-3.64,78232095743.48505,11.177095949776236,10.15191438763377,4.7329847758068055,238.93284046719074,20.975927103858496,29.79673668730695,21.64704827774354,0.0,13.245559115935645,17.087839078055865,33.85156795986603,9.77851570501903,4.9839785209472085,23.098670827325854,16.917597676141654,5.573104530069267,33.3371649734417,8.224551337021321,47.79723787058499,63.48746400598187,1.4311996572326342,29.951189618761536,12.131539627032787,16.524253402340776,24.167583204909178,43.02779440588881,0.0,0.0,22.148064119118665,5.131558479839333,0.0,34.860555776716964,83.0612173557089,26.197027036234346,0.0,23.513789225061316,36.527481829507586,5.6473683133128025,1.4311996572326342,0.0,214.95999999999998,137.9388646084697,23.97268592035911,0.0,26.638215519656676,0.0,0.0,0.0,0.0,0.0,25.0700665434888,24.898429200758294,142.7301134351147,-0.7279357164982538,75.38873253275116,-0.3258693589876782,-16.363238950376697,-6.075443459384814,-3.704630006712666,0.0,-3.5181438404065934,-3.4035846354991994,0.3333333333333333,36,5,15,0,2,2,0,2,2,15,4,18,11,0,1,1,4,-1.6112999999999973,130.57960000000003,1,0,0,1,0,4,1,0,1,1,3,2,0,0,0,5,2,1,0,0,0,1,0,0,0,0,0,2,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0 +3331,NC(=O)OCC(COC(N)=O)c1ccccc1,0,11.56078173553372,-4.044522392290252,11.56078173553372,0.7945226547409083,0.796471019540729,238.24300000000008,224.13099999999994,238.095356928,92,0,0.4040098161132831,-0.44892257616077347,0.44892257616077347,0.4040098161132831,1.2941176470588236,1.8235294117647058,2.2941176470588234,3.993233254719484,828.4980347270629,24.687716254269354,22.02742035285537,8.02742035285537,13.829798124461638,10.71081284889138,3.9219584668915473,2.3150633288006404,2.3150633288006404,1.2308066440987584,1.2308066440987584,0.6872676916906955,0.6872676916906955,-2.2399999999999993,1441063.8288914494,3.378667559061516,6.365816485649731,4.873704535396418,118.38784327590946,20.913159859052644,13.117970485832577,5.6473683133128025,0.0,0.0,12.18648014187683,0.0,9.589074368143644,0.0,0.0,30.212093538316473,5.563451491696996,1.3707585561702202,18.230784690895057,38.417754150758746,12.18648014187683,0.0,0.0,11.439433951452546,5.893957685363079,13.117970485832577,35.77554503001347,0.0,0.0,11.439433951452546,9.589074368143644,0.0,0.0,25.304450627709407,9.473725907600098,0.0,25.16499473876227,30.212093538316473,5.6473683133128025,0.0,0.0,104.64000000000001,78.41338729453852,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,19.354953875015003,114.16928046527252,0.0,23.12156347106744,0.0,-3.0361541530192317,-3.9813425925925943,-5.904168871252201,-4.196800201562107,-8.089044784580503,0.0,0.2727272727272727,17,4,6,0,0,0,1,0,1,4,2,6,5,0,0,0,1,0.9607999999999993,60.25380000000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0 +9869676,O=c1ccc2c(-c3ccc(F)cc3F)nc(NC(CO)CO)nc2n1-c1c(F)cc(F)cc1F,0,15.598678702892492,-4.180452979535095,15.598678702892492,0.3575784202569925,0.3688273146843402,478.3769999999999,463.2570000000002,478.10643144000045,176,0,0.25646832926184443,-0.3941487455087892,0.3941487455087892,0.25646832926184443,1.0294117647058822,1.7058823529411764,2.3823529411764706,2.4130772600874058,2050.1280087431865,37.45278277772834,30.903421618437555,15.903421618437557,22.459225741998008,15.833454974396359,8.569744797968674,6.044435476413336,6.044435476413336,4.044024657119416,4.044024657119416,2.747741261452071,2.747741261452071,-3.8999999999999995,15258031538.927265,11.016973906578897,9.154406157744392,4.199609076904607,208.62448128966992,15.5274297355028,23.139048797821246,18.693460981187716,8.810738595451763,5.559266895052007,0.0,9.361636831863176,26.93605375932131,4.9839785209472085,0.0,0.0,18.127256122989884,35.11935053681497,41.278893623073344,50.0306363729594,16.98174071621902,2.8623993144652684,14.53505668968577,0.0,6.017892468349645,18.427783839120952,81.73683923799638,0.0,16.944765761229018,10.869080248340381,27.900414519360595,0.0,0.0,46.750935340547684,0.0,29.086104205229475,16.44910267404264,47.091468137714884,1.4118420783282006,27.97816719646154,0.0,100.27000000000001,135.31448483884319,13.575367279421462,13.171245143024459,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.185573424108842,20.72334406683611,192.4860321142424,0.0,20.482194457653733,5.484713987103471,-8.16720064877803,-12.257196378636884,-15.506492152812047,0.0,-8.105384712105945,0.0,0.13636363636363635,34,3,7,0,0,0,2,2,4,7,3,12,8,0,0,0,4,2.9083000000000006,111.94330000000002,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +6918289,CO[C@H]1C[C@@H]2CC[C@@H](C)[C@@](O)(O2)C(=O)C(=O)N2CCCC[C@H]2C(=O)O[C@H]([C@H](C)C[C@@H]2CC[C@@H](OC(=O)C(C)(CO)CO)[C@H](OC)C2)CC(=O)[C@H](C)/C=C(\C)[C@@H](O)[C@@H](OC)C(=O)[C@H](C)C[C@H](C)/C=C/C=C/C=C/1C,0,16.8835309047951,-7.949549667317154,16.8835309047951,2.7165053701875337,0.11617337224046025,1030.3030000000028,942.6069999999996,1029.6024857040024,412,0,0.32866280530969877,-0.4600915621869147,0.4600915621869147,0.32866280530969877,0.9726027397260274,1.821917808219178,2.5205479452054793,3.1231346393196366,5800.165271009539,129.73132184970984,121.97918624292177,34.97918624292177,68.76966808984406,61.044544750207876,17.91155158835243,12.400207571833178,12.400207571833178,7.706029640893202,7.706029640893202,4.338307709592552,4.338307709592552,-3.9399999999999995,5.430717235383061e+58,12.644117042206137,28.265156851324967,16.04383364474031,555.195617780191,53.75632021807963,41.53619999191132,5.783244946364939,11.511909781501133,11.690424675716445,11.938610575903699,23.97268592035911,4.794537184071822,0.0,0.0,70.57189106269179,113.1130074814086,134.80091906524382,68.36850558327855,191.396593753788,35.19552514435002,5.724798628930537,4.899909730850478,40.77873658157525,185.65536556388815,40.72868754679629,47.45863953635193,0.0,0.0,0.0,0.0,0.0,0.0,161.3492836249264,57.18840082723122,40.77873658157525,245.06319591644592,47.45863953635193,0.0,0.0,0.0,241.95999999999992,354.71686410381216,50.71806657829818,28.76722310443093,0.0,0.0,0.0,0.0,0.0,0.0,44.11954753342909,73.51655516656074,802.8441526045747,0.0,95.21656215297071,14.942339402872328,-13.36134359226526,-75.4919684085198,-27.220127224754034,-126.40357816563835,-64.49984123880188,-16.192862197104503,0.75,73,4,17,1,3,4,0,0,0,16,4,17,25,1,2,3,4,5.722400000000009,271.2891999999995,0,4,0,0,0,0,0,0,0,0,6,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,3,0,0,0,2,6,0,0,0,0,0,0,0,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5743186,Cc1nc(COc2ccc(C[C@H](NC(=O)O[C@H]3CO[C@H]4OCC[C@@H]34)[C@H](O)CN(CC(C)C)S(=O)(=O)c3ccc4c(c3)OCO4)cc2)cs1,0,15.526021078700888,-7.593315421985845,15.526021078700888,0.036447424391387706,0.2515725085832118,703.8360000000017,662.5080000000002,703.2233365120012,260,0,0.4073228324629909,-0.4872740106628886,0.4872740106628886,0.4073228324629909,1.3125,2.1666666666666665,2.9583333333333335,1.7916130541090944,3480.1846976848637,69.75626587609219,63.74062027206623,24.373613433921683,39.15464405555832,32.43312066057492,14.334218684339467,8.203149681180797,10.721625644501932,5.072933356436128,7.036303286107011,3.143077037730403,4.559480470886299,-3.4699999999999993,1.770856384408192e+22,10.295441819483237,14.967321162302962,8.208804811264612,341.41308375428883,38.83979926719588,21.130032215490623,19.176944113432906,18.199536395143415,0.0,6.093240070938415,0.0,18.19631268934797,4.305215991296234,11.336785877934737,25.78862164991795,55.224825927667695,50.436665053197004,71.38052784477826,101.61374585127497,27.453317102280735,1.4311996572326342,14.599007865531817,11.787915370726157,69.20000176376637,32.85673543896766,63.91804854670888,0.0,17.248535499851716,19.520402214688524,4.794537184071822,17.248535499851716,11.336785877934737,87.64098174560483,37.1657901590534,18.639807488021837,89.80129600995753,52.54852883882843,1.4118420783282006,0.0,0.0,154.98,220.74279718895153,13.019088521093142,8.417796984328938,11.336785877934737,0.0,0.0,0.0,0.0,0.0,29.040238527254616,57.551799996778236,407.59970335748096,0.036447424391387706,15.761042469163455,0.3249454127794775,-3.6443349301773074,-14.701582870683952,-20.225100252179075,-28.53538418290177,-40.85575433922061,-7.593315421985845,0.5151515151515151,48,2,13,0,3,3,2,1,3,12,2,15,18,0,2,2,6,3.8657200000000023,174.48929999999953,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,2,0,2,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0 +460612,N[C@@H](Cc1ccc(N(CCCl)CCCl)cc1)C(=O)O,0,11.991333234166028,-3.8624282067306073,11.991333234166028,0.5204453262786592,0.720239222897486,305.20499999999964,287.061,304.07453317600044,106,0,0.3203155017234436,-0.48007770020333534,0.48007770020333534,0.3203155017234436,1.5263157894736843,2.1578947368421053,2.6315789473684212,4.312778154227019,1002.5251458253413,29.903259203893178,26.966852717946097,10.478710609983006,16.18351596228519,13.233315435936785,5.18656890049146,2.7326703049447842,3.110634777954012,1.5802832848187878,1.7493141357644908,0.8739075081245508,1.042938359070254,-0.97,13359234.914971374,4.028065262942367,8.250757383985736,5.265510919548018,148.14026311911695,15.728434897683965,8.841576625006047,0.0,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,23.20187978046503,12.08483741532659,24.021213808352964,38.569870427084204,12.33682700553198,33.28840787438873,34.858571343100444,1.4311996572326342,0.0,5.719716975726273,12.390817369679024,29.557842546229782,29.733126322350174,0.0,0.0,10.619626706576751,5.687386274683562,0.0,23.20187978046503,41.75393876278802,11.167462085401201,0.0,26.124829834250292,24.16967483065318,2.8236841566564013,1.4311996572326342,0.0,66.56,89.05819477662068,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,48.01814193690739,140.74846493527818,10.85274574556422,11.470887907887368,3.5165984084558217,-3.830370206176032,-9.363553486923799,-9.945684208868732,-3.8353437928669436,-7.7248564134612145,0.0,0.46153846153846156,19,3,4,0,0,0,1,0,1,4,2,6,9,0,0,0,1,1.925,79.41020000000003,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +47528,O=C(NCCO[N+](=O)[O-])c1cccnc1,0,12.110750661375661,-3.745160856009072,12.110750661375661,0.687844860166289,0.4205636945214959,211.17700000000005,202.10499999999996,211.059305768,80,0,0.2940608949014624,-0.35004698958870933,0.35004698958870933,0.2940608949014624,1.9333333333333333,2.7333333333333334,3.466666666666667,3.3431019899279426,697.8610380666396,19.0330157158901,15.974633948355326,6.974633948355327,10.735775550096683,7.797611634468904,3.3503980389689456,1.906125522066903,1.906125522066903,1.004143606179703,1.004143606179703,0.5186695491778007,0.5186695491778007,-2.1799999999999997,68417.98828896142,3.7619540427848546,5.529158500897423,4.028918378975259,97.88061231251837,10.147401937025009,6.558985242916289,1.4118420783282006,0.0,10.993798772284048,0.0,9.77851570501903,0.0,0.0,10.114318268765572,0.0,12.08483741532659,18.842650105945467,16.529519941058755,27.096655338430953,5.907179729351506,0.0,10.293791874235584,0.0,0.0,13.055844927232233,40.10839759741867,0.0,0.0,5.309813353288376,0.0,0.0,0.0,29.033622220463492,4.8375885837366335,10.114318268765572,21.324057125130576,24.430627836956113,1.4118420783282006,0.0,0.0,94.36,59.35353638145776,14.908855452837393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.821567104683842,12.377910527689961,66.03255692901843,0.0,28.994083243145745,7.870476000470589,-1.035390684051398,-1.7575713340891912,-1.8595659328546232,-1.802859787210211,-7.44172843442933,0.0,0.25,15,1,7,0,0,0,0,1,1,5,1,7,5,0,0,0,1,0.01969999999999983,49.51660000000002,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +119570,CCCN[C@H]1CCc2nc(N)sc2C1,0,8.504789304610732,-4.001306807445204,8.504789304610732,0.10978395875108538,0.7978726845629877,211.33400000000015,194.19799999999998,211.11431854399999,78,0,0.17998017936895558,-0.37510220076428546,0.37510220076428546,0.17998017936895558,2.142857142857143,3.142857142857143,4.0,2.872796690057387,858.8290891291878,24.800964908321227,23.749889076963736,7.566385657891463,13.436411174470248,11.867923065713633,4.342778860141484,2.2463841958078796,3.2239050031737846,1.3707153254419346,2.144111987575908,0.8752391518160064,1.5357987616355757,-0.61,1537366.7402724552,2.0861261081416105,4.275265954574821,2.0669559372510498,112.78859929829055,11.029530329014648,1.4118420783282006,7.9552426364957345,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,11.336785877934737,6.851892117295679,31.988559289633464,30.08565944843402,5.693927994848461,23.42614602136768,16.468344357774072,0.0,10.293791874235584,0.0,38.36148419096284,12.216576660042218,10.57107518854976,0.0,0.0,11.029530329014648,5.131558479839333,0.0,11.336785877934737,17.498730673612798,12.745849802658759,0.0,49.35943689488732,0.0,4.235526234984602,0.0,0.0,50.94,65.87079089695625,0.0,0.0,17.05650285366101,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,23.42614602136768,133.1841611635535,0.19760869394053837,2.7477693924792144,-1.4293868496472657,-1.0100915378012234,0.0,-3.877690854119427,-14.5184340750189,-7.7106026000531385,0.0,0.7,14,3,3,1,0,1,0,1,1,4,2,4,5,0,0,0,2,1.5822,60.63310000000003,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +6196,Cc1onc(-c2ccccc2)c1C(=O)N[C@@H]1C(=O)N2[C@@H](C(=O)[O-])C(C)(C)S[C@H]12,0,13.847073019022421,-4.124064276450467,13.847073019022421,0.4491222184785051,0.7457264974219424,400.4359999999998,382.29200000000014,400.09726525591043,146,0,0.257411743263806,-0.5478320702941257,0.5478320702941257,0.257411743263806,1.4642857142857142,2.2142857142857144,2.857142857142857,1.9871292292610674,1663.0205718452069,35.704224112214405,31.291130529283052,14.10762711021078,20.52915686157941,16.150297584458407,8.019580569886177,5.365895782071459,6.569090694066172,3.6676359035313855,4.736443803814818,2.506098677803933,3.562531309391541,-2.81,2152903920.867124,6.908821620328998,6.370194356291926,2.6869116788216574,190.15072128002416,24.633882600024727,28.385443825939973,1.4118420783282006,5.907179729351506,5.907179729351506,0.0,9.589074368143644,0.0,0.0,11.761884949391115,35.36875679544192,20.555676351887037,22.64730095044653,22.95326620566325,48.72797141725149,29.545549696045974,0.0,15.366386341264299,0.0,42.68840819397432,0.0,41.53579244888791,0.0,11.257379486545457,10.41634074812908,0.0,0.0,11.761884949391115,49.97296957671806,9.589074368143644,6.851892117295679,53.124915784128405,34.73518847528982,1.4118420783282006,11.257379486545457,0.0,115.57,135.2368529095925,19.490138947056174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.156663257125445,29.237832470195283,145.44087297108484,-0.7097896812599653,39.11958003216633,11.321624456104924,-3.3778436951890223,-8.365269374755549,-12.883067613729754,0.0,-11.462773761088455,0.0,0.3684210526315789,28,1,8,0,2,2,1,1,2,7,1,9,7,0,2,2,4,0.5606199999999997,99.02920000000002,1,0,0,0,0,1,0,0,1,1,3,3,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +2170,Clc1ccc2c(c1)C(N1CCNCC1)=Nc1ccccc1O2,0,8.481638794406653,-3.6425170068027217,8.481638794406653,0.13785068657092436,0.8093498766353519,313.7879999999997,297.66,313.0981898120004,112,0,0.15264513990783043,-0.45432313146931597,0.45432313146931597,0.15264513990783043,1.2272727272727273,2.0454545454545454,2.909090909090909,2.2546883003630063,1399.3936824973914,29.074467600217485,26.627853549972965,11.383782495991419,17.150512789608005,13.859691706718289,6.290442584227558,4.002736784959307,4.380701257968535,2.6747428819203276,2.86372511842494,1.7903741619835924,1.9321108393620523,-2.0399999999999996,83537959.26234889,4.727149163676534,5.629587732114244,2.4456707425611706,156.46096002146896,14.946586037938904,18.684359972052935,5.749511833283905,0.0,0.0,0.0,0.0,4.992404732635669,0.0,0.0,23.685777305559107,30.212093538316473,36.493106275685996,20.641795609569414,26.710083374681545,23.123945950673345,0.0,10.209723084138854,4.992404732635669,0.0,25.98743873726378,52.88301575908138,0.0,11.49902366656781,10.046676307088426,5.687386274683562,11.49902366656781,11.600939890232516,36.72296825387152,0.0,0.0,26.124829834250292,47.28933568627873,6.434475392069527,0.0,0.0,36.86,107.20229757664221,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.992404732635669,38.31102326491408,137.12845748550924,6.047063833249348,3.839189499874023,-1.231811940192021,-1.5634070294784577,-2.651731911900562,-5.842082131988938,0.0,-14.447900027294871,0.0,0.23529411764705882,22,1,4,0,2,2,2,0,2,4,1,5,0,0,1,1,4,3.4292000000000025,88.60770000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3784,COC(=O)C1=C(C)NC(C)=C(C(=O)OC(C)C)C1c1cccc2nonc12,0,14.03475454302091,-4.30033409968926,14.03475454302091,0.6268615362811794,0.8181000978992072,371.3929999999997,350.2250000000001,371.1481207720006,142,0,0.3365072449383024,-0.4655800485310908,0.4655800485310908,0.3365072449383024,1.3333333333333333,2.111111111111111,2.814814814814815,2.7667966304442717,1713.5565834460315,37.541087405397874,33.88288223881919,12.88288223881919,21.247577231153823,17.181534029561575,6.734320434061617,4.753617681397126,4.753617681397126,3.236651705644386,3.236651705644386,2.2552949988215003,2.2552949988215003,-3.1599999999999997,3077021905.2908416,5.668454662601247,7.221757899794342,3.2983492273258554,185.27104973647047,14.783539260888475,11.033401435232523,1.4118420783282006,0.0,0.0,11.938610575903699,0.0,14.218113305036994,0.0,0.0,12.08483741532659,49.3267651827939,29.213939856324522,39.75344712452574,52.51885241436973,22.972012011136222,0.0,15.623139867539265,0.0,39.381544181495784,7.037952458882589,46.23099530093708,0.0,0.0,5.309813353288376,0.0,0.0,0.0,35.36990757598716,19.06280027574374,0.0,66.28014876964724,45.29658274613344,1.4118420783282006,11.033401435232523,0.0,103.55,120.93231730574004,10.959832924313863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.416091358744335,27.456254645562378,180.1951411676547,0.0,27.648768345301075,6.052268009017197,-10.929576483371125,-9.033265857268832,-3.5675458857020006,-4.30033409968926,-16.029170683029363,-3.7862845129124043,0.3684210526315789,27,1,8,0,1,1,1,1,2,8,1,8,9,0,0,0,3,2.5822000000000003,96.32470000000004,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +119607,Cc1onc(-c2ccccc2)c1-c1ccc(S(N)(=O)=O)cc1,0,12.301036068688692,-5.1279977635950305,12.301036068688692,0.6599066594230278,0.804935338712105,314.3659999999998,300.2540000000001,314.07251330800034,112,0,0.23754582797496832,-0.3604081276040399,0.3604081276040399,0.23754582797496832,1.1363636363636365,1.8636363636363635,2.5,2.5788230850205687,1455.691604890019,27.65181786940711,24.52742035285537,11.343916933783095,16.366708279131384,12.474763984217203,7.020400122017926,3.914495613877056,5.272876583997234,2.5389024348599234,3.2589340992602445,1.6160982246789923,1.9761140568791529,-2.439999999999999,34853764.637343295,5.328454843032136,5.398314749862663,2.658532279947991,147.7622340530681,4.523094936973348,14.277859570379306,0.0,10.023291153407584,0.0,0.0,0.0,13.542820220500968,0.0,0.0,47.45359421076851,24.500181024319264,9.675727160207655,22.795761972746746,32.21367875200132,10.023291153407584,0.0,5.156663257125445,5.12502323617203,11.747375592813455,0.0,60.142015787844095,0.0,22.384282469939446,5.12502323617203,0.0,0.0,0.0,13.574460241454382,10.023291153407584,6.851892117295679,22.20935009291708,63.800346781460775,2.8236841566564013,22.384282469939446,0.0,86.19,109.42198824017663,8.417796984328938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.156663257125445,23.795881767672384,139.3984748857691,0.0,-1.3310214813912504,2.708170296553596,-2.993359617766859,-1.010807455698328,-8.825088170686582,0.0,-3.151704026518015,-5.1279977635950305,0.0625,22,2,5,0,0,0,2,1,3,4,1,6,5,0,0,0,3,2.9644200000000005,83.48520000000002,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +145948937,NCC1O[C@H](O[C@@H]2[C@@H](CO)O[C@@H](O[C@@H]3[C@@H](O[C@H]4O[C@H](CN)[C@@H](O)[C@H](O)[C@H]4N)[C@H](N)C[C@H](N)[C@H]3O)[C@@H]2O)[C@H](N)[C@@H](O)[C@@H]1O,0,9.849043690421531,-6.213652266519563,9.849043690421531,1.3519329430103153,0.11451275698725806,614.650000000002,568.2820000000003,614.3122855320014,246,0,0.21084917270047604,-0.3935663018391383,0.3935663018391383,0.21084917270047604,0.6666666666666666,1.2380952380952381,1.7619047619047619,2.4523484835664986,2608.185965595365,70.15648977056287,65.49050934902996,19.49050934902997,38.82751592742241,31.9443007251531,10.219999545906573,7.269330675540626,7.269330675540626,4.783379027280158,4.783379027280158,2.8846180544568627,2.8846180544568627,-0.7600000000000001,3.037778452750062e+20,8.200426254967056,14.121320888468812,6.6002477270430955,306.9569191563985,98.50113691490843,83.82230323638834,18.798235105610694,10.01839760062844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.372924901329379,35.995572754692944,50.719200773799784,118.13542101708511,0.0,10.01839760062844,0.0,34.318301854357635,122.20294620373849,19.55270461154818,0.0,0.0,0.0,34.318301854357635,0.0,0.0,0.0,181.1627808523363,28.421177722800294,0.0,43.38340591792534,0.0,16.942104939938407,0.0,0.0,353.11000000000007,176.07395266964437,13.7075855617022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.761657337750485,78.68457571826093,422.69749856873403,0.0,0.0,27.748745097161272,-9.269777819932603,0.0,-21.637235464552454,-88.56835538094177,-14.720875000468762,0.0,1.0,42,19,19,1,3,4,0,0,0,19,13,19,22,1,3,4,4,-8.895300000000017,138.35600000000002,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5311424,CC[C@H](NC(=O)c1c(O)c(-c2ccccc2)nc2ccccc12)c1ccccc1,0,14.565752446040138,-4.189200224128528,14.565752446040138,0.7662797094146301,0.4797804646003673,382.46299999999974,360.28700000000015,382.1681279440006,144,0,0.2932530847264803,-0.5048216988534644,0.5048216988534644,0.2932530847264803,1.1724137931034482,1.8620689655172413,2.586206896551724,2.306388731856469,2111.0440083757812,39.1932697537345,36.21092377192764,14.210923771927641,23.246806228801784,18.6581373674276,7.802675481463779,5.2787039006403305,5.2787039006403305,3.6026728643323467,3.6026728643323467,2.3792545448912215,2.3792545448912215,-3.6599999999999984,31493791408.95316,5.924085745733147,8.147990042005377,3.6946349503004328,200.46636843179843,10.418621544395588,5.693927994848461,7.161353911612106,0.0,7.33837938658414,0.0,4.794537184071822,4.9839785209472085,0.0,0.0,85.40333531691854,17.97879510068967,17.80346848701289,37.65942302021622,38.73035857691164,16.810104661432565,1.4311996572326342,10.293791874235584,0.0,19.242709486974704,0.0,95.72076489068016,0.0,17.00689131982936,5.309813353288376,0.0,5.749511833283905,0.0,17.431166098638563,0.0,0.0,62.57932077784498,84.59386190728614,1.4118420783282006,22.160304418626517,0.0,62.22,154.09028371220518,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,30.25821285896523,181.18081689316236,0.0,18.552690701529304,2.858143626079907,-5.656136774989815,-3.398702916351726,-19.439031092738553,-4.189200224128528,-3.9919135458962858,0.0,0.12,29,2,4,0,0,0,3,1,4,3,2,4,7,0,0,0,4,5.488500000000004,115.784,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4614,O=C(O)CCc1nc(-c2ccccc2)c(-c2ccccc2)o1,0,11.800262088433987,-3.603445189804318,11.800262088433987,0.7062587920970855,0.7711850955719793,293.3219999999997,278.202,293.1051933400004,110,0,0.3033630205194922,-0.4812197415411719,0.4812197415411719,0.3033630205194922,1.1363636363636365,1.7727272727272727,2.409090909090909,2.5422245342908254,1304.0886849767292,28.35892465059366,25.671958466891546,10.671958466891548,16.926551463781376,13.171958466891548,5.763710176427685,3.734206457446614,3.734206457446614,2.362521862210601,2.362521862210601,1.5489134955137835,1.5489134955137835,-2.879999999999999,66789753.156263374,4.811813556141764,6.263008090810288,3.061456206666087,148.77137873272238,9.52595912816056,5.693927994848461,11.650971340900352,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,4.9839785209472085,0.0,0.0,60.42418707663295,0.0,22.98286210940425,20.080510463031576,33.51111609861546,5.969305287951849,1.4311996572326342,4.9839785209472085,0.0,12.745849802658759,0.0,66.31491099865886,0.0,22.581078397116894,0.0,0.0,0.0,0.0,16.06209200000627,11.167462085401201,0.0,31.454268609738364,64.8413380136863,0.0,24.01227805434953,0.0,63.33,107.6111444863864,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,25.038970380669056,123.93449534425544,0.0,15.554740074072686,3.5606644981735167,-2.2104838540354406,-4.082975030053853,-8.47125099188997,-7.1185233738557185,0.0,0.0,0.1111111111111111,22,1,4,0,0,0,2,1,3,4,1,4,5,0,0,0,3,4.025800000000003,83.33180000000004,1,0,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54685925,CN(C)c1ccc(O)c2c1C[C@H]1C[C@H]3[C@H](N(C)C)C(=O)C(C(N)=O)=C(O)[C@@]3(O)C(=O)C1=C2O,0,15.312493858654568,-5.188669808201062,15.312493858654568,0.6958257974006465,0.39381630169777443,457.4829999999997,430.2670000000002,457.18490020400066,176,0,0.293148593611619,-0.5077369129906837,0.5077369129906837,0.293148593611619,1.3333333333333333,2.1818181818181817,2.8181818181818183,2.580537896908779,2082.7876974836363,47.0660314317802,42.69937881974692,15.699378819746917,26.751595283673225,21.521536953728738,8.494116600873374,6.749993497165931,6.749993497165931,4.998148942183597,4.998148942183597,3.579209472451832,3.579209472451832,-3.3700000000000006,603557569793.991,6.830377845728686,7.323534247616357,2.9029495431990915,228.15677668713437,31.0548594710056,22.840946106665523,14.20797991400503,7.214444603597573,10.200778701049408,0.0,19.28352128306594,0.0,0.0,0.0,0.0,50.23975019560991,55.77975630174441,15.6936196285573,66.42845815287541,28.92022076842112,5.724798628930537,4.899909730850478,17.507632346452432,24.36479308199209,32.80321733197946,40.117114330515285,0.0,5.749511833283905,10.619626706576751,5.687386274683562,5.749511833283905,0.0,85.19346231228832,20.756536453544843,11.787915370726157,46.28575756429802,28.990211347121296,2.8236841566564013,8.621564186121445,0.0,164.63,154.36239942349476,19.184384261335182,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,20.43523276442885,27.73910257197002,225.78358603983395,0.0,41.25226667675699,17.55613419169448,-15.552549762673479,-23.65664044716495,-8.361049968628905,-9.703436397707234,-17.15164366544418,0.0,0.43478260869565216,33,6,10,3,0,3,1,0,1,9,5,10,11,1,0,1,4,0.030000000000001803,118.57160000000006,0,3,2,0,0,0,0,1,0,0,3,3,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +6741,C[C@H]1C[C@H]2[C@@H]3CC[C@](O)(C(=O)CO)[C@@]3(C)C[C@H](O)[C@@H]2[C@@]2(C)C=CC(=O)C=C12,0,14.335848164398394,-5.7330915769085475,14.335848164398394,2.089488729739677,0.6851425387768039,374.4769999999996,344.23700000000014,374.2093240600008,148,0,0.21153165731523252,-0.39276069475015013,0.39276069475015013,0.21153165731523252,1.5925925925925926,2.5185185185185186,3.2222222222222223,2.7636320294713936,1879.7266796850126,45.5854219586974,43.04124145231931,13.041241452319316,24.84544086759499,21.995365597551245,7.270620726159658,6.020620726159658,6.020620726159658,4.559236805337109,4.559236805337109,3.244159214567151,3.244159214567151,-1.2999999999999998,108596421865.99051,4.550413124802288,5.849728674489499,2.2809064011512357,202.11537598776448,15.326424573321638,12.160036053899976,11.566489892729878,4.293598971697903,0.0,0.0,9.589074368143644,0.0,0.0,0.0,32.18085262799187,55.27771615347788,45.50986830373128,14.304569363971307,61.92597995806128,11.566489892729878,4.293598971697903,0.0,34.405811680245876,57.72844479513822,6.558985242916289,23.72931976817597,0.0,0.0,0.0,0.0,0.0,0.0,49.42656751859938,9.589074368143644,34.405811680245876,83.05785697380048,23.72931976817597,0.0,0.0,0.0,94.83000000000001,133.98905137920622,21.92590137367562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,28.96725298276186,263.77540522124144,0.0,27.621683958317355,12.078930515518127,-18.525242632814788,-27.339522304747458,-6.718658369148088,-26.895608019442363,-19.496988368924253,0.0,0.7272727272727273,27,3,5,4,0,4,0,0,0,5,3,5,8,3,0,3,4,1.8036,99.59540000000004,0,3,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +68740,O=P(O)(O)C(O)(Cn1ccnc1)P(=O)(O)O,0,12.611321806500378,-5.875269116906021,12.611321806500378,0.19518518518518535,0.4319639935251941,272.0899999999998,262.01,271.9963239200003,92,0,0.3708832884531693,-0.3661592354743626,0.3708832884531693,0.3661592354743626,1.4375,2.0625,2.4375,4.086234435574668,716.3729444943365,20.55204176387779,17.146592415246875,8.935446797246705,11.890523381990526,7.906058296811433,6.450134265512697,2.4858030013310524,6.088037274511365,1.367569094427118,4.5220970416587845,0.6460688833166703,2.291017857594988,-0.53,256992.0862941395,4.993091055028443,4.047117678804553,2.411794114297736,104.1801731228364,29.258677434974487,1.3707585561702202,0.0,7.155998286163171,5.083227620067512,15.19152465357577,9.130096569862658,4.9839785209472085,0.0,0.0,0.0,0.0,12.345790421629522,18.28326562296305,40.67546713789691,15.19152465357577,7.155998286163171,9.551078168738563,0.0,11.580087304383458,0.0,18.64916213559575,0.0,0.0,0.0,0.0,0.0,15.19152465357577,46.48188186215237,15.626956254178603,0.0,6.853792780851101,18.64916213559575,0.0,0.0,0.0,153.10999999999999,45.420774093554975,9.130096569862658,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,29.67555630813034,14.009791067014271,97.49743087049634,0.0,17.499885519022424,-0.3192542202066031,0.0,0.0,0.0,-3.39029399722852,-3.9261188271604954,-11.750538233812042,0.4,16,5,9,0,0,0,0,1,1,9,5,11,9,0,0,0,1,-1.1154000000000002,51.26500000000003,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +26758,C#CCN(C)[C@H](C)Cc1ccccc1,0,8.47057350718065,-4.09065098261527,8.47057350718065,0.6783082955404378,0.6530251998867979,187.28600000000014,170.14999999999998,187.136099544,74,0,0.12387612123455435,-0.29238645564332844,0.29238645564332844,0.12387612123455435,1.7857142857142858,2.642857142857143,3.2857142857142856,4.23608417046551,888.1546688068365,24.95566544670048,23.94721359549996,6.947213595499958,13.602112056107204,11.920820393249937,3.4208203932499366,2.0458203932499366,2.0458203932499366,1.1347135954999579,1.1347135954999579,0.5986067977499789,0.5986067977499789,-1.2599999999999998,1002027.2394994925,1.9852888042478885,5.46596949475999,3.237538667639421,110.6295554851886,0.0,1.3707585561702202,0.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,6.399401534821945,36.13252785717212,25.7640954106043,18.354719473881623,16.092169577507484,23.302895454893736,0.0,0.0,4.899909730850478,0.0,19.242709486974704,13.47268658459819,35.77554503001347,0.0,12.319835853677588,0.0,0.0,0.0,0.0,24.39048878379831,6.372924901329379,12.319835853677588,35.718239063886415,30.212093538316473,0.0,0.0,0.0,3.24,73.39085083243685,0.0,0.0,0.0,0.0,0.0,12.319835853677588,0.0,0.0,0.0,23.302895454893736,132.3214157917082,0.0,-0.6783082955404378,0.0,-1.3393447656840511,1.472388091038885,-9.62266660085879,-2.5690318633320084,-11.334452357331827,0.0,0.38461538461538464,14,0,1,0,0,0,1,0,1,1,0,1,6,0,0,0,1,2.1826,61.07100000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1547484,C(=C/c1ccccc1)\CN1CCN(C(c2ccccc2)c2ccccc2)CC1,0,9.7397253824521,-4.497822696316566,9.7397253824521,0.730287066362103,0.5966660766331066,368.5239999999996,340.3000000000001,368.2252488960008,142,0,0.06290174839176227,-0.29713306349585733,0.29713306349585733,0.06290174839176227,0.8571428571428571,1.3571428571428572,1.8928571428571428,2.2284075667464696,2024.251651186316,43.70170592217177,41.89442719099992,13.894427190999917,25.07969745424363,21.591640786499873,7.591640786499875,4.828444185374865,4.828444185374865,3.0996322893124004,3.0996322893124004,1.9678695435311893,1.9678695435311893,-2.679999999999999,159124722998.33057,4.721342975206612,9.495927553363686,4.776071181203047,207.62853560618984,0.0,0.0,0.0,0.0,0.0,0.0,9.799819461700956,0.0,0.0,0.0,102.7404241070206,16.690354475090988,46.191883983281954,30.6915464794136,38.38123957276617,6.052071746035566,0.0,9.799819461700956,0.0,6.017892468349645,32.48429842157972,113.37870683607599,0.0,0.0,0.0,0.0,0.0,0.0,42.28411788328068,0.0,0.0,61.089486516206854,96.68835236098502,0.0,6.052071746035566,0.0,6.48,167.73278893374194,1.3707585561702202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.010481016595946,239.07351705605834,0.0,-1.5775087111928743,0.0,-4.231202365671232,0.0,-26.263007338779786,0.0,-22.168465307081163,0.0,0.23076923076923078,28,0,2,0,1,1,3,0,3,2,0,2,6,0,1,1,4,5.1070000000000055,118.21600000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +65999,CCCc1nc2c(C)cc(-c3nc4ccccc4n3C)cc2n1Cc1ccc(-c2ccccc2C(=O)O)cc1,0,12.805444931266212,-4.205189410155023,12.805444931266212,0.13287766907520382,0.243238592025165,514.629,484.3890000000004,514.2368762000008,194,0,0.3358157670780982,-0.4776232778211001,0.4776232778211001,0.3358157670780982,1.0,1.8461538461538463,2.6666666666666665,1.9216766820572613,3184.682289199388,52.8644781500588,49.10535096292756,19.10535096292756,31.18531127765766,25.552564558427516,10.644316267963653,7.585328854940043,7.585328854940043,5.297487024419232,5.297487024419232,3.6341398434550523,3.6341398434550523,-4.709999999999999,114104358415537.28,7.915055286762057,9.873860440409693,4.3772765287708,268.9897104944496,14.243007486689923,11.648808995999854,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,14.76249422596624,0.0,0.0,61.233660486265336,65.69071652372952,43.22892420783745,49.5623912608856,49.65534350411545,28.036108158416894,1.4311996572326342,19.102156337477126,6.975826900282246,32.946493721566064,0.0,107.10862088037706,0.0,22.514758973090913,0.0,0.0,0.0,0.0,30.180269816536185,19.84561148592757,6.851892117295679,80.28611130472419,84.59386190728614,0.0,46.012761500788585,0.0,72.94,197.58180863373326,8.906812852582483,0.0,9.13419929558271,0.0,0.0,0.0,0.0,0.0,15.07676523300163,37.070922117658355,256.02259727834115,0.0,20.648488285304644,3.920105529259633,-11.902748520562923,-4.725789075135651,-17.19538364143143,-8.391364087206622,-15.37590576856886,0.0,0.18181818181818182,39,1,6,0,0,0,4,2,6,6,1,6,10,0,0,0,6,7.2644200000000065,156.1122999999997,0,0,0,0,1,4,0,0,1,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5282455,CC(C)c1nc(N(C)S(C)(=O)=O)nc(-c2ccc(F)cc2)c1/C=C/[C@@H](O)C[C@@H](O)CC(=O)[O-],1,14.846567505453478,-6.4468937787534415,14.846567505453478,1.193917939179396,0.5138586535908335,480.5379999999998,453.3220000000003,480.16100838391066,180,0,0.23930078449014475,-0.550068101580303,0.550068101580303,0.23930078449014475,1.4242424242424243,2.1818181818181817,2.757575757575758,3.833872110692604,2147.6639906277815,47.91133089340096,42.57734329275614,16.393839873683866,26.39384160109579,21.13364784926026,9.257214597133174,5.374952323321882,6.690233374648308,3.131005678860429,3.775021577881,1.9207013707180134,2.2173340202368914,-2.8899999999999997,330556124856.3756,7.5560255105756156,10.81866448044315,7.307118876067872,229.95540797099096,20.118680961126955,5.817220841045895,0.0,18.83402974885935,0.0,0.0,0.0,27.081385065194404,0.0,0.0,25.80792772666249,30.063632516016256,60.12078042918064,40.697884594075134,67.19585689738626,27.993007468381492,2.8623993144652684,9.967957041894417,0.0,44.50362777651316,17.46496699269494,47.2963469042801,0.0,11.257379486545457,9.41174338613694,10.338754328661313,0.0,0.0,62.75486206615358,14.817828337479405,5.817220841045895,77.86993511341416,30.221746576688744,0.0,17.309451232581022,0.0,143.75,148.51532862841518,22.709276610916284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.185573424108842,37.13136321872077,256.83797374400774,0.0,18.284688835459175,19.250479020209983,-7.957442726867558,-11.870048629136647,-11.664842949876512,-23.302102003022615,-13.298478178686837,-6.4468937787534415,0.4090909090909091,33,2,9,0,0,0,1,1,2,8,2,11,16,0,0,0,2,1.067,120.05040000000004,1,2,0,0,0,2,0,0,1,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +135398737,CN1CCN(C2=Nc3cc(Cl)ccc3Nc3ccccc32)CC1,0,8.702185610355253,-3.898787797269115,8.702185610355253,0.1953130511463841,0.8001222420891722,326.83099999999973,307.6790000000001,326.1298242880005,118,0,0.16660267269619608,-0.35347061187973944,0.35347061187973944,0.16660267269619608,1.2173913043478262,2.0434782608695654,2.869565217391304,2.285314786643976,1523.0969951270415,32.444711088220565,30.16681885500906,11.922747801027512,18.789358009941758,15.622263809504362,6.553014687013631,4.275050214004404,4.653014687013632,2.8347387025021593,3.0237209390067727,1.8782524562130287,2.0150012872017613,-2.0399999999999996,348696265.1869407,4.52463766909758,5.870760385193409,2.799077045717136,167.68710207706548,15.109632814989332,5.835619785757269,1.4118420783282006,0.0,0.0,0.0,0.0,4.992404732635669,0.0,0.0,23.685777305559107,37.187920438598724,51.85621971057722,26.45311666723954,26.08549608939216,34.49871850004047,0.0,9.799819461700956,4.992404732635669,0.0,38.2730789908344,52.88301575908139,0.0,0.0,5.309813353288376,17.062158824050687,0.0,11.600939890232516,48.598704885004246,0.0,0.0,30.23710550276095,47.28933568627873,6.434475392069527,0.0,0.0,30.869999999999997,113.64396973728587,0.0,0.0,10.209723084138854,0.0,0.0,0.0,0.0,0.0,4.992404732635669,37.68643597962468,157.9942761255099,6.021664140127191,3.113341217264376,-0.5087031178531001,-3.441279420718904,-1.2614452632905013,-6.551416093924136,0.0,-19.338659809337045,0.0,0.2777777777777778,23,1,4,0,2,2,2,0,2,4,1,5,1,0,1,1,4,3.7227000000000023,96.44370000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,1,0,0,0,0,0,0,0,0,1,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23696973,O=C([O-])c1cccc(Cc2cc(Cl)ccc2OCc2ccc(Cl)cc2F)n1,1,14.933302023911086,-3.5935690009028303,14.933302023911086,0.8236597494853124,0.6207397023641477,405.2319999999998,392.12800000000004,404.02620043591037,138,0,0.13079769095324043,-0.5431185654257675,0.5431185654257675,0.13079769095324043,1.1481481481481481,1.8888888888888888,2.6666666666666665,2.417353380829904,1574.4870554695449,30.806518407786363,25.80585188591923,14.31770977795614,18.193894101090734,13.330656885941526,7.5865858319599795,4.571669472917917,5.327598418936372,2.761128265942894,3.1390927389521215,1.662824666064807,1.9347667474098595,-2.629999999999999,170447005.5482533,8.587013079187448,8.374222290471387,4.963563301698572,182.9660512963791,14.637927532712578,18.12571791724609,0.0,0.0,0.0,0.0,4.9839785209472085,4.39041504767482,0.0,0.0,35.286717195791624,42.29693095364306,35.98053961939493,26.741577400672725,36.84820381060026,29.171185068416882,0.0,4.9839785209472085,0.0,12.931910144245668,0.0,92.75901481058912,0.0,5.749511833283905,9.843390348640755,4.39041504767482,5.749511833283905,23.20187978046503,10.953283808899059,12.931910144245668,5.817220841045895,45.12915738737562,54.38176836896965,10.045266627482652,0.0,0.0,62.25,117.40974207607056,14.291479626587348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,45.75860396447798,125.22803873401334,11.565128557646409,14.823720624315726,9.742037518283428,-5.035774457384034,-5.1486187347866075,-9.945965183320311,-3.4127758356429014,-3.5935690009028303,0.0,0.1,27,0,4,0,0,0,2,1,3,4,0,7,6,0,0,0,3,4.060800000000002,98.56750000000002,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1712095,CCOc1ccc(/C=C2\NCCc3cc(OCC)c(OCC)cc32)cc1OCC,0,9.074908470332577,-3.97497645107459,9.074908470332577,0.5397145143066417,0.650440010500271,397.5149999999996,366.26700000000017,397.22530847200085,156,0,0.16133560802591868,-0.4899906768673962,0.4899906768673962,0.16133560802591868,1.0,1.6206896551724137,2.310344827586207,2.759680050545774,2057.274918548064,47.48868116259058,45.08020675735541,14.08020675735541,26.24934221107889,22.77742035285537,7.330206757355411,4.705206757355411,4.705206757355411,3.1202659555554546,3.1202659555554546,2.0731133698348168,2.0731133698348168,-2.82,324160739937.9528,4.739485207375646,10.099420867929778,4.969062273896077,216.7885537516828,24.257265168488573,0.0,24.40988941146382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.042418707663295,75.12914293059482,39.689487387792305,45.42656075804826,61.48205057863506,11.7491110590914,0.0,5.309813353288376,0.0,33.7804933705121,32.7328006559811,46.90244801340746,0.0,22.99804733313562,24.257265168488573,0.0,22.99804733313562,0.0,32.7328006559811,6.372924901329379,0.0,85.22067962938029,30.212093538316473,1.4118420783282006,11.7491110590914,0.0,48.95,153.4727137854161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.48205057863506,268.5042597595582,0.0,0.0,-0.5397145143066417,-5.960298871110785,-6.717254227065564,-9.809887026565248,-3.8294869581739865,-34.8142848290026,0.0,0.4166666666666667,29,1,5,0,1,1,2,0,2,5,1,5,13,0,0,0,3,4.925200000000005,117.13770000000007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3108,OCCN(CCO)c1nc(N2CCCCC2)c2nc(N(CCO)CCO)nc(N3CCCCC3)c2n1,0,8.962503047247365,-4.733481629399624,8.962503047247365,0.9795195578231293,0.3081454686289042,504.63599999999957,464.3160000000003,504.31725176000117,200,0,0.22780331080487576,-0.3945342844261826,0.3945342844261826,0.22780331080487576,0.6111111111111112,0.9722222222222222,1.3055555555555556,2.739745892757337,2270.6256454973413,60.43035694138864,57.21070192585512,17.210701925855115,33.15136142092203,28.67162569778276,9.038632535927306,5.785957054463525,5.785957054463525,3.8575353655848614,3.8575353655848614,2.5789440959349608,2.5789440959349608,-2.5400000000000005,342107270505026.8,6.0305146972743495,13.132812022900296,6.049910617292099,268.3107260559178,40.03487168783076,11.033401435232523,11.635725555670057,17.621477190903526,0.0,0.0,0.0,9.967957041894417,9.967957041894417,0.0,0.0,38.237549407976275,79.39004859793194,48.16807787038871,69.78254078655682,34.565805552875574,5.724798628930537,19.935914083788834,0.0,38.237549407976275,97.81045736959464,0.0,0.0,0.0,19.599638923401912,23.532404117643047,0.0,0.0,124.30676392334098,0.0,0.0,87.58485743010418,0.0,0.0,11.033401435232523,0.0,145.44,170.6138123304465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.371146848217684,55.07210665105849,337.7654381018612,0.0,10.027379639260044,15.076620428017362,-4.215278932560681,-9.365468095717016,0.0,-27.188614111950578,-55.60007702891045,0.0,0.75,36,4,12,0,2,2,0,2,2,12,4,12,16,0,2,2,4,-0.017599999999997396,140.02519999999993,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4235,O=C(NCCN1CCOCC1)c1ccc(Cl)cc1,0,12.85876267636684,-4.215986451422134,12.85876267636684,0.7031555977341959,0.8976306233197456,268.74399999999974,251.60799999999995,268.09785546400036,98,0,0.2508248074058063,-0.3787927180120615,0.3787927180120615,0.2508248074058063,1.5555555555555556,2.2222222222222223,2.888888888888889,2.7186788662954244,1005.8916086235038,27.90325920389318,25.588888244936868,9.344817190955323,15.319925870559846,12.86660225645026,4.79735313395953,2.6947482097609097,3.0727126827701374,1.5445628972354775,1.7335451337400913,0.8321513239437803,0.9266424421960873,-1.0999999999999999,7326454.137316101,3.5077618410357876,6.731296123262332,3.978426224070977,135.81075131207882,10.046676307088426,0.0,1.4118420783282006,0.0,5.907179729351506,0.0,9.694446914922299,0.0,0.0,0.0,11.600939890232516,24.16967483065318,44.79807487972344,26.825556047534775,32.87537911492359,17.508119619584022,0.0,10.209723084138854,0.0,0.0,39.10540922309636,34.7557596360915,0.0,0.0,5.309813353288376,0.0,0.0,11.600939890232516,49.91249868329834,4.736862953800049,0.0,32.290125574492336,24.16967483065318,6.434475392069527,0.0,0.0,41.57000000000001,89.97807167267823,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,34.94491886728424,137.61444728144335,5.631009860573646,12.055418530066344,-1.5385089613018452,-1.2104327548920801,-1.964866701310154,-4.093452048225676,0.0,-23.715837428575824,0.0,0.46153846153846156,18,1,4,0,1,1,1,0,1,3,1,5,4,0,1,1,2,1.4020000000000006,71.04420000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3463,Cc1ccc(C)c(OCCCC(C)(C)C(=O)O)c1,0,12.47058696591074,-4.729677461262283,12.47058696591074,1.3014921520528941,0.7849558299886599,250.33800000000016,228.16199999999995,250.156894564,100,0,0.3085639988790408,-0.4933115604495353,0.4933115604495353,0.3085639988790408,1.6111111111111112,2.5,3.1666666666666665,4.222888363029477,1122.8000896440376,32.45566544670048,30.72474487139159,8.72474487139159,17.302583233250488,15.22474487139159,4.316496580927726,2.945705769029128,2.945705769029128,1.5384034720037776,1.5384034720037776,0.7124362178478973,0.7124362178478973,-1.5100000000000002,32592841.746767666,2.6707157585174435,5.894163180223425,4.058379110355047,139.78120449263213,9.84567114490726,5.749511833283905,0.0,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,0.0,12.08483741532659,57.32273996289876,21.932136898723517,18.827768493164168,43.42613800855372,5.969305287951849,1.4311996572326342,0.0,5.41499046939678,40.153418271841474,6.558985242916289,29.254159106383874,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,17.63709872197535,4.794537184071822,19.118774703988137,66.36246670021879,18.127256122989884,0.0,1.4311996572326342,0.0,46.53,93.10037021177416,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,34.9539922906073,175.2260217213926,0.0,12.47058696591074,3.454834723974785,-7.419116929447016,-4.327348843386453,-4.255709403264418,-9.357243126417238,-20.125358442096363,0.0,0.5333333333333333,18,1,3,0,0,0,1,0,1,3,1,3,10,0,0,0,1,3.573240000000002,72.06180000000005,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4205,CN1CCN2c3ncccc3Cc3ccccc3C2C1,0,9.380550359032501,-3.9268741732804227,9.380550359032501,0.11379393424036266,0.7292796247091088,265.35999999999984,246.20799999999994,265.15789760800027,102,0,0.13214652050550102,-0.3467456029538682,0.3467456029538682,0.13214652050550102,1.3,2.2,3.15,2.434424848869997,1415.6376132645714,30.212660280651686,28.841640786499873,9.841640786499873,17.33401620868028,15.038854381999831,5.5388543819998315,3.902050983124843,3.902050983124843,2.729837387624885,2.729837387624885,1.9072754915624208,1.9072754915624208,-1.8699999999999997,78543039.32859339,3.303499234887562,4.5990470900709735,1.8129321738332898,146.1002425294238,9.799819461700956,5.817862777835028,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,30.212093538316473,29.708600083036526,44.37322617062399,19.725478030051843,26.044412567234176,5.817862777835028,0.0,9.883888251797686,0.0,12.390817369679024,31.36631568408056,59.11776193188552,0.0,0.0,4.899909730850478,5.817862777835028,0.0,0.0,36.350294205027765,6.372924901329379,0.0,48.75265951067485,42.42740745679453,0.0,0.0,0.0,19.37,108.69275776348016,1.3707585561702202,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,24.673654011063956,159.85369562022342,0.0,2.9577891156462575,0.0,-3.5262877928949345,-1.2111082766439905,-10.416792656105653,-4.401333643025112,-15.422629033866638,0.0,0.35294117647058826,20,0,3,0,2,2,1,1,2,3,0,3,1,0,1,1,4,2.4789000000000003,81.06900000000005,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4680,COc1ccc(Cc2nccc3cc(OC)c(OC)cc23)cc1OC,0,8.89964805366591,-3.4831606670445963,8.89964805366591,0.8689856722328761,0.6824184549395481,339.3909999999997,318.22300000000007,339.14705815200057,130,0,0.16092111982774784,-0.4928699753745373,0.4928699753745373,0.16092111982774784,0.88,1.56,2.32,2.5930995594577015,1689.8682116135517,35.695787943777134,33.08020675735541,12.08020675735541,20.48250545867328,16.83020675735541,6.33020675735541,4.296958466891548,4.296958466891548,2.9161418103235226,2.9161418103235226,1.8689892246028856,1.8689892246028856,-2.9499999999999997,1172665703.7525775,4.814189746009182,7.298718628776461,3.3086838848277416,176.17308183177724,18.947451815200196,0.0,22.99804733313562,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,6.042418707663295,41.161769244478265,20.673561438949374,59.890150397613056,47.73338149477485,10.772448428929591,0.0,4.9839785209472085,0.0,6.372924901329379,28.151809835530354,53.68478694333999,0.0,22.99804733313562,18.947451815200196,0.0,22.99804733313562,0.0,33.13578835647756,6.372924901329379,0.0,40.04330916612009,42.42740745679453,0.0,10.772448428929591,0.0,49.81,121.98001744226492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.457704428547306,38.25965558717473,184.24346965903325,0.0,3.6423565444696395,-1.8138187667361092,-2.406333511799782,-4.970736301498666,-7.253258724684141,-4.585867089151496,0.0,-13.605811809632716,0.25,25,0,5,0,0,0,2,1,3,5,0,5,10,0,0,0,3,3.860000000000003,97.19900000000005,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +170361,c1cnc2cc3c(cc2n1)C1CNCC3C1,0,8.705487055933485,-3.3350162981859413,8.705487055933485,0.294080215419501,0.721762960406491,211.2680000000001,198.16399999999996,211.110947416,80,0,0.12223946723068606,-0.31551526768182314,0.31551526768182314,0.12223946723068606,1.25,1.8125,2.375,2.334420267878592,1019.0304704862517,22.110365985079728,20.841640786499873,7.841640786499875,13.007778379516168,11.038854381999833,4.591640786499875,3.354837387624885,3.354837387624885,2.4319271909999154,2.4319271909999154,1.7362712429686837,1.7362712429686837,-1.4800000000000002,1437591.704549147,2.8493837356506444,3.013271818531334,1.0638377944237734,112.23794719607768,5.309813353288376,1.4118420783282006,0.0,0.0,0.0,0.0,9.967957041894417,0.0,0.0,0.0,0.0,41.37258067077611,36.30557823962318,16.5164356599134,17.86094475237084,11.033401435232523,0.0,15.277770395182792,0.0,18.160840272055538,12.99371936863189,35.5575308203501,0.0,0.0,5.309813353288376,0.0,0.0,0.0,22.96167641052631,0.0,0.0,45.736845929492205,24.430627836956113,1.4118420783282006,11.033401435232523,0.0,37.81,77.74549189627005,0.0,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.967957041894417,17.86094475237084,107.05594490110859,0.0,7.394914965986395,-0.294080215419501,-2.460606575963718,-6.2598944160997725,-1.5648611111111106,-4.618051618795667,-6.6700325963718825,0.0,0.38461538461538464,16,1,3,1,1,2,1,1,2,3,1,3,0,0,1,1,4,1.8038999999999998,62.50670000000003,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2162,CCOC(=O)C1=C(COCCN)NC(C)=C(C(=O)OC)C1c1ccccc1Cl,0,14.071943105946078,-4.518311838624343,14.071943105946078,0.8315376984126983,0.5023259105130484,408.88199999999966,383.68200000000013,408.1451995800007,152,0,0.33634453534939074,-0.46558005116144996,0.46558005116144996,0.33634453534939074,1.4642857142857142,2.3214285714285716,3.0714285714285716,3.5555723603564786,1701.7589271348882,42.204224112214405,38.31363311632846,14.069562062346915,23.23626364276596,19.08443657810988,7.120760264619231,4.422090022580876,4.8000544955901026,2.9780052074410404,3.2614785621979605,2.021312942050102,2.210295178554715,-2.349999999999999,13009192721.209463,5.842255753737507,10.264345352315052,4.729428437226229,204.3106869001726,25.240119190414795,2.8236841566564013,1.4118420783282006,0.0,0.0,11.938610575903699,0.0,9.589074368143644,0.0,0.0,29.7281960132224,25.30965443395165,29.553359316645082,67.27197547640178,58.191877700273274,23.539550466136212,0.0,5.309813353288376,5.719716975726273,19.597741919954437,33.211767871947394,57.2960473223417,0.0,0.0,11.029530329014648,0.0,0.0,11.600939890232516,45.1503784478511,23.79966322954379,0.0,55.31788164739633,46.70996251690338,9.258159548725928,0.0,0.0,99.88000000000001,133.0736980191619,10.959832924313863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.210588861400147,44.62239580479176,211.19979862649606,6.200701057044248,27.76513047235652,-2.2443297741119714,-11.266386566052317,-9.532678998832722,-5.503525894420346,0.0,-25.11737849626214,-3.8902193151062354,0.4,28,3,7,0,1,1,1,0,1,7,2,8,12,0,0,0,2,2.266300000000001,105.57710000000003,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,2,3,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5284596,C=CCN1CC[C@]23c4c5ccc(O)c4O[C@H]2C(=O)CC[C@@]3(O)[C@H]1C5,0,13.933831831356406,-4.518354709939532,13.933831831356406,0.7904556405895686,0.8015195132508509,327.37999999999965,306.21200000000005,327.14705815200057,126,0,0.2932939243502706,-0.5042464328896997,0.5042464328896997,0.2932939243502706,1.75,2.7083333333333335,3.5416666666666665,2.269976529731177,1606.554208264185,34.8948230354559,32.58020675735541,11.58020675735541,20.044652949716962,17.007937700337322,6.691441119409594,5.382368663516515,5.382368663516515,4.313819698639185,4.313819698639185,3.353772593252389,3.353772593252389,-1.8500000000000003,1534244852.8212264,4.456881424662832,4.40553906749999,1.3809690525325302,169.76381248427623,14.954479336014472,0.0,23.362286639882736,1.4311996572326342,1.4311996572326342,0.0,9.694446914922299,0.0,0.0,6.531038962001867,12.09449045369886,30.72464490334843,47.397090904050586,20.611351173572004,45.793429087320504,5.783244946364939,2.8623993144652684,4.899909730850478,0.0,48.605651380997614,12.99371936863189,35.79485110675802,0.0,11.49902366656781,4.736862953800049,0.0,11.49902366656781,0.0,54.45585104881032,16.58245255479798,0.0,56.290090254616366,24.667948123364024,0.0,0.0,0.0,70.0,119.57640020017077,10.277571408752703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,33.269448801925826,186.48349876932326,0.0,13.143376190766837,9.055843681480857,-11.316363247459478,-4.818293789502077,-9.005123782033731,-21.27947692271354,-10.263460899862197,0.0,0.5263157894736842,24,2,5,2,2,4,1,0,1,5,2,5,4,1,1,2,5,1.3014,87.27060000000004,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +41774,C[C@H]1O[C@H](O[C@@H]2[C@@H](CO)O[C@H](O[C@@H]3[C@@H](CO)OC(O)[C@H](O)[C@H]3O)[C@H](O)[C@H]2O)[C@H](O)[C@@H](O)[C@@H]1N[C@H]1C=C(CO)[C@@H](O)[C@H](O)[C@H]1O,0,9.561861666532701,-5.872880228702623,9.561861666532701,1.728533399140669,0.10348325925697462,645.608000000002,602.2640000000004,645.2480135360012,256,0,0.2134634098215541,-0.3935663186757658,0.3935663186757658,0.2134634098215541,0.7954545454545454,1.4545454545454546,2.0681818181818183,2.323293349165565,2613.734788198807,68.95997286892673,63.295682823849496,20.295682823849496,38.75552568375704,30.89651030736456,10.642068935834384,7.5956240442455085,7.5956240442455085,5.012800644326089,5.012800644326089,3.018950077034163,3.018950077034163,-1.02,1.0648625822237648e+20,9.56679519709425,14.81630679946309,6.964551819240929,311.8260627318467,95.40863460668241,80.45207642867804,18.798235105610694,18.605595544024247,0.0,0.0,0.0,0.0,0.0,0.0,6.052071746035566,12.424996647364946,4.1122756685106605,73.4324811528239,131.2626614606585,0.0,18.605595544024247,5.309813353288376,0.0,122.80616453690547,19.676955728748865,11.625176276104835,0.0,0.0,5.309813353288376,0.0,0.0,0.0,220.65133017677684,23.684314769000245,0.0,46.60389024623208,11.625176276104835,1.4118420783282006,0.0,0.0,321.17,159.4181098950476,17.860944752370838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.15136943819383,60.85594281411819,389.3999923900578,0.0,0.0,49.41891944164924,-2.438124857358515,0.0,-13.601650701183743,-91.08154136952881,-19.614261570302588,0.0,0.92,44,14,19,1,3,4,0,0,0,19,14,19,23,0,3,3,4,-8.564500000000002,137.73510000000005,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +444025,CCOC(=O)O[C@]1(C(=O)OCCl)CC[C@H]2[C@@H]3CCC4=CC(=O)C=C[C@]4(C)[C@H]3[C@@H](O)C[C@@]21C,1,14.640052742062796,-5.905160383597888,14.640052742062796,2.0895102154581737,0.49480398580664986,466.95799999999974,435.7100000000003,466.1758310120008,176,0,0.5089151188172094,-0.44636531771562404,0.5089151188172094,0.44636531771562404,1.46875,2.34375,3.0625,2.63359408789214,2102.687636262449,50.36987900907357,46.23570250625627,15.991631452274724,27.298200701801573,23.638471979287793,8.608188161833157,6.362291952321934,6.516595302284026,4.74880115770088,4.825952832681926,3.3999864649197296,3.470059341827688,-1.8599999999999999,997325396295.2301,6.221060597000501,8.171365440406456,3.2273428450548454,236.29384671152508,19.31939705250736,0.0,11.801412011325557,7.032250468216322,0.0,12.124670917490608,4.794537184071822,9.589074368143644,0.0,0.0,36.92990040092871,62.60857548673985,46.880626859901504,23.605071719228032,74.82576528982946,29.50885575408806,1.4311996572326342,0.0,28.511853994882795,64.1013696964676,12.577152307876908,23.729319768175966,0.0,0.0,0.0,4.794537184071822,0.0,11.600939890232516,48.70614485800598,23.79966322954379,28.511853994882795,93.54305754364047,23.729319768175966,0.0,0.0,0.0,99.13000000000001,146.82761163125883,28.091197113917662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.31939705250736,40.44731067086956,283.09726580799213,5.364072948438096,41.492362791609665,4.2445268389491115,-19.00770300605791,-22.677476615090754,-10.880896183661012,-35.73384100404312,-18.8705338003585,0.0,0.7083333333333334,32,1,7,4,0,4,0,0,0,7,1,8,8,3,0,3,4,3.9165000000000028,115.65580000000006,0,1,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,5,0,0,0,1,3,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4932,CCCNCC(O)COc1ccccc1C(=O)CCc1ccccc1,0,13.858648120321496,-4.544030223477429,13.858648120321496,1.0409718766579308,0.4865357366381187,341.45099999999957,314.23500000000007,341.19909372400076,134,0,0.21069040518931062,-0.4900820931304611,0.4900820931304611,0.21069040518931062,1.4,2.2,3.0,2.9399701335162787,1724.70599247959,41.49711733102786,39.171958466891546,12.171958466891546,22.911348685635428,19.619172062391506,6.263710176427685,3.7769067775526945,3.7769067775526945,2.1962273739552383,2.1962273739552383,1.25859898012957,1.25859898012957,-2.1699999999999995,12858340890.17387,4.210882891899255,10.644512318042269,6.6866031377900255,187.47107001538163,15.155484498195637,19.80035718147838,5.783244946364939,1.4311996572326342,0.0,0.0,4.794537184071822,0.0,0.0,0.0,49.14882307093875,36.89099839399829,30.689645815858178,22.012554165739633,50.32101431156282,5.783244946364939,1.4311996572326342,5.309813353288376,0.0,32.05068484823381,19.55270461154818,65.50867135236365,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,37.95597543320295,6.372924901329379,0.0,69.7881459916758,54.38176836896965,1.4118420783282006,0.0,0.0,58.559999999999995,133.95463094508287,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,41.8488685936164,219.6983986849478,0.0,13.858648120321496,2.6496352419108997,-3.209265454949389,-4.194081807800919,-11.973490359833082,-16.880830203771342,-17.28234755415881,0.0,0.38095238095238093,25,2,4,0,0,0,2,0,2,4,2,4,13,0,0,0,2,3.2414000000000023,100.19800000000004,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54690031,CN1C(C(=O)Nc2ccccn2)=C(O)c2sc(Cl)cc2S1(=O)=O,0,13.167191043083896,-5.150561683778447,13.167191043083896,0.24773715041572197,0.8432700407675218,371.8269999999999,361.74700000000007,370.9801254800002,120,0,0.29328946885253826,-0.5042035451561941,0.5042035451561941,0.29328946885253826,1.6521739130434783,2.4782608695652173,3.217391304347826,2.3543596956426494,1326.8964606932798,25.20422411221441,20.66909500229228,13.058017110166187,15.066509124140644,10.422613154296357,8.20167565107013,3.9453596552326915,7.2915812143036876,2.596944606445791,5.412403960055142,1.6598550759349444,4.354727161912449,-2.0999999999999996,8895126.691613456,7.646463909239567,5.5155368130290725,2.5606961417825627,154.6367685661836,10.418621544395588,10.713346253352803,12.86804626304021,0.0,17.361670539991724,0.0,9.099753175368056,13.401775505276145,0.0,11.336785877934737,17.643358597895812,18.127256122989884,17.260997779607667,16.06726899029803,30.69905288719793,50.44522430041754,1.4311996572326342,9.289194512243443,0.0,4.895483475517775,12.285640253570621,45.25308556397071,0.0,0.0,5.309813353288376,5.817862777835028,0.0,22.937725768167255,35.69880631731334,14.817828337479405,0.0,15.843215643063058,40.935092830041555,5.7481710940738315,7.19036452888881,0.0,99.6,88.93711046331724,13.212334168400758,0.0,5.309813353288376,11.336785877934737,0.0,0.0,0.0,0.0,10.092786712054421,25.41005007515511,102.10857312354825,6.248270593345355,15.134119428367711,4.113329685269168,-1.3336778785588315,-3.664324312029338,-3.3661641033696403,-0.8776753786403864,-3.600778363042749,-5.150561683778447,0.07692307692307693,23,2,7,0,1,1,0,2,2,6,2,10,4,0,0,0,3,2.2958999999999996,86.69330000000002,0,1,1,0,0,1,0,0,0,0,1,1,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0 +38409,O=C(O)COc1ccc(C(=O)c2cccs2)c(Cl)c1Cl,0,12.693413386966101,-3.2313240637929503,12.693413386966101,0.3516178616660073,0.8477638711526184,331.1759999999998,323.11199999999997,329.9520350960002,104,0,0.34122362129823147,-0.4802918402576081,0.4802918402576081,0.34122362129823147,1.4,2.2,2.85,2.6295813113440407,964.6437571174692,21.549523573835156,17.29717039833777,11.625524871302407,12.845147557603385,8.715081780096611,6.37925901657893,3.1860426777341493,4.758468204680331,1.962452427147336,3.49347974813333,1.1588797603860905,2.0590266210530928,-1.5599999999999996,866126.003089331,7.448788854983894,6.260108968202026,3.1203907281056225,139.38747683418575,9.84567114490726,10.772145147025231,6.558985242916289,5.783244946364939,1.4311996572326342,5.969305287951849,4.794537184071822,4.794537184071822,0.0,11.336785877934737,29.24429848812833,23.48337053265748,5.563451491696996,19.49509040063416,29.030055406242443,46.29121589271656,1.4311996572326342,0.0,0.0,0.0,6.558985242916289,50.011654553201716,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,34.53866565839977,23.42034366834029,4.794537184071822,0.0,24.830445762661654,29.525789240320776,10.045266627482652,1.4311996572326342,0.0,63.6,63.839440260349804,9.589074368143644,0.0,10.233261603368899,11.336785877934737,0.0,0.0,0.0,0.0,9.84567114490726,34.22838933088921,64.59296673948022,12.457879151188582,23.59401356363925,1.8729954060728506,-0.608892641933316,-3.606537984288705,-2.7655446148103833,0.0,-3.2313240637929503,0.0,0.07692307692307693,20,1,4,0,0,0,1,1,2,5,1,7,5,0,0,0,2,3.7493000000000016,77.34430000000003,1,0,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +5735,CN1CCN(C(=O)OC2c3nccnc3C(=O)N2c2ccc(Cl)cn2)CC1,0,13.619258681867809,-4.0979005145638,13.619258681867809,0.0175573192239864,0.7705081180627318,388.81499999999977,371.6790000000001,388.1050660840005,140,0,0.4116207462748524,-0.41854375996813004,0.41854375996813004,0.4116207462748524,1.3333333333333333,2.111111111111111,2.888888888888889,1.9622834017000648,1577.8078949995015,33.91133089340096,29.785990917400564,13.54191986341902,19.684152852854346,15.359580783682027,7.237545256691254,4.687341928980673,5.0653064019899,3.0906348886457065,3.269641432370865,2.00644972801873,2.09595299988131,-2.78,828527526.490906,6.67822570875731,7.087061346581865,3.3080441108968537,183.95917104645392,14.536682415501005,12.88254932885371,5.693927994848461,6.203952809936554,5.907179729351506,6.093240070938415,9.77851570501903,19.662403956816718,0.0,0.0,11.600939890232516,19.060664315608836,54.10143426289962,17.359460319273307,37.62883277683744,29.419222468357468,0.0,24.75175502454258,0.0,6.203952809936554,37.863175368396504,47.01401235120912,0.0,0.0,4.899909730850478,10.61239996190685,0.0,11.600939890232516,69.71544046237854,4.736862953800049,0.0,45.68924143859906,30.603523047770874,5.022633313741326,0.0,0.0,91.75999999999999,113.79933283851763,9.589074368143644,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,14.951935562841626,39.64069829892632,141.67160220989493,5.773161709439216,36.149613883486765,-0.6744386054081917,-2.0497738640528147,-2.589086549807149,-1.9454940142770707,-8.839428816489733,-20.051711508341512,0.0,0.35294117647058826,27,0,9,0,2,2,0,2,2,7,0,10,3,0,1,1,4,1.5679999999999998,96.38050000000004,0,0,0,0,0,3,0,0,0,0,2,2,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +5344,Cc1noc(NS(=O)(=O)c2ccc(N)cc2)c1C,0,12.910308956916097,-5.379166666666662,12.910308956916097,0.2625000763492835,0.8241959038664723,267.3099999999998,254.20599999999996,267.0677622760003,96,0,0.2637539767525486,-0.39872771712743776,0.39872771712743776,0.2637539767525486,1.5,2.2777777777777777,2.888888888888889,2.8216699320753484,1093.4298918423758,24.265066523458984,21.474633948355326,9.291130529283052,13.845982336967692,10.61919117521712,5.717613717517884,2.955417923721113,4.496373079676346,1.7239776081150537,2.850190256100407,0.9219688469921429,1.7161972056394628,-2.0199999999999996,2178581.090664658,3.9896715577785677,4.337583644907168,2.3030302240964393,123.27303027707927,10.242811912699622,0.0,4.235526234984602,5.884182201861009,10.023291153407584,0.0,0.0,13.132916598063069,0.0,0.0,5.156663257125445,37.87345906524454,19.475389103401877,16.072445695047115,30.884003717989078,21.594859629952154,0.0,5.156663257125445,0.0,18.599267710109135,10.434836589460405,35.42705431719864,0.0,0.0,10.434836589460405,11.57156847654457,0.0,0.0,13.574460241454382,10.023291153407584,13.703784234591359,24.964965048247652,33.5882532431443,4.235526234984602,0.0,0.0,98.22,80.33630127099406,8.417796984328938,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,9.679758194098794,17.943111796686804,127.5362536678022,0.0,-1.3829393424036278,3.051705995657114,-3.467719103570925,-1.3382663559250865,-4.66941825186865,0.0,-6.43378327635768,-5.379166666666662,0.18181818181818182,18,3,6,0,0,0,1,1,2,5,2,7,6,0,0,0,2,1.67444,67.63990000000003,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +14051,CC[C@@H](CO)NCCN[C@@H](CC)CO,1,8.158532927059714,-4.656539115646262,8.158532927059714,1.3562457482993198,0.3896708755641931,204.31400000000022,180.12199999999999,204.183778008,86,0,0.21011803098090132,-0.394756541371097,0.394756541371097,0.21011803098090132,1.2857142857142858,1.7857142857142858,2.142857142857143,7.545004142984014,769.0382609460672,31.568914100752345,30.710923771927643,6.710923771927642,16.180721420318147,14.76359925339142,3.052675481463779,1.5985513362318475,1.5985513362318475,0.8155627610334515,0.8155627610334515,0.314379681079231,0.314379681079231,-0.16,11009673.449068818,1.6812290846587228,9.3971519262254,6.31745947791719,120.72066771376572,20.837243088791176,2.8236841566564013,0.0,2.8623993144652684,0.0,0.0,0.0,0.0,0.0,0.0,13.703784234591359,12.745849802658759,46.96164120405473,18.601004710513457,40.45647166227524,0.0,2.8623993144652684,10.619626706576751,0.0,38.48541897394941,26.11168985446447,0.0,0.0,0.0,10.619626706576751,0.0,0.0,0.0,51.22749048784344,0.0,0.0,53.86480516065456,0.0,2.8236841566564013,0.0,0.0,64.52,75.21673553499063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,33.10125459452606,183.18524826379124,0.0,0.0,4.347538700627174,0.0,0.0,-9.15999409486017,-8.792007983749059,-26.080784885809248,0.0,1.0,14,4,4,0,0,0,0,0,0,4,4,4,13,0,0,0,0,-0.292599999999999,58.33500000000005,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +104850,Cc1c(C(=O)NN2CCCCC2)nn(-c2ccc(Cl)cc2Cl)c1-c1ccc(Cl)cc1,0,14.149216847232715,-4.09549235060441,14.149216847232715,0.2586433138070041,0.5208402471010894,463.7959999999999,442.62800000000027,462.07809433200055,156,0,0.2858725045591593,-0.2833570903546849,0.2858725045591593,0.2833570903546849,1.1333333333333333,1.8333333333333333,2.533333333333333,2.2270943043134186,1907.2941378806622,39.67676189578944,35.33099609149138,16.598782929546744,22.77739188165435,18.209925236745605,8.896605060273329,5.340133262672221,6.474026681699902,3.4885593697438906,4.140021504730583,2.286980083213024,2.793364740864435,-2.0499999999999985,20734767063.197556,7.521911986890484,8.982021737166871,4.348415570798966,219.61517842633043,0.0,0.0,7.105770073176662,0.0,5.907179729351506,0.0,10.213353330464251,9.690715459099717,5.098681808301038,0.0,53.26058198735352,49.80983545827091,51.98575020972144,25.999257476464887,33.621550385804426,40.70999940004906,0.0,20.208213413793185,0.0,25.970666821283817,12.99371936863189,68.62221038141249,0.0,16.944765761229018,5.418816146392429,0.0,0.0,34.802819670697545,33.69029636538415,0.0,6.851892117295679,62.58586249800988,42.29693095364306,16.479742019552177,16.944765761229018,0.0,50.160000000000004,140.8662707322557,4.794537184071822,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,5.098681808301038,63.62983287243021,173.84475527615461,18.196345792021937,14.149216847232715,0.817700771788314,-6.693719767527716,-2.1657728472047255,-6.7634202381533495,-12.025121525029299,-11.859984309282503,0.0,0.2727272727272727,30,1,5,0,1,1,2,1,3,4,1,8,5,0,1,1,4,5.938620000000005,121.65719999999999,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +150310,COC(=O)[C@@H]1CC2=CC(=O)CC[C@]2(C)[C@@]23O[C@@H]2C[C@@]2(C)[C@@H](CC[C@@]24CCC(=O)O4)[C@H]13,0,14.518546443268665,-5.681118787792896,14.518546443268665,2.3550295759118365,0.4843337144772066,414.49799999999965,384.2580000000002,414.2042386800008,162,0,0.3088869511033921,-0.46877442517408435,0.46877442517408435,0.3088869511033921,1.3333333333333333,2.2333333333333334,2.966666666666667,2.1090730552214008,2100.5572890266058,47.50807168950777,44.44948974278318,14.449489742783179,25.90015355970006,23.337117307087382,8.337117307087384,7.026721901138084,7.026721901138084,5.591326495188781,5.591326495188781,4.190337980315531,4.190337980315531,-1.69,531979322051.8117,5.2679135902416565,5.560032286231982,1.9357477339924563,218.3826466992781,14.210588861400147,11.202101621967376,5.783244946364939,0.0,0.0,11.938610575903699,14.383611552215466,0.0,0.0,0.0,19.276888764660626,50.18357883937492,63.73875233107097,25.865720952046754,69.71695709872226,17.72185552226864,0.0,0.0,28.51185399488279,81.96930309414375,7.037952458882589,11.625176276104835,0.0,0.0,0.0,0.0,0.0,0.0,42.041927630068585,28.59420041361561,28.51185399488279,105.80994013033286,11.625176276104835,0.0,0.0,0.0,82.2,146.86614134628263,28.091197113917662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,36.888897031004504,282.02079997904895,0.0,41.459433295339196,0.0,-23.345331777000933,-25.154937104458668,-2.3550295759118365,-44.67316301923154,-10.073863509910142,-4.294574954541816,0.7916666666666666,30,0,6,4,2,6,0,0,0,6,0,6,4,3,2,5,6,3.124500000000002,105.15300000000008,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,2,3,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4369359,N[C@@H](CC(=O)N1CCn2c(nnc2C(F)(F)F)C1)Cc1cc(F)c(F)cc1F,0,14.872780800479354,-5.589256783316635,14.872780800479354,0.7086684739123799,0.6216377742511342,407.3179999999998,392.1980000000001,407.1180794200004,152,0,0.45121913633558036,-0.3333048742645144,0.45121913633558036,0.3333048742645144,1.3214285714285714,2.0357142857142856,2.7142857142857144,2.363138063198131,1469.7775617070918,33.842416792648606,27.912103106019018,12.912103106019016,18.99469981120324,14.194905935009341,6.800478744009424,4.821909326089804,4.821909326089804,2.9402658159038397,2.9402658159038397,1.8018828114707601,1.8018828114707601,-2.6299999999999994,415837696.9831557,8.39294926033729,7.414058798688895,4.105785673487758,175.67421417692307,15.186726354368105,8.640904997702297,17.45884618009172,11.731584227351433,0.0,6.176298517443475,4.794537184071822,13.171245143024459,13.171245143024459,10.197363616602075,0.0,17.97879510068967,38.280748226825324,17.462928133677703,51.78057285699004,5.907179729351506,0.0,19.66437299524391,5.719716975726273,37.93376015708377,6.496859684315945,46.74876042616112,0.0,0.0,5.719716975726273,26.34249028604892,0.0,0.0,38.086304877261,30.337479971476565,17.451662523137685,41.40504661923911,12.08483741532659,2.8236841566564013,0.0,0.0,77.04,112.27328635128046,31.137027470120742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.197363616602075,20.64354538686926,202.0295104106277,0.0,12.50883856397497,5.392057596020681,-3.481505745261833,-14.173969278893331,-8.864585704185966,-14.912036603546179,-12.748309238736054,0.0,0.4375,28,2,6,0,1,1,1,1,2,5,1,12,5,0,0,0,3,2.0164999999999997,83.05340000000001,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,4,0,1,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5381,CCOC(=O)c1ccc(C#Cc2ccc3c(c2)C(C)(C)CCS3)nc1,0,12.442678474199003,-3.863954236482746,12.442678474199003,0.06538288105312295,0.5925551443407949,351.4709999999996,330.303,351.1292999120006,128,0,0.3391890154023288,-0.46235072132365623,0.46235072132365623,0.3391890154023288,1.48,2.4,3.24,2.345510053780071,1664.5351680878732,35.96373713620825,33.171958466891546,12.988455047819274,20.403390209558587,16.967834321659616,7.284330902587342,4.472043509761018,5.288540090688744,2.783882034732908,3.498316543044668,1.677829372186661,2.39226388049842,-2.2499999999999996,1152156713.9034245,5.141830153184628,7.327289843024109,4.053323479351429,182.2535185472435,4.736862953800049,5.693927994848461,0.0,0.0,0.0,5.969305287951849,0.0,9.77851570501903,0.0,11.761884949391115,19.624218553447005,66.0407437220411,34.45169140824239,23.08850518397504,38.3173298174465,17.731190237342965,0.0,4.9839785209472085,0.0,37.239075198130976,12.263942128066446,58.769271219070674,0.0,11.840868637711289,0.0,0.0,0.0,11.761884949391115,23.2172259369655,10.15185342319683,11.840868637711289,82.89335058680227,41.280472224649,0.0,0.0,0.0,39.19,114.24159383321995,4.794537184071822,0.0,11.761884949391115,0.0,0.0,0.0,0.0,0.0,21.561710112458545,28.785929679574615,172.22112197659834,-0.06538288105312295,15.198196285605317,0.0,-10.914897518625937,2.449440521368592,-5.205203569834616,-4.864250137237701,-14.735691343487515,0.0,0.3333333333333333,25,0,3,0,1,1,1,1,2,4,0,4,5,0,0,0,3,4.431500000000004,100.98250000000004,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +10218765,NC(=O)c1ccc(CNC(=O)NC[C@H]2CN(Cc3ccc(Cl)c(Cl)c3)CCO2)cc1,0,13.403156028892411,-4.581274793437673,13.403156028892411,0.6278930217726133,0.6034005212712481,451.35399999999976,427.1620000000002,450.12254598800064,160,0,0.3146494487762987,-0.373717188539552,0.373717188539552,0.3146494487762987,1.3,2.066666666666667,2.8333333333333335,2.2535042361109014,1857.1756909285846,42.59941162659982,38.269528199409876,15.781386091446787,23.97142009452796,19.272169817936618,8.239244381955242,4.866973502466526,5.62290244848498,2.82749662705255,3.491175385776063,1.6140089976626213,1.850236793293388,-2.319999999999999,41444244032.2955,6.837742186962093,10.631975705049555,6.600611793079281,218.96123435237197,21.076206636103073,0.0,5.6473683133128025,5.907179729351506,0.0,6.031114512338072,9.694446914922299,4.794537184071822,0.0,0.0,41.32913590345492,35.29657781404717,46.27230125029806,41.87488968373203,47.38847675866092,35.14017402215461,0.0,15.519536437427229,5.719716975726273,19.07373739558188,26.049564295864126,69.0325520562167,0.0,0.0,16.339343682303024,4.794537184071822,0.0,23.20187978046503,48.96778629535416,17.73058232243194,0.0,48.90006278256725,42.29693095364306,15.692634940795456,0.0,0.0,96.69,147.33340140250584,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,56.26441921718228,201.728772960444,11.707525832828935,24.71917060601617,-3.8660527779952014,-4.783523103201477,-1.716852805859035,-11.884177920026229,-4.581274793437673,-25.518032443213897,0.0,0.3333333333333333,30,4,7,0,1,1,2,0,2,4,3,9,7,0,1,1,3,2.7925000000000013,116.6773,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +69085357,O=C1COC2(CCN(S(=O)(=O)c3ccc(-c4ccc5cccnc5c4)cc3)CC2)CN1C1CC1,0,14.60355937354808,-6.637206396122112,14.60355937354808,0.6070243041428804,0.5751649430894352,477.5859999999998,450.3700000000003,477.1722273440008,176,0,0.2484472406625991,-0.3632330184658223,0.3632330184658223,0.2484472406625991,1.088235294117647,1.8235294117647058,2.5588235294117645,1.6332604596674258,2562.7884580719438,47.30651840778636,43.38288223881919,17.199378819746915,27.061848932030518,22.64765168434597,10.587715013146607,6.630671783758319,8.354201125548606,4.445327373947201,5.828649807017607,2.755647021249032,3.62988242361929,-2.8099999999999996,1762007230382.8953,7.119424521223657,8.14729119425198,3.893159213587926,236.87639370292106,9.636772684650527,6.558985242916289,0.0,15.930470882759089,0.0,0.0,9.77851570501903,8.417796984328938,4.305215991296234,0.0,30.212093538316473,60.788277419364675,47.01983393630376,43.07147303098699,54.9596781387968,26.833395814840145,0.0,14.18910424309392,0.0,42.00612636016862,26.049564295864123,60.55466357978441,0.0,11.126902983393991,0.0,0.0,0.0,0.0,66.18258853197182,19.554691291279454,0.0,62.502180621913524,65.45014705530218,0.0,22.029827915475046,0.0,79.80999999999999,175.77577875619806,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,41.74734397039601,262.0336086393748,0.0,14.102683687667263,-0.6070243041428804,-7.689441745429424,-2.4697237181858727,-15.215459861525233,-18.046767459288166,-18.887335509014985,-6.637206396122112,0.38461538461538464,34,0,7,1,2,3,2,1,3,5,0,8,4,1,2,3,6,3.4463000000000017,128.58980000000003,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0 +60834,CNCC[C@H](Oc1cccc2ccccc12)c1cccs1,0,9.03160478080121,-3.9985945767195794,9.03160478080121,0.11695950911228659,0.7159243797705693,297.42299999999955,278.2709999999999,297.11873522800056,108,0,0.1340443301101899,-0.48420047621577944,0.48420047621577944,0.1340443301101899,1.3333333333333333,2.238095238095238,3.0952380952380953,2.5299090353024307,1505.995164211918,31.07446760021749,29.263710176427686,11.08020675735541,17.961843293521856,14.960923771927643,6.330206757355411,3.517165451293671,4.333662032221397,2.2939356101613995,2.9896413791905276,1.4629815387213552,1.9545631625185516,-1.8399999999999992,155584083.73488107,3.917777654322947,6.74349609375,3.25673052665814,155.68619713383575,10.046676307088426,13.241371938562095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.336785877934737,42.29693095364306,36.29986262405718,26.23160620268701,15.078344117872419,30.822359043192204,22.10923430686433,0.0,5.309813353288376,0.0,12.452942928279366,13.47268658459819,64.61502997233855,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,11.336785877934737,13.47268658459819,0.0,0.0,42.00374413304465,59.73788277863725,1.4118420783282006,10.772448428929591,0.0,21.259999999999998,112.372433100718,0.0,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,0.0,30.822359043192204,158.98219747605324,0.11695950911228659,-0.9674225770555134,-2.8763615807893395,0.0,-1.1028236016628872,-8.247333579820049,-7.699913194444449,-7.538635784726609,0.0,0.2222222222222222,21,1,2,0,0,0,2,1,3,3,1,3,7,0,0,0,3,4.630900000000003,90.17970000000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +134044,C[C@H](CCc1ccccc1)NC[C@H](O)c1ccc(O)c(C(N)=O)c1,0,12.518978860241244,-4.669703640715547,12.518978860241244,0.7218742990010787,0.5968389616111595,328.4119999999995,304.21999999999997,328.1786926280007,128,0,0.2931306875776969,-0.5071215315892779,0.5071215315892779,0.2931306875776969,1.5416666666666667,2.4166666666666665,3.125,3.0985680047893402,1583.5163408800147,38.07446760021749,35.619172062391506,11.619172062391506,21.42558567875166,17.69133019637333,6.033192828945732,3.910614450372304,3.910614450372304,2.294172696677107,2.294172696677107,1.283627636184772,1.283627636184772,-2.37,3034252383.527032,4.233739616067628,8.47316831573415,5.077760022698596,175.74963702839074,21.24714671122907,7.161353911612106,2.8236841566564013,1.4311996572326342,7.33837938658414,0.0,4.794537184071822,0.0,0.0,0.0,36.25451224597977,42.809482318675016,26.222337714367786,23.98029652417896,45.29209236850504,5.907179729351506,2.8623993144652684,5.309813353288376,5.719716975726273,31.695652415254074,6.496859684315945,65.02970413639734,0.0,5.749511833283905,11.029530329014648,0.0,5.749511833283905,0.0,31.50194757869679,6.372924901329379,0.0,66.83413927197208,48.33934966130636,4.235526234984602,0.0,0.0,95.57999999999998,125.90843812761742,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,33.142338116684044,193.74197407402627,0.0,12.518978860241244,6.948621352506901,-5.390321163602275,-3.1597677069980814,-15.577115201386992,-13.000832476681378,-8.914871071438988,0.0,0.3157894736842105,24,5,5,0,0,0,2,0,2,4,4,5,11,0,0,0,2,2.1353999999999997,93.81220000000003,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +4456,CN(C)C(=O)Oc1cccc([N+](C)(C)C)c1,0,12.42884341931217,-4.052800217309146,12.42884341931217,0.7538068074452018,0.7170811018086075,223.29600000000013,204.14399999999995,223.14410426809,88,0,0.41420528734389944,-0.4099804350147414,0.41420528734389944,0.4099804350147414,1.4375,2.1875,2.8125,4.170910912726844,932.6945915264716,28.325908934703556,26.710923771927643,7.710923771927643,15.152606663993629,13.177620019945648,3.677620019945648,2.5519311246411713,2.5519311246411713,1.2962221396923757,1.2962221396923757,0.6689444031795212,0.6689444031795212,-1.5499999999999998,3846231.2534570354,2.3362546111032905,4.531128661548242,3.2385278346833593,123.3202014656177,9.636772684650527,11.436898107967467,0.0,0.0,0.0,6.093240070938415,4.483030857694624,4.794537184071822,0.0,0.0,6.042418707663295,12.08483741532659,28.218623845249105,38.74734193105961,35.57581270510605,11.780626345621977,0.0,9.382940588545102,0.0,0.0,34.87913450141123,24.16967483065318,0.0,5.749511833283905,9.219893811494673,10.481923458755384,5.749511833283905,0.0,45.87228430320012,0.0,0.0,26.044412567234176,24.16967483065318,0.0,0.0,0.0,29.540000000000003,85.96188809951539,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,26.044412567234176,145.993366244646,0.0,11.675036611866968,0.0,-1.6776691232048375,-1.523379629629629,-5.836427705341395,-2.231637377173093,-19.48262235449735,0.0,0.4166666666666667,16,0,4,0,0,0,1,0,1,2,0,4,7,0,0,0,1,1.9437,65.71900000000004,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2719,CCN(CC)CCCC(C)Nc1ccnc2cc(Cl)ccc12,0,8.83482952080009,-4.907005451100197,8.83482952080009,0.7365040240628191,0.75641175721287,319.87999999999954,293.672,319.1815255120007,120,0,0.16034940835941636,-0.3819987587014788,0.3819987587014788,0.16034940835941636,1.5,2.3636363636363638,3.1363636363636362,3.1846024823003587,1549.6563698719608,38.55795974227244,36.7196052595091,11.475534205527557,20.84598233696769,18.451443416254428,5.882194293763694,3.4910332196294567,3.8689976926386844,2.136828505877192,2.3258107423818055,1.2792973579005458,1.4160461888892784,-1.3199999999999998,1514220887.37207,3.5231264357461374,8.348732456831405,4.586608819803334,174.81744637904256,10.209723084138854,0.0,1.4118420783282006,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,25.304724124823874,63.25799580355545,54.33144404928832,13.741252054637581,35.6808059825837,28.191251096997135,0.0,9.883888251797686,0.0,39.31941862289544,24.800392406236213,35.36520335520927,0.0,0.0,5.309813353288376,5.687386274683562,0.0,11.600939890232516,35.392359773095166,0.0,0.0,67.57049005880135,30.34257004146794,6.434475392069527,10.902924932081056,0.0,28.16,120.975235321956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,47.281745872816245,210.4825316742084,5.8704181468921055,2.275554985036284,-2.5056598345989505,-2.2393600100546793,0.0,-8.920675830992945,-10.946119785466907,-26.65557823391225,0.0,0.5,22,1,3,0,0,0,1,1,2,3,1,4,11,0,0,0,2,4.810600000000004,96.85970000000006,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +54692271,CN(C)C(=O)c1c2c(c(O)c(=O)n1C)C(=O)N(Cc1ccc(F)c(Cl)c1)CC2,0,14.309186461586997,-4.251378377739985,14.309186461586997,0.6905325249679515,0.840402134108812,407.8289999999997,388.6770000000001,407.10481198800056,148,0,0.2933810813932513,-0.5024563198468017,0.5024563198468017,0.2933810813932513,1.5357142857142858,2.3214285714285716,3.0,2.6776725819319003,1707.7737485801965,36.944711088220565,32.23056289437378,13.986491840392237,20.838216500664444,16.365170524150628,7.334886706695992,5.075990496841474,5.453954969850701,3.3984368654659525,3.6588476733991375,2.1769142931927288,2.3186509705711886,-2.869999999999999,1688768845.1571743,6.876068954037989,7.273202330178612,3.2398335813486328,191.88020133860408,19.475727300599523,11.511148835894357,5.749511833283905,0.0,18.804826010987654,0.0,14.383611552215466,4.39041504767482,0.0,0.0,17.643358597895812,24.021213808352964,57.304512791388525,17.43987758628942,43.76195161798966,23.415299348935527,1.4311996572326342,14.366919109492311,6.975826900282246,12.869784585645323,20.448513484880436,61.70519682684038,0.0,5.749511833283905,5.559266895052007,4.39041504767482,5.749511833283905,11.600939890232516,53.1697999014156,19.84561148592757,5.817220841045895,56.6470108491471,22.921793307061705,5.022633313741326,0.0,0.0,82.85000000000001,129.13557501505582,18.774026599890284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,37.70579355852912,165.0275014195446,5.657044007286026,39.55103218482835,2.813585194789371,-9.308680949593047,-8.207231711087584,-4.341081453614199,-4.198690358087679,-20.215700556288084,0.0,0.3157894736842105,28,1,7,0,1,1,1,1,2,5,1,9,7,0,0,0,3,1.7836999999999998,101.2198,0,0,0,0,0,1,0,1,0,0,2,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3366,Nc1[nH]c(=O)ncc1F,0,12.881851851851852,-1.3475925925925927,12.881851851851852,0.06212962962962987,0.4952172017431901,129.094,125.062,129.033839968,48,0,0.346113544050214,-0.3826587002321453,0.3826587002321453,0.346113544050214,2.2222222222222223,3.0,3.6666666666666665,3.559223966507291,391.7109084936396,10.171208396324303,8.127853549972965,4.127853549972964,5.947264862732149,3.8527811569863135,2.01114037048644,1.2555734167146164,1.2555734167146164,0.647568728314279,0.647568728314279,0.3115760529308755,0.3115760529308755,-1.39,601.784616905543,2.46673863675987,1.8479763724759515,1.0421707281064696,55.33169917875897,5.719716975726273,5.817862777835028,10.052747076030498,0.0,0.0,5.689743398203474,4.977003270229252,9.184952231746642,4.9839785209472085,0.0,0.0,0.0,0.0,7.543653766984981,9.996699838829642,5.817862777835028,0.0,9.960981791176462,0.0,0.0,5.719716975726273,22.474396634135953,0.0,0.0,11.409460373929747,10.208277825509848,0.0,0.0,9.960981791176462,0.0,5.817220841045895,1.3707585561702202,10.967432394886583,4.235526234984602,0.0,0.0,71.77000000000001,23.497722227899157,9.184952231746642,0.0,10.696720245955525,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,5.606284791154822,39.92259259259259,0.0,13.47351851851852,0.0,-1.4633333333333332,-2.2874074074074073,0.0,-0.9787037037037034,0.0,0.0,0.0,9,3,4,0,0,0,0,1,1,3,2,5,1,0,0,0,1,-0.5088000000000001,29.228100000000005,0,0,0,1,0,2,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +24803511,COc1ccc(N2C[C@H](C)N[C@H](C)C2)cc1NS(=O)(=O)c1ccc(-c2ccc(C)o2)c(F)c1,0,16.040141023303622,-6.33585011705299,16.040141023303622,0.8257414060478361,0.5525458967367551,473.56999999999977,445.3460000000003,473.17845559600073,176,0,0.261622983956657,-0.49455584305696076,0.49455584305696076,0.261622983956657,1.303030303030303,2.121212121212121,2.8181818181818183,2.1953030960871756,2341.179998391999,47.883868676975986,43.76084671182842,16.577343292756144,26.949877165234444,22.211578459332447,9.757214597133174,5.841203979659812,7.382159135615045,3.6649653202343697,4.807929461887256,2.3375901385055533,3.1963820850738007,-3.039999999999999,927982392283.917,6.76159271429654,9.070433262542782,4.988228056977844,232.60832838878844,19.36373697499225,24.499069590406883,1.4118420783282006,0.0,10.023291153407584,0.0,4.715119613734132,12.808212032003757,0.0,0.0,0.0,68.89502601319339,45.795234697887196,43.745652043334246,60.42563253993932,21.398063702774706,0.0,5.309813353288376,0.0,37.4869447641041,29.646701172099085,59.916817921226695,0.0,17.07321074385534,19.661705651673035,15.765187597041944,5.749511833283905,0.0,40.4852537485427,10.023291153407584,12.669112958341575,55.10375411389157,57.65198407387748,2.8236841566564013,11.323698910571437,0.0,83.81,170.8315516573483,8.417796984328938,4.39041504767482,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,42.880557554135486,281.52145060106903,0.0,-2.8490032149610247,-1.0386913670759097,-5.398881586938878,-6.466105533636113,-22.2827593882293,0.0,-20.728884374989082,-10.173791801905443,0.3333333333333333,33,2,7,0,1,1,2,1,3,6,2,9,10,0,1,1,4,4.390120000000003,126.91420000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,2,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +6918428,O=C(Nc1c(Cl)cncc1Cl)C(=O)c1cn(Cc2ccc(F)cc2)c2ccc(O)cc12,0,14.28649295285404,-3.4851148031845645,14.28649295285404,0.11277753282382896,0.32369639755245316,458.276,444.16400000000027,457.03962488800033,156,0,0.2964292569481021,-0.5079411666107206,0.5079411666107206,0.2964292569481021,1.2258064516129032,1.935483870967742,2.6129032258064515,2.125611238800417,1935.7647487927397,34.1932697537345,28.700279076919145,16.212136968956052,20.746806228801784,14.850028615423309,8.750495675477943,5.6087917497610515,6.364720695779506,3.6436645145117934,4.170708452907812,2.3535433953276623,2.759922507382816,-3.419999999999999,3067492243.523807,9.804469204726395,8.371579680625574,4.234862993461876,205.21438418040228,14.985721192186944,11.5667326743298,1.4118420783282006,0.0,13.121624332949079,0.0,14.573052889090853,4.39041504767482,0.0,0.0,35.286717195791624,35.77554503001347,35.91847024884128,37.74520706790586,36.94924235929652,51.482615662946095,1.4311996572326342,9.551078168738563,0.0,6.496859684315945,5.309813353288376,87.8050070380099,0.0,5.749511833283905,5.309813353288376,10.077801322358383,5.749511833283905,23.20187978046503,27.781510692794857,11.291396868387768,5.817220841045895,32.37054284150845,60.815616586087344,11.457108705810853,10.902924932081056,0.0,84.22,128.3321144380908,13.979489415818463,0.0,9.87691300107973,0.0,0.0,0.0,0.0,0.0,10.092786712054421,42.49402419006852,128.40728252625013,11.895857923774635,30.384407108938664,1.588757110986964,-4.185385411923243,-6.377073962326488,-8.291959684218858,-2.964548586075047,-3.4851148031845645,0.0,0.045454545454545456,31,2,6,0,0,0,2,2,4,5,2,9,6,0,0,0,4,5.057500000000003,116.322,0,0,0,0,0,2,0,1,0,0,2,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2179,COc1cc(NS(C)(=O)=O)ccc1Nc1c2ccccc2nc2ccccc12,0,12.553892146553043,-5.689777362702092,12.553892146553043,0.0032096797052152404,0.48770792549107883,393.4679999999998,374.31600000000014,393.11471246800056,142,0,0.22932097980134866,-0.49449913226138903,0.49449913226138903,0.22932097980134866,1.0357142857142858,1.7142857142857142,2.357142857142857,2.3025555672156917,2040.21449893153,36.03856921535524,32.474633948355326,14.291130529283054,21.289193562711485,16.640741134613997,8.68637727241472,5.0891804370934555,6.221887302584826,3.3160713179418635,3.739003795194432,2.2741789749090424,2.6058243592440844,-3.319999999999999,4269079785.8475246,6.351069374963746,7.011523240777923,3.565369903713245,189.58595685557424,10.046676307088426,5.749511833283905,2.8236841566564013,10.023291153407584,0.0,0.0,4.715119613734132,13.401775505276145,0.0,0.0,36.25451224597977,24.16967483065318,20.927142805103546,60.508056605665374,39.281239549679135,48.89129984162038,0.0,4.9839785209472085,0.0,0.0,23.246809527021554,66.46660578429623,0.0,5.749511833283905,14.761795920822557,17.062158824050687,5.749511833283905,0.0,26.62365206527519,10.023291153407584,0.0,23.302895454893736,66.46660578429623,2.8236841566564013,21.805849864162113,0.0,80.32,139.04441363293375,8.417796984328938,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,30.863442565350184,182.4561153084581,0.0,4.0404549947856285,-1.3634572324938024,-4.80342071823245,-1.3946514655244824,-11.181547683980703,-3.9283809005619332,0.0,-9.24177896911703,0.09523809523809523,28,2,6,0,0,0,3,1,4,5,2,7,7,0,0,0,4,4.511700000000003,113.99220000000003,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0 +6918602,CC(C)C[C@H](NC(=O)c1cc2ccccc2o1)C(=O)N[C@H]1CC[C@@H](C)N(S(=O)(=O)c2ccccn2)CC1=O,0,14.917278896844849,-6.907182897986598,14.917278896844849,1.032089739613799,0.4479073760707015,540.6420000000013,508.3860000000003,540.2042557440009,202,0,0.28718471648608423,-0.45091908254962576,0.45091908254962576,0.28718471648608423,1.3421052631578947,2.1315789473684212,2.9210526315789473,2.237926224987746,2829.840247890811,55.38386867697599,50.14659241524687,18.963088996174598,30.81397314186354,25.423933963559726,10.969570101360448,6.504173513700291,8.206152896093705,4.0132041552059805,5.449805798504039,2.472269311597475,3.475310283131795,-3.5700000000000003,44697700608241.72,7.98206840649241,11.44301630481569,6.1065896922877,266.4675670501554,15.0367776436301,11.600912609991887,19.39313650056502,5.907179729351506,15.930470882759089,0.0,14.383611552215466,13.401775505276145,4.305215991296234,0.0,37.87345906524454,56.03429933730007,40.879907348522956,30.334613382878445,71.16500031536079,38.59013991458257,0.0,19.908821218820194,5.893957685363079,62.75408843959334,6.496859684315945,60.27249229099556,0.0,0.0,10.619626706576751,0.0,0.0,0.0,59.85513299100521,19.612365521551226,5.893957685363079,91.35199234392799,63.95535578784371,2.8236841566564013,10.969244356107037,0.0,138.68,188.93238071272359,22.8014085365444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,48.36359177881638,298.32151387139265,0.0,46.75209130167411,-6.680624732842244,-1.1246823322063915,-16.671441742664875,-27.273314856892792,-17.82985161167433,-19.75317366546635,-6.907182897986598,0.4074074074074074,38,2,10,0,1,1,1,2,3,7,2,11,11,0,1,1,4,2.8994000000000018,140.68569999999985,0,0,0,0,0,1,0,0,0,0,3,3,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0 +5665,C=CC(N)CCC(=O)O,0,11.121871220710506,-3.7300925925925936,11.121871220710506,0.7287013416477701,0.5386736295032681,129.15899999999996,118.07099999999998,129.078978592,52,0,0.3029124034897125,-0.4812295172961118,0.4812295172961118,0.3029124034897125,2.6666666666666665,3.5555555555555554,4.111111111111111,6.221735395266435,417.13641215966544,16.51650785794505,15.263710176427683,4.263710176427684,8.778815423905938,7.184530569677622,1.881855088213842,1.0110642763152438,1.0110642763152438,0.40136547149095525,0.40136547149095525,0.14148188602673026,0.14148188602673026,-0.8300000000000001,8434.206108092865,1.2721857107505123,4.0892660852838025,5.034193606854939,69.82746414133071,10.828525166833487,2.8236841566564013,0.0,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,6.531038962001867,6.052071746035566,6.372924901329379,17.873851594359902,5.483034224680881,23.69309798119719,5.969305287951849,1.4311996572326342,0.0,5.719716975726273,18.763742271008404,0.0,12.583110708037434,0.0,0.0,5.719716975726273,0.0,0.0,0.0,17.096005947408706,4.794537184071822,0.0,23.711918252020517,12.583110708037434,2.8236841566564013,1.4311996572326342,0.0,63.32000000000001,43.03587524272396,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,15.220952263250794,78.40386054421768,0.0,11.121871220710506,3.3171986016628874,-0.7287013416477701,-2.0367720143612997,-5.001916099773243,-7.398148148148149,-1.4273927626606195,0.0,0.5,9,3,3,0,0,0,0,0,0,3,2,3,5,0,0,0,0,0.36450000000000005,35.042199999999994,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4908,COc1cc(NC(C)CCCN)c2ncccc2c1,0,8.632986701625095,-4.3856646825396846,8.632986701625095,0.6546386054421771,0.8371289360458547,259.35300000000007,238.18499999999997,259.1684622920001,102,0,0.1604029244023991,-0.4966624448954453,0.4966624448954453,0.1604029244023991,1.7894736842105263,2.789473684210526,3.6315789473684212,3.1840255464403424,1303.6691969587453,31.765066523458984,30.24988907696374,9.249889076963738,17.607784018024827,15.117923065713633,4.776282279213758,3.0492202065977927,3.0492202065977927,1.9051496367943535,1.9051496367943535,1.2215680578117811,1.2215680578117811,-1.8099999999999996,68342265.34064686,2.933722605262304,6.38396738750566,3.351049863381168,143.20421682892498,15.766393282814699,8.573195989940306,1.4118420783282006,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,6.042418707663295,38.17943901959697,35.95625760682448,30.57886645671439,33.646043199848606,16.59031120676462,0.0,4.9839785209472085,5.719716975726273,25.615634388304084,18.84462549648691,30.34257004146794,0.0,5.749511833283905,15.766393282814699,5.687386274683562,5.749511833283905,0.0,24.536683132495387,0.0,0.0,44.27139593101842,30.34257004146794,4.235526234984602,10.902924932081056,0.0,60.17,102.86236994203372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.720841474747257,28.909180246048557,170.26140823085177,0.0,3.5689036517384727,-1.516875039367599,-3.2626030806415,-1.2477173485134794,-8.682139672163123,-9.648237270752606,-8.07802526918328,-3.394714201968669,0.4,19,3,4,0,0,0,1,1,2,4,2,4,9,0,0,0,2,2.782700000000001,79.66810000000002,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +54892,CCOC(=O)[C@H](CCc1ccccc1)N[C@@H](C)C(=O)N1Cc2ccccc2C[C@H]1C(=O)O,0,14.883802820797992,-5.395583112983235,14.883802820797992,1.2546233536546885,0.5844860779881329,438.52399999999966,408.2840000000002,438.2154720600008,170,0,0.3262779529412656,-0.4797031524929275,0.4797031524929275,0.3262779529412656,1.375,2.125,2.84375,2.6834464071073914,2195.1620193587696,49.229168138596734,45.43566864331923,15.435668643319232,27.35279493145415,22.948240746105306,8.092778860141486,5.314029054395829,5.314029054395829,3.343717636471304,3.343717636471304,2.0457863410304182,2.0457863410304182,-3.1899999999999995,1081387825499.2544,6.0255296686639594,10.906971069016844,5.733882354705077,230.2227966902332,14.745580875757739,13.447627015027491,0.0,5.907179729351506,1.4311996572326342,11.938610575903699,14.898887721432018,4.794537184071822,0.0,0.0,54.38176836896965,43.1399885123411,29.31888725968796,34.50901460998945,64.02236434821715,17.845790305255207,1.4311996572326342,10.209723084138854,0.0,57.37309602794437,6.558985242916289,71.07212284406064,0.0,0.0,5.309813353288376,0.0,0.0,0.0,52.46717087517812,38.363183992990216,0.0,75.14830318377791,54.38176836896965,1.4118420783282006,1.4311996572326342,0.0,95.94000000000001,163.05971750431542,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,41.224281308327,251.94892070773957,0.0,40.97706737142601,1.9358112892831119,-5.211648977392764,-9.247746693270699,-28.803904250973076,-14.088462151410706,-18.01003729540149,0.0,0.4,32,2,7,0,1,1,2,0,2,6,2,7,11,0,0,0,3,2.5671,119.90150000000007,1,0,0,0,0,0,0,0,1,1,3,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54840,CNCC[C@@H](Oc1ccccc1C)c1ccccc1,0,8.958050359032502,-4.257299343348454,8.958050359032502,0.8819735633450914,0.8489950317721322,255.36100000000013,234.19299999999993,255.162314292,100,0,0.12493636782365429,-0.4854164886189282,0.4854164886189282,0.12493636782365429,1.3157894736842106,2.1052631578947367,2.8947368421052633,3.210662546766787,1301.6662744776727,31.712660280651686,30.35546188596382,9.355461885963821,17.690004911332647,15.30267548146378,4.8554618859638214,2.983917160829808,2.983917160829808,1.8096137619548185,1.8096137619548185,1.0609407268227569,1.0609407268227569,-1.7999999999999994,77248580.29056032,2.9375572678050803,6.953864447086801,3.831122161756427,144.5390524464213,10.046676307088426,13.241371938562095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.33934966130636,37.493900392951154,20.080510463031576,13.7075855617022,33.56387615553265,0.0,0.0,5.309813353288376,0.0,19.304835045575047,13.47268658459819,65.50867135236365,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,13.47268658459819,0.0,6.851892117295679,50.995017035077794,54.38176836896965,1.4118420783282006,0.0,0.0,21.259999999999998,109.3455181691092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.56387615553265,172.4139744075686,0.0,0.0,-0.8819735633450914,-2.7984964070504743,-1.4602773053665914,-10.901616629472418,-8.347834585222984,-11.273775917111056,0.0,0.29411764705882354,19,1,2,0,0,0,2,0,2,2,1,2,8,0,0,0,2,3.7246200000000034,79.53370000000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9931156,OCC(CO)n1cnc(-c2ccc(F)cc2)c1-c1ccnc(Oc2ccccc2)n1,0,14.53081058551902,-3.979501911161365,14.53081058551902,0.08827684354019105,0.4882475049334616,406.4169999999998,387.26500000000016,406.14411868800056,152,0,0.32202897203761344,-0.4242934275786874,0.4242934275786874,0.32202897203761344,1.1,1.8666666666666667,2.6,2.245256460660261,1935.4027098130252,37.28964607091181,33.39156372640065,14.391563726400648,22.514868634663838,17.084436578109877,7.767939997182151,5.1339177685443405,5.1339177685443405,3.3859743030401757,3.3859743030401757,2.2067427108698587,2.2067427108698587,-3.619999999999999,17825987072.280277,7.259827451170723,8.81004339648955,4.047637651602248,198.51091608759603,19.521578983805828,12.937491230500019,0.0,2.8623993144652684,0.0,6.010464839586836,0.0,14.358372089569237,4.9839785209472085,0.0,18.127256122989884,42.29693095364306,11.736346702511756,64.4531555514174,42.64778983858305,0.0,2.8623993144652684,19.51903521063298,0.0,6.017892468349645,13.117970485832577,78.71767484245984,0.0,34.40521214911312,4.736862953800049,4.39041504767482,11.759976672870742,0.0,45.71702139314525,0.0,5.817220841045895,29.32078792324338,72.90045400141395,0.0,22.64523547624238,0.0,93.29,132.25874994575523,4.39041504767482,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,25.16955194505605,30.902157723159053,173.43859019737693,0.0,11.163648414459647,7.931566382030152,-4.2475088361280635,-2.5283860756752796,-15.479215454974911,-2.5073987408962157,-7.854629219525615,0.0,0.13636363636363635,30,2,7,0,0,0,2,2,4,7,2,8,9,0,0,0,4,3.4642000000000017,108.37159999999999,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4507,CCOC(=O)C1=C(C)NC(C)=C(C(=O)OC)C1c1cccc([N+](=O)[O-])c1,0,13.63820904982363,-4.266189058956916,13.63820904982363,0.6879777651801455,0.4882471812012686,360.3659999999997,340.2060000000001,360.1321363600005,138,0,0.3362394029534943,-0.4655800563752146,0.4655800563752146,0.3362394029534943,1.4230769230769231,2.1538461538461537,2.769230769230769,3.509243157899468,1552.2176886876737,36.49711733102786,32.34391693378309,12.343916933783095,20.246464791128307,16.207927231811595,6.260713636311638,4.2958347521884015,4.2958347521884015,2.886265912931147,2.886265912931147,1.931434073567453,1.931434073567453,-3.1599999999999997,700229132.2332374,5.668397224146197,7.814330414517536,3.5842534199841163,178.3361104751622,14.783539260888475,0.0,1.4118420783282006,0.0,5.687386274683562,11.938610575903699,10.114318268765572,9.589074368143644,0.0,0.0,12.08483741532659,26.11912784358403,37.186501603140464,47.897242501650176,51.44236597012383,17.62599685058726,0.0,5.309813353288376,0.0,26.449634037250114,13.596937701798877,62.38773227736595,0.0,0.0,5.309813353288376,5.687386274683562,0.0,0.0,30.458859326520248,19.06280027574374,10.114318268765572,58.05749809618135,46.70996251690338,1.4118420783282006,0.0,0.0,107.77000000000001,120.17910700034267,21.074151193079437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,26.08549608939216,165.16567250779894,0.0,37.36416979264922,11.120982560609184,-11.59992783919123,-9.320595277462836,-6.451816412553696,0.0,-15.941549482338859,-3.8369358495107058,0.3333333333333333,26,1,8,0,1,1,1,0,1,7,1,8,9,0,0,0,2,2.5657000000000005,93.02210000000004,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54697325,CN(C)c1cc(CNCC(C)(C)C)c(O)c2c1C[C@H]1C[C@H]3[C@H](N(C)C)C(=O)C(C(N)=O)=C(O)[C@@]3(O)C(=O)C1=C2O,0,15.866577774568682,-5.48014245832631,15.866577774568682,1.0826643036364727,0.27884940912752315,556.6600000000019,516.3400000000004,556.289699620001,218,0,0.29314859580456526,-0.5077369129906837,0.5077369129906837,0.29314859580456526,1.375,2.2,2.825,2.665622896156771,2722.673823075808,63.643381700969826,59.14659241524687,19.146592415246875,35.117620687457666,29.665964144728655,10.191330196373332,8.085403693790898,8.085403693790898,5.565491874554045,5.565491874554045,3.947338893149939,3.947338893149939,-3.4100000000000006,1513817062134506.5,7.316466292153365,9.898145880563256,4.455656220537384,290.21896469154245,36.364672824293976,24.252788184993722,14.20797991400503,7.214444603597573,10.200778701049408,0.0,19.28352128306594,0.0,0.0,0.0,20.555676351887037,49.61232195734339,92.15678839228605,14.32286107238708,84.2894029052462,28.92022076842112,5.724798628930537,10.209723084138854,22.92262281584921,51.41732911819507,39.300077016295404,39.638147114548985,0.0,5.749511833283905,15.929440059865128,5.687386274683562,5.749511833283905,0.0,91.69032199660427,27.253396137860786,17.202905840122938,88.85398808192464,22.947792639458008,4.235526234984602,8.621564186121445,0.0,176.66,198.1576317507325,20.555142817505402,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,20.43523276442885,44.22928876817064,339.9851770451038,0.0,41.85694268899377,16.21656000727831,-25.727308839997868,-26.51972957159215,-7.826335567384347,-10.540194755344714,-42.77844434039021,0.0,0.5517241379310345,40,7,11,3,0,3,1,0,1,10,6,11,14,1,0,1,4,1.1657000000000024,149.73329999999996,0,3,2,0,0,0,0,1,0,0,3,3,0,0,0,2,1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +5284583,CC[C@@H](C(N)=O)N1CCCC1=O,0,12.313039965986391,-4.18101851851852,12.313039965986391,0.8008101851851852,0.6410492145588488,170.21200000000013,156.1,170.105527688,68,0,0.23971775495040148,-0.367882042868755,0.367882042868755,0.23971775495040148,2.25,3.0833333333333335,3.5833333333333335,3.92332091742786,626.9265389921898,21.309401076758505,19.710923771927643,5.710923771927642,11.130768281804421,9.697102672463696,2.802675481463779,1.781125522066903,1.781125522066903,1.0848131052421945,1.0848131052421945,0.606451798517356,0.606451798517356,-1.06,101288.87556570301,1.7377895947869104,3.559264205416041,1.571153344803631,91.49648350920621,10.619626706576751,6.017892468349645,2.8236841566564013,11.814359458703011,0.0,0.0,9.589074368143644,0.0,0.0,0.0,6.851892117295679,12.745849802658759,27.94812870351774,1.3707585561702202,28.86186119884268,11.814359458703011,0.0,4.899909730850478,5.719716975726273,31.988559289633464,6.496859684315945,0.0,0.0,0.0,5.719716975726273,0.0,0.0,0.0,29.229021342219077,9.589074368143644,0.0,42.41976949532648,0.0,2.8236841566564013,0.0,0.0,63.400000000000006,60.919405139229156,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.27278683069904,104.05548422146637,0.0,23.680703420256986,0.0,-0.9549674036281175,-4.53224537037037,-4.18101851851852,-11.510815381708241,-7.72380763416478,0.0,0.75,12,2,4,0,1,1,0,0,0,2,1,4,4,0,1,1,1,-0.12729999999999997,44.22040000000001,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +130881,CCCc1nc(C(C)(C)O)c(C(=O)OCc2oc(=O)oc2C)n1Cc1ccc(-c2ccccc2-c2nn[nH]n2)cc1,1,14.706332205260999,-4.580149295502247,14.706332205260999,0.0711212627859068,0.23790758693150235,558.5950000000014,528.3550000000002,558.222682680001,212,0,0.5186358297976135,-0.45262646079650987,0.5186358297976135,0.45262646079650987,1.2439024390243902,2.073170731707317,2.7804878048780486,2.077955530228061,2968.1529653631583,54.85856017166415,49.63277131578292,19.63277131578292,31.821181859463696,25.357826777301053,10.502364891337233,7.317469900915734,7.317469900915734,4.720594267001116,4.720594267001116,3.1087333232815237,3.1087333232815237,-4.839999999999999,160547223881452.47,9.081278485143589,11.33623748019466,5.86940169902117,276.84525721061993,23.24707266680531,17.119383303832073,23.773408075513636,8.667446233560762,0.0,11.791687534207284,0.0,14.573052889090853,5.206409844936912,10.197363616602075,55.19124177860204,48.83234082396227,40.365372976065856,16.44910267404264,63.2675918541802,5.969305287951849,1.4311996572326342,30.168236725932417,0.0,58.81031401005738,0.0,93.25247590877638,0.0,22.514758973090913,5.822382246255434,0.0,0.0,0.0,42.67754986222411,29.76668359334535,6.851892117295679,104.40058482719702,61.96818871948487,1.4118420783282006,22.514758973090913,0.0,162.15999999999997,180.31941664359607,12.330591480484083,0.0,5.206409844936912,0.0,0.0,0.0,0.0,0.0,34.33783729841806,43.219627149786625,264.0338386228275,0.0,30.1945322521652,14.633399122416208,-13.84945270367711,-11.247794996886608,-10.629761504352812,-9.046517443845005,-25.504910015313957,0.0,0.3103448275862069,41,2,12,0,0,0,2,3,5,11,2,12,15,0,0,0,5,4.170020000000003,146.7189999999998,0,1,0,0,0,6,1,0,0,0,1,1,0,0,0,5,1,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2726,CN(C)CCCN1c2ccccc2Sc2ccc(Cl)cc21,0,8.812736678004535,-4.172417091836737,8.812736678004535,0.15948176492819388,0.7918053413291345,318.87299999999965,299.721,318.09574728800055,110,0,0.06609960132717434,-0.33955085067145824,0.33955085067145824,0.06609960132717434,1.2380952380952381,2.0476190476190474,2.9047619047619047,2.5209363934172093,1301.719185016912,31.290010549841313,29.18063995447301,11.753065481419187,17.756665939490652,14.93887131346835,6.633332367405305,3.6659333860843164,5.064518585253202,2.350257091508604,3.5383100947759982,1.5823116659684924,2.6052942114056012,-1.1599999999999997,99503433.82001969,4.222133856976077,6.304372410382191,3.203270439286252,161.94785983985685,9.799819461700956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.447662254950224,57.03353192452629,37.75956262313547,20.970082442558663,26.044412567234176,34.73759738899076,0.0,4.899909730850478,0.0,16.16389185236493,31.845282900046858,47.319564267384386,0.0,0.0,4.899909730850478,11.374772549367124,0.0,23.36282483962363,31.84528290004686,0.0,0.0,32.41733746856355,52.08789790467861,5.022633313741326,0.0,0.0,6.48,106.70351156916333,0.0,0.0,4.899909730850478,11.761884949391115,0.0,0.0,0.0,0.0,0.0,37.64535245746671,154.2876570816722,6.4857968755747875,-1.5758522210324444,-0.7179470584530103,-1.5724883471907267,0.0,-5.7770328477316495,-4.170092828798188,-15.765596209596488,0.0,0.29411764705882354,21,0,2,0,1,1,2,0,2,3,0,4,6,0,0,0,3,4.894400000000004,92.19400000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35455,CC(C)=CCC1C(=O)N(c2ccccc2)N(c2ccccc2)C1=O,0,14.025824672461574,-4.173642998866215,14.025824672461574,0.1955428004535147,0.6319230176826856,320.39199999999965,300.232,320.1524778800005,122,0,0.2586961759934042,-0.2716654416051821,0.2716654416051821,0.2586961759934042,1.0833333333333333,1.5416666666666667,1.9583333333333333,2.591257557253052,1480.0456911291644,34.39230484541327,31.710923771927643,11.710923771927643,19.698929172439204,16.25267548146378,6.25267548146378,4.181125522066904,4.181125522066904,2.7221846883671583,2.7221846883671583,1.8185599620478323,1.8185599620478323,-2.8799999999999994,743179256.5037985,4.598247699822045,6.705375387990387,2.9513837201342854,169.62485761910585,0.0,5.893957685363079,0.0,0.0,11.814359458703011,0.0,9.589074368143644,10.017825047909064,0.0,0.0,47.87968852208461,44.246383966573916,10.96606844936176,27.82387522340976,37.00424549154805,23.189132008070136,0.0,0.0,5.893957685363079,20.076709135920737,10.017825047909064,72.0493633527378,0.0,0.0,10.017825047909064,11.374772549367124,0.0,0.0,11.814359458703011,9.589074368143644,5.893957685363079,47.49188025932517,72.0493633527378,0.0,0.0,0.0,40.620000000000005,121.20916218209176,9.589074368143644,0.0,10.017825047909064,0.0,0.0,0.0,0.0,0.0,0.0,27.415171123404395,159.82076903357247,0.0,28.05164934492315,-0.3910856009070298,-4.3474366387714145,-8.464343584656088,-13.376673169152875,-4.173642998866215,-7.452569719475386,0.0,0.2,24,0,4,0,1,1,2,0,2,2,0,4,6,0,1,1,3,3.9539000000000026,95.39400000000005,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,2,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5365247,CN(C)C/C=C(/c1ccc(Br)cc1)c1cccnc1,0,8.562414375472411,-3.733259519085414,8.562414375472411,0.3196704144620808,0.8516726555149139,317.2299999999997,300.094,316.0575106440005,98,0,0.08465200031415637,-0.3057153713488985,0.3057153713488985,0.08465200031415637,1.4210526315789473,2.210526315789474,2.9473684210526314,3.259932462411958,1204.1810211187674,28.290010549841313,26.27239166400914,10.858388203123848,16.07803314453657,13.307016225254507,5.600014494811861,3.09660602862954,3.8896042981868924,1.854204713752265,2.2507038485309403,1.1326557557511217,1.3309053231404595,-1.4500000000000002,14910409.572420714,3.803591838914705,6.639812137829195,4.012444278389034,146.35513262500373,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,40.1092717669748,43.21546594532064,39.844889562836656,12.33682700553198,23.302895454893736,21.503048428018616,0.0,9.883888251797686,0.0,0.0,20.448513484880436,70.25199691287126,0.0,0.0,0.0,0.0,0.0,15.929943897949348,30.332401736678126,0.0,0.0,34.42979843828773,59.12509392947726,0.0,5.573104530069267,0.0,16.130000000000003,96.70080514283902,0.0,0.0,4.472719515832414,0.0,0.0,0.0,0.0,0.0,20.913922418896558,23.302895454893736,134.7787188711828,2.8721240284770677,2.8420100308641976,0.0,-2.8036385109599387,0.0,-6.6422208443562605,-1.8377233061434453,-11.042603602397755,0.0,0.1875,19,0,2,0,0,0,1,1,2,2,0,3,6,0,0,0,2,3.8374000000000024,84.01200000000004,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +441130,C[C@@H](O)[C@H]1C(=O)N2C(C(=O)O)=C(S[C@@H]3CN[C@H](C(=O)N(C)C)C3)[C@H](C)[C@H]12,0,13.578322420551748,-4.475431665721845,13.578322420551748,0.45968704385641646,0.5588251961475821,383.4699999999997,358.27000000000015,383.15149190000074,144,0,0.3529624511550459,-0.47653913720536645,0.47653913720536645,0.3529624511550459,1.6538461538461537,2.5,3.1538461538461537,2.5020775737141974,1548.6672369068467,40.740122497076655,37.29113052928305,13.10762711021078,22.223285744671045,18.731433575051035,7.28421997955108,4.802444699943843,5.823065426103499,3.311299948685985,4.310370715448768,2.2668425716970235,3.1799910933215334,-1.5799999999999996,6844354171.7696705,5.065884647311568,6.861797828465618,2.9134612507464452,191.49256137199475,25.327249197203756,7.108881391384034,0.0,13.245559115935645,1.4311996572326342,5.969305287951849,9.589074368143644,4.794537184071822,0.0,11.761884949391115,6.851892117295679,13.224817018625059,62.51800992055166,28.122036317523015,56.16975824850298,29.545549696045974,2.8623993144652684,15.109632814989332,11.787915370726157,43.41850176875388,20.448513484880436,10.60217582694588,0.0,0.0,5.309813353288376,0.0,0.0,11.761884949391115,83.02260636551645,14.383611552215466,11.787915370726157,50.23339737166562,10.60217582694588,1.4118420783282006,1.4311996572326342,0.0,110.17999999999999,130.91228896234168,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,34.43092962853831,201.74204451601253,-1.014452947845805,36.75411782905507,2.390144044104421,-1.8221807550180562,-15.742243362731283,-8.619865075200574,-8.760216426635168,-20.760681155074547,0.0,0.7058823529411765,26,3,8,0,3,3,0,0,0,7,3,9,10,0,2,2,3,-0.3079999999999994,96.11130000000004,1,1,0,0,0,0,0,0,1,1,3,2,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +441207,C[C@H]1O[C@@H](O[C@H]2[C@@H](O)C[C@H](O[C@H]3[C@@H](O)C[C@H](O[C@H]4CC[C@]5(C)[C@H]6CC[C@]7(C)[C@@H](C8=CC(=O)OC8)CC[C@]7(O)[C@@H]6CC[C@@H]5C4)O[C@@H]3C)O[C@@H]2C)C[C@H](O)[C@@H]1O,0,13.205695501696125,-6.6531014093307315,13.205695501696125,2.400194556191038,0.18848157224383355,764.9500000000027,700.4380000000002,764.4346921080019,306,0,0.3306609997810494,-0.457979662083263,0.457979662083263,0.3306609997810494,0.7962962962962963,1.5185185185185186,2.1481481481481484,1.4662317460759053,4145.728674563543,94.21733218180744,89.80722777603022,25.80722777603022,50.95646070131106,45.873724356957936,14.332482904638631,10.93875416535599,10.93875416535599,7.683811590989754,7.683811590989754,5.149144310368121,5.149144310368121,-1.2300000000000002,5.119838470023751e+41,9.232358119693211,14.857670767284963,6.822362772765654,408.87965411222535,58.70208163213641,24.79903932376625,18.798235105610694,7.155998286163171,0.0,5.969305287951849,0.0,4.794537184071822,0.0,0.0,13.703784234591359,112.4759262047698,89.52845483473995,70.09331389835714,144.371373630251,5.969305287951849,7.155998286163171,0.0,34.40581168024587,195.9340255885253,6.558985242916289,11.625176276104835,0.0,0.0,0.0,0.0,0.0,0.0,130.42779595866168,37.952577860672164,34.40581168024587,191.6093142164737,11.625176276104835,0.0,0.0,0.0,182.82999999999998,254.49330407574416,54.14184520619979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.01776686313616,62.367759847078524,618.0933276888034,0.0,13.205695501696125,20.280953042474962,-21.711008259345583,-27.844544477259166,-2.400194556191038,-146.39239696995136,-31.731831970227436,0.0,0.926829268292683,54,5,13,4,4,8,0,0,0,13,5,13,17,4,3,7,8,3.2473000000000014,191.2209999999994,0,5,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4539,CCn1cc(C(=O)O)c(=O)c2cc(F)c(N3CCNCC3)cc21,0,15.880937618102795,-3.9647455804393497,15.880937618102795,0.33187830687830644,0.8910262977655082,319.3359999999997,301.192,319.1332196560005,122,0,0.3407228506021564,-0.4774970240990653,0.4774970240990653,0.3407228506021564,1.6521739130434783,2.4347826086956523,3.130434782608696,2.7510524734312614,1491.936924156347,32.21266028065169,28.94435013090069,10.944350130900691,18.183515962285192,14.695670940164062,5.8402090542002405,4.081221641176632,4.081221641176632,2.7925396073899624,2.7925396073899624,1.8271182249069833,1.8271182249069833,-2.41,151937714.35898578,4.796087700868945,6.000303361348931,2.6762994529205364,157.11815586842837,19.88563092303742,12.79251441107109,0.0,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,9.184952231746642,0.0,0.0,0.0,18.93672953262227,56.380244852391286,20.799396885491362,37.637739399905584,22.559616494716465,1.4311996572326342,9.87691300107973,0.0,13.348751801611623,30.887348468114254,39.86173253485661,0.0,0.0,15.638513476039396,10.077801322358383,0.0,0.0,41.63265186411419,6.496859684315945,5.817220841045895,39.14201769178803,23.052269810213172,1.4118420783282006,12.33412458931369,0.0,74.57000000000001,107.17272546851552,9.589074368143644,4.39041504767482,4.567099647791355,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,24.77517863428435,158.71128176399552,0.0,24.675795543938335,1.4599389469151651,-6.646840458673522,-4.158027600873019,-3.456532974300831,-1.6537122333501302,-23.265236320984886,0.0,0.375,23,2,6,0,1,1,1,1,2,6,2,7,4,0,1,1,3,1.2683,85.88200000000003,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +15008962,COc1ccnc(C[S+]([O-])c2nc3cc(OC(F)F)ccc3[n-]2)c1OC,0,13.33267215450995,-4.618820222284207,13.33267215450995,0.67052578519164,0.580011994683387,382.3679999999998,368.2560000000001,382.0678569479104,138,0,0.38703209798845023,-0.6116357919595106,0.6116357919595106,0.38703209798845023,1.4230769230769231,2.269230769230769,3.0384615384615383,2.247495303256672,1460.5765695190232,30.748194186584424,26.138811184837643,12.955307765765369,17.94301333694864,13.26926508803122,7.41909500229228,4.165689561417905,5.27241955688521,2.662538487316148,3.555502628969035,1.681211420102963,2.434845689514889,-2.5900000000000003,139546104.75209194,7.5695882581963705,7.748788965519116,3.8056821341293077,169.71407121009517,28.731295776984926,16.59987630995307,18.57473910788819,0.0,0.0,6.587556725647786,4.9839785209472085,0.0,8.78083009534964,0.0,6.042418707663295,34.2940933239444,12.215313918478056,31.895766147978033,46.73478861682326,22.209255908617813,0.0,14.951935562841626,0.0,17.448950092618652,14.075904917765177,36.0364980363164,0.0,17.248535499851716,19.194567382347355,8.78083009534964,17.248535499851716,0.0,35.18416855899774,16.880811358535446,0.0,24.884547781231536,35.49900652328865,0.0,11.033401435232523,0.0,90.63000000000001,107.01914445516975,13.333579969040004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.16252442424177,19.190619786383078,159.08519990473147,-3.2208389366549097,10.65727037584496,-1.03001137723608,-6.1603525562607455,-3.792313356536842,-4.275862153765501,-1.1384702746840605,-4.618820222284207,-6.783579180931901,0.25,26,0,7,0,0,0,1,2,3,6,0,10,9,0,0,0,3,2.5134000000000007,89.14840000000002,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,3,0,0,2,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2161,CC(C)c1ccc2oc3nc(N)c(C(=O)O)cc3c(=O)c2c1,0,13.38261999244142,-3.657926635670596,13.38261999244142,0.24447147165671756,0.7044218634482015,298.2979999999998,284.18600000000004,298.0953569280004,112,0,0.3389850433217606,-0.47754047401191324,0.47754047401191324,0.3389850433217606,1.5454545454545454,2.409090909090909,3.1363636363636362,2.667880343436117,1463.180408721498,27.70422411221441,24.52742035285537,10.52742035285537,16.322492188284347,12.494116600873376,5.691441119409595,4.163330602678546,4.163330602678546,2.7799972693452117,2.7799972693452117,1.7902964963408767,1.7902964963408767,-2.8899999999999997,25779088.81203522,5.0843557315613275,4.836153844469817,2.0885787063748293,144.60850461975883,15.245676103886833,16.964334411174267,2.8236841566564013,11.142287036694249,1.4311996572326342,5.969305287951849,4.794537184071822,4.794537184071822,4.9839785209472085,0.0,19.746202942254655,29.58466530004996,9.59530989319154,16.25548265361047,32.222524586761196,33.856133281152424,1.4311996572326342,4.9839785209472085,0.0,19.597741919954437,5.719716975726273,45.51990539001953,0.0,0.0,11.148507367626813,5.817862777835028,0.0,0.0,16.06209200000627,0.0,0.0,50.5975262052927,33.38136295177834,2.8236841566564013,23.50016487259818,0.0,106.42000000000002,94.17924340705454,9.589074368143644,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,10.092786712054421,23.7503788688148,114.00727445912172,0.0,29.018347412509797,1.9259398830953682,-5.552595986122999,-6.108160134877083,-4.558285695718957,0.0,-7.315853271341192,0.0,0.1875,22,3,6,0,0,0,1,2,3,6,2,6,5,0,0,0,3,2.745,83.24570000000001,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +148124,CC(=O)O[C@@]12CO[C@@H]1C[C@H](O)[C@@]1(C)C(=O)[C@H](O)C3=C(C)[C@@H](OC(=O)[C@H](O)[C@@H](NC(=O)OC(C)(C)C)c4ccccc4)C[C@@](O)([C@@H](OC(=O)c4ccccc4)[C@@H]12)C3(C)C,0,17.295283109608135,-7.301135863598494,17.295283109608135,1.6744311601617785,0.1468094861389331,807.8900000000019,754.4659999999999,807.3466053760015,314,0,0.40774710722156504,-0.4557376731538227,0.4557376731538227,0.40774710722156504,1.0862068965517242,1.8448275862068966,2.4482758620689653,2.2166333156286644,4146.00031685026,87.91096641447143,80.66268966199404,27.66268966199404,48.87130984551647,40.90577911226207,14.825572354906658,11.423490257352151,11.423490257352151,7.821925310320264,7.821925310320264,5.379951873102912,5.379951873102912,-4.67,6.551017657029077e+36,11.78280349853069,15.171694085358682,7.099650361474251,411.05908323934244,49.42936088671747,35.522173729767324,18.876155862626817,5.724798628930537,0.0,24.001155934793964,9.589074368143644,14.383611552215466,0.0,0.0,62.04313389589771,63.05395855364051,64.76473051828766,61.57370795190701,135.3004862282868,29.784400881158902,5.724798628930537,5.309813353288376,16.723938624156638,126.86213980402482,6.558985242916289,82.6972991201655,0.0,0.0,5.309813353288376,4.794537184071822,0.0,0.0,115.78667811208561,38.06792632121571,16.723938624156638,155.29673007301002,71.57039613677148,1.4118420783282006,0.0,0.0,224.44999999999996,267.9365770257106,42.547720817291356,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,25.1720957182289,58.92185676948186,498.59494719066913,0.0,78.4320848536914,15.360154234729292,-44.96904264196162,-22.6642067697919,-25.86851990634002,-54.44048813488855,-49.27826215944122,0.0,0.5581395348837209,58,5,15,3,1,4,2,0,2,14,5,15,17,2,1,3,6,3.2596000000000025,203.6043999999994,0,4,0,0,0,0,0,0,0,0,5,5,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,2,0,5,0,0,0,3,5,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23582824,O=C1NC(=O)/C(=C/c2ccc3nccc(-c4ccncc4)c3c2)S1,0,12.237297400237516,-1.161869250812252,12.237297400237516,0.006897564683459478,0.7252671646649843,333.3719999999998,322.284,333.0571975920003,116,0,0.29042513875303666,-0.28224718597567666,0.29042513875303666,0.28224718597567666,1.1666666666666667,2.0,2.75,2.2273958292582594,1516.8305989399341,26.09097545816254,22.566385657891466,12.38288223881919,16.28837657558165,11.85535096292756,7.2246339483553275,4.396673492424684,5.3582867806222,2.9298973035465155,3.676611466813661,1.9485501289403293,2.5377723162418584,-2.989999999999999,40376885.90179677,6.863347813221198,5.899661590139385,2.6751376307989028,156.8825406342072,0.0,0.0,1.4118420783282006,0.0,11.146391442523793,0.0,24.866844763326434,0.0,0.0,0.0,6.042418707663295,64.71640470883413,23.904909846909078,24.129422793208505,24.70850200817404,39.86327307003153,0.0,15.277770395182792,0.0,0.0,0.0,65.24178588401108,0.0,11.126902983393991,5.309813353288376,4.794537184071822,0.0,11.761884949391115,21.11434848441821,4.794537184071822,0.0,19.271037053399194,59.67833439231409,1.4118420783282006,28.081899661510615,0.0,71.95,104.47007698804549,9.589074368143644,0.0,17.07169830267949,0.0,0.0,0.0,0.0,0.0,9.967957041894417,15.1194276400304,89.63940406714013,0.2420285334187744,30.66825136286422,-1.4110382786672466,-1.9890736803980835,-1.161869250812252,-5.012663875276156,-2.1417055449360634,0.0,0.0,0.0,24,1,5,0,1,1,1,2,3,5,1,6,2,0,1,1,4,3.620700000000002,94.08070000000001,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0 +23651142,Cc1[nH]c(CO)c(-c2ccc(Oc3ccc(OC(F)(F)F)cc3)cc2)c(=O)c1Cl,0,13.304934405335427,-5.409354825815022,13.304934405335427,0.20238191322194155,0.5900360725730698,425.7899999999998,410.6700000000001,425.0641703000004,152,0,0.5725963323057099,-0.45737906915075255,0.5725963323057099,0.45737906915075255,1.206896551724138,1.793103448275862,2.3448275862068964,2.4075730888208917,1686.210554251848,34.01362518897291,28.59206464939232,14.347993595410774,19.900494997373535,14.533349298873823,7.555851885919229,4.941422768884036,5.3193872418932635,3.044504204399778,3.3951535413582894,1.933867993948114,2.0706168249368466,-2.969999999999999,807227576.1180743,8.807510612687786,8.181814167610472,4.903893995646815,189.06206899555798,19.559537368936564,22.271168813593043,1.4118420783282006,6.859990049133175,0.0,6.362358859030383,4.794537184071822,0.0,0.0,13.171245143024459,23.685777305559107,48.66985585497244,9.80620366335912,31.523950291163942,46.98548255027286,11.600939890232516,1.4311996572326342,4.977003270229252,0.0,19.77323621924235,0.0,74.97316654071697,0.0,28.375438483245706,14.90251629950064,13.171245143024459,17.248535499851716,11.600939890232516,17.879369977599485,6.558985242916289,6.851892117295679,29.207717219909778,53.13388684537818,6.434475392069527,11.126902983393991,0.0,71.55000000000001,118.32730405913323,17.96578232709628,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.84567114490726,37.00070580980627,165.66444103351853,5.921443462910506,13.102552492113485,2.745927767862317,-6.479027145858733,-3.8145716761738413,-10.232056573706762,-5.409354825815022,-6.804910090406016,0.0,0.15,29,2,5,0,0,0,2,1,3,4,2,9,7,0,0,0,3,5.186920000000003,101.36750000000004,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4828,CC(C)NCC(O)COc1cccc2[nH]ccc12,0,8.25072515117158,-4.2966299366969025,8.25072515117158,0.1952000319756002,0.7315916457547718,248.32600000000016,228.16599999999997,248.15247788,98,0,0.21069040698967487,-0.4901351406236708,0.4901351406236708,0.21069040698967487,1.7777777777777777,2.7222222222222223,3.5555555555555554,2.828867355039259,1219.7346020934922,30.187716254269354,28.710923771927643,8.710923771927643,16.774597339687297,14.309475108159491,4.506799626695711,2.881799626695711,2.881799626695711,1.6844461610937533,1.6844461610937533,1.0227502124698655,1.0227502124698655,-1.52,35291180.463061675,2.81125315358515,5.887242090843924,3.2439068615073854,135.2717154498972,20.132487768424888,19.80035718147838,1.4118420783282006,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,0.0,19.746202942254655,18.127256122989884,41.927399301093416,10.96606844936176,35.9722507564574,10.902924932081056,1.4311996572326342,10.286816623517627,0.0,25.80169472989099,13.055844927232233,30.34257004146794,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,36.67076654110097,0.0,0.0,37.006679689485104,30.34257004146794,2.8236841566564013,10.902924932081056,0.0,57.279999999999994,91.16235981724449,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,32.29464222258282,160.84311220509656,0.0,0.1952000319756002,2.0814203698454694,-0.6719631140130777,-1.1664026675485009,-8.004723846596592,-5.124537973183356,-16.31877167224278,0.0,0.42857142857142855,18,3,4,0,0,0,1,1,2,3,3,4,9,0,0,0,2,1.9055999999999995,72.93920000000004,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +451668,Nc1ncn([C@H]2C[C@H](O)[C@@H](CO)O2)c(=O)n1,0,12.234578687956663,-3.7260091883975814,12.234578687956663,0.2235856009070294,0.5273624425093522,228.20800000000008,216.11199999999997,228.085854864,88,0,0.3536789605200513,-0.39356883593538705,0.39356883593538705,0.3536789605200513,2.125,3.0625,3.75,2.8452389653807586,838.3329922554972,21.92228525188087,19.421847543855286,7.421847543855284,12.55949649795496,9.520398880087132,3.80947510815949,2.534116180314281,2.534116180314281,1.5581480008622643,1.5581480008622643,0.9214745202472611,0.9214745202472611,-1.5100000000000002,561614.7576743306,3.4893361123016926,4.160618689082901,1.8960638173465705,107.4717232810859,20.674196311740747,19.958101107022987,2.8236841566564013,8.810738595451763,0.0,5.689743398203474,4.567099647791355,9.77851570501903,4.9839785209472085,0.0,0.0,0.0,9.11444201366982,19.492796050717374,28.74423194203263,5.948339280986494,2.8623993144652684,14.53505668968577,0.0,24.73691376516591,12.278702218642561,16.78765229624152,0.0,0.0,11.409460373929747,5.948339280986494,0.0,0.0,46.33409368318173,4.736862953800049,0.0,23.54294616062769,11.09790889803805,2.8236841566564013,0.0,0.0,123.49,49.237353401238394,4.794537184071822,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,20.185573424108842,21.38901487428348,95.21708441480357,0.0,18.538576073948096,7.567762172374817,-1.9208877289437358,-0.9266254225455615,0.0,-16.070852229780805,-3.655057279856387,0.0,0.625,16,4,8,0,1,1,0,1,1,8,3,8,5,0,1,1,2,-2.1388,52.32400000000001,0,2,0,1,0,3,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +47320,COc1ccc(CC2c3cc(OC)c(OC)cc3CC[N+]2(C)CCC(=O)OCCCCCOC(=O)CC[N+]2(C)CCc3cc(OC)c(OC)cc3C2Cc2ccc(OC)c(OC)c2)cc1OC,0,15.102635597536613,-6.340287945200769,15.102635597536613,1.9663553691408946,0.038349396136230826,929.1610000000024,856.5849999999997,928.5074285841821,364,0,0.31101162404195815,-0.49286997843005387,0.49286997843005387,0.31101162404195815,0.5522388059701493,0.9253731343283582,1.3134328358208955,1.752678277449614,5153.438275531027,110.58217481079572,104.29340667656628,32.29340667656628,60.355621117605345,52.779585577102324,16.779585577102324,11.543720967877345,11.543720967877345,7.668961305810098,7.668961305810098,4.888930146146823,4.888930146146823,-5.86,2.028308363557727e+49,11.588130532077408,23.238054717191165,12.003057148158991,497.7303275689702,56.334691253389735,14.77730204903973,45.99609466627124,0.0,0.0,11.938610575903699,9.589074368143644,0.0,0.0,0.0,12.08483741532659,89.71193033208249,61.29225659977553,193.38597741823153,164.61838166578895,11.938610575903699,0.0,0.0,0.0,69.3921090486637,109.36068269472153,93.80489602681493,0.0,45.99609466627124,37.89490363040039,0.0,45.99609466627124,0.0,130.2653549860145,44.554499881061254,0.0,175.9757344377837,60.42418707663295,0.0,0.0,0.0,126.44000000000004,339.4584547277645,35.63972246042572,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,47.36862953800049,63.054893583830186,668.3879331040004,0.0,30.20527119507322,0.0,-15.725010262054083,-25.134719988871975,-35.775420349990945,-51.560094599492025,-47.837680708156114,-33.476945057175385,0.5094339622641509,67,0,14,0,2,2,4,0,4,12,0,14,34,0,0,0,6,8.06550000000001,255.3217999999991,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0 +3121,CCCC(CCC)C(=O)O,0,11.89642573696145,-4.419097222222224,11.89642573696145,2.505787037037037,0.6423719745530849,144.21400000000014,128.08599999999998,144.115029752,60,0,0.30598677885955755,-0.4810264638850934,0.4810264638850934,0.30598677885955755,1.8,2.4,2.8,7.020906026260591,503.4334473863049,21.784457050376176,20.816496580927726,4.816496580927726,10.981380475434849,10.066496580927726,2.158248290463863,1.1624574785652648,1.1624574785652648,0.5791241452319316,0.5791241452319316,0.2583120726159658,0.2583120726159658,-0.53,67085.3162303133,1.1346158887165576,5.270170381876186,3.4868174048208713,84.81579994165777,5.1088081911072125,0.0,0.0,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,0.0,26.449634037250117,12.745849802658759,20.561378342553297,5.893957685363079,30.46472371773233,5.969305287951849,1.4311996572326342,0.0,5.893957685363079,39.195483839908874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.078113479059063,4.794537184071822,5.893957685363079,59.75686218246222,0.0,0.0,1.4311996572326342,0.0,37.3,51.0587468132238,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,21.992577999785933,117.30590443121693,0.0,11.89642573696145,3.3466043083900225,0.0,-6.924884259259261,0.0,-16.97302626606199,-7.7343572845805015,0.0,0.875,10,1,2,0,0,0,0,0,0,2,1,2,7,0,0,0,0,2.2874,40.9418,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9588170,CO/N=C1\CN(c2nc3c(cc2F)c(=O)c(C(=O)O)cn3C2CC2)CC1CN,0,16.153679374527588,-4.14229459309997,16.153679374527588,0.11758016056514453,0.7304236261034949,389.3869999999998,369.22700000000015,389.1499323400006,148,0,0.3407251211282819,-0.47749701156478486,0.47749701156478486,0.3407251211282819,1.7857142857142858,2.642857142857143,3.357142857142857,2.2427223069618027,1814.808152799382,37.333980624211335,33.24702561236447,13.24702561236447,21.3838226921982,16.97679646223096,7.174120980767185,5.187402624761665,5.187402624761665,3.559195995876485,3.559195995876485,2.325601790346945,2.325601790346945,-3.0100000000000002,4528452476.073681,6.244896603841156,6.860776950297219,2.9886300803103913,187.0477313998591,25.133123129211953,21.07226532800371,11.635083618880923,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,14.16893075269385,0.0,0.0,5.15571272675054,18.788268510322055,40.673774626350934,31.30235446325364,45.257928618140646,28.532254503790107,1.4311996572326342,9.551078168738563,16.769387387839892,18.763742271008404,31.428441242680897,33.819313827193305,0.0,0.0,16.048417098477294,10.208277825509848,0.0,0.0,52.86940816239875,4.8375885837366335,11.711178526408974,52.424626401671006,22.165563829300417,2.8236841566564013,12.464601092465157,0.0,123.04,119.36288932169026,9.589074368143644,4.39041504767482,4.567099647791355,0.0,0.0,0.0,0.0,0.0,20.086088022541592,27.55777926878277,176.19879893990304,0.0,32.78932778079286,5.187284650452125,-7.510876278584302,-10.024590952438714,-5.124121800943365,-8.180660447384472,-12.11541374275597,-3.5530814823745525,0.4444444444444444,28,3,9,1,1,2,0,2,2,9,2,10,7,1,1,2,4,0.966,100.39270000000002,0,0,0,0,1,2,0,0,1,1,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +135403821,CO[C@H]1/C=C/O[C@@]2(C)Oc3c(C)c(O)c4c(O)c(c(/C=N/N5CCN(C6CCCC6)CC5)c(O)c4c3C2=O)NC(=O)/C(C)=C\C=C\[C@H](C)[C@H](O)[C@@H](C)[C@@H](O)[C@@H](C)[C@H](OC(C)=O)[C@@H]1C,0,16.21707171699493,-6.87445237479654,16.21707171699493,1.3391607753407277,0.09263818792629527,877.0450000000023,812.5329999999999,876.452073488002,344,0,0.3121091952257162,-0.5067356780024597,0.5067356780024597,0.3121091952257162,1.0476190476190477,1.8571428571428572,2.5238095238095237,2.2312151892781915,4841.538703708452,100.85012400322687,94.18783386756618,30.187833867566187,55.64198980290241,47.49329575353,16.004840705710734,11.546866921187995,11.546866921187995,7.806009629274883,7.806009629274883,4.9864704852891055,4.9864704852891055,-5.16,7.553181976106324e+42,11.615126821923017,19.295288586152214,9.40181007478149,458.77821611610165,49.801306124024634,24.699312082971925,7.161353911612106,2.8623993144652684,15.984023647414347,11.756416440522447,24.292433807020473,0.0,5.101407525739723,0.0,58.30963350994816,32.501705783285686,149.0467796797496,74.8014887584753,139.7909426591525,40.310216886018445,7.155998286163171,9.90882225480501,28.67723826719203,116.43191227240312,38.33520454943474,52.709878076924994,0.0,22.99804733313562,10.046676307088426,5.687386274683562,22.99804733313562,0.0,135.60971060377614,23.79966322954379,30.42772285874799,174.4438323434226,41.120931127573726,1.4118420783282006,10.772448428929591,0.0,220.14999999999995,304.26991211417436,30.880033273463976,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,35.01036619776867,76.56887463167931,586.9088840891269,0.0,44.825546931022394,18.067072001397122,-12.616071647359073,-50.864931965696954,-17.86460885869456,-50.902042855914424,-63.78335310555825,-5.187161254989574,0.574468085106383,63,6,16,1,4,5,2,0,2,15,6,16,19,1,1,2,7,5.6482200000000065,236.81119999999936,0,2,0,0,0,0,0,3,0,0,3,3,0,0,0,3,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,2,0,14,0,0,0,1,4,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,3,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +445643,C=CC[C@@H]1/C=C(\C)C[C@H](C)C[C@H](OC)[C@H]2O[C@@](O)(C(=O)C(=O)N3CCCC[C@H]3C(=O)O[C@H](/C(C)=C/[C@@H]3CC[C@@H](O)[C@H](OC)C3)[C@H](C)[C@@H](O)CC1=O)[C@H](C)C[C@@H]2OC,0,16.531644813999172,-7.2884500327781385,16.531644813999172,2.5216449988581875,0.18495553644513674,804.0310000000027,734.479,803.481976648002,322,0,0.3289793001873724,-0.4559309948226889,0.4559309948226889,0.3289793001873724,1.087719298245614,1.912280701754386,2.6140350877192984,3.130516773676403,4405.916127220174,102.00770721057826,96.34619308106632,27.346193081066314,54.13780516024865,48.365675733584354,14.140930862192773,9.852439730188083,9.852439730188083,6.308304320682848,6.308304320682848,3.852933564360621,3.852933564360621,-2.78,2.2793190140140897e+42,9.639464360906794,20.955266205731213,11.287252409488188,435.89895299667734,43.91064907317236,23.96117346861456,0.0,10.0807101242685,11.690424675716445,5.969305287951849,14.383611552215466,4.794537184071822,0.0,6.531038962001867,44.284996120063,94.79405314868059,111.97889148987188,60.55677837049484,148.65895278584347,23.442974910033232,4.293598971697903,4.899909730850478,29.46978842681539,158.72676431067174,27.61071706096371,35.8334632602471,0.0,0.0,0.0,0.0,0.0,0.0,129.93875505643712,42.86246350528753,29.46978842681539,194.83169920833583,35.8334632602471,0.0,0.0,0.0,178.35999999999996,279.98361769958177,34.2689639042555,19.178148736287287,0.0,0.0,0.0,0.0,0.0,0.0,29.537013434721782,69.96842568227706,638.9728462012109,0.0,63.00656940869304,11.762527550372269,-8.07441385691294,-58.06306653494641,-17.782129198982858,-113.09137753634434,-38.97623787964309,-15.588051486780333,0.7727272727272727,57,3,13,1,3,4,0,0,0,12,3,13,18,1,2,3,4,4.639000000000004,212.59239999999923,0,3,0,0,0,0,0,0,0,0,4,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,3,0,0,0,1,5,0,0,0,0,0,0,0,0,0,2,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6005,CN1CCc2cccc3c2[C@H]1Cc1ccc(O)c(O)c1-3,0,9.234808437263794,-3.7025043698034787,9.234808437263794,0.3437932256235827,0.7213394581196795,267.32799999999975,250.19199999999992,267.12592878400034,102,0,0.2933156660387298,-0.5042440066336673,0.5042440066336673,0.2933156660387298,1.4,2.4,3.25,2.4610094525429393,1353.2807270019,28.419767061838236,26.763710176427686,9.763710176427685,16.682845630151164,13.895565264641526,5.579068683713801,4.2040686837138,4.2040686837138,3.1058388425815284,3.1058388425815284,2.238489440169384,2.238489440169384,-2.0,42883015.47995014,3.602493074792244,3.9963269054178143,1.44,141.70768578418821,10.217616382214425,0.0,11.49902366656781,0.0,2.8623993144652684,0.0,4.899909730850478,0.0,0.0,0.0,24.16967483065318,48.01790137739228,30.41503064989456,8.224551337021321,30.77899472476772,0.0,2.8623993144652684,4.899909730850478,0.0,18.763742271008404,13.47268658459819,46.90244801340746,0.0,22.6259266499618,0.0,0.0,11.49902366656781,0.0,31.452612012128363,12.745849802658759,0.0,43.26962528599395,30.212093538316473,0.0,11.126902983393991,0.0,43.7,101.76480351897585,1.3707585561702202,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,10.217616382214425,22.05301910084835,141.13623304568742,0.0,-0.3437932256235827,8.793756495653817,-4.570871126228268,-1.789053314226925,-8.61997073675149,-6.952803524187456,-7.403497614323511,0.0,0.29411764705882354,20,2,3,1,1,2,2,0,2,3,2,3,3,0,0,0,4,2.8499000000000025,77.98660000000002,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5289394,CO[C@@H]1[C@@H](O[C@@H]2O[C@H](C)[C@@H](O[C@H]3C[C@@](C)(O)[C@@H](O)[C@H](C)O3)[C@H](N(C)C)[C@H]2O)[C@@H](CC=O)C[C@@H](C)[C@@H](O[C@H]2CC[C@H](N(C)C)[C@@H](C)O2)/C=C/C=C/C[C@@H](C)OC(=O)C[C@H]1O,0,15.155089546497221,-8.019547530163882,15.155089546497221,1.7226346010316078,0.1747493275936287,843.0650000000028,768.473,842.5140050480021,340,0,0.30829383515622427,-0.46225570770650387,0.46225570770650387,0.30829383515622427,1.0,1.8644067796610169,2.559322033898305,3.0168382503423645,4443.334717918899,107.60408352775558,102.109903257494,28.109903257493997,57.13239306675774,50.96536514345782,14.332371981602366,9.862974371953783,9.862974371953783,6.021760326590631,6.021760326590631,3.6682233493867806,3.6682233493867806,-1.9000000000000001,9.968808317005506e+44,9.993192999314346,22.450692883722347,13.302377663508928,454.90679558426376,72.92449304060203,38.033060853251406,18.798235105610694,5.724798628930537,0.0,5.969305287951849,4.794537184071822,0.0,0.0,0.0,31.060179101437942,93.06945826232166,96.60027177122069,84.62866457810743,163.872309694888,12.23151745028309,5.724798628930537,9.799819461700956,11.787915370726157,189.0370961628233,34.94126006001157,24.208286984142266,0.0,0.0,0.0,0.0,0.0,0.0,186.4478975150986,47.483977998544034,11.787915370726157,181.67492594499487,24.208286984142266,0.0,0.0,0.0,195.37999999999997,282.0058954896874,40.43425964449756,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,34.645821625828994,89.72248986942046,699.055096157039,0.0,25.745740441974377,15.814728374142527,-5.709420284772825,-19.291073210469957,-26.295106418388375,-141.7216875512232,-55.472611224698646,-5.875666283602778,0.8604651162790697,59,4,16,0,4,4,0,0,0,16,4,16,26,0,3,3,4,2.3251000000000093,216.88619999999918,0,4,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,2,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +53276,CCOC(=O)Nc1ccc(NCc2ccc(F)cc2)nc1N,0,13.9298460967759,-3.635881314244827,13.9298460967759,0.3271652654404278,0.7898834049027826,304.32499999999965,287.18899999999996,304.13355400400053,116,0,0.41122093733663256,-0.44960622194167593,0.44960622194167593,0.41122093733663256,1.5454545454545454,2.3636363636363638,3.090909090909091,2.7112483821853948,1275.3008239128376,30.57446760021749,27.483315435936788,10.483315435936786,17.500518428116667,13.655456638450094,5.366602256450261,3.352047889654829,3.352047889654829,1.92584155329068,1.92584155329068,1.1028829573919872,1.1028829573919872,-2.8299999999999996,66582529.76915412,4.580858166880657,7.256316894851852,4.3379866701310625,151.16485659260573,15.766393282814699,17.45294639671595,5.6473683133128025,0.0,0.0,6.093240070938415,5.309813353288376,14.16893075269385,0.0,0.0,12.08483741532659,36.58501843964585,10.609135352826605,25.953957079302047,37.389044729072346,23.416351901292035,0.0,4.9839785209472085,0.0,13.348751801611623,22.89832892521931,47.63518457872266,0.0,0.0,16.339343682303024,26.508064062100264,0.0,0.0,17.63620383480191,11.233722638115994,5.817220841045895,30.23520483920553,36.25451224597977,5.6473683133128025,0.0,0.0,89.27,101.98880385355726,9.184952231746642,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,9.720841474747257,23.467229543525658,148.34812772916294,0.0,15.743096191116866,-0.8156666175168161,-2.8203127486081163,-4.015789446935124,-7.5390326047284875,-2.07435840988599,-10.576064092605286,0.0,0.2,22,4,6,0,0,0,1,1,2,5,3,7,7,0,0,0,2,2.9834000000000005,83.02080000000002,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +5755,C[C@]12C[C@H](O)[C@H]3[C@@H](CCC4=CC(=O)C=C[C@@]43C)[C@@H]1CC[C@]2(O)C(=O)CO,0,14.2295518681021,-5.544003802910054,14.2295518681021,1.9895737637532827,0.6946116752943167,360.44999999999953,332.22600000000006,360.1936739960007,142,0,0.21153165731521853,-0.3927606978408493,0.3927606978408493,0.21153165731521853,1.5769230769230769,2.5,3.230769230769231,2.698983012645599,1780.4160413778998,43.0854219586974,40.54124145231931,12.541241452319316,23.59544086759499,20.74536559755125,7.020620726159658,5.770620726159658,5.770620726159658,4.37173680533711,4.37173680533711,3.056659214567152,3.056659214567152,-1.3,33430449535.687477,4.471809095275085,5.599719839148237,2.0792514525694963,192.94049287303224,15.326424573321638,12.160036053899976,11.566489892729878,4.293598971697903,0.0,0.0,9.589074368143644,0.0,0.0,0.0,25.32896051069619,55.75668336944418,42.768351191390835,14.304569363971307,59.18446284572084,11.566489892729878,4.293598971697903,0.0,28.5118539948828,57.24947757917192,6.558985242916289,23.729319768175966,0.0,0.0,0.0,0.0,0.0,0.0,49.42656751859938,9.589074368143644,28.5118539948828,79.83737264549374,23.729319768175966,0.0,0.0,0.0,94.83,127.61612647787688,17.813625705164963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,30.338011538932083,244.95828396617367,0.0,27.288772015762554,12.069364291473413,-17.876608491658327,-21.565318986846215,-6.325340625383916,-30.888235570462776,-14.410916599058517,0.0,0.7142857142857143,26,3,5,4,0,4,0,0,0,5,3,5,7,3,0,3,4,1.5575999999999999,95.04840000000003,0,3,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3005572,CN(C)CCOc1ccc(/C(=C(/CCCl)c2ccccc2)c2ccccc2)cc1,0,8.921113998068364,-4.19450953635667,8.921113998068364,0.8693722414894292,0.30945335399668383,405.96899999999965,377.7450000000002,405.1859421960008,150,0,0.11890333123059871,-0.49226449447092085,0.49226449447092085,0.11890333123059871,0.896551724137931,1.4827586206896552,2.0689655172413794,2.797053514739275,2063.675469080383,44.8314624341687,42.23342635897305,14.989355304991502,25.332739321424487,21.518050920218414,7.896015393227641,4.824953004216128,5.013935240720741,3.0848476859998213,3.179338804252128,2.0188039877382478,2.113295105990555,-2.549999999999999,145170626812.7436,5.376174507174962,10.847804995000011,5.961916895376913,218.29134454590428,9.636772684650527,12.308497076200194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.600939890232516,72.50902449195954,60.245979652449975,28.77806908173229,21.932136898723517,43.11810252656623,22.74714895037105,0.0,4.899909730850478,0.0,6.372924901329379,32.839605451170435,101.28421638237714,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,11.600939890232516,37.73951518202092,0.0,0.0,61.44451894918659,84.59386190728614,0.0,11.146209060138535,0.0,12.47,162.29237735914992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.71904241679877,235.85851123791136,5.867605436809866,-0.8693722414894292,0.0,-6.8250427071991435,-5.288648105302902,-18.213745148019214,-3.929758640999487,-16.155105387266634,0.0,0.23076923076923078,29,0,2,0,0,0,3,0,3,2,0,3,11,0,0,0,3,6.215000000000006,124.62800000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10202642,O=C(NC1CCOCC1)c1ccc(-c2cc(-c3cn[nH]c3-c3ccccn3)ccn2)cc1,0,13.731621853853818,-4.177256384406466,13.731621853853818,0.21340573207680946,0.5019909470664278,425.49199999999973,402.30800000000016,425.18517497600067,160,0,0.2509962107561421,-0.3812897818280129,0.3812897818280129,0.2509962107561421,1.125,1.9375,2.78125,1.7589761298202435,2273.1318683191257,42.03013304691797,38.55256455842752,15.552564558427518,24.938859029742268,19.995654008695546,8.601226817695627,5.75158636650623,5.75158636650623,3.8118722502440265,3.8118722502440265,2.4267861399266226,2.4267861399266226,-3.839999999999999,205978552052.89938,6.827216367337472,9.113755606480568,4.2858503401360535,217.87842948429304,10.046676307088426,0.0,2.8236841566564013,0.0,5.907179729351506,0.0,19.85420078354932,0.0,5.098681808301038,0.0,18.127256122989884,54.563813540335524,53.655042075583616,46.55757465025391,41.141013974102904,5.907179729351506,0.0,25.46815876106691,0.0,18.763742271008404,13.117970485832577,78.46390549311093,0.0,33.772138459636366,5.309813353288376,0.0,0.0,0.0,45.201388091312275,4.736862953800049,0.0,51.88976815800224,72.90045400141395,2.8236841566564013,33.772138459636366,0.0,92.78999999999999,155.33474979222822,4.794537184071822,0.0,5.091706557583081,0.0,0.0,0.0,0.0,0.0,19.803501803995502,31.609613836231016,194.36145647767583,0.0,21.221035408050618,2.9384760975983797,-6.018715349969035,-2.1310155256902954,-13.754654331678736,-10.810094851960072,-7.723154590693341,0.0,0.2,32,2,7,0,1,1,1,3,4,5,2,7,5,0,1,1,5,4.109500000000003,121.79289999999999,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,3,2,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +5577,COc1cc(C(=O)NCc2ccc(OCCN(C)C)cc2)cc(OC)c1OC,1,13.707165587329122,-4.165986842896558,13.707165587329122,0.8390836062386406,0.6747430301104641,388.46399999999966,360.2400000000002,388.19982199600076,152,0,0.25132650051098687,-0.4926888479900742,0.4926888479900742,0.25132650051098687,1.1428571428571428,1.8214285714285714,2.4285714285714284,2.902614656874121,1739.6654943089136,44.48868116259058,41.43566864331923,13.435668643319232,24.526051217386286,20.652364891337236,6.705151295837279,4.302779901665976,4.302779901665976,2.591423711602493,2.591423711602493,1.5083528064407323,1.5083528064407323,-2.9299999999999997,41534485518.37969,4.968139425603311,10.415970651877231,5.785836538905631,205.0956058639502,29.15717489933905,12.308497076200194,12.910865744896011,5.749511833283905,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,12.08483741532659,43.68478012291467,29.523239309690645,47.158269943881976,62.16431209419623,5.907179729351506,0.0,10.209723084138854,0.0,6.496859684315945,48.12135610444449,47.38141522937376,0.0,22.99804733313562,24.257265168488573,0.0,22.99804733313562,0.0,58.928445564646466,6.496859684315945,0.0,52.9319211840618,36.25451224597977,1.4118420783282006,0.0,0.0,69.26,141.1145811647602,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.210588861400147,43.15918604872421,236.76446539893416,0.0,12.82427786400204,-0.8390836062386406,-3.1845392992156647,-8.457249254264601,-9.571056668284236,0.0,-20.00806939613393,-10.86207837213239,0.38095238095238093,28,1,7,0,0,0,2,0,2,6,1,7,15,0,0,0,2,2.5828000000000007,107.75920000000006,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2375,CC(O)(CS(=O)(=O)c1ccc(F)cc1)C(=O)Nc1ccc(C#N)c(C(F)(F)F)c1,0,14.022234733549585,-6.483747235375118,14.022234733549585,0.9099935512199815,0.5604120760868545,430.37899999999985,416.2670000000001,430.0610408080004,154,0,0.4172610941986015,-0.3792048731513682,0.4172610941986015,0.3792048731513682,1.3793103448275863,2.0344827586206895,2.5517241379310347,3.0847503073839873,1648.3857792419217,33.997117331027866,27.44752653535614,14.264023116283866,19.2322100057776,13.682041139493272,8.309742501123843,4.929916688844761,6.5491626999271055,2.827479520969388,4.1252473626144806,1.633026034173594,2.571625919506865,-2.9699999999999993,333246710.0805453,9.687078818997223,7.805948812174504,5.303807092917946,182.67820161546368,10.418621544395588,5.817220841045895,16.85014602572939,1.4311996572326342,5.907179729351506,6.176298517443475,4.794537184071822,12.808212032003757,18.433136697762947,0.0,0.0,49.14882307093875,12.541179055534661,37.39187455004575,53.74374730257813,21.431819140452568,6.693091211971121,0.0,0.0,23.524724921240615,11.014770238438533,59.24105477808295,0.0,6.069221312792274,5.309813353288376,23.24904646538284,0.0,0.0,32.170992258154136,20.808088837932797,17.148333708576654,34.42789777473231,47.192414429160834,1.4118420783282006,0.0,0.0,107.25999999999999,115.21236907821466,30.773994359100044,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,5.1088081911072125,24.554035964341956,190.23422777961753,0.0,11.44000147731524,11.701054542457635,-15.728792992754936,-4.82606067593686,-11.51938894631282,-5.671789453230915,-4.562171162446463,-6.483747235375118,0.2222222222222222,29,2,6,0,0,0,2,0,2,5,2,11,7,0,0,0,2,2.8795800000000007,93.86530000000003,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +454216,CCCCC(=O)OCC(=O)[C@]1(O)Cc2c(O)c3c(c(O)c2[C@@H](O[C@H]2C[C@H](NC(=O)C(F)(F)F)[C@H](O)[C@H](C)O2)C1)C(=O)c1c(OC)cccc1C3=O,0,15.156869338374944,-6.629474738670085,15.156869338374944,1.5230071556445994,0.15037535419403683,723.6500000000013,687.362,723.213874872001,276,0,0.4706726934198656,-0.506847954676333,0.506847954676333,0.4706726934198656,1.2352941176470589,2.0392156862745097,2.7254901960784315,2.1362166983887065,3265.4081614219012,68.54915909490565,59.88833479055786,23.88833479055786,38.423392442884804,30.314477531312043,12.734270773956634,9.366850675221722,9.366850675221722,6.347192874645071,6.347192874645071,4.276200249288798,4.276200249288798,-4.58,6.162648140717805e+20,12.822445798281949,14.208377027836098,7.023139300402498,338.9686008719052,44.69249793291742,28.929604337785392,20.020150636146322,14.428889207195146,2.8623993144652684,18.05278353474683,23.97268592035911,0.0,13.171245143024459,0.0,25.30965443395165,19.267235726288355,66.85570809147251,59.726096686436094,120.43197296261754,29.22621985639817,5.724798628930537,5.309813353288376,0.0,94.24270788873129,13.596937701798877,51.50796507317186,0.0,17.248535499851716,10.046676307088426,13.171245143024459,17.248535499851716,0.0,105.20454517077015,34.967125314944994,0.0,137.11172532779057,18.127256122989884,1.4118420783282006,0.0,0.0,215.21999999999997,211.13217937324038,35.77940803226125,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,34.645821625828994,46.14246756531432,361.3689671671572,0.0,71.45546058491826,14.757185485328186,-18.298784053422512,-21.790123554756423,-10.427681333294338,-59.94396230065164,-14.678700916930191,-3.8590277450151698,0.5,51,5,14,2,1,3,2,0,2,13,5,17,17,0,1,1,5,2.4622,165.16289999999972,0,2,0,0,0,0,0,2,0,0,5,5,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,2,0,3,0,0,0,1,4,0,0,3,0,0,0,0,0,0,3,1,0,0,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4911,CCCN(CCC)S(=O)(=O)c1ccc(C(=O)O)cc1,0,13.655111095364067,-6.469469127928943,13.655111095364067,1.3035526108591589,0.8330157421148818,285.3649999999996,266.21299999999997,285.10347908800054,106,0,0.33517964490039753,-0.47763924301016997,0.47763924301016997,0.33517964490039753,1.368421052631579,1.9473684210526316,2.4210526315789473,4.423553102342916,1151.4631184852874,30.825908934703556,27.988455047819272,9.804951628746998,16.490140289311125,13.733741840828005,5.765556879164782,2.7346323460853776,4.458161687875666,1.619392159517112,3.002714592587515,0.8730323229573365,1.747267725327593,-1.4,17089606.094825067,3.620484338140882,6.675550267697799,3.778948267760264,140.24347309644708,5.1088081911072125,0.0,0.0,10.023291153407584,1.4311996572326342,5.969305287951849,0.0,13.212334168400758,4.305215991296234,0.0,13.703784234591359,36.91552463331194,32.18433915501497,15.941969191895648,42.994796370571954,15.992596441359433,1.4311996572326342,4.305215991296234,0.0,31.345117512767892,12.99371936863189,29.733126322350174,0.0,0.0,0.0,0.0,0.0,0.0,36.79484582331612,10.023291153407584,0.0,61.48127672408295,29.065158306170954,0.0,1.4311996572326342,0.0,74.68,94.36977563640565,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,26.10485366829659,170.88414207840188,0.0,9.74028133192365,3.5540165238501285,-1.3035526108591589,-1.8139495768080722,-6.541758471907281,-8.83695006110546,-17.6294267522334,-6.469469127928943,0.46153846153846156,19,1,5,0,0,0,1,0,1,4,1,6,9,0,0,0,1,2.1955,72.74210000000005,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +3016,CN1C(=O)CN=C(c2ccccc2)c2cc(Cl)ccc21,0,12.918181269421348,-3.3963741916519705,12.918181269421348,0.09436051272360801,0.79164533623487,284.74599999999975,271.642,284.0716407160004,100,0,0.24791727974282635,-0.31319991842941763,0.31319991842941763,0.24791727974282635,1.35,2.15,2.9,2.6556314634680573,1225.6647664732582,25.36736081903094,22.68063995447301,10.43656890049146,14.945987975476354,11.76114037048644,5.639104843495668,3.625365390788002,4.00332986379723,2.425848948628515,2.6148311851331285,1.5763015024710714,1.7180381798495314,-2.129999999999999,7179932.890588922,4.707120427856545,5.097712849630266,2.207528872522681,140.32699561478861,4.899909730850478,6.496859684315945,0.0,5.907179729351506,0.0,0.0,9.786941916707491,0.0,0.0,0.0,41.81303342854899,18.127256122989884,27.237638865928222,25.10665683915646,22.61439841428468,28.907190897038284,0.0,0.0,4.992404732635669,0.0,18.372596315448668,64.48888595844167,0.0,0.0,4.899909730850478,5.687386274683562,0.0,11.600939890232516,25.0915513167204,4.794537184071822,0.0,28.946764213606848,53.33175439394203,5.022633313741326,0.0,0.0,32.67,95.26782354984566,4.794537184071822,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.992404732635669,29.420801120445372,103.73640931192436,5.977093201478121,16.412064646846392,-0.6673899806836314,-3.210897266313931,-1.7632044175694965,-6.795238033999605,0.0,-6.744393017237762,0.0,0.125,20,0,3,0,1,1,2,0,2,2,0,4,2,0,0,0,3,3.153800000000002,81.81000000000004,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,2,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5479,CCS(=O)(=O)CCn1c([N+](=O)[O-])cnc1C,0,12.44852135298564,-6.283993764172331,12.44852135298564,0.6017058767951626,0.5584635043283493,247.2760000000001,234.17199999999997,247.062676896,90,0,0.3423775968177724,-0.35785768021371084,0.35785768021371084,0.3423775968177724,1.8125,2.5625,3.125,4.007275139743202,929.0812181745553,23.59385812713468,20.382882238819192,8.199378819746917,12.459230991019563,9.948370781967181,4.931534029561575,2.2827047067601525,3.697826572610568,1.284522632251655,1.913267203734448,0.6628872032562804,0.9253844781905479,-1.44,409248.53099949745,3.5247013719637437,4.6019453326954,2.7825859160309396,111.43788418650404,10.114318268765572,12.669754895130705,15.661657634417429,0.0,0.0,5.817862777835028,0.0,17.9688751530675,0.0,0.0,6.851892117295679,4.923311048817671,26.264434564148033,9.81723255366082,31.160969263359462,15.65511591425253,0.0,9.551078168738563,0.0,20.200643918907303,11.409913770300317,22.11161797758026,0.0,0.0,0.0,5.817862777835028,0.0,0.0,34.30209997218549,16.334112820733445,16.966210386061253,30.49615784550846,6.172895210814761,0.0,0.0,0.0,95.1,68.75338400888386,18.53211525309451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,17.819861230212858,119.96918658667168,0.0,12.685348048941798,11.20076022770219,-8.924651124338627,-3.2894770408163256,0.0,-1.4333059728521034,-11.757200294469644,-6.283993764172331,0.625,16,0,7,0,0,0,0,1,1,6,0,8,7,0,0,0,1,0.5344200000000001,57.946200000000026,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +21319,Cc1onc(-c2c(F)cccc2Cl)c1C(=O)N[C@@H]1C(=O)N2[C@@H](C(=O)O)C(C)(C)S[C@H]12,0,15.266449920130212,-3.987499907490924,15.266449920130212,0.3714833295896165,0.6840735128490479,453.8789999999999,436.7430000000002,453.0561475440004,158,0,0.32739938471432256,-0.479672802365529,0.479672802365529,0.32739938471432256,1.6,2.4,3.1,1.9943793067230722,1692.3533743523933,36.41133089340095,31.04705947530151,15.619485002247687,21.067161664040192,15.9365103479315,8.77550951590463,5.743860255080684,7.325019640084625,3.9511092582883047,5.303390513328658,2.7079502107759628,3.984091518192742,-2.59,3696056772.445848,8.505619044127661,6.984704279164452,2.9690817651239376,203.3012226677915,19.841626212219413,40.22055713533551,1.4118420783282006,5.907179729351506,7.33837938658414,5.969305287951849,9.589074368143644,9.184952231746642,0.0,11.761884949391115,22.800021855021257,32.640513767213626,17.083849458749537,18.81063614245964,50.37915014885238,41.14648958627849,1.4311996572326342,15.366386341264299,0.0,42.68840819397432,0.0,40.29080918834854,0.0,11.257379486545457,5.309813353288376,4.39041504767482,0.0,23.36282483962363,55.08177776782527,9.589074368143644,12.669112958341575,50.38339867178796,22.65035105996323,6.434475392069527,12.68857914377809,0.0,112.74,129.09195991820266,14.383611552215466,4.39041504767482,4.899909730850478,0.0,0.0,0.0,0.0,0.0,10.265471448232658,39.52845490532001,151.94373955919812,5.306885510681087,39.835669442179736,1.6762167187156196,-3.805694679782431,-9.677290516622442,-11.124453560790474,0.0,-11.46062802913482,0.0,0.3684210526315789,30,2,8,0,2,2,1,1,2,7,2,11,7,0,2,2,4,2.6878200000000003,106.62600000000003,1,0,0,0,0,1,0,0,1,1,3,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +9869857,CCn1nnc([C@H]2O[C@@H](n3cnc4c(N)nc(N[C@H](CO)Cc5ccccc5)nc43)[C@H](O)[C@@H]2O)n1,0,9.307128721874289,-4.250886861229802,9.307128721874289,0.0912249206704927,0.2146450075351181,482.5049999999998,456.2970000000003,482.2138493120007,184,0,0.2265898602729485,-0.3942301327088516,0.3942301327088516,0.2265898602729485,1.4285714285714286,2.342857142857143,3.142857142857143,1.8440493236085485,2356.1705471493933,46.80867211889949,42.60512911685503,16.605129116855032,27.611098296845338,21.541108350300807,8.974722692409342,6.162995763286003,6.162995763286003,4.086121539608074,4.086121539608074,2.659008032733695,2.659008032733695,-3.7199999999999998,3363243193120.1436,7.637319737676308,9.497883926757751,4.389053664415511,235.91682938768844,31.09281785613633,19.04749532768646,27.984537070473895,16.066342750684324,0.0,0.0,4.567099647791355,4.9839785209472085,14.76446326439343,10.197363616602075,30.212093538316473,24.001653605976923,6.853792780851101,44.56772889593121,51.71398488551072,22.93007999720551,4.293598971697903,39.72629014538894,0.0,50.18357606207716,17.588515571930937,47.903321241979626,0.0,0.0,11.029530329014648,11.766202058821523,0.0,0.0,84.0832274555744,17.606647539445373,0.0,57.938890067283594,36.5154652522827,4.235526234984602,11.16387793838399,0.0,195.16999999999996,138.6054928731933,1.3707585561702202,0.0,9.363605870290368,0.0,0.0,0.0,0.0,0.0,45.689108848420204,39.31040072771673,219.7255729330909,0.0,10.861147463774222,21.889175231264996,-4.140881308305325,-4.202942143523127,-10.39044247834349,-21.322228684100875,-11.169401013857325,0.0,0.42857142857142855,35,6,14,0,1,1,1,3,4,14,5,14,13,0,1,1,5,-0.5776999999999989,122.74549999999999,0,3,0,1,0,8,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +77997,CN(C)CCc1c[nH]c2ccc(Cn3cncn3)cc12,0,8.62968608276644,-3.9847191647804943,8.62968608276644,0.05421522003863233,0.7695062288280017,269.35199999999975,250.19999999999996,269.1640456080004,104,0,0.16593663095369748,-0.36088894016713485,0.36088894016713485,0.16593663095369748,1.55,2.5,3.3,2.5074057076900274,1430.7333720885013,30.419767061838236,28.736067977499793,9.736067977499792,17.32316252041838,14.63328157299975,5.186067977499791,3.4798373876248854,3.4798373876248854,2.1720665112249185,2.1720665112249185,1.4053327724624292,1.4053327724624292,-2.14,72854029.19704223,3.361948083424431,5.463887038515312,2.723455173166765,144.543244093831,9.87691300107973,15.348260540272893,1.4118420783282006,0.0,0.0,0.0,0.0,9.665781456092393,5.098681808301038,0.0,6.042418707663295,43.53631910061445,37.280265388913975,14.721411021337264,26.085496089392155,10.902924932081056,0.0,24.64137626547316,0.0,12.869784585645323,20.448513484880436,48.03379774513109,0.0,0.0,0.0,0.0,0.0,0.0,45.089889750353606,12.869784585645323,0.0,35.800556994457956,36.9068947617371,1.4118420783282006,10.902924932081056,0.0,49.74,97.1549304785884,0.0,0.0,9.658806205374436,0.0,0.0,0.0,0.0,0.0,10.082660329248245,26.085496089392155,152.59335233203637,0.0,2.6431007720481605,2.4507712909735364,-3.1185758639875694,0.0,-3.2223957808432004,-6.771741153170229,-14.657844930390358,0.0,0.3333333333333333,20,1,5,0,0,0,1,2,3,4,1,5,7,0,0,0,3,1.9118000000000002,79.68070000000003,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,4,1,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2796,CCOC(=O)C(C)(C)Oc1ccc(Cl)cc1,0,12.685100763556449,-4.128065948601664,12.685100763556449,0.7110840702340513,0.761604620096077,242.7020000000001,227.58199999999997,242.07097202,88,0,0.3493755771983238,-0.47616510751439406,0.47616510751439406,0.3493755771983238,1.5625,2.25,2.8125,3.8707155932430704,826.9476299829536,24.95566544670048,22.602709344400814,8.358638290419272,13.52638011184684,11.20960296266427,4.087567435673499,2.4179362959976047,2.795900769006832,1.2578945902560843,1.4468768267606982,0.6497806284613755,0.7442717467136823,-1.2199999999999998,959833.2005477302,3.164633946455787,5.212185200658441,3.417543059890344,121.38749209433293,9.473725907600098,5.749511833283905,5.601050810983688,0.0,0.0,5.969305287951849,0.0,4.794537184071822,0.0,0.0,11.600939890232516,44.725351182540216,17.359460319273307,14.783536579937607,34.82964143422522,17.570245178184365,0.0,0.0,0.0,26.156727162870727,6.558985242916289,29.192308144394506,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,11.600939890232516,18.129341341851827,9.53140013787187,0.0,41.117054694440355,24.16967483065318,5.022633313741326,0.0,0.0,35.53,73.62683767141726,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,36.89918118658587,121.03473174621686,5.614594133792515,12.685100763556449,-0.7110840702340513,-4.128065948601664,-3.7930730347694634,-4.186396919879062,0.0,-15.488028892303792,0.0,0.4166666666666667,16,0,3,0,0,0,1,0,1,3,0,4,7,0,0,0,1,3.060500000000001,62.79200000000004,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5310993,Cc1cnc(C(=O)O)c[n+]1[O-],0,11.417598733938018,-2.9255627598261533,11.417598733938018,0.39425925925925975,0.4454944230878123,154.12500000000003,148.07699999999997,154.037842052,58,0,0.3603431918273656,-0.6184082801022331,0.6184082801022331,0.3603431918273656,2.1818181818181817,3.0,3.6363636363636362,3.5312556868759124,473.79903741452904,13.378315177510851,11.119172062391506,5.119172062391506,7.696594530598119,5.393497957762698,2.485249667298835,1.6144588554002361,1.6144588554002361,0.8774934004097432,0.8774934004097432,0.42263879350578026,0.42263879350578026,-1.65,3417.3474154037585,2.7667365170983245,2.531037747759121,1.4289504397924644,71.0310761598264,10.316061215884503,1.3707585561702202,0.0,17.56075120051168,1.4311996572326342,5.969305287951849,0.0,9.77851570501903,4.7304076419062255,0.0,0.0,0.0,10.964167785806339,7.543653766984981,21.48754579793636,5.969305287951849,1.4311996572326342,4.9839785209472085,0.0,6.851892117295679,0.0,28.940899436103734,0.0,0.0,4.7304076419062255,0.0,0.0,0.0,16.06209200000627,0.0,12.05914514207297,23.036185954619842,12.345790421629522,0.0,1.4311996572326342,0.0,77.13,41.2852514584802,10.001790208849112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,8.284992438083735,41.32499043367347,0.0,14.105796012849584,14.922556453136808,-1.891638321995464,-1.411859410430839,0.0,-2.040949074074073,-2.9255627598261533,0.0,0.16666666666666666,11,1,5,0,0,0,0,1,1,4,1,5,2,0,0,0,1,-0.2783799999999999,34.893299999999996,0,0,0,0,1,2,0,0,1,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3332,O=C(O)Cc1ccc(-c2ccccc2)cc1,0,11.546705826907846,-3.1807156504577145,11.546705826907846,0.585019185143193,0.8487600767385667,212.24800000000008,200.15199999999996,212.083729624,80,0,0.30731476481220815,-0.48098617330805243,0.48098617330805243,0.30731476481220815,1.125,1.75,2.375,2.991602295405764,942.7820799584567,21.712660280651686,19.816496580927726,7.816496580927726,12.79954136606963,10.066496580927726,4.158248290463863,2.662457478565265,2.662457478565265,1.6020620726159658,1.6020620726159658,0.9770620726159658,0.9770620726159658,-2.0899999999999994,739113.1345065625,3.2014905114022945,4.619630554976046,2.4797169488047768,111.12045366673495,5.1088081911072125,0.0,0.0,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,0.0,54.38176836896965,16.690354475090988,2.7415171123404405,18.709751906861356,24.98168949305145,5.969305287951849,1.4311996572326342,0.0,0.0,6.372924901329379,0.0,59.94521986066665,0.0,11.126902983393991,0.0,0.0,0.0,0.0,11.078113479059063,11.167462085401201,0.0,20.641795609569414,54.38176836896965,0.0,12.558102640626625,0.0,37.3,83.41435303334188,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,16.509543775105055,92.97354796049376,0.0,11.546705826907846,3.57342488892047,-2.208484373687747,-1.7603156990783246,-7.52749628643162,-3.1807156504577145,0.0,0.0,0.07142857142857142,16,1,2,0,0,0,2,0,2,2,1,2,3,0,0,0,2,2.9807000000000015,63.21780000000003,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2471,CCCCNc1cc(C(=O)O)cc(S(N)(=O)=O)c1Oc1ccccc1,0,13.119187287588485,-5.823742769484332,13.119187287588485,0.8740447845804984,0.6195581690411603,364.4229999999998,344.26300000000015,364.10929274000057,134,0,0.33530654297326046,-0.4776377995523257,0.4776377995523257,0.33530654297326046,1.52,2.32,3.0,3.3220143111276106,1614.5659173703398,35.57446760021749,31.843916933783095,12.660413514710822,20.06539668411513,15.733630917791741,7.423805169628644,3.9241719222051414,5.282552892325318,2.332608677646354,3.135973675380007,1.4447826158926267,2.048448878895174,-2.579999999999999,807087738.6809258,5.45625806531005,7.9968334466831505,4.944533222538899,174.39328791052495,15.155484498195637,13.46867946545808,7.161353911612106,10.023291153407584,1.4311996572326342,5.969305287951849,0.0,18.33735740457279,0.0,0.0,31.352073141614945,30.54259973198256,18.833686689847923,20.846147659572097,49.22566844701617,21.679982716042996,1.4311996572326342,0.0,5.12502323617203,24.493225395472212,11.80667303760432,47.86038244534006,0.0,11.49902366656781,15.171699543260456,5.687386274683562,11.49902366656781,0.0,25.992770147703943,10.023291153407584,0.0,51.887867494446816,47.192414429160834,4.235526234984602,1.4311996572326342,0.0,118.71999999999998,122.46431049719945,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,32.3357257447408,187.6852173589921,0.0,10.511324334052055,1.6781146141116383,-3.4072851972579152,-5.169753424785893,-9.149538592367465,-8.481784287183146,-8.259218702743741,-5.823742769484332,0.23529411764705882,25,4,7,0,0,0,2,0,2,6,3,8,10,0,0,0,2,3.036500000000001,94.68820000000004,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +5770,COC(=O)[C@H]1[C@H]2C[C@@H]3c4[nH]c5cc(OC)ccc5c4CCN3C[C@H]2C[C@@H](OC(=O)c2cc(OC)c(OC)c(OC)c2)[C@@H]1OC,0,15.001012263050237,-5.871353694906193,15.001012263050237,0.5365824976624278,0.3735666920618681,608.6880000000018,568.3680000000003,608.2733808600011,236,0,0.3382743425592041,-0.49668697934988904,0.49668697934988904,0.3382743425592041,1.0454545454545454,1.8636363636363635,2.6136363636363638,1.9006697801404868,3206.4903428732255,65.8420523137191,61.068661805174685,21.068661805174685,36.79543649528192,31.33123390796076,11.3840203124608,8.23073512333375,8.23073512333375,5.955158691175102,5.955158691175102,4.143387963167038,4.143387963167038,-3.96,5.106049767003517e+19,8.438537482001717,12.202876490330926,5.012352023426143,312.43030010704933,38.1350439468296,17.909547887183884,12.910865744896011,5.749511833283905,0.0,11.938610575903699,9.694446914922299,4.794537184071822,0.0,0.0,0.0,60.639816397064465,60.49080469232019,88.30478640024833,97.61854081371071,22.84153550798476,0.0,9.87691300107973,17.681873056089238,37.29670322623776,55.22143412192741,47.03292451655893,0.0,22.99804733313562,18.947451815200196,0.0,22.99804733313562,0.0,89.19699375281081,25.37805094680135,17.681873056089238,93.83869412396123,30.212093538316473,1.4118420783282006,10.902924932081056,0.0,117.78000000000003,212.94943076301354,28.13851616112354,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,28.421177722800294,36.26430974571512,378.2413834842817,0.0,28.215786660161015,-1.414719279887198,-7.527941341686861,-31.12431543556845,-13.785031728211653,-27.118670924967674,-10.277933602253869,-24.79189116520056,0.5151515151515151,44,1,11,1,2,3,2,1,3,10,1,11,14,1,1,2,6,4.171100000000004,160.68719999999962,0,0,0,0,0,1,1,0,0,0,2,2,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,2,0,6,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4044,Cc1cccc(Nc2ccccc2C(=O)O)c1C,0,12.13797163695725,-3.36219706632653,12.13797163695725,0.08247685185185194,0.8600549198257492,241.2900000000001,226.16999999999996,241.11027872,92,0,0.33730974624233334,-0.47758334051759543,0.47758334051759543,0.33730974624233334,1.2777777777777777,2.111111111111111,2.888888888888889,3.171297830754386,1138.562805874072,25.790010549841313,23.763710176427686,8.763710176427685,14.888857763546673,11.960923771927643,4.6054618859638214,3.096474472940213,3.096474472940213,1.9506411396068795,1.9506411396068795,1.1294683648559405,1.1294683648559405,-2.2899999999999996,5058058.824267359,3.3807187823742866,4.918407118135079,2.3483829738413826,127.30822609748137,10.418621544395588,0.0,1.4118420783282006,0.0,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,0.0,24.16967483065318,42.957943340975234,13.91193761170488,20.846147659572097,29.13504868372009,17.344077837318974,1.4311996572326342,0.0,0.0,13.703784234591359,5.309813353288376,58.98728542873405,0.0,0.0,5.309813353288376,11.374772549367124,0.0,0.0,11.078113479059063,0.0,13.703784234591359,39.304752889375685,42.29693095364306,1.4118420783282006,1.4311996572326342,0.0,49.33,90.03514750064438,4.794537184071822,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,20.662902965773693,116.91846325953217,0.0,12.13797163695725,3.6979220337826493,-5.543360129545644,-1.6430854093180487,-7.260122131414294,0.0,-6.641122593327455,0.0,0.13333333333333333,18,2,3,0,0,0,2,0,2,3,2,3,5,0,0,0,2,3.7452400000000017,72.60000000000002,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3749,CCCCC1=NC2(CCCC2)C(=O)N1Cc1ccc(-c2ccccc2-c2nn[nH]n2)cc1,1,14.74940560147542,-4.561636308077146,14.74940560147542,0.11392067273576045,0.5867441988589208,428.5399999999996,400.31600000000014,428.23245951600086,164,0,0.25568094036868405,-0.29399063575638434,0.29399063575638434,0.25568094036868405,1.21875,2.0,2.71875,1.9222523653167847,2325.8224611299015,46.64338170096983,43.59152986346361,15.591529863463613,26.656331406521435,22.56658532498174,8.619371729481786,5.97567878910834,5.97567878910834,4.112715537817125,4.112715537817125,2.744508170787981,2.744508170787981,-3.3499999999999996,1182533509711.2373,5.954609516715385,8.648957288465539,3.72041056606736,226.90060855943815,0.0,11.374545038140614,0.0,7.236246576328128,5.907179729351506,0.0,14.686851647557969,0.0,5.206409844936912,10.197363616602075,74.31001648259019,41.02251427473399,35.239271847920115,20.204445246018143,43.21686027899598,11.742799515108775,0.0,25.517068288044335,4.992404732635669,63.498151363300614,0.0,53.90280115300335,0.0,22.514758973090913,0.0,0.0,0.0,0.0,42.79879305553645,11.291396868387768,0.0,94.03629893489419,53.33175439394203,1.4118420783282006,22.514758973090913,0.0,87.13000000000001,156.5584207353542,4.794537184071822,0.0,5.206409844936912,0.0,0.0,0.0,0.0,0.0,20.403153444892613,38.422323094924145,235.4658180496508,0.0,17.359147147317604,10.453310037681998,-8.639368866431578,-5.477787404280962,-9.899044592731878,-30.36442511655883,-8.397649254647213,0.0,0.4,32,1,7,1,1,2,2,1,3,5,1,7,8,1,0,1,5,4.777400000000004,123.75870000000002,0,0,0,0,0,4,1,0,0,0,1,1,0,0,1,5,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +5284447,C[C@@H]1C/C=C/C=C/C=C/C=C/[C@H](O[C@@H]2O[C@H](C)[C@@H](O)[C@H](N)[C@@H]2O)C[C@@H]2O[C@](O)(C[C@@H](O)C[C@H]3O[C@@H]3/C=C/C(=O)O1)C[C@H](O)[C@H]2C(=O)O,0,14.2100069503378,-6.205381344551727,14.2100069503378,1.522858024879676,0.1568888746348767,665.7330000000021,618.3570000000003,665.3047405640012,262,0,0.3302919930218035,-0.4808829835167391,0.4808829835167391,0.3302919930218035,1.0851063829787233,1.9574468085106382,2.702127659574468,2.6271548830079032,3236.5790041502532,74.78372809251715,69.25444137153018,22.254441371530177,41.535164177981656,34.49175834570784,11.647841411924748,7.879112672642114,7.879112672642114,4.694246901242359,4.694246901242359,2.812269667876418,2.812269667876418,-2.7600000000000002,1.533920352268234e+24,9.313564658812817,16.567442348843958,10.61350564972991,339.6118707924219,60.0568808913698,26.95769592286944,12.053189521107495,7.155998286163171,1.4311996572326342,11.938610575903699,4.794537184071822,4.794537184071822,0.0,0.0,48.41657396828453,19.755855980626926,61.21959170757626,78.73470689274438,120.20950613108201,11.938610575903699,8.587197943395806,0.0,11.613674661089352,124.43967100019528,0.0,60.52071746035566,0.0,0.0,5.719716975726273,0.0,0.0,0.0,128.6187202676672,33.27338913714389,5.893957685363079,99.02799243187677,60.52071746035566,2.8236841566564013,1.4311996572326342,0.0,230.98999999999995,208.51267369754405,23.29665992984584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.126575054243375,65.37346909038877,429.251914455907,0.0,27.795063597565008,23.70467042761188,-1.522858024879676,-17.97215719237371,-29.826658559322034,-86.30419885762585,-9.375775846882725,0.0,0.6363636363636364,47,8,14,0,4,4,0,0,0,14,7,14,11,0,3,3,4,0.11970000000000325,165.1591999999998,1,5,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,3,0,0,1,1,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54677971,CN1C(C(=O)Nc2ccccn2)=C(O)c2sccc2S1(=O)=O,0,13.153302154195007,-5.186117239334002,13.153302154195007,0.2616260393046108,0.8677133347559903,337.38199999999983,326.29400000000004,337.0190978320003,114,0,0.29328946206428486,-0.504204162177101,0.504204162177101,0.29328946206428486,1.5909090909090908,2.4545454545454546,3.227272727272727,2.3543596956426494,1322.061993837143,25.20422411221441,21.291130529283052,11.924123691138504,15.066509124140644,10.733630917791743,7.634728941556287,3.773716861999339,6.313742784717354,2.5111232098291145,4.923484745261976,1.5783685401360832,3.7630850171011585,-2.39,8895126.691613456,6.386585671725946,5.108907741732905,2.1433952203281574,145.7384728394697,10.418621544395588,10.713346253352803,12.86804626304021,0.0,17.361670539991724,0.0,9.099753175368056,13.401775505276145,0.0,11.336785877934737,6.042418707663295,23.48337053265748,17.260997779607667,13.101698530722619,32.06981144336815,38.844284410185026,1.4311996572326342,9.289194512243443,0.0,4.895483475517775,12.285640253570621,46.27287095789267,0.0,0.0,5.309813353288376,5.817862777835028,0.0,11.336785877934737,35.69880631731334,14.817828337479405,0.0,17.213974199233277,46.29120723970915,1.4118420783282006,7.19036452888881,0.0,99.6,89.95689585723922,13.212334168400758,0.0,5.309813353288376,11.336785877934737,0.0,0.0,0.0,0.0,10.092786712054421,15.179868741092815,109.99530245551439,0.3205069956765483,15.000230539478823,3.44871885274618,-1.3583692365835225,-3.7289943940539176,-3.4873374530278385,-0.8850215678047568,-3.618918952611911,-5.186117239334002,0.07692307692307693,22,2,7,0,1,1,0,2,2,6,2,9,4,0,0,0,3,1.6425,81.68330000000003,0,1,1,0,0,1,0,0,0,0,1,1,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0 +19090,CC(=O)[C@@]1(O)CC[C@H]2[C@@H]3C=C(C)C4=CC(=O)CC[C@]4(C)[C@H]3CC[C@@]21C,0,14.075120368656844,-5.467892691798945,14.075120368656844,2.1990462327225044,0.7833310650035927,342.4789999999995,312.23900000000003,342.2194948200008,136,0,0.21152913422184924,-0.38150584003118665,0.38150584003118665,0.21152913422184924,1.4,2.28,3.0,2.7494407412020796,1824.6234096489222,44.1712083963243,42.22474487139159,12.22474487139159,23.685445389440535,21.770620726159656,6.862372435695795,5.7144345083117605,5.7144345083117605,4.3134459934385125,4.3134459934385125,2.9681706996939052,2.9681706996939052,-1.22,31953458221.9245,3.8276173401699602,5.156059185562956,2.0201465491060184,192.35356796711793,5.1088081911072125,5.601050810983688,11.566489892729878,1.4311996572326342,0.0,0.0,9.589074368143644,0.0,0.0,0.0,25.328960510696195,80.2904485428291,48.798396387322136,2.7415171123404405,54.449880688187285,11.566489892729878,1.4311996572326342,0.0,28.511853994882795,71.24616868814267,0.0,23.25035255220967,0.0,0.0,0.0,0.0,0.0,0.0,23.707548552053414,9.589074368143644,28.511853994882795,105.39711600609525,23.25035255220967,0.0,0.0,0.0,54.37,134.57486512796504,19.184384261335182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,31.58788789297747,262.12215303450046,0.0,27.446472823409543,4.199399144484596,-20.360458186360972,-21.70507041648795,-4.7564772606892465,-30.542660160840192,-18.90335897801627,0.0,0.7272727272727273,25,1,3,4,0,4,0,0,0,3,1,3,6,2,0,2,4,4.004500000000003,96.86380000000005,0,1,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +441351,C=CC[N+]1([C@H]2C[C@H]3[C@@H]4CC[C@H]5C[C@H](O)[C@@H](N6CCOCC6)C[C@]5(C)[C@H]4CC[C@]3(C)[C@H]2OC(C)=O)CCCC1,0,14.349712792143764,-6.956028202947852,14.349712792143764,1.7697721157071178,0.32490282166161777,529.7860000000004,476.36200000000036,529.3999845960914,214,0,0.302650387425947,-0.4556134138317346,0.4556134138317346,0.302650387425947,1.3157894736842106,2.1578947368421053,2.8947368421052633,2.2604747939749075,3068.2265855304336,73.43072142031815,71.52742035285537,18.52742035285537,38.86567871708941,36.6982407461053,10.28999245564144,7.866415239242799,7.866415239242799,5.775133235014376,5.775133235014376,4.1525825872000155,4.1525825872000155,-0.95,1.660756843050116e+24,5.329598682937991,10.151627411619552,4.226949495269952,304.79045852604247,19.065564956401936,7.3886510245198656,6.080018026949988,1.4311996572326342,0.0,5.969305287951849,9.694446914922299,0.0,0.0,0.0,20.234823196593226,73.28044236486093,99.74457714978998,59.24994590828375,95.13954706132517,5.969305287951849,1.4311996572326342,4.899909730850478,34.405811680245876,102.10782145445071,45.6022689074123,12.583110708037434,0.0,0.0,0.0,0.0,0.0,0.0,91.69034362284837,14.268263091671919,34.405811680245876,149.1914453847027,12.583110708037434,0.0,0.0,0.0,59.00000000000001,210.05125862664335,51.40032809385934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,30.841716622096637,497.27261487505876,0.0,12.579940676436646,4.10606993103559,-13.581147072816226,-30.74759959948168,-16.01366323527005,-68.60909309314786,-57.75712248181533,0.0,0.90625,38,1,6,4,2,6,0,0,0,5,1,6,9,4,2,6,6,4.407500000000003,148.31419999999983,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2733526,CC/C(=C(\c1ccccc1)c1ccc(OCCN(C)C)cc1)c1ccccc1,0,8.907225109179475,-4.200682375862839,8.907225109179475,0.8746319390568194,0.4505726789966775,371.5239999999996,342.29200000000014,371.2249145480008,144,0,0.11890333123050092,-0.49226449447092097,0.49226449447092097,0.11890333123050092,0.8571428571428571,1.4642857142857142,2.0714285714285716,2.7970535147392726,2057.399958039296,44.83146243416869,42.85546188596382,13.855461885963821,25.33273932142449,21.8290686837138,7.329068683713801,4.7304618859638214,4.7304618859638214,3.0376021268736673,3.0376021268736673,1.9715584286120942,1.9715584286120942,-2.839999999999999,145170626812.7436,4.656400191556886,9.910993617354528,5.113643813383921,209.39304881919037,9.636772684650527,12.308497076200194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.36091660925524,60.245979652449975,24.3167209145288,21.932136898723517,44.488861082736456,11.146209060138535,0.0,4.899909730850478,0.0,13.224817018625059,27.007498727796726,101.28421638237714,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,31.907408458647204,0.0,0.0,69.66716962265248,84.59386190728614,0.0,11.146209060138535,0.0,12.47,163.31216275307187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.488861082736456,243.38951019337827,0.0,-0.8746319390568194,0.0,-7.001092089915196,-1.567351463229665,-18.452389782827872,-4.028524073098252,-20.13218751191707,0.0,0.23076923076923078,28,0,2,0,0,0,3,0,3,2,0,2,11,0,0,0,3,5.9961000000000055,119.58200000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10416272,O=C(Cn1cc(C(F)(F)F)ccc1=O)NCc1cc2cc(C(=O)N3CCC(N4C(=O)OCc5ccccc54)CC3)ccc2o1,0,14.547411843270186,-5.733896710435213,14.547411843270186,0.6093935892738993,0.3399215141480337,608.5730000000013,581.3570000000003,608.1882692440007,228,0,0.4173166509585107,-0.4591905317372594,0.4591905317372594,0.4173166509585107,1.1136363636363635,1.8863636363636365,2.659090909090909,1.5177067069324282,3092.884901763599,54.925320561303366,47.8722375438107,20.872237543810694,31.74731211370553,24.85682824211902,11.40961464661906,8.017823368373028,8.017823368373028,5.218856567552826,5.218856567552826,3.339944079367683,3.339944079367683,-5.069999999999999,166947600527685.75,11.132435035175154,11.547814741586956,5.895010123333876,286.1368773599251,23.930836622783605,24.399112487748916,1.4118420783282006,5.907179729351506,11.466446624403513,12.26953858838189,19.283521283065944,4.794537184071822,13.171245143024459,0.0,18.127256122989884,49.00036204863853,58.70612140268016,42.42135146176048,73.76043512484728,34.564230160432025,0.0,14.776822731930208,0.0,44.492745400000054,17.893629099482368,99.40148826053701,0.0,0.0,15.76898997919086,23.653168601779843,0.0,0.0,46.38622074526479,35.26040326686352,0.0,75.63071134112175,75.80877040857288,1.4118420783282006,10.969244356107037,0.0,114.09,206.33437846830992,33.72015243548197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,40.09795691963706,278.1791724104768,0.0,52.757910421871244,-2.42892839111167,-10.587889692141921,-6.888380740910072,-20.187714585217677,-19.594023572303364,-21.333479183996708,0.0,0.2903225806451613,44,1,10,0,2,2,2,2,4,7,1,13,6,0,1,1,6,4.691100000000005,151.79619999999974,0,0,0,0,0,1,0,0,0,0,3,3,0,0,0,3,1,0,0,0,1,0,0,0,0,3,0,3,0,1,0,0,0,0,2,0,2,0,0,0,0,1,1,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4913,CCN(CC)CCNC(=O)c1ccc(N)cc1,0,12.970519416099773,-4.474923351284959,12.970519416099773,0.32237406266611446,0.7315396930195435,235.33100000000016,214.16299999999995,235.168462292,94,0,0.25082564185696543,-0.3987282195063003,0.3987282195063003,0.25082564185696543,1.588235294117647,2.2941176470588234,2.8823529411764706,3.9266653794212165,1020.5844256283864,30.77350269189626,29.249889076963736,8.249889076963736,16.523502691896258,14.38740571823168,4.045764931731805,2.423186553158378,2.423186553158378,1.3685260123246668,1.3685260123246668,0.6783613067248386,0.6783613067248386,-1.5499999999999998,17843347.137552105,2.4281142215222378,6.909922945262059,4.443998045644615,132.47565697138018,15.929440059865128,0.0,4.235526234984602,0.0,5.907179729351506,0.0,4.794537184071822,0.0,0.0,0.0,13.703784234591359,37.163394199285065,40.693659809055106,8.224551337021321,33.70371743012038,11.594566004035068,0.0,10.209723084138854,0.0,13.703784234591359,31.70715571299005,29.733126322350174,0.0,0.0,11.029530329014648,5.687386274683562,0.0,0.0,36.79452819746576,0.0,0.0,48.73542692142417,24.16967483065318,4.235526234984602,0.0,0.0,58.36,91.22863838237924,4.794537184071822,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,0.0,28.909180246048553,161.33118160833962,0.0,11.857449604050883,-0.97785619803477,-2.642901715703913,-2.117799981103553,-4.90365049736352,0.0,-25.3797561535181,0.0,0.46153846153846156,17,3,4,0,0,0,1,0,1,3,2,4,9,0,0,0,1,1.3403999999999996,70.97560000000004,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +71329,CN(CCOc1ccc(NS(C)(=O)=O)cc1)CCc1ccc(NS(C)(=O)=O)cc1,0,12.352179792068846,-5.783523567232554,12.352179792068846,0.9051868438143869,0.5525349937837031,441.57499999999965,414.35900000000015,441.13921296400076,160,0,0.22931888212140222,-0.4922623354579722,0.4922623354579722,0.22931888212140222,0.9655172413793104,1.5172413793103448,2.0344827586206895,2.910683057152405,2056.4229815988874,44.867360819030935,40.69937881974692,15.33237198160237,24.434021847188944,20.110772799014317,9.596472265615681,4.422185745830139,6.6875994768128795,2.2268465001887,3.0727114546938377,1.304761460415862,1.9680522290859448,-2.2999999999999994,46435194891.177155,5.893901252970331,9.94823455513327,9.638465236464151,210.5880639471013,9.636772684650527,12.308497076200194,2.8236841566564013,20.046582306815168,0.0,0.0,9.430239227468263,16.835593968657875,0.0,0.0,12.08483741532659,55.16671553928839,44.92987026055234,26.075433763935113,58.66510498336987,31.42135485618229,0.0,4.899909730850478,0.0,6.372924901329379,48.326618941531606,53.90280115300335,0.0,5.749511833283905,14.167102181268312,11.374772549367124,5.749511833283905,0.0,60.631883413571686,26.419507208144548,0.0,39.83241539595251,48.33934966130636,2.8236841566564013,0.0,0.0,104.81,150.67312141618103,16.835593968657875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.82951101471196,266.2954563204646,0.0,-1.1784000899359852,0.0,-4.981268459812038,-1.6726844745007832,-13.39717673664782,-12.373158885837778,-18.095708976765103,-11.513725363631789,0.3684210526315789,29,2,8,0,0,0,2,0,2,6,2,10,14,0,0,0,2,1.9828999999999997,116.51300000000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 +2477,O=C1CC2(CCCC2)CC(=O)N1CCCCN1CCN(c2ncccn2)CC1,0,13.968845510684812,-5.126552713735483,13.968845510684812,0.5677056929165754,0.551662995519089,385.51199999999955,354.2640000000001,385.2477752320009,152,0,0.22923427935701327,-0.33826073198235146,0.33826073198235146,0.22923427935701327,1.0,1.6071428571428572,2.25,1.9685873323589473,1869.553294026214,47.11036598507973,44.55256455842752,13.552564558427518,25.495812251228752,22.815136661213593,7.315136661213592,4.909569707441765,4.909569707441765,3.1262770449508914,3.1262770449508914,1.949285344622656,1.949285344622656,-2.02,198625766849.66882,4.506206523659493,8.553559552791647,4.345937406866898,210.21385228144442,4.899909730850478,0.0,0.0,17.762698739689505,0.0,0.0,19.388893829844598,9.967957041894417,0.0,0.0,12.745849802658759,43.445968466693536,90.4741439939532,9.59530989319154,52.0825896094205,17.762698739689505,0.0,19.76777650359537,5.41499046939678,50.98339921063503,43.88106783674615,18.388209129292818,0.0,0.0,4.899909730850478,5.948339280986494,0.0,0.0,70.56329406819407,9.589074368143644,5.41499046939678,93.4769144519118,18.388209129292818,0.0,0.0,0.0,69.64000000000001,146.2301848474613,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,42.49351524127684,259.5664776232383,0.0,31.327456126985208,0.0,-4.760753365258612,-7.454823034256979,-1.023154966939839,-40.126410351815025,-27.778792031953095,0.0,0.7142857142857143,28,0,7,1,2,3,0,1,1,6,0,7,6,1,2,3,4,2.0881999999999996,106.77400000000006,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +60825,Nc1ccn([C@@H]2CS[C@H](CO)O2)c(=O)n1,0,12.183768975182666,-3.2265102985638707,12.183768975182666,0.03606245275888087,0.7038615838122525,229.26100000000008,218.17299999999997,229.052112212,82,0,0.35114912918772,-0.39275837743683834,0.39275837743683834,0.35114912918772,2.2666666666666666,3.2,4.0,2.7189959529900185,790.6851049586654,20.292528739883945,17.974633948355326,7.791130529283052,11.633463462290253,8.869061139355242,4.38288223881919,2.291056311397593,3.0700954137600545,1.3791758992765704,2.0079204707593625,0.8123388092565063,1.2875682845657765,-1.05,223547.59644859325,3.474073640950248,4.213446893102682,2.137865937402115,105.72436870061699,15.565388120633536,17.43386559854235,2.8236841566564013,1.4311996572326342,0.0,5.689743398203474,4.567099647791355,4.794537184071822,4.9839785209472085,11.761884949391115,0.0,6.042418707663295,14.619369208305358,14.783536579937607,23.63542375092542,17.57974772722614,1.4311996572326342,9.551078168738563,0.0,11.616002820707322,17.98365910379272,22.69959450075335,0.0,0.0,11.409460373929747,5.817862777835028,0.0,11.761884949391115,33.76707815591562,4.736862953800049,0.0,17.170021259298313,17.009851102549877,2.8236841566564013,0.0,0.0,90.36999999999999,47.60286504329033,4.794537184071822,0.0,22.04870157290874,0.0,0.0,0.0,0.0,0.0,10.092786712054421,19.957815217050843,87.79844009056151,-0.20905499391114524,15.353871409674982,3.7387351032138185,-7.772240005965656,-0.8536857914462079,-0.9649469062316285,-4.364863945578232,-3.226254960317461,0.0,0.5,15,3,6,0,1,1,0,1,1,7,2,7,4,0,1,1,2,-0.5941000000000001,56.36320000000001,0,1,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +60871,CC(C)(C)C(=O)OCOP(=O)(COCCn1cnc2c(N)ncnc21)OCOC(=O)C(C)(C)C,0,14.533102312333465,-7.585334435091083,14.533102312333465,0.2817937252503717,0.2071524581096599,501.4769999999997,469.2210000000003,501.1988496140009,190,0,0.3613916772208002,-0.43755822750865275,0.43755822750865275,0.3613916772208002,1.1176470588235294,1.7352941176470589,2.2941176470588234,3.0096757591681724,2050.5721736303017,52.853006672199015,47.94926789671065,16.84369508771057,28.591207134045955,23.693065976074166,9.341297495584543,5.399603454891069,6.9422621654013525,2.7709369869963703,3.7156186589988867,1.3741009073688626,1.9141385739676262,-2.6,1856381500984.3782,6.996890552062033,11.217020695307696,8.012835207612456,242.43404594845947,24.497405484917778,26.344697416062004,14.288724155259157,13.490091169006394,0.0,19.534372902691587,23.201616976498606,14.951935562841626,0.0,0.0,0.0,41.111352703774074,31.1705136953799,31.916889232697393,81.35864667966176,36.5161136189106,0.0,19.51903521063298,10.82998093879356,47.60821238809001,32.068867035107154,12.606743427932454,0.0,0.0,5.719716975726273,5.817862777835028,0.0,7.595762326787885,57.80679584591757,43.909065522214696,10.82998093879356,82.23410938888067,12.606743427932454,2.8236841566564013,11.16387793838399,0.0,166.97999999999996,133.91020043310755,14.154122653074971,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,38.21001874766541,43.94644084176302,284.6062956994228,0.0,36.86005949558843,0.0,-11.989310933570277,-7.309618001510963,0.0,-7.850067177914749,-46.509802424701945,-7.585334435091083,0.65,34,2,13,0,0,0,0,2,2,13,1,14,12,0,0,0,2,2.7025000000000006,121.15890000000006,0,0,0,1,0,4,0,0,0,0,2,2,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,2,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9912089,COc1ccc(CC(C)NCC(O)c2ccc(O)c(NC=O)c2)cc1,0,11.622908134541147,-4.522768158961117,11.622908134541147,0.5104469977681143,0.4136022576828499,344.4109999999996,320.21900000000005,344.1736072480007,134,0,0.2932114271432341,-0.5057738119339046,0.5057738119339046,0.2932114271432341,1.52,2.4,3.08,3.0912633711570545,1600.4547032509943,38.781574381404035,36.02742035285537,12.02742035285537,21.86003709061917,17.875971689087216,6.1650479171595745,3.9633453933542153,3.9633453933542153,2.360794224777607,2.360794224777607,1.3462722844931747,1.3462722844931747,-2.57,4253914384.7689853,4.578965447221421,9.054618196642002,5.478062757805403,181.01509711225458,25.574106042591225,14.28162430106623,1.4118420783282006,7.81734660255044,1.4311996572326342,0.0,4.794537184071822,0.0,0.0,0.0,18.127256122989884,48.52139483267223,23.480820602027347,33.88370087838856,49.987871800147126,12.07353322000137,2.8623993144652684,5.309813353288376,0.0,25.32272751392469,18.84462549648691,53.42383393703705,0.0,11.49902366656781,15.356489660376802,5.687386274683562,11.49902366656781,0.0,39.01886725354567,11.167462085401201,0.0,51.4739842510441,42.29693095364306,2.8236841566564013,0.0,0.0,90.82,126.47355718730623,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.954479336014472,33.10125459452607,197.13456777279686,0.0,11.622908134541147,6.570397722536771,-4.664805297989926,-2.499618906865203,-14.897489581700285,-10.453737087047287,-8.77724697815179,-3.3683091114536365,0.3157894736842105,25,4,6,0,0,0,2,0,2,5,4,6,12,0,0,0,2,2.2233,96.91600000000003,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5311100,O=C(O)CCC/C=C\C[C@H]1[C@@H](O)C[C@@H](O)[C@@H]1/C=C/[C@@H](O)COc1cccc(C(F)(F)F)c1,1,13.761420547037826,-5.695375525265267,13.761420547037826,1.685775776571812,0.29845407001772745,458.4729999999996,429.24100000000016,458.19162330800077,178,0,0.416044691443936,-0.4905399284047445,0.4905399284047445,0.416044691443936,1.46875,2.3125,3.03125,3.2739467103045983,1994.72313731683,48.88638686701863,44.08338316181086,15.08338316181086,26.90400716498919,21.87880888799281,7.745815726137361,5.055837273767558,5.055837273767558,2.9031055660433314,2.9031055660433314,1.6937137071249562,1.6937137071249562,-2.359999999999999,626818650340.9423,6.835164278764472,12.034130008553658,8.291237339854572,225.28981593083046,25.1720957182289,18.38851510315018,0.0,4.293598971697903,1.4311996572326342,12.145603805395325,4.794537184071822,0.0,13.171245143024459,0.0,30.25070569180556,43.1399885123411,35.08891016206448,35.54334877580983,77.4068419495807,5.969305287951849,5.724798628930537,0.0,11.787915370726157,56.280977104940334,6.558985242916289,53.941413306492436,0.0,5.749511833283905,4.736862953800049,13.171245143024459,5.749511833283905,0.0,55.49717634784485,10.970835701515297,11.787915370726157,71.69703990259943,48.37796181479544,0.0,1.4311996572326342,0.0,107.22000000000001,140.288108146311,17.96578232709628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.1720957182289,39.99376253318606,282.00404276139744,0.0,11.896822434031971,15.12878095685192,-2.3373092897646206,-14.57794273428028,-17.69742006266097,-42.9511304507924,-4.632510281449711,0.0,0.5217391304347826,32,4,6,1,0,1,1,0,1,6,4,9,14,1,0,1,2,3.560400000000003,110.94020000000005,1,3,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5280793,C=C1CC[C@H](O)C/C1=C/C=C1\CCC[C@@]2(C)[C@H]1CC[C@@H]2[C@H](C)/C=C/[C@H](C)C(C)C,0,9.91695424697657,-5.893228248414713,9.91695424697657,2.055133601575286,0.4732790343822408,396.6589999999993,352.30700000000013,396.33921602800126,162,0,0.21046123820759283,-0.3927727887437486,0.3927727887437486,0.21046123820759283,1.3103448275862069,2.2758620689655173,3.0344827586206895,3.169241417237669,2376.373719440072,59.325908934703556,58.40824829046386,14.408248290463863,31.256812594486455,29.612372435695796,7.704124145231932,5.579124145231932,5.579124145231932,3.664562072615966,3.664562072615966,2.2640465544619746,2.2640465544619746,-1.08,36586261485019.7,3.702896801971478,9.376060198871272,4.983265487164618,241.51638854492015,5.1088081911072125,0.0,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,0.0,76.14499559276105,91.44128263691645,49.347308022127955,15.675327920141527,64.05142610642673,0.0,1.4311996572326342,0.0,34.88477889621217,91.3228778240634,0.0,47.45863953635193,0.0,0.0,0.0,0.0,0.0,0.0,12.620025875289835,0.0,34.88477889621217,144.18547771243271,47.45863953635193,0.0,0.0,0.0,20.23,173.6662962566276,13.7075855617022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,46.666232010849924,380.4708515351234,0.0,0.0,3.9544271180932604,-12.933317154013842,-27.406042189422564,-11.317509568021311,-43.94339938700502,-26.991677021420685,0.0,0.7142857142857143,29,1,1,3,0,3,0,0,0,1,1,1,11,3,0,3,3,7.641000000000008,125.6418000000001,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4919,OC(CCN1CCCC1)(c1ccccc1)C1CCCCC1,0,9.366169453892667,-5.17496220710507,9.366169453892667,1.0873364276266058,0.8863958351409401,287.44699999999943,258.215,287.2249145480008,116,0,0.21136820496973216,-0.3848278250934458,0.3848278250934458,0.21136820496973216,1.2380952380952381,1.9523809523809523,2.619047619047619,2.8519261690348054,1493.1132904402787,40.248558665513926,39.35546188596382,10.355461885963821,21.602112056107202,20.033192828945733,5.624944538481869,3.727006611097835,3.727006611097835,2.4457704764773673,2.4457704764773673,1.4882448921890639,1.4882448921890639,-0.8600000000000001,4211417628.358664,2.8211221169459892,6.933140526690529,3.4898666476003646,169.5488704849875,10.00871792195769,0.0,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,0.0,49.330868242304604,56.315753052338856,38.02430647623101,12.454843591834788,43.49004776387339,0.0,1.4311996572326342,4.899909730850478,5.893957685363079,56.584450021618714,19.490579052947837,35.77554503001347,0.0,0.0,0.0,0.0,0.0,0.0,30.930496632138162,5.601050810983688,5.893957685363079,94.92809027509811,30.212093538316473,0.0,0.0,0.0,23.47,122.64444152079362,1.3707585561702202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,38.441680673828586,244.2818056372189,0.0,-1.0873364276266058,4.439888983371125,-7.203204837490553,-5.143440098261527,-8.126164324825943,-36.72413796877159,-13.687410963613846,0.0,0.6842105263157895,21,1,2,1,1,2,1,0,1,2,1,2,6,1,1,2,3,3.940400000000003,87.20480000000006,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2576,CCCC(C)(COC(N)=O)COC(=O)NC(C)C,0,12.749997126165276,-5.231426445578233,12.749997126165276,1.0929505569636797,0.7323095649562918,260.33400000000006,236.14199999999997,260.1736072480001,106,0,0.4068450375693837,-0.4489937651507601,0.4489937651507601,0.4068450375693837,1.6111111111111112,2.388888888888889,3.0,7.944034362287674,994.8880768954165,34.7236146391316,32.52742035285537,8.52742035285537,17.865696509323882,15.737206051141401,3.8955652646415264,2.4004735254256095,2.4004735254256095,1.0359592085072415,1.0359592085072415,0.5201265578376051,0.5201265578376051,-1.46,43182606.95290974,2.5548429242817434,7.787157326668746,7.755008454270715,142.0869637266567,20.503256236614746,13.117970485832577,4.235526234984602,0.0,0.0,12.18648014187683,0.0,9.589074368143644,0.0,0.0,20.076709135920737,20.076709135920737,33.36501983646994,6.853792780851101,52.08425619030299,12.18648014187683,0.0,5.309813353288376,11.134707445123052,46.17131074019112,13.117970485832577,0.0,0.0,0.0,11.029530329014648,9.589074368143644,0.0,0.0,31.32234309605905,9.473725907600098,5.41499046939678,68.93934795141614,0.0,4.235526234984602,0.0,0.0,90.65,87.92028216631194,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,33.02145591455921,190.80463039811121,0.0,24.62468950026444,-1.3472205294154698,-6.324377002541913,0.0,-4.32882889288508,-15.172282568955554,-27.423277571244306,0.0,0.8333333333333334,18,3,6,0,0,0,0,0,0,4,2,6,11,0,0,0,0,2.0227,68.17010000000005,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +3559,O=C(CCCN1CCC(O)(c2ccc(Cl)cc2)CC1)c1ccc(F)cc1,0,14.11355345872057,-4.749206651024611,14.11355345872057,0.9140831671796408,0.759345285057915,375.8709999999997,352.6870000000001,375.1401348760006,138,0,0.21135472726321597,-0.38506878637379266,0.38506878637379266,0.21135472726321597,1.2692307692307692,1.9230769230769231,2.5384615384615383,2.4387740881165043,1659.9186672174744,38.79001054984131,35.51963912244614,13.275568068464592,21.688222139173106,18.115281447186888,7.084997629732254,4.559095229338994,4.937059702348222,2.7993147855979474,2.988297022102561,1.5965241515434916,1.6910152697957983,-1.75,4762985873.524964,5.4043714086938595,8.295268231160758,4.697041636230826,190.35252811583914,10.00871792195769,5.817220841045895,5.783244946364939,1.4311996572326342,0.0,0.0,4.794537184071822,4.39041504767482,0.0,0.0,23.685777305559107,67.43359812598084,49.143348861782705,16.567119260345446,44.45044865859872,17.384184836597456,1.4311996572326342,4.899909730850478,0.0,31.092750416301204,19.490579052947837,70.30610679948757,0.0,0.0,0.0,4.39041504767482,0.0,11.600939890232516,36.7137415785031,5.601050810983688,5.817220841045895,71.5698280085282,48.33934966130636,5.022633313741326,0.0,0.0,40.540000000000006,131.57259094595204,9.184952231746642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,43.188827783210016,204.84967705615165,5.768352710727276,12.27068032148321,3.423800099026465,-7.43363733132194,-4.1913606825997105,-11.388166209945025,-18.136970871273732,-13.88459731447038,0.0,0.38095238095238093,26,1,3,0,1,1,2,0,2,3,1,5,7,0,1,1,3,4.425600000000004,100.98730000000005,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15387,CC1CCN(CCCC(=O)c2ccc(F)cc2)CC1,0,13.950801314168729,-4.658797595427061,13.950801314168729,1.1147330351893845,0.7575355295986883,263.35599999999994,241.17999999999995,263.1685425440002,104,0,0.16242475251754568,-0.30330321660596976,0.30330321660596976,0.16242475251754568,1.5789473684210527,2.263157894736842,2.8947368421052633,2.9293236375276352,1210.0156012298626,33.11880215351701,31.23342635897305,9.233426358973048,17.70213548685034,15.81392677498648,4.813926774986482,3.063926774986482,3.063926774986482,1.7506995221137083,1.7506995221137083,0.952604009650591,0.952604009650591,-1.2199999999999998,73950897.41385214,3.0103793534656833,6.804611740703177,4.425468414141742,145.071235286799,4.899909730850478,5.817220841045895,5.783244946364939,0.0,0.0,0.0,4.794537184071822,4.39041504767482,0.0,0.0,6.851892117295679,68.67298627295223,36.61003040409034,5.483034224680881,39.341640467491494,5.783244946364939,0.0,4.899909730850478,5.893957685363079,32.3435917226132,19.490579052947837,35.55034716339607,0.0,0.0,0.0,4.39041504767482,0.0,0.0,30.17373373016325,0.0,11.711178526408974,72.85826863412687,24.16967483065318,0.0,0.0,0.0,20.310000000000002,103.96163030153562,9.184952231746642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.156688235744834,189.4719397053337,0.0,12.027862449782994,0.0,-1.5750218274356984,-8.45372659720772,-6.005623169213814,-17.83896850958653,-17.709795385006238,0.0,0.5625,19,0,2,0,1,1,1,0,1,2,0,3,6,0,1,1,2,3.520500000000003,74.80250000000004,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +193962,Cc1cc(C#N)cc(C)c1Oc1nc(Nc2ccc(C#N)cc2)nc(N)c1Br,1,9.449312301225744,-3.284717293834829,9.449312301225744,0.12128779137662615,0.6084537970432328,435.2849999999998,420.1650000000001,434.0490712000005,138,0,0.240211713414419,-0.43704448989186323,0.43704448989186323,0.240211713414419,1.1785714285714286,1.8571428571428572,2.4285714285714284,2.4316063041085836,1658.81517247967,32.92783875134601,28.46949433647284,15.055490875587545,19.697719513836557,14.451332493218164,7.902689976275641,4.831551608635899,5.624549878193251,2.991606451768622,3.6854359567433983,1.814098846798374,2.072353697447266,-3.6199999999999997,666367259.1965797,7.782905231102599,7.949773046529301,4.030502154250955,191.34938842904305,15.766393282814699,16.040094126951345,4.235526234984602,11.828327617421866,0.0,0.0,0.0,0.0,20.49174015137139,0.0,0.0,77.01514336191447,13.91193761170488,31.489896945999856,25.421491862827285,33.38353223145443,10.523783109476973,9.967957041894417,0.0,13.703784234591359,11.029530329014648,62.981037728600164,0.0,23.767942795303824,15.766393282814699,17.453588333505085,11.629500169719275,15.929943897949348,9.967957041894417,0.0,36.36600996965288,38.702908640830636,40.727231761812185,4.235526234984602,0.0,0.0,120.63999999999999,105.7679104664159,10.523783109476973,0.0,11.029530329014648,0.0,0.0,12.138442625584547,0.0,0.0,25.897900939843765,25.421491862827285,125.10155618985652,2.9562830023027984,7.672547933901647,18.79127511486796,-4.5431867477769305,-3.5473213556925662,-2.445052883123129,0.0,-6.569434587669657,0.0,0.1,28,3,7,0,0,0,2,1,3,7,2,8,7,0,0,0,3,4.717400000000002,109.2891,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2206,Cc1cc(=O)n(-c2ccccc2)n1C,0,12.434781746031742,-3.2727278202947847,12.434781746031742,0.012479213907785391,0.6656235641878139,188.2300000000001,176.134,188.094963004,72,0,0.2711127146041771,-0.28536317880956974,0.28536317880956974,0.2711127146041771,1.3571428571428572,2.142857142857143,2.7857142857142856,3.1532952507629983,919.2823317057052,20.350852961085884,18.80267548146378,6.80267548146378,11.618802153517008,9.548551336231847,3.548551336231848,2.37597295765842,2.37597295765842,1.528114706750586,1.528114706750586,0.9488633143572502,0.9488633143572502,-1.7699999999999998,230745.3343648024,2.422989145128394,3.178135834949779,1.2667253288419447,99.05675459996787,0.0,0.0,0.0,0.0,5.559266895052007,0.0,9.476340119217006,4.681802935145185,0.0,0.0,18.127256122989884,18.93672953262227,26.93672493981532,13.91193761170488,16.44910267404264,0.0,0.0,9.36360587029037,6.975826900282246,6.851892117295679,0.0,52.30224431995206,0.0,5.687386274683562,5.559266895052007,0.0,0.0,0.0,9.36360587029037,6.975826900282246,6.851892117295679,22.143030668891097,41.04904943005159,0.0,5.687386274683562,0.0,26.93,67.02281242814172,4.794537184071822,0.0,9.36360587029037,0.0,0.0,0.0,0.0,0.0,0.0,16.44910267404264,91.30902262062232,0.0,12.434781746031742,0.0,-3.3877621882086153,0.0,-5.4198493401990415,0.0,-6.43619283824641,0.0,0.18181818181818182,14,0,3,0,0,0,1,1,2,3,0,3,3,0,0,0,2,1.4844199999999999,55.74700000000003,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10252640,CCn1ncc2c(NC3CCOCC3)c(-c3nnc(Cc4sc(C)nc4C)o3)cnc21,0,9.099412821662604,-4.209634714533187,9.099412821662604,0.02798767186535711,0.484315875124758,439.5449999999997,414.34500000000014,439.17904404000075,162,0,0.2509238143446924,-0.4201679001867235,0.4201679001867235,0.2509238143446924,1.4193548387096775,2.3548387096774195,3.193548387096774,1.8902155847952429,2172.327593264661,43.16240774895752,39.8552400398913,15.671736620819022,24.820187881890664,20.531633242141318,8.900916227569086,5.531943184662051,6.531013951424833,3.6901725419356937,4.474344183768106,2.4399781551454374,3.0509173387141484,-2.85,199857075466.0034,6.3530986284194775,8.351218106514597,3.924516105257924,218.60554408698553,14.463827244141772,0.0,7.059019299095929,5.890723922025908,5.890723922025908,0.0,0.0,14.6497599770396,5.098681808301038,21.534149494536813,0.0,33.3015261545458,57.244143385567575,52.22126079022273,43.464061317266896,28.057573587850822,0.0,29.945805401942714,0.0,52.18920320854076,18.427783839120952,33.81521322905795,0.0,11.454175413722904,5.309813353288376,5.687386274683562,0.0,11.336785877934737,49.08166835612494,17.606647539445373,13.703784234591359,73.96537007546817,16.76294135868287,1.4118420783282006,22.487576848955428,0.0,103.78,132.60716340035867,0.0,0.0,16.018588813079923,0.0,0.0,0.0,0.0,0.0,30.000865420597577,38.72719836346684,215.19831426398056,0.10714261911349476,6.480551587943051,8.226654455709843,-4.590304329725776,-2.341176820297041,-4.209634714533187,-13.968328039738577,-21.236552355785655,0.0,0.47619047619047616,31,1,9,0,1,1,0,4,4,10,1,10,9,0,1,1,5,3.7562400000000027,118.35170000000004,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0 +67356,OCCN1CCN(CCCN2c3ccccc3Sc3ccc(C(F)(F)F)cc32)CC1,0,14.302069436538451,-5.680084644052059,14.302069436538451,0.03669500954490146,0.7278115473639666,437.53099999999966,411.32300000000015,437.1748681120007,162,0,0.41598698505793,-0.3950445544207227,0.41598698505793,0.3950445544207227,1.0,1.7,2.433333333333333,2.1495326098362924,1946.1010210223583,44.07446760021749,40.29203078645528,15.108527367383006,24.644676380460105,20.60002861542331,8.508276905887172,5.22119948223822,6.241820208397878,3.36889986884693,4.36797063560971,2.1594734223425816,3.0457071367909587,-1.7400000000000002,92645993972.8555,6.405030072215038,9.176692848839785,4.771315334849235,215.43561042190902,14.908627652808168,0.0,0.0,1.4311996572326342,0.0,6.176298517443475,4.899909730850478,0.0,13.171245143024459,0.0,23.846722364717706,43.08187812396179,70.70426195565476,35.83403628951239,52.549017238387215,23.13665749875824,1.4311996572326342,9.799819461700956,0.0,22.340190369808404,56.93691276397837,47.86038244534006,0.0,0.0,4.899909730850478,24.546017692391583,0.0,11.761884949391115,68.3768303431687,6.176298517443475,0.0,46.2053402972819,52.08789790467861,0.0,0.0,0.0,29.950000000000003,143.4121678593445,13.171245143024459,0.0,16.66179468024159,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,35.70016356148814,260.49183413531307,0.03669500954490146,-4.506784604247383,3.604224445920172,-5.061496936861851,0.0,-9.78991689420365,-10.520751570544881,-36.42047025158703,0.0,0.45454545454545453,30,1,4,0,2,2,2,0,2,5,1,8,7,0,1,1,4,4.308100000000003,113.59780000000006,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10483360,CCCCNC(=O)c1ccc(Oc2ccc(CC(=O)O)cc2OC)c(NS(=O)(=O)c2ccc(Cl)cc2Cl)c1,1,14.173776246236422,-6.077535535346317,14.173776246236422,0.9082583632640266,0.23219952985183556,581.4740000000012,555.2660000000002,580.0837775320007,202,0,0.3073171596471656,-0.4928343326408137,0.4928343326408137,0.3073171596471656,1.131578947368421,1.9473684210526316,2.710526315789474,2.653727660889765,2525.0582150669266,50.323026265731414,43.91634246072928,20.244696933693913,28.54728304445373,22.000361028746788,11.3936778221021,6.129762270388275,8.426646372361963,3.7023023813959646,5.531837695982264,2.274880621904014,3.8169255375514513,-3.4699999999999993,3545782666690.0195,9.928572875008802,12.858398421555927,7.5309830279856165,267.0085460984569,19.892347451995686,4.895483475517775,20.072219656508114,0.0,17.361670539991724,5.969305287951849,14.304193981877775,8.417796984328938,0.0,0.0,42.46911550675339,60.275726054332736,32.16128860762669,40.56999962267952,66.9405363997514,50.78904222585953,1.4311996572326342,5.309813353288376,0.0,30.866150296801592,18.249931756932664,75.5539379798463,0.0,17.248535499851716,19.498658874622606,5.687386274683562,17.248535499851716,23.20187978046503,38.937902335938034,21.190753238808785,0.0,67.04662887933536,59.277251844487424,12.868950784139054,1.4311996572326342,0.0,131.03,174.8155313321152,18.00687135247258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,68.45793629386927,245.8862407872577,11.807791752508084,24.429810596545995,0.251406523565354,-5.326365790678111,-9.70373800863723,-14.220405044820817,-12.376233855770693,-8.442029129925345,-9.834255607822696,0.23076923076923078,38,3,9,0,0,0,3,0,3,7,3,12,14,0,0,0,3,5.752100000000005,145.36149999999986,1,0,0,0,0,0,0,0,1,1,2,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,3,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +126941,CN(Cc1cnc2nc(N)nc(N)c2n1)c1ccc(C(=O)N[C@@H](CCC(=O)O)C(=O)O)cc1,0,13.574998731861104,-4.4825420779522185,13.574998731861104,0.17372417508355253,0.29472034504927447,454.44699999999983,432.27100000000024,454.1713158040005,172,0,0.32572120059413157,-0.4812292557834712,0.4812292557834712,0.32572120059413157,1.3333333333333333,2.1818181818181817,2.878787878787879,2.3689160805640346,2024.0612198262263,42.71229580172218,37.61895021631898,15.61895021631898,24.900967440712407,18.677287250836862,8.124722692409343,5.46474229678878,5.46474229678878,3.283364441474041,3.283364441474041,1.969745863347646,1.969745863347646,-4.55,111582134553.16006,7.792485148595828,9.71963980458573,5.782489078211631,218.40377642975326,31.866773417805824,6.017892468349645,24.04095110786001,5.948339280986494,8.769579043816774,11.938610575903699,9.589074368143644,14.76249422596624,9.967957041894417,0.0,0.0,30.54259973198256,34.194899461183724,29.329751339340923,52.221816668624214,46.46325657714427,2.8623993144652684,25.24572743707721,0.0,25.26060195532435,23.315170582585267,41.5999495280134,0.0,0.0,21.6491570355914,17.453588333505085,0.0,0.0,60.993040139890354,16.08593405245959,0.0,49.359144815829374,30.34257004146794,7.059210391641003,14.026277252849258,0.0,210.53999999999996,130.50935804490317,14.383611552215466,0.0,11.439433951452546,0.0,0.0,0.0,0.0,0.0,30.153530466003257,30.48298804865957,175.22845359562558,0.0,52.21373055051082,5.780777023578348,-6.337224476973742,-9.004223744049106,-11.03203280406816,-9.954974162855102,-7.64450598176866,0.0,0.25,33,7,13,0,0,0,1,2,3,12,5,13,12,0,0,0,3,0.2684000000000012,118.26160000000004,2,0,0,2,0,4,0,0,2,2,3,1,0,0,0,5,1,2,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +51081,CCn1cc(C(=O)O)c(=O)c2cc(F)c(N3CCN(C)CC3)cc21,0,16.050642479213906,-4.180370580439351,16.050642479213906,0.37558201058201046,0.9243839877881741,333.36299999999966,313.20300000000003,333.14886972000056,128,0,0.3407228506021564,-0.4774970240990653,0.4774970240990653,0.3407228506021564,1.5,2.2916666666666665,2.9583333333333335,2.7385720655860237,1585.6658403509368,34.71266028065169,31.44435013090069,11.444350130900691,19.394840827690377,15.972064142414084,6.06381585195022,4.30482843892661,4.30482843892661,2.9043430062649516,2.9043430062649516,1.877118224906983,1.877118224906983,-2.41,432603565.5347125,4.817165835099961,6.238342898078794,2.752992314352158,166.4449538375176,19.475727300599523,11.38067233274289,0.0,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,9.184952231746642,0.0,0.0,0.0,25.912556432904516,60.492520520901955,20.799396885491362,40.33817299008805,22.559616494716465,1.4311996572326342,9.467009378641833,0.0,13.348751801611623,37.863175368396504,39.86173253485661,0.0,0.0,10.32870012275102,10.077801322358383,0.0,0.0,53.508388495246905,6.496859684315945,5.817220841045895,43.254293360298696,23.052269810213172,0.0,12.33412458931369,0.0,65.78,113.73864874635987,9.589074368143644,4.39041504767482,4.567099647791355,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,27.47561222446681,175.59414713716754,0.0,23.921013364196256,2.1232075846067406,-6.895215801789802,-4.270876919594591,-3.60111540217939,-1.6988568614493043,-28.25563643429078,0.0,0.4117647058823529,24,1,6,0,1,1,1,1,2,6,1,7,5,0,1,1,3,1.6105000000000003,90.50930000000004,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +39147,CC(C)(C)NCC(O)COc1cccc2c1CC(O)C(O)C2,0,8.528828735523135,-4.746681928280956,8.528828735523135,1.3508773858933947,0.6414681234920219,309.4059999999995,282.19,309.19400834400074,124,0,0.21069040880015483,-0.4905466186270664,0.4905466186270664,0.21069040880015483,1.6363636363636365,2.4545454545454546,3.1818181818181817,3.118610346009366,1402.1267457415865,39.36987900907357,37.58020675735541,10.58020675735541,21.407883811534354,18.639792788551162,5.467834321659616,3.8296377205346053,3.8296377205346053,2.0948267763673827,2.0948267763673827,1.2740285691309499,1.2740285691309499,-1.1400000000000001,2429908969.537385,3.4464014721905873,6.959388449702855,4.678256471765859,169.7383148051843,25.37310088041006,19.80035718147838,0.0,4.293598971697903,0.0,0.0,0.0,0.0,0.0,0.0,12.08483741532659,32.161546551247326,50.90646457360839,23.126104503261733,53.00257639736498,0.0,4.293598971697903,5.309813353288376,0.0,57.0805054877791,13.055844927232233,29.254159106383874,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,56.45484780548508,12.745849802658759,0.0,63.21002612719616,18.127256122989884,1.4118420783282006,0.0,0.0,81.95,110.44983470796751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,41.96975079574122,221.41901138800557,0.0,0.0,10.528567506705219,-7.826085435764873,-1.814524400037793,-4.497457330728434,-20.56051258298465,-22.498999145195047,0.0,0.6470588235294118,22,4,5,1,0,1,1,0,1,5,4,5,8,0,0,0,2,0.6347999999999998,85.12110000000003,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9915743,CCOc1cc2ncc(C#N)c(Nc3ccc(OCc4ccccn4)c(Cl)c3)c2cc1NC(=O)/C=C/CN(C)C,0,13.829272518233614,-4.082802598790795,13.829272518233614,0.13206586490481342,0.21847545958158987,557.0540000000013,527.8220000000002,556.1989664680009,204,0,0.2476891905287519,-0.4916171569547509,0.4916171569547509,0.2476891905287519,1.275,2.175,3.0,2.132312505924591,2816.8553303475715,53.54664090486302,48.28599091740057,20.041919863419018,31.03626490896156,24.537311726663933,10.520849008673244,6.658502758215599,7.036467231224826,4.1580278116897365,4.424161723175397,2.647484906780057,2.822809575259312,-4.649999999999999,45480742593759.59,9.195338068759582,13.422999387785037,7.256905662790078,278.43064441120606,24.99326234502733,24.127230222276374,2.8236841566564013,5.907179729351506,0.0,0.0,14.76249422596624,0.0,5.261891554738487,0.0,23.695430343931378,57.05805816383994,57.08909516666514,61.66260820891002,54.1024282649243,45.47320337571576,5.261891554738487,14.867866772744895,0.0,13.410877360211968,37.627125434373475,89.06929637529379,0.0,17.568244979360085,20.09335261417685,17.062158824050687,11.49902366656781,11.600939890232516,47.78254522989312,11.35352242698811,11.33111286753076,55.119752620437126,72.78928357500702,7.846317470397728,10.902924932081056,0.0,112.39999999999999,185.06868269949246,11.427187294980527,0.0,5.309813353288376,0.0,0.0,6.069221312792274,0.0,0.0,9.967957041894417,59.538072414914794,245.86130396118978,6.343321909710102,20.12571649212265,7.137022283723263,-7.33168352341442,-5.086946257631112,-12.376879733278205,-2.1857477065902273,-23.04166298138738,0.0,0.2,40,2,9,0,0,0,2,2,4,8,2,10,14,0,0,0,4,5.932480000000005,157.2543999999997,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,4,2,0,0,1,0,0,0,0,0,0,0,1,0,3,0,0,0,0,2,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +10113978,Cc1ccc(Nc2nccc(N(C)c3ccc4c(C)n(C)nc4c3)n2)cc1S(N)(=O)=O,0,12.902916734574816,-5.56444721810955,12.902916734574816,0.006251117577898535,0.4921501033338167,437.5289999999997,414.34500000000014,437.1633939760007,160,0,0.23788716629785414,-0.32923624749581915,0.32923624749581915,0.23788716629785414,1.2580645161290323,2.193548387096774,2.967741935483871,2.1291149075745093,2296.364193147016,41.74567599654179,37.8552400398913,15.671736620819022,24.19906017810461,19.19495402389994,9.293376566200708,5.641651664809897,7.0000326349300765,3.6276876550080144,4.449781392024299,2.267409032306694,2.8020452907577145,-3.5,72657694757.67114,6.747095816228492,7.637285318559557,4.072096,212.6324077836144,10.209723084138854,8.64154693449143,1.4118420783282006,15.97163043439408,0.0,0.0,4.681802935145185,18.526798741448175,10.082660329248245,0.0,6.042418707663295,55.521747972268116,59.028576444102306,21.378252642495795,40.06849434271794,44.06719069367729,0.0,19.74844178534064,12.100850136454277,18.59926771010913,17.1855499844211,59.727205651003274,0.0,0.0,15.334746320310884,23.140974608188646,0.0,0.0,35.14206566995182,16.99911805368983,13.703784234591359,38.672550609949866,53.36530963997561,4.235526234984602,10.902924932081056,0.0,119.03,141.47034109152625,8.417796984328938,0.0,14.89152601928404,0.0,0.0,0.0,0.0,0.0,15.066638850195453,31.650697358388996,211.22560335291828,0.0,5.5220854873397816,1.6090927387201521,-5.908175099620774,-2.517829319291486,-9.057577259658823,-1.2336011604353507,-13.825151521862258,-5.56444721810955,0.19047619047619047,31,3,9,0,0,0,2,2,4,8,2,10,10,0,0,0,4,3.1390400000000005,121.38090000000004,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +6442177,CO[C@H]1C[C@@H]2CC[C@@H](C)[C@@](O)(O2)C(=O)C(=O)N2CCCC[C@H]2C(=O)O[C@H]([C@H](C)C[C@@H]2CC[C@@H](OCCO)[C@H](OC)C2)CC(=O)[C@H](C)/C=C(\C)[C@@H](O)[C@@H](OC)C(=O)[C@H](C)C[C@H](C)/C=C/C=C/C=C/1C,0,16.760278719963246,-7.810605448567184,16.760278719963246,2.659682765427739,0.13392386914137677,958.2400000000029,874.5759999999997,957.5813563360023,384,0,0.32866280530969866,-0.4600915621870062,0.4600915621870062,0.32866280530969866,0.9705882352941176,1.8529411764705883,2.588235294117647,3.1123373855084764,5443.261096351032,122.44686479933367,115.66268966199404,32.66268966199404,64.78828761440923,57.97804816928015,16.753303297888568,11.362750093267918,11.362750093267918,7.093657205197412,7.093657205197412,4.136761155130578,4.136761155130578,-3.4099999999999993,3.155883221737399e+54,11.517299696034566,27.263010126317436,15.295334812898565,521.4384833259628,48.647512026972414,30.041191495564547,5.783244946364939,10.0807101242685,11.690424675716445,5.969305287951849,19.178148736287287,4.794537184071822,0.0,0.0,70.57189106269179,106.26111536411292,130.68864339673317,74.4485236102285,177.38097271009835,29.22621985639817,4.293598971697903,4.899909730850478,35.36374611217847,178.8034734465925,40.72868754679629,47.45863953635193,0.0,0.0,0.0,0.0,0.0,0.0,148.83997048863466,52.3938636431594,35.36374611217847,234.0990281306396,47.45863953635193,0.0,0.0,0.0,204.65999999999994,336.4806762291679,45.235032353617285,23.97268592035911,0.0,0.0,0.0,0.0,0.0,0.0,39.010739342321884,73.45611406549833,766.3296817981557,0.0,79.74683750939987,11.344686506275602,-7.470987421114684,-70.42083613228722,-26.91633860715113,-123.61122129281787,-57.95784693296905,-15.877308760824619,0.7547169811320755,68,3,15,1,3,4,0,0,0,14,3,15,22,1,2,3,4,6.197200000000008,255.95639999999904,0,3,0,0,0,0,0,0,0,0,5,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,3,0,0,0,1,6,0,0,0,0,0,0,0,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5284585,N[C@@H](C(=O)N[C@@H]1C(=O)N2C(C(=O)O)=C(Cl)CC[C@H]12)c1ccccc1,0,13.512151343047504,-3.914957049949611,13.512151343047504,0.21758192668456067,0.6928658548844621,349.77399999999983,333.64600000000013,349.0829336720004,126,0,0.3533382303888974,-0.4765299056777025,0.4765299056777025,0.3533382303888974,1.6666666666666667,2.4166666666666665,3.0833333333333335,2.3131923718659246,1363.0881450808427,31.290010549841313,27.352598421364554,12.108527367383008,17.98095091075628,13.847008680895952,6.4750840769414415,4.303385630386719,4.681350103395947,2.9218134896194017,3.1953111515968664,1.8730681417187438,2.081980801298795,-2.379999999999999,134043439.10526712,5.856040466205836,6.2560302033978346,2.654691594282263,165.35157991178068,16.13833852012186,20.55650840641152,1.4118420783282006,5.907179729351506,7.33837938658414,5.969305287951849,14.488984098994122,4.794537184071822,0.0,0.0,41.81303342854899,18.309301294355755,10.515320576794478,16.983960917711403,40.17704865234993,29.384604636887374,1.4311996572326342,10.209723084138854,5.719716975726273,30.799527207707698,0.0,46.5048706951829,0.0,0.0,11.029530329014648,0.0,0.0,11.600939890232516,39.82816760531184,14.383611552215466,0.0,40.776296436748055,40.9414192034859,4.235526234984602,1.4311996572326342,0.0,112.73,106.11759297856011,14.383611552215466,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,33.716768456492396,127.83053185145647,5.796303453111481,38.66736590737199,1.451656072757696,-3.5912844146560783,-6.182685839011267,-17.343126254177204,-7.434316332408641,0.0,0.0,0.3125,24,4,7,0,2,2,1,0,1,5,3,8,5,0,1,1,3,0.7108000000000003,85.68390000000002,1,0,0,0,0,0,0,0,1,1,3,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +28061,Cc1ncc([N+](=O)[O-])n1CC(O)CCl,0,11.093244520030234,-3.69599537037037,11.093244520030234,0.2737268518518521,0.45920678237514917,219.62800000000007,209.54799999999997,219.04106886,78,0,0.3424413063874994,-0.38777461719576267,0.38777461719576267,0.3424413063874994,2.2857142857142856,3.0714285714285716,3.5714285714285716,3.916809729370828,655.347664637012,19.300964908321227,16.44435013090069,7.200279076919145,10.519891162799384,8.008143830370393,3.4778600129157566,1.998759037319182,2.1877412738237956,1.1575169890231936,1.3291597822565464,0.6543126680536181,0.6965703807900439,-1.14,62298.610116991644,3.4614486596874423,4.385119474725029,2.209445736781263,99.41680242702233,15.223126459872784,18.749772922080695,5.824404497999927,1.4311996572326342,0.0,5.817862777835028,0.0,9.551078168738563,0.0,11.600939890232516,0.0,4.923311048817671,13.705684898146778,11.315140948054589,22.36894624545686,17.418802668067542,1.4311996572326342,9.551078168738563,0.0,19.428769828561613,5.832106723373709,22.11161797758026,0.0,0.0,0.0,5.817862777835028,0.0,11.600939890232516,32.926521816219775,6.496859684315945,16.966210386061253,18.161231503531905,6.172895210814761,0.0,0.0,0.0,81.19,47.9993500874027,10.114318268765572,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,10.092786712054421,25.36896655299713,73.5998537100025,5.250000787351977,12.889464285714286,14.844975434618291,0.0,-6.162567869740488,0.0,-4.863999118165785,-6.9466161186696915,0.0,0.5714285714285714,14,1,6,0,0,0,0,1,1,5,1,7,6,0,0,0,1,0.6994199999999999,50.34520000000003,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +44561,O=C([O-])P(=O)([O-])[O-],0,9.141203703703704,-5.4320987654321,9.141203703703704,2.562499999999999,0.3511209936301175,122.97999999999999,122.97999999999999,122.94998046973001,42,0,0.07304871244600003,-0.8065369356524604,0.8065369356524604,0.07304871244600003,1.4285714285714286,1.5714285714285714,1.5714285714285714,4.089860350657716,120.04184397996642,6.077350269189626,2.9884550478192735,3.8828822388191897,2.9433756729740645,1.1795776457190081,2.7222363562292986,0.7633755956709507,2.123460120346186,0.223606797749979,0.670820393249937,0.0,0.0,-0.38,17.086166327180322,6.619999999999999,1.614379875216004,2.331743772241993,38.746414800809205,24.25293606934881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.595762326787885,0.0,5.710393692493761,24.25293606934881,13.306156019281646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.893350600345656,4.794537184071822,0.0,7.595762326787885,5.710393692493761,4.565048284931329,0.0,0.0,0.0,0.0,0.0,0.0,103.32,13.306156019281646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.25293606934881,9.141203703703704,0.0,27.304012345679013,9.021604938271604,-2.562499999999999,0.0,0.0,0.0,0.0,-5.4320987654321,0.0,7,0,5,0,0,0,0,0,0,5,0,6,1,0,0,0,0,-2.7566,13.0025,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8813,N=C(N)c1ccc(OCCCCCOc2ccc(C(=N)N)cc2)cc1,0,8.256826516904079,-4.4238166631181635,8.256826516904079,0.3277673955914868,0.30195782187837944,340.42699999999957,316.235,340.18992600800067,132,0,0.18940133182297997,-0.4936010306263861,0.4936010306263861,0.18940133182297997,0.84,1.28,1.64,2.6826575443137175,1496.8215416469648,38.5660314317802,36.10535096292756,12.10535096292756,22.01585006902394,17.894205344927393,6.210923771927643,3.8387101764276843,3.8387101764276843,2.184586031195752,2.184586031195752,1.1631050882138418,1.1631050882138418,-3.0199999999999996,5270171541.1362295,4.383415418569825,9.31822503861814,6.176725336147323,181.3882977753635,20.913159859052644,23.17026323808235,8.471052469969203,0.0,0.0,0.0,10.804616710147132,0.0,0.0,0.0,0.0,67.45812436529451,19.35145432041531,29.567073159875214,42.618432388633266,11.671239571514539,10.804616710147132,0.0,11.439433951452546,19.118774703988137,13.117970485832577,59.46625264470035,0.0,11.49902366656781,20.913159859052644,0.0,11.49902366656781,0.0,24.789210057347116,0.0,10.804616710147132,54.91933169844614,48.33934966130636,8.471052469969203,0.0,0.0,118.2,114.87326107260344,0.0,0.0,11.439433951452546,0.0,0.0,0.0,0.0,0.0,10.804616710147132,42.618432388633266,199.57758301099136,0.0,0.0,5.567941621862413,-2.451685448372784,-4.810952885000525,-9.77248206456333,-13.148198758178925,-8.378872143404838,0.0,0.2631578947368421,25,6,6,0,0,0,2,0,2,4,4,6,10,0,0,0,2,2.8828400000000007,99.75720000000001,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4850,c1cnc(N2CCN(Cc3ccc4c(c3)OCO4)CC2)nc1,0,8.664187557739146,-3.92557256235828,8.664187557739146,0.25455129353037,0.8563121557749822,298.3459999999996,280.20199999999994,298.1429758160005,114,0,0.23080036743384869,-0.45359548031507685,0.45359548031507685,0.23080036743384869,1.1363636363636365,1.9090909090909092,2.727272727272727,1.9905205546822737,1363.9512212729264,30.756630355021706,28.60535096292756,10.605350962927558,17.85274894667636,14.802564558427516,5.802564558427516,3.7977567521539712,3.7977567521539712,2.427675481463779,2.427675481463779,1.5108831933442244,1.5108831933442244,-2.34,149704143.39338672,4.140683575892027,5.805922265511361,2.6933884360007907,154.1420104692163,14.373635638450576,2.7415171123404405,11.49902366656781,12.69338486548969,0.0,0.0,4.899909730850478,9.967957041894417,0.0,0.0,6.042418707663295,23.69070761468688,53.05464018023058,13.7075855617022,34.14737991866406,5.948339280986494,0.0,14.867866772744893,0.0,6.496859684315945,37.63239405261745,42.07891674397969,0.0,11.49902366656781,14.373635638450576,5.948339280986494,11.49902366656781,0.0,47.60035109451187,6.496859684315945,0.0,30.23710550276095,36.5154652522827,0.0,0.0,0.0,50.720000000000006,103.65553342846742,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,9.967957041894417,34.14737991866406,157.5967410883764,0.0,6.041690861028953,0.0,-1.275881542699724,-2.811110367720808,-4.21859616374969,-1.9696744615400616,-22.19650274702841,0.0,0.375,22,0,6,0,2,2,1,1,2,6,0,6,3,0,1,1,4,1.5274999999999999,82.08700000000005,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +92727,Cc1cccc(C)c1OCC(=O)N[C@@H](Cc1ccccc1)[C@@H](O)C[C@H](Cc1ccccc1)NC(=O)[C@H](C(C)C)N1CCCNC1=O,1,15.895594514229263,-6.279505021852381,15.895594514229263,1.394632879670759,0.199874123748593,628.8140000000021,580.4300000000003,628.3624706360014,246,0,0.31759486365989026,-0.4832294652830567,0.4832294652830567,0.31759486365989026,1.0869565217391304,1.7608695652173914,2.391304347826087,2.535641385670813,3467.4828804941744,74.84797029211374,70.33009583431914,22.330095834319145,41.30087678131612,35.48709512810514,11.737206051141397,7.695499334597663,7.695499334597663,4.65946278904149,4.65946278904149,2.8419964690800086,2.8419964690800086,-4.369999999999999,1.7181315877510158e+24,8.00933995188453,16.800052215267485,9.813282839260593,339.9748502173916,30.675020935622868,11.767404301633551,10.79451147790089,7.33837938658414,5.907179729351506,6.031114512338072,9.589074368143644,4.794537184071822,0.0,0.0,92.25522743421419,67.34324749205993,53.28057574123708,38.14232306253382,88.77818540359702,17.845473971041084,1.4311996572326342,20.829349790715604,5.893957685363079,77.03296350649916,19.55270461154818,100.80524916641085,0.0,5.749511833283905,20.66630301366518,4.794537184071822,5.749511833283905,0.0,72.97179159377852,22.334924170802402,19.597741919954437,109.01681647552768,78.55144319962284,4.235526234984602,0.0,0.0,120.0,247.70921056486193,21.32580690243042,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,54.18569559914841,419.4685077526114,0.0,43.50355370930161,-1.302522576897287,-8.564457947378463,-15.222455977568572,-45.265970182369784,-28.31194410527247,-33.30471067242662,0.0,0.43243243243243246,46,4,9,0,1,1,3,0,3,5,4,9,20,0,1,1,4,4.328140000000003,179.5358999999995,0,1,0,0,0,0,0,0,0,0,3,3,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +2747,c1ccc(C2(c3ccccc3)CC2C2=NCCN2)cc1,0,9.210128495842781,-3.2671815948601672,9.210128495842781,0.2041685563114135,0.9032005021790172,262.35599999999994,244.21199999999996,262.14699857600016,100,0,0.16132923402368504,-0.3717077279273179,0.3717077279273179,0.16132923402368504,1.15,1.75,2.25,2.2862849256052007,1320.2816065812362,29.290010549841313,27.894427190999917,9.894427190999917,17.10068851385561,14.591640786499875,5.644427190999917,4.020820393249937,4.020820393249937,2.9722135954999565,2.9722135954999565,2.0475618960624624,2.0475618960624624,-2.0899999999999994,85246785.91079569,3.382675511782423,4.480081934998562,1.6780731210064521,144.45919800960925,5.309813353288376,5.835619785757269,1.4118420783282006,0.0,0.0,0.0,4.992404732635669,0.0,0.0,0.0,60.42418707663295,17.49982788472337,21.918083507586463,25.68747947069902,24.714737533221935,5.835619785757269,0.0,5.309813353288376,10.886362417998747,11.787915370726159,12.99371936863189,71.55109006002695,0.0,0.0,5.309813353288376,0.0,0.0,0.0,18.82933915438916,5.41499046939678,5.893957685363079,40.802723339617124,65.41659180926862,1.4118420783282006,0.0,0.0,24.39,108.06230227050537,1.3707585561702202,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,4.992404732635669,23.343978977051716,148.802863861594,0.0,3.452815885613504,-0.2041685563114135,-5.0068924792139065,-4.391489512471655,-10.013432224741752,-3.2671815948601672,-6.455848712941967,0.0,0.2777777777777778,20,1,2,1,1,2,2,0,2,2,1,2,3,1,0,1,4,2.994300000000001,82.07570000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5694,Cc1cccc(Nc2cc(Cl)nc(SCC(=O)O)n2)c1C,0,11.472824917504685,-3.3019274230008806,11.472824917504685,0.021074722327202977,0.49658062637922074,323.8049999999998,309.69300000000004,323.0495253680004,110,0,0.3134418448393893,-0.4806125094028909,0.4806125094028909,0.3134418448393893,1.6666666666666667,2.5714285714285716,3.3333333333333335,2.883340216788404,1172.8474545128815,27.256630355021702,23.94435013090069,11.516775657846871,15.750960536008154,11.952581489896035,6.291580657869168,3.3225895443573275,4.453999293941617,1.908860521151394,2.7217441758292953,1.1197373226178164,1.7780817483923639,-1.79,11299020.428712184,5.443034763618045,6.777437388171286,4.338486239193418,151.1338699258501,10.418621544395588,10.97097259472782,6.568278560148908,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,9.967957041894417,0.0,0.0,35.447662254950224,30.873105925648645,19.954356319368173,13.929508222171478,27.76429012754987,40.83737918009407,1.4311996572326342,9.967957041894417,0.0,18.860220716412066,11.014770238438533,40.44968763093996,0.0,0.0,5.309813353288376,11.50524905251859,0.0,23.36282483962363,26.75102740610364,4.794537184071822,13.703784234591359,27.576005657436628,29.326111312473884,6.564951895220993,1.4311996572326342,0.0,75.11,82.48941957297264,4.794537184071822,0.0,17.07169830267949,0.0,0.0,0.0,0.0,0.0,15.07676523300163,30.893084299835987,108.67429076658114,5.84896312743204,18.775127935162367,2.29381244104441,-6.124840748301921,-2.4981948895260575,-3.904028648866733,0.0,-6.537352205747445,0.0,0.21428571428571427,21,2,5,0,0,0,1,1,2,6,2,7,7,0,0,0,2,3.6671400000000007,84.60050000000003,1,0,0,0,0,2,0,0,1,1,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +5281081,CCN(CC)C(=O)/C(C#N)=C/c1cc(O)c(O)c([N+](=O)[O-])c1,1,13.161144573570166,-4.122702756365276,13.161144573570166,0.9465017164273113,0.28041853664893823,305.28999999999974,290.17,305.10117058000037,116,0,0.31475027803887157,-0.5040620917971377,0.5040620917971377,0.31475027803887157,1.6818181818181819,2.409090909090909,2.909090909090909,4.233504364899264,1159.1633679334109,29.47217330464553,25.382882238819192,10.38288223881919,16.55418376594528,12.412051377043527,5.095554796115801,3.364937830957311,3.364937830957311,2.088178102975848,2.088178102975848,1.1708452910089688,1.1708452910089688,-3.08,18530030.64074191,5.280626557493771,7.079272203811196,3.5167218148108796,147.46461369986486,15.117526113064901,11.642325842861542,5.749511833283905,5.749511833283905,8.769579043816774,5.687386274683562,14.908855452837393,0.0,5.261891554738487,0.0,0.0,31.361726179987215,32.743723637997384,9.035586717328332,37.75532584531679,17.646637750070635,8.124290869203755,4.899909730850478,0.0,13.703784234591359,12.99371936863189,33.33571170585843,0.0,17.568244979360085,0.0,5.687386274683562,11.49902366656781,0.0,41.804135574331234,4.794537184071822,21.44543113629633,37.08709695650122,17.657941945395855,0.0,6.052071746035566,0.0,127.70000000000002,88.88777923662269,20.17074700757588,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,10.217616382214425,20.68226054467813,113.03552831643066,0.0,22.28262746707958,28.887546737473684,-4.498381598009573,-4.795803711980661,-3.3393476788863685,0.0,-16.07216953210731,0.0,0.2857142857142857,22,2,8,0,0,0,1,0,1,6,2,8,9,0,0,0,1,1.7813800000000002,77.94400000000002,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4178,Cc1cccc(C)c1OCC(C)N,0,7.879254062736205,-3.912525982615268,7.879254062736205,0.8411758314436888,0.7701737793320904,179.26300000000015,162.12699999999998,179.131014164,72,0,0.12468347177343857,-0.4914364534108377,0.4914364534108377,0.12468347177343857,1.7692307692307692,2.5384615384615383,3.076923076923077,4.055904826072852,764.8784936933836,24.248558665513926,23.35546188596382,6.3554618859638214,13.014578430789706,11.52628227921376,3.1318550882138423,2.0068550882138423,2.0068550882138423,1.078891836922627,1.078891836922627,0.596211436615305,0.596211436615305,-1.02,542015.78904559,1.7197476949191777,4.28262327283322,2.738896611115304,103.71016138532903,10.456579929526322,15.132181232856595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.127256122989884,31.68257933528103,19.725478030051843,6.853792780851101,28.121925453009744,0.0,0.0,0.0,5.719716975726273,26.573568820236684,6.558985242916289,29.254159106383874,0.0,5.749511833283905,10.456579929526322,0.0,5.749511833283905,0.0,12.576877711265933,0.0,13.703784234591359,38.54017344324298,18.127256122989884,2.8236841566564013,0.0,0.0,35.25,73.85594197854702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.121925453009744,133.22501951320652,0.0,0.0,0.0,-3.409873866213152,-1.4363657407407404,-7.271621105232218,0.0,-14.35715880102041,0.0,0.45454545454545453,13,2,2,0,0,0,1,0,1,2,1,2,7,0,0,0,1,2.0294399999999997,55.06040000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +448812,NC(=O)[C@@H]1CSSCCC(=O)N[C@@H](CCCCN=C(N)N)C(=O)NCC(=O)N[C@@H](CC(=O)O)C(=O)N[C@@H](Cc2c[nH]c3ccccc23)C(=O)N2CCC[C@H]2C(=O)N1,0,16.119089912812274,-6.105075509841795,16.119089912812274,0.5560648846666982,0.053416778160986306,831.9790000000015,782.5869999999996,831.3156141480014,310,0,0.30548106038265815,-0.48116230829113704,0.48116230829113704,0.30548106038265815,1.0175438596491229,1.8245614035087718,2.6140350877192984,2.538326721477288,3988.01404917784,84.41688439286608,75.91008074560203,28.54307390745748,46.72015575048504,37.65897965568084,16.033998133478548,9.001204612072968,10.742786235870163,5.3905930893147955,6.686004327464254,3.2666437516164755,4.302645589492756,-5.510000000000001,2.4006759749559506e+31,12.255664379444003,21.700084629056875,13.582490794536504,404.9476390618759,58.69393888580764,30.089462341748224,22.901659508682236,41.35025810546054,1.4311996572326342,5.969305287951849,43.34870220521024,0.0,0.0,0.0,39.71505207576333,43.47049470600718,84.38199132023159,32.0604043720284,109.75451862574809,85.76983884701073,1.4311996572326342,36.4259797675216,22.151555659814484,81.07286155238326,30.90049282324815,35.90602153316493,0.0,0.0,43.708217693620696,0.0,0.0,21.587795952773448,129.25479431933957,44.72922237390395,0.0,99.5212338231305,35.33497477410361,16.942104939938407,12.33412458931369,0.0,326.38999999999993,287.2343454505076,28.814542151636804,19.178148736287287,0.0,0.0,0.0,0.0,0.0,0.0,10.101212923742882,58.084219203949466,420.37379756776687,0.0,119.16045058504885,-8.826381005977344,-17.1826556250825,-31.286538619321338,-35.68599476510343,-45.76089149934488,-15.978184197258734,-2.8136024407274944,0.5142857142857142,57,13,20,0,2,2,1,1,2,12,10,22,10,0,2,2,4,-2.0543999999999967,212.97819999999967,1,0,0,0,0,1,1,0,1,1,8,7,0,0,1,2,6,3,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2478,CS(=O)(=O)OCCCCOS(C)(=O)=O,0,11.44217619379912,-5.855884668682284,11.44217619379912,3.5787106717687074,0.453312740145793,246.30600000000013,232.194,246.023180168,86,0,0.26388710852179703,-0.2703188330815724,0.2703188330815724,0.26388710852179703,1.0,1.3571428571428572,1.6428571428571428,6.237331206654084,721.158815301545,23.414213562373096,20.265986323710905,7.8989794855663575,11.664213562373096,9.566496580927726,5.3829931618554525,1.529039102362461,3.678869016623521,0.4673115027705869,1.072810363079829,0.20240575138529346,0.5051551815399145,-0.1800000000000001,110744.67744391767,3.1576685846094135,5.640369803534786,11.820000000000002,104.12944357686487,0.0,0.0,0.0,0.0,20.236253718067108,0.0,8.366170865299415,0.0,16.835593968657875,0.0,0.0,12.745849802658759,13.7075855617022,30.96885291274637,44.3923846203404,20.236253718067108,0.0,0.0,0.0,12.745849802658759,25.485818688065493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.32141265672337,28.60242458336652,0.0,31.936469589041835,0.0,0.0,0.0,0.0,86.74000000000001,58.46792220879136,16.835593968657875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.366170865299415,19.190619786383078,151.7960350273157,0.0,0.0,0.0,0.0,0.0,0.0,-16.925908027441672,-8.825024329176117,-11.711769337364569,1.0,14,0,6,0,0,0,0,0,0,6,0,8,9,0,0,0,0,-0.2809999999999997,50.82560000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6032,NC[C@H]1O[C@H](O[C@@H]2[C@@H](N)C[C@@H](N)[C@H](O[C@H]3O[C@H](CO)[C@@H](O)[C@H](N)[C@H]3O)[C@H]2O)[C@H](O)[C@@H](O)[C@@H]1O,0,9.444414682539682,-5.72666099773243,9.444414682539682,1.27810766951626,0.16685365193348575,484.5029999999996,448.21500000000026,484.2380579720009,194,0,0.21084892981206776,-0.3935672815104058,0.3935672815104058,0.21084892981206776,0.8484848484848485,1.5151515151515151,2.090909090909091,2.8231755714807334,1937.015316037613,55.087575669810526,51.279585577102324,15.279585577102326,30.52655101910119,24.891736166725593,7.956289369478889,5.6590905646546,5.6590905646546,3.6785538265197153,3.6785538265197153,2.170826377587278,2.170826377587278,-0.6,23104699210729.242,6.445535253099171,10.983748429196504,5.32387543252595,240.94923635427324,77.58797705585579,72.0949168961255,12.532156737073795,10.01839760062844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.372924901329379,26.757195958036554,33.13825605381923,94.7897754591509,0.0,10.01839760062844,0.0,22.878867902905093,97.75893931295198,13.055844927232233,0.0,0.0,0.0,22.878867902905093,0.0,0.0,0.0,150.2219142772338,18.947451815200196,0.0,35.158854580904,0.0,11.294736626625605,0.0,0.0,282.61,133.6936521430893,4.1122756685106605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.761657337750485,64.93424005351821,320.2489301213308,0.0,0.0,27.470063345860677,-5.817599996481117,0.0,-15.591145978055327,-68.04456834572518,-9.26567914692978,0.0,1.0,33,15,15,1,2,3,0,0,0,15,11,15,17,1,2,3,3,-7.2913999999999985,107.79220000000001,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3000706,CC(C)[C@@H]1NC(=O)[C@H](C)OC(=O)[C@@H](C(C)C)NC(=O)[C@@H](C(C)C)OC(=O)[C@H](C(C)C)NC(=O)[C@H](C)OC(=O)[C@@H](C(C)C)NC(=O)[C@@H](C(C)C)OC(=O)[C@H](C(C)C)NC(=O)[C@H](C)OC(=O)[C@@H](C(C)C)NC(=O)[C@@H](C(C)C)OC1=O,0,16.064510160258816,-7.188537691249003,16.064510160258816,2.914865809418295,0.14253442506446784,1111.338000000003,1020.6179999999996,1110.6311600400024,444,0,0.32920335550720475,-0.4510253469662552,0.4510253469662552,0.32920335550720475,0.2948717948717949,0.46153846153846156,0.6282051282051282,7.201927432261821,5075.326645978932,137.63494553253253,127.03175080134928,37.031750801349276,71.65926735446268,62.76554263156585,18.082261058566093,12.280238744679673,12.280238744679673,6.876209819695417,6.876209819695417,3.7175830458244796,3.7175830458244796,-6.360000000000002,1.0970753593154354e+60,13.68230523547888,31.287636223568914,20.785355493341143,585.7897464250703,60.28005784253055,36.10735481009787,44.95116063166912,0.0,35.443078376109035,35.81583172771109,28.76722310443093,28.76722310443093,0.0,0.0,123.3340581113222,73.60129552015474,98.69461604425581,16.44910267404264,209.5703951199295,71.25891010382013,0.0,31.858880119730255,53.0456191682677,216.47719743500707,0.0,0.0,0.0,0.0,31.858880119730255,0.0,0.0,0.0,143.84637307561795,85.95562393166216,53.0456191682677,259.03345318150747,0.0,8.471052469969203,0.0,0.0,332.3999999999999,372.64060682682515,12.33682700553198,57.53444620886186,0.0,0.0,0.0,0.0,0.0,0.0,28.421177722800294,111.27794418273565,793.9333489250326,0.0,190.3243085433698,-17.674091917801892,0.0,-116.6652334626173,-42.472910247150864,-41.96801924369255,-125.97740259713952,0.0,0.7777777777777778,78,6,24,0,1,1,0,0,0,18,6,24,30,0,1,1,1,2.343300000000008,281.4281999999996,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +150610,C[C@@H](O)[C@H]1C(=O)N2C(C(=O)O)=C(S[C@@H]3CN[C@H](C(=O)Nc4cccc(C(=O)[O-])c4)C3)[C@H](C)[C@H]12,0,13.925132199443317,-4.470200696019151,13.925132199443317,0.4642540118349734,0.38594316151302593,474.5149999999999,450.3230000000003,474.13404468791066,176,0,0.3529624511550459,-0.5448137738684349,0.5448137738684349,0.3529624511550459,1.606060606060606,2.4545454545454546,3.1515151515151514,2.0580832314697464,2034.8257331063523,44.781574381404035,39.60762711021078,16.424123691138504,25.35405402647547,20.113288663264882,9.218861472264964,6.089902178509107,7.1105229046687635,4.137485645771635,5.136556412534419,2.807253289084237,3.720401810708747,-2.8899999999999992,205663543943.57144,7.822955252194192,8.805461747062983,4.114435414614966,227.58358396137717,35.63821739855418,7.108881391384034,1.4118420783282006,13.245559115935645,1.4311996572326342,5.969305287951849,9.589074368143644,4.794537184071822,0.0,11.761884949391115,18.93672953262227,30.873105925648645,46.029191057649385,39.57437583015576,64.74114779340327,41.20224125868138,2.8623993144652684,10.209723084138854,11.787915370726157,43.41850176875388,11.80667303760432,40.335302149296055,0.0,0.0,15.726154101417457,5.687386274683562,0.0,11.761884949391115,70.14034812205334,14.383611552215466,11.787915370726157,57.849868935094015,34.77185065759906,2.8236841566564013,1.4311996572326342,0.0,159.1,158.76035666920072,25.655434687298214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,31.730496038355845,198.68660277898778,-1.0113812834592053,50.041694184523536,13.327383630420567,-4.890060627633438,-18.025368135149197,-14.29898199583108,-8.77817320358562,-12.718382014940039,0.0,0.45454545454545453,33,4,10,0,3,3,1,0,1,9,4,11,10,0,2,2,4,-0.39399999999999924,116.81950000000003,1,1,0,0,1,0,0,0,2,2,4,3,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3191,CC(C)(C)c1ccc(C(=O)CCCN2CCC(OC(c3ccccc3)c3ccccc3)CC2)cc1,0,14.209981475021799,-5.12909275470468,14.209981475021799,1.2343282069375123,0.30994100504194527,469.6689999999996,430.3570000000003,469.2980794880011,184,0,0.16242164729690728,-0.36545950923880255,0.36545950923880255,0.16242164729690728,1.0571428571428572,1.6285714285714286,2.1714285714285713,2.0998023036621825,2597.1625849730026,58.75411216497907,56.263710176427686,17.263710176427686,32.471420094527964,28.78319282894573,9.283192828945731,6.260254901561698,6.260254901561698,3.7915187669412305,3.7915187669412305,2.2523175517015863,2.2523175517015863,-2.7499999999999987,165107779767495.44,5.712639866680271,11.789307892499163,7.126718034152437,265.4777004859471,9.636772684650527,6.080018026949988,5.783244946364939,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,105.1495382591732,47.72097933279185,56.457542553573376,28.012154925673503,62.990983828510515,5.783244946364939,0.0,4.899909730850478,0.0,63.6224024805013,19.490579052947837,106.84766787407415,0.0,0.0,0.0,0.0,0.0,0.0,36.253751757113235,10.15185342319683,0.0,132.63532082565277,84.59386190728614,0.0,0.0,0.0,29.540000000000003,200.64380408473878,7.536054296412263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.45492953209824,336.3278120565556,0.0,12.853283747211155,0.0,-11.595762616822572,-2.7400651639119245,-22.202123804471398,-29.304597018310396,-27.921880533583717,0.0,0.40625,35,0,3,0,1,1,3,0,3,3,0,3,9,0,1,1,4,7.217600000000008,143.98049999999984,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2727,CCCNC(=O)NS(=O)(=O)c1ccc(Cl)cc1,0,12.539539517195765,-5.562175020471146,12.539539517195765,0.7535818524175306,0.8794576573550539,276.7449999999997,263.64099999999996,276.03354095600037,94,0,0.3281933782005821,-0.3373302270295465,0.3373302270295465,0.3281933782005821,1.588235294117647,2.235294117647059,2.823529411764706,3.5471797154900955,951.3528428139792,24.196152422706632,20.905384825864594,9.477810352810776,13.151494223968115,10.17838563038672,5.60198624119667,2.340640798067264,4.259560427031725,1.2352256701663598,2.5407831198315733,0.6593907377978537,1.4516269674973026,-1.2699999999999996,779524.8578793737,4.134880514951972,5.8806369536687235,4.239006453235222,123.59718993029821,5.309813353288376,0.0,2.8236841566564013,0.0,10.023291153407584,6.031114512338072,0.0,17.92745378213489,0.0,0.0,18.452832007528194,30.54259973198256,21.114802891248807,10.378517700198655,31.114362442929572,27.655345555978172,0.0,10.024932967022508,0.0,18.120300494142832,6.496859684315945,29.192308144394506,0.0,0.0,10.024932967022508,4.794537184071822,0.0,11.600939890232516,20.945771180982955,10.023291153407584,0.0,28.303161136497476,29.065158306170954,7.846317470397728,0.0,0.0,75.27000000000001,79.88880695562145,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.50296816476133,119.99371713662573,5.535570652285441,10.719834756690739,-1.7711505270067078,0.0,0.0,-6.949507888095548,-3.868901724461339,-7.652942941122732,-5.562175020471146,0.3,17,2,5,0,0,0,1,0,1,3,2,7,5,0,0,0,1,1.7379,65.46320000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1 +21023902,COc1cc(Br)c(S(=O)(=O)Nc2ccc(C(F)(F)F)c(O[C@@H]3CCN(C)C3)c2)cc1OC,0,14.45589388772598,-6.088138959229999,14.45589388772598,0.8573673365853924,0.5636621386193139,539.3700000000011,517.1940000000003,538.0384895640007,176,0,0.41946456051812536,-0.4928262679788501,0.4928262679788501,0.41946456051812536,1.28125,2.0,2.625,2.483767690594883,1973.1651292973456,42.704224112214405,36.855774825820006,17.258267945862432,23.642241068401006,18.54234626831024,9.828194271168272,5.362525474425413,7.696478899937999,3.27654277087931,5.378768004123304,2.0313025850005,3.8462701872113576,-2.1800000000000006,24100112207.252876,8.550828679934394,9.358638622830215,5.409807866426188,223.14487197230198,19.110498592250625,16.72501333575167,12.910865744896011,0.0,10.023291153407584,6.176298517443475,4.715119613734132,8.417796984328938,13.171245143024459,0.0,0.0,47.405951822550854,41.88810330532289,41.7758453581884,65.99740274665642,31.640621326040495,0.0,4.899909730850478,0.0,23.524724921240615,38.76057080041345,40.24826454584588,0.0,17.248535499851716,18.92570847513428,18.858631417708022,17.248535499851716,15.929943897949348,53.44317592880871,16.199589670851058,0.0,40.72230607260101,39.58029652966666,1.4118420783282006,0.0,0.0,77.10000000000001,140.3926829262933,21.589042127353395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.40366980554945,34.93463471170287,255.85105331981669,2.551161331542738,-2.5710016003995806,0.0,-4.561250429395409,-5.320885804286103,-9.387533374121805,-14.781276569780124,-12.3984659321175,-13.215134274592232,0.4,32,1,7,0,1,1,2,0,2,6,1,12,10,0,1,1,3,4.368800000000003,116.02850000000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +4634,CCN(CC)CC#CCOC(=O)C(O)(c1ccccc1)C1CCCCC1,0,14.351644421695827,-5.001123499216033,14.351644421695827,1.0656384016009648,0.6005702926906202,357.49399999999946,326.24600000000004,357.2303938520009,142,0,0.34359342379088076,-0.45010364604028985,0.45010364604028985,0.34359342379088076,1.4230769230769231,2.1538461538461537,2.8076923076923075,3.216631544614518,1747.8357578554007,45.9472292782632,43.671958466891546,12.671958466891548,24.687045922135326,21.895565264641526,6.487316974177663,4.09358823489503,4.09358823489503,2.6401532954502747,2.6401532954502747,1.5181355735970055,1.5181355735970055,-1.8299999999999996,58259763795.44654,4.112632187842237,10.350622675469163,5.092752969019969,200.7337617034521,9.84567114490726,0.0,12.160036053899976,1.4311996572326342,0.0,5.969305287951849,4.899909730850478,4.794537184071822,0.0,0.0,74.87552111460727,31.303020662987645,34.6798873649377,18.833686689847923,55.76296501408573,5.969305287951849,1.4311996572326342,4.899909730850478,5.893957685363079,51.16945955222194,26.049564295864126,35.77554503001347,0.0,11.840868637711289,0.0,0.0,0.0,0.0,43.4587871630063,15.132450948855558,17.734826323074365,92.25461691804179,30.212093538316473,0.0,0.0,0.0,49.769999999999996,129.75774158226497,6.165295740242042,0.0,0.0,0.0,11.840868637711289,0.0,0.0,0.0,9.84567114490726,41.18319778616903,255.1746218386864,0.0,13.286006020094863,4.322673576949145,-6.879836712960361,-5.723377110754004,-7.930460237803227,-22.960803910793228,-25.372156796752932,0.0,0.5909090909090909,26,1,4,1,0,1,1,0,1,4,1,4,10,1,0,1,2,3.342900000000002,103.43680000000008,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5253,CC(C)NCC(O)c1ccc(NS(C)(=O)=O)cc1,0,12.140699518486883,-5.639765195155703,12.140699518486883,0.8598974243048922,0.7241218527557277,272.3699999999997,252.20999999999998,272.11946350000045,102,0,0.229318851585102,-0.3870834441683909,0.3870834441683909,0.229318851585102,1.6111111111111112,2.3333333333333335,2.888888888888889,4.107051782619455,1132.6426953269658,30.825908934703556,28.52742035285537,9.343916933783095,16.51279565863016,13.897651684345968,5.53503953168283,2.691297971227555,3.8240048367189243,1.319582054325983,1.7425145315785517,0.7478314497361175,1.0794768340711585,-1.11,18705471.540509935,3.1337195971612624,6.1727827627007485,5.482865645542789,136.5779833436639,10.418621544395588,1.4118420783282006,1.4118420783282006,11.454490810640218,0.0,0.0,4.715119613734132,8.417796984328938,0.0,0.0,25.78862164991795,17.648288907023584,34.65124110139179,19.117734908917544,39.6531847869863,15.710677428091145,1.4311996572326342,5.309813353288376,0.0,25.80169472989099,17.395903399166535,29.733126322350174,0.0,0.0,10.024932967022508,5.687386274683562,0.0,0.0,33.65648108645083,10.023291153407584,0.0,48.65014920813212,24.16967483065318,2.8236841566564013,0.0,0.0,78.43,93.95121523278723,8.417796984328938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,27.55777926878277,176.37459252074663,0.0,0.0,2.9196830564500553,-3.109321184492315,0.0,-10.477950942180517,-7.947422662033368,-12.203148926668138,-5.639765195155703,0.5,18,3,5,0,0,0,1,0,1,4,3,6,10,0,0,0,1,1.0895000000000001,73.00700000000005,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +2812,Clc1ccccc1C(c1ccccc1)(c1ccccc1)n1ccnc1,0,8.8213458994709,-3.1439814814814806,8.8213458994709,0.401696900982615,0.45454498474207145,344.8449999999997,327.709,344.1080262240005,122,0,0.12258561028717012,-0.31890279301670854,0.31890279301670854,0.12258561028717012,0.8,1.36,1.92,2.622933132235983,1578.2861940916025,31.908812703358322,29.27239166400914,13.028320610027599,19.36350196472025,15.30701622525451,7.184980698263737,4.670212826379518,5.048177299388745,3.43026216894088,3.7137355236977996,2.4525878187142136,2.683827767955254,-2.8399999999999994,796493502.7350144,5.582129125874503,6.577182238233219,2.5530431664020705,175.79417247037622,4.567099647791355,6.909683808553566,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,90.15238308985536,17.169321691057284,22.931875227067845,28.235508612689742,23.302895454893736,11.600939890232516,0.0,9.551078168738563,0.0,5.538925252383345,0.0,124.9560118317142,0.0,0.0,0.0,0.0,0.0,11.600939890232516,9.551078168738563,5.538925252383345,0.0,39.99324992998474,103.24302404288188,5.022633313741326,0.0,0.0,17.82,130.49493708409753,0.0,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,4.9839785209472085,34.90383534512626,144.01429245051932,6.531896136026427,3.5855125661375657,-0.8762471655328798,-6.0019904257999475,0.0,-13.901859725371631,-2.9904927248677238,0.0,0.0,0.045454545454545456,25,0,2,0,0,0,3,1,4,2,0,3,4,0,0,0,4,5.376700000000004,101.84300000000002,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +55473,Cn1nc(CO)nc1NCCCOc1cccc(CN2CCCCC2)c1,0,8.684950907337427,-4.363274505451861,8.684950907337427,0.27558658853443907,0.6685732153466958,359.47399999999953,330.2420000000001,359.23212516800083,142,0,0.22069793773966462,-0.49351941177841235,0.49351941177841235,0.22069793773966462,1.5,2.423076923076923,3.269230769230769,2.2778018993324123,1788.0502346606906,43.679280085832076,41.55256455842752,12.552564558427516,24.029598969470896,20.903902299159405,6.548440413195585,4.051951149579704,4.051951149579704,2.383359482102844,2.383359482102844,1.4248898196888267,1.4248898196888267,-2.1199999999999997,51558822958.65047,4.150669533952689,9.542536990754225,5.438698204448237,195.4302570990482,15.155484498195637,12.308497076200194,7.236246576328128,7.379538938219128,0.0,0.0,4.899909730850478,4.681802935145185,10.082660329248245,0.0,18.45776231665597,49.760782979643615,46.01395883614835,17.525053692278046,48.26799423983143,5.948339280986494,1.4311996572326342,19.66437299524391,6.975826900282246,38.54754453254975,31.3593776491525,35.5575308203501,0.0,5.749511833283905,10.046676307088426,5.948339280986494,5.749511833283905,0.0,52.25394513944787,20.03167182751448,0.0,73.89003661161041,24.16967483065318,1.4118420783282006,0.0,0.0,75.44,129.0380407474555,0.0,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,15.191468520355457,44.59038570595685,239.7320925044995,0.0,2.4677704816571504,6.266891770732148,-1.7398213090215522,-4.54803122628587,-6.380067196057665,-16.66780242616316,-28.047699266027216,0.0,0.5789473684210527,26,2,7,0,1,1,1,1,2,7,2,7,11,0,1,1,3,2.1742999999999997,101.09750000000005,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +65981,CCOc1cc(CC(=O)N[C@@H](CC(C)C)c2ccccc2N2CCCCC2)ccc1C(=O)O,1,14.742934118876347,-5.362347514865557,14.742934118876347,0.9861547166753075,0.5166893132340431,452.5949999999995,416.3070000000002,452.267507632001,178,0,0.3389779672298276,-0.49296622794377337,0.49296622794377337,0.3389779672298276,1.3333333333333333,2.1515151515151514,2.909090909090909,2.865020628618756,2375.8781752294144,55.15181786940711,52.02742035285537,16.02742035285537,30.132710252172686,26.244116600873372,8.388654714909553,5.493892322187504,5.493892322187504,3.4125189345964686,3.4125189345964686,2.207704658281225,2.207704658281225,-3.0199999999999996,14610913508624.22,5.448363443170424,11.7296040306055,6.731571817679487,247.22098181998945,20.055394229046115,11.3129633249809,1.4118420783282006,5.907179729351506,1.4311996572326342,5.969305287951849,4.794537184071822,4.794537184071822,0.0,0.0,37.87345906524454,67.49170851436014,51.579310991400774,32.65738817429751,67.45237850116663,17.563871291986917,1.4311996572326342,5.309813353288376,5.893957685363079,58.43819332688357,24.452614342398654,58.98728542873405,0.0,5.749511833283905,14.946586037938904,5.687386274683562,5.749511833283905,0.0,36.53799781995875,11.167462085401201,5.893957685363079,120.15595099450435,42.29693095364306,1.4118420783282006,1.4311996572326342,0.0,78.87,176.3952472619386,10.959832924313863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,48.07807408917812,305.8047116097645,0.0,26.38899889627318,2.128664965397843,-8.560643045558148,-12.223966917212165,-18.886670413744394,-23.38616464055861,-26.68159712102891,0.0,0.48148148148148145,33,2,6,0,1,1,2,0,2,5,2,6,13,0,1,1,3,5.219900000000005,131.11900000000009,0,0,0,0,1,0,0,0,1,1,2,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3823,CC(=O)N1CCN(c2ccc(OCC3COC(Cn4ccnc4)(c4ccc(Cl)cc4Cl)O3)cc2)CC1,0,12.822676294033595,-4.3773694346051935,12.822676294033595,0.11766156060698396,0.45541449702144693,531.4400000000009,503.21600000000024,530.1487607360008,190,0,0.21906664142055068,-0.4907908063975836,0.4907908063975836,0.21906664142055068,1.3055555555555556,2.111111111111111,2.8333333333333335,1.748593786661222,2394.559490442985,49.798082239349085,45.177776489873736,18.68963438191065,28.43545793265346,23.266508264882518,10.022437210900971,6.3175218933833985,7.073450839401852,4.033864689301065,4.506320280562597,2.537028608042115,2.99326522151107,-2.779999999999999,5332490662718.153,8.107540211363025,10.682485378298802,5.466468508597956,259.1546039589186,28.57750797089246,19.759273659320403,0.0,11.694290881922102,0.0,0.0,4.794537184071822,4.9839785209472085,0.0,0.0,29.24429848812833,36.25451224597977,65.57086802482152,57.28005530302512,57.38636561823818,34.7964457845001,0.0,14.450987899589041,0.0,25.21588098113221,44.00531895394683,76.55481120841847,0.0,5.749511833283905,9.636772684650527,5.687386274683562,5.749511833283905,23.20187978046503,65.5435948789869,26.552233928558458,0.0,50.79658318175887,60.946093089238815,10.045266627482652,0.0,0.0,69.06,168.019998711667,4.794537184071822,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,75.79370821463137,251.63259662645146,12.274149653782008,14.671492748348633,-2.0103290070174427,-3.0246302961440596,-8.0972378450798,-10.260962248834865,-8.00717492792136,-33.289015814695695,0.0,0.38461538461538464,36,0,8,0,2,2,2,1,3,7,0,10,8,0,2,2,5,4.205800000000003,137.5959999999999,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,3,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +446642,C/C(=C/C(=O)c1ccccc1)N[C@@H](Cc1ccc(OCCc2nc(-c3ccccc3)oc2C)cc1)C(=O)O,1,13.552878299370345,-4.555128620636229,13.552878299370345,0.9013379472965368,0.18773968926963042,510.5899999999998,480.35000000000036,510.2154720600008,194,0,0.32595470105390933,-0.4931908307584999,0.4931908307584999,0.32595470105390933,1.2105263157894737,1.9473684210526316,2.6315789473684212,1.9608320310801024,2708.87172560635,52.839534123676465,48.43566864331923,18.435668643319232,30.634505567545155,24.67875809358726,9.823296207623438,6.405595887517354,6.405595887517354,3.8849674422169587,3.8849674422169587,2.3245298319757244,2.3245298319757244,-4.6499999999999995,42967774722061.445,7.927980145707183,12.541527233891067,7.195511929627625,263.6510083552927,19.572635435248984,17.527651720507993,7.19508702469314,5.890723922025908,1.4311996572326342,5.969305287951849,4.794537184071822,9.77851570501903,0.0,0.0,60.42418707663295,43.436910556941534,49.329449406846386,36.92656724882872,63.644978101198674,11.75255023431679,1.4311996572326342,10.293791874235584,0.0,32.467526505599764,6.558985242916289,118.92405136349444,0.0,17.20368724700681,10.046676307088426,0.0,5.749511833283905,0.0,34.42221465763715,17.54038698673058,6.851892117295679,72.60874727125059,100.7601239034309,1.4118420783282006,12.885375070955538,0.0,101.66000000000001,192.2166139466225,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,50.37829519918042,256.62264745976114,0.0,30.44514130381176,2.6904506720259445,-7.706992152698524,-8.885962551947786,-24.35395233181416,-8.383578952343619,-11.761086780128052,0.0,0.1935483870967742,38,2,7,0,0,0,3,1,4,7,2,7,14,0,0,0,4,5.643520000000006,145.10999999999984,1,0,0,0,0,1,0,0,1,1,2,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5311128,CC(C)C[C@H](NC(=O)[C@@H](COC(C)(C)C)NC(=O)[C@H](Cc1ccc(O)cc1)NC(=O)[C@H](CO)NC(=O)[C@H](Cc1c[nH]c2ccccc12)NC(=O)[C@H](Cc1cnc[nH]1)NC(=O)[C@@H]1CCC(=O)N1)C(=O)N[C@@H](CCCN=C(N)N)C(=O)N1CCC[C@H]1C(=O)NNC(N)=O,0,17.104946345480137,-7.442353411567467,17.104946345480137,0.7564051999522738,0.010267024043949413,1269.4330000000025,1184.7609999999993,1268.641439368002,494,0,0.3303713611319067,-0.5079666451556014,0.5079666451556014,0.3303713611319067,0.8461538461538461,1.5164835164835164,2.1868131868131866,2.0948258452200186,7112.01032008969,139.51629601946584,127.26532078549332,43.26532078549332,77.02829248320059,63.2836210064053,22.4172797064783,14.959535764722181,14.959535764722181,8.749554610257665,8.749554610257665,5.308938376717713,5.308938376717713,-9.849999999999998,2.278247166110585e+65,18.006598070068165,33.10827339220546,21.71254933877312,643.0393552323737,89.44605336080929,61.281302604600924,31.37271197865143,54.59581722139618,7.33837938658414,6.031114512338072,58.35659271974632,15.197331851411459,0.0,0.0,43.915877772907834,93.94134255161029,119.51688745697665,59.29135691503805,180.83609336560588,81.96539130667804,2.8623993144652684,73.15403391134807,28.04551334517756,157.7507926259027,26.111689854464466,83.80934277514456,0.0,5.749511833283905,70.47529004627067,4.794537184071822,5.749511833283905,0.0,189.85414974412785,71.8010094985064,5.893957685363079,183.41931346892034,71.98091652953777,25.4131574099076,10.902924932081056,0.0,495.8899999999998,446.6098923984166,51.640593701759315,38.356297472574575,0.0,0.0,0.0,0.0,0.0,0.0,24.93086258959735,78.74712216972317,744.7809520580182,0.0,174.96806311967043,-14.48960327393116,-23.45549888478984,-53.14140722667727,-79.58393930990735,-64.40711154999751,-53.33812159905242,0.0,0.5084745762711864,91,20,32,0,2,2,2,2,4,16,17,32,35,0,2,2,6,-3.1057000000000192,328.53820000000024,0,1,0,0,0,3,2,1,0,0,11,11,0,0,1,3,12,3,0,0,1,2,0,0,0,0,0,12,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +4506,O=C1CN=C(c2ccccc2)c2cc([N+](=O)[O-])ccc2N1,0,12.476792380532459,-3.268997425359033,12.476792380532459,0.17730017006802745,0.6771088741597445,281.2709999999998,270.183,281.0800412120003,104,0,0.26975709004006415,-0.3238334332450522,0.3238334332450522,0.26975709004006415,1.3333333333333333,2.0952380952380953,2.8095238095238093,2.6462929917925058,1232.6483701311256,24.444711088220565,21.066385657891466,10.066385657891464,14.645346712594128,10.884520101151896,5.437306505651938,3.6934929393684373,3.6934929393684373,2.412386770315004,2.412386770315004,1.571720256699368,1.571720256699368,-3.02,5483840.6327950535,5.40134891166587,5.162909038431587,2.507711912885824,135.34990714131757,5.309813353288376,6.496859684315945,1.4118420783282006,5.907179729351506,5.687386274683562,0.0,19.901260185473063,0.0,0.0,0.0,30.212093538316473,6.042418707663295,23.21174039872058,30.02996788797413,24.83727587291989,22.99363728148933,0.0,0.0,4.992404732635669,0.0,11.80667303760432,69.58057091346592,0.0,0.0,5.309813353288376,11.374772549367124,0.0,0.0,23.039035465255825,4.794537184071822,10.114318268765572,24.83448854509619,53.33175439394203,1.4118420783282006,0.0,0.0,84.6,93.88006065932329,14.908855452837393,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,4.992404732635669,15.1194276400304,87.42293307059201,0.0,26.260327912035386,11.274403298362758,-4.711599636768286,-1.6784538506760727,-7.715280034853449,0.0,-3.268997425359033,0.0,0.06666666666666667,21,1,6,0,1,1,2,0,2,4,1,6,2,0,0,0,3,2.3842999999999996,78.67410000000002,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +8980,CN(C)CCOC(c1ccccc1)c1ccccc1,0,9.01752881708239,-4.260571381330312,9.01752881708239,0.8637716259343242,0.784550440095116,255.36100000000013,234.19299999999993,255.162314292,100,0,0.10759604464030842,-0.36745986260344343,0.36745986260344343,0.10759604464030842,1.105263157894737,1.631578947368421,2.1052631578947367,3.132065963443507,1186.9162744776725,31.712660280651686,30.35546188596382,9.355461885963821,17.67398514605687,15.3290686837138,4.8290686837138,2.980461885963821,2.980461885963821,1.7646641994896335,1.7646641994896335,1.0736205012280602,1.0736205012280602,-1.6399999999999997,67334761.19059476,2.9992049210126246,7.073267029461437,4.194495435474983,144.69096730077828,9.636772684650527,6.080018026949988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.42418707663295,25.078556783958483,17.462928133677703,24.378846473129144,33.52279263337467,0.0,0.0,4.899909730850478,0.0,6.080018026949988,27.007498727796726,71.55109006002695,0.0,0.0,0.0,0.0,0.0,0.0,31.907408458647208,4.736862953800049,0.0,45.992850689918626,60.42418707663295,0.0,0.0,0.0,12.47,109.53851654562416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.52279263337467,171.8353053279393,0.0,-0.8637716259343242,0.0,-2.6555130385487518,0.0,-11.593761907668384,-3.7847855253212392,-16.187473230466566,0.0,0.29411764705882354,19,0,2,0,0,0,2,0,2,2,0,2,8,0,0,0,2,3.3542000000000023,79.23300000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9782,C[C@H]1C[C@H]2[C@@H]3CCC4=CC(=O)C=C[C@]4(C)[C@@]3(F)[C@@H](O)C[C@]2(C)[C@@]1(O)C(=O)CO,0,19.92038229875283,-6.1984983229402895,19.92038229875283,2.163277467456986,0.667213496992105,392.4669999999996,363.2350000000001,392.19990224800074,154,0,0.21154618878244555,-0.3897124158559765,0.3897124158559765,0.21154618878244555,1.5714285714285714,2.4642857142857144,3.142857142857143,2.7647301106462776,1886.0519486945689,45.585421958697395,42.41920592532854,13.419205925328543,24.845440867594988,21.68434783405586,7.459602962664271,6.304094080916578,6.304094080916578,4.932317033892536,4.932317033892536,3.4350341896626797,3.4350341896626797,-1.3700000000000003,108754063538.31697,5.088954764176015,5.832747547893353,2.0142638085946416,204.87594089052288,15.326424573321638,12.160036053899976,17.235249711475557,4.293598971697903,0.0,0.0,9.589074368143644,4.39041504767482,0.0,0.0,25.32896051069619,56.23565058541048,44.13910974756106,14.304569363971307,64.9456364495659,11.566489892729878,4.293598971697903,0.0,28.5118539948828,63.3972046138839,6.558985242916289,23.729319768175966,0.0,0.0,0.0,4.39041504767482,0.0,0.0,55.095327337345054,9.589074368143644,28.5118539948828,81.68709841763027,23.729319768175966,0.0,0.0,0.0,94.83,133.76385351258884,20.555142817505402,4.39041504767482,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,28.967252982761863,271.1671466470868,0.0,27.56999759483716,11.856525808858146,-25.465470492477174,-22.99768401313554,-6.925111072914779,-27.53030915375411,-20.17509531850058,0.0,0.7272727272727273,28,3,5,4,0,4,0,0,0,5,3,6,8,3,0,3,4,1.8957000000000002,99.94440000000004,0,3,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +444036,CCC(=O)O[C@]1(C(=O)SCF)[C@H](C)C[C@H]2[C@@H]3C[C@H](F)C4=CC(=O)C=C[C@]4(C)[C@@]3(F)[C@@H](O)C[C@@]21C,0,20.161280596758132,-6.534598096182919,20.161280596758132,1.9202874845479443,0.5755860893833779,500.5789999999997,469.3310000000003,500.1844297520008,188,0,0.30605845108960306,-0.4491470967625816,0.4491470967625816,0.30605845108960306,1.4705882352941178,2.2941176470588234,2.9411764705882355,2.7764938530758325,2195.8622457584274,52.162772227887025,47.08338316181086,16.899879742738584,28.075074155339248,24.108188161833155,9.516436452297018,7.043080876916803,7.772299184009425,5.4281801362507345,5.978184695746343,3.9169412263176673,4.427564690714839,-1.61,2148615291619.827,7.240828180509894,8.219134081662757,3.0097409789322875,244.7481483741702,9.84567114490726,12.106453269211036,17.053055576094305,6.546476587418354,0.0,5.969305287951849,14.383611552215466,13.171245143024459,0.0,0.0,26.607748097922606,61.303757478178404,60.51826800276422,15.675327920141527,78.52328452525381,28.629712113893625,1.4311996572326342,0.0,28.5118539948828,76.39682376589155,5.958726234499058,23.729319768175966,0.0,0.0,0.0,13.171245143024459,0.0,11.761884949391115,52.86411693873274,19.120474506015512,28.5118539948828,94.02202475960677,23.729319768175966,0.0,0.0,0.0,80.67,163.22643587734305,25.349680001577223,13.171245143024459,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,31.58788789297747,323.5253595906526,-1.9202874845479443,42.008107219191785,0.46935956453926364,-27.649282970808727,-29.710718319038943,-7.661273240734869,-35.08147027966793,-20.979794079585336,0.0,0.72,34,1,5,4,0,4,0,0,0,6,1,9,9,3,0,3,4,4.430000000000004,120.86780000000005,0,1,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,5,0,0,0,1,1,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +124087,Clc1ccc2c(c1)CCc1cccnc1C2=C1CCNCC1,0,8.749541367472915,-3.750351237717309,8.749541367472915,0.5807626028806583,0.7947531162646359,310.82799999999963,291.676,310.1236762880005,112,0,0.12221546723040838,-0.31609455906276906,0.31609455906276906,0.12221546723040838,1.1363636363636365,1.9545454545454546,2.8181818181818183,2.5250071392022706,1515.891985336699,31.790010549841313,29.77239166400914,11.528320610027597,18.250682875346946,15.53062302300449,6.461373900513758,4.22160602862954,4.599570501638767,2.9528115115022424,3.1417937480068554,2.064086182782924,2.205822860161385,-1.6400000000000001,215351670.9664508,4.252815839055677,5.864062936700998,2.4668840166179695,162.5320414283541,5.309813353288376,1.4118420783282006,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,29.258881835628372,73.30302957203028,33.21773572866799,13.91847933186978,26.085496089392155,17.174044420301783,0.0,10.293791874235584,0.0,25.491699605317518,12.99371936863189,69.36500906288127,0.0,0.0,5.309813353288376,0.0,0.0,11.600939890232516,17.977697889579098,12.745849802658759,0.0,59.80378628366223,41.9580932792005,6.434475392069527,5.573104530069267,0.0,24.92,118.73334592018836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,37.68643597962468,160.40000622282798,6.029444275478275,3.7364479402872255,-1.4253866948013776,-7.169491370622321,0.0,-5.357675623232835,-15.547190299473703,-7.388376672685536,0.0,0.3157894736842105,22,1,2,1,1,2,1,1,2,2,1,3,0,0,1,1,4,4.018900000000002,91.22270000000003,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +31703,COc1cccc2c1C(=O)c1c(O)c3c(c(O)c1C2=O)C[C@@](O)(C(=O)CO)C[C@@H]3O[C@H]1C[C@H](N)[C@H](O)[C@H](C)O1,0,14.779065499124776,-5.160821523487471,14.779065499124776,1.2746937864466696,0.23526258168565614,543.5250000000015,514.2930000000003,543.1740607480007,208,0,0.2931482616936033,-0.5068479547044316,0.5068479547044316,0.2931482616936033,1.358974358974359,2.230769230769231,2.948717948717949,2.14600340663746,2503.987618914383,52.89445855652639,47.43794479060245,18.43794479060245,30.484217061894913,24.01701347431625,10.08134483099702,7.687616091714387,7.687616091714387,5.52055276729438,5.52055276729438,3.8320507041844,3.8320507041844,-3.39,32624766205746.83,9.061504983045493,9.662462759118538,4.111772825118512,263.3750060875467,45.47434679266248,32.2322557104081,17.832568261266776,10.076843918062842,2.8623993144652684,0.0,14.383611552215466,0.0,0.0,0.0,12.08483741532659,12.894310824958975,55.534607209131,58.41746368886621,87.1186137615529,17.34973483909482,7.155998286163171,0.0,5.719716975726273,62.095742550004,13.596937701798877,51.50796507317185,0.0,17.248535499851716,10.456579929526322,0.0,17.248535499851716,0.0,93.69176948436316,20.6411879930013,0.0,98.8042315009748,18.127256122989884,2.8236841566564013,0.0,0.0,206.07,167.51863263964762,21.237404333066564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.54404095553606,47.493166759113485,256.6570832889214,0.0,43.676867733444695,21.002370896513156,-16.95651495939894,-12.468303229563775,-8.895563157306263,-34.39295226587954,-8.947322339748425,-3.6756659669822787,0.4444444444444444,39,7,12,2,1,3,2,0,2,12,6,12,13,0,1,1,5,0.0012999999999993017,131.75439999999995,0,3,0,0,0,0,0,2,0,0,3,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,1,0,0,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3475,Cc1ccc(S(=O)(=O)NC(=O)NN2CC3CCCC3C2)cc1,0,13.146746044109406,-5.952619073864108,13.146746044109406,0.8501317189971598,0.8860379615947154,323.41799999999967,302.25000000000006,323.1303625320006,120,0,0.34270409217385467,-0.2697628252683694,0.34270409217385467,0.2697628252683694,1.4090909090909092,2.0454545454545454,2.6363636363636362,2.2199126936781983,1439.8016147064518,34.27350269189626,31.474633948355326,11.291130529283052,18.734827557301447,15.913010191632086,6.958646329432809,3.813461960437641,5.354417116392874,2.304243991801651,3.4208192049622483,1.4209730952864867,2.1144082148542527,-1.6,262011780.22784576,4.076187644672853,5.887683316002724,3.2502415458937195,160.07670566012195,0.0,0.0,2.8236841566564013,0.0,10.023291153407584,6.031114512338072,5.418816146392429,22.936366306089422,0.0,0.0,24.021213808352964,43.47049470600719,33.55509771118519,10.378517700198655,42.08043089229135,16.054405665745655,0.0,15.142848284081094,11.787915370726157,30.866150296801596,12.99371936863189,29.733126322350174,0.0,0.0,10.133935760126562,4.794537184071822,0.0,0.0,32.45154338925343,10.023291153407584,18.639807488021837,50.72663876291936,29.065158306170954,2.8236841566564013,0.0,0.0,78.50999999999999,116.5781653083366,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.868096723890577,193.01535245766817,0.0,11.297131616771539,-0.8501317189971598,-2.3138226995564812,-8.27211228094286,-8.576775243821862,-12.045250310363535,-11.71843941356037,-5.952619073864108,0.5333333333333333,22,2,6,1,1,2,1,0,1,4,2,7,4,1,1,2,3,1.6298199999999994,82.43620000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1 +441243,CC(C)(C)NC(=O)[C@@H]1C[C@@H]2CCCC[C@@H]2CN1C[C@@H](O)[C@H](Cc1ccccc1)NC(=O)[C@H](CC(N)=O)NC(=O)c1ccc2ccccc2n1,1,15.789426717868796,-6.495114358667665,15.789426717868796,1.0478249673518085,0.19750207121883465,670.855000000002,620.455,670.3842687000014,262,0,0.27006304679734344,-0.3896351979620376,0.3896351979620376,0.27006304679734344,1.1428571428571428,1.8979591836734695,2.6530612244897958,2.2184397624602297,3808.5458374042746,78.77062002292412,73.72452302531906,23.724523025319062,43.477580149114814,37.348218567123055,12.703902299159402,8.759409178115629,8.759409178115629,5.276166432397329,5.276166432397329,3.3736966751480546,3.3736966751480546,-4.35,3.6660719973298143e+28,8.741697623954813,15.907355493348835,9.85622067816918,358.58692766042833,26.757965226698616,11.711820463198105,7.059210391641003,19.152738845287153,5.907179729351506,0.0,24.07805846713776,4.9839785209472085,0.0,0.0,73.50054307295778,69.11065533362492,63.67086696441648,50.56680692514826,91.6595437905252,34.53164384948708,1.4311996572326342,25.813328311662815,17.507632346452432,94.83877134557495,12.99371936863189,77.7239852708417,0.0,0.0,21.6491570355914,0.0,0.0,0.0,82.71895507055773,20.756536453544843,11.787915370726157,135.1585189019701,66.46660578429623,7.059210391641003,10.902924932081056,0.0,166.75,258.4251019717038,30.19153623285492,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,48.20132465565206,438.936910555381,0.0,61.222230255477655,-2.7701005064490793,-12.712560045317051,-25.47307558391995,-36.469821425390236,-44.78709218750925,-28.029824395606653,0.0,0.5,49,6,11,1,1,2,2,1,3,7,5,11,13,1,1,2,5,3.092400000000003,188.21379999999954,0,1,0,0,0,1,0,0,0,0,4,4,0,1,0,2,3,1,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 +5362440,CC(C)(C)NC(=O)[C@@H]1CN(Cc2cccnc2)CCN1C[C@@H](O)C[C@@H](Cc1ccccc1)C(=O)N[C@H]1c2ccccc2C[C@H]1O,0,15.821788108070846,-6.124934482446434,15.821788108070846,1.3773558093571758,0.2628234200956571,613.8030000000022,566.4270000000004,613.3628049840014,240,0,0.23859013760972772,-0.39176882691863324,0.39176882691863324,0.23859013760972772,1.2,2.0,2.8,2.1448388832374543,3469.2458382383675,72.90037653492104,68.86906113935524,21.869061139355242,40.544223385038364,34.960701925855105,11.749778153927473,8.090031593405586,8.090031593405586,4.884365129891526,4.884365129891526,3.176148489223774,3.176148489223774,-3.629999999999999,8.982246306847286e+23,7.902074729605154,14.643085866126452,8.976638083300317,332.5414480797706,20.837243088791176,6.017892468349645,2.8236841566564013,14.67675877316828,0.0,0.0,24.372872350791805,0.0,0.0,0.0,60.42418707663295,61.597750828997064,98.27561914271067,41.48082397714338,81.57299282233396,11.814359458703011,2.8623993144652684,25.403424689224916,5.893957685363079,75.90605698317373,25.98743873726378,101.06620217271377,0.0,0.0,10.619626706576751,0.0,0.0,0.0,89.38246564992764,28.83178385511835,5.893957685363079,114.14291760367337,78.81239620592578,2.8236841566564013,0.0,0.0,118.03000000000002,241.0874612054952,20.602461864711277,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,15.201594903161634,44.02623952172987,412.0509592497758,0.0,31.16155637792653,4.866571720800453,-13.182780299614008,-13.265887282751304,-29.567327785815444,-29.506189115782277,-42.64023619787288,0.0,0.4722222222222222,45,4,9,1,1,2,2,1,3,7,4,9,13,0,1,1,5,2.8669000000000016,174.06699999999952,0,2,0,0,0,1,0,0,0,0,2,2,0,1,0,3,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +119182,Nc1nc(Cl)nc2c1ncn2[C@@H]1O[C@H](CO)[C@@H](O)[C@@H]1F,0,15.727019557823128,-4.3630794123204835,15.727019557823128,0.07789588057445251,0.648649936215886,303.6809999999998,292.593,303.0534451120003,108,0,0.22595283837058852,-0.3935666899883442,0.3935666899883442,0.22595283837058852,1.8,2.7,3.45,2.4035670338164254,1047.0647636802717,23.78409257144667,20.216741794909833,9.972670740928288,14.042659745549352,10.141452803364386,5.308493504445971,3.517178874054469,3.855240575945876,2.381404728177398,2.5504355791231004,1.5461467557362978,1.706255075810994,-1.5500000000000003,3451519.4479339723,5.6799685826292015,4.774038711862521,1.9008817218355494,132.26485726343176,20.674196311740747,19.04749532768646,26.640403999907683,8.145985634509527,0.0,0.0,4.567099647791355,9.374393568622029,9.967957041894417,0.0,0.0,11.600939890232516,0.0,21.086908293903832,31.76388843353723,28.582680606451532,2.8623993144652684,19.519035210632982,0.0,24.51171589854851,12.278702218642561,11.586958034010486,0.0,0.0,5.719716975726273,10.208277825509848,0.0,11.600939890232516,57.465799238840916,4.736862953800049,0.0,15.799262703128093,6.303371713966227,8.10727047670066,11.16387793838399,0.0,119.31000000000002,59.63939989169429,0.0,4.39041504767482,10.286816623517627,0.0,0.0,0.0,0.0,0.0,25.16955194505605,31.619196208345773,104.70641495146846,5.712570815188809,10.731116813231262,6.871256226117714,-1.4043092194535185,-0.6304425049340725,0.0,-17.062511180398086,-3.7296514567761276,0.0,0.5,20,4,8,0,1,1,0,2,2,8,3,10,5,0,1,1,3,-0.34940000000000027,66.644,0,2,0,1,0,4,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2942,CN(C)/N=N/c1nc[nH]c1C(N)=O,0,11.587191279289494,-3.1774518140589576,11.587191279289494,0.14065854119425536,0.5105305434356862,182.1870000000001,172.107,182.09160894,70,0,0.26867629510908286,-0.36420443789889323,0.36420443789889323,0.26867629510908286,2.076923076923077,2.923076923076923,3.6153846153846154,3.3271407579867707,602.5831960535658,18.162772227887025,16.091529863463613,6.091529863463611,10.263761443659874,7.734619313731638,2.8929785272317634,1.8022190756334013,1.8022190756334013,0.9609702175916986,0.9609702175916986,0.5255802480568807,0.5255802480568807,-1.92,45850.30780010603,2.5334924332712827,3.654513294260848,2.2558359887894963,88.85707309502466,10.696720245955525,1.3707585561702202,9.929454229833063,5.817862777835028,5.907179729351506,0.0,9.803449708026353,4.9839785209472085,0.0,5.114250125629398,5.2232529187334515,0.0,22.17620513758581,6.303371713966227,18.625373312247962,11.725042507186533,0.0,14.969894315130992,16.057220020089122,0.0,13.951653800564491,11.997299708814687,0.0,0.0,5.719716975726273,5.817862777835028,0.0,0.0,34.82872784504699,0.0,0.0,20.08377507211182,16.640874758329076,4.235526234984602,0.0,0.0,99.72999999999999,43.39371299229199,4.794537184071822,0.0,9.985915794183784,0.0,0.0,0.0,0.0,0.0,15.321481565310059,13.830836128176143,70.79924933862435,0.0,15.051100009448223,5.868692365835223,-1.2305590986394563,-2.1599376417233547,0.0,-0.8069746787603929,-6.354903628117915,0.0,0.3333333333333333,13,3,7,0,0,0,0,1,1,4,2,7,5,0,0,0,1,0.0688999999999999,45.308600000000006,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,4,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +896,COc1ccc2[nH]cc(CCNC(C)=O)c2c1,0,11.925260324158232,-3.789800760582012,11.925260324158232,0.09322810374149659,0.8449349532973586,232.28300000000013,216.15499999999997,232.121177752,90,0,0.21638288980463508,-0.49674296806651436,0.49674296806651436,0.21638288980463508,1.8235294117647058,2.764705882352941,3.588235294117647,2.9440247236176824,1115.0015762894693,26.05795974227243,24.210923771927643,8.210923771927643,14.585945635835625,12.151226817695628,4.256799626695711,2.782159175506318,2.782159175506318,1.7396863855031381,1.7396863855031381,1.091014658936792,1.091014658936792,-1.9700000000000002,4122922.595601424,2.8837688431924913,4.908146397569112,2.5842988253882706,122.56750942454985,15.023679577317676,5.749511833283905,2.8236841566564013,5.907179729351506,0.0,0.0,4.794537184071822,0.0,0.0,0.0,0.0,30.06363251601626,40.019881837699,16.633262352074127,31.545704080911342,16.810104661432565,0.0,10.286816623517627,0.0,13.224817018625059,13.534812143198533,29.86360282550164,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,24.418995142779288,11.167462085401201,0.0,31.60596339537575,24.300151333804646,2.8236841566564013,10.902924932081056,0.0,54.12,84.49266183533007,4.794537184071822,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,4.736862953800049,22.01430394303948,127.39729808683882,0.0,12.01848842789973,-1.6295424697656833,-1.885899037855883,-3.123451558896183,-2.965665264594512,-4.790375448790628,-7.309476253572801,-3.211376481262847,0.3076923076923077,17,2,4,0,0,0,1,1,2,2,2,4,6,0,0,0,2,1.8550999999999997,67.23840000000003,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1355,Clc1cccc(N2CCNCC2)c1,0,8.0057279856387,-3.435751291257244,8.0057279856387,0.11203703703703694,0.736534949218909,196.6810000000001,183.57699999999997,196.076726096,70,0,0.12234056826747942,-0.36894315627743407,0.36894315627743407,0.12234056826747942,1.5384615384615385,2.3076923076923075,3.076923076923077,2.957862767115832,706.7770204273903,20.618802153517006,19.27239166400914,7.028320610027598,11.452135486850342,9.754229820754468,3.684980698263736,2.0570162252545092,2.4349806982637365,1.2403115115022443,1.429293748006858,0.741284612119335,0.8780334431080679,-0.7300000000000001,183341.94203430222,2.2582511977388044,3.985475356652022,2.1406635023006637,101.82097563866714,10.209723084138854,1.4118420783282006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.643358597895812,18.127256122989884,42.18049255036956,10.96606844936176,17.86094475237084,17.28832616491608,0.0,5.309813353288376,0.0,0.0,30.887348468114254,29.192308144394506,0.0,0.0,10.209723084138854,5.687386274683562,0.0,11.600939890232516,25.98743873726378,0.0,0.0,16.44910267404264,24.16967483065318,6.434475392069527,0.0,0.0,15.27,66.17694650963023,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,0.0,29.46188464260335,101.8002744271577,5.751476774866323,-0.11203703703703694,-1.1729171390778526,-0.9797685185185181,0.0,-3.4894996115730237,0.0,-13.686417784706478,0.0,0.4,13,1,2,0,1,1,1,0,1,2,1,3,1,0,1,1,2,1.7495999999999998,56.53470000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5832,C#C[C@]1(OC(C)=O)CC[C@H]2[C@@H]3CCC4=CC(=O)CC[C@@H]4[C@H]3CC[C@@]21C,0,13.091281599797355,-5.384876110166292,13.091281599797355,1.048970779134019,0.5338581764582067,340.4629999999995,312.23900000000003,340.20384475600076,134,0,0.3036727418854079,-0.44542242982041896,0.44542242982041896,0.3036727418854079,1.44,2.36,3.16,2.59828455928418,1793.7238825461072,42.43072142031815,40.22474487139159,12.22474487139159,22.875879865451754,20.816496580927726,6.816496580927726,5.274829914261059,5.274829914261059,3.9155080660544783,3.9155080660544783,2.757732772309871,2.757732772309871,-1.5599999999999998,15698471851.95513,3.982603576809852,5.726927222642201,2.3294762494652934,189.46509661000945,4.736862953800049,1.3707585561702202,11.384295757348628,0.0,0.0,5.969305287951849,9.589074368143644,0.0,0.0,6.399401534821945,18.34543096622059,74.23837679679353,54.2795299484476,1.3707585561702202,52.707176894709896,11.75255023431679,0.0,0.0,28.990821210849095,70.28823425621007,0.0,11.625176276104835,0.0,12.319835853677588,0.0,0.0,0.0,0.0,17.353601045300476,14.325937321943691,41.31065706452667,103.06842301799243,11.625176276104835,0.0,0.0,0.0,43.370000000000005,122.65678197748082,17.813625705164963,0.0,0.0,0.0,6.399401534821945,5.920434318855644,0.0,0.0,0.0,34.893551189544894,249.38662661670568,0.0,26.167488094371002,0.0,-12.393683972077508,-24.71700666329266,-2.1282279701302524,-38.02898835877328,-9.119541080136358,0.0,0.7272727272727273,25,0,3,4,0,4,0,0,0,3,0,3,3,3,0,3,4,4.0633000000000035,95.42300000000006,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3779,CC(C)NCC(O)c1ccc(O)c(O)c1,0,8.285241874527589,-4.055579766628876,8.285241874527589,0.9442816987906277,0.5632719285067509,211.26100000000014,194.12499999999997,211.120843404,84,0,0.293293795225878,-0.5042598752600684,0.5042598752600684,0.293293795225878,1.6666666666666667,2.533333333333333,3.2,4.017546484470205,839.8603912240135,25.662772227887025,24.171958466891546,7.171958466891548,14.216796795623587,11.7315444980873,3.5595860311957526,2.3095860311957526,2.3095860311957526,1.242103228723307,1.242103228723307,0.6536846489010589,0.6536846489010589,-1.2600000000000002,2077896.7969187656,2.36003184091901,4.9999590646139,3.416335285841419,113.39124304114893,20.63623792661001,1.4118420783282006,11.49902366656781,1.4311996572326342,2.8623993144652684,0.0,0.0,0.0,0.0,0.0,19.746202942254655,17.648288907023584,24.851579158197566,11.563052251630868,34.558127881862696,0.0,4.293598971697903,5.309813353288376,0.0,25.80169472989099,6.496859684315945,23.69070761468688,0.0,11.49902366656781,5.309813353288376,0.0,11.49902366656781,0.0,32.13477569768513,0.0,0.0,43.16711498345123,18.127256122989884,1.4118420783282006,0.0,0.0,72.72,72.79809904875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,23.525302280238964,129.32524706627885,0.0,0.0,11.13869771169487,-1.3599688208616774,-2.0463167280801207,-7.697521927752583,-3.810164871504158,-11.799972429775151,0.0,0.45454545454545453,15,4,4,0,0,0,1,0,1,4,4,4,9,0,0,0,1,1.1291999999999998,57.870100000000036,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6436173,CO[C@H]1/C=C/O[C@@]2(C)Oc3c(C)c(O)c4c(O)c(c5c(nc6cc(C)ccn65)c4c3C2=O)NC(=O)/C(C)=C\C=C\[C@H](C)[C@H](O)[C@@H](C)[C@@H](O)[C@@H](C)[C@H](OC(C)=O)[C@@H]1C,0,16.024277414094623,-6.741804060041368,16.024277414094623,0.013629869714189446,0.11485548301223952,785.891000000002,734.4830000000001,785.3523594520016,304,0,0.31210805381182055,-0.5067367388149195,0.5067367388149195,0.31210805381182055,1.087719298245614,1.9649122807017543,2.6666666666666665,2.27195014126085,4478.2012949745995,84.8750680296092,78.33237198160236,27.332371981602368,47.776634731251995,39.707316520084234,14.627109762728827,10.892742775956064,10.892742775956064,7.537992281792931,7.537992281792931,5.0751995385232345,5.0751995385232345,-5.4399999999999995,1.6721194283051147e+33,11.392668277478831,15.48251433787455,7.102684809373565,401.99422594247784,44.692497932917426,41.317765180371836,7.161353911612106,2.8623993144652684,14.552823990181713,11.756416440522447,18.784306158477257,4.9839785209472085,0.0,0.0,45.56378370728942,44.25603700494619,109.50675812324877,54.618481661017356,118.23303179400271,50.80014332328169,5.724798628930537,9.384673127209002,23.575830741452314,91.77421231603165,12.347765812170964,70.96761070306634,0.0,17.248535499851716,10.046676307088426,5.687386274683562,17.248535499851716,0.0,90.34957020348985,23.79966322954379,37.27961497604367,132.5030300640625,54.27725622797536,1.4118420783282006,27.45302708492984,0.0,198.37999999999997,266.71409839585476,21.284723380272442,9.589074368143644,4.400694606261793,0.0,0.0,0.0,0.0,0.0,29.78412900186894,68.28388219359559,468.1834375664236,0.0,49.62068012262014,13.231641212012669,-14.56838510471302,-45.592213024145984,-15.175591148320585,-30.41396992102424,-45.48108676261821,-5.0545129402344005,0.4418604651162791,57,5,14,0,2,2,2,2,4,13,5,14,16,0,0,0,6,6.157840000000009,213.1433999999995,0,2,0,0,0,2,0,2,0,0,3,3,0,0,0,2,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,2,0,2,0,0,0,1,4,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +9926001,Nc1cnc(-c2cc(Cl)cc(Cl)c2Cl)c(N)n1,0,8.007926902242378,-0.6127207734945828,8.007926902242378,0.0021685423140451743,0.78983831374963,289.5529999999998,282.49699999999996,287.97362926400024,88,0,0.1578231755107096,-0.38234485996502865,0.38234485996502865,0.1578231755107096,1.2352941176470589,2.0588235294117645,2.764705882352941,2.902082998399629,788.7643713999072,18.342416792648606,14.922747801027512,10.190534639082877,11.073162520418377,7.447441878013548,5.292480915041397,2.898177299388746,4.032070718416429,1.7945484945348122,2.7417006080152464,1.1218618916930123,1.732186779421962,-1.23,132742.0911864682,6.08883661417288,4.56453312012705,2.386315489171115,122.58439339225251,11.439433951452546,11.51179077268349,11.465231091147832,0.0,0.0,0.0,0.0,9.967957041894417,0.0,0.0,34.802819670697545,12.08483741532659,10.586084805438322,20.33043750680807,9.759643981823464,46.43854522636761,0.0,9.967957041894417,0.0,0.0,11.439433951452546,33.32563256736533,0.0,11.257379486545457,11.439433951452546,11.635725555670057,0.0,34.802819670697545,9.967957041894417,0.0,0.0,4.1122756685106605,18.25773262614135,20.715268254536774,11.257379486545457,0.0,77.82,23.851039474148113,0.0,0.0,43.80713208688527,0.0,0.0,0.0,0.0,0.0,9.967957041894417,44.56246365252101,52.5076329750007,17.836742794854565,7.465719009826152,-0.8599608423616347,-0.5055580575851728,-1.026877257075669,-0.8049778491643562,-0.6127207734945828,0.0,0.0,0.0,17,4,4,0,0,0,1,1,2,4,2,7,3,0,0,0,2,3.2682,71.3228,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6917864,C[C@@H]1CC[C@H]2[C@@H](C)[C@H](OC(=O)CCC(=O)O)O[C@@H]3O[C@@]4(C)CC[C@@H]1[C@@]23OO4,0,13.391199391812886,-5.414838632212147,13.391199391812886,2.5229905650030124,0.5830734536469286,384.4249999999996,356.20100000000014,384.17841785600075,152,0,0.3081932097444965,-0.48121892879469724,0.48121892879469724,0.3081932097444965,1.3333333333333333,2.259259259259259,3.037037037037037,2.396912408638456,1675.78264160388,43.897341225498536,40.765986323710905,12.765986323710905,23.730527903836066,20.820280554681776,6.912032264217914,5.170450640420717,5.170450640420717,3.5181299319048924,3.5181299319048924,2.432412107903634,2.432412107903634,-1.2200000000000002,36163235601.919075,4.910149786827936,6.686108592751132,3.0642687640338915,197.32502815123368,19.31939705250736,1.3707585561702202,11.867129179520585,12.053189521107495,1.4311996572326342,11.938610575903699,9.589074368143644,9.775141906512223,0.0,0.0,13.703784234591359,37.758582192009975,52.42980417631108,14.116608358828978,75.69409434375919,11.938610575903699,1.4311996572326342,0.0,23.575830741452314,82.7135444604914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.96773746763899,33.574805136056014,23.575830741452314,95.80370677645917,0.0,0.0,1.4311996572326342,0.0,100.52000000000002,118.22798577784742,15.072108592824522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.733242098163373,47.31994331000393,251.87643527797147,0.0,34.882153135882575,3.327722731888722,-5.226086873901181,-31.500099669934823,0.0,-39.62585853234042,-14.150932736233052,0.0,0.8947368421052632,27,1,8,1,4,5,0,0,0,8,1,8,7,1,4,5,5,2.6024000000000003,89.78980000000007,1,0,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9578005,Cc1c(OCC(F)(F)F)ccnc1C[S@@+]([O-])c1nc2ccccc2[nH]1,0,13.370895337301583,-5.773485838039605,13.370895337301583,0.0935501538004242,0.6986390031308142,369.3679999999999,355.25600000000014,369.07588234800045,132,0,0.4220666871121063,-0.6086940396422965,0.6086940396422965,0.4220666871121063,1.44,2.24,3.0,2.3390311895978178,1477.2584912070677,30.20422411221441,25.700279076919145,12.516775657846871,17.46295573354737,13.088964339108067,7.291580657869169,4.177406345990047,5.2841363414573514,2.488519593270838,3.381483734923725,1.5136124769263286,2.2766111159795717,-2.26,91574727.4237181,7.161274269590182,6.927854211900839,4.232158038627393,163.710572786246,9.289612827490412,5.749511833283905,13.675784206394647,0.0,0.0,11.332734999264183,9.960981791176462,0.0,18.155223663971668,0.0,12.08483741532659,24.979148240285564,27.024476844407705,30.43491499178318,41.692561279055944,22.209255908617813,0.0,14.94496031212367,0.0,23.88958400171002,6.558985242916289,47.64236823567669,0.0,5.749511833283905,4.736862953800049,13.171245143024459,5.749511833283905,0.0,32.23299394617379,16.880811358535446,6.851892117295679,29.07724071675831,41.541425230951944,1.4118420783282006,11.033401435232523,0.0,73.86,106.04970522220472,17.723995016714824,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,14.704819995694464,19.231703308541057,165.90381588990394,-3.347211133681867,7.030193120738755,-1.08809055335097,-7.985373043354419,-1.7155915056564404,-4.6370841225694015,-7.14310559388501,-8.295330835922348,0.0,0.25,25,1,5,0,0,0,1,2,3,4,1,9,6,0,0,0,3,3.515220000000001,86.73010000000004,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +11472813,N#Cc1ccc(N(CC(N)=O)CC(F)(F)F)cc1C(F)(F)F,0,13.386100048815823,-6.149920083774254,13.386100048815823,0.8560184791509196,0.8645211003730093,325.21199999999976,316.13999999999993,325.06498122800025,120,0,0.4172609990994439,-0.36813547672137586,0.4172609990994439,0.36813547672137586,1.4090909090909092,2.0454545454545454,2.5,4.294198459930068,941.9386034179647,24.90325920389318,19.017675915019097,10.0176759150191,13.650823891834087,9.350478744009424,4.956051553009507,3.4450978934936693,3.4450978934936693,1.8642104326748992,1.8642104326748992,1.166784446516942,1.166784446516942,-2.4399999999999995,1100953.8631721374,8.260539039145073,6.128021709931199,4.834718443233242,133.02894213814955,10.619626706576751,6.496859684315945,2.8236841566564013,5.907179729351506,0.0,12.35259703488695,4.794537184071822,0.0,31.60438184078741,0.0,0.0,18.127256122989884,5.687386274683562,33.288293873693746,43.5560215199687,11.594566004035068,5.261891554738487,0.0,5.719716975726273,12.35259703488695,17.893629099482368,29.254159106383874,0.0,6.069221312792274,10.619626706576751,32.02987656073248,0.0,0.0,25.077197615426872,10.970835701515297,11.33111286753076,20.72221287658553,18.127256122989884,2.8236841566564013,0.0,0.0,70.12,76.81466822051453,31.137027470120742,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,0.0,17.68088560458643,145.91618573277435,0.0,10.458204483182161,8.86219578649999,-7.304863302574117,-2.524190733392122,-4.868172280486268,-11.839783202632912,-9.532909816704459,0.0,0.3333333333333333,22,2,4,0,0,0,1,0,1,3,1,10,4,0,0,0,1,2.4310800000000006,63.621399999999994,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,6,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +5601,O=C(CC(=O)C(F)(F)F)c1cccs1,0,12.146583522297808,-5.535516581632653,12.146583522297808,0.18654620181405845,0.5811093720663849,222.18700000000004,217.147,221.99623506,76,0,0.4499624042132329,-0.29278179553271133,0.4499624042132329,0.29278179553271133,1.5714285714285714,2.2142857142857144,2.642857142857143,3.259801796457084,551.3146844076769,15.171208396324303,11.358638290419272,7.175134871346998,8.402606663993627,5.633443290441567,3.9499398713692937,2.0642556499703604,2.8807522308980866,1.0709101832885415,1.7666159523176697,0.5182057050498027,0.9681206621803324,-1.1699999999999997,8167.5858502941155,5.647984019950368,3.91328085176111,2.6612768975016836,88.37603775720018,0.0,0.0,5.783244946364939,5.783244946364939,0.0,6.176298517443475,9.589074368143644,0.0,13.171245143024459,11.336785877934737,6.042418707663295,11.398533117330894,2.7415171123404405,15.362347763541337,29.614112292019204,22.903275770664614,0.0,0.0,0.0,12.549223418772854,0.0,22.318099018695484,0.0,0.0,0.0,13.171245143024459,0.0,11.336785877934737,17.742788410173354,4.794537184071822,0.0,22.8984020599536,17.440951824994187,0.0,0.0,0.0,34.14,46.433812330198215,22.760319511168106,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,0.0,6.853792780851101,71.88331325585789,0.18654620181405845,21.552345993953136,-0.56610402494331,0.0,-4.74288312547241,-1.567169312169312,-9.412715655706727,0.0,0.0,0.25,14,0,2,0,0,0,0,1,1,3,0,6,3,0,0,0,1,2.4523,44.32850000000001,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +441313,CCC[C@H](N[C@@H](C)C(=O)N1[C@H](C(=O)O)C[C@@H]2CCCC[C@@H]21)C(=O)OCC,0,14.865575160619798,-5.574802650226762,14.865575160619798,1.6000852702191994,0.6358209968803862,368.4739999999995,336.2180000000001,368.2311221240009,148,0,0.32594015453854086,-0.4797118379349922,0.4797118379349922,0.32594015453854086,1.5384615384615385,2.3846153846153846,3.1153846153846154,3.4561429899012124,1704.013219839898,47.30096490832123,44.43566864331923,12.435668643319232,24.790617104963072,22.198240746105306,6.342778860141485,4.175832453270819,4.175832453270819,2.6989227347837894,2.6989227347837894,1.7396123628535385,1.7396123628535385,-1.63,69869309042.93462,4.043926506438806,9.34803997627888,4.552691881325909,200.10237081129114,14.745580875757739,13.447627015027491,0.0,5.907179729351506,1.4311996572326342,11.938610575903699,14.898887721432018,4.794537184071822,0.0,0.0,25.970666821283817,45.08944152527195,38.916097816434934,20.80142904828725,66.76388146055758,17.845790305255207,1.4311996572326342,10.209723084138854,5.893957685363079,89.23772053459126,6.558985242916289,0.0,0.0,0.0,5.309813353288376,0.0,0.0,0.0,58.485063343527756,19.120474506015515,5.893957685363079,106.28890734629917,0.0,1.4118420783282006,1.4311996572326342,0.0,95.94000000000001,129.74617685226474,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,43.96579842066746,263.98981566056784,0.0,40.20813957380014,1.6174050152984418,0.0,-14.922744595013036,-21.422808170214836,-34.20703112006133,-18.262776364377224,0.0,0.8421052631578947,26,2,7,1,1,2,0,0,0,6,2,7,11,1,1,2,2,1.940599999999999,96.55950000000006,1,0,0,0,0,0,0,0,1,1,3,2,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6918649,COc1ccc(S(=O)(=O)Nc2cc(Cl)cc(Cl)c2OC)cc1N1CCNCC1,0,14.023307390085662,-6.0471545624422545,14.023307390085662,0.6101796845664089,0.7096943896233353,446.3559999999998,425.1880000000002,445.0629825120006,152,0,0.2615989643749305,-0.4945847576270842,0.4945847576270842,0.2615989643749305,1.2857142857142858,2.0357142857142856,2.75,2.5911708827437963,1775.123419139181,38.57446760021749,34.13881118483764,15.467165657802282,21.618473259056454,17.150560695837065,8.952125779656244,4.60245527318251,6.899339375156198,2.931199320327898,4.529279609971062,1.8185468545713037,3.139337152432923,-1.8699999999999994,3894238680.7690864,6.836453412934831,8.649474315692315,4.40587866979648,203.74676946902372,19.683448991738953,7.161353911612106,7.161353911612106,0.0,10.023291153407584,0.0,4.715119613734132,8.417796984328938,0.0,0.0,23.20187978046503,30.212093538316473,36.493106275685996,55.93017259894475,46.75961961581964,44.59994348323974,0.0,5.309813353288376,0.0,4.895483475517775,49.678372999613565,40.25736016579913,0.0,11.49902366656781,24.398568605473084,11.374772549367124,11.49902366656781,23.20187978046503,48.48114063935789,10.023291153407584,0.0,26.044412567234176,35.107577013834245,12.868950784139054,0.0,0.0,79.9,133.03811736356135,8.417796984328938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,52.06997650435565,204.98198665285489,11.839076820478379,-2.510322352744792,-2.7603090808181223,-3.235598734617644,-2.979149111537279,-7.516668603330669,0.0,-15.961314326448674,-13.218812374947245,0.3333333333333333,28,2,7,0,1,1,2,0,2,6,2,10,8,0,1,1,3,3.221000000000001,111.89920000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +11569786,COC[C@H]1C[C@@](Cn2cccn2)(C(=O)O)N(C(=O)c2ccc(C(C)(C)C)c(OC)c2)[C@H]1c1nccs1,0,15.775353521038042,-5.129809145880575,15.775353521038042,0.3843953917655225,0.48579662525943934,512.6319999999997,480.3760000000003,512.209341124001,192,0,0.3311352939160158,-0.49642998471987165,0.49642998471987165,0.3311352939160158,1.4444444444444444,2.3333333333333335,3.0,2.5589599686751416,2467.503372526576,53.480244994153296,49.23834412478301,18.05484070571074,30.03930677614241,24.984219979551078,9.892468270014941,6.602444699943844,7.397391321474695,4.41112017428068,5.08245476379869,3.0241517657526096,3.593424282654654,-3.2399999999999993,16920442513494.967,7.19710909676349,10.021351079229584,4.623621267916538,259.2661230329651,19.482443829557788,10.75713553013667,5.538925252383345,0.0,7.33837938658414,5.969305287951849,9.476340119217006,9.77851570501903,5.098681808301038,11.336785877934737,26.598095059550335,35.47862298541304,58.81926435209722,52.15610242169869,66.66512370812784,23.213270895238093,1.4311996572326342,19.66437299524391,5.893957685363079,50.39726912766213,20.634890160681465,64.17900155301182,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,11.336785877934737,62.82348161671929,21.443250291584597,5.893957685363079,96.36907282716139,48.04447487276506,0.0,1.4311996572326342,0.0,106.78,168.31282804330147,13.019088521093142,4.794537184071822,11.336785877934737,0.0,0.0,0.0,0.0,0.0,19.928331474155506,40.437026515288196,278.4733584320916,-0.3843953917655225,32.782561860271095,4.401422304439493,-14.059886861783095,-13.012894254247975,-12.670413367807292,-9.49142249592427,-23.078103683386942,-8.293559875220424,0.46153846153846156,36,1,9,0,1,1,1,2,3,9,1,10,10,0,1,1,4,4.0191000000000034,135.29529999999997,1,0,0,0,0,3,0,0,1,1,2,1,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +44137946,CN(C[C@@H]1COCCO1)S(=O)(=O)Nc1ccc2ccc3ncc(-c4cnn(C)c4)cc3c(=O)c2c1,0,14.427606762225265,-6.692948010040392,14.427606762225265,0.06239830941804558,0.4357716303065281,495.56099999999986,470.36100000000033,495.15763990000073,182,0,0.30096462100096366,-0.37631157519031183,0.37631157519031183,0.30096462100096366,1.3142857142857143,2.2,3.0285714285714285,1.8799742765667138,2686.9975608402096,46.37543250853871,41.68555772028297,17.502054301210695,26.75810202495517,21.405170408662894,10.354920223169824,6.295090756757879,7.738480187936488,4.085128057574763,5.051151906105623,2.610594324159572,3.2125237061427723,-3.3799999999999994,910007194760.1669,8.067526009961295,9.34376001372333,4.889627913806469,237.01473998646415,9.473725907600098,0.0,6.8406324702287415,0.0,0.0,10.209329170397666,19.175438253898346,0.0,17.82169478392621,0.0,12.08483741532659,29.555899045117975,65.6597237681953,65.066092857537,52.201570318342554,37.57208880609188,0.0,19.069679255689664,6.975826900282246,6.080018026949988,37.86476192708119,64.99652545439642,0.0,11.126902983393991,10.143910005634673,5.687386274683562,0.0,0.0,66.71713658031564,26.65888197828001,0.0,32.89820534808528,59.56773506249587,1.4118420783282006,32.80227634440464,0.0,115.65,164.12680290542013,13.212334168400758,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,19.556386236848343,34.310047426413476,238.62049718635262,0.0,18.16660073756713,-0.2190969536974947,-6.267668083250798,0.0,-8.303922029664603,-7.716480159276626,-24.58698268798984,-6.692948010040392,0.2916666666666667,35,1,10,0,1,1,2,2,4,8,1,11,8,0,1,1,5,2.1525999999999987,133.45249999999996,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +5282226,CC(C)OC(=O)CCC/C=C\C[C@H]1[C@@H](O)C[C@@H](O)[C@@H]1/C=C/[C@@H](O)COc1cccc(C(F)(F)F)c1,0,13.838041322517633,-5.740991529931594,13.838041322517633,1.7305368409420614,0.2233331590824295,500.5539999999996,465.2740000000002,500.23857350000094,196,0,0.416044691443936,-0.4905399284047445,0.4905399284047445,0.416044691443936,1.457142857142857,2.2857142857142856,3.0,3.2232133236048655,2281.522839126299,56.38638686701863,51.58338316181086,16.58338316181086,30.55045377439592,25.67468474276088,8.449939871369292,5.487023491615455,5.487023491615455,3.0978653416339466,3.0978653416339466,1.8119269282535972,1.8119269282535972,-2.359999999999999,19206917277023.484,6.9353526659820375,13.655163774055648,10.031389930802561,253.04710649421077,24.800150480921733,18.38851510315018,0.0,4.293598971697903,0.0,12.145603805395325,4.794537184071822,0.0,13.171245143024459,0.0,30.25070569180556,56.84377274693246,43.31346149908582,42.99412535893006,86.63020660546503,5.969305287951849,4.293598971697903,0.0,11.787915370726157,76.06477936648167,6.558985242916289,53.941413306492436,0.0,5.749511833283905,4.736862953800049,13.171245143024459,5.749511833283905,0.0,56.46838618368763,15.707698655315344,11.787915370726157,94.99613403038222,48.37796181479544,0.0,0.0,0.0,96.22000000000001,160.07191040785236,20.70729943943672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.800150480921733,45.41635565680453,334.4930801648244,0.0,13.004530767365303,11.787822940577867,-2.378522952053175,-15.4455957618407,-18.418914847022098,-49.337191946881966,-13.121875031636199,0.0,0.5769230769230769,35,3,6,1,0,1,1,0,1,6,3,9,17,1,0,1,2,4.427400000000004,124.53240000000004,0,3,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3639,NS(=O)(=O)c1cc2c(cc1Cl)NCNS2(=O)=O,0,12.33842828798186,-5.147947530864195,12.33842828798186,0.1962344104308391,0.6544582690300506,297.7449999999999,289.68100000000004,296.96447541600014,94,0,0.24366456161935907,-0.37040168741078,0.37040168741078,0.24366456161935907,1.6470588235294117,2.3529411764705883,3.0,3.1039573022867604,968.6758175247236,19.696152422706632,15.66909500229228,10.058017110166187,11.106836025229594,7.5887203405550245,7.057957089165699,2.824060496167289,6.101361095251926,1.7083529391070367,4.059300246764287,1.0475793545198993,2.861623336215683,-0.8700000000000001,126641.28201305647,5.846921273207415,3.8175416799939437,2.2392150460713234,114.52693768660085,5.309813353288376,14.026493186020152,1.4118420783282006,20.046582306815168,0.0,0.0,0.0,21.960617204829905,4.715119613734132,0.0,11.600939890232516,12.08483741532659,0.0,22.81384828040828,27.96599650665155,37.33490847173125,0.0,4.715119613734132,5.12502323617203,9.79096695103555,11.930607820590888,17.107470729067916,0.0,0.0,15.149956203194538,5.687386274683562,0.0,11.600939890232516,23.45638843596039,20.046582306815168,0.0,5.483034224680881,21.87580436636214,10.670001627054129,0.0,0.0,118.35999999999999,69.09334357881087,16.835593968657875,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,0.0,22.731342428226196,107.3376743197279,5.684220679012344,-2.6683306563366083,-2.100004133597884,-1.037998866213152,0.0,-2.5054243827160487,0.0,-3.269171430146133,-10.246521085285963,0.14285714285714285,17,4,7,0,1,1,1,0,1,5,3,10,2,0,0,0,2,-0.35129999999999967,61.63640000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 +51580080,CN(C)[C@@H]1C(=O)C(C(N)=O)=C(O)[C@@]2(O)C(=O)C3=C(O)c4c(O)cccc4[C@@](C)(O)[C@H]3C[C@@H]12,0,15.312742189468377,-5.178783186885867,15.312742189468377,1.0586125572368328,0.3315189639302198,444.4399999999998,420.2480000000003,444.15326572800063,170,0,0.2931486233910348,-0.5077369129004043,0.5077369129004043,0.2931486233910348,1.375,2.25,2.875,2.6205770464407827,1966.18192607924,43.69578794377713,39.160413514710825,15.160413514710822,25.228922122119712,19.7130889961746,8.27742035285537,6.747162720638883,6.747162720638883,5.060961191353068,5.060961191353068,3.640294084188305,3.640294084188305,-3.21,153908323590.23636,7.143417536590318,6.644026762190543,2.4784840440451297,216.69799341235432,31.263757931262333,22.840946106665523,14.20797991400503,8.645644260830208,10.200778701049408,0.0,19.28352128306594,0.0,0.0,0.0,12.08483741532659,38.782341018549836,35.18088113100829,22.66542899571121,66.05423211930172,23.23283449373756,7.155998286163171,4.899909730850478,17.507632346452432,30.444811108942083,13.951653800564491,46.15953303817859,0.0,5.749511833283905,5.719716975726273,0.0,5.749511833283905,0.0,77.78181636006367,19.984662363199156,11.787915370726157,47.65461545691282,35.0326300547846,2.8236841566564013,8.621564186121445,0.0,181.61999999999998,141.94588635200958,16.442867148994743,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,25.54404095553606,26.428785116862212,200.77666472807917,0.0,41.905639524179136,22.09413550661566,-17.904154548756683,-23.383448368168562,-9.48919604124783,-5.107540627362056,-13.475433506672243,0.0,0.4090909090909091,32,7,10,3,0,3,1,0,1,9,6,10,10,1,0,1,4,-0.3709999999999982,110.11140000000003,0,4,2,0,0,0,0,1,0,0,3,3,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +10278166,CN(C)CCOc1cc(NS(=O)(=O)c2c(Cl)cc(C(F)(F)F)cc2Cl)ccc1Cl,0,13.379652431215515,-5.794278674317906,13.379652431215515,0.8199231544469647,0.5628455676408248,491.74599999999987,475.61800000000017,489.98993107200045,160,0,0.4160155756450641,-0.4906147972921377,0.4906147972921377,0.4160155756450641,1.206896551724138,1.8275862068965518,2.3793103448275863,2.879200127497398,1594.6307443033581,35.79001054984131,29.29520719091073,16.37949060989382,19.773338244665986,14.603814160391737,9.230557312720103,4.664252040247892,7.33910061523081,2.653561818560514,5.057837744556655,1.5946173882928043,3.716942005518336,-1.3899999999999997,483309364.1562445,9.824075902836915,9.176812496224036,6.292097263415963,203.4412143976244,9.636772684650527,17.20398055171797,1.4118420783282006,0.0,10.023291153407584,6.176298517443475,4.715119613734132,8.417796984328938,13.171245143024459,0.0,34.802819670697545,38.12132863121767,23.505346841340998,35.91404760079608,48.29912550203498,50.5134970987887,0.0,4.899909730850478,0.0,11.071781992961249,31.722618341530858,50.843444971237446,0.0,5.749511833283905,9.45198256753418,18.858631417708022,5.749511833283905,34.802819670697545,40.32520544297614,16.199589670851058,0.0,26.124829834250292,35.107577013834245,16.479742019552177,0.0,0.0,58.64,119.99794429795512,21.589042127353395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.51290304537915,194.7195854352467,17.2678917736642,-2.5252033720873053,-4.30160414384616,-3.6157608775335657,-1.516666968159573,-7.829256097282621,-5.422374744882854,-15.982332330800887,-5.794278674317906,0.29411764705882354,29,1,5,0,0,0,2,0,2,4,1,12,9,0,0,0,2,5.406800000000003,107.77350000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +3957,CCOC(=O)N1CCC(=C2c3ccc(Cl)cc3CCc3cccnc32)CC1,0,13.188033224691777,-4.261743136040425,13.188033224691777,0.8827764917695471,0.7048857984659845,382.89099999999974,359.70700000000016,382.14480565600064,140,0,0.4092616965062634,-0.44970935889925173,0.44970935889925173,0.4092616965062634,1.3333333333333333,2.1481481481481484,2.962962962962963,2.354789005120222,1837.2153588296696,39.07446760021749,36.08888824493687,13.844817190955323,22.095817889737415,18.669388660950304,7.547353133959531,4.9152444907798385,5.293208963789065,3.385530345645702,3.5745125821503154,2.3005736281594276,2.442310305537888,-2.329999999999999,7878241208.764621,5.383489331764306,7.729953781795351,3.5865231460805265,196.67373195612277,9.636772684650527,0.0,0.0,0.0,0.0,6.093240070938415,4.9839785209472085,4.794537184071822,0.0,0.0,29.258881835628372,67.16120232069406,50.32373076581059,23.218981687126508,41.058846929786945,23.267284491240197,0.0,9.883888251797686,0.0,32.3435917226132,19.55270461154818,69.36500906288127,0.0,0.0,0.0,4.794537184071822,0.0,11.600939890232516,35.52983293428428,17.48271275645881,0.0,73.50947118180896,41.9580932792005,5.022633313741326,5.573104530069267,0.0,42.43,137.82755972890084,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.720841474747257,43.1283866821476,196.8846687718496,6.051779594187636,15.995470742998252,-0.9556285468905836,-8.34671224653773,0.0,-6.010940539061157,-19.413619273788232,-16.260574058313352,0.0,0.36363636363636365,27,0,4,1,1,2,1,1,2,3,0,5,2,0,1,1,4,4.887800000000005,106.94800000000004,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +216326,Nc1cccc2c1CN(C1CCC(=O)NC1=O)C2=O,0,13.162954459561599,-3.9222926114890413,13.162954459561599,0.3325409291803143,0.5494349129687401,259.265,246.16099999999994,259.0956912760001,98,0,0.25476612464901316,-0.3984303415726596,0.3984303415726596,0.25476612464901316,1.5789473684210527,2.4210526315789473,3.210526315789474,2.430633695891645,1090.8107921665408,24.92820323027551,22.066385657891463,9.066385657891463,14.306194762347364,11.295654008695545,4.954013222195669,3.546688283100355,3.546688283100355,2.4128758662756455,2.4128758662756455,1.5882393947505486,1.5882393947505486,-2.37,4049962.707376756,4.0608020665358,4.0813602859858555,1.7589643807787616,127.54727486306679,10.619626706576751,6.017892468349645,4.235526234984602,11.814359458703011,5.907179729351506,0.0,19.69342490550384,0.0,0.0,0.0,6.042418707663295,18.45776231665597,35.16710806840377,8.224551337021321,32.32672334890226,23.40892546273808,0.0,10.209723084138854,0.0,25.26060195532435,5.719716975726273,29.254159106383874,0.0,0.0,11.029530329014648,5.687386274683562,0.0,0.0,28.63934138725464,16.08593405245959,0.0,42.374875531826795,18.127256122989884,4.235526234984602,0.0,0.0,92.5,88.13340960858517,14.383611552215466,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,0.0,17.9431117966868,102.65195325118238,0.0,37.48608557314365,-0.6981075207860923,-3.431133983686067,-5.850690770135214,-6.989469455992274,-7.672077191987907,-3.4965599017384745,0.0,0.3076923076923077,19,3,6,0,2,2,1,0,1,4,2,6,2,0,1,1,3,0.029799999999999882,66.8996,0,0,0,1,0,0,0,0,0,0,3,3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4030,COC(=O)Nc1nc2ccc(C(=O)c3ccccc3)cc2[nH]1,0,13.19199318782201,-3.227881692998001,13.19199318782201,0.16830645838582337,0.72749043527813,295.2979999999998,282.194,295.0956912760004,110,0,0.4131899633730632,-0.4525718571728653,0.4525718571728653,0.4131899633730632,1.3181818181818181,2.1363636363636362,2.909090909090909,2.2736729336751607,1387.1496178356128,26.72916813859674,23.566385657891466,10.566385657891464,16.006501492260373,12.052564558427518,5.6581373674276,3.779717529141213,3.779717529141213,2.429935046774848,2.429935046774848,1.5330911514068468,1.5330911514068468,-3.149999999999999,23417999.312558938,5.241679339513756,5.687866047153692,2.6656417808941635,144.06097798230752,9.713866224029301,0.0,8.60692910302134,5.948339280986494,0.0,6.093240070938415,10.104350537360197,9.77851570501903,0.0,0.0,30.212093538316473,18.127256122989884,11.126902983393991,33.14969801198753,32.22796559647251,28.858225733522367,0.0,9.960981791176462,0.0,0.0,12.347765812170964,59.46625264470035,0.0,0.0,5.309813353288376,10.742876465058316,0.0,0.0,28.875419267362403,4.736862953800049,0.0,30.99978428533823,48.33934966130636,2.8236841566564013,11.033401435232523,0.0,84.07999999999998,95.36243083710534,9.589074368143644,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,9.720841474747257,17.90202827452882,104.26936422006344,0.0,28.91810277873687,-0.2372130867702653,-2.9618824637930876,-2.289120988973081,-6.951363401450467,-1.7700053648154166,0.0,-3.227881692998001,0.0625,22,2,6,0,0,0,2,1,3,4,2,6,4,0,0,0,3,2.972200000000001,81.99590000000002,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,1,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +446596,C/C(=C\C(=O)OCCCCCCCCC(=O)O)C[C@@H]1OC[C@H](C[C@@H]2O[C@H]2[C@@H](C)[C@H](C)O)[C@@H](O)[C@H]1O,0,13.623393179651451,-5.3369688021903,13.623393179651451,2.5924590951856183,0.10865568580106565,500.6289999999995,456.2770000000003,500.2985329880011,202,0,0.33018467915601774,-0.481230389785217,0.481230389785217,0.33018467915601774,1.2571428571428571,2.085714285714286,2.8,3.0664661248758227,2396.62500612294,64.25914854506433,60.674234614174765,16.674234614174768,33.98809370844008,30.08248290463863,8.449489742783179,5.4349701916019475,5.4349701916019475,3.0934310892394863,3.0934310892394863,1.693021874672333,1.693021874672333,-1.5200000000000002,607878938796936.4,5.734552085963581,14.89886651597785,10.550259665501022,270.1675364857871,34.645821625828994,6.080018026949988,0.0,4.293598971697903,1.4311996572326342,11.938610575903699,4.794537184071822,4.794537184071822,0.0,0.0,37.91669625268246,39.195483839908874,63.96491014702755,58.596404738454964,99.06523824078138,11.938610575903699,5.724798628930537,0.0,11.787915370726157,114.39210862555136,13.117970485832577,11.625176276104835,0.0,0.0,0.0,0.0,0.0,0.0,86.26552095956298,23.79966322954379,11.787915370726157,132.7423427106601,11.625176276104835,0.0,1.4311996572326342,0.0,146.05,162.8617813341187,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.645821625828994,60.55514087573938,373.04466188733994,0.0,25.515964697647682,14.947322942323346,-2.851471288062924,-15.904084483787319,-2.8362735163273145,-75.22901033512004,-24.020443237346697,0.0,0.8461538461538461,35,4,9,0,2,2,0,0,0,9,4,9,22,0,2,2,2,2.5925000000000016,128.6542000000001,1,3,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +53025,CO[C@@]1(NC(=O)C2SC(=C(C(N)=O)C(=O)O)S2)C(=O)N2C(C(=O)O)=C(CSc3nnnn3C)CS[C@@H]21,0,14.04197226638334,-3.844360581457603,14.04197226638334,0.05708611254643414,0.06641669832653377,575.6320000000009,558.4960000000002,575.0021445040006,192,0,0.3521617900201329,-0.4774504308269089,0.4774504308269089,0.3521617900201329,1.5277777777777777,2.361111111111111,3.0555555555555554,1.863909286946346,1834.9270642287772,40.653971580520235,33.529474654066064,19.795460977776965,23.96968675878708,16.74070901612025,11.848557972403547,6.147976132266154,10.274397620655897,4.148984042645545,8.350193690277623,2.6307520708523557,6.075004640391191,-2.74,43934783031.60148,12.202495236244616,9.959621975013423,4.334841126730973,242.74087278277497,25.984009665029124,21.178089948300162,4.235526234984602,11.063616211172214,20.401744367138537,11.938610575903699,19.283521283065944,14.270877303288827,0.0,16.860566757692155,35.285654848173344,15.999874721379003,35.0190030226567,11.090961278561927,59.61179416540086,76.70768956152267,2.8623993144652684,30.416978018894813,12.695543876008518,20.789368180966026,18.447866229182907,21.080416870905196,0.0,0.0,11.029530329014648,0.0,0.0,47.04753979756446,99.0657287401073,35.6853757744414,0.0,16.44910267404264,26.236853352725902,4.235526234984602,2.8623993144652684,0.0,219.92999999999995,119.74504322370035,23.97268592035911,0.0,44.86736751416901,0.0,0.0,0.0,0.0,0.0,25.7430683818252,28.283891177292556,135.9609491334551,-0.8361403353542749,64.84538149704206,12.242298369839094,-15.532106896943858,-9.469035781428015,0.0,0.0,-3.1169854051525085,-3.844360581457603,0.4117647058823529,36,5,15,0,3,3,0,1,1,16,4,19,11,0,2,2,4,-1.3974999999999984,127.98470000000002,2,0,0,0,0,4,0,0,2,2,5,3,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,0,0 +37768,NCC[C@H](O)C(=O)N[C@@H]1C[C@H](N)[C@@H](O[C@H]2O[C@H](CN)[C@@H](O)[C@H](O)[C@H]2O)[C@H](O)[C@H]1O[C@H]1O[C@H](CO)[C@@H](O)[C@H](N)[C@H]1O,0,14.686720857711482,-6.36608501039305,14.686720857711482,1.335754998810259,0.11306379404457513,585.608000000002,542.2640000000004,585.285736436001,234,0,0.24869966342169575,-0.3935672815103641,0.3935672815103641,0.24869966342169575,1.05,1.825,2.5,3.0371576833882115,2431.472815709737,66.44938298937632,61.54329575353,18.543295753530007,36.65259533178321,29.85265993865323,9.56175125544271,6.641974072044993,6.641974072044993,4.255578155907348,4.255578155907348,2.50610670991941,2.50610670991941,-1.1700000000000006,8936251298409260.0,7.907535327121831,14.335134540622352,7.061065381476209,290.89414323924825,88.00659860025138,78.17493492307551,13.943998815401995,17.35677698721258,0.0,0.0,4.794537184071822,0.0,0.0,0.0,0.0,19.242709486974704,24.851579158197566,41.89766563450934,112.9587556935092,5.907179729351506,11.449597257861074,5.309813353288376,22.878867902905093,110.21188224123134,19.55270461154818,0.0,0.0,0.0,28.188681256193462,0.0,0.0,0.0,175.24597956619112,23.741988999272017,0.0,48.38557226308451,0.0,12.706578704953806,0.0,0.0,331.93999999999994,163.86044783832455,17.1313641896038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.8704655288577,66.40652323290882,382.1248267271545,0.0,14.686720857711482,29.12280797174917,-6.109411205970051,-3.583370016383091,-17.193226317447056,-82.84088939849043,-14.290791951657784,0.0,0.9545454545454546,40,17,18,1,2,3,0,0,0,17,13,18,22,1,2,3,3,-8.424200000000015,131.42570000000003,0,8,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3373,CCOC(=O)c1ncn2c1CN(C)C(=O)c1cc(F)ccc1-2,0,14.468302652875646,-3.6818500803099026,14.468302652875646,0.22056547619047606,0.793247744649229,303.2929999999998,289.18100000000004,303.1019195280004,114,0,0.3584009634652684,-0.46121299651291314,0.46121299651291314,0.3584009634652684,1.6818181818181819,2.5454545454545454,3.3181818181818183,2.4958936117781985,1299.6089837276957,27.919767061838236,24.444350130900688,10.44435013090069,16.069108883430015,12.544333199432172,5.544333199432172,3.900964008960147,3.900964008960147,2.667255576226812,2.667255576226812,1.7783184365208695,1.7783184365208695,-2.6999999999999997,20631581.084416825,5.186926305483555,5.249745516586953,2.1441705657067955,145.3426442520409,9.636772684650527,13.491351111182341,5.693927994848461,0.0,5.907179729351506,5.969305287951849,9.361636831863176,14.16893075269385,0.0,0.0,0.0,24.979148240285564,15.200378237303564,39.595920581652805,37.9069721560016,11.876485017303356,0.0,14.450987899589041,0.0,13.348751801611623,13.534812143198534,47.199156159395926,0.0,5.687386274683562,0.0,4.39041504767482,0.0,0.0,39.862285060090926,11.233722638115994,5.817220841045895,52.58289375321637,24.430627836956113,0.0,5.687386274683562,0.0,64.43,96.5465011270435,13.979489415818463,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,9.720841474747257,19.190619786383078,126.96814144383524,0.0,28.880882850072734,0.0,-4.8712207892416215,-5.554749114847196,-3.873935942496323,-1.1846112055933482,-14.531173908396134,0.0,0.26666666666666666,22,0,6,0,1,1,1,1,2,5,0,7,4,0,0,0,3,1.7736999999999998,75.27600000000002,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,3,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +44093,C[C@H](CS)C(=O)N1CCC[C@H]1C(=O)O,0,13.026094104308388,-4.078498204837493,13.026094104308388,0.6738052983539091,0.6816110954453929,217.2900000000001,202.16999999999996,217.07726434,80,0,0.3259145860914331,-0.47971213674728536,0.47971213674728536,0.3259145860914331,2.2142857142857144,3.0714285714285716,3.7142857142857144,4.012625348849537,709.6359822297978,23.646264369941974,21.580206757355413,7.396703338283136,12.568749653522069,10.553813555105389,3.6455652646415264,2.115492508839651,2.319616654071583,1.28458079693289,1.4887049421648215,0.7049513012575825,0.7922615143830131,-0.71,424088.3502134544,2.5082039751145815,4.682872740708367,2.2038686868817217,109.52725870381047,10.00871792195769,7.141691641381833,0.0,5.907179729351506,1.4311996572326342,5.969305287951849,4.794537184071822,4.794537184071822,12.53269603815698,0.0,6.851892117295679,12.745849802658759,34.54487692887182,1.3707585561702202,32.517743789463715,24.409181055460337,2.5549988302648226,4.899909730850478,5.893957685363079,25.61563438830408,12.201816569466104,0.0,0.0,0.0,0.0,0.0,0.0,12.53269603815698,41.228711150108985,9.589074368143644,5.893957685363079,37.4176031501673,0.0,0.0,1.4311996572326342,0.0,57.61,73.02049942944407,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,20.374860060477683,113.68107869845471,-0.6738052983539091,24.204686870118415,3.4685740268329557,-3.6118935421390805,-8.892405990173849,-4.04250283446712,-7.809682775888134,-7.907382487717312,0.0,0.7777777777777778,14,1,4,0,1,1,0,0,0,4,2,5,5,0,1,1,1,0.6279000000000001,55.38780000000003,1,0,0,0,0,0,0,0,1,1,2,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3052775,C#CCN[C@@H]1CCc2ccccc21,0,8.47199074074074,-3.3403037603930477,8.47199074074074,0.29985874905517784,0.6700261204475028,171.2430000000001,158.13899999999998,171.104799416,66,0,0.12387599480232858,-0.2992936988321858,0.2992936988321858,0.12387599480232858,2.0,2.923076923076923,3.8461538461538463,3.011206446849034,835.9969486617867,20.45566544670048,19.44721359549996,6.447213595499958,11.602112056107204,9.894427190999917,3.447213595499958,2.197213595499958,2.197213595499958,1.4538118960624633,1.4538118960624633,0.9357584971874737,0.9357584971874737,-1.2599999999999998,221144.9508515914,2.0438996745290448,3.635894622799467,1.5865224645702365,97.48698536223455,0.0,2.782600634498421,0.0,0.0,0.0,0.0,5.309813353288376,0.0,0.0,6.399401534821945,30.090109149508823,23.87275278605275,11.500926693030525,16.092169577507484,17.86094475237084,0.0,0.0,5.309813353288376,0.0,18.763742271008404,6.496859684315945,35.29657781404717,0.0,12.319835853677588,5.309813353288376,0.0,0.0,0.0,6.496859684315945,6.372924901329379,12.319835853677588,39.966823027115666,24.16967483065318,1.4118420783282006,0.0,0.0,12.03,60.55717976937152,0.0,0.0,5.309813353288376,0.0,0.0,6.399401534821945,5.920434318855644,0.0,0.0,17.86094475237084,102.13258986310572,0.0,0.0,-0.29985874905517784,-1.7087608654572932,1.6670442019400353,-6.726391487150414,-5.000135883828843,-3.064487079554044,0.0,0.3333333333333333,13,1,1,1,0,1,1,0,1,1,1,1,2,0,0,0,2,1.8967,54.33970000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +149096,C[C@H]1COc2c(N3CCN(C)CC3)c(F)cc3c(=O)c(C(=O)O)cn1c23,0,16.373716458805745,-4.214838054929147,16.373716458805745,0.2401653439153444,0.8747398264671755,361.3729999999997,341.2130000000001,361.14378434000054,138,0,0.34072313809849797,-0.48691699060409394,0.48691699060409394,0.34072313809849797,1.5384615384615385,2.3461538461538463,3.0384615384615383,2.3745414401139597,1707.963776412873,35.919767061838236,32.352598421364554,12.352598421364554,20.329292239557887,16.630312432877947,6.722064142414083,4.9498801282654625,4.9498801282654625,3.4592632623641313,3.4592632623641313,2.389778797104856,2.389778797104856,-2.61,1321567023.3380227,5.4486594409999745,5.979774542196717,2.4384574228435856,176.91761002789184,24.212590254399572,17.809823009296846,11.5667326743298,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,9.184952231746642,0.0,0.0,0.0,19.87013772524122,45.86791950978077,29.257644405962676,45.07503594388811,22.559616494716465,1.4311996572326342,9.467009378641833,0.0,12.869784585645323,44.42216061131279,33.819313827193305,0.0,5.749511833283905,15.065563076551069,10.077801322358383,5.749511833283905,0.0,60.067373738163205,0.0,5.817220841045895,49.272185828648354,17.009851102549877,0.0,12.33412458931369,0.0,75.00999999999999,119.52575989893046,9.589074368143644,4.39041504767482,4.567099647791355,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,32.212475178266864,183.77944047816098,0.0,24.28074349930586,2.234865511666454,-6.707612816151102,-5.932875691325506,-5.715749716878643,-1.6711485281159704,-28.600996069995382,0.0,0.4444444444444444,26,1,7,0,2,2,1,1,2,7,1,8,4,0,1,1,4,1.5439999999999998,95.04130000000004,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +60198,C=C1C[C@@H]2[C@H](CC[C@]3(C)C(=O)CC[C@@H]23)[C@@]2(C)C=CC(=O)C=C12,0,13.946374152284367,-4.992717309145884,13.946374152284367,1.8045733339632146,0.6760895538895387,296.4099999999995,272.21799999999996,296.1776300080007,116,0,0.17816734974132967,-0.29908720957095675,0.29908720957095675,0.17816734974132967,1.4545454545454546,2.3636363636363638,3.1363636363636362,2.626032908496577,1588.2519824374308,36.61880215351701,34.816496580927726,10.816496580927726,19.984827557301447,18.158248290463863,6.158248290463863,5.033248290463863,5.033248290463863,3.7436862178478973,3.7436862178478973,2.6161086270779395,2.6161086270779395,-1.44,992593122.8863935,3.477579918527063,4.305387329379492,1.6133092239891278,165.62335369481036,0.0,5.783244946364939,5.783244946364939,0.0,0.0,0.0,9.589074368143644,0.0,0.0,0.0,31.85999947269806,60.85082068354715,43.24731840735714,6.853792780851101,42.48727971622894,11.566489892729878,0.0,0.0,28.511853994882795,45.56840874123825,0.0,35.8334632602471,0.0,0.0,0.0,0.0,0.0,0.0,11.566489892729878,9.589074368143644,28.511853994882795,78.46661408932353,35.8334632602471,0.0,0.0,0.0,34.14,121.48021588909803,13.701350036654302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.785929679574615,207.866554306876,0.0,26.873896819562173,0.0,-12.977897494646006,-19.45202967529605,-5.644858591584781,-23.35658685542119,-10.975745176156884,0.0,0.6,22,0,2,4,0,4,0,0,0,2,0,2,2,3,0,3,4,4.029500000000003,86.14600000000004,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5546,Nc1nc(N)c2nc(-c3ccccc3)c(N)nc2n1,0,8.093803907365416,-0.6723674042874983,8.093803907365416,0.0035811895669395355,0.5851791059173755,253.2690000000001,242.18099999999998,253.10759335199998,94,0,0.22366790092636027,-0.38180929902872407,0.38180929902872407,0.22366790092636027,0.8947368421052632,1.736842105263158,2.473684210526316,2.4889725146965733,1124.5440191004668,22.48868116259058,20.130495168499706,9.130495168499706,13.950172618130125,10.14295634824952,4.959674775249769,3.4152475842498538,3.4152475842498538,2.2194271909999164,2.2194271909999164,1.4494678440936948,1.4494678440936948,-2.96,2921683.632203444,4.302360646282509,4.054792899408284,1.8640650467185085,123.87144116739637,17.15915092717882,5.693927994848461,31.270655964023238,5.948339280986494,0.0,0.0,0.0,9.967957041894417,9.967957041894417,0.0,30.212093538316473,0.0,5.563451491696996,6.853792780851101,15.324845250820303,28.747942775040542,0.0,19.935914083788834,0.0,0.0,17.15915092717882,30.212093538316473,0.0,11.257379486545457,17.15915092717882,17.58406483665655,0.0,0.0,19.935914083788834,0.0,0.0,6.853792780851101,30.212093538316473,8.471052469969203,22.421257424929443,0.0,129.62,59.05353786151848,0.0,0.0,28.323028865562808,0.0,0.0,0.0,0.0,0.0,19.935914083788834,15.324845250820303,84.1635281155366,0.0,15.435750293944738,0.0,-1.6261247563763785,-1.6595820969955162,-3.3135715561094337,0.0,0.0,0.0,0.0,19,6,7,0,0,0,1,2,3,7,3,7,4,0,0,0,3,0.8334000000000001,73.8012,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2804,CC1CCCC(C)N1NC(=O)c1ccc(Cl)c(S(N)(=O)=O)c1,0,13.56650793650793,-5.454154425620875,13.56650793650793,1.0091906581273462,0.8745522578533761,345.8519999999997,325.69200000000006,345.09139018000053,122,0,0.2651339749848366,-0.28427094266767444,0.28427094266767444,0.2651339749848366,1.6363636363636365,2.3181818181818183,2.909090909090909,3.1725945407476175,1371.301677712968,33.77350269189626,30.352598421364554,11.925023948310734,18.273502691896258,15.075599225886679,7.05198624119667,3.6573422803481344,5.39368772347754,2.1831832851053,3.4008038859344176,1.2666320343230622,2.1621594482914683,-1.15,126364226.71573995,4.690683787035967,6.536006454318208,3.782083770853373,163.4639755716114,0.0,7.719167632174177,1.4118420783282006,10.023291153407584,5.907179729351506,0.0,10.213353330464251,18.5517327444555,0.0,0.0,17.973864791561894,44.57689016024,36.78985621477937,9.134908982251988,40.7507558582791,27.531410772991606,0.0,10.427728670346962,5.12502323617203,49.753827350796556,0.0,28.713340928428206,0.0,0.0,10.54383938256446,0.0,0.0,11.600939890232516,31.369674174334264,10.023291153407584,0.0,66.4834430692421,23.02273959850766,9.258159548725928,0.0,0.0,92.5,109.95039106850285,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.13936158011086,184.01269792185064,5.721976962587231,11.935461755689923,-3.308239347583234,-2.798031462585035,-2.385241559586797,-13.610464808865933,-13.080448356607725,-8.589112234833742,-5.454154425620875,0.5,22,3,6,0,1,1,1,0,1,4,2,8,6,0,1,1,2,1.8951000000000002,84.90540000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +37542,NC(=O)c1ncn([C@@H]2O[C@H](CO)[C@@H](O)[C@H]2O)n1,0,11.655109959885394,-3.728677012471656,11.655109959885394,0.07946523053665855,0.44284203167437103,244.2070000000001,232.111,244.080769484,94,0,0.2878781797929572,-0.39356684310032825,0.39356684310032825,0.2878781797929572,1.8823529411764706,2.764705882352941,3.4705882352941178,2.795726818219534,811.2535629008164,22.62939203306742,19.830095834319145,7.830095834319147,13.120156669734783,9.63555772028297,4.016385657891464,2.7490153052446504,2.7490153052446504,1.7271363721911948,1.7271363721911948,1.0117933150866694,1.0117933150866694,-1.5500000000000003,1208539.195891094,3.985654387032409,4.372750406697864,2.0017705966337545,112.67553541427827,25.78300450284796,25.914184350986407,9.027636966592956,10.118003469697829,5.907179729351506,0.0,4.794537184071822,9.665781456092393,0.0,5.098681808301038,0.0,0.0,0.0,14.783536579937607,37.276818761041454,5.907179729351506,4.293598971697903,14.76446326439343,5.719716975726273,24.44400689078652,6.558985242916289,12.127776211966154,0.0,0.0,5.719716975726273,0.0,0.0,0.0,65.09070586253073,4.736862953800049,0.0,26.41820438519984,6.303371713966227,2.8236841566564013,0.0,0.0,143.72000000000003,54.75766505074673,4.794537184071822,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,25.409084902569884,21.449455975345895,94.95356432852194,0.0,14.89527380783198,14.952492819263203,-0.4829212228968722,-2.5377628049676653,0.0,-15.867956113000758,-3.6626908147518282,0.0,0.625,17,5,9,0,1,1,0,1,1,8,4,9,6,0,1,1,2,-3.0114999999999994,51.549300000000024,0,3,0,0,0,3,0,0,0,0,1,1,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +5505,CCCCNC(=O)NS(=O)(=O)c1ccc(C)cc1,0,12.797975836167797,-5.825340529730405,12.797975836167797,1.172246315192743,0.8008194430489943,270.3539999999997,252.20999999999995,270.1038134360004,100,0,0.32819354018729163,-0.33731986458409735,0.33731986458409735,0.32819354018729163,1.5,2.2222222222222223,2.8333333333333335,3.680252311290154,1128.3195557936444,29.196152422706632,26.52742035285537,9.343916933783094,15.6128190893733,12.989403393882105,5.535039531682829,2.526658561562651,4.067613717517885,1.3282345519140528,2.4448097650746528,0.7025960283904477,1.4003411398375898,-1.5599999999999996,7813865.6287475955,3.3042288563253988,6.393460366483331,4.3668002603657445,133.04866043304878,5.309813353288376,0.0,2.8236841566564013,0.0,10.023291153407584,6.031114512338072,0.0,17.92745378213489,0.0,0.0,30.873105925648645,25.30965443395165,22.94596235835858,10.378517700198655,37.968155223780684,16.054405665745655,0.0,10.024932967022508,0.0,31.345117512767892,6.496859684315945,29.733126322350174,0.0,0.0,10.024932967022508,4.794537184071822,0.0,0.0,20.945771180982955,10.023291153407584,6.851892117295679,47.09333031037499,29.065158306170954,2.8236841566564013,0.0,0.0,75.27000000000001,93.65444215220217,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.75582105537992,159.16821857436005,0.0,10.768400691295033,-1.172246315192743,-1.1825451167173326,0.0,-8.351928099082453,-8.262562318559953,-11.308663553038887,-5.825340529730405,0.4166666666666667,18,2,5,0,0,0,1,0,1,3,2,6,7,0,0,0,1,1.78302,69.80720000000004,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1 +151166,Cc1ccc(Nc2c(F)cccc2Cl)c(CC(=O)O)c1,0,14.796449042579994,-3.5388174366969007,14.796449042579994,0.16737481103552554,0.8897457941317977,293.72499999999974,280.621,293.06188455600034,104,0,0.30739605551476895,-0.48098521259560595,0.48098521259560595,0.30739605551476895,1.65,2.5,3.25,3.1205564774103167,1125.3202234766927,25.790010549841313,22.519639122446137,10.275568068464594,14.921549833997775,11.33888824493687,5.361390831982275,3.34943894594944,3.7274034189586676,2.003675029530884,2.2771726915083494,1.241729942524305,1.4141930592273233,-2.0699999999999994,5403163.387780474,5.0407640431342084,5.924010271848085,3.2745522895053223,138.96708672695362,10.418621544395588,5.817220841045895,1.4118420783282006,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,4.39041504767482,0.0,0.0,35.291647504919396,30.54259973198256,12.541179055534661,25.307495826775586,30.78394661905447,28.945017727551487,1.4311996572326342,0.0,0.0,13.224817018625059,5.309813353288376,58.221269384160976,0.0,0.0,5.309813353288376,15.765187597041944,0.0,11.600939890232516,11.078113479059063,11.167462085401201,12.669112958341575,26.20524710126641,36.25451224597977,6.434475392069527,1.4311996572326342,0.0,49.33,88.79016424010501,9.184952231746642,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,29.522325743665768,115.42089859537708,5.85987864281515,11.960054302848913,2.5129506023683668,-4.8048922377593,-3.6271787210254467,-6.758599906311622,-3.5388174366969007,-3.2465160638384694,0.0,0.13333333333333333,20,2,3,0,0,0,2,0,2,3,2,5,5,0,0,0,2,4.158220000000002,77.21150000000003,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +969472,CN1CCN(C(=O)O[C@H]2c3nccnc3C(=O)N2c2ccc(Cl)cn2)CC1,0,13.619258681867809,-4.0979005145638,13.619258681867809,0.0175573192239864,0.7705081180627318,388.81499999999977,371.6790000000001,388.1050660840005,140,0,0.4116207462748524,-0.41854375996813004,0.41854375996813004,0.4116207462748524,1.3333333333333333,2.111111111111111,2.888888888888889,1.9622834017000648,1577.8078949995015,33.91133089340096,29.785990917400564,13.54191986341902,19.684152852854346,15.359580783682027,7.237545256691254,4.687341928980673,5.0653064019899,3.0906348886457065,3.269641432370865,2.00644972801873,2.09595299988131,-2.78,828527526.490906,6.67822570875731,7.087061346581865,3.3080441108968537,183.95917104645392,14.536682415501005,12.88254932885371,5.693927994848461,6.203952809936554,5.907179729351506,6.093240070938415,9.77851570501903,19.662403956816718,0.0,0.0,11.600939890232516,19.060664315608836,54.10143426289962,17.359460319273307,37.62883277683744,29.419222468357468,0.0,24.75175502454258,0.0,6.203952809936554,37.863175368396504,47.01401235120912,0.0,0.0,4.899909730850478,10.61239996190685,0.0,11.600939890232516,69.71544046237854,4.736862953800049,0.0,45.68924143859906,30.603523047770874,5.022633313741326,0.0,0.0,91.75999999999999,113.79933283851763,9.589074368143644,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,14.951935562841626,39.64069829892632,141.67160220989493,5.773161709439216,36.149613883486765,-0.6744386054081917,-2.0497738640528147,-2.589086549807149,-1.9454940142770707,-8.839428816489733,-20.051711508341512,0.0,0.35294117647058826,27,0,9,0,2,2,0,2,2,7,0,10,3,0,1,1,4,1.5679999999999998,96.38050000000004,0,0,0,0,0,3,0,0,0,0,2,2,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +54746,C=CCN1C[C@H](C(=O)N(CCCN(C)C)C(=O)NCC)C[C@@H]2c3cccc4[nH]cc(c34)C[C@H]21,0,15.56988365562274,-5.598483796296303,15.56988365562274,0.1862804708231507,0.6049384423595515,451.6149999999996,414.3190000000003,451.29472542400106,178,0,0.323584922601973,-0.3608804645725571,0.3608804645725571,0.323584922601973,1.606060606060606,2.515151515151515,3.3333333333333335,2.4454968062996194,2537.13287707606,55.81495457622364,53.05256455842752,16.052564558427516,30.481621242890313,26.959563852213506,8.565136661213591,5.935598126618317,5.935598126618317,4.075035886347111,4.075035886347111,2.8515614851364663,2.8515614851364663,-2.6399999999999992,25247152855227.42,5.28642661908334,10.09708285186713,4.703099092300733,248.44234995713407,15.186726354368107,0.0,2.8236841566564013,5.907179729351506,0.0,6.031114512338072,14.594356645772777,4.794537184071822,0.0,6.531038962001867,18.136909161362155,63.588501997221535,90.61483149429797,18.230784690895057,60.38930799075779,22.841219173770636,0.0,24.98654581606906,5.893957685363079,37.88251697499654,46.43595222214421,48.01016502523606,0.0,0.0,5.309813353288376,4.794537184071822,0.0,0.0,84.06887139496412,11.167462085401201,5.893957685363079,84.5951520546692,36.88326204184208,2.8236841566564013,10.902924932081056,0.0,71.68,181.0733536273504,17.1313641896038,4.794537184071822,4.977003270229252,0.0,0.0,0.0,0.0,0.0,0.0,38.46340661708212,314.67924168881143,0.0,25.451263885239676,-2.9063408011740064,-4.492012322408574,-14.102765692575627,-15.018189395187793,-16.56914777603383,-40.542049586671254,0.0,0.5384615384615384,33,2,7,1,1,2,1,1,2,4,2,7,11,0,1,1,4,3.193900000000001,132.36540000000002,0,0,0,0,0,1,1,0,0,0,2,2,0,0,0,3,2,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +5281067,CN(C)CCC(c1ccc(Br)cc1)c1ccccn1,0,9.172052626606199,-4.222498464663646,9.172052626606199,0.4474959582598468,0.8300542359520315,319.24599999999964,300.094,318.07316070800056,100,0,0.08399085918377756,-0.30936473198177533,0.30936473198177533,0.08399085918377756,1.368421052631579,2.1578947368421053,2.8947368421052633,3.2769228039131235,1226.3464151119624,30.13531001146206,28.27239166400914,10.858388203123848,16.789358009941758,14.30701622525451,5.600014494811861,3.0834094275045296,3.876407697061882,1.8410081126272546,2.23750724740593,1.1227583049073637,1.3210078722967016,-1.1900000000000002,30183290.497422542,3.5203511963973586,6.826182966360543,4.1490997732367605,149.85467665752367,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,34.057200020939234,56.554564708559994,37.31184452473114,10.96606844936176,26.044412567234176,15.929943897949348,0.0,9.883888251797686,0.0,12.266882586692457,20.448513484880436,64.19992516683568,0.0,0.0,0.0,0.0,0.0,15.929943897949348,30.332401736678126,0.0,0.0,49.56867464047213,52.94254568029024,0.0,0.0,0.0,16.130000000000003,101.81523096925908,1.3707585561702202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.913922418896558,24.673654011063956,152.89521070634282,2.812032236358986,2.6638023195389273,0.0,-2.616045918367346,-3.7895833333333346,-7.3804943914294086,-5.308668876501219,-11.942919409276064,0.0,0.3125,19,0,2,0,0,0,1,1,2,2,0,3,7,0,0,0,2,3.9277000000000024,83.39300000000004,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +16112839,C=C[C@]1(C)C[C@@H](OC(=O)NC(=O)OC2CCC(N)CC2)[C@]2(C)[C@H](C)CC[C@]3(CCC(=O)[C@H]32)[C@@H](C)[C@@H]1O,0,15.44735309347705,-6.739704373083033,15.44735309347705,1.2484342421859624,0.4834095903428691,504.6679999999995,460.3160000000003,504.3199371280012,202,0,0.4164125537696646,-0.44586973662298846,0.44586973662298846,0.4164125537696646,1.3333333333333333,2.1666666666666665,2.8333333333333335,2.610506073393105,2607.104373292028,64.66277222788702,61.34391693378309,17.343916933783095,34.43511649497998,31.053702632069125,9.30381355510539,7.137845961121404,7.137845961121404,5.012556664504595,5.012556664504595,3.352120261554879,3.352120261554879,-1.93,948666868698924.5,5.669179099684803,9.747610633689636,4.380254773754571,276.3549460244249,20.302251074433585,20.766965156921312,1.4118420783282006,1.4311996572326342,0.0,12.18648014187683,4.794537184071822,14.898887721432018,0.0,6.531038962001867,33.459640215218286,68.18630505075797,75.72054690362319,14.304569363971307,88.03201413271616,17.96972508824177,1.4311996572326342,5.309813353288376,39.64656144000585,109.02183913034675,0.0,12.583110708037434,0.0,0.0,11.029530329014648,9.589074368143644,0.0,0.0,48.76767948578122,14.268263091671919,33.926844464279576,139.59423482795577,12.583110708037434,4.235526234984602,0.0,0.0,127.95,184.5310497199202,27.4089355983565,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,14.58253409870731,42.67720690881319,396.898610217676,0.0,44.17839292472431,2.1964885340616545,-20.49728670863595,-22.608324353555922,-7.643448251657074,-74.25194518034175,-25.689153848938055,0.0,0.8214285714285714,36,4,8,4,0,4,0,0,0,7,3,8,9,4,0,4,4,4.482400000000005,134.87789999999998,0,1,0,0,0,0,0,0,0,0,3,3,0,0,0,0,1,1,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5405,CC(C)(C)c1ccc(C(O)CCCN2CCC(C(O)(c3ccccc3)c3ccccc3)CC2)cc1,0,9.85059468464829,-5.286561753208582,9.85059468464829,1.3380559014253561,0.39694894051294805,471.68499999999955,430.3570000000003,471.3137295520012,186,0,0.2118699302730692,-0.3884207348813768,0.3884207348813768,0.2118699302730692,1.0,1.6,2.1142857142857143,2.2625475815003844,2620.9978801779575,60.38386867697599,58.263710176427686,17.263710176427686,33.47495005437809,29.645565264641526,9.3290686837138,6.556130756329766,6.556130756329766,4.212394621709299,4.212394621709299,2.558451559448386,2.558451559448386,-2.459999999999999,443672502894249.3,5.52540365722106,11.07416336780592,6.033378319378883,268.77438217737864,15.117526113064901,5.601050810983688,0.0,2.8623993144652684,0.0,0.0,0.0,0.0,0.0,0.0,105.1495382591732,78.5450327798132,32.89820534808528,26.641396369503283,63.677200072853076,0.0,2.8623993144652684,4.899909730850478,5.893957685363079,63.143435264535,19.490579052947837,106.84766787407415,0.0,0.0,0.0,0.0,0.0,0.0,37.470504480478006,11.016041280380467,5.893957685363079,127.84078364158094,84.59386190728614,0.0,0.0,0.0,43.7,200.27554960777064,6.853792780851101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,54.57699841536,354.1649902300539,0.0,-1.420553043837676,8.903131447788375,-16.94955099749416,-5.156699505317385,-23.972194971763905,-25.485051277166143,-28.58407188226297,0.0,0.4375,35,2,3,0,1,1,3,0,3,3,2,3,10,0,1,1,4,6.445800000000008,144.38259999999983,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5281078,COc1c(C)c2c(c(O)c1C/C=C(\C)CCC(=O)OCCN1CCOCC1)C(=O)OC2,0,13.43818359010816,-4.844046858157612,13.43818359010816,1.0887860490785002,0.46901748000616883,433.50099999999964,402.2530000000002,433.2100523320008,170,0,0.34219270832429743,-0.5065900756532241,0.5065900756532241,0.34219270832429743,1.4516129032258065,2.3225806451612905,3.064516129032258,2.421625989569472,2001.6404230523142,49.38638686701862,45.804951628747,14.804951628747,26.893335716192045,23.07443428126505,7.666185990801185,5.095480221772054,5.095480221772054,3.280419040726181,3.280419040726181,2.022411755815071,2.022411755815071,-2.58,534323395436.39105,5.664210050619015,10.63632866459004,5.566117618645093,225.9062020288404,24.056260006307408,30.180445644097386,0.0,0.0,1.4311996572326342,11.938610575903699,9.694446914922299,4.794537184071822,0.0,0.0,11.625176276104835,32.013085528947116,61.66406094873522,36.605025618757814,74.76809105955769,11.938610575903699,1.4311996572326342,4.899909730850478,0.0,39.381544181495784,46.20548724057928,33.87898224289282,0.0,11.49902366656781,4.736862953800049,0.0,11.49902366656781,0.0,69.58401539567332,31.937036189717638,6.851892117295679,87.7688417559208,11.625176276104835,0.0,0.0,0.0,94.53000000000002,147.8035576382899,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.31939705250736,47.29081929613931,267.65186080388656,0.0,25.27549790385502,4.276803041809199,-9.009847044129668,-8.562388387916952,-2.43407916160419,-14.06318344262101,-37.814394516218286,-3.903602530393978,0.5652173913043478,31,1,8,0,2,2,1,0,1,8,1,8,13,0,1,1,3,2.52402,113.42830000000006,0,0,0,0,0,0,0,1,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5959,O=C(N[C@H](CO)[C@H](O)c1ccc([N+](=O)[O-])cc1)C(Cl)Cl,0,12.24123588015453,-4.141590844671204,12.24123588015453,0.8991956412194511,0.4090709280478973,323.1319999999997,311.03599999999994,322.01232684400037,110,0,0.26894513302429984,-0.3941232075520646,0.3941232075520646,0.26894513302429984,1.65,2.3,2.75,4.192615319740448,919.9060588411143,25.61036598507973,21.191597589337686,10.703455481374597,14.272814567527757,10.290015850052754,5.282234619643525,2.937876369649562,3.8872694140873603,1.7082062675221448,2.0315404684299403,0.8928677343980207,0.9773831598708723,-1.4099999999999997,2278184.208115059,6.146842915310221,7.392954608862727,4.309031435917423,140.90651680629352,15.5274297355028,6.080018026949988,6.22416340777994,2.8623993144652684,11.594566004035068,0.0,14.908855452837393,0.0,0.0,0.0,23.20187978046503,17.648288907023584,12.08483741532659,29.83701576561558,33.6841336989641,34.7964457845001,2.8623993144652684,5.309813353288376,0.0,16.91023182475137,6.558985242916289,39.847444591115746,0.0,0.0,5.309813353288376,5.687386274683562,0.0,23.20187978046503,41.299705515566544,4.794537184071822,10.114318268765572,23.98029652417896,24.16967483065318,1.4118420783282006,0.0,0.0,112.70000000000002,75.03003379615895,14.908855452837393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,39.81294817879049,92.55243849378425,10.510367789533252,18.761572146688486,17.90408639548182,-2.8836009542705967,-2.1225924876123283,-9.875204624030683,-3.969362087427564,-3.98881578325775,0.0,0.36363636363636365,20,3,7,0,0,0,1,0,1,5,3,9,8,0,0,0,1,0.9089999999999998,72.56670000000003,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9933004,OC(CNCC(O)C1CCc2cc(F)ccc2O1)C1CCc2cc(F)ccc2O1,0,14.609838319102902,-4.816817591738004,14.609838319102902,1.3740862517846653,0.68846240126238,405.4409999999997,380.24100000000016,405.1751647200007,156,0,0.21070620066418919,-0.48737950180106016,0.48737950180106016,0.21070620066418919,1.103448275862069,1.5862068965517242,2.0344827586206895,1.9959704435595256,1785.0044439720214,42.33398062421133,38.83613570337386,13.836135703373865,23.995776666759802,19.81363311632846,7.549922939900774,5.142243686257717,5.142243686257717,3.2328301866651117,3.2328301866651117,2.003879193868152,2.003879193868152,-2.22,59621238138.62421,5.931060346800591,8.649757990750814,4.685431508123459,203.178406768023,25.001155643102898,48.86537953478775,0.0,2.8623993144652684,0.0,0.0,0.0,8.78083009534964,0.0,0.0,0.0,72.87311483469128,29.442822042674525,13.7075855617022,60.040702699237265,0.0,2.8623993144652684,5.309813353288376,0.0,49.811771713117466,12.99371936863189,59.01585691146555,0.0,11.49902366656781,14.783539260888475,8.78083009534964,11.49902366656781,0.0,50.393807173111526,12.745849802658759,11.63444168209179,54.02944102179764,36.25451224597977,1.4118420783282006,0.0,0.0,70.95,138.63018501307113,8.78083009534964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,43.90465553613843,246.8390290797709,0.0,0.0,6.670344961651742,-2.953139986924743,-6.818605449641918,-9.197740693439595,-35.40625272794033,-9.633635183476006,0.0,0.45454545454545453,29,3,5,0,2,2,2,0,2,5,3,7,8,0,0,0,4,2.363600000000001,103.15730000000003,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3033821,CC(C)n1c(=O)c2c(-c3noc(C4CC4)n3)ncn2c2ccccc21,0,14.074828160430833,-3.854382663993057,14.074828160430833,0.11977595899470872,0.5745135442105475,335.3669999999998,318.2310000000001,335.1382247840005,126,0,0.2775169822127239,-0.3386228542772495,0.3386228542772495,0.2775169822127239,1.44,2.24,3.0,1.9941669198421375,1853.96092190291,31.911330893400958,29.05256455842752,12.052564558427518,18.90760829377723,15.300497251548688,6.800497251548689,4.978947292151812,4.978947292151812,3.536503673665394,3.536503673665394,2.426586382895497,2.426586382895497,-2.9599999999999995,639577002.063755,5.266941999143184,5.016796279197018,2.0471542799427653,166.35241336848304,9.090194584764703,18.884758982601166,0.0,11.715128420025835,5.559266895052008,0.0,9.195231790333615,4.9839785209472085,4.9839785209472085,0.0,17.241500672452034,38.5344714525767,26.99019427158514,17.88719421608362,27.825990391867084,16.550102152848787,0.0,24.09241455307301,0.0,38.36148419096284,0.0,46.717574545769146,0.0,11.518332492848387,5.559266895052008,0.0,0.0,0.0,24.09241455307301,0.0,0.0,67.55510356788253,39.79067866566458,0.0,28.068434645697167,0.0,78.22,108.35295619835736,4.794537184071822,0.0,4.567099647791355,4.400694606261793,0.0,0.0,0.0,0.0,15.124620299019863,27.825990391867084,142.11855352452028,0.0,21.670662254871075,3.502850817796254,-5.098130592042705,-4.313452303193238,-7.794284712325873,-6.4628560241363395,-7.623342965489435,0.0,0.3333333333333333,25,0,7,1,0,1,1,3,4,7,0,7,5,1,0,1,5,3.1575000000000015,92.61000000000003,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2119,C=CCc1ccccc1OCC(O)CNC(C)C,0,8.253505815906609,-4.4274430219618734,8.253505815906609,1.1524210208966252,0.6936807740895572,249.35400000000018,226.16999999999996,249.172878976,100,0,0.2106904069769196,-0.4905469422333816,0.4905469422333816,0.2106904069769196,1.8888888888888888,2.7777777777777777,3.5555555555555554,4.087206281659497,1169.2085724949031,33.110365985079724,31.763710176427686,8.763710176427685,17.929297878066553,15.665047917159574,4.309586031195753,2.559586031195753,2.559586031195753,1.35563426503129,1.35563426503129,0.7549690923342625,0.7549690923342625,-1.32,74921573.28326444,2.6046227887617066,7.9012736027296295,5.340871756109851,141.9429686764183,15.155484498195637,19.800357181478383,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,6.531038962001867,37.88311210361681,17.97879510068967,27.593096270538005,13.7075855617022,40.04344290281009,0.0,1.4311996572326342,5.309813353288376,0.0,32.174619631220374,13.055844927232233,42.316237030387605,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,31.69376327087171,6.372924901329379,0.0,48.053165405863005,36.75278553869062,1.4118420783282006,0.0,0.0,41.49,98.60602677541249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,36.36583436893551,183.3923337571113,0.0,0.0,2.701281790474837,-1.4122057271982864,-1.5677915564373899,-10.835938554249118,-7.8957358204415895,-18.298610555926388,0.0,0.4666666666666667,18,2,3,0,0,0,1,0,1,3,2,3,11,0,0,0,1,2.1528,74.98350000000005,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16759173,CC[C@H](C)C(=O)O[C@H]1C[C@H](O)C=C2C=C[C@H](C)[C@H](CC[C@@H](O)C[C@@H](O)CC(=O)[O-])[C@H]21,0,14.165054431711003,-5.807821712018144,14.165054431711003,2.2943211497880958,0.4491618061716244,423.5259999999995,388.24600000000015,423.23882703991086,170,0,0.3084322722958733,-0.5500681033742341,0.5500681033742341,0.3084322722958733,1.5666666666666667,2.433333333333333,3.1,3.7171879755147343,2007.9055125416699,52.79252873988395,49.357738033247045,14.357738033247042,28.101259484508418,24.607738033247042,7.3829931618554525,4.993473610674221,4.993473610674221,3.0227253202103586,3.0227253202103586,1.9050913993878116,1.9050913993878116,-1.7000000000000002,1709102320950.547,5.1014047681818075,11.070673451799568,6.653663308419858,227.42461189176146,29.964352106034212,6.080018026949988,0.0,4.293598971697903,0.0,5.969305287951849,4.794537184071822,0.0,0.0,0.0,38.71189158999373,42.85271950611294,58.87807668022924,33.72932165940458,78.6231630875531,11.938610575903699,4.293598971697903,0.0,23.575830741452314,83.11329786766326,0.0,23.729319768175966,0.0,0.0,5.106527394840706,0.0,0.0,0.0,55.87870622872319,14.325937321943691,23.575830741452314,102.65749955731025,23.729319768175966,0.0,0.0,0.0,127.12,142.35705895319524,18.807877431495008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.063287527121684,44.045597100634296,296.7560640551295,0.0,25.937095236480182,23.092407787417997,-2.4622515709298716,-28.336231727559177,-7.1656119113036505,-52.469128020317484,-14.10234384891762,0.0,0.7391304347826086,30,3,7,2,0,2,0,0,0,7,3,7,16,0,0,0,2,1.1056999999999997,108.81440000000005,1,3,0,0,0,0,0,0,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36811,CC(CCc1ccc(O)cc1)NCCc1ccc(O)c(O)c1,0,8.655575921726717,-4.568090986394561,8.655575921726717,1.0335746708753735,0.593334886982252,301.38599999999957,278.202,301.16779359600065,118,0,0.29329378283076163,-0.5079666452522206,0.5079666452522206,0.29329378283076163,1.1818181818181819,2.0,2.727272727272727,2.999760866004048,1445.91756154758,35.62687384302478,33.671958466891546,10.671958466891548,20.11956790684749,16.7315444980873,5.559586031195753,3.5595860311957526,3.5595860311957526,2.0023613817020376,2.0023613817020376,1.0930145751091718,1.0930145751091718,-2.1999999999999997,830904758.209123,3.6478138487521115,7.707406448941566,4.968031327874689,163.24310236261638,20.63623792661001,7.161353911612106,11.49902366656781,0.0,4.293598971697903,0.0,0.0,0.0,0.0,0.0,18.127256122989884,67.76410431964692,22.466995142392282,9.59530989319154,42.782679218884034,0.0,4.293598971697903,5.309813353288376,0.0,31.988559289633464,6.496859684315945,53.42383393703705,0.0,17.248535499851716,5.309813353288376,0.0,17.248535499851716,0.0,32.13477569768513,12.745849802658759,0.0,50.39613256925327,42.29693095364306,1.4118420783282006,0.0,0.0,72.72,114.46760176412656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,31.749853617260282,185.4238317798615,0.0,0.0,11.001340887784458,-3.0232099558829075,-3.2634479542905837,-13.787109493723023,-12.693367003475462,-8.658038260274015,0.0,0.3333333333333333,22,4,4,0,0,0,2,0,2,4,4,4,11,0,0,0,2,2.956800000000002,87.36810000000003,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +60464,C[C@H]1CN(c2c(F)c(N)c3c(=O)c(C(=O)O)cn(C4CC4)c3c2F)C[C@@H](C)N1,0,17.19088411753591,-4.5911343512254446,17.19088411753591,0.44191302910052954,0.6918289177745705,392.4059999999997,370.23000000000013,392.16599700400064,150,0,0.34072458046417753,-0.47749701459307237,0.47749701459307237,0.34072458046417753,1.5,2.2142857142857144,2.7857142857142856,2.4442607612311087,1826.1224885378924,39.29001054984131,35.269528199409876,13.269528199409876,22.09419956480815,18.002687165418568,7.252798088454833,5.45422087205619,5.45422087205619,3.7537225576639885,3.7537225576639885,2.576296200093044,2.576296200093044,-2.6799999999999997,9204705382.357336,5.914384808450085,6.439332642096335,2.808179438627757,190.44857242317585,25.605347898763696,12.662679844708759,14.458125838748192,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,13.575367279421462,0.0,0.0,0.0,26.449634037250117,53.66939465853826,24.814862543785935,47.59335571657726,28.247002769400027,1.4311996572326342,9.87691300107973,0.0,44.50331144229905,23.61334607520864,33.594115960575905,0.0,0.0,21.358230451765667,20.155602644716765,0.0,0.0,40.674717432181595,0.0,11.63444168209179,67.49916919243257,10.967432394886583,4.235526234984602,12.33412458931369,0.0,100.59,135.04015206449156,9.589074368143644,8.78083009534964,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,30.340379903281192,211.52503006577842,0.0,24.957485785792166,0.7687998192802421,-11.096632502097872,-7.428788366382161,-12.653892455181238,-8.892435438656133,-17.762900241866802,0.0,0.47368421052631576,28,4,7,1,1,2,1,1,2,7,3,9,6,1,1,2,4,2.0816,102.03940000000004,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2088,NCCCC(O)(P(=O)([O-])O)P(=O)(O)O,0,12.363117913832198,-6.5556925547996965,12.363117913832198,1.0090756487780297,0.3515513687122151,248.08800000000008,235.99199999999996,248.00944856391,86,0,0.3650751575474178,-0.7761361971151571,0.7761361971151571,0.3650751575474178,1.5714285714285714,2.2857142857142856,2.7142857142857144,7.225927885317147,594.1277830897038,21.405777393935814,18.199378819746915,7.9882332017467474,11.436016360093351,8.247810006347569,5.805707074512781,1.9649826080811141,5.567216881261431,1.0236531854013469,4.201787930382993,0.39629870668652506,1.9819633843140987,0.21999999999999995,112550.91345741894,3.9072602776769827,4.384126812949213,2.8532017974347172,97.39345796070724,34.97406225157423,2.8236841566564013,7.595762326787885,10.808026248998049,0.0,7.595762326787885,4.565048284931329,0.0,0.0,0.0,0.0,19.242709486974704,8.224551337021321,0.0,44.867629054457026,15.19152465357577,5.724798628930537,0.0,5.719716975726273,17.82907742272627,6.496859684315945,0.0,0.0,0.0,10.613128578478747,0.0,0.0,15.19152465357577,37.10077132147814,9.130096569862658,0.0,20.970401139680078,0.0,2.8236841566564013,0.0,0.0,164.14,45.23717873634426,14.023508172615134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.79588538816415,16.77303412260826,109.59115331317713,0.0,21.94301729024943,-1.1969035021415975,-1.0090756487780297,0.0,0.0,-8.960887345679016,-4.00278628117914,-12.753406714537665,1.0,14,6,8,0,0,0,0,0,0,8,5,10,10,0,0,0,0,-1.9051999999999998,45.10760000000002,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +101526,COc1c(N2C[C@@H]3CCCN[C@@H]3C2)c(F)cc2c(=O)c(C(=O)O)cn(C3CC3)c12,0,16.87588364512471,-4.495998296803675,16.87588364512471,0.2990484457671956,0.8185182971562766,401.4379999999997,377.24600000000015,401.17508446800065,154,0,0.34072311785880255,-0.4922383374540334,0.4922383374540334,0.34072311785880255,1.5517241379310345,2.413793103448276,3.1724137931034484,2.1263766119708696,2036.7081057994149,41.41976706183823,37.852598421364554,13.852598421364554,23.367967374152702,19.603919230627927,7.748457344664104,5.736014656774506,5.736014656774506,4.090369539351864,4.090369539351864,2.825484767048432,2.825484767048432,-2.61,38917116465.612755,5.750778949306252,6.725318925390063,2.884890738826919,200.47457236386668,24.62249387683747,12.662679844708759,11.5667326743298,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,9.184952231746642,0.0,0.0,0.0,43.92493568265983,50.39301930252907,28.906945840325402,50.59915369072698,22.559616494716465,1.4311996572326342,9.87691300107973,5.893957685363079,37.52748454201681,31.428441242680897,33.819313827193305,0.0,5.749511833283905,20.375376429839445,10.077801322358383,5.749511833283905,0.0,48.19163710703048,0.0,11.711178526408974,72.02426898518084,17.009851102549877,1.4118420783282006,12.33412458931369,0.0,83.80000000000001,137.493601794471,9.589074368143644,4.39041504767482,4.567099647791355,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,37.73659292510573,221.6636063897227,0.0,25.45633261685189,1.1161859124328943,-7.482339144641636,-10.97785477853979,-9.958352084348434,-17.3571907791528,-13.048275666968337,-3.9954457986898486,0.5238095238095238,29,2,7,1,2,3,1,1,2,7,2,8,5,1,2,3,5,2.3705000000000007,106.67600000000004,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4723,NC1=NC(=O)C(c2ccccc2)O1,0,11.793994708994706,-2.719097222222222,11.793994708994706,0.14930650037792903,0.6809458251088376,176.17500000000004,168.11099999999996,176.058577496,66,0,0.2955774076555192,-0.44660942814618976,0.44660942814618976,0.2955774076555192,1.6153846153846154,2.3846153846153846,3.0,2.6655214742123117,647.1968769898532,16.11036598507973,14.210923771927643,6.210923771927642,9.60778401802483,7.177620019945648,3.2831928289457317,2.130716366966425,2.130716366966425,1.3118429793753896,1.3118429793753896,0.816899491584271,0.816899491584271,-1.8399999999999996,36164.36717385335,2.834461451247165,2.895010133611532,1.37763609586988,86.38655608740021,10.456579929526322,0.0,2.8236841566564013,6.080018026949988,11.928859856695684,0.0,4.794537184071822,0.0,4.992404732635669,0.0,30.212093538316473,0.0,5.563451491696996,8.224551337021321,20.57963563154959,11.928859856695684,0.0,0.0,10.712121708361941,6.080018026949988,0.0,35.77554503001347,0.0,0.0,5.719716975726273,0.0,0.0,0.0,11.928859856695684,9.53140013787187,0.0,19.868020855668302,35.20449827095214,2.8236841566564013,0.0,0.0,64.67999999999999,53.78442291365914,4.794537184071822,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,4.992404732635669,15.785098447477768,64.47492546401276,0.0,14.958508125472408,0.0,-0.8584731670445953,-1.2772864701436129,-4.495243396741412,-2.719097222222222,0.0,0.0,0.1111111111111111,13,2,4,0,1,1,1,0,1,3,1,4,1,0,0,0,2,0.5992000000000001,46.89740000000001,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +82148,COc1ccc2cccc(CCNC(C)=O)c2c1,0,12.016312278890743,-3.8645721135676503,12.016312278890743,0.7849579947719831,0.8957371308407087,243.30600000000013,226.16999999999996,243.125928784,94,0,0.21638288278489426,-0.4967449264927032,0.4967449264927032,0.21638288278489426,1.5555555555555556,2.5,3.3333333333333335,3.091587413134044,1199.6273228297225,27.63531001146206,25.763710176427686,8.763710176427685,15.496629238358583,13.006799626695711,4.559586031195753,2.9599455800063597,2.9599455800063597,1.8549727900031798,1.8549727900031798,1.1684527628743282,1.1684527628743282,-2.0300000000000002,8938337.042446956,3.101397432963283,5.537230752231385,2.80013756508852,130.705262871465,10.046676307088426,5.749511833283905,1.4118420783282006,5.907179729351506,0.0,0.0,4.794537184071822,0.0,0.0,0.0,24.16967483065318,34.79366223728256,22.94406169480316,19.374779464414566,32.87537911492358,16.679628158281098,0.0,5.309813353288376,0.0,13.224817018625059,13.534812143198533,41.81796373767676,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,19.441991872550037,11.167462085401201,0.0,34.34748050771619,36.25451224597977,1.4118420783282006,10.772448428929591,0.0,38.33,96.31654624435373,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,23.343978977051716,136.58629458049802,0.0,12.016312278890743,-2.5416097804862687,-1.2472373393801968,-3.212494978733254,-6.350305785926501,-3.7385618622448993,-7.4216833061469165,-3.2573804731373732,0.26666666666666666,18,1,3,0,0,0,2,0,2,2,1,3,6,0,0,0,2,2.527,72.88770000000002,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4543,CNCCC=C1c2ccccc2CCc2ccccc21,0,8.743670162509448,-3.913405848450493,8.743670162509448,0.7709822740824732,0.8299677542138636,263.3839999999999,242.21599999999992,263.1673996720002,102,0,0.12187878682644789,-0.3194434756330369,0.3194434756330369,0.12187878682644789,1.25,1.85,2.45,2.817143135072548,1400.0222899153114,32.16025403784439,30.94721359549996,9.947213595499958,18.216878364870325,15.894427190999917,5.447213595499958,3.598606797749979,3.598606797749979,2.4868033988749896,2.4868033988749896,1.6809016994374948,1.6809016994374948,-1.8599999999999994,170770317.09827593,3.1486931778299976,6.06175238086963,2.5432784027273465,150.45995725999416,5.309813353288376,1.4118420783282006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.39142140734192,60.41837178544357,15.078344117872419,12.33682700553198,28.827013201732598,5.573104530069267,0.0,5.309813353288376,0.0,19.118774703988137,13.47268658459819,76.6452273741299,0.0,0.0,5.309813353288376,0.0,0.0,0.0,13.47268658459819,12.745849802658759,0.0,56.04190199152181,54.39142140734192,1.4118420783282006,5.573104530069267,0.0,12.03,120.11960654607391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.827013201732598,172.31045743479768,0.0,0.0,-0.7709822740824732,-5.785181957042074,0.0,-10.693857797812523,-10.969338151927444,-7.507763920599871,0.0,0.2631578947368421,20,1,1,1,0,1,2,0,2,1,1,1,4,0,0,0,3,3.826400000000003,85.91470000000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5311,O=C(CCCCCCC(=O)Nc1ccccc1)NO,0,12.888012822623436,-4.59166578745696,12.888012822623436,0.6759295190055932,0.3832200999836573,264.32499999999993,244.16499999999996,264.14739250000025,104,0,0.24568264843193902,-0.3260984792165692,0.3260984792165692,0.24568264843193902,1.1578947368421053,1.7894736842105263,2.4210526315789473,3.736996710012229,1123.9671406224238,31.480609473082808,29.119172062391506,9.119172062391506,17.138857763546667,14.314318351012636,4.511642869548856,2.5370024183594624,2.5370024183594624,1.3094288612209535,1.3094288612209535,0.6835540034648553,0.6835540034648553,-1.8799999999999997,40514194.62825679,3.22862719233056,9.103589516578463,7.205209337695133,140.82417437960754,5.309813353288376,0.0,2.8236841566564013,13.245559115935645,0.0,0.0,14.79860818918744,5.4731213474032465,0.0,0.0,30.873105925648645,24.83068721798535,34.882338751384964,6.853792780851101,42.35638745797022,17.501745733386574,0.0,5.4731213474032465,0.0,38.237549407976275,5.309813353288376,30.212093538316473,0.0,0.0,10.782934700691623,5.687386274683562,0.0,0.0,17.023893279746808,9.589074368143644,0.0,61.54044486287007,30.212093538316473,4.254883813889036,0.0,0.0,78.43,96.73432338037098,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.209533821043797,27.55777926878277,154.08928640051195,0.0,24.90427169406985,2.6840373283427006,-2.2116759695497974,-4.800336728053872,-5.540891070438343,-26.791358321549133,0.0,0.0,0.42857142857142855,19,3,5,0,0,0,1,0,1,3,3,5,9,0,0,0,1,2.4711,72.70290000000003,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +82153,CC1(C)O[C@@H]2C[C@H]3[C@@H]4C[C@H](F)C5=CC(=O)C=C[C@]5(C)[C@H]4[C@@H](O)C[C@]3(C)[C@]2(C(=O)CO)O1,0,17.960020240802166,-5.910592600466116,17.960020240802166,2.148890415115389,0.6927713808384576,434.5039999999996,403.2560000000002,434.21046693200077,170,0,0.21067790933675162,-0.3927606498806191,0.3927606498806191,0.21067790933675162,1.4838709677419355,2.3548387096774195,3.064516129032258,2.37109232012233,2091.4208817760164,49.29252873988395,45.82745421579241,14.827454215792406,26.94899425818826,23.638471979287793,8.321975398360067,6.9844328769253305,6.9844328769253305,5.250845918411363,5.250845918411363,4.01910166097474,4.01910166097474,-1.41,1079045075219.0403,5.79752602413293,6.339727051314352,2.5184408598205206,224.75612141481298,19.69134228981452,12.706712277628267,22.954651856284162,2.8623993144652684,0.0,0.0,9.589074368143644,4.39041504767482,0.0,0.0,19.755855980626926,62.28772233144604,45.50986830373128,23.126104503261733,73.42282983456941,11.566489892729878,2.8623993144652684,0.0,28.511853994882795,76.22226822533709,6.558985242916289,23.729319768175966,0.0,0.0,0.0,4.39041504767482,0.0,0.0,60.901415884492096,19.06280027574374,28.511853994882795,86.27834130210721,23.729319768175966,0.0,0.0,0.0,93.06,146.588917124042,21.92590137367562,4.39041504767482,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,39.751296345469775,299.98242110212243,0.0,28.11045423697587,7.927888611127559,-19.378557446458338,-27.957509423118374,-6.955362721343512,-33.60993022749226,-24.619404131813354,0.0,0.75,31,2,6,4,1,5,0,0,0,6,2,7,8,3,1,4,5,2.2747000000000006,108.52860000000005,0,2,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,2,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +135416229,O=C1NC(=Nc2c(Cl)cccc2Cl)S/C1=C\c1ccc2nccnc2c1,1,12.785192106941745,-1.051389938691526,12.785192106941745,0.27607245880673825,0.6250832942271003,401.278,391.1980000000002,399.9952373000003,128,0,0.2636284952424203,-0.30024004246766156,0.30024004246766156,0.2636284952424203,1.1923076923076923,1.9230769230769231,2.6923076923076925,1.9044244601953852,1553.1838030159347,26.798082239349085,22.361279908946013,14.689634381910647,16.771539823176045,11.726404886204811,8.351616817651035,4.613518227600536,6.3469679809848945,2.9500769436285603,4.343027283352362,1.861153344310266,3.0116147354068903,-2.4099999999999997,68479951.48005648,8.991571120295427,7.070855440625666,3.4390166607671726,176.8179029736191,5.309813353288376,5.687386274683562,6.579493847906249,0.0,5.907179729351506,0.0,14.76249422596624,4.992404732635669,0.0,0.0,35.286717195791624,47.547083017776856,12.345790421629522,38.32063158213722,18.543206267932,68.81145568473735,0.0,15.277770395182792,4.992404732635669,0.0,0.0,69.11415730067898,0.0,0.0,5.309813353288376,5.687386274683562,0.0,34.963764729856145,21.04278854082397,4.794537184071822,0.0,17.900278497228975,58.497843914135004,11.457108705810853,17.085473181268092,0.0,67.24000000000001,71.02814214858341,4.794537184071822,0.0,31.933706106976786,17.07169830267949,0.0,0.0,0.0,0.0,14.960361774530085,36.95054886432522,80.00015971686189,12.613932942216657,23.86311486616643,-0.8294587703000109,-1.3723875346667593,-1.051389938691526,-4.036924504931116,-1.1314912211000143,0.0,0.0,0.0,26,1,5,0,1,1,2,1,3,5,1,8,2,0,1,1,4,4.8282000000000025,106.80569999999999,0,0,0,0,0,2,0,0,0,0,1,1,0,0,1,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +4946,CC(C)NCC(O)COc1cccc2ccccc12,0,8.2970857478794,-4.334065636285379,8.2970857478794,0.721963114013078,0.8375057924076362,259.34900000000005,238.18099999999995,259.1572289120001,102,0,0.2106904069895591,-0.49019502312328916,0.49019502312328916,0.2106904069895591,1.4736842105263157,2.3157894736842106,3.1578947368421053,2.907903542551817,1297.1992508469202,31.765066523458984,30.263710176427683,9.263710176427683,17.68528094221026,15.165047917159574,4.809586031195753,3.0595860311957526,3.0595860311957526,1.7931342650312896,1.7931342650312896,1.0929846104882537,1.0929846104882537,-1.5799999999999996,78407997.6856527,3.022464553890366,6.547124220490315,3.9447395719001546,143.40946889681234,15.155484498195637,19.80035718147838,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,0.0,49.95829648057113,11.428642922128091,30.237803372662363,13.7075855617022,37.301925790469646,10.772448428929591,1.4311996572326342,5.309813353288376,0.0,25.80169472989099,13.055844927232233,42.29693095364306,0.0,5.749511833283905,10.046676307088426,0.0,5.749511833283905,0.0,31.693763270871717,0.0,0.0,39.74819680182555,42.29693095364306,1.4118420783282006,10.772448428929591,0.0,41.489999999999995,102.98624422626816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,33.62431725659506,169.88406056949572,0.0,0.0,1.2586582089664244,0.0,-1.23816192680776,-10.997723880576567,-4.281464947089949,-16.458701357321146,0.0,0.375,19,2,3,0,0,0,2,0,2,3,2,3,9,0,0,0,2,2.5775000000000006,78.58850000000005,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +78000,CCOC(=O)C1=C[C@@H](OC(CC)CC)[C@H](NC(C)=O)[C@@H](N)C1,0,13.289595222348193,-5.149923351284961,13.289595222348193,1.3734761196145122,0.6912235198580302,312.40999999999946,284.186,312.2049073760008,126,0,0.3333193586337961,-0.46263190166063,0.46263190166063,0.3333193586337961,1.7727272727272727,2.590909090909091,3.227272727272727,4.868879946427744,1350.9668802535584,40.87831517751085,38.52742035285537,10.52742035285537,21.376385750355507,18.9872060511414,5.145565264641527,3.2410615456604566,3.2410615456604566,1.9137001639584184,1.9137001639584184,1.152029173720815,1.152029173720815,-1.4000000000000001,1819730370.5509055,3.350478416230589,8.901512287334594,5.103401360544219,171.47117999920087,20.503256236614746,2.8236841566564013,1.4118420783282006,5.907179729351506,0.0,5.969305287951849,4.794537184071822,4.794537184071822,0.0,0.0,13.703784234591359,32.02273856731939,44.4873016829488,32.961465102187226,57.56729041498388,11.876485017303356,0.0,5.309813353288376,5.719716975726273,70.72216416377012,6.558985242916289,11.625176276104835,0.0,0.0,11.029530329014648,0.0,0.0,0.0,42.631291250818904,19.06280027574374,0.0,80.79530707742634,11.625176276104835,4.235526234984602,0.0,0.0,90.64999999999999,111.81234102910923,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,43.24135309304016,229.56914923495412,0.0,26.180079331242744,-1.4419561366213154,-3.8281312594482246,-5.540182434116643,-12.56559086829176,-24.53276447218007,-21.173936728872263,0.0,0.75,22,3,6,1,0,1,0,0,0,5,2,6,12,0,0,0,1,1.2853999999999997,84.15610000000005,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4823,COc1ccc(-c2nc3ccc(C4=NNC(=O)CC4C)cc3[nH]2)cc1,0,12.374084380513029,-3.678079181489297,12.374084380513029,0.25976123551272345,0.7722744312422717,334.37899999999973,316.23500000000007,334.1429758160005,126,0,0.24023542238565945,-0.49676778700843005,0.49676778700843005,0.24023542238565945,1.36,2.2,3.0,2.1000193185844953,1713.6187738505453,32.93627491978329,30.10535096292756,12.10535096292756,19.412314470665144,15.548440413195586,6.654013222195669,4.654372771006275,4.654372771006275,3.0831122998987,3.0831122998987,1.9939776161345721,1.9939776161345721,-3.1499999999999995,756424759.6310121,5.173231429275553,6.049954342018783,2.865146636965104,169.87876207885847,9.713866224029301,11.573916331283833,2.8236841566564013,5.907179729351506,0.0,0.0,4.794537184071822,10.402794667339638,5.101407525739723,0.0,12.894310824958975,36.25451224597977,31.618336907107768,37.49062445858802,34.28722119325179,22.652266167354732,0.0,15.37979793756889,10.9953652111028,13.224817018625059,7.037952458882589,47.86038244534006,0.0,17.137367822980828,10.15567910019248,0.0,5.749511833283905,0.0,28.617798982181256,4.794537184071822,5.893957685363079,40.72040540904559,47.39833847938279,2.8236841566564013,22.421257424929443,0.0,79.37,113.80674359854635,4.794537184071822,0.0,10.39581941662168,0.0,0.0,0.0,0.0,0.0,14.82224900048698,24.75582105537992,149.39925341294602,0.0,16.588519271753473,3.3992428079396664,-4.592810639210196,-7.079369112786617,-6.746710143691773,-3.6455097370448524,-3.678079181489297,-3.1445366784164497,0.21052631578947367,25,2,6,0,1,1,2,1,3,4,2,6,5,0,0,0,4,3.098600000000001,96.54240000000001,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6526396,COCC1=C(C(=O)OC(C)OC(=O)OC(C)C)N2C(=O)[C@@H](NC(=O)/C(=N\OC)c3csc(N)n3)[C@H]2SC1,0,14.067765273807733,-4.713473818550864,14.067765273807733,0.16810654401348923,0.13610908733951915,557.6070000000012,530.3910000000002,557.1250194440008,202,0,0.5111256165243625,-0.4314888592836951,0.5111256165243625,0.4314888592836951,1.4864864864864864,2.3513513513513513,3.054054054054054,2.3096925096266707,2103.505463039489,50.36951453014406,44.226799172602284,18.859792334457737,28.15659127494817,22.006786621027572,10.298138996383155,5.781648006176574,7.349991289841397,3.6383741815259825,5.083105433177965,2.361813981844289,3.6612162052162502,-3.3700000000000006,1898372560221.4438,9.128432141872992,12.246478024609996,6.4995467158933256,258.103352601234,34.81457072795148,31.167495243477173,15.078769717594637,6.266078368536897,11.814359458703011,12.124670917490608,14.48898409899412,14.573052889090853,0.0,23.098670827325854,5.15571272675054,19.276888764660626,40.02925998886846,29.08810594390891,80.09692071829403,57.88094468612951,0.0,15.193701605086062,5.15571272675054,44.269589667893996,32.0595640215579,22.32018624764116,0.0,0.0,11.029530329014648,9.926095663911155,0.0,23.098670827325854,89.58836399260058,38.16865195115229,0.0,59.147809694820836,21.78197097954324,4.235526234984602,0.0,0.0,180.96999999999997,149.68350485370038,19.178148736287287,0.0,17.05650285366101,0.0,0.0,0.0,0.0,0.0,33.92473164663458,37.13373158306988,226.95645846213682,-0.5955270463854718,61.928523755946216,-3.268582545116664,-11.029717021892388,-7.28703384501892,-4.014059606054419,-11.86176765148479,-16.821188710364225,-7.423772458432933,0.5238095238095238,37,3,14,0,2,2,0,1,1,14,2,16,16,0,1,1,3,0.8270000000000015,132.2531,0,0,0,1,0,1,0,0,0,0,4,4,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,1,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +18004026,Cc1ccc(-c2nc3ccc(C)cn3c2CC(=O)N(C)C)cc1,0,13.509612772597308,-3.943150037792898,13.509612772597308,0.20467462679516202,0.7446971593088006,307.39699999999965,286.22900000000004,307.1684622920006,118,0,0.2275885771295577,-0.3484847598327436,0.3484847598327436,0.2275885771295577,1.2173913043478262,1.9565217391304348,2.652173913043478,2.70942930926202,1631.0819631791662,34.444711088220565,32.24988907696374,11.249889076963738,19.500682875346946,16.492978527231763,5.992978527231764,4.220400148658336,4.220400148658336,2.6905572162878886,2.6905572162878886,1.7490144823832878,1.7490144823832878,-2.62,558436766.0547397,4.067547467234455,5.875869234240426,2.97220473110977,165.44169466187068,9.300604337112272,5.647177220767728,0.0,5.907179729351506,0.0,0.0,4.794537184071822,4.9839785209472085,0.0,0.0,35.77554503001347,25.30965443395165,44.878620289459356,27.356090784217837,33.58046686364644,11.554356950119233,0.0,14.28458285805948,0.0,20.076709135920737,13.951653800564491,59.248238435036974,0.0,11.257379486545457,0.0,0.0,0.0,0.0,34.14341638797548,11.167462085401201,13.703784234591359,45.6067606578171,42.42740745679453,0.0,16.904556707313183,0.0,37.61000000000001,120.98824753903739,4.794537184071822,0.0,4.400694606261793,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,28.785929679574615,167.17096986005785,0.0,16.59052000390249,0.0,-6.6522355340016315,-2.313674939111448,-6.8493307161146255,-5.225456401696484,-14.137458939702805,0.0,0.2631578947368421,23,0,4,0,0,0,1,2,3,3,0,4,7,0,0,0,3,3.2488400000000013,92.50000000000003,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +6758,C=C(C)[C@H]1Cc2c(ccc3c2O[C@@H]2COc4cc(OC)c(OC)cc4[C@@H]2C3=O)O1,0,14.548638445347269,-3.894057067271355,14.548638445347269,1.1363293745537202,0.7399961156347875,394.4229999999997,372.2470000000001,394.1416384240005,150,0,0.1775661445303485,-0.4928541654982912,0.4928541654982912,0.1775661445303485,1.3103448275862069,2.1724137931034484,2.9655172413793105,1.9008741198570331,1926.2303628190634,39.19578794377713,35.94948974278318,13.949489742783179,22.7105026292538,18.74536559755125,7.745365597551247,5.745365597551247,5.745365597551247,4.136043749344665,4.136043749344665,2.896566719598166,2.896566719598166,-3.15,17240138836.232285,5.937666652098025,6.439971855498316,2.584753265743277,199.43436334242168,23.684314769000245,35.967556796667985,17.28226861293275,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,6.531038962001867,30.55225277035483,31.766797929407982,47.46545099354881,58.63554018881697,5.783244946364939,0.0,0.0,0.0,31.27881075788811,20.634890160681465,52.9641727978153,0.0,28.747559166419524,23.684314769000245,0.0,28.747559166419524,0.0,38.57817116094638,6.372924901329379,0.0,64.38742969756647,36.27381832272431,0.0,0.0,0.0,63.22,139.40867782916933,6.165295740242042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,47.73338149477485,204.98050386089852,0.0,14.548638445347269,0.0,-5.3845567795744005,-12.167226838514857,-5.348641861428363,-11.129481207335736,-9.00892680323881,-6.990308816153688,0.34782608695652173,29,0,6,0,3,3,2,0,2,6,0,6,6,0,0,0,5,3.7033000000000023,105.90450000000007,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4917,CN1CCN(CCCN2c3ccccc3Sc3ccc(Cl)cc32)CC1,0,9.058969198790628,-4.563258928571431,9.058969198790628,0.04430224867724841,0.775124662295156,373.95299999999963,349.7610000000001,373.13794644800066,132,0,0.06609960132717436,-0.33955084718263834,0.33955084718263834,0.06609960132717436,1.12,1.92,2.76,2.1194217285776844,1642.4569336635943,38.367360819030935,36.12785354997296,13.700279076919145,21.622691343275093,18.609691706718287,7.804152760655241,4.448557178209244,5.847142377378129,2.897470687008562,4.085523690275957,1.894115064843482,2.9170976102805906,-1.1999999999999997,5147792180.952504,4.794233988467978,7.583404719912659,3.82238204476409,192.8215412005599,14.699729192551434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.447662254950224,50.057705024244044,70.60079414125036,20.970082442558663,32.89820534808528,34.73759738899076,0.0,9.799819461700956,0.0,16.16389185236493,50.856894737028384,47.319564267384386,0.0,0.0,4.899909730850478,11.374772549367124,0.0,23.36282483962363,55.756804467878865,0.0,0.0,39.27113024941467,52.08789790467861,5.022633313741326,0.0,0.0,9.72,130.61503313699535,0.0,0.0,4.899909730850478,11.761884949391115,0.0,0.0,0.0,0.0,0.0,44.49914523831782,201.57285401475994,6.457850993933643,-2.8424013652021634,-0.8121727959698315,-1.8325178297265232,0.0,-6.442817767500711,-4.48337407879819,-29.67297672705169,0.0,0.4,25,0,3,0,2,2,2,0,2,4,0,5,5,0,1,1,4,4.580200000000004,107.57700000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2337,CCOC(=O)c1ccc(N)cc1,0,11.907989890400604,-3.399903746220713,11.907989890400604,0.1690824593726381,0.5326180793674542,165.19200000000006,154.10399999999996,165.078978592,64,0,0.3376097259808516,-0.46239131153211466,0.46239131153211466,0.3376097259808516,1.8333333333333333,2.5833333333333335,3.1666666666666665,3.4321808787484573,610.3599378490327,18.325908934703556,16.763710176427686,5.763710176427685,10.219920232051185,8.23040642444569,2.835979233445774,1.7151884215471755,1.7151884215471755,0.9596562833895536,0.9596562833895536,0.5053436598487682,0.5053436598487682,-1.5099999999999998,39368.71750554159,2.045667672325219,3.7588733548338538,1.985036469518851,86.71197625557275,10.456579929526322,0.0,2.8236841566564013,0.0,0.0,5.969305287951849,0.0,4.794537184071822,0.0,0.0,0.0,31.02156694794886,9.799661943194222,20.346988071634602,24.691911300060244,11.656691562635412,0.0,0.0,0.0,6.851892117295679,12.278702218642561,29.733126322350174,0.0,0.0,5.719716975726273,5.687386274683562,0.0,0.0,12.528290530868137,4.736862953800049,0.0,29.546707798596472,24.16967483065318,2.8236841566564013,0.0,0.0,52.32,54.80069524519755,4.794537184071822,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,4.736862953800049,15.160511162188381,83.7920388479466,0.0,11.907989890400604,0.0,-1.8828726536911056,-1.6979757180650046,-3.7328949357520775,0.0,-6.7196187641723375,0.0,0.2222222222222222,12,2,3,0,0,0,1,0,1,3,1,3,4,0,0,0,1,1.4455,46.81090000000002,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54682951,CN1C(C(=O)Nc2nccs2)=C(O)c2ccccc2S1(=O)=O,0,13.243269111657007,-5.3719665165448856,13.243269111657007,0.11106812169312219,0.8677133347559903,337.38199999999983,326.29400000000004,337.0190978320003,114,0,0.29325192951151136,-0.5048615466844389,0.5048615466844389,0.29325192951151136,1.5909090909090908,2.409090909090909,3.090909090909091,2.452784141683486,1302.5619938371428,25.20422411221441,21.291130529283052,11.924123691138504,15.066509124140643,10.733630917791743,7.634728941556286,3.7785601048524837,6.275486108776746,2.5359060026781783,4.57978804556815,1.6100333897352463,3.178076428004971,-2.39,9070300.344204795,6.386585671725946,5.108907741732905,2.1433952203281574,145.73847283946972,5.1088081911072125,0.0,17.99960474287954,0.0,17.361670539991724,0.0,14.40956652865643,13.401775505276145,0.0,11.336785877934737,12.08483741532659,12.08483741532659,28.18056368097226,13.120034812539094,32.06981144336815,38.157980112189335,1.4311996572326342,9.289194512243443,0.0,4.895483475517775,12.285640253570621,46.95917525588837,0.0,0.0,5.309813353288376,5.131558479839333,0.0,11.336785877934737,35.69880631731334,14.817828337479405,0.0,17.900278497228975,46.29120723970915,1.4118420783282006,7.19036452888881,0.0,99.6,89.95689585723922,13.212334168400758,0.0,5.309813353288376,11.336785877934737,0.0,0.0,0.0,0.0,10.092786712054421,15.179868741092815,110.65107556542281,0.3727849624188,15.355371768299705,3.1527738466573227,-2.3744984042999913,-2.8724896069538923,-4.136673662820396,-0.6162972879693662,-3.6600806642101302,-5.3719665165448856,0.07692307692307693,22,2,7,0,1,1,1,1,2,6,2,9,4,0,0,0,3,1.6424999999999998,81.68330000000003,0,1,1,0,0,1,0,0,0,0,1,1,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0 +441074,C=C[C@H]1CN2CC[C@H]1C[C@@H]2[C@@H](O)c1ccnc2ccc(OC)cc12,0,9.413127125850341,-4.4495639910451,9.413127125850341,0.7553975340136048,0.8776016184783941,324.4239999999996,300.232,324.1837780080007,126,0,0.21102301563596135,-0.4967429396078586,0.4967429396078586,0.21102301563596135,1.7916666666666667,2.7916666666666665,3.6666666666666665,2.333505302166257,1755.594917430569,37.54952357383516,35.71092377192764,11.710923771927643,21.28446959358909,18.388654714909553,6.4804064244456905,4.615147750704714,4.615147750704714,3.2708947893645384,3.2708947893645384,2.187763799719591,2.187763799719591,-1.9099999999999997,3768152280.4334393,4.077207469279656,6.187607918654215,2.5024063339993896,176.11938846535955,9.84567114490726,5.749511833283905,0.0,1.4311996572326342,0.0,0.0,9.883888251797686,0.0,0.0,6.531038962001867,6.052071746035566,60.76375118005104,39.15221569581758,35.08377387749148,41.37311793682233,10.902924932081056,1.4311996572326342,9.883888251797686,11.787915370726157,24.84376029795839,20.03167182751448,48.48913224120237,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,42.47346039600165,0.0,11.787915370726157,55.91676611322085,42.925680749505375,0.0,10.902924932081056,0.0,45.59,126.70482623361681,2.7415171123404405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.82964966585447,30.21712933680725,206.61099735469062,0.0,2.8378867977210778,3.3176654095280087,-2.5033574993996175,-9.77843138251373,-11.256080456216345,-14.108871377898934,-10.127330398236305,-3.409145114341481,0.45,24,1,4,0,3,3,1,1,2,4,1,4,6,0,3,3,5,3.1732000000000014,95.02680000000007,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +49800073,N#C[C@@H]1C[C@@H]2C[C@@H]2N1C(=O)[C@@H](N)C12CC3CC(CC(O)(C3)C1)C2,0,14.765310374149657,-5.062916666666669,14.765310374149657,0.8370039682539683,0.7998067802808753,315.4169999999995,290.217,315.19467704000067,124,0,0.24089418726215053,-0.38984983005326745,0.38984983005326745,0.24089418726215053,1.4782608695652173,2.260869565217391,2.9130434782608696,2.06072164497542,1549.121194475002,38.146264369941974,36.1581373674276,11.1581373674276,20.841405022841105,18.82895776067754,6.526282279213758,5.354372771006276,5.354372771006276,3.8156870739206235,3.8156870739206235,2.847467766019862,2.847467766019862,-1.12,3217207956.0105357,3.6848015307938753,4.285781409313042,1.8823891381621114,171.68921713264947,15.728434897683965,8.841576625006047,0.0,7.33837938658414,0.0,0.0,4.794537184071822,0.0,5.261891554738487,0.0,0.0,74.08026273612104,32.06230503558382,21.800440260636268,42.88371776758029,5.907179729351506,6.693091211971121,4.899909730850478,28.816580501212286,74.63812742666765,0.0,0.0,0.0,6.069221312792274,5.719716975726273,0.0,0.0,0.0,41.00182552457445,4.794537184071822,34.42797639301678,81.14008744637985,0.0,2.8236841566564013,0.0,0.0,90.35000000000001,114.26179738808196,11.427187294980527,0.0,0.0,0.0,6.069221312792274,0.0,0.0,0.0,5.1088081911072125,33.04081349346365,216.15495744167345,0.0,13.928306405895688,14.190920770722583,-11.01118650006299,-15.786095836482746,-12.029531486205606,-35.78070412887377,0.0,0.0,0.8888888888888888,23,3,5,5,1,6,0,0,0,4,2,5,4,5,1,6,6,1.157979999999999,82.79920000000004,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +444795,CC1=C(/C=C/C(C)=C/C=C/C(C)=C/C(=O)O)C(C)(C)CCC1,0,11.733719228274325,-4.577992385879117,11.733719228274325,1.6915554136152984,0.5295731957656133,300.44199999999944,272.21799999999996,300.2089301360008,120,0,0.32806880570998265,-0.47806674460562104,0.47806674460562104,0.32806880570998265,1.4090909090909092,2.272727272727273,2.9545454545454546,5.000603827806987,1530.651025621338,40.55795974227243,38.816496580927726,10.816496580927726,21.683515962285192,19.316496580927726,5.408248290463863,3.662457478565265,3.662457478565265,1.9770620726159658,1.9770620726159658,1.1020620726159658,1.1020620726159658,-1.8299999999999996,2207360415.0210614,3.194455417028018,7.975506503757992,5.8849787267796065,173.60090500198027,5.1088081911072125,0.0,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,0.0,55.11035202490772,56.23565058541048,34.83800142561019,8.224551337021321,46.913826391775004,5.969305287951849,1.4311996572326342,0.0,5.41499046939678,53.37823529046653,0.0,58.60484859649046,0.0,0.0,0.0,0.0,0.0,0.0,11.078113479059063,4.794537184071822,5.41499046939678,90.38871630706241,58.60484859649046,0.0,1.4311996572326342,0.0,37.3,123.36737964430564,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,38.441680673828586,224.8543234458424,0.0,11.733719228274325,3.4836657968033538,-12.589863236749686,-1.9951314409032916,-11.558530141783002,-13.135666658803158,-20.70918365934771,0.0,0.45,22,1,2,1,0,1,0,0,0,2,1,2,10,0,0,0,1,5.602600000000005,93.76180000000005,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +60490,CC(c1cc2ccccc2s1)N(O)C(N)=O,0,11.980476137986056,-3.450033304988664,11.980476137986056,0.22420587679516202,0.621567647628534,236.29600000000008,224.19999999999996,236.061948624,84,0,0.3386207193868,-0.3496913640875582,0.3496913640875582,0.3386207193868,1.875,2.75,3.5,2.955205099401108,944.2646063601738,21.76506652345898,19.619172062391506,8.435668643319232,12.711337408618103,9.768442496244568,4.782263595708514,2.6858689313749085,3.7064896575345663,1.6876512395907686,2.697496986051988,1.0021117195527829,1.8451011204070673,-1.5899999999999999,756058.2522144201,3.4490815698646133,4.112336342245376,1.8678974160414947,113.920205508385,5.719716975726273,0.0,2.8236841566564013,1.4311996572326342,0.0,6.031114512338072,5.209533821043797,4.794537184071822,5.063217724965349,11.336785877934737,18.127256122989884,24.322953747087066,13.689342778681059,14.242443805370964,26.59578182453663,27.454044521206704,0.0,5.063217724965349,5.719716975726273,12.869784585645323,0.0,35.08924073201777,0.0,0.0,5.719716975726273,4.794537184071822,0.0,11.336785877934737,16.303866058347218,0.0,0.0,30.0837587848786,30.212093538316473,4.254883813889036,10.086144130933896,0.0,66.56,59.70985680572744,4.794537184071822,0.0,15.149361855899244,11.336785877934737,0.0,0.0,0.0,0.0,5.209533821043797,16.591710819421014,91.49258317061391,0.35016959561602357,11.241540952800872,3.1857851473922905,-0.6149210023515579,0.0,-8.37179122574956,0.0,-3.450033304988664,0.0,0.18181818181818182,16,3,4,0,0,0,1,1,2,3,2,5,4,0,0,0,2,2.7321999999999997,63.448900000000016,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1 +9556529,Clc1ccc(CO/N=C(\Cn2ccnc2)c2ccc(Cl)cc2Cl)c(Cl)c1,0,8.633314877051049,-3.260439084327148,8.633314877051049,0.23582732762356384,0.35014840715594203,429.1339999999998,416.03000000000003,426.98127275600035,134,0,0.14328082951325222,-0.39057332413050716,0.39057332413050716,0.14328082951325222,1.1153846153846154,1.8461538461538463,2.576923076923077,2.373378814663756,1485.5984814228975,29.936274919783287,25.261746969000647,15.285462753074466,17.783210498567776,12.984268063585315,7.996125955622226,4.271795794344382,5.7836536863812915,2.579305445212514,3.5242166277355804,1.5280878883635314,2.319845756440145,-1.7199999999999993,128712435.4715085,8.528480801058567,8.77968212445405,4.920911985416225,188.71978538792413,9.404688231527988,13.64142880185721,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,57.6018909953439,30.212093538316473,38.54059334624749,34.27196738606614,22.65744981394949,52.11544456370077,0.0,9.551078168738563,5.15571272675054,13.055844927232233,0.0,86.1211106199348,0.0,0.0,0.0,0.0,0.0,46.40375956093006,15.262763171509263,17.89343351096887,0.0,28.946764213606848,60.05938710832606,20.090533254965305,0.0,0.0,39.41,104.88864054993775,0.0,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,10.139691247697748,69.06120937487958,105.7975939919874,23.862172463008893,8.306409095102985,0.9155466057341668,-2.81839266467904,0.0,-4.745444096953985,-2.6938035997027994,-6.512970683386526,0.0,0.1111111111111111,26,0,4,0,0,0,2,1,3,4,0,8,6,0,0,0,3,6.117800000000003,106.477,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1549120,CC(/C=C1\SC(=S)N(CC(=O)O)C1=O)=C\c1ccccc1,1,12.806056461943003,-3.3064784895439665,12.806056461943003,0.08237886318694443,0.6829097001636526,319.4069999999998,306.30300000000005,319.03368527600037,108,0,0.32320746684558144,-0.47991304543699065,0.47991304543699065,0.32320746684558144,1.6666666666666667,2.4285714285714284,3.0952380952380953,2.8566194158810503,1146.0548921132136,26.49711733102786,22.988455047819272,11.621448209674725,15.404713081592167,11.553813555105389,6.370310136033115,3.3619173754899925,5.006104849522564,1.9609014403403777,3.231476882360106,1.2100316427860631,2.3147393620064056,-1.9199999999999995,9840324.624338185,5.699597940721919,6.689288885642163,4.025050585201351,150.04113358653453,5.1088081911072125,10.817393769874915,0.0,0.0,7.33837938658414,5.969305287951849,14.48898409899412,0.0,0.0,0.0,60.24392367678985,24.040519885097506,4.1122756685106605,17.241963519422026,31.146985233293492,46.2288492413357,1.4311996572326342,4.899909730850478,0.0,6.851892117295679,6.496859684315945,52.30585782000835,0.0,0.0,0.0,0.0,0.0,23.97975839243781,32.70259670913596,9.589074368143644,0.0,28.86444628303531,46.742406328311354,0.0,7.4832714032682,0.0,57.61000000000001,87.90370047051789,9.589074368143644,0.0,16.66179468024159,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,30.098175774321966,100.23428124820241,5.110389724045929,23.700609566448374,3.5644758824192584,-1.999419233238902,-3.2412136220380585,-6.623652306290153,0.0,-6.5788045928822,0.0,0.13333333333333333,21,1,4,0,1,1,1,0,1,5,1,6,5,0,1,1,2,2.918700000000001,87.71380000000002,1,0,0,0,0,0,0,0,1,1,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3324,CC(=O)OCC(CCn1cnc2cnc(N)nc21)COC(C)=O,0,12.040705289138241,-4.793760274943314,12.040705289138241,0.1789061318972034,0.733115342152729,321.3369999999997,302.18500000000006,321.1437040880005,124,0,0.30213518101736747,-0.46544268147210527,0.46544268147210527,0.30213518101736747,1.4782608695652173,2.217391304347826,2.869565217391304,2.9913156803566587,1343.5925453041834,33.23168632863937,29.869061139355246,10.869061139355244,18.469886790486314,14.855240039891296,5.46081284889138,3.449804034094268,3.449804034094268,1.9374020170471344,1.9374020170471344,1.1602638320256515,1.1602638320256515,-2.71,174741509.6201833,4.651060272813613,7.521784648190865,4.904415360517963,159.17620065502982,19.76054253111773,6.887459273786482,8.470861377424129,5.948339280986494,0.0,11.938610575903699,9.589074368143644,9.967957041894417,4.9839785209472085,0.0,0.0,6.372924901329379,41.17294572214282,32.44803019146467,45.189379887293896,29.05082779527418,0.0,19.51903521063298,5.893957685363079,26.573568820236684,18.83768746155885,12.476266924780987,0.0,0.0,5.719716975726273,5.948339280986494,0.0,0.0,44.57561627236925,25.559659960059683,5.893957685363079,43.3796045908145,12.476266924780987,2.8236841566564013,11.16387793838399,0.0,122.22,87.11259171148751,9.589074368143644,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,24.42566147044172,26.126579611550135,155.67146192967033,0.0,34.46331807306986,0.0,-2.053337114298356,-10.728167365067396,0.0,-6.873178330841572,-21.06343052586626,0.0,0.5,23,2,9,0,0,0,0,2,2,9,1,9,10,0,0,0,2,0.5409999999999998,81.10840000000002,0,0,0,1,0,4,0,0,0,0,2,2,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25195495,Cc1nc(C(=O)N2CCCC[C@H]2CNC(=O)c2cccc3occc23)c(-c2ccc(F)cc2)s1,0,14.794346084878189,-4.798693966784247,14.794346084878189,0.09887937382808953,0.41600969043164665,477.56099999999975,453.3690000000002,477.1522408480006,174,0,0.2738030712746089,-0.4643258566065591,0.4643258566065591,0.2738030712746089,1.3823529411764706,2.235294117647059,3.0588235294117645,1.8834778048110679,2416.837741585632,44.74567599654179,40.35259842136455,17.169095002292277,26.02641044729424,20.926188287646013,9.795471273073781,6.173711825666708,7.17278259242949,4.136026513141275,5.022260227589649,2.7000418043894308,3.464074096882087,-3.5199999999999982,686134444305.8583,7.745602280106519,9.383584228490484,4.329538948749035,233.7358685479263,14.6268740211922,18.464927533706817,1.4118420783282006,0.0,11.814359458703011,0.0,9.589074368143644,9.374393568622029,0.0,11.336785877934737,18.127256122989884,61.74621185129729,39.476180169318766,36.76578113496423,51.33592922311511,34.12038969274479,0.0,15.193701605086062,0.0,31.988559289633464,12.99371936863189,76.66078832059122,0.0,10.440598685398296,5.309813353288376,4.39041504767482,0.0,11.336785877934737,40.70985954748223,0.0,12.669112958341575,76.50029904744507,58.99571523320044,1.4118420783282006,21.409843041505333,0.0,75.44,165.07699256320382,15.350247971988683,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,35.98568125112639,220.33336703810855,-0.09887937382808953,30.403645372795882,-3.06365525787054,-4.850527697259368,-6.341103915321446,-14.612095431899387,-14.471466978117888,-12.54928375660774,0.0,0.2692307692307692,34,1,6,0,1,1,2,2,4,5,1,8,6,0,1,1,5,5.428520000000004,129.4677,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,2,0,0,1,0,0,0,2,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +17747460,O=c1c2ccccc2c(Cc2ccc(Cl)cc2)nn1C[C@H]1CCCN1CCCCc1ccc(OCCCN2CCCCCC2)cc1,0,14.806566268885263,-5.370263283131541,14.806566268885263,0.9457801634319278,0.13183815062721033,641.3000000000021,591.9080000000002,640.3544044880014,244,0,0.2741955264344912,-0.49355009197027283,0.49355009197027283,0.2741955264344912,0.8695652173913043,1.608695652173913,2.391304347826087,1.5942553941470268,3833.4828766263645,75.1932697537345,71.48331543593679,23.23924438195524,41.547953376587756,36.76381585195021,12.641780324959443,7.978040872251777,8.356005345261003,5.066955368471172,5.255937604975784,3.1716996707354226,3.26619078898773,-3.189999999999999,4.169841939094312e+26,7.984819858538511,16.577892312236635,8.99201087622275,347.70877035179353,9.636772684650527,5.749511833283905,0.0,0.0,5.559266895052007,0.0,9.694446914922299,4.681802935145185,5.098681808301038,0.0,66.64372064653433,118.30983446960931,74.53156693581839,46.06813403526904,71.90403220614088,22.373388319162107,0.0,19.58030420514718,0.0,82.61692606728876,39.04328366449601,104.70629286306715,0.0,5.749511833283905,10.296129848852056,0.0,5.749511833283905,11.600939890232516,64.64148033799283,19.242709486974704,0.0,141.34432434254745,77.30356167603136,5.022633313741326,10.772448428929591,0.0,50.6,252.57554806983987,14.389847077263362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.098681808301038,73.90966220318184,429.63334335730696,5.913541503259534,12.044908267443427,-0.4551482609304198,-7.720204000646832,-2.028384787312911,-24.433859818328642,-52.368730447487195,-34.891021368859526,0.0,0.48717948717948717,46,0,6,0,2,2,3,1,4,6,0,7,14,0,2,2,6,7.772900000000009,189.25599999999937,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +64715,CC[C@H](C)C(=O)O[C@H]1CCC=C2C=C[C@H](C)[C@H](CC[C@@H]3C[C@@H](O)CC(=O)O3)[C@H]21,0,14.099182210775094,-5.648687641723358,14.099182210775094,2.199835553080277,0.695389998340901,390.51999999999947,356.2480000000001,390.2406241880009,156,0,0.3084306314533961,-0.46218776669279105,0.46218776669279105,0.3084306314533961,1.6785714285714286,2.607142857142857,3.392857142857143,2.850210612625918,1979.071162381879,50.085421958697395,47.54124145231931,13.541241452319316,26.66439055281629,24.087117307087386,7.178869016623521,4.8914115380582555,4.8914115380582555,3.115423023185008,3.115423023185008,1.9769557690291275,1.9769557690291275,-1.62,518250287481.28046,4.366840061549144,9.251803306920067,4.8572642018462595,215.57131369472881,14.58253409870731,12.160036053899976,0.0,1.4311996572326342,0.0,11.938610575903699,9.589074368143644,0.0,0.0,0.0,38.71189158999373,49.22564440744231,49.27736360328843,26.571451950663764,69.40664082046827,11.938610575903699,1.4311996572326342,0.0,23.575830741452314,83.40620474204265,0.0,23.729319768175966,0.0,0.0,0.0,0.0,0.0,0.0,36.71867250509351,19.06280027574374,23.575830741452314,110.40118301480982,23.729319768175966,0.0,0.0,0.0,72.83,142.64996582757465,13.701350036654302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.58253409870731,42.55395634233925,294.88453478112353,0.0,27.070999646163784,3.775341541511136,-2.3482742556899296,-27.255248608907685,-6.866812117689643,-49.63272217865677,-13.877818807854458,0.0,0.7391304347826086,28,1,5,2,1,3,0,0,0,5,1,5,10,0,1,1,3,3.949500000000003,106.29080000000005,0,1,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5284439,C1CCC(C(CC2CCCCN2)C2CCCCC2)CC1,1,9.722572278911564,-6.1468112244898,9.722572278911564,1.4678654100529092,0.7354070672581983,277.4959999999997,242.21599999999995,277.2769501200006,116,0,0.12246899955392686,-0.3139720216563789,0.3139720216563789,0.12246899955392686,0.95,1.5,2.1,3.0114593140744392,1465.4046002778716,45.07735026918962,44.94721359549996,9.947213595499958,23.154700538379252,22.894427190999917,5.447213595499958,3.4472135954999583,3.4472135954999583,2.2104101966249687,2.2104101966249687,1.407807647468726,1.407807647468726,-0.04,18743672041.192,2.2115524397172077,7.8230600428570565,3.9950172791174468,175.07260194810053,5.309813353288376,1.4118420783282006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.10217391462317,43.29750744439332,52.623683378137166,0.0,48.01763298811571,0.0,0.0,5.309813353288376,17.681873056089238,95.23884108696096,6.496859684315945,0.0,0.0,0.0,5.309813353288376,0.0,0.0,0.0,12.51475215266559,0.0,17.681873056089238,135.82673952839866,0.0,1.4118420783282006,0.0,0.0,12.03,124.72738718065453,6.853792780851101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.16384020726459,300.2631091488479,0.0,0.0,-1.4678654100529092,0.0,-17.74080357142858,-5.410161564625855,-70.28230534121364,-4.611973261526836,0.0,1.0,20,1,1,2,1,3,0,0,0,1,1,1,4,2,1,3,3,5.295400000000005,86.89870000000008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +77999,CN(CCOc1ccc(CC2SC(=O)NC2=O)cc1)c1ccccn1,0,12.395462048986744,-3.989477099705052,12.395462048986744,0.2669253056562184,0.820854752782777,357.4349999999997,338.2830000000001,357.11471246800056,130,0,0.2859456866612067,-0.4917535636288242,0.4917535636288242,0.2859456866612067,1.44,2.28,3.0,2.198295449877386,1537.8297670882112,34.281574381404035,30.974633948355326,12.791130529283054,19.67898677584047,15.737206051141401,7.106489036569169,4.016725181763538,4.978338469961052,2.3938926326702044,3.1406067959373503,1.3968500603649505,1.9860722476664787,-2.5399999999999996,729782453.8498623,5.476331672924351,8.023966431445743,4.727774936477984,176.87880039795232,9.636772684650527,18.126359854035222,1.4118420783282006,5.907179729351506,5.239211713172287,0.0,14.898887721432018,4.9839785209472085,0.0,0.0,29.889141072381,36.10605122367956,20.002514891948106,29.54271058371266,40.411433411335864,28.726139169749935,0.0,10.293791874235584,0.0,11.598914570513239,24.931581558364957,54.033277656154816,0.0,5.749511833283905,14.946586037938904,10.61239996190685,5.749511833283905,11.761884949391115,41.388031460169344,11.167462085401201,0.0,30.23710550276095,48.46982616445782,1.4118420783282006,0.0,0.0,71.53,113.27753983867576,9.589074368143644,0.0,17.07169830267949,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,30.822359043192204,157.68733516547633,-0.2669253056562184,27.152073303310132,-4.871879315033386,-1.2676188775452706,-4.3518808276316046,-8.60354436718459,-4.550865426938105,-11.676694348797238,0.0,0.2777777777777778,25,1,6,0,1,1,1,1,2,6,1,7,8,0,1,1,3,2.490900000000001,98.06570000000002,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +24946920,COCCOc1cc(Cn2c(C(=O)O)c(-c3ccc(C(C)(C)C)cc3)c3ccccc32)cc(OCCOC)c1,1,14.135433408531426,-4.379939532344164,14.135433408531426,0.3155570284243181,0.21312486977752335,531.6490000000008,494.3530000000004,531.262087904001,206,0,0.35271186550017114,-0.49104089700042863,0.49104089700042863,0.35271186550017114,0.9487179487179487,1.6153846153846154,2.230769230769231,2.4576676814878193,2841.316975212741,59.73723982810451,55.89670333828314,18.89670333828314,33.59740063019773,28.370310136033115,9.962061845569252,6.9066295409567715,6.9066295409567715,4.464383825000032,4.464383825000032,3.049160277355955,3.049160277355955,-3.8099999999999987,471279380446435.1,7.276077207502045,12.364962895643146,6.613594445173841,281.50620887833315,28.623359654098763,30.31092214724885,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,0.0,62.8526073055301,40.23260106747765,55.418386739054476,50.128451502428554,78.19810521250717,16.872230220032904,1.4311996572326342,4.567099647791355,0.0,32.467526505599764,40.31184588943033,83.2874367625387,0.0,22.6259266499618,9.473725907600098,0.0,11.49902366656781,0.0,55.957059016280745,21.385576061312822,0.0,91.51835253632919,66.46660578429623,0.0,23.461027572707682,0.0,79.15,195.56496602756357,7.536054296412263,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,14.58253409870731,57.51071647462027,324.1756529561298,0.0,14.135433408531426,2.7910429766848512,-14.272571202163308,-6.183563098786782,-18.46700630448388,0.0,-34.2893307648284,-7.639657971083625,0.34375,39,1,7,0,0,0,3,1,4,7,1,7,14,0,0,0,4,6.4027000000000065,153.3192999999997,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6915744,CC[C@H]1OC(=O)[C@H](C)[C@@H](O[C@H]2C[C@@](C)(OC)[C@@H](O)[C@H](C)O2)[C@H](C)[C@@H](O[C@@H]2O[C@H](C)C[C@H](N(C)C)[C@H]2O)[C@](C)(O)C[C@@H](C)/C(=N\OCOCCOC)[C@H](C)[C@@H](O)[C@]1(C)O,0,16.974718564063174,-8.415287751119726,16.974718564063174,2.0886938053711903,0.07781066233799223,837.058000000003,760.45,836.5245697320022,340,0,0.31118842024956994,-0.458936591181719,0.458936591181719,0.31118842024956994,1.0,1.9310344827586208,2.586206896551724,4.072904420905729,4273.03335052438,108.83865252536708,103.51815154795787,27.518151547957864,57.3360527660777,51.3130981694887,13.771856717169396,9.858076288547903,9.858076288547903,6.106399310107388,6.106399310107388,3.5700184126736447,3.5700184126736447,-1.5800000000000005,1.5633498044679756e+46,9.590435803136739,21.476425115493377,12.072216598749993,452.29434402862506,73.17644290052358,26.58262200417409,12.532156737073795,13.901043870666367,0.0,5.969305287951849,4.794537184071822,0.0,0.0,0.0,32.56328119593326,74.1817812083267,111.31576459587411,93.74097605408798,170.39492784183025,11.680990290722551,7.155998286163171,4.899909730850478,28.731543468202858,178.0039666322487,47.89057478866543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,181.16485990591215,47.527029398208846,23.575830741452314,191.33447826635964,5.15571272675054,0.0,0.0,0.0,216.88999999999996,266.05127218393955,38.38123957276617,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,63.95851998882354,75.57234210908277,718.3183060992171,0.0,19.12107990546392,22.40519401605508,-26.28952141049823,-35.892770946866385,-6.47059899710911,-97.79159749693216,-90.6372276485939,-9.679530187403314,0.9512195121951219,58,5,17,0,3,3,0,0,0,17,5,17,32,0,3,3,3,2.2096000000000076,212.46599999999918,0,5,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6433334,CN(C)CC[C@@H](c1ccc(Br)cc1)c1ccccn1,0,9.172052626606199,-4.222498464663646,9.172052626606199,0.4474959582598468,0.8300542359520315,319.24599999999964,300.094,318.07316070800056,100,0,0.08399085918377756,-0.30936473198177533,0.30936473198177533,0.08399085918377756,1.368421052631579,2.1578947368421053,2.8947368421052633,3.2769228039131235,1226.3464151119624,30.13531001146206,28.27239166400914,10.858388203123848,16.789358009941758,14.30701622525451,5.600014494811861,3.0834094275045296,3.876407697061882,1.8410081126272546,2.23750724740593,1.1227583049073637,1.3210078722967016,-1.1900000000000002,30183290.497422542,3.5203511963973586,6.826182966360543,4.1490997732367605,149.85467665752367,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,34.057200020939234,56.554564708559994,37.31184452473114,10.96606844936176,26.044412567234176,15.929943897949348,0.0,9.883888251797686,0.0,12.266882586692457,20.448513484880436,64.19992516683568,0.0,0.0,0.0,0.0,0.0,15.929943897949348,30.332401736678126,0.0,0.0,49.56867464047213,52.94254568029024,0.0,0.0,0.0,16.130000000000003,101.81523096925908,1.3707585561702202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.913922418896558,24.673654011063956,152.89521070634282,2.812032236358986,2.6638023195389273,0.0,-2.616045918367346,-3.7895833333333346,-7.3804943914294086,-5.308668876501219,-11.942919409276064,0.0,0.3125,19,0,2,0,0,0,1,1,2,2,0,3,7,0,0,0,2,3.9277000000000024,83.39300000000004,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +21233,COc1ccc2cc1Oc1cc3c(cc1OC)CC[N+](C)(C)[C@H]3Cc1ccc(cc1)Oc1c(OC)c(OC)cc3c1[C@@H](C2)[N+](C)(C)CC3,0,10.672405984076867,-5.578866623321406,10.672405984076867,2.0701054171422184,0.21366035293199462,652.832000000002,604.4480000000002,652.3501400961813,252,0,0.2040061443249828,-0.492844925766454,0.492844925766454,0.2040061443249828,0.6875,1.3333333333333333,2.1041666666666665,2.0758838874149883,3843.886150733782,75.0990471476703,71.34391693378309,23.343916933783095,42.185753385549134,36.73834412478301,12.738344124783008,9.50782677730106,9.50782677730106,6.554135050204961,6.554135050204961,4.484002332808358,4.484002332808358,-4.3999999999999995,5.843078925284126e+26,8.30627015587208,12.242576256775429,5.605768306361161,351.48373180614215,37.38723943818954,20.526813882323637,34.49707099970343,5.749511833283905,0.0,0.0,0.0,0.0,0.0,0.0,18.127256122989884,64.55073692043105,42.0212195463763,126.70111343145643,103.18365013436005,0.0,0.0,0.0,0.0,37.52748454201681,69.04883680529122,93.80489602681493,0.0,45.99609466627124,28.421177722800294,0.0,45.99609466627124,0.0,78.01489852068046,25.491699605317518,0.0,111.21290458305172,60.42418707663295,0.0,0.0,0.0,55.38000000000001,255.34337375578357,32.89820534808528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.31938307088564,457.57322706121914,0.0,0.0,0.0,-14.20487073951892,-17.827823996952812,-33.34095040646327,-20.18933628126013,-31.12755734717154,-16.88268828985269,0.4,48,0,8,0,4,4,4,0,4,6,0,8,12,0,0,0,8,7.451600000000009,186.37279999999936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0 +2160,CN(C)CCC=C1c2ccccc2CCc2ccccc21,0,8.847836829176115,-4.199864181783827,8.847836829176115,0.8334822740824732,0.8136783893547586,277.41099999999955,254.22699999999992,277.1830497360006,108,0,0.06293426572889531,-0.30909168874709037,0.30909168874709037,0.06293426572889531,1.1428571428571428,1.7142857142857142,2.2857142857142856,2.821451388484995,1478.9174804489542,34.66025403784439,33.44721359549996,10.447213595499958,19.42820323027551,17.170820393249937,5.670820393249937,3.822213595499958,3.822213595499958,2.542705098312484,2.542705098312484,1.708852549156242,1.708852549156242,-1.8599999999999994,480907502.2639599,3.232599052033845,6.275955030244733,3.0846273208160424,159.78675522908338,4.899909730850478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.39142140734192,60.89733900140987,25.68747947069902,12.33682700553198,31.527446791915054,5.573104530069267,0.0,4.899909730850478,0.0,19.118774703988137,20.448513484880436,76.6452273741299,0.0,0.0,0.0,0.0,0.0,0.0,25.348423215730918,12.745849802658759,0.0,60.15417766003248,54.39142140734192,0.0,5.573104530069267,0.0,3.24,126.68552982391826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.527446791915054,189.3764106651358,0.0,-0.8334822740824732,0.0,-6.174261778785587,0.0,-11.256465726850376,-11.31737055933485,-11.961496992749248,0.0,0.3,21,0,1,1,0,1,2,0,2,1,0,1,5,0,0,0,3,4.168600000000003,90.54200000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +57004,NCCCC(N)(C(=O)O)C(F)F,0,13.709689625850341,-5.461857520786094,13.709689625850341,1.0119652305366587,0.5476125873309401,182.17000000000007,170.07399999999996,182.086684064,72,0,0.3291633825410195,-0.47971603680876446,0.47971603680876446,0.3291633825410195,2.0,2.75,3.1666666666666665,6.8770088799387725,482.6587689043805,19.939157588755425,17.466852717946097,5.466852717946096,10.36813182138298,8.180529031436743,2.483426358973048,1.6200818819984077,1.6200818819984077,0.8682122990019141,0.8682122990019141,0.29382996985267695,0.29382996985267695,-0.7500000000000002,35144.00605466858,2.3874826410806715,4.318944290550939,2.3842011834319528,85.70911244102462,16.548242142559758,7.018126869483023,5.538925252383345,0.0,7.83269604129351,5.969305287951849,0.0,13.575367279421462,0.0,0.0,0.0,19.242709486974704,8.224551337021321,0.0,33.92685367703301,5.969305287951849,1.4311996572326342,0.0,11.439433951452546,24.68627143910298,6.496859684315945,0.0,0.0,0.0,11.439433951452546,8.78083009534964,0.0,0.0,29.51539479981923,4.794537184071822,0.0,22.341159695850298,0.0,5.6473683133128025,1.4311996572326342,0.0,89.34,48.59187036282332,13.575367279421462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,16.673877863736976,111.94570294784582,0.0,11.5843679138322,3.151123866213152,-7.167099395313681,-2.7234386810279663,0.0,-14.393153817082393,-3.9808361678004545,0.0,0.8333333333333334,12,5,4,0,0,0,0,0,0,4,3,6,7,0,0,0,0,-0.22749999999999942,38.8466,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +443866,Cc1cccn2c(=O)c(-c3nnn[n-]3)cnc12,0,12.630394935752076,-2.86195633345931,12.630394935752076,0.30257936507936445,0.5723537588411478,227.20700000000005,220.15099999999998,227.06868242391,84,0,0.26567157204216413,-0.3301730336409401,0.3301730336409401,0.26567157204216413,1.588235294117647,2.5294117647058822,3.2941176470588234,2.577287073842113,1009.6794940965144,17.809036597829,15.091529863463613,8.091529863463613,11.141752975731727,7.869371729481785,4.369371729481785,3.002071991358362,3.002071991358362,2.023670291920867,2.023670291920867,1.2787104843137935,1.2787104843137935,-2.57,223167.81057951052,4.741041744198946,3.476732969753775,1.3977392757612235,104.97151604633513,5.098681808301038,5.647177220767728,0.0,0.0,5.559266895052008,0.0,19.50729869428952,4.9839785209472085,5.213385095654868,0.0,6.042418707663295,18.45776231665597,22.282470588140107,11.046485716377875,9.59530989319154,5.647177220767728,0.0,30.008806935120813,0.0,6.851892117295679,0.0,40.34788340777693,0.0,11.387855989696924,10.657948703353046,0.0,0.0,0.0,24.910125126819775,0.0,6.851892117295679,15.158761384888534,29.225165021027934,0.0,17.03503321046465,0.0,87.14,53.615867053465514,4.794537184071822,0.0,5.824404497999927,4.400694606261793,0.0,0.0,0.0,0.0,25.60811232885902,9.59530989319154,54.28142510707986,0.0,16.362732898715038,13.302922991727556,-2.670396825396825,-0.30257936507936445,-1.4927550495506843,-1.3693934240362804,-2.86195633345931,0.0,0.1,17,0,7,0,0,0,0,3,3,6,0,7,2,0,0,0,3,-0.1878800000000005,58.34,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0 +3869,CC(CCc1ccccc1)NCC(O)c1ccc(O)c(C(N)=O)c1,0,12.518978860241244,-4.669703640715547,12.518978860241244,0.7218742990010787,0.5968389616111595,328.4119999999995,304.21999999999997,328.1786926280007,128,0,0.2931306875776969,-0.5071215315892779,0.5071215315892779,0.2931306875776969,1.5416666666666667,2.4166666666666665,3.125,3.0985680047893402,1583.5163408800147,38.07446760021749,35.619172062391506,11.619172062391506,21.42558567875166,17.69133019637333,6.033192828945732,3.910614450372304,3.910614450372304,2.294172696677107,2.294172696677107,1.283627636184772,1.283627636184772,-2.37,3034252383.527032,4.233739616067628,8.47316831573415,5.077760022698596,175.74963702839074,21.24714671122907,7.161353911612106,2.8236841566564013,1.4311996572326342,7.33837938658414,0.0,4.794537184071822,0.0,0.0,0.0,36.25451224597977,42.809482318675016,26.222337714367786,23.98029652417896,45.29209236850504,5.907179729351506,2.8623993144652684,5.309813353288376,5.719716975726273,31.695652415254074,6.496859684315945,65.02970413639734,0.0,5.749511833283905,11.029530329014648,0.0,5.749511833283905,0.0,31.50194757869679,6.372924901329379,0.0,66.83413927197208,48.33934966130636,4.235526234984602,0.0,0.0,95.57999999999998,125.90843812761742,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,33.142338116684044,193.74197407402627,0.0,12.518978860241244,6.948621352506901,-5.390321163602275,-3.1597677069980814,-15.577115201386992,-13.000832476681378,-8.914871071438988,0.0,0.3157894736842105,24,5,5,0,0,0,2,0,2,4,4,5,11,0,0,0,2,2.1353999999999997,93.81220000000003,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +3291,CCC1(C)CC(=O)NC1=O,0,12.020902777777778,-3.9054629629629636,12.020902777777778,0.6290277777777784,0.5387218646888615,141.1700000000001,130.082,141.078978592,56,0,0.23249476213906983,-0.2959410688794002,0.2959410688794002,0.23249476213906983,2.1,2.9,3.3,3.903287169382137,491.7806622799572,17.23205080756888,15.763710176427685,4.763710176427685,8.976067743425169,7.80267548146378,2.355461885963821,1.7221085276919559,1.7221085276919559,1.0058214347744279,1.0058214347744279,0.5026135342286931,0.5026135342286931,-0.8600000000000001,11585.288630543808,1.4930559174162197,2.075496519949025,0.9162485890783432,75.30871107845981,0.0,0.0,1.4118420783282006,11.814359458703011,0.0,0.0,14.898887721432018,0.0,0.0,0.0,13.703784234591359,6.372924901329379,20.080510463031576,5.41499046939678,24.70850200817404,11.814359458703011,0.0,5.309813353288376,5.41499046939678,26.449634037250117,0.0,0.0,0.0,0.0,5.309813353288376,0.0,0.0,0.0,11.814359458703011,9.589074368143644,5.41499046939678,40.15721959895233,0.0,1.4118420783282006,0.0,0.0,46.17,48.988797318638284,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.1194276400304,80.51465750188966,0.0,23.636337868480723,-0.6290277777777784,-3.836226851851852,-3.9626157407407403,0.0,-7.618773148148148,-7.521018518518521,0.0,0.7142857142857143,10,1,3,0,1,1,0,0,0,2,1,3,3,0,1,1,1,0.4491999999999999,36.164699999999996,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2519,Cn1c(=O)c2c(ncn2C)n(C)c1=O,0,12.367749905517762,-3.359733560090705,12.367749905517762,0.08692129629629619,0.5384628262372215,194.1940000000001,184.114,194.08037556,74,0,0.3317034326359889,-0.3278634660994821,0.3317034326359889,0.3278634660994821,1.3571428571428572,2.142857142857143,2.7857142857142856,3.262455019816464,924.4226056352684,18.825908934703556,16.60535096292756,6.605350962927559,10.581239458947708,8.367923065713633,3.3679230657136325,2.477974334493392,2.477974334493392,1.6913562547692675,1.6913562547692675,1.0308649763789093,1.0308649763789093,-1.8499999999999999,73428.49578139953,2.818538827908887,2.5679479011227926,0.8757741627139433,93.07866201982743,4.567099647791355,1.3707585561702202,11.16387793838399,0.0,5.559266895052008,5.689743398203474,13.928736479654532,9.77851570501903,0.0,0.0,0.0,0.0,33.264307706378716,6.303371713966227,13.7075855617022,11.16387793838399,0.0,18.685277464321274,20.927480700846736,0.0,0.0,27.14145637536535,0.0,0.0,11.24901029325548,0.0,0.0,0.0,18.685277464321274,20.927480700846736,0.0,13.7075855617022,15.89244608210987,0.0,11.16387793838399,0.0,61.82,49.64374064645243,9.589074368143644,0.0,13.701298943374063,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,13.7075855617022,73.02208286092214,0.0,27.95628826530612,0.0,-5.153896447467876,0.0,0.0,-1.011303854875283,-9.72983749055178,0.0,0.375,14,0,6,0,0,0,0,2,2,6,0,6,3,0,0,0,2,-1.0293,51.19600000000001,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4421,CCn1cc(C(=O)O)c(=O)c2ccc(C)nc21,0,12.64799319727891,-3.4979308390022696,12.64799319727891,0.032037037037036864,0.849523695002097,232.23900000000006,220.14299999999994,232.084792244,88,0,0.340724876931317,-0.477497012873671,0.477497012873671,0.340724876931317,1.7647058823529411,2.6470588235294117,3.3529411764705883,3.2949199255895683,1069.4313839088102,22.687716254269354,20.119172062391506,8.119172062391506,12.979286601049226,10.138654714909553,4.23040642444569,2.9596156125470916,2.9596156125470916,1.9526754814637794,1.9526754814637794,1.2472407810879926,1.2472407810879926,-2.17,757169.4750245698,3.6623436954694784,4.008920169778624,1.79576665863494,114.28569776973144,9.675907838898567,11.210628712464723,0.0,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,9.77851570501903,0.0,0.0,0.0,25.78862164991795,29.329751339340923,9.498499882975455,24.98168949305145,17.00270672318437,1.4311996572326342,9.551078168738563,0.0,20.200643918907303,0.0,39.73843968865916,0.0,0.0,5.428790391900541,0.0,0.0,0.0,20.629191647797622,6.496859684315945,6.851892117295679,37.98215290578539,23.052269810213172,0.0,12.464601092465157,0.0,72.19,72.14725314667902,9.589074368143644,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,10.092786712054421,16.509543775105055,90.60038475266649,0.0,27.991930114638443,2.6791196617535906,-4.769089952338959,-1.73349966143865,-2.0983668745275885,-1.3453727324263036,-10.075105308327036,0.0,0.25,17,1,5,0,0,0,0,2,2,5,1,5,4,0,0,0,2,1.4230200000000002,63.37330000000001,0,0,0,0,1,2,0,0,1,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +25590,NCc1ccc(S(N)(=O)=O)cc1,0,11.738928728898966,-4.943879676870746,11.738928728898966,0.47941893424036364,0.6698196794692757,186.23600000000008,176.15599999999998,186.04629856,66,0,0.23754545165463076,-0.3264974955647823,0.3264974955647823,0.23754545165463076,1.5,2.1666666666666665,2.6666666666666665,3.897153890837981,674.7119712357714,17.618802153517006,15.619172062391506,6.435668643319231,9.77350269189626,7.482492844150132,4.13370179095094,1.7909938839350785,3.149374854055257,0.9718192310751496,1.6918508954754696,0.4859096155375748,0.8459254477377348,-0.9100000000000001,26907.45418822621,2.5384038579269546,3.2203779509371033,2.036933266590908,85.51883405096558,5.719716975726273,5.6473683133128025,0.0,10.023291153407584,0.0,0.0,0.0,13.542820220500968,0.0,0.0,12.08483741532659,17.648288907023584,9.238376796656386,10.378517700198655,22.289716634663055,10.023291153407584,0.0,0.0,10.844740211898303,11.39234315983372,0.0,29.733126322350174,0.0,0.0,10.844740211898303,0.0,0.0,0.0,8.417796984328938,16.520150837723527,0.0,13.788002828718314,29.065158306170954,5.6473683133128025,0.0,0.0,86.18,61.993500847489784,8.417796984328938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.871919650334123,96.26853883219957,0.0,-1.2559618291761152,-0.7848327664399095,-1.4720474300831448,0.0,-4.607129629629628,0.0,-3.0380208333333334,-4.943879676870746,0.14285714285714285,12,4,4,0,0,0,1,0,1,3,2,5,4,0,0,0,1,-0.20729999999999998,45.70660000000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +24066,Nc1ccn([C@H]2CC[C@@H](CO)O2)c(=O)n1,0,12.281605331947592,-3.712377763605443,12.281605331947592,0.2396041194255485,0.6875458801290977,211.2210000000001,198.11699999999996,211.095691276,82,0,0.35111865101917383,-0.39367648015977874,0.39367648015977874,0.35111865101917383,2.1333333333333333,3.066666666666667,3.8666666666666667,2.872180018262144,859.6365663055678,22.0854219586974,20.066385657891463,7.0663856578914634,12.426356681103705,9.96081284889138,3.6581373674276003,2.378598832832328,2.378598832832328,1.4498294582046003,1.4498294582046003,0.8657415029114433,0.8657415029114433,-1.4,484695.0513289442,2.8344045368620034,3.9953247242906955,2.0008705975464975,104.77614178998394,15.565388120633536,12.021815587771583,2.8236841566564013,1.4311996572326342,0.0,5.689743398203474,4.567099647791355,4.794537184071822,4.9839785209472085,0.0,0.0,18.788268510322055,11.65592943549564,20.863554606887593,26.376940863265858,5.817862777835028,1.4311996572326342,9.551078168738563,0.0,25.0298206395453,12.278702218642561,22.69959450075335,0.0,0.0,11.409460373929747,5.817862777835028,0.0,0.0,28.730089286944686,4.736862953800049,0.0,32.65738817429751,17.009851102549877,2.8236841566564013,0.0,0.0,90.36999999999999,55.311725976978146,4.794537184071822,0.0,10.286816623517627,0.0,0.0,0.0,0.0,0.0,10.092786712054421,22.699332329391282,103.55320997382347,0.0,15.386278817082387,3.655193436547152,-1.9723975550964188,-0.945947696208113,-1.0847976242966324,-16.04468253968254,-3.630190145502646,0.0,0.5555555555555556,15,3,6,0,1,1,0,1,1,6,2,6,4,0,1,1,2,-0.5046000000000002,53.13920000000002,0,1,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +71651,O=C(O)CCNC(=O)c1ccccc1,0,12.271203231292516,-3.6754824499244156,12.271203231292516,0.6688170823885113,0.7458520950484065,193.20200000000008,182.11399999999998,193.073893212,74,0,0.30463308741925127,-0.48118160363355017,0.48118160363355017,0.30463308741925127,1.5714285714285714,2.2857142857142856,2.9285714285714284,3.495771243763518,706.3023634299539,19.90325920389318,17.671958466891546,6.671958466891548,11.228174161023711,8.665047917159574,3.3095860311957526,1.941216840723727,1.941216840723727,1.029276188878169,1.029276188878169,0.5372014543086129,0.5372014543086129,-1.8399999999999994,127477.00451879817,2.823480898816076,5.012486407084328,3.2643892755612196,97.15771410518647,10.418621544395588,0.0,1.4118420783282006,0.0,7.33837938658414,5.969305287951849,9.589074368143644,0.0,0.0,0.0,18.127256122989884,12.08483741532659,17.54334540069382,13.226717682180478,28.446551643111032,11.876485017303356,1.4311996572326342,5.309813353288376,0.0,6.372924901329379,6.496859684315945,35.77554503001347,0.0,0.0,5.309813353288376,0.0,0.0,0.0,23.48215289272651,4.794537184071822,0.0,29.067740582630172,30.212093538316473,1.4118420783282006,1.4311996572326342,0.0,66.4,65.83162798625052,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,15.179868741092815,81.01635488732148,0.0,23.496835467989868,2.6854567743330366,-1.0695223922902495,-3.798827108003696,-4.682090902215133,-3.6393909438775527,-3.6754824499244156,0.0,0.2,14,2,4,0,0,0,1,0,1,3,2,4,4,0,0,0,1,0.8911,51.02800000000002,1,0,0,0,0,0,0,0,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9887755,N#C[C@@H]1C[C@H](F)CN1C(=O)[C@@H](N)C(c1ccc(F)cc1)c1ccc(F)cc1,0,15.481792522385957,-4.756846870928762,15.481792522385957,0.7556554299609861,0.8959554905591457,373.37799999999976,355.2340000000001,373.1401968560005,140,0,0.24114025351500995,-0.32224980583537666,0.32224980583537666,0.24114025351500995,1.2962962962962963,1.8148148148148149,2.259259259259259,2.7401320634695376,1555.0671094605282,35.36736081903094,30.88378249599142,12.883782495991419,20.131597812147174,15.783532034495584,6.889104843495668,4.75332986379723,4.75332986379723,3.099070976176395,3.099070976176395,1.9912638172910988,1.9912638172910988,-2.849999999999999,1160550822.4010599,6.639841462429253,7.8038582439119955,3.9580425864930655,179.95821771220915,10.619626706576751,26.623745341809812,0.0,5.907179729351506,0.0,0.0,4.794537184071822,13.171245143024459,5.261891554738487,0.0,24.16967483065318,35.29657781404717,16.379158255203116,36.40383469567073,42.72160338247622,5.907179729351506,5.261891554738487,4.899909730850478,5.719716975726273,30.450394558103724,6.496859684315945,71.10069432679214,0.0,6.069221312792274,5.719716975726273,13.171245143024459,0.0,0.0,35.4874611159292,4.794537184071822,22.96555454962255,45.32592246880999,48.33934966130636,2.8236841566564013,0.0,0.0,70.12,124.5747550051401,20.208017390330166,4.39041504767482,0.0,0.0,6.069221312792274,0.0,0.0,0.0,0.0,23.3850624992097,190.83628023041175,0.0,13.1448258377425,9.662932334754124,-4.738399470899471,-11.02779625083377,-21.632162082846612,-9.082374297413082,-4.496639634248765,0.0,0.3,27,2,4,0,1,1,2,0,2,3,1,7,5,0,1,1,3,2.8865800000000013,93.24540000000003,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2520,COc1ccc(CCN(C)CCCC(C#N)(c2ccc(OC)c(OC)c2)C(C)C)cc1OC,0,11.083108625562314,-5.5403936384412384,11.083108625562314,0.6407647970857324,0.41990487617646394,454.61099999999954,416.30700000000024,454.283157696001,180,0,0.16054431752689396,-0.4928699786635633,0.4928699786635633,0.16054431752689396,1.0,1.6666666666666667,2.303030303030303,3.5545572094190074,2362.551182621693,57.041087405397874,54.02742035285537,16.02742035285537,30.765344184120192,27.02742035285537,8.02742035285537,5.395565264641527,5.395565264641527,3.527945209198512,3.527945209198512,1.9997237064488949,1.9997237064488949,-2.9099999999999997,15315924052980.932,5.3343222094410505,12.362155765232773,6.326433951969804,251.9581023175865,23.847361546050674,0.0,22.99804733313562,0.0,0.0,0.0,0.0,0.0,5.261891554738487,0.0,25.78862164991795,73.78199678799658,33.91203080772034,64.30967562878342,71.0362769496686,0.0,5.261891554738487,4.899909730850478,5.893957685363079,38.237549407976275,48.12135610444448,47.38141522937376,0.0,29.067268645927893,18.947451815200196,0.0,22.99804733313562,0.0,53.02126583529496,11.787915370726159,17.22507055289384,89.66536215511246,36.25451224597977,0.0,0.0,0.0,63.95,167.53223549114372,8.003408667078928,0.0,0.0,6.069221312792274,0.0,0.0,0.0,0.0,18.947451815200196,49.347308022127955,331.8425640563195,0.0,-1.5431856630839778,11.083108625562314,-9.700281996509448,-12.376615358965783,-11.230119770757831,-15.794229714316842,-25.038819848275985,-15.242420329971942,0.5185185185185185,33,0,6,0,0,0,2,0,2,6,0,6,20,0,0,0,2,5.093080000000005,131.65600000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4595,Cc1nccn1CC1CCc2c(c3ccccc3n2C)C1=O,0,14.188694255479966,-4.093500212585036,14.188694255479966,0.04494556773326597,0.7280085381147323,293.3699999999996,274.21799999999996,293.1528122280005,112,0,0.16967730777761764,-0.34691747198915435,0.34691747198915435,0.16967730777761764,1.5909090909090908,2.5,3.3636363636363638,2.285868237515411,1641.845261972669,31.790010549841313,29.74988907696374,10.749889076963738,18.217990804895837,15.492978527231763,5.992978527231764,4.342978527231763,4.342978527231763,3.1207649317318045,3.1207649317318045,2.141784509512139,2.141784509512139,-2.36,251055795.20913762,3.935608209426944,4.833784702035854,1.8316089521630117,155.63279890394114,9.13419929558271,5.824404497999927,5.783244946364939,0.0,0.0,0.0,4.794537184071822,4.9839785209472085,0.0,0.0,18.127256122989884,25.640160627617732,68.95108322808973,10.96606844936176,30.838949751305996,16.686169878445995,0.0,14.118177816529919,12.869784585645323,26.094601604270384,0.0,53.597249236828084,0.0,0.0,0.0,0.0,0.0,0.0,19.901422762894857,19.84561148592757,12.745849802658757,54.29365863718081,36.5154652522827,0.0,10.902924932081056,0.0,39.82,109.2478053051898,4.794537184071822,0.0,9.13419929558271,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,26.044412567234176,156.04733861898114,0.0,17.49905644997005,-0.923260673868312,-3.4613864612202896,-7.415075832298282,-4.07862460313556,-10.304123266654384,-10.86392423177439,0.0,0.3333333333333333,22,0,4,1,0,1,1,2,3,4,0,4,4,0,0,0,4,3.1285200000000017,86.02450000000005,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +60749,Nc1ccn([C@@H]2O[C@H](CO)[C@@H](O)C2(F)F)c(=O)n1,0,15.075659013605442,-5.271567696523057,15.075659013605442,0.38946057474872386,0.6120873727300361,263.1999999999998,252.11199999999994,263.0717622720002,100,0,0.35131379854975847,-0.393564363221731,0.393564363221731,0.35131379854975847,1.9444444444444444,2.7777777777777777,3.4444444444444446,2.9106621582943175,889.8731517401818,22.79252873988395,19.23056289437378,8.23056289437378,12.987016852883526,9.4511497575964,4.240225985668759,3.0321160225020583,3.0321160225020583,1.926868091174483,1.926868091174483,1.1599759357208757,1.1599759357208757,-1.58,861262.301618363,4.833856493603291,4.264616604979357,1.8546532535041447,115.17817560582407,20.674196311740747,11.897880804785016,8.90370218360639,9.066352124401822,0.0,11.61227256629805,4.567099647791355,4.794537184071822,13.764808616296847,0.0,0.0,6.042418707663295,6.172895210814761,16.154295136107827,36.15430348121206,5.817862777835028,2.8623993144652684,9.551078168738563,0.0,24.28651803193111,12.278702218642561,22.69959450075335,0.0,0.0,11.409460373929747,14.598692873184667,0.0,0.0,47.2726443303291,4.736862953800049,0.0,15.799262703128093,17.009851102549877,2.8236841566564013,0.0,0.0,110.60000000000001,59.13552301715531,4.794537184071822,8.78083009534964,5.719716975726273,0.0,0.0,0.0,0.0,0.0,19.93845785696168,15.281393364313208,114.65249928368324,0.0,15.114169973544975,7.032183704876706,-2.3439895807955873,-6.357679135697492,-1.2729353793986735,-14.481142054043842,-3.9264401455026468,0.0,0.5555555555555556,18,4,7,0,1,1,0,1,1,7,3,9,5,0,1,1,2,-1.2886,54.85900000000001,0,2,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11950726,CN1C(=O)C(F)=C[C@]2(C)[C@H]3CC[C@]4(C)[C@@H](C(=O)NCc5nc6ncccc6[nH]5)CC[C@H]4[C@@H]3CC[C@@H]12,0,16.520179296390037,-5.897399869598973,16.520179296390037,0.2512018709589898,0.6927204949391339,479.5999999999996,445.32800000000026,479.26965354800103,186,0,0.2817994635388375,-0.34862026856024564,0.34862026856024564,0.2817994635388375,1.457142857142857,2.3714285714285714,3.2,1.914129095002554,2675.5112179492467,54.41976706183823,50.93052903143675,16.930529031436745,30.1445297254643,26.45133249321816,9.556905302218246,7.399945146196395,7.399945146196395,5.396547043028207,5.396547043028207,3.7440102315336627,3.7440102315336627,-2.77,31416120100021.215,6.195528873342437,7.867242774797995,3.2773867999653956,252.3957665171745,15.186726354368107,5.824404497999927,14.297735256842294,5.907179729351506,5.907179729351506,0.0,9.589074368143644,14.358372089569237,0.0,0.0,13.703784234591359,79.47132209482446,64.74452663846208,21.608870295123744,60.66744736992195,22.978237397087,0.0,25.15468339626252,34.40581168024587,64.45608579523322,6.975826900282246,35.96108274959501,0.0,0.0,5.309813353288376,4.39041504767482,0.0,0.0,44.65294887030905,16.08593405245959,34.40581168024587,101.63001193801449,30.136678251595082,2.8236841566564013,11.16387793838399,0.0,90.97999999999999,174.98676760658225,22.61439841428468,9.184952231746642,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.967957041894417,28.868096723890577,320.70641473905914,0.0,34.01378976513602,-1.3417009694016375,-13.24032219990698,-34.02332951208284,-10.368706420969016,-34.24670467137797,-19.58277406379016,0.0,0.6296296296296297,35,2,7,3,1,4,0,2,2,4,2,8,6,3,0,3,6,4.126900000000003,129.36040000000003,0,0,0,0,0,3,1,0,0,0,2,2,0,0,0,3,2,0,0,1,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +219078,COC[C@@H](NC(C)=O)C(=O)NCc1ccccc1,0,13.106177563618036,-4.42131224017385,13.106177563618036,0.9812377410598454,0.7701920576724235,250.29800000000014,232.15399999999997,250.131742436,98,0,0.24475366079117397,-0.3819966621616073,0.3819966621616073,0.24475366079117397,1.6111111111111112,2.388888888888889,3.0555555555555554,3.883984717942016,1023.1377838468298,28.980609473082808,26.619172062391506,8.619172062391506,15.763301543533913,13.10535096292756,4.210923771927643,2.4984462684238453,2.4984462684238453,1.3328808902589624,1.3328808902589624,0.7297080618429774,0.7297080618429774,-1.8799999999999994,8917980.02460694,3.1655601841098733,7.446723555288548,4.967434182774216,131.92789398458098,15.356489660376802,6.017892468349645,2.8236841566564013,11.814359458703011,0.0,0.0,9.589074368143644,0.0,0.0,0.0,30.212093538316473,5.563451491696996,24.49897992900487,24.378846473129144,39.081758377323624,11.814359458703011,0.0,10.619626706576751,0.0,19.36664426996127,13.596937701798877,35.77554503001347,0.0,0.0,10.619626706576751,0.0,0.0,0.0,31.429189628851532,20.822797006259634,0.0,34.34748050771619,30.212093538316473,2.8236841566564013,0.0,0.0,67.42999999999999,91.1731131670534,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,24.75582105537992,140.12068746716113,0.0,25.24835721894614,-2.128373908205259,-1.351685641849332,-5.012223767861392,-10.118654470996644,0.0,-11.909613820122484,-3.76515974373884,0.38461538461538464,18,2,5,0,0,0,1,0,1,3,2,5,8,0,0,0,1,0.4539000000000007,67.76940000000003,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +36294,NC[C@H]1O[C@H](O[C@@H]2[C@@H](N)C[C@@H](N)[C@H](O[C@H]3O[C@H](CO)[C@@H](O)[C@H](N)[C@H]3O)[C@H]2O)[C@H](N)C[C@@H]1O,0,9.451812877928951,-5.73295859315949,9.451812877928951,1.2748126014890495,0.17400656822855506,467.5199999999995,430.2240000000002,467.259127764001,188,0,0.21079490079078783,-0.3935672815104058,0.3935672815104058,0.21079490079078783,0.90625,1.65625,2.28125,2.83029395971516,1947.260844986675,55.25071237662706,51.91030259167456,14.910302591674558,30.348606348515617,25.285025284083897,7.771647876765005,5.4744490719407155,5.4744490719407155,3.505982843284123,3.505982843284123,2.0912115106861884,2.0912115106861884,-0.5599999999999999,18785748789926.734,5.871284687053489,10.793525832364557,5.235544635959526,238.0484027952839,73.09007764936764,50.598528944981915,12.532156737073795,7.155998286163171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.745849802658759,29.498713070376994,49.945426019898676,88.7666017897631,0.0,7.155998286163171,0.0,28.598584878631364,97.98972062873104,13.055844927232233,0.0,0.0,0.0,28.598584878631364,0.0,0.0,0.0,130.99975499500374,18.947451815200196,0.0,42.90253803840362,0.0,14.118420783282007,0.0,0.0,268.17,139.64415043459462,4.1122756685106605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.54404095553606,66.26628345187957,329.63824449837796,0.0,0.0,19.571310544897113,-7.28024466541871,0.0,-20.668097707269016,-63.00332047571655,-9.257892194870852,0.0,1.0,32,15,14,1,2,3,0,0,0,14,10,14,16,1,2,3,3,-6.295799999999999,108.37100000000002,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3821,CNC1(c2ccccc2Cl)CCCCC1=O,0,13.443963844797175,-4.0930583900226765,13.443963844797175,0.7827522675736969,0.8571565291687986,237.7300000000001,221.60199999999995,237.092041812,86,0,0.15694722384123436,-0.3042859105636157,0.3042859105636157,0.15694722384123436,1.625,2.4375,3.25,3.3161323200826414,958.120293396761,25.618802153517006,23.73342635897305,8.489355304991502,13.984827557301447,12.03753357273646,4.46828445024573,2.840319977236503,3.21828445024573,1.9817852288236357,2.265258583580556,1.2141106182158465,1.445350567456886,-0.8600000000000001,2119132.1632225863,2.9304407792757963,4.559460216979955,1.763306183711028,123.53240191220078,5.309813353288376,6.950767330711546,5.783244946364939,0.0,0.0,0.0,4.794537184071822,0.0,0.0,0.0,36.10112091455178,31.327546902301297,26.473902332943123,5.483034224680881,26.76775760495332,17.384184836597456,0.0,5.309813353288376,0.0,31.030624857700865,6.975826900282246,34.7557596360915,0.0,0.0,5.309813353288376,0.0,0.0,11.600939890232516,12.759071846647185,10.333462436455168,0.0,51.61652943956786,24.16967483065318,6.434475392069527,0.0,0.0,29.1,83.85526969372793,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.574160311114014,126.68315293787268,5.980626574703955,13.443963844797175,-1.9320242819349962,-5.347993827160494,-2.2840920256991684,-4.524460178361468,-15.962635542642985,-3.778759723796929,0.0,0.46153846153846156,16,1,2,1,0,1,1,0,1,2,1,3,3,1,0,1,2,2.897800000000001,65.66470000000002,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3339,CC(C)OC(=O)C(C)(C)Oc1ccc(C(=O)c2ccc(Cl)cc2)cc1,0,13.345251265337913,-4.515950717535765,13.345251265337913,0.6934337312154633,0.5540618915195044,360.8369999999997,339.6690000000001,360.1128368320006,132,0,0.3496415386243387,-0.47616591344845877,0.47616591344845877,0.3496415386243387,1.08,1.64,2.16,2.960686007725451,1500.5700483098392,36.49711733102786,33.01095763486468,12.766886580883135,20.32979812446164,16.663727107896204,6.541691580905431,4.2241225138455025,4.602086986854729,2.388049771795999,2.5770320083006126,1.3606915525646663,1.455182670816973,-2.329999999999999,913693917.7217093,5.335037025744449,7.702508411543377,5.068964927820454,181.7658156302408,9.473725907600098,5.749511833283905,11.384295757348628,0.0,0.0,5.969305287951849,4.794537184071822,4.794537184071822,0.0,0.0,11.600939890232516,75.74691813048906,32.598638971177955,18.416845032481966,47.84872995531839,23.353490124549303,0.0,0.0,0.0,39.088637307116386,0.0,64.48888595844167,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,11.600939890232516,23.433619072250465,9.53140013787187,0.0,72.11493831622317,48.33934966130636,5.022633313741326,0.0,0.0,52.6,121.0795853331588,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,45.12373252360721,172.9471725208276,5.714390905546126,26.684279714927897,-0.6934337312154633,-6.812906263829836,-6.064620075931508,-9.813685235571418,-4.290531893510307,-16.72622149679861,0.0,0.3,25,0,4,0,0,0,2,0,2,4,0,5,10,0,0,0,2,4.680000000000004,97.26150000000003,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4450,CN1CCOC(c2ccccc2)c2ccccc2C1,0,9.09099820483749,-4.006404714663646,9.09099820483749,0.6032723398001179,0.7733298315151294,253.3450000000001,234.19299999999993,253.146664228,98,0,0.10791040089816403,-0.36744781299517454,0.36744781299517454,0.10791040089816403,1.263157894736842,2.0526315789473686,2.8947368421052633,2.7528716359224896,1305.2482143202872,29.712660280651686,28.35546188596382,9.355461885963821,16.88531001146206,14.5790686837138,5.079068683713801,3.3422652848388106,3.3422652848388106,2.1757709972396126,2.1757709972396126,1.4164928171320308,1.4164928171320308,-1.6399999999999997,39856997.048479,3.157614607673748,5.554883036559278,2.698159794025511,140.87519514691343,4.736862953800049,6.080018026949988,0.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,0.0,54.38176836896965,23.66618137537323,22.589029261823427,23.008087916958925,30.781275521034225,0.0,0.0,4.899909730850478,0.0,12.576877711265933,20.03167182751448,71.07212284406064,0.0,0.0,0.0,0.0,0.0,0.0,24.931581558364957,11.233722638115994,0.0,48.81478506927519,54.38176836896965,0.0,0.0,0.0,12.47,108.58058211369156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.781275521034225,160.71327591390093,0.0,-0.6032723398001179,0.0,-3.8805035903250173,0.0,-10.244097922379849,-3.6208186885865468,-15.61458337280939,0.0,0.29411764705882354,19,0,2,0,1,1,2,0,2,2,0,2,2,0,0,0,3,3.238000000000002,77.01300000000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4173,Cc1ncc([N+](=O)[O-])n1CCO,0,10.909075018896448,-3.465092592592593,10.909075018896448,0.18365740740740755,0.5158680082581498,171.15600000000006,162.08399999999997,171.064391148,66,0,0.3424297029647619,-0.39228693465174963,0.39228693465174963,0.3424297029647619,2.25,3.0833333333333335,3.6666666666666665,3.78664182061857,565.8097121407661,16.800964908321227,14.566385657891463,5.5663856578914634,9.269891162799384,7.069161593865779,2.660913303401916,1.6772058464509094,1.6772058464509094,1.0157938929690224,1.0157938929690224,0.5772821122479104,0.5772821122479104,-1.43,18886.937676546666,2.527651594096791,3.310964147709046,1.42412717427458,81.34362358557625,15.223126459872784,12.669754895130705,5.824404497999927,1.4311996572326342,0.0,5.817862777835028,0.0,9.551078168738563,0.0,0.0,0.0,4.923311048817671,10.964167785806339,13.412778023767387,20.99818768928664,5.817862777835028,1.4311996572326342,9.551078168738563,0.0,13.348751801611623,6.558985242916289,22.11161797758026,0.0,0.0,0.0,5.817862777835028,0.0,0.0,27.57338230881237,6.496859684315945,16.966210386061253,16.790472947361685,6.172895210814761,0.0,0.0,0.0,81.19,42.6462105799953,10.114318268765572,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,10.092786712054421,12.397268106594394,64.73456490929706,0.0,12.766802721088435,14.469833711262284,0.0,-2.544282407407407,0.0,-1.1427957294028717,-10.034123204837492,0.0,0.5,12,1,6,0,0,0,0,1,1,5,1,6,5,0,0,0,1,0.09201999999999994,40.704200000000014,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6918296,C[C@]12CC[C@H]3[C@@H](CC[C@H]4NC(=O)C=C[C@]34C)[C@@H]1CC[C@@H]2C(=O)Nc1cc(C(F)(F)F)ccc1C(F)(F)F,0,14.970398376458526,-6.407250805986764,14.970398376458526,1.2552155759736552,0.4265424696021493,528.5370000000005,498.29700000000014,528.2211475200008,202,0,0.41790370068362126,-0.3489567200458562,0.41790370068362126,0.3489567200458562,1.162162162162162,1.945945945945946,2.6216216216216215,2.2250081658381387,2436.633310978445,53.428203230275514,47.47871060998301,17.47871060998301,29.05619476234737,24.580996091491375,9.686568900491462,7.651643660152171,7.651643660152171,5.330754102355233,5.330754102355233,3.6049467002364772,3.6049467002364772,-2.5199999999999996,7369984322504.475,8.24158329875972,8.495079213590381,4.238036266100737,253.0634691298966,10.619626706576751,0.0,2.8236841566564013,11.814359458703011,0.0,12.35259703488695,9.589074368143644,0.0,26.34249028604892,0.0,19.755855980626926,85.51374080248775,47.48352885885438,25.038840595098872,77.13648838361516,17.501745733386574,0.0,5.309813353288376,34.405811680245876,70.31182314580421,5.309813353288376,41.358302598455005,0.0,0.0,10.619626706576751,32.02987656073248,0.0,0.0,17.832251927052656,21.941671403030593,34.405811680245876,101.44947619872767,30.231399615061015,2.8236841566564013,0.0,0.0,58.2,174.1973098644685,48.26839165972458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.868096723890577,353.4557802800922,0.0,28.180011538140494,-3.1043152893081274,-20.288906600861083,-29.625703887679457,-17.935331951657226,-46.171774171568835,-10.593093250491293,0.0,0.6296296296296297,37,2,4,3,1,4,1,0,1,2,2,10,4,3,0,3,5,6.576100000000006,124.02240000000005,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,6,0,2,0,1,0,0,0,0,1,0,5,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2675,C=CC1=C(C(=O)O)N2C(=O)[C@@H](NC(=O)/C(=N\OCC(=O)O)c3csc(N)n3)[C@H]2SC1,0,13.55596157908883,-3.6027162454609165,13.55596157908883,0.0043379248317014785,0.22618525506501608,453.45799999999986,438.33800000000014,453.04128982000043,158,0,0.35246478492452044,-0.4786463774807527,0.4786463774807527,0.35246478492452044,1.8,2.6666666666666665,3.3666666666666667,2.2140080357320433,1566.9221454311396,34.61000150615022,28.910302591674558,15.543295753530012,20.543507068126576,14.348538330563716,8.823394124991566,4.919275570480781,6.487618854145604,3.192436104187551,4.637167355839534,2.0532010823680373,3.3619676753813144,-3.39,1779333580.3876622,9.176812496224036,8.542986842288613,3.993559368793998,198.03702009767198,26.084735294965704,22.758784228424368,15.078769717594637,6.558985242916289,14.67675877316828,11.938610575903699,14.48898409899412,14.573052889090853,0.0,23.098670827325854,17.738823434787975,5.573104530069267,13.802588407158197,10.96606844936176,52.176465498925175,57.6948843445426,2.8623993144652684,15.193701605086062,5.15571272675054,11.36781692052007,17.983659103792718,34.9032969556786,0.0,0.0,11.029530329014648,5.131558479839333,0.0,23.098670827325854,73.19791871997603,24.01573732002392,0.0,19.401513556550658,34.36508168758068,4.235526234984602,2.8623993144652684,0.0,184.51,98.44108287477023,19.178148736287287,0.0,33.71829753390261,0.0,0.0,0.0,0.0,0.0,25.194896213648803,20.805511111152068,116.10967051403071,-0.07588834017244239,58.89344270552381,5.033396045591731,-8.249530393106104,-7.7185572288908535,-4.855011998328025,0.0,-4.970854637982183,0.0,0.25,30,5,12,0,2,2,0,1,1,12,4,14,9,0,1,1,3,-0.5447999999999991,106.53269999999999,2,0,0,1,0,1,0,0,2,2,4,2,0,0,0,3,1,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +3715,COc1ccc2c(c1)c(CC(=O)O)c(C)n2C(=O)c1ccc(Cl)cc1,0,13.91394479087931,-3.673559920110021,13.91394479087931,0.030210695389266906,0.7678065120522066,357.7929999999998,341.6650000000001,357.0767856720004,128,0,0.3074078016334054,-0.4967429595174039,0.4967429595174039,0.3074078016334054,1.36,2.16,2.84,2.759266558719103,1595.821555134964,31.729168138596737,27.958171230364638,12.714100176383093,18.51668484838825,14.288671646378072,6.7583878289234365,4.495402289451187,4.873366762460414,3.0443553920711084,3.233337628575722,2.0669296930187544,2.1614208112710607,-2.7899999999999996,255739689.1914201,6.179619705449648,6.607181634243952,3.1046664994872564,171.51429200637318,9.84567114490726,5.749511833283905,0.0,0.0,7.33837938658414,5.969305287951849,14.156174015934997,0.0,0.0,0.0,11.600939890232516,54.712274562635734,28.520029795602678,32.635163639530425,39.99612385560422,34.380349839616926,1.4311996572326342,4.567099647791355,0.0,13.224817018625059,7.037952458882589,64.14039524562685,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,11.600939890232516,28.59034531508451,11.167462085401201,6.851892117295679,42.176746504867594,42.29693095364306,5.022633313741326,12.33412458931369,0.0,68.53,112.93208650580283,9.589074368143644,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,9.84567114490726,33.593517890018454,131.6067187527876,5.78027182219832,26.278593030863494,1.9307071110838818,-4.927687407267434,-4.9365656732670615,-7.577361336399335,-3.673559920110021,-3.6148965988144237,-3.3384420032972892,0.15789473684210525,25,1,5,0,0,0,2,1,3,5,1,6,6,0,0,0,3,3.9273200000000026,95.74730000000002,1,0,0,0,0,1,0,0,1,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3151,O=c1[nH]c2ccccc2n1CCCN1CCC(n2c(=O)[nH]c3cc(Cl)ccc32)CC1,0,13.54930065974443,-4.738340618074341,13.54930065974443,0.2750912756675743,0.514301695573136,425.9199999999997,401.7280000000001,425.1618526880007,156,0,0.3262156251940311,-0.3055400855704482,0.3262156251940311,0.3055400855704482,1.1,1.8666666666666667,2.7,1.8542213642318852,2399.2588913269965,41.969655114602894,38.43052903143675,15.1864579774552,24.03824556991625,19.89854608871812,8.382083370727432,5.549215580049462,5.927180053058689,3.7676169756296876,3.956599212134301,2.527550458923702,2.6642992899124343,-2.7699999999999996,88799136072.0729,6.141778306044524,7.812409595225632,3.4812027806465258,211.264641293464,14.853916271308982,0.0,2.8236841566564013,0.0,0.0,11.379486796406947,9.13419929558271,9.589074368143644,0.0,0.0,23.685777305559107,55.82772792662056,49.72172462142193,33.0328713198268,32.980372392401236,33.667742760697564,0.0,23.988115566891693,0.0,31.633526856653727,19.490579052947837,68.28812543193499,0.0,0.0,11.379486796406947,0.0,0.0,11.600939890232516,43.47869461983952,6.496859684315945,0.0,55.293355408082675,51.886005321786705,7.846317470397728,22.066802870465047,0.0,78.82,145.92406887029117,9.589074368143644,0.0,9.954006540458504,0.0,0.0,0.0,0.0,0.0,0.0,44.581312282633775,203.86364005353425,5.883080989856985,25.186586727856216,-0.8295418710527234,-8.412377811017,0.0,-12.20657448547689,-13.733363813290088,-18.30700534596635,0.0,0.36363636363636365,30,2,7,0,1,1,2,2,4,5,2,8,5,0,1,1,5,3.353200000000002,119.45540000000001,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,3,2,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +47965,CC1=C(C(=O)O)N2C(=O)[C@@H](NC(=O)[C@H](N)c3ccc(O)cc3)[C@H]2SC1,0,13.5577662037037,-3.7974568531116164,13.5577662037037,0.09701393617338772,0.5597037383059922,363.39499999999975,346.25900000000007,363.08889164400046,132,0,0.35211488068006896,-0.5079666252286738,0.5079666252286738,0.35211488068006896,1.72,2.52,3.16,2.269898826149304,1394.6406301754653,32.704224112214405,28.791130529283052,12.607627110210778,18.9373873598088,14.428647170550995,7.087006384051121,4.479197451004473,5.274144072535322,2.96965100030912,3.8451097350590575,1.86899235162094,2.6595174640401553,-2.5199999999999996,295618751.0485176,6.028196014577321,6.413498790959588,2.9595421484607374,171.45729822075526,21.247146711229075,31.655944691865855,1.4118420783282006,5.907179729351506,8.769579043816774,5.969305287951849,14.48898409899412,4.794537184071822,0.0,11.761884949391115,12.08483741532659,30.07328555438853,12.558749666001258,9.59530989319154,45.28585684345715,29.545549696045974,2.8623993144652684,10.209723084138854,5.719716975726273,24.237601506165397,5.704956885150159,41.00327016547528,0.0,5.749511833283905,11.029530329014648,0.0,5.749511833283905,11.761884949391115,51.40516432262263,14.383611552215466,0.0,34.882338751384964,35.43981867377828,4.235526234984602,1.4311996572326342,0.0,132.96,117.27042041513536,14.383611552215466,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,10.217616382214425,23.547028223492507,134.37862985650153,-0.42841932388198667,39.127130889892044,3.666134258980753,-8.369166795303297,-7.1145889138533125,-12.368416564386376,0.0,-3.4746367412827004,0.0,0.3125,25,5,8,0,2,2,1,0,1,7,4,9,7,0,1,1,3,0.15050000000000108,90.39370000000002,1,0,0,0,0,0,0,1,1,1,3,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +6013,C[C@]12CC[C@H]3[C@@H](CCC4=CC(=O)CC[C@@]43C)[C@@H]1CC[C@@H]2O,0,13.166367707819276,-5.388712679516256,13.166367707819276,2.212090905034853,0.7342296115534325,288.4309999999994,260.20699999999994,288.2089301360008,116,0,0.21047383687288607,-0.3925514254046628,0.3925514254046628,0.21047383687288607,1.3333333333333333,2.2857142857142856,3.0952380952380953,2.6629070751982136,1552.683595009511,39.43915758875543,38.316496580927726,10.316496580927726,20.998052780610177,19.816496580927726,5.908248290463863,4.783248290463863,4.783248290463863,3.5561862178478973,3.5561862178478973,2.4286086270779395,2.4286086270779395,-0.6300000000000001,2539730453.8095965,2.8962172706881484,4.439809487732747,1.7756589628303494,166.97688155573303,5.1088081911072125,0.0,5.783244946364939,1.4311996572326342,0.0,0.0,4.794537184071822,0.0,0.0,0.0,19.276888764660626,79.17440005022401,40.64188880558489,8.821535139290429,46.913826391775004,5.783244946364939,1.4311996572326342,0.0,28.5118539948828,70.76720147217637,0.0,11.625176276104835,0.0,0.0,0.0,0.0,0.0,0.0,18.403270821654775,4.794537184071822,28.5118539948828,101.69766446182221,11.625176276104835,0.0,0.0,0.0,37.3,116.68747668952896,8.906812852582483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,34.32940500531791,244.85294535198145,0.0,13.166367707819276,4.050143310206441,-12.513149814709838,-18.400013395286443,-2.212090905034853,-43.80723908467711,-9.636963170298989,0.0,0.8421052631578947,21,1,2,4,0,4,0,0,0,2,1,2,3,3,0,3,4,3.879200000000003,82.71680000000005,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1548887,CC1=C(CC(=O)O)c2cc(F)ccc2/C1=C\c1ccc([S+](C)[O-])cc1,0,14.835384178182041,-3.6431465534892693,14.835384178182041,0.9387164063156124,0.8279102305740682,356.4179999999997,339.28200000000004,356.0882436240004,128,0,0.30734864008733426,-0.6116461384345886,0.6116461384345886,0.30734864008733426,1.44,2.24,2.92,2.69296631507294,1563.2299901715128,32.59941162659982,29.01095763486468,12.827454215792406,18.95424190444888,14.83039377456287,7.571975398360066,4.5742925995844415,5.51999836861357,3.046510669433537,3.621425626564067,2.0666591505878285,2.354116629153093,-2.369999999999999,401669308.17410845,6.1092060202985845,6.86090076898431,3.5244274858450364,172.20984805456496,9.661558064797577,12.001144942162354,4.895483475517775,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,4.39041504767482,0.0,0.0,6.042418707663295,93.74399864799508,6.853792780851101,21.451269019201796,40.77864719526775,34.34344056751124,1.4311996572326342,0.0,0.0,18.120300494142832,6.1839241011164585,70.37761079984921,0.0,0.0,0.0,4.39041504767482,0.0,0.0,21.814787453865886,15.97039165745711,5.817220841045895,51.84730839243961,52.76551895923011,0.0,18.629480463406736,0.0,60.36,129.0252759626198,13.737702105437005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,23.363336555956153,162.9528287387903,-3.0931586128033652,11.224030135011184,3.6726083396950377,-6.76357810851911,-3.773399899357969,-9.915332258052016,-6.932825459939079,-3.5656173192693936,0.0,0.15,25,1,3,1,0,1,2,0,2,3,1,5,6,0,0,0,3,4.365500000000003,97.89220000000003,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23675322,Cc1nnc(SCC2=C(C(=O)[O-])N3C(=O)[C@@H](NC(=O)Cn4cnnn4)[C@H]3SC2)s1,0,13.244513239052381,-3.522246800726464,13.244513239052381,0.0074228714933495255,0.36582640388474186,453.5109999999999,440.40700000000015,453.0227374759105,152,0,0.25325434312186945,-0.543194659219695,0.543194659219695,0.25325434312186945,1.6551724137931034,2.5172413793103448,3.206896551724138,1.7822604022199051,1531.247201589228,32.00770721057826,26.43544679724671,15.884936540029885,18.94190089692312,13.524523025319064,9.526799172602283,4.806205045397292,7.632037472027695,3.090223895340875,5.559407840252244,2.009858266447109,4.19191879565792,-2.5200000000000005,500262561.00208455,9.526816758346014,8.076871617315621,3.970577608495778,193.99053369234264,15.210877932200905,30.54643057182523,5.751497759001746,5.907179729351506,5.907179729351506,0.0,14.48898409899412,4.681802935145185,0.0,27.05793037429423,23.098670827325854,22.85176683867468,21.005223663491854,17.14937882568856,37.351083699427015,52.64422052337183,0.0,40.614341635496885,0.0,29.056224402805242,11.409913770300317,22.581139253944094,0.0,0.0,10.41634074812908,0.0,0.0,34.860555776716964,75.86592371968376,20.880471236531413,6.851892117295679,21.456726370895403,21.91317123776487,1.4118420783282006,0.0,0.0,158.91999999999996,81.80109984631933,19.49013894705617,0.0,37.44513824545144,11.336785877934737,0.0,0.0,0.0,0.0,25.72281561621285,17.86094475237084,104.1744689381196,0.10718946570846266,38.33847182145394,23.943925959150814,-9.239083130899282,-6.269918032920446,-3.522246800726464,-1.0006787017341903,-6.198796184819097,0.0,0.42857142857142855,29,1,12,0,2,2,0,2,2,13,1,15,8,0,1,1,4,-1.970779999999998,100.24270000000001,1,0,0,0,0,6,0,0,1,1,3,3,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0 +9805950,Cc1cc(SCc2sc(-c3ccc(C(F)(F)F)cc3F)nc2C)ccc1OC(C)(C)C(=O)O,1,15.272627129319478,-5.478070646197868,15.272627129319478,0.10153356845850148,0.2770874413828541,499.5509999999999,478.38300000000027,499.08989841200054,176,0,0.4160139394794355,-0.4783043122308259,0.4783043122308259,0.4160139394794355,1.303030303030303,2.121212121212121,2.787878787878788,2.3933311273321753,1943.7957286625083,42.27313821296676,36.50031293985618,17.133306101711632,24.00079608877788,18.494383993837726,9.719128865229315,5.816568489153519,7.632135836844028,3.434795739528231,5.266735223005733,1.966004248538554,3.5195583719602475,-2.5900000000000003,44720542790.891174,9.220645243240787,9.341230680882544,5.85915383563074,225.77074317862395,9.84567114490726,16.574356371182564,5.601050810983688,0.0,1.4311996572326342,12.145603805395325,0.0,14.16893075269385,13.171245143024459,23.098670827325854,0.0,69.22553220685947,40.23165883244933,19.481930823566774,59.617039643082826,29.067976115277702,1.4311996572326342,4.9839785209472085,0.0,49.78535815827781,0.0,63.76971125896941,0.0,16.320587021833667,4.736862953800049,17.56166019069928,5.749511833283905,23.098670827325854,21.663142810989957,16.675792586665455,19.521005075637255,62.816933529939575,41.14999572149754,0.0,12.002274845782395,0.0,59.42,135.84496172703274,17.96578232709628,4.39041504767482,23.098670827325854,0.0,0.0,0.0,0.0,0.0,10.092786712054421,33.58323373443708,227.35601604430957,-0.45108130176976347,13.98679010983081,2.582790159894137,-13.799963191424041,-6.179759804559734,-9.542067372489628,-5.478070646197868,-15.391320664260219,0.0,0.30434782608695654,33,1,4,0,0,0,2,1,3,6,1,10,11,0,0,0,3,7.119140000000007,120.32980000000003,1,0,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +33613,CC1(C)S[C@@H]2[C@H](NC(=O)[C@H](N)c3ccc(O)cc3)C(=O)N2[C@H]1C(=O)O,0,13.648534265558073,-3.9929076009767366,13.648534265558073,0.3998843065437585,0.5530315284690744,365.4109999999997,346.25900000000007,365.1045417080005,134,0,0.32739938470277585,-0.5079666252286738,0.5079666252286738,0.32739938470277585,1.64,2.4,3.0,2.3280744505245,1399.965492255153,34.54952357383516,30.791130529283052,12.60762711021078,19.687387359808795,15.428647170550997,7.087006384051121,4.683321596236403,5.886516508231115,3.066325583075866,4.1351334833592945,2.0019461112051338,3.0583787427927387,-2.2600000000000002,670212231.7853906,5.617615138212268,5.921357991514545,2.827120047618735,174.95684225327514,26.14705644207955,31.97679784715966,1.4118420783282006,11.814359458703011,2.8623993144652684,5.969305287951849,9.589074368143644,4.794537184071822,0.0,11.761884949391115,12.08483741532659,31.352073141614945,12.971573790238878,10.96606844936176,48.02737395579759,29.545549696045974,2.8623993144652684,10.209723084138854,5.719716975726273,41.85440854502827,0.0,29.733126322350174,0.0,5.749511833283905,11.029530329014648,0.0,5.749511833283905,11.761884949391115,56.46512235903967,14.383611552215466,0.0,44.47574798102111,24.16967483065318,4.235526234984602,1.4311996572326342,0.0,132.96,122.81203645657347,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,26.28854533583295,147.61917291268048,-0.7041869920603687,39.39459490790666,3.223168626475283,-2.287243441249575,-7.836522715402446,-16.848667244517333,0.0,-7.976982720499382,0.0,0.4375,25,5,8,0,2,2,1,0,1,7,4,9,8,0,2,2,3,0.023700000000000443,90.69370000000004,1,0,0,0,0,0,0,1,1,1,3,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +135398741,CC(C)[C@H](N)C(=O)OCCOCn1cnc2c(=O)[nH]c(N)nc21,0,12.88512196568175,-4.434802193300276,12.88512196568175,0.08861848911970682,0.44214276395859164,324.34099999999967,304.18100000000004,324.1546031200006,126,0,0.32275628263485007,-0.46206895361928013,0.46206895361928013,0.32275628263485007,1.7391304347826086,2.608695652173913,3.347826086956522,2.6306086936636586,1433.8682409900641,34.10192981664245,30.816274734855202,10.816274734855202,18.920062514733917,15.17048762414115,5.43441964664136,3.558786212855014,3.558786212855014,2.0989430702050207,2.0989430702050207,1.18370239105176,1.18370239105176,-2.46,260200286.95776916,4.544818809025369,7.201217920264318,4.047252656578504,159.73028963452873,20.913159859052644,23.454240449995407,15.399404173368593,5.948339280986494,5.559266895052007,5.969305287951849,19.133177286164248,4.9839785209472085,4.9839785209472085,0.0,13.703784234591359,5.893957685363079,9.59530989319154,22.45766685007405,41.888851825866226,23.081522507322333,0.0,19.512059959915025,11.613674661089352,26.404596728843856,18.83768746155885,16.657175793090055,0.0,0.0,16.998700846504555,5.948339280986494,0.0,0.0,44.617228202049105,20.95118311757477,5.893957685363079,34.26516257714466,11.09790889803805,7.059210391641003,11.16387793838399,0.0,151.14000000000004,86.08040299210634,9.589074368143644,0.0,15.263819893746879,0.0,0.0,0.0,0.0,0.0,19.441682949494513,27.620588734194296,161.34491253725704,0.0,31.96078669752991,0.0,-4.886845807718668,-8.230624974150874,-4.434802193300276,-1.2544531959809737,-20.748973063636164,0.0,0.5384615384615384,23,5,10,0,0,0,0,2,2,9,3,10,11,0,0,0,2,-0.7975999999999985,82.28550000000001,0,0,0,1,0,4,1,0,0,0,1,1,0,0,0,3,1,2,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3033968,C#C[C@]1(O)C=C[C@H]2[C@@H]3CCC4=CC(=O)CC[C@@H]4[C@H]3CC[C@@]21CC,0,13.03031631510774,-5.034803476946337,13.03031631510774,1.236818001356241,0.5926554556303282,310.4369999999995,284.229,310.19328007200073,122,0,0.21257757760693347,-0.3733925836460667,0.3733925836460667,0.21257757760693347,1.6521739130434783,2.608695652173913,3.4347826086956523,2.5913536559248564,1677.9961566661505,39.00807168950777,37.316496580927726,11.316496580927726,21.374097093292214,19.316496580927726,6.408248290463863,5.010310363079829,5.010310363079829,3.8572172541558802,3.8572172541558802,2.672874145231931,2.672874145231931,-1.3299999999999998,4163911232.0678816,3.606102408893124,5.081884561369642,1.8944415732281934,175.2064471438656,5.1088081911072125,6.9718093671539085,5.783244946364939,1.4311996572326342,0.0,0.0,4.794537184071822,0.0,0.0,6.399401534821945,24.39750271225616,73.91752364149973,40.5738450503008,4.1122756685106605,44.17230927943456,5.783244946364939,1.4311996572326342,0.0,28.990821210849095,57.063417237585014,0.0,23.729319768175966,0.0,12.319835853677588,0.0,0.0,0.0,0.0,17.924303605688475,4.794537184071822,41.31065706452667,85.73133033085679,23.729319768175966,0.0,0.0,0.0,37.3,115.56680316297503,13.019088521093142,0.0,0.0,0.0,0.0,12.319835853677588,0.0,0.0,5.1088081911072125,27.47561222446681,227.35859947909483,0.0,13.03031631510774,4.433794930576811,-11.120030837952466,-20.295653572959903,-6.115037199561234,-31.52942882309925,-4.429226957873242,0.0,0.6666666666666666,23,1,2,4,0,4,0,0,0,2,1,2,3,2,0,2,4,3.6586000000000025,90.39880000000005,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +5291,Cc1ccc(NC(=O)c2ccc(CN3CCN(C)CC3)cc2)cc1Nc1nccc(-c2cccnc2)n1,0,14.117779672949656,-4.257134076527297,14.117779672949656,0.1547947353111847,0.38941616262964607,493.6149999999997,462.3670000000003,493.25900861200097,188,0,0.2551591618569856,-0.3238440024866884,0.3238440024866884,0.2551591618569856,1.135135135135135,2.0,2.810810810810811,1.7302940107470173,2716.8387318636514,52.63242734248992,49.038743458963566,18.038743458963566,30.496495126575706,25.176260100231506,9.781832909231593,6.525237536283216,6.525237536283216,4.060166798824536,4.060166798824536,2.477556872079145,2.477556872079145,-4.139999999999999,32021668447445.176,7.243215248119665,11.281649166992505,6.354664605160738,260.6264480195177,15.51953643742723,0.0,2.8236841566564013,5.948339280986494,5.907179729351506,0.0,14.678425435869507,9.967957041894417,0.0,0.0,18.127256122989884,67.25155295461498,95.43679648550857,23.513789225061316,47.37021946966463,23.230291559705126,0.0,24.75175502454258,0.0,13.348751801611623,43.582892344122776,95.63322718416822,0.0,11.257379486545457,10.619626706576751,17.323111830353618,0.0,0.0,63.62220039144012,6.496859684315945,6.851892117295679,61.236889788099255,78.94287270907722,2.8236841566564013,11.257379486545457,0.0,86.28000000000002,191.54254848456588,4.794537184071822,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,14.951935562841626,42.5756822855928,258.70665828975507,0.0,23.42489329715914,-0.6746118086801927,-8.840247980038681,-3.2058698626448487,-13.64341587055402,-2.82556050442917,-28.525178893900698,0.0,0.2413793103448276,37,2,8,0,1,1,2,2,4,7,2,8,9,0,1,1,5,4.590320000000004,146.8938999999998,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,5,2,0,0,1,0,0,0,0,0,0,0,1,0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +60857,CN(C)CCc1c[nH]c2ccc(C[C@H]3COC(=O)N3)cc12,0,11.920260903400408,-4.098335924762468,11.920260903400408,0.05546515442596789,0.8831305051919812,287.36299999999954,266.19499999999994,287.16337691200056,112,0,0.4070506145925941,-0.44735539675448166,0.44735539675448166,0.4070506145925941,1.7142857142857142,2.619047619047619,3.380952380952381,2.530815951261839,1444.7302829838702,33.13531001146206,31.1581373674276,10.158137367427601,18.451971039620062,15.822047210945565,5.427620019945648,3.6998690520252056,3.6998690520252056,2.2964267172426136,2.2964267172426136,1.4976563995700656,1.4976563995700656,-2.01,201890604.43747595,3.4857444306957728,5.773843252852653,3.187054599577715,153.44119078525281,19.923589308168154,6.558985242916289,2.8236841566564013,0.0,0.0,6.093240070938415,0.0,4.794537184071822,0.0,0.0,6.042418707663295,49.909244001943826,40.02178250125442,15.613202361541184,38.39949686176245,16.996165003019474,0.0,15.186726354368105,0.0,18.763742271008404,27.007498727796726,35.42705431719864,0.0,0.0,5.309813353288376,4.794537184071822,0.0,0.0,48.995544268164515,17.48271275645881,0.0,37.17131555062818,24.300151333804646,2.8236841566564013,10.902924932081056,0.0,57.36,108.40418340316211,4.794537184071822,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,4.736862953800049,28.868096723890574,173.72534796366944,0.0,11.06976003410309,-1.7083718006830828,-3.8071620947761815,0.0,-7.681528355819931,-10.961776707968369,-15.38626903852493,0.0,0.4375,21,2,5,0,1,1,1,1,2,3,2,5,7,0,1,1,3,1.9229,82.53240000000004,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,2,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9568512,CC(=O)Nc1ccc(/C=N/NC(N)=S)cc1,0,11.735213853098468,-3.2584013481288627,11.735213853098468,0.006588802544790884,0.41207082954964136,236.3000000000001,224.20399999999998,236.073182004,84,0,0.22074740862081874,-0.3748961944523358,0.3748961944523358,0.22074740862081874,1.8125,2.5625,3.1875,3.5671566520665197,811.6699273533369,22.13531001146206,19.60535096292756,8.421847543855286,12.622691343275092,9.515136661213592,4.134530569677621,2.234940345743497,2.600088717413607,1.1225016311176095,1.204151289210382,0.637023438506934,0.6778482675533203,-1.9499999999999997,455396.1732801678,3.5259966254176787,5.816077608367033,4.516033870212782,115.80842002562305,11.029530329014648,0.0,10.759805198037562,5.907179729351506,0.0,0.0,10.213353330464251,0.0,5.101407525739723,0.0,12.08483741532659,29.86616235007028,16.6515540604899,13.044444999588102,21.40797394674638,35.11552855054352,0.0,5.418816146392429,10.821124501465995,6.851892117295679,5.309813353288376,29.733126322350174,0.0,0.0,16.448346475407078,5.687386274683562,0.0,12.217873443046695,17.210268832813266,4.794537184071822,0.0,23.38141205835443,29.271082356392903,5.6473683133128025,0.0,0.0,79.51,59.48267354714268,4.794537184071822,0.0,16.448346475407078,0.0,0.0,0.0,0.0,0.0,17.31928096878642,16.613436762674564,89.0858452315389,4.513599684687833,11.735213853098468,2.201621073130813,-1.8130336938738258,-1.755111935856885,-3.8082777987738288,-0.9847883991559587,-3.2584013481288627,0.0,0.1,16,4,5,0,0,0,1,0,1,3,3,6,4,0,0,0,1,0.8120999999999998,68.26080000000002,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,2,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +73658,CC[C@H]1OC(=O)[C@H](C)C(=O)[C@H](C)[C@@H](O[C@@H]2O[C@H](C)C[C@H](N(C)C)[C@H]2O)[C@](C)(OC)C[C@@H](C)C(=O)[C@H](C)[C@H]2N(CCCCn3cnc(-c4cccnc4)c3)C(=O)O[C@]12C,0,17.249560693767513,-7.799758701317867,17.249560693767513,0.8821092737436791,0.18428343482926154,812.0180000000023,746.4979999999998,811.4731432800018,322,0,0.41043606518068704,-0.45750160330158407,0.45750160330158407,0.41043606518068704,1.1379310344827587,2.0172413793103448,2.7413793103448274,2.5126869946832153,4494.537852270892,98.81710828733677,92.81855088213841,27.818550882138414,53.03750621174837,46.87699883969256,14.468750549228693,10.3729249217159,10.3729249217159,6.7849960654797945,6.7849960654797945,4.233359104776403,4.233359104776403,-3.7600000000000002,8.227539657463277e+40,10.12260744387105,18.660074978896265,9.331029340387971,434.03987414770614,43.16004206959976,25.207997241798214,17.650374125885527,1.4311996572326342,0.0,12.062545358890265,19.367590073162674,9.77851570501903,0.0,0.0,27.407568469182717,85.30868419172069,133.609985172265,56.33765738460134,135.69981929128866,23.62903525162014,1.4311996572326342,24.334876151386727,23.575830741452314,147.00065816433178,27.486465943763022,36.9068947617371,0.0,11.257379486545457,0.0,4.794537184071822,0.0,0.0,135.81442223011325,44.56478600553165,23.575830741452314,174.40830903990616,36.9068947617371,0.0,11.257379486545457,0.0,171.85,284.2231834589422,21.932136898723517,19.178148736287287,0.0,0.0,0.0,0.0,0.0,0.0,29.287354094401774,76.70133626100332,604.5917807959081,0.0,67.90809861582079,3.954578119639108,-17.584595842876197,-43.49906399979591,-16.218705909563663,-76.31156959136783,-72.14805051416944,-5.942471673595219,0.7209302325581395,58,1,15,0,3,3,0,2,2,14,1,15,23,0,3,3,5,4.929200000000005,214.2507999999992,0,1,0,0,0,3,0,0,0,0,4,4,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,5,0,0,0,0,0,1,0,0,0,2,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +5757,C[C@]12CC[C@@H]3c4ccc(O)cc4CC[C@H]3[C@@H]1CC[C@@H]2O,0,9.518316562736207,-4.835956986961452,9.518316562736207,1.21609037468931,0.757169743555686,272.3879999999997,248.19599999999994,272.17763000800045,108,0,0.29309232468190016,-0.5079560321952997,0.5079560321952997,0.29309232468190016,1.45,2.45,3.3,2.547205329303218,1451.4257327470716,34.87831517751085,33.816496580927726,9.816496580927726,19.235416320188733,17.47474487139159,5.658248290463863,4.408248290463863,4.408248290463863,3.2436862178478973,3.2436862178478973,2.2411086270779395,2.2411086270779395,-1.02,513069566.5201672,2.902268906370586,4.2366779154371,1.604791759224291,154.27431505634252,10.217616382214425,5.749511833283905,0.0,1.4311996572326342,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,12.894310824958975,84.54615333218287,24.673654011063956,11.563052251630868,40.37430461795928,0.0,2.8623993144652684,0.0,17.202905840122938,57.063417237585014,0.0,29.254159106383874,0.0,5.749511833283905,0.0,0.0,5.749511833283905,0.0,19.160033723629684,6.372924901329379,17.202905840122938,85.89406552844443,18.127256122989884,0.0,0.0,0.0,40.46,109.26999401737575,4.1122756685106605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,28.906811881699447,207.26397140901554,0.0,0.0,8.232522811951021,-7.955262358801546,-15.225083666450463,-4.339652620307382,-31.418885529737366,-4.55761004566989,0.0,0.6666666666666666,20,2,2,3,0,3,1,0,1,2,2,2,3,2,0,2,4,3.6092000000000026,78.73060000000005,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +78759347,Nc1nc2c(c(=O)[nH]1)N(C=O)C(CNc1ccc(C(=O)N[C@@H](CCC(=O)[O-])C(=O)[O-])cc1)CN2,0,13.32699978110583,-4.72593728056383,13.32699978110583,0.4068294284752847,0.2145563580923106,471.4299999999999,450.2620000000003,471.15134317182054,180,0,0.2780365803125697,-0.5501702476343007,0.5501702476343007,0.2780365803125697,1.5588235294117647,2.2941176470588234,2.911764705882353,2.3543745442158017,2040.7939191967214,43.25411216497907,36.98823320174675,15.988233201746748,24.607518900576544,18.492645758122976,8.309364185123227,5.537575156364812,5.537575156364812,3.4169696636170794,3.4169696636170794,2.089570969522849,2.089570969522849,-4.62,83910815793.32062,8.624731534950119,10.331188737541908,5.590553976434179,221.5694924974959,46.35119592426693,1.3707585561702202,19.97630152248779,12.3344862263043,11.466446624403513,0.0,19.360614822444717,0.0,4.9839785209472085,0.0,0.0,36.91552463331194,35.69689664764518,31.712675786353337,58.42363433849124,47.372911858761654,0.0,15.270795144464838,0.0,24.78163473935805,34.23297278178539,40.086930401474,0.0,0.0,42.321388451175295,23.140974608188646,0.0,0.0,59.22242334708064,14.383611552215466,0.0,43.6652168209809,28.964212014725,8.471052469969203,0.0,0.0,225.49999999999997,151.96672922082496,34.18574071004052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,29.0324308125225,169.40418554228017,0.0,64.74716329544084,20.521337085261667,-7.429328047682116,-11.237604741991998,-16.156044182697546,-11.493516673200963,-8.52285894407672,0.0,0.3,34,6,14,0,1,1,1,1,2,11,5,14,10,0,0,0,3,-3.4004999999999956,115.52470000000002,2,0,0,1,0,2,1,0,2,2,4,4,0,0,0,2,4,1,0,0,0,1,0,0,0,0,0,2,0,4,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5361092,Oc1ccc2c(c1)[C@@]13CCCC[C@@]1(O)[C@@H](C2)N(CC1CCC1)CC3,0,9.876097174981105,-5.033152045540441,9.876097174981105,1.1596345899470903,0.875191488403328,327.4679999999995,298.23600000000005,327.21982916800084,130,0,0.29309232899022675,-0.5079556426722672,0.5079556426722672,0.29309232899022675,1.3333333333333333,2.25,3.125,2.259523747237819,1785.9905613788956,41.95566544670048,40.763710176427686,11.763710176427685,23.101441723973174,21.145565264641526,6.829068683713801,5.292934155204754,5.292934155204754,3.9979845927395683,3.9979845927395683,2.8391570019696144,2.8391570019696144,-1.06,24603848849.366768,3.5287568643506786,5.21754132725791,1.9148250470621127,185.14799641704553,10.217616382214425,5.749511833283905,0.0,1.4311996572326342,1.4311996572326342,0.0,4.899909730850478,0.0,0.0,0.0,25.161193411651436,73.84010717637588,49.45718941397747,11.084085035664568,47.2280973988104,0.0,2.8623993144652684,4.899909730850478,5.893957685363079,74.39025786069452,12.99371936863189,29.254159106383874,0.0,5.749511833283905,0.0,0.0,5.749511833283905,0.0,42.59258807549539,11.787915370726159,5.893957685363079,99.12078321062486,18.127256122989884,0.0,0.0,0.0,43.7,133.18151558520776,9.59530989319154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,30.277570437869663,254.52901579404954,0.0,-1.1596345899470903,8.883032082987128,-13.423330748194346,-5.950700571691286,-9.921826172898506,-40.42121577635383,-9.785340017951626,0.0,0.7142857142857143,24,2,3,3,1,4,1,0,1,3,2,3,4,2,1,3,5,3.3656000000000015,94.22560000000006,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +10695961,CO/N=C(\C(=O)N[C@@H]1C(=O)N2C(C(=O)[O-])=C(COC(C)=O)CS[C@H]12)c1csc(N)n1,0,13.438609131107045,-3.945812781888618,13.438609131107045,0.1293201873437302,0.203529370991991,454.46599999999984,438.33800000000014,454.0496634319105,160,0,0.3024513719473569,-0.5431928756541049,0.5431928756541049,0.3024513719473569,1.7333333333333334,2.566666666666667,3.2333333333333334,2.1801006897739947,1561.4564150004003,35.74819418658442,29.910302591674558,15.54329575353001,20.541906535431785,14.986165894867922,8.777518270223496,4.8963376430967465,6.46468092676157,3.184250036294053,4.628981287946036,2.0749456541529345,3.3743478775248947,-3.13,1485530795.7801073,8.931993221236064,8.706448435658249,4.088768777897329,200.27756459108042,30.505046445463854,30.65868261716741,15.078769717594637,0.0,11.814359458703011,5.969305287951849,19.283521283065944,4.9839785209472085,0.0,23.098670827325854,5.15571272675054,0.0,30.339860723033798,22.63241305036944,55.914515133862174,57.6948843445426,0.0,15.193701605086062,5.15571272675054,18.219709037815747,25.02161156267531,22.32018624764116,0.0,0.0,16.13605772385535,5.131558479839333,0.0,23.098670827325854,70.0182547966442,28.75260027382397,0.0,30.365681342356996,21.78197097954324,4.235526234984602,0.0,0.0,176.34000000000003,111.50970169230217,24.284676131127995,0.0,21.95641258451149,0.0,0.0,0.0,0.0,0.0,19.71414278523443,22.05538746519746,127.27948953863265,-0.29136233827278124,58.29382115972028,9.71153735693229,-9.643322286766885,-8.879574518154863,-3.685430327223483,0.0,-7.573417986085501,-3.3784072654483825,0.375,30,3,12,0,2,2,0,1,1,12,2,14,10,0,1,1,3,-1.9571999999999958,103.7611,1,0,0,1,0,1,0,0,1,1,4,4,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +123619,Cc1ccc(-c2ncc(Cl)cc2-c2ccc(S(C)(=O)=O)cc2)cn1,0,12.552351419798697,-5.388475311684068,12.552351419798697,0.6796020066977404,0.7044044148957774,358.84999999999985,343.73000000000013,358.0542764000004,122,0,0.1750185287560868,-0.260903807429513,0.260903807429513,0.1750185287560868,1.0416666666666667,1.7916666666666667,2.5,2.5785416581040943,1623.577833229809,30.15181786940711,26.497136535400735,13.069562062346913,17.56717945627467,13.574991051301726,7.936118771905346,4.2909703604297365,6.0840566992893805,2.6804178758861035,3.6010060434084594,1.6815368158186128,2.189076458705944,-2.2399999999999993,86165275.15259019,6.242320351963502,6.338787742293893,3.4711425767133797,166.71799383349665,0.0,0.0,9.837253136417502,0.0,0.0,0.0,9.967957041894417,8.417796984328938,0.0,0.0,23.685777305559107,42.627437147309145,43.57509683800977,27.94887178963954,28.97917532688223,21.43819302665002,0.0,9.967957041894417,0.0,11.747375592813455,6.1839241011164585,65.35928268386238,0.0,22.384282469939446,0.0,0.0,0.0,11.600939890232516,24.569678127339813,9.837253136417502,6.851892117295679,26.255306337401755,59.538204850790365,5.022633313741326,22.384282469939446,0.0,59.92,115.51211798414924,8.417796984328938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,32.162318232785815,143.45196358924505,5.991271504469555,5.903036027599743,-0.6796020066977404,-3.9077260001337724,0.0,-7.681660044450901,-5.499981280652503,-2.9943820332509254,-5.388475311684068,0.1111111111111111,24,0,4,0,0,0,1,2,3,4,0,6,5,0,0,0,3,4.175920000000004,95.76080000000003,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0 +5282379,CC1=C(/C=C/C(C)=C/C=C/C(C)=C\C(=O)O)C(C)(C)CCC1,0,11.733719228274325,-4.577992385879117,11.733719228274325,1.6915554136152984,0.5295731957656133,300.44199999999944,272.21799999999996,300.2089301360008,120,0,0.32806880570998265,-0.47806674460562104,0.47806674460562104,0.32806880570998265,1.4090909090909092,2.272727272727273,2.9545454545454546,5.000603827806987,1530.651025621338,40.55795974227243,38.816496580927726,10.816496580927726,21.683515962285192,19.316496580927726,5.408248290463863,3.662457478565265,3.662457478565265,1.9770620726159658,1.9770620726159658,1.1020620726159658,1.1020620726159658,-1.8299999999999996,2207360415.0210614,3.194455417028018,7.975506503757992,5.8849787267796065,173.60090500198027,5.1088081911072125,0.0,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,0.0,55.11035202490772,56.23565058541048,34.83800142561019,8.224551337021321,46.913826391775004,5.969305287951849,1.4311996572326342,0.0,5.41499046939678,53.37823529046653,0.0,58.60484859649046,0.0,0.0,0.0,0.0,0.0,0.0,11.078113479059063,4.794537184071822,5.41499046939678,90.38871630706241,58.60484859649046,0.0,1.4311996572326342,0.0,37.3,123.36737964430564,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,38.441680673828586,224.8543234458424,0.0,11.733719228274325,3.4836657968033538,-12.589863236749686,-1.9951314409032916,-11.558530141783002,-13.135666658803158,-20.70918365934771,0.0,0.45,22,1,2,1,0,1,0,0,0,2,1,2,10,0,0,0,1,5.602600000000005,93.76180000000005,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2907,O=P1(N(CCCl)CCCl)NCCCO1,0,13.434938271604938,-6.129135802469133,13.434938271604938,0.9144367283950618,0.6057206690801091,261.089,245.969,260.0248197100001,84,0,0.3429836890948602,-0.30596634526037897,0.3429836890948602,0.30596634526037897,1.6428571428571428,2.2857142857142856,2.857142857142857,3.9833136861092258,679.7589352862119,23.8618073195658,21.414066313446057,8.82035139648288,12.22783272335024,10.465270978661165,5.304283072519882,1.74512194825914,3.886814508545574,0.996925617198157,2.553304582353536,0.5336224146574723,1.726100681881693,0.69,249702.06734868183,3.123261134110519,6.311144001092418,3.36838444118429,115.57414914225376,4.5237471617118175,1.4118420783282006,0.0,0.0,0.0,7.670279738874966,4.565048284931329,9.750736002280497,0.0,23.20187978046503,0.0,6.372924901329379,47.60389517373793,9.300502355256729,29.69125731135442,30.872159519339995,0.0,9.750736002280497,0.0,6.372924901329379,37.71377774261154,0.0,0.0,0.0,5.080319812359198,0.0,0.0,30.872159519339995,42.38419393253284,9.088795446643147,0.0,25.563544687712454,0.0,1.4118420783282006,0.0,0.0,41.57000000000001,61.50771838509638,4.565048284931329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5237471617118175,43.80434164517633,130.77269928753392,10.538563861244084,0.0,-0.9144367283950618,0.0,-7.388903848576472,0.0,-3.721504393424037,-15.879504598135556,-6.129135802469133,1.0,14,1,4,0,1,1,0,0,0,2,1,7,5,0,1,1,1,1.884,59.19120000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4342,CCN(CC)CCNC(=O)c1ccc(NC(C)=O)cc1,0,13.153590403754091,-4.567235679108651,13.153590403754091,0.5237629515550033,0.7974414739790291,277.36799999999954,254.18399999999994,277.1790269760006,110,0,0.2508256469094607,-0.35075278137301136,0.35075278137301136,0.2508256469094607,1.35,2.05,2.65,3.9498928488570817,1209.3731276684753,34.850852961085884,32.6581373674276,9.6581373674276,18.645511159824405,16.117923065713633,4.723495874713716,2.840142516441851,2.840142516441851,1.581874657095915,1.581874657095915,0.8358082520585921,0.8358082520585921,-1.88,140316471.16195986,3.1409389998334576,8.32258378132446,5.401598183903249,152.32891915490973,15.51953643742723,0.0,2.8236841566564013,5.907179729351506,5.907179729351506,0.0,9.589074368143644,0.0,0.0,0.0,13.703784234591359,37.163394199285065,51.65782759486147,8.224551337021321,41.198688204374676,17.501745733386574,0.0,10.209723084138854,0.0,20.555676351887037,31.297252090552156,29.733126322350174,0.0,0.0,10.619626706576751,5.687386274683562,0.0,0.0,42.701707926817264,4.794537184071822,0.0,59.69959470723054,24.16967483065318,2.8236841566564013,0.0,0.0,61.440000000000005,109.29752358231482,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.609613836231013,176.9670804420753,0.0,23.95747255729582,-1.5920049520589084,-2.821446492795925,-4.2443385567956655,-5.850517466373345,0.0,-29.332912198013933,0.0,0.4666666666666667,20,2,5,0,0,0,1,0,1,3,2,5,10,0,0,0,1,1.7165999999999995,80.86690000000004,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +84003,O=C(c1ccccc1)c1ccc2n1CCC2C(=O)O,0,13.251209923784327,-3.494257317124381,13.251209923784327,0.12960837112622836,0.855918702387755,255.27300000000008,242.16899999999995,255.089543276,96,0,0.31207412148477615,-0.4807387545756237,0.4807387545756237,0.31207412148477615,1.368421052631579,2.1578947368421053,2.8947368421052633,2.460997815020532,1175.151978502949,24.712660280651683,22.171958466891546,9.171958466891548,14.510866231474818,11.441441119409596,5.033192828945732,3.5110088147971132,3.5110088147971132,2.4222879916145597,2.4222879916145597,1.587068662401646,1.587068662401646,-2.3600000000000003,5638771.353767776,4.065873568160133,4.387759596716938,1.8518175588367969,128.19507336421674,9.675907838898567,0.0,0.0,5.783244946364939,1.4311996572326342,5.969305287951849,9.589074368143644,0.0,0.0,0.0,30.212093538316473,18.45776231665597,24.6080319517125,21.183195573403076,31.146985233293492,11.75255023431679,1.4311996572326342,4.567099647791355,0.0,18.763742271008404,0.0,59.248238435036974,0.0,0.0,0.0,0.0,0.0,0.0,21.428458073215356,11.291396868387768,0.0,50.46182992620088,42.29693095364306,0.0,1.4311996572326342,0.0,59.3,89.76453094036218,9.589074368143644,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,17.880302331275274,102.66707639964721,0.0,25.42369664638378,3.698724633818429,-3.1375112066431505,-6.76708246442644,-6.729635377407519,-3.494257317124381,-3.4110113142479213,0.0,0.2,19,1,4,0,1,1,1,1,2,4,1,4,3,0,0,0,3,2.291,69.30030000000002,1,0,0,0,0,1,0,0,1,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12560,CC[C@H]1OC(=O)[C@H](C)[C@@H](O[C@H]2C[C@@](C)(OC)[C@@H](O)[C@H](C)O2)[C@H](C)[C@@H](O[C@@H]2O[C@H](C)C[C@H](N(C)C)[C@H]2O)[C@](C)(O)C[C@@H](C)C(=O)[C@H](C)[C@@H](O)[C@]1(C)O,0,16.630407770417126,-8.173020360922147,16.630407770417126,2.011765584276512,0.2378725059837351,733.9370000000027,666.4010000000002,733.4612412040019,298,0,0.3111884202841215,-0.45893658117068553,0.45893658117068553,0.3111884202841215,1.0,1.9019607843137254,2.5098039215686274,3.9410924874107915,3723.848857442462,96.0102254006209,91.25444137153018,24.25444137153018,50.4873877918371,45.34042060497593,12.299179152656636,9.164437826397606,9.164437826397606,5.727322812638752,5.727322812638752,3.326460870646796,3.326460870646796,-1.3000000000000005,3.903983552467088e+38,8.365903934011325,17.014478793825404,9.506326969189503,398.1613664957132,58.86512840918685,29.62434983819859,12.532156737073795,7.155998286163171,0.0,5.969305287951849,9.589074368143644,0.0,0.0,0.0,27.407568469182717,74.1817812083267,104.27781213699157,65.31601067229329,148.5413235290334,11.75255023431679,7.155998286163171,4.899909730850478,23.575830741452314,178.0039666322487,20.98960625944708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,154.33545132028803,38.010252090943936,23.575830741452314,178.9976512608277,0.0,0.0,0.0,0.0,193.91,239.2218635983154,28.785929679574615,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,44.491492770736265,72.83082499674234,625.5363266205004,0.0,31.124496878563114,19.73728314737022,-20.99101393468731,-39.55482553880237,-6.328170155038931,-95.20018880631707,-72.51574658856443,-5.224828289690745,0.9459459459459459,51,5,14,0,3,3,0,0,0,14,5,14,25,0,3,3,3,1.785600000000004,186.25799999999953,0,5,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2450,O=[N+]([O-])C(Br)(CO)CO,0,10.584375,-3.3322916666666673,10.584375,1.4066666666666667,0.2738439535871248,199.98800000000006,193.94,198.948019772,54,0,0.3190347894884574,-0.38777245810455446,0.38777245810455446,0.3190347894884574,1.8888888888888888,2.3333333333333335,2.5555555555555554,5.554108750032124,244.7615617709742,12.491563831562722,9.958171230364638,5.544167769479341,6.564696016533708,4.502482277316293,2.4789839659459183,1.0833383900444242,2.2309762669557642,0.5220815822838302,1.1353837970375036,0.09536893258332635,0.09536893258332635,-0.20000000000000012,918.338930491155,2.811342155009452,3.0921810699588486,1.8844584889399605,68.1812896064173,10.217616382214425,13.117970485832577,0.0,2.8623993144652684,0.0,4.448193276518764,10.114318268765572,0.0,0.0,0.0,0.0,0.0,20.85325494676702,5.483034224680881,20.623961655712975,15.929943897949348,2.8623993144652684,0.0,0.0,4.448193276518764,13.117970485832577,10.114318268765572,0.0,0.0,0.0,0.0,0.0,15.929943897949348,35.569490507848705,0.0,10.114318268765572,5.483034224680881,0.0,0.0,0.0,0.0,83.60000000000001,22.489474811169014,10.114318268765572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.147560280163773,8.34543353914615,37.340833333333336,2.174166666666667,9.177708333333333,17.471875,0.0,0.0,0.0,0.0,-6.664583333333334,0.0,1.0,9,2,5,0,0,0,0,0,0,4,2,6,5,0,0,0,0,-0.6611,32.82399999999999,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5334,CC(=O)Nc1ccc(S(=O)(=O)Nc2ccc([N+](=O)[O-])cc2)cc1,0,13.09019447593852,-5.568412265369107,13.09019447593852,0.4707436224230541,0.6420030076597153,335.34099999999984,322.2370000000001,335.05759151600034,120,0,0.2690761075112831,-0.3263376799040757,0.3263376799040757,0.2690761075112831,1.173913043478261,1.7391304347826086,2.260869565217391,2.844955769245415,1354.54850461631,28.23760430703402,23.791130529283052,11.60762711021078,16.20491223658291,11.828158563302196,6.873794701102919,3.615363719596076,5.156318875551307,2.0528150980577173,3.195779239710604,1.1829132912901301,1.9658616007428582,-2.94,18659963.07576657,6.281848149564391,6.443999313378464,4.266085008377914,150.27410940318714,5.309813353288376,0.0,2.8236841566564013,5.907179729351506,15.710677428091145,0.0,19.623975066571525,8.417796984328938,0.0,0.0,0.0,36.25451224597977,34.42377775050006,20.7848629736972,36.03767349174725,32.99262970680977,0.0,0.0,0.0,11.747375592813455,10.024932967022508,58.45366793007193,0.0,0.0,10.024932967022508,17.062158824050687,0.0,0.0,19.248287762498112,14.817828337479405,10.114318268765572,21.930236235168096,53.23483313682413,2.8236841566564013,0.0,0.0,118.41,108.02759897676981,23.32665243716633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.90202827452882,124.87975482923382,0.0,20.127982417416803,10.587315506873294,-3.8749640713274296,-1.9346746779165052,-10.95375126222737,0.0,-3.4299171433501705,-5.568412265369107,0.07142857142857142,23,2,8,0,0,0,2,0,2,5,2,9,6,0,0,0,2,2.354,84.65060000000001,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +6321299,CN1[C@@H]2CC[C@@H]1CC(OC(=O)C(CO)c1ccccc1)C2,0,13.738502102229777,-4.62770396352986,13.738502102229777,0.7467424471255191,0.8605899449393155,289.3749999999995,266.1909999999999,289.16779359600065,114,0,0.3155498550108651,-0.4617237756087618,0.4617237756087618,0.3155498550108651,1.6666666666666667,2.380952380952381,3.0,2.471937191995878,1339.9460051239237,35.0330157158901,33.171958466891546,10.171958466891546,19.229939140948776,16.895565264641526,5.487316974177664,3.7283295611540543,3.7283295611540543,2.4613284593044154,2.4613284593044154,1.5271577294479355,1.5271577294479355,-1.3899999999999997,432585156.0905186,3.41276114379116,6.1594002436145106,2.965447272746595,157.6642305847381,14.745580875757739,11.973975712313067,0.0,1.4311996572326342,0.0,5.969305287951849,4.794537184071822,0.0,0.0,0.0,30.212093538316473,38.03097799729676,31.226404723082364,17.525053692278046,44.796896564723944,5.969305287951849,1.4311996572326342,4.899909730850478,0.0,49.50146025432987,13.534812143198534,35.77554503001347,0.0,0.0,0.0,0.0,0.0,0.0,49.05983797398998,9.53140013787187,0.0,67.10579701812247,30.212093538316473,0.0,0.0,0.0,49.769999999999996,109.68103244634423,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,31.58788789297747,192.41595807001738,0.0,12.991759655104257,3.7801554388973213,-1.620180487318384,-6.975462962962965,-15.188795732391878,-22.08654021110664,-8.150227103572444,0.0,0.5882352941176471,21,1,4,0,2,2,1,0,1,4,1,4,6,0,2,2,3,1.9308999999999996,79.95580000000005,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3019,CC1=NS(=O)(=O)c2cc(Cl)ccc2N1,0,12.04152620307382,-4.608703703703701,12.04152620307382,0.1370293209876543,0.7403757754864233,230.67600000000004,223.61999999999998,229.991676144,74,0,0.2855565485557133,-0.3421572598768416,0.3421572598768416,0.2855565485557133,1.7142857142857142,2.5,3.2142857142857144,2.948609376841214,774.0557753524869,16.325908934703556,13.497136535400733,8.069562062346913,9.392569962861558,6.777047889654829,5.147862095964738,2.368476808857178,4.287396437821639,1.4113065153126114,2.8249025515628867,0.912139761354413,2.0417365999098385,-1.07,23007.496791182424,4.200886574112649,2.963490260121695,1.486092875465252,96.5575331169389,5.309813353288376,10.731103261275045,1.4118420783282006,0.0,10.023291153407584,0.0,0.0,0.0,8.417796984328938,4.397710993081425,11.600939890232516,24.979148240285564,9.134908982251988,9.799661943194222,18.054190399678454,33.14723710408093,0.0,0.0,4.397710993081425,11.747375592813455,5.309813353288376,23.14988943673121,0.0,0.0,5.309813353288376,5.687386274683562,0.0,11.600939890232516,14.253416770086208,10.023291153407584,0.0,15.076443454316998,27.420450591589084,6.434475392069527,0.0,0.0,58.53,56.443562243393075,8.417796984328938,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,4.397710993081425,21.237333305582034,79.24997207524984,5.622417971046442,-0.8504629629629628,-0.4432867220962453,-0.7124768518518512,-1.0790532879818586,-2.2230166603678496,0.0,-3.010945412887377,-4.608703703703701,0.125,14,1,4,0,1,1,1,0,1,3,1,6,1,0,0,0,2,1.8726,55.369500000000016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +24857286,Cc1cc(OCCCS(C)(=O)=O)cc(C)c1-c1cccc(COc2ccc3c(c2)OC[C@H]3CC(=O)O)c1,1,12.63710179090328,-6.361409652424709,12.63710179090328,1.3246132888442832,0.3393001368722835,524.6350000000004,492.37900000000036,524.1868743640008,196,0,0.30359889543091256,-0.493545006844167,0.493545006844167,0.30359889543091256,1.2162162162162162,2.054054054054054,2.810810810810811,2.12712578206964,2716.8159839320847,54.298082239349085,49.765986323710905,18.58248290463863,30.450971813025483,25.28282307611651,10.857738033247042,6.4927012102660955,7.70369893088458,3.9841092410329058,4.354900052931502,2.615423023185005,2.7914540594929873,-3.5199999999999996,26264236791966.594,7.531647523801207,11.253890126758746,7.037665231592724,262.5216398225028,19.31939705250736,33.64477387918551,0.0,0.0,1.4311996572326342,5.969305287951849,4.794537184071822,8.417796984328938,0.0,0.0,24.16967483065318,72.0636414250589,45.615888884563375,45.75723061486545,75.02524646218498,15.806558424369351,1.4311996572326342,0.0,0.0,38.902576965529484,25.006851472099196,76.63557433575764,0.0,28.375438483245706,14.210588861400147,0.0,17.248535499851716,0.0,44.50276193548719,21.190775563405612,13.703784234591359,83.38712869608663,54.38176836896965,0.0,12.558102640626625,0.0,99.13000000000001,184.72699968100144,13.212334168400758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,58.135303759909654,303.32121294181314,0.0,12.263152061905181,3.590086414353073,-14.376147962850784,-10.669539911839724,-14.384516544735847,-12.988236310916246,-20.31126770197069,-6.361409652424709,0.3448275862068966,37,1,7,0,1,1,3,0,3,7,1,8,14,0,0,0,4,5.313640000000005,142.4375999999999,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +135400182,Cc1nc2ccc(CN(C)c3ccc(C(=O)N[C@@H](CCC(=O)O)C(=O)O)s3)cc2c(=O)[nH]1,0,13.544488078746143,-4.432719047856866,13.544488078746143,0.2897353364062645,0.3796834810105909,458.49599999999975,436.32000000000016,458.1260054240005,168,0,0.32572161370070435,-0.4812292557834552,0.4812292557834552,0.32572161370070435,1.46875,2.34375,3.09375,2.3740390475817157,2114.978451385985,42.220731970159456,37.14659241524687,15.9630889961746,24.235282208405852,18.606378113532905,8.71195092253299,5.350003053578739,6.349073820341518,3.224024861657455,4.182816929740728,1.9835043279653048,2.650862037691216,-3.73,62357777264.63404,7.694689225848229,9.60254253462119,5.491508086574946,217.2773566619717,25.404342736582528,11.842296966349572,2.8236841566564013,0.0,14.328845938868781,11.938610575903699,14.383611552215466,9.77851570501903,0.0,11.336785877934737,6.042418707663295,42.957943340975234,33.55319704762977,31.747222551831978,52.098566102150286,45.086583091958865,2.8623993144652684,15.270795144464836,0.0,32.11249407262003,11.875736631132725,56.83090080083852,0.0,0.0,15.768989979190861,5.001081976687867,0.0,11.336785877934737,51.01810784727798,16.08593405245959,6.851892117295679,58.47904418119282,35.006630722388294,2.8236841566564013,13.765324246546324,0.0,152.69,130.1842951569815,19.178148736287287,0.0,21.213698879014466,0.0,0.0,0.0,0.0,0.0,15.201594903161634,30.359737482185626,175.6960440688598,-0.3471995397613188,52.598177144462575,3.4999247431332776,-4.016911012700312,-8.340946554724018,-11.156035954292316,-8.660030725081365,-10.93968883656298,0.0,0.2857142857142857,32,4,10,0,0,0,1,2,3,9,4,11,11,0,0,0,3,1.9772200000000002,119.28650000000007,2,0,0,0,0,2,1,0,2,2,3,1,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1520267,COc1ccc(S(=O)(=O)N2CCCN(S(=O)(=O)c3ccc(OC)c(OC)c3)CC2)cc1OC,0,14.510643627744528,-6.918012071051198,14.510643627744528,1.5652985221164797,0.5395691441612365,500.59499999999986,472.3710000000004,500.1287078560007,182,0,0.24275413578867902,-0.4928688234668222,0.4928688234668222,0.24275413578867902,0.696969696969697,1.0909090909090908,1.4848484848484849,2.626076630432478,2160.44340212605,48.41133089340096,43.476910095638544,17.109903257494,26.57070941612481,21.71748368165601,10.597610339257288,5.244094606431817,8.691153290012387,3.4185625439564307,6.185207410097231,1.9644683742967308,3.7866350775458226,-2.54,350216428084.4012,7.23201133792977,10.160982757584021,5.029364759916139,233.60171924956435,18.947451815200196,0.0,22.99804733313562,20.046582306815168,0.0,0.0,0.0,16.835593968657875,8.610431982592468,0.0,0.0,30.54259973198256,51.7798617142926,62.616430797629924,74.16428535662426,20.046582306815168,0.0,8.610431982592468,0.0,16.16389185236493,54.13924857279413,36.25451224597977,0.0,22.99804733313562,18.947451815200196,0.0,22.99804733313562,0.0,79.58527452404448,20.046582306815168,0.0,44.75416447409556,46.04547919701532,0.0,0.0,0.0,111.68000000000002,158.21271429368213,16.835593968657875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.947451815200196,38.38123957276617,296.60942940772145,0.0,-4.577966061808469,0.0,0.0,-6.963232436967453,-11.720977732403913,-5.023459152830097,-20.457080946333754,-28.783379744044517,0.42857142857142855,33,0,10,0,1,1,2,0,2,8,0,12,12,0,1,1,3,1.8062999999999996,121.22660000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 +2754,O=C1CCc2cc(OCCCCc3nnnn3C3CCCCC3)ccc2N1,0,12.431926150530295,-4.521870859569726,12.431926150530295,0.3280122266513317,0.755913406639335,369.46899999999965,342.25300000000016,369.2164751040008,144,0,0.2242130347643238,-0.4935883136998973,0.4935883136998973,0.2242130347643238,1.3703703703703705,2.259259259259259,3.1481481481481484,1.9179098709405689,1873.7865466421417,42.60192981664245,40.05256455842752,13.052564558427518,23.619750146312246,20.527620019945648,7.080406424445691,4.5617134840722455,4.5617134840722455,2.886591390489549,2.886591390489549,1.8074182715298672,1.8074182715298672,-2.44,49945015209.153595,4.5796280991735525,8.499674795088241,4.458720035749624,197.02170871124966,10.046676307088426,5.749511833283905,7.236246576328128,5.907179729351506,0.0,0.0,4.794537184071822,4.681802935145185,0.0,5.098681808301038,19.118774703988137,65.9821023126435,45.84840720074675,20.80142904828725,46.582964676625814,11.594566004035068,0.0,20.20725493475596,0.0,69.74714148164342,11.868798596204664,29.515112112686808,0.0,5.749511833283905,10.046676307088426,5.687386274683562,5.749511833283905,0.0,32.67341990702375,17.54038698673058,0.0,104.0288701291072,18.127256122989884,1.4118420783282006,0.0,0.0,81.93,127.8471196097107,4.794537184071822,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,15.525451999610773,41.788427492553986,227.87102681507125,0.0,12.431926150530295,8.800177457660217,-2.4527894560774532,-5.325814944538533,-8.58723229739103,-41.531974598158676,-4.3719857937627165,0.0,0.6,27,1,7,1,1,2,1,1,2,6,1,7,7,1,0,1,4,3.4647000000000014,101.76470000000005,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +5070,Nc1nc2ccc(OC(F)(F)F)cc2s1,0,12.23600245653817,-5.087186437074831,12.23600245653817,0.10858571900982628,0.8248286060077297,234.202,229.16199999999995,234.00746844,80,0,0.5725971228441953,-0.4057433334986517,0.5725971228441953,0.4057433334986517,1.5333333333333334,2.3333333333333335,3.0,2.718485724503682,674.4017011709091,15.24012249707665,11.844817190955322,7.661313771883048,9.114879522194052,5.94869087469142,4.370760264619229,2.4260975573846713,3.4036183647505767,1.3551567865204663,2.12855344865444,0.8953843489762607,1.5519670790037332,-1.5000000000000002,22579.839592188135,5.547337278106509,3.265432098765432,2.295918367346939,93.42902891760085,10.456579929526322,5.749511833283905,7.9552426364957345,0.0,0.0,6.362358859030383,0.0,4.9839785209472085,0.0,13.171245143024459,11.336785877934737,12.08483741532659,6.042418707663295,14.328896302596021,24.844067921991563,26.68496499185943,0.0,4.9839785209472085,0.0,6.362358859030383,5.719716975726273,18.127256122989884,0.0,5.749511833283905,10.456579929526322,18.30280362286379,5.749511833283905,11.336785877934737,11.34633737997759,0.0,0.0,4.1122756685106605,18.127256122989884,2.8236841566564013,10.216620634085363,0.0,48.14,30.23912681530417,13.171245143024459,0.0,21.067896089650965,11.336785877934737,0.0,0.0,0.0,0.0,9.720841474747257,6.935959825167062,76.80485355253211,0.5966619425547992,3.676154100529101,-0.23096419123204792,-0.1006508645124713,-1.0910081254724109,-2.3178599773242627,-5.087186437074831,0.0,0.0,0.125,15,2,3,0,0,0,1,1,2,4,1,7,2,0,0,0,2,2.7771,50.7154,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +4409,COc1ccc2cc(CCC(C)=O)ccc2c1,0,12.116423203425088,-3.8015299826886677,12.116423203425088,0.7013804248551267,0.8015823313615688,228.2910000000001,212.16299999999995,228.115029752,88,0,0.12967082627504548,-0.4967451042461657,0.4967451042461657,0.12967082627504548,1.3529411764705883,2.176470588235294,3.0,3.0212732711131043,1144.2453788813727,26.05795974227243,24.316496580927726,8.316496580927726,14.585945635835623,12.362372435695795,4.362372435695795,2.885310363079829,2.885310363079829,1.7551551815399145,1.7551551815399145,1.0905931089239487,1.0905931089239487,-1.8299999999999996,3564506.772773494,2.943222937787084,5.000460648830569,2.842966419126076,123.6923735554508,9.53140013787187,11.532756779648844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.16967483065318,41.64555435457824,15.968234794520917,19.374779464414566,31.463537036595383,16.55569337529453,0.0,0.0,0.0,19.597741919954437,7.037952458882589,41.81796373767676,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,12.821197405247528,11.167462085401201,0.0,40.72040540904559,36.25451224597977,0.0,10.772448428929591,0.0,26.3,90.75886332509222,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,21.932136898723517,127.96335058076052,0.0,12.116423203425088,-1.4653623787477947,-1.2366761542579991,-3.093721696431606,-6.272778184576298,-7.452996228909379,-3.5767170983807643,-3.148188709548445,0.26666666666666666,17,0,2,0,0,0,2,0,2,2,0,2,6,0,0,0,2,3.370000000000002,69.50200000000004,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +387447,CC(C)C[C@H](NC(=O)[C@H](Cc1ccccc1)NC(=O)c1cnccn1)B(O)O,0,14.41466511295876,-4.869247858923187,14.41466511295876,1.0383996579987225,0.46304615262258836,384.2449999999996,359.0450000000001,384.1968856800007,148,0,0.4749647122685063,-0.4257360952865367,0.4749647122685063,0.4257360952865367,1.3571428571428572,2.142857142857143,2.857142857142857,3.2493788412176063,1730.431399667237,41.98868116259058,38.499197813044916,13.499197813044912,23.651948875072513,19.16810609977718,6.95718232784954,4.43231023274828,4.43231023274828,2.4956406416356387,2.4956406416356387,1.452085904500427,1.452085904500427,-2.7750649350649352,26031121718.15911,5.64147239054191,10.531039362336648,6.750183039885146,199.5298286901391,20.672233449241766,11.711820463198105,5.68608347112167,5.907179729351506,5.907179729351506,7.118392334224363,14.573052889090853,4.9839785209472085,0.0,0.0,43.915877772907834,17.830334078389452,35.16781799700154,24.42696645341422,51.25129494703971,18.932751792927373,2.8623993144652684,20.587583748471168,5.893957685363079,38.38477074266724,0.0,59.9881586573062,0.0,0.0,10.619626706576751,0.0,0.0,0.0,53.7508515973692,11.167462085401201,5.893957685363079,64.91455548611269,48.73077917076075,2.8236841566564013,0.0,0.0,124.44000000000001,133.81926558484068,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.020563784559435,34.472013150696284,201.39662908207538,0.0,34.39195589427381,5.236379820089826,-3.2252452957129183,-14.73147427626307,-11.79592378657444,-12.921619792970583,-8.7676637351566,-3.499704576428061,0.3684210526315789,28,4,8,0,0,0,1,1,2,6,4,9,13,0,0,0,2,0.36059999999999964,105.00950000000005,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2955,Nc1ccc(S(=O)(=O)c2ccc(N)cc2)cc1,0,13.060285336356763,-5.148518518518515,13.060285336356763,0.22353919963046964,0.7916266736810947,248.30700000000007,236.21099999999996,248.061948624,88,0,0.2060918054967559,-0.39872772934829437,0.39872772934829437,0.2060918054967559,0.8235294117647058,1.1764705882352942,1.4705882352941178,3.0053144151191864,979.3295748879331,22.582903768654766,20.119172062391506,8.935668643319232,13.172220166131805,9.977649601296989,5.671958466891547,2.858898673657097,4.682268829971376,1.7151884215471758,3.198351669141568,0.9596562833895538,1.9053620524186812,-2.01,942931.5745904016,3.744822736288326,4.101809822106994,2.236161413591126,116.88554963234013,11.439433951452546,0.0,5.6473683133128025,9.837253136417502,0.0,0.0,0.0,8.417796984328938,0.0,0.0,0.0,48.33934966130636,11.374772549367124,20.757035400397307,25.031233747003494,21.212025685784624,0.0,0.0,0.0,9.79096695103555,11.439433951452546,48.33934966130636,0.0,0.0,11.439433951452546,11.374772549367124,0.0,0.0,8.417796984328938,9.837253136417502,0.0,10.96606844936176,58.13031661234191,5.6473683133128025,0.0,0.0,86.18,79.34234229812654,8.417796984328938,0.0,11.439433951452546,0.0,0.0,0.0,0.0,0.0,0.0,16.613436762674564,117.38978530408181,0.0,-2.499531368102796,0.0,-2.099102512446668,0.0,-8.72596623834719,0.0,0.0,-5.148518518518515,0.0,17,4,4,0,0,0,2,0,2,4,2,5,4,0,0,0,2,1.6838000000000002,67.16060000000002,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3033817,O=C(OC1C[C@@H]2CC3C[C@H](C1)N2CC3=O)c1c[nH]c2ccccc12,0,13.621295955110437,-4.4269693641345444,13.621295955110437,0.05869991074942371,0.8624002843059125,324.3799999999997,304.2200000000001,324.1473925000006,124,0,0.34008589879927803,-0.4586021519825984,0.4586021519825984,0.34008589879927803,1.3333333333333333,2.0833333333333335,2.875,1.8408606871814874,1675.7534758556112,34.13531001146206,31.619172062391506,11.619172062391506,19.490646174214874,16.63174416517758,6.684530569677622,4.889408628144968,4.889408628144968,3.43439069957562,3.43439069957562,2.3758976992299847,2.3758976992299847,-2.1399999999999997,996148266.4496806,4.522834174203177,5.178431117038082,2.110113239234745,167.67298760541377,9.713866224029301,11.863262973314928,1.4118420783282006,0.0,0.0,5.969305287951849,9.694446914922299,4.794537184071822,0.0,0.0,18.127256122989884,18.788268510322055,62.8297566854894,23.026379625374698,41.78219196750609,22.65547516639785,0.0,9.87691300107973,5.893957685363079,43.607502568966794,6.496859684315945,35.90602153316493,0.0,0.0,0.0,0.0,0.0,0.0,46.242125883361744,9.53140013787187,5.893957685363079,61.894100848320576,30.34257004146794,1.4118420783282006,10.902924932081056,0.0,62.4,119.4597263690591,9.589074368143644,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,0.0,32.193117599362424,173.53991531573024,0.0,26.1031912944577,-0.857956181975392,-1.9900760759869702,-8.486879149955971,-12.185333202637167,-22.766332419159134,-3.9398629138066443,0.0,0.47368421052631576,24,1,5,0,4,4,1,1,2,4,1,5,2,0,4,4,6,2.519000000000001,88.74920000000004,0,0,0,0,0,1,1,0,0,0,2,2,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +38853,C[C@](N)(Cc1ccc(O)c(O)c1)C(=O)O,0,12.143482536533131,-3.872593655517764,12.143482536533131,0.8655779950869245,0.5430485662212737,211.21700000000007,198.11299999999994,211.084457896,82,0,0.3232284756062487,-0.5042598930766835,0.5042598930766835,0.3232284756062487,1.8,2.6666666666666665,3.2666666666666666,4.157823184306259,766.9117505690081,22.24012249707665,20.08020675735541,7.08020675735541,12.676192233873428,9.65927544106921,3.5401033786777054,2.5311159656540965,2.5311159656540965,1.3471037494855522,1.3471037494855522,0.6720103265154348,0.6720103265154348,-1.75,438422.2209166583,2.8855555555555554,3.7808641975308643,2.5997033202878423,105.41602617176788,21.04614154904791,8.362609409039747,11.49902366656781,0.0,4.293598971697903,5.969305287951849,4.794537184071822,0.0,0.0,0.0,6.042418707663295,24.500181024319264,13.226717682180478,4.1122756685106605,33.91071436341162,5.969305287951849,4.293598971697903,0.0,5.719716975726273,18.763742271008404,0.0,23.69070761468688,0.0,11.49902366656781,5.719716975726273,0.0,11.49902366656781,0.0,29.697054428122104,11.167462085401201,0.0,23.38141205835443,18.127256122989884,2.8236841566564013,1.4311996572326342,0.0,103.78000000000002,65.64249581594122,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.326424573321638,18.083351577716066,97.62314817439322,0.0,12.143482536533131,11.593589419564122,-6.065417020975057,-4.182625766355925,-3.5600647203325764,-3.793961167800455,-3.8414847883597902,0.0,0.3,15,5,5,0,0,0,1,0,1,5,4,5,7,0,0,0,1,0.4423000000000001,53.703800000000015,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2750,CC1(COc2ccc(CC3SC(=O)NC3=O)cc2)CCCCC1,0,12.44808393720523,-4.703148456581898,12.44808393720523,0.3372339342160504,0.8868585940971975,333.45299999999963,310.26900000000006,333.1398645960006,124,0,0.2859456866612067,-0.4930322951283621,0.4930322951283621,0.2859456866612067,1.4782608695652173,2.217391304347826,2.8260869565217392,2.3993541175727517,1444.5717141127213,36.61036598507973,34.08020675735541,11.896703338283137,20.059072182297946,17.369172062391506,6.738455047819274,4.022297990763622,4.983911278961138,2.3482269001979366,3.094941063465083,1.3856546839780357,1.9748768712795643,-1.4900000000000002,945584345.9719336,4.182915121584188,6.952345452717427,4.28207245487231,173.28098595986347,4.736862953800049,5.749511833283905,1.4118420783282006,5.907179729351506,5.239211713172287,0.0,14.898887721432018,0.0,0.0,0.0,49.81738918600151,36.76706361101172,25.976368811950074,21.380284805291687,45.894467636016756,22.908276391914907,0.0,5.309813353288376,5.41499046939678,50.31543119445581,6.558985242916289,29.733126322350174,0.0,5.749511833283905,10.046676307088426,4.794537184071822,5.749511833283905,11.761884949391115,22.93136635462394,11.167462085401201,5.41499046939678,74.43665635138443,24.16967483065318,1.4118420783282006,0.0,0.0,55.4,108.91843650492677,9.589074368143644,0.0,17.07169830267949,0.0,0.0,0.0,0.0,0.0,0.0,36.30539326787309,193.70596761931077,-0.3372339342160504,24.3192327240409,-5.094062826028434,-6.102144275352472,-3.4324861648022877,-6.216440880364492,-25.59478763801632,-9.081377957904925,0.0,0.5555555555555556,23,1,4,1,1,2,1,0,1,4,1,5,6,1,1,2,3,3.9299000000000026,91.75070000000005,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +135398745,Cc1cc2c(s1)Nc1ccccc1N=C2N1CCN(C)CC1,0,8.6852024281935,-3.88205777063912,8.6852024281935,0.23675028344671167,0.8082561901210404,312.44199999999967,292.28200000000004,312.1408676400006,114,0,0.1674131619533879,-0.3534446034064637,0.3534446034064637,0.1674131619533879,1.3636363636363635,2.227272727272727,3.0454545454545454,2.2347565913300946,1475.6500538201685,32.49711733102786,30.697102672463696,11.513599253391423,18.66247891789542,15.841529863463613,6.71081284889138,4.098799962006193,5.09787072876897,2.713417496140287,3.5083641176711353,1.8185495002437824,2.546302615918992,-1.8499999999999999,307923207.730451,3.968725000637781,5.409294431379946,2.401272703146137,162.7941117351597,15.109632814989332,10.836701762445136,1.4118420783282006,0.0,0.0,0.0,0.0,4.992404732635669,0.0,11.336785877934737,12.08483741532659,31.95497514056781,44.57217149266731,29.275051046596097,27.456254645562378,33.548260189747,0.0,9.799819461700956,4.992404732635669,6.851892117295679,38.2730789908344,40.65269222371477,0.0,0.0,5.309813353288376,16.37585452605499,0.0,11.336785877934737,48.598704885004246,0.0,6.851892117295679,36.48501125263248,35.20449827095214,1.4118420783282006,0.0,0.0,30.870000000000005,107.57923402121924,0.0,0.0,16.236695608785215,5.309813353288376,0.0,0.0,0.0,0.0,4.992404732635669,27.456254645562378,164.62063007820336,0.24661113210716312,2.4240352680328328,-0.3018514188082646,-2.33801927175191,-1.1984051398337112,-4.498890207540777,0.0,-22.287443773742027,0.0,0.35294117647058826,22,1,4,0,2,2,1,1,2,5,1,5,2,0,1,1,4,3.4392200000000033,94.04770000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,1,0,0,0,0,0,0,0,0,1,2,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +392622,CC(C)c1nc(CN(C)C(=O)N[C@H](C(=O)N[C@@H](Cc2ccccc2)C[C@H](O)[C@H](Cc2ccccc2)NC(=O)OCc2cncs2)C(C)C)cs1,1,15.940063628975354,-6.187474980888868,15.940063628975354,0.13697375682737856,0.10624046585910327,720.962000000002,672.5780000000002,720.3127606360013,268,0,0.4073141084370974,-0.4437652036234549,0.4437652036234549,0.4073141084370974,1.04,1.78,2.42,2.438886005312675,3701.0531653249104,77.67639741685994,72.04101960624679,25.67401276810224,43.23352977169367,36.19801890003277,14.081122984924493,8.056093760031438,9.645987003093138,4.659499752410458,6.004990151560717,2.726969707058553,3.607793289587747,-4.329999999999999,9.846530202663296e+26,9.751680849499463,19.165556143146798,12.21811936765673,369.7577980797008,30.675020935622868,12.576877711265933,4.235526234984602,7.33837938658414,0.0,12.124354583276487,9.77851570501903,14.573052889090853,0.0,22.673571755869474,87.83175554581567,36.13963537274521,61.94413346639246,68.44598965741183,88.778185403597,40.70510606849747,1.4311996572326342,30.797306832610023,5.893957685363079,89.60984121776508,6.975826900282246,104.14538947873092,0.0,0.0,15.929440059865126,9.589074368143644,0.0,22.673571755869474,70.5489312659939,35.33309486776287,5.893957685363079,126.69342939616119,77.43978760993437,4.235526234984602,0.0,0.0,145.77999999999997,256.82268526341977,19.91396482410222,9.589074368143644,11.336785877934737,0.0,0.0,0.0,0.0,0.0,19.81362818680168,50.860674723676546,417.859400431145,-0.6558581845389093,49.158027357188885,-4.929316185611503,-7.57091155551748,-13.717779586028692,-39.86728631062421,-27.366565128261342,-32.243044171084904,0.0,0.43243243243243246,50,4,11,0,0,0,2,2,4,9,4,13,23,0,0,0,4,5.905200000000005,196.89689999999945,0,1,0,0,0,2,0,0,0,0,3,3,0,0,0,3,3,0,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1 +110635,CN1CC(=O)N2[C@H](Cc3c([nH]c4ccccc34)[C@H]2c2ccc3c(c2)OCO3)C1=O,0,14.199167007852516,-4.087679043839761,14.199167007852516,0.030499338624338845,0.6925587527204073,389.4109999999998,370.2590000000001,389.13755608800045,146,0,0.24547168539751604,-0.4535954682508704,0.4535954682508704,0.24547168539751604,1.2758620689655173,2.1379310344827585,3.0344827586206895,1.9127673824459146,2043.29052974519,36.38386867697599,32.974633948355326,13.974633948355326,21.64518226536385,17.46081284889138,8.013599253391423,5.969865279845926,5.969865279845926,4.379289889211774,4.379289889211774,3.170422711281316,3.170422711281316,-3.479999999999999,10439156067.505796,6.256916074443901,5.761738136388627,2.2392962136056878,193.10366386783042,24.250548639530308,8.759409580690086,12.910865744896011,18.55940504320621,0.0,0.0,9.589074368143644,0.0,0.0,0.0,24.16967483065318,29.254159106383874,36.79939750939225,27.593096270538005,45.14829636513593,22.71728439078407,0.0,14.776822731930208,0.0,18.40870983802867,20.21773216910139,59.11776193188552,0.0,11.49902366656781,9.473725907600098,0.0,11.49902366656781,0.0,52.82680682808425,15.961999269473022,0.0,47.51237745765609,42.29693095364306,1.4118420783282006,10.902924932081056,0.0,74.87,141.76033145806844,12.330591480484083,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,0.0,32.81770488465181,171.14525856226842,0.0,27.261555998164482,-0.9079618869152595,-4.646618611950952,-6.35818071729891,-15.552486318620657,-3.842831278344674,-10.932069080635781,0.0,0.2727272727272727,29,1,7,0,3,3,2,1,3,4,1,7,2,0,1,1,6,2.2112999999999996,104.68170000000005,0,0,0,0,0,1,1,0,0,0,2,2,0,0,0,2,1,0,0,1,0,1,0,0,0,0,0,2,0,0,0,0,0,0,2,0,5,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5394,Cn1nnc2c(C(N)=O)ncn2c1=O,0,11.886508408919124,-2.906709419879064,11.886508408919124,0.06263510959939556,0.5601191738811692,194.15400000000002,188.10599999999997,194.055223432,72,0,0.35219496446941617,-0.36413474951825103,0.36413474951825103,0.35219496446941617,1.8571428571428572,2.7142857142857144,3.4285714285714284,2.8017776582683585,746.7111086997301,15.24012249707665,12.499778153927474,6.499778153927474,9.141752975731727,6.215136661213592,3.3207094702136746,2.308400059218436,2.308400059218436,1.4893487450018674,1.4893487450018674,0.8922385175098916,0.8922385175098916,-2.2500000000000004,22103.683040529144,3.8623555555555558,2.6198926454093896,0.969381543705868,85.51378945327718,5.719716975726273,7.674130270136447,14.16478937227259,0.0,5.907179729351506,5.689743398203474,4.794537184071822,14.179210311280823,4.681802935145185,5.098681808301038,5.213385095654868,0.0,11.088102568792905,0.0,13.101255565409105,11.554356950119233,0.0,24.378542966310093,12.695543876008518,0.0,0.0,22.481580291089983,0.0,0.0,11.409460373929747,0.0,0.0,0.0,30.285722695661597,6.975826900282246,0.0,15.971499403601161,11.09790889803805,2.8236841566564013,5.647177220767728,0.0,108.17000000000002,36.21722695741964,9.589074368143644,0.0,10.401519910871457,4.400694606261793,0.0,0.0,0.0,0.0,15.296045424903113,8.306718381337282,42.85826483371127,0.0,26.74927732898715,6.49968679138322,-2.6351803429705214,-1.2348762282690846,0.0,-0.7471296296296288,-2.906709419879064,0.0,0.16666666666666666,14,2,8,0,0,0,0,2,2,7,1,8,2,0,0,0,2,-2.078099999999999,44.5409,0,0,0,0,0,5,0,0,0,0,1,1,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +11272107,COc1cc(Br)c(S(=O)(=O)Nc2ccc(Cl)c(O[C@@H]3CCN(C)C3)c2)cc1OC,0,13.884574402419368,-5.814497731905737,13.884574402419368,0.6345073592611294,0.6128143274683939,505.8179999999999,483.64200000000034,504.0121325840006,158,0,0.26266371641827263,-0.4928262679788501,0.4928262679788501,0.26266371641827263,1.3448275862068966,2.103448275862069,2.793103448275862,2.3742841364936296,1869.2634660301085,40.204224112214405,35.59984587980155,16.758267945862436,22.430916202995817,17.91438179530101,9.578194271168273,4.803748641887393,7.515666540409205,2.9501053355572355,5.31846448028689,1.8102201111036789,3.7582546690573655,-1.68,8069346584.547958,7.185866912420897,8.99158784846648,5.086847093280716,214.58658987600833,19.110498592250625,16.72501333575167,12.910865744896011,0.0,10.023291153407584,0.0,4.715119613734132,8.417796984328938,0.0,0.0,11.600939890232516,47.405951822550854,41.88810330532289,41.23502718023273,52.82615760363195,43.24156121627301,0.0,4.899909730850478,0.0,17.34842640379714,38.76057080041345,39.70744636789021,0.0,17.248535499851716,18.92570847513428,5.687386274683562,17.248535499851716,27.530883788181864,53.44317592880871,10.023291153407584,0.0,35.158854580904,39.58029652966666,6.434475392069527,0.0,0.0,77.10000000000001,133.67556623089416,8.417796984328938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.40366980554945,46.535574601935416,214.9141903921033,8.69177192783348,-2.158278582951861,-1.2074036900824014,-1.544680072646343,-4.21457445850506,-7.072482174697711,-8.02424828061603,-11.601364568423875,-12.755152714235788,0.3684210526315789,29,1,7,0,1,1,2,0,2,6,1,10,10,0,1,1,3,4.003400000000003,116.03650000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +68873,C[C@]12CC[C@H]3[C@H]([C@@H]1[C@@H]1C[C@@H]1[C@@]21CCC(=O)O1)[C@H]1C[C@H]1C1=CC(=O)CC[C@@]13C,0,13.510896482708315,-5.401697727702194,13.510896482708315,2.175651675832051,0.6002668837960434,366.5009999999995,336.2610000000001,366.2194948200008,144,0,0.30601854886446717,-0.45813882846858006,0.45813882846858006,0.30601854886446717,1.1851851851851851,2.111111111111111,2.888888888888889,1.919056445457552,2068.392875826396,45.01650785794505,43.22474487139159,13.22474487139159,24.56521969367193,23.066496580927726,8.066496580927726,7.024829914261059,7.024829914261059,5.693601174978425,5.693601174978425,4.405091399387809,4.405091399387809,-1.12,186088232969.58905,4.1837373668576365,4.385305417579091,1.5769785260860938,202.98820298669133,4.736862953800049,5.601050810983688,5.783244946364939,0.0,0.0,5.969305287951849,9.589074368143644,0.0,0.0,0.0,19.276888764660626,85.06835773558709,63.80679608635507,1.3707585561702202,55.44869400705034,11.75255023431679,0.0,0.0,52.0876847363351,70.28823425621007,0.0,11.625176276104835,0.0,0.0,0.0,0.0,0.0,0.0,17.353601045300476,14.325937321943691,52.0876847363351,105.80994013033286,11.625176276104835,0.0,0.0,0.0,43.370000000000005,145.75364550296683,24.66741848601606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.781275521034225,278.78101910083967,0.0,26.934027717104428,0.0,-17.5208300527001,-39.10341415110965,-2.175651675832051,-37.86890021656302,-9.879584055072652,0.0,0.8333333333333334,27,0,3,6,1,7,0,0,0,3,0,3,2,5,1,6,7,4.305900000000004,99.49300000000007,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,12,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5284627,CC1(C)O[C@@H]2CO[C@@]3(COS(N)(=O)=O)OC(C)(C)O[C@H]3[C@@H]2O1,0,12.202284499486208,-6.018871278449649,12.202284499486208,1.3096729108884149,0.7386170940393365,339.3659999999997,318.1980000000001,339.09878763200055,128,0,0.33296680664821293,-0.34266041834772965,0.34266041834772965,0.33296680664821293,1.4090909090909092,2.1818181818181817,2.8636363636363638,2.5761128137859273,1232.3448686863371,34.319990956308914,31.121448209674725,10.937944790602453,18.43601636009335,15.572366974386219,6.543088155056413,4.062616091714389,5.084744644344876,2.305011531325828,2.598963227397108,1.674864392740853,1.8898816225204709,-0.33,182600799.35999852,4.639892937733214,4.835048687496482,3.0171902245214364,158.34755643613227,23.684314769000245,27.62272348042265,11.574222305141193,5.7871111525705965,0.0,10.304164876023634,4.183085432649707,5.12502323617203,8.417796984328938,0.0,0.0,27.407568469182717,16.44910267404264,16.154295136107827,65.15329390986952,10.304164876023634,0.0,0.0,5.12502323617203,63.00895600774446,13.117970485832577,0.0,0.0,0.0,5.12502323617203,0.0,0.0,0.0,57.13715500872326,38.171565077673584,0.0,53.451981036416946,0.0,2.8236841566564013,0.0,0.0,115.54,91.5561146057727,8.417796984328938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.183085432649707,52.55241149289086,218.52998083155825,0.0,0.0,-1.3096729108884149,0.0,-13.517742740614768,0.0,-13.684522037981864,-26.082505196956873,-6.018871278449649,1.0,22,2,9,0,3,3,0,0,0,8,1,10,8,0,3,3,3,-0.3953999999999982,71.60420000000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5311309,CC(C)C1CCC(C(=O)N[C@H](Cc2ccccc2)C(=O)O)CC1,0,14.037807355967075,-5.033559565801631,14.037807355967075,1.1586700351139039,0.8460610896604897,317.4289999999995,290.213,317.19909372400076,126,0,0.32604609388114336,-0.4797086354543313,0.4797086354543313,0.32604609388114336,1.5217391304347827,2.217391304347826,2.8260869565217392,3.1694880984526215,1507.8383392297471,40.403259203893185,38.171958466891546,11.171958466891548,21.722191096880003,19.165047917159573,5.809586031195753,3.803020239598717,3.803020239598717,2.2389649812331918,2.2389649812331918,1.25740681300222,1.25740681300222,-1.8399999999999999,3821449950.305603,3.5585491654424106,8.13614842854027,5.084700446393611,175.91588998391165,10.418621544395588,6.017892468349645,1.4118420783282006,5.907179729351506,1.4311996572326342,5.969305287951849,4.794537184071822,4.794537184071822,0.0,0.0,43.915877772907834,42.84306646774067,38.31129515392664,8.224551337021321,50.37868854183459,11.876485017303356,1.4311996572326342,5.309813353288376,17.681873056089238,51.586301209587894,0.0,35.77554503001347,0.0,0.0,5.309813353288376,0.0,0.0,0.0,23.003185676760214,15.961999269473022,17.681873056089238,79.02789923586137,30.212093538316473,1.4118420783282006,1.4311996572326342,0.0,66.4,122.23001766628236,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,37.11200563981634,219.61177664624967,0.0,26.935677443281158,2.1104082315892367,-1.687199826504931,-20.64606225616539,-11.524009316807302,-24.261994186002127,-8.955263402306992,0.0,0.5789473684210527,23,2,4,1,0,1,1,0,1,3,2,4,8,1,0,1,2,3.2609000000000012,89.99850000000006,1,0,0,0,0,0,0,0,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +48229,O=C1OC(OC(=O)c2cccnc2Nc2cccc(C(F)(F)F)c2)c2ccccc21,0,13.637785152271032,-5.424330327290686,13.637785152271032,0.3047373814590628,0.614087602089371,414.3389999999999,401.2350000000001,414.08274155600037,152,0,0.4159855115665516,-0.4169239323341611,0.4169239323341611,0.4159855115665516,1.2,2.0,2.8,1.935353877036583,1772.3991025827158,32.66832572735217,27.16131377188305,14.16131377188305,19.667020647553063,14.133332367405304,7.686118771905346,5.3218794420952875,5.3218794420952875,3.412456995601251,3.412456995601251,2.155797159030395,2.155797159030395,-3.879999999999998,948626332.3192279,9.290427909585869,7.507636455097734,3.8168206368957307,186.1384530025367,14.783539260888475,12.752072825702243,1.4118420783282006,0.0,6.266078368536897,18.114909093347173,0.0,14.573052889090853,13.171245143024459,0.0,24.16967483065318,36.25451224597977,17.423732977195318,26.20524710126641,50.09499017113908,23.443859628422288,0.0,4.9839785209472085,0.0,12.442376885980373,5.309813353288376,88.8508882542357,0.0,0.0,5.309813353288376,24.67649419554305,0.0,0.0,16.922589096850906,15.650024425043572,0.0,54.5580613775112,66.5970822874477,1.4118420783282006,0.0,0.0,77.52000000000001,124.73712476863837,22.760319511168106,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,27.334670659970932,153.70097945986998,0.0,29.186933874717408,-0.3047373814590628,-6.585413609327612,-4.777891463201554,-12.145414193510387,-9.907790020422096,0.0,0.0,0.09523809523809523,30,1,6,0,1,1,2,1,3,6,1,9,4,0,0,0,4,4.870000000000003,98.9777,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,2,0,1,0,0,0,2,2,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +62978,COc1cc2nc(N3CCN(C(=O)C4COc5ccccc5O4)CC3)nc(N)c2cc1OC,0,14.205940960499666,-4.33297651886487,14.205940960499666,0.4567662976266176,0.6334640734356928,451.4829999999998,426.28300000000024,451.1855689000007,172,0,0.2668914804037658,-0.4928420722519821,0.4928420722519821,0.2668914804037658,1.2121212121212122,1.9696969696969697,2.727272727272727,1.7681507872362396,2203.405008041471,44.634945532532555,40.777309429819105,15.777309429819105,25.903061315098036,20.94121927333707,8.546792082337154,5.899938035647802,5.899938035647802,3.9741847566979867,3.9741847566979867,2.521177319736833,2.521177319736833,-3.9499999999999997,385717349804.8343,6.782775140382857,8.530792550820328,3.8791095225649475,225.5979113658629,34.466988252627424,12.376848020751318,25.82173148979202,12.028357307936481,5.907179729351506,0.0,4.794537184071822,4.9839785209472085,4.9839785209472085,0.0,12.08483741532659,18.127256122989884,37.41608165939187,51.120052427296535,58.093119947843526,28.576306720254085,0.0,14.867866772744893,0.0,6.080018026949988,57.24195560452199,36.25451224597977,0.0,22.99804733313562,29.56707852177695,11.766202058821523,22.99804733313562,0.0,73.47739342699163,4.794537184071822,0.0,31.527446791915054,36.25451224597977,2.8236841566564013,10.902924932081056,0.0,112.27000000000001,156.05074966169198,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.967957041894417,53.29858276377169,224.4602392287782,0.0,20.17262936629237,-0.9695091745375828,-1.5751389330315269,-10.18129262088062,-6.778038294114433,-4.129819518164475,-21.048046115578416,-6.951023938763547,0.34782608695652173,33,2,10,0,2,2,2,1,3,9,1,10,7,0,1,1,5,1.7177999999999993,122.20040000000006,0,0,0,1,0,2,0,0,0,0,1,1,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,2,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +441314,OCCN1C[C@H](O)[C@@H](O)[C@H](O)[C@H]1CO,0,8.438125,-4.394583333333333,8.438125,0.9672916666666667,0.3326203956682485,207.22600000000014,190.08999999999997,207.110672644,84,0,0.21071831896308274,-0.3950443155646255,0.3950443155646255,0.21071831896308274,1.4285714285714286,2.357142857142857,3.0,4.366783027062849,682.9073281167522,25.112884175122364,23.488455047819272,6.488455047819273,13.669326262683548,11.23268257172891,3.191441119409595,2.0991203730526524,2.0991203730526524,1.3186107313912339,1.3186107313912339,0.7419058184826731,0.7419058184826731,-0.24000000000000002,1258787.6970290986,2.3678114721802754,5.01417687680998,2.220908077805413,106.336866899749,25.54404095553606,12.160036053899976,0.0,7.155998286163171,0.0,0.0,4.899909730850478,0.0,0.0,0.0,0.0,0.0,18.47675359331277,36.18194943049398,41.993143629578725,0.0,7.155998286163171,4.899909730850478,0.0,24.25794654919961,26.11168985446447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.96958537621383,0.0,0.0,16.44910267404264,0.0,0.0,0.0,0.0,104.39000000000001,55.26954613451454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.54404095553606,23.605100960205814,130.4208125472411,0.0,-0.9672916666666667,18.75616236772487,0.0,0.0,-4.394583333333333,-12.632373511904765,-16.68272640306123,0.0,1.0,14,5,6,0,1,1,0,0,0,6,5,6,8,0,1,1,1,-3.262099999999999,47.553000000000026,0,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5361,CC1=CCC(C(=O)N=C2CC=C(S(=O)(=O)O)c3cc(S(=O)(=O)O)cc(S(=O)(=O)O)c32)=CC1=NC(=O)C1=CC=C/C(=N\C(=O)/N=C2\C=CC=C(C(=O)N=C3CC(C(=O)N=C4CC=C(S(=O)(=O)O)c5cc(S(=O)(=O)O)cc(S(=O)(=O)O)c54)=CC=C3C)C2)C1,0,14.731733849463218,-6.366165925595599,14.731733849463218,1.7701198539931668,0.17788280349860872,1297.3020000000008,1256.9819999999993,1296.0469075400006,448,0,0.3670157146991375,-0.28179106516434416,0.3670157146991375,0.28179106516434416,0.46511627906976744,0.8953488372093024,1.3488372093023255,1.2885397203326956,6765.6057754496305,97.31134294939243,80.02248199645175,44.92146148201809,56.82746552779027,40.37813691333416,29.378136913334163,15.465135366001979,23.364114851568328,9.834674127643947,14.467667289499424,6.428688019622594,9.975991244649089,-8.330000000000002,1.6266038393222456e+39,29.37516486456788,23.50317543770431,14.316182377441399,544.4604255751105,0.0,9.79096695103555,0.0,8.587197943395806,84.33748007160735,6.031114512338072,46.50833275602851,24.7641561146145,60.49159137124495,0.0,54.4686457143201,73.54880826481914,101.08450260477584,75.80348689416337,148.41544275586128,134.44897762834975,8.587197943395806,0.0,29.954428395814016,71.52326754463874,0.0,152.4869689302836,0.0,0.0,0.0,4.794537184071822,0.0,0.0,141.76690937208318,79.88690989048861,0.0,120.80093051914295,179.76952526138072,0.0,18.3974709711759,0.0,485.73,358.459214103272,74.47946782633271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.28461241555524,55.192988853183316,517.8064177651754,0.0,78.20285855708723,0.0,-33.585036936250276,-10.557113064358354,-35.01929999350479,-26.07381723696679,-8.286639521972837,-37.320702902542806,0.1568627450980392,86,6,29,6,0,6,2,0,2,23,6,35,18,0,0,0,8,4.5324000000000035,305.2596000000007,0,0,0,0,0,0,0,0,0,0,5,5,0,0,6,6,0,0,0,0,0,0,0,0,0,0,14,6,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +5329,Cc1cc(NS(=O)(=O)c2ccc(N)cc2)no1,0,12.689804421768706,-5.177638888888886,12.689804421768706,0.22444707155385402,0.804736706639606,253.28300000000007,242.19499999999996,253.052112212,90,0,0.26263766546728673,-0.3987277171275083,0.3987277171275083,0.26263766546728673,1.588235294117647,2.3529411764705883,2.9411764705882355,2.711605169620952,1004.4531411480932,21.765066523458984,18.974633948355326,8.791130529283052,12.634657471562507,9.36919117521712,5.467613717517885,2.7043895045445616,4.2453446604997955,1.5022002023534708,2.6355269091816043,0.8584434491696539,1.616393895501248,-2.02,679740.3020384364,4.022001845256707,4.095983503072133,2.5628629762604866,114.09814716234706,10.242811912699622,5.760247418874442,10.05338901281963,0.0,10.023291153407584,0.0,4.715119613734132,8.417796984328938,0.0,0.0,5.156663257125445,31.02156694794886,15.842080650857515,11.749276256368875,28.14248660564864,21.528540205926173,0.0,5.156663257125445,0.0,11.747375592813455,10.434836589460405,35.972340957190916,0.0,0.0,10.434836589460405,11.50524905251859,0.0,0.0,13.574460241454382,10.023291153407584,6.851892117295679,16.726315868236203,39.630671950807596,4.235526234984602,0.0,0.0,98.22,73.96337636966467,8.417796984328938,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,9.679758194098794,15.201594684346363,111.48964029727287,0.0,-1.2769132653061217,3.076199609473419,-1.0459419558048706,-2.0429821162216544,-5.401487859032501,0.0,-2.9542091548255875,-5.177638888888886,0.1,17,3,6,0,0,0,1,1,2,5,2,7,5,0,0,0,2,1.3660199999999998,62.90290000000002,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +3748,CC(C)NNC(=O)c1ccncc1,0,12.324434996220706,-3.7198307586923667,12.324434996220706,0.6150462962962964,0.6722652900688486,179.2230000000001,166.11899999999997,179.105862036,70,0,0.2649914093869321,-0.28721196662619786,0.28721196662619786,0.2649914093869321,1.7692307692307692,2.4615384615384617,3.076923076923077,3.4878697949550777,674.0320823432272,20.825908934703556,19.249889076963736,6.249889076963737,11.479956933183256,9.442978527231764,3.0485513362318475,1.8141695587834306,1.8141695587834306,0.9282970982873207,0.9282970982873207,0.4792510982999025,0.4792510982999025,-1.42,143982.2454787853,2.145438835412969,4.567742759779543,3.208672090382818,95.72293181218294,0.0,1.4118420783282006,1.4118420783282006,0.0,5.907179729351506,0.0,15.197331851411459,5.418816146392429,0.0,0.0,0.0,25.78862164991795,33.52244427486771,5.483034224680881,22.69656545860064,5.907179729351506,0.0,15.821610813732068,0.0,19.721676702941004,0.0,29.994079328653108,0.0,0.0,10.837632292784859,0.0,0.0,0.0,16.90905071864836,0.0,0.0,39.14011702823261,24.430627836956113,2.8236841566564013,0.0,0.0,54.019999999999996,66.46056805373047,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,17.90202827452882,96.03898077286469,0.0,15.52049095332577,0.0,-2.348659297052154,-1.731921296296296,-5.664278982426304,-1.7721108906525576,-7.292501259763167,0.0,0.3333333333333333,13,2,4,0,0,0,0,1,1,3,2,4,5,0,0,0,1,0.7243999999999996,49.97490000000003,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +5656,COc1ccc(C(CN(C)C)C2(O)CCCCC2)cc1,0,9.460502291194254,-5.027052626606198,9.460502291194254,1.1802728174603172,0.8976823731418611,277.4079999999996,250.19199999999995,277.2041791040006,112,0,0.21088668104212926,-0.49676821574830976,0.49676821574830976,0.21088668104212926,1.5,2.25,2.85,3.605429605549826,1316.1919898571387,37.95566544670048,36.763710176427686,9.763710176427685,20.286563467974716,18.441441119409596,5.033192828945731,3.434586031195753,3.434586031195753,2.1318550882138423,2.1318550882138423,1.3255527162112928,1.3255527162112928,-1.06,748209387.2530103,2.7665510059256686,6.59472130944262,3.52569093341468,160.1284216388948,14.745580875757739,5.749511833283905,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,0.0,31.20361211931473,44.34579251024684,38.43522993691321,22.234313163057813,45.485393605333,0.0,1.4311996572326342,4.899909730850478,0.0,43.35963300299366,27.486465943763026,29.733126322350174,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,44.52743433393704,0.0,0.0,78.96175614413269,24.16967483065318,0.0,0.0,0.0,32.7,111.22864683324127,1.3707585561702202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,35.70016356148814,225.33712055122274,0.0,-1.1802728174603172,4.277354969765683,-7.10765164399093,-6.458156638426978,-7.064500162719409,-23.010693841458632,-13.52885597822693,-3.514344438705237,0.6470588235294118,20,1,3,1,0,1,1,0,1,3,1,3,9,1,0,1,2,3.0356000000000014,82.32380000000005,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5329102,CCN(CC)CCNC(=O)c1c(C)[nH]c(/C=C2\C(=O)Nc3ccc(F)cc32)c1C,0,14.823493201084492,-4.799352745962943,14.823493201084492,0.2046196518732839,0.6263032743124629,398.48199999999963,371.26600000000013,398.21180432400075,154,0,0.25594410511526855,-0.358205853309144,0.358205853309144,0.25594410511526855,1.4827586206896552,2.310344827586207,3.0344827586206895,2.5417517962855998,1978.6411710175998,44.392304845413264,40.98331543593679,13.983315435936785,24.588886832798472,20.70133249321816,7.359691706718288,5.088141747321412,5.088141747321412,3.3867482412141237,3.3867482412141237,2.1648808298431055,2.1648808298431055,-2.929999999999999,81901080585.54134,5.402808147604471,8.611069784767098,4.244127387772851,207.8380399753002,20.49653970765648,5.817220841045895,4.235526234984602,0.0,11.814359458703011,0.0,9.589074368143644,4.39041504767482,0.0,0.0,13.703784234591359,56.44028296394569,60.30606713577339,19.36110735878758,51.113220998888366,29.126922009491405,0.0,15.186726354368107,0.0,27.407568469182717,31.297252090552156,52.02268742882369,0.0,0.0,10.619626706576751,10.077801322358383,0.0,0.0,47.67871119704652,4.794537184071822,19.521005075637255,79.47473723153637,18.127256122989884,4.235526234984602,11.625176276104835,0.0,77.23,149.73134299912974,13.979489415818463,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,0.0,37.13373158306988,231.1579239575852,0.0,25.593394613610798,-1.4620209053549855,-10.520375916969673,-6.082197250492478,-5.517760682364948,0.0,-34.83563048268062,0.0,0.36363636363636365,29,3,6,0,1,1,1,1,2,3,3,7,11,0,0,0,3,3.3349400000000013,113.28860000000003,0,0,0,0,0,1,1,0,0,0,2,2,0,0,0,1,3,0,0,1,0,1,0,0,0,0,0,2,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5488548,C[C@H]1CN(C[C@H](Cc2ccccc2)C(=O)NCC(=O)O)CC[C@@]1(C)c1cccc(O)c1,0,14.455274095068429,-5.495843437683719,14.455274095068429,1.3227209586590483,0.6060542279978058,424.54099999999966,392.28500000000025,424.2362075040009,166,0,0.32246945822751744,-0.5079560094254141,0.5079560094254141,0.32246945822751744,1.4838709677419355,2.3548387096774195,3.096774193548387,2.892117359837178,2193.3868416379696,50.15181786940711,47.02742035285537,15.02742035285537,27.801647783668173,23.698240746105306,7.934530569677622,5.441161379205596,5.441161379205596,3.3670802761706438,3.3670802761706438,2.01416955878343,2.01416955878343,-2.8599999999999994,1558083083064.035,5.367861254563007,9.964619695145712,5.85199420184559,228.6385743713414,20.427339466353278,12.24637151759985,1.4118420783282006,5.907179729351506,2.8623993144652684,5.969305287951849,9.589074368143644,0.0,0.0,0.0,56.00071518823442,53.763398040455144,37.66737337969586,20.972301803235496,60.97053095762271,11.876485017303356,2.8623993144652684,10.209723084138854,11.787915370726157,31.864624506646898,25.98743873726378,65.50867135236365,0.0,5.749511833283905,5.309813353288376,0.0,5.749511833283905,0.0,54.41264952486467,21.376989738869803,11.787915370726157,70.95561024825116,54.38176836896965,1.4118420783282006,1.4311996572326342,0.0,89.87,162.98436990172667,20.555142817505402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,33.06017107236809,273.13274342527353,0.0,25.194219382536374,6.04944468187059,-9.166693710271037,-18.052822563000515,-14.68923791520367,-10.101726474616992,-30.28259349325502,0.0,0.44,31,3,6,0,1,1,2,0,2,5,3,6,11,0,1,1,3,3.051400000000001,119.96130000000004,1,0,0,0,0,0,0,1,1,1,2,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6000,COc1cc2c3cc1Oc1cc(ccc1O)C[C@@H]1c4c(cc(OC)c(O)c4Oc4ccc(cc4)C[C@@H]3N(C)CC2)CC[N+]1(C)C,0,10.523917504201023,-5.31071049843217,10.523917504201023,0.9094578441574677,0.2449408495712499,609.7430000000018,568.4150000000002,609.2959134520911,234,0,0.29343056768880216,-0.5042386725808474,0.5042386725808474,0.29343056768880216,0.9333333333333333,1.7777777777777777,2.577777777777778,1.9823511182299494,3485.1806459836275,66.67639741685994,62.84391693378309,21.843916933783092,38.25888557052013,32.42298561749689,12.106489036569164,8.96829243544416,8.96829243544416,6.182305806660547,6.182305806660547,4.207636861317403,4.207636861317403,-4.3999999999999995,3.7031132098338593e+21,8.296753612310004,11.194290007513152,5.216165531223447,321.87885803681473,33.64809905510924,13.13816285780377,34.49707099970343,5.749511833283905,2.8623993144652684,0.0,4.899909730850478,0.0,0.0,0.0,18.127256122989884,89.83586511506905,43.08046318553723,74.35683379859813,87.10768274574782,0.0,2.8623993144652684,4.899909730850478,0.0,37.52748454201681,47.997104987243794,93.80489602681493,0.0,45.99609466627124,18.947451815200196,0.0,45.99609466627124,0.0,70.46006127246861,25.491699605317518,0.0,98.87607757751978,60.42418707663295,0.0,0.0,0.0,80.62,234.70852081089197,24.673654011063956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,50.595780809240125,386.26879691606683,0.0,-0.9094578441574677,9.038219819905287,-12.477290623476957,-15.546972277629495,-29.7490257052223,-18.731218510908192,-24.154421501956655,-7.9886302726210205,0.35135135135135137,45,2,8,0,4,4,4,0,4,7,2,8,9,0,0,0,8,6.701000000000008,172.2529999999995,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +33741,COc1cccc([C@@]2(O)CCCC[C@@H]2CN(C)C)c1,0,9.2049183909675,-4.921640565948604,9.2049183909675,1.132739276266062,0.9061758690933456,263.381,238.18099999999995,263.1885290400002,106,0,0.21136823522665266,-0.4967560353290218,0.4967560353290218,0.21136823522665266,1.736842105263158,2.6842105263157894,3.473684210526316,3.5455861307086782,1281.0272798088497,35.45566544670048,34.263710176427686,9.263710176427685,19.036563467974712,17.191441119409596,4.783192828945732,3.309586031195753,3.309586031195753,2.1203861245218247,2.1203861245218247,1.3231173846465365,1.3231173846465365,-1.06,227253054.57755738,2.666423606154709,5.9305484375353075,3.097196784151031,150.95353852416255,14.745580875757739,5.749511833283905,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,0.0,0.0,24.83068721798535,44.34579251024684,35.69371282457276,22.234313163057813,42.743876492992555,0.0,1.4311996572326342,4.899909730850478,5.893957685363079,31.092750416301207,27.486465943763026,29.733126322350174,0.0,5.749511833283905,4.736862953800049,0.0,5.749511833283905,0.0,38.926383522953344,5.601050810983688,5.893957685363079,63.95335644509987,24.16967483065318,0.0,0.0,0.0,32.7,104.85572193191186,1.3707585561702202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,32.95864644914769,207.62398241448267,0.0,-1.132739276266062,4.389908116024187,-6.585764361300077,-6.468546823822124,-6.365377627131101,-18.139717970521552,-13.244479337910299,-3.5772651335557217,0.625,19,1,3,1,0,1,1,0,1,3,1,3,8,1,0,1,2,2.6346000000000007,77.40280000000006,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5878,C[C@]12COC(=O)C[C@@H]1CC[C@@H]1[C@@H]2CC[C@@]2(C)[C@H]1CC[C@]2(C)O,0,13.016364072986097,-5.644337679516255,13.016364072986097,2.679174817603297,0.6962908532154631,306.4459999999994,276.20599999999996,306.2194948200008,124,0,0.30560432081120953,-0.46506317599473423,0.46506317599473423,0.30560432081120953,1.2727272727272727,2.1818181818181817,2.9545454545454546,2.6934788730788033,1590.2729030741052,41.99156383156272,40.72474487139159,10.72474487139159,22.188487256621396,20.97474487139159,6.066496580927726,5.0477678416450935,5.0477678416450935,3.7280080660544783,3.7280080660544783,2.4858471419511874,2.4858471419511874,-0.5700000000000001,7216793670.210782,3.019132934108533,4.4934933285653385,1.748889782130799,175.58997081775973,9.84567114490726,0.0,0.0,1.4311996572326342,0.0,5.969305287951849,4.794537184071822,0.0,0.0,0.0,13.703784234591359,74.08026273612103,48.798396387322136,14.901553166240415,54.392206457915506,5.969305287951849,1.4311996572326342,0.0,34.405811680245876,70.76720147217637,6.558985242916289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.669349190191674,9.53140013787187,34.405811680245876,104.91814879012895,0.0,0.0,0.0,0.0,46.53,117.7013036832904,10.277571408752703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,35.70016356148813,268.00480147950157,0.0,13.016364072986097,4.165918130165288,-16.015875640379615,-24.71072491680966,0.0,-36.36643296747714,-19.927383491319965,0.0,0.9473684210526315,22,1,3,3,1,4,0,0,0,3,1,3,4,3,1,4,4,3.543100000000003,84.07580000000006,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11561383,CNC(=O)c1c(-c2ccc(F)cc2)oc2cc(N(CCO)S(C)(=O)=O)c(C3CC3)cc12,0,14.573043318203506,-6.563036944333389,14.573043318203506,0.7840386122181764,0.5805035033978855,446.4999999999998,423.3160000000002,446.13117105600054,164,0,0.2550929795436428,-0.45513254642220585,0.45513254642220585,0.2550929795436428,1.5161290322580645,2.2903225806451615,2.935483870967742,2.4864766851690283,2173.3923331492724,42.229168138596734,37.72188140679232,15.538377987720049,23.978009713793433,19.225399558796397,9.310001001633216,5.698164756647049,7.0134458079734765,3.854585908904867,4.609163770492479,2.6065654456616865,3.141301321789246,-2.91,58201181460.74034,7.045888826442893,7.973474489698625,4.0251473612260416,211.5290082786344,14.835772481448934,17.16048840156258,1.4118420783282006,11.454490810640218,5.907179729351506,0.0,9.099753175368056,12.808212032003757,0.0,0.0,0.0,54.4153525180353,39.04626543197977,44.19819235643148,57.326480102139016,32.58710151354969,1.4311996572326342,5.309813353288376,0.0,18.639807488021837,30.52081191992717,53.19863607041965,0.0,11.323698910571437,9.61502934458461,10.077801322358383,0.0,0.0,47.08058049065122,10.023291153407584,5.817220841045895,63.34717733506234,40.67166318303311,1.4118420783282006,22.292943266678478,0.0,99.85,151.5798692557782,17.60274921607558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,36.04612235218881,231.56632113428265,0.0,13.81486308513049,1.5215632968481503,-8.0789565327266,-9.051393716356188,-9.27490108598764,-11.69106209570329,-12.576730474487482,-6.563036944333389,0.3181818181818182,31,2,7,1,0,1,2,1,3,5,2,9,10,1,0,1,4,3.234200000000002,116.24880000000005,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +123631,COc1cc2ncnc(Nc3ccc(F)c(Cl)c3)c2cc1OCCCN1CCOCC1,0,14.375790055060872,-4.549114456084746,14.375790055060872,0.042964696149949244,0.517854527865434,446.9099999999998,422.71800000000025,446.15209652800064,164,0,0.168082368431765,-0.49278596305353384,0.49278596305353384,0.168082368431765,1.3548387096774193,2.225806451612903,3.064516129032258,2.0537643663029996,2011.0283881846867,42.77313821296676,38.769528199409876,15.52545714542833,24.425881131647344,19.812384119650588,8.243134997159856,5.150636182293725,5.528600655302954,3.2748601051237727,3.5352709130569577,2.0272436361490644,2.163992467137797,-2.6799999999999993,74610179691.58263,6.9070133618167935,10.08499225416898,5.330841061237727,218.41964538923858,19.520402214688524,19.309213889017368,12.910865744896011,0.0,0.0,0.0,4.899909730850478,14.358372089569237,0.0,0.0,11.600939890232516,30.54259973198256,47.57267669912127,56.444862005372165,51.54029277931827,34.00911387483217,0.0,14.867866772744895,0.0,6.372924901329379,51.51530059386766,47.35531940706992,0.0,11.49902366656781,14.783539260888475,15.89566410019341,11.49902366656781,11.600939890232516,61.07335401332418,4.736862953800049,5.817220841045895,37.900371693244445,36.5154652522827,6.434475392069527,10.902924932081056,0.0,68.74000000000001,138.74083893099655,4.39041504767482,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,14.704819995694466,54.013954668075925,224.34111504370392,5.770627409009189,6.271999230509186,-2.113776978061332,-1.9583839410000077,-5.713687365286396,-6.240632714627866,-5.639709101735709,-25.164131058658093,-3.608976079408449,0.36363636363636365,31,1,7,0,1,1,2,1,3,7,1,9,9,0,1,1,4,4.275600000000003,118.15370000000003,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +135413536,C[C@@H](O[C@H]1OCCN(Cc2n[nH]c(=O)[nH]2)[C@H]1c1ccc(F)cc1)c1cc(C(F)(F)F)cc(C(F)(F)F)c1,0,14.877799916524701,-6.233589224163586,14.877799916524701,0.5735288536429763,0.4376253118047192,534.4320000000009,513.2640000000001,534.1501880720006,200,0,0.4159366627407335,-0.34926417410133376,0.4159366627407335,0.34926417410133376,1.2972972972972974,1.945945945945946,2.4864864864864864,2.363790494999648,2194.985475986023,45.43627491978329,38.15935056445601,17.159350564456012,25.64096418114522,19.50317115694172,9.108743965941803,6.43287639081993,6.43287639081993,3.9318109156652064,3.9318109156652064,2.4751699701147105,2.4751699701147105,-3.229999999999998,239835902014.84607,10.866237882197703,10.262970547743883,6.373734780071109,234.36883717672256,9.473725907600098,11.641625339045822,9.089762525193299,0.0,0.0,18.042340433090423,9.87691300107973,14.276658789329723,31.44117209434996,0.0,12.08483741532659,48.19088863900615,13.350652465167045,55.47127819230898,69.07472796521445,0.0,0.0,20.067301366963846,0.0,44.06533770033511,13.055844927232233,86.67664284175217,0.0,0.0,5.689743398203474,30.732905333723743,0.0,0.0,39.389224662732985,28.323182626802993,5.817220841045895,73.07242564461741,47.091468137714884,2.8236841566564013,0.0,0.0,83.24000000000001,153.97190784391054,36.89820107396579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.835544762101087,32.23420112152041,284.31564449037666,0.0,10.523976132623718,2.4347693564874464,-12.69419036495755,-4.002565737595518,-20.635949280928678,-22.800895090848385,-18.55745617182442,0.0,0.391304347826087,37,2,7,0,1,1,2,1,3,5,2,14,7,0,1,1,4,4.952100000000003,114.44540000000003,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5039,CNC(=C[N+](=O)[O-])NCCSCc1ccc(CN(C)C)o1,0,11.11118839163867,-4.039146393003946,11.11118839163867,0.6757509304379621,0.38410287831471035,314.4109999999996,292.235,314.14126156400056,118,0,0.27357019168239366,-0.4638409773706315,0.4638409773706315,0.27357019168239366,1.7619047619047619,2.5714285714285716,3.2857142857142856,3.7423882678719522,1220.5662138194496,34.687716254269354,31.921847543855286,10.73834412478301,18.66911452193868,15.614926525597586,5.536995915525395,2.79164035476267,3.4040127904584643,1.4064303758985366,1.887237019997295,0.7923992894752443,1.1201128246500538,-1.6699999999999997,144734864.4695617,3.8021213458458365,9.299837768091132,7.618411990544398,159.481716434412,19.936687374480577,11.520494837748885,10.015416808869022,0.0,6.176006529022133,0.0,10.114318268765572,0.0,11.761884949391115,0.0,0.0,26.036491215891083,39.73902181230166,22.608161842964655,39.57931726593183,11.761884949391115,0.0,15.519536437427229,0.0,12.201816569466104,33.12929727031284,45.71663114690558,0.0,0.0,10.619626706576751,0.0,0.0,11.761884949391115,42.95251804998099,12.201816569466104,10.114318268765572,38.9356659611533,28.498968977444466,2.8236841566564013,0.0,0.0,83.58,113.13815915355498,10.114318268765572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.65600621711415,174.44228837693578,-0.7838025951121181,8.814928137541635,9.448474207792561,-7.383800233056186,-4.8560037766782065,-2.722355715038795,-2.035113395066637,-18.84128167398469,0.0,0.5384615384615384,21,2,7,0,0,0,0,1,1,7,2,8,13,0,0,0,1,1.4589999999999999,84.40080000000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +9797240,Fc1ccc(-c2ncn(C3CCNCC3)c2-c2ccncc2)cc1,0,14.422445860052143,-4.0349720096371895,14.422445860052143,0.07860922146636451,0.7997917103678766,322.3869999999997,303.23500000000007,322.1593748280005,122,0,0.12275262465754413,-0.3268613745692254,0.3268613745692254,0.12275262465754413,1.1666666666666667,1.875,2.5833333333333335,2.3684846653738534,1601.9273714168842,33.15181786940711,30.666818855009062,11.66681885500906,19.349871526725778,15.898657011754384,6.451443416254426,4.3278366185044455,4.3278366185044455,2.9354353036271696,2.9354353036271696,1.968926998719804,1.968926998719804,-2.53,769039714.3999275,4.760893312057332,6.530811952119412,2.827181582289739,166.69079254154246,9.87691300107973,8.599821475544315,0.0,0.0,0.0,0.0,4.9839785209472085,9.374393568622029,0.0,0.0,0.0,61.994081417270415,40.45665432273494,30.028054709195125,30.475911137066973,0.0,0.0,19.844870042974147,0.0,18.763742271008404,12.99371936863189,60.72089522262141,0.0,22.514758973090913,5.309813353288376,4.39041504767482,0.0,0.0,27.528776058317657,0.0,5.817220841045895,43.437396282072385,54.90367438157552,1.4118420783282006,22.514758973090913,0.0,42.74,120.302929188641,4.39041504767482,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,9.967957041894417,26.08549608939216,172.07986391542883,0.0,7.098124315676172,-0.6681204836796466,-4.1184538506760715,-1.6177512796964006,-11.0376053814228,-11.46766668241371,-7.68505721988316,0.0,0.2631578947368421,24,1,4,0,1,1,1,2,3,4,1,5,3,0,1,1,4,3.6757000000000017,91.99270000000003,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +9886273,CCCC[C@](C)(O)C/C=C/[C@H]1[C@H](O)CC(=O)[C@@H]1CCCCCCC(=O)OC,0,14.024030221348834,-5.513339645488591,14.024030221348834,2.8225394411644134,0.28616128234902766,382.54099999999937,344.2370000000001,382.271924316001,156,0,0.3050018388563748,-0.4689954278205915,0.4689954278205915,0.3050018388563748,1.5185185185185186,2.4074074074074074,3.1481481481481484,4.803302375106053,1887.4981042812385,53.43072142031815,51.04124145231931,13.041241452319316,27.71923210768268,25.291241452319316,6.474744871391589,4.103954059492991,4.103954059492991,2.2905080660544783,2.2905080660544783,1.290035069335222,1.290035069335222,-1.2,901279787251.7223,3.898357917080218,12.296236126186061,9.022726127488035,217.29487770106252,14.954479336014474,5.783244946364939,0.0,2.8623993144652684,0.0,5.969305287951849,9.589074368143644,0.0,0.0,0.0,50.8206601160137,32.3435917226132,65.65652185849159,26.943572633837583,73.89086172628608,11.75255023431679,2.8623993144652684,0.0,11.787915370726157,95.48702698714821,7.037952458882589,12.104143492071133,0.0,0.0,0.0,0.0,0.0,0.0,43.55158722781274,14.325937321943693,11.787915370726157,133.15326617134232,12.104143492071133,0.0,0.0,0.0,83.83,138.1695885431449,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.954479336014474,52.20970733659323,311.62248538706746,0.0,26.453687167649136,7.733659600912302,-5.291523673650729,-16.731263920115268,-5.9532799786204125,-61.023459018984305,-9.228664314626132,-3.9149745829655274,0.8181818181818182,27,2,5,1,0,1,0,0,0,5,2,5,18,1,0,1,1,3.9536000000000033,106.23460000000006,0,2,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +65335,Clc1ccccc1CN1CCc2sccc2C1,0,8.522606764928193,-3.4201197956034264,8.522606764928193,0.1515022675736959,0.7928094140981294,263.7929999999999,249.68099999999995,263.05354812800016,88,0,0.07396205287391802,-0.2943775234430562,0.2943775234430562,0.07396205287391802,1.4705882352941178,2.3529411764705883,3.2941176470588234,2.431884760440663,1064.4072187860822,24.05795974227243,22.23342635897305,9.805851885919228,13.839999272823986,11.518050920218414,5.712511974155367,3.018050920218414,4.212511974155367,1.926372625346783,2.924280488415464,1.1905229202765062,1.8778381709546121,-0.8300000000000001,2569657.447033382,3.595663650201482,4.807937906226536,2.3914768858210183,130.31548479946406,0.0,0.0,0.0,0.0,0.0,0.0,4.899909730850478,0.0,0.0,11.336785877934737,29.7281960132224,34.94077970971756,40.356428009752236,8.224551337021321,19.190619786383078,22.937725768167255,0.0,4.899909730850478,0.0,19.36664426996127,6.496859684315945,56.59489143882069,0.0,0.0,0.0,0.0,0.0,22.937725768167255,11.396769415166423,19.36664426996127,0.0,35.194669963478376,35.56820794798407,5.022633313741326,0.0,0.0,3.24,82.45839539309792,0.0,0.0,4.899909730850478,11.336785877934737,0.0,0.0,0.0,0.0,0.0,30.79155967661559,114.26687766036761,6.368396507448333,-0.7157512387671112,-1.3452070357570287,-1.6912199756445778,0.0,-4.200422582109316,-3.0707642431972797,-10.000797981229528,0.0,0.2857142857142857,17,0,1,0,1,1,1,1,2,2,0,3,2,0,0,0,3,3.959800000000002,73.58900000000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +119373,COc1cc2c(cc1OC)CN(CCc1ccc(NC(=O)c3cccc4c(=O)c5cccc(OC)c5[nH]c34)cc1)CC2,0,14.461971897698387,-4.579511583849783,14.461971897698387,0.07697645300366363,0.24029909184903506,563.6540000000016,530.3900000000003,563.2420211560009,214,0,0.2572960519890988,-0.49455453116423326,0.49455453116423326,0.2572960519890988,1.0,1.6904761904761905,2.4523809523809526,1.6025183129433964,3332.373298789452,57.8644781500588,53.38288223881919,20.38288223881919,33.588393491107645,27.59266793710522,11.198240746105304,7.868082947433957,7.868082947433957,5.429259997377736,5.429259997377736,3.5825331978497905,3.5825331978497905,-4.8199999999999985,754505665083521.0,8.61076759432589,11.581339619223534,5.167791887824382,289.8607319645169,24.497405484917778,5.749511833283905,19.751498215124748,0.0,5.907179729351506,0.0,14.48898409899412,0.0,0.0,0.0,24.16967483065318,77.77555393905612,49.65799931826322,66.49663998315197,64.32232544340525,33.40041586819718,0.0,9.87691300107973,0.0,19.242709486974704,39.41739009856803,104.98615803471989,0.0,17.248535499851716,24.949192606589065,5.687386274683562,17.248535499851716,0.0,49.891669475710884,19.242709486974704,0.0,69.54185839213667,77.30356167603136,2.8236841566564013,21.805849864162113,0.0,92.89000000000001,214.40058153509023,9.589074368143644,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.473725907600098,50.0540623517333,292.0794480188,0.0,27.63003567141521,-2.760841431744208,-11.864723152859357,-6.3947701856213435,-17.45718072648543,-8.473435727642691,-13.139381982818978,-10.785817149709997,0.23529411764705882,42,2,8,0,1,1,4,1,5,6,2,8,11,0,0,0,6,5.5602000000000045,165.25289999999964,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,4,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3397,CC(C)C(=O)Nc1ccc([N+](=O)[O-])c(C(F)(F)F)c1,0,13.287516652494332,-5.672885133219959,13.287516652494332,0.9093131141345432,0.6801783581027343,276.2139999999997,265.1259999999999,276.07217687200034,104,0,0.42257522735230724,-0.32585048775253384,0.42257522735230724,0.32585048775253384,1.631578947368421,2.263157894736842,2.736842105263158,3.9644051612134357,883.8200064750079,24.196152422706632,19.753065481419185,8.753065481419187,13.118802153517008,9.754253215165779,4.3070396196658205,2.9940384129111144,2.9940384129111144,1.6727701540416529,1.6727701540416529,0.9451567792243756,0.9451567792243756,-2.12,643612.5534868003,5.476308425739333,5.249619382287528,3.6680483575172067,121.62981204049456,5.309813353288376,5.563451491696996,1.4118420783282006,5.907179729351506,5.687386274683562,6.176298517443475,14.908855452837393,0.0,13.171245143024459,0.0,13.703784234591359,12.08483741532659,27.219072560901473,9.035586717328332,38.00852101594436,17.28195227871863,0.0,0.0,5.893957685363079,19.880082752034834,5.309813353288376,33.80502588345245,0.0,0.0,5.309813353288376,24.546017692391587,0.0,0.0,10.830490778169176,10.970835701515297,16.008275954128653,32.97482128799055,18.127256122989884,1.4118420783282006,0.0,0.0,72.24,76.97982473290946,28.080100595861857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.1194276400304,120.62003921468343,0.0,21.678265067639394,10.034324095417169,-6.175160698538676,-6.547145849080374,-5.402601568405139,-5.672885133219959,-7.868168461829178,0.0,0.36363636363636365,19,1,5,0,0,0,1,0,1,3,1,8,5,0,0,0,1,3.2081000000000017,61.56610000000001,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4509,O=C1CN(/N=C/c2ccc([N+](=O)[O-])o2)C(=O)N1,0,11.553798343411438,-3.045987260644999,11.553798343411438,0.12293745275888135,0.34574784602989994,238.15900000000002,232.11099999999996,238.033819292,88,0,0.4330616376402305,-0.39959224840943924,0.4330616376402305,0.39959224840943924,1.8235294117647058,2.588235294117647,3.1176470588235294,2.4884513827030443,760.3871202237592,17.687716254269354,13.830095834319149,7.830095834319148,10.495812251228752,6.92049933459767,3.9732857390977117,2.578388913084926,2.578388913084926,1.4789921388063798,1.4789921388063798,0.8524523910517602,0.8524523910517602,-2.71,89030.09826408757,5.56840568004393,4.040253449723967,2.2746039733648105,102.31872360337005,4.417150937053347,11.420170733133617,7.172089497202643,5.907179729351506,0.0,11.91529671419908,20.21866880612577,9.803449708026353,5.101407525739723,0.0,0.0,6.042418707663295,0.0,19.086863707251396,27.19517121319396,24.01312866228759,0.0,10.318725877242908,5.101407525739723,0.0,6.496859684315945,27.959403102966604,0.0,0.0,5.309813353288376,10.67871938593283,0.0,0.0,34.55802971751473,4.794537184071822,10.114318268765572,12.614040199725542,21.60339587811966,1.4118420783282006,0.0,0.0,118.05000000000001,53.27838422962224,19.703392636909214,0.0,10.318725877242908,0.0,0.0,0.0,0.0,0.0,9.51855846279307,8.265634859179302,48.65023237457288,0.0,32.42226314446169,13.318111713055796,0.0,-3.5307077244478027,-3.2971761358864526,-1.1000694444444445,-3.045987260644999,0.0,0.125,17,1,9,0,1,1,0,1,1,6,1,9,3,0,1,1,2,0.07349999999999995,53.20110000000001,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +472335,CC[C@@]1(O)C(=O)OCc2c1cc1n(c2=O)Cc2cc3c([N+](=O)[O-])cccc3nc2-1,1,13.933628537834883,-4.0112273246968435,13.933628537834883,0.05359315948601684,0.31359121036395293,393.35499999999985,378.2350000000001,393.0960852000004,146,0,0.3426763382231084,-0.45819772812579923,0.45819772812579923,0.3426763382231084,1.5517241379310345,2.413793103448276,3.1724137931034484,2.0800642082202097,1939.5720803418528,33.43627491978329,28.791130529283052,13.791130529283054,19.945153196112056,15.135658174793507,7.727409884329644,5.938474376513486,5.938474376513486,4.371610635568715,4.371610635568715,3.014383596971801,3.014383596971801,-3.59,1443195794.4706125,7.676772623586253,5.708216565015799,2.2140574383826785,184.0424463500403,14.412770792698616,6.558985242916289,5.601050810983688,1.4311996572326342,11.24665316973557,5.969305287951849,14.908855452837393,9.77851570501903,0.0,0.0,12.894310824958975,24.500181024319264,24.023114471908382,51.6112301521406,38.75413916417985,22.559616494716465,1.4311996572326342,9.551078168738563,0.0,31.881712756840983,0.0,67.37057036129687,0.0,11.387855989696922,5.559266895052008,5.687386274683562,0.0,0.0,26.98370235384793,28.188295876087793,10.114318268765572,49.10579128009916,35.006630722388294,0.0,22.29078092177798,0.0,124.56000000000002,123.21421119853152,19.703392636909218,0.0,4.567099647791355,0.0,0.0,0.0,0.0,0.0,14.829649665854468,20.621819443615713,127.19543859040016,0.0,41.72859823252672,15.293676651694081,-13.487532482932465,-2.1631951840781207,-5.5468785820568405,-4.0112273246968435,-10.758879900856712,0.0,0.25,29,1,9,0,2,2,1,2,3,8,1,9,4,0,0,0,5,1.9878,101.1792,0,1,0,0,0,2,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +11683,CC(=O)O[C@]1(C(C)=O)CC[C@H]2[C@@H]3C=C(C)C4=CC(=O)CC[C@]4(C)[C@H]3CC[C@@]21C,0,14.490624903804235,-5.793147990677755,14.490624903804235,2.275790952649043,0.6541950145872741,384.51599999999956,352.26000000000016,384.2300595040009,152,0,0.30314190910215305,-0.4506405377961875,0.4506405377961875,0.30314190910215305,1.25,2.107142857142857,2.8214285714285716,2.7659404621140733,2024.5486630161877,48.248558665513926,45.63299316185545,13.632993161855453,25.75261230250229,23.520620726159656,7.520620726159658,6.103954059492991,6.103954059492991,4.559236805337111,4.559236805337111,3.25562817825917,3.25562817825917,-1.7099999999999997,224793180256.69455,4.476195044430214,6.141666395623698,2.38729327796658,212.2875565154742,4.736862953800049,0.0,17.167540703713566,0.0,0.0,5.969305287951849,14.383611552215466,0.0,0.0,0.0,25.328960510696195,80.2904485428291,59.762564173128496,2.7415171123404405,62.98474830346262,17.535795180681728,0.0,0.0,28.511853994882795,78.09806080543835,0.0,23.25035255220967,0.0,0.0,0.0,0.0,0.0,0.0,23.136845991665414,19.120474506015512,28.511853994882795,116.36128379190157,23.25035255220967,0.0,0.0,0.0,60.440000000000005,147.39606253321256,25.349680001577223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,32.89820534808528,284.15037697822135,0.0,41.29348386953836,0.0,-21.464309090180308,-25.739756083710503,-4.965474476521555,-31.790959145997718,-24.066695384682895,0.0,0.7083333333333334,28,0,4,4,0,4,0,0,0,4,0,4,7,2,0,2,4,4.575300000000005,106.41100000000007,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +60877,Nc1nc(=O)n([C@@H]2CS[C@H](CO)O2)cc1F,0,14.125712986583522,-3.346510298563871,14.125712986583522,0.2235624527588813,0.7349748054075844,247.25100000000006,237.17099999999996,247.0426904,88,0,0.3513508746598313,-0.3927583774366525,0.3927583774366525,0.3513508746598313,2.25,3.125,3.875,2.718995952990019,795.519571814802,20.29252873988395,17.352598421364554,8.169095002292279,11.633463462290253,8.558043375859857,4.571864475323803,2.4800385479022067,3.259077650264668,1.505949037485848,2.13469360896864,0.8757253783611451,1.3509548536704155,-1.1200000000000003,223547.59644859325,4.280094121244407,4.39854613917551,2.036045870227899,108.48493360337541,15.565388120633536,11.616002820707322,14.458767775537325,1.4311996572326342,0.0,5.689743398203474,4.567099647791355,9.184952231746642,4.9839785209472085,11.761884949391115,0.0,0.0,8.4464739974906,19.58567323458215,26.655080242430017,17.57974772722614,1.4311996572326342,9.551078168738563,0.0,11.616002820707322,17.98365910379272,22.474396634135953,0.0,0.0,11.409460373929747,10.208277825509848,0.0,11.761884949391115,33.76707815591563,4.736862953800049,5.817220841045895,15.799262703128093,10.967432394886583,2.8236841566564013,0.0,0.0,90.37,53.0973841523992,9.184952231746642,0.0,16.32898459718247,0.0,0.0,0.0,0.0,0.0,10.092786712054421,18.587056660880624,93.20313444052371,-0.270279483707063,15.083038076341646,3.7016980661767813,-8.224297829094908,-2.90196603101117,0.0,-4.8181972789115655,-3.273129960317461,0.0,0.5,16,3,6,0,1,1,0,1,1,7,2,8,4,0,1,1,2,-0.4550000000000003,56.32120000000001,0,1,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +1986,CC(=O)Nc1nnc(S(N)(=O)=O)s1,0,11.317698058390022,-4.501108630952379,11.317698058390022,0.10920823885109598,0.6318586926732331,222.25100000000006,216.203,221.988132052,72,0,0.2668537466795803,-0.3007462541560122,0.3007462541560122,0.2668537466795803,1.8461538461538463,2.6153846153846154,3.230769230769231,3.0833790272704134,581.5498968168117,15.008071689507773,11.830095834319147,7.4630889961746,8.47508630906506,5.518472077595906,4.933391200824397,1.7425660807310397,4.293786315626174,0.8136515547524882,2.8302765415787987,0.4388112642331252,1.675700586409898,-1.06,10148.782479522912,4.4401137198316185,3.3584989230794076,2.7167362781176934,86.62544391980093,5.309813353288376,2.8236841566564013,1.4118420783282006,15.378393889864384,10.023291153407584,0.0,4.794537184071822,13.542820220500968,0.0,10.197363616602075,11.336785877934737,0.0,10.964167785806339,0.0,21.560136071896014,32.39881524053316,0.0,10.197363616602075,5.12502323617203,11.191547797969225,5.309813353288376,0.0,0.0,0.0,10.434836589460406,5.131558479839333,0.0,11.336785877934737,24.522340330282518,14.817828337479405,0.0,10.964167785806339,4.339655680673546,4.235526234984602,0.0,0.0,115.03999999999999,37.37860039673967,13.212334168400758,0.0,16.646599231223114,0.0,0.0,0.0,0.0,0.0,10.197363616602075,8.347801903495263,62.78818259479718,0.19643518518518466,11.238694412950366,4.9400379109977335,0.0,-1.5822212773998483,0.0,0.0,-3.080020195578232,-4.501108630952379,0.25,13,3,7,0,0,0,0,1,1,6,2,9,4,0,0,0,1,-0.8561000000000003,45.58590000000001,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +10238338,O=C(O)c1cccc(C2=C(c3cc(Cl)ccc3OCc3ccc(F)cc3F)CCC2)n1,1,15.108673243571609,-3.840370985719562,15.108673243571609,1.0001559321310396,0.48148661130463244,441.8609999999998,423.71700000000016,441.09432755600056,158,0,0.3540032605941987,-0.48816187119522775,0.48816187119522775,0.3540032605941987,1.2258064516129032,2.064516129032258,2.903225806451613,2.2566323142741638,1975.999841529122,37.66832572735216,32.805851885919225,15.561780831937684,22.231898903551517,16.98890517640539,8.458621358950753,5.571669472917917,5.949633945927145,3.629529965380389,3.8185122018850026,2.337991883656293,2.4797285610347535,-3.2499999999999987,11331735851.993752,8.355285996055226,8.857112761773976,4.58984874214387,207.7041775032629,9.84567114490726,29.636866753140445,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,18.55934580036867,0.0,0.0,17.643358597895812,72.56191471776974,30.41650634181993,20.772272112720877,46.72393387922249,28.716454238322903,1.4311996572326342,4.9839785209472085,0.0,25.677759946904427,0.0,93.5536023378937,0.0,5.749511833283905,4.736862953800049,8.78083009534964,5.749511833283905,11.600939890232516,16.06209200000627,6.558985242916289,11.63444168209179,69.73096631604463,54.38176836896965,5.022633313741326,12.577408717371169,0.0,59.42,142.09638846617244,9.184952231746642,4.39041504767482,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,41.071897956158956,182.683831785143,6.0804308826717435,15.854574548658382,2.773150924340994,-8.052056109900615,-7.066364257247236,-11.817176095100441,-11.17157624840187,-3.840370985719562,0.0,0.16666666666666666,31,1,4,1,0,1,2,1,3,4,1,7,6,0,0,0,4,6.385100000000004,114.00330000000005,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2140,CC(=O)Nc1c(I)c(NC(C)=O)c(I)c(C(=O)O)c1I,0,12.076221286848071,-3.21991516282439,12.076221286848071,0.037195294784580835,0.4569915391683752,613.9150000000004,604.8430000000001,613.7696507680002,108,0,0.337517131408574,-0.47758276642574593,0.47758276642574593,0.337517131408574,1.05,1.5,1.85,3.948546873101585,815.603601731528,23.057959742272434,18.16131377188305,15.633808645412017,12.97817416102371,8.830545962905262,7.764117918205967,3.1355297101460087,6.371777146910491,1.9014235564793371,5.023784415737637,1.216636267999743,5.305669762900429,-0.18000000000000005,616692.8356268354,8.451911392398967,7.195269506439019,3.9292396656650084,168.26767049826847,15.728434897683965,0.0,2.8236841566564013,11.814359458703011,1.4311996572326342,5.969305287951849,9.589074368143644,4.794537184071822,0.0,0.0,0.0,67.77261188120417,21.928335571612678,27.648770854260306,30.540655237000394,96.93104917722616,1.4311996572326342,0.0,0.0,13.703784234591359,10.619626706576751,16.273998304893183,0.0,0.0,10.619626706576751,11.374772549367124,0.0,67.77261188120417,22.892472937762072,9.589074368143644,10.710546813196189,32.28632424738149,0.0,2.8236841566564013,1.4311996572326342,0.0,95.50000000000001,48.425673022310335,14.383611552215466,0.0,21.330173519772938,0.0,0.0,67.77261188120417,0.0,0.0,5.1088081911072125,12.479435150910355,65.22156144809776,4.522171249055178,36.22844713088939,3.8358452475434612,-1.4210506046863192,-4.587144145250693,0.0,0.0,-6.439830325648778,0.0,0.18181818181818182,20,3,6,0,0,0,1,0,1,4,3,9,5,0,0,0,1,3.1154,100.15970000000003,0,0,0,0,1,0,0,0,1,1,3,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5311010,CCOc1ccc(C[C@H]2NC(=O)CCSSC[C@@H](C(=O)N3CCC[C@H]3C(=O)N[C@@H](CCCN)C(=O)NCC(N)=O)NC(=O)[C@H](CC(N)=O)NC(=O)[C@H]([C@@H](C)O)NC(=O)[C@H]([C@@H](C)CC)NC2=O)cc1,0,16.429309119888163,-6.820504642502849,16.429309119888163,1.4381611739651965,0.06516159166898364,994.2080000000021,926.6719999999996,993.4412085840019,378,0,0.24622360867827905,-0.49388976440079774,0.49388976440079774,0.24622360867827905,1.0294117647058822,1.7941176470588236,2.5,3.3391697428666283,4837.419967972418,108.91688439286608,99.13482561699361,33.76781877884906,58.763537061967746,48.922689832108546,18.350494714406274,10.428380661303933,12.169962285101128,6.143733174076976,7.4391444122264385,3.6013536427874118,4.637355480663697,-5.660000000000002,9.666406208338335e+44,13.597539131904101,28.61802070016902,18.10184022506355,497.6947521993022,69.07342527595519,50.69844326838781,15.530262861610208,60.502996950747686,0.0,0.0,47.94537184071822,0.0,0.0,0.0,53.74934250402077,69.23459011661149,81.37068983557319,47.440924754235155,148.7951934809136,80.65959324628851,1.4311996572326342,42.06860320386911,23.053108612541898,126.59623298521524,37.459478066164436,29.733126322350174,0.0,5.749511833283905,59.0647073539975,0.0,5.749511833283905,21.587795952773448,156.17645824426737,54.31829674204759,5.893957685363079,150.23169774720682,24.16967483065318,18.353947018266606,0.0,0.0,365.66999999999996,345.3196542697133,33.69748190507248,33.561760288502754,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,73.12147979966387,580.6586662775612,0.0,151.11633730201734,-13.30902510571602,-18.927796533363423,-48.93353975271353,-55.15989701487406,-52.46818417322808,-41.049105427255576,-3.8441222390947267,0.627906976744186,68,14,23,0,2,2,1,0,1,15,11,25,24,0,2,2,3,-3.0446000000000133,252.6068999999995,0,1,0,0,0,0,0,0,0,0,10,10,0,0,0,1,7,3,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0 +5281070,CN(C)CC[C@@H](c1ccc(Cl)cc1)c1ccccn1,0,9.14427484882842,-4.243765825774757,9.14427484882842,0.7877737360376249,0.8240069237957237,274.7949999999996,255.64299999999994,274.12367628800047,100,0,0.08399085918377759,-0.30936473198175074,0.30936473198175074,0.08399085918377759,1.368421052631579,2.1578947368421053,2.8947368421052633,3.2769228039131235,1226.3464151119624,30.13531001146206,28.27239166400914,10.028320610027597,16.789358009941758,14.30701622525451,5.184980698263736,3.0834094275045296,3.4613739005137574,1.8410081126272546,2.0299903491318685,1.1227583049073637,1.2172494231596704,-1.3800000000000001,30183290.497422542,3.4389856255834608,6.68985926125854,4.049073463055102,146.29039527876398,4.899909730850478,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,29.7281960132224,56.554564708559994,37.86175832264006,10.96606844936176,26.044412567234176,11.600939890232516,0.0,9.883888251797686,0.0,12.266882586692457,20.448513484880436,64.7498389647446,0.0,0.0,0.0,0.0,0.0,11.600939890232516,30.332401736678126,0.0,0.0,49.56867464047213,48.46982616445782,5.022633313741326,0.0,0.0,16.130000000000003,102.36514476716799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,37.64535245746671,152.8369906768633,5.794600718954298,2.625731117549901,-0.7877737360376249,-2.698268140589568,-3.827391975308644,-7.904784729220905,-5.353250495156913,-11.991408992609397,0.0,0.3125,19,0,2,0,0,0,1,1,2,2,0,3,7,0,0,0,2,3.8186000000000027,80.70300000000005,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2145,CCC1(c2ccc(N)cc2)CCC(=O)NC1=O,0,13.248030202821868,-4.2067991780045375,13.248030202821868,0.35463878915763924,0.5969362176118971,232.28300000000013,216.15499999999997,232.121177752,90,0,0.2367039990534466,-0.3987285553051811,0.3987285553051811,0.2367039990534466,1.7058823529411764,2.4705882352941178,3.1176470588235294,3.33490418636547,1005.1995424085297,26.27350269189626,24.210923771927643,8.210923771927643,14.562177826491073,12.170709470213675,4.329068683713801,3.070715325441935,3.070715325441935,2.0551248336494172,2.0551248336494172,1.2147652336661874,1.2147652336661874,-1.8399999999999996,3592293.943571262,2.9389596792158605,4.201275601947283,1.9041508873888484,122.84666174685229,5.719716975726273,0.0,4.235526234984602,11.814359458703011,0.0,0.0,14.898887721432018,0.0,0.0,0.0,18.93672953262227,30.394138709682345,24.397138181544918,10.898024694077659,31.644461833341097,17.501745733386574,0.0,5.309813353288376,0.0,31.385657290680598,5.719716975726273,29.733126322350174,0.0,0.0,11.029530329014648,5.687386274683562,0.0,0.0,11.814359458703011,15.004064837540422,0.0,49.35397954319372,24.16967483065318,4.235526234984602,0.0,0.0,72.19,83.93034269970573,9.589074368143644,0.0,5.719716975726273,0.0,0.0,0.0,0.0,0.0,0.0,22.05538746519746,126.10280067735694,0.0,25.47925420632491,-0.7993962585034016,-7.068296563995969,-4.374317890736541,-5.456096938775508,-12.320585435563116,-3.980028462774002,0.0,0.38461538461538464,17,3,4,0,1,1,1,0,1,3,2,4,4,0,1,1,2,1.3532,65.20710000000003,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +119057475,O=c1ccc2ccc(F)c3c2n1C[C@H]3CN1CCC(NCc2cc3c(nn2)OCCO3)CC1,0,16.231302814352436,-4.760325982754163,16.231302814352436,0.2608860562456279,0.6359620776207305,451.5019999999997,425.2940000000002,451.2019679120007,172,0,0.27600320485589974,-0.4842670325186257,0.4842670325186257,0.27600320485589974,1.2727272727272727,2.090909090909091,2.9696969696969697,1.5862556108776282,2397.515902993317,45.5660314317802,41.83877732190061,15.838777321900608,26.184969839984177,21.84288453566402,8.895670940164063,6.249120980767183,6.249120980767183,4.2639733974944205,4.2639733974944205,2.902398501844019,2.902398501844019,-3.0400000000000005,749681940310.2247,6.76159271429654,8.385608969059518,3.8480838633193337,226.45553410530735,24.250548639530308,20.347033405206673,5.749511833283905,0.0,11.439255231487378,0.0,4.794537184071822,4.39041504767482,5.098681808301038,5.098681808301038,0.0,49.25304950874532,68.24133790006724,26.288972830337137,49.54494693785865,10.902924932081056,0.0,24.974186348532285,0.0,37.65141932500337,32.608549538780416,57.640497945031655,0.0,11.629500169719275,20.34280615594048,4.39041504767482,11.629500169719275,0.0,58.290815002373954,12.99371936863189,5.817220841045895,64.16615087882286,35.006630722388294,1.4118420783282006,10.902924932081056,0.0,81.51,155.84807781068284,6.165295740242042,4.39041504767482,4.567099647791355,0.0,0.0,0.0,0.0,0.0,10.197363616602075,43.783773334013596,248.17419756745005,0.0,12.225661527694298,4.4359826642055555,-6.419605760791202,-8.774201265958977,-11.569781471546035,-9.440301346280787,-29.215285248106223,0.0,0.4583333333333333,33,1,8,0,3,3,1,2,3,8,1,9,5,0,1,1,6,2.0531999999999995,120.23070000000004,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +60164,COc1ccc(-c2ccc3cc(C(=O)O)ccc3c2)cc1C12CC3CC(CC(C3)C1)C2,0,12.312143119113511,-4.614573505216474,12.312143119113511,0.8776765511007489,0.5197041292773107,412.52899999999966,384.3050000000002,412.20384475600076,158,0,0.33520102142987873,-0.49645490240635376,0.49645490240635376,0.33520102142987873,1.032258064516129,1.6774193548387097,2.3870967741935485,1.9599557042009925,2321.085712812386,45.729168138596734,43.22474487139159,15.22474487139159,26.272667912531954,22.72474487139159,8.816496580927726,6.718643696413162,6.718643696413162,4.771779326771846,4.771779326771846,3.4624362178478973,3.4624362178478973,-2.809999999999999,708147055455.9756,5.56612025117888,6.847083289017121,3.051724841555359,222.02711911404043,9.84567114490726,5.749511833283905,0.0,0.0,1.4311996572326342,5.969305287951849,0.0,4.794537184071822,0.0,0.0,24.16967483065318,113.44585788410237,26.124829834250292,29.05050662462222,51.65068934557506,16.74175371688144,1.4311996572326342,0.0,17.681873056089238,43.65253987737305,7.037952458882589,65.50867135236365,0.0,16.876414816677897,4.736862953800049,0.0,5.749511833283905,0.0,18.11606593794165,5.41499046939678,17.681873056089238,91.16947059203797,54.38176836896965,0.0,23.33055106955622,0.0,46.53,167.49920527826794,18.50212274577402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,29.470958065926418,251.71443217154345,0.0,12.312143119113511,2.0075541074209937,-10.150467826711832,-16.805200591693442,-12.118281872663522,-27.014440359432307,0.0,-3.8624054142435984,0.39285714285714285,31,1,3,4,0,4,3,0,3,3,1,3,5,4,0,4,7,6.681400000000005,122.74530000000007,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3730,CC(=O)N(CC(O)CO)c1c(I)c(C(=O)NCC(O)CO)c(I)c(C(=O)NCC(O)CO)c1I,0,14.25327047480838,-4.545280887024236,14.25327047480838,0.7500461967385665,0.11425581094764041,821.1410000000011,794.9330000000001,820.8803234120007,192,0,0.253134920728996,-0.3936147042703631,0.3936147042703631,0.253134920728996,0.9411764705882353,1.411764705882353,1.8235294117647058,4.9301676232170335,1728.4639581590513,48.17084391739479,41.649768819702324,22.122263693231286,26.637463722575184,20.06322853463417,10.95555903761556,5.143997045032875,8.380244481797355,3.1576287842890007,6.336932932300395,1.9158369256513648,6.487301704593042,-0.4200000000000004,372039968982.49396,10.041112987285622,14.975328673633785,8.31928667732424,273.23605963811406,46.172385584070504,0.0,2.8236841566564013,14.49437767274731,11.814359458703011,0.0,14.383611552215466,0.0,0.0,0.0,0.0,67.77261188120417,27.52806942550362,88.92990163667635,72.53379886657913,91.18153734394225,8.587197943395806,10.619626706576751,0.0,25.091946198145642,44.067444512547176,21.837449796590178,0.0,0.0,15.51953643742723,5.687386274683562,0.0,67.77261188120417,114.36917514064032,4.794537184071822,10.710546813196189,52.24152347989732,0.0,2.8236841566564013,0.0,0.0,199.89,125.02539267659783,14.383611552215466,0.0,0.0,0.0,67.77261188120417,0.0,0.0,0.0,30.652849146643273,36.08453611111617,201.01359967312322,2.8777982969771934,41.56063462274088,20.53818391165894,-4.4915541950113385,-7.105856884666425,0.0,-12.88796802486792,-29.64483739995466,0.0,0.5263157894736842,34,8,12,0,0,0,1,0,1,9,8,15,19,0,0,0,1,-1.6274999999999986,146.56419999999997,0,6,0,0,0,0,0,0,0,0,3,3,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +54676228,CN1C(C(=O)Nc2ccccn2)=C(O)c2ccccc2S1(=O)=O,0,13.340426895301533,-5.482459831926594,13.340426895301533,0.35004960317460343,0.8701839218107901,331.3529999999997,318.24899999999997,331.0626768960003,118,0,0.2932519294996805,-0.5048615489047509,0.5048615489047509,0.2932519294996805,1.391304347826087,2.1739130434782608,2.9565217391304346,2.47004669725011,1458.2978595121422,27.65181786940711,23.88288223881919,11.699378819746915,16.40471308159217,12.07538262732788,7.159984070164698,3.9904685715354757,5.713997913325764,2.6611657312638495,4.146550236950217,1.6865038750670533,2.852130742041671,-2.8699999999999997,29141737.73845622,5.969217662443483,5.398063656574466,2.4232486117292016,150.90805056939385,10.418621544395588,5.817862777835028,12.86804626304021,0.0,17.361670539991724,0.0,9.099753175368056,13.401775505276145,0.0,0.0,18.127256122989884,24.16967483065318,22.824449271304662,15.861551924879533,34.8113285557086,27.507498532250292,1.4311996572326342,9.289194512243443,0.0,4.895483475517775,12.285640253570621,59.730316969210655,0.0,0.0,5.309813353288376,5.817862777835028,0.0,0.0,35.69880631731334,14.817828337479405,0.0,20.641795609569414,59.06234895303143,1.4118420783282006,7.19036452888881,0.0,99.6,103.41434186855723,13.212334168400758,0.0,5.309813353288376,0.0,0.0,0.0,0.0,0.0,10.092786712054421,17.921385853433254,126.78843088869155,0.0,15.388443073714535,3.957056222180229,-2.5945229696817,-4.231426366843033,-7.128158493429749,-0.939445436117514,-3.7579170865877236,-5.482459831926594,0.06666666666666667,23,2,7,0,1,1,1,1,2,5,2,8,4,0,0,0,3,1.5809999999999997,83.80630000000004,0,1,1,0,0,1,0,0,0,0,1,1,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0 +3357,CN1CCN(c2c(F)cc3c(=O)c(C(=O)O)cn(CCF)c3c2F)CC1,0,16.493879794973548,-4.680871362433861,16.493879794973548,0.75058201058201,0.8887969358156732,369.34299999999973,351.19900000000007,369.1300260960005,140,0,0.3407228977585615,-0.4774970239740692,0.4774970239740692,0.3407228977585615,1.4615384615384615,2.1923076923076925,2.8076923076923075,2.738572065586024,1592.2908647205595,34.71266028065169,30.200279076919145,12.200279076919145,19.394840827690377,15.350028615423309,6.4417803249594465,4.588301793683531,4.588301793683531,3.1256072627265366,3.1256072627265366,2.0926168446626336,2.0926168446626336,-2.5499999999999994,432603565.5347125,6.260311973208361,6.986799011094744,3.0256462698611455,171.96608364303447,19.475727300599523,23.694752858104728,5.817220841045895,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,17.96578232709628,0.0,0.0,0.0,13.018245607945541,41.7556438412701,31.107370178099195,46.377485973097265,22.559616494716465,1.4311996572326342,9.467009378641833,0.0,6.496859684315945,44.48986961907478,39.6365346682392,0.0,0.0,10.32870012275102,18.858631417708022,0.0,0.0,60.13508274592519,6.496859684315945,11.63444168209179,33.66088413066256,17.009851102549877,0.0,12.33412458931369,0.0,65.78,117.85535266091642,13.979489415818463,8.78083009534964,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,24.734095112126372,187.20536153844677,0.0,23.376662152637255,1.7586242512734074,-8.090998114714973,-7.252979149375393,-1.9903949751196774,-1.9388568614493045,-30.150752175031514,0.0,0.4117647058823529,26,1,6,0,1,1,1,1,2,6,1,9,5,0,1,1,3,1.6991999999999998,90.76830000000005,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +25124566,O=C(NNc1cc(C(F)(F)F)cc(C(F)(F)F)c1)[C@@H](c1cccnc1)N1CCN2CCC[C@@H]2C1,0,14.50110182035777,-6.0715605387540625,14.50110182035777,0.8964170279709602,0.49184816037666484,487.44799999999987,464.2640000000003,487.1806796760007,184,0,0.4160019815143186,-0.2985332205432821,0.4160019815143186,0.2985332205432821,1.2058823529411764,1.911764705882353,2.588235294117647,2.2130211266209185,2009.5354369845045,44.94471108822056,38.91210310601902,15.912103106019016,25.06008395210545,19.918512732759318,8.524085541759401,5.999935281118549,5.999935281118549,3.7380954050143167,3.7380954050143167,2.350852471415511,2.350852471415511,-2.8600000000000003,129453677379.98659,8.664123458535546,9.414132123995929,5.4380378390031945,223.88554327160705,0.0,6.017892468349645,2.8236841566564013,0.0,5.907179729351506,12.35259703488695,30.415967459504845,0.0,26.34249028604892,0.0,6.042418707663295,48.97583580932487,55.6741231731399,27.78035770743931,62.746641306351826,11.594566004035068,0.0,20.202614129040594,0.0,37.134231774245,31.406254883656203,59.248238435036974,0.0,0.0,10.837632292784859,32.02987656073248,0.0,0.0,52.696308917613095,17.147134218958772,0.0,64.24002642567407,42.55788395994599,2.8236841566564013,0.0,0.0,60.50000000000001,154.6019267050667,32.507786026290965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,30.238855280060797,276.1977525276121,0.0,15.51947832755034,0.0,-12.660452480260219,-3.0143735827664377,-20.14568038179741,-23.9793108231427,-18.417413587195718,0.0,0.45454545454545453,34,2,6,0,2,2,1,1,2,5,2,12,5,0,2,2,4,4.083600000000003,111.35740000000003,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,3,2,0,0,0,0,0,0,0,0,6,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +5362119,NCCCC[C@H](N[C@@H](CCc1ccccc1)C(=O)O)C(=O)N1CCC[C@H]1C(=O)O,0,14.857112730409987,-5.771395450155375,14.857112730409987,1.2563300783659423,0.3844882105003128,405.49499999999955,374.2470000000001,405.2263710920008,160,0,0.3259154957391964,-0.4800804062983688,0.4800804062983688,0.3259154957391964,1.4137931034482758,2.2413793103448274,2.9655172413793105,3.4887034573780284,1896.32180231229,48.342416792648606,44.88288223881919,13.88288223881919,26.262972649073358,22.270398880087132,7.112261512659532,4.471708308038887,4.471708308038887,2.6933905966261658,2.6933905966261658,1.5736648665949649,1.5736648665949649,-2.45,340253490877.9265,5.05583084957349,11.527075422794708,6.829610950921836,214.52391995543593,20.837243088791176,16.27131117168389,0.0,5.907179729351506,2.8623993144652684,11.938610575903699,14.898887721432018,4.794537184071822,0.0,0.0,36.58501843964585,50.29786058398921,31.1705136953799,16.983960917711403,64.47647662984028,17.845790305255207,2.8623993144652684,10.209723084138854,5.719716975726273,62.664151714354574,12.99371936863189,35.77554503001347,0.0,0.0,11.029530329014648,0.0,0.0,0.0,64.01071319200094,20.756536453544843,0.0,79.44072336009899,30.212093538316473,4.235526234984602,2.8623993144652684,0.0,132.95999999999998,145.20864647812033,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.217616382214425,42.737648009875606,253.9933383486026,0.0,39.80267131972845,5.1719776786969485,-3.1195713929192603,-9.463383603975702,-23.472583503880962,-34.63982362700225,-9.272625219249814,0.0,0.5714285714285714,29,5,8,0,1,1,1,0,1,7,4,8,13,0,1,1,2,1.2352000000000007,108.38670000000006,2,0,0,0,0,0,0,0,2,2,3,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +9797017,CC(N)=NCCSCC[C@H](N)C(=O)O,0,11.667692614599407,-3.9968425217309145,11.667692614599407,0.6144522089712847,0.31509564179928823,219.31000000000014,202.17399999999998,219.104147784,82,0,0.3199991991877586,-0.48008606933064424,0.48008606933064424,0.3199991991877586,2.0,2.9285714285714284,3.5714285714285716,6.42234666072668,693.3543502490451,25.430721420318147,23.566385657891463,7.382882238819189,13.420373616959997,11.15802644439134,3.7774203528553683,1.6144640896630993,2.2268365253588938,0.6722909192286902,1.0697642299941152,0.24899376017685035,0.5390175084770905,-0.75,684063.214547927,2.3240010227189716,7.6350415512465375,7.876405664306539,112.15121087602978,16.548242142559758,8.841576625006047,2.8236841566564013,0.0,1.4311996572326342,5.969305287951849,9.786941916707491,0.0,11.761884949391115,0.0,0.0,18.929773903775217,24.53864357499808,9.947895454267929,31.999816362534467,23.56681002310023,1.4311996572326342,0.0,16.431838684088213,19.242709486974704,17.906773454616264,0.0,0.0,0.0,11.439433951452546,0.0,0.0,11.761884949391115,40.83839918778224,4.794537184071822,0.0,29.673919692667695,4.992404732635669,5.6473683133128025,1.4311996572326342,0.0,101.7,72.15572691614375,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.101212923742882,23.527670644588074,125.73692225651865,-0.8428245464852602,14.533849864536418,3.3986095627606723,-8.985614157208902,-3.750953925615497,-3.874684075018897,-3.9968425217309145,-7.051795791089626,0.0,0.75,14,5,5,0,0,0,0,0,0,5,3,6,9,0,0,0,0,-0.1012999999999995,59.716600000000014,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +3062316,Cc1nc(Nc2ncc(C(=O)Nc3c(C)cccc3Cl)s2)cc(N2CCN(CCO)CC2)n1,0,13.560621304987873,-4.242648230930977,13.560621304987873,0.031270559095302186,0.4657173060978848,488.0169999999997,461.8090000000002,487.1557217520008,174,0,0.2669995457316883,-0.3950445481992146,0.3950445481992146,0.2669995457316883,1.4242424242424243,2.303030303030303,3.090909090909091,1.9460017230634172,2151.0324235163052,45.927838751346,41.73320451290052,17.3056300398467,26.29352486036105,21.135863062895783,9.527648635368957,5.5300422490867485,6.88552752946188,3.4237079613742996,4.5323856594221965,2.1032138209508964,2.917422264284001,-2.789999999999999,564324070561.7538,7.352308423289121,10.429649853029732,5.772233374483719,237.73397693462752,20.628344628534443,22.337277247371283,7.9552426364957345,1.4311996572326342,5.907179729351506,0.0,9.694446914922299,14.951935562841626,0.0,0.0,35.022563183493844,25.30965443395165,54.975819803285695,38.52024416002837,44.25447632375052,51.299575807711705,1.4311996572326342,19.851845293692104,0.0,13.703784234591359,54.562820101923236,51.63020653860748,0.0,0.0,15.519536437427229,22.454670310192952,0.0,22.937725768167255,71.34231653587946,0.0,13.703784234591359,52.586987159385146,30.34257004146794,7.846317470397728,0.0,0.0,106.50999999999999,142.53894393894032,4.794537184071822,0.0,21.95641258451149,0.0,0.0,0.0,0.0,0.0,20.060743753948838,47.38327049603664,212.46415514579476,6.106607185874253,22.00206996321164,1.58094286058886,-2.1394084869519263,-5.895384674950355,-4.454565986548014,-1.0711201075401988,-31.815518121701288,0.0,0.36363636363636365,33,3,9,0,1,1,1,2,3,9,3,11,10,0,1,1,4,3.3135400000000015,132.04670000000002,0,1,0,0,0,3,0,0,0,0,1,1,0,1,0,5,2,0,0,0,0,0,0,0,0,0,0,1,0,4,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +65957,C[C@H]1COc2c(C3(N)CC3)c(F)cc3c(=O)c(C(=O)O)cn1c23,0,15.868331325585789,-3.8330221324641,15.868331325585789,0.09498582766439956,0.8793011280696906,318.30399999999975,303.184,318.1015851800004,120,0,0.34072313798019516,-0.4887482026713643,0.4887482026713643,0.34072313798019516,1.826086956521739,2.652173913043478,3.3043478260869565,2.4208695170449364,1472.6828351417157,29.342416792648606,25.905384825864594,10.905384825864596,17.034634040819366,13.406705635127967,6.104030153664188,4.818649538390557,4.818649538390557,3.4356216042281305,3.4356216042281305,2.3419417101160294,2.3419417101160294,-2.4099999999999997,73085615.16109543,5.306102821396436,4.31938794658383,1.8275613205551777,151.09920991934223,20.13248776842489,20.763341732315578,5.749511833283905,5.428790391900541,1.4311996572326342,5.969305287951849,4.794537184071822,9.184952231746642,0.0,0.0,0.0,25.640160627617732,21.307130356389642,29.3380616729788,38.303410207352954,16.872230220032904,1.4311996572326342,4.567099647791355,5.719716975726273,31.15455964068743,6.558985242916289,39.3827653188903,0.0,5.749511833283905,15.885370321426862,4.39041504767482,5.749511833283905,0.0,22.204198369766704,5.538925252383345,5.817220841045895,57.986177229812576,17.009851102549877,2.8236841566564013,12.33412458931369,0.0,94.55000000000001,100.64323204746526,9.589074368143644,4.39041504767482,4.567099647791355,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,25.440849441731725,140.32180030675926,0.0,25.370110660043018,2.4141140240531476,-9.664878934222145,-5.251293973607961,-5.318924083522298,-8.081779284461465,-7.622482048374912,0.0,0.375,23,3,6,1,1,2,1,1,2,6,2,7,4,1,0,1,4,1.7400000000000002,80.43070000000003,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3767,NNC(=O)c1ccncc1,0,11.554537037037036,-1.3107407407407405,11.554537037037036,0.21796296296296358,0.3165786787720106,137.14200000000005,130.08599999999998,137.058911844,52,0,0.2647827507246253,-0.2901429275077938,0.2901429275077938,0.2647827507246253,1.9,2.6,3.2,3.358092126150575,439.16252070619515,13.325908934703554,11.749889076963736,4.749889076963736,7.768632067778068,5.666585324981742,2.3249445384818683,1.3655627610334518,1.3655627610334518,0.7782970982873206,0.7782970982873206,0.3838386837767093,0.3838386837767093,-1.42,3959.6496545347304,2.0309105350495433,2.9319034022891572,1.2945922692541976,68.04636761362927,0.0,2.8236841566564013,1.4118420783282006,0.0,5.907179729351506,0.0,15.197331851411459,5.828719768830327,0.0,0.0,0.0,12.08483741532659,17.909241913326518,5.483034224680881,14.513097643737302,5.907179729351506,0.0,10.402794667339638,5.828719768830327,0.0,0.0,29.994079328653108,0.0,0.0,11.247535915222755,0.0,0.0,0.0,10.891158250298714,0.0,0.0,15.841022900449696,24.430627836956113,4.235526234984602,0.0,0.0,68.00999999999999,35.90125905800461,4.794537184071822,0.0,11.247535915222755,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,9.718560459665483,49.56602229780802,0.0,14.793480725623581,0.0,-0.9175000000000002,-1.663042328042328,-1.42574074074074,-1.3532199546485253,0.0,0.0,0.0,10,3,4,0,0,0,0,1,1,3,2,4,2,0,0,0,1,-0.3149000000000006,35.89060000000001,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +132971,C[C@]12CC[C@H]3[C@@H](CC=C4C[C@@H](O)CC[C@@]43C)[C@@H]1CC=C2c1cccnc1,0,9.996543262366675,-5.365348114554466,9.996543262366675,1.1703446593887745,0.6887813871003827,349.51799999999946,318.27000000000004,349.2405646120009,138,0,0.21046072331113358,-0.39279668484713354,0.39279668484713354,0.21046072331113358,1.2692307692307692,2.1923076923076925,3.076923076923077,2.295606796309995,2045.0841214291509,45.11036598507973,43.85546188596382,12.855461885963821,24.867967374152702,22.809586031195753,7.40133774073189,5.789534341856899,5.789534341856899,4.31907056980344,4.31907056980344,3.0501533522119537,3.0501533522119537,-1.4100000000000001,142304609564.71255,3.8536089296324563,5.79190217884199,2.2382052488293285,200.61741011101896,5.1088081911072125,0.0,0.0,1.4311996572326342,0.0,0.0,4.9839785209472085,0.0,0.0,0.0,37.42345096439506,90.30130303361801,43.873237213544606,15.675327920141527,46.23156487621384,5.573104530069267,1.4311996572326342,4.9839785209472085,28.5118539948828,64.394276570847,0.0,47.671327350793504,0.0,0.0,0.0,0.0,0.0,0.0,17.604004396237045,0.0,28.5118539948828,105.00046672070049,42.10787585909651,0.0,5.573104530069267,0.0,33.120000000000005,146.1505624465926,15.078344117872419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.092786712054421,27.47561222446681,277.28945209682996,0.0,3.3184492023885612,4.009655206990995,-15.779441249704153,-15.68271394977745,-7.269270974607355,-41.068013648661534,-9.568116683459175,0.0,0.625,26,1,2,4,0,4,0,1,1,2,1,2,4,2,0,2,5,5.398600000000005,105.30680000000005,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +249332,CC[C@]1(O)C[C@H]2CN(CCc3c([nH]c4ccccc34)[C@@](C(=O)OC)(c3cc4c(cc3OC)N(C=O)[C@H]3[C@@](O)(C(=O)OC)[C@H](OC(C)=O)[C@]5(CC)C=CCN6CC[C@]43[C@@H]65)C2)C1,0,17.318405086080027,-6.668978725617369,17.318405086080027,1.1541140799110279,0.1310247762677446,824.972000000002,768.5239999999999,824.3996439920015,320,0,0.34363054228972134,-0.4963431329927901,0.4963431329927901,0.34363054228972134,1.1166666666666667,1.9833333333333334,2.7666666666666666,1.9183629615299147,4802.200994355258,91.0990471476703,84.87133728663846,28.87133728663846,50.95356632329326,43.83112298492449,16.067412808496808,12.677613517111576,12.677613517111576,9.86206770782877,9.86206770782877,7.712696918247334,7.712696918247334,-4.76,6.671094630689538e+39,11.43007544257993,14.149039827212606,5.194742988591859,428.21086297673884,39.04198119849435,12.535260858850904,7.491860105278189,14.849597070766762,0.0,17.90791586385555,24.18343101391642,4.794537184071822,0.0,0.0,43.935183849652375,73.84010717637588,123.1249597416096,64.46459949789889,122.40526248905165,40.884374015937965,2.8623993144652684,14.776822731930208,11.308948154759857,98.94111128427353,58.49806552907796,70.74293820799035,0.0,5.749511833283905,9.636772684650527,5.687386274683562,5.749511833283905,0.0,135.06696162162743,50.59164343781037,11.308948154759857,147.45478680549485,48.3586557380509,1.4118420783282006,10.902924932081056,0.0,171.17,300.9017717572539,47.32913594750665,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,14.954479336014474,48.60043496778051,546.7781096785604,0.0,57.720111274945424,6.864545977674281,-49.4805756236303,-20.961365181087327,-33.1287350864308,-46.05240344121384,-43.7865529915426,-15.119801273941917,0.5652173913043478,60,3,14,1,5,6,2,1,3,12,3,14,15,1,2,3,9,3.5175000000000027,220.56829999999934,0,2,0,0,0,1,1,0,0,0,4,4,0,0,0,3,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,2,0,6,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4927,CC(CN1c2ccccc2Sc2ccccc21)N(C)C,0,8.95376275510204,-4.27781675170068,8.95376275510204,0.07710648148148191,0.8321538928687809,284.4279999999996,264.268,284.1347196400005,104,0,0.06451820325786212,-0.3380650900563811,0.3380650900563811,0.06451820325786212,1.2,1.8,2.35,2.658784199646814,1294.4814708702659,31.290010549841313,29.80267548146378,10.619172062391506,17.756665939490652,15.249889076963736,6.0663856578914634,3.5887545484546926,4.60937527461435,2.3616676726937915,3.3607384394565725,1.533035551036631,2.419269265485008,-1.4499999999999997,97605331.83532397,3.4746929929255725,5.5050104357236735,2.433756182332631,153.04956411314296,9.799819461700956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.931559780044296,44.97322074851335,36.013304665403346,25.082358111069322,27.415171123404395,23.13665749875824,0.0,4.899909730850478,0.0,22.660751536680873,25.348423215730914,48.33934966130636,0.0,0.0,4.899909730850478,11.374772549367124,0.0,11.761884949391115,31.36631568408056,0.0,0.0,34.267063240700075,58.13031661234191,0.0,0.0,0.0,6.48,107.7232969630853,0.0,0.0,4.899909730850478,11.761884949391115,0.0,0.0,0.0,0.0,0.0,27.415171123404395,162.88762996556645,0.39961057571176495,-1.8093787792894935,0.0,-1.758445767195767,0.0,-11.549142206265223,0.0,-16.08694045519443,0.0,0.29411764705882354,20,0,2,0,1,1,2,0,2,3,0,3,6,0,0,0,3,4.239400000000003,87.16200000000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +23666879,CCN1CCN(C(=O)N[C@@H](C(=O)N[C@@H]2C(=O)N3[C@@H](C(=O)[O-])C(C)(C)S[C@H]23)c2ccccc2)C(=O)C1=O,0,14.562141602910678,-4.782955798059969,14.562141602910678,0.7097020520374948,0.3387247955446624,516.5560000000002,490.34800000000035,516.1558427519107,192,0,0.324987395165953,-0.5478320702941469,0.5478320702941469,0.324987395165953,1.3333333333333333,2.0555555555555554,2.6944444444444446,2.0421160960006857,2177.7521318307104,49.022061357410195,43.00205430121069,17.81855088213842,27.29877036371759,21.888432868837025,9.810502258764835,6.4901107544063885,7.693305666401101,4.337542488505375,5.406350388788807,2.8065277662979082,3.8629603978855154,-3.6099999999999994,1217009401878.1628,8.468340511388432,9.4490900004599,4.271776707247516,247.52897362814142,30.320510747190234,17.385709388869714,2.8236841566564013,11.814359458703011,0.0,17.845473971041084,24.07805846713776,4.794537184071822,0.0,11.761884949391115,30.212093538316473,26.11912784358403,39.31594562403783,29.80705898651435,69.59564000401336,47.39102366708706,0.0,25.319355899128187,0.0,48.706300662323954,19.490579052947837,35.77554503001347,0.0,0.0,15.726154101417457,4.794537184071822,0.0,11.761884949391115,91.9521788052825,23.97268592035911,0.0,65.03522566001904,30.212093538316473,2.8236841566564013,0.0,0.0,159.26,176.68280431150052,33.87375049927164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.72188950474168,207.52032261973108,-0.9908590447500154,78.52597117146368,5.8410123263221765,-1.9832809397225877,-13.874022495974236,-24.502223698355255,0.0,-25.953586605381496,0.0,0.4782608695652174,36,2,12,0,3,3,1,0,1,8,2,13,9,0,3,3,4,-1.5749999999999922,124.71140000000003,1,0,0,0,0,0,0,0,1,1,6,6,0,0,0,3,2,0,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +216235,Cc1cc2c(cc1CC(=O)c1sccc1S(=O)(=O)Nc1onc(C)c1Cl)OCO2,0,13.745749376415784,-5.532194221014338,13.745749376415784,0.061059933232552766,0.5613022950139055,454.9129999999999,439.7930000000002,454.0060058800004,152,0,0.26535968606252686,-0.4535849368517658,0.4535849368517658,0.26535968606252686,1.4827586206896552,2.2758620689655173,3.0,1.9391194328035506,1816.3398710654083,33.69578794377713,28.538377987720047,15.927300095593957,19.76343254919932,14.619008439595358,9.806319226832994,5.10387156720067,7.8392877770928555,3.2695065104076764,5.765431904934551,2.0164883652481587,4.167213491537863,-2.56,1158394040.073387,8.664580963946982,7.359407731600874,3.7027970377604174,196.10529876800075,13.996820844573445,18.353561896448003,18.69411069126095,6.745045584503197,15.907473355268593,0.0,4.794537184071822,13.132916598063069,0.0,11.336785877934737,16.757603147357962,48.31405775064283,17.338993350691137,10.36018141838218,47.811616877685516,44.628444069800786,0.0,5.156663257125445,0.0,24.972192611438512,11.460165198237329,50.20398201834255,0.0,11.49902366656781,14.18884552133423,5.884182201861009,11.49902366656781,22.937725768167255,26.102750772322516,16.396216054736964,13.703784234591359,45.68313514239868,32.901948945148604,6.434475392069527,0.0,0.0,107.73,119.82608179621974,13.212334168400758,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,9.679758194098794,41.67712766254391,159.42479365641267,5.803857471314353,11.059420667463067,1.2299469635205431,-3.552871657310379,-4.930572555749201,-3.610333077204002,-3.7326556641855486,-9.464947138802682,-5.532194221014338,0.2222222222222222,29,1,8,0,1,1,1,2,3,8,1,11,8,0,0,0,4,3.9612400000000028,106.71400000000004,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0 +5396,COc1cc([C@@H]2c3cc4c(cc3[C@@H](O[C@@H]3O[C@@H]5CO[C@@H](c6cccs6)O[C@H]5[C@H](O)[C@H]3O)[C@H]3COC(=O)[C@H]23)OCO4)cc(OC)c1O,1,14.731245619604284,-5.119835973652041,14.731245619604284,0.015262689199501356,0.33279567772779733,656.6620000000015,624.4060000000003,656.1563620840009,244,0,0.3099403857906003,-0.5016994790132149,0.5016994790132149,0.3099403857906003,1.0434782608695652,1.8478260869565217,2.5652173913043477,1.5327814619978013,3048.9826192262644,59.507342731648755,53.715476066494084,22.53197264742181,35.002785352660716,27.873724356957947,12.965476066494084,8.892878310587925,9.709374891515647,6.408769069555015,7.08574609930151,4.485528231190665,4.958381115705231,-3.6300000000000003,5445851054660541.0,10.952187589453912,11.559989470673607,4.701146592890468,311.78107006668233,57.95819115752208,27.06158922014039,35.530204070209415,15.356956732252371,1.4311996572326342,5.969305287951849,4.794537184071822,0.0,0.0,11.336785877934737,6.042418707663295,52.258562423075055,15.900191039236816,76.94320365769741,102.50472647053017,17.306091165886585,4.293598971697903,0.0,11.787915370726157,48.826204557186806,33.938920988100946,63.17812832443965,0.0,28.747559166419524,18.947451815200196,0.0,28.747559166419524,11.336785877934737,90.11440029740922,28.478851953072066,11.787915370726157,79.55955387857864,41.610626655647366,0.0,0.0,0.0,160.83,192.44803369482503,22.61439841428468,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,15.326424573321638,68.8575024546219,326.05329583687546,-0.015262689199501356,13.622517563447378,12.171233081723017,-5.962359964152705,-25.02735520428945,-9.550032896141989,-33.00356560092979,-12.68464402059315,-7.6871594400727545,0.46875,46,3,13,1,4,5,2,1,3,14,3,14,11,0,3,3,8,2.752900000000001,155.94339999999977,0,2,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 diff --git a/atomsci/ddm/test/test_datasets/scaled_descriptors/Molport_test_with_rdkit_raw_descriptors.csv b/atomsci/ddm/test/test_datasets/scaled_descriptors/Molport_test_with_rdkit_raw_descriptors.csv new file mode 100644 index 00000000..901a99f3 --- /dev/null +++ b/atomsci/ddm/test/test_datasets/scaled_descriptors/Molport_test_with_rdkit_raw_descriptors.csv @@ -0,0 +1,101 @@ +compound_id,base_rdkit_smiles,dummy_response,MaxEStateIndex,MinEStateIndex,MaxAbsEStateIndex,MinAbsEStateIndex,qed,MolWt,HeavyAtomMolWt,ExactMolWt,NumValenceElectrons,NumRadicalElectrons,MaxPartialCharge,MinPartialCharge,MaxAbsPartialCharge,MinAbsPartialCharge,FpDensityMorgan1,FpDensityMorgan2,FpDensityMorgan3,BalabanJ,BertzCT,Chi0,Chi0n,Chi0v,Chi1,Chi1n,Chi1v,Chi2n,Chi2v,Chi3n,Chi3v,Chi4n,Chi4v,HallKierAlpha,Ipc,Kappa1,Kappa2,Kappa3,LabuteASA,PEOE_VSA1,PEOE_VSA10,PEOE_VSA11,PEOE_VSA12,PEOE_VSA13,PEOE_VSA14,PEOE_VSA2,PEOE_VSA3,PEOE_VSA4,PEOE_VSA5,PEOE_VSA6,PEOE_VSA7,PEOE_VSA8,PEOE_VSA9,SMR_VSA1,SMR_VSA10,SMR_VSA2,SMR_VSA3,SMR_VSA4,SMR_VSA5,SMR_VSA6,SMR_VSA7,SMR_VSA8,SMR_VSA9,SlogP_VSA1,SlogP_VSA10,SlogP_VSA11,SlogP_VSA12,SlogP_VSA2,SlogP_VSA3,SlogP_VSA4,SlogP_VSA5,SlogP_VSA6,SlogP_VSA7,SlogP_VSA8,SlogP_VSA9,TPSA,EState_VSA1,EState_VSA10,EState_VSA11,EState_VSA2,EState_VSA3,EState_VSA4,EState_VSA5,EState_VSA6,EState_VSA7,EState_VSA8,EState_VSA9,VSA_EState1,VSA_EState10,VSA_EState2,VSA_EState3,VSA_EState4,VSA_EState5,VSA_EState6,VSA_EState7,VSA_EState8,VSA_EState9,FractionCSP3,HeavyAtomCount,NHOHCount,NOCount,NumAliphaticCarbocycles,NumAliphaticHeterocycles,NumAliphaticRings,NumAromaticCarbocycles,NumAromaticHeterocycles,NumAromaticRings,NumHAcceptors,NumHDonors,NumHeteroatoms,NumRotatableBonds,NumSaturatedCarbocycles,NumSaturatedHeterocycles,NumSaturatedRings,RingCount,MolLogP,MolMR,fr_Al_COO,fr_Al_OH,fr_Al_OH_noTert,fr_ArN,fr_Ar_COO,fr_Ar_N,fr_Ar_NH,fr_Ar_OH,fr_COO,fr_COO2,fr_C_O,fr_C_O_noCOO,fr_C_S,fr_HOCCN,fr_Imine,fr_NH0,fr_NH1,fr_NH2,fr_N_O,fr_Ndealkylation1,fr_Ndealkylation2,fr_Nhpyrrole,fr_SH,fr_aldehyde,fr_alkyl_carbamate,fr_alkyl_halide,fr_allylic_oxid,fr_amide,fr_amidine,fr_aniline,fr_aryl_methyl,fr_azide,fr_azo,fr_barbitur,fr_benzene,fr_benzodiazepine,fr_bicyclic,fr_diazo,fr_dihydropyridine,fr_epoxide,fr_ester,fr_ether,fr_furan,fr_guanido,fr_halogen,fr_hdrzine,fr_hdrzone,fr_imidazole,fr_imide,fr_isocyan,fr_isothiocyan,fr_ketone,fr_ketone_Topliss,fr_lactam,fr_lactone,fr_methoxy,fr_morpholine,fr_nitrile,fr_nitro,fr_nitro_arom,fr_nitro_arom_nonortho,fr_nitroso,fr_oxazole,fr_oxime,fr_para_hydroxylation,fr_phenol,fr_phenol_noOrthoHbond,fr_phos_acid,fr_phos_ester,fr_piperdine,fr_piperzine,fr_priamide,fr_prisulfonamd,fr_pyridine,fr_quatN,fr_sulfide,fr_sulfonamd,fr_sulfone,fr_term_acetylene,fr_tetrazole,fr_thiazole,fr_thiocyan,fr_thiophene,fr_unbrch_alkane,fr_urea +MolPort-008-351-315,CN1C(=O)C2(CC(=O)Nc3[nH]ncc32)c2cc(Cl)ccc21,0,13.746452191987903,-3.4568161060720604,13.746452191987903,0.020135896951372967,0.7767882763504016,302.72099999999983,291.63300000000004,302.0570532720003,106,0,0.24217452873832354,-0.3140837416629788,0.3140837416629788,0.24217452873832354,1.5714285714285714,2.4285714285714284,3.238095238095238,2.3403652783803284,1242.7356844691346,24.290010549841313,20.983315435936788,10.739244381955242,14.539358009941758,11.006905302218247,5.990442584227558,4.355517955196486,4.733482428205713,3.2917029505979145,3.480685187102528,2.4391255664323905,2.5808622438108504,-2.339999999999999,7028577.503412004,5.455828084939787,3.854588449709963,1.3979376789601772,140.20560260795426,10.209723084138854,11.232853247231809,2.8236841566564013,11.814359458703011,0.0,0.0,14.680780925726726,0.0,5.098681808301038,0.0,11.600939890232516,23.69070761468688,36.47601566258462,11.65592943549564,24.74958553033202,34.92054840145412,0.0,10.190388365884118,0.0,11.787915370726159,17.1855499844211,40.44968763093996,0.0,0.0,10.209723084138854,11.50524905251859,0.0,11.600939890232516,28.980574724869374,15.004064837540422,0.0,29.836654890255346,24.300151333804646,7.846317470397728,0.0,0.0,78.09,82.53303841316996,9.589074368143644,0.0,15.301429641721935,0.0,0.0,0.0,0.0,0.0,5.098681808301038,26.76145105242089,88.79791524068473,5.983965769435345,26.646904446963966,2.7778171453766696,-5.528140274628368,-4.133072719828672,-2.6175556920298977,-4.380593978332075,-3.35279549319728,0.0,0.21428571428571427,21,2,6,0,2,2,1,1,2,3,2,7,1,0,0,0,4,1.6678,77.47640000000003,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,2,2,0,0,1,0,1,0,0,0,0,0,2,0,2,0,0,0,0,1,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-306,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)Nc2ccc(C(F)(F)F)cc2)C1,0,14.040785885788726,-6.878849266430883,14.040785885788726,0.879994388483659,0.6351610189954195,460.4339999999998,441.28200000000015,460.10282536800054,168,0,0.4159120645473408,-0.3258131543900471,0.4159120645473408,0.3258131543900471,1.3870967741935485,2.064516129032258,2.6774193548387095,2.544296215332867,2019.554249642312,39.66025403784439,33.37223754381069,15.188734124738417,21.96089530072662,16.779845978109662,8.878268520410428,5.245437043339697,6.968966385129982,3.193053479764749,4.740221359387573,1.9152602992153696,3.0314174265155893,-2.9299999999999993,5410045122.575868,8.542535813782576,8.303896385554895,4.875991972693159,200.76175270413756,10.286816623517627,0.0,9.131009710502378,15.930470882759089,5.559266895052008,11.86604191564695,14.566077638372896,13.212334168400758,17.476461134320694,0.0,0.0,43.767416750607616,40.82413631220657,16.940443401740954,52.55124244513338,21.61785715744265,0.0,14.259222531754737,5.893957685363079,30.66952391291569,18.303532721920263,56.265138978597754,0.0,0.0,16.558823646543857,18.858631417708022,0.0,0.0,41.577918614067066,20.99412685492288,12.745849802658757,45.93536618792776,38.6542326743146,4.235526234984602,0.0,0.0,132.2,137.42015861985055,35.972653679568865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.167663133708118,218.86910450190828,0.0,34.53874934059374,-1.0972551686729184,-10.924826130773052,-7.876988129356682,-7.724921728536066,-15.050872984985915,-13.854140433746577,-6.878849266430883,0.3888888888888889,31,3,9,0,1,1,1,1,2,5,3,13,5,0,1,1,3,1.42982,103.97690000000001,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,1,3,0,0,0,0,2,0,0,0,3,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +MolPort-008-351-295,O=C(CCCCCn1c(=O)[nH]c2ccccc2c1=O)N1CCc2ccccc2C1,0,13.949207177184338,-4.868131836948128,13.949207177184338,0.4616864764922268,0.6567730314635654,391.4709999999997,366.2710000000002,391.1895916600007,150,0,0.3283302482625605,-0.3380315684076858,0.3380315684076858,0.3283302482625605,1.103448275862069,1.8620689655172413,2.7241379310344827,1.9826574002278492,2275.967715632557,42.39230484541327,39.066385657891466,14.066385657891464,23.910254037844393,20.098440413195586,7.651226817695628,5.1095201011518965,5.1095201011518965,3.35243532176018,3.35243532176018,2.0863442456326364,2.0863442456326364,-3.149999999999999,51677023360.24086,5.5048047337380135,8.47069487287431,4.159608404017348,203.52479628859308,9.87691300107973,0.0,1.4118420783282006,5.907179729351506,5.559266895052007,5.689743398203474,14.156174015934997,4.794537184071822,0.0,0.0,42.627437147309145,42.33051510270872,42.31260662831988,27.35202760612369,39.10458461048531,16.810104661432565,0.0,14.444012648871084,0.0,44.858343875278784,6.496859684315945,80.30433730609947,0.0,0.0,11.24901029325548,0.0,0.0,0.0,26.848052062538535,24.16118145403309,0.0,69.51680793679684,57.92842402945,1.4118420783282006,10.902924932081056,0.0,75.17,153.32458380785428,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.31004742641348,205.63400631043007,0.0,39.267948494929186,-1.2857019644772352,-8.201559217737714,-2.822171294190941,-9.660559431610459,-23.152753375338584,-12.779209522004319,0.0,0.34782608695652173,29,1,6,0,1,1,2,1,3,4,1,6,6,0,0,0,4,2.8351000000000015,112.85970000000003,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-370,CC(C)c1nnc(NC(=O)Cn2ccc3c(Cl)cccc32)s1,0,13.061369598765431,-3.4268940664602843,13.061369598765431,0.07942821848665904,0.7865639289281336,334.83199999999977,319.71200000000005,334.0655097800004,114,0,0.24563510683702,-0.3380012105280927,0.3380012105280927,0.24563510683702,1.6363636363636365,2.5,3.3181818181818183,2.1553310809629487,1397.6691453260528,28.626873843024782,25.483315435936785,12.055740962882966,16.6178207191569,13.013815851950218,6.761063310387215,3.7783508147725176,5.112286135750773,2.3585875742601825,3.4766948347206545,1.4768163267040166,2.227663749173236,-1.9199999999999993,48169206.75990203,5.316685832783487,6.060472758253994,2.978672092989635,157.60938178288706,4.567099647791355,11.504483381168711,1.4118420783282006,11.03873820919084,0.0,0.0,10.104350537360197,0.0,0.0,10.197363616602075,42.68392871042191,18.127256122989884,37.58772103519178,9.59530989319154,25.3969990487831,44.87938890943915,0.0,14.76446326439343,0.0,26.09460160427038,5.309813353288376,40.37282705206203,0.0,0.0,5.309813353288376,5.131558479839333,0.0,22.937725768167255,20.671642993744936,11.291396868387768,0.0,43.79598540319031,30.34257004146794,6.434475392069527,10.902924932081056,0.0,59.81,88.4090917976043,4.794537184071822,0.0,21.213698879014466,0.0,0.0,0.0,0.0,0.0,10.197363616602075,32.20340175494379,118.10444995515148,6.09180782436101,13.061369598765431,3.8931562461548586,-0.624368579285606,-5.060015305781953,-2.972578541457369,-0.9628870978041248,-10.25315632232596,0.0,0.26666666666666666,22,1,5,0,0,0,1,2,3,5,1,7,6,0,0,0,3,3.9083000000000023,89.57570000000003,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-371,C#CCOc1ccc(C2CC(=O)Nc3c2c(C)nn3-c2ccc(=O)[nH]n2)cc1OCC,0,13.61607140387419,-3.9646263753499094,13.61607140387419,0.14918312455618876,0.5925045758078017,419.4409999999998,398.2730000000002,419.15935415200056,158,0,0.26377644723110033,-0.48997930698579384,0.48997930698579384,0.26377644723110033,1.4838709677419355,2.4193548387096775,3.2580645161290325,2.300966654368511,2129.5192090888436,40.05759526334293,35.869061139355246,14.869061139355244,23.401442990168768,18.33441964664136,7.939992455641444,5.396228900744607,5.396228900744607,3.6208263849505045,3.6208263849505045,2.4927090003039694,2.4927090003039694,-4.06,35359643563.49096,6.985856392171118,8.356853038933178,3.8750370732808928,207.55893839749322,14.783539260888475,13.747606576921537,20.140570601059235,5.907179729351506,5.559266895052007,0.0,9.589074368143644,5.091706557583081,14.87916655174726,6.399401534821945,11.962853026518939,37.39449184927824,36.20957979158474,24.589740243296728,43.136359815562514,11.725042507186533,0.0,19.97087310933034,0.0,25.970666821283817,18.427783839120952,57.38672859568275,0.0,29.636722298080425,20.34280615594048,5.817862777835028,11.49902366656781,0.0,38.99602332451442,4.794537184071822,19.17172797097327,61.98401824946483,35.006630722388294,2.8236841566564013,5.817862777835028,0.0,111.13,120.72275767031671,10.959832924313863,0.0,15.083322846016642,0.0,0.0,6.399401534821945,5.920434318855644,0.0,10.197363616602075,36.97106407532046,181.01096942531322,0.0,25.703353621821936,6.5340149504925,-5.717141479692549,-9.65280150224667,-7.009478573388155,-2.5684570949285046,-14.467126014038428,0.0,0.2727272727272727,31,2,9,0,1,1,1,2,3,7,2,9,8,0,0,0,4,2.1488199999999997,113.74540000000002,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,3,2,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +MolPort-008-351-347,COCc1nnc(NC(=O)C2CC(=O)N(Cc3ccc(Cl)cc3)C2)s1,0,13.36978594979722,-4.017242238459172,13.36978594979722,0.027954094705901156,0.8309088975629358,380.85699999999974,363.72100000000006,380.0709890840004,132,0,0.23112514107219626,-0.377432861115212,0.377432861115212,0.23112514107219626,1.68,2.48,3.24,2.1378542676905985,1437.3246004658408,32.756630355021706,28.79981201686451,13.372237543810693,18.690952904127883,14.626188287646015,7.37343574608301,4.064020726662953,5.397956047641209,2.4404561478966946,3.343281478206261,1.4866553857315838,2.129270797055592,-2.0299999999999994,315944444.65207416,6.29423814530149,7.900155746880224,4.531826299476729,177.44242253329247,14.946586037938904,11.566608939769054,1.4118420783282006,16.945917938542344,0.0,0.0,9.589074368143644,0.0,0.0,10.197363616602075,35.022563183493844,17.648288907023584,35.539505711095856,23.713818915575935,37.66991629899542,39.8836437067096,0.0,15.097273347452553,5.893957685363079,19.428769828561613,18.84462549648691,39.763383332944265,0.0,0.0,5.309813353288376,5.131558479839333,0.0,22.937725768167255,40.446444949354095,27.381782249175927,5.893957685363079,38.876136988602674,24.16967483065318,6.434475392069527,0.0,0.0,84.42,105.77656401274871,9.589074368143644,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,14.934226570402124,34.94491886728424,139.25139912380746,5.74688005136449,26.007174858932032,3.618762996842209,-1.2642530276315236,-8.349430522882983,-4.29122837562377,-3.9472997154789047,-10.89618934182326,-3.264704936394666,0.375,25,1,7,0,1,1,1,1,2,6,1,9,7,0,1,1,3,2.3251,94.22770000000004,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,1,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-357,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2nc3ccccc3s2)c2cccc(C)c21,0,14.972197124781445,-3.840213713788752,14.972197124781445,0.13166980295204578,0.4883866578058147,441.5159999999999,422.36400000000026,441.1259458480006,158,0,0.24273774630363149,-0.31018774854318876,0.31018774854318876,0.24273774630363149,1.4375,2.34375,3.21875,1.8453014212282428,2264.894687390434,38.400376534921044,34.46081284889138,16.277309429819105,23.30311945360164,18.199778153927475,9.569061139355242,6.539313116749771,7.5168339241156765,4.918215193405189,5.864548606549466,3.667110908349996,4.495788551767493,-3.7799999999999985,62547195181.870094,7.6676011911423885,6.606991607447678,2.351215183672982,214.29800853693496,10.209723084138854,11.232853247231809,1.4118420783282006,16.945917938542344,0.0,0.0,9.589074368143644,4.9839785209472085,9.780484743446223,6.531038962001867,47.600951162286776,30.06363251601626,25.287028858193416,39.89676334979656,35.67457045753581,44.8730150232417,0.0,14.76446326439343,0.0,18.639807488021837,16.706582768454798,77.74329134758624,0.0,5.131558479839333,10.209723084138854,11.50524905251859,0.0,11.336785877934737,33.07568240741239,15.004064837540422,6.851892117295679,47.736933387484356,61.05293687249526,1.4118420783282006,15.348179113924695,0.0,80.12,131.33112551098498,9.589074368143644,0.0,20.426343718224217,16.018588813079923,0.0,0.0,0.0,0.0,10.082660329248245,26.08549608939216,159.32300587077214,0.5320294628411499,32.87241870720969,3.36938654034591,-8.628195799877156,-4.804856276379545,-7.750495189123994,-4.966350072653286,-8.780276576468253,0.0,0.16666666666666666,32,1,7,0,2,2,2,2,4,6,1,8,4,0,0,0,6,3.9513200000000026,124.49770000000002,0,0,0,0,0,3,0,0,0,0,2,2,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +MolPort-008-351-320,Cc1csc(NC(=O)c2ccc3c(c2)C(=O)N(CCc2ccccc2)C3=O)n1,0,13.513706458784922,-3.86309199919177,13.513706458784922,0.0927491755836849,0.6748835036461878,391.4519999999998,374.31600000000014,391.0990624040005,140,0,0.26107868305517673,-0.2978320233784293,0.2978320233784293,0.26107868305517673,1.25,2.0357142857142856,2.7857142857142856,1.8561606856622315,1808.4424944268742,34.461218946165616,30.474633948355326,14.291130529283052,20.421238731771698,15.783081905909471,8.152364891337237,5.046583215292353,5.819979877426324,3.296610946051416,3.957170555870985,2.10152417248476,2.6006149265466143,-3.319999999999999,2307696226.767527,6.932377796069373,7.360476153183492,3.438453478002378,189.32624160486728,0.0,0.0,6.543400558167534,0.0,17.721539188054518,0.0,24.593334636354317,4.9839785209472085,0.0,11.336785877934737,30.212093538316473,36.91552463331194,24.27021836653164,31.899175096114867,37.7275905292672,34.189883545828586,0.0,9.883888251797686,0.0,13.224817018625059,11.80667303760432,81.6431980326104,0.0,0.0,5.309813353288376,5.131558479839333,0.0,11.336785877934737,34.10228712416815,6.372924901329379,6.851892117295679,64.26348241257547,53.695464070973955,1.4118420783282006,0.0,0.0,79.37,124.2179724034453,14.383611552215466,0.0,21.54650896207359,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,23.34397897705172,136.29615319355455,0.2783018306734597,43.31775120122687,-1.408912471307092,-5.337053615383327,-5.109189443998821,-8.985529659377328,-3.7104012734214837,-6.7577864286335005,0.0,0.14285714285714285,28,1,6,0,1,1,2,1,3,5,1,7,6,0,0,0,4,3.5425200000000023,106.7592,0,0,0,0,0,1,0,0,0,0,3,3,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +MolPort-008-351-302,CC(C)(C)c1cc(-c2nn3c(-c4ccccc4Cl)nnc3s2)[nH]n1,0,8.539460162419218,-3.701695640242754,8.539460162419218,0.014485819790879262,0.5826997835072305,358.8579999999997,343.738,358.07674316000055,122,0,0.23484286601512758,-0.27502842673235317,0.27502842673235317,0.23484286601512758,1.3333333333333333,2.1666666666666665,3.0,1.9945429427657613,1546.3457812181884,29.618437674587504,26.46949433647284,13.041919863419022,17.67944667596643,13.70969170671829,7.456939165155284,4.586394851489045,5.920330172467301,2.90079510143983,4.089777040294637,1.8469834995163037,2.8053429676614963,-2.249999999999999,152577938.610143,5.926812626082829,5.390249739854318,2.495311201455493,168.19287706648697,0.0,0.0,12.243870273180894,4.960872922772032,0.0,0.0,5.091706557583081,0.0,14.712761510217698,10.197363616602075,55.57823953538088,18.127256122989884,23.31526896662575,23.264282084289345,20.602461864711277,27.898598690939284,0.0,30.001831684402852,0.0,25.970666821283817,0.0,40.928654846906255,0.0,22.08940768139815,0.0,0.0,0.0,22.937725768167255,30.001831684402852,5.41499046939678,0.0,45.440224133118605,30.212093538316473,6.434475392069527,27.050280604170183,0.0,71.75999999999999,67.57061634929721,0.0,0.0,31.47069248064613,11.336785877934737,4.5153978936156225,0.0,0.0,0.0,20.39472723320415,32.20340175494379,120.21008258216887,6.857552266894567,-0.014485819790879262,15.051974629704532,-5.575347722641922,-0.22766538328294317,-3.2525791878794985,0.0,-11.105086920728262,0.0,0.25,24,1,6,0,0,0,1,3,4,6,1,8,2,0,0,0,4,4.193800000000002,95.38670000000003,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,5,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-334,O=C(CC[C@@H]1NC(=O)c2ccccc2NC1=O)Nc1cc(F)c(F)c(F)c1,0,13.921538508256322,-4.50824369331066,13.921538508256322,0.571409651989558,0.7160293606317322,377.3219999999998,363.21000000000004,377.0987259680004,140,0,0.2535414140855218,-0.34014707153640167,0.34014707153640167,0.2535414140855218,1.2962962962962963,1.962962962962963,2.6666666666666665,2.2450628400713795,1514.6051624537668,31.892304845413268,26.700279076919145,12.700279076919145,18.52627944162883,13.612600718209384,6.770959931709509,4.613634992614197,4.613634992614197,2.85373254656488,2.85373254656488,1.7290090343917344,1.7290090343917344,-3.359999999999999,263372762.83866692,7.711396351217466,7.483275010982732,4.076699272853186,171.14683481720988,15.929440059865126,6.017892468349645,21.687188758122282,11.814359458703011,5.907179729351506,0.0,14.383611552215466,13.171245143024459,0.0,0.0,12.08483741532659,18.45776231665597,29.62818281602041,20.846147659572097,46.868727048096964,29.09631173742164,0.0,5.309813353288376,0.0,18.763742271008404,10.619626706576751,59.26962626081445,0.0,0.0,15.929440059865126,24.546017692391587,0.0,0.0,23.73943165640416,9.589074368143644,17.451662523137685,38.18218259630001,36.25451224597977,4.235526234984602,0.0,0.0,87.30000000000001,123.05912032910962,27.554856695239927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.31387035285702,152.47129725399736,0.0,39.310222902041424,-2.3807218846369285,-4.227173578010936,-13.899940695276904,-12.555201146640092,-8.968482851473928,0.0,0.0,0.16666666666666666,27,3,6,0,1,1,2,0,2,3,3,9,4,0,0,0,3,2.5733000000000006,90.50560000000003,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-311,COc1ccccc1CN1CC(C(=O)Nc2nc(C)cs2)CC1=O,0,13.411473265257534,-4.1159846230158745,13.411473265257534,0.1114243698982047,0.903437474197842,345.4239999999997,326.27200000000005,345.1147124680005,126,0,0.2310799169161208,-0.4964063880268476,0.4964063880268476,0.2310799169161208,1.75,2.625,3.4166666666666665,2.272909975015409,1501.9912145231428,33.62687384302478,30.474633948355326,12.291130529283054,19.07898113733181,15.487206051141401,6.85648903656917,4.034420267606757,4.80781692974073,2.494885925749855,3.1554455355694246,1.5273368737972732,2.026427627859128,-2.4099999999999997,423854504.11356086,5.046032640242357,7.003339997115983,3.5630299873990046,170.76099575739514,14.946586037938904,5.749511833283905,6.543400558167534,11.814359458703011,0.0,0.0,9.589074368143644,4.9839785209472085,0.0,11.336785877934737,18.127256122989884,12.894310824958975,38.5107615083472,35.07494081313677,40.411433411335864,28.28270381647708,0.0,9.883888251797686,5.893957685363079,19.721676702941004,18.84462549648691,40.78316872686623,0.0,5.749511833283905,10.046676307088426,5.131558479839333,5.749511833283905,11.336785877934737,35.23305985369923,16.08593405245959,12.745849802658757,42.30395839893882,29.525789240320776,1.4118420783282006,0.0,0.0,71.53,112.83876811433396,9.589074368143644,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,9.720841474747257,26.085496089392155,155.4654917476988,0.1114243698982047,29.535782966114024,-2.116260918283687,-2.369235027374318,-9.945296251198267,-4.938858155264702,-4.023476473922901,-11.07131778360498,-3.4815878073955266,0.35294117647058826,24,1,6,0,1,1,1,1,2,5,1,7,7,0,1,1,3,2.4473200000000004,91.99870000000004,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,2,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +MolPort-008-351-365,O=C(CC[C@@H]1NC(=O)c2ccccc2NC1=O)Nc1ccc(F)cc1,0,13.923678086993991,-4.41449369331066,13.923678086993991,0.521822875130054,0.7973022246048396,341.34199999999976,325.21400000000006,341.11756959200045,128,0,0.2535414140855218,-0.3401470715364018,0.3401470715364018,0.2535414140855218,1.32,2.04,2.8,2.24506284007138,1508.6630188647366,31.89230484541327,27.94435013090069,11.944350130900691,18.52627944162883,14.234636245200157,6.392995458700282,4.2356705196049695,4.2356705196049695,2.5933217386316945,2.5933217386316945,1.5744030605458588,1.5744030605458588,-3.2199999999999993,263372762.83866692,5.943187121930801,7.124900885855996,4.004563260151584,165.62570501169304,15.929440059865126,11.83511330939554,4.235526234984602,11.814359458703011,5.907179729351506,0.0,14.383611552215466,4.39041504767482,0.0,0.0,12.08483741532659,42.627437147309145,17.54334540069382,23.587664771912536,40.829414065087754,29.09631173742164,0.0,5.309813353288376,0.0,18.763742271008404,10.619626706576751,59.72002199404925,0.0,0.0,15.929440059865126,15.765187597041944,0.0,0.0,23.73943165640416,9.589074368143644,5.817220841045895,40.923699708640456,48.33934966130636,4.235526234984602,0.0,0.0,87.30000000000001,123.50951606234443,18.774026599890284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.05538746519746,141.3025844832054,0.0,39.52392532515943,-2.0311351077774242,-3.7688402446776026,-8.324601405447138,-14.199649178580598,-8.752283871882092,0.0,0.0,0.16666666666666666,25,3,6,0,1,1,2,0,2,3,3,7,4,0,0,0,3,2.2951000000000006,90.58960000000002,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-384,COc1ccc(-c2nn3c(c2C)NC(=O)CC3C(=O)Nc2cccc(Cl)c2)cc1,0,13.944964712621356,-3.924175603436968,13.944964712621356,0.11450136999244132,0.6792477653169164,410.86099999999976,391.7090000000001,410.11456814800056,148,0,0.24937008183855494,-0.4967678028517738,0.4967678028517738,0.24937008183855494,1.5172413793103448,2.3448275862068964,3.103448275862069,2.137249761145627,1850.4412741468977,36.961218946165616,32.89156372640065,14.647492672419103,21.655218966495923,16.91515359268211,7.898690874691421,5.235310970794362,5.613275443803589,3.44376502321388,3.6327472597184935,2.2584019527490446,2.395150783737777,-3.3199999999999994,7040930724.89441,6.88038652538174,7.597307940612514,3.6868124506003235,198.98677931279357,15.356489660376802,17.58526707946858,2.8236841566564013,11.814359458703011,0.0,0.0,9.589074368143644,4.681802935145185,5.098681808301038,0.0,17.643358597895812,49.14882307093875,28.69071535266998,35.55390802910307,40.45251693349385,34.92054840145411,0.0,9.780484743446223,0.0,19.242709486974704,17.65757916545934,58.925434466744676,0.0,17.00689131982936,15.356489660376802,11.50524905251859,5.749511833283905,11.600939890232516,28.632796661031822,9.589074368143644,6.851892117295679,41.25716431626978,48.33934966130636,7.846317470397728,11.257379486545457,0.0,85.25,130.84240959694134,9.589074368143644,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,9.835544762101087,37.727519501782666,158.25756283333058,5.859943052256408,27.197857107896226,2.1002692951846154,-4.564311961686219,-6.597456610533527,-12.600698538486965,-3.909791023662554,-3.5331535725260945,-3.2657761373280145,0.19047619047619047,29,2,7,0,1,1,2,1,3,5,2,8,6,0,0,0,4,4.042520000000002,111.31739999999999,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-359,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)Nc2cccc3ccccc23)C1,0,14.261201184177368,-6.838167235685724,14.261201184177368,0.817706793767401,0.56416498276114,442.49699999999984,420.32100000000025,442.1310908040006,162,0,0.3254489227173072,-0.3252307535628895,0.3254489227173072,0.3252307535628895,1.3225806451612903,2.096774193548387,2.903225806451613,2.19653922522497,2366.0387250071594,41.469655114602894,36.73834412478301,15.554840705710737,23.570937640367355,18.71289926859582,9.311321810896587,5.497677974297062,7.221207316087347,3.5904818244453223,5.137649704068147,2.2948761709931507,3.411033298293371,-3.2399999999999993,35954739320.18999,7.141379396365365,8.121361110115101,4.035438871300627,208.79678041320085,10.286816623517627,0.0,9.131009710502378,15.930470882759089,5.559266895052008,5.689743398203474,14.566077638372896,13.212334168400758,4.305215991296234,0.0,36.25451224597977,31.02638484208253,46.21036052667138,15.489267578554617,43.49227297061956,32.39030558637224,0.0,14.259222531754737,5.893957685363079,24.493225395472216,18.303532721920263,68.82894360989064,0.0,0.0,16.558823646543857,5.687386274683562,0.0,0.0,41.577918614067066,14.817828337479405,12.745849802658757,44.48419036474142,56.78148879730448,4.235526234984602,10.772448428929591,0.0,132.2,154.58011316262957,22.8014085365444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.279938802218776,207.59079617225868,0.0,35.383623546774494,-2.817042658035434,-8.163005677622104,-7.614450336461746,-8.106423261244707,-9.323507141390895,-13.6951567419259,-6.838167235685724,0.2857142857142857,31,3,9,0,1,1,2,1,3,5,3,10,5,0,1,1,4,1.56422,116.4809,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,1,3,0,0,0,0,2,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +MolPort-008-351-307,O=C1CC2(C(=O)Nc3ccc(Br)cc32)c2sc(C(=O)O)c(-c3ccccc3)c2N1,0,13.997777534631336,-3.4735497632695065,13.997777534631336,0.04275088699646745,0.5168207882604684,469.31600000000003,456.2120000000003,467.9779399960003,144,0,0.3460986070424633,-0.4770324760653345,0.4770324760653345,0.3460986070424633,1.2758620689655173,2.0689655172413794,2.8275862068965516,2.0861149034970783,1786.544378617967,31.538569215355242,26.81363311632846,16.21612623637089,19.419455959612158,14.110829780359898,9.417649149381196,5.89287560021661,7.706494595933619,4.338178862889574,6.0132524834121,3.23156974198995,4.755076932452706,-2.969999999999999,1191060546.4863653,8.807510612687786,6.265319430665016,2.489121661458682,195.71247511693136,15.728434897683965,10.292137663098078,2.8236841566564013,11.814359458703011,1.4311996572326342,5.969305287951849,9.589074368143644,4.794537184071822,0.0,11.336785877934737,46.142037436265824,29.254159106383874,18.46507439455341,27.903526819075996,36.02368946168128,56.42516707190607,1.4311996572326342,0.0,0.0,11.787915370726159,10.619626706576751,68.12981505623836,0.0,11.126902983393991,10.619626706576751,11.374772549367124,0.0,27.266729775884087,22.892472937762072,15.004064837540422,0.0,40.19279352620301,52.812069177138774,2.8236841566564013,12.558102640626625,0.0,95.5,115.73035119054812,14.383611552215466,0.0,26.429132100343903,0.0,0.0,0.0,0.0,0.0,21.038752089056562,17.962469375591233,107.40947958323987,3.164066116553143,39.091174321593236,4.0582802945494585,-6.667793574487746,-4.792317439321407,-6.539339538857052,-3.4735497632695065,0.0,0.0,0.09523809523809523,29,3,6,0,2,2,2,1,3,5,3,8,2,0,0,0,5,4.456200000000003,113.51270000000002,0,0,0,0,1,0,0,0,1,1,3,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +MolPort-008-351-292,COc1ccc(C2CC(=O)Nc3c2c(C)nn3-c2ccc(OC)nn2)c(OC)c1,0,13.589215034913313,-3.9196346555597588,13.589215034913313,0.20455230353160547,0.7081831567393108,395.41899999999976,374.25100000000015,395.15935415200056,150,0,0.2327511300809093,-0.49662444335217815,0.49662444335217815,0.2327511300809093,1.2758620689655173,2.1724137931034484,3.0,2.250380949277826,1881.921731369364,38.4802449941533,34.869061139355246,13.869061139355244,22.364550627733497,17.841330196373335,7.394116600873375,5.169166828128642,5.169166828128642,3.5737722284346196,3.5737722284346196,2.441257045185846,2.441257045185846,-3.6199999999999997,11812004151.497728,6.186668546599952,7.419947119936232,3.2411572159013264,196.72379527406542,19.520402214688524,17.316886444402837,7.229704856163229,11.787168065786876,0.0,0.0,4.794537184071822,0.0,9.780484743446223,10.197363616602075,6.042418707663295,18.93672953262227,43.70317432243438,45.99840515787934,47.8321392472046,11.725042507186533,0.0,19.9778483600483,0.0,19.118774703988137,26.42367072993614,47.03292451655892,0.0,23.196874780838208,19.520402214688524,5.817862777835028,17.37901200300318,0.0,46.99888546604757,4.794537184071822,6.851892117295679,56.502884688339364,30.212093538316473,1.4118420783282006,5.817862777835028,0.0,100.39,122.18747388521959,6.165295740242042,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,24.76977133250321,32.193117599362424,182.5493700397032,0.0,13.589215034913313,10.314345155365974,-4.119749514162618,-11.838090310734598,-6.465399308082649,-3.9196346555597588,-3.547812776223899,-10.228910331885661,0.3,29,1,9,0,1,1,1,2,3,8,1,9,9,0,0,0,4,2.4706200000000003,105.07870000000003,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-372,CCCOc1c(OC)cccc1C1CC(=O)Nc2c1c(C)nn2-c1ccc(Cl)nn1,0,13.716119528077272,-4.213397115124698,13.716119528077272,0.22337040947768694,0.6411691000986145,427.8919999999997,405.7160000000001,427.1411172440007,156,0,0.2259946544814929,-0.4928582046842355,0.4928582046842355,0.2259946544814929,1.5,2.433333333333333,3.2666666666666666,2.346595057670947,1974.6573702202925,40.27313821296676,36.33877732190061,15.094706267919063,23.180099215865987,18.622064142414082,8.052815019923353,5.279824206320305,5.637837293770622,3.6140125260232114,3.7840965388773635,2.5148175889943145,2.5998595954213903,-3.13,28380118552.578342,6.683870515888722,8.314051884858435,3.585037498131944,209.68342888600463,14.783539260888475,5.817862777835028,23.881838339623833,5.907179729351506,0.0,0.0,4.794537184071822,0.0,9.780484743446223,10.197363616602075,30.537669422854783,31.352073141614945,38.47212968795888,32.99845125834953,44.46603484957476,23.325982397419047,0.0,19.9778483600483,0.0,32.3435917226132,18.906751055087252,52.186034333451715,0.0,17.31688644440284,14.783539260888475,5.817862777835028,11.49902366656781,11.600939890232516,39.48196579119868,4.794537184071822,6.851892117295679,71.09846026313461,30.212093538316473,6.564951895220993,5.817862777835028,0.0,91.16,127.16849270945318,6.165295740242042,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.296045424903113,49.90167899956525,189.8225540782039,5.750831689406608,13.716119528077272,9.733783371403476,-4.449601927962543,-11.618031122230635,-6.23676885023297,-8.137577768439495,-11.703465446003495,-3.6833991077776984,0.3333333333333333,30,1,8,0,1,1,1,2,3,7,1,9,9,0,0,0,4,3.895620000000002,112.77070000000002,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-322,O=c1[nH]c2ccccc2c(=O)n1C[C@H]1CC[C@H](C(=O)N2CCSCC2)CC1,0,14.18984886904627,-4.938902421365447,14.18984886904627,0.5081349527844528,0.8749051295089915,387.5049999999996,362.30500000000006,387.16166266000073,144,0,0.3283401249623646,-0.3408072443126979,0.3408072443126979,0.3283401249623646,1.2962962962962963,2.0,2.740740740740741,2.1544696606558675,1984.293986304448,41.13531001146206,37.974633948355326,13.791130529283054,22.730609473082808,19.50668870365945,7.875971689087217,4.790706318999791,5.403078754695586,3.16591382416416,3.552612155231147,1.978301672723173,2.3031939877837404,-2.02,15105843374.962418,5.117606433106306,7.922525539908525,3.8326140197678957,196.67980729755482,9.87691300107973,0.0,1.4118420783282006,5.907179729351506,5.559266895052007,5.689743398203474,14.156174015934997,4.794537184071822,11.761884949391115,0.0,12.08483741532659,43.47049470600718,55.98507029499436,24.610510493783252,39.10458461048531,28.571989610823678,0.0,14.444012648871084,11.787915370726157,31.988559289633464,24.403633138932207,45.0077594920523,0.0,0.0,11.24901029325548,0.0,0.0,11.761884949391115,44.7548255171548,11.291396868387768,11.787915370726157,58.389904953402855,33.75874919879682,1.4118420783282006,10.902924932081056,0.0,75.17,146.61479518289528,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.31004742641348,208.10803219768948,-0.6456657922045672,39.77519175552238,-1.3499838623576534,-12.997268213676161,-12.807581271510871,-4.772888485131928,-19.66070315802324,-13.065799836974135,0.0,0.55,27,1,6,1,1,2,1,1,2,5,1,7,3,1,1,2,4,2.0716,108.18170000000005,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +MolPort-008-351-298,COc1ccccc1C1CC(=O)Nc2sc(C(=O)Nc3ccccc3F)c(C)c21,0,15.056508107283115,-3.8754743695891793,15.056508107283115,0.10953090881414362,0.6408372033945183,410.4699999999998,391.31800000000015,410.11004168800054,148,0,0.2656682808439581,-0.49645408890774606,0.49645408890774606,0.2656682808439581,1.4482758620689655,2.2413793103448274,3.0689655172413794,2.208630972280701,1879.8224444152304,36.961218946165616,32.905384825864594,14.721881406792322,21.655218966495923,16.952581489896037,8.374650879823847,5.289025960925816,6.288096727688596,3.61098643207342,4.682615552471098,2.4311606699026376,3.396328850642678,-3.189999999999999,7061249547.4251585,6.950307921603333,7.674588515248111,3.4908189750812646,197.88217830228876,15.356489660376802,11.5667326743298,2.8236841566564013,5.907179729351506,5.907179729351506,0.0,9.589074368143644,4.39041504767482,0.0,11.336785877934737,30.212093538316473,36.10605122367956,26.054885415410773,37.68191202182775,44.84293198116867,33.83961358800918,0.0,0.0,0.0,19.118774703988137,17.65757916545934,75.72407217114454,0.0,5.749511833283905,15.356489660376802,15.078883299046248,5.749511833283905,11.336785877934737,18.8523119175856,4.794537184071822,12.669112958341575,61.93181689445036,48.33934966130636,2.8236841566564013,0.0,0.0,67.42999999999999,135.44295223066203,10.959832924313863,4.39041504767482,16.646599231223114,0.0,0.0,0.0,0.0,0.0,0.0,29.492684009179964,174.17966329550686,-0.10953090881414362,25.892813130995606,-1.7062314582947262,-5.418684819294262,-10.738794230737481,-9.693663030481769,-3.8754743695891793,-3.662443140064668,-3.5343211358929354,0.18181818181818182,29,2,5,0,1,1,2,1,3,4,2,7,6,0,0,0,4,4.930620000000003,111.49290000000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +MolPort-008-351-299,COCCCN1C(=O)c2ccc(C(=O)Nc3nnc(C)s3)cc2C1=O,0,13.230317243524539,-4.092378590975724,13.230317243524539,0.08158132825637177,0.6217668941374017,360.3949999999998,344.2670000000001,360.0892259920004,130,0,0.2610691049645225,-0.3846198673668162,0.3846198673668162,0.2610691049645225,1.44,2.28,3.04,2.1252713741022564,1452.4888816975667,31.83398062421133,27.83009583431915,12.646592415246875,18.29223542989234,14.141330196373334,7.010613181801101,4.193387655691833,5.149358503660861,2.7415660546684144,3.3720758151400356,1.7590312268188937,2.2238221865572636,-2.6499999999999995,217499901.74821812,6.257288917142293,7.075349055414736,3.419533488256198,169.89570790628673,4.736862953800049,5.007623696852765,1.4118420783282006,5.131558479839333,17.721539188054518,0.0,24.593334636354317,0.0,0.0,10.197363616602075,11.336785877934737,31.352073141614945,32.51104165866292,24.83448854509619,41.09369492689702,34.189883545828586,0.0,15.097273347452553,0.0,13.224817018625059,25.4036107394032,39.82523429493364,0.0,0.0,5.309813353288376,5.131558479839333,0.0,11.336785877934737,52.91260992162189,4.736862953800049,6.851892117295679,63.01589296804194,18.127256122989884,1.4118420783282006,0.0,0.0,101.49000000000001,100.89685609841783,14.383611552215466,0.0,16.646599231223114,0.0,0.0,0.0,0.0,0.0,14.934226570402124,21.973220420881496,127.15401257208117,0.2813392819088858,38.85481559182418,5.417626343365554,-3.4140271178553565,-5.235218567716089,-3.6674748356451543,-4.092378590975724,-10.791084098304243,-3.5909439120165905,0.3125,25,1,8,0,1,1,1,1,2,7,1,9,8,0,0,0,3,1.7313199999999997,90.90120000000003,0,0,0,0,0,2,0,0,0,0,3,3,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-387,CN1C(=O)C2(CC(=O)Nc3c2sc(C(=O)O)c3-c2ccccc2)c2cc(Cl)ccc21,0,14.44437475685356,-3.6738584052448156,14.44437475685356,0.05755775497884086,0.6215555375510159,438.89199999999994,423.7720000000002,438.0441056400004,150,0,0.34609860704629297,-0.47703247606532967,0.47703247606532967,0.34609860704629297,1.4,2.2,2.933333333333333,2.113998227786267,1883.2495600432408,34.03856921535524,29.31363311632846,15.88605864327464,20.630780825017343,15.387222982609918,9.22622215058305,6.11648239796659,7.515067597135475,4.551527507660822,6.019084229909284,3.3992748403024335,4.767144357059642,-3.1599999999999984,3622533567.1292973,8.528611118725427,6.418589850281738,2.3910539826531663,201.4749917072609,15.318531275246066,10.292137663098078,1.4118420783282006,11.814359458703011,1.4311996572326342,5.969305287951849,9.589074368143644,4.794537184071822,0.0,11.336785877934737,41.81303342854899,29.254159106383874,30.103090761255228,27.903526819076,38.72412305186375,52.09616306418924,1.4311996572326342,0.0,0.0,11.787915370726159,17.1855499844211,68.67972885414727,0.0,11.126902983393991,10.209723084138854,11.374772549367124,0.0,22.937725768167255,29.86829983804432,15.004064837540422,0.0,44.30506919471368,48.33934966130636,6.434475392069527,12.558102640626625,0.0,86.71000000000001,127.72881140457169,14.383611552215466,0.0,21.54650896207359,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,32.26384285600621,123.94921783918602,6.217169613841899,39.45533905653629,3.0887872788386854,-7.761681614786173,-5.247819039395595,-7.643380134204464,-3.6738584052448156,-3.5226634836607342,0.0,0.13636363636363635,30,2,6,0,2,2,2,1,3,5,2,8,3,0,0,0,5,4.371400000000003,115.60299999999998,0,0,0,0,1,0,0,0,1,1,3,2,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +MolPort-008-351-275,O=C(C1c2ccccc2C(=O)N(Cc2ccccc2)C12CCCC2)N1CCCC1,0,15.387580460431288,-5.097255881519277,15.387580460431288,0.9634476568405139,0.7837684970679156,388.5109999999996,360.28700000000015,388.21507813600084,150,0,0.2544576642777456,-0.34209241180104705,0.34209241180104705,0.2544576642777456,1.0689655172413792,1.7241379310344827,2.4482758620689653,2.217116024391151,2098.9251489195635,44.73760430703402,42.21092377192764,14.210923771927643,25.121578903249578,21.99988907696374,7.999889076963738,5.7019459153168395,5.7019459153168395,4.139445915316837,4.139445915316837,2.9517026759022356,2.9517026759022356,-2.6199999999999997,205632032877.47836,4.985742509208019,7.325377956207808,2.9670334223842962,211.39713689732218,9.799819461700956,0.0,0.0,5.907179729351506,5.907179729351506,0.0,9.589074368143644,0.0,0.0,0.0,61.08519946396511,42.6610212963748,48.3569259995386,26.51122705561884,47.97031394090983,11.814359458703011,0.0,9.799819461700956,0.0,56.16729203003864,12.99371936863189,71.07212284406063,0.0,0.0,0.0,0.0,0.0,0.0,40.1468235414192,11.291396868387768,0.0,103.9976383252682,54.38176836896965,0.0,0.0,0.0,40.620000000000005,161.8473131631352,9.59530989319154,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.785929679574615,241.9355324268925,0.0,28.386289239843972,0.0,-10.616613218589908,-10.386284446649032,-13.581306709313381,-27.285755500284836,-13.368528458566114,0.0,0.44,29,0,4,1,2,3,2,0,2,2,0,4,3,1,1,2,5,4.361400000000004,112.51150000000007,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-272,O=C(Nc1ccc(O)cc1)C1CC(=O)N(Cc2ccc(Cl)cc2)C1,0,13.482267053349752,-4.106711956902104,13.482267053349752,0.5680319393342486,0.8375007941805156,344.79799999999966,327.662,344.09277008400045,124,0,0.29309209663784014,-0.507964315792537,0.507964315792537,0.29309209663784014,1.4583333333333333,2.1666666666666665,2.8333333333333335,2.2916031609746286,1443.706735667318,31.944711088220565,28.497136535400735,12.253065481419188,18.486933974899987,14.524850546914125,6.547353133959532,4.147838701553428,4.525803174562655,2.4928075290434193,2.6817897655480327,1.5061049584491992,1.600596076701506,-2.529999999999999,233906242.2086235,5.492895299479939,6.926890477753492,3.8621725397989928,168.43178428460638,15.318531275246066,5.749511833283905,1.4118420783282006,11.814359458703011,1.4311996572326342,0.0,9.589074368143644,0.0,0.0,0.0,23.685777305559107,41.81796373767676,34.188939526896824,22.343060359405715,36.67110298013236,29.102685623619088,1.4311996572326342,4.899909730850478,5.893957685363079,12.869784585645323,11.80667303760432,58.925434466744676,0.0,5.749511833283905,5.309813353288376,5.687386274683562,5.749511833283905,11.600939890232516,29.751136722209285,16.08593405245959,5.893957685363079,32.49775473557967,48.33934966130636,6.434475392069527,0.0,0.0,69.64,117.64701707287838,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,35.00535996834665,137.1489638653837,5.71798015476029,26.120153676429073,2.7082027744431043,-2.523017295431963,-9.511461550946676,-8.865777943159554,-4.007113506410796,-7.843485730622726,0.0,0.2222222222222222,24,2,5,0,1,1,2,0,2,3,2,6,5,0,1,1,3,3.0328000000000017,91.71250000000002,0,0,0,0,0,0,0,1,0,0,2,2,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-349,O=C1CN(C(=O)c2ccc3nc(NS(=O)(=O)c4ccc(F)cc4)sc3c2)CCN1,0,13.9586030528753,-5.376322685237137,13.9586030528753,0.10797255553455853,0.651114870605386,434.47399999999993,419.3540000000002,434.0518751800004,150,0,0.2631627403345473,-0.3527826690914607,0.3527826690914607,0.2631627403345473,1.3793103448275863,2.1379310344827585,2.896551724137931,1.9191516716845063,1876.0006282090515,33.80651840778636,28.61630859779224,15.249301759647691,19.87658053303318,14.658792054832409,9.520924773560857,5.0265593357320455,7.5450352990531835,3.1317371064755406,5.245315779520093,1.9416773630139716,3.7488183573399354,-3.049999999999999,1358888611.632653,8.362973166062895,7.409072195236858,4.051804410781913,190.14863682695014,10.209723084138854,5.817220841045895,7.9552426364957345,5.907179729351506,15.930470882759089,0.0,14.304193981877775,17.792190552950963,0.0,0.0,11.336785877934737,42.29693095364306,18.55717086032889,39.42882502413195,43.04083178701668,48.522615603970024,0.0,15.193701605086062,0.0,4.895483475517775,24.20569866668197,53.67760328638595,0.0,0.0,10.024932967022508,9.521973527514152,0.0,11.336785877934737,49.60662374777746,14.817828337479405,5.817220841045895,28.177849905981674,47.192414429160834,2.8236841566564013,10.216620634085363,0.0,108.47,130.17433823875987,22.3972864001474,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,20.64354538686926,158.20527627061372,0.10797255553455853,27.660878181411277,-1.5797852339667349,-1.9156916961956192,-5.640440706318094,-8.796212008798172,0.0,-11.1656746770438,-5.376322685237137,0.16666666666666666,29,2,8,0,1,1,2,1,3,6,2,11,4,0,1,1,4,1.8082000000000003,105.74170000000002,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0 +MolPort-008-351-351,CN(C)CCNC(=O)C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O,0,13.537792735187892,-4.540280140050615,13.537792735187892,0.7291688481522094,0.6574981932534912,362.3859999999997,340.2100000000001,362.15901980400054,140,0,0.32463652300162116,-0.4535954748876736,0.4535954748876736,0.32463652300162116,1.6153846153846154,2.423076923076923,3.230769230769231,2.1372910886102057,1546.477089713252,37.919767061838236,34.33009583431915,12.330095834319149,21.073815060317934,17.30936418512323,6.414936994123312,4.292029269056013,4.292029269056013,2.605840679853597,2.605840679853597,1.6144364292604492,1.6144364292604492,-2.81,2678538412.0084867,5.127614871210203,7.607501548618058,4.048626096142421,181.79061680573759,24.99326234502733,8.759409580690086,14.322707823224212,12.652225313854704,5.907179729351506,6.031114512338072,14.48898409899412,4.794537184071822,0.0,0.0,6.042418707663295,31.599942707588077,26.701304930334086,23.83585303500708,54.0961927398764,17.845473971041084,0.0,20.41944616827771,0.0,18.88767705399497,33.690418753699575,23.69070761468688,0.0,11.49902366656781,20.09335261417685,4.794537184071822,11.49902366656781,0.0,67.35360465479125,16.08593405245959,0.0,39.351547516430784,18.127256122989884,2.8236841566564013,0.0,0.0,100.21000000000001,126.03274722826806,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,34.97571823386085,182.21129916335838,0.0,38.11402129801038,-2.2367089486409397,-1.402909864934853,-7.070667635657627,-10.315380621352496,-4.540280140050615,-23.759373250732292,0.0,0.47058823529411764,26,2,9,0,2,2,1,0,1,6,2,9,9,0,1,1,3,-0.09639999999999826,91.61540000000005,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-338,C#CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2nc3ccccc3s2)c2cc(C)ccc21,0,14.763008727200193,-3.7452443024130915,14.763008727200193,0.02662520922306255,0.4857174363415716,439.49999999999994,422.36400000000026,439.1102957840005,156,0,0.2432878347650191,-0.3101877485236848,0.3101877485236848,0.2432878347650191,1.4375,2.34375,3.21875,1.8301673018264304,2224.663133940231,36.659889558914884,32.46081284889138,16.277309429819105,22.509720349884436,17.199778153927475,9.569061139355242,6.539313116749771,7.5168339241156765,4.862313493967694,5.808646907111971,3.611209208912501,4.439886852329997,-3.9599999999999986,28003637220.714195,8.187603100573101,6.517508650519034,2.3677451078663956,211.17689596064284,5.309813353288376,12.603611803402028,1.4118420783282006,16.945917938542344,0.0,0.0,14.48898409899412,4.9839785209472085,9.780484743446223,6.399401534821945,46.99034651914055,30.54259973198256,24.477555448561034,36.59396109091828,32.93305334519536,44.8730150232417,0.0,14.76446326439343,0.0,18.639807488021837,16.706582768454798,65.1601806395488,0.0,17.451394333516923,10.209723084138854,11.50524905251859,0.0,11.336785877934737,33.07568240741239,15.004064837540422,19.17172797097327,44.99541627514391,48.46982616445783,1.4118420783282006,15.348179113924695,0.0,80.12,118.74801480294754,9.589074368143644,0.0,20.426343718224217,16.018588813079923,0.0,6.399401534821945,5.920434318855644,0.0,10.082660329248245,23.34397897705172,142.58511901077276,0.5649706168050312,32.81936975261357,3.476757280576498,-7.943159728551507,-2.749264126828282,-5.952862549666718,-3.304402178078731,-6.663194744309309,0.0,0.16666666666666666,32,1,7,0,2,2,2,2,4,6,1,8,3,0,0,0,6,3.398520000000002,123.13370000000002,0,0,0,0,0,3,0,0,0,0,2,2,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0 +MolPort-008-351-377,O=C(C[C@@H]1NC(=O)c2ccccc2NC1=O)Nc1cccc(Br)c1,0,13.218545124074524,-4.087560350529103,13.218545124074524,0.4114708155734492,0.7554024177133362,388.2209999999998,374.10900000000004,387.0218534080004,122,0,0.2535552607090639,-0.33962691128709943,0.33962691128709943,0.2535552607090639,1.375,2.1666666666666665,3.0,2.252606277921073,1410.085826086422,29.39230484541327,25.44435013090069,13.030346670015396,17.27627944162883,12.984636245200157,6.935993728257635,4.1106705196049695,4.903668789162321,2.5308217386316945,2.92732087341037,1.584152840424706,1.8710623096525412,-2.6699999999999995,78566048.32720938,6.326297816284975,6.83802145921163,3.624601342795622,166.15283409967594,15.929440059865126,6.017892468349645,4.235526234984602,11.814359458703011,5.907179729351506,0.0,14.383611552215466,0.0,0.0,0.0,34.057200020939234,30.212093538316473,12.901622902856415,29.960589673241913,33.697481905072486,45.02625563537099,0.0,5.309813353288376,0.0,12.390817369679024,10.619626706576751,58.37552066883577,0.0,0.0,15.929440059865126,11.374772549367124,0.0,15.929943897949348,23.73943165640416,9.589074368143644,0.0,31.80925769497061,52.812069177138774,4.235526234984602,0.0,0.0,87.30000000000001,115.79208983580159,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.929943897949348,19.313870352857023,111.62641249094742,2.791826252430717,39.479926344198525,-1.542723492570175,-3.2554725673556844,-6.135464718562662,-11.626943958559066,-4.087560350529103,0.0,0.0,0.11764705882352941,24,3,6,0,1,1,2,0,2,3,3,7,3,0,0,0,3,2.5284000000000004,93.71460000000002,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-380,Cc1nn(-c2ncccn2)c2c1C(c1cccc(F)c1)CC(=O)N2,0,14.762176436556032,-3.6560546054841687,14.762176436556032,0.18092498110355226,0.7865687196531364,323.33099999999973,309.219,323.1182382880004,120,0,0.2519030192313161,-0.3102010133009706,0.3102010133009706,0.2519030192313161,1.5,2.3333333333333335,3.125,2.2710838325426472,1486.408816577587,28.858924650593657,25.52228074097288,11.52228074097288,17.29435963972536,13.302781156986315,6.355567561486357,4.437168789662992,4.437168789662992,3.0079535717939683,3.0079535717939683,2.1096342958872234,2.1096342958872234,-3.0899999999999994,109431119.62441808,5.767518337625222,5.521073229036264,2.3403268029233883,156.65062157570182,5.309813353288376,11.635083618880923,1.4118420783282006,5.907179729351506,5.948339280986494,0.0,4.794537184071822,14.358372089569237,9.780484743446223,0.0,12.08483741532659,30.54259973198256,38.40067583704031,15.289237888039999,28.416655540287696,11.725042507186533,0.0,19.74844178534064,0.0,19.118774703988137,5.309813353288376,65.19593577923435,0.0,5.948339280986494,5.309813353288376,10.208277825509848,0.0,0.0,25.655621514692143,4.794537184071822,12.669112958341575,46.9075747951478,42.557883959946,1.4118420783282006,5.948339280986494,0.0,72.7,101.98809227139553,9.184952231746642,0.0,5.309813353288376,4.681802935145185,0.0,0.0,0.0,0.0,15.066638850195453,19.231703308541057,127.98610469794208,0.0,20.301637391054776,3.5580231166540686,-3.500738483665071,-8.845895252926953,-5.763058944051025,-5.323352145189267,-3.3293870464852624,0.0,0.17647058823529413,24,1,6,0,1,1,1,2,3,5,1,7,3,0,0,0,4,2.58392,85.38070000000003,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-009-019-503,[Na]S,0,6.186728395061729,0.9521604938271605,6.186728395061729,0.9521604938271605,0.29289373765081866,56.065000000000005,55.057,55.969665312000004,8,0,,,,,3.0,3.0,3.0,1.6329931618554523,4.754887502163468,2.7071067811865475,2.408248290463863,4.224744871391589,1.4142135623730951,0.8164965809277261,3.674234614174767,0.0,0.0,0.0,0.0,0.0,0.0,1.35,2.7548875021634682,1.6485074626865672,2.35,0.09074074074074079,36.1107100310519,0.0,0.0,0.0,0.0,0.0,36.1307972679157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.006998094883514,1.1237991730321881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.654318148121865,27.47647911979384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.006998094883514,0.0,0.0,0.0,0.0,1.1237991730321881,6.186728395061729,0.9521604938271605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1388888888888888,0.0,2,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,-0.00030000000000002247,14.739999999999998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-350,COc1ccc(-c2cc3n(n2)C(C(=O)Nc2cccc(C(F)(F)F)c2)CC(=O)N3)cc1,0,13.786199123052196,-5.541987226562551,13.786199123052196,0.16639373110355304,0.6528085625371151,430.38599999999974,413.25000000000006,430.12527506400045,160,0,0.41598551647058807,-0.4967678028626503,0.4967678028626503,0.41598551647058807,1.4193548387096775,2.193548387096774,2.903225806451613,2.0432618444950723,1886.1601410989056,36.961218946165616,31.647492672419105,14.647492672419103,21.655218966495923,16.29311806569134,7.898690874691421,5.544087803332383,5.544087803332383,3.5275421614060107,3.5275421614060107,2.2538133649143917,2.2538133649143917,-3.819999999999999,6611659648.500008,8.36898643115639,7.783469655054571,4.226470757219865,198.37017829435496,15.356489660376802,17.58526707946858,2.8236841566564013,11.814359458703011,0.0,6.176298517443475,9.589074368143644,4.681802935145185,18.269926951325495,0.0,6.042418707663295,42.29693095364306,20.03477358638429,42.48811807697031,50.88224496417788,23.3196085112216,0.0,9.780484743446223,0.0,18.5671158871225,17.65757916545934,59.94521986066665,0.0,17.00689131982936,15.356489660376802,24.67649419554305,5.749511833283905,0.0,28.63279666103182,15.76537288558712,0.0,38.51564720392933,54.38176836896965,2.8236841566564013,11.257379486545457,0.0,85.25,131.1866013910111,22.760319511168102,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,9.835544762101087,23.3850624992097,181.27865889064907,0.0,26.816293594749922,2.498228950716965,-5.85781493744007,-6.769193159062403,-16.3427263647354,-9.531648219045964,0.0,-3.258465422498783,0.19047619047619047,31,2,7,0,1,1,2,1,3,5,2,10,5,0,0,0,4,4.099500000000002,106.57240000000003,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,0,0,0,0,0,0,0,0,3,0,2,0,2,0,0,0,0,2,0,1,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-367,O/N=C/c1ccc2[nH]ccc2c1,0,7.91574074074074,-0.6999433106575961,7.91574074074074,0.1750642479213902,0.3737490904138953,160.17600000000004,152.11199999999997,160.063662876,60,0,0.32956106298266225,-0.410848506326432,0.410848506326432,0.32956106298266225,1.75,2.75,3.6666666666666665,3.013127037608314,737.8483790607195,15.187716254269354,13.80267548146378,5.802675481463779,9.32347362264446,6.958856465048814,3.103394579084992,2.0253040872924757,2.0253040872924757,1.298758841396217,1.298758841396217,0.8152545928024799,0.8152545928024799,-1.7699999999999996,26100.179253096147,2.356787723615029,2.6952655776237338,1.0511983348193745,80.71525581588526,10.186537091273049,0.0,1.4118420783282006,0.0,0.0,1.4311996572326342,0.0,0.0,0.0,0.0,11.198131434413835,29.076931829151675,11.689595928431022,14.415203555758321,16.27712689362595,17.09357715081806,0.0,4.977003270229252,5.15571272675054,0.0,0.0,35.90602153316493,0.0,0.0,0.0,0.0,0.0,0.0,16.377189310010053,0.0,0.0,13.788002828718314,35.49828276821848,2.843041735560835,10.902924932081056,0.0,48.38,36.53322226020494,0.0,0.0,16.466376423778055,4.977003270229252,0.0,0.0,0.0,0.0,10.365246547794337,11.067593072582156,60.243165916057784,0.0,0.5015965136054423,6.4886760676492825,-0.590563114134542,0.0,-1.927895880574451,-1.21497950260351,0.0,0.0,0.0,12,2,3,0,0,0,1,1,2,2,2,3,2,0,0,0,2,1.976,47.679200000000016,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-285,COC(=O)c1nnsc1NC(=O)Cc1c(C)c2ccc(OC)cc2oc1=O,0,13.204386855937404,-3.805425996787606,13.204386855937404,0.13367616760423506,0.518996797854021,389.3889999999999,374.2690000000002,389.0681562000004,140,0,0.361274073998372,-0.4966236123496995,0.4966236123496995,0.361274073998372,1.4814814814814814,2.3703703703703702,3.1481481481481484,2.299488628942391,1642.7050431530718,32.32554445577405,27.699378819746915,13.515875400674641,18.89740714541488,14.041849626904266,7.368032693538282,4.508001541894525,5.240573374982112,2.947865586826729,3.568737912473596,1.8236877192122296,2.3578645855798017,-3.27,364978450.27834123,7.390397355432522,7.539547435855741,3.6501699301967507,177.74796723484812,19.20069019794182,11.332531974926148,6.4129240550160675,11.601107724199966,0.0,11.594891607029837,4.794537184071822,9.589074368143644,0.0,5.098681808301038,4.48824326877028,24.500181024319264,29.814922314545864,38.349108316323544,44.08241307750839,39.37929796166493,0.0,9.586925077071317,0.0,13.224817018625059,19.385718271053552,45.36821060438214,0.0,5.749511833283905,15.672262626166413,5.001081976687867,5.749511833283905,11.532486611566675,35.539315012139845,15.90432503920125,6.851892117295679,40.80598794869737,27.33894424411505,1.4118420783282006,10.969244356107037,0.0,120.62,101.4707185400827,14.383611552215466,0.0,16.84229996485505,0.0,0.0,0.0,0.0,0.0,19.060650984671415,25.019612801764627,132.49443170991162,0.13367616760423506,38.40780114896599,1.002190678914199,-6.904551548268838,-4.802933151412172,-3.446103567543238,-3.805425996787606,-3.5497924015285145,-6.529293039855658,0.23529411764705882,27,1,9,0,0,0,1,2,3,9,1,10,8,0,0,0,3,1.92932,97.35520000000005,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-270,O=CN1CCN(C(=O)Cn2ccc3ccc(Br)cc32)CC1,0,13.5218997622197,-4.002485775174269,13.5218997622197,0.06635975686570927,0.7914890578642844,350.2159999999998,334.0880000000001,349.04258885200045,110,0,0.24213061175395353,-0.341711741028082,0.341711741028082,0.24213061175395353,1.4285714285714286,2.1904761904761907,2.9047619047619047,2.38856214052651,1327.3681696691283,29.005553499465137,26.036101840436828,11.622098379551531,16.42820323027551,13.359691706718287,6.15268997627564,3.6110796747054463,4.404077944262799,2.3275462381710117,2.7240453729496874,1.4327237486831004,1.719633217910935,-1.8199999999999994,30540685.876614217,4.585826184408549,5.891172329838069,2.948024229444355,153.27075035490938,14.366919109492311,7.867618240486165,0.0,12.293326674669313,0.0,0.0,9.589074368143644,0.0,0.0,0.0,21.972362605612645,23.51348033745468,42.149754181527214,20.561378342553297,31.52121126686716,39.126195504699716,0.0,14.366919109492311,0.0,6.496859684315945,25.98743873726378,34.81528955730035,0.0,0.0,0.0,0.0,0.0,15.929943897949348,52.6476845214254,16.08593405245959,0.0,21.932136898723517,34.81528955730035,0.0,10.902924932081056,0.0,45.550000000000004,95.822939531499,9.589074368143644,0.0,9.039819163623768,0.0,0.0,0.0,0.0,0.0,15.929943897949348,21.932136898723517,128.53328451673613,2.8625906286174145,23.805022726509208,-0.5961321733187714,-0.7422779667422523,-2.296543839758125,-2.9648086769231234,-3.3061189429627245,-19.628349605491117,0.0,0.3333333333333333,21,0,5,0,1,1,1,1,2,3,0,6,2,0,1,1,3,1.7043999999999995,83.85500000000003,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-281,O=c1c(-c2nc(-c3ccc(F)cc3)no2)c[nH]c2ccccc12,0,13.817618294949472,-1.382714006125595,13.817618294949472,0.3068815820890136,0.6159569756569069,307.2839999999999,297.20400000000006,307.07570478000025,112,0,0.2632288186164719,-0.3601436888357278,0.3601436888357278,0.2632288186164719,1.173913043478261,1.9565217391304348,2.782608695652174,2.041762886088781,1537.142031392125,24.513625188972913,21.036101840436828,11.036101840436828,15.394529725464299,11.095052297053385,6.147838701553427,4.263456924105011,4.263456924105011,2.859328371027948,2.859328371027948,1.8221948691543226,1.8221948691543226,-3.2799999999999994,19626155.05445535,6.454937022136405,5.1696143665860355,2.298145496676969,143.0667047129323,9.500098207202601,11.38067233274289,1.4118420783282006,11.253194889900467,5.890723922025908,0.0,4.794537184071822,4.39041504767482,4.9839785209472085,0.0,17.241500672452034,36.25451224597977,22.639271634592816,12.33682700553198,22.662179068508344,10.902924932081056,0.0,15.117645048301906,0.0,0.0,0.0,70.55279328913937,0.0,22.842031403419824,5.428790391900541,4.39041504767482,0.0,0.0,15.117645048301906,0.0,5.817220841045895,12.33682700553198,63.82987699316629,1.4118420783282006,33.74495633550088,0.0,71.78,99.50321244056846,9.184952231746642,0.0,0.0,4.977003270229252,0.0,0.0,0.0,0.0,10.140641778072654,18.27176402083353,97.39684533777361,0.0,17.232331321009166,2.911080023938971,-2.8356918902138943,-2.60133514285189,-6.428592356467085,-0.8413039598555472,0.0,0.0,0.0,23,1,5,0,0,0,2,2,4,4,1,6,2,0,0,0,4,3.3842000000000008,83.25470000000001,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-358,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2ccc(C)c(C)c2)c2cccc(Cl)c21,0,14.85704392495698,-3.8779831063764165,14.85704392495698,0.12254443051069996,0.6271483011135729,432.91099999999983,411.7430000000002,432.1353035920006,156,0,0.24277749969429682,-0.3102668668664883,0.3102668668664883,0.24277749969429682,1.4516129032258065,2.3225806451612905,3.129032258064516,2.0709217557546125,2170.1719151574343,39.90881270335832,35.98331543593679,15.739244381955242,23.458801426340997,18.783298504468267,8.714049381977537,6.277731550696444,6.655696023705671,4.668674258834297,4.942171920811761,3.408016948460662,3.6342690513119735,-3.3799999999999986,47935795910.55156,7.068676215418855,6.819020880707828,2.6104661697673315,214.2344820954556,10.209723084138854,11.232853247231809,1.4118420783282006,11.814359458703011,0.0,0.0,9.589074368143644,4.681802935145185,5.098681808301038,6.531038962001867,35.78026775925797,48.52139483267223,29.399304526704075,39.01940374796587,38.416087569876254,34.92054840145412,0.0,9.780484743446223,0.0,25.491699605317518,16.706582768454798,82.28695744536128,0.0,5.687386274683562,10.209723084138854,11.50524905251859,0.0,11.600939890232516,28.09170388646518,15.004064837540422,13.703784234591359,56.04190199152181,55.010518164831964,6.434475392069527,5.687386274683562,0.0,67.23,143.28251152089993,9.589074368143644,0.0,14.89152601928404,0.0,0.0,0.0,0.0,0.0,5.098681808301038,40.42795309196513,174.34269032051301,6.350896070054527,28.66548990992172,2.4537175174621906,-10.636340102400142,-5.18692508024917,-8.767258082494497,-5.177693662666835,-12.016799112363,0.0,0.20833333333333334,31,1,6,0,2,2,2,1,3,4,1,7,5,0,0,0,5,4.303440000000003,121.06670000000001,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-382,CN1CCN(C2(CNC(=O)C[C@@H]3NC(=O)N(Cc4ccc5c(c4)OCO5)C3=O)CCCCC2)CC1,0,14.493905280509907,-5.818875083473403,14.493905280509907,0.9390484886212604,0.5612508163095931,485.5849999999997,450.30500000000035,485.2638192200009,190,0,0.32463652300164253,-0.4535954748876736,0.4535954748876736,0.32463652300164253,1.3142857142857143,2.085714285714286,2.857142857142857,1.837998279694472,2380.042335561584,55.49711733102786,51.777309429819105,16.777309429819105,30.43984046410237,26.480184578373162,9.085757387373247,6.298259858930919,6.298259858930919,4.100267870853511,4.100267870853511,2.567551724197901,2.567551724197901,-2.85,33230983766992.285,6.162362902600533,10.023655825956288,5.084666795373655,254.7229415862369,24.99326234502733,8.759409580690086,14.322707823224212,12.652225313854704,5.907179729351506,6.031114512338072,19.388893829844598,4.794537184071822,0.0,0.0,25.161193411651436,37.36996560996459,69.55067046587817,23.83585303500708,71.91605397008927,17.845473971041084,0.0,25.319355899128187,0.0,56.291226813025204,46.20517090636516,23.69070761468688,0.0,11.49902366656781,20.09335261417685,4.794537184071822,11.49902366656781,0.0,90.3071917906907,16.08593405245959,0.0,89.0360332532905,18.127256122989884,2.8236841566564013,0.0,0.0,103.45000000000002,180.8509588708144,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.53244241787381,307.9860985513528,0.0,38.5939497231282,-3.005613479938859,-7.419610459687503,-8.24416258147555,-11.564888400377239,-30.859599441528864,-37.48617391147303,0.0,0.64,35,2,10,1,3,4,1,0,1,7,2,10,8,1,2,3,5,1.292300000000001,127.94740000000009,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,3,2,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-297,CC(C)CN1C(=O)C2(CC(=O)Nc3c2cnn3-c2ccc(F)cc2)c2ccc(F)cc21,0,15.39982915806998,-4.493526145855243,15.39982915806998,0.12500767668178336,0.6986417410850582,422.43499999999983,402.2750000000002,422.15543232000056,158,0,0.2424447102537962,-0.3106548614972078,0.3106548614972078,0.2424447102537962,1.2903225806451613,2.032258064516129,2.774193548387097,2.0711515246580605,2052.959963409812,39.25411216497907,34.86127990894602,14.861279908946013,22.9320924200336,18.22228074097288,8.275067145472923,6.216713787201058,6.216713787201058,4.464309363787672,4.464309363787672,3.313461721374273,3.313461721374273,-3.549999999999998,30546878985.53682,7.254758221489346,6.730989430114108,2.777569375002471,205.18197709204628,10.209723084138854,22.8672949293236,1.4118420783282006,11.814359458703011,0.0,0.0,9.589074368143644,13.462633030494823,5.098681808301038,0.0,19.746202942254655,47.71192142303984,30.770063082874294,31.25525332188408,45.82615910905569,23.319608511221602,0.0,9.780484743446223,5.893957685363079,25.491699605317518,16.706582768454798,71.23117082994361,0.0,5.687386274683562,10.209723084138854,20.28607914786823,0.0,0.0,28.09170388646518,15.004064837540422,17.528399367454867,57.248024686548966,48.46982616445783,1.4118420783282006,5.687386274683562,0.0,67.23,143.02059232169583,13.979489415818463,4.39041504767482,9.99161628843356,0.0,0.0,0.0,0.0,0.0,5.098681808301038,27.456254645562375,195.26160035019288,0.0,28.141849317250866,3.2549177217183156,-9.415648852860704,-13.896166287989349,-10.093344457059839,-5.496621105232219,-12.923253352686597,0.0,0.2608695652173913,31,1,6,0,2,2,2,1,3,4,1,8,5,0,0,0,5,3.7814000000000023,111.1397,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,4,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-375,CC(=O)Nc1cccc(NC(=O)C[C@@H]2NC(=O)N(Cc3ccc4c(c3)OCO4)C2=O)c1,0,13.675299378206294,-4.357933161907506,13.675299378206294,0.5596946917981542,0.6075800341780655,424.41299999999984,404.2530000000002,424.13828436000045,160,0,0.3246365247226288,-0.4535954748876736,0.4535954748876736,0.3246365247226288,1.3225806451612903,2.096774193548387,2.903225806451613,1.8298827425718334,1922.5803485445415,39.461218946165616,34.73834412478301,14.738344124783012,22.92189127167125,17.73709512810514,7.895454341605264,5.347181833464497,5.347181833464497,3.311894422937329,3.311894422937329,2.127861095854815,2.127861095854815,-4.08,23742569354.661472,7.257647928994084,8.34461703843053,4.577491694770534,205.3174930283596,25.403165967465224,8.759409580690086,15.734549901552413,18.55940504320621,5.907179729351506,6.031114512338072,19.283521283065944,4.794537184071822,0.0,0.0,12.08483741532659,35.77554503001347,25.0804574475139,26.57737014734752,56.190296333765765,35.127426249759715,0.0,10.209723084138854,0.0,25.739569171290647,17.36467229107995,47.86038244534006,0.0,11.49902366656781,25.403165967465224,16.169309733438947,11.49902366656781,0.0,41.415501484095905,20.88047123653141,0.0,42.09116396521581,42.29693095364306,4.235526234984602,0.0,0.0,126.07000000000002,147.80079690817706,19.178148736287287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.012147597478446,169.37464086597512,0.0,51.9505796552115,-2.1590700718979137,-4.230106612203318,-8.678670952143394,-15.552651899847334,-4.357933161907506,-10.430121156520565,0.0,0.23809523809523808,31,3,10,0,2,2,2,0,2,6,3,10,7,0,1,1,4,1.8228999999999997,109.42710000000002,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-386,O=C(C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCc1ccc(Cl)cc1Cl,0,13.590437166665971,-4.310313501903588,13.590437166665971,0.6255513016858618,0.6603253237890018,450.27799999999985,433.14200000000017,449.0545260040005,156,0,0.32463652300626505,-0.4535954748876736,0.4535954748876736,0.32463652300626505,1.3666666666666667,2.1666666666666665,3.0,1.8110475631653242,1749.9441359327566,36.30651840778636,31.138811184837643,15.650669076874555,21.133216137076438,16.016508264882518,8.378010019901057,5.2227801465652846,5.978709092583738,3.2920684754843648,3.7645240667458983,2.034716945613101,2.4088140377112826,-2.9699999999999993,4349506080.065984,8.280268590915295,8.411985131955074,4.292034953190084,205.57473095133273,20.09335261417685,8.759409580690086,14.322707823224212,12.652225313854704,5.907179729351506,6.031114512338072,14.48898409899412,4.794537184071822,0.0,0.0,35.286717195791624,35.29657781404717,19.283643424139036,27.94812870351774,47.24239995902529,41.047353751506115,0.0,15.51953643742723,0.0,25.384536738310914,6.745045584503197,57.426681856856405,0.0,11.49902366656781,20.09335261417685,4.794537184071822,11.49902366656781,23.20187978046503,35.5083217547444,22.582793736775535,0.0,38.06120622727668,36.25451224597977,12.868950784139054,0.0,0.0,96.97,134.4202982547067,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.06066818727488,147.45138789410407,11.653258446674291,39.448598227693076,-3.351192751668078,-2.5272342825288487,-6.532054398730634,-12.858880331959334,-4.310313501903588,-10.501347079458785,0.0,0.25,30,2,8,0,2,2,2,0,2,5,2,10,6,0,1,1,4,2.849000000000001,108.36040000000003,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-354,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2ccccc2OCC(C)C)nn1,0,13.744079589550596,-4.376647569645752,13.744079589550596,0.13544991602012746,0.6726082814368779,407.4739999999997,382.27400000000017,407.1957396600007,156,0,0.2327511300809093,-0.4930198094868632,0.4930198094868632,0.2327511300809093,1.4666666666666666,2.3666666666666667,3.2,2.2555817018736137,2054.0258358845094,42.77313821296675,39.46081284889138,14.46081284889138,24.430099215865983,20.183081905909468,7.735868310409511,5.340042682896712,5.340042682896712,3.5227411921266394,3.5227411921266394,2.4204237118525125,2.4204237118525125,-3.42,90656165594.25496,5.83833477566321,8.137478336855136,3.724010888036097,209.96001627402305,14.783539260888475,11.567374611118932,7.229704856163229,11.787168065786876,0.0,0.0,4.794537184071822,0.0,9.780484743446223,10.197363616602075,31.831040357581244,24.83068721798535,47.25606550796264,34.369209814519756,48.57831051808543,11.725042507186533,0.0,19.9778483600483,5.893957685363079,32.8225589385795,18.906751055087252,53.075343224222216,0.0,17.447362947554304,14.783539260888475,5.817862777835028,11.629500169719275,0.0,39.481965791198675,4.794537184071822,12.745849802658757,75.68970314761155,36.25451224597977,1.4118420783282006,5.817862777835028,0.0,91.16,134.5612030047045,6.165295740242042,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,20.032908378703162,37.676151824043316,213.23108282456914,0.0,13.744079589550596,10.1858232055653,-4.538812985230057,-15.607829766838432,-8.145439625032536,-4.071198927101711,-16.238746640754275,-3.2256243413946892,0.36363636363636365,30,1,8,0,1,1,1,2,3,7,1,8,10,0,0,0,4,3.488220000000002,112.30770000000005,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-368,Cc1nnc(NC(=O)c2ccc3nc(NS(C)(=O)=O)sc3c2)s1,0,12.85287544109063,-5.185033626911365,12.85287544109063,0.09862961887132204,0.7276548749435062,369.45299999999986,358.36500000000007,369.00240221200033,120,0,0.2570400625983522,-0.296386862026305,0.296386862026305,0.2570400625983522,1.3478260869565217,2.217391304347826,2.9565217391304346,2.1124337384830074,1398.4168869804478,25.963737136208252,21.68555772028297,13.135047463066147,15.390771541371622,10.900327165809747,8.578956465465923,3.7972688191965847,6.863467340022888,2.1839638603701266,4.208020629485979,1.3969956308119549,3.217624659758599,-2.11,15693607.553783264,7.195564467897763,5.8303786424204604,3.807336331912095,154.76592337855075,0.0,5.007623696852765,7.9552426364957345,15.154849633246917,5.907179729351506,0.0,14.819470151094329,13.401775505276145,0.0,10.197363616602075,22.673571755869474,24.979148240285564,13.788002828718314,20.512820403712478,28.372845330589133,59.08378023239259,0.0,15.181342137549283,0.0,6.851892117295679,16.20885706813897,28.698331311539647,0.0,0.0,10.024932967022508,10.263116959678666,0.0,22.673571755869474,35.69024295234618,10.023291153407584,6.851892117295679,27.70243937815356,18.127256122989884,2.8236841566564013,10.216620634085363,0.0,113.94,73.44443609000581,13.212334168400758,0.0,14.724852883491609,22.673571755869474,0.0,0.0,0.0,0.0,15.181342137549283,15.160511162188381,106.52048487955346,0.7258957353380631,16.546049460800546,5.2494566044166096,-1.2035011227031878,-1.3273754802847064,-2.3333453142059293,-3.59429086943066,-2.6483402665728324,-5.185033626911365,0.16666666666666666,23,2,8,0,0,0,1,2,3,8,2,11,6,0,0,0,3,2.08002,90.68570000000003,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0 +MolPort-008-351-348,CN1C(=O)C2(CC(=O)Nc3c2sc(C(=O)O)c3-c2ccccc2)c2ccccc21,0,14.426234167284399,-3.698549763269508,14.426234167284399,0.06335695389266793,0.681615915556303,404.44699999999995,388.31900000000024,404.0830779920004,144,0,0.346098607046245,-0.47703247606532967,0.47703247606532967,0.346098607046245,1.3103448275862069,2.0689655172413794,2.8275862068965516,2.113998227786267,1877.8529189773685,34.03856921535524,29.935668643319232,14.752165224246957,20.630780825017343,15.698240746105306,8.65927544106921,5.927500161461976,6.948120887621633,4.457036389408515,5.735610875152364,3.328406501613203,4.554539340991951,-3.4499999999999984,3622533567.1292973,7.421934798613362,6.021882494601399,2.2462045017702916,192.57669598054704,15.318531275246066,10.292137663098078,1.4118420783282006,11.814359458703011,1.4311996572326342,5.969305287951849,9.589074368143644,4.794537184071822,0.0,11.336785877934737,48.33934966130636,17.169321691057284,25.0804574475139,29.27428537524622,40.09488160803397,40.495223173956724,1.4311996572326342,0.0,0.0,11.787915370726159,17.1855499844211,69.69951424806925,0.0,11.126902983393991,10.209723084138854,11.374772549367124,0.0,11.336785877934737,29.86829983804432,15.004064837540422,0.0,45.675827750883904,54.38176836896965,1.4118420783282006,12.558102640626625,0.0,86.71000000000001,128.74859679849368,14.383611552215466,0.0,21.54650896207359,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,22.033661521943912,131.89914668978724,0.06335695389266793,39.35114908425108,3.8950750660941855,-7.931351696810752,-5.30162492388931,-8.986397336825746,-3.698549763269508,-3.5408040732298947,0.0,0.13636363636363635,29,2,6,0,2,2,2,1,3,5,2,7,3,0,0,0,5,3.7180000000000017,110.593,0,0,0,0,1,0,0,0,1,1,3,2,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +MolPort-008-351-277,COc1ccc(NC(=O)C2CC(=O)N(c3ccc(OC)cc3OC)C2)c(OC)c1,0,14.015024177995855,-4.372319066515496,14.015024177995855,0.5645827322996331,0.7691565663300618,400.43099999999976,376.2390000000002,400.1634364880006,154,0,0.22941753055259678,-0.49662202494754476,0.49662202494754476,0.22941753055259678,1.1379310344827587,1.793103448275862,2.5172413793103448,2.4136775792635645,1834.7098810402797,41.5660314317802,37.84391693378309,13.843916933783095,23.442717884052954,19.10648903656917,7.1592754410692105,4.841280590083462,4.841280590083462,3.1908414108953886,3.1908414108953886,1.9880756589593775,1.9880756589593775,-3.42,21737222415.346577,5.809003279237662,8.724045065405043,4.206904865711591,202.63141480979345,29.15717489933905,22.99804733313562,1.4118420783282006,11.814359458703011,0.0,0.0,9.589074368143644,0.0,0.0,0.0,0.0,24.16967483065318,29.066897669482575,72.83571119366498,61.47581505358716,23.189132008070136,0.0,0.0,5.893957685363079,6.372924901329379,44.85839260398515,36.25451224597977,0.0,22.99804733313562,29.15717489933905,11.374772549367124,22.99804733313562,0.0,46.4630289785493,9.589074368143644,5.893957685363079,37.900371693244445,36.25451224597977,1.4118420783282006,0.0,0.0,86.33000000000001,139.56696677786312,9.589074368143644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.947451815200196,32.93928887024326,207.62169636581856,0.0,27.156208055484463,-0.7930549545218564,-3.198323919241404,-15.068323835466781,-8.925887522326573,-4.236154179589652,-4.2747641096727955,-14.19806256715068,0.3333333333333333,29,1,8,0,1,1,2,0,2,6,1,8,11,0,1,1,3,2.712600000000001,108.18170000000005,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-335,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2ccc(SC)cc2)nn1,0,13.415261097628523,-3.716029213382887,13.415261097628523,0.04168790108406961,0.6992325060266184,381.46099999999973,362.3090000000001,381.1259458480006,138,0,0.2327511300809093,-0.47991827432189166,0.47991827432189166,0.2327511300809093,1.4074074074074074,2.2962962962962963,3.074074074074074,2.179252799732467,1738.6460119643534,35.27313821296676,31.96081284889138,13.777309429819105,20.680099215865987,16.433081905909468,7.802364891337238,4.862980610280746,5.475353045976541,3.318617046894708,3.726865337358571,2.2418150847745735,2.445939230006505,-2.8699999999999997,2505483565.431326,6.066548559338214,7.033963998390726,3.1640706975890853,187.44493172568465,10.046676307088426,5.817862777835028,7.229704856163229,11.787168065786876,0.0,0.0,4.794537184071822,0.0,9.780484743446223,21.959248565993192,12.08483741532659,36.726523833099016,41.10506326710252,25.068707459263027,35.61689622726403,23.486927456577646,0.0,19.9778483600483,0.0,24.014258179505912,18.531689913287423,53.075343224222216,0.0,11.6978511142704,10.046676307088426,5.817862777835028,5.879988336435371,11.761884949391115,39.10690464939885,4.794537184071822,6.851892117295679,53.76136757599892,41.14999572149754,1.4118420783282006,5.817862777835028,0.0,81.92999999999999,113.7343715851841,6.165295740242042,0.0,17.07169830267949,4.681802935145185,0.0,0.0,0.0,0.0,20.032908378703162,24.71473753322194,158.36043473422473,-0.04168790108406961,12.702846047800765,10.491515907977291,-3.547148418168664,-8.362317746257384,-6.547734816086585,-6.586764240701576,-3.4189600005457264,-3.133516900492115,0.2631578947368421,27,1,7,0,1,1,1,2,3,7,1,8,7,0,0,0,4,3.175320000000002,103.75570000000002,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +MolPort-008-351-316,CCOC(=O)Cc1csc(NC(=O)c2snnc2C)n1,0,12.502646098690473,-3.540925735245878,12.502646098690473,0.05531568877551041,0.8438502589092199,312.3759999999998,300.28000000000003,312.03508224400036,106,0,0.31138694817873713,-0.4656830774457421,0.4656830774457421,0.31138694817873713,1.7,2.6,3.4,2.3512606106934446,1030.3089902908653,24.861442840636293,21.33009583431915,10.963088996174601,14.303384571049925,10.626690786708432,6.269370434270172,2.9313138087648363,4.458832263383272,1.690076943102577,3.0644796467271,0.9737788651125983,1.9790541803960475,-1.8700000000000003,3941073.9715115363,5.489771758051399,6.527505978892958,3.576768007614567,139.63151830040778,4.736862953800049,4.877147193701299,6.543400558167534,0.0,5.907179729351506,5.969305287951849,14.898887721432018,4.9839785209472085,0.0,16.435467686235775,4.48824326877028,25.236270846158035,16.322182859029358,28.43204180245325,30.816123518144305,39.8773159866441,0.0,14.570903598018525,0.0,20.076709135920737,11.868798596204664,21.62111759306582,0.0,0.0,5.309813353288376,5.131558479839333,0.0,22.869272489501412,33.00637385823817,15.90432503920125,6.851892117295679,42.989776602638166,5.356114409667599,1.4118420783282006,0.0,0.0,94.07,65.26485546904553,9.589074368143644,0.0,16.646599231223114,11.532486611566675,0.0,0.0,0.0,0.0,19.307766551818574,16.49018619620062,96.45571357221593,0.6650257560842454,27.659748564893768,2.0181106077745383,-1.6335209926431542,-3.2393747468761,0.0,-3.315263920382968,-9.777105507732937,0.0,0.36363636363636365,20,1,7,0,0,0,0,2,2,8,1,9,7,0,0,0,2,1.66092,75.05020000000002,0,0,0,0,0,3,0,0,0,0,2,2,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +MolPort-008-351-381,CC(C)c1nnc(NC(=O)C2CC(=O)N(c3ccccc3F)C2)s1,0,14.993553808669388,-4.014215088813305,14.993553808669388,0.103153288276846,0.921811802288284,348.4029999999997,331.267,348.10562500400044,126,0,0.2311415899734628,-0.3088267564231782,0.3088267564231782,0.2311415899734628,1.6666666666666667,2.4583333333333335,3.25,2.1829203800903993,1399.3736050999867,32.04952357383516,28.391563726400648,12.208060307328374,18.239829187085043,14.467939997182151,6.837222982609919,4.096699980306012,5.05267082827504,2.5450414815656517,3.379675387269202,1.561266753023627,2.128119785377961,-2.349999999999999,222119837.31416422,5.586977377153848,6.641079627443266,3.2797343111368122,166.19114647983017,10.209723084138854,10.82484453789866,1.4118420783282006,16.945917938542344,0.0,0.0,9.589074368143644,4.39041504767482,0.0,10.197363616602075,37.12540752785269,12.08483741532659,32.4713278327106,19.80589529706796,37.32346839287019,33.97009009116064,0.0,10.197363616602075,5.893957685363079,25.970666821283817,16.7065827684548,34.994519368551835,0.0,0.0,10.209723084138854,15.209359802197715,0.0,11.336785877934737,28.508582759621028,9.589074368143644,11.711178526408974,52.91042741686015,24.16967483065318,1.4118420783282006,0.0,0.0,75.19,106.19903085687946,13.979489415818463,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,10.197363616602075,23.34397897705172,148.33429047781456,-0.103153288276846,25.948161968669723,3.955294995619115,-1.5130775139996826,-13.65720051676275,-4.991075480281342,-3.9306955073696157,-11.042545135413205,0.0,0.375,24,1,6,0,1,1,1,1,2,5,1,8,6,0,1,1,3,2.792200000000001,89.48770000000003,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-331,c1ccc2c(c1)CCCN2c1ncnc2[nH]ncc12,0,8.492388983371127,-3.398971206538172,8.492388983371127,0.37824310279667395,0.7213394460343686,251.29300000000012,238.189,251.11709541599998,94,0,0.19181092895689475,-0.32540410634843603,0.32540410634843603,0.19181092895689475,1.368421052631579,2.3157894736842106,3.3157894736842106,2.2679957127828354,1300.6375952196597,24.126873843024782,22.236067977499793,9.236067977499792,14.568291896300185,11.659674775249771,5.212461179749813,3.5784441853748645,3.5784441853748645,2.523862146049869,2.523862146049869,1.7132139620686742,1.7132139620686742,-2.4299999999999997,6985338.524793622,3.78672891970993,4.04936789559114,1.582125781140974,128.17822178383855,4.899909730850478,13.491993047971475,7.059019299095929,0.0,0.0,0.0,5.091706557583081,9.967957041894417,5.098681808301038,0.0,18.127256122989884,24.35172000201905,20.408797296020825,18.412912206130656,17.860944752370838,22.538650487751113,0.0,20.158345407778537,0.0,12.745849802658759,11.396769415166423,42.20939324713116,0.0,0.0,4.899909730850478,11.50524905251859,0.0,0.0,26.65520509209448,6.372924901329379,0.0,28.38547906706901,36.645941755434166,1.4118420783282006,11.033401435232523,0.0,57.7,78.60452900739217,0.0,0.0,5.386224214464796,9.991616288433558,0.0,0.0,0.0,0.0,15.066638850195455,17.860944752370838,106.09319201677584,0.0,7.851423388028049,3.5296562683715464,-1.9706477282270927,-0.6535596182917607,-3.4463928781389095,-7.992971335138994,-3.3273667800453524,0.0,0.21428571428571427,19,1,5,0,1,1,1,2,3,4,1,5,1,0,0,0,4,2.4372,73.45270000000002,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,4,1,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-361,COC(=O)C[C@H](NC(=O)N1CCc2nc[nH]c2C1c1cccc(Cl)c1Cl)C(=O)OC,0,14.329355119362559,-4.788250193338656,14.329355119362559,0.1848459521996233,0.670228675411898,455.2979999999999,435.13800000000026,454.0810751000005,160,0,0.3285284956734078,-0.468926539568882,0.468926539568882,0.3285284956734078,1.6,2.4,3.1666666666666665,2.5552271484384836,1753.5151882930695,39.28157438140403,34.0860247803376,15.597882672374514,22.167020647553056,17.213721860382478,8.075223615401015,4.966628744331588,5.722557690350042,3.288615053007493,4.046784929983313,2.0995459184956298,2.425276985988975,-2.78,7717847025.078879,7.724498209450606,9.35591772226462,4.364645318265299,210.40430405251135,24.660452261968203,13.40654349286951,2.8236841566564013,0.0,0.0,17.969725088241773,4.794537184071822,14.573052889090853,0.0,0.0,35.286717195791624,6.042418707663295,26.657787414363636,63.26366826811281,51.354675627535954,41.1716048687068,0.0,20.170704875315316,0.0,24.781634739358047,20.572764602081122,51.42720194583267,0.0,0.0,5.309813353288376,4.794537184071822,0.0,23.20187978046503,59.42127368069948,25.43572517707312,0.0,54.01577886213695,24.430627836956113,12.868950784139054,0.0,0.0,113.61999999999999,124.96104945965247,15.754370108385686,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,14.457704428547306,49.328459392015205,168.43571889998313,12.281805269736445,42.662740884422234,-3.3683563779502226,-3.9800567135269045,-5.536003881616328,-14.873791054612413,-9.681429861958579,-4.204610063932984,-7.763794878322194,0.3684210526315789,30,2,9,0,1,1,1,1,2,6,2,11,7,0,0,0,3,2.4783,108.27140000000001,0,0,0,0,0,2,1,0,0,0,3,3,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,0,2,2,0,0,2,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-314,CCCc1cc(=O)oc2cc(OCC(=O)Nc3nnc(COC)s3)c(Cl)cc12,0,12.885509216618244,-3.794320434002824,12.885509216618244,0.11669870913062819,0.5533568136939614,423.8779999999998,405.73400000000015,423.0655693560005,148,0,0.33597289629606253,-0.4820578938002051,0.4820578938002051,0.33597289629606253,1.5,2.392857142857143,3.2142857142857144,2.1257967369658592,1754.4204591341702,35.74819418658443,31.16909500229228,14.741520529238462,20.492542159805353,15.771864475323804,8.019111933760799,4.451743154756548,5.7856784757348025,2.7378100426541825,3.717787047944796,1.7556236086680326,2.4840604166087186,-2.4899999999999998,1786636575.833962,7.399176891733288,9.1348523536532,4.859792947659433,194.32847498764065,13.890876844653445,22.899140914695202,7.97082732124449,5.131558479839333,5.907179729351506,5.625586319077987,10.104350537360197,4.794537184071822,0.0,10.197363616602075,36.162542786792315,17.97879510068967,34.10432398186552,18.730218875443526,43.400151561947226,44.945708333465134,0.0,10.197363616602075,0.0,26.156727162870727,18.906751055087252,44.14108812843078,0.0,5.749511833283905,15.672262626166411,5.131558479839333,5.749511833283905,22.937725768167255,29.70148104775246,22.46331028211754,0.0,47.098787662068595,27.33894424411505,6.434475392069527,10.969244356107037,0.0,103.55,106.85771020761032,9.589074368143644,0.0,16.646599231223114,0.0,0.0,0.0,0.0,0.0,14.934226570402124,45.46969131430787,153.9526553177285,6.225055459741577,25.370752097172918,2.6873196188405055,-4.167389626546583,-3.126895512145783,-3.804570417650738,-7.517962549378486,-10.445262025061108,-3.2292579182563443,0.3333333333333333,28,1,8,0,0,0,1,2,3,8,1,10,10,0,0,0,3,3.4143000000000017,106.23570000000002,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-282,O=C1CC(C(=O)Nc2ccc(Cl)cc2)n2nc(-c3ccccc3)cc2N1,0,13.682602191345875,-3.7241558055835524,13.682602191345875,0.06551191875927298,0.7412195246566653,366.8079999999999,351.68800000000016,366.08835340000047,130,0,0.24936906510303639,-0.3242157345225301,0.3242157345225301,0.24936906510303639,1.3846153846153846,2.1153846153846154,2.8461538461538463,2.0549316337055377,1637.6099954731721,31.25411216497907,27.483315435936788,13.23924438195524,18.759442689223224,14.256905302218247,7.240442584227558,4.679124752946464,5.057089225955692,3.009435779669465,3.1984180161740783,1.9668093243273728,2.0613004425796793,-3.1199999999999988,477888737.6181515,6.554338716533716,6.647959509772986,3.187638394446423,175.52346785382218,10.619626706576751,11.835755246184673,2.8236841566564013,11.814359458703011,0.0,0.0,9.589074368143644,4.681802935145185,5.098681808301038,0.0,41.81303342854899,24.16967483065318,25.057406900125617,27.145197014050257,30.232619755012898,34.92054840145411,0.0,9.780484743446223,0.0,12.390817369679024,10.619626706576751,65.44682039037428,0.0,11.257379486545457,10.619626706576751,11.50524905251859,0.0,11.600939890232516,21.594844202149233,9.589074368143644,0.0,30.210678599891878,60.42418707663295,7.846317470397728,11.257379486545457,0.0,76.02,112.41462575782039,9.589074368143644,0.0,15.301429641721935,0.0,0.0,0.0,0.0,0.0,5.098681808301038,32.244485277101774,122.00290527547853,5.752028781758651,26.61950603228741,2.5465447240027688,-2.612225713466694,-4.915552668598302,-12.724606181434375,-3.7241558055835524,0.0,0.0,0.10526315789473684,26,2,6,0,1,1,2,1,3,4,2,7,3,0,0,0,4,3.725500000000002,100.02839999999999,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-353,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2cccc(OC)c2OC)nn1,0,13.618034893856276,-3.945472594902162,13.618034893856276,0.19561070956160265,0.7081831567393108,395.41899999999976,374.25100000000015,395.15935415200056,150,0,0.2327511300809093,-0.4928585178538606,0.4928585178538606,0.2327511300809093,1.2758620689655173,2.1724137931034484,3.0,2.27777086893833,1881.921731369364,38.480244994153296,34.86906113935524,13.869061139355242,22.364550627733497,17.841330196373335,7.3941166008733745,5.169166828128644,5.169166828128644,3.615438895101289,3.615438895101289,2.4876058966731707,2.4876058966731707,-3.62,11813412246.838423,6.186668546599952,7.419947119936232,3.1380735968493934,196.72379527406545,19.520402214688524,5.817862777835028,18.728728522731036,11.787168065786876,0.0,0.0,4.794537184071822,0.0,9.780484743446223,10.197363616602075,12.08483741532659,18.93672953262227,37.66075561477108,45.99840515787934,47.8321392472046,11.725042507186533,0.0,19.9778483600483,0.0,19.118774703988137,26.42367072993614,47.03292451655892,0.0,23.196874780838208,19.520402214688524,5.817862777835028,17.37901200300318,0.0,46.99888546604757,4.794537184071822,6.851892117295679,56.502884688339364,30.212093538316473,1.4118420783282006,5.817862777835028,0.0,100.39,122.18747388521956,6.165295740242042,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,20.032908378703162,36.92998055316248,182.86284805536891,0.0,13.618034893856276,10.301650949904744,-4.189264531589342,-12.097872156831032,-6.262589074271387,-3.945472594902162,-3.5624185881308463,-10.391583620071879,0.3,29,1,9,0,1,1,1,2,3,8,1,9,9,0,0,0,4,2.4706200000000003,105.07870000000004,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-318,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2ccc(OC)cc2)c2cccc(C)c21,0,14.987053242477739,-3.969545724153864,14.987053242477739,0.20829476620895293,0.6645604369130329,414.46499999999986,392.28900000000027,414.1691905640006,156,0,0.2427377317950641,-0.49676586628022473,0.49676586628022473,0.2427377317950641,1.4516129032258065,2.3225806451612905,3.096774193548387,2.06712395646737,2156.838728464228,40.61591948454487,37.01359925339142,15.013599253391423,23.931927972803322,19.252564558427515,8.305350962927557,6.144935532039727,6.144935532039727,4.604451272514989,4.604451272514989,3.393653819369718,3.393653819369718,-3.8699999999999988,74348049763.98473,6.562192730550329,6.8364534129348336,2.557451408143057,210.44973159824863,14.946586037938904,16.982365080515713,1.4118420783282006,11.814359458703011,0.0,0.0,9.589074368143644,4.681802935145185,5.098681808301038,6.531038962001867,24.17932786902545,42.148469931342845,25.287028858193416,46.51775711778802,44.52370907984654,23.319608511221602,0.0,9.780484743446223,0.0,18.639807488021837,23.744535227337387,77.74329134758624,0.0,11.436898107967467,14.946586037938904,11.50524905251859,5.749511833283905,0.0,35.12965634534777,15.004064837540422,6.851892117295679,51.849209055995026,61.05293687249526,1.4118420783282006,5.687386274683562,0.0,76.46000000000001,144.67441759799573,9.589074368143644,0.0,14.89152601928404,0.0,0.0,0.0,0.0,0.0,9.835544762101087,30.197771757902817,186.58371547063228,0.0,28.676640881170457,3.441499183778448,-10.00784254050238,-6.4361520136055015,-10.267826051802597,-5.293952296968175,-8.994252306391473,-3.2851636596444314,0.20833333333333334,31,1,7,0,2,2,2,1,3,5,1,7,6,0,0,0,5,3.350220000000002,117.87170000000003,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-280,COc1ccc(N2CC(C(=O)Nc3ccc4oc(=O)ccc4c3)CC2=O)c(OC)c1,0,13.904418441874247,-4.231721768182584,13.904418441874247,0.49325303167384726,0.6521967473637256,408.40999999999985,388.2500000000002,408.1321363600005,154,0,0.3356903459163388,-0.4966220229614862,0.4966220229614862,0.3356903459163388,1.2666666666666666,2.1333333333333333,2.966666666666667,2.020678920537199,2042.3225140383092,38.59097545816253,34.34391693378309,14.343916933783095,22.467661910435286,17.652364891337236,7.705151295837279,5.322551850800829,5.322551850800829,3.4993645311032915,3.4993645311032915,2.255262850014669,2.255262850014669,-3.8099999999999996,12564239868.505896,6.868124961642279,7.9019357860326425,3.7131345413461876,199.70256157710327,24.1005999287923,17.082043808210052,1.4118420783282006,11.814359458703011,0.0,5.625586319077987,9.589074368143644,4.794537184071822,0.0,0.0,0.0,36.25451224597977,40.140508158630944,47.58938577653537,50.9362058583595,34.15837636417717,0.0,0.0,5.893957685363079,6.372924901329379,30.782487686219977,58.75947316445617,0.0,11.49902366656781,25.309035310816938,11.374772549367124,11.49902366656781,0.0,32.38712406078413,9.589074368143644,5.893957685363079,32.41733746856355,57.55103778243153,1.4118420783282006,10.969244356107037,0.0,98.08,142.67170628404176,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.473725907600098,31.87340558261572,174.98483861261067,0.0,38.965270224299815,-1.4754719547658908,-5.195758351619779,-11.692691752153351,-10.177801376854514,-4.123446652695616,-4.162056582778763,-7.039548832709246,0.22727272727272727,30,1,8,0,1,1,2,1,3,6,1,8,7,0,1,1,4,2.801800000000001,111.11970000000004,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-364,COc1ccc(Cc2nnc(NC(=O)c3cc(=O)[nH]c4ccccc34)s2)cc1,0,13.413301302047277,-3.1441255788541307,13.413301302047277,0.018442687948750924,0.5434787708029474,392.4399999999998,376.3120000000001,392.09431137200045,140,0,0.25787784370064687,-0.4967682156327859,0.4967682156327859,0.25787784370064687,1.3571428571428572,2.1785714285714284,3.0,1.8404931136447542,1910.80103731257,33.37543250853871,29.421847543855286,14.238344124783012,20.144365278234023,15.16081284889138,8.08288223881919,4.878493765024326,5.8344646129933535,3.1244303169796392,3.857002150067225,2.005425162905234,2.623309231567552,-3.519999999999999,1855653665.6432498,7.1388544553894,7.612659733578054,3.7659730536139198,186.1719360685699,9.713866224029301,10.75713553013667,2.8236841566564013,10.69082537489134,5.907179729351506,0.0,14.898887721432018,0.0,0.0,10.197363616602075,41.54887941625121,23.69070761468688,26.059785653414174,29.05050662462222,31.545704080911342,33.27844901920663,0.0,15.174366886831328,0.0,6.372924901329379,12.347765812170964,80.87009912834026,0.0,5.749511833283905,15.605943202140432,5.131558479839333,5.749511833283905,11.336785877934737,28.11949907506542,6.372924901329379,0.0,40.119683650701674,59.17630555304147,2.8236841566564013,10.902924932081056,0.0,96.97,117.17761427903622,9.589074368143644,0.0,21.623602501452364,0.0,0.0,0.0,0.0,0.0,14.934226570402124,22.01430394303948,131.94555700949363,0.21810366276139992,25.992365293933158,4.968438679934476,-4.050682027975498,-2.4788482412625976,-8.641458320791015,-2.976017143906077,0.0,-3.1441255788541307,0.1,28,2,7,0,0,0,2,2,4,6,2,8,6,0,0,0,4,3.231300000000001,108.2309,0,0,0,0,0,3,1,0,0,0,1,1,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-346,COc1cccc(N2CC(C(=O)Nc3nnc(C(C)C)s3)CC2=O)c1,0,13.521386479765358,-4.039158399470902,13.521386479765358,0.11291868588752307,0.8860385076617637,360.43899999999974,340.2790000000001,360.1256115000005,132,0,0.23114157430747623,-0.496687607295824,0.496687607295824,0.23114157430747623,1.68,2.56,3.36,2.2143701414211194,1536.596257278125,35.2566303550217,31.921847543855286,12.738344124783012,19.92428059895256,16.187206051141402,7.056489036569169,4.2139039616492955,5.169874809618324,2.6124167958088496,3.4470507015124023,1.5966473270063954,2.1635003593607314,-2.4799999999999995,1042744888.8498178,5.261900225142863,7.182093681519357,3.78898147155524,177.7190099213108,14.946586037938904,10.75713553013667,1.4118420783282006,16.945917938542344,0.0,0.0,9.589074368143644,0.0,0.0,10.197363616602075,31.082988820189392,12.08483741532659,44.20113281505749,25.268737149777643,41.78219196750609,33.97009009116064,0.0,10.197363616602075,5.893957685363079,25.970666821283817,23.744535227337387,29.177298527505943,0.0,5.749511833283905,14.946586037938904,10.818944754522896,5.749511833283905,11.336785877934737,35.54653521850362,9.589074368143644,5.893957685363079,57.02270308537082,24.16967483065318,1.4118420783282006,0.0,0.0,84.41999999999999,108.26936457714956,9.589074368143644,0.0,16.236695608785215,0.0,0.0,0.0,0.0,0.0,14.934226570402124,27.456254645562378,162.2077480868588,-0.11291868588752307,26.483165530298695,3.9604989509766693,-1.3471052917774606,-13.035254261236773,-4.994352256135474,-3.9556388180272117,-11.093741262717675,-3.362401992352053,0.4117647058823529,25,1,7,0,1,1,1,1,2,6,1,8,8,0,1,1,3,2.6617000000000006,96.08170000000004,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-309,Cc1c(-c2ccccc2)nn2c1NC(=O)CC2C(=O)Nc1ccccc1Cl,0,13.863685272726576,-3.8431681468883854,13.863685272726576,0.052946428571428505,0.7197126576388017,380.83499999999975,363.69900000000007,380.10400346400047,136,0,0.24940999747670883,-0.32287330499318984,0.32287330499318984,0.24940999747670883,1.4444444444444444,2.185185185185185,2.962962962962963,2.1537338662154353,1733.0305831433027,33.75411216497907,29.983315435936788,13.739244381955242,19.970767554628413,15.506905302218247,7.490442584227559,4.929124752946466,5.307089225955693,3.281898590718374,3.5553962526958394,2.156339880133079,2.2930887111218112,-3.1199999999999997,1500484285.3240674,6.492517440039086,6.887162913011853,3.1945097199285297,184.69835096855445,10.619626706576751,11.835755246184673,2.8236841566564013,11.814359458703011,0.0,0.0,9.589074368143644,4.681802935145185,5.098681808301038,0.0,53.89787084387558,18.93672953262227,17.98069576424509,36.48445804630494,32.97413686735334,34.92054840145411,0.0,9.780484743446223,0.0,19.242709486974704,10.619626706576751,64.96785317440798,0.0,11.257379486545457,10.619626706576751,11.50524905251859,0.0,11.600939890232516,21.594844202149233,9.589074368143644,6.851892117295679,38.51564720392933,54.38176836896965,7.846317470397728,11.257379486545457,0.0,76.02,124.09736401243813,9.589074368143644,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,5.098681808301038,34.98600238944222,138.24112410984665,5.994409186485674,27.030832507662105,2.1423347010786404,-4.15232941202405,-5.324163779709414,-12.452800173111324,-3.8424143229822807,-3.4425483728015758,0.0,0.15,27,2,6,0,1,1,2,1,3,4,2,7,4,0,0,0,4,4.033920000000002,104.7654,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-330,CCOC(=O)Cc1csc(NC(=O)Cn2ccc3ccc(Cl)cc32)n1,0,13.148925703124837,-3.62957566911584,13.148925703124837,0.10066361310747052,0.6671280142488452,377.8529999999998,361.7250000000001,377.0600900520005,130,0,0.31138694817386336,-0.4656830774457483,0.4656830774457483,0.31138694817386336,1.56,2.44,3.28,2.0617774568014324,1583.308916370198,31.781574381404035,27.852598421364554,13.425023948310736,18.406331406521435,14.176188287646015,7.423435746083011,4.077252143402165,5.2286132785453665,2.493776018978135,3.3433178653023163,1.596596368725505,2.283466990084072,-2.3799999999999994,259573937.57752272,6.408024177683137,7.669708963639565,4.374036202365434,175.46626017765087,14.613775954879781,6.496859684315945,6.543400558167534,5.907179729351506,0.0,5.969305287951849,9.589074368143644,4.9839785209472085,0.0,11.336785877934737,17.643358597895812,30.36537245475036,28.922136432691044,32.333423700796324,36.299157742825194,50.848694197391,0.0,9.551078168738563,0.0,19.721676702941004,11.868798596204664,46.41524575972532,0.0,0.0,5.309813353288376,5.131558479839333,0.0,22.937725768167255,27.986548428958205,27.195721907589018,0.0,33.10719845469744,35.698684451135534,6.434475392069527,10.902924932081056,0.0,73.22,100.60687613480636,9.589074368143644,0.0,21.21369887901447,0.0,0.0,0.0,0.0,0.0,9.720841474747257,33.574160311114014,129.13138490561892,5.994893450443534,28.975741774564547,-3.20205917475036,-1.7787902728476732,-3.940104461243756,-2.992184776227276,-4.479269267344578,-10.598501067102239,0.0,0.23529411764705882,25,1,6,0,0,0,1,2,3,6,1,8,7,0,0,0,3,3.4955000000000016,98.02870000000003,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +MolPort-008-351-291,O=C(Nc1nc2ccccc2s1)[C@@H](c1ccccc1)n1cnnn1,0,13.623055240614761,-3.150386432350718,13.623055240614761,0.03336309523809522,0.6187367946513533,336.37999999999977,324.284,336.07933000400044,118,0,0.25525839608687173,-0.29975435386207183,0.29975435386207183,0.25525839608687173,1.25,2.0416666666666665,2.8333333333333335,1.9808333913520941,1499.4685239987198,26.850488482156383,23.499778153927476,12.3162747348552,16.74371837684313,12.224833615445608,7.094116600873375,4.130422198416346,5.10794300578225,2.697283798876189,3.5619675539276896,1.753315182541629,2.4967861384449592,-3.13,81721151.60536891,6.4040605564700295,6.167530049637507,2.7430334151509412,157.42967501707867,0.0,7.674130270136447,12.561293026517179,0.0,5.907179729351506,0.0,10.104350537360197,9.665781456092393,0.0,5.098681808301038,53.6337168315778,28.07505909833332,0.0,23.92420619578756,21.28472338027244,32.592144721210936,0.0,25.191233455703166,0.0,6.017892468349645,5.309813353288376,66.24859157463287,0.0,0.0,5.309813353288376,5.131558479839333,0.0,11.336785877934737,31.09841318505467,4.794537184071822,0.0,26.659688077919057,60.68514008293588,1.4118420783282006,10.216620634085363,0.0,85.59,83.30522225217338,4.794537184071822,0.0,20.20823692251892,11.336785877934737,0.0,0.0,0.0,0.0,20.50943052055798,16.49018619620062,97.01693698207727,0.5339550002099596,17.560423490383805,9.405100681712334,-1.1713390466889742,-1.6007945956160239,-9.774324982234468,-0.8866241965105603,0.0,0.0,0.0625,24,1,7,0,0,0,2,2,4,7,1,8,4,0,0,0,4,2.5108999999999995,90.64770000000003,0,0,0,0,0,5,0,0,0,0,1,1,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0 +MolPort-008-351-339,COCCN1C(=O)c2ccccc2C(C(=O)Nc2cc(Cl)ccc2O)C12CCCC2,0,15.08044509007306,-5.027013416477702,15.08044509007306,0.7895542800453517,0.6999226989283422,428.91599999999977,403.71600000000024,428.15028496000065,158,0,0.2932114452852189,-0.5057721931437659,0.5057721931437659,0.2932114452852189,1.5333333333333334,2.3333333333333335,3.1,2.459332853902649,1993.986005909123,43.15181786940711,39.405384825864594,15.161313771883052,24.411348685635428,20.183098837377987,8.205601424423396,5.575569644535339,5.9535341175445655,3.965665191764385,4.154647428268998,2.79243587371589,2.9291847047046224,-2.5699999999999994,78557381371.34402,6.236348503128526,8.281412353469905,3.4392582619828307,215.60397293390955,20.055394229046115,5.749511833283905,1.4118420783282006,5.907179729351506,7.33837938658414,0.0,9.589074368143644,0.0,0.0,0.0,42.474045815881155,42.47897612500893,36.45772395416884,42.86987424172938,52.3740343832942,29.102685623619088,1.4311996572326342,4.899909730850478,0.0,36.92458254306394,25.4036107394032,58.446467250778376,0.0,5.749511833283905,5.309813353288376,5.687386274683562,5.749511833283905,11.600939890232516,48.886999676391504,9.53140013787187,0.0,78.83454425006147,42.29693095364306,6.434475392069527,0.0,0.0,78.87,148.9258278307665,6.165295740242042,4.794537184071822,0.0,0.0,0.0,0.0,0.0,0.0,9.84567114490726,44.60066986153821,215.14687109158436,5.939070479322512,28.685158326143764,2.383234756814372,-10.162483343420693,-11.349207038952713,-9.88170062086509,-18.64160534091285,-9.440130679171993,-3.9847631860971324,0.391304347826087,30,2,6,1,1,2,2,0,2,4,2,7,7,1,0,1,4,4.182900000000004,115.04100000000003,0,0,0,0,0,0,0,1,0,0,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-325,Cc1nnc(NC(=O)C2CC(=O)N(Cc3ccc(Cl)cc3)C2)s1,0,13.215360795476233,-3.936598285147392,13.215360795476233,0.1747596502614568,0.9187714928570749,350.8309999999998,335.71100000000007,350.06042440000044,120,0,0.2311251317743791,-0.33753682095220433,0.33753682095220433,0.2311251317743791,1.6956521739130435,2.4782608695652173,3.1739130434782608,2.203837423127028,1319.230754686086,29.549523573835152,25.891563726400648,12.46398925334683,16.983846122941337,13.217939997182151,6.965187455619147,3.859896581431021,5.193831902409277,2.302114898463281,3.121606895439515,1.4017545313123425,1.9610366093030174,-1.9899999999999995,65398204.11291368,5.8227010152066105,6.636212339058761,3.8591794693142285,163.15399418905335,10.209723084138854,5.007623696852765,1.4118420783282006,16.945917938542344,0.0,0.0,9.589074368143644,0.0,0.0,10.197363616602075,35.022563183493844,24.500181024319264,32.61382892072391,16.860026134724837,30.19153623285492,39.8836437067096,0.0,15.097273347452553,5.893957685363079,19.721676702941004,11.80667303760432,39.763383332944265,0.0,0.0,5.309813353288376,5.131558479839333,0.0,22.937725768167255,33.40849249047151,16.08593405245959,12.745849802658757,36.13461987626223,24.16967483065318,6.434475392069527,0.0,0.0,75.19,93.72170507495713,9.589074368143644,0.0,16.646599231223114,0.0,0.0,0.0,0.0,0.0,10.197363616602075,32.20340175494379,119.91011110867032,5.886156646148192,25.806221149153295,4.085276773410843,-1.2261147693696393,-8.123032976050505,-4.165227492857778,-3.872843027385853,-10.439436300607802,0.0,0.3333333333333333,23,1,6,0,1,1,1,1,2,5,1,8,5,0,1,1,3,2.48712,88.25170000000004,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,1,0,0,0,1,0,0,0,0,0,0,2,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-276,COc1ccccc1NC(=O)c1nnn2c1[nH]c(=O)c1cc(Cl)ccc12,0,13.303282837826487,-3.2422311246130144,13.303282837826487,0.08434725896531425,0.5773803434555503,369.76799999999986,357.6720000000001,369.06286692400033,130,0,0.2797312102521598,-0.49457927662155776,0.49457927662155776,0.2797312102521598,1.4615384615384615,2.3076923076923075,3.1538461538461537,2.0184124210919605,1752.21214092049,28.590975458162536,24.338777321900608,13.094706267919063,17.506501492260377,12.615153592682109,7.098690874691421,4.699753689894355,5.077718162903582,3.1943985863181306,3.383380822822744,2.1101564638882895,2.2518931412667493,-3.3899999999999997,140253683.3424538,7.4645465252647885,6.1575953727701975,2.5628747890724703,167.8795346675253,15.023679577317678,5.749511833283905,14.16478937227259,0.0,11.466446624403513,0.0,9.589074368143644,0.0,4.5153978936156225,5.098681808301038,28.89916240121397,30.212093538316473,5.022633313741326,37.33584922734942,26.062669856230464,39.74560804711637,0.0,19.80446806780078,0.0,0.0,12.347765812170964,63.36729634135668,0.0,5.749511833283905,15.605943202140434,5.687386274683562,5.749511833283905,11.600939890232516,32.749600256034874,0.0,0.0,24.19605074062248,47.091468137714884,7.846317470397728,16.550102152848787,0.0,101.38,99.5048916063352,9.589074368143644,0.0,10.286816623517627,4.5153978936156225,0.0,0.0,0.0,0.0,15.048929857755954,28.13220960859111,99.46871051841369,5.86557897973658,26.299438154521575,5.910889967571879,-4.349245929260133,-2.580388648793531,-5.844974139799245,0.0,0.0,-3.2422311246130144,0.058823529411764705,26,2,8,0,0,0,2,2,4,6,2,9,4,0,0,0,4,2.4851,97.07089999999998,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,3,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,2,0,3,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-356,COC(=O)CCNC(=O)N1CCc2nc[nH]c2C1c1ccc(Cl)cc1F,0,15.738228186839109,-4.345543574682964,15.738228186839109,0.2020785987017497,0.7973255296774634,380.80699999999973,362.66300000000007,380.1051463360005,138,0,0.31776557579193915,-0.46894666744263364,0.46894666744263364,0.31776557579193915,1.8076923076923077,2.6538461538461537,3.4615384615384617,2.4601867641400736,1535.3175460394439,34.49711733102786,30.269528199409876,13.025457145428332,19.539193562711482,15.351349424686681,6.834886706695992,4.340305794275368,4.718270267284595,2.8484521993475704,3.037434435852184,1.8499155981022115,1.980121002068804,-2.6099999999999994,651443873.3788451,6.22815064608812,7.735912548109957,3.6455846236004756,179.4516806698764,19.923589308168154,13.20587186556576,2.8236841566564013,0.0,0.0,12.000419800289922,4.794537184071822,14.16893075269385,0.0,0.0,17.643358597895812,12.08483741532659,40.91879752476137,40.69741495706668,43.47217342499845,23.601359690522436,0.0,20.170704875315316,0.0,18.763742271008404,20.03167182751448,52.22178947313724,0.0,0.0,5.309813353288376,9.184952231746642,0.0,11.600939890232516,46.892983149831345,15.90432503920125,5.817220841045895,51.2742617497965,24.430627836956113,7.846317470397728,0.0,0.0,87.32,113.2273464560889,10.959832924313863,4.39041504767482,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.720841474747257,34.98600238944222,163.05446563411635,5.707528445141242,28.45745686017524,-2.1572481293406254,-4.314050354933065,-4.48722849652819,-10.526982318430331,-9.187425858017104,-8.452868428235497,-3.649202909503548,0.35294117647058826,26,2,7,0,1,1,1,1,2,4,2,9,5,0,0,0,3,2.4224000000000006,92.28240000000002,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,2,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-343,C[C@H](NC(=O)C1CC(=O)N(c2ccccc2)C1)C(=O)Nc1nc2ccccc2[nH]1,0,13.850673257518494,-4.452250370163884,13.850673257518494,0.022797990497634757,0.6187108436294046,391.4309999999997,370.2630000000001,391.16443953200064,148,0,0.2484633505661545,-0.34426630730988317,0.34426630730988317,0.2484633505661545,1.4137931034482758,2.1724137931034484,2.9655172413793105,1.90482400831419,1986.2410521302759,38.75411216497907,34.96081284889138,13.960812848891381,22.50345962507952,17.91368799744544,7.5720472109455645,5.129312075225281,5.129312075225281,3.2725894617756013,3.2725894617756013,2.0524526865514434,2.0524526865514434,-3.6799999999999993,17426321047.347034,6.156653425763129,7.746402108915003,3.959019202808193,196.53535075869044,15.186726354368107,6.017892468349645,4.235526234984602,23.669878469041013,0.0,0.0,19.693424905503843,4.9839785209472085,0.0,0.0,30.212093538316473,31.02156694794886,26.781722197350206,33.376461794638246,43.29279179826404,40.3906661789571,0.0,15.270795144464836,5.893957685363079,19.242709486974704,16.706582768454798,54.38176836896965,0.0,0.0,15.51953643742723,11.635725555670057,0.0,0.0,40.19727313189657,14.383611552215466,5.893957685363079,37.89847102968903,54.38176836896965,4.235526234984602,11.033401435232523,0.0,107.19,141.92549784200773,14.383611552215466,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,28.909180246048557,170.10643921172468,0.0,43.945129012909334,-1.843383896883037,-2.7923072474513218,-13.059735022021995,-13.855420676196722,-4.179290166351285,-8.404764549062996,0.0,0.23809523809523808,29,3,8,0,1,1,2,1,3,4,3,8,6,0,1,1,4,2.0591999999999997,109.23010000000001,0,0,0,0,0,2,1,0,0,0,3,3,0,0,0,2,3,0,0,0,0,1,0,0,0,0,0,3,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-313,O=C(CC[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NC1CCN(Cc2ccccc2)CC1,0,14.045714097311702,-4.965290858043217,14.045714097311702,0.8362664378908922,0.5655019643689481,478.54899999999975,448.3090000000003,478.2216200600009,184,0,0.32462243214645836,-0.4535954748876736,0.4535954748876736,0.32462243214645836,1.1714285714285715,1.9428571428571428,2.742857142857143,1.6280280051129459,2388.594692167529,50.88386867697599,46.830095834319145,16.830095834319145,28.74924154086088,24.059364185123226,9.16493699412331,6.12743946568098,6.12743946568098,3.858259373666037,3.858259373666037,2.4080025739166486,2.4080025739166486,-3.5899999999999994,7772927689090.196,6.789104263977101,10.350779911411605,5.56534289018443,246.17647020280472,20.09335261417685,8.759409580690086,14.322707823224212,12.652225313854704,5.907179729351506,6.031114512338072,19.388893829844598,4.794537184071822,0.0,0.0,36.25451224597977,42.330515102708716,51.07201620900998,22.94596235835858,65.06226118923819,17.845473971041084,0.0,20.41944616827771,0.0,50.52120391064869,19.73876495313509,59.46625264470035,0.0,11.49902366656781,20.09335261417685,4.794537184071822,11.49902366656781,0.0,59.419843322576405,22.582793736775535,0.0,74.9998421614777,48.33934966130636,2.8236841566564013,0.0,0.0,100.21,179.4901653143708,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.678649637022694,261.1947789802404,0.0,39.70353306152898,-2.5630829159386015,-3.1081589472121607,-7.715618379721659,-22.581833698185132,-19.46758891136307,-20.71202918934886,0.0,0.4230769230769231,35,2,9,0,3,3,2,0,2,6,2,9,8,0,2,2,5,2.3967,127.55240000000003,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-288,Cc1nn(-c2ncccn2)c2c1C(c1ccc(F)cc1Cl)SCC(=O)N2,0,14.391206845195999,-3.2694697184429344,14.391206845195999,0.14252976190476208,0.7253547396153724,389.8429999999998,376.73900000000003,389.0513369360003,132,0,0.25190353807512644,-0.30947806266036,0.30947806266036,0.25190353807512644,1.5769230769230769,2.3846153846153846,3.1538461538461537,2.2642490731535814,1514.869833126386,29.566031431780207,25.30849350444597,13.880919031392152,17.751466420911907,13.15001168395479,7.897259142391786,4.659399316631469,5.853860370568422,3.1122849807082615,4.284813270027803,2.121120644861479,3.182038683648648,-2.4499999999999993,159328495.4303776,7.655807911699413,6.6949620493510285,2.9491903240729114,175.6720273277809,5.309813353288376,11.635083618880923,1.4118420783282006,5.907179729351506,5.948339280986494,0.0,4.794537184071822,14.358372089569237,9.780484743446223,11.761884949391115,17.643358597895812,30.54259973198256,29.785668007918943,26.220184442374016,27.045896984117476,35.087867346810164,0.0,19.74844178534064,0.0,12.077881786479539,11.014770238438533,64.17615038531238,0.0,5.948339280986494,5.309813353288376,10.208277825509848,0.0,23.36282483962363,31.360578399842304,4.794537184071822,12.669112958341575,38.495923321468965,36.5154652522827,6.434475392069527,5.948339280986494,0.0,72.7,99.63237084511512,10.555710787916862,0.0,17.07169830267949,4.681802935145185,0.0,0.0,0.0,0.0,15.066638850195453,28.091126086433132,120.27902085146437,5.904444757071619,20.332232824939652,-0.30005218549388,-6.0958228746745595,-4.951841567124877,-4.223926324893794,-1.6468079850678157,-3.2694697184429344,0.0,0.17647058823529413,26,1,6,0,1,1,1,2,3,6,1,9,3,0,0,0,4,3.5379200000000015,98.23170000000003,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +MolPort-008-351-308,O=C(CCCCCn1c(=O)[nH]c2ccccc2c1=O)NCc1ccccn1,0,13.378548359983087,-4.713985365859692,13.378548359983087,0.42860646646728684,0.5957091253904752,366.4209999999997,344.2450000000001,366.16919056400064,140,0,0.3283302482625605,-0.35045093412442163,0.35045093412442163,0.3283302482625605,1.2222222222222223,2.037037037037037,2.925925925925926,2.2436591305327918,2022.0473084097985,38.522061357410195,35.01359925339142,13.013599253391423,21.810083952105447,17.769260806445523,6.874833615445607,4.346323500026886,4.346323500026886,2.675890075863921,2.675890075863921,1.6020673740907707,1.6020673740907707,-3.2199999999999993,5933948757.013355,5.405389565437095,8.93326701544019,4.905424860082173,186.65356483941517,10.286816623517627,0.0,2.8236841566564013,5.907179729351506,5.559266895052007,5.689743398203474,19.140152536882205,4.794537184071822,0.0,0.0,24.500181024319264,36.91552463331194,30.00874824582184,39.542815285288114,35.033392464132625,16.810104661432565,0.0,19.83789479225619,0.0,38.48541897394941,0.0,75.0018388207054,0.0,0.0,16.558823646543857,0.0,0.0,0.0,20.43526116831932,17.788256552703714,0.0,58.60079872357044,58.05890053260146,2.8236841566564013,10.902924932081056,0.0,96.85000000000001,135.56220435925277,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,30.238855280060797,175.71489131492604,0.0,42.42747206958671,-2.23399470172338,-6.646068191823637,-2.634879627524273,-7.789529646472715,-19.732811949335836,-8.271745934299565,0.0,0.3,27,2,7,0,0,0,1,2,3,5,2,7,8,0,0,0,3,1.9615999999999998,103.38040000000002,0,0,0,0,0,3,1,0,0,0,1,1,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-383,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)NCc2ccccc2)C1,0,14.089382590167656,-6.844631912625012,14.089382590167656,0.8506016949301269,0.6473271810916634,406.46399999999977,384.2880000000002,406.1310908040006,150,0,0.3254489227173072,-0.3517443156391912,0.3517443156391912,0.3254489227173072,1.5,2.25,2.9642857142857144,2.5252626237172295,2012.42203929421,39.66025403784439,35.23834412478301,14.054840705710737,21.993587371177725,17.71289926859582,8.311321810896587,4.635874575422072,6.359403917212358,2.853678425570333,4.4008463051931574,1.7227509988887797,2.8389081261889992,-2.7199999999999998,5979131263.188498,6.136673764547141,8.110277432352875,4.2280702169297335,192.48005799586227,10.286816623517627,0.0,9.131009710502378,15.930470882759089,5.559266895052008,5.689743398203474,14.566077638372896,13.212334168400758,4.305215991296234,0.0,30.212093538316473,25.161193411651432,41.63360972183896,15.489267578554617,43.49227297061956,15.930470882759089,0.0,19.569035885043114,5.893957685363079,30.99008507978816,12.99371936863189,62.307557686261056,0.0,0.0,16.558823646543857,0.0,0.0,0.0,41.577918614067066,21.314688021795348,12.745849802658757,50.04764185643843,44.696651381977894,4.235526234984602,0.0,0.0,132.2,138.09575221970277,22.8014085365444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.279938802218776,204.01601555250463,0.0,34.78710864932336,-1.1805771641377714,-8.280026585948894,-7.857913937179812,-6.400627895585176,-9.390994556881783,-17.84835214946954,-6.844631912625012,0.3888888888888889,28,3,9,0,1,1,1,1,2,5,3,10,6,0,1,1,3,0.08872000000000124,102.19190000000002,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,1,3,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +MolPort-008-351-296,NC(=O)C1CCN(C(=O)[C@H]2CC[C@H](Cn3c(=O)[nH]c4ccccc4c3=O)CC2)CC1,0,14.483220152744932,-5.201887823859779,14.483220152744932,0.5639484406549462,0.7847606133899556,412.4899999999997,384.26600000000025,412.21105537600073,160,0,0.3283401249623646,-0.36943637492211745,0.36943637492211745,0.3283401249623646,1.2,1.9,2.6,2.150890085783721,2223.921126050694,46.08290376865477,42.421847543855286,14.421847543855284,25.377561967393284,21.670598547177413,7.828957760677538,5.414672665560379,5.414672665560379,3.5482335289966103,3.5482335289966103,2.177645048688346,2.177645048688346,-2.8999999999999995,206027578226.2737,5.468875551381824,8.454944698968024,4.036071605560339,213.1190190630194,15.596629976806003,0.0,4.235526234984602,11.814359458703011,5.559266895052007,5.689743398203474,18.95071120000682,4.794537184071822,0.0,0.0,12.08483741532659,56.216344508665934,57.32290699090823,19.127476269102374,48.093564507383775,22.71728439078407,0.0,14.444012648871086,23.40159003181551,44.73440909229222,12.99371936863189,45.0077594920523,0.0,0.0,16.968727268981752,0.0,0.0,0.0,39.25209147620598,16.08593405245959,17.681873056089238,72.5065133122318,33.75874919879682,4.235526234984602,10.902924932081056,0.0,118.25999999999999,153.70970065630348,19.178148736287287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.50449013924011,233.456041741969,0.0,52.61033707622373,-1.4147658404019932,-6.986605201600926,-20.685329806784097,-4.976367320176372,-29.824854259729747,-14.511789722832905,0.0,0.5454545454545454,30,3,8,1,1,2,1,1,2,5,2,8,4,1,1,2,4,1.2200999999999993,112.77510000000007,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-378,COC(=O)CCCNC(=O)N1CCc2nc[nH]c2C1c1cc(F)ccc1F,0,15.703903996141916,-4.577056707713952,15.703903996141916,0.3091780710398031,0.6174021059723559,378.37899999999973,358.2190000000001,378.15034694000053,144,0,0.31775109085903014,-0.46899460111250635,0.46899460111250635,0.31775109085903014,1.7037037037037037,2.5555555555555554,3.3703703703703702,2.4389365674804497,1632.9528469289396,36.99711733102786,32.769528199409876,12.769528199409876,20.789193562711485,16.60134942468668,6.7069222336867655,4.465305794275368,4.465305794275368,2.9109521993475704,2.9109521993475704,1.889019574376112,1.889019574376112,-2.9699999999999993,2180978236.4883432,6.0153333143914445,8.15108661704325,4.069222878425654,182.48883296065318,19.923589308168154,19.023092706611653,2.8236841566564013,0.0,0.0,12.000419800289922,4.794537184071822,18.559345800368668,0.0,0.0,0.0,24.500181024319264,45.01060622468987,34.32449005573728,50.60410558501373,12.000419800289922,0.0,20.170704875315316,0.0,25.13666717233778,20.03167182751448,53.01637700044182,0.0,0.0,5.309813353288376,13.575367279421462,0.0,0.0,46.892983149831345,15.90432503920125,11.63444168209179,60.38870376346634,24.430627836956113,2.8236841566564013,0.0,0.0,87.32,120.39485888472288,13.979489415818463,4.39041504767482,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.720841474747257,27.497338167720358,193.02720402994055,0.0,28.224108780379066,-1.291420540438398,-4.846067724802757,-6.865136910604637,-12.053322100231425,-14.07097696439402,-8.828930093967752,-3.712125142547328,0.3888888888888889,27,2,7,0,1,1,1,1,2,4,2,9,6,0,0,0,3,2.2982000000000005,91.84740000000004,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,2,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-341,CC(C)CCN1C(=O)c2ccc(C(=O)Nc3nnc(C(C)C)s3)cc2C1=O,0,13.499437649535395,-4.443696618186608,13.499437649535395,0.032100503275405146,0.7665452979137968,386.47699999999975,364.30100000000016,386.14126156400056,142,0,0.2610678814551985,-0.2963869798335491,0.2963869798335491,0.2610678814551985,1.3333333333333333,2.111111111111111,2.8518518518518516,2.190975466532399,1695.6950940894026,38.62687384302478,34.921847543855286,13.738344124783012,21.585128648705794,17.733081905909472,7.6023648913372375,4.739263510459901,5.695234358428929,2.9783694535434035,3.8130033592469563,1.867626671180998,2.4344797035353327,-2.6099999999999994,5186830066.858367,5.69850586658539,7.55729625390918,3.899015790763629,192.30681202097654,0.0,5.007623696852765,1.4118420783282006,5.131558479839333,17.721539188054518,0.0,24.593334636354317,0.0,0.0,10.197363616602075,38.74435434711745,30.39413870968234,42.62792287244,15.23917865190465,44.581383310118305,34.189883545828586,0.0,15.097273347452553,5.893957685363079,39.67445105587517,11.80667303760432,39.82523429493364,0.0,0.0,5.309813353288376,5.131558479839333,0.0,11.336785877934737,39.315672219823014,0.0,5.893957685363079,104.54197045960893,18.127256122989884,1.4118420783282006,0.0,0.0,92.25999999999999,119.64351011923216,14.383611552215466,0.0,16.646599231223114,0.0,0.0,0.0,0.0,0.0,10.197363616602075,30.197771757902814,172.83292651163376,-0.032100503275405146,39.54680717922724,4.450207662058883,-3.9046051305112917,-13.51263033990616,-4.136642097489184,-4.443696618186608,-19.633599996884556,0.0,0.42105263157894735,27,1,7,0,1,1,1,1,2,6,1,8,10,0,0,0,3,3.555900000000002,103.21520000000004,0,0,0,0,0,2,0,0,0,0,3,3,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-312,Nc1nc(N2CCN(Cc3ccccc3Cl)CC2)c2nc[nH]c2n1,0,8.69092975770555,-3.9466626905391804,8.69092975770555,0.19644599815234765,0.7550848825232431,343.8219999999997,325.67800000000005,343.1312212560006,124,0,0.22361255604022104,-0.3676668592086316,0.3676668592086316,0.22361255604022104,1.375,2.2083333333333335,3.0416666666666665,2.0791604257433796,1549.586108722533,32.281574381404035,29.508459641508935,12.264388587527389,18.877692973058693,15.134724989254176,6.671048675763527,4.261853612879393,4.63981808588862,2.777475764440839,3.0609491191977596,1.7803422595880605,1.9170910905767928,-2.38,431952020.03454244,5.0606478871812755,6.256030203397837,2.87758689733815,169.48360880364055,15.596629976806003,1.3707585561702202,21.217266951203616,5.948339280986494,0.0,0.0,4.899909730850478,4.9839785209472085,9.967957041894417,0.0,29.7281960132224,11.60587019936029,45.73148307234239,17.269440163327985,24.796904577537898,34.53101988743803,0.0,24.82884856392135,0.0,6.496859684315945,36.607065443840526,41.059131350057726,0.0,0.0,10.619626706576751,11.766202058821523,0.0,11.600939890232516,50.81628730118514,6.496859684315945,0.0,26.124829834250292,30.473046544619407,9.258159548725928,11.16387793838399,0.0,86.96,101.37341949969345,0.0,0.0,15.596629976806003,0.0,0.0,0.0,0.0,0.0,14.951935562841626,36.39784446777042,149.13830776947506,6.038453259398655,10.550045372866943,-0.9877347289288123,-2.7849736635345295,-2.0091963244718194,-4.044876627212314,-0.852613569078007,-19.352967044070716,0.0,0.3125,24,3,7,0,1,1,1,2,3,6,2,8,4,0,1,1,4,1.9106999999999992,95.03810000000003,0,0,0,1,0,4,1,0,0,0,0,0,0,0,0,5,1,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-336,COc1cccc(C2CC(=O)Nc3c2c(C)nn3-c2ccc(Cl)nn2)c1OCC(C)C,0,13.803206304936777,-4.499855448458026,13.803206304936777,0.18649024418843152,0.6176893304815717,441.9189999999997,417.72700000000015,441.15676730800067,162,0,0.22599465448151068,-0.49285820225644666,0.49285820225644666,0.22599465448151068,1.5161290322580645,2.4193548387096775,3.225806451612903,2.3684531193814085,2060.0831406115694,42.77313821296676,38.83877732190061,15.594706267919063,24.430099215865987,19.872064142414082,8.302815019923353,5.529824206320307,5.887837293770624,3.6650435623311943,3.8351275751853464,2.5403331071483057,2.6253751135753816,-3.13,90112211622.20259,6.683475820327047,8.546790204675553,4.074041087745534,218.8583120007369,14.783539260888475,5.817862777835028,23.881838339623826,5.907179729351506,0.0,0.0,4.794537184071822,0.0,9.780484743446223,10.197363616602075,37.38956154015047,30.873105925648645,41.21364680029933,32.99845125834953,47.20755196191521,23.325982397419047,0.0,19.9778483600483,5.893957685363079,32.8225589385795,18.906751055087252,52.186034333451715,0.0,17.316886444402837,14.783539260888475,5.817862777835028,11.49902366656781,11.600939890232516,39.48196579119868,4.794537184071822,12.745849802658757,74.31894459144135,30.212093538316473,6.564951895220993,5.817862777835028,0.0,91.16,133.54141761078256,6.165295740242042,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.296045424903113,52.643196111905695,207.32827017768858,5.757081689406608,13.803206304936777,9.64162045017275,-4.668083637776098,-16.487907905846804,-6.523031655883946,-4.133299621546154,-16.50971711004065,-3.7636942466665895,0.36363636363636365,31,1,8,0,1,1,1,2,3,7,1,9,10,0,0,0,4,4.141620000000002,117.31770000000003,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-326,O=C(Cn1ccc2c(Cl)cccc21)Nc1nnc(C2CC2)s1,0,13.011986882716048,-3.306775596812801,13.011986882716048,0.07080168178382484,0.792744778721121,332.8159999999998,319.71200000000005,332.04985971600036,112,0,0.24563510684497736,-0.3380012105280927,0.3380012105280927,0.24563510684497736,1.6363636363636365,2.5,3.3181818181818183,1.7952963759412564,1405.961468997803,26.626873843024782,23.483315435936788,12.055740962882966,15.8678207191569,12.263815851950222,7.0110633103872155,4.0283508147725176,5.3622861357507725,2.6085875742601816,3.7266948347206545,1.614999062449494,2.46790855753468,-1.9199999999999997,28865329.726569477,5.615486551196898,5.370021821067251,2.5954122140349534,153.7936096290222,4.567099647791355,11.504483381168711,1.4118420783282006,11.03873820919084,0.0,0.0,10.104350537360197,0.0,0.0,10.197363616602075,28.98014447583055,30.873105925648645,34.84620392285133,9.59530989319154,22.655481936442662,44.87938890943915,0.0,14.76446326439343,0.0,25.136667172337784,5.309813353288376,40.372827052062036,0.0,0.0,5.309813353288376,5.131558479839333,0.0,22.937725768167255,20.671642993744936,11.291396868387768,0.0,40.09653385891726,30.34257004146794,6.434475392069527,10.902924932081056,0.0,59.81,82.06493315120693,4.794537184071822,0.0,10.696037567753171,15.903885525726093,0.0,0.0,0.0,0.0,10.197363616602075,29.46188464260335,103.88935037929474,6.354211452478924,13.011986882716048,4.974312216761376,-0.5692721605528239,-4.122515305781952,-2.8065246116671796,-6.146995478658572,-3.306775596812801,0.0,0.26666666666666666,22,1,5,1,0,1,1,2,3,5,1,7,4,1,0,1,4,3.662300000000002,87.46170000000002,0,0,0,0,0,3,0,0,0,0,1,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-286,O=C1Nc2ccccc2CCC1Sc1nc2ccccc2c(=O)[nH]1,0,13.449502859020352,-3.7150735255521967,13.449502859020352,0.06475187914672054,0.7051289251516588,337.40399999999977,322.28400000000005,337.0884977200004,120,0,0.25891249652532994,-0.3248615496858788,0.3248615496858788,0.25891249652532994,1.25,2.0416666666666665,2.9583333333333335,2.048776292233767,1676.90124992659,29.729168138596737,26.566385657891466,12.38288223881919,17.75051842811667,13.802564558427518,7.224633948355327,4.3566893246248455,5.33421013199075,2.8558832012883317,3.7018382170571993,1.8192782083065275,2.5023537582605586,-2.5999999999999996,149683001.27411762,5.736957922131464,6.126706884994732,2.8037975548118292,163.25008229930106,10.286816623517627,0.0,7.980120638477109,5.907179729351506,5.559266895052007,0.0,9.589074368143644,4.9839785209472085,0.0,0.0,41.97397848770759,36.43655741734564,11.170420499364441,28.465741606796893,25.438082570941077,34.25937588550724,0.0,9.960981791176462,0.0,23.128275953663326,5.309813353288376,64.25660523212719,0.0,0.0,10.869080248340381,5.687386274683562,0.0,11.761884949391115,21.094151189711823,11.167462085401201,0.0,29.75623762323923,58.290323327198884,2.8236841566564013,10.902924932081056,0.0,74.85,105.08783493783481,9.589074368143644,0.0,22.04870157290874,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,20.64354538686926,122.727429167218,-0.291806264172336,30.088792069864624,-5.403413915880097,-4.163832649399929,-1.838457682455698,-7.28491373327558,-7.250463658565661,0.0,0.0,0.16666666666666666,24,2,5,0,1,1,2,1,3,4,2,6,2,0,0,0,4,2.968700000000001,95.40140000000005,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,1,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +MolPort-008-351-385,O=C(C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)Nc1cccc(O)c1,0,13.540788729084634,-4.198547335817811,13.540788729084634,0.5914285726016368,0.6749750952807652,383.35999999999984,366.22400000000016,383.11173526400046,144,0,0.3246365247226288,-0.507886135439424,0.507886135439424,0.3246365247226288,1.4642857142857142,2.3214285714285716,3.1785714285714284,1.8271223388602733,1689.1217178297165,34.51362518897291,30.291130529283052,13.291130529283054,20.42720400368093,15.500916227569085,7.198240746105306,4.910743217662977,4.910743217662977,3.0888044519070577,3.0888044519070577,1.9633652606209322,1.9633652606209322,-3.7499999999999996,2201558331.9968514,6.69469979890836,7.104789552872188,3.5433060018955675,183.48416039349604,25.202160805284063,14.50892141397399,14.322707823224212,12.652225313854704,7.33837938658414,6.031114512338072,14.48898409899412,4.794537184071822,0.0,0.0,12.08483741532659,29.733126322350174,14.471322094687295,26.57737014734752,50.980449593962284,23.532860245724645,1.4311996572326342,10.209723084138854,0.0,18.88767705399497,12.054858937791572,47.86038244534006,0.0,17.248535499851716,20.09335261417685,10.481923458755384,17.248535499851716,0.0,42.04832960308425,16.08593405245959,0.0,31.12699617940945,42.29693095364306,2.8236841566564013,0.0,0.0,117.2,129.79403726684185,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.1088081911072125,32.91922950787221,145.46984923067723,0.0,39.30983917072883,2.683123730839393,-2.5582481193114828,-7.328882461032795,-14.13287167734468,-4.198547335817811,-6.744262538738682,0.0,0.21052631578947367,28,3,9,0,2,2,2,0,2,6,3,9,6,0,1,1,4,1.5700999999999996,96.78820000000002,0,0,0,0,0,0,0,1,0,0,3,3,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-317,COc1cc(C2SCC(=O)Nc3c2c(C)nn3-c2ncccn2)cc(OC)c1OC,0,13.427205468760304,-3.6128665852239,13.427205468760304,0.2517300009994814,0.6634716157752821,427.4859999999998,406.3180000000002,427.1314251520006,156,0,0.2519035380478902,-0.49270371474607316,0.49270371474607316,0.2519035380478902,1.3,2.033333333333333,2.7,2.3274603732002106,1839.5642994339078,39.18735177533985,35.277309429819105,15.093806010746833,22.804820656514437,17.996792082337155,8.366075067764921,5.1999934971659325,6.016490078093656,3.571762954106618,4.460817888669238,2.427245606266238,3.1564093319985704,-3.27,16535091751.799591,6.876204853258337,8.22865897991903,3.4287179087871418,206.87845173102596,19.520402214688524,5.817862777835028,12.910865744896011,11.65669156263541,5.948339280986494,0.0,4.794537184071822,9.967957041894417,9.780484743446223,11.761884949391115,0.0,30.54259973198256,24.763034694177616,58.30011026838359,47.8321392472046,23.48692745657765,0.0,19.74844178534064,0.0,12.077881786479539,32.1286276150863,47.293877522861855,0.0,23.196874780838208,19.520402214688524,5.817862777835028,17.248535499851716,11.761884949391115,52.47443577649007,4.794537184071822,6.851892117295679,49.46199177083075,30.473046544619407,1.4118420783282006,5.948339280986494,0.0,100.39,132.87437580855516,6.165295740242042,0.0,9.99161628843356,0.0,0.0,0.0,0.0,0.0,15.066638850195453,41.66684350696254,183.69404532303685,-0.4760130726673386,20.66065835751858,0.03987116253755785,-7.319978374065678,-8.438326276532568,-3.816778170362329,-1.874721152301663,-3.503154959068109,-10.798936171428664,0.3,30,1,9,0,1,1,1,2,3,9,1,10,9,0,0,0,4,2.7712200000000013,112.91970000000002,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +MolPort-008-351-283,COc1ccc(NC(=O)CCC(=O)N2CCc3[nH]c4ccc(F)cc4c3C2)cc1OC,0,14.873335163974636,-4.613607830803224,14.873335163974636,0.10569847892510031,0.6318504628870432,425.45999999999975,401.2680000000002,425.17508446800065,162,0,0.22439103867753013,-0.4928675351081664,0.4928675351081664,0.22439103867753013,1.3225806451612903,2.161290322580645,3.0,1.932985636988585,2144.0921671225497,42.883868676975986,38.852598421364554,14.852598421364554,24.439840464102375,19.873401883145974,7.978974692146056,5.49010398639224,5.49010398639224,3.611842972749957,3.611842972749957,2.3373330417926144,2.3373330417926144,-3.5499999999999994,87741421123.75444,6.477358483406567,8.670771053787004,4.327038834054762,212.51874133869381,24.660452261968203,5.817220841045895,14.322707823224212,11.814359458703011,0.0,0.0,9.589074368143644,4.39041504767482,0.0,0.0,0.0,30.212093538316473,76.96867192295512,33.26652470414825,56.43358771581985,28.404670665467634,0.0,9.87691300107973,0.0,25.61563438830408,25.8825779553695,53.32911257357112,0.0,11.49902366656781,14.783539260888475,10.077801322358383,11.49902366656781,0.0,42.26403706186386,22.45885895378897,5.817220841045895,54.1599175249491,36.25451224597977,2.8236841566564013,10.902924932081056,0.0,83.66000000000001,149.63092898013065,13.979489415818463,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.473725907600098,32.980372392401236,217.78395879912028,0.0,26.572273922160917,-1.95039565394268,-5.308636320793467,-9.967329776793957,-8.46702053089716,-13.022132653620428,-8.183637864546368,-7.04041325402055,0.30434782608695654,31,2,7,0,1,1,2,1,3,4,2,8,8,0,0,0,4,3.6278000000000024,114.78740000000002,0,0,0,0,0,1,1,0,0,0,2,2,0,0,0,1,2,0,0,0,0,1,0,0,0,0,0,2,0,1,0,0,0,0,2,0,3,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-373,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)NCCc2ccc(Cl)cc2Cl)C1,0,14.14947704901558,-6.899337626190597,14.14947704901558,0.842516906729786,0.5651486719192778,489.3809999999998,467.2050000000002,488.0687961640006,168,0,0.3254489227173072,-0.3554874830124377,0.3554874830124377,0.3254489227173072,1.5161290322580645,2.2903225806451615,3.032258064516129,2.4983350292701725,2125.9230416298315,42.16025403784439,36.49427307080146,16.8226275437661,23.243587371177725,18.340863741605048,9.695215229924269,5.138839048431301,7.61829733624004,3.1590045217636065,5.178627992647962,1.8932711898425592,3.388513255630687,-2.1399999999999997,20042973144.426365,8.01685877887019,9.55707574333154,5.37771320741385,219.45153256402224,10.286816623517627,0.0,9.131009710502378,15.930470882759089,5.559266895052008,5.689743398203474,14.566077638372896,13.212334168400758,4.305215991296234,0.0,29.24429848812833,43.618955728307405,57.16191057400252,10.00623335387374,43.49227297061956,39.13235066322412,0.0,19.569035885043114,5.893957685363079,30.866150296801596,19.490579052947837,60.267986898417114,0.0,0.0,16.558823646543857,0.0,0.0,23.20187978046503,48.07477829838301,21.190753238808785,12.745849802658757,50.04764185643843,32.611813966651304,14.280792862467255,0.0,0.0,132.2,142.4291063331882,22.8014085365444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.48181858268385,206.05297205454164,11.638651244028082,34.91412841622128,-3.3552776903223425,-8.270003832260505,-8.077179158443213,-3.5338239241456835,-13.628360964818285,-18.369546296388187,-6.899337626190597,0.42105263157894735,31,3,9,0,1,1,1,1,2,5,3,12,7,0,1,1,3,1.4380200000000003,117.0789,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,1,3,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +MolPort-008-351-363,O=C1Nc2ccccc2CCC1Sc1nnc(-c2ccncc2)n1Cc1ccccc1,0,14.008929123659462,-3.9112683585320687,14.008929123659462,0.20145182455698363,0.5099663568462495,427.53299999999984,406.36500000000024,427.1466812920006,154,0,0.23749674692771996,-0.32486154186922517,0.32486154186922517,0.23749674692771996,1.1612903225806452,1.935483870967742,2.774193548387097,1.8896334757822872,2172.302470584852,39.53013304691797,36.05256455842752,15.869061139355244,23.70974941913624,18.772047210945566,9.141330196373332,5.535553754591309,6.513074561957212,3.6238553269849474,4.551460000846587,2.3209303595423703,3.043569050551803,-3.4499999999999993,69476128532.24551,7.032426686197098,8.732747792175404,4.223878369576623,213.86502601977614,5.309813353288376,0.0,12.392683058148835,5.907179729351506,0.0,0.0,14.345615352810384,0.0,0.0,10.197363616602075,60.101234610697475,42.000008909042634,29.079662412690958,33.654986252223324,33.62155038580442,23.356450953426183,0.0,19.74844178534064,0.0,29.62513563797927,5.309813353288376,89.93929918931977,0.0,11.387855989696924,5.309813353288376,5.687386274683562,0.0,11.761884949391115,30.881611183876004,17.664321769717148,0.0,44.91499900812779,83.96883268774647,1.4118420783282006,11.387855989696924,0.0,72.70000000000002,154.30874177042213,6.165295740242042,0.0,9.87691300107973,0.0,0.0,0.0,0.0,0.0,15.181342137549283,27.456254645562378,177.6201919895718,-0.41241381120349385,17.422141065215385,2.275293775121513,-4.285148703629738,-2.9441286815971157,-11.522126055644344,-9.462922087590234,-3.524220823577111,0.0,0.16666666666666666,31,1,6,0,1,1,2,2,4,6,1,7,5,0,0,0,5,4.434000000000003,121.8347,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +MolPort-008-351-342,COc1ccc(-n2nc(C)c3c2NC(=O)CC3c2ccccc2C(F)(F)F)nn1,0,14.451045101745878,-5.744205892954318,14.451045101745878,0.11697467876039314,0.7242722096100093,403.36399999999975,387.23600000000005,403.1256094120005,150,0,0.41619695062773693,-0.47991827432189166,0.47991827432189166,0.41619695062773693,1.3793103448275863,2.206896551724138,2.9655172413793105,2.2620520370691,1756.0356960036593,34.5660314317802,29.6864579774552,13.686457977455197,20.20697266940366,15.341780324959446,7.394566729459489,5.304553461475484,5.304553461475484,3.5854662564196977,3.5854662564196977,2.4773580282262992,2.4773580282262992,-3.4299999999999993,1612203031.4870758,7.770621811925175,6.871302265121674,3.3016419005066626,185.60351640859477,10.046676307088426,5.817862777835028,7.229704856163229,11.787168065786876,0.0,6.176298517443475,4.794537184071822,0.0,22.95172988647068,10.197363616602075,18.127256122989884,24.500181024319264,32.09730412307407,30.632158950960022,44.67586570177785,11.725042507186533,0.0,19.9778483600483,0.0,25.29507322143161,12.347765812170964,58.63879471591921,0.0,11.6978511142704,10.046676307088426,18.98910792085949,5.879988336435371,0.0,32.92298054828239,10.970835701515297,6.851892117295679,55.21254339918525,36.25451224597977,1.4118420783282006,5.817862777835028,0.0,81.92999999999999,119.70452737097875,17.96578232709628,0.0,4.681802935145185,0.0,0.0,0.0,0.0,0.0,20.032908378703162,21.9732204208815,175.66672022903444,0.0,13.298735282808154,9.955004984827314,-7.126567837222738,-9.545559416159962,-8.571782143926145,-9.798472067788449,-3.604955081895019,-3.189790616344238,0.2631578947368421,29,1,7,0,1,1,1,2,3,6,1,10,5,0,0,0,4,3.472220000000002,96.97670000000004,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,3,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-340,Cc1ccc(Cn2ncc3c2NC(=O)CC32C(=O)Nc3c(Cl)cccc32)cc1,0,13.931914315848015,-3.624907223691947,13.931914315848015,0.0384919010573217,0.7006844151581259,392.84599999999983,375.71000000000015,392.10400346400047,140,0,0.23986798493283104,-0.32340464939288577,0.32340464939288577,0.23986798493283104,1.3214285714285714,2.142857142857143,2.9285714285714284,1.9519690574916841,1861.1931952950445,34.25411216497906,30.483315435936785,14.23924438195524,20.426109355889892,16.006905302218247,7.990442584227558,5.705517955196485,6.083482428205712,4.1192188163130705,4.392716478290535,2.9507052725193517,3.134699662634237,-3.119999999999999,2722535759.0607843,6.7401909837953395,5.938811546591733,2.3086833908657662,190.05746192942183,10.619626706576751,11.232853247231809,2.8236841566564013,11.814359458703011,0.0,0.0,9.589074368143644,4.681802935145185,5.098681808301038,0.0,53.41890362790928,24.021213808352964,18.790169173877473,37.0873600452578,32.97413686735334,34.92054840145411,0.0,9.780484743446223,0.0,25.136667172337784,10.619626706576751,75.74626544498713,0.0,0.0,10.619626706576751,11.50524905251859,0.0,11.600939890232516,21.594844202149233,21.50092452185637,6.851892117295679,49.1881092106707,48.46982616445783,7.846317470397728,0.0,0.0,76.02,124.20254112854653,9.589074368143644,0.0,15.301429641721935,0.0,0.0,0.0,0.0,0.0,5.098681808301038,34.98600238944222,141.03593299657865,6.1661024388980215,27.466850205442093,2.6107637900088143,-8.165358043495807,-4.6992254442270225,-7.524759251302829,-4.816138852145798,-6.629723395311685,0.0,0.19047619047619047,28,2,6,0,2,2,2,1,3,4,2,7,3,0,0,0,5,3.4736200000000013,106.6164,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-293,Cc1ccc(NC(=O)c2sc3c(c2C)C(c2ccsc2)CC(=O)N3)cc1,0,13.751323026895939,-3.530804227206124,13.751323026895939,0.06311528932560617,0.657813364694135,382.50999999999976,364.3660000000001,382.0809698160005,132,0,0.26558869778050553,-0.3212890846594153,0.3212890846594153,0.26558869778050553,1.4615384615384615,2.3076923076923075,3.0,2.0895943442300573,1712.5272699231186,33.80651840778636,30.52742035285537,14.160413514710822,19.843888462582072,15.763599253391423,8.502165224246957,4.850043724421201,6.461486926879777,3.2242376010846883,4.806177084562192,2.1638172907162536,3.5882647982281406,-2.4399999999999995,1230261639.2734685,6.038973340768223,6.700759681061956,3.0615845236969075,184.83849044009924,10.619626706576751,0.0,2.8236841566564013,5.907179729351506,5.907179729351506,0.0,9.589074368143644,0.0,11.336785877934737,11.336785877934737,17.648288907023584,59.233623652007424,30.291095866907998,19.473539063580702,34.34489542352356,45.17639946594391,0.0,0.0,0.0,25.970666821283817,10.619626706576751,68.05527551814095,0.0,0.0,10.619626706576751,10.688468251371429,0.0,22.673571755869474,11.814359458703011,4.794537184071822,13.703784234591359,66.12450982997711,40.92432235765167,2.8236841566564013,0.0,0.0,58.2,116.5287700494992,10.959832924313863,0.0,21.95641258451149,11.336785877934737,0.0,0.0,0.0,0.0,0.0,23.3850624992097,146.7897521749938,0.39361268657357873,25.826316640401267,-2.4705267119136582,-5.070024473429004,-6.667160537571932,-5.3629935620094775,-3.530804227206124,-6.5748386565051,0.0,0.2,26,2,4,0,1,1,1,2,3,4,2,6,5,0,0,0,4,5.152840000000004,107.59690000000002,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0 +MolPort-008-351-323,O=C(C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCCc1c[nH]cn1,0,13.55077389357309,-4.393091577125447,13.55077389357309,0.05027264240741802,0.5891183283120959,385.37999999999977,366.2280000000001,385.1386187080006,146,0,0.3246365230015839,-0.4535954748876736,0.4535954748876736,0.3246365230015839,1.5357142857142858,2.392857142857143,3.2142857142857144,1.779455979951499,1731.9512771662314,36.35892465059366,32.277309429819105,13.277309429819107,21.045012179624912,16.480184578373166,7.138543791873291,4.753832667931001,4.753832667931001,2.9919474776035746,2.9919474776035746,1.8541906778541848,1.8541906778541848,-3.56,4197158290.2792206,6.2263279821295185,7.588038049940549,3.7509998655977332,186.6299466465007,25.070355884406105,10.130168136860306,15.734549901552413,12.652225313854704,5.907179729351506,6.031114512338072,14.48898409899412,9.77851570501903,0.0,0.0,6.042418707663295,17.648288907023584,27.267231133481403,34.462394187651554,50.025000593523714,17.845473971041084,0.0,25.48051822860369,0.0,25.26060195532435,13.241905268819142,41.86090253431633,0.0,11.49902366656781,20.09335261417685,4.794537184071822,11.49902366656781,0.0,51.96616323023681,22.45885895378897,0.0,39.56244128659837,30.60352304777087,4.235526234984602,0.0,0.0,125.64999999999999,125.22744383349598,14.383611552215466,0.0,4.977003270229252,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,35.641389041308216,161.69317845982496,0.0,42.41667985690808,-1.916859417026438,-2.6393570513832882,-6.731382570131255,-10.005350486219516,-10.412331165810023,-10.904577626162528,0.0,0.3333333333333333,28,3,10,0,2,2,1,1,2,6,3,10,7,0,1,1,4,0.3077999999999999,95.35310000000001,0,0,0,0,0,2,1,0,0,0,3,3,0,0,0,2,3,0,0,0,0,1,0,0,0,0,0,4,0,0,1,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-294,O=C(CC[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCCC(c1ccccc1)c1ccccc1,0,14.023677802156286,-4.879079472966112,14.023677802156286,0.8073792131701412,0.41191018024116033,499.56699999999984,470.3350000000004,499.2107210280008,190,0,0.3246224321464502,-0.4535954748876736,0.4535954748876736,0.3246224321464502,1.162162162162162,1.837837837837838,2.5405405405405403,1.6790996391024244,2531.20497369368,51.27062002292412,46.88288223881919,17.88288223881919,29.558642617619387,24.13854379187329,9.744116600873374,6.469815673556056,6.469815673556056,4.187438980416102,4.187438980416102,2.634668054906056,2.634668054906056,-4.329999999999999,19300090089098.246,7.598208883614053,11.15831692273498,5.74369718043122,255.979765048837,20.09335261417685,8.759409580690086,14.322707823224212,12.652225313854704,5.907179729351506,6.031114512338072,14.48898409899412,4.794537184071822,0.0,0.0,66.46660578429623,41.521041693076334,31.10056927654038,28.42899658303946,63.69150263306797,17.845473971041084,0.0,15.51953643742723,0.0,37.52748454201681,13.241905268819142,95.24179767471384,0.0,11.49902366656781,20.09335261417685,4.794537184071822,11.49902366656781,0.0,42.005181439060344,16.08593405245959,0.0,78.71356788103816,78.55144319962284,2.8236841566564013,0.0,0.0,96.97,190.87522156058597,15.754370108385686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.93713252468225,253.64039850582458,0.0,40.73533993378875,-2.429582322760325,-4.813757754565207,-11.840531069865595,-24.90989212759453,-14.441950806158149,-11.940024358669497,0.0,0.27586206896551724,37,2,8,0,2,2,3,0,3,5,2,8,10,0,1,1,5,3.9543000000000035,137.0223999999999,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-290,Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)Nc2ccc(C(C)(C)C)cc2)C1,0,14.252445105689707,-6.955679887732657,14.252445105689707,0.8954631384836595,0.6550122923112591,448.54499999999973,420.32100000000025,448.1780409960008,168,0,0.3254489227173072,-0.3258132363732715,0.3258132363732715,0.3254489227173072,1.3548387096774193,2.064516129032258,2.7096774193548385,2.587684653067363,2274.4009344574947,47.16025403784439,42.73834412478301,15.554840705710737,25.71089530072662,21.46289926859582,9.061321810896587,5.497677974297062,7.221207316087347,3.2845801250078277,4.831748004630652,1.9610236218369088,3.0771807491371286,-2.7199999999999998,179529749118.14264,6.196251697600725,8.428303228632535,4.9611472260012635,220.00470734005893,10.286816623517627,0.0,9.131009710502378,15.930470882759089,5.559266895052008,5.689743398203474,14.566077638372896,13.212334168400758,4.305215991296234,0.0,32.64051376721363,42.6610212963748,53.16096331773858,11.376991910043959,51.7168243076409,21.61785715744265,0.0,14.259222531754737,5.893957685363079,50.46389221675603,18.303532721920263,56.265138978597754,0.0,0.0,16.558823646543857,5.687386274683562,0.0,0.0,41.577918614067066,20.232818806876185,12.745849802658757,78.82786954534676,38.6542326743146,4.235526234984602,0.0,0.0,132.2,157.2145269236909,22.8014085365444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.50449013924011,254.5834347543989,0.0,35.19051036101884,-1.1058648625504692,-14.96170985887939,-8.018452249727048,-7.640338395202732,-9.604418082251787,-26.737481779073676,-6.955679887732657,0.47619047619047616,31,3,9,0,1,1,1,1,2,5,3,10,5,0,1,1,3,1.7085199999999998,117.67490000000002,0,0,0,0,0,2,2,0,0,0,1,1,0,0,0,1,3,0,0,0,0,2,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +MolPort-008-351-321,C=CCN1C(=O)C2(CC(=O)Nc3c2cnn3-c2nc3ccccc3s2)c2cc(C)ccc21,0,14.915862090767842,-3.840213713788752,14.915862090767842,0.13166980295204578,0.4883866578058147,441.5159999999999,422.36400000000026,441.1259458480006,158,0,0.24272853711654416,-0.31018774854355763,0.31018774854355763,0.24272853711654416,1.46875,2.375,3.25,1.8372132207671712,2264.894687390434,38.400376534921044,34.46081284889138,16.277309429819105,23.30311945360164,18.199778153927475,9.569061139355242,6.539313116749771,7.5168339241156765,4.862313493967694,5.808646907111971,3.611209208912501,4.439886852329997,-3.7799999999999985,62176759845.24493,7.6676011911423885,6.606991607447678,2.408060694050759,214.29800853693496,10.209723084138854,11.232853247231809,1.4118420783282006,16.945917938542344,0.0,0.0,9.589074368143644,4.9839785209472085,9.780484743446223,6.531038962001867,47.121983946320476,30.54259973198256,30.974415132876977,34.20937707511298,35.67457045753581,44.8730150232417,0.0,14.76446326439343,0.0,18.639807488021837,16.706582768454798,77.74329134758625,0.0,5.131558479839333,10.209723084138854,11.50524905251859,0.0,11.336785877934737,33.07568240741239,15.004064837540422,6.851892117295679,47.736933387484356,61.05293687249526,1.4118420783282006,15.348179113924695,0.0,80.12,131.33112551098498,9.589074368143644,0.0,20.426343718224217,16.018588813079923,0.0,0.0,0.0,0.0,10.082660329248245,26.08549608939216,159.0657510390555,0.5320294628411499,32.862201870475,3.369386540345909,-8.485384585885386,-4.776993464588162,-7.8582544772528236,-4.966350072653286,-8.575719645671242,0.0,0.16666666666666666,32,1,7,0,2,2,2,2,4,6,1,8,4,0,0,0,6,3.9513200000000026,124.49770000000002,0,0,0,0,0,3,0,0,0,0,2,2,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +MolPort-008-351-344,COc1ccccc1CN1CC(C(=O)Nc2nnc(Cc3ccccc3)s2)CC1=O,0,13.755081019603024,-4.1978195517087205,13.755081019603024,0.009405048280668904,0.6324280817026372,422.5099999999998,400.33400000000023,422.14126156400056,154,0,0.23112513402469298,-0.4964063880268476,0.4964063880268476,0.23112513402469298,1.4,2.2,3.033333333333333,1.849789141625061,1988.4812996429114,40.22073197015946,36.421847543855286,15.238344124783012,23.343724015351796,18.687206051141402,8.55648903656917,5.1021005627743055,6.0580714107433336,3.194711697496365,3.927283530583952,1.9748565900849966,2.5927406587473145,-3.2599999999999993,38055716452.903046,6.617982879220222,9.04280245818629,4.65319806027604,209.2211030133139,14.946586037938904,10.75713553013667,1.4118420783282006,16.945917938542344,0.0,0.0,9.589074368143644,0.0,0.0,10.197363616602075,59.676135539241095,11.60587019936029,38.156813443838764,34.86404704296919,44.52370907984653,28.28270381647708,0.0,15.097273347452553,5.893957685363079,19.242709486974704,18.84462549648691,70.51629504921641,0.0,5.749511833283905,10.046676307088426,5.131558479839333,5.749511833283905,11.336785877934737,40.446444949354095,22.45885895378897,5.893957685363079,51.2933812611508,54.38176836896965,1.4118420783282006,0.0,0.0,84.41999999999999,142.09292722071785,9.589074368143644,0.0,11.336785877934737,0.0,0.0,0.0,0.0,0.0,14.934226570402124,30.197771757902814,183.58544533202587,0.009405048280668904,26.606401253267492,4.544521597538597,-2.445001204778666,-10.19249349717446,-9.705818956636875,-7.16505561047755,-8.214961836391106,-3.5224421256539946,0.2727272727272727,30,1,7,0,1,1,2,1,3,6,1,8,8,0,1,1,4,3.1247000000000016,114.30470000000003,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,1,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-360,Cc1cccc(NC(=O)CCCCCn2c(=O)[nH]c3ccccc3c2=O)n1,0,13.383216124104209,-4.680670482699254,13.383216124104209,0.4214932511627314,0.6282126456478735,366.4209999999997,344.2450000000001,366.1691905640006,140,0,0.3283302482625605,-0.3106998863275886,0.3283302482625605,0.3106998863275886,1.2962962962962963,2.1481481481481484,3.0,2.267279646575881,2016.537533405472,38.52206135741019,35.01359925339142,13.01359925339142,21.777391881654342,17.769260806445523,6.874833615445606,4.446323500026886,4.446323500026886,2.725890075863922,2.725890075863922,1.6724797886139635,1.6724797886139635,-3.2199999999999998,5498687312.20587,5.405389565437095,8.440900834582871,4.69346117326374,186.65356483941514,10.286816623517627,5.817862777835028,2.8236841566564013,5.907179729351506,5.559266895052007,5.689743398203474,14.156174015934997,9.77851570501903,0.0,0.0,24.500181024319264,43.767416750607616,33.642056698366204,23.239751937613033,35.033392464132625,22.627967439267593,0.0,14.528081438967813,0.0,38.84045140692914,5.309813353288376,68.82894360989066,0.0,0.0,16.558823646543857,5.817862777835028,0.0,0.0,20.43526116831932,11.291396868387768,6.851892117295679,58.60079872357044,51.886005321786705,2.8236841566564013,10.902924932081056,0.0,96.85000000000001,135.56220435925275,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9839785209472085,30.238855280060797,174.97391313832478,0.0,42.527930480192204,-1.9775310035810472,-6.487883767756656,-3.931744672053581,-8.102960998598238,-18.43125165712648,-7.73713818606764,0.0,0.3,27,2,7,0,0,0,1,2,3,5,2,7,8,0,0,0,3,2.592320000000001,104.90040000000003,0,0,0,0,0,3,1,0,0,0,1,1,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-305,CC(C)(C)n1ncc2c1NC(=O)CC21C(=O)N(Cc2ccccc2)c2ccccc21,0,15.196069735764672,-4.288415091622218,15.196069735764672,0.24613012566137593,0.7112540081088434,400.48199999999974,376.2900000000002,400.18992600800067,152,0,0.2427484098837589,-0.31056961472515676,0.31056961472515676,0.2427484098837589,1.2,1.9333333333333333,2.7,2.1070156167160854,2119.297277562447,41.75411216497907,38.60535096292756,14.605350962927558,24.176109355889892,20.094316267963656,8.147102672463696,6.200552713066818,6.200552713066818,4.394425427845564,4.394425427845564,3.232390897035007,3.232390897035007,-3.409999999999999,89465924861.36404,5.8429574072485115,6.29215086150475,2.526834539438836,208.83573040126169,10.209723084138854,11.232853247231809,1.4118420783282006,11.814359458703011,0.0,0.0,9.589074368143644,4.681802935145185,5.098681808301038,0.0,48.33934966130636,37.72499804294432,32.70210678558235,34.657782821556694,42.52836323838692,23.3196085112216,0.0,9.780484743446223,0.0,44.379376659312484,10.209723084138854,77.24501805487542,0.0,0.0,10.209723084138854,11.50524905251859,0.0,0.0,21.594844202149233,27.039849774239713,0.0,75.14640252022247,60.55466357978442,1.4118420783282006,0.0,0.0,67.23,154.9356195138431,4.794537184071822,4.794537184071822,4.899909730850478,0.0,0.0,0.0,0.0,0.0,5.098681808301038,32.93928887024326,201.23595157266814,0.0,28.97528568014543,2.900986073543792,-13.676818815089977,-6.047823386062924,-11.119039818270656,-5.693912703466503,-16.49129527013399,0.0,0.2916666666666667,30,1,6,0,2,2,2,1,3,4,1,6,2,0,0,0,5,3.813200000000003,115.32370000000002,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-376,Cc1nn(-c2ccc(=O)[nH]n2)c2c1C(c1ccc(C(F)(F)F)cc1)CC(=O)N2,0,13.605647043081223,-5.462020571402597,13.605647043081223,0.1585870181405893,0.7049862553006271,389.3369999999998,375.2250000000001,389.1099593480004,144,0,0.4159098427409937,-0.31024725772699224,0.4159098427409937,0.31024725772699224,1.3214285714285714,2.0714285714285716,2.75,2.3028319861739797,1722.4786422461923,32.229168138596734,27.1864579774552,13.186457977455198,18.933204860059114,14.084869775227475,7.190442584227557,5.202491388859517,5.202491388859517,3.4262916736529516,3.4262916736529516,2.2980617568598847,2.2980617568598847,-3.429999999999999,494806391.1738974,7.89885738261335,6.324811414933083,3.06112737534423,175.5346667966377,5.309813353288376,5.817862777835028,8.64154693449143,5.907179729351506,5.559266895052007,6.176298517443475,9.589074368143644,5.091706557583081,28.050411694771725,0.0,12.08483741532659,30.54259973198256,32.09730412307407,19.481930823566774,37.238569157795325,11.725042507186533,0.0,19.97087310933034,0.0,25.29507322143161,5.309813353288376,68.99259879504305,0.0,5.817862777835028,10.869080248340381,18.98910792085949,0.0,0.0,25.878052838681846,10.970835701515297,6.851892117295679,51.10026773067458,41.04904943005159,2.8236841566564013,5.817862777835028,0.0,92.67,107.0360401174244,22.760319511168102,0.0,15.083322846016642,0.0,0.0,0.0,0.0,0.0,10.197363616602075,19.27278683069904,154.5369221302834,0.0,25.101447711521736,6.430178271296752,-7.6759582005881555,-8.003136180072733,-9.215208314309542,-9.331208680288126,-3.5097034045099536,0.0,0.2222222222222222,28,2,7,0,1,1,1,2,3,5,2,10,3,0,0,0,4,2.75692,93.25040000000001,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,3,2,0,0,0,0,1,0,0,0,3,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-328,Cc1ccc(N2CCN(C(=O)CC[C@@H]3NC(=O)c4ccccc4NC3=O)CC2)c(C)c1,0,14.236032709507635,-4.930925584740072,14.236032709507635,0.6813840692101496,0.7963350935762953,420.5129999999997,392.2890000000002,420.21614075600075,162,0,0.25354141408275027,-0.3677672592612631,0.3677672592612631,0.25354141408275027,1.2580645161290323,2.064516129032258,2.838709677419355,2.020269594971962,2155.0592252407646,46.469655114602894,43.01359925339142,15.01359925339142,26.02627944162883,21.9928676041955,8.098440413195586,5.55291887297526,5.55291887297526,3.565294560088086,3.565294560088086,2.1908668483259253,2.1908668483259253,-3.349999999999999,357889144792.2564,5.7089143771226585,8.794861928474424,4.551034885673555,221.41538566819133,20.41944616827771,6.017892468349645,2.8236841566564013,11.814359458703011,5.907179729351506,0.0,14.383611552215466,0.0,0.0,0.0,29.733126322350174,43.767416750607616,51.755335474978956,33.18297466510408,52.84701816929762,29.09631173742164,0.0,10.209723084138854,0.0,32.46752650559976,36.19716182140263,58.98728542873405,0.0,0.0,15.51953643742723,11.374772549367124,0.0,0.0,54.62678012451841,9.589074368143644,13.703784234591359,69.87046392224734,42.29693095364306,2.8236841566564013,0.0,0.0,81.75,166.95800857729697,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.46340661708213,232.82657627366515,0.0,39.50294880849286,-1.6952206144474813,-7.667563422318561,-7.6867561128064645,-14.508280503833296,-9.80420249115792,-25.717501937594328,0.0,0.375,31,2,7,0,2,2,2,0,2,4,2,7,6,0,1,1,4,2.48294,120.26890000000006,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-301,O=C1CC2(C(=O)Nc3c(Cl)cccc32)c2cnn(-c3ccc(C(F)(F)F)cc3)c2N1,0,13.814412457999213,-5.341296860852708,13.814412457999213,0.04936796892514783,0.6069408194848337,432.78899999999993,420.69300000000015,432.0600879640004,152,0,0.41591208584143086,-0.323404647784125,0.41591208584143086,0.323404647784125,1.1666666666666667,1.9,2.6,2.0012769065835356,1770.255354470408,31.75411216497907,26.117208854964467,14.87313780098292,19.182092420033598,13.823852011732086,8.307389293741398,6.065080423114108,6.443044896123335,4.383593870507487,4.657091532484952,3.1078927996165593,3.2918871897314452,-3.3299999999999987,829432296.7251544,9.652270122696466,6.085024891050413,2.478981939174393,189.16427352296486,10.619626706576751,11.232853247231809,2.8236841566564013,11.814359458703011,0.0,6.176298517443475,9.589074368143644,4.681802935145185,18.269926951325495,0.0,23.685777305559107,35.77554503001347,14.677893505366814,39.099821014981984,39.291589229526714,34.92054840145411,0.0,9.780484743446223,0.0,17.964213888169635,10.619626706576751,70.18281395329015,0.0,5.687386274683562,10.619626706576751,24.67649419554305,0.0,11.600939890232516,21.594844202149233,21.180363354983896,0.0,36.77086493812257,48.46982616445783,7.846317470397728,5.687386274683562,0.0,76.02,117.15402262736494,22.760319511168106,0.0,15.301429641721935,0.0,0.0,0.0,0.0,0.0,5.098681808301038,28.13220960859111,139.7788001139649,6.1222283562563184,27.211827486887003,2.5994264623896273,-8.98355863292188,-4.622378786837661,-8.791746383029995,-10.12015417226391,0.0,0.0,0.15,30,2,6,0,2,2,2,1,3,4,2,10,1,0,0,0,5,4.124900000000002,102.67440000000002,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,2,2,0,0,0,0,0,0,0,0,3,0,2,0,2,0,0,0,0,2,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-369,COCc1nnc(NC(=O)Cc2c(C)c3ccc(OC)cc3oc2=O)s1,0,13.170118109086811,-3.77283777399849,13.170118109086811,0.08371112603205,0.6592895088589253,375.4059999999998,358.2700000000001,375.08889164400046,136,0,0.33974910521954554,-0.4966236123496995,0.4966236123496995,0.33974910521954554,1.5,2.423076923076923,3.230769230769231,2.24414022953506,1642.5737210113161,33.24819418658443,29.291130529283052,13.107627110210778,19.203867025210535,14.83288223881919,7.202165224246958,4.2856988456359675,5.2416696936049965,2.7378966458393834,3.451739739644338,1.7281395750596609,2.2762638681313634,-2.78,476719423.9014384,6.431523586384373,7.626722096178303,3.731240734219508,176.25529614619455,19.20069019794182,22.899140914695202,1.4118420783282006,11.03873820919084,0.0,5.625586319077987,4.794537184071822,4.794537184071822,0.0,10.197363616602075,11.336785877934737,24.500181024319264,25.320388161861775,34.05267296978138,42.029393005777,33.34476844323262,0.0,10.197363616602075,0.0,19.783802261541346,19.385718271053552,44.68190630638645,0.0,5.749511833283905,15.672262626166413,5.131558479839333,5.749511833283905,11.336785877934737,30.18044826371876,22.46331028211754,6.851892117295679,38.066663578970285,27.33894424411505,1.4118420783282006,10.969244356107037,0.0,103.55000000000001,101.5045707002029,9.589074368143644,0.0,16.646599231223114,0.0,0.0,0.0,0.0,0.0,19.671089524202173,27.761129914105066,144.90041247859432,0.08371112603205,26.217670610694544,3.626533312408358,-5.8373147364620825,-3.0773602227402073,-3.4252866662701953,-3.77283777399849,-6.642710326063188,-6.489484468861758,0.29411764705882354,26,1,8,0,0,0,1,2,3,8,1,9,9,0,0,0,3,2.2891200000000005,96.72870000000006,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-374,COC(=O)CCNC(=O)N1CCc2nc[nH]c2C1c1ccc(F)c(F)c1F,0,15.395172631283554,-4.421469500608889,15.395172631283554,0.3240669773865572,0.6259418695583993,382.34199999999976,365.2060000000001,382.12527506400045,144,0,0.3177655897342599,-0.46894666744263364,0.46894666744263364,0.3177655897342599,1.6296296296296295,2.4444444444444446,3.2222222222222223,2.4601867641400745,1536.1344402619861,34.49711733102786,29.647492672419105,12.647492672419103,19.539193562711482,15.040331661191296,6.645904470191378,4.529288030779982,4.529288030779982,3.0143718890284488,3.0143718890284488,1.9207839367914419,1.9207839367914419,-3.039999999999999,651443873.3788451,6.843874480266604,7.683943233462989,3.596321318717427,176.07451474867938,19.923589308168154,7.3886510245198656,20.275346679794083,0.0,0.0,12.000419800289922,4.794537184071822,22.94976084804349,0.0,0.0,6.042418707663295,6.042418707663295,35.89616421102003,39.326656400896454,50.882244964177886,12.000419800289922,0.0,20.170704875315316,0.0,18.763742271008404,20.03167182751448,52.791179133824414,0.0,0.0,5.309813353288376,17.96578232709628,0.0,0.0,46.892983149831345,15.90432503920125,17.451662523137685,49.90350319362628,18.388209129292818,2.8236841566564013,0.0,0.0,87.32,113.79673611677606,18.369904463493285,4.39041504767482,4.977003270229252,0.0,0.0,0.0,0.0,0.0,9.720841474747257,23.3850624992097,181.827743279856,0.0,27.939153610727555,-1.2447982804232804,-4.941792701871841,-10.011951431584578,-10.45810536840448,-9.439337383485027,-8.650782732846231,-3.686795658634759,0.35294117647058826,27,2,7,0,1,1,1,1,2,4,2,10,5,0,0,0,3,2.0471999999999997,87.18840000000003,0,0,0,0,0,2,1,0,0,0,2,2,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,3,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-327,COCc1nnc(NC(=O)c2ccc3nc(-n4cccc4)sc3c2)s1,0,13.111831340573673,-3.118896516967273,13.111831340573673,0.09381984831479762,0.581786630394166,371.44699999999983,358.3430000000001,371.05106665600044,126,0,0.25704007190260114,-0.3774328611106777,0.3774328611106777,0.25704007190260114,1.44,2.32,3.16,1.7633095522360613,1569.5292704751046,28.480244994153303,24.869061139355242,13.502054301210695,17.457920662198898,12.83854379187329,8.024323358228784,4.244056526057778,6.177548181392709,2.7132306249658944,4.383044566739879,1.7269845332027292,3.1236301117782816,-2.619999999999999,145658828.95099717,6.944892747194142,6.709507933634374,3.2931618460157477,168.79694101380545,9.303962601591405,11.566608939769054,6.543400558167534,5.131558479839333,5.907179729351506,0.0,10.104350537360197,4.9839785209472085,0.0,10.197363616602075,22.673571755869474,30.212093538316473,24.947194372209108,26.665723308127998,27.392344890242704,43.92893059914567,0.0,19.74844178534064,0.0,6.558985242916289,12.347765812170964,53.12895914849575,0.0,5.131558479839333,5.309813353288376,5.131558479839333,0.0,22.673571755869474,32.69357397357473,11.295848196716339,0.0,31.81471504666422,42.557883959946,1.4118420783282006,15.348179113924695,0.0,81.93,77.76463505948547,4.794537184071822,0.0,20.65799246721307,22.673571755869474,4.567099647791355,0.0,0.0,0.0,19.918205091349332,17.86094475237084,106.31965922595494,1.0048752799775726,17.20884536719365,5.770604016618662,-0.8980404582832009,-1.295773009049299,-3.0189468871083767,-1.0439708770707625,-2.9283561412659047,-3.118896516967273,0.125,25,1,7,0,0,0,1,3,4,8,1,9,6,0,0,0,4,3.337200000000002,97.52220000000003,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +MolPort-008-351-379,COc1ccc(Cc2nnc(NC(=O)C3CC(=O)N(c4ccc(F)cc4)C3)s2)cc1,0,14.176907228096347,-3.997154499974668,14.176907228096347,0.012573017677634635,0.6540696761712197,426.4729999999998,407.32100000000014,426.11618968800053,154,0,0.23114157429530538,-0.4967682156327859,0.4967682156327859,0.23114157429530538,1.4333333333333333,2.2,2.933333333333333,1.7937844591851582,1862.5034064825813,37.72073197015946,33.299812016864514,15.116308597792239,22.099707079495502,17.126188287646016,8.495471273073782,5.152886198153909,6.108857046122935,3.224975178315678,3.957547011403263,1.9899883304946522,2.6078723991569706,-3.329999999999999,11972976576.726572,7.419114276196383,8.580624201109789,4.459880505580098,202.80678480134011,14.946586037938904,16.574356371182567,1.4118420783282006,16.945917938542344,0.0,0.0,9.589074368143644,4.39041504767482,0.0,10.197363616602075,23.421623293261327,41.81796373767676,31.783888542509363,30.75177137445852,44.8018484590107,33.97009009116064,0.0,10.197363616602075,5.893957685363079,12.745849802658759,23.744535227337387,64.72764569090201,0.0,5.749511833283905,14.946586037938904,15.209359802197715,5.749511833283905,11.336785877934737,35.54653521850362,15.961999269473022,11.711178526408974,41.61765410094312,48.33934966130636,1.4118420783282006,0.0,0.0,84.42,130.59489472192064,13.979489415818463,0.0,16.236695608785215,0.0,0.0,0.0,0.0,0.0,14.934226570402124,26.08549608939216,171.42425733818828,0.012573017677634635,26.48888701274724,4.59884908121059,-2.3174404221893523,-10.948637391939933,-9.850086634387461,-7.041531876405771,-3.914439843809779,-3.202430281091435,0.23809523809523808,30,1,7,0,1,1,2,1,3,6,1,9,7,0,1,1,4,3.268200000000002,111.19870000000002,0,0,0,0,0,2,0,0,0,0,2,2,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-329,Cc1cc(C)nc(N2CCN(c3ncnc4[nH]cnc34)CC2)n1,0,8.641620134164777,-3.781294170445957,8.641620134164777,0.12580428004535138,0.7577268037154814,310.36499999999967,292.221,310.16544257600054,118,0,0.22538375414509892,-0.35110432241031975,0.35110432241031975,0.22538375414509892,1.1304347826086956,1.8695652173913044,2.608695652173913,2.0717007657029383,1478.4843082007737,31.463737136208252,29.077708763999667,11.077708763999665,18.29060145563268,14.972135954999581,6.024922359499624,4.106888370749728,4.106888370749728,2.6725424859373677,2.6725424859373677,1.7366930856687075,1.7366930856687075,-2.7700000000000005,225917782.1311562,4.400760984283372,5.454297510038682,2.5592572837550507,158.5285766915591,14.776822731930208,14.561589543922928,12.876882076930956,5.948339280986494,0.0,0.0,0.0,24.91989260473604,0.0,0.0,0.0,19.746202942254655,45.599846063982035,18.640198719498205,24.714737533221935,22.93007999720551,0.0,29.896895874965296,0.0,13.703784234591359,35.787258198964736,30.037018125292676,0.0,0.0,9.799819461700956,11.766202058821523,0.0,0.0,55.884334612229075,0.0,13.703784234591359,34.69075144459066,18.64916213559575,1.4118420783282006,11.16387793838399,0.0,86.72000000000001,92.65832109435334,0.0,0.0,9.799819461700956,4.977003270229252,0.0,0.0,0.0,0.0,24.91989260473604,24.714737533221935,146.3398617193988,0.0,17.73134159291984,0.0,-3.6756178010434857,-2.36645261190896,-1.1777218340960858,-1.7358700545737813,-21.615541010696347,0.0,0.4,23,1,8,0,1,1,0,3,3,7,1,8,4,0,1,1,4,1.0863399999999999,87.61570000000003,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,7,1,0,0,0,0,1,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-352,O=C(CC[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCCCN1CCCC1=O,0,13.76392308952941,-4.821880280572339,13.76392308952941,0.8092496954046351,0.4409666737797761,430.46099999999973,404.2530000000002,430.18523455200074,166,0,0.3246224321464502,-0.4535954748876736,0.4535954748876736,0.3246224321464502,1.4193548387096775,2.2580645161290325,3.064516129032258,1.7769698664290328,1973.053173205321,44.997117331027866,40.73834412478301,14.73834412478301,24.984498662840892,20.76348833035516,7.869061139355243,5.208985232339484,5.208985232339484,3.2703724045790636,3.2703724045790636,1.982384766987537,1.982384766987537,-3.3000000000000003,168402122102.86038,6.142372833907223,9.23452654619336,4.892755812800927,216.02595821050977,24.99326234502733,8.759409580690086,14.322707823224212,18.55940504320621,5.907179729351506,6.031114512338072,19.28352128306594,4.794537184071822,0.0,0.0,6.042418707663295,36.76706361101172,54.16856575433016,14.721411021337264,64.37376414862912,23.75265370039259,0.0,20.41944616827771,0.0,44.379376659312484,26.235624637451032,23.69070761468688,0.0,11.49902366656781,20.09335261417685,4.794537184071822,11.49902366656781,0.0,65.80599026789422,20.88047123653141,0.0,70.32628134642921,18.127256122989884,2.8236841566564013,0.0,0.0,117.28,149.97683244668852,19.178148736287287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.736862953800049,40.458752458541746,219.49089975030063,0.0,51.470595346858225,-2.4996899614493815,-1.4763042509320539,-9.928501833583063,-10.792408604333849,-22.26089455002624,-20.587029230167612,0.0,0.5238095238095238,31,2,10,0,3,3,1,0,1,6,2,10,9,0,2,2,4,0.7446000000000004,108.10940000000006,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +MolPort-008-351-319,CN(Cc1ccccc1)C(=O)CCCCCn1c(=O)[nH]c2ccccc2c1=O,0,13.728912392603839,-4.877831029124997,13.728912392603839,0.46753130702799117,0.6116552746917954,379.45999999999964,354.2600000000001,379.18959166000064,146,0,0.3283302482625605,-0.3414351346626337,0.3414351346626337,0.3283302482625605,1.1428571428571428,1.8928571428571428,2.6785714285714284,2.3493038022444592,2139.291637323699,41.892304845413264,38.566385657891466,13.566385657891464,23.448929172439204,19.598440413195583,7.151226817695627,4.6227167022769065,4.6227167022769065,2.8722302234476955,2.8722302234476955,1.7116165243720225,1.7116165243720225,-3.1499999999999995,25707882872.7579,5.257819083495991,9.170347810718212,4.76458635648453,198.16568532772567,9.87691300107973,0.0,1.4118420783282006,5.907179729351506,5.559266895052007,5.689743398203474,14.156174015934997,4.794537184071822,0.0,0.0,48.66985585497244,30.394138709682345,41.42081528811595,28.72278616229391,39.10458461048531,16.810104661432565,0.0,14.444012648871086,0.0,38.48541897394941,6.975826900282246,80.78330452206579,0.0,0.0,11.24901029325548,0.0,0.0,0.0,27.327019278504835,17.788256552703714,0.0,63.95335644509987,63.970842737113294,1.4118420783282006,10.902924932081056,0.0,75.17,147.90959333845746,14.383611552215466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.310047426413476,201.54403182031518,0.0,38.80112976497172,-1.289302702109565,-7.001090722988775,-2.882472220116865,-11.095849649463137,-19.339168195387536,-12.98727809522103,0.0,0.3181818181818182,28,1,6,0,0,0,2,1,3,4,1,6,9,0,0,0,3,2.908800000000001,110.21270000000005,0,0,0,0,0,2,1,0,0,0,1,1,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +MolPort-008-351-355,CC(=O)c1cccc(NC(=O)CC[C@@H]2NC(=O)c3ccccc3NC2=O)c1,0,13.414807070439906,-4.508860977261277,13.414807070439906,0.5562096591890406,0.7075804937830648,365.3889999999998,346.23700000000014,365.13755608800057,138,0,0.2535414140855218,-0.3401470715364018,0.3401470715364018,0.2535414140855218,1.3333333333333333,2.1481481481481484,2.962962962962963,2.2631481112450627,1727.4315275857593,35.9696551146029,31.974633948355326,12.974633948355327,20.648287909556977,16.249778153927476,6.908137367427601,4.625812428332286,4.625812428332286,2.8508926929953526,2.8508926929953526,1.7311393874464347,1.7311393874464347,-3.4799999999999995,1936978663.7012892,6.018160674023969,7.819723238268217,4.3817105670764285,182.5664874381072,15.929440059865126,6.017892468349645,10.01877118134954,11.814359458703011,5.907179729351506,0.0,19.178148736287287,0.0,0.0,0.0,24.16967483065318,37.39449184927824,27.219072560901473,23.587664771912536,45.34581186999542,34.87955668378658,0.0,5.309813353288376,0.0,25.61563438830408,10.619626706576751,59.46625264470035,0.0,0.0,15.929440059865126,11.374772549367124,0.0,0.0,29.5226766027691,9.589074368143644,0.0,62.245856170215646,48.33934966130636,4.235526234984602,0.0,0.0,104.37,135.89088377665618,19.178148736287287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.167663133708118,151.4452157645453,0.0,52.46378617654719,-2.190081495292118,-5.37671754102641,-8.766388993691395,-14.409384819715465,-8.960481583837243,-3.5392808408632446,0.0,0.2,27,3,7,0,1,1,2,0,2,4,3,7,6,0,0,0,3,2.3586,100.63610000000004,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/atomsci/ddm/test/unit/test_atomsci_init_version.py b/atomsci/ddm/test/unit/test_atomsci_init_version.py new file mode 100644 index 00000000..f49e5a11 --- /dev/null +++ b/atomsci/ddm/test/unit/test_atomsci_init_version.py @@ -0,0 +1,35 @@ +import builtins +import importlib + +import atomsci.ddm as ddm + +def test_ddm_init_version_package_not_found(monkeypatch): + md = importlib.import_module("importlib.metadata") + + def fake_version(_name): + raise md.PackageNotFoundError("atomsci-ampl") + + monkeypatch.setattr(md, "version", fake_version) + + importlib.reload(ddm) + assert ddm.__version__ == "unknown" + + # cleanup + importlib.reload(ddm) + + +def test_ddm_init_version_no_metadata_modules(monkeypatch): + real_import = builtins.__import__ + + def blocked_import(name, globals=None, locals=None, fromlist=(), level=0): + if name in ("importlib.metadata", "importlib_metadata"): + raise ImportError + return real_import(name, globals, locals, fromlist, level) + + monkeypatch.setattr(builtins, "__import__", blocked_import) + + importlib.reload(ddm) + assert ddm.__version__ == "unknown" + + # cleanup + importlib.reload(ddm) \ No newline at end of file diff --git a/atomsci/ddm/test/unit/test_compare_models.py b/atomsci/ddm/test/unit/test_compare_models.py index f73c0fa3..15c8339a 100644 --- a/atomsci/ddm/test/unit/test_compare_models.py +++ b/atomsci/ddm/test/unit/test_compare_models.py @@ -7,6 +7,7 @@ import os import json import tarfile +import shutil import pytest import pandas as pd from glob import glob @@ -20,20 +21,34 @@ # Fixtures and Test Data # -------------------------- -@pytest.fixture -def sample_result_dir(): - """Fixture to use an existing sample result directory.""" + +def _get_regression_dataset_key(sample_result_dir): + fs_df = compare_models.get_filesystem_perf_results( + str(sample_result_dir), + pred_type='regression', + ) + assert not fs_df.empty, 'Expected regression fixture models to be present.' + return fs_df['dataset_key'].dropna().iloc[0] + + +def _get_expected_model_count(sample_result_dir, dataset_key): + fs_df = compare_models.get_filesystem_perf_results( + str(sample_result_dir), + pred_type='regression', + ) + filtered = fs_df[fs_df['dataset_key'] == dataset_key] + assert not filtered.empty, f'Expected regression fixture models for dataset_key={dataset_key}' + return filtered['model_uuid'].nunique() + +@pytest.fixture(scope="module") +def unpack_tar_files_module_scope(): + """Module-level fixture to create model directories with unpacked tar files""" # Resolve the path to the existing directory result_dir = Path(__file__).parent / "../../examples/tutorials/dataset/" assert result_dir.exists(), f"Directory {result_dir} does not exist." - return result_dir - -# @pytest.fixture -def unpack_tar_files(sample_result_dir): - """Fixture to create a model directories with unpacked tar files""" - + # get .tar.gz files - tar_list=glob(f'{sample_result_dir}/**/*.tar.gz', recursive=True) + tar_list=glob(f'{result_dir}/**/*.tar.gz', recursive=True) # unpack tar files into model directories delete_dirs = [] @@ -49,16 +64,21 @@ def unpack_tar_files(sample_result_dir): with tarfile.open(tar_file, mode='r:gz') as tar: futils.safe_extract(tar, path=extract_location) - return delete_dirs + yield delete_dirs -# @pytest.fixture -def delete_model_dirs(delete_dirs): - """Fixture to clean up model directories after tests""" - yield - # Cleanup + # Cleanup extracted trees even when they contain files. for dir in delete_dirs: if os.path.exists(dir): - os.rmdir(dir) + shutil.rmtree(dir, ignore_errors=True) + + +@pytest.fixture +def sample_result_dir(unpack_tar_files_module_scope): + """Fixture to use an existing sample result directory with unpacked tar files.""" + # Resolve the path to the existing directory + result_dir = Path(__file__).parent / "../../examples/tutorials/dataset/" + assert result_dir.exists(), f"Directory {result_dir} does not exist." + return result_dir # -------------------------- @@ -68,26 +88,35 @@ def delete_model_dirs(delete_dirs): def test_basic_directory_processing(sample_result_dir): """Test basic JSON model discovery and processing""" - delete_dirs=unpack_tar_files(sample_result_dir) + dataset_key = _get_regression_dataset_key(sample_result_dir) + expected_models = _get_expected_model_count(sample_result_dir, dataset_key) df = compare_models.get_multitask_perf_from_files_new( str(sample_result_dir), - pred_type='regression' + pred_type='regression', + dataset_key=dataset_key, ) - delete_model_dirs(delete_dirs) - - assert df.model_uuid.nunique() == 5, f"Expected 5 unique models, but got {df.model_uuid.nunique()}" + assert df.model_uuid.nunique() == expected_models, ( + f"Expected {expected_models} unique models, but got {df.model_uuid.nunique()}" + ) assert all(df.prediction_type == 'regression'), "Not all rows have 'regression' as prediction_type" def test_tar_file_processing(sample_result_dir): """Test TAR archive handling""" + dataset_key = _get_regression_dataset_key(sample_result_dir) + expected_models = _get_expected_model_count(sample_result_dir, dataset_key) + df = compare_models.get_multitask_perf_from_files_new( str(sample_result_dir), + pred_type='regression', + dataset_key=dataset_key, tar=True ) - assert df.model_uuid.nunique() == 5, f"Expected 5 unique models, but got {df.model_uuid.nunique()}" + assert df.model_uuid.nunique() == expected_models, ( + f"Expected {expected_models} unique models, but got {df.model_uuid.nunique()}" + ) assert all(df.model_path.str.endswith('.tar.gz')), "Not all model paths end with '.tar.gz'" @@ -115,7 +144,12 @@ def test_tar_file_processing(sample_result_dir): def test_dataframe_structure(sample_result_dir): """Validate DataFrame schema and data types""" - df = compare_models.get_multitask_perf_from_files_new(str(sample_result_dir)) + dataset_key = _get_regression_dataset_key(sample_result_dir) + df = compare_models.get_multitask_perf_from_files_new( + str(sample_result_dir), + pred_type='regression', + dataset_key=dataset_key, + ) # Required columns assert {'model_uuid', 'time_built', 'ampl_version','dataset_key', 'model_path', @@ -152,14 +186,154 @@ def test_dataframe_structure(sample_result_dir): def test_mixed_model_types(sample_result_dir): """Test handling directories with both MT and ST model files""" - + dataset_key = _get_regression_dataset_key(sample_result_dir) + df = compare_models.get_multitask_perf_from_files_new( str(sample_result_dir), + pred_type='regression', + dataset_key=dataset_key, tar=True ) - - assert len(df.multitask.unique()) > 1, "Expected multiple multitask types" - assert df.multitask.max() == 1, "Expected at least one multitask model" + + if len(df.multitask.unique()) < 2: + pytest.skip('Fixture does not currently contain both multitask and single-task regression tar models.') + + assert set(df.multitask.unique()) == {0, 1}, "Expected both multitask and single-task models" + + +def test_filesystem_perf_results_include_invalid_prediction_columns(sample_result_dir): + df = compare_models.get_filesystem_perf_results( + str(sample_result_dir), + pred_type='regression' + ) + + expected_cols = { + 'best_train_invalid_prediction_count', + 'best_train_invalid_prediction_fraction', + 'best_train_invalid_prediction_threshold', + 'best_valid_invalid_prediction_count', + 'best_valid_invalid_prediction_fraction', + 'best_valid_invalid_prediction_threshold', + 'best_test_invalid_prediction_count', + 'best_test_invalid_prediction_fraction', + 'best_test_invalid_prediction_threshold', + } + assert expected_cols.issubset(df.columns) + + +def test_get_multitask_perf_from_files_new_includes_invalid_prediction_columns(sample_result_dir): + fs_df = compare_models.get_filesystem_perf_results( + str(sample_result_dir), + pred_type='regression' + ) + with_invalid = fs_df[~fs_df['best_valid_invalid_prediction_count'].isna()] + if with_invalid.empty: + pytest.skip('No regression fixture models with invalid prediction metrics available.') + dataset_key = with_invalid['dataset_key'].dropna().iloc[0] + + df = compare_models.get_multitask_perf_from_files_new( + str(sample_result_dir), + pred_type='regression', + dataset_key=dataset_key, + ) + + assert 'best_train_invalid_prediction_count' in df.columns + assert 'best_valid_invalid_prediction_fraction' in df.columns + assert 'best_test_invalid_prediction_threshold' in df.columns + + +def test_get_multitask_perf_from_files_new_returns_empty_df_for_non_matching_dataset_key(sample_result_dir): + df = compare_models.get_multitask_perf_from_files_new( + str(sample_result_dir), + pred_type='regression', + dataset_key='__definitely_not_a_real_dataset_key__.csv', + ) + assert isinstance(df, pd.DataFrame) + assert df.empty + + +def test_get_multitask_perf_from_files_new_handles_missing_seed_and_time_built(tmp_path): + model_dir = tmp_path / 'model_missing_fields' + model_dir.mkdir() + + metadata = { + 'model_uuid': 'm-1', + 'splitting_parameters': { + 'splitter': 'random', + 'split_strategy': 'train_valid_test', + 'split_valid_frac': 0.1, + 'split_test_frac': 0.1, + 'split_uuid': 'split-1', + }, + 'model_parameters': { + 'ampl_version': '0.0.0-test', + 'model_type': 'RF', + 'prediction_type': 'regression', + 'featurizer': 'ecfp', + 'descriptor_type': 'none', + 'num_model_tasks': 1, + 'production': False, + 'model_choice_score_type': 'r2', + }, + 'training_dataset': { + 'dataset_key': 'toy.csv', + 'response_cols': ['y'], + 'feature_transform_type': 'none', + 'response_transform_type': 'none', + 'weight_transform_type': 'none', + 'smiles_col': 'smiles', + }, + 'training_metrics': [ + { + 'label': 'best', + 'subset': 'train', + 'prediction_results': { + 'r2_score': 0.1, + 'rms_score': 1.0, + 'mae_score': 1.0, + 'num_compounds': 4, + 'model_choice_score': 0.1, + }, + }, + { + 'label': 'best', + 'subset': 'valid', + 'prediction_results': { + 'r2_score': 0.1, + 'rms_score': 1.0, + 'mae_score': 1.0, + 'num_compounds': 4, + 'model_choice_score': 0.1, + }, + }, + { + 'label': 'best', + 'subset': 'test', + 'prediction_results': { + 'r2_score': 0.1, + 'rms_score': 1.0, + 'mae_score': 1.0, + 'num_compounds': 4, + 'model_choice_score': 0.1, + }, + }, + ], + } + + metadata_path = model_dir / 'model_metadata.json' + with open(metadata_path, 'w') as f: + json.dump(metadata, f) + + tar_path = tmp_path / 'model_missing_fields.tar.gz' + with tarfile.open(tar_path, mode='w:gz') as tar: + tar.add(metadata_path, arcname='model_metadata.json') + + df = compare_models.get_multitask_perf_from_files_new(str(tmp_path), pred_type='regression', tar=True) + assert len(df) == 1 + assert 'seed' in df.columns + assert 'time_built' in df.columns + assert pd.isna(df['seed'].iloc[0]) + assert pd.isna(df['time_built'].iloc[0]) # -------------------------- # main diff --git a/atomsci/ddm/test/unit/test_featurization.py b/atomsci/ddm/test/unit/test_featurization.py index 96a61fc0..3ac601c7 100644 --- a/atomsci/ddm/test/unit/test_featurization.py +++ b/atomsci/ddm/test/unit/test_featurization.py @@ -1,9 +1,12 @@ from argparse import Namespace import pytest +import numpy as np import atomsci.ddm.pipeline.featurization as feat import deepchem as dc from atomsci.ddm.pipeline import model_datasets as md - +import pandas as pd +import unittest.mock as mock +import atomsci.ddm.pipeline.parameter_parser as param_parser try: from mol_vae_features import MoleculeVAEFeaturizer mol_vae_supported = True @@ -203,5 +206,153 @@ def test_copy_featurizer_params(): assert hasattr(result, "featurizer") assert hasattr(result, "mordred_cpus") +#*********************************************************************************** +@pytest.mark.moe_required +def test_compute_moe(): + """Test the compute_all_moe_descriptors function to ensure it correctly generates moe features.""" + smiles_df = pd.DataFrame({ + 'smiles': ['C(#Cc1c2c(nc3ccccc13)CCCCC2)CCN1CCCCC1', + 'C(#Cc1cccc(CN2CCOCC2)c1)CCN1CCCCC1', + 'C(=C/c1ccccc1)\CN1CCN(C(c2ccccc2)c2ccccc2)CC1'], + 'compound_id': ['CHEMBL66660', + 'CHEMBL237087', + 'CHEMBL43064'], + }) + + params = Namespace( + smiles_col='smiles', + id_col='compound_id', + moe_threads=1, + ) + + moe_df = feat.compute_all_moe_descriptors( + smiles_df=smiles_df, + params=params) + + assert moe_df is not None + +def test_compute_all_mordred_descrs_returns_none_on_valueerror(caplog, monkeypatch): + # Fake "res_df" returned by calc.pandas(...) + fake_df = mock.MagicMock() + fake_df.fill_missing.side_effect = ValueError("boom") + + # Fake calculator + fake_calc = mock.MagicMock() + fake_calc.pandas.return_value = fake_df + + # Patch the calculator factory used inside the function + monkeypatch.setattr(feat, "get_mordred_calculator", lambda ignore_3D: fake_calc) + + with caplog.at_level("ERROR"): + out = feat.compute_all_mordred_descrs(mols=[object()]) + + assert out is None + assert "Mordred descriptor calculation failed in MordredDataFrame.fill_missing" in caplog.text + +def test_not_implemented(): + params = param_parser.wrapper({"dataset_key": "fake.csv"}) + f = feat.Featurization(params) + with pytest.raises(NotImplementedError): + f.get_feature_count() + + fp = feat.PersistentFeaturization(params) + with pytest.raises(NotImplementedError): + fp.featurize_data( + dset_df=None, + params=None, + contains_responses=False + ) + + +def test_scale_by_heavyatomcount_uses_specified_heavy_atom_col(monkeypatch): + params = param_parser.wrapper({ + "dataset_key": "fake.csv", + "featurizer": "compouted_descriptors", + "descriptor_type": "rdkit_raw",}) + obj = feat.ComputedDescriptorFeaturization(params) + + # Force a small, known descriptor set for the test + monkeypatch.setattr( + obj.__class__, + "desc_type_cols", + {"demo": ["MolWt_per_heavyatom", "B_log_scaled", "C"]}, + raising=False, + ) + + df = pd.DataFrame( + { + "id": [1, 2], + "HA": [10, 5], # specified heavy atom column + "MolWt": [100.0, 50.0], # unscaled input for _per_heavyatom + "B": [1.0, np.e], # unscaled input for _log_scaled + "C": [7.0, 9.0], # pass-through + } + ) + + out = obj.scale_by_heavyatomcount_and_log_scale(df, descr_type="demo", heavy_atom_col="HA") + + # Columns exist (do not assert full column order, nondesc_cols order is set-derived) + assert {"id", "HA", "MolWt_per_heavyatom", "B_log_scaled", "C"}.issubset(out.columns) + + # Values are correct + assert np.allclose(out["MolWt_per_heavyatom"].to_numpy(), np.array([10.0, 10.0])) + assert np.allclose(out["B_log_scaled"].to_numpy(), np.array([0.0, 1.0])) + assert np.allclose(out["C"].to_numpy(), df["C"].to_numpy()) + assert np.allclose(out["HA"].to_numpy(), df["HA"].to_numpy()) + assert np.allclose(out["id"].to_numpy(), df["id"].to_numpy()) + + +def test_scale_by_heavyatomcount_raises_runtimeerror_when_cannot_infer_heavy_atom_col(monkeypatch): + params = param_parser.wrapper({ + "dataset_key": "fake.csv", + "featurizer": "compouted_descriptors", + "descriptor_type": "rdkit_raw",}) + obj = feat.ComputedDescriptorFeaturization(params) + + # No "HeavyAtomCount" or "nHeavyAtom" in descr_cols, and we do not pass heavy_atom_col + monkeypatch.setattr( + obj.__class__, + "desc_type_cols", + {"demo": ["MolWt_per_heavyatom"]}, + raising=False, + ) + + df = pd.DataFrame({"MolWt": [100.0]}) + + with pytest.raises(RuntimeError, match=r"Could not infer heavy atom column"): + obj.scale_by_heavyatomcount_and_log_scale(df, descr_type="demo") + +def test_scale_by_heavyatomcount_and_log_scale_raises_on_negative_log_feature(monkeypatch): + params = param_parser.wrapper({ + "dataset_key": "fake.csv", + "featurizer": "compouted_descriptors", + "descriptor_type": "rdkit_raw",}) + obj = feat.ComputedDescriptorFeaturization(params) + + # No "HeavyAtomCount" or "nHeavyAtom" in descr_cols, and we do not pass heavy_atom_col + monkeypatch.setattr( + obj.__class__, + "desc_type_cols", + {"test_type": ["SomeFeature_log_scaled", "HeavyAtomCount"]}, + raising=False, + ) + + # Build a DataFrame where: + # - HeavyAtomCount is present so the function can infer heavy atom counts + # - SomeFeature has a negative value, and desc_type_cols includes SomeFeature_log_scaled + df = pd.DataFrame({ + "HeavyAtomCount": [10, 12], + "SomeFeature": [-1.0, 2.0] # negative value triggers ValueError in log scaling + }) + + with pytest.raises(ValueError) as excinfo: + obj.scale_by_heavyatomcount_and_log_scale( + desc_df=df, + descr_type="test_type" # uses desc_type_cols defined above + ) + + # Optionally check the error message + assert "Cannot log scale SomeFeature" in str(excinfo.value) + if __name__ == '__main__': - test_get_mordred_calculator() \ No newline at end of file + test_compute_moe() \ No newline at end of file diff --git a/atomsci/ddm/test/unit/test_generate_transformers.py b/atomsci/ddm/test/unit/test_generate_transformers.py new file mode 100644 index 00000000..de3c4873 --- /dev/null +++ b/atomsci/ddm/test/unit/test_generate_transformers.py @@ -0,0 +1,71 @@ +import atomsci.ddm.utils.generate_transformers as gt +import tempfile +import pytest + +def test_filter_outlier_features(): + dataset_key = '../test_datasets/Molport_test.csv' + id_col = 'compound_id' + smiles_col = 'base_rdkit_smiles' + response_cols = 'dummy_response' + + a, b, c = gt.filter_outlier_features( + dataset_key, id_col, smiles_col, response_cols, + featurizer='computed_descriptors', descriptor_type='rdkit_raw', + threshold=1e10) + + expected_a = set([ + 'MolPort-008-351-295', 'MolPort-008-351-371', 'MolPort-008-351-357', + 'MolPort-008-351-359', 'MolPort-008-351-292', 'MolPort-008-351-372', + 'MolPort-008-351-322', 'MolPort-008-351-275', 'MolPort-008-351-338', + 'MolPort-008-351-358', 'MolPort-008-351-382', 'MolPort-008-351-297', + 'MolPort-008-351-375', 'MolPort-008-351-354', 'MolPort-008-351-277', + 'MolPort-008-351-353', 'MolPort-008-351-318', 'MolPort-008-351-280', + 'MolPort-008-351-339', 'MolPort-008-351-343', 'MolPort-008-351-313', + 'MolPort-008-351-296', 'MolPort-008-351-336', 'MolPort-008-351-317', + 'MolPort-008-351-283', 'MolPort-008-351-373', 'MolPort-008-351-363', + 'MolPort-008-351-294', 'MolPort-008-351-290', 'MolPort-008-351-321', + 'MolPort-008-351-344', 'MolPort-008-351-305', 'MolPort-008-351-328', + 'MolPort-008-351-379', 'MolPort-008-351-352', 'MolPort-008-351-319']) + expected_b = ['Ipc']*len(expected_a) + + assert set(a) == expected_a + assert list(b) == expected_b + assert all([val > 1e10 for val in c]) + +def test_filter_outlier_MW(): + dataset_key = '../test_datasets/Molport_test.csv' + smiles_col = 'base_rdkit_smiles' + + outliers = gt.filter_outlier_MW(dataset_key, smiles_col, threshold=450, workers=1) + + expected_outliers = ['O=C(CC[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCCC(c1ccccc1)c1ccccc1', + 'Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)Nc2ccc(C(F)(F)F)cc2)C1', + 'O=C1CC2(C(=O)Nc3ccc(Br)cc32)c2sc(C(=O)O)c(-c3ccccc3)c2N1', + 'O=C(CC[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NC1CCN(Cc2ccccc2)CC1', + 'COC(=O)C[C@H](NC(=O)N1CCc2nc[nH]c2C1c1cccc(Cl)c1Cl)C(=O)OC', + 'Cc1[nH]c(=O)[nH]c(=O)c1S(=O)(=O)N1CCCC(C(=O)NCCc2ccc(Cl)cc2Cl)C1', + 'CN1CCN(C2(CNC(=O)C[C@@H]3NC(=O)N(Cc4ccc5c(c4)OCO5)C3=O)CCCCC2)CC1', + 'O=C(C[C@@H]1NC(=O)N(Cc2ccc3c(c2)OCO3)C1=O)NCc1ccc(Cl)cc1Cl'] + + assert outliers == expected_outliers + +def test_prepare_csv_and_descriptor_with_dummy_response(): + dataset_key = '../test_datasets/Molport_test.csv' + temp_root = tempfile.mkdtemp() + + # this should raise a RuntimeError + # because the split_uuid is used for two split files + # this should almost never happen in real life, + # but we want to make sure the error is raised if it does + with pytest.raises(RuntimeError): + gt.prepare_csv_and_descriptor_with_dummy_response( + csv_path=dataset_key, + descriptor_type='rdkit_raw', + temp_root = temp_root, + split_uuid='e28e63fb-4d30-4cef-b303-7f0622f64688' + ) + +if __name__ == "__main__": + test_filter_outlier_features() + test_filter_outlier_MW() + test_prepare_csv_and_descriptor_with_dummy_response() \ No newline at end of file diff --git a/atomsci/ddm/test/unit/test_optuna_search.py b/atomsci/ddm/test/unit/test_optuna_search.py new file mode 100644 index 00000000..cc32ac5a --- /dev/null +++ b/atomsci/ddm/test/unit/test_optuna_search.py @@ -0,0 +1,221 @@ +"""Unit tests for build_optuna_suggest() and Optuna Study checkpoint round-trip.""" + +import math +import os +import pickle +import tempfile +from types import SimpleNamespace + +import pytest +import numpy as np +import pandas as pd + +optuna = pytest.importorskip("optuna") + +from atomsci.ddm.utils.hyperparam_search_wrapper import build_optuna_suggest +import atomsci.ddm.utils.hyperparam_search_wrapper as hsw + + +# --------------------------------------------------------------------------- +# build_optuna_suggest — per-method tests +# --------------------------------------------------------------------------- + +def test_build_optuna_suggest_choice(): + trial = optuna.trial.FixedTrial({"lr": 0.001}) + result = build_optuna_suggest(trial, "lr", "choice", [0.0001, 0.001, 0.01]) + assert result == 0.001 + + +def test_build_optuna_suggest_uniform(): + trial = optuna.trial.FixedTrial({"lr": 0.0005}) + result = build_optuna_suggest(trial, "lr", "uniform", [0.00001, 0.001]) + assert result == 0.0005 + + +def test_build_optuna_suggest_loguniform(): + # param_list values are natural-log scale (legacy hyperopt convention); + # build_optuna_suggest converts them via math.exp() before calling Optuna. + log_low = math.log(0.001) + log_high = math.log(1.0) + expected = 0.01 + trial = optuna.trial.FixedTrial({"wdp": expected}) + result = build_optuna_suggest(trial, "wdp", "loguniform", [log_low, log_high]) + assert result == expected + + +def test_build_optuna_suggest_uniformint(): + trial = optuna.trial.FixedTrial({"rfe": 200}) + result = build_optuna_suggest(trial, "rfe", "uniformint", [64, 512]) + assert result == 200 + assert isinstance(result, int) + + +def test_build_optuna_suggest_invalid(): + trial = optuna.trial.FixedTrial({}) + with pytest.raises(ValueError): + build_optuna_suggest(trial, "x", "badmethod", [0.0, 1.0]) + + +# --------------------------------------------------------------------------- +# Optuna Study checkpoint round-trip +# --------------------------------------------------------------------------- + +def test_checkpoint_roundtrip(): + study = optuna.create_study(direction="minimize") + + def dummy_objective(trial): + x = trial.suggest_float("x", -1.0, 1.0) + return x ** 2 + + study.optimize(dummy_objective, n_trials=3) + + with tempfile.NamedTemporaryFile(suffix=".pkl", delete=False) as f: + ckpt_path = f.name + try: + with open(ckpt_path, "wb") as f: + pickle.dump(study, f) + + with open(ckpt_path, "rb") as f: + loaded = pickle.load(f) + + assert len(loaded.trials) == len(study.trials) + assert loaded.best_value == study.best_value + assert loaded.direction == study.direction + finally: + os.remove(ckpt_path) + + +class _FakeTrial: + def __init__(self): + self.user_attrs = {} + + def set_user_attr(self, key, value): + self.user_attrs[key] = value + + def suggest_categorical(self, name, choices): + return choices[0] + + def suggest_float(self, name, low, high, log=False): + return low + + def suggest_int(self, name, low, high): + return int(low) + + +class _FakeStudy: + def __init__(self): + self.trials = [] + + def optimize(self, objective, n_trials): + for _ in range(n_trials): + trial = _FakeTrial() + trial.value = objective(trial) + self.trials.append(trial) + + +class _FakePerfData: + def __init__(self, pred_type): + self.pred_type = pred_type + + def get_prediction_results(self): + if self.pred_type == 'regression': + return {'r2_score': np.nan, 'rms_score': np.inf} + return {'roc_auc_score': np.nan, 'accuracy_score': np.inf} + + +class _FakeModelWrapper: + def __init__(self, pred_type): + self.pred_type = pred_type + + def get_perf_data(self, subset=None, epoch_label=None): + return _FakePerfData(self.pred_type) + + +class _FakeModelPipeline: + def __init__(self, params): + self.params = params + self.model_wrapper = _FakeModelWrapper(params.prediction_type) + + def train_model(self): + return None + + +def _build_optuna_params(tmpdir, prediction_type): + return SimpleNamespace( + result_dir=tmpdir, + model_type='RF|1', + prediction_type=prediction_type, + featurizer='ecfp', + descriptor_type='moe', + hp_checkpoint_load=None, + hp_checkpoint_save=None, + rfe='choice|10,20', + rfd='choice|3,4', + rff='choice|5,6', + rf_estimators=10, + rf_max_depth=3, + rf_max_features=5, + lr=None, + ls=None, + ls_ratio=None, + dp=None, + wdp=None, + wdt=None, + xgbg=None, + xgba=None, + xgbb=None, + xgbl=None, + xgbd=None, + xgbc=None, + xgbs=None, + xgbn=None, + xgbw=None, + layer_sizes='100,50', + dropouts='0.1,0.1', + learning_rate=0.001, + weight_decay_penalty_type='l2', + weight_decay_penalty=1e-05, + hyperparam=True, + ) + + +def test_optuna_objective_sanitizes_non_finite_regression_metrics(monkeypatch): + with tempfile.TemporaryDirectory() as td: + params = _build_optuna_params(td, 'regression') + study = _FakeStudy() + + monkeypatch.setattr(hsw.mp, 'ModelPipeline', _FakeModelPipeline) + monkeypatch.setattr(hsw.parse, 'wrapper', lambda d: SimpleNamespace(**d, model_tarball_path='/tmp/fake_reg_model.tar.gz')) + monkeypatch.setattr(hsw.optuna, 'create_study', lambda direction='minimize': study) + + search = hsw.OptunaSearch(params) + search.run_search() + + perf_files = [f for f in os.listdir(td) if f.startswith('performance_regression_') and f.endswith('.csv')] + assert len(perf_files) == 1 + perf_df = pd.read_csv(os.path.join(td, perf_files[0])) + assert perf_df['valid_r2'].iloc[0] == 0 + assert perf_df['valid_rms'].iloc[0] == 100 + assert len(study.trials) > 0 + assert all(np.isfinite([trial.value for trial in study.trials])) + + +def test_optuna_objective_sanitizes_non_finite_classification_metrics(monkeypatch): + with tempfile.TemporaryDirectory() as td: + params = _build_optuna_params(td, 'classification') + study = _FakeStudy() + + monkeypatch.setattr(hsw.mp, 'ModelPipeline', _FakeModelPipeline) + monkeypatch.setattr(hsw.parse, 'wrapper', lambda d: SimpleNamespace(**d, model_tarball_path='/tmp/fake_cls_model.tar.gz')) + monkeypatch.setattr(hsw.optuna, 'create_study', lambda direction='minimize': study) + + search = hsw.OptunaSearch(params) + search.run_search() + + perf_files = [f for f in os.listdir(td) if f.startswith('performance_classification_') and f.endswith('.csv')] + assert len(perf_files) == 1 + perf_df = pd.read_csv(os.path.join(td, perf_files[0])) + assert perf_df['valid_roc_auc'].iloc[0] == 0 + assert perf_df['valid_acc'].iloc[0] == 0 + assert len(study.trials) > 0 + assert all(np.isfinite([trial.value for trial in study.trials])) diff --git a/atomsci/ddm/test/unit/test_parameter_parser_invalid_pred.py b/atomsci/ddm/test/unit/test_parameter_parser_invalid_pred.py new file mode 100644 index 00000000..6f2c621a --- /dev/null +++ b/atomsci/ddm/test/unit/test_parameter_parser_invalid_pred.py @@ -0,0 +1,101 @@ +import pytest +from types import SimpleNamespace + +import atomsci.ddm.pipeline.parameter_parser as parse +from atomsci.ddm.pipeline import model_pipeline + + +def test_max_invalid_pred_frac_default_is_set(): + params = parse.wrapper({ + 'dataset_key': '/tmp/dataset.csv', + 'bucket': 'public', + }) + assert params.max_invalid_pred_frac == 0.01 + + +def test_max_invalid_pred_frac_accepts_valid_values(): + params = parse.wrapper({ + 'dataset_key': '/tmp/dataset.csv', + 'bucket': 'public', + 'max_invalid_pred_frac': 0.25, + }) + assert params.max_invalid_pred_frac == 0.25 + + +@pytest.mark.parametrize('bad_value', [-0.01, 1.01]) +def test_max_invalid_pred_frac_rejects_out_of_range_values(bad_value): + with pytest.raises(Exception, match='max_invalid_pred_frac must be between 0.0 and 1.0.'): + parse.wrapper({ + 'dataset_key': '/tmp/dataset.csv', + 'bucket': 'public', + 'max_invalid_pred_frac': bad_value, + }) + + +def test_create_model_metadata_persists_max_invalid_pred_frac(): + class _TestParams(SimpleNamespace): + def __contains__(self, item): + return hasattr(self, item) + + pipe = model_pipeline.ModelPipeline.__new__(model_pipeline.ModelPipeline) + + pipe.params = _TestParams( + datastore=False, + dataset_key='/tmp/dataset.csv', + bucket='public', + dataset_hash=None, + id_col='compound_id', + smiles_col='smiles', + response_cols=['y'], + robustscaler_with_centering='none', + robustscaler_with_scaling='none', + robustscaler_quartile_range='none', + robustscaler_unit_variance='none', + powertransformer_standardize='none', + powertransformer_method='none', + imputer_strategy='none', + feature_transform_type='none', + response_transform_type='none', + weight_transform_type='none', + result_dir='/tmp', + production=False, + model_bucket='public', + system='local', + model_type='RF', + featurizer='ecfp', + prediction_type='regression', + model_choice_score_type='r2', + max_invalid_pred_frac=0.25, + num_model_tasks=1, + class_number=2, + transformers=[], + transformer_key='none', + transformer_bucket='public', + transformer_oid='oid', + uncertainty=False, + save_results=False, + hyperparam_uuid='hp-uuid', + sampling_method=None, + sampling_ratio=None, + sampling_k_neighbors=None, + model_uuid='model-uuid', + ) + + pipe.data = SimpleNamespace( + dataset_oid='dataset-oid', + get_split_metadata=lambda: { + 'splitter': 'random', + 'split_strategy': 'train_valid_test', + 'split_valid_frac': 0.1, + 'split_test_frac': 0.1, + 'split_uuid': 'split-uuid', + }, + featurization=SimpleNamespace(get_feature_specific_metadata=lambda params: {}), + ) + pipe.model_wrapper = SimpleNamespace(get_model_specific_metadata=lambda: {}) + pipe.seed = 7 + + pipe.create_model_metadata() + + assert 'model_parameters' in pipe.model_metadata + assert pipe.model_metadata['model_parameters']['max_invalid_pred_frac'] == 0.25 diff --git a/atomsci/ddm/test/unit/test_patch_model_dataset_key.py b/atomsci/ddm/test/unit/test_patch_model_dataset_key.py index bee27b17..0797421c 100644 --- a/atomsci/ddm/test/unit/test_patch_model_dataset_key.py +++ b/atomsci/ddm/test/unit/test_patch_model_dataset_key.py @@ -98,7 +98,13 @@ def test_check_data_accessibility_folder(): ) dataset_info = pmdk.check_data_accessibility(model_path=model_path) - assert len(dataset_info) == 4 + expected_tar_count = len([ + entry for entry in os.scandir(model_path) + if entry.is_file() and entry.name.endswith('.tar.gz') + ]) + + assert expected_tar_count > 0 + assert len(dataset_info) == expected_tar_count def test_check_data_accessibility_bad(): # directory with bad tarball diff --git a/atomsci/ddm/test/unit/test_perf_data.py b/atomsci/ddm/test/unit/test_perf_data.py index f5752abc..2a697eec 100644 --- a/atomsci/ddm/test/unit/test_perf_data.py +++ b/atomsci/ddm/test/unit/test_perf_data.py @@ -8,6 +8,9 @@ import shutil import pandas as pd import json +from types import SimpleNamespace + +import pytest def copy_to_temp(dskey, res_dir): """ @@ -320,6 +323,269 @@ def test_SimpleClassificationPerfData(): assert roc_auc_mean==1 +def test_safe_regression_score_filters_when_invalid_fraction_within_threshold(): + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=0.50)) + + y_real = np.array([0.0, 1.0, 2.0, 3.0], dtype=float) + y_pred = np.array([0.0, 1.0, np.nan, 3.0], dtype=float) + score = perf_data._safe_regression_score('r2', y_real, y_pred) + + assert np.isclose(score, 1.0) + + +def test_safe_regression_score_penalizes_when_invalid_fraction_exceeds_threshold(): + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=0.10)) + + y_real = np.array([0.0, 1.0, 2.0, 3.0], dtype=float) + y_pred = np.array([0.0, 1.0, np.nan, 3.0], dtype=float) + score = perf_data._safe_regression_score('r2', y_real, y_pred) + + assert score == -1.0e12 + + +@pytest.mark.parametrize( + 'score_type,expected_penalty', + [('mae', 1.0e12), ('rmse', 1.0e12)], +) +def test_safe_regression_score_penalty_direction_for_loss_metrics(score_type, expected_penalty): + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=0.10)) + + y_real = np.array([0.0, 1.0, 2.0, 3.0], dtype=float) + y_pred = np.array([0.0, np.nan, np.nan, 3.0], dtype=float) + score = perf_data._safe_regression_score(score_type, y_real, y_pred) + + assert score == expected_penalty + + +def test_safe_classification_score_filters_when_invalid_fraction_within_threshold(): + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=0.50)) + + y_real = np.array([0, 1, 1, 0], dtype=int) + y_pred = np.array([0, 1, np.nan, 0], dtype=float) + score = perf_data._safe_classification_score('accuracy', y_real, y_pred) + + assert np.isclose(score, 1.0) + + +def test_safe_classification_score_penalizes_when_invalid_fraction_exceeds_threshold(): + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=0.10)) + + y_real = np.array([0, 1, 1, 0], dtype=int) + y_pred = np.array([0, 1, np.nan, 0], dtype=float) + score = perf_data._safe_classification_score('accuracy', y_real, y_pred) + + assert score == 0.0 + + +@pytest.mark.parametrize( + 'score_type,y_real,y_pred,expected_value', + [ + ('roc_auc', np.array([0, 1, 0, 1], dtype=int), np.array([0.1, 0.9, np.nan, 0.8], dtype=float), 1.0), + ('avg_precision', np.array([0, 1, 0, 1], dtype=int), np.array([0.1, 0.9, np.nan, 0.8], dtype=float), 1.0), + ], +) +def test_safe_classification_probability_metrics_filter_small_invalid_fraction(score_type, y_real, y_pred, expected_value): + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=0.50)) + + score = perf_data._safe_classification_score(score_type, y_real, y_pred) + assert np.isclose(score, expected_value) + + +def test_safe_classification_cross_entropy_filter_small_invalid_fraction(): + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=0.50)) + + y_real = np.array([0, 1, 0, 1], dtype=int) + y_pred = np.array([0.2, 0.8, np.nan, 0.7], dtype=float) + score = perf_data._safe_classification_score('cross_entropy', y_real, y_pred) + expected = perf_data.log_loss(np.array([0, 1, 1]), np.array([0.2, 0.8, 0.7])) + assert np.isclose(score, expected) + + +def test_safe_classification_cross_entropy_penalty_when_invalid_fraction_exceeds_threshold(): + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=0.10)) + + y_real = np.array([0, 1, 0, 1], dtype=int) + y_pred = np.array([0.2, np.nan, np.nan, 0.7], dtype=float) + score = perf_data._safe_classification_score('cross_entropy', y_real, y_pred) + assert score == 1.0e12 + + +def test_safe_regression_score_returns_penalty_for_all_invalid_rows(): + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=0.99)) + + y_real = np.array([np.nan, np.nan], dtype=float) + y_pred = np.array([np.nan, np.nan], dtype=float) + score = perf_data._safe_regression_score('r2', y_real, y_pred) + assert score == -1.0e12 + + +def test_safe_classification_score_returns_penalty_for_shape_mismatch(): + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=0.50)) + + y_real = np.array([0, 1, 0], dtype=int) + y_pred = np.array([0.1, np.nan], dtype=float) + score = perf_data._safe_classification_score('accuracy', y_real, y_pred) + assert score == 0.0 + + +def test_coerce_invalid_pred_classes_binary_sets_wrong_class_for_invalid_rows(): + y_real = np.array([0, 1, 1, 0], dtype=int) + y_pred = np.array([0, 1, 0, 0], dtype=int) + class_probs = np.array([0.1, np.inf, 0.8, np.nan], dtype=float) + + coerced = perf_data._coerce_invalid_pred_classes(y_real, y_pred, class_probs, 2) + + assert np.array_equal(coerced, np.array([0, 0, 0, 1])) + + +def test_safe_confusion_matrix_uses_coerced_classes_not_zeroed_when_real_is_finite(): + y_real = np.array([0, 1, 1, 0], dtype=int) + y_pred = np.array([0, 0, 0, 1], dtype=int) + + cm = perf_data._safe_confusion_matrix(y_real, y_pred, 2) + assert cm == [[1, 1], [2, 0]] + + +def test_max_invalid_pred_frac_clamps_out_of_range_values(): + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=2.5)) + assert perf_data._get_active_invalid_pred_frac_threshold() == 1.0 + + perf_data._configure_invalid_pred_frac_threshold(SimpleNamespace(max_invalid_pred_frac=-0.2)) + assert perf_data._get_active_invalid_pred_frac_threshold() == 0.0 + + +def test_simple_regression_prediction_results_include_invalid_prediction_fields(): + class _RegDataset: + def __init__(self): + self.ids = np.array([0, 1, 2, 3]) + self.y = np.array([[0.0], [1.0], [2.0], [3.0]], dtype=float) + self.w = np.ones((4, 1), dtype=float) + + class _RegModelDataset: + def __init__(self): + dset = _RegDataset() + self.train_valid_dsets = [(dset, dset)] + self.dataset = dset + self.test_dset = dset + self._responses = dset.y + + def get_untransformed_responses(self, ids): + return self._responses[np.array(ids, dtype=int)] + + model_dataset = _RegModelDataset() + perf = perf_data.SimpleRegressionPerfData(model_dataset, subset='train') + real_vals = perf.get_real_values() + ids = model_dataset.train_valid_dsets[0][0].ids + pred_vals = real_vals.copy() + pred_vals[0, 0] = np.nan + + perf.accumulate_preds(pred_vals, ids) + pred_results = perf.get_prediction_results() + + for key in [ + 'invalid_prediction_count', + 'invalid_prediction_fraction', + 'invalid_prediction_threshold', + 'task_invalid_prediction_counts', + 'task_invalid_prediction_fractions', + ]: + assert key in pred_results + + assert pred_results['invalid_prediction_count'] == 1 + assert np.isclose(pred_results['invalid_prediction_fraction'], 1.0 / len(real_vals)) + assert len(pred_results['task_invalid_prediction_counts']) == perf.num_tasks + + +def test_simple_classification_prediction_results_include_invalid_prediction_fields(): + class _ClsDataset: + def __init__(self): + self.ids = np.array([0, 1, 2, 3]) + self.y = np.array([[0], [1], [0], [1]], dtype=int) + self.w = np.ones((4, 1), dtype=float) + + class _ClsModelDataset: + def __init__(self): + dset = _ClsDataset() + self.train_valid_dsets = [(dset, dset)] + self.dataset = dset + self.test_dset = dset + self._responses = dset.y + + def get_untransformed_responses(self, ids): + return self._responses[np.array(ids, dtype=int)] + + model_dataset = _ClsModelDataset() + perf = perf_data.SimpleClassificationPerfData(model_dataset, subset='train') + ids = model_dataset.train_valid_dsets[0][0].ids + + pred_vals = np.array([ + [[1.0, 0.0]], + [[0.0, 1.0]], + [[1.0, 0.0]], + [[0.0, 1.0]], + ], dtype=float) + pred_vals[0, 0, 1] = np.nan + + perf.accumulate_preds(pred_vals, ids=ids) + pred_results = perf.get_prediction_results() + + for key in [ + 'invalid_prediction_count', + 'invalid_prediction_fraction', + 'invalid_prediction_threshold', + 'task_invalid_prediction_counts', + 'task_invalid_prediction_fractions', + ]: + assert key in pred_results + + assert pred_results['invalid_prediction_count'] == 1 + assert np.isclose(pred_results['invalid_prediction_fraction'], 0.25) + + +def test_simple_hybrid_prediction_results_include_invalid_prediction_fields(): + class _HybridDataset: + def __init__(self): + self.ids = np.array([0, 1, 2, 3]) + self.y = np.array([ + [7.0, np.nan], + [6.5, np.nan], + [0.8, 50.0], + [0.2, 50.0], + ], dtype=float) + self.w = np.ones((4, 2), dtype=float) + + class _HybridModelDataset: + def __init__(self): + dset = _HybridDataset() + self.train_valid_dsets = [(dset, dset)] + self.dataset = dset + self.test_dset = dset + self._responses = dset.y + + def get_untransformed_responses(self, ids): + return self._responses[np.array(ids, dtype=int)] + + model_dataset = _HybridModelDataset() + perf = perf_data.SimpleHybridPerfData(model_dataset, subset='train', is_ki=False) + pred_vals = model_dataset._responses.copy() + pred_vals[0, 0] = np.nan + + perf.accumulate_preds(pred_vals, ids=model_dataset.train_valid_dsets[0][0].ids) + pred_results = perf.get_prediction_results() + + for key in [ + 'invalid_prediction_count', + 'invalid_prediction_fraction', + 'invalid_prediction_threshold', + 'task_invalid_prediction_counts', + 'task_invalid_prediction_fractions', + ]: + assert key in pred_results + + assert pred_results['invalid_prediction_count'] == 1 + assert np.isclose(pred_results['invalid_prediction_fraction'], 0.25) + + if __name__ == "__main__": test_KFoldRegressionPerfDataMulti() test_KFoldRegressionPerfData() diff --git a/atomsci/ddm/test/unit/test_perf_plots.py b/atomsci/ddm/test/unit/test_perf_plots.py index 2ccc6ac4..14ab1b87 100644 --- a/atomsci/ddm/test/unit/test_perf_plots.py +++ b/atomsci/ddm/test/unit/test_perf_plots.py @@ -2,12 +2,16 @@ from contextlib import contextmanager import matplotlib.pyplot as plt from unittest.mock import MagicMock +import tarfile +import json import pytest import pandas as pd from matplotcheck.base import PlotTester -from atomsci.ddm.pipeline.perf_plots import plot_pred_vs_actual_from_df +import atomsci.ddm.pipeline.perf_plots as perf_plots +import io +import numpy as np # --- Fixtures --- @pytest.fixture @@ -92,7 +96,7 @@ def test_plot_pred_vs_actual_from_df_basic(mock_data, mock_plot): df = mock_data with mock_plot() as mock_scatter: - ax = plot_pred_vs_actual_from_df(df, actual_col='avg_pIC50_actual', pred_col='avg_pIC50_pred') + ax = perf_plots.plot_pred_vs_actual_from_df(df, actual_col='avg_pIC50_actual', pred_col='avg_pIC50_pred') # Verify the plot was created assert ax is not None @@ -124,7 +128,7 @@ def test_plot_pred_vs_actual_from_df_with_std(mock_data, mock_plot): """ df = mock_data with mock_plot() as mock_scatter: - ax = plot_pred_vs_actual_from_df(df, actual_col='avg_pIC50_actual', pred_col='avg_pIC50_pred', std_col='avg_pIC50_std') + ax = perf_plots.plot_pred_vs_actual_from_df(df, actual_col='avg_pIC50_actual', pred_col='avg_pIC50_pred', std_col='avg_pIC50_std') pt = PlotTester(ax) assert ax is not None @@ -149,7 +153,7 @@ def test_plot_pred_vs_actual_from_df_with_label(mock_data, mock_plot): """ df = mock_data with mock_plot() as mock_scatter: - ax = plot_pred_vs_actual_from_df(df, actual_col='avg_pIC50_actual', pred_col='avg_pIC50_pred', label='Test Label') + ax = perf_plots.plot_pred_vs_actual_from_df(df, actual_col='avg_pIC50_actual', pred_col='avg_pIC50_pred', label='Test Label') pt = PlotTester(ax) assert ax is not None @@ -176,7 +180,7 @@ def test_plot_pred_vs_actual_from_df_with_threshold(mock_data, mock_plot): df = mock_data with mock_plot() as mock_scatter: - ax = plot_pred_vs_actual_from_df(df, actual_col='avg_pIC50_actual', pred_col='avg_pIC50_pred', threshold=7.0) + ax = perf_plots.plot_pred_vs_actual_from_df(df, actual_col='avg_pIC50_actual', pred_col='avg_pIC50_pred', threshold=7.0) pt = PlotTester(ax) assert ax is not None @@ -203,7 +207,7 @@ def test_plot_pred_vs_actual_from_df_with_all_options(mock_data, mock_plot): """ df = mock_data with mock_plot() as mock_scatter: - ax = plot_pred_vs_actual_from_df(df, actual_col='avg_pIC50_actual', pred_col='avg_pIC50_pred', std_col='avg_pIC50_std', label='Test Label', threshold=7.0) + ax = perf_plots.plot_pred_vs_actual_from_df(df, actual_col='avg_pIC50_actual', pred_col='avg_pIC50_pred', std_col='avg_pIC50_std', label='Test Label', threshold=7.0) pt = PlotTester(ax) assert ax is not None @@ -211,4 +215,345 @@ def test_plot_pred_vs_actual_from_df_with_all_options(mock_data, mock_plot): pt.assert_axis_label_contains("y", "avg_pIC50_pred") pt.assert_plot_type("scatter") assert ax.get_title() == 'Test Label' - assert any(line.get_linestyle() == '--' for line in ax.get_lines()) \ No newline at end of file + assert any(line.get_linestyle() == '--' for line in ax.get_lines()) + + +def _make_model_tarball(tmp_path, metadata: dict, name="model.tar.gz"): + """Create a minimal tar.gz containing model_metadata.json.""" + model_path = tmp_path / name + meta_bytes = json.dumps(metadata).encode("utf-8") + + with tarfile.open(model_path, mode="w:gz") as tar: + ti = tarfile.TarInfo(name="model_metadata.json") + ti.size = len(meta_bytes) + tar.addfile(ti, io.BytesIO(meta_bytes)) + return str(model_path) + + +def _write_csv(path, df: pd.DataFrame): + df.to_csv(path, index=False) + return str(path) + + +# ------------------------------- +# Tests: merge_response_cols_from_original +# ------------------------------- + +def test_merge_response_cols_happy_path_adds_missing_response_cols(): + feat_df = pd.DataFrame( + { + "cmpd_id": ["1", "2", "3"], + "feat1": [0.1, 0.2, 0.3], + } + ) + orig_df = pd.DataFrame( + { + "cmpd_id": ["1", "2", "3"], + "y": [10.0, 20.0, 30.0], + } + ) + + out = perf_plots.merge_response_cols_from_original( + feat_df, orig_df, id_col="cmpd_id", response_cols=["y"] + ) + + assert "y" in out.columns + assert out.loc[out.cmpd_id == "2", "y"].iloc[0] == 20.0 + + +def test_merge_response_cols_does_not_overwrite_existing_columns(): + feat_df = pd.DataFrame( + { + "cmpd_id": ["1", "2"], + "y": [999.0, 999.0], # pre-existing, should not be overwritten + } + ) + orig_df = pd.DataFrame({"cmpd_id": ["1", "2"], "y": [1.0, 2.0]}) + + out = perf_plots.merge_response_cols_from_original( + feat_df, orig_df, id_col="cmpd_id", response_cols=["y"] + ) + + assert out["y"].tolist() == [999.0, 999.0] + + +def test_merge_response_cols_raises_when_id_col_missing_in_feat(): + feat_df = pd.DataFrame({"not_id": [1, 2], "feat": [0.1, 0.2]}) + orig_df = pd.DataFrame({"cmpd_id": [1, 2], "y": [1.0, 2.0]}) + + with pytest.raises(KeyError): + perf_plots.merge_response_cols_from_original( + feat_df, orig_df, id_col="cmpd_id", response_cols=["y"] + ) + + +def test_merge_response_cols_missing_frac_exceeds_threshold_raises(): + # orig has 4 unique IDs, feat only contains 1 => 75% missing + feat_df = pd.DataFrame({"cmpd_id": ["1"], "feat": [0.1]}) + orig_df = pd.DataFrame({"cmpd_id": ["1", "2", "3", "4"], "y": [1, 2, 3, 4]}) + + with pytest.raises(ValueError, match="exceeds allowed"): + perf_plots.merge_response_cols_from_original( + feat_df, + orig_df, + id_col="cmpd_id", + response_cols=["y"], + max_missing_frac=0.10, + sample_n=2, + ) + + +def test_merge_response_cols_extra_ids_warns_by_default(): + feat_df = pd.DataFrame({"cmpd_id": ["1", "X"], "feat": [0.1, 0.9]}) + orig_df = pd.DataFrame({"cmpd_id": ["1"], "y": [1.0]}) + + # Keep missing_frac low: orig_set - feat_set = {} so missing_frac=0 + with pytest.warns(UserWarning, match="contains 1 unique compound IDs not found"): + perf_plots.merge_response_cols_from_original( + feat_df, + orig_df, + id_col="cmpd_id", + response_cols=["y"], + max_missing_frac=0.50, + error_on_extra_feat_ids=False, + ) + + +def test_merge_response_cols_extra_ids_raises_if_configured(): + feat_df = pd.DataFrame({"cmpd_id": ["1", "X"], "feat": [0.1, 0.9]}) + orig_df = pd.DataFrame({"cmpd_id": ["1"], "y": [1.0]}) + + with pytest.raises(ValueError, match="not found in original"): + perf_plots.merge_response_cols_from_original( + feat_df, + orig_df, + id_col="cmpd_id", + response_cols=["y"], + max_missing_frac=0.50, + error_on_extra_feat_ids=True, + ) + + +def test_merge_response_cols_coerces_id_to_str_by_default(): + feat_df = pd.DataFrame({"cmpd_id": [1, 2], "feat": [0.1, 0.2]}) + orig_df = pd.DataFrame({"cmpd_id": ["1", "2"], "y": [10.0, 20.0]}) + + out = perf_plots.merge_response_cols_from_original( + feat_df, orig_df, id_col="cmpd_id", response_cols=["y"], coerce_id_to_str=True + ) + assert out["y"].tolist() == [10.0, 20.0] + + +def test_merge_response_cols_returns_feat_unchanged_if_no_responses_available(): + feat_df = pd.DataFrame({"cmpd_id": ["1"], "feat": [0.1]}) + orig_df = pd.DataFrame({"cmpd_id": ["1"], "other": [9]}) + + out = perf_plots.merge_response_cols_from_original( + feat_df, orig_df, id_col="cmpd_id", response_cols=["y"] + ) + assert list(out.columns) == ["cmpd_id", "feat"] + + +# ------------------------------- +# Tests: plot_pred_vs_actual_from_file +# ------------------------------- + +def test_plot_pred_vs_actual_from_file_raises_for_classification(tmp_path): + # Minimal config for classification should raise early + dataset_csv = tmp_path / "data.csv" + _write_csv(dataset_csv, pd.DataFrame({"cmpd_id": ["1"], "smiles": ["C"], "y": [1]})) + + cfg = { + "model_parameters": {"prediction_type": "classification", "model_type": "rf", "featurizer": "ecfp"}, + "training_dataset": {"dataset_key": str(dataset_csv), "response_cols": ["y"], "id_col": "cmpd_id", "smiles_col": "smiles"}, + "splitting_parameters": {"split_uuid": "uuid", "splitter": "random", "split_strategy": "train_valid_test"}, + "training_metrics": [], + } + model_path = _make_model_tarball(tmp_path, cfg) + + with pytest.raises(ValueError, match="only be called for regression models"): + perf_plots.plot_pred_vs_actual_from_file(model_path) + + +def test_plot_pred_vs_actual_from_file_builds_figure_and_r2_titles(tmp_path, monkeypatch): + # Prepare dataset and split file + dataset_csv = tmp_path / "data.csv" + df = pd.DataFrame( + { + "cmpd_id": ["1", "2", "3", "4", "5", "6"], + "smiles": ["C", "CC", "CCC", "CCCC", "CCO", "CO"], + "y": [0.0, 1.0, 2.0, 3.0, 4.0, 5.0], + } + ) + _write_csv(dataset_csv, df) + + split_uuid = "split-uuid-123" + split_csv = tmp_path / f"anything_{split_uuid}_split.csv" + split_df = pd.DataFrame( + { + "cmpd_id": ["1", "2", "3", "4", "5", "6"], + "subset": ["train", "train", "valid", "valid", "test", "test"], + } + ) + _write_csv(split_csv, split_df) + + cfg = { + "model_parameters": { + "prediction_type": "regression", + "model_type": "rf", + "featurizer": "ecfp", + # keep uncertainty absent so error_bars becomes False even if requested + }, + "training_dataset": { + "dataset_key": str(dataset_csv), + "response_cols": ["y"], + "id_col": "cmpd_id", + "smiles_col": "smiles", + }, + "splitting_parameters": { + "split_uuid": split_uuid, + "splitter": "random", + "split_strategy": "train_valid_test", + }, + "training_metrics": [], + } + model_path = _make_model_tarball(tmp_path, cfg) + + # Patch safe_extract to allow tar extraction without depending on atomsci futils implementation + def _safe_extract_passthrough(tar, path): + tar.extractall(path=path) + + monkeypatch.setattr(perf_plots.futils, "safe_extract", _safe_extract_passthrough) + + # Patch prediction to return a dataframe with required columns: y_actual, y_pred and subset + def _fake_predict_from_model_file(model_path_in, input_df, **kwargs): + out = input_df.copy() + out["y_actual"] = out["y"].astype(float) + out["y_pred"] = out["y_actual"] # perfect predictions => r2 = 1.0 on each subset + return out + + monkeypatch.setattr(perf_plots.pfm, "predict_from_model_file", _fake_predict_from_model_file) + + fig = perf_plots.plot_pred_vs_actual_from_file(model_path, plot_size=3, error_bars=True) + assert fig is not None + + # Expect 1 response * 3 subsets = 3 axes + assert len(fig.axes) == 3 + + titles = [ax.get_title() for ax in fig.axes] + # First plot has "y train, R^2 = 1.000" style title, others "valid, R^2 = 1.000", "test, ..." + assert any("R^2" in t for t in titles) + assert any("1.000" in t for t in titles) + + plt.close(fig) + + +def test_plot_pred_vs_actual_from_file_uses_external_training_data(tmp_path, monkeypatch): + # Original dataset_key in metadata points to one CSV, but we override via external_training_data. + dataset_csv_original = tmp_path / "data_original.csv" + dataset_csv_external = tmp_path / "data_external.csv" + + df_orig = pd.DataFrame({"cmpd_id": ["1"], "smiles": ["C"], "y": [1.0]}) + _write_csv(dataset_csv_original, df_orig) + + df_ext = pd.DataFrame({ + "cmpd_id": ["1", "2", "3"], + "smiles": ["C", "CC", "CCC"], + "y": [2.0, 3.0, 4.0], + }) + _write_csv(dataset_csv_external, df_ext) + + split_uuid = "uuid2" + split_csv = tmp_path / f"split_{split_uuid}.csv" + _write_csv(split_csv, pd.DataFrame({ + "cmpd_id": ["1", "2", "3"], + "subset": ["train", "valid", "test"], + })) + + cfg = { + "model_parameters": {"prediction_type": "regression", "model_type": "rf", "featurizer": "ecfp"}, + "training_dataset": {"dataset_key": str(dataset_csv_original), "response_cols": ["y"], "id_col": "cmpd_id", "smiles_col": "smiles"}, + "splitting_parameters": {"split_uuid": split_uuid, "splitter": "random", "split_strategy": "train_valid_test"}, + "training_metrics": [], + } + model_path = _make_model_tarball(tmp_path, cfg) + + def _safe_extract_passthrough(tar, path): + tar.extractall(path=path) + + monkeypatch.setattr(perf_plots.futils, "safe_extract", _safe_extract_passthrough) + + seen = {"used_y": None} + + def _fake_predict_from_model_file(model_path_in, input_df, **kwargs): + # Record which dataset was used by checking y + seen["used_y"] = float(input_df["y"].iloc[0]) + out = input_df.copy() + out["y_actual"] = out["y"].astype(float) + out["y_pred"] = out["y_actual"] + return out + + monkeypatch.setattr(perf_plots.pfm, "predict_from_model_file", _fake_predict_from_model_file) + + fig = perf_plots.plot_pred_vs_actual_from_file( + model_path, + external_training_data=str(dataset_csv_external), + plot_size=3, + ) + + assert seen["used_y"] == 2.0 # proves override worked + plt.close(fig) + + +def test_plot_pred_vs_actual_from_file_descriptor_path_rewrite(tmp_path, monkeypatch): + # If featurizer is descriptors/computed_descriptors, function rewrites dataset path to scaled_descriptors/..._with__descriptors.csv + data_dir = tmp_path + orig = data_dir / "data.csv" + _write_csv(orig, pd.DataFrame({"cmpd_id": ["1"], "smiles": ["C"], "y": [1.0]})) + + # Create the expected rewritten file + scaled_dir = data_dir / "scaled_descriptors" + scaled_dir.mkdir() + rewritten = scaled_dir / "data_with_mordred_descriptors.csv" + + df_rewritten = pd.DataFrame({ + "cmpd_id": ["1", "2", "3"], + "smiles": ["C", "CC", "CCC"], + "y": [2.0, 3.0, 4.0], + }) + _write_csv(rewritten, df_rewritten) + + split_uuid = "uuid3" + split_csv = data_dir / f"split_{split_uuid}.csv" + _write_csv(split_csv, pd.DataFrame({ + "cmpd_id": ["1", "2", "3"], + "subset": ["train", "valid", "test"], + })) + + cfg = { + "model_parameters": {"prediction_type": "regression", "model_type": "rf", "featurizer": "descriptors"}, + "descriptor_specific": {"descriptor_type": "mordred"}, + "training_dataset": {"dataset_key": str(orig), "response_cols": ["y"], "id_col": "cmpd_id", "smiles_col": "smiles"}, + "splitting_parameters": {"split_uuid": split_uuid, "splitter": "random", "split_strategy": "train_valid_test"}, + "training_metrics": [], + } + model_path = _make_model_tarball(tmp_path, cfg) + + def _safe_extract_passthrough(tar, path): + tar.extractall(path=path) + + monkeypatch.setattr(perf_plots.futils, "safe_extract", _safe_extract_passthrough) + + # We must ensure merge_response_cols_from_original is exercised: rewritten df lacks y, orig has y. + def _fake_predict_from_model_file(model_path_in, input_df, **kwargs): + assert "y" in input_df.columns # confirms merge happened + out = input_df.copy() + out["y_actual"] = out["y"].astype(float) + out["y_pred"] = out["y_actual"] + return out + + monkeypatch.setattr(perf_plots.pfm, "predict_from_model_file", _fake_predict_from_model_file) + + fig = perf_plots.plot_pred_vs_actual_from_file(model_path, plot_size=3) + assert fig is not None + plt.close(fig) \ No newline at end of file diff --git a/atomsci/ddm/test/unit/test_prediction_order.py b/atomsci/ddm/test/unit/test_prediction_order.py index ae17a4ee..0caa4012 100644 --- a/atomsci/ddm/test/unit/test_prediction_order.py +++ b/atomsci/ddm/test/unit/test_prediction_order.py @@ -13,7 +13,7 @@ def test_predict_from_model(): """test that predict_from_model makes predictions in the same order as the input """ - model_path = '../../examples/BSEP/models/bsep_classif_scaffold_split.tar.gz' + model_path = '../../examples/BSEP/models/bsep_classif_scaffold_split_graphconv.tar.gz' csv_path = '../../examples/BSEP/data/ChEMBL25_BSEP_curated_data.csv' id_col = 'compound_id' @@ -44,7 +44,7 @@ def test_predict_full_dataset(): """test that predict_full_dataset makes predictions in the same order as the input """ - model_path = '../../examples/BSEP/models/bsep_classif_scaffold_split.tar.gz' + model_path = '../../examples/BSEP/models/bsep_classif_scaffold_split_graphconv.tar.gz' csv_path = '../../examples/BSEP/data/ChEMBL25_BSEP_curated_data.csv' id_col = 'compound_id' diff --git a/atomsci/ddm/test/unit/test_struct_utils.py b/atomsci/ddm/test/unit/test_struct_utils.py index e9ac3004..5ce7463e 100644 --- a/atomsci/ddm/test/unit/test_struct_utils.py +++ b/atomsci/ddm/test/unit/test_struct_utils.py @@ -20,13 +20,13 @@ def test_get_rdkit_smiles(): def test_rdkit_smiles_from_smiles(): result = su.rdkit_smiles_from_smiles(test_smiles, useCanonicalTautomers=True) - assert result == ['Brc1cc(O[C@@H]2C[C@H]3CC[C@@H](C2)N3)cc(-c2ccccc2)c1', - 'Brc1ccc(N2CCN(CCCCOc3ccc4ccccc4c3)CC2)cc1', + assert result == ['Brc1cc(O[C@@H]2C[C@H]3CC[C@@H](C2)N3)cc(-c2ccccc2)c1', + 'Brc1ccc(N2CCN(CCCCOc3ccc4ccccc4c3)CC2)cc1', 'Brc1ccc(N2CCN(CCCN3CCC(Cc4ccccc4)CC3)CC2)cc1'] result = su.rdkit_smiles_from_smiles(test_smiles, useCanonicalTautomers=False) assert result == ['Brc1cc(O[C@@H]2C[C@H]3CC[C@@H](C2)N3)cc(-c2ccccc2)c1', - 'Brc1ccc(N2CCN(CCCCOc3ccc4ccccc4c3)CC2)cc1', + 'Brc1ccc(N2CCN(CCCCOc3ccc4ccccc4c3)CC2)cc1', 'Brc1ccc(N2CCN(CCCN3CCC(Cc4ccccc4)CC3)CC2)cc1'] result = su.rdkit_smiles_from_smiles(test_smiles, useIsomericSmiles=False) @@ -157,7 +157,7 @@ def test_mol_wt_from_smiles(): def test_canonical_tautomers_from_smiles(): canonical_tautomers = [su.canonical_tautomers_from_smiles(s) for s in ['asdf']+test_smiles] - assert canonical_tautomers==[[''], + assert canonical_tautomers==[[''], ['Brc1cc(O[C@@H]2C[C@H]3CC[C@@H](C2)N3)cc(-c2ccccc2)c1'], ['Brc1ccc(N2CCN(CCCCOc3ccc4ccccc4c3)CC2)cc1'], ['Brc1ccc(N2CCN(CCCN3CCC(Cc4ccccc4)CC3)CC2)cc1']] @@ -177,4 +177,4 @@ def test_canonical_tautomers_from_smiles(): test_draw_structure() test_smiles_to_inchi_key() test_mol_wt_from_smiles() - test_canonical_tautomers_from_smiles() \ No newline at end of file + test_canonical_tautomers_from_smiles() diff --git a/atomsci/ddm/test/unit/test_transformers.py b/atomsci/ddm/test/unit/test_transformers.py index 69cfebd6..d3058c42 100644 --- a/atomsci/ddm/test/unit/test_transformers.py +++ b/atomsci/ddm/test/unit/test_transformers.py @@ -1,7 +1,61 @@ import atomsci.ddm.pipeline.transformations as trans +import atomsci.ddm.pipeline.parameter_parser as pp import numpy as np +import pandas as pd from deepchem.data import NumpyDataset +import pytest +from sklearn.preprocessing import RobustScaler, PowerTransformer + +def test_sklearn_pipeline_wrapper(): + """ + Creates a mock dataset. + Tests the SklearnTransformerWrapper with RobustScaler on X. + Tests the SklearnTransformerWrapper with PowerTransformer on y. + Tests the SklearnTransformerWrapper with RobustScaler on w. + Asserts that the transformed values match the expected values. + """ + # Create a mock dataset + X = np.array([[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]]) + y = np.array([[1.0], [3.0], [5.0]]) + w = np.array([[1.0], [1.0], [1.0]]) + ids = np.array(range(len(y))) + dataset = NumpyDataset(X=X, y=y, w=w, ids=ids) + + # Test with RobustScaler on X + scaler = RobustScaler() + transformer = trans.SklearnPipelineWrapper(dataset, scaler, transform_X=True) + transformed_dataset = transformer.transform(dataset) + expected_transformed_X = scaler.fit_transform(X) + np.testing.assert_array_almost_equal(transformed_dataset.X, expected_transformed_X) + + # Test untransform on X + with pytest.raises(NotImplementedError) as exception_info: + untransformed_X = transformer.untransform(transformed_dataset.X) + assert str(exception_info.value) == 'SklearnPipelineWrapper does not support inverse transforms' + + # Test with PowerTransformer on y + power_transformer = PowerTransformer() + transformer = trans.SklearnPipelineWrapper(dataset, power_transformer, transform_y=True) + transformed_dataset = transformer.transform(dataset) + expected_transformed_y = power_transformer.fit_transform(y) + np.testing.assert_array_almost_equal(transformed_dataset.y, expected_transformed_y) + + # Test untransform on y + with pytest.raises(NotImplementedError) as exception_info: + untransformed_y = transformer.untransform(transformed_dataset.y) + assert str(exception_info.value) == 'SklearnPipelineWrapper does not support inverse transforms' + + # Test with RobustScaler on w + transformer = trans.SklearnPipelineWrapper(dataset, scaler, transform_w=True) + transformed_dataset = transformer.transform(dataset) + expected_transformed_w = scaler.fit_transform(w) + np.testing.assert_array_almost_equal(transformed_dataset.w, expected_transformed_w) + + # Test untransform on w + with pytest.raises(NotImplementedError) as exception_info: + untransformed_w = transformer.untransform(transformed_dataset.w) + assert str(exception_info.value) == 'SklearnPipelineWrapper does not support inverse transforms' def test_no_missing_values(): """ @@ -162,3 +216,87 @@ def test_normalization_transformer_missing_data_transform_X(): expected_transformed_X = (X - expected_X_means) / expected_X_stds np.testing.assert_array_almost_equal(transformed_dataset.X, expected_transformed_X, decimal=6) +def test_create_feature_transformers(): + """Test the `create_feature_transformers` when params.transformers is None.""" + + params = pp.wrapper({}) + params.transformers = None + transformers_x = trans.create_feature_transformers( + params, + featurization = None, + train_dset = None + ) + + assert transformers_x == [] + +def test_zero_out_inf_nan_numpy_with_nonfinite_replaces_and_copies(): + x = np.array([1.0, np.nan, np.inf, -np.inf, 2.5], dtype=float) + y = trans.zero_out_inf_nan(x) + + assert isinstance(y, np.ndarray) + np.testing.assert_array_equal(y, np.array([1.0, 0.0, 0.0, 0.0, 2.5], dtype=float)) + + # Ensure it is a copy and original not mutated + assert y is not x + np.testing.assert_array_equal(x, np.array([1.0, np.nan, np.inf, -np.inf, 2.5], dtype=float)) + + +def test_zero_out_inf_nan_numpy_without_nonfinite_no_change_but_copy(): + x = np.array([1.0, 2.0, 3.0], dtype=float) + y = trans.zero_out_inf_nan(x) + + assert isinstance(y, np.ndarray) + np.testing.assert_array_equal(y, x) + assert y is not x + + +def test_zero_out_inf_nan_series_with_nonfinite_replaces_preserves_index_and_name(): + s = pd.Series([1.0, np.nan, np.inf, -np.inf], index=["a", "b", "c", "d"], name="vals") + out = trans.zero_out_inf_nan(s) + + assert isinstance(out, pd.Series) + assert out.name == "vals" + assert list(out.index) == ["a", "b", "c", "d"] + np.testing.assert_array_equal(out.values, np.array([1.0, 0.0, 0.0, 0.0], dtype=float)) + + # Original not mutated + assert np.isnan(s.loc["b"]) + assert np.isposinf(s.loc["c"]) + assert np.isneginf(s.loc["d"]) + + +def test_zero_out_inf_nan_series_without_nonfinite_no_change_values(): + s = pd.Series([1.0, 2.0], index=[10, 20], name="ok") + out = trans.zero_out_inf_nan(s) + + assert isinstance(out, pd.Series) + assert out.name == "ok" + assert list(out.index) == [10, 20] + np.testing.assert_array_equal(out.values, s.values) + + +def test_zero_out_inf_nan_dataframe_with_nonfinite_replaces_preserves_index_and_columns(): + df = pd.DataFrame( + {"c1": [1.0, np.nan], "c2": [np.inf, 4.0]}, + index=["r1", "r2"], + ) + out = trans.zero_out_inf_nan(df) + + assert isinstance(out, pd.DataFrame) + assert list(out.index) == ["r1", "r2"] + assert list(out.columns) == ["c1", "c2"] + np.testing.assert_array_equal(out.values, np.array([[1.0, 0.0], [0.0, 4.0]], dtype=float)) + + # Original not mutated + assert np.isnan(df.loc["r2", "c1"]) + assert np.isposinf(df.loc["r1", "c2"]) + + +def test_zero_out_inf_nan_dataframe_without_nonfinite_no_change_values(): + df = pd.DataFrame({"a": [1.0, 2.0], "b": [3.0, 4.0]}, index=[0, 1]) + out = trans.zero_out_inf_nan(df) + + assert isinstance(out, pd.DataFrame) + assert list(out.index) == [0, 1] + assert list(out.columns) == ["a", "b"] + np.testing.assert_array_equal(out.values, df.values) \ No newline at end of file diff --git a/atomsci/ddm/test/unit/utils_testing.py b/atomsci/ddm/test/unit/utils_testing.py index 84c29c8b..7f538288 100644 --- a/atomsci/ddm/test/unit/utils_testing.py +++ b/atomsci/ddm/test/unit/utils_testing.py @@ -20,10 +20,14 @@ def clean(): split_files = glob.glob('./*_train_valid_test_*') for f in split_files: - os.remove(f) + try: + os.remove(f) + except FileNotFoundError: + # Another worker may have already removed this file. + pass if os.path.exists('pytest'): - shutil.rmtree('pytest') + shutil.rmtree('pytest', ignore_errors=True) def datastore_status(): """Returns True if the datastore is down, False otherwise. Will figure out how to do this programmatically""" diff --git a/atomsci/ddm/utils/curate_data.py b/atomsci/ddm/utils/curate_data.py index 130adff6..3b9bc57c 100644 --- a/atomsci/ddm/utils/curate_data.py +++ b/atomsci/ddm/utils/curate_data.py @@ -519,10 +519,16 @@ def remove_outlier_replicates(df, response_col='pIC50', id_col='compound_id', ma max_diff_from_median (float): Maximum absolute difference from median value allowed for retained replicates. Returns: - result_df (DataFrame): Filtered data frame with outlier replicates removed. + result_df (DataFrame): Filtered data frame with outlier replicates removed. Rows with NaN values in the + response column are removed as a preprocessing step before outlier detection. """ - + + prev_len = len(df) + df = df.dropna(subset=[response_col]) + if prev_len != len(df): + print(f"Removed {prev_len - len(df)} rows with missing {response_col} values") + fr_df = freq_table(df, id_col, min_freq=2) rep_ids = fr_df[id_col].values.tolist() has_rep_df = df[df[id_col].isin(rep_ids)] diff --git a/atomsci/ddm/utils/generate_transformers.py b/atomsci/ddm/utils/generate_transformers.py new file mode 100644 index 00000000..7992c66e --- /dev/null +++ b/atomsci/ddm/utils/generate_transformers.py @@ -0,0 +1,235 @@ +import pickle +import glob +import os +import pandas as pd +import atomsci.ddm.pipeline.featurization as feat +import atomsci.ddm.pipeline.parameter_parser as pp +import atomsci.ddm.pipeline.model_datasets as model_datasets +import atomsci.ddm.pipeline.transformations as trans +import atomsci.ddm.utils.struct_utils as struct_utils +from deepchem.data import NumpyDataset +import numpy as np +import shutil +import sklearn.utils as sku +import logging +logging.basicConfig(format='%(asctime)-15s %(message)s') +log = logging.getLogger('ATOM') + + +def prepare_csv_and_descriptor_with_dummy_response(csv_path, descriptor_type, temp_root, split_uuid='split_uuid'): + """ + Copies the csv file and its descriptor file to a temp directory, preserving structure, + and adds a 'dummy_response' column of zeros to both. + + Args: + csv_path (str): Path to the original CSV file. + descriptor_type (str): Descriptor type to look for in the descriptor file name. + temp_root (str): Root of the temporary directory to copy files into. + split_uuid (str): Unique identifier for the split file to look for and copy if it exists. + + Returns: + (str, str): Paths to the new CSV and descriptor files in the temp directory. + """ + # Find descriptor file + csv_dir = os.path.dirname(csv_path) + csv_base = os.path.splitext(os.path.basename(csv_path))[0] + descriptor_dir = os.path.join(csv_dir, 'scaled_descriptors') + descriptor_pattern = f"{csv_base}_with_{descriptor_type}_descriptors.csv" + descriptor_path = os.path.join(descriptor_dir, descriptor_pattern) + copy_descriptor_csv = os.path.exists(descriptor_path) + + # Find split file if it exists + split_pattern = os.path.join(csv_dir, f'{csv_base}_*_{split_uuid}.csv') + split_files = glob.glob(split_pattern) + if len(split_files)>1: + raise RuntimeError(f'Multiple splits found {split_files}') + if len(split_files)>0 and len(split_uuid)>0: + split_csv = split_files[0] + split_base = os.path.basename(split_csv) + temp_split_csv = os.path.join(temp_root, split_base) + shutil.copy(split_csv, temp_split_csv) + + # Prepare destination paths + temp_csv_path = os.path.join(temp_root, os.path.basename(csv_path)) + temp_descriptor_dir = os.path.join(temp_root, 'scaled_descriptors') + os.makedirs(temp_descriptor_dir, exist_ok=True) + temp_descriptor_path = os.path.join(temp_descriptor_dir, os.path.basename(descriptor_path)) + + # Copy and add dummy_response to CSV + df_csv = pd.read_csv(csv_path) + df_csv['dummy_response'] = 0 + df_csv.to_csv(temp_csv_path, index=False) + + # Copy and add dummy_response to descriptor file + if copy_descriptor_csv: + df_desc = pd.read_csv(descriptor_path) + df_desc['dummy_response'] = 0 + df_desc.to_csv(temp_descriptor_path, index=False) + + return temp_csv_path + +def load_all_datasets( + transformer_dataset_key_configs, + featurizer, + descriptor_type +): + """Loads datasets from configs and builds NumpyDataset + + Args: + csvs_or_tuples (list): List of csv file paths or (csv_file, split_uuid) tuples. + featurizer (str): The featurizer type (e.g., 'ecfp', 'graphconv', 'computed_descriptors', etc.). + descriptor_type (str): Descriptor type (e.g., 'moe', 'rdkit_raw', etc.). + + Returns: + NumpyDataset + """ + featurized_datasets = [] + for ds_config in transformer_dataset_key_configs: + # Prepare params for this dataset + params_dict = dict() + params_dict.update(ds_config) + params_dict['featurizer'] = featurizer + params_dict['descriptor_type'] = descriptor_type + params_dict['feature_transform_type'] = 'Identity' + + # check if there is a split_uuid in the config + split_uuid = params_dict.get('split_uuid', None) + + params = pp.wrapper(params_dict) + dataset = model_datasets.create_and_load_model_dataset(params, ds_client=None) + + # If split_uuid is provided, use only the training subset + if split_uuid: + dataset.split_dataset() + train_dset = dataset.train_valid_dsets[0][0] + featurized_datasets.append(train_dset) + else: + # this is a NumpyDataset with all data + featurized_datasets.append(dataset.dataset) + + # Combine all dataframes for fitting transformers + combined_dataset = NumpyDataset( + X=np.vstack([d.X for d in featurized_datasets]), + y=np.vstack([d.y for d in featurized_datasets]), + ids=np.concatenate([d.ids for d in featurized_datasets]), + w=np.concatenate([d.w for d in featurized_datasets]) + ) + + return combined_dataset + +def filter_outlier_features(dataset_key, id_col, smiles_col, response_cols, featurizer, descriptor_type, threshold=1e10): + """Looks for compounds with very large descriptor values. + + Args: + dataset_key_configs (list): List of dataset key configuration dictionaries. + featurizer (str): The featurizer type (e.g., 'ecfp', 'graphconv', 'computed_descriptors', etc.). + descriptor_type (str): Descriptor type (e.g., 'moe', 'rdkit_raw', etc.). + threshold (float): Threshold for filtering large descriptor values. + + Returns: + DataFrame with outlier compound_ids, descriptor column names, and descriptor values that exceed the threshold. + """ + dataset_key_config = { + 'dataset_key': dataset_key, + 'id_col': id_col, + 'smiles_col': smiles_col, + 'response_cols': response_cols + } + params_dict = dict() + params_dict.update(dataset_key_config) + params_dict['featurizer'] = featurizer + params_dict['descriptor_type'] = descriptor_type + params_dict['feature_transform_type'] = 'Identity' + params_dict['verbose'] = True + + params = pp.wrapper(params_dict) + dataset = model_datasets.create_and_load_model_dataset(params, ds_client=None) + + abs_X = np.abs(dataset.dataset.X) + try: + sku.assert_all_finite(abs_X) + except ValueError: + # data contains inf or nan values + log.warning("SklearnPipelineWrapper: data contains NaN or Inf; replacing with zeros") + abs_X = trans.zero_out_inf_nan(abs_X) + + + large_values = np.argwhere(abs_X > threshold) + feature_cols = np.array(dataset.featurization.get_feature_columns()) + + return dataset.dataset.ids[large_values[:,0]], [feature_cols[i] for i in large_values[:,1]], [abs_X[i,j] for i,j in large_values] + +def filter_outlier_MW(dataset_key, smiles_col, threshold=1000, workers=8): + """Filters datasets and looks for compounds with very large molecular weights. + + Args: + dataset_key (str): Path to the dataset CSV file. + smiles_col (str): Name of the column containing SMILES strings. + threshold (float): Threshold for filtering large molecular weights. + workers (int): Number of workers to use for parallel processing in calculating molecular weights. + workers (int): Number of workers to use for parallel processing in calculating molecular weights. + + Returns: + List of SMILES with molecular weights that exceed the threshold. + + """ + # molecular weight > 1000 + # calculate molecular weight here. + dataset_df = pd.read_csv(dataset_key) + mol_weights = struct_utils.mol_wt_from_smiles(dataset_df[smiles_col].to_list(), workers=workers) + mw_large = np.argwhere(np.array(mol_weights) > threshold) + + return dataset_df[smiles_col].iloc[mw_large.flatten()].tolist() + +def build_and_save_feature_transformers_from_csvs( + transformer_dataset_key_configs, + dest_pkl_path, + featurizer, + descriptor_type, + feature_transform_type, + **kwargs +): + """ + Build feature transformers_x from a list of csv files (or csv+split_uuid tuples) and save them as a pickle file, + including the params object used to create them. This function saves feature transformers suitable for use + for one fold. + + Args: + transformer_dataset_key_configs (list): A list of dictionaries that contain information about each dataset_key such + as id_col, smiles_col, response_cols, split_uuids, etc. + dest_pkl_path (str): Path to save the pickle file. + featurizer (str): The featurizer type (e.g., 'ecfp', 'graphconv', 'computed_descriptors', etc.). + descriptor_type (str): Descriptor type (e.g., 'moe', 'rdkit_raw', etc.). + feature_transform_type (str): The type of transformer to use (e.g., 'RobustScaler', 'PowerTransformer', etc.). + **kwargs: Additional keyword arguments for transformer params. + + Returns: + None + """ + combined_dataset = load_all_datasets(transformer_dataset_key_configs=transformer_dataset_key_configs, featurizer=featurizer, descriptor_type=descriptor_type) + + # Build a single params object for transformer fitting + params_dict = dict( + featurizer=featurizer, + feature_transform_type=feature_transform_type, + descriptor_type=descriptor_type, + **kwargs + ) + params = pp.wrapper(params_dict) + featurization = feat.create_featurization(params) + + # Build the feature transformers (transformers_x) + transformers_x = featurization.create_feature_transformer(combined_dataset, params) + + # Save both transformers_x and params to a pickle file + # copy processed params back into params_dict in case wrapper + # updates them. + for k in params_dict.keys(): + if k in params.__dict__: + params_dict[k] = params.__dict__[k] + + params_dict['transformer_dataset_key_configs'] = transformer_dataset_key_configs + with open(dest_pkl_path, 'wb') as f: + pickle.dump({'transformers_x': transformers_x, 'params': params_dict}, f) + + print(f"Feature transformers_x and params saved to {dest_pkl_path}") \ No newline at end of file diff --git a/atomsci/ddm/utils/hyperparam_search_wrapper.py b/atomsci/ddm/utils/hyperparam_search_wrapper.py index 5e1d999e..1dbfc894 100755 --- a/atomsci/ddm/utils/hyperparam_search_wrapper.py +++ b/atomsci/ddm/utils/hyperparam_search_wrapper.py @@ -25,8 +25,9 @@ import traceback import copy import pickle +import math -from hyperopt import fmin, tpe, hp, Trials, STATUS_OK +import optuna from atomsci.ddm.pipeline import featurization as feat from atomsci.ddm.pipeline import model_pipeline as mp @@ -34,8 +35,9 @@ from atomsci.ddm.pipeline import model_datasets as model_datasets from atomsci.ddm.utils import datastore_functions as dsf from atomsci.ddm.pipeline import model_tracker as trkr -logging.basicConfig(format='%(asctime)-15s %(message)s') +logging.basicConfig(format='%(asctime)-15s %(message)s') +optuna.logging.set_verbosity(optuna.logging.WARNING) def run_command(shell_script, python_path, script_dir, params): @@ -135,8 +137,6 @@ def reformat_filter_dict(filter_dict): 'training_dataset': {'bucket', 'dataset_key', 'dataset_oid', 'num_classes','feature_transform_type', 'response_transform_type', 'id_col', 'smiles_col', 'response_cols'}, - 'umap_specific': - {'umap_dim', 'umap_metric', 'umap_min_dist', 'umap_neighbors','umap_targ_wt'} } if filter_dict['model_type'] == 'NN': rename_dict['nn_specific'] = {'baseline_epoch', 'batch_size', 'best_epoch', 'bias_init_consts','dropouts', @@ -270,7 +270,6 @@ def __init__(self, params): self.hyperparam_layers = {'layer_sizes', 'dropouts', 'weight_init_stddevs', 'bias_init_consts'} self.hyperparam_keys = {'model_type', 'featurizer', 'splitter', 'learning_rate', 'weight_decay_penalty', 'rf_estimators', 'rf_max_features', 'rf_max_depth', - 'umap_dim', 'umap_targ_wt', 'umap_metric', 'umap_neighbors', 'umap_min_dist', 'xgb_learning_rate', 'xgb_gamma'} self.nn_specific_keys = {'learning_rate', 'layers','weight_decay_penalty'} @@ -1291,27 +1290,51 @@ def generate_combo(self, params_dict): new_dict[key] = value return new_dict -def build_hyperopt_search_domain(label, method, param_list): - """Generate HyperOpt search domain object from method and parameters, layer_nums is only for NN models. - This function is used by the HyperOptSearch class, not intended for standalone usage. +def build_optuna_suggest(trial, label, method, param_list): + """Sample a hyperparameter value from an Optuna trial using the specified distribution. + + Translates the same ``method|params`` format used across AMPL config files into the + corresponding ``trial.suggest_*`` call. This function is used by the OptunaSearch class + and is not intended for standalone usage. + + Note: ``loguniform`` param_list values must be in natural-log scale (matching the legacy + hyperopt convention), e.g. ``[-13.8, -6.9]``. They are converted to actual-scale bounds + via ``math.exp()`` before being passed to Optuna. + + Args: + trial: An :class:`optuna.trial.Trial` object. + label (str): Name of the hyperparameter (used as the Optuna parameter name). + method (str): Sampling method — one of ``'choice'``, ``'uniform'``, + ``'loguniform'``, or ``'uniformint'``. + param_list (list): Parameters for the chosen method: + - ``choice``: list of candidate values. + - ``uniform``/``loguniform``/``uniformint``: ``[low, high]``. + + Returns: + The sampled value. + + Raises: + ValueError: If *method* is not one of the supported options. """ if method == "choice": - return hp.choice(label, param_list) + return trial.suggest_categorical(label, param_list) elif method == "uniform": - return hp.uniform(label, param_list[0], param_list[1]) + return trial.suggest_float(label, param_list[0], param_list[1]) elif method == "loguniform": - return hp.loguniform(label, param_list[0], param_list[1]) + # param_list values are in natural-log scale (legacy hyperopt convention); + # Optuna expects actual-scale bounds with log=True. + return trial.suggest_float(label, math.exp(param_list[0]), math.exp(param_list[1]), log=True) elif method == "uniformint": - return hp.uniformint(label, param_list[0], param_list[1]) + return trial.suggest_int(label, int(param_list[0]), int(param_list[1])) else: - raise Exception(f"Method {method} is not supported, choose from 'choice, uniform, loguniform, uniformint'.") + raise ValueError(f"Method {method} is not supported, choose from 'choice, uniform, loguniform, uniformint'.") -class HyperOptSearch(): - """Perform hyperparameter search with Bayesian Optmization (Tree Parzen Estimator) +class OptunaSearch(): + """Perform hyperparameter search with Bayesian Optimization (Tree Parzen Estimator) using Optuna. - To use HyperOptSearch, modify the config json file as follows: + To use OptunaSearch, modify the config json file as follows: - serach_type: use "hyperopt" + search_type: use "hyperopt" result_dir: use two directories (recommended), separated by comma, 1st one will be used to save the best model tarball, 2nd one will be used to store all models during the process. e.g. "result_dir": "/path/of/the/final/dir,/path/of/the/temp/dir" @@ -1320,7 +1343,7 @@ class HyperOptSearch(): lr: specify learning rate searching method and related parameters as the following scheme. method|parameter1,parameter2... - method: supported searching schemes in HyperOpt include: choice, uniform, loguniform, and uniformint, see https://github.com/hyperopt/hyperopt/wiki/FMin for details. + method: supported searching schemes include: choice, uniform, loguniform, and uniformint. See Optuna documentation for details. parameters: choice: all values to search from, separated by comma, e.g. choice|0.0001,0.0005,0.0002,0.001 @@ -1365,136 +1388,9 @@ def __init__(self, params): else: self.max_eval = 100 - #define the searching space - self.space = {} - if isinstance(self.params.featurizer, list): - self.space["featurizer"] = build_hyperopt_search_domain("featurizer", "choice", self.params.featurizer) - if isinstance(self.params.descriptor_type, list): - self.space["descriptor_type"] = build_hyperopt_search_domain("descriptor_type", "choice", self.params.descriptor_type) - if self.params.model_type == "RF": - #build searching domain for RF parameters - if self.params.rfe: - domain_list = self.params.rfe.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["rf_estimators"] = build_hyperopt_search_domain("rf_estimators", method, par_list) - - if self.params.rfd: - domain_list = self.params.rfd.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["rf_max_depth"] = build_hyperopt_search_domain("rf_max_depth", method, par_list) - - if self.params.rff: - domain_list = self.params.rff.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["rf_max_features"] = build_hyperopt_search_domain("rf_max_features", method, par_list) - elif self.params.model_type == "NN": - #build searching domain for NN parameters - if self.params.lr: - domain_list = self.params.lr.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["learning_rate"] = build_hyperopt_search_domain("learning_rate", method, par_list) - - # for layer sizes, use a different method if the ls_ratio is provided - if self.params.ls: - domain_list = self.params.ls.split("|") - method = domain_list[0] - num_layer = int(domain_list[1]) - par_list = [float(e) for e in domain_list[2].split(",")] - if not self.params.ls_ratio: - for i in range(num_layer): - self.space[f"ls{i}"] = build_hyperopt_search_domain(f"ls{i}", method, par_list) - else: - self.space["ls"] = build_hyperopt_search_domain("ls", method, par_list) - domain_list = self.params.ls_ratio.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[-1].split(",")] - for i in range(1,num_layer): - self.space[f"ratio{i}"] = build_hyperopt_search_domain(f"ratio{i}", method, par_list) - - # dropouts - if self.params.dp: - domain_list = self.params.dp.split("|") - method = domain_list[0] - num_layer = int(domain_list[1]) - par_list = [float(e) for e in domain_list[2].split(",")] - for i in range(num_layer): - self.space[f"dp{i}"] = build_hyperopt_search_domain(f"dp{i}", method, par_list) - - # weight decay penalty - if self.params.wdp: - domain_list = self.params.wdp.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["weight_decay_penalty"] = build_hyperopt_search_domain("weight_decay_penalty", method, par_list) - - # weight decay penalty type - if self.params.wdt: - domain_list = self.params.wdt.split("|") - method = domain_list[0] - par_list = domain_list[1].split(",") - self.space["weight_decay_penalty_type"] = build_hyperopt_search_domain("weight_decay_penalty_type", method, par_list) - - elif self.params.model_type == "xgboost": - #build searching domain for XGBoost parameters - if self.params.xgbg: - domain_list = self.params.xgbg.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["xgbg"] = build_hyperopt_search_domain("xgbg", method, par_list) - - if self.params.xgba: - domain_list = self.params.xgba.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["xgba"] = build_hyperopt_search_domain("xgba", method, par_list) - - if self.params.xgbb: - domain_list = self.params.xgbb.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["xgbb"] = build_hyperopt_search_domain("xgbb", method, par_list) - - if self.params.xgbl: - domain_list = self.params.xgbl.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["xgbl"] = build_hyperopt_search_domain("xgbl", method, par_list) - - if self.params.xgbd: - domain_list = self.params.xgbd.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["xgbd"] = build_hyperopt_search_domain("xgbd", method, par_list) - - if self.params.xgbc: - domain_list = self.params.xgbc.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["xgbc"] = build_hyperopt_search_domain("xgbc", method, par_list) - - if self.params.xgbs: - domain_list = self.params.xgbs.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["xgbs"] = build_hyperopt_search_domain("xgbs", method, par_list) - - if self.params.xgbn: - domain_list = self.params.xgbn.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["xgbn"] = build_hyperopt_search_domain("xgbn", method, par_list) - - if self.params.xgbw: - domain_list = self.params.xgbw.split("|") - method = domain_list[0] - par_list = [float(e) for e in domain_list[1].split(",")] - self.space["xgbw"] = build_hyperopt_search_domain("xgbw", method, par_list) - - self.log = logging.getLogger("hyperopt_search") + # The search space is now built inside the objective() function at call time, + # using trial.suggest_* calls rather than a pre-built space dictionary. + self.log = logging.getLogger("optuna_search") def run_search(self): @@ -1506,16 +1402,80 @@ def run_search(self): else: fd = f"{feat}_{desc}" - def lossfn(p): + def objective(trial): + # Build a local param dict by sampling from the trial using build_optuna_suggest. + # This mirrors the old hyperopt approach where fmin populated a dict p for lossfn. + p = {} + if isinstance(self.params.featurizer, list): + p["featurizer"] = trial.suggest_categorical("featurizer", self.params.featurizer) + if isinstance(self.params.descriptor_type, list): + p["descriptor_type"] = trial.suggest_categorical("descriptor_type", self.params.descriptor_type) + + if self.params.model_type == "RF": + if self.params.rfe: + dl = self.params.rfe.split("|") + p["rf_estimators"] = build_optuna_suggest(trial, "rf_estimators", dl[0], [float(e) for e in dl[1].split(",")]) + if self.params.rfd: + dl = self.params.rfd.split("|") + p["rf_max_depth"] = build_optuna_suggest(trial, "rf_max_depth", dl[0], [float(e) for e in dl[1].split(",")]) + if self.params.rff: + dl = self.params.rff.split("|") + p["rf_max_features"] = build_optuna_suggest(trial, "rf_max_features", dl[0], [float(e) for e in dl[1].split(",")]) + elif self.params.model_type == "NN": + if self.params.lr: + dl = self.params.lr.split("|") + p["learning_rate"] = build_optuna_suggest(trial, "learning_rate", dl[0], [float(e) for e in dl[1].split(",")]) + # for layer sizes, use a different method if the ls_ratio is provided + if self.params.ls: + dl = self.params.ls.split("|") + ls_method = dl[0] + num_layer = int(dl[1]) + ls_par_list = [float(e) for e in dl[2].split(",")] + if not self.params.ls_ratio: + for i in range(num_layer): + p[f"ls{i}"] = build_optuna_suggest(trial, f"ls{i}", ls_method, ls_par_list) + else: + p["ls"] = build_optuna_suggest(trial, "ls", ls_method, ls_par_list) + ratio_dl = self.params.ls_ratio.split("|") + ratio_par_list = [float(e) for e in ratio_dl[-1].split(",")] + for i in range(1, num_layer): + p[f"ratio{i}"] = build_optuna_suggest(trial, f"ratio{i}", ratio_dl[0], ratio_par_list) + # dropouts + if self.params.dp: + dl = self.params.dp.split("|") + dp_method = dl[0] + num_layer = int(dl[1]) + dp_par_list = [float(e) for e in dl[2].split(",")] + for i in range(num_layer): + p[f"dp{i}"] = build_optuna_suggest(trial, f"dp{i}", dp_method, dp_par_list) + # weight decay penalty + if self.params.wdp: + dl = self.params.wdp.split("|") + p["weight_decay_penalty"] = build_optuna_suggest(trial, "weight_decay_penalty", dl[0], [float(e) for e in dl[1].split(",")]) + # weight decay penalty type + if self.params.wdt: + dl = self.params.wdt.split("|") + p["weight_decay_penalty_type"] = build_optuna_suggest(trial, "weight_decay_penalty_type", dl[0], dl[1].split(",")) + elif self.params.model_type == "xgboost": + xgb_map = [ + ("xgbg", "xgbg"), ("xgba", "xgba"), ("xgbb", "xgbb"), ("xgbl", "xgbl"), + ("xgbd", "xgbd"), ("xgbc", "xgbc"), ("xgbs", "xgbs"), ("xgbn", "xgbn"), ("xgbw", "xgbw"), + ] + for short, label in xgb_map: + val_str = getattr(self.params, short, None) + if val_str: + dl = val_str.split("|") + p[label] = build_optuna_suggest(trial, label, dl[0], [float(e) for e in dl[1].split(",")]) + + # Assign sampled values back to self.params — logic identical to the old lossfn(p) if "featurizer" in p: self.params.featurizer = p["featurizer"] - if "descriptor_type" in p: self.params.descriptor_type = p["descriptor_type"] if self.params.model_type == "RF": if self.params.rfe: - self.params.rf_estimators = p["rf_estimators"] + self.params.rf_estimators = p["rf_estimators"] if self.params.rfd: self.params.rf_max_depth = p["rf_max_depth"] if self.params.rff: @@ -1536,7 +1496,7 @@ def lossfn(p): self.params.layer_sizes = ",".join([str(p[e]) for e in p if e[:2] == "ls"]) else: list_layer_sizes = [p["ls"]] - for i in range(1,len([e for e in p if e[:5] == "ratio"])+1): + for i in range(1, len([e for e in p if e[:5] == "ratio"]) + 1): list_layer_sizes.append(int(list_layer_sizes[-1] * p[f"ratio{i}"])) self.params.layer_sizes = ",".join([str(e) for e in list_layer_sizes]) hp_params = f'{self.params.learning_rate}_{self.params.layer_sizes}_{self.params.dropouts}_{self.params.weight_decay_penalty_type}_{self.params.weight_decay_penalty}' @@ -1589,7 +1549,7 @@ def lossfn(p): tparam = parse.wrapper(self.params.__dict__) print(f"{self.params.model_type} model with {self.params.featurizer} and {self.params.descriptor_type}") - # make sure classification model has uncertainty as False. + # make sure classification model has uncertainty as False. if tparam.prediction_type != "regression": tparam.uncertainty = False pl = mp.ModelPipeline(tparam) @@ -1598,7 +1558,7 @@ def lossfn(p): try: pl.train_model() except Exception: - self.log.exception('Exception found during hyperopt training') + self.log.exception('Exception found during Optuna training') model_failed = True subsets = ["train", "valid", "test"] @@ -1614,31 +1574,54 @@ def lossfn(p): sub_pred_results = {"roc_auc_score": 0, "accuracy_score": 0} if tparam.prediction_type == "regression": - pred_results[subset]["r2"] = sub_pred_results['r2_score'] - pred_results[subset]["rms"] = sub_pred_results['rms_score'] + r2_score = sub_pred_results.get('r2_score', np.nan) + rms_score = sub_pred_results.get('rms_score', np.nan) + if not np.isfinite(r2_score): + r2_score = 0 + if not np.isfinite(rms_score): + rms_score = 100 + pred_results[subset]["r2"] = r2_score + pred_results[subset]["rms"] = rms_score else: - pred_results[subset]["roc_auc"] = sub_pred_results["roc_auc_score"] - pred_results[subset]["acc"] = sub_pred_results["accuracy_score"] + roc_auc_score = sub_pred_results.get("roc_auc_score", np.nan) + accuracy_score = sub_pred_results.get("accuracy_score", np.nan) + if not np.isfinite(roc_auc_score): + roc_auc_score = 0 + if not np.isfinite(accuracy_score): + accuracy_score = 0 + pred_results[subset]["roc_auc"] = roc_auc_score + pred_results[subset]["acc"] = accuracy_score + + # Store per-trial extras as user attributes; return the scalar loss for Optuna. + trial.set_user_attr("model", tparam.model_tarball_path) + trial.set_user_attr("featurizer", tparam.featurizer) + trial.set_user_attr("desc", tparam.descriptor_type) + trial.set_user_attr("hp_params", hp_params) if tparam.prediction_type == "regression": - res_dict = {'loss': 1-pred_results["valid"]["r2"], 'status': STATUS_OK, 'model': tparam.model_tarball_path, 'featurizer': tparam.featurizer, 'desc': tparam.descriptor_type} + loss = 1 - pred_results["valid"]["r2"] for subset in subsets: - res_dict[f"{subset}_r2"] = pred_results[subset]["r2"] - res_dict[f"{subset}_rms"] = pred_results[subset]["rms"] + trial.set_user_attr(f"{subset}_r2", pred_results[subset]["r2"]) + trial.set_user_attr(f"{subset}_rms", pred_results[subset]["rms"]) else: - res_dict = {'loss': 100-pred_results["valid"]["roc_auc"], 'status': STATUS_OK, 'model': tparam.model_tarball_path, 'featurizer': tparam.featurizer, 'desc': tparam.descriptor_type} + loss = 100 - pred_results["valid"]["roc_auc"] for subset in subsets: - res_dict[f"{subset}_roc_auc"] = pred_results[subset]["roc_auc"] - res_dict[f"{subset}_acc"] = pred_results[subset]["acc"] - res_dict["hp_params"] = hp_params + trial.set_user_attr(f"{subset}_roc_auc", pred_results[subset]["roc_auc"]) + trial.set_user_attr(f"{subset}_acc", pred_results[subset]["acc"]) # print the model metrics as logs print() if tparam.prediction_type == "regression": - print(f'model_performance|{res_dict["train_r2"]:.3f}|{res_dict["train_rms"]:.3f}|{res_dict["valid_r2"]:.3f}|{res_dict["valid_rms"]:.3f}|{res_dict["test_r2"]:.3f}|{res_dict["test_rms"]:.3f}|{res_dict["hp_params"]}|{res_dict["model"]}\n') + print(f'model_performance|{pred_results["train"]["r2"]:.3f}|{pred_results["train"]["rms"]:.3f}' + f'|{pred_results["valid"]["r2"]:.3f}|{pred_results["valid"]["rms"]:.3f}' + f'|{pred_results["test"]["r2"]:.3f}|{pred_results["test"]["rms"]:.3f}' + f'|{hp_params}|{tparam.model_tarball_path}\n') else: - print(f'model_performance|{res_dict["train_roc_auc"]:.3f}|{res_dict["train_acc"]:.3f}|{res_dict["valid_roc_auc"]:.3f}|{res_dict["valid_acc"]:.3f}|{res_dict["test_roc_auc"]:.3f}|{res_dict["test_acc"]:.3f}|{res_dict["hp_params"]}|{res_dict["model"]}\n') + print(f'model_performance|{pred_results["train"]["roc_auc"]:.3f}|{pred_results["train"]["acc"]:.3f}' + f'|{pred_results["valid"]["roc_auc"]:.3f}|{pred_results["valid"]["acc"]:.3f}' + f'|{pred_results["test"]["roc_auc"]:.3f}|{pred_results["test"]["acc"]:.3f}' + f'|{hp_params}|{tparam.model_tarball_path}\n') - return res_dict + return loss if self.params.prediction_type == "regression": print('model_performance|train_r2|train_rms|valid_r2|valid_rms|test_r2|test_rms|model_params|model\n') @@ -1646,58 +1629,57 @@ def lossfn(p): print('model_performance|train_roc_auc|train_acc|valid_roc_auc|valid_acc|test_roc_auc|test_acc|model_params|model\n') if self.params.hp_checkpoint_load is not None and os.path.isfile(self.params.hp_checkpoint_load): - print(f"load hpo trial object from {self.params.hp_checkpoint_load}") + print(f"load hpo study object from {self.params.hp_checkpoint_load}") with open(self.params.hp_checkpoint_load, "rb") as f: - trials = pickle.load(f) + study = pickle.load(f) else: - trials = Trials() + study = optuna.create_study(direction='minimize') if self.params.hp_checkpoint_save is not None: print("hp_checkpoint_save provided, save a checkpoint file every 5 trials.") - max_evals = 5 while True: if os.path.isfile(self.params.hp_checkpoint_save): - print(f"load hpo trial object from {self.params.hp_checkpoint_save}") + print(f"load hpo study object from {self.params.hp_checkpoint_save}") with open(self.params.hp_checkpoint_save, "rb") as f: - trials = pickle.load(f) - max_evals = min(len(trials) + 5, self.max_eval) - else: - max_evals = min(max_evals, self.max_eval) + study = pickle.load(f) + n_done = len(study.trials) + n_new = min(5, self.max_eval - n_done) - _best = fmin(lossfn, self.space, algo=tpe.suggest, max_evals=max_evals, trials=trials) + study.optimize(objective, n_trials=n_new) - print(f"Save HPO trial object to {self.params.hp_checkpoint_save}") + print(f"Save HPO study object to {self.params.hp_checkpoint_save}") with open(self.params.hp_checkpoint_save, "wb") as f: - pickle.dump(trials, f) + pickle.dump(study, f) - if max_evals == self.max_eval: + if len(study.trials) >= self.max_eval: break else: - _best = fmin(lossfn, self.space, algo=tpe.suggest, max_evals=self.max_eval, trials=trials) + study.optimize(objective, n_trials=self.max_eval) print("Generating the performance -- iteration table and Copy the best model tarball.") - feat_list = [trials.trials[i]["result"]["featurizer"] for i in range(len(trials.trials))] - desc_list = [trials.trials[i]["result"]["desc"] for i in range(len(trials.trials))] - hp_params_list = [trials.trials[i]["result"]["hp_params"] for i in range(len(trials.trials))] - trial_data = {"trial": list(range(len(trials.trials))), "featurizer": feat_list, "descriptor": desc_list, "model_params": hp_params_list} + n_trials = len(study.trials) + feat_list = [study.trials[i].user_attrs["featurizer"] for i in range(n_trials)] + desc_list = [study.trials[i].user_attrs["desc"] for i in range(n_trials)] + hp_params_list = [study.trials[i].user_attrs["hp_params"] for i in range(n_trials)] + trial_data = {"trial": list(range(n_trials)), "featurizer": feat_list, "descriptor": desc_list, "model_params": hp_params_list} subsets = ["train", "valid", "test"] for subset in subsets: if self.params.prediction_type == "regression": - trial_data[f"{subset}_r2"] = [trials.trials[i]["result"][f"{subset}_r2"] for i in range(len(trials.trials))] - trial_data[f"{subset}_rms"] = [trials.trials[i]["result"][f"{subset}_rms"] for i in range(len(trials.trials))] + trial_data[f"{subset}_r2"] = [study.trials[i].user_attrs[f"{subset}_r2"] for i in range(n_trials)] + trial_data[f"{subset}_rms"] = [study.trials[i].user_attrs[f"{subset}_rms"] for i in range(n_trials)] else: - trial_data[f"{subset}_roc_auc"] = [trials.trials[i]["result"][f"{subset}_roc_auc"] for i in range(len(trials.trials))] - trial_data[f"{subset}_acc"] = [trials.trials[i]["result"][f"{subset}_acc"] for i in range(len(trials.trials))] + trial_data[f"{subset}_roc_auc"] = [study.trials[i].user_attrs[f"{subset}_roc_auc"] for i in range(n_trials)] + trial_data[f"{subset}_acc"] = [study.trials[i].user_attrs[f"{subset}_acc"] for i in range(n_trials)] perf = pd.DataFrame(trial_data) if self.params.prediction_type == "regression": best_trial = perf.sort_values(by="valid_r2", ascending=False)["trial"].iloc[0] - best_model = trials.trials[best_trial]["result"]["model"] + best_model = study.trials[best_trial].user_attrs["model"] print(f'Best model: {best_model}, valid R2: {perf.sort_values(by="valid_r2", ascending=False)["valid_r2"].iloc[0]}') else: best_trial = perf.sort_values(by="valid_roc_auc", ascending=False)["trial"].iloc[0] - best_model = trials.trials[best_trial]["result"]["model"] + best_model = study.trials[best_trial].user_attrs["model"] print(f'Best model: {best_model}, valid ROC_AUC: {perf.sort_values(by="valid_roc_auc", ascending=False)["valid_roc_auc"].iloc[0]}') bmodel_prefix = "_".join(os.path.basename(best_model).split("_")[:-1]) @@ -1707,7 +1689,7 @@ def lossfn(p): if os.path.isfile(best_model): # if the model tracker is used, the model won't be saved to the result_dir shutil.copy2(best_model, os.path.join(self.final_dir, - f"best_{self.params.prediction_type}_{bmodel_prefix}_{self.params.model_type}_{fd}_{bmodel_uuid}.tar.gz")) + f"best_{self.params.prediction_type}_{bmodel_prefix}_{self.params.model_type}_{fd}_{bmodel_uuid}.tar.gz")) def parse_params(param_list): """Parse paramters @@ -1780,7 +1762,7 @@ def build_search(params): elif params.search_type == 'user_specified': hs = UserSpecifiedSearch(params) elif params.search_type == 'hyperopt': - hs = HyperOptSearch(params) + hs = OptunaSearch(params) else: print("Incorrect search type specified") sys.exit(1) diff --git a/atomsci/ddm/utils/model_file_reader.py b/atomsci/ddm/utils/model_file_reader.py index 87bfee9b..fb073869 100644 --- a/atomsci/ddm/utils/model_file_reader.py +++ b/atomsci/ddm/utils/model_file_reader.py @@ -91,6 +91,61 @@ def get_model_parameters(self): """ return self.metadata_dict.get("model_parameters") + def get_transformer_specific_parameters(self): + """Returns: + (str): embedding specific parameters + + """ + return self.metadata_dict.get("transformer_specific") + + def get_robustscaler_with_centering(self): + """Returns: + (bool): robustscaler_with_centering + """ + return self.get_transformer_specific_parameters().get("robustscaler_with_centering") + + def get_robustscaler_with_scaling(self): + """Returns: + (bool): robustscaler_with_scaling + """ + return self.get_transformer_specific_parameters().get("robustscaler_with_scaling") + + def get_robustscaler_quartile_range(self): + """Returns: + (list[float]): robustscaler_quartile_range + """ + return self.get_transformer_specific_parameters().get("robustscaler_quartile_range") + + def get_robustscaler_unit_variance(self): + """Returns: + (bool): robustscaler_unit_variance + """ + return self.get_transformer_specific_parameters().get("robustscaler_unit_variance") + + def get_powertransformer_method(self): + """Returns: + (str): powertransformer_method + """ + return self.get_transformer_specific_parameters().get("powertransformer_method") + + def get_powertransformer_standardize(self): + """Returns: + (bool): powertransformer_standardize + """ + return self.get_transformer_specific_parameters().get("powertransformer_standardize") + + def get_imputer_strategy(self): + """Returns: + (str): imputer_strategy + """ + return self.get_transformer_specific_parameters().get("imputer_strategy") + + def get_transformer_dataset_key_configs(self): + """Returns: + (str): transformer_dataset_key_configs + """ + return self.get_transformer_specific_parameters().get("transformer_dataset_key_configs") + def get_embedding_specific_parameters(self): """Returns: (str): embedding specific parameters @@ -104,7 +159,6 @@ def get_embedding_model_uuid(self): """ return self.get_embedding_specific_parameters().get("embedding_model_uuid") - def get_embedding_model_path(self): """Returns: (str): embedding_model_path diff --git a/atomsci/ddm/utils/model_version_utils.py b/atomsci/ddm/utils/model_version_utils.py index a548aebc..486f1e02 100644 --- a/atomsci/ddm/utils/model_version_utils.py +++ b/atomsci/ddm/utils/model_version_utils.py @@ -35,7 +35,7 @@ # ampl versions compatible groups -comp_dict = { '1.2': 'group1', '1.3': 'group1', '1.4': 'group2', '1.5': 'group3', '1.6': 'group3', '1.7': 'group3' } +comp_dict = { '1.2': 'group1', '1.3': 'group1', '1.4': 'group2', '1.5': 'group3', '1.6': 'group3', '1.7': 'group3', '1.8': 'group3' } version_pattern = re.compile(r"[\d.]+") def get_ampl_version(): diff --git a/atomsci/ddm/utils/struct_utils.py b/atomsci/ddm/utils/struct_utils.py index 5cafe4f7..1624ee9c 100644 --- a/atomsci/ddm/utils/struct_utils.py +++ b/atomsci/ddm/utils/struct_utils.py @@ -7,15 +7,13 @@ import re import numpy as np -import molvs import logging from rdkit import Chem from rdkit.Chem import AllChem, Draw, Descriptors from rdkit.Chem.MolStandardize import rdMolStandardize -stdizer = molvs.standardize.Standardizer(prefer_organic=True) -uncharger = molvs.charge.Uncharger() +uncharger = rdMolStandardize.Uncharger() def get_rdkit_smiles(orig_smiles, useIsomericSmiles=True): @@ -34,13 +32,12 @@ def get_rdkit_smiles(orig_smiles, useIsomericSmiles=True): mol = Chem.MolFromSmiles(orig_smiles) if mol is None: return "" - else: - return Chem.MolToSmiles(mol, isomericSmiles=useIsomericSmiles) + return Chem.MolToSmiles(mol, isomericSmiles=useIsomericSmiles) def rdkit_smiles_from_smiles(orig_smiles, useIsomericSmiles=True, useCanonicalTautomers=False, workers=1): """Parallel version of get_rdkit_smiles. If orig_smiles is a list and workers is > 1, spawn 'workers' - threads to convert input SMILES strings to standardized RDKit format. + processes to convert input SMILES strings to standardized RDKit format. Args: orig_smiles (list or str): List of SMILES strings to canonicalize. @@ -59,7 +56,7 @@ def rdkit_smiles_from_smiles(orig_smiles, useIsomericSmiles=True, useCanonicalTa if isinstance(orig_smiles, list): from functools import partial - func = partial(rdkit_smiles_from_smiles, useIsomericSmiles=useIsomericSmiles, + func = partial(rdkit_smiles_from_smiles, useIsomericSmiles=useIsomericSmiles, useCanonicalTautomers=useCanonicalTautomers) if workers > 1: from multiprocessing import pool @@ -85,7 +82,7 @@ def rdkit_smiles_from_smiles(orig_smiles, useIsomericSmiles=True, useCanonicalTa def mols_from_smiles(orig_smiles, workers=1): """Parallel function to create RDKit Mol objects for a list of SMILES strings. If orig_smiles is a list - and workers is > 1, spawn 'workers' threads to convert input SMILES strings to Mol objects. + and workers is > 1, spawn 'workers' processes to convert input SMILES strings to Mol objects. Args: orig_smiles (list or str): List of SMILES strings to convert to Mol objects. @@ -115,7 +112,7 @@ def mols_from_smiles(orig_smiles, workers=1): return mols -def base_smiles_from_smiles(orig_smiles, useIsomericSmiles=True, removeCharges=False, +def base_smiles_from_smiles(orig_smiles, useIsomericSmiles=True, removeCharges=False, useCanonicalTautomers=False, workers=1): """Generate standardized SMILES strings for the largest fragments of each molecule specified by orig_smiles. Strips salt groups and replaces any rare isotopes with the most common ones for each element. @@ -225,9 +222,14 @@ def base_mol_from_smiles(orig_smiles, useIsomericSmiles=True, removeCharges=Fals cmpd_mol = Chem.MolFromSmiles(orig_smiles) if cmpd_mol is None: return None - std_mol = stdizer.isotope_parent(stdizer.fragment_parent(cmpd_mol), skip_standardize=True) - if removeCharges: - std_mol = uncharger(std_mol) + try: + std_mol = rdMolStandardize.IsotopeParent( + rdMolStandardize.FragmentParent(cmpd_mol), + skipStandardize=True) + if removeCharges: + std_mol = uncharger.uncharge(std_mol) + except Exception: + std_mol = None return std_mol @@ -294,12 +296,17 @@ def base_mol_from_inchi(inchi_str, useIsomericSmiles=True, removeCharges=False): cmpd_mol = Chem.inchi.MolFromInchi(inchi_str) if cmpd_mol is None: return None - std_mol = stdizer.isotope_parent(stdizer.fragment_parent(cmpd_mol), skip_standardize=True) - if removeCharges: - std_mol = uncharger(std_mol) + try: + std_mol = rdMolStandardize.IsotopeParent( + rdMolStandardize.FragmentParent(cmpd_mol), + skipStandardize=True) + if removeCharges: + std_mol = uncharger.uncharge(std_mol) + except Exception as e: + print(f"Error standardizing InChI {inchi_str}: {e}") + std_mol = None return std_mol - def draw_structure(smiles_str, image_path, image_size=500): """Draw structure for the compound with the given SMILES string as a PNG file. @@ -418,7 +425,7 @@ def _merge_dataframes_by_smiles(dataframes, smiles_col='rdkit_smiles', id_col='c new_df = new_df.drop([lCol, rCol], axis=1) left_df = new_df - return new_df + return left_df def smiles_to_inchi_key(smiles): @@ -514,6 +521,4 @@ def canonical_tautomers_from_smiles(smiles): smiles = [smiles] mols = [Chem.MolFromSmiles(smi) for smi in smiles] canon_tautomers = [taut_enum.Canonicalize(m) if m is not None else None for m in mols] - return [Chem.MolToSmiles(m) if m is not None else '' for m in canon_tautomers] - - + return [Chem.MolToSmiles(m) if m is not None else '' for m in canon_tautomers] \ No newline at end of file diff --git a/build.sh b/build.sh index 97b990c0..3b55d23f 100755 --- a/build.sh +++ b/build.sh @@ -13,4 +13,4 @@ DIST_DIR=${TOPDIR}.dist mkdir -p $DIST_DIR mkdir -p $BUILD_DIR -python3 setup.py build -b $BUILD_DIR egg_info --egg-base $BUILD_DIR bdist_wheel --dist-dir $DIST_DIR || exit 1 +uv build --wheel --out-dir "$DIST_DIR" || exit 1 \ No newline at end of file diff --git a/install-ampl/ampl-venv.sh b/install-ampl/ampl-venv.sh new file mode 100644 index 00000000..e179970f --- /dev/null +++ b/install-ampl/ampl-venv.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +cd $DIR + +# --- begin: must be sourced guard --- +(return 0 2>/dev/null) || { + echo "b This script must be sourced, not executed." + echo " Use: source ${BASH_SOURCE[0]} or . ${BASH_SOURCE[0]}" + exit 1 +} +# --- end: must be sourced guard --- + +PY_VER=3.10 +PY_VER_STR="${PY_VER//./}" + +# load system python module +echo module load python/$PY_VER +module load python/$PY_VER || return 1 + +# activate the venv +VENV=$(realpath venvs/ampl-py${PY_VER_STR}-venv/bin/activate) || return 1 +echo "Activating ampl-py${PY_VER_STR}-venv @ $VENV" +source venvs/ampl-py${PY_VER_STR}-venv/bin/activate || return 1 + + + diff --git a/install-ampl/create_venv.sh b/install-ampl/create_venv.sh new file mode 100755 index 00000000..7c42828b --- /dev/null +++ b/install-ampl/create_venv.sh @@ -0,0 +1,59 @@ +#!/bin/bash + +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +cd $DIR + +VENV_ID=ampl +SYNC_PACKAGES=0 + +PATH=~/.local/bin:$PATH +UV_CMD=$(which uv) + +if [ "$UV_CMD" = "" ]; then + curl -LsSf https://astral.sh/uv/install.sh | sh +fi + +OPTIONS=( + "python/3.10" "Python 3.10 " off + "python/3.11" "Python 3.11 [deepchem support questionable]" off +) + +# Show checklist and capture selected values +CHOICES=$(dialog --clear --title "Select Options" \ + --checklist "Use SPACE to select/unselect, ENTER to confirm:" 20 60 10 \ + "${OPTIONS[@]}" \ + 3>&1 1>&2 2>&3) + +dialog --clear \ + --title "Sync Packages" \ + --yesno "Do you want to sync packages in the venvs?" 8 60 + +response=$? + +if [[ $response -eq 0 ]]; then + SYNC_PACKAGES=1 +else + SYNC_PACKAGES=0 +fi + +clear # remove dialog UI + +# CHOICES is a quoted space-separated list of values, e.g. "build" "limits" +# Remove quotes and loop +for choice in $CHOICES; do + # Remove surrounding quotes + val="${choice%\"}" + val="${val#\"}" + module_name=$val + python_version="${val#*/}" + python_version_str="${python_version//./}" + venv_name="${VENV_ID}-py${python_version_str}-venv" + module load $module_name + if [ ! -e $(pwd)/venvs/$venv_name ]; then + uv venv --python $(which python3) $(pwd)/venvs/$venv_name + fi + if [ $SYNC_PACKAGES -eq 1 ]; then + ./uv-sync.sh $python_version + fi +done + diff --git a/install-ampl/pyproject.toml b/install-ampl/pyproject.toml new file mode 100644 index 00000000..93b2860f --- /dev/null +++ b/install-ampl/pyproject.toml @@ -0,0 +1,117 @@ + +[project] +name = "atomsci-ampl" +description = "ATOM Modeling PipeLine" +version = "1.8.0" +requires-python = ">=3.9,<3.12" + +# NOTE: +# * deepchem only works with python <= 3.10 (and possibly 3.11) +# - seems to install in python 3.11 but website says suports only +# python <= 3.10 +# - does NOT work with python 3.12+ due to tensorflow-addons dependency +# which is no longer supported and only has support up to python 3.11 +# * ampl only works with python 3.9, 3.10, 3.11 (due to deepchem) + +# Dependencies for all Python versions +dependencies = [ + "torch-geometric", + "xgboost", + "umap-learn", + "imbalanced-learn", + "ipykernel", + "ipython", + "pytest", + "seaborn", + "matplotcheck", + "numpy<2", + "atomsci-clients", + + # deepchem 2.7.1 for Python 3.9 version + "deepchem[torch,tensorflow]==2.7.1; python_version < '3.10'", + # deepchem 2.8.0 deps [NOTE: may not work on python 3.11] + "deepchem[torch,tensorflow]==2.8.0; python_version >= '3.10'", + + # deepchem[tensorflow] deps + "tensorflow-cpu==2.14.0", + + "rdkit>=2024.3.5; python_version >= '3.10'", + "dgl==2.1.0; python_version >= '3.10'", + + "pyg_lib==0.2.0; python_version < '3.10'", + "pyg_lib==0.3.1; python_version >= '3.10'", + + "torch==2.0.1+cpu; python_version < '3.10'", + "torch==2.1.2+cpu; python_version >= '3.10'", + "torch_cluster", + "torch_scatter", + "torch_sparse", + "torch_spline_conv", +] + +[build-system] +requires = ["setuptools>=61.0", "wheel"] +build-backend = "setuptools.build_meta" + +[tool.setuptools.packages.find] +include = ["atomsci*"] +namespaces = true + +[tool.uv] +managed = true +allow-insecure-host = [ + "download.pytorch.org", + "data.dgl.ai", + "data.pyg.org" +] + +[[tool.uv.index]] +name = "pytorch" +url = "https://download.pytorch.org/whl/cpu/torch_stable.html" +format = "flat" + +[[tool.uv.index]] +name = "dgl" +url = "https://data.dgl.ai/wheels/repo.html" +format = "flat" + +[[tool.uv.index]] +name = "pyg_lib_py39" +url = "https://data.pyg.org/whl/torch-2.0.1+cpu.html" +format = "flat" + +[[tool.uv.index]] +name = "pyg_lib_py310" +url = "https://data.pyg.org/whl/torch-2.1.2+cpu.html" +format = "flat" + +[tool.uv.sources] +# code repos +atomsci-clients = { git = "ssh://git@czgitlab.llnl.gov:7999/atom/clients.git", rev = "master" } + +# dgl +dgl = { index = "dgl" } + +# torch +torch = { index = "pytorch" } + +pyg_lib = [ + { index = "pyg_lib_py39", marker = "python_version < '3.10'" }, + { index = "pyg_lib_py310", marker = "python_version >= '3.10'" }, +] +torch_cluster = [ + { index = "pyg_lib_py39", marker = "python_version < '3.10'" }, + { index = "pyg_lib_py310", marker = "python_version >= '3.10'" }, +] +torch_scatter = [ + { index = "pyg_lib_py39", marker = "python_version < '3.10'" }, + { index = "pyg_lib_py310", marker = "python_version >= '3.10'" }, +] +torch_sparse = [ + { index = "pyg_lib_py39", marker = "python_version < '3.10'" }, + { index = "pyg_lib_py310", marker = "python_version >= '3.10'" }, +] +torch_spline_conv = [ + { index = "pyg_lib_py39", marker = "python_version < '3.10'" }, + { index = "pyg_lib_py310", marker = "python_version >= '3.10'" }, +] diff --git a/install-ampl/uv-sync.sh b/install-ampl/uv-sync.sh new file mode 100755 index 00000000..d982831c --- /dev/null +++ b/install-ampl/uv-sync.sh @@ -0,0 +1,15 @@ +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +cd $DIR + +PATH=~/.local/bin:$PATH +UV_CMD=$(which uv) + +if [ "$UV_CMD" = "" ]; then + curl -LsSf https://astral.sh/uv/install.sh | sh +fi + +. ampl-venv.sh || exit 1 + +# NOTE add --refresh to get latest version of repos +uv sync --active + diff --git a/install.sh b/install.sh index 22d13b29..b492cc4c 100755 --- a/install.sh +++ b/install.sh @@ -18,4 +18,4 @@ DIST_DIR=${TOPDIR}.dist mkdir -p $DIST_DIR -python3 -m pip install --pre --upgrade --no-index --find-links=$DIST_DIR --no-deps ${PACKAGE}_${APP} $INSTALL --force-reinstall -I -v || exit 1 +uv pip install --pre --upgrade --no-index --find-links="$DIST_DIR" --no-deps ${PACKAGE}_${APP} --reinstall -v || exit 1 \ No newline at end of file diff --git a/install_dev.sh b/install_dev.sh index 3a0b8c32..51ffcf53 100755 --- a/install_dev.sh +++ b/install_dev.sh @@ -3,5 +3,5 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR -pip install -e . --user +uv pip install -e . diff --git a/pip/cpu_requirements.txt b/pip/cpu_requirements.txt index ff87562f..4e0db5f5 100644 --- a/pip/cpu_requirements.txt +++ b/pip/cpu_requirements.txt @@ -1,48 +1,103 @@ -# Minimal pip requirement list for AMPL with CPU support only. This includes only the packages directly imported by AMPL code, plus a few others commonly used during development. --i https://download.pytorch.org/whl/cpu ---find-links https://data.dgl.ai/wheels/repo.html ---extra-index-url https://pypi.python.org/simple -# for LC developers: comment out pypi index url and use t$ +# ================================ +# Indexes and extra repositories +# ================================ +-i https://pypi.org/simple +--extra-index-url https://download.pytorch.org/whl/cpu + +# For LC developers: comment out PyPI index url and use internal repo instead +# -i https://wci-repo.llnl.gov/repository/pypi/simple # --extra-index-url https://wci-repo.llnl.gov/repository/$ +# or define variables to get the CERT +# $ export REQUESTS_CA_BUNDLE=/etc/pki/tls/cert.pem +# $ export SSL_CERT_FILE=/etc/pki/tls/cert.pem + +# DGL wheels (generic and torch-version specific) +--find-links https://data.dgl.ai/wheels/repo.html +--find-links https://data.dgl.ai/wheels/torch-2.1/repo.html +# ============================= +# Core deep learning frameworks +# ============================= + +# PyTorch CPU; Python 3.10 compatible; aligned with DGL torch-2.1 wheels +torch==2.1.2+cpu +torchdata==0.7.1 + +# Lightning; pin to a recent stable series to avoid breaking changes +lightning==2.2.5 + +# TensorFlow CPU; compatible with DeepChem 2.8 tensorflow-cpu~=2.14.0 -torch==2.0.1 -torch_geometric -lightning -dgl==1.1.2 -dgllife +# ========================== +# Graph / GNN related stack +# ========================== + +# DGL stack; 2.1.0 has matching wheels for torch 2.1.x +dgl==2.1.0 +dgllife==0.3.2 + +# PyTorch Geometric; works with torch 2.1.x on CPU +torch_geometric==2.7.0 + +# DGL currently imports pydantic but does not declare it. +# Stay on pydantic 1.x for maximum compatibility. +pydantic>=1.10,<2 + + +# ================== +# Numeric / ML stack +# ================== + +# Constrained for broad compatibility (esp. with DeepChem, scikit-learn) +numpy<2 +scipy>=1.10 scikit-learn==1.2.2 -hyperopt +optuna xgboost +lightgbm + +umap-learn + + +# ============================ +# Visualization and plotting +# ============================ bokeh matplotlib matplotlib-venn seaborn>=0.13.0 -umap-learn -pyarrow -bravado +# ========================= +# Data / IO / misc tooling +# ========================= -imblearn +pyarrow +pyyaml>=6.0 +bravado -# optional for home users: prettier images in RDKit -# requires pkg-config to build: sudo apt-get pkg-config -# requires Cairo: sudo apt-get install libcairo2-dev -# pycairo +# imbalanced-learn is the canonical package name on PyPI +imbalanced-learn maestrowf -MolVS -mordred -pytest -ipykernel -deepchem==2.7.1 +# ========================== +# Cheminformatics / domain +# ========================== + +deepchem==2.8 rdkit==2024.3.5 -pyyaml==5.4.1 +mordred + +# ========================== +# Dev / runtime utilities +# ========================== + +pytest +ipykernel \ No newline at end of file diff --git a/pip/cuda_requirements.txt b/pip/cuda_requirements.txt index f805072f..c8b753db 100644 --- a/pip/cuda_requirements.txt +++ b/pip/cuda_requirements.txt @@ -17,7 +17,7 @@ dgl==1.1.2 dgllife scikit-learn==1.2.2 -hyperopt +optuna xgboost @@ -39,7 +39,6 @@ imblearn # pycairo maestrowf -MolVS mordred pytest @@ -48,4 +47,4 @@ ipykernel deepchem==2.7.1 rdkit==2024.3.5 -pyyaml==5.4.1 +pyyaml>=6.0 diff --git a/pip/docker_requirements.txt b/pip/docker_requirements.txt index 6d1c3d24..24d9de2e 100644 --- a/pip/docker_requirements.txt +++ b/pip/docker_requirements.txt @@ -16,7 +16,7 @@ dgllife networkx==2.8.8 scikit-learn==1.2.2 -hyperopt +optuna xgboost @@ -36,7 +36,6 @@ bravado # pycairo maestrowf -MolVS mordred pytest ipykernel @@ -45,4 +44,4 @@ jupyterlab deepchem==2.7.1 rdkit==2024.3.5 -pyyaml==5.4.1 +pyyaml>=6.0 diff --git a/pip/mchip_requirements.txt b/pip/mchip_requirements.txt index 5fe6dd20..7b44d6fa 100644 --- a/pip/mchip_requirements.txt +++ b/pip/mchip_requirements.txt @@ -1,4 +1,4 @@ -# Minimal pip requirement list for AMPL with CPU support only for MacOS ARM chip. This includes only the packages directly imported by AMPL code, plus a few others commonly used during development. +# Minimal pip requirement list for AMPL with CPU support only for MacOS ARM chip. This includes only the packages directly imported by AMPL code, plus a few others commonly used during development. -i https://download.pytorch.org/whl/cpu --find-links https://data.dgl.ai/wheels/repo.html --extra-index-url https://pypi.python.org/simple @@ -16,7 +16,7 @@ dgl==1.1.2 dgllife scikit-learn==1.2.2 -hyperopt +optuna xgboost @@ -35,10 +35,9 @@ imblearn # optional for home users: prettier images in RDKit # requires pkg-config to build: sudo apt-get pkg-config # requires Cairo: sudo apt-get install libcairo2-dev -# pycairo +# pycairo maestrowf -MolVS mordred pytest @@ -48,4 +47,4 @@ jupyterlab deepchem==2.7.1 rdkit==2024.3.5 -pyyaml==5.4.1 +pyyaml>=6.0 diff --git a/pip/readthedocs_requirements.txt b/pip/readthedocs_requirements.txt index 02f83b92..46900873 100644 --- a/pip/readthedocs_requirements.txt +++ b/pip/readthedocs_requirements.txt @@ -1,10 +1,9 @@ bravado deepchem -hyperopt +optuna IPython joblib matplotlib -molvs numpy pandas pygments diff --git a/pip/rocm_requirements.txt b/pip/rocm_requirements.txt index 08601156..78f1ac63 100644 --- a/pip/rocm_requirements.txt +++ b/pip/rocm_requirements.txt @@ -1,4 +1,4 @@ -# Minimal pip requirement list for AMPL with ROCm-enabled AMD GPU's. This includes only the packages directly imported by AMPL code, plus a few others commonly used during development. It requires installation of ROCm first. +# Minimal pip requirement list for AMPL with ROCm-enabled AMD GPU's. This includes only the packages directly imported by AMPL code, plus a few others commonly used during development. It requires installation of ROCm first. ### amd gpu: https://blog.tensorflow.org/2022/09/announcing-tensorflow-official-build-collaborators.html tensorflow @@ -27,7 +27,6 @@ imblearn maestrowf -MolVS mordred pytest @@ -36,4 +35,4 @@ ipykernel deepchem[tensorflow] # instructions unclear here - trouble on my home system deepchem[torch] # instructions unclear here - works fine on home system -pyyaml==5.4.1 +pyyaml>=6.0 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..fdf570bf --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,138 @@ +[project] +name = "atomsci-ampl" +dynamic = ["version"] +description = "ATOMSCI AMPL is an open-source Python package for molecular property prediction in drug discovery." +requires-python = ">=3.10,<3.11" +readme = "README.md" +license = "MIT" +license-files = ["LICENSE"] +dependencies = [ + "lightning==2.2.5", + "pydantic>=1.10,<2", + "numpy<2", + "scipy>=1.10", + "scikit-learn==1.2.2", + "optuna", + "xgboost", + "lightgbm", + "umap-learn", + "bokeh", + "matplotlib", + "matplotlib-venn", + "seaborn>=0.13.0", + "pyarrow", + "pyyaml>=6.0", + "bravado", + "imbalanced-learn", + "imblearn", + "maestrowf", + "deepchem==2.8", + "rdkit==2024.3.5", + "mordred", + "setuptools", +] + +[project.urls] +Homepage = "https://github.com/ATOMScience-org/AMPL" +Documentation = "https://ampl.readthedocs.io/en/latest/" +Repository = "https://github.com/ATOMScience-org/AMPL" +Source = "https://github.com/ATOMScience-org/AMPL" + +# local developer tools +[dependency-groups] +dev = [ + "ipykernel", + "jupyter", + "jupyterlab", + "pytest", + "pytest-cov", + "pytest-mock", + "pytest-xdist", + "matplotcheck", + "ruff", +] + +docker = [ + "networkx==2.8.8", +] + +[project.optional-dependencies] +# RTD-installable docs deps +docs = [ + "ipython", + "joblib", + "pandas", + "pygments", + "sphinx", + "sphinx_rtd_theme", +] + +# hardware/runtime variants +cpu = [ + "torch==2.1.2", + "torchdata==0.7.1", + "tensorflow-cpu~=2.14.0; platform_system == 'Linux'", + "tensorflow~=2.14.0; platform_system == 'Darwin'", + "dgl==2.1.0", + "dgllife==0.3.2", + "torch-geometric==2.7.0", +] + +cuda = [ + "torch==2.1.2", + "torchdata==0.7.1", + "tensorflow~=2.14.0", + "dgl==2.1.0", + "dgllife==0.3.2", + "torch-geometric==2.7.0", +] + +rocm = [ + "torch==2.1.2", + "torchdata==0.7.1", + "tensorflow~=2.14.0", + "dgl==2.1.0", + "dgllife==0.3.2", + "torch-geometric==2.7.0", +] + +mchip = [ + "torch==2.1.2", + "torchdata==0.7.1", + "tensorflow-macos~=2.14.0", + "tensorflow-metal~=1.1.0", + "dgl==2.1.0", + "dgllife==0.3.2", + "torch-geometric==2.7.0", +] + +[build-system] +requires = ["hatchling>=1.24.0"] +build-backend = "hatchling.build" + +[tool.hatch.version] +path = "VERSION" +pattern = "(?P\\d+\\.\\d+\\.\\d+.*)" + +[tool.hatch.build.targets.wheel] +packages = ["atomsci"] +exclude = [ + "atomsci/ddm/examples/archive/**", # old tutorials + "atomsci/ddm/test/test_datasets/**", # test datasets + "**/*.tar.gz", + "**/*.ipynb", + "**/*.rst", +] + +[tool.hatch.build.targets.sdist] +exclude = [ + "atomsci/ddm/examples/archive/**", # old tutorials + "atomsci/ddm/test/test_datasets/**", # test datasets + "**/*.tar.gz", + "**/*.ipynb", + "**/*.rst", +] + +[tool.pytest.ini_options] +testpaths = ["atomsci/ddm/test"] +addopts = "-ra" diff --git a/setup.py b/setup.py deleted file mode 100644 index 7fc14b74..00000000 --- a/setup.py +++ /dev/null @@ -1,35 +0,0 @@ -# -# setup.py -# - -from setuptools import setup, find_packages -import os -import glob - -PACKAGE = 'atomsci' - -here = os.path.abspath(os.path.dirname(__file__)) -parent_dir = os.path.abspath(os.path.join(here, os.pardir)) -script_files = glob.glob("scripts/*") - -setup( - name='{}-ampl'.format(PACKAGE), - namespace_packages=[PACKAGE], - # install_requires=['distribute'], - include_package_data=True, - version=open('VERSION').read().strip(), - description='{} AMPL Python Package'.format(PACKAGE), - zip_safe=False, - data_files=[], - packages=find_packages(), - scripts=script_files, - install_requires=[ - ], - entry_points={ -# 'console_scripts': [ -# ("{pkg}_glo_command = " -# "{pkg}.glo:glo_command_main" -# .format(pkg=PACKAGE)), -# ], - }, -) diff --git a/sync_uv_env.sh b/sync_uv_env.sh new file mode 100755 index 00000000..7d4311bc --- /dev/null +++ b/sync_uv_env.sh @@ -0,0 +1,78 @@ +#!/usr/bin/env bash +# Purpose: +# syncs the environment, does not save a platform lockfile +# +# Use when: +# want to create/update a local env from existing lock/deps. build an env to run. +# +# Usage: +# ./sync_uv_env.sh + +usage() { + echo "Usage: $0 " +} + +platform="${1:-}" +[[ -n "$platform" ]] || { usage; exit 1; } + +case "$platform" in + cpu) + extra="cpu" + torch_index="https://download.pytorch.org/whl/cpu" + bootstrap_torch=true + ;; + cuda) + extra="cuda" + torch_index="https://download.pytorch.org/whl/cu121" + bootstrap_torch=true + ;; + rocm) + extra="rocm" + torch_index="https://download.pytorch.org/whl/rocm5.6" + bootstrap_torch=true + ;; + mchip) + extra="mchip" + torch_index="" + bootstrap_torch=false + ;; + *) + echo "Invalid platform: $platform" + usage + exit 1 + ;; +esac + +venv_dir=".venv-${platform}" +lockfile="uv.lock.${platform}" +temp_lock="uv.lock" + +[[ -f "$lockfile" ]] || { + echo "Missing lockfile: $lockfile" + echo "Run ./update_uv_lock.sh $platform first" + exit 1 +} + +cleanup() { + rm -f "$temp_lock" +} +trap cleanup EXIT + +cp "$lockfile" "$temp_lock" +rm -rf "$venv_dir" + +uv venv --python 3.10 "$venv_dir" + +if [[ "$bootstrap_torch" == true ]]; then + uv pip install --python "$venv_dir/bin/python" \ + --index-url "$torch_index" \ + torch==2.1.2 torchdata==0.7.1 +fi + +UV_PROJECT_ENVIRONMENT="$venv_dir" \ + uv sync --python "$venv_dir/bin/python" --group dev --extra "$extra" --locked + +uv pip install --python "$venv_dir/bin/python" -e . --no-deps + +echo "Refreshed $venv_dir from $lockfile" +echo "Activate with: source $venv_dir/bin/activate" \ No newline at end of file diff --git a/update_uv_lock.sh b/update_uv_lock.sh new file mode 100755 index 00000000..64ad9aa2 --- /dev/null +++ b/update_uv_lock.sh @@ -0,0 +1,75 @@ +#!/usr/bin/env bash +# +# Purpose: +# regenerates uv.lock. +# generates the righ lockfile for the specified platform +# +# Use when: +# dependencies changed, pyproject.toml changed, or lockfile mismatch happens. refresh the commited lockfile. +# +# Usage: +# ./update_uv_lock.sh + +set -euo pipefail + +platform="${1:-}" +venv_dir=".venv-${platform}" +temp_lock="uv.lock" + +usage() { + echo "Usage: $0 " +} + +case "$platform" in + cpu) + extra="cpu" + torch_index="https://download.pytorch.org/whl/cpu" + bootstrap_torch="yes" + ;; + cuda) + extra="cuda" + torch_index="https://download.pytorch.org/whl/cu121" + bootstrap_torch="yes" + ;; + rocm) + extra="rocm" + torch_index="https://download.pytorch.org/whl/rocm5.6" + bootstrap_torch="yes" + ;; + mchip) + extra="mchip" + torch_index="" + bootstrap_torch="no" + ;; + "") + usage + exit 1 + ;; + *) + echo "Invalid platform: $platform" + usage + exit 1 + ;; +esac + +lockfile="uv.lock.${platform}" + +cleanup() { + rm -f "$temp_lock" +} +trap cleanup EXIT + +rm -rf "$venv_dir" +uv venv --python 3.10 "$venv_dir" + +if [[ "$bootstrap_torch" == "yes" ]]; then + uv pip install --python "$venv_dir/bin/python" \ + --index-url "$torch_index" \ + torch==2.1.2 torchdata==0.7.1 +fi + +UV_PROJECT_ENVIRONMENT="$venv_dir" \ + uv sync --python "$venv_dir/bin/python" --extra "$extra" --group dev + +cp "$temp_lock" "$lockfile" +echo "Updated $lockfile" \ No newline at end of file diff --git a/uv.lock.cpu b/uv.lock.cpu new file mode 100644 index 00000000..06be863c --- /dev/null +++ b/uv.lock.cpu @@ -0,0 +1,3859 @@ +version = 1 +revision = 3 +requires-python = "==3.10.*" + +[[package]] +name = "absl-py" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/64/c7/8de93764ad66968d19329a7e0c147a2bb3c7054c554d4a119111b8f9440f/absl_py-2.4.0.tar.gz", hash = "sha256:8c6af82722b35cf71e0f4d1d47dcaebfff286e27110a99fc359349b247dfb5d4", size = 116543, upload-time = "2026-01-28T10:17:05.322Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/a6/907a406bb7d359e6a63f99c313846d9eec4f7e6f7437809e03aa00fa3074/absl_py-2.4.0-py3-none-any.whl", hash = "sha256:88476fd881ca8aab94ffa78b7b6c632a782ab3ba1cd19c9bd423abc4fb4cd28d", size = 135750, upload-time = "2026-01-28T10:17:04.19Z" }, +] + +[[package]] +name = "affine" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/98/d2f0bb06385069e799fc7d2870d9e078cfa0fa396dc8a2b81227d0da08b9/affine-2.4.0.tar.gz", hash = "sha256:a24d818d6a836c131976d22f8c27b8d3ca32d0af64c1d8d29deb7bafa4da1eea", size = 17132, upload-time = "2023-01-19T23:44:30.696Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/f7/85273299ab57117850cc0a936c64151171fac4da49bc6fba0dad984a7c5f/affine-2.4.0-py3-none-any.whl", hash = "sha256:8a3df80e2b2378aef598a83c1392efd47967afec4242021a0b06b4c7cbc61a92", size = 15662, upload-time = "2023-01-19T23:44:28.833Z" }, +] + +[[package]] +name = "aiohappyeyeballs" +version = "2.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/30/f84a107a9c4331c14b2b586036f40965c128aa4fee4dda5d3d51cb14ad54/aiohappyeyeballs-2.6.1.tar.gz", hash = "sha256:c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558", size = 22760, upload-time = "2025-03-12T01:42:48.764Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/15/5bf3b99495fb160b63f95972b81750f18f7f4e02ad051373b669d17d44f2/aiohappyeyeballs-2.6.1-py3-none-any.whl", hash = "sha256:f349ba8f4b75cb25c99c5c2d84e997e485204d2902a9597802b0371f09331fb8", size = 15265, upload-time = "2025-03-12T01:42:47.083Z" }, +] + +[[package]] +name = "aiohttp" +version = "3.13.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs" }, + { name = "aiosignal" }, + { name = "async-timeout" }, + { name = "attrs" }, + { name = "frozenlist" }, + { name = "multidict" }, + { name = "propcache" }, + { name = "yarl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/77/9a/152096d4808df8e4268befa55fba462f440f14beab85e8ad9bf990516918/aiohttp-3.13.5.tar.gz", hash = "sha256:9d98cc980ecc96be6eb4c1994ce35d28d8b1f5e5208a23b421187d1209dbb7d1", size = 7858271, upload-time = "2026-03-31T22:01:03.343Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/85/cebc47ee74d8b408749073a1a46c6fcba13d170dc8af7e61996c6c9394ac/aiohttp-3.13.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:02222e7e233295f40e011c1b00e3b0bd451f22cf853a0304c3595633ee47da4b", size = 750547, upload-time = "2026-03-31T21:56:30.024Z" }, + { url = "https://files.pythonhosted.org/packages/05/98/afd308e35b9d3d8c9ec54c0918f1d722c86dc17ddfec272fcdbcce5a3124/aiohttp-3.13.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bace460460ed20614fa6bc8cb09966c0b8517b8c58ad8046828c6078d25333b5", size = 503535, upload-time = "2026-03-31T21:56:31.935Z" }, + { url = "https://files.pythonhosted.org/packages/6f/4d/926c183e06b09d5270a309eb50fbde7b09782bfd305dec1e800f329834fb/aiohttp-3.13.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f546a4dc1e6a5edbb9fd1fd6ad18134550e096a5a43f4ad74acfbd834fc6670", size = 497830, upload-time = "2026-03-31T21:56:33.654Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d6/f47d1c690f115a5c2a5e8938cce4a232a5be9aac5c5fb2647efcbbbda333/aiohttp-3.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c86969d012e51b8e415a8c6ce96f7857d6a87d6207303ab02d5d11ef0cad2274", size = 1682474, upload-time = "2026-03-31T21:56:35.513Z" }, + { url = "https://files.pythonhosted.org/packages/01/44/056fd37b1bb52eac760303e5196acc74d9d546631b035704ae5927f7b4ac/aiohttp-3.13.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b6f6cd1560c5fa427e3b6074bb24d2c64e225afbb7165008903bd42e4e33e28a", size = 1655259, upload-time = "2026-03-31T21:56:37.843Z" }, + { url = "https://files.pythonhosted.org/packages/91/9f/78eb1a20c1c28ae02f6a3c0f4d7b0dcc66abce5290cadd53d78ce3084175/aiohttp-3.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:636bc362f0c5bbc7372bc3ae49737f9e3030dbce469f0f422c8f38079780363d", size = 1736204, upload-time = "2026-03-31T21:56:39.822Z" }, + { url = "https://files.pythonhosted.org/packages/de/6c/d20d7de23f0b52b8c1d9e2033b2db1ac4dacbb470bb74c56de0f5f86bb4f/aiohttp-3.13.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6a7cbeb06d1070f1d14895eeeed4dac5913b22d7b456f2eb969f11f4b3993796", size = 1826198, upload-time = "2026-03-31T21:56:41.378Z" }, + { url = "https://files.pythonhosted.org/packages/2f/86/a6f3ff1fd795f49545a7c74b2c92f62729135d73e7e4055bf74da5a26c82/aiohttp-3.13.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bca9ef7517fd7874a1a08970ae88f497bf5c984610caa0bf40bd7e8450852b95", size = 1681329, upload-time = "2026-03-31T21:56:43.374Z" }, + { url = "https://files.pythonhosted.org/packages/fb/68/84cd3dab6b7b4f3e6fe9459a961acb142aaab846417f6e8905110d7027e5/aiohttp-3.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:019a67772e034a0e6b9b17c13d0a8fe56ad9fb150fc724b7f3ffd3724288d9e5", size = 1560023, upload-time = "2026-03-31T21:56:45.031Z" }, + { url = "https://files.pythonhosted.org/packages/41/2c/db61b64b0249e30f954a65ab4cb4970ced57544b1de2e3c98ee5dc24165f/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f34ecee82858e41dd217734f0c41a532bd066bcaab636ad830f03a30b2a96f2a", size = 1652372, upload-time = "2026-03-31T21:56:47.075Z" }, + { url = "https://files.pythonhosted.org/packages/25/6f/e96988a6c982d047810c772e28c43c64c300c943b0ed5c1c0c4ce1e1027c/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:4eac02d9af4813ee289cd63a361576da36dba57f5a1ab36377bc2600db0cbb73", size = 1662031, upload-time = "2026-03-31T21:56:48.835Z" }, + { url = "https://files.pythonhosted.org/packages/b7/26/a56feace81f3d347b4052403a9d03754a0ab23f7940780dada0849a38c92/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4beac52e9fe46d6abf98b0176a88154b742e878fdf209d2248e99fcdf73cd297", size = 1708118, upload-time = "2026-03-31T21:56:50.833Z" }, + { url = "https://files.pythonhosted.org/packages/78/6e/b6173a8ff03d01d5e1a694bc06764b5dad1df2d4ed8f0ceec12bb3277936/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:c180f480207a9b2475f2b8d8bd7204e47aec952d084b2a2be58a782ffcf96074", size = 1548667, upload-time = "2026-03-31T21:56:52.81Z" }, + { url = "https://files.pythonhosted.org/packages/16/13/13296ffe2c132d888b3fe2c195c8b9c0c24c89c3fa5cc2c44464dc23b22e/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2837fb92951564d6339cedae4a7231692aa9f73cbc4fb2e04263b96844e03b4e", size = 1724490, upload-time = "2026-03-31T21:56:54.541Z" }, + { url = "https://files.pythonhosted.org/packages/7a/b4/1f1c287f4a79782ef36e5a6e62954c85343bc30470d862d30bd5f26c9fa2/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d9010032a0b9710f58012a1e9c222528763d860ba2ee1422c03473eab47703e7", size = 1667109, upload-time = "2026-03-31T21:56:56.21Z" }, + { url = "https://files.pythonhosted.org/packages/ef/42/8461a2aaf60a8f4ea4549a4056be36b904b0eb03d97ca9a8a2604681a500/aiohttp-3.13.5-cp310-cp310-win32.whl", hash = "sha256:7c4b6668b2b2b9027f209ddf647f2a4407784b5d88b8be4efcc72036f365baf9", size = 439478, upload-time = "2026-03-31T21:56:58.292Z" }, + { url = "https://files.pythonhosted.org/packages/e5/71/06956304cb5ee439dfe8d86e1b2e70088bd88ed1ced1f42fb29e5d855f0e/aiohttp-3.13.5-cp310-cp310-win_amd64.whl", hash = "sha256:cd3db5927bf9167d5a6157ddb2f036f6b6b0ad001ac82355d43e97a4bde76d76", size = 462047, upload-time = "2026-03-31T21:57:00.257Z" }, +] + +[[package]] +name = "aiosignal" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, +] + +[[package]] +name = "alabaster" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a6/f8/d9c74d0daf3f742840fd818d69cfae176fa332022fd44e3469487d5a9420/alabaster-1.0.0.tar.gz", hash = "sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e", size = 24210, upload-time = "2024-07-26T18:15:03.762Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b", size = 13929, upload-time = "2024-07-26T18:15:02.05Z" }, +] + +[[package]] +name = "alembic" +version = "1.18.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mako" }, + { name = "sqlalchemy" }, + { name = "tomli" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/94/13/8b084e0f2efb0275a1d534838844926f798bd766566b1375174e2448cd31/alembic-1.18.4.tar.gz", hash = "sha256:cb6e1fd84b6174ab8dbb2329f86d631ba9559dd78df550b57804d607672cedbc", size = 2056725, upload-time = "2026-02-10T16:00:47.195Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/29/6533c317b74f707ea28f8d633734dbda2119bbadfc61b2f3640ba835d0f7/alembic-1.18.4-py3-none-any.whl", hash = "sha256:a5ed4adcf6d8a4cb575f3d759f071b03cd6e5c7618eb796cb52497be25bfe19a", size = 263893, upload-time = "2026-02-10T16:00:49.997Z" }, +] + +[[package]] +name = "anyio" +version = "4.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "exceptiongroup" }, + { name = "idna" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/14/2c5dd9f512b66549ae92767a9c7b330ae88e1932ca57876909410251fe13/anyio-4.13.0.tar.gz", hash = "sha256:334b70e641fd2221c1505b3890c69882fe4a2df910cba14d97019b90b24439dc", size = 231622, upload-time = "2026-03-24T12:59:09.671Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/42/e921fccf5015463e32a3cf6ee7f980a6ed0f395ceeaa45060b61d86486c2/anyio-4.13.0-py3-none-any.whl", hash = "sha256:08b310f9e24a9594186fd75b4f73f4a4152069e3853f1ed8bfbf58369f4ad708", size = 114353, upload-time = "2026-03-24T12:59:08.246Z" }, +] + +[[package]] +name = "appnope" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/5d/752690df9ef5b76e169e68d6a129fa6d08a7100ca7f754c89495db3c6019/appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee", size = 4170, upload-time = "2024-02-06T09:43:11.258Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/29/5ecc3a15d5a33e31b26c11426c45c501e439cb865d0bff96315d86443b78/appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c", size = 4321, upload-time = "2024-02-06T09:43:09.663Z" }, +] + +[[package]] +name = "argon2-cffi" +version = "25.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "argon2-cffi-bindings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/89/ce5af8a7d472a67cc819d5d998aa8c82c5d860608c4db9f46f1162d7dab9/argon2_cffi-25.1.0.tar.gz", hash = "sha256:694ae5cc8a42f4c4e2bf2ca0e64e51e23a040c6a517a85074683d3959e1346c1", size = 45706, upload-time = "2025-06-03T06:55:32.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4f/d3/a8b22fa575b297cd6e3e3b0155c7e25db170edf1c74783d6a31a2490b8d9/argon2_cffi-25.1.0-py3-none-any.whl", hash = "sha256:fdc8b074db390fccb6eb4a3604ae7231f219aa669a2652e0f20e16ba513d5741", size = 14657, upload-time = "2025-06-03T06:55:30.804Z" }, +] + +[[package]] +name = "argon2-cffi-bindings" +version = "25.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/2d/db8af0df73c1cf454f71b2bbe5e356b8c1f8041c979f505b3d3186e520a9/argon2_cffi_bindings-25.1.0.tar.gz", hash = "sha256:b957f3e6ea4d55d820e40ff76f450952807013d361a65d7f28acc0acbf29229d", size = 1783441, upload-time = "2025-07-30T10:02:05.147Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/57/96b8b9f93166147826da5f90376e784a10582dd39a393c99bb62cfcf52f0/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:aecba1723ae35330a008418a91ea6cfcedf6d31e5fbaa056a166462ff066d500", size = 54121, upload-time = "2025-07-30T10:01:50.815Z" }, + { url = "https://files.pythonhosted.org/packages/0a/08/a9bebdb2e0e602dde230bdde8021b29f71f7841bd54801bcfd514acb5dcf/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2630b6240b495dfab90aebe159ff784d08ea999aa4b0d17efa734055a07d2f44", size = 29177, upload-time = "2025-07-30T10:01:51.681Z" }, + { url = "https://files.pythonhosted.org/packages/b6/02/d297943bcacf05e4f2a94ab6f462831dc20158614e5d067c35d4e63b9acb/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:7aef0c91e2c0fbca6fc68e7555aa60ef7008a739cbe045541e438373bc54d2b0", size = 31090, upload-time = "2025-07-30T10:01:53.184Z" }, + { url = "https://files.pythonhosted.org/packages/c1/93/44365f3d75053e53893ec6d733e4a5e3147502663554b4d864587c7828a7/argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e021e87faa76ae0d413b619fe2b65ab9a037f24c60a1e6cc43457ae20de6dc6", size = 81246, upload-time = "2025-07-30T10:01:54.145Z" }, + { url = "https://files.pythonhosted.org/packages/09/52/94108adfdd6e2ddf58be64f959a0b9c7d4ef2fa71086c38356d22dc501ea/argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d3e924cfc503018a714f94a49a149fdc0b644eaead5d1f089330399134fa028a", size = 87126, upload-time = "2025-07-30T10:01:55.074Z" }, + { url = "https://files.pythonhosted.org/packages/72/70/7a2993a12b0ffa2a9271259b79cc616e2389ed1a4d93842fac5a1f923ffd/argon2_cffi_bindings-25.1.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c87b72589133f0346a1cb8d5ecca4b933e3c9b64656c9d175270a000e73b288d", size = 80343, upload-time = "2025-07-30T10:01:56.007Z" }, + { url = "https://files.pythonhosted.org/packages/78/9a/4e5157d893ffc712b74dbd868c7f62365618266982b64accab26bab01edc/argon2_cffi_bindings-25.1.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:1db89609c06afa1a214a69a462ea741cf735b29a57530478c06eb81dd403de99", size = 86777, upload-time = "2025-07-30T10:01:56.943Z" }, + { url = "https://files.pythonhosted.org/packages/74/cd/15777dfde1c29d96de7f18edf4cc94c385646852e7c7b0320aa91ccca583/argon2_cffi_bindings-25.1.0-cp39-abi3-win32.whl", hash = "sha256:473bcb5f82924b1becbb637b63303ec8d10e84c8d241119419897a26116515d2", size = 27180, upload-time = "2025-07-30T10:01:57.759Z" }, + { url = "https://files.pythonhosted.org/packages/e2/c6/a759ece8f1829d1f162261226fbfd2c6832b3ff7657384045286d2afa384/argon2_cffi_bindings-25.1.0-cp39-abi3-win_amd64.whl", hash = "sha256:a98cd7d17e9f7ce244c0803cad3c23a7d379c301ba618a5fa76a67d116618b98", size = 31715, upload-time = "2025-07-30T10:01:58.56Z" }, + { url = "https://files.pythonhosted.org/packages/42/b9/f8d6fa329ab25128b7e98fd83a3cb34d9db5b059a9847eddb840a0af45dd/argon2_cffi_bindings-25.1.0-cp39-abi3-win_arm64.whl", hash = "sha256:b0fdbcf513833809c882823f98dc2f931cf659d9a1429616ac3adebb49f5db94", size = 27149, upload-time = "2025-07-30T10:01:59.329Z" }, + { url = "https://files.pythonhosted.org/packages/11/2d/ba4e4ca8d149f8dcc0d952ac0967089e1d759c7e5fcf0865a317eb680fbb/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:6dca33a9859abf613e22733131fc9194091c1fa7cb3e131c143056b4856aa47e", size = 24549, upload-time = "2025-07-30T10:02:00.101Z" }, + { url = "https://files.pythonhosted.org/packages/5c/82/9b2386cc75ac0bd3210e12a44bfc7fd1632065ed8b80d573036eecb10442/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:21378b40e1b8d1655dd5310c84a40fc19a9aa5e6366e835ceb8576bf0fea716d", size = 25539, upload-time = "2025-07-30T10:02:00.929Z" }, + { url = "https://files.pythonhosted.org/packages/31/db/740de99a37aa727623730c90d92c22c9e12585b3c98c54b7960f7810289f/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d588dec224e2a83edbdc785a5e6f3c6cd736f46bfd4b441bbb5aa1f5085e584", size = 28467, upload-time = "2025-07-30T10:02:02.08Z" }, + { url = "https://files.pythonhosted.org/packages/71/7a/47c4509ea18d755f44e2b92b7178914f0c113946d11e16e626df8eaa2b0b/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5acb4e41090d53f17ca1110c3427f0a130f944b896fc8c83973219c97f57b690", size = 27355, upload-time = "2025-07-30T10:02:02.867Z" }, + { url = "https://files.pythonhosted.org/packages/ee/82/82745642d3c46e7cea25e1885b014b033f4693346ce46b7f47483cf5d448/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:da0c79c23a63723aa5d782250fbf51b768abca630285262fb5144ba5ae01e520", size = 29187, upload-time = "2025-07-30T10:02:03.674Z" }, +] + +[[package]] +name = "arrow" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/33/032cdc44182491aa708d06a68b62434140d8c50820a087fac7af37703357/arrow-1.4.0.tar.gz", hash = "sha256:ed0cc050e98001b8779e84d461b0098c4ac597e88704a655582b21d116e526d7", size = 152931, upload-time = "2025-10-18T17:46:46.761Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/c9/d7977eaacb9df673210491da99e6a247e93df98c715fc43fd136ce1d3d33/arrow-1.4.0-py3-none-any.whl", hash = "sha256:749f0769958ebdc79c173ff0b0670d59051a535fa26e8eba02953dc19eb43205", size = 68797, upload-time = "2025-10-18T17:46:45.663Z" }, +] + +[[package]] +name = "asttokens" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/be/a5/8e3f9b6771b0b408517c82d97aed8f2036509bc247d46114925e32fe33f0/asttokens-3.0.1.tar.gz", hash = "sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7", size = 62308, upload-time = "2025-11-15T16:43:48.578Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/39/e7eaf1799466a4aef85b6a4fe7bd175ad2b1c6345066aa33f1f58d4b18d0/asttokens-3.0.1-py3-none-any.whl", hash = "sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a", size = 27047, upload-time = "2025-11-15T16:43:16.109Z" }, +] + +[[package]] +name = "astunparse" +version = "1.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, + { name = "wheel" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/af/4182184d3c338792894f34a62672919db7ca008c89abee9b564dd34d8029/astunparse-1.6.3.tar.gz", hash = "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872", size = 18290, upload-time = "2019-12-22T18:12:13.129Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/03/13dde6512ad7b4557eb792fbcf0c653af6076b81e5941d36ec61f7ce6028/astunparse-1.6.3-py2.py3-none-any.whl", hash = "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8", size = 12732, upload-time = "2019-12-22T18:12:11.297Z" }, +] + +[[package]] +name = "async-lru" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e8/1f/989ecfef8e64109a489fff357450cb73fa73a865a92bd8c272170a6922c2/async_lru-2.3.0.tar.gz", hash = "sha256:89bdb258a0140d7313cf8f4031d816a042202faa61d0ab310a0a538baa1c24b6", size = 16332, upload-time = "2026-03-19T01:04:32.413Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/e2/c2e3abf398f80732e58b03be77bde9022550d221dd8781bf586bd4d97cc1/async_lru-2.3.0-py3-none-any.whl", hash = "sha256:eea27b01841909316f2cc739807acea1c623df2be8c5cfad7583286397bb8315", size = 8403, upload-time = "2026-03-19T01:04:30.883Z" }, +] + +[[package]] +name = "async-timeout" +version = "5.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a5/ae/136395dfbfe00dfc94da3f3e136d0b13f394cba8f4841120e34226265780/async_timeout-5.0.1.tar.gz", hash = "sha256:d9321a7a3d5a6a5e187e824d2fa0793ce379a202935782d555d6e9d2735677d3", size = 9274, upload-time = "2024-11-06T16:41:39.6Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/ba/e2081de779ca30d473f21f5b30e0e737c438205440784c7dfc81efc2b029/async_timeout-5.0.1-py3-none-any.whl", hash = "sha256:39e3809566ff85354557ec2398b55e096c8364bacac9405a7a1fa429e77fe76c", size = 6233, upload-time = "2024-11-06T16:41:37.9Z" }, +] + +[[package]] +name = "atomsci-ampl" +source = { editable = "." } +dependencies = [ + { name = "bokeh" }, + { name = "bravado" }, + { name = "deepchem" }, + { name = "imbalanced-learn" }, + { name = "imblearn" }, + { name = "lightgbm" }, + { name = "lightning" }, + { name = "maestrowf" }, + { name = "matplotlib" }, + { name = "matplotlib-venn" }, + { name = "mordred" }, + { name = "numpy" }, + { name = "optuna" }, + { name = "pyarrow" }, + { name = "pydantic" }, + { name = "pyyaml" }, + { name = "rdkit" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "seaborn" }, + { name = "setuptools" }, + { name = "umap-learn" }, + { name = "xgboost" }, +] + +[package.optional-dependencies] +cpu = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow", marker = "sys_platform == 'darwin'" }, + { name = "tensorflow-cpu", marker = "sys_platform == 'linux'" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +cuda = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +docs = [ + { name = "ipython" }, + { name = "joblib" }, + { name = "pandas" }, + { name = "pygments" }, + { name = "sphinx" }, + { name = "sphinx-rtd-theme" }, +] +mchip = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow-macos" }, + { name = "tensorflow-metal" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +rocm = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] + +[package.dev-dependencies] +dev = [ + { name = "ipykernel" }, + { name = "jupyter" }, + { name = "jupyterlab" }, + { name = "matplotcheck" }, + { name = "pytest" }, + { name = "pytest-cov" }, + { name = "pytest-mock" }, + { name = "pytest-xdist" }, + { name = "ruff" }, +] +docker = [ + { name = "networkx" }, +] + +[package.metadata] +requires-dist = [ + { name = "bokeh" }, + { name = "bravado" }, + { name = "deepchem", specifier = "==2.8" }, + { name = "dgl", marker = "extra == 'cpu'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'cuda'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'mchip'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'rocm'", specifier = "==2.1.0" }, + { name = "dgllife", marker = "extra == 'cpu'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'cuda'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'mchip'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'rocm'", specifier = "==0.3.2" }, + { name = "imbalanced-learn" }, + { name = "imblearn" }, + { name = "ipython", marker = "extra == 'docs'" }, + { name = "joblib", marker = "extra == 'docs'" }, + { name = "lightgbm" }, + { name = "lightning", specifier = "==2.2.5" }, + { name = "maestrowf" }, + { name = "matplotlib" }, + { name = "matplotlib-venn" }, + { name = "mordred" }, + { name = "numpy", specifier = "<2" }, + { name = "optuna" }, + { name = "pandas", marker = "extra == 'docs'" }, + { name = "pyarrow" }, + { name = "pydantic", specifier = ">=1.10,<2" }, + { name = "pygments", marker = "extra == 'docs'" }, + { name = "pyyaml", specifier = ">=6.0" }, + { name = "rdkit", specifier = "==2024.3.5" }, + { name = "scikit-learn", specifier = "==1.2.2" }, + { name = "scipy", specifier = ">=1.10" }, + { name = "seaborn", specifier = ">=0.13.0" }, + { name = "setuptools" }, + { name = "sphinx", marker = "extra == 'docs'" }, + { name = "sphinx-rtd-theme", marker = "extra == 'docs'" }, + { name = "tensorflow", marker = "sys_platform == 'darwin' and extra == 'cpu'", specifier = "~=2.14.0" }, + { name = "tensorflow", marker = "extra == 'cuda'", specifier = "~=2.14.0" }, + { name = "tensorflow", marker = "extra == 'rocm'", specifier = "~=2.14.0" }, + { name = "tensorflow-cpu", marker = "sys_platform == 'linux' and extra == 'cpu'", specifier = "~=2.14.0" }, + { name = "tensorflow-macos", marker = "extra == 'mchip'", specifier = "~=2.14.0" }, + { name = "tensorflow-metal", marker = "extra == 'mchip'", specifier = "~=1.1.0" }, + { name = "torch", marker = "extra == 'cpu'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'cuda'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'mchip'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'rocm'", specifier = "==2.1.2" }, + { name = "torch-geometric", marker = "extra == 'cpu'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'cuda'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'mchip'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'rocm'", specifier = "==2.7.0" }, + { name = "torchdata", marker = "extra == 'cpu'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'cuda'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'mchip'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'rocm'", specifier = "==0.7.1" }, + { name = "umap-learn" }, + { name = "xgboost" }, +] +provides-extras = ["cpu", "cuda", "docs", "mchip", "rocm"] + +[package.metadata.requires-dev] +dev = [ + { name = "ipykernel" }, + { name = "jupyter" }, + { name = "jupyterlab" }, + { name = "matplotcheck" }, + { name = "pytest" }, + { name = "pytest-cov" }, + { name = "pytest-mock" }, + { name = "pytest-xdist" }, + { name = "ruff" }, +] +docker = [{ name = "networkx", specifier = "==2.8.8" }] + +[[package]] +name = "attrs" +version = "26.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" }, +] + +[[package]] +name = "babel" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/b2/51899539b6ceeeb420d40ed3cd4b7a40519404f9baf3d4ac99dc413a834b/babel-2.18.0.tar.gz", hash = "sha256:b80b99a14bd085fcacfa15c9165f651fbb3406e66cc603abf11c5750937c992d", size = 9959554, upload-time = "2026-02-01T12:30:56.078Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl", hash = "sha256:e2b422b277c2b9a9630c1d7903c2a00d0830c409c59ac8cae9081c92f1aeba35", size = 10196845, upload-time = "2026-02-01T12:30:53.445Z" }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.14.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/b0/1c6a16426d389813b48d95e26898aff79abbde42ad353958ad95cc8c9b21/beautifulsoup4-4.14.3.tar.gz", hash = "sha256:6292b1c5186d356bba669ef9f7f051757099565ad9ada5dd630bd9de5fa7fb86", size = 627737, upload-time = "2025-11-30T15:08:26.084Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/39/47f9197bdd44df24d67ac8893641e16f386c984a0619ef2ee4c51fbbc019/beautifulsoup4-4.14.3-py3-none-any.whl", hash = "sha256:0918bfe44902e6ad8d57732ba310582e98da931428d231a5ecb9e7c703a735bb", size = 107721, upload-time = "2025-11-30T15:08:24.087Z" }, +] + +[[package]] +name = "bleach" +version = "6.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "webencodings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/07/18/3c8523962314be6bf4c8989c79ad9531c825210dd13a8669f6b84336e8bd/bleach-6.3.0.tar.gz", hash = "sha256:6f3b91b1c0a02bb9a78b5a454c92506aa0fdf197e1d5e114d2e00c6f64306d22", size = 203533, upload-time = "2025-10-27T17:57:39.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/3a/577b549de0cc09d95f11087ee63c739bba856cd3952697eec4c4bb91350a/bleach-6.3.0-py3-none-any.whl", hash = "sha256:fe10ec77c93ddf3d13a73b035abaac7a9f5e436513864ccdad516693213c65d6", size = 164437, upload-time = "2025-10-27T17:57:37.538Z" }, +] + +[package.optional-dependencies] +css = [ + { name = "tinycss2" }, +] + +[[package]] +name = "bokeh" +version = "3.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "jinja2" }, + { name = "narwhals" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyyaml" }, + { name = "tornado", marker = "sys_platform != 'emscripten'" }, + { name = "xyzservices" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/0d/fabb70707646217e4b0e3943e05730eab8c1f7b7e7485145f8594b52e606/bokeh-3.9.0.tar.gz", hash = "sha256:775219714a8496973ddbae16b1861606ba19fe670a421e4d43267b41148e07a3", size = 5740345, upload-time = "2026-03-11T17:58:34.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/0b/bdf449df87be3f07b23091ceafee8c3ef569cf6d2fb7edec6e3b12b3faa4/bokeh-3.9.0-py3-none-any.whl", hash = "sha256:b252bfb16a505f0e0c57d532d0df308ae1667235bafc622aa9441fe9e7c5ce4a", size = 6396068, upload-time = "2026-03-11T17:58:31.645Z" }, +] + +[[package]] +name = "branca" +version = "0.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/14/9d409124bda3f4ab7af3802aba07181d1fd56aa96cc4b999faea6a27a0d2/branca-0.8.2.tar.gz", hash = "sha256:e5040f4c286e973658c27de9225c1a5a7356dd0702a7c8d84c0f0dfbde388fe7", size = 27890, upload-time = "2025-10-06T10:28:20.305Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/50/fc9680058e63161f2f63165b84c957a0df1415431104c408e8104a3a18ef/branca-0.8.2-py3-none-any.whl", hash = "sha256:2ebaef3983e3312733c1ae2b793b0a8ba3e1c4edeb7598e10328505280cf2f7c", size = 26193, upload-time = "2025-10-06T10:28:19.255Z" }, +] + +[[package]] +name = "bravado" +version = "12.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "bravado-core" }, + { name = "monotonic" }, + { name = "msgpack" }, + { name = "python-dateutil" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "simplejson" }, + { name = "six" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/88/5d/5a1eda160279e4a617c38da71fbb7d92121cfc7fcf8592368286f771e314/bravado-12.0.1.tar.gz", hash = "sha256:637cc04d53c07e950792595081f9f8bf4dea226ecd1029207cb1d328ea400e20", size = 37647, upload-time = "2025-05-07T20:25:02.108Z" } + +[[package]] +name = "bravado-core" +version = "6.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonref" }, + { name = "jsonschema", extra = ["format-nongpl"] }, + { name = "msgpack" }, + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "simplejson" }, + { name = "six" }, + { name = "swagger-spec-validator" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/6d/1ffa5c64533bc2fa436afdb9ef287cb0c0d443ef1e84db0601b0af7ce6f5/bravado-core-6.1.1.tar.gz", hash = "sha256:8cf1f7bbac2f7c696d37e970253938b5be4ddec92c8d5e64400b17469c3714b4", size = 63851, upload-time = "2023-12-14T22:27:42.168Z" } + +[[package]] +name = "certifi" +version = "2026.2.25" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/af/2d/7bf41579a8986e348fa033a31cdd0e4121114f6bce2457e8876010b092dd/certifi-2026.2.25.tar.gz", hash = "sha256:e887ab5cee78ea814d3472169153c2d12cd43b14bd03329a39a9c6e2e80bfba7", size = 155029, upload-time = "2026-02-25T02:54:17.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl", hash = "sha256:027692e4402ad994f1c42e52a4997a9763c646b73e4096e4d5d6db8af1d6f0fa", size = 153684, upload-time = "2026-02-25T02:54:15.766Z" }, +] + +[[package]] +name = "cffi" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "implementation_name != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/d7/516d984057745a6cd96575eea814fe1edd6646ee6efd552fb7b0921dec83/cffi-2.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:0cf2d91ecc3fcc0625c2c530fe004f82c110405f101548512cce44322fa8ac44", size = 184283, upload-time = "2025-09-08T23:22:08.01Z" }, + { url = "https://files.pythonhosted.org/packages/9e/84/ad6a0b408daa859246f57c03efd28e5dd1b33c21737c2db84cae8c237aa5/cffi-2.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f73b96c41e3b2adedc34a7356e64c8eb96e03a3782b535e043a986276ce12a49", size = 180504, upload-time = "2025-09-08T23:22:10.637Z" }, + { url = "https://files.pythonhosted.org/packages/50/bd/b1a6362b80628111e6653c961f987faa55262b4002fcec42308cad1db680/cffi-2.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:53f77cbe57044e88bbd5ed26ac1d0514d2acf0591dd6bb02a3ae37f76811b80c", size = 208811, upload-time = "2025-09-08T23:22:12.267Z" }, + { url = "https://files.pythonhosted.org/packages/4f/27/6933a8b2562d7bd1fb595074cf99cc81fc3789f6a6c05cdabb46284a3188/cffi-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3e837e369566884707ddaf85fc1744b47575005c0a229de3327f8f9a20f4efeb", size = 216402, upload-time = "2025-09-08T23:22:13.455Z" }, + { url = "https://files.pythonhosted.org/packages/05/eb/b86f2a2645b62adcfff53b0dd97e8dfafb5c8aa864bd0d9a2c2049a0d551/cffi-2.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:5eda85d6d1879e692d546a078b44251cdd08dd1cfb98dfb77b670c97cee49ea0", size = 203217, upload-time = "2025-09-08T23:22:14.596Z" }, + { url = "https://files.pythonhosted.org/packages/9f/e0/6cbe77a53acf5acc7c08cc186c9928864bd7c005f9efd0d126884858a5fe/cffi-2.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:9332088d75dc3241c702d852d4671613136d90fa6881da7d770a483fd05248b4", size = 203079, upload-time = "2025-09-08T23:22:15.769Z" }, + { url = "https://files.pythonhosted.org/packages/98/29/9b366e70e243eb3d14a5cb488dfd3a0b6b2f1fb001a203f653b93ccfac88/cffi-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc7de24befaeae77ba923797c7c87834c73648a05a4bde34b3b7e5588973a453", size = 216475, upload-time = "2025-09-08T23:22:17.427Z" }, + { url = "https://files.pythonhosted.org/packages/21/7a/13b24e70d2f90a322f2900c5d8e1f14fa7e2a6b3332b7309ba7b2ba51a5a/cffi-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf364028c016c03078a23b503f02058f1814320a56ad535686f90565636a9495", size = 218829, upload-time = "2025-09-08T23:22:19.069Z" }, + { url = "https://files.pythonhosted.org/packages/60/99/c9dc110974c59cc981b1f5b66e1d8af8af764e00f0293266824d9c4254bc/cffi-2.0.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e11e82b744887154b182fd3e7e8512418446501191994dbf9c9fc1f32cc8efd5", size = 211211, upload-time = "2025-09-08T23:22:20.588Z" }, + { url = "https://files.pythonhosted.org/packages/49/72/ff2d12dbf21aca1b32a40ed792ee6b40f6dc3a9cf1644bd7ef6e95e0ac5e/cffi-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8ea985900c5c95ce9db1745f7933eeef5d314f0565b27625d9a10ec9881e1bfb", size = 218036, upload-time = "2025-09-08T23:22:22.143Z" }, + { url = "https://files.pythonhosted.org/packages/e2/cc/027d7fb82e58c48ea717149b03bcadcbdc293553edb283af792bd4bcbb3f/cffi-2.0.0-cp310-cp310-win32.whl", hash = "sha256:1f72fb8906754ac8a2cc3f9f5aaa298070652a0ffae577e0ea9bd480dc3c931a", size = 172184, upload-time = "2025-09-08T23:22:23.328Z" }, + { url = "https://files.pythonhosted.org/packages/33/fa/072dd15ae27fbb4e06b437eb6e944e75b068deb09e2a2826039e49ee2045/cffi-2.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:b18a3ed7d5b3bd8d9ef7a8cb226502c6bf8308df1525e1cc676c3680e7176739", size = 182790, upload-time = "2025-09-08T23:22:24.752Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/a1/67fe25fac3c7642725500a3f6cfe5821ad557c3abb11c9d20d12c7008d3e/charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5", size = 144271, upload-time = "2026-04-02T09:28:39.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/08/0f303cb0b529e456bb116f2d50565a482694fbb94340bf56d44677e7ed03/charset_normalizer-3.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cdd68a1fb318e290a2077696b7eb7a21a49163c455979c639bf5a5dcdc46617d", size = 315182, upload-time = "2026-04-02T09:25:40.673Z" }, + { url = "https://files.pythonhosted.org/packages/24/47/b192933e94b546f1b1fe4df9cc1f84fcdbf2359f8d1081d46dd029b50207/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e17b8d5d6a8c47c85e68ca8379def1303fd360c3e22093a807cd34a71cd082b8", size = 209329, upload-time = "2026-04-02T09:25:42.354Z" }, + { url = "https://files.pythonhosted.org/packages/c2/b4/01fa81c5ca6141024d89a8fc15968002b71da7f825dd14113207113fabbd/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:511ef87c8aec0783e08ac18565a16d435372bc1ac25a91e6ac7f5ef2b0bff790", size = 231230, upload-time = "2026-04-02T09:25:44.281Z" }, + { url = "https://files.pythonhosted.org/packages/20/f7/7b991776844dfa058017e600e6e55ff01984a063290ca5622c0b63162f68/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:007d05ec7321d12a40227aae9e2bc6dca73f3cb21058999a1df9e193555a9dcc", size = 225890, upload-time = "2026-04-02T09:25:45.475Z" }, + { url = "https://files.pythonhosted.org/packages/20/e7/bed0024a0f4ab0c8a9c64d4445f39b30c99bd1acd228291959e3de664247/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cf29836da5119f3c8a8a70667b0ef5fdca3bb12f80fd06487cfa575b3909b393", size = 216930, upload-time = "2026-04-02T09:25:46.58Z" }, + { url = "https://files.pythonhosted.org/packages/e2/ab/b18f0ab31cdd7b3ddb8bb76c4a414aeb8160c9810fdf1bc62f269a539d87/charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:12d8baf840cc7889b37c7c770f478adea7adce3dcb3944d02ec87508e2dcf153", size = 202109, upload-time = "2026-04-02T09:25:48.031Z" }, + { url = "https://files.pythonhosted.org/packages/82/e5/7e9440768a06dfb3075936490cb82dbf0ee20a133bf0dd8551fa096914ec/charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d560742f3c0d62afaccf9f41fe485ed69bd7661a241f86a3ef0f0fb8b1a397af", size = 214684, upload-time = "2026-04-02T09:25:49.245Z" }, + { url = "https://files.pythonhosted.org/packages/71/94/8c61d8da9f062fdf457c80acfa25060ec22bf1d34bbeaca4350f13bcfd07/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b14b2d9dac08e28bb8046a1a0434b1750eb221c8f5b87a68f4fa11a6f97b5e34", size = 212785, upload-time = "2026-04-02T09:25:50.671Z" }, + { url = "https://files.pythonhosted.org/packages/66/cd/6e9889c648e72c0ab2e5967528bb83508f354d706637bc7097190c874e13/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:bc17a677b21b3502a21f66a8cc64f5bfad4df8a0b8434d661666f8ce90ac3af1", size = 203055, upload-time = "2026-04-02T09:25:51.802Z" }, + { url = "https://files.pythonhosted.org/packages/92/2e/7a951d6a08aefb7eb8e1b54cdfb580b1365afdd9dd484dc4bee9e5d8f258/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:750e02e074872a3fad7f233b47734166440af3cdea0add3e95163110816d6752", size = 232502, upload-time = "2026-04-02T09:25:53.388Z" }, + { url = "https://files.pythonhosted.org/packages/58/d5/abcf2d83bf8e0a1286df55cd0dc1d49af0da4282aa77e986df343e7de124/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:4e5163c14bffd570ef2affbfdd77bba66383890797df43dc8b4cc7d6f500bf53", size = 214295, upload-time = "2026-04-02T09:25:54.765Z" }, + { url = "https://files.pythonhosted.org/packages/47/3a/7d4cd7ed54be99973a0dc176032cba5cb1f258082c31fa6df35cff46acfc/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6ed74185b2db44f41ef35fd1617c5888e59792da9bbc9190d6c7300617182616", size = 227145, upload-time = "2026-04-02T09:25:55.904Z" }, + { url = "https://files.pythonhosted.org/packages/1d/98/3a45bf8247889cf28262ebd3d0872edff11565b2a1e3064ccb132db3fbb0/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:94e1885b270625a9a828c9793b4d52a64445299baa1fea5a173bf1d3dd9a1a5a", size = 218884, upload-time = "2026-04-02T09:25:57.074Z" }, + { url = "https://files.pythonhosted.org/packages/ad/80/2e8b7f8915ed5c9ef13aa828d82738e33888c485b65ebf744d615040c7ea/charset_normalizer-3.4.7-cp310-cp310-win32.whl", hash = "sha256:6785f414ae0f3c733c437e0f3929197934f526d19dfaa75e18fdb4f94c6fb374", size = 148343, upload-time = "2026-04-02T09:25:58.199Z" }, + { url = "https://files.pythonhosted.org/packages/35/1b/3b8c8c77184af465ee9ad88b5aea46ea6b2e1f7b9dc9502891e37af21e30/charset_normalizer-3.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:6696b7688f54f5af4462118f0bfa7c1621eeb87154f77fa04b9295ce7a8f2943", size = 159174, upload-time = "2026-04-02T09:25:59.322Z" }, + { url = "https://files.pythonhosted.org/packages/be/c1/feb40dca40dbb21e0a908801782d9288c64fc8d8e562c2098e9994c8c21b/charset_normalizer-3.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:66671f93accb62ed07da56613636f3641f1a12c13046ce91ffc923721f23c008", size = 147805, upload-time = "2026-04-02T09:26:00.756Z" }, + { url = "https://files.pythonhosted.org/packages/db/8f/61959034484a4a7c527811f4721e75d02d653a35afb0b6054474d8185d4c/charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d", size = 61958, upload-time = "2026-04-02T09:28:37.794Z" }, +] + +[[package]] +name = "click" +version = "8.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/75/31212c6bf2503fdf920d87fee5d7a86a2e3bcf444984126f13d8e4016804/click-8.3.2.tar.gz", hash = "sha256:14162b8b3b3550a7d479eafa77dfd3c38d9dc8951f6f69c78913a8f9a7540fd5", size = 302856, upload-time = "2026-04-03T19:14:45.118Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/20/71885d8b97d4f3dde17b1fdb92dbd4908b00541c5a3379787137285f602e/click-8.3.2-py3-none-any.whl", hash = "sha256:1924d2c27c5653561cd2cae4548d1406039cb79b858b747cfea24924bbc1616d", size = 108379, upload-time = "2026-04-03T19:14:43.505Z" }, +] + +[[package]] +name = "click-plugins" +version = "1.1.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/a4/34847b59150da33690a36da3681d6bbc2ec14ee9a846bc30a6746e5984e4/click_plugins-1.1.1.2.tar.gz", hash = "sha256:d7af3984a99d243c131aa1a828331e7630f4a88a9741fd05c927b204bcf92261", size = 8343, upload-time = "2025-06-25T00:47:37.555Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/9a/2abecb28ae875e39c8cad711eb1186d8d14eab564705325e77e4e6ab9ae5/click_plugins-1.1.1.2-py2.py3-none-any.whl", hash = "sha256:008d65743833ffc1f5417bf0e78e8d2c23aab04d9745ba817bd3e71b0feb6aa6", size = 11051, upload-time = "2025-06-25T00:47:36.731Z" }, +] + +[[package]] +name = "cligj" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ea/0d/837dbd5d8430fd0f01ed72c4cfb2f548180f4c68c635df84ce87956cff32/cligj-0.7.2.tar.gz", hash = "sha256:a4bc13d623356b373c2c27c53dbd9c68cae5d526270bfa71f6c6fa69669c6b27", size = 9803, upload-time = "2021-05-28T21:23:27.935Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/86/43fa9f15c5b9fb6e82620428827cd3c284aa933431405d1bcf5231ae3d3e/cligj-0.7.2-py3-none-any.whl", hash = "sha256:c1ca117dbce1fe20a5809dc96f01e1c2840f6dcc939b3ddbb1111bf330ba82df", size = 7069, upload-time = "2021-05-28T21:23:26.877Z" }, +] + +[[package]] +name = "cloudpickle" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/27/fb/576f067976d320f5f0114a8d9fa1215425441bb35627b1993e5afd8111e5/cloudpickle-3.1.2.tar.gz", hash = "sha256:7fda9eb655c9c230dab534f1983763de5835249750e85fbcef43aaa30a9a2414", size = 22330, upload-time = "2025-11-03T09:25:26.604Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/39/799be3f2f0f38cc727ee3b4f1445fe6d5e4133064ec2e4115069418a5bb6/cloudpickle-3.1.2-py3-none-any.whl", hash = "sha256:9acb47f6afd73f60dc1df93bb801b472f05ff42fa6c84167d25cb206be1fbf4a", size = 22228, upload-time = "2025-11-03T09:25:25.534Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "coloredlogs" +version = "15.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "humanfriendly" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/c7/eed8f27100517e8c0e6b923d5f0845d0cb99763da6fdee00478f91db7325/coloredlogs-15.0.1.tar.gz", hash = "sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0", size = 278520, upload-time = "2021-06-11T10:22:45.202Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/06/3d6badcf13db419e25b07041d9c7b4a2c331d3f4e7134445ec5df57714cd/coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934", size = 46018, upload-time = "2021-06-11T10:22:42.561Z" }, +] + +[[package]] +name = "colorlog" +version = "6.10.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a2/61/f083b5ac52e505dfc1c624eafbf8c7589a0d7f32daa398d2e7590efa5fda/colorlog-6.10.1.tar.gz", hash = "sha256:eb4ae5cb65fe7fec7773c2306061a8e63e02efc2c72eba9d27b0fa23c94f1321", size = 17162, upload-time = "2025-10-16T16:14:11.978Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/c1/e419ef3723a074172b68aaa89c9f3de486ed4c2399e2dbd8113a4fdcaf9e/colorlog-6.10.1-py3-none-any.whl", hash = "sha256:2d7e8348291948af66122cff006c9f8da6255d224e7cf8e37d8de2df3bad8c9c", size = 11743, upload-time = "2025-10-16T16:14:10.512Z" }, +] + +[[package]] +name = "comm" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/13/7d740c5849255756bc17888787313b61fd38a0a8304fc4f073dfc46122aa/comm-0.2.3.tar.gz", hash = "sha256:2dc8048c10962d55d7ad693be1e7045d891b7ce8d999c97963a5e3e99c055971", size = 6319, upload-time = "2025-07-25T14:02:04.452Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl", hash = "sha256:c615d91d75f7f04f095b30d1c1711babd43bdc6419c1be9886a85f2f4e489417", size = 7294, upload-time = "2025-07-25T14:02:02.896Z" }, +] + +[[package]] +name = "contourpy" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/54/eb9bfc647b19f2009dd5c7f5ec51c4e6ca831725f1aea7a993034f483147/contourpy-1.3.2.tar.gz", hash = "sha256:b6945942715a034c671b7fc54f9588126b0b8bf23db2696e3ca8328f3ff0ab54", size = 13466130, upload-time = "2025-04-15T17:47:53.79Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/a3/da4153ec8fe25d263aa48c1a4cbde7f49b59af86f0b6f7862788c60da737/contourpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba38e3f9f330af820c4b27ceb4b9c7feee5fe0493ea53a8720f4792667465934", size = 268551, upload-time = "2025-04-15T17:34:46.581Z" }, + { url = "https://files.pythonhosted.org/packages/2f/6c/330de89ae1087eb622bfca0177d32a7ece50c3ef07b28002de4757d9d875/contourpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dc41ba0714aa2968d1f8674ec97504a8f7e334f48eeacebcaa6256213acb0989", size = 253399, upload-time = "2025-04-15T17:34:51.427Z" }, + { url = "https://files.pythonhosted.org/packages/c1/bd/20c6726b1b7f81a8bee5271bed5c165f0a8e1f572578a9d27e2ccb763cb2/contourpy-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9be002b31c558d1ddf1b9b415b162c603405414bacd6932d031c5b5a8b757f0d", size = 312061, upload-time = "2025-04-15T17:34:55.961Z" }, + { url = "https://files.pythonhosted.org/packages/22/fc/a9665c88f8a2473f823cf1ec601de9e5375050f1958cbb356cdf06ef1ab6/contourpy-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8d2e74acbcba3bfdb6d9d8384cdc4f9260cae86ed9beee8bd5f54fee49a430b9", size = 351956, upload-time = "2025-04-15T17:35:00.992Z" }, + { url = "https://files.pythonhosted.org/packages/25/eb/9f0a0238f305ad8fb7ef42481020d6e20cf15e46be99a1fcf939546a177e/contourpy-1.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e259bced5549ac64410162adc973c5e2fb77f04df4a439d00b478e57a0e65512", size = 320872, upload-time = "2025-04-15T17:35:06.177Z" }, + { url = "https://files.pythonhosted.org/packages/32/5c/1ee32d1c7956923202f00cf8d2a14a62ed7517bdc0ee1e55301227fc273c/contourpy-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad687a04bc802cbe8b9c399c07162a3c35e227e2daccf1668eb1f278cb698631", size = 325027, upload-time = "2025-04-15T17:35:11.244Z" }, + { url = "https://files.pythonhosted.org/packages/83/bf/9baed89785ba743ef329c2b07fd0611d12bfecbedbdd3eeecf929d8d3b52/contourpy-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cdd22595308f53ef2f891040ab2b93d79192513ffccbd7fe19be7aa773a5e09f", size = 1306641, upload-time = "2025-04-15T17:35:26.701Z" }, + { url = "https://files.pythonhosted.org/packages/d4/cc/74e5e83d1e35de2d28bd97033426b450bc4fd96e092a1f7a63dc7369b55d/contourpy-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b4f54d6a2defe9f257327b0f243612dd051cc43825587520b1bf74a31e2f6ef2", size = 1374075, upload-time = "2025-04-15T17:35:43.204Z" }, + { url = "https://files.pythonhosted.org/packages/0c/42/17f3b798fd5e033b46a16f8d9fcb39f1aba051307f5ebf441bad1ecf78f8/contourpy-1.3.2-cp310-cp310-win32.whl", hash = "sha256:f939a054192ddc596e031e50bb13b657ce318cf13d264f095ce9db7dc6ae81c0", size = 177534, upload-time = "2025-04-15T17:35:46.554Z" }, + { url = "https://files.pythonhosted.org/packages/54/ec/5162b8582f2c994721018d0c9ece9dc6ff769d298a8ac6b6a652c307e7df/contourpy-1.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:c440093bbc8fc21c637c03bafcbef95ccd963bc6e0514ad887932c18ca2a759a", size = 221188, upload-time = "2025-04-15T17:35:50.064Z" }, + { url = "https://files.pythonhosted.org/packages/33/05/b26e3c6ecc05f349ee0013f0bb850a761016d89cec528a98193a48c34033/contourpy-1.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fd93cc7f3139b6dd7aab2f26a90dde0aa9fc264dbf70f6740d498a70b860b82c", size = 265681, upload-time = "2025-04-15T17:44:59.314Z" }, + { url = "https://files.pythonhosted.org/packages/2b/25/ac07d6ad12affa7d1ffed11b77417d0a6308170f44ff20fa1d5aa6333f03/contourpy-1.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:107ba8a6a7eec58bb475329e6d3b95deba9440667c4d62b9b6063942b61d7f16", size = 315101, upload-time = "2025-04-15T17:45:04.165Z" }, + { url = "https://files.pythonhosted.org/packages/8f/4d/5bb3192bbe9d3f27e3061a6a8e7733c9120e203cb8515767d30973f71030/contourpy-1.3.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ded1706ed0c1049224531b81128efbd5084598f18d8a2d9efae833edbd2b40ad", size = 220599, upload-time = "2025-04-15T17:45:08.456Z" }, +] + +[[package]] +name = "coverage" +version = "7.13.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/e0/70553e3000e345daff267cec284ce4cbf3fc141b6da229ac52775b5428f1/coverage-7.13.5.tar.gz", hash = "sha256:c81f6515c4c40141f83f502b07bbfa5c240ba25bbe73da7b33f1e5b6120ff179", size = 915967, upload-time = "2026-03-17T10:33:18.341Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/33/e8c48488c29a73fd089f9d71f9653c1be7478f2ad6b5bc870db11a55d23d/coverage-7.13.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0723d2c96324561b9aa76fb982406e11d93cdb388a7a7da2b16e04719cf7ca5", size = 219255, upload-time = "2026-03-17T10:29:51.081Z" }, + { url = "https://files.pythonhosted.org/packages/da/bd/b0ebe9f677d7f4b74a3e115eec7ddd4bcf892074963a00d91e8b164a6386/coverage-7.13.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:52f444e86475992506b32d4e5ca55c24fc88d73bcbda0e9745095b28ef4dc0cf", size = 219772, upload-time = "2026-03-17T10:29:52.867Z" }, + { url = "https://files.pythonhosted.org/packages/48/cc/5cb9502f4e01972f54eedd48218bb203fe81e294be606a2bc93970208013/coverage-7.13.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:704de6328e3d612a8f6c07000a878ff38181ec3263d5a11da1db294fa6a9bdf8", size = 246532, upload-time = "2026-03-17T10:29:54.688Z" }, + { url = "https://files.pythonhosted.org/packages/7d/d8/3217636d86c7e7b12e126e4f30ef1581047da73140614523af7495ed5f2d/coverage-7.13.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:a1a6d79a14e1ec1832cabc833898636ad5f3754a678ef8bb4908515208bf84f4", size = 248333, upload-time = "2026-03-17T10:29:56.221Z" }, + { url = "https://files.pythonhosted.org/packages/2b/30/2002ac6729ba2d4357438e2ed3c447ad8562866c8c63fc16f6dfc33afe56/coverage-7.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:79060214983769c7ba3f0cee10b54c97609dca4d478fa1aa32b914480fd5738d", size = 250211, upload-time = "2026-03-17T10:29:57.938Z" }, + { url = "https://files.pythonhosted.org/packages/6c/85/552496626d6b9359eb0e2f86f920037c9cbfba09b24d914c6e1528155f7d/coverage-7.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:356e76b46783a98c2a2fe81ec79df4883a1e62895ea952968fb253c114e7f930", size = 252125, upload-time = "2026-03-17T10:29:59.388Z" }, + { url = "https://files.pythonhosted.org/packages/44/21/40256eabdcbccdb6acf6b381b3016a154399a75fe39d406f790ae84d1f3c/coverage-7.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0cef0cdec915d11254a7f549c1170afecce708d30610c6abdded1f74e581666d", size = 247219, upload-time = "2026-03-17T10:30:01.199Z" }, + { url = "https://files.pythonhosted.org/packages/b1/e8/96e2a6c3f21a0ea77d7830b254a1542d0328acc8d7bdf6a284ba7e529f77/coverage-7.13.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dc022073d063b25a402454e5712ef9e007113e3a676b96c5f29b2bda29352f40", size = 248248, upload-time = "2026-03-17T10:30:03.317Z" }, + { url = "https://files.pythonhosted.org/packages/da/ba/8477f549e554827da390ec659f3c38e4b6d95470f4daafc2d8ff94eaa9c2/coverage-7.13.5-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9b74db26dfea4f4e50d48a4602207cd1e78be33182bc9cbf22da94f332f99878", size = 246254, upload-time = "2026-03-17T10:30:04.832Z" }, + { url = "https://files.pythonhosted.org/packages/55/59/bc22aef0e6aa179d5b1b001e8b3654785e9adf27ef24c93dc4228ebd5d68/coverage-7.13.5-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ad146744ca4fd09b50c482650e3c1b1f4dfa1d4792e0a04a369c7f23336f0400", size = 250067, upload-time = "2026-03-17T10:30:06.535Z" }, + { url = "https://files.pythonhosted.org/packages/de/1b/c6a023a160806a5137dca53468fd97530d6acad24a22003b1578a9c2e429/coverage-7.13.5-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:c555b48be1853fe3997c11c4bd521cdd9a9612352de01fa4508f16ec341e6fe0", size = 246521, upload-time = "2026-03-17T10:30:08.486Z" }, + { url = "https://files.pythonhosted.org/packages/2d/3f/3532c85a55aa2f899fa17c186f831cfa1aa434d88ff792a709636f64130e/coverage-7.13.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7034b5c56a58ae5e85f23949d52c14aca2cfc6848a31764995b7de88f13a1ea0", size = 247126, upload-time = "2026-03-17T10:30:09.966Z" }, + { url = "https://files.pythonhosted.org/packages/aa/2e/b9d56af4a24ef45dfbcda88e06870cb7d57b2b0bfa3a888d79b4c8debd76/coverage-7.13.5-cp310-cp310-win32.whl", hash = "sha256:eb7fdf1ef130660e7415e0253a01a7d5a88c9c4d158bcf75cbbd922fd65a5b58", size = 221860, upload-time = "2026-03-17T10:30:11.393Z" }, + { url = "https://files.pythonhosted.org/packages/9f/cc/d938417e7a4d7f0433ad4edee8bb2acdc60dc7ac5af19e2a07a048ecbee3/coverage-7.13.5-cp310-cp310-win_amd64.whl", hash = "sha256:3e1bb5f6c78feeb1be3475789b14a0f0a5b47d505bfc7267126ccbd50289999e", size = 222788, upload-time = "2026-03-17T10:30:12.886Z" }, + { url = "https://files.pythonhosted.org/packages/9e/ee/a4cf96b8ce1e566ed238f0659ac2d3f007ed1d14b181bcb684e19561a69a/coverage-7.13.5-py3-none-any.whl", hash = "sha256:34b02417cf070e173989b3db962f7ed56d2f644307b2cf9d5a0f258e13084a61", size = 211346, upload-time = "2026-03-17T10:33:15.691Z" }, +] + +[package.optional-dependencies] +toml = [ + { name = "tomli" }, +] + +[[package]] +name = "cryptography" +version = "46.0.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/47/93/ac8f3d5ff04d54bc814e961a43ae5b0b146154c89c61b47bb07557679b18/cryptography-46.0.7.tar.gz", hash = "sha256:e4cfd68c5f3e0bfdad0d38e023239b96a2fe84146481852dffbcca442c245aa5", size = 750652, upload-time = "2026-04-08T01:57:54.692Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/5d/4a8f770695d73be252331e60e526291e3df0c9b27556a90a6b47bccca4c2/cryptography-46.0.7-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:ea42cbe97209df307fdc3b155f1b6fa2577c0defa8f1f7d3be7d31d189108ad4", size = 7179869, upload-time = "2026-04-08T01:56:17.157Z" }, + { url = "https://files.pythonhosted.org/packages/5f/45/6d80dc379b0bbc1f9d1e429f42e4cb9e1d319c7a8201beffd967c516ea01/cryptography-46.0.7-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b36a4695e29fe69215d75960b22577197aca3f7a25b9cf9d165dcfe9d80bc325", size = 4275492, upload-time = "2026-04-08T01:56:19.36Z" }, + { url = "https://files.pythonhosted.org/packages/4a/9a/1765afe9f572e239c3469f2cb429f3ba7b31878c893b246b4b2994ffe2fe/cryptography-46.0.7-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5ad9ef796328c5e3c4ceed237a183f5d41d21150f972455a9d926593a1dcb308", size = 4426670, upload-time = "2026-04-08T01:56:21.415Z" }, + { url = "https://files.pythonhosted.org/packages/8f/3e/af9246aaf23cd4ee060699adab1e47ced3f5f7e7a8ffdd339f817b446462/cryptography-46.0.7-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:73510b83623e080a2c35c62c15298096e2a5dc8d51c3b4e1740211839d0dea77", size = 4280275, upload-time = "2026-04-08T01:56:23.539Z" }, + { url = "https://files.pythonhosted.org/packages/0f/54/6bbbfc5efe86f9d71041827b793c24811a017c6ac0fd12883e4caa86b8ed/cryptography-46.0.7-cp311-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:cbd5fb06b62bd0721e1170273d3f4d5a277044c47ca27ee257025146c34cbdd1", size = 4928402, upload-time = "2026-04-08T01:56:25.624Z" }, + { url = "https://files.pythonhosted.org/packages/2d/cf/054b9d8220f81509939599c8bdbc0c408dbd2bdd41688616a20731371fe0/cryptography-46.0.7-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:420b1e4109cc95f0e5700eed79908cef9268265c773d3a66f7af1eef53d409ef", size = 4459985, upload-time = "2026-04-08T01:56:27.309Z" }, + { url = "https://files.pythonhosted.org/packages/f9/46/4e4e9c6040fb01c7467d47217d2f882daddeb8828f7df800cb806d8a2288/cryptography-46.0.7-cp311-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:24402210aa54baae71d99441d15bb5a1919c195398a87b563df84468160a65de", size = 3990652, upload-time = "2026-04-08T01:56:29.095Z" }, + { url = "https://files.pythonhosted.org/packages/36/5f/313586c3be5a2fbe87e4c9a254207b860155a8e1f3cca99f9910008e7d08/cryptography-46.0.7-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:8a469028a86f12eb7d2fe97162d0634026d92a21f3ae0ac87ed1c4a447886c83", size = 4279805, upload-time = "2026-04-08T01:56:30.928Z" }, + { url = "https://files.pythonhosted.org/packages/69/33/60dfc4595f334a2082749673386a4d05e4f0cf4df8248e63b2c3437585f2/cryptography-46.0.7-cp311-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:9694078c5d44c157ef3162e3bf3946510b857df5a3955458381d1c7cfc143ddb", size = 4892883, upload-time = "2026-04-08T01:56:32.614Z" }, + { url = "https://files.pythonhosted.org/packages/c7/0b/333ddab4270c4f5b972f980adef4faa66951a4aaf646ca067af597f15563/cryptography-46.0.7-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:42a1e5f98abb6391717978baf9f90dc28a743b7d9be7f0751a6f56a75d14065b", size = 4459756, upload-time = "2026-04-08T01:56:34.306Z" }, + { url = "https://files.pythonhosted.org/packages/d2/14/633913398b43b75f1234834170947957c6b623d1701ffc7a9600da907e89/cryptography-46.0.7-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:91bbcb08347344f810cbe49065914fe048949648f6bd5c2519f34619142bbe85", size = 4410244, upload-time = "2026-04-08T01:56:35.977Z" }, + { url = "https://files.pythonhosted.org/packages/10/f2/19ceb3b3dc14009373432af0c13f46aa08e3ce334ec6eff13492e1812ccd/cryptography-46.0.7-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5d1c02a14ceb9148cc7816249f64f623fbfee39e8c03b3650d842ad3f34d637e", size = 4674868, upload-time = "2026-04-08T01:56:38.034Z" }, + { url = "https://files.pythonhosted.org/packages/1a/bb/a5c213c19ee94b15dfccc48f363738633a493812687f5567addbcbba9f6f/cryptography-46.0.7-cp311-abi3-win32.whl", hash = "sha256:d23c8ca48e44ee015cd0a54aeccdf9f09004eba9fc96f38c911011d9ff1bd457", size = 3026504, upload-time = "2026-04-08T01:56:39.666Z" }, + { url = "https://files.pythonhosted.org/packages/2b/02/7788f9fefa1d060ca68717c3901ae7fffa21ee087a90b7f23c7a603c32ae/cryptography-46.0.7-cp311-abi3-win_amd64.whl", hash = "sha256:397655da831414d165029da9bc483bed2fe0e75dde6a1523ec2fe63f3c46046b", size = 3488363, upload-time = "2026-04-08T01:56:41.893Z" }, + { url = "https://files.pythonhosted.org/packages/a7/7f/cd42fc3614386bc0c12f0cb3c4ae1fc2bbca5c9662dfed031514911d513d/cryptography-46.0.7-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:462ad5cb1c148a22b2e3bcc5ad52504dff325d17daf5df8d88c17dda1f75f2a4", size = 7165618, upload-time = "2026-04-08T01:57:10.645Z" }, + { url = "https://files.pythonhosted.org/packages/a5/d0/36a49f0262d2319139d2829f773f1b97ef8aef7f97e6e5bd21455e5a8fb5/cryptography-46.0.7-cp38-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:84d4cced91f0f159a7ddacad249cc077e63195c36aac40b4150e7a57e84fffe7", size = 4270628, upload-time = "2026-04-08T01:57:12.885Z" }, + { url = "https://files.pythonhosted.org/packages/8a/6c/1a42450f464dda6ffbe578a911f773e54dd48c10f9895a23a7e88b3e7db5/cryptography-46.0.7-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:128c5edfe5e5938b86b03941e94fac9ee793a94452ad1365c9fc3f4f62216832", size = 4415405, upload-time = "2026-04-08T01:57:14.923Z" }, + { url = "https://files.pythonhosted.org/packages/9a/92/4ed714dbe93a066dc1f4b4581a464d2d7dbec9046f7c8b7016f5286329e2/cryptography-46.0.7-cp38-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5e51be372b26ef4ba3de3c167cd3d1022934bc838ae9eaad7e644986d2a3d163", size = 4272715, upload-time = "2026-04-08T01:57:16.638Z" }, + { url = "https://files.pythonhosted.org/packages/b7/e6/a26b84096eddd51494bba19111f8fffe976f6a09f132706f8f1bf03f51f7/cryptography-46.0.7-cp38-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:cdf1a610ef82abb396451862739e3fc93b071c844399e15b90726ef7470eeaf2", size = 4918400, upload-time = "2026-04-08T01:57:19.021Z" }, + { url = "https://files.pythonhosted.org/packages/c7/08/ffd537b605568a148543ac3c2b239708ae0bd635064bab41359252ef88ed/cryptography-46.0.7-cp38-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:1d25aee46d0c6f1a501adcddb2d2fee4b979381346a78558ed13e50aa8a59067", size = 4450634, upload-time = "2026-04-08T01:57:21.185Z" }, + { url = "https://files.pythonhosted.org/packages/16/01/0cd51dd86ab5b9befe0d031e276510491976c3a80e9f6e31810cce46c4ad/cryptography-46.0.7-cp38-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:cdfbe22376065ffcf8be74dc9a909f032df19bc58a699456a21712d6e5eabfd0", size = 3985233, upload-time = "2026-04-08T01:57:22.862Z" }, + { url = "https://files.pythonhosted.org/packages/92/49/819d6ed3a7d9349c2939f81b500a738cb733ab62fbecdbc1e38e83d45e12/cryptography-46.0.7-cp38-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:abad9dac36cbf55de6eb49badd4016806b3165d396f64925bf2999bcb67837ba", size = 4271955, upload-time = "2026-04-08T01:57:24.814Z" }, + { url = "https://files.pythonhosted.org/packages/80/07/ad9b3c56ebb95ed2473d46df0847357e01583f4c52a85754d1a55e29e4d0/cryptography-46.0.7-cp38-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:935ce7e3cfdb53e3536119a542b839bb94ec1ad081013e9ab9b7cfd478b05006", size = 4879888, upload-time = "2026-04-08T01:57:26.88Z" }, + { url = "https://files.pythonhosted.org/packages/b8/c7/201d3d58f30c4c2bdbe9b03844c291feb77c20511cc3586daf7edc12a47b/cryptography-46.0.7-cp38-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:35719dc79d4730d30f1c2b6474bd6acda36ae2dfae1e3c16f2051f215df33ce0", size = 4449961, upload-time = "2026-04-08T01:57:29.068Z" }, + { url = "https://files.pythonhosted.org/packages/a5/ef/649750cbf96f3033c3c976e112265c33906f8e462291a33d77f90356548c/cryptography-46.0.7-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:7bbc6ccf49d05ac8f7d7b5e2e2c33830d4fe2061def88210a126d130d7f71a85", size = 4401696, upload-time = "2026-04-08T01:57:31.029Z" }, + { url = "https://files.pythonhosted.org/packages/41/52/a8908dcb1a389a459a29008c29966c1d552588d4ae6d43f3a1a4512e0ebe/cryptography-46.0.7-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a1529d614f44b863a7b480c6d000fe93b59acee9c82ffa027cfadc77521a9f5e", size = 4664256, upload-time = "2026-04-08T01:57:33.144Z" }, + { url = "https://files.pythonhosted.org/packages/4b/fa/f0ab06238e899cc3fb332623f337a7364f36f4bb3f2534c2bb95a35b132c/cryptography-46.0.7-cp38-abi3-win32.whl", hash = "sha256:f247c8c1a1fb45e12586afbb436ef21ff1e80670b2861a90353d9b025583d246", size = 3013001, upload-time = "2026-04-08T01:57:34.933Z" }, + { url = "https://files.pythonhosted.org/packages/d2/f1/00ce3bde3ca542d1acd8f8cfa38e446840945aa6363f9b74746394b14127/cryptography-46.0.7-cp38-abi3-win_amd64.whl", hash = "sha256:506c4ff91eff4f82bdac7633318a526b1d1309fc07ca76a3ad182cb5b686d6d3", size = 3472985, upload-time = "2026-04-08T01:57:36.714Z" }, +] + +[[package]] +name = "cycler" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, +] + +[[package]] +name = "debugpy" +version = "1.8.20" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/b7/cd8080344452e4874aae67c40d8940e2b4d47b01601a8fd9f44786c757c7/debugpy-1.8.20.tar.gz", hash = "sha256:55bc8701714969f1ab89a6d5f2f3d40c36f91b2cbe2f65d98bf8196f6a6a2c33", size = 1645207, upload-time = "2026-01-29T23:03:28.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/be/8bd693a0b9d53d48c8978fa5d889e06f3b5b03e45fd1ea1e78267b4887cb/debugpy-1.8.20-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:157e96ffb7f80b3ad36d808646198c90acb46fdcfd8bb1999838f0b6f2b59c64", size = 2099192, upload-time = "2026-01-29T23:03:29.707Z" }, + { url = "https://files.pythonhosted.org/packages/77/1b/85326d07432086a06361d493d2743edd0c4fc2ef62162be7f8618441ac37/debugpy-1.8.20-cp310-cp310-manylinux_2_34_x86_64.whl", hash = "sha256:c1178ae571aff42e61801a38b007af504ec8e05fde1c5c12e5a7efef21009642", size = 3088568, upload-time = "2026-01-29T23:03:31.467Z" }, + { url = "https://files.pythonhosted.org/packages/e8/60/3e08462ee3eccd10998853eb35947c416e446bfe2bc37dbb886b9044586c/debugpy-1.8.20-cp310-cp310-win32.whl", hash = "sha256:c29dd9d656c0fbd77906a6e6a82ae4881514aa3294b94c903ff99303e789b4a2", size = 5284399, upload-time = "2026-01-29T23:03:33.678Z" }, + { url = "https://files.pythonhosted.org/packages/72/43/09d49106e770fe558ced5e80df2e3c2ebee10e576eda155dcc5670473663/debugpy-1.8.20-cp310-cp310-win_amd64.whl", hash = "sha256:3ca85463f63b5dd0aa7aaa933d97cbc47c174896dcae8431695872969f981893", size = 5316388, upload-time = "2026-01-29T23:03:35.095Z" }, + { url = "https://files.pythonhosted.org/packages/e0/c3/7f67dea8ccf8fdcb9c99033bbe3e90b9e7395415843accb81428c441be2d/debugpy-1.8.20-py2.py3-none-any.whl", hash = "sha256:5be9bed9ae3be00665a06acaa48f8329d2b9632f15fd09f6a9a8c8d9907e54d7", size = 5337658, upload-time = "2026-01-29T23:04:17.404Z" }, +] + +[[package]] +name = "decorator" +version = "5.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/fa/6d96a0978d19e17b68d634497769987b16c8f4cd0a7a05048bec693caa6b/decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360", size = 56711, upload-time = "2025-02-24T04:41:34.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a", size = 9190, upload-time = "2025-02-24T04:41:32.565Z" }, +] + +[[package]] +name = "deepchem" +version = "2.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "rdkit" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "sympy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/1d/568b352513dfa4405da4acbce233c555bc4af29dd63e904537a8014cd585/deepchem-2.8.0.tar.gz", hash = "sha256:ba3f0cf3b589a33dd70757b1045600f52bb539bcd2b6fed9058cb76c7e9d4538", size = 847104, upload-time = "2024-04-02T02:20:46.332Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/c9/3bf4473e3b8131a733219346ff90cdab98e019b90c944fc339a599fc8896/deepchem-2.8.0-py3-none-any.whl", hash = "sha256:042c7639770e69b127f3df5e5bdf139893caa1706d512893d78728fd0a2de8b0", size = 1026290, upload-time = "2024-04-02T02:20:39.079Z" }, +] + +[[package]] +name = "defusedxml" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/d5/c66da9b79e5bdb124974bfe172b4daf3c984ebd9c2a06e2b8a4dc7331c72/defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69", size = 75520, upload-time = "2021-03-08T10:59:26.269Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61", size = 25604, upload-time = "2021-03-08T10:59:24.45Z" }, +] + +[[package]] +name = "dgl" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "networkx" }, + { name = "numpy" }, + { name = "psutil" }, + { name = "requests" }, + { name = "scipy" }, + { name = "torchdata" }, + { name = "tqdm" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/09/2d/c0a40c0d78a8e9c0c43e7f6e4aebebb39c8bf0f80380db2c1f1ba9f3bdfa/dgl-2.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ff74c7119cb1e87c1b06293eba8c22725594517062e74659b1a8636134b16974", size = 6889468, upload-time = "2024-03-05T07:16:21.004Z" }, + { url = "https://files.pythonhosted.org/packages/89/19/08b77e50de7beb9c011905167ab38ecee759a796447ed7ad466484eafb53/dgl-2.1.0-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:1fda987e01987d655e9a2b16281e1f31759bd5088ce08785422055c71abc0298", size = 7464359, upload-time = "2024-03-05T07:16:24.216Z" }, + { url = "https://files.pythonhosted.org/packages/ff/45/44fea6e5228602f5d6ad8b4f5a377f5cf5cb5cb6444d9e7cd99150f13fa2/dgl-2.1.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:336e5aed294b9f2f398be332caa0b256e6386e5a6a3a25dfe0715a161e6c4f94", size = 8548990, upload-time = "2024-03-05T07:16:26.655Z" }, + { url = "https://files.pythonhosted.org/packages/73/72/6bc97419cf8fa1e11420c674fafa3c03e4df9d91bfd8fd802011b5741ce9/dgl-2.1.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:65f5ae94c4c88433fc4524ab8c431494cfddd8100181d5de6df4ed08aa41d14d", size = 7430720, upload-time = "2024-03-05T07:16:29.505Z" }, +] + +[[package]] +name = "dgllife" +version = "0.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "hyperopt" }, + { name = "joblib" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "requests" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/84/5b2b0c5529a08ac547c743152354c6e02047874bdc81fab72c94780c21b5/dgllife-0.3.2.tar.gz", hash = "sha256:6a0baf112e5d89b0ced2d459872750540517eb03ae0a8cf71576c4b69fc6b553", size = 146565, upload-time = "2023-02-13T08:43:11.8Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/4e/f96023191b990533abf50fb172b2439e4ab5ee3efb67520a57facd33df12/dgllife-0.3.2-py3-none-any.whl", hash = "sha256:83147cf8972fd55f3bcbc9ab940c826fd8f85fd6c7973ae8daad2e472228e488", size = 226053, upload-time = "2023-02-13T08:43:09.359Z" }, +] + +[[package]] +name = "dill" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/e1/56027a71e31b02ddc53c7d65b01e68edf64dea2932122fe7746a516f75d5/dill-0.4.1.tar.gz", hash = "sha256:423092df4182177d4d8ba8290c8a5b640c66ab35ec7da59ccfa00f6fa3eea5fa", size = 187315, upload-time = "2026-01-19T02:36:56.85Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/77/dc8c558f7593132cf8fefec57c4f60c83b16941c574ac5f619abb3ae7933/dill-0.4.1-py3-none-any.whl", hash = "sha256:1e1ce33e978ae97fcfcff5638477032b801c46c7c65cf717f95fbc2248f79a9d", size = 120019, upload-time = "2026-01-19T02:36:55.663Z" }, +] + +[[package]] +name = "docutils" +version = "0.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", size = 2204444, upload-time = "2024-04-23T18:57:18.24Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", size = 587408, upload-time = "2024-04-23T18:57:14.835Z" }, +] + +[[package]] +name = "exceptiongroup" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" }, +] + +[[package]] +name = "execnet" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bf/89/780e11f9588d9e7128a3f87788354c7946a9cbb1401ad38a48c4db9a4f07/execnet-2.1.2.tar.gz", hash = "sha256:63d83bfdd9a23e35b9c6a3261412324f964c2ec8dcd8d3c6916ee9373e0befcd", size = 166622, upload-time = "2025-11-12T09:56:37.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/84/02fc1827e8cdded4aa65baef11296a9bbe595c474f0d6d758af082d849fd/execnet-2.1.2-py3-none-any.whl", hash = "sha256:67fba928dd5a544b783f6056f449e5e3931a5c378b128bc18501f7ea79e296ec", size = 40708, upload-time = "2025-11-12T09:56:36.333Z" }, +] + +[[package]] +name = "executing" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cc/28/c14e053b6762b1044f34a13aab6859bbf40456d37d23aa286ac24cfd9a5d/executing-2.2.1.tar.gz", hash = "sha256:3632cc370565f6648cc328b32435bd120a1e4ebb20c77e3fdde9a13cd1e533c4", size = 1129488, upload-time = "2025-09-01T09:48:10.866Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl", hash = "sha256:760643d3452b4d777d295bb167ccc74c64a81df23fb5e08eff250c425a4b2017", size = 28317, upload-time = "2025-09-01T09:48:08.5Z" }, +] + +[[package]] +name = "fastjsonschema" +version = "2.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/b5/23b216d9d985a956623b6bd12d4086b60f0059b27799f23016af04a74ea1/fastjsonschema-2.21.2.tar.gz", hash = "sha256:b1eb43748041c880796cd077f1a07c3d94e93ae84bba5ed36800a33554ae05de", size = 374130, upload-time = "2025-08-14T18:49:36.666Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/a8/20d0723294217e47de6d9e2e40fd4a9d2f7c4b6ef974babd482a59743694/fastjsonschema-2.21.2-py3-none-any.whl", hash = "sha256:1c797122d0a86c5cace2e54bf4e819c36223b552017172f32c5c024a6b77e463", size = 24024, upload-time = "2025-08-14T18:49:34.776Z" }, +] + +[[package]] +name = "filelock" +version = "3.28.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/17/6e8890271880903e3538660a21d63a6c1fea969ac71d0d6b608b78727fa9/filelock-3.28.0.tar.gz", hash = "sha256:4ed1010aae813c4ee8d9c660e4792475ee60c4a0ba76073ceaf862bd317e3ca6", size = 56474, upload-time = "2026-04-14T22:54:33.625Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/21/2f728888c45033d34a417bfcd248ea2564c9e08ab1bfd301377cf05d5586/filelock-3.28.0-py3-none-any.whl", hash = "sha256:de9af6712788e7171df1b28b15eba2446c69721433fa427a9bee07b17820a9db", size = 39189, upload-time = "2026-04-14T22:54:32.037Z" }, +] + +[[package]] +name = "flatbuffers" +version = "25.12.19" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/2d/d2a548598be01649e2d46231d151a6c56d10b964d94043a335ae56ea2d92/flatbuffers-25.12.19-py2.py3-none-any.whl", hash = "sha256:7634f50c427838bb021c2d66a3d1168e9d199b0607e6329399f04846d42e20b4", size = 26661, upload-time = "2025-12-19T23:16:13.622Z" }, +] + +[[package]] +name = "folium" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "branca" }, + { name = "jinja2" }, + { name = "numpy" }, + { name = "requests" }, + { name = "xyzservices" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/76/84a1b1b00ce71f9c0c44af7d80f310c02e2e583591fe7d4cb03baecd0d3f/folium-0.20.0.tar.gz", hash = "sha256:a0d78b9d5a36ba7589ca9aedbd433e84e9fcab79cd6ac213adbcff922e454cb9", size = 109932, upload-time = "2025-06-16T20:22:51.803Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b5/a8/5f764f333204db0390362a4356d03a43626997f26818a0e9396f1b3bd8c9/folium-0.20.0-py2.py3-none-any.whl", hash = "sha256:f0bc2a92acde20bca56367aa5c1c376c433f450608d058daebab2fc9bf8198bf", size = 113394, upload-time = "2025-06-16T20:22:50.318Z" }, +] + +[[package]] +name = "fonttools" +version = "4.62.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/08/7012b00a9a5874311b639c3920270c36ee0c445b69d9989a85e5c92ebcb0/fonttools-4.62.1.tar.gz", hash = "sha256:e54c75fd6041f1122476776880f7c3c3295ffa31962dc6ebe2543c00dca58b5d", size = 3580737, upload-time = "2026-03-13T13:54:25.52Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/ff/532ed43808b469c807e8cb6b21358da3fe6fd51486b3a8c93db0bb5d957f/fonttools-4.62.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ad5cca75776cd453b1b035b530e943334957ae152a36a88a320e779d61fc980c", size = 2873740, upload-time = "2026-03-13T13:52:11.822Z" }, + { url = "https://files.pythonhosted.org/packages/85/e4/2318d2b430562da7227010fb2bb029d2fa54d7b46443ae8942bab224e2a0/fonttools-4.62.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0b3ae47e8636156a9accff64c02c0924cbebad62854c4a6dbdc110cd5b4b341a", size = 2417649, upload-time = "2026-03-13T13:52:14.605Z" }, + { url = "https://files.pythonhosted.org/packages/4c/28/40f15523b5188598018e7956899fed94eb7debec89e2dd70cb4a8df90492/fonttools-4.62.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c9b9e288b4da2f64fd6180644221749de651703e8d0c16bd4b719533a3a7d6e3", size = 4935213, upload-time = "2026-03-13T13:52:17.399Z" }, + { url = "https://files.pythonhosted.org/packages/42/09/7dbe3d7023f57d9b580cfa832109d521988112fd59dddfda3fddda8218f9/fonttools-4.62.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7bca7a1c1faf235ffe25d4f2e555246b4750220b38de8261d94ebc5ce8a23c23", size = 4892374, upload-time = "2026-03-13T13:52:20.175Z" }, + { url = "https://files.pythonhosted.org/packages/d1/2d/84509a2e32cb925371560ef5431365d8da2183c11d98e5b4b8b4e42426a5/fonttools-4.62.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b4e0fcf265ad26e487c56cb12a42dffe7162de708762db951e1b3f755319507d", size = 4911856, upload-time = "2026-03-13T13:52:22.777Z" }, + { url = "https://files.pythonhosted.org/packages/a5/80/df28131379eed93d9e6e6fccd3bf6e3d077bebbfe98cc83f21bbcd83ed02/fonttools-4.62.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2d850f66830a27b0d498ee05adb13a3781637b1826982cd7e2b3789ef0cc71ae", size = 5031712, upload-time = "2026-03-13T13:52:25.14Z" }, + { url = "https://files.pythonhosted.org/packages/3d/03/3c8f09aad64230cd6d921ae7a19f9603c36f70930b00459f112706f6769a/fonttools-4.62.1-cp310-cp310-win32.whl", hash = "sha256:486f32c8047ccd05652aba17e4a8819a3a9d78570eb8a0e3b4503142947880ed", size = 1507878, upload-time = "2026-03-13T13:52:28.149Z" }, + { url = "https://files.pythonhosted.org/packages/dd/ec/f53f626f8f3e89f4cadd8fc08f3452c8fd182c951ad5caa35efac22b29ab/fonttools-4.62.1-cp310-cp310-win_amd64.whl", hash = "sha256:5a648bde915fba9da05ae98856987ca91ba832949a9e2888b48c47ef8b96c5a9", size = 1556766, upload-time = "2026-03-13T13:52:30.814Z" }, + { url = "https://files.pythonhosted.org/packages/fd/ba/56147c165442cc5ba7e82ecf301c9a68353cede498185869e6e02b4c264f/fonttools-4.62.1-py3-none-any.whl", hash = "sha256:7487782e2113861f4ddcc07c3436450659e3caa5e470b27dc2177cade2d8e7fd", size = 1152647, upload-time = "2026-03-13T13:54:22.735Z" }, +] + +[[package]] +name = "fqdn" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/30/3e/a80a8c077fd798951169626cde3e239adeba7dab75deb3555716415bd9b0/fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f", size = 6015, upload-time = "2021-03-11T07:16:29.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014", size = 9121, upload-time = "2021-03-11T07:16:28.351Z" }, +] + +[[package]] +name = "frozenlist" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/4a/557715d5047da48d54e659203b9335be7bfaafda2c3f627b7c47e0b3aaf3/frozenlist-1.8.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b37f6d31b3dcea7deb5e9696e529a6aa4a898adc33db82da12e4c60a7c4d2011", size = 86230, upload-time = "2025-10-06T05:35:23.699Z" }, + { url = "https://files.pythonhosted.org/packages/a2/fb/c85f9fed3ea8fe8740e5b46a59cc141c23b842eca617da8876cfce5f760e/frozenlist-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef2b7b394f208233e471abc541cc6991f907ffd47dc72584acee3147899d6565", size = 49621, upload-time = "2025-10-06T05:35:25.341Z" }, + { url = "https://files.pythonhosted.org/packages/63/70/26ca3f06aace16f2352796b08704338d74b6d1a24ca38f2771afbb7ed915/frozenlist-1.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a88f062f072d1589b7b46e951698950e7da00442fc1cacbe17e19e025dc327ad", size = 49889, upload-time = "2025-10-06T05:35:26.797Z" }, + { url = "https://files.pythonhosted.org/packages/5d/ed/c7895fd2fde7f3ee70d248175f9b6cdf792fb741ab92dc59cd9ef3bd241b/frozenlist-1.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f57fb59d9f385710aa7060e89410aeb5058b99e62f4d16b08b91986b9a2140c2", size = 219464, upload-time = "2025-10-06T05:35:28.254Z" }, + { url = "https://files.pythonhosted.org/packages/6b/83/4d587dccbfca74cb8b810472392ad62bfa100bf8108c7223eb4c4fa2f7b3/frozenlist-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:799345ab092bee59f01a915620b5d014698547afd011e691a208637312db9186", size = 221649, upload-time = "2025-10-06T05:35:29.454Z" }, + { url = "https://files.pythonhosted.org/packages/6a/c6/fd3b9cd046ec5fff9dab66831083bc2077006a874a2d3d9247dea93ddf7e/frozenlist-1.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c23c3ff005322a6e16f71bf8692fcf4d5a304aaafe1e262c98c6d4adc7be863e", size = 219188, upload-time = "2025-10-06T05:35:30.951Z" }, + { url = "https://files.pythonhosted.org/packages/ce/80/6693f55eb2e085fc8afb28cf611448fb5b90e98e068fa1d1b8d8e66e5c7d/frozenlist-1.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8a76ea0f0b9dfa06f254ee06053d93a600865b3274358ca48a352ce4f0798450", size = 231748, upload-time = "2025-10-06T05:35:32.101Z" }, + { url = "https://files.pythonhosted.org/packages/97/d6/e9459f7c5183854abd989ba384fe0cc1a0fb795a83c033f0571ec5933ca4/frozenlist-1.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c7366fe1418a6133d5aa824ee53d406550110984de7637d65a178010f759c6ef", size = 236351, upload-time = "2025-10-06T05:35:33.834Z" }, + { url = "https://files.pythonhosted.org/packages/97/92/24e97474b65c0262e9ecd076e826bfd1d3074adcc165a256e42e7b8a7249/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:13d23a45c4cebade99340c4165bd90eeb4a56c6d8a9d8aa49568cac19a6d0dc4", size = 218767, upload-time = "2025-10-06T05:35:35.205Z" }, + { url = "https://files.pythonhosted.org/packages/ee/bf/dc394a097508f15abff383c5108cb8ad880d1f64a725ed3b90d5c2fbf0bb/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:e4a3408834f65da56c83528fb52ce7911484f0d1eaf7b761fc66001db1646eff", size = 235887, upload-time = "2025-10-06T05:35:36.354Z" }, + { url = "https://files.pythonhosted.org/packages/40/90/25b201b9c015dbc999a5baf475a257010471a1fa8c200c843fd4abbee725/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:42145cd2748ca39f32801dad54aeea10039da6f86e303659db90db1c4b614c8c", size = 228785, upload-time = "2025-10-06T05:35:37.949Z" }, + { url = "https://files.pythonhosted.org/packages/84/f4/b5bc148df03082f05d2dd30c089e269acdbe251ac9a9cf4e727b2dbb8a3d/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e2de870d16a7a53901e41b64ffdf26f2fbb8917b3e6ebf398098d72c5b20bd7f", size = 230312, upload-time = "2025-10-06T05:35:39.178Z" }, + { url = "https://files.pythonhosted.org/packages/db/4b/87e95b5d15097c302430e647136b7d7ab2398a702390cf4c8601975709e7/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:20e63c9493d33ee48536600d1a5c95eefc870cd71e7ab037763d1fbb89cc51e7", size = 217650, upload-time = "2025-10-06T05:35:40.377Z" }, + { url = "https://files.pythonhosted.org/packages/e5/70/78a0315d1fea97120591a83e0acd644da638c872f142fd72a6cebee825f3/frozenlist-1.8.0-cp310-cp310-win32.whl", hash = "sha256:adbeebaebae3526afc3c96fad434367cafbfd1b25d72369a9e5858453b1bb71a", size = 39659, upload-time = "2025-10-06T05:35:41.863Z" }, + { url = "https://files.pythonhosted.org/packages/66/aa/3f04523fb189a00e147e60c5b2205126118f216b0aa908035c45336e27e4/frozenlist-1.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:667c3777ca571e5dbeb76f331562ff98b957431df140b54c85fd4d52eea8d8f6", size = 43837, upload-time = "2025-10-06T05:35:43.205Z" }, + { url = "https://files.pythonhosted.org/packages/39/75/1135feecdd7c336938bd55b4dc3b0dfc46d85b9be12ef2628574b28de776/frozenlist-1.8.0-cp310-cp310-win_arm64.whl", hash = "sha256:80f85f0a7cc86e7a54c46d99c9e1318ff01f4687c172ede30fd52d19d1da1c8e", size = 39989, upload-time = "2025-10-06T05:35:44.596Z" }, + { url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" }, +] + +[[package]] +name = "fsspec" +version = "2024.12.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/11/de70dee31455c546fbc88301971ec03c328f3d1138cfba14263f651e9551/fsspec-2024.12.0.tar.gz", hash = "sha256:670700c977ed2fb51e0d9f9253177ed20cbde4a3e5c0283cc5385b5870c8533f", size = 291600, upload-time = "2024-12-19T19:57:30.333Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/86/5486b0188d08aa643e127774a99bac51ffa6cf343e3deb0583956dca5b22/fsspec-2024.12.0-py3-none-any.whl", hash = "sha256:b520aed47ad9804237ff878b504267a3b0b441e97508bd6d2d8774e3db85cee2", size = 183862, upload-time = "2024-12-19T19:57:28.258Z" }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp" }, +] + +[[package]] +name = "future" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/b2/4140c69c6a66432916b26158687e821ba631a4c9273c474343badf84d3ba/future-1.0.0.tar.gz", hash = "sha256:bd2968309307861edae1458a4f8a4f3598c03be43b97521076aebf5d94c07b05", size = 1228490, upload-time = "2024-02-21T11:52:38.461Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/71/ae30dadffc90b9006d77af76b393cb9dfbfc9629f339fc1574a1c52e6806/future-1.0.0-py3-none-any.whl", hash = "sha256:929292d34f5872e70396626ef385ec22355a1fae8ad29e1a734c3e43f9fbc216", size = 491326, upload-time = "2024-02-21T11:52:35.956Z" }, +] + +[[package]] +name = "gast" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/91/f6/e73969782a2ecec280f8a176f2476149dd9dba69d5f8779ec6108a7721e6/gast-0.7.0.tar.gz", hash = "sha256:0bb14cd1b806722e91ddbab6fb86bba148c22b40e7ff11e248974e04c8adfdae", size = 33630, upload-time = "2025-11-29T15:30:05.266Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/33/f1c6a276de27b7d7339a34749cc33fa87f077f921969c47185d34a887ae2/gast-0.7.0-py3-none-any.whl", hash = "sha256:99cbf1365633a74099f69c59bd650476b96baa5ef196fec88032b00b31ba36f7", size = 22966, upload-time = "2025-11-29T15:30:03.983Z" }, +] + +[[package]] +name = "geopandas" +version = "1.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "pyogrio" }, + { name = "pyproj" }, + { name = "shapely" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/85/ba/8e6b2091878e99e86a36a814dcaeff652ed48bdb03d53e78e15aaa63a914/geopandas-1.1.3.tar.gz", hash = "sha256:91a31989b6f566012838d21d5f8033f37dce882079ccb7cfdc40d5ccce7f284f", size = 336718, upload-time = "2026-03-09T21:49:09.545Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/78/6a04792ace63a93e162f1305392d500ae8ddcb620e7eb88a22fd622b35bb/geopandas-1.1.3-py3-none-any.whl", hash = "sha256:90d62a64f95eaa3be2ccc115c5f3d6e24208bb11983b390fdc0621a3eccd0230", size = 342514, upload-time = "2026-03-09T21:49:07.973Z" }, +] + +[[package]] +name = "google-auth" +version = "2.49.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography" }, + { name = "pyasn1-modules" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/fc/e925290a1ad95c975c459e2df070fac2b90954e13a0370ac505dff78cb99/google_auth-2.49.2.tar.gz", hash = "sha256:c1ae38500e73065dcae57355adb6278cf8b5c8e391994ae9cbadbcb9631ab409", size = 333958, upload-time = "2026-04-10T00:41:21.888Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/76/d241a5c927433420507215df6cac1b1fa4ac0ba7a794df42a84326c68da8/google_auth-2.49.2-py3-none-any.whl", hash = "sha256:c2720924dfc82dedb962c9f52cabb2ab16714fd0a6a707e40561d217574ed6d5", size = 240638, upload-time = "2026-04-10T00:41:14.501Z" }, +] + +[[package]] +name = "google-auth-oauthlib" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-auth" }, + { name = "requests-oauthlib" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e3/b4/ef2170c5f6aa5bc2461bab959a84e56d2819ce26662b50038d2d0602223e/google-auth-oauthlib-1.0.0.tar.gz", hash = "sha256:e375064964820b47221a7e1b7ee1fd77051b6323c3f9e3e19785f78ab67ecfc5", size = 20530, upload-time = "2023-02-07T20:53:20.679Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/07/8d9a8186e6768b55dfffeb57c719bc03770cf8a970a074616ae6f9e26a57/google_auth_oauthlib-1.0.0-py2.py3-none-any.whl", hash = "sha256:95880ca704928c300f48194d1770cf5b1462835b6e49db61445a520f793fd5fb", size = 18926, upload-time = "2023-02-07T20:53:18.837Z" }, +] + +[[package]] +name = "google-pasta" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/35/4a/0bd53b36ff0323d10d5f24ebd67af2de10a1117f5cf4d7add90df92756f1/google-pasta-0.2.0.tar.gz", hash = "sha256:c9f2c8dfc8f96d0d5808299920721be30c9eec37f2389f28904f454565c8a16e", size = 40430, upload-time = "2020-03-13T18:57:50.34Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/de/c648ef6835192e6e2cc03f40b19eeda4382c49b5bafb43d88b931c4c74ac/google_pasta-0.2.0-py3-none-any.whl", hash = "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed", size = 57471, upload-time = "2020-03-13T18:57:48.872Z" }, +] + +[[package]] +name = "greenlet" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/86/94/a5935717b307d7c71fe877b52b884c6af707d2d2090db118a03fbd799369/greenlet-3.4.0.tar.gz", hash = "sha256:f50a96b64dafd6169e595a5c56c9146ef80333e67d4476a65a9c55f400fc22ff", size = 195913, upload-time = "2026-04-08T17:08:00.863Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/bc/e30e1e3d5e8860b0e0ce4d2b16b2681b77fd13542fc0d72f7e3c22d16eff/greenlet-3.4.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d18eae9a7fb0f499efcd146b8c9750a2e1f6e0e93b5a382b3481875354a430e6", size = 284315, upload-time = "2026-04-08T17:02:52.322Z" }, + { url = "https://files.pythonhosted.org/packages/5b/cc/e023ae1967d2a26737387cac083e99e47f65f58868bd155c4c80c01ec4e0/greenlet-3.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:636d2f95c309e35f650e421c23297d5011716be15d966e6328b367c9fc513a82", size = 601916, upload-time = "2026-04-08T16:24:35.533Z" }, + { url = "https://files.pythonhosted.org/packages/67/32/5be1677954b6d8810b33abe94e3eb88726311c58fa777dc97e390f7caf5a/greenlet-3.4.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:234582c20af9742583c3b2ddfbdbb58a756cfff803763ffaae1ac7990a9fac31", size = 616399, upload-time = "2026-04-08T16:30:54.536Z" }, + { url = "https://files.pythonhosted.org/packages/74/bf/2d58d5ea515704f83e34699128c9072a34bea27d2b6a556e102105fe62a5/greenlet-3.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:523677e69cd4711b5a014e37bc1fb3a29947c3e3a5bb6a527e1cc50312e5a398", size = 611978, upload-time = "2026-04-08T15:56:31.335Z" }, + { url = "https://files.pythonhosted.org/packages/bd/69/6525049b6c179d8a923256304d8387b8bdd4acab1acf0407852463c6d514/greenlet-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b45e45fe47a19051a396abb22e19e7836a59ee6c5a90f3be427343c37908d65b", size = 1571957, upload-time = "2026-04-08T16:26:17.041Z" }, + { url = "https://files.pythonhosted.org/packages/4e/6c/bbfb798b05fec736a0d24dc23e81b45bcee87f45a83cfb39db031853bddc/greenlet-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5434271357be07f3ad0936c312645853b7e689e679e29310e2de09a9ea6c3adf", size = 1637223, upload-time = "2026-04-08T15:57:27.556Z" }, + { url = "https://files.pythonhosted.org/packages/b7/7d/981fe0e7c07bd9d5e7eb18decb8590a11e3955878291f7a7de2e9c668eb7/greenlet-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:a19093fbad824ed7c0f355b5ff4214bffda5f1a7f35f29b31fcaa240cc0135ab", size = 237902, upload-time = "2026-04-08T17:03:14.16Z" }, +] + +[[package]] +name = "grpcio" +version = "1.80.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b7/48/af6173dbca4454f4637a4678b67f52ca7e0c1ed7d5894d89d434fecede05/grpcio-1.80.0.tar.gz", hash = "sha256:29aca15edd0688c22ba01d7cc01cb000d72b2033f4a3c72a81a19b56fd143257", size = 12978905, upload-time = "2026-03-30T08:49:10.502Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/cd/bb7b7e54084a344c03d68144450da7ddd5564e51a298ae1662de65f48e2d/grpcio-1.80.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:886457a7768e408cdce226ad1ca67d2958917d306523a0e21e1a2fdaa75c9c9c", size = 6050363, upload-time = "2026-03-30T08:46:20.894Z" }, + { url = "https://files.pythonhosted.org/packages/16/02/1417f5c3460dea65f7a2e3c14e8b31e77f7ffb730e9bfadd89eda7a9f477/grpcio-1.80.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:7b641fc3f1dc647bfd80bd713addc68f6d145956f64677e56d9ebafc0bd72388", size = 12026037, upload-time = "2026-03-30T08:46:25.144Z" }, + { url = "https://files.pythonhosted.org/packages/43/98/c910254eedf2cae368d78336a2de0678e66a7317d27c02522392f949b5c6/grpcio-1.80.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:33eb763f18f006dc7fee1e69831d38d23f5eccd15b2e0f92a13ee1d9242e5e02", size = 6602306, upload-time = "2026-03-30T08:46:27.593Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f8/88ca4e78c077b2b2113d95da1e1ab43efd43d723c9a0397d26529c2c1a56/grpcio-1.80.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:52d143637e3872633fc7dd7c3c6a1c84e396b359f3a72e215f8bf69fd82084fc", size = 7301535, upload-time = "2026-03-30T08:46:29.556Z" }, + { url = "https://files.pythonhosted.org/packages/f9/96/f28660fe2fe0f153288bf4a04e4910b7309d442395135c88ed4f5b3b8b40/grpcio-1.80.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c51bf8ac4575af2e0678bccfb07e47321fc7acb5049b4482832c5c195e04e13a", size = 6808669, upload-time = "2026-03-30T08:46:31.984Z" }, + { url = "https://files.pythonhosted.org/packages/47/eb/3f68a5e955779c00aeef23850e019c1c1d0e032d90633ba49c01ad5a96e0/grpcio-1.80.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:50a9871536d71c4fba24ee856abc03a87764570f0c457dd8db0b4018f379fed9", size = 7409489, upload-time = "2026-03-30T08:46:34.684Z" }, + { url = "https://files.pythonhosted.org/packages/5b/a7/d2f681a4bfb881be40659a309771f3bdfbfdb1190619442816c3f0ffc079/grpcio-1.80.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a72d84ad0514db063e21887fbacd1fd7acb4d494a564cae22227cd45c7fbf199", size = 8423167, upload-time = "2026-03-30T08:46:36.833Z" }, + { url = "https://files.pythonhosted.org/packages/97/8a/29b4589c204959aa35ce5708400a05bba72181807c45c47b3ec000c39333/grpcio-1.80.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f7691a6788ad9196872f95716df5bc643ebba13c97140b7a5ee5c8e75d1dea81", size = 7846761, upload-time = "2026-03-30T08:46:40.091Z" }, + { url = "https://files.pythonhosted.org/packages/6b/d2/ed143e097230ee121ac5848f6ff14372dba91289b10b536d54fb1b7cbae7/grpcio-1.80.0-cp310-cp310-win32.whl", hash = "sha256:46c2390b59d67f84e882694d489f5b45707c657832d7934859ceb8c33f467069", size = 4156534, upload-time = "2026-03-30T08:46:42.026Z" }, + { url = "https://files.pythonhosted.org/packages/d5/c9/df8279bb49b29409995e95efa85b72973d62f8aeff89abee58c91f393710/grpcio-1.80.0-cp310-cp310-win_amd64.whl", hash = "sha256:dc053420fc75749c961e2a4c906398d7c15725d36ccc04ae6d16093167223b58", size = 4889869, upload-time = "2026-03-30T08:46:44.219Z" }, +] + +[[package]] +name = "h11" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, +] + +[[package]] +name = "h5py" +version = "3.16.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/33/acd0ce6863b6c0d7735007df01815403f5589a21ff8c2e1ee2587a38f548/h5py-3.16.0.tar.gz", hash = "sha256:a0dbaad796840ccaa67a4c144a0d0c8080073c34c76d5a6941d6818678ef2738", size = 446526, upload-time = "2026-03-06T13:49:08.07Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/6b/231413e58a787a89b316bb0d1777da3c62257e4797e09afd8d17ad3549dc/h5py-3.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e06f864bedb2c8e7c1358e6c73af48519e317457c444d6f3d332bb4e8fa6d7d9", size = 3724137, upload-time = "2026-03-06T13:47:35.242Z" }, + { url = "https://files.pythonhosted.org/packages/74/f9/557ce3aad0fe8471fb5279bab0fc56ea473858a022c4ce8a0b8f303d64e9/h5py-3.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ec86d4fffd87a0f4cb3d5796ceb5a50123a2a6d99b43e616e5504e66a953eca3", size = 3090112, upload-time = "2026-03-06T13:47:37.634Z" }, + { url = "https://files.pythonhosted.org/packages/7a/f5/e15b3d0dc8a18e56409a839e6468d6fb589bc5207c917399c2e0706eeb44/h5py-3.16.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:86385ea895508220b8a7e45efa428aeafaa586bd737c7af9ee04661d8d84a10d", size = 4844847, upload-time = "2026-03-06T13:47:39.811Z" }, + { url = "https://files.pythonhosted.org/packages/cb/92/a8851d936547efe30cc0ce5245feac01f3ec6171f7899bc3f775c72030b3/h5py-3.16.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:8975273c2c5921c25700193b408e28d6bdd0111c37468b2d4e25dcec4cd1d84d", size = 5065352, upload-time = "2026-03-06T13:47:41.489Z" }, + { url = "https://files.pythonhosted.org/packages/2b/ae/f2adc5d0ca9626db3277a3d87516e124cbc5d0eea0bd79bc085702d04f2c/h5py-3.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1677ad48b703f44efc9ea0c3ab284527f81bc4f318386aaaebc5fede6bbae56f", size = 4839173, upload-time = "2026-03-06T13:47:43.586Z" }, + { url = "https://files.pythonhosted.org/packages/64/0b/e0c8c69da1d8838da023a50cd3080eae5d475691f7636b35eff20bb6ef20/h5py-3.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7c4dd4cf5f0a4e36083f73172f6cfc25a5710789269547f132a20975bfe2434c", size = 5076216, upload-time = "2026-03-06T13:47:45.315Z" }, + { url = "https://files.pythonhosted.org/packages/66/35/d88fd6718832133c885004c61ceeeb24dbd6397ef877dbed6b3a64d6a286/h5py-3.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:bdef06507725b455fccba9c16529121a5e1fbf56aa375f7d9713d9e8ff42454d", size = 3183639, upload-time = "2026-03-06T13:47:47.041Z" }, +] + +[[package]] +name = "httpcore" +version = "1.0.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, +] + +[[package]] +name = "httpx" +version = "0.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, +] + +[[package]] +name = "humanfriendly" +version = "10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyreadline3", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/3f/2c29224acb2e2df4d2046e4c73ee2662023c58ff5b113c4c1adac0886c43/humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc", size = 360702, upload-time = "2021-09-17T21:40:43.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794, upload-time = "2021-09-17T21:40:39.897Z" }, +] + +[[package]] +name = "hyperopt" +version = "0.2.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cloudpickle" }, + { name = "future" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "py4j" }, + { name = "scipy" }, + { name = "six" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/75/0c4712e3f3a21c910778b8f9f4622601a823cefcae24181467674a0352f9/hyperopt-0.2.7.tar.gz", hash = "sha256:1bf89ae58050bbd32c7307199046117feee245c2fd9ab6255c7308522b7ca149", size = 1308240, upload-time = "2021-11-17T10:05:51.386Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/cd/5b3334d39276067f54618ce0d0b48ed69d91352fbf137468c7095170d0e5/hyperopt-0.2.7-py2.py3-none-any.whl", hash = "sha256:f3046d91fe4167dbf104365016596856b2524a609d22f047a066fc1ac796427c", size = 1583421, upload-time = "2021-11-17T10:05:44.265Z" }, +] + +[[package]] +name = "idna" +version = "3.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, +] + +[[package]] +name = "imagesize" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/e6/7bf14eeb8f8b7251141944835abd42eb20a658d89084b7e1f3e5fe394090/imagesize-2.0.0.tar.gz", hash = "sha256:8e8358c4a05c304f1fccf7ff96f036e7243a189e9e42e90851993c558cfe9ee3", size = 1773045, upload-time = "2026-03-03T14:18:29.941Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5f/53/fb7122b71361a0d121b669dcf3d31244ef75badbbb724af388948de543e2/imagesize-2.0.0-py2.py3-none-any.whl", hash = "sha256:5667c5bbb57ab3f1fa4bc366f4fbc971db3d5ed011fd2715fd8001f782718d96", size = 9441, upload-time = "2026-03-03T14:18:27.892Z" }, +] + +[[package]] +name = "imbalanced-learn" +version = "0.12.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/30/41/8b15f1df14ff38f1fdd4eb2b128478d99c38db4a14292270639ae9d65447/imbalanced-learn-0.12.4.tar.gz", hash = "sha256:8153ba385d296b07d97e0901a2624a86c06b48c94c2f92da3a5354827697b7a3", size = 478372, upload-time = "2024-10-04T17:00:55.162Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d8/0d/c3bfccc5d460eec8ff56889802aa88f5d07280d5282b307a74558e6edc44/imbalanced_learn-0.12.4-py3-none-any.whl", hash = "sha256:d47fc599160d3ea882e712a3a6b02bdd353c1a6436d8d68d41b1922e6ee4a703", size = 258324, upload-time = "2024-10-04T17:00:52.715Z" }, +] + +[[package]] +name = "imblearn" +version = "0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "imbalanced-learn" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/0a/f83099534a77757abf27427d339590c83cc68c3386690d4741d6454e185f/imblearn-0.0.tar.gz", hash = "sha256:d8fbb662919c1b16f438ad91a8256220e53bcf6815c9ad5502c518b798de34f2", size = 945, upload-time = "2017-01-19T11:52:35.89Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/a7/4179e6ebfd654bd0eac0b9c06125b8b4c96a9d0a8ff9e9507eb2a26d2d7e/imblearn-0.0-py2.py3-none-any.whl", hash = "sha256:d42c2d709d22c00d2b9a91e638d57240a8b79b4014122d92181fcd2549a2f79a", size = 1874, upload-time = "2017-01-19T11:52:37.416Z" }, +] + +[[package]] +name = "importlib-resources" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/06/b56dfa750b44e86157093bc8fca0ab81dccbf5260510de4eaf1cb69b5b99/importlib_resources-7.1.0.tar.gz", hash = "sha256:0722d4c6212489c530f2a145a34c0a7a3b4721bc96a15fada5930e2a0b760708", size = 44985, upload-time = "2026-04-12T16:36:09.232Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/db/55a262f3606bebcae07cc14095338471ad7c0bbcaa37707e6f0ee49725b7/importlib_resources-7.1.0-py3-none-any.whl", hash = "sha256:1bd7b48b4088eddb2cd16382150bb515af0bd2c70128194392725f82ad2c96a1", size = 37232, upload-time = "2026-04-12T16:36:08.219Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, +] + +[[package]] +name = "ipykernel" +version = "7.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appnope", marker = "sys_platform == 'darwin'" }, + { name = "comm" }, + { name = "debugpy" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "matplotlib-inline" }, + { name = "nest-asyncio" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/8d/b68b728e2d06b9e0051019640a40a9eb7a88fcd82c2e1b5ce70bef5ff044/ipykernel-7.2.0.tar.gz", hash = "sha256:18ed160b6dee2cbb16e5f3575858bc19d8f1fe6046a9a680c708494ce31d909e", size = 176046, upload-time = "2026-02-06T16:43:27.403Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/b9/e73d5d9f405cba7706c539aa8b311b49d4c2f3d698d9c12f815231169c71/ipykernel-7.2.0-py3-none-any.whl", hash = "sha256:3bbd4420d2b3cc105cbdf3756bfc04500b1e52f090a90716851f3916c62e1661", size = 118788, upload-time = "2026-02-06T16:43:25.149Z" }, +] + +[[package]] +name = "ipython" +version = "8.39.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "decorator" }, + { name = "exceptiongroup" }, + { name = "jedi" }, + { name = "matplotlib-inline" }, + { name = "pexpect", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "stack-data" }, + { name = "traitlets" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/40/18/f8598d287006885e7136451fdea0755af4ebcbfe342836f24deefaed1164/ipython-8.39.0.tar.gz", hash = "sha256:4110ae96012c379b8b6db898a07e186c40a2a1ef5d57a7fa83166047d9da7624", size = 5513971, upload-time = "2026-03-27T10:02:13.94Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/56/4cc7fc9e9e3f38fd324f24f8afe0ad8bb5fa41283f37f1aaf9de0612c968/ipython-8.39.0-py3-none-any.whl", hash = "sha256:bb3c51c4fa8148ab1dea07a79584d1c854e234ea44aa1283bcb37bc75054651f", size = 831849, upload-time = "2026-03-27T10:02:07.846Z" }, +] + +[[package]] +name = "ipywidgets" +version = "8.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "comm" }, + { name = "ipython" }, + { name = "jupyterlab-widgets" }, + { name = "traitlets" }, + { name = "widgetsnbextension" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4c/ae/c5ce1edc1afe042eadb445e95b0671b03cee61895264357956e61c0d2ac0/ipywidgets-8.1.8.tar.gz", hash = "sha256:61f969306b95f85fba6b6986b7fe45d73124d1d9e3023a8068710d47a22ea668", size = 116739, upload-time = "2025-11-01T21:18:12.393Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/6d/0d9848617b9f753b87f214f1c682592f7ca42de085f564352f10f0843026/ipywidgets-8.1.8-py3-none-any.whl", hash = "sha256:ecaca67aed704a338f88f67b1181b58f821ab5dc89c1f0f5ef99db43c1c2921e", size = 139808, upload-time = "2025-11-01T21:18:10.956Z" }, +] + +[[package]] +name = "isoduration" +version = "20.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "arrow" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7c/1a/3c8edc664e06e6bd06cce40c6b22da5f1429aa4224d0c590f3be21c91ead/isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9", size = 11649, upload-time = "2020-11-01T11:00:00.312Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/55/e5326141505c5d5e34c5e0935d2908a74e4561eca44108fbfb9c13d2911a/isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042", size = 11321, upload-time = "2020-11-01T10:59:58.02Z" }, +] + +[[package]] +name = "jedi" +version = "0.19.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "parso" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/3a/79a912fbd4d8dd6fbb02bf69afd3bb72cf0c729bb3063c6f4498603db17a/jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0", size = 1231287, upload-time = "2024-11-11T01:41:42.873Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9", size = 1572278, upload-time = "2024-11-11T01:41:40.175Z" }, +] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + +[[package]] +name = "joblib" +version = "1.5.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f2/d34e8b3a08a9cc79a50b2208a93dce981fe615b64d5a4d4abee421d898df/joblib-1.5.3.tar.gz", hash = "sha256:8561a3269e6801106863fd0d6d84bb737be9e7631e33aaed3fb9ce5953688da3", size = 331603, upload-time = "2025-12-15T08:41:46.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl", hash = "sha256:5fc3c5039fc5ca8c0276333a188bbd59d6b7ab37fe6632daa76bc7f9ec18e713", size = 309071, upload-time = "2025-12-15T08:41:44.973Z" }, +] + +[[package]] +name = "json5" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/4b/6f8906aaf67d501e259b0adab4d312945bb7211e8b8d4dcc77c92320edaa/json5-0.14.0.tar.gz", hash = "sha256:b3f492fad9f6cdbced8b7d40b28b9b1c9701c5f561bef0d33b81c2ff433fefcb", size = 52656, upload-time = "2026-03-27T22:50:48.108Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/42/cf027b4ac873b076189d935b135397675dac80cb29acb13e1ab86ad6c631/json5-0.14.0-py3-none-any.whl", hash = "sha256:56cf861bab076b1178eb8c92e1311d273a9b9acea2ccc82c276abf839ebaef3a", size = 36271, upload-time = "2026-03-27T22:50:47.073Z" }, +] + +[[package]] +name = "jsonpointer" +version = "3.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/c7/af399a2e7a67fd18d63c40c5e62d3af4e67b836a2107468b6a5ea24c4304/jsonpointer-3.1.1.tar.gz", hash = "sha256:0b801c7db33a904024f6004d526dcc53bbb8a4a0f4e32bfd10beadf60adf1900", size = 9068, upload-time = "2026-03-23T22:32:32.458Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/6a/a83720e953b1682d2d109d3c2dbb0bc9bf28cc1cbc205be4ef4be5da709d/jsonpointer-3.1.1-py3-none-any.whl", hash = "sha256:8ff8b95779d071ba472cf5bc913028df06031797532f08a7d5b602d8b2a488ca", size = 7659, upload-time = "2026-03-23T22:32:31.568Z" }, +] + +[[package]] +name = "jsonref" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/0d/c1f3277e90ccdb50d33ed5ba1ec5b3f0a242ed8c1b1a85d3afeb68464dca/jsonref-1.1.0.tar.gz", hash = "sha256:32fe8e1d85af0fdefbebce950af85590b22b60f9e95443176adbde4e1ecea552", size = 8814, upload-time = "2023-01-16T16:10:04.455Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/ec/e1db9922bceb168197a558a2b8c03a7963f1afe93517ddd3cf99f202f996/jsonref-1.1.0-py3-none-any.whl", hash = "sha256:590dc7773df6c21cbf948b5dac07a72a251db28b0238ceecce0a2abfa8ec30a9", size = 9425, upload-time = "2023-01-16T16:10:02.255Z" }, +] + +[[package]] +name = "jsonschema" +version = "4.26.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "jsonschema-specifications" }, + { name = "referencing" }, + { name = "rpds-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" }, +] + +[package.optional-dependencies] +format-nongpl = [ + { name = "fqdn" }, + { name = "idna" }, + { name = "isoduration" }, + { name = "jsonpointer" }, + { name = "rfc3339-validator" }, + { name = "rfc3986-validator" }, + { name = "rfc3987-syntax" }, + { name = "uri-template" }, + { name = "webcolors" }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2025.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" }, +] + +[[package]] +name = "jupyter" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipykernel" }, + { name = "ipywidgets" }, + { name = "jupyter-console" }, + { name = "jupyterlab" }, + { name = "nbconvert" }, + { name = "notebook" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/f3/af28ea964ab8bc1e472dba2e82627d36d470c51f5cd38c37502eeffaa25e/jupyter-1.1.1.tar.gz", hash = "sha256:d55467bceabdea49d7e3624af7e33d59c37fff53ed3a350e1ac957bed731de7a", size = 5714959, upload-time = "2024-08-30T07:15:48.299Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/64/285f20a31679bf547b75602702f7800e74dbabae36ef324f716c02804753/jupyter-1.1.1-py2.py3-none-any.whl", hash = "sha256:7a59533c22af65439b24bbe60373a4e95af8f16ac65a6c00820ad378e3f7cc83", size = 2657, upload-time = "2024-08-30T07:15:47.045Z" }, +] + +[[package]] +name = "jupyter-client" +version = "8.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-core" }, + { name = "python-dateutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/e4/ba649102a3bc3fbca54e7239fb924fd434c766f855693d86de0b1f2bec81/jupyter_client-8.8.0.tar.gz", hash = "sha256:d556811419a4f2d96c869af34e854e3f059b7cc2d6d01a9cd9c85c267691be3e", size = 348020, upload-time = "2026-01-08T13:55:47.938Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/0b/ceb7694d864abc0a047649aec263878acb9f792e1fec3e676f22dc9015e3/jupyter_client-8.8.0-py3-none-any.whl", hash = "sha256:f93a5b99c5e23a507b773d3a1136bd6e16c67883ccdbd9a829b0bbdb98cd7d7a", size = 107371, upload-time = "2026-01-08T13:55:45.562Z" }, +] + +[[package]] +name = "jupyter-console" +version = "6.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipykernel" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "pyzmq" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bd/2d/e2fd31e2fc41c14e2bcb6c976ab732597e907523f6b2420305f9fc7fdbdb/jupyter_console-6.6.3.tar.gz", hash = "sha256:566a4bf31c87adbfadf22cdf846e3069b59a71ed5da71d6ba4d8aaad14a53539", size = 34363, upload-time = "2023-03-06T14:13:31.02Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/77/71d78d58f15c22db16328a476426f7ac4a60d3a5a7ba3b9627ee2f7903d4/jupyter_console-6.6.3-py3-none-any.whl", hash = "sha256:309d33409fcc92ffdad25f0bcdf9a4a9daa61b6f341177570fdac03de5352485", size = 24510, upload-time = "2023-03-06T14:13:28.229Z" }, +] + +[[package]] +name = "jupyter-core" +version = "5.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/49/9d1284d0dc65e2c757b74c6687b6d319b02f822ad039e5c512df9194d9dd/jupyter_core-5.9.1.tar.gz", hash = "sha256:4d09aaff303b9566c3ce657f580bd089ff5c91f5f89cf7d8846c3cdf465b5508", size = 89814, upload-time = "2025-10-16T19:19:18.444Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/e7/80988e32bf6f73919a113473a604f5a8f09094de312b9d52b79c2df7612b/jupyter_core-5.9.1-py3-none-any.whl", hash = "sha256:ebf87fdc6073d142e114c72c9e29a9d7ca03fad818c5d300ce2adc1fb0743407", size = 29032, upload-time = "2025-10-16T19:19:16.783Z" }, +] + +[[package]] +name = "jupyter-events" +version = "0.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonschema", extra = ["format-nongpl"] }, + { name = "packaging" }, + { name = "python-json-logger" }, + { name = "pyyaml" }, + { name = "referencing" }, + { name = "rfc3339-validator" }, + { name = "rfc3986-validator" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/c3/306d090461e4cf3cd91eceaff84bede12a8e52cd821c2d20c9a4fd728385/jupyter_events-0.12.0.tar.gz", hash = "sha256:fc3fce98865f6784c9cd0a56a20644fc6098f21c8c33834a8d9fe383c17e554b", size = 62196, upload-time = "2025-02-03T17:23:41.485Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/48/577993f1f99c552f18a0428731a755e06171f9902fa118c379eb7c04ea22/jupyter_events-0.12.0-py3-none-any.whl", hash = "sha256:6464b2fa5ad10451c3d35fabc75eab39556ae1e2853ad0c0cc31b656731a97fb", size = 19430, upload-time = "2025-02-03T17:23:38.643Z" }, +] + +[[package]] +name = "jupyter-lsp" +version = "2.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/36/ff/1e4a61f5170a9a1d978f3ac3872449de6c01fc71eaf89657824c878b1549/jupyter_lsp-2.3.1.tar.gz", hash = "sha256:fdf8a4aa7d85813976d6e29e95e6a2c8f752701f926f2715305249a3829805a6", size = 55677, upload-time = "2026-04-02T08:10:06.749Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/e8/9d61dcbd1dce8ef418f06befd4ac084b4720429c26b0b1222bc218685eff/jupyter_lsp-2.3.1-py3-none-any.whl", hash = "sha256:71b954d834e85ff3096400554f2eefaf7fe37053036f9a782b0f7c5e42dadb81", size = 77513, upload-time = "2026-04-02T08:10:01.753Z" }, +] + +[[package]] +name = "jupyter-server" +version = "2.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "argon2-cffi" }, + { name = "jinja2" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "jupyter-events" }, + { name = "jupyter-server-terminals" }, + { name = "nbconvert" }, + { name = "nbformat" }, + { name = "overrides" }, + { name = "packaging" }, + { name = "prometheus-client" }, + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "pyzmq" }, + { name = "send2trash" }, + { name = "terminado" }, + { name = "tornado" }, + { name = "traitlets" }, + { name = "websocket-client" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/ac/e040ec363d7b6b1f11304cc9f209dac4517ece5d5e01821366b924a64a50/jupyter_server-2.17.0.tar.gz", hash = "sha256:c38ea898566964c888b4772ae1ed58eca84592e88251d2cfc4d171f81f7e99d5", size = 731949, upload-time = "2025-08-21T14:42:54.042Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/92/80/a24767e6ca280f5a49525d987bf3e4d7552bf67c8be07e8ccf20271f8568/jupyter_server-2.17.0-py3-none-any.whl", hash = "sha256:e8cb9c7db4251f51ed307e329b81b72ccf2056ff82d50524debde1ee1870e13f", size = 388221, upload-time = "2025-08-21T14:42:52.034Z" }, +] + +[[package]] +name = "jupyter-server-terminals" +version = "0.5.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "terminado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f4/a7/bcd0a9b0cbba88986fe944aaaf91bfda603e5a50bda8ed15123f381a3b2f/jupyter_server_terminals-0.5.4.tar.gz", hash = "sha256:bbda128ed41d0be9020349f9f1f2a4ab9952a73ed5f5ac9f1419794761fb87f5", size = 31770, upload-time = "2026-01-14T16:53:20.213Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/2d/6674563f71c6320841fc300911a55143925112a72a883e2ca71fba4c618d/jupyter_server_terminals-0.5.4-py3-none-any.whl", hash = "sha256:55be353fc74a80bc7f3b20e6be50a55a61cd525626f578dcb66a5708e2007d14", size = 13704, upload-time = "2026-01-14T16:53:18.738Z" }, +] + +[[package]] +name = "jupyterlab" +version = "4.5.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "async-lru" }, + { name = "httpx" }, + { name = "ipykernel" }, + { name = "jinja2" }, + { name = "jupyter-core" }, + { name = "jupyter-lsp" }, + { name = "jupyter-server" }, + { name = "jupyterlab-server" }, + { name = "notebook-shim" }, + { name = "packaging" }, + { name = "setuptools" }, + { name = "tomli" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ac/d5/730628e03fff2e8a8e8ccdaedde1489ab1309f9a4fa2536248884e30b7c7/jupyterlab-4.5.6.tar.gz", hash = "sha256:642fe2cfe7f0f5922a8a558ba7a0d246c7bc133b708dfe43f7b3a826d163cf42", size = 23970670, upload-time = "2026-03-11T14:17:04.531Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/1b/dad6fdcc658ed7af26fdf3841e7394072c9549a8b896c381ab49dd11e2d9/jupyterlab-4.5.6-py3-none-any.whl", hash = "sha256:d6b3dac883aa4d9993348e0f8e95b24624f75099aed64eab6a4351a9cdd1e580", size = 12447124, upload-time = "2026-03-11T14:17:00.229Z" }, +] + +[[package]] +name = "jupyterlab-pygments" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/51/9187be60d989df97f5f0aba133fa54e7300f17616e065d1ada7d7646b6d6/jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d", size = 512900, upload-time = "2023-11-23T09:26:37.44Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780", size = 15884, upload-time = "2023-11-23T09:26:34.325Z" }, +] + +[[package]] +name = "jupyterlab-server" +version = "2.28.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "babel" }, + { name = "jinja2" }, + { name = "json5" }, + { name = "jsonschema" }, + { name = "jupyter-server" }, + { name = "packaging" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d6/2c/90153f189e421e93c4bb4f9e3f59802a1f01abd2ac5cf40b152d7f735232/jupyterlab_server-2.28.0.tar.gz", hash = "sha256:35baa81898b15f93573e2deca50d11ac0ae407ebb688299d3a5213265033712c", size = 76996, upload-time = "2025-10-22T13:59:18.37Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/07/a000fe835f76b7e1143242ab1122e6362ef1c03f23f83a045c38859c2ae0/jupyterlab_server-2.28.0-py3-none-any.whl", hash = "sha256:e4355b148fdcf34d312bbbc80f22467d6d20460e8b8736bf235577dd18506968", size = 59830, upload-time = "2025-10-22T13:59:16.767Z" }, +] + +[[package]] +name = "jupyterlab-widgets" +version = "3.0.16" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/2d/ef58fed122b268c69c0aa099da20bc67657cdfb2e222688d5731bd5b971d/jupyterlab_widgets-3.0.16.tar.gz", hash = "sha256:423da05071d55cf27a9e602216d35a3a65a3e41cdf9c5d3b643b814ce38c19e0", size = 897423, upload-time = "2025-11-01T21:11:29.724Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/b5/36c712098e6191d1b4e349304ef73a8d06aed77e56ceaac8c0a306c7bda1/jupyterlab_widgets-3.0.16-py3-none-any.whl", hash = "sha256:45fa36d9c6422cf2559198e4db481aa243c7a32d9926b500781c830c80f7ecf8", size = 914926, upload-time = "2025-11-01T21:11:28.008Z" }, +] + +[[package]] +name = "keras" +version = "2.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bf/85/d52a86eb5ae700e1f8694157019249eb33350ae9e477cd03ecdb50939d22/keras-2.14.0.tar.gz", hash = "sha256:22788bdbc86d9988794fe9703bb5205141da797c4faeeb59497c58c3d94d34ed", size = 1251354, upload-time = "2023-09-11T17:21:04.379Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/58/34d4d8f1aa11120c2d36d7ad27d0526164b1a8ae45990a2fede31d0e59bf/keras-2.14.0-py3-none-any.whl", hash = "sha256:d7429d1d2131cc7eb1f2ea2ec330227c7d9d38dab3dfdf2e78defee4ecc43fcd", size = 1709236, upload-time = "2023-09-11T17:21:02.164Z" }, +] + +[[package]] +name = "kiwisolver" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/67/9c61eccb13f0bdca9307614e782fec49ffdde0f7a2314935d489fa93cd9c/kiwisolver-1.5.0.tar.gz", hash = "sha256:d4193f3d9dc3f6f79aaed0e5637f45d98850ebf01f7ca20e69457f3e8946b66a", size = 103482, upload-time = "2026-03-09T13:15:53.382Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/f8/06549565caa026e540b7e7bab5c5a90eb7ca986015f4c48dace243cd24d9/kiwisolver-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32cc0a5365239a6ea0c6ed461e8838d053b57e397443c0ca894dcc8e388d4374", size = 122802, upload-time = "2026-03-09T13:12:37.515Z" }, + { url = "https://files.pythonhosted.org/packages/84/eb/8476a0818850c563ff343ea7c9c05dcdcbd689a38e01aa31657df01f91fa/kiwisolver-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cc0b66c1eec9021353a4b4483afb12dfd50e3669ffbb9152d6842eb34c7e29fd", size = 66216, upload-time = "2026-03-09T13:12:38.812Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c4/f9c8a6b4c21aed4198566e45923512986d6cef530e7263b3a5f823546561/kiwisolver-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:86e0287879f75621ae85197b0877ed2f8b7aa57b511c7331dce2eb6f4de7d476", size = 63917, upload-time = "2026-03-09T13:12:40.053Z" }, + { url = "https://files.pythonhosted.org/packages/f1/0e/ba4ae25d03722f64de8b2c13e80d82ab537a06b30fc7065183c6439357e3/kiwisolver-1.5.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:62f59da443c4f4849f73a51a193b1d9d258dcad0c41bc4d1b8fb2bcc04bfeb22", size = 1628776, upload-time = "2026-03-09T13:12:41.976Z" }, + { url = "https://files.pythonhosted.org/packages/8a/e4/3f43a011bc8a0860d1c96f84d32fa87439d3feedf66e672fef03bf5e8bac/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9190426b7aa26c5229501fa297b8d0653cfd3f5a36f7990c264e157cbf886b3b", size = 1228164, upload-time = "2026-03-09T13:12:44.002Z" }, + { url = "https://files.pythonhosted.org/packages/4b/34/3a901559a1e0c218404f9a61a93be82d45cb8f44453ba43088644980f033/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c8277104ded0a51e699c8c3aff63ce2c56d4ed5519a5f73e0fd7057f959a2b9e", size = 1246656, upload-time = "2026-03-09T13:12:45.557Z" }, + { url = "https://files.pythonhosted.org/packages/87/9e/f78c466ea20527822b95ad38f141f2de1dcd7f23fb8716b002b0d91bbe59/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8f9baf6f0a6e7571c45c8863010b45e837c3ee1c2c77fcd6ef423be91b21fedb", size = 1295562, upload-time = "2026-03-09T13:12:47.562Z" }, + { url = "https://files.pythonhosted.org/packages/0a/66/fd0e4a612e3a286c24e6d6f3a5428d11258ed1909bc530ba3b59807fd980/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cff8e5383db4989311f99e814feeb90c4723eb4edca425b9d5d9c3fefcdd9537", size = 2178473, upload-time = "2026-03-09T13:12:50.254Z" }, + { url = "https://files.pythonhosted.org/packages/dc/8e/6cac929e0049539e5ee25c1ee937556f379ba5204840d03008363ced662d/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ebae99ed6764f2b5771c522477b311be313e8841d2e0376db2b10922daebbba4", size = 2274035, upload-time = "2026-03-09T13:12:51.785Z" }, + { url = "https://files.pythonhosted.org/packages/ca/d3/9d0c18f1b52ea8074b792452cf17f1f5a56bd0302a85191f405cfbf9da16/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:d5cd5189fc2b6a538b75ae45433140c4823463918f7b1617c31e68b085c0022c", size = 2443217, upload-time = "2026-03-09T13:12:53.329Z" }, + { url = "https://files.pythonhosted.org/packages/45/2a/6e19368803a038b2a90857bf4ee9e3c7b667216d045866bf22d3439fd75e/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f42c23db5d1521218a3276bb08666dcb662896a0be7347cba864eca45ff64ede", size = 2249196, upload-time = "2026-03-09T13:12:55.057Z" }, + { url = "https://files.pythonhosted.org/packages/75/2b/3f641dfcbe72e222175d626bacf2f72c3b34312afec949dd1c50afa400f5/kiwisolver-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:94eff26096eb5395136634622515b234ecb6c9979824c1f5004c6e3c3c85ccd2", size = 73389, upload-time = "2026-03-09T13:12:56.496Z" }, + { url = "https://files.pythonhosted.org/packages/da/88/299b137b9e0025d8982e03d2d52c123b0a2b159e84b0ef1501ef446339cf/kiwisolver-1.5.0-cp310-cp310-win_arm64.whl", hash = "sha256:dd952e03bfbb096cfe2dd35cd9e00f269969b67536cb4370994afc20ff2d0875", size = 64782, upload-time = "2026-03-09T13:12:57.609Z" }, + { url = "https://files.pythonhosted.org/packages/17/6f/6fd4f690a40c2582fa34b97d2678f718acf3706b91d270c65ecb455d0a06/kiwisolver-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:295d9ffe712caa9f8a3081de8d32fc60191b4b51c76f02f951fd8407253528f4", size = 59606, upload-time = "2026-03-09T13:15:40.81Z" }, + { url = "https://files.pythonhosted.org/packages/82/a0/2355d5e3b338f13ce63f361abb181e3b6ea5fffdb73f739b3e80efa76159/kiwisolver-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:51e8c4084897de9f05898c2c2a39af6318044ae969d46ff7a34ed3f96274adca", size = 57537, upload-time = "2026-03-09T13:15:42.071Z" }, + { url = "https://files.pythonhosted.org/packages/c8/b9/1d50e610ecadebe205b71d6728fd224ce0e0ca6aba7b9cbe1da049203ac5/kiwisolver-1.5.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b83af57bdddef03c01a9138034c6ff03181a3028d9a1003b301eb1a55e161a3f", size = 79888, upload-time = "2026-03-09T13:15:43.317Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ee/b85ffcd75afed0357d74f0e6fc02a4507da441165de1ca4760b9f496390d/kiwisolver-1.5.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bf4679a3d71012a7c2bf360e5cd878fbd5e4fcac0896b56393dec239d81529ed", size = 77584, upload-time = "2026-03-09T13:15:44.605Z" }, + { url = "https://files.pythonhosted.org/packages/6b/dd/644d0dde6010a8583b4cd66dd41c5f83f5325464d15c4f490b3340ab73b4/kiwisolver-1.5.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:41024ed50e44ab1a60d3fe0a9d15a4ccc9f5f2b1d814ff283c8d01134d5b81bc", size = 73390, upload-time = "2026-03-09T13:15:45.832Z" }, +] + +[[package]] +name = "lark" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/34/28fff3ab31ccff1fd4f6c7c7b0ceb2b6968d8ea4950663eadcb5720591a0/lark-1.3.1.tar.gz", hash = "sha256:b426a7a6d6d53189d318f2b6236ab5d6429eaf09259f1ca33eb716eed10d2905", size = 382732, upload-time = "2025-10-27T18:25:56.653Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3d/14ce75ef66813643812f3093ab17e46d3a206942ce7376d31ec2d36229e7/lark-1.3.1-py3-none-any.whl", hash = "sha256:c629b661023a014c37da873b4ff58a817398d12635d3bbb2c5a03be7fe5d1e12", size = 113151, upload-time = "2025-10-27T18:25:54.882Z" }, +] + +[[package]] +name = "libclang" +version = "18.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6e/5c/ca35e19a4f142adffa27e3d652196b7362fa612243e2b916845d801454fc/libclang-18.1.1.tar.gz", hash = "sha256:a1214966d08d73d971287fc3ead8dfaf82eb07fb197680d8b3859dbbbbf78250", size = 39612, upload-time = "2024-03-17T16:04:37.434Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/49/f5e3e7e1419872b69f6f5e82ba56e33955a74bd537d8a1f5f1eff2f3668a/libclang-18.1.1-1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:0b2e143f0fac830156feb56f9231ff8338c20aecfe72b4ffe96f19e5a1dbb69a", size = 25836045, upload-time = "2024-06-30T17:40:31.646Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e5/fc61bbded91a8830ccce94c5294ecd6e88e496cc85f6704bf350c0634b70/libclang-18.1.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:6f14c3f194704e5d09769108f03185fce7acaf1d1ae4bbb2f30a72c2400cb7c5", size = 26502641, upload-time = "2024-03-18T15:52:26.722Z" }, + { url = "https://files.pythonhosted.org/packages/db/ed/1df62b44db2583375f6a8a5e2ca5432bbdc3edb477942b9b7c848c720055/libclang-18.1.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:83ce5045d101b669ac38e6da8e58765f12da2d3aafb3b9b98d88b286a60964d8", size = 26420207, upload-time = "2024-03-17T15:00:26.63Z" }, + { url = "https://files.pythonhosted.org/packages/1d/fc/716c1e62e512ef1c160e7984a73a5fc7df45166f2ff3f254e71c58076f7c/libclang-18.1.1-py2.py3-none-manylinux2010_x86_64.whl", hash = "sha256:c533091d8a3bbf7460a00cb6c1a71da93bffe148f172c7d03b1c31fbf8aa2a0b", size = 24515943, upload-time = "2024-03-17T16:03:45.942Z" }, + { url = "https://files.pythonhosted.org/packages/3c/3d/f0ac1150280d8d20d059608cf2d5ff61b7c3b7f7bcf9c0f425ab92df769a/libclang-18.1.1-py2.py3-none-manylinux2014_aarch64.whl", hash = "sha256:54dda940a4a0491a9d1532bf071ea3ef26e6dbaf03b5000ed94dd7174e8f9592", size = 23784972, upload-time = "2024-03-17T16:12:47.677Z" }, + { url = "https://files.pythonhosted.org/packages/fe/2f/d920822c2b1ce9326a4c78c0c2b4aa3fde610c7ee9f631b600acb5376c26/libclang-18.1.1-py2.py3-none-manylinux2014_armv7l.whl", hash = "sha256:cf4a99b05376513717ab5d82a0db832c56ccea4fd61a69dbb7bccf2dfb207dbe", size = 20259606, upload-time = "2024-03-17T16:17:42.437Z" }, + { url = "https://files.pythonhosted.org/packages/2d/c2/de1db8c6d413597076a4259cea409b83459b2db997c003578affdd32bf66/libclang-18.1.1-py2.py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:69f8eb8f65c279e765ffd28aaa7e9e364c776c17618af8bff22a8df58677ff4f", size = 24921494, upload-time = "2024-03-17T16:14:20.132Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2d/3f480b1e1d31eb3d6de5e3ef641954e5c67430d5ac93b7fa7e07589576c7/libclang-18.1.1-py2.py3-none-win_amd64.whl", hash = "sha256:4dd2d3b82fab35e2bf9ca717d7b63ac990a3519c7e312f19fa8e86dcc712f7fb", size = 26415083, upload-time = "2024-03-17T16:42:21.703Z" }, + { url = "https://files.pythonhosted.org/packages/71/cf/e01dc4cc79779cd82d77888a88ae2fa424d93b445ad4f6c02bfc18335b70/libclang-18.1.1-py2.py3-none-win_arm64.whl", hash = "sha256:3f0e1f49f04d3cd198985fea0511576b0aee16f9ff0e0f0cad7f9c57ec3c20e8", size = 22361112, upload-time = "2024-03-17T16:42:59.565Z" }, +] + +[[package]] +name = "lightgbm" +version = "4.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/68/0b/a2e9f5c5da7ef047cc60cef37f86185088845e8433e54d2e7ed439cce8a3/lightgbm-4.6.0.tar.gz", hash = "sha256:cb1c59720eb569389c0ba74d14f52351b573af489f230032a1c9f314f8bab7fe", size = 1703705, upload-time = "2025-02-15T04:03:03.111Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/75/cffc9962cca296bc5536896b7e65b4a7cdeb8db208e71b9c0133c08f8f7e/lightgbm-4.6.0-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:b7a393de8a334d5c8e490df91270f0763f83f959574d504c7ccb9eee4aef70ed", size = 2010151, upload-time = "2025-02-15T04:02:50.961Z" }, + { url = "https://files.pythonhosted.org/packages/21/1b/550ee378512b78847930f5d74228ca1fdba2a7fbdeaac9aeccc085b0e257/lightgbm-4.6.0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:2dafd98d4e02b844ceb0b61450a660681076b1ea6c7adb8c566dfd66832aafad", size = 1592172, upload-time = "2025-02-15T04:02:53.937Z" }, + { url = "https://files.pythonhosted.org/packages/64/41/4fbde2c3d29e25ee7c41d87df2f2e5eda65b431ee154d4d462c31041846c/lightgbm-4.6.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:4d68712bbd2b57a0b14390cbf9376c1d5ed773fa2e71e099cac588703b590336", size = 3454567, upload-time = "2025-02-15T04:02:56.443Z" }, + { url = "https://files.pythonhosted.org/packages/42/86/dabda8fbcb1b00bcfb0003c3776e8ade1aa7b413dff0a2c08f457dace22f/lightgbm-4.6.0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:cb19b5afea55b5b61cbb2131095f50538bd608a00655f23ad5d25ae3e3bf1c8d", size = 3569831, upload-time = "2025-02-15T04:02:58.925Z" }, + { url = "https://files.pythonhosted.org/packages/5e/23/f8b28ca248bb629b9e08f877dd2965d1994e1674a03d67cd10c5246da248/lightgbm-4.6.0-py3-none-win_amd64.whl", hash = "sha256:37089ee95664b6550a7189d887dbf098e3eadab03537e411f52c63c121e3ba4b", size = 1451509, upload-time = "2025-02-15T04:03:01.515Z" }, +] + +[[package]] +name = "lightning" +version = "2.2.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fsspec", extra = ["http"] }, + { name = "lightning-utilities" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pytorch-lightning" }, + { name = "pyyaml" }, + { name = "torch" }, + { name = "torchmetrics" }, + { name = "tqdm" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ff/94/75ca89a07efaa2f32c98ebbc467a46e7996b21b1247aa9643933844948cb/lightning-2.2.5.tar.gz", hash = "sha256:a6c31a2052fc30fee34aec7e31ea2a117a005d049c3593fc9cfb867a34f962bf", size = 1668508, upload-time = "2024-05-22T17:36:29.641Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/6f/1e9e09afbda8efb5edc947b15c620776b7ebe6adfdfcf34a7cc2daef45ca/lightning-2.2.5-py3-none-any.whl", hash = "sha256:3fd4d37c5f912b000b922f36d4c06818de42b78f85178c2ad3e35b8af3e9218a", size = 1985635, upload-time = "2024-05-22T17:36:25.727Z" }, +] + +[[package]] +name = "lightning-utilities" +version = "0.15.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/45/7fa8f56b17dc0f0a41ec70dd307ecd6787254483549843bef4c30ab5adce/lightning_utilities-0.15.3.tar.gz", hash = "sha256:792ae0204c79f6859721ac7f386c237a33b0ed06ba775009cb894e010a842033", size = 33553, upload-time = "2026-02-22T14:48:53.348Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/f4/ead6e0e37209b07c9baa3e984ccdb0348ca370b77cea3aaea8ddbb097e00/lightning_utilities-0.15.3-py3-none-any.whl", hash = "sha256:6c55f1bee70084a1cbeaa41ada96e4b3a0fea5909e844dd335bd80f5a73c5f91", size = 31906, upload-time = "2026-02-22T14:48:52.488Z" }, +] + +[[package]] +name = "llvmlite" +version = "0.47.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/88/a8952b6d5c21e74cbf158515b779666f692846502623e9e3c39d8e8ba25f/llvmlite-0.47.0.tar.gz", hash = "sha256:62031ce968ec74e95092184d4b0e857e444f8fdff0b8f9213707699570c33ccc", size = 193614, upload-time = "2026-03-31T18:29:53.497Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/f5/a1bde3aa8c43524b0acaf3f72fb3d80a32dd29dbb42d7dc434f84584cdcc/llvmlite-0.47.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41270b0b1310717f717cf6f2a9c68d3c43bd7905c33f003825aebc361d0d1b17", size = 37232772, upload-time = "2026-03-31T18:28:12.198Z" }, + { url = "https://files.pythonhosted.org/packages/7c/fb/76d88fc05ee1f9c1a6efe39eb493c4a727e5d1690412469017cd23bcb776/llvmlite-0.47.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f9d118bc1dd7623e0e65ca9ac485ec6dd543c3b77bc9928ddc45ebd34e1e30a7", size = 56275179, upload-time = "2026-03-31T18:28:15.725Z" }, + { url = "https://files.pythonhosted.org/packages/4d/08/29da7f36217abd56a0c389ef9a18bea47960826e691ced1a36c92c6ce93c/llvmlite-0.47.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9ea5cfb04a6ab5b18e46be72b41b015975ba5980c4ddb41f1975b83e19031063", size = 55128632, upload-time = "2026-03-31T18:28:19.946Z" }, + { url = "https://files.pythonhosted.org/packages/df/f8/5e12e9ed447d65f04acf6fcf2d79cded2355640b5131a46cee4c99a5949d/llvmlite-0.47.0-cp310-cp310-win_amd64.whl", hash = "sha256:166b896a2262a2039d5fc52df5ee1659bd1ccd081183df7a2fba1b74702dd5ea", size = 38138402, upload-time = "2026-03-31T18:28:23.327Z" }, +] + +[[package]] +name = "maestrowf" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coloredlogs" }, + { name = "dill" }, + { name = "filelock" }, + { name = "jsonschema" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "rich" }, + { name = "six" }, + { name = "tabulate" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f2/5e/89a991cba5a2c643ab9df65f4534f2570c8d0fb827c8bb9c216874801129/maestrowf-1.2.0.tar.gz", hash = "sha256:e3e7d511993b1ad0874b5ec502da25fde15ce86288c5ba071db3f6bd3f2601d1", size = 105149, upload-time = "2026-03-27T00:45:33.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/8a/622940ae1b99ae7b8944f82a2f8039ca4b1f85edc40051e3111bd1808516/maestrowf-1.2.0-py3-none-any.whl", hash = "sha256:046936f0a1c772b04b6719d250c4bfb951f5ae44c48257c581b77e2593fca345", size = 154025, upload-time = "2026-03-27T00:45:32.595Z" }, +] + +[[package]] +name = "mako" +version = "1.3.11" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/59/8a/805404d0c0b9f3d7a326475ca008db57aea9c5c9f2e1e39ed0faa335571c/mako-1.3.11.tar.gz", hash = "sha256:071eb4ab4c5010443152255d77db7faa6ce5916f35226eb02dc34479b6858069", size = 399811, upload-time = "2026-04-14T20:19:51.493Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/a5/19d7aaa7e433713ffe881df33705925a196afb9532efc8475d26593921a6/mako-1.3.11-py3-none-any.whl", hash = "sha256:e372c6e333cf004aa736a15f425087ec977e1fcbd2966aae7f17c8dc1da27a77", size = 78503, upload-time = "2026-04-14T20:19:53.233Z" }, +] + +[[package]] +name = "markdown" +version = "3.10.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2b/f4/69fa6ed85ae003c2378ffa8f6d2e3234662abd02c10d216c0ba96081a238/markdown-3.10.2.tar.gz", hash = "sha256:994d51325d25ad8aa7ce4ebaec003febcce822c3f8c911e3b17c52f7f589f950", size = 368805, upload-time = "2026-02-09T14:57:26.942Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl", hash = "sha256:e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36", size = 108180, upload-time = "2026-02-09T14:57:25.787Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/4b/3541d44f3937ba468b75da9eebcae497dcf67adb65caa16760b0a6807ebb/markupsafe-3.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2f981d352f04553a7171b8e44369f2af4055f888dfb147d55e42d29e29e74559", size = 11631, upload-time = "2025-09-27T18:36:05.558Z" }, + { url = "https://files.pythonhosted.org/packages/98/1b/fbd8eed11021cabd9226c37342fa6ca4e8a98d8188a8d9b66740494960e4/markupsafe-3.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c1493fb6e50ab01d20a22826e57520f1284df32f2d8601fdd90b6304601419", size = 12057, upload-time = "2025-09-27T18:36:07.165Z" }, + { url = "https://files.pythonhosted.org/packages/40/01/e560d658dc0bb8ab762670ece35281dec7b6c1b33f5fbc09ebb57a185519/markupsafe-3.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ba88449deb3de88bd40044603fafffb7bc2b055d626a330323a9ed736661695", size = 22050, upload-time = "2025-09-27T18:36:08.005Z" }, + { url = "https://files.pythonhosted.org/packages/af/cd/ce6e848bbf2c32314c9b237839119c5a564a59725b53157c856e90937b7a/markupsafe-3.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f42d0984e947b8adf7dd6dde396e720934d12c506ce84eea8476409563607591", size = 20681, upload-time = "2025-09-27T18:36:08.881Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2a/b5c12c809f1c3045c4d580b035a743d12fcde53cf685dbc44660826308da/markupsafe-3.0.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c0c0b3ade1c0b13b936d7970b1d37a57acde9199dc2aecc4c336773e1d86049c", size = 20705, upload-time = "2025-09-27T18:36:10.131Z" }, + { url = "https://files.pythonhosted.org/packages/cf/e3/9427a68c82728d0a88c50f890d0fc072a1484de2f3ac1ad0bfc1a7214fd5/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0303439a41979d9e74d18ff5e2dd8c43ed6c6001fd40e5bf2e43f7bd9bbc523f", size = 21524, upload-time = "2025-09-27T18:36:11.324Z" }, + { url = "https://files.pythonhosted.org/packages/bc/36/23578f29e9e582a4d0278e009b38081dbe363c5e7165113fad546918a232/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:d2ee202e79d8ed691ceebae8e0486bd9a2cd4794cec4824e1c99b6f5009502f6", size = 20282, upload-time = "2025-09-27T18:36:12.573Z" }, + { url = "https://files.pythonhosted.org/packages/56/21/dca11354e756ebd03e036bd8ad58d6d7168c80ce1fe5e75218e4945cbab7/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:177b5253b2834fe3678cb4a5f0059808258584c559193998be2601324fdeafb1", size = 20745, upload-time = "2025-09-27T18:36:13.504Z" }, + { url = "https://files.pythonhosted.org/packages/87/99/faba9369a7ad6e4d10b6a5fbf71fa2a188fe4a593b15f0963b73859a1bbd/markupsafe-3.0.3-cp310-cp310-win32.whl", hash = "sha256:2a15a08b17dd94c53a1da0438822d70ebcd13f8c3a95abe3a9ef9f11a94830aa", size = 14571, upload-time = "2025-09-27T18:36:14.779Z" }, + { url = "https://files.pythonhosted.org/packages/d6/25/55dc3ab959917602c96985cb1253efaa4ff42f71194bddeb61eb7278b8be/markupsafe-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:c4ffb7ebf07cfe8931028e3e4c85f0357459a3f9f9490886198848f4fa002ec8", size = 15056, upload-time = "2025-09-27T18:36:16.125Z" }, + { url = "https://files.pythonhosted.org/packages/d0/9e/0a02226640c255d1da0b8d12e24ac2aa6734da68bff14c05dd53b94a0fc3/markupsafe-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:e2103a929dfa2fcaf9bb4e7c091983a49c9ac3b19c9061b6d5427dd7d14d81a1", size = 13932, upload-time = "2025-09-27T18:36:17.311Z" }, +] + +[[package]] +name = "matplotcheck" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "folium" }, + { name = "geopandas" }, + { name = "matplotlib" }, + { name = "numpy" }, + { name = "rasterio" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3c/64/9de5cb50eb1a51a8874a7d2c51e984577a9ffd4099385d4483b9caa779e3/matplotcheck-0.1.4.tar.gz", hash = "sha256:762d5365e51c3d73de1b4ebfb5c52a423885fba2dc2054a1f1319fc40db3b896", size = 32442, upload-time = "2021-02-03T23:06:09.78Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/43/e0d7efb953f0d5a4f5b8fd2727b6cec968568135fd7c4d5b5d86a1d51571/matplotcheck-0.1.4-py3-none-any.whl", hash = "sha256:e25704c8959eb99bb30cb7f6b353da956f38532e42929fbac725c5e1edac2954", size = 32517, upload-time = "2021-02-03T23:06:08.303Z" }, +] + +[[package]] +name = "matplotlib" +version = "3.10.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/76/d3c6e3a13fe484ebe7718d14e269c9569c4eb0020a968a327acb3b9a8fe6/matplotlib-3.10.8.tar.gz", hash = "sha256:2299372c19d56bcd35cf05a2738308758d32b9eaed2371898d8f5bd33f084aa3", size = 34806269, upload-time = "2025-12-10T22:56:51.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/58/be/a30bd917018ad220c400169fba298f2bb7003c8ccbc0c3e24ae2aacad1e8/matplotlib-3.10.8-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:00270d217d6b20d14b584c521f810d60c5c78406dc289859776550df837dcda7", size = 8239828, upload-time = "2025-12-10T22:55:02.313Z" }, + { url = "https://files.pythonhosted.org/packages/58/27/ca01e043c4841078e82cf6e80a6993dfecd315c3d79f5f3153afbb8e1ec6/matplotlib-3.10.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37b3c1cc42aa184b3f738cfa18c1c1d72fd496d85467a6cf7b807936d39aa656", size = 8128050, upload-time = "2025-12-10T22:55:04.997Z" }, + { url = "https://files.pythonhosted.org/packages/cb/aa/7ab67f2b729ae6a91bcf9dcac0affb95fb8c56f7fd2b2af894ae0b0cf6fa/matplotlib-3.10.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ee40c27c795bda6a5292e9cff9890189d32f7e3a0bf04e0e3c9430c4a00c37df", size = 8700452, upload-time = "2025-12-10T22:55:07.47Z" }, + { url = "https://files.pythonhosted.org/packages/73/ae/2d5817b0acee3c49b7e7ccfbf5b273f284957cc8e270adf36375db353190/matplotlib-3.10.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a48f2b74020919552ea25d222d5cc6af9ca3f4eb43a93e14d068457f545c2a17", size = 9534928, upload-time = "2025-12-10T22:55:10.566Z" }, + { url = "https://files.pythonhosted.org/packages/c9/5b/8e66653e9f7c39cb2e5cab25fce4810daffa2bff02cbf5f3077cea9e942c/matplotlib-3.10.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f254d118d14a7f99d616271d6c3c27922c092dac11112670b157798b89bf4933", size = 9586377, upload-time = "2025-12-10T22:55:12.362Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e2/fd0bbadf837f81edb0d208ba8f8cb552874c3b16e27cb91a31977d90875d/matplotlib-3.10.8-cp310-cp310-win_amd64.whl", hash = "sha256:f9b587c9c7274c1613a30afabf65a272114cd6cdbe67b3406f818c79d7ab2e2a", size = 8128127, upload-time = "2025-12-10T22:55:14.436Z" }, + { url = "https://files.pythonhosted.org/packages/f5/43/31d59500bb950b0d188e149a2e552040528c13d6e3d6e84d0cccac593dcd/matplotlib-3.10.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f97aeb209c3d2511443f8797e3e5a569aebb040d4f8bc79aa3ee78a8fb9e3dd8", size = 8237252, upload-time = "2025-12-10T22:56:39.529Z" }, + { url = "https://files.pythonhosted.org/packages/0c/2c/615c09984f3c5f907f51c886538ad785cf72e0e11a3225de2c0f9442aecc/matplotlib-3.10.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fb061f596dad3a0f52b60dc6a5dec4a0c300dec41e058a7efe09256188d170b7", size = 8124693, upload-time = "2025-12-10T22:56:41.758Z" }, + { url = "https://files.pythonhosted.org/packages/91/e1/2757277a1c56041e1fc104b51a0f7b9a4afc8eb737865d63cababe30bc61/matplotlib-3.10.8-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:12d90df9183093fcd479f4172ac26b322b1248b15729cb57f42f71f24c7e37a3", size = 8702205, upload-time = "2025-12-10T22:56:43.415Z" }, +] + +[[package]] +name = "matplotlib-inline" +version = "0.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/74/97e72a36efd4ae2bccb3463284300f8953f199b5ffbc04cbbb0ec78f74b1/matplotlib_inline-0.2.1.tar.gz", hash = "sha256:e1ee949c340d771fc39e241ea75683deb94762c8fa5f2927ec57c83c4dffa9fe", size = 8110, upload-time = "2025-10-23T09:00:22.126Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/af/33/ee4519fa02ed11a94aef9559552f3b17bb863f2ecfe1a35dc7f548cde231/matplotlib_inline-0.2.1-py3-none-any.whl", hash = "sha256:d56ce5156ba6085e00a9d54fead6ed29a9c47e215cd1bba2e976ef39f5710a76", size = 9516, upload-time = "2025-10-23T09:00:20.675Z" }, +] + +[[package]] +name = "matplotlib-venn" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e8/f7/47bddf95492f4d1370ed7164d2b16407805e8eeb38231361de65d387a562/matplotlib-venn-1.1.2.tar.gz", hash = "sha256:6f2b07a03e9bb5a62de2f32f965216739e175176f9d654dd19e7af2c22ec36e3", size = 40821, upload-time = "2025-02-25T10:44:24.294Z" } + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "mistune" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/55/d01f0c4b45ade6536c51170b9043db8b2ec6ddf4a35c7ea3f5f559ac935b/mistune-3.2.0.tar.gz", hash = "sha256:708487c8a8cdd99c9d90eb3ed4c3ed961246ff78ac82f03418f5183ab70e398a", size = 95467, upload-time = "2025-12-23T11:36:34.994Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/f7/4a5e785ec9fbd65146a27b6b70b6cdc161a66f2024e4b04ac06a67f5578b/mistune-3.2.0-py3-none-any.whl", hash = "sha256:febdc629a3c78616b94393c6580551e0e34cc289987ec6c35ed3f4be42d0eee1", size = 53598, upload-time = "2025-12-23T11:36:33.211Z" }, +] + +[[package]] +name = "ml-dtypes" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fa/47/09ca9556bf99cfe7ddf129a3423642bd482a27a717bf115090493fa42429/ml_dtypes-0.2.0.tar.gz", hash = "sha256:6488eb642acaaf08d8020f6de0a38acee7ac324c1e6e92ee0c0fea42422cb797", size = 698948, upload-time = "2023-06-06T15:14:43.679Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/9f/3c133f83f3e5a7959345585e9ac715ef8bf6e8987551f240032e1b0d3ce6/ml_dtypes-0.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:df6a76e1c8adf484feb138ed323f9f40a7b6c21788f120f7c78bec20ac37ee81", size = 1154492, upload-time = "2023-06-06T15:14:11.966Z" }, + { url = "https://files.pythonhosted.org/packages/19/05/7a6480a69f8555a047a56ae6af9490bcdc5e432658208f3404d8e8442d02/ml_dtypes-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc29a0524ef5e23a7fbb8d881bdecabeb3fc1d19d9db61785d077a86cb94fab2", size = 1012633, upload-time = "2023-06-06T15:14:14.055Z" }, + { url = "https://files.pythonhosted.org/packages/d1/1d/d5cf76e5e40f69dbd273036e3172ae4a614577cb141673427b80cac948df/ml_dtypes-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f08c391c2794f2aad358e6f4c70785a9a7b1df980ef4c232b3ccd4f6fe39f719", size = 1017764, upload-time = "2023-06-06T15:14:15.632Z" }, + { url = "https://files.pythonhosted.org/packages/55/51/c430b4f5f4a6df00aa41c1ee195e179489565e61cfad559506ca7442ce67/ml_dtypes-0.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:75015818a7fccf99a5e8ed18720cb430f3e71a8838388840f4cdf225c036c983", size = 938593, upload-time = "2023-06-06T15:14:17.473Z" }, +] + +[[package]] +name = "monotonic" +version = "1.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ea/ca/8e91948b782ddfbd194f323e7e7d9ba12e5877addf04fb2bf8fca38e86ac/monotonic-1.6.tar.gz", hash = "sha256:3a55207bcfed53ddd5c5bae174524062935efed17792e9de2ad0205ce9ad63f7", size = 7615, upload-time = "2021-08-11T14:37:28.79Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/67/7e8406a29b6c45be7af7740456f7f37025f0506ae2e05fb9009a53946860/monotonic-1.6-py2.py3-none-any.whl", hash = "sha256:68687e19a14f11f26d140dd5c86f3dba4bf5df58003000ed467e0e2a69bca96c", size = 8154, upload-time = "2021-04-09T21:58:05.122Z" }, +] + +[[package]] +name = "mordred" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "networkx" }, + { name = "numpy" }, + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/93/3d/26c908ece761adafcea06320bf8fe73f4de69979273fb164226dc6038c39/mordred-1.2.0.tar.gz", hash = "sha256:1115f9f3a3dde290dd68d51a5070fce43a62aab96b980cffc9d72b74a59e1c5a", size = 128774, upload-time = "2019-06-05T18:20:01.267Z" } + +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, +] + +[[package]] +name = "msgpack" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/f2/bfb55a6236ed8725a96b0aa3acbd0ec17588e6a2c3b62a93eb513ed8783f/msgpack-1.1.2.tar.gz", hash = "sha256:3b60763c1373dd60f398488069bcdc703cd08a711477b5d480eecc9f9626f47e", size = 173581, upload-time = "2025-10-08T09:15:56.596Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f5/a2/3b68a9e769db68668b25c6108444a35f9bd163bb848c0650d516761a59c0/msgpack-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0051fffef5a37ca2cd16978ae4f0aef92f164df86823871b5162812bebecd8e2", size = 81318, upload-time = "2025-10-08T09:14:38.722Z" }, + { url = "https://files.pythonhosted.org/packages/5b/e1/2b720cc341325c00be44e1ed59e7cfeae2678329fbf5aa68f5bda57fe728/msgpack-1.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a605409040f2da88676e9c9e5853b3449ba8011973616189ea5ee55ddbc5bc87", size = 83786, upload-time = "2025-10-08T09:14:40.082Z" }, + { url = "https://files.pythonhosted.org/packages/71/e5/c2241de64bfceac456b140737812a2ab310b10538a7b34a1d393b748e095/msgpack-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b696e83c9f1532b4af884045ba7f3aa741a63b2bc22617293a2c6a7c645f251", size = 398240, upload-time = "2025-10-08T09:14:41.151Z" }, + { url = "https://files.pythonhosted.org/packages/b7/09/2a06956383c0fdebaef5aa9246e2356776f12ea6f2a44bd1368abf0e46c4/msgpack-1.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:365c0bbe981a27d8932da71af63ef86acc59ed5c01ad929e09a0b88c6294e28a", size = 406070, upload-time = "2025-10-08T09:14:42.821Z" }, + { url = "https://files.pythonhosted.org/packages/0e/74/2957703f0e1ef20637d6aead4fbb314330c26f39aa046b348c7edcf6ca6b/msgpack-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:41d1a5d875680166d3ac5c38573896453bbbea7092936d2e107214daf43b1d4f", size = 393403, upload-time = "2025-10-08T09:14:44.38Z" }, + { url = "https://files.pythonhosted.org/packages/a5/09/3bfc12aa90f77b37322fc33e7a8a7c29ba7c8edeadfa27664451801b9860/msgpack-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354e81bcdebaab427c3df4281187edc765d5d76bfb3a7c125af9da7a27e8458f", size = 398947, upload-time = "2025-10-08T09:14:45.56Z" }, + { url = "https://files.pythonhosted.org/packages/4b/4f/05fcebd3b4977cb3d840f7ef6b77c51f8582086de5e642f3fefee35c86fc/msgpack-1.1.2-cp310-cp310-win32.whl", hash = "sha256:e64c8d2f5e5d5fda7b842f55dec6133260ea8f53c4257d64494c534f306bf7a9", size = 64769, upload-time = "2025-10-08T09:14:47.334Z" }, + { url = "https://files.pythonhosted.org/packages/d0/3e/b4547e3a34210956382eed1c85935fff7e0f9b98be3106b3745d7dec9c5e/msgpack-1.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:db6192777d943bdaaafb6ba66d44bf65aa0e9c5616fa1d2da9bb08828c6b39aa", size = 71293, upload-time = "2025-10-08T09:14:48.665Z" }, +] + +[[package]] +name = "multidict" +version = "6.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/0b/19348d4c98980c4851d2f943f8ebafdece2ae7ef737adcfa5994ce8e5f10/multidict-6.7.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c93c3db7ea657dd4637d57e74ab73de31bccefe144d3d4ce370052035bc85fb5", size = 77176, upload-time = "2026-01-26T02:42:59.784Z" }, + { url = "https://files.pythonhosted.org/packages/ef/04/9de3f8077852e3d438215c81e9b691244532d2e05b4270e89ce67b7d103c/multidict-6.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:974e72a2474600827abaeda71af0c53d9ebbc3c2eb7da37b37d7829ae31232d8", size = 44996, upload-time = "2026-01-26T02:43:01.674Z" }, + { url = "https://files.pythonhosted.org/packages/31/5c/08c7f7fe311f32e83f7621cd3f99d805f45519cd06fafb247628b861da7d/multidict-6.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdea2e7b2456cfb6694fb113066fd0ec7ea4d67e3a35e1f4cbeea0b448bf5872", size = 44631, upload-time = "2026-01-26T02:43:03.169Z" }, + { url = "https://files.pythonhosted.org/packages/b7/7f/0e3b1390ae772f27501199996b94b52ceeb64fe6f9120a32c6c3f6b781be/multidict-6.7.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:17207077e29342fdc2c9a82e4b306f1127bf1ea91f8b71e02d4798a70bb99991", size = 242561, upload-time = "2026-01-26T02:43:04.733Z" }, + { url = "https://files.pythonhosted.org/packages/dd/f4/8719f4f167586af317b69dd3e90f913416c91ca610cac79a45c53f590312/multidict-6.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4f49cb5661344764e4c7c7973e92a47a59b8fc19b6523649ec9dc4960e58a03", size = 242223, upload-time = "2026-01-26T02:43:06.695Z" }, + { url = "https://files.pythonhosted.org/packages/47/ab/7c36164cce64a6ad19c6d9a85377b7178ecf3b89f8fd589c73381a5eedfd/multidict-6.7.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a9fc4caa29e2e6ae408d1c450ac8bf19892c5fca83ee634ecd88a53332c59981", size = 222322, upload-time = "2026-01-26T02:43:08.472Z" }, + { url = "https://files.pythonhosted.org/packages/f5/79/a25add6fb38035b5337bc5734f296d9afc99163403bbcf56d4170f97eb62/multidict-6.7.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c5f0c21549ab432b57dcc82130f388d84ad8179824cc3f223d5e7cfbfd4143f6", size = 254005, upload-time = "2026-01-26T02:43:10.127Z" }, + { url = "https://files.pythonhosted.org/packages/4a/7b/64a87cf98e12f756fc8bd444b001232ffff2be37288f018ad0d3f0aae931/multidict-6.7.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7dfb78d966b2c906ae1d28ccf6e6712a3cd04407ee5088cd276fe8cb42186190", size = 251173, upload-time = "2026-01-26T02:43:11.731Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ac/b605473de2bb404e742f2cc3583d12aedb2352a70e49ae8fce455b50c5aa/multidict-6.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9b0d9b91d1aa44db9c1f1ecd0d9d2ae610b2f4f856448664e01a3b35899f3f92", size = 243273, upload-time = "2026-01-26T02:43:13.063Z" }, + { url = "https://files.pythonhosted.org/packages/03/65/11492d6a0e259783720f3bc1d9ea55579a76f1407e31ed44045c99542004/multidict-6.7.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dd96c01a9dcd4889dcfcf9eb5544ca0c77603f239e3ffab0524ec17aea9a93ee", size = 238956, upload-time = "2026-01-26T02:43:14.843Z" }, + { url = "https://files.pythonhosted.org/packages/5f/a7/7ee591302af64e7c196fb63fe856c788993c1372df765102bd0448e7e165/multidict-6.7.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:067343c68cd6612d375710f895337b3a98a033c94f14b9a99eff902f205424e2", size = 233477, upload-time = "2026-01-26T02:43:16.025Z" }, + { url = "https://files.pythonhosted.org/packages/9c/99/c109962d58756c35fd9992fed7f2355303846ea2ff054bb5f5e9d6b888de/multidict-6.7.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5884a04f4ff56c6120f6ccf703bdeb8b5079d808ba604d4d53aec0d55dc33568", size = 243615, upload-time = "2026-01-26T02:43:17.84Z" }, + { url = "https://files.pythonhosted.org/packages/d5/5f/1973e7c771c86e93dcfe1c9cc55a5481b610f6614acfc28c0d326fe6bfad/multidict-6.7.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8affcf1c98b82bc901702eb73b6947a1bfa170823c153fe8a47b5f5f02e48e40", size = 249930, upload-time = "2026-01-26T02:43:19.06Z" }, + { url = "https://files.pythonhosted.org/packages/5d/a5/f170fc2268c3243853580203378cd522446b2df632061e0a5409817854c7/multidict-6.7.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:0d17522c37d03e85c8098ec8431636309b2682cf12e58f4dbc76121fb50e4962", size = 243807, upload-time = "2026-01-26T02:43:20.286Z" }, + { url = "https://files.pythonhosted.org/packages/de/01/73856fab6d125e5bc652c3986b90e8699a95e84b48d72f39ade6c0e74a8c/multidict-6.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:24c0cf81544ca5e17cfcb6e482e7a82cd475925242b308b890c9452a074d4505", size = 239103, upload-time = "2026-01-26T02:43:21.508Z" }, + { url = "https://files.pythonhosted.org/packages/e7/46/f1220bd9944d8aa40d8ccff100eeeee19b505b857b6f603d6078cb5315b0/multidict-6.7.1-cp310-cp310-win32.whl", hash = "sha256:d82dd730a95e6643802f4454b8fdecdf08667881a9c5670db85bc5a56693f122", size = 41416, upload-time = "2026-01-26T02:43:22.703Z" }, + { url = "https://files.pythonhosted.org/packages/68/00/9b38e272a770303692fc406c36e1a4c740f401522d5787691eb38a8925a8/multidict-6.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:cf37cbe5ced48d417ba045aca1b21bafca67489452debcde94778a576666a1df", size = 46022, upload-time = "2026-01-26T02:43:23.77Z" }, + { url = "https://files.pythonhosted.org/packages/64/65/d8d42490c02ee07b6bbe00f7190d70bb4738b3cce7629aaf9f213ef730dd/multidict-6.7.1-cp310-cp310-win_arm64.whl", hash = "sha256:59bc83d3f66b41dac1e7460aac1d196edc70c9ba3094965c467715a70ecb46db", size = 43238, upload-time = "2026-01-26T02:43:24.882Z" }, + { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" }, +] + +[[package]] +name = "narwhals" +version = "2.19.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4e/1a/bd3317c0bdbcd9ffb710ddf5250b32898f8f2c240be99494fe137feb77a7/narwhals-2.19.0.tar.gz", hash = "sha256:14fd7040b5ff211d415a82e4827b9d04c354e213e72a6d0730205ffd72e3b7ff", size = 623698, upload-time = "2026-04-06T15:50:58.786Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/72/e61e3091e0e00fae9d3a8ef85ece9d2cd4b5966058e1f2901ce42679eebf/narwhals-2.19.0-py3-none-any.whl", hash = "sha256:1f8dfa4a33a6dbff878c3e9be4c3b455dfcaf2a9322f1357db00e4e92e95b84b", size = 446991, upload-time = "2026-04-06T15:50:57.046Z" }, +] + +[[package]] +name = "nbclient" +version = "0.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "nbformat" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/56/91/1c1d5a4b9a9ebba2b4e32b8c852c2975c872aec1fe42ab5e516b2cecd193/nbclient-0.10.4.tar.gz", hash = "sha256:1e54091b16e6da39e297b0ece3e10f6f29f4ac4e8ee515d29f8a7099bd6553c9", size = 62554, upload-time = "2025-12-23T07:45:46.369Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/a0/5b0c2f11142ed1dddec842457d3f65eaf71a0080894eb6f018755b319c3a/nbclient-0.10.4-py3-none-any.whl", hash = "sha256:9162df5a7373d70d606527300a95a975a47c137776cd942e52d9c7e29ff83440", size = 25465, upload-time = "2025-12-23T07:45:44.51Z" }, +] + +[[package]] +name = "nbconvert" +version = "7.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4" }, + { name = "bleach", extra = ["css"] }, + { name = "defusedxml" }, + { name = "jinja2" }, + { name = "jupyter-core" }, + { name = "jupyterlab-pygments" }, + { name = "markupsafe" }, + { name = "mistune" }, + { name = "nbclient" }, + { name = "nbformat" }, + { name = "packaging" }, + { name = "pandocfilters" }, + { name = "pygments" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/01/b1/708e53fe2e429c103c6e6e159106bcf0357ac41aa4c28772bd8402339051/nbconvert-7.17.1.tar.gz", hash = "sha256:34d0d0a7e73ce3cbab6c5aae8f4f468797280b01fd8bd2ca746da8569eddd7d2", size = 865311, upload-time = "2026-04-08T00:44:14.914Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/f8/bb0a9d5f46819c821dc1f004aa2cc29b1d91453297dbf5ff20470f00f193/nbconvert-7.17.1-py3-none-any.whl", hash = "sha256:aa85c087b435e7bf1ffd03319f658e285f2b89eccab33bc1ba7025495ab3e7c8", size = 261927, upload-time = "2026-04-08T00:44:12.845Z" }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema" }, + { name = "jsonschema" }, + { name = "jupyter-core" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749, upload-time = "2024-04-04T11:20:37.371Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454, upload-time = "2024-04-04T11:20:34.895Z" }, +] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418, upload-time = "2024-01-21T14:25:19.227Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195, upload-time = "2024-01-21T14:25:17.223Z" }, +] + +[[package]] +name = "networkx" +version = "2.8.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/16/c44e8550012735b8f21b3df7f39e8ba5a987fb764ac017ad5f3589735889/networkx-2.8.8.tar.gz", hash = "sha256:230d388117af870fce5647a3c52401fcf753e94720e6ea6b4197a5355648885e", size = 1960828, upload-time = "2022-11-01T20:31:52.02Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/31/d2f89f1ae42718f8c8a9e440ebe38d7d5fe1e0d9eb9178ce779e365b3ab0/networkx-2.8.8-py3-none-any.whl", hash = "sha256:e435dfa75b1d7195c7b8378c3859f0445cd88c6b0375c181ed66823a9ceb7524", size = 2025192, upload-time = "2022-11-01T20:31:49.035Z" }, +] + +[[package]] +name = "notebook" +version = "7.5.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, + { name = "jupyterlab" }, + { name = "jupyterlab-server" }, + { name = "notebook-shim" }, + { name = "tornado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1f/6d/41052c48d6f6349ca0a7c4d1f6a78464de135e6d18f5829ba2510e62184c/notebook-7.5.5.tar.gz", hash = "sha256:dc0bfab0f2372c8278c457423d3256c34154ac2cc76bf20e9925260c461013c3", size = 14169167, upload-time = "2026-03-11T16:32:51.922Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/aa/cbd1deb9f07446241e88f8d5fecccd95b249bca0b4e5482214a4d1714c49/notebook-7.5.5-py3-none-any.whl", hash = "sha256:a7c14dbeefa6592e87f72290ca982e0c10f5bbf3786be2a600fda9da2764a2b8", size = 14578929, upload-time = "2026-03-11T16:32:48.021Z" }, +] + +[[package]] +name = "notebook-shim" +version = "0.2.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/54/d2/92fa3243712b9a3e8bafaf60aac366da1cada3639ca767ff4b5b3654ec28/notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb", size = 13167, upload-time = "2024-02-14T23:35:18.353Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef", size = 13307, upload-time = "2024-02-14T23:35:16.286Z" }, +] + +[[package]] +name = "numba" +version = "0.65.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "llvmlite" }, + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/49/61/7299643b9c18d669e04be7c5bcb64d985070d07553274817b45b049e7bfe/numba-0.65.0.tar.gz", hash = "sha256:edad0d9f6682e93624c00125a471ae4df186175d71fd604c983c377cdc03e68b", size = 2764131, upload-time = "2026-04-01T03:52:01.946Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/9b/e8453d93d5cb3f53cc956f135024be09d52f4f99643acaf8fdca090a8f3c/numba-0.65.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:dff9fd5fbc9a35c517359c5823ea705d9b65f01fb46e42e35a2eabe5a52c2e96", size = 2680537, upload-time = "2026-04-01T03:51:17.325Z" }, + { url = "https://files.pythonhosted.org/packages/07/95/d6a2f0625e1092624228301eea11cdaff21ddcaf917ef3d631846a38b2f4/numba-0.65.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4c894c94afa5ffd627c7e3b693df10cb0d905bd5eb06de3dfc31775140cf4f89", size = 3739444, upload-time = "2026-04-01T03:51:19.629Z" }, + { url = "https://files.pythonhosted.org/packages/49/ed/fe518c97af035e4ec670c2edc3f0ff7a518cbed2f0b5053124d7c979bd8a/numba-0.65.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b7325b1aab88f0339057288ee32f39dc660e14f93872a6fda14fa6eb9f95b047", size = 3446390, upload-time = "2026-04-01T03:51:21.55Z" }, + { url = "https://files.pythonhosted.org/packages/d0/06/5010939854249c290c6217e3fb7404914f4ed953f9923e340c3e166bcaf0/numba-0.65.0-cp310-cp310-win_amd64.whl", hash = "sha256:71e72e9ca2f619df4768f9c3962bfec60191a5a26fe2b6a8c6a07532b6146169", size = 2747200, upload-time = "2026-04-01T03:51:23.674Z" }, +] + +[[package]] +name = "numpy" +version = "1.26.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/65/6e/09db70a523a96d25e115e71cc56a6f9031e7b8cd166c1ac8438307c14058/numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", size = 15786129, upload-time = "2024-02-06T00:26:44.495Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/94/ace0fdea5241a27d13543ee117cbc65868e82213fb31a8eb7fe9ff23f313/numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", size = 20631468, upload-time = "2024-02-05T23:48:01.194Z" }, + { url = "https://files.pythonhosted.org/packages/20/f7/b24208eba89f9d1b58c1668bc6c8c4fd472b20c45573cb767f59d49fb0f6/numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", size = 13966411, upload-time = "2024-02-05T23:48:29.038Z" }, + { url = "https://files.pythonhosted.org/packages/fc/a5/4beee6488160798683eed5bdb7eead455892c3b4e1f78d79d8d3f3b084ac/numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", size = 14219016, upload-time = "2024-02-05T23:48:54.098Z" }, + { url = "https://files.pythonhosted.org/packages/4b/d7/ecf66c1cd12dc28b4040b15ab4d17b773b87fa9d29ca16125de01adb36cd/numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f", size = 18240889, upload-time = "2024-02-05T23:49:25.361Z" }, + { url = "https://files.pythonhosted.org/packages/24/03/6f229fe3187546435c4f6f89f6d26c129d4f5bed40552899fcf1f0bf9e50/numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", size = 13876746, upload-time = "2024-02-05T23:49:51.983Z" }, + { url = "https://files.pythonhosted.org/packages/39/fe/39ada9b094f01f5a35486577c848fe274e374bbf8d8f472e1423a0bbd26d/numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", size = 18078620, upload-time = "2024-02-05T23:50:22.515Z" }, + { url = "https://files.pythonhosted.org/packages/d5/ef/6ad11d51197aad206a9ad2286dc1aac6a378059e06e8cf22cd08ed4f20dc/numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", size = 5972659, upload-time = "2024-02-05T23:50:35.834Z" }, + { url = "https://files.pythonhosted.org/packages/19/77/538f202862b9183f54108557bfda67e17603fc560c384559e769321c9d92/numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", size = 15808905, upload-time = "2024-02-05T23:51:03.701Z" }, +] + +[[package]] +name = "nvidia-cublas-cu12" +version = "12.1.3.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/6d/121efd7382d5b0284239f4ab1fc1590d86d34ed4a4a2fdb13b30ca8e5740/nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:ee53ccca76a6fc08fb9701aa95b6ceb242cdaab118c3bb152af4e579af792728", size = 410594774, upload-time = "2023-04-19T15:50:03.519Z" }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/00/6b218edd739ecfc60524e585ba8e6b00554dd908de2c9c66c1af3e44e18d/nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:e54fde3983165c624cb79254ae9818a456eb6e87a7fd4d56a2352c24ee542d7e", size = 14109015, upload-time = "2023-04-19T15:47:32.502Z" }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/9f/c64c03f49d6fbc56196664d05dba14e3a561038a81a638eeb47f4d4cfd48/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:339b385f50c309763ca65456ec75e17bbefcbbf2893f462cb8b90584cd27a1c2", size = 23671734, upload-time = "2023-04-19T15:48:32.42Z" }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/d5/c68b1d2cdfcc59e72e8a5949a37ddb22ae6cade80cd4a57a84d4c8b55472/nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:6e258468ddf5796e25f1dc591a31029fa317d97a0a94ed93468fc86301d61e40", size = 823596, upload-time = "2023-04-19T15:47:22.471Z" }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "8.9.2.26" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/74/a2e2be7fb83aaedec84f391f082cf765dfb635e7caa9b49065f73e4835d8/nvidia_cudnn_cu12-8.9.2.26-py3-none-manylinux1_x86_64.whl", hash = "sha256:5ccb288774fdfb07a7e7025ffec286971c06d8d7b4fb162525334616d7629ff9", size = 731725872, upload-time = "2023-06-01T19:24:57.328Z" }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.0.2.54" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/94/eb540db023ce1d162e7bea9f8f5aa781d57c65aed513c33ee9a5123ead4d/nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl", hash = "sha256:794e3948a1aa71fd817c3775866943936774d1c14e7628c74f6f7417224cdf56", size = 121635161, upload-time = "2023-04-19T15:50:46Z" }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.2.106" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/31/4890b1c9abc496303412947fc7dcea3d14861720642b49e8ceed89636705/nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:9d264c5036dde4e64f1de8c50ae753237c12e0b1348738169cd0f8a536c0e1e0", size = 56467784, upload-time = "2023-04-19T15:51:04.804Z" }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.4.5.107" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, + { name = "nvidia-cusparse-cu12" }, + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/1d/8de1e5c67099015c834315e333911273a8c6aaba78923dd1d1e25fc5f217/nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl", hash = "sha256:8a7ec542f0412294b15072fa7dab71d31334014a69f953004ea7a118206fe0dd", size = 124161928, upload-time = "2023-04-19T15:51:25.781Z" }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.1.0.106" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/5b/cfaeebf25cd9fdec14338ccb16f6b2c4c7fa9163aefcf057d86b9cc248bb/nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:f3b50f42cf363f86ab21f720998517a659a48131e8d538dc02f8768237bd884c", size = 195958278, upload-time = "2023-04-19T15:51:49.939Z" }, +] + +[[package]] +name = "nvidia-nccl-cu12" +version = "2.18.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/05/23f8f38eec3d28e4915725b233c24d8f1a33cb6540a882f7b54be1befa02/nvidia_nccl_cu12-2.18.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:1a6c4acefcbebfa6de320f412bf7866de856e786e0462326ba1bac40de0b5e71", size = 209797524, upload-time = "2023-05-04T23:15:49.653Z" }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.9.86" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/0c/c75bbfb967457a0b7670b8ad267bfc4fffdf341c074e0a80db06c24ccfd4/nvidia_nvjitlink_cu12-12.9.86-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:e3f1171dbdc83c5932a45f0f4c99180a70de9bd2718c1ab77d14104f6d7147f9", size = 39748338, upload-time = "2025-06-05T20:10:25.613Z" }, +] + +[[package]] +name = "nvidia-nvtx-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/d3/8057f0587683ed2fcd4dbfbdfdfa807b9160b809976099d36b8f60d08f03/nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:dc21cf308ca5691e7c04d962e213f8a4aa9bbfa23d95412f452254c2caeb09e5", size = 99138, upload-time = "2023-04-19T15:48:43.556Z" }, +] + +[[package]] +name = "oauthlib" +version = "3.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0b/5f/19930f824ffeb0ad4372da4812c50edbd1434f678c90c2733e1188edfc63/oauthlib-3.3.1.tar.gz", hash = "sha256:0f0f8aa759826a193cf66c12ea1af1637f87b9b4622d46e866952bb022e538c9", size = 185918, upload-time = "2025-06-19T22:48:08.269Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/be/9c/92789c596b8df838baa98fa71844d84283302f7604ed565dafe5a6b5041a/oauthlib-3.3.1-py3-none-any.whl", hash = "sha256:88119c938d2b8fb88561af5f6ee0eec8cc8d552b7bb1f712743136eb7523b7a1", size = 160065, upload-time = "2025-06-19T22:48:06.508Z" }, +] + +[[package]] +name = "opt-einsum" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/b9/2ac072041e899a52f20cf9510850ff58295003aa75525e58343591b0cbfb/opt_einsum-3.4.0.tar.gz", hash = "sha256:96ca72f1b886d148241348783498194c577fa30a8faac108586b14f1ba4473ac", size = 63004, upload-time = "2024-09-26T14:33:24.483Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/cd/066e86230ae37ed0be70aae89aabf03ca8d9f39c8aea0dec8029455b5540/opt_einsum-3.4.0-py3-none-any.whl", hash = "sha256:69bb92469f86a1565195ece4ac0323943e83477171b91d24c35afe028a90d7cd", size = 71932, upload-time = "2024-09-26T14:33:23.039Z" }, +] + +[[package]] +name = "optuna" +version = "4.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alembic" }, + { name = "colorlog" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "sqlalchemy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/9b/62f120fb2ecbc4338bee70c5a3671c8e561714f3aa1a046b897ff142050e/optuna-4.8.0.tar.gz", hash = "sha256:6f7043e9f8ecb5e607af86a7eb00fb5ec2be26c3b08c201209a73d36aff37a38", size = 482603, upload-time = "2026-03-16T04:59:58.659Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/24/7c731839566d30dc70556d9824ef17692d896c15e3df627bce8c16f753e1/optuna-4.8.0-py3-none-any.whl", hash = "sha256:c57a7682679c36bfc9bca0da430698179e513874074b71bebedb0334964ab930", size = 419456, upload-time = "2026-03-16T04:59:56.977Z" }, +] + +[[package]] +name = "overrides" +version = "7.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/36/86/b585f53236dec60aba864e050778b25045f857e17f6e5ea0ae95fe80edd2/overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a", size = 22812, upload-time = "2024-01-27T21:01:33.423Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49", size = 17832, upload-time = "2024-01-27T21:01:31.393Z" }, +] + +[[package]] +name = "packaging" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950, upload-time = "2024-11-08T09:47:47.202Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451, upload-time = "2024-11-08T09:47:44.722Z" }, +] + +[[package]] +name = "pandas" +version = "2.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/33/01/d40b85317f86cf08d853a4f495195c73815fdf205eef3993821720274518/pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b", size = 4495223, upload-time = "2025-09-29T23:34:51.853Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/f7/f425a00df4fcc22b292c6895c6831c0c8ae1d9fac1e024d16f98a9ce8749/pandas-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:376c6446ae31770764215a6c937f72d917f214b43560603cd60da6408f183b6c", size = 11555763, upload-time = "2025-09-29T23:16:53.287Z" }, + { url = "https://files.pythonhosted.org/packages/13/4f/66d99628ff8ce7857aca52fed8f0066ce209f96be2fede6cef9f84e8d04f/pandas-2.3.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e19d192383eab2f4ceb30b412b22ea30690c9e618f78870357ae1d682912015a", size = 10801217, upload-time = "2025-09-29T23:17:04.522Z" }, + { url = "https://files.pythonhosted.org/packages/1d/03/3fc4a529a7710f890a239cc496fc6d50ad4a0995657dccc1d64695adb9f4/pandas-2.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5caf26f64126b6c7aec964f74266f435afef1c1b13da3b0636c7518a1fa3e2b1", size = 12148791, upload-time = "2025-09-29T23:17:18.444Z" }, + { url = "https://files.pythonhosted.org/packages/40/a8/4dac1f8f8235e5d25b9955d02ff6f29396191d4e665d71122c3722ca83c5/pandas-2.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dd7478f1463441ae4ca7308a70e90b33470fa593429f9d4c578dd00d1fa78838", size = 12769373, upload-time = "2025-09-29T23:17:35.846Z" }, + { url = "https://files.pythonhosted.org/packages/df/91/82cc5169b6b25440a7fc0ef3a694582418d875c8e3ebf796a6d6470aa578/pandas-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4793891684806ae50d1288c9bae9330293ab4e083ccd1c5e383c34549c6e4250", size = 13200444, upload-time = "2025-09-29T23:17:49.341Z" }, + { url = "https://files.pythonhosted.org/packages/10/ae/89b3283800ab58f7af2952704078555fa60c807fff764395bb57ea0b0dbd/pandas-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:28083c648d9a99a5dd035ec125d42439c6c1c525098c58af0fc38dd1a7a1b3d4", size = 13858459, upload-time = "2025-09-29T23:18:03.722Z" }, + { url = "https://files.pythonhosted.org/packages/85/72/530900610650f54a35a19476eca5104f38555afccda1aa11a92ee14cb21d/pandas-2.3.3-cp310-cp310-win_amd64.whl", hash = "sha256:503cf027cf9940d2ceaa1a93cfb5f8c8c7e6e90720a2850378f0b3f3b1e06826", size = 11346086, upload-time = "2025-09-29T23:18:18.505Z" }, +] + +[[package]] +name = "pandocfilters" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/6f/3dd4940bbe001c06a65f88e36bad298bc7a0de5036115639926b0c5c0458/pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e", size = 8454, upload-time = "2024-01-18T20:08:13.726Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc", size = 8663, upload-time = "2024-01-18T20:08:11.28Z" }, +] + +[[package]] +name = "parso" +version = "0.8.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/76/a1e769043c0c0c9fe391b702539d594731a4362334cdf4dc25d0c09761e7/parso-0.8.6.tar.gz", hash = "sha256:2b9a0332696df97d454fa67b81618fd69c35a7b90327cbe6ba5c92d2c68a7bfd", size = 401621, upload-time = "2026-02-09T15:45:24.425Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/61/fae042894f4296ec49e3f193aff5d7c18440da9e48102c3315e1bc4519a7/parso-0.8.6-py2.py3-none-any.whl", hash = "sha256:2c549f800b70a5c4952197248825584cb00f033b29c692671d3bf08bf380baff", size = 106894, upload-time = "2026-02-09T15:45:21.391Z" }, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload-time = "2023-11-25T09:07:26.339Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772, upload-time = "2023-11-25T06:56:14.81Z" }, +] + +[[package]] +name = "pillow" +version = "12.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/21/c2bcdd5906101a30244eaffc1b6e6ce71a31bd0742a01eb89e660ebfac2d/pillow-12.2.0.tar.gz", hash = "sha256:a830b1a40919539d07806aa58e1b114df53ddd43213d9c8b75847eee6c0182b5", size = 46987819, upload-time = "2026-04-01T14:46:17.687Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/aa/d0b28e1c811cd4d5f5c2bfe2e022292bd255ae5744a3b9ac7d6c8f72dd75/pillow-12.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:a4e8f36e677d3336f35089648c8955c51c6d386a13cf6ee9c189c5f5bd713a9f", size = 5354355, upload-time = "2026-04-01T14:42:15.402Z" }, + { url = "https://files.pythonhosted.org/packages/27/8e/1d5b39b8ae2bd7650d0c7b6abb9602d16043ead9ebbfef4bc4047454da2a/pillow-12.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e589959f10d9824d39b350472b92f0ce3b443c0a3442ebf41c40cb8361c5b97", size = 4695871, upload-time = "2026-04-01T14:42:18.234Z" }, + { url = "https://files.pythonhosted.org/packages/f0/c5/dcb7a6ca6b7d3be41a76958e90018d56c8462166b3ef223150360850c8da/pillow-12.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:a52edc8bfff4429aaabdf4d9ee0daadbbf8562364f940937b941f87a4290f5ff", size = 6269734, upload-time = "2026-04-01T14:42:20.608Z" }, + { url = "https://files.pythonhosted.org/packages/ea/f1/aa1bb13b2f4eba914e9637893c73f2af8e48d7d4023b9d3750d4c5eb2d0c/pillow-12.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:975385f4776fafde056abb318f612ef6285b10a1f12b8570f3647ad0d74b48ec", size = 8076080, upload-time = "2026-04-01T14:42:23.095Z" }, + { url = "https://files.pythonhosted.org/packages/a1/2a/8c79d6a53169937784604a8ae8d77e45888c41537f7f6f65ed1f407fe66d/pillow-12.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bd9c0c7a0c681a347b3194c500cb1e6ca9cab053ea4d82a5cf45b6b754560136", size = 6382236, upload-time = "2026-04-01T14:42:25.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/42/bbcb6051030e1e421d103ce7a8ecadf837aa2f39b8f82ef1a8d37c3d4ebc/pillow-12.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:88d387ff40b3ff7c274947ed3125dedf5262ec6919d83946753b5f3d7c67ea4c", size = 7070220, upload-time = "2026-04-01T14:42:28.68Z" }, + { url = "https://files.pythonhosted.org/packages/3f/e1/c2a7d6dd8cfa6b231227da096fd2d58754bab3603b9d73bf609d3c18b64f/pillow-12.2.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:51c4167c34b0d8ba05b547a3bb23578d0ba17b80a5593f93bd8ecb123dd336a3", size = 6493124, upload-time = "2026-04-01T14:42:31.579Z" }, + { url = "https://files.pythonhosted.org/packages/5f/41/7c8617da5d32e1d2f026e509484fdb6f3ad7efaef1749a0c1928adbb099e/pillow-12.2.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:34c0d99ecccea270c04882cb3b86e7b57296079c9a4aff88cb3b33563d95afaa", size = 7194324, upload-time = "2026-04-01T14:42:34.615Z" }, + { url = "https://files.pythonhosted.org/packages/2d/de/a777627e19fd6d62f84070ee1521adde5eeda4855b5cf60fe0b149118bca/pillow-12.2.0-cp310-cp310-win32.whl", hash = "sha256:b85f66ae9eb53e860a873b858b789217ba505e5e405a24b85c0464822fe88032", size = 6376363, upload-time = "2026-04-01T14:42:37.19Z" }, + { url = "https://files.pythonhosted.org/packages/e7/34/fc4cb5204896465842767b96d250c08410f01f2f28afc43b257de842eed5/pillow-12.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:673aa32138f3e7531ccdbca7b3901dba9b70940a19ccecc6a37c77d5fdeb05b5", size = 7083523, upload-time = "2026-04-01T14:42:39.62Z" }, + { url = "https://files.pythonhosted.org/packages/2d/a0/32852d36bc7709f14dc3f64f929a275e958ad8c19a6deba9610d458e28b3/pillow-12.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:3e080565d8d7c671db5802eedfb438e5565ffa40115216eabb8cd52d0ecce024", size = 2463318, upload-time = "2026-04-01T14:42:42.063Z" }, +] + +[[package]] +name = "platformdirs" +version = "4.9.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9f/4a/0883b8e3802965322523f0b200ecf33d31f10991d0401162f4b23c698b42/platformdirs-4.9.6.tar.gz", hash = "sha256:3bfa75b0ad0db84096ae777218481852c0ebc6c727b3168c1b9e0118e458cf0a", size = 29400, upload-time = "2026-04-09T00:04:10.812Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/a6/a0a304dc33b49145b21f4808d763822111e67d1c3a32b524a1baf947b6e1/platformdirs-4.9.6-py3-none-any.whl", hash = "sha256:e61adb1d5e5cb3441b4b7710bea7e4c12250ca49439228cc1021c00dcfac0917", size = 21348, upload-time = "2026-04-09T00:04:09.463Z" }, +] + +[[package]] +name = "pluggy" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, +] + +[[package]] +name = "prometheus-client" +version = "0.25.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/fb/d9aa83ffe43ce1f19e557c0971d04b90561b0cfd50762aafb01968285553/prometheus_client-0.25.0.tar.gz", hash = "sha256:5e373b75c31afb3c86f1a52fa1ad470c9aace18082d39ec0d2f918d11cc9ba28", size = 86035, upload-time = "2026-04-09T19:53:42.359Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/9b/d4b1e644385499c8346fa9b622a3f030dce14cd6ef8a1871c221a17a67e7/prometheus_client-0.25.0-py3-none-any.whl", hash = "sha256:d5aec89e349a6ec230805d0df882f3807f74fd6c1a2fa86864e3c2279059fed1", size = 64154, upload-time = "2026-04-09T19:53:41.324Z" }, +] + +[[package]] +name = "prompt-toolkit" +version = "3.0.52" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/96/06e01a7b38dce6fe1db213e061a4602dd6032a8a97ef6c1a862537732421/prompt_toolkit-3.0.52.tar.gz", hash = "sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855", size = 434198, upload-time = "2025-08-27T15:24:02.057Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/03/0d3ce49e2505ae70cf43bc5bb3033955d2fc9f932163e84dc0779cc47f48/prompt_toolkit-3.0.52-py3-none-any.whl", hash = "sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955", size = 391431, upload-time = "2025-08-27T15:23:59.498Z" }, +] + +[[package]] +name = "propcache" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9e/da/e9fc233cf63743258bff22b3dfa7ea5baef7b5bc324af47a0ad89b8ffc6f/propcache-0.4.1.tar.gz", hash = "sha256:f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d", size = 46442, upload-time = "2025-10-08T19:49:02.291Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/0e/934b541323035566a9af292dba85a195f7b78179114f2c6ebb24551118a9/propcache-0.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7c2d1fa3201efaf55d730400d945b5b3ab6e672e100ba0f9a409d950ab25d7db", size = 79534, upload-time = "2025-10-08T19:46:02.083Z" }, + { url = "https://files.pythonhosted.org/packages/a1/6b/db0d03d96726d995dc7171286c6ba9d8d14251f37433890f88368951a44e/propcache-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1eb2994229cc8ce7fe9b3db88f5465f5fd8651672840b2e426b88cdb1a30aac8", size = 45526, upload-time = "2025-10-08T19:46:03.884Z" }, + { url = "https://files.pythonhosted.org/packages/e4/c3/82728404aea669e1600f304f2609cde9e665c18df5a11cdd57ed73c1dceb/propcache-0.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:66c1f011f45a3b33d7bcb22daed4b29c0c9e2224758b6be00686731e1b46f925", size = 47263, upload-time = "2025-10-08T19:46:05.405Z" }, + { url = "https://files.pythonhosted.org/packages/df/1b/39313ddad2bf9187a1432654c38249bab4562ef535ef07f5eb6eb04d0b1b/propcache-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9a52009f2adffe195d0b605c25ec929d26b36ef986ba85244891dee3b294df21", size = 201012, upload-time = "2025-10-08T19:46:07.165Z" }, + { url = "https://files.pythonhosted.org/packages/5b/01/f1d0b57d136f294a142acf97f4ed58c8e5b974c21e543000968357115011/propcache-0.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5d4e2366a9c7b837555cf02fb9be2e3167d333aff716332ef1b7c3a142ec40c5", size = 209491, upload-time = "2025-10-08T19:46:08.909Z" }, + { url = "https://files.pythonhosted.org/packages/a1/c8/038d909c61c5bb039070b3fb02ad5cccdb1dde0d714792e251cdb17c9c05/propcache-0.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:9d2b6caef873b4f09e26ea7e33d65f42b944837563a47a94719cc3544319a0db", size = 215319, upload-time = "2025-10-08T19:46:10.7Z" }, + { url = "https://files.pythonhosted.org/packages/08/57/8c87e93142b2c1fa2408e45695205a7ba05fb5db458c0bf5c06ba0e09ea6/propcache-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b16ec437a8c8a965ecf95739448dd938b5c7f56e67ea009f4300d8df05f32b7", size = 196856, upload-time = "2025-10-08T19:46:12.003Z" }, + { url = "https://files.pythonhosted.org/packages/42/df/5615fec76aa561987a534759b3686008a288e73107faa49a8ae5795a9f7a/propcache-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:296f4c8ed03ca7476813fe666c9ea97869a8d7aec972618671b33a38a5182ef4", size = 193241, upload-time = "2025-10-08T19:46:13.495Z" }, + { url = "https://files.pythonhosted.org/packages/d5/21/62949eb3a7a54afe8327011c90aca7e03547787a88fb8bd9726806482fea/propcache-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:1f0978529a418ebd1f49dad413a2b68af33f85d5c5ca5c6ca2a3bed375a7ac60", size = 190552, upload-time = "2025-10-08T19:46:14.938Z" }, + { url = "https://files.pythonhosted.org/packages/30/ee/ab4d727dd70806e5b4de96a798ae7ac6e4d42516f030ee60522474b6b332/propcache-0.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fd138803047fb4c062b1c1dd95462f5209456bfab55c734458f15d11da288f8f", size = 200113, upload-time = "2025-10-08T19:46:16.695Z" }, + { url = "https://files.pythonhosted.org/packages/8a/0b/38b46208e6711b016aa8966a3ac793eee0d05c7159d8342aa27fc0bc365e/propcache-0.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:8c9b3cbe4584636d72ff556d9036e0c9317fa27b3ac1f0f558e7e84d1c9c5900", size = 200778, upload-time = "2025-10-08T19:46:18.023Z" }, + { url = "https://files.pythonhosted.org/packages/cf/81/5abec54355ed344476bee711e9f04815d4b00a311ab0535599204eecc257/propcache-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f93243fdc5657247533273ac4f86ae106cc6445a0efacb9a1bfe982fcfefd90c", size = 193047, upload-time = "2025-10-08T19:46:19.449Z" }, + { url = "https://files.pythonhosted.org/packages/ec/b6/1f237c04e32063cb034acd5f6ef34ef3a394f75502e72703545631ab1ef6/propcache-0.4.1-cp310-cp310-win32.whl", hash = "sha256:a0ee98db9c5f80785b266eb805016e36058ac72c51a064040f2bc43b61101cdb", size = 38093, upload-time = "2025-10-08T19:46:20.643Z" }, + { url = "https://files.pythonhosted.org/packages/a6/67/354aac4e0603a15f76439caf0427781bcd6797f370377f75a642133bc954/propcache-0.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:1cdb7988c4e5ac7f6d175a28a9aa0c94cb6f2ebe52756a3c0cda98d2809a9e37", size = 41638, upload-time = "2025-10-08T19:46:21.935Z" }, + { url = "https://files.pythonhosted.org/packages/e0/e1/74e55b9fd1a4c209ff1a9a824bf6c8b3d1fc5a1ac3eabe23462637466785/propcache-0.4.1-cp310-cp310-win_arm64.whl", hash = "sha256:d82ad62b19645419fe79dd63b3f9253e15b30e955c0170e5cebc350c1844e581", size = 38229, upload-time = "2025-10-08T19:46:23.368Z" }, + { url = "https://files.pythonhosted.org/packages/5b/5a/bc7b4a4ef808fa59a816c17b20c4bef6884daebbdf627ff2a161da67da19/propcache-0.4.1-py3-none-any.whl", hash = "sha256:af2a6052aeb6cf17d3e46ee169099044fd8224cbaf75c76a2ef596e8163e2237", size = 13305, upload-time = "2025-10-08T19:49:00.792Z" }, +] + +[[package]] +name = "protobuf" +version = "4.25.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d9/8e/d08c41a8c004e1d437ef467e7c4f9c3295cd784eba48ed5d1d01f94b1dad/protobuf-4.25.9.tar.gz", hash = "sha256:b0dc7e7c68de8b1ce831dacb12fb407e838edbb8b6cc0dc3a2a6b4cbf6de9cff", size = 381040, upload-time = "2026-03-25T23:09:36.423Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/e9/59435bd04bdd46cb38c42a336b22f9843e8e586ff83c35a5423f8b14704e/protobuf-4.25.9-cp310-abi3-win32.whl", hash = "sha256:bde396f568b0b46fc8fbfe9f02facf25b6755b2578a3b8ac61e74b9d69499e03", size = 392879, upload-time = "2026-03-25T23:09:21.32Z" }, + { url = "https://files.pythonhosted.org/packages/f3/16/42a5c7f1001783d2b5bfcecde10127f09010f78982c86ae409122ce3ece6/protobuf-4.25.9-cp310-abi3-win_amd64.whl", hash = "sha256:3683c05154252206f7cb2d371626514b3708199d9bcf683b503dabf3a2e38e06", size = 413900, upload-time = "2026-03-25T23:09:23.589Z" }, + { url = "https://files.pythonhosted.org/packages/56/5b/0074a0a9eb01f3d1c4648ca5e81b22090c811b210b61df9018ac6d6c5cda/protobuf-4.25.9-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:9560813560e6ee72c11ca8873878bdb7ee003c96a57ebb013245fe84e2540904", size = 394826, upload-time = "2026-03-25T23:09:25.194Z" }, + { url = "https://files.pythonhosted.org/packages/54/aa/b2dba856f64c36b2a06c67be1472de98cca07a2322d0f0cbf03279a40e5b/protobuf-4.25.9-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:999146ef02e7fa6a692477badd1528bcd7268df211852a3df2d834ba2b480791", size = 294191, upload-time = "2026-03-25T23:09:26.613Z" }, + { url = "https://files.pythonhosted.org/packages/a8/5c/53f18822017b8bda6bd8bb4e02048e911fdc79a3dafdc83ab994fe922a84/protobuf-4.25.9-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:438c636de8fb706a0de94a12a268ef1ae8f5ba5ae655a7671fcda5968ba3c9be", size = 295178, upload-time = "2026-03-25T23:09:27.839Z" }, + { url = "https://files.pythonhosted.org/packages/16/28/d5065b212685875d3924bcdb3201cbf467cb4d58a18aa19a8dfd99ea80a9/protobuf-4.25.9-py3-none-any.whl", hash = "sha256:d49b615e7c935194ac161f0965699ac84df6112c378e05ec53da65d2e4cbb6d4", size = 156822, upload-time = "2026-03-25T23:09:34.957Z" }, +] + +[[package]] +name = "psutil" +version = "7.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/c6/d1ddf4abb55e93cebc4f2ed8b5d6dbad109ecb8d63748dd2b20ab5e57ebe/psutil-7.2.2.tar.gz", hash = "sha256:0746f5f8d406af344fd547f1c8daa5f5c33dbc293bb8d6a16d80b4bb88f59372", size = 493740, upload-time = "2026-01-28T18:14:54.428Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/36/5ee6e05c9bd427237b11b3937ad82bb8ad2752d72c6969314590dd0c2f6e/psutil-7.2.2-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ed0cace939114f62738d808fdcecd4c869222507e266e574799e9c0faa17d486", size = 129090, upload-time = "2026-01-28T18:15:22.168Z" }, + { url = "https://files.pythonhosted.org/packages/80/c4/f5af4c1ca8c1eeb2e92ccca14ce8effdeec651d5ab6053c589b074eda6e1/psutil-7.2.2-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:1a7b04c10f32cc88ab39cbf606e117fd74721c831c98a27dc04578deb0c16979", size = 129859, upload-time = "2026-01-28T18:15:23.795Z" }, + { url = "https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9", size = 155560, upload-time = "2026-01-28T18:15:25.976Z" }, + { url = "https://files.pythonhosted.org/packages/63/65/37648c0c158dc222aba51c089eb3bdfa238e621674dc42d48706e639204f/psutil-7.2.2-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b0726cecd84f9474419d67252add4ac0cd9811b04d61123054b9fb6f57df6e9e", size = 156997, upload-time = "2026-01-28T18:15:27.794Z" }, + { url = "https://files.pythonhosted.org/packages/8e/13/125093eadae863ce03c6ffdbae9929430d116a246ef69866dad94da3bfbc/psutil-7.2.2-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fd04ef36b4a6d599bbdb225dd1d3f51e00105f6d48a28f006da7f9822f2606d8", size = 148972, upload-time = "2026-01-28T18:15:29.342Z" }, + { url = "https://files.pythonhosted.org/packages/04/78/0acd37ca84ce3ddffaa92ef0f571e073faa6d8ff1f0559ab1272188ea2be/psutil-7.2.2-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b58fabe35e80b264a4e3bb23e6b96f9e45a3df7fb7eed419ac0e5947c61e47cc", size = 148266, upload-time = "2026-01-28T18:15:31.597Z" }, + { url = "https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl", hash = "sha256:eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988", size = 137737, upload-time = "2026-01-28T18:15:33.849Z" }, + { url = "https://files.pythonhosted.org/packages/8c/c7/7bb2e321574b10df20cbde462a94e2b71d05f9bbda251ef27d104668306a/psutil-7.2.2-cp37-abi3-win_arm64.whl", hash = "sha256:8c233660f575a5a89e6d4cb65d9f938126312bca76d8fe087b947b3a1aaac9ee", size = 134617, upload-time = "2026-01-28T18:15:36.514Z" }, +] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762, upload-time = "2020-12-28T15:15:30.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993, upload-time = "2020-12-28T15:15:28.35Z" }, +] + +[[package]] +name = "pure-eval" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752, upload-time = "2024-07-21T12:58:21.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842, upload-time = "2024-07-21T12:58:20.04Z" }, +] + +[[package]] +name = "py4j" +version = "0.10.9.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/38/31/0b210511177070c8d5d3059556194352e5753602fa64b85b7ab81ec1a009/py4j-0.10.9.9.tar.gz", hash = "sha256:f694cad19efa5bd1dee4f3e5270eb406613c974394035e5bfc4ec1aba870b879", size = 761089, upload-time = "2025-01-15T03:53:18.624Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/db/ea0203e495be491c85af87b66e37acfd3bf756fd985f87e46fc5e3bf022c/py4j-0.10.9.9-py2.py3-none-any.whl", hash = "sha256:c7c26e4158defb37b0bb124933163641a2ff6e3a3913f7811b0ddbe07ed61533", size = 203008, upload-time = "2025-01-15T03:53:15.648Z" }, +] + +[[package]] +name = "pyarrow" +version = "23.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/88/22/134986a4cc224d593c1afde5494d18ff629393d74cc2eddb176669f234a4/pyarrow-23.0.1.tar.gz", hash = "sha256:b8c5873e33440b2bc2f4a79d2b47017a89c5a24116c055625e6f2ee50523f019", size = 1167336, upload-time = "2026-02-16T10:14:12.39Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/a8/24e5dc6855f50a62936ceb004e6e9645e4219a8065f304145d7fb8a79d5d/pyarrow-23.0.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3fab8f82571844eb3c460f90a75583801d14ca0cc32b1acc8c361650e006fd56", size = 34307390, upload-time = "2026-02-16T10:08:08.654Z" }, + { url = "https://files.pythonhosted.org/packages/bc/8e/4be5617b4aaae0287f621ad31c6036e5f63118cfca0dc57d42121ff49b51/pyarrow-23.0.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:3f91c038b95f71ddfc865f11d5876c42f343b4495535bd262c7b321b0b94507c", size = 35853761, upload-time = "2026-02-16T10:08:17.811Z" }, + { url = "https://files.pythonhosted.org/packages/2e/08/3e56a18819462210432ae37d10f5c8eed3828be1d6c751b6e6a2e93c286a/pyarrow-23.0.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:d0744403adabef53c985a7f8a082b502a368510c40d184df349a0a8754533258", size = 44493116, upload-time = "2026-02-16T10:08:25.792Z" }, + { url = "https://files.pythonhosted.org/packages/f8/82/c40b68001dbec8a3faa4c08cd8c200798ac732d2854537c5449dc859f55a/pyarrow-23.0.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c33b5bf406284fd0bba436ed6f6c3ebe8e311722b441d89397c54f871c6863a2", size = 47564532, upload-time = "2026-02-16T10:08:34.27Z" }, + { url = "https://files.pythonhosted.org/packages/20/bc/73f611989116b6f53347581b02177f9f620efdf3cd3f405d0e83cdf53a83/pyarrow-23.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ddf743e82f69dcd6dbbcb63628895d7161e04e56794ef80550ac6f3315eeb1d5", size = 48183685, upload-time = "2026-02-16T10:08:42.889Z" }, + { url = "https://files.pythonhosted.org/packages/b0/cc/6c6b3ecdae2a8c3aced99956187e8302fc954cc2cca2a37cf2111dad16ce/pyarrow-23.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e052a211c5ac9848ae15d5ec875ed0943c0221e2fcfe69eee80b604b4e703222", size = 50605582, upload-time = "2026-02-16T10:08:51.641Z" }, + { url = "https://files.pythonhosted.org/packages/8d/94/d359e708672878d7638a04a0448edf7c707f9e5606cee11e15aaa5c7535a/pyarrow-23.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:5abde149bb3ce524782d838eb67ac095cd3fd6090eba051130589793f1a7f76d", size = 27521148, upload-time = "2026-02-16T10:08:58.077Z" }, +] + +[[package]] +name = "pyasn1" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5c/5f/6583902b6f79b399c9c40674ac384fd9cd77805f9e6205075f828ef11fb2/pyasn1-0.6.3.tar.gz", hash = "sha256:697a8ecd6d98891189184ca1fa05d1bb00e2f84b5977c481452050549c8a72cf", size = 148685, upload-time = "2026-03-17T01:06:53.382Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/a0/7d793dce3fa811fe047d6ae2431c672364b462850c6235ae306c0efd025f/pyasn1-0.6.3-py3-none-any.whl", hash = "sha256:a80184d120f0864a52a073acc6fc642847d0be408e7c7252f31390c0f4eadcde", size = 83997, upload-time = "2026-03-17T01:06:52.036Z" }, +] + +[[package]] +name = "pyasn1-modules" +version = "0.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e9/e6/78ebbb10a8c8e4b61a59249394a4a594c1a7af95593dc933a349c8d00964/pyasn1_modules-0.4.2.tar.gz", hash = "sha256:677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6", size = 307892, upload-time = "2025-03-28T02:41:22.17Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/8d/d529b5d697919ba8c11ad626e835d4039be708a35b0d22de83a269a6682c/pyasn1_modules-0.4.2-py3-none-any.whl", hash = "sha256:29253a9207ce32b64c3ac6600edc75368f98473906e8fd1043bd6b5b1de2c14a", size = 181259, upload-time = "2025-03-28T02:41:19.028Z" }, +] + +[[package]] +name = "pycparser" +version = "3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, +] + +[[package]] +name = "pydantic" +version = "1.10.26" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7b/da/fd89f987a376c807cd81ea0eff4589aade783bbb702637b4734ef2c743a2/pydantic-1.10.26.tar.gz", hash = "sha256:8c6aa39b494c5af092e690127c283d84f363ac36017106a9e66cb33a22ac412e", size = 357906, upload-time = "2025-12-18T15:47:46.557Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/08/2587a6d4314e7539eec84acd062cb7b037638edb57a0335d20e4c5b8878c/pydantic-1.10.26-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f7ae36fa0ecef8d39884120f212e16c06bb096a38f523421278e2f39c1784546", size = 2444588, upload-time = "2025-12-18T15:46:28.882Z" }, + { url = "https://files.pythonhosted.org/packages/47/e6/10df5f08c105bcbb4adbee7d1108ff4b347702b110fed058f6a03f1c6b73/pydantic-1.10.26-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d95a76cf503f0f72ed7812a91de948440b2bf564269975738a4751e4fadeb572", size = 2255972, upload-time = "2025-12-18T15:46:31.72Z" }, + { url = "https://files.pythonhosted.org/packages/ba/7d/fdb961e7adc2c31f394feba6f560ef2c74c446f0285e2c2eb87d2b7206c7/pydantic-1.10.26-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a943ce8e00ad708ed06a1d9df5b4fd28f5635a003b82a4908ece6f24c0b18464", size = 2857175, upload-time = "2025-12-18T15:46:34Z" }, + { url = "https://files.pythonhosted.org/packages/8f/6c/f21e27dda475d4c562bd01b5874284dd3180f336c1e669413b743ca8b278/pydantic-1.10.26-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:465ad8edb29b15c10b779b16431fe8e77c380098badf6db367b7a1d3e572cf53", size = 2947001, upload-time = "2025-12-18T15:46:35.922Z" }, + { url = "https://files.pythonhosted.org/packages/6d/f6/27ea206232cbb6ec24dc4e4e8888a9a734f96a1eaf13504be4b30ef26aa7/pydantic-1.10.26-cp310-cp310-win_amd64.whl", hash = "sha256:80e6be6272839c8a7641d26ad569ab77772809dd78f91d0068dc0fc97f071945", size = 2066217, upload-time = "2025-12-18T15:46:37.614Z" }, + { url = "https://files.pythonhosted.org/packages/1f/98/556e82f00b98486def0b8af85da95e69d2be7e367cf2431408e108bc3095/pydantic-1.10.26-py3-none-any.whl", hash = "sha256:c43ad70dc3ce7787543d563792426a16fd7895e14be4b194b5665e36459dd917", size = 166975, upload-time = "2025-12-18T15:47:44.927Z" }, +] + +[[package]] +name = "pygments" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/b2/bc9c9196916376152d655522fdcebac55e66de6603a76a02bca1b6414f6c/pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f", size = 4955991, upload-time = "2026-03-29T13:29:33.898Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" }, +] + +[[package]] +name = "pynndescent" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "llvmlite" }, + { name = "numba" }, + { name = "scikit-learn" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4a/fb/7f58c397fb31666756457ee2ac4c0289ef2daad57f4ae4be8dec12f80b03/pynndescent-0.6.0.tar.gz", hash = "sha256:7ffde0fb5b400741e055a9f7d377e3702e02250616834231f6c209e39aac24f5", size = 2992987, upload-time = "2026-01-08T21:29:58.943Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b2/e6/94145d714402fd5ade00b5661f2d0ab981219e07f7db9bfa16786cdb9c04/pynndescent-0.6.0-py3-none-any.whl", hash = "sha256:dc8c74844e4c7f5cbd1e0cd6909da86fdc789e6ff4997336e344779c3d5538ef", size = 73511, upload-time = "2026-01-08T21:29:57.306Z" }, +] + +[[package]] +name = "pyogrio" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "numpy" }, + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/49/d4/12f86b1ed09721363da4c09622464b604c851a9223fc0c6b393fb2012208/pyogrio-0.12.1.tar.gz", hash = "sha256:e548ab705bb3e5383693717de1e6c76da97f3762ab92522cb310f93128a75ff1", size = 303289, upload-time = "2025-11-28T19:04:53.341Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/04/e69f476c4cc279adc6d26194da4d3497f5d9efdd46777a6c0ad59c09233f/pyogrio-0.12.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:5c4735235ca0d8dcdb4ecd69bd73e66762d161bce913b10d4458a18137cc7062", size = 23672707, upload-time = "2025-11-28T19:02:54.87Z" }, + { url = "https://files.pythonhosted.org/packages/a3/9e/805d640f050fc4a064ee5ba3289457f47d7f3464b57140caa8ddac039a67/pyogrio-0.12.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:3249d06c2520857b622f3ff0f1b7b4849291ee1fb72f21587825f5fd0f24b787", size = 25247903, upload-time = "2025-11-28T19:02:57.756Z" }, + { url = "https://files.pythonhosted.org/packages/05/c3/65577611485bc3e53a466ffbcd2407f89e8bd7e1c4554e8a0d23a4b8a636/pyogrio-0.12.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f4011b63f9d6c278ee6605971ffabe30b0e8f5992ec2c6df8c70ecfa68a5d02b", size = 31279563, upload-time = "2025-11-28T19:03:00.344Z" }, + { url = "https://files.pythonhosted.org/packages/b1/a6/5c03dffaf02542e8bae6c785d3e302bf4b890cd2ab281336b3c4dc867f84/pyogrio-0.12.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:940857c45051e1e19608ebfe8338bcdf7dd005389057431a3c7b5bff5beb0a5f", size = 30831678, upload-time = "2025-11-28T19:03:03.234Z" }, + { url = "https://files.pythonhosted.org/packages/c8/aa/0e484c13cf14bbe46c366ad363ab2406242a0fba85a7561d42bbd34c35dd/pyogrio-0.12.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:0fd86bcd69126739325a543a489f312b5fd86db092d2dead682772ae4ee434f3", size = 32380362, upload-time = "2025-11-28T19:03:06.098Z" }, + { url = "https://files.pythonhosted.org/packages/7a/7c/cc515005780235d9ab14a29d33868bcaa1d5b423cee7995dda94735c41dd/pyogrio-0.12.1-cp310-cp310-win_amd64.whl", hash = "sha256:dcf9cca273ead32beba7c002dd3db8a304105f52dd66200d48fa1ef30d0676af", size = 22940628, upload-time = "2025-11-28T19:03:08.568Z" }, +] + +[[package]] +name = "pyparsing" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/91/9c6ee907786a473bf81c5f53cf703ba0957b23ab84c264080fb5a450416f/pyparsing-3.3.2.tar.gz", hash = "sha256:c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc", size = 6851574, upload-time = "2026-01-21T03:57:59.36Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl", hash = "sha256:850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d", size = 122781, upload-time = "2026-01-21T03:57:55.912Z" }, +] + +[[package]] +name = "pyproj" +version = "3.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/10/a8480ea27ea4bbe896c168808854d00f2a9b49f95c0319ddcbba693c8a90/pyproj-3.7.1.tar.gz", hash = "sha256:60d72facd7b6b79853f19744779abcd3f804c4e0d4fa8815469db20c9f640a47", size = 226339, upload-time = "2025-02-16T04:28:46.621Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/a3/c4cd4bba5b336075f145fe784fcaf4ef56ffbc979833303303e7a659dda2/pyproj-3.7.1-cp310-cp310-macosx_13_0_x86_64.whl", hash = "sha256:bf09dbeb333c34e9c546364e7df1ff40474f9fddf9e70657ecb0e4f670ff0b0e", size = 6262524, upload-time = "2025-02-16T04:27:19.725Z" }, + { url = "https://files.pythonhosted.org/packages/40/45/4fdf18f4cc1995f1992771d2a51cf186a9d7a8ec973c9693f8453850c707/pyproj-3.7.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:6575b2e53cc9e3e461ad6f0692a5564b96e7782c28631c7771c668770915e169", size = 4665102, upload-time = "2025-02-16T04:27:24.428Z" }, + { url = "https://files.pythonhosted.org/packages/0c/d2/360eb127380106cee83569954ae696b88a891c804d7a93abe3fbc15f5976/pyproj-3.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cb516ee35ed57789b46b96080edf4e503fdb62dbb2e3c6581e0d6c83fca014b", size = 9432667, upload-time = "2025-02-16T04:27:27.04Z" }, + { url = "https://files.pythonhosted.org/packages/76/a5/c6e11b9a99ce146741fb4d184d5c468446c6d6015b183cae82ac822a6cfa/pyproj-3.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e47c4e93b88d99dd118875ee3ca0171932444cdc0b52d493371b5d98d0f30ee", size = 9259185, upload-time = "2025-02-16T04:27:30.35Z" }, + { url = "https://files.pythonhosted.org/packages/41/56/a3c15c42145797a99363fa0fdb4e9805dccb8b4a76a6d7b2cdf36ebcc2a1/pyproj-3.7.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3e8d276caeae34fcbe4813855d0d97b9b825bab8d7a8b86d859c24a6213a5a0d", size = 10469103, upload-time = "2025-02-16T04:27:33.542Z" }, + { url = "https://files.pythonhosted.org/packages/ef/73/c9194c2802fefe2a4fd4230bdd5ab083e7604e93c64d0356fa49c363bad6/pyproj-3.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f173f851ee75e54acdaa053382b6825b400cb2085663a9bb073728a59c60aebb", size = 10401391, upload-time = "2025-02-16T04:27:36.051Z" }, + { url = "https://files.pythonhosted.org/packages/c5/1d/ce8bb5b9251b04d7c22d63619bb3db3d2397f79000a9ae05b3fd86a5837e/pyproj-3.7.1-cp310-cp310-win32.whl", hash = "sha256:f550281ed6e5ea88fcf04a7c6154e246d5714be495c50c9e8e6b12d3fb63e158", size = 5869997, upload-time = "2025-02-16T04:27:38.302Z" }, + { url = "https://files.pythonhosted.org/packages/09/6a/ca145467fd2e5b21e3d5b8c2b9645dcfb3b68f08b62417699a1f5689008e/pyproj-3.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:3537668992a709a2e7f068069192138618c00d0ba113572fdd5ee5ffde8222f3", size = 6278581, upload-time = "2025-02-16T04:27:41.051Z" }, +] + +[[package]] +name = "pyreadline3" +version = "3.5.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/49/4cea918a08f02817aabae639e3d0ac046fef9f9180518a3ad394e22da148/pyreadline3-3.5.4.tar.gz", hash = "sha256:8d57d53039a1c75adba8e50dd3d992b28143480816187ea5efbd5c78e6c885b7", size = 99839, upload-time = "2024-09-19T02:40:10.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/dc/491b7661614ab97483abf2056be1deee4dc2490ecbf7bff9ab5cdbac86e1/pyreadline3-3.5.4-py3-none-any.whl", hash = "sha256:eaf8e6cc3c49bcccf145fc6067ba8643d1df34d604a1ec0eccbf7a18e6d3fae6", size = 83178, upload-time = "2024-09-19T02:40:08.598Z" }, +] + +[[package]] +name = "pytest" +version = "9.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "exceptiongroup" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, + { name = "tomli" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/0d/549bd94f1a0a402dc8cf64563a117c0f3765662e2e668477624baeec44d5/pytest-9.0.3.tar.gz", hash = "sha256:b86ada508af81d19edeb213c681b1d48246c1a91d304c6c81a427674c17eb91c", size = 1572165, upload-time = "2026-04-07T17:16:18.027Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/24/a372aaf5c9b7208e7112038812994107bc65a84cd00e0354a88c2c77a617/pytest-9.0.3-py3-none-any.whl", hash = "sha256:2c5efc453d45394fdd706ade797c0a81091eccd1d6e4bccfcd476e2b8e0ab5d9", size = 375249, upload-time = "2026-04-07T17:16:16.13Z" }, +] + +[[package]] +name = "pytest-cov" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coverage", extra = ["toml"] }, + { name = "pluggy" }, + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/51/a849f96e117386044471c8ec2bd6cfebacda285da9525c9106aeb28da671/pytest_cov-7.1.0.tar.gz", hash = "sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2", size = 55592, upload-time = "2026-03-21T20:11:16.284Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/7a/d968e294073affff457b041c2be9868a40c1c71f4a35fcc1e45e5493067b/pytest_cov-7.1.0-py3-none-any.whl", hash = "sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678", size = 22876, upload-time = "2026-03-21T20:11:14.438Z" }, +] + +[[package]] +name = "pytest-mock" +version = "3.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/68/14/eb014d26be205d38ad5ad20d9a80f7d201472e08167f0bb4361e251084a9/pytest_mock-3.15.1.tar.gz", hash = "sha256:1849a238f6f396da19762269de72cb1814ab44416fa73a8686deac10b0d87a0f", size = 34036, upload-time = "2025-09-16T16:37:27.081Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/cc/06253936f4a7fa2e0f48dfe6d851d9c56df896a9ab09ac019d70b760619c/pytest_mock-3.15.1-py3-none-any.whl", hash = "sha256:0a25e2eb88fe5168d535041d09a4529a188176ae608a6d249ee65abc0949630d", size = 10095, upload-time = "2025-09-16T16:37:25.734Z" }, +] + +[[package]] +name = "pytest-xdist" +version = "3.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "execnet" }, + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/78/b4/439b179d1ff526791eb921115fca8e44e596a13efeda518b9d845a619450/pytest_xdist-3.8.0.tar.gz", hash = "sha256:7e578125ec9bc6050861aa93f2d59f1d8d085595d6551c2c90b6f4fad8d3a9f1", size = 88069, upload-time = "2025-07-01T13:30:59.346Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/31/d4e37e9e550c2b92a9cbc2e4d0b7420a27224968580b5a447f420847c975/pytest_xdist-3.8.0-py3-none-any.whl", hash = "sha256:202ca578cfeb7370784a8c33d6d05bc6e13b4f25b5053c30a152269fd10f0b88", size = 46396, upload-time = "2025-07-01T13:30:56.632Z" }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, +] + +[[package]] +name = "python-json-logger" +version = "4.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/ff/3cc9165fd44106973cd7ac9facb674a65ed853494592541d339bdc9a30eb/python_json_logger-4.1.0.tar.gz", hash = "sha256:b396b9e3ed782b09ff9d6e4f1683d46c83ad0d35d2e407c09a9ebbf038f88195", size = 17573, upload-time = "2026-03-29T04:39:56.805Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/be/0631a861af4d1c875f096c07d34e9a63639560a717130e7a87cbc82b7e3f/python_json_logger-4.1.0-py3-none-any.whl", hash = "sha256:132994765cf75bf44554be9aa49b06ef2345d23661a96720262716438141b6b2", size = 15021, upload-time = "2026-03-29T04:39:55.266Z" }, +] + +[[package]] +name = "pytorch-lightning" +version = "2.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fsspec", extra = ["http"] }, + { name = "lightning-utilities" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "torch" }, + { name = "torchmetrics" }, + { name = "tqdm" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8b/ac/ebd5f6f58691cbd4f73836e43e1727f3814311b960c41f88e259606ca2b2/pytorch_lightning-2.6.1.tar.gz", hash = "sha256:ba08f8901cf226fcca473046ad9346f414e99117762dc869c76e650d5b3d7bdc", size = 665563, upload-time = "2026-01-30T14:59:11.636Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/93/c8c361bf0a2fe50f828f32def460e8b8a14b93955d3fd302b1a9b63b19e4/pytorch_lightning-2.6.1-py3-none-any.whl", hash = "sha256:1f8118567ec829e3055f16cf1aa320883a86a47c836951bfd9dcfa34ec7ffd59", size = 857273, upload-time = "2026-01-30T14:59:10.141Z" }, +] + +[[package]] +name = "pytz" +version = "2026.1.post1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/56/db/b8721d71d945e6a8ac63c0fc900b2067181dbb50805958d4d4661cf7d277/pytz-2026.1.post1.tar.gz", hash = "sha256:3378dde6a0c3d26719182142c56e60c7f9af7e968076f31aae569d72a0358ee1", size = 321088, upload-time = "2026-03-03T07:47:50.683Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/99/781fe0c827be2742bcc775efefccb3b048a3a9c6ce9aec0cbf4a101677e5/pytz-2026.1.post1-py2.py3-none-any.whl", hash = "sha256:f2fd16142fda348286a75e1a524be810bb05d444e5a081f37f7affc635035f7a", size = 510489, upload-time = "2026-03-03T07:47:49.167Z" }, +] + +[[package]] +name = "pywinpty" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/54/37c7370ba91f579235049dc26cd2c5e657d2a943e01820844ffc81f32176/pywinpty-3.0.3.tar.gz", hash = "sha256:523441dc34d231fb361b4b00f8c99d3f16de02f5005fd544a0183112bcc22412", size = 31309, upload-time = "2026-02-04T21:51:09.524Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/28/a652709bd76ca7533cd1c443b03add9f5051fdf71bc6bdb8801dddd4e7a3/pywinpty-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:ff05f12d775b142b11c6fe085129bdd759b61cf7d41da6c745e78e3a1ef5bf40", size = 2114320, upload-time = "2026-02-04T21:53:50.972Z" }, + { url = "https://files.pythonhosted.org/packages/b2/13/a0181cc5c2d5635d3dbc3802b97bc8e3ad4fa7502ccef576651a5e08e54c/pywinpty-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:340ccacb4d74278a631923794ccd758471cfc8eeeeee4610b280420a17ad1e82", size = 235670, upload-time = "2026-02-04T21:50:20.324Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/a0/39350dd17dd6d6c6507025c0e53aef67a9293a6d37d3511f23ea510d5800/pyyaml-6.0.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:214ed4befebe12df36bcc8bc2b64b396ca31be9304b8f59e25c11cf94a4c033b", size = 184227, upload-time = "2025-09-25T21:31:46.04Z" }, + { url = "https://files.pythonhosted.org/packages/05/14/52d505b5c59ce73244f59c7a50ecf47093ce4765f116cdb98286a71eeca2/pyyaml-6.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02ea2dfa234451bbb8772601d7b8e426c2bfa197136796224e50e35a78777956", size = 174019, upload-time = "2025-09-25T21:31:47.706Z" }, + { url = "https://files.pythonhosted.org/packages/43/f7/0e6a5ae5599c838c696adb4e6330a59f463265bfa1e116cfd1fbb0abaaae/pyyaml-6.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b30236e45cf30d2b8e7b3e85881719e98507abed1011bf463a8fa23e9c3e98a8", size = 740646, upload-time = "2025-09-25T21:31:49.21Z" }, + { url = "https://files.pythonhosted.org/packages/2f/3a/61b9db1d28f00f8fd0ae760459a5c4bf1b941baf714e207b6eb0657d2578/pyyaml-6.0.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:66291b10affd76d76f54fad28e22e51719ef9ba22b29e1d7d03d6777a9174198", size = 840793, upload-time = "2025-09-25T21:31:50.735Z" }, + { url = "https://files.pythonhosted.org/packages/7a/1e/7acc4f0e74c4b3d9531e24739e0ab832a5edf40e64fbae1a9c01941cabd7/pyyaml-6.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9c7708761fccb9397fe64bbc0395abcae8c4bf7b0eac081e12b809bf47700d0b", size = 770293, upload-time = "2025-09-25T21:31:51.828Z" }, + { url = "https://files.pythonhosted.org/packages/8b/ef/abd085f06853af0cd59fa5f913d61a8eab65d7639ff2a658d18a25d6a89d/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:418cf3f2111bc80e0933b2cd8cd04f286338bb88bdc7bc8e6dd775ebde60b5e0", size = 732872, upload-time = "2025-09-25T21:31:53.282Z" }, + { url = "https://files.pythonhosted.org/packages/1f/15/2bc9c8faf6450a8b3c9fc5448ed869c599c0a74ba2669772b1f3a0040180/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e0b74767e5f8c593e8c9b5912019159ed0533c70051e9cce3e8b6aa699fcd69", size = 758828, upload-time = "2025-09-25T21:31:54.807Z" }, + { url = "https://files.pythonhosted.org/packages/a3/00/531e92e88c00f4333ce359e50c19b8d1de9fe8d581b1534e35ccfbc5f393/pyyaml-6.0.3-cp310-cp310-win32.whl", hash = "sha256:28c8d926f98f432f88adc23edf2e6d4921ac26fb084b028c733d01868d19007e", size = 142415, upload-time = "2025-09-25T21:31:55.885Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fa/926c003379b19fca39dd4634818b00dec6c62d87faf628d1394e137354d4/pyyaml-6.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:bdb2c67c6c1390b63c6ff89f210c8fd09d9a1217a465701eac7316313c915e4c", size = 158561, upload-time = "2025-09-25T21:31:57.406Z" }, +] + +[[package]] +name = "pyzmq" +version = "27.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "implementation_name == 'pypy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/0b/3c9baedbdf613ecaa7aa07027780b8867f57b6293b6ee50de316c9f3222b/pyzmq-27.1.0.tar.gz", hash = "sha256:ac0765e3d44455adb6ddbf4417dcce460fc40a05978c08efdf2948072f6db540", size = 281750, upload-time = "2025-09-08T23:10:18.157Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/b9/52aa9ec2867528b54f1e60846728d8b4d84726630874fee3a91e66c7df81/pyzmq-27.1.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:508e23ec9bc44c0005c4946ea013d9317ae00ac67778bd47519fdf5a0e930ff4", size = 1329850, upload-time = "2025-09-08T23:07:26.274Z" }, + { url = "https://files.pythonhosted.org/packages/99/64/5653e7b7425b169f994835a2b2abf9486264401fdef18df91ddae47ce2cc/pyzmq-27.1.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:507b6f430bdcf0ee48c0d30e734ea89ce5567fd7b8a0f0044a369c176aa44556", size = 906380, upload-time = "2025-09-08T23:07:29.78Z" }, + { url = "https://files.pythonhosted.org/packages/73/78/7d713284dbe022f6440e391bd1f3c48d9185673878034cfb3939cdf333b2/pyzmq-27.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bf7b38f9fd7b81cb6d9391b2946382c8237fd814075c6aa9c3b746d53076023b", size = 666421, upload-time = "2025-09-08T23:07:31.263Z" }, + { url = "https://files.pythonhosted.org/packages/30/76/8f099f9d6482450428b17c4d6b241281af7ce6a9de8149ca8c1c649f6792/pyzmq-27.1.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:03ff0b279b40d687691a6217c12242ee71f0fba28bf8626ff50e3ef0f4410e1e", size = 854149, upload-time = "2025-09-08T23:07:33.17Z" }, + { url = "https://files.pythonhosted.org/packages/59/f0/37fbfff06c68016019043897e4c969ceab18bde46cd2aca89821fcf4fb2e/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:677e744fee605753eac48198b15a2124016c009a11056f93807000ab11ce6526", size = 1655070, upload-time = "2025-09-08T23:07:35.205Z" }, + { url = "https://files.pythonhosted.org/packages/47/14/7254be73f7a8edc3587609554fcaa7bfd30649bf89cd260e4487ca70fdaa/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd2fec2b13137416a1c5648b7009499bcc8fea78154cd888855fa32514f3dad1", size = 2033441, upload-time = "2025-09-08T23:07:37.432Z" }, + { url = "https://files.pythonhosted.org/packages/22/dc/49f2be26c6f86f347e796a4d99b19167fc94503f0af3fd010ad262158822/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:08e90bb4b57603b84eab1d0ca05b3bbb10f60c1839dc471fc1c9e1507bef3386", size = 1891529, upload-time = "2025-09-08T23:07:39.047Z" }, + { url = "https://files.pythonhosted.org/packages/a3/3e/154fb963ae25be70c0064ce97776c937ecc7d8b0259f22858154a9999769/pyzmq-27.1.0-cp310-cp310-win32.whl", hash = "sha256:a5b42d7a0658b515319148875fcb782bbf118dd41c671b62dae33666c2213bda", size = 567276, upload-time = "2025-09-08T23:07:40.695Z" }, + { url = "https://files.pythonhosted.org/packages/62/b2/f4ab56c8c595abcb26b2be5fd9fa9e6899c1e5ad54964e93ae8bb35482be/pyzmq-27.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:c0bb87227430ee3aefcc0ade2088100e528d5d3298a0a715a64f3d04c60ba02f", size = 632208, upload-time = "2025-09-08T23:07:42.298Z" }, + { url = "https://files.pythonhosted.org/packages/3b/e3/be2cc7ab8332bdac0522fdb64c17b1b6241a795bee02e0196636ec5beb79/pyzmq-27.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:9a916f76c2ab8d045b19f2286851a38e9ac94ea91faf65bd64735924522a8b32", size = 559766, upload-time = "2025-09-08T23:07:43.869Z" }, + { url = "https://files.pythonhosted.org/packages/92/e7/038aab64a946d535901103da16b953c8c9cc9c961dadcbf3609ed6428d23/pyzmq-27.1.0-cp312-abi3-macosx_10_15_universal2.whl", hash = "sha256:452631b640340c928fa343801b0d07eb0c3789a5ffa843f6e1a9cee0ba4eb4fc", size = 1306279, upload-time = "2025-09-08T23:08:03.807Z" }, + { url = "https://files.pythonhosted.org/packages/e8/5e/c3c49fdd0f535ef45eefcc16934648e9e59dace4a37ee88fc53f6cd8e641/pyzmq-27.1.0-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1c179799b118e554b66da67d88ed66cd37a169f1f23b5d9f0a231b4e8d44a113", size = 895645, upload-time = "2025-09-08T23:08:05.301Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e5/b0b2504cb4e903a74dcf1ebae157f9e20ebb6ea76095f6cfffea28c42ecd/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3837439b7f99e60312f0c926a6ad437b067356dc2bc2ec96eb395fd0fe804233", size = 652574, upload-time = "2025-09-08T23:08:06.828Z" }, + { url = "https://files.pythonhosted.org/packages/f8/9b/c108cdb55560eaf253f0cbdb61b29971e9fb34d9c3499b0e96e4e60ed8a5/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43ad9a73e3da1fab5b0e7e13402f0b2fb934ae1c876c51d0afff0e7c052eca31", size = 840995, upload-time = "2025-09-08T23:08:08.396Z" }, + { url = "https://files.pythonhosted.org/packages/c2/bb/b79798ca177b9eb0825b4c9998c6af8cd2a7f15a6a1a4272c1d1a21d382f/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:0de3028d69d4cdc475bfe47a6128eb38d8bc0e8f4d69646adfbcd840facbac28", size = 1642070, upload-time = "2025-09-08T23:08:09.989Z" }, + { url = "https://files.pythonhosted.org/packages/9c/80/2df2e7977c4ede24c79ae39dcef3899bfc5f34d1ca7a5b24f182c9b7a9ca/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_i686.whl", hash = "sha256:cf44a7763aea9298c0aa7dbf859f87ed7012de8bda0f3977b6fb1d96745df856", size = 2021121, upload-time = "2025-09-08T23:08:11.907Z" }, + { url = "https://files.pythonhosted.org/packages/46/bd/2d45ad24f5f5ae7e8d01525eb76786fa7557136555cac7d929880519e33a/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:f30f395a9e6fbca195400ce833c731e7b64c3919aa481af4d88c3759e0cb7496", size = 1878550, upload-time = "2025-09-08T23:08:13.513Z" }, + { url = "https://files.pythonhosted.org/packages/e6/2f/104c0a3c778d7c2ab8190e9db4f62f0b6957b53c9d87db77c284b69f33ea/pyzmq-27.1.0-cp312-abi3-win32.whl", hash = "sha256:250e5436a4ba13885494412b3da5d518cd0d3a278a1ae640e113c073a5f88edd", size = 559184, upload-time = "2025-09-08T23:08:15.163Z" }, + { url = "https://files.pythonhosted.org/packages/fc/7f/a21b20d577e4100c6a41795842028235998a643b1ad406a6d4163ea8f53e/pyzmq-27.1.0-cp312-abi3-win_amd64.whl", hash = "sha256:9ce490cf1d2ca2ad84733aa1d69ce6855372cb5ce9223802450c9b2a7cba0ccf", size = 619480, upload-time = "2025-09-08T23:08:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/78/c2/c012beae5f76b72f007a9e91ee9401cb88c51d0f83c6257a03e785c81cc2/pyzmq-27.1.0-cp312-abi3-win_arm64.whl", hash = "sha256:75a2f36223f0d535a0c919e23615fc85a1e23b71f40c7eb43d7b1dedb4d8f15f", size = 552993, upload-time = "2025-09-08T23:08:18.926Z" }, + { url = "https://files.pythonhosted.org/packages/f3/81/a65e71c1552f74dec9dff91d95bafb6e0d33338a8dfefbc88aa562a20c92/pyzmq-27.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:c17e03cbc9312bee223864f1a2b13a99522e0dc9f7c5df0177cd45210ac286e6", size = 836266, upload-time = "2025-09-08T23:09:40.048Z" }, + { url = "https://files.pythonhosted.org/packages/58/ed/0202ca350f4f2b69faa95c6d931e3c05c3a397c184cacb84cb4f8f42f287/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:f328d01128373cb6763823b2b4e7f73bdf767834268c565151eacb3b7a392f90", size = 800206, upload-time = "2025-09-08T23:09:41.902Z" }, + { url = "https://files.pythonhosted.org/packages/47/42/1ff831fa87fe8f0a840ddb399054ca0009605d820e2b44ea43114f5459f4/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9c1790386614232e1b3a40a958454bdd42c6d1811837b15ddbb052a032a43f62", size = 567747, upload-time = "2025-09-08T23:09:43.741Z" }, + { url = "https://files.pythonhosted.org/packages/d1/db/5c4d6807434751e3f21231bee98109aa57b9b9b55e058e450d0aef59b70f/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:448f9cb54eb0cee4732b46584f2710c8bc178b0e5371d9e4fc8125201e413a74", size = 747371, upload-time = "2025-09-08T23:09:45.575Z" }, + { url = "https://files.pythonhosted.org/packages/26/af/78ce193dbf03567eb8c0dc30e3df2b9e56f12a670bf7eb20f9fb532c7e8a/pyzmq-27.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:05b12f2d32112bf8c95ef2e74ec4f1d4beb01f8b5e703b38537f8849f92cb9ba", size = 544862, upload-time = "2025-09-08T23:09:47.448Z" }, +] + +[[package]] +name = "rasterio" +version = "1.4.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "affine" }, + { name = "attrs" }, + { name = "certifi" }, + { name = "click" }, + { name = "click-plugins" }, + { name = "cligj" }, + { name = "numpy" }, + { name = "pyparsing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/fa/fce8dc9f09e5bc6520b6fc1b4ecfa510af9ca06eb42ad7bdff9c9b8989d0/rasterio-1.4.4.tar.gz", hash = "sha256:c95424e2c7f009b8f7df1095d645c52895cd332c0c2e1b4c2e073ea28b930320", size = 445004, upload-time = "2025-12-12T18:01:08.971Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/24/eedb9dfed1706c696b4f43ba9b85e830ce332f4f57ffcb7b6a4c4e66ade9/rasterio-1.4.4-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:35401e84d4d0b239bd62b33d4ee68d7bb13b47c3b41078f4aad7ad7964e61c73", size = 21127567, upload-time = "2025-12-12T17:58:42.664Z" }, + { url = "https://files.pythonhosted.org/packages/67/5f/482a24bf75bcd48236cd223d037f22abc6c08da6961e390e6a35249a9f58/rasterio-1.4.4-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:1f17fc9608b6b6666894a04e0118d3329e831a6347bc3650584d247a9d476fdd", size = 25735929, upload-time = "2025-12-12T17:58:46.503Z" }, + { url = "https://files.pythonhosted.org/packages/b0/da/b988ffb1bb37cc4cb8a028447ab654a16dbac0b339d977fb9c8adc5bd995/rasterio-1.4.4-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:1f0edb8cb30ff8f5be341583f69c115b7c36ad52bbbe7582345d32af115bc6b3", size = 34040467, upload-time = "2025-12-12T17:58:50.109Z" }, + { url = "https://files.pythonhosted.org/packages/e0/0a/2eace22e990203d47a8fed4b174b87be50281bf3f5b2509cf3700036cbcc/rasterio-1.4.4-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:5197da0e3dd09907bdb343717a49e8fb5229ffdbff0e583b874959ec41fa9558", size = 35339947, upload-time = "2025-12-12T17:58:53.269Z" }, + { url = "https://files.pythonhosted.org/packages/40/e5/16acecbbaedd820c5d71f99f3bab73c00455078a414b511f6854364d3e1e/rasterio-1.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:15109134c7b4770e6aeb8d45dc52c2603824805ba734323268a44f5a81756a7a", size = 25708679, upload-time = "2025-12-12T17:58:56.661Z" }, +] + +[[package]] +name = "rdkit" +version = "2024.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "pillow" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/54/acd8657fbf77af4ed1f773e6eb14b75b3840e8e9a665439101c0491fa9ed/rdkit-2024.3.5-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:1cb7cdb29956649d4c875790b94142868c08c0735dee4d90b2d70dfd378e9d2e", size = 29505991, upload-time = "2024-08-07T12:34:25.607Z" }, + { url = "https://files.pythonhosted.org/packages/08/79/ac7e30471b4cbe465aa9b9bcb5a64018df55464e37777f696682199bc65b/rdkit-2024.3.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e5b0dfb28aa0949152ff816fba0a2f6267154f5c25159a9ec84c27cf18f72322", size = 27453273, upload-time = "2024-08-07T12:34:31.391Z" }, + { url = "https://files.pythonhosted.org/packages/b5/52/71b8946c1cf3d1bea6a09d7e2ea7acb783d34886af4666cb10bd791cdb4d/rdkit-2024.3.5-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:7d5576bad6672959d0c1939e8d7e2fcd8656f8daf9788ce58e5c313db719b5ec", size = 32195237, upload-time = "2024-08-07T12:34:37.116Z" }, + { url = "https://files.pythonhosted.org/packages/f6/39/e625b5c132f174a5c1446b1373235bfc290224baedfed28b4d515fbdfdb5/rdkit-2024.3.5-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:455d510beff8806e62e48b977d7acbfbc351474fa132124738a07223440c1b9a", size = 33133359, upload-time = "2024-08-07T12:34:42.266Z" }, + { url = "https://files.pythonhosted.org/packages/37/ea/5d988d278405cfa44e4ccd32a252b880e9ce36e25707d5715e7e02d7b4de/rdkit-2024.3.5-cp310-cp310-win_amd64.whl", hash = "sha256:01fd323f5902a720925293c0ce08a33e630422374cf263d04ef173c106c63c36", size = 21730123, upload-time = "2024-08-07T12:34:46.979Z" }, +] + +[[package]] +name = "referencing" +version = "0.37.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "rpds-py" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" }, +] + +[[package]] +name = "requests" +version = "2.33.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5f/a4/98b9c7c6428a668bf7e42ebb7c79d576a1c3c1e3ae2d47e674b468388871/requests-2.33.1.tar.gz", hash = "sha256:18817f8c57c6263968bc123d237e3b8b08ac046f5456bd1e307ee8f4250d3517", size = 134120, upload-time = "2026-03-30T16:09:15.531Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/8e/7540e8a2036f79a125c1d2ebadf69ed7901608859186c856fa0388ef4197/requests-2.33.1-py3-none-any.whl", hash = "sha256:4e6d1ef462f3626a1f0a0a9c42dd93c63bad33f9f1c1937509b8c5c8718ab56a", size = 64947, upload-time = "2026-03-30T16:09:13.83Z" }, +] + +[[package]] +name = "requests-oauthlib" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "oauthlib" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650, upload-time = "2024-03-22T20:32:29.939Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179, upload-time = "2024-03-22T20:32:28.055Z" }, +] + +[[package]] +name = "rfc3339-validator" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/ea/a9387748e2d111c3c2b275ba970b735e04e15cdb1eb30693b6b5708c4dbd/rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b", size = 5513, upload-time = "2021-05-12T16:37:54.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa", size = 3490, upload-time = "2021-05-12T16:37:52.536Z" }, +] + +[[package]] +name = "rfc3986-validator" +version = "0.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/88/f270de456dd7d11dcc808abfa291ecdd3f45ff44e3b549ffa01b126464d0/rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055", size = 6760, upload-time = "2019-10-28T16:00:19.144Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9", size = 4242, upload-time = "2019-10-28T16:00:13.976Z" }, +] + +[[package]] +name = "rfc3987-syntax" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "lark" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2c/06/37c1a5557acf449e8e406a830a05bf885ac47d33270aec454ef78675008d/rfc3987_syntax-1.1.0.tar.gz", hash = "sha256:717a62cbf33cffdd16dfa3a497d81ce48a660ea691b1ddd7be710c22f00b4a0d", size = 14239, upload-time = "2025-07-18T01:05:05.015Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/71/44ce230e1b7fadd372515a97e32a83011f906ddded8d03e3c6aafbdedbb7/rfc3987_syntax-1.1.0-py3-none-any.whl", hash = "sha256:6c3d97604e4c5ce9f714898e05401a0445a641cfa276432b0a648c80856f6a3f", size = 8046, upload-time = "2025-07-18T01:05:03.843Z" }, +] + +[[package]] +name = "rich" +version = "15.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" }, +] + +[[package]] +name = "rpds-py" +version = "0.30.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/06/0c/0c411a0ec64ccb6d104dcabe0e713e05e153a9a2c3c2bd2b32ce412166fe/rpds_py-0.30.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:679ae98e00c0e8d68a7fda324e16b90fd5260945b45d3b824c892cec9eea3288", size = 370490, upload-time = "2025-11-30T20:21:33.256Z" }, + { url = "https://files.pythonhosted.org/packages/19/6a/4ba3d0fb7297ebae71171822554abe48d7cab29c28b8f9f2c04b79988c05/rpds_py-0.30.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4cc2206b76b4f576934f0ed374b10d7ca5f457858b157ca52064bdfc26b9fc00", size = 359751, upload-time = "2025-11-30T20:21:34.591Z" }, + { url = "https://files.pythonhosted.org/packages/cd/7c/e4933565ef7f7a0818985d87c15d9d273f1a649afa6a52ea35ad011195ea/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:389a2d49eded1896c3d48b0136ead37c48e221b391c052fba3f4055c367f60a6", size = 389696, upload-time = "2025-11-30T20:21:36.122Z" }, + { url = "https://files.pythonhosted.org/packages/5e/01/6271a2511ad0815f00f7ed4390cf2567bec1d4b1da39e2c27a41e6e3b4de/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:32c8528634e1bf7121f3de08fa85b138f4e0dc47657866630611b03967f041d7", size = 403136, upload-time = "2025-11-30T20:21:37.728Z" }, + { url = "https://files.pythonhosted.org/packages/55/64/c857eb7cd7541e9b4eee9d49c196e833128a55b89a9850a9c9ac33ccf897/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f207f69853edd6f6700b86efb84999651baf3789e78a466431df1331608e5324", size = 524699, upload-time = "2025-11-30T20:21:38.92Z" }, + { url = "https://files.pythonhosted.org/packages/9c/ed/94816543404078af9ab26159c44f9e98e20fe47e2126d5d32c9d9948d10a/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:67b02ec25ba7a9e8fa74c63b6ca44cf5707f2fbfadae3ee8e7494297d56aa9df", size = 412022, upload-time = "2025-11-30T20:21:40.407Z" }, + { url = "https://files.pythonhosted.org/packages/61/b5/707f6cf0066a6412aacc11d17920ea2e19e5b2f04081c64526eb35b5c6e7/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0e95f6819a19965ff420f65578bacb0b00f251fefe2c8b23347c37174271f3", size = 390522, upload-time = "2025-11-30T20:21:42.17Z" }, + { url = "https://files.pythonhosted.org/packages/13/4e/57a85fda37a229ff4226f8cbcf09f2a455d1ed20e802ce5b2b4a7f5ed053/rpds_py-0.30.0-cp310-cp310-manylinux_2_31_riscv64.whl", hash = "sha256:a452763cc5198f2f98898eb98f7569649fe5da666c2dc6b5ddb10fde5a574221", size = 404579, upload-time = "2025-11-30T20:21:43.769Z" }, + { url = "https://files.pythonhosted.org/packages/f9/da/c9339293513ec680a721e0e16bf2bac3db6e5d7e922488de471308349bba/rpds_py-0.30.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e0b65193a413ccc930671c55153a03ee57cecb49e6227204b04fae512eb657a7", size = 421305, upload-time = "2025-11-30T20:21:44.994Z" }, + { url = "https://files.pythonhosted.org/packages/f9/be/522cb84751114f4ad9d822ff5a1aa3c98006341895d5f084779b99596e5c/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:858738e9c32147f78b3ac24dc0edb6610000e56dc0f700fd5f651d0a0f0eb9ff", size = 572503, upload-time = "2025-11-30T20:21:46.91Z" }, + { url = "https://files.pythonhosted.org/packages/a2/9b/de879f7e7ceddc973ea6e4629e9b380213a6938a249e94b0cdbcc325bb66/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:da279aa314f00acbb803da1e76fa18666778e8a8f83484fba94526da5de2cba7", size = 598322, upload-time = "2025-11-30T20:21:48.709Z" }, + { url = "https://files.pythonhosted.org/packages/48/ac/f01fc22efec3f37d8a914fc1b2fb9bcafd56a299edbe96406f3053edea5a/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7c64d38fb49b6cdeda16ab49e35fe0da2e1e9b34bc38bd78386530f218b37139", size = 560792, upload-time = "2025-11-30T20:21:50.024Z" }, + { url = "https://files.pythonhosted.org/packages/e2/da/4e2b19d0f131f35b6146425f846563d0ce036763e38913d917187307a671/rpds_py-0.30.0-cp310-cp310-win32.whl", hash = "sha256:6de2a32a1665b93233cde140ff8b3467bdb9e2af2b91079f0333a0974d12d464", size = 221901, upload-time = "2025-11-30T20:21:51.32Z" }, + { url = "https://files.pythonhosted.org/packages/96/cb/156d7a5cf4f78a7cc571465d8aec7a3c447c94f6749c5123f08438bcf7bc/rpds_py-0.30.0-cp310-cp310-win_amd64.whl", hash = "sha256:1726859cd0de969f88dc8673bdd954185b9104e05806be64bcd87badbe313169", size = 235823, upload-time = "2025-11-30T20:21:52.505Z" }, +] + +[[package]] +name = "ruff" +version = "0.15.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/8d/192f3d7103816158dfd5ea50d098ef2aec19194e6cbccd4b3485bdb2eb2d/ruff-0.15.11.tar.gz", hash = "sha256:f092b21708bf0e7437ce9ada249dfe688ff9a0954fc94abab05dcea7dcd29c33", size = 4637264, upload-time = "2026-04-16T18:46:26.58Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/1e/6aca3427f751295ab011828e15e9bf452200ac74484f1db4be0197b8170b/ruff-0.15.11-py3-none-linux_armv6l.whl", hash = "sha256:e927cfff503135c558eb581a0c9792264aae9507904eb27809cdcff2f2c847b7", size = 10607943, upload-time = "2026-04-16T18:46:05.967Z" }, + { url = "https://files.pythonhosted.org/packages/e7/26/1341c262e74f36d4e84f3d6f4df0ac68cd53331a66bfc5080daa17c84c0b/ruff-0.15.11-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:7a1b5b2938d8f890b76084d4fa843604d787a912541eae85fd7e233398bbb73e", size = 10988592, upload-time = "2026-04-16T18:46:00.742Z" }, + { url = "https://files.pythonhosted.org/packages/03/71/850b1d6ffa9564fbb6740429bad53df1094082fe515c8c1e74b6d8d05f18/ruff-0.15.11-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d4176f3d194afbdaee6e41b9ccb1a2c287dba8700047df474abfbe773825d1cb", size = 10338501, upload-time = "2026-04-16T18:46:03.723Z" }, + { url = "https://files.pythonhosted.org/packages/f2/11/cc1284d3e298c45a817a6aadb6c3e1d70b45c9b36d8d9cce3387b495a03a/ruff-0.15.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b17c886fb88203ced3afe7f14e8d5ae96e9d2f4ccc0ee66aa19f2c2675a27e4", size = 10670693, upload-time = "2026-04-16T18:46:41.941Z" }, + { url = "https://files.pythonhosted.org/packages/ce/9e/f8288b034ab72b371513c13f9a41d9ba3effac54e24bfb467b007daee2ca/ruff-0.15.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:49fafa220220afe7758a487b048de4c8f9f767f37dfefad46b9dd06759d003eb", size = 10416177, upload-time = "2026-04-16T18:46:21.717Z" }, + { url = "https://files.pythonhosted.org/packages/85/71/504d79abfd3d92532ba6bbe3d1c19fada03e494332a59e37c7c2dabae427/ruff-0.15.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2ab8427e74a00d93b8bda1307b1e60970d40f304af38bccb218e056c220120d", size = 11221886, upload-time = "2026-04-16T18:46:15.086Z" }, + { url = "https://files.pythonhosted.org/packages/43/5a/947e6ab7a5ad603d65b474be15a4cbc6d29832db5d762cd142e4e3a74164/ruff-0.15.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:195072c0c8e1fc8f940652073df082e37a5d9cb43b4ab1e4d0566ab8977a13b7", size = 12075183, upload-time = "2026-04-16T18:46:07.944Z" }, + { url = "https://files.pythonhosted.org/packages/9f/a1/0b7bb6268775fdd3a0818aee8efd8f5b4e231d24dd4d528ced2534023182/ruff-0.15.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a3a0996d486af3920dec930a2e7daed4847dfc12649b537a9335585ada163e9e", size = 11516575, upload-time = "2026-04-16T18:46:31.687Z" }, + { url = "https://files.pythonhosted.org/packages/30/c3/bb5168fc4d233cc06e95f482770d0f3c87945a0cd9f614b90ea8dc2f2833/ruff-0.15.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bef2cb556d509259f1fe440bb9cd33c756222cf0a7afe90d15edf0866702431", size = 11306537, upload-time = "2026-04-16T18:46:36.988Z" }, + { url = "https://files.pythonhosted.org/packages/e4/92/4cfae6441f3967317946f3b788136eecf093729b94d6561f963ed810c82e/ruff-0.15.11-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:030d921a836d7d4a12cf6e8d984a88b66094ccb0e0f17ddd55067c331191bf19", size = 11296813, upload-time = "2026-04-16T18:46:24.182Z" }, + { url = "https://files.pythonhosted.org/packages/43/26/972784c5dde8313acde8ac71ba8ac65475b85db4a2352a76c9934361f9bc/ruff-0.15.11-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:0e783b599b4577788dbbb66b9addcef87e9a8832f4ce0c19e34bf55543a2f890", size = 10633136, upload-time = "2026-04-16T18:46:39.802Z" }, + { url = "https://files.pythonhosted.org/packages/5b/53/3985a4f185020c2f367f2e08a103032e12564829742a1b417980ce1514a0/ruff-0.15.11-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:ae90592246625ba4a34349d68ec28d4400d75182b71baa196ddb9f82db025ef5", size = 10424701, upload-time = "2026-04-16T18:46:10.381Z" }, + { url = "https://files.pythonhosted.org/packages/d3/57/bf0dfb32241b56c83bb663a826133da4bf17f682ba8c096973065f6e6a68/ruff-0.15.11-py3-none-musllinux_1_2_i686.whl", hash = "sha256:1f111d62e3c983ed20e0ca2e800f8d77433a5b1161947df99a5c2a3fb60514f0", size = 10873887, upload-time = "2026-04-16T18:46:29.157Z" }, + { url = "https://files.pythonhosted.org/packages/02/05/e48076b2a57dc33ee8c7a957296f97c744ca891a8ffb4ffb1aaa3b3f517d/ruff-0.15.11-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:06f483d6646f59eaffba9ae30956370d3a886625f511a3108994000480621d1c", size = 11404316, upload-time = "2026-04-16T18:46:19.462Z" }, + { url = "https://files.pythonhosted.org/packages/88/27/0195d15fe7a897cbcba0904792c4b7c9fdd958456c3a17d2ea6093716a9a/ruff-0.15.11-py3-none-win32.whl", hash = "sha256:476a2aa56b7da0b73a3ee80b6b2f0e19cce544245479adde7baa65466664d5f3", size = 10655535, upload-time = "2026-04-16T18:46:12.47Z" }, + { url = "https://files.pythonhosted.org/packages/3a/5e/c927b325bd4c1d3620211a4b96f47864633199feed60fa936025ab27e090/ruff-0.15.11-py3-none-win_amd64.whl", hash = "sha256:8b6756d88d7e234fb0c98c91511aae3cd519d5e3ed271cae31b20f39cb2a12a3", size = 11779692, upload-time = "2026-04-16T18:46:17.268Z" }, + { url = "https://files.pythonhosted.org/packages/63/b6/aeadee5443e49baa2facd51131159fd6301cc4ccfc1541e4df7b021c37dd/ruff-0.15.11-py3-none-win_arm64.whl", hash = "sha256:063fed18cc1bbe0ee7393957284a6fe8b588c6a406a285af3ee3f46da2391ee4", size = 11032614, upload-time = "2026-04-16T18:46:34.487Z" }, +] + +[[package]] +name = "scikit-learn" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c9/fa/8e158d81e3602da1e7bafbd4987938bc003fe4b0f44d65681e7f8face95a/scikit-learn-1.2.2.tar.gz", hash = "sha256:8429aea30ec24e7a8c7ed8a3fa6213adf3814a6efbea09e16e0a0c71e1a1a3d7", size = 7269934, upload-time = "2023-03-09T09:57:57.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/21/ee21352f69a980614cb4193d68a64a83aa2c0f80183c9485d6d61821a922/scikit_learn-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:99cc01184e347de485bf253d19fcb3b1a3fb0ee4cea5ee3c43ec0cc429b6d29f", size = 9107257, upload-time = "2023-03-09T09:57:10.488Z" }, + { url = "https://files.pythonhosted.org/packages/5a/43/5c4d21217df6a033999ee531fdfd52809263727b4afb26f7196a8ec709ae/scikit_learn-1.2.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:e6e574db9914afcb4e11ade84fab084536a895ca60aadea3041e85b8ac963edb", size = 8455656, upload-time = "2023-03-09T09:57:13.131Z" }, + { url = "https://files.pythonhosted.org/packages/48/92/a39d1c9e0a6cb5ed4112899ecca590138484356ba8c4274dde6c3893ff14/scikit_learn-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fe83b676f407f00afa388dd1fdd49e5c6612e551ed84f3b1b182858f09e987d", size = 9165302, upload-time = "2023-03-09T09:57:15.336Z" }, + { url = "https://files.pythonhosted.org/packages/fa/1e/36d7609e84b50d4a2e5bc43cd5013d9ea885799e5813a1e9cf5bb1afd3f4/scikit_learn-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e2642baa0ad1e8f8188917423dd73994bf25429f8893ddbe115be3ca3183584", size = 9625294, upload-time = "2023-03-09T09:57:17.519Z" }, + { url = "https://files.pythonhosted.org/packages/f4/4d/fe3b35e18407da4b386be58616bd0f941ea1762a6c6798267f3aa64ef5d5/scikit_learn-1.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ad66c3848c0a1ec13464b2a95d0a484fd5b02ce74268eaa7e0c697b904f31d6c", size = 8306029, upload-time = "2023-03-09T09:57:19.64Z" }, +] + +[[package]] +name = "scipy" +version = "1.15.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0f/37/6964b830433e654ec7485e45a00fc9a27cf868d622838f6b6d9c5ec0d532/scipy-1.15.3.tar.gz", hash = "sha256:eae3cf522bc7df64b42cad3925c876e1b0b6c35c1337c93e12c0f366f55b0eaf", size = 59419214, upload-time = "2025-05-08T16:13:05.955Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/2f/4966032c5f8cc7e6a60f1b2e0ad686293b9474b65246b0c642e3ef3badd0/scipy-1.15.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a345928c86d535060c9c2b25e71e87c39ab2f22fc96e9636bd74d1dbf9de448c", size = 38702770, upload-time = "2025-05-08T16:04:20.849Z" }, + { url = "https://files.pythonhosted.org/packages/a0/6e/0c3bf90fae0e910c274db43304ebe25a6b391327f3f10b5dcc638c090795/scipy-1.15.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:ad3432cb0f9ed87477a8d97f03b763fd1d57709f1bbde3c9369b1dff5503b253", size = 30094511, upload-time = "2025-05-08T16:04:27.103Z" }, + { url = "https://files.pythonhosted.org/packages/ea/b1/4deb37252311c1acff7f101f6453f0440794f51b6eacb1aad4459a134081/scipy-1.15.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:aef683a9ae6eb00728a542b796f52a5477b78252edede72b8327a886ab63293f", size = 22368151, upload-time = "2025-05-08T16:04:31.731Z" }, + { url = "https://files.pythonhosted.org/packages/38/7d/f457626e3cd3c29b3a49ca115a304cebb8cc6f31b04678f03b216899d3c6/scipy-1.15.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:1c832e1bd78dea67d5c16f786681b28dd695a8cb1fb90af2e27580d3d0967e92", size = 25121732, upload-time = "2025-05-08T16:04:36.596Z" }, + { url = "https://files.pythonhosted.org/packages/db/0a/92b1de4a7adc7a15dcf5bddc6e191f6f29ee663b30511ce20467ef9b82e4/scipy-1.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:263961f658ce2165bbd7b99fa5135195c3a12d9bef045345016b8b50c315cb82", size = 35547617, upload-time = "2025-05-08T16:04:43.546Z" }, + { url = "https://files.pythonhosted.org/packages/8e/6d/41991e503e51fc1134502694c5fa7a1671501a17ffa12716a4a9151af3df/scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2abc762b0811e09a0d3258abee2d98e0c703eee49464ce0069590846f31d40", size = 37662964, upload-time = "2025-05-08T16:04:49.431Z" }, + { url = "https://files.pythonhosted.org/packages/25/e1/3df8f83cb15f3500478c889be8fb18700813b95e9e087328230b98d547ff/scipy-1.15.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed7284b21a7a0c8f1b6e5977ac05396c0d008b89e05498c8b7e8f4a1423bba0e", size = 37238749, upload-time = "2025-05-08T16:04:55.215Z" }, + { url = "https://files.pythonhosted.org/packages/93/3e/b3257cf446f2a3533ed7809757039016b74cd6f38271de91682aa844cfc5/scipy-1.15.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5380741e53df2c566f4d234b100a484b420af85deb39ea35a1cc1be84ff53a5c", size = 40022383, upload-time = "2025-05-08T16:05:01.914Z" }, + { url = "https://files.pythonhosted.org/packages/d1/84/55bc4881973d3f79b479a5a2e2df61c8c9a04fcb986a213ac9c02cfb659b/scipy-1.15.3-cp310-cp310-win_amd64.whl", hash = "sha256:9d61e97b186a57350f6d6fd72640f9e99d5a4a2b8fbf4b9ee9a841eab327dc13", size = 41259201, upload-time = "2025-05-08T16:05:08.166Z" }, +] + +[[package]] +name = "seaborn" +version = "0.13.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "pandas" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/86/59/a451d7420a77ab0b98f7affa3a1d78a313d2f7281a57afb1a34bae8ab412/seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7", size = 1457696, upload-time = "2024-01-25T13:21:52.551Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/11/00d3c3dfc25ad54e731d91449895a79e4bf2384dc3ac01809010ba88f6d5/seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987", size = 294914, upload-time = "2024-01-25T13:21:49.598Z" }, +] + +[[package]] +name = "send2trash" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c5/f0/184b4b5f8d00f2a92cf96eec8967a3d550b52cf94362dad1100df9e48d57/send2trash-2.1.0.tar.gz", hash = "sha256:1c72b39f09457db3c05ce1d19158c2cbef4c32b8bedd02c155e49282b7ea7459", size = 17255, upload-time = "2026-01-14T06:27:36.056Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/78/504fdd027da3b84ff1aecd9f6957e65f35134534ccc6da8628eb71e76d3f/send2trash-2.1.0-py3-none-any.whl", hash = "sha256:0da2f112e6d6bb22de6aa6daa7e144831a4febf2a87261451c4ad849fe9a873c", size = 17610, upload-time = "2026-01-14T06:27:35.218Z" }, +] + +[[package]] +name = "setuptools" +version = "82.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4f/db/cfac1baf10650ab4d1c111714410d2fbb77ac5a616db26775db562c8fab2/setuptools-82.0.1.tar.gz", hash = "sha256:7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9", size = 1152316, upload-time = "2026-03-09T12:47:17.221Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" }, +] + +[[package]] +name = "shapely" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4d/bc/0989043118a27cccb4e906a46b7565ce36ca7b57f5a18b78f4f1b0f72d9d/shapely-2.1.2.tar.gz", hash = "sha256:2ed4ecb28320a433db18a5bf029986aa8afcfd740745e78847e330d5d94922a9", size = 315489, upload-time = "2025-09-24T13:51:41.432Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/89/c3548aa9b9812a5d143986764dededfa48d817714e947398bdda87c77a72/shapely-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7ae48c236c0324b4e139bea88a306a04ca630f49be66741b340729d380d8f52f", size = 1825959, upload-time = "2025-09-24T13:50:00.682Z" }, + { url = "https://files.pythonhosted.org/packages/ce/8a/7ebc947080442edd614ceebe0ce2cdbd00c25e832c240e1d1de61d0e6b38/shapely-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eba6710407f1daa8e7602c347dfc94adc02205ec27ed956346190d66579eb9ea", size = 1629196, upload-time = "2025-09-24T13:50:03.447Z" }, + { url = "https://files.pythonhosted.org/packages/c8/86/c9c27881c20d00fc409e7e059de569d5ed0abfcec9c49548b124ebddea51/shapely-2.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ef4a456cc8b7b3d50ccec29642aa4aeda959e9da2fe9540a92754770d5f0cf1f", size = 2951065, upload-time = "2025-09-24T13:50:05.266Z" }, + { url = "https://files.pythonhosted.org/packages/50/8a/0ab1f7433a2a85d9e9aea5b1fbb333f3b09b309e7817309250b4b7b2cc7a/shapely-2.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e38a190442aacc67ff9f75ce60aec04893041f16f97d242209106d502486a142", size = 3058666, upload-time = "2025-09-24T13:50:06.872Z" }, + { url = "https://files.pythonhosted.org/packages/bb/c6/5a30ffac9c4f3ffd5b7113a7f5299ccec4713acd5ee44039778a7698224e/shapely-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:40d784101f5d06a1fd30b55fc11ea58a61be23f930d934d86f19a180909908a4", size = 3966905, upload-time = "2025-09-24T13:50:09.417Z" }, + { url = "https://files.pythonhosted.org/packages/9c/72/e92f3035ba43e53959007f928315a68fbcf2eeb4e5ededb6f0dc7ff1ecc3/shapely-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f6f6cd5819c50d9bcf921882784586aab34a4bd53e7553e175dece6db513a6f0", size = 4129260, upload-time = "2025-09-24T13:50:11.183Z" }, + { url = "https://files.pythonhosted.org/packages/42/24/605901b73a3d9f65fa958e63c9211f4be23d584da8a1a7487382fac7fdc5/shapely-2.1.2-cp310-cp310-win32.whl", hash = "sha256:fe9627c39c59e553c90f5bc3128252cb85dc3b3be8189710666d2f8bc3a5503e", size = 1544301, upload-time = "2025-09-24T13:50:12.521Z" }, + { url = "https://files.pythonhosted.org/packages/e1/89/6db795b8dd3919851856bd2ddd13ce434a748072f6fdee42ff30cbd3afa3/shapely-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:1d0bfb4b8f661b3b4ec3565fa36c340bfb1cda82087199711f86a88647d26b2f", size = 1722074, upload-time = "2025-09-24T13:50:13.909Z" }, +] + +[[package]] +name = "simplejson" +version = "3.20.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f4/a1ac5ed32f7ed9a088d62a59d410d4c204b3b3815722e2ccfb491fa8251b/simplejson-3.20.2.tar.gz", hash = "sha256:5fe7a6ce14d1c300d80d08695b7f7e633de6cd72c80644021874d985b3393649", size = 85784, upload-time = "2025-09-26T16:29:36.64Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/09/2bf3761de89ea2d91bdce6cf107dcd858892d0adc22c995684878826cc6b/simplejson-3.20.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6d7286dc11af60a2f76eafb0c2acde2d997e87890e37e24590bb513bec9f1bc5", size = 94039, upload-time = "2025-09-26T16:27:29.283Z" }, + { url = "https://files.pythonhosted.org/packages/0f/33/c3277db8931f0ae9e54b9292668863365672d90fb0f632f4cf9829cb7d68/simplejson-3.20.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c01379b4861c3b0aa40cba8d44f2b448f5743999aa68aaa5d3ef7049d4a28a2d", size = 75894, upload-time = "2025-09-26T16:27:30.378Z" }, + { url = "https://files.pythonhosted.org/packages/fa/ea/ae47b04d03c7c8a7b7b1a8b39a6e27c3bd424e52f4988d70aca6293ff5e5/simplejson-3.20.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a16b029ca25645b3bc44e84a4f941efa51bf93c180b31bd704ce6349d1fc77c1", size = 76116, upload-time = "2025-09-26T16:27:31.42Z" }, + { url = "https://files.pythonhosted.org/packages/4b/42/6c9af551e5a8d0f171d6dce3d9d1260068927f7b80f1f09834e07887c8c4/simplejson-3.20.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e22a5fb7b1437ffb057e02e1936a3bfb19084ae9d221ec5e9f4cf85f69946b6", size = 138827, upload-time = "2025-09-26T16:27:32.486Z" }, + { url = "https://files.pythonhosted.org/packages/2b/22/5e268bbcbe9f75577491e406ec0a5536f5b2fa91a3b52031fea51cd83e1d/simplejson-3.20.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d8b6ff02fc7b8555c906c24735908854819b0d0dc85883d453e23ca4c0445d01", size = 146772, upload-time = "2025-09-26T16:27:34.036Z" }, + { url = "https://files.pythonhosted.org/packages/71/b4/800f14728e2ad666f420dfdb57697ca128aeae7f991b35759c09356b829a/simplejson-3.20.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2bfc1c396ad972ba4431130b42307b2321dba14d988580c1ac421ec6a6b7cee3", size = 134497, upload-time = "2025-09-26T16:27:35.211Z" }, + { url = "https://files.pythonhosted.org/packages/c1/b9/c54eef4226c6ac8e9a389bbe5b21fef116768f97a2dc1a683c716ffe66ef/simplejson-3.20.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a97249ee1aee005d891b5a211faf58092a309f3d9d440bc269043b08f662eda", size = 138172, upload-time = "2025-09-26T16:27:36.44Z" }, + { url = "https://files.pythonhosted.org/packages/09/36/4e282f5211b34620f1b2e4b51d9ddaab5af82219b9b7b78360a33f7e5387/simplejson-3.20.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f1036be00b5edaddbddbb89c0f80ed229714a941cfd21e51386dc69c237201c2", size = 140272, upload-time = "2025-09-26T16:27:37.605Z" }, + { url = "https://files.pythonhosted.org/packages/aa/b0/94ad2cf32f477c449e1f63c863d8a513e2408d651c4e58fe4b6a7434e168/simplejson-3.20.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5d6f5bacb8cdee64946b45f2680afa3f54cd38e62471ceda89f777693aeca4e4", size = 140468, upload-time = "2025-09-26T16:27:39.015Z" }, + { url = "https://files.pythonhosted.org/packages/e5/46/827731e4163be3f987cb8ee90f5d444161db8f540b5e735355faa098d9bc/simplejson-3.20.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8db6841fb796ec5af632f677abf21c6425a1ebea0d9ac3ef1a340b8dc69f52b8", size = 148700, upload-time = "2025-09-26T16:27:40.171Z" }, + { url = "https://files.pythonhosted.org/packages/c7/28/c32121064b1ec2fb7b5d872d9a1abda62df064d35e0160eddfa907118343/simplejson-3.20.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c0a341f7cc2aae82ee2b31f8a827fd2e51d09626f8b3accc441a6907c88aedb7", size = 141323, upload-time = "2025-09-26T16:27:41.324Z" }, + { url = "https://files.pythonhosted.org/packages/46/b6/c897c54326fe86dd12d101981171a49361949f4728294f418c3b86a1af77/simplejson-3.20.2-cp310-cp310-win32.whl", hash = "sha256:27f9c01a6bc581d32ab026f515226864576da05ef322d7fc141cd8a15a95ce53", size = 74377, upload-time = "2025-09-26T16:27:42.533Z" }, + { url = "https://files.pythonhosted.org/packages/ad/87/a6e03d4d80cca99c1fee4e960f3440e2f21be9470e537970f960ca5547f1/simplejson-3.20.2-cp310-cp310-win_amd64.whl", hash = "sha256:c0a63ec98a4547ff366871bf832a7367ee43d047bcec0b07b66c794e2137b476", size = 76081, upload-time = "2025-09-26T16:27:43.945Z" }, + { url = "https://files.pythonhosted.org/packages/05/5b/83e1ff87eb60ca706972f7e02e15c0b33396e7bdbd080069a5d1b53cf0d8/simplejson-3.20.2-py3-none-any.whl", hash = "sha256:3b6bb7fb96efd673eac2e4235200bfffdc2353ad12c54117e1e4e2fc485ac017", size = 57309, upload-time = "2025-09-26T16:29:35.312Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "snowballstemmer" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/75/a7/9810d872919697c9d01295633f5d574fb416d47e535f258272ca1f01f447/snowballstemmer-3.0.1.tar.gz", hash = "sha256:6d5eeeec8e9f84d4d56b847692bacf79bc2c8e90c7f80ca4444ff8b6f2e52895", size = 105575, upload-time = "2025-05-09T16:34:51.843Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/78/3565d011c61f5a43488987ee32b6f3f656e7f107ac2782dd57bdd7d91d9a/snowballstemmer-3.0.1-py3-none-any.whl", hash = "sha256:6cd7b3897da8d6c9ffb968a6781fa6532dce9c3618a4b127d920dab764a19064", size = 103274, upload-time = "2025-05-09T16:34:50.371Z" }, +] + +[[package]] +name = "soupsieve" +version = "2.8.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7b/ae/2d9c981590ed9999a0d91755b47fc74f74de286b0f5cee14c9269041e6c4/soupsieve-2.8.3.tar.gz", hash = "sha256:3267f1eeea4251fb42728b6dfb746edc9acaffc4a45b27e19450b676586e8349", size = 118627, upload-time = "2026-01-20T04:27:02.457Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/2c/1462b1d0a634697ae9e55b3cecdcb64788e8b7d63f54d923fcd0bb140aed/soupsieve-2.8.3-py3-none-any.whl", hash = "sha256:ed64f2ba4eebeab06cc4962affce381647455978ffc1e36bb79a545b91f45a95", size = 37016, upload-time = "2026-01-20T04:27:01.012Z" }, +] + +[[package]] +name = "sphinx" +version = "8.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alabaster" }, + { name = "babel" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "docutils" }, + { name = "imagesize" }, + { name = "jinja2" }, + { name = "packaging" }, + { name = "pygments" }, + { name = "requests" }, + { name = "snowballstemmer" }, + { name = "sphinxcontrib-applehelp" }, + { name = "sphinxcontrib-devhelp" }, + { name = "sphinxcontrib-htmlhelp" }, + { name = "sphinxcontrib-jsmath" }, + { name = "sphinxcontrib-qthelp" }, + { name = "sphinxcontrib-serializinghtml" }, + { name = "tomli" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/be0b61178fe2cdcb67e2a92fc9ebb488e3c51c4f74a36a7824c0adf23425/sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927", size = 8184611, upload-time = "2024-10-13T20:27:13.93Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2", size = 3487125, upload-time = "2024-10-13T20:27:10.448Z" }, +] + +[[package]] +name = "sphinx-rtd-theme" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docutils" }, + { name = "sphinx" }, + { name = "sphinxcontrib-jquery" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/84/68/a1bfbf38c0f7bccc9b10bbf76b94606f64acb1552ae394f0b8285bfaea25/sphinx_rtd_theme-3.1.0.tar.gz", hash = "sha256:b44276f2c276e909239a4f6c955aa667aaafeb78597923b1c60babc76db78e4c", size = 7620915, upload-time = "2026-01-12T16:03:31.17Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/c7/b5c8015d823bfda1a346adb2c634a2101d50bb75d421eb6dcb31acd25ebc/sphinx_rtd_theme-3.1.0-py2.py3-none-any.whl", hash = "sha256:1785824ae8e6632060490f67cf3a72d404a85d2d9fc26bce3619944de5682b89", size = 7655617, upload-time = "2026-01-12T16:03:28.101Z" }, +] + +[[package]] +name = "sphinxcontrib-applehelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ba/6e/b837e84a1a704953c62ef8776d45c3e8d759876b4a84fe14eba2859106fe/sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1", size = 20053, upload-time = "2024-07-29T01:09:00.465Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5", size = 119300, upload-time = "2024-07-29T01:08:58.99Z" }, +] + +[[package]] +name = "sphinxcontrib-devhelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/d2/5beee64d3e4e747f316bae86b55943f51e82bb86ecd325883ef65741e7da/sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad", size = 12967, upload-time = "2024-07-29T01:09:23.417Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2", size = 82530, upload-time = "2024-07-29T01:09:21.945Z" }, +] + +[[package]] +name = "sphinxcontrib-htmlhelp" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/93/983afd9aa001e5201eab16b5a444ed5b9b0a7a010541e0ddfbbfd0b2470c/sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9", size = 22617, upload-time = "2024-07-29T01:09:37.889Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8", size = 98705, upload-time = "2024-07-29T01:09:36.407Z" }, +] + +[[package]] +name = "sphinxcontrib-jquery" +version = "4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "sphinx" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/de/f3/aa67467e051df70a6330fe7770894b3e4f09436dea6881ae0b4f3d87cad8/sphinxcontrib-jquery-4.1.tar.gz", hash = "sha256:1620739f04e36a2c779f1a131a2dfd49b2fd07351bf1968ced074365933abc7a", size = 122331, upload-time = "2023-03-14T15:01:01.944Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/85/749bd22d1a68db7291c89e2ebca53f4306c3f205853cf31e9de279034c3c/sphinxcontrib_jquery-4.1-py2.py3-none-any.whl", hash = "sha256:f936030d7d0147dd026a4f2b5a57343d233f1fc7b363f68b3d4f1cb0993878ae", size = 121104, upload-time = "2023-03-14T15:01:00.356Z" }, +] + +[[package]] +name = "sphinxcontrib-jsmath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/e8/9ed3830aeed71f17c026a07a5097edcf44b692850ef215b161b8ad875729/sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8", size = 5787, upload-time = "2019-01-21T16:10:16.347Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178", size = 5071, upload-time = "2019-01-21T16:10:14.333Z" }, +] + +[[package]] +name = "sphinxcontrib-qthelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/68/bc/9104308fc285eb3e0b31b67688235db556cd5b0ef31d96f30e45f2e51cae/sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab", size = 17165, upload-time = "2024-07-29T01:09:56.435Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb", size = 88743, upload-time = "2024-07-29T01:09:54.885Z" }, +] + +[[package]] +name = "sphinxcontrib-serializinghtml" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3b/44/6716b257b0aa6bfd51a1b31665d1c205fb12cb5ad56de752dfa15657de2f/sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d", size = 16080, upload-time = "2024-07-29T01:10:09.332Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331", size = 92072, upload-time = "2024-07-29T01:10:08.203Z" }, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.49" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "greenlet", marker = "platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64'" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/09/45/461788f35e0364a8da7bda51a1fe1b09762d0c32f12f63727998d85a873b/sqlalchemy-2.0.49.tar.gz", hash = "sha256:d15950a57a210e36dd4cec1aac22787e2a4d57ba9318233e2ef8b2daf9ff2d5f", size = 9898221, upload-time = "2026-04-03T16:38:11.704Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/96/76/f908955139842c362aa877848f42f9249642d5b69e06cee9eae5111da1bd/sqlalchemy-2.0.49-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:42e8804962f9e6f4be2cbaedc0c3718f08f60a16910fa3d86da5a1e3b1bfe60f", size = 2159321, upload-time = "2026-04-03T16:50:11.8Z" }, + { url = "https://files.pythonhosted.org/packages/24/e2/17ba0b7bfbd8de67196889b6d951de269e8a46057d92baca162889beb16d/sqlalchemy-2.0.49-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc992c6ed024c8c3c592c5fc9846a03dd68a425674900c70122c77ea16c5fb0b", size = 3238937, upload-time = "2026-04-03T16:54:45.731Z" }, + { url = "https://files.pythonhosted.org/packages/90/1e/410dd499c039deacff395eec01a9da057125fcd0c97e3badc252c6a2d6a7/sqlalchemy-2.0.49-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6eb188b84269f357669b62cb576b5b918de10fb7c728a005fa0ebb0b758adce1", size = 3237188, upload-time = "2026-04-03T16:56:53.217Z" }, + { url = "https://files.pythonhosted.org/packages/ab/06/e797a8b98a3993ac4bc785309b9b6d005457fc70238ee6cefa7c8867a92e/sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:62557958002b69699bdb7f5137c6714ca1133f045f97b3903964f47db97ea339", size = 3190061, upload-time = "2026-04-03T16:54:47.489Z" }, + { url = "https://files.pythonhosted.org/packages/44/d3/5a9f7ef580af1031184b38235da6ac58c3b571df01c9ec061c44b2b0c5a6/sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da9b91bca419dc9b9267ffadde24eae9b1a6bffcd09d0a207e5e3af99a03ce0d", size = 3211477, upload-time = "2026-04-03T16:56:55.056Z" }, + { url = "https://files.pythonhosted.org/packages/69/ec/7be8c8cb35f038e963a203e4fe5a028989167cc7299927b7cf297c271e37/sqlalchemy-2.0.49-cp310-cp310-win32.whl", hash = "sha256:5e61abbec255be7b122aa461021daa7c3f310f3e743411a67079f9b3cc91ece3", size = 2119965, upload-time = "2026-04-03T17:00:50.009Z" }, + { url = "https://files.pythonhosted.org/packages/b5/31/0defb93e3a10b0cf7d1271aedd87251a08c3a597ee4f353281769b547b5a/sqlalchemy-2.0.49-cp310-cp310-win_amd64.whl", hash = "sha256:0c98c59075b890df8abfcc6ad632879540f5791c68baebacb4f833713b510e75", size = 2142935, upload-time = "2026-04-03T17:00:51.675Z" }, + { url = "https://files.pythonhosted.org/packages/e5/30/8519fdde58a7bdf155b714359791ad1dc018b47d60269d5d160d311fdc36/sqlalchemy-2.0.49-py3-none-any.whl", hash = "sha256:ec44cfa7ef1a728e88ad41674de50f6db8cfdb3e2af84af86e0041aaf02d43d0", size = 1942158, upload-time = "2026-04-03T16:53:44.135Z" }, +] + +[[package]] +name = "stack-data" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asttokens" }, + { name = "executing" }, + { name = "pure-eval" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707, upload-time = "2023-09-30T13:58:05.479Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload-time = "2023-09-30T13:58:03.53Z" }, +] + +[[package]] +name = "swagger-spec-validator" +version = "3.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-resources" }, + { name = "jsonschema" }, + { name = "pyyaml" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e7/e9/d0a4a1e4ed6b4b805d5465affaeaa2d91ae08a8aae966f4bb7402e23ee37/swagger_spec_validator-3.0.4.tar.gz", hash = "sha256:637ac6d865270bfcd07df24605548e6e1f1d9c39adcfd855da37fa3fdebfed4b", size = 22355, upload-time = "2024-06-27T17:43:05.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/ac/31ba87a959b19e640ebc18851438b82b5b66cef02ad31da7468d1d8bd625/swagger_spec_validator-3.0.4-py2.py3-none-any.whl", hash = "sha256:1a2a4f4f7076479ae7835d892dd53952ccca9414efa172c440c775cf0ac01f48", size = 28473, upload-time = "2024-06-27T17:43:00.546Z" }, +] + +[[package]] +name = "sympy" +version = "1.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz", hash = "sha256:d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517", size = 7793921, upload-time = "2025-04-27T18:05:01.611Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl", hash = "sha256:e091cc3e99d2141a0ba2847328f5479b05d94a6635cb96148ccb3f34671bd8f5", size = 6299353, upload-time = "2025-04-27T18:04:59.103Z" }, +] + +[[package]] +name = "tabulate" +version = "0.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/58/8c37dea7bbf769b20d58e7ace7e5edfe65b849442b00ffcdd56be88697c6/tabulate-0.10.0.tar.gz", hash = "sha256:e2cfde8f79420f6deeffdeda9aaec3b6bc5abce947655d17ac662b126e48a60d", size = 91754, upload-time = "2026-03-04T18:55:34.402Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/99/55/db07de81b5c630da5cbf5c7df646580ca26dfaefa593667fc6f2fe016d2e/tabulate-0.10.0-py3-none-any.whl", hash = "sha256:f0b0622e567335c8fabaaa659f1b33bcb6ddfe2e496071b743aa113f8774f2d3", size = 39814, upload-time = "2026-03-04T18:55:31.284Z" }, +] + +[[package]] +name = "tensorboard" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "google-auth" }, + { name = "google-auth-oauthlib" }, + { name = "grpcio" }, + { name = "markdown" }, + { name = "numpy" }, + { name = "protobuf" }, + { name = "requests" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard-data-server" }, + { name = "werkzeug" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/a2/66ed644f6ed1562e0285fcd959af17670ea313c8f331c46f79ee77187eb9/tensorboard-2.14.1-py3-none-any.whl", hash = "sha256:3db108fb58f023b6439880e177743c5f1e703e9eeb5fb7d597871f949f85fd58", size = 5508920, upload-time = "2023-09-27T23:37:16.71Z" }, +] + +[[package]] +name = "tensorboard-data-server" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/13/e503968fefabd4c6b2650af21e110aa8466fe21432cd7c43a84577a89438/tensorboard_data_server-0.7.2-py3-none-any.whl", hash = "sha256:7e0610d205889588983836ec05dc098e80f97b7e7bbff7e994ebb78f578d0ddb", size = 2356, upload-time = "2023-10-23T21:23:32.16Z" }, + { url = "https://files.pythonhosted.org/packages/b7/85/dabeaf902892922777492e1d253bb7e1264cadce3cea932f7ff599e53fea/tensorboard_data_server-0.7.2-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:9fe5d24221b29625dbc7328b0436ca7fc1c23de4acf4d272f1180856e32f9f60", size = 4823598, upload-time = "2023-10-23T21:23:33.714Z" }, + { url = "https://files.pythonhosted.org/packages/73/c6/825dab04195756cf8ff2e12698f22513b3db2f64925bdd41671bfb33aaa5/tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:ef687163c24185ae9754ed5650eb5bc4d84ff257aabdc33f0cc6f74d8ba54530", size = 6590363, upload-time = "2023-10-23T21:23:35.583Z" }, +] + +[[package]] +name = "tensorflow" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/c9/222613c717658bbd7114966aa74d2e54440e59bf3648353d62d83ea75bdf/tensorflow-2.14.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:f6e9ac1e53db30f1759148f731f87b9d12da5ce0f153fc49406824efd486aae7", size = 229650235, upload-time = "2023-11-14T18:56:58.236Z" }, + { url = "https://files.pythonhosted.org/packages/87/58/d2fba754da2ab0f35818ab12484e5306b87e0fbd4a8e7dd4eb50bd3abaa3/tensorflow-2.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:7156bf1f7311dada7dba5345b526a38e6f4e4f4b8509bee162a24342bf6571b2", size = 2103, upload-time = "2023-11-14T18:58:35.953Z" }, + { url = "https://files.pythonhosted.org/packages/29/ff/44c46db0b42b10d284493a7942b8f3bb0257ce6537010ae0b27a6a86fd67/tensorflow-2.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5781aadad5b46e2de4e373b0ca15a852b90d58982270a6db02ec52e4986316d", size = 2116, upload-time = "2023-11-14T19:02:37.01Z" }, + { url = "https://files.pythonhosted.org/packages/99/77/4f31cd29cab69ebc344a529df48b91a14543a83b6fb90efbf82db29a34be/tensorflow-2.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a955c42164eff4d751732c1274ca4bf059db60c9e2362098ce1eed7177c3fe9", size = 489862117, upload-time = "2023-11-14T18:59:35.918Z" }, + { url = "https://files.pythonhosted.org/packages/df/84/0a67b7ad368b597fa4fc60e2ae2f0fbe9c527c6fe5dbf290236a459fe4a6/tensorflow-2.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:4be5f4327a6e854f64b4dcfd08a51c5fc7cc3fea8c76c5bf5c0c3deb002d5221", size = 2094, upload-time = "2023-11-14T19:01:35.345Z" }, +] + +[[package]] +name = "tensorflow-cpu" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/4f/ea/acd6d4c6a23de999e7fbb20d68eefa65d395df7ae16249294a02dd1772d5/tensorflow_cpu-2.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97f63588962997f2816031578450f747468f9441b17f5bbf352fc93adecc2051", size = 198216087, upload-time = "2023-11-14T19:00:57.579Z" }, +] + +[[package]] +name = "tensorflow-estimator" +version = "2.14.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/da/4f264c196325bb6e37a6285caec5b12a03def489b57cc1fdac02bb6272cd/tensorflow_estimator-2.14.0-py2.py3-none-any.whl", hash = "sha256:820bf57c24aa631abb1bbe4371739ed77edb11361d61381fd8e790115ac0fd57", size = 440664, upload-time = "2023-09-11T18:41:50.481Z" }, +] + +[[package]] +name = "tensorflow-io-gcs-filesystem" +version = "0.37.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/a3/12d7e7326a707919b321e2d6e4c88eb61596457940fd2b8ff3e9b7fac8a7/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:249c12b830165841411ba71e08215d0e94277a49c551e6dd5d72aab54fe5491b", size = 2470224, upload-time = "2024-07-01T23:44:15.341Z" }, + { url = "https://files.pythonhosted.org/packages/1c/55/3849a188cc15e58fefde20e9524d124a629a67a06b4dc0f6c881cb3c6e39/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:257aab23470a0796978efc9c2bcf8b0bc80f22e6298612a4c0a50d3f4e88060c", size = 3479613, upload-time = "2024-07-01T23:44:17.445Z" }, + { url = "https://files.pythonhosted.org/packages/e2/19/9095c69e22c879cb3896321e676c69273a549a3148c4f62aa4bc5ebdb20f/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8febbfcc67c61e542a5ac1a98c7c20a91a5e1afc2e14b1ef0cb7c28bc3b6aa70", size = 4842078, upload-time = "2024-07-01T23:44:18.977Z" }, + { url = "https://files.pythonhosted.org/packages/f3/48/47b7d25572961a48b1de3729b7a11e835b888e41e0203cca82df95d23b91/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9679b36e3a80921876f31685ab6f7270f3411a4cc51bc2847e80d0e4b5291e27", size = 5085736, upload-time = "2024-07-01T23:44:21.034Z" }, +] + +[[package]] +name = "tensorflow-macos" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/e7/d6ef26155d86bd46432a844da8913402c570e5dd32f09050d483eab70896/tensorflow_macos-2.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:5b9832df0852fa534cbd3362b6e00ba1c9d4b541fdfd987d0bba3927229435bc", size = 199676024, upload-time = "2023-11-14T19:49:08.102Z" }, +] + +[[package]] +name = "tensorflow-metal" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, + { name = "wheel" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/21/cac4d1f8fda8a30f631a60a7669ca1de2665189e060604a5e8f96a145ba6/tensorflow_metal-1.1.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:443d71b3a567fe3f45f982c4794d357b55dec01a4ff1d6d8ba152a68a2c018ab", size = 1424879, upload-time = "2023-09-29T23:36:23.591Z" }, +] + +[[package]] +name = "termcolor" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/79/cf31d7a93a8fdc6aa0fbb665be84426a8c5a557d9240b6239e9e11e35fc5/termcolor-3.3.0.tar.gz", hash = "sha256:348871ca648ec6a9a983a13ab626c0acce02f515b9e1983332b17af7979521c5", size = 14434, upload-time = "2025-12-29T12:55:21.882Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/d1/8bb87d21e9aeb323cc03034f5eaf2c8f69841e40e4853c2627edf8111ed3/termcolor-3.3.0-py3-none-any.whl", hash = "sha256:cf642efadaf0a8ebbbf4bc7a31cec2f9b5f21a9f726f4ccbb08192c9c26f43a5", size = 7734, upload-time = "2025-12-29T12:55:20.718Z" }, +] + +[[package]] +name = "terminado" +version = "0.18.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess", marker = "os_name != 'nt'" }, + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "tornado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/11/965c6fd8e5cc254f1fe142d547387da17a8ebfd75a3455f637c663fb38a0/terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e", size = 32701, upload-time = "2024-03-12T14:34:39.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0", size = 14154, upload-time = "2024-03-12T14:34:36.569Z" }, +] + +[[package]] +name = "threadpoolctl" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/4d/08c89e34946fce2aec4fbb45c9016efd5f4d7f24af8e5d93296e935631d8/threadpoolctl-3.6.0.tar.gz", hash = "sha256:8ab8b4aa3491d812b623328249fab5302a68d2d71745c8a4c719a2fcaba9f44e", size = 21274, upload-time = "2025-03-13T13:49:23.031Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl", hash = "sha256:43a0b8fd5a2928500110039e43a5eed8480b918967083ea48dc3ab9f13c4a7fb", size = 18638, upload-time = "2025-03-13T13:49:21.846Z" }, +] + +[[package]] +name = "tinycss2" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "webencodings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/fd/7a5ee21fd08ff70d3d33a5781c255cbe779659bd03278feb98b19ee550f4/tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7", size = 87085, upload-time = "2024-10-24T14:58:29.895Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289", size = 26610, upload-time = "2024-10-24T14:58:28.029Z" }, +] + +[[package]] +name = "tomli" +version = "2.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/22/de/48c59722572767841493b26183a0d1cc411d54fd759c5607c4590b6563a6/tomli-2.4.1.tar.gz", hash = "sha256:7c7e1a961a0b2f2472c1ac5b69affa0ae1132c39adcb67aba98568702b9cc23f", size = 17543, upload-time = "2026-03-25T20:22:03.828Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/61/cceae43728b7de99d9b847560c262873a1f6c98202171fd5ed62640b494b/tomli-2.4.1-py3-none-any.whl", hash = "sha256:0d85819802132122da43cb86656f8d1f8c6587d54ae7dcaf30e90533028b49fe", size = 14583, upload-time = "2026-03-25T20:22:03.012Z" }, +] + +[[package]] +name = "torch" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "networkx" }, + { name = "nvidia-cublas-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-cupti-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "sympy" }, + { name = "triton", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "typing-extensions" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/f1/13137340776dd5d5bcfd2574c9c6dfcc7618285035cd77240496e5c1a79b/torch-2.1.2-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:3a871edd6c02dae77ad810335c0833391c1a4ce49af21ea8cf0f6a5d2096eea8", size = 670178687, upload-time = "2023-12-14T21:46:00.348Z" }, + { url = "https://files.pythonhosted.org/packages/ca/dc/7817c6a2ff8f4f74255c7a11b285e5dff04f2a72f538fda647842ef87829/torch-2.1.2-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:bef6996c27d8f6e92ea4e13a772d89611da0e103b48790de78131e308cf73076", size = 84139460, upload-time = "2023-12-14T21:48:31.773Z" }, + { url = "https://files.pythonhosted.org/packages/16/bf/2ba0f0f7c07b9a14c027e181e44c58824e13f7352607ed32db18321599a2/torch-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:0e13034fd5fb323cbbc29e56d0637a3791e50dd589616f40c79adfa36a5a35a1", size = 192322127, upload-time = "2023-12-14T21:48:14.92Z" }, + { url = "https://files.pythonhosted.org/packages/a3/40/649c233606c2c7be8f90e452ebf5cf1db229127ac552b6b5260d0826e611/torch-2.1.2-cp310-none-macosx_10_9_x86_64.whl", hash = "sha256:d9b535cad0df3d13997dbe8bd68ac33e0e3ae5377639c9881948e40794a61403", size = 146996411, upload-time = "2023-12-14T21:48:42.748Z" }, + { url = "https://files.pythonhosted.org/packages/e3/43/ea958505875b22961e1277587f66b79f9e1f9d97d7998850ed089ae0d0bd/torch-2.1.2-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:f9a55d55af02826ebfbadf4e9b682f0f27766bc33df8236b48d28d705587868f", size = 59569021, upload-time = "2023-12-14T21:49:11.957Z" }, +] + +[[package]] +name = "torch-geometric" +version = "2.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "numpy" }, + { name = "psutil" }, + { name = "pyparsing" }, + { name = "requests" }, + { name = "tqdm" }, + { name = "xxhash" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/75/63/b210152635902da7fe79fcdd16517fae108f457a0ed22c737e702a9afbae/torch_geometric-2.7.0.tar.gz", hash = "sha256:f9099e4aece1a9f618c84dbaac33a77f43139736698c7e8bddf3301ef1f2e8d4", size = 876725, upload-time = "2025-10-15T20:48:03.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/d3/4dffd7300500465e0b4a2ae917dcb2ce771de0b9a772670365799a27c024/torch_geometric-2.7.0-py3-none-any.whl", hash = "sha256:6e0cd3ad824d484651ef5d308fc66c687bfcf5ba040d56d1e0fe0f81f365e292", size = 1275346, upload-time = "2025-10-15T20:48:01.949Z" }, +] + +[[package]] +name = "torchdata" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests" }, + { name = "torch" }, + { name = "urllib3" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/97/6f8f2384d9efb2d1bb6966b5300852d704f4943656360e9352e3cc3358b8/torchdata-0.7.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:042db39edbc961c50a36c45b89aea4b099858140c13746c7cc7a87b1cc219d0c", size = 1801802, upload-time = "2023-11-15T17:09:19.271Z" }, + { url = "https://files.pythonhosted.org/packages/0f/45/7c4674a8a4ac83f0e130d0991d61ff96a231656112bb7c50618d77ab0a8f/torchdata-0.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2d2c8482313dd52652caff99dc530433d898a12bb80bc33a0a4d1680d63272e0", size = 4815667, upload-time = "2023-11-15T17:08:43.478Z" }, + { url = "https://files.pythonhosted.org/packages/39/18/6f0d33df4b9fe4d44a779c2c7cc7cb042535a336f051bb0e5b5387844ee6/torchdata-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eed10b1f9265b30161a8cd129a96cfc7da202cfc70acf8b6a21fd29e18274ca3", size = 4657548, upload-time = "2023-11-15T17:09:00.144Z" }, + { url = "https://files.pythonhosted.org/packages/0e/06/0c916f27ef9f5a566b555f07c82c94fb9277fcabe0fcbf4dfe4505dcb28a/torchdata-0.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:36c591d0910ede6a496d4fccd389f27e7bccabf8b6a8722712ecf28b98bda8ae", size = 1330841, upload-time = "2023-11-15T17:09:14.414Z" }, + { url = "https://files.pythonhosted.org/packages/e2/c8/34eda2bd6beb8a11c06cf905db74092bdbc3dec51a48f4f22cc474866a0a/torchdata-0.7.1-py3-none-any.whl", hash = "sha256:9f9476a26987d90fa3f87cb09ec82b78ce6031ddcaa91851c9fa9f732a987ab8", size = 184418, upload-time = "2023-11-15T17:09:10.159Z" }, +] + +[[package]] +name = "torchmetrics" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "lightning-utilities" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "torch" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/81/34/39b8b749333db56c0585d7a11fa62a283c087bb1dfc897d69fb8cedbefb1/torchmetrics-1.9.0.tar.gz", hash = "sha256:a488609948600df52d3db4fcdab02e62aab2a85ef34da67037dc3e65b8512faa", size = 581765, upload-time = "2026-03-09T17:41:22.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c3/a2/c7f6ebf546f8f644edf0f999aa98ece106986a77a7b922316bf6414ff825/torchmetrics-1.9.0-py3-none-any.whl", hash = "sha256:bfdcbff3dd1d96b3374bb2496eb39f23c4b28b8a845b6a18c313688e0d2d9ca1", size = 983384, upload-time = "2026-03-09T17:41:19.756Z" }, +] + +[[package]] +name = "tornado" +version = "6.5.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/f1/3173dfa4a18db4a9b03e5d55325559dab51ee653763bb8745a75af491286/tornado-6.5.5.tar.gz", hash = "sha256:192b8f3ea91bd7f1f50c06955416ed76c6b72f96779b962f07f911b91e8d30e9", size = 516006, upload-time = "2026-03-10T21:31:02.067Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/59/8c/77f5097695f4dd8255ecbd08b2a1ed8ba8b953d337804dd7080f199e12bf/tornado-6.5.5-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:487dc9cc380e29f58c7ab88f9e27cdeef04b2140862e5076a66fb6bb68bb1bfa", size = 445983, upload-time = "2026-03-10T21:30:44.28Z" }, + { url = "https://files.pythonhosted.org/packages/ab/5e/7625b76cd10f98f1516c36ce0346de62061156352353ef2da44e5c21523c/tornado-6.5.5-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:65a7f1d46d4bb41df1ac99f5fcb685fb25c7e61613742d5108b010975a9a6521", size = 444246, upload-time = "2026-03-10T21:30:46.571Z" }, + { url = "https://files.pythonhosted.org/packages/b2/04/7b5705d5b3c0fab088f434f9c83edac1573830ca49ccf29fb83bf7178eec/tornado-6.5.5-cp39-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:e74c92e8e65086b338fd56333fb9a68b9f6f2fe7ad532645a290a464bcf46be5", size = 447229, upload-time = "2026-03-10T21:30:48.273Z" }, + { url = "https://files.pythonhosted.org/packages/34/01/74e034a30ef59afb4097ef8659515e96a39d910b712a89af76f5e4e1f93c/tornado-6.5.5-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:435319e9e340276428bbdb4e7fa732c2d399386d1de5686cb331ec8eee754f07", size = 448192, upload-time = "2026-03-10T21:30:51.22Z" }, + { url = "https://files.pythonhosted.org/packages/be/00/fe9e02c5a96429fce1a1d15a517f5d8444f9c412e0bb9eadfbe3b0fc55bf/tornado-6.5.5-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:3f54aa540bdbfee7b9eb268ead60e7d199de5021facd276819c193c0fb28ea4e", size = 448039, upload-time = "2026-03-10T21:30:53.52Z" }, + { url = "https://files.pythonhosted.org/packages/82/9e/656ee4cec0398b1d18d0f1eb6372c41c6b889722641d84948351ae19556d/tornado-6.5.5-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:36abed1754faeb80fbd6e64db2758091e1320f6bba74a4cf8c09cd18ccce8aca", size = 447445, upload-time = "2026-03-10T21:30:55.541Z" }, + { url = "https://files.pythonhosted.org/packages/5a/76/4921c00511f88af86a33de770d64141170f1cfd9c00311aea689949e274e/tornado-6.5.5-cp39-abi3-win32.whl", hash = "sha256:dd3eafaaeec1c7f2f8fdcd5f964e8907ad788fe8a5a32c4426fbbdda621223b7", size = 448582, upload-time = "2026-03-10T21:30:57.142Z" }, + { url = "https://files.pythonhosted.org/packages/2c/23/f6c6112a04d28eed765e374435fb1a9198f73e1ec4b4024184f21faeb1ad/tornado-6.5.5-cp39-abi3-win_amd64.whl", hash = "sha256:6443a794ba961a9f619b1ae926a2e900ac20c34483eea67be4ed8f1e58d3ef7b", size = 448990, upload-time = "2026-03-10T21:30:58.857Z" }, + { url = "https://files.pythonhosted.org/packages/b7/c8/876602cbc96469911f0939f703453c1157b0c826ecb05bdd32e023397d4e/tornado-6.5.5-cp39-abi3-win_arm64.whl", hash = "sha256:2c9a876e094109333f888539ddb2de4361743e5d21eece20688e3e351e4990a6", size = 448016, upload-time = "2026-03-10T21:31:00.43Z" }, +] + +[[package]] +name = "tqdm" +version = "4.67.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/09/a9/6ba95a270c6f1fbcd8dac228323f2777d886cb206987444e4bce66338dd4/tqdm-4.67.3.tar.gz", hash = "sha256:7d825f03f89244ef73f1d4ce193cb1774a8179fd96f31d7e1dcde62092b960bb", size = 169598, upload-time = "2026-02-03T17:35:53.048Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/16/e1/3079a9ff9b8e11b846c6ac5c8b5bfb7ff225eee721825310c91b3b50304f/tqdm-4.67.3-py3-none-any.whl", hash = "sha256:ee1e4c0e59148062281c49d80b25b67771a127c85fc9676d3be5f243206826bf", size = 78374, upload-time = "2026-02-03T17:35:50.982Z" }, +] + +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621, upload-time = "2024-04-19T11:11:49.746Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359, upload-time = "2024-04-19T11:11:46.763Z" }, +] + +[[package]] +name = "triton" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/22/91a8af421c8a8902dde76e6ef3db01b258af16c53d81e8c0d0dc13900a9e/triton-2.1.0-0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:66439923a30d5d48399b08a9eae10370f6c261a5ec864a64983bae63152d39d7", size = 89215103, upload-time = "2023-09-01T07:26:13.625Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, +] + +[[package]] +name = "tzdata" +version = "2026.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/19/f5/cd531b2d15a671a40c0f66cf06bc3570a12cd56eef98960068ebbad1bf5a/tzdata-2026.1.tar.gz", hash = "sha256:67658a1903c75917309e753fdc349ac0efd8c27db7a0cb406a25be4840f87f98", size = 197639, upload-time = "2026-04-03T11:25:22.002Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/70/d460bd685a170790ec89317e9bd33047988e4bce507b831f5db771e142de/tzdata-2026.1-py2.py3-none-any.whl", hash = "sha256:4b1d2be7ac37ceafd7327b961aa3a54e467efbdb563a23655fbfe0d39cfc42a9", size = 348952, upload-time = "2026-04-03T11:25:20.313Z" }, +] + +[[package]] +name = "umap-learn" +version = "0.5.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numba" }, + { name = "numpy" }, + { name = "pynndescent" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/d4/9ed627905f7993349671283b3c5bf2d9f543ef79229fa1c7e01324eb900c/umap-learn-0.5.7.tar.gz", hash = "sha256:b2a97973e4c6ffcebf241100a8de589a4c84126a832ab40f296c6d9fcc5eb19e", size = 92680, upload-time = "2024-10-28T18:05:57.093Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/8f/671c0e1f2572ba625cbcc1faeba9435e00330c3d6962858711445cf1e817/umap_learn-0.5.7-py3-none-any.whl", hash = "sha256:6a7e0be2facfa365a5ed6588447102bdbef32a0ef449535c25c97ea7e680073c", size = 88815, upload-time = "2024-10-28T18:05:55.333Z" }, +] + +[[package]] +name = "uri-template" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/31/c7/0336f2bd0bcbada6ccef7aaa25e443c118a704f828a0620c6fa0207c1b64/uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7", size = 21678, upload-time = "2023-06-21T01:49:05.374Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363", size = 11140, upload-time = "2023-06-21T01:49:03.467Z" }, +] + +[[package]] +name = "urllib3" +version = "2.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, +] + +[[package]] +name = "wcwidth" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/a2/8e3becb46433538a38726c948d3399905a4c7cabd0df578ede5dc51f0ec2/wcwidth-0.6.0.tar.gz", hash = "sha256:cdc4e4262d6ef9a1a57e018384cbeb1208d8abbc64176027e2c2455c81313159", size = 159684, upload-time = "2026-02-06T19:19:40.919Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/5a/199c59e0a824a3db2b89c5d2dade7ab5f9624dbf6448dc291b46d5ec94d3/wcwidth-0.6.0-py3-none-any.whl", hash = "sha256:1a3a1e510b553315f8e146c54764f4fb6264ffad731b3d78088cdb1478ffbdad", size = 94189, upload-time = "2026-02-06T19:19:39.646Z" }, +] + +[[package]] +name = "webcolors" +version = "25.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/7a/eb316761ec35664ea5174709a68bbd3389de60d4a1ebab8808bfc264ed67/webcolors-25.10.0.tar.gz", hash = "sha256:62abae86504f66d0f6364c2a8520de4a0c47b80c03fc3a5f1815fedbef7c19bf", size = 53491, upload-time = "2025-10-31T07:51:03.977Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/cc/e097523dd85c9cf5d354f78310927f1656c422bd7b2613b2db3e3f9a0f2c/webcolors-25.10.0-py3-none-any.whl", hash = "sha256:032c727334856fc0b968f63daa252a1ac93d33db2f5267756623c210e57a4f1d", size = 14905, upload-time = "2025-10-31T07:51:01.778Z" }, +] + +[[package]] +name = "webencodings" +version = "0.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923", size = 9721, upload-time = "2017-04-05T20:21:34.189Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78", size = 11774, upload-time = "2017-04-05T20:21:32.581Z" }, +] + +[[package]] +name = "websocket-client" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2c/41/aa4bf9664e4cda14c3b39865b12251e8e7d239f4cd0e3cc1b6c2ccde25c1/websocket_client-1.9.0.tar.gz", hash = "sha256:9e813624b6eb619999a97dc7958469217c3176312b3a16a4bd1bc7e08a46ec98", size = 70576, upload-time = "2025-10-07T21:16:36.495Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl", hash = "sha256:af248a825037ef591efbf6ed20cc5faa03d3b47b9e5a2230a529eeee1c1fc3ef", size = 82616, upload-time = "2025-10-07T21:16:34.951Z" }, +] + +[[package]] +name = "werkzeug" +version = "3.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/dd/b2/381be8cfdee792dd117872481b6e378f85c957dd7c5bca38897b08f765fd/werkzeug-3.1.8.tar.gz", hash = "sha256:9bad61a4268dac112f1c5cd4630a56ede601b6ed420300677a869083d70a4c44", size = 875852, upload-time = "2026-04-02T18:49:14.268Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/8c/2e650f2afeb7ee576912636c23ddb621c91ac6a98e66dc8d29c3c69446e1/werkzeug-3.1.8-py3-none-any.whl", hash = "sha256:63a77fb8892bf28ebc3178683445222aa500e48ebad5ec77b0ad80f8726b1f50", size = 226459, upload-time = "2026-04-02T18:49:12.72Z" }, +] + +[[package]] +name = "wheel" +version = "0.46.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/89/24/a2eb353a6edac9a0303977c4cb048134959dd2a51b48a269dfc9dde00c8a/wheel-0.46.3.tar.gz", hash = "sha256:e3e79874b07d776c40bd6033f8ddf76a7dad46a7b8aa1b2787a83083519a1803", size = 60605, upload-time = "2026-01-22T12:39:49.136Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/22/b76d483683216dde3d67cba61fb2444be8d5be289bf628c13fc0fd90e5f9/wheel-0.46.3-py3-none-any.whl", hash = "sha256:4b399d56c9d9338230118d705d9737a2a468ccca63d5e813e2a4fc7815d8bc4d", size = 30557, upload-time = "2026-01-22T12:39:48.099Z" }, +] + +[[package]] +name = "widgetsnbextension" +version = "4.0.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/f4/c67440c7fb409a71b7404b7aefcd7569a9c0d6bd071299bf4198ae7a5d95/widgetsnbextension-4.0.15.tar.gz", hash = "sha256:de8610639996f1567952d763a5a41af8af37f2575a41f9852a38f947eb82a3b9", size = 1097402, upload-time = "2025-11-01T21:15:55.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/0e/fa3b193432cfc60c93b42f3be03365f5f909d2b3ea410295cf36df739e31/widgetsnbextension-4.0.15-py3-none-any.whl", hash = "sha256:8156704e4346a571d9ce73b84bee86a29906c9abfd7223b7228a28899ccf3366", size = 2196503, upload-time = "2025-11-01T21:15:53.565Z" }, +] + +[[package]] +name = "wrapt" +version = "1.14.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/23/49/925324e2eaa0c83c45b7a1eb31004af4ad7b37fdc1d9e897ea7d551215da/wrapt-1.14.2.tar.gz", hash = "sha256:19d33781d891c99b5a35f810656d2fe01765b35ccfb6d395007d2edb1058d98f", size = 50701, upload-time = "2025-08-12T06:59:02.334Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ad/3f/12f70730cf9237e07aa5887bdb3e3695fd68e7e0d6dd66b5dd7a8794724a/wrapt-1.14.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:734de7e0182d15f03eb4f4fce0ff7f07a072119a19cdcc97c40aee96d10fe851", size = 35836, upload-time = "2025-08-12T06:58:20.535Z" }, + { url = "https://files.pythonhosted.org/packages/f1/95/5e261ed720bdddf9bbfea2b9bbd30bd03e298b02267333a231592a0cef7b/wrapt-1.14.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:851ded3662733bab093297a0adb844c71e7754b8c144f76bb569ac6544a7c27a", size = 76907, upload-time = "2025-08-12T06:58:39.06Z" }, + { url = "https://files.pythonhosted.org/packages/18/ed/fcf75886924473ebc11ded6f589f9f715bd605a787201e8b9b1f34b958a7/wrapt-1.14.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4f7b9a0364edef5a3033307cde69f7c3775a74eb83caeff8955e72ec3e0963fe", size = 77665, upload-time = "2025-08-12T06:58:29.329Z" }, + { url = "https://files.pythonhosted.org/packages/16/de/e9205650d0c8401c4e2cc2a01edc89ce3fabda219e2efabcc71d92d02a70/wrapt-1.14.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3066203bf6e35a040c848143636e6fc2aa4ad6fb2b027a956f462083a3b635ea", size = 76401, upload-time = "2025-08-12T06:58:30.309Z" }, + { url = "https://files.pythonhosted.org/packages/ba/e6/e3b79ba90e7b3a7c1915dbecb84aa491dc0a16238216dae5137bb0d85689/wrapt-1.14.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:072684f6264ca83695d1c7ad601e61b17953351b0950790cd50c327402006492", size = 76360, upload-time = "2025-08-12T06:58:40.019Z" }, + { url = "https://files.pythonhosted.org/packages/35/07/fe53594e194b133b29b0808c40f1ad92773186c314dbb5b1bf5bb9a4e34a/wrapt-1.14.2-cp310-cp310-win32.whl", hash = "sha256:26c36d922c70de7ae7e933d0f9a10b4017d007d505f60fe02efa8e260a6c7af4", size = 33681, upload-time = "2025-08-12T06:58:52.611Z" }, + { url = "https://files.pythonhosted.org/packages/12/68/134031baba6e1ba7dbdf2a217e99feb7177a2ad860b19f3ba319d40e0baf/wrapt-1.14.2-cp310-cp310-win_amd64.whl", hash = "sha256:ead0c5373df2c551347c7f71903a6403efb391506e1e349704ec21fe797e59bf", size = 35811, upload-time = "2025-08-12T06:58:51.696Z" }, + { url = "https://files.pythonhosted.org/packages/b7/c7/7376998449689cf2adbdbeacad47084410d00f3ae04cf73e6127cf52b950/wrapt-1.14.2-py3-none-any.whl", hash = "sha256:82eea3b559f51f22aefc530b747b87406811ef00cb0c4734f48cb139c748db63", size = 21577, upload-time = "2025-08-12T06:59:01.408Z" }, +] + +[[package]] +name = "xgboost" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "nvidia-nccl-cu12", marker = "sys_platform == 'linux'" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/91/bb/1eb0242409d22db725d7a88088e6cfd6556829fb0736f9ff69aa9f1e9455/xgboost-3.2.0.tar.gz", hash = "sha256:99b0e9a2a64896cdaf509c5e46372d336c692406646d20f2af505003c0c5d70d", size = 1263936, upload-time = "2026-02-10T11:03:05.542Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/49/6e4cdd877c24adf56cb3586bc96d93d4dcd780b5ea1efb32e1ee0de08bae/xgboost-3.2.0-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:2f661966d3e322536d9c448090a870fcba1e32ee5760c10b7c46bac7a342079a", size = 2507014, upload-time = "2026-02-10T10:50:57.44Z" }, + { url = "https://files.pythonhosted.org/packages/93/f1/c09ef1add609453aa3ba5bafcd0d1c1a805c1263c0b60138ec968f8ec296/xgboost-3.2.0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:eabbd40d474b8dbf6cb3536325f9150b9e6f0db32d18de9914fb3227d0bef5b7", size = 2328527, upload-time = "2026-02-10T10:51:17.502Z" }, + { url = "https://files.pythonhosted.org/packages/96/9f/d9914a7b8df842832850b1a18e5f47aaa071c217cdd1da2ae9deb291018b/xgboost-3.2.0-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:852eabc6d3b3702a59bf78dbfdcd1cb9c4d3a3b6e5ed1f8781d8b9512354fdd2", size = 131100954, upload-time = "2026-02-10T11:02:42.704Z" }, + { url = "https://files.pythonhosted.org/packages/79/98/679de17c2caa4fd3b0b4386ecf7377301702cb0afb22930a07c142fcb1d8/xgboost-3.2.0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:99b4a6bbcb47212fec5cf5fbe12347215f073c08967431b0122cfbd1ee70312c", size = 131748579, upload-time = "2026-02-10T10:54:40.424Z" }, + { url = "https://files.pythonhosted.org/packages/1f/3d/1661dd114a914a67e3f7ab66fa1382e7599c2a8c340f314ad30a3e2b4d08/xgboost-3.2.0-py3-none-win_amd64.whl", hash = "sha256:0d169736fd836fc13646c7ab787167b3a8110351c2c6bc770c755ee1618f0442", size = 101681668, upload-time = "2026-02-10T10:59:31.202Z" }, +] + +[[package]] +name = "xxhash" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/02/84/30869e01909fb37a6cc7e18688ee8bf1e42d57e7e0777636bd47524c43c7/xxhash-3.6.0.tar.gz", hash = "sha256:f0162a78b13a0d7617b2845b90c763339d1f1d82bb04a4b07f4ab535cc5e05d6", size = 85160, upload-time = "2025-10-02T14:37:08.097Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/ee/f9f1d656ad168681bb0f6b092372c1e533c4416b8069b1896a175c46e484/xxhash-3.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:87ff03d7e35c61435976554477a7f4cd1704c3596a89a8300d5ce7fc83874a71", size = 32845, upload-time = "2025-10-02T14:33:51.573Z" }, + { url = "https://files.pythonhosted.org/packages/a3/b1/93508d9460b292c74a09b83d16750c52a0ead89c51eea9951cb97a60d959/xxhash-3.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f572dfd3d0e2eb1a57511831cf6341242f5a9f8298a45862d085f5b93394a27d", size = 30807, upload-time = "2025-10-02T14:33:52.964Z" }, + { url = "https://files.pythonhosted.org/packages/07/55/28c93a3662f2d200c70704efe74aab9640e824f8ce330d8d3943bf7c9b3c/xxhash-3.6.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:89952ea539566b9fed2bbd94e589672794b4286f342254fad28b149f9615fef8", size = 193786, upload-time = "2025-10-02T14:33:54.272Z" }, + { url = "https://files.pythonhosted.org/packages/c1/96/fec0be9bb4b8f5d9c57d76380a366f31a1781fb802f76fc7cda6c84893c7/xxhash-3.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:48e6f2ffb07a50b52465a1032c3cf1f4a5683f944acaca8a134a2f23674c2058", size = 212830, upload-time = "2025-10-02T14:33:55.706Z" }, + { url = "https://files.pythonhosted.org/packages/c4/a0/c706845ba77b9611f81fd2e93fad9859346b026e8445e76f8c6fd057cc6d/xxhash-3.6.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b5b848ad6c16d308c3ac7ad4ba6bede80ed5df2ba8ed382f8932df63158dd4b2", size = 211606, upload-time = "2025-10-02T14:33:57.133Z" }, + { url = "https://files.pythonhosted.org/packages/67/1e/164126a2999e5045f04a69257eea946c0dc3e86541b400d4385d646b53d7/xxhash-3.6.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a034590a727b44dd8ac5914236a7b8504144447a9682586c3327e935f33ec8cc", size = 444872, upload-time = "2025-10-02T14:33:58.446Z" }, + { url = "https://files.pythonhosted.org/packages/2d/4b/55ab404c56cd70a2cf5ecfe484838865d0fea5627365c6c8ca156bd09c8f/xxhash-3.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8a8f1972e75ebdd161d7896743122834fe87378160c20e97f8b09166213bf8cc", size = 193217, upload-time = "2025-10-02T14:33:59.724Z" }, + { url = "https://files.pythonhosted.org/packages/45/e6/52abf06bac316db33aa269091ae7311bd53cfc6f4b120ae77bac1b348091/xxhash-3.6.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ee34327b187f002a596d7b167ebc59a1b729e963ce645964bbc050d2f1b73d07", size = 210139, upload-time = "2025-10-02T14:34:02.041Z" }, + { url = "https://files.pythonhosted.org/packages/34/37/db94d490b8691236d356bc249c08819cbcef9273a1a30acf1254ff9ce157/xxhash-3.6.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:339f518c3c7a850dd033ab416ea25a692759dc7478a71131fe8869010d2b75e4", size = 197669, upload-time = "2025-10-02T14:34:03.664Z" }, + { url = "https://files.pythonhosted.org/packages/b7/36/c4f219ef4a17a4f7a64ed3569bc2b5a9c8311abdb22249ac96093625b1a4/xxhash-3.6.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:bf48889c9630542d4709192578aebbd836177c9f7a4a2778a7d6340107c65f06", size = 210018, upload-time = "2025-10-02T14:34:05.325Z" }, + { url = "https://files.pythonhosted.org/packages/fd/06/bfac889a374fc2fc439a69223d1750eed2e18a7db8514737ab630534fa08/xxhash-3.6.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:5576b002a56207f640636056b4160a378fe36a58db73ae5c27a7ec8db35f71d4", size = 413058, upload-time = "2025-10-02T14:34:06.925Z" }, + { url = "https://files.pythonhosted.org/packages/c9/d1/555d8447e0dd32ad0930a249a522bb2e289f0d08b6b16204cfa42c1f5a0c/xxhash-3.6.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:af1f3278bd02814d6dedc5dec397993b549d6f16c19379721e5a1d31e132c49b", size = 190628, upload-time = "2025-10-02T14:34:08.669Z" }, + { url = "https://files.pythonhosted.org/packages/d1/15/8751330b5186cedc4ed4b597989882ea05e0408b53fa47bcb46a6125bfc6/xxhash-3.6.0-cp310-cp310-win32.whl", hash = "sha256:aed058764db109dc9052720da65fafe84873b05eb8b07e5e653597951af57c3b", size = 30577, upload-time = "2025-10-02T14:34:10.234Z" }, + { url = "https://files.pythonhosted.org/packages/bb/cc/53f87e8b5871a6eb2ff7e89c48c66093bda2be52315a8161ddc54ea550c4/xxhash-3.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:e82da5670f2d0d98950317f82a0e4a0197150ff19a6df2ba40399c2a3b9ae5fb", size = 31487, upload-time = "2025-10-02T14:34:11.618Z" }, + { url = "https://files.pythonhosted.org/packages/9f/00/60f9ea3bb697667a14314d7269956f58bf56bb73864f8f8d52a3c2535e9a/xxhash-3.6.0-cp310-cp310-win_arm64.whl", hash = "sha256:4a082ffff8c6ac07707fb6b671caf7c6e020c75226c561830b73d862060f281d", size = 27863, upload-time = "2025-10-02T14:34:12.619Z" }, +] + +[[package]] +name = "xyzservices" +version = "2026.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/08/3cb9f67a8d48021aca2a02292cc26eecd71d949ae70ad66420a8730cc302/xyzservices-2026.3.0.tar.gz", hash = "sha256:d226866a5d8e9fef337034d8da37a8298f0a1d9d1489b4018e69579eb321fea4", size = 1135736, upload-time = "2026-03-30T14:42:25.596Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/a9/d23012099dc88ec69a29c6407b41d89681cb674c2043cd5b467c7e299c08/xyzservices-2026.3.0-py3-none-any.whl", hash = "sha256:503183d4b322bfebc3c50cdd21192aa3e81e36c5efbf9133d54ae82143e0576b", size = 94101, upload-time = "2026-03-30T14:42:24.608Z" }, +] + +[[package]] +name = "yarl" +version = "1.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "multidict" }, + { name = "propcache" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/23/6e/beb1beec874a72f23815c1434518bfc4ed2175065173fb138c3705f658d4/yarl-1.23.0.tar.gz", hash = "sha256:53b1ea6ca88ebd4420379c330aea57e258408dd0df9af0992e5de2078dc9f5d5", size = 194676, upload-time = "2026-03-01T22:07:53.373Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/0d/9cc638702f6fc3c7a3685bcc8cf2a9ed7d6206e932a49f5242658047ef51/yarl-1.23.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cff6d44cb13d39db2663a22b22305d10855efa0fa8015ddeacc40bc59b9d8107", size = 123764, upload-time = "2026-03-01T22:04:09.7Z" }, + { url = "https://files.pythonhosted.org/packages/7a/35/5a553687c5793df5429cd1db45909d4f3af7eee90014888c208d086a44f0/yarl-1.23.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e4c53f8347cd4200f0d70a48ad059cabaf24f5adc6ba08622a23423bc7efa10d", size = 86282, upload-time = "2026-03-01T22:04:11.892Z" }, + { url = "https://files.pythonhosted.org/packages/68/2e/c5a2234238f8ce37a8312b52801ee74117f576b1539eec8404a480434acc/yarl-1.23.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2a6940a074fb3c48356ed0158a3ca5699c955ee4185b4d7d619be3c327143e05", size = 86053, upload-time = "2026-03-01T22:04:13.292Z" }, + { url = "https://files.pythonhosted.org/packages/74/3f/bbd8ff36fb038622797ffbaf7db314918bb4d76f1cc8a4f9ca7a55fe5195/yarl-1.23.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ed5f69ce7be7902e5c70ea19eb72d20abf7d725ab5d49777d696e32d4fc1811d", size = 99395, upload-time = "2026-03-01T22:04:15.133Z" }, + { url = "https://files.pythonhosted.org/packages/77/04/9516bc4e269d2a3ec9c6779fcdeac51ce5b3a9b0156f06ac7152e5bba864/yarl-1.23.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:389871e65468400d6283c0308e791a640b5ab5c83bcee02a2f51295f95e09748", size = 92143, upload-time = "2026-03-01T22:04:16.829Z" }, + { url = "https://files.pythonhosted.org/packages/c7/63/88802d1f6b1cb1fc67d67a58cd0cf8a1790de4ce7946e434240f1d60ab4a/yarl-1.23.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:dda608c88cf709b1d406bdfcd84d8d63cff7c9e577a403c6108ce8ce9dcc8764", size = 107643, upload-time = "2026-03-01T22:04:18.519Z" }, + { url = "https://files.pythonhosted.org/packages/8e/db/4f9b838f4d8bdd6f0f385aed8bbf21c71ed11a0b9983305c302cbd557815/yarl-1.23.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8c4fe09e0780c6c3bf2b7d4af02ee2394439d11a523bbcf095cf4747c2932007", size = 108700, upload-time = "2026-03-01T22:04:20.373Z" }, + { url = "https://files.pythonhosted.org/packages/50/12/95a1d33f04a79c402664070d43b8b9f72dc18914e135b345b611b0b1f8cc/yarl-1.23.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:31c9921eb8bd12633b41ad27686bbb0b1a2a9b8452bfdf221e34f311e9942ed4", size = 102769, upload-time = "2026-03-01T22:04:23.055Z" }, + { url = "https://files.pythonhosted.org/packages/86/65/91a0285f51321369fd1a8308aa19207520c5f0587772cfc2e03fc2467e90/yarl-1.23.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5f10fd85e4b75967468af655228fbfd212bdf66db1c0d135065ce288982eda26", size = 101114, upload-time = "2026-03-01T22:04:25.031Z" }, + { url = "https://files.pythonhosted.org/packages/58/80/c7c8244fc3e5bc483dc71a09560f43b619fab29301a0f0a8f936e42865c7/yarl-1.23.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dbf507e9ef5688bada447a24d68b4b58dd389ba93b7afc065a2ba892bea54769", size = 98883, upload-time = "2026-03-01T22:04:27.281Z" }, + { url = "https://files.pythonhosted.org/packages/86/e7/71ca9cc9ca79c0b7d491216177d1aed559d632947b8ffb0ee60f7d8b23e3/yarl-1.23.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:85e9beda1f591bc73e77ea1c51965c68e98dafd0fec72cdd745f77d727466716", size = 94172, upload-time = "2026-03-01T22:04:28.554Z" }, + { url = "https://files.pythonhosted.org/packages/6a/3f/6c6c8a0fe29c26fb2db2e8d32195bb84ec1bfb8f1d32e7f73b787fcf349b/yarl-1.23.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:0e1fdaa14ef51366d7757b45bde294e95f6c8c049194e793eedb8387c86d5993", size = 107010, upload-time = "2026-03-01T22:04:30.385Z" }, + { url = "https://files.pythonhosted.org/packages/56/38/12730c05e5ad40a76374d440ed8b0899729a96c250516d91c620a6e38fc2/yarl-1.23.0-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:75e3026ab649bf48f9a10c0134512638725b521340293f202a69b567518d94e0", size = 100285, upload-time = "2026-03-01T22:04:31.752Z" }, + { url = "https://files.pythonhosted.org/packages/34/92/6a7be9239f2347234e027284e7a5f74b1140cc86575e7b469d13fba1ebfe/yarl-1.23.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:80e6d33a3d42a7549b409f199857b4fb54e2103fc44fb87605b6663b7a7ff750", size = 108230, upload-time = "2026-03-01T22:04:33.844Z" }, + { url = "https://files.pythonhosted.org/packages/5e/81/4aebccfa9376bd98b9d8bfad20621a57d3e8cfc5b8631c1fa5f62cdd03f4/yarl-1.23.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5ec2f42d41ccbd5df0270d7df31618a8ee267bfa50997f5d720ddba86c4a83a6", size = 103008, upload-time = "2026-03-01T22:04:35.856Z" }, + { url = "https://files.pythonhosted.org/packages/38/0f/0b4e3edcec794a86b853b0c6396c0a888d72dfce19b2d88c02ac289fb6c1/yarl-1.23.0-cp310-cp310-win32.whl", hash = "sha256:debe9c4f41c32990771be5c22b56f810659f9ddf3d63f67abfdcaa2c6c9c5c1d", size = 83073, upload-time = "2026-03-01T22:04:38.268Z" }, + { url = "https://files.pythonhosted.org/packages/a0/71/ad95c33da18897e4c636528bbc24a1dd23fe16797de8bc4ec667b8db0ba4/yarl-1.23.0-cp310-cp310-win_amd64.whl", hash = "sha256:ab5f043cb8a2d71c981c09c510da013bc79fd661f5c60139f00dd3c3cc4f2ffb", size = 87328, upload-time = "2026-03-01T22:04:39.558Z" }, + { url = "https://files.pythonhosted.org/packages/e2/14/dfa369523c79bccf9c9c746b0a63eb31f65db9418ac01275f7950962e504/yarl-1.23.0-cp310-cp310-win_arm64.whl", hash = "sha256:263cd4f47159c09b8b685890af949195b51d1aa82ba451c5847ca9bc6413c220", size = 82463, upload-time = "2026-03-01T22:04:41.454Z" }, + { url = "https://files.pythonhosted.org/packages/69/68/c8739671f5699c7dc470580a4f821ef37c32c4cb0b047ce223a7f115757f/yarl-1.23.0-py3-none-any.whl", hash = "sha256:a2df6afe50dea8ae15fa34c9f824a3ee958d785fd5d089063d960bae1daa0a3f", size = 48288, upload-time = "2026-03-01T22:07:51.388Z" }, +] diff --git a/uv.lock.cuda b/uv.lock.cuda new file mode 100644 index 00000000..06be863c --- /dev/null +++ b/uv.lock.cuda @@ -0,0 +1,3859 @@ +version = 1 +revision = 3 +requires-python = "==3.10.*" + +[[package]] +name = "absl-py" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/64/c7/8de93764ad66968d19329a7e0c147a2bb3c7054c554d4a119111b8f9440f/absl_py-2.4.0.tar.gz", hash = "sha256:8c6af82722b35cf71e0f4d1d47dcaebfff286e27110a99fc359349b247dfb5d4", size = 116543, upload-time = "2026-01-28T10:17:05.322Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/a6/907a406bb7d359e6a63f99c313846d9eec4f7e6f7437809e03aa00fa3074/absl_py-2.4.0-py3-none-any.whl", hash = "sha256:88476fd881ca8aab94ffa78b7b6c632a782ab3ba1cd19c9bd423abc4fb4cd28d", size = 135750, upload-time = "2026-01-28T10:17:04.19Z" }, +] + +[[package]] +name = "affine" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/98/d2f0bb06385069e799fc7d2870d9e078cfa0fa396dc8a2b81227d0da08b9/affine-2.4.0.tar.gz", hash = "sha256:a24d818d6a836c131976d22f8c27b8d3ca32d0af64c1d8d29deb7bafa4da1eea", size = 17132, upload-time = "2023-01-19T23:44:30.696Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/f7/85273299ab57117850cc0a936c64151171fac4da49bc6fba0dad984a7c5f/affine-2.4.0-py3-none-any.whl", hash = "sha256:8a3df80e2b2378aef598a83c1392efd47967afec4242021a0b06b4c7cbc61a92", size = 15662, upload-time = "2023-01-19T23:44:28.833Z" }, +] + +[[package]] +name = "aiohappyeyeballs" +version = "2.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/30/f84a107a9c4331c14b2b586036f40965c128aa4fee4dda5d3d51cb14ad54/aiohappyeyeballs-2.6.1.tar.gz", hash = "sha256:c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558", size = 22760, upload-time = "2025-03-12T01:42:48.764Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/15/5bf3b99495fb160b63f95972b81750f18f7f4e02ad051373b669d17d44f2/aiohappyeyeballs-2.6.1-py3-none-any.whl", hash = "sha256:f349ba8f4b75cb25c99c5c2d84e997e485204d2902a9597802b0371f09331fb8", size = 15265, upload-time = "2025-03-12T01:42:47.083Z" }, +] + +[[package]] +name = "aiohttp" +version = "3.13.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs" }, + { name = "aiosignal" }, + { name = "async-timeout" }, + { name = "attrs" }, + { name = "frozenlist" }, + { name = "multidict" }, + { name = "propcache" }, + { name = "yarl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/77/9a/152096d4808df8e4268befa55fba462f440f14beab85e8ad9bf990516918/aiohttp-3.13.5.tar.gz", hash = "sha256:9d98cc980ecc96be6eb4c1994ce35d28d8b1f5e5208a23b421187d1209dbb7d1", size = 7858271, upload-time = "2026-03-31T22:01:03.343Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/85/cebc47ee74d8b408749073a1a46c6fcba13d170dc8af7e61996c6c9394ac/aiohttp-3.13.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:02222e7e233295f40e011c1b00e3b0bd451f22cf853a0304c3595633ee47da4b", size = 750547, upload-time = "2026-03-31T21:56:30.024Z" }, + { url = "https://files.pythonhosted.org/packages/05/98/afd308e35b9d3d8c9ec54c0918f1d722c86dc17ddfec272fcdbcce5a3124/aiohttp-3.13.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bace460460ed20614fa6bc8cb09966c0b8517b8c58ad8046828c6078d25333b5", size = 503535, upload-time = "2026-03-31T21:56:31.935Z" }, + { url = "https://files.pythonhosted.org/packages/6f/4d/926c183e06b09d5270a309eb50fbde7b09782bfd305dec1e800f329834fb/aiohttp-3.13.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f546a4dc1e6a5edbb9fd1fd6ad18134550e096a5a43f4ad74acfbd834fc6670", size = 497830, upload-time = "2026-03-31T21:56:33.654Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d6/f47d1c690f115a5c2a5e8938cce4a232a5be9aac5c5fb2647efcbbbda333/aiohttp-3.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c86969d012e51b8e415a8c6ce96f7857d6a87d6207303ab02d5d11ef0cad2274", size = 1682474, upload-time = "2026-03-31T21:56:35.513Z" }, + { url = "https://files.pythonhosted.org/packages/01/44/056fd37b1bb52eac760303e5196acc74d9d546631b035704ae5927f7b4ac/aiohttp-3.13.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b6f6cd1560c5fa427e3b6074bb24d2c64e225afbb7165008903bd42e4e33e28a", size = 1655259, upload-time = "2026-03-31T21:56:37.843Z" }, + { url = "https://files.pythonhosted.org/packages/91/9f/78eb1a20c1c28ae02f6a3c0f4d7b0dcc66abce5290cadd53d78ce3084175/aiohttp-3.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:636bc362f0c5bbc7372bc3ae49737f9e3030dbce469f0f422c8f38079780363d", size = 1736204, upload-time = "2026-03-31T21:56:39.822Z" }, + { url = "https://files.pythonhosted.org/packages/de/6c/d20d7de23f0b52b8c1d9e2033b2db1ac4dacbb470bb74c56de0f5f86bb4f/aiohttp-3.13.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6a7cbeb06d1070f1d14895eeeed4dac5913b22d7b456f2eb969f11f4b3993796", size = 1826198, upload-time = "2026-03-31T21:56:41.378Z" }, + { url = "https://files.pythonhosted.org/packages/2f/86/a6f3ff1fd795f49545a7c74b2c92f62729135d73e7e4055bf74da5a26c82/aiohttp-3.13.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bca9ef7517fd7874a1a08970ae88f497bf5c984610caa0bf40bd7e8450852b95", size = 1681329, upload-time = "2026-03-31T21:56:43.374Z" }, + { url = "https://files.pythonhosted.org/packages/fb/68/84cd3dab6b7b4f3e6fe9459a961acb142aaab846417f6e8905110d7027e5/aiohttp-3.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:019a67772e034a0e6b9b17c13d0a8fe56ad9fb150fc724b7f3ffd3724288d9e5", size = 1560023, upload-time = "2026-03-31T21:56:45.031Z" }, + { url = "https://files.pythonhosted.org/packages/41/2c/db61b64b0249e30f954a65ab4cb4970ced57544b1de2e3c98ee5dc24165f/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f34ecee82858e41dd217734f0c41a532bd066bcaab636ad830f03a30b2a96f2a", size = 1652372, upload-time = "2026-03-31T21:56:47.075Z" }, + { url = "https://files.pythonhosted.org/packages/25/6f/e96988a6c982d047810c772e28c43c64c300c943b0ed5c1c0c4ce1e1027c/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:4eac02d9af4813ee289cd63a361576da36dba57f5a1ab36377bc2600db0cbb73", size = 1662031, upload-time = "2026-03-31T21:56:48.835Z" }, + { url = "https://files.pythonhosted.org/packages/b7/26/a56feace81f3d347b4052403a9d03754a0ab23f7940780dada0849a38c92/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4beac52e9fe46d6abf98b0176a88154b742e878fdf209d2248e99fcdf73cd297", size = 1708118, upload-time = "2026-03-31T21:56:50.833Z" }, + { url = "https://files.pythonhosted.org/packages/78/6e/b6173a8ff03d01d5e1a694bc06764b5dad1df2d4ed8f0ceec12bb3277936/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:c180f480207a9b2475f2b8d8bd7204e47aec952d084b2a2be58a782ffcf96074", size = 1548667, upload-time = "2026-03-31T21:56:52.81Z" }, + { url = "https://files.pythonhosted.org/packages/16/13/13296ffe2c132d888b3fe2c195c8b9c0c24c89c3fa5cc2c44464dc23b22e/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2837fb92951564d6339cedae4a7231692aa9f73cbc4fb2e04263b96844e03b4e", size = 1724490, upload-time = "2026-03-31T21:56:54.541Z" }, + { url = "https://files.pythonhosted.org/packages/7a/b4/1f1c287f4a79782ef36e5a6e62954c85343bc30470d862d30bd5f26c9fa2/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d9010032a0b9710f58012a1e9c222528763d860ba2ee1422c03473eab47703e7", size = 1667109, upload-time = "2026-03-31T21:56:56.21Z" }, + { url = "https://files.pythonhosted.org/packages/ef/42/8461a2aaf60a8f4ea4549a4056be36b904b0eb03d97ca9a8a2604681a500/aiohttp-3.13.5-cp310-cp310-win32.whl", hash = "sha256:7c4b6668b2b2b9027f209ddf647f2a4407784b5d88b8be4efcc72036f365baf9", size = 439478, upload-time = "2026-03-31T21:56:58.292Z" }, + { url = "https://files.pythonhosted.org/packages/e5/71/06956304cb5ee439dfe8d86e1b2e70088bd88ed1ced1f42fb29e5d855f0e/aiohttp-3.13.5-cp310-cp310-win_amd64.whl", hash = "sha256:cd3db5927bf9167d5a6157ddb2f036f6b6b0ad001ac82355d43e97a4bde76d76", size = 462047, upload-time = "2026-03-31T21:57:00.257Z" }, +] + +[[package]] +name = "aiosignal" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, +] + +[[package]] +name = "alabaster" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a6/f8/d9c74d0daf3f742840fd818d69cfae176fa332022fd44e3469487d5a9420/alabaster-1.0.0.tar.gz", hash = "sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e", size = 24210, upload-time = "2024-07-26T18:15:03.762Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b", size = 13929, upload-time = "2024-07-26T18:15:02.05Z" }, +] + +[[package]] +name = "alembic" +version = "1.18.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mako" }, + { name = "sqlalchemy" }, + { name = "tomli" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/94/13/8b084e0f2efb0275a1d534838844926f798bd766566b1375174e2448cd31/alembic-1.18.4.tar.gz", hash = "sha256:cb6e1fd84b6174ab8dbb2329f86d631ba9559dd78df550b57804d607672cedbc", size = 2056725, upload-time = "2026-02-10T16:00:47.195Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/29/6533c317b74f707ea28f8d633734dbda2119bbadfc61b2f3640ba835d0f7/alembic-1.18.4-py3-none-any.whl", hash = "sha256:a5ed4adcf6d8a4cb575f3d759f071b03cd6e5c7618eb796cb52497be25bfe19a", size = 263893, upload-time = "2026-02-10T16:00:49.997Z" }, +] + +[[package]] +name = "anyio" +version = "4.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "exceptiongroup" }, + { name = "idna" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/14/2c5dd9f512b66549ae92767a9c7b330ae88e1932ca57876909410251fe13/anyio-4.13.0.tar.gz", hash = "sha256:334b70e641fd2221c1505b3890c69882fe4a2df910cba14d97019b90b24439dc", size = 231622, upload-time = "2026-03-24T12:59:09.671Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/42/e921fccf5015463e32a3cf6ee7f980a6ed0f395ceeaa45060b61d86486c2/anyio-4.13.0-py3-none-any.whl", hash = "sha256:08b310f9e24a9594186fd75b4f73f4a4152069e3853f1ed8bfbf58369f4ad708", size = 114353, upload-time = "2026-03-24T12:59:08.246Z" }, +] + +[[package]] +name = "appnope" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/5d/752690df9ef5b76e169e68d6a129fa6d08a7100ca7f754c89495db3c6019/appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee", size = 4170, upload-time = "2024-02-06T09:43:11.258Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/29/5ecc3a15d5a33e31b26c11426c45c501e439cb865d0bff96315d86443b78/appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c", size = 4321, upload-time = "2024-02-06T09:43:09.663Z" }, +] + +[[package]] +name = "argon2-cffi" +version = "25.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "argon2-cffi-bindings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/89/ce5af8a7d472a67cc819d5d998aa8c82c5d860608c4db9f46f1162d7dab9/argon2_cffi-25.1.0.tar.gz", hash = "sha256:694ae5cc8a42f4c4e2bf2ca0e64e51e23a040c6a517a85074683d3959e1346c1", size = 45706, upload-time = "2025-06-03T06:55:32.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4f/d3/a8b22fa575b297cd6e3e3b0155c7e25db170edf1c74783d6a31a2490b8d9/argon2_cffi-25.1.0-py3-none-any.whl", hash = "sha256:fdc8b074db390fccb6eb4a3604ae7231f219aa669a2652e0f20e16ba513d5741", size = 14657, upload-time = "2025-06-03T06:55:30.804Z" }, +] + +[[package]] +name = "argon2-cffi-bindings" +version = "25.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/2d/db8af0df73c1cf454f71b2bbe5e356b8c1f8041c979f505b3d3186e520a9/argon2_cffi_bindings-25.1.0.tar.gz", hash = "sha256:b957f3e6ea4d55d820e40ff76f450952807013d361a65d7f28acc0acbf29229d", size = 1783441, upload-time = "2025-07-30T10:02:05.147Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/57/96b8b9f93166147826da5f90376e784a10582dd39a393c99bb62cfcf52f0/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:aecba1723ae35330a008418a91ea6cfcedf6d31e5fbaa056a166462ff066d500", size = 54121, upload-time = "2025-07-30T10:01:50.815Z" }, + { url = "https://files.pythonhosted.org/packages/0a/08/a9bebdb2e0e602dde230bdde8021b29f71f7841bd54801bcfd514acb5dcf/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2630b6240b495dfab90aebe159ff784d08ea999aa4b0d17efa734055a07d2f44", size = 29177, upload-time = "2025-07-30T10:01:51.681Z" }, + { url = "https://files.pythonhosted.org/packages/b6/02/d297943bcacf05e4f2a94ab6f462831dc20158614e5d067c35d4e63b9acb/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:7aef0c91e2c0fbca6fc68e7555aa60ef7008a739cbe045541e438373bc54d2b0", size = 31090, upload-time = "2025-07-30T10:01:53.184Z" }, + { url = "https://files.pythonhosted.org/packages/c1/93/44365f3d75053e53893ec6d733e4a5e3147502663554b4d864587c7828a7/argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e021e87faa76ae0d413b619fe2b65ab9a037f24c60a1e6cc43457ae20de6dc6", size = 81246, upload-time = "2025-07-30T10:01:54.145Z" }, + { url = "https://files.pythonhosted.org/packages/09/52/94108adfdd6e2ddf58be64f959a0b9c7d4ef2fa71086c38356d22dc501ea/argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d3e924cfc503018a714f94a49a149fdc0b644eaead5d1f089330399134fa028a", size = 87126, upload-time = "2025-07-30T10:01:55.074Z" }, + { url = "https://files.pythonhosted.org/packages/72/70/7a2993a12b0ffa2a9271259b79cc616e2389ed1a4d93842fac5a1f923ffd/argon2_cffi_bindings-25.1.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c87b72589133f0346a1cb8d5ecca4b933e3c9b64656c9d175270a000e73b288d", size = 80343, upload-time = "2025-07-30T10:01:56.007Z" }, + { url = "https://files.pythonhosted.org/packages/78/9a/4e5157d893ffc712b74dbd868c7f62365618266982b64accab26bab01edc/argon2_cffi_bindings-25.1.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:1db89609c06afa1a214a69a462ea741cf735b29a57530478c06eb81dd403de99", size = 86777, upload-time = "2025-07-30T10:01:56.943Z" }, + { url = "https://files.pythonhosted.org/packages/74/cd/15777dfde1c29d96de7f18edf4cc94c385646852e7c7b0320aa91ccca583/argon2_cffi_bindings-25.1.0-cp39-abi3-win32.whl", hash = "sha256:473bcb5f82924b1becbb637b63303ec8d10e84c8d241119419897a26116515d2", size = 27180, upload-time = "2025-07-30T10:01:57.759Z" }, + { url = "https://files.pythonhosted.org/packages/e2/c6/a759ece8f1829d1f162261226fbfd2c6832b3ff7657384045286d2afa384/argon2_cffi_bindings-25.1.0-cp39-abi3-win_amd64.whl", hash = "sha256:a98cd7d17e9f7ce244c0803cad3c23a7d379c301ba618a5fa76a67d116618b98", size = 31715, upload-time = "2025-07-30T10:01:58.56Z" }, + { url = "https://files.pythonhosted.org/packages/42/b9/f8d6fa329ab25128b7e98fd83a3cb34d9db5b059a9847eddb840a0af45dd/argon2_cffi_bindings-25.1.0-cp39-abi3-win_arm64.whl", hash = "sha256:b0fdbcf513833809c882823f98dc2f931cf659d9a1429616ac3adebb49f5db94", size = 27149, upload-time = "2025-07-30T10:01:59.329Z" }, + { url = "https://files.pythonhosted.org/packages/11/2d/ba4e4ca8d149f8dcc0d952ac0967089e1d759c7e5fcf0865a317eb680fbb/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:6dca33a9859abf613e22733131fc9194091c1fa7cb3e131c143056b4856aa47e", size = 24549, upload-time = "2025-07-30T10:02:00.101Z" }, + { url = "https://files.pythonhosted.org/packages/5c/82/9b2386cc75ac0bd3210e12a44bfc7fd1632065ed8b80d573036eecb10442/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:21378b40e1b8d1655dd5310c84a40fc19a9aa5e6366e835ceb8576bf0fea716d", size = 25539, upload-time = "2025-07-30T10:02:00.929Z" }, + { url = "https://files.pythonhosted.org/packages/31/db/740de99a37aa727623730c90d92c22c9e12585b3c98c54b7960f7810289f/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d588dec224e2a83edbdc785a5e6f3c6cd736f46bfd4b441bbb5aa1f5085e584", size = 28467, upload-time = "2025-07-30T10:02:02.08Z" }, + { url = "https://files.pythonhosted.org/packages/71/7a/47c4509ea18d755f44e2b92b7178914f0c113946d11e16e626df8eaa2b0b/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5acb4e41090d53f17ca1110c3427f0a130f944b896fc8c83973219c97f57b690", size = 27355, upload-time = "2025-07-30T10:02:02.867Z" }, + { url = "https://files.pythonhosted.org/packages/ee/82/82745642d3c46e7cea25e1885b014b033f4693346ce46b7f47483cf5d448/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:da0c79c23a63723aa5d782250fbf51b768abca630285262fb5144ba5ae01e520", size = 29187, upload-time = "2025-07-30T10:02:03.674Z" }, +] + +[[package]] +name = "arrow" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/33/032cdc44182491aa708d06a68b62434140d8c50820a087fac7af37703357/arrow-1.4.0.tar.gz", hash = "sha256:ed0cc050e98001b8779e84d461b0098c4ac597e88704a655582b21d116e526d7", size = 152931, upload-time = "2025-10-18T17:46:46.761Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/c9/d7977eaacb9df673210491da99e6a247e93df98c715fc43fd136ce1d3d33/arrow-1.4.0-py3-none-any.whl", hash = "sha256:749f0769958ebdc79c173ff0b0670d59051a535fa26e8eba02953dc19eb43205", size = 68797, upload-time = "2025-10-18T17:46:45.663Z" }, +] + +[[package]] +name = "asttokens" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/be/a5/8e3f9b6771b0b408517c82d97aed8f2036509bc247d46114925e32fe33f0/asttokens-3.0.1.tar.gz", hash = "sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7", size = 62308, upload-time = "2025-11-15T16:43:48.578Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/39/e7eaf1799466a4aef85b6a4fe7bd175ad2b1c6345066aa33f1f58d4b18d0/asttokens-3.0.1-py3-none-any.whl", hash = "sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a", size = 27047, upload-time = "2025-11-15T16:43:16.109Z" }, +] + +[[package]] +name = "astunparse" +version = "1.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, + { name = "wheel" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/af/4182184d3c338792894f34a62672919db7ca008c89abee9b564dd34d8029/astunparse-1.6.3.tar.gz", hash = "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872", size = 18290, upload-time = "2019-12-22T18:12:13.129Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/03/13dde6512ad7b4557eb792fbcf0c653af6076b81e5941d36ec61f7ce6028/astunparse-1.6.3-py2.py3-none-any.whl", hash = "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8", size = 12732, upload-time = "2019-12-22T18:12:11.297Z" }, +] + +[[package]] +name = "async-lru" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e8/1f/989ecfef8e64109a489fff357450cb73fa73a865a92bd8c272170a6922c2/async_lru-2.3.0.tar.gz", hash = "sha256:89bdb258a0140d7313cf8f4031d816a042202faa61d0ab310a0a538baa1c24b6", size = 16332, upload-time = "2026-03-19T01:04:32.413Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/e2/c2e3abf398f80732e58b03be77bde9022550d221dd8781bf586bd4d97cc1/async_lru-2.3.0-py3-none-any.whl", hash = "sha256:eea27b01841909316f2cc739807acea1c623df2be8c5cfad7583286397bb8315", size = 8403, upload-time = "2026-03-19T01:04:30.883Z" }, +] + +[[package]] +name = "async-timeout" +version = "5.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a5/ae/136395dfbfe00dfc94da3f3e136d0b13f394cba8f4841120e34226265780/async_timeout-5.0.1.tar.gz", hash = "sha256:d9321a7a3d5a6a5e187e824d2fa0793ce379a202935782d555d6e9d2735677d3", size = 9274, upload-time = "2024-11-06T16:41:39.6Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/ba/e2081de779ca30d473f21f5b30e0e737c438205440784c7dfc81efc2b029/async_timeout-5.0.1-py3-none-any.whl", hash = "sha256:39e3809566ff85354557ec2398b55e096c8364bacac9405a7a1fa429e77fe76c", size = 6233, upload-time = "2024-11-06T16:41:37.9Z" }, +] + +[[package]] +name = "atomsci-ampl" +source = { editable = "." } +dependencies = [ + { name = "bokeh" }, + { name = "bravado" }, + { name = "deepchem" }, + { name = "imbalanced-learn" }, + { name = "imblearn" }, + { name = "lightgbm" }, + { name = "lightning" }, + { name = "maestrowf" }, + { name = "matplotlib" }, + { name = "matplotlib-venn" }, + { name = "mordred" }, + { name = "numpy" }, + { name = "optuna" }, + { name = "pyarrow" }, + { name = "pydantic" }, + { name = "pyyaml" }, + { name = "rdkit" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "seaborn" }, + { name = "setuptools" }, + { name = "umap-learn" }, + { name = "xgboost" }, +] + +[package.optional-dependencies] +cpu = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow", marker = "sys_platform == 'darwin'" }, + { name = "tensorflow-cpu", marker = "sys_platform == 'linux'" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +cuda = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +docs = [ + { name = "ipython" }, + { name = "joblib" }, + { name = "pandas" }, + { name = "pygments" }, + { name = "sphinx" }, + { name = "sphinx-rtd-theme" }, +] +mchip = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow-macos" }, + { name = "tensorflow-metal" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +rocm = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] + +[package.dev-dependencies] +dev = [ + { name = "ipykernel" }, + { name = "jupyter" }, + { name = "jupyterlab" }, + { name = "matplotcheck" }, + { name = "pytest" }, + { name = "pytest-cov" }, + { name = "pytest-mock" }, + { name = "pytest-xdist" }, + { name = "ruff" }, +] +docker = [ + { name = "networkx" }, +] + +[package.metadata] +requires-dist = [ + { name = "bokeh" }, + { name = "bravado" }, + { name = "deepchem", specifier = "==2.8" }, + { name = "dgl", marker = "extra == 'cpu'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'cuda'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'mchip'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'rocm'", specifier = "==2.1.0" }, + { name = "dgllife", marker = "extra == 'cpu'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'cuda'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'mchip'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'rocm'", specifier = "==0.3.2" }, + { name = "imbalanced-learn" }, + { name = "imblearn" }, + { name = "ipython", marker = "extra == 'docs'" }, + { name = "joblib", marker = "extra == 'docs'" }, + { name = "lightgbm" }, + { name = "lightning", specifier = "==2.2.5" }, + { name = "maestrowf" }, + { name = "matplotlib" }, + { name = "matplotlib-venn" }, + { name = "mordred" }, + { name = "numpy", specifier = "<2" }, + { name = "optuna" }, + { name = "pandas", marker = "extra == 'docs'" }, + { name = "pyarrow" }, + { name = "pydantic", specifier = ">=1.10,<2" }, + { name = "pygments", marker = "extra == 'docs'" }, + { name = "pyyaml", specifier = ">=6.0" }, + { name = "rdkit", specifier = "==2024.3.5" }, + { name = "scikit-learn", specifier = "==1.2.2" }, + { name = "scipy", specifier = ">=1.10" }, + { name = "seaborn", specifier = ">=0.13.0" }, + { name = "setuptools" }, + { name = "sphinx", marker = "extra == 'docs'" }, + { name = "sphinx-rtd-theme", marker = "extra == 'docs'" }, + { name = "tensorflow", marker = "sys_platform == 'darwin' and extra == 'cpu'", specifier = "~=2.14.0" }, + { name = "tensorflow", marker = "extra == 'cuda'", specifier = "~=2.14.0" }, + { name = "tensorflow", marker = "extra == 'rocm'", specifier = "~=2.14.0" }, + { name = "tensorflow-cpu", marker = "sys_platform == 'linux' and extra == 'cpu'", specifier = "~=2.14.0" }, + { name = "tensorflow-macos", marker = "extra == 'mchip'", specifier = "~=2.14.0" }, + { name = "tensorflow-metal", marker = "extra == 'mchip'", specifier = "~=1.1.0" }, + { name = "torch", marker = "extra == 'cpu'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'cuda'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'mchip'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'rocm'", specifier = "==2.1.2" }, + { name = "torch-geometric", marker = "extra == 'cpu'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'cuda'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'mchip'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'rocm'", specifier = "==2.7.0" }, + { name = "torchdata", marker = "extra == 'cpu'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'cuda'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'mchip'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'rocm'", specifier = "==0.7.1" }, + { name = "umap-learn" }, + { name = "xgboost" }, +] +provides-extras = ["cpu", "cuda", "docs", "mchip", "rocm"] + +[package.metadata.requires-dev] +dev = [ + { name = "ipykernel" }, + { name = "jupyter" }, + { name = "jupyterlab" }, + { name = "matplotcheck" }, + { name = "pytest" }, + { name = "pytest-cov" }, + { name = "pytest-mock" }, + { name = "pytest-xdist" }, + { name = "ruff" }, +] +docker = [{ name = "networkx", specifier = "==2.8.8" }] + +[[package]] +name = "attrs" +version = "26.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" }, +] + +[[package]] +name = "babel" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/b2/51899539b6ceeeb420d40ed3cd4b7a40519404f9baf3d4ac99dc413a834b/babel-2.18.0.tar.gz", hash = "sha256:b80b99a14bd085fcacfa15c9165f651fbb3406e66cc603abf11c5750937c992d", size = 9959554, upload-time = "2026-02-01T12:30:56.078Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl", hash = "sha256:e2b422b277c2b9a9630c1d7903c2a00d0830c409c59ac8cae9081c92f1aeba35", size = 10196845, upload-time = "2026-02-01T12:30:53.445Z" }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.14.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/b0/1c6a16426d389813b48d95e26898aff79abbde42ad353958ad95cc8c9b21/beautifulsoup4-4.14.3.tar.gz", hash = "sha256:6292b1c5186d356bba669ef9f7f051757099565ad9ada5dd630bd9de5fa7fb86", size = 627737, upload-time = "2025-11-30T15:08:26.084Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/39/47f9197bdd44df24d67ac8893641e16f386c984a0619ef2ee4c51fbbc019/beautifulsoup4-4.14.3-py3-none-any.whl", hash = "sha256:0918bfe44902e6ad8d57732ba310582e98da931428d231a5ecb9e7c703a735bb", size = 107721, upload-time = "2025-11-30T15:08:24.087Z" }, +] + +[[package]] +name = "bleach" +version = "6.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "webencodings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/07/18/3c8523962314be6bf4c8989c79ad9531c825210dd13a8669f6b84336e8bd/bleach-6.3.0.tar.gz", hash = "sha256:6f3b91b1c0a02bb9a78b5a454c92506aa0fdf197e1d5e114d2e00c6f64306d22", size = 203533, upload-time = "2025-10-27T17:57:39.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/3a/577b549de0cc09d95f11087ee63c739bba856cd3952697eec4c4bb91350a/bleach-6.3.0-py3-none-any.whl", hash = "sha256:fe10ec77c93ddf3d13a73b035abaac7a9f5e436513864ccdad516693213c65d6", size = 164437, upload-time = "2025-10-27T17:57:37.538Z" }, +] + +[package.optional-dependencies] +css = [ + { name = "tinycss2" }, +] + +[[package]] +name = "bokeh" +version = "3.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "jinja2" }, + { name = "narwhals" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyyaml" }, + { name = "tornado", marker = "sys_platform != 'emscripten'" }, + { name = "xyzservices" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/0d/fabb70707646217e4b0e3943e05730eab8c1f7b7e7485145f8594b52e606/bokeh-3.9.0.tar.gz", hash = "sha256:775219714a8496973ddbae16b1861606ba19fe670a421e4d43267b41148e07a3", size = 5740345, upload-time = "2026-03-11T17:58:34.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/0b/bdf449df87be3f07b23091ceafee8c3ef569cf6d2fb7edec6e3b12b3faa4/bokeh-3.9.0-py3-none-any.whl", hash = "sha256:b252bfb16a505f0e0c57d532d0df308ae1667235bafc622aa9441fe9e7c5ce4a", size = 6396068, upload-time = "2026-03-11T17:58:31.645Z" }, +] + +[[package]] +name = "branca" +version = "0.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/14/9d409124bda3f4ab7af3802aba07181d1fd56aa96cc4b999faea6a27a0d2/branca-0.8.2.tar.gz", hash = "sha256:e5040f4c286e973658c27de9225c1a5a7356dd0702a7c8d84c0f0dfbde388fe7", size = 27890, upload-time = "2025-10-06T10:28:20.305Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/50/fc9680058e63161f2f63165b84c957a0df1415431104c408e8104a3a18ef/branca-0.8.2-py3-none-any.whl", hash = "sha256:2ebaef3983e3312733c1ae2b793b0a8ba3e1c4edeb7598e10328505280cf2f7c", size = 26193, upload-time = "2025-10-06T10:28:19.255Z" }, +] + +[[package]] +name = "bravado" +version = "12.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "bravado-core" }, + { name = "monotonic" }, + { name = "msgpack" }, + { name = "python-dateutil" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "simplejson" }, + { name = "six" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/88/5d/5a1eda160279e4a617c38da71fbb7d92121cfc7fcf8592368286f771e314/bravado-12.0.1.tar.gz", hash = "sha256:637cc04d53c07e950792595081f9f8bf4dea226ecd1029207cb1d328ea400e20", size = 37647, upload-time = "2025-05-07T20:25:02.108Z" } + +[[package]] +name = "bravado-core" +version = "6.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonref" }, + { name = "jsonschema", extra = ["format-nongpl"] }, + { name = "msgpack" }, + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "simplejson" }, + { name = "six" }, + { name = "swagger-spec-validator" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/6d/1ffa5c64533bc2fa436afdb9ef287cb0c0d443ef1e84db0601b0af7ce6f5/bravado-core-6.1.1.tar.gz", hash = "sha256:8cf1f7bbac2f7c696d37e970253938b5be4ddec92c8d5e64400b17469c3714b4", size = 63851, upload-time = "2023-12-14T22:27:42.168Z" } + +[[package]] +name = "certifi" +version = "2026.2.25" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/af/2d/7bf41579a8986e348fa033a31cdd0e4121114f6bce2457e8876010b092dd/certifi-2026.2.25.tar.gz", hash = "sha256:e887ab5cee78ea814d3472169153c2d12cd43b14bd03329a39a9c6e2e80bfba7", size = 155029, upload-time = "2026-02-25T02:54:17.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl", hash = "sha256:027692e4402ad994f1c42e52a4997a9763c646b73e4096e4d5d6db8af1d6f0fa", size = 153684, upload-time = "2026-02-25T02:54:15.766Z" }, +] + +[[package]] +name = "cffi" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "implementation_name != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/d7/516d984057745a6cd96575eea814fe1edd6646ee6efd552fb7b0921dec83/cffi-2.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:0cf2d91ecc3fcc0625c2c530fe004f82c110405f101548512cce44322fa8ac44", size = 184283, upload-time = "2025-09-08T23:22:08.01Z" }, + { url = "https://files.pythonhosted.org/packages/9e/84/ad6a0b408daa859246f57c03efd28e5dd1b33c21737c2db84cae8c237aa5/cffi-2.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f73b96c41e3b2adedc34a7356e64c8eb96e03a3782b535e043a986276ce12a49", size = 180504, upload-time = "2025-09-08T23:22:10.637Z" }, + { url = "https://files.pythonhosted.org/packages/50/bd/b1a6362b80628111e6653c961f987faa55262b4002fcec42308cad1db680/cffi-2.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:53f77cbe57044e88bbd5ed26ac1d0514d2acf0591dd6bb02a3ae37f76811b80c", size = 208811, upload-time = "2025-09-08T23:22:12.267Z" }, + { url = "https://files.pythonhosted.org/packages/4f/27/6933a8b2562d7bd1fb595074cf99cc81fc3789f6a6c05cdabb46284a3188/cffi-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3e837e369566884707ddaf85fc1744b47575005c0a229de3327f8f9a20f4efeb", size = 216402, upload-time = "2025-09-08T23:22:13.455Z" }, + { url = "https://files.pythonhosted.org/packages/05/eb/b86f2a2645b62adcfff53b0dd97e8dfafb5c8aa864bd0d9a2c2049a0d551/cffi-2.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:5eda85d6d1879e692d546a078b44251cdd08dd1cfb98dfb77b670c97cee49ea0", size = 203217, upload-time = "2025-09-08T23:22:14.596Z" }, + { url = "https://files.pythonhosted.org/packages/9f/e0/6cbe77a53acf5acc7c08cc186c9928864bd7c005f9efd0d126884858a5fe/cffi-2.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:9332088d75dc3241c702d852d4671613136d90fa6881da7d770a483fd05248b4", size = 203079, upload-time = "2025-09-08T23:22:15.769Z" }, + { url = "https://files.pythonhosted.org/packages/98/29/9b366e70e243eb3d14a5cb488dfd3a0b6b2f1fb001a203f653b93ccfac88/cffi-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc7de24befaeae77ba923797c7c87834c73648a05a4bde34b3b7e5588973a453", size = 216475, upload-time = "2025-09-08T23:22:17.427Z" }, + { url = "https://files.pythonhosted.org/packages/21/7a/13b24e70d2f90a322f2900c5d8e1f14fa7e2a6b3332b7309ba7b2ba51a5a/cffi-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf364028c016c03078a23b503f02058f1814320a56ad535686f90565636a9495", size = 218829, upload-time = "2025-09-08T23:22:19.069Z" }, + { url = "https://files.pythonhosted.org/packages/60/99/c9dc110974c59cc981b1f5b66e1d8af8af764e00f0293266824d9c4254bc/cffi-2.0.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e11e82b744887154b182fd3e7e8512418446501191994dbf9c9fc1f32cc8efd5", size = 211211, upload-time = "2025-09-08T23:22:20.588Z" }, + { url = "https://files.pythonhosted.org/packages/49/72/ff2d12dbf21aca1b32a40ed792ee6b40f6dc3a9cf1644bd7ef6e95e0ac5e/cffi-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8ea985900c5c95ce9db1745f7933eeef5d314f0565b27625d9a10ec9881e1bfb", size = 218036, upload-time = "2025-09-08T23:22:22.143Z" }, + { url = "https://files.pythonhosted.org/packages/e2/cc/027d7fb82e58c48ea717149b03bcadcbdc293553edb283af792bd4bcbb3f/cffi-2.0.0-cp310-cp310-win32.whl", hash = "sha256:1f72fb8906754ac8a2cc3f9f5aaa298070652a0ffae577e0ea9bd480dc3c931a", size = 172184, upload-time = "2025-09-08T23:22:23.328Z" }, + { url = "https://files.pythonhosted.org/packages/33/fa/072dd15ae27fbb4e06b437eb6e944e75b068deb09e2a2826039e49ee2045/cffi-2.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:b18a3ed7d5b3bd8d9ef7a8cb226502c6bf8308df1525e1cc676c3680e7176739", size = 182790, upload-time = "2025-09-08T23:22:24.752Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/a1/67fe25fac3c7642725500a3f6cfe5821ad557c3abb11c9d20d12c7008d3e/charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5", size = 144271, upload-time = "2026-04-02T09:28:39.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/08/0f303cb0b529e456bb116f2d50565a482694fbb94340bf56d44677e7ed03/charset_normalizer-3.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cdd68a1fb318e290a2077696b7eb7a21a49163c455979c639bf5a5dcdc46617d", size = 315182, upload-time = "2026-04-02T09:25:40.673Z" }, + { url = "https://files.pythonhosted.org/packages/24/47/b192933e94b546f1b1fe4df9cc1f84fcdbf2359f8d1081d46dd029b50207/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e17b8d5d6a8c47c85e68ca8379def1303fd360c3e22093a807cd34a71cd082b8", size = 209329, upload-time = "2026-04-02T09:25:42.354Z" }, + { url = "https://files.pythonhosted.org/packages/c2/b4/01fa81c5ca6141024d89a8fc15968002b71da7f825dd14113207113fabbd/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:511ef87c8aec0783e08ac18565a16d435372bc1ac25a91e6ac7f5ef2b0bff790", size = 231230, upload-time = "2026-04-02T09:25:44.281Z" }, + { url = "https://files.pythonhosted.org/packages/20/f7/7b991776844dfa058017e600e6e55ff01984a063290ca5622c0b63162f68/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:007d05ec7321d12a40227aae9e2bc6dca73f3cb21058999a1df9e193555a9dcc", size = 225890, upload-time = "2026-04-02T09:25:45.475Z" }, + { url = "https://files.pythonhosted.org/packages/20/e7/bed0024a0f4ab0c8a9c64d4445f39b30c99bd1acd228291959e3de664247/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cf29836da5119f3c8a8a70667b0ef5fdca3bb12f80fd06487cfa575b3909b393", size = 216930, upload-time = "2026-04-02T09:25:46.58Z" }, + { url = "https://files.pythonhosted.org/packages/e2/ab/b18f0ab31cdd7b3ddb8bb76c4a414aeb8160c9810fdf1bc62f269a539d87/charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:12d8baf840cc7889b37c7c770f478adea7adce3dcb3944d02ec87508e2dcf153", size = 202109, upload-time = "2026-04-02T09:25:48.031Z" }, + { url = "https://files.pythonhosted.org/packages/82/e5/7e9440768a06dfb3075936490cb82dbf0ee20a133bf0dd8551fa096914ec/charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d560742f3c0d62afaccf9f41fe485ed69bd7661a241f86a3ef0f0fb8b1a397af", size = 214684, upload-time = "2026-04-02T09:25:49.245Z" }, + { url = "https://files.pythonhosted.org/packages/71/94/8c61d8da9f062fdf457c80acfa25060ec22bf1d34bbeaca4350f13bcfd07/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b14b2d9dac08e28bb8046a1a0434b1750eb221c8f5b87a68f4fa11a6f97b5e34", size = 212785, upload-time = "2026-04-02T09:25:50.671Z" }, + { url = "https://files.pythonhosted.org/packages/66/cd/6e9889c648e72c0ab2e5967528bb83508f354d706637bc7097190c874e13/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:bc17a677b21b3502a21f66a8cc64f5bfad4df8a0b8434d661666f8ce90ac3af1", size = 203055, upload-time = "2026-04-02T09:25:51.802Z" }, + { url = "https://files.pythonhosted.org/packages/92/2e/7a951d6a08aefb7eb8e1b54cdfb580b1365afdd9dd484dc4bee9e5d8f258/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:750e02e074872a3fad7f233b47734166440af3cdea0add3e95163110816d6752", size = 232502, upload-time = "2026-04-02T09:25:53.388Z" }, + { url = "https://files.pythonhosted.org/packages/58/d5/abcf2d83bf8e0a1286df55cd0dc1d49af0da4282aa77e986df343e7de124/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:4e5163c14bffd570ef2affbfdd77bba66383890797df43dc8b4cc7d6f500bf53", size = 214295, upload-time = "2026-04-02T09:25:54.765Z" }, + { url = "https://files.pythonhosted.org/packages/47/3a/7d4cd7ed54be99973a0dc176032cba5cb1f258082c31fa6df35cff46acfc/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6ed74185b2db44f41ef35fd1617c5888e59792da9bbc9190d6c7300617182616", size = 227145, upload-time = "2026-04-02T09:25:55.904Z" }, + { url = "https://files.pythonhosted.org/packages/1d/98/3a45bf8247889cf28262ebd3d0872edff11565b2a1e3064ccb132db3fbb0/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:94e1885b270625a9a828c9793b4d52a64445299baa1fea5a173bf1d3dd9a1a5a", size = 218884, upload-time = "2026-04-02T09:25:57.074Z" }, + { url = "https://files.pythonhosted.org/packages/ad/80/2e8b7f8915ed5c9ef13aa828d82738e33888c485b65ebf744d615040c7ea/charset_normalizer-3.4.7-cp310-cp310-win32.whl", hash = "sha256:6785f414ae0f3c733c437e0f3929197934f526d19dfaa75e18fdb4f94c6fb374", size = 148343, upload-time = "2026-04-02T09:25:58.199Z" }, + { url = "https://files.pythonhosted.org/packages/35/1b/3b8c8c77184af465ee9ad88b5aea46ea6b2e1f7b9dc9502891e37af21e30/charset_normalizer-3.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:6696b7688f54f5af4462118f0bfa7c1621eeb87154f77fa04b9295ce7a8f2943", size = 159174, upload-time = "2026-04-02T09:25:59.322Z" }, + { url = "https://files.pythonhosted.org/packages/be/c1/feb40dca40dbb21e0a908801782d9288c64fc8d8e562c2098e9994c8c21b/charset_normalizer-3.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:66671f93accb62ed07da56613636f3641f1a12c13046ce91ffc923721f23c008", size = 147805, upload-time = "2026-04-02T09:26:00.756Z" }, + { url = "https://files.pythonhosted.org/packages/db/8f/61959034484a4a7c527811f4721e75d02d653a35afb0b6054474d8185d4c/charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d", size = 61958, upload-time = "2026-04-02T09:28:37.794Z" }, +] + +[[package]] +name = "click" +version = "8.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/75/31212c6bf2503fdf920d87fee5d7a86a2e3bcf444984126f13d8e4016804/click-8.3.2.tar.gz", hash = "sha256:14162b8b3b3550a7d479eafa77dfd3c38d9dc8951f6f69c78913a8f9a7540fd5", size = 302856, upload-time = "2026-04-03T19:14:45.118Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/20/71885d8b97d4f3dde17b1fdb92dbd4908b00541c5a3379787137285f602e/click-8.3.2-py3-none-any.whl", hash = "sha256:1924d2c27c5653561cd2cae4548d1406039cb79b858b747cfea24924bbc1616d", size = 108379, upload-time = "2026-04-03T19:14:43.505Z" }, +] + +[[package]] +name = "click-plugins" +version = "1.1.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/a4/34847b59150da33690a36da3681d6bbc2ec14ee9a846bc30a6746e5984e4/click_plugins-1.1.1.2.tar.gz", hash = "sha256:d7af3984a99d243c131aa1a828331e7630f4a88a9741fd05c927b204bcf92261", size = 8343, upload-time = "2025-06-25T00:47:37.555Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/9a/2abecb28ae875e39c8cad711eb1186d8d14eab564705325e77e4e6ab9ae5/click_plugins-1.1.1.2-py2.py3-none-any.whl", hash = "sha256:008d65743833ffc1f5417bf0e78e8d2c23aab04d9745ba817bd3e71b0feb6aa6", size = 11051, upload-time = "2025-06-25T00:47:36.731Z" }, +] + +[[package]] +name = "cligj" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ea/0d/837dbd5d8430fd0f01ed72c4cfb2f548180f4c68c635df84ce87956cff32/cligj-0.7.2.tar.gz", hash = "sha256:a4bc13d623356b373c2c27c53dbd9c68cae5d526270bfa71f6c6fa69669c6b27", size = 9803, upload-time = "2021-05-28T21:23:27.935Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/86/43fa9f15c5b9fb6e82620428827cd3c284aa933431405d1bcf5231ae3d3e/cligj-0.7.2-py3-none-any.whl", hash = "sha256:c1ca117dbce1fe20a5809dc96f01e1c2840f6dcc939b3ddbb1111bf330ba82df", size = 7069, upload-time = "2021-05-28T21:23:26.877Z" }, +] + +[[package]] +name = "cloudpickle" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/27/fb/576f067976d320f5f0114a8d9fa1215425441bb35627b1993e5afd8111e5/cloudpickle-3.1.2.tar.gz", hash = "sha256:7fda9eb655c9c230dab534f1983763de5835249750e85fbcef43aaa30a9a2414", size = 22330, upload-time = "2025-11-03T09:25:26.604Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/39/799be3f2f0f38cc727ee3b4f1445fe6d5e4133064ec2e4115069418a5bb6/cloudpickle-3.1.2-py3-none-any.whl", hash = "sha256:9acb47f6afd73f60dc1df93bb801b472f05ff42fa6c84167d25cb206be1fbf4a", size = 22228, upload-time = "2025-11-03T09:25:25.534Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "coloredlogs" +version = "15.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "humanfriendly" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/c7/eed8f27100517e8c0e6b923d5f0845d0cb99763da6fdee00478f91db7325/coloredlogs-15.0.1.tar.gz", hash = "sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0", size = 278520, upload-time = "2021-06-11T10:22:45.202Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/06/3d6badcf13db419e25b07041d9c7b4a2c331d3f4e7134445ec5df57714cd/coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934", size = 46018, upload-time = "2021-06-11T10:22:42.561Z" }, +] + +[[package]] +name = "colorlog" +version = "6.10.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a2/61/f083b5ac52e505dfc1c624eafbf8c7589a0d7f32daa398d2e7590efa5fda/colorlog-6.10.1.tar.gz", hash = "sha256:eb4ae5cb65fe7fec7773c2306061a8e63e02efc2c72eba9d27b0fa23c94f1321", size = 17162, upload-time = "2025-10-16T16:14:11.978Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/c1/e419ef3723a074172b68aaa89c9f3de486ed4c2399e2dbd8113a4fdcaf9e/colorlog-6.10.1-py3-none-any.whl", hash = "sha256:2d7e8348291948af66122cff006c9f8da6255d224e7cf8e37d8de2df3bad8c9c", size = 11743, upload-time = "2025-10-16T16:14:10.512Z" }, +] + +[[package]] +name = "comm" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/13/7d740c5849255756bc17888787313b61fd38a0a8304fc4f073dfc46122aa/comm-0.2.3.tar.gz", hash = "sha256:2dc8048c10962d55d7ad693be1e7045d891b7ce8d999c97963a5e3e99c055971", size = 6319, upload-time = "2025-07-25T14:02:04.452Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl", hash = "sha256:c615d91d75f7f04f095b30d1c1711babd43bdc6419c1be9886a85f2f4e489417", size = 7294, upload-time = "2025-07-25T14:02:02.896Z" }, +] + +[[package]] +name = "contourpy" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/54/eb9bfc647b19f2009dd5c7f5ec51c4e6ca831725f1aea7a993034f483147/contourpy-1.3.2.tar.gz", hash = "sha256:b6945942715a034c671b7fc54f9588126b0b8bf23db2696e3ca8328f3ff0ab54", size = 13466130, upload-time = "2025-04-15T17:47:53.79Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/a3/da4153ec8fe25d263aa48c1a4cbde7f49b59af86f0b6f7862788c60da737/contourpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba38e3f9f330af820c4b27ceb4b9c7feee5fe0493ea53a8720f4792667465934", size = 268551, upload-time = "2025-04-15T17:34:46.581Z" }, + { url = "https://files.pythonhosted.org/packages/2f/6c/330de89ae1087eb622bfca0177d32a7ece50c3ef07b28002de4757d9d875/contourpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dc41ba0714aa2968d1f8674ec97504a8f7e334f48eeacebcaa6256213acb0989", size = 253399, upload-time = "2025-04-15T17:34:51.427Z" }, + { url = "https://files.pythonhosted.org/packages/c1/bd/20c6726b1b7f81a8bee5271bed5c165f0a8e1f572578a9d27e2ccb763cb2/contourpy-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9be002b31c558d1ddf1b9b415b162c603405414bacd6932d031c5b5a8b757f0d", size = 312061, upload-time = "2025-04-15T17:34:55.961Z" }, + { url = "https://files.pythonhosted.org/packages/22/fc/a9665c88f8a2473f823cf1ec601de9e5375050f1958cbb356cdf06ef1ab6/contourpy-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8d2e74acbcba3bfdb6d9d8384cdc4f9260cae86ed9beee8bd5f54fee49a430b9", size = 351956, upload-time = "2025-04-15T17:35:00.992Z" }, + { url = "https://files.pythonhosted.org/packages/25/eb/9f0a0238f305ad8fb7ef42481020d6e20cf15e46be99a1fcf939546a177e/contourpy-1.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e259bced5549ac64410162adc973c5e2fb77f04df4a439d00b478e57a0e65512", size = 320872, upload-time = "2025-04-15T17:35:06.177Z" }, + { url = "https://files.pythonhosted.org/packages/32/5c/1ee32d1c7956923202f00cf8d2a14a62ed7517bdc0ee1e55301227fc273c/contourpy-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad687a04bc802cbe8b9c399c07162a3c35e227e2daccf1668eb1f278cb698631", size = 325027, upload-time = "2025-04-15T17:35:11.244Z" }, + { url = "https://files.pythonhosted.org/packages/83/bf/9baed89785ba743ef329c2b07fd0611d12bfecbedbdd3eeecf929d8d3b52/contourpy-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cdd22595308f53ef2f891040ab2b93d79192513ffccbd7fe19be7aa773a5e09f", size = 1306641, upload-time = "2025-04-15T17:35:26.701Z" }, + { url = "https://files.pythonhosted.org/packages/d4/cc/74e5e83d1e35de2d28bd97033426b450bc4fd96e092a1f7a63dc7369b55d/contourpy-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b4f54d6a2defe9f257327b0f243612dd051cc43825587520b1bf74a31e2f6ef2", size = 1374075, upload-time = "2025-04-15T17:35:43.204Z" }, + { url = "https://files.pythonhosted.org/packages/0c/42/17f3b798fd5e033b46a16f8d9fcb39f1aba051307f5ebf441bad1ecf78f8/contourpy-1.3.2-cp310-cp310-win32.whl", hash = "sha256:f939a054192ddc596e031e50bb13b657ce318cf13d264f095ce9db7dc6ae81c0", size = 177534, upload-time = "2025-04-15T17:35:46.554Z" }, + { url = "https://files.pythonhosted.org/packages/54/ec/5162b8582f2c994721018d0c9ece9dc6ff769d298a8ac6b6a652c307e7df/contourpy-1.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:c440093bbc8fc21c637c03bafcbef95ccd963bc6e0514ad887932c18ca2a759a", size = 221188, upload-time = "2025-04-15T17:35:50.064Z" }, + { url = "https://files.pythonhosted.org/packages/33/05/b26e3c6ecc05f349ee0013f0bb850a761016d89cec528a98193a48c34033/contourpy-1.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fd93cc7f3139b6dd7aab2f26a90dde0aa9fc264dbf70f6740d498a70b860b82c", size = 265681, upload-time = "2025-04-15T17:44:59.314Z" }, + { url = "https://files.pythonhosted.org/packages/2b/25/ac07d6ad12affa7d1ffed11b77417d0a6308170f44ff20fa1d5aa6333f03/contourpy-1.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:107ba8a6a7eec58bb475329e6d3b95deba9440667c4d62b9b6063942b61d7f16", size = 315101, upload-time = "2025-04-15T17:45:04.165Z" }, + { url = "https://files.pythonhosted.org/packages/8f/4d/5bb3192bbe9d3f27e3061a6a8e7733c9120e203cb8515767d30973f71030/contourpy-1.3.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ded1706ed0c1049224531b81128efbd5084598f18d8a2d9efae833edbd2b40ad", size = 220599, upload-time = "2025-04-15T17:45:08.456Z" }, +] + +[[package]] +name = "coverage" +version = "7.13.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/e0/70553e3000e345daff267cec284ce4cbf3fc141b6da229ac52775b5428f1/coverage-7.13.5.tar.gz", hash = "sha256:c81f6515c4c40141f83f502b07bbfa5c240ba25bbe73da7b33f1e5b6120ff179", size = 915967, upload-time = "2026-03-17T10:33:18.341Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/33/e8c48488c29a73fd089f9d71f9653c1be7478f2ad6b5bc870db11a55d23d/coverage-7.13.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0723d2c96324561b9aa76fb982406e11d93cdb388a7a7da2b16e04719cf7ca5", size = 219255, upload-time = "2026-03-17T10:29:51.081Z" }, + { url = "https://files.pythonhosted.org/packages/da/bd/b0ebe9f677d7f4b74a3e115eec7ddd4bcf892074963a00d91e8b164a6386/coverage-7.13.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:52f444e86475992506b32d4e5ca55c24fc88d73bcbda0e9745095b28ef4dc0cf", size = 219772, upload-time = "2026-03-17T10:29:52.867Z" }, + { url = "https://files.pythonhosted.org/packages/48/cc/5cb9502f4e01972f54eedd48218bb203fe81e294be606a2bc93970208013/coverage-7.13.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:704de6328e3d612a8f6c07000a878ff38181ec3263d5a11da1db294fa6a9bdf8", size = 246532, upload-time = "2026-03-17T10:29:54.688Z" }, + { url = "https://files.pythonhosted.org/packages/7d/d8/3217636d86c7e7b12e126e4f30ef1581047da73140614523af7495ed5f2d/coverage-7.13.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:a1a6d79a14e1ec1832cabc833898636ad5f3754a678ef8bb4908515208bf84f4", size = 248333, upload-time = "2026-03-17T10:29:56.221Z" }, + { url = "https://files.pythonhosted.org/packages/2b/30/2002ac6729ba2d4357438e2ed3c447ad8562866c8c63fc16f6dfc33afe56/coverage-7.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:79060214983769c7ba3f0cee10b54c97609dca4d478fa1aa32b914480fd5738d", size = 250211, upload-time = "2026-03-17T10:29:57.938Z" }, + { url = "https://files.pythonhosted.org/packages/6c/85/552496626d6b9359eb0e2f86f920037c9cbfba09b24d914c6e1528155f7d/coverage-7.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:356e76b46783a98c2a2fe81ec79df4883a1e62895ea952968fb253c114e7f930", size = 252125, upload-time = "2026-03-17T10:29:59.388Z" }, + { url = "https://files.pythonhosted.org/packages/44/21/40256eabdcbccdb6acf6b381b3016a154399a75fe39d406f790ae84d1f3c/coverage-7.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0cef0cdec915d11254a7f549c1170afecce708d30610c6abdded1f74e581666d", size = 247219, upload-time = "2026-03-17T10:30:01.199Z" }, + { url = "https://files.pythonhosted.org/packages/b1/e8/96e2a6c3f21a0ea77d7830b254a1542d0328acc8d7bdf6a284ba7e529f77/coverage-7.13.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dc022073d063b25a402454e5712ef9e007113e3a676b96c5f29b2bda29352f40", size = 248248, upload-time = "2026-03-17T10:30:03.317Z" }, + { url = "https://files.pythonhosted.org/packages/da/ba/8477f549e554827da390ec659f3c38e4b6d95470f4daafc2d8ff94eaa9c2/coverage-7.13.5-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9b74db26dfea4f4e50d48a4602207cd1e78be33182bc9cbf22da94f332f99878", size = 246254, upload-time = "2026-03-17T10:30:04.832Z" }, + { url = "https://files.pythonhosted.org/packages/55/59/bc22aef0e6aa179d5b1b001e8b3654785e9adf27ef24c93dc4228ebd5d68/coverage-7.13.5-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ad146744ca4fd09b50c482650e3c1b1f4dfa1d4792e0a04a369c7f23336f0400", size = 250067, upload-time = "2026-03-17T10:30:06.535Z" }, + { url = "https://files.pythonhosted.org/packages/de/1b/c6a023a160806a5137dca53468fd97530d6acad24a22003b1578a9c2e429/coverage-7.13.5-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:c555b48be1853fe3997c11c4bd521cdd9a9612352de01fa4508f16ec341e6fe0", size = 246521, upload-time = "2026-03-17T10:30:08.486Z" }, + { url = "https://files.pythonhosted.org/packages/2d/3f/3532c85a55aa2f899fa17c186f831cfa1aa434d88ff792a709636f64130e/coverage-7.13.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7034b5c56a58ae5e85f23949d52c14aca2cfc6848a31764995b7de88f13a1ea0", size = 247126, upload-time = "2026-03-17T10:30:09.966Z" }, + { url = "https://files.pythonhosted.org/packages/aa/2e/b9d56af4a24ef45dfbcda88e06870cb7d57b2b0bfa3a888d79b4c8debd76/coverage-7.13.5-cp310-cp310-win32.whl", hash = "sha256:eb7fdf1ef130660e7415e0253a01a7d5a88c9c4d158bcf75cbbd922fd65a5b58", size = 221860, upload-time = "2026-03-17T10:30:11.393Z" }, + { url = "https://files.pythonhosted.org/packages/9f/cc/d938417e7a4d7f0433ad4edee8bb2acdc60dc7ac5af19e2a07a048ecbee3/coverage-7.13.5-cp310-cp310-win_amd64.whl", hash = "sha256:3e1bb5f6c78feeb1be3475789b14a0f0a5b47d505bfc7267126ccbd50289999e", size = 222788, upload-time = "2026-03-17T10:30:12.886Z" }, + { url = "https://files.pythonhosted.org/packages/9e/ee/a4cf96b8ce1e566ed238f0659ac2d3f007ed1d14b181bcb684e19561a69a/coverage-7.13.5-py3-none-any.whl", hash = "sha256:34b02417cf070e173989b3db962f7ed56d2f644307b2cf9d5a0f258e13084a61", size = 211346, upload-time = "2026-03-17T10:33:15.691Z" }, +] + +[package.optional-dependencies] +toml = [ + { name = "tomli" }, +] + +[[package]] +name = "cryptography" +version = "46.0.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/47/93/ac8f3d5ff04d54bc814e961a43ae5b0b146154c89c61b47bb07557679b18/cryptography-46.0.7.tar.gz", hash = "sha256:e4cfd68c5f3e0bfdad0d38e023239b96a2fe84146481852dffbcca442c245aa5", size = 750652, upload-time = "2026-04-08T01:57:54.692Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/5d/4a8f770695d73be252331e60e526291e3df0c9b27556a90a6b47bccca4c2/cryptography-46.0.7-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:ea42cbe97209df307fdc3b155f1b6fa2577c0defa8f1f7d3be7d31d189108ad4", size = 7179869, upload-time = "2026-04-08T01:56:17.157Z" }, + { url = "https://files.pythonhosted.org/packages/5f/45/6d80dc379b0bbc1f9d1e429f42e4cb9e1d319c7a8201beffd967c516ea01/cryptography-46.0.7-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b36a4695e29fe69215d75960b22577197aca3f7a25b9cf9d165dcfe9d80bc325", size = 4275492, upload-time = "2026-04-08T01:56:19.36Z" }, + { url = "https://files.pythonhosted.org/packages/4a/9a/1765afe9f572e239c3469f2cb429f3ba7b31878c893b246b4b2994ffe2fe/cryptography-46.0.7-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5ad9ef796328c5e3c4ceed237a183f5d41d21150f972455a9d926593a1dcb308", size = 4426670, upload-time = "2026-04-08T01:56:21.415Z" }, + { url = "https://files.pythonhosted.org/packages/8f/3e/af9246aaf23cd4ee060699adab1e47ced3f5f7e7a8ffdd339f817b446462/cryptography-46.0.7-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:73510b83623e080a2c35c62c15298096e2a5dc8d51c3b4e1740211839d0dea77", size = 4280275, upload-time = "2026-04-08T01:56:23.539Z" }, + { url = "https://files.pythonhosted.org/packages/0f/54/6bbbfc5efe86f9d71041827b793c24811a017c6ac0fd12883e4caa86b8ed/cryptography-46.0.7-cp311-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:cbd5fb06b62bd0721e1170273d3f4d5a277044c47ca27ee257025146c34cbdd1", size = 4928402, upload-time = "2026-04-08T01:56:25.624Z" }, + { url = "https://files.pythonhosted.org/packages/2d/cf/054b9d8220f81509939599c8bdbc0c408dbd2bdd41688616a20731371fe0/cryptography-46.0.7-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:420b1e4109cc95f0e5700eed79908cef9268265c773d3a66f7af1eef53d409ef", size = 4459985, upload-time = "2026-04-08T01:56:27.309Z" }, + { url = "https://files.pythonhosted.org/packages/f9/46/4e4e9c6040fb01c7467d47217d2f882daddeb8828f7df800cb806d8a2288/cryptography-46.0.7-cp311-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:24402210aa54baae71d99441d15bb5a1919c195398a87b563df84468160a65de", size = 3990652, upload-time = "2026-04-08T01:56:29.095Z" }, + { url = "https://files.pythonhosted.org/packages/36/5f/313586c3be5a2fbe87e4c9a254207b860155a8e1f3cca99f9910008e7d08/cryptography-46.0.7-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:8a469028a86f12eb7d2fe97162d0634026d92a21f3ae0ac87ed1c4a447886c83", size = 4279805, upload-time = "2026-04-08T01:56:30.928Z" }, + { url = "https://files.pythonhosted.org/packages/69/33/60dfc4595f334a2082749673386a4d05e4f0cf4df8248e63b2c3437585f2/cryptography-46.0.7-cp311-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:9694078c5d44c157ef3162e3bf3946510b857df5a3955458381d1c7cfc143ddb", size = 4892883, upload-time = "2026-04-08T01:56:32.614Z" }, + { url = "https://files.pythonhosted.org/packages/c7/0b/333ddab4270c4f5b972f980adef4faa66951a4aaf646ca067af597f15563/cryptography-46.0.7-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:42a1e5f98abb6391717978baf9f90dc28a743b7d9be7f0751a6f56a75d14065b", size = 4459756, upload-time = "2026-04-08T01:56:34.306Z" }, + { url = "https://files.pythonhosted.org/packages/d2/14/633913398b43b75f1234834170947957c6b623d1701ffc7a9600da907e89/cryptography-46.0.7-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:91bbcb08347344f810cbe49065914fe048949648f6bd5c2519f34619142bbe85", size = 4410244, upload-time = "2026-04-08T01:56:35.977Z" }, + { url = "https://files.pythonhosted.org/packages/10/f2/19ceb3b3dc14009373432af0c13f46aa08e3ce334ec6eff13492e1812ccd/cryptography-46.0.7-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5d1c02a14ceb9148cc7816249f64f623fbfee39e8c03b3650d842ad3f34d637e", size = 4674868, upload-time = "2026-04-08T01:56:38.034Z" }, + { url = "https://files.pythonhosted.org/packages/1a/bb/a5c213c19ee94b15dfccc48f363738633a493812687f5567addbcbba9f6f/cryptography-46.0.7-cp311-abi3-win32.whl", hash = "sha256:d23c8ca48e44ee015cd0a54aeccdf9f09004eba9fc96f38c911011d9ff1bd457", size = 3026504, upload-time = "2026-04-08T01:56:39.666Z" }, + { url = "https://files.pythonhosted.org/packages/2b/02/7788f9fefa1d060ca68717c3901ae7fffa21ee087a90b7f23c7a603c32ae/cryptography-46.0.7-cp311-abi3-win_amd64.whl", hash = "sha256:397655da831414d165029da9bc483bed2fe0e75dde6a1523ec2fe63f3c46046b", size = 3488363, upload-time = "2026-04-08T01:56:41.893Z" }, + { url = "https://files.pythonhosted.org/packages/a7/7f/cd42fc3614386bc0c12f0cb3c4ae1fc2bbca5c9662dfed031514911d513d/cryptography-46.0.7-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:462ad5cb1c148a22b2e3bcc5ad52504dff325d17daf5df8d88c17dda1f75f2a4", size = 7165618, upload-time = "2026-04-08T01:57:10.645Z" }, + { url = "https://files.pythonhosted.org/packages/a5/d0/36a49f0262d2319139d2829f773f1b97ef8aef7f97e6e5bd21455e5a8fb5/cryptography-46.0.7-cp38-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:84d4cced91f0f159a7ddacad249cc077e63195c36aac40b4150e7a57e84fffe7", size = 4270628, upload-time = "2026-04-08T01:57:12.885Z" }, + { url = "https://files.pythonhosted.org/packages/8a/6c/1a42450f464dda6ffbe578a911f773e54dd48c10f9895a23a7e88b3e7db5/cryptography-46.0.7-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:128c5edfe5e5938b86b03941e94fac9ee793a94452ad1365c9fc3f4f62216832", size = 4415405, upload-time = "2026-04-08T01:57:14.923Z" }, + { url = "https://files.pythonhosted.org/packages/9a/92/4ed714dbe93a066dc1f4b4581a464d2d7dbec9046f7c8b7016f5286329e2/cryptography-46.0.7-cp38-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5e51be372b26ef4ba3de3c167cd3d1022934bc838ae9eaad7e644986d2a3d163", size = 4272715, upload-time = "2026-04-08T01:57:16.638Z" }, + { url = "https://files.pythonhosted.org/packages/b7/e6/a26b84096eddd51494bba19111f8fffe976f6a09f132706f8f1bf03f51f7/cryptography-46.0.7-cp38-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:cdf1a610ef82abb396451862739e3fc93b071c844399e15b90726ef7470eeaf2", size = 4918400, upload-time = "2026-04-08T01:57:19.021Z" }, + { url = "https://files.pythonhosted.org/packages/c7/08/ffd537b605568a148543ac3c2b239708ae0bd635064bab41359252ef88ed/cryptography-46.0.7-cp38-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:1d25aee46d0c6f1a501adcddb2d2fee4b979381346a78558ed13e50aa8a59067", size = 4450634, upload-time = "2026-04-08T01:57:21.185Z" }, + { url = "https://files.pythonhosted.org/packages/16/01/0cd51dd86ab5b9befe0d031e276510491976c3a80e9f6e31810cce46c4ad/cryptography-46.0.7-cp38-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:cdfbe22376065ffcf8be74dc9a909f032df19bc58a699456a21712d6e5eabfd0", size = 3985233, upload-time = "2026-04-08T01:57:22.862Z" }, + { url = "https://files.pythonhosted.org/packages/92/49/819d6ed3a7d9349c2939f81b500a738cb733ab62fbecdbc1e38e83d45e12/cryptography-46.0.7-cp38-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:abad9dac36cbf55de6eb49badd4016806b3165d396f64925bf2999bcb67837ba", size = 4271955, upload-time = "2026-04-08T01:57:24.814Z" }, + { url = "https://files.pythonhosted.org/packages/80/07/ad9b3c56ebb95ed2473d46df0847357e01583f4c52a85754d1a55e29e4d0/cryptography-46.0.7-cp38-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:935ce7e3cfdb53e3536119a542b839bb94ec1ad081013e9ab9b7cfd478b05006", size = 4879888, upload-time = "2026-04-08T01:57:26.88Z" }, + { url = "https://files.pythonhosted.org/packages/b8/c7/201d3d58f30c4c2bdbe9b03844c291feb77c20511cc3586daf7edc12a47b/cryptography-46.0.7-cp38-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:35719dc79d4730d30f1c2b6474bd6acda36ae2dfae1e3c16f2051f215df33ce0", size = 4449961, upload-time = "2026-04-08T01:57:29.068Z" }, + { url = "https://files.pythonhosted.org/packages/a5/ef/649750cbf96f3033c3c976e112265c33906f8e462291a33d77f90356548c/cryptography-46.0.7-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:7bbc6ccf49d05ac8f7d7b5e2e2c33830d4fe2061def88210a126d130d7f71a85", size = 4401696, upload-time = "2026-04-08T01:57:31.029Z" }, + { url = "https://files.pythonhosted.org/packages/41/52/a8908dcb1a389a459a29008c29966c1d552588d4ae6d43f3a1a4512e0ebe/cryptography-46.0.7-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a1529d614f44b863a7b480c6d000fe93b59acee9c82ffa027cfadc77521a9f5e", size = 4664256, upload-time = "2026-04-08T01:57:33.144Z" }, + { url = "https://files.pythonhosted.org/packages/4b/fa/f0ab06238e899cc3fb332623f337a7364f36f4bb3f2534c2bb95a35b132c/cryptography-46.0.7-cp38-abi3-win32.whl", hash = "sha256:f247c8c1a1fb45e12586afbb436ef21ff1e80670b2861a90353d9b025583d246", size = 3013001, upload-time = "2026-04-08T01:57:34.933Z" }, + { url = "https://files.pythonhosted.org/packages/d2/f1/00ce3bde3ca542d1acd8f8cfa38e446840945aa6363f9b74746394b14127/cryptography-46.0.7-cp38-abi3-win_amd64.whl", hash = "sha256:506c4ff91eff4f82bdac7633318a526b1d1309fc07ca76a3ad182cb5b686d6d3", size = 3472985, upload-time = "2026-04-08T01:57:36.714Z" }, +] + +[[package]] +name = "cycler" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, +] + +[[package]] +name = "debugpy" +version = "1.8.20" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/b7/cd8080344452e4874aae67c40d8940e2b4d47b01601a8fd9f44786c757c7/debugpy-1.8.20.tar.gz", hash = "sha256:55bc8701714969f1ab89a6d5f2f3d40c36f91b2cbe2f65d98bf8196f6a6a2c33", size = 1645207, upload-time = "2026-01-29T23:03:28.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/be/8bd693a0b9d53d48c8978fa5d889e06f3b5b03e45fd1ea1e78267b4887cb/debugpy-1.8.20-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:157e96ffb7f80b3ad36d808646198c90acb46fdcfd8bb1999838f0b6f2b59c64", size = 2099192, upload-time = "2026-01-29T23:03:29.707Z" }, + { url = "https://files.pythonhosted.org/packages/77/1b/85326d07432086a06361d493d2743edd0c4fc2ef62162be7f8618441ac37/debugpy-1.8.20-cp310-cp310-manylinux_2_34_x86_64.whl", hash = "sha256:c1178ae571aff42e61801a38b007af504ec8e05fde1c5c12e5a7efef21009642", size = 3088568, upload-time = "2026-01-29T23:03:31.467Z" }, + { url = "https://files.pythonhosted.org/packages/e8/60/3e08462ee3eccd10998853eb35947c416e446bfe2bc37dbb886b9044586c/debugpy-1.8.20-cp310-cp310-win32.whl", hash = "sha256:c29dd9d656c0fbd77906a6e6a82ae4881514aa3294b94c903ff99303e789b4a2", size = 5284399, upload-time = "2026-01-29T23:03:33.678Z" }, + { url = "https://files.pythonhosted.org/packages/72/43/09d49106e770fe558ced5e80df2e3c2ebee10e576eda155dcc5670473663/debugpy-1.8.20-cp310-cp310-win_amd64.whl", hash = "sha256:3ca85463f63b5dd0aa7aaa933d97cbc47c174896dcae8431695872969f981893", size = 5316388, upload-time = "2026-01-29T23:03:35.095Z" }, + { url = "https://files.pythonhosted.org/packages/e0/c3/7f67dea8ccf8fdcb9c99033bbe3e90b9e7395415843accb81428c441be2d/debugpy-1.8.20-py2.py3-none-any.whl", hash = "sha256:5be9bed9ae3be00665a06acaa48f8329d2b9632f15fd09f6a9a8c8d9907e54d7", size = 5337658, upload-time = "2026-01-29T23:04:17.404Z" }, +] + +[[package]] +name = "decorator" +version = "5.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/fa/6d96a0978d19e17b68d634497769987b16c8f4cd0a7a05048bec693caa6b/decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360", size = 56711, upload-time = "2025-02-24T04:41:34.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a", size = 9190, upload-time = "2025-02-24T04:41:32.565Z" }, +] + +[[package]] +name = "deepchem" +version = "2.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "rdkit" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "sympy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/1d/568b352513dfa4405da4acbce233c555bc4af29dd63e904537a8014cd585/deepchem-2.8.0.tar.gz", hash = "sha256:ba3f0cf3b589a33dd70757b1045600f52bb539bcd2b6fed9058cb76c7e9d4538", size = 847104, upload-time = "2024-04-02T02:20:46.332Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/c9/3bf4473e3b8131a733219346ff90cdab98e019b90c944fc339a599fc8896/deepchem-2.8.0-py3-none-any.whl", hash = "sha256:042c7639770e69b127f3df5e5bdf139893caa1706d512893d78728fd0a2de8b0", size = 1026290, upload-time = "2024-04-02T02:20:39.079Z" }, +] + +[[package]] +name = "defusedxml" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/d5/c66da9b79e5bdb124974bfe172b4daf3c984ebd9c2a06e2b8a4dc7331c72/defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69", size = 75520, upload-time = "2021-03-08T10:59:26.269Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61", size = 25604, upload-time = "2021-03-08T10:59:24.45Z" }, +] + +[[package]] +name = "dgl" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "networkx" }, + { name = "numpy" }, + { name = "psutil" }, + { name = "requests" }, + { name = "scipy" }, + { name = "torchdata" }, + { name = "tqdm" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/09/2d/c0a40c0d78a8e9c0c43e7f6e4aebebb39c8bf0f80380db2c1f1ba9f3bdfa/dgl-2.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ff74c7119cb1e87c1b06293eba8c22725594517062e74659b1a8636134b16974", size = 6889468, upload-time = "2024-03-05T07:16:21.004Z" }, + { url = "https://files.pythonhosted.org/packages/89/19/08b77e50de7beb9c011905167ab38ecee759a796447ed7ad466484eafb53/dgl-2.1.0-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:1fda987e01987d655e9a2b16281e1f31759bd5088ce08785422055c71abc0298", size = 7464359, upload-time = "2024-03-05T07:16:24.216Z" }, + { url = "https://files.pythonhosted.org/packages/ff/45/44fea6e5228602f5d6ad8b4f5a377f5cf5cb5cb6444d9e7cd99150f13fa2/dgl-2.1.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:336e5aed294b9f2f398be332caa0b256e6386e5a6a3a25dfe0715a161e6c4f94", size = 8548990, upload-time = "2024-03-05T07:16:26.655Z" }, + { url = "https://files.pythonhosted.org/packages/73/72/6bc97419cf8fa1e11420c674fafa3c03e4df9d91bfd8fd802011b5741ce9/dgl-2.1.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:65f5ae94c4c88433fc4524ab8c431494cfddd8100181d5de6df4ed08aa41d14d", size = 7430720, upload-time = "2024-03-05T07:16:29.505Z" }, +] + +[[package]] +name = "dgllife" +version = "0.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "hyperopt" }, + { name = "joblib" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "requests" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/84/5b2b0c5529a08ac547c743152354c6e02047874bdc81fab72c94780c21b5/dgllife-0.3.2.tar.gz", hash = "sha256:6a0baf112e5d89b0ced2d459872750540517eb03ae0a8cf71576c4b69fc6b553", size = 146565, upload-time = "2023-02-13T08:43:11.8Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/4e/f96023191b990533abf50fb172b2439e4ab5ee3efb67520a57facd33df12/dgllife-0.3.2-py3-none-any.whl", hash = "sha256:83147cf8972fd55f3bcbc9ab940c826fd8f85fd6c7973ae8daad2e472228e488", size = 226053, upload-time = "2023-02-13T08:43:09.359Z" }, +] + +[[package]] +name = "dill" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/e1/56027a71e31b02ddc53c7d65b01e68edf64dea2932122fe7746a516f75d5/dill-0.4.1.tar.gz", hash = "sha256:423092df4182177d4d8ba8290c8a5b640c66ab35ec7da59ccfa00f6fa3eea5fa", size = 187315, upload-time = "2026-01-19T02:36:56.85Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/77/dc8c558f7593132cf8fefec57c4f60c83b16941c574ac5f619abb3ae7933/dill-0.4.1-py3-none-any.whl", hash = "sha256:1e1ce33e978ae97fcfcff5638477032b801c46c7c65cf717f95fbc2248f79a9d", size = 120019, upload-time = "2026-01-19T02:36:55.663Z" }, +] + +[[package]] +name = "docutils" +version = "0.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", size = 2204444, upload-time = "2024-04-23T18:57:18.24Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", size = 587408, upload-time = "2024-04-23T18:57:14.835Z" }, +] + +[[package]] +name = "exceptiongroup" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" }, +] + +[[package]] +name = "execnet" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bf/89/780e11f9588d9e7128a3f87788354c7946a9cbb1401ad38a48c4db9a4f07/execnet-2.1.2.tar.gz", hash = "sha256:63d83bfdd9a23e35b9c6a3261412324f964c2ec8dcd8d3c6916ee9373e0befcd", size = 166622, upload-time = "2025-11-12T09:56:37.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/84/02fc1827e8cdded4aa65baef11296a9bbe595c474f0d6d758af082d849fd/execnet-2.1.2-py3-none-any.whl", hash = "sha256:67fba928dd5a544b783f6056f449e5e3931a5c378b128bc18501f7ea79e296ec", size = 40708, upload-time = "2025-11-12T09:56:36.333Z" }, +] + +[[package]] +name = "executing" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cc/28/c14e053b6762b1044f34a13aab6859bbf40456d37d23aa286ac24cfd9a5d/executing-2.2.1.tar.gz", hash = "sha256:3632cc370565f6648cc328b32435bd120a1e4ebb20c77e3fdde9a13cd1e533c4", size = 1129488, upload-time = "2025-09-01T09:48:10.866Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl", hash = "sha256:760643d3452b4d777d295bb167ccc74c64a81df23fb5e08eff250c425a4b2017", size = 28317, upload-time = "2025-09-01T09:48:08.5Z" }, +] + +[[package]] +name = "fastjsonschema" +version = "2.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/b5/23b216d9d985a956623b6bd12d4086b60f0059b27799f23016af04a74ea1/fastjsonschema-2.21.2.tar.gz", hash = "sha256:b1eb43748041c880796cd077f1a07c3d94e93ae84bba5ed36800a33554ae05de", size = 374130, upload-time = "2025-08-14T18:49:36.666Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/a8/20d0723294217e47de6d9e2e40fd4a9d2f7c4b6ef974babd482a59743694/fastjsonschema-2.21.2-py3-none-any.whl", hash = "sha256:1c797122d0a86c5cace2e54bf4e819c36223b552017172f32c5c024a6b77e463", size = 24024, upload-time = "2025-08-14T18:49:34.776Z" }, +] + +[[package]] +name = "filelock" +version = "3.28.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/17/6e8890271880903e3538660a21d63a6c1fea969ac71d0d6b608b78727fa9/filelock-3.28.0.tar.gz", hash = "sha256:4ed1010aae813c4ee8d9c660e4792475ee60c4a0ba76073ceaf862bd317e3ca6", size = 56474, upload-time = "2026-04-14T22:54:33.625Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/21/2f728888c45033d34a417bfcd248ea2564c9e08ab1bfd301377cf05d5586/filelock-3.28.0-py3-none-any.whl", hash = "sha256:de9af6712788e7171df1b28b15eba2446c69721433fa427a9bee07b17820a9db", size = 39189, upload-time = "2026-04-14T22:54:32.037Z" }, +] + +[[package]] +name = "flatbuffers" +version = "25.12.19" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/2d/d2a548598be01649e2d46231d151a6c56d10b964d94043a335ae56ea2d92/flatbuffers-25.12.19-py2.py3-none-any.whl", hash = "sha256:7634f50c427838bb021c2d66a3d1168e9d199b0607e6329399f04846d42e20b4", size = 26661, upload-time = "2025-12-19T23:16:13.622Z" }, +] + +[[package]] +name = "folium" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "branca" }, + { name = "jinja2" }, + { name = "numpy" }, + { name = "requests" }, + { name = "xyzservices" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/76/84a1b1b00ce71f9c0c44af7d80f310c02e2e583591fe7d4cb03baecd0d3f/folium-0.20.0.tar.gz", hash = "sha256:a0d78b9d5a36ba7589ca9aedbd433e84e9fcab79cd6ac213adbcff922e454cb9", size = 109932, upload-time = "2025-06-16T20:22:51.803Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b5/a8/5f764f333204db0390362a4356d03a43626997f26818a0e9396f1b3bd8c9/folium-0.20.0-py2.py3-none-any.whl", hash = "sha256:f0bc2a92acde20bca56367aa5c1c376c433f450608d058daebab2fc9bf8198bf", size = 113394, upload-time = "2025-06-16T20:22:50.318Z" }, +] + +[[package]] +name = "fonttools" +version = "4.62.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/08/7012b00a9a5874311b639c3920270c36ee0c445b69d9989a85e5c92ebcb0/fonttools-4.62.1.tar.gz", hash = "sha256:e54c75fd6041f1122476776880f7c3c3295ffa31962dc6ebe2543c00dca58b5d", size = 3580737, upload-time = "2026-03-13T13:54:25.52Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/ff/532ed43808b469c807e8cb6b21358da3fe6fd51486b3a8c93db0bb5d957f/fonttools-4.62.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ad5cca75776cd453b1b035b530e943334957ae152a36a88a320e779d61fc980c", size = 2873740, upload-time = "2026-03-13T13:52:11.822Z" }, + { url = "https://files.pythonhosted.org/packages/85/e4/2318d2b430562da7227010fb2bb029d2fa54d7b46443ae8942bab224e2a0/fonttools-4.62.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0b3ae47e8636156a9accff64c02c0924cbebad62854c4a6dbdc110cd5b4b341a", size = 2417649, upload-time = "2026-03-13T13:52:14.605Z" }, + { url = "https://files.pythonhosted.org/packages/4c/28/40f15523b5188598018e7956899fed94eb7debec89e2dd70cb4a8df90492/fonttools-4.62.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c9b9e288b4da2f64fd6180644221749de651703e8d0c16bd4b719533a3a7d6e3", size = 4935213, upload-time = "2026-03-13T13:52:17.399Z" }, + { url = "https://files.pythonhosted.org/packages/42/09/7dbe3d7023f57d9b580cfa832109d521988112fd59dddfda3fddda8218f9/fonttools-4.62.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7bca7a1c1faf235ffe25d4f2e555246b4750220b38de8261d94ebc5ce8a23c23", size = 4892374, upload-time = "2026-03-13T13:52:20.175Z" }, + { url = "https://files.pythonhosted.org/packages/d1/2d/84509a2e32cb925371560ef5431365d8da2183c11d98e5b4b8b4e42426a5/fonttools-4.62.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b4e0fcf265ad26e487c56cb12a42dffe7162de708762db951e1b3f755319507d", size = 4911856, upload-time = "2026-03-13T13:52:22.777Z" }, + { url = "https://files.pythonhosted.org/packages/a5/80/df28131379eed93d9e6e6fccd3bf6e3d077bebbfe98cc83f21bbcd83ed02/fonttools-4.62.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2d850f66830a27b0d498ee05adb13a3781637b1826982cd7e2b3789ef0cc71ae", size = 5031712, upload-time = "2026-03-13T13:52:25.14Z" }, + { url = "https://files.pythonhosted.org/packages/3d/03/3c8f09aad64230cd6d921ae7a19f9603c36f70930b00459f112706f6769a/fonttools-4.62.1-cp310-cp310-win32.whl", hash = "sha256:486f32c8047ccd05652aba17e4a8819a3a9d78570eb8a0e3b4503142947880ed", size = 1507878, upload-time = "2026-03-13T13:52:28.149Z" }, + { url = "https://files.pythonhosted.org/packages/dd/ec/f53f626f8f3e89f4cadd8fc08f3452c8fd182c951ad5caa35efac22b29ab/fonttools-4.62.1-cp310-cp310-win_amd64.whl", hash = "sha256:5a648bde915fba9da05ae98856987ca91ba832949a9e2888b48c47ef8b96c5a9", size = 1556766, upload-time = "2026-03-13T13:52:30.814Z" }, + { url = "https://files.pythonhosted.org/packages/fd/ba/56147c165442cc5ba7e82ecf301c9a68353cede498185869e6e02b4c264f/fonttools-4.62.1-py3-none-any.whl", hash = "sha256:7487782e2113861f4ddcc07c3436450659e3caa5e470b27dc2177cade2d8e7fd", size = 1152647, upload-time = "2026-03-13T13:54:22.735Z" }, +] + +[[package]] +name = "fqdn" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/30/3e/a80a8c077fd798951169626cde3e239adeba7dab75deb3555716415bd9b0/fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f", size = 6015, upload-time = "2021-03-11T07:16:29.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014", size = 9121, upload-time = "2021-03-11T07:16:28.351Z" }, +] + +[[package]] +name = "frozenlist" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/4a/557715d5047da48d54e659203b9335be7bfaafda2c3f627b7c47e0b3aaf3/frozenlist-1.8.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b37f6d31b3dcea7deb5e9696e529a6aa4a898adc33db82da12e4c60a7c4d2011", size = 86230, upload-time = "2025-10-06T05:35:23.699Z" }, + { url = "https://files.pythonhosted.org/packages/a2/fb/c85f9fed3ea8fe8740e5b46a59cc141c23b842eca617da8876cfce5f760e/frozenlist-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef2b7b394f208233e471abc541cc6991f907ffd47dc72584acee3147899d6565", size = 49621, upload-time = "2025-10-06T05:35:25.341Z" }, + { url = "https://files.pythonhosted.org/packages/63/70/26ca3f06aace16f2352796b08704338d74b6d1a24ca38f2771afbb7ed915/frozenlist-1.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a88f062f072d1589b7b46e951698950e7da00442fc1cacbe17e19e025dc327ad", size = 49889, upload-time = "2025-10-06T05:35:26.797Z" }, + { url = "https://files.pythonhosted.org/packages/5d/ed/c7895fd2fde7f3ee70d248175f9b6cdf792fb741ab92dc59cd9ef3bd241b/frozenlist-1.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f57fb59d9f385710aa7060e89410aeb5058b99e62f4d16b08b91986b9a2140c2", size = 219464, upload-time = "2025-10-06T05:35:28.254Z" }, + { url = "https://files.pythonhosted.org/packages/6b/83/4d587dccbfca74cb8b810472392ad62bfa100bf8108c7223eb4c4fa2f7b3/frozenlist-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:799345ab092bee59f01a915620b5d014698547afd011e691a208637312db9186", size = 221649, upload-time = "2025-10-06T05:35:29.454Z" }, + { url = "https://files.pythonhosted.org/packages/6a/c6/fd3b9cd046ec5fff9dab66831083bc2077006a874a2d3d9247dea93ddf7e/frozenlist-1.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c23c3ff005322a6e16f71bf8692fcf4d5a304aaafe1e262c98c6d4adc7be863e", size = 219188, upload-time = "2025-10-06T05:35:30.951Z" }, + { url = "https://files.pythonhosted.org/packages/ce/80/6693f55eb2e085fc8afb28cf611448fb5b90e98e068fa1d1b8d8e66e5c7d/frozenlist-1.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8a76ea0f0b9dfa06f254ee06053d93a600865b3274358ca48a352ce4f0798450", size = 231748, upload-time = "2025-10-06T05:35:32.101Z" }, + { url = "https://files.pythonhosted.org/packages/97/d6/e9459f7c5183854abd989ba384fe0cc1a0fb795a83c033f0571ec5933ca4/frozenlist-1.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c7366fe1418a6133d5aa824ee53d406550110984de7637d65a178010f759c6ef", size = 236351, upload-time = "2025-10-06T05:35:33.834Z" }, + { url = "https://files.pythonhosted.org/packages/97/92/24e97474b65c0262e9ecd076e826bfd1d3074adcc165a256e42e7b8a7249/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:13d23a45c4cebade99340c4165bd90eeb4a56c6d8a9d8aa49568cac19a6d0dc4", size = 218767, upload-time = "2025-10-06T05:35:35.205Z" }, + { url = "https://files.pythonhosted.org/packages/ee/bf/dc394a097508f15abff383c5108cb8ad880d1f64a725ed3b90d5c2fbf0bb/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:e4a3408834f65da56c83528fb52ce7911484f0d1eaf7b761fc66001db1646eff", size = 235887, upload-time = "2025-10-06T05:35:36.354Z" }, + { url = "https://files.pythonhosted.org/packages/40/90/25b201b9c015dbc999a5baf475a257010471a1fa8c200c843fd4abbee725/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:42145cd2748ca39f32801dad54aeea10039da6f86e303659db90db1c4b614c8c", size = 228785, upload-time = "2025-10-06T05:35:37.949Z" }, + { url = "https://files.pythonhosted.org/packages/84/f4/b5bc148df03082f05d2dd30c089e269acdbe251ac9a9cf4e727b2dbb8a3d/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e2de870d16a7a53901e41b64ffdf26f2fbb8917b3e6ebf398098d72c5b20bd7f", size = 230312, upload-time = "2025-10-06T05:35:39.178Z" }, + { url = "https://files.pythonhosted.org/packages/db/4b/87e95b5d15097c302430e647136b7d7ab2398a702390cf4c8601975709e7/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:20e63c9493d33ee48536600d1a5c95eefc870cd71e7ab037763d1fbb89cc51e7", size = 217650, upload-time = "2025-10-06T05:35:40.377Z" }, + { url = "https://files.pythonhosted.org/packages/e5/70/78a0315d1fea97120591a83e0acd644da638c872f142fd72a6cebee825f3/frozenlist-1.8.0-cp310-cp310-win32.whl", hash = "sha256:adbeebaebae3526afc3c96fad434367cafbfd1b25d72369a9e5858453b1bb71a", size = 39659, upload-time = "2025-10-06T05:35:41.863Z" }, + { url = "https://files.pythonhosted.org/packages/66/aa/3f04523fb189a00e147e60c5b2205126118f216b0aa908035c45336e27e4/frozenlist-1.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:667c3777ca571e5dbeb76f331562ff98b957431df140b54c85fd4d52eea8d8f6", size = 43837, upload-time = "2025-10-06T05:35:43.205Z" }, + { url = "https://files.pythonhosted.org/packages/39/75/1135feecdd7c336938bd55b4dc3b0dfc46d85b9be12ef2628574b28de776/frozenlist-1.8.0-cp310-cp310-win_arm64.whl", hash = "sha256:80f85f0a7cc86e7a54c46d99c9e1318ff01f4687c172ede30fd52d19d1da1c8e", size = 39989, upload-time = "2025-10-06T05:35:44.596Z" }, + { url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" }, +] + +[[package]] +name = "fsspec" +version = "2024.12.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/11/de70dee31455c546fbc88301971ec03c328f3d1138cfba14263f651e9551/fsspec-2024.12.0.tar.gz", hash = "sha256:670700c977ed2fb51e0d9f9253177ed20cbde4a3e5c0283cc5385b5870c8533f", size = 291600, upload-time = "2024-12-19T19:57:30.333Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/86/5486b0188d08aa643e127774a99bac51ffa6cf343e3deb0583956dca5b22/fsspec-2024.12.0-py3-none-any.whl", hash = "sha256:b520aed47ad9804237ff878b504267a3b0b441e97508bd6d2d8774e3db85cee2", size = 183862, upload-time = "2024-12-19T19:57:28.258Z" }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp" }, +] + +[[package]] +name = "future" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/b2/4140c69c6a66432916b26158687e821ba631a4c9273c474343badf84d3ba/future-1.0.0.tar.gz", hash = "sha256:bd2968309307861edae1458a4f8a4f3598c03be43b97521076aebf5d94c07b05", size = 1228490, upload-time = "2024-02-21T11:52:38.461Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/71/ae30dadffc90b9006d77af76b393cb9dfbfc9629f339fc1574a1c52e6806/future-1.0.0-py3-none-any.whl", hash = "sha256:929292d34f5872e70396626ef385ec22355a1fae8ad29e1a734c3e43f9fbc216", size = 491326, upload-time = "2024-02-21T11:52:35.956Z" }, +] + +[[package]] +name = "gast" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/91/f6/e73969782a2ecec280f8a176f2476149dd9dba69d5f8779ec6108a7721e6/gast-0.7.0.tar.gz", hash = "sha256:0bb14cd1b806722e91ddbab6fb86bba148c22b40e7ff11e248974e04c8adfdae", size = 33630, upload-time = "2025-11-29T15:30:05.266Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/33/f1c6a276de27b7d7339a34749cc33fa87f077f921969c47185d34a887ae2/gast-0.7.0-py3-none-any.whl", hash = "sha256:99cbf1365633a74099f69c59bd650476b96baa5ef196fec88032b00b31ba36f7", size = 22966, upload-time = "2025-11-29T15:30:03.983Z" }, +] + +[[package]] +name = "geopandas" +version = "1.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "pyogrio" }, + { name = "pyproj" }, + { name = "shapely" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/85/ba/8e6b2091878e99e86a36a814dcaeff652ed48bdb03d53e78e15aaa63a914/geopandas-1.1.3.tar.gz", hash = "sha256:91a31989b6f566012838d21d5f8033f37dce882079ccb7cfdc40d5ccce7f284f", size = 336718, upload-time = "2026-03-09T21:49:09.545Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/78/6a04792ace63a93e162f1305392d500ae8ddcb620e7eb88a22fd622b35bb/geopandas-1.1.3-py3-none-any.whl", hash = "sha256:90d62a64f95eaa3be2ccc115c5f3d6e24208bb11983b390fdc0621a3eccd0230", size = 342514, upload-time = "2026-03-09T21:49:07.973Z" }, +] + +[[package]] +name = "google-auth" +version = "2.49.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography" }, + { name = "pyasn1-modules" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/fc/e925290a1ad95c975c459e2df070fac2b90954e13a0370ac505dff78cb99/google_auth-2.49.2.tar.gz", hash = "sha256:c1ae38500e73065dcae57355adb6278cf8b5c8e391994ae9cbadbcb9631ab409", size = 333958, upload-time = "2026-04-10T00:41:21.888Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/76/d241a5c927433420507215df6cac1b1fa4ac0ba7a794df42a84326c68da8/google_auth-2.49.2-py3-none-any.whl", hash = "sha256:c2720924dfc82dedb962c9f52cabb2ab16714fd0a6a707e40561d217574ed6d5", size = 240638, upload-time = "2026-04-10T00:41:14.501Z" }, +] + +[[package]] +name = "google-auth-oauthlib" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-auth" }, + { name = "requests-oauthlib" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e3/b4/ef2170c5f6aa5bc2461bab959a84e56d2819ce26662b50038d2d0602223e/google-auth-oauthlib-1.0.0.tar.gz", hash = "sha256:e375064964820b47221a7e1b7ee1fd77051b6323c3f9e3e19785f78ab67ecfc5", size = 20530, upload-time = "2023-02-07T20:53:20.679Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/07/8d9a8186e6768b55dfffeb57c719bc03770cf8a970a074616ae6f9e26a57/google_auth_oauthlib-1.0.0-py2.py3-none-any.whl", hash = "sha256:95880ca704928c300f48194d1770cf5b1462835b6e49db61445a520f793fd5fb", size = 18926, upload-time = "2023-02-07T20:53:18.837Z" }, +] + +[[package]] +name = "google-pasta" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/35/4a/0bd53b36ff0323d10d5f24ebd67af2de10a1117f5cf4d7add90df92756f1/google-pasta-0.2.0.tar.gz", hash = "sha256:c9f2c8dfc8f96d0d5808299920721be30c9eec37f2389f28904f454565c8a16e", size = 40430, upload-time = "2020-03-13T18:57:50.34Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/de/c648ef6835192e6e2cc03f40b19eeda4382c49b5bafb43d88b931c4c74ac/google_pasta-0.2.0-py3-none-any.whl", hash = "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed", size = 57471, upload-time = "2020-03-13T18:57:48.872Z" }, +] + +[[package]] +name = "greenlet" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/86/94/a5935717b307d7c71fe877b52b884c6af707d2d2090db118a03fbd799369/greenlet-3.4.0.tar.gz", hash = "sha256:f50a96b64dafd6169e595a5c56c9146ef80333e67d4476a65a9c55f400fc22ff", size = 195913, upload-time = "2026-04-08T17:08:00.863Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/bc/e30e1e3d5e8860b0e0ce4d2b16b2681b77fd13542fc0d72f7e3c22d16eff/greenlet-3.4.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d18eae9a7fb0f499efcd146b8c9750a2e1f6e0e93b5a382b3481875354a430e6", size = 284315, upload-time = "2026-04-08T17:02:52.322Z" }, + { url = "https://files.pythonhosted.org/packages/5b/cc/e023ae1967d2a26737387cac083e99e47f65f58868bd155c4c80c01ec4e0/greenlet-3.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:636d2f95c309e35f650e421c23297d5011716be15d966e6328b367c9fc513a82", size = 601916, upload-time = "2026-04-08T16:24:35.533Z" }, + { url = "https://files.pythonhosted.org/packages/67/32/5be1677954b6d8810b33abe94e3eb88726311c58fa777dc97e390f7caf5a/greenlet-3.4.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:234582c20af9742583c3b2ddfbdbb58a756cfff803763ffaae1ac7990a9fac31", size = 616399, upload-time = "2026-04-08T16:30:54.536Z" }, + { url = "https://files.pythonhosted.org/packages/74/bf/2d58d5ea515704f83e34699128c9072a34bea27d2b6a556e102105fe62a5/greenlet-3.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:523677e69cd4711b5a014e37bc1fb3a29947c3e3a5bb6a527e1cc50312e5a398", size = 611978, upload-time = "2026-04-08T15:56:31.335Z" }, + { url = "https://files.pythonhosted.org/packages/bd/69/6525049b6c179d8a923256304d8387b8bdd4acab1acf0407852463c6d514/greenlet-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b45e45fe47a19051a396abb22e19e7836a59ee6c5a90f3be427343c37908d65b", size = 1571957, upload-time = "2026-04-08T16:26:17.041Z" }, + { url = "https://files.pythonhosted.org/packages/4e/6c/bbfb798b05fec736a0d24dc23e81b45bcee87f45a83cfb39db031853bddc/greenlet-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5434271357be07f3ad0936c312645853b7e689e679e29310e2de09a9ea6c3adf", size = 1637223, upload-time = "2026-04-08T15:57:27.556Z" }, + { url = "https://files.pythonhosted.org/packages/b7/7d/981fe0e7c07bd9d5e7eb18decb8590a11e3955878291f7a7de2e9c668eb7/greenlet-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:a19093fbad824ed7c0f355b5ff4214bffda5f1a7f35f29b31fcaa240cc0135ab", size = 237902, upload-time = "2026-04-08T17:03:14.16Z" }, +] + +[[package]] +name = "grpcio" +version = "1.80.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b7/48/af6173dbca4454f4637a4678b67f52ca7e0c1ed7d5894d89d434fecede05/grpcio-1.80.0.tar.gz", hash = "sha256:29aca15edd0688c22ba01d7cc01cb000d72b2033f4a3c72a81a19b56fd143257", size = 12978905, upload-time = "2026-03-30T08:49:10.502Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/cd/bb7b7e54084a344c03d68144450da7ddd5564e51a298ae1662de65f48e2d/grpcio-1.80.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:886457a7768e408cdce226ad1ca67d2958917d306523a0e21e1a2fdaa75c9c9c", size = 6050363, upload-time = "2026-03-30T08:46:20.894Z" }, + { url = "https://files.pythonhosted.org/packages/16/02/1417f5c3460dea65f7a2e3c14e8b31e77f7ffb730e9bfadd89eda7a9f477/grpcio-1.80.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:7b641fc3f1dc647bfd80bd713addc68f6d145956f64677e56d9ebafc0bd72388", size = 12026037, upload-time = "2026-03-30T08:46:25.144Z" }, + { url = "https://files.pythonhosted.org/packages/43/98/c910254eedf2cae368d78336a2de0678e66a7317d27c02522392f949b5c6/grpcio-1.80.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:33eb763f18f006dc7fee1e69831d38d23f5eccd15b2e0f92a13ee1d9242e5e02", size = 6602306, upload-time = "2026-03-30T08:46:27.593Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f8/88ca4e78c077b2b2113d95da1e1ab43efd43d723c9a0397d26529c2c1a56/grpcio-1.80.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:52d143637e3872633fc7dd7c3c6a1c84e396b359f3a72e215f8bf69fd82084fc", size = 7301535, upload-time = "2026-03-30T08:46:29.556Z" }, + { url = "https://files.pythonhosted.org/packages/f9/96/f28660fe2fe0f153288bf4a04e4910b7309d442395135c88ed4f5b3b8b40/grpcio-1.80.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c51bf8ac4575af2e0678bccfb07e47321fc7acb5049b4482832c5c195e04e13a", size = 6808669, upload-time = "2026-03-30T08:46:31.984Z" }, + { url = "https://files.pythonhosted.org/packages/47/eb/3f68a5e955779c00aeef23850e019c1c1d0e032d90633ba49c01ad5a96e0/grpcio-1.80.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:50a9871536d71c4fba24ee856abc03a87764570f0c457dd8db0b4018f379fed9", size = 7409489, upload-time = "2026-03-30T08:46:34.684Z" }, + { url = "https://files.pythonhosted.org/packages/5b/a7/d2f681a4bfb881be40659a309771f3bdfbfdb1190619442816c3f0ffc079/grpcio-1.80.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a72d84ad0514db063e21887fbacd1fd7acb4d494a564cae22227cd45c7fbf199", size = 8423167, upload-time = "2026-03-30T08:46:36.833Z" }, + { url = "https://files.pythonhosted.org/packages/97/8a/29b4589c204959aa35ce5708400a05bba72181807c45c47b3ec000c39333/grpcio-1.80.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f7691a6788ad9196872f95716df5bc643ebba13c97140b7a5ee5c8e75d1dea81", size = 7846761, upload-time = "2026-03-30T08:46:40.091Z" }, + { url = "https://files.pythonhosted.org/packages/6b/d2/ed143e097230ee121ac5848f6ff14372dba91289b10b536d54fb1b7cbae7/grpcio-1.80.0-cp310-cp310-win32.whl", hash = "sha256:46c2390b59d67f84e882694d489f5b45707c657832d7934859ceb8c33f467069", size = 4156534, upload-time = "2026-03-30T08:46:42.026Z" }, + { url = "https://files.pythonhosted.org/packages/d5/c9/df8279bb49b29409995e95efa85b72973d62f8aeff89abee58c91f393710/grpcio-1.80.0-cp310-cp310-win_amd64.whl", hash = "sha256:dc053420fc75749c961e2a4c906398d7c15725d36ccc04ae6d16093167223b58", size = 4889869, upload-time = "2026-03-30T08:46:44.219Z" }, +] + +[[package]] +name = "h11" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, +] + +[[package]] +name = "h5py" +version = "3.16.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/33/acd0ce6863b6c0d7735007df01815403f5589a21ff8c2e1ee2587a38f548/h5py-3.16.0.tar.gz", hash = "sha256:a0dbaad796840ccaa67a4c144a0d0c8080073c34c76d5a6941d6818678ef2738", size = 446526, upload-time = "2026-03-06T13:49:08.07Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/6b/231413e58a787a89b316bb0d1777da3c62257e4797e09afd8d17ad3549dc/h5py-3.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e06f864bedb2c8e7c1358e6c73af48519e317457c444d6f3d332bb4e8fa6d7d9", size = 3724137, upload-time = "2026-03-06T13:47:35.242Z" }, + { url = "https://files.pythonhosted.org/packages/74/f9/557ce3aad0fe8471fb5279bab0fc56ea473858a022c4ce8a0b8f303d64e9/h5py-3.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ec86d4fffd87a0f4cb3d5796ceb5a50123a2a6d99b43e616e5504e66a953eca3", size = 3090112, upload-time = "2026-03-06T13:47:37.634Z" }, + { url = "https://files.pythonhosted.org/packages/7a/f5/e15b3d0dc8a18e56409a839e6468d6fb589bc5207c917399c2e0706eeb44/h5py-3.16.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:86385ea895508220b8a7e45efa428aeafaa586bd737c7af9ee04661d8d84a10d", size = 4844847, upload-time = "2026-03-06T13:47:39.811Z" }, + { url = "https://files.pythonhosted.org/packages/cb/92/a8851d936547efe30cc0ce5245feac01f3ec6171f7899bc3f775c72030b3/h5py-3.16.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:8975273c2c5921c25700193b408e28d6bdd0111c37468b2d4e25dcec4cd1d84d", size = 5065352, upload-time = "2026-03-06T13:47:41.489Z" }, + { url = "https://files.pythonhosted.org/packages/2b/ae/f2adc5d0ca9626db3277a3d87516e124cbc5d0eea0bd79bc085702d04f2c/h5py-3.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1677ad48b703f44efc9ea0c3ab284527f81bc4f318386aaaebc5fede6bbae56f", size = 4839173, upload-time = "2026-03-06T13:47:43.586Z" }, + { url = "https://files.pythonhosted.org/packages/64/0b/e0c8c69da1d8838da023a50cd3080eae5d475691f7636b35eff20bb6ef20/h5py-3.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7c4dd4cf5f0a4e36083f73172f6cfc25a5710789269547f132a20975bfe2434c", size = 5076216, upload-time = "2026-03-06T13:47:45.315Z" }, + { url = "https://files.pythonhosted.org/packages/66/35/d88fd6718832133c885004c61ceeeb24dbd6397ef877dbed6b3a64d6a286/h5py-3.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:bdef06507725b455fccba9c16529121a5e1fbf56aa375f7d9713d9e8ff42454d", size = 3183639, upload-time = "2026-03-06T13:47:47.041Z" }, +] + +[[package]] +name = "httpcore" +version = "1.0.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, +] + +[[package]] +name = "httpx" +version = "0.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, +] + +[[package]] +name = "humanfriendly" +version = "10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyreadline3", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/3f/2c29224acb2e2df4d2046e4c73ee2662023c58ff5b113c4c1adac0886c43/humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc", size = 360702, upload-time = "2021-09-17T21:40:43.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794, upload-time = "2021-09-17T21:40:39.897Z" }, +] + +[[package]] +name = "hyperopt" +version = "0.2.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cloudpickle" }, + { name = "future" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "py4j" }, + { name = "scipy" }, + { name = "six" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/75/0c4712e3f3a21c910778b8f9f4622601a823cefcae24181467674a0352f9/hyperopt-0.2.7.tar.gz", hash = "sha256:1bf89ae58050bbd32c7307199046117feee245c2fd9ab6255c7308522b7ca149", size = 1308240, upload-time = "2021-11-17T10:05:51.386Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/cd/5b3334d39276067f54618ce0d0b48ed69d91352fbf137468c7095170d0e5/hyperopt-0.2.7-py2.py3-none-any.whl", hash = "sha256:f3046d91fe4167dbf104365016596856b2524a609d22f047a066fc1ac796427c", size = 1583421, upload-time = "2021-11-17T10:05:44.265Z" }, +] + +[[package]] +name = "idna" +version = "3.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, +] + +[[package]] +name = "imagesize" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/e6/7bf14eeb8f8b7251141944835abd42eb20a658d89084b7e1f3e5fe394090/imagesize-2.0.0.tar.gz", hash = "sha256:8e8358c4a05c304f1fccf7ff96f036e7243a189e9e42e90851993c558cfe9ee3", size = 1773045, upload-time = "2026-03-03T14:18:29.941Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5f/53/fb7122b71361a0d121b669dcf3d31244ef75badbbb724af388948de543e2/imagesize-2.0.0-py2.py3-none-any.whl", hash = "sha256:5667c5bbb57ab3f1fa4bc366f4fbc971db3d5ed011fd2715fd8001f782718d96", size = 9441, upload-time = "2026-03-03T14:18:27.892Z" }, +] + +[[package]] +name = "imbalanced-learn" +version = "0.12.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/30/41/8b15f1df14ff38f1fdd4eb2b128478d99c38db4a14292270639ae9d65447/imbalanced-learn-0.12.4.tar.gz", hash = "sha256:8153ba385d296b07d97e0901a2624a86c06b48c94c2f92da3a5354827697b7a3", size = 478372, upload-time = "2024-10-04T17:00:55.162Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d8/0d/c3bfccc5d460eec8ff56889802aa88f5d07280d5282b307a74558e6edc44/imbalanced_learn-0.12.4-py3-none-any.whl", hash = "sha256:d47fc599160d3ea882e712a3a6b02bdd353c1a6436d8d68d41b1922e6ee4a703", size = 258324, upload-time = "2024-10-04T17:00:52.715Z" }, +] + +[[package]] +name = "imblearn" +version = "0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "imbalanced-learn" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/0a/f83099534a77757abf27427d339590c83cc68c3386690d4741d6454e185f/imblearn-0.0.tar.gz", hash = "sha256:d8fbb662919c1b16f438ad91a8256220e53bcf6815c9ad5502c518b798de34f2", size = 945, upload-time = "2017-01-19T11:52:35.89Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/a7/4179e6ebfd654bd0eac0b9c06125b8b4c96a9d0a8ff9e9507eb2a26d2d7e/imblearn-0.0-py2.py3-none-any.whl", hash = "sha256:d42c2d709d22c00d2b9a91e638d57240a8b79b4014122d92181fcd2549a2f79a", size = 1874, upload-time = "2017-01-19T11:52:37.416Z" }, +] + +[[package]] +name = "importlib-resources" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/06/b56dfa750b44e86157093bc8fca0ab81dccbf5260510de4eaf1cb69b5b99/importlib_resources-7.1.0.tar.gz", hash = "sha256:0722d4c6212489c530f2a145a34c0a7a3b4721bc96a15fada5930e2a0b760708", size = 44985, upload-time = "2026-04-12T16:36:09.232Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/db/55a262f3606bebcae07cc14095338471ad7c0bbcaa37707e6f0ee49725b7/importlib_resources-7.1.0-py3-none-any.whl", hash = "sha256:1bd7b48b4088eddb2cd16382150bb515af0bd2c70128194392725f82ad2c96a1", size = 37232, upload-time = "2026-04-12T16:36:08.219Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, +] + +[[package]] +name = "ipykernel" +version = "7.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appnope", marker = "sys_platform == 'darwin'" }, + { name = "comm" }, + { name = "debugpy" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "matplotlib-inline" }, + { name = "nest-asyncio" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/8d/b68b728e2d06b9e0051019640a40a9eb7a88fcd82c2e1b5ce70bef5ff044/ipykernel-7.2.0.tar.gz", hash = "sha256:18ed160b6dee2cbb16e5f3575858bc19d8f1fe6046a9a680c708494ce31d909e", size = 176046, upload-time = "2026-02-06T16:43:27.403Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/b9/e73d5d9f405cba7706c539aa8b311b49d4c2f3d698d9c12f815231169c71/ipykernel-7.2.0-py3-none-any.whl", hash = "sha256:3bbd4420d2b3cc105cbdf3756bfc04500b1e52f090a90716851f3916c62e1661", size = 118788, upload-time = "2026-02-06T16:43:25.149Z" }, +] + +[[package]] +name = "ipython" +version = "8.39.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "decorator" }, + { name = "exceptiongroup" }, + { name = "jedi" }, + { name = "matplotlib-inline" }, + { name = "pexpect", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "stack-data" }, + { name = "traitlets" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/40/18/f8598d287006885e7136451fdea0755af4ebcbfe342836f24deefaed1164/ipython-8.39.0.tar.gz", hash = "sha256:4110ae96012c379b8b6db898a07e186c40a2a1ef5d57a7fa83166047d9da7624", size = 5513971, upload-time = "2026-03-27T10:02:13.94Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/56/4cc7fc9e9e3f38fd324f24f8afe0ad8bb5fa41283f37f1aaf9de0612c968/ipython-8.39.0-py3-none-any.whl", hash = "sha256:bb3c51c4fa8148ab1dea07a79584d1c854e234ea44aa1283bcb37bc75054651f", size = 831849, upload-time = "2026-03-27T10:02:07.846Z" }, +] + +[[package]] +name = "ipywidgets" +version = "8.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "comm" }, + { name = "ipython" }, + { name = "jupyterlab-widgets" }, + { name = "traitlets" }, + { name = "widgetsnbextension" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4c/ae/c5ce1edc1afe042eadb445e95b0671b03cee61895264357956e61c0d2ac0/ipywidgets-8.1.8.tar.gz", hash = "sha256:61f969306b95f85fba6b6986b7fe45d73124d1d9e3023a8068710d47a22ea668", size = 116739, upload-time = "2025-11-01T21:18:12.393Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/6d/0d9848617b9f753b87f214f1c682592f7ca42de085f564352f10f0843026/ipywidgets-8.1.8-py3-none-any.whl", hash = "sha256:ecaca67aed704a338f88f67b1181b58f821ab5dc89c1f0f5ef99db43c1c2921e", size = 139808, upload-time = "2025-11-01T21:18:10.956Z" }, +] + +[[package]] +name = "isoduration" +version = "20.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "arrow" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7c/1a/3c8edc664e06e6bd06cce40c6b22da5f1429aa4224d0c590f3be21c91ead/isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9", size = 11649, upload-time = "2020-11-01T11:00:00.312Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/55/e5326141505c5d5e34c5e0935d2908a74e4561eca44108fbfb9c13d2911a/isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042", size = 11321, upload-time = "2020-11-01T10:59:58.02Z" }, +] + +[[package]] +name = "jedi" +version = "0.19.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "parso" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/3a/79a912fbd4d8dd6fbb02bf69afd3bb72cf0c729bb3063c6f4498603db17a/jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0", size = 1231287, upload-time = "2024-11-11T01:41:42.873Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9", size = 1572278, upload-time = "2024-11-11T01:41:40.175Z" }, +] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + +[[package]] +name = "joblib" +version = "1.5.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f2/d34e8b3a08a9cc79a50b2208a93dce981fe615b64d5a4d4abee421d898df/joblib-1.5.3.tar.gz", hash = "sha256:8561a3269e6801106863fd0d6d84bb737be9e7631e33aaed3fb9ce5953688da3", size = 331603, upload-time = "2025-12-15T08:41:46.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl", hash = "sha256:5fc3c5039fc5ca8c0276333a188bbd59d6b7ab37fe6632daa76bc7f9ec18e713", size = 309071, upload-time = "2025-12-15T08:41:44.973Z" }, +] + +[[package]] +name = "json5" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/4b/6f8906aaf67d501e259b0adab4d312945bb7211e8b8d4dcc77c92320edaa/json5-0.14.0.tar.gz", hash = "sha256:b3f492fad9f6cdbced8b7d40b28b9b1c9701c5f561bef0d33b81c2ff433fefcb", size = 52656, upload-time = "2026-03-27T22:50:48.108Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/42/cf027b4ac873b076189d935b135397675dac80cb29acb13e1ab86ad6c631/json5-0.14.0-py3-none-any.whl", hash = "sha256:56cf861bab076b1178eb8c92e1311d273a9b9acea2ccc82c276abf839ebaef3a", size = 36271, upload-time = "2026-03-27T22:50:47.073Z" }, +] + +[[package]] +name = "jsonpointer" +version = "3.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/c7/af399a2e7a67fd18d63c40c5e62d3af4e67b836a2107468b6a5ea24c4304/jsonpointer-3.1.1.tar.gz", hash = "sha256:0b801c7db33a904024f6004d526dcc53bbb8a4a0f4e32bfd10beadf60adf1900", size = 9068, upload-time = "2026-03-23T22:32:32.458Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/6a/a83720e953b1682d2d109d3c2dbb0bc9bf28cc1cbc205be4ef4be5da709d/jsonpointer-3.1.1-py3-none-any.whl", hash = "sha256:8ff8b95779d071ba472cf5bc913028df06031797532f08a7d5b602d8b2a488ca", size = 7659, upload-time = "2026-03-23T22:32:31.568Z" }, +] + +[[package]] +name = "jsonref" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/0d/c1f3277e90ccdb50d33ed5ba1ec5b3f0a242ed8c1b1a85d3afeb68464dca/jsonref-1.1.0.tar.gz", hash = "sha256:32fe8e1d85af0fdefbebce950af85590b22b60f9e95443176adbde4e1ecea552", size = 8814, upload-time = "2023-01-16T16:10:04.455Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/ec/e1db9922bceb168197a558a2b8c03a7963f1afe93517ddd3cf99f202f996/jsonref-1.1.0-py3-none-any.whl", hash = "sha256:590dc7773df6c21cbf948b5dac07a72a251db28b0238ceecce0a2abfa8ec30a9", size = 9425, upload-time = "2023-01-16T16:10:02.255Z" }, +] + +[[package]] +name = "jsonschema" +version = "4.26.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "jsonschema-specifications" }, + { name = "referencing" }, + { name = "rpds-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" }, +] + +[package.optional-dependencies] +format-nongpl = [ + { name = "fqdn" }, + { name = "idna" }, + { name = "isoduration" }, + { name = "jsonpointer" }, + { name = "rfc3339-validator" }, + { name = "rfc3986-validator" }, + { name = "rfc3987-syntax" }, + { name = "uri-template" }, + { name = "webcolors" }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2025.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" }, +] + +[[package]] +name = "jupyter" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipykernel" }, + { name = "ipywidgets" }, + { name = "jupyter-console" }, + { name = "jupyterlab" }, + { name = "nbconvert" }, + { name = "notebook" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/f3/af28ea964ab8bc1e472dba2e82627d36d470c51f5cd38c37502eeffaa25e/jupyter-1.1.1.tar.gz", hash = "sha256:d55467bceabdea49d7e3624af7e33d59c37fff53ed3a350e1ac957bed731de7a", size = 5714959, upload-time = "2024-08-30T07:15:48.299Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/64/285f20a31679bf547b75602702f7800e74dbabae36ef324f716c02804753/jupyter-1.1.1-py2.py3-none-any.whl", hash = "sha256:7a59533c22af65439b24bbe60373a4e95af8f16ac65a6c00820ad378e3f7cc83", size = 2657, upload-time = "2024-08-30T07:15:47.045Z" }, +] + +[[package]] +name = "jupyter-client" +version = "8.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-core" }, + { name = "python-dateutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/e4/ba649102a3bc3fbca54e7239fb924fd434c766f855693d86de0b1f2bec81/jupyter_client-8.8.0.tar.gz", hash = "sha256:d556811419a4f2d96c869af34e854e3f059b7cc2d6d01a9cd9c85c267691be3e", size = 348020, upload-time = "2026-01-08T13:55:47.938Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/0b/ceb7694d864abc0a047649aec263878acb9f792e1fec3e676f22dc9015e3/jupyter_client-8.8.0-py3-none-any.whl", hash = "sha256:f93a5b99c5e23a507b773d3a1136bd6e16c67883ccdbd9a829b0bbdb98cd7d7a", size = 107371, upload-time = "2026-01-08T13:55:45.562Z" }, +] + +[[package]] +name = "jupyter-console" +version = "6.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipykernel" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "pyzmq" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bd/2d/e2fd31e2fc41c14e2bcb6c976ab732597e907523f6b2420305f9fc7fdbdb/jupyter_console-6.6.3.tar.gz", hash = "sha256:566a4bf31c87adbfadf22cdf846e3069b59a71ed5da71d6ba4d8aaad14a53539", size = 34363, upload-time = "2023-03-06T14:13:31.02Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/77/71d78d58f15c22db16328a476426f7ac4a60d3a5a7ba3b9627ee2f7903d4/jupyter_console-6.6.3-py3-none-any.whl", hash = "sha256:309d33409fcc92ffdad25f0bcdf9a4a9daa61b6f341177570fdac03de5352485", size = 24510, upload-time = "2023-03-06T14:13:28.229Z" }, +] + +[[package]] +name = "jupyter-core" +version = "5.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/49/9d1284d0dc65e2c757b74c6687b6d319b02f822ad039e5c512df9194d9dd/jupyter_core-5.9.1.tar.gz", hash = "sha256:4d09aaff303b9566c3ce657f580bd089ff5c91f5f89cf7d8846c3cdf465b5508", size = 89814, upload-time = "2025-10-16T19:19:18.444Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/e7/80988e32bf6f73919a113473a604f5a8f09094de312b9d52b79c2df7612b/jupyter_core-5.9.1-py3-none-any.whl", hash = "sha256:ebf87fdc6073d142e114c72c9e29a9d7ca03fad818c5d300ce2adc1fb0743407", size = 29032, upload-time = "2025-10-16T19:19:16.783Z" }, +] + +[[package]] +name = "jupyter-events" +version = "0.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonschema", extra = ["format-nongpl"] }, + { name = "packaging" }, + { name = "python-json-logger" }, + { name = "pyyaml" }, + { name = "referencing" }, + { name = "rfc3339-validator" }, + { name = "rfc3986-validator" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/c3/306d090461e4cf3cd91eceaff84bede12a8e52cd821c2d20c9a4fd728385/jupyter_events-0.12.0.tar.gz", hash = "sha256:fc3fce98865f6784c9cd0a56a20644fc6098f21c8c33834a8d9fe383c17e554b", size = 62196, upload-time = "2025-02-03T17:23:41.485Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/48/577993f1f99c552f18a0428731a755e06171f9902fa118c379eb7c04ea22/jupyter_events-0.12.0-py3-none-any.whl", hash = "sha256:6464b2fa5ad10451c3d35fabc75eab39556ae1e2853ad0c0cc31b656731a97fb", size = 19430, upload-time = "2025-02-03T17:23:38.643Z" }, +] + +[[package]] +name = "jupyter-lsp" +version = "2.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/36/ff/1e4a61f5170a9a1d978f3ac3872449de6c01fc71eaf89657824c878b1549/jupyter_lsp-2.3.1.tar.gz", hash = "sha256:fdf8a4aa7d85813976d6e29e95e6a2c8f752701f926f2715305249a3829805a6", size = 55677, upload-time = "2026-04-02T08:10:06.749Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/e8/9d61dcbd1dce8ef418f06befd4ac084b4720429c26b0b1222bc218685eff/jupyter_lsp-2.3.1-py3-none-any.whl", hash = "sha256:71b954d834e85ff3096400554f2eefaf7fe37053036f9a782b0f7c5e42dadb81", size = 77513, upload-time = "2026-04-02T08:10:01.753Z" }, +] + +[[package]] +name = "jupyter-server" +version = "2.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "argon2-cffi" }, + { name = "jinja2" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "jupyter-events" }, + { name = "jupyter-server-terminals" }, + { name = "nbconvert" }, + { name = "nbformat" }, + { name = "overrides" }, + { name = "packaging" }, + { name = "prometheus-client" }, + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "pyzmq" }, + { name = "send2trash" }, + { name = "terminado" }, + { name = "tornado" }, + { name = "traitlets" }, + { name = "websocket-client" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/ac/e040ec363d7b6b1f11304cc9f209dac4517ece5d5e01821366b924a64a50/jupyter_server-2.17.0.tar.gz", hash = "sha256:c38ea898566964c888b4772ae1ed58eca84592e88251d2cfc4d171f81f7e99d5", size = 731949, upload-time = "2025-08-21T14:42:54.042Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/92/80/a24767e6ca280f5a49525d987bf3e4d7552bf67c8be07e8ccf20271f8568/jupyter_server-2.17.0-py3-none-any.whl", hash = "sha256:e8cb9c7db4251f51ed307e329b81b72ccf2056ff82d50524debde1ee1870e13f", size = 388221, upload-time = "2025-08-21T14:42:52.034Z" }, +] + +[[package]] +name = "jupyter-server-terminals" +version = "0.5.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "terminado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f4/a7/bcd0a9b0cbba88986fe944aaaf91bfda603e5a50bda8ed15123f381a3b2f/jupyter_server_terminals-0.5.4.tar.gz", hash = "sha256:bbda128ed41d0be9020349f9f1f2a4ab9952a73ed5f5ac9f1419794761fb87f5", size = 31770, upload-time = "2026-01-14T16:53:20.213Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/2d/6674563f71c6320841fc300911a55143925112a72a883e2ca71fba4c618d/jupyter_server_terminals-0.5.4-py3-none-any.whl", hash = "sha256:55be353fc74a80bc7f3b20e6be50a55a61cd525626f578dcb66a5708e2007d14", size = 13704, upload-time = "2026-01-14T16:53:18.738Z" }, +] + +[[package]] +name = "jupyterlab" +version = "4.5.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "async-lru" }, + { name = "httpx" }, + { name = "ipykernel" }, + { name = "jinja2" }, + { name = "jupyter-core" }, + { name = "jupyter-lsp" }, + { name = "jupyter-server" }, + { name = "jupyterlab-server" }, + { name = "notebook-shim" }, + { name = "packaging" }, + { name = "setuptools" }, + { name = "tomli" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ac/d5/730628e03fff2e8a8e8ccdaedde1489ab1309f9a4fa2536248884e30b7c7/jupyterlab-4.5.6.tar.gz", hash = "sha256:642fe2cfe7f0f5922a8a558ba7a0d246c7bc133b708dfe43f7b3a826d163cf42", size = 23970670, upload-time = "2026-03-11T14:17:04.531Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/1b/dad6fdcc658ed7af26fdf3841e7394072c9549a8b896c381ab49dd11e2d9/jupyterlab-4.5.6-py3-none-any.whl", hash = "sha256:d6b3dac883aa4d9993348e0f8e95b24624f75099aed64eab6a4351a9cdd1e580", size = 12447124, upload-time = "2026-03-11T14:17:00.229Z" }, +] + +[[package]] +name = "jupyterlab-pygments" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/51/9187be60d989df97f5f0aba133fa54e7300f17616e065d1ada7d7646b6d6/jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d", size = 512900, upload-time = "2023-11-23T09:26:37.44Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780", size = 15884, upload-time = "2023-11-23T09:26:34.325Z" }, +] + +[[package]] +name = "jupyterlab-server" +version = "2.28.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "babel" }, + { name = "jinja2" }, + { name = "json5" }, + { name = "jsonschema" }, + { name = "jupyter-server" }, + { name = "packaging" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d6/2c/90153f189e421e93c4bb4f9e3f59802a1f01abd2ac5cf40b152d7f735232/jupyterlab_server-2.28.0.tar.gz", hash = "sha256:35baa81898b15f93573e2deca50d11ac0ae407ebb688299d3a5213265033712c", size = 76996, upload-time = "2025-10-22T13:59:18.37Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/07/a000fe835f76b7e1143242ab1122e6362ef1c03f23f83a045c38859c2ae0/jupyterlab_server-2.28.0-py3-none-any.whl", hash = "sha256:e4355b148fdcf34d312bbbc80f22467d6d20460e8b8736bf235577dd18506968", size = 59830, upload-time = "2025-10-22T13:59:16.767Z" }, +] + +[[package]] +name = "jupyterlab-widgets" +version = "3.0.16" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/2d/ef58fed122b268c69c0aa099da20bc67657cdfb2e222688d5731bd5b971d/jupyterlab_widgets-3.0.16.tar.gz", hash = "sha256:423da05071d55cf27a9e602216d35a3a65a3e41cdf9c5d3b643b814ce38c19e0", size = 897423, upload-time = "2025-11-01T21:11:29.724Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/b5/36c712098e6191d1b4e349304ef73a8d06aed77e56ceaac8c0a306c7bda1/jupyterlab_widgets-3.0.16-py3-none-any.whl", hash = "sha256:45fa36d9c6422cf2559198e4db481aa243c7a32d9926b500781c830c80f7ecf8", size = 914926, upload-time = "2025-11-01T21:11:28.008Z" }, +] + +[[package]] +name = "keras" +version = "2.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bf/85/d52a86eb5ae700e1f8694157019249eb33350ae9e477cd03ecdb50939d22/keras-2.14.0.tar.gz", hash = "sha256:22788bdbc86d9988794fe9703bb5205141da797c4faeeb59497c58c3d94d34ed", size = 1251354, upload-time = "2023-09-11T17:21:04.379Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/58/34d4d8f1aa11120c2d36d7ad27d0526164b1a8ae45990a2fede31d0e59bf/keras-2.14.0-py3-none-any.whl", hash = "sha256:d7429d1d2131cc7eb1f2ea2ec330227c7d9d38dab3dfdf2e78defee4ecc43fcd", size = 1709236, upload-time = "2023-09-11T17:21:02.164Z" }, +] + +[[package]] +name = "kiwisolver" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/67/9c61eccb13f0bdca9307614e782fec49ffdde0f7a2314935d489fa93cd9c/kiwisolver-1.5.0.tar.gz", hash = "sha256:d4193f3d9dc3f6f79aaed0e5637f45d98850ebf01f7ca20e69457f3e8946b66a", size = 103482, upload-time = "2026-03-09T13:15:53.382Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/f8/06549565caa026e540b7e7bab5c5a90eb7ca986015f4c48dace243cd24d9/kiwisolver-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32cc0a5365239a6ea0c6ed461e8838d053b57e397443c0ca894dcc8e388d4374", size = 122802, upload-time = "2026-03-09T13:12:37.515Z" }, + { url = "https://files.pythonhosted.org/packages/84/eb/8476a0818850c563ff343ea7c9c05dcdcbd689a38e01aa31657df01f91fa/kiwisolver-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cc0b66c1eec9021353a4b4483afb12dfd50e3669ffbb9152d6842eb34c7e29fd", size = 66216, upload-time = "2026-03-09T13:12:38.812Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c4/f9c8a6b4c21aed4198566e45923512986d6cef530e7263b3a5f823546561/kiwisolver-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:86e0287879f75621ae85197b0877ed2f8b7aa57b511c7331dce2eb6f4de7d476", size = 63917, upload-time = "2026-03-09T13:12:40.053Z" }, + { url = "https://files.pythonhosted.org/packages/f1/0e/ba4ae25d03722f64de8b2c13e80d82ab537a06b30fc7065183c6439357e3/kiwisolver-1.5.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:62f59da443c4f4849f73a51a193b1d9d258dcad0c41bc4d1b8fb2bcc04bfeb22", size = 1628776, upload-time = "2026-03-09T13:12:41.976Z" }, + { url = "https://files.pythonhosted.org/packages/8a/e4/3f43a011bc8a0860d1c96f84d32fa87439d3feedf66e672fef03bf5e8bac/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9190426b7aa26c5229501fa297b8d0653cfd3f5a36f7990c264e157cbf886b3b", size = 1228164, upload-time = "2026-03-09T13:12:44.002Z" }, + { url = "https://files.pythonhosted.org/packages/4b/34/3a901559a1e0c218404f9a61a93be82d45cb8f44453ba43088644980f033/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c8277104ded0a51e699c8c3aff63ce2c56d4ed5519a5f73e0fd7057f959a2b9e", size = 1246656, upload-time = "2026-03-09T13:12:45.557Z" }, + { url = "https://files.pythonhosted.org/packages/87/9e/f78c466ea20527822b95ad38f141f2de1dcd7f23fb8716b002b0d91bbe59/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8f9baf6f0a6e7571c45c8863010b45e837c3ee1c2c77fcd6ef423be91b21fedb", size = 1295562, upload-time = "2026-03-09T13:12:47.562Z" }, + { url = "https://files.pythonhosted.org/packages/0a/66/fd0e4a612e3a286c24e6d6f3a5428d11258ed1909bc530ba3b59807fd980/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cff8e5383db4989311f99e814feeb90c4723eb4edca425b9d5d9c3fefcdd9537", size = 2178473, upload-time = "2026-03-09T13:12:50.254Z" }, + { url = "https://files.pythonhosted.org/packages/dc/8e/6cac929e0049539e5ee25c1ee937556f379ba5204840d03008363ced662d/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ebae99ed6764f2b5771c522477b311be313e8841d2e0376db2b10922daebbba4", size = 2274035, upload-time = "2026-03-09T13:12:51.785Z" }, + { url = "https://files.pythonhosted.org/packages/ca/d3/9d0c18f1b52ea8074b792452cf17f1f5a56bd0302a85191f405cfbf9da16/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:d5cd5189fc2b6a538b75ae45433140c4823463918f7b1617c31e68b085c0022c", size = 2443217, upload-time = "2026-03-09T13:12:53.329Z" }, + { url = "https://files.pythonhosted.org/packages/45/2a/6e19368803a038b2a90857bf4ee9e3c7b667216d045866bf22d3439fd75e/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f42c23db5d1521218a3276bb08666dcb662896a0be7347cba864eca45ff64ede", size = 2249196, upload-time = "2026-03-09T13:12:55.057Z" }, + { url = "https://files.pythonhosted.org/packages/75/2b/3f641dfcbe72e222175d626bacf2f72c3b34312afec949dd1c50afa400f5/kiwisolver-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:94eff26096eb5395136634622515b234ecb6c9979824c1f5004c6e3c3c85ccd2", size = 73389, upload-time = "2026-03-09T13:12:56.496Z" }, + { url = "https://files.pythonhosted.org/packages/da/88/299b137b9e0025d8982e03d2d52c123b0a2b159e84b0ef1501ef446339cf/kiwisolver-1.5.0-cp310-cp310-win_arm64.whl", hash = "sha256:dd952e03bfbb096cfe2dd35cd9e00f269969b67536cb4370994afc20ff2d0875", size = 64782, upload-time = "2026-03-09T13:12:57.609Z" }, + { url = "https://files.pythonhosted.org/packages/17/6f/6fd4f690a40c2582fa34b97d2678f718acf3706b91d270c65ecb455d0a06/kiwisolver-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:295d9ffe712caa9f8a3081de8d32fc60191b4b51c76f02f951fd8407253528f4", size = 59606, upload-time = "2026-03-09T13:15:40.81Z" }, + { url = "https://files.pythonhosted.org/packages/82/a0/2355d5e3b338f13ce63f361abb181e3b6ea5fffdb73f739b3e80efa76159/kiwisolver-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:51e8c4084897de9f05898c2c2a39af6318044ae969d46ff7a34ed3f96274adca", size = 57537, upload-time = "2026-03-09T13:15:42.071Z" }, + { url = "https://files.pythonhosted.org/packages/c8/b9/1d50e610ecadebe205b71d6728fd224ce0e0ca6aba7b9cbe1da049203ac5/kiwisolver-1.5.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b83af57bdddef03c01a9138034c6ff03181a3028d9a1003b301eb1a55e161a3f", size = 79888, upload-time = "2026-03-09T13:15:43.317Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ee/b85ffcd75afed0357d74f0e6fc02a4507da441165de1ca4760b9f496390d/kiwisolver-1.5.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bf4679a3d71012a7c2bf360e5cd878fbd5e4fcac0896b56393dec239d81529ed", size = 77584, upload-time = "2026-03-09T13:15:44.605Z" }, + { url = "https://files.pythonhosted.org/packages/6b/dd/644d0dde6010a8583b4cd66dd41c5f83f5325464d15c4f490b3340ab73b4/kiwisolver-1.5.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:41024ed50e44ab1a60d3fe0a9d15a4ccc9f5f2b1d814ff283c8d01134d5b81bc", size = 73390, upload-time = "2026-03-09T13:15:45.832Z" }, +] + +[[package]] +name = "lark" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/34/28fff3ab31ccff1fd4f6c7c7b0ceb2b6968d8ea4950663eadcb5720591a0/lark-1.3.1.tar.gz", hash = "sha256:b426a7a6d6d53189d318f2b6236ab5d6429eaf09259f1ca33eb716eed10d2905", size = 382732, upload-time = "2025-10-27T18:25:56.653Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3d/14ce75ef66813643812f3093ab17e46d3a206942ce7376d31ec2d36229e7/lark-1.3.1-py3-none-any.whl", hash = "sha256:c629b661023a014c37da873b4ff58a817398d12635d3bbb2c5a03be7fe5d1e12", size = 113151, upload-time = "2025-10-27T18:25:54.882Z" }, +] + +[[package]] +name = "libclang" +version = "18.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6e/5c/ca35e19a4f142adffa27e3d652196b7362fa612243e2b916845d801454fc/libclang-18.1.1.tar.gz", hash = "sha256:a1214966d08d73d971287fc3ead8dfaf82eb07fb197680d8b3859dbbbbf78250", size = 39612, upload-time = "2024-03-17T16:04:37.434Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/49/f5e3e7e1419872b69f6f5e82ba56e33955a74bd537d8a1f5f1eff2f3668a/libclang-18.1.1-1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:0b2e143f0fac830156feb56f9231ff8338c20aecfe72b4ffe96f19e5a1dbb69a", size = 25836045, upload-time = "2024-06-30T17:40:31.646Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e5/fc61bbded91a8830ccce94c5294ecd6e88e496cc85f6704bf350c0634b70/libclang-18.1.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:6f14c3f194704e5d09769108f03185fce7acaf1d1ae4bbb2f30a72c2400cb7c5", size = 26502641, upload-time = "2024-03-18T15:52:26.722Z" }, + { url = "https://files.pythonhosted.org/packages/db/ed/1df62b44db2583375f6a8a5e2ca5432bbdc3edb477942b9b7c848c720055/libclang-18.1.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:83ce5045d101b669ac38e6da8e58765f12da2d3aafb3b9b98d88b286a60964d8", size = 26420207, upload-time = "2024-03-17T15:00:26.63Z" }, + { url = "https://files.pythonhosted.org/packages/1d/fc/716c1e62e512ef1c160e7984a73a5fc7df45166f2ff3f254e71c58076f7c/libclang-18.1.1-py2.py3-none-manylinux2010_x86_64.whl", hash = "sha256:c533091d8a3bbf7460a00cb6c1a71da93bffe148f172c7d03b1c31fbf8aa2a0b", size = 24515943, upload-time = "2024-03-17T16:03:45.942Z" }, + { url = "https://files.pythonhosted.org/packages/3c/3d/f0ac1150280d8d20d059608cf2d5ff61b7c3b7f7bcf9c0f425ab92df769a/libclang-18.1.1-py2.py3-none-manylinux2014_aarch64.whl", hash = "sha256:54dda940a4a0491a9d1532bf071ea3ef26e6dbaf03b5000ed94dd7174e8f9592", size = 23784972, upload-time = "2024-03-17T16:12:47.677Z" }, + { url = "https://files.pythonhosted.org/packages/fe/2f/d920822c2b1ce9326a4c78c0c2b4aa3fde610c7ee9f631b600acb5376c26/libclang-18.1.1-py2.py3-none-manylinux2014_armv7l.whl", hash = "sha256:cf4a99b05376513717ab5d82a0db832c56ccea4fd61a69dbb7bccf2dfb207dbe", size = 20259606, upload-time = "2024-03-17T16:17:42.437Z" }, + { url = "https://files.pythonhosted.org/packages/2d/c2/de1db8c6d413597076a4259cea409b83459b2db997c003578affdd32bf66/libclang-18.1.1-py2.py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:69f8eb8f65c279e765ffd28aaa7e9e364c776c17618af8bff22a8df58677ff4f", size = 24921494, upload-time = "2024-03-17T16:14:20.132Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2d/3f480b1e1d31eb3d6de5e3ef641954e5c67430d5ac93b7fa7e07589576c7/libclang-18.1.1-py2.py3-none-win_amd64.whl", hash = "sha256:4dd2d3b82fab35e2bf9ca717d7b63ac990a3519c7e312f19fa8e86dcc712f7fb", size = 26415083, upload-time = "2024-03-17T16:42:21.703Z" }, + { url = "https://files.pythonhosted.org/packages/71/cf/e01dc4cc79779cd82d77888a88ae2fa424d93b445ad4f6c02bfc18335b70/libclang-18.1.1-py2.py3-none-win_arm64.whl", hash = "sha256:3f0e1f49f04d3cd198985fea0511576b0aee16f9ff0e0f0cad7f9c57ec3c20e8", size = 22361112, upload-time = "2024-03-17T16:42:59.565Z" }, +] + +[[package]] +name = "lightgbm" +version = "4.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/68/0b/a2e9f5c5da7ef047cc60cef37f86185088845e8433e54d2e7ed439cce8a3/lightgbm-4.6.0.tar.gz", hash = "sha256:cb1c59720eb569389c0ba74d14f52351b573af489f230032a1c9f314f8bab7fe", size = 1703705, upload-time = "2025-02-15T04:03:03.111Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/75/cffc9962cca296bc5536896b7e65b4a7cdeb8db208e71b9c0133c08f8f7e/lightgbm-4.6.0-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:b7a393de8a334d5c8e490df91270f0763f83f959574d504c7ccb9eee4aef70ed", size = 2010151, upload-time = "2025-02-15T04:02:50.961Z" }, + { url = "https://files.pythonhosted.org/packages/21/1b/550ee378512b78847930f5d74228ca1fdba2a7fbdeaac9aeccc085b0e257/lightgbm-4.6.0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:2dafd98d4e02b844ceb0b61450a660681076b1ea6c7adb8c566dfd66832aafad", size = 1592172, upload-time = "2025-02-15T04:02:53.937Z" }, + { url = "https://files.pythonhosted.org/packages/64/41/4fbde2c3d29e25ee7c41d87df2f2e5eda65b431ee154d4d462c31041846c/lightgbm-4.6.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:4d68712bbd2b57a0b14390cbf9376c1d5ed773fa2e71e099cac588703b590336", size = 3454567, upload-time = "2025-02-15T04:02:56.443Z" }, + { url = "https://files.pythonhosted.org/packages/42/86/dabda8fbcb1b00bcfb0003c3776e8ade1aa7b413dff0a2c08f457dace22f/lightgbm-4.6.0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:cb19b5afea55b5b61cbb2131095f50538bd608a00655f23ad5d25ae3e3bf1c8d", size = 3569831, upload-time = "2025-02-15T04:02:58.925Z" }, + { url = "https://files.pythonhosted.org/packages/5e/23/f8b28ca248bb629b9e08f877dd2965d1994e1674a03d67cd10c5246da248/lightgbm-4.6.0-py3-none-win_amd64.whl", hash = "sha256:37089ee95664b6550a7189d887dbf098e3eadab03537e411f52c63c121e3ba4b", size = 1451509, upload-time = "2025-02-15T04:03:01.515Z" }, +] + +[[package]] +name = "lightning" +version = "2.2.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fsspec", extra = ["http"] }, + { name = "lightning-utilities" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pytorch-lightning" }, + { name = "pyyaml" }, + { name = "torch" }, + { name = "torchmetrics" }, + { name = "tqdm" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ff/94/75ca89a07efaa2f32c98ebbc467a46e7996b21b1247aa9643933844948cb/lightning-2.2.5.tar.gz", hash = "sha256:a6c31a2052fc30fee34aec7e31ea2a117a005d049c3593fc9cfb867a34f962bf", size = 1668508, upload-time = "2024-05-22T17:36:29.641Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/6f/1e9e09afbda8efb5edc947b15c620776b7ebe6adfdfcf34a7cc2daef45ca/lightning-2.2.5-py3-none-any.whl", hash = "sha256:3fd4d37c5f912b000b922f36d4c06818de42b78f85178c2ad3e35b8af3e9218a", size = 1985635, upload-time = "2024-05-22T17:36:25.727Z" }, +] + +[[package]] +name = "lightning-utilities" +version = "0.15.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/45/7fa8f56b17dc0f0a41ec70dd307ecd6787254483549843bef4c30ab5adce/lightning_utilities-0.15.3.tar.gz", hash = "sha256:792ae0204c79f6859721ac7f386c237a33b0ed06ba775009cb894e010a842033", size = 33553, upload-time = "2026-02-22T14:48:53.348Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/f4/ead6e0e37209b07c9baa3e984ccdb0348ca370b77cea3aaea8ddbb097e00/lightning_utilities-0.15.3-py3-none-any.whl", hash = "sha256:6c55f1bee70084a1cbeaa41ada96e4b3a0fea5909e844dd335bd80f5a73c5f91", size = 31906, upload-time = "2026-02-22T14:48:52.488Z" }, +] + +[[package]] +name = "llvmlite" +version = "0.47.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/88/a8952b6d5c21e74cbf158515b779666f692846502623e9e3c39d8e8ba25f/llvmlite-0.47.0.tar.gz", hash = "sha256:62031ce968ec74e95092184d4b0e857e444f8fdff0b8f9213707699570c33ccc", size = 193614, upload-time = "2026-03-31T18:29:53.497Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/f5/a1bde3aa8c43524b0acaf3f72fb3d80a32dd29dbb42d7dc434f84584cdcc/llvmlite-0.47.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41270b0b1310717f717cf6f2a9c68d3c43bd7905c33f003825aebc361d0d1b17", size = 37232772, upload-time = "2026-03-31T18:28:12.198Z" }, + { url = "https://files.pythonhosted.org/packages/7c/fb/76d88fc05ee1f9c1a6efe39eb493c4a727e5d1690412469017cd23bcb776/llvmlite-0.47.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f9d118bc1dd7623e0e65ca9ac485ec6dd543c3b77bc9928ddc45ebd34e1e30a7", size = 56275179, upload-time = "2026-03-31T18:28:15.725Z" }, + { url = "https://files.pythonhosted.org/packages/4d/08/29da7f36217abd56a0c389ef9a18bea47960826e691ced1a36c92c6ce93c/llvmlite-0.47.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9ea5cfb04a6ab5b18e46be72b41b015975ba5980c4ddb41f1975b83e19031063", size = 55128632, upload-time = "2026-03-31T18:28:19.946Z" }, + { url = "https://files.pythonhosted.org/packages/df/f8/5e12e9ed447d65f04acf6fcf2d79cded2355640b5131a46cee4c99a5949d/llvmlite-0.47.0-cp310-cp310-win_amd64.whl", hash = "sha256:166b896a2262a2039d5fc52df5ee1659bd1ccd081183df7a2fba1b74702dd5ea", size = 38138402, upload-time = "2026-03-31T18:28:23.327Z" }, +] + +[[package]] +name = "maestrowf" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coloredlogs" }, + { name = "dill" }, + { name = "filelock" }, + { name = "jsonschema" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "rich" }, + { name = "six" }, + { name = "tabulate" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f2/5e/89a991cba5a2c643ab9df65f4534f2570c8d0fb827c8bb9c216874801129/maestrowf-1.2.0.tar.gz", hash = "sha256:e3e7d511993b1ad0874b5ec502da25fde15ce86288c5ba071db3f6bd3f2601d1", size = 105149, upload-time = "2026-03-27T00:45:33.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/8a/622940ae1b99ae7b8944f82a2f8039ca4b1f85edc40051e3111bd1808516/maestrowf-1.2.0-py3-none-any.whl", hash = "sha256:046936f0a1c772b04b6719d250c4bfb951f5ae44c48257c581b77e2593fca345", size = 154025, upload-time = "2026-03-27T00:45:32.595Z" }, +] + +[[package]] +name = "mako" +version = "1.3.11" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/59/8a/805404d0c0b9f3d7a326475ca008db57aea9c5c9f2e1e39ed0faa335571c/mako-1.3.11.tar.gz", hash = "sha256:071eb4ab4c5010443152255d77db7faa6ce5916f35226eb02dc34479b6858069", size = 399811, upload-time = "2026-04-14T20:19:51.493Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/a5/19d7aaa7e433713ffe881df33705925a196afb9532efc8475d26593921a6/mako-1.3.11-py3-none-any.whl", hash = "sha256:e372c6e333cf004aa736a15f425087ec977e1fcbd2966aae7f17c8dc1da27a77", size = 78503, upload-time = "2026-04-14T20:19:53.233Z" }, +] + +[[package]] +name = "markdown" +version = "3.10.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2b/f4/69fa6ed85ae003c2378ffa8f6d2e3234662abd02c10d216c0ba96081a238/markdown-3.10.2.tar.gz", hash = "sha256:994d51325d25ad8aa7ce4ebaec003febcce822c3f8c911e3b17c52f7f589f950", size = 368805, upload-time = "2026-02-09T14:57:26.942Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl", hash = "sha256:e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36", size = 108180, upload-time = "2026-02-09T14:57:25.787Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/4b/3541d44f3937ba468b75da9eebcae497dcf67adb65caa16760b0a6807ebb/markupsafe-3.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2f981d352f04553a7171b8e44369f2af4055f888dfb147d55e42d29e29e74559", size = 11631, upload-time = "2025-09-27T18:36:05.558Z" }, + { url = "https://files.pythonhosted.org/packages/98/1b/fbd8eed11021cabd9226c37342fa6ca4e8a98d8188a8d9b66740494960e4/markupsafe-3.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c1493fb6e50ab01d20a22826e57520f1284df32f2d8601fdd90b6304601419", size = 12057, upload-time = "2025-09-27T18:36:07.165Z" }, + { url = "https://files.pythonhosted.org/packages/40/01/e560d658dc0bb8ab762670ece35281dec7b6c1b33f5fbc09ebb57a185519/markupsafe-3.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ba88449deb3de88bd40044603fafffb7bc2b055d626a330323a9ed736661695", size = 22050, upload-time = "2025-09-27T18:36:08.005Z" }, + { url = "https://files.pythonhosted.org/packages/af/cd/ce6e848bbf2c32314c9b237839119c5a564a59725b53157c856e90937b7a/markupsafe-3.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f42d0984e947b8adf7dd6dde396e720934d12c506ce84eea8476409563607591", size = 20681, upload-time = "2025-09-27T18:36:08.881Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2a/b5c12c809f1c3045c4d580b035a743d12fcde53cf685dbc44660826308da/markupsafe-3.0.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c0c0b3ade1c0b13b936d7970b1d37a57acde9199dc2aecc4c336773e1d86049c", size = 20705, upload-time = "2025-09-27T18:36:10.131Z" }, + { url = "https://files.pythonhosted.org/packages/cf/e3/9427a68c82728d0a88c50f890d0fc072a1484de2f3ac1ad0bfc1a7214fd5/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0303439a41979d9e74d18ff5e2dd8c43ed6c6001fd40e5bf2e43f7bd9bbc523f", size = 21524, upload-time = "2025-09-27T18:36:11.324Z" }, + { url = "https://files.pythonhosted.org/packages/bc/36/23578f29e9e582a4d0278e009b38081dbe363c5e7165113fad546918a232/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:d2ee202e79d8ed691ceebae8e0486bd9a2cd4794cec4824e1c99b6f5009502f6", size = 20282, upload-time = "2025-09-27T18:36:12.573Z" }, + { url = "https://files.pythonhosted.org/packages/56/21/dca11354e756ebd03e036bd8ad58d6d7168c80ce1fe5e75218e4945cbab7/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:177b5253b2834fe3678cb4a5f0059808258584c559193998be2601324fdeafb1", size = 20745, upload-time = "2025-09-27T18:36:13.504Z" }, + { url = "https://files.pythonhosted.org/packages/87/99/faba9369a7ad6e4d10b6a5fbf71fa2a188fe4a593b15f0963b73859a1bbd/markupsafe-3.0.3-cp310-cp310-win32.whl", hash = "sha256:2a15a08b17dd94c53a1da0438822d70ebcd13f8c3a95abe3a9ef9f11a94830aa", size = 14571, upload-time = "2025-09-27T18:36:14.779Z" }, + { url = "https://files.pythonhosted.org/packages/d6/25/55dc3ab959917602c96985cb1253efaa4ff42f71194bddeb61eb7278b8be/markupsafe-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:c4ffb7ebf07cfe8931028e3e4c85f0357459a3f9f9490886198848f4fa002ec8", size = 15056, upload-time = "2025-09-27T18:36:16.125Z" }, + { url = "https://files.pythonhosted.org/packages/d0/9e/0a02226640c255d1da0b8d12e24ac2aa6734da68bff14c05dd53b94a0fc3/markupsafe-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:e2103a929dfa2fcaf9bb4e7c091983a49c9ac3b19c9061b6d5427dd7d14d81a1", size = 13932, upload-time = "2025-09-27T18:36:17.311Z" }, +] + +[[package]] +name = "matplotcheck" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "folium" }, + { name = "geopandas" }, + { name = "matplotlib" }, + { name = "numpy" }, + { name = "rasterio" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3c/64/9de5cb50eb1a51a8874a7d2c51e984577a9ffd4099385d4483b9caa779e3/matplotcheck-0.1.4.tar.gz", hash = "sha256:762d5365e51c3d73de1b4ebfb5c52a423885fba2dc2054a1f1319fc40db3b896", size = 32442, upload-time = "2021-02-03T23:06:09.78Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/43/e0d7efb953f0d5a4f5b8fd2727b6cec968568135fd7c4d5b5d86a1d51571/matplotcheck-0.1.4-py3-none-any.whl", hash = "sha256:e25704c8959eb99bb30cb7f6b353da956f38532e42929fbac725c5e1edac2954", size = 32517, upload-time = "2021-02-03T23:06:08.303Z" }, +] + +[[package]] +name = "matplotlib" +version = "3.10.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/76/d3c6e3a13fe484ebe7718d14e269c9569c4eb0020a968a327acb3b9a8fe6/matplotlib-3.10.8.tar.gz", hash = "sha256:2299372c19d56bcd35cf05a2738308758d32b9eaed2371898d8f5bd33f084aa3", size = 34806269, upload-time = "2025-12-10T22:56:51.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/58/be/a30bd917018ad220c400169fba298f2bb7003c8ccbc0c3e24ae2aacad1e8/matplotlib-3.10.8-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:00270d217d6b20d14b584c521f810d60c5c78406dc289859776550df837dcda7", size = 8239828, upload-time = "2025-12-10T22:55:02.313Z" }, + { url = "https://files.pythonhosted.org/packages/58/27/ca01e043c4841078e82cf6e80a6993dfecd315c3d79f5f3153afbb8e1ec6/matplotlib-3.10.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37b3c1cc42aa184b3f738cfa18c1c1d72fd496d85467a6cf7b807936d39aa656", size = 8128050, upload-time = "2025-12-10T22:55:04.997Z" }, + { url = "https://files.pythonhosted.org/packages/cb/aa/7ab67f2b729ae6a91bcf9dcac0affb95fb8c56f7fd2b2af894ae0b0cf6fa/matplotlib-3.10.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ee40c27c795bda6a5292e9cff9890189d32f7e3a0bf04e0e3c9430c4a00c37df", size = 8700452, upload-time = "2025-12-10T22:55:07.47Z" }, + { url = "https://files.pythonhosted.org/packages/73/ae/2d5817b0acee3c49b7e7ccfbf5b273f284957cc8e270adf36375db353190/matplotlib-3.10.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a48f2b74020919552ea25d222d5cc6af9ca3f4eb43a93e14d068457f545c2a17", size = 9534928, upload-time = "2025-12-10T22:55:10.566Z" }, + { url = "https://files.pythonhosted.org/packages/c9/5b/8e66653e9f7c39cb2e5cab25fce4810daffa2bff02cbf5f3077cea9e942c/matplotlib-3.10.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f254d118d14a7f99d616271d6c3c27922c092dac11112670b157798b89bf4933", size = 9586377, upload-time = "2025-12-10T22:55:12.362Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e2/fd0bbadf837f81edb0d208ba8f8cb552874c3b16e27cb91a31977d90875d/matplotlib-3.10.8-cp310-cp310-win_amd64.whl", hash = "sha256:f9b587c9c7274c1613a30afabf65a272114cd6cdbe67b3406f818c79d7ab2e2a", size = 8128127, upload-time = "2025-12-10T22:55:14.436Z" }, + { url = "https://files.pythonhosted.org/packages/f5/43/31d59500bb950b0d188e149a2e552040528c13d6e3d6e84d0cccac593dcd/matplotlib-3.10.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f97aeb209c3d2511443f8797e3e5a569aebb040d4f8bc79aa3ee78a8fb9e3dd8", size = 8237252, upload-time = "2025-12-10T22:56:39.529Z" }, + { url = "https://files.pythonhosted.org/packages/0c/2c/615c09984f3c5f907f51c886538ad785cf72e0e11a3225de2c0f9442aecc/matplotlib-3.10.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fb061f596dad3a0f52b60dc6a5dec4a0c300dec41e058a7efe09256188d170b7", size = 8124693, upload-time = "2025-12-10T22:56:41.758Z" }, + { url = "https://files.pythonhosted.org/packages/91/e1/2757277a1c56041e1fc104b51a0f7b9a4afc8eb737865d63cababe30bc61/matplotlib-3.10.8-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:12d90df9183093fcd479f4172ac26b322b1248b15729cb57f42f71f24c7e37a3", size = 8702205, upload-time = "2025-12-10T22:56:43.415Z" }, +] + +[[package]] +name = "matplotlib-inline" +version = "0.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/74/97e72a36efd4ae2bccb3463284300f8953f199b5ffbc04cbbb0ec78f74b1/matplotlib_inline-0.2.1.tar.gz", hash = "sha256:e1ee949c340d771fc39e241ea75683deb94762c8fa5f2927ec57c83c4dffa9fe", size = 8110, upload-time = "2025-10-23T09:00:22.126Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/af/33/ee4519fa02ed11a94aef9559552f3b17bb863f2ecfe1a35dc7f548cde231/matplotlib_inline-0.2.1-py3-none-any.whl", hash = "sha256:d56ce5156ba6085e00a9d54fead6ed29a9c47e215cd1bba2e976ef39f5710a76", size = 9516, upload-time = "2025-10-23T09:00:20.675Z" }, +] + +[[package]] +name = "matplotlib-venn" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e8/f7/47bddf95492f4d1370ed7164d2b16407805e8eeb38231361de65d387a562/matplotlib-venn-1.1.2.tar.gz", hash = "sha256:6f2b07a03e9bb5a62de2f32f965216739e175176f9d654dd19e7af2c22ec36e3", size = 40821, upload-time = "2025-02-25T10:44:24.294Z" } + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "mistune" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/55/d01f0c4b45ade6536c51170b9043db8b2ec6ddf4a35c7ea3f5f559ac935b/mistune-3.2.0.tar.gz", hash = "sha256:708487c8a8cdd99c9d90eb3ed4c3ed961246ff78ac82f03418f5183ab70e398a", size = 95467, upload-time = "2025-12-23T11:36:34.994Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/f7/4a5e785ec9fbd65146a27b6b70b6cdc161a66f2024e4b04ac06a67f5578b/mistune-3.2.0-py3-none-any.whl", hash = "sha256:febdc629a3c78616b94393c6580551e0e34cc289987ec6c35ed3f4be42d0eee1", size = 53598, upload-time = "2025-12-23T11:36:33.211Z" }, +] + +[[package]] +name = "ml-dtypes" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fa/47/09ca9556bf99cfe7ddf129a3423642bd482a27a717bf115090493fa42429/ml_dtypes-0.2.0.tar.gz", hash = "sha256:6488eb642acaaf08d8020f6de0a38acee7ac324c1e6e92ee0c0fea42422cb797", size = 698948, upload-time = "2023-06-06T15:14:43.679Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/9f/3c133f83f3e5a7959345585e9ac715ef8bf6e8987551f240032e1b0d3ce6/ml_dtypes-0.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:df6a76e1c8adf484feb138ed323f9f40a7b6c21788f120f7c78bec20ac37ee81", size = 1154492, upload-time = "2023-06-06T15:14:11.966Z" }, + { url = "https://files.pythonhosted.org/packages/19/05/7a6480a69f8555a047a56ae6af9490bcdc5e432658208f3404d8e8442d02/ml_dtypes-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc29a0524ef5e23a7fbb8d881bdecabeb3fc1d19d9db61785d077a86cb94fab2", size = 1012633, upload-time = "2023-06-06T15:14:14.055Z" }, + { url = "https://files.pythonhosted.org/packages/d1/1d/d5cf76e5e40f69dbd273036e3172ae4a614577cb141673427b80cac948df/ml_dtypes-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f08c391c2794f2aad358e6f4c70785a9a7b1df980ef4c232b3ccd4f6fe39f719", size = 1017764, upload-time = "2023-06-06T15:14:15.632Z" }, + { url = "https://files.pythonhosted.org/packages/55/51/c430b4f5f4a6df00aa41c1ee195e179489565e61cfad559506ca7442ce67/ml_dtypes-0.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:75015818a7fccf99a5e8ed18720cb430f3e71a8838388840f4cdf225c036c983", size = 938593, upload-time = "2023-06-06T15:14:17.473Z" }, +] + +[[package]] +name = "monotonic" +version = "1.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ea/ca/8e91948b782ddfbd194f323e7e7d9ba12e5877addf04fb2bf8fca38e86ac/monotonic-1.6.tar.gz", hash = "sha256:3a55207bcfed53ddd5c5bae174524062935efed17792e9de2ad0205ce9ad63f7", size = 7615, upload-time = "2021-08-11T14:37:28.79Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/67/7e8406a29b6c45be7af7740456f7f37025f0506ae2e05fb9009a53946860/monotonic-1.6-py2.py3-none-any.whl", hash = "sha256:68687e19a14f11f26d140dd5c86f3dba4bf5df58003000ed467e0e2a69bca96c", size = 8154, upload-time = "2021-04-09T21:58:05.122Z" }, +] + +[[package]] +name = "mordred" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "networkx" }, + { name = "numpy" }, + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/93/3d/26c908ece761adafcea06320bf8fe73f4de69979273fb164226dc6038c39/mordred-1.2.0.tar.gz", hash = "sha256:1115f9f3a3dde290dd68d51a5070fce43a62aab96b980cffc9d72b74a59e1c5a", size = 128774, upload-time = "2019-06-05T18:20:01.267Z" } + +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, +] + +[[package]] +name = "msgpack" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/f2/bfb55a6236ed8725a96b0aa3acbd0ec17588e6a2c3b62a93eb513ed8783f/msgpack-1.1.2.tar.gz", hash = "sha256:3b60763c1373dd60f398488069bcdc703cd08a711477b5d480eecc9f9626f47e", size = 173581, upload-time = "2025-10-08T09:15:56.596Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f5/a2/3b68a9e769db68668b25c6108444a35f9bd163bb848c0650d516761a59c0/msgpack-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0051fffef5a37ca2cd16978ae4f0aef92f164df86823871b5162812bebecd8e2", size = 81318, upload-time = "2025-10-08T09:14:38.722Z" }, + { url = "https://files.pythonhosted.org/packages/5b/e1/2b720cc341325c00be44e1ed59e7cfeae2678329fbf5aa68f5bda57fe728/msgpack-1.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a605409040f2da88676e9c9e5853b3449ba8011973616189ea5ee55ddbc5bc87", size = 83786, upload-time = "2025-10-08T09:14:40.082Z" }, + { url = "https://files.pythonhosted.org/packages/71/e5/c2241de64bfceac456b140737812a2ab310b10538a7b34a1d393b748e095/msgpack-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b696e83c9f1532b4af884045ba7f3aa741a63b2bc22617293a2c6a7c645f251", size = 398240, upload-time = "2025-10-08T09:14:41.151Z" }, + { url = "https://files.pythonhosted.org/packages/b7/09/2a06956383c0fdebaef5aa9246e2356776f12ea6f2a44bd1368abf0e46c4/msgpack-1.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:365c0bbe981a27d8932da71af63ef86acc59ed5c01ad929e09a0b88c6294e28a", size = 406070, upload-time = "2025-10-08T09:14:42.821Z" }, + { url = "https://files.pythonhosted.org/packages/0e/74/2957703f0e1ef20637d6aead4fbb314330c26f39aa046b348c7edcf6ca6b/msgpack-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:41d1a5d875680166d3ac5c38573896453bbbea7092936d2e107214daf43b1d4f", size = 393403, upload-time = "2025-10-08T09:14:44.38Z" }, + { url = "https://files.pythonhosted.org/packages/a5/09/3bfc12aa90f77b37322fc33e7a8a7c29ba7c8edeadfa27664451801b9860/msgpack-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354e81bcdebaab427c3df4281187edc765d5d76bfb3a7c125af9da7a27e8458f", size = 398947, upload-time = "2025-10-08T09:14:45.56Z" }, + { url = "https://files.pythonhosted.org/packages/4b/4f/05fcebd3b4977cb3d840f7ef6b77c51f8582086de5e642f3fefee35c86fc/msgpack-1.1.2-cp310-cp310-win32.whl", hash = "sha256:e64c8d2f5e5d5fda7b842f55dec6133260ea8f53c4257d64494c534f306bf7a9", size = 64769, upload-time = "2025-10-08T09:14:47.334Z" }, + { url = "https://files.pythonhosted.org/packages/d0/3e/b4547e3a34210956382eed1c85935fff7e0f9b98be3106b3745d7dec9c5e/msgpack-1.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:db6192777d943bdaaafb6ba66d44bf65aa0e9c5616fa1d2da9bb08828c6b39aa", size = 71293, upload-time = "2025-10-08T09:14:48.665Z" }, +] + +[[package]] +name = "multidict" +version = "6.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/0b/19348d4c98980c4851d2f943f8ebafdece2ae7ef737adcfa5994ce8e5f10/multidict-6.7.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c93c3db7ea657dd4637d57e74ab73de31bccefe144d3d4ce370052035bc85fb5", size = 77176, upload-time = "2026-01-26T02:42:59.784Z" }, + { url = "https://files.pythonhosted.org/packages/ef/04/9de3f8077852e3d438215c81e9b691244532d2e05b4270e89ce67b7d103c/multidict-6.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:974e72a2474600827abaeda71af0c53d9ebbc3c2eb7da37b37d7829ae31232d8", size = 44996, upload-time = "2026-01-26T02:43:01.674Z" }, + { url = "https://files.pythonhosted.org/packages/31/5c/08c7f7fe311f32e83f7621cd3f99d805f45519cd06fafb247628b861da7d/multidict-6.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdea2e7b2456cfb6694fb113066fd0ec7ea4d67e3a35e1f4cbeea0b448bf5872", size = 44631, upload-time = "2026-01-26T02:43:03.169Z" }, + { url = "https://files.pythonhosted.org/packages/b7/7f/0e3b1390ae772f27501199996b94b52ceeb64fe6f9120a32c6c3f6b781be/multidict-6.7.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:17207077e29342fdc2c9a82e4b306f1127bf1ea91f8b71e02d4798a70bb99991", size = 242561, upload-time = "2026-01-26T02:43:04.733Z" }, + { url = "https://files.pythonhosted.org/packages/dd/f4/8719f4f167586af317b69dd3e90f913416c91ca610cac79a45c53f590312/multidict-6.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4f49cb5661344764e4c7c7973e92a47a59b8fc19b6523649ec9dc4960e58a03", size = 242223, upload-time = "2026-01-26T02:43:06.695Z" }, + { url = "https://files.pythonhosted.org/packages/47/ab/7c36164cce64a6ad19c6d9a85377b7178ecf3b89f8fd589c73381a5eedfd/multidict-6.7.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a9fc4caa29e2e6ae408d1c450ac8bf19892c5fca83ee634ecd88a53332c59981", size = 222322, upload-time = "2026-01-26T02:43:08.472Z" }, + { url = "https://files.pythonhosted.org/packages/f5/79/a25add6fb38035b5337bc5734f296d9afc99163403bbcf56d4170f97eb62/multidict-6.7.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c5f0c21549ab432b57dcc82130f388d84ad8179824cc3f223d5e7cfbfd4143f6", size = 254005, upload-time = "2026-01-26T02:43:10.127Z" }, + { url = "https://files.pythonhosted.org/packages/4a/7b/64a87cf98e12f756fc8bd444b001232ffff2be37288f018ad0d3f0aae931/multidict-6.7.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7dfb78d966b2c906ae1d28ccf6e6712a3cd04407ee5088cd276fe8cb42186190", size = 251173, upload-time = "2026-01-26T02:43:11.731Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ac/b605473de2bb404e742f2cc3583d12aedb2352a70e49ae8fce455b50c5aa/multidict-6.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9b0d9b91d1aa44db9c1f1ecd0d9d2ae610b2f4f856448664e01a3b35899f3f92", size = 243273, upload-time = "2026-01-26T02:43:13.063Z" }, + { url = "https://files.pythonhosted.org/packages/03/65/11492d6a0e259783720f3bc1d9ea55579a76f1407e31ed44045c99542004/multidict-6.7.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dd96c01a9dcd4889dcfcf9eb5544ca0c77603f239e3ffab0524ec17aea9a93ee", size = 238956, upload-time = "2026-01-26T02:43:14.843Z" }, + { url = "https://files.pythonhosted.org/packages/5f/a7/7ee591302af64e7c196fb63fe856c788993c1372df765102bd0448e7e165/multidict-6.7.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:067343c68cd6612d375710f895337b3a98a033c94f14b9a99eff902f205424e2", size = 233477, upload-time = "2026-01-26T02:43:16.025Z" }, + { url = "https://files.pythonhosted.org/packages/9c/99/c109962d58756c35fd9992fed7f2355303846ea2ff054bb5f5e9d6b888de/multidict-6.7.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5884a04f4ff56c6120f6ccf703bdeb8b5079d808ba604d4d53aec0d55dc33568", size = 243615, upload-time = "2026-01-26T02:43:17.84Z" }, + { url = "https://files.pythonhosted.org/packages/d5/5f/1973e7c771c86e93dcfe1c9cc55a5481b610f6614acfc28c0d326fe6bfad/multidict-6.7.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8affcf1c98b82bc901702eb73b6947a1bfa170823c153fe8a47b5f5f02e48e40", size = 249930, upload-time = "2026-01-26T02:43:19.06Z" }, + { url = "https://files.pythonhosted.org/packages/5d/a5/f170fc2268c3243853580203378cd522446b2df632061e0a5409817854c7/multidict-6.7.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:0d17522c37d03e85c8098ec8431636309b2682cf12e58f4dbc76121fb50e4962", size = 243807, upload-time = "2026-01-26T02:43:20.286Z" }, + { url = "https://files.pythonhosted.org/packages/de/01/73856fab6d125e5bc652c3986b90e8699a95e84b48d72f39ade6c0e74a8c/multidict-6.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:24c0cf81544ca5e17cfcb6e482e7a82cd475925242b308b890c9452a074d4505", size = 239103, upload-time = "2026-01-26T02:43:21.508Z" }, + { url = "https://files.pythonhosted.org/packages/e7/46/f1220bd9944d8aa40d8ccff100eeeee19b505b857b6f603d6078cb5315b0/multidict-6.7.1-cp310-cp310-win32.whl", hash = "sha256:d82dd730a95e6643802f4454b8fdecdf08667881a9c5670db85bc5a56693f122", size = 41416, upload-time = "2026-01-26T02:43:22.703Z" }, + { url = "https://files.pythonhosted.org/packages/68/00/9b38e272a770303692fc406c36e1a4c740f401522d5787691eb38a8925a8/multidict-6.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:cf37cbe5ced48d417ba045aca1b21bafca67489452debcde94778a576666a1df", size = 46022, upload-time = "2026-01-26T02:43:23.77Z" }, + { url = "https://files.pythonhosted.org/packages/64/65/d8d42490c02ee07b6bbe00f7190d70bb4738b3cce7629aaf9f213ef730dd/multidict-6.7.1-cp310-cp310-win_arm64.whl", hash = "sha256:59bc83d3f66b41dac1e7460aac1d196edc70c9ba3094965c467715a70ecb46db", size = 43238, upload-time = "2026-01-26T02:43:24.882Z" }, + { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" }, +] + +[[package]] +name = "narwhals" +version = "2.19.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4e/1a/bd3317c0bdbcd9ffb710ddf5250b32898f8f2c240be99494fe137feb77a7/narwhals-2.19.0.tar.gz", hash = "sha256:14fd7040b5ff211d415a82e4827b9d04c354e213e72a6d0730205ffd72e3b7ff", size = 623698, upload-time = "2026-04-06T15:50:58.786Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/72/e61e3091e0e00fae9d3a8ef85ece9d2cd4b5966058e1f2901ce42679eebf/narwhals-2.19.0-py3-none-any.whl", hash = "sha256:1f8dfa4a33a6dbff878c3e9be4c3b455dfcaf2a9322f1357db00e4e92e95b84b", size = 446991, upload-time = "2026-04-06T15:50:57.046Z" }, +] + +[[package]] +name = "nbclient" +version = "0.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "nbformat" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/56/91/1c1d5a4b9a9ebba2b4e32b8c852c2975c872aec1fe42ab5e516b2cecd193/nbclient-0.10.4.tar.gz", hash = "sha256:1e54091b16e6da39e297b0ece3e10f6f29f4ac4e8ee515d29f8a7099bd6553c9", size = 62554, upload-time = "2025-12-23T07:45:46.369Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/a0/5b0c2f11142ed1dddec842457d3f65eaf71a0080894eb6f018755b319c3a/nbclient-0.10.4-py3-none-any.whl", hash = "sha256:9162df5a7373d70d606527300a95a975a47c137776cd942e52d9c7e29ff83440", size = 25465, upload-time = "2025-12-23T07:45:44.51Z" }, +] + +[[package]] +name = "nbconvert" +version = "7.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4" }, + { name = "bleach", extra = ["css"] }, + { name = "defusedxml" }, + { name = "jinja2" }, + { name = "jupyter-core" }, + { name = "jupyterlab-pygments" }, + { name = "markupsafe" }, + { name = "mistune" }, + { name = "nbclient" }, + { name = "nbformat" }, + { name = "packaging" }, + { name = "pandocfilters" }, + { name = "pygments" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/01/b1/708e53fe2e429c103c6e6e159106bcf0357ac41aa4c28772bd8402339051/nbconvert-7.17.1.tar.gz", hash = "sha256:34d0d0a7e73ce3cbab6c5aae8f4f468797280b01fd8bd2ca746da8569eddd7d2", size = 865311, upload-time = "2026-04-08T00:44:14.914Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/f8/bb0a9d5f46819c821dc1f004aa2cc29b1d91453297dbf5ff20470f00f193/nbconvert-7.17.1-py3-none-any.whl", hash = "sha256:aa85c087b435e7bf1ffd03319f658e285f2b89eccab33bc1ba7025495ab3e7c8", size = 261927, upload-time = "2026-04-08T00:44:12.845Z" }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema" }, + { name = "jsonschema" }, + { name = "jupyter-core" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749, upload-time = "2024-04-04T11:20:37.371Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454, upload-time = "2024-04-04T11:20:34.895Z" }, +] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418, upload-time = "2024-01-21T14:25:19.227Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195, upload-time = "2024-01-21T14:25:17.223Z" }, +] + +[[package]] +name = "networkx" +version = "2.8.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/16/c44e8550012735b8f21b3df7f39e8ba5a987fb764ac017ad5f3589735889/networkx-2.8.8.tar.gz", hash = "sha256:230d388117af870fce5647a3c52401fcf753e94720e6ea6b4197a5355648885e", size = 1960828, upload-time = "2022-11-01T20:31:52.02Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/31/d2f89f1ae42718f8c8a9e440ebe38d7d5fe1e0d9eb9178ce779e365b3ab0/networkx-2.8.8-py3-none-any.whl", hash = "sha256:e435dfa75b1d7195c7b8378c3859f0445cd88c6b0375c181ed66823a9ceb7524", size = 2025192, upload-time = "2022-11-01T20:31:49.035Z" }, +] + +[[package]] +name = "notebook" +version = "7.5.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, + { name = "jupyterlab" }, + { name = "jupyterlab-server" }, + { name = "notebook-shim" }, + { name = "tornado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1f/6d/41052c48d6f6349ca0a7c4d1f6a78464de135e6d18f5829ba2510e62184c/notebook-7.5.5.tar.gz", hash = "sha256:dc0bfab0f2372c8278c457423d3256c34154ac2cc76bf20e9925260c461013c3", size = 14169167, upload-time = "2026-03-11T16:32:51.922Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/aa/cbd1deb9f07446241e88f8d5fecccd95b249bca0b4e5482214a4d1714c49/notebook-7.5.5-py3-none-any.whl", hash = "sha256:a7c14dbeefa6592e87f72290ca982e0c10f5bbf3786be2a600fda9da2764a2b8", size = 14578929, upload-time = "2026-03-11T16:32:48.021Z" }, +] + +[[package]] +name = "notebook-shim" +version = "0.2.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/54/d2/92fa3243712b9a3e8bafaf60aac366da1cada3639ca767ff4b5b3654ec28/notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb", size = 13167, upload-time = "2024-02-14T23:35:18.353Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef", size = 13307, upload-time = "2024-02-14T23:35:16.286Z" }, +] + +[[package]] +name = "numba" +version = "0.65.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "llvmlite" }, + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/49/61/7299643b9c18d669e04be7c5bcb64d985070d07553274817b45b049e7bfe/numba-0.65.0.tar.gz", hash = "sha256:edad0d9f6682e93624c00125a471ae4df186175d71fd604c983c377cdc03e68b", size = 2764131, upload-time = "2026-04-01T03:52:01.946Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/9b/e8453d93d5cb3f53cc956f135024be09d52f4f99643acaf8fdca090a8f3c/numba-0.65.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:dff9fd5fbc9a35c517359c5823ea705d9b65f01fb46e42e35a2eabe5a52c2e96", size = 2680537, upload-time = "2026-04-01T03:51:17.325Z" }, + { url = "https://files.pythonhosted.org/packages/07/95/d6a2f0625e1092624228301eea11cdaff21ddcaf917ef3d631846a38b2f4/numba-0.65.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4c894c94afa5ffd627c7e3b693df10cb0d905bd5eb06de3dfc31775140cf4f89", size = 3739444, upload-time = "2026-04-01T03:51:19.629Z" }, + { url = "https://files.pythonhosted.org/packages/49/ed/fe518c97af035e4ec670c2edc3f0ff7a518cbed2f0b5053124d7c979bd8a/numba-0.65.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b7325b1aab88f0339057288ee32f39dc660e14f93872a6fda14fa6eb9f95b047", size = 3446390, upload-time = "2026-04-01T03:51:21.55Z" }, + { url = "https://files.pythonhosted.org/packages/d0/06/5010939854249c290c6217e3fb7404914f4ed953f9923e340c3e166bcaf0/numba-0.65.0-cp310-cp310-win_amd64.whl", hash = "sha256:71e72e9ca2f619df4768f9c3962bfec60191a5a26fe2b6a8c6a07532b6146169", size = 2747200, upload-time = "2026-04-01T03:51:23.674Z" }, +] + +[[package]] +name = "numpy" +version = "1.26.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/65/6e/09db70a523a96d25e115e71cc56a6f9031e7b8cd166c1ac8438307c14058/numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", size = 15786129, upload-time = "2024-02-06T00:26:44.495Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/94/ace0fdea5241a27d13543ee117cbc65868e82213fb31a8eb7fe9ff23f313/numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", size = 20631468, upload-time = "2024-02-05T23:48:01.194Z" }, + { url = "https://files.pythonhosted.org/packages/20/f7/b24208eba89f9d1b58c1668bc6c8c4fd472b20c45573cb767f59d49fb0f6/numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", size = 13966411, upload-time = "2024-02-05T23:48:29.038Z" }, + { url = "https://files.pythonhosted.org/packages/fc/a5/4beee6488160798683eed5bdb7eead455892c3b4e1f78d79d8d3f3b084ac/numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", size = 14219016, upload-time = "2024-02-05T23:48:54.098Z" }, + { url = "https://files.pythonhosted.org/packages/4b/d7/ecf66c1cd12dc28b4040b15ab4d17b773b87fa9d29ca16125de01adb36cd/numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f", size = 18240889, upload-time = "2024-02-05T23:49:25.361Z" }, + { url = "https://files.pythonhosted.org/packages/24/03/6f229fe3187546435c4f6f89f6d26c129d4f5bed40552899fcf1f0bf9e50/numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", size = 13876746, upload-time = "2024-02-05T23:49:51.983Z" }, + { url = "https://files.pythonhosted.org/packages/39/fe/39ada9b094f01f5a35486577c848fe274e374bbf8d8f472e1423a0bbd26d/numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", size = 18078620, upload-time = "2024-02-05T23:50:22.515Z" }, + { url = "https://files.pythonhosted.org/packages/d5/ef/6ad11d51197aad206a9ad2286dc1aac6a378059e06e8cf22cd08ed4f20dc/numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", size = 5972659, upload-time = "2024-02-05T23:50:35.834Z" }, + { url = "https://files.pythonhosted.org/packages/19/77/538f202862b9183f54108557bfda67e17603fc560c384559e769321c9d92/numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", size = 15808905, upload-time = "2024-02-05T23:51:03.701Z" }, +] + +[[package]] +name = "nvidia-cublas-cu12" +version = "12.1.3.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/6d/121efd7382d5b0284239f4ab1fc1590d86d34ed4a4a2fdb13b30ca8e5740/nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:ee53ccca76a6fc08fb9701aa95b6ceb242cdaab118c3bb152af4e579af792728", size = 410594774, upload-time = "2023-04-19T15:50:03.519Z" }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/00/6b218edd739ecfc60524e585ba8e6b00554dd908de2c9c66c1af3e44e18d/nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:e54fde3983165c624cb79254ae9818a456eb6e87a7fd4d56a2352c24ee542d7e", size = 14109015, upload-time = "2023-04-19T15:47:32.502Z" }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/9f/c64c03f49d6fbc56196664d05dba14e3a561038a81a638eeb47f4d4cfd48/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:339b385f50c309763ca65456ec75e17bbefcbbf2893f462cb8b90584cd27a1c2", size = 23671734, upload-time = "2023-04-19T15:48:32.42Z" }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/d5/c68b1d2cdfcc59e72e8a5949a37ddb22ae6cade80cd4a57a84d4c8b55472/nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:6e258468ddf5796e25f1dc591a31029fa317d97a0a94ed93468fc86301d61e40", size = 823596, upload-time = "2023-04-19T15:47:22.471Z" }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "8.9.2.26" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/74/a2e2be7fb83aaedec84f391f082cf765dfb635e7caa9b49065f73e4835d8/nvidia_cudnn_cu12-8.9.2.26-py3-none-manylinux1_x86_64.whl", hash = "sha256:5ccb288774fdfb07a7e7025ffec286971c06d8d7b4fb162525334616d7629ff9", size = 731725872, upload-time = "2023-06-01T19:24:57.328Z" }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.0.2.54" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/94/eb540db023ce1d162e7bea9f8f5aa781d57c65aed513c33ee9a5123ead4d/nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl", hash = "sha256:794e3948a1aa71fd817c3775866943936774d1c14e7628c74f6f7417224cdf56", size = 121635161, upload-time = "2023-04-19T15:50:46Z" }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.2.106" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/31/4890b1c9abc496303412947fc7dcea3d14861720642b49e8ceed89636705/nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:9d264c5036dde4e64f1de8c50ae753237c12e0b1348738169cd0f8a536c0e1e0", size = 56467784, upload-time = "2023-04-19T15:51:04.804Z" }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.4.5.107" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, + { name = "nvidia-cusparse-cu12" }, + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/1d/8de1e5c67099015c834315e333911273a8c6aaba78923dd1d1e25fc5f217/nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl", hash = "sha256:8a7ec542f0412294b15072fa7dab71d31334014a69f953004ea7a118206fe0dd", size = 124161928, upload-time = "2023-04-19T15:51:25.781Z" }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.1.0.106" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/5b/cfaeebf25cd9fdec14338ccb16f6b2c4c7fa9163aefcf057d86b9cc248bb/nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:f3b50f42cf363f86ab21f720998517a659a48131e8d538dc02f8768237bd884c", size = 195958278, upload-time = "2023-04-19T15:51:49.939Z" }, +] + +[[package]] +name = "nvidia-nccl-cu12" +version = "2.18.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/05/23f8f38eec3d28e4915725b233c24d8f1a33cb6540a882f7b54be1befa02/nvidia_nccl_cu12-2.18.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:1a6c4acefcbebfa6de320f412bf7866de856e786e0462326ba1bac40de0b5e71", size = 209797524, upload-time = "2023-05-04T23:15:49.653Z" }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.9.86" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/0c/c75bbfb967457a0b7670b8ad267bfc4fffdf341c074e0a80db06c24ccfd4/nvidia_nvjitlink_cu12-12.9.86-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:e3f1171dbdc83c5932a45f0f4c99180a70de9bd2718c1ab77d14104f6d7147f9", size = 39748338, upload-time = "2025-06-05T20:10:25.613Z" }, +] + +[[package]] +name = "nvidia-nvtx-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/d3/8057f0587683ed2fcd4dbfbdfdfa807b9160b809976099d36b8f60d08f03/nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:dc21cf308ca5691e7c04d962e213f8a4aa9bbfa23d95412f452254c2caeb09e5", size = 99138, upload-time = "2023-04-19T15:48:43.556Z" }, +] + +[[package]] +name = "oauthlib" +version = "3.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0b/5f/19930f824ffeb0ad4372da4812c50edbd1434f678c90c2733e1188edfc63/oauthlib-3.3.1.tar.gz", hash = "sha256:0f0f8aa759826a193cf66c12ea1af1637f87b9b4622d46e866952bb022e538c9", size = 185918, upload-time = "2025-06-19T22:48:08.269Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/be/9c/92789c596b8df838baa98fa71844d84283302f7604ed565dafe5a6b5041a/oauthlib-3.3.1-py3-none-any.whl", hash = "sha256:88119c938d2b8fb88561af5f6ee0eec8cc8d552b7bb1f712743136eb7523b7a1", size = 160065, upload-time = "2025-06-19T22:48:06.508Z" }, +] + +[[package]] +name = "opt-einsum" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/b9/2ac072041e899a52f20cf9510850ff58295003aa75525e58343591b0cbfb/opt_einsum-3.4.0.tar.gz", hash = "sha256:96ca72f1b886d148241348783498194c577fa30a8faac108586b14f1ba4473ac", size = 63004, upload-time = "2024-09-26T14:33:24.483Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/cd/066e86230ae37ed0be70aae89aabf03ca8d9f39c8aea0dec8029455b5540/opt_einsum-3.4.0-py3-none-any.whl", hash = "sha256:69bb92469f86a1565195ece4ac0323943e83477171b91d24c35afe028a90d7cd", size = 71932, upload-time = "2024-09-26T14:33:23.039Z" }, +] + +[[package]] +name = "optuna" +version = "4.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alembic" }, + { name = "colorlog" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "sqlalchemy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/9b/62f120fb2ecbc4338bee70c5a3671c8e561714f3aa1a046b897ff142050e/optuna-4.8.0.tar.gz", hash = "sha256:6f7043e9f8ecb5e607af86a7eb00fb5ec2be26c3b08c201209a73d36aff37a38", size = 482603, upload-time = "2026-03-16T04:59:58.659Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/24/7c731839566d30dc70556d9824ef17692d896c15e3df627bce8c16f753e1/optuna-4.8.0-py3-none-any.whl", hash = "sha256:c57a7682679c36bfc9bca0da430698179e513874074b71bebedb0334964ab930", size = 419456, upload-time = "2026-03-16T04:59:56.977Z" }, +] + +[[package]] +name = "overrides" +version = "7.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/36/86/b585f53236dec60aba864e050778b25045f857e17f6e5ea0ae95fe80edd2/overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a", size = 22812, upload-time = "2024-01-27T21:01:33.423Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49", size = 17832, upload-time = "2024-01-27T21:01:31.393Z" }, +] + +[[package]] +name = "packaging" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950, upload-time = "2024-11-08T09:47:47.202Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451, upload-time = "2024-11-08T09:47:44.722Z" }, +] + +[[package]] +name = "pandas" +version = "2.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/33/01/d40b85317f86cf08d853a4f495195c73815fdf205eef3993821720274518/pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b", size = 4495223, upload-time = "2025-09-29T23:34:51.853Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/f7/f425a00df4fcc22b292c6895c6831c0c8ae1d9fac1e024d16f98a9ce8749/pandas-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:376c6446ae31770764215a6c937f72d917f214b43560603cd60da6408f183b6c", size = 11555763, upload-time = "2025-09-29T23:16:53.287Z" }, + { url = "https://files.pythonhosted.org/packages/13/4f/66d99628ff8ce7857aca52fed8f0066ce209f96be2fede6cef9f84e8d04f/pandas-2.3.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e19d192383eab2f4ceb30b412b22ea30690c9e618f78870357ae1d682912015a", size = 10801217, upload-time = "2025-09-29T23:17:04.522Z" }, + { url = "https://files.pythonhosted.org/packages/1d/03/3fc4a529a7710f890a239cc496fc6d50ad4a0995657dccc1d64695adb9f4/pandas-2.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5caf26f64126b6c7aec964f74266f435afef1c1b13da3b0636c7518a1fa3e2b1", size = 12148791, upload-time = "2025-09-29T23:17:18.444Z" }, + { url = "https://files.pythonhosted.org/packages/40/a8/4dac1f8f8235e5d25b9955d02ff6f29396191d4e665d71122c3722ca83c5/pandas-2.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dd7478f1463441ae4ca7308a70e90b33470fa593429f9d4c578dd00d1fa78838", size = 12769373, upload-time = "2025-09-29T23:17:35.846Z" }, + { url = "https://files.pythonhosted.org/packages/df/91/82cc5169b6b25440a7fc0ef3a694582418d875c8e3ebf796a6d6470aa578/pandas-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4793891684806ae50d1288c9bae9330293ab4e083ccd1c5e383c34549c6e4250", size = 13200444, upload-time = "2025-09-29T23:17:49.341Z" }, + { url = "https://files.pythonhosted.org/packages/10/ae/89b3283800ab58f7af2952704078555fa60c807fff764395bb57ea0b0dbd/pandas-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:28083c648d9a99a5dd035ec125d42439c6c1c525098c58af0fc38dd1a7a1b3d4", size = 13858459, upload-time = "2025-09-29T23:18:03.722Z" }, + { url = "https://files.pythonhosted.org/packages/85/72/530900610650f54a35a19476eca5104f38555afccda1aa11a92ee14cb21d/pandas-2.3.3-cp310-cp310-win_amd64.whl", hash = "sha256:503cf027cf9940d2ceaa1a93cfb5f8c8c7e6e90720a2850378f0b3f3b1e06826", size = 11346086, upload-time = "2025-09-29T23:18:18.505Z" }, +] + +[[package]] +name = "pandocfilters" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/6f/3dd4940bbe001c06a65f88e36bad298bc7a0de5036115639926b0c5c0458/pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e", size = 8454, upload-time = "2024-01-18T20:08:13.726Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc", size = 8663, upload-time = "2024-01-18T20:08:11.28Z" }, +] + +[[package]] +name = "parso" +version = "0.8.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/76/a1e769043c0c0c9fe391b702539d594731a4362334cdf4dc25d0c09761e7/parso-0.8.6.tar.gz", hash = "sha256:2b9a0332696df97d454fa67b81618fd69c35a7b90327cbe6ba5c92d2c68a7bfd", size = 401621, upload-time = "2026-02-09T15:45:24.425Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/61/fae042894f4296ec49e3f193aff5d7c18440da9e48102c3315e1bc4519a7/parso-0.8.6-py2.py3-none-any.whl", hash = "sha256:2c549f800b70a5c4952197248825584cb00f033b29c692671d3bf08bf380baff", size = 106894, upload-time = "2026-02-09T15:45:21.391Z" }, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload-time = "2023-11-25T09:07:26.339Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772, upload-time = "2023-11-25T06:56:14.81Z" }, +] + +[[package]] +name = "pillow" +version = "12.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/21/c2bcdd5906101a30244eaffc1b6e6ce71a31bd0742a01eb89e660ebfac2d/pillow-12.2.0.tar.gz", hash = "sha256:a830b1a40919539d07806aa58e1b114df53ddd43213d9c8b75847eee6c0182b5", size = 46987819, upload-time = "2026-04-01T14:46:17.687Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/aa/d0b28e1c811cd4d5f5c2bfe2e022292bd255ae5744a3b9ac7d6c8f72dd75/pillow-12.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:a4e8f36e677d3336f35089648c8955c51c6d386a13cf6ee9c189c5f5bd713a9f", size = 5354355, upload-time = "2026-04-01T14:42:15.402Z" }, + { url = "https://files.pythonhosted.org/packages/27/8e/1d5b39b8ae2bd7650d0c7b6abb9602d16043ead9ebbfef4bc4047454da2a/pillow-12.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e589959f10d9824d39b350472b92f0ce3b443c0a3442ebf41c40cb8361c5b97", size = 4695871, upload-time = "2026-04-01T14:42:18.234Z" }, + { url = "https://files.pythonhosted.org/packages/f0/c5/dcb7a6ca6b7d3be41a76958e90018d56c8462166b3ef223150360850c8da/pillow-12.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:a52edc8bfff4429aaabdf4d9ee0daadbbf8562364f940937b941f87a4290f5ff", size = 6269734, upload-time = "2026-04-01T14:42:20.608Z" }, + { url = "https://files.pythonhosted.org/packages/ea/f1/aa1bb13b2f4eba914e9637893c73f2af8e48d7d4023b9d3750d4c5eb2d0c/pillow-12.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:975385f4776fafde056abb318f612ef6285b10a1f12b8570f3647ad0d74b48ec", size = 8076080, upload-time = "2026-04-01T14:42:23.095Z" }, + { url = "https://files.pythonhosted.org/packages/a1/2a/8c79d6a53169937784604a8ae8d77e45888c41537f7f6f65ed1f407fe66d/pillow-12.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bd9c0c7a0c681a347b3194c500cb1e6ca9cab053ea4d82a5cf45b6b754560136", size = 6382236, upload-time = "2026-04-01T14:42:25.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/42/bbcb6051030e1e421d103ce7a8ecadf837aa2f39b8f82ef1a8d37c3d4ebc/pillow-12.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:88d387ff40b3ff7c274947ed3125dedf5262ec6919d83946753b5f3d7c67ea4c", size = 7070220, upload-time = "2026-04-01T14:42:28.68Z" }, + { url = "https://files.pythonhosted.org/packages/3f/e1/c2a7d6dd8cfa6b231227da096fd2d58754bab3603b9d73bf609d3c18b64f/pillow-12.2.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:51c4167c34b0d8ba05b547a3bb23578d0ba17b80a5593f93bd8ecb123dd336a3", size = 6493124, upload-time = "2026-04-01T14:42:31.579Z" }, + { url = "https://files.pythonhosted.org/packages/5f/41/7c8617da5d32e1d2f026e509484fdb6f3ad7efaef1749a0c1928adbb099e/pillow-12.2.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:34c0d99ecccea270c04882cb3b86e7b57296079c9a4aff88cb3b33563d95afaa", size = 7194324, upload-time = "2026-04-01T14:42:34.615Z" }, + { url = "https://files.pythonhosted.org/packages/2d/de/a777627e19fd6d62f84070ee1521adde5eeda4855b5cf60fe0b149118bca/pillow-12.2.0-cp310-cp310-win32.whl", hash = "sha256:b85f66ae9eb53e860a873b858b789217ba505e5e405a24b85c0464822fe88032", size = 6376363, upload-time = "2026-04-01T14:42:37.19Z" }, + { url = "https://files.pythonhosted.org/packages/e7/34/fc4cb5204896465842767b96d250c08410f01f2f28afc43b257de842eed5/pillow-12.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:673aa32138f3e7531ccdbca7b3901dba9b70940a19ccecc6a37c77d5fdeb05b5", size = 7083523, upload-time = "2026-04-01T14:42:39.62Z" }, + { url = "https://files.pythonhosted.org/packages/2d/a0/32852d36bc7709f14dc3f64f929a275e958ad8c19a6deba9610d458e28b3/pillow-12.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:3e080565d8d7c671db5802eedfb438e5565ffa40115216eabb8cd52d0ecce024", size = 2463318, upload-time = "2026-04-01T14:42:42.063Z" }, +] + +[[package]] +name = "platformdirs" +version = "4.9.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9f/4a/0883b8e3802965322523f0b200ecf33d31f10991d0401162f4b23c698b42/platformdirs-4.9.6.tar.gz", hash = "sha256:3bfa75b0ad0db84096ae777218481852c0ebc6c727b3168c1b9e0118e458cf0a", size = 29400, upload-time = "2026-04-09T00:04:10.812Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/a6/a0a304dc33b49145b21f4808d763822111e67d1c3a32b524a1baf947b6e1/platformdirs-4.9.6-py3-none-any.whl", hash = "sha256:e61adb1d5e5cb3441b4b7710bea7e4c12250ca49439228cc1021c00dcfac0917", size = 21348, upload-time = "2026-04-09T00:04:09.463Z" }, +] + +[[package]] +name = "pluggy" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, +] + +[[package]] +name = "prometheus-client" +version = "0.25.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/fb/d9aa83ffe43ce1f19e557c0971d04b90561b0cfd50762aafb01968285553/prometheus_client-0.25.0.tar.gz", hash = "sha256:5e373b75c31afb3c86f1a52fa1ad470c9aace18082d39ec0d2f918d11cc9ba28", size = 86035, upload-time = "2026-04-09T19:53:42.359Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/9b/d4b1e644385499c8346fa9b622a3f030dce14cd6ef8a1871c221a17a67e7/prometheus_client-0.25.0-py3-none-any.whl", hash = "sha256:d5aec89e349a6ec230805d0df882f3807f74fd6c1a2fa86864e3c2279059fed1", size = 64154, upload-time = "2026-04-09T19:53:41.324Z" }, +] + +[[package]] +name = "prompt-toolkit" +version = "3.0.52" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/96/06e01a7b38dce6fe1db213e061a4602dd6032a8a97ef6c1a862537732421/prompt_toolkit-3.0.52.tar.gz", hash = "sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855", size = 434198, upload-time = "2025-08-27T15:24:02.057Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/03/0d3ce49e2505ae70cf43bc5bb3033955d2fc9f932163e84dc0779cc47f48/prompt_toolkit-3.0.52-py3-none-any.whl", hash = "sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955", size = 391431, upload-time = "2025-08-27T15:23:59.498Z" }, +] + +[[package]] +name = "propcache" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9e/da/e9fc233cf63743258bff22b3dfa7ea5baef7b5bc324af47a0ad89b8ffc6f/propcache-0.4.1.tar.gz", hash = "sha256:f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d", size = 46442, upload-time = "2025-10-08T19:49:02.291Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/0e/934b541323035566a9af292dba85a195f7b78179114f2c6ebb24551118a9/propcache-0.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7c2d1fa3201efaf55d730400d945b5b3ab6e672e100ba0f9a409d950ab25d7db", size = 79534, upload-time = "2025-10-08T19:46:02.083Z" }, + { url = "https://files.pythonhosted.org/packages/a1/6b/db0d03d96726d995dc7171286c6ba9d8d14251f37433890f88368951a44e/propcache-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1eb2994229cc8ce7fe9b3db88f5465f5fd8651672840b2e426b88cdb1a30aac8", size = 45526, upload-time = "2025-10-08T19:46:03.884Z" }, + { url = "https://files.pythonhosted.org/packages/e4/c3/82728404aea669e1600f304f2609cde9e665c18df5a11cdd57ed73c1dceb/propcache-0.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:66c1f011f45a3b33d7bcb22daed4b29c0c9e2224758b6be00686731e1b46f925", size = 47263, upload-time = "2025-10-08T19:46:05.405Z" }, + { url = "https://files.pythonhosted.org/packages/df/1b/39313ddad2bf9187a1432654c38249bab4562ef535ef07f5eb6eb04d0b1b/propcache-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9a52009f2adffe195d0b605c25ec929d26b36ef986ba85244891dee3b294df21", size = 201012, upload-time = "2025-10-08T19:46:07.165Z" }, + { url = "https://files.pythonhosted.org/packages/5b/01/f1d0b57d136f294a142acf97f4ed58c8e5b974c21e543000968357115011/propcache-0.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5d4e2366a9c7b837555cf02fb9be2e3167d333aff716332ef1b7c3a142ec40c5", size = 209491, upload-time = "2025-10-08T19:46:08.909Z" }, + { url = "https://files.pythonhosted.org/packages/a1/c8/038d909c61c5bb039070b3fb02ad5cccdb1dde0d714792e251cdb17c9c05/propcache-0.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:9d2b6caef873b4f09e26ea7e33d65f42b944837563a47a94719cc3544319a0db", size = 215319, upload-time = "2025-10-08T19:46:10.7Z" }, + { url = "https://files.pythonhosted.org/packages/08/57/8c87e93142b2c1fa2408e45695205a7ba05fb5db458c0bf5c06ba0e09ea6/propcache-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b16ec437a8c8a965ecf95739448dd938b5c7f56e67ea009f4300d8df05f32b7", size = 196856, upload-time = "2025-10-08T19:46:12.003Z" }, + { url = "https://files.pythonhosted.org/packages/42/df/5615fec76aa561987a534759b3686008a288e73107faa49a8ae5795a9f7a/propcache-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:296f4c8ed03ca7476813fe666c9ea97869a8d7aec972618671b33a38a5182ef4", size = 193241, upload-time = "2025-10-08T19:46:13.495Z" }, + { url = "https://files.pythonhosted.org/packages/d5/21/62949eb3a7a54afe8327011c90aca7e03547787a88fb8bd9726806482fea/propcache-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:1f0978529a418ebd1f49dad413a2b68af33f85d5c5ca5c6ca2a3bed375a7ac60", size = 190552, upload-time = "2025-10-08T19:46:14.938Z" }, + { url = "https://files.pythonhosted.org/packages/30/ee/ab4d727dd70806e5b4de96a798ae7ac6e4d42516f030ee60522474b6b332/propcache-0.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fd138803047fb4c062b1c1dd95462f5209456bfab55c734458f15d11da288f8f", size = 200113, upload-time = "2025-10-08T19:46:16.695Z" }, + { url = "https://files.pythonhosted.org/packages/8a/0b/38b46208e6711b016aa8966a3ac793eee0d05c7159d8342aa27fc0bc365e/propcache-0.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:8c9b3cbe4584636d72ff556d9036e0c9317fa27b3ac1f0f558e7e84d1c9c5900", size = 200778, upload-time = "2025-10-08T19:46:18.023Z" }, + { url = "https://files.pythonhosted.org/packages/cf/81/5abec54355ed344476bee711e9f04815d4b00a311ab0535599204eecc257/propcache-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f93243fdc5657247533273ac4f86ae106cc6445a0efacb9a1bfe982fcfefd90c", size = 193047, upload-time = "2025-10-08T19:46:19.449Z" }, + { url = "https://files.pythonhosted.org/packages/ec/b6/1f237c04e32063cb034acd5f6ef34ef3a394f75502e72703545631ab1ef6/propcache-0.4.1-cp310-cp310-win32.whl", hash = "sha256:a0ee98db9c5f80785b266eb805016e36058ac72c51a064040f2bc43b61101cdb", size = 38093, upload-time = "2025-10-08T19:46:20.643Z" }, + { url = "https://files.pythonhosted.org/packages/a6/67/354aac4e0603a15f76439caf0427781bcd6797f370377f75a642133bc954/propcache-0.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:1cdb7988c4e5ac7f6d175a28a9aa0c94cb6f2ebe52756a3c0cda98d2809a9e37", size = 41638, upload-time = "2025-10-08T19:46:21.935Z" }, + { url = "https://files.pythonhosted.org/packages/e0/e1/74e55b9fd1a4c209ff1a9a824bf6c8b3d1fc5a1ac3eabe23462637466785/propcache-0.4.1-cp310-cp310-win_arm64.whl", hash = "sha256:d82ad62b19645419fe79dd63b3f9253e15b30e955c0170e5cebc350c1844e581", size = 38229, upload-time = "2025-10-08T19:46:23.368Z" }, + { url = "https://files.pythonhosted.org/packages/5b/5a/bc7b4a4ef808fa59a816c17b20c4bef6884daebbdf627ff2a161da67da19/propcache-0.4.1-py3-none-any.whl", hash = "sha256:af2a6052aeb6cf17d3e46ee169099044fd8224cbaf75c76a2ef596e8163e2237", size = 13305, upload-time = "2025-10-08T19:49:00.792Z" }, +] + +[[package]] +name = "protobuf" +version = "4.25.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d9/8e/d08c41a8c004e1d437ef467e7c4f9c3295cd784eba48ed5d1d01f94b1dad/protobuf-4.25.9.tar.gz", hash = "sha256:b0dc7e7c68de8b1ce831dacb12fb407e838edbb8b6cc0dc3a2a6b4cbf6de9cff", size = 381040, upload-time = "2026-03-25T23:09:36.423Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/e9/59435bd04bdd46cb38c42a336b22f9843e8e586ff83c35a5423f8b14704e/protobuf-4.25.9-cp310-abi3-win32.whl", hash = "sha256:bde396f568b0b46fc8fbfe9f02facf25b6755b2578a3b8ac61e74b9d69499e03", size = 392879, upload-time = "2026-03-25T23:09:21.32Z" }, + { url = "https://files.pythonhosted.org/packages/f3/16/42a5c7f1001783d2b5bfcecde10127f09010f78982c86ae409122ce3ece6/protobuf-4.25.9-cp310-abi3-win_amd64.whl", hash = "sha256:3683c05154252206f7cb2d371626514b3708199d9bcf683b503dabf3a2e38e06", size = 413900, upload-time = "2026-03-25T23:09:23.589Z" }, + { url = "https://files.pythonhosted.org/packages/56/5b/0074a0a9eb01f3d1c4648ca5e81b22090c811b210b61df9018ac6d6c5cda/protobuf-4.25.9-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:9560813560e6ee72c11ca8873878bdb7ee003c96a57ebb013245fe84e2540904", size = 394826, upload-time = "2026-03-25T23:09:25.194Z" }, + { url = "https://files.pythonhosted.org/packages/54/aa/b2dba856f64c36b2a06c67be1472de98cca07a2322d0f0cbf03279a40e5b/protobuf-4.25.9-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:999146ef02e7fa6a692477badd1528bcd7268df211852a3df2d834ba2b480791", size = 294191, upload-time = "2026-03-25T23:09:26.613Z" }, + { url = "https://files.pythonhosted.org/packages/a8/5c/53f18822017b8bda6bd8bb4e02048e911fdc79a3dafdc83ab994fe922a84/protobuf-4.25.9-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:438c636de8fb706a0de94a12a268ef1ae8f5ba5ae655a7671fcda5968ba3c9be", size = 295178, upload-time = "2026-03-25T23:09:27.839Z" }, + { url = "https://files.pythonhosted.org/packages/16/28/d5065b212685875d3924bcdb3201cbf467cb4d58a18aa19a8dfd99ea80a9/protobuf-4.25.9-py3-none-any.whl", hash = "sha256:d49b615e7c935194ac161f0965699ac84df6112c378e05ec53da65d2e4cbb6d4", size = 156822, upload-time = "2026-03-25T23:09:34.957Z" }, +] + +[[package]] +name = "psutil" +version = "7.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/c6/d1ddf4abb55e93cebc4f2ed8b5d6dbad109ecb8d63748dd2b20ab5e57ebe/psutil-7.2.2.tar.gz", hash = "sha256:0746f5f8d406af344fd547f1c8daa5f5c33dbc293bb8d6a16d80b4bb88f59372", size = 493740, upload-time = "2026-01-28T18:14:54.428Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/36/5ee6e05c9bd427237b11b3937ad82bb8ad2752d72c6969314590dd0c2f6e/psutil-7.2.2-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ed0cace939114f62738d808fdcecd4c869222507e266e574799e9c0faa17d486", size = 129090, upload-time = "2026-01-28T18:15:22.168Z" }, + { url = "https://files.pythonhosted.org/packages/80/c4/f5af4c1ca8c1eeb2e92ccca14ce8effdeec651d5ab6053c589b074eda6e1/psutil-7.2.2-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:1a7b04c10f32cc88ab39cbf606e117fd74721c831c98a27dc04578deb0c16979", size = 129859, upload-time = "2026-01-28T18:15:23.795Z" }, + { url = "https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9", size = 155560, upload-time = "2026-01-28T18:15:25.976Z" }, + { url = "https://files.pythonhosted.org/packages/63/65/37648c0c158dc222aba51c089eb3bdfa238e621674dc42d48706e639204f/psutil-7.2.2-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b0726cecd84f9474419d67252add4ac0cd9811b04d61123054b9fb6f57df6e9e", size = 156997, upload-time = "2026-01-28T18:15:27.794Z" }, + { url = "https://files.pythonhosted.org/packages/8e/13/125093eadae863ce03c6ffdbae9929430d116a246ef69866dad94da3bfbc/psutil-7.2.2-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fd04ef36b4a6d599bbdb225dd1d3f51e00105f6d48a28f006da7f9822f2606d8", size = 148972, upload-time = "2026-01-28T18:15:29.342Z" }, + { url = "https://files.pythonhosted.org/packages/04/78/0acd37ca84ce3ddffaa92ef0f571e073faa6d8ff1f0559ab1272188ea2be/psutil-7.2.2-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b58fabe35e80b264a4e3bb23e6b96f9e45a3df7fb7eed419ac0e5947c61e47cc", size = 148266, upload-time = "2026-01-28T18:15:31.597Z" }, + { url = "https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl", hash = "sha256:eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988", size = 137737, upload-time = "2026-01-28T18:15:33.849Z" }, + { url = "https://files.pythonhosted.org/packages/8c/c7/7bb2e321574b10df20cbde462a94e2b71d05f9bbda251ef27d104668306a/psutil-7.2.2-cp37-abi3-win_arm64.whl", hash = "sha256:8c233660f575a5a89e6d4cb65d9f938126312bca76d8fe087b947b3a1aaac9ee", size = 134617, upload-time = "2026-01-28T18:15:36.514Z" }, +] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762, upload-time = "2020-12-28T15:15:30.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993, upload-time = "2020-12-28T15:15:28.35Z" }, +] + +[[package]] +name = "pure-eval" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752, upload-time = "2024-07-21T12:58:21.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842, upload-time = "2024-07-21T12:58:20.04Z" }, +] + +[[package]] +name = "py4j" +version = "0.10.9.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/38/31/0b210511177070c8d5d3059556194352e5753602fa64b85b7ab81ec1a009/py4j-0.10.9.9.tar.gz", hash = "sha256:f694cad19efa5bd1dee4f3e5270eb406613c974394035e5bfc4ec1aba870b879", size = 761089, upload-time = "2025-01-15T03:53:18.624Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/db/ea0203e495be491c85af87b66e37acfd3bf756fd985f87e46fc5e3bf022c/py4j-0.10.9.9-py2.py3-none-any.whl", hash = "sha256:c7c26e4158defb37b0bb124933163641a2ff6e3a3913f7811b0ddbe07ed61533", size = 203008, upload-time = "2025-01-15T03:53:15.648Z" }, +] + +[[package]] +name = "pyarrow" +version = "23.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/88/22/134986a4cc224d593c1afde5494d18ff629393d74cc2eddb176669f234a4/pyarrow-23.0.1.tar.gz", hash = "sha256:b8c5873e33440b2bc2f4a79d2b47017a89c5a24116c055625e6f2ee50523f019", size = 1167336, upload-time = "2026-02-16T10:14:12.39Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/a8/24e5dc6855f50a62936ceb004e6e9645e4219a8065f304145d7fb8a79d5d/pyarrow-23.0.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3fab8f82571844eb3c460f90a75583801d14ca0cc32b1acc8c361650e006fd56", size = 34307390, upload-time = "2026-02-16T10:08:08.654Z" }, + { url = "https://files.pythonhosted.org/packages/bc/8e/4be5617b4aaae0287f621ad31c6036e5f63118cfca0dc57d42121ff49b51/pyarrow-23.0.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:3f91c038b95f71ddfc865f11d5876c42f343b4495535bd262c7b321b0b94507c", size = 35853761, upload-time = "2026-02-16T10:08:17.811Z" }, + { url = "https://files.pythonhosted.org/packages/2e/08/3e56a18819462210432ae37d10f5c8eed3828be1d6c751b6e6a2e93c286a/pyarrow-23.0.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:d0744403adabef53c985a7f8a082b502a368510c40d184df349a0a8754533258", size = 44493116, upload-time = "2026-02-16T10:08:25.792Z" }, + { url = "https://files.pythonhosted.org/packages/f8/82/c40b68001dbec8a3faa4c08cd8c200798ac732d2854537c5449dc859f55a/pyarrow-23.0.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c33b5bf406284fd0bba436ed6f6c3ebe8e311722b441d89397c54f871c6863a2", size = 47564532, upload-time = "2026-02-16T10:08:34.27Z" }, + { url = "https://files.pythonhosted.org/packages/20/bc/73f611989116b6f53347581b02177f9f620efdf3cd3f405d0e83cdf53a83/pyarrow-23.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ddf743e82f69dcd6dbbcb63628895d7161e04e56794ef80550ac6f3315eeb1d5", size = 48183685, upload-time = "2026-02-16T10:08:42.889Z" }, + { url = "https://files.pythonhosted.org/packages/b0/cc/6c6b3ecdae2a8c3aced99956187e8302fc954cc2cca2a37cf2111dad16ce/pyarrow-23.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e052a211c5ac9848ae15d5ec875ed0943c0221e2fcfe69eee80b604b4e703222", size = 50605582, upload-time = "2026-02-16T10:08:51.641Z" }, + { url = "https://files.pythonhosted.org/packages/8d/94/d359e708672878d7638a04a0448edf7c707f9e5606cee11e15aaa5c7535a/pyarrow-23.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:5abde149bb3ce524782d838eb67ac095cd3fd6090eba051130589793f1a7f76d", size = 27521148, upload-time = "2026-02-16T10:08:58.077Z" }, +] + +[[package]] +name = "pyasn1" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5c/5f/6583902b6f79b399c9c40674ac384fd9cd77805f9e6205075f828ef11fb2/pyasn1-0.6.3.tar.gz", hash = "sha256:697a8ecd6d98891189184ca1fa05d1bb00e2f84b5977c481452050549c8a72cf", size = 148685, upload-time = "2026-03-17T01:06:53.382Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/a0/7d793dce3fa811fe047d6ae2431c672364b462850c6235ae306c0efd025f/pyasn1-0.6.3-py3-none-any.whl", hash = "sha256:a80184d120f0864a52a073acc6fc642847d0be408e7c7252f31390c0f4eadcde", size = 83997, upload-time = "2026-03-17T01:06:52.036Z" }, +] + +[[package]] +name = "pyasn1-modules" +version = "0.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e9/e6/78ebbb10a8c8e4b61a59249394a4a594c1a7af95593dc933a349c8d00964/pyasn1_modules-0.4.2.tar.gz", hash = "sha256:677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6", size = 307892, upload-time = "2025-03-28T02:41:22.17Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/8d/d529b5d697919ba8c11ad626e835d4039be708a35b0d22de83a269a6682c/pyasn1_modules-0.4.2-py3-none-any.whl", hash = "sha256:29253a9207ce32b64c3ac6600edc75368f98473906e8fd1043bd6b5b1de2c14a", size = 181259, upload-time = "2025-03-28T02:41:19.028Z" }, +] + +[[package]] +name = "pycparser" +version = "3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, +] + +[[package]] +name = "pydantic" +version = "1.10.26" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7b/da/fd89f987a376c807cd81ea0eff4589aade783bbb702637b4734ef2c743a2/pydantic-1.10.26.tar.gz", hash = "sha256:8c6aa39b494c5af092e690127c283d84f363ac36017106a9e66cb33a22ac412e", size = 357906, upload-time = "2025-12-18T15:47:46.557Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/08/2587a6d4314e7539eec84acd062cb7b037638edb57a0335d20e4c5b8878c/pydantic-1.10.26-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f7ae36fa0ecef8d39884120f212e16c06bb096a38f523421278e2f39c1784546", size = 2444588, upload-time = "2025-12-18T15:46:28.882Z" }, + { url = "https://files.pythonhosted.org/packages/47/e6/10df5f08c105bcbb4adbee7d1108ff4b347702b110fed058f6a03f1c6b73/pydantic-1.10.26-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d95a76cf503f0f72ed7812a91de948440b2bf564269975738a4751e4fadeb572", size = 2255972, upload-time = "2025-12-18T15:46:31.72Z" }, + { url = "https://files.pythonhosted.org/packages/ba/7d/fdb961e7adc2c31f394feba6f560ef2c74c446f0285e2c2eb87d2b7206c7/pydantic-1.10.26-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a943ce8e00ad708ed06a1d9df5b4fd28f5635a003b82a4908ece6f24c0b18464", size = 2857175, upload-time = "2025-12-18T15:46:34Z" }, + { url = "https://files.pythonhosted.org/packages/8f/6c/f21e27dda475d4c562bd01b5874284dd3180f336c1e669413b743ca8b278/pydantic-1.10.26-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:465ad8edb29b15c10b779b16431fe8e77c380098badf6db367b7a1d3e572cf53", size = 2947001, upload-time = "2025-12-18T15:46:35.922Z" }, + { url = "https://files.pythonhosted.org/packages/6d/f6/27ea206232cbb6ec24dc4e4e8888a9a734f96a1eaf13504be4b30ef26aa7/pydantic-1.10.26-cp310-cp310-win_amd64.whl", hash = "sha256:80e6be6272839c8a7641d26ad569ab77772809dd78f91d0068dc0fc97f071945", size = 2066217, upload-time = "2025-12-18T15:46:37.614Z" }, + { url = "https://files.pythonhosted.org/packages/1f/98/556e82f00b98486def0b8af85da95e69d2be7e367cf2431408e108bc3095/pydantic-1.10.26-py3-none-any.whl", hash = "sha256:c43ad70dc3ce7787543d563792426a16fd7895e14be4b194b5665e36459dd917", size = 166975, upload-time = "2025-12-18T15:47:44.927Z" }, +] + +[[package]] +name = "pygments" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/b2/bc9c9196916376152d655522fdcebac55e66de6603a76a02bca1b6414f6c/pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f", size = 4955991, upload-time = "2026-03-29T13:29:33.898Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" }, +] + +[[package]] +name = "pynndescent" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "llvmlite" }, + { name = "numba" }, + { name = "scikit-learn" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4a/fb/7f58c397fb31666756457ee2ac4c0289ef2daad57f4ae4be8dec12f80b03/pynndescent-0.6.0.tar.gz", hash = "sha256:7ffde0fb5b400741e055a9f7d377e3702e02250616834231f6c209e39aac24f5", size = 2992987, upload-time = "2026-01-08T21:29:58.943Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b2/e6/94145d714402fd5ade00b5661f2d0ab981219e07f7db9bfa16786cdb9c04/pynndescent-0.6.0-py3-none-any.whl", hash = "sha256:dc8c74844e4c7f5cbd1e0cd6909da86fdc789e6ff4997336e344779c3d5538ef", size = 73511, upload-time = "2026-01-08T21:29:57.306Z" }, +] + +[[package]] +name = "pyogrio" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "numpy" }, + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/49/d4/12f86b1ed09721363da4c09622464b604c851a9223fc0c6b393fb2012208/pyogrio-0.12.1.tar.gz", hash = "sha256:e548ab705bb3e5383693717de1e6c76da97f3762ab92522cb310f93128a75ff1", size = 303289, upload-time = "2025-11-28T19:04:53.341Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/04/e69f476c4cc279adc6d26194da4d3497f5d9efdd46777a6c0ad59c09233f/pyogrio-0.12.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:5c4735235ca0d8dcdb4ecd69bd73e66762d161bce913b10d4458a18137cc7062", size = 23672707, upload-time = "2025-11-28T19:02:54.87Z" }, + { url = "https://files.pythonhosted.org/packages/a3/9e/805d640f050fc4a064ee5ba3289457f47d7f3464b57140caa8ddac039a67/pyogrio-0.12.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:3249d06c2520857b622f3ff0f1b7b4849291ee1fb72f21587825f5fd0f24b787", size = 25247903, upload-time = "2025-11-28T19:02:57.756Z" }, + { url = "https://files.pythonhosted.org/packages/05/c3/65577611485bc3e53a466ffbcd2407f89e8bd7e1c4554e8a0d23a4b8a636/pyogrio-0.12.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f4011b63f9d6c278ee6605971ffabe30b0e8f5992ec2c6df8c70ecfa68a5d02b", size = 31279563, upload-time = "2025-11-28T19:03:00.344Z" }, + { url = "https://files.pythonhosted.org/packages/b1/a6/5c03dffaf02542e8bae6c785d3e302bf4b890cd2ab281336b3c4dc867f84/pyogrio-0.12.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:940857c45051e1e19608ebfe8338bcdf7dd005389057431a3c7b5bff5beb0a5f", size = 30831678, upload-time = "2025-11-28T19:03:03.234Z" }, + { url = "https://files.pythonhosted.org/packages/c8/aa/0e484c13cf14bbe46c366ad363ab2406242a0fba85a7561d42bbd34c35dd/pyogrio-0.12.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:0fd86bcd69126739325a543a489f312b5fd86db092d2dead682772ae4ee434f3", size = 32380362, upload-time = "2025-11-28T19:03:06.098Z" }, + { url = "https://files.pythonhosted.org/packages/7a/7c/cc515005780235d9ab14a29d33868bcaa1d5b423cee7995dda94735c41dd/pyogrio-0.12.1-cp310-cp310-win_amd64.whl", hash = "sha256:dcf9cca273ead32beba7c002dd3db8a304105f52dd66200d48fa1ef30d0676af", size = 22940628, upload-time = "2025-11-28T19:03:08.568Z" }, +] + +[[package]] +name = "pyparsing" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/91/9c6ee907786a473bf81c5f53cf703ba0957b23ab84c264080fb5a450416f/pyparsing-3.3.2.tar.gz", hash = "sha256:c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc", size = 6851574, upload-time = "2026-01-21T03:57:59.36Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl", hash = "sha256:850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d", size = 122781, upload-time = "2026-01-21T03:57:55.912Z" }, +] + +[[package]] +name = "pyproj" +version = "3.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/10/a8480ea27ea4bbe896c168808854d00f2a9b49f95c0319ddcbba693c8a90/pyproj-3.7.1.tar.gz", hash = "sha256:60d72facd7b6b79853f19744779abcd3f804c4e0d4fa8815469db20c9f640a47", size = 226339, upload-time = "2025-02-16T04:28:46.621Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/a3/c4cd4bba5b336075f145fe784fcaf4ef56ffbc979833303303e7a659dda2/pyproj-3.7.1-cp310-cp310-macosx_13_0_x86_64.whl", hash = "sha256:bf09dbeb333c34e9c546364e7df1ff40474f9fddf9e70657ecb0e4f670ff0b0e", size = 6262524, upload-time = "2025-02-16T04:27:19.725Z" }, + { url = "https://files.pythonhosted.org/packages/40/45/4fdf18f4cc1995f1992771d2a51cf186a9d7a8ec973c9693f8453850c707/pyproj-3.7.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:6575b2e53cc9e3e461ad6f0692a5564b96e7782c28631c7771c668770915e169", size = 4665102, upload-time = "2025-02-16T04:27:24.428Z" }, + { url = "https://files.pythonhosted.org/packages/0c/d2/360eb127380106cee83569954ae696b88a891c804d7a93abe3fbc15f5976/pyproj-3.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cb516ee35ed57789b46b96080edf4e503fdb62dbb2e3c6581e0d6c83fca014b", size = 9432667, upload-time = "2025-02-16T04:27:27.04Z" }, + { url = "https://files.pythonhosted.org/packages/76/a5/c6e11b9a99ce146741fb4d184d5c468446c6d6015b183cae82ac822a6cfa/pyproj-3.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e47c4e93b88d99dd118875ee3ca0171932444cdc0b52d493371b5d98d0f30ee", size = 9259185, upload-time = "2025-02-16T04:27:30.35Z" }, + { url = "https://files.pythonhosted.org/packages/41/56/a3c15c42145797a99363fa0fdb4e9805dccb8b4a76a6d7b2cdf36ebcc2a1/pyproj-3.7.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3e8d276caeae34fcbe4813855d0d97b9b825bab8d7a8b86d859c24a6213a5a0d", size = 10469103, upload-time = "2025-02-16T04:27:33.542Z" }, + { url = "https://files.pythonhosted.org/packages/ef/73/c9194c2802fefe2a4fd4230bdd5ab083e7604e93c64d0356fa49c363bad6/pyproj-3.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f173f851ee75e54acdaa053382b6825b400cb2085663a9bb073728a59c60aebb", size = 10401391, upload-time = "2025-02-16T04:27:36.051Z" }, + { url = "https://files.pythonhosted.org/packages/c5/1d/ce8bb5b9251b04d7c22d63619bb3db3d2397f79000a9ae05b3fd86a5837e/pyproj-3.7.1-cp310-cp310-win32.whl", hash = "sha256:f550281ed6e5ea88fcf04a7c6154e246d5714be495c50c9e8e6b12d3fb63e158", size = 5869997, upload-time = "2025-02-16T04:27:38.302Z" }, + { url = "https://files.pythonhosted.org/packages/09/6a/ca145467fd2e5b21e3d5b8c2b9645dcfb3b68f08b62417699a1f5689008e/pyproj-3.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:3537668992a709a2e7f068069192138618c00d0ba113572fdd5ee5ffde8222f3", size = 6278581, upload-time = "2025-02-16T04:27:41.051Z" }, +] + +[[package]] +name = "pyreadline3" +version = "3.5.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/49/4cea918a08f02817aabae639e3d0ac046fef9f9180518a3ad394e22da148/pyreadline3-3.5.4.tar.gz", hash = "sha256:8d57d53039a1c75adba8e50dd3d992b28143480816187ea5efbd5c78e6c885b7", size = 99839, upload-time = "2024-09-19T02:40:10.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/dc/491b7661614ab97483abf2056be1deee4dc2490ecbf7bff9ab5cdbac86e1/pyreadline3-3.5.4-py3-none-any.whl", hash = "sha256:eaf8e6cc3c49bcccf145fc6067ba8643d1df34d604a1ec0eccbf7a18e6d3fae6", size = 83178, upload-time = "2024-09-19T02:40:08.598Z" }, +] + +[[package]] +name = "pytest" +version = "9.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "exceptiongroup" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, + { name = "tomli" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/0d/549bd94f1a0a402dc8cf64563a117c0f3765662e2e668477624baeec44d5/pytest-9.0.3.tar.gz", hash = "sha256:b86ada508af81d19edeb213c681b1d48246c1a91d304c6c81a427674c17eb91c", size = 1572165, upload-time = "2026-04-07T17:16:18.027Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/24/a372aaf5c9b7208e7112038812994107bc65a84cd00e0354a88c2c77a617/pytest-9.0.3-py3-none-any.whl", hash = "sha256:2c5efc453d45394fdd706ade797c0a81091eccd1d6e4bccfcd476e2b8e0ab5d9", size = 375249, upload-time = "2026-04-07T17:16:16.13Z" }, +] + +[[package]] +name = "pytest-cov" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coverage", extra = ["toml"] }, + { name = "pluggy" }, + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/51/a849f96e117386044471c8ec2bd6cfebacda285da9525c9106aeb28da671/pytest_cov-7.1.0.tar.gz", hash = "sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2", size = 55592, upload-time = "2026-03-21T20:11:16.284Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/7a/d968e294073affff457b041c2be9868a40c1c71f4a35fcc1e45e5493067b/pytest_cov-7.1.0-py3-none-any.whl", hash = "sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678", size = 22876, upload-time = "2026-03-21T20:11:14.438Z" }, +] + +[[package]] +name = "pytest-mock" +version = "3.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/68/14/eb014d26be205d38ad5ad20d9a80f7d201472e08167f0bb4361e251084a9/pytest_mock-3.15.1.tar.gz", hash = "sha256:1849a238f6f396da19762269de72cb1814ab44416fa73a8686deac10b0d87a0f", size = 34036, upload-time = "2025-09-16T16:37:27.081Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/cc/06253936f4a7fa2e0f48dfe6d851d9c56df896a9ab09ac019d70b760619c/pytest_mock-3.15.1-py3-none-any.whl", hash = "sha256:0a25e2eb88fe5168d535041d09a4529a188176ae608a6d249ee65abc0949630d", size = 10095, upload-time = "2025-09-16T16:37:25.734Z" }, +] + +[[package]] +name = "pytest-xdist" +version = "3.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "execnet" }, + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/78/b4/439b179d1ff526791eb921115fca8e44e596a13efeda518b9d845a619450/pytest_xdist-3.8.0.tar.gz", hash = "sha256:7e578125ec9bc6050861aa93f2d59f1d8d085595d6551c2c90b6f4fad8d3a9f1", size = 88069, upload-time = "2025-07-01T13:30:59.346Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/31/d4e37e9e550c2b92a9cbc2e4d0b7420a27224968580b5a447f420847c975/pytest_xdist-3.8.0-py3-none-any.whl", hash = "sha256:202ca578cfeb7370784a8c33d6d05bc6e13b4f25b5053c30a152269fd10f0b88", size = 46396, upload-time = "2025-07-01T13:30:56.632Z" }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, +] + +[[package]] +name = "python-json-logger" +version = "4.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/ff/3cc9165fd44106973cd7ac9facb674a65ed853494592541d339bdc9a30eb/python_json_logger-4.1.0.tar.gz", hash = "sha256:b396b9e3ed782b09ff9d6e4f1683d46c83ad0d35d2e407c09a9ebbf038f88195", size = 17573, upload-time = "2026-03-29T04:39:56.805Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/be/0631a861af4d1c875f096c07d34e9a63639560a717130e7a87cbc82b7e3f/python_json_logger-4.1.0-py3-none-any.whl", hash = "sha256:132994765cf75bf44554be9aa49b06ef2345d23661a96720262716438141b6b2", size = 15021, upload-time = "2026-03-29T04:39:55.266Z" }, +] + +[[package]] +name = "pytorch-lightning" +version = "2.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fsspec", extra = ["http"] }, + { name = "lightning-utilities" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "torch" }, + { name = "torchmetrics" }, + { name = "tqdm" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8b/ac/ebd5f6f58691cbd4f73836e43e1727f3814311b960c41f88e259606ca2b2/pytorch_lightning-2.6.1.tar.gz", hash = "sha256:ba08f8901cf226fcca473046ad9346f414e99117762dc869c76e650d5b3d7bdc", size = 665563, upload-time = "2026-01-30T14:59:11.636Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/93/c8c361bf0a2fe50f828f32def460e8b8a14b93955d3fd302b1a9b63b19e4/pytorch_lightning-2.6.1-py3-none-any.whl", hash = "sha256:1f8118567ec829e3055f16cf1aa320883a86a47c836951bfd9dcfa34ec7ffd59", size = 857273, upload-time = "2026-01-30T14:59:10.141Z" }, +] + +[[package]] +name = "pytz" +version = "2026.1.post1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/56/db/b8721d71d945e6a8ac63c0fc900b2067181dbb50805958d4d4661cf7d277/pytz-2026.1.post1.tar.gz", hash = "sha256:3378dde6a0c3d26719182142c56e60c7f9af7e968076f31aae569d72a0358ee1", size = 321088, upload-time = "2026-03-03T07:47:50.683Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/99/781fe0c827be2742bcc775efefccb3b048a3a9c6ce9aec0cbf4a101677e5/pytz-2026.1.post1-py2.py3-none-any.whl", hash = "sha256:f2fd16142fda348286a75e1a524be810bb05d444e5a081f37f7affc635035f7a", size = 510489, upload-time = "2026-03-03T07:47:49.167Z" }, +] + +[[package]] +name = "pywinpty" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/54/37c7370ba91f579235049dc26cd2c5e657d2a943e01820844ffc81f32176/pywinpty-3.0.3.tar.gz", hash = "sha256:523441dc34d231fb361b4b00f8c99d3f16de02f5005fd544a0183112bcc22412", size = 31309, upload-time = "2026-02-04T21:51:09.524Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/28/a652709bd76ca7533cd1c443b03add9f5051fdf71bc6bdb8801dddd4e7a3/pywinpty-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:ff05f12d775b142b11c6fe085129bdd759b61cf7d41da6c745e78e3a1ef5bf40", size = 2114320, upload-time = "2026-02-04T21:53:50.972Z" }, + { url = "https://files.pythonhosted.org/packages/b2/13/a0181cc5c2d5635d3dbc3802b97bc8e3ad4fa7502ccef576651a5e08e54c/pywinpty-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:340ccacb4d74278a631923794ccd758471cfc8eeeeee4610b280420a17ad1e82", size = 235670, upload-time = "2026-02-04T21:50:20.324Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/a0/39350dd17dd6d6c6507025c0e53aef67a9293a6d37d3511f23ea510d5800/pyyaml-6.0.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:214ed4befebe12df36bcc8bc2b64b396ca31be9304b8f59e25c11cf94a4c033b", size = 184227, upload-time = "2025-09-25T21:31:46.04Z" }, + { url = "https://files.pythonhosted.org/packages/05/14/52d505b5c59ce73244f59c7a50ecf47093ce4765f116cdb98286a71eeca2/pyyaml-6.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02ea2dfa234451bbb8772601d7b8e426c2bfa197136796224e50e35a78777956", size = 174019, upload-time = "2025-09-25T21:31:47.706Z" }, + { url = "https://files.pythonhosted.org/packages/43/f7/0e6a5ae5599c838c696adb4e6330a59f463265bfa1e116cfd1fbb0abaaae/pyyaml-6.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b30236e45cf30d2b8e7b3e85881719e98507abed1011bf463a8fa23e9c3e98a8", size = 740646, upload-time = "2025-09-25T21:31:49.21Z" }, + { url = "https://files.pythonhosted.org/packages/2f/3a/61b9db1d28f00f8fd0ae760459a5c4bf1b941baf714e207b6eb0657d2578/pyyaml-6.0.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:66291b10affd76d76f54fad28e22e51719ef9ba22b29e1d7d03d6777a9174198", size = 840793, upload-time = "2025-09-25T21:31:50.735Z" }, + { url = "https://files.pythonhosted.org/packages/7a/1e/7acc4f0e74c4b3d9531e24739e0ab832a5edf40e64fbae1a9c01941cabd7/pyyaml-6.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9c7708761fccb9397fe64bbc0395abcae8c4bf7b0eac081e12b809bf47700d0b", size = 770293, upload-time = "2025-09-25T21:31:51.828Z" }, + { url = "https://files.pythonhosted.org/packages/8b/ef/abd085f06853af0cd59fa5f913d61a8eab65d7639ff2a658d18a25d6a89d/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:418cf3f2111bc80e0933b2cd8cd04f286338bb88bdc7bc8e6dd775ebde60b5e0", size = 732872, upload-time = "2025-09-25T21:31:53.282Z" }, + { url = "https://files.pythonhosted.org/packages/1f/15/2bc9c8faf6450a8b3c9fc5448ed869c599c0a74ba2669772b1f3a0040180/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e0b74767e5f8c593e8c9b5912019159ed0533c70051e9cce3e8b6aa699fcd69", size = 758828, upload-time = "2025-09-25T21:31:54.807Z" }, + { url = "https://files.pythonhosted.org/packages/a3/00/531e92e88c00f4333ce359e50c19b8d1de9fe8d581b1534e35ccfbc5f393/pyyaml-6.0.3-cp310-cp310-win32.whl", hash = "sha256:28c8d926f98f432f88adc23edf2e6d4921ac26fb084b028c733d01868d19007e", size = 142415, upload-time = "2025-09-25T21:31:55.885Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fa/926c003379b19fca39dd4634818b00dec6c62d87faf628d1394e137354d4/pyyaml-6.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:bdb2c67c6c1390b63c6ff89f210c8fd09d9a1217a465701eac7316313c915e4c", size = 158561, upload-time = "2025-09-25T21:31:57.406Z" }, +] + +[[package]] +name = "pyzmq" +version = "27.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "implementation_name == 'pypy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/0b/3c9baedbdf613ecaa7aa07027780b8867f57b6293b6ee50de316c9f3222b/pyzmq-27.1.0.tar.gz", hash = "sha256:ac0765e3d44455adb6ddbf4417dcce460fc40a05978c08efdf2948072f6db540", size = 281750, upload-time = "2025-09-08T23:10:18.157Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/b9/52aa9ec2867528b54f1e60846728d8b4d84726630874fee3a91e66c7df81/pyzmq-27.1.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:508e23ec9bc44c0005c4946ea013d9317ae00ac67778bd47519fdf5a0e930ff4", size = 1329850, upload-time = "2025-09-08T23:07:26.274Z" }, + { url = "https://files.pythonhosted.org/packages/99/64/5653e7b7425b169f994835a2b2abf9486264401fdef18df91ddae47ce2cc/pyzmq-27.1.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:507b6f430bdcf0ee48c0d30e734ea89ce5567fd7b8a0f0044a369c176aa44556", size = 906380, upload-time = "2025-09-08T23:07:29.78Z" }, + { url = "https://files.pythonhosted.org/packages/73/78/7d713284dbe022f6440e391bd1f3c48d9185673878034cfb3939cdf333b2/pyzmq-27.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bf7b38f9fd7b81cb6d9391b2946382c8237fd814075c6aa9c3b746d53076023b", size = 666421, upload-time = "2025-09-08T23:07:31.263Z" }, + { url = "https://files.pythonhosted.org/packages/30/76/8f099f9d6482450428b17c4d6b241281af7ce6a9de8149ca8c1c649f6792/pyzmq-27.1.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:03ff0b279b40d687691a6217c12242ee71f0fba28bf8626ff50e3ef0f4410e1e", size = 854149, upload-time = "2025-09-08T23:07:33.17Z" }, + { url = "https://files.pythonhosted.org/packages/59/f0/37fbfff06c68016019043897e4c969ceab18bde46cd2aca89821fcf4fb2e/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:677e744fee605753eac48198b15a2124016c009a11056f93807000ab11ce6526", size = 1655070, upload-time = "2025-09-08T23:07:35.205Z" }, + { url = "https://files.pythonhosted.org/packages/47/14/7254be73f7a8edc3587609554fcaa7bfd30649bf89cd260e4487ca70fdaa/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd2fec2b13137416a1c5648b7009499bcc8fea78154cd888855fa32514f3dad1", size = 2033441, upload-time = "2025-09-08T23:07:37.432Z" }, + { url = "https://files.pythonhosted.org/packages/22/dc/49f2be26c6f86f347e796a4d99b19167fc94503f0af3fd010ad262158822/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:08e90bb4b57603b84eab1d0ca05b3bbb10f60c1839dc471fc1c9e1507bef3386", size = 1891529, upload-time = "2025-09-08T23:07:39.047Z" }, + { url = "https://files.pythonhosted.org/packages/a3/3e/154fb963ae25be70c0064ce97776c937ecc7d8b0259f22858154a9999769/pyzmq-27.1.0-cp310-cp310-win32.whl", hash = "sha256:a5b42d7a0658b515319148875fcb782bbf118dd41c671b62dae33666c2213bda", size = 567276, upload-time = "2025-09-08T23:07:40.695Z" }, + { url = "https://files.pythonhosted.org/packages/62/b2/f4ab56c8c595abcb26b2be5fd9fa9e6899c1e5ad54964e93ae8bb35482be/pyzmq-27.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:c0bb87227430ee3aefcc0ade2088100e528d5d3298a0a715a64f3d04c60ba02f", size = 632208, upload-time = "2025-09-08T23:07:42.298Z" }, + { url = "https://files.pythonhosted.org/packages/3b/e3/be2cc7ab8332bdac0522fdb64c17b1b6241a795bee02e0196636ec5beb79/pyzmq-27.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:9a916f76c2ab8d045b19f2286851a38e9ac94ea91faf65bd64735924522a8b32", size = 559766, upload-time = "2025-09-08T23:07:43.869Z" }, + { url = "https://files.pythonhosted.org/packages/92/e7/038aab64a946d535901103da16b953c8c9cc9c961dadcbf3609ed6428d23/pyzmq-27.1.0-cp312-abi3-macosx_10_15_universal2.whl", hash = "sha256:452631b640340c928fa343801b0d07eb0c3789a5ffa843f6e1a9cee0ba4eb4fc", size = 1306279, upload-time = "2025-09-08T23:08:03.807Z" }, + { url = "https://files.pythonhosted.org/packages/e8/5e/c3c49fdd0f535ef45eefcc16934648e9e59dace4a37ee88fc53f6cd8e641/pyzmq-27.1.0-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1c179799b118e554b66da67d88ed66cd37a169f1f23b5d9f0a231b4e8d44a113", size = 895645, upload-time = "2025-09-08T23:08:05.301Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e5/b0b2504cb4e903a74dcf1ebae157f9e20ebb6ea76095f6cfffea28c42ecd/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3837439b7f99e60312f0c926a6ad437b067356dc2bc2ec96eb395fd0fe804233", size = 652574, upload-time = "2025-09-08T23:08:06.828Z" }, + { url = "https://files.pythonhosted.org/packages/f8/9b/c108cdb55560eaf253f0cbdb61b29971e9fb34d9c3499b0e96e4e60ed8a5/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43ad9a73e3da1fab5b0e7e13402f0b2fb934ae1c876c51d0afff0e7c052eca31", size = 840995, upload-time = "2025-09-08T23:08:08.396Z" }, + { url = "https://files.pythonhosted.org/packages/c2/bb/b79798ca177b9eb0825b4c9998c6af8cd2a7f15a6a1a4272c1d1a21d382f/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:0de3028d69d4cdc475bfe47a6128eb38d8bc0e8f4d69646adfbcd840facbac28", size = 1642070, upload-time = "2025-09-08T23:08:09.989Z" }, + { url = "https://files.pythonhosted.org/packages/9c/80/2df2e7977c4ede24c79ae39dcef3899bfc5f34d1ca7a5b24f182c9b7a9ca/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_i686.whl", hash = "sha256:cf44a7763aea9298c0aa7dbf859f87ed7012de8bda0f3977b6fb1d96745df856", size = 2021121, upload-time = "2025-09-08T23:08:11.907Z" }, + { url = "https://files.pythonhosted.org/packages/46/bd/2d45ad24f5f5ae7e8d01525eb76786fa7557136555cac7d929880519e33a/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:f30f395a9e6fbca195400ce833c731e7b64c3919aa481af4d88c3759e0cb7496", size = 1878550, upload-time = "2025-09-08T23:08:13.513Z" }, + { url = "https://files.pythonhosted.org/packages/e6/2f/104c0a3c778d7c2ab8190e9db4f62f0b6957b53c9d87db77c284b69f33ea/pyzmq-27.1.0-cp312-abi3-win32.whl", hash = "sha256:250e5436a4ba13885494412b3da5d518cd0d3a278a1ae640e113c073a5f88edd", size = 559184, upload-time = "2025-09-08T23:08:15.163Z" }, + { url = "https://files.pythonhosted.org/packages/fc/7f/a21b20d577e4100c6a41795842028235998a643b1ad406a6d4163ea8f53e/pyzmq-27.1.0-cp312-abi3-win_amd64.whl", hash = "sha256:9ce490cf1d2ca2ad84733aa1d69ce6855372cb5ce9223802450c9b2a7cba0ccf", size = 619480, upload-time = "2025-09-08T23:08:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/78/c2/c012beae5f76b72f007a9e91ee9401cb88c51d0f83c6257a03e785c81cc2/pyzmq-27.1.0-cp312-abi3-win_arm64.whl", hash = "sha256:75a2f36223f0d535a0c919e23615fc85a1e23b71f40c7eb43d7b1dedb4d8f15f", size = 552993, upload-time = "2025-09-08T23:08:18.926Z" }, + { url = "https://files.pythonhosted.org/packages/f3/81/a65e71c1552f74dec9dff91d95bafb6e0d33338a8dfefbc88aa562a20c92/pyzmq-27.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:c17e03cbc9312bee223864f1a2b13a99522e0dc9f7c5df0177cd45210ac286e6", size = 836266, upload-time = "2025-09-08T23:09:40.048Z" }, + { url = "https://files.pythonhosted.org/packages/58/ed/0202ca350f4f2b69faa95c6d931e3c05c3a397c184cacb84cb4f8f42f287/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:f328d01128373cb6763823b2b4e7f73bdf767834268c565151eacb3b7a392f90", size = 800206, upload-time = "2025-09-08T23:09:41.902Z" }, + { url = "https://files.pythonhosted.org/packages/47/42/1ff831fa87fe8f0a840ddb399054ca0009605d820e2b44ea43114f5459f4/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9c1790386614232e1b3a40a958454bdd42c6d1811837b15ddbb052a032a43f62", size = 567747, upload-time = "2025-09-08T23:09:43.741Z" }, + { url = "https://files.pythonhosted.org/packages/d1/db/5c4d6807434751e3f21231bee98109aa57b9b9b55e058e450d0aef59b70f/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:448f9cb54eb0cee4732b46584f2710c8bc178b0e5371d9e4fc8125201e413a74", size = 747371, upload-time = "2025-09-08T23:09:45.575Z" }, + { url = "https://files.pythonhosted.org/packages/26/af/78ce193dbf03567eb8c0dc30e3df2b9e56f12a670bf7eb20f9fb532c7e8a/pyzmq-27.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:05b12f2d32112bf8c95ef2e74ec4f1d4beb01f8b5e703b38537f8849f92cb9ba", size = 544862, upload-time = "2025-09-08T23:09:47.448Z" }, +] + +[[package]] +name = "rasterio" +version = "1.4.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "affine" }, + { name = "attrs" }, + { name = "certifi" }, + { name = "click" }, + { name = "click-plugins" }, + { name = "cligj" }, + { name = "numpy" }, + { name = "pyparsing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/fa/fce8dc9f09e5bc6520b6fc1b4ecfa510af9ca06eb42ad7bdff9c9b8989d0/rasterio-1.4.4.tar.gz", hash = "sha256:c95424e2c7f009b8f7df1095d645c52895cd332c0c2e1b4c2e073ea28b930320", size = 445004, upload-time = "2025-12-12T18:01:08.971Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/24/eedb9dfed1706c696b4f43ba9b85e830ce332f4f57ffcb7b6a4c4e66ade9/rasterio-1.4.4-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:35401e84d4d0b239bd62b33d4ee68d7bb13b47c3b41078f4aad7ad7964e61c73", size = 21127567, upload-time = "2025-12-12T17:58:42.664Z" }, + { url = "https://files.pythonhosted.org/packages/67/5f/482a24bf75bcd48236cd223d037f22abc6c08da6961e390e6a35249a9f58/rasterio-1.4.4-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:1f17fc9608b6b6666894a04e0118d3329e831a6347bc3650584d247a9d476fdd", size = 25735929, upload-time = "2025-12-12T17:58:46.503Z" }, + { url = "https://files.pythonhosted.org/packages/b0/da/b988ffb1bb37cc4cb8a028447ab654a16dbac0b339d977fb9c8adc5bd995/rasterio-1.4.4-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:1f0edb8cb30ff8f5be341583f69c115b7c36ad52bbbe7582345d32af115bc6b3", size = 34040467, upload-time = "2025-12-12T17:58:50.109Z" }, + { url = "https://files.pythonhosted.org/packages/e0/0a/2eace22e990203d47a8fed4b174b87be50281bf3f5b2509cf3700036cbcc/rasterio-1.4.4-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:5197da0e3dd09907bdb343717a49e8fb5229ffdbff0e583b874959ec41fa9558", size = 35339947, upload-time = "2025-12-12T17:58:53.269Z" }, + { url = "https://files.pythonhosted.org/packages/40/e5/16acecbbaedd820c5d71f99f3bab73c00455078a414b511f6854364d3e1e/rasterio-1.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:15109134c7b4770e6aeb8d45dc52c2603824805ba734323268a44f5a81756a7a", size = 25708679, upload-time = "2025-12-12T17:58:56.661Z" }, +] + +[[package]] +name = "rdkit" +version = "2024.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "pillow" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/54/acd8657fbf77af4ed1f773e6eb14b75b3840e8e9a665439101c0491fa9ed/rdkit-2024.3.5-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:1cb7cdb29956649d4c875790b94142868c08c0735dee4d90b2d70dfd378e9d2e", size = 29505991, upload-time = "2024-08-07T12:34:25.607Z" }, + { url = "https://files.pythonhosted.org/packages/08/79/ac7e30471b4cbe465aa9b9bcb5a64018df55464e37777f696682199bc65b/rdkit-2024.3.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e5b0dfb28aa0949152ff816fba0a2f6267154f5c25159a9ec84c27cf18f72322", size = 27453273, upload-time = "2024-08-07T12:34:31.391Z" }, + { url = "https://files.pythonhosted.org/packages/b5/52/71b8946c1cf3d1bea6a09d7e2ea7acb783d34886af4666cb10bd791cdb4d/rdkit-2024.3.5-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:7d5576bad6672959d0c1939e8d7e2fcd8656f8daf9788ce58e5c313db719b5ec", size = 32195237, upload-time = "2024-08-07T12:34:37.116Z" }, + { url = "https://files.pythonhosted.org/packages/f6/39/e625b5c132f174a5c1446b1373235bfc290224baedfed28b4d515fbdfdb5/rdkit-2024.3.5-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:455d510beff8806e62e48b977d7acbfbc351474fa132124738a07223440c1b9a", size = 33133359, upload-time = "2024-08-07T12:34:42.266Z" }, + { url = "https://files.pythonhosted.org/packages/37/ea/5d988d278405cfa44e4ccd32a252b880e9ce36e25707d5715e7e02d7b4de/rdkit-2024.3.5-cp310-cp310-win_amd64.whl", hash = "sha256:01fd323f5902a720925293c0ce08a33e630422374cf263d04ef173c106c63c36", size = 21730123, upload-time = "2024-08-07T12:34:46.979Z" }, +] + +[[package]] +name = "referencing" +version = "0.37.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "rpds-py" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" }, +] + +[[package]] +name = "requests" +version = "2.33.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5f/a4/98b9c7c6428a668bf7e42ebb7c79d576a1c3c1e3ae2d47e674b468388871/requests-2.33.1.tar.gz", hash = "sha256:18817f8c57c6263968bc123d237e3b8b08ac046f5456bd1e307ee8f4250d3517", size = 134120, upload-time = "2026-03-30T16:09:15.531Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/8e/7540e8a2036f79a125c1d2ebadf69ed7901608859186c856fa0388ef4197/requests-2.33.1-py3-none-any.whl", hash = "sha256:4e6d1ef462f3626a1f0a0a9c42dd93c63bad33f9f1c1937509b8c5c8718ab56a", size = 64947, upload-time = "2026-03-30T16:09:13.83Z" }, +] + +[[package]] +name = "requests-oauthlib" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "oauthlib" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650, upload-time = "2024-03-22T20:32:29.939Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179, upload-time = "2024-03-22T20:32:28.055Z" }, +] + +[[package]] +name = "rfc3339-validator" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/ea/a9387748e2d111c3c2b275ba970b735e04e15cdb1eb30693b6b5708c4dbd/rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b", size = 5513, upload-time = "2021-05-12T16:37:54.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa", size = 3490, upload-time = "2021-05-12T16:37:52.536Z" }, +] + +[[package]] +name = "rfc3986-validator" +version = "0.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/88/f270de456dd7d11dcc808abfa291ecdd3f45ff44e3b549ffa01b126464d0/rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055", size = 6760, upload-time = "2019-10-28T16:00:19.144Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9", size = 4242, upload-time = "2019-10-28T16:00:13.976Z" }, +] + +[[package]] +name = "rfc3987-syntax" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "lark" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2c/06/37c1a5557acf449e8e406a830a05bf885ac47d33270aec454ef78675008d/rfc3987_syntax-1.1.0.tar.gz", hash = "sha256:717a62cbf33cffdd16dfa3a497d81ce48a660ea691b1ddd7be710c22f00b4a0d", size = 14239, upload-time = "2025-07-18T01:05:05.015Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/71/44ce230e1b7fadd372515a97e32a83011f906ddded8d03e3c6aafbdedbb7/rfc3987_syntax-1.1.0-py3-none-any.whl", hash = "sha256:6c3d97604e4c5ce9f714898e05401a0445a641cfa276432b0a648c80856f6a3f", size = 8046, upload-time = "2025-07-18T01:05:03.843Z" }, +] + +[[package]] +name = "rich" +version = "15.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" }, +] + +[[package]] +name = "rpds-py" +version = "0.30.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/06/0c/0c411a0ec64ccb6d104dcabe0e713e05e153a9a2c3c2bd2b32ce412166fe/rpds_py-0.30.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:679ae98e00c0e8d68a7fda324e16b90fd5260945b45d3b824c892cec9eea3288", size = 370490, upload-time = "2025-11-30T20:21:33.256Z" }, + { url = "https://files.pythonhosted.org/packages/19/6a/4ba3d0fb7297ebae71171822554abe48d7cab29c28b8f9f2c04b79988c05/rpds_py-0.30.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4cc2206b76b4f576934f0ed374b10d7ca5f457858b157ca52064bdfc26b9fc00", size = 359751, upload-time = "2025-11-30T20:21:34.591Z" }, + { url = "https://files.pythonhosted.org/packages/cd/7c/e4933565ef7f7a0818985d87c15d9d273f1a649afa6a52ea35ad011195ea/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:389a2d49eded1896c3d48b0136ead37c48e221b391c052fba3f4055c367f60a6", size = 389696, upload-time = "2025-11-30T20:21:36.122Z" }, + { url = "https://files.pythonhosted.org/packages/5e/01/6271a2511ad0815f00f7ed4390cf2567bec1d4b1da39e2c27a41e6e3b4de/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:32c8528634e1bf7121f3de08fa85b138f4e0dc47657866630611b03967f041d7", size = 403136, upload-time = "2025-11-30T20:21:37.728Z" }, + { url = "https://files.pythonhosted.org/packages/55/64/c857eb7cd7541e9b4eee9d49c196e833128a55b89a9850a9c9ac33ccf897/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f207f69853edd6f6700b86efb84999651baf3789e78a466431df1331608e5324", size = 524699, upload-time = "2025-11-30T20:21:38.92Z" }, + { url = "https://files.pythonhosted.org/packages/9c/ed/94816543404078af9ab26159c44f9e98e20fe47e2126d5d32c9d9948d10a/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:67b02ec25ba7a9e8fa74c63b6ca44cf5707f2fbfadae3ee8e7494297d56aa9df", size = 412022, upload-time = "2025-11-30T20:21:40.407Z" }, + { url = "https://files.pythonhosted.org/packages/61/b5/707f6cf0066a6412aacc11d17920ea2e19e5b2f04081c64526eb35b5c6e7/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0e95f6819a19965ff420f65578bacb0b00f251fefe2c8b23347c37174271f3", size = 390522, upload-time = "2025-11-30T20:21:42.17Z" }, + { url = "https://files.pythonhosted.org/packages/13/4e/57a85fda37a229ff4226f8cbcf09f2a455d1ed20e802ce5b2b4a7f5ed053/rpds_py-0.30.0-cp310-cp310-manylinux_2_31_riscv64.whl", hash = "sha256:a452763cc5198f2f98898eb98f7569649fe5da666c2dc6b5ddb10fde5a574221", size = 404579, upload-time = "2025-11-30T20:21:43.769Z" }, + { url = "https://files.pythonhosted.org/packages/f9/da/c9339293513ec680a721e0e16bf2bac3db6e5d7e922488de471308349bba/rpds_py-0.30.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e0b65193a413ccc930671c55153a03ee57cecb49e6227204b04fae512eb657a7", size = 421305, upload-time = "2025-11-30T20:21:44.994Z" }, + { url = "https://files.pythonhosted.org/packages/f9/be/522cb84751114f4ad9d822ff5a1aa3c98006341895d5f084779b99596e5c/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:858738e9c32147f78b3ac24dc0edb6610000e56dc0f700fd5f651d0a0f0eb9ff", size = 572503, upload-time = "2025-11-30T20:21:46.91Z" }, + { url = "https://files.pythonhosted.org/packages/a2/9b/de879f7e7ceddc973ea6e4629e9b380213a6938a249e94b0cdbcc325bb66/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:da279aa314f00acbb803da1e76fa18666778e8a8f83484fba94526da5de2cba7", size = 598322, upload-time = "2025-11-30T20:21:48.709Z" }, + { url = "https://files.pythonhosted.org/packages/48/ac/f01fc22efec3f37d8a914fc1b2fb9bcafd56a299edbe96406f3053edea5a/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7c64d38fb49b6cdeda16ab49e35fe0da2e1e9b34bc38bd78386530f218b37139", size = 560792, upload-time = "2025-11-30T20:21:50.024Z" }, + { url = "https://files.pythonhosted.org/packages/e2/da/4e2b19d0f131f35b6146425f846563d0ce036763e38913d917187307a671/rpds_py-0.30.0-cp310-cp310-win32.whl", hash = "sha256:6de2a32a1665b93233cde140ff8b3467bdb9e2af2b91079f0333a0974d12d464", size = 221901, upload-time = "2025-11-30T20:21:51.32Z" }, + { url = "https://files.pythonhosted.org/packages/96/cb/156d7a5cf4f78a7cc571465d8aec7a3c447c94f6749c5123f08438bcf7bc/rpds_py-0.30.0-cp310-cp310-win_amd64.whl", hash = "sha256:1726859cd0de969f88dc8673bdd954185b9104e05806be64bcd87badbe313169", size = 235823, upload-time = "2025-11-30T20:21:52.505Z" }, +] + +[[package]] +name = "ruff" +version = "0.15.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/8d/192f3d7103816158dfd5ea50d098ef2aec19194e6cbccd4b3485bdb2eb2d/ruff-0.15.11.tar.gz", hash = "sha256:f092b21708bf0e7437ce9ada249dfe688ff9a0954fc94abab05dcea7dcd29c33", size = 4637264, upload-time = "2026-04-16T18:46:26.58Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/1e/6aca3427f751295ab011828e15e9bf452200ac74484f1db4be0197b8170b/ruff-0.15.11-py3-none-linux_armv6l.whl", hash = "sha256:e927cfff503135c558eb581a0c9792264aae9507904eb27809cdcff2f2c847b7", size = 10607943, upload-time = "2026-04-16T18:46:05.967Z" }, + { url = "https://files.pythonhosted.org/packages/e7/26/1341c262e74f36d4e84f3d6f4df0ac68cd53331a66bfc5080daa17c84c0b/ruff-0.15.11-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:7a1b5b2938d8f890b76084d4fa843604d787a912541eae85fd7e233398bbb73e", size = 10988592, upload-time = "2026-04-16T18:46:00.742Z" }, + { url = "https://files.pythonhosted.org/packages/03/71/850b1d6ffa9564fbb6740429bad53df1094082fe515c8c1e74b6d8d05f18/ruff-0.15.11-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d4176f3d194afbdaee6e41b9ccb1a2c287dba8700047df474abfbe773825d1cb", size = 10338501, upload-time = "2026-04-16T18:46:03.723Z" }, + { url = "https://files.pythonhosted.org/packages/f2/11/cc1284d3e298c45a817a6aadb6c3e1d70b45c9b36d8d9cce3387b495a03a/ruff-0.15.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b17c886fb88203ced3afe7f14e8d5ae96e9d2f4ccc0ee66aa19f2c2675a27e4", size = 10670693, upload-time = "2026-04-16T18:46:41.941Z" }, + { url = "https://files.pythonhosted.org/packages/ce/9e/f8288b034ab72b371513c13f9a41d9ba3effac54e24bfb467b007daee2ca/ruff-0.15.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:49fafa220220afe7758a487b048de4c8f9f767f37dfefad46b9dd06759d003eb", size = 10416177, upload-time = "2026-04-16T18:46:21.717Z" }, + { url = "https://files.pythonhosted.org/packages/85/71/504d79abfd3d92532ba6bbe3d1c19fada03e494332a59e37c7c2dabae427/ruff-0.15.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2ab8427e74a00d93b8bda1307b1e60970d40f304af38bccb218e056c220120d", size = 11221886, upload-time = "2026-04-16T18:46:15.086Z" }, + { url = "https://files.pythonhosted.org/packages/43/5a/947e6ab7a5ad603d65b474be15a4cbc6d29832db5d762cd142e4e3a74164/ruff-0.15.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:195072c0c8e1fc8f940652073df082e37a5d9cb43b4ab1e4d0566ab8977a13b7", size = 12075183, upload-time = "2026-04-16T18:46:07.944Z" }, + { url = "https://files.pythonhosted.org/packages/9f/a1/0b7bb6268775fdd3a0818aee8efd8f5b4e231d24dd4d528ced2534023182/ruff-0.15.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a3a0996d486af3920dec930a2e7daed4847dfc12649b537a9335585ada163e9e", size = 11516575, upload-time = "2026-04-16T18:46:31.687Z" }, + { url = "https://files.pythonhosted.org/packages/30/c3/bb5168fc4d233cc06e95f482770d0f3c87945a0cd9f614b90ea8dc2f2833/ruff-0.15.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bef2cb556d509259f1fe440bb9cd33c756222cf0a7afe90d15edf0866702431", size = 11306537, upload-time = "2026-04-16T18:46:36.988Z" }, + { url = "https://files.pythonhosted.org/packages/e4/92/4cfae6441f3967317946f3b788136eecf093729b94d6561f963ed810c82e/ruff-0.15.11-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:030d921a836d7d4a12cf6e8d984a88b66094ccb0e0f17ddd55067c331191bf19", size = 11296813, upload-time = "2026-04-16T18:46:24.182Z" }, + { url = "https://files.pythonhosted.org/packages/43/26/972784c5dde8313acde8ac71ba8ac65475b85db4a2352a76c9934361f9bc/ruff-0.15.11-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:0e783b599b4577788dbbb66b9addcef87e9a8832f4ce0c19e34bf55543a2f890", size = 10633136, upload-time = "2026-04-16T18:46:39.802Z" }, + { url = "https://files.pythonhosted.org/packages/5b/53/3985a4f185020c2f367f2e08a103032e12564829742a1b417980ce1514a0/ruff-0.15.11-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:ae90592246625ba4a34349d68ec28d4400d75182b71baa196ddb9f82db025ef5", size = 10424701, upload-time = "2026-04-16T18:46:10.381Z" }, + { url = "https://files.pythonhosted.org/packages/d3/57/bf0dfb32241b56c83bb663a826133da4bf17f682ba8c096973065f6e6a68/ruff-0.15.11-py3-none-musllinux_1_2_i686.whl", hash = "sha256:1f111d62e3c983ed20e0ca2e800f8d77433a5b1161947df99a5c2a3fb60514f0", size = 10873887, upload-time = "2026-04-16T18:46:29.157Z" }, + { url = "https://files.pythonhosted.org/packages/02/05/e48076b2a57dc33ee8c7a957296f97c744ca891a8ffb4ffb1aaa3b3f517d/ruff-0.15.11-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:06f483d6646f59eaffba9ae30956370d3a886625f511a3108994000480621d1c", size = 11404316, upload-time = "2026-04-16T18:46:19.462Z" }, + { url = "https://files.pythonhosted.org/packages/88/27/0195d15fe7a897cbcba0904792c4b7c9fdd958456c3a17d2ea6093716a9a/ruff-0.15.11-py3-none-win32.whl", hash = "sha256:476a2aa56b7da0b73a3ee80b6b2f0e19cce544245479adde7baa65466664d5f3", size = 10655535, upload-time = "2026-04-16T18:46:12.47Z" }, + { url = "https://files.pythonhosted.org/packages/3a/5e/c927b325bd4c1d3620211a4b96f47864633199feed60fa936025ab27e090/ruff-0.15.11-py3-none-win_amd64.whl", hash = "sha256:8b6756d88d7e234fb0c98c91511aae3cd519d5e3ed271cae31b20f39cb2a12a3", size = 11779692, upload-time = "2026-04-16T18:46:17.268Z" }, + { url = "https://files.pythonhosted.org/packages/63/b6/aeadee5443e49baa2facd51131159fd6301cc4ccfc1541e4df7b021c37dd/ruff-0.15.11-py3-none-win_arm64.whl", hash = "sha256:063fed18cc1bbe0ee7393957284a6fe8b588c6a406a285af3ee3f46da2391ee4", size = 11032614, upload-time = "2026-04-16T18:46:34.487Z" }, +] + +[[package]] +name = "scikit-learn" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c9/fa/8e158d81e3602da1e7bafbd4987938bc003fe4b0f44d65681e7f8face95a/scikit-learn-1.2.2.tar.gz", hash = "sha256:8429aea30ec24e7a8c7ed8a3fa6213adf3814a6efbea09e16e0a0c71e1a1a3d7", size = 7269934, upload-time = "2023-03-09T09:57:57.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/21/ee21352f69a980614cb4193d68a64a83aa2c0f80183c9485d6d61821a922/scikit_learn-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:99cc01184e347de485bf253d19fcb3b1a3fb0ee4cea5ee3c43ec0cc429b6d29f", size = 9107257, upload-time = "2023-03-09T09:57:10.488Z" }, + { url = "https://files.pythonhosted.org/packages/5a/43/5c4d21217df6a033999ee531fdfd52809263727b4afb26f7196a8ec709ae/scikit_learn-1.2.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:e6e574db9914afcb4e11ade84fab084536a895ca60aadea3041e85b8ac963edb", size = 8455656, upload-time = "2023-03-09T09:57:13.131Z" }, + { url = "https://files.pythonhosted.org/packages/48/92/a39d1c9e0a6cb5ed4112899ecca590138484356ba8c4274dde6c3893ff14/scikit_learn-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fe83b676f407f00afa388dd1fdd49e5c6612e551ed84f3b1b182858f09e987d", size = 9165302, upload-time = "2023-03-09T09:57:15.336Z" }, + { url = "https://files.pythonhosted.org/packages/fa/1e/36d7609e84b50d4a2e5bc43cd5013d9ea885799e5813a1e9cf5bb1afd3f4/scikit_learn-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e2642baa0ad1e8f8188917423dd73994bf25429f8893ddbe115be3ca3183584", size = 9625294, upload-time = "2023-03-09T09:57:17.519Z" }, + { url = "https://files.pythonhosted.org/packages/f4/4d/fe3b35e18407da4b386be58616bd0f941ea1762a6c6798267f3aa64ef5d5/scikit_learn-1.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ad66c3848c0a1ec13464b2a95d0a484fd5b02ce74268eaa7e0c697b904f31d6c", size = 8306029, upload-time = "2023-03-09T09:57:19.64Z" }, +] + +[[package]] +name = "scipy" +version = "1.15.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0f/37/6964b830433e654ec7485e45a00fc9a27cf868d622838f6b6d9c5ec0d532/scipy-1.15.3.tar.gz", hash = "sha256:eae3cf522bc7df64b42cad3925c876e1b0b6c35c1337c93e12c0f366f55b0eaf", size = 59419214, upload-time = "2025-05-08T16:13:05.955Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/2f/4966032c5f8cc7e6a60f1b2e0ad686293b9474b65246b0c642e3ef3badd0/scipy-1.15.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a345928c86d535060c9c2b25e71e87c39ab2f22fc96e9636bd74d1dbf9de448c", size = 38702770, upload-time = "2025-05-08T16:04:20.849Z" }, + { url = "https://files.pythonhosted.org/packages/a0/6e/0c3bf90fae0e910c274db43304ebe25a6b391327f3f10b5dcc638c090795/scipy-1.15.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:ad3432cb0f9ed87477a8d97f03b763fd1d57709f1bbde3c9369b1dff5503b253", size = 30094511, upload-time = "2025-05-08T16:04:27.103Z" }, + { url = "https://files.pythonhosted.org/packages/ea/b1/4deb37252311c1acff7f101f6453f0440794f51b6eacb1aad4459a134081/scipy-1.15.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:aef683a9ae6eb00728a542b796f52a5477b78252edede72b8327a886ab63293f", size = 22368151, upload-time = "2025-05-08T16:04:31.731Z" }, + { url = "https://files.pythonhosted.org/packages/38/7d/f457626e3cd3c29b3a49ca115a304cebb8cc6f31b04678f03b216899d3c6/scipy-1.15.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:1c832e1bd78dea67d5c16f786681b28dd695a8cb1fb90af2e27580d3d0967e92", size = 25121732, upload-time = "2025-05-08T16:04:36.596Z" }, + { url = "https://files.pythonhosted.org/packages/db/0a/92b1de4a7adc7a15dcf5bddc6e191f6f29ee663b30511ce20467ef9b82e4/scipy-1.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:263961f658ce2165bbd7b99fa5135195c3a12d9bef045345016b8b50c315cb82", size = 35547617, upload-time = "2025-05-08T16:04:43.546Z" }, + { url = "https://files.pythonhosted.org/packages/8e/6d/41991e503e51fc1134502694c5fa7a1671501a17ffa12716a4a9151af3df/scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2abc762b0811e09a0d3258abee2d98e0c703eee49464ce0069590846f31d40", size = 37662964, upload-time = "2025-05-08T16:04:49.431Z" }, + { url = "https://files.pythonhosted.org/packages/25/e1/3df8f83cb15f3500478c889be8fb18700813b95e9e087328230b98d547ff/scipy-1.15.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed7284b21a7a0c8f1b6e5977ac05396c0d008b89e05498c8b7e8f4a1423bba0e", size = 37238749, upload-time = "2025-05-08T16:04:55.215Z" }, + { url = "https://files.pythonhosted.org/packages/93/3e/b3257cf446f2a3533ed7809757039016b74cd6f38271de91682aa844cfc5/scipy-1.15.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5380741e53df2c566f4d234b100a484b420af85deb39ea35a1cc1be84ff53a5c", size = 40022383, upload-time = "2025-05-08T16:05:01.914Z" }, + { url = "https://files.pythonhosted.org/packages/d1/84/55bc4881973d3f79b479a5a2e2df61c8c9a04fcb986a213ac9c02cfb659b/scipy-1.15.3-cp310-cp310-win_amd64.whl", hash = "sha256:9d61e97b186a57350f6d6fd72640f9e99d5a4a2b8fbf4b9ee9a841eab327dc13", size = 41259201, upload-time = "2025-05-08T16:05:08.166Z" }, +] + +[[package]] +name = "seaborn" +version = "0.13.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "pandas" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/86/59/a451d7420a77ab0b98f7affa3a1d78a313d2f7281a57afb1a34bae8ab412/seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7", size = 1457696, upload-time = "2024-01-25T13:21:52.551Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/11/00d3c3dfc25ad54e731d91449895a79e4bf2384dc3ac01809010ba88f6d5/seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987", size = 294914, upload-time = "2024-01-25T13:21:49.598Z" }, +] + +[[package]] +name = "send2trash" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c5/f0/184b4b5f8d00f2a92cf96eec8967a3d550b52cf94362dad1100df9e48d57/send2trash-2.1.0.tar.gz", hash = "sha256:1c72b39f09457db3c05ce1d19158c2cbef4c32b8bedd02c155e49282b7ea7459", size = 17255, upload-time = "2026-01-14T06:27:36.056Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/78/504fdd027da3b84ff1aecd9f6957e65f35134534ccc6da8628eb71e76d3f/send2trash-2.1.0-py3-none-any.whl", hash = "sha256:0da2f112e6d6bb22de6aa6daa7e144831a4febf2a87261451c4ad849fe9a873c", size = 17610, upload-time = "2026-01-14T06:27:35.218Z" }, +] + +[[package]] +name = "setuptools" +version = "82.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4f/db/cfac1baf10650ab4d1c111714410d2fbb77ac5a616db26775db562c8fab2/setuptools-82.0.1.tar.gz", hash = "sha256:7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9", size = 1152316, upload-time = "2026-03-09T12:47:17.221Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" }, +] + +[[package]] +name = "shapely" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4d/bc/0989043118a27cccb4e906a46b7565ce36ca7b57f5a18b78f4f1b0f72d9d/shapely-2.1.2.tar.gz", hash = "sha256:2ed4ecb28320a433db18a5bf029986aa8afcfd740745e78847e330d5d94922a9", size = 315489, upload-time = "2025-09-24T13:51:41.432Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/89/c3548aa9b9812a5d143986764dededfa48d817714e947398bdda87c77a72/shapely-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7ae48c236c0324b4e139bea88a306a04ca630f49be66741b340729d380d8f52f", size = 1825959, upload-time = "2025-09-24T13:50:00.682Z" }, + { url = "https://files.pythonhosted.org/packages/ce/8a/7ebc947080442edd614ceebe0ce2cdbd00c25e832c240e1d1de61d0e6b38/shapely-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eba6710407f1daa8e7602c347dfc94adc02205ec27ed956346190d66579eb9ea", size = 1629196, upload-time = "2025-09-24T13:50:03.447Z" }, + { url = "https://files.pythonhosted.org/packages/c8/86/c9c27881c20d00fc409e7e059de569d5ed0abfcec9c49548b124ebddea51/shapely-2.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ef4a456cc8b7b3d50ccec29642aa4aeda959e9da2fe9540a92754770d5f0cf1f", size = 2951065, upload-time = "2025-09-24T13:50:05.266Z" }, + { url = "https://files.pythonhosted.org/packages/50/8a/0ab1f7433a2a85d9e9aea5b1fbb333f3b09b309e7817309250b4b7b2cc7a/shapely-2.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e38a190442aacc67ff9f75ce60aec04893041f16f97d242209106d502486a142", size = 3058666, upload-time = "2025-09-24T13:50:06.872Z" }, + { url = "https://files.pythonhosted.org/packages/bb/c6/5a30ffac9c4f3ffd5b7113a7f5299ccec4713acd5ee44039778a7698224e/shapely-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:40d784101f5d06a1fd30b55fc11ea58a61be23f930d934d86f19a180909908a4", size = 3966905, upload-time = "2025-09-24T13:50:09.417Z" }, + { url = "https://files.pythonhosted.org/packages/9c/72/e92f3035ba43e53959007f928315a68fbcf2eeb4e5ededb6f0dc7ff1ecc3/shapely-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f6f6cd5819c50d9bcf921882784586aab34a4bd53e7553e175dece6db513a6f0", size = 4129260, upload-time = "2025-09-24T13:50:11.183Z" }, + { url = "https://files.pythonhosted.org/packages/42/24/605901b73a3d9f65fa958e63c9211f4be23d584da8a1a7487382fac7fdc5/shapely-2.1.2-cp310-cp310-win32.whl", hash = "sha256:fe9627c39c59e553c90f5bc3128252cb85dc3b3be8189710666d2f8bc3a5503e", size = 1544301, upload-time = "2025-09-24T13:50:12.521Z" }, + { url = "https://files.pythonhosted.org/packages/e1/89/6db795b8dd3919851856bd2ddd13ce434a748072f6fdee42ff30cbd3afa3/shapely-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:1d0bfb4b8f661b3b4ec3565fa36c340bfb1cda82087199711f86a88647d26b2f", size = 1722074, upload-time = "2025-09-24T13:50:13.909Z" }, +] + +[[package]] +name = "simplejson" +version = "3.20.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f4/a1ac5ed32f7ed9a088d62a59d410d4c204b3b3815722e2ccfb491fa8251b/simplejson-3.20.2.tar.gz", hash = "sha256:5fe7a6ce14d1c300d80d08695b7f7e633de6cd72c80644021874d985b3393649", size = 85784, upload-time = "2025-09-26T16:29:36.64Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/09/2bf3761de89ea2d91bdce6cf107dcd858892d0adc22c995684878826cc6b/simplejson-3.20.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6d7286dc11af60a2f76eafb0c2acde2d997e87890e37e24590bb513bec9f1bc5", size = 94039, upload-time = "2025-09-26T16:27:29.283Z" }, + { url = "https://files.pythonhosted.org/packages/0f/33/c3277db8931f0ae9e54b9292668863365672d90fb0f632f4cf9829cb7d68/simplejson-3.20.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c01379b4861c3b0aa40cba8d44f2b448f5743999aa68aaa5d3ef7049d4a28a2d", size = 75894, upload-time = "2025-09-26T16:27:30.378Z" }, + { url = "https://files.pythonhosted.org/packages/fa/ea/ae47b04d03c7c8a7b7b1a8b39a6e27c3bd424e52f4988d70aca6293ff5e5/simplejson-3.20.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a16b029ca25645b3bc44e84a4f941efa51bf93c180b31bd704ce6349d1fc77c1", size = 76116, upload-time = "2025-09-26T16:27:31.42Z" }, + { url = "https://files.pythonhosted.org/packages/4b/42/6c9af551e5a8d0f171d6dce3d9d1260068927f7b80f1f09834e07887c8c4/simplejson-3.20.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e22a5fb7b1437ffb057e02e1936a3bfb19084ae9d221ec5e9f4cf85f69946b6", size = 138827, upload-time = "2025-09-26T16:27:32.486Z" }, + { url = "https://files.pythonhosted.org/packages/2b/22/5e268bbcbe9f75577491e406ec0a5536f5b2fa91a3b52031fea51cd83e1d/simplejson-3.20.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d8b6ff02fc7b8555c906c24735908854819b0d0dc85883d453e23ca4c0445d01", size = 146772, upload-time = "2025-09-26T16:27:34.036Z" }, + { url = "https://files.pythonhosted.org/packages/71/b4/800f14728e2ad666f420dfdb57697ca128aeae7f991b35759c09356b829a/simplejson-3.20.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2bfc1c396ad972ba4431130b42307b2321dba14d988580c1ac421ec6a6b7cee3", size = 134497, upload-time = "2025-09-26T16:27:35.211Z" }, + { url = "https://files.pythonhosted.org/packages/c1/b9/c54eef4226c6ac8e9a389bbe5b21fef116768f97a2dc1a683c716ffe66ef/simplejson-3.20.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a97249ee1aee005d891b5a211faf58092a309f3d9d440bc269043b08f662eda", size = 138172, upload-time = "2025-09-26T16:27:36.44Z" }, + { url = "https://files.pythonhosted.org/packages/09/36/4e282f5211b34620f1b2e4b51d9ddaab5af82219b9b7b78360a33f7e5387/simplejson-3.20.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f1036be00b5edaddbddbb89c0f80ed229714a941cfd21e51386dc69c237201c2", size = 140272, upload-time = "2025-09-26T16:27:37.605Z" }, + { url = "https://files.pythonhosted.org/packages/aa/b0/94ad2cf32f477c449e1f63c863d8a513e2408d651c4e58fe4b6a7434e168/simplejson-3.20.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5d6f5bacb8cdee64946b45f2680afa3f54cd38e62471ceda89f777693aeca4e4", size = 140468, upload-time = "2025-09-26T16:27:39.015Z" }, + { url = "https://files.pythonhosted.org/packages/e5/46/827731e4163be3f987cb8ee90f5d444161db8f540b5e735355faa098d9bc/simplejson-3.20.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8db6841fb796ec5af632f677abf21c6425a1ebea0d9ac3ef1a340b8dc69f52b8", size = 148700, upload-time = "2025-09-26T16:27:40.171Z" }, + { url = "https://files.pythonhosted.org/packages/c7/28/c32121064b1ec2fb7b5d872d9a1abda62df064d35e0160eddfa907118343/simplejson-3.20.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c0a341f7cc2aae82ee2b31f8a827fd2e51d09626f8b3accc441a6907c88aedb7", size = 141323, upload-time = "2025-09-26T16:27:41.324Z" }, + { url = "https://files.pythonhosted.org/packages/46/b6/c897c54326fe86dd12d101981171a49361949f4728294f418c3b86a1af77/simplejson-3.20.2-cp310-cp310-win32.whl", hash = "sha256:27f9c01a6bc581d32ab026f515226864576da05ef322d7fc141cd8a15a95ce53", size = 74377, upload-time = "2025-09-26T16:27:42.533Z" }, + { url = "https://files.pythonhosted.org/packages/ad/87/a6e03d4d80cca99c1fee4e960f3440e2f21be9470e537970f960ca5547f1/simplejson-3.20.2-cp310-cp310-win_amd64.whl", hash = "sha256:c0a63ec98a4547ff366871bf832a7367ee43d047bcec0b07b66c794e2137b476", size = 76081, upload-time = "2025-09-26T16:27:43.945Z" }, + { url = "https://files.pythonhosted.org/packages/05/5b/83e1ff87eb60ca706972f7e02e15c0b33396e7bdbd080069a5d1b53cf0d8/simplejson-3.20.2-py3-none-any.whl", hash = "sha256:3b6bb7fb96efd673eac2e4235200bfffdc2353ad12c54117e1e4e2fc485ac017", size = 57309, upload-time = "2025-09-26T16:29:35.312Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "snowballstemmer" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/75/a7/9810d872919697c9d01295633f5d574fb416d47e535f258272ca1f01f447/snowballstemmer-3.0.1.tar.gz", hash = "sha256:6d5eeeec8e9f84d4d56b847692bacf79bc2c8e90c7f80ca4444ff8b6f2e52895", size = 105575, upload-time = "2025-05-09T16:34:51.843Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/78/3565d011c61f5a43488987ee32b6f3f656e7f107ac2782dd57bdd7d91d9a/snowballstemmer-3.0.1-py3-none-any.whl", hash = "sha256:6cd7b3897da8d6c9ffb968a6781fa6532dce9c3618a4b127d920dab764a19064", size = 103274, upload-time = "2025-05-09T16:34:50.371Z" }, +] + +[[package]] +name = "soupsieve" +version = "2.8.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7b/ae/2d9c981590ed9999a0d91755b47fc74f74de286b0f5cee14c9269041e6c4/soupsieve-2.8.3.tar.gz", hash = "sha256:3267f1eeea4251fb42728b6dfb746edc9acaffc4a45b27e19450b676586e8349", size = 118627, upload-time = "2026-01-20T04:27:02.457Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/2c/1462b1d0a634697ae9e55b3cecdcb64788e8b7d63f54d923fcd0bb140aed/soupsieve-2.8.3-py3-none-any.whl", hash = "sha256:ed64f2ba4eebeab06cc4962affce381647455978ffc1e36bb79a545b91f45a95", size = 37016, upload-time = "2026-01-20T04:27:01.012Z" }, +] + +[[package]] +name = "sphinx" +version = "8.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alabaster" }, + { name = "babel" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "docutils" }, + { name = "imagesize" }, + { name = "jinja2" }, + { name = "packaging" }, + { name = "pygments" }, + { name = "requests" }, + { name = "snowballstemmer" }, + { name = "sphinxcontrib-applehelp" }, + { name = "sphinxcontrib-devhelp" }, + { name = "sphinxcontrib-htmlhelp" }, + { name = "sphinxcontrib-jsmath" }, + { name = "sphinxcontrib-qthelp" }, + { name = "sphinxcontrib-serializinghtml" }, + { name = "tomli" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/be0b61178fe2cdcb67e2a92fc9ebb488e3c51c4f74a36a7824c0adf23425/sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927", size = 8184611, upload-time = "2024-10-13T20:27:13.93Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2", size = 3487125, upload-time = "2024-10-13T20:27:10.448Z" }, +] + +[[package]] +name = "sphinx-rtd-theme" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docutils" }, + { name = "sphinx" }, + { name = "sphinxcontrib-jquery" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/84/68/a1bfbf38c0f7bccc9b10bbf76b94606f64acb1552ae394f0b8285bfaea25/sphinx_rtd_theme-3.1.0.tar.gz", hash = "sha256:b44276f2c276e909239a4f6c955aa667aaafeb78597923b1c60babc76db78e4c", size = 7620915, upload-time = "2026-01-12T16:03:31.17Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/c7/b5c8015d823bfda1a346adb2c634a2101d50bb75d421eb6dcb31acd25ebc/sphinx_rtd_theme-3.1.0-py2.py3-none-any.whl", hash = "sha256:1785824ae8e6632060490f67cf3a72d404a85d2d9fc26bce3619944de5682b89", size = 7655617, upload-time = "2026-01-12T16:03:28.101Z" }, +] + +[[package]] +name = "sphinxcontrib-applehelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ba/6e/b837e84a1a704953c62ef8776d45c3e8d759876b4a84fe14eba2859106fe/sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1", size = 20053, upload-time = "2024-07-29T01:09:00.465Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5", size = 119300, upload-time = "2024-07-29T01:08:58.99Z" }, +] + +[[package]] +name = "sphinxcontrib-devhelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/d2/5beee64d3e4e747f316bae86b55943f51e82bb86ecd325883ef65741e7da/sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad", size = 12967, upload-time = "2024-07-29T01:09:23.417Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2", size = 82530, upload-time = "2024-07-29T01:09:21.945Z" }, +] + +[[package]] +name = "sphinxcontrib-htmlhelp" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/93/983afd9aa001e5201eab16b5a444ed5b9b0a7a010541e0ddfbbfd0b2470c/sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9", size = 22617, upload-time = "2024-07-29T01:09:37.889Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8", size = 98705, upload-time = "2024-07-29T01:09:36.407Z" }, +] + +[[package]] +name = "sphinxcontrib-jquery" +version = "4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "sphinx" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/de/f3/aa67467e051df70a6330fe7770894b3e4f09436dea6881ae0b4f3d87cad8/sphinxcontrib-jquery-4.1.tar.gz", hash = "sha256:1620739f04e36a2c779f1a131a2dfd49b2fd07351bf1968ced074365933abc7a", size = 122331, upload-time = "2023-03-14T15:01:01.944Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/85/749bd22d1a68db7291c89e2ebca53f4306c3f205853cf31e9de279034c3c/sphinxcontrib_jquery-4.1-py2.py3-none-any.whl", hash = "sha256:f936030d7d0147dd026a4f2b5a57343d233f1fc7b363f68b3d4f1cb0993878ae", size = 121104, upload-time = "2023-03-14T15:01:00.356Z" }, +] + +[[package]] +name = "sphinxcontrib-jsmath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/e8/9ed3830aeed71f17c026a07a5097edcf44b692850ef215b161b8ad875729/sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8", size = 5787, upload-time = "2019-01-21T16:10:16.347Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178", size = 5071, upload-time = "2019-01-21T16:10:14.333Z" }, +] + +[[package]] +name = "sphinxcontrib-qthelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/68/bc/9104308fc285eb3e0b31b67688235db556cd5b0ef31d96f30e45f2e51cae/sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab", size = 17165, upload-time = "2024-07-29T01:09:56.435Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb", size = 88743, upload-time = "2024-07-29T01:09:54.885Z" }, +] + +[[package]] +name = "sphinxcontrib-serializinghtml" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3b/44/6716b257b0aa6bfd51a1b31665d1c205fb12cb5ad56de752dfa15657de2f/sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d", size = 16080, upload-time = "2024-07-29T01:10:09.332Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331", size = 92072, upload-time = "2024-07-29T01:10:08.203Z" }, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.49" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "greenlet", marker = "platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64'" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/09/45/461788f35e0364a8da7bda51a1fe1b09762d0c32f12f63727998d85a873b/sqlalchemy-2.0.49.tar.gz", hash = "sha256:d15950a57a210e36dd4cec1aac22787e2a4d57ba9318233e2ef8b2daf9ff2d5f", size = 9898221, upload-time = "2026-04-03T16:38:11.704Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/96/76/f908955139842c362aa877848f42f9249642d5b69e06cee9eae5111da1bd/sqlalchemy-2.0.49-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:42e8804962f9e6f4be2cbaedc0c3718f08f60a16910fa3d86da5a1e3b1bfe60f", size = 2159321, upload-time = "2026-04-03T16:50:11.8Z" }, + { url = "https://files.pythonhosted.org/packages/24/e2/17ba0b7bfbd8de67196889b6d951de269e8a46057d92baca162889beb16d/sqlalchemy-2.0.49-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc992c6ed024c8c3c592c5fc9846a03dd68a425674900c70122c77ea16c5fb0b", size = 3238937, upload-time = "2026-04-03T16:54:45.731Z" }, + { url = "https://files.pythonhosted.org/packages/90/1e/410dd499c039deacff395eec01a9da057125fcd0c97e3badc252c6a2d6a7/sqlalchemy-2.0.49-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6eb188b84269f357669b62cb576b5b918de10fb7c728a005fa0ebb0b758adce1", size = 3237188, upload-time = "2026-04-03T16:56:53.217Z" }, + { url = "https://files.pythonhosted.org/packages/ab/06/e797a8b98a3993ac4bc785309b9b6d005457fc70238ee6cefa7c8867a92e/sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:62557958002b69699bdb7f5137c6714ca1133f045f97b3903964f47db97ea339", size = 3190061, upload-time = "2026-04-03T16:54:47.489Z" }, + { url = "https://files.pythonhosted.org/packages/44/d3/5a9f7ef580af1031184b38235da6ac58c3b571df01c9ec061c44b2b0c5a6/sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da9b91bca419dc9b9267ffadde24eae9b1a6bffcd09d0a207e5e3af99a03ce0d", size = 3211477, upload-time = "2026-04-03T16:56:55.056Z" }, + { url = "https://files.pythonhosted.org/packages/69/ec/7be8c8cb35f038e963a203e4fe5a028989167cc7299927b7cf297c271e37/sqlalchemy-2.0.49-cp310-cp310-win32.whl", hash = "sha256:5e61abbec255be7b122aa461021daa7c3f310f3e743411a67079f9b3cc91ece3", size = 2119965, upload-time = "2026-04-03T17:00:50.009Z" }, + { url = "https://files.pythonhosted.org/packages/b5/31/0defb93e3a10b0cf7d1271aedd87251a08c3a597ee4f353281769b547b5a/sqlalchemy-2.0.49-cp310-cp310-win_amd64.whl", hash = "sha256:0c98c59075b890df8abfcc6ad632879540f5791c68baebacb4f833713b510e75", size = 2142935, upload-time = "2026-04-03T17:00:51.675Z" }, + { url = "https://files.pythonhosted.org/packages/e5/30/8519fdde58a7bdf155b714359791ad1dc018b47d60269d5d160d311fdc36/sqlalchemy-2.0.49-py3-none-any.whl", hash = "sha256:ec44cfa7ef1a728e88ad41674de50f6db8cfdb3e2af84af86e0041aaf02d43d0", size = 1942158, upload-time = "2026-04-03T16:53:44.135Z" }, +] + +[[package]] +name = "stack-data" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asttokens" }, + { name = "executing" }, + { name = "pure-eval" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707, upload-time = "2023-09-30T13:58:05.479Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload-time = "2023-09-30T13:58:03.53Z" }, +] + +[[package]] +name = "swagger-spec-validator" +version = "3.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-resources" }, + { name = "jsonschema" }, + { name = "pyyaml" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e7/e9/d0a4a1e4ed6b4b805d5465affaeaa2d91ae08a8aae966f4bb7402e23ee37/swagger_spec_validator-3.0.4.tar.gz", hash = "sha256:637ac6d865270bfcd07df24605548e6e1f1d9c39adcfd855da37fa3fdebfed4b", size = 22355, upload-time = "2024-06-27T17:43:05.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/ac/31ba87a959b19e640ebc18851438b82b5b66cef02ad31da7468d1d8bd625/swagger_spec_validator-3.0.4-py2.py3-none-any.whl", hash = "sha256:1a2a4f4f7076479ae7835d892dd53952ccca9414efa172c440c775cf0ac01f48", size = 28473, upload-time = "2024-06-27T17:43:00.546Z" }, +] + +[[package]] +name = "sympy" +version = "1.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz", hash = "sha256:d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517", size = 7793921, upload-time = "2025-04-27T18:05:01.611Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl", hash = "sha256:e091cc3e99d2141a0ba2847328f5479b05d94a6635cb96148ccb3f34671bd8f5", size = 6299353, upload-time = "2025-04-27T18:04:59.103Z" }, +] + +[[package]] +name = "tabulate" +version = "0.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/58/8c37dea7bbf769b20d58e7ace7e5edfe65b849442b00ffcdd56be88697c6/tabulate-0.10.0.tar.gz", hash = "sha256:e2cfde8f79420f6deeffdeda9aaec3b6bc5abce947655d17ac662b126e48a60d", size = 91754, upload-time = "2026-03-04T18:55:34.402Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/99/55/db07de81b5c630da5cbf5c7df646580ca26dfaefa593667fc6f2fe016d2e/tabulate-0.10.0-py3-none-any.whl", hash = "sha256:f0b0622e567335c8fabaaa659f1b33bcb6ddfe2e496071b743aa113f8774f2d3", size = 39814, upload-time = "2026-03-04T18:55:31.284Z" }, +] + +[[package]] +name = "tensorboard" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "google-auth" }, + { name = "google-auth-oauthlib" }, + { name = "grpcio" }, + { name = "markdown" }, + { name = "numpy" }, + { name = "protobuf" }, + { name = "requests" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard-data-server" }, + { name = "werkzeug" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/a2/66ed644f6ed1562e0285fcd959af17670ea313c8f331c46f79ee77187eb9/tensorboard-2.14.1-py3-none-any.whl", hash = "sha256:3db108fb58f023b6439880e177743c5f1e703e9eeb5fb7d597871f949f85fd58", size = 5508920, upload-time = "2023-09-27T23:37:16.71Z" }, +] + +[[package]] +name = "tensorboard-data-server" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/13/e503968fefabd4c6b2650af21e110aa8466fe21432cd7c43a84577a89438/tensorboard_data_server-0.7.2-py3-none-any.whl", hash = "sha256:7e0610d205889588983836ec05dc098e80f97b7e7bbff7e994ebb78f578d0ddb", size = 2356, upload-time = "2023-10-23T21:23:32.16Z" }, + { url = "https://files.pythonhosted.org/packages/b7/85/dabeaf902892922777492e1d253bb7e1264cadce3cea932f7ff599e53fea/tensorboard_data_server-0.7.2-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:9fe5d24221b29625dbc7328b0436ca7fc1c23de4acf4d272f1180856e32f9f60", size = 4823598, upload-time = "2023-10-23T21:23:33.714Z" }, + { url = "https://files.pythonhosted.org/packages/73/c6/825dab04195756cf8ff2e12698f22513b3db2f64925bdd41671bfb33aaa5/tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:ef687163c24185ae9754ed5650eb5bc4d84ff257aabdc33f0cc6f74d8ba54530", size = 6590363, upload-time = "2023-10-23T21:23:35.583Z" }, +] + +[[package]] +name = "tensorflow" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/c9/222613c717658bbd7114966aa74d2e54440e59bf3648353d62d83ea75bdf/tensorflow-2.14.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:f6e9ac1e53db30f1759148f731f87b9d12da5ce0f153fc49406824efd486aae7", size = 229650235, upload-time = "2023-11-14T18:56:58.236Z" }, + { url = "https://files.pythonhosted.org/packages/87/58/d2fba754da2ab0f35818ab12484e5306b87e0fbd4a8e7dd4eb50bd3abaa3/tensorflow-2.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:7156bf1f7311dada7dba5345b526a38e6f4e4f4b8509bee162a24342bf6571b2", size = 2103, upload-time = "2023-11-14T18:58:35.953Z" }, + { url = "https://files.pythonhosted.org/packages/29/ff/44c46db0b42b10d284493a7942b8f3bb0257ce6537010ae0b27a6a86fd67/tensorflow-2.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5781aadad5b46e2de4e373b0ca15a852b90d58982270a6db02ec52e4986316d", size = 2116, upload-time = "2023-11-14T19:02:37.01Z" }, + { url = "https://files.pythonhosted.org/packages/99/77/4f31cd29cab69ebc344a529df48b91a14543a83b6fb90efbf82db29a34be/tensorflow-2.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a955c42164eff4d751732c1274ca4bf059db60c9e2362098ce1eed7177c3fe9", size = 489862117, upload-time = "2023-11-14T18:59:35.918Z" }, + { url = "https://files.pythonhosted.org/packages/df/84/0a67b7ad368b597fa4fc60e2ae2f0fbe9c527c6fe5dbf290236a459fe4a6/tensorflow-2.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:4be5f4327a6e854f64b4dcfd08a51c5fc7cc3fea8c76c5bf5c0c3deb002d5221", size = 2094, upload-time = "2023-11-14T19:01:35.345Z" }, +] + +[[package]] +name = "tensorflow-cpu" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/4f/ea/acd6d4c6a23de999e7fbb20d68eefa65d395df7ae16249294a02dd1772d5/tensorflow_cpu-2.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97f63588962997f2816031578450f747468f9441b17f5bbf352fc93adecc2051", size = 198216087, upload-time = "2023-11-14T19:00:57.579Z" }, +] + +[[package]] +name = "tensorflow-estimator" +version = "2.14.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/da/4f264c196325bb6e37a6285caec5b12a03def489b57cc1fdac02bb6272cd/tensorflow_estimator-2.14.0-py2.py3-none-any.whl", hash = "sha256:820bf57c24aa631abb1bbe4371739ed77edb11361d61381fd8e790115ac0fd57", size = 440664, upload-time = "2023-09-11T18:41:50.481Z" }, +] + +[[package]] +name = "tensorflow-io-gcs-filesystem" +version = "0.37.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/a3/12d7e7326a707919b321e2d6e4c88eb61596457940fd2b8ff3e9b7fac8a7/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:249c12b830165841411ba71e08215d0e94277a49c551e6dd5d72aab54fe5491b", size = 2470224, upload-time = "2024-07-01T23:44:15.341Z" }, + { url = "https://files.pythonhosted.org/packages/1c/55/3849a188cc15e58fefde20e9524d124a629a67a06b4dc0f6c881cb3c6e39/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:257aab23470a0796978efc9c2bcf8b0bc80f22e6298612a4c0a50d3f4e88060c", size = 3479613, upload-time = "2024-07-01T23:44:17.445Z" }, + { url = "https://files.pythonhosted.org/packages/e2/19/9095c69e22c879cb3896321e676c69273a549a3148c4f62aa4bc5ebdb20f/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8febbfcc67c61e542a5ac1a98c7c20a91a5e1afc2e14b1ef0cb7c28bc3b6aa70", size = 4842078, upload-time = "2024-07-01T23:44:18.977Z" }, + { url = "https://files.pythonhosted.org/packages/f3/48/47b7d25572961a48b1de3729b7a11e835b888e41e0203cca82df95d23b91/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9679b36e3a80921876f31685ab6f7270f3411a4cc51bc2847e80d0e4b5291e27", size = 5085736, upload-time = "2024-07-01T23:44:21.034Z" }, +] + +[[package]] +name = "tensorflow-macos" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/e7/d6ef26155d86bd46432a844da8913402c570e5dd32f09050d483eab70896/tensorflow_macos-2.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:5b9832df0852fa534cbd3362b6e00ba1c9d4b541fdfd987d0bba3927229435bc", size = 199676024, upload-time = "2023-11-14T19:49:08.102Z" }, +] + +[[package]] +name = "tensorflow-metal" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, + { name = "wheel" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/21/cac4d1f8fda8a30f631a60a7669ca1de2665189e060604a5e8f96a145ba6/tensorflow_metal-1.1.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:443d71b3a567fe3f45f982c4794d357b55dec01a4ff1d6d8ba152a68a2c018ab", size = 1424879, upload-time = "2023-09-29T23:36:23.591Z" }, +] + +[[package]] +name = "termcolor" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/79/cf31d7a93a8fdc6aa0fbb665be84426a8c5a557d9240b6239e9e11e35fc5/termcolor-3.3.0.tar.gz", hash = "sha256:348871ca648ec6a9a983a13ab626c0acce02f515b9e1983332b17af7979521c5", size = 14434, upload-time = "2025-12-29T12:55:21.882Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/d1/8bb87d21e9aeb323cc03034f5eaf2c8f69841e40e4853c2627edf8111ed3/termcolor-3.3.0-py3-none-any.whl", hash = "sha256:cf642efadaf0a8ebbbf4bc7a31cec2f9b5f21a9f726f4ccbb08192c9c26f43a5", size = 7734, upload-time = "2025-12-29T12:55:20.718Z" }, +] + +[[package]] +name = "terminado" +version = "0.18.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess", marker = "os_name != 'nt'" }, + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "tornado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/11/965c6fd8e5cc254f1fe142d547387da17a8ebfd75a3455f637c663fb38a0/terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e", size = 32701, upload-time = "2024-03-12T14:34:39.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0", size = 14154, upload-time = "2024-03-12T14:34:36.569Z" }, +] + +[[package]] +name = "threadpoolctl" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/4d/08c89e34946fce2aec4fbb45c9016efd5f4d7f24af8e5d93296e935631d8/threadpoolctl-3.6.0.tar.gz", hash = "sha256:8ab8b4aa3491d812b623328249fab5302a68d2d71745c8a4c719a2fcaba9f44e", size = 21274, upload-time = "2025-03-13T13:49:23.031Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl", hash = "sha256:43a0b8fd5a2928500110039e43a5eed8480b918967083ea48dc3ab9f13c4a7fb", size = 18638, upload-time = "2025-03-13T13:49:21.846Z" }, +] + +[[package]] +name = "tinycss2" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "webencodings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/fd/7a5ee21fd08ff70d3d33a5781c255cbe779659bd03278feb98b19ee550f4/tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7", size = 87085, upload-time = "2024-10-24T14:58:29.895Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289", size = 26610, upload-time = "2024-10-24T14:58:28.029Z" }, +] + +[[package]] +name = "tomli" +version = "2.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/22/de/48c59722572767841493b26183a0d1cc411d54fd759c5607c4590b6563a6/tomli-2.4.1.tar.gz", hash = "sha256:7c7e1a961a0b2f2472c1ac5b69affa0ae1132c39adcb67aba98568702b9cc23f", size = 17543, upload-time = "2026-03-25T20:22:03.828Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/61/cceae43728b7de99d9b847560c262873a1f6c98202171fd5ed62640b494b/tomli-2.4.1-py3-none-any.whl", hash = "sha256:0d85819802132122da43cb86656f8d1f8c6587d54ae7dcaf30e90533028b49fe", size = 14583, upload-time = "2026-03-25T20:22:03.012Z" }, +] + +[[package]] +name = "torch" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "networkx" }, + { name = "nvidia-cublas-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-cupti-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "sympy" }, + { name = "triton", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "typing-extensions" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/f1/13137340776dd5d5bcfd2574c9c6dfcc7618285035cd77240496e5c1a79b/torch-2.1.2-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:3a871edd6c02dae77ad810335c0833391c1a4ce49af21ea8cf0f6a5d2096eea8", size = 670178687, upload-time = "2023-12-14T21:46:00.348Z" }, + { url = "https://files.pythonhosted.org/packages/ca/dc/7817c6a2ff8f4f74255c7a11b285e5dff04f2a72f538fda647842ef87829/torch-2.1.2-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:bef6996c27d8f6e92ea4e13a772d89611da0e103b48790de78131e308cf73076", size = 84139460, upload-time = "2023-12-14T21:48:31.773Z" }, + { url = "https://files.pythonhosted.org/packages/16/bf/2ba0f0f7c07b9a14c027e181e44c58824e13f7352607ed32db18321599a2/torch-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:0e13034fd5fb323cbbc29e56d0637a3791e50dd589616f40c79adfa36a5a35a1", size = 192322127, upload-time = "2023-12-14T21:48:14.92Z" }, + { url = "https://files.pythonhosted.org/packages/a3/40/649c233606c2c7be8f90e452ebf5cf1db229127ac552b6b5260d0826e611/torch-2.1.2-cp310-none-macosx_10_9_x86_64.whl", hash = "sha256:d9b535cad0df3d13997dbe8bd68ac33e0e3ae5377639c9881948e40794a61403", size = 146996411, upload-time = "2023-12-14T21:48:42.748Z" }, + { url = "https://files.pythonhosted.org/packages/e3/43/ea958505875b22961e1277587f66b79f9e1f9d97d7998850ed089ae0d0bd/torch-2.1.2-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:f9a55d55af02826ebfbadf4e9b682f0f27766bc33df8236b48d28d705587868f", size = 59569021, upload-time = "2023-12-14T21:49:11.957Z" }, +] + +[[package]] +name = "torch-geometric" +version = "2.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "numpy" }, + { name = "psutil" }, + { name = "pyparsing" }, + { name = "requests" }, + { name = "tqdm" }, + { name = "xxhash" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/75/63/b210152635902da7fe79fcdd16517fae108f457a0ed22c737e702a9afbae/torch_geometric-2.7.0.tar.gz", hash = "sha256:f9099e4aece1a9f618c84dbaac33a77f43139736698c7e8bddf3301ef1f2e8d4", size = 876725, upload-time = "2025-10-15T20:48:03.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/d3/4dffd7300500465e0b4a2ae917dcb2ce771de0b9a772670365799a27c024/torch_geometric-2.7.0-py3-none-any.whl", hash = "sha256:6e0cd3ad824d484651ef5d308fc66c687bfcf5ba040d56d1e0fe0f81f365e292", size = 1275346, upload-time = "2025-10-15T20:48:01.949Z" }, +] + +[[package]] +name = "torchdata" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests" }, + { name = "torch" }, + { name = "urllib3" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/97/6f8f2384d9efb2d1bb6966b5300852d704f4943656360e9352e3cc3358b8/torchdata-0.7.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:042db39edbc961c50a36c45b89aea4b099858140c13746c7cc7a87b1cc219d0c", size = 1801802, upload-time = "2023-11-15T17:09:19.271Z" }, + { url = "https://files.pythonhosted.org/packages/0f/45/7c4674a8a4ac83f0e130d0991d61ff96a231656112bb7c50618d77ab0a8f/torchdata-0.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2d2c8482313dd52652caff99dc530433d898a12bb80bc33a0a4d1680d63272e0", size = 4815667, upload-time = "2023-11-15T17:08:43.478Z" }, + { url = "https://files.pythonhosted.org/packages/39/18/6f0d33df4b9fe4d44a779c2c7cc7cb042535a336f051bb0e5b5387844ee6/torchdata-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eed10b1f9265b30161a8cd129a96cfc7da202cfc70acf8b6a21fd29e18274ca3", size = 4657548, upload-time = "2023-11-15T17:09:00.144Z" }, + { url = "https://files.pythonhosted.org/packages/0e/06/0c916f27ef9f5a566b555f07c82c94fb9277fcabe0fcbf4dfe4505dcb28a/torchdata-0.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:36c591d0910ede6a496d4fccd389f27e7bccabf8b6a8722712ecf28b98bda8ae", size = 1330841, upload-time = "2023-11-15T17:09:14.414Z" }, + { url = "https://files.pythonhosted.org/packages/e2/c8/34eda2bd6beb8a11c06cf905db74092bdbc3dec51a48f4f22cc474866a0a/torchdata-0.7.1-py3-none-any.whl", hash = "sha256:9f9476a26987d90fa3f87cb09ec82b78ce6031ddcaa91851c9fa9f732a987ab8", size = 184418, upload-time = "2023-11-15T17:09:10.159Z" }, +] + +[[package]] +name = "torchmetrics" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "lightning-utilities" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "torch" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/81/34/39b8b749333db56c0585d7a11fa62a283c087bb1dfc897d69fb8cedbefb1/torchmetrics-1.9.0.tar.gz", hash = "sha256:a488609948600df52d3db4fcdab02e62aab2a85ef34da67037dc3e65b8512faa", size = 581765, upload-time = "2026-03-09T17:41:22.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c3/a2/c7f6ebf546f8f644edf0f999aa98ece106986a77a7b922316bf6414ff825/torchmetrics-1.9.0-py3-none-any.whl", hash = "sha256:bfdcbff3dd1d96b3374bb2496eb39f23c4b28b8a845b6a18c313688e0d2d9ca1", size = 983384, upload-time = "2026-03-09T17:41:19.756Z" }, +] + +[[package]] +name = "tornado" +version = "6.5.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/f1/3173dfa4a18db4a9b03e5d55325559dab51ee653763bb8745a75af491286/tornado-6.5.5.tar.gz", hash = "sha256:192b8f3ea91bd7f1f50c06955416ed76c6b72f96779b962f07f911b91e8d30e9", size = 516006, upload-time = "2026-03-10T21:31:02.067Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/59/8c/77f5097695f4dd8255ecbd08b2a1ed8ba8b953d337804dd7080f199e12bf/tornado-6.5.5-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:487dc9cc380e29f58c7ab88f9e27cdeef04b2140862e5076a66fb6bb68bb1bfa", size = 445983, upload-time = "2026-03-10T21:30:44.28Z" }, + { url = "https://files.pythonhosted.org/packages/ab/5e/7625b76cd10f98f1516c36ce0346de62061156352353ef2da44e5c21523c/tornado-6.5.5-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:65a7f1d46d4bb41df1ac99f5fcb685fb25c7e61613742d5108b010975a9a6521", size = 444246, upload-time = "2026-03-10T21:30:46.571Z" }, + { url = "https://files.pythonhosted.org/packages/b2/04/7b5705d5b3c0fab088f434f9c83edac1573830ca49ccf29fb83bf7178eec/tornado-6.5.5-cp39-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:e74c92e8e65086b338fd56333fb9a68b9f6f2fe7ad532645a290a464bcf46be5", size = 447229, upload-time = "2026-03-10T21:30:48.273Z" }, + { url = "https://files.pythonhosted.org/packages/34/01/74e034a30ef59afb4097ef8659515e96a39d910b712a89af76f5e4e1f93c/tornado-6.5.5-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:435319e9e340276428bbdb4e7fa732c2d399386d1de5686cb331ec8eee754f07", size = 448192, upload-time = "2026-03-10T21:30:51.22Z" }, + { url = "https://files.pythonhosted.org/packages/be/00/fe9e02c5a96429fce1a1d15a517f5d8444f9c412e0bb9eadfbe3b0fc55bf/tornado-6.5.5-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:3f54aa540bdbfee7b9eb268ead60e7d199de5021facd276819c193c0fb28ea4e", size = 448039, upload-time = "2026-03-10T21:30:53.52Z" }, + { url = "https://files.pythonhosted.org/packages/82/9e/656ee4cec0398b1d18d0f1eb6372c41c6b889722641d84948351ae19556d/tornado-6.5.5-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:36abed1754faeb80fbd6e64db2758091e1320f6bba74a4cf8c09cd18ccce8aca", size = 447445, upload-time = "2026-03-10T21:30:55.541Z" }, + { url = "https://files.pythonhosted.org/packages/5a/76/4921c00511f88af86a33de770d64141170f1cfd9c00311aea689949e274e/tornado-6.5.5-cp39-abi3-win32.whl", hash = "sha256:dd3eafaaeec1c7f2f8fdcd5f964e8907ad788fe8a5a32c4426fbbdda621223b7", size = 448582, upload-time = "2026-03-10T21:30:57.142Z" }, + { url = "https://files.pythonhosted.org/packages/2c/23/f6c6112a04d28eed765e374435fb1a9198f73e1ec4b4024184f21faeb1ad/tornado-6.5.5-cp39-abi3-win_amd64.whl", hash = "sha256:6443a794ba961a9f619b1ae926a2e900ac20c34483eea67be4ed8f1e58d3ef7b", size = 448990, upload-time = "2026-03-10T21:30:58.857Z" }, + { url = "https://files.pythonhosted.org/packages/b7/c8/876602cbc96469911f0939f703453c1157b0c826ecb05bdd32e023397d4e/tornado-6.5.5-cp39-abi3-win_arm64.whl", hash = "sha256:2c9a876e094109333f888539ddb2de4361743e5d21eece20688e3e351e4990a6", size = 448016, upload-time = "2026-03-10T21:31:00.43Z" }, +] + +[[package]] +name = "tqdm" +version = "4.67.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/09/a9/6ba95a270c6f1fbcd8dac228323f2777d886cb206987444e4bce66338dd4/tqdm-4.67.3.tar.gz", hash = "sha256:7d825f03f89244ef73f1d4ce193cb1774a8179fd96f31d7e1dcde62092b960bb", size = 169598, upload-time = "2026-02-03T17:35:53.048Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/16/e1/3079a9ff9b8e11b846c6ac5c8b5bfb7ff225eee721825310c91b3b50304f/tqdm-4.67.3-py3-none-any.whl", hash = "sha256:ee1e4c0e59148062281c49d80b25b67771a127c85fc9676d3be5f243206826bf", size = 78374, upload-time = "2026-02-03T17:35:50.982Z" }, +] + +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621, upload-time = "2024-04-19T11:11:49.746Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359, upload-time = "2024-04-19T11:11:46.763Z" }, +] + +[[package]] +name = "triton" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/22/91a8af421c8a8902dde76e6ef3db01b258af16c53d81e8c0d0dc13900a9e/triton-2.1.0-0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:66439923a30d5d48399b08a9eae10370f6c261a5ec864a64983bae63152d39d7", size = 89215103, upload-time = "2023-09-01T07:26:13.625Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, +] + +[[package]] +name = "tzdata" +version = "2026.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/19/f5/cd531b2d15a671a40c0f66cf06bc3570a12cd56eef98960068ebbad1bf5a/tzdata-2026.1.tar.gz", hash = "sha256:67658a1903c75917309e753fdc349ac0efd8c27db7a0cb406a25be4840f87f98", size = 197639, upload-time = "2026-04-03T11:25:22.002Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/70/d460bd685a170790ec89317e9bd33047988e4bce507b831f5db771e142de/tzdata-2026.1-py2.py3-none-any.whl", hash = "sha256:4b1d2be7ac37ceafd7327b961aa3a54e467efbdb563a23655fbfe0d39cfc42a9", size = 348952, upload-time = "2026-04-03T11:25:20.313Z" }, +] + +[[package]] +name = "umap-learn" +version = "0.5.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numba" }, + { name = "numpy" }, + { name = "pynndescent" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/d4/9ed627905f7993349671283b3c5bf2d9f543ef79229fa1c7e01324eb900c/umap-learn-0.5.7.tar.gz", hash = "sha256:b2a97973e4c6ffcebf241100a8de589a4c84126a832ab40f296c6d9fcc5eb19e", size = 92680, upload-time = "2024-10-28T18:05:57.093Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/8f/671c0e1f2572ba625cbcc1faeba9435e00330c3d6962858711445cf1e817/umap_learn-0.5.7-py3-none-any.whl", hash = "sha256:6a7e0be2facfa365a5ed6588447102bdbef32a0ef449535c25c97ea7e680073c", size = 88815, upload-time = "2024-10-28T18:05:55.333Z" }, +] + +[[package]] +name = "uri-template" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/31/c7/0336f2bd0bcbada6ccef7aaa25e443c118a704f828a0620c6fa0207c1b64/uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7", size = 21678, upload-time = "2023-06-21T01:49:05.374Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363", size = 11140, upload-time = "2023-06-21T01:49:03.467Z" }, +] + +[[package]] +name = "urllib3" +version = "2.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, +] + +[[package]] +name = "wcwidth" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/a2/8e3becb46433538a38726c948d3399905a4c7cabd0df578ede5dc51f0ec2/wcwidth-0.6.0.tar.gz", hash = "sha256:cdc4e4262d6ef9a1a57e018384cbeb1208d8abbc64176027e2c2455c81313159", size = 159684, upload-time = "2026-02-06T19:19:40.919Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/5a/199c59e0a824a3db2b89c5d2dade7ab5f9624dbf6448dc291b46d5ec94d3/wcwidth-0.6.0-py3-none-any.whl", hash = "sha256:1a3a1e510b553315f8e146c54764f4fb6264ffad731b3d78088cdb1478ffbdad", size = 94189, upload-time = "2026-02-06T19:19:39.646Z" }, +] + +[[package]] +name = "webcolors" +version = "25.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/7a/eb316761ec35664ea5174709a68bbd3389de60d4a1ebab8808bfc264ed67/webcolors-25.10.0.tar.gz", hash = "sha256:62abae86504f66d0f6364c2a8520de4a0c47b80c03fc3a5f1815fedbef7c19bf", size = 53491, upload-time = "2025-10-31T07:51:03.977Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/cc/e097523dd85c9cf5d354f78310927f1656c422bd7b2613b2db3e3f9a0f2c/webcolors-25.10.0-py3-none-any.whl", hash = "sha256:032c727334856fc0b968f63daa252a1ac93d33db2f5267756623c210e57a4f1d", size = 14905, upload-time = "2025-10-31T07:51:01.778Z" }, +] + +[[package]] +name = "webencodings" +version = "0.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923", size = 9721, upload-time = "2017-04-05T20:21:34.189Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78", size = 11774, upload-time = "2017-04-05T20:21:32.581Z" }, +] + +[[package]] +name = "websocket-client" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2c/41/aa4bf9664e4cda14c3b39865b12251e8e7d239f4cd0e3cc1b6c2ccde25c1/websocket_client-1.9.0.tar.gz", hash = "sha256:9e813624b6eb619999a97dc7958469217c3176312b3a16a4bd1bc7e08a46ec98", size = 70576, upload-time = "2025-10-07T21:16:36.495Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl", hash = "sha256:af248a825037ef591efbf6ed20cc5faa03d3b47b9e5a2230a529eeee1c1fc3ef", size = 82616, upload-time = "2025-10-07T21:16:34.951Z" }, +] + +[[package]] +name = "werkzeug" +version = "3.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/dd/b2/381be8cfdee792dd117872481b6e378f85c957dd7c5bca38897b08f765fd/werkzeug-3.1.8.tar.gz", hash = "sha256:9bad61a4268dac112f1c5cd4630a56ede601b6ed420300677a869083d70a4c44", size = 875852, upload-time = "2026-04-02T18:49:14.268Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/8c/2e650f2afeb7ee576912636c23ddb621c91ac6a98e66dc8d29c3c69446e1/werkzeug-3.1.8-py3-none-any.whl", hash = "sha256:63a77fb8892bf28ebc3178683445222aa500e48ebad5ec77b0ad80f8726b1f50", size = 226459, upload-time = "2026-04-02T18:49:12.72Z" }, +] + +[[package]] +name = "wheel" +version = "0.46.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/89/24/a2eb353a6edac9a0303977c4cb048134959dd2a51b48a269dfc9dde00c8a/wheel-0.46.3.tar.gz", hash = "sha256:e3e79874b07d776c40bd6033f8ddf76a7dad46a7b8aa1b2787a83083519a1803", size = 60605, upload-time = "2026-01-22T12:39:49.136Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/22/b76d483683216dde3d67cba61fb2444be8d5be289bf628c13fc0fd90e5f9/wheel-0.46.3-py3-none-any.whl", hash = "sha256:4b399d56c9d9338230118d705d9737a2a468ccca63d5e813e2a4fc7815d8bc4d", size = 30557, upload-time = "2026-01-22T12:39:48.099Z" }, +] + +[[package]] +name = "widgetsnbextension" +version = "4.0.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/f4/c67440c7fb409a71b7404b7aefcd7569a9c0d6bd071299bf4198ae7a5d95/widgetsnbextension-4.0.15.tar.gz", hash = "sha256:de8610639996f1567952d763a5a41af8af37f2575a41f9852a38f947eb82a3b9", size = 1097402, upload-time = "2025-11-01T21:15:55.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/0e/fa3b193432cfc60c93b42f3be03365f5f909d2b3ea410295cf36df739e31/widgetsnbextension-4.0.15-py3-none-any.whl", hash = "sha256:8156704e4346a571d9ce73b84bee86a29906c9abfd7223b7228a28899ccf3366", size = 2196503, upload-time = "2025-11-01T21:15:53.565Z" }, +] + +[[package]] +name = "wrapt" +version = "1.14.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/23/49/925324e2eaa0c83c45b7a1eb31004af4ad7b37fdc1d9e897ea7d551215da/wrapt-1.14.2.tar.gz", hash = "sha256:19d33781d891c99b5a35f810656d2fe01765b35ccfb6d395007d2edb1058d98f", size = 50701, upload-time = "2025-08-12T06:59:02.334Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ad/3f/12f70730cf9237e07aa5887bdb3e3695fd68e7e0d6dd66b5dd7a8794724a/wrapt-1.14.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:734de7e0182d15f03eb4f4fce0ff7f07a072119a19cdcc97c40aee96d10fe851", size = 35836, upload-time = "2025-08-12T06:58:20.535Z" }, + { url = "https://files.pythonhosted.org/packages/f1/95/5e261ed720bdddf9bbfea2b9bbd30bd03e298b02267333a231592a0cef7b/wrapt-1.14.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:851ded3662733bab093297a0adb844c71e7754b8c144f76bb569ac6544a7c27a", size = 76907, upload-time = "2025-08-12T06:58:39.06Z" }, + { url = "https://files.pythonhosted.org/packages/18/ed/fcf75886924473ebc11ded6f589f9f715bd605a787201e8b9b1f34b958a7/wrapt-1.14.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4f7b9a0364edef5a3033307cde69f7c3775a74eb83caeff8955e72ec3e0963fe", size = 77665, upload-time = "2025-08-12T06:58:29.329Z" }, + { url = "https://files.pythonhosted.org/packages/16/de/e9205650d0c8401c4e2cc2a01edc89ce3fabda219e2efabcc71d92d02a70/wrapt-1.14.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3066203bf6e35a040c848143636e6fc2aa4ad6fb2b027a956f462083a3b635ea", size = 76401, upload-time = "2025-08-12T06:58:30.309Z" }, + { url = "https://files.pythonhosted.org/packages/ba/e6/e3b79ba90e7b3a7c1915dbecb84aa491dc0a16238216dae5137bb0d85689/wrapt-1.14.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:072684f6264ca83695d1c7ad601e61b17953351b0950790cd50c327402006492", size = 76360, upload-time = "2025-08-12T06:58:40.019Z" }, + { url = "https://files.pythonhosted.org/packages/35/07/fe53594e194b133b29b0808c40f1ad92773186c314dbb5b1bf5bb9a4e34a/wrapt-1.14.2-cp310-cp310-win32.whl", hash = "sha256:26c36d922c70de7ae7e933d0f9a10b4017d007d505f60fe02efa8e260a6c7af4", size = 33681, upload-time = "2025-08-12T06:58:52.611Z" }, + { url = "https://files.pythonhosted.org/packages/12/68/134031baba6e1ba7dbdf2a217e99feb7177a2ad860b19f3ba319d40e0baf/wrapt-1.14.2-cp310-cp310-win_amd64.whl", hash = "sha256:ead0c5373df2c551347c7f71903a6403efb391506e1e349704ec21fe797e59bf", size = 35811, upload-time = "2025-08-12T06:58:51.696Z" }, + { url = "https://files.pythonhosted.org/packages/b7/c7/7376998449689cf2adbdbeacad47084410d00f3ae04cf73e6127cf52b950/wrapt-1.14.2-py3-none-any.whl", hash = "sha256:82eea3b559f51f22aefc530b747b87406811ef00cb0c4734f48cb139c748db63", size = 21577, upload-time = "2025-08-12T06:59:01.408Z" }, +] + +[[package]] +name = "xgboost" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "nvidia-nccl-cu12", marker = "sys_platform == 'linux'" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/91/bb/1eb0242409d22db725d7a88088e6cfd6556829fb0736f9ff69aa9f1e9455/xgboost-3.2.0.tar.gz", hash = "sha256:99b0e9a2a64896cdaf509c5e46372d336c692406646d20f2af505003c0c5d70d", size = 1263936, upload-time = "2026-02-10T11:03:05.542Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/49/6e4cdd877c24adf56cb3586bc96d93d4dcd780b5ea1efb32e1ee0de08bae/xgboost-3.2.0-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:2f661966d3e322536d9c448090a870fcba1e32ee5760c10b7c46bac7a342079a", size = 2507014, upload-time = "2026-02-10T10:50:57.44Z" }, + { url = "https://files.pythonhosted.org/packages/93/f1/c09ef1add609453aa3ba5bafcd0d1c1a805c1263c0b60138ec968f8ec296/xgboost-3.2.0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:eabbd40d474b8dbf6cb3536325f9150b9e6f0db32d18de9914fb3227d0bef5b7", size = 2328527, upload-time = "2026-02-10T10:51:17.502Z" }, + { url = "https://files.pythonhosted.org/packages/96/9f/d9914a7b8df842832850b1a18e5f47aaa071c217cdd1da2ae9deb291018b/xgboost-3.2.0-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:852eabc6d3b3702a59bf78dbfdcd1cb9c4d3a3b6e5ed1f8781d8b9512354fdd2", size = 131100954, upload-time = "2026-02-10T11:02:42.704Z" }, + { url = "https://files.pythonhosted.org/packages/79/98/679de17c2caa4fd3b0b4386ecf7377301702cb0afb22930a07c142fcb1d8/xgboost-3.2.0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:99b4a6bbcb47212fec5cf5fbe12347215f073c08967431b0122cfbd1ee70312c", size = 131748579, upload-time = "2026-02-10T10:54:40.424Z" }, + { url = "https://files.pythonhosted.org/packages/1f/3d/1661dd114a914a67e3f7ab66fa1382e7599c2a8c340f314ad30a3e2b4d08/xgboost-3.2.0-py3-none-win_amd64.whl", hash = "sha256:0d169736fd836fc13646c7ab787167b3a8110351c2c6bc770c755ee1618f0442", size = 101681668, upload-time = "2026-02-10T10:59:31.202Z" }, +] + +[[package]] +name = "xxhash" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/02/84/30869e01909fb37a6cc7e18688ee8bf1e42d57e7e0777636bd47524c43c7/xxhash-3.6.0.tar.gz", hash = "sha256:f0162a78b13a0d7617b2845b90c763339d1f1d82bb04a4b07f4ab535cc5e05d6", size = 85160, upload-time = "2025-10-02T14:37:08.097Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/ee/f9f1d656ad168681bb0f6b092372c1e533c4416b8069b1896a175c46e484/xxhash-3.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:87ff03d7e35c61435976554477a7f4cd1704c3596a89a8300d5ce7fc83874a71", size = 32845, upload-time = "2025-10-02T14:33:51.573Z" }, + { url = "https://files.pythonhosted.org/packages/a3/b1/93508d9460b292c74a09b83d16750c52a0ead89c51eea9951cb97a60d959/xxhash-3.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f572dfd3d0e2eb1a57511831cf6341242f5a9f8298a45862d085f5b93394a27d", size = 30807, upload-time = "2025-10-02T14:33:52.964Z" }, + { url = "https://files.pythonhosted.org/packages/07/55/28c93a3662f2d200c70704efe74aab9640e824f8ce330d8d3943bf7c9b3c/xxhash-3.6.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:89952ea539566b9fed2bbd94e589672794b4286f342254fad28b149f9615fef8", size = 193786, upload-time = "2025-10-02T14:33:54.272Z" }, + { url = "https://files.pythonhosted.org/packages/c1/96/fec0be9bb4b8f5d9c57d76380a366f31a1781fb802f76fc7cda6c84893c7/xxhash-3.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:48e6f2ffb07a50b52465a1032c3cf1f4a5683f944acaca8a134a2f23674c2058", size = 212830, upload-time = "2025-10-02T14:33:55.706Z" }, + { url = "https://files.pythonhosted.org/packages/c4/a0/c706845ba77b9611f81fd2e93fad9859346b026e8445e76f8c6fd057cc6d/xxhash-3.6.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b5b848ad6c16d308c3ac7ad4ba6bede80ed5df2ba8ed382f8932df63158dd4b2", size = 211606, upload-time = "2025-10-02T14:33:57.133Z" }, + { url = "https://files.pythonhosted.org/packages/67/1e/164126a2999e5045f04a69257eea946c0dc3e86541b400d4385d646b53d7/xxhash-3.6.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a034590a727b44dd8ac5914236a7b8504144447a9682586c3327e935f33ec8cc", size = 444872, upload-time = "2025-10-02T14:33:58.446Z" }, + { url = "https://files.pythonhosted.org/packages/2d/4b/55ab404c56cd70a2cf5ecfe484838865d0fea5627365c6c8ca156bd09c8f/xxhash-3.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8a8f1972e75ebdd161d7896743122834fe87378160c20e97f8b09166213bf8cc", size = 193217, upload-time = "2025-10-02T14:33:59.724Z" }, + { url = "https://files.pythonhosted.org/packages/45/e6/52abf06bac316db33aa269091ae7311bd53cfc6f4b120ae77bac1b348091/xxhash-3.6.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ee34327b187f002a596d7b167ebc59a1b729e963ce645964bbc050d2f1b73d07", size = 210139, upload-time = "2025-10-02T14:34:02.041Z" }, + { url = "https://files.pythonhosted.org/packages/34/37/db94d490b8691236d356bc249c08819cbcef9273a1a30acf1254ff9ce157/xxhash-3.6.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:339f518c3c7a850dd033ab416ea25a692759dc7478a71131fe8869010d2b75e4", size = 197669, upload-time = "2025-10-02T14:34:03.664Z" }, + { url = "https://files.pythonhosted.org/packages/b7/36/c4f219ef4a17a4f7a64ed3569bc2b5a9c8311abdb22249ac96093625b1a4/xxhash-3.6.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:bf48889c9630542d4709192578aebbd836177c9f7a4a2778a7d6340107c65f06", size = 210018, upload-time = "2025-10-02T14:34:05.325Z" }, + { url = "https://files.pythonhosted.org/packages/fd/06/bfac889a374fc2fc439a69223d1750eed2e18a7db8514737ab630534fa08/xxhash-3.6.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:5576b002a56207f640636056b4160a378fe36a58db73ae5c27a7ec8db35f71d4", size = 413058, upload-time = "2025-10-02T14:34:06.925Z" }, + { url = "https://files.pythonhosted.org/packages/c9/d1/555d8447e0dd32ad0930a249a522bb2e289f0d08b6b16204cfa42c1f5a0c/xxhash-3.6.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:af1f3278bd02814d6dedc5dec397993b549d6f16c19379721e5a1d31e132c49b", size = 190628, upload-time = "2025-10-02T14:34:08.669Z" }, + { url = "https://files.pythonhosted.org/packages/d1/15/8751330b5186cedc4ed4b597989882ea05e0408b53fa47bcb46a6125bfc6/xxhash-3.6.0-cp310-cp310-win32.whl", hash = "sha256:aed058764db109dc9052720da65fafe84873b05eb8b07e5e653597951af57c3b", size = 30577, upload-time = "2025-10-02T14:34:10.234Z" }, + { url = "https://files.pythonhosted.org/packages/bb/cc/53f87e8b5871a6eb2ff7e89c48c66093bda2be52315a8161ddc54ea550c4/xxhash-3.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:e82da5670f2d0d98950317f82a0e4a0197150ff19a6df2ba40399c2a3b9ae5fb", size = 31487, upload-time = "2025-10-02T14:34:11.618Z" }, + { url = "https://files.pythonhosted.org/packages/9f/00/60f9ea3bb697667a14314d7269956f58bf56bb73864f8f8d52a3c2535e9a/xxhash-3.6.0-cp310-cp310-win_arm64.whl", hash = "sha256:4a082ffff8c6ac07707fb6b671caf7c6e020c75226c561830b73d862060f281d", size = 27863, upload-time = "2025-10-02T14:34:12.619Z" }, +] + +[[package]] +name = "xyzservices" +version = "2026.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/08/3cb9f67a8d48021aca2a02292cc26eecd71d949ae70ad66420a8730cc302/xyzservices-2026.3.0.tar.gz", hash = "sha256:d226866a5d8e9fef337034d8da37a8298f0a1d9d1489b4018e69579eb321fea4", size = 1135736, upload-time = "2026-03-30T14:42:25.596Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/a9/d23012099dc88ec69a29c6407b41d89681cb674c2043cd5b467c7e299c08/xyzservices-2026.3.0-py3-none-any.whl", hash = "sha256:503183d4b322bfebc3c50cdd21192aa3e81e36c5efbf9133d54ae82143e0576b", size = 94101, upload-time = "2026-03-30T14:42:24.608Z" }, +] + +[[package]] +name = "yarl" +version = "1.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "multidict" }, + { name = "propcache" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/23/6e/beb1beec874a72f23815c1434518bfc4ed2175065173fb138c3705f658d4/yarl-1.23.0.tar.gz", hash = "sha256:53b1ea6ca88ebd4420379c330aea57e258408dd0df9af0992e5de2078dc9f5d5", size = 194676, upload-time = "2026-03-01T22:07:53.373Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/0d/9cc638702f6fc3c7a3685bcc8cf2a9ed7d6206e932a49f5242658047ef51/yarl-1.23.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cff6d44cb13d39db2663a22b22305d10855efa0fa8015ddeacc40bc59b9d8107", size = 123764, upload-time = "2026-03-01T22:04:09.7Z" }, + { url = "https://files.pythonhosted.org/packages/7a/35/5a553687c5793df5429cd1db45909d4f3af7eee90014888c208d086a44f0/yarl-1.23.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e4c53f8347cd4200f0d70a48ad059cabaf24f5adc6ba08622a23423bc7efa10d", size = 86282, upload-time = "2026-03-01T22:04:11.892Z" }, + { url = "https://files.pythonhosted.org/packages/68/2e/c5a2234238f8ce37a8312b52801ee74117f576b1539eec8404a480434acc/yarl-1.23.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2a6940a074fb3c48356ed0158a3ca5699c955ee4185b4d7d619be3c327143e05", size = 86053, upload-time = "2026-03-01T22:04:13.292Z" }, + { url = "https://files.pythonhosted.org/packages/74/3f/bbd8ff36fb038622797ffbaf7db314918bb4d76f1cc8a4f9ca7a55fe5195/yarl-1.23.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ed5f69ce7be7902e5c70ea19eb72d20abf7d725ab5d49777d696e32d4fc1811d", size = 99395, upload-time = "2026-03-01T22:04:15.133Z" }, + { url = "https://files.pythonhosted.org/packages/77/04/9516bc4e269d2a3ec9c6779fcdeac51ce5b3a9b0156f06ac7152e5bba864/yarl-1.23.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:389871e65468400d6283c0308e791a640b5ab5c83bcee02a2f51295f95e09748", size = 92143, upload-time = "2026-03-01T22:04:16.829Z" }, + { url = "https://files.pythonhosted.org/packages/c7/63/88802d1f6b1cb1fc67d67a58cd0cf8a1790de4ce7946e434240f1d60ab4a/yarl-1.23.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:dda608c88cf709b1d406bdfcd84d8d63cff7c9e577a403c6108ce8ce9dcc8764", size = 107643, upload-time = "2026-03-01T22:04:18.519Z" }, + { url = "https://files.pythonhosted.org/packages/8e/db/4f9b838f4d8bdd6f0f385aed8bbf21c71ed11a0b9983305c302cbd557815/yarl-1.23.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8c4fe09e0780c6c3bf2b7d4af02ee2394439d11a523bbcf095cf4747c2932007", size = 108700, upload-time = "2026-03-01T22:04:20.373Z" }, + { url = "https://files.pythonhosted.org/packages/50/12/95a1d33f04a79c402664070d43b8b9f72dc18914e135b345b611b0b1f8cc/yarl-1.23.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:31c9921eb8bd12633b41ad27686bbb0b1a2a9b8452bfdf221e34f311e9942ed4", size = 102769, upload-time = "2026-03-01T22:04:23.055Z" }, + { url = "https://files.pythonhosted.org/packages/86/65/91a0285f51321369fd1a8308aa19207520c5f0587772cfc2e03fc2467e90/yarl-1.23.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5f10fd85e4b75967468af655228fbfd212bdf66db1c0d135065ce288982eda26", size = 101114, upload-time = "2026-03-01T22:04:25.031Z" }, + { url = "https://files.pythonhosted.org/packages/58/80/c7c8244fc3e5bc483dc71a09560f43b619fab29301a0f0a8f936e42865c7/yarl-1.23.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dbf507e9ef5688bada447a24d68b4b58dd389ba93b7afc065a2ba892bea54769", size = 98883, upload-time = "2026-03-01T22:04:27.281Z" }, + { url = "https://files.pythonhosted.org/packages/86/e7/71ca9cc9ca79c0b7d491216177d1aed559d632947b8ffb0ee60f7d8b23e3/yarl-1.23.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:85e9beda1f591bc73e77ea1c51965c68e98dafd0fec72cdd745f77d727466716", size = 94172, upload-time = "2026-03-01T22:04:28.554Z" }, + { url = "https://files.pythonhosted.org/packages/6a/3f/6c6c8a0fe29c26fb2db2e8d32195bb84ec1bfb8f1d32e7f73b787fcf349b/yarl-1.23.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:0e1fdaa14ef51366d7757b45bde294e95f6c8c049194e793eedb8387c86d5993", size = 107010, upload-time = "2026-03-01T22:04:30.385Z" }, + { url = "https://files.pythonhosted.org/packages/56/38/12730c05e5ad40a76374d440ed8b0899729a96c250516d91c620a6e38fc2/yarl-1.23.0-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:75e3026ab649bf48f9a10c0134512638725b521340293f202a69b567518d94e0", size = 100285, upload-time = "2026-03-01T22:04:31.752Z" }, + { url = "https://files.pythonhosted.org/packages/34/92/6a7be9239f2347234e027284e7a5f74b1140cc86575e7b469d13fba1ebfe/yarl-1.23.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:80e6d33a3d42a7549b409f199857b4fb54e2103fc44fb87605b6663b7a7ff750", size = 108230, upload-time = "2026-03-01T22:04:33.844Z" }, + { url = "https://files.pythonhosted.org/packages/5e/81/4aebccfa9376bd98b9d8bfad20621a57d3e8cfc5b8631c1fa5f62cdd03f4/yarl-1.23.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5ec2f42d41ccbd5df0270d7df31618a8ee267bfa50997f5d720ddba86c4a83a6", size = 103008, upload-time = "2026-03-01T22:04:35.856Z" }, + { url = "https://files.pythonhosted.org/packages/38/0f/0b4e3edcec794a86b853b0c6396c0a888d72dfce19b2d88c02ac289fb6c1/yarl-1.23.0-cp310-cp310-win32.whl", hash = "sha256:debe9c4f41c32990771be5c22b56f810659f9ddf3d63f67abfdcaa2c6c9c5c1d", size = 83073, upload-time = "2026-03-01T22:04:38.268Z" }, + { url = "https://files.pythonhosted.org/packages/a0/71/ad95c33da18897e4c636528bbc24a1dd23fe16797de8bc4ec667b8db0ba4/yarl-1.23.0-cp310-cp310-win_amd64.whl", hash = "sha256:ab5f043cb8a2d71c981c09c510da013bc79fd661f5c60139f00dd3c3cc4f2ffb", size = 87328, upload-time = "2026-03-01T22:04:39.558Z" }, + { url = "https://files.pythonhosted.org/packages/e2/14/dfa369523c79bccf9c9c746b0a63eb31f65db9418ac01275f7950962e504/yarl-1.23.0-cp310-cp310-win_arm64.whl", hash = "sha256:263cd4f47159c09b8b685890af949195b51d1aa82ba451c5847ca9bc6413c220", size = 82463, upload-time = "2026-03-01T22:04:41.454Z" }, + { url = "https://files.pythonhosted.org/packages/69/68/c8739671f5699c7dc470580a4f821ef37c32c4cb0b047ce223a7f115757f/yarl-1.23.0-py3-none-any.whl", hash = "sha256:a2df6afe50dea8ae15fa34c9f824a3ee958d785fd5d089063d960bae1daa0a3f", size = 48288, upload-time = "2026-03-01T22:07:51.388Z" }, +] diff --git a/uv.lock.mchip b/uv.lock.mchip new file mode 100644 index 00000000..06be863c --- /dev/null +++ b/uv.lock.mchip @@ -0,0 +1,3859 @@ +version = 1 +revision = 3 +requires-python = "==3.10.*" + +[[package]] +name = "absl-py" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/64/c7/8de93764ad66968d19329a7e0c147a2bb3c7054c554d4a119111b8f9440f/absl_py-2.4.0.tar.gz", hash = "sha256:8c6af82722b35cf71e0f4d1d47dcaebfff286e27110a99fc359349b247dfb5d4", size = 116543, upload-time = "2026-01-28T10:17:05.322Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/a6/907a406bb7d359e6a63f99c313846d9eec4f7e6f7437809e03aa00fa3074/absl_py-2.4.0-py3-none-any.whl", hash = "sha256:88476fd881ca8aab94ffa78b7b6c632a782ab3ba1cd19c9bd423abc4fb4cd28d", size = 135750, upload-time = "2026-01-28T10:17:04.19Z" }, +] + +[[package]] +name = "affine" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/98/d2f0bb06385069e799fc7d2870d9e078cfa0fa396dc8a2b81227d0da08b9/affine-2.4.0.tar.gz", hash = "sha256:a24d818d6a836c131976d22f8c27b8d3ca32d0af64c1d8d29deb7bafa4da1eea", size = 17132, upload-time = "2023-01-19T23:44:30.696Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/f7/85273299ab57117850cc0a936c64151171fac4da49bc6fba0dad984a7c5f/affine-2.4.0-py3-none-any.whl", hash = "sha256:8a3df80e2b2378aef598a83c1392efd47967afec4242021a0b06b4c7cbc61a92", size = 15662, upload-time = "2023-01-19T23:44:28.833Z" }, +] + +[[package]] +name = "aiohappyeyeballs" +version = "2.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/30/f84a107a9c4331c14b2b586036f40965c128aa4fee4dda5d3d51cb14ad54/aiohappyeyeballs-2.6.1.tar.gz", hash = "sha256:c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558", size = 22760, upload-time = "2025-03-12T01:42:48.764Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/15/5bf3b99495fb160b63f95972b81750f18f7f4e02ad051373b669d17d44f2/aiohappyeyeballs-2.6.1-py3-none-any.whl", hash = "sha256:f349ba8f4b75cb25c99c5c2d84e997e485204d2902a9597802b0371f09331fb8", size = 15265, upload-time = "2025-03-12T01:42:47.083Z" }, +] + +[[package]] +name = "aiohttp" +version = "3.13.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs" }, + { name = "aiosignal" }, + { name = "async-timeout" }, + { name = "attrs" }, + { name = "frozenlist" }, + { name = "multidict" }, + { name = "propcache" }, + { name = "yarl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/77/9a/152096d4808df8e4268befa55fba462f440f14beab85e8ad9bf990516918/aiohttp-3.13.5.tar.gz", hash = "sha256:9d98cc980ecc96be6eb4c1994ce35d28d8b1f5e5208a23b421187d1209dbb7d1", size = 7858271, upload-time = "2026-03-31T22:01:03.343Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/85/cebc47ee74d8b408749073a1a46c6fcba13d170dc8af7e61996c6c9394ac/aiohttp-3.13.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:02222e7e233295f40e011c1b00e3b0bd451f22cf853a0304c3595633ee47da4b", size = 750547, upload-time = "2026-03-31T21:56:30.024Z" }, + { url = "https://files.pythonhosted.org/packages/05/98/afd308e35b9d3d8c9ec54c0918f1d722c86dc17ddfec272fcdbcce5a3124/aiohttp-3.13.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bace460460ed20614fa6bc8cb09966c0b8517b8c58ad8046828c6078d25333b5", size = 503535, upload-time = "2026-03-31T21:56:31.935Z" }, + { url = "https://files.pythonhosted.org/packages/6f/4d/926c183e06b09d5270a309eb50fbde7b09782bfd305dec1e800f329834fb/aiohttp-3.13.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f546a4dc1e6a5edbb9fd1fd6ad18134550e096a5a43f4ad74acfbd834fc6670", size = 497830, upload-time = "2026-03-31T21:56:33.654Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d6/f47d1c690f115a5c2a5e8938cce4a232a5be9aac5c5fb2647efcbbbda333/aiohttp-3.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c86969d012e51b8e415a8c6ce96f7857d6a87d6207303ab02d5d11ef0cad2274", size = 1682474, upload-time = "2026-03-31T21:56:35.513Z" }, + { url = "https://files.pythonhosted.org/packages/01/44/056fd37b1bb52eac760303e5196acc74d9d546631b035704ae5927f7b4ac/aiohttp-3.13.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b6f6cd1560c5fa427e3b6074bb24d2c64e225afbb7165008903bd42e4e33e28a", size = 1655259, upload-time = "2026-03-31T21:56:37.843Z" }, + { url = "https://files.pythonhosted.org/packages/91/9f/78eb1a20c1c28ae02f6a3c0f4d7b0dcc66abce5290cadd53d78ce3084175/aiohttp-3.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:636bc362f0c5bbc7372bc3ae49737f9e3030dbce469f0f422c8f38079780363d", size = 1736204, upload-time = "2026-03-31T21:56:39.822Z" }, + { url = "https://files.pythonhosted.org/packages/de/6c/d20d7de23f0b52b8c1d9e2033b2db1ac4dacbb470bb74c56de0f5f86bb4f/aiohttp-3.13.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6a7cbeb06d1070f1d14895eeeed4dac5913b22d7b456f2eb969f11f4b3993796", size = 1826198, upload-time = "2026-03-31T21:56:41.378Z" }, + { url = "https://files.pythonhosted.org/packages/2f/86/a6f3ff1fd795f49545a7c74b2c92f62729135d73e7e4055bf74da5a26c82/aiohttp-3.13.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bca9ef7517fd7874a1a08970ae88f497bf5c984610caa0bf40bd7e8450852b95", size = 1681329, upload-time = "2026-03-31T21:56:43.374Z" }, + { url = "https://files.pythonhosted.org/packages/fb/68/84cd3dab6b7b4f3e6fe9459a961acb142aaab846417f6e8905110d7027e5/aiohttp-3.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:019a67772e034a0e6b9b17c13d0a8fe56ad9fb150fc724b7f3ffd3724288d9e5", size = 1560023, upload-time = "2026-03-31T21:56:45.031Z" }, + { url = "https://files.pythonhosted.org/packages/41/2c/db61b64b0249e30f954a65ab4cb4970ced57544b1de2e3c98ee5dc24165f/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f34ecee82858e41dd217734f0c41a532bd066bcaab636ad830f03a30b2a96f2a", size = 1652372, upload-time = "2026-03-31T21:56:47.075Z" }, + { url = "https://files.pythonhosted.org/packages/25/6f/e96988a6c982d047810c772e28c43c64c300c943b0ed5c1c0c4ce1e1027c/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:4eac02d9af4813ee289cd63a361576da36dba57f5a1ab36377bc2600db0cbb73", size = 1662031, upload-time = "2026-03-31T21:56:48.835Z" }, + { url = "https://files.pythonhosted.org/packages/b7/26/a56feace81f3d347b4052403a9d03754a0ab23f7940780dada0849a38c92/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4beac52e9fe46d6abf98b0176a88154b742e878fdf209d2248e99fcdf73cd297", size = 1708118, upload-time = "2026-03-31T21:56:50.833Z" }, + { url = "https://files.pythonhosted.org/packages/78/6e/b6173a8ff03d01d5e1a694bc06764b5dad1df2d4ed8f0ceec12bb3277936/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:c180f480207a9b2475f2b8d8bd7204e47aec952d084b2a2be58a782ffcf96074", size = 1548667, upload-time = "2026-03-31T21:56:52.81Z" }, + { url = "https://files.pythonhosted.org/packages/16/13/13296ffe2c132d888b3fe2c195c8b9c0c24c89c3fa5cc2c44464dc23b22e/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2837fb92951564d6339cedae4a7231692aa9f73cbc4fb2e04263b96844e03b4e", size = 1724490, upload-time = "2026-03-31T21:56:54.541Z" }, + { url = "https://files.pythonhosted.org/packages/7a/b4/1f1c287f4a79782ef36e5a6e62954c85343bc30470d862d30bd5f26c9fa2/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d9010032a0b9710f58012a1e9c222528763d860ba2ee1422c03473eab47703e7", size = 1667109, upload-time = "2026-03-31T21:56:56.21Z" }, + { url = "https://files.pythonhosted.org/packages/ef/42/8461a2aaf60a8f4ea4549a4056be36b904b0eb03d97ca9a8a2604681a500/aiohttp-3.13.5-cp310-cp310-win32.whl", hash = "sha256:7c4b6668b2b2b9027f209ddf647f2a4407784b5d88b8be4efcc72036f365baf9", size = 439478, upload-time = "2026-03-31T21:56:58.292Z" }, + { url = "https://files.pythonhosted.org/packages/e5/71/06956304cb5ee439dfe8d86e1b2e70088bd88ed1ced1f42fb29e5d855f0e/aiohttp-3.13.5-cp310-cp310-win_amd64.whl", hash = "sha256:cd3db5927bf9167d5a6157ddb2f036f6b6b0ad001ac82355d43e97a4bde76d76", size = 462047, upload-time = "2026-03-31T21:57:00.257Z" }, +] + +[[package]] +name = "aiosignal" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, +] + +[[package]] +name = "alabaster" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a6/f8/d9c74d0daf3f742840fd818d69cfae176fa332022fd44e3469487d5a9420/alabaster-1.0.0.tar.gz", hash = "sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e", size = 24210, upload-time = "2024-07-26T18:15:03.762Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b", size = 13929, upload-time = "2024-07-26T18:15:02.05Z" }, +] + +[[package]] +name = "alembic" +version = "1.18.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mako" }, + { name = "sqlalchemy" }, + { name = "tomli" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/94/13/8b084e0f2efb0275a1d534838844926f798bd766566b1375174e2448cd31/alembic-1.18.4.tar.gz", hash = "sha256:cb6e1fd84b6174ab8dbb2329f86d631ba9559dd78df550b57804d607672cedbc", size = 2056725, upload-time = "2026-02-10T16:00:47.195Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/29/6533c317b74f707ea28f8d633734dbda2119bbadfc61b2f3640ba835d0f7/alembic-1.18.4-py3-none-any.whl", hash = "sha256:a5ed4adcf6d8a4cb575f3d759f071b03cd6e5c7618eb796cb52497be25bfe19a", size = 263893, upload-time = "2026-02-10T16:00:49.997Z" }, +] + +[[package]] +name = "anyio" +version = "4.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "exceptiongroup" }, + { name = "idna" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/14/2c5dd9f512b66549ae92767a9c7b330ae88e1932ca57876909410251fe13/anyio-4.13.0.tar.gz", hash = "sha256:334b70e641fd2221c1505b3890c69882fe4a2df910cba14d97019b90b24439dc", size = 231622, upload-time = "2026-03-24T12:59:09.671Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/42/e921fccf5015463e32a3cf6ee7f980a6ed0f395ceeaa45060b61d86486c2/anyio-4.13.0-py3-none-any.whl", hash = "sha256:08b310f9e24a9594186fd75b4f73f4a4152069e3853f1ed8bfbf58369f4ad708", size = 114353, upload-time = "2026-03-24T12:59:08.246Z" }, +] + +[[package]] +name = "appnope" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/5d/752690df9ef5b76e169e68d6a129fa6d08a7100ca7f754c89495db3c6019/appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee", size = 4170, upload-time = "2024-02-06T09:43:11.258Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/29/5ecc3a15d5a33e31b26c11426c45c501e439cb865d0bff96315d86443b78/appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c", size = 4321, upload-time = "2024-02-06T09:43:09.663Z" }, +] + +[[package]] +name = "argon2-cffi" +version = "25.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "argon2-cffi-bindings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/89/ce5af8a7d472a67cc819d5d998aa8c82c5d860608c4db9f46f1162d7dab9/argon2_cffi-25.1.0.tar.gz", hash = "sha256:694ae5cc8a42f4c4e2bf2ca0e64e51e23a040c6a517a85074683d3959e1346c1", size = 45706, upload-time = "2025-06-03T06:55:32.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4f/d3/a8b22fa575b297cd6e3e3b0155c7e25db170edf1c74783d6a31a2490b8d9/argon2_cffi-25.1.0-py3-none-any.whl", hash = "sha256:fdc8b074db390fccb6eb4a3604ae7231f219aa669a2652e0f20e16ba513d5741", size = 14657, upload-time = "2025-06-03T06:55:30.804Z" }, +] + +[[package]] +name = "argon2-cffi-bindings" +version = "25.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/2d/db8af0df73c1cf454f71b2bbe5e356b8c1f8041c979f505b3d3186e520a9/argon2_cffi_bindings-25.1.0.tar.gz", hash = "sha256:b957f3e6ea4d55d820e40ff76f450952807013d361a65d7f28acc0acbf29229d", size = 1783441, upload-time = "2025-07-30T10:02:05.147Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/57/96b8b9f93166147826da5f90376e784a10582dd39a393c99bb62cfcf52f0/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:aecba1723ae35330a008418a91ea6cfcedf6d31e5fbaa056a166462ff066d500", size = 54121, upload-time = "2025-07-30T10:01:50.815Z" }, + { url = "https://files.pythonhosted.org/packages/0a/08/a9bebdb2e0e602dde230bdde8021b29f71f7841bd54801bcfd514acb5dcf/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2630b6240b495dfab90aebe159ff784d08ea999aa4b0d17efa734055a07d2f44", size = 29177, upload-time = "2025-07-30T10:01:51.681Z" }, + { url = "https://files.pythonhosted.org/packages/b6/02/d297943bcacf05e4f2a94ab6f462831dc20158614e5d067c35d4e63b9acb/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:7aef0c91e2c0fbca6fc68e7555aa60ef7008a739cbe045541e438373bc54d2b0", size = 31090, upload-time = "2025-07-30T10:01:53.184Z" }, + { url = "https://files.pythonhosted.org/packages/c1/93/44365f3d75053e53893ec6d733e4a5e3147502663554b4d864587c7828a7/argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e021e87faa76ae0d413b619fe2b65ab9a037f24c60a1e6cc43457ae20de6dc6", size = 81246, upload-time = "2025-07-30T10:01:54.145Z" }, + { url = "https://files.pythonhosted.org/packages/09/52/94108adfdd6e2ddf58be64f959a0b9c7d4ef2fa71086c38356d22dc501ea/argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d3e924cfc503018a714f94a49a149fdc0b644eaead5d1f089330399134fa028a", size = 87126, upload-time = "2025-07-30T10:01:55.074Z" }, + { url = "https://files.pythonhosted.org/packages/72/70/7a2993a12b0ffa2a9271259b79cc616e2389ed1a4d93842fac5a1f923ffd/argon2_cffi_bindings-25.1.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c87b72589133f0346a1cb8d5ecca4b933e3c9b64656c9d175270a000e73b288d", size = 80343, upload-time = "2025-07-30T10:01:56.007Z" }, + { url = "https://files.pythonhosted.org/packages/78/9a/4e5157d893ffc712b74dbd868c7f62365618266982b64accab26bab01edc/argon2_cffi_bindings-25.1.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:1db89609c06afa1a214a69a462ea741cf735b29a57530478c06eb81dd403de99", size = 86777, upload-time = "2025-07-30T10:01:56.943Z" }, + { url = "https://files.pythonhosted.org/packages/74/cd/15777dfde1c29d96de7f18edf4cc94c385646852e7c7b0320aa91ccca583/argon2_cffi_bindings-25.1.0-cp39-abi3-win32.whl", hash = "sha256:473bcb5f82924b1becbb637b63303ec8d10e84c8d241119419897a26116515d2", size = 27180, upload-time = "2025-07-30T10:01:57.759Z" }, + { url = "https://files.pythonhosted.org/packages/e2/c6/a759ece8f1829d1f162261226fbfd2c6832b3ff7657384045286d2afa384/argon2_cffi_bindings-25.1.0-cp39-abi3-win_amd64.whl", hash = "sha256:a98cd7d17e9f7ce244c0803cad3c23a7d379c301ba618a5fa76a67d116618b98", size = 31715, upload-time = "2025-07-30T10:01:58.56Z" }, + { url = "https://files.pythonhosted.org/packages/42/b9/f8d6fa329ab25128b7e98fd83a3cb34d9db5b059a9847eddb840a0af45dd/argon2_cffi_bindings-25.1.0-cp39-abi3-win_arm64.whl", hash = "sha256:b0fdbcf513833809c882823f98dc2f931cf659d9a1429616ac3adebb49f5db94", size = 27149, upload-time = "2025-07-30T10:01:59.329Z" }, + { url = "https://files.pythonhosted.org/packages/11/2d/ba4e4ca8d149f8dcc0d952ac0967089e1d759c7e5fcf0865a317eb680fbb/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:6dca33a9859abf613e22733131fc9194091c1fa7cb3e131c143056b4856aa47e", size = 24549, upload-time = "2025-07-30T10:02:00.101Z" }, + { url = "https://files.pythonhosted.org/packages/5c/82/9b2386cc75ac0bd3210e12a44bfc7fd1632065ed8b80d573036eecb10442/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:21378b40e1b8d1655dd5310c84a40fc19a9aa5e6366e835ceb8576bf0fea716d", size = 25539, upload-time = "2025-07-30T10:02:00.929Z" }, + { url = "https://files.pythonhosted.org/packages/31/db/740de99a37aa727623730c90d92c22c9e12585b3c98c54b7960f7810289f/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d588dec224e2a83edbdc785a5e6f3c6cd736f46bfd4b441bbb5aa1f5085e584", size = 28467, upload-time = "2025-07-30T10:02:02.08Z" }, + { url = "https://files.pythonhosted.org/packages/71/7a/47c4509ea18d755f44e2b92b7178914f0c113946d11e16e626df8eaa2b0b/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5acb4e41090d53f17ca1110c3427f0a130f944b896fc8c83973219c97f57b690", size = 27355, upload-time = "2025-07-30T10:02:02.867Z" }, + { url = "https://files.pythonhosted.org/packages/ee/82/82745642d3c46e7cea25e1885b014b033f4693346ce46b7f47483cf5d448/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:da0c79c23a63723aa5d782250fbf51b768abca630285262fb5144ba5ae01e520", size = 29187, upload-time = "2025-07-30T10:02:03.674Z" }, +] + +[[package]] +name = "arrow" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/33/032cdc44182491aa708d06a68b62434140d8c50820a087fac7af37703357/arrow-1.4.0.tar.gz", hash = "sha256:ed0cc050e98001b8779e84d461b0098c4ac597e88704a655582b21d116e526d7", size = 152931, upload-time = "2025-10-18T17:46:46.761Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/c9/d7977eaacb9df673210491da99e6a247e93df98c715fc43fd136ce1d3d33/arrow-1.4.0-py3-none-any.whl", hash = "sha256:749f0769958ebdc79c173ff0b0670d59051a535fa26e8eba02953dc19eb43205", size = 68797, upload-time = "2025-10-18T17:46:45.663Z" }, +] + +[[package]] +name = "asttokens" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/be/a5/8e3f9b6771b0b408517c82d97aed8f2036509bc247d46114925e32fe33f0/asttokens-3.0.1.tar.gz", hash = "sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7", size = 62308, upload-time = "2025-11-15T16:43:48.578Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/39/e7eaf1799466a4aef85b6a4fe7bd175ad2b1c6345066aa33f1f58d4b18d0/asttokens-3.0.1-py3-none-any.whl", hash = "sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a", size = 27047, upload-time = "2025-11-15T16:43:16.109Z" }, +] + +[[package]] +name = "astunparse" +version = "1.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, + { name = "wheel" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/af/4182184d3c338792894f34a62672919db7ca008c89abee9b564dd34d8029/astunparse-1.6.3.tar.gz", hash = "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872", size = 18290, upload-time = "2019-12-22T18:12:13.129Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/03/13dde6512ad7b4557eb792fbcf0c653af6076b81e5941d36ec61f7ce6028/astunparse-1.6.3-py2.py3-none-any.whl", hash = "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8", size = 12732, upload-time = "2019-12-22T18:12:11.297Z" }, +] + +[[package]] +name = "async-lru" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e8/1f/989ecfef8e64109a489fff357450cb73fa73a865a92bd8c272170a6922c2/async_lru-2.3.0.tar.gz", hash = "sha256:89bdb258a0140d7313cf8f4031d816a042202faa61d0ab310a0a538baa1c24b6", size = 16332, upload-time = "2026-03-19T01:04:32.413Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/e2/c2e3abf398f80732e58b03be77bde9022550d221dd8781bf586bd4d97cc1/async_lru-2.3.0-py3-none-any.whl", hash = "sha256:eea27b01841909316f2cc739807acea1c623df2be8c5cfad7583286397bb8315", size = 8403, upload-time = "2026-03-19T01:04:30.883Z" }, +] + +[[package]] +name = "async-timeout" +version = "5.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a5/ae/136395dfbfe00dfc94da3f3e136d0b13f394cba8f4841120e34226265780/async_timeout-5.0.1.tar.gz", hash = "sha256:d9321a7a3d5a6a5e187e824d2fa0793ce379a202935782d555d6e9d2735677d3", size = 9274, upload-time = "2024-11-06T16:41:39.6Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/ba/e2081de779ca30d473f21f5b30e0e737c438205440784c7dfc81efc2b029/async_timeout-5.0.1-py3-none-any.whl", hash = "sha256:39e3809566ff85354557ec2398b55e096c8364bacac9405a7a1fa429e77fe76c", size = 6233, upload-time = "2024-11-06T16:41:37.9Z" }, +] + +[[package]] +name = "atomsci-ampl" +source = { editable = "." } +dependencies = [ + { name = "bokeh" }, + { name = "bravado" }, + { name = "deepchem" }, + { name = "imbalanced-learn" }, + { name = "imblearn" }, + { name = "lightgbm" }, + { name = "lightning" }, + { name = "maestrowf" }, + { name = "matplotlib" }, + { name = "matplotlib-venn" }, + { name = "mordred" }, + { name = "numpy" }, + { name = "optuna" }, + { name = "pyarrow" }, + { name = "pydantic" }, + { name = "pyyaml" }, + { name = "rdkit" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "seaborn" }, + { name = "setuptools" }, + { name = "umap-learn" }, + { name = "xgboost" }, +] + +[package.optional-dependencies] +cpu = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow", marker = "sys_platform == 'darwin'" }, + { name = "tensorflow-cpu", marker = "sys_platform == 'linux'" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +cuda = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +docs = [ + { name = "ipython" }, + { name = "joblib" }, + { name = "pandas" }, + { name = "pygments" }, + { name = "sphinx" }, + { name = "sphinx-rtd-theme" }, +] +mchip = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow-macos" }, + { name = "tensorflow-metal" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +rocm = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] + +[package.dev-dependencies] +dev = [ + { name = "ipykernel" }, + { name = "jupyter" }, + { name = "jupyterlab" }, + { name = "matplotcheck" }, + { name = "pytest" }, + { name = "pytest-cov" }, + { name = "pytest-mock" }, + { name = "pytest-xdist" }, + { name = "ruff" }, +] +docker = [ + { name = "networkx" }, +] + +[package.metadata] +requires-dist = [ + { name = "bokeh" }, + { name = "bravado" }, + { name = "deepchem", specifier = "==2.8" }, + { name = "dgl", marker = "extra == 'cpu'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'cuda'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'mchip'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'rocm'", specifier = "==2.1.0" }, + { name = "dgllife", marker = "extra == 'cpu'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'cuda'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'mchip'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'rocm'", specifier = "==0.3.2" }, + { name = "imbalanced-learn" }, + { name = "imblearn" }, + { name = "ipython", marker = "extra == 'docs'" }, + { name = "joblib", marker = "extra == 'docs'" }, + { name = "lightgbm" }, + { name = "lightning", specifier = "==2.2.5" }, + { name = "maestrowf" }, + { name = "matplotlib" }, + { name = "matplotlib-venn" }, + { name = "mordred" }, + { name = "numpy", specifier = "<2" }, + { name = "optuna" }, + { name = "pandas", marker = "extra == 'docs'" }, + { name = "pyarrow" }, + { name = "pydantic", specifier = ">=1.10,<2" }, + { name = "pygments", marker = "extra == 'docs'" }, + { name = "pyyaml", specifier = ">=6.0" }, + { name = "rdkit", specifier = "==2024.3.5" }, + { name = "scikit-learn", specifier = "==1.2.2" }, + { name = "scipy", specifier = ">=1.10" }, + { name = "seaborn", specifier = ">=0.13.0" }, + { name = "setuptools" }, + { name = "sphinx", marker = "extra == 'docs'" }, + { name = "sphinx-rtd-theme", marker = "extra == 'docs'" }, + { name = "tensorflow", marker = "sys_platform == 'darwin' and extra == 'cpu'", specifier = "~=2.14.0" }, + { name = "tensorflow", marker = "extra == 'cuda'", specifier = "~=2.14.0" }, + { name = "tensorflow", marker = "extra == 'rocm'", specifier = "~=2.14.0" }, + { name = "tensorflow-cpu", marker = "sys_platform == 'linux' and extra == 'cpu'", specifier = "~=2.14.0" }, + { name = "tensorflow-macos", marker = "extra == 'mchip'", specifier = "~=2.14.0" }, + { name = "tensorflow-metal", marker = "extra == 'mchip'", specifier = "~=1.1.0" }, + { name = "torch", marker = "extra == 'cpu'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'cuda'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'mchip'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'rocm'", specifier = "==2.1.2" }, + { name = "torch-geometric", marker = "extra == 'cpu'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'cuda'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'mchip'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'rocm'", specifier = "==2.7.0" }, + { name = "torchdata", marker = "extra == 'cpu'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'cuda'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'mchip'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'rocm'", specifier = "==0.7.1" }, + { name = "umap-learn" }, + { name = "xgboost" }, +] +provides-extras = ["cpu", "cuda", "docs", "mchip", "rocm"] + +[package.metadata.requires-dev] +dev = [ + { name = "ipykernel" }, + { name = "jupyter" }, + { name = "jupyterlab" }, + { name = "matplotcheck" }, + { name = "pytest" }, + { name = "pytest-cov" }, + { name = "pytest-mock" }, + { name = "pytest-xdist" }, + { name = "ruff" }, +] +docker = [{ name = "networkx", specifier = "==2.8.8" }] + +[[package]] +name = "attrs" +version = "26.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" }, +] + +[[package]] +name = "babel" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/b2/51899539b6ceeeb420d40ed3cd4b7a40519404f9baf3d4ac99dc413a834b/babel-2.18.0.tar.gz", hash = "sha256:b80b99a14bd085fcacfa15c9165f651fbb3406e66cc603abf11c5750937c992d", size = 9959554, upload-time = "2026-02-01T12:30:56.078Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl", hash = "sha256:e2b422b277c2b9a9630c1d7903c2a00d0830c409c59ac8cae9081c92f1aeba35", size = 10196845, upload-time = "2026-02-01T12:30:53.445Z" }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.14.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/b0/1c6a16426d389813b48d95e26898aff79abbde42ad353958ad95cc8c9b21/beautifulsoup4-4.14.3.tar.gz", hash = "sha256:6292b1c5186d356bba669ef9f7f051757099565ad9ada5dd630bd9de5fa7fb86", size = 627737, upload-time = "2025-11-30T15:08:26.084Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/39/47f9197bdd44df24d67ac8893641e16f386c984a0619ef2ee4c51fbbc019/beautifulsoup4-4.14.3-py3-none-any.whl", hash = "sha256:0918bfe44902e6ad8d57732ba310582e98da931428d231a5ecb9e7c703a735bb", size = 107721, upload-time = "2025-11-30T15:08:24.087Z" }, +] + +[[package]] +name = "bleach" +version = "6.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "webencodings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/07/18/3c8523962314be6bf4c8989c79ad9531c825210dd13a8669f6b84336e8bd/bleach-6.3.0.tar.gz", hash = "sha256:6f3b91b1c0a02bb9a78b5a454c92506aa0fdf197e1d5e114d2e00c6f64306d22", size = 203533, upload-time = "2025-10-27T17:57:39.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/3a/577b549de0cc09d95f11087ee63c739bba856cd3952697eec4c4bb91350a/bleach-6.3.0-py3-none-any.whl", hash = "sha256:fe10ec77c93ddf3d13a73b035abaac7a9f5e436513864ccdad516693213c65d6", size = 164437, upload-time = "2025-10-27T17:57:37.538Z" }, +] + +[package.optional-dependencies] +css = [ + { name = "tinycss2" }, +] + +[[package]] +name = "bokeh" +version = "3.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "jinja2" }, + { name = "narwhals" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyyaml" }, + { name = "tornado", marker = "sys_platform != 'emscripten'" }, + { name = "xyzservices" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/0d/fabb70707646217e4b0e3943e05730eab8c1f7b7e7485145f8594b52e606/bokeh-3.9.0.tar.gz", hash = "sha256:775219714a8496973ddbae16b1861606ba19fe670a421e4d43267b41148e07a3", size = 5740345, upload-time = "2026-03-11T17:58:34.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/0b/bdf449df87be3f07b23091ceafee8c3ef569cf6d2fb7edec6e3b12b3faa4/bokeh-3.9.0-py3-none-any.whl", hash = "sha256:b252bfb16a505f0e0c57d532d0df308ae1667235bafc622aa9441fe9e7c5ce4a", size = 6396068, upload-time = "2026-03-11T17:58:31.645Z" }, +] + +[[package]] +name = "branca" +version = "0.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/14/9d409124bda3f4ab7af3802aba07181d1fd56aa96cc4b999faea6a27a0d2/branca-0.8.2.tar.gz", hash = "sha256:e5040f4c286e973658c27de9225c1a5a7356dd0702a7c8d84c0f0dfbde388fe7", size = 27890, upload-time = "2025-10-06T10:28:20.305Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/50/fc9680058e63161f2f63165b84c957a0df1415431104c408e8104a3a18ef/branca-0.8.2-py3-none-any.whl", hash = "sha256:2ebaef3983e3312733c1ae2b793b0a8ba3e1c4edeb7598e10328505280cf2f7c", size = 26193, upload-time = "2025-10-06T10:28:19.255Z" }, +] + +[[package]] +name = "bravado" +version = "12.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "bravado-core" }, + { name = "monotonic" }, + { name = "msgpack" }, + { name = "python-dateutil" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "simplejson" }, + { name = "six" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/88/5d/5a1eda160279e4a617c38da71fbb7d92121cfc7fcf8592368286f771e314/bravado-12.0.1.tar.gz", hash = "sha256:637cc04d53c07e950792595081f9f8bf4dea226ecd1029207cb1d328ea400e20", size = 37647, upload-time = "2025-05-07T20:25:02.108Z" } + +[[package]] +name = "bravado-core" +version = "6.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonref" }, + { name = "jsonschema", extra = ["format-nongpl"] }, + { name = "msgpack" }, + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "simplejson" }, + { name = "six" }, + { name = "swagger-spec-validator" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/6d/1ffa5c64533bc2fa436afdb9ef287cb0c0d443ef1e84db0601b0af7ce6f5/bravado-core-6.1.1.tar.gz", hash = "sha256:8cf1f7bbac2f7c696d37e970253938b5be4ddec92c8d5e64400b17469c3714b4", size = 63851, upload-time = "2023-12-14T22:27:42.168Z" } + +[[package]] +name = "certifi" +version = "2026.2.25" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/af/2d/7bf41579a8986e348fa033a31cdd0e4121114f6bce2457e8876010b092dd/certifi-2026.2.25.tar.gz", hash = "sha256:e887ab5cee78ea814d3472169153c2d12cd43b14bd03329a39a9c6e2e80bfba7", size = 155029, upload-time = "2026-02-25T02:54:17.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl", hash = "sha256:027692e4402ad994f1c42e52a4997a9763c646b73e4096e4d5d6db8af1d6f0fa", size = 153684, upload-time = "2026-02-25T02:54:15.766Z" }, +] + +[[package]] +name = "cffi" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "implementation_name != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/d7/516d984057745a6cd96575eea814fe1edd6646ee6efd552fb7b0921dec83/cffi-2.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:0cf2d91ecc3fcc0625c2c530fe004f82c110405f101548512cce44322fa8ac44", size = 184283, upload-time = "2025-09-08T23:22:08.01Z" }, + { url = "https://files.pythonhosted.org/packages/9e/84/ad6a0b408daa859246f57c03efd28e5dd1b33c21737c2db84cae8c237aa5/cffi-2.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f73b96c41e3b2adedc34a7356e64c8eb96e03a3782b535e043a986276ce12a49", size = 180504, upload-time = "2025-09-08T23:22:10.637Z" }, + { url = "https://files.pythonhosted.org/packages/50/bd/b1a6362b80628111e6653c961f987faa55262b4002fcec42308cad1db680/cffi-2.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:53f77cbe57044e88bbd5ed26ac1d0514d2acf0591dd6bb02a3ae37f76811b80c", size = 208811, upload-time = "2025-09-08T23:22:12.267Z" }, + { url = "https://files.pythonhosted.org/packages/4f/27/6933a8b2562d7bd1fb595074cf99cc81fc3789f6a6c05cdabb46284a3188/cffi-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3e837e369566884707ddaf85fc1744b47575005c0a229de3327f8f9a20f4efeb", size = 216402, upload-time = "2025-09-08T23:22:13.455Z" }, + { url = "https://files.pythonhosted.org/packages/05/eb/b86f2a2645b62adcfff53b0dd97e8dfafb5c8aa864bd0d9a2c2049a0d551/cffi-2.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:5eda85d6d1879e692d546a078b44251cdd08dd1cfb98dfb77b670c97cee49ea0", size = 203217, upload-time = "2025-09-08T23:22:14.596Z" }, + { url = "https://files.pythonhosted.org/packages/9f/e0/6cbe77a53acf5acc7c08cc186c9928864bd7c005f9efd0d126884858a5fe/cffi-2.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:9332088d75dc3241c702d852d4671613136d90fa6881da7d770a483fd05248b4", size = 203079, upload-time = "2025-09-08T23:22:15.769Z" }, + { url = "https://files.pythonhosted.org/packages/98/29/9b366e70e243eb3d14a5cb488dfd3a0b6b2f1fb001a203f653b93ccfac88/cffi-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc7de24befaeae77ba923797c7c87834c73648a05a4bde34b3b7e5588973a453", size = 216475, upload-time = "2025-09-08T23:22:17.427Z" }, + { url = "https://files.pythonhosted.org/packages/21/7a/13b24e70d2f90a322f2900c5d8e1f14fa7e2a6b3332b7309ba7b2ba51a5a/cffi-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf364028c016c03078a23b503f02058f1814320a56ad535686f90565636a9495", size = 218829, upload-time = "2025-09-08T23:22:19.069Z" }, + { url = "https://files.pythonhosted.org/packages/60/99/c9dc110974c59cc981b1f5b66e1d8af8af764e00f0293266824d9c4254bc/cffi-2.0.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e11e82b744887154b182fd3e7e8512418446501191994dbf9c9fc1f32cc8efd5", size = 211211, upload-time = "2025-09-08T23:22:20.588Z" }, + { url = "https://files.pythonhosted.org/packages/49/72/ff2d12dbf21aca1b32a40ed792ee6b40f6dc3a9cf1644bd7ef6e95e0ac5e/cffi-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8ea985900c5c95ce9db1745f7933eeef5d314f0565b27625d9a10ec9881e1bfb", size = 218036, upload-time = "2025-09-08T23:22:22.143Z" }, + { url = "https://files.pythonhosted.org/packages/e2/cc/027d7fb82e58c48ea717149b03bcadcbdc293553edb283af792bd4bcbb3f/cffi-2.0.0-cp310-cp310-win32.whl", hash = "sha256:1f72fb8906754ac8a2cc3f9f5aaa298070652a0ffae577e0ea9bd480dc3c931a", size = 172184, upload-time = "2025-09-08T23:22:23.328Z" }, + { url = "https://files.pythonhosted.org/packages/33/fa/072dd15ae27fbb4e06b437eb6e944e75b068deb09e2a2826039e49ee2045/cffi-2.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:b18a3ed7d5b3bd8d9ef7a8cb226502c6bf8308df1525e1cc676c3680e7176739", size = 182790, upload-time = "2025-09-08T23:22:24.752Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/a1/67fe25fac3c7642725500a3f6cfe5821ad557c3abb11c9d20d12c7008d3e/charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5", size = 144271, upload-time = "2026-04-02T09:28:39.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/08/0f303cb0b529e456bb116f2d50565a482694fbb94340bf56d44677e7ed03/charset_normalizer-3.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cdd68a1fb318e290a2077696b7eb7a21a49163c455979c639bf5a5dcdc46617d", size = 315182, upload-time = "2026-04-02T09:25:40.673Z" }, + { url = "https://files.pythonhosted.org/packages/24/47/b192933e94b546f1b1fe4df9cc1f84fcdbf2359f8d1081d46dd029b50207/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e17b8d5d6a8c47c85e68ca8379def1303fd360c3e22093a807cd34a71cd082b8", size = 209329, upload-time = "2026-04-02T09:25:42.354Z" }, + { url = "https://files.pythonhosted.org/packages/c2/b4/01fa81c5ca6141024d89a8fc15968002b71da7f825dd14113207113fabbd/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:511ef87c8aec0783e08ac18565a16d435372bc1ac25a91e6ac7f5ef2b0bff790", size = 231230, upload-time = "2026-04-02T09:25:44.281Z" }, + { url = "https://files.pythonhosted.org/packages/20/f7/7b991776844dfa058017e600e6e55ff01984a063290ca5622c0b63162f68/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:007d05ec7321d12a40227aae9e2bc6dca73f3cb21058999a1df9e193555a9dcc", size = 225890, upload-time = "2026-04-02T09:25:45.475Z" }, + { url = "https://files.pythonhosted.org/packages/20/e7/bed0024a0f4ab0c8a9c64d4445f39b30c99bd1acd228291959e3de664247/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cf29836da5119f3c8a8a70667b0ef5fdca3bb12f80fd06487cfa575b3909b393", size = 216930, upload-time = "2026-04-02T09:25:46.58Z" }, + { url = "https://files.pythonhosted.org/packages/e2/ab/b18f0ab31cdd7b3ddb8bb76c4a414aeb8160c9810fdf1bc62f269a539d87/charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:12d8baf840cc7889b37c7c770f478adea7adce3dcb3944d02ec87508e2dcf153", size = 202109, upload-time = "2026-04-02T09:25:48.031Z" }, + { url = "https://files.pythonhosted.org/packages/82/e5/7e9440768a06dfb3075936490cb82dbf0ee20a133bf0dd8551fa096914ec/charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d560742f3c0d62afaccf9f41fe485ed69bd7661a241f86a3ef0f0fb8b1a397af", size = 214684, upload-time = "2026-04-02T09:25:49.245Z" }, + { url = "https://files.pythonhosted.org/packages/71/94/8c61d8da9f062fdf457c80acfa25060ec22bf1d34bbeaca4350f13bcfd07/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b14b2d9dac08e28bb8046a1a0434b1750eb221c8f5b87a68f4fa11a6f97b5e34", size = 212785, upload-time = "2026-04-02T09:25:50.671Z" }, + { url = "https://files.pythonhosted.org/packages/66/cd/6e9889c648e72c0ab2e5967528bb83508f354d706637bc7097190c874e13/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:bc17a677b21b3502a21f66a8cc64f5bfad4df8a0b8434d661666f8ce90ac3af1", size = 203055, upload-time = "2026-04-02T09:25:51.802Z" }, + { url = "https://files.pythonhosted.org/packages/92/2e/7a951d6a08aefb7eb8e1b54cdfb580b1365afdd9dd484dc4bee9e5d8f258/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:750e02e074872a3fad7f233b47734166440af3cdea0add3e95163110816d6752", size = 232502, upload-time = "2026-04-02T09:25:53.388Z" }, + { url = "https://files.pythonhosted.org/packages/58/d5/abcf2d83bf8e0a1286df55cd0dc1d49af0da4282aa77e986df343e7de124/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:4e5163c14bffd570ef2affbfdd77bba66383890797df43dc8b4cc7d6f500bf53", size = 214295, upload-time = "2026-04-02T09:25:54.765Z" }, + { url = "https://files.pythonhosted.org/packages/47/3a/7d4cd7ed54be99973a0dc176032cba5cb1f258082c31fa6df35cff46acfc/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6ed74185b2db44f41ef35fd1617c5888e59792da9bbc9190d6c7300617182616", size = 227145, upload-time = "2026-04-02T09:25:55.904Z" }, + { url = "https://files.pythonhosted.org/packages/1d/98/3a45bf8247889cf28262ebd3d0872edff11565b2a1e3064ccb132db3fbb0/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:94e1885b270625a9a828c9793b4d52a64445299baa1fea5a173bf1d3dd9a1a5a", size = 218884, upload-time = "2026-04-02T09:25:57.074Z" }, + { url = "https://files.pythonhosted.org/packages/ad/80/2e8b7f8915ed5c9ef13aa828d82738e33888c485b65ebf744d615040c7ea/charset_normalizer-3.4.7-cp310-cp310-win32.whl", hash = "sha256:6785f414ae0f3c733c437e0f3929197934f526d19dfaa75e18fdb4f94c6fb374", size = 148343, upload-time = "2026-04-02T09:25:58.199Z" }, + { url = "https://files.pythonhosted.org/packages/35/1b/3b8c8c77184af465ee9ad88b5aea46ea6b2e1f7b9dc9502891e37af21e30/charset_normalizer-3.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:6696b7688f54f5af4462118f0bfa7c1621eeb87154f77fa04b9295ce7a8f2943", size = 159174, upload-time = "2026-04-02T09:25:59.322Z" }, + { url = "https://files.pythonhosted.org/packages/be/c1/feb40dca40dbb21e0a908801782d9288c64fc8d8e562c2098e9994c8c21b/charset_normalizer-3.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:66671f93accb62ed07da56613636f3641f1a12c13046ce91ffc923721f23c008", size = 147805, upload-time = "2026-04-02T09:26:00.756Z" }, + { url = "https://files.pythonhosted.org/packages/db/8f/61959034484a4a7c527811f4721e75d02d653a35afb0b6054474d8185d4c/charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d", size = 61958, upload-time = "2026-04-02T09:28:37.794Z" }, +] + +[[package]] +name = "click" +version = "8.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/75/31212c6bf2503fdf920d87fee5d7a86a2e3bcf444984126f13d8e4016804/click-8.3.2.tar.gz", hash = "sha256:14162b8b3b3550a7d479eafa77dfd3c38d9dc8951f6f69c78913a8f9a7540fd5", size = 302856, upload-time = "2026-04-03T19:14:45.118Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/20/71885d8b97d4f3dde17b1fdb92dbd4908b00541c5a3379787137285f602e/click-8.3.2-py3-none-any.whl", hash = "sha256:1924d2c27c5653561cd2cae4548d1406039cb79b858b747cfea24924bbc1616d", size = 108379, upload-time = "2026-04-03T19:14:43.505Z" }, +] + +[[package]] +name = "click-plugins" +version = "1.1.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/a4/34847b59150da33690a36da3681d6bbc2ec14ee9a846bc30a6746e5984e4/click_plugins-1.1.1.2.tar.gz", hash = "sha256:d7af3984a99d243c131aa1a828331e7630f4a88a9741fd05c927b204bcf92261", size = 8343, upload-time = "2025-06-25T00:47:37.555Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/9a/2abecb28ae875e39c8cad711eb1186d8d14eab564705325e77e4e6ab9ae5/click_plugins-1.1.1.2-py2.py3-none-any.whl", hash = "sha256:008d65743833ffc1f5417bf0e78e8d2c23aab04d9745ba817bd3e71b0feb6aa6", size = 11051, upload-time = "2025-06-25T00:47:36.731Z" }, +] + +[[package]] +name = "cligj" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ea/0d/837dbd5d8430fd0f01ed72c4cfb2f548180f4c68c635df84ce87956cff32/cligj-0.7.2.tar.gz", hash = "sha256:a4bc13d623356b373c2c27c53dbd9c68cae5d526270bfa71f6c6fa69669c6b27", size = 9803, upload-time = "2021-05-28T21:23:27.935Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/86/43fa9f15c5b9fb6e82620428827cd3c284aa933431405d1bcf5231ae3d3e/cligj-0.7.2-py3-none-any.whl", hash = "sha256:c1ca117dbce1fe20a5809dc96f01e1c2840f6dcc939b3ddbb1111bf330ba82df", size = 7069, upload-time = "2021-05-28T21:23:26.877Z" }, +] + +[[package]] +name = "cloudpickle" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/27/fb/576f067976d320f5f0114a8d9fa1215425441bb35627b1993e5afd8111e5/cloudpickle-3.1.2.tar.gz", hash = "sha256:7fda9eb655c9c230dab534f1983763de5835249750e85fbcef43aaa30a9a2414", size = 22330, upload-time = "2025-11-03T09:25:26.604Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/39/799be3f2f0f38cc727ee3b4f1445fe6d5e4133064ec2e4115069418a5bb6/cloudpickle-3.1.2-py3-none-any.whl", hash = "sha256:9acb47f6afd73f60dc1df93bb801b472f05ff42fa6c84167d25cb206be1fbf4a", size = 22228, upload-time = "2025-11-03T09:25:25.534Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "coloredlogs" +version = "15.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "humanfriendly" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/c7/eed8f27100517e8c0e6b923d5f0845d0cb99763da6fdee00478f91db7325/coloredlogs-15.0.1.tar.gz", hash = "sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0", size = 278520, upload-time = "2021-06-11T10:22:45.202Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/06/3d6badcf13db419e25b07041d9c7b4a2c331d3f4e7134445ec5df57714cd/coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934", size = 46018, upload-time = "2021-06-11T10:22:42.561Z" }, +] + +[[package]] +name = "colorlog" +version = "6.10.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a2/61/f083b5ac52e505dfc1c624eafbf8c7589a0d7f32daa398d2e7590efa5fda/colorlog-6.10.1.tar.gz", hash = "sha256:eb4ae5cb65fe7fec7773c2306061a8e63e02efc2c72eba9d27b0fa23c94f1321", size = 17162, upload-time = "2025-10-16T16:14:11.978Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/c1/e419ef3723a074172b68aaa89c9f3de486ed4c2399e2dbd8113a4fdcaf9e/colorlog-6.10.1-py3-none-any.whl", hash = "sha256:2d7e8348291948af66122cff006c9f8da6255d224e7cf8e37d8de2df3bad8c9c", size = 11743, upload-time = "2025-10-16T16:14:10.512Z" }, +] + +[[package]] +name = "comm" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/13/7d740c5849255756bc17888787313b61fd38a0a8304fc4f073dfc46122aa/comm-0.2.3.tar.gz", hash = "sha256:2dc8048c10962d55d7ad693be1e7045d891b7ce8d999c97963a5e3e99c055971", size = 6319, upload-time = "2025-07-25T14:02:04.452Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl", hash = "sha256:c615d91d75f7f04f095b30d1c1711babd43bdc6419c1be9886a85f2f4e489417", size = 7294, upload-time = "2025-07-25T14:02:02.896Z" }, +] + +[[package]] +name = "contourpy" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/54/eb9bfc647b19f2009dd5c7f5ec51c4e6ca831725f1aea7a993034f483147/contourpy-1.3.2.tar.gz", hash = "sha256:b6945942715a034c671b7fc54f9588126b0b8bf23db2696e3ca8328f3ff0ab54", size = 13466130, upload-time = "2025-04-15T17:47:53.79Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/a3/da4153ec8fe25d263aa48c1a4cbde7f49b59af86f0b6f7862788c60da737/contourpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba38e3f9f330af820c4b27ceb4b9c7feee5fe0493ea53a8720f4792667465934", size = 268551, upload-time = "2025-04-15T17:34:46.581Z" }, + { url = "https://files.pythonhosted.org/packages/2f/6c/330de89ae1087eb622bfca0177d32a7ece50c3ef07b28002de4757d9d875/contourpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dc41ba0714aa2968d1f8674ec97504a8f7e334f48eeacebcaa6256213acb0989", size = 253399, upload-time = "2025-04-15T17:34:51.427Z" }, + { url = "https://files.pythonhosted.org/packages/c1/bd/20c6726b1b7f81a8bee5271bed5c165f0a8e1f572578a9d27e2ccb763cb2/contourpy-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9be002b31c558d1ddf1b9b415b162c603405414bacd6932d031c5b5a8b757f0d", size = 312061, upload-time = "2025-04-15T17:34:55.961Z" }, + { url = "https://files.pythonhosted.org/packages/22/fc/a9665c88f8a2473f823cf1ec601de9e5375050f1958cbb356cdf06ef1ab6/contourpy-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8d2e74acbcba3bfdb6d9d8384cdc4f9260cae86ed9beee8bd5f54fee49a430b9", size = 351956, upload-time = "2025-04-15T17:35:00.992Z" }, + { url = "https://files.pythonhosted.org/packages/25/eb/9f0a0238f305ad8fb7ef42481020d6e20cf15e46be99a1fcf939546a177e/contourpy-1.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e259bced5549ac64410162adc973c5e2fb77f04df4a439d00b478e57a0e65512", size = 320872, upload-time = "2025-04-15T17:35:06.177Z" }, + { url = "https://files.pythonhosted.org/packages/32/5c/1ee32d1c7956923202f00cf8d2a14a62ed7517bdc0ee1e55301227fc273c/contourpy-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad687a04bc802cbe8b9c399c07162a3c35e227e2daccf1668eb1f278cb698631", size = 325027, upload-time = "2025-04-15T17:35:11.244Z" }, + { url = "https://files.pythonhosted.org/packages/83/bf/9baed89785ba743ef329c2b07fd0611d12bfecbedbdd3eeecf929d8d3b52/contourpy-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cdd22595308f53ef2f891040ab2b93d79192513ffccbd7fe19be7aa773a5e09f", size = 1306641, upload-time = "2025-04-15T17:35:26.701Z" }, + { url = "https://files.pythonhosted.org/packages/d4/cc/74e5e83d1e35de2d28bd97033426b450bc4fd96e092a1f7a63dc7369b55d/contourpy-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b4f54d6a2defe9f257327b0f243612dd051cc43825587520b1bf74a31e2f6ef2", size = 1374075, upload-time = "2025-04-15T17:35:43.204Z" }, + { url = "https://files.pythonhosted.org/packages/0c/42/17f3b798fd5e033b46a16f8d9fcb39f1aba051307f5ebf441bad1ecf78f8/contourpy-1.3.2-cp310-cp310-win32.whl", hash = "sha256:f939a054192ddc596e031e50bb13b657ce318cf13d264f095ce9db7dc6ae81c0", size = 177534, upload-time = "2025-04-15T17:35:46.554Z" }, + { url = "https://files.pythonhosted.org/packages/54/ec/5162b8582f2c994721018d0c9ece9dc6ff769d298a8ac6b6a652c307e7df/contourpy-1.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:c440093bbc8fc21c637c03bafcbef95ccd963bc6e0514ad887932c18ca2a759a", size = 221188, upload-time = "2025-04-15T17:35:50.064Z" }, + { url = "https://files.pythonhosted.org/packages/33/05/b26e3c6ecc05f349ee0013f0bb850a761016d89cec528a98193a48c34033/contourpy-1.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fd93cc7f3139b6dd7aab2f26a90dde0aa9fc264dbf70f6740d498a70b860b82c", size = 265681, upload-time = "2025-04-15T17:44:59.314Z" }, + { url = "https://files.pythonhosted.org/packages/2b/25/ac07d6ad12affa7d1ffed11b77417d0a6308170f44ff20fa1d5aa6333f03/contourpy-1.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:107ba8a6a7eec58bb475329e6d3b95deba9440667c4d62b9b6063942b61d7f16", size = 315101, upload-time = "2025-04-15T17:45:04.165Z" }, + { url = "https://files.pythonhosted.org/packages/8f/4d/5bb3192bbe9d3f27e3061a6a8e7733c9120e203cb8515767d30973f71030/contourpy-1.3.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ded1706ed0c1049224531b81128efbd5084598f18d8a2d9efae833edbd2b40ad", size = 220599, upload-time = "2025-04-15T17:45:08.456Z" }, +] + +[[package]] +name = "coverage" +version = "7.13.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/e0/70553e3000e345daff267cec284ce4cbf3fc141b6da229ac52775b5428f1/coverage-7.13.5.tar.gz", hash = "sha256:c81f6515c4c40141f83f502b07bbfa5c240ba25bbe73da7b33f1e5b6120ff179", size = 915967, upload-time = "2026-03-17T10:33:18.341Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/33/e8c48488c29a73fd089f9d71f9653c1be7478f2ad6b5bc870db11a55d23d/coverage-7.13.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0723d2c96324561b9aa76fb982406e11d93cdb388a7a7da2b16e04719cf7ca5", size = 219255, upload-time = "2026-03-17T10:29:51.081Z" }, + { url = "https://files.pythonhosted.org/packages/da/bd/b0ebe9f677d7f4b74a3e115eec7ddd4bcf892074963a00d91e8b164a6386/coverage-7.13.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:52f444e86475992506b32d4e5ca55c24fc88d73bcbda0e9745095b28ef4dc0cf", size = 219772, upload-time = "2026-03-17T10:29:52.867Z" }, + { url = "https://files.pythonhosted.org/packages/48/cc/5cb9502f4e01972f54eedd48218bb203fe81e294be606a2bc93970208013/coverage-7.13.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:704de6328e3d612a8f6c07000a878ff38181ec3263d5a11da1db294fa6a9bdf8", size = 246532, upload-time = "2026-03-17T10:29:54.688Z" }, + { url = "https://files.pythonhosted.org/packages/7d/d8/3217636d86c7e7b12e126e4f30ef1581047da73140614523af7495ed5f2d/coverage-7.13.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:a1a6d79a14e1ec1832cabc833898636ad5f3754a678ef8bb4908515208bf84f4", size = 248333, upload-time = "2026-03-17T10:29:56.221Z" }, + { url = "https://files.pythonhosted.org/packages/2b/30/2002ac6729ba2d4357438e2ed3c447ad8562866c8c63fc16f6dfc33afe56/coverage-7.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:79060214983769c7ba3f0cee10b54c97609dca4d478fa1aa32b914480fd5738d", size = 250211, upload-time = "2026-03-17T10:29:57.938Z" }, + { url = "https://files.pythonhosted.org/packages/6c/85/552496626d6b9359eb0e2f86f920037c9cbfba09b24d914c6e1528155f7d/coverage-7.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:356e76b46783a98c2a2fe81ec79df4883a1e62895ea952968fb253c114e7f930", size = 252125, upload-time = "2026-03-17T10:29:59.388Z" }, + { url = "https://files.pythonhosted.org/packages/44/21/40256eabdcbccdb6acf6b381b3016a154399a75fe39d406f790ae84d1f3c/coverage-7.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0cef0cdec915d11254a7f549c1170afecce708d30610c6abdded1f74e581666d", size = 247219, upload-time = "2026-03-17T10:30:01.199Z" }, + { url = "https://files.pythonhosted.org/packages/b1/e8/96e2a6c3f21a0ea77d7830b254a1542d0328acc8d7bdf6a284ba7e529f77/coverage-7.13.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dc022073d063b25a402454e5712ef9e007113e3a676b96c5f29b2bda29352f40", size = 248248, upload-time = "2026-03-17T10:30:03.317Z" }, + { url = "https://files.pythonhosted.org/packages/da/ba/8477f549e554827da390ec659f3c38e4b6d95470f4daafc2d8ff94eaa9c2/coverage-7.13.5-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9b74db26dfea4f4e50d48a4602207cd1e78be33182bc9cbf22da94f332f99878", size = 246254, upload-time = "2026-03-17T10:30:04.832Z" }, + { url = "https://files.pythonhosted.org/packages/55/59/bc22aef0e6aa179d5b1b001e8b3654785e9adf27ef24c93dc4228ebd5d68/coverage-7.13.5-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ad146744ca4fd09b50c482650e3c1b1f4dfa1d4792e0a04a369c7f23336f0400", size = 250067, upload-time = "2026-03-17T10:30:06.535Z" }, + { url = "https://files.pythonhosted.org/packages/de/1b/c6a023a160806a5137dca53468fd97530d6acad24a22003b1578a9c2e429/coverage-7.13.5-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:c555b48be1853fe3997c11c4bd521cdd9a9612352de01fa4508f16ec341e6fe0", size = 246521, upload-time = "2026-03-17T10:30:08.486Z" }, + { url = "https://files.pythonhosted.org/packages/2d/3f/3532c85a55aa2f899fa17c186f831cfa1aa434d88ff792a709636f64130e/coverage-7.13.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7034b5c56a58ae5e85f23949d52c14aca2cfc6848a31764995b7de88f13a1ea0", size = 247126, upload-time = "2026-03-17T10:30:09.966Z" }, + { url = "https://files.pythonhosted.org/packages/aa/2e/b9d56af4a24ef45dfbcda88e06870cb7d57b2b0bfa3a888d79b4c8debd76/coverage-7.13.5-cp310-cp310-win32.whl", hash = "sha256:eb7fdf1ef130660e7415e0253a01a7d5a88c9c4d158bcf75cbbd922fd65a5b58", size = 221860, upload-time = "2026-03-17T10:30:11.393Z" }, + { url = "https://files.pythonhosted.org/packages/9f/cc/d938417e7a4d7f0433ad4edee8bb2acdc60dc7ac5af19e2a07a048ecbee3/coverage-7.13.5-cp310-cp310-win_amd64.whl", hash = "sha256:3e1bb5f6c78feeb1be3475789b14a0f0a5b47d505bfc7267126ccbd50289999e", size = 222788, upload-time = "2026-03-17T10:30:12.886Z" }, + { url = "https://files.pythonhosted.org/packages/9e/ee/a4cf96b8ce1e566ed238f0659ac2d3f007ed1d14b181bcb684e19561a69a/coverage-7.13.5-py3-none-any.whl", hash = "sha256:34b02417cf070e173989b3db962f7ed56d2f644307b2cf9d5a0f258e13084a61", size = 211346, upload-time = "2026-03-17T10:33:15.691Z" }, +] + +[package.optional-dependencies] +toml = [ + { name = "tomli" }, +] + +[[package]] +name = "cryptography" +version = "46.0.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/47/93/ac8f3d5ff04d54bc814e961a43ae5b0b146154c89c61b47bb07557679b18/cryptography-46.0.7.tar.gz", hash = "sha256:e4cfd68c5f3e0bfdad0d38e023239b96a2fe84146481852dffbcca442c245aa5", size = 750652, upload-time = "2026-04-08T01:57:54.692Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/5d/4a8f770695d73be252331e60e526291e3df0c9b27556a90a6b47bccca4c2/cryptography-46.0.7-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:ea42cbe97209df307fdc3b155f1b6fa2577c0defa8f1f7d3be7d31d189108ad4", size = 7179869, upload-time = "2026-04-08T01:56:17.157Z" }, + { url = "https://files.pythonhosted.org/packages/5f/45/6d80dc379b0bbc1f9d1e429f42e4cb9e1d319c7a8201beffd967c516ea01/cryptography-46.0.7-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b36a4695e29fe69215d75960b22577197aca3f7a25b9cf9d165dcfe9d80bc325", size = 4275492, upload-time = "2026-04-08T01:56:19.36Z" }, + { url = "https://files.pythonhosted.org/packages/4a/9a/1765afe9f572e239c3469f2cb429f3ba7b31878c893b246b4b2994ffe2fe/cryptography-46.0.7-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5ad9ef796328c5e3c4ceed237a183f5d41d21150f972455a9d926593a1dcb308", size = 4426670, upload-time = "2026-04-08T01:56:21.415Z" }, + { url = "https://files.pythonhosted.org/packages/8f/3e/af9246aaf23cd4ee060699adab1e47ced3f5f7e7a8ffdd339f817b446462/cryptography-46.0.7-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:73510b83623e080a2c35c62c15298096e2a5dc8d51c3b4e1740211839d0dea77", size = 4280275, upload-time = "2026-04-08T01:56:23.539Z" }, + { url = "https://files.pythonhosted.org/packages/0f/54/6bbbfc5efe86f9d71041827b793c24811a017c6ac0fd12883e4caa86b8ed/cryptography-46.0.7-cp311-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:cbd5fb06b62bd0721e1170273d3f4d5a277044c47ca27ee257025146c34cbdd1", size = 4928402, upload-time = "2026-04-08T01:56:25.624Z" }, + { url = "https://files.pythonhosted.org/packages/2d/cf/054b9d8220f81509939599c8bdbc0c408dbd2bdd41688616a20731371fe0/cryptography-46.0.7-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:420b1e4109cc95f0e5700eed79908cef9268265c773d3a66f7af1eef53d409ef", size = 4459985, upload-time = "2026-04-08T01:56:27.309Z" }, + { url = "https://files.pythonhosted.org/packages/f9/46/4e4e9c6040fb01c7467d47217d2f882daddeb8828f7df800cb806d8a2288/cryptography-46.0.7-cp311-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:24402210aa54baae71d99441d15bb5a1919c195398a87b563df84468160a65de", size = 3990652, upload-time = "2026-04-08T01:56:29.095Z" }, + { url = "https://files.pythonhosted.org/packages/36/5f/313586c3be5a2fbe87e4c9a254207b860155a8e1f3cca99f9910008e7d08/cryptography-46.0.7-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:8a469028a86f12eb7d2fe97162d0634026d92a21f3ae0ac87ed1c4a447886c83", size = 4279805, upload-time = "2026-04-08T01:56:30.928Z" }, + { url = "https://files.pythonhosted.org/packages/69/33/60dfc4595f334a2082749673386a4d05e4f0cf4df8248e63b2c3437585f2/cryptography-46.0.7-cp311-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:9694078c5d44c157ef3162e3bf3946510b857df5a3955458381d1c7cfc143ddb", size = 4892883, upload-time = "2026-04-08T01:56:32.614Z" }, + { url = "https://files.pythonhosted.org/packages/c7/0b/333ddab4270c4f5b972f980adef4faa66951a4aaf646ca067af597f15563/cryptography-46.0.7-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:42a1e5f98abb6391717978baf9f90dc28a743b7d9be7f0751a6f56a75d14065b", size = 4459756, upload-time = "2026-04-08T01:56:34.306Z" }, + { url = "https://files.pythonhosted.org/packages/d2/14/633913398b43b75f1234834170947957c6b623d1701ffc7a9600da907e89/cryptography-46.0.7-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:91bbcb08347344f810cbe49065914fe048949648f6bd5c2519f34619142bbe85", size = 4410244, upload-time = "2026-04-08T01:56:35.977Z" }, + { url = "https://files.pythonhosted.org/packages/10/f2/19ceb3b3dc14009373432af0c13f46aa08e3ce334ec6eff13492e1812ccd/cryptography-46.0.7-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5d1c02a14ceb9148cc7816249f64f623fbfee39e8c03b3650d842ad3f34d637e", size = 4674868, upload-time = "2026-04-08T01:56:38.034Z" }, + { url = "https://files.pythonhosted.org/packages/1a/bb/a5c213c19ee94b15dfccc48f363738633a493812687f5567addbcbba9f6f/cryptography-46.0.7-cp311-abi3-win32.whl", hash = "sha256:d23c8ca48e44ee015cd0a54aeccdf9f09004eba9fc96f38c911011d9ff1bd457", size = 3026504, upload-time = "2026-04-08T01:56:39.666Z" }, + { url = "https://files.pythonhosted.org/packages/2b/02/7788f9fefa1d060ca68717c3901ae7fffa21ee087a90b7f23c7a603c32ae/cryptography-46.0.7-cp311-abi3-win_amd64.whl", hash = "sha256:397655da831414d165029da9bc483bed2fe0e75dde6a1523ec2fe63f3c46046b", size = 3488363, upload-time = "2026-04-08T01:56:41.893Z" }, + { url = "https://files.pythonhosted.org/packages/a7/7f/cd42fc3614386bc0c12f0cb3c4ae1fc2bbca5c9662dfed031514911d513d/cryptography-46.0.7-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:462ad5cb1c148a22b2e3bcc5ad52504dff325d17daf5df8d88c17dda1f75f2a4", size = 7165618, upload-time = "2026-04-08T01:57:10.645Z" }, + { url = "https://files.pythonhosted.org/packages/a5/d0/36a49f0262d2319139d2829f773f1b97ef8aef7f97e6e5bd21455e5a8fb5/cryptography-46.0.7-cp38-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:84d4cced91f0f159a7ddacad249cc077e63195c36aac40b4150e7a57e84fffe7", size = 4270628, upload-time = "2026-04-08T01:57:12.885Z" }, + { url = "https://files.pythonhosted.org/packages/8a/6c/1a42450f464dda6ffbe578a911f773e54dd48c10f9895a23a7e88b3e7db5/cryptography-46.0.7-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:128c5edfe5e5938b86b03941e94fac9ee793a94452ad1365c9fc3f4f62216832", size = 4415405, upload-time = "2026-04-08T01:57:14.923Z" }, + { url = "https://files.pythonhosted.org/packages/9a/92/4ed714dbe93a066dc1f4b4581a464d2d7dbec9046f7c8b7016f5286329e2/cryptography-46.0.7-cp38-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5e51be372b26ef4ba3de3c167cd3d1022934bc838ae9eaad7e644986d2a3d163", size = 4272715, upload-time = "2026-04-08T01:57:16.638Z" }, + { url = "https://files.pythonhosted.org/packages/b7/e6/a26b84096eddd51494bba19111f8fffe976f6a09f132706f8f1bf03f51f7/cryptography-46.0.7-cp38-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:cdf1a610ef82abb396451862739e3fc93b071c844399e15b90726ef7470eeaf2", size = 4918400, upload-time = "2026-04-08T01:57:19.021Z" }, + { url = "https://files.pythonhosted.org/packages/c7/08/ffd537b605568a148543ac3c2b239708ae0bd635064bab41359252ef88ed/cryptography-46.0.7-cp38-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:1d25aee46d0c6f1a501adcddb2d2fee4b979381346a78558ed13e50aa8a59067", size = 4450634, upload-time = "2026-04-08T01:57:21.185Z" }, + { url = "https://files.pythonhosted.org/packages/16/01/0cd51dd86ab5b9befe0d031e276510491976c3a80e9f6e31810cce46c4ad/cryptography-46.0.7-cp38-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:cdfbe22376065ffcf8be74dc9a909f032df19bc58a699456a21712d6e5eabfd0", size = 3985233, upload-time = "2026-04-08T01:57:22.862Z" }, + { url = "https://files.pythonhosted.org/packages/92/49/819d6ed3a7d9349c2939f81b500a738cb733ab62fbecdbc1e38e83d45e12/cryptography-46.0.7-cp38-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:abad9dac36cbf55de6eb49badd4016806b3165d396f64925bf2999bcb67837ba", size = 4271955, upload-time = "2026-04-08T01:57:24.814Z" }, + { url = "https://files.pythonhosted.org/packages/80/07/ad9b3c56ebb95ed2473d46df0847357e01583f4c52a85754d1a55e29e4d0/cryptography-46.0.7-cp38-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:935ce7e3cfdb53e3536119a542b839bb94ec1ad081013e9ab9b7cfd478b05006", size = 4879888, upload-time = "2026-04-08T01:57:26.88Z" }, + { url = "https://files.pythonhosted.org/packages/b8/c7/201d3d58f30c4c2bdbe9b03844c291feb77c20511cc3586daf7edc12a47b/cryptography-46.0.7-cp38-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:35719dc79d4730d30f1c2b6474bd6acda36ae2dfae1e3c16f2051f215df33ce0", size = 4449961, upload-time = "2026-04-08T01:57:29.068Z" }, + { url = "https://files.pythonhosted.org/packages/a5/ef/649750cbf96f3033c3c976e112265c33906f8e462291a33d77f90356548c/cryptography-46.0.7-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:7bbc6ccf49d05ac8f7d7b5e2e2c33830d4fe2061def88210a126d130d7f71a85", size = 4401696, upload-time = "2026-04-08T01:57:31.029Z" }, + { url = "https://files.pythonhosted.org/packages/41/52/a8908dcb1a389a459a29008c29966c1d552588d4ae6d43f3a1a4512e0ebe/cryptography-46.0.7-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a1529d614f44b863a7b480c6d000fe93b59acee9c82ffa027cfadc77521a9f5e", size = 4664256, upload-time = "2026-04-08T01:57:33.144Z" }, + { url = "https://files.pythonhosted.org/packages/4b/fa/f0ab06238e899cc3fb332623f337a7364f36f4bb3f2534c2bb95a35b132c/cryptography-46.0.7-cp38-abi3-win32.whl", hash = "sha256:f247c8c1a1fb45e12586afbb436ef21ff1e80670b2861a90353d9b025583d246", size = 3013001, upload-time = "2026-04-08T01:57:34.933Z" }, + { url = "https://files.pythonhosted.org/packages/d2/f1/00ce3bde3ca542d1acd8f8cfa38e446840945aa6363f9b74746394b14127/cryptography-46.0.7-cp38-abi3-win_amd64.whl", hash = "sha256:506c4ff91eff4f82bdac7633318a526b1d1309fc07ca76a3ad182cb5b686d6d3", size = 3472985, upload-time = "2026-04-08T01:57:36.714Z" }, +] + +[[package]] +name = "cycler" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, +] + +[[package]] +name = "debugpy" +version = "1.8.20" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/b7/cd8080344452e4874aae67c40d8940e2b4d47b01601a8fd9f44786c757c7/debugpy-1.8.20.tar.gz", hash = "sha256:55bc8701714969f1ab89a6d5f2f3d40c36f91b2cbe2f65d98bf8196f6a6a2c33", size = 1645207, upload-time = "2026-01-29T23:03:28.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/be/8bd693a0b9d53d48c8978fa5d889e06f3b5b03e45fd1ea1e78267b4887cb/debugpy-1.8.20-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:157e96ffb7f80b3ad36d808646198c90acb46fdcfd8bb1999838f0b6f2b59c64", size = 2099192, upload-time = "2026-01-29T23:03:29.707Z" }, + { url = "https://files.pythonhosted.org/packages/77/1b/85326d07432086a06361d493d2743edd0c4fc2ef62162be7f8618441ac37/debugpy-1.8.20-cp310-cp310-manylinux_2_34_x86_64.whl", hash = "sha256:c1178ae571aff42e61801a38b007af504ec8e05fde1c5c12e5a7efef21009642", size = 3088568, upload-time = "2026-01-29T23:03:31.467Z" }, + { url = "https://files.pythonhosted.org/packages/e8/60/3e08462ee3eccd10998853eb35947c416e446bfe2bc37dbb886b9044586c/debugpy-1.8.20-cp310-cp310-win32.whl", hash = "sha256:c29dd9d656c0fbd77906a6e6a82ae4881514aa3294b94c903ff99303e789b4a2", size = 5284399, upload-time = "2026-01-29T23:03:33.678Z" }, + { url = "https://files.pythonhosted.org/packages/72/43/09d49106e770fe558ced5e80df2e3c2ebee10e576eda155dcc5670473663/debugpy-1.8.20-cp310-cp310-win_amd64.whl", hash = "sha256:3ca85463f63b5dd0aa7aaa933d97cbc47c174896dcae8431695872969f981893", size = 5316388, upload-time = "2026-01-29T23:03:35.095Z" }, + { url = "https://files.pythonhosted.org/packages/e0/c3/7f67dea8ccf8fdcb9c99033bbe3e90b9e7395415843accb81428c441be2d/debugpy-1.8.20-py2.py3-none-any.whl", hash = "sha256:5be9bed9ae3be00665a06acaa48f8329d2b9632f15fd09f6a9a8c8d9907e54d7", size = 5337658, upload-time = "2026-01-29T23:04:17.404Z" }, +] + +[[package]] +name = "decorator" +version = "5.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/fa/6d96a0978d19e17b68d634497769987b16c8f4cd0a7a05048bec693caa6b/decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360", size = 56711, upload-time = "2025-02-24T04:41:34.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a", size = 9190, upload-time = "2025-02-24T04:41:32.565Z" }, +] + +[[package]] +name = "deepchem" +version = "2.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "rdkit" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "sympy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/1d/568b352513dfa4405da4acbce233c555bc4af29dd63e904537a8014cd585/deepchem-2.8.0.tar.gz", hash = "sha256:ba3f0cf3b589a33dd70757b1045600f52bb539bcd2b6fed9058cb76c7e9d4538", size = 847104, upload-time = "2024-04-02T02:20:46.332Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/c9/3bf4473e3b8131a733219346ff90cdab98e019b90c944fc339a599fc8896/deepchem-2.8.0-py3-none-any.whl", hash = "sha256:042c7639770e69b127f3df5e5bdf139893caa1706d512893d78728fd0a2de8b0", size = 1026290, upload-time = "2024-04-02T02:20:39.079Z" }, +] + +[[package]] +name = "defusedxml" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/d5/c66da9b79e5bdb124974bfe172b4daf3c984ebd9c2a06e2b8a4dc7331c72/defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69", size = 75520, upload-time = "2021-03-08T10:59:26.269Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61", size = 25604, upload-time = "2021-03-08T10:59:24.45Z" }, +] + +[[package]] +name = "dgl" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "networkx" }, + { name = "numpy" }, + { name = "psutil" }, + { name = "requests" }, + { name = "scipy" }, + { name = "torchdata" }, + { name = "tqdm" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/09/2d/c0a40c0d78a8e9c0c43e7f6e4aebebb39c8bf0f80380db2c1f1ba9f3bdfa/dgl-2.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ff74c7119cb1e87c1b06293eba8c22725594517062e74659b1a8636134b16974", size = 6889468, upload-time = "2024-03-05T07:16:21.004Z" }, + { url = "https://files.pythonhosted.org/packages/89/19/08b77e50de7beb9c011905167ab38ecee759a796447ed7ad466484eafb53/dgl-2.1.0-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:1fda987e01987d655e9a2b16281e1f31759bd5088ce08785422055c71abc0298", size = 7464359, upload-time = "2024-03-05T07:16:24.216Z" }, + { url = "https://files.pythonhosted.org/packages/ff/45/44fea6e5228602f5d6ad8b4f5a377f5cf5cb5cb6444d9e7cd99150f13fa2/dgl-2.1.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:336e5aed294b9f2f398be332caa0b256e6386e5a6a3a25dfe0715a161e6c4f94", size = 8548990, upload-time = "2024-03-05T07:16:26.655Z" }, + { url = "https://files.pythonhosted.org/packages/73/72/6bc97419cf8fa1e11420c674fafa3c03e4df9d91bfd8fd802011b5741ce9/dgl-2.1.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:65f5ae94c4c88433fc4524ab8c431494cfddd8100181d5de6df4ed08aa41d14d", size = 7430720, upload-time = "2024-03-05T07:16:29.505Z" }, +] + +[[package]] +name = "dgllife" +version = "0.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "hyperopt" }, + { name = "joblib" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "requests" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/84/5b2b0c5529a08ac547c743152354c6e02047874bdc81fab72c94780c21b5/dgllife-0.3.2.tar.gz", hash = "sha256:6a0baf112e5d89b0ced2d459872750540517eb03ae0a8cf71576c4b69fc6b553", size = 146565, upload-time = "2023-02-13T08:43:11.8Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/4e/f96023191b990533abf50fb172b2439e4ab5ee3efb67520a57facd33df12/dgllife-0.3.2-py3-none-any.whl", hash = "sha256:83147cf8972fd55f3bcbc9ab940c826fd8f85fd6c7973ae8daad2e472228e488", size = 226053, upload-time = "2023-02-13T08:43:09.359Z" }, +] + +[[package]] +name = "dill" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/e1/56027a71e31b02ddc53c7d65b01e68edf64dea2932122fe7746a516f75d5/dill-0.4.1.tar.gz", hash = "sha256:423092df4182177d4d8ba8290c8a5b640c66ab35ec7da59ccfa00f6fa3eea5fa", size = 187315, upload-time = "2026-01-19T02:36:56.85Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/77/dc8c558f7593132cf8fefec57c4f60c83b16941c574ac5f619abb3ae7933/dill-0.4.1-py3-none-any.whl", hash = "sha256:1e1ce33e978ae97fcfcff5638477032b801c46c7c65cf717f95fbc2248f79a9d", size = 120019, upload-time = "2026-01-19T02:36:55.663Z" }, +] + +[[package]] +name = "docutils" +version = "0.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", size = 2204444, upload-time = "2024-04-23T18:57:18.24Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", size = 587408, upload-time = "2024-04-23T18:57:14.835Z" }, +] + +[[package]] +name = "exceptiongroup" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" }, +] + +[[package]] +name = "execnet" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bf/89/780e11f9588d9e7128a3f87788354c7946a9cbb1401ad38a48c4db9a4f07/execnet-2.1.2.tar.gz", hash = "sha256:63d83bfdd9a23e35b9c6a3261412324f964c2ec8dcd8d3c6916ee9373e0befcd", size = 166622, upload-time = "2025-11-12T09:56:37.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/84/02fc1827e8cdded4aa65baef11296a9bbe595c474f0d6d758af082d849fd/execnet-2.1.2-py3-none-any.whl", hash = "sha256:67fba928dd5a544b783f6056f449e5e3931a5c378b128bc18501f7ea79e296ec", size = 40708, upload-time = "2025-11-12T09:56:36.333Z" }, +] + +[[package]] +name = "executing" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cc/28/c14e053b6762b1044f34a13aab6859bbf40456d37d23aa286ac24cfd9a5d/executing-2.2.1.tar.gz", hash = "sha256:3632cc370565f6648cc328b32435bd120a1e4ebb20c77e3fdde9a13cd1e533c4", size = 1129488, upload-time = "2025-09-01T09:48:10.866Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl", hash = "sha256:760643d3452b4d777d295bb167ccc74c64a81df23fb5e08eff250c425a4b2017", size = 28317, upload-time = "2025-09-01T09:48:08.5Z" }, +] + +[[package]] +name = "fastjsonschema" +version = "2.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/b5/23b216d9d985a956623b6bd12d4086b60f0059b27799f23016af04a74ea1/fastjsonschema-2.21.2.tar.gz", hash = "sha256:b1eb43748041c880796cd077f1a07c3d94e93ae84bba5ed36800a33554ae05de", size = 374130, upload-time = "2025-08-14T18:49:36.666Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/a8/20d0723294217e47de6d9e2e40fd4a9d2f7c4b6ef974babd482a59743694/fastjsonschema-2.21.2-py3-none-any.whl", hash = "sha256:1c797122d0a86c5cace2e54bf4e819c36223b552017172f32c5c024a6b77e463", size = 24024, upload-time = "2025-08-14T18:49:34.776Z" }, +] + +[[package]] +name = "filelock" +version = "3.28.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/17/6e8890271880903e3538660a21d63a6c1fea969ac71d0d6b608b78727fa9/filelock-3.28.0.tar.gz", hash = "sha256:4ed1010aae813c4ee8d9c660e4792475ee60c4a0ba76073ceaf862bd317e3ca6", size = 56474, upload-time = "2026-04-14T22:54:33.625Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/21/2f728888c45033d34a417bfcd248ea2564c9e08ab1bfd301377cf05d5586/filelock-3.28.0-py3-none-any.whl", hash = "sha256:de9af6712788e7171df1b28b15eba2446c69721433fa427a9bee07b17820a9db", size = 39189, upload-time = "2026-04-14T22:54:32.037Z" }, +] + +[[package]] +name = "flatbuffers" +version = "25.12.19" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/2d/d2a548598be01649e2d46231d151a6c56d10b964d94043a335ae56ea2d92/flatbuffers-25.12.19-py2.py3-none-any.whl", hash = "sha256:7634f50c427838bb021c2d66a3d1168e9d199b0607e6329399f04846d42e20b4", size = 26661, upload-time = "2025-12-19T23:16:13.622Z" }, +] + +[[package]] +name = "folium" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "branca" }, + { name = "jinja2" }, + { name = "numpy" }, + { name = "requests" }, + { name = "xyzservices" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/76/84a1b1b00ce71f9c0c44af7d80f310c02e2e583591fe7d4cb03baecd0d3f/folium-0.20.0.tar.gz", hash = "sha256:a0d78b9d5a36ba7589ca9aedbd433e84e9fcab79cd6ac213adbcff922e454cb9", size = 109932, upload-time = "2025-06-16T20:22:51.803Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b5/a8/5f764f333204db0390362a4356d03a43626997f26818a0e9396f1b3bd8c9/folium-0.20.0-py2.py3-none-any.whl", hash = "sha256:f0bc2a92acde20bca56367aa5c1c376c433f450608d058daebab2fc9bf8198bf", size = 113394, upload-time = "2025-06-16T20:22:50.318Z" }, +] + +[[package]] +name = "fonttools" +version = "4.62.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/08/7012b00a9a5874311b639c3920270c36ee0c445b69d9989a85e5c92ebcb0/fonttools-4.62.1.tar.gz", hash = "sha256:e54c75fd6041f1122476776880f7c3c3295ffa31962dc6ebe2543c00dca58b5d", size = 3580737, upload-time = "2026-03-13T13:54:25.52Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/ff/532ed43808b469c807e8cb6b21358da3fe6fd51486b3a8c93db0bb5d957f/fonttools-4.62.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ad5cca75776cd453b1b035b530e943334957ae152a36a88a320e779d61fc980c", size = 2873740, upload-time = "2026-03-13T13:52:11.822Z" }, + { url = "https://files.pythonhosted.org/packages/85/e4/2318d2b430562da7227010fb2bb029d2fa54d7b46443ae8942bab224e2a0/fonttools-4.62.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0b3ae47e8636156a9accff64c02c0924cbebad62854c4a6dbdc110cd5b4b341a", size = 2417649, upload-time = "2026-03-13T13:52:14.605Z" }, + { url = "https://files.pythonhosted.org/packages/4c/28/40f15523b5188598018e7956899fed94eb7debec89e2dd70cb4a8df90492/fonttools-4.62.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c9b9e288b4da2f64fd6180644221749de651703e8d0c16bd4b719533a3a7d6e3", size = 4935213, upload-time = "2026-03-13T13:52:17.399Z" }, + { url = "https://files.pythonhosted.org/packages/42/09/7dbe3d7023f57d9b580cfa832109d521988112fd59dddfda3fddda8218f9/fonttools-4.62.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7bca7a1c1faf235ffe25d4f2e555246b4750220b38de8261d94ebc5ce8a23c23", size = 4892374, upload-time = "2026-03-13T13:52:20.175Z" }, + { url = "https://files.pythonhosted.org/packages/d1/2d/84509a2e32cb925371560ef5431365d8da2183c11d98e5b4b8b4e42426a5/fonttools-4.62.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b4e0fcf265ad26e487c56cb12a42dffe7162de708762db951e1b3f755319507d", size = 4911856, upload-time = "2026-03-13T13:52:22.777Z" }, + { url = "https://files.pythonhosted.org/packages/a5/80/df28131379eed93d9e6e6fccd3bf6e3d077bebbfe98cc83f21bbcd83ed02/fonttools-4.62.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2d850f66830a27b0d498ee05adb13a3781637b1826982cd7e2b3789ef0cc71ae", size = 5031712, upload-time = "2026-03-13T13:52:25.14Z" }, + { url = "https://files.pythonhosted.org/packages/3d/03/3c8f09aad64230cd6d921ae7a19f9603c36f70930b00459f112706f6769a/fonttools-4.62.1-cp310-cp310-win32.whl", hash = "sha256:486f32c8047ccd05652aba17e4a8819a3a9d78570eb8a0e3b4503142947880ed", size = 1507878, upload-time = "2026-03-13T13:52:28.149Z" }, + { url = "https://files.pythonhosted.org/packages/dd/ec/f53f626f8f3e89f4cadd8fc08f3452c8fd182c951ad5caa35efac22b29ab/fonttools-4.62.1-cp310-cp310-win_amd64.whl", hash = "sha256:5a648bde915fba9da05ae98856987ca91ba832949a9e2888b48c47ef8b96c5a9", size = 1556766, upload-time = "2026-03-13T13:52:30.814Z" }, + { url = "https://files.pythonhosted.org/packages/fd/ba/56147c165442cc5ba7e82ecf301c9a68353cede498185869e6e02b4c264f/fonttools-4.62.1-py3-none-any.whl", hash = "sha256:7487782e2113861f4ddcc07c3436450659e3caa5e470b27dc2177cade2d8e7fd", size = 1152647, upload-time = "2026-03-13T13:54:22.735Z" }, +] + +[[package]] +name = "fqdn" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/30/3e/a80a8c077fd798951169626cde3e239adeba7dab75deb3555716415bd9b0/fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f", size = 6015, upload-time = "2021-03-11T07:16:29.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014", size = 9121, upload-time = "2021-03-11T07:16:28.351Z" }, +] + +[[package]] +name = "frozenlist" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/4a/557715d5047da48d54e659203b9335be7bfaafda2c3f627b7c47e0b3aaf3/frozenlist-1.8.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b37f6d31b3dcea7deb5e9696e529a6aa4a898adc33db82da12e4c60a7c4d2011", size = 86230, upload-time = "2025-10-06T05:35:23.699Z" }, + { url = "https://files.pythonhosted.org/packages/a2/fb/c85f9fed3ea8fe8740e5b46a59cc141c23b842eca617da8876cfce5f760e/frozenlist-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef2b7b394f208233e471abc541cc6991f907ffd47dc72584acee3147899d6565", size = 49621, upload-time = "2025-10-06T05:35:25.341Z" }, + { url = "https://files.pythonhosted.org/packages/63/70/26ca3f06aace16f2352796b08704338d74b6d1a24ca38f2771afbb7ed915/frozenlist-1.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a88f062f072d1589b7b46e951698950e7da00442fc1cacbe17e19e025dc327ad", size = 49889, upload-time = "2025-10-06T05:35:26.797Z" }, + { url = "https://files.pythonhosted.org/packages/5d/ed/c7895fd2fde7f3ee70d248175f9b6cdf792fb741ab92dc59cd9ef3bd241b/frozenlist-1.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f57fb59d9f385710aa7060e89410aeb5058b99e62f4d16b08b91986b9a2140c2", size = 219464, upload-time = "2025-10-06T05:35:28.254Z" }, + { url = "https://files.pythonhosted.org/packages/6b/83/4d587dccbfca74cb8b810472392ad62bfa100bf8108c7223eb4c4fa2f7b3/frozenlist-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:799345ab092bee59f01a915620b5d014698547afd011e691a208637312db9186", size = 221649, upload-time = "2025-10-06T05:35:29.454Z" }, + { url = "https://files.pythonhosted.org/packages/6a/c6/fd3b9cd046ec5fff9dab66831083bc2077006a874a2d3d9247dea93ddf7e/frozenlist-1.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c23c3ff005322a6e16f71bf8692fcf4d5a304aaafe1e262c98c6d4adc7be863e", size = 219188, upload-time = "2025-10-06T05:35:30.951Z" }, + { url = "https://files.pythonhosted.org/packages/ce/80/6693f55eb2e085fc8afb28cf611448fb5b90e98e068fa1d1b8d8e66e5c7d/frozenlist-1.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8a76ea0f0b9dfa06f254ee06053d93a600865b3274358ca48a352ce4f0798450", size = 231748, upload-time = "2025-10-06T05:35:32.101Z" }, + { url = "https://files.pythonhosted.org/packages/97/d6/e9459f7c5183854abd989ba384fe0cc1a0fb795a83c033f0571ec5933ca4/frozenlist-1.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c7366fe1418a6133d5aa824ee53d406550110984de7637d65a178010f759c6ef", size = 236351, upload-time = "2025-10-06T05:35:33.834Z" }, + { url = "https://files.pythonhosted.org/packages/97/92/24e97474b65c0262e9ecd076e826bfd1d3074adcc165a256e42e7b8a7249/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:13d23a45c4cebade99340c4165bd90eeb4a56c6d8a9d8aa49568cac19a6d0dc4", size = 218767, upload-time = "2025-10-06T05:35:35.205Z" }, + { url = "https://files.pythonhosted.org/packages/ee/bf/dc394a097508f15abff383c5108cb8ad880d1f64a725ed3b90d5c2fbf0bb/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:e4a3408834f65da56c83528fb52ce7911484f0d1eaf7b761fc66001db1646eff", size = 235887, upload-time = "2025-10-06T05:35:36.354Z" }, + { url = "https://files.pythonhosted.org/packages/40/90/25b201b9c015dbc999a5baf475a257010471a1fa8c200c843fd4abbee725/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:42145cd2748ca39f32801dad54aeea10039da6f86e303659db90db1c4b614c8c", size = 228785, upload-time = "2025-10-06T05:35:37.949Z" }, + { url = "https://files.pythonhosted.org/packages/84/f4/b5bc148df03082f05d2dd30c089e269acdbe251ac9a9cf4e727b2dbb8a3d/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e2de870d16a7a53901e41b64ffdf26f2fbb8917b3e6ebf398098d72c5b20bd7f", size = 230312, upload-time = "2025-10-06T05:35:39.178Z" }, + { url = "https://files.pythonhosted.org/packages/db/4b/87e95b5d15097c302430e647136b7d7ab2398a702390cf4c8601975709e7/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:20e63c9493d33ee48536600d1a5c95eefc870cd71e7ab037763d1fbb89cc51e7", size = 217650, upload-time = "2025-10-06T05:35:40.377Z" }, + { url = "https://files.pythonhosted.org/packages/e5/70/78a0315d1fea97120591a83e0acd644da638c872f142fd72a6cebee825f3/frozenlist-1.8.0-cp310-cp310-win32.whl", hash = "sha256:adbeebaebae3526afc3c96fad434367cafbfd1b25d72369a9e5858453b1bb71a", size = 39659, upload-time = "2025-10-06T05:35:41.863Z" }, + { url = "https://files.pythonhosted.org/packages/66/aa/3f04523fb189a00e147e60c5b2205126118f216b0aa908035c45336e27e4/frozenlist-1.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:667c3777ca571e5dbeb76f331562ff98b957431df140b54c85fd4d52eea8d8f6", size = 43837, upload-time = "2025-10-06T05:35:43.205Z" }, + { url = "https://files.pythonhosted.org/packages/39/75/1135feecdd7c336938bd55b4dc3b0dfc46d85b9be12ef2628574b28de776/frozenlist-1.8.0-cp310-cp310-win_arm64.whl", hash = "sha256:80f85f0a7cc86e7a54c46d99c9e1318ff01f4687c172ede30fd52d19d1da1c8e", size = 39989, upload-time = "2025-10-06T05:35:44.596Z" }, + { url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" }, +] + +[[package]] +name = "fsspec" +version = "2024.12.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/11/de70dee31455c546fbc88301971ec03c328f3d1138cfba14263f651e9551/fsspec-2024.12.0.tar.gz", hash = "sha256:670700c977ed2fb51e0d9f9253177ed20cbde4a3e5c0283cc5385b5870c8533f", size = 291600, upload-time = "2024-12-19T19:57:30.333Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/86/5486b0188d08aa643e127774a99bac51ffa6cf343e3deb0583956dca5b22/fsspec-2024.12.0-py3-none-any.whl", hash = "sha256:b520aed47ad9804237ff878b504267a3b0b441e97508bd6d2d8774e3db85cee2", size = 183862, upload-time = "2024-12-19T19:57:28.258Z" }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp" }, +] + +[[package]] +name = "future" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/b2/4140c69c6a66432916b26158687e821ba631a4c9273c474343badf84d3ba/future-1.0.0.tar.gz", hash = "sha256:bd2968309307861edae1458a4f8a4f3598c03be43b97521076aebf5d94c07b05", size = 1228490, upload-time = "2024-02-21T11:52:38.461Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/71/ae30dadffc90b9006d77af76b393cb9dfbfc9629f339fc1574a1c52e6806/future-1.0.0-py3-none-any.whl", hash = "sha256:929292d34f5872e70396626ef385ec22355a1fae8ad29e1a734c3e43f9fbc216", size = 491326, upload-time = "2024-02-21T11:52:35.956Z" }, +] + +[[package]] +name = "gast" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/91/f6/e73969782a2ecec280f8a176f2476149dd9dba69d5f8779ec6108a7721e6/gast-0.7.0.tar.gz", hash = "sha256:0bb14cd1b806722e91ddbab6fb86bba148c22b40e7ff11e248974e04c8adfdae", size = 33630, upload-time = "2025-11-29T15:30:05.266Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/33/f1c6a276de27b7d7339a34749cc33fa87f077f921969c47185d34a887ae2/gast-0.7.0-py3-none-any.whl", hash = "sha256:99cbf1365633a74099f69c59bd650476b96baa5ef196fec88032b00b31ba36f7", size = 22966, upload-time = "2025-11-29T15:30:03.983Z" }, +] + +[[package]] +name = "geopandas" +version = "1.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "pyogrio" }, + { name = "pyproj" }, + { name = "shapely" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/85/ba/8e6b2091878e99e86a36a814dcaeff652ed48bdb03d53e78e15aaa63a914/geopandas-1.1.3.tar.gz", hash = "sha256:91a31989b6f566012838d21d5f8033f37dce882079ccb7cfdc40d5ccce7f284f", size = 336718, upload-time = "2026-03-09T21:49:09.545Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/78/6a04792ace63a93e162f1305392d500ae8ddcb620e7eb88a22fd622b35bb/geopandas-1.1.3-py3-none-any.whl", hash = "sha256:90d62a64f95eaa3be2ccc115c5f3d6e24208bb11983b390fdc0621a3eccd0230", size = 342514, upload-time = "2026-03-09T21:49:07.973Z" }, +] + +[[package]] +name = "google-auth" +version = "2.49.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography" }, + { name = "pyasn1-modules" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/fc/e925290a1ad95c975c459e2df070fac2b90954e13a0370ac505dff78cb99/google_auth-2.49.2.tar.gz", hash = "sha256:c1ae38500e73065dcae57355adb6278cf8b5c8e391994ae9cbadbcb9631ab409", size = 333958, upload-time = "2026-04-10T00:41:21.888Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/76/d241a5c927433420507215df6cac1b1fa4ac0ba7a794df42a84326c68da8/google_auth-2.49.2-py3-none-any.whl", hash = "sha256:c2720924dfc82dedb962c9f52cabb2ab16714fd0a6a707e40561d217574ed6d5", size = 240638, upload-time = "2026-04-10T00:41:14.501Z" }, +] + +[[package]] +name = "google-auth-oauthlib" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-auth" }, + { name = "requests-oauthlib" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e3/b4/ef2170c5f6aa5bc2461bab959a84e56d2819ce26662b50038d2d0602223e/google-auth-oauthlib-1.0.0.tar.gz", hash = "sha256:e375064964820b47221a7e1b7ee1fd77051b6323c3f9e3e19785f78ab67ecfc5", size = 20530, upload-time = "2023-02-07T20:53:20.679Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/07/8d9a8186e6768b55dfffeb57c719bc03770cf8a970a074616ae6f9e26a57/google_auth_oauthlib-1.0.0-py2.py3-none-any.whl", hash = "sha256:95880ca704928c300f48194d1770cf5b1462835b6e49db61445a520f793fd5fb", size = 18926, upload-time = "2023-02-07T20:53:18.837Z" }, +] + +[[package]] +name = "google-pasta" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/35/4a/0bd53b36ff0323d10d5f24ebd67af2de10a1117f5cf4d7add90df92756f1/google-pasta-0.2.0.tar.gz", hash = "sha256:c9f2c8dfc8f96d0d5808299920721be30c9eec37f2389f28904f454565c8a16e", size = 40430, upload-time = "2020-03-13T18:57:50.34Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/de/c648ef6835192e6e2cc03f40b19eeda4382c49b5bafb43d88b931c4c74ac/google_pasta-0.2.0-py3-none-any.whl", hash = "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed", size = 57471, upload-time = "2020-03-13T18:57:48.872Z" }, +] + +[[package]] +name = "greenlet" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/86/94/a5935717b307d7c71fe877b52b884c6af707d2d2090db118a03fbd799369/greenlet-3.4.0.tar.gz", hash = "sha256:f50a96b64dafd6169e595a5c56c9146ef80333e67d4476a65a9c55f400fc22ff", size = 195913, upload-time = "2026-04-08T17:08:00.863Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/bc/e30e1e3d5e8860b0e0ce4d2b16b2681b77fd13542fc0d72f7e3c22d16eff/greenlet-3.4.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d18eae9a7fb0f499efcd146b8c9750a2e1f6e0e93b5a382b3481875354a430e6", size = 284315, upload-time = "2026-04-08T17:02:52.322Z" }, + { url = "https://files.pythonhosted.org/packages/5b/cc/e023ae1967d2a26737387cac083e99e47f65f58868bd155c4c80c01ec4e0/greenlet-3.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:636d2f95c309e35f650e421c23297d5011716be15d966e6328b367c9fc513a82", size = 601916, upload-time = "2026-04-08T16:24:35.533Z" }, + { url = "https://files.pythonhosted.org/packages/67/32/5be1677954b6d8810b33abe94e3eb88726311c58fa777dc97e390f7caf5a/greenlet-3.4.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:234582c20af9742583c3b2ddfbdbb58a756cfff803763ffaae1ac7990a9fac31", size = 616399, upload-time = "2026-04-08T16:30:54.536Z" }, + { url = "https://files.pythonhosted.org/packages/74/bf/2d58d5ea515704f83e34699128c9072a34bea27d2b6a556e102105fe62a5/greenlet-3.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:523677e69cd4711b5a014e37bc1fb3a29947c3e3a5bb6a527e1cc50312e5a398", size = 611978, upload-time = "2026-04-08T15:56:31.335Z" }, + { url = "https://files.pythonhosted.org/packages/bd/69/6525049b6c179d8a923256304d8387b8bdd4acab1acf0407852463c6d514/greenlet-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b45e45fe47a19051a396abb22e19e7836a59ee6c5a90f3be427343c37908d65b", size = 1571957, upload-time = "2026-04-08T16:26:17.041Z" }, + { url = "https://files.pythonhosted.org/packages/4e/6c/bbfb798b05fec736a0d24dc23e81b45bcee87f45a83cfb39db031853bddc/greenlet-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5434271357be07f3ad0936c312645853b7e689e679e29310e2de09a9ea6c3adf", size = 1637223, upload-time = "2026-04-08T15:57:27.556Z" }, + { url = "https://files.pythonhosted.org/packages/b7/7d/981fe0e7c07bd9d5e7eb18decb8590a11e3955878291f7a7de2e9c668eb7/greenlet-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:a19093fbad824ed7c0f355b5ff4214bffda5f1a7f35f29b31fcaa240cc0135ab", size = 237902, upload-time = "2026-04-08T17:03:14.16Z" }, +] + +[[package]] +name = "grpcio" +version = "1.80.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b7/48/af6173dbca4454f4637a4678b67f52ca7e0c1ed7d5894d89d434fecede05/grpcio-1.80.0.tar.gz", hash = "sha256:29aca15edd0688c22ba01d7cc01cb000d72b2033f4a3c72a81a19b56fd143257", size = 12978905, upload-time = "2026-03-30T08:49:10.502Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/cd/bb7b7e54084a344c03d68144450da7ddd5564e51a298ae1662de65f48e2d/grpcio-1.80.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:886457a7768e408cdce226ad1ca67d2958917d306523a0e21e1a2fdaa75c9c9c", size = 6050363, upload-time = "2026-03-30T08:46:20.894Z" }, + { url = "https://files.pythonhosted.org/packages/16/02/1417f5c3460dea65f7a2e3c14e8b31e77f7ffb730e9bfadd89eda7a9f477/grpcio-1.80.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:7b641fc3f1dc647bfd80bd713addc68f6d145956f64677e56d9ebafc0bd72388", size = 12026037, upload-time = "2026-03-30T08:46:25.144Z" }, + { url = "https://files.pythonhosted.org/packages/43/98/c910254eedf2cae368d78336a2de0678e66a7317d27c02522392f949b5c6/grpcio-1.80.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:33eb763f18f006dc7fee1e69831d38d23f5eccd15b2e0f92a13ee1d9242e5e02", size = 6602306, upload-time = "2026-03-30T08:46:27.593Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f8/88ca4e78c077b2b2113d95da1e1ab43efd43d723c9a0397d26529c2c1a56/grpcio-1.80.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:52d143637e3872633fc7dd7c3c6a1c84e396b359f3a72e215f8bf69fd82084fc", size = 7301535, upload-time = "2026-03-30T08:46:29.556Z" }, + { url = "https://files.pythonhosted.org/packages/f9/96/f28660fe2fe0f153288bf4a04e4910b7309d442395135c88ed4f5b3b8b40/grpcio-1.80.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c51bf8ac4575af2e0678bccfb07e47321fc7acb5049b4482832c5c195e04e13a", size = 6808669, upload-time = "2026-03-30T08:46:31.984Z" }, + { url = "https://files.pythonhosted.org/packages/47/eb/3f68a5e955779c00aeef23850e019c1c1d0e032d90633ba49c01ad5a96e0/grpcio-1.80.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:50a9871536d71c4fba24ee856abc03a87764570f0c457dd8db0b4018f379fed9", size = 7409489, upload-time = "2026-03-30T08:46:34.684Z" }, + { url = "https://files.pythonhosted.org/packages/5b/a7/d2f681a4bfb881be40659a309771f3bdfbfdb1190619442816c3f0ffc079/grpcio-1.80.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a72d84ad0514db063e21887fbacd1fd7acb4d494a564cae22227cd45c7fbf199", size = 8423167, upload-time = "2026-03-30T08:46:36.833Z" }, + { url = "https://files.pythonhosted.org/packages/97/8a/29b4589c204959aa35ce5708400a05bba72181807c45c47b3ec000c39333/grpcio-1.80.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f7691a6788ad9196872f95716df5bc643ebba13c97140b7a5ee5c8e75d1dea81", size = 7846761, upload-time = "2026-03-30T08:46:40.091Z" }, + { url = "https://files.pythonhosted.org/packages/6b/d2/ed143e097230ee121ac5848f6ff14372dba91289b10b536d54fb1b7cbae7/grpcio-1.80.0-cp310-cp310-win32.whl", hash = "sha256:46c2390b59d67f84e882694d489f5b45707c657832d7934859ceb8c33f467069", size = 4156534, upload-time = "2026-03-30T08:46:42.026Z" }, + { url = "https://files.pythonhosted.org/packages/d5/c9/df8279bb49b29409995e95efa85b72973d62f8aeff89abee58c91f393710/grpcio-1.80.0-cp310-cp310-win_amd64.whl", hash = "sha256:dc053420fc75749c961e2a4c906398d7c15725d36ccc04ae6d16093167223b58", size = 4889869, upload-time = "2026-03-30T08:46:44.219Z" }, +] + +[[package]] +name = "h11" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, +] + +[[package]] +name = "h5py" +version = "3.16.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/33/acd0ce6863b6c0d7735007df01815403f5589a21ff8c2e1ee2587a38f548/h5py-3.16.0.tar.gz", hash = "sha256:a0dbaad796840ccaa67a4c144a0d0c8080073c34c76d5a6941d6818678ef2738", size = 446526, upload-time = "2026-03-06T13:49:08.07Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/6b/231413e58a787a89b316bb0d1777da3c62257e4797e09afd8d17ad3549dc/h5py-3.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e06f864bedb2c8e7c1358e6c73af48519e317457c444d6f3d332bb4e8fa6d7d9", size = 3724137, upload-time = "2026-03-06T13:47:35.242Z" }, + { url = "https://files.pythonhosted.org/packages/74/f9/557ce3aad0fe8471fb5279bab0fc56ea473858a022c4ce8a0b8f303d64e9/h5py-3.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ec86d4fffd87a0f4cb3d5796ceb5a50123a2a6d99b43e616e5504e66a953eca3", size = 3090112, upload-time = "2026-03-06T13:47:37.634Z" }, + { url = "https://files.pythonhosted.org/packages/7a/f5/e15b3d0dc8a18e56409a839e6468d6fb589bc5207c917399c2e0706eeb44/h5py-3.16.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:86385ea895508220b8a7e45efa428aeafaa586bd737c7af9ee04661d8d84a10d", size = 4844847, upload-time = "2026-03-06T13:47:39.811Z" }, + { url = "https://files.pythonhosted.org/packages/cb/92/a8851d936547efe30cc0ce5245feac01f3ec6171f7899bc3f775c72030b3/h5py-3.16.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:8975273c2c5921c25700193b408e28d6bdd0111c37468b2d4e25dcec4cd1d84d", size = 5065352, upload-time = "2026-03-06T13:47:41.489Z" }, + { url = "https://files.pythonhosted.org/packages/2b/ae/f2adc5d0ca9626db3277a3d87516e124cbc5d0eea0bd79bc085702d04f2c/h5py-3.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1677ad48b703f44efc9ea0c3ab284527f81bc4f318386aaaebc5fede6bbae56f", size = 4839173, upload-time = "2026-03-06T13:47:43.586Z" }, + { url = "https://files.pythonhosted.org/packages/64/0b/e0c8c69da1d8838da023a50cd3080eae5d475691f7636b35eff20bb6ef20/h5py-3.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7c4dd4cf5f0a4e36083f73172f6cfc25a5710789269547f132a20975bfe2434c", size = 5076216, upload-time = "2026-03-06T13:47:45.315Z" }, + { url = "https://files.pythonhosted.org/packages/66/35/d88fd6718832133c885004c61ceeeb24dbd6397ef877dbed6b3a64d6a286/h5py-3.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:bdef06507725b455fccba9c16529121a5e1fbf56aa375f7d9713d9e8ff42454d", size = 3183639, upload-time = "2026-03-06T13:47:47.041Z" }, +] + +[[package]] +name = "httpcore" +version = "1.0.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, +] + +[[package]] +name = "httpx" +version = "0.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, +] + +[[package]] +name = "humanfriendly" +version = "10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyreadline3", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/3f/2c29224acb2e2df4d2046e4c73ee2662023c58ff5b113c4c1adac0886c43/humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc", size = 360702, upload-time = "2021-09-17T21:40:43.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794, upload-time = "2021-09-17T21:40:39.897Z" }, +] + +[[package]] +name = "hyperopt" +version = "0.2.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cloudpickle" }, + { name = "future" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "py4j" }, + { name = "scipy" }, + { name = "six" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/75/0c4712e3f3a21c910778b8f9f4622601a823cefcae24181467674a0352f9/hyperopt-0.2.7.tar.gz", hash = "sha256:1bf89ae58050bbd32c7307199046117feee245c2fd9ab6255c7308522b7ca149", size = 1308240, upload-time = "2021-11-17T10:05:51.386Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/cd/5b3334d39276067f54618ce0d0b48ed69d91352fbf137468c7095170d0e5/hyperopt-0.2.7-py2.py3-none-any.whl", hash = "sha256:f3046d91fe4167dbf104365016596856b2524a609d22f047a066fc1ac796427c", size = 1583421, upload-time = "2021-11-17T10:05:44.265Z" }, +] + +[[package]] +name = "idna" +version = "3.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, +] + +[[package]] +name = "imagesize" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/e6/7bf14eeb8f8b7251141944835abd42eb20a658d89084b7e1f3e5fe394090/imagesize-2.0.0.tar.gz", hash = "sha256:8e8358c4a05c304f1fccf7ff96f036e7243a189e9e42e90851993c558cfe9ee3", size = 1773045, upload-time = "2026-03-03T14:18:29.941Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5f/53/fb7122b71361a0d121b669dcf3d31244ef75badbbb724af388948de543e2/imagesize-2.0.0-py2.py3-none-any.whl", hash = "sha256:5667c5bbb57ab3f1fa4bc366f4fbc971db3d5ed011fd2715fd8001f782718d96", size = 9441, upload-time = "2026-03-03T14:18:27.892Z" }, +] + +[[package]] +name = "imbalanced-learn" +version = "0.12.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/30/41/8b15f1df14ff38f1fdd4eb2b128478d99c38db4a14292270639ae9d65447/imbalanced-learn-0.12.4.tar.gz", hash = "sha256:8153ba385d296b07d97e0901a2624a86c06b48c94c2f92da3a5354827697b7a3", size = 478372, upload-time = "2024-10-04T17:00:55.162Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d8/0d/c3bfccc5d460eec8ff56889802aa88f5d07280d5282b307a74558e6edc44/imbalanced_learn-0.12.4-py3-none-any.whl", hash = "sha256:d47fc599160d3ea882e712a3a6b02bdd353c1a6436d8d68d41b1922e6ee4a703", size = 258324, upload-time = "2024-10-04T17:00:52.715Z" }, +] + +[[package]] +name = "imblearn" +version = "0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "imbalanced-learn" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/0a/f83099534a77757abf27427d339590c83cc68c3386690d4741d6454e185f/imblearn-0.0.tar.gz", hash = "sha256:d8fbb662919c1b16f438ad91a8256220e53bcf6815c9ad5502c518b798de34f2", size = 945, upload-time = "2017-01-19T11:52:35.89Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/a7/4179e6ebfd654bd0eac0b9c06125b8b4c96a9d0a8ff9e9507eb2a26d2d7e/imblearn-0.0-py2.py3-none-any.whl", hash = "sha256:d42c2d709d22c00d2b9a91e638d57240a8b79b4014122d92181fcd2549a2f79a", size = 1874, upload-time = "2017-01-19T11:52:37.416Z" }, +] + +[[package]] +name = "importlib-resources" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/06/b56dfa750b44e86157093bc8fca0ab81dccbf5260510de4eaf1cb69b5b99/importlib_resources-7.1.0.tar.gz", hash = "sha256:0722d4c6212489c530f2a145a34c0a7a3b4721bc96a15fada5930e2a0b760708", size = 44985, upload-time = "2026-04-12T16:36:09.232Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/db/55a262f3606bebcae07cc14095338471ad7c0bbcaa37707e6f0ee49725b7/importlib_resources-7.1.0-py3-none-any.whl", hash = "sha256:1bd7b48b4088eddb2cd16382150bb515af0bd2c70128194392725f82ad2c96a1", size = 37232, upload-time = "2026-04-12T16:36:08.219Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, +] + +[[package]] +name = "ipykernel" +version = "7.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appnope", marker = "sys_platform == 'darwin'" }, + { name = "comm" }, + { name = "debugpy" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "matplotlib-inline" }, + { name = "nest-asyncio" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/8d/b68b728e2d06b9e0051019640a40a9eb7a88fcd82c2e1b5ce70bef5ff044/ipykernel-7.2.0.tar.gz", hash = "sha256:18ed160b6dee2cbb16e5f3575858bc19d8f1fe6046a9a680c708494ce31d909e", size = 176046, upload-time = "2026-02-06T16:43:27.403Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/b9/e73d5d9f405cba7706c539aa8b311b49d4c2f3d698d9c12f815231169c71/ipykernel-7.2.0-py3-none-any.whl", hash = "sha256:3bbd4420d2b3cc105cbdf3756bfc04500b1e52f090a90716851f3916c62e1661", size = 118788, upload-time = "2026-02-06T16:43:25.149Z" }, +] + +[[package]] +name = "ipython" +version = "8.39.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "decorator" }, + { name = "exceptiongroup" }, + { name = "jedi" }, + { name = "matplotlib-inline" }, + { name = "pexpect", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "stack-data" }, + { name = "traitlets" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/40/18/f8598d287006885e7136451fdea0755af4ebcbfe342836f24deefaed1164/ipython-8.39.0.tar.gz", hash = "sha256:4110ae96012c379b8b6db898a07e186c40a2a1ef5d57a7fa83166047d9da7624", size = 5513971, upload-time = "2026-03-27T10:02:13.94Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/56/4cc7fc9e9e3f38fd324f24f8afe0ad8bb5fa41283f37f1aaf9de0612c968/ipython-8.39.0-py3-none-any.whl", hash = "sha256:bb3c51c4fa8148ab1dea07a79584d1c854e234ea44aa1283bcb37bc75054651f", size = 831849, upload-time = "2026-03-27T10:02:07.846Z" }, +] + +[[package]] +name = "ipywidgets" +version = "8.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "comm" }, + { name = "ipython" }, + { name = "jupyterlab-widgets" }, + { name = "traitlets" }, + { name = "widgetsnbextension" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4c/ae/c5ce1edc1afe042eadb445e95b0671b03cee61895264357956e61c0d2ac0/ipywidgets-8.1.8.tar.gz", hash = "sha256:61f969306b95f85fba6b6986b7fe45d73124d1d9e3023a8068710d47a22ea668", size = 116739, upload-time = "2025-11-01T21:18:12.393Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/6d/0d9848617b9f753b87f214f1c682592f7ca42de085f564352f10f0843026/ipywidgets-8.1.8-py3-none-any.whl", hash = "sha256:ecaca67aed704a338f88f67b1181b58f821ab5dc89c1f0f5ef99db43c1c2921e", size = 139808, upload-time = "2025-11-01T21:18:10.956Z" }, +] + +[[package]] +name = "isoduration" +version = "20.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "arrow" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7c/1a/3c8edc664e06e6bd06cce40c6b22da5f1429aa4224d0c590f3be21c91ead/isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9", size = 11649, upload-time = "2020-11-01T11:00:00.312Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/55/e5326141505c5d5e34c5e0935d2908a74e4561eca44108fbfb9c13d2911a/isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042", size = 11321, upload-time = "2020-11-01T10:59:58.02Z" }, +] + +[[package]] +name = "jedi" +version = "0.19.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "parso" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/3a/79a912fbd4d8dd6fbb02bf69afd3bb72cf0c729bb3063c6f4498603db17a/jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0", size = 1231287, upload-time = "2024-11-11T01:41:42.873Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9", size = 1572278, upload-time = "2024-11-11T01:41:40.175Z" }, +] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + +[[package]] +name = "joblib" +version = "1.5.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f2/d34e8b3a08a9cc79a50b2208a93dce981fe615b64d5a4d4abee421d898df/joblib-1.5.3.tar.gz", hash = "sha256:8561a3269e6801106863fd0d6d84bb737be9e7631e33aaed3fb9ce5953688da3", size = 331603, upload-time = "2025-12-15T08:41:46.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl", hash = "sha256:5fc3c5039fc5ca8c0276333a188bbd59d6b7ab37fe6632daa76bc7f9ec18e713", size = 309071, upload-time = "2025-12-15T08:41:44.973Z" }, +] + +[[package]] +name = "json5" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/4b/6f8906aaf67d501e259b0adab4d312945bb7211e8b8d4dcc77c92320edaa/json5-0.14.0.tar.gz", hash = "sha256:b3f492fad9f6cdbced8b7d40b28b9b1c9701c5f561bef0d33b81c2ff433fefcb", size = 52656, upload-time = "2026-03-27T22:50:48.108Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/42/cf027b4ac873b076189d935b135397675dac80cb29acb13e1ab86ad6c631/json5-0.14.0-py3-none-any.whl", hash = "sha256:56cf861bab076b1178eb8c92e1311d273a9b9acea2ccc82c276abf839ebaef3a", size = 36271, upload-time = "2026-03-27T22:50:47.073Z" }, +] + +[[package]] +name = "jsonpointer" +version = "3.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/c7/af399a2e7a67fd18d63c40c5e62d3af4e67b836a2107468b6a5ea24c4304/jsonpointer-3.1.1.tar.gz", hash = "sha256:0b801c7db33a904024f6004d526dcc53bbb8a4a0f4e32bfd10beadf60adf1900", size = 9068, upload-time = "2026-03-23T22:32:32.458Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/6a/a83720e953b1682d2d109d3c2dbb0bc9bf28cc1cbc205be4ef4be5da709d/jsonpointer-3.1.1-py3-none-any.whl", hash = "sha256:8ff8b95779d071ba472cf5bc913028df06031797532f08a7d5b602d8b2a488ca", size = 7659, upload-time = "2026-03-23T22:32:31.568Z" }, +] + +[[package]] +name = "jsonref" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/0d/c1f3277e90ccdb50d33ed5ba1ec5b3f0a242ed8c1b1a85d3afeb68464dca/jsonref-1.1.0.tar.gz", hash = "sha256:32fe8e1d85af0fdefbebce950af85590b22b60f9e95443176adbde4e1ecea552", size = 8814, upload-time = "2023-01-16T16:10:04.455Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/ec/e1db9922bceb168197a558a2b8c03a7963f1afe93517ddd3cf99f202f996/jsonref-1.1.0-py3-none-any.whl", hash = "sha256:590dc7773df6c21cbf948b5dac07a72a251db28b0238ceecce0a2abfa8ec30a9", size = 9425, upload-time = "2023-01-16T16:10:02.255Z" }, +] + +[[package]] +name = "jsonschema" +version = "4.26.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "jsonschema-specifications" }, + { name = "referencing" }, + { name = "rpds-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" }, +] + +[package.optional-dependencies] +format-nongpl = [ + { name = "fqdn" }, + { name = "idna" }, + { name = "isoduration" }, + { name = "jsonpointer" }, + { name = "rfc3339-validator" }, + { name = "rfc3986-validator" }, + { name = "rfc3987-syntax" }, + { name = "uri-template" }, + { name = "webcolors" }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2025.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" }, +] + +[[package]] +name = "jupyter" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipykernel" }, + { name = "ipywidgets" }, + { name = "jupyter-console" }, + { name = "jupyterlab" }, + { name = "nbconvert" }, + { name = "notebook" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/f3/af28ea964ab8bc1e472dba2e82627d36d470c51f5cd38c37502eeffaa25e/jupyter-1.1.1.tar.gz", hash = "sha256:d55467bceabdea49d7e3624af7e33d59c37fff53ed3a350e1ac957bed731de7a", size = 5714959, upload-time = "2024-08-30T07:15:48.299Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/64/285f20a31679bf547b75602702f7800e74dbabae36ef324f716c02804753/jupyter-1.1.1-py2.py3-none-any.whl", hash = "sha256:7a59533c22af65439b24bbe60373a4e95af8f16ac65a6c00820ad378e3f7cc83", size = 2657, upload-time = "2024-08-30T07:15:47.045Z" }, +] + +[[package]] +name = "jupyter-client" +version = "8.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-core" }, + { name = "python-dateutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/e4/ba649102a3bc3fbca54e7239fb924fd434c766f855693d86de0b1f2bec81/jupyter_client-8.8.0.tar.gz", hash = "sha256:d556811419a4f2d96c869af34e854e3f059b7cc2d6d01a9cd9c85c267691be3e", size = 348020, upload-time = "2026-01-08T13:55:47.938Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/0b/ceb7694d864abc0a047649aec263878acb9f792e1fec3e676f22dc9015e3/jupyter_client-8.8.0-py3-none-any.whl", hash = "sha256:f93a5b99c5e23a507b773d3a1136bd6e16c67883ccdbd9a829b0bbdb98cd7d7a", size = 107371, upload-time = "2026-01-08T13:55:45.562Z" }, +] + +[[package]] +name = "jupyter-console" +version = "6.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipykernel" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "pyzmq" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bd/2d/e2fd31e2fc41c14e2bcb6c976ab732597e907523f6b2420305f9fc7fdbdb/jupyter_console-6.6.3.tar.gz", hash = "sha256:566a4bf31c87adbfadf22cdf846e3069b59a71ed5da71d6ba4d8aaad14a53539", size = 34363, upload-time = "2023-03-06T14:13:31.02Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/77/71d78d58f15c22db16328a476426f7ac4a60d3a5a7ba3b9627ee2f7903d4/jupyter_console-6.6.3-py3-none-any.whl", hash = "sha256:309d33409fcc92ffdad25f0bcdf9a4a9daa61b6f341177570fdac03de5352485", size = 24510, upload-time = "2023-03-06T14:13:28.229Z" }, +] + +[[package]] +name = "jupyter-core" +version = "5.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/49/9d1284d0dc65e2c757b74c6687b6d319b02f822ad039e5c512df9194d9dd/jupyter_core-5.9.1.tar.gz", hash = "sha256:4d09aaff303b9566c3ce657f580bd089ff5c91f5f89cf7d8846c3cdf465b5508", size = 89814, upload-time = "2025-10-16T19:19:18.444Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/e7/80988e32bf6f73919a113473a604f5a8f09094de312b9d52b79c2df7612b/jupyter_core-5.9.1-py3-none-any.whl", hash = "sha256:ebf87fdc6073d142e114c72c9e29a9d7ca03fad818c5d300ce2adc1fb0743407", size = 29032, upload-time = "2025-10-16T19:19:16.783Z" }, +] + +[[package]] +name = "jupyter-events" +version = "0.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonschema", extra = ["format-nongpl"] }, + { name = "packaging" }, + { name = "python-json-logger" }, + { name = "pyyaml" }, + { name = "referencing" }, + { name = "rfc3339-validator" }, + { name = "rfc3986-validator" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/c3/306d090461e4cf3cd91eceaff84bede12a8e52cd821c2d20c9a4fd728385/jupyter_events-0.12.0.tar.gz", hash = "sha256:fc3fce98865f6784c9cd0a56a20644fc6098f21c8c33834a8d9fe383c17e554b", size = 62196, upload-time = "2025-02-03T17:23:41.485Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/48/577993f1f99c552f18a0428731a755e06171f9902fa118c379eb7c04ea22/jupyter_events-0.12.0-py3-none-any.whl", hash = "sha256:6464b2fa5ad10451c3d35fabc75eab39556ae1e2853ad0c0cc31b656731a97fb", size = 19430, upload-time = "2025-02-03T17:23:38.643Z" }, +] + +[[package]] +name = "jupyter-lsp" +version = "2.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/36/ff/1e4a61f5170a9a1d978f3ac3872449de6c01fc71eaf89657824c878b1549/jupyter_lsp-2.3.1.tar.gz", hash = "sha256:fdf8a4aa7d85813976d6e29e95e6a2c8f752701f926f2715305249a3829805a6", size = 55677, upload-time = "2026-04-02T08:10:06.749Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/e8/9d61dcbd1dce8ef418f06befd4ac084b4720429c26b0b1222bc218685eff/jupyter_lsp-2.3.1-py3-none-any.whl", hash = "sha256:71b954d834e85ff3096400554f2eefaf7fe37053036f9a782b0f7c5e42dadb81", size = 77513, upload-time = "2026-04-02T08:10:01.753Z" }, +] + +[[package]] +name = "jupyter-server" +version = "2.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "argon2-cffi" }, + { name = "jinja2" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "jupyter-events" }, + { name = "jupyter-server-terminals" }, + { name = "nbconvert" }, + { name = "nbformat" }, + { name = "overrides" }, + { name = "packaging" }, + { name = "prometheus-client" }, + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "pyzmq" }, + { name = "send2trash" }, + { name = "terminado" }, + { name = "tornado" }, + { name = "traitlets" }, + { name = "websocket-client" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/ac/e040ec363d7b6b1f11304cc9f209dac4517ece5d5e01821366b924a64a50/jupyter_server-2.17.0.tar.gz", hash = "sha256:c38ea898566964c888b4772ae1ed58eca84592e88251d2cfc4d171f81f7e99d5", size = 731949, upload-time = "2025-08-21T14:42:54.042Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/92/80/a24767e6ca280f5a49525d987bf3e4d7552bf67c8be07e8ccf20271f8568/jupyter_server-2.17.0-py3-none-any.whl", hash = "sha256:e8cb9c7db4251f51ed307e329b81b72ccf2056ff82d50524debde1ee1870e13f", size = 388221, upload-time = "2025-08-21T14:42:52.034Z" }, +] + +[[package]] +name = "jupyter-server-terminals" +version = "0.5.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "terminado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f4/a7/bcd0a9b0cbba88986fe944aaaf91bfda603e5a50bda8ed15123f381a3b2f/jupyter_server_terminals-0.5.4.tar.gz", hash = "sha256:bbda128ed41d0be9020349f9f1f2a4ab9952a73ed5f5ac9f1419794761fb87f5", size = 31770, upload-time = "2026-01-14T16:53:20.213Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/2d/6674563f71c6320841fc300911a55143925112a72a883e2ca71fba4c618d/jupyter_server_terminals-0.5.4-py3-none-any.whl", hash = "sha256:55be353fc74a80bc7f3b20e6be50a55a61cd525626f578dcb66a5708e2007d14", size = 13704, upload-time = "2026-01-14T16:53:18.738Z" }, +] + +[[package]] +name = "jupyterlab" +version = "4.5.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "async-lru" }, + { name = "httpx" }, + { name = "ipykernel" }, + { name = "jinja2" }, + { name = "jupyter-core" }, + { name = "jupyter-lsp" }, + { name = "jupyter-server" }, + { name = "jupyterlab-server" }, + { name = "notebook-shim" }, + { name = "packaging" }, + { name = "setuptools" }, + { name = "tomli" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ac/d5/730628e03fff2e8a8e8ccdaedde1489ab1309f9a4fa2536248884e30b7c7/jupyterlab-4.5.6.tar.gz", hash = "sha256:642fe2cfe7f0f5922a8a558ba7a0d246c7bc133b708dfe43f7b3a826d163cf42", size = 23970670, upload-time = "2026-03-11T14:17:04.531Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/1b/dad6fdcc658ed7af26fdf3841e7394072c9549a8b896c381ab49dd11e2d9/jupyterlab-4.5.6-py3-none-any.whl", hash = "sha256:d6b3dac883aa4d9993348e0f8e95b24624f75099aed64eab6a4351a9cdd1e580", size = 12447124, upload-time = "2026-03-11T14:17:00.229Z" }, +] + +[[package]] +name = "jupyterlab-pygments" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/51/9187be60d989df97f5f0aba133fa54e7300f17616e065d1ada7d7646b6d6/jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d", size = 512900, upload-time = "2023-11-23T09:26:37.44Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780", size = 15884, upload-time = "2023-11-23T09:26:34.325Z" }, +] + +[[package]] +name = "jupyterlab-server" +version = "2.28.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "babel" }, + { name = "jinja2" }, + { name = "json5" }, + { name = "jsonschema" }, + { name = "jupyter-server" }, + { name = "packaging" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d6/2c/90153f189e421e93c4bb4f9e3f59802a1f01abd2ac5cf40b152d7f735232/jupyterlab_server-2.28.0.tar.gz", hash = "sha256:35baa81898b15f93573e2deca50d11ac0ae407ebb688299d3a5213265033712c", size = 76996, upload-time = "2025-10-22T13:59:18.37Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/07/a000fe835f76b7e1143242ab1122e6362ef1c03f23f83a045c38859c2ae0/jupyterlab_server-2.28.0-py3-none-any.whl", hash = "sha256:e4355b148fdcf34d312bbbc80f22467d6d20460e8b8736bf235577dd18506968", size = 59830, upload-time = "2025-10-22T13:59:16.767Z" }, +] + +[[package]] +name = "jupyterlab-widgets" +version = "3.0.16" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/2d/ef58fed122b268c69c0aa099da20bc67657cdfb2e222688d5731bd5b971d/jupyterlab_widgets-3.0.16.tar.gz", hash = "sha256:423da05071d55cf27a9e602216d35a3a65a3e41cdf9c5d3b643b814ce38c19e0", size = 897423, upload-time = "2025-11-01T21:11:29.724Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/b5/36c712098e6191d1b4e349304ef73a8d06aed77e56ceaac8c0a306c7bda1/jupyterlab_widgets-3.0.16-py3-none-any.whl", hash = "sha256:45fa36d9c6422cf2559198e4db481aa243c7a32d9926b500781c830c80f7ecf8", size = 914926, upload-time = "2025-11-01T21:11:28.008Z" }, +] + +[[package]] +name = "keras" +version = "2.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bf/85/d52a86eb5ae700e1f8694157019249eb33350ae9e477cd03ecdb50939d22/keras-2.14.0.tar.gz", hash = "sha256:22788bdbc86d9988794fe9703bb5205141da797c4faeeb59497c58c3d94d34ed", size = 1251354, upload-time = "2023-09-11T17:21:04.379Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/58/34d4d8f1aa11120c2d36d7ad27d0526164b1a8ae45990a2fede31d0e59bf/keras-2.14.0-py3-none-any.whl", hash = "sha256:d7429d1d2131cc7eb1f2ea2ec330227c7d9d38dab3dfdf2e78defee4ecc43fcd", size = 1709236, upload-time = "2023-09-11T17:21:02.164Z" }, +] + +[[package]] +name = "kiwisolver" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/67/9c61eccb13f0bdca9307614e782fec49ffdde0f7a2314935d489fa93cd9c/kiwisolver-1.5.0.tar.gz", hash = "sha256:d4193f3d9dc3f6f79aaed0e5637f45d98850ebf01f7ca20e69457f3e8946b66a", size = 103482, upload-time = "2026-03-09T13:15:53.382Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/f8/06549565caa026e540b7e7bab5c5a90eb7ca986015f4c48dace243cd24d9/kiwisolver-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32cc0a5365239a6ea0c6ed461e8838d053b57e397443c0ca894dcc8e388d4374", size = 122802, upload-time = "2026-03-09T13:12:37.515Z" }, + { url = "https://files.pythonhosted.org/packages/84/eb/8476a0818850c563ff343ea7c9c05dcdcbd689a38e01aa31657df01f91fa/kiwisolver-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cc0b66c1eec9021353a4b4483afb12dfd50e3669ffbb9152d6842eb34c7e29fd", size = 66216, upload-time = "2026-03-09T13:12:38.812Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c4/f9c8a6b4c21aed4198566e45923512986d6cef530e7263b3a5f823546561/kiwisolver-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:86e0287879f75621ae85197b0877ed2f8b7aa57b511c7331dce2eb6f4de7d476", size = 63917, upload-time = "2026-03-09T13:12:40.053Z" }, + { url = "https://files.pythonhosted.org/packages/f1/0e/ba4ae25d03722f64de8b2c13e80d82ab537a06b30fc7065183c6439357e3/kiwisolver-1.5.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:62f59da443c4f4849f73a51a193b1d9d258dcad0c41bc4d1b8fb2bcc04bfeb22", size = 1628776, upload-time = "2026-03-09T13:12:41.976Z" }, + { url = "https://files.pythonhosted.org/packages/8a/e4/3f43a011bc8a0860d1c96f84d32fa87439d3feedf66e672fef03bf5e8bac/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9190426b7aa26c5229501fa297b8d0653cfd3f5a36f7990c264e157cbf886b3b", size = 1228164, upload-time = "2026-03-09T13:12:44.002Z" }, + { url = "https://files.pythonhosted.org/packages/4b/34/3a901559a1e0c218404f9a61a93be82d45cb8f44453ba43088644980f033/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c8277104ded0a51e699c8c3aff63ce2c56d4ed5519a5f73e0fd7057f959a2b9e", size = 1246656, upload-time = "2026-03-09T13:12:45.557Z" }, + { url = "https://files.pythonhosted.org/packages/87/9e/f78c466ea20527822b95ad38f141f2de1dcd7f23fb8716b002b0d91bbe59/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8f9baf6f0a6e7571c45c8863010b45e837c3ee1c2c77fcd6ef423be91b21fedb", size = 1295562, upload-time = "2026-03-09T13:12:47.562Z" }, + { url = "https://files.pythonhosted.org/packages/0a/66/fd0e4a612e3a286c24e6d6f3a5428d11258ed1909bc530ba3b59807fd980/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cff8e5383db4989311f99e814feeb90c4723eb4edca425b9d5d9c3fefcdd9537", size = 2178473, upload-time = "2026-03-09T13:12:50.254Z" }, + { url = "https://files.pythonhosted.org/packages/dc/8e/6cac929e0049539e5ee25c1ee937556f379ba5204840d03008363ced662d/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ebae99ed6764f2b5771c522477b311be313e8841d2e0376db2b10922daebbba4", size = 2274035, upload-time = "2026-03-09T13:12:51.785Z" }, + { url = "https://files.pythonhosted.org/packages/ca/d3/9d0c18f1b52ea8074b792452cf17f1f5a56bd0302a85191f405cfbf9da16/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:d5cd5189fc2b6a538b75ae45433140c4823463918f7b1617c31e68b085c0022c", size = 2443217, upload-time = "2026-03-09T13:12:53.329Z" }, + { url = "https://files.pythonhosted.org/packages/45/2a/6e19368803a038b2a90857bf4ee9e3c7b667216d045866bf22d3439fd75e/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f42c23db5d1521218a3276bb08666dcb662896a0be7347cba864eca45ff64ede", size = 2249196, upload-time = "2026-03-09T13:12:55.057Z" }, + { url = "https://files.pythonhosted.org/packages/75/2b/3f641dfcbe72e222175d626bacf2f72c3b34312afec949dd1c50afa400f5/kiwisolver-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:94eff26096eb5395136634622515b234ecb6c9979824c1f5004c6e3c3c85ccd2", size = 73389, upload-time = "2026-03-09T13:12:56.496Z" }, + { url = "https://files.pythonhosted.org/packages/da/88/299b137b9e0025d8982e03d2d52c123b0a2b159e84b0ef1501ef446339cf/kiwisolver-1.5.0-cp310-cp310-win_arm64.whl", hash = "sha256:dd952e03bfbb096cfe2dd35cd9e00f269969b67536cb4370994afc20ff2d0875", size = 64782, upload-time = "2026-03-09T13:12:57.609Z" }, + { url = "https://files.pythonhosted.org/packages/17/6f/6fd4f690a40c2582fa34b97d2678f718acf3706b91d270c65ecb455d0a06/kiwisolver-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:295d9ffe712caa9f8a3081de8d32fc60191b4b51c76f02f951fd8407253528f4", size = 59606, upload-time = "2026-03-09T13:15:40.81Z" }, + { url = "https://files.pythonhosted.org/packages/82/a0/2355d5e3b338f13ce63f361abb181e3b6ea5fffdb73f739b3e80efa76159/kiwisolver-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:51e8c4084897de9f05898c2c2a39af6318044ae969d46ff7a34ed3f96274adca", size = 57537, upload-time = "2026-03-09T13:15:42.071Z" }, + { url = "https://files.pythonhosted.org/packages/c8/b9/1d50e610ecadebe205b71d6728fd224ce0e0ca6aba7b9cbe1da049203ac5/kiwisolver-1.5.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b83af57bdddef03c01a9138034c6ff03181a3028d9a1003b301eb1a55e161a3f", size = 79888, upload-time = "2026-03-09T13:15:43.317Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ee/b85ffcd75afed0357d74f0e6fc02a4507da441165de1ca4760b9f496390d/kiwisolver-1.5.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bf4679a3d71012a7c2bf360e5cd878fbd5e4fcac0896b56393dec239d81529ed", size = 77584, upload-time = "2026-03-09T13:15:44.605Z" }, + { url = "https://files.pythonhosted.org/packages/6b/dd/644d0dde6010a8583b4cd66dd41c5f83f5325464d15c4f490b3340ab73b4/kiwisolver-1.5.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:41024ed50e44ab1a60d3fe0a9d15a4ccc9f5f2b1d814ff283c8d01134d5b81bc", size = 73390, upload-time = "2026-03-09T13:15:45.832Z" }, +] + +[[package]] +name = "lark" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/34/28fff3ab31ccff1fd4f6c7c7b0ceb2b6968d8ea4950663eadcb5720591a0/lark-1.3.1.tar.gz", hash = "sha256:b426a7a6d6d53189d318f2b6236ab5d6429eaf09259f1ca33eb716eed10d2905", size = 382732, upload-time = "2025-10-27T18:25:56.653Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3d/14ce75ef66813643812f3093ab17e46d3a206942ce7376d31ec2d36229e7/lark-1.3.1-py3-none-any.whl", hash = "sha256:c629b661023a014c37da873b4ff58a817398d12635d3bbb2c5a03be7fe5d1e12", size = 113151, upload-time = "2025-10-27T18:25:54.882Z" }, +] + +[[package]] +name = "libclang" +version = "18.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6e/5c/ca35e19a4f142adffa27e3d652196b7362fa612243e2b916845d801454fc/libclang-18.1.1.tar.gz", hash = "sha256:a1214966d08d73d971287fc3ead8dfaf82eb07fb197680d8b3859dbbbbf78250", size = 39612, upload-time = "2024-03-17T16:04:37.434Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/49/f5e3e7e1419872b69f6f5e82ba56e33955a74bd537d8a1f5f1eff2f3668a/libclang-18.1.1-1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:0b2e143f0fac830156feb56f9231ff8338c20aecfe72b4ffe96f19e5a1dbb69a", size = 25836045, upload-time = "2024-06-30T17:40:31.646Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e5/fc61bbded91a8830ccce94c5294ecd6e88e496cc85f6704bf350c0634b70/libclang-18.1.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:6f14c3f194704e5d09769108f03185fce7acaf1d1ae4bbb2f30a72c2400cb7c5", size = 26502641, upload-time = "2024-03-18T15:52:26.722Z" }, + { url = "https://files.pythonhosted.org/packages/db/ed/1df62b44db2583375f6a8a5e2ca5432bbdc3edb477942b9b7c848c720055/libclang-18.1.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:83ce5045d101b669ac38e6da8e58765f12da2d3aafb3b9b98d88b286a60964d8", size = 26420207, upload-time = "2024-03-17T15:00:26.63Z" }, + { url = "https://files.pythonhosted.org/packages/1d/fc/716c1e62e512ef1c160e7984a73a5fc7df45166f2ff3f254e71c58076f7c/libclang-18.1.1-py2.py3-none-manylinux2010_x86_64.whl", hash = "sha256:c533091d8a3bbf7460a00cb6c1a71da93bffe148f172c7d03b1c31fbf8aa2a0b", size = 24515943, upload-time = "2024-03-17T16:03:45.942Z" }, + { url = "https://files.pythonhosted.org/packages/3c/3d/f0ac1150280d8d20d059608cf2d5ff61b7c3b7f7bcf9c0f425ab92df769a/libclang-18.1.1-py2.py3-none-manylinux2014_aarch64.whl", hash = "sha256:54dda940a4a0491a9d1532bf071ea3ef26e6dbaf03b5000ed94dd7174e8f9592", size = 23784972, upload-time = "2024-03-17T16:12:47.677Z" }, + { url = "https://files.pythonhosted.org/packages/fe/2f/d920822c2b1ce9326a4c78c0c2b4aa3fde610c7ee9f631b600acb5376c26/libclang-18.1.1-py2.py3-none-manylinux2014_armv7l.whl", hash = "sha256:cf4a99b05376513717ab5d82a0db832c56ccea4fd61a69dbb7bccf2dfb207dbe", size = 20259606, upload-time = "2024-03-17T16:17:42.437Z" }, + { url = "https://files.pythonhosted.org/packages/2d/c2/de1db8c6d413597076a4259cea409b83459b2db997c003578affdd32bf66/libclang-18.1.1-py2.py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:69f8eb8f65c279e765ffd28aaa7e9e364c776c17618af8bff22a8df58677ff4f", size = 24921494, upload-time = "2024-03-17T16:14:20.132Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2d/3f480b1e1d31eb3d6de5e3ef641954e5c67430d5ac93b7fa7e07589576c7/libclang-18.1.1-py2.py3-none-win_amd64.whl", hash = "sha256:4dd2d3b82fab35e2bf9ca717d7b63ac990a3519c7e312f19fa8e86dcc712f7fb", size = 26415083, upload-time = "2024-03-17T16:42:21.703Z" }, + { url = "https://files.pythonhosted.org/packages/71/cf/e01dc4cc79779cd82d77888a88ae2fa424d93b445ad4f6c02bfc18335b70/libclang-18.1.1-py2.py3-none-win_arm64.whl", hash = "sha256:3f0e1f49f04d3cd198985fea0511576b0aee16f9ff0e0f0cad7f9c57ec3c20e8", size = 22361112, upload-time = "2024-03-17T16:42:59.565Z" }, +] + +[[package]] +name = "lightgbm" +version = "4.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/68/0b/a2e9f5c5da7ef047cc60cef37f86185088845e8433e54d2e7ed439cce8a3/lightgbm-4.6.0.tar.gz", hash = "sha256:cb1c59720eb569389c0ba74d14f52351b573af489f230032a1c9f314f8bab7fe", size = 1703705, upload-time = "2025-02-15T04:03:03.111Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/75/cffc9962cca296bc5536896b7e65b4a7cdeb8db208e71b9c0133c08f8f7e/lightgbm-4.6.0-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:b7a393de8a334d5c8e490df91270f0763f83f959574d504c7ccb9eee4aef70ed", size = 2010151, upload-time = "2025-02-15T04:02:50.961Z" }, + { url = "https://files.pythonhosted.org/packages/21/1b/550ee378512b78847930f5d74228ca1fdba2a7fbdeaac9aeccc085b0e257/lightgbm-4.6.0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:2dafd98d4e02b844ceb0b61450a660681076b1ea6c7adb8c566dfd66832aafad", size = 1592172, upload-time = "2025-02-15T04:02:53.937Z" }, + { url = "https://files.pythonhosted.org/packages/64/41/4fbde2c3d29e25ee7c41d87df2f2e5eda65b431ee154d4d462c31041846c/lightgbm-4.6.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:4d68712bbd2b57a0b14390cbf9376c1d5ed773fa2e71e099cac588703b590336", size = 3454567, upload-time = "2025-02-15T04:02:56.443Z" }, + { url = "https://files.pythonhosted.org/packages/42/86/dabda8fbcb1b00bcfb0003c3776e8ade1aa7b413dff0a2c08f457dace22f/lightgbm-4.6.0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:cb19b5afea55b5b61cbb2131095f50538bd608a00655f23ad5d25ae3e3bf1c8d", size = 3569831, upload-time = "2025-02-15T04:02:58.925Z" }, + { url = "https://files.pythonhosted.org/packages/5e/23/f8b28ca248bb629b9e08f877dd2965d1994e1674a03d67cd10c5246da248/lightgbm-4.6.0-py3-none-win_amd64.whl", hash = "sha256:37089ee95664b6550a7189d887dbf098e3eadab03537e411f52c63c121e3ba4b", size = 1451509, upload-time = "2025-02-15T04:03:01.515Z" }, +] + +[[package]] +name = "lightning" +version = "2.2.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fsspec", extra = ["http"] }, + { name = "lightning-utilities" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pytorch-lightning" }, + { name = "pyyaml" }, + { name = "torch" }, + { name = "torchmetrics" }, + { name = "tqdm" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ff/94/75ca89a07efaa2f32c98ebbc467a46e7996b21b1247aa9643933844948cb/lightning-2.2.5.tar.gz", hash = "sha256:a6c31a2052fc30fee34aec7e31ea2a117a005d049c3593fc9cfb867a34f962bf", size = 1668508, upload-time = "2024-05-22T17:36:29.641Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/6f/1e9e09afbda8efb5edc947b15c620776b7ebe6adfdfcf34a7cc2daef45ca/lightning-2.2.5-py3-none-any.whl", hash = "sha256:3fd4d37c5f912b000b922f36d4c06818de42b78f85178c2ad3e35b8af3e9218a", size = 1985635, upload-time = "2024-05-22T17:36:25.727Z" }, +] + +[[package]] +name = "lightning-utilities" +version = "0.15.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/45/7fa8f56b17dc0f0a41ec70dd307ecd6787254483549843bef4c30ab5adce/lightning_utilities-0.15.3.tar.gz", hash = "sha256:792ae0204c79f6859721ac7f386c237a33b0ed06ba775009cb894e010a842033", size = 33553, upload-time = "2026-02-22T14:48:53.348Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/f4/ead6e0e37209b07c9baa3e984ccdb0348ca370b77cea3aaea8ddbb097e00/lightning_utilities-0.15.3-py3-none-any.whl", hash = "sha256:6c55f1bee70084a1cbeaa41ada96e4b3a0fea5909e844dd335bd80f5a73c5f91", size = 31906, upload-time = "2026-02-22T14:48:52.488Z" }, +] + +[[package]] +name = "llvmlite" +version = "0.47.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/88/a8952b6d5c21e74cbf158515b779666f692846502623e9e3c39d8e8ba25f/llvmlite-0.47.0.tar.gz", hash = "sha256:62031ce968ec74e95092184d4b0e857e444f8fdff0b8f9213707699570c33ccc", size = 193614, upload-time = "2026-03-31T18:29:53.497Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/f5/a1bde3aa8c43524b0acaf3f72fb3d80a32dd29dbb42d7dc434f84584cdcc/llvmlite-0.47.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41270b0b1310717f717cf6f2a9c68d3c43bd7905c33f003825aebc361d0d1b17", size = 37232772, upload-time = "2026-03-31T18:28:12.198Z" }, + { url = "https://files.pythonhosted.org/packages/7c/fb/76d88fc05ee1f9c1a6efe39eb493c4a727e5d1690412469017cd23bcb776/llvmlite-0.47.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f9d118bc1dd7623e0e65ca9ac485ec6dd543c3b77bc9928ddc45ebd34e1e30a7", size = 56275179, upload-time = "2026-03-31T18:28:15.725Z" }, + { url = "https://files.pythonhosted.org/packages/4d/08/29da7f36217abd56a0c389ef9a18bea47960826e691ced1a36c92c6ce93c/llvmlite-0.47.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9ea5cfb04a6ab5b18e46be72b41b015975ba5980c4ddb41f1975b83e19031063", size = 55128632, upload-time = "2026-03-31T18:28:19.946Z" }, + { url = "https://files.pythonhosted.org/packages/df/f8/5e12e9ed447d65f04acf6fcf2d79cded2355640b5131a46cee4c99a5949d/llvmlite-0.47.0-cp310-cp310-win_amd64.whl", hash = "sha256:166b896a2262a2039d5fc52df5ee1659bd1ccd081183df7a2fba1b74702dd5ea", size = 38138402, upload-time = "2026-03-31T18:28:23.327Z" }, +] + +[[package]] +name = "maestrowf" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coloredlogs" }, + { name = "dill" }, + { name = "filelock" }, + { name = "jsonschema" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "rich" }, + { name = "six" }, + { name = "tabulate" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f2/5e/89a991cba5a2c643ab9df65f4534f2570c8d0fb827c8bb9c216874801129/maestrowf-1.2.0.tar.gz", hash = "sha256:e3e7d511993b1ad0874b5ec502da25fde15ce86288c5ba071db3f6bd3f2601d1", size = 105149, upload-time = "2026-03-27T00:45:33.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/8a/622940ae1b99ae7b8944f82a2f8039ca4b1f85edc40051e3111bd1808516/maestrowf-1.2.0-py3-none-any.whl", hash = "sha256:046936f0a1c772b04b6719d250c4bfb951f5ae44c48257c581b77e2593fca345", size = 154025, upload-time = "2026-03-27T00:45:32.595Z" }, +] + +[[package]] +name = "mako" +version = "1.3.11" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/59/8a/805404d0c0b9f3d7a326475ca008db57aea9c5c9f2e1e39ed0faa335571c/mako-1.3.11.tar.gz", hash = "sha256:071eb4ab4c5010443152255d77db7faa6ce5916f35226eb02dc34479b6858069", size = 399811, upload-time = "2026-04-14T20:19:51.493Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/a5/19d7aaa7e433713ffe881df33705925a196afb9532efc8475d26593921a6/mako-1.3.11-py3-none-any.whl", hash = "sha256:e372c6e333cf004aa736a15f425087ec977e1fcbd2966aae7f17c8dc1da27a77", size = 78503, upload-time = "2026-04-14T20:19:53.233Z" }, +] + +[[package]] +name = "markdown" +version = "3.10.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2b/f4/69fa6ed85ae003c2378ffa8f6d2e3234662abd02c10d216c0ba96081a238/markdown-3.10.2.tar.gz", hash = "sha256:994d51325d25ad8aa7ce4ebaec003febcce822c3f8c911e3b17c52f7f589f950", size = 368805, upload-time = "2026-02-09T14:57:26.942Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl", hash = "sha256:e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36", size = 108180, upload-time = "2026-02-09T14:57:25.787Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/4b/3541d44f3937ba468b75da9eebcae497dcf67adb65caa16760b0a6807ebb/markupsafe-3.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2f981d352f04553a7171b8e44369f2af4055f888dfb147d55e42d29e29e74559", size = 11631, upload-time = "2025-09-27T18:36:05.558Z" }, + { url = "https://files.pythonhosted.org/packages/98/1b/fbd8eed11021cabd9226c37342fa6ca4e8a98d8188a8d9b66740494960e4/markupsafe-3.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c1493fb6e50ab01d20a22826e57520f1284df32f2d8601fdd90b6304601419", size = 12057, upload-time = "2025-09-27T18:36:07.165Z" }, + { url = "https://files.pythonhosted.org/packages/40/01/e560d658dc0bb8ab762670ece35281dec7b6c1b33f5fbc09ebb57a185519/markupsafe-3.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ba88449deb3de88bd40044603fafffb7bc2b055d626a330323a9ed736661695", size = 22050, upload-time = "2025-09-27T18:36:08.005Z" }, + { url = "https://files.pythonhosted.org/packages/af/cd/ce6e848bbf2c32314c9b237839119c5a564a59725b53157c856e90937b7a/markupsafe-3.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f42d0984e947b8adf7dd6dde396e720934d12c506ce84eea8476409563607591", size = 20681, upload-time = "2025-09-27T18:36:08.881Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2a/b5c12c809f1c3045c4d580b035a743d12fcde53cf685dbc44660826308da/markupsafe-3.0.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c0c0b3ade1c0b13b936d7970b1d37a57acde9199dc2aecc4c336773e1d86049c", size = 20705, upload-time = "2025-09-27T18:36:10.131Z" }, + { url = "https://files.pythonhosted.org/packages/cf/e3/9427a68c82728d0a88c50f890d0fc072a1484de2f3ac1ad0bfc1a7214fd5/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0303439a41979d9e74d18ff5e2dd8c43ed6c6001fd40e5bf2e43f7bd9bbc523f", size = 21524, upload-time = "2025-09-27T18:36:11.324Z" }, + { url = "https://files.pythonhosted.org/packages/bc/36/23578f29e9e582a4d0278e009b38081dbe363c5e7165113fad546918a232/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:d2ee202e79d8ed691ceebae8e0486bd9a2cd4794cec4824e1c99b6f5009502f6", size = 20282, upload-time = "2025-09-27T18:36:12.573Z" }, + { url = "https://files.pythonhosted.org/packages/56/21/dca11354e756ebd03e036bd8ad58d6d7168c80ce1fe5e75218e4945cbab7/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:177b5253b2834fe3678cb4a5f0059808258584c559193998be2601324fdeafb1", size = 20745, upload-time = "2025-09-27T18:36:13.504Z" }, + { url = "https://files.pythonhosted.org/packages/87/99/faba9369a7ad6e4d10b6a5fbf71fa2a188fe4a593b15f0963b73859a1bbd/markupsafe-3.0.3-cp310-cp310-win32.whl", hash = "sha256:2a15a08b17dd94c53a1da0438822d70ebcd13f8c3a95abe3a9ef9f11a94830aa", size = 14571, upload-time = "2025-09-27T18:36:14.779Z" }, + { url = "https://files.pythonhosted.org/packages/d6/25/55dc3ab959917602c96985cb1253efaa4ff42f71194bddeb61eb7278b8be/markupsafe-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:c4ffb7ebf07cfe8931028e3e4c85f0357459a3f9f9490886198848f4fa002ec8", size = 15056, upload-time = "2025-09-27T18:36:16.125Z" }, + { url = "https://files.pythonhosted.org/packages/d0/9e/0a02226640c255d1da0b8d12e24ac2aa6734da68bff14c05dd53b94a0fc3/markupsafe-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:e2103a929dfa2fcaf9bb4e7c091983a49c9ac3b19c9061b6d5427dd7d14d81a1", size = 13932, upload-time = "2025-09-27T18:36:17.311Z" }, +] + +[[package]] +name = "matplotcheck" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "folium" }, + { name = "geopandas" }, + { name = "matplotlib" }, + { name = "numpy" }, + { name = "rasterio" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3c/64/9de5cb50eb1a51a8874a7d2c51e984577a9ffd4099385d4483b9caa779e3/matplotcheck-0.1.4.tar.gz", hash = "sha256:762d5365e51c3d73de1b4ebfb5c52a423885fba2dc2054a1f1319fc40db3b896", size = 32442, upload-time = "2021-02-03T23:06:09.78Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/43/e0d7efb953f0d5a4f5b8fd2727b6cec968568135fd7c4d5b5d86a1d51571/matplotcheck-0.1.4-py3-none-any.whl", hash = "sha256:e25704c8959eb99bb30cb7f6b353da956f38532e42929fbac725c5e1edac2954", size = 32517, upload-time = "2021-02-03T23:06:08.303Z" }, +] + +[[package]] +name = "matplotlib" +version = "3.10.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/76/d3c6e3a13fe484ebe7718d14e269c9569c4eb0020a968a327acb3b9a8fe6/matplotlib-3.10.8.tar.gz", hash = "sha256:2299372c19d56bcd35cf05a2738308758d32b9eaed2371898d8f5bd33f084aa3", size = 34806269, upload-time = "2025-12-10T22:56:51.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/58/be/a30bd917018ad220c400169fba298f2bb7003c8ccbc0c3e24ae2aacad1e8/matplotlib-3.10.8-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:00270d217d6b20d14b584c521f810d60c5c78406dc289859776550df837dcda7", size = 8239828, upload-time = "2025-12-10T22:55:02.313Z" }, + { url = "https://files.pythonhosted.org/packages/58/27/ca01e043c4841078e82cf6e80a6993dfecd315c3d79f5f3153afbb8e1ec6/matplotlib-3.10.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37b3c1cc42aa184b3f738cfa18c1c1d72fd496d85467a6cf7b807936d39aa656", size = 8128050, upload-time = "2025-12-10T22:55:04.997Z" }, + { url = "https://files.pythonhosted.org/packages/cb/aa/7ab67f2b729ae6a91bcf9dcac0affb95fb8c56f7fd2b2af894ae0b0cf6fa/matplotlib-3.10.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ee40c27c795bda6a5292e9cff9890189d32f7e3a0bf04e0e3c9430c4a00c37df", size = 8700452, upload-time = "2025-12-10T22:55:07.47Z" }, + { url = "https://files.pythonhosted.org/packages/73/ae/2d5817b0acee3c49b7e7ccfbf5b273f284957cc8e270adf36375db353190/matplotlib-3.10.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a48f2b74020919552ea25d222d5cc6af9ca3f4eb43a93e14d068457f545c2a17", size = 9534928, upload-time = "2025-12-10T22:55:10.566Z" }, + { url = "https://files.pythonhosted.org/packages/c9/5b/8e66653e9f7c39cb2e5cab25fce4810daffa2bff02cbf5f3077cea9e942c/matplotlib-3.10.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f254d118d14a7f99d616271d6c3c27922c092dac11112670b157798b89bf4933", size = 9586377, upload-time = "2025-12-10T22:55:12.362Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e2/fd0bbadf837f81edb0d208ba8f8cb552874c3b16e27cb91a31977d90875d/matplotlib-3.10.8-cp310-cp310-win_amd64.whl", hash = "sha256:f9b587c9c7274c1613a30afabf65a272114cd6cdbe67b3406f818c79d7ab2e2a", size = 8128127, upload-time = "2025-12-10T22:55:14.436Z" }, + { url = "https://files.pythonhosted.org/packages/f5/43/31d59500bb950b0d188e149a2e552040528c13d6e3d6e84d0cccac593dcd/matplotlib-3.10.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f97aeb209c3d2511443f8797e3e5a569aebb040d4f8bc79aa3ee78a8fb9e3dd8", size = 8237252, upload-time = "2025-12-10T22:56:39.529Z" }, + { url = "https://files.pythonhosted.org/packages/0c/2c/615c09984f3c5f907f51c886538ad785cf72e0e11a3225de2c0f9442aecc/matplotlib-3.10.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fb061f596dad3a0f52b60dc6a5dec4a0c300dec41e058a7efe09256188d170b7", size = 8124693, upload-time = "2025-12-10T22:56:41.758Z" }, + { url = "https://files.pythonhosted.org/packages/91/e1/2757277a1c56041e1fc104b51a0f7b9a4afc8eb737865d63cababe30bc61/matplotlib-3.10.8-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:12d90df9183093fcd479f4172ac26b322b1248b15729cb57f42f71f24c7e37a3", size = 8702205, upload-time = "2025-12-10T22:56:43.415Z" }, +] + +[[package]] +name = "matplotlib-inline" +version = "0.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/74/97e72a36efd4ae2bccb3463284300f8953f199b5ffbc04cbbb0ec78f74b1/matplotlib_inline-0.2.1.tar.gz", hash = "sha256:e1ee949c340d771fc39e241ea75683deb94762c8fa5f2927ec57c83c4dffa9fe", size = 8110, upload-time = "2025-10-23T09:00:22.126Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/af/33/ee4519fa02ed11a94aef9559552f3b17bb863f2ecfe1a35dc7f548cde231/matplotlib_inline-0.2.1-py3-none-any.whl", hash = "sha256:d56ce5156ba6085e00a9d54fead6ed29a9c47e215cd1bba2e976ef39f5710a76", size = 9516, upload-time = "2025-10-23T09:00:20.675Z" }, +] + +[[package]] +name = "matplotlib-venn" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e8/f7/47bddf95492f4d1370ed7164d2b16407805e8eeb38231361de65d387a562/matplotlib-venn-1.1.2.tar.gz", hash = "sha256:6f2b07a03e9bb5a62de2f32f965216739e175176f9d654dd19e7af2c22ec36e3", size = 40821, upload-time = "2025-02-25T10:44:24.294Z" } + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "mistune" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/55/d01f0c4b45ade6536c51170b9043db8b2ec6ddf4a35c7ea3f5f559ac935b/mistune-3.2.0.tar.gz", hash = "sha256:708487c8a8cdd99c9d90eb3ed4c3ed961246ff78ac82f03418f5183ab70e398a", size = 95467, upload-time = "2025-12-23T11:36:34.994Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/f7/4a5e785ec9fbd65146a27b6b70b6cdc161a66f2024e4b04ac06a67f5578b/mistune-3.2.0-py3-none-any.whl", hash = "sha256:febdc629a3c78616b94393c6580551e0e34cc289987ec6c35ed3f4be42d0eee1", size = 53598, upload-time = "2025-12-23T11:36:33.211Z" }, +] + +[[package]] +name = "ml-dtypes" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fa/47/09ca9556bf99cfe7ddf129a3423642bd482a27a717bf115090493fa42429/ml_dtypes-0.2.0.tar.gz", hash = "sha256:6488eb642acaaf08d8020f6de0a38acee7ac324c1e6e92ee0c0fea42422cb797", size = 698948, upload-time = "2023-06-06T15:14:43.679Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/9f/3c133f83f3e5a7959345585e9ac715ef8bf6e8987551f240032e1b0d3ce6/ml_dtypes-0.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:df6a76e1c8adf484feb138ed323f9f40a7b6c21788f120f7c78bec20ac37ee81", size = 1154492, upload-time = "2023-06-06T15:14:11.966Z" }, + { url = "https://files.pythonhosted.org/packages/19/05/7a6480a69f8555a047a56ae6af9490bcdc5e432658208f3404d8e8442d02/ml_dtypes-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc29a0524ef5e23a7fbb8d881bdecabeb3fc1d19d9db61785d077a86cb94fab2", size = 1012633, upload-time = "2023-06-06T15:14:14.055Z" }, + { url = "https://files.pythonhosted.org/packages/d1/1d/d5cf76e5e40f69dbd273036e3172ae4a614577cb141673427b80cac948df/ml_dtypes-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f08c391c2794f2aad358e6f4c70785a9a7b1df980ef4c232b3ccd4f6fe39f719", size = 1017764, upload-time = "2023-06-06T15:14:15.632Z" }, + { url = "https://files.pythonhosted.org/packages/55/51/c430b4f5f4a6df00aa41c1ee195e179489565e61cfad559506ca7442ce67/ml_dtypes-0.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:75015818a7fccf99a5e8ed18720cb430f3e71a8838388840f4cdf225c036c983", size = 938593, upload-time = "2023-06-06T15:14:17.473Z" }, +] + +[[package]] +name = "monotonic" +version = "1.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ea/ca/8e91948b782ddfbd194f323e7e7d9ba12e5877addf04fb2bf8fca38e86ac/monotonic-1.6.tar.gz", hash = "sha256:3a55207bcfed53ddd5c5bae174524062935efed17792e9de2ad0205ce9ad63f7", size = 7615, upload-time = "2021-08-11T14:37:28.79Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/67/7e8406a29b6c45be7af7740456f7f37025f0506ae2e05fb9009a53946860/monotonic-1.6-py2.py3-none-any.whl", hash = "sha256:68687e19a14f11f26d140dd5c86f3dba4bf5df58003000ed467e0e2a69bca96c", size = 8154, upload-time = "2021-04-09T21:58:05.122Z" }, +] + +[[package]] +name = "mordred" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "networkx" }, + { name = "numpy" }, + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/93/3d/26c908ece761adafcea06320bf8fe73f4de69979273fb164226dc6038c39/mordred-1.2.0.tar.gz", hash = "sha256:1115f9f3a3dde290dd68d51a5070fce43a62aab96b980cffc9d72b74a59e1c5a", size = 128774, upload-time = "2019-06-05T18:20:01.267Z" } + +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, +] + +[[package]] +name = "msgpack" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/f2/bfb55a6236ed8725a96b0aa3acbd0ec17588e6a2c3b62a93eb513ed8783f/msgpack-1.1.2.tar.gz", hash = "sha256:3b60763c1373dd60f398488069bcdc703cd08a711477b5d480eecc9f9626f47e", size = 173581, upload-time = "2025-10-08T09:15:56.596Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f5/a2/3b68a9e769db68668b25c6108444a35f9bd163bb848c0650d516761a59c0/msgpack-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0051fffef5a37ca2cd16978ae4f0aef92f164df86823871b5162812bebecd8e2", size = 81318, upload-time = "2025-10-08T09:14:38.722Z" }, + { url = "https://files.pythonhosted.org/packages/5b/e1/2b720cc341325c00be44e1ed59e7cfeae2678329fbf5aa68f5bda57fe728/msgpack-1.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a605409040f2da88676e9c9e5853b3449ba8011973616189ea5ee55ddbc5bc87", size = 83786, upload-time = "2025-10-08T09:14:40.082Z" }, + { url = "https://files.pythonhosted.org/packages/71/e5/c2241de64bfceac456b140737812a2ab310b10538a7b34a1d393b748e095/msgpack-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b696e83c9f1532b4af884045ba7f3aa741a63b2bc22617293a2c6a7c645f251", size = 398240, upload-time = "2025-10-08T09:14:41.151Z" }, + { url = "https://files.pythonhosted.org/packages/b7/09/2a06956383c0fdebaef5aa9246e2356776f12ea6f2a44bd1368abf0e46c4/msgpack-1.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:365c0bbe981a27d8932da71af63ef86acc59ed5c01ad929e09a0b88c6294e28a", size = 406070, upload-time = "2025-10-08T09:14:42.821Z" }, + { url = "https://files.pythonhosted.org/packages/0e/74/2957703f0e1ef20637d6aead4fbb314330c26f39aa046b348c7edcf6ca6b/msgpack-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:41d1a5d875680166d3ac5c38573896453bbbea7092936d2e107214daf43b1d4f", size = 393403, upload-time = "2025-10-08T09:14:44.38Z" }, + { url = "https://files.pythonhosted.org/packages/a5/09/3bfc12aa90f77b37322fc33e7a8a7c29ba7c8edeadfa27664451801b9860/msgpack-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354e81bcdebaab427c3df4281187edc765d5d76bfb3a7c125af9da7a27e8458f", size = 398947, upload-time = "2025-10-08T09:14:45.56Z" }, + { url = "https://files.pythonhosted.org/packages/4b/4f/05fcebd3b4977cb3d840f7ef6b77c51f8582086de5e642f3fefee35c86fc/msgpack-1.1.2-cp310-cp310-win32.whl", hash = "sha256:e64c8d2f5e5d5fda7b842f55dec6133260ea8f53c4257d64494c534f306bf7a9", size = 64769, upload-time = "2025-10-08T09:14:47.334Z" }, + { url = "https://files.pythonhosted.org/packages/d0/3e/b4547e3a34210956382eed1c85935fff7e0f9b98be3106b3745d7dec9c5e/msgpack-1.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:db6192777d943bdaaafb6ba66d44bf65aa0e9c5616fa1d2da9bb08828c6b39aa", size = 71293, upload-time = "2025-10-08T09:14:48.665Z" }, +] + +[[package]] +name = "multidict" +version = "6.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/0b/19348d4c98980c4851d2f943f8ebafdece2ae7ef737adcfa5994ce8e5f10/multidict-6.7.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c93c3db7ea657dd4637d57e74ab73de31bccefe144d3d4ce370052035bc85fb5", size = 77176, upload-time = "2026-01-26T02:42:59.784Z" }, + { url = "https://files.pythonhosted.org/packages/ef/04/9de3f8077852e3d438215c81e9b691244532d2e05b4270e89ce67b7d103c/multidict-6.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:974e72a2474600827abaeda71af0c53d9ebbc3c2eb7da37b37d7829ae31232d8", size = 44996, upload-time = "2026-01-26T02:43:01.674Z" }, + { url = "https://files.pythonhosted.org/packages/31/5c/08c7f7fe311f32e83f7621cd3f99d805f45519cd06fafb247628b861da7d/multidict-6.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdea2e7b2456cfb6694fb113066fd0ec7ea4d67e3a35e1f4cbeea0b448bf5872", size = 44631, upload-time = "2026-01-26T02:43:03.169Z" }, + { url = "https://files.pythonhosted.org/packages/b7/7f/0e3b1390ae772f27501199996b94b52ceeb64fe6f9120a32c6c3f6b781be/multidict-6.7.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:17207077e29342fdc2c9a82e4b306f1127bf1ea91f8b71e02d4798a70bb99991", size = 242561, upload-time = "2026-01-26T02:43:04.733Z" }, + { url = "https://files.pythonhosted.org/packages/dd/f4/8719f4f167586af317b69dd3e90f913416c91ca610cac79a45c53f590312/multidict-6.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4f49cb5661344764e4c7c7973e92a47a59b8fc19b6523649ec9dc4960e58a03", size = 242223, upload-time = "2026-01-26T02:43:06.695Z" }, + { url = "https://files.pythonhosted.org/packages/47/ab/7c36164cce64a6ad19c6d9a85377b7178ecf3b89f8fd589c73381a5eedfd/multidict-6.7.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a9fc4caa29e2e6ae408d1c450ac8bf19892c5fca83ee634ecd88a53332c59981", size = 222322, upload-time = "2026-01-26T02:43:08.472Z" }, + { url = "https://files.pythonhosted.org/packages/f5/79/a25add6fb38035b5337bc5734f296d9afc99163403bbcf56d4170f97eb62/multidict-6.7.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c5f0c21549ab432b57dcc82130f388d84ad8179824cc3f223d5e7cfbfd4143f6", size = 254005, upload-time = "2026-01-26T02:43:10.127Z" }, + { url = "https://files.pythonhosted.org/packages/4a/7b/64a87cf98e12f756fc8bd444b001232ffff2be37288f018ad0d3f0aae931/multidict-6.7.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7dfb78d966b2c906ae1d28ccf6e6712a3cd04407ee5088cd276fe8cb42186190", size = 251173, upload-time = "2026-01-26T02:43:11.731Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ac/b605473de2bb404e742f2cc3583d12aedb2352a70e49ae8fce455b50c5aa/multidict-6.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9b0d9b91d1aa44db9c1f1ecd0d9d2ae610b2f4f856448664e01a3b35899f3f92", size = 243273, upload-time = "2026-01-26T02:43:13.063Z" }, + { url = "https://files.pythonhosted.org/packages/03/65/11492d6a0e259783720f3bc1d9ea55579a76f1407e31ed44045c99542004/multidict-6.7.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dd96c01a9dcd4889dcfcf9eb5544ca0c77603f239e3ffab0524ec17aea9a93ee", size = 238956, upload-time = "2026-01-26T02:43:14.843Z" }, + { url = "https://files.pythonhosted.org/packages/5f/a7/7ee591302af64e7c196fb63fe856c788993c1372df765102bd0448e7e165/multidict-6.7.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:067343c68cd6612d375710f895337b3a98a033c94f14b9a99eff902f205424e2", size = 233477, upload-time = "2026-01-26T02:43:16.025Z" }, + { url = "https://files.pythonhosted.org/packages/9c/99/c109962d58756c35fd9992fed7f2355303846ea2ff054bb5f5e9d6b888de/multidict-6.7.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5884a04f4ff56c6120f6ccf703bdeb8b5079d808ba604d4d53aec0d55dc33568", size = 243615, upload-time = "2026-01-26T02:43:17.84Z" }, + { url = "https://files.pythonhosted.org/packages/d5/5f/1973e7c771c86e93dcfe1c9cc55a5481b610f6614acfc28c0d326fe6bfad/multidict-6.7.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8affcf1c98b82bc901702eb73b6947a1bfa170823c153fe8a47b5f5f02e48e40", size = 249930, upload-time = "2026-01-26T02:43:19.06Z" }, + { url = "https://files.pythonhosted.org/packages/5d/a5/f170fc2268c3243853580203378cd522446b2df632061e0a5409817854c7/multidict-6.7.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:0d17522c37d03e85c8098ec8431636309b2682cf12e58f4dbc76121fb50e4962", size = 243807, upload-time = "2026-01-26T02:43:20.286Z" }, + { url = "https://files.pythonhosted.org/packages/de/01/73856fab6d125e5bc652c3986b90e8699a95e84b48d72f39ade6c0e74a8c/multidict-6.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:24c0cf81544ca5e17cfcb6e482e7a82cd475925242b308b890c9452a074d4505", size = 239103, upload-time = "2026-01-26T02:43:21.508Z" }, + { url = "https://files.pythonhosted.org/packages/e7/46/f1220bd9944d8aa40d8ccff100eeeee19b505b857b6f603d6078cb5315b0/multidict-6.7.1-cp310-cp310-win32.whl", hash = "sha256:d82dd730a95e6643802f4454b8fdecdf08667881a9c5670db85bc5a56693f122", size = 41416, upload-time = "2026-01-26T02:43:22.703Z" }, + { url = "https://files.pythonhosted.org/packages/68/00/9b38e272a770303692fc406c36e1a4c740f401522d5787691eb38a8925a8/multidict-6.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:cf37cbe5ced48d417ba045aca1b21bafca67489452debcde94778a576666a1df", size = 46022, upload-time = "2026-01-26T02:43:23.77Z" }, + { url = "https://files.pythonhosted.org/packages/64/65/d8d42490c02ee07b6bbe00f7190d70bb4738b3cce7629aaf9f213ef730dd/multidict-6.7.1-cp310-cp310-win_arm64.whl", hash = "sha256:59bc83d3f66b41dac1e7460aac1d196edc70c9ba3094965c467715a70ecb46db", size = 43238, upload-time = "2026-01-26T02:43:24.882Z" }, + { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" }, +] + +[[package]] +name = "narwhals" +version = "2.19.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4e/1a/bd3317c0bdbcd9ffb710ddf5250b32898f8f2c240be99494fe137feb77a7/narwhals-2.19.0.tar.gz", hash = "sha256:14fd7040b5ff211d415a82e4827b9d04c354e213e72a6d0730205ffd72e3b7ff", size = 623698, upload-time = "2026-04-06T15:50:58.786Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/72/e61e3091e0e00fae9d3a8ef85ece9d2cd4b5966058e1f2901ce42679eebf/narwhals-2.19.0-py3-none-any.whl", hash = "sha256:1f8dfa4a33a6dbff878c3e9be4c3b455dfcaf2a9322f1357db00e4e92e95b84b", size = 446991, upload-time = "2026-04-06T15:50:57.046Z" }, +] + +[[package]] +name = "nbclient" +version = "0.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "nbformat" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/56/91/1c1d5a4b9a9ebba2b4e32b8c852c2975c872aec1fe42ab5e516b2cecd193/nbclient-0.10.4.tar.gz", hash = "sha256:1e54091b16e6da39e297b0ece3e10f6f29f4ac4e8ee515d29f8a7099bd6553c9", size = 62554, upload-time = "2025-12-23T07:45:46.369Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/a0/5b0c2f11142ed1dddec842457d3f65eaf71a0080894eb6f018755b319c3a/nbclient-0.10.4-py3-none-any.whl", hash = "sha256:9162df5a7373d70d606527300a95a975a47c137776cd942e52d9c7e29ff83440", size = 25465, upload-time = "2025-12-23T07:45:44.51Z" }, +] + +[[package]] +name = "nbconvert" +version = "7.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4" }, + { name = "bleach", extra = ["css"] }, + { name = "defusedxml" }, + { name = "jinja2" }, + { name = "jupyter-core" }, + { name = "jupyterlab-pygments" }, + { name = "markupsafe" }, + { name = "mistune" }, + { name = "nbclient" }, + { name = "nbformat" }, + { name = "packaging" }, + { name = "pandocfilters" }, + { name = "pygments" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/01/b1/708e53fe2e429c103c6e6e159106bcf0357ac41aa4c28772bd8402339051/nbconvert-7.17.1.tar.gz", hash = "sha256:34d0d0a7e73ce3cbab6c5aae8f4f468797280b01fd8bd2ca746da8569eddd7d2", size = 865311, upload-time = "2026-04-08T00:44:14.914Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/f8/bb0a9d5f46819c821dc1f004aa2cc29b1d91453297dbf5ff20470f00f193/nbconvert-7.17.1-py3-none-any.whl", hash = "sha256:aa85c087b435e7bf1ffd03319f658e285f2b89eccab33bc1ba7025495ab3e7c8", size = 261927, upload-time = "2026-04-08T00:44:12.845Z" }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema" }, + { name = "jsonschema" }, + { name = "jupyter-core" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749, upload-time = "2024-04-04T11:20:37.371Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454, upload-time = "2024-04-04T11:20:34.895Z" }, +] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418, upload-time = "2024-01-21T14:25:19.227Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195, upload-time = "2024-01-21T14:25:17.223Z" }, +] + +[[package]] +name = "networkx" +version = "2.8.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/16/c44e8550012735b8f21b3df7f39e8ba5a987fb764ac017ad5f3589735889/networkx-2.8.8.tar.gz", hash = "sha256:230d388117af870fce5647a3c52401fcf753e94720e6ea6b4197a5355648885e", size = 1960828, upload-time = "2022-11-01T20:31:52.02Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/31/d2f89f1ae42718f8c8a9e440ebe38d7d5fe1e0d9eb9178ce779e365b3ab0/networkx-2.8.8-py3-none-any.whl", hash = "sha256:e435dfa75b1d7195c7b8378c3859f0445cd88c6b0375c181ed66823a9ceb7524", size = 2025192, upload-time = "2022-11-01T20:31:49.035Z" }, +] + +[[package]] +name = "notebook" +version = "7.5.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, + { name = "jupyterlab" }, + { name = "jupyterlab-server" }, + { name = "notebook-shim" }, + { name = "tornado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1f/6d/41052c48d6f6349ca0a7c4d1f6a78464de135e6d18f5829ba2510e62184c/notebook-7.5.5.tar.gz", hash = "sha256:dc0bfab0f2372c8278c457423d3256c34154ac2cc76bf20e9925260c461013c3", size = 14169167, upload-time = "2026-03-11T16:32:51.922Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/aa/cbd1deb9f07446241e88f8d5fecccd95b249bca0b4e5482214a4d1714c49/notebook-7.5.5-py3-none-any.whl", hash = "sha256:a7c14dbeefa6592e87f72290ca982e0c10f5bbf3786be2a600fda9da2764a2b8", size = 14578929, upload-time = "2026-03-11T16:32:48.021Z" }, +] + +[[package]] +name = "notebook-shim" +version = "0.2.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/54/d2/92fa3243712b9a3e8bafaf60aac366da1cada3639ca767ff4b5b3654ec28/notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb", size = 13167, upload-time = "2024-02-14T23:35:18.353Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef", size = 13307, upload-time = "2024-02-14T23:35:16.286Z" }, +] + +[[package]] +name = "numba" +version = "0.65.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "llvmlite" }, + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/49/61/7299643b9c18d669e04be7c5bcb64d985070d07553274817b45b049e7bfe/numba-0.65.0.tar.gz", hash = "sha256:edad0d9f6682e93624c00125a471ae4df186175d71fd604c983c377cdc03e68b", size = 2764131, upload-time = "2026-04-01T03:52:01.946Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/9b/e8453d93d5cb3f53cc956f135024be09d52f4f99643acaf8fdca090a8f3c/numba-0.65.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:dff9fd5fbc9a35c517359c5823ea705d9b65f01fb46e42e35a2eabe5a52c2e96", size = 2680537, upload-time = "2026-04-01T03:51:17.325Z" }, + { url = "https://files.pythonhosted.org/packages/07/95/d6a2f0625e1092624228301eea11cdaff21ddcaf917ef3d631846a38b2f4/numba-0.65.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4c894c94afa5ffd627c7e3b693df10cb0d905bd5eb06de3dfc31775140cf4f89", size = 3739444, upload-time = "2026-04-01T03:51:19.629Z" }, + { url = "https://files.pythonhosted.org/packages/49/ed/fe518c97af035e4ec670c2edc3f0ff7a518cbed2f0b5053124d7c979bd8a/numba-0.65.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b7325b1aab88f0339057288ee32f39dc660e14f93872a6fda14fa6eb9f95b047", size = 3446390, upload-time = "2026-04-01T03:51:21.55Z" }, + { url = "https://files.pythonhosted.org/packages/d0/06/5010939854249c290c6217e3fb7404914f4ed953f9923e340c3e166bcaf0/numba-0.65.0-cp310-cp310-win_amd64.whl", hash = "sha256:71e72e9ca2f619df4768f9c3962bfec60191a5a26fe2b6a8c6a07532b6146169", size = 2747200, upload-time = "2026-04-01T03:51:23.674Z" }, +] + +[[package]] +name = "numpy" +version = "1.26.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/65/6e/09db70a523a96d25e115e71cc56a6f9031e7b8cd166c1ac8438307c14058/numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", size = 15786129, upload-time = "2024-02-06T00:26:44.495Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/94/ace0fdea5241a27d13543ee117cbc65868e82213fb31a8eb7fe9ff23f313/numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", size = 20631468, upload-time = "2024-02-05T23:48:01.194Z" }, + { url = "https://files.pythonhosted.org/packages/20/f7/b24208eba89f9d1b58c1668bc6c8c4fd472b20c45573cb767f59d49fb0f6/numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", size = 13966411, upload-time = "2024-02-05T23:48:29.038Z" }, + { url = "https://files.pythonhosted.org/packages/fc/a5/4beee6488160798683eed5bdb7eead455892c3b4e1f78d79d8d3f3b084ac/numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", size = 14219016, upload-time = "2024-02-05T23:48:54.098Z" }, + { url = "https://files.pythonhosted.org/packages/4b/d7/ecf66c1cd12dc28b4040b15ab4d17b773b87fa9d29ca16125de01adb36cd/numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f", size = 18240889, upload-time = "2024-02-05T23:49:25.361Z" }, + { url = "https://files.pythonhosted.org/packages/24/03/6f229fe3187546435c4f6f89f6d26c129d4f5bed40552899fcf1f0bf9e50/numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", size = 13876746, upload-time = "2024-02-05T23:49:51.983Z" }, + { url = "https://files.pythonhosted.org/packages/39/fe/39ada9b094f01f5a35486577c848fe274e374bbf8d8f472e1423a0bbd26d/numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", size = 18078620, upload-time = "2024-02-05T23:50:22.515Z" }, + { url = "https://files.pythonhosted.org/packages/d5/ef/6ad11d51197aad206a9ad2286dc1aac6a378059e06e8cf22cd08ed4f20dc/numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", size = 5972659, upload-time = "2024-02-05T23:50:35.834Z" }, + { url = "https://files.pythonhosted.org/packages/19/77/538f202862b9183f54108557bfda67e17603fc560c384559e769321c9d92/numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", size = 15808905, upload-time = "2024-02-05T23:51:03.701Z" }, +] + +[[package]] +name = "nvidia-cublas-cu12" +version = "12.1.3.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/6d/121efd7382d5b0284239f4ab1fc1590d86d34ed4a4a2fdb13b30ca8e5740/nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:ee53ccca76a6fc08fb9701aa95b6ceb242cdaab118c3bb152af4e579af792728", size = 410594774, upload-time = "2023-04-19T15:50:03.519Z" }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/00/6b218edd739ecfc60524e585ba8e6b00554dd908de2c9c66c1af3e44e18d/nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:e54fde3983165c624cb79254ae9818a456eb6e87a7fd4d56a2352c24ee542d7e", size = 14109015, upload-time = "2023-04-19T15:47:32.502Z" }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/9f/c64c03f49d6fbc56196664d05dba14e3a561038a81a638eeb47f4d4cfd48/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:339b385f50c309763ca65456ec75e17bbefcbbf2893f462cb8b90584cd27a1c2", size = 23671734, upload-time = "2023-04-19T15:48:32.42Z" }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/d5/c68b1d2cdfcc59e72e8a5949a37ddb22ae6cade80cd4a57a84d4c8b55472/nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:6e258468ddf5796e25f1dc591a31029fa317d97a0a94ed93468fc86301d61e40", size = 823596, upload-time = "2023-04-19T15:47:22.471Z" }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "8.9.2.26" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/74/a2e2be7fb83aaedec84f391f082cf765dfb635e7caa9b49065f73e4835d8/nvidia_cudnn_cu12-8.9.2.26-py3-none-manylinux1_x86_64.whl", hash = "sha256:5ccb288774fdfb07a7e7025ffec286971c06d8d7b4fb162525334616d7629ff9", size = 731725872, upload-time = "2023-06-01T19:24:57.328Z" }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.0.2.54" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/94/eb540db023ce1d162e7bea9f8f5aa781d57c65aed513c33ee9a5123ead4d/nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl", hash = "sha256:794e3948a1aa71fd817c3775866943936774d1c14e7628c74f6f7417224cdf56", size = 121635161, upload-time = "2023-04-19T15:50:46Z" }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.2.106" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/31/4890b1c9abc496303412947fc7dcea3d14861720642b49e8ceed89636705/nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:9d264c5036dde4e64f1de8c50ae753237c12e0b1348738169cd0f8a536c0e1e0", size = 56467784, upload-time = "2023-04-19T15:51:04.804Z" }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.4.5.107" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, + { name = "nvidia-cusparse-cu12" }, + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/1d/8de1e5c67099015c834315e333911273a8c6aaba78923dd1d1e25fc5f217/nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl", hash = "sha256:8a7ec542f0412294b15072fa7dab71d31334014a69f953004ea7a118206fe0dd", size = 124161928, upload-time = "2023-04-19T15:51:25.781Z" }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.1.0.106" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/5b/cfaeebf25cd9fdec14338ccb16f6b2c4c7fa9163aefcf057d86b9cc248bb/nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:f3b50f42cf363f86ab21f720998517a659a48131e8d538dc02f8768237bd884c", size = 195958278, upload-time = "2023-04-19T15:51:49.939Z" }, +] + +[[package]] +name = "nvidia-nccl-cu12" +version = "2.18.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/05/23f8f38eec3d28e4915725b233c24d8f1a33cb6540a882f7b54be1befa02/nvidia_nccl_cu12-2.18.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:1a6c4acefcbebfa6de320f412bf7866de856e786e0462326ba1bac40de0b5e71", size = 209797524, upload-time = "2023-05-04T23:15:49.653Z" }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.9.86" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/0c/c75bbfb967457a0b7670b8ad267bfc4fffdf341c074e0a80db06c24ccfd4/nvidia_nvjitlink_cu12-12.9.86-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:e3f1171dbdc83c5932a45f0f4c99180a70de9bd2718c1ab77d14104f6d7147f9", size = 39748338, upload-time = "2025-06-05T20:10:25.613Z" }, +] + +[[package]] +name = "nvidia-nvtx-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/d3/8057f0587683ed2fcd4dbfbdfdfa807b9160b809976099d36b8f60d08f03/nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:dc21cf308ca5691e7c04d962e213f8a4aa9bbfa23d95412f452254c2caeb09e5", size = 99138, upload-time = "2023-04-19T15:48:43.556Z" }, +] + +[[package]] +name = "oauthlib" +version = "3.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0b/5f/19930f824ffeb0ad4372da4812c50edbd1434f678c90c2733e1188edfc63/oauthlib-3.3.1.tar.gz", hash = "sha256:0f0f8aa759826a193cf66c12ea1af1637f87b9b4622d46e866952bb022e538c9", size = 185918, upload-time = "2025-06-19T22:48:08.269Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/be/9c/92789c596b8df838baa98fa71844d84283302f7604ed565dafe5a6b5041a/oauthlib-3.3.1-py3-none-any.whl", hash = "sha256:88119c938d2b8fb88561af5f6ee0eec8cc8d552b7bb1f712743136eb7523b7a1", size = 160065, upload-time = "2025-06-19T22:48:06.508Z" }, +] + +[[package]] +name = "opt-einsum" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/b9/2ac072041e899a52f20cf9510850ff58295003aa75525e58343591b0cbfb/opt_einsum-3.4.0.tar.gz", hash = "sha256:96ca72f1b886d148241348783498194c577fa30a8faac108586b14f1ba4473ac", size = 63004, upload-time = "2024-09-26T14:33:24.483Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/cd/066e86230ae37ed0be70aae89aabf03ca8d9f39c8aea0dec8029455b5540/opt_einsum-3.4.0-py3-none-any.whl", hash = "sha256:69bb92469f86a1565195ece4ac0323943e83477171b91d24c35afe028a90d7cd", size = 71932, upload-time = "2024-09-26T14:33:23.039Z" }, +] + +[[package]] +name = "optuna" +version = "4.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alembic" }, + { name = "colorlog" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "sqlalchemy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/9b/62f120fb2ecbc4338bee70c5a3671c8e561714f3aa1a046b897ff142050e/optuna-4.8.0.tar.gz", hash = "sha256:6f7043e9f8ecb5e607af86a7eb00fb5ec2be26c3b08c201209a73d36aff37a38", size = 482603, upload-time = "2026-03-16T04:59:58.659Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/24/7c731839566d30dc70556d9824ef17692d896c15e3df627bce8c16f753e1/optuna-4.8.0-py3-none-any.whl", hash = "sha256:c57a7682679c36bfc9bca0da430698179e513874074b71bebedb0334964ab930", size = 419456, upload-time = "2026-03-16T04:59:56.977Z" }, +] + +[[package]] +name = "overrides" +version = "7.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/36/86/b585f53236dec60aba864e050778b25045f857e17f6e5ea0ae95fe80edd2/overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a", size = 22812, upload-time = "2024-01-27T21:01:33.423Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49", size = 17832, upload-time = "2024-01-27T21:01:31.393Z" }, +] + +[[package]] +name = "packaging" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950, upload-time = "2024-11-08T09:47:47.202Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451, upload-time = "2024-11-08T09:47:44.722Z" }, +] + +[[package]] +name = "pandas" +version = "2.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/33/01/d40b85317f86cf08d853a4f495195c73815fdf205eef3993821720274518/pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b", size = 4495223, upload-time = "2025-09-29T23:34:51.853Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/f7/f425a00df4fcc22b292c6895c6831c0c8ae1d9fac1e024d16f98a9ce8749/pandas-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:376c6446ae31770764215a6c937f72d917f214b43560603cd60da6408f183b6c", size = 11555763, upload-time = "2025-09-29T23:16:53.287Z" }, + { url = "https://files.pythonhosted.org/packages/13/4f/66d99628ff8ce7857aca52fed8f0066ce209f96be2fede6cef9f84e8d04f/pandas-2.3.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e19d192383eab2f4ceb30b412b22ea30690c9e618f78870357ae1d682912015a", size = 10801217, upload-time = "2025-09-29T23:17:04.522Z" }, + { url = "https://files.pythonhosted.org/packages/1d/03/3fc4a529a7710f890a239cc496fc6d50ad4a0995657dccc1d64695adb9f4/pandas-2.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5caf26f64126b6c7aec964f74266f435afef1c1b13da3b0636c7518a1fa3e2b1", size = 12148791, upload-time = "2025-09-29T23:17:18.444Z" }, + { url = "https://files.pythonhosted.org/packages/40/a8/4dac1f8f8235e5d25b9955d02ff6f29396191d4e665d71122c3722ca83c5/pandas-2.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dd7478f1463441ae4ca7308a70e90b33470fa593429f9d4c578dd00d1fa78838", size = 12769373, upload-time = "2025-09-29T23:17:35.846Z" }, + { url = "https://files.pythonhosted.org/packages/df/91/82cc5169b6b25440a7fc0ef3a694582418d875c8e3ebf796a6d6470aa578/pandas-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4793891684806ae50d1288c9bae9330293ab4e083ccd1c5e383c34549c6e4250", size = 13200444, upload-time = "2025-09-29T23:17:49.341Z" }, + { url = "https://files.pythonhosted.org/packages/10/ae/89b3283800ab58f7af2952704078555fa60c807fff764395bb57ea0b0dbd/pandas-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:28083c648d9a99a5dd035ec125d42439c6c1c525098c58af0fc38dd1a7a1b3d4", size = 13858459, upload-time = "2025-09-29T23:18:03.722Z" }, + { url = "https://files.pythonhosted.org/packages/85/72/530900610650f54a35a19476eca5104f38555afccda1aa11a92ee14cb21d/pandas-2.3.3-cp310-cp310-win_amd64.whl", hash = "sha256:503cf027cf9940d2ceaa1a93cfb5f8c8c7e6e90720a2850378f0b3f3b1e06826", size = 11346086, upload-time = "2025-09-29T23:18:18.505Z" }, +] + +[[package]] +name = "pandocfilters" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/6f/3dd4940bbe001c06a65f88e36bad298bc7a0de5036115639926b0c5c0458/pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e", size = 8454, upload-time = "2024-01-18T20:08:13.726Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc", size = 8663, upload-time = "2024-01-18T20:08:11.28Z" }, +] + +[[package]] +name = "parso" +version = "0.8.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/76/a1e769043c0c0c9fe391b702539d594731a4362334cdf4dc25d0c09761e7/parso-0.8.6.tar.gz", hash = "sha256:2b9a0332696df97d454fa67b81618fd69c35a7b90327cbe6ba5c92d2c68a7bfd", size = 401621, upload-time = "2026-02-09T15:45:24.425Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/61/fae042894f4296ec49e3f193aff5d7c18440da9e48102c3315e1bc4519a7/parso-0.8.6-py2.py3-none-any.whl", hash = "sha256:2c549f800b70a5c4952197248825584cb00f033b29c692671d3bf08bf380baff", size = 106894, upload-time = "2026-02-09T15:45:21.391Z" }, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload-time = "2023-11-25T09:07:26.339Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772, upload-time = "2023-11-25T06:56:14.81Z" }, +] + +[[package]] +name = "pillow" +version = "12.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/21/c2bcdd5906101a30244eaffc1b6e6ce71a31bd0742a01eb89e660ebfac2d/pillow-12.2.0.tar.gz", hash = "sha256:a830b1a40919539d07806aa58e1b114df53ddd43213d9c8b75847eee6c0182b5", size = 46987819, upload-time = "2026-04-01T14:46:17.687Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/aa/d0b28e1c811cd4d5f5c2bfe2e022292bd255ae5744a3b9ac7d6c8f72dd75/pillow-12.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:a4e8f36e677d3336f35089648c8955c51c6d386a13cf6ee9c189c5f5bd713a9f", size = 5354355, upload-time = "2026-04-01T14:42:15.402Z" }, + { url = "https://files.pythonhosted.org/packages/27/8e/1d5b39b8ae2bd7650d0c7b6abb9602d16043ead9ebbfef4bc4047454da2a/pillow-12.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e589959f10d9824d39b350472b92f0ce3b443c0a3442ebf41c40cb8361c5b97", size = 4695871, upload-time = "2026-04-01T14:42:18.234Z" }, + { url = "https://files.pythonhosted.org/packages/f0/c5/dcb7a6ca6b7d3be41a76958e90018d56c8462166b3ef223150360850c8da/pillow-12.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:a52edc8bfff4429aaabdf4d9ee0daadbbf8562364f940937b941f87a4290f5ff", size = 6269734, upload-time = "2026-04-01T14:42:20.608Z" }, + { url = "https://files.pythonhosted.org/packages/ea/f1/aa1bb13b2f4eba914e9637893c73f2af8e48d7d4023b9d3750d4c5eb2d0c/pillow-12.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:975385f4776fafde056abb318f612ef6285b10a1f12b8570f3647ad0d74b48ec", size = 8076080, upload-time = "2026-04-01T14:42:23.095Z" }, + { url = "https://files.pythonhosted.org/packages/a1/2a/8c79d6a53169937784604a8ae8d77e45888c41537f7f6f65ed1f407fe66d/pillow-12.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bd9c0c7a0c681a347b3194c500cb1e6ca9cab053ea4d82a5cf45b6b754560136", size = 6382236, upload-time = "2026-04-01T14:42:25.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/42/bbcb6051030e1e421d103ce7a8ecadf837aa2f39b8f82ef1a8d37c3d4ebc/pillow-12.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:88d387ff40b3ff7c274947ed3125dedf5262ec6919d83946753b5f3d7c67ea4c", size = 7070220, upload-time = "2026-04-01T14:42:28.68Z" }, + { url = "https://files.pythonhosted.org/packages/3f/e1/c2a7d6dd8cfa6b231227da096fd2d58754bab3603b9d73bf609d3c18b64f/pillow-12.2.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:51c4167c34b0d8ba05b547a3bb23578d0ba17b80a5593f93bd8ecb123dd336a3", size = 6493124, upload-time = "2026-04-01T14:42:31.579Z" }, + { url = "https://files.pythonhosted.org/packages/5f/41/7c8617da5d32e1d2f026e509484fdb6f3ad7efaef1749a0c1928adbb099e/pillow-12.2.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:34c0d99ecccea270c04882cb3b86e7b57296079c9a4aff88cb3b33563d95afaa", size = 7194324, upload-time = "2026-04-01T14:42:34.615Z" }, + { url = "https://files.pythonhosted.org/packages/2d/de/a777627e19fd6d62f84070ee1521adde5eeda4855b5cf60fe0b149118bca/pillow-12.2.0-cp310-cp310-win32.whl", hash = "sha256:b85f66ae9eb53e860a873b858b789217ba505e5e405a24b85c0464822fe88032", size = 6376363, upload-time = "2026-04-01T14:42:37.19Z" }, + { url = "https://files.pythonhosted.org/packages/e7/34/fc4cb5204896465842767b96d250c08410f01f2f28afc43b257de842eed5/pillow-12.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:673aa32138f3e7531ccdbca7b3901dba9b70940a19ccecc6a37c77d5fdeb05b5", size = 7083523, upload-time = "2026-04-01T14:42:39.62Z" }, + { url = "https://files.pythonhosted.org/packages/2d/a0/32852d36bc7709f14dc3f64f929a275e958ad8c19a6deba9610d458e28b3/pillow-12.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:3e080565d8d7c671db5802eedfb438e5565ffa40115216eabb8cd52d0ecce024", size = 2463318, upload-time = "2026-04-01T14:42:42.063Z" }, +] + +[[package]] +name = "platformdirs" +version = "4.9.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9f/4a/0883b8e3802965322523f0b200ecf33d31f10991d0401162f4b23c698b42/platformdirs-4.9.6.tar.gz", hash = "sha256:3bfa75b0ad0db84096ae777218481852c0ebc6c727b3168c1b9e0118e458cf0a", size = 29400, upload-time = "2026-04-09T00:04:10.812Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/a6/a0a304dc33b49145b21f4808d763822111e67d1c3a32b524a1baf947b6e1/platformdirs-4.9.6-py3-none-any.whl", hash = "sha256:e61adb1d5e5cb3441b4b7710bea7e4c12250ca49439228cc1021c00dcfac0917", size = 21348, upload-time = "2026-04-09T00:04:09.463Z" }, +] + +[[package]] +name = "pluggy" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, +] + +[[package]] +name = "prometheus-client" +version = "0.25.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/fb/d9aa83ffe43ce1f19e557c0971d04b90561b0cfd50762aafb01968285553/prometheus_client-0.25.0.tar.gz", hash = "sha256:5e373b75c31afb3c86f1a52fa1ad470c9aace18082d39ec0d2f918d11cc9ba28", size = 86035, upload-time = "2026-04-09T19:53:42.359Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/9b/d4b1e644385499c8346fa9b622a3f030dce14cd6ef8a1871c221a17a67e7/prometheus_client-0.25.0-py3-none-any.whl", hash = "sha256:d5aec89e349a6ec230805d0df882f3807f74fd6c1a2fa86864e3c2279059fed1", size = 64154, upload-time = "2026-04-09T19:53:41.324Z" }, +] + +[[package]] +name = "prompt-toolkit" +version = "3.0.52" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/96/06e01a7b38dce6fe1db213e061a4602dd6032a8a97ef6c1a862537732421/prompt_toolkit-3.0.52.tar.gz", hash = "sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855", size = 434198, upload-time = "2025-08-27T15:24:02.057Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/03/0d3ce49e2505ae70cf43bc5bb3033955d2fc9f932163e84dc0779cc47f48/prompt_toolkit-3.0.52-py3-none-any.whl", hash = "sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955", size = 391431, upload-time = "2025-08-27T15:23:59.498Z" }, +] + +[[package]] +name = "propcache" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9e/da/e9fc233cf63743258bff22b3dfa7ea5baef7b5bc324af47a0ad89b8ffc6f/propcache-0.4.1.tar.gz", hash = "sha256:f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d", size = 46442, upload-time = "2025-10-08T19:49:02.291Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/0e/934b541323035566a9af292dba85a195f7b78179114f2c6ebb24551118a9/propcache-0.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7c2d1fa3201efaf55d730400d945b5b3ab6e672e100ba0f9a409d950ab25d7db", size = 79534, upload-time = "2025-10-08T19:46:02.083Z" }, + { url = "https://files.pythonhosted.org/packages/a1/6b/db0d03d96726d995dc7171286c6ba9d8d14251f37433890f88368951a44e/propcache-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1eb2994229cc8ce7fe9b3db88f5465f5fd8651672840b2e426b88cdb1a30aac8", size = 45526, upload-time = "2025-10-08T19:46:03.884Z" }, + { url = "https://files.pythonhosted.org/packages/e4/c3/82728404aea669e1600f304f2609cde9e665c18df5a11cdd57ed73c1dceb/propcache-0.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:66c1f011f45a3b33d7bcb22daed4b29c0c9e2224758b6be00686731e1b46f925", size = 47263, upload-time = "2025-10-08T19:46:05.405Z" }, + { url = "https://files.pythonhosted.org/packages/df/1b/39313ddad2bf9187a1432654c38249bab4562ef535ef07f5eb6eb04d0b1b/propcache-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9a52009f2adffe195d0b605c25ec929d26b36ef986ba85244891dee3b294df21", size = 201012, upload-time = "2025-10-08T19:46:07.165Z" }, + { url = "https://files.pythonhosted.org/packages/5b/01/f1d0b57d136f294a142acf97f4ed58c8e5b974c21e543000968357115011/propcache-0.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5d4e2366a9c7b837555cf02fb9be2e3167d333aff716332ef1b7c3a142ec40c5", size = 209491, upload-time = "2025-10-08T19:46:08.909Z" }, + { url = "https://files.pythonhosted.org/packages/a1/c8/038d909c61c5bb039070b3fb02ad5cccdb1dde0d714792e251cdb17c9c05/propcache-0.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:9d2b6caef873b4f09e26ea7e33d65f42b944837563a47a94719cc3544319a0db", size = 215319, upload-time = "2025-10-08T19:46:10.7Z" }, + { url = "https://files.pythonhosted.org/packages/08/57/8c87e93142b2c1fa2408e45695205a7ba05fb5db458c0bf5c06ba0e09ea6/propcache-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b16ec437a8c8a965ecf95739448dd938b5c7f56e67ea009f4300d8df05f32b7", size = 196856, upload-time = "2025-10-08T19:46:12.003Z" }, + { url = "https://files.pythonhosted.org/packages/42/df/5615fec76aa561987a534759b3686008a288e73107faa49a8ae5795a9f7a/propcache-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:296f4c8ed03ca7476813fe666c9ea97869a8d7aec972618671b33a38a5182ef4", size = 193241, upload-time = "2025-10-08T19:46:13.495Z" }, + { url = "https://files.pythonhosted.org/packages/d5/21/62949eb3a7a54afe8327011c90aca7e03547787a88fb8bd9726806482fea/propcache-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:1f0978529a418ebd1f49dad413a2b68af33f85d5c5ca5c6ca2a3bed375a7ac60", size = 190552, upload-time = "2025-10-08T19:46:14.938Z" }, + { url = "https://files.pythonhosted.org/packages/30/ee/ab4d727dd70806e5b4de96a798ae7ac6e4d42516f030ee60522474b6b332/propcache-0.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fd138803047fb4c062b1c1dd95462f5209456bfab55c734458f15d11da288f8f", size = 200113, upload-time = "2025-10-08T19:46:16.695Z" }, + { url = "https://files.pythonhosted.org/packages/8a/0b/38b46208e6711b016aa8966a3ac793eee0d05c7159d8342aa27fc0bc365e/propcache-0.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:8c9b3cbe4584636d72ff556d9036e0c9317fa27b3ac1f0f558e7e84d1c9c5900", size = 200778, upload-time = "2025-10-08T19:46:18.023Z" }, + { url = "https://files.pythonhosted.org/packages/cf/81/5abec54355ed344476bee711e9f04815d4b00a311ab0535599204eecc257/propcache-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f93243fdc5657247533273ac4f86ae106cc6445a0efacb9a1bfe982fcfefd90c", size = 193047, upload-time = "2025-10-08T19:46:19.449Z" }, + { url = "https://files.pythonhosted.org/packages/ec/b6/1f237c04e32063cb034acd5f6ef34ef3a394f75502e72703545631ab1ef6/propcache-0.4.1-cp310-cp310-win32.whl", hash = "sha256:a0ee98db9c5f80785b266eb805016e36058ac72c51a064040f2bc43b61101cdb", size = 38093, upload-time = "2025-10-08T19:46:20.643Z" }, + { url = "https://files.pythonhosted.org/packages/a6/67/354aac4e0603a15f76439caf0427781bcd6797f370377f75a642133bc954/propcache-0.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:1cdb7988c4e5ac7f6d175a28a9aa0c94cb6f2ebe52756a3c0cda98d2809a9e37", size = 41638, upload-time = "2025-10-08T19:46:21.935Z" }, + { url = "https://files.pythonhosted.org/packages/e0/e1/74e55b9fd1a4c209ff1a9a824bf6c8b3d1fc5a1ac3eabe23462637466785/propcache-0.4.1-cp310-cp310-win_arm64.whl", hash = "sha256:d82ad62b19645419fe79dd63b3f9253e15b30e955c0170e5cebc350c1844e581", size = 38229, upload-time = "2025-10-08T19:46:23.368Z" }, + { url = "https://files.pythonhosted.org/packages/5b/5a/bc7b4a4ef808fa59a816c17b20c4bef6884daebbdf627ff2a161da67da19/propcache-0.4.1-py3-none-any.whl", hash = "sha256:af2a6052aeb6cf17d3e46ee169099044fd8224cbaf75c76a2ef596e8163e2237", size = 13305, upload-time = "2025-10-08T19:49:00.792Z" }, +] + +[[package]] +name = "protobuf" +version = "4.25.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d9/8e/d08c41a8c004e1d437ef467e7c4f9c3295cd784eba48ed5d1d01f94b1dad/protobuf-4.25.9.tar.gz", hash = "sha256:b0dc7e7c68de8b1ce831dacb12fb407e838edbb8b6cc0dc3a2a6b4cbf6de9cff", size = 381040, upload-time = "2026-03-25T23:09:36.423Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/e9/59435bd04bdd46cb38c42a336b22f9843e8e586ff83c35a5423f8b14704e/protobuf-4.25.9-cp310-abi3-win32.whl", hash = "sha256:bde396f568b0b46fc8fbfe9f02facf25b6755b2578a3b8ac61e74b9d69499e03", size = 392879, upload-time = "2026-03-25T23:09:21.32Z" }, + { url = "https://files.pythonhosted.org/packages/f3/16/42a5c7f1001783d2b5bfcecde10127f09010f78982c86ae409122ce3ece6/protobuf-4.25.9-cp310-abi3-win_amd64.whl", hash = "sha256:3683c05154252206f7cb2d371626514b3708199d9bcf683b503dabf3a2e38e06", size = 413900, upload-time = "2026-03-25T23:09:23.589Z" }, + { url = "https://files.pythonhosted.org/packages/56/5b/0074a0a9eb01f3d1c4648ca5e81b22090c811b210b61df9018ac6d6c5cda/protobuf-4.25.9-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:9560813560e6ee72c11ca8873878bdb7ee003c96a57ebb013245fe84e2540904", size = 394826, upload-time = "2026-03-25T23:09:25.194Z" }, + { url = "https://files.pythonhosted.org/packages/54/aa/b2dba856f64c36b2a06c67be1472de98cca07a2322d0f0cbf03279a40e5b/protobuf-4.25.9-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:999146ef02e7fa6a692477badd1528bcd7268df211852a3df2d834ba2b480791", size = 294191, upload-time = "2026-03-25T23:09:26.613Z" }, + { url = "https://files.pythonhosted.org/packages/a8/5c/53f18822017b8bda6bd8bb4e02048e911fdc79a3dafdc83ab994fe922a84/protobuf-4.25.9-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:438c636de8fb706a0de94a12a268ef1ae8f5ba5ae655a7671fcda5968ba3c9be", size = 295178, upload-time = "2026-03-25T23:09:27.839Z" }, + { url = "https://files.pythonhosted.org/packages/16/28/d5065b212685875d3924bcdb3201cbf467cb4d58a18aa19a8dfd99ea80a9/protobuf-4.25.9-py3-none-any.whl", hash = "sha256:d49b615e7c935194ac161f0965699ac84df6112c378e05ec53da65d2e4cbb6d4", size = 156822, upload-time = "2026-03-25T23:09:34.957Z" }, +] + +[[package]] +name = "psutil" +version = "7.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/c6/d1ddf4abb55e93cebc4f2ed8b5d6dbad109ecb8d63748dd2b20ab5e57ebe/psutil-7.2.2.tar.gz", hash = "sha256:0746f5f8d406af344fd547f1c8daa5f5c33dbc293bb8d6a16d80b4bb88f59372", size = 493740, upload-time = "2026-01-28T18:14:54.428Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/36/5ee6e05c9bd427237b11b3937ad82bb8ad2752d72c6969314590dd0c2f6e/psutil-7.2.2-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ed0cace939114f62738d808fdcecd4c869222507e266e574799e9c0faa17d486", size = 129090, upload-time = "2026-01-28T18:15:22.168Z" }, + { url = "https://files.pythonhosted.org/packages/80/c4/f5af4c1ca8c1eeb2e92ccca14ce8effdeec651d5ab6053c589b074eda6e1/psutil-7.2.2-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:1a7b04c10f32cc88ab39cbf606e117fd74721c831c98a27dc04578deb0c16979", size = 129859, upload-time = "2026-01-28T18:15:23.795Z" }, + { url = "https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9", size = 155560, upload-time = "2026-01-28T18:15:25.976Z" }, + { url = "https://files.pythonhosted.org/packages/63/65/37648c0c158dc222aba51c089eb3bdfa238e621674dc42d48706e639204f/psutil-7.2.2-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b0726cecd84f9474419d67252add4ac0cd9811b04d61123054b9fb6f57df6e9e", size = 156997, upload-time = "2026-01-28T18:15:27.794Z" }, + { url = "https://files.pythonhosted.org/packages/8e/13/125093eadae863ce03c6ffdbae9929430d116a246ef69866dad94da3bfbc/psutil-7.2.2-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fd04ef36b4a6d599bbdb225dd1d3f51e00105f6d48a28f006da7f9822f2606d8", size = 148972, upload-time = "2026-01-28T18:15:29.342Z" }, + { url = "https://files.pythonhosted.org/packages/04/78/0acd37ca84ce3ddffaa92ef0f571e073faa6d8ff1f0559ab1272188ea2be/psutil-7.2.2-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b58fabe35e80b264a4e3bb23e6b96f9e45a3df7fb7eed419ac0e5947c61e47cc", size = 148266, upload-time = "2026-01-28T18:15:31.597Z" }, + { url = "https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl", hash = "sha256:eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988", size = 137737, upload-time = "2026-01-28T18:15:33.849Z" }, + { url = "https://files.pythonhosted.org/packages/8c/c7/7bb2e321574b10df20cbde462a94e2b71d05f9bbda251ef27d104668306a/psutil-7.2.2-cp37-abi3-win_arm64.whl", hash = "sha256:8c233660f575a5a89e6d4cb65d9f938126312bca76d8fe087b947b3a1aaac9ee", size = 134617, upload-time = "2026-01-28T18:15:36.514Z" }, +] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762, upload-time = "2020-12-28T15:15:30.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993, upload-time = "2020-12-28T15:15:28.35Z" }, +] + +[[package]] +name = "pure-eval" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752, upload-time = "2024-07-21T12:58:21.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842, upload-time = "2024-07-21T12:58:20.04Z" }, +] + +[[package]] +name = "py4j" +version = "0.10.9.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/38/31/0b210511177070c8d5d3059556194352e5753602fa64b85b7ab81ec1a009/py4j-0.10.9.9.tar.gz", hash = "sha256:f694cad19efa5bd1dee4f3e5270eb406613c974394035e5bfc4ec1aba870b879", size = 761089, upload-time = "2025-01-15T03:53:18.624Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/db/ea0203e495be491c85af87b66e37acfd3bf756fd985f87e46fc5e3bf022c/py4j-0.10.9.9-py2.py3-none-any.whl", hash = "sha256:c7c26e4158defb37b0bb124933163641a2ff6e3a3913f7811b0ddbe07ed61533", size = 203008, upload-time = "2025-01-15T03:53:15.648Z" }, +] + +[[package]] +name = "pyarrow" +version = "23.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/88/22/134986a4cc224d593c1afde5494d18ff629393d74cc2eddb176669f234a4/pyarrow-23.0.1.tar.gz", hash = "sha256:b8c5873e33440b2bc2f4a79d2b47017a89c5a24116c055625e6f2ee50523f019", size = 1167336, upload-time = "2026-02-16T10:14:12.39Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/a8/24e5dc6855f50a62936ceb004e6e9645e4219a8065f304145d7fb8a79d5d/pyarrow-23.0.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3fab8f82571844eb3c460f90a75583801d14ca0cc32b1acc8c361650e006fd56", size = 34307390, upload-time = "2026-02-16T10:08:08.654Z" }, + { url = "https://files.pythonhosted.org/packages/bc/8e/4be5617b4aaae0287f621ad31c6036e5f63118cfca0dc57d42121ff49b51/pyarrow-23.0.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:3f91c038b95f71ddfc865f11d5876c42f343b4495535bd262c7b321b0b94507c", size = 35853761, upload-time = "2026-02-16T10:08:17.811Z" }, + { url = "https://files.pythonhosted.org/packages/2e/08/3e56a18819462210432ae37d10f5c8eed3828be1d6c751b6e6a2e93c286a/pyarrow-23.0.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:d0744403adabef53c985a7f8a082b502a368510c40d184df349a0a8754533258", size = 44493116, upload-time = "2026-02-16T10:08:25.792Z" }, + { url = "https://files.pythonhosted.org/packages/f8/82/c40b68001dbec8a3faa4c08cd8c200798ac732d2854537c5449dc859f55a/pyarrow-23.0.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c33b5bf406284fd0bba436ed6f6c3ebe8e311722b441d89397c54f871c6863a2", size = 47564532, upload-time = "2026-02-16T10:08:34.27Z" }, + { url = "https://files.pythonhosted.org/packages/20/bc/73f611989116b6f53347581b02177f9f620efdf3cd3f405d0e83cdf53a83/pyarrow-23.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ddf743e82f69dcd6dbbcb63628895d7161e04e56794ef80550ac6f3315eeb1d5", size = 48183685, upload-time = "2026-02-16T10:08:42.889Z" }, + { url = "https://files.pythonhosted.org/packages/b0/cc/6c6b3ecdae2a8c3aced99956187e8302fc954cc2cca2a37cf2111dad16ce/pyarrow-23.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e052a211c5ac9848ae15d5ec875ed0943c0221e2fcfe69eee80b604b4e703222", size = 50605582, upload-time = "2026-02-16T10:08:51.641Z" }, + { url = "https://files.pythonhosted.org/packages/8d/94/d359e708672878d7638a04a0448edf7c707f9e5606cee11e15aaa5c7535a/pyarrow-23.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:5abde149bb3ce524782d838eb67ac095cd3fd6090eba051130589793f1a7f76d", size = 27521148, upload-time = "2026-02-16T10:08:58.077Z" }, +] + +[[package]] +name = "pyasn1" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5c/5f/6583902b6f79b399c9c40674ac384fd9cd77805f9e6205075f828ef11fb2/pyasn1-0.6.3.tar.gz", hash = "sha256:697a8ecd6d98891189184ca1fa05d1bb00e2f84b5977c481452050549c8a72cf", size = 148685, upload-time = "2026-03-17T01:06:53.382Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/a0/7d793dce3fa811fe047d6ae2431c672364b462850c6235ae306c0efd025f/pyasn1-0.6.3-py3-none-any.whl", hash = "sha256:a80184d120f0864a52a073acc6fc642847d0be408e7c7252f31390c0f4eadcde", size = 83997, upload-time = "2026-03-17T01:06:52.036Z" }, +] + +[[package]] +name = "pyasn1-modules" +version = "0.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e9/e6/78ebbb10a8c8e4b61a59249394a4a594c1a7af95593dc933a349c8d00964/pyasn1_modules-0.4.2.tar.gz", hash = "sha256:677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6", size = 307892, upload-time = "2025-03-28T02:41:22.17Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/8d/d529b5d697919ba8c11ad626e835d4039be708a35b0d22de83a269a6682c/pyasn1_modules-0.4.2-py3-none-any.whl", hash = "sha256:29253a9207ce32b64c3ac6600edc75368f98473906e8fd1043bd6b5b1de2c14a", size = 181259, upload-time = "2025-03-28T02:41:19.028Z" }, +] + +[[package]] +name = "pycparser" +version = "3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, +] + +[[package]] +name = "pydantic" +version = "1.10.26" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7b/da/fd89f987a376c807cd81ea0eff4589aade783bbb702637b4734ef2c743a2/pydantic-1.10.26.tar.gz", hash = "sha256:8c6aa39b494c5af092e690127c283d84f363ac36017106a9e66cb33a22ac412e", size = 357906, upload-time = "2025-12-18T15:47:46.557Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/08/2587a6d4314e7539eec84acd062cb7b037638edb57a0335d20e4c5b8878c/pydantic-1.10.26-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f7ae36fa0ecef8d39884120f212e16c06bb096a38f523421278e2f39c1784546", size = 2444588, upload-time = "2025-12-18T15:46:28.882Z" }, + { url = "https://files.pythonhosted.org/packages/47/e6/10df5f08c105bcbb4adbee7d1108ff4b347702b110fed058f6a03f1c6b73/pydantic-1.10.26-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d95a76cf503f0f72ed7812a91de948440b2bf564269975738a4751e4fadeb572", size = 2255972, upload-time = "2025-12-18T15:46:31.72Z" }, + { url = "https://files.pythonhosted.org/packages/ba/7d/fdb961e7adc2c31f394feba6f560ef2c74c446f0285e2c2eb87d2b7206c7/pydantic-1.10.26-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a943ce8e00ad708ed06a1d9df5b4fd28f5635a003b82a4908ece6f24c0b18464", size = 2857175, upload-time = "2025-12-18T15:46:34Z" }, + { url = "https://files.pythonhosted.org/packages/8f/6c/f21e27dda475d4c562bd01b5874284dd3180f336c1e669413b743ca8b278/pydantic-1.10.26-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:465ad8edb29b15c10b779b16431fe8e77c380098badf6db367b7a1d3e572cf53", size = 2947001, upload-time = "2025-12-18T15:46:35.922Z" }, + { url = "https://files.pythonhosted.org/packages/6d/f6/27ea206232cbb6ec24dc4e4e8888a9a734f96a1eaf13504be4b30ef26aa7/pydantic-1.10.26-cp310-cp310-win_amd64.whl", hash = "sha256:80e6be6272839c8a7641d26ad569ab77772809dd78f91d0068dc0fc97f071945", size = 2066217, upload-time = "2025-12-18T15:46:37.614Z" }, + { url = "https://files.pythonhosted.org/packages/1f/98/556e82f00b98486def0b8af85da95e69d2be7e367cf2431408e108bc3095/pydantic-1.10.26-py3-none-any.whl", hash = "sha256:c43ad70dc3ce7787543d563792426a16fd7895e14be4b194b5665e36459dd917", size = 166975, upload-time = "2025-12-18T15:47:44.927Z" }, +] + +[[package]] +name = "pygments" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/b2/bc9c9196916376152d655522fdcebac55e66de6603a76a02bca1b6414f6c/pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f", size = 4955991, upload-time = "2026-03-29T13:29:33.898Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" }, +] + +[[package]] +name = "pynndescent" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "llvmlite" }, + { name = "numba" }, + { name = "scikit-learn" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4a/fb/7f58c397fb31666756457ee2ac4c0289ef2daad57f4ae4be8dec12f80b03/pynndescent-0.6.0.tar.gz", hash = "sha256:7ffde0fb5b400741e055a9f7d377e3702e02250616834231f6c209e39aac24f5", size = 2992987, upload-time = "2026-01-08T21:29:58.943Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b2/e6/94145d714402fd5ade00b5661f2d0ab981219e07f7db9bfa16786cdb9c04/pynndescent-0.6.0-py3-none-any.whl", hash = "sha256:dc8c74844e4c7f5cbd1e0cd6909da86fdc789e6ff4997336e344779c3d5538ef", size = 73511, upload-time = "2026-01-08T21:29:57.306Z" }, +] + +[[package]] +name = "pyogrio" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "numpy" }, + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/49/d4/12f86b1ed09721363da4c09622464b604c851a9223fc0c6b393fb2012208/pyogrio-0.12.1.tar.gz", hash = "sha256:e548ab705bb3e5383693717de1e6c76da97f3762ab92522cb310f93128a75ff1", size = 303289, upload-time = "2025-11-28T19:04:53.341Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/04/e69f476c4cc279adc6d26194da4d3497f5d9efdd46777a6c0ad59c09233f/pyogrio-0.12.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:5c4735235ca0d8dcdb4ecd69bd73e66762d161bce913b10d4458a18137cc7062", size = 23672707, upload-time = "2025-11-28T19:02:54.87Z" }, + { url = "https://files.pythonhosted.org/packages/a3/9e/805d640f050fc4a064ee5ba3289457f47d7f3464b57140caa8ddac039a67/pyogrio-0.12.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:3249d06c2520857b622f3ff0f1b7b4849291ee1fb72f21587825f5fd0f24b787", size = 25247903, upload-time = "2025-11-28T19:02:57.756Z" }, + { url = "https://files.pythonhosted.org/packages/05/c3/65577611485bc3e53a466ffbcd2407f89e8bd7e1c4554e8a0d23a4b8a636/pyogrio-0.12.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f4011b63f9d6c278ee6605971ffabe30b0e8f5992ec2c6df8c70ecfa68a5d02b", size = 31279563, upload-time = "2025-11-28T19:03:00.344Z" }, + { url = "https://files.pythonhosted.org/packages/b1/a6/5c03dffaf02542e8bae6c785d3e302bf4b890cd2ab281336b3c4dc867f84/pyogrio-0.12.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:940857c45051e1e19608ebfe8338bcdf7dd005389057431a3c7b5bff5beb0a5f", size = 30831678, upload-time = "2025-11-28T19:03:03.234Z" }, + { url = "https://files.pythonhosted.org/packages/c8/aa/0e484c13cf14bbe46c366ad363ab2406242a0fba85a7561d42bbd34c35dd/pyogrio-0.12.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:0fd86bcd69126739325a543a489f312b5fd86db092d2dead682772ae4ee434f3", size = 32380362, upload-time = "2025-11-28T19:03:06.098Z" }, + { url = "https://files.pythonhosted.org/packages/7a/7c/cc515005780235d9ab14a29d33868bcaa1d5b423cee7995dda94735c41dd/pyogrio-0.12.1-cp310-cp310-win_amd64.whl", hash = "sha256:dcf9cca273ead32beba7c002dd3db8a304105f52dd66200d48fa1ef30d0676af", size = 22940628, upload-time = "2025-11-28T19:03:08.568Z" }, +] + +[[package]] +name = "pyparsing" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/91/9c6ee907786a473bf81c5f53cf703ba0957b23ab84c264080fb5a450416f/pyparsing-3.3.2.tar.gz", hash = "sha256:c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc", size = 6851574, upload-time = "2026-01-21T03:57:59.36Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl", hash = "sha256:850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d", size = 122781, upload-time = "2026-01-21T03:57:55.912Z" }, +] + +[[package]] +name = "pyproj" +version = "3.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/10/a8480ea27ea4bbe896c168808854d00f2a9b49f95c0319ddcbba693c8a90/pyproj-3.7.1.tar.gz", hash = "sha256:60d72facd7b6b79853f19744779abcd3f804c4e0d4fa8815469db20c9f640a47", size = 226339, upload-time = "2025-02-16T04:28:46.621Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/a3/c4cd4bba5b336075f145fe784fcaf4ef56ffbc979833303303e7a659dda2/pyproj-3.7.1-cp310-cp310-macosx_13_0_x86_64.whl", hash = "sha256:bf09dbeb333c34e9c546364e7df1ff40474f9fddf9e70657ecb0e4f670ff0b0e", size = 6262524, upload-time = "2025-02-16T04:27:19.725Z" }, + { url = "https://files.pythonhosted.org/packages/40/45/4fdf18f4cc1995f1992771d2a51cf186a9d7a8ec973c9693f8453850c707/pyproj-3.7.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:6575b2e53cc9e3e461ad6f0692a5564b96e7782c28631c7771c668770915e169", size = 4665102, upload-time = "2025-02-16T04:27:24.428Z" }, + { url = "https://files.pythonhosted.org/packages/0c/d2/360eb127380106cee83569954ae696b88a891c804d7a93abe3fbc15f5976/pyproj-3.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cb516ee35ed57789b46b96080edf4e503fdb62dbb2e3c6581e0d6c83fca014b", size = 9432667, upload-time = "2025-02-16T04:27:27.04Z" }, + { url = "https://files.pythonhosted.org/packages/76/a5/c6e11b9a99ce146741fb4d184d5c468446c6d6015b183cae82ac822a6cfa/pyproj-3.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e47c4e93b88d99dd118875ee3ca0171932444cdc0b52d493371b5d98d0f30ee", size = 9259185, upload-time = "2025-02-16T04:27:30.35Z" }, + { url = "https://files.pythonhosted.org/packages/41/56/a3c15c42145797a99363fa0fdb4e9805dccb8b4a76a6d7b2cdf36ebcc2a1/pyproj-3.7.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3e8d276caeae34fcbe4813855d0d97b9b825bab8d7a8b86d859c24a6213a5a0d", size = 10469103, upload-time = "2025-02-16T04:27:33.542Z" }, + { url = "https://files.pythonhosted.org/packages/ef/73/c9194c2802fefe2a4fd4230bdd5ab083e7604e93c64d0356fa49c363bad6/pyproj-3.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f173f851ee75e54acdaa053382b6825b400cb2085663a9bb073728a59c60aebb", size = 10401391, upload-time = "2025-02-16T04:27:36.051Z" }, + { url = "https://files.pythonhosted.org/packages/c5/1d/ce8bb5b9251b04d7c22d63619bb3db3d2397f79000a9ae05b3fd86a5837e/pyproj-3.7.1-cp310-cp310-win32.whl", hash = "sha256:f550281ed6e5ea88fcf04a7c6154e246d5714be495c50c9e8e6b12d3fb63e158", size = 5869997, upload-time = "2025-02-16T04:27:38.302Z" }, + { url = "https://files.pythonhosted.org/packages/09/6a/ca145467fd2e5b21e3d5b8c2b9645dcfb3b68f08b62417699a1f5689008e/pyproj-3.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:3537668992a709a2e7f068069192138618c00d0ba113572fdd5ee5ffde8222f3", size = 6278581, upload-time = "2025-02-16T04:27:41.051Z" }, +] + +[[package]] +name = "pyreadline3" +version = "3.5.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/49/4cea918a08f02817aabae639e3d0ac046fef9f9180518a3ad394e22da148/pyreadline3-3.5.4.tar.gz", hash = "sha256:8d57d53039a1c75adba8e50dd3d992b28143480816187ea5efbd5c78e6c885b7", size = 99839, upload-time = "2024-09-19T02:40:10.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/dc/491b7661614ab97483abf2056be1deee4dc2490ecbf7bff9ab5cdbac86e1/pyreadline3-3.5.4-py3-none-any.whl", hash = "sha256:eaf8e6cc3c49bcccf145fc6067ba8643d1df34d604a1ec0eccbf7a18e6d3fae6", size = 83178, upload-time = "2024-09-19T02:40:08.598Z" }, +] + +[[package]] +name = "pytest" +version = "9.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "exceptiongroup" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, + { name = "tomli" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/0d/549bd94f1a0a402dc8cf64563a117c0f3765662e2e668477624baeec44d5/pytest-9.0.3.tar.gz", hash = "sha256:b86ada508af81d19edeb213c681b1d48246c1a91d304c6c81a427674c17eb91c", size = 1572165, upload-time = "2026-04-07T17:16:18.027Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/24/a372aaf5c9b7208e7112038812994107bc65a84cd00e0354a88c2c77a617/pytest-9.0.3-py3-none-any.whl", hash = "sha256:2c5efc453d45394fdd706ade797c0a81091eccd1d6e4bccfcd476e2b8e0ab5d9", size = 375249, upload-time = "2026-04-07T17:16:16.13Z" }, +] + +[[package]] +name = "pytest-cov" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coverage", extra = ["toml"] }, + { name = "pluggy" }, + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/51/a849f96e117386044471c8ec2bd6cfebacda285da9525c9106aeb28da671/pytest_cov-7.1.0.tar.gz", hash = "sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2", size = 55592, upload-time = "2026-03-21T20:11:16.284Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/7a/d968e294073affff457b041c2be9868a40c1c71f4a35fcc1e45e5493067b/pytest_cov-7.1.0-py3-none-any.whl", hash = "sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678", size = 22876, upload-time = "2026-03-21T20:11:14.438Z" }, +] + +[[package]] +name = "pytest-mock" +version = "3.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/68/14/eb014d26be205d38ad5ad20d9a80f7d201472e08167f0bb4361e251084a9/pytest_mock-3.15.1.tar.gz", hash = "sha256:1849a238f6f396da19762269de72cb1814ab44416fa73a8686deac10b0d87a0f", size = 34036, upload-time = "2025-09-16T16:37:27.081Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/cc/06253936f4a7fa2e0f48dfe6d851d9c56df896a9ab09ac019d70b760619c/pytest_mock-3.15.1-py3-none-any.whl", hash = "sha256:0a25e2eb88fe5168d535041d09a4529a188176ae608a6d249ee65abc0949630d", size = 10095, upload-time = "2025-09-16T16:37:25.734Z" }, +] + +[[package]] +name = "pytest-xdist" +version = "3.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "execnet" }, + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/78/b4/439b179d1ff526791eb921115fca8e44e596a13efeda518b9d845a619450/pytest_xdist-3.8.0.tar.gz", hash = "sha256:7e578125ec9bc6050861aa93f2d59f1d8d085595d6551c2c90b6f4fad8d3a9f1", size = 88069, upload-time = "2025-07-01T13:30:59.346Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/31/d4e37e9e550c2b92a9cbc2e4d0b7420a27224968580b5a447f420847c975/pytest_xdist-3.8.0-py3-none-any.whl", hash = "sha256:202ca578cfeb7370784a8c33d6d05bc6e13b4f25b5053c30a152269fd10f0b88", size = 46396, upload-time = "2025-07-01T13:30:56.632Z" }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, +] + +[[package]] +name = "python-json-logger" +version = "4.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/ff/3cc9165fd44106973cd7ac9facb674a65ed853494592541d339bdc9a30eb/python_json_logger-4.1.0.tar.gz", hash = "sha256:b396b9e3ed782b09ff9d6e4f1683d46c83ad0d35d2e407c09a9ebbf038f88195", size = 17573, upload-time = "2026-03-29T04:39:56.805Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/be/0631a861af4d1c875f096c07d34e9a63639560a717130e7a87cbc82b7e3f/python_json_logger-4.1.0-py3-none-any.whl", hash = "sha256:132994765cf75bf44554be9aa49b06ef2345d23661a96720262716438141b6b2", size = 15021, upload-time = "2026-03-29T04:39:55.266Z" }, +] + +[[package]] +name = "pytorch-lightning" +version = "2.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fsspec", extra = ["http"] }, + { name = "lightning-utilities" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "torch" }, + { name = "torchmetrics" }, + { name = "tqdm" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8b/ac/ebd5f6f58691cbd4f73836e43e1727f3814311b960c41f88e259606ca2b2/pytorch_lightning-2.6.1.tar.gz", hash = "sha256:ba08f8901cf226fcca473046ad9346f414e99117762dc869c76e650d5b3d7bdc", size = 665563, upload-time = "2026-01-30T14:59:11.636Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/93/c8c361bf0a2fe50f828f32def460e8b8a14b93955d3fd302b1a9b63b19e4/pytorch_lightning-2.6.1-py3-none-any.whl", hash = "sha256:1f8118567ec829e3055f16cf1aa320883a86a47c836951bfd9dcfa34ec7ffd59", size = 857273, upload-time = "2026-01-30T14:59:10.141Z" }, +] + +[[package]] +name = "pytz" +version = "2026.1.post1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/56/db/b8721d71d945e6a8ac63c0fc900b2067181dbb50805958d4d4661cf7d277/pytz-2026.1.post1.tar.gz", hash = "sha256:3378dde6a0c3d26719182142c56e60c7f9af7e968076f31aae569d72a0358ee1", size = 321088, upload-time = "2026-03-03T07:47:50.683Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/99/781fe0c827be2742bcc775efefccb3b048a3a9c6ce9aec0cbf4a101677e5/pytz-2026.1.post1-py2.py3-none-any.whl", hash = "sha256:f2fd16142fda348286a75e1a524be810bb05d444e5a081f37f7affc635035f7a", size = 510489, upload-time = "2026-03-03T07:47:49.167Z" }, +] + +[[package]] +name = "pywinpty" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/54/37c7370ba91f579235049dc26cd2c5e657d2a943e01820844ffc81f32176/pywinpty-3.0.3.tar.gz", hash = "sha256:523441dc34d231fb361b4b00f8c99d3f16de02f5005fd544a0183112bcc22412", size = 31309, upload-time = "2026-02-04T21:51:09.524Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/28/a652709bd76ca7533cd1c443b03add9f5051fdf71bc6bdb8801dddd4e7a3/pywinpty-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:ff05f12d775b142b11c6fe085129bdd759b61cf7d41da6c745e78e3a1ef5bf40", size = 2114320, upload-time = "2026-02-04T21:53:50.972Z" }, + { url = "https://files.pythonhosted.org/packages/b2/13/a0181cc5c2d5635d3dbc3802b97bc8e3ad4fa7502ccef576651a5e08e54c/pywinpty-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:340ccacb4d74278a631923794ccd758471cfc8eeeeee4610b280420a17ad1e82", size = 235670, upload-time = "2026-02-04T21:50:20.324Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/a0/39350dd17dd6d6c6507025c0e53aef67a9293a6d37d3511f23ea510d5800/pyyaml-6.0.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:214ed4befebe12df36bcc8bc2b64b396ca31be9304b8f59e25c11cf94a4c033b", size = 184227, upload-time = "2025-09-25T21:31:46.04Z" }, + { url = "https://files.pythonhosted.org/packages/05/14/52d505b5c59ce73244f59c7a50ecf47093ce4765f116cdb98286a71eeca2/pyyaml-6.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02ea2dfa234451bbb8772601d7b8e426c2bfa197136796224e50e35a78777956", size = 174019, upload-time = "2025-09-25T21:31:47.706Z" }, + { url = "https://files.pythonhosted.org/packages/43/f7/0e6a5ae5599c838c696adb4e6330a59f463265bfa1e116cfd1fbb0abaaae/pyyaml-6.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b30236e45cf30d2b8e7b3e85881719e98507abed1011bf463a8fa23e9c3e98a8", size = 740646, upload-time = "2025-09-25T21:31:49.21Z" }, + { url = "https://files.pythonhosted.org/packages/2f/3a/61b9db1d28f00f8fd0ae760459a5c4bf1b941baf714e207b6eb0657d2578/pyyaml-6.0.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:66291b10affd76d76f54fad28e22e51719ef9ba22b29e1d7d03d6777a9174198", size = 840793, upload-time = "2025-09-25T21:31:50.735Z" }, + { url = "https://files.pythonhosted.org/packages/7a/1e/7acc4f0e74c4b3d9531e24739e0ab832a5edf40e64fbae1a9c01941cabd7/pyyaml-6.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9c7708761fccb9397fe64bbc0395abcae8c4bf7b0eac081e12b809bf47700d0b", size = 770293, upload-time = "2025-09-25T21:31:51.828Z" }, + { url = "https://files.pythonhosted.org/packages/8b/ef/abd085f06853af0cd59fa5f913d61a8eab65d7639ff2a658d18a25d6a89d/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:418cf3f2111bc80e0933b2cd8cd04f286338bb88bdc7bc8e6dd775ebde60b5e0", size = 732872, upload-time = "2025-09-25T21:31:53.282Z" }, + { url = "https://files.pythonhosted.org/packages/1f/15/2bc9c8faf6450a8b3c9fc5448ed869c599c0a74ba2669772b1f3a0040180/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e0b74767e5f8c593e8c9b5912019159ed0533c70051e9cce3e8b6aa699fcd69", size = 758828, upload-time = "2025-09-25T21:31:54.807Z" }, + { url = "https://files.pythonhosted.org/packages/a3/00/531e92e88c00f4333ce359e50c19b8d1de9fe8d581b1534e35ccfbc5f393/pyyaml-6.0.3-cp310-cp310-win32.whl", hash = "sha256:28c8d926f98f432f88adc23edf2e6d4921ac26fb084b028c733d01868d19007e", size = 142415, upload-time = "2025-09-25T21:31:55.885Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fa/926c003379b19fca39dd4634818b00dec6c62d87faf628d1394e137354d4/pyyaml-6.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:bdb2c67c6c1390b63c6ff89f210c8fd09d9a1217a465701eac7316313c915e4c", size = 158561, upload-time = "2025-09-25T21:31:57.406Z" }, +] + +[[package]] +name = "pyzmq" +version = "27.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "implementation_name == 'pypy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/0b/3c9baedbdf613ecaa7aa07027780b8867f57b6293b6ee50de316c9f3222b/pyzmq-27.1.0.tar.gz", hash = "sha256:ac0765e3d44455adb6ddbf4417dcce460fc40a05978c08efdf2948072f6db540", size = 281750, upload-time = "2025-09-08T23:10:18.157Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/b9/52aa9ec2867528b54f1e60846728d8b4d84726630874fee3a91e66c7df81/pyzmq-27.1.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:508e23ec9bc44c0005c4946ea013d9317ae00ac67778bd47519fdf5a0e930ff4", size = 1329850, upload-time = "2025-09-08T23:07:26.274Z" }, + { url = "https://files.pythonhosted.org/packages/99/64/5653e7b7425b169f994835a2b2abf9486264401fdef18df91ddae47ce2cc/pyzmq-27.1.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:507b6f430bdcf0ee48c0d30e734ea89ce5567fd7b8a0f0044a369c176aa44556", size = 906380, upload-time = "2025-09-08T23:07:29.78Z" }, + { url = "https://files.pythonhosted.org/packages/73/78/7d713284dbe022f6440e391bd1f3c48d9185673878034cfb3939cdf333b2/pyzmq-27.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bf7b38f9fd7b81cb6d9391b2946382c8237fd814075c6aa9c3b746d53076023b", size = 666421, upload-time = "2025-09-08T23:07:31.263Z" }, + { url = "https://files.pythonhosted.org/packages/30/76/8f099f9d6482450428b17c4d6b241281af7ce6a9de8149ca8c1c649f6792/pyzmq-27.1.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:03ff0b279b40d687691a6217c12242ee71f0fba28bf8626ff50e3ef0f4410e1e", size = 854149, upload-time = "2025-09-08T23:07:33.17Z" }, + { url = "https://files.pythonhosted.org/packages/59/f0/37fbfff06c68016019043897e4c969ceab18bde46cd2aca89821fcf4fb2e/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:677e744fee605753eac48198b15a2124016c009a11056f93807000ab11ce6526", size = 1655070, upload-time = "2025-09-08T23:07:35.205Z" }, + { url = "https://files.pythonhosted.org/packages/47/14/7254be73f7a8edc3587609554fcaa7bfd30649bf89cd260e4487ca70fdaa/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd2fec2b13137416a1c5648b7009499bcc8fea78154cd888855fa32514f3dad1", size = 2033441, upload-time = "2025-09-08T23:07:37.432Z" }, + { url = "https://files.pythonhosted.org/packages/22/dc/49f2be26c6f86f347e796a4d99b19167fc94503f0af3fd010ad262158822/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:08e90bb4b57603b84eab1d0ca05b3bbb10f60c1839dc471fc1c9e1507bef3386", size = 1891529, upload-time = "2025-09-08T23:07:39.047Z" }, + { url = "https://files.pythonhosted.org/packages/a3/3e/154fb963ae25be70c0064ce97776c937ecc7d8b0259f22858154a9999769/pyzmq-27.1.0-cp310-cp310-win32.whl", hash = "sha256:a5b42d7a0658b515319148875fcb782bbf118dd41c671b62dae33666c2213bda", size = 567276, upload-time = "2025-09-08T23:07:40.695Z" }, + { url = "https://files.pythonhosted.org/packages/62/b2/f4ab56c8c595abcb26b2be5fd9fa9e6899c1e5ad54964e93ae8bb35482be/pyzmq-27.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:c0bb87227430ee3aefcc0ade2088100e528d5d3298a0a715a64f3d04c60ba02f", size = 632208, upload-time = "2025-09-08T23:07:42.298Z" }, + { url = "https://files.pythonhosted.org/packages/3b/e3/be2cc7ab8332bdac0522fdb64c17b1b6241a795bee02e0196636ec5beb79/pyzmq-27.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:9a916f76c2ab8d045b19f2286851a38e9ac94ea91faf65bd64735924522a8b32", size = 559766, upload-time = "2025-09-08T23:07:43.869Z" }, + { url = "https://files.pythonhosted.org/packages/92/e7/038aab64a946d535901103da16b953c8c9cc9c961dadcbf3609ed6428d23/pyzmq-27.1.0-cp312-abi3-macosx_10_15_universal2.whl", hash = "sha256:452631b640340c928fa343801b0d07eb0c3789a5ffa843f6e1a9cee0ba4eb4fc", size = 1306279, upload-time = "2025-09-08T23:08:03.807Z" }, + { url = "https://files.pythonhosted.org/packages/e8/5e/c3c49fdd0f535ef45eefcc16934648e9e59dace4a37ee88fc53f6cd8e641/pyzmq-27.1.0-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1c179799b118e554b66da67d88ed66cd37a169f1f23b5d9f0a231b4e8d44a113", size = 895645, upload-time = "2025-09-08T23:08:05.301Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e5/b0b2504cb4e903a74dcf1ebae157f9e20ebb6ea76095f6cfffea28c42ecd/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3837439b7f99e60312f0c926a6ad437b067356dc2bc2ec96eb395fd0fe804233", size = 652574, upload-time = "2025-09-08T23:08:06.828Z" }, + { url = "https://files.pythonhosted.org/packages/f8/9b/c108cdb55560eaf253f0cbdb61b29971e9fb34d9c3499b0e96e4e60ed8a5/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43ad9a73e3da1fab5b0e7e13402f0b2fb934ae1c876c51d0afff0e7c052eca31", size = 840995, upload-time = "2025-09-08T23:08:08.396Z" }, + { url = "https://files.pythonhosted.org/packages/c2/bb/b79798ca177b9eb0825b4c9998c6af8cd2a7f15a6a1a4272c1d1a21d382f/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:0de3028d69d4cdc475bfe47a6128eb38d8bc0e8f4d69646adfbcd840facbac28", size = 1642070, upload-time = "2025-09-08T23:08:09.989Z" }, + { url = "https://files.pythonhosted.org/packages/9c/80/2df2e7977c4ede24c79ae39dcef3899bfc5f34d1ca7a5b24f182c9b7a9ca/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_i686.whl", hash = "sha256:cf44a7763aea9298c0aa7dbf859f87ed7012de8bda0f3977b6fb1d96745df856", size = 2021121, upload-time = "2025-09-08T23:08:11.907Z" }, + { url = "https://files.pythonhosted.org/packages/46/bd/2d45ad24f5f5ae7e8d01525eb76786fa7557136555cac7d929880519e33a/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:f30f395a9e6fbca195400ce833c731e7b64c3919aa481af4d88c3759e0cb7496", size = 1878550, upload-time = "2025-09-08T23:08:13.513Z" }, + { url = "https://files.pythonhosted.org/packages/e6/2f/104c0a3c778d7c2ab8190e9db4f62f0b6957b53c9d87db77c284b69f33ea/pyzmq-27.1.0-cp312-abi3-win32.whl", hash = "sha256:250e5436a4ba13885494412b3da5d518cd0d3a278a1ae640e113c073a5f88edd", size = 559184, upload-time = "2025-09-08T23:08:15.163Z" }, + { url = "https://files.pythonhosted.org/packages/fc/7f/a21b20d577e4100c6a41795842028235998a643b1ad406a6d4163ea8f53e/pyzmq-27.1.0-cp312-abi3-win_amd64.whl", hash = "sha256:9ce490cf1d2ca2ad84733aa1d69ce6855372cb5ce9223802450c9b2a7cba0ccf", size = 619480, upload-time = "2025-09-08T23:08:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/78/c2/c012beae5f76b72f007a9e91ee9401cb88c51d0f83c6257a03e785c81cc2/pyzmq-27.1.0-cp312-abi3-win_arm64.whl", hash = "sha256:75a2f36223f0d535a0c919e23615fc85a1e23b71f40c7eb43d7b1dedb4d8f15f", size = 552993, upload-time = "2025-09-08T23:08:18.926Z" }, + { url = "https://files.pythonhosted.org/packages/f3/81/a65e71c1552f74dec9dff91d95bafb6e0d33338a8dfefbc88aa562a20c92/pyzmq-27.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:c17e03cbc9312bee223864f1a2b13a99522e0dc9f7c5df0177cd45210ac286e6", size = 836266, upload-time = "2025-09-08T23:09:40.048Z" }, + { url = "https://files.pythonhosted.org/packages/58/ed/0202ca350f4f2b69faa95c6d931e3c05c3a397c184cacb84cb4f8f42f287/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:f328d01128373cb6763823b2b4e7f73bdf767834268c565151eacb3b7a392f90", size = 800206, upload-time = "2025-09-08T23:09:41.902Z" }, + { url = "https://files.pythonhosted.org/packages/47/42/1ff831fa87fe8f0a840ddb399054ca0009605d820e2b44ea43114f5459f4/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9c1790386614232e1b3a40a958454bdd42c6d1811837b15ddbb052a032a43f62", size = 567747, upload-time = "2025-09-08T23:09:43.741Z" }, + { url = "https://files.pythonhosted.org/packages/d1/db/5c4d6807434751e3f21231bee98109aa57b9b9b55e058e450d0aef59b70f/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:448f9cb54eb0cee4732b46584f2710c8bc178b0e5371d9e4fc8125201e413a74", size = 747371, upload-time = "2025-09-08T23:09:45.575Z" }, + { url = "https://files.pythonhosted.org/packages/26/af/78ce193dbf03567eb8c0dc30e3df2b9e56f12a670bf7eb20f9fb532c7e8a/pyzmq-27.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:05b12f2d32112bf8c95ef2e74ec4f1d4beb01f8b5e703b38537f8849f92cb9ba", size = 544862, upload-time = "2025-09-08T23:09:47.448Z" }, +] + +[[package]] +name = "rasterio" +version = "1.4.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "affine" }, + { name = "attrs" }, + { name = "certifi" }, + { name = "click" }, + { name = "click-plugins" }, + { name = "cligj" }, + { name = "numpy" }, + { name = "pyparsing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/fa/fce8dc9f09e5bc6520b6fc1b4ecfa510af9ca06eb42ad7bdff9c9b8989d0/rasterio-1.4.4.tar.gz", hash = "sha256:c95424e2c7f009b8f7df1095d645c52895cd332c0c2e1b4c2e073ea28b930320", size = 445004, upload-time = "2025-12-12T18:01:08.971Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/24/eedb9dfed1706c696b4f43ba9b85e830ce332f4f57ffcb7b6a4c4e66ade9/rasterio-1.4.4-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:35401e84d4d0b239bd62b33d4ee68d7bb13b47c3b41078f4aad7ad7964e61c73", size = 21127567, upload-time = "2025-12-12T17:58:42.664Z" }, + { url = "https://files.pythonhosted.org/packages/67/5f/482a24bf75bcd48236cd223d037f22abc6c08da6961e390e6a35249a9f58/rasterio-1.4.4-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:1f17fc9608b6b6666894a04e0118d3329e831a6347bc3650584d247a9d476fdd", size = 25735929, upload-time = "2025-12-12T17:58:46.503Z" }, + { url = "https://files.pythonhosted.org/packages/b0/da/b988ffb1bb37cc4cb8a028447ab654a16dbac0b339d977fb9c8adc5bd995/rasterio-1.4.4-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:1f0edb8cb30ff8f5be341583f69c115b7c36ad52bbbe7582345d32af115bc6b3", size = 34040467, upload-time = "2025-12-12T17:58:50.109Z" }, + { url = "https://files.pythonhosted.org/packages/e0/0a/2eace22e990203d47a8fed4b174b87be50281bf3f5b2509cf3700036cbcc/rasterio-1.4.4-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:5197da0e3dd09907bdb343717a49e8fb5229ffdbff0e583b874959ec41fa9558", size = 35339947, upload-time = "2025-12-12T17:58:53.269Z" }, + { url = "https://files.pythonhosted.org/packages/40/e5/16acecbbaedd820c5d71f99f3bab73c00455078a414b511f6854364d3e1e/rasterio-1.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:15109134c7b4770e6aeb8d45dc52c2603824805ba734323268a44f5a81756a7a", size = 25708679, upload-time = "2025-12-12T17:58:56.661Z" }, +] + +[[package]] +name = "rdkit" +version = "2024.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "pillow" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/54/acd8657fbf77af4ed1f773e6eb14b75b3840e8e9a665439101c0491fa9ed/rdkit-2024.3.5-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:1cb7cdb29956649d4c875790b94142868c08c0735dee4d90b2d70dfd378e9d2e", size = 29505991, upload-time = "2024-08-07T12:34:25.607Z" }, + { url = "https://files.pythonhosted.org/packages/08/79/ac7e30471b4cbe465aa9b9bcb5a64018df55464e37777f696682199bc65b/rdkit-2024.3.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e5b0dfb28aa0949152ff816fba0a2f6267154f5c25159a9ec84c27cf18f72322", size = 27453273, upload-time = "2024-08-07T12:34:31.391Z" }, + { url = "https://files.pythonhosted.org/packages/b5/52/71b8946c1cf3d1bea6a09d7e2ea7acb783d34886af4666cb10bd791cdb4d/rdkit-2024.3.5-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:7d5576bad6672959d0c1939e8d7e2fcd8656f8daf9788ce58e5c313db719b5ec", size = 32195237, upload-time = "2024-08-07T12:34:37.116Z" }, + { url = "https://files.pythonhosted.org/packages/f6/39/e625b5c132f174a5c1446b1373235bfc290224baedfed28b4d515fbdfdb5/rdkit-2024.3.5-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:455d510beff8806e62e48b977d7acbfbc351474fa132124738a07223440c1b9a", size = 33133359, upload-time = "2024-08-07T12:34:42.266Z" }, + { url = "https://files.pythonhosted.org/packages/37/ea/5d988d278405cfa44e4ccd32a252b880e9ce36e25707d5715e7e02d7b4de/rdkit-2024.3.5-cp310-cp310-win_amd64.whl", hash = "sha256:01fd323f5902a720925293c0ce08a33e630422374cf263d04ef173c106c63c36", size = 21730123, upload-time = "2024-08-07T12:34:46.979Z" }, +] + +[[package]] +name = "referencing" +version = "0.37.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "rpds-py" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" }, +] + +[[package]] +name = "requests" +version = "2.33.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5f/a4/98b9c7c6428a668bf7e42ebb7c79d576a1c3c1e3ae2d47e674b468388871/requests-2.33.1.tar.gz", hash = "sha256:18817f8c57c6263968bc123d237e3b8b08ac046f5456bd1e307ee8f4250d3517", size = 134120, upload-time = "2026-03-30T16:09:15.531Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/8e/7540e8a2036f79a125c1d2ebadf69ed7901608859186c856fa0388ef4197/requests-2.33.1-py3-none-any.whl", hash = "sha256:4e6d1ef462f3626a1f0a0a9c42dd93c63bad33f9f1c1937509b8c5c8718ab56a", size = 64947, upload-time = "2026-03-30T16:09:13.83Z" }, +] + +[[package]] +name = "requests-oauthlib" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "oauthlib" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650, upload-time = "2024-03-22T20:32:29.939Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179, upload-time = "2024-03-22T20:32:28.055Z" }, +] + +[[package]] +name = "rfc3339-validator" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/ea/a9387748e2d111c3c2b275ba970b735e04e15cdb1eb30693b6b5708c4dbd/rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b", size = 5513, upload-time = "2021-05-12T16:37:54.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa", size = 3490, upload-time = "2021-05-12T16:37:52.536Z" }, +] + +[[package]] +name = "rfc3986-validator" +version = "0.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/88/f270de456dd7d11dcc808abfa291ecdd3f45ff44e3b549ffa01b126464d0/rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055", size = 6760, upload-time = "2019-10-28T16:00:19.144Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9", size = 4242, upload-time = "2019-10-28T16:00:13.976Z" }, +] + +[[package]] +name = "rfc3987-syntax" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "lark" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2c/06/37c1a5557acf449e8e406a830a05bf885ac47d33270aec454ef78675008d/rfc3987_syntax-1.1.0.tar.gz", hash = "sha256:717a62cbf33cffdd16dfa3a497d81ce48a660ea691b1ddd7be710c22f00b4a0d", size = 14239, upload-time = "2025-07-18T01:05:05.015Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/71/44ce230e1b7fadd372515a97e32a83011f906ddded8d03e3c6aafbdedbb7/rfc3987_syntax-1.1.0-py3-none-any.whl", hash = "sha256:6c3d97604e4c5ce9f714898e05401a0445a641cfa276432b0a648c80856f6a3f", size = 8046, upload-time = "2025-07-18T01:05:03.843Z" }, +] + +[[package]] +name = "rich" +version = "15.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" }, +] + +[[package]] +name = "rpds-py" +version = "0.30.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/06/0c/0c411a0ec64ccb6d104dcabe0e713e05e153a9a2c3c2bd2b32ce412166fe/rpds_py-0.30.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:679ae98e00c0e8d68a7fda324e16b90fd5260945b45d3b824c892cec9eea3288", size = 370490, upload-time = "2025-11-30T20:21:33.256Z" }, + { url = "https://files.pythonhosted.org/packages/19/6a/4ba3d0fb7297ebae71171822554abe48d7cab29c28b8f9f2c04b79988c05/rpds_py-0.30.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4cc2206b76b4f576934f0ed374b10d7ca5f457858b157ca52064bdfc26b9fc00", size = 359751, upload-time = "2025-11-30T20:21:34.591Z" }, + { url = "https://files.pythonhosted.org/packages/cd/7c/e4933565ef7f7a0818985d87c15d9d273f1a649afa6a52ea35ad011195ea/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:389a2d49eded1896c3d48b0136ead37c48e221b391c052fba3f4055c367f60a6", size = 389696, upload-time = "2025-11-30T20:21:36.122Z" }, + { url = "https://files.pythonhosted.org/packages/5e/01/6271a2511ad0815f00f7ed4390cf2567bec1d4b1da39e2c27a41e6e3b4de/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:32c8528634e1bf7121f3de08fa85b138f4e0dc47657866630611b03967f041d7", size = 403136, upload-time = "2025-11-30T20:21:37.728Z" }, + { url = "https://files.pythonhosted.org/packages/55/64/c857eb7cd7541e9b4eee9d49c196e833128a55b89a9850a9c9ac33ccf897/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f207f69853edd6f6700b86efb84999651baf3789e78a466431df1331608e5324", size = 524699, upload-time = "2025-11-30T20:21:38.92Z" }, + { url = "https://files.pythonhosted.org/packages/9c/ed/94816543404078af9ab26159c44f9e98e20fe47e2126d5d32c9d9948d10a/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:67b02ec25ba7a9e8fa74c63b6ca44cf5707f2fbfadae3ee8e7494297d56aa9df", size = 412022, upload-time = "2025-11-30T20:21:40.407Z" }, + { url = "https://files.pythonhosted.org/packages/61/b5/707f6cf0066a6412aacc11d17920ea2e19e5b2f04081c64526eb35b5c6e7/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0e95f6819a19965ff420f65578bacb0b00f251fefe2c8b23347c37174271f3", size = 390522, upload-time = "2025-11-30T20:21:42.17Z" }, + { url = "https://files.pythonhosted.org/packages/13/4e/57a85fda37a229ff4226f8cbcf09f2a455d1ed20e802ce5b2b4a7f5ed053/rpds_py-0.30.0-cp310-cp310-manylinux_2_31_riscv64.whl", hash = "sha256:a452763cc5198f2f98898eb98f7569649fe5da666c2dc6b5ddb10fde5a574221", size = 404579, upload-time = "2025-11-30T20:21:43.769Z" }, + { url = "https://files.pythonhosted.org/packages/f9/da/c9339293513ec680a721e0e16bf2bac3db6e5d7e922488de471308349bba/rpds_py-0.30.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e0b65193a413ccc930671c55153a03ee57cecb49e6227204b04fae512eb657a7", size = 421305, upload-time = "2025-11-30T20:21:44.994Z" }, + { url = "https://files.pythonhosted.org/packages/f9/be/522cb84751114f4ad9d822ff5a1aa3c98006341895d5f084779b99596e5c/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:858738e9c32147f78b3ac24dc0edb6610000e56dc0f700fd5f651d0a0f0eb9ff", size = 572503, upload-time = "2025-11-30T20:21:46.91Z" }, + { url = "https://files.pythonhosted.org/packages/a2/9b/de879f7e7ceddc973ea6e4629e9b380213a6938a249e94b0cdbcc325bb66/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:da279aa314f00acbb803da1e76fa18666778e8a8f83484fba94526da5de2cba7", size = 598322, upload-time = "2025-11-30T20:21:48.709Z" }, + { url = "https://files.pythonhosted.org/packages/48/ac/f01fc22efec3f37d8a914fc1b2fb9bcafd56a299edbe96406f3053edea5a/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7c64d38fb49b6cdeda16ab49e35fe0da2e1e9b34bc38bd78386530f218b37139", size = 560792, upload-time = "2025-11-30T20:21:50.024Z" }, + { url = "https://files.pythonhosted.org/packages/e2/da/4e2b19d0f131f35b6146425f846563d0ce036763e38913d917187307a671/rpds_py-0.30.0-cp310-cp310-win32.whl", hash = "sha256:6de2a32a1665b93233cde140ff8b3467bdb9e2af2b91079f0333a0974d12d464", size = 221901, upload-time = "2025-11-30T20:21:51.32Z" }, + { url = "https://files.pythonhosted.org/packages/96/cb/156d7a5cf4f78a7cc571465d8aec7a3c447c94f6749c5123f08438bcf7bc/rpds_py-0.30.0-cp310-cp310-win_amd64.whl", hash = "sha256:1726859cd0de969f88dc8673bdd954185b9104e05806be64bcd87badbe313169", size = 235823, upload-time = "2025-11-30T20:21:52.505Z" }, +] + +[[package]] +name = "ruff" +version = "0.15.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/8d/192f3d7103816158dfd5ea50d098ef2aec19194e6cbccd4b3485bdb2eb2d/ruff-0.15.11.tar.gz", hash = "sha256:f092b21708bf0e7437ce9ada249dfe688ff9a0954fc94abab05dcea7dcd29c33", size = 4637264, upload-time = "2026-04-16T18:46:26.58Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/1e/6aca3427f751295ab011828e15e9bf452200ac74484f1db4be0197b8170b/ruff-0.15.11-py3-none-linux_armv6l.whl", hash = "sha256:e927cfff503135c558eb581a0c9792264aae9507904eb27809cdcff2f2c847b7", size = 10607943, upload-time = "2026-04-16T18:46:05.967Z" }, + { url = "https://files.pythonhosted.org/packages/e7/26/1341c262e74f36d4e84f3d6f4df0ac68cd53331a66bfc5080daa17c84c0b/ruff-0.15.11-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:7a1b5b2938d8f890b76084d4fa843604d787a912541eae85fd7e233398bbb73e", size = 10988592, upload-time = "2026-04-16T18:46:00.742Z" }, + { url = "https://files.pythonhosted.org/packages/03/71/850b1d6ffa9564fbb6740429bad53df1094082fe515c8c1e74b6d8d05f18/ruff-0.15.11-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d4176f3d194afbdaee6e41b9ccb1a2c287dba8700047df474abfbe773825d1cb", size = 10338501, upload-time = "2026-04-16T18:46:03.723Z" }, + { url = "https://files.pythonhosted.org/packages/f2/11/cc1284d3e298c45a817a6aadb6c3e1d70b45c9b36d8d9cce3387b495a03a/ruff-0.15.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b17c886fb88203ced3afe7f14e8d5ae96e9d2f4ccc0ee66aa19f2c2675a27e4", size = 10670693, upload-time = "2026-04-16T18:46:41.941Z" }, + { url = "https://files.pythonhosted.org/packages/ce/9e/f8288b034ab72b371513c13f9a41d9ba3effac54e24bfb467b007daee2ca/ruff-0.15.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:49fafa220220afe7758a487b048de4c8f9f767f37dfefad46b9dd06759d003eb", size = 10416177, upload-time = "2026-04-16T18:46:21.717Z" }, + { url = "https://files.pythonhosted.org/packages/85/71/504d79abfd3d92532ba6bbe3d1c19fada03e494332a59e37c7c2dabae427/ruff-0.15.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2ab8427e74a00d93b8bda1307b1e60970d40f304af38bccb218e056c220120d", size = 11221886, upload-time = "2026-04-16T18:46:15.086Z" }, + { url = "https://files.pythonhosted.org/packages/43/5a/947e6ab7a5ad603d65b474be15a4cbc6d29832db5d762cd142e4e3a74164/ruff-0.15.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:195072c0c8e1fc8f940652073df082e37a5d9cb43b4ab1e4d0566ab8977a13b7", size = 12075183, upload-time = "2026-04-16T18:46:07.944Z" }, + { url = "https://files.pythonhosted.org/packages/9f/a1/0b7bb6268775fdd3a0818aee8efd8f5b4e231d24dd4d528ced2534023182/ruff-0.15.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a3a0996d486af3920dec930a2e7daed4847dfc12649b537a9335585ada163e9e", size = 11516575, upload-time = "2026-04-16T18:46:31.687Z" }, + { url = "https://files.pythonhosted.org/packages/30/c3/bb5168fc4d233cc06e95f482770d0f3c87945a0cd9f614b90ea8dc2f2833/ruff-0.15.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bef2cb556d509259f1fe440bb9cd33c756222cf0a7afe90d15edf0866702431", size = 11306537, upload-time = "2026-04-16T18:46:36.988Z" }, + { url = "https://files.pythonhosted.org/packages/e4/92/4cfae6441f3967317946f3b788136eecf093729b94d6561f963ed810c82e/ruff-0.15.11-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:030d921a836d7d4a12cf6e8d984a88b66094ccb0e0f17ddd55067c331191bf19", size = 11296813, upload-time = "2026-04-16T18:46:24.182Z" }, + { url = "https://files.pythonhosted.org/packages/43/26/972784c5dde8313acde8ac71ba8ac65475b85db4a2352a76c9934361f9bc/ruff-0.15.11-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:0e783b599b4577788dbbb66b9addcef87e9a8832f4ce0c19e34bf55543a2f890", size = 10633136, upload-time = "2026-04-16T18:46:39.802Z" }, + { url = "https://files.pythonhosted.org/packages/5b/53/3985a4f185020c2f367f2e08a103032e12564829742a1b417980ce1514a0/ruff-0.15.11-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:ae90592246625ba4a34349d68ec28d4400d75182b71baa196ddb9f82db025ef5", size = 10424701, upload-time = "2026-04-16T18:46:10.381Z" }, + { url = "https://files.pythonhosted.org/packages/d3/57/bf0dfb32241b56c83bb663a826133da4bf17f682ba8c096973065f6e6a68/ruff-0.15.11-py3-none-musllinux_1_2_i686.whl", hash = "sha256:1f111d62e3c983ed20e0ca2e800f8d77433a5b1161947df99a5c2a3fb60514f0", size = 10873887, upload-time = "2026-04-16T18:46:29.157Z" }, + { url = "https://files.pythonhosted.org/packages/02/05/e48076b2a57dc33ee8c7a957296f97c744ca891a8ffb4ffb1aaa3b3f517d/ruff-0.15.11-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:06f483d6646f59eaffba9ae30956370d3a886625f511a3108994000480621d1c", size = 11404316, upload-time = "2026-04-16T18:46:19.462Z" }, + { url = "https://files.pythonhosted.org/packages/88/27/0195d15fe7a897cbcba0904792c4b7c9fdd958456c3a17d2ea6093716a9a/ruff-0.15.11-py3-none-win32.whl", hash = "sha256:476a2aa56b7da0b73a3ee80b6b2f0e19cce544245479adde7baa65466664d5f3", size = 10655535, upload-time = "2026-04-16T18:46:12.47Z" }, + { url = "https://files.pythonhosted.org/packages/3a/5e/c927b325bd4c1d3620211a4b96f47864633199feed60fa936025ab27e090/ruff-0.15.11-py3-none-win_amd64.whl", hash = "sha256:8b6756d88d7e234fb0c98c91511aae3cd519d5e3ed271cae31b20f39cb2a12a3", size = 11779692, upload-time = "2026-04-16T18:46:17.268Z" }, + { url = "https://files.pythonhosted.org/packages/63/b6/aeadee5443e49baa2facd51131159fd6301cc4ccfc1541e4df7b021c37dd/ruff-0.15.11-py3-none-win_arm64.whl", hash = "sha256:063fed18cc1bbe0ee7393957284a6fe8b588c6a406a285af3ee3f46da2391ee4", size = 11032614, upload-time = "2026-04-16T18:46:34.487Z" }, +] + +[[package]] +name = "scikit-learn" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c9/fa/8e158d81e3602da1e7bafbd4987938bc003fe4b0f44d65681e7f8face95a/scikit-learn-1.2.2.tar.gz", hash = "sha256:8429aea30ec24e7a8c7ed8a3fa6213adf3814a6efbea09e16e0a0c71e1a1a3d7", size = 7269934, upload-time = "2023-03-09T09:57:57.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/21/ee21352f69a980614cb4193d68a64a83aa2c0f80183c9485d6d61821a922/scikit_learn-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:99cc01184e347de485bf253d19fcb3b1a3fb0ee4cea5ee3c43ec0cc429b6d29f", size = 9107257, upload-time = "2023-03-09T09:57:10.488Z" }, + { url = "https://files.pythonhosted.org/packages/5a/43/5c4d21217df6a033999ee531fdfd52809263727b4afb26f7196a8ec709ae/scikit_learn-1.2.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:e6e574db9914afcb4e11ade84fab084536a895ca60aadea3041e85b8ac963edb", size = 8455656, upload-time = "2023-03-09T09:57:13.131Z" }, + { url = "https://files.pythonhosted.org/packages/48/92/a39d1c9e0a6cb5ed4112899ecca590138484356ba8c4274dde6c3893ff14/scikit_learn-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fe83b676f407f00afa388dd1fdd49e5c6612e551ed84f3b1b182858f09e987d", size = 9165302, upload-time = "2023-03-09T09:57:15.336Z" }, + { url = "https://files.pythonhosted.org/packages/fa/1e/36d7609e84b50d4a2e5bc43cd5013d9ea885799e5813a1e9cf5bb1afd3f4/scikit_learn-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e2642baa0ad1e8f8188917423dd73994bf25429f8893ddbe115be3ca3183584", size = 9625294, upload-time = "2023-03-09T09:57:17.519Z" }, + { url = "https://files.pythonhosted.org/packages/f4/4d/fe3b35e18407da4b386be58616bd0f941ea1762a6c6798267f3aa64ef5d5/scikit_learn-1.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ad66c3848c0a1ec13464b2a95d0a484fd5b02ce74268eaa7e0c697b904f31d6c", size = 8306029, upload-time = "2023-03-09T09:57:19.64Z" }, +] + +[[package]] +name = "scipy" +version = "1.15.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0f/37/6964b830433e654ec7485e45a00fc9a27cf868d622838f6b6d9c5ec0d532/scipy-1.15.3.tar.gz", hash = "sha256:eae3cf522bc7df64b42cad3925c876e1b0b6c35c1337c93e12c0f366f55b0eaf", size = 59419214, upload-time = "2025-05-08T16:13:05.955Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/2f/4966032c5f8cc7e6a60f1b2e0ad686293b9474b65246b0c642e3ef3badd0/scipy-1.15.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a345928c86d535060c9c2b25e71e87c39ab2f22fc96e9636bd74d1dbf9de448c", size = 38702770, upload-time = "2025-05-08T16:04:20.849Z" }, + { url = "https://files.pythonhosted.org/packages/a0/6e/0c3bf90fae0e910c274db43304ebe25a6b391327f3f10b5dcc638c090795/scipy-1.15.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:ad3432cb0f9ed87477a8d97f03b763fd1d57709f1bbde3c9369b1dff5503b253", size = 30094511, upload-time = "2025-05-08T16:04:27.103Z" }, + { url = "https://files.pythonhosted.org/packages/ea/b1/4deb37252311c1acff7f101f6453f0440794f51b6eacb1aad4459a134081/scipy-1.15.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:aef683a9ae6eb00728a542b796f52a5477b78252edede72b8327a886ab63293f", size = 22368151, upload-time = "2025-05-08T16:04:31.731Z" }, + { url = "https://files.pythonhosted.org/packages/38/7d/f457626e3cd3c29b3a49ca115a304cebb8cc6f31b04678f03b216899d3c6/scipy-1.15.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:1c832e1bd78dea67d5c16f786681b28dd695a8cb1fb90af2e27580d3d0967e92", size = 25121732, upload-time = "2025-05-08T16:04:36.596Z" }, + { url = "https://files.pythonhosted.org/packages/db/0a/92b1de4a7adc7a15dcf5bddc6e191f6f29ee663b30511ce20467ef9b82e4/scipy-1.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:263961f658ce2165bbd7b99fa5135195c3a12d9bef045345016b8b50c315cb82", size = 35547617, upload-time = "2025-05-08T16:04:43.546Z" }, + { url = "https://files.pythonhosted.org/packages/8e/6d/41991e503e51fc1134502694c5fa7a1671501a17ffa12716a4a9151af3df/scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2abc762b0811e09a0d3258abee2d98e0c703eee49464ce0069590846f31d40", size = 37662964, upload-time = "2025-05-08T16:04:49.431Z" }, + { url = "https://files.pythonhosted.org/packages/25/e1/3df8f83cb15f3500478c889be8fb18700813b95e9e087328230b98d547ff/scipy-1.15.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed7284b21a7a0c8f1b6e5977ac05396c0d008b89e05498c8b7e8f4a1423bba0e", size = 37238749, upload-time = "2025-05-08T16:04:55.215Z" }, + { url = "https://files.pythonhosted.org/packages/93/3e/b3257cf446f2a3533ed7809757039016b74cd6f38271de91682aa844cfc5/scipy-1.15.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5380741e53df2c566f4d234b100a484b420af85deb39ea35a1cc1be84ff53a5c", size = 40022383, upload-time = "2025-05-08T16:05:01.914Z" }, + { url = "https://files.pythonhosted.org/packages/d1/84/55bc4881973d3f79b479a5a2e2df61c8c9a04fcb986a213ac9c02cfb659b/scipy-1.15.3-cp310-cp310-win_amd64.whl", hash = "sha256:9d61e97b186a57350f6d6fd72640f9e99d5a4a2b8fbf4b9ee9a841eab327dc13", size = 41259201, upload-time = "2025-05-08T16:05:08.166Z" }, +] + +[[package]] +name = "seaborn" +version = "0.13.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "pandas" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/86/59/a451d7420a77ab0b98f7affa3a1d78a313d2f7281a57afb1a34bae8ab412/seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7", size = 1457696, upload-time = "2024-01-25T13:21:52.551Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/11/00d3c3dfc25ad54e731d91449895a79e4bf2384dc3ac01809010ba88f6d5/seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987", size = 294914, upload-time = "2024-01-25T13:21:49.598Z" }, +] + +[[package]] +name = "send2trash" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c5/f0/184b4b5f8d00f2a92cf96eec8967a3d550b52cf94362dad1100df9e48d57/send2trash-2.1.0.tar.gz", hash = "sha256:1c72b39f09457db3c05ce1d19158c2cbef4c32b8bedd02c155e49282b7ea7459", size = 17255, upload-time = "2026-01-14T06:27:36.056Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/78/504fdd027da3b84ff1aecd9f6957e65f35134534ccc6da8628eb71e76d3f/send2trash-2.1.0-py3-none-any.whl", hash = "sha256:0da2f112e6d6bb22de6aa6daa7e144831a4febf2a87261451c4ad849fe9a873c", size = 17610, upload-time = "2026-01-14T06:27:35.218Z" }, +] + +[[package]] +name = "setuptools" +version = "82.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4f/db/cfac1baf10650ab4d1c111714410d2fbb77ac5a616db26775db562c8fab2/setuptools-82.0.1.tar.gz", hash = "sha256:7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9", size = 1152316, upload-time = "2026-03-09T12:47:17.221Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" }, +] + +[[package]] +name = "shapely" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4d/bc/0989043118a27cccb4e906a46b7565ce36ca7b57f5a18b78f4f1b0f72d9d/shapely-2.1.2.tar.gz", hash = "sha256:2ed4ecb28320a433db18a5bf029986aa8afcfd740745e78847e330d5d94922a9", size = 315489, upload-time = "2025-09-24T13:51:41.432Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/89/c3548aa9b9812a5d143986764dededfa48d817714e947398bdda87c77a72/shapely-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7ae48c236c0324b4e139bea88a306a04ca630f49be66741b340729d380d8f52f", size = 1825959, upload-time = "2025-09-24T13:50:00.682Z" }, + { url = "https://files.pythonhosted.org/packages/ce/8a/7ebc947080442edd614ceebe0ce2cdbd00c25e832c240e1d1de61d0e6b38/shapely-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eba6710407f1daa8e7602c347dfc94adc02205ec27ed956346190d66579eb9ea", size = 1629196, upload-time = "2025-09-24T13:50:03.447Z" }, + { url = "https://files.pythonhosted.org/packages/c8/86/c9c27881c20d00fc409e7e059de569d5ed0abfcec9c49548b124ebddea51/shapely-2.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ef4a456cc8b7b3d50ccec29642aa4aeda959e9da2fe9540a92754770d5f0cf1f", size = 2951065, upload-time = "2025-09-24T13:50:05.266Z" }, + { url = "https://files.pythonhosted.org/packages/50/8a/0ab1f7433a2a85d9e9aea5b1fbb333f3b09b309e7817309250b4b7b2cc7a/shapely-2.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e38a190442aacc67ff9f75ce60aec04893041f16f97d242209106d502486a142", size = 3058666, upload-time = "2025-09-24T13:50:06.872Z" }, + { url = "https://files.pythonhosted.org/packages/bb/c6/5a30ffac9c4f3ffd5b7113a7f5299ccec4713acd5ee44039778a7698224e/shapely-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:40d784101f5d06a1fd30b55fc11ea58a61be23f930d934d86f19a180909908a4", size = 3966905, upload-time = "2025-09-24T13:50:09.417Z" }, + { url = "https://files.pythonhosted.org/packages/9c/72/e92f3035ba43e53959007f928315a68fbcf2eeb4e5ededb6f0dc7ff1ecc3/shapely-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f6f6cd5819c50d9bcf921882784586aab34a4bd53e7553e175dece6db513a6f0", size = 4129260, upload-time = "2025-09-24T13:50:11.183Z" }, + { url = "https://files.pythonhosted.org/packages/42/24/605901b73a3d9f65fa958e63c9211f4be23d584da8a1a7487382fac7fdc5/shapely-2.1.2-cp310-cp310-win32.whl", hash = "sha256:fe9627c39c59e553c90f5bc3128252cb85dc3b3be8189710666d2f8bc3a5503e", size = 1544301, upload-time = "2025-09-24T13:50:12.521Z" }, + { url = "https://files.pythonhosted.org/packages/e1/89/6db795b8dd3919851856bd2ddd13ce434a748072f6fdee42ff30cbd3afa3/shapely-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:1d0bfb4b8f661b3b4ec3565fa36c340bfb1cda82087199711f86a88647d26b2f", size = 1722074, upload-time = "2025-09-24T13:50:13.909Z" }, +] + +[[package]] +name = "simplejson" +version = "3.20.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f4/a1ac5ed32f7ed9a088d62a59d410d4c204b3b3815722e2ccfb491fa8251b/simplejson-3.20.2.tar.gz", hash = "sha256:5fe7a6ce14d1c300d80d08695b7f7e633de6cd72c80644021874d985b3393649", size = 85784, upload-time = "2025-09-26T16:29:36.64Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/09/2bf3761de89ea2d91bdce6cf107dcd858892d0adc22c995684878826cc6b/simplejson-3.20.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6d7286dc11af60a2f76eafb0c2acde2d997e87890e37e24590bb513bec9f1bc5", size = 94039, upload-time = "2025-09-26T16:27:29.283Z" }, + { url = "https://files.pythonhosted.org/packages/0f/33/c3277db8931f0ae9e54b9292668863365672d90fb0f632f4cf9829cb7d68/simplejson-3.20.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c01379b4861c3b0aa40cba8d44f2b448f5743999aa68aaa5d3ef7049d4a28a2d", size = 75894, upload-time = "2025-09-26T16:27:30.378Z" }, + { url = "https://files.pythonhosted.org/packages/fa/ea/ae47b04d03c7c8a7b7b1a8b39a6e27c3bd424e52f4988d70aca6293ff5e5/simplejson-3.20.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a16b029ca25645b3bc44e84a4f941efa51bf93c180b31bd704ce6349d1fc77c1", size = 76116, upload-time = "2025-09-26T16:27:31.42Z" }, + { url = "https://files.pythonhosted.org/packages/4b/42/6c9af551e5a8d0f171d6dce3d9d1260068927f7b80f1f09834e07887c8c4/simplejson-3.20.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e22a5fb7b1437ffb057e02e1936a3bfb19084ae9d221ec5e9f4cf85f69946b6", size = 138827, upload-time = "2025-09-26T16:27:32.486Z" }, + { url = "https://files.pythonhosted.org/packages/2b/22/5e268bbcbe9f75577491e406ec0a5536f5b2fa91a3b52031fea51cd83e1d/simplejson-3.20.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d8b6ff02fc7b8555c906c24735908854819b0d0dc85883d453e23ca4c0445d01", size = 146772, upload-time = "2025-09-26T16:27:34.036Z" }, + { url = "https://files.pythonhosted.org/packages/71/b4/800f14728e2ad666f420dfdb57697ca128aeae7f991b35759c09356b829a/simplejson-3.20.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2bfc1c396ad972ba4431130b42307b2321dba14d988580c1ac421ec6a6b7cee3", size = 134497, upload-time = "2025-09-26T16:27:35.211Z" }, + { url = "https://files.pythonhosted.org/packages/c1/b9/c54eef4226c6ac8e9a389bbe5b21fef116768f97a2dc1a683c716ffe66ef/simplejson-3.20.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a97249ee1aee005d891b5a211faf58092a309f3d9d440bc269043b08f662eda", size = 138172, upload-time = "2025-09-26T16:27:36.44Z" }, + { url = "https://files.pythonhosted.org/packages/09/36/4e282f5211b34620f1b2e4b51d9ddaab5af82219b9b7b78360a33f7e5387/simplejson-3.20.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f1036be00b5edaddbddbb89c0f80ed229714a941cfd21e51386dc69c237201c2", size = 140272, upload-time = "2025-09-26T16:27:37.605Z" }, + { url = "https://files.pythonhosted.org/packages/aa/b0/94ad2cf32f477c449e1f63c863d8a513e2408d651c4e58fe4b6a7434e168/simplejson-3.20.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5d6f5bacb8cdee64946b45f2680afa3f54cd38e62471ceda89f777693aeca4e4", size = 140468, upload-time = "2025-09-26T16:27:39.015Z" }, + { url = "https://files.pythonhosted.org/packages/e5/46/827731e4163be3f987cb8ee90f5d444161db8f540b5e735355faa098d9bc/simplejson-3.20.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8db6841fb796ec5af632f677abf21c6425a1ebea0d9ac3ef1a340b8dc69f52b8", size = 148700, upload-time = "2025-09-26T16:27:40.171Z" }, + { url = "https://files.pythonhosted.org/packages/c7/28/c32121064b1ec2fb7b5d872d9a1abda62df064d35e0160eddfa907118343/simplejson-3.20.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c0a341f7cc2aae82ee2b31f8a827fd2e51d09626f8b3accc441a6907c88aedb7", size = 141323, upload-time = "2025-09-26T16:27:41.324Z" }, + { url = "https://files.pythonhosted.org/packages/46/b6/c897c54326fe86dd12d101981171a49361949f4728294f418c3b86a1af77/simplejson-3.20.2-cp310-cp310-win32.whl", hash = "sha256:27f9c01a6bc581d32ab026f515226864576da05ef322d7fc141cd8a15a95ce53", size = 74377, upload-time = "2025-09-26T16:27:42.533Z" }, + { url = "https://files.pythonhosted.org/packages/ad/87/a6e03d4d80cca99c1fee4e960f3440e2f21be9470e537970f960ca5547f1/simplejson-3.20.2-cp310-cp310-win_amd64.whl", hash = "sha256:c0a63ec98a4547ff366871bf832a7367ee43d047bcec0b07b66c794e2137b476", size = 76081, upload-time = "2025-09-26T16:27:43.945Z" }, + { url = "https://files.pythonhosted.org/packages/05/5b/83e1ff87eb60ca706972f7e02e15c0b33396e7bdbd080069a5d1b53cf0d8/simplejson-3.20.2-py3-none-any.whl", hash = "sha256:3b6bb7fb96efd673eac2e4235200bfffdc2353ad12c54117e1e4e2fc485ac017", size = 57309, upload-time = "2025-09-26T16:29:35.312Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "snowballstemmer" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/75/a7/9810d872919697c9d01295633f5d574fb416d47e535f258272ca1f01f447/snowballstemmer-3.0.1.tar.gz", hash = "sha256:6d5eeeec8e9f84d4d56b847692bacf79bc2c8e90c7f80ca4444ff8b6f2e52895", size = 105575, upload-time = "2025-05-09T16:34:51.843Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/78/3565d011c61f5a43488987ee32b6f3f656e7f107ac2782dd57bdd7d91d9a/snowballstemmer-3.0.1-py3-none-any.whl", hash = "sha256:6cd7b3897da8d6c9ffb968a6781fa6532dce9c3618a4b127d920dab764a19064", size = 103274, upload-time = "2025-05-09T16:34:50.371Z" }, +] + +[[package]] +name = "soupsieve" +version = "2.8.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7b/ae/2d9c981590ed9999a0d91755b47fc74f74de286b0f5cee14c9269041e6c4/soupsieve-2.8.3.tar.gz", hash = "sha256:3267f1eeea4251fb42728b6dfb746edc9acaffc4a45b27e19450b676586e8349", size = 118627, upload-time = "2026-01-20T04:27:02.457Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/2c/1462b1d0a634697ae9e55b3cecdcb64788e8b7d63f54d923fcd0bb140aed/soupsieve-2.8.3-py3-none-any.whl", hash = "sha256:ed64f2ba4eebeab06cc4962affce381647455978ffc1e36bb79a545b91f45a95", size = 37016, upload-time = "2026-01-20T04:27:01.012Z" }, +] + +[[package]] +name = "sphinx" +version = "8.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alabaster" }, + { name = "babel" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "docutils" }, + { name = "imagesize" }, + { name = "jinja2" }, + { name = "packaging" }, + { name = "pygments" }, + { name = "requests" }, + { name = "snowballstemmer" }, + { name = "sphinxcontrib-applehelp" }, + { name = "sphinxcontrib-devhelp" }, + { name = "sphinxcontrib-htmlhelp" }, + { name = "sphinxcontrib-jsmath" }, + { name = "sphinxcontrib-qthelp" }, + { name = "sphinxcontrib-serializinghtml" }, + { name = "tomli" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/be0b61178fe2cdcb67e2a92fc9ebb488e3c51c4f74a36a7824c0adf23425/sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927", size = 8184611, upload-time = "2024-10-13T20:27:13.93Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2", size = 3487125, upload-time = "2024-10-13T20:27:10.448Z" }, +] + +[[package]] +name = "sphinx-rtd-theme" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docutils" }, + { name = "sphinx" }, + { name = "sphinxcontrib-jquery" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/84/68/a1bfbf38c0f7bccc9b10bbf76b94606f64acb1552ae394f0b8285bfaea25/sphinx_rtd_theme-3.1.0.tar.gz", hash = "sha256:b44276f2c276e909239a4f6c955aa667aaafeb78597923b1c60babc76db78e4c", size = 7620915, upload-time = "2026-01-12T16:03:31.17Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/c7/b5c8015d823bfda1a346adb2c634a2101d50bb75d421eb6dcb31acd25ebc/sphinx_rtd_theme-3.1.0-py2.py3-none-any.whl", hash = "sha256:1785824ae8e6632060490f67cf3a72d404a85d2d9fc26bce3619944de5682b89", size = 7655617, upload-time = "2026-01-12T16:03:28.101Z" }, +] + +[[package]] +name = "sphinxcontrib-applehelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ba/6e/b837e84a1a704953c62ef8776d45c3e8d759876b4a84fe14eba2859106fe/sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1", size = 20053, upload-time = "2024-07-29T01:09:00.465Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5", size = 119300, upload-time = "2024-07-29T01:08:58.99Z" }, +] + +[[package]] +name = "sphinxcontrib-devhelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/d2/5beee64d3e4e747f316bae86b55943f51e82bb86ecd325883ef65741e7da/sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad", size = 12967, upload-time = "2024-07-29T01:09:23.417Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2", size = 82530, upload-time = "2024-07-29T01:09:21.945Z" }, +] + +[[package]] +name = "sphinxcontrib-htmlhelp" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/93/983afd9aa001e5201eab16b5a444ed5b9b0a7a010541e0ddfbbfd0b2470c/sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9", size = 22617, upload-time = "2024-07-29T01:09:37.889Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8", size = 98705, upload-time = "2024-07-29T01:09:36.407Z" }, +] + +[[package]] +name = "sphinxcontrib-jquery" +version = "4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "sphinx" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/de/f3/aa67467e051df70a6330fe7770894b3e4f09436dea6881ae0b4f3d87cad8/sphinxcontrib-jquery-4.1.tar.gz", hash = "sha256:1620739f04e36a2c779f1a131a2dfd49b2fd07351bf1968ced074365933abc7a", size = 122331, upload-time = "2023-03-14T15:01:01.944Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/85/749bd22d1a68db7291c89e2ebca53f4306c3f205853cf31e9de279034c3c/sphinxcontrib_jquery-4.1-py2.py3-none-any.whl", hash = "sha256:f936030d7d0147dd026a4f2b5a57343d233f1fc7b363f68b3d4f1cb0993878ae", size = 121104, upload-time = "2023-03-14T15:01:00.356Z" }, +] + +[[package]] +name = "sphinxcontrib-jsmath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/e8/9ed3830aeed71f17c026a07a5097edcf44b692850ef215b161b8ad875729/sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8", size = 5787, upload-time = "2019-01-21T16:10:16.347Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178", size = 5071, upload-time = "2019-01-21T16:10:14.333Z" }, +] + +[[package]] +name = "sphinxcontrib-qthelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/68/bc/9104308fc285eb3e0b31b67688235db556cd5b0ef31d96f30e45f2e51cae/sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab", size = 17165, upload-time = "2024-07-29T01:09:56.435Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb", size = 88743, upload-time = "2024-07-29T01:09:54.885Z" }, +] + +[[package]] +name = "sphinxcontrib-serializinghtml" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3b/44/6716b257b0aa6bfd51a1b31665d1c205fb12cb5ad56de752dfa15657de2f/sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d", size = 16080, upload-time = "2024-07-29T01:10:09.332Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331", size = 92072, upload-time = "2024-07-29T01:10:08.203Z" }, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.49" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "greenlet", marker = "platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64'" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/09/45/461788f35e0364a8da7bda51a1fe1b09762d0c32f12f63727998d85a873b/sqlalchemy-2.0.49.tar.gz", hash = "sha256:d15950a57a210e36dd4cec1aac22787e2a4d57ba9318233e2ef8b2daf9ff2d5f", size = 9898221, upload-time = "2026-04-03T16:38:11.704Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/96/76/f908955139842c362aa877848f42f9249642d5b69e06cee9eae5111da1bd/sqlalchemy-2.0.49-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:42e8804962f9e6f4be2cbaedc0c3718f08f60a16910fa3d86da5a1e3b1bfe60f", size = 2159321, upload-time = "2026-04-03T16:50:11.8Z" }, + { url = "https://files.pythonhosted.org/packages/24/e2/17ba0b7bfbd8de67196889b6d951de269e8a46057d92baca162889beb16d/sqlalchemy-2.0.49-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc992c6ed024c8c3c592c5fc9846a03dd68a425674900c70122c77ea16c5fb0b", size = 3238937, upload-time = "2026-04-03T16:54:45.731Z" }, + { url = "https://files.pythonhosted.org/packages/90/1e/410dd499c039deacff395eec01a9da057125fcd0c97e3badc252c6a2d6a7/sqlalchemy-2.0.49-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6eb188b84269f357669b62cb576b5b918de10fb7c728a005fa0ebb0b758adce1", size = 3237188, upload-time = "2026-04-03T16:56:53.217Z" }, + { url = "https://files.pythonhosted.org/packages/ab/06/e797a8b98a3993ac4bc785309b9b6d005457fc70238ee6cefa7c8867a92e/sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:62557958002b69699bdb7f5137c6714ca1133f045f97b3903964f47db97ea339", size = 3190061, upload-time = "2026-04-03T16:54:47.489Z" }, + { url = "https://files.pythonhosted.org/packages/44/d3/5a9f7ef580af1031184b38235da6ac58c3b571df01c9ec061c44b2b0c5a6/sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da9b91bca419dc9b9267ffadde24eae9b1a6bffcd09d0a207e5e3af99a03ce0d", size = 3211477, upload-time = "2026-04-03T16:56:55.056Z" }, + { url = "https://files.pythonhosted.org/packages/69/ec/7be8c8cb35f038e963a203e4fe5a028989167cc7299927b7cf297c271e37/sqlalchemy-2.0.49-cp310-cp310-win32.whl", hash = "sha256:5e61abbec255be7b122aa461021daa7c3f310f3e743411a67079f9b3cc91ece3", size = 2119965, upload-time = "2026-04-03T17:00:50.009Z" }, + { url = "https://files.pythonhosted.org/packages/b5/31/0defb93e3a10b0cf7d1271aedd87251a08c3a597ee4f353281769b547b5a/sqlalchemy-2.0.49-cp310-cp310-win_amd64.whl", hash = "sha256:0c98c59075b890df8abfcc6ad632879540f5791c68baebacb4f833713b510e75", size = 2142935, upload-time = "2026-04-03T17:00:51.675Z" }, + { url = "https://files.pythonhosted.org/packages/e5/30/8519fdde58a7bdf155b714359791ad1dc018b47d60269d5d160d311fdc36/sqlalchemy-2.0.49-py3-none-any.whl", hash = "sha256:ec44cfa7ef1a728e88ad41674de50f6db8cfdb3e2af84af86e0041aaf02d43d0", size = 1942158, upload-time = "2026-04-03T16:53:44.135Z" }, +] + +[[package]] +name = "stack-data" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asttokens" }, + { name = "executing" }, + { name = "pure-eval" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707, upload-time = "2023-09-30T13:58:05.479Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload-time = "2023-09-30T13:58:03.53Z" }, +] + +[[package]] +name = "swagger-spec-validator" +version = "3.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-resources" }, + { name = "jsonschema" }, + { name = "pyyaml" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e7/e9/d0a4a1e4ed6b4b805d5465affaeaa2d91ae08a8aae966f4bb7402e23ee37/swagger_spec_validator-3.0.4.tar.gz", hash = "sha256:637ac6d865270bfcd07df24605548e6e1f1d9c39adcfd855da37fa3fdebfed4b", size = 22355, upload-time = "2024-06-27T17:43:05.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/ac/31ba87a959b19e640ebc18851438b82b5b66cef02ad31da7468d1d8bd625/swagger_spec_validator-3.0.4-py2.py3-none-any.whl", hash = "sha256:1a2a4f4f7076479ae7835d892dd53952ccca9414efa172c440c775cf0ac01f48", size = 28473, upload-time = "2024-06-27T17:43:00.546Z" }, +] + +[[package]] +name = "sympy" +version = "1.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz", hash = "sha256:d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517", size = 7793921, upload-time = "2025-04-27T18:05:01.611Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl", hash = "sha256:e091cc3e99d2141a0ba2847328f5479b05d94a6635cb96148ccb3f34671bd8f5", size = 6299353, upload-time = "2025-04-27T18:04:59.103Z" }, +] + +[[package]] +name = "tabulate" +version = "0.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/58/8c37dea7bbf769b20d58e7ace7e5edfe65b849442b00ffcdd56be88697c6/tabulate-0.10.0.tar.gz", hash = "sha256:e2cfde8f79420f6deeffdeda9aaec3b6bc5abce947655d17ac662b126e48a60d", size = 91754, upload-time = "2026-03-04T18:55:34.402Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/99/55/db07de81b5c630da5cbf5c7df646580ca26dfaefa593667fc6f2fe016d2e/tabulate-0.10.0-py3-none-any.whl", hash = "sha256:f0b0622e567335c8fabaaa659f1b33bcb6ddfe2e496071b743aa113f8774f2d3", size = 39814, upload-time = "2026-03-04T18:55:31.284Z" }, +] + +[[package]] +name = "tensorboard" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "google-auth" }, + { name = "google-auth-oauthlib" }, + { name = "grpcio" }, + { name = "markdown" }, + { name = "numpy" }, + { name = "protobuf" }, + { name = "requests" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard-data-server" }, + { name = "werkzeug" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/a2/66ed644f6ed1562e0285fcd959af17670ea313c8f331c46f79ee77187eb9/tensorboard-2.14.1-py3-none-any.whl", hash = "sha256:3db108fb58f023b6439880e177743c5f1e703e9eeb5fb7d597871f949f85fd58", size = 5508920, upload-time = "2023-09-27T23:37:16.71Z" }, +] + +[[package]] +name = "tensorboard-data-server" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/13/e503968fefabd4c6b2650af21e110aa8466fe21432cd7c43a84577a89438/tensorboard_data_server-0.7.2-py3-none-any.whl", hash = "sha256:7e0610d205889588983836ec05dc098e80f97b7e7bbff7e994ebb78f578d0ddb", size = 2356, upload-time = "2023-10-23T21:23:32.16Z" }, + { url = "https://files.pythonhosted.org/packages/b7/85/dabeaf902892922777492e1d253bb7e1264cadce3cea932f7ff599e53fea/tensorboard_data_server-0.7.2-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:9fe5d24221b29625dbc7328b0436ca7fc1c23de4acf4d272f1180856e32f9f60", size = 4823598, upload-time = "2023-10-23T21:23:33.714Z" }, + { url = "https://files.pythonhosted.org/packages/73/c6/825dab04195756cf8ff2e12698f22513b3db2f64925bdd41671bfb33aaa5/tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:ef687163c24185ae9754ed5650eb5bc4d84ff257aabdc33f0cc6f74d8ba54530", size = 6590363, upload-time = "2023-10-23T21:23:35.583Z" }, +] + +[[package]] +name = "tensorflow" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/c9/222613c717658bbd7114966aa74d2e54440e59bf3648353d62d83ea75bdf/tensorflow-2.14.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:f6e9ac1e53db30f1759148f731f87b9d12da5ce0f153fc49406824efd486aae7", size = 229650235, upload-time = "2023-11-14T18:56:58.236Z" }, + { url = "https://files.pythonhosted.org/packages/87/58/d2fba754da2ab0f35818ab12484e5306b87e0fbd4a8e7dd4eb50bd3abaa3/tensorflow-2.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:7156bf1f7311dada7dba5345b526a38e6f4e4f4b8509bee162a24342bf6571b2", size = 2103, upload-time = "2023-11-14T18:58:35.953Z" }, + { url = "https://files.pythonhosted.org/packages/29/ff/44c46db0b42b10d284493a7942b8f3bb0257ce6537010ae0b27a6a86fd67/tensorflow-2.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5781aadad5b46e2de4e373b0ca15a852b90d58982270a6db02ec52e4986316d", size = 2116, upload-time = "2023-11-14T19:02:37.01Z" }, + { url = "https://files.pythonhosted.org/packages/99/77/4f31cd29cab69ebc344a529df48b91a14543a83b6fb90efbf82db29a34be/tensorflow-2.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a955c42164eff4d751732c1274ca4bf059db60c9e2362098ce1eed7177c3fe9", size = 489862117, upload-time = "2023-11-14T18:59:35.918Z" }, + { url = "https://files.pythonhosted.org/packages/df/84/0a67b7ad368b597fa4fc60e2ae2f0fbe9c527c6fe5dbf290236a459fe4a6/tensorflow-2.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:4be5f4327a6e854f64b4dcfd08a51c5fc7cc3fea8c76c5bf5c0c3deb002d5221", size = 2094, upload-time = "2023-11-14T19:01:35.345Z" }, +] + +[[package]] +name = "tensorflow-cpu" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/4f/ea/acd6d4c6a23de999e7fbb20d68eefa65d395df7ae16249294a02dd1772d5/tensorflow_cpu-2.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97f63588962997f2816031578450f747468f9441b17f5bbf352fc93adecc2051", size = 198216087, upload-time = "2023-11-14T19:00:57.579Z" }, +] + +[[package]] +name = "tensorflow-estimator" +version = "2.14.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/da/4f264c196325bb6e37a6285caec5b12a03def489b57cc1fdac02bb6272cd/tensorflow_estimator-2.14.0-py2.py3-none-any.whl", hash = "sha256:820bf57c24aa631abb1bbe4371739ed77edb11361d61381fd8e790115ac0fd57", size = 440664, upload-time = "2023-09-11T18:41:50.481Z" }, +] + +[[package]] +name = "tensorflow-io-gcs-filesystem" +version = "0.37.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/a3/12d7e7326a707919b321e2d6e4c88eb61596457940fd2b8ff3e9b7fac8a7/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:249c12b830165841411ba71e08215d0e94277a49c551e6dd5d72aab54fe5491b", size = 2470224, upload-time = "2024-07-01T23:44:15.341Z" }, + { url = "https://files.pythonhosted.org/packages/1c/55/3849a188cc15e58fefde20e9524d124a629a67a06b4dc0f6c881cb3c6e39/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:257aab23470a0796978efc9c2bcf8b0bc80f22e6298612a4c0a50d3f4e88060c", size = 3479613, upload-time = "2024-07-01T23:44:17.445Z" }, + { url = "https://files.pythonhosted.org/packages/e2/19/9095c69e22c879cb3896321e676c69273a549a3148c4f62aa4bc5ebdb20f/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8febbfcc67c61e542a5ac1a98c7c20a91a5e1afc2e14b1ef0cb7c28bc3b6aa70", size = 4842078, upload-time = "2024-07-01T23:44:18.977Z" }, + { url = "https://files.pythonhosted.org/packages/f3/48/47b7d25572961a48b1de3729b7a11e835b888e41e0203cca82df95d23b91/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9679b36e3a80921876f31685ab6f7270f3411a4cc51bc2847e80d0e4b5291e27", size = 5085736, upload-time = "2024-07-01T23:44:21.034Z" }, +] + +[[package]] +name = "tensorflow-macos" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/e7/d6ef26155d86bd46432a844da8913402c570e5dd32f09050d483eab70896/tensorflow_macos-2.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:5b9832df0852fa534cbd3362b6e00ba1c9d4b541fdfd987d0bba3927229435bc", size = 199676024, upload-time = "2023-11-14T19:49:08.102Z" }, +] + +[[package]] +name = "tensorflow-metal" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, + { name = "wheel" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/21/cac4d1f8fda8a30f631a60a7669ca1de2665189e060604a5e8f96a145ba6/tensorflow_metal-1.1.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:443d71b3a567fe3f45f982c4794d357b55dec01a4ff1d6d8ba152a68a2c018ab", size = 1424879, upload-time = "2023-09-29T23:36:23.591Z" }, +] + +[[package]] +name = "termcolor" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/79/cf31d7a93a8fdc6aa0fbb665be84426a8c5a557d9240b6239e9e11e35fc5/termcolor-3.3.0.tar.gz", hash = "sha256:348871ca648ec6a9a983a13ab626c0acce02f515b9e1983332b17af7979521c5", size = 14434, upload-time = "2025-12-29T12:55:21.882Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/d1/8bb87d21e9aeb323cc03034f5eaf2c8f69841e40e4853c2627edf8111ed3/termcolor-3.3.0-py3-none-any.whl", hash = "sha256:cf642efadaf0a8ebbbf4bc7a31cec2f9b5f21a9f726f4ccbb08192c9c26f43a5", size = 7734, upload-time = "2025-12-29T12:55:20.718Z" }, +] + +[[package]] +name = "terminado" +version = "0.18.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess", marker = "os_name != 'nt'" }, + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "tornado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/11/965c6fd8e5cc254f1fe142d547387da17a8ebfd75a3455f637c663fb38a0/terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e", size = 32701, upload-time = "2024-03-12T14:34:39.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0", size = 14154, upload-time = "2024-03-12T14:34:36.569Z" }, +] + +[[package]] +name = "threadpoolctl" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/4d/08c89e34946fce2aec4fbb45c9016efd5f4d7f24af8e5d93296e935631d8/threadpoolctl-3.6.0.tar.gz", hash = "sha256:8ab8b4aa3491d812b623328249fab5302a68d2d71745c8a4c719a2fcaba9f44e", size = 21274, upload-time = "2025-03-13T13:49:23.031Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl", hash = "sha256:43a0b8fd5a2928500110039e43a5eed8480b918967083ea48dc3ab9f13c4a7fb", size = 18638, upload-time = "2025-03-13T13:49:21.846Z" }, +] + +[[package]] +name = "tinycss2" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "webencodings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/fd/7a5ee21fd08ff70d3d33a5781c255cbe779659bd03278feb98b19ee550f4/tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7", size = 87085, upload-time = "2024-10-24T14:58:29.895Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289", size = 26610, upload-time = "2024-10-24T14:58:28.029Z" }, +] + +[[package]] +name = "tomli" +version = "2.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/22/de/48c59722572767841493b26183a0d1cc411d54fd759c5607c4590b6563a6/tomli-2.4.1.tar.gz", hash = "sha256:7c7e1a961a0b2f2472c1ac5b69affa0ae1132c39adcb67aba98568702b9cc23f", size = 17543, upload-time = "2026-03-25T20:22:03.828Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/61/cceae43728b7de99d9b847560c262873a1f6c98202171fd5ed62640b494b/tomli-2.4.1-py3-none-any.whl", hash = "sha256:0d85819802132122da43cb86656f8d1f8c6587d54ae7dcaf30e90533028b49fe", size = 14583, upload-time = "2026-03-25T20:22:03.012Z" }, +] + +[[package]] +name = "torch" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "networkx" }, + { name = "nvidia-cublas-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-cupti-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "sympy" }, + { name = "triton", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "typing-extensions" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/f1/13137340776dd5d5bcfd2574c9c6dfcc7618285035cd77240496e5c1a79b/torch-2.1.2-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:3a871edd6c02dae77ad810335c0833391c1a4ce49af21ea8cf0f6a5d2096eea8", size = 670178687, upload-time = "2023-12-14T21:46:00.348Z" }, + { url = "https://files.pythonhosted.org/packages/ca/dc/7817c6a2ff8f4f74255c7a11b285e5dff04f2a72f538fda647842ef87829/torch-2.1.2-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:bef6996c27d8f6e92ea4e13a772d89611da0e103b48790de78131e308cf73076", size = 84139460, upload-time = "2023-12-14T21:48:31.773Z" }, + { url = "https://files.pythonhosted.org/packages/16/bf/2ba0f0f7c07b9a14c027e181e44c58824e13f7352607ed32db18321599a2/torch-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:0e13034fd5fb323cbbc29e56d0637a3791e50dd589616f40c79adfa36a5a35a1", size = 192322127, upload-time = "2023-12-14T21:48:14.92Z" }, + { url = "https://files.pythonhosted.org/packages/a3/40/649c233606c2c7be8f90e452ebf5cf1db229127ac552b6b5260d0826e611/torch-2.1.2-cp310-none-macosx_10_9_x86_64.whl", hash = "sha256:d9b535cad0df3d13997dbe8bd68ac33e0e3ae5377639c9881948e40794a61403", size = 146996411, upload-time = "2023-12-14T21:48:42.748Z" }, + { url = "https://files.pythonhosted.org/packages/e3/43/ea958505875b22961e1277587f66b79f9e1f9d97d7998850ed089ae0d0bd/torch-2.1.2-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:f9a55d55af02826ebfbadf4e9b682f0f27766bc33df8236b48d28d705587868f", size = 59569021, upload-time = "2023-12-14T21:49:11.957Z" }, +] + +[[package]] +name = "torch-geometric" +version = "2.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "numpy" }, + { name = "psutil" }, + { name = "pyparsing" }, + { name = "requests" }, + { name = "tqdm" }, + { name = "xxhash" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/75/63/b210152635902da7fe79fcdd16517fae108f457a0ed22c737e702a9afbae/torch_geometric-2.7.0.tar.gz", hash = "sha256:f9099e4aece1a9f618c84dbaac33a77f43139736698c7e8bddf3301ef1f2e8d4", size = 876725, upload-time = "2025-10-15T20:48:03.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/d3/4dffd7300500465e0b4a2ae917dcb2ce771de0b9a772670365799a27c024/torch_geometric-2.7.0-py3-none-any.whl", hash = "sha256:6e0cd3ad824d484651ef5d308fc66c687bfcf5ba040d56d1e0fe0f81f365e292", size = 1275346, upload-time = "2025-10-15T20:48:01.949Z" }, +] + +[[package]] +name = "torchdata" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests" }, + { name = "torch" }, + { name = "urllib3" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/97/6f8f2384d9efb2d1bb6966b5300852d704f4943656360e9352e3cc3358b8/torchdata-0.7.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:042db39edbc961c50a36c45b89aea4b099858140c13746c7cc7a87b1cc219d0c", size = 1801802, upload-time = "2023-11-15T17:09:19.271Z" }, + { url = "https://files.pythonhosted.org/packages/0f/45/7c4674a8a4ac83f0e130d0991d61ff96a231656112bb7c50618d77ab0a8f/torchdata-0.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2d2c8482313dd52652caff99dc530433d898a12bb80bc33a0a4d1680d63272e0", size = 4815667, upload-time = "2023-11-15T17:08:43.478Z" }, + { url = "https://files.pythonhosted.org/packages/39/18/6f0d33df4b9fe4d44a779c2c7cc7cb042535a336f051bb0e5b5387844ee6/torchdata-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eed10b1f9265b30161a8cd129a96cfc7da202cfc70acf8b6a21fd29e18274ca3", size = 4657548, upload-time = "2023-11-15T17:09:00.144Z" }, + { url = "https://files.pythonhosted.org/packages/0e/06/0c916f27ef9f5a566b555f07c82c94fb9277fcabe0fcbf4dfe4505dcb28a/torchdata-0.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:36c591d0910ede6a496d4fccd389f27e7bccabf8b6a8722712ecf28b98bda8ae", size = 1330841, upload-time = "2023-11-15T17:09:14.414Z" }, + { url = "https://files.pythonhosted.org/packages/e2/c8/34eda2bd6beb8a11c06cf905db74092bdbc3dec51a48f4f22cc474866a0a/torchdata-0.7.1-py3-none-any.whl", hash = "sha256:9f9476a26987d90fa3f87cb09ec82b78ce6031ddcaa91851c9fa9f732a987ab8", size = 184418, upload-time = "2023-11-15T17:09:10.159Z" }, +] + +[[package]] +name = "torchmetrics" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "lightning-utilities" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "torch" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/81/34/39b8b749333db56c0585d7a11fa62a283c087bb1dfc897d69fb8cedbefb1/torchmetrics-1.9.0.tar.gz", hash = "sha256:a488609948600df52d3db4fcdab02e62aab2a85ef34da67037dc3e65b8512faa", size = 581765, upload-time = "2026-03-09T17:41:22.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c3/a2/c7f6ebf546f8f644edf0f999aa98ece106986a77a7b922316bf6414ff825/torchmetrics-1.9.0-py3-none-any.whl", hash = "sha256:bfdcbff3dd1d96b3374bb2496eb39f23c4b28b8a845b6a18c313688e0d2d9ca1", size = 983384, upload-time = "2026-03-09T17:41:19.756Z" }, +] + +[[package]] +name = "tornado" +version = "6.5.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/f1/3173dfa4a18db4a9b03e5d55325559dab51ee653763bb8745a75af491286/tornado-6.5.5.tar.gz", hash = "sha256:192b8f3ea91bd7f1f50c06955416ed76c6b72f96779b962f07f911b91e8d30e9", size = 516006, upload-time = "2026-03-10T21:31:02.067Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/59/8c/77f5097695f4dd8255ecbd08b2a1ed8ba8b953d337804dd7080f199e12bf/tornado-6.5.5-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:487dc9cc380e29f58c7ab88f9e27cdeef04b2140862e5076a66fb6bb68bb1bfa", size = 445983, upload-time = "2026-03-10T21:30:44.28Z" }, + { url = "https://files.pythonhosted.org/packages/ab/5e/7625b76cd10f98f1516c36ce0346de62061156352353ef2da44e5c21523c/tornado-6.5.5-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:65a7f1d46d4bb41df1ac99f5fcb685fb25c7e61613742d5108b010975a9a6521", size = 444246, upload-time = "2026-03-10T21:30:46.571Z" }, + { url = "https://files.pythonhosted.org/packages/b2/04/7b5705d5b3c0fab088f434f9c83edac1573830ca49ccf29fb83bf7178eec/tornado-6.5.5-cp39-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:e74c92e8e65086b338fd56333fb9a68b9f6f2fe7ad532645a290a464bcf46be5", size = 447229, upload-time = "2026-03-10T21:30:48.273Z" }, + { url = "https://files.pythonhosted.org/packages/34/01/74e034a30ef59afb4097ef8659515e96a39d910b712a89af76f5e4e1f93c/tornado-6.5.5-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:435319e9e340276428bbdb4e7fa732c2d399386d1de5686cb331ec8eee754f07", size = 448192, upload-time = "2026-03-10T21:30:51.22Z" }, + { url = "https://files.pythonhosted.org/packages/be/00/fe9e02c5a96429fce1a1d15a517f5d8444f9c412e0bb9eadfbe3b0fc55bf/tornado-6.5.5-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:3f54aa540bdbfee7b9eb268ead60e7d199de5021facd276819c193c0fb28ea4e", size = 448039, upload-time = "2026-03-10T21:30:53.52Z" }, + { url = "https://files.pythonhosted.org/packages/82/9e/656ee4cec0398b1d18d0f1eb6372c41c6b889722641d84948351ae19556d/tornado-6.5.5-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:36abed1754faeb80fbd6e64db2758091e1320f6bba74a4cf8c09cd18ccce8aca", size = 447445, upload-time = "2026-03-10T21:30:55.541Z" }, + { url = "https://files.pythonhosted.org/packages/5a/76/4921c00511f88af86a33de770d64141170f1cfd9c00311aea689949e274e/tornado-6.5.5-cp39-abi3-win32.whl", hash = "sha256:dd3eafaaeec1c7f2f8fdcd5f964e8907ad788fe8a5a32c4426fbbdda621223b7", size = 448582, upload-time = "2026-03-10T21:30:57.142Z" }, + { url = "https://files.pythonhosted.org/packages/2c/23/f6c6112a04d28eed765e374435fb1a9198f73e1ec4b4024184f21faeb1ad/tornado-6.5.5-cp39-abi3-win_amd64.whl", hash = "sha256:6443a794ba961a9f619b1ae926a2e900ac20c34483eea67be4ed8f1e58d3ef7b", size = 448990, upload-time = "2026-03-10T21:30:58.857Z" }, + { url = "https://files.pythonhosted.org/packages/b7/c8/876602cbc96469911f0939f703453c1157b0c826ecb05bdd32e023397d4e/tornado-6.5.5-cp39-abi3-win_arm64.whl", hash = "sha256:2c9a876e094109333f888539ddb2de4361743e5d21eece20688e3e351e4990a6", size = 448016, upload-time = "2026-03-10T21:31:00.43Z" }, +] + +[[package]] +name = "tqdm" +version = "4.67.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/09/a9/6ba95a270c6f1fbcd8dac228323f2777d886cb206987444e4bce66338dd4/tqdm-4.67.3.tar.gz", hash = "sha256:7d825f03f89244ef73f1d4ce193cb1774a8179fd96f31d7e1dcde62092b960bb", size = 169598, upload-time = "2026-02-03T17:35:53.048Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/16/e1/3079a9ff9b8e11b846c6ac5c8b5bfb7ff225eee721825310c91b3b50304f/tqdm-4.67.3-py3-none-any.whl", hash = "sha256:ee1e4c0e59148062281c49d80b25b67771a127c85fc9676d3be5f243206826bf", size = 78374, upload-time = "2026-02-03T17:35:50.982Z" }, +] + +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621, upload-time = "2024-04-19T11:11:49.746Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359, upload-time = "2024-04-19T11:11:46.763Z" }, +] + +[[package]] +name = "triton" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/22/91a8af421c8a8902dde76e6ef3db01b258af16c53d81e8c0d0dc13900a9e/triton-2.1.0-0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:66439923a30d5d48399b08a9eae10370f6c261a5ec864a64983bae63152d39d7", size = 89215103, upload-time = "2023-09-01T07:26:13.625Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, +] + +[[package]] +name = "tzdata" +version = "2026.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/19/f5/cd531b2d15a671a40c0f66cf06bc3570a12cd56eef98960068ebbad1bf5a/tzdata-2026.1.tar.gz", hash = "sha256:67658a1903c75917309e753fdc349ac0efd8c27db7a0cb406a25be4840f87f98", size = 197639, upload-time = "2026-04-03T11:25:22.002Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/70/d460bd685a170790ec89317e9bd33047988e4bce507b831f5db771e142de/tzdata-2026.1-py2.py3-none-any.whl", hash = "sha256:4b1d2be7ac37ceafd7327b961aa3a54e467efbdb563a23655fbfe0d39cfc42a9", size = 348952, upload-time = "2026-04-03T11:25:20.313Z" }, +] + +[[package]] +name = "umap-learn" +version = "0.5.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numba" }, + { name = "numpy" }, + { name = "pynndescent" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/d4/9ed627905f7993349671283b3c5bf2d9f543ef79229fa1c7e01324eb900c/umap-learn-0.5.7.tar.gz", hash = "sha256:b2a97973e4c6ffcebf241100a8de589a4c84126a832ab40f296c6d9fcc5eb19e", size = 92680, upload-time = "2024-10-28T18:05:57.093Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/8f/671c0e1f2572ba625cbcc1faeba9435e00330c3d6962858711445cf1e817/umap_learn-0.5.7-py3-none-any.whl", hash = "sha256:6a7e0be2facfa365a5ed6588447102bdbef32a0ef449535c25c97ea7e680073c", size = 88815, upload-time = "2024-10-28T18:05:55.333Z" }, +] + +[[package]] +name = "uri-template" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/31/c7/0336f2bd0bcbada6ccef7aaa25e443c118a704f828a0620c6fa0207c1b64/uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7", size = 21678, upload-time = "2023-06-21T01:49:05.374Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363", size = 11140, upload-time = "2023-06-21T01:49:03.467Z" }, +] + +[[package]] +name = "urllib3" +version = "2.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, +] + +[[package]] +name = "wcwidth" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/a2/8e3becb46433538a38726c948d3399905a4c7cabd0df578ede5dc51f0ec2/wcwidth-0.6.0.tar.gz", hash = "sha256:cdc4e4262d6ef9a1a57e018384cbeb1208d8abbc64176027e2c2455c81313159", size = 159684, upload-time = "2026-02-06T19:19:40.919Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/5a/199c59e0a824a3db2b89c5d2dade7ab5f9624dbf6448dc291b46d5ec94d3/wcwidth-0.6.0-py3-none-any.whl", hash = "sha256:1a3a1e510b553315f8e146c54764f4fb6264ffad731b3d78088cdb1478ffbdad", size = 94189, upload-time = "2026-02-06T19:19:39.646Z" }, +] + +[[package]] +name = "webcolors" +version = "25.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/7a/eb316761ec35664ea5174709a68bbd3389de60d4a1ebab8808bfc264ed67/webcolors-25.10.0.tar.gz", hash = "sha256:62abae86504f66d0f6364c2a8520de4a0c47b80c03fc3a5f1815fedbef7c19bf", size = 53491, upload-time = "2025-10-31T07:51:03.977Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/cc/e097523dd85c9cf5d354f78310927f1656c422bd7b2613b2db3e3f9a0f2c/webcolors-25.10.0-py3-none-any.whl", hash = "sha256:032c727334856fc0b968f63daa252a1ac93d33db2f5267756623c210e57a4f1d", size = 14905, upload-time = "2025-10-31T07:51:01.778Z" }, +] + +[[package]] +name = "webencodings" +version = "0.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923", size = 9721, upload-time = "2017-04-05T20:21:34.189Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78", size = 11774, upload-time = "2017-04-05T20:21:32.581Z" }, +] + +[[package]] +name = "websocket-client" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2c/41/aa4bf9664e4cda14c3b39865b12251e8e7d239f4cd0e3cc1b6c2ccde25c1/websocket_client-1.9.0.tar.gz", hash = "sha256:9e813624b6eb619999a97dc7958469217c3176312b3a16a4bd1bc7e08a46ec98", size = 70576, upload-time = "2025-10-07T21:16:36.495Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl", hash = "sha256:af248a825037ef591efbf6ed20cc5faa03d3b47b9e5a2230a529eeee1c1fc3ef", size = 82616, upload-time = "2025-10-07T21:16:34.951Z" }, +] + +[[package]] +name = "werkzeug" +version = "3.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/dd/b2/381be8cfdee792dd117872481b6e378f85c957dd7c5bca38897b08f765fd/werkzeug-3.1.8.tar.gz", hash = "sha256:9bad61a4268dac112f1c5cd4630a56ede601b6ed420300677a869083d70a4c44", size = 875852, upload-time = "2026-04-02T18:49:14.268Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/8c/2e650f2afeb7ee576912636c23ddb621c91ac6a98e66dc8d29c3c69446e1/werkzeug-3.1.8-py3-none-any.whl", hash = "sha256:63a77fb8892bf28ebc3178683445222aa500e48ebad5ec77b0ad80f8726b1f50", size = 226459, upload-time = "2026-04-02T18:49:12.72Z" }, +] + +[[package]] +name = "wheel" +version = "0.46.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/89/24/a2eb353a6edac9a0303977c4cb048134959dd2a51b48a269dfc9dde00c8a/wheel-0.46.3.tar.gz", hash = "sha256:e3e79874b07d776c40bd6033f8ddf76a7dad46a7b8aa1b2787a83083519a1803", size = 60605, upload-time = "2026-01-22T12:39:49.136Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/22/b76d483683216dde3d67cba61fb2444be8d5be289bf628c13fc0fd90e5f9/wheel-0.46.3-py3-none-any.whl", hash = "sha256:4b399d56c9d9338230118d705d9737a2a468ccca63d5e813e2a4fc7815d8bc4d", size = 30557, upload-time = "2026-01-22T12:39:48.099Z" }, +] + +[[package]] +name = "widgetsnbextension" +version = "4.0.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/f4/c67440c7fb409a71b7404b7aefcd7569a9c0d6bd071299bf4198ae7a5d95/widgetsnbextension-4.0.15.tar.gz", hash = "sha256:de8610639996f1567952d763a5a41af8af37f2575a41f9852a38f947eb82a3b9", size = 1097402, upload-time = "2025-11-01T21:15:55.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/0e/fa3b193432cfc60c93b42f3be03365f5f909d2b3ea410295cf36df739e31/widgetsnbextension-4.0.15-py3-none-any.whl", hash = "sha256:8156704e4346a571d9ce73b84bee86a29906c9abfd7223b7228a28899ccf3366", size = 2196503, upload-time = "2025-11-01T21:15:53.565Z" }, +] + +[[package]] +name = "wrapt" +version = "1.14.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/23/49/925324e2eaa0c83c45b7a1eb31004af4ad7b37fdc1d9e897ea7d551215da/wrapt-1.14.2.tar.gz", hash = "sha256:19d33781d891c99b5a35f810656d2fe01765b35ccfb6d395007d2edb1058d98f", size = 50701, upload-time = "2025-08-12T06:59:02.334Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ad/3f/12f70730cf9237e07aa5887bdb3e3695fd68e7e0d6dd66b5dd7a8794724a/wrapt-1.14.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:734de7e0182d15f03eb4f4fce0ff7f07a072119a19cdcc97c40aee96d10fe851", size = 35836, upload-time = "2025-08-12T06:58:20.535Z" }, + { url = "https://files.pythonhosted.org/packages/f1/95/5e261ed720bdddf9bbfea2b9bbd30bd03e298b02267333a231592a0cef7b/wrapt-1.14.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:851ded3662733bab093297a0adb844c71e7754b8c144f76bb569ac6544a7c27a", size = 76907, upload-time = "2025-08-12T06:58:39.06Z" }, + { url = "https://files.pythonhosted.org/packages/18/ed/fcf75886924473ebc11ded6f589f9f715bd605a787201e8b9b1f34b958a7/wrapt-1.14.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4f7b9a0364edef5a3033307cde69f7c3775a74eb83caeff8955e72ec3e0963fe", size = 77665, upload-time = "2025-08-12T06:58:29.329Z" }, + { url = "https://files.pythonhosted.org/packages/16/de/e9205650d0c8401c4e2cc2a01edc89ce3fabda219e2efabcc71d92d02a70/wrapt-1.14.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3066203bf6e35a040c848143636e6fc2aa4ad6fb2b027a956f462083a3b635ea", size = 76401, upload-time = "2025-08-12T06:58:30.309Z" }, + { url = "https://files.pythonhosted.org/packages/ba/e6/e3b79ba90e7b3a7c1915dbecb84aa491dc0a16238216dae5137bb0d85689/wrapt-1.14.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:072684f6264ca83695d1c7ad601e61b17953351b0950790cd50c327402006492", size = 76360, upload-time = "2025-08-12T06:58:40.019Z" }, + { url = "https://files.pythonhosted.org/packages/35/07/fe53594e194b133b29b0808c40f1ad92773186c314dbb5b1bf5bb9a4e34a/wrapt-1.14.2-cp310-cp310-win32.whl", hash = "sha256:26c36d922c70de7ae7e933d0f9a10b4017d007d505f60fe02efa8e260a6c7af4", size = 33681, upload-time = "2025-08-12T06:58:52.611Z" }, + { url = "https://files.pythonhosted.org/packages/12/68/134031baba6e1ba7dbdf2a217e99feb7177a2ad860b19f3ba319d40e0baf/wrapt-1.14.2-cp310-cp310-win_amd64.whl", hash = "sha256:ead0c5373df2c551347c7f71903a6403efb391506e1e349704ec21fe797e59bf", size = 35811, upload-time = "2025-08-12T06:58:51.696Z" }, + { url = "https://files.pythonhosted.org/packages/b7/c7/7376998449689cf2adbdbeacad47084410d00f3ae04cf73e6127cf52b950/wrapt-1.14.2-py3-none-any.whl", hash = "sha256:82eea3b559f51f22aefc530b747b87406811ef00cb0c4734f48cb139c748db63", size = 21577, upload-time = "2025-08-12T06:59:01.408Z" }, +] + +[[package]] +name = "xgboost" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "nvidia-nccl-cu12", marker = "sys_platform == 'linux'" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/91/bb/1eb0242409d22db725d7a88088e6cfd6556829fb0736f9ff69aa9f1e9455/xgboost-3.2.0.tar.gz", hash = "sha256:99b0e9a2a64896cdaf509c5e46372d336c692406646d20f2af505003c0c5d70d", size = 1263936, upload-time = "2026-02-10T11:03:05.542Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/49/6e4cdd877c24adf56cb3586bc96d93d4dcd780b5ea1efb32e1ee0de08bae/xgboost-3.2.0-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:2f661966d3e322536d9c448090a870fcba1e32ee5760c10b7c46bac7a342079a", size = 2507014, upload-time = "2026-02-10T10:50:57.44Z" }, + { url = "https://files.pythonhosted.org/packages/93/f1/c09ef1add609453aa3ba5bafcd0d1c1a805c1263c0b60138ec968f8ec296/xgboost-3.2.0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:eabbd40d474b8dbf6cb3536325f9150b9e6f0db32d18de9914fb3227d0bef5b7", size = 2328527, upload-time = "2026-02-10T10:51:17.502Z" }, + { url = "https://files.pythonhosted.org/packages/96/9f/d9914a7b8df842832850b1a18e5f47aaa071c217cdd1da2ae9deb291018b/xgboost-3.2.0-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:852eabc6d3b3702a59bf78dbfdcd1cb9c4d3a3b6e5ed1f8781d8b9512354fdd2", size = 131100954, upload-time = "2026-02-10T11:02:42.704Z" }, + { url = "https://files.pythonhosted.org/packages/79/98/679de17c2caa4fd3b0b4386ecf7377301702cb0afb22930a07c142fcb1d8/xgboost-3.2.0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:99b4a6bbcb47212fec5cf5fbe12347215f073c08967431b0122cfbd1ee70312c", size = 131748579, upload-time = "2026-02-10T10:54:40.424Z" }, + { url = "https://files.pythonhosted.org/packages/1f/3d/1661dd114a914a67e3f7ab66fa1382e7599c2a8c340f314ad30a3e2b4d08/xgboost-3.2.0-py3-none-win_amd64.whl", hash = "sha256:0d169736fd836fc13646c7ab787167b3a8110351c2c6bc770c755ee1618f0442", size = 101681668, upload-time = "2026-02-10T10:59:31.202Z" }, +] + +[[package]] +name = "xxhash" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/02/84/30869e01909fb37a6cc7e18688ee8bf1e42d57e7e0777636bd47524c43c7/xxhash-3.6.0.tar.gz", hash = "sha256:f0162a78b13a0d7617b2845b90c763339d1f1d82bb04a4b07f4ab535cc5e05d6", size = 85160, upload-time = "2025-10-02T14:37:08.097Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/ee/f9f1d656ad168681bb0f6b092372c1e533c4416b8069b1896a175c46e484/xxhash-3.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:87ff03d7e35c61435976554477a7f4cd1704c3596a89a8300d5ce7fc83874a71", size = 32845, upload-time = "2025-10-02T14:33:51.573Z" }, + { url = "https://files.pythonhosted.org/packages/a3/b1/93508d9460b292c74a09b83d16750c52a0ead89c51eea9951cb97a60d959/xxhash-3.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f572dfd3d0e2eb1a57511831cf6341242f5a9f8298a45862d085f5b93394a27d", size = 30807, upload-time = "2025-10-02T14:33:52.964Z" }, + { url = "https://files.pythonhosted.org/packages/07/55/28c93a3662f2d200c70704efe74aab9640e824f8ce330d8d3943bf7c9b3c/xxhash-3.6.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:89952ea539566b9fed2bbd94e589672794b4286f342254fad28b149f9615fef8", size = 193786, upload-time = "2025-10-02T14:33:54.272Z" }, + { url = "https://files.pythonhosted.org/packages/c1/96/fec0be9bb4b8f5d9c57d76380a366f31a1781fb802f76fc7cda6c84893c7/xxhash-3.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:48e6f2ffb07a50b52465a1032c3cf1f4a5683f944acaca8a134a2f23674c2058", size = 212830, upload-time = "2025-10-02T14:33:55.706Z" }, + { url = "https://files.pythonhosted.org/packages/c4/a0/c706845ba77b9611f81fd2e93fad9859346b026e8445e76f8c6fd057cc6d/xxhash-3.6.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b5b848ad6c16d308c3ac7ad4ba6bede80ed5df2ba8ed382f8932df63158dd4b2", size = 211606, upload-time = "2025-10-02T14:33:57.133Z" }, + { url = "https://files.pythonhosted.org/packages/67/1e/164126a2999e5045f04a69257eea946c0dc3e86541b400d4385d646b53d7/xxhash-3.6.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a034590a727b44dd8ac5914236a7b8504144447a9682586c3327e935f33ec8cc", size = 444872, upload-time = "2025-10-02T14:33:58.446Z" }, + { url = "https://files.pythonhosted.org/packages/2d/4b/55ab404c56cd70a2cf5ecfe484838865d0fea5627365c6c8ca156bd09c8f/xxhash-3.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8a8f1972e75ebdd161d7896743122834fe87378160c20e97f8b09166213bf8cc", size = 193217, upload-time = "2025-10-02T14:33:59.724Z" }, + { url = "https://files.pythonhosted.org/packages/45/e6/52abf06bac316db33aa269091ae7311bd53cfc6f4b120ae77bac1b348091/xxhash-3.6.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ee34327b187f002a596d7b167ebc59a1b729e963ce645964bbc050d2f1b73d07", size = 210139, upload-time = "2025-10-02T14:34:02.041Z" }, + { url = "https://files.pythonhosted.org/packages/34/37/db94d490b8691236d356bc249c08819cbcef9273a1a30acf1254ff9ce157/xxhash-3.6.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:339f518c3c7a850dd033ab416ea25a692759dc7478a71131fe8869010d2b75e4", size = 197669, upload-time = "2025-10-02T14:34:03.664Z" }, + { url = "https://files.pythonhosted.org/packages/b7/36/c4f219ef4a17a4f7a64ed3569bc2b5a9c8311abdb22249ac96093625b1a4/xxhash-3.6.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:bf48889c9630542d4709192578aebbd836177c9f7a4a2778a7d6340107c65f06", size = 210018, upload-time = "2025-10-02T14:34:05.325Z" }, + { url = "https://files.pythonhosted.org/packages/fd/06/bfac889a374fc2fc439a69223d1750eed2e18a7db8514737ab630534fa08/xxhash-3.6.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:5576b002a56207f640636056b4160a378fe36a58db73ae5c27a7ec8db35f71d4", size = 413058, upload-time = "2025-10-02T14:34:06.925Z" }, + { url = "https://files.pythonhosted.org/packages/c9/d1/555d8447e0dd32ad0930a249a522bb2e289f0d08b6b16204cfa42c1f5a0c/xxhash-3.6.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:af1f3278bd02814d6dedc5dec397993b549d6f16c19379721e5a1d31e132c49b", size = 190628, upload-time = "2025-10-02T14:34:08.669Z" }, + { url = "https://files.pythonhosted.org/packages/d1/15/8751330b5186cedc4ed4b597989882ea05e0408b53fa47bcb46a6125bfc6/xxhash-3.6.0-cp310-cp310-win32.whl", hash = "sha256:aed058764db109dc9052720da65fafe84873b05eb8b07e5e653597951af57c3b", size = 30577, upload-time = "2025-10-02T14:34:10.234Z" }, + { url = "https://files.pythonhosted.org/packages/bb/cc/53f87e8b5871a6eb2ff7e89c48c66093bda2be52315a8161ddc54ea550c4/xxhash-3.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:e82da5670f2d0d98950317f82a0e4a0197150ff19a6df2ba40399c2a3b9ae5fb", size = 31487, upload-time = "2025-10-02T14:34:11.618Z" }, + { url = "https://files.pythonhosted.org/packages/9f/00/60f9ea3bb697667a14314d7269956f58bf56bb73864f8f8d52a3c2535e9a/xxhash-3.6.0-cp310-cp310-win_arm64.whl", hash = "sha256:4a082ffff8c6ac07707fb6b671caf7c6e020c75226c561830b73d862060f281d", size = 27863, upload-time = "2025-10-02T14:34:12.619Z" }, +] + +[[package]] +name = "xyzservices" +version = "2026.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/08/3cb9f67a8d48021aca2a02292cc26eecd71d949ae70ad66420a8730cc302/xyzservices-2026.3.0.tar.gz", hash = "sha256:d226866a5d8e9fef337034d8da37a8298f0a1d9d1489b4018e69579eb321fea4", size = 1135736, upload-time = "2026-03-30T14:42:25.596Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/a9/d23012099dc88ec69a29c6407b41d89681cb674c2043cd5b467c7e299c08/xyzservices-2026.3.0-py3-none-any.whl", hash = "sha256:503183d4b322bfebc3c50cdd21192aa3e81e36c5efbf9133d54ae82143e0576b", size = 94101, upload-time = "2026-03-30T14:42:24.608Z" }, +] + +[[package]] +name = "yarl" +version = "1.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "multidict" }, + { name = "propcache" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/23/6e/beb1beec874a72f23815c1434518bfc4ed2175065173fb138c3705f658d4/yarl-1.23.0.tar.gz", hash = "sha256:53b1ea6ca88ebd4420379c330aea57e258408dd0df9af0992e5de2078dc9f5d5", size = 194676, upload-time = "2026-03-01T22:07:53.373Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/0d/9cc638702f6fc3c7a3685bcc8cf2a9ed7d6206e932a49f5242658047ef51/yarl-1.23.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cff6d44cb13d39db2663a22b22305d10855efa0fa8015ddeacc40bc59b9d8107", size = 123764, upload-time = "2026-03-01T22:04:09.7Z" }, + { url = "https://files.pythonhosted.org/packages/7a/35/5a553687c5793df5429cd1db45909d4f3af7eee90014888c208d086a44f0/yarl-1.23.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e4c53f8347cd4200f0d70a48ad059cabaf24f5adc6ba08622a23423bc7efa10d", size = 86282, upload-time = "2026-03-01T22:04:11.892Z" }, + { url = "https://files.pythonhosted.org/packages/68/2e/c5a2234238f8ce37a8312b52801ee74117f576b1539eec8404a480434acc/yarl-1.23.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2a6940a074fb3c48356ed0158a3ca5699c955ee4185b4d7d619be3c327143e05", size = 86053, upload-time = "2026-03-01T22:04:13.292Z" }, + { url = "https://files.pythonhosted.org/packages/74/3f/bbd8ff36fb038622797ffbaf7db314918bb4d76f1cc8a4f9ca7a55fe5195/yarl-1.23.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ed5f69ce7be7902e5c70ea19eb72d20abf7d725ab5d49777d696e32d4fc1811d", size = 99395, upload-time = "2026-03-01T22:04:15.133Z" }, + { url = "https://files.pythonhosted.org/packages/77/04/9516bc4e269d2a3ec9c6779fcdeac51ce5b3a9b0156f06ac7152e5bba864/yarl-1.23.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:389871e65468400d6283c0308e791a640b5ab5c83bcee02a2f51295f95e09748", size = 92143, upload-time = "2026-03-01T22:04:16.829Z" }, + { url = "https://files.pythonhosted.org/packages/c7/63/88802d1f6b1cb1fc67d67a58cd0cf8a1790de4ce7946e434240f1d60ab4a/yarl-1.23.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:dda608c88cf709b1d406bdfcd84d8d63cff7c9e577a403c6108ce8ce9dcc8764", size = 107643, upload-time = "2026-03-01T22:04:18.519Z" }, + { url = "https://files.pythonhosted.org/packages/8e/db/4f9b838f4d8bdd6f0f385aed8bbf21c71ed11a0b9983305c302cbd557815/yarl-1.23.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8c4fe09e0780c6c3bf2b7d4af02ee2394439d11a523bbcf095cf4747c2932007", size = 108700, upload-time = "2026-03-01T22:04:20.373Z" }, + { url = "https://files.pythonhosted.org/packages/50/12/95a1d33f04a79c402664070d43b8b9f72dc18914e135b345b611b0b1f8cc/yarl-1.23.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:31c9921eb8bd12633b41ad27686bbb0b1a2a9b8452bfdf221e34f311e9942ed4", size = 102769, upload-time = "2026-03-01T22:04:23.055Z" }, + { url = "https://files.pythonhosted.org/packages/86/65/91a0285f51321369fd1a8308aa19207520c5f0587772cfc2e03fc2467e90/yarl-1.23.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5f10fd85e4b75967468af655228fbfd212bdf66db1c0d135065ce288982eda26", size = 101114, upload-time = "2026-03-01T22:04:25.031Z" }, + { url = "https://files.pythonhosted.org/packages/58/80/c7c8244fc3e5bc483dc71a09560f43b619fab29301a0f0a8f936e42865c7/yarl-1.23.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dbf507e9ef5688bada447a24d68b4b58dd389ba93b7afc065a2ba892bea54769", size = 98883, upload-time = "2026-03-01T22:04:27.281Z" }, + { url = "https://files.pythonhosted.org/packages/86/e7/71ca9cc9ca79c0b7d491216177d1aed559d632947b8ffb0ee60f7d8b23e3/yarl-1.23.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:85e9beda1f591bc73e77ea1c51965c68e98dafd0fec72cdd745f77d727466716", size = 94172, upload-time = "2026-03-01T22:04:28.554Z" }, + { url = "https://files.pythonhosted.org/packages/6a/3f/6c6c8a0fe29c26fb2db2e8d32195bb84ec1bfb8f1d32e7f73b787fcf349b/yarl-1.23.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:0e1fdaa14ef51366d7757b45bde294e95f6c8c049194e793eedb8387c86d5993", size = 107010, upload-time = "2026-03-01T22:04:30.385Z" }, + { url = "https://files.pythonhosted.org/packages/56/38/12730c05e5ad40a76374d440ed8b0899729a96c250516d91c620a6e38fc2/yarl-1.23.0-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:75e3026ab649bf48f9a10c0134512638725b521340293f202a69b567518d94e0", size = 100285, upload-time = "2026-03-01T22:04:31.752Z" }, + { url = "https://files.pythonhosted.org/packages/34/92/6a7be9239f2347234e027284e7a5f74b1140cc86575e7b469d13fba1ebfe/yarl-1.23.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:80e6d33a3d42a7549b409f199857b4fb54e2103fc44fb87605b6663b7a7ff750", size = 108230, upload-time = "2026-03-01T22:04:33.844Z" }, + { url = "https://files.pythonhosted.org/packages/5e/81/4aebccfa9376bd98b9d8bfad20621a57d3e8cfc5b8631c1fa5f62cdd03f4/yarl-1.23.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5ec2f42d41ccbd5df0270d7df31618a8ee267bfa50997f5d720ddba86c4a83a6", size = 103008, upload-time = "2026-03-01T22:04:35.856Z" }, + { url = "https://files.pythonhosted.org/packages/38/0f/0b4e3edcec794a86b853b0c6396c0a888d72dfce19b2d88c02ac289fb6c1/yarl-1.23.0-cp310-cp310-win32.whl", hash = "sha256:debe9c4f41c32990771be5c22b56f810659f9ddf3d63f67abfdcaa2c6c9c5c1d", size = 83073, upload-time = "2026-03-01T22:04:38.268Z" }, + { url = "https://files.pythonhosted.org/packages/a0/71/ad95c33da18897e4c636528bbc24a1dd23fe16797de8bc4ec667b8db0ba4/yarl-1.23.0-cp310-cp310-win_amd64.whl", hash = "sha256:ab5f043cb8a2d71c981c09c510da013bc79fd661f5c60139f00dd3c3cc4f2ffb", size = 87328, upload-time = "2026-03-01T22:04:39.558Z" }, + { url = "https://files.pythonhosted.org/packages/e2/14/dfa369523c79bccf9c9c746b0a63eb31f65db9418ac01275f7950962e504/yarl-1.23.0-cp310-cp310-win_arm64.whl", hash = "sha256:263cd4f47159c09b8b685890af949195b51d1aa82ba451c5847ca9bc6413c220", size = 82463, upload-time = "2026-03-01T22:04:41.454Z" }, + { url = "https://files.pythonhosted.org/packages/69/68/c8739671f5699c7dc470580a4f821ef37c32c4cb0b047ce223a7f115757f/yarl-1.23.0-py3-none-any.whl", hash = "sha256:a2df6afe50dea8ae15fa34c9f824a3ee958d785fd5d089063d960bae1daa0a3f", size = 48288, upload-time = "2026-03-01T22:07:51.388Z" }, +] diff --git a/uv.lock.rocm b/uv.lock.rocm new file mode 100644 index 00000000..06be863c --- /dev/null +++ b/uv.lock.rocm @@ -0,0 +1,3859 @@ +version = 1 +revision = 3 +requires-python = "==3.10.*" + +[[package]] +name = "absl-py" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/64/c7/8de93764ad66968d19329a7e0c147a2bb3c7054c554d4a119111b8f9440f/absl_py-2.4.0.tar.gz", hash = "sha256:8c6af82722b35cf71e0f4d1d47dcaebfff286e27110a99fc359349b247dfb5d4", size = 116543, upload-time = "2026-01-28T10:17:05.322Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/a6/907a406bb7d359e6a63f99c313846d9eec4f7e6f7437809e03aa00fa3074/absl_py-2.4.0-py3-none-any.whl", hash = "sha256:88476fd881ca8aab94ffa78b7b6c632a782ab3ba1cd19c9bd423abc4fb4cd28d", size = 135750, upload-time = "2026-01-28T10:17:04.19Z" }, +] + +[[package]] +name = "affine" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/98/d2f0bb06385069e799fc7d2870d9e078cfa0fa396dc8a2b81227d0da08b9/affine-2.4.0.tar.gz", hash = "sha256:a24d818d6a836c131976d22f8c27b8d3ca32d0af64c1d8d29deb7bafa4da1eea", size = 17132, upload-time = "2023-01-19T23:44:30.696Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/f7/85273299ab57117850cc0a936c64151171fac4da49bc6fba0dad984a7c5f/affine-2.4.0-py3-none-any.whl", hash = "sha256:8a3df80e2b2378aef598a83c1392efd47967afec4242021a0b06b4c7cbc61a92", size = 15662, upload-time = "2023-01-19T23:44:28.833Z" }, +] + +[[package]] +name = "aiohappyeyeballs" +version = "2.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/30/f84a107a9c4331c14b2b586036f40965c128aa4fee4dda5d3d51cb14ad54/aiohappyeyeballs-2.6.1.tar.gz", hash = "sha256:c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558", size = 22760, upload-time = "2025-03-12T01:42:48.764Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/15/5bf3b99495fb160b63f95972b81750f18f7f4e02ad051373b669d17d44f2/aiohappyeyeballs-2.6.1-py3-none-any.whl", hash = "sha256:f349ba8f4b75cb25c99c5c2d84e997e485204d2902a9597802b0371f09331fb8", size = 15265, upload-time = "2025-03-12T01:42:47.083Z" }, +] + +[[package]] +name = "aiohttp" +version = "3.13.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs" }, + { name = "aiosignal" }, + { name = "async-timeout" }, + { name = "attrs" }, + { name = "frozenlist" }, + { name = "multidict" }, + { name = "propcache" }, + { name = "yarl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/77/9a/152096d4808df8e4268befa55fba462f440f14beab85e8ad9bf990516918/aiohttp-3.13.5.tar.gz", hash = "sha256:9d98cc980ecc96be6eb4c1994ce35d28d8b1f5e5208a23b421187d1209dbb7d1", size = 7858271, upload-time = "2026-03-31T22:01:03.343Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/85/cebc47ee74d8b408749073a1a46c6fcba13d170dc8af7e61996c6c9394ac/aiohttp-3.13.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:02222e7e233295f40e011c1b00e3b0bd451f22cf853a0304c3595633ee47da4b", size = 750547, upload-time = "2026-03-31T21:56:30.024Z" }, + { url = "https://files.pythonhosted.org/packages/05/98/afd308e35b9d3d8c9ec54c0918f1d722c86dc17ddfec272fcdbcce5a3124/aiohttp-3.13.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bace460460ed20614fa6bc8cb09966c0b8517b8c58ad8046828c6078d25333b5", size = 503535, upload-time = "2026-03-31T21:56:31.935Z" }, + { url = "https://files.pythonhosted.org/packages/6f/4d/926c183e06b09d5270a309eb50fbde7b09782bfd305dec1e800f329834fb/aiohttp-3.13.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f546a4dc1e6a5edbb9fd1fd6ad18134550e096a5a43f4ad74acfbd834fc6670", size = 497830, upload-time = "2026-03-31T21:56:33.654Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d6/f47d1c690f115a5c2a5e8938cce4a232a5be9aac5c5fb2647efcbbbda333/aiohttp-3.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c86969d012e51b8e415a8c6ce96f7857d6a87d6207303ab02d5d11ef0cad2274", size = 1682474, upload-time = "2026-03-31T21:56:35.513Z" }, + { url = "https://files.pythonhosted.org/packages/01/44/056fd37b1bb52eac760303e5196acc74d9d546631b035704ae5927f7b4ac/aiohttp-3.13.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b6f6cd1560c5fa427e3b6074bb24d2c64e225afbb7165008903bd42e4e33e28a", size = 1655259, upload-time = "2026-03-31T21:56:37.843Z" }, + { url = "https://files.pythonhosted.org/packages/91/9f/78eb1a20c1c28ae02f6a3c0f4d7b0dcc66abce5290cadd53d78ce3084175/aiohttp-3.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:636bc362f0c5bbc7372bc3ae49737f9e3030dbce469f0f422c8f38079780363d", size = 1736204, upload-time = "2026-03-31T21:56:39.822Z" }, + { url = "https://files.pythonhosted.org/packages/de/6c/d20d7de23f0b52b8c1d9e2033b2db1ac4dacbb470bb74c56de0f5f86bb4f/aiohttp-3.13.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6a7cbeb06d1070f1d14895eeeed4dac5913b22d7b456f2eb969f11f4b3993796", size = 1826198, upload-time = "2026-03-31T21:56:41.378Z" }, + { url = "https://files.pythonhosted.org/packages/2f/86/a6f3ff1fd795f49545a7c74b2c92f62729135d73e7e4055bf74da5a26c82/aiohttp-3.13.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bca9ef7517fd7874a1a08970ae88f497bf5c984610caa0bf40bd7e8450852b95", size = 1681329, upload-time = "2026-03-31T21:56:43.374Z" }, + { url = "https://files.pythonhosted.org/packages/fb/68/84cd3dab6b7b4f3e6fe9459a961acb142aaab846417f6e8905110d7027e5/aiohttp-3.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:019a67772e034a0e6b9b17c13d0a8fe56ad9fb150fc724b7f3ffd3724288d9e5", size = 1560023, upload-time = "2026-03-31T21:56:45.031Z" }, + { url = "https://files.pythonhosted.org/packages/41/2c/db61b64b0249e30f954a65ab4cb4970ced57544b1de2e3c98ee5dc24165f/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f34ecee82858e41dd217734f0c41a532bd066bcaab636ad830f03a30b2a96f2a", size = 1652372, upload-time = "2026-03-31T21:56:47.075Z" }, + { url = "https://files.pythonhosted.org/packages/25/6f/e96988a6c982d047810c772e28c43c64c300c943b0ed5c1c0c4ce1e1027c/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:4eac02d9af4813ee289cd63a361576da36dba57f5a1ab36377bc2600db0cbb73", size = 1662031, upload-time = "2026-03-31T21:56:48.835Z" }, + { url = "https://files.pythonhosted.org/packages/b7/26/a56feace81f3d347b4052403a9d03754a0ab23f7940780dada0849a38c92/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4beac52e9fe46d6abf98b0176a88154b742e878fdf209d2248e99fcdf73cd297", size = 1708118, upload-time = "2026-03-31T21:56:50.833Z" }, + { url = "https://files.pythonhosted.org/packages/78/6e/b6173a8ff03d01d5e1a694bc06764b5dad1df2d4ed8f0ceec12bb3277936/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:c180f480207a9b2475f2b8d8bd7204e47aec952d084b2a2be58a782ffcf96074", size = 1548667, upload-time = "2026-03-31T21:56:52.81Z" }, + { url = "https://files.pythonhosted.org/packages/16/13/13296ffe2c132d888b3fe2c195c8b9c0c24c89c3fa5cc2c44464dc23b22e/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2837fb92951564d6339cedae4a7231692aa9f73cbc4fb2e04263b96844e03b4e", size = 1724490, upload-time = "2026-03-31T21:56:54.541Z" }, + { url = "https://files.pythonhosted.org/packages/7a/b4/1f1c287f4a79782ef36e5a6e62954c85343bc30470d862d30bd5f26c9fa2/aiohttp-3.13.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d9010032a0b9710f58012a1e9c222528763d860ba2ee1422c03473eab47703e7", size = 1667109, upload-time = "2026-03-31T21:56:56.21Z" }, + { url = "https://files.pythonhosted.org/packages/ef/42/8461a2aaf60a8f4ea4549a4056be36b904b0eb03d97ca9a8a2604681a500/aiohttp-3.13.5-cp310-cp310-win32.whl", hash = "sha256:7c4b6668b2b2b9027f209ddf647f2a4407784b5d88b8be4efcc72036f365baf9", size = 439478, upload-time = "2026-03-31T21:56:58.292Z" }, + { url = "https://files.pythonhosted.org/packages/e5/71/06956304cb5ee439dfe8d86e1b2e70088bd88ed1ced1f42fb29e5d855f0e/aiohttp-3.13.5-cp310-cp310-win_amd64.whl", hash = "sha256:cd3db5927bf9167d5a6157ddb2f036f6b6b0ad001ac82355d43e97a4bde76d76", size = 462047, upload-time = "2026-03-31T21:57:00.257Z" }, +] + +[[package]] +name = "aiosignal" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, +] + +[[package]] +name = "alabaster" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a6/f8/d9c74d0daf3f742840fd818d69cfae176fa332022fd44e3469487d5a9420/alabaster-1.0.0.tar.gz", hash = "sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e", size = 24210, upload-time = "2024-07-26T18:15:03.762Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b", size = 13929, upload-time = "2024-07-26T18:15:02.05Z" }, +] + +[[package]] +name = "alembic" +version = "1.18.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mako" }, + { name = "sqlalchemy" }, + { name = "tomli" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/94/13/8b084e0f2efb0275a1d534838844926f798bd766566b1375174e2448cd31/alembic-1.18.4.tar.gz", hash = "sha256:cb6e1fd84b6174ab8dbb2329f86d631ba9559dd78df550b57804d607672cedbc", size = 2056725, upload-time = "2026-02-10T16:00:47.195Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/29/6533c317b74f707ea28f8d633734dbda2119bbadfc61b2f3640ba835d0f7/alembic-1.18.4-py3-none-any.whl", hash = "sha256:a5ed4adcf6d8a4cb575f3d759f071b03cd6e5c7618eb796cb52497be25bfe19a", size = 263893, upload-time = "2026-02-10T16:00:49.997Z" }, +] + +[[package]] +name = "anyio" +version = "4.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "exceptiongroup" }, + { name = "idna" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/14/2c5dd9f512b66549ae92767a9c7b330ae88e1932ca57876909410251fe13/anyio-4.13.0.tar.gz", hash = "sha256:334b70e641fd2221c1505b3890c69882fe4a2df910cba14d97019b90b24439dc", size = 231622, upload-time = "2026-03-24T12:59:09.671Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/42/e921fccf5015463e32a3cf6ee7f980a6ed0f395ceeaa45060b61d86486c2/anyio-4.13.0-py3-none-any.whl", hash = "sha256:08b310f9e24a9594186fd75b4f73f4a4152069e3853f1ed8bfbf58369f4ad708", size = 114353, upload-time = "2026-03-24T12:59:08.246Z" }, +] + +[[package]] +name = "appnope" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/5d/752690df9ef5b76e169e68d6a129fa6d08a7100ca7f754c89495db3c6019/appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee", size = 4170, upload-time = "2024-02-06T09:43:11.258Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/29/5ecc3a15d5a33e31b26c11426c45c501e439cb865d0bff96315d86443b78/appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c", size = 4321, upload-time = "2024-02-06T09:43:09.663Z" }, +] + +[[package]] +name = "argon2-cffi" +version = "25.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "argon2-cffi-bindings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/89/ce5af8a7d472a67cc819d5d998aa8c82c5d860608c4db9f46f1162d7dab9/argon2_cffi-25.1.0.tar.gz", hash = "sha256:694ae5cc8a42f4c4e2bf2ca0e64e51e23a040c6a517a85074683d3959e1346c1", size = 45706, upload-time = "2025-06-03T06:55:32.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4f/d3/a8b22fa575b297cd6e3e3b0155c7e25db170edf1c74783d6a31a2490b8d9/argon2_cffi-25.1.0-py3-none-any.whl", hash = "sha256:fdc8b074db390fccb6eb4a3604ae7231f219aa669a2652e0f20e16ba513d5741", size = 14657, upload-time = "2025-06-03T06:55:30.804Z" }, +] + +[[package]] +name = "argon2-cffi-bindings" +version = "25.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/2d/db8af0df73c1cf454f71b2bbe5e356b8c1f8041c979f505b3d3186e520a9/argon2_cffi_bindings-25.1.0.tar.gz", hash = "sha256:b957f3e6ea4d55d820e40ff76f450952807013d361a65d7f28acc0acbf29229d", size = 1783441, upload-time = "2025-07-30T10:02:05.147Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/57/96b8b9f93166147826da5f90376e784a10582dd39a393c99bb62cfcf52f0/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:aecba1723ae35330a008418a91ea6cfcedf6d31e5fbaa056a166462ff066d500", size = 54121, upload-time = "2025-07-30T10:01:50.815Z" }, + { url = "https://files.pythonhosted.org/packages/0a/08/a9bebdb2e0e602dde230bdde8021b29f71f7841bd54801bcfd514acb5dcf/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2630b6240b495dfab90aebe159ff784d08ea999aa4b0d17efa734055a07d2f44", size = 29177, upload-time = "2025-07-30T10:01:51.681Z" }, + { url = "https://files.pythonhosted.org/packages/b6/02/d297943bcacf05e4f2a94ab6f462831dc20158614e5d067c35d4e63b9acb/argon2_cffi_bindings-25.1.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:7aef0c91e2c0fbca6fc68e7555aa60ef7008a739cbe045541e438373bc54d2b0", size = 31090, upload-time = "2025-07-30T10:01:53.184Z" }, + { url = "https://files.pythonhosted.org/packages/c1/93/44365f3d75053e53893ec6d733e4a5e3147502663554b4d864587c7828a7/argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e021e87faa76ae0d413b619fe2b65ab9a037f24c60a1e6cc43457ae20de6dc6", size = 81246, upload-time = "2025-07-30T10:01:54.145Z" }, + { url = "https://files.pythonhosted.org/packages/09/52/94108adfdd6e2ddf58be64f959a0b9c7d4ef2fa71086c38356d22dc501ea/argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d3e924cfc503018a714f94a49a149fdc0b644eaead5d1f089330399134fa028a", size = 87126, upload-time = "2025-07-30T10:01:55.074Z" }, + { url = "https://files.pythonhosted.org/packages/72/70/7a2993a12b0ffa2a9271259b79cc616e2389ed1a4d93842fac5a1f923ffd/argon2_cffi_bindings-25.1.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c87b72589133f0346a1cb8d5ecca4b933e3c9b64656c9d175270a000e73b288d", size = 80343, upload-time = "2025-07-30T10:01:56.007Z" }, + { url = "https://files.pythonhosted.org/packages/78/9a/4e5157d893ffc712b74dbd868c7f62365618266982b64accab26bab01edc/argon2_cffi_bindings-25.1.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:1db89609c06afa1a214a69a462ea741cf735b29a57530478c06eb81dd403de99", size = 86777, upload-time = "2025-07-30T10:01:56.943Z" }, + { url = "https://files.pythonhosted.org/packages/74/cd/15777dfde1c29d96de7f18edf4cc94c385646852e7c7b0320aa91ccca583/argon2_cffi_bindings-25.1.0-cp39-abi3-win32.whl", hash = "sha256:473bcb5f82924b1becbb637b63303ec8d10e84c8d241119419897a26116515d2", size = 27180, upload-time = "2025-07-30T10:01:57.759Z" }, + { url = "https://files.pythonhosted.org/packages/e2/c6/a759ece8f1829d1f162261226fbfd2c6832b3ff7657384045286d2afa384/argon2_cffi_bindings-25.1.0-cp39-abi3-win_amd64.whl", hash = "sha256:a98cd7d17e9f7ce244c0803cad3c23a7d379c301ba618a5fa76a67d116618b98", size = 31715, upload-time = "2025-07-30T10:01:58.56Z" }, + { url = "https://files.pythonhosted.org/packages/42/b9/f8d6fa329ab25128b7e98fd83a3cb34d9db5b059a9847eddb840a0af45dd/argon2_cffi_bindings-25.1.0-cp39-abi3-win_arm64.whl", hash = "sha256:b0fdbcf513833809c882823f98dc2f931cf659d9a1429616ac3adebb49f5db94", size = 27149, upload-time = "2025-07-30T10:01:59.329Z" }, + { url = "https://files.pythonhosted.org/packages/11/2d/ba4e4ca8d149f8dcc0d952ac0967089e1d759c7e5fcf0865a317eb680fbb/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:6dca33a9859abf613e22733131fc9194091c1fa7cb3e131c143056b4856aa47e", size = 24549, upload-time = "2025-07-30T10:02:00.101Z" }, + { url = "https://files.pythonhosted.org/packages/5c/82/9b2386cc75ac0bd3210e12a44bfc7fd1632065ed8b80d573036eecb10442/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:21378b40e1b8d1655dd5310c84a40fc19a9aa5e6366e835ceb8576bf0fea716d", size = 25539, upload-time = "2025-07-30T10:02:00.929Z" }, + { url = "https://files.pythonhosted.org/packages/31/db/740de99a37aa727623730c90d92c22c9e12585b3c98c54b7960f7810289f/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d588dec224e2a83edbdc785a5e6f3c6cd736f46bfd4b441bbb5aa1f5085e584", size = 28467, upload-time = "2025-07-30T10:02:02.08Z" }, + { url = "https://files.pythonhosted.org/packages/71/7a/47c4509ea18d755f44e2b92b7178914f0c113946d11e16e626df8eaa2b0b/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5acb4e41090d53f17ca1110c3427f0a130f944b896fc8c83973219c97f57b690", size = 27355, upload-time = "2025-07-30T10:02:02.867Z" }, + { url = "https://files.pythonhosted.org/packages/ee/82/82745642d3c46e7cea25e1885b014b033f4693346ce46b7f47483cf5d448/argon2_cffi_bindings-25.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:da0c79c23a63723aa5d782250fbf51b768abca630285262fb5144ba5ae01e520", size = 29187, upload-time = "2025-07-30T10:02:03.674Z" }, +] + +[[package]] +name = "arrow" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/33/032cdc44182491aa708d06a68b62434140d8c50820a087fac7af37703357/arrow-1.4.0.tar.gz", hash = "sha256:ed0cc050e98001b8779e84d461b0098c4ac597e88704a655582b21d116e526d7", size = 152931, upload-time = "2025-10-18T17:46:46.761Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/c9/d7977eaacb9df673210491da99e6a247e93df98c715fc43fd136ce1d3d33/arrow-1.4.0-py3-none-any.whl", hash = "sha256:749f0769958ebdc79c173ff0b0670d59051a535fa26e8eba02953dc19eb43205", size = 68797, upload-time = "2025-10-18T17:46:45.663Z" }, +] + +[[package]] +name = "asttokens" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/be/a5/8e3f9b6771b0b408517c82d97aed8f2036509bc247d46114925e32fe33f0/asttokens-3.0.1.tar.gz", hash = "sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7", size = 62308, upload-time = "2025-11-15T16:43:48.578Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/39/e7eaf1799466a4aef85b6a4fe7bd175ad2b1c6345066aa33f1f58d4b18d0/asttokens-3.0.1-py3-none-any.whl", hash = "sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a", size = 27047, upload-time = "2025-11-15T16:43:16.109Z" }, +] + +[[package]] +name = "astunparse" +version = "1.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, + { name = "wheel" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/af/4182184d3c338792894f34a62672919db7ca008c89abee9b564dd34d8029/astunparse-1.6.3.tar.gz", hash = "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872", size = 18290, upload-time = "2019-12-22T18:12:13.129Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/03/13dde6512ad7b4557eb792fbcf0c653af6076b81e5941d36ec61f7ce6028/astunparse-1.6.3-py2.py3-none-any.whl", hash = "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8", size = 12732, upload-time = "2019-12-22T18:12:11.297Z" }, +] + +[[package]] +name = "async-lru" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e8/1f/989ecfef8e64109a489fff357450cb73fa73a865a92bd8c272170a6922c2/async_lru-2.3.0.tar.gz", hash = "sha256:89bdb258a0140d7313cf8f4031d816a042202faa61d0ab310a0a538baa1c24b6", size = 16332, upload-time = "2026-03-19T01:04:32.413Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/e2/c2e3abf398f80732e58b03be77bde9022550d221dd8781bf586bd4d97cc1/async_lru-2.3.0-py3-none-any.whl", hash = "sha256:eea27b01841909316f2cc739807acea1c623df2be8c5cfad7583286397bb8315", size = 8403, upload-time = "2026-03-19T01:04:30.883Z" }, +] + +[[package]] +name = "async-timeout" +version = "5.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a5/ae/136395dfbfe00dfc94da3f3e136d0b13f394cba8f4841120e34226265780/async_timeout-5.0.1.tar.gz", hash = "sha256:d9321a7a3d5a6a5e187e824d2fa0793ce379a202935782d555d6e9d2735677d3", size = 9274, upload-time = "2024-11-06T16:41:39.6Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/ba/e2081de779ca30d473f21f5b30e0e737c438205440784c7dfc81efc2b029/async_timeout-5.0.1-py3-none-any.whl", hash = "sha256:39e3809566ff85354557ec2398b55e096c8364bacac9405a7a1fa429e77fe76c", size = 6233, upload-time = "2024-11-06T16:41:37.9Z" }, +] + +[[package]] +name = "atomsci-ampl" +source = { editable = "." } +dependencies = [ + { name = "bokeh" }, + { name = "bravado" }, + { name = "deepchem" }, + { name = "imbalanced-learn" }, + { name = "imblearn" }, + { name = "lightgbm" }, + { name = "lightning" }, + { name = "maestrowf" }, + { name = "matplotlib" }, + { name = "matplotlib-venn" }, + { name = "mordred" }, + { name = "numpy" }, + { name = "optuna" }, + { name = "pyarrow" }, + { name = "pydantic" }, + { name = "pyyaml" }, + { name = "rdkit" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "seaborn" }, + { name = "setuptools" }, + { name = "umap-learn" }, + { name = "xgboost" }, +] + +[package.optional-dependencies] +cpu = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow", marker = "sys_platform == 'darwin'" }, + { name = "tensorflow-cpu", marker = "sys_platform == 'linux'" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +cuda = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +docs = [ + { name = "ipython" }, + { name = "joblib" }, + { name = "pandas" }, + { name = "pygments" }, + { name = "sphinx" }, + { name = "sphinx-rtd-theme" }, +] +mchip = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow-macos" }, + { name = "tensorflow-metal" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] +rocm = [ + { name = "dgl" }, + { name = "dgllife" }, + { name = "tensorflow" }, + { name = "torch" }, + { name = "torch-geometric" }, + { name = "torchdata" }, +] + +[package.dev-dependencies] +dev = [ + { name = "ipykernel" }, + { name = "jupyter" }, + { name = "jupyterlab" }, + { name = "matplotcheck" }, + { name = "pytest" }, + { name = "pytest-cov" }, + { name = "pytest-mock" }, + { name = "pytest-xdist" }, + { name = "ruff" }, +] +docker = [ + { name = "networkx" }, +] + +[package.metadata] +requires-dist = [ + { name = "bokeh" }, + { name = "bravado" }, + { name = "deepchem", specifier = "==2.8" }, + { name = "dgl", marker = "extra == 'cpu'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'cuda'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'mchip'", specifier = "==2.1.0" }, + { name = "dgl", marker = "extra == 'rocm'", specifier = "==2.1.0" }, + { name = "dgllife", marker = "extra == 'cpu'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'cuda'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'mchip'", specifier = "==0.3.2" }, + { name = "dgllife", marker = "extra == 'rocm'", specifier = "==0.3.2" }, + { name = "imbalanced-learn" }, + { name = "imblearn" }, + { name = "ipython", marker = "extra == 'docs'" }, + { name = "joblib", marker = "extra == 'docs'" }, + { name = "lightgbm" }, + { name = "lightning", specifier = "==2.2.5" }, + { name = "maestrowf" }, + { name = "matplotlib" }, + { name = "matplotlib-venn" }, + { name = "mordred" }, + { name = "numpy", specifier = "<2" }, + { name = "optuna" }, + { name = "pandas", marker = "extra == 'docs'" }, + { name = "pyarrow" }, + { name = "pydantic", specifier = ">=1.10,<2" }, + { name = "pygments", marker = "extra == 'docs'" }, + { name = "pyyaml", specifier = ">=6.0" }, + { name = "rdkit", specifier = "==2024.3.5" }, + { name = "scikit-learn", specifier = "==1.2.2" }, + { name = "scipy", specifier = ">=1.10" }, + { name = "seaborn", specifier = ">=0.13.0" }, + { name = "setuptools" }, + { name = "sphinx", marker = "extra == 'docs'" }, + { name = "sphinx-rtd-theme", marker = "extra == 'docs'" }, + { name = "tensorflow", marker = "sys_platform == 'darwin' and extra == 'cpu'", specifier = "~=2.14.0" }, + { name = "tensorflow", marker = "extra == 'cuda'", specifier = "~=2.14.0" }, + { name = "tensorflow", marker = "extra == 'rocm'", specifier = "~=2.14.0" }, + { name = "tensorflow-cpu", marker = "sys_platform == 'linux' and extra == 'cpu'", specifier = "~=2.14.0" }, + { name = "tensorflow-macos", marker = "extra == 'mchip'", specifier = "~=2.14.0" }, + { name = "tensorflow-metal", marker = "extra == 'mchip'", specifier = "~=1.1.0" }, + { name = "torch", marker = "extra == 'cpu'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'cuda'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'mchip'", specifier = "==2.1.2" }, + { name = "torch", marker = "extra == 'rocm'", specifier = "==2.1.2" }, + { name = "torch-geometric", marker = "extra == 'cpu'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'cuda'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'mchip'", specifier = "==2.7.0" }, + { name = "torch-geometric", marker = "extra == 'rocm'", specifier = "==2.7.0" }, + { name = "torchdata", marker = "extra == 'cpu'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'cuda'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'mchip'", specifier = "==0.7.1" }, + { name = "torchdata", marker = "extra == 'rocm'", specifier = "==0.7.1" }, + { name = "umap-learn" }, + { name = "xgboost" }, +] +provides-extras = ["cpu", "cuda", "docs", "mchip", "rocm"] + +[package.metadata.requires-dev] +dev = [ + { name = "ipykernel" }, + { name = "jupyter" }, + { name = "jupyterlab" }, + { name = "matplotcheck" }, + { name = "pytest" }, + { name = "pytest-cov" }, + { name = "pytest-mock" }, + { name = "pytest-xdist" }, + { name = "ruff" }, +] +docker = [{ name = "networkx", specifier = "==2.8.8" }] + +[[package]] +name = "attrs" +version = "26.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" }, +] + +[[package]] +name = "babel" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/b2/51899539b6ceeeb420d40ed3cd4b7a40519404f9baf3d4ac99dc413a834b/babel-2.18.0.tar.gz", hash = "sha256:b80b99a14bd085fcacfa15c9165f651fbb3406e66cc603abf11c5750937c992d", size = 9959554, upload-time = "2026-02-01T12:30:56.078Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl", hash = "sha256:e2b422b277c2b9a9630c1d7903c2a00d0830c409c59ac8cae9081c92f1aeba35", size = 10196845, upload-time = "2026-02-01T12:30:53.445Z" }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.14.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/b0/1c6a16426d389813b48d95e26898aff79abbde42ad353958ad95cc8c9b21/beautifulsoup4-4.14.3.tar.gz", hash = "sha256:6292b1c5186d356bba669ef9f7f051757099565ad9ada5dd630bd9de5fa7fb86", size = 627737, upload-time = "2025-11-30T15:08:26.084Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/39/47f9197bdd44df24d67ac8893641e16f386c984a0619ef2ee4c51fbbc019/beautifulsoup4-4.14.3-py3-none-any.whl", hash = "sha256:0918bfe44902e6ad8d57732ba310582e98da931428d231a5ecb9e7c703a735bb", size = 107721, upload-time = "2025-11-30T15:08:24.087Z" }, +] + +[[package]] +name = "bleach" +version = "6.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "webencodings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/07/18/3c8523962314be6bf4c8989c79ad9531c825210dd13a8669f6b84336e8bd/bleach-6.3.0.tar.gz", hash = "sha256:6f3b91b1c0a02bb9a78b5a454c92506aa0fdf197e1d5e114d2e00c6f64306d22", size = 203533, upload-time = "2025-10-27T17:57:39.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/3a/577b549de0cc09d95f11087ee63c739bba856cd3952697eec4c4bb91350a/bleach-6.3.0-py3-none-any.whl", hash = "sha256:fe10ec77c93ddf3d13a73b035abaac7a9f5e436513864ccdad516693213c65d6", size = 164437, upload-time = "2025-10-27T17:57:37.538Z" }, +] + +[package.optional-dependencies] +css = [ + { name = "tinycss2" }, +] + +[[package]] +name = "bokeh" +version = "3.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "jinja2" }, + { name = "narwhals" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyyaml" }, + { name = "tornado", marker = "sys_platform != 'emscripten'" }, + { name = "xyzservices" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/0d/fabb70707646217e4b0e3943e05730eab8c1f7b7e7485145f8594b52e606/bokeh-3.9.0.tar.gz", hash = "sha256:775219714a8496973ddbae16b1861606ba19fe670a421e4d43267b41148e07a3", size = 5740345, upload-time = "2026-03-11T17:58:34.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/0b/bdf449df87be3f07b23091ceafee8c3ef569cf6d2fb7edec6e3b12b3faa4/bokeh-3.9.0-py3-none-any.whl", hash = "sha256:b252bfb16a505f0e0c57d532d0df308ae1667235bafc622aa9441fe9e7c5ce4a", size = 6396068, upload-time = "2026-03-11T17:58:31.645Z" }, +] + +[[package]] +name = "branca" +version = "0.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/14/9d409124bda3f4ab7af3802aba07181d1fd56aa96cc4b999faea6a27a0d2/branca-0.8.2.tar.gz", hash = "sha256:e5040f4c286e973658c27de9225c1a5a7356dd0702a7c8d84c0f0dfbde388fe7", size = 27890, upload-time = "2025-10-06T10:28:20.305Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/50/fc9680058e63161f2f63165b84c957a0df1415431104c408e8104a3a18ef/branca-0.8.2-py3-none-any.whl", hash = "sha256:2ebaef3983e3312733c1ae2b793b0a8ba3e1c4edeb7598e10328505280cf2f7c", size = 26193, upload-time = "2025-10-06T10:28:19.255Z" }, +] + +[[package]] +name = "bravado" +version = "12.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "bravado-core" }, + { name = "monotonic" }, + { name = "msgpack" }, + { name = "python-dateutil" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "simplejson" }, + { name = "six" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/88/5d/5a1eda160279e4a617c38da71fbb7d92121cfc7fcf8592368286f771e314/bravado-12.0.1.tar.gz", hash = "sha256:637cc04d53c07e950792595081f9f8bf4dea226ecd1029207cb1d328ea400e20", size = 37647, upload-time = "2025-05-07T20:25:02.108Z" } + +[[package]] +name = "bravado-core" +version = "6.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonref" }, + { name = "jsonschema", extra = ["format-nongpl"] }, + { name = "msgpack" }, + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "simplejson" }, + { name = "six" }, + { name = "swagger-spec-validator" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/6d/1ffa5c64533bc2fa436afdb9ef287cb0c0d443ef1e84db0601b0af7ce6f5/bravado-core-6.1.1.tar.gz", hash = "sha256:8cf1f7bbac2f7c696d37e970253938b5be4ddec92c8d5e64400b17469c3714b4", size = 63851, upload-time = "2023-12-14T22:27:42.168Z" } + +[[package]] +name = "certifi" +version = "2026.2.25" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/af/2d/7bf41579a8986e348fa033a31cdd0e4121114f6bce2457e8876010b092dd/certifi-2026.2.25.tar.gz", hash = "sha256:e887ab5cee78ea814d3472169153c2d12cd43b14bd03329a39a9c6e2e80bfba7", size = 155029, upload-time = "2026-02-25T02:54:17.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl", hash = "sha256:027692e4402ad994f1c42e52a4997a9763c646b73e4096e4d5d6db8af1d6f0fa", size = 153684, upload-time = "2026-02-25T02:54:15.766Z" }, +] + +[[package]] +name = "cffi" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "implementation_name != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/d7/516d984057745a6cd96575eea814fe1edd6646ee6efd552fb7b0921dec83/cffi-2.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:0cf2d91ecc3fcc0625c2c530fe004f82c110405f101548512cce44322fa8ac44", size = 184283, upload-time = "2025-09-08T23:22:08.01Z" }, + { url = "https://files.pythonhosted.org/packages/9e/84/ad6a0b408daa859246f57c03efd28e5dd1b33c21737c2db84cae8c237aa5/cffi-2.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f73b96c41e3b2adedc34a7356e64c8eb96e03a3782b535e043a986276ce12a49", size = 180504, upload-time = "2025-09-08T23:22:10.637Z" }, + { url = "https://files.pythonhosted.org/packages/50/bd/b1a6362b80628111e6653c961f987faa55262b4002fcec42308cad1db680/cffi-2.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:53f77cbe57044e88bbd5ed26ac1d0514d2acf0591dd6bb02a3ae37f76811b80c", size = 208811, upload-time = "2025-09-08T23:22:12.267Z" }, + { url = "https://files.pythonhosted.org/packages/4f/27/6933a8b2562d7bd1fb595074cf99cc81fc3789f6a6c05cdabb46284a3188/cffi-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3e837e369566884707ddaf85fc1744b47575005c0a229de3327f8f9a20f4efeb", size = 216402, upload-time = "2025-09-08T23:22:13.455Z" }, + { url = "https://files.pythonhosted.org/packages/05/eb/b86f2a2645b62adcfff53b0dd97e8dfafb5c8aa864bd0d9a2c2049a0d551/cffi-2.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:5eda85d6d1879e692d546a078b44251cdd08dd1cfb98dfb77b670c97cee49ea0", size = 203217, upload-time = "2025-09-08T23:22:14.596Z" }, + { url = "https://files.pythonhosted.org/packages/9f/e0/6cbe77a53acf5acc7c08cc186c9928864bd7c005f9efd0d126884858a5fe/cffi-2.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:9332088d75dc3241c702d852d4671613136d90fa6881da7d770a483fd05248b4", size = 203079, upload-time = "2025-09-08T23:22:15.769Z" }, + { url = "https://files.pythonhosted.org/packages/98/29/9b366e70e243eb3d14a5cb488dfd3a0b6b2f1fb001a203f653b93ccfac88/cffi-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc7de24befaeae77ba923797c7c87834c73648a05a4bde34b3b7e5588973a453", size = 216475, upload-time = "2025-09-08T23:22:17.427Z" }, + { url = "https://files.pythonhosted.org/packages/21/7a/13b24e70d2f90a322f2900c5d8e1f14fa7e2a6b3332b7309ba7b2ba51a5a/cffi-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf364028c016c03078a23b503f02058f1814320a56ad535686f90565636a9495", size = 218829, upload-time = "2025-09-08T23:22:19.069Z" }, + { url = "https://files.pythonhosted.org/packages/60/99/c9dc110974c59cc981b1f5b66e1d8af8af764e00f0293266824d9c4254bc/cffi-2.0.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e11e82b744887154b182fd3e7e8512418446501191994dbf9c9fc1f32cc8efd5", size = 211211, upload-time = "2025-09-08T23:22:20.588Z" }, + { url = "https://files.pythonhosted.org/packages/49/72/ff2d12dbf21aca1b32a40ed792ee6b40f6dc3a9cf1644bd7ef6e95e0ac5e/cffi-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8ea985900c5c95ce9db1745f7933eeef5d314f0565b27625d9a10ec9881e1bfb", size = 218036, upload-time = "2025-09-08T23:22:22.143Z" }, + { url = "https://files.pythonhosted.org/packages/e2/cc/027d7fb82e58c48ea717149b03bcadcbdc293553edb283af792bd4bcbb3f/cffi-2.0.0-cp310-cp310-win32.whl", hash = "sha256:1f72fb8906754ac8a2cc3f9f5aaa298070652a0ffae577e0ea9bd480dc3c931a", size = 172184, upload-time = "2025-09-08T23:22:23.328Z" }, + { url = "https://files.pythonhosted.org/packages/33/fa/072dd15ae27fbb4e06b437eb6e944e75b068deb09e2a2826039e49ee2045/cffi-2.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:b18a3ed7d5b3bd8d9ef7a8cb226502c6bf8308df1525e1cc676c3680e7176739", size = 182790, upload-time = "2025-09-08T23:22:24.752Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/a1/67fe25fac3c7642725500a3f6cfe5821ad557c3abb11c9d20d12c7008d3e/charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5", size = 144271, upload-time = "2026-04-02T09:28:39.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/08/0f303cb0b529e456bb116f2d50565a482694fbb94340bf56d44677e7ed03/charset_normalizer-3.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cdd68a1fb318e290a2077696b7eb7a21a49163c455979c639bf5a5dcdc46617d", size = 315182, upload-time = "2026-04-02T09:25:40.673Z" }, + { url = "https://files.pythonhosted.org/packages/24/47/b192933e94b546f1b1fe4df9cc1f84fcdbf2359f8d1081d46dd029b50207/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e17b8d5d6a8c47c85e68ca8379def1303fd360c3e22093a807cd34a71cd082b8", size = 209329, upload-time = "2026-04-02T09:25:42.354Z" }, + { url = "https://files.pythonhosted.org/packages/c2/b4/01fa81c5ca6141024d89a8fc15968002b71da7f825dd14113207113fabbd/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:511ef87c8aec0783e08ac18565a16d435372bc1ac25a91e6ac7f5ef2b0bff790", size = 231230, upload-time = "2026-04-02T09:25:44.281Z" }, + { url = "https://files.pythonhosted.org/packages/20/f7/7b991776844dfa058017e600e6e55ff01984a063290ca5622c0b63162f68/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:007d05ec7321d12a40227aae9e2bc6dca73f3cb21058999a1df9e193555a9dcc", size = 225890, upload-time = "2026-04-02T09:25:45.475Z" }, + { url = "https://files.pythonhosted.org/packages/20/e7/bed0024a0f4ab0c8a9c64d4445f39b30c99bd1acd228291959e3de664247/charset_normalizer-3.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cf29836da5119f3c8a8a70667b0ef5fdca3bb12f80fd06487cfa575b3909b393", size = 216930, upload-time = "2026-04-02T09:25:46.58Z" }, + { url = "https://files.pythonhosted.org/packages/e2/ab/b18f0ab31cdd7b3ddb8bb76c4a414aeb8160c9810fdf1bc62f269a539d87/charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:12d8baf840cc7889b37c7c770f478adea7adce3dcb3944d02ec87508e2dcf153", size = 202109, upload-time = "2026-04-02T09:25:48.031Z" }, + { url = "https://files.pythonhosted.org/packages/82/e5/7e9440768a06dfb3075936490cb82dbf0ee20a133bf0dd8551fa096914ec/charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d560742f3c0d62afaccf9f41fe485ed69bd7661a241f86a3ef0f0fb8b1a397af", size = 214684, upload-time = "2026-04-02T09:25:49.245Z" }, + { url = "https://files.pythonhosted.org/packages/71/94/8c61d8da9f062fdf457c80acfa25060ec22bf1d34bbeaca4350f13bcfd07/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b14b2d9dac08e28bb8046a1a0434b1750eb221c8f5b87a68f4fa11a6f97b5e34", size = 212785, upload-time = "2026-04-02T09:25:50.671Z" }, + { url = "https://files.pythonhosted.org/packages/66/cd/6e9889c648e72c0ab2e5967528bb83508f354d706637bc7097190c874e13/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:bc17a677b21b3502a21f66a8cc64f5bfad4df8a0b8434d661666f8ce90ac3af1", size = 203055, upload-time = "2026-04-02T09:25:51.802Z" }, + { url = "https://files.pythonhosted.org/packages/92/2e/7a951d6a08aefb7eb8e1b54cdfb580b1365afdd9dd484dc4bee9e5d8f258/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:750e02e074872a3fad7f233b47734166440af3cdea0add3e95163110816d6752", size = 232502, upload-time = "2026-04-02T09:25:53.388Z" }, + { url = "https://files.pythonhosted.org/packages/58/d5/abcf2d83bf8e0a1286df55cd0dc1d49af0da4282aa77e986df343e7de124/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:4e5163c14bffd570ef2affbfdd77bba66383890797df43dc8b4cc7d6f500bf53", size = 214295, upload-time = "2026-04-02T09:25:54.765Z" }, + { url = "https://files.pythonhosted.org/packages/47/3a/7d4cd7ed54be99973a0dc176032cba5cb1f258082c31fa6df35cff46acfc/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6ed74185b2db44f41ef35fd1617c5888e59792da9bbc9190d6c7300617182616", size = 227145, upload-time = "2026-04-02T09:25:55.904Z" }, + { url = "https://files.pythonhosted.org/packages/1d/98/3a45bf8247889cf28262ebd3d0872edff11565b2a1e3064ccb132db3fbb0/charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:94e1885b270625a9a828c9793b4d52a64445299baa1fea5a173bf1d3dd9a1a5a", size = 218884, upload-time = "2026-04-02T09:25:57.074Z" }, + { url = "https://files.pythonhosted.org/packages/ad/80/2e8b7f8915ed5c9ef13aa828d82738e33888c485b65ebf744d615040c7ea/charset_normalizer-3.4.7-cp310-cp310-win32.whl", hash = "sha256:6785f414ae0f3c733c437e0f3929197934f526d19dfaa75e18fdb4f94c6fb374", size = 148343, upload-time = "2026-04-02T09:25:58.199Z" }, + { url = "https://files.pythonhosted.org/packages/35/1b/3b8c8c77184af465ee9ad88b5aea46ea6b2e1f7b9dc9502891e37af21e30/charset_normalizer-3.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:6696b7688f54f5af4462118f0bfa7c1621eeb87154f77fa04b9295ce7a8f2943", size = 159174, upload-time = "2026-04-02T09:25:59.322Z" }, + { url = "https://files.pythonhosted.org/packages/be/c1/feb40dca40dbb21e0a908801782d9288c64fc8d8e562c2098e9994c8c21b/charset_normalizer-3.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:66671f93accb62ed07da56613636f3641f1a12c13046ce91ffc923721f23c008", size = 147805, upload-time = "2026-04-02T09:26:00.756Z" }, + { url = "https://files.pythonhosted.org/packages/db/8f/61959034484a4a7c527811f4721e75d02d653a35afb0b6054474d8185d4c/charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d", size = 61958, upload-time = "2026-04-02T09:28:37.794Z" }, +] + +[[package]] +name = "click" +version = "8.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/75/31212c6bf2503fdf920d87fee5d7a86a2e3bcf444984126f13d8e4016804/click-8.3.2.tar.gz", hash = "sha256:14162b8b3b3550a7d479eafa77dfd3c38d9dc8951f6f69c78913a8f9a7540fd5", size = 302856, upload-time = "2026-04-03T19:14:45.118Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/20/71885d8b97d4f3dde17b1fdb92dbd4908b00541c5a3379787137285f602e/click-8.3.2-py3-none-any.whl", hash = "sha256:1924d2c27c5653561cd2cae4548d1406039cb79b858b747cfea24924bbc1616d", size = 108379, upload-time = "2026-04-03T19:14:43.505Z" }, +] + +[[package]] +name = "click-plugins" +version = "1.1.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/a4/34847b59150da33690a36da3681d6bbc2ec14ee9a846bc30a6746e5984e4/click_plugins-1.1.1.2.tar.gz", hash = "sha256:d7af3984a99d243c131aa1a828331e7630f4a88a9741fd05c927b204bcf92261", size = 8343, upload-time = "2025-06-25T00:47:37.555Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/9a/2abecb28ae875e39c8cad711eb1186d8d14eab564705325e77e4e6ab9ae5/click_plugins-1.1.1.2-py2.py3-none-any.whl", hash = "sha256:008d65743833ffc1f5417bf0e78e8d2c23aab04d9745ba817bd3e71b0feb6aa6", size = 11051, upload-time = "2025-06-25T00:47:36.731Z" }, +] + +[[package]] +name = "cligj" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ea/0d/837dbd5d8430fd0f01ed72c4cfb2f548180f4c68c635df84ce87956cff32/cligj-0.7.2.tar.gz", hash = "sha256:a4bc13d623356b373c2c27c53dbd9c68cae5d526270bfa71f6c6fa69669c6b27", size = 9803, upload-time = "2021-05-28T21:23:27.935Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/86/43fa9f15c5b9fb6e82620428827cd3c284aa933431405d1bcf5231ae3d3e/cligj-0.7.2-py3-none-any.whl", hash = "sha256:c1ca117dbce1fe20a5809dc96f01e1c2840f6dcc939b3ddbb1111bf330ba82df", size = 7069, upload-time = "2021-05-28T21:23:26.877Z" }, +] + +[[package]] +name = "cloudpickle" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/27/fb/576f067976d320f5f0114a8d9fa1215425441bb35627b1993e5afd8111e5/cloudpickle-3.1.2.tar.gz", hash = "sha256:7fda9eb655c9c230dab534f1983763de5835249750e85fbcef43aaa30a9a2414", size = 22330, upload-time = "2025-11-03T09:25:26.604Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/39/799be3f2f0f38cc727ee3b4f1445fe6d5e4133064ec2e4115069418a5bb6/cloudpickle-3.1.2-py3-none-any.whl", hash = "sha256:9acb47f6afd73f60dc1df93bb801b472f05ff42fa6c84167d25cb206be1fbf4a", size = 22228, upload-time = "2025-11-03T09:25:25.534Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "coloredlogs" +version = "15.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "humanfriendly" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/c7/eed8f27100517e8c0e6b923d5f0845d0cb99763da6fdee00478f91db7325/coloredlogs-15.0.1.tar.gz", hash = "sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0", size = 278520, upload-time = "2021-06-11T10:22:45.202Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/06/3d6badcf13db419e25b07041d9c7b4a2c331d3f4e7134445ec5df57714cd/coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934", size = 46018, upload-time = "2021-06-11T10:22:42.561Z" }, +] + +[[package]] +name = "colorlog" +version = "6.10.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a2/61/f083b5ac52e505dfc1c624eafbf8c7589a0d7f32daa398d2e7590efa5fda/colorlog-6.10.1.tar.gz", hash = "sha256:eb4ae5cb65fe7fec7773c2306061a8e63e02efc2c72eba9d27b0fa23c94f1321", size = 17162, upload-time = "2025-10-16T16:14:11.978Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/c1/e419ef3723a074172b68aaa89c9f3de486ed4c2399e2dbd8113a4fdcaf9e/colorlog-6.10.1-py3-none-any.whl", hash = "sha256:2d7e8348291948af66122cff006c9f8da6255d224e7cf8e37d8de2df3bad8c9c", size = 11743, upload-time = "2025-10-16T16:14:10.512Z" }, +] + +[[package]] +name = "comm" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/13/7d740c5849255756bc17888787313b61fd38a0a8304fc4f073dfc46122aa/comm-0.2.3.tar.gz", hash = "sha256:2dc8048c10962d55d7ad693be1e7045d891b7ce8d999c97963a5e3e99c055971", size = 6319, upload-time = "2025-07-25T14:02:04.452Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl", hash = "sha256:c615d91d75f7f04f095b30d1c1711babd43bdc6419c1be9886a85f2f4e489417", size = 7294, upload-time = "2025-07-25T14:02:02.896Z" }, +] + +[[package]] +name = "contourpy" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/54/eb9bfc647b19f2009dd5c7f5ec51c4e6ca831725f1aea7a993034f483147/contourpy-1.3.2.tar.gz", hash = "sha256:b6945942715a034c671b7fc54f9588126b0b8bf23db2696e3ca8328f3ff0ab54", size = 13466130, upload-time = "2025-04-15T17:47:53.79Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/a3/da4153ec8fe25d263aa48c1a4cbde7f49b59af86f0b6f7862788c60da737/contourpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba38e3f9f330af820c4b27ceb4b9c7feee5fe0493ea53a8720f4792667465934", size = 268551, upload-time = "2025-04-15T17:34:46.581Z" }, + { url = "https://files.pythonhosted.org/packages/2f/6c/330de89ae1087eb622bfca0177d32a7ece50c3ef07b28002de4757d9d875/contourpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dc41ba0714aa2968d1f8674ec97504a8f7e334f48eeacebcaa6256213acb0989", size = 253399, upload-time = "2025-04-15T17:34:51.427Z" }, + { url = "https://files.pythonhosted.org/packages/c1/bd/20c6726b1b7f81a8bee5271bed5c165f0a8e1f572578a9d27e2ccb763cb2/contourpy-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9be002b31c558d1ddf1b9b415b162c603405414bacd6932d031c5b5a8b757f0d", size = 312061, upload-time = "2025-04-15T17:34:55.961Z" }, + { url = "https://files.pythonhosted.org/packages/22/fc/a9665c88f8a2473f823cf1ec601de9e5375050f1958cbb356cdf06ef1ab6/contourpy-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8d2e74acbcba3bfdb6d9d8384cdc4f9260cae86ed9beee8bd5f54fee49a430b9", size = 351956, upload-time = "2025-04-15T17:35:00.992Z" }, + { url = "https://files.pythonhosted.org/packages/25/eb/9f0a0238f305ad8fb7ef42481020d6e20cf15e46be99a1fcf939546a177e/contourpy-1.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e259bced5549ac64410162adc973c5e2fb77f04df4a439d00b478e57a0e65512", size = 320872, upload-time = "2025-04-15T17:35:06.177Z" }, + { url = "https://files.pythonhosted.org/packages/32/5c/1ee32d1c7956923202f00cf8d2a14a62ed7517bdc0ee1e55301227fc273c/contourpy-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad687a04bc802cbe8b9c399c07162a3c35e227e2daccf1668eb1f278cb698631", size = 325027, upload-time = "2025-04-15T17:35:11.244Z" }, + { url = "https://files.pythonhosted.org/packages/83/bf/9baed89785ba743ef329c2b07fd0611d12bfecbedbdd3eeecf929d8d3b52/contourpy-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cdd22595308f53ef2f891040ab2b93d79192513ffccbd7fe19be7aa773a5e09f", size = 1306641, upload-time = "2025-04-15T17:35:26.701Z" }, + { url = "https://files.pythonhosted.org/packages/d4/cc/74e5e83d1e35de2d28bd97033426b450bc4fd96e092a1f7a63dc7369b55d/contourpy-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b4f54d6a2defe9f257327b0f243612dd051cc43825587520b1bf74a31e2f6ef2", size = 1374075, upload-time = "2025-04-15T17:35:43.204Z" }, + { url = "https://files.pythonhosted.org/packages/0c/42/17f3b798fd5e033b46a16f8d9fcb39f1aba051307f5ebf441bad1ecf78f8/contourpy-1.3.2-cp310-cp310-win32.whl", hash = "sha256:f939a054192ddc596e031e50bb13b657ce318cf13d264f095ce9db7dc6ae81c0", size = 177534, upload-time = "2025-04-15T17:35:46.554Z" }, + { url = "https://files.pythonhosted.org/packages/54/ec/5162b8582f2c994721018d0c9ece9dc6ff769d298a8ac6b6a652c307e7df/contourpy-1.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:c440093bbc8fc21c637c03bafcbef95ccd963bc6e0514ad887932c18ca2a759a", size = 221188, upload-time = "2025-04-15T17:35:50.064Z" }, + { url = "https://files.pythonhosted.org/packages/33/05/b26e3c6ecc05f349ee0013f0bb850a761016d89cec528a98193a48c34033/contourpy-1.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fd93cc7f3139b6dd7aab2f26a90dde0aa9fc264dbf70f6740d498a70b860b82c", size = 265681, upload-time = "2025-04-15T17:44:59.314Z" }, + { url = "https://files.pythonhosted.org/packages/2b/25/ac07d6ad12affa7d1ffed11b77417d0a6308170f44ff20fa1d5aa6333f03/contourpy-1.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:107ba8a6a7eec58bb475329e6d3b95deba9440667c4d62b9b6063942b61d7f16", size = 315101, upload-time = "2025-04-15T17:45:04.165Z" }, + { url = "https://files.pythonhosted.org/packages/8f/4d/5bb3192bbe9d3f27e3061a6a8e7733c9120e203cb8515767d30973f71030/contourpy-1.3.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ded1706ed0c1049224531b81128efbd5084598f18d8a2d9efae833edbd2b40ad", size = 220599, upload-time = "2025-04-15T17:45:08.456Z" }, +] + +[[package]] +name = "coverage" +version = "7.13.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/e0/70553e3000e345daff267cec284ce4cbf3fc141b6da229ac52775b5428f1/coverage-7.13.5.tar.gz", hash = "sha256:c81f6515c4c40141f83f502b07bbfa5c240ba25bbe73da7b33f1e5b6120ff179", size = 915967, upload-time = "2026-03-17T10:33:18.341Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/33/e8c48488c29a73fd089f9d71f9653c1be7478f2ad6b5bc870db11a55d23d/coverage-7.13.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0723d2c96324561b9aa76fb982406e11d93cdb388a7a7da2b16e04719cf7ca5", size = 219255, upload-time = "2026-03-17T10:29:51.081Z" }, + { url = "https://files.pythonhosted.org/packages/da/bd/b0ebe9f677d7f4b74a3e115eec7ddd4bcf892074963a00d91e8b164a6386/coverage-7.13.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:52f444e86475992506b32d4e5ca55c24fc88d73bcbda0e9745095b28ef4dc0cf", size = 219772, upload-time = "2026-03-17T10:29:52.867Z" }, + { url = "https://files.pythonhosted.org/packages/48/cc/5cb9502f4e01972f54eedd48218bb203fe81e294be606a2bc93970208013/coverage-7.13.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:704de6328e3d612a8f6c07000a878ff38181ec3263d5a11da1db294fa6a9bdf8", size = 246532, upload-time = "2026-03-17T10:29:54.688Z" }, + { url = "https://files.pythonhosted.org/packages/7d/d8/3217636d86c7e7b12e126e4f30ef1581047da73140614523af7495ed5f2d/coverage-7.13.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:a1a6d79a14e1ec1832cabc833898636ad5f3754a678ef8bb4908515208bf84f4", size = 248333, upload-time = "2026-03-17T10:29:56.221Z" }, + { url = "https://files.pythonhosted.org/packages/2b/30/2002ac6729ba2d4357438e2ed3c447ad8562866c8c63fc16f6dfc33afe56/coverage-7.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:79060214983769c7ba3f0cee10b54c97609dca4d478fa1aa32b914480fd5738d", size = 250211, upload-time = "2026-03-17T10:29:57.938Z" }, + { url = "https://files.pythonhosted.org/packages/6c/85/552496626d6b9359eb0e2f86f920037c9cbfba09b24d914c6e1528155f7d/coverage-7.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:356e76b46783a98c2a2fe81ec79df4883a1e62895ea952968fb253c114e7f930", size = 252125, upload-time = "2026-03-17T10:29:59.388Z" }, + { url = "https://files.pythonhosted.org/packages/44/21/40256eabdcbccdb6acf6b381b3016a154399a75fe39d406f790ae84d1f3c/coverage-7.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0cef0cdec915d11254a7f549c1170afecce708d30610c6abdded1f74e581666d", size = 247219, upload-time = "2026-03-17T10:30:01.199Z" }, + { url = "https://files.pythonhosted.org/packages/b1/e8/96e2a6c3f21a0ea77d7830b254a1542d0328acc8d7bdf6a284ba7e529f77/coverage-7.13.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dc022073d063b25a402454e5712ef9e007113e3a676b96c5f29b2bda29352f40", size = 248248, upload-time = "2026-03-17T10:30:03.317Z" }, + { url = "https://files.pythonhosted.org/packages/da/ba/8477f549e554827da390ec659f3c38e4b6d95470f4daafc2d8ff94eaa9c2/coverage-7.13.5-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9b74db26dfea4f4e50d48a4602207cd1e78be33182bc9cbf22da94f332f99878", size = 246254, upload-time = "2026-03-17T10:30:04.832Z" }, + { url = "https://files.pythonhosted.org/packages/55/59/bc22aef0e6aa179d5b1b001e8b3654785e9adf27ef24c93dc4228ebd5d68/coverage-7.13.5-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ad146744ca4fd09b50c482650e3c1b1f4dfa1d4792e0a04a369c7f23336f0400", size = 250067, upload-time = "2026-03-17T10:30:06.535Z" }, + { url = "https://files.pythonhosted.org/packages/de/1b/c6a023a160806a5137dca53468fd97530d6acad24a22003b1578a9c2e429/coverage-7.13.5-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:c555b48be1853fe3997c11c4bd521cdd9a9612352de01fa4508f16ec341e6fe0", size = 246521, upload-time = "2026-03-17T10:30:08.486Z" }, + { url = "https://files.pythonhosted.org/packages/2d/3f/3532c85a55aa2f899fa17c186f831cfa1aa434d88ff792a709636f64130e/coverage-7.13.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7034b5c56a58ae5e85f23949d52c14aca2cfc6848a31764995b7de88f13a1ea0", size = 247126, upload-time = "2026-03-17T10:30:09.966Z" }, + { url = "https://files.pythonhosted.org/packages/aa/2e/b9d56af4a24ef45dfbcda88e06870cb7d57b2b0bfa3a888d79b4c8debd76/coverage-7.13.5-cp310-cp310-win32.whl", hash = "sha256:eb7fdf1ef130660e7415e0253a01a7d5a88c9c4d158bcf75cbbd922fd65a5b58", size = 221860, upload-time = "2026-03-17T10:30:11.393Z" }, + { url = "https://files.pythonhosted.org/packages/9f/cc/d938417e7a4d7f0433ad4edee8bb2acdc60dc7ac5af19e2a07a048ecbee3/coverage-7.13.5-cp310-cp310-win_amd64.whl", hash = "sha256:3e1bb5f6c78feeb1be3475789b14a0f0a5b47d505bfc7267126ccbd50289999e", size = 222788, upload-time = "2026-03-17T10:30:12.886Z" }, + { url = "https://files.pythonhosted.org/packages/9e/ee/a4cf96b8ce1e566ed238f0659ac2d3f007ed1d14b181bcb684e19561a69a/coverage-7.13.5-py3-none-any.whl", hash = "sha256:34b02417cf070e173989b3db962f7ed56d2f644307b2cf9d5a0f258e13084a61", size = 211346, upload-time = "2026-03-17T10:33:15.691Z" }, +] + +[package.optional-dependencies] +toml = [ + { name = "tomli" }, +] + +[[package]] +name = "cryptography" +version = "46.0.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/47/93/ac8f3d5ff04d54bc814e961a43ae5b0b146154c89c61b47bb07557679b18/cryptography-46.0.7.tar.gz", hash = "sha256:e4cfd68c5f3e0bfdad0d38e023239b96a2fe84146481852dffbcca442c245aa5", size = 750652, upload-time = "2026-04-08T01:57:54.692Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/5d/4a8f770695d73be252331e60e526291e3df0c9b27556a90a6b47bccca4c2/cryptography-46.0.7-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:ea42cbe97209df307fdc3b155f1b6fa2577c0defa8f1f7d3be7d31d189108ad4", size = 7179869, upload-time = "2026-04-08T01:56:17.157Z" }, + { url = "https://files.pythonhosted.org/packages/5f/45/6d80dc379b0bbc1f9d1e429f42e4cb9e1d319c7a8201beffd967c516ea01/cryptography-46.0.7-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b36a4695e29fe69215d75960b22577197aca3f7a25b9cf9d165dcfe9d80bc325", size = 4275492, upload-time = "2026-04-08T01:56:19.36Z" }, + { url = "https://files.pythonhosted.org/packages/4a/9a/1765afe9f572e239c3469f2cb429f3ba7b31878c893b246b4b2994ffe2fe/cryptography-46.0.7-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5ad9ef796328c5e3c4ceed237a183f5d41d21150f972455a9d926593a1dcb308", size = 4426670, upload-time = "2026-04-08T01:56:21.415Z" }, + { url = "https://files.pythonhosted.org/packages/8f/3e/af9246aaf23cd4ee060699adab1e47ced3f5f7e7a8ffdd339f817b446462/cryptography-46.0.7-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:73510b83623e080a2c35c62c15298096e2a5dc8d51c3b4e1740211839d0dea77", size = 4280275, upload-time = "2026-04-08T01:56:23.539Z" }, + { url = "https://files.pythonhosted.org/packages/0f/54/6bbbfc5efe86f9d71041827b793c24811a017c6ac0fd12883e4caa86b8ed/cryptography-46.0.7-cp311-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:cbd5fb06b62bd0721e1170273d3f4d5a277044c47ca27ee257025146c34cbdd1", size = 4928402, upload-time = "2026-04-08T01:56:25.624Z" }, + { url = "https://files.pythonhosted.org/packages/2d/cf/054b9d8220f81509939599c8bdbc0c408dbd2bdd41688616a20731371fe0/cryptography-46.0.7-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:420b1e4109cc95f0e5700eed79908cef9268265c773d3a66f7af1eef53d409ef", size = 4459985, upload-time = "2026-04-08T01:56:27.309Z" }, + { url = "https://files.pythonhosted.org/packages/f9/46/4e4e9c6040fb01c7467d47217d2f882daddeb8828f7df800cb806d8a2288/cryptography-46.0.7-cp311-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:24402210aa54baae71d99441d15bb5a1919c195398a87b563df84468160a65de", size = 3990652, upload-time = "2026-04-08T01:56:29.095Z" }, + { url = "https://files.pythonhosted.org/packages/36/5f/313586c3be5a2fbe87e4c9a254207b860155a8e1f3cca99f9910008e7d08/cryptography-46.0.7-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:8a469028a86f12eb7d2fe97162d0634026d92a21f3ae0ac87ed1c4a447886c83", size = 4279805, upload-time = "2026-04-08T01:56:30.928Z" }, + { url = "https://files.pythonhosted.org/packages/69/33/60dfc4595f334a2082749673386a4d05e4f0cf4df8248e63b2c3437585f2/cryptography-46.0.7-cp311-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:9694078c5d44c157ef3162e3bf3946510b857df5a3955458381d1c7cfc143ddb", size = 4892883, upload-time = "2026-04-08T01:56:32.614Z" }, + { url = "https://files.pythonhosted.org/packages/c7/0b/333ddab4270c4f5b972f980adef4faa66951a4aaf646ca067af597f15563/cryptography-46.0.7-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:42a1e5f98abb6391717978baf9f90dc28a743b7d9be7f0751a6f56a75d14065b", size = 4459756, upload-time = "2026-04-08T01:56:34.306Z" }, + { url = "https://files.pythonhosted.org/packages/d2/14/633913398b43b75f1234834170947957c6b623d1701ffc7a9600da907e89/cryptography-46.0.7-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:91bbcb08347344f810cbe49065914fe048949648f6bd5c2519f34619142bbe85", size = 4410244, upload-time = "2026-04-08T01:56:35.977Z" }, + { url = "https://files.pythonhosted.org/packages/10/f2/19ceb3b3dc14009373432af0c13f46aa08e3ce334ec6eff13492e1812ccd/cryptography-46.0.7-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5d1c02a14ceb9148cc7816249f64f623fbfee39e8c03b3650d842ad3f34d637e", size = 4674868, upload-time = "2026-04-08T01:56:38.034Z" }, + { url = "https://files.pythonhosted.org/packages/1a/bb/a5c213c19ee94b15dfccc48f363738633a493812687f5567addbcbba9f6f/cryptography-46.0.7-cp311-abi3-win32.whl", hash = "sha256:d23c8ca48e44ee015cd0a54aeccdf9f09004eba9fc96f38c911011d9ff1bd457", size = 3026504, upload-time = "2026-04-08T01:56:39.666Z" }, + { url = "https://files.pythonhosted.org/packages/2b/02/7788f9fefa1d060ca68717c3901ae7fffa21ee087a90b7f23c7a603c32ae/cryptography-46.0.7-cp311-abi3-win_amd64.whl", hash = "sha256:397655da831414d165029da9bc483bed2fe0e75dde6a1523ec2fe63f3c46046b", size = 3488363, upload-time = "2026-04-08T01:56:41.893Z" }, + { url = "https://files.pythonhosted.org/packages/a7/7f/cd42fc3614386bc0c12f0cb3c4ae1fc2bbca5c9662dfed031514911d513d/cryptography-46.0.7-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:462ad5cb1c148a22b2e3bcc5ad52504dff325d17daf5df8d88c17dda1f75f2a4", size = 7165618, upload-time = "2026-04-08T01:57:10.645Z" }, + { url = "https://files.pythonhosted.org/packages/a5/d0/36a49f0262d2319139d2829f773f1b97ef8aef7f97e6e5bd21455e5a8fb5/cryptography-46.0.7-cp38-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:84d4cced91f0f159a7ddacad249cc077e63195c36aac40b4150e7a57e84fffe7", size = 4270628, upload-time = "2026-04-08T01:57:12.885Z" }, + { url = "https://files.pythonhosted.org/packages/8a/6c/1a42450f464dda6ffbe578a911f773e54dd48c10f9895a23a7e88b3e7db5/cryptography-46.0.7-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:128c5edfe5e5938b86b03941e94fac9ee793a94452ad1365c9fc3f4f62216832", size = 4415405, upload-time = "2026-04-08T01:57:14.923Z" }, + { url = "https://files.pythonhosted.org/packages/9a/92/4ed714dbe93a066dc1f4b4581a464d2d7dbec9046f7c8b7016f5286329e2/cryptography-46.0.7-cp38-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5e51be372b26ef4ba3de3c167cd3d1022934bc838ae9eaad7e644986d2a3d163", size = 4272715, upload-time = "2026-04-08T01:57:16.638Z" }, + { url = "https://files.pythonhosted.org/packages/b7/e6/a26b84096eddd51494bba19111f8fffe976f6a09f132706f8f1bf03f51f7/cryptography-46.0.7-cp38-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:cdf1a610ef82abb396451862739e3fc93b071c844399e15b90726ef7470eeaf2", size = 4918400, upload-time = "2026-04-08T01:57:19.021Z" }, + { url = "https://files.pythonhosted.org/packages/c7/08/ffd537b605568a148543ac3c2b239708ae0bd635064bab41359252ef88ed/cryptography-46.0.7-cp38-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:1d25aee46d0c6f1a501adcddb2d2fee4b979381346a78558ed13e50aa8a59067", size = 4450634, upload-time = "2026-04-08T01:57:21.185Z" }, + { url = "https://files.pythonhosted.org/packages/16/01/0cd51dd86ab5b9befe0d031e276510491976c3a80e9f6e31810cce46c4ad/cryptography-46.0.7-cp38-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:cdfbe22376065ffcf8be74dc9a909f032df19bc58a699456a21712d6e5eabfd0", size = 3985233, upload-time = "2026-04-08T01:57:22.862Z" }, + { url = "https://files.pythonhosted.org/packages/92/49/819d6ed3a7d9349c2939f81b500a738cb733ab62fbecdbc1e38e83d45e12/cryptography-46.0.7-cp38-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:abad9dac36cbf55de6eb49badd4016806b3165d396f64925bf2999bcb67837ba", size = 4271955, upload-time = "2026-04-08T01:57:24.814Z" }, + { url = "https://files.pythonhosted.org/packages/80/07/ad9b3c56ebb95ed2473d46df0847357e01583f4c52a85754d1a55e29e4d0/cryptography-46.0.7-cp38-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:935ce7e3cfdb53e3536119a542b839bb94ec1ad081013e9ab9b7cfd478b05006", size = 4879888, upload-time = "2026-04-08T01:57:26.88Z" }, + { url = "https://files.pythonhosted.org/packages/b8/c7/201d3d58f30c4c2bdbe9b03844c291feb77c20511cc3586daf7edc12a47b/cryptography-46.0.7-cp38-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:35719dc79d4730d30f1c2b6474bd6acda36ae2dfae1e3c16f2051f215df33ce0", size = 4449961, upload-time = "2026-04-08T01:57:29.068Z" }, + { url = "https://files.pythonhosted.org/packages/a5/ef/649750cbf96f3033c3c976e112265c33906f8e462291a33d77f90356548c/cryptography-46.0.7-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:7bbc6ccf49d05ac8f7d7b5e2e2c33830d4fe2061def88210a126d130d7f71a85", size = 4401696, upload-time = "2026-04-08T01:57:31.029Z" }, + { url = "https://files.pythonhosted.org/packages/41/52/a8908dcb1a389a459a29008c29966c1d552588d4ae6d43f3a1a4512e0ebe/cryptography-46.0.7-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a1529d614f44b863a7b480c6d000fe93b59acee9c82ffa027cfadc77521a9f5e", size = 4664256, upload-time = "2026-04-08T01:57:33.144Z" }, + { url = "https://files.pythonhosted.org/packages/4b/fa/f0ab06238e899cc3fb332623f337a7364f36f4bb3f2534c2bb95a35b132c/cryptography-46.0.7-cp38-abi3-win32.whl", hash = "sha256:f247c8c1a1fb45e12586afbb436ef21ff1e80670b2861a90353d9b025583d246", size = 3013001, upload-time = "2026-04-08T01:57:34.933Z" }, + { url = "https://files.pythonhosted.org/packages/d2/f1/00ce3bde3ca542d1acd8f8cfa38e446840945aa6363f9b74746394b14127/cryptography-46.0.7-cp38-abi3-win_amd64.whl", hash = "sha256:506c4ff91eff4f82bdac7633318a526b1d1309fc07ca76a3ad182cb5b686d6d3", size = 3472985, upload-time = "2026-04-08T01:57:36.714Z" }, +] + +[[package]] +name = "cycler" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, +] + +[[package]] +name = "debugpy" +version = "1.8.20" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/b7/cd8080344452e4874aae67c40d8940e2b4d47b01601a8fd9f44786c757c7/debugpy-1.8.20.tar.gz", hash = "sha256:55bc8701714969f1ab89a6d5f2f3d40c36f91b2cbe2f65d98bf8196f6a6a2c33", size = 1645207, upload-time = "2026-01-29T23:03:28.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/be/8bd693a0b9d53d48c8978fa5d889e06f3b5b03e45fd1ea1e78267b4887cb/debugpy-1.8.20-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:157e96ffb7f80b3ad36d808646198c90acb46fdcfd8bb1999838f0b6f2b59c64", size = 2099192, upload-time = "2026-01-29T23:03:29.707Z" }, + { url = "https://files.pythonhosted.org/packages/77/1b/85326d07432086a06361d493d2743edd0c4fc2ef62162be7f8618441ac37/debugpy-1.8.20-cp310-cp310-manylinux_2_34_x86_64.whl", hash = "sha256:c1178ae571aff42e61801a38b007af504ec8e05fde1c5c12e5a7efef21009642", size = 3088568, upload-time = "2026-01-29T23:03:31.467Z" }, + { url = "https://files.pythonhosted.org/packages/e8/60/3e08462ee3eccd10998853eb35947c416e446bfe2bc37dbb886b9044586c/debugpy-1.8.20-cp310-cp310-win32.whl", hash = "sha256:c29dd9d656c0fbd77906a6e6a82ae4881514aa3294b94c903ff99303e789b4a2", size = 5284399, upload-time = "2026-01-29T23:03:33.678Z" }, + { url = "https://files.pythonhosted.org/packages/72/43/09d49106e770fe558ced5e80df2e3c2ebee10e576eda155dcc5670473663/debugpy-1.8.20-cp310-cp310-win_amd64.whl", hash = "sha256:3ca85463f63b5dd0aa7aaa933d97cbc47c174896dcae8431695872969f981893", size = 5316388, upload-time = "2026-01-29T23:03:35.095Z" }, + { url = "https://files.pythonhosted.org/packages/e0/c3/7f67dea8ccf8fdcb9c99033bbe3e90b9e7395415843accb81428c441be2d/debugpy-1.8.20-py2.py3-none-any.whl", hash = "sha256:5be9bed9ae3be00665a06acaa48f8329d2b9632f15fd09f6a9a8c8d9907e54d7", size = 5337658, upload-time = "2026-01-29T23:04:17.404Z" }, +] + +[[package]] +name = "decorator" +version = "5.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/fa/6d96a0978d19e17b68d634497769987b16c8f4cd0a7a05048bec693caa6b/decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360", size = 56711, upload-time = "2025-02-24T04:41:34.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a", size = 9190, upload-time = "2025-02-24T04:41:32.565Z" }, +] + +[[package]] +name = "deepchem" +version = "2.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "rdkit" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "sympy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/1d/568b352513dfa4405da4acbce233c555bc4af29dd63e904537a8014cd585/deepchem-2.8.0.tar.gz", hash = "sha256:ba3f0cf3b589a33dd70757b1045600f52bb539bcd2b6fed9058cb76c7e9d4538", size = 847104, upload-time = "2024-04-02T02:20:46.332Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/c9/3bf4473e3b8131a733219346ff90cdab98e019b90c944fc339a599fc8896/deepchem-2.8.0-py3-none-any.whl", hash = "sha256:042c7639770e69b127f3df5e5bdf139893caa1706d512893d78728fd0a2de8b0", size = 1026290, upload-time = "2024-04-02T02:20:39.079Z" }, +] + +[[package]] +name = "defusedxml" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/d5/c66da9b79e5bdb124974bfe172b4daf3c984ebd9c2a06e2b8a4dc7331c72/defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69", size = 75520, upload-time = "2021-03-08T10:59:26.269Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61", size = 25604, upload-time = "2021-03-08T10:59:24.45Z" }, +] + +[[package]] +name = "dgl" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "networkx" }, + { name = "numpy" }, + { name = "psutil" }, + { name = "requests" }, + { name = "scipy" }, + { name = "torchdata" }, + { name = "tqdm" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/09/2d/c0a40c0d78a8e9c0c43e7f6e4aebebb39c8bf0f80380db2c1f1ba9f3bdfa/dgl-2.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ff74c7119cb1e87c1b06293eba8c22725594517062e74659b1a8636134b16974", size = 6889468, upload-time = "2024-03-05T07:16:21.004Z" }, + { url = "https://files.pythonhosted.org/packages/89/19/08b77e50de7beb9c011905167ab38ecee759a796447ed7ad466484eafb53/dgl-2.1.0-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:1fda987e01987d655e9a2b16281e1f31759bd5088ce08785422055c71abc0298", size = 7464359, upload-time = "2024-03-05T07:16:24.216Z" }, + { url = "https://files.pythonhosted.org/packages/ff/45/44fea6e5228602f5d6ad8b4f5a377f5cf5cb5cb6444d9e7cd99150f13fa2/dgl-2.1.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:336e5aed294b9f2f398be332caa0b256e6386e5a6a3a25dfe0715a161e6c4f94", size = 8548990, upload-time = "2024-03-05T07:16:26.655Z" }, + { url = "https://files.pythonhosted.org/packages/73/72/6bc97419cf8fa1e11420c674fafa3c03e4df9d91bfd8fd802011b5741ce9/dgl-2.1.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:65f5ae94c4c88433fc4524ab8c431494cfddd8100181d5de6df4ed08aa41d14d", size = 7430720, upload-time = "2024-03-05T07:16:29.505Z" }, +] + +[[package]] +name = "dgllife" +version = "0.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "hyperopt" }, + { name = "joblib" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "requests" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/84/5b2b0c5529a08ac547c743152354c6e02047874bdc81fab72c94780c21b5/dgllife-0.3.2.tar.gz", hash = "sha256:6a0baf112e5d89b0ced2d459872750540517eb03ae0a8cf71576c4b69fc6b553", size = 146565, upload-time = "2023-02-13T08:43:11.8Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/4e/f96023191b990533abf50fb172b2439e4ab5ee3efb67520a57facd33df12/dgllife-0.3.2-py3-none-any.whl", hash = "sha256:83147cf8972fd55f3bcbc9ab940c826fd8f85fd6c7973ae8daad2e472228e488", size = 226053, upload-time = "2023-02-13T08:43:09.359Z" }, +] + +[[package]] +name = "dill" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/e1/56027a71e31b02ddc53c7d65b01e68edf64dea2932122fe7746a516f75d5/dill-0.4.1.tar.gz", hash = "sha256:423092df4182177d4d8ba8290c8a5b640c66ab35ec7da59ccfa00f6fa3eea5fa", size = 187315, upload-time = "2026-01-19T02:36:56.85Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/77/dc8c558f7593132cf8fefec57c4f60c83b16941c574ac5f619abb3ae7933/dill-0.4.1-py3-none-any.whl", hash = "sha256:1e1ce33e978ae97fcfcff5638477032b801c46c7c65cf717f95fbc2248f79a9d", size = 120019, upload-time = "2026-01-19T02:36:55.663Z" }, +] + +[[package]] +name = "docutils" +version = "0.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", size = 2204444, upload-time = "2024-04-23T18:57:18.24Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", size = 587408, upload-time = "2024-04-23T18:57:14.835Z" }, +] + +[[package]] +name = "exceptiongroup" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" }, +] + +[[package]] +name = "execnet" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bf/89/780e11f9588d9e7128a3f87788354c7946a9cbb1401ad38a48c4db9a4f07/execnet-2.1.2.tar.gz", hash = "sha256:63d83bfdd9a23e35b9c6a3261412324f964c2ec8dcd8d3c6916ee9373e0befcd", size = 166622, upload-time = "2025-11-12T09:56:37.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/84/02fc1827e8cdded4aa65baef11296a9bbe595c474f0d6d758af082d849fd/execnet-2.1.2-py3-none-any.whl", hash = "sha256:67fba928dd5a544b783f6056f449e5e3931a5c378b128bc18501f7ea79e296ec", size = 40708, upload-time = "2025-11-12T09:56:36.333Z" }, +] + +[[package]] +name = "executing" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cc/28/c14e053b6762b1044f34a13aab6859bbf40456d37d23aa286ac24cfd9a5d/executing-2.2.1.tar.gz", hash = "sha256:3632cc370565f6648cc328b32435bd120a1e4ebb20c77e3fdde9a13cd1e533c4", size = 1129488, upload-time = "2025-09-01T09:48:10.866Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl", hash = "sha256:760643d3452b4d777d295bb167ccc74c64a81df23fb5e08eff250c425a4b2017", size = 28317, upload-time = "2025-09-01T09:48:08.5Z" }, +] + +[[package]] +name = "fastjsonschema" +version = "2.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/b5/23b216d9d985a956623b6bd12d4086b60f0059b27799f23016af04a74ea1/fastjsonschema-2.21.2.tar.gz", hash = "sha256:b1eb43748041c880796cd077f1a07c3d94e93ae84bba5ed36800a33554ae05de", size = 374130, upload-time = "2025-08-14T18:49:36.666Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/a8/20d0723294217e47de6d9e2e40fd4a9d2f7c4b6ef974babd482a59743694/fastjsonschema-2.21.2-py3-none-any.whl", hash = "sha256:1c797122d0a86c5cace2e54bf4e819c36223b552017172f32c5c024a6b77e463", size = 24024, upload-time = "2025-08-14T18:49:34.776Z" }, +] + +[[package]] +name = "filelock" +version = "3.28.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/17/6e8890271880903e3538660a21d63a6c1fea969ac71d0d6b608b78727fa9/filelock-3.28.0.tar.gz", hash = "sha256:4ed1010aae813c4ee8d9c660e4792475ee60c4a0ba76073ceaf862bd317e3ca6", size = 56474, upload-time = "2026-04-14T22:54:33.625Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/21/2f728888c45033d34a417bfcd248ea2564c9e08ab1bfd301377cf05d5586/filelock-3.28.0-py3-none-any.whl", hash = "sha256:de9af6712788e7171df1b28b15eba2446c69721433fa427a9bee07b17820a9db", size = 39189, upload-time = "2026-04-14T22:54:32.037Z" }, +] + +[[package]] +name = "flatbuffers" +version = "25.12.19" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/2d/d2a548598be01649e2d46231d151a6c56d10b964d94043a335ae56ea2d92/flatbuffers-25.12.19-py2.py3-none-any.whl", hash = "sha256:7634f50c427838bb021c2d66a3d1168e9d199b0607e6329399f04846d42e20b4", size = 26661, upload-time = "2025-12-19T23:16:13.622Z" }, +] + +[[package]] +name = "folium" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "branca" }, + { name = "jinja2" }, + { name = "numpy" }, + { name = "requests" }, + { name = "xyzservices" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/76/84a1b1b00ce71f9c0c44af7d80f310c02e2e583591fe7d4cb03baecd0d3f/folium-0.20.0.tar.gz", hash = "sha256:a0d78b9d5a36ba7589ca9aedbd433e84e9fcab79cd6ac213adbcff922e454cb9", size = 109932, upload-time = "2025-06-16T20:22:51.803Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b5/a8/5f764f333204db0390362a4356d03a43626997f26818a0e9396f1b3bd8c9/folium-0.20.0-py2.py3-none-any.whl", hash = "sha256:f0bc2a92acde20bca56367aa5c1c376c433f450608d058daebab2fc9bf8198bf", size = 113394, upload-time = "2025-06-16T20:22:50.318Z" }, +] + +[[package]] +name = "fonttools" +version = "4.62.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/08/7012b00a9a5874311b639c3920270c36ee0c445b69d9989a85e5c92ebcb0/fonttools-4.62.1.tar.gz", hash = "sha256:e54c75fd6041f1122476776880f7c3c3295ffa31962dc6ebe2543c00dca58b5d", size = 3580737, upload-time = "2026-03-13T13:54:25.52Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/ff/532ed43808b469c807e8cb6b21358da3fe6fd51486b3a8c93db0bb5d957f/fonttools-4.62.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ad5cca75776cd453b1b035b530e943334957ae152a36a88a320e779d61fc980c", size = 2873740, upload-time = "2026-03-13T13:52:11.822Z" }, + { url = "https://files.pythonhosted.org/packages/85/e4/2318d2b430562da7227010fb2bb029d2fa54d7b46443ae8942bab224e2a0/fonttools-4.62.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0b3ae47e8636156a9accff64c02c0924cbebad62854c4a6dbdc110cd5b4b341a", size = 2417649, upload-time = "2026-03-13T13:52:14.605Z" }, + { url = "https://files.pythonhosted.org/packages/4c/28/40f15523b5188598018e7956899fed94eb7debec89e2dd70cb4a8df90492/fonttools-4.62.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c9b9e288b4da2f64fd6180644221749de651703e8d0c16bd4b719533a3a7d6e3", size = 4935213, upload-time = "2026-03-13T13:52:17.399Z" }, + { url = "https://files.pythonhosted.org/packages/42/09/7dbe3d7023f57d9b580cfa832109d521988112fd59dddfda3fddda8218f9/fonttools-4.62.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7bca7a1c1faf235ffe25d4f2e555246b4750220b38de8261d94ebc5ce8a23c23", size = 4892374, upload-time = "2026-03-13T13:52:20.175Z" }, + { url = "https://files.pythonhosted.org/packages/d1/2d/84509a2e32cb925371560ef5431365d8da2183c11d98e5b4b8b4e42426a5/fonttools-4.62.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b4e0fcf265ad26e487c56cb12a42dffe7162de708762db951e1b3f755319507d", size = 4911856, upload-time = "2026-03-13T13:52:22.777Z" }, + { url = "https://files.pythonhosted.org/packages/a5/80/df28131379eed93d9e6e6fccd3bf6e3d077bebbfe98cc83f21bbcd83ed02/fonttools-4.62.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2d850f66830a27b0d498ee05adb13a3781637b1826982cd7e2b3789ef0cc71ae", size = 5031712, upload-time = "2026-03-13T13:52:25.14Z" }, + { url = "https://files.pythonhosted.org/packages/3d/03/3c8f09aad64230cd6d921ae7a19f9603c36f70930b00459f112706f6769a/fonttools-4.62.1-cp310-cp310-win32.whl", hash = "sha256:486f32c8047ccd05652aba17e4a8819a3a9d78570eb8a0e3b4503142947880ed", size = 1507878, upload-time = "2026-03-13T13:52:28.149Z" }, + { url = "https://files.pythonhosted.org/packages/dd/ec/f53f626f8f3e89f4cadd8fc08f3452c8fd182c951ad5caa35efac22b29ab/fonttools-4.62.1-cp310-cp310-win_amd64.whl", hash = "sha256:5a648bde915fba9da05ae98856987ca91ba832949a9e2888b48c47ef8b96c5a9", size = 1556766, upload-time = "2026-03-13T13:52:30.814Z" }, + { url = "https://files.pythonhosted.org/packages/fd/ba/56147c165442cc5ba7e82ecf301c9a68353cede498185869e6e02b4c264f/fonttools-4.62.1-py3-none-any.whl", hash = "sha256:7487782e2113861f4ddcc07c3436450659e3caa5e470b27dc2177cade2d8e7fd", size = 1152647, upload-time = "2026-03-13T13:54:22.735Z" }, +] + +[[package]] +name = "fqdn" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/30/3e/a80a8c077fd798951169626cde3e239adeba7dab75deb3555716415bd9b0/fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f", size = 6015, upload-time = "2021-03-11T07:16:29.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014", size = 9121, upload-time = "2021-03-11T07:16:28.351Z" }, +] + +[[package]] +name = "frozenlist" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/4a/557715d5047da48d54e659203b9335be7bfaafda2c3f627b7c47e0b3aaf3/frozenlist-1.8.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b37f6d31b3dcea7deb5e9696e529a6aa4a898adc33db82da12e4c60a7c4d2011", size = 86230, upload-time = "2025-10-06T05:35:23.699Z" }, + { url = "https://files.pythonhosted.org/packages/a2/fb/c85f9fed3ea8fe8740e5b46a59cc141c23b842eca617da8876cfce5f760e/frozenlist-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef2b7b394f208233e471abc541cc6991f907ffd47dc72584acee3147899d6565", size = 49621, upload-time = "2025-10-06T05:35:25.341Z" }, + { url = "https://files.pythonhosted.org/packages/63/70/26ca3f06aace16f2352796b08704338d74b6d1a24ca38f2771afbb7ed915/frozenlist-1.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a88f062f072d1589b7b46e951698950e7da00442fc1cacbe17e19e025dc327ad", size = 49889, upload-time = "2025-10-06T05:35:26.797Z" }, + { url = "https://files.pythonhosted.org/packages/5d/ed/c7895fd2fde7f3ee70d248175f9b6cdf792fb741ab92dc59cd9ef3bd241b/frozenlist-1.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f57fb59d9f385710aa7060e89410aeb5058b99e62f4d16b08b91986b9a2140c2", size = 219464, upload-time = "2025-10-06T05:35:28.254Z" }, + { url = "https://files.pythonhosted.org/packages/6b/83/4d587dccbfca74cb8b810472392ad62bfa100bf8108c7223eb4c4fa2f7b3/frozenlist-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:799345ab092bee59f01a915620b5d014698547afd011e691a208637312db9186", size = 221649, upload-time = "2025-10-06T05:35:29.454Z" }, + { url = "https://files.pythonhosted.org/packages/6a/c6/fd3b9cd046ec5fff9dab66831083bc2077006a874a2d3d9247dea93ddf7e/frozenlist-1.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c23c3ff005322a6e16f71bf8692fcf4d5a304aaafe1e262c98c6d4adc7be863e", size = 219188, upload-time = "2025-10-06T05:35:30.951Z" }, + { url = "https://files.pythonhosted.org/packages/ce/80/6693f55eb2e085fc8afb28cf611448fb5b90e98e068fa1d1b8d8e66e5c7d/frozenlist-1.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8a76ea0f0b9dfa06f254ee06053d93a600865b3274358ca48a352ce4f0798450", size = 231748, upload-time = "2025-10-06T05:35:32.101Z" }, + { url = "https://files.pythonhosted.org/packages/97/d6/e9459f7c5183854abd989ba384fe0cc1a0fb795a83c033f0571ec5933ca4/frozenlist-1.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c7366fe1418a6133d5aa824ee53d406550110984de7637d65a178010f759c6ef", size = 236351, upload-time = "2025-10-06T05:35:33.834Z" }, + { url = "https://files.pythonhosted.org/packages/97/92/24e97474b65c0262e9ecd076e826bfd1d3074adcc165a256e42e7b8a7249/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:13d23a45c4cebade99340c4165bd90eeb4a56c6d8a9d8aa49568cac19a6d0dc4", size = 218767, upload-time = "2025-10-06T05:35:35.205Z" }, + { url = "https://files.pythonhosted.org/packages/ee/bf/dc394a097508f15abff383c5108cb8ad880d1f64a725ed3b90d5c2fbf0bb/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:e4a3408834f65da56c83528fb52ce7911484f0d1eaf7b761fc66001db1646eff", size = 235887, upload-time = "2025-10-06T05:35:36.354Z" }, + { url = "https://files.pythonhosted.org/packages/40/90/25b201b9c015dbc999a5baf475a257010471a1fa8c200c843fd4abbee725/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:42145cd2748ca39f32801dad54aeea10039da6f86e303659db90db1c4b614c8c", size = 228785, upload-time = "2025-10-06T05:35:37.949Z" }, + { url = "https://files.pythonhosted.org/packages/84/f4/b5bc148df03082f05d2dd30c089e269acdbe251ac9a9cf4e727b2dbb8a3d/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e2de870d16a7a53901e41b64ffdf26f2fbb8917b3e6ebf398098d72c5b20bd7f", size = 230312, upload-time = "2025-10-06T05:35:39.178Z" }, + { url = "https://files.pythonhosted.org/packages/db/4b/87e95b5d15097c302430e647136b7d7ab2398a702390cf4c8601975709e7/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:20e63c9493d33ee48536600d1a5c95eefc870cd71e7ab037763d1fbb89cc51e7", size = 217650, upload-time = "2025-10-06T05:35:40.377Z" }, + { url = "https://files.pythonhosted.org/packages/e5/70/78a0315d1fea97120591a83e0acd644da638c872f142fd72a6cebee825f3/frozenlist-1.8.0-cp310-cp310-win32.whl", hash = "sha256:adbeebaebae3526afc3c96fad434367cafbfd1b25d72369a9e5858453b1bb71a", size = 39659, upload-time = "2025-10-06T05:35:41.863Z" }, + { url = "https://files.pythonhosted.org/packages/66/aa/3f04523fb189a00e147e60c5b2205126118f216b0aa908035c45336e27e4/frozenlist-1.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:667c3777ca571e5dbeb76f331562ff98b957431df140b54c85fd4d52eea8d8f6", size = 43837, upload-time = "2025-10-06T05:35:43.205Z" }, + { url = "https://files.pythonhosted.org/packages/39/75/1135feecdd7c336938bd55b4dc3b0dfc46d85b9be12ef2628574b28de776/frozenlist-1.8.0-cp310-cp310-win_arm64.whl", hash = "sha256:80f85f0a7cc86e7a54c46d99c9e1318ff01f4687c172ede30fd52d19d1da1c8e", size = 39989, upload-time = "2025-10-06T05:35:44.596Z" }, + { url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" }, +] + +[[package]] +name = "fsspec" +version = "2024.12.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/11/de70dee31455c546fbc88301971ec03c328f3d1138cfba14263f651e9551/fsspec-2024.12.0.tar.gz", hash = "sha256:670700c977ed2fb51e0d9f9253177ed20cbde4a3e5c0283cc5385b5870c8533f", size = 291600, upload-time = "2024-12-19T19:57:30.333Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/86/5486b0188d08aa643e127774a99bac51ffa6cf343e3deb0583956dca5b22/fsspec-2024.12.0-py3-none-any.whl", hash = "sha256:b520aed47ad9804237ff878b504267a3b0b441e97508bd6d2d8774e3db85cee2", size = 183862, upload-time = "2024-12-19T19:57:28.258Z" }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp" }, +] + +[[package]] +name = "future" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/b2/4140c69c6a66432916b26158687e821ba631a4c9273c474343badf84d3ba/future-1.0.0.tar.gz", hash = "sha256:bd2968309307861edae1458a4f8a4f3598c03be43b97521076aebf5d94c07b05", size = 1228490, upload-time = "2024-02-21T11:52:38.461Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/71/ae30dadffc90b9006d77af76b393cb9dfbfc9629f339fc1574a1c52e6806/future-1.0.0-py3-none-any.whl", hash = "sha256:929292d34f5872e70396626ef385ec22355a1fae8ad29e1a734c3e43f9fbc216", size = 491326, upload-time = "2024-02-21T11:52:35.956Z" }, +] + +[[package]] +name = "gast" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/91/f6/e73969782a2ecec280f8a176f2476149dd9dba69d5f8779ec6108a7721e6/gast-0.7.0.tar.gz", hash = "sha256:0bb14cd1b806722e91ddbab6fb86bba148c22b40e7ff11e248974e04c8adfdae", size = 33630, upload-time = "2025-11-29T15:30:05.266Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/33/f1c6a276de27b7d7339a34749cc33fa87f077f921969c47185d34a887ae2/gast-0.7.0-py3-none-any.whl", hash = "sha256:99cbf1365633a74099f69c59bd650476b96baa5ef196fec88032b00b31ba36f7", size = 22966, upload-time = "2025-11-29T15:30:03.983Z" }, +] + +[[package]] +name = "geopandas" +version = "1.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "pyogrio" }, + { name = "pyproj" }, + { name = "shapely" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/85/ba/8e6b2091878e99e86a36a814dcaeff652ed48bdb03d53e78e15aaa63a914/geopandas-1.1.3.tar.gz", hash = "sha256:91a31989b6f566012838d21d5f8033f37dce882079ccb7cfdc40d5ccce7f284f", size = 336718, upload-time = "2026-03-09T21:49:09.545Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/78/6a04792ace63a93e162f1305392d500ae8ddcb620e7eb88a22fd622b35bb/geopandas-1.1.3-py3-none-any.whl", hash = "sha256:90d62a64f95eaa3be2ccc115c5f3d6e24208bb11983b390fdc0621a3eccd0230", size = 342514, upload-time = "2026-03-09T21:49:07.973Z" }, +] + +[[package]] +name = "google-auth" +version = "2.49.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography" }, + { name = "pyasn1-modules" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/fc/e925290a1ad95c975c459e2df070fac2b90954e13a0370ac505dff78cb99/google_auth-2.49.2.tar.gz", hash = "sha256:c1ae38500e73065dcae57355adb6278cf8b5c8e391994ae9cbadbcb9631ab409", size = 333958, upload-time = "2026-04-10T00:41:21.888Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/76/d241a5c927433420507215df6cac1b1fa4ac0ba7a794df42a84326c68da8/google_auth-2.49.2-py3-none-any.whl", hash = "sha256:c2720924dfc82dedb962c9f52cabb2ab16714fd0a6a707e40561d217574ed6d5", size = 240638, upload-time = "2026-04-10T00:41:14.501Z" }, +] + +[[package]] +name = "google-auth-oauthlib" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-auth" }, + { name = "requests-oauthlib" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e3/b4/ef2170c5f6aa5bc2461bab959a84e56d2819ce26662b50038d2d0602223e/google-auth-oauthlib-1.0.0.tar.gz", hash = "sha256:e375064964820b47221a7e1b7ee1fd77051b6323c3f9e3e19785f78ab67ecfc5", size = 20530, upload-time = "2023-02-07T20:53:20.679Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/07/8d9a8186e6768b55dfffeb57c719bc03770cf8a970a074616ae6f9e26a57/google_auth_oauthlib-1.0.0-py2.py3-none-any.whl", hash = "sha256:95880ca704928c300f48194d1770cf5b1462835b6e49db61445a520f793fd5fb", size = 18926, upload-time = "2023-02-07T20:53:18.837Z" }, +] + +[[package]] +name = "google-pasta" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/35/4a/0bd53b36ff0323d10d5f24ebd67af2de10a1117f5cf4d7add90df92756f1/google-pasta-0.2.0.tar.gz", hash = "sha256:c9f2c8dfc8f96d0d5808299920721be30c9eec37f2389f28904f454565c8a16e", size = 40430, upload-time = "2020-03-13T18:57:50.34Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/de/c648ef6835192e6e2cc03f40b19eeda4382c49b5bafb43d88b931c4c74ac/google_pasta-0.2.0-py3-none-any.whl", hash = "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed", size = 57471, upload-time = "2020-03-13T18:57:48.872Z" }, +] + +[[package]] +name = "greenlet" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/86/94/a5935717b307d7c71fe877b52b884c6af707d2d2090db118a03fbd799369/greenlet-3.4.0.tar.gz", hash = "sha256:f50a96b64dafd6169e595a5c56c9146ef80333e67d4476a65a9c55f400fc22ff", size = 195913, upload-time = "2026-04-08T17:08:00.863Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/bc/e30e1e3d5e8860b0e0ce4d2b16b2681b77fd13542fc0d72f7e3c22d16eff/greenlet-3.4.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d18eae9a7fb0f499efcd146b8c9750a2e1f6e0e93b5a382b3481875354a430e6", size = 284315, upload-time = "2026-04-08T17:02:52.322Z" }, + { url = "https://files.pythonhosted.org/packages/5b/cc/e023ae1967d2a26737387cac083e99e47f65f58868bd155c4c80c01ec4e0/greenlet-3.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:636d2f95c309e35f650e421c23297d5011716be15d966e6328b367c9fc513a82", size = 601916, upload-time = "2026-04-08T16:24:35.533Z" }, + { url = "https://files.pythonhosted.org/packages/67/32/5be1677954b6d8810b33abe94e3eb88726311c58fa777dc97e390f7caf5a/greenlet-3.4.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:234582c20af9742583c3b2ddfbdbb58a756cfff803763ffaae1ac7990a9fac31", size = 616399, upload-time = "2026-04-08T16:30:54.536Z" }, + { url = "https://files.pythonhosted.org/packages/74/bf/2d58d5ea515704f83e34699128c9072a34bea27d2b6a556e102105fe62a5/greenlet-3.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:523677e69cd4711b5a014e37bc1fb3a29947c3e3a5bb6a527e1cc50312e5a398", size = 611978, upload-time = "2026-04-08T15:56:31.335Z" }, + { url = "https://files.pythonhosted.org/packages/bd/69/6525049b6c179d8a923256304d8387b8bdd4acab1acf0407852463c6d514/greenlet-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b45e45fe47a19051a396abb22e19e7836a59ee6c5a90f3be427343c37908d65b", size = 1571957, upload-time = "2026-04-08T16:26:17.041Z" }, + { url = "https://files.pythonhosted.org/packages/4e/6c/bbfb798b05fec736a0d24dc23e81b45bcee87f45a83cfb39db031853bddc/greenlet-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5434271357be07f3ad0936c312645853b7e689e679e29310e2de09a9ea6c3adf", size = 1637223, upload-time = "2026-04-08T15:57:27.556Z" }, + { url = "https://files.pythonhosted.org/packages/b7/7d/981fe0e7c07bd9d5e7eb18decb8590a11e3955878291f7a7de2e9c668eb7/greenlet-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:a19093fbad824ed7c0f355b5ff4214bffda5f1a7f35f29b31fcaa240cc0135ab", size = 237902, upload-time = "2026-04-08T17:03:14.16Z" }, +] + +[[package]] +name = "grpcio" +version = "1.80.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b7/48/af6173dbca4454f4637a4678b67f52ca7e0c1ed7d5894d89d434fecede05/grpcio-1.80.0.tar.gz", hash = "sha256:29aca15edd0688c22ba01d7cc01cb000d72b2033f4a3c72a81a19b56fd143257", size = 12978905, upload-time = "2026-03-30T08:49:10.502Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/cd/bb7b7e54084a344c03d68144450da7ddd5564e51a298ae1662de65f48e2d/grpcio-1.80.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:886457a7768e408cdce226ad1ca67d2958917d306523a0e21e1a2fdaa75c9c9c", size = 6050363, upload-time = "2026-03-30T08:46:20.894Z" }, + { url = "https://files.pythonhosted.org/packages/16/02/1417f5c3460dea65f7a2e3c14e8b31e77f7ffb730e9bfadd89eda7a9f477/grpcio-1.80.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:7b641fc3f1dc647bfd80bd713addc68f6d145956f64677e56d9ebafc0bd72388", size = 12026037, upload-time = "2026-03-30T08:46:25.144Z" }, + { url = "https://files.pythonhosted.org/packages/43/98/c910254eedf2cae368d78336a2de0678e66a7317d27c02522392f949b5c6/grpcio-1.80.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:33eb763f18f006dc7fee1e69831d38d23f5eccd15b2e0f92a13ee1d9242e5e02", size = 6602306, upload-time = "2026-03-30T08:46:27.593Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f8/88ca4e78c077b2b2113d95da1e1ab43efd43d723c9a0397d26529c2c1a56/grpcio-1.80.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:52d143637e3872633fc7dd7c3c6a1c84e396b359f3a72e215f8bf69fd82084fc", size = 7301535, upload-time = "2026-03-30T08:46:29.556Z" }, + { url = "https://files.pythonhosted.org/packages/f9/96/f28660fe2fe0f153288bf4a04e4910b7309d442395135c88ed4f5b3b8b40/grpcio-1.80.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c51bf8ac4575af2e0678bccfb07e47321fc7acb5049b4482832c5c195e04e13a", size = 6808669, upload-time = "2026-03-30T08:46:31.984Z" }, + { url = "https://files.pythonhosted.org/packages/47/eb/3f68a5e955779c00aeef23850e019c1c1d0e032d90633ba49c01ad5a96e0/grpcio-1.80.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:50a9871536d71c4fba24ee856abc03a87764570f0c457dd8db0b4018f379fed9", size = 7409489, upload-time = "2026-03-30T08:46:34.684Z" }, + { url = "https://files.pythonhosted.org/packages/5b/a7/d2f681a4bfb881be40659a309771f3bdfbfdb1190619442816c3f0ffc079/grpcio-1.80.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a72d84ad0514db063e21887fbacd1fd7acb4d494a564cae22227cd45c7fbf199", size = 8423167, upload-time = "2026-03-30T08:46:36.833Z" }, + { url = "https://files.pythonhosted.org/packages/97/8a/29b4589c204959aa35ce5708400a05bba72181807c45c47b3ec000c39333/grpcio-1.80.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f7691a6788ad9196872f95716df5bc643ebba13c97140b7a5ee5c8e75d1dea81", size = 7846761, upload-time = "2026-03-30T08:46:40.091Z" }, + { url = "https://files.pythonhosted.org/packages/6b/d2/ed143e097230ee121ac5848f6ff14372dba91289b10b536d54fb1b7cbae7/grpcio-1.80.0-cp310-cp310-win32.whl", hash = "sha256:46c2390b59d67f84e882694d489f5b45707c657832d7934859ceb8c33f467069", size = 4156534, upload-time = "2026-03-30T08:46:42.026Z" }, + { url = "https://files.pythonhosted.org/packages/d5/c9/df8279bb49b29409995e95efa85b72973d62f8aeff89abee58c91f393710/grpcio-1.80.0-cp310-cp310-win_amd64.whl", hash = "sha256:dc053420fc75749c961e2a4c906398d7c15725d36ccc04ae6d16093167223b58", size = 4889869, upload-time = "2026-03-30T08:46:44.219Z" }, +] + +[[package]] +name = "h11" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, +] + +[[package]] +name = "h5py" +version = "3.16.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/33/acd0ce6863b6c0d7735007df01815403f5589a21ff8c2e1ee2587a38f548/h5py-3.16.0.tar.gz", hash = "sha256:a0dbaad796840ccaa67a4c144a0d0c8080073c34c76d5a6941d6818678ef2738", size = 446526, upload-time = "2026-03-06T13:49:08.07Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/6b/231413e58a787a89b316bb0d1777da3c62257e4797e09afd8d17ad3549dc/h5py-3.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e06f864bedb2c8e7c1358e6c73af48519e317457c444d6f3d332bb4e8fa6d7d9", size = 3724137, upload-time = "2026-03-06T13:47:35.242Z" }, + { url = "https://files.pythonhosted.org/packages/74/f9/557ce3aad0fe8471fb5279bab0fc56ea473858a022c4ce8a0b8f303d64e9/h5py-3.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ec86d4fffd87a0f4cb3d5796ceb5a50123a2a6d99b43e616e5504e66a953eca3", size = 3090112, upload-time = "2026-03-06T13:47:37.634Z" }, + { url = "https://files.pythonhosted.org/packages/7a/f5/e15b3d0dc8a18e56409a839e6468d6fb589bc5207c917399c2e0706eeb44/h5py-3.16.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:86385ea895508220b8a7e45efa428aeafaa586bd737c7af9ee04661d8d84a10d", size = 4844847, upload-time = "2026-03-06T13:47:39.811Z" }, + { url = "https://files.pythonhosted.org/packages/cb/92/a8851d936547efe30cc0ce5245feac01f3ec6171f7899bc3f775c72030b3/h5py-3.16.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:8975273c2c5921c25700193b408e28d6bdd0111c37468b2d4e25dcec4cd1d84d", size = 5065352, upload-time = "2026-03-06T13:47:41.489Z" }, + { url = "https://files.pythonhosted.org/packages/2b/ae/f2adc5d0ca9626db3277a3d87516e124cbc5d0eea0bd79bc085702d04f2c/h5py-3.16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1677ad48b703f44efc9ea0c3ab284527f81bc4f318386aaaebc5fede6bbae56f", size = 4839173, upload-time = "2026-03-06T13:47:43.586Z" }, + { url = "https://files.pythonhosted.org/packages/64/0b/e0c8c69da1d8838da023a50cd3080eae5d475691f7636b35eff20bb6ef20/h5py-3.16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7c4dd4cf5f0a4e36083f73172f6cfc25a5710789269547f132a20975bfe2434c", size = 5076216, upload-time = "2026-03-06T13:47:45.315Z" }, + { url = "https://files.pythonhosted.org/packages/66/35/d88fd6718832133c885004c61ceeeb24dbd6397ef877dbed6b3a64d6a286/h5py-3.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:bdef06507725b455fccba9c16529121a5e1fbf56aa375f7d9713d9e8ff42454d", size = 3183639, upload-time = "2026-03-06T13:47:47.041Z" }, +] + +[[package]] +name = "httpcore" +version = "1.0.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, +] + +[[package]] +name = "httpx" +version = "0.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, +] + +[[package]] +name = "humanfriendly" +version = "10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyreadline3", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/3f/2c29224acb2e2df4d2046e4c73ee2662023c58ff5b113c4c1adac0886c43/humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc", size = 360702, upload-time = "2021-09-17T21:40:43.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794, upload-time = "2021-09-17T21:40:39.897Z" }, +] + +[[package]] +name = "hyperopt" +version = "0.2.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cloudpickle" }, + { name = "future" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "py4j" }, + { name = "scipy" }, + { name = "six" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/75/0c4712e3f3a21c910778b8f9f4622601a823cefcae24181467674a0352f9/hyperopt-0.2.7.tar.gz", hash = "sha256:1bf89ae58050bbd32c7307199046117feee245c2fd9ab6255c7308522b7ca149", size = 1308240, upload-time = "2021-11-17T10:05:51.386Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/cd/5b3334d39276067f54618ce0d0b48ed69d91352fbf137468c7095170d0e5/hyperopt-0.2.7-py2.py3-none-any.whl", hash = "sha256:f3046d91fe4167dbf104365016596856b2524a609d22f047a066fc1ac796427c", size = 1583421, upload-time = "2021-11-17T10:05:44.265Z" }, +] + +[[package]] +name = "idna" +version = "3.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, +] + +[[package]] +name = "imagesize" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/e6/7bf14eeb8f8b7251141944835abd42eb20a658d89084b7e1f3e5fe394090/imagesize-2.0.0.tar.gz", hash = "sha256:8e8358c4a05c304f1fccf7ff96f036e7243a189e9e42e90851993c558cfe9ee3", size = 1773045, upload-time = "2026-03-03T14:18:29.941Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5f/53/fb7122b71361a0d121b669dcf3d31244ef75badbbb724af388948de543e2/imagesize-2.0.0-py2.py3-none-any.whl", hash = "sha256:5667c5bbb57ab3f1fa4bc366f4fbc971db3d5ed011fd2715fd8001f782718d96", size = 9441, upload-time = "2026-03-03T14:18:27.892Z" }, +] + +[[package]] +name = "imbalanced-learn" +version = "0.12.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/30/41/8b15f1df14ff38f1fdd4eb2b128478d99c38db4a14292270639ae9d65447/imbalanced-learn-0.12.4.tar.gz", hash = "sha256:8153ba385d296b07d97e0901a2624a86c06b48c94c2f92da3a5354827697b7a3", size = 478372, upload-time = "2024-10-04T17:00:55.162Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d8/0d/c3bfccc5d460eec8ff56889802aa88f5d07280d5282b307a74558e6edc44/imbalanced_learn-0.12.4-py3-none-any.whl", hash = "sha256:d47fc599160d3ea882e712a3a6b02bdd353c1a6436d8d68d41b1922e6ee4a703", size = 258324, upload-time = "2024-10-04T17:00:52.715Z" }, +] + +[[package]] +name = "imblearn" +version = "0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "imbalanced-learn" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/0a/f83099534a77757abf27427d339590c83cc68c3386690d4741d6454e185f/imblearn-0.0.tar.gz", hash = "sha256:d8fbb662919c1b16f438ad91a8256220e53bcf6815c9ad5502c518b798de34f2", size = 945, upload-time = "2017-01-19T11:52:35.89Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/a7/4179e6ebfd654bd0eac0b9c06125b8b4c96a9d0a8ff9e9507eb2a26d2d7e/imblearn-0.0-py2.py3-none-any.whl", hash = "sha256:d42c2d709d22c00d2b9a91e638d57240a8b79b4014122d92181fcd2549a2f79a", size = 1874, upload-time = "2017-01-19T11:52:37.416Z" }, +] + +[[package]] +name = "importlib-resources" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/06/b56dfa750b44e86157093bc8fca0ab81dccbf5260510de4eaf1cb69b5b99/importlib_resources-7.1.0.tar.gz", hash = "sha256:0722d4c6212489c530f2a145a34c0a7a3b4721bc96a15fada5930e2a0b760708", size = 44985, upload-time = "2026-04-12T16:36:09.232Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/db/55a262f3606bebcae07cc14095338471ad7c0bbcaa37707e6f0ee49725b7/importlib_resources-7.1.0-py3-none-any.whl", hash = "sha256:1bd7b48b4088eddb2cd16382150bb515af0bd2c70128194392725f82ad2c96a1", size = 37232, upload-time = "2026-04-12T16:36:08.219Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, +] + +[[package]] +name = "ipykernel" +version = "7.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appnope", marker = "sys_platform == 'darwin'" }, + { name = "comm" }, + { name = "debugpy" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "matplotlib-inline" }, + { name = "nest-asyncio" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/8d/b68b728e2d06b9e0051019640a40a9eb7a88fcd82c2e1b5ce70bef5ff044/ipykernel-7.2.0.tar.gz", hash = "sha256:18ed160b6dee2cbb16e5f3575858bc19d8f1fe6046a9a680c708494ce31d909e", size = 176046, upload-time = "2026-02-06T16:43:27.403Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/b9/e73d5d9f405cba7706c539aa8b311b49d4c2f3d698d9c12f815231169c71/ipykernel-7.2.0-py3-none-any.whl", hash = "sha256:3bbd4420d2b3cc105cbdf3756bfc04500b1e52f090a90716851f3916c62e1661", size = 118788, upload-time = "2026-02-06T16:43:25.149Z" }, +] + +[[package]] +name = "ipython" +version = "8.39.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "decorator" }, + { name = "exceptiongroup" }, + { name = "jedi" }, + { name = "matplotlib-inline" }, + { name = "pexpect", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "stack-data" }, + { name = "traitlets" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/40/18/f8598d287006885e7136451fdea0755af4ebcbfe342836f24deefaed1164/ipython-8.39.0.tar.gz", hash = "sha256:4110ae96012c379b8b6db898a07e186c40a2a1ef5d57a7fa83166047d9da7624", size = 5513971, upload-time = "2026-03-27T10:02:13.94Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/56/4cc7fc9e9e3f38fd324f24f8afe0ad8bb5fa41283f37f1aaf9de0612c968/ipython-8.39.0-py3-none-any.whl", hash = "sha256:bb3c51c4fa8148ab1dea07a79584d1c854e234ea44aa1283bcb37bc75054651f", size = 831849, upload-time = "2026-03-27T10:02:07.846Z" }, +] + +[[package]] +name = "ipywidgets" +version = "8.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "comm" }, + { name = "ipython" }, + { name = "jupyterlab-widgets" }, + { name = "traitlets" }, + { name = "widgetsnbextension" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4c/ae/c5ce1edc1afe042eadb445e95b0671b03cee61895264357956e61c0d2ac0/ipywidgets-8.1.8.tar.gz", hash = "sha256:61f969306b95f85fba6b6986b7fe45d73124d1d9e3023a8068710d47a22ea668", size = 116739, upload-time = "2025-11-01T21:18:12.393Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/6d/0d9848617b9f753b87f214f1c682592f7ca42de085f564352f10f0843026/ipywidgets-8.1.8-py3-none-any.whl", hash = "sha256:ecaca67aed704a338f88f67b1181b58f821ab5dc89c1f0f5ef99db43c1c2921e", size = 139808, upload-time = "2025-11-01T21:18:10.956Z" }, +] + +[[package]] +name = "isoduration" +version = "20.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "arrow" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7c/1a/3c8edc664e06e6bd06cce40c6b22da5f1429aa4224d0c590f3be21c91ead/isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9", size = 11649, upload-time = "2020-11-01T11:00:00.312Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/55/e5326141505c5d5e34c5e0935d2908a74e4561eca44108fbfb9c13d2911a/isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042", size = 11321, upload-time = "2020-11-01T10:59:58.02Z" }, +] + +[[package]] +name = "jedi" +version = "0.19.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "parso" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/3a/79a912fbd4d8dd6fbb02bf69afd3bb72cf0c729bb3063c6f4498603db17a/jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0", size = 1231287, upload-time = "2024-11-11T01:41:42.873Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9", size = 1572278, upload-time = "2024-11-11T01:41:40.175Z" }, +] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + +[[package]] +name = "joblib" +version = "1.5.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f2/d34e8b3a08a9cc79a50b2208a93dce981fe615b64d5a4d4abee421d898df/joblib-1.5.3.tar.gz", hash = "sha256:8561a3269e6801106863fd0d6d84bb737be9e7631e33aaed3fb9ce5953688da3", size = 331603, upload-time = "2025-12-15T08:41:46.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl", hash = "sha256:5fc3c5039fc5ca8c0276333a188bbd59d6b7ab37fe6632daa76bc7f9ec18e713", size = 309071, upload-time = "2025-12-15T08:41:44.973Z" }, +] + +[[package]] +name = "json5" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/4b/6f8906aaf67d501e259b0adab4d312945bb7211e8b8d4dcc77c92320edaa/json5-0.14.0.tar.gz", hash = "sha256:b3f492fad9f6cdbced8b7d40b28b9b1c9701c5f561bef0d33b81c2ff433fefcb", size = 52656, upload-time = "2026-03-27T22:50:48.108Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/42/cf027b4ac873b076189d935b135397675dac80cb29acb13e1ab86ad6c631/json5-0.14.0-py3-none-any.whl", hash = "sha256:56cf861bab076b1178eb8c92e1311d273a9b9acea2ccc82c276abf839ebaef3a", size = 36271, upload-time = "2026-03-27T22:50:47.073Z" }, +] + +[[package]] +name = "jsonpointer" +version = "3.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/c7/af399a2e7a67fd18d63c40c5e62d3af4e67b836a2107468b6a5ea24c4304/jsonpointer-3.1.1.tar.gz", hash = "sha256:0b801c7db33a904024f6004d526dcc53bbb8a4a0f4e32bfd10beadf60adf1900", size = 9068, upload-time = "2026-03-23T22:32:32.458Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/6a/a83720e953b1682d2d109d3c2dbb0bc9bf28cc1cbc205be4ef4be5da709d/jsonpointer-3.1.1-py3-none-any.whl", hash = "sha256:8ff8b95779d071ba472cf5bc913028df06031797532f08a7d5b602d8b2a488ca", size = 7659, upload-time = "2026-03-23T22:32:31.568Z" }, +] + +[[package]] +name = "jsonref" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/0d/c1f3277e90ccdb50d33ed5ba1ec5b3f0a242ed8c1b1a85d3afeb68464dca/jsonref-1.1.0.tar.gz", hash = "sha256:32fe8e1d85af0fdefbebce950af85590b22b60f9e95443176adbde4e1ecea552", size = 8814, upload-time = "2023-01-16T16:10:04.455Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/ec/e1db9922bceb168197a558a2b8c03a7963f1afe93517ddd3cf99f202f996/jsonref-1.1.0-py3-none-any.whl", hash = "sha256:590dc7773df6c21cbf948b5dac07a72a251db28b0238ceecce0a2abfa8ec30a9", size = 9425, upload-time = "2023-01-16T16:10:02.255Z" }, +] + +[[package]] +name = "jsonschema" +version = "4.26.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "jsonschema-specifications" }, + { name = "referencing" }, + { name = "rpds-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" }, +] + +[package.optional-dependencies] +format-nongpl = [ + { name = "fqdn" }, + { name = "idna" }, + { name = "isoduration" }, + { name = "jsonpointer" }, + { name = "rfc3339-validator" }, + { name = "rfc3986-validator" }, + { name = "rfc3987-syntax" }, + { name = "uri-template" }, + { name = "webcolors" }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2025.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" }, +] + +[[package]] +name = "jupyter" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipykernel" }, + { name = "ipywidgets" }, + { name = "jupyter-console" }, + { name = "jupyterlab" }, + { name = "nbconvert" }, + { name = "notebook" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/f3/af28ea964ab8bc1e472dba2e82627d36d470c51f5cd38c37502eeffaa25e/jupyter-1.1.1.tar.gz", hash = "sha256:d55467bceabdea49d7e3624af7e33d59c37fff53ed3a350e1ac957bed731de7a", size = 5714959, upload-time = "2024-08-30T07:15:48.299Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/64/285f20a31679bf547b75602702f7800e74dbabae36ef324f716c02804753/jupyter-1.1.1-py2.py3-none-any.whl", hash = "sha256:7a59533c22af65439b24bbe60373a4e95af8f16ac65a6c00820ad378e3f7cc83", size = 2657, upload-time = "2024-08-30T07:15:47.045Z" }, +] + +[[package]] +name = "jupyter-client" +version = "8.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-core" }, + { name = "python-dateutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/e4/ba649102a3bc3fbca54e7239fb924fd434c766f855693d86de0b1f2bec81/jupyter_client-8.8.0.tar.gz", hash = "sha256:d556811419a4f2d96c869af34e854e3f059b7cc2d6d01a9cd9c85c267691be3e", size = 348020, upload-time = "2026-01-08T13:55:47.938Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/0b/ceb7694d864abc0a047649aec263878acb9f792e1fec3e676f22dc9015e3/jupyter_client-8.8.0-py3-none-any.whl", hash = "sha256:f93a5b99c5e23a507b773d3a1136bd6e16c67883ccdbd9a829b0bbdb98cd7d7a", size = 107371, upload-time = "2026-01-08T13:55:45.562Z" }, +] + +[[package]] +name = "jupyter-console" +version = "6.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipykernel" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "pyzmq" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bd/2d/e2fd31e2fc41c14e2bcb6c976ab732597e907523f6b2420305f9fc7fdbdb/jupyter_console-6.6.3.tar.gz", hash = "sha256:566a4bf31c87adbfadf22cdf846e3069b59a71ed5da71d6ba4d8aaad14a53539", size = 34363, upload-time = "2023-03-06T14:13:31.02Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/77/71d78d58f15c22db16328a476426f7ac4a60d3a5a7ba3b9627ee2f7903d4/jupyter_console-6.6.3-py3-none-any.whl", hash = "sha256:309d33409fcc92ffdad25f0bcdf9a4a9daa61b6f341177570fdac03de5352485", size = 24510, upload-time = "2023-03-06T14:13:28.229Z" }, +] + +[[package]] +name = "jupyter-core" +version = "5.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/49/9d1284d0dc65e2c757b74c6687b6d319b02f822ad039e5c512df9194d9dd/jupyter_core-5.9.1.tar.gz", hash = "sha256:4d09aaff303b9566c3ce657f580bd089ff5c91f5f89cf7d8846c3cdf465b5508", size = 89814, upload-time = "2025-10-16T19:19:18.444Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/e7/80988e32bf6f73919a113473a604f5a8f09094de312b9d52b79c2df7612b/jupyter_core-5.9.1-py3-none-any.whl", hash = "sha256:ebf87fdc6073d142e114c72c9e29a9d7ca03fad818c5d300ce2adc1fb0743407", size = 29032, upload-time = "2025-10-16T19:19:16.783Z" }, +] + +[[package]] +name = "jupyter-events" +version = "0.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonschema", extra = ["format-nongpl"] }, + { name = "packaging" }, + { name = "python-json-logger" }, + { name = "pyyaml" }, + { name = "referencing" }, + { name = "rfc3339-validator" }, + { name = "rfc3986-validator" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/c3/306d090461e4cf3cd91eceaff84bede12a8e52cd821c2d20c9a4fd728385/jupyter_events-0.12.0.tar.gz", hash = "sha256:fc3fce98865f6784c9cd0a56a20644fc6098f21c8c33834a8d9fe383c17e554b", size = 62196, upload-time = "2025-02-03T17:23:41.485Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/48/577993f1f99c552f18a0428731a755e06171f9902fa118c379eb7c04ea22/jupyter_events-0.12.0-py3-none-any.whl", hash = "sha256:6464b2fa5ad10451c3d35fabc75eab39556ae1e2853ad0c0cc31b656731a97fb", size = 19430, upload-time = "2025-02-03T17:23:38.643Z" }, +] + +[[package]] +name = "jupyter-lsp" +version = "2.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/36/ff/1e4a61f5170a9a1d978f3ac3872449de6c01fc71eaf89657824c878b1549/jupyter_lsp-2.3.1.tar.gz", hash = "sha256:fdf8a4aa7d85813976d6e29e95e6a2c8f752701f926f2715305249a3829805a6", size = 55677, upload-time = "2026-04-02T08:10:06.749Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/e8/9d61dcbd1dce8ef418f06befd4ac084b4720429c26b0b1222bc218685eff/jupyter_lsp-2.3.1-py3-none-any.whl", hash = "sha256:71b954d834e85ff3096400554f2eefaf7fe37053036f9a782b0f7c5e42dadb81", size = 77513, upload-time = "2026-04-02T08:10:01.753Z" }, +] + +[[package]] +name = "jupyter-server" +version = "2.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "argon2-cffi" }, + { name = "jinja2" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "jupyter-events" }, + { name = "jupyter-server-terminals" }, + { name = "nbconvert" }, + { name = "nbformat" }, + { name = "overrides" }, + { name = "packaging" }, + { name = "prometheus-client" }, + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "pyzmq" }, + { name = "send2trash" }, + { name = "terminado" }, + { name = "tornado" }, + { name = "traitlets" }, + { name = "websocket-client" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/ac/e040ec363d7b6b1f11304cc9f209dac4517ece5d5e01821366b924a64a50/jupyter_server-2.17.0.tar.gz", hash = "sha256:c38ea898566964c888b4772ae1ed58eca84592e88251d2cfc4d171f81f7e99d5", size = 731949, upload-time = "2025-08-21T14:42:54.042Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/92/80/a24767e6ca280f5a49525d987bf3e4d7552bf67c8be07e8ccf20271f8568/jupyter_server-2.17.0-py3-none-any.whl", hash = "sha256:e8cb9c7db4251f51ed307e329b81b72ccf2056ff82d50524debde1ee1870e13f", size = 388221, upload-time = "2025-08-21T14:42:52.034Z" }, +] + +[[package]] +name = "jupyter-server-terminals" +version = "0.5.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "terminado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f4/a7/bcd0a9b0cbba88986fe944aaaf91bfda603e5a50bda8ed15123f381a3b2f/jupyter_server_terminals-0.5.4.tar.gz", hash = "sha256:bbda128ed41d0be9020349f9f1f2a4ab9952a73ed5f5ac9f1419794761fb87f5", size = 31770, upload-time = "2026-01-14T16:53:20.213Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/2d/6674563f71c6320841fc300911a55143925112a72a883e2ca71fba4c618d/jupyter_server_terminals-0.5.4-py3-none-any.whl", hash = "sha256:55be353fc74a80bc7f3b20e6be50a55a61cd525626f578dcb66a5708e2007d14", size = 13704, upload-time = "2026-01-14T16:53:18.738Z" }, +] + +[[package]] +name = "jupyterlab" +version = "4.5.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "async-lru" }, + { name = "httpx" }, + { name = "ipykernel" }, + { name = "jinja2" }, + { name = "jupyter-core" }, + { name = "jupyter-lsp" }, + { name = "jupyter-server" }, + { name = "jupyterlab-server" }, + { name = "notebook-shim" }, + { name = "packaging" }, + { name = "setuptools" }, + { name = "tomli" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ac/d5/730628e03fff2e8a8e8ccdaedde1489ab1309f9a4fa2536248884e30b7c7/jupyterlab-4.5.6.tar.gz", hash = "sha256:642fe2cfe7f0f5922a8a558ba7a0d246c7bc133b708dfe43f7b3a826d163cf42", size = 23970670, upload-time = "2026-03-11T14:17:04.531Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/1b/dad6fdcc658ed7af26fdf3841e7394072c9549a8b896c381ab49dd11e2d9/jupyterlab-4.5.6-py3-none-any.whl", hash = "sha256:d6b3dac883aa4d9993348e0f8e95b24624f75099aed64eab6a4351a9cdd1e580", size = 12447124, upload-time = "2026-03-11T14:17:00.229Z" }, +] + +[[package]] +name = "jupyterlab-pygments" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/51/9187be60d989df97f5f0aba133fa54e7300f17616e065d1ada7d7646b6d6/jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d", size = 512900, upload-time = "2023-11-23T09:26:37.44Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780", size = 15884, upload-time = "2023-11-23T09:26:34.325Z" }, +] + +[[package]] +name = "jupyterlab-server" +version = "2.28.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "babel" }, + { name = "jinja2" }, + { name = "json5" }, + { name = "jsonschema" }, + { name = "jupyter-server" }, + { name = "packaging" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d6/2c/90153f189e421e93c4bb4f9e3f59802a1f01abd2ac5cf40b152d7f735232/jupyterlab_server-2.28.0.tar.gz", hash = "sha256:35baa81898b15f93573e2deca50d11ac0ae407ebb688299d3a5213265033712c", size = 76996, upload-time = "2025-10-22T13:59:18.37Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/07/a000fe835f76b7e1143242ab1122e6362ef1c03f23f83a045c38859c2ae0/jupyterlab_server-2.28.0-py3-none-any.whl", hash = "sha256:e4355b148fdcf34d312bbbc80f22467d6d20460e8b8736bf235577dd18506968", size = 59830, upload-time = "2025-10-22T13:59:16.767Z" }, +] + +[[package]] +name = "jupyterlab-widgets" +version = "3.0.16" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/2d/ef58fed122b268c69c0aa099da20bc67657cdfb2e222688d5731bd5b971d/jupyterlab_widgets-3.0.16.tar.gz", hash = "sha256:423da05071d55cf27a9e602216d35a3a65a3e41cdf9c5d3b643b814ce38c19e0", size = 897423, upload-time = "2025-11-01T21:11:29.724Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/b5/36c712098e6191d1b4e349304ef73a8d06aed77e56ceaac8c0a306c7bda1/jupyterlab_widgets-3.0.16-py3-none-any.whl", hash = "sha256:45fa36d9c6422cf2559198e4db481aa243c7a32d9926b500781c830c80f7ecf8", size = 914926, upload-time = "2025-11-01T21:11:28.008Z" }, +] + +[[package]] +name = "keras" +version = "2.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bf/85/d52a86eb5ae700e1f8694157019249eb33350ae9e477cd03ecdb50939d22/keras-2.14.0.tar.gz", hash = "sha256:22788bdbc86d9988794fe9703bb5205141da797c4faeeb59497c58c3d94d34ed", size = 1251354, upload-time = "2023-09-11T17:21:04.379Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/58/34d4d8f1aa11120c2d36d7ad27d0526164b1a8ae45990a2fede31d0e59bf/keras-2.14.0-py3-none-any.whl", hash = "sha256:d7429d1d2131cc7eb1f2ea2ec330227c7d9d38dab3dfdf2e78defee4ecc43fcd", size = 1709236, upload-time = "2023-09-11T17:21:02.164Z" }, +] + +[[package]] +name = "kiwisolver" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/67/9c61eccb13f0bdca9307614e782fec49ffdde0f7a2314935d489fa93cd9c/kiwisolver-1.5.0.tar.gz", hash = "sha256:d4193f3d9dc3f6f79aaed0e5637f45d98850ebf01f7ca20e69457f3e8946b66a", size = 103482, upload-time = "2026-03-09T13:15:53.382Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/f8/06549565caa026e540b7e7bab5c5a90eb7ca986015f4c48dace243cd24d9/kiwisolver-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32cc0a5365239a6ea0c6ed461e8838d053b57e397443c0ca894dcc8e388d4374", size = 122802, upload-time = "2026-03-09T13:12:37.515Z" }, + { url = "https://files.pythonhosted.org/packages/84/eb/8476a0818850c563ff343ea7c9c05dcdcbd689a38e01aa31657df01f91fa/kiwisolver-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cc0b66c1eec9021353a4b4483afb12dfd50e3669ffbb9152d6842eb34c7e29fd", size = 66216, upload-time = "2026-03-09T13:12:38.812Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c4/f9c8a6b4c21aed4198566e45923512986d6cef530e7263b3a5f823546561/kiwisolver-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:86e0287879f75621ae85197b0877ed2f8b7aa57b511c7331dce2eb6f4de7d476", size = 63917, upload-time = "2026-03-09T13:12:40.053Z" }, + { url = "https://files.pythonhosted.org/packages/f1/0e/ba4ae25d03722f64de8b2c13e80d82ab537a06b30fc7065183c6439357e3/kiwisolver-1.5.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:62f59da443c4f4849f73a51a193b1d9d258dcad0c41bc4d1b8fb2bcc04bfeb22", size = 1628776, upload-time = "2026-03-09T13:12:41.976Z" }, + { url = "https://files.pythonhosted.org/packages/8a/e4/3f43a011bc8a0860d1c96f84d32fa87439d3feedf66e672fef03bf5e8bac/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9190426b7aa26c5229501fa297b8d0653cfd3f5a36f7990c264e157cbf886b3b", size = 1228164, upload-time = "2026-03-09T13:12:44.002Z" }, + { url = "https://files.pythonhosted.org/packages/4b/34/3a901559a1e0c218404f9a61a93be82d45cb8f44453ba43088644980f033/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c8277104ded0a51e699c8c3aff63ce2c56d4ed5519a5f73e0fd7057f959a2b9e", size = 1246656, upload-time = "2026-03-09T13:12:45.557Z" }, + { url = "https://files.pythonhosted.org/packages/87/9e/f78c466ea20527822b95ad38f141f2de1dcd7f23fb8716b002b0d91bbe59/kiwisolver-1.5.0-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8f9baf6f0a6e7571c45c8863010b45e837c3ee1c2c77fcd6ef423be91b21fedb", size = 1295562, upload-time = "2026-03-09T13:12:47.562Z" }, + { url = "https://files.pythonhosted.org/packages/0a/66/fd0e4a612e3a286c24e6d6f3a5428d11258ed1909bc530ba3b59807fd980/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cff8e5383db4989311f99e814feeb90c4723eb4edca425b9d5d9c3fefcdd9537", size = 2178473, upload-time = "2026-03-09T13:12:50.254Z" }, + { url = "https://files.pythonhosted.org/packages/dc/8e/6cac929e0049539e5ee25c1ee937556f379ba5204840d03008363ced662d/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ebae99ed6764f2b5771c522477b311be313e8841d2e0376db2b10922daebbba4", size = 2274035, upload-time = "2026-03-09T13:12:51.785Z" }, + { url = "https://files.pythonhosted.org/packages/ca/d3/9d0c18f1b52ea8074b792452cf17f1f5a56bd0302a85191f405cfbf9da16/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:d5cd5189fc2b6a538b75ae45433140c4823463918f7b1617c31e68b085c0022c", size = 2443217, upload-time = "2026-03-09T13:12:53.329Z" }, + { url = "https://files.pythonhosted.org/packages/45/2a/6e19368803a038b2a90857bf4ee9e3c7b667216d045866bf22d3439fd75e/kiwisolver-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f42c23db5d1521218a3276bb08666dcb662896a0be7347cba864eca45ff64ede", size = 2249196, upload-time = "2026-03-09T13:12:55.057Z" }, + { url = "https://files.pythonhosted.org/packages/75/2b/3f641dfcbe72e222175d626bacf2f72c3b34312afec949dd1c50afa400f5/kiwisolver-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:94eff26096eb5395136634622515b234ecb6c9979824c1f5004c6e3c3c85ccd2", size = 73389, upload-time = "2026-03-09T13:12:56.496Z" }, + { url = "https://files.pythonhosted.org/packages/da/88/299b137b9e0025d8982e03d2d52c123b0a2b159e84b0ef1501ef446339cf/kiwisolver-1.5.0-cp310-cp310-win_arm64.whl", hash = "sha256:dd952e03bfbb096cfe2dd35cd9e00f269969b67536cb4370994afc20ff2d0875", size = 64782, upload-time = "2026-03-09T13:12:57.609Z" }, + { url = "https://files.pythonhosted.org/packages/17/6f/6fd4f690a40c2582fa34b97d2678f718acf3706b91d270c65ecb455d0a06/kiwisolver-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:295d9ffe712caa9f8a3081de8d32fc60191b4b51c76f02f951fd8407253528f4", size = 59606, upload-time = "2026-03-09T13:15:40.81Z" }, + { url = "https://files.pythonhosted.org/packages/82/a0/2355d5e3b338f13ce63f361abb181e3b6ea5fffdb73f739b3e80efa76159/kiwisolver-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:51e8c4084897de9f05898c2c2a39af6318044ae969d46ff7a34ed3f96274adca", size = 57537, upload-time = "2026-03-09T13:15:42.071Z" }, + { url = "https://files.pythonhosted.org/packages/c8/b9/1d50e610ecadebe205b71d6728fd224ce0e0ca6aba7b9cbe1da049203ac5/kiwisolver-1.5.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b83af57bdddef03c01a9138034c6ff03181a3028d9a1003b301eb1a55e161a3f", size = 79888, upload-time = "2026-03-09T13:15:43.317Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ee/b85ffcd75afed0357d74f0e6fc02a4507da441165de1ca4760b9f496390d/kiwisolver-1.5.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bf4679a3d71012a7c2bf360e5cd878fbd5e4fcac0896b56393dec239d81529ed", size = 77584, upload-time = "2026-03-09T13:15:44.605Z" }, + { url = "https://files.pythonhosted.org/packages/6b/dd/644d0dde6010a8583b4cd66dd41c5f83f5325464d15c4f490b3340ab73b4/kiwisolver-1.5.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:41024ed50e44ab1a60d3fe0a9d15a4ccc9f5f2b1d814ff283c8d01134d5b81bc", size = 73390, upload-time = "2026-03-09T13:15:45.832Z" }, +] + +[[package]] +name = "lark" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/34/28fff3ab31ccff1fd4f6c7c7b0ceb2b6968d8ea4950663eadcb5720591a0/lark-1.3.1.tar.gz", hash = "sha256:b426a7a6d6d53189d318f2b6236ab5d6429eaf09259f1ca33eb716eed10d2905", size = 382732, upload-time = "2025-10-27T18:25:56.653Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3d/14ce75ef66813643812f3093ab17e46d3a206942ce7376d31ec2d36229e7/lark-1.3.1-py3-none-any.whl", hash = "sha256:c629b661023a014c37da873b4ff58a817398d12635d3bbb2c5a03be7fe5d1e12", size = 113151, upload-time = "2025-10-27T18:25:54.882Z" }, +] + +[[package]] +name = "libclang" +version = "18.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6e/5c/ca35e19a4f142adffa27e3d652196b7362fa612243e2b916845d801454fc/libclang-18.1.1.tar.gz", hash = "sha256:a1214966d08d73d971287fc3ead8dfaf82eb07fb197680d8b3859dbbbbf78250", size = 39612, upload-time = "2024-03-17T16:04:37.434Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/49/f5e3e7e1419872b69f6f5e82ba56e33955a74bd537d8a1f5f1eff2f3668a/libclang-18.1.1-1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:0b2e143f0fac830156feb56f9231ff8338c20aecfe72b4ffe96f19e5a1dbb69a", size = 25836045, upload-time = "2024-06-30T17:40:31.646Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e5/fc61bbded91a8830ccce94c5294ecd6e88e496cc85f6704bf350c0634b70/libclang-18.1.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:6f14c3f194704e5d09769108f03185fce7acaf1d1ae4bbb2f30a72c2400cb7c5", size = 26502641, upload-time = "2024-03-18T15:52:26.722Z" }, + { url = "https://files.pythonhosted.org/packages/db/ed/1df62b44db2583375f6a8a5e2ca5432bbdc3edb477942b9b7c848c720055/libclang-18.1.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:83ce5045d101b669ac38e6da8e58765f12da2d3aafb3b9b98d88b286a60964d8", size = 26420207, upload-time = "2024-03-17T15:00:26.63Z" }, + { url = "https://files.pythonhosted.org/packages/1d/fc/716c1e62e512ef1c160e7984a73a5fc7df45166f2ff3f254e71c58076f7c/libclang-18.1.1-py2.py3-none-manylinux2010_x86_64.whl", hash = "sha256:c533091d8a3bbf7460a00cb6c1a71da93bffe148f172c7d03b1c31fbf8aa2a0b", size = 24515943, upload-time = "2024-03-17T16:03:45.942Z" }, + { url = "https://files.pythonhosted.org/packages/3c/3d/f0ac1150280d8d20d059608cf2d5ff61b7c3b7f7bcf9c0f425ab92df769a/libclang-18.1.1-py2.py3-none-manylinux2014_aarch64.whl", hash = "sha256:54dda940a4a0491a9d1532bf071ea3ef26e6dbaf03b5000ed94dd7174e8f9592", size = 23784972, upload-time = "2024-03-17T16:12:47.677Z" }, + { url = "https://files.pythonhosted.org/packages/fe/2f/d920822c2b1ce9326a4c78c0c2b4aa3fde610c7ee9f631b600acb5376c26/libclang-18.1.1-py2.py3-none-manylinux2014_armv7l.whl", hash = "sha256:cf4a99b05376513717ab5d82a0db832c56ccea4fd61a69dbb7bccf2dfb207dbe", size = 20259606, upload-time = "2024-03-17T16:17:42.437Z" }, + { url = "https://files.pythonhosted.org/packages/2d/c2/de1db8c6d413597076a4259cea409b83459b2db997c003578affdd32bf66/libclang-18.1.1-py2.py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:69f8eb8f65c279e765ffd28aaa7e9e364c776c17618af8bff22a8df58677ff4f", size = 24921494, upload-time = "2024-03-17T16:14:20.132Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2d/3f480b1e1d31eb3d6de5e3ef641954e5c67430d5ac93b7fa7e07589576c7/libclang-18.1.1-py2.py3-none-win_amd64.whl", hash = "sha256:4dd2d3b82fab35e2bf9ca717d7b63ac990a3519c7e312f19fa8e86dcc712f7fb", size = 26415083, upload-time = "2024-03-17T16:42:21.703Z" }, + { url = "https://files.pythonhosted.org/packages/71/cf/e01dc4cc79779cd82d77888a88ae2fa424d93b445ad4f6c02bfc18335b70/libclang-18.1.1-py2.py3-none-win_arm64.whl", hash = "sha256:3f0e1f49f04d3cd198985fea0511576b0aee16f9ff0e0f0cad7f9c57ec3c20e8", size = 22361112, upload-time = "2024-03-17T16:42:59.565Z" }, +] + +[[package]] +name = "lightgbm" +version = "4.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/68/0b/a2e9f5c5da7ef047cc60cef37f86185088845e8433e54d2e7ed439cce8a3/lightgbm-4.6.0.tar.gz", hash = "sha256:cb1c59720eb569389c0ba74d14f52351b573af489f230032a1c9f314f8bab7fe", size = 1703705, upload-time = "2025-02-15T04:03:03.111Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/75/cffc9962cca296bc5536896b7e65b4a7cdeb8db208e71b9c0133c08f8f7e/lightgbm-4.6.0-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:b7a393de8a334d5c8e490df91270f0763f83f959574d504c7ccb9eee4aef70ed", size = 2010151, upload-time = "2025-02-15T04:02:50.961Z" }, + { url = "https://files.pythonhosted.org/packages/21/1b/550ee378512b78847930f5d74228ca1fdba2a7fbdeaac9aeccc085b0e257/lightgbm-4.6.0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:2dafd98d4e02b844ceb0b61450a660681076b1ea6c7adb8c566dfd66832aafad", size = 1592172, upload-time = "2025-02-15T04:02:53.937Z" }, + { url = "https://files.pythonhosted.org/packages/64/41/4fbde2c3d29e25ee7c41d87df2f2e5eda65b431ee154d4d462c31041846c/lightgbm-4.6.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:4d68712bbd2b57a0b14390cbf9376c1d5ed773fa2e71e099cac588703b590336", size = 3454567, upload-time = "2025-02-15T04:02:56.443Z" }, + { url = "https://files.pythonhosted.org/packages/42/86/dabda8fbcb1b00bcfb0003c3776e8ade1aa7b413dff0a2c08f457dace22f/lightgbm-4.6.0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:cb19b5afea55b5b61cbb2131095f50538bd608a00655f23ad5d25ae3e3bf1c8d", size = 3569831, upload-time = "2025-02-15T04:02:58.925Z" }, + { url = "https://files.pythonhosted.org/packages/5e/23/f8b28ca248bb629b9e08f877dd2965d1994e1674a03d67cd10c5246da248/lightgbm-4.6.0-py3-none-win_amd64.whl", hash = "sha256:37089ee95664b6550a7189d887dbf098e3eadab03537e411f52c63c121e3ba4b", size = 1451509, upload-time = "2025-02-15T04:03:01.515Z" }, +] + +[[package]] +name = "lightning" +version = "2.2.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fsspec", extra = ["http"] }, + { name = "lightning-utilities" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pytorch-lightning" }, + { name = "pyyaml" }, + { name = "torch" }, + { name = "torchmetrics" }, + { name = "tqdm" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ff/94/75ca89a07efaa2f32c98ebbc467a46e7996b21b1247aa9643933844948cb/lightning-2.2.5.tar.gz", hash = "sha256:a6c31a2052fc30fee34aec7e31ea2a117a005d049c3593fc9cfb867a34f962bf", size = 1668508, upload-time = "2024-05-22T17:36:29.641Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/6f/1e9e09afbda8efb5edc947b15c620776b7ebe6adfdfcf34a7cc2daef45ca/lightning-2.2.5-py3-none-any.whl", hash = "sha256:3fd4d37c5f912b000b922f36d4c06818de42b78f85178c2ad3e35b8af3e9218a", size = 1985635, upload-time = "2024-05-22T17:36:25.727Z" }, +] + +[[package]] +name = "lightning-utilities" +version = "0.15.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/45/7fa8f56b17dc0f0a41ec70dd307ecd6787254483549843bef4c30ab5adce/lightning_utilities-0.15.3.tar.gz", hash = "sha256:792ae0204c79f6859721ac7f386c237a33b0ed06ba775009cb894e010a842033", size = 33553, upload-time = "2026-02-22T14:48:53.348Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/f4/ead6e0e37209b07c9baa3e984ccdb0348ca370b77cea3aaea8ddbb097e00/lightning_utilities-0.15.3-py3-none-any.whl", hash = "sha256:6c55f1bee70084a1cbeaa41ada96e4b3a0fea5909e844dd335bd80f5a73c5f91", size = 31906, upload-time = "2026-02-22T14:48:52.488Z" }, +] + +[[package]] +name = "llvmlite" +version = "0.47.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/88/a8952b6d5c21e74cbf158515b779666f692846502623e9e3c39d8e8ba25f/llvmlite-0.47.0.tar.gz", hash = "sha256:62031ce968ec74e95092184d4b0e857e444f8fdff0b8f9213707699570c33ccc", size = 193614, upload-time = "2026-03-31T18:29:53.497Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/f5/a1bde3aa8c43524b0acaf3f72fb3d80a32dd29dbb42d7dc434f84584cdcc/llvmlite-0.47.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41270b0b1310717f717cf6f2a9c68d3c43bd7905c33f003825aebc361d0d1b17", size = 37232772, upload-time = "2026-03-31T18:28:12.198Z" }, + { url = "https://files.pythonhosted.org/packages/7c/fb/76d88fc05ee1f9c1a6efe39eb493c4a727e5d1690412469017cd23bcb776/llvmlite-0.47.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f9d118bc1dd7623e0e65ca9ac485ec6dd543c3b77bc9928ddc45ebd34e1e30a7", size = 56275179, upload-time = "2026-03-31T18:28:15.725Z" }, + { url = "https://files.pythonhosted.org/packages/4d/08/29da7f36217abd56a0c389ef9a18bea47960826e691ced1a36c92c6ce93c/llvmlite-0.47.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9ea5cfb04a6ab5b18e46be72b41b015975ba5980c4ddb41f1975b83e19031063", size = 55128632, upload-time = "2026-03-31T18:28:19.946Z" }, + { url = "https://files.pythonhosted.org/packages/df/f8/5e12e9ed447d65f04acf6fcf2d79cded2355640b5131a46cee4c99a5949d/llvmlite-0.47.0-cp310-cp310-win_amd64.whl", hash = "sha256:166b896a2262a2039d5fc52df5ee1659bd1ccd081183df7a2fba1b74702dd5ea", size = 38138402, upload-time = "2026-03-31T18:28:23.327Z" }, +] + +[[package]] +name = "maestrowf" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coloredlogs" }, + { name = "dill" }, + { name = "filelock" }, + { name = "jsonschema" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "rich" }, + { name = "six" }, + { name = "tabulate" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f2/5e/89a991cba5a2c643ab9df65f4534f2570c8d0fb827c8bb9c216874801129/maestrowf-1.2.0.tar.gz", hash = "sha256:e3e7d511993b1ad0874b5ec502da25fde15ce86288c5ba071db3f6bd3f2601d1", size = 105149, upload-time = "2026-03-27T00:45:33.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/8a/622940ae1b99ae7b8944f82a2f8039ca4b1f85edc40051e3111bd1808516/maestrowf-1.2.0-py3-none-any.whl", hash = "sha256:046936f0a1c772b04b6719d250c4bfb951f5ae44c48257c581b77e2593fca345", size = 154025, upload-time = "2026-03-27T00:45:32.595Z" }, +] + +[[package]] +name = "mako" +version = "1.3.11" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/59/8a/805404d0c0b9f3d7a326475ca008db57aea9c5c9f2e1e39ed0faa335571c/mako-1.3.11.tar.gz", hash = "sha256:071eb4ab4c5010443152255d77db7faa6ce5916f35226eb02dc34479b6858069", size = 399811, upload-time = "2026-04-14T20:19:51.493Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/a5/19d7aaa7e433713ffe881df33705925a196afb9532efc8475d26593921a6/mako-1.3.11-py3-none-any.whl", hash = "sha256:e372c6e333cf004aa736a15f425087ec977e1fcbd2966aae7f17c8dc1da27a77", size = 78503, upload-time = "2026-04-14T20:19:53.233Z" }, +] + +[[package]] +name = "markdown" +version = "3.10.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2b/f4/69fa6ed85ae003c2378ffa8f6d2e3234662abd02c10d216c0ba96081a238/markdown-3.10.2.tar.gz", hash = "sha256:994d51325d25ad8aa7ce4ebaec003febcce822c3f8c911e3b17c52f7f589f950", size = 368805, upload-time = "2026-02-09T14:57:26.942Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl", hash = "sha256:e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36", size = 108180, upload-time = "2026-02-09T14:57:25.787Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/4b/3541d44f3937ba468b75da9eebcae497dcf67adb65caa16760b0a6807ebb/markupsafe-3.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2f981d352f04553a7171b8e44369f2af4055f888dfb147d55e42d29e29e74559", size = 11631, upload-time = "2025-09-27T18:36:05.558Z" }, + { url = "https://files.pythonhosted.org/packages/98/1b/fbd8eed11021cabd9226c37342fa6ca4e8a98d8188a8d9b66740494960e4/markupsafe-3.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c1493fb6e50ab01d20a22826e57520f1284df32f2d8601fdd90b6304601419", size = 12057, upload-time = "2025-09-27T18:36:07.165Z" }, + { url = "https://files.pythonhosted.org/packages/40/01/e560d658dc0bb8ab762670ece35281dec7b6c1b33f5fbc09ebb57a185519/markupsafe-3.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ba88449deb3de88bd40044603fafffb7bc2b055d626a330323a9ed736661695", size = 22050, upload-time = "2025-09-27T18:36:08.005Z" }, + { url = "https://files.pythonhosted.org/packages/af/cd/ce6e848bbf2c32314c9b237839119c5a564a59725b53157c856e90937b7a/markupsafe-3.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f42d0984e947b8adf7dd6dde396e720934d12c506ce84eea8476409563607591", size = 20681, upload-time = "2025-09-27T18:36:08.881Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2a/b5c12c809f1c3045c4d580b035a743d12fcde53cf685dbc44660826308da/markupsafe-3.0.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c0c0b3ade1c0b13b936d7970b1d37a57acde9199dc2aecc4c336773e1d86049c", size = 20705, upload-time = "2025-09-27T18:36:10.131Z" }, + { url = "https://files.pythonhosted.org/packages/cf/e3/9427a68c82728d0a88c50f890d0fc072a1484de2f3ac1ad0bfc1a7214fd5/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0303439a41979d9e74d18ff5e2dd8c43ed6c6001fd40e5bf2e43f7bd9bbc523f", size = 21524, upload-time = "2025-09-27T18:36:11.324Z" }, + { url = "https://files.pythonhosted.org/packages/bc/36/23578f29e9e582a4d0278e009b38081dbe363c5e7165113fad546918a232/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:d2ee202e79d8ed691ceebae8e0486bd9a2cd4794cec4824e1c99b6f5009502f6", size = 20282, upload-time = "2025-09-27T18:36:12.573Z" }, + { url = "https://files.pythonhosted.org/packages/56/21/dca11354e756ebd03e036bd8ad58d6d7168c80ce1fe5e75218e4945cbab7/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:177b5253b2834fe3678cb4a5f0059808258584c559193998be2601324fdeafb1", size = 20745, upload-time = "2025-09-27T18:36:13.504Z" }, + { url = "https://files.pythonhosted.org/packages/87/99/faba9369a7ad6e4d10b6a5fbf71fa2a188fe4a593b15f0963b73859a1bbd/markupsafe-3.0.3-cp310-cp310-win32.whl", hash = "sha256:2a15a08b17dd94c53a1da0438822d70ebcd13f8c3a95abe3a9ef9f11a94830aa", size = 14571, upload-time = "2025-09-27T18:36:14.779Z" }, + { url = "https://files.pythonhosted.org/packages/d6/25/55dc3ab959917602c96985cb1253efaa4ff42f71194bddeb61eb7278b8be/markupsafe-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:c4ffb7ebf07cfe8931028e3e4c85f0357459a3f9f9490886198848f4fa002ec8", size = 15056, upload-time = "2025-09-27T18:36:16.125Z" }, + { url = "https://files.pythonhosted.org/packages/d0/9e/0a02226640c255d1da0b8d12e24ac2aa6734da68bff14c05dd53b94a0fc3/markupsafe-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:e2103a929dfa2fcaf9bb4e7c091983a49c9ac3b19c9061b6d5427dd7d14d81a1", size = 13932, upload-time = "2025-09-27T18:36:17.311Z" }, +] + +[[package]] +name = "matplotcheck" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "folium" }, + { name = "geopandas" }, + { name = "matplotlib" }, + { name = "numpy" }, + { name = "rasterio" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3c/64/9de5cb50eb1a51a8874a7d2c51e984577a9ffd4099385d4483b9caa779e3/matplotcheck-0.1.4.tar.gz", hash = "sha256:762d5365e51c3d73de1b4ebfb5c52a423885fba2dc2054a1f1319fc40db3b896", size = 32442, upload-time = "2021-02-03T23:06:09.78Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/43/e0d7efb953f0d5a4f5b8fd2727b6cec968568135fd7c4d5b5d86a1d51571/matplotcheck-0.1.4-py3-none-any.whl", hash = "sha256:e25704c8959eb99bb30cb7f6b353da956f38532e42929fbac725c5e1edac2954", size = 32517, upload-time = "2021-02-03T23:06:08.303Z" }, +] + +[[package]] +name = "matplotlib" +version = "3.10.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/76/d3c6e3a13fe484ebe7718d14e269c9569c4eb0020a968a327acb3b9a8fe6/matplotlib-3.10.8.tar.gz", hash = "sha256:2299372c19d56bcd35cf05a2738308758d32b9eaed2371898d8f5bd33f084aa3", size = 34806269, upload-time = "2025-12-10T22:56:51.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/58/be/a30bd917018ad220c400169fba298f2bb7003c8ccbc0c3e24ae2aacad1e8/matplotlib-3.10.8-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:00270d217d6b20d14b584c521f810d60c5c78406dc289859776550df837dcda7", size = 8239828, upload-time = "2025-12-10T22:55:02.313Z" }, + { url = "https://files.pythonhosted.org/packages/58/27/ca01e043c4841078e82cf6e80a6993dfecd315c3d79f5f3153afbb8e1ec6/matplotlib-3.10.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37b3c1cc42aa184b3f738cfa18c1c1d72fd496d85467a6cf7b807936d39aa656", size = 8128050, upload-time = "2025-12-10T22:55:04.997Z" }, + { url = "https://files.pythonhosted.org/packages/cb/aa/7ab67f2b729ae6a91bcf9dcac0affb95fb8c56f7fd2b2af894ae0b0cf6fa/matplotlib-3.10.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ee40c27c795bda6a5292e9cff9890189d32f7e3a0bf04e0e3c9430c4a00c37df", size = 8700452, upload-time = "2025-12-10T22:55:07.47Z" }, + { url = "https://files.pythonhosted.org/packages/73/ae/2d5817b0acee3c49b7e7ccfbf5b273f284957cc8e270adf36375db353190/matplotlib-3.10.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a48f2b74020919552ea25d222d5cc6af9ca3f4eb43a93e14d068457f545c2a17", size = 9534928, upload-time = "2025-12-10T22:55:10.566Z" }, + { url = "https://files.pythonhosted.org/packages/c9/5b/8e66653e9f7c39cb2e5cab25fce4810daffa2bff02cbf5f3077cea9e942c/matplotlib-3.10.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f254d118d14a7f99d616271d6c3c27922c092dac11112670b157798b89bf4933", size = 9586377, upload-time = "2025-12-10T22:55:12.362Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e2/fd0bbadf837f81edb0d208ba8f8cb552874c3b16e27cb91a31977d90875d/matplotlib-3.10.8-cp310-cp310-win_amd64.whl", hash = "sha256:f9b587c9c7274c1613a30afabf65a272114cd6cdbe67b3406f818c79d7ab2e2a", size = 8128127, upload-time = "2025-12-10T22:55:14.436Z" }, + { url = "https://files.pythonhosted.org/packages/f5/43/31d59500bb950b0d188e149a2e552040528c13d6e3d6e84d0cccac593dcd/matplotlib-3.10.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f97aeb209c3d2511443f8797e3e5a569aebb040d4f8bc79aa3ee78a8fb9e3dd8", size = 8237252, upload-time = "2025-12-10T22:56:39.529Z" }, + { url = "https://files.pythonhosted.org/packages/0c/2c/615c09984f3c5f907f51c886538ad785cf72e0e11a3225de2c0f9442aecc/matplotlib-3.10.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fb061f596dad3a0f52b60dc6a5dec4a0c300dec41e058a7efe09256188d170b7", size = 8124693, upload-time = "2025-12-10T22:56:41.758Z" }, + { url = "https://files.pythonhosted.org/packages/91/e1/2757277a1c56041e1fc104b51a0f7b9a4afc8eb737865d63cababe30bc61/matplotlib-3.10.8-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:12d90df9183093fcd479f4172ac26b322b1248b15729cb57f42f71f24c7e37a3", size = 8702205, upload-time = "2025-12-10T22:56:43.415Z" }, +] + +[[package]] +name = "matplotlib-inline" +version = "0.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/74/97e72a36efd4ae2bccb3463284300f8953f199b5ffbc04cbbb0ec78f74b1/matplotlib_inline-0.2.1.tar.gz", hash = "sha256:e1ee949c340d771fc39e241ea75683deb94762c8fa5f2927ec57c83c4dffa9fe", size = 8110, upload-time = "2025-10-23T09:00:22.126Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/af/33/ee4519fa02ed11a94aef9559552f3b17bb863f2ecfe1a35dc7f548cde231/matplotlib_inline-0.2.1-py3-none-any.whl", hash = "sha256:d56ce5156ba6085e00a9d54fead6ed29a9c47e215cd1bba2e976ef39f5710a76", size = 9516, upload-time = "2025-10-23T09:00:20.675Z" }, +] + +[[package]] +name = "matplotlib-venn" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e8/f7/47bddf95492f4d1370ed7164d2b16407805e8eeb38231361de65d387a562/matplotlib-venn-1.1.2.tar.gz", hash = "sha256:6f2b07a03e9bb5a62de2f32f965216739e175176f9d654dd19e7af2c22ec36e3", size = 40821, upload-time = "2025-02-25T10:44:24.294Z" } + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "mistune" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/55/d01f0c4b45ade6536c51170b9043db8b2ec6ddf4a35c7ea3f5f559ac935b/mistune-3.2.0.tar.gz", hash = "sha256:708487c8a8cdd99c9d90eb3ed4c3ed961246ff78ac82f03418f5183ab70e398a", size = 95467, upload-time = "2025-12-23T11:36:34.994Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/f7/4a5e785ec9fbd65146a27b6b70b6cdc161a66f2024e4b04ac06a67f5578b/mistune-3.2.0-py3-none-any.whl", hash = "sha256:febdc629a3c78616b94393c6580551e0e34cc289987ec6c35ed3f4be42d0eee1", size = 53598, upload-time = "2025-12-23T11:36:33.211Z" }, +] + +[[package]] +name = "ml-dtypes" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fa/47/09ca9556bf99cfe7ddf129a3423642bd482a27a717bf115090493fa42429/ml_dtypes-0.2.0.tar.gz", hash = "sha256:6488eb642acaaf08d8020f6de0a38acee7ac324c1e6e92ee0c0fea42422cb797", size = 698948, upload-time = "2023-06-06T15:14:43.679Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/9f/3c133f83f3e5a7959345585e9ac715ef8bf6e8987551f240032e1b0d3ce6/ml_dtypes-0.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:df6a76e1c8adf484feb138ed323f9f40a7b6c21788f120f7c78bec20ac37ee81", size = 1154492, upload-time = "2023-06-06T15:14:11.966Z" }, + { url = "https://files.pythonhosted.org/packages/19/05/7a6480a69f8555a047a56ae6af9490bcdc5e432658208f3404d8e8442d02/ml_dtypes-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc29a0524ef5e23a7fbb8d881bdecabeb3fc1d19d9db61785d077a86cb94fab2", size = 1012633, upload-time = "2023-06-06T15:14:14.055Z" }, + { url = "https://files.pythonhosted.org/packages/d1/1d/d5cf76e5e40f69dbd273036e3172ae4a614577cb141673427b80cac948df/ml_dtypes-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f08c391c2794f2aad358e6f4c70785a9a7b1df980ef4c232b3ccd4f6fe39f719", size = 1017764, upload-time = "2023-06-06T15:14:15.632Z" }, + { url = "https://files.pythonhosted.org/packages/55/51/c430b4f5f4a6df00aa41c1ee195e179489565e61cfad559506ca7442ce67/ml_dtypes-0.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:75015818a7fccf99a5e8ed18720cb430f3e71a8838388840f4cdf225c036c983", size = 938593, upload-time = "2023-06-06T15:14:17.473Z" }, +] + +[[package]] +name = "monotonic" +version = "1.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ea/ca/8e91948b782ddfbd194f323e7e7d9ba12e5877addf04fb2bf8fca38e86ac/monotonic-1.6.tar.gz", hash = "sha256:3a55207bcfed53ddd5c5bae174524062935efed17792e9de2ad0205ce9ad63f7", size = 7615, upload-time = "2021-08-11T14:37:28.79Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/67/7e8406a29b6c45be7af7740456f7f37025f0506ae2e05fb9009a53946860/monotonic-1.6-py2.py3-none-any.whl", hash = "sha256:68687e19a14f11f26d140dd5c86f3dba4bf5df58003000ed467e0e2a69bca96c", size = 8154, upload-time = "2021-04-09T21:58:05.122Z" }, +] + +[[package]] +name = "mordred" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "networkx" }, + { name = "numpy" }, + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/93/3d/26c908ece761adafcea06320bf8fe73f4de69979273fb164226dc6038c39/mordred-1.2.0.tar.gz", hash = "sha256:1115f9f3a3dde290dd68d51a5070fce43a62aab96b980cffc9d72b74a59e1c5a", size = 128774, upload-time = "2019-06-05T18:20:01.267Z" } + +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, +] + +[[package]] +name = "msgpack" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/f2/bfb55a6236ed8725a96b0aa3acbd0ec17588e6a2c3b62a93eb513ed8783f/msgpack-1.1.2.tar.gz", hash = "sha256:3b60763c1373dd60f398488069bcdc703cd08a711477b5d480eecc9f9626f47e", size = 173581, upload-time = "2025-10-08T09:15:56.596Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f5/a2/3b68a9e769db68668b25c6108444a35f9bd163bb848c0650d516761a59c0/msgpack-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0051fffef5a37ca2cd16978ae4f0aef92f164df86823871b5162812bebecd8e2", size = 81318, upload-time = "2025-10-08T09:14:38.722Z" }, + { url = "https://files.pythonhosted.org/packages/5b/e1/2b720cc341325c00be44e1ed59e7cfeae2678329fbf5aa68f5bda57fe728/msgpack-1.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a605409040f2da88676e9c9e5853b3449ba8011973616189ea5ee55ddbc5bc87", size = 83786, upload-time = "2025-10-08T09:14:40.082Z" }, + { url = "https://files.pythonhosted.org/packages/71/e5/c2241de64bfceac456b140737812a2ab310b10538a7b34a1d393b748e095/msgpack-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b696e83c9f1532b4af884045ba7f3aa741a63b2bc22617293a2c6a7c645f251", size = 398240, upload-time = "2025-10-08T09:14:41.151Z" }, + { url = "https://files.pythonhosted.org/packages/b7/09/2a06956383c0fdebaef5aa9246e2356776f12ea6f2a44bd1368abf0e46c4/msgpack-1.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:365c0bbe981a27d8932da71af63ef86acc59ed5c01ad929e09a0b88c6294e28a", size = 406070, upload-time = "2025-10-08T09:14:42.821Z" }, + { url = "https://files.pythonhosted.org/packages/0e/74/2957703f0e1ef20637d6aead4fbb314330c26f39aa046b348c7edcf6ca6b/msgpack-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:41d1a5d875680166d3ac5c38573896453bbbea7092936d2e107214daf43b1d4f", size = 393403, upload-time = "2025-10-08T09:14:44.38Z" }, + { url = "https://files.pythonhosted.org/packages/a5/09/3bfc12aa90f77b37322fc33e7a8a7c29ba7c8edeadfa27664451801b9860/msgpack-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354e81bcdebaab427c3df4281187edc765d5d76bfb3a7c125af9da7a27e8458f", size = 398947, upload-time = "2025-10-08T09:14:45.56Z" }, + { url = "https://files.pythonhosted.org/packages/4b/4f/05fcebd3b4977cb3d840f7ef6b77c51f8582086de5e642f3fefee35c86fc/msgpack-1.1.2-cp310-cp310-win32.whl", hash = "sha256:e64c8d2f5e5d5fda7b842f55dec6133260ea8f53c4257d64494c534f306bf7a9", size = 64769, upload-time = "2025-10-08T09:14:47.334Z" }, + { url = "https://files.pythonhosted.org/packages/d0/3e/b4547e3a34210956382eed1c85935fff7e0f9b98be3106b3745d7dec9c5e/msgpack-1.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:db6192777d943bdaaafb6ba66d44bf65aa0e9c5616fa1d2da9bb08828c6b39aa", size = 71293, upload-time = "2025-10-08T09:14:48.665Z" }, +] + +[[package]] +name = "multidict" +version = "6.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/0b/19348d4c98980c4851d2f943f8ebafdece2ae7ef737adcfa5994ce8e5f10/multidict-6.7.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c93c3db7ea657dd4637d57e74ab73de31bccefe144d3d4ce370052035bc85fb5", size = 77176, upload-time = "2026-01-26T02:42:59.784Z" }, + { url = "https://files.pythonhosted.org/packages/ef/04/9de3f8077852e3d438215c81e9b691244532d2e05b4270e89ce67b7d103c/multidict-6.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:974e72a2474600827abaeda71af0c53d9ebbc3c2eb7da37b37d7829ae31232d8", size = 44996, upload-time = "2026-01-26T02:43:01.674Z" }, + { url = "https://files.pythonhosted.org/packages/31/5c/08c7f7fe311f32e83f7621cd3f99d805f45519cd06fafb247628b861da7d/multidict-6.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdea2e7b2456cfb6694fb113066fd0ec7ea4d67e3a35e1f4cbeea0b448bf5872", size = 44631, upload-time = "2026-01-26T02:43:03.169Z" }, + { url = "https://files.pythonhosted.org/packages/b7/7f/0e3b1390ae772f27501199996b94b52ceeb64fe6f9120a32c6c3f6b781be/multidict-6.7.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:17207077e29342fdc2c9a82e4b306f1127bf1ea91f8b71e02d4798a70bb99991", size = 242561, upload-time = "2026-01-26T02:43:04.733Z" }, + { url = "https://files.pythonhosted.org/packages/dd/f4/8719f4f167586af317b69dd3e90f913416c91ca610cac79a45c53f590312/multidict-6.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4f49cb5661344764e4c7c7973e92a47a59b8fc19b6523649ec9dc4960e58a03", size = 242223, upload-time = "2026-01-26T02:43:06.695Z" }, + { url = "https://files.pythonhosted.org/packages/47/ab/7c36164cce64a6ad19c6d9a85377b7178ecf3b89f8fd589c73381a5eedfd/multidict-6.7.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a9fc4caa29e2e6ae408d1c450ac8bf19892c5fca83ee634ecd88a53332c59981", size = 222322, upload-time = "2026-01-26T02:43:08.472Z" }, + { url = "https://files.pythonhosted.org/packages/f5/79/a25add6fb38035b5337bc5734f296d9afc99163403bbcf56d4170f97eb62/multidict-6.7.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c5f0c21549ab432b57dcc82130f388d84ad8179824cc3f223d5e7cfbfd4143f6", size = 254005, upload-time = "2026-01-26T02:43:10.127Z" }, + { url = "https://files.pythonhosted.org/packages/4a/7b/64a87cf98e12f756fc8bd444b001232ffff2be37288f018ad0d3f0aae931/multidict-6.7.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7dfb78d966b2c906ae1d28ccf6e6712a3cd04407ee5088cd276fe8cb42186190", size = 251173, upload-time = "2026-01-26T02:43:11.731Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ac/b605473de2bb404e742f2cc3583d12aedb2352a70e49ae8fce455b50c5aa/multidict-6.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9b0d9b91d1aa44db9c1f1ecd0d9d2ae610b2f4f856448664e01a3b35899f3f92", size = 243273, upload-time = "2026-01-26T02:43:13.063Z" }, + { url = "https://files.pythonhosted.org/packages/03/65/11492d6a0e259783720f3bc1d9ea55579a76f1407e31ed44045c99542004/multidict-6.7.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dd96c01a9dcd4889dcfcf9eb5544ca0c77603f239e3ffab0524ec17aea9a93ee", size = 238956, upload-time = "2026-01-26T02:43:14.843Z" }, + { url = "https://files.pythonhosted.org/packages/5f/a7/7ee591302af64e7c196fb63fe856c788993c1372df765102bd0448e7e165/multidict-6.7.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:067343c68cd6612d375710f895337b3a98a033c94f14b9a99eff902f205424e2", size = 233477, upload-time = "2026-01-26T02:43:16.025Z" }, + { url = "https://files.pythonhosted.org/packages/9c/99/c109962d58756c35fd9992fed7f2355303846ea2ff054bb5f5e9d6b888de/multidict-6.7.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5884a04f4ff56c6120f6ccf703bdeb8b5079d808ba604d4d53aec0d55dc33568", size = 243615, upload-time = "2026-01-26T02:43:17.84Z" }, + { url = "https://files.pythonhosted.org/packages/d5/5f/1973e7c771c86e93dcfe1c9cc55a5481b610f6614acfc28c0d326fe6bfad/multidict-6.7.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8affcf1c98b82bc901702eb73b6947a1bfa170823c153fe8a47b5f5f02e48e40", size = 249930, upload-time = "2026-01-26T02:43:19.06Z" }, + { url = "https://files.pythonhosted.org/packages/5d/a5/f170fc2268c3243853580203378cd522446b2df632061e0a5409817854c7/multidict-6.7.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:0d17522c37d03e85c8098ec8431636309b2682cf12e58f4dbc76121fb50e4962", size = 243807, upload-time = "2026-01-26T02:43:20.286Z" }, + { url = "https://files.pythonhosted.org/packages/de/01/73856fab6d125e5bc652c3986b90e8699a95e84b48d72f39ade6c0e74a8c/multidict-6.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:24c0cf81544ca5e17cfcb6e482e7a82cd475925242b308b890c9452a074d4505", size = 239103, upload-time = "2026-01-26T02:43:21.508Z" }, + { url = "https://files.pythonhosted.org/packages/e7/46/f1220bd9944d8aa40d8ccff100eeeee19b505b857b6f603d6078cb5315b0/multidict-6.7.1-cp310-cp310-win32.whl", hash = "sha256:d82dd730a95e6643802f4454b8fdecdf08667881a9c5670db85bc5a56693f122", size = 41416, upload-time = "2026-01-26T02:43:22.703Z" }, + { url = "https://files.pythonhosted.org/packages/68/00/9b38e272a770303692fc406c36e1a4c740f401522d5787691eb38a8925a8/multidict-6.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:cf37cbe5ced48d417ba045aca1b21bafca67489452debcde94778a576666a1df", size = 46022, upload-time = "2026-01-26T02:43:23.77Z" }, + { url = "https://files.pythonhosted.org/packages/64/65/d8d42490c02ee07b6bbe00f7190d70bb4738b3cce7629aaf9f213ef730dd/multidict-6.7.1-cp310-cp310-win_arm64.whl", hash = "sha256:59bc83d3f66b41dac1e7460aac1d196edc70c9ba3094965c467715a70ecb46db", size = 43238, upload-time = "2026-01-26T02:43:24.882Z" }, + { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" }, +] + +[[package]] +name = "narwhals" +version = "2.19.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4e/1a/bd3317c0bdbcd9ffb710ddf5250b32898f8f2c240be99494fe137feb77a7/narwhals-2.19.0.tar.gz", hash = "sha256:14fd7040b5ff211d415a82e4827b9d04c354e213e72a6d0730205ffd72e3b7ff", size = 623698, upload-time = "2026-04-06T15:50:58.786Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/72/e61e3091e0e00fae9d3a8ef85ece9d2cd4b5966058e1f2901ce42679eebf/narwhals-2.19.0-py3-none-any.whl", hash = "sha256:1f8dfa4a33a6dbff878c3e9be4c3b455dfcaf2a9322f1357db00e4e92e95b84b", size = 446991, upload-time = "2026-04-06T15:50:57.046Z" }, +] + +[[package]] +name = "nbclient" +version = "0.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "nbformat" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/56/91/1c1d5a4b9a9ebba2b4e32b8c852c2975c872aec1fe42ab5e516b2cecd193/nbclient-0.10.4.tar.gz", hash = "sha256:1e54091b16e6da39e297b0ece3e10f6f29f4ac4e8ee515d29f8a7099bd6553c9", size = 62554, upload-time = "2025-12-23T07:45:46.369Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/a0/5b0c2f11142ed1dddec842457d3f65eaf71a0080894eb6f018755b319c3a/nbclient-0.10.4-py3-none-any.whl", hash = "sha256:9162df5a7373d70d606527300a95a975a47c137776cd942e52d9c7e29ff83440", size = 25465, upload-time = "2025-12-23T07:45:44.51Z" }, +] + +[[package]] +name = "nbconvert" +version = "7.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4" }, + { name = "bleach", extra = ["css"] }, + { name = "defusedxml" }, + { name = "jinja2" }, + { name = "jupyter-core" }, + { name = "jupyterlab-pygments" }, + { name = "markupsafe" }, + { name = "mistune" }, + { name = "nbclient" }, + { name = "nbformat" }, + { name = "packaging" }, + { name = "pandocfilters" }, + { name = "pygments" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/01/b1/708e53fe2e429c103c6e6e159106bcf0357ac41aa4c28772bd8402339051/nbconvert-7.17.1.tar.gz", hash = "sha256:34d0d0a7e73ce3cbab6c5aae8f4f468797280b01fd8bd2ca746da8569eddd7d2", size = 865311, upload-time = "2026-04-08T00:44:14.914Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/f8/bb0a9d5f46819c821dc1f004aa2cc29b1d91453297dbf5ff20470f00f193/nbconvert-7.17.1-py3-none-any.whl", hash = "sha256:aa85c087b435e7bf1ffd03319f658e285f2b89eccab33bc1ba7025495ab3e7c8", size = 261927, upload-time = "2026-04-08T00:44:12.845Z" }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema" }, + { name = "jsonschema" }, + { name = "jupyter-core" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749, upload-time = "2024-04-04T11:20:37.371Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454, upload-time = "2024-04-04T11:20:34.895Z" }, +] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418, upload-time = "2024-01-21T14:25:19.227Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195, upload-time = "2024-01-21T14:25:17.223Z" }, +] + +[[package]] +name = "networkx" +version = "2.8.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/16/c44e8550012735b8f21b3df7f39e8ba5a987fb764ac017ad5f3589735889/networkx-2.8.8.tar.gz", hash = "sha256:230d388117af870fce5647a3c52401fcf753e94720e6ea6b4197a5355648885e", size = 1960828, upload-time = "2022-11-01T20:31:52.02Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/31/d2f89f1ae42718f8c8a9e440ebe38d7d5fe1e0d9eb9178ce779e365b3ab0/networkx-2.8.8-py3-none-any.whl", hash = "sha256:e435dfa75b1d7195c7b8378c3859f0445cd88c6b0375c181ed66823a9ceb7524", size = 2025192, upload-time = "2022-11-01T20:31:49.035Z" }, +] + +[[package]] +name = "notebook" +version = "7.5.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, + { name = "jupyterlab" }, + { name = "jupyterlab-server" }, + { name = "notebook-shim" }, + { name = "tornado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1f/6d/41052c48d6f6349ca0a7c4d1f6a78464de135e6d18f5829ba2510e62184c/notebook-7.5.5.tar.gz", hash = "sha256:dc0bfab0f2372c8278c457423d3256c34154ac2cc76bf20e9925260c461013c3", size = 14169167, upload-time = "2026-03-11T16:32:51.922Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/aa/cbd1deb9f07446241e88f8d5fecccd95b249bca0b4e5482214a4d1714c49/notebook-7.5.5-py3-none-any.whl", hash = "sha256:a7c14dbeefa6592e87f72290ca982e0c10f5bbf3786be2a600fda9da2764a2b8", size = 14578929, upload-time = "2026-03-11T16:32:48.021Z" }, +] + +[[package]] +name = "notebook-shim" +version = "0.2.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/54/d2/92fa3243712b9a3e8bafaf60aac366da1cada3639ca767ff4b5b3654ec28/notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb", size = 13167, upload-time = "2024-02-14T23:35:18.353Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef", size = 13307, upload-time = "2024-02-14T23:35:16.286Z" }, +] + +[[package]] +name = "numba" +version = "0.65.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "llvmlite" }, + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/49/61/7299643b9c18d669e04be7c5bcb64d985070d07553274817b45b049e7bfe/numba-0.65.0.tar.gz", hash = "sha256:edad0d9f6682e93624c00125a471ae4df186175d71fd604c983c377cdc03e68b", size = 2764131, upload-time = "2026-04-01T03:52:01.946Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/9b/e8453d93d5cb3f53cc956f135024be09d52f4f99643acaf8fdca090a8f3c/numba-0.65.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:dff9fd5fbc9a35c517359c5823ea705d9b65f01fb46e42e35a2eabe5a52c2e96", size = 2680537, upload-time = "2026-04-01T03:51:17.325Z" }, + { url = "https://files.pythonhosted.org/packages/07/95/d6a2f0625e1092624228301eea11cdaff21ddcaf917ef3d631846a38b2f4/numba-0.65.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4c894c94afa5ffd627c7e3b693df10cb0d905bd5eb06de3dfc31775140cf4f89", size = 3739444, upload-time = "2026-04-01T03:51:19.629Z" }, + { url = "https://files.pythonhosted.org/packages/49/ed/fe518c97af035e4ec670c2edc3f0ff7a518cbed2f0b5053124d7c979bd8a/numba-0.65.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b7325b1aab88f0339057288ee32f39dc660e14f93872a6fda14fa6eb9f95b047", size = 3446390, upload-time = "2026-04-01T03:51:21.55Z" }, + { url = "https://files.pythonhosted.org/packages/d0/06/5010939854249c290c6217e3fb7404914f4ed953f9923e340c3e166bcaf0/numba-0.65.0-cp310-cp310-win_amd64.whl", hash = "sha256:71e72e9ca2f619df4768f9c3962bfec60191a5a26fe2b6a8c6a07532b6146169", size = 2747200, upload-time = "2026-04-01T03:51:23.674Z" }, +] + +[[package]] +name = "numpy" +version = "1.26.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/65/6e/09db70a523a96d25e115e71cc56a6f9031e7b8cd166c1ac8438307c14058/numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", size = 15786129, upload-time = "2024-02-06T00:26:44.495Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/94/ace0fdea5241a27d13543ee117cbc65868e82213fb31a8eb7fe9ff23f313/numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", size = 20631468, upload-time = "2024-02-05T23:48:01.194Z" }, + { url = "https://files.pythonhosted.org/packages/20/f7/b24208eba89f9d1b58c1668bc6c8c4fd472b20c45573cb767f59d49fb0f6/numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", size = 13966411, upload-time = "2024-02-05T23:48:29.038Z" }, + { url = "https://files.pythonhosted.org/packages/fc/a5/4beee6488160798683eed5bdb7eead455892c3b4e1f78d79d8d3f3b084ac/numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", size = 14219016, upload-time = "2024-02-05T23:48:54.098Z" }, + { url = "https://files.pythonhosted.org/packages/4b/d7/ecf66c1cd12dc28b4040b15ab4d17b773b87fa9d29ca16125de01adb36cd/numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f", size = 18240889, upload-time = "2024-02-05T23:49:25.361Z" }, + { url = "https://files.pythonhosted.org/packages/24/03/6f229fe3187546435c4f6f89f6d26c129d4f5bed40552899fcf1f0bf9e50/numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", size = 13876746, upload-time = "2024-02-05T23:49:51.983Z" }, + { url = "https://files.pythonhosted.org/packages/39/fe/39ada9b094f01f5a35486577c848fe274e374bbf8d8f472e1423a0bbd26d/numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", size = 18078620, upload-time = "2024-02-05T23:50:22.515Z" }, + { url = "https://files.pythonhosted.org/packages/d5/ef/6ad11d51197aad206a9ad2286dc1aac6a378059e06e8cf22cd08ed4f20dc/numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", size = 5972659, upload-time = "2024-02-05T23:50:35.834Z" }, + { url = "https://files.pythonhosted.org/packages/19/77/538f202862b9183f54108557bfda67e17603fc560c384559e769321c9d92/numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", size = 15808905, upload-time = "2024-02-05T23:51:03.701Z" }, +] + +[[package]] +name = "nvidia-cublas-cu12" +version = "12.1.3.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/6d/121efd7382d5b0284239f4ab1fc1590d86d34ed4a4a2fdb13b30ca8e5740/nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:ee53ccca76a6fc08fb9701aa95b6ceb242cdaab118c3bb152af4e579af792728", size = 410594774, upload-time = "2023-04-19T15:50:03.519Z" }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/00/6b218edd739ecfc60524e585ba8e6b00554dd908de2c9c66c1af3e44e18d/nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:e54fde3983165c624cb79254ae9818a456eb6e87a7fd4d56a2352c24ee542d7e", size = 14109015, upload-time = "2023-04-19T15:47:32.502Z" }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/9f/c64c03f49d6fbc56196664d05dba14e3a561038a81a638eeb47f4d4cfd48/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:339b385f50c309763ca65456ec75e17bbefcbbf2893f462cb8b90584cd27a1c2", size = 23671734, upload-time = "2023-04-19T15:48:32.42Z" }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/d5/c68b1d2cdfcc59e72e8a5949a37ddb22ae6cade80cd4a57a84d4c8b55472/nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:6e258468ddf5796e25f1dc591a31029fa317d97a0a94ed93468fc86301d61e40", size = 823596, upload-time = "2023-04-19T15:47:22.471Z" }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "8.9.2.26" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/74/a2e2be7fb83aaedec84f391f082cf765dfb635e7caa9b49065f73e4835d8/nvidia_cudnn_cu12-8.9.2.26-py3-none-manylinux1_x86_64.whl", hash = "sha256:5ccb288774fdfb07a7e7025ffec286971c06d8d7b4fb162525334616d7629ff9", size = 731725872, upload-time = "2023-06-01T19:24:57.328Z" }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.0.2.54" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/94/eb540db023ce1d162e7bea9f8f5aa781d57c65aed513c33ee9a5123ead4d/nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl", hash = "sha256:794e3948a1aa71fd817c3775866943936774d1c14e7628c74f6f7417224cdf56", size = 121635161, upload-time = "2023-04-19T15:50:46Z" }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.2.106" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/31/4890b1c9abc496303412947fc7dcea3d14861720642b49e8ceed89636705/nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:9d264c5036dde4e64f1de8c50ae753237c12e0b1348738169cd0f8a536c0e1e0", size = 56467784, upload-time = "2023-04-19T15:51:04.804Z" }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.4.5.107" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, + { name = "nvidia-cusparse-cu12" }, + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/1d/8de1e5c67099015c834315e333911273a8c6aaba78923dd1d1e25fc5f217/nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl", hash = "sha256:8a7ec542f0412294b15072fa7dab71d31334014a69f953004ea7a118206fe0dd", size = 124161928, upload-time = "2023-04-19T15:51:25.781Z" }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.1.0.106" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/5b/cfaeebf25cd9fdec14338ccb16f6b2c4c7fa9163aefcf057d86b9cc248bb/nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:f3b50f42cf363f86ab21f720998517a659a48131e8d538dc02f8768237bd884c", size = 195958278, upload-time = "2023-04-19T15:51:49.939Z" }, +] + +[[package]] +name = "nvidia-nccl-cu12" +version = "2.18.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/05/23f8f38eec3d28e4915725b233c24d8f1a33cb6540a882f7b54be1befa02/nvidia_nccl_cu12-2.18.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:1a6c4acefcbebfa6de320f412bf7866de856e786e0462326ba1bac40de0b5e71", size = 209797524, upload-time = "2023-05-04T23:15:49.653Z" }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.9.86" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/0c/c75bbfb967457a0b7670b8ad267bfc4fffdf341c074e0a80db06c24ccfd4/nvidia_nvjitlink_cu12-12.9.86-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:e3f1171dbdc83c5932a45f0f4c99180a70de9bd2718c1ab77d14104f6d7147f9", size = 39748338, upload-time = "2025-06-05T20:10:25.613Z" }, +] + +[[package]] +name = "nvidia-nvtx-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/d3/8057f0587683ed2fcd4dbfbdfdfa807b9160b809976099d36b8f60d08f03/nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:dc21cf308ca5691e7c04d962e213f8a4aa9bbfa23d95412f452254c2caeb09e5", size = 99138, upload-time = "2023-04-19T15:48:43.556Z" }, +] + +[[package]] +name = "oauthlib" +version = "3.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0b/5f/19930f824ffeb0ad4372da4812c50edbd1434f678c90c2733e1188edfc63/oauthlib-3.3.1.tar.gz", hash = "sha256:0f0f8aa759826a193cf66c12ea1af1637f87b9b4622d46e866952bb022e538c9", size = 185918, upload-time = "2025-06-19T22:48:08.269Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/be/9c/92789c596b8df838baa98fa71844d84283302f7604ed565dafe5a6b5041a/oauthlib-3.3.1-py3-none-any.whl", hash = "sha256:88119c938d2b8fb88561af5f6ee0eec8cc8d552b7bb1f712743136eb7523b7a1", size = 160065, upload-time = "2025-06-19T22:48:06.508Z" }, +] + +[[package]] +name = "opt-einsum" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/b9/2ac072041e899a52f20cf9510850ff58295003aa75525e58343591b0cbfb/opt_einsum-3.4.0.tar.gz", hash = "sha256:96ca72f1b886d148241348783498194c577fa30a8faac108586b14f1ba4473ac", size = 63004, upload-time = "2024-09-26T14:33:24.483Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/cd/066e86230ae37ed0be70aae89aabf03ca8d9f39c8aea0dec8029455b5540/opt_einsum-3.4.0-py3-none-any.whl", hash = "sha256:69bb92469f86a1565195ece4ac0323943e83477171b91d24c35afe028a90d7cd", size = 71932, upload-time = "2024-09-26T14:33:23.039Z" }, +] + +[[package]] +name = "optuna" +version = "4.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alembic" }, + { name = "colorlog" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "sqlalchemy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/9b/62f120fb2ecbc4338bee70c5a3671c8e561714f3aa1a046b897ff142050e/optuna-4.8.0.tar.gz", hash = "sha256:6f7043e9f8ecb5e607af86a7eb00fb5ec2be26c3b08c201209a73d36aff37a38", size = 482603, upload-time = "2026-03-16T04:59:58.659Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/24/7c731839566d30dc70556d9824ef17692d896c15e3df627bce8c16f753e1/optuna-4.8.0-py3-none-any.whl", hash = "sha256:c57a7682679c36bfc9bca0da430698179e513874074b71bebedb0334964ab930", size = 419456, upload-time = "2026-03-16T04:59:56.977Z" }, +] + +[[package]] +name = "overrides" +version = "7.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/36/86/b585f53236dec60aba864e050778b25045f857e17f6e5ea0ae95fe80edd2/overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a", size = 22812, upload-time = "2024-01-27T21:01:33.423Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49", size = 17832, upload-time = "2024-01-27T21:01:31.393Z" }, +] + +[[package]] +name = "packaging" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950, upload-time = "2024-11-08T09:47:47.202Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451, upload-time = "2024-11-08T09:47:44.722Z" }, +] + +[[package]] +name = "pandas" +version = "2.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/33/01/d40b85317f86cf08d853a4f495195c73815fdf205eef3993821720274518/pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b", size = 4495223, upload-time = "2025-09-29T23:34:51.853Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/f7/f425a00df4fcc22b292c6895c6831c0c8ae1d9fac1e024d16f98a9ce8749/pandas-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:376c6446ae31770764215a6c937f72d917f214b43560603cd60da6408f183b6c", size = 11555763, upload-time = "2025-09-29T23:16:53.287Z" }, + { url = "https://files.pythonhosted.org/packages/13/4f/66d99628ff8ce7857aca52fed8f0066ce209f96be2fede6cef9f84e8d04f/pandas-2.3.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e19d192383eab2f4ceb30b412b22ea30690c9e618f78870357ae1d682912015a", size = 10801217, upload-time = "2025-09-29T23:17:04.522Z" }, + { url = "https://files.pythonhosted.org/packages/1d/03/3fc4a529a7710f890a239cc496fc6d50ad4a0995657dccc1d64695adb9f4/pandas-2.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5caf26f64126b6c7aec964f74266f435afef1c1b13da3b0636c7518a1fa3e2b1", size = 12148791, upload-time = "2025-09-29T23:17:18.444Z" }, + { url = "https://files.pythonhosted.org/packages/40/a8/4dac1f8f8235e5d25b9955d02ff6f29396191d4e665d71122c3722ca83c5/pandas-2.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dd7478f1463441ae4ca7308a70e90b33470fa593429f9d4c578dd00d1fa78838", size = 12769373, upload-time = "2025-09-29T23:17:35.846Z" }, + { url = "https://files.pythonhosted.org/packages/df/91/82cc5169b6b25440a7fc0ef3a694582418d875c8e3ebf796a6d6470aa578/pandas-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4793891684806ae50d1288c9bae9330293ab4e083ccd1c5e383c34549c6e4250", size = 13200444, upload-time = "2025-09-29T23:17:49.341Z" }, + { url = "https://files.pythonhosted.org/packages/10/ae/89b3283800ab58f7af2952704078555fa60c807fff764395bb57ea0b0dbd/pandas-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:28083c648d9a99a5dd035ec125d42439c6c1c525098c58af0fc38dd1a7a1b3d4", size = 13858459, upload-time = "2025-09-29T23:18:03.722Z" }, + { url = "https://files.pythonhosted.org/packages/85/72/530900610650f54a35a19476eca5104f38555afccda1aa11a92ee14cb21d/pandas-2.3.3-cp310-cp310-win_amd64.whl", hash = "sha256:503cf027cf9940d2ceaa1a93cfb5f8c8c7e6e90720a2850378f0b3f3b1e06826", size = 11346086, upload-time = "2025-09-29T23:18:18.505Z" }, +] + +[[package]] +name = "pandocfilters" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/6f/3dd4940bbe001c06a65f88e36bad298bc7a0de5036115639926b0c5c0458/pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e", size = 8454, upload-time = "2024-01-18T20:08:13.726Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc", size = 8663, upload-time = "2024-01-18T20:08:11.28Z" }, +] + +[[package]] +name = "parso" +version = "0.8.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/76/a1e769043c0c0c9fe391b702539d594731a4362334cdf4dc25d0c09761e7/parso-0.8.6.tar.gz", hash = "sha256:2b9a0332696df97d454fa67b81618fd69c35a7b90327cbe6ba5c92d2c68a7bfd", size = 401621, upload-time = "2026-02-09T15:45:24.425Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/61/fae042894f4296ec49e3f193aff5d7c18440da9e48102c3315e1bc4519a7/parso-0.8.6-py2.py3-none-any.whl", hash = "sha256:2c549f800b70a5c4952197248825584cb00f033b29c692671d3bf08bf380baff", size = 106894, upload-time = "2026-02-09T15:45:21.391Z" }, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload-time = "2023-11-25T09:07:26.339Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772, upload-time = "2023-11-25T06:56:14.81Z" }, +] + +[[package]] +name = "pillow" +version = "12.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/21/c2bcdd5906101a30244eaffc1b6e6ce71a31bd0742a01eb89e660ebfac2d/pillow-12.2.0.tar.gz", hash = "sha256:a830b1a40919539d07806aa58e1b114df53ddd43213d9c8b75847eee6c0182b5", size = 46987819, upload-time = "2026-04-01T14:46:17.687Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/aa/d0b28e1c811cd4d5f5c2bfe2e022292bd255ae5744a3b9ac7d6c8f72dd75/pillow-12.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:a4e8f36e677d3336f35089648c8955c51c6d386a13cf6ee9c189c5f5bd713a9f", size = 5354355, upload-time = "2026-04-01T14:42:15.402Z" }, + { url = "https://files.pythonhosted.org/packages/27/8e/1d5b39b8ae2bd7650d0c7b6abb9602d16043ead9ebbfef4bc4047454da2a/pillow-12.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e589959f10d9824d39b350472b92f0ce3b443c0a3442ebf41c40cb8361c5b97", size = 4695871, upload-time = "2026-04-01T14:42:18.234Z" }, + { url = "https://files.pythonhosted.org/packages/f0/c5/dcb7a6ca6b7d3be41a76958e90018d56c8462166b3ef223150360850c8da/pillow-12.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:a52edc8bfff4429aaabdf4d9ee0daadbbf8562364f940937b941f87a4290f5ff", size = 6269734, upload-time = "2026-04-01T14:42:20.608Z" }, + { url = "https://files.pythonhosted.org/packages/ea/f1/aa1bb13b2f4eba914e9637893c73f2af8e48d7d4023b9d3750d4c5eb2d0c/pillow-12.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:975385f4776fafde056abb318f612ef6285b10a1f12b8570f3647ad0d74b48ec", size = 8076080, upload-time = "2026-04-01T14:42:23.095Z" }, + { url = "https://files.pythonhosted.org/packages/a1/2a/8c79d6a53169937784604a8ae8d77e45888c41537f7f6f65ed1f407fe66d/pillow-12.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bd9c0c7a0c681a347b3194c500cb1e6ca9cab053ea4d82a5cf45b6b754560136", size = 6382236, upload-time = "2026-04-01T14:42:25.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/42/bbcb6051030e1e421d103ce7a8ecadf837aa2f39b8f82ef1a8d37c3d4ebc/pillow-12.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:88d387ff40b3ff7c274947ed3125dedf5262ec6919d83946753b5f3d7c67ea4c", size = 7070220, upload-time = "2026-04-01T14:42:28.68Z" }, + { url = "https://files.pythonhosted.org/packages/3f/e1/c2a7d6dd8cfa6b231227da096fd2d58754bab3603b9d73bf609d3c18b64f/pillow-12.2.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:51c4167c34b0d8ba05b547a3bb23578d0ba17b80a5593f93bd8ecb123dd336a3", size = 6493124, upload-time = "2026-04-01T14:42:31.579Z" }, + { url = "https://files.pythonhosted.org/packages/5f/41/7c8617da5d32e1d2f026e509484fdb6f3ad7efaef1749a0c1928adbb099e/pillow-12.2.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:34c0d99ecccea270c04882cb3b86e7b57296079c9a4aff88cb3b33563d95afaa", size = 7194324, upload-time = "2026-04-01T14:42:34.615Z" }, + { url = "https://files.pythonhosted.org/packages/2d/de/a777627e19fd6d62f84070ee1521adde5eeda4855b5cf60fe0b149118bca/pillow-12.2.0-cp310-cp310-win32.whl", hash = "sha256:b85f66ae9eb53e860a873b858b789217ba505e5e405a24b85c0464822fe88032", size = 6376363, upload-time = "2026-04-01T14:42:37.19Z" }, + { url = "https://files.pythonhosted.org/packages/e7/34/fc4cb5204896465842767b96d250c08410f01f2f28afc43b257de842eed5/pillow-12.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:673aa32138f3e7531ccdbca7b3901dba9b70940a19ccecc6a37c77d5fdeb05b5", size = 7083523, upload-time = "2026-04-01T14:42:39.62Z" }, + { url = "https://files.pythonhosted.org/packages/2d/a0/32852d36bc7709f14dc3f64f929a275e958ad8c19a6deba9610d458e28b3/pillow-12.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:3e080565d8d7c671db5802eedfb438e5565ffa40115216eabb8cd52d0ecce024", size = 2463318, upload-time = "2026-04-01T14:42:42.063Z" }, +] + +[[package]] +name = "platformdirs" +version = "4.9.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9f/4a/0883b8e3802965322523f0b200ecf33d31f10991d0401162f4b23c698b42/platformdirs-4.9.6.tar.gz", hash = "sha256:3bfa75b0ad0db84096ae777218481852c0ebc6c727b3168c1b9e0118e458cf0a", size = 29400, upload-time = "2026-04-09T00:04:10.812Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/a6/a0a304dc33b49145b21f4808d763822111e67d1c3a32b524a1baf947b6e1/platformdirs-4.9.6-py3-none-any.whl", hash = "sha256:e61adb1d5e5cb3441b4b7710bea7e4c12250ca49439228cc1021c00dcfac0917", size = 21348, upload-time = "2026-04-09T00:04:09.463Z" }, +] + +[[package]] +name = "pluggy" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, +] + +[[package]] +name = "prometheus-client" +version = "0.25.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/fb/d9aa83ffe43ce1f19e557c0971d04b90561b0cfd50762aafb01968285553/prometheus_client-0.25.0.tar.gz", hash = "sha256:5e373b75c31afb3c86f1a52fa1ad470c9aace18082d39ec0d2f918d11cc9ba28", size = 86035, upload-time = "2026-04-09T19:53:42.359Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/9b/d4b1e644385499c8346fa9b622a3f030dce14cd6ef8a1871c221a17a67e7/prometheus_client-0.25.0-py3-none-any.whl", hash = "sha256:d5aec89e349a6ec230805d0df882f3807f74fd6c1a2fa86864e3c2279059fed1", size = 64154, upload-time = "2026-04-09T19:53:41.324Z" }, +] + +[[package]] +name = "prompt-toolkit" +version = "3.0.52" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/96/06e01a7b38dce6fe1db213e061a4602dd6032a8a97ef6c1a862537732421/prompt_toolkit-3.0.52.tar.gz", hash = "sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855", size = 434198, upload-time = "2025-08-27T15:24:02.057Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/03/0d3ce49e2505ae70cf43bc5bb3033955d2fc9f932163e84dc0779cc47f48/prompt_toolkit-3.0.52-py3-none-any.whl", hash = "sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955", size = 391431, upload-time = "2025-08-27T15:23:59.498Z" }, +] + +[[package]] +name = "propcache" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9e/da/e9fc233cf63743258bff22b3dfa7ea5baef7b5bc324af47a0ad89b8ffc6f/propcache-0.4.1.tar.gz", hash = "sha256:f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d", size = 46442, upload-time = "2025-10-08T19:49:02.291Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/0e/934b541323035566a9af292dba85a195f7b78179114f2c6ebb24551118a9/propcache-0.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7c2d1fa3201efaf55d730400d945b5b3ab6e672e100ba0f9a409d950ab25d7db", size = 79534, upload-time = "2025-10-08T19:46:02.083Z" }, + { url = "https://files.pythonhosted.org/packages/a1/6b/db0d03d96726d995dc7171286c6ba9d8d14251f37433890f88368951a44e/propcache-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1eb2994229cc8ce7fe9b3db88f5465f5fd8651672840b2e426b88cdb1a30aac8", size = 45526, upload-time = "2025-10-08T19:46:03.884Z" }, + { url = "https://files.pythonhosted.org/packages/e4/c3/82728404aea669e1600f304f2609cde9e665c18df5a11cdd57ed73c1dceb/propcache-0.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:66c1f011f45a3b33d7bcb22daed4b29c0c9e2224758b6be00686731e1b46f925", size = 47263, upload-time = "2025-10-08T19:46:05.405Z" }, + { url = "https://files.pythonhosted.org/packages/df/1b/39313ddad2bf9187a1432654c38249bab4562ef535ef07f5eb6eb04d0b1b/propcache-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9a52009f2adffe195d0b605c25ec929d26b36ef986ba85244891dee3b294df21", size = 201012, upload-time = "2025-10-08T19:46:07.165Z" }, + { url = "https://files.pythonhosted.org/packages/5b/01/f1d0b57d136f294a142acf97f4ed58c8e5b974c21e543000968357115011/propcache-0.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5d4e2366a9c7b837555cf02fb9be2e3167d333aff716332ef1b7c3a142ec40c5", size = 209491, upload-time = "2025-10-08T19:46:08.909Z" }, + { url = "https://files.pythonhosted.org/packages/a1/c8/038d909c61c5bb039070b3fb02ad5cccdb1dde0d714792e251cdb17c9c05/propcache-0.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:9d2b6caef873b4f09e26ea7e33d65f42b944837563a47a94719cc3544319a0db", size = 215319, upload-time = "2025-10-08T19:46:10.7Z" }, + { url = "https://files.pythonhosted.org/packages/08/57/8c87e93142b2c1fa2408e45695205a7ba05fb5db458c0bf5c06ba0e09ea6/propcache-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b16ec437a8c8a965ecf95739448dd938b5c7f56e67ea009f4300d8df05f32b7", size = 196856, upload-time = "2025-10-08T19:46:12.003Z" }, + { url = "https://files.pythonhosted.org/packages/42/df/5615fec76aa561987a534759b3686008a288e73107faa49a8ae5795a9f7a/propcache-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:296f4c8ed03ca7476813fe666c9ea97869a8d7aec972618671b33a38a5182ef4", size = 193241, upload-time = "2025-10-08T19:46:13.495Z" }, + { url = "https://files.pythonhosted.org/packages/d5/21/62949eb3a7a54afe8327011c90aca7e03547787a88fb8bd9726806482fea/propcache-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:1f0978529a418ebd1f49dad413a2b68af33f85d5c5ca5c6ca2a3bed375a7ac60", size = 190552, upload-time = "2025-10-08T19:46:14.938Z" }, + { url = "https://files.pythonhosted.org/packages/30/ee/ab4d727dd70806e5b4de96a798ae7ac6e4d42516f030ee60522474b6b332/propcache-0.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fd138803047fb4c062b1c1dd95462f5209456bfab55c734458f15d11da288f8f", size = 200113, upload-time = "2025-10-08T19:46:16.695Z" }, + { url = "https://files.pythonhosted.org/packages/8a/0b/38b46208e6711b016aa8966a3ac793eee0d05c7159d8342aa27fc0bc365e/propcache-0.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:8c9b3cbe4584636d72ff556d9036e0c9317fa27b3ac1f0f558e7e84d1c9c5900", size = 200778, upload-time = "2025-10-08T19:46:18.023Z" }, + { url = "https://files.pythonhosted.org/packages/cf/81/5abec54355ed344476bee711e9f04815d4b00a311ab0535599204eecc257/propcache-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f93243fdc5657247533273ac4f86ae106cc6445a0efacb9a1bfe982fcfefd90c", size = 193047, upload-time = "2025-10-08T19:46:19.449Z" }, + { url = "https://files.pythonhosted.org/packages/ec/b6/1f237c04e32063cb034acd5f6ef34ef3a394f75502e72703545631ab1ef6/propcache-0.4.1-cp310-cp310-win32.whl", hash = "sha256:a0ee98db9c5f80785b266eb805016e36058ac72c51a064040f2bc43b61101cdb", size = 38093, upload-time = "2025-10-08T19:46:20.643Z" }, + { url = "https://files.pythonhosted.org/packages/a6/67/354aac4e0603a15f76439caf0427781bcd6797f370377f75a642133bc954/propcache-0.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:1cdb7988c4e5ac7f6d175a28a9aa0c94cb6f2ebe52756a3c0cda98d2809a9e37", size = 41638, upload-time = "2025-10-08T19:46:21.935Z" }, + { url = "https://files.pythonhosted.org/packages/e0/e1/74e55b9fd1a4c209ff1a9a824bf6c8b3d1fc5a1ac3eabe23462637466785/propcache-0.4.1-cp310-cp310-win_arm64.whl", hash = "sha256:d82ad62b19645419fe79dd63b3f9253e15b30e955c0170e5cebc350c1844e581", size = 38229, upload-time = "2025-10-08T19:46:23.368Z" }, + { url = "https://files.pythonhosted.org/packages/5b/5a/bc7b4a4ef808fa59a816c17b20c4bef6884daebbdf627ff2a161da67da19/propcache-0.4.1-py3-none-any.whl", hash = "sha256:af2a6052aeb6cf17d3e46ee169099044fd8224cbaf75c76a2ef596e8163e2237", size = 13305, upload-time = "2025-10-08T19:49:00.792Z" }, +] + +[[package]] +name = "protobuf" +version = "4.25.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d9/8e/d08c41a8c004e1d437ef467e7c4f9c3295cd784eba48ed5d1d01f94b1dad/protobuf-4.25.9.tar.gz", hash = "sha256:b0dc7e7c68de8b1ce831dacb12fb407e838edbb8b6cc0dc3a2a6b4cbf6de9cff", size = 381040, upload-time = "2026-03-25T23:09:36.423Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/e9/59435bd04bdd46cb38c42a336b22f9843e8e586ff83c35a5423f8b14704e/protobuf-4.25.9-cp310-abi3-win32.whl", hash = "sha256:bde396f568b0b46fc8fbfe9f02facf25b6755b2578a3b8ac61e74b9d69499e03", size = 392879, upload-time = "2026-03-25T23:09:21.32Z" }, + { url = "https://files.pythonhosted.org/packages/f3/16/42a5c7f1001783d2b5bfcecde10127f09010f78982c86ae409122ce3ece6/protobuf-4.25.9-cp310-abi3-win_amd64.whl", hash = "sha256:3683c05154252206f7cb2d371626514b3708199d9bcf683b503dabf3a2e38e06", size = 413900, upload-time = "2026-03-25T23:09:23.589Z" }, + { url = "https://files.pythonhosted.org/packages/56/5b/0074a0a9eb01f3d1c4648ca5e81b22090c811b210b61df9018ac6d6c5cda/protobuf-4.25.9-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:9560813560e6ee72c11ca8873878bdb7ee003c96a57ebb013245fe84e2540904", size = 394826, upload-time = "2026-03-25T23:09:25.194Z" }, + { url = "https://files.pythonhosted.org/packages/54/aa/b2dba856f64c36b2a06c67be1472de98cca07a2322d0f0cbf03279a40e5b/protobuf-4.25.9-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:999146ef02e7fa6a692477badd1528bcd7268df211852a3df2d834ba2b480791", size = 294191, upload-time = "2026-03-25T23:09:26.613Z" }, + { url = "https://files.pythonhosted.org/packages/a8/5c/53f18822017b8bda6bd8bb4e02048e911fdc79a3dafdc83ab994fe922a84/protobuf-4.25.9-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:438c636de8fb706a0de94a12a268ef1ae8f5ba5ae655a7671fcda5968ba3c9be", size = 295178, upload-time = "2026-03-25T23:09:27.839Z" }, + { url = "https://files.pythonhosted.org/packages/16/28/d5065b212685875d3924bcdb3201cbf467cb4d58a18aa19a8dfd99ea80a9/protobuf-4.25.9-py3-none-any.whl", hash = "sha256:d49b615e7c935194ac161f0965699ac84df6112c378e05ec53da65d2e4cbb6d4", size = 156822, upload-time = "2026-03-25T23:09:34.957Z" }, +] + +[[package]] +name = "psutil" +version = "7.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/c6/d1ddf4abb55e93cebc4f2ed8b5d6dbad109ecb8d63748dd2b20ab5e57ebe/psutil-7.2.2.tar.gz", hash = "sha256:0746f5f8d406af344fd547f1c8daa5f5c33dbc293bb8d6a16d80b4bb88f59372", size = 493740, upload-time = "2026-01-28T18:14:54.428Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/36/5ee6e05c9bd427237b11b3937ad82bb8ad2752d72c6969314590dd0c2f6e/psutil-7.2.2-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ed0cace939114f62738d808fdcecd4c869222507e266e574799e9c0faa17d486", size = 129090, upload-time = "2026-01-28T18:15:22.168Z" }, + { url = "https://files.pythonhosted.org/packages/80/c4/f5af4c1ca8c1eeb2e92ccca14ce8effdeec651d5ab6053c589b074eda6e1/psutil-7.2.2-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:1a7b04c10f32cc88ab39cbf606e117fd74721c831c98a27dc04578deb0c16979", size = 129859, upload-time = "2026-01-28T18:15:23.795Z" }, + { url = "https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9", size = 155560, upload-time = "2026-01-28T18:15:25.976Z" }, + { url = "https://files.pythonhosted.org/packages/63/65/37648c0c158dc222aba51c089eb3bdfa238e621674dc42d48706e639204f/psutil-7.2.2-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b0726cecd84f9474419d67252add4ac0cd9811b04d61123054b9fb6f57df6e9e", size = 156997, upload-time = "2026-01-28T18:15:27.794Z" }, + { url = "https://files.pythonhosted.org/packages/8e/13/125093eadae863ce03c6ffdbae9929430d116a246ef69866dad94da3bfbc/psutil-7.2.2-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fd04ef36b4a6d599bbdb225dd1d3f51e00105f6d48a28f006da7f9822f2606d8", size = 148972, upload-time = "2026-01-28T18:15:29.342Z" }, + { url = "https://files.pythonhosted.org/packages/04/78/0acd37ca84ce3ddffaa92ef0f571e073faa6d8ff1f0559ab1272188ea2be/psutil-7.2.2-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b58fabe35e80b264a4e3bb23e6b96f9e45a3df7fb7eed419ac0e5947c61e47cc", size = 148266, upload-time = "2026-01-28T18:15:31.597Z" }, + { url = "https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl", hash = "sha256:eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988", size = 137737, upload-time = "2026-01-28T18:15:33.849Z" }, + { url = "https://files.pythonhosted.org/packages/8c/c7/7bb2e321574b10df20cbde462a94e2b71d05f9bbda251ef27d104668306a/psutil-7.2.2-cp37-abi3-win_arm64.whl", hash = "sha256:8c233660f575a5a89e6d4cb65d9f938126312bca76d8fe087b947b3a1aaac9ee", size = 134617, upload-time = "2026-01-28T18:15:36.514Z" }, +] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762, upload-time = "2020-12-28T15:15:30.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993, upload-time = "2020-12-28T15:15:28.35Z" }, +] + +[[package]] +name = "pure-eval" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752, upload-time = "2024-07-21T12:58:21.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842, upload-time = "2024-07-21T12:58:20.04Z" }, +] + +[[package]] +name = "py4j" +version = "0.10.9.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/38/31/0b210511177070c8d5d3059556194352e5753602fa64b85b7ab81ec1a009/py4j-0.10.9.9.tar.gz", hash = "sha256:f694cad19efa5bd1dee4f3e5270eb406613c974394035e5bfc4ec1aba870b879", size = 761089, upload-time = "2025-01-15T03:53:18.624Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/db/ea0203e495be491c85af87b66e37acfd3bf756fd985f87e46fc5e3bf022c/py4j-0.10.9.9-py2.py3-none-any.whl", hash = "sha256:c7c26e4158defb37b0bb124933163641a2ff6e3a3913f7811b0ddbe07ed61533", size = 203008, upload-time = "2025-01-15T03:53:15.648Z" }, +] + +[[package]] +name = "pyarrow" +version = "23.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/88/22/134986a4cc224d593c1afde5494d18ff629393d74cc2eddb176669f234a4/pyarrow-23.0.1.tar.gz", hash = "sha256:b8c5873e33440b2bc2f4a79d2b47017a89c5a24116c055625e6f2ee50523f019", size = 1167336, upload-time = "2026-02-16T10:14:12.39Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/a8/24e5dc6855f50a62936ceb004e6e9645e4219a8065f304145d7fb8a79d5d/pyarrow-23.0.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3fab8f82571844eb3c460f90a75583801d14ca0cc32b1acc8c361650e006fd56", size = 34307390, upload-time = "2026-02-16T10:08:08.654Z" }, + { url = "https://files.pythonhosted.org/packages/bc/8e/4be5617b4aaae0287f621ad31c6036e5f63118cfca0dc57d42121ff49b51/pyarrow-23.0.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:3f91c038b95f71ddfc865f11d5876c42f343b4495535bd262c7b321b0b94507c", size = 35853761, upload-time = "2026-02-16T10:08:17.811Z" }, + { url = "https://files.pythonhosted.org/packages/2e/08/3e56a18819462210432ae37d10f5c8eed3828be1d6c751b6e6a2e93c286a/pyarrow-23.0.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:d0744403adabef53c985a7f8a082b502a368510c40d184df349a0a8754533258", size = 44493116, upload-time = "2026-02-16T10:08:25.792Z" }, + { url = "https://files.pythonhosted.org/packages/f8/82/c40b68001dbec8a3faa4c08cd8c200798ac732d2854537c5449dc859f55a/pyarrow-23.0.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c33b5bf406284fd0bba436ed6f6c3ebe8e311722b441d89397c54f871c6863a2", size = 47564532, upload-time = "2026-02-16T10:08:34.27Z" }, + { url = "https://files.pythonhosted.org/packages/20/bc/73f611989116b6f53347581b02177f9f620efdf3cd3f405d0e83cdf53a83/pyarrow-23.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ddf743e82f69dcd6dbbcb63628895d7161e04e56794ef80550ac6f3315eeb1d5", size = 48183685, upload-time = "2026-02-16T10:08:42.889Z" }, + { url = "https://files.pythonhosted.org/packages/b0/cc/6c6b3ecdae2a8c3aced99956187e8302fc954cc2cca2a37cf2111dad16ce/pyarrow-23.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e052a211c5ac9848ae15d5ec875ed0943c0221e2fcfe69eee80b604b4e703222", size = 50605582, upload-time = "2026-02-16T10:08:51.641Z" }, + { url = "https://files.pythonhosted.org/packages/8d/94/d359e708672878d7638a04a0448edf7c707f9e5606cee11e15aaa5c7535a/pyarrow-23.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:5abde149bb3ce524782d838eb67ac095cd3fd6090eba051130589793f1a7f76d", size = 27521148, upload-time = "2026-02-16T10:08:58.077Z" }, +] + +[[package]] +name = "pyasn1" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5c/5f/6583902b6f79b399c9c40674ac384fd9cd77805f9e6205075f828ef11fb2/pyasn1-0.6.3.tar.gz", hash = "sha256:697a8ecd6d98891189184ca1fa05d1bb00e2f84b5977c481452050549c8a72cf", size = 148685, upload-time = "2026-03-17T01:06:53.382Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/a0/7d793dce3fa811fe047d6ae2431c672364b462850c6235ae306c0efd025f/pyasn1-0.6.3-py3-none-any.whl", hash = "sha256:a80184d120f0864a52a073acc6fc642847d0be408e7c7252f31390c0f4eadcde", size = 83997, upload-time = "2026-03-17T01:06:52.036Z" }, +] + +[[package]] +name = "pyasn1-modules" +version = "0.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e9/e6/78ebbb10a8c8e4b61a59249394a4a594c1a7af95593dc933a349c8d00964/pyasn1_modules-0.4.2.tar.gz", hash = "sha256:677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6", size = 307892, upload-time = "2025-03-28T02:41:22.17Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/8d/d529b5d697919ba8c11ad626e835d4039be708a35b0d22de83a269a6682c/pyasn1_modules-0.4.2-py3-none-any.whl", hash = "sha256:29253a9207ce32b64c3ac6600edc75368f98473906e8fd1043bd6b5b1de2c14a", size = 181259, upload-time = "2025-03-28T02:41:19.028Z" }, +] + +[[package]] +name = "pycparser" +version = "3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, +] + +[[package]] +name = "pydantic" +version = "1.10.26" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7b/da/fd89f987a376c807cd81ea0eff4589aade783bbb702637b4734ef2c743a2/pydantic-1.10.26.tar.gz", hash = "sha256:8c6aa39b494c5af092e690127c283d84f363ac36017106a9e66cb33a22ac412e", size = 357906, upload-time = "2025-12-18T15:47:46.557Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/08/2587a6d4314e7539eec84acd062cb7b037638edb57a0335d20e4c5b8878c/pydantic-1.10.26-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f7ae36fa0ecef8d39884120f212e16c06bb096a38f523421278e2f39c1784546", size = 2444588, upload-time = "2025-12-18T15:46:28.882Z" }, + { url = "https://files.pythonhosted.org/packages/47/e6/10df5f08c105bcbb4adbee7d1108ff4b347702b110fed058f6a03f1c6b73/pydantic-1.10.26-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d95a76cf503f0f72ed7812a91de948440b2bf564269975738a4751e4fadeb572", size = 2255972, upload-time = "2025-12-18T15:46:31.72Z" }, + { url = "https://files.pythonhosted.org/packages/ba/7d/fdb961e7adc2c31f394feba6f560ef2c74c446f0285e2c2eb87d2b7206c7/pydantic-1.10.26-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a943ce8e00ad708ed06a1d9df5b4fd28f5635a003b82a4908ece6f24c0b18464", size = 2857175, upload-time = "2025-12-18T15:46:34Z" }, + { url = "https://files.pythonhosted.org/packages/8f/6c/f21e27dda475d4c562bd01b5874284dd3180f336c1e669413b743ca8b278/pydantic-1.10.26-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:465ad8edb29b15c10b779b16431fe8e77c380098badf6db367b7a1d3e572cf53", size = 2947001, upload-time = "2025-12-18T15:46:35.922Z" }, + { url = "https://files.pythonhosted.org/packages/6d/f6/27ea206232cbb6ec24dc4e4e8888a9a734f96a1eaf13504be4b30ef26aa7/pydantic-1.10.26-cp310-cp310-win_amd64.whl", hash = "sha256:80e6be6272839c8a7641d26ad569ab77772809dd78f91d0068dc0fc97f071945", size = 2066217, upload-time = "2025-12-18T15:46:37.614Z" }, + { url = "https://files.pythonhosted.org/packages/1f/98/556e82f00b98486def0b8af85da95e69d2be7e367cf2431408e108bc3095/pydantic-1.10.26-py3-none-any.whl", hash = "sha256:c43ad70dc3ce7787543d563792426a16fd7895e14be4b194b5665e36459dd917", size = 166975, upload-time = "2025-12-18T15:47:44.927Z" }, +] + +[[package]] +name = "pygments" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/b2/bc9c9196916376152d655522fdcebac55e66de6603a76a02bca1b6414f6c/pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f", size = 4955991, upload-time = "2026-03-29T13:29:33.898Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" }, +] + +[[package]] +name = "pynndescent" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "llvmlite" }, + { name = "numba" }, + { name = "scikit-learn" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4a/fb/7f58c397fb31666756457ee2ac4c0289ef2daad57f4ae4be8dec12f80b03/pynndescent-0.6.0.tar.gz", hash = "sha256:7ffde0fb5b400741e055a9f7d377e3702e02250616834231f6c209e39aac24f5", size = 2992987, upload-time = "2026-01-08T21:29:58.943Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b2/e6/94145d714402fd5ade00b5661f2d0ab981219e07f7db9bfa16786cdb9c04/pynndescent-0.6.0-py3-none-any.whl", hash = "sha256:dc8c74844e4c7f5cbd1e0cd6909da86fdc789e6ff4997336e344779c3d5538ef", size = 73511, upload-time = "2026-01-08T21:29:57.306Z" }, +] + +[[package]] +name = "pyogrio" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "numpy" }, + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/49/d4/12f86b1ed09721363da4c09622464b604c851a9223fc0c6b393fb2012208/pyogrio-0.12.1.tar.gz", hash = "sha256:e548ab705bb3e5383693717de1e6c76da97f3762ab92522cb310f93128a75ff1", size = 303289, upload-time = "2025-11-28T19:04:53.341Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/04/e69f476c4cc279adc6d26194da4d3497f5d9efdd46777a6c0ad59c09233f/pyogrio-0.12.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:5c4735235ca0d8dcdb4ecd69bd73e66762d161bce913b10d4458a18137cc7062", size = 23672707, upload-time = "2025-11-28T19:02:54.87Z" }, + { url = "https://files.pythonhosted.org/packages/a3/9e/805d640f050fc4a064ee5ba3289457f47d7f3464b57140caa8ddac039a67/pyogrio-0.12.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:3249d06c2520857b622f3ff0f1b7b4849291ee1fb72f21587825f5fd0f24b787", size = 25247903, upload-time = "2025-11-28T19:02:57.756Z" }, + { url = "https://files.pythonhosted.org/packages/05/c3/65577611485bc3e53a466ffbcd2407f89e8bd7e1c4554e8a0d23a4b8a636/pyogrio-0.12.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f4011b63f9d6c278ee6605971ffabe30b0e8f5992ec2c6df8c70ecfa68a5d02b", size = 31279563, upload-time = "2025-11-28T19:03:00.344Z" }, + { url = "https://files.pythonhosted.org/packages/b1/a6/5c03dffaf02542e8bae6c785d3e302bf4b890cd2ab281336b3c4dc867f84/pyogrio-0.12.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:940857c45051e1e19608ebfe8338bcdf7dd005389057431a3c7b5bff5beb0a5f", size = 30831678, upload-time = "2025-11-28T19:03:03.234Z" }, + { url = "https://files.pythonhosted.org/packages/c8/aa/0e484c13cf14bbe46c366ad363ab2406242a0fba85a7561d42bbd34c35dd/pyogrio-0.12.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:0fd86bcd69126739325a543a489f312b5fd86db092d2dead682772ae4ee434f3", size = 32380362, upload-time = "2025-11-28T19:03:06.098Z" }, + { url = "https://files.pythonhosted.org/packages/7a/7c/cc515005780235d9ab14a29d33868bcaa1d5b423cee7995dda94735c41dd/pyogrio-0.12.1-cp310-cp310-win_amd64.whl", hash = "sha256:dcf9cca273ead32beba7c002dd3db8a304105f52dd66200d48fa1ef30d0676af", size = 22940628, upload-time = "2025-11-28T19:03:08.568Z" }, +] + +[[package]] +name = "pyparsing" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/91/9c6ee907786a473bf81c5f53cf703ba0957b23ab84c264080fb5a450416f/pyparsing-3.3.2.tar.gz", hash = "sha256:c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc", size = 6851574, upload-time = "2026-01-21T03:57:59.36Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl", hash = "sha256:850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d", size = 122781, upload-time = "2026-01-21T03:57:55.912Z" }, +] + +[[package]] +name = "pyproj" +version = "3.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/10/a8480ea27ea4bbe896c168808854d00f2a9b49f95c0319ddcbba693c8a90/pyproj-3.7.1.tar.gz", hash = "sha256:60d72facd7b6b79853f19744779abcd3f804c4e0d4fa8815469db20c9f640a47", size = 226339, upload-time = "2025-02-16T04:28:46.621Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/a3/c4cd4bba5b336075f145fe784fcaf4ef56ffbc979833303303e7a659dda2/pyproj-3.7.1-cp310-cp310-macosx_13_0_x86_64.whl", hash = "sha256:bf09dbeb333c34e9c546364e7df1ff40474f9fddf9e70657ecb0e4f670ff0b0e", size = 6262524, upload-time = "2025-02-16T04:27:19.725Z" }, + { url = "https://files.pythonhosted.org/packages/40/45/4fdf18f4cc1995f1992771d2a51cf186a9d7a8ec973c9693f8453850c707/pyproj-3.7.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:6575b2e53cc9e3e461ad6f0692a5564b96e7782c28631c7771c668770915e169", size = 4665102, upload-time = "2025-02-16T04:27:24.428Z" }, + { url = "https://files.pythonhosted.org/packages/0c/d2/360eb127380106cee83569954ae696b88a891c804d7a93abe3fbc15f5976/pyproj-3.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cb516ee35ed57789b46b96080edf4e503fdb62dbb2e3c6581e0d6c83fca014b", size = 9432667, upload-time = "2025-02-16T04:27:27.04Z" }, + { url = "https://files.pythonhosted.org/packages/76/a5/c6e11b9a99ce146741fb4d184d5c468446c6d6015b183cae82ac822a6cfa/pyproj-3.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e47c4e93b88d99dd118875ee3ca0171932444cdc0b52d493371b5d98d0f30ee", size = 9259185, upload-time = "2025-02-16T04:27:30.35Z" }, + { url = "https://files.pythonhosted.org/packages/41/56/a3c15c42145797a99363fa0fdb4e9805dccb8b4a76a6d7b2cdf36ebcc2a1/pyproj-3.7.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3e8d276caeae34fcbe4813855d0d97b9b825bab8d7a8b86d859c24a6213a5a0d", size = 10469103, upload-time = "2025-02-16T04:27:33.542Z" }, + { url = "https://files.pythonhosted.org/packages/ef/73/c9194c2802fefe2a4fd4230bdd5ab083e7604e93c64d0356fa49c363bad6/pyproj-3.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f173f851ee75e54acdaa053382b6825b400cb2085663a9bb073728a59c60aebb", size = 10401391, upload-time = "2025-02-16T04:27:36.051Z" }, + { url = "https://files.pythonhosted.org/packages/c5/1d/ce8bb5b9251b04d7c22d63619bb3db3d2397f79000a9ae05b3fd86a5837e/pyproj-3.7.1-cp310-cp310-win32.whl", hash = "sha256:f550281ed6e5ea88fcf04a7c6154e246d5714be495c50c9e8e6b12d3fb63e158", size = 5869997, upload-time = "2025-02-16T04:27:38.302Z" }, + { url = "https://files.pythonhosted.org/packages/09/6a/ca145467fd2e5b21e3d5b8c2b9645dcfb3b68f08b62417699a1f5689008e/pyproj-3.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:3537668992a709a2e7f068069192138618c00d0ba113572fdd5ee5ffde8222f3", size = 6278581, upload-time = "2025-02-16T04:27:41.051Z" }, +] + +[[package]] +name = "pyreadline3" +version = "3.5.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/49/4cea918a08f02817aabae639e3d0ac046fef9f9180518a3ad394e22da148/pyreadline3-3.5.4.tar.gz", hash = "sha256:8d57d53039a1c75adba8e50dd3d992b28143480816187ea5efbd5c78e6c885b7", size = 99839, upload-time = "2024-09-19T02:40:10.062Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/dc/491b7661614ab97483abf2056be1deee4dc2490ecbf7bff9ab5cdbac86e1/pyreadline3-3.5.4-py3-none-any.whl", hash = "sha256:eaf8e6cc3c49bcccf145fc6067ba8643d1df34d604a1ec0eccbf7a18e6d3fae6", size = 83178, upload-time = "2024-09-19T02:40:08.598Z" }, +] + +[[package]] +name = "pytest" +version = "9.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "exceptiongroup" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, + { name = "tomli" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/0d/549bd94f1a0a402dc8cf64563a117c0f3765662e2e668477624baeec44d5/pytest-9.0.3.tar.gz", hash = "sha256:b86ada508af81d19edeb213c681b1d48246c1a91d304c6c81a427674c17eb91c", size = 1572165, upload-time = "2026-04-07T17:16:18.027Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/24/a372aaf5c9b7208e7112038812994107bc65a84cd00e0354a88c2c77a617/pytest-9.0.3-py3-none-any.whl", hash = "sha256:2c5efc453d45394fdd706ade797c0a81091eccd1d6e4bccfcd476e2b8e0ab5d9", size = 375249, upload-time = "2026-04-07T17:16:16.13Z" }, +] + +[[package]] +name = "pytest-cov" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coverage", extra = ["toml"] }, + { name = "pluggy" }, + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/51/a849f96e117386044471c8ec2bd6cfebacda285da9525c9106aeb28da671/pytest_cov-7.1.0.tar.gz", hash = "sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2", size = 55592, upload-time = "2026-03-21T20:11:16.284Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/7a/d968e294073affff457b041c2be9868a40c1c71f4a35fcc1e45e5493067b/pytest_cov-7.1.0-py3-none-any.whl", hash = "sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678", size = 22876, upload-time = "2026-03-21T20:11:14.438Z" }, +] + +[[package]] +name = "pytest-mock" +version = "3.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/68/14/eb014d26be205d38ad5ad20d9a80f7d201472e08167f0bb4361e251084a9/pytest_mock-3.15.1.tar.gz", hash = "sha256:1849a238f6f396da19762269de72cb1814ab44416fa73a8686deac10b0d87a0f", size = 34036, upload-time = "2025-09-16T16:37:27.081Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/cc/06253936f4a7fa2e0f48dfe6d851d9c56df896a9ab09ac019d70b760619c/pytest_mock-3.15.1-py3-none-any.whl", hash = "sha256:0a25e2eb88fe5168d535041d09a4529a188176ae608a6d249ee65abc0949630d", size = 10095, upload-time = "2025-09-16T16:37:25.734Z" }, +] + +[[package]] +name = "pytest-xdist" +version = "3.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "execnet" }, + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/78/b4/439b179d1ff526791eb921115fca8e44e596a13efeda518b9d845a619450/pytest_xdist-3.8.0.tar.gz", hash = "sha256:7e578125ec9bc6050861aa93f2d59f1d8d085595d6551c2c90b6f4fad8d3a9f1", size = 88069, upload-time = "2025-07-01T13:30:59.346Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/31/d4e37e9e550c2b92a9cbc2e4d0b7420a27224968580b5a447f420847c975/pytest_xdist-3.8.0-py3-none-any.whl", hash = "sha256:202ca578cfeb7370784a8c33d6d05bc6e13b4f25b5053c30a152269fd10f0b88", size = 46396, upload-time = "2025-07-01T13:30:56.632Z" }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, +] + +[[package]] +name = "python-json-logger" +version = "4.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/ff/3cc9165fd44106973cd7ac9facb674a65ed853494592541d339bdc9a30eb/python_json_logger-4.1.0.tar.gz", hash = "sha256:b396b9e3ed782b09ff9d6e4f1683d46c83ad0d35d2e407c09a9ebbf038f88195", size = 17573, upload-time = "2026-03-29T04:39:56.805Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/be/0631a861af4d1c875f096c07d34e9a63639560a717130e7a87cbc82b7e3f/python_json_logger-4.1.0-py3-none-any.whl", hash = "sha256:132994765cf75bf44554be9aa49b06ef2345d23661a96720262716438141b6b2", size = 15021, upload-time = "2026-03-29T04:39:55.266Z" }, +] + +[[package]] +name = "pytorch-lightning" +version = "2.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fsspec", extra = ["http"] }, + { name = "lightning-utilities" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "torch" }, + { name = "torchmetrics" }, + { name = "tqdm" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8b/ac/ebd5f6f58691cbd4f73836e43e1727f3814311b960c41f88e259606ca2b2/pytorch_lightning-2.6.1.tar.gz", hash = "sha256:ba08f8901cf226fcca473046ad9346f414e99117762dc869c76e650d5b3d7bdc", size = 665563, upload-time = "2026-01-30T14:59:11.636Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/93/c8c361bf0a2fe50f828f32def460e8b8a14b93955d3fd302b1a9b63b19e4/pytorch_lightning-2.6.1-py3-none-any.whl", hash = "sha256:1f8118567ec829e3055f16cf1aa320883a86a47c836951bfd9dcfa34ec7ffd59", size = 857273, upload-time = "2026-01-30T14:59:10.141Z" }, +] + +[[package]] +name = "pytz" +version = "2026.1.post1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/56/db/b8721d71d945e6a8ac63c0fc900b2067181dbb50805958d4d4661cf7d277/pytz-2026.1.post1.tar.gz", hash = "sha256:3378dde6a0c3d26719182142c56e60c7f9af7e968076f31aae569d72a0358ee1", size = 321088, upload-time = "2026-03-03T07:47:50.683Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/99/781fe0c827be2742bcc775efefccb3b048a3a9c6ce9aec0cbf4a101677e5/pytz-2026.1.post1-py2.py3-none-any.whl", hash = "sha256:f2fd16142fda348286a75e1a524be810bb05d444e5a081f37f7affc635035f7a", size = 510489, upload-time = "2026-03-03T07:47:49.167Z" }, +] + +[[package]] +name = "pywinpty" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/54/37c7370ba91f579235049dc26cd2c5e657d2a943e01820844ffc81f32176/pywinpty-3.0.3.tar.gz", hash = "sha256:523441dc34d231fb361b4b00f8c99d3f16de02f5005fd544a0183112bcc22412", size = 31309, upload-time = "2026-02-04T21:51:09.524Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/28/a652709bd76ca7533cd1c443b03add9f5051fdf71bc6bdb8801dddd4e7a3/pywinpty-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:ff05f12d775b142b11c6fe085129bdd759b61cf7d41da6c745e78e3a1ef5bf40", size = 2114320, upload-time = "2026-02-04T21:53:50.972Z" }, + { url = "https://files.pythonhosted.org/packages/b2/13/a0181cc5c2d5635d3dbc3802b97bc8e3ad4fa7502ccef576651a5e08e54c/pywinpty-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:340ccacb4d74278a631923794ccd758471cfc8eeeeee4610b280420a17ad1e82", size = 235670, upload-time = "2026-02-04T21:50:20.324Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/a0/39350dd17dd6d6c6507025c0e53aef67a9293a6d37d3511f23ea510d5800/pyyaml-6.0.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:214ed4befebe12df36bcc8bc2b64b396ca31be9304b8f59e25c11cf94a4c033b", size = 184227, upload-time = "2025-09-25T21:31:46.04Z" }, + { url = "https://files.pythonhosted.org/packages/05/14/52d505b5c59ce73244f59c7a50ecf47093ce4765f116cdb98286a71eeca2/pyyaml-6.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02ea2dfa234451bbb8772601d7b8e426c2bfa197136796224e50e35a78777956", size = 174019, upload-time = "2025-09-25T21:31:47.706Z" }, + { url = "https://files.pythonhosted.org/packages/43/f7/0e6a5ae5599c838c696adb4e6330a59f463265bfa1e116cfd1fbb0abaaae/pyyaml-6.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b30236e45cf30d2b8e7b3e85881719e98507abed1011bf463a8fa23e9c3e98a8", size = 740646, upload-time = "2025-09-25T21:31:49.21Z" }, + { url = "https://files.pythonhosted.org/packages/2f/3a/61b9db1d28f00f8fd0ae760459a5c4bf1b941baf714e207b6eb0657d2578/pyyaml-6.0.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:66291b10affd76d76f54fad28e22e51719ef9ba22b29e1d7d03d6777a9174198", size = 840793, upload-time = "2025-09-25T21:31:50.735Z" }, + { url = "https://files.pythonhosted.org/packages/7a/1e/7acc4f0e74c4b3d9531e24739e0ab832a5edf40e64fbae1a9c01941cabd7/pyyaml-6.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9c7708761fccb9397fe64bbc0395abcae8c4bf7b0eac081e12b809bf47700d0b", size = 770293, upload-time = "2025-09-25T21:31:51.828Z" }, + { url = "https://files.pythonhosted.org/packages/8b/ef/abd085f06853af0cd59fa5f913d61a8eab65d7639ff2a658d18a25d6a89d/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:418cf3f2111bc80e0933b2cd8cd04f286338bb88bdc7bc8e6dd775ebde60b5e0", size = 732872, upload-time = "2025-09-25T21:31:53.282Z" }, + { url = "https://files.pythonhosted.org/packages/1f/15/2bc9c8faf6450a8b3c9fc5448ed869c599c0a74ba2669772b1f3a0040180/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e0b74767e5f8c593e8c9b5912019159ed0533c70051e9cce3e8b6aa699fcd69", size = 758828, upload-time = "2025-09-25T21:31:54.807Z" }, + { url = "https://files.pythonhosted.org/packages/a3/00/531e92e88c00f4333ce359e50c19b8d1de9fe8d581b1534e35ccfbc5f393/pyyaml-6.0.3-cp310-cp310-win32.whl", hash = "sha256:28c8d926f98f432f88adc23edf2e6d4921ac26fb084b028c733d01868d19007e", size = 142415, upload-time = "2025-09-25T21:31:55.885Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fa/926c003379b19fca39dd4634818b00dec6c62d87faf628d1394e137354d4/pyyaml-6.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:bdb2c67c6c1390b63c6ff89f210c8fd09d9a1217a465701eac7316313c915e4c", size = 158561, upload-time = "2025-09-25T21:31:57.406Z" }, +] + +[[package]] +name = "pyzmq" +version = "27.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "implementation_name == 'pypy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/0b/3c9baedbdf613ecaa7aa07027780b8867f57b6293b6ee50de316c9f3222b/pyzmq-27.1.0.tar.gz", hash = "sha256:ac0765e3d44455adb6ddbf4417dcce460fc40a05978c08efdf2948072f6db540", size = 281750, upload-time = "2025-09-08T23:10:18.157Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/b9/52aa9ec2867528b54f1e60846728d8b4d84726630874fee3a91e66c7df81/pyzmq-27.1.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:508e23ec9bc44c0005c4946ea013d9317ae00ac67778bd47519fdf5a0e930ff4", size = 1329850, upload-time = "2025-09-08T23:07:26.274Z" }, + { url = "https://files.pythonhosted.org/packages/99/64/5653e7b7425b169f994835a2b2abf9486264401fdef18df91ddae47ce2cc/pyzmq-27.1.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:507b6f430bdcf0ee48c0d30e734ea89ce5567fd7b8a0f0044a369c176aa44556", size = 906380, upload-time = "2025-09-08T23:07:29.78Z" }, + { url = "https://files.pythonhosted.org/packages/73/78/7d713284dbe022f6440e391bd1f3c48d9185673878034cfb3939cdf333b2/pyzmq-27.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bf7b38f9fd7b81cb6d9391b2946382c8237fd814075c6aa9c3b746d53076023b", size = 666421, upload-time = "2025-09-08T23:07:31.263Z" }, + { url = "https://files.pythonhosted.org/packages/30/76/8f099f9d6482450428b17c4d6b241281af7ce6a9de8149ca8c1c649f6792/pyzmq-27.1.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:03ff0b279b40d687691a6217c12242ee71f0fba28bf8626ff50e3ef0f4410e1e", size = 854149, upload-time = "2025-09-08T23:07:33.17Z" }, + { url = "https://files.pythonhosted.org/packages/59/f0/37fbfff06c68016019043897e4c969ceab18bde46cd2aca89821fcf4fb2e/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:677e744fee605753eac48198b15a2124016c009a11056f93807000ab11ce6526", size = 1655070, upload-time = "2025-09-08T23:07:35.205Z" }, + { url = "https://files.pythonhosted.org/packages/47/14/7254be73f7a8edc3587609554fcaa7bfd30649bf89cd260e4487ca70fdaa/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd2fec2b13137416a1c5648b7009499bcc8fea78154cd888855fa32514f3dad1", size = 2033441, upload-time = "2025-09-08T23:07:37.432Z" }, + { url = "https://files.pythonhosted.org/packages/22/dc/49f2be26c6f86f347e796a4d99b19167fc94503f0af3fd010ad262158822/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:08e90bb4b57603b84eab1d0ca05b3bbb10f60c1839dc471fc1c9e1507bef3386", size = 1891529, upload-time = "2025-09-08T23:07:39.047Z" }, + { url = "https://files.pythonhosted.org/packages/a3/3e/154fb963ae25be70c0064ce97776c937ecc7d8b0259f22858154a9999769/pyzmq-27.1.0-cp310-cp310-win32.whl", hash = "sha256:a5b42d7a0658b515319148875fcb782bbf118dd41c671b62dae33666c2213bda", size = 567276, upload-time = "2025-09-08T23:07:40.695Z" }, + { url = "https://files.pythonhosted.org/packages/62/b2/f4ab56c8c595abcb26b2be5fd9fa9e6899c1e5ad54964e93ae8bb35482be/pyzmq-27.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:c0bb87227430ee3aefcc0ade2088100e528d5d3298a0a715a64f3d04c60ba02f", size = 632208, upload-time = "2025-09-08T23:07:42.298Z" }, + { url = "https://files.pythonhosted.org/packages/3b/e3/be2cc7ab8332bdac0522fdb64c17b1b6241a795bee02e0196636ec5beb79/pyzmq-27.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:9a916f76c2ab8d045b19f2286851a38e9ac94ea91faf65bd64735924522a8b32", size = 559766, upload-time = "2025-09-08T23:07:43.869Z" }, + { url = "https://files.pythonhosted.org/packages/92/e7/038aab64a946d535901103da16b953c8c9cc9c961dadcbf3609ed6428d23/pyzmq-27.1.0-cp312-abi3-macosx_10_15_universal2.whl", hash = "sha256:452631b640340c928fa343801b0d07eb0c3789a5ffa843f6e1a9cee0ba4eb4fc", size = 1306279, upload-time = "2025-09-08T23:08:03.807Z" }, + { url = "https://files.pythonhosted.org/packages/e8/5e/c3c49fdd0f535ef45eefcc16934648e9e59dace4a37ee88fc53f6cd8e641/pyzmq-27.1.0-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1c179799b118e554b66da67d88ed66cd37a169f1f23b5d9f0a231b4e8d44a113", size = 895645, upload-time = "2025-09-08T23:08:05.301Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e5/b0b2504cb4e903a74dcf1ebae157f9e20ebb6ea76095f6cfffea28c42ecd/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3837439b7f99e60312f0c926a6ad437b067356dc2bc2ec96eb395fd0fe804233", size = 652574, upload-time = "2025-09-08T23:08:06.828Z" }, + { url = "https://files.pythonhosted.org/packages/f8/9b/c108cdb55560eaf253f0cbdb61b29971e9fb34d9c3499b0e96e4e60ed8a5/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43ad9a73e3da1fab5b0e7e13402f0b2fb934ae1c876c51d0afff0e7c052eca31", size = 840995, upload-time = "2025-09-08T23:08:08.396Z" }, + { url = "https://files.pythonhosted.org/packages/c2/bb/b79798ca177b9eb0825b4c9998c6af8cd2a7f15a6a1a4272c1d1a21d382f/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:0de3028d69d4cdc475bfe47a6128eb38d8bc0e8f4d69646adfbcd840facbac28", size = 1642070, upload-time = "2025-09-08T23:08:09.989Z" }, + { url = "https://files.pythonhosted.org/packages/9c/80/2df2e7977c4ede24c79ae39dcef3899bfc5f34d1ca7a5b24f182c9b7a9ca/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_i686.whl", hash = "sha256:cf44a7763aea9298c0aa7dbf859f87ed7012de8bda0f3977b6fb1d96745df856", size = 2021121, upload-time = "2025-09-08T23:08:11.907Z" }, + { url = "https://files.pythonhosted.org/packages/46/bd/2d45ad24f5f5ae7e8d01525eb76786fa7557136555cac7d929880519e33a/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:f30f395a9e6fbca195400ce833c731e7b64c3919aa481af4d88c3759e0cb7496", size = 1878550, upload-time = "2025-09-08T23:08:13.513Z" }, + { url = "https://files.pythonhosted.org/packages/e6/2f/104c0a3c778d7c2ab8190e9db4f62f0b6957b53c9d87db77c284b69f33ea/pyzmq-27.1.0-cp312-abi3-win32.whl", hash = "sha256:250e5436a4ba13885494412b3da5d518cd0d3a278a1ae640e113c073a5f88edd", size = 559184, upload-time = "2025-09-08T23:08:15.163Z" }, + { url = "https://files.pythonhosted.org/packages/fc/7f/a21b20d577e4100c6a41795842028235998a643b1ad406a6d4163ea8f53e/pyzmq-27.1.0-cp312-abi3-win_amd64.whl", hash = "sha256:9ce490cf1d2ca2ad84733aa1d69ce6855372cb5ce9223802450c9b2a7cba0ccf", size = 619480, upload-time = "2025-09-08T23:08:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/78/c2/c012beae5f76b72f007a9e91ee9401cb88c51d0f83c6257a03e785c81cc2/pyzmq-27.1.0-cp312-abi3-win_arm64.whl", hash = "sha256:75a2f36223f0d535a0c919e23615fc85a1e23b71f40c7eb43d7b1dedb4d8f15f", size = 552993, upload-time = "2025-09-08T23:08:18.926Z" }, + { url = "https://files.pythonhosted.org/packages/f3/81/a65e71c1552f74dec9dff91d95bafb6e0d33338a8dfefbc88aa562a20c92/pyzmq-27.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:c17e03cbc9312bee223864f1a2b13a99522e0dc9f7c5df0177cd45210ac286e6", size = 836266, upload-time = "2025-09-08T23:09:40.048Z" }, + { url = "https://files.pythonhosted.org/packages/58/ed/0202ca350f4f2b69faa95c6d931e3c05c3a397c184cacb84cb4f8f42f287/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:f328d01128373cb6763823b2b4e7f73bdf767834268c565151eacb3b7a392f90", size = 800206, upload-time = "2025-09-08T23:09:41.902Z" }, + { url = "https://files.pythonhosted.org/packages/47/42/1ff831fa87fe8f0a840ddb399054ca0009605d820e2b44ea43114f5459f4/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9c1790386614232e1b3a40a958454bdd42c6d1811837b15ddbb052a032a43f62", size = 567747, upload-time = "2025-09-08T23:09:43.741Z" }, + { url = "https://files.pythonhosted.org/packages/d1/db/5c4d6807434751e3f21231bee98109aa57b9b9b55e058e450d0aef59b70f/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:448f9cb54eb0cee4732b46584f2710c8bc178b0e5371d9e4fc8125201e413a74", size = 747371, upload-time = "2025-09-08T23:09:45.575Z" }, + { url = "https://files.pythonhosted.org/packages/26/af/78ce193dbf03567eb8c0dc30e3df2b9e56f12a670bf7eb20f9fb532c7e8a/pyzmq-27.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:05b12f2d32112bf8c95ef2e74ec4f1d4beb01f8b5e703b38537f8849f92cb9ba", size = 544862, upload-time = "2025-09-08T23:09:47.448Z" }, +] + +[[package]] +name = "rasterio" +version = "1.4.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "affine" }, + { name = "attrs" }, + { name = "certifi" }, + { name = "click" }, + { name = "click-plugins" }, + { name = "cligj" }, + { name = "numpy" }, + { name = "pyparsing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/fa/fce8dc9f09e5bc6520b6fc1b4ecfa510af9ca06eb42ad7bdff9c9b8989d0/rasterio-1.4.4.tar.gz", hash = "sha256:c95424e2c7f009b8f7df1095d645c52895cd332c0c2e1b4c2e073ea28b930320", size = 445004, upload-time = "2025-12-12T18:01:08.971Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/24/eedb9dfed1706c696b4f43ba9b85e830ce332f4f57ffcb7b6a4c4e66ade9/rasterio-1.4.4-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:35401e84d4d0b239bd62b33d4ee68d7bb13b47c3b41078f4aad7ad7964e61c73", size = 21127567, upload-time = "2025-12-12T17:58:42.664Z" }, + { url = "https://files.pythonhosted.org/packages/67/5f/482a24bf75bcd48236cd223d037f22abc6c08da6961e390e6a35249a9f58/rasterio-1.4.4-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:1f17fc9608b6b6666894a04e0118d3329e831a6347bc3650584d247a9d476fdd", size = 25735929, upload-time = "2025-12-12T17:58:46.503Z" }, + { url = "https://files.pythonhosted.org/packages/b0/da/b988ffb1bb37cc4cb8a028447ab654a16dbac0b339d977fb9c8adc5bd995/rasterio-1.4.4-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:1f0edb8cb30ff8f5be341583f69c115b7c36ad52bbbe7582345d32af115bc6b3", size = 34040467, upload-time = "2025-12-12T17:58:50.109Z" }, + { url = "https://files.pythonhosted.org/packages/e0/0a/2eace22e990203d47a8fed4b174b87be50281bf3f5b2509cf3700036cbcc/rasterio-1.4.4-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:5197da0e3dd09907bdb343717a49e8fb5229ffdbff0e583b874959ec41fa9558", size = 35339947, upload-time = "2025-12-12T17:58:53.269Z" }, + { url = "https://files.pythonhosted.org/packages/40/e5/16acecbbaedd820c5d71f99f3bab73c00455078a414b511f6854364d3e1e/rasterio-1.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:15109134c7b4770e6aeb8d45dc52c2603824805ba734323268a44f5a81756a7a", size = 25708679, upload-time = "2025-12-12T17:58:56.661Z" }, +] + +[[package]] +name = "rdkit" +version = "2024.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "pillow" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/54/acd8657fbf77af4ed1f773e6eb14b75b3840e8e9a665439101c0491fa9ed/rdkit-2024.3.5-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:1cb7cdb29956649d4c875790b94142868c08c0735dee4d90b2d70dfd378e9d2e", size = 29505991, upload-time = "2024-08-07T12:34:25.607Z" }, + { url = "https://files.pythonhosted.org/packages/08/79/ac7e30471b4cbe465aa9b9bcb5a64018df55464e37777f696682199bc65b/rdkit-2024.3.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e5b0dfb28aa0949152ff816fba0a2f6267154f5c25159a9ec84c27cf18f72322", size = 27453273, upload-time = "2024-08-07T12:34:31.391Z" }, + { url = "https://files.pythonhosted.org/packages/b5/52/71b8946c1cf3d1bea6a09d7e2ea7acb783d34886af4666cb10bd791cdb4d/rdkit-2024.3.5-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:7d5576bad6672959d0c1939e8d7e2fcd8656f8daf9788ce58e5c313db719b5ec", size = 32195237, upload-time = "2024-08-07T12:34:37.116Z" }, + { url = "https://files.pythonhosted.org/packages/f6/39/e625b5c132f174a5c1446b1373235bfc290224baedfed28b4d515fbdfdb5/rdkit-2024.3.5-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:455d510beff8806e62e48b977d7acbfbc351474fa132124738a07223440c1b9a", size = 33133359, upload-time = "2024-08-07T12:34:42.266Z" }, + { url = "https://files.pythonhosted.org/packages/37/ea/5d988d278405cfa44e4ccd32a252b880e9ce36e25707d5715e7e02d7b4de/rdkit-2024.3.5-cp310-cp310-win_amd64.whl", hash = "sha256:01fd323f5902a720925293c0ce08a33e630422374cf263d04ef173c106c63c36", size = 21730123, upload-time = "2024-08-07T12:34:46.979Z" }, +] + +[[package]] +name = "referencing" +version = "0.37.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "rpds-py" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" }, +] + +[[package]] +name = "requests" +version = "2.33.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5f/a4/98b9c7c6428a668bf7e42ebb7c79d576a1c3c1e3ae2d47e674b468388871/requests-2.33.1.tar.gz", hash = "sha256:18817f8c57c6263968bc123d237e3b8b08ac046f5456bd1e307ee8f4250d3517", size = 134120, upload-time = "2026-03-30T16:09:15.531Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/8e/7540e8a2036f79a125c1d2ebadf69ed7901608859186c856fa0388ef4197/requests-2.33.1-py3-none-any.whl", hash = "sha256:4e6d1ef462f3626a1f0a0a9c42dd93c63bad33f9f1c1937509b8c5c8718ab56a", size = 64947, upload-time = "2026-03-30T16:09:13.83Z" }, +] + +[[package]] +name = "requests-oauthlib" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "oauthlib" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650, upload-time = "2024-03-22T20:32:29.939Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179, upload-time = "2024-03-22T20:32:28.055Z" }, +] + +[[package]] +name = "rfc3339-validator" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/ea/a9387748e2d111c3c2b275ba970b735e04e15cdb1eb30693b6b5708c4dbd/rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b", size = 5513, upload-time = "2021-05-12T16:37:54.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa", size = 3490, upload-time = "2021-05-12T16:37:52.536Z" }, +] + +[[package]] +name = "rfc3986-validator" +version = "0.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/88/f270de456dd7d11dcc808abfa291ecdd3f45ff44e3b549ffa01b126464d0/rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055", size = 6760, upload-time = "2019-10-28T16:00:19.144Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9", size = 4242, upload-time = "2019-10-28T16:00:13.976Z" }, +] + +[[package]] +name = "rfc3987-syntax" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "lark" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2c/06/37c1a5557acf449e8e406a830a05bf885ac47d33270aec454ef78675008d/rfc3987_syntax-1.1.0.tar.gz", hash = "sha256:717a62cbf33cffdd16dfa3a497d81ce48a660ea691b1ddd7be710c22f00b4a0d", size = 14239, upload-time = "2025-07-18T01:05:05.015Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/71/44ce230e1b7fadd372515a97e32a83011f906ddded8d03e3c6aafbdedbb7/rfc3987_syntax-1.1.0-py3-none-any.whl", hash = "sha256:6c3d97604e4c5ce9f714898e05401a0445a641cfa276432b0a648c80856f6a3f", size = 8046, upload-time = "2025-07-18T01:05:03.843Z" }, +] + +[[package]] +name = "rich" +version = "15.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" }, +] + +[[package]] +name = "rpds-py" +version = "0.30.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/06/0c/0c411a0ec64ccb6d104dcabe0e713e05e153a9a2c3c2bd2b32ce412166fe/rpds_py-0.30.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:679ae98e00c0e8d68a7fda324e16b90fd5260945b45d3b824c892cec9eea3288", size = 370490, upload-time = "2025-11-30T20:21:33.256Z" }, + { url = "https://files.pythonhosted.org/packages/19/6a/4ba3d0fb7297ebae71171822554abe48d7cab29c28b8f9f2c04b79988c05/rpds_py-0.30.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4cc2206b76b4f576934f0ed374b10d7ca5f457858b157ca52064bdfc26b9fc00", size = 359751, upload-time = "2025-11-30T20:21:34.591Z" }, + { url = "https://files.pythonhosted.org/packages/cd/7c/e4933565ef7f7a0818985d87c15d9d273f1a649afa6a52ea35ad011195ea/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:389a2d49eded1896c3d48b0136ead37c48e221b391c052fba3f4055c367f60a6", size = 389696, upload-time = "2025-11-30T20:21:36.122Z" }, + { url = "https://files.pythonhosted.org/packages/5e/01/6271a2511ad0815f00f7ed4390cf2567bec1d4b1da39e2c27a41e6e3b4de/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:32c8528634e1bf7121f3de08fa85b138f4e0dc47657866630611b03967f041d7", size = 403136, upload-time = "2025-11-30T20:21:37.728Z" }, + { url = "https://files.pythonhosted.org/packages/55/64/c857eb7cd7541e9b4eee9d49c196e833128a55b89a9850a9c9ac33ccf897/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f207f69853edd6f6700b86efb84999651baf3789e78a466431df1331608e5324", size = 524699, upload-time = "2025-11-30T20:21:38.92Z" }, + { url = "https://files.pythonhosted.org/packages/9c/ed/94816543404078af9ab26159c44f9e98e20fe47e2126d5d32c9d9948d10a/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:67b02ec25ba7a9e8fa74c63b6ca44cf5707f2fbfadae3ee8e7494297d56aa9df", size = 412022, upload-time = "2025-11-30T20:21:40.407Z" }, + { url = "https://files.pythonhosted.org/packages/61/b5/707f6cf0066a6412aacc11d17920ea2e19e5b2f04081c64526eb35b5c6e7/rpds_py-0.30.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0e95f6819a19965ff420f65578bacb0b00f251fefe2c8b23347c37174271f3", size = 390522, upload-time = "2025-11-30T20:21:42.17Z" }, + { url = "https://files.pythonhosted.org/packages/13/4e/57a85fda37a229ff4226f8cbcf09f2a455d1ed20e802ce5b2b4a7f5ed053/rpds_py-0.30.0-cp310-cp310-manylinux_2_31_riscv64.whl", hash = "sha256:a452763cc5198f2f98898eb98f7569649fe5da666c2dc6b5ddb10fde5a574221", size = 404579, upload-time = "2025-11-30T20:21:43.769Z" }, + { url = "https://files.pythonhosted.org/packages/f9/da/c9339293513ec680a721e0e16bf2bac3db6e5d7e922488de471308349bba/rpds_py-0.30.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e0b65193a413ccc930671c55153a03ee57cecb49e6227204b04fae512eb657a7", size = 421305, upload-time = "2025-11-30T20:21:44.994Z" }, + { url = "https://files.pythonhosted.org/packages/f9/be/522cb84751114f4ad9d822ff5a1aa3c98006341895d5f084779b99596e5c/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:858738e9c32147f78b3ac24dc0edb6610000e56dc0f700fd5f651d0a0f0eb9ff", size = 572503, upload-time = "2025-11-30T20:21:46.91Z" }, + { url = "https://files.pythonhosted.org/packages/a2/9b/de879f7e7ceddc973ea6e4629e9b380213a6938a249e94b0cdbcc325bb66/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:da279aa314f00acbb803da1e76fa18666778e8a8f83484fba94526da5de2cba7", size = 598322, upload-time = "2025-11-30T20:21:48.709Z" }, + { url = "https://files.pythonhosted.org/packages/48/ac/f01fc22efec3f37d8a914fc1b2fb9bcafd56a299edbe96406f3053edea5a/rpds_py-0.30.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7c64d38fb49b6cdeda16ab49e35fe0da2e1e9b34bc38bd78386530f218b37139", size = 560792, upload-time = "2025-11-30T20:21:50.024Z" }, + { url = "https://files.pythonhosted.org/packages/e2/da/4e2b19d0f131f35b6146425f846563d0ce036763e38913d917187307a671/rpds_py-0.30.0-cp310-cp310-win32.whl", hash = "sha256:6de2a32a1665b93233cde140ff8b3467bdb9e2af2b91079f0333a0974d12d464", size = 221901, upload-time = "2025-11-30T20:21:51.32Z" }, + { url = "https://files.pythonhosted.org/packages/96/cb/156d7a5cf4f78a7cc571465d8aec7a3c447c94f6749c5123f08438bcf7bc/rpds_py-0.30.0-cp310-cp310-win_amd64.whl", hash = "sha256:1726859cd0de969f88dc8673bdd954185b9104e05806be64bcd87badbe313169", size = 235823, upload-time = "2025-11-30T20:21:52.505Z" }, +] + +[[package]] +name = "ruff" +version = "0.15.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/8d/192f3d7103816158dfd5ea50d098ef2aec19194e6cbccd4b3485bdb2eb2d/ruff-0.15.11.tar.gz", hash = "sha256:f092b21708bf0e7437ce9ada249dfe688ff9a0954fc94abab05dcea7dcd29c33", size = 4637264, upload-time = "2026-04-16T18:46:26.58Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/1e/6aca3427f751295ab011828e15e9bf452200ac74484f1db4be0197b8170b/ruff-0.15.11-py3-none-linux_armv6l.whl", hash = "sha256:e927cfff503135c558eb581a0c9792264aae9507904eb27809cdcff2f2c847b7", size = 10607943, upload-time = "2026-04-16T18:46:05.967Z" }, + { url = "https://files.pythonhosted.org/packages/e7/26/1341c262e74f36d4e84f3d6f4df0ac68cd53331a66bfc5080daa17c84c0b/ruff-0.15.11-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:7a1b5b2938d8f890b76084d4fa843604d787a912541eae85fd7e233398bbb73e", size = 10988592, upload-time = "2026-04-16T18:46:00.742Z" }, + { url = "https://files.pythonhosted.org/packages/03/71/850b1d6ffa9564fbb6740429bad53df1094082fe515c8c1e74b6d8d05f18/ruff-0.15.11-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d4176f3d194afbdaee6e41b9ccb1a2c287dba8700047df474abfbe773825d1cb", size = 10338501, upload-time = "2026-04-16T18:46:03.723Z" }, + { url = "https://files.pythonhosted.org/packages/f2/11/cc1284d3e298c45a817a6aadb6c3e1d70b45c9b36d8d9cce3387b495a03a/ruff-0.15.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b17c886fb88203ced3afe7f14e8d5ae96e9d2f4ccc0ee66aa19f2c2675a27e4", size = 10670693, upload-time = "2026-04-16T18:46:41.941Z" }, + { url = "https://files.pythonhosted.org/packages/ce/9e/f8288b034ab72b371513c13f9a41d9ba3effac54e24bfb467b007daee2ca/ruff-0.15.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:49fafa220220afe7758a487b048de4c8f9f767f37dfefad46b9dd06759d003eb", size = 10416177, upload-time = "2026-04-16T18:46:21.717Z" }, + { url = "https://files.pythonhosted.org/packages/85/71/504d79abfd3d92532ba6bbe3d1c19fada03e494332a59e37c7c2dabae427/ruff-0.15.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2ab8427e74a00d93b8bda1307b1e60970d40f304af38bccb218e056c220120d", size = 11221886, upload-time = "2026-04-16T18:46:15.086Z" }, + { url = "https://files.pythonhosted.org/packages/43/5a/947e6ab7a5ad603d65b474be15a4cbc6d29832db5d762cd142e4e3a74164/ruff-0.15.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:195072c0c8e1fc8f940652073df082e37a5d9cb43b4ab1e4d0566ab8977a13b7", size = 12075183, upload-time = "2026-04-16T18:46:07.944Z" }, + { url = "https://files.pythonhosted.org/packages/9f/a1/0b7bb6268775fdd3a0818aee8efd8f5b4e231d24dd4d528ced2534023182/ruff-0.15.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a3a0996d486af3920dec930a2e7daed4847dfc12649b537a9335585ada163e9e", size = 11516575, upload-time = "2026-04-16T18:46:31.687Z" }, + { url = "https://files.pythonhosted.org/packages/30/c3/bb5168fc4d233cc06e95f482770d0f3c87945a0cd9f614b90ea8dc2f2833/ruff-0.15.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bef2cb556d509259f1fe440bb9cd33c756222cf0a7afe90d15edf0866702431", size = 11306537, upload-time = "2026-04-16T18:46:36.988Z" }, + { url = "https://files.pythonhosted.org/packages/e4/92/4cfae6441f3967317946f3b788136eecf093729b94d6561f963ed810c82e/ruff-0.15.11-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:030d921a836d7d4a12cf6e8d984a88b66094ccb0e0f17ddd55067c331191bf19", size = 11296813, upload-time = "2026-04-16T18:46:24.182Z" }, + { url = "https://files.pythonhosted.org/packages/43/26/972784c5dde8313acde8ac71ba8ac65475b85db4a2352a76c9934361f9bc/ruff-0.15.11-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:0e783b599b4577788dbbb66b9addcef87e9a8832f4ce0c19e34bf55543a2f890", size = 10633136, upload-time = "2026-04-16T18:46:39.802Z" }, + { url = "https://files.pythonhosted.org/packages/5b/53/3985a4f185020c2f367f2e08a103032e12564829742a1b417980ce1514a0/ruff-0.15.11-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:ae90592246625ba4a34349d68ec28d4400d75182b71baa196ddb9f82db025ef5", size = 10424701, upload-time = "2026-04-16T18:46:10.381Z" }, + { url = "https://files.pythonhosted.org/packages/d3/57/bf0dfb32241b56c83bb663a826133da4bf17f682ba8c096973065f6e6a68/ruff-0.15.11-py3-none-musllinux_1_2_i686.whl", hash = "sha256:1f111d62e3c983ed20e0ca2e800f8d77433a5b1161947df99a5c2a3fb60514f0", size = 10873887, upload-time = "2026-04-16T18:46:29.157Z" }, + { url = "https://files.pythonhosted.org/packages/02/05/e48076b2a57dc33ee8c7a957296f97c744ca891a8ffb4ffb1aaa3b3f517d/ruff-0.15.11-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:06f483d6646f59eaffba9ae30956370d3a886625f511a3108994000480621d1c", size = 11404316, upload-time = "2026-04-16T18:46:19.462Z" }, + { url = "https://files.pythonhosted.org/packages/88/27/0195d15fe7a897cbcba0904792c4b7c9fdd958456c3a17d2ea6093716a9a/ruff-0.15.11-py3-none-win32.whl", hash = "sha256:476a2aa56b7da0b73a3ee80b6b2f0e19cce544245479adde7baa65466664d5f3", size = 10655535, upload-time = "2026-04-16T18:46:12.47Z" }, + { url = "https://files.pythonhosted.org/packages/3a/5e/c927b325bd4c1d3620211a4b96f47864633199feed60fa936025ab27e090/ruff-0.15.11-py3-none-win_amd64.whl", hash = "sha256:8b6756d88d7e234fb0c98c91511aae3cd519d5e3ed271cae31b20f39cb2a12a3", size = 11779692, upload-time = "2026-04-16T18:46:17.268Z" }, + { url = "https://files.pythonhosted.org/packages/63/b6/aeadee5443e49baa2facd51131159fd6301cc4ccfc1541e4df7b021c37dd/ruff-0.15.11-py3-none-win_arm64.whl", hash = "sha256:063fed18cc1bbe0ee7393957284a6fe8b588c6a406a285af3ee3f46da2391ee4", size = 11032614, upload-time = "2026-04-16T18:46:34.487Z" }, +] + +[[package]] +name = "scikit-learn" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c9/fa/8e158d81e3602da1e7bafbd4987938bc003fe4b0f44d65681e7f8face95a/scikit-learn-1.2.2.tar.gz", hash = "sha256:8429aea30ec24e7a8c7ed8a3fa6213adf3814a6efbea09e16e0a0c71e1a1a3d7", size = 7269934, upload-time = "2023-03-09T09:57:57.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/21/ee21352f69a980614cb4193d68a64a83aa2c0f80183c9485d6d61821a922/scikit_learn-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:99cc01184e347de485bf253d19fcb3b1a3fb0ee4cea5ee3c43ec0cc429b6d29f", size = 9107257, upload-time = "2023-03-09T09:57:10.488Z" }, + { url = "https://files.pythonhosted.org/packages/5a/43/5c4d21217df6a033999ee531fdfd52809263727b4afb26f7196a8ec709ae/scikit_learn-1.2.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:e6e574db9914afcb4e11ade84fab084536a895ca60aadea3041e85b8ac963edb", size = 8455656, upload-time = "2023-03-09T09:57:13.131Z" }, + { url = "https://files.pythonhosted.org/packages/48/92/a39d1c9e0a6cb5ed4112899ecca590138484356ba8c4274dde6c3893ff14/scikit_learn-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fe83b676f407f00afa388dd1fdd49e5c6612e551ed84f3b1b182858f09e987d", size = 9165302, upload-time = "2023-03-09T09:57:15.336Z" }, + { url = "https://files.pythonhosted.org/packages/fa/1e/36d7609e84b50d4a2e5bc43cd5013d9ea885799e5813a1e9cf5bb1afd3f4/scikit_learn-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e2642baa0ad1e8f8188917423dd73994bf25429f8893ddbe115be3ca3183584", size = 9625294, upload-time = "2023-03-09T09:57:17.519Z" }, + { url = "https://files.pythonhosted.org/packages/f4/4d/fe3b35e18407da4b386be58616bd0f941ea1762a6c6798267f3aa64ef5d5/scikit_learn-1.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ad66c3848c0a1ec13464b2a95d0a484fd5b02ce74268eaa7e0c697b904f31d6c", size = 8306029, upload-time = "2023-03-09T09:57:19.64Z" }, +] + +[[package]] +name = "scipy" +version = "1.15.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0f/37/6964b830433e654ec7485e45a00fc9a27cf868d622838f6b6d9c5ec0d532/scipy-1.15.3.tar.gz", hash = "sha256:eae3cf522bc7df64b42cad3925c876e1b0b6c35c1337c93e12c0f366f55b0eaf", size = 59419214, upload-time = "2025-05-08T16:13:05.955Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/2f/4966032c5f8cc7e6a60f1b2e0ad686293b9474b65246b0c642e3ef3badd0/scipy-1.15.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a345928c86d535060c9c2b25e71e87c39ab2f22fc96e9636bd74d1dbf9de448c", size = 38702770, upload-time = "2025-05-08T16:04:20.849Z" }, + { url = "https://files.pythonhosted.org/packages/a0/6e/0c3bf90fae0e910c274db43304ebe25a6b391327f3f10b5dcc638c090795/scipy-1.15.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:ad3432cb0f9ed87477a8d97f03b763fd1d57709f1bbde3c9369b1dff5503b253", size = 30094511, upload-time = "2025-05-08T16:04:27.103Z" }, + { url = "https://files.pythonhosted.org/packages/ea/b1/4deb37252311c1acff7f101f6453f0440794f51b6eacb1aad4459a134081/scipy-1.15.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:aef683a9ae6eb00728a542b796f52a5477b78252edede72b8327a886ab63293f", size = 22368151, upload-time = "2025-05-08T16:04:31.731Z" }, + { url = "https://files.pythonhosted.org/packages/38/7d/f457626e3cd3c29b3a49ca115a304cebb8cc6f31b04678f03b216899d3c6/scipy-1.15.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:1c832e1bd78dea67d5c16f786681b28dd695a8cb1fb90af2e27580d3d0967e92", size = 25121732, upload-time = "2025-05-08T16:04:36.596Z" }, + { url = "https://files.pythonhosted.org/packages/db/0a/92b1de4a7adc7a15dcf5bddc6e191f6f29ee663b30511ce20467ef9b82e4/scipy-1.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:263961f658ce2165bbd7b99fa5135195c3a12d9bef045345016b8b50c315cb82", size = 35547617, upload-time = "2025-05-08T16:04:43.546Z" }, + { url = "https://files.pythonhosted.org/packages/8e/6d/41991e503e51fc1134502694c5fa7a1671501a17ffa12716a4a9151af3df/scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2abc762b0811e09a0d3258abee2d98e0c703eee49464ce0069590846f31d40", size = 37662964, upload-time = "2025-05-08T16:04:49.431Z" }, + { url = "https://files.pythonhosted.org/packages/25/e1/3df8f83cb15f3500478c889be8fb18700813b95e9e087328230b98d547ff/scipy-1.15.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed7284b21a7a0c8f1b6e5977ac05396c0d008b89e05498c8b7e8f4a1423bba0e", size = 37238749, upload-time = "2025-05-08T16:04:55.215Z" }, + { url = "https://files.pythonhosted.org/packages/93/3e/b3257cf446f2a3533ed7809757039016b74cd6f38271de91682aa844cfc5/scipy-1.15.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5380741e53df2c566f4d234b100a484b420af85deb39ea35a1cc1be84ff53a5c", size = 40022383, upload-time = "2025-05-08T16:05:01.914Z" }, + { url = "https://files.pythonhosted.org/packages/d1/84/55bc4881973d3f79b479a5a2e2df61c8c9a04fcb986a213ac9c02cfb659b/scipy-1.15.3-cp310-cp310-win_amd64.whl", hash = "sha256:9d61e97b186a57350f6d6fd72640f9e99d5a4a2b8fbf4b9ee9a841eab327dc13", size = 41259201, upload-time = "2025-05-08T16:05:08.166Z" }, +] + +[[package]] +name = "seaborn" +version = "0.13.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "pandas" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/86/59/a451d7420a77ab0b98f7affa3a1d78a313d2f7281a57afb1a34bae8ab412/seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7", size = 1457696, upload-time = "2024-01-25T13:21:52.551Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/11/00d3c3dfc25ad54e731d91449895a79e4bf2384dc3ac01809010ba88f6d5/seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987", size = 294914, upload-time = "2024-01-25T13:21:49.598Z" }, +] + +[[package]] +name = "send2trash" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c5/f0/184b4b5f8d00f2a92cf96eec8967a3d550b52cf94362dad1100df9e48d57/send2trash-2.1.0.tar.gz", hash = "sha256:1c72b39f09457db3c05ce1d19158c2cbef4c32b8bedd02c155e49282b7ea7459", size = 17255, upload-time = "2026-01-14T06:27:36.056Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/78/504fdd027da3b84ff1aecd9f6957e65f35134534ccc6da8628eb71e76d3f/send2trash-2.1.0-py3-none-any.whl", hash = "sha256:0da2f112e6d6bb22de6aa6daa7e144831a4febf2a87261451c4ad849fe9a873c", size = 17610, upload-time = "2026-01-14T06:27:35.218Z" }, +] + +[[package]] +name = "setuptools" +version = "82.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4f/db/cfac1baf10650ab4d1c111714410d2fbb77ac5a616db26775db562c8fab2/setuptools-82.0.1.tar.gz", hash = "sha256:7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9", size = 1152316, upload-time = "2026-03-09T12:47:17.221Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" }, +] + +[[package]] +name = "shapely" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4d/bc/0989043118a27cccb4e906a46b7565ce36ca7b57f5a18b78f4f1b0f72d9d/shapely-2.1.2.tar.gz", hash = "sha256:2ed4ecb28320a433db18a5bf029986aa8afcfd740745e78847e330d5d94922a9", size = 315489, upload-time = "2025-09-24T13:51:41.432Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/89/c3548aa9b9812a5d143986764dededfa48d817714e947398bdda87c77a72/shapely-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7ae48c236c0324b4e139bea88a306a04ca630f49be66741b340729d380d8f52f", size = 1825959, upload-time = "2025-09-24T13:50:00.682Z" }, + { url = "https://files.pythonhosted.org/packages/ce/8a/7ebc947080442edd614ceebe0ce2cdbd00c25e832c240e1d1de61d0e6b38/shapely-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eba6710407f1daa8e7602c347dfc94adc02205ec27ed956346190d66579eb9ea", size = 1629196, upload-time = "2025-09-24T13:50:03.447Z" }, + { url = "https://files.pythonhosted.org/packages/c8/86/c9c27881c20d00fc409e7e059de569d5ed0abfcec9c49548b124ebddea51/shapely-2.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ef4a456cc8b7b3d50ccec29642aa4aeda959e9da2fe9540a92754770d5f0cf1f", size = 2951065, upload-time = "2025-09-24T13:50:05.266Z" }, + { url = "https://files.pythonhosted.org/packages/50/8a/0ab1f7433a2a85d9e9aea5b1fbb333f3b09b309e7817309250b4b7b2cc7a/shapely-2.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e38a190442aacc67ff9f75ce60aec04893041f16f97d242209106d502486a142", size = 3058666, upload-time = "2025-09-24T13:50:06.872Z" }, + { url = "https://files.pythonhosted.org/packages/bb/c6/5a30ffac9c4f3ffd5b7113a7f5299ccec4713acd5ee44039778a7698224e/shapely-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:40d784101f5d06a1fd30b55fc11ea58a61be23f930d934d86f19a180909908a4", size = 3966905, upload-time = "2025-09-24T13:50:09.417Z" }, + { url = "https://files.pythonhosted.org/packages/9c/72/e92f3035ba43e53959007f928315a68fbcf2eeb4e5ededb6f0dc7ff1ecc3/shapely-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f6f6cd5819c50d9bcf921882784586aab34a4bd53e7553e175dece6db513a6f0", size = 4129260, upload-time = "2025-09-24T13:50:11.183Z" }, + { url = "https://files.pythonhosted.org/packages/42/24/605901b73a3d9f65fa958e63c9211f4be23d584da8a1a7487382fac7fdc5/shapely-2.1.2-cp310-cp310-win32.whl", hash = "sha256:fe9627c39c59e553c90f5bc3128252cb85dc3b3be8189710666d2f8bc3a5503e", size = 1544301, upload-time = "2025-09-24T13:50:12.521Z" }, + { url = "https://files.pythonhosted.org/packages/e1/89/6db795b8dd3919851856bd2ddd13ce434a748072f6fdee42ff30cbd3afa3/shapely-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:1d0bfb4b8f661b3b4ec3565fa36c340bfb1cda82087199711f86a88647d26b2f", size = 1722074, upload-time = "2025-09-24T13:50:13.909Z" }, +] + +[[package]] +name = "simplejson" +version = "3.20.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f4/a1ac5ed32f7ed9a088d62a59d410d4c204b3b3815722e2ccfb491fa8251b/simplejson-3.20.2.tar.gz", hash = "sha256:5fe7a6ce14d1c300d80d08695b7f7e633de6cd72c80644021874d985b3393649", size = 85784, upload-time = "2025-09-26T16:29:36.64Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/09/2bf3761de89ea2d91bdce6cf107dcd858892d0adc22c995684878826cc6b/simplejson-3.20.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6d7286dc11af60a2f76eafb0c2acde2d997e87890e37e24590bb513bec9f1bc5", size = 94039, upload-time = "2025-09-26T16:27:29.283Z" }, + { url = "https://files.pythonhosted.org/packages/0f/33/c3277db8931f0ae9e54b9292668863365672d90fb0f632f4cf9829cb7d68/simplejson-3.20.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c01379b4861c3b0aa40cba8d44f2b448f5743999aa68aaa5d3ef7049d4a28a2d", size = 75894, upload-time = "2025-09-26T16:27:30.378Z" }, + { url = "https://files.pythonhosted.org/packages/fa/ea/ae47b04d03c7c8a7b7b1a8b39a6e27c3bd424e52f4988d70aca6293ff5e5/simplejson-3.20.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a16b029ca25645b3bc44e84a4f941efa51bf93c180b31bd704ce6349d1fc77c1", size = 76116, upload-time = "2025-09-26T16:27:31.42Z" }, + { url = "https://files.pythonhosted.org/packages/4b/42/6c9af551e5a8d0f171d6dce3d9d1260068927f7b80f1f09834e07887c8c4/simplejson-3.20.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e22a5fb7b1437ffb057e02e1936a3bfb19084ae9d221ec5e9f4cf85f69946b6", size = 138827, upload-time = "2025-09-26T16:27:32.486Z" }, + { url = "https://files.pythonhosted.org/packages/2b/22/5e268bbcbe9f75577491e406ec0a5536f5b2fa91a3b52031fea51cd83e1d/simplejson-3.20.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d8b6ff02fc7b8555c906c24735908854819b0d0dc85883d453e23ca4c0445d01", size = 146772, upload-time = "2025-09-26T16:27:34.036Z" }, + { url = "https://files.pythonhosted.org/packages/71/b4/800f14728e2ad666f420dfdb57697ca128aeae7f991b35759c09356b829a/simplejson-3.20.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2bfc1c396ad972ba4431130b42307b2321dba14d988580c1ac421ec6a6b7cee3", size = 134497, upload-time = "2025-09-26T16:27:35.211Z" }, + { url = "https://files.pythonhosted.org/packages/c1/b9/c54eef4226c6ac8e9a389bbe5b21fef116768f97a2dc1a683c716ffe66ef/simplejson-3.20.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a97249ee1aee005d891b5a211faf58092a309f3d9d440bc269043b08f662eda", size = 138172, upload-time = "2025-09-26T16:27:36.44Z" }, + { url = "https://files.pythonhosted.org/packages/09/36/4e282f5211b34620f1b2e4b51d9ddaab5af82219b9b7b78360a33f7e5387/simplejson-3.20.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f1036be00b5edaddbddbb89c0f80ed229714a941cfd21e51386dc69c237201c2", size = 140272, upload-time = "2025-09-26T16:27:37.605Z" }, + { url = "https://files.pythonhosted.org/packages/aa/b0/94ad2cf32f477c449e1f63c863d8a513e2408d651c4e58fe4b6a7434e168/simplejson-3.20.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5d6f5bacb8cdee64946b45f2680afa3f54cd38e62471ceda89f777693aeca4e4", size = 140468, upload-time = "2025-09-26T16:27:39.015Z" }, + { url = "https://files.pythonhosted.org/packages/e5/46/827731e4163be3f987cb8ee90f5d444161db8f540b5e735355faa098d9bc/simplejson-3.20.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8db6841fb796ec5af632f677abf21c6425a1ebea0d9ac3ef1a340b8dc69f52b8", size = 148700, upload-time = "2025-09-26T16:27:40.171Z" }, + { url = "https://files.pythonhosted.org/packages/c7/28/c32121064b1ec2fb7b5d872d9a1abda62df064d35e0160eddfa907118343/simplejson-3.20.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c0a341f7cc2aae82ee2b31f8a827fd2e51d09626f8b3accc441a6907c88aedb7", size = 141323, upload-time = "2025-09-26T16:27:41.324Z" }, + { url = "https://files.pythonhosted.org/packages/46/b6/c897c54326fe86dd12d101981171a49361949f4728294f418c3b86a1af77/simplejson-3.20.2-cp310-cp310-win32.whl", hash = "sha256:27f9c01a6bc581d32ab026f515226864576da05ef322d7fc141cd8a15a95ce53", size = 74377, upload-time = "2025-09-26T16:27:42.533Z" }, + { url = "https://files.pythonhosted.org/packages/ad/87/a6e03d4d80cca99c1fee4e960f3440e2f21be9470e537970f960ca5547f1/simplejson-3.20.2-cp310-cp310-win_amd64.whl", hash = "sha256:c0a63ec98a4547ff366871bf832a7367ee43d047bcec0b07b66c794e2137b476", size = 76081, upload-time = "2025-09-26T16:27:43.945Z" }, + { url = "https://files.pythonhosted.org/packages/05/5b/83e1ff87eb60ca706972f7e02e15c0b33396e7bdbd080069a5d1b53cf0d8/simplejson-3.20.2-py3-none-any.whl", hash = "sha256:3b6bb7fb96efd673eac2e4235200bfffdc2353ad12c54117e1e4e2fc485ac017", size = 57309, upload-time = "2025-09-26T16:29:35.312Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "snowballstemmer" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/75/a7/9810d872919697c9d01295633f5d574fb416d47e535f258272ca1f01f447/snowballstemmer-3.0.1.tar.gz", hash = "sha256:6d5eeeec8e9f84d4d56b847692bacf79bc2c8e90c7f80ca4444ff8b6f2e52895", size = 105575, upload-time = "2025-05-09T16:34:51.843Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/78/3565d011c61f5a43488987ee32b6f3f656e7f107ac2782dd57bdd7d91d9a/snowballstemmer-3.0.1-py3-none-any.whl", hash = "sha256:6cd7b3897da8d6c9ffb968a6781fa6532dce9c3618a4b127d920dab764a19064", size = 103274, upload-time = "2025-05-09T16:34:50.371Z" }, +] + +[[package]] +name = "soupsieve" +version = "2.8.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7b/ae/2d9c981590ed9999a0d91755b47fc74f74de286b0f5cee14c9269041e6c4/soupsieve-2.8.3.tar.gz", hash = "sha256:3267f1eeea4251fb42728b6dfb746edc9acaffc4a45b27e19450b676586e8349", size = 118627, upload-time = "2026-01-20T04:27:02.457Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/2c/1462b1d0a634697ae9e55b3cecdcb64788e8b7d63f54d923fcd0bb140aed/soupsieve-2.8.3-py3-none-any.whl", hash = "sha256:ed64f2ba4eebeab06cc4962affce381647455978ffc1e36bb79a545b91f45a95", size = 37016, upload-time = "2026-01-20T04:27:01.012Z" }, +] + +[[package]] +name = "sphinx" +version = "8.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alabaster" }, + { name = "babel" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "docutils" }, + { name = "imagesize" }, + { name = "jinja2" }, + { name = "packaging" }, + { name = "pygments" }, + { name = "requests" }, + { name = "snowballstemmer" }, + { name = "sphinxcontrib-applehelp" }, + { name = "sphinxcontrib-devhelp" }, + { name = "sphinxcontrib-htmlhelp" }, + { name = "sphinxcontrib-jsmath" }, + { name = "sphinxcontrib-qthelp" }, + { name = "sphinxcontrib-serializinghtml" }, + { name = "tomli" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/be0b61178fe2cdcb67e2a92fc9ebb488e3c51c4f74a36a7824c0adf23425/sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927", size = 8184611, upload-time = "2024-10-13T20:27:13.93Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2", size = 3487125, upload-time = "2024-10-13T20:27:10.448Z" }, +] + +[[package]] +name = "sphinx-rtd-theme" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docutils" }, + { name = "sphinx" }, + { name = "sphinxcontrib-jquery" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/84/68/a1bfbf38c0f7bccc9b10bbf76b94606f64acb1552ae394f0b8285bfaea25/sphinx_rtd_theme-3.1.0.tar.gz", hash = "sha256:b44276f2c276e909239a4f6c955aa667aaafeb78597923b1c60babc76db78e4c", size = 7620915, upload-time = "2026-01-12T16:03:31.17Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/c7/b5c8015d823bfda1a346adb2c634a2101d50bb75d421eb6dcb31acd25ebc/sphinx_rtd_theme-3.1.0-py2.py3-none-any.whl", hash = "sha256:1785824ae8e6632060490f67cf3a72d404a85d2d9fc26bce3619944de5682b89", size = 7655617, upload-time = "2026-01-12T16:03:28.101Z" }, +] + +[[package]] +name = "sphinxcontrib-applehelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ba/6e/b837e84a1a704953c62ef8776d45c3e8d759876b4a84fe14eba2859106fe/sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1", size = 20053, upload-time = "2024-07-29T01:09:00.465Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5", size = 119300, upload-time = "2024-07-29T01:08:58.99Z" }, +] + +[[package]] +name = "sphinxcontrib-devhelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/d2/5beee64d3e4e747f316bae86b55943f51e82bb86ecd325883ef65741e7da/sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad", size = 12967, upload-time = "2024-07-29T01:09:23.417Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2", size = 82530, upload-time = "2024-07-29T01:09:21.945Z" }, +] + +[[package]] +name = "sphinxcontrib-htmlhelp" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/93/983afd9aa001e5201eab16b5a444ed5b9b0a7a010541e0ddfbbfd0b2470c/sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9", size = 22617, upload-time = "2024-07-29T01:09:37.889Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8", size = 98705, upload-time = "2024-07-29T01:09:36.407Z" }, +] + +[[package]] +name = "sphinxcontrib-jquery" +version = "4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "sphinx" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/de/f3/aa67467e051df70a6330fe7770894b3e4f09436dea6881ae0b4f3d87cad8/sphinxcontrib-jquery-4.1.tar.gz", hash = "sha256:1620739f04e36a2c779f1a131a2dfd49b2fd07351bf1968ced074365933abc7a", size = 122331, upload-time = "2023-03-14T15:01:01.944Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/85/749bd22d1a68db7291c89e2ebca53f4306c3f205853cf31e9de279034c3c/sphinxcontrib_jquery-4.1-py2.py3-none-any.whl", hash = "sha256:f936030d7d0147dd026a4f2b5a57343d233f1fc7b363f68b3d4f1cb0993878ae", size = 121104, upload-time = "2023-03-14T15:01:00.356Z" }, +] + +[[package]] +name = "sphinxcontrib-jsmath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/e8/9ed3830aeed71f17c026a07a5097edcf44b692850ef215b161b8ad875729/sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8", size = 5787, upload-time = "2019-01-21T16:10:16.347Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178", size = 5071, upload-time = "2019-01-21T16:10:14.333Z" }, +] + +[[package]] +name = "sphinxcontrib-qthelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/68/bc/9104308fc285eb3e0b31b67688235db556cd5b0ef31d96f30e45f2e51cae/sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab", size = 17165, upload-time = "2024-07-29T01:09:56.435Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb", size = 88743, upload-time = "2024-07-29T01:09:54.885Z" }, +] + +[[package]] +name = "sphinxcontrib-serializinghtml" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3b/44/6716b257b0aa6bfd51a1b31665d1c205fb12cb5ad56de752dfa15657de2f/sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d", size = 16080, upload-time = "2024-07-29T01:10:09.332Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331", size = 92072, upload-time = "2024-07-29T01:10:08.203Z" }, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.49" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "greenlet", marker = "platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64'" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/09/45/461788f35e0364a8da7bda51a1fe1b09762d0c32f12f63727998d85a873b/sqlalchemy-2.0.49.tar.gz", hash = "sha256:d15950a57a210e36dd4cec1aac22787e2a4d57ba9318233e2ef8b2daf9ff2d5f", size = 9898221, upload-time = "2026-04-03T16:38:11.704Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/96/76/f908955139842c362aa877848f42f9249642d5b69e06cee9eae5111da1bd/sqlalchemy-2.0.49-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:42e8804962f9e6f4be2cbaedc0c3718f08f60a16910fa3d86da5a1e3b1bfe60f", size = 2159321, upload-time = "2026-04-03T16:50:11.8Z" }, + { url = "https://files.pythonhosted.org/packages/24/e2/17ba0b7bfbd8de67196889b6d951de269e8a46057d92baca162889beb16d/sqlalchemy-2.0.49-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc992c6ed024c8c3c592c5fc9846a03dd68a425674900c70122c77ea16c5fb0b", size = 3238937, upload-time = "2026-04-03T16:54:45.731Z" }, + { url = "https://files.pythonhosted.org/packages/90/1e/410dd499c039deacff395eec01a9da057125fcd0c97e3badc252c6a2d6a7/sqlalchemy-2.0.49-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6eb188b84269f357669b62cb576b5b918de10fb7c728a005fa0ebb0b758adce1", size = 3237188, upload-time = "2026-04-03T16:56:53.217Z" }, + { url = "https://files.pythonhosted.org/packages/ab/06/e797a8b98a3993ac4bc785309b9b6d005457fc70238ee6cefa7c8867a92e/sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:62557958002b69699bdb7f5137c6714ca1133f045f97b3903964f47db97ea339", size = 3190061, upload-time = "2026-04-03T16:54:47.489Z" }, + { url = "https://files.pythonhosted.org/packages/44/d3/5a9f7ef580af1031184b38235da6ac58c3b571df01c9ec061c44b2b0c5a6/sqlalchemy-2.0.49-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da9b91bca419dc9b9267ffadde24eae9b1a6bffcd09d0a207e5e3af99a03ce0d", size = 3211477, upload-time = "2026-04-03T16:56:55.056Z" }, + { url = "https://files.pythonhosted.org/packages/69/ec/7be8c8cb35f038e963a203e4fe5a028989167cc7299927b7cf297c271e37/sqlalchemy-2.0.49-cp310-cp310-win32.whl", hash = "sha256:5e61abbec255be7b122aa461021daa7c3f310f3e743411a67079f9b3cc91ece3", size = 2119965, upload-time = "2026-04-03T17:00:50.009Z" }, + { url = "https://files.pythonhosted.org/packages/b5/31/0defb93e3a10b0cf7d1271aedd87251a08c3a597ee4f353281769b547b5a/sqlalchemy-2.0.49-cp310-cp310-win_amd64.whl", hash = "sha256:0c98c59075b890df8abfcc6ad632879540f5791c68baebacb4f833713b510e75", size = 2142935, upload-time = "2026-04-03T17:00:51.675Z" }, + { url = "https://files.pythonhosted.org/packages/e5/30/8519fdde58a7bdf155b714359791ad1dc018b47d60269d5d160d311fdc36/sqlalchemy-2.0.49-py3-none-any.whl", hash = "sha256:ec44cfa7ef1a728e88ad41674de50f6db8cfdb3e2af84af86e0041aaf02d43d0", size = 1942158, upload-time = "2026-04-03T16:53:44.135Z" }, +] + +[[package]] +name = "stack-data" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asttokens" }, + { name = "executing" }, + { name = "pure-eval" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707, upload-time = "2023-09-30T13:58:05.479Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload-time = "2023-09-30T13:58:03.53Z" }, +] + +[[package]] +name = "swagger-spec-validator" +version = "3.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-resources" }, + { name = "jsonschema" }, + { name = "pyyaml" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e7/e9/d0a4a1e4ed6b4b805d5465affaeaa2d91ae08a8aae966f4bb7402e23ee37/swagger_spec_validator-3.0.4.tar.gz", hash = "sha256:637ac6d865270bfcd07df24605548e6e1f1d9c39adcfd855da37fa3fdebfed4b", size = 22355, upload-time = "2024-06-27T17:43:05.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/ac/31ba87a959b19e640ebc18851438b82b5b66cef02ad31da7468d1d8bd625/swagger_spec_validator-3.0.4-py2.py3-none-any.whl", hash = "sha256:1a2a4f4f7076479ae7835d892dd53952ccca9414efa172c440c775cf0ac01f48", size = 28473, upload-time = "2024-06-27T17:43:00.546Z" }, +] + +[[package]] +name = "sympy" +version = "1.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz", hash = "sha256:d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517", size = 7793921, upload-time = "2025-04-27T18:05:01.611Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl", hash = "sha256:e091cc3e99d2141a0ba2847328f5479b05d94a6635cb96148ccb3f34671bd8f5", size = 6299353, upload-time = "2025-04-27T18:04:59.103Z" }, +] + +[[package]] +name = "tabulate" +version = "0.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/58/8c37dea7bbf769b20d58e7ace7e5edfe65b849442b00ffcdd56be88697c6/tabulate-0.10.0.tar.gz", hash = "sha256:e2cfde8f79420f6deeffdeda9aaec3b6bc5abce947655d17ac662b126e48a60d", size = 91754, upload-time = "2026-03-04T18:55:34.402Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/99/55/db07de81b5c630da5cbf5c7df646580ca26dfaefa593667fc6f2fe016d2e/tabulate-0.10.0-py3-none-any.whl", hash = "sha256:f0b0622e567335c8fabaaa659f1b33bcb6ddfe2e496071b743aa113f8774f2d3", size = 39814, upload-time = "2026-03-04T18:55:31.284Z" }, +] + +[[package]] +name = "tensorboard" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "google-auth" }, + { name = "google-auth-oauthlib" }, + { name = "grpcio" }, + { name = "markdown" }, + { name = "numpy" }, + { name = "protobuf" }, + { name = "requests" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard-data-server" }, + { name = "werkzeug" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/a2/66ed644f6ed1562e0285fcd959af17670ea313c8f331c46f79ee77187eb9/tensorboard-2.14.1-py3-none-any.whl", hash = "sha256:3db108fb58f023b6439880e177743c5f1e703e9eeb5fb7d597871f949f85fd58", size = 5508920, upload-time = "2023-09-27T23:37:16.71Z" }, +] + +[[package]] +name = "tensorboard-data-server" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/13/e503968fefabd4c6b2650af21e110aa8466fe21432cd7c43a84577a89438/tensorboard_data_server-0.7.2-py3-none-any.whl", hash = "sha256:7e0610d205889588983836ec05dc098e80f97b7e7bbff7e994ebb78f578d0ddb", size = 2356, upload-time = "2023-10-23T21:23:32.16Z" }, + { url = "https://files.pythonhosted.org/packages/b7/85/dabeaf902892922777492e1d253bb7e1264cadce3cea932f7ff599e53fea/tensorboard_data_server-0.7.2-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:9fe5d24221b29625dbc7328b0436ca7fc1c23de4acf4d272f1180856e32f9f60", size = 4823598, upload-time = "2023-10-23T21:23:33.714Z" }, + { url = "https://files.pythonhosted.org/packages/73/c6/825dab04195756cf8ff2e12698f22513b3db2f64925bdd41671bfb33aaa5/tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:ef687163c24185ae9754ed5650eb5bc4d84ff257aabdc33f0cc6f74d8ba54530", size = 6590363, upload-time = "2023-10-23T21:23:35.583Z" }, +] + +[[package]] +name = "tensorflow" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/c9/222613c717658bbd7114966aa74d2e54440e59bf3648353d62d83ea75bdf/tensorflow-2.14.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:f6e9ac1e53db30f1759148f731f87b9d12da5ce0f153fc49406824efd486aae7", size = 229650235, upload-time = "2023-11-14T18:56:58.236Z" }, + { url = "https://files.pythonhosted.org/packages/87/58/d2fba754da2ab0f35818ab12484e5306b87e0fbd4a8e7dd4eb50bd3abaa3/tensorflow-2.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:7156bf1f7311dada7dba5345b526a38e6f4e4f4b8509bee162a24342bf6571b2", size = 2103, upload-time = "2023-11-14T18:58:35.953Z" }, + { url = "https://files.pythonhosted.org/packages/29/ff/44c46db0b42b10d284493a7942b8f3bb0257ce6537010ae0b27a6a86fd67/tensorflow-2.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5781aadad5b46e2de4e373b0ca15a852b90d58982270a6db02ec52e4986316d", size = 2116, upload-time = "2023-11-14T19:02:37.01Z" }, + { url = "https://files.pythonhosted.org/packages/99/77/4f31cd29cab69ebc344a529df48b91a14543a83b6fb90efbf82db29a34be/tensorflow-2.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a955c42164eff4d751732c1274ca4bf059db60c9e2362098ce1eed7177c3fe9", size = 489862117, upload-time = "2023-11-14T18:59:35.918Z" }, + { url = "https://files.pythonhosted.org/packages/df/84/0a67b7ad368b597fa4fc60e2ae2f0fbe9c527c6fe5dbf290236a459fe4a6/tensorflow-2.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:4be5f4327a6e854f64b4dcfd08a51c5fc7cc3fea8c76c5bf5c0c3deb002d5221", size = 2094, upload-time = "2023-11-14T19:01:35.345Z" }, +] + +[[package]] +name = "tensorflow-cpu" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/4f/ea/acd6d4c6a23de999e7fbb20d68eefa65d395df7ae16249294a02dd1772d5/tensorflow_cpu-2.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97f63588962997f2816031578450f747468f9441b17f5bbf352fc93adecc2051", size = 198216087, upload-time = "2023-11-14T19:00:57.579Z" }, +] + +[[package]] +name = "tensorflow-estimator" +version = "2.14.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/da/4f264c196325bb6e37a6285caec5b12a03def489b57cc1fdac02bb6272cd/tensorflow_estimator-2.14.0-py2.py3-none-any.whl", hash = "sha256:820bf57c24aa631abb1bbe4371739ed77edb11361d61381fd8e790115ac0fd57", size = 440664, upload-time = "2023-09-11T18:41:50.481Z" }, +] + +[[package]] +name = "tensorflow-io-gcs-filesystem" +version = "0.37.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/a3/12d7e7326a707919b321e2d6e4c88eb61596457940fd2b8ff3e9b7fac8a7/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:249c12b830165841411ba71e08215d0e94277a49c551e6dd5d72aab54fe5491b", size = 2470224, upload-time = "2024-07-01T23:44:15.341Z" }, + { url = "https://files.pythonhosted.org/packages/1c/55/3849a188cc15e58fefde20e9524d124a629a67a06b4dc0f6c881cb3c6e39/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:257aab23470a0796978efc9c2bcf8b0bc80f22e6298612a4c0a50d3f4e88060c", size = 3479613, upload-time = "2024-07-01T23:44:17.445Z" }, + { url = "https://files.pythonhosted.org/packages/e2/19/9095c69e22c879cb3896321e676c69273a549a3148c4f62aa4bc5ebdb20f/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8febbfcc67c61e542a5ac1a98c7c20a91a5e1afc2e14b1ef0cb7c28bc3b6aa70", size = 4842078, upload-time = "2024-07-01T23:44:18.977Z" }, + { url = "https://files.pythonhosted.org/packages/f3/48/47b7d25572961a48b1de3729b7a11e835b888e41e0203cca82df95d23b91/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9679b36e3a80921876f31685ab6f7270f3411a4cc51bc2847e80d0e4b5291e27", size = 5085736, upload-time = "2024-07-01T23:44:21.034Z" }, +] + +[[package]] +name = "tensorflow-macos" +version = "2.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py" }, + { name = "astunparse" }, + { name = "flatbuffers" }, + { name = "gast" }, + { name = "google-pasta" }, + { name = "grpcio" }, + { name = "h5py" }, + { name = "keras" }, + { name = "libclang" }, + { name = "ml-dtypes" }, + { name = "numpy" }, + { name = "opt-einsum" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "setuptools" }, + { name = "six" }, + { name = "tensorboard" }, + { name = "tensorflow-estimator" }, + { name = "tensorflow-io-gcs-filesystem" }, + { name = "termcolor" }, + { name = "typing-extensions" }, + { name = "wrapt" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/e7/d6ef26155d86bd46432a844da8913402c570e5dd32f09050d483eab70896/tensorflow_macos-2.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:5b9832df0852fa534cbd3362b6e00ba1c9d4b541fdfd987d0bba3927229435bc", size = 199676024, upload-time = "2023-11-14T19:49:08.102Z" }, +] + +[[package]] +name = "tensorflow-metal" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, + { name = "wheel" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/21/cac4d1f8fda8a30f631a60a7669ca1de2665189e060604a5e8f96a145ba6/tensorflow_metal-1.1.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:443d71b3a567fe3f45f982c4794d357b55dec01a4ff1d6d8ba152a68a2c018ab", size = 1424879, upload-time = "2023-09-29T23:36:23.591Z" }, +] + +[[package]] +name = "termcolor" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/79/cf31d7a93a8fdc6aa0fbb665be84426a8c5a557d9240b6239e9e11e35fc5/termcolor-3.3.0.tar.gz", hash = "sha256:348871ca648ec6a9a983a13ab626c0acce02f515b9e1983332b17af7979521c5", size = 14434, upload-time = "2025-12-29T12:55:21.882Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/d1/8bb87d21e9aeb323cc03034f5eaf2c8f69841e40e4853c2627edf8111ed3/termcolor-3.3.0-py3-none-any.whl", hash = "sha256:cf642efadaf0a8ebbbf4bc7a31cec2f9b5f21a9f726f4ccbb08192c9c26f43a5", size = 7734, upload-time = "2025-12-29T12:55:20.718Z" }, +] + +[[package]] +name = "terminado" +version = "0.18.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess", marker = "os_name != 'nt'" }, + { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "tornado" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/11/965c6fd8e5cc254f1fe142d547387da17a8ebfd75a3455f637c663fb38a0/terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e", size = 32701, upload-time = "2024-03-12T14:34:39.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0", size = 14154, upload-time = "2024-03-12T14:34:36.569Z" }, +] + +[[package]] +name = "threadpoolctl" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/4d/08c89e34946fce2aec4fbb45c9016efd5f4d7f24af8e5d93296e935631d8/threadpoolctl-3.6.0.tar.gz", hash = "sha256:8ab8b4aa3491d812b623328249fab5302a68d2d71745c8a4c719a2fcaba9f44e", size = 21274, upload-time = "2025-03-13T13:49:23.031Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl", hash = "sha256:43a0b8fd5a2928500110039e43a5eed8480b918967083ea48dc3ab9f13c4a7fb", size = 18638, upload-time = "2025-03-13T13:49:21.846Z" }, +] + +[[package]] +name = "tinycss2" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "webencodings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/fd/7a5ee21fd08ff70d3d33a5781c255cbe779659bd03278feb98b19ee550f4/tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7", size = 87085, upload-time = "2024-10-24T14:58:29.895Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289", size = 26610, upload-time = "2024-10-24T14:58:28.029Z" }, +] + +[[package]] +name = "tomli" +version = "2.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/22/de/48c59722572767841493b26183a0d1cc411d54fd759c5607c4590b6563a6/tomli-2.4.1.tar.gz", hash = "sha256:7c7e1a961a0b2f2472c1ac5b69affa0ae1132c39adcb67aba98568702b9cc23f", size = 17543, upload-time = "2026-03-25T20:22:03.828Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/61/cceae43728b7de99d9b847560c262873a1f6c98202171fd5ed62640b494b/tomli-2.4.1-py3-none-any.whl", hash = "sha256:0d85819802132122da43cb86656f8d1f8c6587d54ae7dcaf30e90533028b49fe", size = 14583, upload-time = "2026-03-25T20:22:03.012Z" }, +] + +[[package]] +name = "torch" +version = "2.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "networkx" }, + { name = "nvidia-cublas-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-cupti-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "sympy" }, + { name = "triton", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "typing-extensions" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/f1/13137340776dd5d5bcfd2574c9c6dfcc7618285035cd77240496e5c1a79b/torch-2.1.2-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:3a871edd6c02dae77ad810335c0833391c1a4ce49af21ea8cf0f6a5d2096eea8", size = 670178687, upload-time = "2023-12-14T21:46:00.348Z" }, + { url = "https://files.pythonhosted.org/packages/ca/dc/7817c6a2ff8f4f74255c7a11b285e5dff04f2a72f538fda647842ef87829/torch-2.1.2-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:bef6996c27d8f6e92ea4e13a772d89611da0e103b48790de78131e308cf73076", size = 84139460, upload-time = "2023-12-14T21:48:31.773Z" }, + { url = "https://files.pythonhosted.org/packages/16/bf/2ba0f0f7c07b9a14c027e181e44c58824e13f7352607ed32db18321599a2/torch-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:0e13034fd5fb323cbbc29e56d0637a3791e50dd589616f40c79adfa36a5a35a1", size = 192322127, upload-time = "2023-12-14T21:48:14.92Z" }, + { url = "https://files.pythonhosted.org/packages/a3/40/649c233606c2c7be8f90e452ebf5cf1db229127ac552b6b5260d0826e611/torch-2.1.2-cp310-none-macosx_10_9_x86_64.whl", hash = "sha256:d9b535cad0df3d13997dbe8bd68ac33e0e3ae5377639c9881948e40794a61403", size = 146996411, upload-time = "2023-12-14T21:48:42.748Z" }, + { url = "https://files.pythonhosted.org/packages/e3/43/ea958505875b22961e1277587f66b79f9e1f9d97d7998850ed089ae0d0bd/torch-2.1.2-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:f9a55d55af02826ebfbadf4e9b682f0f27766bc33df8236b48d28d705587868f", size = 59569021, upload-time = "2023-12-14T21:49:11.957Z" }, +] + +[[package]] +name = "torch-geometric" +version = "2.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "numpy" }, + { name = "psutil" }, + { name = "pyparsing" }, + { name = "requests" }, + { name = "tqdm" }, + { name = "xxhash" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/75/63/b210152635902da7fe79fcdd16517fae108f457a0ed22c737e702a9afbae/torch_geometric-2.7.0.tar.gz", hash = "sha256:f9099e4aece1a9f618c84dbaac33a77f43139736698c7e8bddf3301ef1f2e8d4", size = 876725, upload-time = "2025-10-15T20:48:03.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/d3/4dffd7300500465e0b4a2ae917dcb2ce771de0b9a772670365799a27c024/torch_geometric-2.7.0-py3-none-any.whl", hash = "sha256:6e0cd3ad824d484651ef5d308fc66c687bfcf5ba040d56d1e0fe0f81f365e292", size = 1275346, upload-time = "2025-10-15T20:48:01.949Z" }, +] + +[[package]] +name = "torchdata" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests" }, + { name = "torch" }, + { name = "urllib3" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/97/6f8f2384d9efb2d1bb6966b5300852d704f4943656360e9352e3cc3358b8/torchdata-0.7.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:042db39edbc961c50a36c45b89aea4b099858140c13746c7cc7a87b1cc219d0c", size = 1801802, upload-time = "2023-11-15T17:09:19.271Z" }, + { url = "https://files.pythonhosted.org/packages/0f/45/7c4674a8a4ac83f0e130d0991d61ff96a231656112bb7c50618d77ab0a8f/torchdata-0.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2d2c8482313dd52652caff99dc530433d898a12bb80bc33a0a4d1680d63272e0", size = 4815667, upload-time = "2023-11-15T17:08:43.478Z" }, + { url = "https://files.pythonhosted.org/packages/39/18/6f0d33df4b9fe4d44a779c2c7cc7cb042535a336f051bb0e5b5387844ee6/torchdata-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eed10b1f9265b30161a8cd129a96cfc7da202cfc70acf8b6a21fd29e18274ca3", size = 4657548, upload-time = "2023-11-15T17:09:00.144Z" }, + { url = "https://files.pythonhosted.org/packages/0e/06/0c916f27ef9f5a566b555f07c82c94fb9277fcabe0fcbf4dfe4505dcb28a/torchdata-0.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:36c591d0910ede6a496d4fccd389f27e7bccabf8b6a8722712ecf28b98bda8ae", size = 1330841, upload-time = "2023-11-15T17:09:14.414Z" }, + { url = "https://files.pythonhosted.org/packages/e2/c8/34eda2bd6beb8a11c06cf905db74092bdbc3dec51a48f4f22cc474866a0a/torchdata-0.7.1-py3-none-any.whl", hash = "sha256:9f9476a26987d90fa3f87cb09ec82b78ce6031ddcaa91851c9fa9f732a987ab8", size = 184418, upload-time = "2023-11-15T17:09:10.159Z" }, +] + +[[package]] +name = "torchmetrics" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "lightning-utilities" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "torch" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/81/34/39b8b749333db56c0585d7a11fa62a283c087bb1dfc897d69fb8cedbefb1/torchmetrics-1.9.0.tar.gz", hash = "sha256:a488609948600df52d3db4fcdab02e62aab2a85ef34da67037dc3e65b8512faa", size = 581765, upload-time = "2026-03-09T17:41:22.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c3/a2/c7f6ebf546f8f644edf0f999aa98ece106986a77a7b922316bf6414ff825/torchmetrics-1.9.0-py3-none-any.whl", hash = "sha256:bfdcbff3dd1d96b3374bb2496eb39f23c4b28b8a845b6a18c313688e0d2d9ca1", size = 983384, upload-time = "2026-03-09T17:41:19.756Z" }, +] + +[[package]] +name = "tornado" +version = "6.5.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/f1/3173dfa4a18db4a9b03e5d55325559dab51ee653763bb8745a75af491286/tornado-6.5.5.tar.gz", hash = "sha256:192b8f3ea91bd7f1f50c06955416ed76c6b72f96779b962f07f911b91e8d30e9", size = 516006, upload-time = "2026-03-10T21:31:02.067Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/59/8c/77f5097695f4dd8255ecbd08b2a1ed8ba8b953d337804dd7080f199e12bf/tornado-6.5.5-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:487dc9cc380e29f58c7ab88f9e27cdeef04b2140862e5076a66fb6bb68bb1bfa", size = 445983, upload-time = "2026-03-10T21:30:44.28Z" }, + { url = "https://files.pythonhosted.org/packages/ab/5e/7625b76cd10f98f1516c36ce0346de62061156352353ef2da44e5c21523c/tornado-6.5.5-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:65a7f1d46d4bb41df1ac99f5fcb685fb25c7e61613742d5108b010975a9a6521", size = 444246, upload-time = "2026-03-10T21:30:46.571Z" }, + { url = "https://files.pythonhosted.org/packages/b2/04/7b5705d5b3c0fab088f434f9c83edac1573830ca49ccf29fb83bf7178eec/tornado-6.5.5-cp39-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:e74c92e8e65086b338fd56333fb9a68b9f6f2fe7ad532645a290a464bcf46be5", size = 447229, upload-time = "2026-03-10T21:30:48.273Z" }, + { url = "https://files.pythonhosted.org/packages/34/01/74e034a30ef59afb4097ef8659515e96a39d910b712a89af76f5e4e1f93c/tornado-6.5.5-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:435319e9e340276428bbdb4e7fa732c2d399386d1de5686cb331ec8eee754f07", size = 448192, upload-time = "2026-03-10T21:30:51.22Z" }, + { url = "https://files.pythonhosted.org/packages/be/00/fe9e02c5a96429fce1a1d15a517f5d8444f9c412e0bb9eadfbe3b0fc55bf/tornado-6.5.5-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:3f54aa540bdbfee7b9eb268ead60e7d199de5021facd276819c193c0fb28ea4e", size = 448039, upload-time = "2026-03-10T21:30:53.52Z" }, + { url = "https://files.pythonhosted.org/packages/82/9e/656ee4cec0398b1d18d0f1eb6372c41c6b889722641d84948351ae19556d/tornado-6.5.5-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:36abed1754faeb80fbd6e64db2758091e1320f6bba74a4cf8c09cd18ccce8aca", size = 447445, upload-time = "2026-03-10T21:30:55.541Z" }, + { url = "https://files.pythonhosted.org/packages/5a/76/4921c00511f88af86a33de770d64141170f1cfd9c00311aea689949e274e/tornado-6.5.5-cp39-abi3-win32.whl", hash = "sha256:dd3eafaaeec1c7f2f8fdcd5f964e8907ad788fe8a5a32c4426fbbdda621223b7", size = 448582, upload-time = "2026-03-10T21:30:57.142Z" }, + { url = "https://files.pythonhosted.org/packages/2c/23/f6c6112a04d28eed765e374435fb1a9198f73e1ec4b4024184f21faeb1ad/tornado-6.5.5-cp39-abi3-win_amd64.whl", hash = "sha256:6443a794ba961a9f619b1ae926a2e900ac20c34483eea67be4ed8f1e58d3ef7b", size = 448990, upload-time = "2026-03-10T21:30:58.857Z" }, + { url = "https://files.pythonhosted.org/packages/b7/c8/876602cbc96469911f0939f703453c1157b0c826ecb05bdd32e023397d4e/tornado-6.5.5-cp39-abi3-win_arm64.whl", hash = "sha256:2c9a876e094109333f888539ddb2de4361743e5d21eece20688e3e351e4990a6", size = 448016, upload-time = "2026-03-10T21:31:00.43Z" }, +] + +[[package]] +name = "tqdm" +version = "4.67.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/09/a9/6ba95a270c6f1fbcd8dac228323f2777d886cb206987444e4bce66338dd4/tqdm-4.67.3.tar.gz", hash = "sha256:7d825f03f89244ef73f1d4ce193cb1774a8179fd96f31d7e1dcde62092b960bb", size = 169598, upload-time = "2026-02-03T17:35:53.048Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/16/e1/3079a9ff9b8e11b846c6ac5c8b5bfb7ff225eee721825310c91b3b50304f/tqdm-4.67.3-py3-none-any.whl", hash = "sha256:ee1e4c0e59148062281c49d80b25b67771a127c85fc9676d3be5f243206826bf", size = 78374, upload-time = "2026-02-03T17:35:50.982Z" }, +] + +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621, upload-time = "2024-04-19T11:11:49.746Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359, upload-time = "2024-04-19T11:11:46.763Z" }, +] + +[[package]] +name = "triton" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/22/91a8af421c8a8902dde76e6ef3db01b258af16c53d81e8c0d0dc13900a9e/triton-2.1.0-0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:66439923a30d5d48399b08a9eae10370f6c261a5ec864a64983bae63152d39d7", size = 89215103, upload-time = "2023-09-01T07:26:13.625Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, +] + +[[package]] +name = "tzdata" +version = "2026.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/19/f5/cd531b2d15a671a40c0f66cf06bc3570a12cd56eef98960068ebbad1bf5a/tzdata-2026.1.tar.gz", hash = "sha256:67658a1903c75917309e753fdc349ac0efd8c27db7a0cb406a25be4840f87f98", size = 197639, upload-time = "2026-04-03T11:25:22.002Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/70/d460bd685a170790ec89317e9bd33047988e4bce507b831f5db771e142de/tzdata-2026.1-py2.py3-none-any.whl", hash = "sha256:4b1d2be7ac37ceafd7327b961aa3a54e467efbdb563a23655fbfe0d39cfc42a9", size = 348952, upload-time = "2026-04-03T11:25:20.313Z" }, +] + +[[package]] +name = "umap-learn" +version = "0.5.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numba" }, + { name = "numpy" }, + { name = "pynndescent" }, + { name = "scikit-learn" }, + { name = "scipy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/d4/9ed627905f7993349671283b3c5bf2d9f543ef79229fa1c7e01324eb900c/umap-learn-0.5.7.tar.gz", hash = "sha256:b2a97973e4c6ffcebf241100a8de589a4c84126a832ab40f296c6d9fcc5eb19e", size = 92680, upload-time = "2024-10-28T18:05:57.093Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/8f/671c0e1f2572ba625cbcc1faeba9435e00330c3d6962858711445cf1e817/umap_learn-0.5.7-py3-none-any.whl", hash = "sha256:6a7e0be2facfa365a5ed6588447102bdbef32a0ef449535c25c97ea7e680073c", size = 88815, upload-time = "2024-10-28T18:05:55.333Z" }, +] + +[[package]] +name = "uri-template" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/31/c7/0336f2bd0bcbada6ccef7aaa25e443c118a704f828a0620c6fa0207c1b64/uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7", size = 21678, upload-time = "2023-06-21T01:49:05.374Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363", size = 11140, upload-time = "2023-06-21T01:49:03.467Z" }, +] + +[[package]] +name = "urllib3" +version = "2.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, +] + +[[package]] +name = "wcwidth" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/a2/8e3becb46433538a38726c948d3399905a4c7cabd0df578ede5dc51f0ec2/wcwidth-0.6.0.tar.gz", hash = "sha256:cdc4e4262d6ef9a1a57e018384cbeb1208d8abbc64176027e2c2455c81313159", size = 159684, upload-time = "2026-02-06T19:19:40.919Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/5a/199c59e0a824a3db2b89c5d2dade7ab5f9624dbf6448dc291b46d5ec94d3/wcwidth-0.6.0-py3-none-any.whl", hash = "sha256:1a3a1e510b553315f8e146c54764f4fb6264ffad731b3d78088cdb1478ffbdad", size = 94189, upload-time = "2026-02-06T19:19:39.646Z" }, +] + +[[package]] +name = "webcolors" +version = "25.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/7a/eb316761ec35664ea5174709a68bbd3389de60d4a1ebab8808bfc264ed67/webcolors-25.10.0.tar.gz", hash = "sha256:62abae86504f66d0f6364c2a8520de4a0c47b80c03fc3a5f1815fedbef7c19bf", size = 53491, upload-time = "2025-10-31T07:51:03.977Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/cc/e097523dd85c9cf5d354f78310927f1656c422bd7b2613b2db3e3f9a0f2c/webcolors-25.10.0-py3-none-any.whl", hash = "sha256:032c727334856fc0b968f63daa252a1ac93d33db2f5267756623c210e57a4f1d", size = 14905, upload-time = "2025-10-31T07:51:01.778Z" }, +] + +[[package]] +name = "webencodings" +version = "0.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923", size = 9721, upload-time = "2017-04-05T20:21:34.189Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78", size = 11774, upload-time = "2017-04-05T20:21:32.581Z" }, +] + +[[package]] +name = "websocket-client" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2c/41/aa4bf9664e4cda14c3b39865b12251e8e7d239f4cd0e3cc1b6c2ccde25c1/websocket_client-1.9.0.tar.gz", hash = "sha256:9e813624b6eb619999a97dc7958469217c3176312b3a16a4bd1bc7e08a46ec98", size = 70576, upload-time = "2025-10-07T21:16:36.495Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl", hash = "sha256:af248a825037ef591efbf6ed20cc5faa03d3b47b9e5a2230a529eeee1c1fc3ef", size = 82616, upload-time = "2025-10-07T21:16:34.951Z" }, +] + +[[package]] +name = "werkzeug" +version = "3.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/dd/b2/381be8cfdee792dd117872481b6e378f85c957dd7c5bca38897b08f765fd/werkzeug-3.1.8.tar.gz", hash = "sha256:9bad61a4268dac112f1c5cd4630a56ede601b6ed420300677a869083d70a4c44", size = 875852, upload-time = "2026-04-02T18:49:14.268Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/8c/2e650f2afeb7ee576912636c23ddb621c91ac6a98e66dc8d29c3c69446e1/werkzeug-3.1.8-py3-none-any.whl", hash = "sha256:63a77fb8892bf28ebc3178683445222aa500e48ebad5ec77b0ad80f8726b1f50", size = 226459, upload-time = "2026-04-02T18:49:12.72Z" }, +] + +[[package]] +name = "wheel" +version = "0.46.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/89/24/a2eb353a6edac9a0303977c4cb048134959dd2a51b48a269dfc9dde00c8a/wheel-0.46.3.tar.gz", hash = "sha256:e3e79874b07d776c40bd6033f8ddf76a7dad46a7b8aa1b2787a83083519a1803", size = 60605, upload-time = "2026-01-22T12:39:49.136Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/22/b76d483683216dde3d67cba61fb2444be8d5be289bf628c13fc0fd90e5f9/wheel-0.46.3-py3-none-any.whl", hash = "sha256:4b399d56c9d9338230118d705d9737a2a468ccca63d5e813e2a4fc7815d8bc4d", size = 30557, upload-time = "2026-01-22T12:39:48.099Z" }, +] + +[[package]] +name = "widgetsnbextension" +version = "4.0.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/f4/c67440c7fb409a71b7404b7aefcd7569a9c0d6bd071299bf4198ae7a5d95/widgetsnbextension-4.0.15.tar.gz", hash = "sha256:de8610639996f1567952d763a5a41af8af37f2575a41f9852a38f947eb82a3b9", size = 1097402, upload-time = "2025-11-01T21:15:55.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/0e/fa3b193432cfc60c93b42f3be03365f5f909d2b3ea410295cf36df739e31/widgetsnbextension-4.0.15-py3-none-any.whl", hash = "sha256:8156704e4346a571d9ce73b84bee86a29906c9abfd7223b7228a28899ccf3366", size = 2196503, upload-time = "2025-11-01T21:15:53.565Z" }, +] + +[[package]] +name = "wrapt" +version = "1.14.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/23/49/925324e2eaa0c83c45b7a1eb31004af4ad7b37fdc1d9e897ea7d551215da/wrapt-1.14.2.tar.gz", hash = "sha256:19d33781d891c99b5a35f810656d2fe01765b35ccfb6d395007d2edb1058d98f", size = 50701, upload-time = "2025-08-12T06:59:02.334Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ad/3f/12f70730cf9237e07aa5887bdb3e3695fd68e7e0d6dd66b5dd7a8794724a/wrapt-1.14.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:734de7e0182d15f03eb4f4fce0ff7f07a072119a19cdcc97c40aee96d10fe851", size = 35836, upload-time = "2025-08-12T06:58:20.535Z" }, + { url = "https://files.pythonhosted.org/packages/f1/95/5e261ed720bdddf9bbfea2b9bbd30bd03e298b02267333a231592a0cef7b/wrapt-1.14.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:851ded3662733bab093297a0adb844c71e7754b8c144f76bb569ac6544a7c27a", size = 76907, upload-time = "2025-08-12T06:58:39.06Z" }, + { url = "https://files.pythonhosted.org/packages/18/ed/fcf75886924473ebc11ded6f589f9f715bd605a787201e8b9b1f34b958a7/wrapt-1.14.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4f7b9a0364edef5a3033307cde69f7c3775a74eb83caeff8955e72ec3e0963fe", size = 77665, upload-time = "2025-08-12T06:58:29.329Z" }, + { url = "https://files.pythonhosted.org/packages/16/de/e9205650d0c8401c4e2cc2a01edc89ce3fabda219e2efabcc71d92d02a70/wrapt-1.14.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3066203bf6e35a040c848143636e6fc2aa4ad6fb2b027a956f462083a3b635ea", size = 76401, upload-time = "2025-08-12T06:58:30.309Z" }, + { url = "https://files.pythonhosted.org/packages/ba/e6/e3b79ba90e7b3a7c1915dbecb84aa491dc0a16238216dae5137bb0d85689/wrapt-1.14.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:072684f6264ca83695d1c7ad601e61b17953351b0950790cd50c327402006492", size = 76360, upload-time = "2025-08-12T06:58:40.019Z" }, + { url = "https://files.pythonhosted.org/packages/35/07/fe53594e194b133b29b0808c40f1ad92773186c314dbb5b1bf5bb9a4e34a/wrapt-1.14.2-cp310-cp310-win32.whl", hash = "sha256:26c36d922c70de7ae7e933d0f9a10b4017d007d505f60fe02efa8e260a6c7af4", size = 33681, upload-time = "2025-08-12T06:58:52.611Z" }, + { url = "https://files.pythonhosted.org/packages/12/68/134031baba6e1ba7dbdf2a217e99feb7177a2ad860b19f3ba319d40e0baf/wrapt-1.14.2-cp310-cp310-win_amd64.whl", hash = "sha256:ead0c5373df2c551347c7f71903a6403efb391506e1e349704ec21fe797e59bf", size = 35811, upload-time = "2025-08-12T06:58:51.696Z" }, + { url = "https://files.pythonhosted.org/packages/b7/c7/7376998449689cf2adbdbeacad47084410d00f3ae04cf73e6127cf52b950/wrapt-1.14.2-py3-none-any.whl", hash = "sha256:82eea3b559f51f22aefc530b747b87406811ef00cb0c4734f48cb139c748db63", size = 21577, upload-time = "2025-08-12T06:59:01.408Z" }, +] + +[[package]] +name = "xgboost" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "nvidia-nccl-cu12", marker = "sys_platform == 'linux'" }, + { name = "scipy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/91/bb/1eb0242409d22db725d7a88088e6cfd6556829fb0736f9ff69aa9f1e9455/xgboost-3.2.0.tar.gz", hash = "sha256:99b0e9a2a64896cdaf509c5e46372d336c692406646d20f2af505003c0c5d70d", size = 1263936, upload-time = "2026-02-10T11:03:05.542Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/49/6e4cdd877c24adf56cb3586bc96d93d4dcd780b5ea1efb32e1ee0de08bae/xgboost-3.2.0-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:2f661966d3e322536d9c448090a870fcba1e32ee5760c10b7c46bac7a342079a", size = 2507014, upload-time = "2026-02-10T10:50:57.44Z" }, + { url = "https://files.pythonhosted.org/packages/93/f1/c09ef1add609453aa3ba5bafcd0d1c1a805c1263c0b60138ec968f8ec296/xgboost-3.2.0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:eabbd40d474b8dbf6cb3536325f9150b9e6f0db32d18de9914fb3227d0bef5b7", size = 2328527, upload-time = "2026-02-10T10:51:17.502Z" }, + { url = "https://files.pythonhosted.org/packages/96/9f/d9914a7b8df842832850b1a18e5f47aaa071c217cdd1da2ae9deb291018b/xgboost-3.2.0-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:852eabc6d3b3702a59bf78dbfdcd1cb9c4d3a3b6e5ed1f8781d8b9512354fdd2", size = 131100954, upload-time = "2026-02-10T11:02:42.704Z" }, + { url = "https://files.pythonhosted.org/packages/79/98/679de17c2caa4fd3b0b4386ecf7377301702cb0afb22930a07c142fcb1d8/xgboost-3.2.0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:99b4a6bbcb47212fec5cf5fbe12347215f073c08967431b0122cfbd1ee70312c", size = 131748579, upload-time = "2026-02-10T10:54:40.424Z" }, + { url = "https://files.pythonhosted.org/packages/1f/3d/1661dd114a914a67e3f7ab66fa1382e7599c2a8c340f314ad30a3e2b4d08/xgboost-3.2.0-py3-none-win_amd64.whl", hash = "sha256:0d169736fd836fc13646c7ab787167b3a8110351c2c6bc770c755ee1618f0442", size = 101681668, upload-time = "2026-02-10T10:59:31.202Z" }, +] + +[[package]] +name = "xxhash" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/02/84/30869e01909fb37a6cc7e18688ee8bf1e42d57e7e0777636bd47524c43c7/xxhash-3.6.0.tar.gz", hash = "sha256:f0162a78b13a0d7617b2845b90c763339d1f1d82bb04a4b07f4ab535cc5e05d6", size = 85160, upload-time = "2025-10-02T14:37:08.097Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/ee/f9f1d656ad168681bb0f6b092372c1e533c4416b8069b1896a175c46e484/xxhash-3.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:87ff03d7e35c61435976554477a7f4cd1704c3596a89a8300d5ce7fc83874a71", size = 32845, upload-time = "2025-10-02T14:33:51.573Z" }, + { url = "https://files.pythonhosted.org/packages/a3/b1/93508d9460b292c74a09b83d16750c52a0ead89c51eea9951cb97a60d959/xxhash-3.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f572dfd3d0e2eb1a57511831cf6341242f5a9f8298a45862d085f5b93394a27d", size = 30807, upload-time = "2025-10-02T14:33:52.964Z" }, + { url = "https://files.pythonhosted.org/packages/07/55/28c93a3662f2d200c70704efe74aab9640e824f8ce330d8d3943bf7c9b3c/xxhash-3.6.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:89952ea539566b9fed2bbd94e589672794b4286f342254fad28b149f9615fef8", size = 193786, upload-time = "2025-10-02T14:33:54.272Z" }, + { url = "https://files.pythonhosted.org/packages/c1/96/fec0be9bb4b8f5d9c57d76380a366f31a1781fb802f76fc7cda6c84893c7/xxhash-3.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:48e6f2ffb07a50b52465a1032c3cf1f4a5683f944acaca8a134a2f23674c2058", size = 212830, upload-time = "2025-10-02T14:33:55.706Z" }, + { url = "https://files.pythonhosted.org/packages/c4/a0/c706845ba77b9611f81fd2e93fad9859346b026e8445e76f8c6fd057cc6d/xxhash-3.6.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b5b848ad6c16d308c3ac7ad4ba6bede80ed5df2ba8ed382f8932df63158dd4b2", size = 211606, upload-time = "2025-10-02T14:33:57.133Z" }, + { url = "https://files.pythonhosted.org/packages/67/1e/164126a2999e5045f04a69257eea946c0dc3e86541b400d4385d646b53d7/xxhash-3.6.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a034590a727b44dd8ac5914236a7b8504144447a9682586c3327e935f33ec8cc", size = 444872, upload-time = "2025-10-02T14:33:58.446Z" }, + { url = "https://files.pythonhosted.org/packages/2d/4b/55ab404c56cd70a2cf5ecfe484838865d0fea5627365c6c8ca156bd09c8f/xxhash-3.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8a8f1972e75ebdd161d7896743122834fe87378160c20e97f8b09166213bf8cc", size = 193217, upload-time = "2025-10-02T14:33:59.724Z" }, + { url = "https://files.pythonhosted.org/packages/45/e6/52abf06bac316db33aa269091ae7311bd53cfc6f4b120ae77bac1b348091/xxhash-3.6.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ee34327b187f002a596d7b167ebc59a1b729e963ce645964bbc050d2f1b73d07", size = 210139, upload-time = "2025-10-02T14:34:02.041Z" }, + { url = "https://files.pythonhosted.org/packages/34/37/db94d490b8691236d356bc249c08819cbcef9273a1a30acf1254ff9ce157/xxhash-3.6.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:339f518c3c7a850dd033ab416ea25a692759dc7478a71131fe8869010d2b75e4", size = 197669, upload-time = "2025-10-02T14:34:03.664Z" }, + { url = "https://files.pythonhosted.org/packages/b7/36/c4f219ef4a17a4f7a64ed3569bc2b5a9c8311abdb22249ac96093625b1a4/xxhash-3.6.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:bf48889c9630542d4709192578aebbd836177c9f7a4a2778a7d6340107c65f06", size = 210018, upload-time = "2025-10-02T14:34:05.325Z" }, + { url = "https://files.pythonhosted.org/packages/fd/06/bfac889a374fc2fc439a69223d1750eed2e18a7db8514737ab630534fa08/xxhash-3.6.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:5576b002a56207f640636056b4160a378fe36a58db73ae5c27a7ec8db35f71d4", size = 413058, upload-time = "2025-10-02T14:34:06.925Z" }, + { url = "https://files.pythonhosted.org/packages/c9/d1/555d8447e0dd32ad0930a249a522bb2e289f0d08b6b16204cfa42c1f5a0c/xxhash-3.6.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:af1f3278bd02814d6dedc5dec397993b549d6f16c19379721e5a1d31e132c49b", size = 190628, upload-time = "2025-10-02T14:34:08.669Z" }, + { url = "https://files.pythonhosted.org/packages/d1/15/8751330b5186cedc4ed4b597989882ea05e0408b53fa47bcb46a6125bfc6/xxhash-3.6.0-cp310-cp310-win32.whl", hash = "sha256:aed058764db109dc9052720da65fafe84873b05eb8b07e5e653597951af57c3b", size = 30577, upload-time = "2025-10-02T14:34:10.234Z" }, + { url = "https://files.pythonhosted.org/packages/bb/cc/53f87e8b5871a6eb2ff7e89c48c66093bda2be52315a8161ddc54ea550c4/xxhash-3.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:e82da5670f2d0d98950317f82a0e4a0197150ff19a6df2ba40399c2a3b9ae5fb", size = 31487, upload-time = "2025-10-02T14:34:11.618Z" }, + { url = "https://files.pythonhosted.org/packages/9f/00/60f9ea3bb697667a14314d7269956f58bf56bb73864f8f8d52a3c2535e9a/xxhash-3.6.0-cp310-cp310-win_arm64.whl", hash = "sha256:4a082ffff8c6ac07707fb6b671caf7c6e020c75226c561830b73d862060f281d", size = 27863, upload-time = "2025-10-02T14:34:12.619Z" }, +] + +[[package]] +name = "xyzservices" +version = "2026.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/08/3cb9f67a8d48021aca2a02292cc26eecd71d949ae70ad66420a8730cc302/xyzservices-2026.3.0.tar.gz", hash = "sha256:d226866a5d8e9fef337034d8da37a8298f0a1d9d1489b4018e69579eb321fea4", size = 1135736, upload-time = "2026-03-30T14:42:25.596Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/a9/d23012099dc88ec69a29c6407b41d89681cb674c2043cd5b467c7e299c08/xyzservices-2026.3.0-py3-none-any.whl", hash = "sha256:503183d4b322bfebc3c50cdd21192aa3e81e36c5efbf9133d54ae82143e0576b", size = 94101, upload-time = "2026-03-30T14:42:24.608Z" }, +] + +[[package]] +name = "yarl" +version = "1.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "multidict" }, + { name = "propcache" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/23/6e/beb1beec874a72f23815c1434518bfc4ed2175065173fb138c3705f658d4/yarl-1.23.0.tar.gz", hash = "sha256:53b1ea6ca88ebd4420379c330aea57e258408dd0df9af0992e5de2078dc9f5d5", size = 194676, upload-time = "2026-03-01T22:07:53.373Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/0d/9cc638702f6fc3c7a3685bcc8cf2a9ed7d6206e932a49f5242658047ef51/yarl-1.23.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cff6d44cb13d39db2663a22b22305d10855efa0fa8015ddeacc40bc59b9d8107", size = 123764, upload-time = "2026-03-01T22:04:09.7Z" }, + { url = "https://files.pythonhosted.org/packages/7a/35/5a553687c5793df5429cd1db45909d4f3af7eee90014888c208d086a44f0/yarl-1.23.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e4c53f8347cd4200f0d70a48ad059cabaf24f5adc6ba08622a23423bc7efa10d", size = 86282, upload-time = "2026-03-01T22:04:11.892Z" }, + { url = "https://files.pythonhosted.org/packages/68/2e/c5a2234238f8ce37a8312b52801ee74117f576b1539eec8404a480434acc/yarl-1.23.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2a6940a074fb3c48356ed0158a3ca5699c955ee4185b4d7d619be3c327143e05", size = 86053, upload-time = "2026-03-01T22:04:13.292Z" }, + { url = "https://files.pythonhosted.org/packages/74/3f/bbd8ff36fb038622797ffbaf7db314918bb4d76f1cc8a4f9ca7a55fe5195/yarl-1.23.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ed5f69ce7be7902e5c70ea19eb72d20abf7d725ab5d49777d696e32d4fc1811d", size = 99395, upload-time = "2026-03-01T22:04:15.133Z" }, + { url = "https://files.pythonhosted.org/packages/77/04/9516bc4e269d2a3ec9c6779fcdeac51ce5b3a9b0156f06ac7152e5bba864/yarl-1.23.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:389871e65468400d6283c0308e791a640b5ab5c83bcee02a2f51295f95e09748", size = 92143, upload-time = "2026-03-01T22:04:16.829Z" }, + { url = "https://files.pythonhosted.org/packages/c7/63/88802d1f6b1cb1fc67d67a58cd0cf8a1790de4ce7946e434240f1d60ab4a/yarl-1.23.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:dda608c88cf709b1d406bdfcd84d8d63cff7c9e577a403c6108ce8ce9dcc8764", size = 107643, upload-time = "2026-03-01T22:04:18.519Z" }, + { url = "https://files.pythonhosted.org/packages/8e/db/4f9b838f4d8bdd6f0f385aed8bbf21c71ed11a0b9983305c302cbd557815/yarl-1.23.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8c4fe09e0780c6c3bf2b7d4af02ee2394439d11a523bbcf095cf4747c2932007", size = 108700, upload-time = "2026-03-01T22:04:20.373Z" }, + { url = "https://files.pythonhosted.org/packages/50/12/95a1d33f04a79c402664070d43b8b9f72dc18914e135b345b611b0b1f8cc/yarl-1.23.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:31c9921eb8bd12633b41ad27686bbb0b1a2a9b8452bfdf221e34f311e9942ed4", size = 102769, upload-time = "2026-03-01T22:04:23.055Z" }, + { url = "https://files.pythonhosted.org/packages/86/65/91a0285f51321369fd1a8308aa19207520c5f0587772cfc2e03fc2467e90/yarl-1.23.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5f10fd85e4b75967468af655228fbfd212bdf66db1c0d135065ce288982eda26", size = 101114, upload-time = "2026-03-01T22:04:25.031Z" }, + { url = "https://files.pythonhosted.org/packages/58/80/c7c8244fc3e5bc483dc71a09560f43b619fab29301a0f0a8f936e42865c7/yarl-1.23.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dbf507e9ef5688bada447a24d68b4b58dd389ba93b7afc065a2ba892bea54769", size = 98883, upload-time = "2026-03-01T22:04:27.281Z" }, + { url = "https://files.pythonhosted.org/packages/86/e7/71ca9cc9ca79c0b7d491216177d1aed559d632947b8ffb0ee60f7d8b23e3/yarl-1.23.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:85e9beda1f591bc73e77ea1c51965c68e98dafd0fec72cdd745f77d727466716", size = 94172, upload-time = "2026-03-01T22:04:28.554Z" }, + { url = "https://files.pythonhosted.org/packages/6a/3f/6c6c8a0fe29c26fb2db2e8d32195bb84ec1bfb8f1d32e7f73b787fcf349b/yarl-1.23.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:0e1fdaa14ef51366d7757b45bde294e95f6c8c049194e793eedb8387c86d5993", size = 107010, upload-time = "2026-03-01T22:04:30.385Z" }, + { url = "https://files.pythonhosted.org/packages/56/38/12730c05e5ad40a76374d440ed8b0899729a96c250516d91c620a6e38fc2/yarl-1.23.0-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:75e3026ab649bf48f9a10c0134512638725b521340293f202a69b567518d94e0", size = 100285, upload-time = "2026-03-01T22:04:31.752Z" }, + { url = "https://files.pythonhosted.org/packages/34/92/6a7be9239f2347234e027284e7a5f74b1140cc86575e7b469d13fba1ebfe/yarl-1.23.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:80e6d33a3d42a7549b409f199857b4fb54e2103fc44fb87605b6663b7a7ff750", size = 108230, upload-time = "2026-03-01T22:04:33.844Z" }, + { url = "https://files.pythonhosted.org/packages/5e/81/4aebccfa9376bd98b9d8bfad20621a57d3e8cfc5b8631c1fa5f62cdd03f4/yarl-1.23.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5ec2f42d41ccbd5df0270d7df31618a8ee267bfa50997f5d720ddba86c4a83a6", size = 103008, upload-time = "2026-03-01T22:04:35.856Z" }, + { url = "https://files.pythonhosted.org/packages/38/0f/0b4e3edcec794a86b853b0c6396c0a888d72dfce19b2d88c02ac289fb6c1/yarl-1.23.0-cp310-cp310-win32.whl", hash = "sha256:debe9c4f41c32990771be5c22b56f810659f9ddf3d63f67abfdcaa2c6c9c5c1d", size = 83073, upload-time = "2026-03-01T22:04:38.268Z" }, + { url = "https://files.pythonhosted.org/packages/a0/71/ad95c33da18897e4c636528bbc24a1dd23fe16797de8bc4ec667b8db0ba4/yarl-1.23.0-cp310-cp310-win_amd64.whl", hash = "sha256:ab5f043cb8a2d71c981c09c510da013bc79fd661f5c60139f00dd3c3cc4f2ffb", size = 87328, upload-time = "2026-03-01T22:04:39.558Z" }, + { url = "https://files.pythonhosted.org/packages/e2/14/dfa369523c79bccf9c9c746b0a63eb31f65db9418ac01275f7950962e504/yarl-1.23.0-cp310-cp310-win_arm64.whl", hash = "sha256:263cd4f47159c09b8b685890af949195b51d1aa82ba451c5847ca9bc6413c220", size = 82463, upload-time = "2026-03-01T22:04:41.454Z" }, + { url = "https://files.pythonhosted.org/packages/69/68/c8739671f5699c7dc470580a4f821ef37c32c4cb0b047ce223a7f115757f/yarl-1.23.0-py3-none-any.whl", hash = "sha256:a2df6afe50dea8ae15fa34c9f824a3ee958d785fd5d089063d960bae1daa0a3f", size = 48288, upload-time = "2026-03-01T22:07:51.388Z" }, +]